diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml new file mode 100644 index 00000000..0fd39cf8 --- /dev/null +++ b/.github/workflows/build.yml @@ -0,0 +1,74 @@ +name: Build and push + +on: + push: + branches: + - "staging" + +jobs: + starksheet-deployer: + runs-on: ubuntu-latest + steps: + - uses: actions/checkout@v3 + - name: Set up QEMU + uses: docker/setup-qemu-action@v2 + - name: Set up Docker Buildx + uses: docker/setup-buildx-action@v2 + - name: Login to GitHub Container Registry + uses: docker/login-action@v2 + with: + registry: ghcr.io + username: ${{ github.actor }} + password: ${{ secrets.GITHUB_TOKEN }} + - name: Build and push + uses: docker/build-push-action@v4 + with: + push: true + tags: ghcr.io/the-candy-shop/starksheet-monorepo/starksheet-cairo:latest + context: ./packages/starksheet-cairo + platforms: linux/amd64,linux/arm64 + + evmsheet-deployer: + runs-on: ubuntu-latest + steps: + - uses: actions/checkout@v3 + - name: Set up QEMU + uses: docker/setup-qemu-action@v2 + - name: Set up Docker Buildx + uses: docker/setup-buildx-action@v2 + - name: Login to GitHub Container Registry + uses: docker/login-action@v2 + with: + registry: ghcr.io + username: ${{ github.actor }} + password: ${{ secrets.GITHUB_TOKEN }} + - name: Build and push + uses: docker/build-push-action@v4 + with: + push: true + tags: ghcr.io/the-candy-shop/starksheet-monorepo/starksheet-solidity:latest + context: . + file: ./packages/starksheet-solidity/Dockerfile + platforms: linux/amd64,linux/arm64 + + webapp: + runs-on: ubuntu-latest + steps: + - uses: actions/checkout@v3 + - name: Set up QEMU + uses: docker/setup-qemu-action@v2 + - name: Set up Docker Buildx + uses: docker/setup-buildx-action@v2 + - name: Login to GitHub Container Registry + uses: docker/login-action@v2 + with: + registry: ghcr.io + username: ${{ github.actor }} + password: ${{ secrets.GITHUB_TOKEN }} + - name: Build and push + uses: docker/build-push-action@v4 + with: + push: true + tags: ghcr.io/the-candy-shop/starksheet-monorepo/starksheet-webapp:latest + context: ./packages/starksheet-webapp + platforms: linux/amd64,linux/arm64 diff --git a/.vscode/settings.json b/.vscode/settings.json index 5dbf224e..3ed6c2e0 100644 --- a/.vscode/settings.json +++ b/.vscode/settings.json @@ -1,5 +1,6 @@ { "python.testing.pytestArgs": ["packages"], "python.testing.unittestEnabled": false, - "python.testing.pytestEnabled": true + "python.testing.pytestEnabled": true, + "githubPullRequests.ignoredPullRequestBranches": ["staging"] } diff --git a/docker-compose.yml b/docker-compose.yml index 82403e2e..e58fe237 100644 --- a/docker-compose.yml +++ b/docker-compose.yml @@ -1,59 +1,111 @@ services: - - starknet-devnet: - image: shardlabs/starknet-devnet + ethereum: + platform: linux/x86_64 + image: ghcr.io/foundry-rs/foundry + entrypoint: anvil healthcheck: - test: ["CMD-SHELL", "if [ $(wget -qO- http://0.0.0.0:5050/is_alive) == 'Alive!!!' ]; then exit 0; else exit 1; fi"] + test: cast chain-id interval: 5s - command: - - "--seed=0" - - "--disable-rpc-request-validation" - - "--fork-network=alpha-goerli" ports: - - '5050:5050' + - "8545:8545" + environment: + ANVIL_IP_ADDR: "0.0.0.0" + networks: + - ethereum - starknet-deployer: + ethereum-deployer: + image: ghcr.io/the-candy-shop/starksheet-monorepo/starksheet-solidity:latest depends_on: - starknet-devnet: + ethereum: condition: service_healthy - build: - context: ./packages/starksheet-cairo + environment: + RPC_URL: http://ethereum:8545 + PRIVATE_KEY: "0xac0974bec39a17e36ba4a6b4d238ff944bacb478cbed5efcae784d7bf4f2ff80" + volumes: + - ethereum-broadcast:/app/starksheet/packages/starksheet-solidity/broadcast + - ethereum-out:/app/starksheet/packages/starksheet-solidity/out + networks: + - ethereum + + ethereum-webapp: + image: ghcr.io/the-candy-shop/starksheet-monorepo/starksheet-webapp:latest + depends_on: + ethereum-deployer: + condition: service_completed_successfully + working_dir: /app/starksheet/packages/starksheet-webapp volumes: - - ./packages/starksheet-cairo/deployments:/app/deployments + - ethereum-broadcast:/app/starksheet/packages/starksheet-solidity/broadcast + - ethereum-out:/app/starksheet/packages/starksheet-solidity/out environment: - ACCOUNT_ADDRESS: "0x7e00d496e324876bbc8531f2d9a82bf154d1a04a50218ee74cdd372f75a551a" - PRIVATE_KEY: "0xe3e70682c2094cac629f6fbed82c07cd" - STARKNET_NETWORK: "docker" + - REACT_APP_NETWORK=anvil + - REACT_APP_RPC_URL=http://0.0.0.0:8545 + - PORT=3000 + ports: + - "3000:3000" + networks: + - ethereum - ethereum-devnet: - image: ghcr.io/foundry-rs/foundry + starknet: + image: ghcr.io/dojoengine/dojo:v0.1.0 + command: + - "katana" + - "--allow-zero-max-fee" + - "--validate-max-steps" + - "16777216" + - "--invoke-max-steps" + - "16777216" + - "--gas-price" + - "0" healthcheck: - test: ["CMD", "nc", "-z", "localhost", "8545"] - interval: 5s + # This is a hack to just wait 1s + test: echo "ok" + interval: 1s ports: - - '8545:8545' - environment: - ANVIL_IP_ADDR: "0.0.0.0" - CHAIN: 1 - platform: linux/x86_64 - entrypoint: anvil + - "5050:5050" + networks: + - starknet - ethereum-deployer: + starknet-deployer: + image: ghcr.io/the-candy-shop/starksheet-monorepo/starksheet-cairo:latest depends_on: - ethereum-devnet: + starknet: condition: service_healthy - image: ghcr.io/foundry-rs/foundry environment: - PRIVATE_KEY: "0xac0974bec39a17e36ba4a6b4d238ff944bacb478cbed5efcae784d7bf4f2ff80" - ETHERSCAN_API_KEY: "foobar" + ACCOUNT_ADDRESS: "0x03ee9e18edc71a6df30ac3aca2e0b02a198fbce19b7480a63a0d71cbd76652e0" + PRIVATE_KEY: "0x0300001800000000300000180000000000030000000000003006001800006600" + RPC_URL: http://starknet:5050 + CHECK_INTERVAL: "0.1" + MAX_WAIT: "1" volumes: - - ./packages/starksheet-solidity:/app - working_dir: /app - platform: linux/x86_64 - entrypoint: forge - command: - - "script" - - "/app/script/Evmsheet.s.sol:EvmsheetScript" - - "--broadcast" - - "--verify" - - "--rpc-url=http://ethereum-devnet:8545" + - starknet-deployments:/app/starksheet/packages/starksheet-cairo/deployments + - starknet-build:/app/starksheet/packages/starksheet-cairo/build + networks: + - starknet + + starknet-webapp: + image: ghcr.io/the-candy-shop/starksheet-monorepo/starksheet-webapp:latest + depends_on: + starknet-deployer: + condition: service_completed_successfully + working_dir: /app/starksheet/packages/starksheet-webapp + volumes: + - starknet-deployments:/app/starksheet/packages/starksheet-cairo/deployments/katana + - starknet-build:/app/starksheet/packages/starksheet-cairo/build + environment: + - REACT_APP_NETWORK=katana + - REACT_APP_RPC_URL=http://0.0.0.0:5050 + - PORT=3001 + ports: + - "3001:3001" + networks: + - starknet + +volumes: + starknet-deployments: + starknet-build: + ethereum-broadcast: + ethereum-out: + +networks: + starknet: + ethereum: diff --git a/packages/starksheet-cairo/.dockerignore b/packages/starksheet-cairo/.dockerignore new file mode 100644 index 00000000..05a650bb --- /dev/null +++ b/packages/starksheet-cairo/.dockerignore @@ -0,0 +1,47 @@ +.DS_Store +.temp/ + +# Byte-compiled / optimized / DLL files +__pycache__/ +*.py[cod] +*$py.class + +# Distribution / packaging +.Python +develop-eggs/ +dist/ +downloads/ +eggs/ +.eggs/ +lib/ +lib64/ +parts/ +sdist/ +var/ +wheels/ +pip-wheel-metadata/ +share/python-wheels/ +*.egg-info/ +.installed.cfg +*.egg + +# Unit test / coverage reports +.pytest_cache/ + + +# Environments +.env + +# vscode project settings +.vscode/ +tests/tokens/ +calls.csv +daily_sheets.png +deployments +dust_pilots +notebooks +launch.json +tests +build +assets +allow_list.json diff --git a/packages/starksheet-cairo/.gitignore b/packages/starksheet-cairo/.gitignore index e2bf70db..66919fb0 100644 --- a/packages/starksheet-cairo/.gitignore +++ b/packages/starksheet-cairo/.gitignore @@ -37,3 +37,5 @@ share/python-wheels/ tests/tokens/ calls.csv daily_sheets.png +hourly_sheets.png +cumsum_sheets.png diff --git a/packages/starksheet-cairo/Dockerfile b/packages/starksheet-cairo/Dockerfile index 2cc5e07d..aa865884 100644 --- a/packages/starksheet-cairo/Dockerfile +++ b/packages/starksheet-cairo/Dockerfile @@ -1,25 +1,23 @@ -# pull official base image -FROM python:3.9.16-slim-buster +FROM python:3.9.13 -# set work directory in the container -WORKDIR /app +# install poetry +RUN curl -sSL https://install.python-poetry.org | python3 - +ENV PATH="$PATH:/root/.local/bin" +RUN poetry config virtualenvs.create false -# set environment variables -ENV PYTHONDONTWRITEBYTECODE 1 -ENV PYTHONUNBUFFERED 1 +# install madara swap +WORKDIR /app/starksheet/packages/starksheet-cairo +COPY poetry.lock . +COPY pyproject.toml . +COPY scripts ./scripts +COPY README.md . +RUN poetry install +# split install in two steps to leverage docker cache +COPY . . +RUN poetry install -# install system dependencies -RUN apt-get update && apt-get install -y gcc libgmp-dev +# Build contracts +RUN python scripts/compile_starksheet.py -# install python dependencies -RUN pip install --upgrade pip -RUN pip install poetry - -# copy project -COPY . /app/ - -# install dependencies -RUN poetry install --no-interaction --no-ansi - -# command to run on container start -CMD ["poetry", "run", "python", "deploy/starksheet.py"] +# Deploy madara swap +CMD ["python", "scripts/deploy_starksheet.py"] diff --git a/packages/starksheet-cairo/build/BasicCellRenderer.json b/packages/starksheet-cairo/build/BasicCellRenderer.json index 2ea21081..f8b4a4ce 100644 --- a/packages/starksheet-cairo/build/BasicCellRenderer.json +++ b/packages/starksheet-cairo/build/BasicCellRenderer.json @@ -1244,7 +1244,17713 @@ "0x48127ffb7fff8000", "0x208b7fff7fff7ffe" ], - "debug_info": null, + "debug_info": { + "file_contents": { + "autogen/starknet/arg_processor/01cba52f8515996bb9d7070bde81ff39281d096d7024a558efcba6e1fd2402cf.cairo": "assert [cast(fp + (-4), felt*)] = __calldata_actual_size;\n", + "autogen/starknet/arg_processor/293368f3a0e12cfcf22314a31e13b9801e95a5b8b2b71822a2fbbdf5a01ea795.cairo": "assert [__return_value_ptr] = ret_value.res;\nlet __return_value_ptr = __return_value_ptr + 1;\n", + "autogen/starknet/arg_processor/3e93b8906c329e7a5c33e020ce7a5a9c542c4444955be98eec5fcbef545a8662.cairo": "let __calldata_arg_value = [__calldata_ptr];\nlet __calldata_ptr = __calldata_ptr + 1;\n", + "autogen/starknet/arg_processor/5462c9ea522f66a6a8b3de2f37f244c7074893fe5c8d0b413046098a1ccfc2ce.cairo": "assert [__return_value_ptr] = ret_value.token_uri_len;\nlet __return_value_ptr = __return_value_ptr + 1;\n", + "autogen/starknet/arg_processor/8d1ba44ec0b1d27c24688348db19d49f555faaa5454ce90a4e7ba33d6a63afea.cairo": "// Check that the length is non-negative.\nassert [range_check_ptr] = ret_value.token_uri_len;\n// Store the updated range_check_ptr as a local variable to keep it available after\n// the memcpy.\nlocal range_check_ptr = range_check_ptr + 1;\n// Keep a reference to __return_value_ptr.\nlet __return_value_ptr_copy = __return_value_ptr;\n// Store the updated __return_value_ptr as a local variable to keep it available after\n// the memcpy.\nlocal __return_value_ptr: felt* = __return_value_ptr + ret_value.token_uri_len * 1;\nmemcpy(\n dst=__return_value_ptr_copy,\n src=ret_value.token_uri,\n len=ret_value.token_uri_len * 1);\n", + "autogen/starknet/arg_processor/92bae94c430cca894eac466fa5be50d176f1f62e79244db218577fbac5e84220.cairo": "let __calldata_arg_token_id = [__calldata_ptr];\nlet __calldata_ptr = __calldata_ptr + 1;\n", + "autogen/starknet/arg_processor/c31620b02d4d706f0542c989b2aadc01b0981d1f6a5933a8fe4937ace3d70d92.cairo": "let __calldata_actual_size = __calldata_ptr - cast([cast(fp + (-3), felt**)], felt*);\n", + "autogen/starknet/arg_processor/e1eb73cd870ec466294c3700e77817cf3c039ac1384882ddb76383eb87a5da90.cairo": "let __calldata_arg_name = [__calldata_ptr];\nlet __calldata_ptr = __calldata_ptr + 1;\n", + "autogen/starknet/external/number_to_index/741ea357d6336b0bed7bf0472425acd0311d543883b803388880e60a232040c7.cairo": "let range_check_ptr = [cast([cast(fp + (-5), felt**)] + 2, felt*)];\n", + "autogen/starknet/external/number_to_index/9684a85e93c782014ca14293edea4eb2502039a5a7b6538ecd39c56faaf12529.cairo": "let pedersen_ptr = [cast([cast(fp + (-5), felt**)] + 1, starkware.cairo.common.cairo_builtins.HashBuiltin**)];\n", + "autogen/starknet/external/number_to_index/a68682edf51054349d55d12f512f3ca07b3a036cd11c7ff8426fbb528937f807.cairo": "let ret_value = __wrapped_func{syscall_ptr=syscall_ptr, pedersen_ptr=pedersen_ptr, range_check_ptr=range_check_ptr}(token_id=__calldata_arg_token_id,);\nlet (range_check_ptr, retdata_size, retdata) = number_to_index_encode_return(ret_value, range_check_ptr);\n", + "autogen/starknet/external/number_to_index/b2c52ca2d2a8fc8791a983086d8716c5eacd0c3d62934914d2286f84b98ff4cb.cairo": "let syscall_ptr = [cast([cast(fp + (-5), felt**)] + 0, felt**)];\n", + "autogen/starknet/external/number_to_index/da17921a4e81c09e730800bbf23bfdbe5e9e6bfaedc59d80fbf62087fa43c27d.cairo": "return (syscall_ptr,pedersen_ptr,range_check_ptr,retdata_size,retdata);\n", + "autogen/starknet/external/return/number_to_index/920954ca2ff48177b60bb27bdab79c0df097509ec204b43f323f1ddea7d2d07e.cairo": "func number_to_index_encode_return(ret_value: (res: felt), range_check_ptr) -> (\n range_check_ptr: felt, data_len: felt, data: felt*) {\n %{ memory[ap] = segments.add() %}\n alloc_locals;\n local __return_value_ptr_start: felt*;\n let __return_value_ptr = __return_value_ptr_start;\n with range_check_ptr {\n }\n return (\n range_check_ptr=range_check_ptr,\n data_len=__return_value_ptr - __return_value_ptr_start,\n data=__return_value_ptr_start);\n}\n", + "autogen/starknet/external/return/token_uri/f48cf5085ac07908983bbc364b0ba70d64fa7f2a9b8dc38e9d6fe3783bd626a8.cairo": "func token_uri_encode_return(ret_value: (token_uri_len: felt, token_uri: felt*), range_check_ptr) -> (\n range_check_ptr: felt, data_len: felt, data: felt*) {\n %{ memory[ap] = segments.add() %}\n alloc_locals;\n local __return_value_ptr_start: felt*;\n let __return_value_ptr = __return_value_ptr_start;\n with range_check_ptr {\n }\n return (\n range_check_ptr=range_check_ptr,\n data_len=__return_value_ptr - __return_value_ptr_start,\n data=__return_value_ptr_start);\n}\n", + "autogen/starknet/external/token_uri/0e46c67014b1932c61618de0923cda1cd086d4d13ccfc96398cf52540cb66251.cairo": "func token_uri() -> (syscall_ptr: felt*, pedersen_ptr: starkware.cairo.common.cairo_builtins.HashBuiltin*, range_check_ptr: felt, size: felt, retdata: felt*) {\n alloc_locals;\n}\n", + "autogen/starknet/external/token_uri/3c45a718d5dec5c07bc4698665154ce6a53892dd6482470bafad1a3c27838e5e.cairo": "let ret_value = __wrapped_func{pedersen_ptr=pedersen_ptr, syscall_ptr=syscall_ptr, range_check_ptr=range_check_ptr}(token_id=__calldata_arg_token_id, value=__calldata_arg_value, name=__calldata_arg_name,);\nlet (range_check_ptr, retdata_size, retdata) = token_uri_encode_return(ret_value, range_check_ptr);\n", + "autogen/starknet/external/token_uri/741ea357d6336b0bed7bf0472425acd0311d543883b803388880e60a232040c7.cairo": "let range_check_ptr = [cast([cast(fp + (-5), felt**)] + 2, felt*)];\n", + "autogen/starknet/external/token_uri/9684a85e93c782014ca14293edea4eb2502039a5a7b6538ecd39c56faaf12529.cairo": "let pedersen_ptr = [cast([cast(fp + (-5), felt**)] + 1, starkware.cairo.common.cairo_builtins.HashBuiltin**)];\n", + "autogen/starknet/external/token_uri/b2c52ca2d2a8fc8791a983086d8716c5eacd0c3d62934914d2286f84b98ff4cb.cairo": "let syscall_ptr = [cast([cast(fp + (-5), felt**)] + 0, felt**)];\n", + "autogen/starknet/external/token_uri/da17921a4e81c09e730800bbf23bfdbe5e9e6bfaedc59d80fbf62087fa43c27d.cairo": "return (syscall_ptr,pedersen_ptr,range_check_ptr,retdata_size,retdata);\n" + }, + "instruction_locations": { + "0": { + "accessible_scopes": [ + "starkware.cairo.common.alloc", + "starkware.cairo.common.alloc.alloc" + ], + "flow_tracking_data": null, + "hints": [ + { + "location": { + "end_col": 38, + "end_line": 3, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/alloc.cairo" + }, + "start_col": 5, + "start_line": 3 + }, + "n_prefix_newlines": 0 + } + ], + "inst": { + "end_col": 12, + "end_line": 4, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/alloc.cairo" + }, + "start_col": 5, + "start_line": 4 + } + }, + "2": { + "accessible_scopes": [ + "starkware.cairo.common.alloc", + "starkware.cairo.common.alloc.alloc" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 40, + "end_line": 5, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/alloc.cairo" + }, + "start_col": 5, + "start_line": 5 + } + }, + "3": { + "accessible_scopes": [ + "starkware.cairo.common.memcpy", + "starkware.cairo.common.memcpy.memcpy" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 7, + "end_line": 8, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/memcpy.cairo" + }, + "start_col": 5, + "start_line": 8 + } + }, + "5": { + "accessible_scopes": [ + "starkware.cairo.common.memcpy", + "starkware.cairo.common.memcpy.memcpy" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 19, + "end_line": 9, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/memcpy.cairo" + }, + "start_col": 9, + "start_line": 9 + } + }, + "6": { + "accessible_scopes": [ + "starkware.cairo.common.memcpy", + "starkware.cairo.common.memcpy.memcpy" + ], + "flow_tracking_data": null, + "hints": [ + { + "location": { + "end_col": 41, + "end_line": 12, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/memcpy.cairo" + }, + "start_col": 5, + "start_line": 12 + }, + "n_prefix_newlines": 0 + } + ], + "inst": { + "end_col": 23, + "end_line": 2, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/memcpy.cairo" + }, + "parent_location": [ + { + "end_col": 38, + "end_line": 13, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/memcpy.cairo" + }, + "start_col": 35, + "start_line": 13 + }, + "While expanding the reference 'dst' in:" + ], + "start_col": 13, + "start_line": 2 + } + }, + "7": { + "accessible_scopes": [ + "starkware.cairo.common.memcpy", + "starkware.cairo.common.memcpy.memcpy" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 35, + "end_line": 2, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/memcpy.cairo" + }, + "parent_location": [ + { + "end_col": 47, + "end_line": 13, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/memcpy.cairo" + }, + "start_col": 44, + "start_line": 13 + }, + "While expanding the reference 'src' in:" + ], + "start_col": 25, + "start_line": 2 + } + }, + "8": { + "accessible_scopes": [ + "starkware.cairo.common.memcpy", + "starkware.cairo.common.memcpy.memcpy" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 37, + "end_line": 17, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/memcpy.cairo" + }, + "start_col": 26, + "start_line": 17 + } + }, + "9": { + "accessible_scopes": [ + "starkware.cairo.common.memcpy", + "starkware.cairo.common.memcpy.memcpy" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 38, + "end_line": 17, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/memcpy.cairo" + }, + "start_col": 5, + "start_line": 17 + } + }, + "10": { + "accessible_scopes": [ + "starkware.cairo.common.memcpy", + "starkware.cairo.common.memcpy.memcpy" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 41, + "end_line": 22, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/memcpy.cairo" + }, + "start_col": 5, + "start_line": 22 + } + }, + "12": { + "accessible_scopes": [ + "starkware.cairo.common.memcpy", + "starkware.cairo.common.memcpy.memcpy" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 41, + "end_line": 23, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/memcpy.cairo" + }, + "start_col": 5, + "start_line": 23 + } + }, + "14": { + "accessible_scopes": [ + "starkware.cairo.common.memcpy", + "starkware.cairo.common.memcpy.memcpy" + ], + "flow_tracking_data": null, + "hints": [ + { + "location": { + "end_col": 7, + "end_line": 27, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/memcpy.cairo" + }, + "start_col": 5, + "start_line": 24 + }, + "n_prefix_newlines": 1 + } + ], + "inst": { + "end_col": 44, + "end_line": 29, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/memcpy.cairo" + }, + "start_col": 5, + "start_line": 29 + } + }, + "16": { + "accessible_scopes": [ + "starkware.cairo.common.memcpy", + "starkware.cairo.common.memcpy.memcpy" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 55, + "end_line": 31, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/memcpy.cairo" + }, + "start_col": 5, + "start_line": 31 + } + }, + "17": { + "accessible_scopes": [ + "starkware.cairo.common.memcpy", + "starkware.cairo.common.memcpy.memcpy" + ], + "flow_tracking_data": null, + "hints": [ + { + "location": { + "end_col": 26, + "end_line": 33, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/memcpy.cairo" + }, + "start_col": 5, + "start_line": 33 + }, + "n_prefix_newlines": 0 + } + ], + "inst": { + "end_col": 15, + "end_line": 34, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/memcpy.cairo" + }, + "start_col": 5, + "start_line": 34 + } + }, + "18": { + "accessible_scopes": [ + "starkware.cairo.common.math", + "starkware.cairo.common.math.assert_nn" + ], + "flow_tracking_data": null, + "hints": [ + { + "location": { + "end_col": 7, + "end_line": 46, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/math.cairo" + }, + "start_col": 5, + "start_line": 42 + }, + "n_prefix_newlines": 1 + } + ], + "inst": { + "end_col": 26, + "end_line": 47, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/math.cairo" + }, + "start_col": 5, + "start_line": 47 + } + }, + "19": { + "accessible_scopes": [ + "starkware.cairo.common.math", + "starkware.cairo.common.math.assert_nn" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 46, + "end_line": 48, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/math.cairo" + }, + "parent_location": [ + { + "end_col": 31, + "end_line": 41, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/math.cairo" + }, + "parent_location": [ + { + "end_col": 15, + "end_line": 49, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/math.cairo" + }, + "start_col": 5, + "start_line": 49 + }, + "While trying to retrieve the implicit argument 'range_check_ptr' in:" + ], + "start_col": 16, + "start_line": 41 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 27, + "start_line": 48 + } + }, + "21": { + "accessible_scopes": [ + "starkware.cairo.common.math", + "starkware.cairo.common.math.assert_nn" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 15, + "end_line": 49, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/math.cairo" + }, + "start_col": 5, + "start_line": 49 + } + }, + "22": { + "accessible_scopes": [ + "starkware.cairo.common.math", + "starkware.cairo.common.math.assert_le" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 31, + "end_line": 53, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/math.cairo" + }, + "parent_location": [ + { + "end_col": 31, + "end_line": 41, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/math.cairo" + }, + "parent_location": [ + { + "end_col": 21, + "end_line": 54, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/math.cairo" + }, + "start_col": 5, + "start_line": 54 + }, + "While trying to retrieve the implicit argument 'range_check_ptr' in:" + ], + "start_col": 16, + "start_line": 41 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 16, + "start_line": 53 + } + }, + "23": { + "accessible_scopes": [ + "starkware.cairo.common.math", + "starkware.cairo.common.math.assert_le" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 20, + "end_line": 54, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/math.cairo" + }, + "start_col": 15, + "start_line": 54 + } + }, + "24": { + "accessible_scopes": [ + "starkware.cairo.common.math", + "starkware.cairo.common.math.assert_le" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 21, + "end_line": 54, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/math.cairo" + }, + "start_col": 5, + "start_line": 54 + } + }, + "26": { + "accessible_scopes": [ + "starkware.cairo.common.math", + "starkware.cairo.common.math.assert_le" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 15, + "end_line": 55, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/math.cairo" + }, + "start_col": 5, + "start_line": 55 + } + }, + "27": { + "accessible_scopes": [ + "starkware.cairo.common.math", + "starkware.cairo.common.math.assert_le_felt" + ], + "flow_tracking_data": null, + "hints": [ + { + "location": { + "end_col": 7, + "end_line": 184, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/math.cairo" + }, + "start_col": 5, + "start_line": 164 + }, + "n_prefix_newlines": 1 + } + ], + "inst": { + "end_col": 42, + "end_line": 186, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/math.cairo" + }, + "start_col": 25, + "start_line": 186 + } + }, + "28": { + "accessible_scopes": [ + "starkware.cairo.common.math", + "starkware.cairo.common.math.assert_le_felt" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 66, + "end_line": 186, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/math.cairo" + }, + "start_col": 45, + "start_line": 186 + } + }, + "29": { + "accessible_scopes": [ + "starkware.cairo.common.math", + "starkware.cairo.common.math.assert_le_felt" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 86, + "end_line": 186, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/math.cairo" + }, + "start_col": 45, + "start_line": 186 + } + }, + "31": { + "accessible_scopes": [ + "starkware.cairo.common.math", + "starkware.cairo.common.math.assert_le_felt" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 86, + "end_line": 186, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/math.cairo" + }, + "start_col": 25, + "start_line": 186 + } + }, + "32": { + "accessible_scopes": [ + "starkware.cairo.common.math", + "starkware.cairo.common.math.assert_le_felt" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 45, + "end_line": 187, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/math.cairo" + }, + "start_col": 24, + "start_line": 187 + } + }, + "33": { + "accessible_scopes": [ + "starkware.cairo.common.math", + "starkware.cairo.common.math.assert_le_felt" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 69, + "end_line": 187, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/math.cairo" + }, + "start_col": 48, + "start_line": 187 + } + }, + "34": { + "accessible_scopes": [ + "starkware.cairo.common.math", + "starkware.cairo.common.math.assert_le_felt" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 89, + "end_line": 187, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/math.cairo" + }, + "start_col": 48, + "start_line": 187 + } + }, + "36": { + "accessible_scopes": [ + "starkware.cairo.common.math", + "starkware.cairo.common.math.assert_le_felt" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 89, + "end_line": 187, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/math.cairo" + }, + "start_col": 24, + "start_line": 187 + } + }, + "37": { + "accessible_scopes": [ + "starkware.cairo.common.math", + "starkware.cairo.common.math.assert_le_felt" + ], + "flow_tracking_data": null, + "hints": [ + { + "location": { + "end_col": 49, + "end_line": 196, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/math.cairo" + }, + "start_col": 5, + "start_line": 196 + }, + "n_prefix_newlines": 0 + } + ], + "inst": { + "end_col": 42, + "end_line": 197, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/math.cairo" + }, + "start_col": 5, + "start_line": 197 + } + }, + "39": { + "accessible_scopes": [ + "starkware.cairo.common.math", + "starkware.cairo.common.math.assert_le_felt" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 25, + "end_line": 198, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/math.cairo" + }, + "start_col": 23, + "start_line": 198 + } + }, + "41": { + "accessible_scopes": [ + "starkware.cairo.common.math", + "starkware.cairo.common.math.assert_le_felt" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 30, + "end_line": 198, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/math.cairo" + }, + "start_col": 22, + "start_line": 198 + } + }, + "42": { + "accessible_scopes": [ + "starkware.cairo.common.math", + "starkware.cairo.common.math.assert_le_felt" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 31, + "end_line": 198, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/math.cairo" + }, + "start_col": 5, + "start_line": 198 + } + }, + "43": { + "accessible_scopes": [ + "starkware.cairo.common.math", + "starkware.cairo.common.math.assert_le_felt" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 29, + "end_line": 199, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/math.cairo" + }, + "start_col": 24, + "start_line": 199 + } + }, + "44": { + "accessible_scopes": [ + "starkware.cairo.common.math", + "starkware.cairo.common.math.assert_le_felt" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 39, + "end_line": 199, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/math.cairo" + }, + "start_col": 34, + "start_line": 199 + } + }, + "46": { + "accessible_scopes": [ + "starkware.cairo.common.math", + "starkware.cairo.common.math.assert_le_felt" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 40, + "end_line": 199, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/math.cairo" + }, + "start_col": 23, + "start_line": 199 + } + }, + "47": { + "accessible_scopes": [ + "starkware.cairo.common.math", + "starkware.cairo.common.math.assert_le_felt" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 41, + "end_line": 199, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/math.cairo" + }, + "start_col": 5, + "start_line": 199 + } + }, + "48": { + "accessible_scopes": [ + "starkware.cairo.common.math", + "starkware.cairo.common.math.assert_le_felt" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 46, + "end_line": 188, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/math.cairo" + }, + "parent_location": [ + { + "end_col": 36, + "end_line": 154, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/math.cairo" + }, + "parent_location": [ + { + "end_col": 15, + "end_line": 200, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/math.cairo" + }, + "start_col": 5, + "start_line": 200 + }, + "While trying to retrieve the implicit argument 'range_check_ptr' in:" + ], + "start_col": 21, + "start_line": 154 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 27, + "start_line": 188 + } + }, + "50": { + "accessible_scopes": [ + "starkware.cairo.common.math", + "starkware.cairo.common.math.assert_le_felt" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 15, + "end_line": 200, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/math.cairo" + }, + "start_col": 5, + "start_line": 200 + } + }, + "51": { + "accessible_scopes": [ + "starkware.cairo.common.math", + "starkware.cairo.common.math.assert_le_felt" + ], + "flow_tracking_data": null, + "hints": [ + { + "location": { + "end_col": 49, + "end_line": 204, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/math.cairo" + }, + "start_col": 5, + "start_line": 204 + }, + "n_prefix_newlines": 0 + } + ], + "inst": { + "end_col": 50, + "end_line": 205, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/math.cairo" + }, + "start_col": 5, + "start_line": 205 + } + }, + "53": { + "accessible_scopes": [ + "starkware.cairo.common.math", + "starkware.cairo.common.math.assert_le_felt" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 23, + "end_line": 206, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/math.cairo" + }, + "start_col": 21, + "start_line": 206 + } + }, + "55": { + "accessible_scopes": [ + "starkware.cairo.common.math", + "starkware.cairo.common.math.assert_le_felt" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 28, + "end_line": 206, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/math.cairo" + }, + "start_col": 20, + "start_line": 206 + } + }, + "56": { + "accessible_scopes": [ + "starkware.cairo.common.math", + "starkware.cairo.common.math.assert_le_felt" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 30, + "end_line": 207, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/math.cairo" + }, + "start_col": 22, + "start_line": 207 + } + }, + "57": { + "accessible_scopes": [ + "starkware.cairo.common.math", + "starkware.cairo.common.math.assert_le_felt" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 31, + "end_line": 207, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/math.cairo" + }, + "start_col": 5, + "start_line": 207 + } + }, + "58": { + "accessible_scopes": [ + "starkware.cairo.common.math", + "starkware.cairo.common.math.assert_le_felt" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 31, + "end_line": 208, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/math.cairo" + }, + "start_col": 23, + "start_line": 208 + } + }, + "59": { + "accessible_scopes": [ + "starkware.cairo.common.math", + "starkware.cairo.common.math.assert_le_felt" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 32, + "end_line": 208, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/math.cairo" + }, + "start_col": 5, + "start_line": 208 + } + }, + "60": { + "accessible_scopes": [ + "starkware.cairo.common.math", + "starkware.cairo.common.math.assert_le_felt" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 46, + "end_line": 188, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/math.cairo" + }, + "parent_location": [ + { + "end_col": 36, + "end_line": 154, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/math.cairo" + }, + "parent_location": [ + { + "end_col": 15, + "end_line": 209, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/math.cairo" + }, + "start_col": 5, + "start_line": 209 + }, + "While trying to retrieve the implicit argument 'range_check_ptr' in:" + ], + "start_col": 21, + "start_line": 154 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 27, + "start_line": 188 + } + }, + "62": { + "accessible_scopes": [ + "starkware.cairo.common.math", + "starkware.cairo.common.math.assert_le_felt" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 15, + "end_line": 209, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/math.cairo" + }, + "start_col": 5, + "start_line": 209 + } + }, + "63": { + "accessible_scopes": [ + "starkware.cairo.common.math", + "starkware.cairo.common.math.assert_le_felt" + ], + "flow_tracking_data": null, + "hints": [ + { + "location": { + "end_col": 31, + "end_line": 213, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/math.cairo" + }, + "start_col": 5, + "start_line": 213 + }, + "n_prefix_newlines": 0 + } + ], + "inst": { + "end_col": 24, + "end_line": 214, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/math.cairo" + }, + "start_col": 5, + "start_line": 214 + } + }, + "64": { + "accessible_scopes": [ + "starkware.cairo.common.math", + "starkware.cairo.common.math.assert_le_felt" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 33, + "end_line": 215, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/math.cairo" + }, + "start_col": 28, + "start_line": 215 + } + }, + "65": { + "accessible_scopes": [ + "starkware.cairo.common.math", + "starkware.cairo.common.math.assert_le_felt" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 34, + "end_line": 215, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/math.cairo" + }, + "start_col": 23, + "start_line": 215 + } + }, + "66": { + "accessible_scopes": [ + "starkware.cairo.common.math", + "starkware.cairo.common.math.assert_le_felt" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 35, + "end_line": 215, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/math.cairo" + }, + "start_col": 5, + "start_line": 215 + } + }, + "67": { + "accessible_scopes": [ + "starkware.cairo.common.math", + "starkware.cairo.common.math.assert_le_felt" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 12, + "end_line": 216, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/math.cairo" + }, + "start_col": 5, + "start_line": 216 + } + }, + "69": { + "accessible_scopes": [ + "starkware.cairo.common.math", + "starkware.cairo.common.math.assert_le_felt" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 46, + "end_line": 188, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/math.cairo" + }, + "parent_location": [ + { + "end_col": 36, + "end_line": 154, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/math.cairo" + }, + "parent_location": [ + { + "end_col": 15, + "end_line": 217, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/math.cairo" + }, + "start_col": 5, + "start_line": 217 + }, + "While trying to retrieve the implicit argument 'range_check_ptr' in:" + ], + "start_col": 21, + "start_line": 154 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 27, + "start_line": 188 + } + }, + "71": { + "accessible_scopes": [ + "starkware.cairo.common.math", + "starkware.cairo.common.math.assert_le_felt" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 15, + "end_line": 217, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/math.cairo" + }, + "start_col": 5, + "start_line": 217 + } + }, + "72": { + "accessible_scopes": [ + "starkware.cairo.common.math", + "starkware.cairo.common.math.abs_value" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 31, + "end_line": 243, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/math.cairo" + }, + "start_col": 5, + "start_line": 243 + } + }, + "74": { + "accessible_scopes": [ + "starkware.cairo.common.math", + "starkware.cairo.common.math.abs_value" + ], + "flow_tracking_data": null, + "hints": [ + { + "location": { + "end_col": 7, + "end_line": 248, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/math.cairo" + }, + "start_col": 5, + "start_line": 244 + }, + "n_prefix_newlines": 1 + } + ], + "inst": { + "end_col": 7, + "end_line": 249, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/math.cairo" + }, + "start_col": 5, + "start_line": 249 + } + }, + "76": { + "accessible_scopes": [ + "starkware.cairo.common.math", + "starkware.cairo.common.math.abs_value" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 58, + "end_line": 250, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/math.cairo" + }, + "start_col": 39, + "start_line": 250 + } + }, + "78": { + "accessible_scopes": [ + "starkware.cairo.common.math", + "starkware.cairo.common.math.abs_value" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 41, + "end_line": 251, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/math.cairo" + }, + "start_col": 29, + "start_line": 251 + } + }, + "80": { + "accessible_scopes": [ + "starkware.cairo.common.math", + "starkware.cairo.common.math.abs_value" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 38, + "end_line": 252, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/math.cairo" + }, + "start_col": 9, + "start_line": 252 + } + }, + "81": { + "accessible_scopes": [ + "starkware.cairo.common.math", + "starkware.cairo.common.math.abs_value" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 26, + "end_line": 254, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/math.cairo" + }, + "start_col": 9, + "start_line": 254 + } + }, + "82": { + "accessible_scopes": [ + "starkware.cairo.common.math", + "starkware.cairo.common.math.abs_value" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 34, + "end_line": 256, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/math.cairo" + }, + "start_col": 9, + "start_line": 256 + } + }, + "83": { + "accessible_scopes": [ + "starkware.cairo.common.math", + "starkware.cairo.common.math.abs_value" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 50, + "end_line": 257, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/math.cairo" + }, + "parent_location": [ + { + "end_col": 31, + "end_line": 242, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/math.cairo" + }, + "parent_location": [ + { + "end_col": 22, + "end_line": 258, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/math.cairo" + }, + "start_col": 9, + "start_line": 258 + }, + "While trying to retrieve the implicit argument 'range_check_ptr' in:" + ], + "start_col": 16, + "start_line": 242 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 31, + "start_line": 257 + } + }, + "85": { + "accessible_scopes": [ + "starkware.cairo.common.math", + "starkware.cairo.common.math.abs_value" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 38, + "end_line": 242, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/math.cairo" + }, + "parent_location": [ + { + "end_col": 21, + "end_line": 258, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/math.cairo" + }, + "start_col": 16, + "start_line": 258 + }, + "While expanding the reference 'value' in:" + ], + "start_col": 33, + "start_line": 242 + } + }, + "86": { + "accessible_scopes": [ + "starkware.cairo.common.math", + "starkware.cairo.common.math.abs_value" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 22, + "end_line": 258, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/math.cairo" + }, + "start_col": 9, + "start_line": 258 + } + }, + "87": { + "accessible_scopes": [ + "starkware.cairo.common.math", + "starkware.cairo.common.math.sign" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 7, + "end_line": 266, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/math.cairo" + }, + "start_col": 5, + "start_line": 266 + } + }, + "89": { + "accessible_scopes": [ + "starkware.cairo.common.math", + "starkware.cairo.common.math.sign" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 16, + "end_line": 267, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/math.cairo" + }, + "start_col": 9, + "start_line": 267 + } + }, + "91": { + "accessible_scopes": [ + "starkware.cairo.common.math", + "starkware.cairo.common.math.sign" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 26, + "end_line": 265, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/math.cairo" + }, + "parent_location": [ + { + "end_col": 26, + "end_line": 265, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/math.cairo" + }, + "parent_location": [ + { + "end_col": 18, + "end_line": 268, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/math.cairo" + }, + "start_col": 9, + "start_line": 268 + }, + "While trying to retrieve the implicit argument 'range_check_ptr' in:" + ], + "start_col": 11, + "start_line": 265 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 11, + "start_line": 265 + } + }, + "92": { + "accessible_scopes": [ + "starkware.cairo.common.math", + "starkware.cairo.common.math.sign" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 17, + "end_line": 268, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/math.cairo" + }, + "start_col": 16, + "start_line": 268 + } + }, + "94": { + "accessible_scopes": [ + "starkware.cairo.common.math", + "starkware.cairo.common.math.sign" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 18, + "end_line": 268, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/math.cairo" + }, + "start_col": 9, + "start_line": 268 + } + }, + "95": { + "accessible_scopes": [ + "starkware.cairo.common.math", + "starkware.cairo.common.math.sign" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 31, + "end_line": 271, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/math.cairo" + }, + "start_col": 5, + "start_line": 271 + } + }, + "97": { + "accessible_scopes": [ + "starkware.cairo.common.math", + "starkware.cairo.common.math.sign" + ], + "flow_tracking_data": null, + "hints": [ + { + "location": { + "end_col": 7, + "end_line": 276, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/math.cairo" + }, + "start_col": 5, + "start_line": 272 + }, + "n_prefix_newlines": 1 + } + ], + "inst": { + "end_col": 7, + "end_line": 277, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/math.cairo" + }, + "start_col": 5, + "start_line": 277 + } + }, + "99": { + "accessible_scopes": [ + "starkware.cairo.common.math", + "starkware.cairo.common.math.sign" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 48, + "end_line": 278, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/math.cairo" + }, + "start_col": 36, + "start_line": 278 + } + }, + "101": { + "accessible_scopes": [ + "starkware.cairo.common.math", + "starkware.cairo.common.math.sign" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 49, + "end_line": 278, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/math.cairo" + }, + "start_col": 9, + "start_line": 278 + } + }, + "102": { + "accessible_scopes": [ + "starkware.cairo.common.math", + "starkware.cairo.common.math.sign" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 50, + "end_line": 279, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/math.cairo" + }, + "parent_location": [ + { + "end_col": 26, + "end_line": 265, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/math.cairo" + }, + "parent_location": [ + { + "end_col": 19, + "end_line": 280, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/math.cairo" + }, + "start_col": 9, + "start_line": 280 + }, + "While trying to retrieve the implicit argument 'range_check_ptr' in:" + ], + "start_col": 11, + "start_line": 265 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 31, + "start_line": 279 + } + }, + "104": { + "accessible_scopes": [ + "starkware.cairo.common.math", + "starkware.cairo.common.math.sign" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 18, + "end_line": 280, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/math.cairo" + }, + "start_col": 16, + "start_line": 280 + } + }, + "106": { + "accessible_scopes": [ + "starkware.cairo.common.math", + "starkware.cairo.common.math.sign" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 19, + "end_line": 280, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/math.cairo" + }, + "start_col": 9, + "start_line": 280 + } + }, + "107": { + "accessible_scopes": [ + "starkware.cairo.common.math", + "starkware.cairo.common.math.sign" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 16, + "end_line": 282, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/math.cairo" + }, + "start_col": 9, + "start_line": 282 + } + }, + "109": { + "accessible_scopes": [ + "starkware.cairo.common.math", + "starkware.cairo.common.math.sign" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 34, + "end_line": 283, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/math.cairo" + }, + "start_col": 9, + "start_line": 283 + } + }, + "110": { + "accessible_scopes": [ + "starkware.cairo.common.math", + "starkware.cairo.common.math.sign" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 50, + "end_line": 284, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/math.cairo" + }, + "parent_location": [ + { + "end_col": 26, + "end_line": 265, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/math.cairo" + }, + "parent_location": [ + { + "end_col": 18, + "end_line": 285, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/math.cairo" + }, + "start_col": 9, + "start_line": 285 + }, + "While trying to retrieve the implicit argument 'range_check_ptr' in:" + ], + "start_col": 11, + "start_line": 265 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 31, + "start_line": 284 + } + }, + "112": { + "accessible_scopes": [ + "starkware.cairo.common.math", + "starkware.cairo.common.math.sign" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 17, + "end_line": 285, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/math.cairo" + }, + "start_col": 16, + "start_line": 285 + } + }, + "114": { + "accessible_scopes": [ + "starkware.cairo.common.math", + "starkware.cairo.common.math.sign" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 18, + "end_line": 285, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/math.cairo" + }, + "start_col": 9, + "start_line": 285 + } + }, + "115": { + "accessible_scopes": [ + "starkware.cairo.common.math", + "starkware.cairo.common.math.unsigned_div_rem" + ], + "flow_tracking_data": null, + "hints": [ + { + "location": { + "end_col": 7, + "end_line": 307, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/math.cairo" + }, + "start_col": 5, + "start_line": 301 + }, + "n_prefix_newlines": 1 + } + ], + "inst": { + "end_col": 46, + "end_line": 300, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/math.cairo" + }, + "parent_location": [ + { + "end_col": 31, + "end_line": 53, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/math.cairo" + }, + "parent_location": [ + { + "end_col": 26, + "end_line": 308, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/math.cairo" + }, + "start_col": 5, + "start_line": 308 + }, + "While trying to retrieve the implicit argument 'range_check_ptr' in:" + ], + "start_col": 16, + "start_line": 53 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 27, + "start_line": 300 + } + }, + "117": { + "accessible_scopes": [ + "starkware.cairo.common.math", + "starkware.cairo.common.math.unsigned_div_rem" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 30, + "end_line": 298, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/math.cairo" + }, + "parent_location": [ + { + "end_col": 16, + "end_line": 308, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/math.cairo" + }, + "start_col": 15, + "start_line": 308 + }, + "While expanding the reference 'r' in:" + ], + "start_col": 13, + "start_line": 298 + } + }, + "118": { + "accessible_scopes": [ + "starkware.cairo.common.math", + "starkware.cairo.common.math.unsigned_div_rem" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 25, + "end_line": 308, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/math.cairo" + }, + "start_col": 18, + "start_line": 308 + } + }, + "120": { + "accessible_scopes": [ + "starkware.cairo.common.math", + "starkware.cairo.common.math.unsigned_div_rem" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 26, + "end_line": 308, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/math.cairo" + }, + "start_col": 5, + "start_line": 308 + } + }, + "122": { + "accessible_scopes": [ + "starkware.cairo.common.math", + "starkware.cairo.common.math.unsigned_div_rem" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 34, + "end_line": 299, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/math.cairo" + }, + "parent_location": [ + { + "end_col": 21, + "end_line": 310, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/math.cairo" + }, + "start_col": 20, + "start_line": 310 + }, + "While expanding the reference 'q' in:" + ], + "start_col": 13, + "start_line": 299 + } + }, + "123": { + "accessible_scopes": [ + "starkware.cairo.common.math", + "starkware.cairo.common.math.unsigned_div_rem" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 27, + "end_line": 310, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/math.cairo" + }, + "start_col": 20, + "start_line": 310 + } + }, + "124": { + "accessible_scopes": [ + "starkware.cairo.common.math", + "starkware.cairo.common.math.unsigned_div_rem" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 30, + "end_line": 298, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/math.cairo" + }, + "parent_location": [ + { + "end_col": 31, + "end_line": 310, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/math.cairo" + }, + "start_col": 30, + "start_line": 310 + }, + "While expanding the reference 'r' in:" + ], + "start_col": 13, + "start_line": 298 + } + }, + "125": { + "accessible_scopes": [ + "starkware.cairo.common.math", + "starkware.cairo.common.math.unsigned_div_rem" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 32, + "end_line": 310, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/math.cairo" + }, + "start_col": 5, + "start_line": 310 + } + }, + "126": { + "accessible_scopes": [ + "starkware.cairo.common.math", + "starkware.cairo.common.math.unsigned_div_rem" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 31, + "end_line": 53, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/math.cairo" + }, + "parent_location": [ + { + "end_col": 26, + "end_line": 308, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/math.cairo" + }, + "parent_location": [ + { + "end_col": 38, + "end_line": 297, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/math.cairo" + }, + "parent_location": [ + { + "end_col": 19, + "end_line": 311, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/math.cairo" + }, + "start_col": 5, + "start_line": 311 + }, + "While trying to retrieve the implicit argument 'range_check_ptr' in:" + ], + "start_col": 23, + "start_line": 297 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 5, + "start_line": 308 + }, + "While trying to update the implicit return value 'range_check_ptr' in:" + ], + "start_col": 16, + "start_line": 53 + } + }, + "127": { + "accessible_scopes": [ + "starkware.cairo.common.math", + "starkware.cairo.common.math.unsigned_div_rem" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 34, + "end_line": 299, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/math.cairo" + }, + "parent_location": [ + { + "end_col": 14, + "end_line": 311, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/math.cairo" + }, + "start_col": 13, + "start_line": 311 + }, + "While expanding the reference 'q' in:" + ], + "start_col": 13, + "start_line": 299 + } + }, + "128": { + "accessible_scopes": [ + "starkware.cairo.common.math", + "starkware.cairo.common.math.unsigned_div_rem" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 30, + "end_line": 298, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/math.cairo" + }, + "parent_location": [ + { + "end_col": 17, + "end_line": 311, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/math.cairo" + }, + "start_col": 16, + "start_line": 311 + }, + "While expanding the reference 'r' in:" + ], + "start_col": 13, + "start_line": 298 + } + }, + "129": { + "accessible_scopes": [ + "starkware.cairo.common.math", + "starkware.cairo.common.math.unsigned_div_rem" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 19, + "end_line": 311, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/math.cairo" + }, + "start_col": 5, + "start_line": 311 + } + }, + "130": { + "accessible_scopes": [ + "starkware.cairo.common.math_cmp", + "starkware.cairo.common.math_cmp.is_nn" + ], + "flow_tracking_data": null, + "hints": [ + { + "location": { + "end_col": 84, + "end_line": 19, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/math_cmp.cairo" + }, + "start_col": 5, + "start_line": 19 + }, + "n_prefix_newlines": 0 + } + ], + "inst": { + "end_col": 40, + "end_line": 20, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/math_cmp.cairo" + }, + "start_col": 5, + "start_line": 20 + } + }, + "132": { + "accessible_scopes": [ + "starkware.cairo.common.math_cmp", + "starkware.cairo.common.math_cmp.is_nn" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 26, + "end_line": 21, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/math_cmp.cairo" + }, + "start_col": 5, + "start_line": 21 + } + }, + "133": { + "accessible_scopes": [ + "starkware.cairo.common.math_cmp", + "starkware.cairo.common.math_cmp.is_nn" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 13, + "end_line": 22, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/math_cmp.cairo" + }, + "start_col": 5, + "start_line": 22 + } + }, + "135": { + "accessible_scopes": [ + "starkware.cairo.common.math_cmp", + "starkware.cairo.common.math_cmp.is_nn" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 46, + "end_line": 23, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/math_cmp.cairo" + }, + "parent_location": [ + { + "end_col": 27, + "end_line": 18, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/math_cmp.cairo" + }, + "parent_location": [ + { + "end_col": 14, + "end_line": 24, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/math_cmp.cairo" + }, + "start_col": 5, + "start_line": 24 + }, + "While trying to retrieve the implicit argument 'range_check_ptr' in:" + ], + "start_col": 12, + "start_line": 18 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 27, + "start_line": 23 + } + }, + "137": { + "accessible_scopes": [ + "starkware.cairo.common.math_cmp", + "starkware.cairo.common.math_cmp.is_nn" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 13, + "end_line": 24, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/math_cmp.cairo" + }, + "start_col": 12, + "start_line": 24 + } + }, + "139": { + "accessible_scopes": [ + "starkware.cairo.common.math_cmp", + "starkware.cairo.common.math_cmp.is_nn" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 14, + "end_line": 24, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/math_cmp.cairo" + }, + "start_col": 5, + "start_line": 24 + } + }, + "140": { + "accessible_scopes": [ + "starkware.cairo.common.math_cmp", + "starkware.cairo.common.math_cmp.is_nn" + ], + "flow_tracking_data": null, + "hints": [ + { + "location": { + "end_col": 91, + "end_line": 27, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/math_cmp.cairo" + }, + "start_col": 5, + "start_line": 27 + }, + "n_prefix_newlines": 0 + } + ], + "inst": { + "end_col": 48, + "end_line": 28, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/math_cmp.cairo" + }, + "start_col": 5, + "start_line": 28 + } + }, + "142": { + "accessible_scopes": [ + "starkware.cairo.common.math_cmp", + "starkware.cairo.common.math_cmp.is_nn" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 35, + "end_line": 29, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/math_cmp.cairo" + }, + "start_col": 33, + "start_line": 29 + } + }, + "144": { + "accessible_scopes": [ + "starkware.cairo.common.math_cmp", + "starkware.cairo.common.math_cmp.is_nn" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 40, + "end_line": 29, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/math_cmp.cairo" + }, + "start_col": 32, + "start_line": 29 + } + }, + "146": { + "accessible_scopes": [ + "starkware.cairo.common.math_cmp", + "starkware.cairo.common.math_cmp.is_nn" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 41, + "end_line": 29, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/math_cmp.cairo" + }, + "start_col": 5, + "start_line": 29 + } + }, + "147": { + "accessible_scopes": [ + "starkware.cairo.common.math_cmp", + "starkware.cairo.common.math_cmp.is_nn" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 13, + "end_line": 30, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/math_cmp.cairo" + }, + "start_col": 5, + "start_line": 30 + } + }, + "149": { + "accessible_scopes": [ + "starkware.cairo.common.math_cmp", + "starkware.cairo.common.math_cmp.is_nn" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 46, + "end_line": 31, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/math_cmp.cairo" + }, + "parent_location": [ + { + "end_col": 27, + "end_line": 18, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/math_cmp.cairo" + }, + "parent_location": [ + { + "end_col": 14, + "end_line": 32, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/math_cmp.cairo" + }, + "start_col": 5, + "start_line": 32 + }, + "While trying to retrieve the implicit argument 'range_check_ptr' in:" + ], + "start_col": 12, + "start_line": 18 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 27, + "start_line": 31 + } + }, + "151": { + "accessible_scopes": [ + "starkware.cairo.common.math_cmp", + "starkware.cairo.common.math_cmp.is_nn" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 13, + "end_line": 32, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/math_cmp.cairo" + }, + "start_col": 12, + "start_line": 32 + } + }, + "153": { + "accessible_scopes": [ + "starkware.cairo.common.math_cmp", + "starkware.cairo.common.math_cmp.is_nn" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 14, + "end_line": 32, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/math_cmp.cairo" + }, + "start_col": 5, + "start_line": 32 + } + }, + "154": { + "accessible_scopes": [ + "starkware.cairo.common.math_cmp", + "starkware.cairo.common.math_cmp.is_nn" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 27, + "end_line": 18, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/math_cmp.cairo" + }, + "parent_location": [ + { + "end_col": 36, + "end_line": 154, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/math.cairo" + }, + "parent_location": [ + { + "end_col": 32, + "end_line": 35, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/math_cmp.cairo" + }, + "start_col": 5, + "start_line": 35 + }, + "While trying to retrieve the implicit argument 'range_check_ptr' in:" + ], + "start_col": 21, + "start_line": 154 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 12, + "start_line": 18 + } + }, + "155": { + "accessible_scopes": [ + "starkware.cairo.common.math_cmp", + "starkware.cairo.common.math_cmp.is_nn" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 28, + "end_line": 35, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/math_cmp.cairo" + }, + "start_col": 20, + "start_line": 35 + } + }, + "157": { + "accessible_scopes": [ + "starkware.cairo.common.math_cmp", + "starkware.cairo.common.math_cmp.is_nn" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 30, + "end_line": 18, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/math_cmp.cairo" + }, + "parent_location": [ + { + "end_col": 31, + "end_line": 35, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/math_cmp.cairo" + }, + "start_col": 30, + "start_line": 35 + }, + "While expanding the reference 'a' in:" + ], + "start_col": 29, + "start_line": 18 + } + }, + "158": { + "accessible_scopes": [ + "starkware.cairo.common.math_cmp", + "starkware.cairo.common.math_cmp.is_nn" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 32, + "end_line": 35, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/math_cmp.cairo" + }, + "start_col": 5, + "start_line": 35 + } + }, + "160": { + "accessible_scopes": [ + "starkware.cairo.common.math_cmp", + "starkware.cairo.common.math_cmp.is_nn" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 13, + "end_line": 36, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/math_cmp.cairo" + }, + "start_col": 12, + "start_line": 36 + } + }, + "162": { + "accessible_scopes": [ + "starkware.cairo.common.math_cmp", + "starkware.cairo.common.math_cmp.is_nn" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 14, + "end_line": 36, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/math_cmp.cairo" + }, + "start_col": 5, + "start_line": 36 + } + }, + "163": { + "accessible_scopes": [ + "starkware.cairo.common.math_cmp", + "starkware.cairo.common.math_cmp.is_le" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 27, + "end_line": 42, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/math_cmp.cairo" + }, + "parent_location": [ + { + "end_col": 27, + "end_line": 18, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/math_cmp.cairo" + }, + "parent_location": [ + { + "end_col": 24, + "end_line": 43, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/math_cmp.cairo" + }, + "start_col": 12, + "start_line": 43 + }, + "While trying to retrieve the implicit argument 'range_check_ptr' in:" + ], + "start_col": 12, + "start_line": 18 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 12, + "start_line": 42 + } + }, + "164": { + "accessible_scopes": [ + "starkware.cairo.common.math_cmp", + "starkware.cairo.common.math_cmp.is_le" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 23, + "end_line": 43, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/math_cmp.cairo" + }, + "start_col": 18, + "start_line": 43 + } + }, + "165": { + "accessible_scopes": [ + "starkware.cairo.common.math_cmp", + "starkware.cairo.common.math_cmp.is_le" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 24, + "end_line": 43, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/math_cmp.cairo" + }, + "start_col": 12, + "start_line": 43 + } + }, + "167": { + "accessible_scopes": [ + "starkware.cairo.common.math_cmp", + "starkware.cairo.common.math_cmp.is_le" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 25, + "end_line": 43, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/math_cmp.cairo" + }, + "start_col": 5, + "start_line": 43 + } + }, + "168": { + "accessible_scopes": [ + "utils.string", + "utils.string.str" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 18, + "end_line": 14, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/utils/string.cairo" + }, + "start_col": 5, + "start_line": 14 + } + }, + "170": { + "accessible_scopes": [ + "utils.string", + "utils.string.str" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 7, + "end_line": 16, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/utils/string.cairo" + }, + "start_col": 5, + "start_line": 16 + } + }, + "172": { + "accessible_scopes": [ + "utils.string", + "utils.string.str" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 25, + "end_line": 13, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/utils/string.cairo" + }, + "parent_location": [ + { + "end_col": 25, + "end_line": 13, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/utils/string.cairo" + }, + "parent_location": [ + { + "end_col": 23, + "end_line": 17, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/utils/string.cairo" + }, + "start_col": 9, + "start_line": 17 + }, + "While trying to retrieve the implicit argument 'range_check_ptr' in:" + ], + "start_col": 10, + "start_line": 13 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 10, + "start_line": 13 + } + }, + "173": { + "accessible_scopes": [ + "utils.string", + "utils.string.str" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 20, + "end_line": 17, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/utils/string.cairo" + }, + "start_col": 17, + "start_line": 17 + } + }, + "175": { + "accessible_scopes": [ + "utils.string", + "utils.string.str" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 23, + "end_line": 17, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/utils/string.cairo" + }, + "start_col": 9, + "start_line": 17 + } + }, + "176": { + "accessible_scopes": [ + "utils.string", + "utils.string.str" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 30, + "end_line": 20, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/utils/string.cairo" + }, + "start_col": 23, + "start_line": 20 + } + }, + "178": { + "accessible_scopes": [ + "utils.string", + "utils.string.str" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 19, + "end_line": 20, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/utils/string.cairo" + }, + "parent_location": [ + { + "end_col": 19, + "end_line": 20, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/utils/string.cairo" + }, + "start_col": 10, + "start_line": 20 + }, + "While auto generating local variable for 'arr_ascii'." + ], + "start_col": 10, + "start_line": 20 + } + }, + "179": { + "accessible_scopes": [ + "utils.string", + "utils.string.str" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 25, + "end_line": 13, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/utils/string.cairo" + }, + "parent_location": [ + { + "end_col": 31, + "end_line": 242, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/math.cairo" + }, + "parent_location": [ + { + "end_col": 33, + "end_line": 21, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/utils/string.cairo" + }, + "start_col": 19, + "start_line": 21 + }, + "While trying to retrieve the implicit argument 'range_check_ptr' in:" + ], + "start_col": 16, + "start_line": 242 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 10, + "start_line": 13 + } + }, + "180": { + "accessible_scopes": [ + "utils.string", + "utils.string.str" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 36, + "end_line": 13, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/utils/string.cairo" + }, + "parent_location": [ + { + "end_col": 32, + "end_line": 21, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/utils/string.cairo" + }, + "start_col": 29, + "start_line": 21 + }, + "While expanding the reference 'num' in:" + ], + "start_col": 27, + "start_line": 13 + } + }, + "181": { + "accessible_scopes": [ + "utils.string", + "utils.string.str" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 33, + "end_line": 21, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/utils/string.cairo" + }, + "start_col": 19, + "start_line": 21 + } + }, + "183": { + "accessible_scopes": [ + "utils.string", + "utils.string.str" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 40, + "end_line": 23, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/utils/string.cairo" + }, + "start_col": 39, + "start_line": 23 + } + }, + "185": { + "accessible_scopes": [ + "utils.string", + "utils.string.str" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 19, + "end_line": 20, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/utils/string.cairo" + }, + "parent_location": [ + { + "end_col": 19, + "end_line": 20, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/utils/string.cairo" + }, + "parent_location": [ + { + "end_col": 61, + "end_line": 23, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/utils/string.cairo" + }, + "start_col": 52, + "start_line": 23 + }, + "While expanding the reference 'arr_ascii' in:" + ], + "start_col": 10, + "start_line": 20 + }, + "While auto generating local variable for 'arr_ascii'." + ], + "start_col": 10, + "start_line": 20 + } + }, + "186": { + "accessible_scopes": [ + "utils.string", + "utils.string.str" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 6, + "end_line": 24, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/utils/string.cairo" + }, + "start_col": 33, + "start_line": 22 + } + }, + "188": { + "accessible_scopes": [ + "utils.string", + "utils.string.str" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 54, + "end_line": 49, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/utils/string.cairo" + }, + "parent_location": [ + { + "end_col": 6, + "end_line": 24, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/utils/string.cairo" + }, + "parent_location": [ + { + "end_col": 26, + "end_line": 265, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/math.cairo" + }, + "parent_location": [ + { + "end_col": 22, + "end_line": 26, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/utils/string.cairo" + }, + "start_col": 13, + "start_line": 26 + }, + "While trying to retrieve the implicit argument 'range_check_ptr' in:" + ], + "start_col": 11, + "start_line": 265 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 33, + "start_line": 22 + }, + "While trying to update the implicit return value 'range_check_ptr' in:" + ], + "start_col": 39, + "start_line": 49 + } + }, + "189": { + "accessible_scopes": [ + "utils.string", + "utils.string.str" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 36, + "end_line": 13, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/utils/string.cairo" + }, + "parent_location": [ + { + "end_col": 21, + "end_line": 26, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/utils/string.cairo" + }, + "start_col": 18, + "start_line": 26 + }, + "While expanding the reference 'num' in:" + ], + "start_col": 27, + "start_line": 13 + } + }, + "190": { + "accessible_scopes": [ + "utils.string", + "utils.string.str" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 22, + "end_line": 26, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/utils/string.cairo" + }, + "start_col": 13, + "start_line": 26 + } + }, + "192": { + "accessible_scopes": [ + "utils.string", + "utils.string.str" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 16, + "end_line": 28, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/utils/string.cairo" + }, + "start_col": 9, + "start_line": 28 + } + }, + "194": { + "accessible_scopes": [ + "utils.string", + "utils.string.str" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 7, + "end_line": 28, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/utils/string.cairo" + }, + "start_col": 5, + "start_line": 28 + } + }, + "196": { + "accessible_scopes": [ + "utils.string", + "utils.string.str" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 19, + "end_line": 29, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/utils/string.cairo" + }, + "start_col": 9, + "start_line": 29 + } + }, + "198": { + "accessible_scopes": [ + "utils.string", + "utils.string.str" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 7, + "end_line": 28, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/utils/string.cairo" + }, + "start_col": 5, + "start_line": 28 + } + }, + "200": { + "accessible_scopes": [ + "utils.string", + "utils.string.str" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 18, + "end_line": 31, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/utils/string.cairo" + }, + "start_col": 9, + "start_line": 31 + } + }, + "202": { + "accessible_scopes": [ + "utils.string", + "utils.string.str" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 26, + "end_line": 265, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/math.cairo" + }, + "parent_location": [ + { + "end_col": 22, + "end_line": 26, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/utils/string.cairo" + }, + "parent_location": [ + { + "end_col": 61, + "end_line": 71, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/utils/string.cairo" + }, + "parent_location": [ + { + "end_col": 6, + "end_line": 36, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/utils/string.cairo" + }, + "start_col": 19, + "start_line": 34 + }, + "While trying to retrieve the implicit argument 'range_check_ptr' in:" + ], + "start_col": 46, + "start_line": 71 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 13, + "start_line": 26 + }, + "While trying to update the implicit return value 'range_check_ptr' in:" + ], + "start_col": 11, + "start_line": 265 + } + }, + "203": { + "accessible_scopes": [ + "utils.string", + "utils.string.str" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 15, + "end_line": 27, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/utils/string.cairo" + }, + "parent_location": [ + { + "end_col": 19, + "end_line": 35, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/utils/string.cairo" + }, + "start_col": 15, + "start_line": 35 + }, + "While expanding the reference 'init' in:" + ], + "start_col": 11, + "start_line": 27 + } + }, + "204": { + "accessible_scopes": [ + "utils.string", + "utils.string.str" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 29, + "end_line": 22, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/utils/string.cairo" + }, + "parent_location": [ + { + "end_col": 38, + "end_line": 35, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/utils/string.cairo" + }, + "start_col": 25, + "start_line": 35 + }, + "While expanding the reference 'arr_ascii_len' in:" + ], + "start_col": 10, + "start_line": 22 + } + }, + "205": { + "accessible_scopes": [ + "utils.string", + "utils.string.str" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 19, + "end_line": 20, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/utils/string.cairo" + }, + "parent_location": [ + { + "end_col": 19, + "end_line": 20, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/utils/string.cairo" + }, + "parent_location": [ + { + "end_col": 53, + "end_line": 35, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/utils/string.cairo" + }, + "start_col": 44, + "start_line": 35 + }, + "While expanding the reference 'arr_ascii' in:" + ], + "start_col": 10, + "start_line": 20 + }, + "While auto generating local variable for 'arr_ascii'." + ], + "start_col": 10, + "start_line": 20 + } + }, + "206": { + "accessible_scopes": [ + "utils.string", + "utils.string.str" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 60, + "end_line": 35, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/utils/string.cairo" + }, + "start_col": 59, + "start_line": 35 + } + }, + "208": { + "accessible_scopes": [ + "utils.string", + "utils.string.str" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 6, + "end_line": 36, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/utils/string.cairo" + }, + "start_col": 19, + "start_line": 34 + } + }, + "210": { + "accessible_scopes": [ + "utils.string", + "utils.string.str" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 21, + "end_line": 38, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/utils/string.cairo" + }, + "start_col": 5, + "start_line": 38 + } + }, + "211": { + "accessible_scopes": [ + "utils.string", + "utils.string._ascii_from_digit" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 24, + "end_line": 46, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/utils/string.cairo" + }, + "start_col": 13, + "start_line": 46 + } + }, + "213": { + "accessible_scopes": [ + "utils.string", + "utils.string._ascii_from_digit" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 27, + "end_line": 46, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/utils/string.cairo" + }, + "start_col": 5, + "start_line": 46 + } + }, + "214": { + "accessible_scopes": [ + "utils.string", + "utils.string._recurse_ascii_array_from_number" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 18, + "end_line": 52, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/utils/string.cairo" + }, + "start_col": 5, + "start_line": 52 + } + }, + "216": { + "accessible_scopes": [ + "utils.string", + "utils.string._recurse_ascii_array_from_number" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 7, + "end_line": 54, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/utils/string.cairo" + }, + "start_col": 5, + "start_line": 54 + } + }, + "218": { + "accessible_scopes": [ + "utils.string", + "utils.string._recurse_ascii_array_from_number" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 54, + "end_line": 49, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/utils/string.cairo" + }, + "parent_location": [ + { + "end_col": 54, + "end_line": 49, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/utils/string.cairo" + }, + "parent_location": [ + { + "end_col": 33, + "end_line": 55, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/utils/string.cairo" + }, + "start_col": 9, + "start_line": 55 + }, + "While trying to retrieve the implicit argument 'range_check_ptr' in:" + ], + "start_col": 39, + "start_line": 49 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 39, + "start_line": 49 + } + }, + "219": { + "accessible_scopes": [ + "utils.string", + "utils.string._recurse_ascii_array_from_number" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 38, + "end_line": 50, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/utils/string.cairo" + }, + "parent_location": [ + { + "end_col": 30, + "end_line": 55, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/utils/string.cairo" + }, + "start_col": 17, + "start_line": 55 + }, + "While expanding the reference 'arr_ascii_len' in:" + ], + "start_col": 19, + "start_line": 50 + } + }, + "220": { + "accessible_scopes": [ + "utils.string", + "utils.string._recurse_ascii_array_from_number" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 33, + "end_line": 55, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/utils/string.cairo" + }, + "start_col": 9, + "start_line": 55 + } + }, + "221": { + "accessible_scopes": [ + "utils.string", + "utils.string._recurse_ascii_array_from_number" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 54, + "end_line": 49, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/utils/string.cairo" + }, + "parent_location": [ + { + "end_col": 38, + "end_line": 297, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/math.cairo" + }, + "parent_location": [ + { + "end_col": 59, + "end_line": 58, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/utils/string.cairo" + }, + "start_col": 31, + "start_line": 58 + }, + "While trying to retrieve the implicit argument 'range_check_ptr' in:" + ], + "start_col": 23, + "start_line": 297 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 39, + "start_line": 49 + } + }, + "222": { + "accessible_scopes": [ + "utils.string", + "utils.string._recurse_ascii_array_from_number" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 17, + "end_line": 50, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/utils/string.cairo" + }, + "parent_location": [ + { + "end_col": 54, + "end_line": 58, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/utils/string.cairo" + }, + "start_col": 48, + "start_line": 58 + }, + "While expanding the reference 'remain' in:" + ], + "start_col": 5, + "start_line": 50 + } + }, + "223": { + "accessible_scopes": [ + "utils.string", + "utils.string._recurse_ascii_array_from_number" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 58, + "end_line": 58, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/utils/string.cairo" + }, + "start_col": 56, + "start_line": 58 + } + }, + "225": { + "accessible_scopes": [ + "utils.string", + "utils.string._recurse_ascii_array_from_number" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 59, + "end_line": 58, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/utils/string.cairo" + }, + "start_col": 31, + "start_line": 58 + } + }, + "227": { + "accessible_scopes": [ + "utils.string", + "utils.string._recurse_ascii_array_from_number" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 43, + "end_line": 59, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/utils/string.cairo" + }, + "start_col": 19, + "start_line": 59 + } + }, + "229": { + "accessible_scopes": [ + "utils.string", + "utils.string._recurse_ascii_array_from_number" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 36, + "end_line": 60, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/utils/string.cairo" + }, + "start_col": 12, + "start_line": 60 + } + }, + "230": { + "accessible_scopes": [ + "utils.string", + "utils.string._recurse_ascii_array_from_number" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 45, + "end_line": 60, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/utils/string.cairo" + }, + "start_col": 5, + "start_line": 60 + } + }, + "231": { + "accessible_scopes": [ + "utils.string", + "utils.string._recurse_ascii_array_from_number" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 38, + "end_line": 297, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/math.cairo" + }, + "parent_location": [ + { + "end_col": 59, + "end_line": 58, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/utils/string.cairo" + }, + "parent_location": [ + { + "end_col": 54, + "end_line": 49, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/utils/string.cairo" + }, + "parent_location": [ + { + "end_col": 6, + "end_line": 67, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/utils/string.cairo" + }, + "start_col": 33, + "start_line": 65 + }, + "While trying to retrieve the implicit argument 'range_check_ptr' in:" + ], + "start_col": 39, + "start_line": 49 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 31, + "start_line": 58 + }, + "While trying to update the implicit return value 'range_check_ptr' in:" + ], + "start_col": 23, + "start_line": 297 + } + }, + "232": { + "accessible_scopes": [ + "utils.string", + "utils.string._recurse_ascii_array_from_number" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 20, + "end_line": 58, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/utils/string.cairo" + }, + "parent_location": [ + { + "end_col": 26, + "end_line": 66, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/utils/string.cairo" + }, + "start_col": 16, + "start_line": 66 + }, + "While expanding the reference 'remain_nxt' in:" + ], + "start_col": 10, + "start_line": 58 + } + }, + "233": { + "accessible_scopes": [ + "utils.string", + "utils.string._recurse_ascii_array_from_number" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 59, + "end_line": 66, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/utils/string.cairo" + }, + "start_col": 42, + "start_line": 66 + } + }, + "235": { + "accessible_scopes": [ + "utils.string", + "utils.string._recurse_ascii_array_from_number" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 56, + "end_line": 50, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/utils/string.cairo" + }, + "parent_location": [ + { + "end_col": 80, + "end_line": 66, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/utils/string.cairo" + }, + "start_col": 71, + "start_line": 66 + }, + "While expanding the reference 'arr_ascii' in:" + ], + "start_col": 40, + "start_line": 50 + } + }, + "236": { + "accessible_scopes": [ + "utils.string", + "utils.string._recurse_ascii_array_from_number" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 6, + "end_line": 67, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/utils/string.cairo" + }, + "start_col": 33, + "start_line": 65 + } + }, + "238": { + "accessible_scopes": [ + "utils.string", + "utils.string._recurse_ascii_array_from_number" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 35, + "end_line": 68, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/utils/string.cairo" + }, + "start_col": 5, + "start_line": 68 + } + }, + "239": { + "accessible_scopes": [ + "utils.string", + "utils.string._recurse_ascii_from_ascii_array_inverse" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 19, + "end_line": 74, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/utils/string.cairo" + }, + "start_col": 9, + "start_line": 74 + } + }, + "240": { + "accessible_scopes": [ + "utils.string", + "utils.string._recurse_ascii_from_ascii_array_inverse" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 7, + "end_line": 74, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/utils/string.cairo" + }, + "start_col": 5, + "start_line": 74 + } + }, + "242": { + "accessible_scopes": [ + "utils.string", + "utils.string._recurse_ascii_from_ascii_array_inverse" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 61, + "end_line": 71, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/utils/string.cairo" + }, + "parent_location": [ + { + "end_col": 61, + "end_line": 71, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/utils/string.cairo" + }, + "parent_location": [ + { + "end_col": 25, + "end_line": 75, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/utils/string.cairo" + }, + "start_col": 9, + "start_line": 75 + }, + "While trying to retrieve the implicit argument 'range_check_ptr' in:" + ], + "start_col": 46, + "start_line": 71 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 46, + "start_line": 71 + } + }, + "243": { + "accessible_scopes": [ + "utils.string", + "utils.string._recurse_ascii_from_ascii_array_inverse" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 16, + "end_line": 72, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/utils/string.cairo" + }, + "parent_location": [ + { + "end_col": 22, + "end_line": 75, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/utils/string.cairo" + }, + "start_col": 17, + "start_line": 75 + }, + "While expanding the reference 'ascii' in:" + ], + "start_col": 5, + "start_line": 72 + } + }, + "244": { + "accessible_scopes": [ + "utils.string", + "utils.string._recurse_ascii_from_ascii_array_inverse" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 25, + "end_line": 75, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/utils/string.cairo" + }, + "start_col": 9, + "start_line": 75 + } + }, + "245": { + "accessible_scopes": [ + "utils.string", + "utils.string._recurse_ascii_from_ascii_array_inverse" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 32, + "end_line": 78, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/utils/string.cairo" + }, + "parent_location": [ + { + "end_col": 24, + "end_line": 84, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/utils/string.cairo" + }, + "start_col": 15, + "start_line": 84 + }, + "While expanding the reference 'ascii_nxt' in:" + ], + "start_col": 21, + "start_line": 78 + } + }, + "247": { + "accessible_scopes": [ + "utils.string", + "utils.string._recurse_ascii_from_ascii_array_inverse" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 52, + "end_line": 78, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/utils/string.cairo" + }, + "parent_location": [ + { + "end_col": 24, + "end_line": 84, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/utils/string.cairo" + }, + "start_col": 15, + "start_line": 84 + }, + "While expanding the reference 'ascii_nxt' in:" + ], + "start_col": 39, + "start_line": 78 + } + }, + "249": { + "accessible_scopes": [ + "utils.string", + "utils.string._recurse_ascii_from_ascii_array_inverse" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 52, + "end_line": 78, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/utils/string.cairo" + }, + "parent_location": [ + { + "end_col": 24, + "end_line": 84, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/utils/string.cairo" + }, + "start_col": 15, + "start_line": 84 + }, + "While expanding the reference 'ascii_nxt' in:" + ], + "start_col": 39, + "start_line": 78 + } + }, + "250": { + "accessible_scopes": [ + "utils.string", + "utils.string._recurse_ascii_from_ascii_array_inverse" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 53, + "end_line": 78, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/utils/string.cairo" + }, + "parent_location": [ + { + "end_col": 24, + "end_line": 84, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/utils/string.cairo" + }, + "start_col": 15, + "start_line": 84 + }, + "While expanding the reference 'ascii_nxt' in:" + ], + "start_col": 35, + "start_line": 78 + } + }, + "251": { + "accessible_scopes": [ + "utils.string", + "utils.string._recurse_ascii_from_ascii_array_inverse" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 53, + "end_line": 78, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/utils/string.cairo" + }, + "parent_location": [ + { + "end_col": 24, + "end_line": 84, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/utils/string.cairo" + }, + "start_col": 15, + "start_line": 84 + }, + "While expanding the reference 'ascii_nxt' in:" + ], + "start_col": 35, + "start_line": 78 + } + }, + "252": { + "accessible_scopes": [ + "utils.string", + "utils.string._recurse_ascii_from_ascii_array_inverse" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 61, + "end_line": 71, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/utils/string.cairo" + }, + "parent_location": [ + { + "end_col": 61, + "end_line": 71, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/utils/string.cairo" + }, + "parent_location": [ + { + "end_col": 6, + "end_line": 85, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/utils/string.cairo" + }, + "start_col": 25, + "start_line": 83 + }, + "While trying to retrieve the implicit argument 'range_check_ptr' in:" + ], + "start_col": 46, + "start_line": 71 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 46, + "start_line": 71 + } + }, + "253": { + "accessible_scopes": [ + "utils.string", + "utils.string._recurse_ascii_from_ascii_array_inverse" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 53, + "end_line": 78, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/utils/string.cairo" + }, + "parent_location": [ + { + "end_col": 24, + "end_line": 84, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/utils/string.cairo" + }, + "start_col": 15, + "start_line": 84 + }, + "While expanding the reference 'ascii_nxt' in:" + ], + "start_col": 21, + "start_line": 78 + } + }, + "254": { + "accessible_scopes": [ + "utils.string", + "utils.string._recurse_ascii_from_ascii_array_inverse" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 27, + "end_line": 72, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/utils/string.cairo" + }, + "parent_location": [ + { + "end_col": 33, + "end_line": 84, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/utils/string.cairo" + }, + "start_col": 30, + "start_line": 84 + }, + "While expanding the reference 'len' in:" + ], + "start_col": 18, + "start_line": 72 + } + }, + "255": { + "accessible_scopes": [ + "utils.string", + "utils.string._recurse_ascii_from_ascii_array_inverse" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 39, + "end_line": 72, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/utils/string.cairo" + }, + "parent_location": [ + { + "end_col": 42, + "end_line": 84, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/utils/string.cairo" + }, + "start_col": 39, + "start_line": 84 + }, + "While expanding the reference 'arr' in:" + ], + "start_col": 29, + "start_line": 72 + } + }, + "256": { + "accessible_scopes": [ + "utils.string", + "utils.string._recurse_ascii_from_ascii_array_inverse" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 55, + "end_line": 84, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/utils/string.cairo" + }, + "start_col": 48, + "start_line": 84 + } + }, + "258": { + "accessible_scopes": [ + "utils.string", + "utils.string._recurse_ascii_from_ascii_array_inverse" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 6, + "end_line": 85, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/utils/string.cairo" + }, + "start_col": 25, + "start_line": 83 + } + }, + "260": { + "accessible_scopes": [ + "utils.string", + "utils.string._recurse_ascii_from_ascii_array_inverse" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 27, + "end_line": 86, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/utils/string.cairo" + }, + "start_col": 5, + "start_line": 86 + } + }, + "261": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.number_to_index" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 18, + "end_line": 16, + "input_file": { + "filename": "src/renderers/BasicCellRenderer.cairo" + }, + "start_col": 5, + "start_line": 16 + } + }, + "263": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.number_to_index" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 85, + "end_line": 13, + "input_file": { + "filename": "src/renderers/BasicCellRenderer.cairo" + }, + "parent_location": [ + { + "end_col": 38, + "end_line": 297, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/math.cairo" + }, + "parent_location": [ + { + "end_col": 68, + "end_line": 17, + "input_file": { + "filename": "src/renderers/BasicCellRenderer.cairo" + }, + "start_col": 34, + "start_line": 17 + }, + "While trying to retrieve the implicit argument 'range_check_ptr' in:" + ], + "start_col": 23, + "start_line": 297 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 70, + "start_line": 13 + } + }, + "264": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.number_to_index" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 19, + "end_line": 14, + "input_file": { + "filename": "src/renderers/BasicCellRenderer.cairo" + }, + "parent_location": [ + { + "end_col": 59, + "end_line": 17, + "input_file": { + "filename": "src/renderers/BasicCellRenderer.cairo" + }, + "start_col": 51, + "start_line": 17 + }, + "While expanding the reference 'token_id' in:" + ], + "start_col": 5, + "start_line": 14 + } + }, + "265": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.number_to_index" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 67, + "end_line": 17, + "input_file": { + "filename": "src/renderers/BasicCellRenderer.cairo" + }, + "start_col": 61, + "start_line": 17 + } + }, + "267": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.number_to_index" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 68, + "end_line": 17, + "input_file": { + "filename": "src/renderers/BasicCellRenderer.cairo" + }, + "start_col": 34, + "start_line": 17 + } + }, + "269": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.number_to_index" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 19, + "end_line": 17, + "input_file": { + "filename": "src/renderers/BasicCellRenderer.cairo" + }, + "start_col": 10, + "start_line": 17 + } + }, + "270": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.number_to_index" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 30, + "end_line": 17, + "input_file": { + "filename": "src/renderers/BasicCellRenderer.cairo" + }, + "start_col": 21, + "start_line": 17 + } + }, + "271": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.number_to_index" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 30, + "end_line": 18, + "input_file": { + "filename": "src/renderers/BasicCellRenderer.cairo" + }, + "start_col": 5, + "start_line": 18 + } + }, + "273": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.number_to_index" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 38, + "end_line": 297, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/math.cairo" + }, + "parent_location": [ + { + "end_col": 68, + "end_line": 17, + "input_file": { + "filename": "src/renderers/BasicCellRenderer.cairo" + }, + "parent_location": [ + { + "end_col": 25, + "end_line": 13, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/utils/string.cairo" + }, + "parent_location": [ + { + "end_col": 32, + "end_line": 19, + "input_file": { + "filename": "src/renderers/BasicCellRenderer.cairo" + }, + "start_col": 20, + "start_line": 19 + }, + "While trying to retrieve the implicit argument 'range_check_ptr' in:" + ], + "start_col": 10, + "start_line": 13 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 34, + "start_line": 17 + }, + "While trying to update the implicit return value 'range_check_ptr' in:" + ], + "start_col": 23, + "start_line": 297 + } + }, + "274": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.number_to_index" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 31, + "end_line": 19, + "input_file": { + "filename": "src/renderers/BasicCellRenderer.cairo" + }, + "start_col": 24, + "start_line": 19 + } + }, + "276": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.number_to_index" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 32, + "end_line": 19, + "input_file": { + "filename": "src/renderers/BasicCellRenderer.cairo" + }, + "start_col": 20, + "start_line": 19 + } + }, + "278": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.number_to_index" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 46, + "end_line": 21, + "input_file": { + "filename": "src/renderers/BasicCellRenderer.cairo" + }, + "start_col": 43, + "start_line": 21 + } + }, + "280": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.number_to_index" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 47, + "end_line": 21, + "input_file": { + "filename": "src/renderers/BasicCellRenderer.cairo" + }, + "start_col": 29, + "start_line": 21 + } + }, + "282": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.number_to_index" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 31, + "end_line": 22, + "input_file": { + "filename": "src/renderers/BasicCellRenderer.cairo" + }, + "start_col": 9, + "start_line": 22 + } + }, + "284": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.number_to_index" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 7, + "end_line": 22, + "input_file": { + "filename": "src/renderers/BasicCellRenderer.cairo" + }, + "start_col": 5, + "start_line": 22 + } + }, + "286": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.number_to_index" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 20, + "end_line": 23, + "input_file": { + "filename": "src/renderers/BasicCellRenderer.cairo" + }, + "start_col": 9, + "start_line": 23 + } + }, + "288": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.number_to_index" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 7, + "end_line": 22, + "input_file": { + "filename": "src/renderers/BasicCellRenderer.cairo" + }, + "start_col": 5, + "start_line": 22 + } + }, + "290": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.number_to_index" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 26, + "end_line": 25, + "input_file": { + "filename": "src/renderers/BasicCellRenderer.cairo" + }, + "start_col": 9, + "start_line": 25 + } + }, + "292": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.number_to_index" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 29, + "end_line": 27, + "input_file": { + "filename": "src/renderers/BasicCellRenderer.cairo" + }, + "parent_location": [ + { + "end_col": 16, + "end_line": 28, + "input_file": { + "filename": "src/renderers/BasicCellRenderer.cairo" + }, + "start_col": 13, + "start_line": 28 + }, + "While expanding the reference 'res' in:" + ], + "start_col": 15, + "start_line": 27 + } + }, + "293": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.number_to_index" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 40, + "end_line": 13, + "input_file": { + "filename": "src/renderers/BasicCellRenderer.cairo" + }, + "parent_location": [ + { + "end_col": 40, + "end_line": 13, + "input_file": { + "filename": "src/renderers/BasicCellRenderer.cairo" + }, + "parent_location": [ + { + "end_col": 19, + "end_line": 28, + "input_file": { + "filename": "src/renderers/BasicCellRenderer.cairo" + }, + "start_col": 5, + "start_line": 28 + }, + "While trying to retrieve the implicit argument 'syscall_ptr' in:" + ], + "start_col": 22, + "start_line": 13 + }, + "While expanding the reference 'syscall_ptr' in:" + ], + "start_col": 22, + "start_line": 13 + } + }, + "294": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.number_to_index" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 68, + "end_line": 13, + "input_file": { + "filename": "src/renderers/BasicCellRenderer.cairo" + }, + "parent_location": [ + { + "end_col": 68, + "end_line": 13, + "input_file": { + "filename": "src/renderers/BasicCellRenderer.cairo" + }, + "parent_location": [ + { + "end_col": 19, + "end_line": 28, + "input_file": { + "filename": "src/renderers/BasicCellRenderer.cairo" + }, + "start_col": 5, + "start_line": 28 + }, + "While trying to retrieve the implicit argument 'pedersen_ptr' in:" + ], + "start_col": 42, + "start_line": 13 + }, + "While expanding the reference 'pedersen_ptr' in:" + ], + "start_col": 42, + "start_line": 13 + } + }, + "295": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.number_to_index" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 27, + "end_line": 42, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/math_cmp.cairo" + }, + "parent_location": [ + { + "end_col": 47, + "end_line": 21, + "input_file": { + "filename": "src/renderers/BasicCellRenderer.cairo" + }, + "parent_location": [ + { + "end_col": 85, + "end_line": 13, + "input_file": { + "filename": "src/renderers/BasicCellRenderer.cairo" + }, + "parent_location": [ + { + "end_col": 19, + "end_line": 28, + "input_file": { + "filename": "src/renderers/BasicCellRenderer.cairo" + }, + "start_col": 5, + "start_line": 28 + }, + "While trying to retrieve the implicit argument 'range_check_ptr' in:" + ], + "start_col": 70, + "start_line": 13 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 29, + "start_line": 21 + }, + "While trying to update the implicit return value 'range_check_ptr' in:" + ], + "start_col": 12, + "start_line": 42 + } + }, + "296": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.number_to_index" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 38, + "end_line": 27, + "input_file": { + "filename": "src/renderers/BasicCellRenderer.cairo" + }, + "parent_location": [ + { + "end_col": 16, + "end_line": 28, + "input_file": { + "filename": "src/renderers/BasicCellRenderer.cairo" + }, + "start_col": 13, + "start_line": 28 + }, + "While expanding the reference 'res' in:" + ], + "start_col": 15, + "start_line": 27 + } + }, + "297": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.number_to_index" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 19, + "end_line": 28, + "input_file": { + "filename": "src/renderers/BasicCellRenderer.cairo" + }, + "start_col": 5, + "start_line": 28 + } + }, + "298": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.number_to_index_encode_return" + ], + "flow_tracking_data": null, + "hints": [ + { + "location": { + "end_col": 38, + "end_line": 3, + "input_file": { + "filename": "autogen/starknet/external/return/number_to_index/920954ca2ff48177b60bb27bdab79c0df097509ec204b43f323f1ddea7d2d07e.cairo" + }, + "parent_location": [ + { + "end_col": 21, + "end_line": 13, + "input_file": { + "filename": "src/renderers/BasicCellRenderer.cairo" + }, + "start_col": 6, + "start_line": 13 + }, + "While handling return value of" + ], + "start_col": 5, + "start_line": 3 + }, + "n_prefix_newlines": 0 + } + ], + "inst": { + "end_col": 18, + "end_line": 4, + "input_file": { + "filename": "autogen/starknet/external/return/number_to_index/920954ca2ff48177b60bb27bdab79c0df097509ec204b43f323f1ddea7d2d07e.cairo" + }, + "parent_location": [ + { + "end_col": 21, + "end_line": 13, + "input_file": { + "filename": "src/renderers/BasicCellRenderer.cairo" + }, + "start_col": 6, + "start_line": 13 + }, + "While handling return value of" + ], + "start_col": 5, + "start_line": 4 + } + }, + "300": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.number_to_index_encode_return" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 45, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/arg_processor/293368f3a0e12cfcf22314a31e13b9801e95a5b8b2b71822a2fbbdf5a01ea795.cairo" + }, + "parent_location": [ + { + "end_col": 16, + "end_line": 15, + "input_file": { + "filename": "src/renderers/BasicCellRenderer.cairo" + }, + "start_col": 7, + "start_line": 15 + }, + "While handling return value 'res'" + ], + "start_col": 1, + "start_line": 1 + } + }, + "301": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.number_to_index_encode_return" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 48, + "end_line": 2, + "input_file": { + "filename": "autogen/starknet/arg_processor/293368f3a0e12cfcf22314a31e13b9801e95a5b8b2b71822a2fbbdf5a01ea795.cairo" + }, + "parent_location": [ + { + "end_col": 16, + "end_line": 15, + "input_file": { + "filename": "src/renderers/BasicCellRenderer.cairo" + }, + "parent_location": [ + { + "end_col": 36, + "end_line": 11, + "input_file": { + "filename": "autogen/starknet/external/return/number_to_index/920954ca2ff48177b60bb27bdab79c0df097509ec204b43f323f1ddea7d2d07e.cairo" + }, + "parent_location": [ + { + "end_col": 21, + "end_line": 13, + "input_file": { + "filename": "src/renderers/BasicCellRenderer.cairo" + }, + "start_col": 6, + "start_line": 13 + }, + "While handling return value of" + ], + "start_col": 18, + "start_line": 11 + }, + "While expanding the reference '__return_value_ptr' in:" + ], + "start_col": 7, + "start_line": 15 + }, + "While handling return value 'res'" + ], + "start_col": 26, + "start_line": 2 + } + }, + "303": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.number_to_index_encode_return" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 75, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/return/number_to_index/920954ca2ff48177b60bb27bdab79c0df097509ec204b43f323f1ddea7d2d07e.cairo" + }, + "parent_location": [ + { + "end_col": 21, + "end_line": 13, + "input_file": { + "filename": "src/renderers/BasicCellRenderer.cairo" + }, + "parent_location": [ + { + "end_col": 40, + "end_line": 10, + "input_file": { + "filename": "autogen/starknet/external/return/number_to_index/920954ca2ff48177b60bb27bdab79c0df097509ec204b43f323f1ddea7d2d07e.cairo" + }, + "parent_location": [ + { + "end_col": 21, + "end_line": 13, + "input_file": { + "filename": "src/renderers/BasicCellRenderer.cairo" + }, + "start_col": 6, + "start_line": 13 + }, + "While handling return value of" + ], + "start_col": 25, + "start_line": 10 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 6, + "start_line": 13 + }, + "While handling return value of" + ], + "start_col": 60, + "start_line": 1 + } + }, + "304": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.number_to_index_encode_return" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 63, + "end_line": 11, + "input_file": { + "filename": "autogen/starknet/external/return/number_to_index/920954ca2ff48177b60bb27bdab79c0df097509ec204b43f323f1ddea7d2d07e.cairo" + }, + "parent_location": [ + { + "end_col": 21, + "end_line": 13, + "input_file": { + "filename": "src/renderers/BasicCellRenderer.cairo" + }, + "start_col": 6, + "start_line": 13 + }, + "While handling return value of" + ], + "start_col": 18, + "start_line": 11 + } + }, + "305": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.number_to_index_encode_return" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 35, + "end_line": 5, + "input_file": { + "filename": "autogen/starknet/external/return/number_to_index/920954ca2ff48177b60bb27bdab79c0df097509ec204b43f323f1ddea7d2d07e.cairo" + }, + "parent_location": [ + { + "end_col": 21, + "end_line": 13, + "input_file": { + "filename": "src/renderers/BasicCellRenderer.cairo" + }, + "parent_location": [ + { + "end_col": 38, + "end_line": 12, + "input_file": { + "filename": "autogen/starknet/external/return/number_to_index/920954ca2ff48177b60bb27bdab79c0df097509ec204b43f323f1ddea7d2d07e.cairo" + }, + "parent_location": [ + { + "end_col": 21, + "end_line": 13, + "input_file": { + "filename": "src/renderers/BasicCellRenderer.cairo" + }, + "start_col": 6, + "start_line": 13 + }, + "While handling return value of" + ], + "start_col": 14, + "start_line": 12 + }, + "While expanding the reference '__return_value_ptr_start' in:" + ], + "start_col": 6, + "start_line": 13 + }, + "While handling return value of" + ], + "start_col": 11, + "start_line": 5 + } + }, + "306": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.number_to_index_encode_return" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 40, + "end_line": 12, + "input_file": { + "filename": "autogen/starknet/external/return/number_to_index/920954ca2ff48177b60bb27bdab79c0df097509ec204b43f323f1ddea7d2d07e.cairo" + }, + "parent_location": [ + { + "end_col": 21, + "end_line": 13, + "input_file": { + "filename": "src/renderers/BasicCellRenderer.cairo" + }, + "start_col": 6, + "start_line": 13 + }, + "While handling return value of" + ], + "start_col": 5, + "start_line": 9 + } + }, + "307": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.number_to_index" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 40, + "end_line": 2, + "input_file": { + "filename": "autogen/starknet/arg_processor/92bae94c430cca894eac466fa5be50d176f1f62e79244db218577fbac5e84220.cairo" + }, + "parent_location": [ + { + "end_col": 19, + "end_line": 14, + "input_file": { + "filename": "src/renderers/BasicCellRenderer.cairo" + }, + "parent_location": [ + { + "end_col": 45, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/arg_processor/c31620b02d4d706f0542c989b2aadc01b0981d1f6a5933a8fe4937ace3d70d92.cairo" + }, + "parent_location": [ + { + "end_col": 21, + "end_line": 13, + "input_file": { + "filename": "src/renderers/BasicCellRenderer.cairo" + }, + "parent_location": [ + { + "end_col": 57, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/arg_processor/01cba52f8515996bb9d7070bde81ff39281d096d7024a558efcba6e1fd2402cf.cairo" + }, + "parent_location": [ + { + "end_col": 21, + "end_line": 13, + "input_file": { + "filename": "src/renderers/BasicCellRenderer.cairo" + }, + "start_col": 6, + "start_line": 13 + }, + "While handling calldata of" + ], + "start_col": 35, + "start_line": 1 + }, + "While expanding the reference '__calldata_actual_size' in:" + ], + "start_col": 6, + "start_line": 13 + }, + "While handling calldata of" + ], + "start_col": 31, + "start_line": 1 + }, + "While expanding the reference '__calldata_ptr' in:" + ], + "start_col": 5, + "start_line": 14 + }, + "While handling calldata argument 'token_id'" + ], + "start_col": 22, + "start_line": 2 + } + }, + "309": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.number_to_index" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 58, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/arg_processor/01cba52f8515996bb9d7070bde81ff39281d096d7024a558efcba6e1fd2402cf.cairo" + }, + "parent_location": [ + { + "end_col": 21, + "end_line": 13, + "input_file": { + "filename": "src/renderers/BasicCellRenderer.cairo" + }, + "start_col": 6, + "start_line": 13 + }, + "While handling calldata of" + ], + "start_col": 1, + "start_line": 1 + } + }, + "310": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.number_to_index" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 64, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/number_to_index/b2c52ca2d2a8fc8791a983086d8716c5eacd0c3d62934914d2286f84b98ff4cb.cairo" + }, + "parent_location": [ + { + "end_col": 40, + "end_line": 13, + "input_file": { + "filename": "src/renderers/BasicCellRenderer.cairo" + }, + "parent_location": [ + { + "end_col": 55, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/number_to_index/a68682edf51054349d55d12f512f3ca07b3a036cd11c7ff8426fbb528937f807.cairo" + }, + "parent_location": [ + { + "end_col": 21, + "end_line": 13, + "input_file": { + "filename": "src/renderers/BasicCellRenderer.cairo" + }, + "start_col": 6, + "start_line": 13 + }, + "While constructing the external wrapper for:" + ], + "start_col": 44, + "start_line": 1 + }, + "While expanding the reference 'syscall_ptr' in:" + ], + "start_col": 22, + "start_line": 13 + }, + "While constructing the external wrapper for:" + ], + "start_col": 19, + "start_line": 1 + } + }, + "311": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.number_to_index" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 110, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/number_to_index/9684a85e93c782014ca14293edea4eb2502039a5a7b6538ecd39c56faaf12529.cairo" + }, + "parent_location": [ + { + "end_col": 68, + "end_line": 13, + "input_file": { + "filename": "src/renderers/BasicCellRenderer.cairo" + }, + "parent_location": [ + { + "end_col": 82, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/number_to_index/a68682edf51054349d55d12f512f3ca07b3a036cd11c7ff8426fbb528937f807.cairo" + }, + "parent_location": [ + { + "end_col": 21, + "end_line": 13, + "input_file": { + "filename": "src/renderers/BasicCellRenderer.cairo" + }, + "start_col": 6, + "start_line": 13 + }, + "While constructing the external wrapper for:" + ], + "start_col": 70, + "start_line": 1 + }, + "While expanding the reference 'pedersen_ptr' in:" + ], + "start_col": 42, + "start_line": 13 + }, + "While constructing the external wrapper for:" + ], + "start_col": 20, + "start_line": 1 + } + }, + "312": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.number_to_index" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 67, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/number_to_index/741ea357d6336b0bed7bf0472425acd0311d543883b803388880e60a232040c7.cairo" + }, + "parent_location": [ + { + "end_col": 85, + "end_line": 13, + "input_file": { + "filename": "src/renderers/BasicCellRenderer.cairo" + }, + "parent_location": [ + { + "end_col": 115, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/number_to_index/a68682edf51054349d55d12f512f3ca07b3a036cd11c7ff8426fbb528937f807.cairo" + }, + "parent_location": [ + { + "end_col": 21, + "end_line": 13, + "input_file": { + "filename": "src/renderers/BasicCellRenderer.cairo" + }, + "start_col": 6, + "start_line": 13 + }, + "While constructing the external wrapper for:" + ], + "start_col": 100, + "start_line": 1 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 70, + "start_line": 13 + }, + "While constructing the external wrapper for:" + ], + "start_col": 23, + "start_line": 1 + } + }, + "313": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.number_to_index" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 47, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/arg_processor/92bae94c430cca894eac466fa5be50d176f1f62e79244db218577fbac5e84220.cairo" + }, + "parent_location": [ + { + "end_col": 19, + "end_line": 14, + "input_file": { + "filename": "src/renderers/BasicCellRenderer.cairo" + }, + "parent_location": [ + { + "end_col": 149, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/number_to_index/a68682edf51054349d55d12f512f3ca07b3a036cd11c7ff8426fbb528937f807.cairo" + }, + "parent_location": [ + { + "end_col": 21, + "end_line": 13, + "input_file": { + "filename": "src/renderers/BasicCellRenderer.cairo" + }, + "start_col": 6, + "start_line": 13 + }, + "While constructing the external wrapper for:" + ], + "start_col": 126, + "start_line": 1 + }, + "While expanding the reference '__calldata_arg_token_id' in:" + ], + "start_col": 5, + "start_line": 14 + }, + "While handling calldata argument 'token_id'" + ], + "start_col": 31, + "start_line": 1 + } + }, + "314": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.number_to_index" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 21, + "end_line": 13, + "input_file": { + "filename": "src/renderers/BasicCellRenderer.cairo" + }, + "start_col": 6, + "start_line": 13 + } + }, + "316": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.number_to_index" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 115, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/number_to_index/a68682edf51054349d55d12f512f3ca07b3a036cd11c7ff8426fbb528937f807.cairo" + }, + "parent_location": [ + { + "end_col": 21, + "end_line": 13, + "input_file": { + "filename": "src/renderers/BasicCellRenderer.cairo" + }, + "parent_location": [ + { + "end_col": 104, + "end_line": 2, + "input_file": { + "filename": "autogen/starknet/external/number_to_index/a68682edf51054349d55d12f512f3ca07b3a036cd11c7ff8426fbb528937f807.cairo" + }, + "parent_location": [ + { + "end_col": 21, + "end_line": 13, + "input_file": { + "filename": "src/renderers/BasicCellRenderer.cairo" + }, + "start_col": 6, + "start_line": 13 + }, + "While constructing the external wrapper for:" + ], + "start_col": 89, + "start_line": 2 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 6, + "start_line": 13 + }, + "While constructing the external wrapper for:" + ], + "start_col": 100, + "start_line": 1 + } + }, + "317": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.number_to_index" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 105, + "end_line": 2, + "input_file": { + "filename": "autogen/starknet/external/number_to_index/a68682edf51054349d55d12f512f3ca07b3a036cd11c7ff8426fbb528937f807.cairo" + }, + "parent_location": [ + { + "end_col": 21, + "end_line": 13, + "input_file": { + "filename": "src/renderers/BasicCellRenderer.cairo" + }, + "start_col": 6, + "start_line": 13 + }, + "While constructing the external wrapper for:" + ], + "start_col": 48, + "start_line": 2 + } + }, + "319": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.number_to_index" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 55, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/number_to_index/a68682edf51054349d55d12f512f3ca07b3a036cd11c7ff8426fbb528937f807.cairo" + }, + "parent_location": [ + { + "end_col": 21, + "end_line": 13, + "input_file": { + "filename": "src/renderers/BasicCellRenderer.cairo" + }, + "parent_location": [ + { + "end_col": 20, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/number_to_index/da17921a4e81c09e730800bbf23bfdbe5e9e6bfaedc59d80fbf62087fa43c27d.cairo" + }, + "parent_location": [ + { + "end_col": 21, + "end_line": 13, + "input_file": { + "filename": "src/renderers/BasicCellRenderer.cairo" + }, + "start_col": 6, + "start_line": 13 + }, + "While constructing the external wrapper for:" + ], + "start_col": 9, + "start_line": 1 + }, + "While expanding the reference 'syscall_ptr' in:" + ], + "start_col": 6, + "start_line": 13 + }, + "While constructing the external wrapper for:" + ], + "start_col": 44, + "start_line": 1 + } + }, + "320": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.number_to_index" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 82, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/number_to_index/a68682edf51054349d55d12f512f3ca07b3a036cd11c7ff8426fbb528937f807.cairo" + }, + "parent_location": [ + { + "end_col": 21, + "end_line": 13, + "input_file": { + "filename": "src/renderers/BasicCellRenderer.cairo" + }, + "parent_location": [ + { + "end_col": 33, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/number_to_index/da17921a4e81c09e730800bbf23bfdbe5e9e6bfaedc59d80fbf62087fa43c27d.cairo" + }, + "parent_location": [ + { + "end_col": 21, + "end_line": 13, + "input_file": { + "filename": "src/renderers/BasicCellRenderer.cairo" + }, + "start_col": 6, + "start_line": 13 + }, + "While constructing the external wrapper for:" + ], + "start_col": 21, + "start_line": 1 + }, + "While expanding the reference 'pedersen_ptr' in:" + ], + "start_col": 6, + "start_line": 13 + }, + "While constructing the external wrapper for:" + ], + "start_col": 70, + "start_line": 1 + } + }, + "321": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.number_to_index" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 21, + "end_line": 2, + "input_file": { + "filename": "autogen/starknet/external/number_to_index/a68682edf51054349d55d12f512f3ca07b3a036cd11c7ff8426fbb528937f807.cairo" + }, + "parent_location": [ + { + "end_col": 21, + "end_line": 13, + "input_file": { + "filename": "src/renderers/BasicCellRenderer.cairo" + }, + "parent_location": [ + { + "end_col": 49, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/number_to_index/da17921a4e81c09e730800bbf23bfdbe5e9e6bfaedc59d80fbf62087fa43c27d.cairo" + }, + "parent_location": [ + { + "end_col": 21, + "end_line": 13, + "input_file": { + "filename": "src/renderers/BasicCellRenderer.cairo" + }, + "start_col": 6, + "start_line": 13 + }, + "While constructing the external wrapper for:" + ], + "start_col": 34, + "start_line": 1 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 6, + "start_line": 13 + }, + "While constructing the external wrapper for:" + ], + "start_col": 6, + "start_line": 2 + } + }, + "322": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.number_to_index" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 35, + "end_line": 2, + "input_file": { + "filename": "autogen/starknet/external/number_to_index/a68682edf51054349d55d12f512f3ca07b3a036cd11c7ff8426fbb528937f807.cairo" + }, + "parent_location": [ + { + "end_col": 21, + "end_line": 13, + "input_file": { + "filename": "src/renderers/BasicCellRenderer.cairo" + }, + "parent_location": [ + { + "end_col": 62, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/number_to_index/da17921a4e81c09e730800bbf23bfdbe5e9e6bfaedc59d80fbf62087fa43c27d.cairo" + }, + "parent_location": [ + { + "end_col": 21, + "end_line": 13, + "input_file": { + "filename": "src/renderers/BasicCellRenderer.cairo" + }, + "start_col": 6, + "start_line": 13 + }, + "While constructing the external wrapper for:" + ], + "start_col": 50, + "start_line": 1 + }, + "While expanding the reference 'retdata_size' in:" + ], + "start_col": 6, + "start_line": 13 + }, + "While constructing the external wrapper for:" + ], + "start_col": 23, + "start_line": 2 + } + }, + "323": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.number_to_index" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 44, + "end_line": 2, + "input_file": { + "filename": "autogen/starknet/external/number_to_index/a68682edf51054349d55d12f512f3ca07b3a036cd11c7ff8426fbb528937f807.cairo" + }, + "parent_location": [ + { + "end_col": 21, + "end_line": 13, + "input_file": { + "filename": "src/renderers/BasicCellRenderer.cairo" + }, + "parent_location": [ + { + "end_col": 70, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/number_to_index/da17921a4e81c09e730800bbf23bfdbe5e9e6bfaedc59d80fbf62087fa43c27d.cairo" + }, + "parent_location": [ + { + "end_col": 21, + "end_line": 13, + "input_file": { + "filename": "src/renderers/BasicCellRenderer.cairo" + }, + "start_col": 6, + "start_line": 13 + }, + "While constructing the external wrapper for:" + ], + "start_col": 63, + "start_line": 1 + }, + "While expanding the reference 'retdata' in:" + ], + "start_col": 6, + "start_line": 13 + }, + "While constructing the external wrapper for:" + ], + "start_col": 37, + "start_line": 2 + } + }, + "324": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.number_to_index" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 72, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/number_to_index/da17921a4e81c09e730800bbf23bfdbe5e9e6bfaedc59d80fbf62087fa43c27d.cairo" + }, + "parent_location": [ + { + "end_col": 21, + "end_line": 13, + "input_file": { + "filename": "src/renderers/BasicCellRenderer.cairo" + }, + "start_col": 6, + "start_line": 13 + }, + "While constructing the external wrapper for:" + ], + "start_col": 1, + "start_line": 1 + } + }, + "325": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.token_uri" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 18, + "end_line": 35, + "input_file": { + "filename": "src/renderers/BasicCellRenderer.cairo" + }, + "start_col": 5, + "start_line": 35 + } + }, + "327": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.token_uri" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 62, + "end_line": 32, + "input_file": { + "filename": "src/renderers/BasicCellRenderer.cairo" + }, + "parent_location": [ + { + "end_col": 40, + "end_line": 13, + "input_file": { + "filename": "src/renderers/BasicCellRenderer.cairo" + }, + "parent_location": [ + { + "end_col": 61, + "end_line": 36, + "input_file": { + "filename": "src/renderers/BasicCellRenderer.cairo" + }, + "start_col": 36, + "start_line": 36 + }, + "While trying to retrieve the implicit argument 'syscall_ptr' in:" + ], + "start_col": 22, + "start_line": 13 + }, + "While expanding the reference 'syscall_ptr' in:" + ], + "start_col": 44, + "start_line": 32 + } + }, + "328": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.token_uri" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 42, + "end_line": 32, + "input_file": { + "filename": "src/renderers/BasicCellRenderer.cairo" + }, + "parent_location": [ + { + "end_col": 68, + "end_line": 13, + "input_file": { + "filename": "src/renderers/BasicCellRenderer.cairo" + }, + "parent_location": [ + { + "end_col": 61, + "end_line": 36, + "input_file": { + "filename": "src/renderers/BasicCellRenderer.cairo" + }, + "start_col": 36, + "start_line": 36 + }, + "While trying to retrieve the implicit argument 'pedersen_ptr' in:" + ], + "start_col": 42, + "start_line": 13 + }, + "While expanding the reference 'pedersen_ptr' in:" + ], + "start_col": 16, + "start_line": 32 + } + }, + "329": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.token_uri" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 79, + "end_line": 32, + "input_file": { + "filename": "src/renderers/BasicCellRenderer.cairo" + }, + "parent_location": [ + { + "end_col": 85, + "end_line": 13, + "input_file": { + "filename": "src/renderers/BasicCellRenderer.cairo" + }, + "parent_location": [ + { + "end_col": 61, + "end_line": 36, + "input_file": { + "filename": "src/renderers/BasicCellRenderer.cairo" + }, + "start_col": 36, + "start_line": 36 + }, + "While trying to retrieve the implicit argument 'range_check_ptr' in:" + ], + "start_col": 70, + "start_line": 13 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 64, + "start_line": 32 + } + }, + "330": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.token_uri" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 19, + "end_line": 33, + "input_file": { + "filename": "src/renderers/BasicCellRenderer.cairo" + }, + "parent_location": [ + { + "end_col": 60, + "end_line": 36, + "input_file": { + "filename": "src/renderers/BasicCellRenderer.cairo" + }, + "start_col": 52, + "start_line": 36 + }, + "While expanding the reference 'token_id' in:" + ], + "start_col": 5, + "start_line": 33 + } + }, + "331": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.token_uri" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 61, + "end_line": 36, + "input_file": { + "filename": "src/renderers/BasicCellRenderer.cairo" + }, + "start_col": 36, + "start_line": 36 + } + }, + "333": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.token_uri" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 32, + "end_line": 36, + "input_file": { + "filename": "src/renderers/BasicCellRenderer.cairo" + }, + "start_col": 10, + "start_line": 36 + } + }, + "334": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.token_uri" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 68, + "end_line": 13, + "input_file": { + "filename": "src/renderers/BasicCellRenderer.cairo" + }, + "parent_location": [ + { + "end_col": 61, + "end_line": 36, + "input_file": { + "filename": "src/renderers/BasicCellRenderer.cairo" + }, + "parent_location": [ + { + "end_col": 68, + "end_line": 13, + "input_file": { + "filename": "src/renderers/BasicCellRenderer.cairo" + }, + "parent_location": [ + { + "end_col": 61, + "end_line": 36, + "input_file": { + "filename": "src/renderers/BasicCellRenderer.cairo" + }, + "start_col": 36, + "start_line": 36 + }, + "While trying to update the implicit return value 'pedersen_ptr' in:" + ], + "start_col": 42, + "start_line": 13 + }, + "While auto generating local variable for 'pedersen_ptr'." + ], + "start_col": 36, + "start_line": 36 + }, + "While trying to update the implicit return value 'pedersen_ptr' in:" + ], + "start_col": 42, + "start_line": 13 + } + }, + "335": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.token_uri" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 40, + "end_line": 13, + "input_file": { + "filename": "src/renderers/BasicCellRenderer.cairo" + }, + "parent_location": [ + { + "end_col": 61, + "end_line": 36, + "input_file": { + "filename": "src/renderers/BasicCellRenderer.cairo" + }, + "parent_location": [ + { + "end_col": 40, + "end_line": 13, + "input_file": { + "filename": "src/renderers/BasicCellRenderer.cairo" + }, + "parent_location": [ + { + "end_col": 61, + "end_line": 36, + "input_file": { + "filename": "src/renderers/BasicCellRenderer.cairo" + }, + "start_col": 36, + "start_line": 36 + }, + "While trying to update the implicit return value 'syscall_ptr' in:" + ], + "start_col": 22, + "start_line": 13 + }, + "While auto generating local variable for 'syscall_ptr'." + ], + "start_col": 36, + "start_line": 36 + }, + "While trying to update the implicit return value 'syscall_ptr' in:" + ], + "start_col": 22, + "start_line": 13 + } + }, + "336": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.token_uri" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 85, + "end_line": 13, + "input_file": { + "filename": "src/renderers/BasicCellRenderer.cairo" + }, + "parent_location": [ + { + "end_col": 61, + "end_line": 36, + "input_file": { + "filename": "src/renderers/BasicCellRenderer.cairo" + }, + "parent_location": [ + { + "end_col": 25, + "end_line": 13, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/utils/string.cairo" + }, + "parent_location": [ + { + "end_col": 41, + "end_line": 37, + "input_file": { + "filename": "src/renderers/BasicCellRenderer.cairo" + }, + "start_col": 31, + "start_line": 37 + }, + "While trying to retrieve the implicit argument 'range_check_ptr' in:" + ], + "start_col": 10, + "start_line": 13 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 36, + "start_line": 36 + }, + "While trying to update the implicit return value 'range_check_ptr' in:" + ], + "start_col": 70, + "start_line": 13 + } + }, + "337": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.token_uri" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 32, + "end_line": 33, + "input_file": { + "filename": "src/renderers/BasicCellRenderer.cairo" + }, + "parent_location": [ + { + "end_col": 40, + "end_line": 37, + "input_file": { + "filename": "src/renderers/BasicCellRenderer.cairo" + }, + "start_col": 35, + "start_line": 37 + }, + "While expanding the reference 'value' in:" + ], + "start_col": 21, + "start_line": 33 + } + }, + "338": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.token_uri" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 41, + "end_line": 37, + "input_file": { + "filename": "src/renderers/BasicCellRenderer.cairo" + }, + "start_col": 31, + "start_line": 37 + } + }, + "340": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.token_uri" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 27, + "end_line": 37, + "input_file": { + "filename": "src/renderers/BasicCellRenderer.cairo" + }, + "start_col": 10, + "start_line": 37 + } + }, + "341": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.token_uri" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 30, + "end_line": 38, + "input_file": { + "filename": "src/renderers/BasicCellRenderer.cairo" + }, + "start_col": 23, + "start_line": 38 + } + }, + "343": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.token_uri" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 63, + "end_line": 40, + "input_file": { + "filename": "src/renderers/BasicCellRenderer.cairo" + }, + "start_col": 30, + "start_line": 40 + } + }, + "345": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.token_uri" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 64, + "end_line": 40, + "input_file": { + "filename": "src/renderers/BasicCellRenderer.cairo" + }, + "start_col": 5, + "start_line": 40 + } + }, + "346": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.token_uri" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 62, + "end_line": 41, + "input_file": { + "filename": "src/renderers/BasicCellRenderer.cairo" + }, + "start_col": 30, + "start_line": 41 + } + }, + "348": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.token_uri" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 63, + "end_line": 41, + "input_file": { + "filename": "src/renderers/BasicCellRenderer.cairo" + }, + "start_col": 5, + "start_line": 41 + } + }, + "349": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.token_uri" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 40, + "end_line": 42, + "input_file": { + "filename": "src/renderers/BasicCellRenderer.cairo" + }, + "start_col": 30, + "start_line": 42 + } + }, + "351": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.token_uri" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 46, + "end_line": 42, + "input_file": { + "filename": "src/renderers/BasicCellRenderer.cairo" + }, + "start_col": 30, + "start_line": 42 + } + }, + "353": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.token_uri" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 47, + "end_line": 42, + "input_file": { + "filename": "src/renderers/BasicCellRenderer.cairo" + }, + "start_col": 5, + "start_line": 42 + } + }, + "354": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.token_uri" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 47, + "end_line": 43, + "input_file": { + "filename": "src/renderers/BasicCellRenderer.cairo" + }, + "start_col": 5, + "start_line": 43 + } + }, + "355": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.token_uri" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 63, + "end_line": 44, + "input_file": { + "filename": "src/renderers/BasicCellRenderer.cairo" + }, + "start_col": 30, + "start_line": 44 + } + }, + "357": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.token_uri" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 64, + "end_line": 44, + "input_file": { + "filename": "src/renderers/BasicCellRenderer.cairo" + }, + "start_col": 5, + "start_line": 44 + } + }, + "358": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.token_uri" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 63, + "end_line": 45, + "input_file": { + "filename": "src/renderers/BasicCellRenderer.cairo" + }, + "start_col": 30, + "start_line": 45 + } + }, + "360": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.token_uri" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 64, + "end_line": 45, + "input_file": { + "filename": "src/renderers/BasicCellRenderer.cairo" + }, + "start_col": 5, + "start_line": 45 + } + }, + "361": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.token_uri" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 63, + "end_line": 46, + "input_file": { + "filename": "src/renderers/BasicCellRenderer.cairo" + }, + "start_col": 30, + "start_line": 46 + } + }, + "363": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.token_uri" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 64, + "end_line": 46, + "input_file": { + "filename": "src/renderers/BasicCellRenderer.cairo" + }, + "start_col": 5, + "start_line": 46 + } + }, + "364": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.token_uri" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 63, + "end_line": 47, + "input_file": { + "filename": "src/renderers/BasicCellRenderer.cairo" + }, + "start_col": 30, + "start_line": 47 + } + }, + "366": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.token_uri" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 64, + "end_line": 47, + "input_file": { + "filename": "src/renderers/BasicCellRenderer.cairo" + }, + "start_col": 5, + "start_line": 47 + } + }, + "367": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.token_uri" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 63, + "end_line": 48, + "input_file": { + "filename": "src/renderers/BasicCellRenderer.cairo" + }, + "start_col": 30, + "start_line": 48 + } + }, + "369": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.token_uri" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 64, + "end_line": 48, + "input_file": { + "filename": "src/renderers/BasicCellRenderer.cairo" + }, + "start_col": 5, + "start_line": 48 + } + }, + "370": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.token_uri" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 63, + "end_line": 49, + "input_file": { + "filename": "src/renderers/BasicCellRenderer.cairo" + }, + "start_col": 30, + "start_line": 49 + } + }, + "372": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.token_uri" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 64, + "end_line": 49, + "input_file": { + "filename": "src/renderers/BasicCellRenderer.cairo" + }, + "start_col": 5, + "start_line": 49 + } + }, + "373": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.token_uri" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 64, + "end_line": 50, + "input_file": { + "filename": "src/renderers/BasicCellRenderer.cairo" + }, + "start_col": 31, + "start_line": 50 + } + }, + "375": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.token_uri" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 65, + "end_line": 50, + "input_file": { + "filename": "src/renderers/BasicCellRenderer.cairo" + }, + "start_col": 5, + "start_line": 50 + } + }, + "376": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.token_uri" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 64, + "end_line": 51, + "input_file": { + "filename": "src/renderers/BasicCellRenderer.cairo" + }, + "start_col": 31, + "start_line": 51 + } + }, + "378": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.token_uri" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 65, + "end_line": 51, + "input_file": { + "filename": "src/renderers/BasicCellRenderer.cairo" + }, + "start_col": 5, + "start_line": 51 + } + }, + "379": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.token_uri" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 64, + "end_line": 52, + "input_file": { + "filename": "src/renderers/BasicCellRenderer.cairo" + }, + "start_col": 31, + "start_line": 52 + } + }, + "381": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.token_uri" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 65, + "end_line": 52, + "input_file": { + "filename": "src/renderers/BasicCellRenderer.cairo" + }, + "start_col": 5, + "start_line": 52 + } + }, + "382": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.token_uri" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 64, + "end_line": 53, + "input_file": { + "filename": "src/renderers/BasicCellRenderer.cairo" + }, + "start_col": 31, + "start_line": 53 + } + }, + "384": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.token_uri" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 65, + "end_line": 53, + "input_file": { + "filename": "src/renderers/BasicCellRenderer.cairo" + }, + "start_col": 5, + "start_line": 53 + } + }, + "385": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.token_uri" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 64, + "end_line": 54, + "input_file": { + "filename": "src/renderers/BasicCellRenderer.cairo" + }, + "start_col": 31, + "start_line": 54 + } + }, + "387": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.token_uri" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 65, + "end_line": 54, + "input_file": { + "filename": "src/renderers/BasicCellRenderer.cairo" + }, + "start_col": 5, + "start_line": 54 + } + }, + "388": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.token_uri" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 64, + "end_line": 55, + "input_file": { + "filename": "src/renderers/BasicCellRenderer.cairo" + }, + "start_col": 31, + "start_line": 55 + } + }, + "390": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.token_uri" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 65, + "end_line": 55, + "input_file": { + "filename": "src/renderers/BasicCellRenderer.cairo" + }, + "start_col": 5, + "start_line": 55 + } + }, + "391": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.token_uri" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 64, + "end_line": 56, + "input_file": { + "filename": "src/renderers/BasicCellRenderer.cairo" + }, + "start_col": 31, + "start_line": 56 + } + }, + "393": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.token_uri" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 65, + "end_line": 56, + "input_file": { + "filename": "src/renderers/BasicCellRenderer.cairo" + }, + "start_col": 5, + "start_line": 56 + } + }, + "394": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.token_uri" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 64, + "end_line": 57, + "input_file": { + "filename": "src/renderers/BasicCellRenderer.cairo" + }, + "start_col": 31, + "start_line": 57 + } + }, + "396": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.token_uri" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 65, + "end_line": 57, + "input_file": { + "filename": "src/renderers/BasicCellRenderer.cairo" + }, + "start_col": 5, + "start_line": 57 + } + }, + "397": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.token_uri" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 64, + "end_line": 58, + "input_file": { + "filename": "src/renderers/BasicCellRenderer.cairo" + }, + "start_col": 31, + "start_line": 58 + } + }, + "399": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.token_uri" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 65, + "end_line": 58, + "input_file": { + "filename": "src/renderers/BasicCellRenderer.cairo" + }, + "start_col": 5, + "start_line": 58 + } + }, + "400": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.token_uri" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 64, + "end_line": 59, + "input_file": { + "filename": "src/renderers/BasicCellRenderer.cairo" + }, + "start_col": 31, + "start_line": 59 + } + }, + "402": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.token_uri" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 65, + "end_line": 59, + "input_file": { + "filename": "src/renderers/BasicCellRenderer.cairo" + }, + "start_col": 5, + "start_line": 59 + } + }, + "403": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.token_uri" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 64, + "end_line": 60, + "input_file": { + "filename": "src/renderers/BasicCellRenderer.cairo" + }, + "start_col": 31, + "start_line": 60 + } + }, + "405": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.token_uri" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 65, + "end_line": 60, + "input_file": { + "filename": "src/renderers/BasicCellRenderer.cairo" + }, + "start_col": 5, + "start_line": 60 + } + }, + "406": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.token_uri" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 64, + "end_line": 61, + "input_file": { + "filename": "src/renderers/BasicCellRenderer.cairo" + }, + "start_col": 31, + "start_line": 61 + } + }, + "408": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.token_uri" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 65, + "end_line": 61, + "input_file": { + "filename": "src/renderers/BasicCellRenderer.cairo" + }, + "start_col": 5, + "start_line": 61 + } + }, + "409": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.token_uri" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 64, + "end_line": 62, + "input_file": { + "filename": "src/renderers/BasicCellRenderer.cairo" + }, + "start_col": 31, + "start_line": 62 + } + }, + "411": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.token_uri" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 65, + "end_line": 62, + "input_file": { + "filename": "src/renderers/BasicCellRenderer.cairo" + }, + "start_col": 5, + "start_line": 62 + } + }, + "412": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.token_uri" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 64, + "end_line": 63, + "input_file": { + "filename": "src/renderers/BasicCellRenderer.cairo" + }, + "start_col": 31, + "start_line": 63 + } + }, + "414": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.token_uri" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 65, + "end_line": 63, + "input_file": { + "filename": "src/renderers/BasicCellRenderer.cairo" + }, + "start_col": 5, + "start_line": 63 + } + }, + "415": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.token_uri" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 64, + "end_line": 64, + "input_file": { + "filename": "src/renderers/BasicCellRenderer.cairo" + }, + "start_col": 31, + "start_line": 64 + } + }, + "417": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.token_uri" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 65, + "end_line": 64, + "input_file": { + "filename": "src/renderers/BasicCellRenderer.cairo" + }, + "start_col": 5, + "start_line": 64 + } + }, + "418": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.token_uri" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 64, + "end_line": 65, + "input_file": { + "filename": "src/renderers/BasicCellRenderer.cairo" + }, + "start_col": 31, + "start_line": 65 + } + }, + "420": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.token_uri" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 65, + "end_line": 65, + "input_file": { + "filename": "src/renderers/BasicCellRenderer.cairo" + }, + "start_col": 5, + "start_line": 65 + } + }, + "421": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.token_uri" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 64, + "end_line": 66, + "input_file": { + "filename": "src/renderers/BasicCellRenderer.cairo" + }, + "start_col": 31, + "start_line": 66 + } + }, + "423": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.token_uri" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 65, + "end_line": 66, + "input_file": { + "filename": "src/renderers/BasicCellRenderer.cairo" + }, + "start_col": 5, + "start_line": 66 + } + }, + "424": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.token_uri" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 64, + "end_line": 67, + "input_file": { + "filename": "src/renderers/BasicCellRenderer.cairo" + }, + "start_col": 31, + "start_line": 67 + } + }, + "426": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.token_uri" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 65, + "end_line": 67, + "input_file": { + "filename": "src/renderers/BasicCellRenderer.cairo" + }, + "start_col": 5, + "start_line": 67 + } + }, + "427": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.token_uri" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 64, + "end_line": 68, + "input_file": { + "filename": "src/renderers/BasicCellRenderer.cairo" + }, + "start_col": 31, + "start_line": 68 + } + }, + "429": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.token_uri" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 65, + "end_line": 68, + "input_file": { + "filename": "src/renderers/BasicCellRenderer.cairo" + }, + "start_col": 5, + "start_line": 68 + } + }, + "430": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.token_uri" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 64, + "end_line": 69, + "input_file": { + "filename": "src/renderers/BasicCellRenderer.cairo" + }, + "start_col": 31, + "start_line": 69 + } + }, + "432": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.token_uri" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 65, + "end_line": 69, + "input_file": { + "filename": "src/renderers/BasicCellRenderer.cairo" + }, + "start_col": 5, + "start_line": 69 + } + }, + "433": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.token_uri" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 64, + "end_line": 70, + "input_file": { + "filename": "src/renderers/BasicCellRenderer.cairo" + }, + "start_col": 31, + "start_line": 70 + } + }, + "435": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.token_uri" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 65, + "end_line": 70, + "input_file": { + "filename": "src/renderers/BasicCellRenderer.cairo" + }, + "start_col": 5, + "start_line": 70 + } + }, + "436": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.token_uri" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 64, + "end_line": 71, + "input_file": { + "filename": "src/renderers/BasicCellRenderer.cairo" + }, + "start_col": 31, + "start_line": 71 + } + }, + "438": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.token_uri" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 65, + "end_line": 71, + "input_file": { + "filename": "src/renderers/BasicCellRenderer.cairo" + }, + "start_col": 5, + "start_line": 71 + } + }, + "439": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.token_uri" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 64, + "end_line": 72, + "input_file": { + "filename": "src/renderers/BasicCellRenderer.cairo" + }, + "start_col": 31, + "start_line": 72 + } + }, + "441": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.token_uri" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 65, + "end_line": 72, + "input_file": { + "filename": "src/renderers/BasicCellRenderer.cairo" + }, + "start_col": 5, + "start_line": 72 + } + }, + "442": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.token_uri" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 64, + "end_line": 73, + "input_file": { + "filename": "src/renderers/BasicCellRenderer.cairo" + }, + "start_col": 31, + "start_line": 73 + } + }, + "444": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.token_uri" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 65, + "end_line": 73, + "input_file": { + "filename": "src/renderers/BasicCellRenderer.cairo" + }, + "start_col": 5, + "start_line": 73 + } + }, + "445": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.token_uri" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 64, + "end_line": 74, + "input_file": { + "filename": "src/renderers/BasicCellRenderer.cairo" + }, + "start_col": 31, + "start_line": 74 + } + }, + "447": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.token_uri" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 65, + "end_line": 74, + "input_file": { + "filename": "src/renderers/BasicCellRenderer.cairo" + }, + "start_col": 5, + "start_line": 74 + } + }, + "448": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.token_uri" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 64, + "end_line": 75, + "input_file": { + "filename": "src/renderers/BasicCellRenderer.cairo" + }, + "start_col": 31, + "start_line": 75 + } + }, + "450": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.token_uri" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 65, + "end_line": 75, + "input_file": { + "filename": "src/renderers/BasicCellRenderer.cairo" + }, + "start_col": 5, + "start_line": 75 + } + }, + "451": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.token_uri" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 64, + "end_line": 76, + "input_file": { + "filename": "src/renderers/BasicCellRenderer.cairo" + }, + "start_col": 31, + "start_line": 76 + } + }, + "453": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.token_uri" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 65, + "end_line": 76, + "input_file": { + "filename": "src/renderers/BasicCellRenderer.cairo" + }, + "start_col": 5, + "start_line": 76 + } + }, + "454": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.token_uri" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 64, + "end_line": 77, + "input_file": { + "filename": "src/renderers/BasicCellRenderer.cairo" + }, + "start_col": 31, + "start_line": 77 + } + }, + "456": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.token_uri" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 65, + "end_line": 77, + "input_file": { + "filename": "src/renderers/BasicCellRenderer.cairo" + }, + "start_col": 5, + "start_line": 77 + } + }, + "457": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.token_uri" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 64, + "end_line": 78, + "input_file": { + "filename": "src/renderers/BasicCellRenderer.cairo" + }, + "start_col": 31, + "start_line": 78 + } + }, + "459": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.token_uri" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 65, + "end_line": 78, + "input_file": { + "filename": "src/renderers/BasicCellRenderer.cairo" + }, + "start_col": 5, + "start_line": 78 + } + }, + "460": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.token_uri" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 64, + "end_line": 79, + "input_file": { + "filename": "src/renderers/BasicCellRenderer.cairo" + }, + "start_col": 31, + "start_line": 79 + } + }, + "462": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.token_uri" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 65, + "end_line": 79, + "input_file": { + "filename": "src/renderers/BasicCellRenderer.cairo" + }, + "start_col": 5, + "start_line": 79 + } + }, + "463": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.token_uri" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 64, + "end_line": 80, + "input_file": { + "filename": "src/renderers/BasicCellRenderer.cairo" + }, + "start_col": 31, + "start_line": 80 + } + }, + "465": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.token_uri" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 65, + "end_line": 80, + "input_file": { + "filename": "src/renderers/BasicCellRenderer.cairo" + }, + "start_col": 5, + "start_line": 80 + } + }, + "466": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.token_uri" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 64, + "end_line": 81, + "input_file": { + "filename": "src/renderers/BasicCellRenderer.cairo" + }, + "start_col": 31, + "start_line": 81 + } + }, + "468": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.token_uri" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 65, + "end_line": 81, + "input_file": { + "filename": "src/renderers/BasicCellRenderer.cairo" + }, + "start_col": 5, + "start_line": 81 + } + }, + "469": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.token_uri" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 64, + "end_line": 82, + "input_file": { + "filename": "src/renderers/BasicCellRenderer.cairo" + }, + "start_col": 31, + "start_line": 82 + } + }, + "471": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.token_uri" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 65, + "end_line": 82, + "input_file": { + "filename": "src/renderers/BasicCellRenderer.cairo" + }, + "start_col": 5, + "start_line": 82 + } + }, + "472": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.token_uri" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 64, + "end_line": 83, + "input_file": { + "filename": "src/renderers/BasicCellRenderer.cairo" + }, + "start_col": 31, + "start_line": 83 + } + }, + "474": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.token_uri" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 65, + "end_line": 83, + "input_file": { + "filename": "src/renderers/BasicCellRenderer.cairo" + }, + "start_col": 5, + "start_line": 83 + } + }, + "475": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.token_uri" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 64, + "end_line": 84, + "input_file": { + "filename": "src/renderers/BasicCellRenderer.cairo" + }, + "start_col": 31, + "start_line": 84 + } + }, + "477": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.token_uri" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 65, + "end_line": 84, + "input_file": { + "filename": "src/renderers/BasicCellRenderer.cairo" + }, + "start_col": 5, + "start_line": 84 + } + }, + "478": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.token_uri" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 64, + "end_line": 85, + "input_file": { + "filename": "src/renderers/BasicCellRenderer.cairo" + }, + "start_col": 31, + "start_line": 85 + } + }, + "480": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.token_uri" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 65, + "end_line": 85, + "input_file": { + "filename": "src/renderers/BasicCellRenderer.cairo" + }, + "start_col": 5, + "start_line": 85 + } + }, + "481": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.token_uri" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 64, + "end_line": 86, + "input_file": { + "filename": "src/renderers/BasicCellRenderer.cairo" + }, + "start_col": 31, + "start_line": 86 + } + }, + "483": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.token_uri" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 65, + "end_line": 86, + "input_file": { + "filename": "src/renderers/BasicCellRenderer.cairo" + }, + "start_col": 5, + "start_line": 86 + } + }, + "484": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.token_uri" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 64, + "end_line": 87, + "input_file": { + "filename": "src/renderers/BasicCellRenderer.cairo" + }, + "start_col": 31, + "start_line": 87 + } + }, + "486": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.token_uri" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 65, + "end_line": 87, + "input_file": { + "filename": "src/renderers/BasicCellRenderer.cairo" + }, + "start_col": 5, + "start_line": 87 + } + }, + "487": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.token_uri" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 64, + "end_line": 88, + "input_file": { + "filename": "src/renderers/BasicCellRenderer.cairo" + }, + "start_col": 31, + "start_line": 88 + } + }, + "489": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.token_uri" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 65, + "end_line": 88, + "input_file": { + "filename": "src/renderers/BasicCellRenderer.cairo" + }, + "start_col": 5, + "start_line": 88 + } + }, + "490": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.token_uri" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 64, + "end_line": 89, + "input_file": { + "filename": "src/renderers/BasicCellRenderer.cairo" + }, + "start_col": 31, + "start_line": 89 + } + }, + "492": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.token_uri" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 65, + "end_line": 89, + "input_file": { + "filename": "src/renderers/BasicCellRenderer.cairo" + }, + "start_col": 5, + "start_line": 89 + } + }, + "493": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.token_uri" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 64, + "end_line": 90, + "input_file": { + "filename": "src/renderers/BasicCellRenderer.cairo" + }, + "start_col": 31, + "start_line": 90 + } + }, + "495": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.token_uri" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 65, + "end_line": 90, + "input_file": { + "filename": "src/renderers/BasicCellRenderer.cairo" + }, + "start_col": 5, + "start_line": 90 + } + }, + "496": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.token_uri" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 64, + "end_line": 91, + "input_file": { + "filename": "src/renderers/BasicCellRenderer.cairo" + }, + "start_col": 31, + "start_line": 91 + } + }, + "498": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.token_uri" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 65, + "end_line": 91, + "input_file": { + "filename": "src/renderers/BasicCellRenderer.cairo" + }, + "start_col": 5, + "start_line": 91 + } + }, + "499": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.token_uri" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 64, + "end_line": 92, + "input_file": { + "filename": "src/renderers/BasicCellRenderer.cairo" + }, + "start_col": 31, + "start_line": 92 + } + }, + "501": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.token_uri" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 65, + "end_line": 92, + "input_file": { + "filename": "src/renderers/BasicCellRenderer.cairo" + }, + "start_col": 5, + "start_line": 92 + } + }, + "502": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.token_uri" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 64, + "end_line": 93, + "input_file": { + "filename": "src/renderers/BasicCellRenderer.cairo" + }, + "start_col": 31, + "start_line": 93 + } + }, + "504": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.token_uri" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 65, + "end_line": 93, + "input_file": { + "filename": "src/renderers/BasicCellRenderer.cairo" + }, + "start_col": 5, + "start_line": 93 + } + }, + "505": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.token_uri" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 64, + "end_line": 94, + "input_file": { + "filename": "src/renderers/BasicCellRenderer.cairo" + }, + "start_col": 31, + "start_line": 94 + } + }, + "507": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.token_uri" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 65, + "end_line": 94, + "input_file": { + "filename": "src/renderers/BasicCellRenderer.cairo" + }, + "start_col": 5, + "start_line": 94 + } + }, + "508": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.token_uri" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 64, + "end_line": 95, + "input_file": { + "filename": "src/renderers/BasicCellRenderer.cairo" + }, + "start_col": 31, + "start_line": 95 + } + }, + "510": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.token_uri" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 65, + "end_line": 95, + "input_file": { + "filename": "src/renderers/BasicCellRenderer.cairo" + }, + "start_col": 5, + "start_line": 95 + } + }, + "511": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.token_uri" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 64, + "end_line": 96, + "input_file": { + "filename": "src/renderers/BasicCellRenderer.cairo" + }, + "start_col": 31, + "start_line": 96 + } + }, + "513": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.token_uri" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 65, + "end_line": 96, + "input_file": { + "filename": "src/renderers/BasicCellRenderer.cairo" + }, + "start_col": 5, + "start_line": 96 + } + }, + "514": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.token_uri" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 64, + "end_line": 97, + "input_file": { + "filename": "src/renderers/BasicCellRenderer.cairo" + }, + "start_col": 31, + "start_line": 97 + } + }, + "516": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.token_uri" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 65, + "end_line": 97, + "input_file": { + "filename": "src/renderers/BasicCellRenderer.cairo" + }, + "start_col": 5, + "start_line": 97 + } + }, + "517": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.token_uri" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 64, + "end_line": 98, + "input_file": { + "filename": "src/renderers/BasicCellRenderer.cairo" + }, + "start_col": 31, + "start_line": 98 + } + }, + "519": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.token_uri" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 65, + "end_line": 98, + "input_file": { + "filename": "src/renderers/BasicCellRenderer.cairo" + }, + "start_col": 5, + "start_line": 98 + } + }, + "520": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.token_uri" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 64, + "end_line": 99, + "input_file": { + "filename": "src/renderers/BasicCellRenderer.cairo" + }, + "start_col": 31, + "start_line": 99 + } + }, + "522": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.token_uri" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 65, + "end_line": 99, + "input_file": { + "filename": "src/renderers/BasicCellRenderer.cairo" + }, + "start_col": 5, + "start_line": 99 + } + }, + "523": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.token_uri" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 64, + "end_line": 100, + "input_file": { + "filename": "src/renderers/BasicCellRenderer.cairo" + }, + "start_col": 31, + "start_line": 100 + } + }, + "525": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.token_uri" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 65, + "end_line": 100, + "input_file": { + "filename": "src/renderers/BasicCellRenderer.cairo" + }, + "start_col": 5, + "start_line": 100 + } + }, + "526": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.token_uri" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 64, + "end_line": 101, + "input_file": { + "filename": "src/renderers/BasicCellRenderer.cairo" + }, + "start_col": 31, + "start_line": 101 + } + }, + "528": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.token_uri" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 65, + "end_line": 101, + "input_file": { + "filename": "src/renderers/BasicCellRenderer.cairo" + }, + "start_col": 5, + "start_line": 101 + } + }, + "529": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.token_uri" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 64, + "end_line": 102, + "input_file": { + "filename": "src/renderers/BasicCellRenderer.cairo" + }, + "start_col": 31, + "start_line": 102 + } + }, + "531": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.token_uri" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 65, + "end_line": 102, + "input_file": { + "filename": "src/renderers/BasicCellRenderer.cairo" + }, + "start_col": 5, + "start_line": 102 + } + }, + "532": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.token_uri" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 64, + "end_line": 103, + "input_file": { + "filename": "src/renderers/BasicCellRenderer.cairo" + }, + "start_col": 31, + "start_line": 103 + } + }, + "534": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.token_uri" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 65, + "end_line": 103, + "input_file": { + "filename": "src/renderers/BasicCellRenderer.cairo" + }, + "start_col": 5, + "start_line": 103 + } + }, + "535": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.token_uri" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 64, + "end_line": 104, + "input_file": { + "filename": "src/renderers/BasicCellRenderer.cairo" + }, + "start_col": 31, + "start_line": 104 + } + }, + "537": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.token_uri" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 65, + "end_line": 104, + "input_file": { + "filename": "src/renderers/BasicCellRenderer.cairo" + }, + "start_col": 5, + "start_line": 104 + } + }, + "538": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.token_uri" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 64, + "end_line": 105, + "input_file": { + "filename": "src/renderers/BasicCellRenderer.cairo" + }, + "start_col": 31, + "start_line": 105 + } + }, + "540": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.token_uri" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 65, + "end_line": 105, + "input_file": { + "filename": "src/renderers/BasicCellRenderer.cairo" + }, + "start_col": 5, + "start_line": 105 + } + }, + "541": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.token_uri" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 64, + "end_line": 106, + "input_file": { + "filename": "src/renderers/BasicCellRenderer.cairo" + }, + "start_col": 31, + "start_line": 106 + } + }, + "543": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.token_uri" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 65, + "end_line": 106, + "input_file": { + "filename": "src/renderers/BasicCellRenderer.cairo" + }, + "start_col": 5, + "start_line": 106 + } + }, + "544": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.token_uri" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 64, + "end_line": 107, + "input_file": { + "filename": "src/renderers/BasicCellRenderer.cairo" + }, + "start_col": 31, + "start_line": 107 + } + }, + "546": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.token_uri" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 65, + "end_line": 107, + "input_file": { + "filename": "src/renderers/BasicCellRenderer.cairo" + }, + "start_col": 5, + "start_line": 107 + } + }, + "547": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.token_uri" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 64, + "end_line": 108, + "input_file": { + "filename": "src/renderers/BasicCellRenderer.cairo" + }, + "start_col": 31, + "start_line": 108 + } + }, + "549": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.token_uri" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 65, + "end_line": 108, + "input_file": { + "filename": "src/renderers/BasicCellRenderer.cairo" + }, + "start_col": 5, + "start_line": 108 + } + }, + "550": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.token_uri" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 64, + "end_line": 109, + "input_file": { + "filename": "src/renderers/BasicCellRenderer.cairo" + }, + "start_col": 31, + "start_line": 109 + } + }, + "552": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.token_uri" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 65, + "end_line": 109, + "input_file": { + "filename": "src/renderers/BasicCellRenderer.cairo" + }, + "start_col": 5, + "start_line": 109 + } + }, + "553": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.token_uri" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 64, + "end_line": 110, + "input_file": { + "filename": "src/renderers/BasicCellRenderer.cairo" + }, + "start_col": 31, + "start_line": 110 + } + }, + "555": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.token_uri" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 65, + "end_line": 110, + "input_file": { + "filename": "src/renderers/BasicCellRenderer.cairo" + }, + "start_col": 5, + "start_line": 110 + } + }, + "556": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.token_uri" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 64, + "end_line": 111, + "input_file": { + "filename": "src/renderers/BasicCellRenderer.cairo" + }, + "start_col": 31, + "start_line": 111 + } + }, + "558": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.token_uri" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 65, + "end_line": 111, + "input_file": { + "filename": "src/renderers/BasicCellRenderer.cairo" + }, + "start_col": 5, + "start_line": 111 + } + }, + "559": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.token_uri" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 64, + "end_line": 112, + "input_file": { + "filename": "src/renderers/BasicCellRenderer.cairo" + }, + "start_col": 31, + "start_line": 112 + } + }, + "561": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.token_uri" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 65, + "end_line": 112, + "input_file": { + "filename": "src/renderers/BasicCellRenderer.cairo" + }, + "start_col": 5, + "start_line": 112 + } + }, + "562": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.token_uri" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 64, + "end_line": 113, + "input_file": { + "filename": "src/renderers/BasicCellRenderer.cairo" + }, + "start_col": 31, + "start_line": 113 + } + }, + "564": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.token_uri" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 65, + "end_line": 113, + "input_file": { + "filename": "src/renderers/BasicCellRenderer.cairo" + }, + "start_col": 5, + "start_line": 113 + } + }, + "565": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.token_uri" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 64, + "end_line": 114, + "input_file": { + "filename": "src/renderers/BasicCellRenderer.cairo" + }, + "start_col": 31, + "start_line": 114 + } + }, + "567": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.token_uri" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 65, + "end_line": 114, + "input_file": { + "filename": "src/renderers/BasicCellRenderer.cairo" + }, + "start_col": 5, + "start_line": 114 + } + }, + "568": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.token_uri" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 64, + "end_line": 115, + "input_file": { + "filename": "src/renderers/BasicCellRenderer.cairo" + }, + "start_col": 31, + "start_line": 115 + } + }, + "570": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.token_uri" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 65, + "end_line": 115, + "input_file": { + "filename": "src/renderers/BasicCellRenderer.cairo" + }, + "start_col": 5, + "start_line": 115 + } + }, + "571": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.token_uri" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 64, + "end_line": 116, + "input_file": { + "filename": "src/renderers/BasicCellRenderer.cairo" + }, + "start_col": 31, + "start_line": 116 + } + }, + "573": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.token_uri" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 65, + "end_line": 116, + "input_file": { + "filename": "src/renderers/BasicCellRenderer.cairo" + }, + "start_col": 5, + "start_line": 116 + } + }, + "574": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.token_uri" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 64, + "end_line": 117, + "input_file": { + "filename": "src/renderers/BasicCellRenderer.cairo" + }, + "start_col": 31, + "start_line": 117 + } + }, + "576": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.token_uri" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 65, + "end_line": 117, + "input_file": { + "filename": "src/renderers/BasicCellRenderer.cairo" + }, + "start_col": 5, + "start_line": 117 + } + }, + "577": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.token_uri" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 64, + "end_line": 118, + "input_file": { + "filename": "src/renderers/BasicCellRenderer.cairo" + }, + "start_col": 31, + "start_line": 118 + } + }, + "579": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.token_uri" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 65, + "end_line": 118, + "input_file": { + "filename": "src/renderers/BasicCellRenderer.cairo" + }, + "start_col": 5, + "start_line": 118 + } + }, + "580": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.token_uri" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 64, + "end_line": 119, + "input_file": { + "filename": "src/renderers/BasicCellRenderer.cairo" + }, + "start_col": 31, + "start_line": 119 + } + }, + "582": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.token_uri" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 65, + "end_line": 119, + "input_file": { + "filename": "src/renderers/BasicCellRenderer.cairo" + }, + "start_col": 5, + "start_line": 119 + } + }, + "583": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.token_uri" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 64, + "end_line": 120, + "input_file": { + "filename": "src/renderers/BasicCellRenderer.cairo" + }, + "start_col": 31, + "start_line": 120 + } + }, + "585": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.token_uri" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 65, + "end_line": 120, + "input_file": { + "filename": "src/renderers/BasicCellRenderer.cairo" + }, + "start_col": 5, + "start_line": 120 + } + }, + "586": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.token_uri" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 64, + "end_line": 121, + "input_file": { + "filename": "src/renderers/BasicCellRenderer.cairo" + }, + "start_col": 31, + "start_line": 121 + } + }, + "588": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.token_uri" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 65, + "end_line": 121, + "input_file": { + "filename": "src/renderers/BasicCellRenderer.cairo" + }, + "start_col": 5, + "start_line": 121 + } + }, + "589": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.token_uri" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 64, + "end_line": 122, + "input_file": { + "filename": "src/renderers/BasicCellRenderer.cairo" + }, + "start_col": 31, + "start_line": 122 + } + }, + "591": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.token_uri" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 65, + "end_line": 122, + "input_file": { + "filename": "src/renderers/BasicCellRenderer.cairo" + }, + "start_col": 5, + "start_line": 122 + } + }, + "592": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.token_uri" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 64, + "end_line": 123, + "input_file": { + "filename": "src/renderers/BasicCellRenderer.cairo" + }, + "start_col": 31, + "start_line": 123 + } + }, + "594": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.token_uri" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 65, + "end_line": 123, + "input_file": { + "filename": "src/renderers/BasicCellRenderer.cairo" + }, + "start_col": 5, + "start_line": 123 + } + }, + "595": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.token_uri" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 64, + "end_line": 124, + "input_file": { + "filename": "src/renderers/BasicCellRenderer.cairo" + }, + "start_col": 31, + "start_line": 124 + } + }, + "597": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.token_uri" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 65, + "end_line": 124, + "input_file": { + "filename": "src/renderers/BasicCellRenderer.cairo" + }, + "start_col": 5, + "start_line": 124 + } + }, + "598": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.token_uri" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 64, + "end_line": 125, + "input_file": { + "filename": "src/renderers/BasicCellRenderer.cairo" + }, + "start_col": 31, + "start_line": 125 + } + }, + "600": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.token_uri" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 65, + "end_line": 125, + "input_file": { + "filename": "src/renderers/BasicCellRenderer.cairo" + }, + "start_col": 5, + "start_line": 125 + } + }, + "601": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.token_uri" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 64, + "end_line": 126, + "input_file": { + "filename": "src/renderers/BasicCellRenderer.cairo" + }, + "start_col": 31, + "start_line": 126 + } + }, + "603": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.token_uri" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 65, + "end_line": 126, + "input_file": { + "filename": "src/renderers/BasicCellRenderer.cairo" + }, + "start_col": 5, + "start_line": 126 + } + }, + "604": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.token_uri" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 64, + "end_line": 127, + "input_file": { + "filename": "src/renderers/BasicCellRenderer.cairo" + }, + "start_col": 31, + "start_line": 127 + } + }, + "606": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.token_uri" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 65, + "end_line": 127, + "input_file": { + "filename": "src/renderers/BasicCellRenderer.cairo" + }, + "start_col": 5, + "start_line": 127 + } + }, + "607": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.token_uri" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 64, + "end_line": 128, + "input_file": { + "filename": "src/renderers/BasicCellRenderer.cairo" + }, + "start_col": 31, + "start_line": 128 + } + }, + "609": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.token_uri" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 65, + "end_line": 128, + "input_file": { + "filename": "src/renderers/BasicCellRenderer.cairo" + }, + "start_col": 5, + "start_line": 128 + } + }, + "610": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.token_uri" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 64, + "end_line": 129, + "input_file": { + "filename": "src/renderers/BasicCellRenderer.cairo" + }, + "start_col": 31, + "start_line": 129 + } + }, + "612": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.token_uri" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 65, + "end_line": 129, + "input_file": { + "filename": "src/renderers/BasicCellRenderer.cairo" + }, + "start_col": 5, + "start_line": 129 + } + }, + "613": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.token_uri" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 64, + "end_line": 130, + "input_file": { + "filename": "src/renderers/BasicCellRenderer.cairo" + }, + "start_col": 31, + "start_line": 130 + } + }, + "615": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.token_uri" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 65, + "end_line": 130, + "input_file": { + "filename": "src/renderers/BasicCellRenderer.cairo" + }, + "start_col": 5, + "start_line": 130 + } + }, + "616": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.token_uri" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 64, + "end_line": 131, + "input_file": { + "filename": "src/renderers/BasicCellRenderer.cairo" + }, + "start_col": 31, + "start_line": 131 + } + }, + "618": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.token_uri" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 65, + "end_line": 131, + "input_file": { + "filename": "src/renderers/BasicCellRenderer.cairo" + }, + "start_col": 5, + "start_line": 131 + } + }, + "619": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.token_uri" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 64, + "end_line": 132, + "input_file": { + "filename": "src/renderers/BasicCellRenderer.cairo" + }, + "start_col": 31, + "start_line": 132 + } + }, + "621": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.token_uri" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 65, + "end_line": 132, + "input_file": { + "filename": "src/renderers/BasicCellRenderer.cairo" + }, + "start_col": 5, + "start_line": 132 + } + }, + "622": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.token_uri" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 64, + "end_line": 133, + "input_file": { + "filename": "src/renderers/BasicCellRenderer.cairo" + }, + "start_col": 31, + "start_line": 133 + } + }, + "624": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.token_uri" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 65, + "end_line": 133, + "input_file": { + "filename": "src/renderers/BasicCellRenderer.cairo" + }, + "start_col": 5, + "start_line": 133 + } + }, + "625": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.token_uri" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 64, + "end_line": 134, + "input_file": { + "filename": "src/renderers/BasicCellRenderer.cairo" + }, + "start_col": 31, + "start_line": 134 + } + }, + "627": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.token_uri" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 65, + "end_line": 134, + "input_file": { + "filename": "src/renderers/BasicCellRenderer.cairo" + }, + "start_col": 5, + "start_line": 134 + } + }, + "628": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.token_uri" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 64, + "end_line": 135, + "input_file": { + "filename": "src/renderers/BasicCellRenderer.cairo" + }, + "start_col": 31, + "start_line": 135 + } + }, + "630": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.token_uri" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 65, + "end_line": 135, + "input_file": { + "filename": "src/renderers/BasicCellRenderer.cairo" + }, + "start_col": 5, + "start_line": 135 + } + }, + "631": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.token_uri" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 64, + "end_line": 136, + "input_file": { + "filename": "src/renderers/BasicCellRenderer.cairo" + }, + "start_col": 31, + "start_line": 136 + } + }, + "633": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.token_uri" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 65, + "end_line": 136, + "input_file": { + "filename": "src/renderers/BasicCellRenderer.cairo" + }, + "start_col": 5, + "start_line": 136 + } + }, + "634": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.token_uri" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 64, + "end_line": 137, + "input_file": { + "filename": "src/renderers/BasicCellRenderer.cairo" + }, + "start_col": 31, + "start_line": 137 + } + }, + "636": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.token_uri" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 65, + "end_line": 137, + "input_file": { + "filename": "src/renderers/BasicCellRenderer.cairo" + }, + "start_col": 5, + "start_line": 137 + } + }, + "637": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.token_uri" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 64, + "end_line": 138, + "input_file": { + "filename": "src/renderers/BasicCellRenderer.cairo" + }, + "start_col": 31, + "start_line": 138 + } + }, + "639": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.token_uri" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 65, + "end_line": 138, + "input_file": { + "filename": "src/renderers/BasicCellRenderer.cairo" + }, + "start_col": 5, + "start_line": 138 + } + }, + "640": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.token_uri" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 64, + "end_line": 139, + "input_file": { + "filename": "src/renderers/BasicCellRenderer.cairo" + }, + "start_col": 31, + "start_line": 139 + } + }, + "642": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.token_uri" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 65, + "end_line": 139, + "input_file": { + "filename": "src/renderers/BasicCellRenderer.cairo" + }, + "start_col": 5, + "start_line": 139 + } + }, + "643": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.token_uri" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 65, + "end_line": 140, + "input_file": { + "filename": "src/renderers/BasicCellRenderer.cairo" + }, + "start_col": 32, + "start_line": 140 + } + }, + "645": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.token_uri" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 66, + "end_line": 140, + "input_file": { + "filename": "src/renderers/BasicCellRenderer.cairo" + }, + "start_col": 5, + "start_line": 140 + } + }, + "646": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.token_uri" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 65, + "end_line": 141, + "input_file": { + "filename": "src/renderers/BasicCellRenderer.cairo" + }, + "start_col": 32, + "start_line": 141 + } + }, + "648": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.token_uri" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 66, + "end_line": 141, + "input_file": { + "filename": "src/renderers/BasicCellRenderer.cairo" + }, + "start_col": 5, + "start_line": 141 + } + }, + "649": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.token_uri" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 65, + "end_line": 142, + "input_file": { + "filename": "src/renderers/BasicCellRenderer.cairo" + }, + "start_col": 32, + "start_line": 142 + } + }, + "651": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.token_uri" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 66, + "end_line": 142, + "input_file": { + "filename": "src/renderers/BasicCellRenderer.cairo" + }, + "start_col": 5, + "start_line": 142 + } + }, + "652": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.token_uri" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 65, + "end_line": 143, + "input_file": { + "filename": "src/renderers/BasicCellRenderer.cairo" + }, + "start_col": 32, + "start_line": 143 + } + }, + "654": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.token_uri" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 66, + "end_line": 143, + "input_file": { + "filename": "src/renderers/BasicCellRenderer.cairo" + }, + "start_col": 5, + "start_line": 143 + } + }, + "655": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.token_uri" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 65, + "end_line": 144, + "input_file": { + "filename": "src/renderers/BasicCellRenderer.cairo" + }, + "start_col": 32, + "start_line": 144 + } + }, + "657": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.token_uri" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 66, + "end_line": 144, + "input_file": { + "filename": "src/renderers/BasicCellRenderer.cairo" + }, + "start_col": 5, + "start_line": 144 + } + }, + "658": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.token_uri" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 65, + "end_line": 145, + "input_file": { + "filename": "src/renderers/BasicCellRenderer.cairo" + }, + "start_col": 32, + "start_line": 145 + } + }, + "660": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.token_uri" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 66, + "end_line": 145, + "input_file": { + "filename": "src/renderers/BasicCellRenderer.cairo" + }, + "start_col": 5, + "start_line": 145 + } + }, + "661": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.token_uri" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 65, + "end_line": 146, + "input_file": { + "filename": "src/renderers/BasicCellRenderer.cairo" + }, + "start_col": 32, + "start_line": 146 + } + }, + "663": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.token_uri" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 66, + "end_line": 146, + "input_file": { + "filename": "src/renderers/BasicCellRenderer.cairo" + }, + "start_col": 5, + "start_line": 146 + } + }, + "664": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.token_uri" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 65, + "end_line": 147, + "input_file": { + "filename": "src/renderers/BasicCellRenderer.cairo" + }, + "start_col": 32, + "start_line": 147 + } + }, + "666": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.token_uri" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 66, + "end_line": 147, + "input_file": { + "filename": "src/renderers/BasicCellRenderer.cairo" + }, + "start_col": 5, + "start_line": 147 + } + }, + "667": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.token_uri" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 65, + "end_line": 148, + "input_file": { + "filename": "src/renderers/BasicCellRenderer.cairo" + }, + "start_col": 32, + "start_line": 148 + } + }, + "669": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.token_uri" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 66, + "end_line": 148, + "input_file": { + "filename": "src/renderers/BasicCellRenderer.cairo" + }, + "start_col": 5, + "start_line": 148 + } + }, + "670": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.token_uri" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 65, + "end_line": 149, + "input_file": { + "filename": "src/renderers/BasicCellRenderer.cairo" + }, + "start_col": 32, + "start_line": 149 + } + }, + "672": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.token_uri" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 66, + "end_line": 149, + "input_file": { + "filename": "src/renderers/BasicCellRenderer.cairo" + }, + "start_col": 5, + "start_line": 149 + } + }, + "673": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.token_uri" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 65, + "end_line": 150, + "input_file": { + "filename": "src/renderers/BasicCellRenderer.cairo" + }, + "start_col": 32, + "start_line": 150 + } + }, + "675": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.token_uri" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 66, + "end_line": 150, + "input_file": { + "filename": "src/renderers/BasicCellRenderer.cairo" + }, + "start_col": 5, + "start_line": 150 + } + }, + "676": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.token_uri" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 65, + "end_line": 151, + "input_file": { + "filename": "src/renderers/BasicCellRenderer.cairo" + }, + "start_col": 32, + "start_line": 151 + } + }, + "678": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.token_uri" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 66, + "end_line": 151, + "input_file": { + "filename": "src/renderers/BasicCellRenderer.cairo" + }, + "start_col": 5, + "start_line": 151 + } + }, + "679": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.token_uri" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 65, + "end_line": 152, + "input_file": { + "filename": "src/renderers/BasicCellRenderer.cairo" + }, + "start_col": 32, + "start_line": 152 + } + }, + "681": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.token_uri" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 66, + "end_line": 152, + "input_file": { + "filename": "src/renderers/BasicCellRenderer.cairo" + }, + "start_col": 5, + "start_line": 152 + } + }, + "682": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.token_uri" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 65, + "end_line": 153, + "input_file": { + "filename": "src/renderers/BasicCellRenderer.cairo" + }, + "start_col": 32, + "start_line": 153 + } + }, + "684": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.token_uri" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 66, + "end_line": 153, + "input_file": { + "filename": "src/renderers/BasicCellRenderer.cairo" + }, + "start_col": 5, + "start_line": 153 + } + }, + "685": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.token_uri" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 65, + "end_line": 154, + "input_file": { + "filename": "src/renderers/BasicCellRenderer.cairo" + }, + "start_col": 32, + "start_line": 154 + } + }, + "687": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.token_uri" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 66, + "end_line": 154, + "input_file": { + "filename": "src/renderers/BasicCellRenderer.cairo" + }, + "start_col": 5, + "start_line": 154 + } + }, + "688": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.token_uri" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 65, + "end_line": 155, + "input_file": { + "filename": "src/renderers/BasicCellRenderer.cairo" + }, + "start_col": 32, + "start_line": 155 + } + }, + "690": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.token_uri" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 66, + "end_line": 155, + "input_file": { + "filename": "src/renderers/BasicCellRenderer.cairo" + }, + "start_col": 5, + "start_line": 155 + } + }, + "691": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.token_uri" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 65, + "end_line": 156, + "input_file": { + "filename": "src/renderers/BasicCellRenderer.cairo" + }, + "start_col": 32, + "start_line": 156 + } + }, + "693": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.token_uri" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 66, + "end_line": 156, + "input_file": { + "filename": "src/renderers/BasicCellRenderer.cairo" + }, + "start_col": 5, + "start_line": 156 + } + }, + "694": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.token_uri" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 65, + "end_line": 157, + "input_file": { + "filename": "src/renderers/BasicCellRenderer.cairo" + }, + "start_col": 32, + "start_line": 157 + } + }, + "696": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.token_uri" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 66, + "end_line": 157, + "input_file": { + "filename": "src/renderers/BasicCellRenderer.cairo" + }, + "start_col": 5, + "start_line": 157 + } + }, + "697": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.token_uri" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 65, + "end_line": 158, + "input_file": { + "filename": "src/renderers/BasicCellRenderer.cairo" + }, + "start_col": 32, + "start_line": 158 + } + }, + "699": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.token_uri" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 66, + "end_line": 158, + "input_file": { + "filename": "src/renderers/BasicCellRenderer.cairo" + }, + "start_col": 5, + "start_line": 158 + } + }, + "700": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.token_uri" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 65, + "end_line": 159, + "input_file": { + "filename": "src/renderers/BasicCellRenderer.cairo" + }, + "start_col": 32, + "start_line": 159 + } + }, + "702": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.token_uri" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 66, + "end_line": 159, + "input_file": { + "filename": "src/renderers/BasicCellRenderer.cairo" + }, + "start_col": 5, + "start_line": 159 + } + }, + "703": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.token_uri" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 65, + "end_line": 160, + "input_file": { + "filename": "src/renderers/BasicCellRenderer.cairo" + }, + "start_col": 32, + "start_line": 160 + } + }, + "705": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.token_uri" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 66, + "end_line": 160, + "input_file": { + "filename": "src/renderers/BasicCellRenderer.cairo" + }, + "start_col": 5, + "start_line": 160 + } + }, + "706": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.token_uri" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 65, + "end_line": 161, + "input_file": { + "filename": "src/renderers/BasicCellRenderer.cairo" + }, + "start_col": 32, + "start_line": 161 + } + }, + "708": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.token_uri" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 66, + "end_line": 161, + "input_file": { + "filename": "src/renderers/BasicCellRenderer.cairo" + }, + "start_col": 5, + "start_line": 161 + } + }, + "709": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.token_uri" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 65, + "end_line": 162, + "input_file": { + "filename": "src/renderers/BasicCellRenderer.cairo" + }, + "start_col": 32, + "start_line": 162 + } + }, + "711": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.token_uri" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 66, + "end_line": 162, + "input_file": { + "filename": "src/renderers/BasicCellRenderer.cairo" + }, + "start_col": 5, + "start_line": 162 + } + }, + "712": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.token_uri" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 65, + "end_line": 163, + "input_file": { + "filename": "src/renderers/BasicCellRenderer.cairo" + }, + "start_col": 32, + "start_line": 163 + } + }, + "714": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.token_uri" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 66, + "end_line": 163, + "input_file": { + "filename": "src/renderers/BasicCellRenderer.cairo" + }, + "start_col": 5, + "start_line": 163 + } + }, + "715": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.token_uri" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 65, + "end_line": 164, + "input_file": { + "filename": "src/renderers/BasicCellRenderer.cairo" + }, + "start_col": 32, + "start_line": 164 + } + }, + "717": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.token_uri" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 66, + "end_line": 164, + "input_file": { + "filename": "src/renderers/BasicCellRenderer.cairo" + }, + "start_col": 5, + "start_line": 164 + } + }, + "718": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.token_uri" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 65, + "end_line": 165, + "input_file": { + "filename": "src/renderers/BasicCellRenderer.cairo" + }, + "start_col": 32, + "start_line": 165 + } + }, + "720": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.token_uri" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 66, + "end_line": 165, + "input_file": { + "filename": "src/renderers/BasicCellRenderer.cairo" + }, + "start_col": 5, + "start_line": 165 + } + }, + "721": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.token_uri" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 65, + "end_line": 166, + "input_file": { + "filename": "src/renderers/BasicCellRenderer.cairo" + }, + "start_col": 32, + "start_line": 166 + } + }, + "723": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.token_uri" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 66, + "end_line": 166, + "input_file": { + "filename": "src/renderers/BasicCellRenderer.cairo" + }, + "start_col": 5, + "start_line": 166 + } + }, + "724": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.token_uri" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 65, + "end_line": 167, + "input_file": { + "filename": "src/renderers/BasicCellRenderer.cairo" + }, + "start_col": 32, + "start_line": 167 + } + }, + "726": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.token_uri" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 66, + "end_line": 167, + "input_file": { + "filename": "src/renderers/BasicCellRenderer.cairo" + }, + "start_col": 5, + "start_line": 167 + } + }, + "727": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.token_uri" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 65, + "end_line": 168, + "input_file": { + "filename": "src/renderers/BasicCellRenderer.cairo" + }, + "start_col": 32, + "start_line": 168 + } + }, + "729": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.token_uri" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 66, + "end_line": 168, + "input_file": { + "filename": "src/renderers/BasicCellRenderer.cairo" + }, + "start_col": 5, + "start_line": 168 + } + }, + "730": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.token_uri" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 65, + "end_line": 169, + "input_file": { + "filename": "src/renderers/BasicCellRenderer.cairo" + }, + "start_col": 32, + "start_line": 169 + } + }, + "732": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.token_uri" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 66, + "end_line": 169, + "input_file": { + "filename": "src/renderers/BasicCellRenderer.cairo" + }, + "start_col": 5, + "start_line": 169 + } + }, + "733": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.token_uri" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 65, + "end_line": 170, + "input_file": { + "filename": "src/renderers/BasicCellRenderer.cairo" + }, + "start_col": 32, + "start_line": 170 + } + }, + "735": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.token_uri" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 66, + "end_line": 170, + "input_file": { + "filename": "src/renderers/BasicCellRenderer.cairo" + }, + "start_col": 5, + "start_line": 170 + } + }, + "736": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.token_uri" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 65, + "end_line": 171, + "input_file": { + "filename": "src/renderers/BasicCellRenderer.cairo" + }, + "start_col": 32, + "start_line": 171 + } + }, + "738": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.token_uri" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 66, + "end_line": 171, + "input_file": { + "filename": "src/renderers/BasicCellRenderer.cairo" + }, + "start_col": 5, + "start_line": 171 + } + }, + "739": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.token_uri" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 65, + "end_line": 172, + "input_file": { + "filename": "src/renderers/BasicCellRenderer.cairo" + }, + "start_col": 32, + "start_line": 172 + } + }, + "741": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.token_uri" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 66, + "end_line": 172, + "input_file": { + "filename": "src/renderers/BasicCellRenderer.cairo" + }, + "start_col": 5, + "start_line": 172 + } + }, + "742": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.token_uri" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 65, + "end_line": 173, + "input_file": { + "filename": "src/renderers/BasicCellRenderer.cairo" + }, + "start_col": 32, + "start_line": 173 + } + }, + "744": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.token_uri" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 66, + "end_line": 173, + "input_file": { + "filename": "src/renderers/BasicCellRenderer.cairo" + }, + "start_col": 5, + "start_line": 173 + } + }, + "745": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.token_uri" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 65, + "end_line": 174, + "input_file": { + "filename": "src/renderers/BasicCellRenderer.cairo" + }, + "start_col": 32, + "start_line": 174 + } + }, + "747": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.token_uri" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 66, + "end_line": 174, + "input_file": { + "filename": "src/renderers/BasicCellRenderer.cairo" + }, + "start_col": 5, + "start_line": 174 + } + }, + "748": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.token_uri" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 65, + "end_line": 175, + "input_file": { + "filename": "src/renderers/BasicCellRenderer.cairo" + }, + "start_col": 32, + "start_line": 175 + } + }, + "750": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.token_uri" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 66, + "end_line": 175, + "input_file": { + "filename": "src/renderers/BasicCellRenderer.cairo" + }, + "start_col": 5, + "start_line": 175 + } + }, + "751": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.token_uri" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 65, + "end_line": 176, + "input_file": { + "filename": "src/renderers/BasicCellRenderer.cairo" + }, + "start_col": 32, + "start_line": 176 + } + }, + "753": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.token_uri" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 66, + "end_line": 176, + "input_file": { + "filename": "src/renderers/BasicCellRenderer.cairo" + }, + "start_col": 5, + "start_line": 176 + } + }, + "754": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.token_uri" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 65, + "end_line": 177, + "input_file": { + "filename": "src/renderers/BasicCellRenderer.cairo" + }, + "start_col": 32, + "start_line": 177 + } + }, + "756": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.token_uri" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 66, + "end_line": 177, + "input_file": { + "filename": "src/renderers/BasicCellRenderer.cairo" + }, + "start_col": 5, + "start_line": 177 + } + }, + "757": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.token_uri" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 65, + "end_line": 178, + "input_file": { + "filename": "src/renderers/BasicCellRenderer.cairo" + }, + "start_col": 32, + "start_line": 178 + } + }, + "759": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.token_uri" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 66, + "end_line": 178, + "input_file": { + "filename": "src/renderers/BasicCellRenderer.cairo" + }, + "start_col": 5, + "start_line": 178 + } + }, + "760": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.token_uri" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 65, + "end_line": 179, + "input_file": { + "filename": "src/renderers/BasicCellRenderer.cairo" + }, + "start_col": 32, + "start_line": 179 + } + }, + "762": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.token_uri" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 66, + "end_line": 179, + "input_file": { + "filename": "src/renderers/BasicCellRenderer.cairo" + }, + "start_col": 5, + "start_line": 179 + } + }, + "763": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.token_uri" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 65, + "end_line": 180, + "input_file": { + "filename": "src/renderers/BasicCellRenderer.cairo" + }, + "start_col": 32, + "start_line": 180 + } + }, + "765": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.token_uri" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 66, + "end_line": 180, + "input_file": { + "filename": "src/renderers/BasicCellRenderer.cairo" + }, + "start_col": 5, + "start_line": 180 + } + }, + "766": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.token_uri" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 65, + "end_line": 181, + "input_file": { + "filename": "src/renderers/BasicCellRenderer.cairo" + }, + "start_col": 32, + "start_line": 181 + } + }, + "768": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.token_uri" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 66, + "end_line": 181, + "input_file": { + "filename": "src/renderers/BasicCellRenderer.cairo" + }, + "start_col": 5, + "start_line": 181 + } + }, + "769": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.token_uri" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 65, + "end_line": 182, + "input_file": { + "filename": "src/renderers/BasicCellRenderer.cairo" + }, + "start_col": 32, + "start_line": 182 + } + }, + "771": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.token_uri" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 66, + "end_line": 182, + "input_file": { + "filename": "src/renderers/BasicCellRenderer.cairo" + }, + "start_col": 5, + "start_line": 182 + } + }, + "772": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.token_uri" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 65, + "end_line": 183, + "input_file": { + "filename": "src/renderers/BasicCellRenderer.cairo" + }, + "start_col": 32, + "start_line": 183 + } + }, + "774": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.token_uri" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 66, + "end_line": 183, + "input_file": { + "filename": "src/renderers/BasicCellRenderer.cairo" + }, + "start_col": 5, + "start_line": 183 + } + }, + "775": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.token_uri" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 65, + "end_line": 184, + "input_file": { + "filename": "src/renderers/BasicCellRenderer.cairo" + }, + "start_col": 32, + "start_line": 184 + } + }, + "777": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.token_uri" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 66, + "end_line": 184, + "input_file": { + "filename": "src/renderers/BasicCellRenderer.cairo" + }, + "start_col": 5, + "start_line": 184 + } + }, + "778": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.token_uri" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 65, + "end_line": 185, + "input_file": { + "filename": "src/renderers/BasicCellRenderer.cairo" + }, + "start_col": 32, + "start_line": 185 + } + }, + "780": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.token_uri" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 66, + "end_line": 185, + "input_file": { + "filename": "src/renderers/BasicCellRenderer.cairo" + }, + "start_col": 5, + "start_line": 185 + } + }, + "781": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.token_uri" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 65, + "end_line": 186, + "input_file": { + "filename": "src/renderers/BasicCellRenderer.cairo" + }, + "start_col": 32, + "start_line": 186 + } + }, + "783": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.token_uri" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 66, + "end_line": 186, + "input_file": { + "filename": "src/renderers/BasicCellRenderer.cairo" + }, + "start_col": 5, + "start_line": 186 + } + }, + "784": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.token_uri" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 65, + "end_line": 187, + "input_file": { + "filename": "src/renderers/BasicCellRenderer.cairo" + }, + "start_col": 32, + "start_line": 187 + } + }, + "786": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.token_uri" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 66, + "end_line": 187, + "input_file": { + "filename": "src/renderers/BasicCellRenderer.cairo" + }, + "start_col": 5, + "start_line": 187 + } + }, + "787": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.token_uri" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 65, + "end_line": 188, + "input_file": { + "filename": "src/renderers/BasicCellRenderer.cairo" + }, + "start_col": 32, + "start_line": 188 + } + }, + "789": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.token_uri" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 66, + "end_line": 188, + "input_file": { + "filename": "src/renderers/BasicCellRenderer.cairo" + }, + "start_col": 5, + "start_line": 188 + } + }, + "790": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.token_uri" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 65, + "end_line": 189, + "input_file": { + "filename": "src/renderers/BasicCellRenderer.cairo" + }, + "start_col": 32, + "start_line": 189 + } + }, + "792": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.token_uri" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 66, + "end_line": 189, + "input_file": { + "filename": "src/renderers/BasicCellRenderer.cairo" + }, + "start_col": 5, + "start_line": 189 + } + }, + "793": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.token_uri" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 65, + "end_line": 190, + "input_file": { + "filename": "src/renderers/BasicCellRenderer.cairo" + }, + "start_col": 32, + "start_line": 190 + } + }, + "795": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.token_uri" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 66, + "end_line": 190, + "input_file": { + "filename": "src/renderers/BasicCellRenderer.cairo" + }, + "start_col": 5, + "start_line": 190 + } + }, + "796": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.token_uri" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 65, + "end_line": 191, + "input_file": { + "filename": "src/renderers/BasicCellRenderer.cairo" + }, + "start_col": 32, + "start_line": 191 + } + }, + "798": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.token_uri" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 66, + "end_line": 191, + "input_file": { + "filename": "src/renderers/BasicCellRenderer.cairo" + }, + "start_col": 5, + "start_line": 191 + } + }, + "799": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.token_uri" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 65, + "end_line": 192, + "input_file": { + "filename": "src/renderers/BasicCellRenderer.cairo" + }, + "start_col": 32, + "start_line": 192 + } + }, + "801": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.token_uri" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 66, + "end_line": 192, + "input_file": { + "filename": "src/renderers/BasicCellRenderer.cairo" + }, + "start_col": 5, + "start_line": 192 + } + }, + "802": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.token_uri" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 65, + "end_line": 193, + "input_file": { + "filename": "src/renderers/BasicCellRenderer.cairo" + }, + "start_col": 32, + "start_line": 193 + } + }, + "804": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.token_uri" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 66, + "end_line": 193, + "input_file": { + "filename": "src/renderers/BasicCellRenderer.cairo" + }, + "start_col": 5, + "start_line": 193 + } + }, + "805": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.token_uri" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 65, + "end_line": 194, + "input_file": { + "filename": "src/renderers/BasicCellRenderer.cairo" + }, + "start_col": 32, + "start_line": 194 + } + }, + "807": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.token_uri" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 66, + "end_line": 194, + "input_file": { + "filename": "src/renderers/BasicCellRenderer.cairo" + }, + "start_col": 5, + "start_line": 194 + } + }, + "808": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.token_uri" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 65, + "end_line": 195, + "input_file": { + "filename": "src/renderers/BasicCellRenderer.cairo" + }, + "start_col": 32, + "start_line": 195 + } + }, + "810": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.token_uri" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 66, + "end_line": 195, + "input_file": { + "filename": "src/renderers/BasicCellRenderer.cairo" + }, + "start_col": 5, + "start_line": 195 + } + }, + "811": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.token_uri" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 65, + "end_line": 196, + "input_file": { + "filename": "src/renderers/BasicCellRenderer.cairo" + }, + "start_col": 32, + "start_line": 196 + } + }, + "813": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.token_uri" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 66, + "end_line": 196, + "input_file": { + "filename": "src/renderers/BasicCellRenderer.cairo" + }, + "start_col": 5, + "start_line": 196 + } + }, + "814": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.token_uri" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 65, + "end_line": 197, + "input_file": { + "filename": "src/renderers/BasicCellRenderer.cairo" + }, + "start_col": 32, + "start_line": 197 + } + }, + "816": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.token_uri" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 66, + "end_line": 197, + "input_file": { + "filename": "src/renderers/BasicCellRenderer.cairo" + }, + "start_col": 5, + "start_line": 197 + } + }, + "817": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.token_uri" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 65, + "end_line": 198, + "input_file": { + "filename": "src/renderers/BasicCellRenderer.cairo" + }, + "start_col": 32, + "start_line": 198 + } + }, + "819": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.token_uri" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 66, + "end_line": 198, + "input_file": { + "filename": "src/renderers/BasicCellRenderer.cairo" + }, + "start_col": 5, + "start_line": 198 + } + }, + "820": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.token_uri" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 65, + "end_line": 199, + "input_file": { + "filename": "src/renderers/BasicCellRenderer.cairo" + }, + "start_col": 32, + "start_line": 199 + } + }, + "822": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.token_uri" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 66, + "end_line": 199, + "input_file": { + "filename": "src/renderers/BasicCellRenderer.cairo" + }, + "start_col": 5, + "start_line": 199 + } + }, + "823": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.token_uri" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 65, + "end_line": 200, + "input_file": { + "filename": "src/renderers/BasicCellRenderer.cairo" + }, + "start_col": 32, + "start_line": 200 + } + }, + "825": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.token_uri" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 66, + "end_line": 200, + "input_file": { + "filename": "src/renderers/BasicCellRenderer.cairo" + }, + "start_col": 5, + "start_line": 200 + } + }, + "826": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.token_uri" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 65, + "end_line": 201, + "input_file": { + "filename": "src/renderers/BasicCellRenderer.cairo" + }, + "start_col": 32, + "start_line": 201 + } + }, + "828": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.token_uri" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 66, + "end_line": 201, + "input_file": { + "filename": "src/renderers/BasicCellRenderer.cairo" + }, + "start_col": 5, + "start_line": 201 + } + }, + "829": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.token_uri" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 65, + "end_line": 202, + "input_file": { + "filename": "src/renderers/BasicCellRenderer.cairo" + }, + "start_col": 32, + "start_line": 202 + } + }, + "831": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.token_uri" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 66, + "end_line": 202, + "input_file": { + "filename": "src/renderers/BasicCellRenderer.cairo" + }, + "start_col": 5, + "start_line": 202 + } + }, + "832": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.token_uri" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 65, + "end_line": 203, + "input_file": { + "filename": "src/renderers/BasicCellRenderer.cairo" + }, + "start_col": 32, + "start_line": 203 + } + }, + "834": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.token_uri" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 66, + "end_line": 203, + "input_file": { + "filename": "src/renderers/BasicCellRenderer.cairo" + }, + "start_col": 5, + "start_line": 203 + } + }, + "835": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.token_uri" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 65, + "end_line": 204, + "input_file": { + "filename": "src/renderers/BasicCellRenderer.cairo" + }, + "start_col": 32, + "start_line": 204 + } + }, + "837": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.token_uri" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 66, + "end_line": 204, + "input_file": { + "filename": "src/renderers/BasicCellRenderer.cairo" + }, + "start_col": 5, + "start_line": 204 + } + }, + "838": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.token_uri" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 65, + "end_line": 205, + "input_file": { + "filename": "src/renderers/BasicCellRenderer.cairo" + }, + "start_col": 32, + "start_line": 205 + } + }, + "840": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.token_uri" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 66, + "end_line": 205, + "input_file": { + "filename": "src/renderers/BasicCellRenderer.cairo" + }, + "start_col": 5, + "start_line": 205 + } + }, + "841": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.token_uri" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 65, + "end_line": 206, + "input_file": { + "filename": "src/renderers/BasicCellRenderer.cairo" + }, + "start_col": 32, + "start_line": 206 + } + }, + "843": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.token_uri" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 66, + "end_line": 206, + "input_file": { + "filename": "src/renderers/BasicCellRenderer.cairo" + }, + "start_col": 5, + "start_line": 206 + } + }, + "844": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.token_uri" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 65, + "end_line": 207, + "input_file": { + "filename": "src/renderers/BasicCellRenderer.cairo" + }, + "start_col": 32, + "start_line": 207 + } + }, + "846": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.token_uri" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 66, + "end_line": 207, + "input_file": { + "filename": "src/renderers/BasicCellRenderer.cairo" + }, + "start_col": 5, + "start_line": 207 + } + }, + "847": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.token_uri" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 65, + "end_line": 208, + "input_file": { + "filename": "src/renderers/BasicCellRenderer.cairo" + }, + "start_col": 32, + "start_line": 208 + } + }, + "849": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.token_uri" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 66, + "end_line": 208, + "input_file": { + "filename": "src/renderers/BasicCellRenderer.cairo" + }, + "start_col": 5, + "start_line": 208 + } + }, + "850": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.token_uri" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 65, + "end_line": 209, + "input_file": { + "filename": "src/renderers/BasicCellRenderer.cairo" + }, + "start_col": 32, + "start_line": 209 + } + }, + "852": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.token_uri" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 66, + "end_line": 209, + "input_file": { + "filename": "src/renderers/BasicCellRenderer.cairo" + }, + "start_col": 5, + "start_line": 209 + } + }, + "853": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.token_uri" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 65, + "end_line": 210, + "input_file": { + "filename": "src/renderers/BasicCellRenderer.cairo" + }, + "start_col": 32, + "start_line": 210 + } + }, + "855": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.token_uri" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 66, + "end_line": 210, + "input_file": { + "filename": "src/renderers/BasicCellRenderer.cairo" + }, + "start_col": 5, + "start_line": 210 + } + }, + "856": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.token_uri" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 65, + "end_line": 211, + "input_file": { + "filename": "src/renderers/BasicCellRenderer.cairo" + }, + "start_col": 32, + "start_line": 211 + } + }, + "858": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.token_uri" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 66, + "end_line": 211, + "input_file": { + "filename": "src/renderers/BasicCellRenderer.cairo" + }, + "start_col": 5, + "start_line": 211 + } + }, + "859": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.token_uri" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 65, + "end_line": 212, + "input_file": { + "filename": "src/renderers/BasicCellRenderer.cairo" + }, + "start_col": 32, + "start_line": 212 + } + }, + "861": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.token_uri" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 66, + "end_line": 212, + "input_file": { + "filename": "src/renderers/BasicCellRenderer.cairo" + }, + "start_col": 5, + "start_line": 212 + } + }, + "862": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.token_uri" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 65, + "end_line": 213, + "input_file": { + "filename": "src/renderers/BasicCellRenderer.cairo" + }, + "start_col": 32, + "start_line": 213 + } + }, + "864": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.token_uri" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 66, + "end_line": 213, + "input_file": { + "filename": "src/renderers/BasicCellRenderer.cairo" + }, + "start_col": 5, + "start_line": 213 + } + }, + "865": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.token_uri" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 65, + "end_line": 214, + "input_file": { + "filename": "src/renderers/BasicCellRenderer.cairo" + }, + "start_col": 32, + "start_line": 214 + } + }, + "867": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.token_uri" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 66, + "end_line": 214, + "input_file": { + "filename": "src/renderers/BasicCellRenderer.cairo" + }, + "start_col": 5, + "start_line": 214 + } + }, + "868": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.token_uri" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 65, + "end_line": 215, + "input_file": { + "filename": "src/renderers/BasicCellRenderer.cairo" + }, + "start_col": 32, + "start_line": 215 + } + }, + "870": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.token_uri" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 66, + "end_line": 215, + "input_file": { + "filename": "src/renderers/BasicCellRenderer.cairo" + }, + "start_col": 5, + "start_line": 215 + } + }, + "871": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.token_uri" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 65, + "end_line": 216, + "input_file": { + "filename": "src/renderers/BasicCellRenderer.cairo" + }, + "start_col": 32, + "start_line": 216 + } + }, + "873": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.token_uri" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 66, + "end_line": 216, + "input_file": { + "filename": "src/renderers/BasicCellRenderer.cairo" + }, + "start_col": 5, + "start_line": 216 + } + }, + "874": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.token_uri" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 65, + "end_line": 217, + "input_file": { + "filename": "src/renderers/BasicCellRenderer.cairo" + }, + "start_col": 32, + "start_line": 217 + } + }, + "876": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.token_uri" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 66, + "end_line": 217, + "input_file": { + "filename": "src/renderers/BasicCellRenderer.cairo" + }, + "start_col": 5, + "start_line": 217 + } + }, + "877": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.token_uri" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 65, + "end_line": 218, + "input_file": { + "filename": "src/renderers/BasicCellRenderer.cairo" + }, + "start_col": 32, + "start_line": 218 + } + }, + "879": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.token_uri" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 66, + "end_line": 218, + "input_file": { + "filename": "src/renderers/BasicCellRenderer.cairo" + }, + "start_col": 5, + "start_line": 218 + } + }, + "880": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.token_uri" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 65, + "end_line": 219, + "input_file": { + "filename": "src/renderers/BasicCellRenderer.cairo" + }, + "start_col": 32, + "start_line": 219 + } + }, + "882": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.token_uri" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 66, + "end_line": 219, + "input_file": { + "filename": "src/renderers/BasicCellRenderer.cairo" + }, + "start_col": 5, + "start_line": 219 + } + }, + "883": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.token_uri" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 65, + "end_line": 220, + "input_file": { + "filename": "src/renderers/BasicCellRenderer.cairo" + }, + "start_col": 32, + "start_line": 220 + } + }, + "885": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.token_uri" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 66, + "end_line": 220, + "input_file": { + "filename": "src/renderers/BasicCellRenderer.cairo" + }, + "start_col": 5, + "start_line": 220 + } + }, + "886": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.token_uri" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 65, + "end_line": 221, + "input_file": { + "filename": "src/renderers/BasicCellRenderer.cairo" + }, + "start_col": 32, + "start_line": 221 + } + }, + "888": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.token_uri" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 66, + "end_line": 221, + "input_file": { + "filename": "src/renderers/BasicCellRenderer.cairo" + }, + "start_col": 5, + "start_line": 221 + } + }, + "889": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.token_uri" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 65, + "end_line": 222, + "input_file": { + "filename": "src/renderers/BasicCellRenderer.cairo" + }, + "start_col": 32, + "start_line": 222 + } + }, + "891": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.token_uri" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 66, + "end_line": 222, + "input_file": { + "filename": "src/renderers/BasicCellRenderer.cairo" + }, + "start_col": 5, + "start_line": 222 + } + }, + "892": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.token_uri" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 65, + "end_line": 223, + "input_file": { + "filename": "src/renderers/BasicCellRenderer.cairo" + }, + "start_col": 32, + "start_line": 223 + } + }, + "894": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.token_uri" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 66, + "end_line": 223, + "input_file": { + "filename": "src/renderers/BasicCellRenderer.cairo" + }, + "start_col": 5, + "start_line": 223 + } + }, + "895": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.token_uri" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 65, + "end_line": 224, + "input_file": { + "filename": "src/renderers/BasicCellRenderer.cairo" + }, + "start_col": 32, + "start_line": 224 + } + }, + "897": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.token_uri" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 66, + "end_line": 224, + "input_file": { + "filename": "src/renderers/BasicCellRenderer.cairo" + }, + "start_col": 5, + "start_line": 224 + } + }, + "898": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.token_uri" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 65, + "end_line": 225, + "input_file": { + "filename": "src/renderers/BasicCellRenderer.cairo" + }, + "start_col": 32, + "start_line": 225 + } + }, + "900": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.token_uri" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 66, + "end_line": 225, + "input_file": { + "filename": "src/renderers/BasicCellRenderer.cairo" + }, + "start_col": 5, + "start_line": 225 + } + }, + "901": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.token_uri" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 65, + "end_line": 226, + "input_file": { + "filename": "src/renderers/BasicCellRenderer.cairo" + }, + "start_col": 32, + "start_line": 226 + } + }, + "903": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.token_uri" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 66, + "end_line": 226, + "input_file": { + "filename": "src/renderers/BasicCellRenderer.cairo" + }, + "start_col": 5, + "start_line": 226 + } + }, + "904": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.token_uri" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 65, + "end_line": 227, + "input_file": { + "filename": "src/renderers/BasicCellRenderer.cairo" + }, + "start_col": 32, + "start_line": 227 + } + }, + "906": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.token_uri" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 66, + "end_line": 227, + "input_file": { + "filename": "src/renderers/BasicCellRenderer.cairo" + }, + "start_col": 5, + "start_line": 227 + } + }, + "907": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.token_uri" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 65, + "end_line": 228, + "input_file": { + "filename": "src/renderers/BasicCellRenderer.cairo" + }, + "start_col": 32, + "start_line": 228 + } + }, + "909": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.token_uri" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 66, + "end_line": 228, + "input_file": { + "filename": "src/renderers/BasicCellRenderer.cairo" + }, + "start_col": 5, + "start_line": 228 + } + }, + "910": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.token_uri" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 65, + "end_line": 229, + "input_file": { + "filename": "src/renderers/BasicCellRenderer.cairo" + }, + "start_col": 32, + "start_line": 229 + } + }, + "912": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.token_uri" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 66, + "end_line": 229, + "input_file": { + "filename": "src/renderers/BasicCellRenderer.cairo" + }, + "start_col": 5, + "start_line": 229 + } + }, + "913": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.token_uri" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 65, + "end_line": 230, + "input_file": { + "filename": "src/renderers/BasicCellRenderer.cairo" + }, + "start_col": 32, + "start_line": 230 + } + }, + "915": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.token_uri" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 66, + "end_line": 230, + "input_file": { + "filename": "src/renderers/BasicCellRenderer.cairo" + }, + "start_col": 5, + "start_line": 230 + } + }, + "916": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.token_uri" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 65, + "end_line": 231, + "input_file": { + "filename": "src/renderers/BasicCellRenderer.cairo" + }, + "start_col": 32, + "start_line": 231 + } + }, + "918": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.token_uri" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 66, + "end_line": 231, + "input_file": { + "filename": "src/renderers/BasicCellRenderer.cairo" + }, + "start_col": 5, + "start_line": 231 + } + }, + "919": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.token_uri" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 65, + "end_line": 232, + "input_file": { + "filename": "src/renderers/BasicCellRenderer.cairo" + }, + "start_col": 32, + "start_line": 232 + } + }, + "921": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.token_uri" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 66, + "end_line": 232, + "input_file": { + "filename": "src/renderers/BasicCellRenderer.cairo" + }, + "start_col": 5, + "start_line": 232 + } + }, + "922": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.token_uri" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 65, + "end_line": 233, + "input_file": { + "filename": "src/renderers/BasicCellRenderer.cairo" + }, + "start_col": 32, + "start_line": 233 + } + }, + "924": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.token_uri" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 66, + "end_line": 233, + "input_file": { + "filename": "src/renderers/BasicCellRenderer.cairo" + }, + "start_col": 5, + "start_line": 233 + } + }, + "925": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.token_uri" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 65, + "end_line": 234, + "input_file": { + "filename": "src/renderers/BasicCellRenderer.cairo" + }, + "start_col": 32, + "start_line": 234 + } + }, + "927": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.token_uri" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 66, + "end_line": 234, + "input_file": { + "filename": "src/renderers/BasicCellRenderer.cairo" + }, + "start_col": 5, + "start_line": 234 + } + }, + "928": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.token_uri" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 65, + "end_line": 235, + "input_file": { + "filename": "src/renderers/BasicCellRenderer.cairo" + }, + "start_col": 32, + "start_line": 235 + } + }, + "930": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.token_uri" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 66, + "end_line": 235, + "input_file": { + "filename": "src/renderers/BasicCellRenderer.cairo" + }, + "start_col": 5, + "start_line": 235 + } + }, + "931": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.token_uri" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 65, + "end_line": 236, + "input_file": { + "filename": "src/renderers/BasicCellRenderer.cairo" + }, + "start_col": 32, + "start_line": 236 + } + }, + "933": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.token_uri" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 66, + "end_line": 236, + "input_file": { + "filename": "src/renderers/BasicCellRenderer.cairo" + }, + "start_col": 5, + "start_line": 236 + } + }, + "934": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.token_uri" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 65, + "end_line": 237, + "input_file": { + "filename": "src/renderers/BasicCellRenderer.cairo" + }, + "start_col": 32, + "start_line": 237 + } + }, + "936": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.token_uri" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 66, + "end_line": 237, + "input_file": { + "filename": "src/renderers/BasicCellRenderer.cairo" + }, + "start_col": 5, + "start_line": 237 + } + }, + "937": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.token_uri" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 65, + "end_line": 238, + "input_file": { + "filename": "src/renderers/BasicCellRenderer.cairo" + }, + "start_col": 32, + "start_line": 238 + } + }, + "939": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.token_uri" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 66, + "end_line": 238, + "input_file": { + "filename": "src/renderers/BasicCellRenderer.cairo" + }, + "start_col": 5, + "start_line": 238 + } + }, + "940": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.token_uri" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 65, + "end_line": 239, + "input_file": { + "filename": "src/renderers/BasicCellRenderer.cairo" + }, + "start_col": 32, + "start_line": 239 + } + }, + "942": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.token_uri" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 66, + "end_line": 239, + "input_file": { + "filename": "src/renderers/BasicCellRenderer.cairo" + }, + "start_col": 5, + "start_line": 239 + } + }, + "943": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.token_uri" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 65, + "end_line": 240, + "input_file": { + "filename": "src/renderers/BasicCellRenderer.cairo" + }, + "start_col": 32, + "start_line": 240 + } + }, + "945": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.token_uri" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 66, + "end_line": 240, + "input_file": { + "filename": "src/renderers/BasicCellRenderer.cairo" + }, + "start_col": 5, + "start_line": 240 + } + }, + "946": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.token_uri" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 65, + "end_line": 241, + "input_file": { + "filename": "src/renderers/BasicCellRenderer.cairo" + }, + "start_col": 32, + "start_line": 241 + } + }, + "948": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.token_uri" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 66, + "end_line": 241, + "input_file": { + "filename": "src/renderers/BasicCellRenderer.cairo" + }, + "start_col": 5, + "start_line": 241 + } + }, + "949": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.token_uri" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 65, + "end_line": 242, + "input_file": { + "filename": "src/renderers/BasicCellRenderer.cairo" + }, + "start_col": 32, + "start_line": 242 + } + }, + "951": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.token_uri" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 66, + "end_line": 242, + "input_file": { + "filename": "src/renderers/BasicCellRenderer.cairo" + }, + "start_col": 5, + "start_line": 242 + } + }, + "952": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.token_uri" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 65, + "end_line": 243, + "input_file": { + "filename": "src/renderers/BasicCellRenderer.cairo" + }, + "start_col": 32, + "start_line": 243 + } + }, + "954": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.token_uri" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 66, + "end_line": 243, + "input_file": { + "filename": "src/renderers/BasicCellRenderer.cairo" + }, + "start_col": 5, + "start_line": 243 + } + }, + "955": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.token_uri" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 65, + "end_line": 244, + "input_file": { + "filename": "src/renderers/BasicCellRenderer.cairo" + }, + "start_col": 32, + "start_line": 244 + } + }, + "957": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.token_uri" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 66, + "end_line": 244, + "input_file": { + "filename": "src/renderers/BasicCellRenderer.cairo" + }, + "start_col": 5, + "start_line": 244 + } + }, + "958": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.token_uri" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 65, + "end_line": 245, + "input_file": { + "filename": "src/renderers/BasicCellRenderer.cairo" + }, + "start_col": 32, + "start_line": 245 + } + }, + "960": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.token_uri" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 66, + "end_line": 245, + "input_file": { + "filename": "src/renderers/BasicCellRenderer.cairo" + }, + "start_col": 5, + "start_line": 245 + } + }, + "961": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.token_uri" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 65, + "end_line": 246, + "input_file": { + "filename": "src/renderers/BasicCellRenderer.cairo" + }, + "start_col": 32, + "start_line": 246 + } + }, + "963": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.token_uri" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 66, + "end_line": 246, + "input_file": { + "filename": "src/renderers/BasicCellRenderer.cairo" + }, + "start_col": 5, + "start_line": 246 + } + }, + "964": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.token_uri" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 65, + "end_line": 247, + "input_file": { + "filename": "src/renderers/BasicCellRenderer.cairo" + }, + "start_col": 32, + "start_line": 247 + } + }, + "966": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.token_uri" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 66, + "end_line": 247, + "input_file": { + "filename": "src/renderers/BasicCellRenderer.cairo" + }, + "start_col": 5, + "start_line": 247 + } + }, + "967": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.token_uri" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 65, + "end_line": 248, + "input_file": { + "filename": "src/renderers/BasicCellRenderer.cairo" + }, + "start_col": 32, + "start_line": 248 + } + }, + "969": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.token_uri" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 66, + "end_line": 248, + "input_file": { + "filename": "src/renderers/BasicCellRenderer.cairo" + }, + "start_col": 5, + "start_line": 248 + } + }, + "970": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.token_uri" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 65, + "end_line": 249, + "input_file": { + "filename": "src/renderers/BasicCellRenderer.cairo" + }, + "start_col": 32, + "start_line": 249 + } + }, + "972": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.token_uri" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 66, + "end_line": 249, + "input_file": { + "filename": "src/renderers/BasicCellRenderer.cairo" + }, + "start_col": 5, + "start_line": 249 + } + }, + "973": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.token_uri" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 65, + "end_line": 250, + "input_file": { + "filename": "src/renderers/BasicCellRenderer.cairo" + }, + "start_col": 32, + "start_line": 250 + } + }, + "975": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.token_uri" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 66, + "end_line": 250, + "input_file": { + "filename": "src/renderers/BasicCellRenderer.cairo" + }, + "start_col": 5, + "start_line": 250 + } + }, + "976": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.token_uri" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 65, + "end_line": 251, + "input_file": { + "filename": "src/renderers/BasicCellRenderer.cairo" + }, + "start_col": 32, + "start_line": 251 + } + }, + "978": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.token_uri" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 66, + "end_line": 251, + "input_file": { + "filename": "src/renderers/BasicCellRenderer.cairo" + }, + "start_col": 5, + "start_line": 251 + } + }, + "979": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.token_uri" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 65, + "end_line": 252, + "input_file": { + "filename": "src/renderers/BasicCellRenderer.cairo" + }, + "start_col": 32, + "start_line": 252 + } + }, + "981": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.token_uri" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 66, + "end_line": 252, + "input_file": { + "filename": "src/renderers/BasicCellRenderer.cairo" + }, + "start_col": 5, + "start_line": 252 + } + }, + "982": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.token_uri" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 65, + "end_line": 253, + "input_file": { + "filename": "src/renderers/BasicCellRenderer.cairo" + }, + "start_col": 32, + "start_line": 253 + } + }, + "984": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.token_uri" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 66, + "end_line": 253, + "input_file": { + "filename": "src/renderers/BasicCellRenderer.cairo" + }, + "start_col": 5, + "start_line": 253 + } + }, + "985": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.token_uri" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 65, + "end_line": 254, + "input_file": { + "filename": "src/renderers/BasicCellRenderer.cairo" + }, + "start_col": 32, + "start_line": 254 + } + }, + "987": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.token_uri" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 66, + "end_line": 254, + "input_file": { + "filename": "src/renderers/BasicCellRenderer.cairo" + }, + "start_col": 5, + "start_line": 254 + } + }, + "988": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.token_uri" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 65, + "end_line": 255, + "input_file": { + "filename": "src/renderers/BasicCellRenderer.cairo" + }, + "start_col": 32, + "start_line": 255 + } + }, + "990": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.token_uri" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 66, + "end_line": 255, + "input_file": { + "filename": "src/renderers/BasicCellRenderer.cairo" + }, + "start_col": 5, + "start_line": 255 + } + }, + "991": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.token_uri" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 65, + "end_line": 256, + "input_file": { + "filename": "src/renderers/BasicCellRenderer.cairo" + }, + "start_col": 32, + "start_line": 256 + } + }, + "993": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.token_uri" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 66, + "end_line": 256, + "input_file": { + "filename": "src/renderers/BasicCellRenderer.cairo" + }, + "start_col": 5, + "start_line": 256 + } + }, + "994": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.token_uri" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 65, + "end_line": 257, + "input_file": { + "filename": "src/renderers/BasicCellRenderer.cairo" + }, + "start_col": 32, + "start_line": 257 + } + }, + "996": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.token_uri" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 66, + "end_line": 257, + "input_file": { + "filename": "src/renderers/BasicCellRenderer.cairo" + }, + "start_col": 5, + "start_line": 257 + } + }, + "997": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.token_uri" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 65, + "end_line": 258, + "input_file": { + "filename": "src/renderers/BasicCellRenderer.cairo" + }, + "start_col": 32, + "start_line": 258 + } + }, + "999": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.token_uri" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 66, + "end_line": 258, + "input_file": { + "filename": "src/renderers/BasicCellRenderer.cairo" + }, + "start_col": 5, + "start_line": 258 + } + }, + "1000": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.token_uri" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 65, + "end_line": 259, + "input_file": { + "filename": "src/renderers/BasicCellRenderer.cairo" + }, + "start_col": 32, + "start_line": 259 + } + }, + "1002": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.token_uri" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 66, + "end_line": 259, + "input_file": { + "filename": "src/renderers/BasicCellRenderer.cairo" + }, + "start_col": 5, + "start_line": 259 + } + }, + "1003": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.token_uri" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 65, + "end_line": 260, + "input_file": { + "filename": "src/renderers/BasicCellRenderer.cairo" + }, + "start_col": 32, + "start_line": 260 + } + }, + "1005": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.token_uri" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 66, + "end_line": 260, + "input_file": { + "filename": "src/renderers/BasicCellRenderer.cairo" + }, + "start_col": 5, + "start_line": 260 + } + }, + "1006": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.token_uri" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 65, + "end_line": 261, + "input_file": { + "filename": "src/renderers/BasicCellRenderer.cairo" + }, + "start_col": 32, + "start_line": 261 + } + }, + "1008": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.token_uri" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 66, + "end_line": 261, + "input_file": { + "filename": "src/renderers/BasicCellRenderer.cairo" + }, + "start_col": 5, + "start_line": 261 + } + }, + "1009": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.token_uri" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 65, + "end_line": 262, + "input_file": { + "filename": "src/renderers/BasicCellRenderer.cairo" + }, + "start_col": 32, + "start_line": 262 + } + }, + "1011": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.token_uri" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 66, + "end_line": 262, + "input_file": { + "filename": "src/renderers/BasicCellRenderer.cairo" + }, + "start_col": 5, + "start_line": 262 + } + }, + "1012": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.token_uri" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 65, + "end_line": 263, + "input_file": { + "filename": "src/renderers/BasicCellRenderer.cairo" + }, + "start_col": 32, + "start_line": 263 + } + }, + "1014": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.token_uri" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 66, + "end_line": 263, + "input_file": { + "filename": "src/renderers/BasicCellRenderer.cairo" + }, + "start_col": 5, + "start_line": 263 + } + }, + "1015": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.token_uri" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 65, + "end_line": 264, + "input_file": { + "filename": "src/renderers/BasicCellRenderer.cairo" + }, + "start_col": 32, + "start_line": 264 + } + }, + "1017": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.token_uri" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 66, + "end_line": 264, + "input_file": { + "filename": "src/renderers/BasicCellRenderer.cairo" + }, + "start_col": 5, + "start_line": 264 + } + }, + "1018": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.token_uri" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 65, + "end_line": 265, + "input_file": { + "filename": "src/renderers/BasicCellRenderer.cairo" + }, + "start_col": 32, + "start_line": 265 + } + }, + "1020": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.token_uri" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 66, + "end_line": 265, + "input_file": { + "filename": "src/renderers/BasicCellRenderer.cairo" + }, + "start_col": 5, + "start_line": 265 + } + }, + "1021": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.token_uri" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 65, + "end_line": 266, + "input_file": { + "filename": "src/renderers/BasicCellRenderer.cairo" + }, + "start_col": 32, + "start_line": 266 + } + }, + "1023": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.token_uri" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 66, + "end_line": 266, + "input_file": { + "filename": "src/renderers/BasicCellRenderer.cairo" + }, + "start_col": 5, + "start_line": 266 + } + }, + "1024": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.token_uri" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 65, + "end_line": 267, + "input_file": { + "filename": "src/renderers/BasicCellRenderer.cairo" + }, + "start_col": 32, + "start_line": 267 + } + }, + "1026": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.token_uri" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 66, + "end_line": 267, + "input_file": { + "filename": "src/renderers/BasicCellRenderer.cairo" + }, + "start_col": 5, + "start_line": 267 + } + }, + "1027": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.token_uri" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 65, + "end_line": 268, + "input_file": { + "filename": "src/renderers/BasicCellRenderer.cairo" + }, + "start_col": 32, + "start_line": 268 + } + }, + "1029": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.token_uri" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 66, + "end_line": 268, + "input_file": { + "filename": "src/renderers/BasicCellRenderer.cairo" + }, + "start_col": 5, + "start_line": 268 + } + }, + "1030": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.token_uri" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 65, + "end_line": 269, + "input_file": { + "filename": "src/renderers/BasicCellRenderer.cairo" + }, + "start_col": 32, + "start_line": 269 + } + }, + "1032": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.token_uri" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 66, + "end_line": 269, + "input_file": { + "filename": "src/renderers/BasicCellRenderer.cairo" + }, + "start_col": 5, + "start_line": 269 + } + }, + "1033": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.token_uri" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 65, + "end_line": 270, + "input_file": { + "filename": "src/renderers/BasicCellRenderer.cairo" + }, + "start_col": 32, + "start_line": 270 + } + }, + "1035": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.token_uri" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 66, + "end_line": 270, + "input_file": { + "filename": "src/renderers/BasicCellRenderer.cairo" + }, + "start_col": 5, + "start_line": 270 + } + }, + "1036": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.token_uri" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 65, + "end_line": 271, + "input_file": { + "filename": "src/renderers/BasicCellRenderer.cairo" + }, + "start_col": 32, + "start_line": 271 + } + }, + "1038": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.token_uri" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 66, + "end_line": 271, + "input_file": { + "filename": "src/renderers/BasicCellRenderer.cairo" + }, + "start_col": 5, + "start_line": 271 + } + }, + "1039": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.token_uri" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 65, + "end_line": 272, + "input_file": { + "filename": "src/renderers/BasicCellRenderer.cairo" + }, + "start_col": 32, + "start_line": 272 + } + }, + "1041": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.token_uri" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 66, + "end_line": 272, + "input_file": { + "filename": "src/renderers/BasicCellRenderer.cairo" + }, + "start_col": 5, + "start_line": 272 + } + }, + "1042": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.token_uri" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 65, + "end_line": 273, + "input_file": { + "filename": "src/renderers/BasicCellRenderer.cairo" + }, + "start_col": 32, + "start_line": 273 + } + }, + "1044": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.token_uri" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 66, + "end_line": 273, + "input_file": { + "filename": "src/renderers/BasicCellRenderer.cairo" + }, + "start_col": 5, + "start_line": 273 + } + }, + "1045": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.token_uri" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 65, + "end_line": 274, + "input_file": { + "filename": "src/renderers/BasicCellRenderer.cairo" + }, + "start_col": 32, + "start_line": 274 + } + }, + "1047": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.token_uri" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 66, + "end_line": 274, + "input_file": { + "filename": "src/renderers/BasicCellRenderer.cairo" + }, + "start_col": 5, + "start_line": 274 + } + }, + "1048": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.token_uri" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 65, + "end_line": 275, + "input_file": { + "filename": "src/renderers/BasicCellRenderer.cairo" + }, + "start_col": 32, + "start_line": 275 + } + }, + "1050": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.token_uri" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 66, + "end_line": 275, + "input_file": { + "filename": "src/renderers/BasicCellRenderer.cairo" + }, + "start_col": 5, + "start_line": 275 + } + }, + "1051": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.token_uri" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 65, + "end_line": 276, + "input_file": { + "filename": "src/renderers/BasicCellRenderer.cairo" + }, + "start_col": 32, + "start_line": 276 + } + }, + "1053": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.token_uri" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 66, + "end_line": 276, + "input_file": { + "filename": "src/renderers/BasicCellRenderer.cairo" + }, + "start_col": 5, + "start_line": 276 + } + }, + "1054": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.token_uri" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 65, + "end_line": 277, + "input_file": { + "filename": "src/renderers/BasicCellRenderer.cairo" + }, + "start_col": 32, + "start_line": 277 + } + }, + "1056": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.token_uri" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 66, + "end_line": 277, + "input_file": { + "filename": "src/renderers/BasicCellRenderer.cairo" + }, + "start_col": 5, + "start_line": 277 + } + }, + "1057": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.token_uri" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 65, + "end_line": 278, + "input_file": { + "filename": "src/renderers/BasicCellRenderer.cairo" + }, + "start_col": 32, + "start_line": 278 + } + }, + "1059": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.token_uri" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 66, + "end_line": 278, + "input_file": { + "filename": "src/renderers/BasicCellRenderer.cairo" + }, + "start_col": 5, + "start_line": 278 + } + }, + "1060": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.token_uri" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 65, + "end_line": 279, + "input_file": { + "filename": "src/renderers/BasicCellRenderer.cairo" + }, + "start_col": 32, + "start_line": 279 + } + }, + "1062": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.token_uri" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 66, + "end_line": 279, + "input_file": { + "filename": "src/renderers/BasicCellRenderer.cairo" + }, + "start_col": 5, + "start_line": 279 + } + }, + "1063": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.token_uri" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 65, + "end_line": 280, + "input_file": { + "filename": "src/renderers/BasicCellRenderer.cairo" + }, + "start_col": 32, + "start_line": 280 + } + }, + "1065": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.token_uri" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 66, + "end_line": 280, + "input_file": { + "filename": "src/renderers/BasicCellRenderer.cairo" + }, + "start_col": 5, + "start_line": 280 + } + }, + "1066": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.token_uri" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 65, + "end_line": 281, + "input_file": { + "filename": "src/renderers/BasicCellRenderer.cairo" + }, + "start_col": 32, + "start_line": 281 + } + }, + "1068": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.token_uri" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 66, + "end_line": 281, + "input_file": { + "filename": "src/renderers/BasicCellRenderer.cairo" + }, + "start_col": 5, + "start_line": 281 + } + }, + "1069": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.token_uri" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 65, + "end_line": 282, + "input_file": { + "filename": "src/renderers/BasicCellRenderer.cairo" + }, + "start_col": 32, + "start_line": 282 + } + }, + "1071": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.token_uri" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 66, + "end_line": 282, + "input_file": { + "filename": "src/renderers/BasicCellRenderer.cairo" + }, + "start_col": 5, + "start_line": 282 + } + }, + "1072": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.token_uri" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 65, + "end_line": 283, + "input_file": { + "filename": "src/renderers/BasicCellRenderer.cairo" + }, + "start_col": 32, + "start_line": 283 + } + }, + "1074": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.token_uri" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 66, + "end_line": 283, + "input_file": { + "filename": "src/renderers/BasicCellRenderer.cairo" + }, + "start_col": 5, + "start_line": 283 + } + }, + "1075": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.token_uri" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 44, + "end_line": 284, + "input_file": { + "filename": "src/renderers/BasicCellRenderer.cairo" + }, + "start_col": 32, + "start_line": 284 + } + }, + "1077": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.token_uri" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 45, + "end_line": 284, + "input_file": { + "filename": "src/renderers/BasicCellRenderer.cairo" + }, + "start_col": 5, + "start_line": 284 + } + }, + "1078": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.token_uri" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 44, + "end_line": 285, + "input_file": { + "filename": "src/renderers/BasicCellRenderer.cairo" + }, + "start_col": 5, + "start_line": 285 + } + }, + "1079": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.token_uri" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 65, + "end_line": 286, + "input_file": { + "filename": "src/renderers/BasicCellRenderer.cairo" + }, + "start_col": 32, + "start_line": 286 + } + }, + "1081": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.token_uri" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 66, + "end_line": 286, + "input_file": { + "filename": "src/renderers/BasicCellRenderer.cairo" + }, + "start_col": 5, + "start_line": 286 + } + }, + "1082": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.token_uri" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 65, + "end_line": 287, + "input_file": { + "filename": "src/renderers/BasicCellRenderer.cairo" + }, + "start_col": 32, + "start_line": 287 + } + }, + "1084": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.token_uri" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 66, + "end_line": 287, + "input_file": { + "filename": "src/renderers/BasicCellRenderer.cairo" + }, + "start_col": 5, + "start_line": 287 + } + }, + "1085": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.token_uri" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 65, + "end_line": 288, + "input_file": { + "filename": "src/renderers/BasicCellRenderer.cairo" + }, + "start_col": 32, + "start_line": 288 + } + }, + "1087": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.token_uri" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 66, + "end_line": 288, + "input_file": { + "filename": "src/renderers/BasicCellRenderer.cairo" + }, + "start_col": 5, + "start_line": 288 + } + }, + "1088": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.token_uri" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 65, + "end_line": 289, + "input_file": { + "filename": "src/renderers/BasicCellRenderer.cairo" + }, + "start_col": 32, + "start_line": 289 + } + }, + "1090": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.token_uri" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 66, + "end_line": 289, + "input_file": { + "filename": "src/renderers/BasicCellRenderer.cairo" + }, + "start_col": 5, + "start_line": 289 + } + }, + "1091": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.token_uri" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 65, + "end_line": 290, + "input_file": { + "filename": "src/renderers/BasicCellRenderer.cairo" + }, + "start_col": 32, + "start_line": 290 + } + }, + "1093": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.token_uri" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 66, + "end_line": 290, + "input_file": { + "filename": "src/renderers/BasicCellRenderer.cairo" + }, + "start_col": 5, + "start_line": 290 + } + }, + "1094": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.token_uri" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 63, + "end_line": 291, + "input_file": { + "filename": "src/renderers/BasicCellRenderer.cairo" + }, + "start_col": 32, + "start_line": 291 + } + }, + "1096": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.token_uri" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 64, + "end_line": 291, + "input_file": { + "filename": "src/renderers/BasicCellRenderer.cairo" + }, + "start_col": 5, + "start_line": 291 + } + }, + "1097": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.token_uri" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 65, + "end_line": 292, + "input_file": { + "filename": "src/renderers/BasicCellRenderer.cairo" + }, + "start_col": 32, + "start_line": 292 + } + }, + "1099": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.token_uri" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 66, + "end_line": 292, + "input_file": { + "filename": "src/renderers/BasicCellRenderer.cairo" + }, + "start_col": 5, + "start_line": 292 + } + }, + "1100": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.token_uri" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 65, + "end_line": 293, + "input_file": { + "filename": "src/renderers/BasicCellRenderer.cairo" + }, + "start_col": 32, + "start_line": 293 + } + }, + "1102": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.token_uri" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 66, + "end_line": 293, + "input_file": { + "filename": "src/renderers/BasicCellRenderer.cairo" + }, + "start_col": 5, + "start_line": 293 + } + }, + "1103": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.token_uri" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 65, + "end_line": 294, + "input_file": { + "filename": "src/renderers/BasicCellRenderer.cairo" + }, + "start_col": 32, + "start_line": 294 + } + }, + "1105": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.token_uri" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 66, + "end_line": 294, + "input_file": { + "filename": "src/renderers/BasicCellRenderer.cairo" + }, + "start_col": 5, + "start_line": 294 + } + }, + "1106": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.token_uri" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 65, + "end_line": 295, + "input_file": { + "filename": "src/renderers/BasicCellRenderer.cairo" + }, + "start_col": 32, + "start_line": 295 + } + }, + "1108": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.token_uri" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 66, + "end_line": 295, + "input_file": { + "filename": "src/renderers/BasicCellRenderer.cairo" + }, + "start_col": 5, + "start_line": 295 + } + }, + "1109": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.token_uri" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 65, + "end_line": 296, + "input_file": { + "filename": "src/renderers/BasicCellRenderer.cairo" + }, + "start_col": 32, + "start_line": 296 + } + }, + "1111": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.token_uri" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 66, + "end_line": 296, + "input_file": { + "filename": "src/renderers/BasicCellRenderer.cairo" + }, + "start_col": 5, + "start_line": 296 + } + }, + "1112": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.token_uri" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 39, + "end_line": 297, + "input_file": { + "filename": "src/renderers/BasicCellRenderer.cairo" + }, + "start_col": 32, + "start_line": 297 + } + }, + "1114": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.token_uri" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 40, + "end_line": 297, + "input_file": { + "filename": "src/renderers/BasicCellRenderer.cairo" + }, + "start_col": 5, + "start_line": 297 + } + }, + "1115": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.token_uri" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 54, + "end_line": 298, + "input_file": { + "filename": "src/renderers/BasicCellRenderer.cairo" + }, + "start_col": 32, + "start_line": 298 + } + }, + "1117": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.token_uri" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 62, + "end_line": 298, + "input_file": { + "filename": "src/renderers/BasicCellRenderer.cairo" + }, + "start_col": 32, + "start_line": 298 + } + }, + "1119": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.token_uri" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 63, + "end_line": 298, + "input_file": { + "filename": "src/renderers/BasicCellRenderer.cairo" + }, + "start_col": 5, + "start_line": 298 + } + }, + "1120": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.token_uri" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 49, + "end_line": 299, + "input_file": { + "filename": "src/renderers/BasicCellRenderer.cairo" + }, + "start_col": 5, + "start_line": 299 + } + }, + "1121": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.token_uri" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 57, + "end_line": 300, + "input_file": { + "filename": "src/renderers/BasicCellRenderer.cairo" + }, + "start_col": 32, + "start_line": 300 + } + }, + "1123": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.token_uri" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 58, + "end_line": 300, + "input_file": { + "filename": "src/renderers/BasicCellRenderer.cairo" + }, + "start_col": 5, + "start_line": 300 + } + }, + "1124": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.token_uri" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 68, + "end_line": 13, + "input_file": { + "filename": "src/renderers/BasicCellRenderer.cairo" + }, + "parent_location": [ + { + "end_col": 61, + "end_line": 36, + "input_file": { + "filename": "src/renderers/BasicCellRenderer.cairo" + }, + "parent_location": [ + { + "end_col": 68, + "end_line": 13, + "input_file": { + "filename": "src/renderers/BasicCellRenderer.cairo" + }, + "parent_location": [ + { + "end_col": 61, + "end_line": 36, + "input_file": { + "filename": "src/renderers/BasicCellRenderer.cairo" + }, + "parent_location": [ + { + "end_col": 42, + "end_line": 32, + "input_file": { + "filename": "src/renderers/BasicCellRenderer.cairo" + }, + "parent_location": [ + { + "end_col": 39, + "end_line": 303, + "input_file": { + "filename": "src/renderers/BasicCellRenderer.cairo" + }, + "start_col": 5, + "start_line": 303 + }, + "While trying to retrieve the implicit argument 'pedersen_ptr' in:" + ], + "start_col": 16, + "start_line": 32 + }, + "While expanding the reference 'pedersen_ptr' in:" + ], + "start_col": 36, + "start_line": 36 + }, + "While trying to update the implicit return value 'pedersen_ptr' in:" + ], + "start_col": 42, + "start_line": 13 + }, + "While auto generating local variable for 'pedersen_ptr'." + ], + "start_col": 36, + "start_line": 36 + }, + "While trying to update the implicit return value 'pedersen_ptr' in:" + ], + "start_col": 42, + "start_line": 13 + } + }, + "1125": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.token_uri" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 40, + "end_line": 13, + "input_file": { + "filename": "src/renderers/BasicCellRenderer.cairo" + }, + "parent_location": [ + { + "end_col": 61, + "end_line": 36, + "input_file": { + "filename": "src/renderers/BasicCellRenderer.cairo" + }, + "parent_location": [ + { + "end_col": 40, + "end_line": 13, + "input_file": { + "filename": "src/renderers/BasicCellRenderer.cairo" + }, + "parent_location": [ + { + "end_col": 61, + "end_line": 36, + "input_file": { + "filename": "src/renderers/BasicCellRenderer.cairo" + }, + "parent_location": [ + { + "end_col": 62, + "end_line": 32, + "input_file": { + "filename": "src/renderers/BasicCellRenderer.cairo" + }, + "parent_location": [ + { + "end_col": 39, + "end_line": 303, + "input_file": { + "filename": "src/renderers/BasicCellRenderer.cairo" + }, + "start_col": 5, + "start_line": 303 + }, + "While trying to retrieve the implicit argument 'syscall_ptr' in:" + ], + "start_col": 44, + "start_line": 32 + }, + "While expanding the reference 'syscall_ptr' in:" + ], + "start_col": 36, + "start_line": 36 + }, + "While trying to update the implicit return value 'syscall_ptr' in:" + ], + "start_col": 22, + "start_line": 13 + }, + "While auto generating local variable for 'syscall_ptr'." + ], + "start_col": 36, + "start_line": 36 + }, + "While trying to update the implicit return value 'syscall_ptr' in:" + ], + "start_col": 22, + "start_line": 13 + } + }, + "1126": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.token_uri" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 25, + "end_line": 13, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/utils/string.cairo" + }, + "parent_location": [ + { + "end_col": 41, + "end_line": 37, + "input_file": { + "filename": "src/renderers/BasicCellRenderer.cairo" + }, + "parent_location": [ + { + "end_col": 79, + "end_line": 32, + "input_file": { + "filename": "src/renderers/BasicCellRenderer.cairo" + }, + "parent_location": [ + { + "end_col": 39, + "end_line": 303, + "input_file": { + "filename": "src/renderers/BasicCellRenderer.cairo" + }, + "start_col": 5, + "start_line": 303 + }, + "While trying to retrieve the implicit argument 'range_check_ptr' in:" + ], + "start_col": 64, + "start_line": 32 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 31, + "start_line": 37 + }, + "While trying to update the implicit return value 'range_check_ptr' in:" + ], + "start_col": 10, + "start_line": 13 + } + }, + "1127": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.token_uri" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 28, + "end_line": 302, + "input_file": { + "filename": "src/renderers/BasicCellRenderer.cairo" + }, + "parent_location": [ + { + "end_col": 26, + "end_line": 303, + "input_file": { + "filename": "src/renderers/BasicCellRenderer.cairo" + }, + "start_col": 13, + "start_line": 303 + }, + "While expanding the reference 'token_uri_len' in:" + ], + "start_col": 25, + "start_line": 302 + } + }, + "1129": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.token_uri" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 19, + "end_line": 38, + "input_file": { + "filename": "src/renderers/BasicCellRenderer.cairo" + }, + "parent_location": [ + { + "end_col": 37, + "end_line": 303, + "input_file": { + "filename": "src/renderers/BasicCellRenderer.cairo" + }, + "start_col": 28, + "start_line": 303 + }, + "While expanding the reference 'token_uri' in:" + ], + "start_col": 10, + "start_line": 38 + } + }, + "1130": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.token_uri" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 39, + "end_line": 303, + "input_file": { + "filename": "src/renderers/BasicCellRenderer.cairo" + }, + "start_col": 5, + "start_line": 303 + } + }, + "1131": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.token_uri_encode_return" + ], + "flow_tracking_data": null, + "hints": [ + { + "location": { + "end_col": 38, + "end_line": 3, + "input_file": { + "filename": "autogen/starknet/external/return/token_uri/f48cf5085ac07908983bbc364b0ba70d64fa7f2a9b8dc38e9d6fe3783bd626a8.cairo" + }, + "parent_location": [ + { + "end_col": 15, + "end_line": 32, + "input_file": { + "filename": "src/renderers/BasicCellRenderer.cairo" + }, + "start_col": 6, + "start_line": 32 + }, + "While handling return value of" + ], + "start_col": 5, + "start_line": 3 + }, + "n_prefix_newlines": 0 + } + ], + "inst": { + "end_col": 18, + "end_line": 4, + "input_file": { + "filename": "autogen/starknet/external/return/token_uri/f48cf5085ac07908983bbc364b0ba70d64fa7f2a9b8dc38e9d6fe3783bd626a8.cairo" + }, + "parent_location": [ + { + "end_col": 15, + "end_line": 32, + "input_file": { + "filename": "src/renderers/BasicCellRenderer.cairo" + }, + "start_col": 6, + "start_line": 32 + }, + "While handling return value of" + ], + "start_col": 5, + "start_line": 4 + } + }, + "1133": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.token_uri_encode_return" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 55, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/arg_processor/5462c9ea522f66a6a8b3de2f37f244c7074893fe5c8d0b413046098a1ccfc2ce.cairo" + }, + "parent_location": [ + { + "end_col": 26, + "end_line": 34, + "input_file": { + "filename": "src/renderers/BasicCellRenderer.cairo" + }, + "start_col": 7, + "start_line": 34 + }, + "While handling return value 'token_uri_len'" + ], + "start_col": 1, + "start_line": 1 + } + }, + "1134": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.token_uri_encode_return" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 52, + "end_line": 2, + "input_file": { + "filename": "autogen/starknet/arg_processor/8d1ba44ec0b1d27c24688348db19d49f555faaa5454ce90a4e7ba33d6a63afea.cairo" + }, + "parent_location": [ + { + "end_col": 44, + "end_line": 34, + "input_file": { + "filename": "src/renderers/BasicCellRenderer.cairo" + }, + "start_col": 28, + "start_line": 34 + }, + "While handling return value 'token_uri'" + ], + "start_col": 1, + "start_line": 2 + } + }, + "1135": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.token_uri_encode_return" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 45, + "end_line": 5, + "input_file": { + "filename": "autogen/starknet/arg_processor/8d1ba44ec0b1d27c24688348db19d49f555faaa5454ce90a4e7ba33d6a63afea.cairo" + }, + "parent_location": [ + { + "end_col": 44, + "end_line": 34, + "input_file": { + "filename": "src/renderers/BasicCellRenderer.cairo" + }, + "start_col": 28, + "start_line": 34 + }, + "While handling return value 'token_uri'" + ], + "start_col": 1, + "start_line": 5 + } + }, + "1137": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.token_uri_encode_return" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 48, + "end_line": 2, + "input_file": { + "filename": "autogen/starknet/arg_processor/5462c9ea522f66a6a8b3de2f37f244c7074893fe5c8d0b413046098a1ccfc2ce.cairo" + }, + "parent_location": [ + { + "end_col": 26, + "end_line": 34, + "input_file": { + "filename": "src/renderers/BasicCellRenderer.cairo" + }, + "parent_location": [ + { + "end_col": 53, + "end_line": 10, + "input_file": { + "filename": "autogen/starknet/arg_processor/8d1ba44ec0b1d27c24688348db19d49f555faaa5454ce90a4e7ba33d6a63afea.cairo" + }, + "parent_location": [ + { + "end_col": 44, + "end_line": 34, + "input_file": { + "filename": "src/renderers/BasicCellRenderer.cairo" + }, + "start_col": 28, + "start_line": 34 + }, + "While handling return value 'token_uri'" + ], + "start_col": 35, + "start_line": 10 + }, + "While expanding the reference '__return_value_ptr' in:" + ], + "start_col": 7, + "start_line": 34 + }, + "While handling return value 'token_uri_len'" + ], + "start_col": 26, + "start_line": 2 + } + }, + "1139": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.token_uri_encode_return" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 84, + "end_line": 10, + "input_file": { + "filename": "autogen/starknet/arg_processor/8d1ba44ec0b1d27c24688348db19d49f555faaa5454ce90a4e7ba33d6a63afea.cairo" + }, + "parent_location": [ + { + "end_col": 44, + "end_line": 34, + "input_file": { + "filename": "src/renderers/BasicCellRenderer.cairo" + }, + "start_col": 28, + "start_line": 34 + }, + "While handling return value 'token_uri'" + ], + "start_col": 1, + "start_line": 10 + } + }, + "1140": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.token_uri_encode_return" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 48, + "end_line": 2, + "input_file": { + "filename": "autogen/starknet/arg_processor/5462c9ea522f66a6a8b3de2f37f244c7074893fe5c8d0b413046098a1ccfc2ce.cairo" + }, + "parent_location": [ + { + "end_col": 26, + "end_line": 34, + "input_file": { + "filename": "src/renderers/BasicCellRenderer.cairo" + }, + "parent_location": [ + { + "end_col": 49, + "end_line": 7, + "input_file": { + "filename": "autogen/starknet/arg_processor/8d1ba44ec0b1d27c24688348db19d49f555faaa5454ce90a4e7ba33d6a63afea.cairo" + }, + "parent_location": [ + { + "end_col": 44, + "end_line": 34, + "input_file": { + "filename": "src/renderers/BasicCellRenderer.cairo" + }, + "parent_location": [ + { + "end_col": 32, + "end_line": 12, + "input_file": { + "filename": "autogen/starknet/arg_processor/8d1ba44ec0b1d27c24688348db19d49f555faaa5454ce90a4e7ba33d6a63afea.cairo" + }, + "parent_location": [ + { + "end_col": 44, + "end_line": 34, + "input_file": { + "filename": "src/renderers/BasicCellRenderer.cairo" + }, + "start_col": 28, + "start_line": 34 + }, + "While handling return value 'token_uri'" + ], + "start_col": 9, + "start_line": 12 + }, + "While expanding the reference '__return_value_ptr_copy' in:" + ], + "start_col": 28, + "start_line": 34 + }, + "While handling return value 'token_uri'" + ], + "start_col": 31, + "start_line": 7 + }, + "While expanding the reference '__return_value_ptr' in:" + ], + "start_col": 7, + "start_line": 34 + }, + "While handling return value 'token_uri_len'" + ], + "start_col": 26, + "start_line": 2 + } + }, + "1142": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.token_uri_encode_return" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 28, + "end_line": 13, + "input_file": { + "filename": "autogen/starknet/arg_processor/8d1ba44ec0b1d27c24688348db19d49f555faaa5454ce90a4e7ba33d6a63afea.cairo" + }, + "parent_location": [ + { + "end_col": 44, + "end_line": 34, + "input_file": { + "filename": "src/renderers/BasicCellRenderer.cairo" + }, + "start_col": 28, + "start_line": 34 + }, + "While handling return value 'token_uri'" + ], + "start_col": 9, + "start_line": 13 + } + }, + "1143": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.token_uri_encode_return" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 32, + "end_line": 14, + "input_file": { + "filename": "autogen/starknet/arg_processor/8d1ba44ec0b1d27c24688348db19d49f555faaa5454ce90a4e7ba33d6a63afea.cairo" + }, + "parent_location": [ + { + "end_col": 44, + "end_line": 34, + "input_file": { + "filename": "src/renderers/BasicCellRenderer.cairo" + }, + "start_col": 28, + "start_line": 34 + }, + "While handling return value 'token_uri'" + ], + "start_col": 9, + "start_line": 14 + } + }, + "1144": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.token_uri_encode_return" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 37, + "end_line": 14, + "input_file": { + "filename": "autogen/starknet/arg_processor/8d1ba44ec0b1d27c24688348db19d49f555faaa5454ce90a4e7ba33d6a63afea.cairo" + }, + "parent_location": [ + { + "end_col": 44, + "end_line": 34, + "input_file": { + "filename": "src/renderers/BasicCellRenderer.cairo" + }, + "start_col": 28, + "start_line": 34 + }, + "While handling return value 'token_uri'" + ], + "start_col": 1, + "start_line": 11 + } + }, + "1146": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.token_uri_encode_return" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 22, + "end_line": 5, + "input_file": { + "filename": "autogen/starknet/arg_processor/8d1ba44ec0b1d27c24688348db19d49f555faaa5454ce90a4e7ba33d6a63afea.cairo" + }, + "parent_location": [ + { + "end_col": 44, + "end_line": 34, + "input_file": { + "filename": "src/renderers/BasicCellRenderer.cairo" + }, + "parent_location": [ + { + "end_col": 40, + "end_line": 10, + "input_file": { + "filename": "autogen/starknet/external/return/token_uri/f48cf5085ac07908983bbc364b0ba70d64fa7f2a9b8dc38e9d6fe3783bd626a8.cairo" + }, + "parent_location": [ + { + "end_col": 15, + "end_line": 32, + "input_file": { + "filename": "src/renderers/BasicCellRenderer.cairo" + }, + "start_col": 6, + "start_line": 32 + }, + "While handling return value of" + ], + "start_col": 25, + "start_line": 10 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 28, + "start_line": 34 + }, + "While handling return value 'token_uri'" + ], + "start_col": 7, + "start_line": 5 + } + }, + "1147": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.token_uri_encode_return" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 63, + "end_line": 11, + "input_file": { + "filename": "autogen/starknet/external/return/token_uri/f48cf5085ac07908983bbc364b0ba70d64fa7f2a9b8dc38e9d6fe3783bd626a8.cairo" + }, + "parent_location": [ + { + "end_col": 15, + "end_line": 32, + "input_file": { + "filename": "src/renderers/BasicCellRenderer.cairo" + }, + "start_col": 6, + "start_line": 32 + }, + "While handling return value of" + ], + "start_col": 18, + "start_line": 11 + } + }, + "1148": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.token_uri_encode_return" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 35, + "end_line": 5, + "input_file": { + "filename": "autogen/starknet/external/return/token_uri/f48cf5085ac07908983bbc364b0ba70d64fa7f2a9b8dc38e9d6fe3783bd626a8.cairo" + }, + "parent_location": [ + { + "end_col": 15, + "end_line": 32, + "input_file": { + "filename": "src/renderers/BasicCellRenderer.cairo" + }, + "parent_location": [ + { + "end_col": 38, + "end_line": 12, + "input_file": { + "filename": "autogen/starknet/external/return/token_uri/f48cf5085ac07908983bbc364b0ba70d64fa7f2a9b8dc38e9d6fe3783bd626a8.cairo" + }, + "parent_location": [ + { + "end_col": 15, + "end_line": 32, + "input_file": { + "filename": "src/renderers/BasicCellRenderer.cairo" + }, + "start_col": 6, + "start_line": 32 + }, + "While handling return value of" + ], + "start_col": 14, + "start_line": 12 + }, + "While expanding the reference '__return_value_ptr_start' in:" + ], + "start_col": 6, + "start_line": 32 + }, + "While handling return value of" + ], + "start_col": 11, + "start_line": 5 + } + }, + "1149": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.token_uri_encode_return" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 40, + "end_line": 12, + "input_file": { + "filename": "autogen/starknet/external/return/token_uri/f48cf5085ac07908983bbc364b0ba70d64fa7f2a9b8dc38e9d6fe3783bd626a8.cairo" + }, + "parent_location": [ + { + "end_col": 15, + "end_line": 32, + "input_file": { + "filename": "src/renderers/BasicCellRenderer.cairo" + }, + "start_col": 6, + "start_line": 32 + }, + "While handling return value of" + ], + "start_col": 5, + "start_line": 9 + } + }, + "1150": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.token_uri" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 18, + "end_line": 2, + "input_file": { + "filename": "autogen/starknet/external/token_uri/0e46c67014b1932c61618de0923cda1cd086d4d13ccfc96398cf52540cb66251.cairo" + }, + "parent_location": [ + { + "end_col": 15, + "end_line": 32, + "input_file": { + "filename": "src/renderers/BasicCellRenderer.cairo" + }, + "start_col": 6, + "start_line": 32 + }, + "While constructing the external wrapper for:" + ], + "start_col": 5, + "start_line": 2 + } + }, + "1152": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.token_uri" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 40, + "end_line": 2, + "input_file": { + "filename": "autogen/starknet/arg_processor/e1eb73cd870ec466294c3700e77817cf3c039ac1384882ddb76383eb87a5da90.cairo" + }, + "parent_location": [ + { + "end_col": 44, + "end_line": 33, + "input_file": { + "filename": "src/renderers/BasicCellRenderer.cairo" + }, + "parent_location": [ + { + "end_col": 45, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/arg_processor/c31620b02d4d706f0542c989b2aadc01b0981d1f6a5933a8fe4937ace3d70d92.cairo" + }, + "parent_location": [ + { + "end_col": 15, + "end_line": 32, + "input_file": { + "filename": "src/renderers/BasicCellRenderer.cairo" + }, + "parent_location": [ + { + "end_col": 57, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/arg_processor/01cba52f8515996bb9d7070bde81ff39281d096d7024a558efcba6e1fd2402cf.cairo" + }, + "parent_location": [ + { + "end_col": 15, + "end_line": 32, + "input_file": { + "filename": "src/renderers/BasicCellRenderer.cairo" + }, + "start_col": 6, + "start_line": 32 + }, + "While handling calldata of" + ], + "start_col": 35, + "start_line": 1 + }, + "While expanding the reference '__calldata_actual_size' in:" + ], + "start_col": 6, + "start_line": 32 + }, + "While handling calldata of" + ], + "start_col": 31, + "start_line": 1 + }, + "While expanding the reference '__calldata_ptr' in:" + ], + "start_col": 34, + "start_line": 33 + }, + "While handling calldata argument 'name'" + ], + "start_col": 22, + "start_line": 2 + } + }, + "1154": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.token_uri" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 58, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/arg_processor/01cba52f8515996bb9d7070bde81ff39281d096d7024a558efcba6e1fd2402cf.cairo" + }, + "parent_location": [ + { + "end_col": 15, + "end_line": 32, + "input_file": { + "filename": "src/renderers/BasicCellRenderer.cairo" + }, + "start_col": 6, + "start_line": 32 + }, + "While handling calldata of" + ], + "start_col": 1, + "start_line": 1 + } + }, + "1155": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.token_uri" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 110, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/token_uri/9684a85e93c782014ca14293edea4eb2502039a5a7b6538ecd39c56faaf12529.cairo" + }, + "parent_location": [ + { + "end_col": 42, + "end_line": 32, + "input_file": { + "filename": "src/renderers/BasicCellRenderer.cairo" + }, + "parent_location": [ + { + "end_col": 57, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/token_uri/3c45a718d5dec5c07bc4698665154ce6a53892dd6482470bafad1a3c27838e5e.cairo" + }, + "parent_location": [ + { + "end_col": 15, + "end_line": 32, + "input_file": { + "filename": "src/renderers/BasicCellRenderer.cairo" + }, + "start_col": 6, + "start_line": 32 + }, + "While constructing the external wrapper for:" + ], + "start_col": 45, + "start_line": 1 + }, + "While expanding the reference 'pedersen_ptr' in:" + ], + "start_col": 16, + "start_line": 32 + }, + "While constructing the external wrapper for:" + ], + "start_col": 20, + "start_line": 1 + } + }, + "1156": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.token_uri" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 64, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/token_uri/b2c52ca2d2a8fc8791a983086d8716c5eacd0c3d62934914d2286f84b98ff4cb.cairo" + }, + "parent_location": [ + { + "end_col": 62, + "end_line": 32, + "input_file": { + "filename": "src/renderers/BasicCellRenderer.cairo" + }, + "parent_location": [ + { + "end_col": 82, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/token_uri/3c45a718d5dec5c07bc4698665154ce6a53892dd6482470bafad1a3c27838e5e.cairo" + }, + "parent_location": [ + { + "end_col": 15, + "end_line": 32, + "input_file": { + "filename": "src/renderers/BasicCellRenderer.cairo" + }, + "start_col": 6, + "start_line": 32 + }, + "While constructing the external wrapper for:" + ], + "start_col": 71, + "start_line": 1 + }, + "While expanding the reference 'syscall_ptr' in:" + ], + "start_col": 44, + "start_line": 32 + }, + "While constructing the external wrapper for:" + ], + "start_col": 19, + "start_line": 1 + } + }, + "1157": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.token_uri" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 67, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/token_uri/741ea357d6336b0bed7bf0472425acd0311d543883b803388880e60a232040c7.cairo" + }, + "parent_location": [ + { + "end_col": 79, + "end_line": 32, + "input_file": { + "filename": "src/renderers/BasicCellRenderer.cairo" + }, + "parent_location": [ + { + "end_col": 115, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/token_uri/3c45a718d5dec5c07bc4698665154ce6a53892dd6482470bafad1a3c27838e5e.cairo" + }, + "parent_location": [ + { + "end_col": 15, + "end_line": 32, + "input_file": { + "filename": "src/renderers/BasicCellRenderer.cairo" + }, + "start_col": 6, + "start_line": 32 + }, + "While constructing the external wrapper for:" + ], + "start_col": 100, + "start_line": 1 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 64, + "start_line": 32 + }, + "While constructing the external wrapper for:" + ], + "start_col": 23, + "start_line": 1 + } + }, + "1158": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.token_uri" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 47, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/arg_processor/92bae94c430cca894eac466fa5be50d176f1f62e79244db218577fbac5e84220.cairo" + }, + "parent_location": [ + { + "end_col": 19, + "end_line": 33, + "input_file": { + "filename": "src/renderers/BasicCellRenderer.cairo" + }, + "parent_location": [ + { + "end_col": 149, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/token_uri/3c45a718d5dec5c07bc4698665154ce6a53892dd6482470bafad1a3c27838e5e.cairo" + }, + "parent_location": [ + { + "end_col": 15, + "end_line": 32, + "input_file": { + "filename": "src/renderers/BasicCellRenderer.cairo" + }, + "start_col": 6, + "start_line": 32 + }, + "While constructing the external wrapper for:" + ], + "start_col": 126, + "start_line": 1 + }, + "While expanding the reference '__calldata_arg_token_id' in:" + ], + "start_col": 5, + "start_line": 33 + }, + "While handling calldata argument 'token_id'" + ], + "start_col": 31, + "start_line": 1 + } + }, + "1159": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.token_uri" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 44, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/arg_processor/3e93b8906c329e7a5c33e020ce7a5a9c542c4444955be98eec5fcbef545a8662.cairo" + }, + "parent_location": [ + { + "end_col": 32, + "end_line": 33, + "input_file": { + "filename": "src/renderers/BasicCellRenderer.cairo" + }, + "parent_location": [ + { + "end_col": 177, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/token_uri/3c45a718d5dec5c07bc4698665154ce6a53892dd6482470bafad1a3c27838e5e.cairo" + }, + "parent_location": [ + { + "end_col": 15, + "end_line": 32, + "input_file": { + "filename": "src/renderers/BasicCellRenderer.cairo" + }, + "start_col": 6, + "start_line": 32 + }, + "While constructing the external wrapper for:" + ], + "start_col": 157, + "start_line": 1 + }, + "While expanding the reference '__calldata_arg_value' in:" + ], + "start_col": 21, + "start_line": 33 + }, + "While handling calldata argument 'value'" + ], + "start_col": 28, + "start_line": 1 + } + }, + "1160": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.token_uri" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 43, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/arg_processor/e1eb73cd870ec466294c3700e77817cf3c039ac1384882ddb76383eb87a5da90.cairo" + }, + "parent_location": [ + { + "end_col": 44, + "end_line": 33, + "input_file": { + "filename": "src/renderers/BasicCellRenderer.cairo" + }, + "parent_location": [ + { + "end_col": 203, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/token_uri/3c45a718d5dec5c07bc4698665154ce6a53892dd6482470bafad1a3c27838e5e.cairo" + }, + "parent_location": [ + { + "end_col": 15, + "end_line": 32, + "input_file": { + "filename": "src/renderers/BasicCellRenderer.cairo" + }, + "start_col": 6, + "start_line": 32 + }, + "While constructing the external wrapper for:" + ], + "start_col": 184, + "start_line": 1 + }, + "While expanding the reference '__calldata_arg_name' in:" + ], + "start_col": 34, + "start_line": 33 + }, + "While handling calldata argument 'name'" + ], + "start_col": 27, + "start_line": 1 + } + }, + "1161": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.token_uri" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 15, + "end_line": 32, + "input_file": { + "filename": "src/renderers/BasicCellRenderer.cairo" + }, + "start_col": 6, + "start_line": 32 + } + }, + "1163": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.token_uri" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 82, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/token_uri/3c45a718d5dec5c07bc4698665154ce6a53892dd6482470bafad1a3c27838e5e.cairo" + }, + "parent_location": [ + { + "end_col": 15, + "end_line": 32, + "input_file": { + "filename": "src/renderers/BasicCellRenderer.cairo" + }, + "parent_location": [ + { + "end_col": 82, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/token_uri/3c45a718d5dec5c07bc4698665154ce6a53892dd6482470bafad1a3c27838e5e.cairo" + }, + "parent_location": [ + { + "end_col": 15, + "end_line": 32, + "input_file": { + "filename": "src/renderers/BasicCellRenderer.cairo" + }, + "start_col": 6, + "start_line": 32 + }, + "While constructing the external wrapper for:" + ], + "start_col": 71, + "start_line": 1 + }, + "While auto generating local variable for 'syscall_ptr'." + ], + "start_col": 6, + "start_line": 32 + }, + "While constructing the external wrapper for:" + ], + "start_col": 71, + "start_line": 1 + } + }, + "1164": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.token_uri" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 57, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/token_uri/3c45a718d5dec5c07bc4698665154ce6a53892dd6482470bafad1a3c27838e5e.cairo" + }, + "parent_location": [ + { + "end_col": 15, + "end_line": 32, + "input_file": { + "filename": "src/renderers/BasicCellRenderer.cairo" + }, + "parent_location": [ + { + "end_col": 57, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/token_uri/3c45a718d5dec5c07bc4698665154ce6a53892dd6482470bafad1a3c27838e5e.cairo" + }, + "parent_location": [ + { + "end_col": 15, + "end_line": 32, + "input_file": { + "filename": "src/renderers/BasicCellRenderer.cairo" + }, + "start_col": 6, + "start_line": 32 + }, + "While constructing the external wrapper for:" + ], + "start_col": 45, + "start_line": 1 + }, + "While auto generating local variable for 'pedersen_ptr'." + ], + "start_col": 6, + "start_line": 32 + }, + "While constructing the external wrapper for:" + ], + "start_col": 45, + "start_line": 1 + } + }, + "1165": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.token_uri" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 115, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/token_uri/3c45a718d5dec5c07bc4698665154ce6a53892dd6482470bafad1a3c27838e5e.cairo" + }, + "parent_location": [ + { + "end_col": 15, + "end_line": 32, + "input_file": { + "filename": "src/renderers/BasicCellRenderer.cairo" + }, + "parent_location": [ + { + "end_col": 98, + "end_line": 2, + "input_file": { + "filename": "autogen/starknet/external/token_uri/3c45a718d5dec5c07bc4698665154ce6a53892dd6482470bafad1a3c27838e5e.cairo" + }, + "parent_location": [ + { + "end_col": 15, + "end_line": 32, + "input_file": { + "filename": "src/renderers/BasicCellRenderer.cairo" + }, + "start_col": 6, + "start_line": 32 + }, + "While constructing the external wrapper for:" + ], + "start_col": 83, + "start_line": 2 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 6, + "start_line": 32 + }, + "While constructing the external wrapper for:" + ], + "start_col": 100, + "start_line": 1 + } + }, + "1166": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.token_uri" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 99, + "end_line": 2, + "input_file": { + "filename": "autogen/starknet/external/token_uri/3c45a718d5dec5c07bc4698665154ce6a53892dd6482470bafad1a3c27838e5e.cairo" + }, + "parent_location": [ + { + "end_col": 15, + "end_line": 32, + "input_file": { + "filename": "src/renderers/BasicCellRenderer.cairo" + }, + "start_col": 6, + "start_line": 32 + }, + "While constructing the external wrapper for:" + ], + "start_col": 48, + "start_line": 2 + } + }, + "1168": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.token_uri" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 82, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/token_uri/3c45a718d5dec5c07bc4698665154ce6a53892dd6482470bafad1a3c27838e5e.cairo" + }, + "parent_location": [ + { + "end_col": 15, + "end_line": 32, + "input_file": { + "filename": "src/renderers/BasicCellRenderer.cairo" + }, + "parent_location": [ + { + "end_col": 82, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/token_uri/3c45a718d5dec5c07bc4698665154ce6a53892dd6482470bafad1a3c27838e5e.cairo" + }, + "parent_location": [ + { + "end_col": 15, + "end_line": 32, + "input_file": { + "filename": "src/renderers/BasicCellRenderer.cairo" + }, + "parent_location": [ + { + "end_col": 20, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/token_uri/da17921a4e81c09e730800bbf23bfdbe5e9e6bfaedc59d80fbf62087fa43c27d.cairo" + }, + "parent_location": [ + { + "end_col": 15, + "end_line": 32, + "input_file": { + "filename": "src/renderers/BasicCellRenderer.cairo" + }, + "start_col": 6, + "start_line": 32 + }, + "While constructing the external wrapper for:" + ], + "start_col": 9, + "start_line": 1 + }, + "While expanding the reference 'syscall_ptr' in:" + ], + "start_col": 6, + "start_line": 32 + }, + "While constructing the external wrapper for:" + ], + "start_col": 71, + "start_line": 1 + }, + "While auto generating local variable for 'syscall_ptr'." + ], + "start_col": 6, + "start_line": 32 + }, + "While constructing the external wrapper for:" + ], + "start_col": 71, + "start_line": 1 + } + }, + "1169": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.token_uri" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 57, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/token_uri/3c45a718d5dec5c07bc4698665154ce6a53892dd6482470bafad1a3c27838e5e.cairo" + }, + "parent_location": [ + { + "end_col": 15, + "end_line": 32, + "input_file": { + "filename": "src/renderers/BasicCellRenderer.cairo" + }, + "parent_location": [ + { + "end_col": 57, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/token_uri/3c45a718d5dec5c07bc4698665154ce6a53892dd6482470bafad1a3c27838e5e.cairo" + }, + "parent_location": [ + { + "end_col": 15, + "end_line": 32, + "input_file": { + "filename": "src/renderers/BasicCellRenderer.cairo" + }, + "parent_location": [ + { + "end_col": 33, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/token_uri/da17921a4e81c09e730800bbf23bfdbe5e9e6bfaedc59d80fbf62087fa43c27d.cairo" + }, + "parent_location": [ + { + "end_col": 15, + "end_line": 32, + "input_file": { + "filename": "src/renderers/BasicCellRenderer.cairo" + }, + "start_col": 6, + "start_line": 32 + }, + "While constructing the external wrapper for:" + ], + "start_col": 21, + "start_line": 1 + }, + "While expanding the reference 'pedersen_ptr' in:" + ], + "start_col": 6, + "start_line": 32 + }, + "While constructing the external wrapper for:" + ], + "start_col": 45, + "start_line": 1 + }, + "While auto generating local variable for 'pedersen_ptr'." + ], + "start_col": 6, + "start_line": 32 + }, + "While constructing the external wrapper for:" + ], + "start_col": 45, + "start_line": 1 + } + }, + "1170": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.token_uri" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 21, + "end_line": 2, + "input_file": { + "filename": "autogen/starknet/external/token_uri/3c45a718d5dec5c07bc4698665154ce6a53892dd6482470bafad1a3c27838e5e.cairo" + }, + "parent_location": [ + { + "end_col": 15, + "end_line": 32, + "input_file": { + "filename": "src/renderers/BasicCellRenderer.cairo" + }, + "parent_location": [ + { + "end_col": 49, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/token_uri/da17921a4e81c09e730800bbf23bfdbe5e9e6bfaedc59d80fbf62087fa43c27d.cairo" + }, + "parent_location": [ + { + "end_col": 15, + "end_line": 32, + "input_file": { + "filename": "src/renderers/BasicCellRenderer.cairo" + }, + "start_col": 6, + "start_line": 32 + }, + "While constructing the external wrapper for:" + ], + "start_col": 34, + "start_line": 1 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 6, + "start_line": 32 + }, + "While constructing the external wrapper for:" + ], + "start_col": 6, + "start_line": 2 + } + }, + "1171": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.token_uri" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 35, + "end_line": 2, + "input_file": { + "filename": "autogen/starknet/external/token_uri/3c45a718d5dec5c07bc4698665154ce6a53892dd6482470bafad1a3c27838e5e.cairo" + }, + "parent_location": [ + { + "end_col": 15, + "end_line": 32, + "input_file": { + "filename": "src/renderers/BasicCellRenderer.cairo" + }, + "parent_location": [ + { + "end_col": 62, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/token_uri/da17921a4e81c09e730800bbf23bfdbe5e9e6bfaedc59d80fbf62087fa43c27d.cairo" + }, + "parent_location": [ + { + "end_col": 15, + "end_line": 32, + "input_file": { + "filename": "src/renderers/BasicCellRenderer.cairo" + }, + "start_col": 6, + "start_line": 32 + }, + "While constructing the external wrapper for:" + ], + "start_col": 50, + "start_line": 1 + }, + "While expanding the reference 'retdata_size' in:" + ], + "start_col": 6, + "start_line": 32 + }, + "While constructing the external wrapper for:" + ], + "start_col": 23, + "start_line": 2 + } + }, + "1172": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.token_uri" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 44, + "end_line": 2, + "input_file": { + "filename": "autogen/starknet/external/token_uri/3c45a718d5dec5c07bc4698665154ce6a53892dd6482470bafad1a3c27838e5e.cairo" + }, + "parent_location": [ + { + "end_col": 15, + "end_line": 32, + "input_file": { + "filename": "src/renderers/BasicCellRenderer.cairo" + }, + "parent_location": [ + { + "end_col": 70, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/token_uri/da17921a4e81c09e730800bbf23bfdbe5e9e6bfaedc59d80fbf62087fa43c27d.cairo" + }, + "parent_location": [ + { + "end_col": 15, + "end_line": 32, + "input_file": { + "filename": "src/renderers/BasicCellRenderer.cairo" + }, + "start_col": 6, + "start_line": 32 + }, + "While constructing the external wrapper for:" + ], + "start_col": 63, + "start_line": 1 + }, + "While expanding the reference 'retdata' in:" + ], + "start_col": 6, + "start_line": 32 + }, + "While constructing the external wrapper for:" + ], + "start_col": 37, + "start_line": 2 + } + }, + "1173": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.token_uri" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 72, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/token_uri/da17921a4e81c09e730800bbf23bfdbe5e9e6bfaedc59d80fbf62087fa43c27d.cairo" + }, + "parent_location": [ + { + "end_col": 15, + "end_line": 32, + "input_file": { + "filename": "src/renderers/BasicCellRenderer.cairo" + }, + "start_col": 6, + "start_line": 32 + }, + "While constructing the external wrapper for:" + ], + "start_col": 1, + "start_line": 1 + } + } + } + }, "hints": { "0": [ { diff --git a/packages/starksheet-cairo/build/BasicCellRenderer_abi.json b/packages/starksheet-cairo/build/BasicCellRenderer_abi.json deleted file mode 100644 index 8006c3e9..00000000 --- a/packages/starksheet-cairo/build/BasicCellRenderer_abi.json +++ /dev/null @@ -1,48 +0,0 @@ -[ - { - "inputs": [ - { - "name": "token_id", - "type": "felt" - } - ], - "name": "number_to_index", - "outputs": [ - { - "name": "res", - "type": "felt" - } - ], - "stateMutability": "view", - "type": "function" - }, - { - "inputs": [ - { - "name": "token_id", - "type": "felt" - }, - { - "name": "value", - "type": "felt" - }, - { - "name": "name", - "type": "felt" - } - ], - "name": "token_uri", - "outputs": [ - { - "name": "token_uri_len", - "type": "felt" - }, - { - "name": "token_uri", - "type": "felt*" - } - ], - "stateMutability": "view", - "type": "function" - } -] diff --git a/packages/starksheet-cairo/build/Counter.json b/packages/starksheet-cairo/build/Counter.json deleted file mode 100644 index 6462bcc1..00000000 --- a/packages/starksheet-cairo/build/Counter.json +++ /dev/null @@ -1,3379 +0,0 @@ -{ - "abi": [ - { - "members": [ - { - "name": "low", - "offset": 0, - "type": "felt" - }, - { - "name": "high", - "offset": 1, - "type": "felt" - } - ], - "name": "Uint256", - "size": 2, - "type": "struct" - }, - { - "data": [ - { - "name": "from_", - "type": "felt" - }, - { - "name": "to", - "type": "felt" - }, - { - "name": "value", - "type": "Uint256" - } - ], - "keys": [], - "name": "Transfer", - "type": "event" - }, - { - "data": [ - { - "name": "owner", - "type": "felt" - }, - { - "name": "spender", - "type": "felt" - }, - { - "name": "value", - "type": "Uint256" - } - ], - "keys": [], - "name": "Approval", - "type": "event" - }, - { - "data": [ - { - "name": "previousOwner", - "type": "felt" - }, - { - "name": "newOwner", - "type": "felt" - } - ], - "keys": [], - "name": "OwnershipTransferred", - "type": "event" - }, - { - "inputs": [], - "name": "constructor", - "outputs": [], - "type": "constructor" - }, - { - "inputs": [], - "name": "inc", - "outputs": [], - "stateMutability": "view", - "type": "function" - }, - { - "inputs": [], - "name": "count", - "outputs": [ - { - "name": "c", - "type": "felt" - } - ], - "stateMutability": "view", - "type": "function" - }, - { - "inputs": [], - "name": "dev", - "outputs": [], - "stateMutability": "view", - "type": "function" - } - ], - "entry_points_by_type": { - "CONSTRUCTOR": [ - { - "offset": "0xa9", - "selector": "0x28ffe4ff0f226a9107253e17a904099aa4f63a02a5621de0576e5aa71bc5194" - } - ], - "EXTERNAL": [ - { - "offset": "0xe3", - "selector": "0x2306b6ab1b4c67429442feb1e6d238135a6cfcaa471a01b0e336f01b048e38" - }, - { - "offset": "0xff", - "selector": "0x39470ac0df380f209de1c800185565472402517515e8e60ed2662ef3c4ccc3a" - }, - { - "offset": "0xc5", - "selector": "0x3b82f69851fa1625b367ea6c116252a84257da483dcec4d4e4bc270eb5c70a7" - } - ], - "L1_HANDLER": [] - }, - "program": { - "attributes": [], - "builtins": [ - "pedersen", - "range_check" - ], - "compiler_version": "0.11.2", - "data": [ - "0x480680017fff8000", - "0x47657443616c6c657241646472657373", - "0x400280007ffd7fff", - "0x482680017ffd8000", - "0x2", - "0x480280017ffd8000", - "0x208b7fff7fff7ffe", - "0x480680017fff8000", - "0x53746f7261676552656164", - "0x400280007ffc7fff", - "0x400380017ffc7ffd", - "0x482680017ffc8000", - "0x3", - "0x480280027ffc8000", - "0x208b7fff7fff7ffe", - "0x480680017fff8000", - "0x53746f726167655772697465", - "0x400280007ffb7fff", - "0x400380017ffb7ffc", - "0x400380027ffb7ffd", - "0x482680017ffb8000", - "0x3", - "0x208b7fff7fff7ffe", - "0x480280007ffb8000", - "0x480280017ffb8000", - "0x484480017fff8000", - "0x2aaaaaaaaaaaab05555555555555556", - "0x48307fff7ffd8000", - "0x480280027ffb8000", - "0x480280037ffb8000", - "0x484480017fff8000", - "0x4000000000000088000000000000001", - "0x48307fff7ffd8000", - "0xa0680017fff8000", - "0xe", - "0x480680017fff8000", - "0x800000000000011000000000000000000000000000000000000000000000000", - "0x48287ffc80007fff", - "0x40307ffc7ff87fff", - "0x48297ffd80007ffc", - "0x482680017ffd8000", - "0x1", - "0x48507fff7ffe8000", - "0x40507ff97ff57fff", - "0x482680017ffb8000", - "0x4", - "0x208b7fff7fff7ffe", - "0xa0680017fff8000", - "0xc", - "0x480680017fff8000", - "0x800000000000011000000000000000000000000000000000000000000000000", - "0x48287ffd80007fff", - "0x48327fff7ffc8000", - "0x40307ffa7ff67fff", - "0x48527ffe7ffc8000", - "0x40507ff97ff57fff", - "0x482680017ffb8000", - "0x4", - "0x208b7fff7fff7ffe", - "0x40317ffd7ff97ffd", - "0x48297ffc80007ffd", - "0x48527fff7ffc8000", - "0x40507ffb7ff77fff", - "0x40780017fff7fff", - "0x2", - "0x482680017ffb8000", - "0x4", - "0x208b7fff7fff7ffe", - "0xa0680017fff8000", - "0xa", - "0x400380007ffc7ffd", - "0x40780017fff7fff", - "0x14", - "0x482680017ffc8000", - "0x1", - "0x480680017fff8000", - "0x1", - "0x208b7fff7fff7ffe", - "0xa0680017fff8000", - "0xe", - "0x484680017ffd8000", - "0x800000000000011000000000000000000000000000000000000000000000000", - "0x482480017fff8000", - "0x800000000000011000000000000000000000000000000000000000000000000", - "0x400280007ffc7fff", - "0x40780017fff7fff", - "0x11", - "0x482680017ffc8000", - "0x1", - "0x480680017fff8000", - "0x0", - "0x208b7fff7fff7ffe", - "0x480a7ffc7fff8000", - "0x480680017fff8000", - "0x100000000000000000000000000000000", - "0x480a7ffd7fff8000", - "0x1104800180018000", - "0x800000000000010ffffffffffffffffffffffffffffffffffffffffffffffb8", - "0x480680017fff8000", - "0x0", - "0x208b7fff7fff7ffe", - "0x480a7ffb7fff8000", - "0x48297ffc80007ffd", - "0x1104800180018000", - "0x800000000000010ffffffffffffffffffffffffffffffffffffffffffffffde", - "0x208b7fff7fff7ffe", - "0x48297ffd80007ffb", - "0x20680017fff7fff", - "0x9", - "0x480a7ff97fff8000", - "0x482680017ffa8000", - "0x1", - "0x480a7ffc7fff8000", - "0x1104800180018000", - "0x800000000000010fffffffffffffffffffffffffffffffffffffffffffffff5", - "0x208b7fff7fff7ffe", - "0x480a7ff97fff8000", - "0x482680017ffb8000", - "0x1", - "0x480a7ffd7fff8000", - "0x1104800180018000", - "0x800000000000010ffffffffffffffffffffffffffffffffffffffffffffffee", - "0x208b7fff7fff7ffe", - "0x480a7ff97fff8000", - "0x480a7ffc7fff8000", - "0x480a7ffd7fff8000", - "0x480a7ffa7fff8000", - "0x480a7ffb7fff8000", - "0x1104800180018000", - "0x800000000000010ffffffffffffffffffffffffffffffffffffffffffffffeb", - "0x480680017fff8000", - "0x1", - "0x48127ffd7fff8000", - "0x48307ffd80007ffe", - "0x208b7fff7fff7ffe", - "0x480a7ffc7fff8000", - "0x480a7ffd7fff8000", - "0x480680017fff8000", - "0x1afeeaff0ed5cee7d05a21078399c2f56226b0cd5657062500cef4c4e736f85", - "0x208b7fff7fff7ffe", - "0x480a7ffc7fff8000", - "0x480a7ffd7fff8000", - "0x1104800180018000", - "0x800000000000010fffffffffffffffffffffffffffffffffffffffffffffffa", - "0x480a7ffb7fff8000", - "0x48127ffe7fff8000", - "0x1104800180018000", - "0x800000000000010ffffffffffffffffffffffffffffffffffffffffffffff76", - "0x48127ffe7fff8000", - "0x48127ff57fff8000", - "0x48127ff57fff8000", - "0x48127ffc7fff8000", - "0x208b7fff7fff7ffe", - "0x480a7ffb7fff8000", - "0x480a7ffc7fff8000", - "0x1104800180018000", - "0x800000000000010ffffffffffffffffffffffffffffffffffffffffffffffed", - "0x480a7ffa7fff8000", - "0x48127ffe7fff8000", - "0x480a7ffd7fff8000", - "0x1104800180018000", - "0x800000000000010ffffffffffffffffffffffffffffffffffffffffffffff70", - "0x48127ff67fff8000", - "0x48127ff67fff8000", - "0x208b7fff7fff7ffe", - "0x480a7ffb7fff8000", - "0x480a7ffc7fff8000", - "0x480a7ffd7fff8000", - "0x208b7fff7fff7ffe", - "0x402b7ffd7ffc7ffd", - "0x480280007ffb8000", - "0x480280017ffb8000", - "0x480280027ffb8000", - "0x1104800180018000", - "0x800000000000010fffffffffffffffffffffffffffffffffffffffffffffff9", - "0x40780017fff7fff", - "0x1", - "0x48127ffc7fff8000", - "0x48127ffc7fff8000", - "0x48127ffc7fff8000", - "0x480680017fff8000", - "0x0", - "0x48127ffb7fff8000", - "0x208b7fff7fff7ffe", - "0x480a7ffb7fff8000", - "0x480a7ffc7fff8000", - "0x480a7ffd7fff8000", - "0x1104800180018000", - "0x800000000000010ffffffffffffffffffffffffffffffffffffffffffffffd2", - "0x48127ffc7fff8000", - "0x48127ffc7fff8000", - "0x48127ffc7fff8000", - "0x482480017ffc8000", - "0x1", - "0x1104800180018000", - "0x800000000000010ffffffffffffffffffffffffffffffffffffffffffffffd8", - "0x208b7fff7fff7ffe", - "0x402b7ffd7ffc7ffd", - "0x480280007ffb8000", - "0x480280017ffb8000", - "0x480280027ffb8000", - "0x1104800180018000", - "0x800000000000010fffffffffffffffffffffffffffffffffffffffffffffff0", - "0x40780017fff7fff", - "0x1", - "0x48127ffc7fff8000", - "0x48127ffc7fff8000", - "0x48127ffc7fff8000", - "0x480680017fff8000", - "0x0", - "0x48127ffb7fff8000", - "0x208b7fff7fff7ffe", - "0x480a7ffb7fff8000", - "0x480a7ffc7fff8000", - "0x480a7ffd7fff8000", - "0x1104800180018000", - "0x800000000000010ffffffffffffffffffffffffffffffffffffffffffffffb6", - "0x208b7fff7fff7ffe", - "0x40780017fff7fff", - "0x1", - "0x4003800080007ffc", - "0x4826800180008000", - "0x1", - "0x480a7ffd7fff8000", - "0x4828800080007ffe", - "0x480a80007fff8000", - "0x208b7fff7fff7ffe", - "0x402b7ffd7ffc7ffd", - "0x480280007ffb8000", - "0x480280017ffb8000", - "0x480280027ffb8000", - "0x1104800180018000", - "0x800000000000010ffffffffffffffffffffffffffffffffffffffffffffffee", - "0x48127ffe7fff8000", - "0x1104800180018000", - "0x800000000000010fffffffffffffffffffffffffffffffffffffffffffffff1", - "0x48127ff47fff8000", - "0x48127ff47fff8000", - "0x48127ffb7fff8000", - "0x48127ffb7fff8000", - "0x48127ffb7fff8000", - "0x208b7fff7fff7ffe", - "0x480a7ffb7fff8000", - "0x480a7ffc7fff8000", - "0x480a7ffd7fff8000", - "0x1104800180018000", - "0x800000000000010ffffffffffffffffffffffffffffffffffffffffffffff98", - "0x48127ffc7fff8000", - "0x48127ffc7fff8000", - "0x48127ffc7fff8000", - "0x482480017ffc8000", - "0x800000000000011000000000000000000000000000000000000000000000000", - "0x1104800180018000", - "0x800000000000010ffffffffffffffffffffffffffffffffffffffffffffff9e", - "0x208b7fff7fff7ffe", - "0x402b7ffd7ffc7ffd", - "0x480280007ffb8000", - "0x480280017ffb8000", - "0x480280027ffb8000", - "0x1104800180018000", - "0x800000000000010fffffffffffffffffffffffffffffffffffffffffffffff0", - "0x40780017fff7fff", - "0x1", - "0x48127ffc7fff8000", - "0x48127ffc7fff8000", - "0x48127ffc7fff8000", - "0x480680017fff8000", - "0x0", - "0x48127ffb7fff8000", - "0x208b7fff7fff7ffe" - ], - "debug_info": null, - "hints": { - "3": [ - { - "accessible_scopes": [ - "starkware.starknet.common.syscalls", - "starkware.starknet.common.syscalls.get_caller_address" - ], - "code": "syscall_handler.get_caller_address(segments=segments, syscall_ptr=ids.syscall_ptr)", - "flow_tracking_data": { - "ap_tracking": { - "group": 0, - "offset": 1 - }, - "reference_ids": { - "starkware.starknet.common.syscalls.get_caller_address.syscall_ptr": 0 - } - } - } - ], - "11": [ - { - "accessible_scopes": [ - "starkware.starknet.common.syscalls", - "starkware.starknet.common.syscalls.storage_read" - ], - "code": "syscall_handler.storage_read(segments=segments, syscall_ptr=ids.syscall_ptr)", - "flow_tracking_data": { - "ap_tracking": { - "group": 1, - "offset": 1 - }, - "reference_ids": { - "starkware.starknet.common.syscalls.storage_read.syscall_ptr": 1 - } - } - } - ], - "20": [ - { - "accessible_scopes": [ - "starkware.starknet.common.syscalls", - "starkware.starknet.common.syscalls.storage_write" - ], - "code": "syscall_handler.storage_write(segments=segments, syscall_ptr=ids.syscall_ptr)", - "flow_tracking_data": { - "ap_tracking": { - "group": 2, - "offset": 1 - }, - "reference_ids": { - "starkware.starknet.common.syscalls.storage_write.syscall_ptr": 2 - } - } - } - ], - "23": [ - { - "accessible_scopes": [ - "starkware.cairo.common.math", - "starkware.cairo.common.math.assert_le_felt" - ], - "code": "import itertools\n\nfrom starkware.cairo.common.math_utils import assert_integer\nassert_integer(ids.a)\nassert_integer(ids.b)\na = ids.a % PRIME\nb = ids.b % PRIME\nassert a <= b, f'a = {a} is not less than or equal to b = {b}.'\n\n# Find an arc less than PRIME / 3, and another less than PRIME / 2.\nlengths_and_indices = [(a, 0), (b - a, 1), (PRIME - 1 - b, 2)]\nlengths_and_indices.sort()\nassert lengths_and_indices[0][0] <= PRIME // 3 and lengths_and_indices[1][0] <= PRIME // 2\nexcluded = lengths_and_indices[2][1]\n\nmemory[ids.range_check_ptr + 1], memory[ids.range_check_ptr + 0] = (\n divmod(lengths_and_indices[0][0], ids.PRIME_OVER_3_HIGH))\nmemory[ids.range_check_ptr + 3], memory[ids.range_check_ptr + 2] = (\n divmod(lengths_and_indices[1][0], ids.PRIME_OVER_2_HIGH))", - "flow_tracking_data": { - "ap_tracking": { - "group": 3, - "offset": 0 - }, - "reference_ids": { - "starkware.cairo.common.math.assert_le_felt.a": 3, - "starkware.cairo.common.math.assert_le_felt.b": 4, - "starkware.cairo.common.math.assert_le_felt.range_check_ptr": 5 - } - } - } - ], - "33": [ - { - "accessible_scopes": [ - "starkware.cairo.common.math", - "starkware.cairo.common.math.assert_le_felt" - ], - "code": "memory[ap] = 1 if excluded != 0 else 0", - "flow_tracking_data": { - "ap_tracking": { - "group": 3, - "offset": 8 - }, - "reference_ids": {} - } - } - ], - "47": [ - { - "accessible_scopes": [ - "starkware.cairo.common.math", - "starkware.cairo.common.math.assert_le_felt" - ], - "code": "memory[ap] = 1 if excluded != 1 else 0", - "flow_tracking_data": { - "ap_tracking": { - "group": 3, - "offset": 9 - }, - "reference_ids": {} - } - } - ], - "59": [ - { - "accessible_scopes": [ - "starkware.cairo.common.math", - "starkware.cairo.common.math.assert_le_felt" - ], - "code": "assert excluded == 2", - "flow_tracking_data": { - "ap_tracking": { - "group": 3, - "offset": 10 - }, - "reference_ids": {} - } - } - ], - "68": [ - { - "accessible_scopes": [ - "starkware.cairo.common.math_cmp", - "starkware.cairo.common.math_cmp.is_nn" - ], - "code": "memory[ap] = 0 if 0 <= (ids.a % PRIME) < range_check_builtin.bound else 1", - "flow_tracking_data": { - "ap_tracking": { - "group": 4, - "offset": 0 - }, - "reference_ids": { - "starkware.cairo.common.math_cmp.is_nn.a": 6 - } - } - } - ], - "78": [ - { - "accessible_scopes": [ - "starkware.cairo.common.math_cmp", - "starkware.cairo.common.math_cmp.is_nn" - ], - "code": "memory[ap] = 0 if 0 <= ((-ids.a - 1) % PRIME) < range_check_builtin.bound else 1", - "flow_tracking_data": { - "ap_tracking": { - "group": 4, - "offset": 1 - }, - "reference_ids": { - "starkware.cairo.common.math_cmp.is_nn.a": 6 - } - } - } - ], - "175": [ - { - "accessible_scopes": [ - "__main__", - "__main__", - "__wrappers__", - "__wrappers__.constructor" - ], - "code": "memory[ap] = segments.add()", - "flow_tracking_data": { - "ap_tracking": { - "group": 12, - "offset": 8 - }, - "reference_ids": {} - } - } - ], - "203": [ - { - "accessible_scopes": [ - "__main__", - "__main__", - "__wrappers__", - "__wrappers__.inc" - ], - "code": "memory[ap] = segments.add()", - "flow_tracking_data": { - "ap_tracking": { - "group": 14, - "offset": 50 - }, - "reference_ids": {} - } - } - ], - "218": [ - { - "accessible_scopes": [ - "__main__", - "__main__", - "__wrappers__", - "__wrappers__.count_encode_return" - ], - "code": "memory[ap] = segments.add()", - "flow_tracking_data": { - "ap_tracking": { - "group": 16, - "offset": 0 - }, - "reference_ids": {} - } - } - ], - "261": [ - { - "accessible_scopes": [ - "__main__", - "__main__", - "__wrappers__", - "__wrappers__.dev" - ], - "code": "memory[ap] = segments.add()", - "flow_tracking_data": { - "ap_tracking": { - "group": 19, - "offset": 50 - }, - "reference_ids": {} - } - } - ] - }, - "identifiers": { - "__main__.ERC20": { - "destination": "openzeppelin.token.erc20.library.ERC20", - "type": "alias" - }, - "__main__.HashBuiltin": { - "destination": "starkware.cairo.common.cairo_builtins.HashBuiltin", - "type": "alias" - }, - "__main__.Ownable": { - "destination": "openzeppelin.access.ownable.library.Ownable", - "type": "alias" - }, - "__main__.TRUE": { - "destination": "starkware.cairo.common.bool.TRUE", - "type": "alias" - }, - "__main__.Uint256": { - "destination": "starkware.cairo.common.uint256.Uint256", - "type": "alias" - }, - "__main__.constructor": { - "decorators": [ - "constructor" - ], - "pc": 165, - "type": "function" - }, - "__main__.constructor.Args": { - "full_name": "__main__.constructor.Args", - "members": {}, - "size": 0, - "type": "struct" - }, - "__main__.constructor.ImplicitArgs": { - "full_name": "__main__.constructor.ImplicitArgs", - "members": { - "pedersen_ptr": { - "cairo_type": "starkware.cairo.common.cairo_builtins.HashBuiltin*", - "offset": 1 - }, - "range_check_ptr": { - "cairo_type": "felt", - "offset": 2 - }, - "syscall_ptr": { - "cairo_type": "felt*", - "offset": 0 - } - }, - "size": 3, - "type": "struct" - }, - "__main__.constructor.Return": { - "cairo_type": "()", - "type": "type_definition" - }, - "__main__.constructor.SIZEOF_LOCALS": { - "type": "const", - "value": 0 - }, - "__main__.count": { - "decorators": [ - "view" - ], - "pc": 212, - "type": "function" - }, - "__main__.count.Args": { - "full_name": "__main__.count.Args", - "members": {}, - "size": 0, - "type": "struct" - }, - "__main__.count.ImplicitArgs": { - "full_name": "__main__.count.ImplicitArgs", - "members": { - "pedersen_ptr": { - "cairo_type": "starkware.cairo.common.cairo_builtins.HashBuiltin*", - "offset": 1 - }, - "range_check_ptr": { - "cairo_type": "felt", - "offset": 2 - }, - "syscall_ptr": { - "cairo_type": "felt*", - "offset": 0 - } - }, - "size": 3, - "type": "struct" - }, - "__main__.count.Return": { - "cairo_type": "(c: felt)", - "type": "type_definition" - }, - "__main__.count.SIZEOF_LOCALS": { - "type": "const", - "value": 0 - }, - "__main__.dev": { - "decorators": [ - "view" - ], - "pc": 242, - "type": "function" - }, - "__main__.dev.Args": { - "full_name": "__main__.dev.Args", - "members": {}, - "size": 0, - "type": "struct" - }, - "__main__.dev.ImplicitArgs": { - "full_name": "__main__.dev.ImplicitArgs", - "members": { - "pedersen_ptr": { - "cairo_type": "starkware.cairo.common.cairo_builtins.HashBuiltin*", - "offset": 1 - }, - "range_check_ptr": { - "cairo_type": "felt", - "offset": 2 - }, - "syscall_ptr": { - "cairo_type": "felt*", - "offset": 0 - } - }, - "size": 3, - "type": "struct" - }, - "__main__.dev.Return": { - "cairo_type": "()", - "type": "type_definition" - }, - "__main__.dev.SIZEOF_LOCALS": { - "type": "const", - "value": 0 - }, - "__main__.get_caller_address": { - "destination": "starkware.starknet.common.syscalls.get_caller_address", - "type": "alias" - }, - "__main__.inc": { - "decorators": [ - "view" - ], - "pc": 184, - "type": "function" - }, - "__main__.inc.Args": { - "full_name": "__main__.inc.Args", - "members": {}, - "size": 0, - "type": "struct" - }, - "__main__.inc.ImplicitArgs": { - "full_name": "__main__.inc.ImplicitArgs", - "members": { - "pedersen_ptr": { - "cairo_type": "starkware.cairo.common.cairo_builtins.HashBuiltin*", - "offset": 1 - }, - "range_check_ptr": { - "cairo_type": "felt", - "offset": 2 - }, - "syscall_ptr": { - "cairo_type": "felt*", - "offset": 0 - } - }, - "size": 3, - "type": "struct" - }, - "__main__.inc.Return": { - "cairo_type": "()", - "type": "type_definition" - }, - "__main__.inc.SIZEOF_LOCALS": { - "type": "const", - "value": 0 - }, - "__main__.uint256_le": { - "destination": "starkware.cairo.common.uint256.uint256_le", - "type": "alias" - }, - "__main__.value": { - "type": "namespace" - }, - "__main__.value.Args": { - "full_name": "__main__.value.Args", - "members": {}, - "size": 0, - "type": "struct" - }, - "__main__.value.HashBuiltin": { - "destination": "starkware.cairo.common.cairo_builtins.HashBuiltin", - "type": "alias" - }, - "__main__.value.ImplicitArgs": { - "full_name": "__main__.value.ImplicitArgs", - "members": {}, - "size": 0, - "type": "struct" - }, - "__main__.value.Return": { - "cairo_type": "()", - "type": "type_definition" - }, - "__main__.value.SIZEOF_LOCALS": { - "type": "const", - "value": 0 - }, - "__main__.value.addr": { - "decorators": [], - "pc": 135, - "type": "function" - }, - "__main__.value.addr.Args": { - "full_name": "__main__.value.addr.Args", - "members": {}, - "size": 0, - "type": "struct" - }, - "__main__.value.addr.ImplicitArgs": { - "full_name": "__main__.value.addr.ImplicitArgs", - "members": { - "pedersen_ptr": { - "cairo_type": "starkware.cairo.common.cairo_builtins.HashBuiltin*", - "offset": 0 - }, - "range_check_ptr": { - "cairo_type": "felt", - "offset": 1 - } - }, - "size": 2, - "type": "struct" - }, - "__main__.value.addr.Return": { - "cairo_type": "(res: felt)", - "type": "type_definition" - }, - "__main__.value.addr.SIZEOF_LOCALS": { - "type": "const", - "value": 0 - }, - "__main__.value.hash2": { - "destination": "starkware.cairo.common.hash.hash2", - "type": "alias" - }, - "__main__.value.normalize_address": { - "destination": "starkware.starknet.common.storage.normalize_address", - "type": "alias" - }, - "__main__.value.read": { - "decorators": [], - "pc": 140, - "type": "function" - }, - "__main__.value.read.Args": { - "full_name": "__main__.value.read.Args", - "members": {}, - "size": 0, - "type": "struct" - }, - "__main__.value.read.ImplicitArgs": { - "full_name": "__main__.value.read.ImplicitArgs", - "members": { - "pedersen_ptr": { - "cairo_type": "starkware.cairo.common.cairo_builtins.HashBuiltin*", - "offset": 1 - }, - "range_check_ptr": { - "cairo_type": "felt", - "offset": 2 - }, - "syscall_ptr": { - "cairo_type": "felt*", - "offset": 0 - } - }, - "size": 3, - "type": "struct" - }, - "__main__.value.read.Return": { - "cairo_type": "(res: felt)", - "type": "type_definition" - }, - "__main__.value.read.SIZEOF_LOCALS": { - "type": "const", - "value": 0 - }, - "__main__.value.storage_read": { - "destination": "starkware.starknet.common.syscalls.storage_read", - "type": "alias" - }, - "__main__.value.storage_write": { - "destination": "starkware.starknet.common.syscalls.storage_write", - "type": "alias" - }, - "__main__.value.write": { - "decorators": [], - "pc": 153, - "type": "function" - }, - "__main__.value.write.Args": { - "full_name": "__main__.value.write.Args", - "members": { - "value": { - "cairo_type": "felt", - "offset": 0 - } - }, - "size": 1, - "type": "struct" - }, - "__main__.value.write.ImplicitArgs": { - "full_name": "__main__.value.write.ImplicitArgs", - "members": { - "pedersen_ptr": { - "cairo_type": "starkware.cairo.common.cairo_builtins.HashBuiltin*", - "offset": 1 - }, - "range_check_ptr": { - "cairo_type": "felt", - "offset": 2 - }, - "syscall_ptr": { - "cairo_type": "felt*", - "offset": 0 - } - }, - "size": 3, - "type": "struct" - }, - "__main__.value.write.Return": { - "cairo_type": "()", - "type": "type_definition" - }, - "__main__.value.write.SIZEOF_LOCALS": { - "type": "const", - "value": 0 - }, - "__wrappers__.constructor": { - "decorators": [ - "constructor" - ], - "pc": 169, - "type": "function" - }, - "__wrappers__.constructor.Args": { - "full_name": "__wrappers__.constructor.Args", - "members": {}, - "size": 0, - "type": "struct" - }, - "__wrappers__.constructor.ImplicitArgs": { - "full_name": "__wrappers__.constructor.ImplicitArgs", - "members": {}, - "size": 0, - "type": "struct" - }, - "__wrappers__.constructor.Return": { - "cairo_type": "(syscall_ptr: felt*, pedersen_ptr: starkware.cairo.common.cairo_builtins.HashBuiltin*, range_check_ptr: felt, size: felt, retdata: felt*)", - "type": "type_definition" - }, - "__wrappers__.constructor.SIZEOF_LOCALS": { - "type": "const", - "value": 0 - }, - "__wrappers__.constructor.__wrapped_func": { - "destination": "__main__.constructor", - "type": "alias" - }, - "__wrappers__.constructor_encode_return.memcpy": { - "destination": "starkware.cairo.common.memcpy.memcpy", - "type": "alias" - }, - "__wrappers__.count": { - "decorators": [ - "view" - ], - "pc": 227, - "type": "function" - }, - "__wrappers__.count.Args": { - "full_name": "__wrappers__.count.Args", - "members": {}, - "size": 0, - "type": "struct" - }, - "__wrappers__.count.ImplicitArgs": { - "full_name": "__wrappers__.count.ImplicitArgs", - "members": {}, - "size": 0, - "type": "struct" - }, - "__wrappers__.count.Return": { - "cairo_type": "(syscall_ptr: felt*, pedersen_ptr: starkware.cairo.common.cairo_builtins.HashBuiltin*, range_check_ptr: felt, size: felt, retdata: felt*)", - "type": "type_definition" - }, - "__wrappers__.count.SIZEOF_LOCALS": { - "type": "const", - "value": 0 - }, - "__wrappers__.count.__wrapped_func": { - "destination": "__main__.count", - "type": "alias" - }, - "__wrappers__.count_encode_return": { - "decorators": [], - "pc": 218, - "type": "function" - }, - "__wrappers__.count_encode_return.Args": { - "full_name": "__wrappers__.count_encode_return.Args", - "members": { - "range_check_ptr": { - "cairo_type": "felt", - "offset": 1 - }, - "ret_value": { - "cairo_type": "(c: felt)", - "offset": 0 - } - }, - "size": 2, - "type": "struct" - }, - "__wrappers__.count_encode_return.ImplicitArgs": { - "full_name": "__wrappers__.count_encode_return.ImplicitArgs", - "members": {}, - "size": 0, - "type": "struct" - }, - "__wrappers__.count_encode_return.Return": { - "cairo_type": "(range_check_ptr: felt, data_len: felt, data: felt*)", - "type": "type_definition" - }, - "__wrappers__.count_encode_return.SIZEOF_LOCALS": { - "type": "const", - "value": 1 - }, - "__wrappers__.count_encode_return.memcpy": { - "destination": "starkware.cairo.common.memcpy.memcpy", - "type": "alias" - }, - "__wrappers__.dev": { - "decorators": [ - "view" - ], - "pc": 255, - "type": "function" - }, - "__wrappers__.dev.Args": { - "full_name": "__wrappers__.dev.Args", - "members": {}, - "size": 0, - "type": "struct" - }, - "__wrappers__.dev.ImplicitArgs": { - "full_name": "__wrappers__.dev.ImplicitArgs", - "members": {}, - "size": 0, - "type": "struct" - }, - "__wrappers__.dev.Return": { - "cairo_type": "(syscall_ptr: felt*, pedersen_ptr: starkware.cairo.common.cairo_builtins.HashBuiltin*, range_check_ptr: felt, size: felt, retdata: felt*)", - "type": "type_definition" - }, - "__wrappers__.dev.SIZEOF_LOCALS": { - "type": "const", - "value": 0 - }, - "__wrappers__.dev.__wrapped_func": { - "destination": "__main__.dev", - "type": "alias" - }, - "__wrappers__.dev_encode_return.memcpy": { - "destination": "starkware.cairo.common.memcpy.memcpy", - "type": "alias" - }, - "__wrappers__.inc": { - "decorators": [ - "view" - ], - "pc": 197, - "type": "function" - }, - "__wrappers__.inc.Args": { - "full_name": "__wrappers__.inc.Args", - "members": {}, - "size": 0, - "type": "struct" - }, - "__wrappers__.inc.ImplicitArgs": { - "full_name": "__wrappers__.inc.ImplicitArgs", - "members": {}, - "size": 0, - "type": "struct" - }, - "__wrappers__.inc.Return": { - "cairo_type": "(syscall_ptr: felt*, pedersen_ptr: starkware.cairo.common.cairo_builtins.HashBuiltin*, range_check_ptr: felt, size: felt, retdata: felt*)", - "type": "type_definition" - }, - "__wrappers__.inc.SIZEOF_LOCALS": { - "type": "const", - "value": 0 - }, - "__wrappers__.inc.__wrapped_func": { - "destination": "__main__.inc", - "type": "alias" - }, - "__wrappers__.inc_encode_return.memcpy": { - "destination": "starkware.cairo.common.memcpy.memcpy", - "type": "alias" - }, - "openzeppelin.access.ownable.library.HashBuiltin": { - "destination": "starkware.cairo.common.cairo_builtins.HashBuiltin", - "type": "alias" - }, - "openzeppelin.access.ownable.library.Ownable": { - "type": "namespace" - }, - "openzeppelin.access.ownable.library.Ownable.Args": { - "full_name": "openzeppelin.access.ownable.library.Ownable.Args", - "members": {}, - "size": 0, - "type": "struct" - }, - "openzeppelin.access.ownable.library.Ownable.ImplicitArgs": { - "full_name": "openzeppelin.access.ownable.library.Ownable.ImplicitArgs", - "members": {}, - "size": 0, - "type": "struct" - }, - "openzeppelin.access.ownable.library.Ownable.Return": { - "cairo_type": "()", - "type": "type_definition" - }, - "openzeppelin.access.ownable.library.Ownable.SIZEOF_LOCALS": { - "type": "const", - "value": 0 - }, - "openzeppelin.access.ownable.library.Ownable_owner": { - "type": "namespace" - }, - "openzeppelin.access.ownable.library.Ownable_owner.Args": { - "full_name": "openzeppelin.access.ownable.library.Ownable_owner.Args", - "members": {}, - "size": 0, - "type": "struct" - }, - "openzeppelin.access.ownable.library.Ownable_owner.HashBuiltin": { - "destination": "starkware.cairo.common.cairo_builtins.HashBuiltin", - "type": "alias" - }, - "openzeppelin.access.ownable.library.Ownable_owner.ImplicitArgs": { - "full_name": "openzeppelin.access.ownable.library.Ownable_owner.ImplicitArgs", - "members": {}, - "size": 0, - "type": "struct" - }, - "openzeppelin.access.ownable.library.Ownable_owner.Return": { - "cairo_type": "()", - "type": "type_definition" - }, - "openzeppelin.access.ownable.library.Ownable_owner.SIZEOF_LOCALS": { - "type": "const", - "value": 0 - }, - "openzeppelin.access.ownable.library.Ownable_owner.hash2": { - "destination": "starkware.cairo.common.hash.hash2", - "type": "alias" - }, - "openzeppelin.access.ownable.library.Ownable_owner.normalize_address": { - "destination": "starkware.starknet.common.storage.normalize_address", - "type": "alias" - }, - "openzeppelin.access.ownable.library.Ownable_owner.storage_read": { - "destination": "starkware.starknet.common.syscalls.storage_read", - "type": "alias" - }, - "openzeppelin.access.ownable.library.Ownable_owner.storage_write": { - "destination": "starkware.starknet.common.syscalls.storage_write", - "type": "alias" - }, - "openzeppelin.access.ownable.library.OwnershipTransferred": { - "type": "namespace" - }, - "openzeppelin.access.ownable.library.OwnershipTransferred.Args": { - "full_name": "openzeppelin.access.ownable.library.OwnershipTransferred.Args", - "members": {}, - "size": 0, - "type": "struct" - }, - "openzeppelin.access.ownable.library.OwnershipTransferred.ImplicitArgs": { - "full_name": "openzeppelin.access.ownable.library.OwnershipTransferred.ImplicitArgs", - "members": {}, - "size": 0, - "type": "struct" - }, - "openzeppelin.access.ownable.library.OwnershipTransferred.Return": { - "cairo_type": "()", - "type": "type_definition" - }, - "openzeppelin.access.ownable.library.OwnershipTransferred.SELECTOR": { - "type": "const", - "value": 553132481214675521502977957974509639062080100631756862105218886163371506175 - }, - "openzeppelin.access.ownable.library.OwnershipTransferred.SIZEOF_LOCALS": { - "type": "const", - "value": 0 - }, - "openzeppelin.access.ownable.library.OwnershipTransferred.alloc": { - "destination": "starkware.cairo.common.alloc.alloc", - "type": "alias" - }, - "openzeppelin.access.ownable.library.OwnershipTransferred.emit_event": { - "destination": "starkware.starknet.common.syscalls.emit_event", - "type": "alias" - }, - "openzeppelin.access.ownable.library.OwnershipTransferred.memcpy": { - "destination": "starkware.cairo.common.memcpy.memcpy", - "type": "alias" - }, - "openzeppelin.access.ownable.library.assert_not_zero": { - "destination": "starkware.cairo.common.math.assert_not_zero", - "type": "alias" - }, - "openzeppelin.access.ownable.library.get_caller_address": { - "destination": "starkware.starknet.common.syscalls.get_caller_address", - "type": "alias" - }, - "openzeppelin.security.safemath.library.FALSE": { - "destination": "starkware.cairo.common.bool.FALSE", - "type": "alias" - }, - "openzeppelin.security.safemath.library.HashBuiltin": { - "destination": "starkware.cairo.common.cairo_builtins.HashBuiltin", - "type": "alias" - }, - "openzeppelin.security.safemath.library.SafeUint256": { - "type": "namespace" - }, - "openzeppelin.security.safemath.library.SafeUint256.Args": { - "full_name": "openzeppelin.security.safemath.library.SafeUint256.Args", - "members": {}, - "size": 0, - "type": "struct" - }, - "openzeppelin.security.safemath.library.SafeUint256.ImplicitArgs": { - "full_name": "openzeppelin.security.safemath.library.SafeUint256.ImplicitArgs", - "members": {}, - "size": 0, - "type": "struct" - }, - "openzeppelin.security.safemath.library.SafeUint256.Return": { - "cairo_type": "()", - "type": "type_definition" - }, - "openzeppelin.security.safemath.library.SafeUint256.SIZEOF_LOCALS": { - "type": "const", - "value": 0 - }, - "openzeppelin.security.safemath.library.TRUE": { - "destination": "starkware.cairo.common.bool.TRUE", - "type": "alias" - }, - "openzeppelin.security.safemath.library.Uint256": { - "destination": "starkware.cairo.common.uint256.Uint256", - "type": "alias" - }, - "openzeppelin.security.safemath.library.uint256_add": { - "destination": "starkware.cairo.common.uint256.uint256_add", - "type": "alias" - }, - "openzeppelin.security.safemath.library.uint256_check": { - "destination": "starkware.cairo.common.uint256.uint256_check", - "type": "alias" - }, - "openzeppelin.security.safemath.library.uint256_eq": { - "destination": "starkware.cairo.common.uint256.uint256_eq", - "type": "alias" - }, - "openzeppelin.security.safemath.library.uint256_le": { - "destination": "starkware.cairo.common.uint256.uint256_le", - "type": "alias" - }, - "openzeppelin.security.safemath.library.uint256_lt": { - "destination": "starkware.cairo.common.uint256.uint256_lt", - "type": "alias" - }, - "openzeppelin.security.safemath.library.uint256_mul": { - "destination": "starkware.cairo.common.uint256.uint256_mul", - "type": "alias" - }, - "openzeppelin.security.safemath.library.uint256_sub": { - "destination": "starkware.cairo.common.uint256.uint256_sub", - "type": "alias" - }, - "openzeppelin.security.safemath.library.uint256_unsigned_div_rem": { - "destination": "starkware.cairo.common.uint256.uint256_unsigned_div_rem", - "type": "alias" - }, - "openzeppelin.token.erc20.library.Approval": { - "type": "namespace" - }, - "openzeppelin.token.erc20.library.Approval.Args": { - "full_name": "openzeppelin.token.erc20.library.Approval.Args", - "members": {}, - "size": 0, - "type": "struct" - }, - "openzeppelin.token.erc20.library.Approval.ImplicitArgs": { - "full_name": "openzeppelin.token.erc20.library.Approval.ImplicitArgs", - "members": {}, - "size": 0, - "type": "struct" - }, - "openzeppelin.token.erc20.library.Approval.Return": { - "cairo_type": "()", - "type": "type_definition" - }, - "openzeppelin.token.erc20.library.Approval.SELECTOR": { - "type": "const", - "value": 544914742286571513055574265148471203182105283038408585630116262969508767999 - }, - "openzeppelin.token.erc20.library.Approval.SIZEOF_LOCALS": { - "type": "const", - "value": 0 - }, - "openzeppelin.token.erc20.library.Approval.alloc": { - "destination": "starkware.cairo.common.alloc.alloc", - "type": "alias" - }, - "openzeppelin.token.erc20.library.Approval.emit_event": { - "destination": "starkware.starknet.common.syscalls.emit_event", - "type": "alias" - }, - "openzeppelin.token.erc20.library.Approval.memcpy": { - "destination": "starkware.cairo.common.memcpy.memcpy", - "type": "alias" - }, - "openzeppelin.token.erc20.library.ERC20": { - "type": "namespace" - }, - "openzeppelin.token.erc20.library.ERC20.Args": { - "full_name": "openzeppelin.token.erc20.library.ERC20.Args", - "members": {}, - "size": 0, - "type": "struct" - }, - "openzeppelin.token.erc20.library.ERC20.ImplicitArgs": { - "full_name": "openzeppelin.token.erc20.library.ERC20.ImplicitArgs", - "members": {}, - "size": 0, - "type": "struct" - }, - "openzeppelin.token.erc20.library.ERC20.Return": { - "cairo_type": "()", - "type": "type_definition" - }, - "openzeppelin.token.erc20.library.ERC20.SIZEOF_LOCALS": { - "type": "const", - "value": 0 - }, - "openzeppelin.token.erc20.library.ERC20_allowances": { - "type": "namespace" - }, - "openzeppelin.token.erc20.library.ERC20_allowances.Args": { - "full_name": "openzeppelin.token.erc20.library.ERC20_allowances.Args", - "members": {}, - "size": 0, - "type": "struct" - }, - "openzeppelin.token.erc20.library.ERC20_allowances.HashBuiltin": { - "destination": "starkware.cairo.common.cairo_builtins.HashBuiltin", - "type": "alias" - }, - "openzeppelin.token.erc20.library.ERC20_allowances.ImplicitArgs": { - "full_name": "openzeppelin.token.erc20.library.ERC20_allowances.ImplicitArgs", - "members": {}, - "size": 0, - "type": "struct" - }, - "openzeppelin.token.erc20.library.ERC20_allowances.Return": { - "cairo_type": "()", - "type": "type_definition" - }, - "openzeppelin.token.erc20.library.ERC20_allowances.SIZEOF_LOCALS": { - "type": "const", - "value": 0 - }, - "openzeppelin.token.erc20.library.ERC20_allowances.hash2": { - "destination": "starkware.cairo.common.hash.hash2", - "type": "alias" - }, - "openzeppelin.token.erc20.library.ERC20_allowances.normalize_address": { - "destination": "starkware.starknet.common.storage.normalize_address", - "type": "alias" - }, - "openzeppelin.token.erc20.library.ERC20_allowances.storage_read": { - "destination": "starkware.starknet.common.syscalls.storage_read", - "type": "alias" - }, - "openzeppelin.token.erc20.library.ERC20_allowances.storage_write": { - "destination": "starkware.starknet.common.syscalls.storage_write", - "type": "alias" - }, - "openzeppelin.token.erc20.library.ERC20_balances": { - "type": "namespace" - }, - "openzeppelin.token.erc20.library.ERC20_balances.Args": { - "full_name": "openzeppelin.token.erc20.library.ERC20_balances.Args", - "members": {}, - "size": 0, - "type": "struct" - }, - "openzeppelin.token.erc20.library.ERC20_balances.HashBuiltin": { - "destination": "starkware.cairo.common.cairo_builtins.HashBuiltin", - "type": "alias" - }, - "openzeppelin.token.erc20.library.ERC20_balances.ImplicitArgs": { - "full_name": "openzeppelin.token.erc20.library.ERC20_balances.ImplicitArgs", - "members": {}, - "size": 0, - "type": "struct" - }, - "openzeppelin.token.erc20.library.ERC20_balances.Return": { - "cairo_type": "()", - "type": "type_definition" - }, - "openzeppelin.token.erc20.library.ERC20_balances.SIZEOF_LOCALS": { - "type": "const", - "value": 0 - }, - "openzeppelin.token.erc20.library.ERC20_balances.hash2": { - "destination": "starkware.cairo.common.hash.hash2", - "type": "alias" - }, - "openzeppelin.token.erc20.library.ERC20_balances.normalize_address": { - "destination": "starkware.starknet.common.storage.normalize_address", - "type": "alias" - }, - "openzeppelin.token.erc20.library.ERC20_balances.storage_read": { - "destination": "starkware.starknet.common.syscalls.storage_read", - "type": "alias" - }, - "openzeppelin.token.erc20.library.ERC20_balances.storage_write": { - "destination": "starkware.starknet.common.syscalls.storage_write", - "type": "alias" - }, - "openzeppelin.token.erc20.library.ERC20_decimals": { - "type": "namespace" - }, - "openzeppelin.token.erc20.library.ERC20_decimals.Args": { - "full_name": "openzeppelin.token.erc20.library.ERC20_decimals.Args", - "members": {}, - "size": 0, - "type": "struct" - }, - "openzeppelin.token.erc20.library.ERC20_decimals.HashBuiltin": { - "destination": "starkware.cairo.common.cairo_builtins.HashBuiltin", - "type": "alias" - }, - "openzeppelin.token.erc20.library.ERC20_decimals.ImplicitArgs": { - "full_name": "openzeppelin.token.erc20.library.ERC20_decimals.ImplicitArgs", - "members": {}, - "size": 0, - "type": "struct" - }, - "openzeppelin.token.erc20.library.ERC20_decimals.Return": { - "cairo_type": "()", - "type": "type_definition" - }, - "openzeppelin.token.erc20.library.ERC20_decimals.SIZEOF_LOCALS": { - "type": "const", - "value": 0 - }, - "openzeppelin.token.erc20.library.ERC20_decimals.hash2": { - "destination": "starkware.cairo.common.hash.hash2", - "type": "alias" - }, - "openzeppelin.token.erc20.library.ERC20_decimals.normalize_address": { - "destination": "starkware.starknet.common.storage.normalize_address", - "type": "alias" - }, - "openzeppelin.token.erc20.library.ERC20_decimals.storage_read": { - "destination": "starkware.starknet.common.syscalls.storage_read", - "type": "alias" - }, - "openzeppelin.token.erc20.library.ERC20_decimals.storage_write": { - "destination": "starkware.starknet.common.syscalls.storage_write", - "type": "alias" - }, - "openzeppelin.token.erc20.library.ERC20_name": { - "type": "namespace" - }, - "openzeppelin.token.erc20.library.ERC20_name.Args": { - "full_name": "openzeppelin.token.erc20.library.ERC20_name.Args", - "members": {}, - "size": 0, - "type": "struct" - }, - "openzeppelin.token.erc20.library.ERC20_name.HashBuiltin": { - "destination": "starkware.cairo.common.cairo_builtins.HashBuiltin", - "type": "alias" - }, - "openzeppelin.token.erc20.library.ERC20_name.ImplicitArgs": { - "full_name": "openzeppelin.token.erc20.library.ERC20_name.ImplicitArgs", - "members": {}, - "size": 0, - "type": "struct" - }, - "openzeppelin.token.erc20.library.ERC20_name.Return": { - "cairo_type": "()", - "type": "type_definition" - }, - "openzeppelin.token.erc20.library.ERC20_name.SIZEOF_LOCALS": { - "type": "const", - "value": 0 - }, - "openzeppelin.token.erc20.library.ERC20_name.hash2": { - "destination": "starkware.cairo.common.hash.hash2", - "type": "alias" - }, - "openzeppelin.token.erc20.library.ERC20_name.normalize_address": { - "destination": "starkware.starknet.common.storage.normalize_address", - "type": "alias" - }, - "openzeppelin.token.erc20.library.ERC20_name.storage_read": { - "destination": "starkware.starknet.common.syscalls.storage_read", - "type": "alias" - }, - "openzeppelin.token.erc20.library.ERC20_name.storage_write": { - "destination": "starkware.starknet.common.syscalls.storage_write", - "type": "alias" - }, - "openzeppelin.token.erc20.library.ERC20_symbol": { - "type": "namespace" - }, - "openzeppelin.token.erc20.library.ERC20_symbol.Args": { - "full_name": "openzeppelin.token.erc20.library.ERC20_symbol.Args", - "members": {}, - "size": 0, - "type": "struct" - }, - "openzeppelin.token.erc20.library.ERC20_symbol.HashBuiltin": { - "destination": "starkware.cairo.common.cairo_builtins.HashBuiltin", - "type": "alias" - }, - "openzeppelin.token.erc20.library.ERC20_symbol.ImplicitArgs": { - "full_name": "openzeppelin.token.erc20.library.ERC20_symbol.ImplicitArgs", - "members": {}, - "size": 0, - "type": "struct" - }, - "openzeppelin.token.erc20.library.ERC20_symbol.Return": { - "cairo_type": "()", - "type": "type_definition" - }, - "openzeppelin.token.erc20.library.ERC20_symbol.SIZEOF_LOCALS": { - "type": "const", - "value": 0 - }, - "openzeppelin.token.erc20.library.ERC20_symbol.hash2": { - "destination": "starkware.cairo.common.hash.hash2", - "type": "alias" - }, - "openzeppelin.token.erc20.library.ERC20_symbol.normalize_address": { - "destination": "starkware.starknet.common.storage.normalize_address", - "type": "alias" - }, - "openzeppelin.token.erc20.library.ERC20_symbol.storage_read": { - "destination": "starkware.starknet.common.syscalls.storage_read", - "type": "alias" - }, - "openzeppelin.token.erc20.library.ERC20_symbol.storage_write": { - "destination": "starkware.starknet.common.syscalls.storage_write", - "type": "alias" - }, - "openzeppelin.token.erc20.library.ERC20_total_supply": { - "type": "namespace" - }, - "openzeppelin.token.erc20.library.ERC20_total_supply.Args": { - "full_name": "openzeppelin.token.erc20.library.ERC20_total_supply.Args", - "members": {}, - "size": 0, - "type": "struct" - }, - "openzeppelin.token.erc20.library.ERC20_total_supply.HashBuiltin": { - "destination": "starkware.cairo.common.cairo_builtins.HashBuiltin", - "type": "alias" - }, - "openzeppelin.token.erc20.library.ERC20_total_supply.ImplicitArgs": { - "full_name": "openzeppelin.token.erc20.library.ERC20_total_supply.ImplicitArgs", - "members": {}, - "size": 0, - "type": "struct" - }, - "openzeppelin.token.erc20.library.ERC20_total_supply.Return": { - "cairo_type": "()", - "type": "type_definition" - }, - "openzeppelin.token.erc20.library.ERC20_total_supply.SIZEOF_LOCALS": { - "type": "const", - "value": 0 - }, - "openzeppelin.token.erc20.library.ERC20_total_supply.hash2": { - "destination": "starkware.cairo.common.hash.hash2", - "type": "alias" - }, - "openzeppelin.token.erc20.library.ERC20_total_supply.normalize_address": { - "destination": "starkware.starknet.common.storage.normalize_address", - "type": "alias" - }, - "openzeppelin.token.erc20.library.ERC20_total_supply.storage_read": { - "destination": "starkware.starknet.common.syscalls.storage_read", - "type": "alias" - }, - "openzeppelin.token.erc20.library.ERC20_total_supply.storage_write": { - "destination": "starkware.starknet.common.syscalls.storage_write", - "type": "alias" - }, - "openzeppelin.token.erc20.library.FALSE": { - "destination": "starkware.cairo.common.bool.FALSE", - "type": "alias" - }, - "openzeppelin.token.erc20.library.HashBuiltin": { - "destination": "starkware.cairo.common.cairo_builtins.HashBuiltin", - "type": "alias" - }, - "openzeppelin.token.erc20.library.SafeUint256": { - "destination": "openzeppelin.security.safemath.library.SafeUint256", - "type": "alias" - }, - "openzeppelin.token.erc20.library.TRUE": { - "destination": "starkware.cairo.common.bool.TRUE", - "type": "alias" - }, - "openzeppelin.token.erc20.library.Transfer": { - "type": "namespace" - }, - "openzeppelin.token.erc20.library.Transfer.Args": { - "full_name": "openzeppelin.token.erc20.library.Transfer.Args", - "members": {}, - "size": 0, - "type": "struct" - }, - "openzeppelin.token.erc20.library.Transfer.ImplicitArgs": { - "full_name": "openzeppelin.token.erc20.library.Transfer.ImplicitArgs", - "members": {}, - "size": 0, - "type": "struct" - }, - "openzeppelin.token.erc20.library.Transfer.Return": { - "cairo_type": "()", - "type": "type_definition" - }, - "openzeppelin.token.erc20.library.Transfer.SELECTOR": { - "type": "const", - "value": 271746229759260285552388728919865295615886751538523744128730118297934206697 - }, - "openzeppelin.token.erc20.library.Transfer.SIZEOF_LOCALS": { - "type": "const", - "value": 0 - }, - "openzeppelin.token.erc20.library.Transfer.alloc": { - "destination": "starkware.cairo.common.alloc.alloc", - "type": "alias" - }, - "openzeppelin.token.erc20.library.Transfer.emit_event": { - "destination": "starkware.starknet.common.syscalls.emit_event", - "type": "alias" - }, - "openzeppelin.token.erc20.library.Transfer.memcpy": { - "destination": "starkware.cairo.common.memcpy.memcpy", - "type": "alias" - }, - "openzeppelin.token.erc20.library.UINT8_MAX": { - "destination": "openzeppelin.utils.constants.library.UINT8_MAX", - "type": "alias" - }, - "openzeppelin.token.erc20.library.Uint256": { - "destination": "starkware.cairo.common.uint256.Uint256", - "type": "alias" - }, - "openzeppelin.token.erc20.library.assert_le": { - "destination": "starkware.cairo.common.math.assert_le", - "type": "alias" - }, - "openzeppelin.token.erc20.library.assert_not_zero": { - "destination": "starkware.cairo.common.math.assert_not_zero", - "type": "alias" - }, - "openzeppelin.token.erc20.library.get_caller_address": { - "destination": "starkware.starknet.common.syscalls.get_caller_address", - "type": "alias" - }, - "openzeppelin.token.erc20.library.uint256_check": { - "destination": "starkware.cairo.common.uint256.uint256_check", - "type": "alias" - }, - "openzeppelin.token.erc20.library.uint256_eq": { - "destination": "starkware.cairo.common.uint256.uint256_eq", - "type": "alias" - }, - "openzeppelin.token.erc20.library.uint256_not": { - "destination": "starkware.cairo.common.uint256.uint256_not", - "type": "alias" - }, - "openzeppelin.utils.constants.library.DEFAULT_ADMIN_ROLE": { - "type": "const", - "value": 0 - }, - "openzeppelin.utils.constants.library.IACCESSCONTROL_ID": { - "type": "const", - "value": 2036718347 - }, - "openzeppelin.utils.constants.library.IACCOUNT_ID": { - "type": "const", - "value": 2792084853 - }, - "openzeppelin.utils.constants.library.IERC1155_ID": { - "type": "const", - "value": 3652614694 - }, - "openzeppelin.utils.constants.library.IERC1155_METADATA_ID": { - "type": "const", - "value": 243872796 - }, - "openzeppelin.utils.constants.library.IERC1155_RECEIVER_ID": { - "type": "const", - "value": 1310921440 - }, - "openzeppelin.utils.constants.library.IERC165_ID": { - "type": "const", - "value": 33540519 - }, - "openzeppelin.utils.constants.library.IERC721_ENUMERABLE_ID": { - "type": "const", - "value": 2014223715 - }, - "openzeppelin.utils.constants.library.IERC721_ID": { - "type": "const", - "value": 2158778573 - }, - "openzeppelin.utils.constants.library.IERC721_METADATA_ID": { - "type": "const", - "value": 1532892063 - }, - "openzeppelin.utils.constants.library.IERC721_RECEIVER_ID": { - "type": "const", - "value": 353073666 - }, - "openzeppelin.utils.constants.library.INVALID_ID": { - "type": "const", - "value": 4294967295 - }, - "openzeppelin.utils.constants.library.ON_ERC1155_BATCH_RECEIVED_SELECTOR": { - "type": "const", - "value": 3155786881 - }, - "openzeppelin.utils.constants.library.ON_ERC1155_RECEIVED_SELECTOR": { - "type": "const", - "value": 4063915617 - }, - "openzeppelin.utils.constants.library.TRANSACTION_VERSION": { - "type": "const", - "value": 1 - }, - "openzeppelin.utils.constants.library.UINT8_MAX": { - "type": "const", - "value": 255 - }, - "starkware.cairo.common.bitwise.ALL_ONES": { - "type": "const", - "value": -106710729501573572985208420194530329073740042555888586719234 - }, - "starkware.cairo.common.bitwise.BitwiseBuiltin": { - "destination": "starkware.cairo.common.cairo_builtins.BitwiseBuiltin", - "type": "alias" - }, - "starkware.cairo.common.bool.FALSE": { - "type": "const", - "value": 0 - }, - "starkware.cairo.common.bool.TRUE": { - "type": "const", - "value": 1 - }, - "starkware.cairo.common.cairo_builtins.BitwiseBuiltin": { - "full_name": "starkware.cairo.common.cairo_builtins.BitwiseBuiltin", - "members": { - "x": { - "cairo_type": "felt", - "offset": 0 - }, - "x_and_y": { - "cairo_type": "felt", - "offset": 2 - }, - "x_or_y": { - "cairo_type": "felt", - "offset": 4 - }, - "x_xor_y": { - "cairo_type": "felt", - "offset": 3 - }, - "y": { - "cairo_type": "felt", - "offset": 1 - } - }, - "size": 5, - "type": "struct" - }, - "starkware.cairo.common.cairo_builtins.EcOpBuiltin": { - "full_name": "starkware.cairo.common.cairo_builtins.EcOpBuiltin", - "members": { - "m": { - "cairo_type": "felt", - "offset": 4 - }, - "p": { - "cairo_type": "starkware.cairo.common.ec_point.EcPoint", - "offset": 0 - }, - "q": { - "cairo_type": "starkware.cairo.common.ec_point.EcPoint", - "offset": 2 - }, - "r": { - "cairo_type": "starkware.cairo.common.ec_point.EcPoint", - "offset": 5 - } - }, - "size": 7, - "type": "struct" - }, - "starkware.cairo.common.cairo_builtins.EcPoint": { - "destination": "starkware.cairo.common.ec_point.EcPoint", - "type": "alias" - }, - "starkware.cairo.common.cairo_builtins.HashBuiltin": { - "full_name": "starkware.cairo.common.cairo_builtins.HashBuiltin", - "members": { - "result": { - "cairo_type": "felt", - "offset": 2 - }, - "x": { - "cairo_type": "felt", - "offset": 0 - }, - "y": { - "cairo_type": "felt", - "offset": 1 - } - }, - "size": 3, - "type": "struct" - }, - "starkware.cairo.common.cairo_builtins.KeccakBuiltin": { - "full_name": "starkware.cairo.common.cairo_builtins.KeccakBuiltin", - "members": { - "input": { - "cairo_type": "starkware.cairo.common.keccak_state.KeccakBuiltinState", - "offset": 0 - }, - "output": { - "cairo_type": "starkware.cairo.common.keccak_state.KeccakBuiltinState", - "offset": 8 - } - }, - "size": 16, - "type": "struct" - }, - "starkware.cairo.common.cairo_builtins.KeccakBuiltinState": { - "destination": "starkware.cairo.common.keccak_state.KeccakBuiltinState", - "type": "alias" - }, - "starkware.cairo.common.cairo_builtins.PoseidonBuiltin": { - "full_name": "starkware.cairo.common.cairo_builtins.PoseidonBuiltin", - "members": { - "input": { - "cairo_type": "starkware.cairo.common.poseidon_state.PoseidonBuiltinState", - "offset": 0 - }, - "output": { - "cairo_type": "starkware.cairo.common.poseidon_state.PoseidonBuiltinState", - "offset": 3 - } - }, - "size": 6, - "type": "struct" - }, - "starkware.cairo.common.cairo_builtins.PoseidonBuiltinState": { - "destination": "starkware.cairo.common.poseidon_state.PoseidonBuiltinState", - "type": "alias" - }, - "starkware.cairo.common.cairo_builtins.SignatureBuiltin": { - "full_name": "starkware.cairo.common.cairo_builtins.SignatureBuiltin", - "members": { - "message": { - "cairo_type": "felt", - "offset": 1 - }, - "pub_key": { - "cairo_type": "felt", - "offset": 0 - } - }, - "size": 2, - "type": "struct" - }, - "starkware.cairo.common.dict_access.DictAccess": { - "full_name": "starkware.cairo.common.dict_access.DictAccess", - "members": { - "key": { - "cairo_type": "felt", - "offset": 0 - }, - "new_value": { - "cairo_type": "felt", - "offset": 2 - }, - "prev_value": { - "cairo_type": "felt", - "offset": 1 - } - }, - "size": 3, - "type": "struct" - }, - "starkware.cairo.common.ec_point.EcPoint": { - "full_name": "starkware.cairo.common.ec_point.EcPoint", - "members": { - "x": { - "cairo_type": "felt", - "offset": 0 - }, - "y": { - "cairo_type": "felt", - "offset": 1 - } - }, - "size": 2, - "type": "struct" - }, - "starkware.cairo.common.hash.HashBuiltin": { - "destination": "starkware.cairo.common.cairo_builtins.HashBuiltin", - "type": "alias" - }, - "starkware.cairo.common.keccak_state.KeccakBuiltinState": { - "full_name": "starkware.cairo.common.keccak_state.KeccakBuiltinState", - "members": { - "s0": { - "cairo_type": "felt", - "offset": 0 - }, - "s1": { - "cairo_type": "felt", - "offset": 1 - }, - "s2": { - "cairo_type": "felt", - "offset": 2 - }, - "s3": { - "cairo_type": "felt", - "offset": 3 - }, - "s4": { - "cairo_type": "felt", - "offset": 4 - }, - "s5": { - "cairo_type": "felt", - "offset": 5 - }, - "s6": { - "cairo_type": "felt", - "offset": 6 - }, - "s7": { - "cairo_type": "felt", - "offset": 7 - } - }, - "size": 8, - "type": "struct" - }, - "starkware.cairo.common.math.FALSE": { - "destination": "starkware.cairo.common.bool.FALSE", - "type": "alias" - }, - "starkware.cairo.common.math.TRUE": { - "destination": "starkware.cairo.common.bool.TRUE", - "type": "alias" - }, - "starkware.cairo.common.math.assert_le_felt": { - "decorators": [ - "known_ap_change" - ], - "pc": 23, - "type": "function" - }, - "starkware.cairo.common.math.assert_le_felt.Args": { - "full_name": "starkware.cairo.common.math.assert_le_felt.Args", - "members": { - "a": { - "cairo_type": "felt", - "offset": 0 - }, - "b": { - "cairo_type": "felt", - "offset": 1 - } - }, - "size": 2, - "type": "struct" - }, - "starkware.cairo.common.math.assert_le_felt.ImplicitArgs": { - "full_name": "starkware.cairo.common.math.assert_le_felt.ImplicitArgs", - "members": { - "range_check_ptr": { - "cairo_type": "felt", - "offset": 0 - } - }, - "size": 1, - "type": "struct" - }, - "starkware.cairo.common.math.assert_le_felt.PRIME_OVER_2_HIGH": { - "type": "const", - "value": 5316911983139663648412552867652567041 - }, - "starkware.cairo.common.math.assert_le_felt.PRIME_OVER_3_HIGH": { - "type": "const", - "value": 3544607988759775765608368578435044694 - }, - "starkware.cairo.common.math.assert_le_felt.Return": { - "cairo_type": "()", - "type": "type_definition" - }, - "starkware.cairo.common.math.assert_le_felt.SIZEOF_LOCALS": { - "type": "const", - "value": 0 - }, - "starkware.cairo.common.math.assert_le_felt.a": { - "cairo_type": "felt", - "full_name": "starkware.cairo.common.math.assert_le_felt.a", - "references": [ - { - "ap_tracking_data": { - "group": 3, - "offset": 0 - }, - "pc": 23, - "value": "[cast(fp + (-4), felt*)]" - } - ], - "type": "reference" - }, - "starkware.cairo.common.math.assert_le_felt.b": { - "cairo_type": "felt", - "full_name": "starkware.cairo.common.math.assert_le_felt.b", - "references": [ - { - "ap_tracking_data": { - "group": 3, - "offset": 0 - }, - "pc": 23, - "value": "[cast(fp + (-3), felt*)]" - } - ], - "type": "reference" - }, - "starkware.cairo.common.math.assert_le_felt.range_check_ptr": { - "cairo_type": "felt", - "full_name": "starkware.cairo.common.math.assert_le_felt.range_check_ptr", - "references": [ - { - "ap_tracking_data": { - "group": 3, - "offset": 0 - }, - "pc": 23, - "value": "[cast(fp + (-5), felt*)]" - }, - { - "ap_tracking_data": { - "group": 3, - "offset": 8 - }, - "pc": 33, - "value": "cast([fp + (-5)] + 4, felt)" - } - ], - "type": "reference" - }, - "starkware.cairo.common.math.assert_le_felt.skip_exclude_a": { - "pc": 47, - "type": "label" - }, - "starkware.cairo.common.math.assert_le_felt.skip_exclude_b_minus_a": { - "pc": 59, - "type": "label" - }, - "starkware.cairo.common.math_cmp.RC_BOUND": { - "type": "const", - "value": 340282366920938463463374607431768211456 - }, - "starkware.cairo.common.math_cmp.assert_le_felt": { - "destination": "starkware.cairo.common.math.assert_le_felt", - "type": "alias" - }, - "starkware.cairo.common.math_cmp.assert_lt_felt": { - "destination": "starkware.cairo.common.math.assert_lt_felt", - "type": "alias" - }, - "starkware.cairo.common.math_cmp.is_le": { - "decorators": [ - "known_ap_change" - ], - "pc": 101, - "type": "function" - }, - "starkware.cairo.common.math_cmp.is_le.Args": { - "full_name": "starkware.cairo.common.math_cmp.is_le.Args", - "members": { - "a": { - "cairo_type": "felt", - "offset": 0 - }, - "b": { - "cairo_type": "felt", - "offset": 1 - } - }, - "size": 2, - "type": "struct" - }, - "starkware.cairo.common.math_cmp.is_le.ImplicitArgs": { - "full_name": "starkware.cairo.common.math_cmp.is_le.ImplicitArgs", - "members": { - "range_check_ptr": { - "cairo_type": "felt", - "offset": 0 - } - }, - "size": 1, - "type": "struct" - }, - "starkware.cairo.common.math_cmp.is_le.Return": { - "cairo_type": "felt", - "type": "type_definition" - }, - "starkware.cairo.common.math_cmp.is_le.SIZEOF_LOCALS": { - "type": "const", - "value": 0 - }, - "starkware.cairo.common.math_cmp.is_nn": { - "decorators": [ - "known_ap_change" - ], - "pc": 68, - "type": "function" - }, - "starkware.cairo.common.math_cmp.is_nn.Args": { - "full_name": "starkware.cairo.common.math_cmp.is_nn.Args", - "members": { - "a": { - "cairo_type": "felt", - "offset": 0 - } - }, - "size": 1, - "type": "struct" - }, - "starkware.cairo.common.math_cmp.is_nn.ImplicitArgs": { - "full_name": "starkware.cairo.common.math_cmp.is_nn.ImplicitArgs", - "members": { - "range_check_ptr": { - "cairo_type": "felt", - "offset": 0 - } - }, - "size": 1, - "type": "struct" - }, - "starkware.cairo.common.math_cmp.is_nn.Return": { - "cairo_type": "felt", - "type": "type_definition" - }, - "starkware.cairo.common.math_cmp.is_nn.SIZEOF_LOCALS": { - "type": "const", - "value": 0 - }, - "starkware.cairo.common.math_cmp.is_nn.a": { - "cairo_type": "felt", - "full_name": "starkware.cairo.common.math_cmp.is_nn.a", - "references": [ - { - "ap_tracking_data": { - "group": 4, - "offset": 0 - }, - "pc": 68, - "value": "[cast(fp + (-3), felt*)]" - } - ], - "type": "reference" - }, - "starkware.cairo.common.math_cmp.is_nn.need_felt_comparison": { - "pc": 92, - "type": "label" - }, - "starkware.cairo.common.math_cmp.is_nn.out_of_range": { - "pc": 78, - "type": "label" - }, - "starkware.cairo.common.poseidon_state.PoseidonBuiltinState": { - "full_name": "starkware.cairo.common.poseidon_state.PoseidonBuiltinState", - "members": { - "s0": { - "cairo_type": "felt", - "offset": 0 - }, - "s1": { - "cairo_type": "felt", - "offset": 1 - }, - "s2": { - "cairo_type": "felt", - "offset": 2 - } - }, - "size": 3, - "type": "struct" - }, - "starkware.cairo.common.pow.assert_le": { - "destination": "starkware.cairo.common.math.assert_le", - "type": "alias" - }, - "starkware.cairo.common.pow.get_ap": { - "destination": "starkware.cairo.common.registers.get_ap", - "type": "alias" - }, - "starkware.cairo.common.pow.get_fp_and_pc": { - "destination": "starkware.cairo.common.registers.get_fp_and_pc", - "type": "alias" - }, - "starkware.cairo.common.registers.get_ap": { - "destination": "starkware.cairo.lang.compiler.lib.registers.get_ap", - "type": "alias" - }, - "starkware.cairo.common.registers.get_fp_and_pc": { - "destination": "starkware.cairo.lang.compiler.lib.registers.get_fp_and_pc", - "type": "alias" - }, - "starkware.cairo.common.uint256.ALL_ONES": { - "type": "const", - "value": 340282366920938463463374607431768211455 - }, - "starkware.cairo.common.uint256.BitwiseBuiltin": { - "destination": "starkware.cairo.common.cairo_builtins.BitwiseBuiltin", - "type": "alias" - }, - "starkware.cairo.common.uint256.HALF_SHIFT": { - "type": "const", - "value": 18446744073709551616 - }, - "starkware.cairo.common.uint256.SHIFT": { - "type": "const", - "value": 340282366920938463463374607431768211456 - }, - "starkware.cairo.common.uint256.Uint256": { - "full_name": "starkware.cairo.common.uint256.Uint256", - "members": { - "high": { - "cairo_type": "felt", - "offset": 1 - }, - "low": { - "cairo_type": "felt", - "offset": 0 - } - }, - "size": 2, - "type": "struct" - }, - "starkware.cairo.common.uint256.assert_in_range": { - "destination": "starkware.cairo.common.math.assert_in_range", - "type": "alias" - }, - "starkware.cairo.common.uint256.assert_le": { - "destination": "starkware.cairo.common.math.assert_le", - "type": "alias" - }, - "starkware.cairo.common.uint256.assert_nn_le": { - "destination": "starkware.cairo.common.math.assert_nn_le", - "type": "alias" - }, - "starkware.cairo.common.uint256.assert_not_zero": { - "destination": "starkware.cairo.common.math.assert_not_zero", - "type": "alias" - }, - "starkware.cairo.common.uint256.bitwise_and": { - "destination": "starkware.cairo.common.bitwise.bitwise_and", - "type": "alias" - }, - "starkware.cairo.common.uint256.bitwise_or": { - "destination": "starkware.cairo.common.bitwise.bitwise_or", - "type": "alias" - }, - "starkware.cairo.common.uint256.bitwise_xor": { - "destination": "starkware.cairo.common.bitwise.bitwise_xor", - "type": "alias" - }, - "starkware.cairo.common.uint256.get_ap": { - "destination": "starkware.cairo.common.registers.get_ap", - "type": "alias" - }, - "starkware.cairo.common.uint256.get_fp_and_pc": { - "destination": "starkware.cairo.common.registers.get_fp_and_pc", - "type": "alias" - }, - "starkware.cairo.common.uint256.is_le": { - "destination": "starkware.cairo.common.math_cmp.is_le", - "type": "alias" - }, - "starkware.cairo.common.uint256.pow": { - "destination": "starkware.cairo.common.pow.pow", - "type": "alias" - }, - "starkware.cairo.common.uint256.uint256_le": { - "decorators": [], - "pc": 123, - "type": "function" - }, - "starkware.cairo.common.uint256.uint256_le.Args": { - "full_name": "starkware.cairo.common.uint256.uint256_le.Args", - "members": { - "a": { - "cairo_type": "starkware.cairo.common.uint256.Uint256", - "offset": 0 - }, - "b": { - "cairo_type": "starkware.cairo.common.uint256.Uint256", - "offset": 2 - } - }, - "size": 4, - "type": "struct" - }, - "starkware.cairo.common.uint256.uint256_le.ImplicitArgs": { - "full_name": "starkware.cairo.common.uint256.uint256_le.ImplicitArgs", - "members": { - "range_check_ptr": { - "cairo_type": "felt", - "offset": 0 - } - }, - "size": 1, - "type": "struct" - }, - "starkware.cairo.common.uint256.uint256_le.Return": { - "cairo_type": "(res: felt)", - "type": "type_definition" - }, - "starkware.cairo.common.uint256.uint256_le.SIZEOF_LOCALS": { - "type": "const", - "value": 0 - }, - "starkware.cairo.common.uint256.uint256_lt": { - "decorators": [], - "pc": 106, - "type": "function" - }, - "starkware.cairo.common.uint256.uint256_lt.Args": { - "full_name": "starkware.cairo.common.uint256.uint256_lt.Args", - "members": { - "a": { - "cairo_type": "starkware.cairo.common.uint256.Uint256", - "offset": 0 - }, - "b": { - "cairo_type": "starkware.cairo.common.uint256.Uint256", - "offset": 2 - } - }, - "size": 4, - "type": "struct" - }, - "starkware.cairo.common.uint256.uint256_lt.ImplicitArgs": { - "full_name": "starkware.cairo.common.uint256.uint256_lt.ImplicitArgs", - "members": { - "range_check_ptr": { - "cairo_type": "felt", - "offset": 0 - } - }, - "size": 1, - "type": "struct" - }, - "starkware.cairo.common.uint256.uint256_lt.Return": { - "cairo_type": "(res: felt)", - "type": "type_definition" - }, - "starkware.cairo.common.uint256.uint256_lt.SIZEOF_LOCALS": { - "type": "const", - "value": 0 - }, - "starkware.starknet.common.storage.ADDR_BOUND": { - "type": "const", - "value": -106710729501573572985208420194530329073740042555888586719489 - }, - "starkware.starknet.common.storage.MAX_STORAGE_ITEM_SIZE": { - "type": "const", - "value": 256 - }, - "starkware.starknet.common.storage.assert_250_bit": { - "destination": "starkware.cairo.common.math.assert_250_bit", - "type": "alias" - }, - "starkware.starknet.common.syscalls.CALL_CONTRACT_SELECTOR": { - "type": "const", - "value": 20853273475220472486191784820 - }, - "starkware.starknet.common.syscalls.CallContract": { - "full_name": "starkware.starknet.common.syscalls.CallContract", - "members": { - "request": { - "cairo_type": "starkware.starknet.common.syscalls.CallContractRequest", - "offset": 0 - }, - "response": { - "cairo_type": "starkware.starknet.common.syscalls.CallContractResponse", - "offset": 5 - } - }, - "size": 7, - "type": "struct" - }, - "starkware.starknet.common.syscalls.CallContractRequest": { - "full_name": "starkware.starknet.common.syscalls.CallContractRequest", - "members": { - "calldata": { - "cairo_type": "felt*", - "offset": 4 - }, - "calldata_size": { - "cairo_type": "felt", - "offset": 3 - }, - "contract_address": { - "cairo_type": "felt", - "offset": 1 - }, - "function_selector": { - "cairo_type": "felt", - "offset": 2 - }, - "selector": { - "cairo_type": "felt", - "offset": 0 - } - }, - "size": 5, - "type": "struct" - }, - "starkware.starknet.common.syscalls.CallContractResponse": { - "full_name": "starkware.starknet.common.syscalls.CallContractResponse", - "members": { - "retdata": { - "cairo_type": "felt*", - "offset": 1 - }, - "retdata_size": { - "cairo_type": "felt", - "offset": 0 - } - }, - "size": 2, - "type": "struct" - }, - "starkware.starknet.common.syscalls.DELEGATE_CALL_SELECTOR": { - "type": "const", - "value": 21167594061783206823196716140 - }, - "starkware.starknet.common.syscalls.DELEGATE_L1_HANDLER_SELECTOR": { - "type": "const", - "value": 23274015802972845247556842986379118667122 - }, - "starkware.starknet.common.syscalls.DEPLOY_SELECTOR": { - "type": "const", - "value": 75202468540281 - }, - "starkware.starknet.common.syscalls.Deploy": { - "full_name": "starkware.starknet.common.syscalls.Deploy", - "members": { - "request": { - "cairo_type": "starkware.starknet.common.syscalls.DeployRequest", - "offset": 0 - }, - "response": { - "cairo_type": "starkware.starknet.common.syscalls.DeployResponse", - "offset": 6 - } - }, - "size": 9, - "type": "struct" - }, - "starkware.starknet.common.syscalls.DeployRequest": { - "full_name": "starkware.starknet.common.syscalls.DeployRequest", - "members": { - "class_hash": { - "cairo_type": "felt", - "offset": 1 - }, - "constructor_calldata": { - "cairo_type": "felt*", - "offset": 4 - }, - "constructor_calldata_size": { - "cairo_type": "felt", - "offset": 3 - }, - "contract_address_salt": { - "cairo_type": "felt", - "offset": 2 - }, - "deploy_from_zero": { - "cairo_type": "felt", - "offset": 5 - }, - "selector": { - "cairo_type": "felt", - "offset": 0 - } - }, - "size": 6, - "type": "struct" - }, - "starkware.starknet.common.syscalls.DeployResponse": { - "full_name": "starkware.starknet.common.syscalls.DeployResponse", - "members": { - "constructor_retdata": { - "cairo_type": "felt*", - "offset": 2 - }, - "constructor_retdata_size": { - "cairo_type": "felt", - "offset": 1 - }, - "contract_address": { - "cairo_type": "felt", - "offset": 0 - } - }, - "size": 3, - "type": "struct" - }, - "starkware.starknet.common.syscalls.DictAccess": { - "destination": "starkware.cairo.common.dict_access.DictAccess", - "type": "alias" - }, - "starkware.starknet.common.syscalls.EMIT_EVENT_SELECTOR": { - "type": "const", - "value": 1280709301550335749748 - }, - "starkware.starknet.common.syscalls.EmitEvent": { - "full_name": "starkware.starknet.common.syscalls.EmitEvent", - "members": { - "data": { - "cairo_type": "felt*", - "offset": 4 - }, - "data_len": { - "cairo_type": "felt", - "offset": 3 - }, - "keys": { - "cairo_type": "felt*", - "offset": 2 - }, - "keys_len": { - "cairo_type": "felt", - "offset": 1 - }, - "selector": { - "cairo_type": "felt", - "offset": 0 - } - }, - "size": 5, - "type": "struct" - }, - "starkware.starknet.common.syscalls.GET_BLOCK_NUMBER_SELECTOR": { - "type": "const", - "value": 1448089106835523001438702345020786 - }, - "starkware.starknet.common.syscalls.GET_BLOCK_TIMESTAMP_SELECTOR": { - "type": "const", - "value": 24294903732626645868215235778792757751152 - }, - "starkware.starknet.common.syscalls.GET_CALLER_ADDRESS_SELECTOR": { - "type": "const", - "value": 94901967781393078444254803017658102643 - }, - "starkware.starknet.common.syscalls.GET_CONTRACT_ADDRESS_SELECTOR": { - "type": "const", - "value": 6219495360805491471215297013070624192820083 - }, - "starkware.starknet.common.syscalls.GET_SEQUENCER_ADDRESS_SELECTOR": { - "type": "const", - "value": 1592190833581991703053805829594610833820054387 - }, - "starkware.starknet.common.syscalls.GET_TX_INFO_SELECTOR": { - "type": "const", - "value": 1317029390204112103023 - }, - "starkware.starknet.common.syscalls.GET_TX_SIGNATURE_SELECTOR": { - "type": "const", - "value": 1448089128652340074717162277007973 - }, - "starkware.starknet.common.syscalls.GetBlockNumber": { - "full_name": "starkware.starknet.common.syscalls.GetBlockNumber", - "members": { - "request": { - "cairo_type": "starkware.starknet.common.syscalls.GetBlockNumberRequest", - "offset": 0 - }, - "response": { - "cairo_type": "starkware.starknet.common.syscalls.GetBlockNumberResponse", - "offset": 1 - } - }, - "size": 2, - "type": "struct" - }, - "starkware.starknet.common.syscalls.GetBlockNumberRequest": { - "full_name": "starkware.starknet.common.syscalls.GetBlockNumberRequest", - "members": { - "selector": { - "cairo_type": "felt", - "offset": 0 - } - }, - "size": 1, - "type": "struct" - }, - "starkware.starknet.common.syscalls.GetBlockNumberResponse": { - "full_name": "starkware.starknet.common.syscalls.GetBlockNumberResponse", - "members": { - "block_number": { - "cairo_type": "felt", - "offset": 0 - } - }, - "size": 1, - "type": "struct" - }, - "starkware.starknet.common.syscalls.GetBlockTimestamp": { - "full_name": "starkware.starknet.common.syscalls.GetBlockTimestamp", - "members": { - "request": { - "cairo_type": "starkware.starknet.common.syscalls.GetBlockTimestampRequest", - "offset": 0 - }, - "response": { - "cairo_type": "starkware.starknet.common.syscalls.GetBlockTimestampResponse", - "offset": 1 - } - }, - "size": 2, - "type": "struct" - }, - "starkware.starknet.common.syscalls.GetBlockTimestampRequest": { - "full_name": "starkware.starknet.common.syscalls.GetBlockTimestampRequest", - "members": { - "selector": { - "cairo_type": "felt", - "offset": 0 - } - }, - "size": 1, - "type": "struct" - }, - "starkware.starknet.common.syscalls.GetBlockTimestampResponse": { - "full_name": "starkware.starknet.common.syscalls.GetBlockTimestampResponse", - "members": { - "block_timestamp": { - "cairo_type": "felt", - "offset": 0 - } - }, - "size": 1, - "type": "struct" - }, - "starkware.starknet.common.syscalls.GetCallerAddress": { - "full_name": "starkware.starknet.common.syscalls.GetCallerAddress", - "members": { - "request": { - "cairo_type": "starkware.starknet.common.syscalls.GetCallerAddressRequest", - "offset": 0 - }, - "response": { - "cairo_type": "starkware.starknet.common.syscalls.GetCallerAddressResponse", - "offset": 1 - } - }, - "size": 2, - "type": "struct" - }, - "starkware.starknet.common.syscalls.GetCallerAddressRequest": { - "full_name": "starkware.starknet.common.syscalls.GetCallerAddressRequest", - "members": { - "selector": { - "cairo_type": "felt", - "offset": 0 - } - }, - "size": 1, - "type": "struct" - }, - "starkware.starknet.common.syscalls.GetCallerAddressResponse": { - "full_name": "starkware.starknet.common.syscalls.GetCallerAddressResponse", - "members": { - "caller_address": { - "cairo_type": "felt", - "offset": 0 - } - }, - "size": 1, - "type": "struct" - }, - "starkware.starknet.common.syscalls.GetContractAddress": { - "full_name": "starkware.starknet.common.syscalls.GetContractAddress", - "members": { - "request": { - "cairo_type": "starkware.starknet.common.syscalls.GetContractAddressRequest", - "offset": 0 - }, - "response": { - "cairo_type": "starkware.starknet.common.syscalls.GetContractAddressResponse", - "offset": 1 - } - }, - "size": 2, - "type": "struct" - }, - "starkware.starknet.common.syscalls.GetContractAddressRequest": { - "full_name": "starkware.starknet.common.syscalls.GetContractAddressRequest", - "members": { - "selector": { - "cairo_type": "felt", - "offset": 0 - } - }, - "size": 1, - "type": "struct" - }, - "starkware.starknet.common.syscalls.GetContractAddressResponse": { - "full_name": "starkware.starknet.common.syscalls.GetContractAddressResponse", - "members": { - "contract_address": { - "cairo_type": "felt", - "offset": 0 - } - }, - "size": 1, - "type": "struct" - }, - "starkware.starknet.common.syscalls.GetSequencerAddress": { - "full_name": "starkware.starknet.common.syscalls.GetSequencerAddress", - "members": { - "request": { - "cairo_type": "starkware.starknet.common.syscalls.GetSequencerAddressRequest", - "offset": 0 - }, - "response": { - "cairo_type": "starkware.starknet.common.syscalls.GetSequencerAddressResponse", - "offset": 1 - } - }, - "size": 2, - "type": "struct" - }, - "starkware.starknet.common.syscalls.GetSequencerAddressRequest": { - "full_name": "starkware.starknet.common.syscalls.GetSequencerAddressRequest", - "members": { - "selector": { - "cairo_type": "felt", - "offset": 0 - } - }, - "size": 1, - "type": "struct" - }, - "starkware.starknet.common.syscalls.GetSequencerAddressResponse": { - "full_name": "starkware.starknet.common.syscalls.GetSequencerAddressResponse", - "members": { - "sequencer_address": { - "cairo_type": "felt", - "offset": 0 - } - }, - "size": 1, - "type": "struct" - }, - "starkware.starknet.common.syscalls.GetTxInfo": { - "full_name": "starkware.starknet.common.syscalls.GetTxInfo", - "members": { - "request": { - "cairo_type": "starkware.starknet.common.syscalls.GetTxInfoRequest", - "offset": 0 - }, - "response": { - "cairo_type": "starkware.starknet.common.syscalls.GetTxInfoResponse", - "offset": 1 - } - }, - "size": 2, - "type": "struct" - }, - "starkware.starknet.common.syscalls.GetTxInfoRequest": { - "full_name": "starkware.starknet.common.syscalls.GetTxInfoRequest", - "members": { - "selector": { - "cairo_type": "felt", - "offset": 0 - } - }, - "size": 1, - "type": "struct" - }, - "starkware.starknet.common.syscalls.GetTxInfoResponse": { - "full_name": "starkware.starknet.common.syscalls.GetTxInfoResponse", - "members": { - "tx_info": { - "cairo_type": "starkware.starknet.common.syscalls.TxInfo*", - "offset": 0 - } - }, - "size": 1, - "type": "struct" - }, - "starkware.starknet.common.syscalls.GetTxSignature": { - "full_name": "starkware.starknet.common.syscalls.GetTxSignature", - "members": { - "request": { - "cairo_type": "starkware.starknet.common.syscalls.GetTxSignatureRequest", - "offset": 0 - }, - "response": { - "cairo_type": "starkware.starknet.common.syscalls.GetTxSignatureResponse", - "offset": 1 - } - }, - "size": 3, - "type": "struct" - }, - "starkware.starknet.common.syscalls.GetTxSignatureRequest": { - "full_name": "starkware.starknet.common.syscalls.GetTxSignatureRequest", - "members": { - "selector": { - "cairo_type": "felt", - "offset": 0 - } - }, - "size": 1, - "type": "struct" - }, - "starkware.starknet.common.syscalls.GetTxSignatureResponse": { - "full_name": "starkware.starknet.common.syscalls.GetTxSignatureResponse", - "members": { - "signature": { - "cairo_type": "felt*", - "offset": 1 - }, - "signature_len": { - "cairo_type": "felt", - "offset": 0 - } - }, - "size": 2, - "type": "struct" - }, - "starkware.starknet.common.syscalls.LIBRARY_CALL_L1_HANDLER_SELECTOR": { - "type": "const", - "value": 436233452754198157705746250789557519228244616562 - }, - "starkware.starknet.common.syscalls.LIBRARY_CALL_SELECTOR": { - "type": "const", - "value": 92376026794327011772951660 - }, - "starkware.starknet.common.syscalls.LibraryCall": { - "full_name": "starkware.starknet.common.syscalls.LibraryCall", - "members": { - "request": { - "cairo_type": "starkware.starknet.common.syscalls.LibraryCallRequest", - "offset": 0 - }, - "response": { - "cairo_type": "starkware.starknet.common.syscalls.CallContractResponse", - "offset": 5 - } - }, - "size": 7, - "type": "struct" - }, - "starkware.starknet.common.syscalls.LibraryCallRequest": { - "full_name": "starkware.starknet.common.syscalls.LibraryCallRequest", - "members": { - "calldata": { - "cairo_type": "felt*", - "offset": 4 - }, - "calldata_size": { - "cairo_type": "felt", - "offset": 3 - }, - "class_hash": { - "cairo_type": "felt", - "offset": 1 - }, - "function_selector": { - "cairo_type": "felt", - "offset": 2 - }, - "selector": { - "cairo_type": "felt", - "offset": 0 - } - }, - "size": 5, - "type": "struct" - }, - "starkware.starknet.common.syscalls.REPLACE_CLASS_SELECTOR": { - "type": "const", - "value": 25500403217443378527601783667 - }, - "starkware.starknet.common.syscalls.ReplaceClass": { - "full_name": "starkware.starknet.common.syscalls.ReplaceClass", - "members": { - "class_hash": { - "cairo_type": "felt", - "offset": 1 - }, - "selector": { - "cairo_type": "felt", - "offset": 0 - } - }, - "size": 2, - "type": "struct" - }, - "starkware.starknet.common.syscalls.SEND_MESSAGE_TO_L1_SELECTOR": { - "type": "const", - "value": 433017908768303439907196859243777073 - }, - "starkware.starknet.common.syscalls.STORAGE_READ_SELECTOR": { - "type": "const", - "value": 100890693370601760042082660 - }, - "starkware.starknet.common.syscalls.STORAGE_WRITE_SELECTOR": { - "type": "const", - "value": 25828017502874050592466629733 - }, - "starkware.starknet.common.syscalls.SendMessageToL1SysCall": { - "full_name": "starkware.starknet.common.syscalls.SendMessageToL1SysCall", - "members": { - "payload_ptr": { - "cairo_type": "felt*", - "offset": 3 - }, - "payload_size": { - "cairo_type": "felt", - "offset": 2 - }, - "selector": { - "cairo_type": "felt", - "offset": 0 - }, - "to_address": { - "cairo_type": "felt", - "offset": 1 - } - }, - "size": 4, - "type": "struct" - }, - "starkware.starknet.common.syscalls.StorageRead": { - "full_name": "starkware.starknet.common.syscalls.StorageRead", - "members": { - "request": { - "cairo_type": "starkware.starknet.common.syscalls.StorageReadRequest", - "offset": 0 - }, - "response": { - "cairo_type": "starkware.starknet.common.syscalls.StorageReadResponse", - "offset": 2 - } - }, - "size": 3, - "type": "struct" - }, - "starkware.starknet.common.syscalls.StorageReadRequest": { - "full_name": "starkware.starknet.common.syscalls.StorageReadRequest", - "members": { - "address": { - "cairo_type": "felt", - "offset": 1 - }, - "selector": { - "cairo_type": "felt", - "offset": 0 - } - }, - "size": 2, - "type": "struct" - }, - "starkware.starknet.common.syscalls.StorageReadResponse": { - "full_name": "starkware.starknet.common.syscalls.StorageReadResponse", - "members": { - "value": { - "cairo_type": "felt", - "offset": 0 - } - }, - "size": 1, - "type": "struct" - }, - "starkware.starknet.common.syscalls.StorageWrite": { - "full_name": "starkware.starknet.common.syscalls.StorageWrite", - "members": { - "address": { - "cairo_type": "felt", - "offset": 1 - }, - "selector": { - "cairo_type": "felt", - "offset": 0 - }, - "value": { - "cairo_type": "felt", - "offset": 2 - } - }, - "size": 3, - "type": "struct" - }, - "starkware.starknet.common.syscalls.TxInfo": { - "full_name": "starkware.starknet.common.syscalls.TxInfo", - "members": { - "account_contract_address": { - "cairo_type": "felt", - "offset": 1 - }, - "chain_id": { - "cairo_type": "felt", - "offset": 6 - }, - "max_fee": { - "cairo_type": "felt", - "offset": 2 - }, - "nonce": { - "cairo_type": "felt", - "offset": 7 - }, - "signature": { - "cairo_type": "felt*", - "offset": 4 - }, - "signature_len": { - "cairo_type": "felt", - "offset": 3 - }, - "transaction_hash": { - "cairo_type": "felt", - "offset": 5 - }, - "version": { - "cairo_type": "felt", - "offset": 0 - } - }, - "size": 8, - "type": "struct" - }, - "starkware.starknet.common.syscalls.get_caller_address": { - "decorators": [], - "pc": 0, - "type": "function" - }, - "starkware.starknet.common.syscalls.get_caller_address.Args": { - "full_name": "starkware.starknet.common.syscalls.get_caller_address.Args", - "members": {}, - "size": 0, - "type": "struct" - }, - "starkware.starknet.common.syscalls.get_caller_address.ImplicitArgs": { - "full_name": "starkware.starknet.common.syscalls.get_caller_address.ImplicitArgs", - "members": { - "syscall_ptr": { - "cairo_type": "felt*", - "offset": 0 - } - }, - "size": 1, - "type": "struct" - }, - "starkware.starknet.common.syscalls.get_caller_address.Return": { - "cairo_type": "(caller_address: felt)", - "type": "type_definition" - }, - "starkware.starknet.common.syscalls.get_caller_address.SIZEOF_LOCALS": { - "type": "const", - "value": 0 - }, - "starkware.starknet.common.syscalls.get_caller_address.syscall_ptr": { - "cairo_type": "felt*", - "full_name": "starkware.starknet.common.syscalls.get_caller_address.syscall_ptr", - "references": [ - { - "ap_tracking_data": { - "group": 0, - "offset": 0 - }, - "pc": 0, - "value": "[cast(fp + (-3), felt**)]" - }, - { - "ap_tracking_data": { - "group": 0, - "offset": 1 - }, - "pc": 3, - "value": "cast([fp + (-3)] + 2, felt*)" - } - ], - "type": "reference" - }, - "starkware.starknet.common.syscalls.storage_read": { - "decorators": [], - "pc": 7, - "type": "function" - }, - "starkware.starknet.common.syscalls.storage_read.Args": { - "full_name": "starkware.starknet.common.syscalls.storage_read.Args", - "members": { - "address": { - "cairo_type": "felt", - "offset": 0 - } - }, - "size": 1, - "type": "struct" - }, - "starkware.starknet.common.syscalls.storage_read.ImplicitArgs": { - "full_name": "starkware.starknet.common.syscalls.storage_read.ImplicitArgs", - "members": { - "syscall_ptr": { - "cairo_type": "felt*", - "offset": 0 - } - }, - "size": 1, - "type": "struct" - }, - "starkware.starknet.common.syscalls.storage_read.Return": { - "cairo_type": "(value: felt)", - "type": "type_definition" - }, - "starkware.starknet.common.syscalls.storage_read.SIZEOF_LOCALS": { - "type": "const", - "value": 0 - }, - "starkware.starknet.common.syscalls.storage_read.syscall_ptr": { - "cairo_type": "felt*", - "full_name": "starkware.starknet.common.syscalls.storage_read.syscall_ptr", - "references": [ - { - "ap_tracking_data": { - "group": 1, - "offset": 0 - }, - "pc": 7, - "value": "[cast(fp + (-4), felt**)]" - }, - { - "ap_tracking_data": { - "group": 1, - "offset": 1 - }, - "pc": 11, - "value": "cast([fp + (-4)] + 3, felt*)" - } - ], - "type": "reference" - }, - "starkware.starknet.common.syscalls.storage_write": { - "decorators": [], - "pc": 15, - "type": "function" - }, - "starkware.starknet.common.syscalls.storage_write.Args": { - "full_name": "starkware.starknet.common.syscalls.storage_write.Args", - "members": { - "address": { - "cairo_type": "felt", - "offset": 0 - }, - "value": { - "cairo_type": "felt", - "offset": 1 - } - }, - "size": 2, - "type": "struct" - }, - "starkware.starknet.common.syscalls.storage_write.ImplicitArgs": { - "full_name": "starkware.starknet.common.syscalls.storage_write.ImplicitArgs", - "members": { - "syscall_ptr": { - "cairo_type": "felt*", - "offset": 0 - } - }, - "size": 1, - "type": "struct" - }, - "starkware.starknet.common.syscalls.storage_write.Return": { - "cairo_type": "()", - "type": "type_definition" - }, - "starkware.starknet.common.syscalls.storage_write.SIZEOF_LOCALS": { - "type": "const", - "value": 0 - }, - "starkware.starknet.common.syscalls.storage_write.syscall_ptr": { - "cairo_type": "felt*", - "full_name": "starkware.starknet.common.syscalls.storage_write.syscall_ptr", - "references": [ - { - "ap_tracking_data": { - "group": 2, - "offset": 0 - }, - "pc": 15, - "value": "[cast(fp + (-5), felt**)]" - }, - { - "ap_tracking_data": { - "group": 2, - "offset": 1 - }, - "pc": 20, - "value": "cast([fp + (-5)] + 3, felt*)" - } - ], - "type": "reference" - } - }, - "main_scope": "__main__", - "prime": "0x800000000000011000000000000000000000000000000000000000000000001", - "reference_manager": { - "references": [ - { - "ap_tracking_data": { - "group": 0, - "offset": 0 - }, - "pc": 0, - "value": "[cast(fp + (-3), felt**)]" - }, - { - "ap_tracking_data": { - "group": 1, - "offset": 0 - }, - "pc": 7, - "value": "[cast(fp + (-4), felt**)]" - }, - { - "ap_tracking_data": { - "group": 2, - "offset": 0 - }, - "pc": 15, - "value": "[cast(fp + (-5), felt**)]" - }, - { - "ap_tracking_data": { - "group": 3, - "offset": 0 - }, - "pc": 23, - "value": "[cast(fp + (-4), felt*)]" - }, - { - "ap_tracking_data": { - "group": 3, - "offset": 0 - }, - "pc": 23, - "value": "[cast(fp + (-3), felt*)]" - }, - { - "ap_tracking_data": { - "group": 3, - "offset": 0 - }, - "pc": 23, - "value": "[cast(fp + (-5), felt*)]" - }, - { - "ap_tracking_data": { - "group": 4, - "offset": 0 - }, - "pc": 68, - "value": "[cast(fp + (-3), felt*)]" - } - ] - } - } -} \ No newline at end of file diff --git a/packages/starksheet-cairo/build/DustyPilotRenderer.json b/packages/starksheet-cairo/build/DustyPilotRenderer.json deleted file mode 100644 index ef6c9c38..00000000 --- a/packages/starksheet-cairo/build/DustyPilotRenderer.json +++ /dev/null @@ -1,33107 +0,0 @@ -{ - "abi": [ - { - "data": [ - { - "name": "previousOwner", - "type": "felt" - }, - { - "name": "newOwner", - "type": "felt" - } - ], - "keys": [], - "name": "OwnershipTransferred", - "type": "event" - }, - { - "inputs": [], - "name": "getOwner", - "outputs": [ - { - "name": "owner", - "type": "felt" - } - ], - "stateMutability": "view", - "type": "function" - }, - { - "inputs": [], - "name": "getThresholds", - "outputs": [ - { - "name": "thresholds_len", - "type": "felt" - }, - { - "name": "thresholds", - "type": "felt*" - } - ], - "stateMutability": "view", - "type": "function" - }, - { - "inputs": [ - { - "name": "thresholds_len", - "type": "felt" - }, - { - "name": "thresholds", - "type": "felt*" - } - ], - "name": "setThresholds", - "outputs": [], - "type": "function" - }, - { - "inputs": [ - { - "name": "new_owner", - "type": "felt" - } - ], - "name": "transferOwnership", - "outputs": [], - "type": "function" - }, - { - "inputs": [ - { - "name": "owner", - "type": "felt" - } - ], - "name": "initialize", - "outputs": [], - "type": "function" - }, - { - "inputs": [ - { - "name": "token_id", - "type": "felt" - }, - { - "name": "value", - "type": "felt" - }, - { - "name": "name", - "type": "felt" - } - ], - "name": "token_uri", - "outputs": [ - { - "name": "token_uri_len", - "type": "felt" - }, - { - "name": "token_uri", - "type": "felt*" - } - ], - "stateMutability": "view", - "type": "function" - } - ], - "entry_points_by_type": { - "CONSTRUCTOR": [], - "EXTERNAL": [ - { - "offset": 836, - "selector": "0x79dc0da7c54b95f10aa182ad0a46400db63156920adb65eca2654c0945a463" - }, - { - "offset": 680, - "selector": "0x8304f53f1deaacf83ba04a3ca4e8e63a8bc5fe374bdc3017fab960fe5b29c2" - }, - { - "offset": 800, - "selector": "0x14a390f291e2e1f29874769efdef47ddad94d76f77ff516fad206a385e8995f" - }, - { - "offset": 1108, - "selector": "0x226ad7e84c1fe08eb4c525ed93cccadf9517670341304571e66f7c4f95cbe54" - }, - { - "offset": 626, - "selector": "0x266623c84ac264056e7e0926e35de090cc02e13da956962ff63d60d7c1edce7" - }, - { - "offset": 714, - "selector": "0x27dd0e3dd3a042d41abdc4f5a0e69d4a9337f0355a060d3b7a81672bb5ad3de" - } - ], - "L1_HANDLER": [] - }, - "program": { - "attributes": [ - { - "accessible_scopes": [ - "openzeppelin.access.ownable.library", - "openzeppelin.access.ownable.library.Ownable", - "openzeppelin.access.ownable.library.Ownable.assert_only_owner" - ], - "end_pc": 329, - "flow_tracking_data": { - "ap_tracking": { - "group": 25, - "offset": 6 - }, - "reference_ids": {} - }, - "name": "error_message", - "start_pc": 327, - "value": "Ownable: caller is the zero address" - }, - { - "accessible_scopes": [ - "openzeppelin.access.ownable.library", - "openzeppelin.access.ownable.library.Ownable", - "openzeppelin.access.ownable.library.Ownable.assert_only_owner" - ], - "end_pc": 330, - "flow_tracking_data": { - "ap_tracking": { - "group": 25, - "offset": 8 - }, - "reference_ids": {} - }, - "name": "error_message", - "start_pc": 329, - "value": "Ownable: caller is not the owner" - }, - { - "accessible_scopes": [ - "openzeppelin.access.ownable.library", - "openzeppelin.access.ownable.library.Ownable", - "openzeppelin.access.ownable.library.Ownable.transfer_ownership" - ], - "end_pc": 343, - "flow_tracking_data": { - "ap_tracking": { - "group": 27, - "offset": 0 - }, - "reference_ids": {} - }, - "name": "error_message", - "start_pc": 340, - "value": "Ownable: new owner is the zero address" - } - ], - "builtins": [ - "pedersen", - "range_check" - ], - "compiler_version": "0.11.0.2", - "data": [ - "0x40780017fff7fff", - "0x1", - "0x208b7fff7fff7ffe", - "0x400380007ffb7ffc", - "0x400380017ffb7ffd", - "0x482680017ffb8000", - "0x3", - "0x480280027ffb8000", - "0x208b7fff7fff7ffe", - "0x20780017fff7ffd", - "0x3", - "0x208b7fff7fff7ffe", - "0x480a7ffb7fff8000", - "0x480a7ffc7fff8000", - "0x480080007fff8000", - "0x400080007ffd7fff", - "0x482480017ffd8001", - "0x1", - "0x482480017ffd8001", - "0x1", - "0xa0680017fff7ffe", - "0x800000000000010fffffffffffffffffffffffffffffffffffffffffffffffb", - "0x402a7ffc7ffd7fff", - "0x208b7fff7fff7ffe", - "0x208b7fff7fff7ffe", - "0x480680017fff8000", - "0x47657443616c6c657241646472657373", - "0x400280007ffd7fff", - "0x482680017ffd8000", - "0x2", - "0x480280017ffd8000", - "0x208b7fff7fff7ffe", - "0x480680017fff8000", - "0x53746f7261676552656164", - "0x400280007ffc7fff", - "0x400380017ffc7ffd", - "0x482680017ffc8000", - "0x3", - "0x480280027ffc8000", - "0x208b7fff7fff7ffe", - "0x480680017fff8000", - "0x53746f726167655772697465", - "0x400280007ffb7fff", - "0x400380017ffb7ffc", - "0x400380027ffb7ffd", - "0x482680017ffb8000", - "0x3", - "0x208b7fff7fff7ffe", - "0x480680017fff8000", - "0x456d69744576656e74", - "0x400280007ff97fff", - "0x400380017ff97ffa", - "0x400380027ff97ffb", - "0x400380037ff97ffc", - "0x400380047ff97ffd", - "0x482680017ff98000", - "0x5", - "0x208b7fff7fff7ffe", - "0x20780017fff7ffd", - "0x4", - "0x400780017fff7ffd", - "0x1", - "0x208b7fff7fff7ffe", - "0x400380007ffc7ffd", - "0x482680017ffc8000", - "0x1", - "0x208b7fff7fff7ffe", - "0x480a7ffb7fff8000", - "0x48297ffc80007ffd", - "0x1104800180018000", - "0x800000000000010fffffffffffffffffffffffffffffffffffffffffffffffb", - "0x208b7fff7fff7ffe", - "0x480680017fff8000", - "0x3ffffffffffffffffffffffffffffff", - "0x480280017ffc8000", - "0x48307fff80007ffe", - "0x400280027ffc7fff", - "0x480280017ffc8000", - "0x484480017fff8000", - "0x100000000000000000000000000000000", - "0x480280007ffc8000", - "0x40317fff7ffe7ffd", - "0x482680017ffc8000", - "0x3", - "0x208b7fff7fff7ffe", - "0x480280017ffc8000", - "0x484480017fff8000", - "0x100000000000000000000000000000000", - "0x480280007ffc8000", - "0x40317fff7ffe7ffd", - "0x480280017ffc8000", - "0x482480017fff8000", - "0x800000000000010fffffffffffffffff7ffffffffffffef0000000000000001", - "0x20680017fff7fff", - "0xb", - "0x482680017ffc8000", - "0x2", - "0x480280007ffc8000", - "0x480680017fff8000", - "0x0", - "0x1104800180018000", - "0x800000000000010ffffffffffffffffffffffffffffffffffffffffffffffe0", - "0x10780017fff7fff", - "0x9", - "0x482680017ffc8000", - "0x2", - "0x480280017ffc8000", - "0x480680017fff8000", - "0x800000000000010ffffffffffffffff", - "0x1104800180018000", - "0x800000000000010ffffffffffffffffffffffffffffffffffffffffffffffd7", - "0x480280017ffc8000", - "0x480280007ffc8000", - "0x208b7fff7fff7ffe", - "0x480280007ffb8000", - "0x480280017ffb8000", - "0x484480017fff8000", - "0x2aaaaaaaaaaaab05555555555555556", - "0x48307fff7ffd8000", - "0x480280027ffb8000", - "0x480280037ffb8000", - "0x484480017fff8000", - "0x4000000000000088000000000000001", - "0x48307fff7ffd8000", - "0xa0680017fff8000", - "0xe", - "0x480680017fff8000", - "0x800000000000011000000000000000000000000000000000000000000000000", - "0x48287ffc80007fff", - "0x40307ffc7ff87fff", - "0x48297ffd80007ffc", - "0x482680017ffd8000", - "0x1", - "0x48507fff7ffe8000", - "0x40507ff97ff57fff", - "0x482680017ffb8000", - "0x4", - "0x208b7fff7fff7ffe", - "0xa0680017fff8000", - "0xc", - "0x480680017fff8000", - "0x800000000000011000000000000000000000000000000000000000000000000", - "0x48287ffd80007fff", - "0x48327fff7ffc8000", - "0x40307ffa7ff67fff", - "0x48527ffe7ffc8000", - "0x40507ff97ff57fff", - "0x482680017ffb8000", - "0x4", - "0x208b7fff7fff7ffe", - "0x40317ffd7ff97ffd", - "0x48297ffc80007ffd", - "0x48527fff7ffc8000", - "0x40507ffb7ff77fff", - "0x40780017fff7fff", - "0x2", - "0x482680017ffb8000", - "0x4", - "0x208b7fff7fff7ffe", - "0x40780017fff7fff", - "0x1", - "0x20680017fff7fff", - "0x8", - "0x482680017ffc8000", - "0x1", - "0x484680017ffd8000", - "0x800000000000011000000000000000000000000000000000000000000000000", - "0x400280007ffc7fff", - "0x208b7fff7fff7ffe", - "0x400380007ffc7ffd", - "0x482680017ffc8000", - "0x1", - "0x480a7ffd7fff8000", - "0x208b7fff7fff7ffe", - "0x20780017fff7ffd", - "0x8", - "0x40780017fff7fff", - "0x2", - "0x480a7ffc7fff8000", - "0x480680017fff8000", - "0x0", - "0x208b7fff7fff7ffe", - "0x40780017fff7fff", - "0x1", - "0x20680017fff7fff", - "0xa", - "0x484680017ffd8000", - "0x800000000000011000000000000000000000000000000000000000000000000", - "0x400280007ffc7fff", - "0x482680017ffc8000", - "0x1", - "0x480680017fff8000", - "0x800000000000011000000000000000000000000000000000000000000000000", - "0x208b7fff7fff7ffe", - "0x40780017fff7fff", - "0x1", - "0x400380007ffc7ffd", - "0x482680017ffc8000", - "0x1", - "0x480680017fff8000", - "0x1", - "0x208b7fff7fff7ffe", - "0x482680017ffb8000", - "0x2", - "0x480280007ffb8000", - "0x482680017ffd8000", - "0x800000000000011000000000000000000000000000000000000000000000000", - "0x1104800180018000", - "0x800000000000010ffffffffffffffffffffffffffffffffffffffffffffff75", - "0x480280017ffb8000", - "0x48487ffd7fff8000", - "0x480280007ffb8000", - "0x40317fff7ffe7ffc", - "0x48127ffc7fff8000", - "0x480280017ffb8000", - "0x480280007ffb8000", - "0x208b7fff7fff7ffe", - "0x40780017fff7fff", - "0x1", - "0x20680017fff7fff", - "0x10", - "0x480a7ffc7fff8000", - "0x482680017ffd8000", - "0x11000000000000000000000000000000000000000000000101", - "0x1104800180018000", - "0x800000000000010ffffffffffffffffffffffffffffffffffffffffffffff69", - "0x480680017fff8000", - "0x800000000000011000000000000000000000000000000000000000000000000", - "0x48127ffe7fff8000", - "0x48287ffd80007ffe", - "0x1104800180018000", - "0x800000000000010ffffffffffffffffffffffffffffffffffffffffffffff63", - "0x482680017ffd8000", - "0x11000000000000000000000000000000000000000000000101", - "0x208b7fff7fff7ffe", - "0x40780017fff7fff", - "0x1", - "0x20680017fff7fff", - "0xc", - "0x40780017fff7fff", - "0xa", - "0x480680017fff8000", - "0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffeff", - "0x480a7ffc7fff8000", - "0x48287ffd80007ffe", - "0x1104800180018000", - "0x800000000000010ffffffffffffffffffffffffffffffffffffffffffffff54", - "0x10780017fff7fff", - "0x8", - "0x40780017fff7fff", - "0xb", - "0x480a7ffc7fff8000", - "0x480a7ffd7fff8000", - "0x1104800180018000", - "0x800000000000010ffffffffffffffffffffffffffffffffffffffffffffff4c", - "0x480a7ffd7fff8000", - "0x208b7fff7fff7ffe", - "0x40780017fff7fff", - "0x2", - "0x1104800180018000", - "0x800000000000010fffffffffffffffffffffffffffffffffffffffffffffefe", - "0x40137fff7fff8000", - "0x480680017fff8000", - "0x1390fd803c110ac71730ece1decfc34eb1d0088e295d4f1b125dda1e0c5b9ff", - "0x4002800080007fff", - "0x1104800180018000", - "0x800000000000010fffffffffffffffffffffffffffffffffffffffffffffef8", - "0x40137fff7fff8001", - "0x4003800080017ffc", - "0x4003800180017ffd", - "0x4826800180018000", - "0x2", - "0x480a7ffa7fff8000", - "0x480680017fff8000", - "0x1", - "0x480a80007fff8000", - "0x4828800180007ffc", - "0x480a80017fff8000", - "0x1104800180018000", - "0x800000000000010ffffffffffffffffffffffffffffffffffffffffffffff1b", - "0x480a7ffb7fff8000", - "0x208b7fff7fff7ffe", - "0x480a7ffc7fff8000", - "0x480a7ffd7fff8000", - "0x480680017fff8000", - "0x2bd557f4ba80dfabefabe45e9b2dd35db1b9a78e96c72bc2b69b655ce47a930", - "0x208b7fff7fff7ffe", - "0x480a7ffc7fff8000", - "0x480a7ffd7fff8000", - "0x1104800180018000", - "0x800000000000010fffffffffffffffffffffffffffffffffffffffffffffffa", - "0x480a7ffb7fff8000", - "0x48127ffe7fff8000", - "0x1104800180018000", - "0x800000000000010fffffffffffffffffffffffffffffffffffffffffffffefc", - "0x48127ffe7fff8000", - "0x48127ff57fff8000", - "0x48127ff57fff8000", - "0x48127ffc7fff8000", - "0x208b7fff7fff7ffe", - "0x480a7ffb7fff8000", - "0x480a7ffc7fff8000", - "0x1104800180018000", - "0x800000000000010ffffffffffffffffffffffffffffffffffffffffffffffed", - "0x480a7ffa7fff8000", - "0x48127ffe7fff8000", - "0x480a7ffd7fff8000", - "0x1104800180018000", - "0x800000000000010fffffffffffffffffffffffffffffffffffffffffffffef6", - "0x48127ff67fff8000", - "0x48127ff67fff8000", - "0x208b7fff7fff7ffe", - "0x480a7ffa7fff8000", - "0x480a7ffb7fff8000", - "0x480a7ffc7fff8000", - "0x480a7ffd7fff8000", - "0x1104800180018000", - "0x24", - "0x208b7fff7fff7ffe", - "0x480a7ffb7fff8000", - "0x480a7ffc7fff8000", - "0x480a7ffd7fff8000", - "0x1104800180018000", - "0xc", - "0x48127ffc7fff8000", - "0x1104800180018000", - "0x800000000000010fffffffffffffffffffffffffffffffffffffffffffffed5", - "0x1104800180018000", - "0x800000000000010fffffffffffffffffffffffffffffffffffffffffffffef4", - "0x40127ffd7fff7ff7", - "0x48127ffc7fff8000", - "0x48127ff47fff8000", - "0x48127ff47fff8000", - "0x208b7fff7fff7ffe", - "0x480a7ffb7fff8000", - "0x480a7ffc7fff8000", - "0x480a7ffd7fff8000", - "0x1104800180018000", - "0x800000000000010ffffffffffffffffffffffffffffffffffffffffffffffcf", - "0x208b7fff7fff7ffe", - "0x480a7ffd7fff8000", - "0x1104800180018000", - "0x800000000000010fffffffffffffffffffffffffffffffffffffffffffffee6", - "0x480a7ffa7fff8000", - "0x480a7ffb7fff8000", - "0x480a7ffc7fff8000", - "0x1104800180018000", - "0x800000000000010ffffffffffffffffffffffffffffffffffffffffffffffe6", - "0x480a7ffd7fff8000", - "0x1104800180018000", - "0x3", - "0x208b7fff7fff7ffe", - "0x480a7ffa7fff8000", - "0x480a7ffb7fff8000", - "0x480a7ffc7fff8000", - "0x1104800180018000", - "0x800000000000010ffffffffffffffffffffffffffffffffffffffffffffffec", - "0x48127ffc7fff8000", - "0x48127ffc7fff8000", - "0x48127ffc7fff8000", - "0x480a7ffd7fff8000", - "0x1104800180018000", - "0x800000000000010ffffffffffffffffffffffffffffffffffffffffffffffc4", - "0x48127ffd7fff8000", - "0x48127ffe7fff8000", - "0x48127fe77fff8000", - "0x480a7ffd7fff8000", - "0x1104800180018000", - "0x800000000000010ffffffffffffffffffffffffffffffffffffffffffffff93", - "0x48127ffe7fff8000", - "0x48127fe37fff8000", - "0x48127ffd7fff8000", - "0x208b7fff7fff7ffe", - "0xa0680017fff8000", - "0xa", - "0x400380007ffc7ffd", - "0x40780017fff7fff", - "0x14", - "0x482680017ffc8000", - "0x1", - "0x480680017fff8000", - "0x1", - "0x208b7fff7fff7ffe", - "0xa0680017fff8000", - "0xe", - "0x484680017ffd8000", - "0x800000000000011000000000000000000000000000000000000000000000000", - "0x482480017fff8000", - "0x800000000000011000000000000000000000000000000000000000000000000", - "0x400280007ffc7fff", - "0x40780017fff7fff", - "0x11", - "0x482680017ffc8000", - "0x1", - "0x480680017fff8000", - "0x0", - "0x208b7fff7fff7ffe", - "0x480a7ffc7fff8000", - "0x480680017fff8000", - "0x100000000000000000000000000000000", - "0x480a7ffd7fff8000", - "0x1104800180018000", - "0x800000000000010fffffffffffffffffffffffffffffffffffffffffffffee2", - "0x480680017fff8000", - "0x0", - "0x208b7fff7fff7ffe", - "0x480a7ffb7fff8000", - "0x48297ffc80007ffd", - "0x1104800180018000", - "0x800000000000010ffffffffffffffffffffffffffffffffffffffffffffffde", - "0x208b7fff7fff7ffe", - "0x40780017fff7fff", - "0x2", - "0x20780017fff7ffd", - "0x6", - "0x480a7ffc7fff8000", - "0x480680017fff8000", - "0x30", - "0x208b7fff7fff7ffe", - "0x1104800180018000", - "0x800000000000010fffffffffffffffffffffffffffffffffffffffffffffe5e", - "0x40137fff7fff8000", - "0x480a7ffc7fff8000", - "0x480a7ffd7fff8000", - "0x1104800180018000", - "0x800000000000010fffffffffffffffffffffffffffffffffffffffffffffef8", - "0x480680017fff8000", - "0x0", - "0x480a80007fff8000", - "0x1104800180018000", - "0x1c", - "0x48127ffe7fff8000", - "0x480a7ffd7fff8000", - "0x1104800180018000", - "0x800000000000010fffffffffffffffffffffffffffffffffffffffffffffefe", - "0x482480017fff8000", - "0x1", - "0x20680017fff7fff", - "0x6", - "0x400780017fff8001", - "0x2d", - "0x10780017fff7fff", - "0x4", - "0x400780017fff8001", - "0x0", - "0x48127ffd7fff8000", - "0x480a80017fff8000", - "0x48127ff47fff8000", - "0x480a80007fff8000", - "0x480680017fff8000", - "0x0", - "0x1104800180018000", - "0x1f", - "0x208b7fff7fff7ffe", - "0x482680017ffd8000", - "0x30", - "0x208b7fff7fff7ffe", - "0x40780017fff7fff", - "0x0", - "0x20780017fff7ffb", - "0x5", - "0x480a7ffa7fff8000", - "0x480a7ffc7fff8000", - "0x208b7fff7fff7ffe", - "0x480a7ffa7fff8000", - "0x480a7ffb7fff8000", - "0x480680017fff8000", - "0xa", - "0x1104800180018000", - "0x800000000000010fffffffffffffffffffffffffffffffffffffffffffffef7", - "0x1104800180018000", - "0x800000000000010fffffffffffffffffffffffffffffffffffffffffffffff1", - "0x482a7ffc7ffd8000", - "0x400080007fff7ffe", - "0x48127ff97fff8000", - "0x48127ff97fff8000", - "0x482680017ffc8000", - "0x1", - "0x480a7ffd7fff8000", - "0x1104800180018000", - "0x800000000000010ffffffffffffffffffffffffffffffffffffffffffffffeb", - "0x208b7fff7fff7ffe", - "0x48297ffb80007ffd", - "0x20680017fff7fff", - "0x5", - "0x480a7ff97fff8000", - "0x480a7ffa7fff8000", - "0x208b7fff7fff7ffe", - "0x484680017ffa8000", - "0x100", - "0x482680017ffd8000", - "0x1", - "0x48317fff80007ffb", - "0x48327fff7ffc8000", - "0x480080007fff8000", - "0x480a7ff97fff8000", - "0x48307ffe7ffa8000", - "0x480a7ffb7fff8000", - "0x480a7ffc7fff8000", - "0x482680017ffd8000", - "0x1", - "0x1104800180018000", - "0x800000000000010ffffffffffffffffffffffffffffffffffffffffffffffee", - "0x208b7fff7fff7ffe", - "0x1104800180018000", - "0x800000000000010fffffffffffffffffffffffffffffffffffffffffffffe21", - "0x482680017ffd8000", - "0x800000000000010fffffffffffffffffffffffffffffffffffffffffffffe07", - "0x48307fff7ffe8000", - "0x208b7fff7fff7ffe", - "0x480a7ffc7fff8000", - "0x480a7ffd7fff8000", - "0x480680017fff8000", - "0x3c0ba99f1a18bcdc81fcbcb6b4f15a9a6725f937075aed6fac107ffcb147068", - "0x208b7fff7fff7ffe", - "0x480a7ffc7fff8000", - "0x480a7ffd7fff8000", - "0x1104800180018000", - "0x800000000000010fffffffffffffffffffffffffffffffffffffffffffffffa", - "0x480a7ffb7fff8000", - "0x48127ffe7fff8000", - "0x1104800180018000", - "0x800000000000010fffffffffffffffffffffffffffffffffffffffffffffe18", - "0x48127ffe7fff8000", - "0x48127ff57fff8000", - "0x48127ff57fff8000", - "0x48127ffc7fff8000", - "0x208b7fff7fff7ffe", - "0x480a7ffb7fff8000", - "0x480a7ffc7fff8000", - "0x1104800180018000", - "0x800000000000010ffffffffffffffffffffffffffffffffffffffffffffffed", - "0x480a7ffa7fff8000", - "0x48127ffe7fff8000", - "0x480a7ffd7fff8000", - "0x1104800180018000", - "0x800000000000010fffffffffffffffffffffffffffffffffffffffffffffe12", - "0x48127ff67fff8000", - "0x48127ff67fff8000", - "0x208b7fff7fff7ffe", - "0x480a7ffc7fff8000", - "0x480a7ffd7fff8000", - "0x480680017fff8000", - "0x3cbea6a45fbe535687b936935035cf892c3a44d6f4679b6b24bf70b006c0f98", - "0x208b7fff7fff7ffe", - "0x480a7ffc7fff8000", - "0x480a7ffd7fff8000", - "0x1104800180018000", - "0x800000000000010fffffffffffffffffffffffffffffffffffffffffffffffa", - "0x480a7ffb7fff8000", - "0x48127ffe7fff8000", - "0x1104800180018000", - "0x800000000000010fffffffffffffffffffffffffffffffffffffffffffffdfa", - "0x48127ffe7fff8000", - "0x48127ff57fff8000", - "0x48127ff57fff8000", - "0x48127ffc7fff8000", - "0x208b7fff7fff7ffe", - "0x480a7ffb7fff8000", - "0x480a7ffc7fff8000", - "0x1104800180018000", - "0x800000000000010ffffffffffffffffffffffffffffffffffffffffffffffed", - "0x480a7ffa7fff8000", - "0x48127ffe7fff8000", - "0x480a7ffd7fff8000", - "0x1104800180018000", - "0x800000000000010fffffffffffffffffffffffffffffffffffffffffffffdf4", - "0x48127ff67fff8000", - "0x48127ff67fff8000", - "0x208b7fff7fff7ffe", - "0x480a7ffb7fff8000", - "0x480680017fff8000", - "0x599f236114cbefbd31b24e0f04d4e39f618bbb61aa3d9d64acebb9bc3db360", - "0x480a7ffd7fff8000", - "0x1104800180018000", - "0x800000000000010fffffffffffffffffffffffffffffffffffffffffffffdc6", - "0x480a7ffc7fff8000", - "0x48127ffe7fff8000", - "0x1104800180018000", - "0x800000000000010fffffffffffffffffffffffffffffffffffffffffffffe98", - "0x48127fe17fff8000", - "0x48127ffd7fff8000", - "0x48127ffd7fff8000", - "0x208b7fff7fff7ffe", - "0x480a7ffb7fff8000", - "0x480a7ffc7fff8000", - "0x480a7ffd7fff8000", - "0x1104800180018000", - "0x800000000000010fffffffffffffffffffffffffffffffffffffffffffffff0", - "0x480a7ffa7fff8000", - "0x48127ffe7fff8000", - "0x1104800180018000", - "0x800000000000010fffffffffffffffffffffffffffffffffffffffffffffdd2", - "0x48127ffe7fff8000", - "0x48127ff57fff8000", - "0x48127ff57fff8000", - "0x48127ffc7fff8000", - "0x208b7fff7fff7ffe", - "0x480a7ffa7fff8000", - "0x480a7ffb7fff8000", - "0x480a7ffc7fff8000", - "0x1104800180018000", - "0x800000000000010ffffffffffffffffffffffffffffffffffffffffffffffe2", - "0x480a7ff97fff8000", - "0x48127ffe7fff8000", - "0x480a7ffd7fff8000", - "0x1104800180018000", - "0x800000000000010fffffffffffffffffffffffffffffffffffffffffffffdcb", - "0x48127ff67fff8000", - "0x48127ff67fff8000", - "0x208b7fff7fff7ffe", - "0x480a7ffb7fff8000", - "0x480a7ffc7fff8000", - "0x480a7ffd7fff8000", - "0x1104800180018000", - "0x800000000000010fffffffffffffffffffffffffffffffffffffffffffffee9", - "0x208b7fff7fff7ffe", - "0x40780017fff7fff", - "0x1", - "0x4003800080007ffc", - "0x4826800180008000", - "0x1", - "0x480a7ffd7fff8000", - "0x4828800080007ffe", - "0x480a80007fff8000", - "0x208b7fff7fff7ffe", - "0x402b7ffd7ffc7ffd", - "0x480280007ffb8000", - "0x480280017ffb8000", - "0x480280027ffb8000", - "0x1104800180018000", - "0x800000000000010ffffffffffffffffffffffffffffffffffffffffffffffee", - "0x48127ffe7fff8000", - "0x1104800180018000", - "0x800000000000010fffffffffffffffffffffffffffffffffffffffffffffff1", - "0x48127ff47fff8000", - "0x48127ff47fff8000", - "0x48127ffb7fff8000", - "0x48127ffb7fff8000", - "0x48127ffb7fff8000", - "0x208b7fff7fff7ffe", - "0x40780017fff7fff", - "0x1", - "0x1104800180018000", - "0x800000000000010fffffffffffffffffffffffffffffffffffffffffffffd7e", - "0x40137fff7fff8000", - "0x480a7ffb7fff8000", - "0x480a7ffc7fff8000", - "0x480a7ffd7fff8000", - "0x480680017fff8000", - "0x0", - "0x480a80007fff8000", - "0x1104800180018000", - "0x6f", - "0x48127ffc7fff8000", - "0x48127ffc7fff8000", - "0x48127ffc7fff8000", - "0x1104800180018000", - "0x800000000000010ffffffffffffffffffffffffffffffffffffffffffffff91", - "0x480a80007fff8000", - "0x208b7fff7fff7ffe", - "0x40780017fff7fff", - "0x3", - "0x4003800080007ffb", - "0x400380007ffd7ffb", - "0x402780017ffd8001", - "0x1", - "0x4826800180008000", - "0x1", - "0x40297ffb7fff8002", - "0x4826800180008000", - "0x1", - "0x480a7ffc7fff8000", - "0x480a7ffb7fff8000", - "0x1104800180018000", - "0x800000000000010fffffffffffffffffffffffffffffffffffffffffffffd68", - "0x480a80017fff8000", - "0x4829800080008002", - "0x480a80007fff8000", - "0x208b7fff7fff7ffe", - "0x40780017fff7fff", - "0x2", - "0x402b7ffd7ffc7ffd", - "0x480280007ffb8000", - "0x480280017ffb8000", - "0x480280027ffb8000", - "0x1104800180018000", - "0x800000000000010ffffffffffffffffffffffffffffffffffffffffffffffd4", - "0x40137ffb7fff8000", - "0x40137ffc7fff8001", - "0x48127ffd7fff8000", - "0x1104800180018000", - "0x800000000000010ffffffffffffffffffffffffffffffffffffffffffffffe3", - "0x480a80007fff8000", - "0x480a80017fff8000", - "0x48127ffb7fff8000", - "0x48127ffb7fff8000", - "0x48127ffb7fff8000", - "0x208b7fff7fff7ffe", - "0x480a7ff97fff8000", - "0x480a7ffa7fff8000", - "0x480a7ffb7fff8000", - "0x1104800180018000", - "0x800000000000010fffffffffffffffffffffffffffffffffffffffffffffe82", - "0x480a7ffc7fff8000", - "0x1104800180018000", - "0x800000000000010ffffffffffffffffffffffffffffffffffffffffffffff6e", - "0x480680017fff8000", - "0x0", - "0x480a7ffc7fff8000", - "0x480a7ffd7fff8000", - "0x1104800180018000", - "0x1e", - "0x208b7fff7fff7ffe", - "0x480280027ffb8000", - "0x480280007ffd8000", - "0x400080007ffe7fff", - "0x482680017ffd8000", - "0x1", - "0x480280007ffd8000", - "0x48307fff7ffe8000", - "0x402a7ffd7ffc7fff", - "0x480280027ffb8000", - "0x480280007ffb8000", - "0x480280017ffb8000", - "0x482480017ffd8000", - "0x1", - "0x480280007ffd8000", - "0x482680017ffd8000", - "0x1", - "0x1104800180018000", - "0x800000000000010ffffffffffffffffffffffffffffffffffffffffffffffe2", - "0x40780017fff7fff", - "0x1", - "0x48127ffc7fff8000", - "0x48127ffc7fff8000", - "0x48127ffc7fff8000", - "0x480680017fff8000", - "0x0", - "0x48127ffb7fff8000", - "0x208b7fff7fff7ffe", - "0x48297ffc80007ffb", - "0x20680017fff7fff", - "0x6", - "0x480a7ff87fff8000", - "0x480a7ff97fff8000", - "0x480a7ffa7fff8000", - "0x208b7fff7fff7ffe", - "0x482a7ffb7ffd8000", - "0x480a7ff87fff8000", - "0x480a7ff97fff8000", - "0x480a7ffa7fff8000", - "0x480a7ffb7fff8000", - "0x480080007ffb8000", - "0x1104800180018000", - "0x800000000000010ffffffffffffffffffffffffffffffffffffffffffffff65", - "0x482680017ffb8000", - "0x1", - "0x480a7ffc7fff8000", - "0x480a7ffd7fff8000", - "0x1104800180018000", - "0x800000000000010ffffffffffffffffffffffffffffffffffffffffffffffee", - "0x208b7fff7fff7ffe", - "0x480a7ff97fff8000", - "0x480a7ffa7fff8000", - "0x480a7ffb7fff8000", - "0x1104800180018000", - "0x800000000000010ffffffffffffffffffffffffffffffffffffffffffffff24", - "0x48317fff80007ffc", - "0x20680017fff7fff", - "0x7", - "0x48127ffb7fff8000", - "0x48127ffb7fff8000", - "0x48127ffb7fff8000", - "0x480a7ffd7fff8000", - "0x208b7fff7fff7ffe", - "0x48127ffb7fff8000", - "0x48127ffb7fff8000", - "0x48127ffb7fff8000", - "0x480a7ffc7fff8000", - "0x1104800180018000", - "0x800000000000010ffffffffffffffffffffffffffffffffffffffffffffff3d", - "0x400280007ffd7fff", - "0x48127ffc7fff8000", - "0x48127ffc7fff8000", - "0x48127ffc7fff8000", - "0x482680017ffc8000", - "0x1", - "0x482680017ffd8000", - "0x1", - "0x1104800180018000", - "0x800000000000010ffffffffffffffffffffffffffffffffffffffffffffffe6", - "0x208b7fff7fff7ffe", - "0x480a7ffa7fff8000", - "0x480a7ffb7fff8000", - "0x480a7ffc7fff8000", - "0x480a7ffd7fff8000", - "0x1104800180018000", - "0x800000000000010fffffffffffffffffffffffffffffffffffffffffffffe38", - "0x208b7fff7fff7ffe", - "0x482680017ffd8000", - "0x1", - "0x402a7ffd7ffc7fff", - "0x480280007ffb8000", - "0x480280017ffb8000", - "0x480280027ffb8000", - "0x480280007ffd8000", - "0x1104800180018000", - "0x800000000000010fffffffffffffffffffffffffffffffffffffffffffffff3", - "0x40780017fff7fff", - "0x1", - "0x48127ffc7fff8000", - "0x48127ffc7fff8000", - "0x48127ffc7fff8000", - "0x480680017fff8000", - "0x0", - "0x48127ffb7fff8000", - "0x208b7fff7fff7ffe", - "0x480a7ffa7fff8000", - "0x480a7ffb7fff8000", - "0x480a7ffc7fff8000", - "0x1104800180018000", - "0x800000000000010fffffffffffffffffffffffffffffffffffffffffffffecf", - "0x400680017fff7fff", - "0x0", - "0x48127ffc7fff8000", - "0x48127ffc7fff8000", - "0x48127ffc7fff8000", - "0x480a7ffd7fff8000", - "0x1104800180018000", - "0x800000000000010fffffffffffffffffffffffffffffffffffffffffffffdfc", - "0x480680017fff8000", - "0x1", - "0x1104800180018000", - "0x800000000000010fffffffffffffffffffffffffffffffffffffffffffffed0", - "0x208b7fff7fff7ffe", - "0x482680017ffd8000", - "0x1", - "0x402a7ffd7ffc7fff", - "0x480280007ffb8000", - "0x480280017ffb8000", - "0x480280027ffb8000", - "0x480280007ffd8000", - "0x1104800180018000", - "0x800000000000010ffffffffffffffffffffffffffffffffffffffffffffffe8", - "0x40780017fff7fff", - "0x1", - "0x48127ffc7fff8000", - "0x48127ffc7fff8000", - "0x48127ffc7fff8000", - "0x480680017fff8000", - "0x0", - "0x48127ffb7fff8000", - "0x208b7fff7fff7ffe", - "0x20780017fff7ffc", - "0x8", - "0x480a7ff87fff8000", - "0x480a7ff97fff8000", - "0x480a7ffa7fff8000", - "0x480680017fff8000", - "0x100000000000000000000000000000000", - "0x208b7fff7fff7ffe", - "0x480a7ffa7fff8000", - "0x480a7ffb7fff8000", - "0x480280007ffd8000", - "0x1104800180018000", - "0x800000000000010fffffffffffffffffffffffffffffffffffffffffffffe36", - "0x20680017fff7fff", - "0xd", - "0x480a7ff87fff8000", - "0x480a7ff97fff8000", - "0x48127ffc7fff8000", - "0x480a7ffb7fff8000", - "0x482680017ffc8000", - "0x800000000000011000000000000000000000000000000000000000000000000", - "0x482680017ffd8000", - "0x1", - "0x1104800180018000", - "0x800000000000010ffffffffffffffffffffffffffffffffffffffffffffffea", - "0x208b7fff7fff7ffe", - "0x480a7ff87fff8000", - "0x480a7ff97fff8000", - "0x48127ffc7fff8000", - "0x480a7ffc7fff8000", - "0x208b7fff7fff7ffe", - "0x40780017fff7fff", - "0x6", - "0x480680017fff8000", - "0x3c6", - "0x1104800180018000", - "0x800000000000010fffffffffffffffffffffffffffffffffffffffffffffe80", - "0x1104800180018000", - "0x800000000000010fffffffffffffffffffffffffffffffffffffffffffffc86", - "0x40137fff7fff8000", - "0x400780017fff8001", - "0x7b", - "0x480a80007fff8000", - "0x48127ffb7fff8000", - "0x480a80017fff8000", - "0x1104800180018000", - "0x800000000000010fffffffffffffffffffffffffffffffffffffffffffffc87", - "0x1104800180018000", - "0x800000000000010fffffffffffffffffffffffffffffffffffffffffffffc7c", - "0x40137fff7fff8002", - "0x480a7ff97fff8000", - "0x480a7ff87fff8000", - "0x480a7ffa7fff8000", - "0x480680017fff8000", - "0x0", - "0x480a80027fff8000", - "0x1104800180018000", - "0x800000000000010ffffffffffffffffffffffffffffffffffffffffffffff6e", - "0x48127ffc7fff8000", - "0x48127ffc7fff8000", - "0x48127ffc7fff8000", - "0x1104800180018000", - "0x800000000000010fffffffffffffffffffffffffffffffffffffffffffffe8f", - "0x40137fff7fff8003", - "0x48127ffd7fff8000", - "0x480a7ffb7fff8000", - "0x480a7ffc7fff8000", - "0x1104800180018000", - "0x800000000000010fffffffffffffffffffffffffffffffffffffffffffffc6b", - "0x48127ff77fff8000", - "0x48127ffe7fff8000", - "0x1104800180018000", - "0x800000000000010fffffffffffffffffffffffffffffffffffffffffffffcb9", - "0x4826800180038000", - "0x800000000000011000000000000000000000000000000000000000000000000", - "0x48327fff80028000", - "0x48127ffb7fff8000", - "0x48127ffc7fff8000", - "0x480080007ffd8000", - "0x1104800180018000", - "0x800000000000010fffffffffffffffffffffffffffffffffffffffffffffd26", - "0x48127fd27fff8000", - "0x48127fc87fff8000", - "0x48127ffb7fff8000", - "0x48127ffc7fff8000", - "0x480a80037fff8000", - "0x480a80027fff8000", - "0x1104800180018000", - "0x800000000000010ffffffffffffffffffffffffffffffffffffffffffffffaa", - "0x40137ffc7fff8004", - "0x40137ffd7fff8005", - "0x482480017fff8000", - "0x800000000000011000000000000000000000000000000000000000000000000", - "0x48127ffd7fff8000", - "0x48317ffe80008003", - "0x1104800180018000", - "0x800000000000010fffffffffffffffffffffffffffffffffffffffffffffde7", - "0x482a800180008000", - "0x400080007fff7ffe", - "0x4826800180018000", - "0x1", - "0x48327fff80008000", - "0x480680017fff8000", - "0x2e6a736f6e", - "0x400080007ffe7fff", - "0x480a80047fff8000", - "0x480a80057fff8000", - "0x48127ff87fff8000", - "0x4826800180018000", - "0x2", - "0x480a80007fff8000", - "0x208b7fff7fff7ffe", - "0x68", - "0x74", - "0x74", - "0x70", - "0x73", - "0x3a", - "0x2f", - "0x2f", - "0x72", - "0x61", - "0x77", - "0x2e", - "0x67", - "0x69", - "0x74", - "0x68", - "0x75", - "0x62", - "0x75", - "0x73", - "0x65", - "0x72", - "0x63", - "0x6f", - "0x6e", - "0x74", - "0x65", - "0x6e", - "0x74", - "0x2e", - "0x63", - "0x6f", - "0x6d", - "0x2f", - "0x74", - "0x68", - "0x65", - "0x2d", - "0x63", - "0x61", - "0x6e", - "0x64", - "0x79", - "0x2d", - "0x73", - "0x68", - "0x6f", - "0x70", - "0x2f", - "0x73", - "0x74", - "0x61", - "0x72", - "0x6b", - "0x73", - "0x68", - "0x65", - "0x65", - "0x74", - "0x2d", - "0x6d", - "0x6f", - "0x6e", - "0x6f", - "0x72", - "0x65", - "0x70", - "0x6f", - "0x2f", - "0x6d", - "0x61", - "0x69", - "0x6e", - "0x2f", - "0x70", - "0x61", - "0x63", - "0x6b", - "0x61", - "0x67", - "0x65", - "0x73", - "0x2f", - "0x73", - "0x74", - "0x61", - "0x72", - "0x6b", - "0x73", - "0x68", - "0x65", - "0x65", - "0x74", - "0x2d", - "0x63", - "0x61", - "0x69", - "0x72", - "0x6f", - "0x2f", - "0x64", - "0x75", - "0x73", - "0x74", - "0x5f", - "0x70", - "0x69", - "0x6c", - "0x6f", - "0x74", - "0x73", - "0x2f", - "0x74", - "0x6f", - "0x6b", - "0x65", - "0x6e", - "0x5f", - "0x75", - "0x72", - "0x69", - "0x73", - "0x2f", - "0x40780017fff7fff", - "0x3", - "0x4003800080007ffb", - "0x400380007ffd7ffb", - "0x402780017ffd8001", - "0x1", - "0x4826800180008000", - "0x1", - "0x40297ffb7fff8002", - "0x4826800180008000", - "0x1", - "0x480a7ffc7fff8000", - "0x480a7ffb7fff8000", - "0x1104800180018000", - "0x800000000000010fffffffffffffffffffffffffffffffffffffffffffffbbc", - "0x480a80017fff8000", - "0x4829800080008002", - "0x480a80007fff8000", - "0x208b7fff7fff7ffe", - "0x40780017fff7fff", - "0x2", - "0x482680017ffd8000", - "0x3", - "0x402a7ffd7ffc7fff", - "0x480280017ffb8000", - "0x480280007ffb8000", - "0x480280027ffb8000", - "0x480280007ffd8000", - "0x480280017ffd8000", - "0x480280027ffd8000", - "0x1104800180018000", - "0x800000000000010ffffffffffffffffffffffffffffffffffffffffffffff17", - "0x40137ffc7fff8000", - "0x40137ffb7fff8001", - "0x48127ffd7fff8000", - "0x1104800180018000", - "0x800000000000010ffffffffffffffffffffffffffffffffffffffffffffffde", - "0x480a80007fff8000", - "0x480a80017fff8000", - "0x48127ffb7fff8000", - "0x48127ffb7fff8000", - "0x48127ffb7fff8000", - "0x208b7fff7fff7ffe" - ], - "debug_info": { - "file_contents": { - "autogen/starknet/arg_processor/01cba52f8515996bb9d7070bde81ff39281d096d7024a558efcba6e1fd2402cf.cairo": "assert [cast(fp + (-4), felt*)] = __calldata_actual_size;\n", - "autogen/starknet/arg_processor/26888a8b0591098a0a4f302b72cbac00272d5fe2d4db1172eca8910fde65f68a.cairo": "// Check that the length is non-negative.\nassert [range_check_ptr] = ret_value.thresholds_len;\n// Store the updated range_check_ptr as a local variable to keep it available after\n// the memcpy.\nlocal range_check_ptr = range_check_ptr + 1;\n// Keep a reference to __return_value_ptr.\nlet __return_value_ptr_copy = __return_value_ptr;\n// Store the updated __return_value_ptr as a local variable to keep it available after\n// the memcpy.\nlocal __return_value_ptr: felt* = __return_value_ptr + ret_value.thresholds_len * 1;\nmemcpy(\n dst=__return_value_ptr_copy,\n src=ret_value.thresholds,\n len=ret_value.thresholds_len * 1);\n", - "autogen/starknet/arg_processor/2bfdc4ffac90f60a618dc1ef323ad79a7856f8aea423d4c7d18c33590d12a61e.cairo": "// Check that the length is non-negative.\nassert [range_check_ptr] = __calldata_arg_thresholds_len;\nlet range_check_ptr = range_check_ptr + 1;\n// Create the reference.\nlet __calldata_arg_thresholds = cast(__calldata_ptr, felt*);\n// Use 'tempvar' instead of 'let' to avoid repeating this computation for the\n// following arguments.\ntempvar __calldata_ptr = __calldata_ptr + __calldata_arg_thresholds_len * 1;\n", - "autogen/starknet/arg_processor/3e93b8906c329e7a5c33e020ce7a5a9c542c4444955be98eec5fcbef545a8662.cairo": "let __calldata_arg_value = [__calldata_ptr];\nlet __calldata_ptr = __calldata_ptr + 1;\n", - "autogen/starknet/arg_processor/445d818b0524d35ae3e73b7abec41731d1445f0ce6866ec5a3a8a871521799a0.cairo": "assert [__calldata_ptr] = newOwner;\nlet __calldata_ptr = __calldata_ptr + 1;\n", - "autogen/starknet/arg_processor/450f0509800d3afb78e5f375ff7b17115e6b5d0fd7e2bff94c78fdb15f5f2d10.cairo": "let __calldata_arg_new_owner = [__calldata_ptr];\nlet __calldata_ptr = __calldata_ptr + 1;\n", - "autogen/starknet/arg_processor/5462c9ea522f66a6a8b3de2f37f244c7074893fe5c8d0b413046098a1ccfc2ce.cairo": "assert [__return_value_ptr] = ret_value.token_uri_len;\nlet __return_value_ptr = __return_value_ptr + 1;\n", - "autogen/starknet/arg_processor/576aaaacf3f9765b8d4c4f0080b47f3443309fe8a5c76d9c0bbf56f81f5c5547.cairo": "assert [__return_value_ptr] = ret_value.thresholds_len;\nlet __return_value_ptr = __return_value_ptr + 1;\n", - "autogen/starknet/arg_processor/8d1ba44ec0b1d27c24688348db19d49f555faaa5454ce90a4e7ba33d6a63afea.cairo": "// Check that the length is non-negative.\nassert [range_check_ptr] = ret_value.token_uri_len;\n// Store the updated range_check_ptr as a local variable to keep it available after\n// the memcpy.\nlocal range_check_ptr = range_check_ptr + 1;\n// Keep a reference to __return_value_ptr.\nlet __return_value_ptr_copy = __return_value_ptr;\n// Store the updated __return_value_ptr as a local variable to keep it available after\n// the memcpy.\nlocal __return_value_ptr: felt* = __return_value_ptr + ret_value.token_uri_len * 1;\nmemcpy(\n dst=__return_value_ptr_copy,\n src=ret_value.token_uri,\n len=ret_value.token_uri_len * 1);\n", - "autogen/starknet/arg_processor/92bae94c430cca894eac466fa5be50d176f1f62e79244db218577fbac5e84220.cairo": "let __calldata_arg_token_id = [__calldata_ptr];\nlet __calldata_ptr = __calldata_ptr + 1;\n", - "autogen/starknet/arg_processor/b02ddc13e06346668d980e18c0fec90f17036d195bf95d21ac18e846a0a129f3.cairo": "assert [__return_value_ptr] = ret_value.owner;\nlet __return_value_ptr = __return_value_ptr + 1;\n", - "autogen/starknet/arg_processor/c31620b02d4d706f0542c989b2aadc01b0981d1f6a5933a8fe4937ace3d70d92.cairo": "let __calldata_actual_size = __calldata_ptr - cast([cast(fp + (-3), felt**)], felt*);\n", - "autogen/starknet/arg_processor/e1eb73cd870ec466294c3700e77817cf3c039ac1384882ddb76383eb87a5da90.cairo": "let __calldata_arg_name = [__calldata_ptr];\nlet __calldata_ptr = __calldata_ptr + 1;\n", - "autogen/starknet/arg_processor/e2129a0023ce5f9e4c3de1d6fb100b2688dccff4a2ed2082db4a311f35c53e21.cairo": "assert [__calldata_ptr] = previousOwner;\nlet __calldata_ptr = __calldata_ptr + 1;\n", - "autogen/starknet/arg_processor/e4df1f6292f94b95716e933d564f87fd3790efa318bb67c640b6e0935f122cab.cairo": "let __calldata_arg_thresholds_len = [__calldata_ptr];\nlet __calldata_ptr = __calldata_ptr + 1;\n", - "autogen/starknet/arg_processor/f6a4d9ae897caf37cefd18f7c8da7eee73157818279359aadee282f0fe59cdbc.cairo": "let __calldata_arg_owner = [__calldata_ptr];\nlet __calldata_ptr = __calldata_ptr + 1;\n", - "autogen/starknet/event/OwnershipTransferred/6150feec30bd48bfd0f446ed8c155a6d911a2c3fb3ec7a980733900416819259.cairo": "emit_event(keys_len=1, keys=__keys_ptr, data_len=__calldata_ptr - __data_ptr, data=__data_ptr);\nreturn ();\n", - "autogen/starknet/event/OwnershipTransferred/8220fde17ca5479f12ae71a8036f4d354fe722f2c036da610b53511924e4ee84.cairo": "alloc_locals;\nlet (local __keys_ptr: felt*) = alloc();\nassert [__keys_ptr] = SELECTOR;\nlet (local __data_ptr: felt*) = alloc();\nlet __calldata_ptr = __data_ptr;\n", - "autogen/starknet/event/OwnershipTransferred/a7a8ae41be29ac9f4f6c3b7837c448d787ca051dd1ade98f409e54d33d112504.cairo": "func emit{syscall_ptr: felt*, range_check_ptr}() {\n}\n", - "autogen/starknet/external/getOwner/50eef2d703602d24c42df800878bfabc425ad0069960e1dc159c4d3bf27e35f6.cairo": "let ret_value = __wrapped_func{syscall_ptr=syscall_ptr, pedersen_ptr=pedersen_ptr, range_check_ptr=range_check_ptr}();\nlet (range_check_ptr, retdata_size, retdata) = getOwner_encode_return(ret_value, range_check_ptr);\n", - "autogen/starknet/external/getOwner/741ea357d6336b0bed7bf0472425acd0311d543883b803388880e60a232040c7.cairo": "let range_check_ptr = [cast([cast(fp + (-5), felt**)] + 2, felt*)];\n", - "autogen/starknet/external/getOwner/9684a85e93c782014ca14293edea4eb2502039a5a7b6538ecd39c56faaf12529.cairo": "let pedersen_ptr = [cast([cast(fp + (-5), felt**)] + 1, starkware.cairo.common.cairo_builtins.HashBuiltin**)];\n", - "autogen/starknet/external/getOwner/b2c52ca2d2a8fc8791a983086d8716c5eacd0c3d62934914d2286f84b98ff4cb.cairo": "let syscall_ptr = [cast([cast(fp + (-5), felt**)] + 0, felt**)];\n", - "autogen/starknet/external/getOwner/da17921a4e81c09e730800bbf23bfdbe5e9e6bfaedc59d80fbf62087fa43c27d.cairo": "return (syscall_ptr,pedersen_ptr,range_check_ptr,retdata_size,retdata);\n", - "autogen/starknet/external/getThresholds/741ea357d6336b0bed7bf0472425acd0311d543883b803388880e60a232040c7.cairo": "let range_check_ptr = [cast([cast(fp + (-5), felt**)] + 2, felt*)];\n", - "autogen/starknet/external/getThresholds/746967275ee6822bc0e5f0716a41195587494d803b55992189b93c4fb0e2e25a.cairo": "func getThresholds() -> (syscall_ptr: felt*, pedersen_ptr: starkware.cairo.common.cairo_builtins.HashBuiltin*, range_check_ptr: felt, size: felt, retdata: felt*) {\n alloc_locals;\n}\n", - "autogen/starknet/external/getThresholds/8cb46b4e28994ec330ee261c7e7c72df878710408b14a4d6daf29aaf098ad3e9.cairo": "let ret_value = __wrapped_func{syscall_ptr=syscall_ptr, pedersen_ptr=pedersen_ptr, range_check_ptr=range_check_ptr}();\nlet (range_check_ptr, retdata_size, retdata) = getThresholds_encode_return(ret_value, range_check_ptr);\n", - "autogen/starknet/external/getThresholds/9684a85e93c782014ca14293edea4eb2502039a5a7b6538ecd39c56faaf12529.cairo": "let pedersen_ptr = [cast([cast(fp + (-5), felt**)] + 1, starkware.cairo.common.cairo_builtins.HashBuiltin**)];\n", - "autogen/starknet/external/getThresholds/b2c52ca2d2a8fc8791a983086d8716c5eacd0c3d62934914d2286f84b98ff4cb.cairo": "let syscall_ptr = [cast([cast(fp + (-5), felt**)] + 0, felt**)];\n", - "autogen/starknet/external/getThresholds/da17921a4e81c09e730800bbf23bfdbe5e9e6bfaedc59d80fbf62087fa43c27d.cairo": "return (syscall_ptr,pedersen_ptr,range_check_ptr,retdata_size,retdata);\n", - "autogen/starknet/external/initialize/5243d13a214edd1f03ee87eac1b3ceb0ae897772a136cabb4cc7905c46b3e2c4.cairo": "let ret_value = __wrapped_func{syscall_ptr=syscall_ptr, pedersen_ptr=pedersen_ptr, range_check_ptr=range_check_ptr}(owner=__calldata_arg_owner,);\n%{ memory[ap] = segments.add() %} // Allocate memory for return value.\ntempvar retdata: felt*;\nlet retdata_size = 0;\n", - "autogen/starknet/external/initialize/741ea357d6336b0bed7bf0472425acd0311d543883b803388880e60a232040c7.cairo": "let range_check_ptr = [cast([cast(fp + (-5), felt**)] + 2, felt*)];\n", - "autogen/starknet/external/initialize/9684a85e93c782014ca14293edea4eb2502039a5a7b6538ecd39c56faaf12529.cairo": "let pedersen_ptr = [cast([cast(fp + (-5), felt**)] + 1, starkware.cairo.common.cairo_builtins.HashBuiltin**)];\n", - "autogen/starknet/external/initialize/b2c52ca2d2a8fc8791a983086d8716c5eacd0c3d62934914d2286f84b98ff4cb.cairo": "let syscall_ptr = [cast([cast(fp + (-5), felt**)] + 0, felt**)];\n", - "autogen/starknet/external/initialize/da17921a4e81c09e730800bbf23bfdbe5e9e6bfaedc59d80fbf62087fa43c27d.cairo": "return (syscall_ptr,pedersen_ptr,range_check_ptr,retdata_size,retdata);\n", - "autogen/starknet/external/return/getOwner/b6df8dec790559c2c5b7a358af946adc3119f253addccded3beb4074a973d539.cairo": "func getOwner_encode_return(ret_value: (owner: felt), range_check_ptr) -> (\n range_check_ptr: felt, data_len: felt, data: felt*) {\n %{ memory[ap] = segments.add() %}\n alloc_locals;\n local __return_value_ptr_start: felt*;\n let __return_value_ptr = __return_value_ptr_start;\n with range_check_ptr {\n }\n return (\n range_check_ptr=range_check_ptr,\n data_len=__return_value_ptr - __return_value_ptr_start,\n data=__return_value_ptr_start);\n}\n", - "autogen/starknet/external/return/getThresholds/9802441e33a7be9198a89b97eee0a4392d67fc60729ed368669d796a14056b69.cairo": "func getThresholds_encode_return(ret_value: (thresholds_len: felt, thresholds: felt*), range_check_ptr) -> (\n range_check_ptr: felt, data_len: felt, data: felt*) {\n %{ memory[ap] = segments.add() %}\n alloc_locals;\n local __return_value_ptr_start: felt*;\n let __return_value_ptr = __return_value_ptr_start;\n with range_check_ptr {\n }\n return (\n range_check_ptr=range_check_ptr,\n data_len=__return_value_ptr - __return_value_ptr_start,\n data=__return_value_ptr_start);\n}\n", - "autogen/starknet/external/return/token_uri/f48cf5085ac07908983bbc364b0ba70d64fa7f2a9b8dc38e9d6fe3783bd626a8.cairo": "func token_uri_encode_return(ret_value: (token_uri_len: felt, token_uri: felt*), range_check_ptr) -> (\n range_check_ptr: felt, data_len: felt, data: felt*) {\n %{ memory[ap] = segments.add() %}\n alloc_locals;\n local __return_value_ptr_start: felt*;\n let __return_value_ptr = __return_value_ptr_start;\n with range_check_ptr {\n }\n return (\n range_check_ptr=range_check_ptr,\n data_len=__return_value_ptr - __return_value_ptr_start,\n data=__return_value_ptr_start);\n}\n", - "autogen/starknet/external/setThresholds/741ea357d6336b0bed7bf0472425acd0311d543883b803388880e60a232040c7.cairo": "let range_check_ptr = [cast([cast(fp + (-5), felt**)] + 2, felt*)];\n", - "autogen/starknet/external/setThresholds/9684a85e93c782014ca14293edea4eb2502039a5a7b6538ecd39c56faaf12529.cairo": "let pedersen_ptr = [cast([cast(fp + (-5), felt**)] + 1, starkware.cairo.common.cairo_builtins.HashBuiltin**)];\n", - "autogen/starknet/external/setThresholds/b2c52ca2d2a8fc8791a983086d8716c5eacd0c3d62934914d2286f84b98ff4cb.cairo": "let syscall_ptr = [cast([cast(fp + (-5), felt**)] + 0, felt**)];\n", - "autogen/starknet/external/setThresholds/da17921a4e81c09e730800bbf23bfdbe5e9e6bfaedc59d80fbf62087fa43c27d.cairo": "return (syscall_ptr,pedersen_ptr,range_check_ptr,retdata_size,retdata);\n", - "autogen/starknet/external/setThresholds/e1079c359f90fa1512a45e8d21aee37f44f5279b379ca7982c52634d864bb1a2.cairo": "let ret_value = __wrapped_func{syscall_ptr=syscall_ptr, pedersen_ptr=pedersen_ptr, range_check_ptr=range_check_ptr}(thresholds_len=__calldata_arg_thresholds_len, thresholds=__calldata_arg_thresholds,);\n%{ memory[ap] = segments.add() %} // Allocate memory for return value.\ntempvar retdata: felt*;\nlet retdata_size = 0;\n", - "autogen/starknet/external/token_uri/0e46c67014b1932c61618de0923cda1cd086d4d13ccfc96398cf52540cb66251.cairo": "func token_uri() -> (syscall_ptr: felt*, pedersen_ptr: starkware.cairo.common.cairo_builtins.HashBuiltin*, range_check_ptr: felt, size: felt, retdata: felt*) {\n alloc_locals;\n}\n", - "autogen/starknet/external/token_uri/3c45a718d5dec5c07bc4698665154ce6a53892dd6482470bafad1a3c27838e5e.cairo": "let ret_value = __wrapped_func{pedersen_ptr=pedersen_ptr, syscall_ptr=syscall_ptr, range_check_ptr=range_check_ptr}(token_id=__calldata_arg_token_id, value=__calldata_arg_value, name=__calldata_arg_name,);\nlet (range_check_ptr, retdata_size, retdata) = token_uri_encode_return(ret_value, range_check_ptr);\n", - "autogen/starknet/external/token_uri/741ea357d6336b0bed7bf0472425acd0311d543883b803388880e60a232040c7.cairo": "let range_check_ptr = [cast([cast(fp + (-5), felt**)] + 2, felt*)];\n", - "autogen/starknet/external/token_uri/9684a85e93c782014ca14293edea4eb2502039a5a7b6538ecd39c56faaf12529.cairo": "let pedersen_ptr = [cast([cast(fp + (-5), felt**)] + 1, starkware.cairo.common.cairo_builtins.HashBuiltin**)];\n", - "autogen/starknet/external/token_uri/b2c52ca2d2a8fc8791a983086d8716c5eacd0c3d62934914d2286f84b98ff4cb.cairo": "let syscall_ptr = [cast([cast(fp + (-5), felt**)] + 0, felt**)];\n", - "autogen/starknet/external/token_uri/da17921a4e81c09e730800bbf23bfdbe5e9e6bfaedc59d80fbf62087fa43c27d.cairo": "return (syscall_ptr,pedersen_ptr,range_check_ptr,retdata_size,retdata);\n", - "autogen/starknet/external/transferOwnership/741ea357d6336b0bed7bf0472425acd0311d543883b803388880e60a232040c7.cairo": "let range_check_ptr = [cast([cast(fp + (-5), felt**)] + 2, felt*)];\n", - "autogen/starknet/external/transferOwnership/9684a85e93c782014ca14293edea4eb2502039a5a7b6538ecd39c56faaf12529.cairo": "let pedersen_ptr = [cast([cast(fp + (-5), felt**)] + 1, starkware.cairo.common.cairo_builtins.HashBuiltin**)];\n", - "autogen/starknet/external/transferOwnership/b2c52ca2d2a8fc8791a983086d8716c5eacd0c3d62934914d2286f84b98ff4cb.cairo": "let syscall_ptr = [cast([cast(fp + (-5), felt**)] + 0, felt**)];\n", - "autogen/starknet/external/transferOwnership/c2abbdf6d40d1d1b0441e88eb8846ba0c3d55e5f282e3d3f8d0a35a43a9b3e33.cairo": "let ret_value = __wrapped_func{syscall_ptr=syscall_ptr, pedersen_ptr=pedersen_ptr, range_check_ptr=range_check_ptr}(new_owner=__calldata_arg_new_owner,);\n%{ memory[ap] = segments.add() %} // Allocate memory for return value.\ntempvar retdata: felt*;\nlet retdata_size = 0;\n", - "autogen/starknet/external/transferOwnership/da17921a4e81c09e730800bbf23bfdbe5e9e6bfaedc59d80fbf62087fa43c27d.cairo": "return (syscall_ptr,pedersen_ptr,range_check_ptr,retdata_size,retdata);\n", - "autogen/starknet/storage_var/Ownable_owner/decl.cairo": "namespace Ownable_owner {\n from starkware.starknet.common.storage import normalize_address\n from starkware.starknet.common.syscalls import storage_read, storage_write\n from starkware.cairo.common.cairo_builtins import HashBuiltin\n from starkware.cairo.common.hash import hash2\n\n func addr{pedersen_ptr: HashBuiltin*, range_check_ptr}() -> (res: felt) {\n let res = 0;\n call hash2;\n call normalize_address;\n }\n\n func read{syscall_ptr: felt*, pedersen_ptr: HashBuiltin*, range_check_ptr}() -> (owner: felt) {\n let storage_addr = 0;\n call addr;\n call storage_read;\n }\n\n func write{syscall_ptr: felt*, pedersen_ptr: HashBuiltin*, range_check_ptr}(value: felt) {\n let storage_addr = 0;\n call addr;\n call storage_write;\n }\n}", - "autogen/starknet/storage_var/Ownable_owner/impl.cairo": "namespace Ownable_owner {\n from starkware.starknet.common.storage import normalize_address\n from starkware.starknet.common.syscalls import storage_read, storage_write\n from starkware.cairo.common.cairo_builtins import HashBuiltin\n from starkware.cairo.common.hash import hash2\n\n func addr{pedersen_ptr: HashBuiltin*, range_check_ptr}() -> (res: felt) {\n let res = 1239149872729906871793169171313897310809028090219849129902089947133222824240;\n return (res=res);\n }\n\n func read{syscall_ptr: felt*, pedersen_ptr: HashBuiltin*, range_check_ptr}() -> (owner: felt) {\n let (storage_addr) = addr();\n let (__storage_var_temp0) = storage_read(address=storage_addr + 0);\n\n tempvar syscall_ptr = syscall_ptr;\n tempvar pedersen_ptr = pedersen_ptr;\n tempvar range_check_ptr = range_check_ptr;\n tempvar __storage_var_temp0: felt = __storage_var_temp0;\n return ([cast(&__storage_var_temp0, felt*)],);\n }\n\n func write{syscall_ptr: felt*, pedersen_ptr: HashBuiltin*, range_check_ptr}(value: felt) {\n let (storage_addr) = addr();\n storage_write(address=storage_addr + 0, value=[cast(&value, felt) + 0]);\n return ();\n }\n}", - "autogen/starknet/storage_var/_thresholds/decl.cairo": "namespace _thresholds {\n from starkware.starknet.common.storage import normalize_address\n from starkware.starknet.common.syscalls import storage_read, storage_write\n from starkware.cairo.common.cairo_builtins import HashBuiltin\n from starkware.cairo.common.hash import hash2\n\n func addr{pedersen_ptr: HashBuiltin*, range_check_ptr}(index: felt) -> (res: felt) {\n let res = 0;\n call hash2;\n call normalize_address;\n }\n\n func read{syscall_ptr: felt*, pedersen_ptr: HashBuiltin*, range_check_ptr}(index: felt) -> (\n value: felt\n ) {\n let storage_addr = 0;\n call addr;\n call storage_read;\n }\n\n func write{syscall_ptr: felt*, pedersen_ptr: HashBuiltin*, range_check_ptr}(\n index: felt, value: felt\n ) {\n let storage_addr = 0;\n call addr;\n call storage_write;\n }\n}", - "autogen/starknet/storage_var/_thresholds/impl.cairo": "namespace _thresholds {\n from starkware.starknet.common.storage import normalize_address\n from starkware.starknet.common.syscalls import storage_read, storage_write\n from starkware.cairo.common.cairo_builtins import HashBuiltin\n from starkware.cairo.common.hash import hash2\n\n func addr{pedersen_ptr: HashBuiltin*, range_check_ptr}(index: felt) -> (res: felt) {\n let res = 158347720256396783173487384407040855432583911625230562723703395952875123552;\n let (res) = hash2{hash_ptr=pedersen_ptr}(res, cast(&index, felt*)[0]);\n let (res) = normalize_address(addr=res);\n return (res=res);\n }\n\n func read{syscall_ptr: felt*, pedersen_ptr: HashBuiltin*, range_check_ptr}(index: felt) -> (\n value: felt\n ) {\n let (storage_addr) = addr(index);\n let (__storage_var_temp0) = storage_read(address=storage_addr + 0);\n\n tempvar syscall_ptr = syscall_ptr;\n tempvar pedersen_ptr = pedersen_ptr;\n tempvar range_check_ptr = range_check_ptr;\n tempvar __storage_var_temp0: felt = __storage_var_temp0;\n return ([cast(&__storage_var_temp0, felt*)],);\n }\n\n func write{syscall_ptr: felt*, pedersen_ptr: HashBuiltin*, range_check_ptr}(\n index: felt, value: felt\n ) {\n let (storage_addr) = addr(index);\n storage_write(address=storage_addr + 0, value=[cast(&value, felt) + 0]);\n return ();\n }\n}", - "autogen/starknet/storage_var/_thresholds_len/decl.cairo": "namespace _thresholds_len {\n from starkware.starknet.common.storage import normalize_address\n from starkware.starknet.common.syscalls import storage_read, storage_write\n from starkware.cairo.common.cairo_builtins import HashBuiltin\n from starkware.cairo.common.hash import hash2\n\n func addr{pedersen_ptr: HashBuiltin*, range_check_ptr}() -> (res: felt) {\n let res = 0;\n call hash2;\n call normalize_address;\n }\n\n func read{syscall_ptr: felt*, pedersen_ptr: HashBuiltin*, range_check_ptr}() -> (res: felt) {\n let storage_addr = 0;\n call addr;\n call storage_read;\n }\n\n func write{syscall_ptr: felt*, pedersen_ptr: HashBuiltin*, range_check_ptr}(value: felt) {\n let storage_addr = 0;\n call addr;\n call storage_write;\n }\n}", - "autogen/starknet/storage_var/_thresholds_len/impl.cairo": "namespace _thresholds_len {\n from starkware.starknet.common.storage import normalize_address\n from starkware.starknet.common.syscalls import storage_read, storage_write\n from starkware.cairo.common.cairo_builtins import HashBuiltin\n from starkware.cairo.common.hash import hash2\n\n func addr{pedersen_ptr: HashBuiltin*, range_check_ptr}() -> (res: felt) {\n let res = 1717226373669478754082247478826678795094949380452018479942077389493393690520;\n return (res=res);\n }\n\n func read{syscall_ptr: felt*, pedersen_ptr: HashBuiltin*, range_check_ptr}() -> (res: felt) {\n let (storage_addr) = addr();\n let (__storage_var_temp0) = storage_read(address=storage_addr + 0);\n\n tempvar syscall_ptr = syscall_ptr;\n tempvar pedersen_ptr = pedersen_ptr;\n tempvar range_check_ptr = range_check_ptr;\n tempvar __storage_var_temp0: felt = __storage_var_temp0;\n return ([cast(&__storage_var_temp0, felt*)],);\n }\n\n func write{syscall_ptr: felt*, pedersen_ptr: HashBuiltin*, range_check_ptr}(value: felt) {\n let (storage_addr) = addr();\n storage_write(address=storage_addr + 0, value=[cast(&value, felt) + 0]);\n return ();\n }\n}", - "autogen/starknet/storage_var/initialized/decl.cairo": "namespace initialized {\n from starkware.starknet.common.storage import normalize_address\n from starkware.starknet.common.syscalls import storage_read, storage_write\n from starkware.cairo.common.cairo_builtins import HashBuiltin\n from starkware.cairo.common.hash import hash2\n\n func addr{pedersen_ptr: HashBuiltin*, range_check_ptr}() -> (res: felt) {\n let res = 0;\n call hash2;\n call normalize_address;\n }\n\n func read{syscall_ptr: felt*, pedersen_ptr: HashBuiltin*, range_check_ptr}() -> (res: felt) {\n let storage_addr = 0;\n call addr;\n call storage_read;\n }\n\n func write{syscall_ptr: felt*, pedersen_ptr: HashBuiltin*, range_check_ptr}(value: felt) {\n let storage_addr = 0;\n call addr;\n call storage_write;\n }\n}", - "autogen/starknet/storage_var/initialized/impl.cairo": "namespace initialized {\n from starkware.starknet.common.storage import normalize_address\n from starkware.starknet.common.syscalls import storage_read, storage_write\n from starkware.cairo.common.cairo_builtins import HashBuiltin\n from starkware.cairo.common.hash import hash2\n\n func addr{pedersen_ptr: HashBuiltin*, range_check_ptr}() -> (res: felt) {\n let res = 1697461057326310581967816530165551571743938660869987744467005324703617544296;\n return (res=res);\n }\n\n func read{syscall_ptr: felt*, pedersen_ptr: HashBuiltin*, range_check_ptr}() -> (res: felt) {\n let (storage_addr) = addr();\n let (__storage_var_temp0) = storage_read(address=storage_addr + 0);\n\n tempvar syscall_ptr = syscall_ptr;\n tempvar pedersen_ptr = pedersen_ptr;\n tempvar range_check_ptr = range_check_ptr;\n tempvar __storage_var_temp0: felt = __storage_var_temp0;\n return ([cast(&__storage_var_temp0, felt*)],);\n }\n\n func write{syscall_ptr: felt*, pedersen_ptr: HashBuiltin*, range_check_ptr}(value: felt) {\n let (storage_addr) = addr();\n storage_write(address=storage_addr + 0, value=[cast(&value, felt) + 0]);\n return ();\n }\n}" - }, - "instruction_locations": { - "0": { - "accessible_scopes": [ - "starkware.cairo.common.alloc", - "starkware.cairo.common.alloc.alloc" - ], - "flow_tracking_data": null, - "hints": [ - { - "location": { - "end_col": 38, - "end_line": 3, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/alloc.cairo" - }, - "start_col": 5, - "start_line": 3 - }, - "n_prefix_newlines": 0 - } - ], - "inst": { - "end_col": 12, - "end_line": 4, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/alloc.cairo" - }, - "start_col": 5, - "start_line": 4 - } - }, - "2": { - "accessible_scopes": [ - "starkware.cairo.common.alloc", - "starkware.cairo.common.alloc.alloc" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 40, - "end_line": 5, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/alloc.cairo" - }, - "start_col": 5, - "start_line": 5 - } - }, - "3": { - "accessible_scopes": [ - "starkware.cairo.common.hash", - "starkware.cairo.common.hash.hash2" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 19, - "end_line": 14, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/hash.cairo" - }, - "start_col": 5, - "start_line": 14 - } - }, - "4": { - "accessible_scopes": [ - "starkware.cairo.common.hash", - "starkware.cairo.common.hash.hash2" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 19, - "end_line": 15, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/hash.cairo" - }, - "start_col": 5, - "start_line": 15 - } - }, - "5": { - "accessible_scopes": [ - "starkware.cairo.common.hash", - "starkware.cairo.common.hash.hash2" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 47, - "end_line": 17, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/hash.cairo" - }, - "parent_location": [ - { - "end_col": 34, - "end_line": 13, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/hash.cairo" - }, - "parent_location": [ - { - "end_col": 28, - "end_line": 18, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/hash.cairo" - }, - "start_col": 5, - "start_line": 18 - }, - "While trying to retrieve the implicit argument 'hash_ptr' in:" - ], - "start_col": 12, - "start_line": 13 - }, - "While expanding the reference 'hash_ptr' in:" - ], - "start_col": 20, - "start_line": 17 - } - }, - "7": { - "accessible_scopes": [ - "starkware.cairo.common.hash", - "starkware.cairo.common.hash.hash2" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 33, - "end_line": 16, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/hash.cairo" - }, - "parent_location": [ - { - "end_col": 26, - "end_line": 18, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/hash.cairo" - }, - "start_col": 20, - "start_line": 18 - }, - "While expanding the reference 'result' in:" - ], - "start_col": 18, - "start_line": 16 - } - }, - "8": { - "accessible_scopes": [ - "starkware.cairo.common.hash", - "starkware.cairo.common.hash.hash2" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 28, - "end_line": 18, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/hash.cairo" - }, - "start_col": 5, - "start_line": 18 - } - }, - "9": { - "accessible_scopes": [ - "starkware.cairo.common.memcpy", - "starkware.cairo.common.memcpy.memcpy" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 7, - "end_line": 8, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/memcpy.cairo" - }, - "start_col": 5, - "start_line": 8 - } - }, - "11": { - "accessible_scopes": [ - "starkware.cairo.common.memcpy", - "starkware.cairo.common.memcpy.memcpy" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 19, - "end_line": 9, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/memcpy.cairo" - }, - "start_col": 9, - "start_line": 9 - } - }, - "12": { - "accessible_scopes": [ - "starkware.cairo.common.memcpy", - "starkware.cairo.common.memcpy.memcpy" - ], - "flow_tracking_data": null, - "hints": [ - { - "location": { - "end_col": 41, - "end_line": 12, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/memcpy.cairo" - }, - "start_col": 5, - "start_line": 12 - }, - "n_prefix_newlines": 0 - } - ], - "inst": { - "end_col": 23, - "end_line": 2, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/memcpy.cairo" - }, - "parent_location": [ - { - "end_col": 38, - "end_line": 13, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/memcpy.cairo" - }, - "start_col": 35, - "start_line": 13 - }, - "While expanding the reference 'dst' in:" - ], - "start_col": 13, - "start_line": 2 - } - }, - "13": { - "accessible_scopes": [ - "starkware.cairo.common.memcpy", - "starkware.cairo.common.memcpy.memcpy" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 35, - "end_line": 2, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/memcpy.cairo" - }, - "parent_location": [ - { - "end_col": 47, - "end_line": 13, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/memcpy.cairo" - }, - "start_col": 44, - "start_line": 13 - }, - "While expanding the reference 'src' in:" - ], - "start_col": 25, - "start_line": 2 - } - }, - "14": { - "accessible_scopes": [ - "starkware.cairo.common.memcpy", - "starkware.cairo.common.memcpy.memcpy" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 37, - "end_line": 17, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/memcpy.cairo" - }, - "start_col": 26, - "start_line": 17 - } - }, - "15": { - "accessible_scopes": [ - "starkware.cairo.common.memcpy", - "starkware.cairo.common.memcpy.memcpy" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 38, - "end_line": 17, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/memcpy.cairo" - }, - "start_col": 5, - "start_line": 17 - } - }, - "16": { - "accessible_scopes": [ - "starkware.cairo.common.memcpy", - "starkware.cairo.common.memcpy.memcpy" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 41, - "end_line": 22, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/memcpy.cairo" - }, - "start_col": 5, - "start_line": 22 - } - }, - "18": { - "accessible_scopes": [ - "starkware.cairo.common.memcpy", - "starkware.cairo.common.memcpy.memcpy" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 41, - "end_line": 23, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/memcpy.cairo" - }, - "start_col": 5, - "start_line": 23 - } - }, - "20": { - "accessible_scopes": [ - "starkware.cairo.common.memcpy", - "starkware.cairo.common.memcpy.memcpy" - ], - "flow_tracking_data": null, - "hints": [ - { - "location": { - "end_col": 7, - "end_line": 27, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/memcpy.cairo" - }, - "start_col": 5, - "start_line": 24 - }, - "n_prefix_newlines": 1 - } - ], - "inst": { - "end_col": 44, - "end_line": 29, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/memcpy.cairo" - }, - "start_col": 5, - "start_line": 29 - } - }, - "22": { - "accessible_scopes": [ - "starkware.cairo.common.memcpy", - "starkware.cairo.common.memcpy.memcpy" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 55, - "end_line": 31, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/memcpy.cairo" - }, - "start_col": 5, - "start_line": 31 - } - }, - "23": { - "accessible_scopes": [ - "starkware.cairo.common.memcpy", - "starkware.cairo.common.memcpy.memcpy" - ], - "flow_tracking_data": null, - "hints": [ - { - "location": { - "end_col": 26, - "end_line": 33, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/memcpy.cairo" - }, - "start_col": 5, - "start_line": 33 - }, - "n_prefix_newlines": 0 - } - ], - "inst": { - "end_col": 15, - "end_line": 34, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/memcpy.cairo" - }, - "start_col": 5, - "start_line": 34 - } - }, - "24": { - "accessible_scopes": [ - "starkware.cairo.lang.compiler.lib.registers", - "starkware.cairo.lang.compiler.lib.registers.get_fp_and_pc" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 73, - "end_line": 7, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/lang/compiler/lib/registers.cairo" - }, - "start_col": 5, - "start_line": 7 - } - }, - "25": { - "accessible_scopes": [ - "starkware.starknet.common.syscalls", - "starkware.starknet.common.syscalls.get_caller_address" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 90, - "end_line": 202, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/starknet/common/syscalls.cairo" - }, - "start_col": 63, - "start_line": 202 - } - }, - "27": { - "accessible_scopes": [ - "starkware.starknet.common.syscalls", - "starkware.starknet.common.syscalls.get_caller_address" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 92, - "end_line": 202, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/starknet/common/syscalls.cairo" - }, - "start_col": 5, - "start_line": 202 - } - }, - "28": { - "accessible_scopes": [ - "starkware.starknet.common.syscalls", - "starkware.starknet.common.syscalls.get_caller_address" - ], - "flow_tracking_data": null, - "hints": [ - { - "location": { - "end_col": 93, - "end_line": 203, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/starknet/common/syscalls.cairo" - }, - "start_col": 5, - "start_line": 203 - }, - "n_prefix_newlines": 0 - } - ], - "inst": { - "end_col": 58, - "end_line": 204, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/starknet/common/syscalls.cairo" - }, - "parent_location": [ - { - "end_col": 43, - "end_line": 200, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/starknet/common/syscalls.cairo" - }, - "parent_location": [ - { - "end_col": 61, - "end_line": 205, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/starknet/common/syscalls.cairo" - }, - "start_col": 5, - "start_line": 205 - }, - "While trying to retrieve the implicit argument 'syscall_ptr' in:" - ], - "start_col": 25, - "start_line": 200 - }, - "While expanding the reference 'syscall_ptr' in:" - ], - "start_col": 23, - "start_line": 204 - } - }, - "30": { - "accessible_scopes": [ - "starkware.starknet.common.syscalls", - "starkware.starknet.common.syscalls.get_caller_address" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 59, - "end_line": 205, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/starknet/common/syscalls.cairo" - }, - "start_col": 28, - "start_line": 205 - } - }, - "31": { - "accessible_scopes": [ - "starkware.starknet.common.syscalls", - "starkware.starknet.common.syscalls.get_caller_address" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 61, - "end_line": 205, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/starknet/common/syscalls.cairo" - }, - "start_col": 5, - "start_line": 205 - } - }, - "32": { - "accessible_scopes": [ - "starkware.starknet.common.syscalls", - "starkware.starknet.common.syscalls.storage_read" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 79, - "end_line": 354, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/starknet/common/syscalls.cairo" - }, - "start_col": 58, - "start_line": 354 - } - }, - "34": { - "accessible_scopes": [ - "starkware.starknet.common.syscalls", - "starkware.starknet.common.syscalls.storage_read" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 98, - "end_line": 354, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/starknet/common/syscalls.cairo" - }, - "start_col": 5, - "start_line": 354 - } - }, - "35": { - "accessible_scopes": [ - "starkware.starknet.common.syscalls", - "starkware.starknet.common.syscalls.storage_read" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 98, - "end_line": 354, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/starknet/common/syscalls.cairo" - }, - "start_col": 5, - "start_line": 354 - } - }, - "36": { - "accessible_scopes": [ - "starkware.starknet.common.syscalls", - "starkware.starknet.common.syscalls.storage_read" - ], - "flow_tracking_data": null, - "hints": [ - { - "location": { - "end_col": 87, - "end_line": 355, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/starknet/common/syscalls.cairo" - }, - "start_col": 5, - "start_line": 355 - }, - "n_prefix_newlines": 0 - } - ], - "inst": { - "end_col": 53, - "end_line": 357, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/starknet/common/syscalls.cairo" - }, - "parent_location": [ - { - "end_col": 37, - "end_line": 352, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/starknet/common/syscalls.cairo" - }, - "parent_location": [ - { - "end_col": 35, - "end_line": 358, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/starknet/common/syscalls.cairo" - }, - "start_col": 5, - "start_line": 358 - }, - "While trying to retrieve the implicit argument 'syscall_ptr' in:" - ], - "start_col": 19, - "start_line": 352 - }, - "While expanding the reference 'syscall_ptr' in:" - ], - "start_col": 23, - "start_line": 357 - } - }, - "38": { - "accessible_scopes": [ - "starkware.starknet.common.syscalls", - "starkware.starknet.common.syscalls.storage_read" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 33, - "end_line": 358, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/starknet/common/syscalls.cairo" - }, - "start_col": 19, - "start_line": 358 - } - }, - "39": { - "accessible_scopes": [ - "starkware.starknet.common.syscalls", - "starkware.starknet.common.syscalls.storage_read" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 35, - "end_line": 358, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/starknet/common/syscalls.cairo" - }, - "start_col": 5, - "start_line": 358 - } - }, - "40": { - "accessible_scopes": [ - "starkware.starknet.common.syscalls", - "starkware.starknet.common.syscalls.storage_write" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 40, - "end_line": 372, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/starknet/common/syscalls.cairo" - }, - "start_col": 18, - "start_line": 372 - } - }, - "42": { - "accessible_scopes": [ - "starkware.starknet.common.syscalls", - "starkware.starknet.common.syscalls.storage_write" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 7, - "end_line": 373, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/starknet/common/syscalls.cairo" - }, - "start_col": 5, - "start_line": 371 - } - }, - "43": { - "accessible_scopes": [ - "starkware.starknet.common.syscalls", - "starkware.starknet.common.syscalls.storage_write" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 7, - "end_line": 373, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/starknet/common/syscalls.cairo" - }, - "start_col": 5, - "start_line": 371 - } - }, - "44": { - "accessible_scopes": [ - "starkware.starknet.common.syscalls", - "starkware.starknet.common.syscalls.storage_write" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 7, - "end_line": 373, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/starknet/common/syscalls.cairo" - }, - "start_col": 5, - "start_line": 371 - } - }, - "45": { - "accessible_scopes": [ - "starkware.starknet.common.syscalls", - "starkware.starknet.common.syscalls.storage_write" - ], - "flow_tracking_data": null, - "hints": [ - { - "location": { - "end_col": 88, - "end_line": 374, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/starknet/common/syscalls.cairo" - }, - "start_col": 5, - "start_line": 374 - }, - "n_prefix_newlines": 0 - } - ], - "inst": { - "end_col": 54, - "end_line": 375, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/starknet/common/syscalls.cairo" - }, - "parent_location": [ - { - "end_col": 38, - "end_line": 370, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/starknet/common/syscalls.cairo" - }, - "parent_location": [ - { - "end_col": 15, - "end_line": 376, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/starknet/common/syscalls.cairo" - }, - "start_col": 5, - "start_line": 376 - }, - "While trying to retrieve the implicit argument 'syscall_ptr' in:" - ], - "start_col": 20, - "start_line": 370 - }, - "While expanding the reference 'syscall_ptr' in:" - ], - "start_col": 23, - "start_line": 375 - } - }, - "47": { - "accessible_scopes": [ - "starkware.starknet.common.syscalls", - "starkware.starknet.common.syscalls.storage_write" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 15, - "end_line": 376, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/starknet/common/syscalls.cairo" - }, - "start_col": 5, - "start_line": 376 - } - }, - "48": { - "accessible_scopes": [ - "starkware.starknet.common.syscalls", - "starkware.starknet.common.syscalls.emit_event" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 37, - "end_line": 392, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/starknet/common/syscalls.cairo" - }, - "start_col": 18, - "start_line": 392 - } - }, - "50": { - "accessible_scopes": [ - "starkware.starknet.common.syscalls", - "starkware.starknet.common.syscalls.emit_event" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 7, - "end_line": 393, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/starknet/common/syscalls.cairo" - }, - "start_col": 5, - "start_line": 391 - } - }, - "51": { - "accessible_scopes": [ - "starkware.starknet.common.syscalls", - "starkware.starknet.common.syscalls.emit_event" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 7, - "end_line": 393, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/starknet/common/syscalls.cairo" - }, - "start_col": 5, - "start_line": 391 - } - }, - "52": { - "accessible_scopes": [ - "starkware.starknet.common.syscalls", - "starkware.starknet.common.syscalls.emit_event" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 7, - "end_line": 393, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/starknet/common/syscalls.cairo" - }, - "start_col": 5, - "start_line": 391 - } - }, - "53": { - "accessible_scopes": [ - "starkware.starknet.common.syscalls", - "starkware.starknet.common.syscalls.emit_event" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 7, - "end_line": 393, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/starknet/common/syscalls.cairo" - }, - "start_col": 5, - "start_line": 391 - } - }, - "54": { - "accessible_scopes": [ - "starkware.starknet.common.syscalls", - "starkware.starknet.common.syscalls.emit_event" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 7, - "end_line": 393, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/starknet/common/syscalls.cairo" - }, - "start_col": 5, - "start_line": 391 - } - }, - "55": { - "accessible_scopes": [ - "starkware.starknet.common.syscalls", - "starkware.starknet.common.syscalls.emit_event" - ], - "flow_tracking_data": null, - "hints": [ - { - "location": { - "end_col": 85, - "end_line": 394, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/starknet/common/syscalls.cairo" - }, - "start_col": 5, - "start_line": 394 - }, - "n_prefix_newlines": 0 - } - ], - "inst": { - "end_col": 51, - "end_line": 395, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/starknet/common/syscalls.cairo" - }, - "parent_location": [ - { - "end_col": 35, - "end_line": 390, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/starknet/common/syscalls.cairo" - }, - "parent_location": [ - { - "end_col": 15, - "end_line": 396, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/starknet/common/syscalls.cairo" - }, - "start_col": 5, - "start_line": 396 - }, - "While trying to retrieve the implicit argument 'syscall_ptr' in:" - ], - "start_col": 17, - "start_line": 390 - }, - "While expanding the reference 'syscall_ptr' in:" - ], - "start_col": 23, - "start_line": 395 - } - }, - "57": { - "accessible_scopes": [ - "starkware.starknet.common.syscalls", - "starkware.starknet.common.syscalls.emit_event" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 15, - "end_line": 396, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/starknet/common/syscalls.cairo" - }, - "start_col": 5, - "start_line": 396 - } - }, - "58": { - "accessible_scopes": [ - "starkware.cairo.common.math", - "starkware.cairo.common.math.assert_not_zero" - ], - "flow_tracking_data": null, - "hints": [ - { - "location": { - "end_col": 7, - "end_line": 11, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/math.cairo" - }, - "start_col": 5, - "start_line": 7 - }, - "n_prefix_newlines": 1 - } - ], - "inst": { - "end_col": 7, - "end_line": 12, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/math.cairo" - }, - "start_col": 5, - "start_line": 12 - } - }, - "60": { - "accessible_scopes": [ - "starkware.cairo.common.math", - "starkware.cairo.common.math.assert_not_zero" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 18, - "end_line": 14, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/math.cairo" - }, - "start_col": 9, - "start_line": 14 - } - }, - "62": { - "accessible_scopes": [ - "starkware.cairo.common.math", - "starkware.cairo.common.math.assert_not_zero" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 15, - "end_line": 17, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/math.cairo" - }, - "start_col": 5, - "start_line": 17 - } - }, - "63": { - "accessible_scopes": [ - "starkware.cairo.common.math", - "starkware.cairo.common.math.assert_nn" - ], - "flow_tracking_data": null, - "hints": [ - { - "location": { - "end_col": 7, - "end_line": 46, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/math.cairo" - }, - "start_col": 5, - "start_line": 42 - }, - "n_prefix_newlines": 1 - } - ], - "inst": { - "end_col": 26, - "end_line": 47, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/math.cairo" - }, - "start_col": 5, - "start_line": 47 - } - }, - "64": { - "accessible_scopes": [ - "starkware.cairo.common.math", - "starkware.cairo.common.math.assert_nn" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 46, - "end_line": 48, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/math.cairo" - }, - "parent_location": [ - { - "end_col": 31, - "end_line": 41, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/math.cairo" - }, - "parent_location": [ - { - "end_col": 15, - "end_line": 49, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/math.cairo" - }, - "start_col": 5, - "start_line": 49 - }, - "While trying to retrieve the implicit argument 'range_check_ptr' in:" - ], - "start_col": 16, - "start_line": 41 - }, - "While expanding the reference 'range_check_ptr' in:" - ], - "start_col": 27, - "start_line": 48 - } - }, - "66": { - "accessible_scopes": [ - "starkware.cairo.common.math", - "starkware.cairo.common.math.assert_nn" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 15, - "end_line": 49, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/math.cairo" - }, - "start_col": 5, - "start_line": 49 - } - }, - "67": { - "accessible_scopes": [ - "starkware.cairo.common.math", - "starkware.cairo.common.math.assert_le" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 31, - "end_line": 53, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/math.cairo" - }, - "parent_location": [ - { - "end_col": 31, - "end_line": 41, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/math.cairo" - }, - "parent_location": [ - { - "end_col": 21, - "end_line": 54, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/math.cairo" - }, - "start_col": 5, - "start_line": 54 - }, - "While trying to retrieve the implicit argument 'range_check_ptr' in:" - ], - "start_col": 16, - "start_line": 41 - }, - "While expanding the reference 'range_check_ptr' in:" - ], - "start_col": 16, - "start_line": 53 - } - }, - "68": { - "accessible_scopes": [ - "starkware.cairo.common.math", - "starkware.cairo.common.math.assert_le" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 20, - "end_line": 54, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/math.cairo" - }, - "start_col": 15, - "start_line": 54 - } - }, - "69": { - "accessible_scopes": [ - "starkware.cairo.common.math", - "starkware.cairo.common.math.assert_le" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 21, - "end_line": 54, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/math.cairo" - }, - "start_col": 5, - "start_line": 54 - } - }, - "71": { - "accessible_scopes": [ - "starkware.cairo.common.math", - "starkware.cairo.common.math.assert_le" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 15, - "end_line": 55, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/math.cairo" - }, - "start_col": 5, - "start_line": 55 - } - }, - "72": { - "accessible_scopes": [ - "starkware.cairo.common.math", - "starkware.cairo.common.math.assert_250_bit" - ], - "flow_tracking_data": null, - "hints": [ - { - "location": { - "end_col": 7, - "end_line": 106, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/math.cairo" - }, - "start_col": 5, - "start_line": 97 - }, - "n_prefix_newlines": 1 - } - ], - "inst": { - "end_col": 50, - "end_line": 108, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/math.cairo" - }, - "start_col": 36, - "start_line": 108 - } - }, - "74": { - "accessible_scopes": [ - "starkware.cairo.common.math", - "starkware.cairo.common.math.assert_250_bit" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 37, - "end_line": 95, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/math.cairo" - }, - "parent_location": [ - { - "end_col": 57, - "end_line": 108, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/math.cairo" - }, - "start_col": 53, - "start_line": 108 - }, - "While expanding the reference 'high' in:" - ], - "start_col": 16, - "start_line": 95 - } - }, - "75": { - "accessible_scopes": [ - "starkware.cairo.common.math", - "starkware.cairo.common.math.assert_250_bit" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 57, - "end_line": 108, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/math.cairo" - }, - "start_col": 36, - "start_line": 108 - } - }, - "76": { - "accessible_scopes": [ - "starkware.cairo.common.math", - "starkware.cairo.common.math.assert_250_bit" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 58, - "end_line": 108, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/math.cairo" - }, - "start_col": 5, - "start_line": 108 - } - }, - "77": { - "accessible_scopes": [ - "starkware.cairo.common.math", - "starkware.cairo.common.math.assert_250_bit" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 37, - "end_line": 95, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/math.cairo" - }, - "parent_location": [ - { - "end_col": 24, - "end_line": 113, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/math.cairo" - }, - "start_col": 20, - "start_line": 113 - }, - "While expanding the reference 'high' in:" - ], - "start_col": 16, - "start_line": 95 - } - }, - "78": { - "accessible_scopes": [ - "starkware.cairo.common.math", - "starkware.cairo.common.math.assert_250_bit" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 32, - "end_line": 113, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/math.cairo" - }, - "start_col": 20, - "start_line": 113 - } - }, - "80": { - "accessible_scopes": [ - "starkware.cairo.common.math", - "starkware.cairo.common.math.assert_250_bit" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 32, - "end_line": 94, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/math.cairo" - }, - "parent_location": [ - { - "end_col": 38, - "end_line": 113, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/math.cairo" - }, - "start_col": 35, - "start_line": 113 - }, - "While expanding the reference 'low' in:" - ], - "start_col": 15, - "start_line": 94 - } - }, - "81": { - "accessible_scopes": [ - "starkware.cairo.common.math", - "starkware.cairo.common.math.assert_250_bit" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 39, - "end_line": 113, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/math.cairo" - }, - "start_col": 5, - "start_line": 113 - } - }, - "82": { - "accessible_scopes": [ - "starkware.cairo.common.math", - "starkware.cairo.common.math.assert_250_bit" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 46, - "end_line": 115, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/math.cairo" - }, - "parent_location": [ - { - "end_col": 36, - "end_line": 89, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/math.cairo" - }, - "parent_location": [ - { - "end_col": 15, - "end_line": 116, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/math.cairo" - }, - "start_col": 5, - "start_line": 116 - }, - "While trying to retrieve the implicit argument 'range_check_ptr' in:" - ], - "start_col": 21, - "start_line": 89 - }, - "While expanding the reference 'range_check_ptr' in:" - ], - "start_col": 27, - "start_line": 115 - } - }, - "84": { - "accessible_scopes": [ - "starkware.cairo.common.math", - "starkware.cairo.common.math.assert_250_bit" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 15, - "end_line": 116, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/math.cairo" - }, - "start_col": 5, - "start_line": 116 - } - }, - "85": { - "accessible_scopes": [ - "starkware.cairo.common.math", - "starkware.cairo.common.math.split_felt" - ], - "flow_tracking_data": null, - "hints": [ - { - "location": { - "end_col": 7, - "end_line": 141, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/math.cairo" - }, - "start_col": 5, - "start_line": 134 - }, - "n_prefix_newlines": 1 - } - ], - "inst": { - "end_col": 37, - "end_line": 131, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/math.cairo" - }, - "parent_location": [ - { - "end_col": 24, - "end_line": 142, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/math.cairo" - }, - "start_col": 20, - "start_line": 142 - }, - "While expanding the reference 'high' in:" - ], - "start_col": 16, - "start_line": 131 - } - }, - "86": { - "accessible_scopes": [ - "starkware.cairo.common.math", - "starkware.cairo.common.math.split_felt" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 37, - "end_line": 142, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/math.cairo" - }, - "start_col": 20, - "start_line": 142 - } - }, - "88": { - "accessible_scopes": [ - "starkware.cairo.common.math", - "starkware.cairo.common.math.split_felt" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 32, - "end_line": 130, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/math.cairo" - }, - "parent_location": [ - { - "end_col": 43, - "end_line": 142, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/math.cairo" - }, - "start_col": 40, - "start_line": 142 - }, - "While expanding the reference 'low' in:" - ], - "start_col": 15, - "start_line": 130 - } - }, - "89": { - "accessible_scopes": [ - "starkware.cairo.common.math", - "starkware.cairo.common.math.split_felt" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 44, - "end_line": 142, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/math.cairo" - }, - "start_col": 5, - "start_line": 142 - } - }, - "90": { - "accessible_scopes": [ - "starkware.cairo.common.math", - "starkware.cairo.common.math.split_felt" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 37, - "end_line": 131, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/math.cairo" - }, - "parent_location": [ - { - "end_col": 13, - "end_line": 143, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/math.cairo" - }, - "start_col": 9, - "start_line": 143 - }, - "While expanding the reference 'high' in:" - ], - "start_col": 16, - "start_line": 131 - } - }, - "91": { - "accessible_scopes": [ - "starkware.cairo.common.math", - "starkware.cairo.common.math.split_felt" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 25, - "end_line": 143, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/math.cairo" - }, - "start_col": 9, - "start_line": 143 - } - }, - "93": { - "accessible_scopes": [ - "starkware.cairo.common.math", - "starkware.cairo.common.math.split_felt" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 7, - "end_line": 143, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/math.cairo" - }, - "start_col": 5, - "start_line": 143 - } - }, - "95": { - "accessible_scopes": [ - "starkware.cairo.common.math", - "starkware.cairo.common.math.split_felt" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 46, - "end_line": 132, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/math.cairo" - }, - "parent_location": [ - { - "end_col": 31, - "end_line": 53, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/math.cairo" - }, - "parent_location": [ - { - "end_col": 32, - "end_line": 144, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/math.cairo" - }, - "start_col": 9, - "start_line": 144 - }, - "While trying to retrieve the implicit argument 'range_check_ptr' in:" - ], - "start_col": 16, - "start_line": 53 - }, - "While expanding the reference 'range_check_ptr' in:" - ], - "start_col": 27, - "start_line": 132 - } - }, - "97": { - "accessible_scopes": [ - "starkware.cairo.common.math", - "starkware.cairo.common.math.split_felt" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 32, - "end_line": 130, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/math.cairo" - }, - "parent_location": [ - { - "end_col": 22, - "end_line": 144, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/math.cairo" - }, - "start_col": 19, - "start_line": 144 - }, - "While expanding the reference 'low' in:" - ], - "start_col": 15, - "start_line": 130 - } - }, - "98": { - "accessible_scopes": [ - "starkware.cairo.common.math", - "starkware.cairo.common.math.split_felt" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 31, - "end_line": 144, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/math.cairo" - }, - "start_col": 24, - "start_line": 144 - } - }, - "100": { - "accessible_scopes": [ - "starkware.cairo.common.math", - "starkware.cairo.common.math.split_felt" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 32, - "end_line": 144, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/math.cairo" - }, - "start_col": 9, - "start_line": 144 - } - }, - "102": { - "accessible_scopes": [ - "starkware.cairo.common.math", - "starkware.cairo.common.math.split_felt" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 7, - "end_line": 143, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/math.cairo" - }, - "start_col": 5, - "start_line": 143 - } - }, - "104": { - "accessible_scopes": [ - "starkware.cairo.common.math", - "starkware.cairo.common.math.split_felt" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 46, - "end_line": 132, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/math.cairo" - }, - "parent_location": [ - { - "end_col": 31, - "end_line": 53, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/math.cairo" - }, - "parent_location": [ - { - "end_col": 38, - "end_line": 146, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/math.cairo" - }, - "start_col": 9, - "start_line": 146 - }, - "While trying to retrieve the implicit argument 'range_check_ptr' in:" - ], - "start_col": 16, - "start_line": 53 - }, - "While expanding the reference 'range_check_ptr' in:" - ], - "start_col": 27, - "start_line": 132 - } - }, - "106": { - "accessible_scopes": [ - "starkware.cairo.common.math", - "starkware.cairo.common.math.split_felt" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 37, - "end_line": 131, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/math.cairo" - }, - "parent_location": [ - { - "end_col": 23, - "end_line": 146, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/math.cairo" - }, - "start_col": 19, - "start_line": 146 - }, - "While expanding the reference 'high' in:" - ], - "start_col": 16, - "start_line": 131 - } - }, - "107": { - "accessible_scopes": [ - "starkware.cairo.common.math", - "starkware.cairo.common.math.split_felt" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 37, - "end_line": 146, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/math.cairo" - }, - "start_col": 25, - "start_line": 146 - } - }, - "109": { - "accessible_scopes": [ - "starkware.cairo.common.math", - "starkware.cairo.common.math.split_felt" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 38, - "end_line": 146, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/math.cairo" - }, - "start_col": 9, - "start_line": 146 - } - }, - "111": { - "accessible_scopes": [ - "starkware.cairo.common.math", - "starkware.cairo.common.math.split_felt" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 37, - "end_line": 131, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/math.cairo" - }, - "parent_location": [ - { - "end_col": 22, - "end_line": 148, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/math.cairo" - }, - "start_col": 18, - "start_line": 148 - }, - "While expanding the reference 'high' in:" - ], - "start_col": 16, - "start_line": 131 - } - }, - "112": { - "accessible_scopes": [ - "starkware.cairo.common.math", - "starkware.cairo.common.math.split_felt" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 32, - "end_line": 130, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/math.cairo" - }, - "parent_location": [ - { - "end_col": 31, - "end_line": 148, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/math.cairo" - }, - "start_col": 28, - "start_line": 148 - }, - "While expanding the reference 'low' in:" - ], - "start_col": 15, - "start_line": 130 - } - }, - "113": { - "accessible_scopes": [ - "starkware.cairo.common.math", - "starkware.cairo.common.math.split_felt" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 33, - "end_line": 148, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/math.cairo" - }, - "start_col": 5, - "start_line": 148 - } - }, - "114": { - "accessible_scopes": [ - "starkware.cairo.common.math", - "starkware.cairo.common.math.assert_le_felt" - ], - "flow_tracking_data": null, - "hints": [ - { - "location": { - "end_col": 7, - "end_line": 184, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/math.cairo" - }, - "start_col": 5, - "start_line": 164 - }, - "n_prefix_newlines": 1 - } - ], - "inst": { - "end_col": 42, - "end_line": 186, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/math.cairo" - }, - "start_col": 25, - "start_line": 186 - } - }, - "115": { - "accessible_scopes": [ - "starkware.cairo.common.math", - "starkware.cairo.common.math.assert_le_felt" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 66, - "end_line": 186, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/math.cairo" - }, - "start_col": 45, - "start_line": 186 - } - }, - "116": { - "accessible_scopes": [ - "starkware.cairo.common.math", - "starkware.cairo.common.math.assert_le_felt" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 86, - "end_line": 186, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/math.cairo" - }, - "start_col": 45, - "start_line": 186 - } - }, - "118": { - "accessible_scopes": [ - "starkware.cairo.common.math", - "starkware.cairo.common.math.assert_le_felt" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 86, - "end_line": 186, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/math.cairo" - }, - "start_col": 25, - "start_line": 186 - } - }, - "119": { - "accessible_scopes": [ - "starkware.cairo.common.math", - "starkware.cairo.common.math.assert_le_felt" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 45, - "end_line": 187, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/math.cairo" - }, - "start_col": 24, - "start_line": 187 - } - }, - "120": { - "accessible_scopes": [ - "starkware.cairo.common.math", - "starkware.cairo.common.math.assert_le_felt" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 69, - "end_line": 187, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/math.cairo" - }, - "start_col": 48, - "start_line": 187 - } - }, - "121": { - "accessible_scopes": [ - "starkware.cairo.common.math", - "starkware.cairo.common.math.assert_le_felt" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 89, - "end_line": 187, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/math.cairo" - }, - "start_col": 48, - "start_line": 187 - } - }, - "123": { - "accessible_scopes": [ - "starkware.cairo.common.math", - "starkware.cairo.common.math.assert_le_felt" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 89, - "end_line": 187, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/math.cairo" - }, - "start_col": 24, - "start_line": 187 - } - }, - "124": { - "accessible_scopes": [ - "starkware.cairo.common.math", - "starkware.cairo.common.math.assert_le_felt" - ], - "flow_tracking_data": null, - "hints": [ - { - "location": { - "end_col": 49, - "end_line": 196, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/math.cairo" - }, - "start_col": 5, - "start_line": 196 - }, - "n_prefix_newlines": 0 - } - ], - "inst": { - "end_col": 42, - "end_line": 197, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/math.cairo" - }, - "start_col": 5, - "start_line": 197 - } - }, - "126": { - "accessible_scopes": [ - "starkware.cairo.common.math", - "starkware.cairo.common.math.assert_le_felt" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 25, - "end_line": 198, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/math.cairo" - }, - "start_col": 23, - "start_line": 198 - } - }, - "128": { - "accessible_scopes": [ - "starkware.cairo.common.math", - "starkware.cairo.common.math.assert_le_felt" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 30, - "end_line": 198, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/math.cairo" - }, - "start_col": 22, - "start_line": 198 - } - }, - "129": { - "accessible_scopes": [ - "starkware.cairo.common.math", - "starkware.cairo.common.math.assert_le_felt" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 31, - "end_line": 198, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/math.cairo" - }, - "start_col": 5, - "start_line": 198 - } - }, - "130": { - "accessible_scopes": [ - "starkware.cairo.common.math", - "starkware.cairo.common.math.assert_le_felt" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 29, - "end_line": 199, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/math.cairo" - }, - "start_col": 24, - "start_line": 199 - } - }, - "131": { - "accessible_scopes": [ - "starkware.cairo.common.math", - "starkware.cairo.common.math.assert_le_felt" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 39, - "end_line": 199, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/math.cairo" - }, - "start_col": 34, - "start_line": 199 - } - }, - "133": { - "accessible_scopes": [ - "starkware.cairo.common.math", - "starkware.cairo.common.math.assert_le_felt" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 40, - "end_line": 199, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/math.cairo" - }, - "start_col": 23, - "start_line": 199 - } - }, - "134": { - "accessible_scopes": [ - "starkware.cairo.common.math", - "starkware.cairo.common.math.assert_le_felt" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 41, - "end_line": 199, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/math.cairo" - }, - "start_col": 5, - "start_line": 199 - } - }, - "135": { - "accessible_scopes": [ - "starkware.cairo.common.math", - "starkware.cairo.common.math.assert_le_felt" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 46, - "end_line": 188, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/math.cairo" - }, - "parent_location": [ - { - "end_col": 36, - "end_line": 154, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/math.cairo" - }, - "parent_location": [ - { - "end_col": 15, - "end_line": 200, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/math.cairo" - }, - "start_col": 5, - "start_line": 200 - }, - "While trying to retrieve the implicit argument 'range_check_ptr' in:" - ], - "start_col": 21, - "start_line": 154 - }, - "While expanding the reference 'range_check_ptr' in:" - ], - "start_col": 27, - "start_line": 188 - } - }, - "137": { - "accessible_scopes": [ - "starkware.cairo.common.math", - "starkware.cairo.common.math.assert_le_felt" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 15, - "end_line": 200, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/math.cairo" - }, - "start_col": 5, - "start_line": 200 - } - }, - "138": { - "accessible_scopes": [ - "starkware.cairo.common.math", - "starkware.cairo.common.math.assert_le_felt" - ], - "flow_tracking_data": null, - "hints": [ - { - "location": { - "end_col": 49, - "end_line": 204, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/math.cairo" - }, - "start_col": 5, - "start_line": 204 - }, - "n_prefix_newlines": 0 - } - ], - "inst": { - "end_col": 50, - "end_line": 205, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/math.cairo" - }, - "start_col": 5, - "start_line": 205 - } - }, - "140": { - "accessible_scopes": [ - "starkware.cairo.common.math", - "starkware.cairo.common.math.assert_le_felt" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 23, - "end_line": 206, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/math.cairo" - }, - "start_col": 21, - "start_line": 206 - } - }, - "142": { - "accessible_scopes": [ - "starkware.cairo.common.math", - "starkware.cairo.common.math.assert_le_felt" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 28, - "end_line": 206, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/math.cairo" - }, - "start_col": 20, - "start_line": 206 - } - }, - "143": { - "accessible_scopes": [ - "starkware.cairo.common.math", - "starkware.cairo.common.math.assert_le_felt" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 30, - "end_line": 207, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/math.cairo" - }, - "start_col": 22, - "start_line": 207 - } - }, - "144": { - "accessible_scopes": [ - "starkware.cairo.common.math", - "starkware.cairo.common.math.assert_le_felt" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 31, - "end_line": 207, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/math.cairo" - }, - "start_col": 5, - "start_line": 207 - } - }, - "145": { - "accessible_scopes": [ - "starkware.cairo.common.math", - "starkware.cairo.common.math.assert_le_felt" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 31, - "end_line": 208, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/math.cairo" - }, - "start_col": 23, - "start_line": 208 - } - }, - "146": { - "accessible_scopes": [ - "starkware.cairo.common.math", - "starkware.cairo.common.math.assert_le_felt" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 32, - "end_line": 208, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/math.cairo" - }, - "start_col": 5, - "start_line": 208 - } - }, - "147": { - "accessible_scopes": [ - "starkware.cairo.common.math", - "starkware.cairo.common.math.assert_le_felt" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 46, - "end_line": 188, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/math.cairo" - }, - "parent_location": [ - { - "end_col": 36, - "end_line": 154, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/math.cairo" - }, - "parent_location": [ - { - "end_col": 15, - "end_line": 209, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/math.cairo" - }, - "start_col": 5, - "start_line": 209 - }, - "While trying to retrieve the implicit argument 'range_check_ptr' in:" - ], - "start_col": 21, - "start_line": 154 - }, - "While expanding the reference 'range_check_ptr' in:" - ], - "start_col": 27, - "start_line": 188 - } - }, - "149": { - "accessible_scopes": [ - "starkware.cairo.common.math", - "starkware.cairo.common.math.assert_le_felt" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 15, - "end_line": 209, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/math.cairo" - }, - "start_col": 5, - "start_line": 209 - } - }, - "150": { - "accessible_scopes": [ - "starkware.cairo.common.math", - "starkware.cairo.common.math.assert_le_felt" - ], - "flow_tracking_data": null, - "hints": [ - { - "location": { - "end_col": 31, - "end_line": 213, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/math.cairo" - }, - "start_col": 5, - "start_line": 213 - }, - "n_prefix_newlines": 0 - } - ], - "inst": { - "end_col": 24, - "end_line": 214, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/math.cairo" - }, - "start_col": 5, - "start_line": 214 - } - }, - "151": { - "accessible_scopes": [ - "starkware.cairo.common.math", - "starkware.cairo.common.math.assert_le_felt" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 33, - "end_line": 215, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/math.cairo" - }, - "start_col": 28, - "start_line": 215 - } - }, - "152": { - "accessible_scopes": [ - "starkware.cairo.common.math", - "starkware.cairo.common.math.assert_le_felt" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 34, - "end_line": 215, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/math.cairo" - }, - "start_col": 23, - "start_line": 215 - } - }, - "153": { - "accessible_scopes": [ - "starkware.cairo.common.math", - "starkware.cairo.common.math.assert_le_felt" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 35, - "end_line": 215, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/math.cairo" - }, - "start_col": 5, - "start_line": 215 - } - }, - "154": { - "accessible_scopes": [ - "starkware.cairo.common.math", - "starkware.cairo.common.math.assert_le_felt" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 12, - "end_line": 216, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/math.cairo" - }, - "start_col": 5, - "start_line": 216 - } - }, - "156": { - "accessible_scopes": [ - "starkware.cairo.common.math", - "starkware.cairo.common.math.assert_le_felt" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 46, - "end_line": 188, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/math.cairo" - }, - "parent_location": [ - { - "end_col": 36, - "end_line": 154, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/math.cairo" - }, - "parent_location": [ - { - "end_col": 15, - "end_line": 217, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/math.cairo" - }, - "start_col": 5, - "start_line": 217 - }, - "While trying to retrieve the implicit argument 'range_check_ptr' in:" - ], - "start_col": 21, - "start_line": 154 - }, - "While expanding the reference 'range_check_ptr' in:" - ], - "start_col": 27, - "start_line": 188 - } - }, - "158": { - "accessible_scopes": [ - "starkware.cairo.common.math", - "starkware.cairo.common.math.assert_le_felt" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 15, - "end_line": 217, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/math.cairo" - }, - "start_col": 5, - "start_line": 217 - } - }, - "159": { - "accessible_scopes": [ - "starkware.cairo.common.math", - "starkware.cairo.common.math.abs_value" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 31, - "end_line": 243, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/math.cairo" - }, - "start_col": 5, - "start_line": 243 - } - }, - "161": { - "accessible_scopes": [ - "starkware.cairo.common.math", - "starkware.cairo.common.math.abs_value" - ], - "flow_tracking_data": null, - "hints": [ - { - "location": { - "end_col": 7, - "end_line": 248, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/math.cairo" - }, - "start_col": 5, - "start_line": 244 - }, - "n_prefix_newlines": 1 - } - ], - "inst": { - "end_col": 7, - "end_line": 249, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/math.cairo" - }, - "start_col": 5, - "start_line": 249 - } - }, - "163": { - "accessible_scopes": [ - "starkware.cairo.common.math", - "starkware.cairo.common.math.abs_value" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 58, - "end_line": 250, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/math.cairo" - }, - "start_col": 39, - "start_line": 250 - } - }, - "165": { - "accessible_scopes": [ - "starkware.cairo.common.math", - "starkware.cairo.common.math.abs_value" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 41, - "end_line": 251, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/math.cairo" - }, - "start_col": 29, - "start_line": 251 - } - }, - "167": { - "accessible_scopes": [ - "starkware.cairo.common.math", - "starkware.cairo.common.math.abs_value" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 38, - "end_line": 252, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/math.cairo" - }, - "start_col": 9, - "start_line": 252 - } - }, - "168": { - "accessible_scopes": [ - "starkware.cairo.common.math", - "starkware.cairo.common.math.abs_value" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 26, - "end_line": 254, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/math.cairo" - }, - "start_col": 9, - "start_line": 254 - } - }, - "169": { - "accessible_scopes": [ - "starkware.cairo.common.math", - "starkware.cairo.common.math.abs_value" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 34, - "end_line": 256, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/math.cairo" - }, - "start_col": 9, - "start_line": 256 - } - }, - "170": { - "accessible_scopes": [ - "starkware.cairo.common.math", - "starkware.cairo.common.math.abs_value" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 50, - "end_line": 257, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/math.cairo" - }, - "parent_location": [ - { - "end_col": 31, - "end_line": 242, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/math.cairo" - }, - "parent_location": [ - { - "end_col": 22, - "end_line": 258, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/math.cairo" - }, - "start_col": 9, - "start_line": 258 - }, - "While trying to retrieve the implicit argument 'range_check_ptr' in:" - ], - "start_col": 16, - "start_line": 242 - }, - "While expanding the reference 'range_check_ptr' in:" - ], - "start_col": 31, - "start_line": 257 - } - }, - "172": { - "accessible_scopes": [ - "starkware.cairo.common.math", - "starkware.cairo.common.math.abs_value" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 38, - "end_line": 242, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/math.cairo" - }, - "parent_location": [ - { - "end_col": 21, - "end_line": 258, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/math.cairo" - }, - "start_col": 16, - "start_line": 258 - }, - "While expanding the reference 'value' in:" - ], - "start_col": 33, - "start_line": 242 - } - }, - "173": { - "accessible_scopes": [ - "starkware.cairo.common.math", - "starkware.cairo.common.math.abs_value" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 22, - "end_line": 258, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/math.cairo" - }, - "start_col": 9, - "start_line": 258 - } - }, - "174": { - "accessible_scopes": [ - "starkware.cairo.common.math", - "starkware.cairo.common.math.sign" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 7, - "end_line": 266, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/math.cairo" - }, - "start_col": 5, - "start_line": 266 - } - }, - "176": { - "accessible_scopes": [ - "starkware.cairo.common.math", - "starkware.cairo.common.math.sign" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 16, - "end_line": 267, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/math.cairo" - }, - "start_col": 9, - "start_line": 267 - } - }, - "178": { - "accessible_scopes": [ - "starkware.cairo.common.math", - "starkware.cairo.common.math.sign" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 26, - "end_line": 265, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/math.cairo" - }, - "parent_location": [ - { - "end_col": 26, - "end_line": 265, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/math.cairo" - }, - "parent_location": [ - { - "end_col": 18, - "end_line": 268, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/math.cairo" - }, - "start_col": 9, - "start_line": 268 - }, - "While trying to retrieve the implicit argument 'range_check_ptr' in:" - ], - "start_col": 11, - "start_line": 265 - }, - "While expanding the reference 'range_check_ptr' in:" - ], - "start_col": 11, - "start_line": 265 - } - }, - "179": { - "accessible_scopes": [ - "starkware.cairo.common.math", - "starkware.cairo.common.math.sign" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 17, - "end_line": 268, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/math.cairo" - }, - "start_col": 16, - "start_line": 268 - } - }, - "181": { - "accessible_scopes": [ - "starkware.cairo.common.math", - "starkware.cairo.common.math.sign" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 18, - "end_line": 268, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/math.cairo" - }, - "start_col": 9, - "start_line": 268 - } - }, - "182": { - "accessible_scopes": [ - "starkware.cairo.common.math", - "starkware.cairo.common.math.sign" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 31, - "end_line": 271, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/math.cairo" - }, - "start_col": 5, - "start_line": 271 - } - }, - "184": { - "accessible_scopes": [ - "starkware.cairo.common.math", - "starkware.cairo.common.math.sign" - ], - "flow_tracking_data": null, - "hints": [ - { - "location": { - "end_col": 7, - "end_line": 276, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/math.cairo" - }, - "start_col": 5, - "start_line": 272 - }, - "n_prefix_newlines": 1 - } - ], - "inst": { - "end_col": 7, - "end_line": 277, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/math.cairo" - }, - "start_col": 5, - "start_line": 277 - } - }, - "186": { - "accessible_scopes": [ - "starkware.cairo.common.math", - "starkware.cairo.common.math.sign" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 48, - "end_line": 278, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/math.cairo" - }, - "start_col": 36, - "start_line": 278 - } - }, - "188": { - "accessible_scopes": [ - "starkware.cairo.common.math", - "starkware.cairo.common.math.sign" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 49, - "end_line": 278, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/math.cairo" - }, - "start_col": 9, - "start_line": 278 - } - }, - "189": { - "accessible_scopes": [ - "starkware.cairo.common.math", - "starkware.cairo.common.math.sign" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 50, - "end_line": 279, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/math.cairo" - }, - "parent_location": [ - { - "end_col": 26, - "end_line": 265, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/math.cairo" - }, - "parent_location": [ - { - "end_col": 19, - "end_line": 280, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/math.cairo" - }, - "start_col": 9, - "start_line": 280 - }, - "While trying to retrieve the implicit argument 'range_check_ptr' in:" - ], - "start_col": 11, - "start_line": 265 - }, - "While expanding the reference 'range_check_ptr' in:" - ], - "start_col": 31, - "start_line": 279 - } - }, - "191": { - "accessible_scopes": [ - "starkware.cairo.common.math", - "starkware.cairo.common.math.sign" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 18, - "end_line": 280, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/math.cairo" - }, - "start_col": 16, - "start_line": 280 - } - }, - "193": { - "accessible_scopes": [ - "starkware.cairo.common.math", - "starkware.cairo.common.math.sign" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 19, - "end_line": 280, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/math.cairo" - }, - "start_col": 9, - "start_line": 280 - } - }, - "194": { - "accessible_scopes": [ - "starkware.cairo.common.math", - "starkware.cairo.common.math.sign" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 16, - "end_line": 282, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/math.cairo" - }, - "start_col": 9, - "start_line": 282 - } - }, - "196": { - "accessible_scopes": [ - "starkware.cairo.common.math", - "starkware.cairo.common.math.sign" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 34, - "end_line": 283, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/math.cairo" - }, - "start_col": 9, - "start_line": 283 - } - }, - "197": { - "accessible_scopes": [ - "starkware.cairo.common.math", - "starkware.cairo.common.math.sign" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 50, - "end_line": 284, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/math.cairo" - }, - "parent_location": [ - { - "end_col": 26, - "end_line": 265, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/math.cairo" - }, - "parent_location": [ - { - "end_col": 18, - "end_line": 285, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/math.cairo" - }, - "start_col": 9, - "start_line": 285 - }, - "While trying to retrieve the implicit argument 'range_check_ptr' in:" - ], - "start_col": 11, - "start_line": 265 - }, - "While expanding the reference 'range_check_ptr' in:" - ], - "start_col": 31, - "start_line": 284 - } - }, - "199": { - "accessible_scopes": [ - "starkware.cairo.common.math", - "starkware.cairo.common.math.sign" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 17, - "end_line": 285, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/math.cairo" - }, - "start_col": 16, - "start_line": 285 - } - }, - "201": { - "accessible_scopes": [ - "starkware.cairo.common.math", - "starkware.cairo.common.math.sign" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 18, - "end_line": 285, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/math.cairo" - }, - "start_col": 9, - "start_line": 285 - } - }, - "202": { - "accessible_scopes": [ - "starkware.cairo.common.math", - "starkware.cairo.common.math.unsigned_div_rem" - ], - "flow_tracking_data": null, - "hints": [ - { - "location": { - "end_col": 7, - "end_line": 307, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/math.cairo" - }, - "start_col": 5, - "start_line": 301 - }, - "n_prefix_newlines": 1 - } - ], - "inst": { - "end_col": 46, - "end_line": 300, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/math.cairo" - }, - "parent_location": [ - { - "end_col": 31, - "end_line": 53, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/math.cairo" - }, - "parent_location": [ - { - "end_col": 26, - "end_line": 308, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/math.cairo" - }, - "start_col": 5, - "start_line": 308 - }, - "While trying to retrieve the implicit argument 'range_check_ptr' in:" - ], - "start_col": 16, - "start_line": 53 - }, - "While expanding the reference 'range_check_ptr' in:" - ], - "start_col": 27, - "start_line": 300 - } - }, - "204": { - "accessible_scopes": [ - "starkware.cairo.common.math", - "starkware.cairo.common.math.unsigned_div_rem" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 30, - "end_line": 298, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/math.cairo" - }, - "parent_location": [ - { - "end_col": 16, - "end_line": 308, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/math.cairo" - }, - "start_col": 15, - "start_line": 308 - }, - "While expanding the reference 'r' in:" - ], - "start_col": 13, - "start_line": 298 - } - }, - "205": { - "accessible_scopes": [ - "starkware.cairo.common.math", - "starkware.cairo.common.math.unsigned_div_rem" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 25, - "end_line": 308, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/math.cairo" - }, - "start_col": 18, - "start_line": 308 - } - }, - "207": { - "accessible_scopes": [ - "starkware.cairo.common.math", - "starkware.cairo.common.math.unsigned_div_rem" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 26, - "end_line": 308, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/math.cairo" - }, - "start_col": 5, - "start_line": 308 - } - }, - "209": { - "accessible_scopes": [ - "starkware.cairo.common.math", - "starkware.cairo.common.math.unsigned_div_rem" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 34, - "end_line": 299, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/math.cairo" - }, - "parent_location": [ - { - "end_col": 21, - "end_line": 310, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/math.cairo" - }, - "start_col": 20, - "start_line": 310 - }, - "While expanding the reference 'q' in:" - ], - "start_col": 13, - "start_line": 299 - } - }, - "210": { - "accessible_scopes": [ - "starkware.cairo.common.math", - "starkware.cairo.common.math.unsigned_div_rem" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 27, - "end_line": 310, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/math.cairo" - }, - "start_col": 20, - "start_line": 310 - } - }, - "211": { - "accessible_scopes": [ - "starkware.cairo.common.math", - "starkware.cairo.common.math.unsigned_div_rem" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 30, - "end_line": 298, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/math.cairo" - }, - "parent_location": [ - { - "end_col": 31, - "end_line": 310, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/math.cairo" - }, - "start_col": 30, - "start_line": 310 - }, - "While expanding the reference 'r' in:" - ], - "start_col": 13, - "start_line": 298 - } - }, - "212": { - "accessible_scopes": [ - "starkware.cairo.common.math", - "starkware.cairo.common.math.unsigned_div_rem" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 32, - "end_line": 310, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/math.cairo" - }, - "start_col": 5, - "start_line": 310 - } - }, - "213": { - "accessible_scopes": [ - "starkware.cairo.common.math", - "starkware.cairo.common.math.unsigned_div_rem" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 31, - "end_line": 53, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/math.cairo" - }, - "parent_location": [ - { - "end_col": 26, - "end_line": 308, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/math.cairo" - }, - "parent_location": [ - { - "end_col": 38, - "end_line": 297, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/math.cairo" - }, - "parent_location": [ - { - "end_col": 19, - "end_line": 311, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/math.cairo" - }, - "start_col": 5, - "start_line": 311 - }, - "While trying to retrieve the implicit argument 'range_check_ptr' in:" - ], - "start_col": 23, - "start_line": 297 - }, - "While expanding the reference 'range_check_ptr' in:" - ], - "start_col": 5, - "start_line": 308 - }, - "While trying to update the implicit return value 'range_check_ptr' in:" - ], - "start_col": 16, - "start_line": 53 - } - }, - "214": { - "accessible_scopes": [ - "starkware.cairo.common.math", - "starkware.cairo.common.math.unsigned_div_rem" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 34, - "end_line": 299, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/math.cairo" - }, - "parent_location": [ - { - "end_col": 14, - "end_line": 311, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/math.cairo" - }, - "start_col": 13, - "start_line": 311 - }, - "While expanding the reference 'q' in:" - ], - "start_col": 13, - "start_line": 299 - } - }, - "215": { - "accessible_scopes": [ - "starkware.cairo.common.math", - "starkware.cairo.common.math.unsigned_div_rem" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 30, - "end_line": 298, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/math.cairo" - }, - "parent_location": [ - { - "end_col": 17, - "end_line": 311, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/math.cairo" - }, - "start_col": 16, - "start_line": 311 - }, - "While expanding the reference 'r' in:" - ], - "start_col": 13, - "start_line": 298 - } - }, - "216": { - "accessible_scopes": [ - "starkware.cairo.common.math", - "starkware.cairo.common.math.unsigned_div_rem" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 19, - "end_line": 311, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/math.cairo" - }, - "start_col": 5, - "start_line": 311 - } - }, - "217": { - "accessible_scopes": [ - "starkware.starknet.common.storage", - "starkware.starknet.common.storage.normalize_address" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 22, - "end_line": 13, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/starknet/common/storage.cairo" - }, - "start_col": 5, - "start_line": 13 - } - }, - "219": { - "accessible_scopes": [ - "starkware.starknet.common.storage", - "starkware.starknet.common.storage.normalize_address" - ], - "flow_tracking_data": null, - "hints": [ - { - "location": { - "end_col": 7, - "end_line": 21, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/starknet/common/storage.cairo" - }, - "start_col": 5, - "start_line": 14 - }, - "n_prefix_newlines": 1 - } - ], - "inst": { - "end_col": 7, - "end_line": 22, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/starknet/common/storage.cairo" - }, - "start_col": 5, - "start_line": 22 - } - }, - "221": { - "accessible_scopes": [ - "starkware.starknet.common.storage", - "starkware.starknet.common.storage.normalize_address" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 39, - "end_line": 12, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/starknet/common/storage.cairo" - }, - "parent_location": [ - { - "end_col": 36, - "end_line": 89, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/math.cairo" - }, - "parent_location": [ - { - "end_col": 26, - "end_line": 50, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/starknet/common/storage.cairo" - }, - "start_col": 9, - "start_line": 50 - }, - "While trying to retrieve the implicit argument 'range_check_ptr' in:" - ], - "start_col": 21, - "start_line": 89 - }, - "While expanding the reference 'range_check_ptr' in:" - ], - "start_col": 24, - "start_line": 12 - } - }, - "222": { - "accessible_scopes": [ - "starkware.starknet.common.storage", - "starkware.starknet.common.storage.normalize_address" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 34, - "end_line": 48, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/starknet/common/storage.cairo" - }, - "parent_location": [ - { - "end_col": 25, - "end_line": 50, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/starknet/common/storage.cairo" - }, - "start_col": 24, - "start_line": 50 - }, - "While expanding the reference 'x' in:" - ], - "start_col": 17, - "start_line": 48 - } - }, - "224": { - "accessible_scopes": [ - "starkware.starknet.common.storage", - "starkware.starknet.common.storage.normalize_address" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 26, - "end_line": 50, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/starknet/common/storage.cairo" - }, - "start_col": 9, - "start_line": 50 - } - }, - "226": { - "accessible_scopes": [ - "starkware.starknet.common.storage", - "starkware.starknet.common.storage.normalize_address" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 20, - "end_line": 49, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/starknet/common/storage.cairo" - }, - "parent_location": [ - { - "end_col": 25, - "end_line": 51, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/starknet/common/storage.cairo" - }, - "start_col": 24, - "start_line": 51 - }, - "While expanding the reference 'y' in:" - ], - "start_col": 18, - "start_line": 49 - } - }, - "228": { - "accessible_scopes": [ - "starkware.starknet.common.storage", - "starkware.starknet.common.storage.normalize_address" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 36, - "end_line": 89, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/math.cairo" - }, - "parent_location": [ - { - "end_col": 26, - "end_line": 50, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/starknet/common/storage.cairo" - }, - "parent_location": [ - { - "end_col": 36, - "end_line": 89, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/math.cairo" - }, - "parent_location": [ - { - "end_col": 26, - "end_line": 51, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/starknet/common/storage.cairo" - }, - "start_col": 9, - "start_line": 51 - }, - "While trying to retrieve the implicit argument 'range_check_ptr' in:" - ], - "start_col": 21, - "start_line": 89 - }, - "While expanding the reference 'range_check_ptr' in:" - ], - "start_col": 9, - "start_line": 50 - }, - "While trying to update the implicit return value 'range_check_ptr' in:" - ], - "start_col": 21, - "start_line": 89 - } - }, - "229": { - "accessible_scopes": [ - "starkware.starknet.common.storage", - "starkware.starknet.common.storage.normalize_address" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 28, - "end_line": 49, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/starknet/common/storage.cairo" - }, - "parent_location": [ - { - "end_col": 25, - "end_line": 51, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/starknet/common/storage.cairo" - }, - "start_col": 24, - "start_line": 51 - }, - "While expanding the reference 'y' in:" - ], - "start_col": 17, - "start_line": 49 - } - }, - "230": { - "accessible_scopes": [ - "starkware.starknet.common.storage", - "starkware.starknet.common.storage.normalize_address" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 26, - "end_line": 51, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/starknet/common/storage.cairo" - }, - "start_col": 9, - "start_line": 51 - } - }, - "232": { - "accessible_scopes": [ - "starkware.starknet.common.storage", - "starkware.starknet.common.storage.normalize_address" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 38, - "end_line": 52, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/starknet/common/storage.cairo" - }, - "start_col": 21, - "start_line": 52 - } - }, - "234": { - "accessible_scopes": [ - "starkware.starknet.common.storage", - "starkware.starknet.common.storage.normalize_address" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 40, - "end_line": 52, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/starknet/common/storage.cairo" - }, - "start_col": 9, - "start_line": 52 - } - }, - "235": { - "accessible_scopes": [ - "starkware.starknet.common.storage", - "starkware.starknet.common.storage.normalize_address" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 24, - "end_line": 23, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/starknet/common/storage.cairo" - }, - "start_col": 9, - "start_line": 23 - } - }, - "237": { - "accessible_scopes": [ - "starkware.starknet.common.storage", - "starkware.starknet.common.storage.normalize_address" - ], - "flow_tracking_data": null, - "hints": [ - { - "location": { - "end_col": 57, - "end_line": 24, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/starknet/common/storage.cairo" - }, - "start_col": 9, - "start_line": 24 - }, - "n_prefix_newlines": 0 - } - ], - "inst": { - "end_col": 11, - "end_line": 25, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/starknet/common/storage.cairo" - }, - "start_col": 9, - "start_line": 25 - } - }, - "239": { - "accessible_scopes": [ - "starkware.starknet.common.storage", - "starkware.starknet.common.storage.normalize_address" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 21, - "end_line": 30, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/starknet/common/storage.cairo" - }, - "start_col": 13, - "start_line": 30 - } - }, - "241": { - "accessible_scopes": [ - "starkware.starknet.common.storage", - "starkware.starknet.common.storage.normalize_address" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 42, - "end_line": 32, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/starknet/common/storage.cairo" - }, - "start_col": 28, - "start_line": 32 - } - }, - "243": { - "accessible_scopes": [ - "starkware.starknet.common.storage", - "starkware.starknet.common.storage.normalize_address" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 39, - "end_line": 12, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/starknet/common/storage.cairo" - }, - "parent_location": [ - { - "end_col": 36, - "end_line": 89, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/math.cairo" - }, - "parent_location": [ - { - "end_col": 50, - "end_line": 32, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/starknet/common/storage.cairo" - }, - "start_col": 13, - "start_line": 32 - }, - "While trying to retrieve the implicit argument 'range_check_ptr' in:" - ], - "start_col": 21, - "start_line": 89 - }, - "While expanding the reference 'range_check_ptr' in:" - ], - "start_col": 24, - "start_line": 12 - } - }, - "244": { - "accessible_scopes": [ - "starkware.starknet.common.storage", - "starkware.starknet.common.storage.normalize_address" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 49, - "end_line": 32, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/starknet/common/storage.cairo" - }, - "start_col": 28, - "start_line": 32 - } - }, - "245": { - "accessible_scopes": [ - "starkware.starknet.common.storage", - "starkware.starknet.common.storage.normalize_address" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 50, - "end_line": 32, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/starknet/common/storage.cairo" - }, - "start_col": 13, - "start_line": 32 - } - }, - "247": { - "accessible_scopes": [ - "starkware.starknet.common.storage", - "starkware.starknet.common.storage.normalize_address" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 11, - "end_line": 25, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/starknet/common/storage.cairo" - }, - "start_col": 9, - "start_line": 25 - } - }, - "249": { - "accessible_scopes": [ - "starkware.starknet.common.storage", - "starkware.starknet.common.storage.normalize_address" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 21, - "end_line": 26, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/starknet/common/storage.cairo" - }, - "start_col": 13, - "start_line": 26 - } - }, - "251": { - "accessible_scopes": [ - "starkware.starknet.common.storage", - "starkware.starknet.common.storage.normalize_address" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 39, - "end_line": 12, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/starknet/common/storage.cairo" - }, - "parent_location": [ - { - "end_col": 36, - "end_line": 89, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/math.cairo" - }, - "parent_location": [ - { - "end_col": 33, - "end_line": 28, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/starknet/common/storage.cairo" - }, - "start_col": 13, - "start_line": 28 - }, - "While trying to retrieve the implicit argument 'range_check_ptr' in:" - ], - "start_col": 21, - "start_line": 89 - }, - "While expanding the reference 'range_check_ptr' in:" - ], - "start_col": 24, - "start_line": 12 - } - }, - "252": { - "accessible_scopes": [ - "starkware.starknet.common.storage", - "starkware.starknet.common.storage.normalize_address" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 51, - "end_line": 12, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/starknet/common/storage.cairo" - }, - "parent_location": [ - { - "end_col": 32, - "end_line": 28, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/starknet/common/storage.cairo" - }, - "start_col": 28, - "start_line": 28 - }, - "While expanding the reference 'addr' in:" - ], - "start_col": 41, - "start_line": 12 - } - }, - "253": { - "accessible_scopes": [ - "starkware.starknet.common.storage", - "starkware.starknet.common.storage.normalize_address" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 33, - "end_line": 28, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/starknet/common/storage.cairo" - }, - "start_col": 13, - "start_line": 28 - } - }, - "255": { - "accessible_scopes": [ - "starkware.starknet.common.storage", - "starkware.starknet.common.storage.normalize_address" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 51, - "end_line": 12, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/starknet/common/storage.cairo" - }, - "parent_location": [ - { - "end_col": 25, - "end_line": 34, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/starknet/common/storage.cairo" - }, - "start_col": 21, - "start_line": 34 - }, - "While expanding the reference 'addr' in:" - ], - "start_col": 41, - "start_line": 12 - } - }, - "256": { - "accessible_scopes": [ - "starkware.starknet.common.storage", - "starkware.starknet.common.storage.normalize_address" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 27, - "end_line": 34, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/starknet/common/storage.cairo" - }, - "start_col": 9, - "start_line": 34 - } - }, - "257": { - "accessible_scopes": [ - "openzeppelin.access.ownable.library", - "openzeppelin.access.ownable.library.OwnershipTransferred", - "openzeppelin.access.ownable.library.OwnershipTransferred.emit" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 14, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/event/OwnershipTransferred/8220fde17ca5479f12ae71a8036f4d354fe722f2c036da610b53511924e4ee84.cairo" - }, - "parent_location": [ - { - "end_col": 26, - "end_line": 15, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/access/ownable/library.cairo" - }, - "start_col": 6, - "start_line": 15 - }, - "While handling event:" - ], - "start_col": 1, - "start_line": 1 - } - }, - "259": { - "accessible_scopes": [ - "openzeppelin.access.ownable.library", - "openzeppelin.access.ownable.library.OwnershipTransferred", - "openzeppelin.access.ownable.library.OwnershipTransferred.emit" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 40, - "end_line": 2, - "input_file": { - "filename": "autogen/starknet/event/OwnershipTransferred/8220fde17ca5479f12ae71a8036f4d354fe722f2c036da610b53511924e4ee84.cairo" - }, - "parent_location": [ - { - "end_col": 26, - "end_line": 15, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/access/ownable/library.cairo" - }, - "start_col": 6, - "start_line": 15 - }, - "While handling event:" - ], - "start_col": 33, - "start_line": 2 - } - }, - "261": { - "accessible_scopes": [ - "openzeppelin.access.ownable.library", - "openzeppelin.access.ownable.library.OwnershipTransferred", - "openzeppelin.access.ownable.library.OwnershipTransferred.emit" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 29, - "end_line": 2, - "input_file": { - "filename": "autogen/starknet/event/OwnershipTransferred/8220fde17ca5479f12ae71a8036f4d354fe722f2c036da610b53511924e4ee84.cairo" - }, - "parent_location": [ - { - "end_col": 26, - "end_line": 15, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/access/ownable/library.cairo" - }, - "start_col": 6, - "start_line": 15 - }, - "While handling event:" - ], - "start_col": 6, - "start_line": 2 - } - }, - "262": { - "accessible_scopes": [ - "openzeppelin.access.ownable.library", - "openzeppelin.access.ownable.library.OwnershipTransferred", - "openzeppelin.access.ownable.library.OwnershipTransferred.emit" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 31, - "end_line": 3, - "input_file": { - "filename": "autogen/starknet/event/OwnershipTransferred/8220fde17ca5479f12ae71a8036f4d354fe722f2c036da610b53511924e4ee84.cairo" - }, - "parent_location": [ - { - "end_col": 26, - "end_line": 15, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/access/ownable/library.cairo" - }, - "start_col": 6, - "start_line": 15 - }, - "While handling event:" - ], - "start_col": 23, - "start_line": 3 - } - }, - "264": { - "accessible_scopes": [ - "openzeppelin.access.ownable.library", - "openzeppelin.access.ownable.library.OwnershipTransferred", - "openzeppelin.access.ownable.library.OwnershipTransferred.emit" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 32, - "end_line": 3, - "input_file": { - "filename": "autogen/starknet/event/OwnershipTransferred/8220fde17ca5479f12ae71a8036f4d354fe722f2c036da610b53511924e4ee84.cairo" - }, - "parent_location": [ - { - "end_col": 26, - "end_line": 15, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/access/ownable/library.cairo" - }, - "start_col": 6, - "start_line": 15 - }, - "While handling event:" - ], - "start_col": 1, - "start_line": 3 - } - }, - "265": { - "accessible_scopes": [ - "openzeppelin.access.ownable.library", - "openzeppelin.access.ownable.library.OwnershipTransferred", - "openzeppelin.access.ownable.library.OwnershipTransferred.emit" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 40, - "end_line": 4, - "input_file": { - "filename": "autogen/starknet/event/OwnershipTransferred/8220fde17ca5479f12ae71a8036f4d354fe722f2c036da610b53511924e4ee84.cairo" - }, - "parent_location": [ - { - "end_col": 26, - "end_line": 15, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/access/ownable/library.cairo" - }, - "start_col": 6, - "start_line": 15 - }, - "While handling event:" - ], - "start_col": 33, - "start_line": 4 - } - }, - "267": { - "accessible_scopes": [ - "openzeppelin.access.ownable.library", - "openzeppelin.access.ownable.library.OwnershipTransferred", - "openzeppelin.access.ownable.library.OwnershipTransferred.emit" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 29, - "end_line": 4, - "input_file": { - "filename": "autogen/starknet/event/OwnershipTransferred/8220fde17ca5479f12ae71a8036f4d354fe722f2c036da610b53511924e4ee84.cairo" - }, - "parent_location": [ - { - "end_col": 26, - "end_line": 15, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/access/ownable/library.cairo" - }, - "start_col": 6, - "start_line": 15 - }, - "While handling event:" - ], - "start_col": 6, - "start_line": 4 - } - }, - "268": { - "accessible_scopes": [ - "openzeppelin.access.ownable.library", - "openzeppelin.access.ownable.library.OwnershipTransferred", - "openzeppelin.access.ownable.library.OwnershipTransferred.emit" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 41, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/arg_processor/e2129a0023ce5f9e4c3de1d6fb100b2688dccff4a2ed2082db4a311f35c53e21.cairo" - }, - "parent_location": [ - { - "end_col": 40, - "end_line": 15, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/access/ownable/library.cairo" - }, - "start_col": 27, - "start_line": 15 - }, - "While handling calldata argument 'previousOwner'" - ], - "start_col": 1, - "start_line": 1 - } - }, - "269": { - "accessible_scopes": [ - "openzeppelin.access.ownable.library", - "openzeppelin.access.ownable.library.OwnershipTransferred", - "openzeppelin.access.ownable.library.OwnershipTransferred.emit" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 36, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/arg_processor/445d818b0524d35ae3e73b7abec41731d1445f0ce6866ec5a3a8a871521799a0.cairo" - }, - "parent_location": [ - { - "end_col": 56, - "end_line": 15, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/access/ownable/library.cairo" - }, - "start_col": 48, - "start_line": 15 - }, - "While handling calldata argument 'newOwner'" - ], - "start_col": 1, - "start_line": 1 - } - }, - "270": { - "accessible_scopes": [ - "openzeppelin.access.ownable.library", - "openzeppelin.access.ownable.library.OwnershipTransferred", - "openzeppelin.access.ownable.library.OwnershipTransferred.emit" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 40, - "end_line": 2, - "input_file": { - "filename": "autogen/starknet/arg_processor/445d818b0524d35ae3e73b7abec41731d1445f0ce6866ec5a3a8a871521799a0.cairo" - }, - "parent_location": [ - { - "end_col": 56, - "end_line": 15, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/access/ownable/library.cairo" - }, - "parent_location": [ - { - "end_col": 64, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/event/OwnershipTransferred/6150feec30bd48bfd0f446ed8c155a6d911a2c3fb3ec7a980733900416819259.cairo" - }, - "parent_location": [ - { - "end_col": 26, - "end_line": 15, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/access/ownable/library.cairo" - }, - "start_col": 6, - "start_line": 15 - }, - "While handling event:" - ], - "start_col": 50, - "start_line": 1 - }, - "While expanding the reference '__calldata_ptr' in:" - ], - "start_col": 48, - "start_line": 15 - }, - "While handling calldata argument 'newOwner'" - ], - "start_col": 22, - "start_line": 2 - } - }, - "272": { - "accessible_scopes": [ - "openzeppelin.access.ownable.library", - "openzeppelin.access.ownable.library.OwnershipTransferred", - "openzeppelin.access.ownable.library.OwnershipTransferred.emit" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 29, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/event/OwnershipTransferred/a7a8ae41be29ac9f4f6c3b7837c448d787ca051dd1ade98f409e54d33d112504.cairo" - }, - "parent_location": [ - { - "end_col": 26, - "end_line": 15, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/access/ownable/library.cairo" - }, - "parent_location": [ - { - "end_col": 35, - "end_line": 390, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/starknet/common/syscalls.cairo" - }, - "parent_location": [ - { - "end_col": 95, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/event/OwnershipTransferred/6150feec30bd48bfd0f446ed8c155a6d911a2c3fb3ec7a980733900416819259.cairo" - }, - "parent_location": [ - { - "end_col": 26, - "end_line": 15, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/access/ownable/library.cairo" - }, - "start_col": 6, - "start_line": 15 - }, - "While handling event:" - ], - "start_col": 1, - "start_line": 1 - }, - "While trying to retrieve the implicit argument 'syscall_ptr' in:" - ], - "start_col": 17, - "start_line": 390 - }, - "While expanding the reference 'syscall_ptr' in:" - ], - "start_col": 6, - "start_line": 15 - }, - "While handling event:" - ], - "start_col": 11, - "start_line": 1 - } - }, - "273": { - "accessible_scopes": [ - "openzeppelin.access.ownable.library", - "openzeppelin.access.ownable.library.OwnershipTransferred", - "openzeppelin.access.ownable.library.OwnershipTransferred.emit" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 22, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/event/OwnershipTransferred/6150feec30bd48bfd0f446ed8c155a6d911a2c3fb3ec7a980733900416819259.cairo" - }, - "parent_location": [ - { - "end_col": 26, - "end_line": 15, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/access/ownable/library.cairo" - }, - "start_col": 6, - "start_line": 15 - }, - "While handling event:" - ], - "start_col": 21, - "start_line": 1 - } - }, - "275": { - "accessible_scopes": [ - "openzeppelin.access.ownable.library", - "openzeppelin.access.ownable.library.OwnershipTransferred", - "openzeppelin.access.ownable.library.OwnershipTransferred.emit" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 22, - "end_line": 2, - "input_file": { - "filename": "autogen/starknet/event/OwnershipTransferred/8220fde17ca5479f12ae71a8036f4d354fe722f2c036da610b53511924e4ee84.cairo" - }, - "parent_location": [ - { - "end_col": 26, - "end_line": 15, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/access/ownable/library.cairo" - }, - "parent_location": [ - { - "end_col": 39, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/event/OwnershipTransferred/6150feec30bd48bfd0f446ed8c155a6d911a2c3fb3ec7a980733900416819259.cairo" - }, - "parent_location": [ - { - "end_col": 26, - "end_line": 15, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/access/ownable/library.cairo" - }, - "start_col": 6, - "start_line": 15 - }, - "While handling event:" - ], - "start_col": 29, - "start_line": 1 - }, - "While expanding the reference '__keys_ptr' in:" - ], - "start_col": 6, - "start_line": 15 - }, - "While handling event:" - ], - "start_col": 12, - "start_line": 2 - } - }, - "276": { - "accessible_scopes": [ - "openzeppelin.access.ownable.library", - "openzeppelin.access.ownable.library.OwnershipTransferred", - "openzeppelin.access.ownable.library.OwnershipTransferred.emit" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 77, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/event/OwnershipTransferred/6150feec30bd48bfd0f446ed8c155a6d911a2c3fb3ec7a980733900416819259.cairo" - }, - "parent_location": [ - { - "end_col": 26, - "end_line": 15, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/access/ownable/library.cairo" - }, - "start_col": 6, - "start_line": 15 - }, - "While handling event:" - ], - "start_col": 50, - "start_line": 1 - } - }, - "277": { - "accessible_scopes": [ - "openzeppelin.access.ownable.library", - "openzeppelin.access.ownable.library.OwnershipTransferred", - "openzeppelin.access.ownable.library.OwnershipTransferred.emit" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 22, - "end_line": 4, - "input_file": { - "filename": "autogen/starknet/event/OwnershipTransferred/8220fde17ca5479f12ae71a8036f4d354fe722f2c036da610b53511924e4ee84.cairo" - }, - "parent_location": [ - { - "end_col": 26, - "end_line": 15, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/access/ownable/library.cairo" - }, - "parent_location": [ - { - "end_col": 94, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/event/OwnershipTransferred/6150feec30bd48bfd0f446ed8c155a6d911a2c3fb3ec7a980733900416819259.cairo" - }, - "parent_location": [ - { - "end_col": 26, - "end_line": 15, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/access/ownable/library.cairo" - }, - "start_col": 6, - "start_line": 15 - }, - "While handling event:" - ], - "start_col": 84, - "start_line": 1 - }, - "While expanding the reference '__data_ptr' in:" - ], - "start_col": 6, - "start_line": 15 - }, - "While handling event:" - ], - "start_col": 12, - "start_line": 4 - } - }, - "278": { - "accessible_scopes": [ - "openzeppelin.access.ownable.library", - "openzeppelin.access.ownable.library.OwnershipTransferred", - "openzeppelin.access.ownable.library.OwnershipTransferred.emit" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 95, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/event/OwnershipTransferred/6150feec30bd48bfd0f446ed8c155a6d911a2c3fb3ec7a980733900416819259.cairo" - }, - "parent_location": [ - { - "end_col": 26, - "end_line": 15, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/access/ownable/library.cairo" - }, - "start_col": 6, - "start_line": 15 - }, - "While handling event:" - ], - "start_col": 1, - "start_line": 1 - } - }, - "280": { - "accessible_scopes": [ - "openzeppelin.access.ownable.library", - "openzeppelin.access.ownable.library.OwnershipTransferred", - "openzeppelin.access.ownable.library.OwnershipTransferred.emit" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 46, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/event/OwnershipTransferred/a7a8ae41be29ac9f4f6c3b7837c448d787ca051dd1ade98f409e54d33d112504.cairo" - }, - "parent_location": [ - { - "end_col": 26, - "end_line": 15, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/access/ownable/library.cairo" - }, - "parent_location": [ - { - "end_col": 46, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/event/OwnershipTransferred/a7a8ae41be29ac9f4f6c3b7837c448d787ca051dd1ade98f409e54d33d112504.cairo" - }, - "parent_location": [ - { - "end_col": 26, - "end_line": 15, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/access/ownable/library.cairo" - }, - "parent_location": [ - { - "end_col": 11, - "end_line": 2, - "input_file": { - "filename": "autogen/starknet/event/OwnershipTransferred/6150feec30bd48bfd0f446ed8c155a6d911a2c3fb3ec7a980733900416819259.cairo" - }, - "parent_location": [ - { - "end_col": 26, - "end_line": 15, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/access/ownable/library.cairo" - }, - "start_col": 6, - "start_line": 15 - }, - "While handling event:" - ], - "start_col": 1, - "start_line": 2 - }, - "While trying to retrieve the implicit argument 'range_check_ptr' in:" - ], - "start_col": 6, - "start_line": 15 - }, - "While handling event:" - ], - "start_col": 31, - "start_line": 1 - }, - "While expanding the reference 'range_check_ptr' in:" - ], - "start_col": 6, - "start_line": 15 - }, - "While handling event:" - ], - "start_col": 31, - "start_line": 1 - } - }, - "281": { - "accessible_scopes": [ - "openzeppelin.access.ownable.library", - "openzeppelin.access.ownable.library.OwnershipTransferred", - "openzeppelin.access.ownable.library.OwnershipTransferred.emit" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 11, - "end_line": 2, - "input_file": { - "filename": "autogen/starknet/event/OwnershipTransferred/6150feec30bd48bfd0f446ed8c155a6d911a2c3fb3ec7a980733900416819259.cairo" - }, - "parent_location": [ - { - "end_col": 26, - "end_line": 15, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/access/ownable/library.cairo" - }, - "start_col": 6, - "start_line": 15 - }, - "While handling event:" - ], - "start_col": 1, - "start_line": 2 - } - }, - "282": { - "accessible_scopes": [ - "openzeppelin.access.ownable.library", - "openzeppelin.access.ownable.library.Ownable_owner", - "openzeppelin.access.ownable.library.Ownable_owner.addr" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 41, - "end_line": 7, - "input_file": { - "filename": "autogen/starknet/storage_var/Ownable_owner/impl.cairo" - }, - "parent_location": [ - { - "end_col": 41, - "end_line": 7, - "input_file": { - "filename": "autogen/starknet/storage_var/Ownable_owner/decl.cairo" - }, - "parent_location": [ - { - "end_col": 26, - "end_line": 9, - "input_file": { - "filename": "autogen/starknet/storage_var/Ownable_owner/impl.cairo" - }, - "start_col": 9, - "start_line": 9 - }, - "While trying to retrieve the implicit argument 'pedersen_ptr' in:" - ], - "start_col": 15, - "start_line": 7 - }, - "While expanding the reference 'pedersen_ptr' in:" - ], - "start_col": 15, - "start_line": 7 - } - }, - "283": { - "accessible_scopes": [ - "openzeppelin.access.ownable.library", - "openzeppelin.access.ownable.library.Ownable_owner", - "openzeppelin.access.ownable.library.Ownable_owner.addr" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 58, - "end_line": 7, - "input_file": { - "filename": "autogen/starknet/storage_var/Ownable_owner/impl.cairo" - }, - "parent_location": [ - { - "end_col": 58, - "end_line": 7, - "input_file": { - "filename": "autogen/starknet/storage_var/Ownable_owner/decl.cairo" - }, - "parent_location": [ - { - "end_col": 26, - "end_line": 9, - "input_file": { - "filename": "autogen/starknet/storage_var/Ownable_owner/impl.cairo" - }, - "start_col": 9, - "start_line": 9 - }, - "While trying to retrieve the implicit argument 'range_check_ptr' in:" - ], - "start_col": 43, - "start_line": 7 - }, - "While expanding the reference 'range_check_ptr' in:" - ], - "start_col": 43, - "start_line": 7 - } - }, - "284": { - "accessible_scopes": [ - "openzeppelin.access.ownable.library", - "openzeppelin.access.ownable.library.Ownable_owner", - "openzeppelin.access.ownable.library.Ownable_owner.addr" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 95, - "end_line": 8, - "input_file": { - "filename": "autogen/starknet/storage_var/Ownable_owner/impl.cairo" - }, - "parent_location": [ - { - "end_col": 24, - "end_line": 9, - "input_file": { - "filename": "autogen/starknet/storage_var/Ownable_owner/impl.cairo" - }, - "start_col": 21, - "start_line": 9 - }, - "While expanding the reference 'res' in:" - ], - "start_col": 19, - "start_line": 8 - } - }, - "286": { - "accessible_scopes": [ - "openzeppelin.access.ownable.library", - "openzeppelin.access.ownable.library.Ownable_owner", - "openzeppelin.access.ownable.library.Ownable_owner.addr" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 26, - "end_line": 9, - "input_file": { - "filename": "autogen/starknet/storage_var/Ownable_owner/impl.cairo" - }, - "start_col": 9, - "start_line": 9 - } - }, - "287": { - "accessible_scopes": [ - "openzeppelin.access.ownable.library", - "openzeppelin.access.ownable.library.Ownable_owner", - "openzeppelin.access.ownable.library.Ownable_owner.read" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 61, - "end_line": 12, - "input_file": { - "filename": "autogen/starknet/storage_var/Ownable_owner/impl.cairo" - }, - "parent_location": [ - { - "end_col": 41, - "end_line": 7, - "input_file": { - "filename": "autogen/starknet/storage_var/Ownable_owner/decl.cairo" - }, - "parent_location": [ - { - "end_col": 36, - "end_line": 13, - "input_file": { - "filename": "autogen/starknet/storage_var/Ownable_owner/impl.cairo" - }, - "start_col": 30, - "start_line": 13 - }, - "While trying to retrieve the implicit argument 'pedersen_ptr' in:" - ], - "start_col": 15, - "start_line": 7 - }, - "While expanding the reference 'pedersen_ptr' in:" - ], - "start_col": 35, - "start_line": 12 - } - }, - "288": { - "accessible_scopes": [ - "openzeppelin.access.ownable.library", - "openzeppelin.access.ownable.library.Ownable_owner", - "openzeppelin.access.ownable.library.Ownable_owner.read" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 78, - "end_line": 12, - "input_file": { - "filename": "autogen/starknet/storage_var/Ownable_owner/impl.cairo" - }, - "parent_location": [ - { - "end_col": 58, - "end_line": 7, - "input_file": { - "filename": "autogen/starknet/storage_var/Ownable_owner/decl.cairo" - }, - "parent_location": [ - { - "end_col": 36, - "end_line": 13, - "input_file": { - "filename": "autogen/starknet/storage_var/Ownable_owner/impl.cairo" - }, - "start_col": 30, - "start_line": 13 - }, - "While trying to retrieve the implicit argument 'range_check_ptr' in:" - ], - "start_col": 43, - "start_line": 7 - }, - "While expanding the reference 'range_check_ptr' in:" - ], - "start_col": 63, - "start_line": 12 - } - }, - "289": { - "accessible_scopes": [ - "openzeppelin.access.ownable.library", - "openzeppelin.access.ownable.library.Ownable_owner", - "openzeppelin.access.ownable.library.Ownable_owner.read" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 36, - "end_line": 13, - "input_file": { - "filename": "autogen/starknet/storage_var/Ownable_owner/impl.cairo" - }, - "start_col": 30, - "start_line": 13 - } - }, - "291": { - "accessible_scopes": [ - "openzeppelin.access.ownable.library", - "openzeppelin.access.ownable.library.Ownable_owner", - "openzeppelin.access.ownable.library.Ownable_owner.read" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 33, - "end_line": 12, - "input_file": { - "filename": "autogen/starknet/storage_var/Ownable_owner/impl.cairo" - }, - "parent_location": [ - { - "end_col": 37, - "end_line": 352, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/starknet/common/syscalls.cairo" - }, - "parent_location": [ - { - "end_col": 75, - "end_line": 14, - "input_file": { - "filename": "autogen/starknet/storage_var/Ownable_owner/impl.cairo" - }, - "start_col": 37, - "start_line": 14 - }, - "While trying to retrieve the implicit argument 'syscall_ptr' in:" - ], - "start_col": 19, - "start_line": 352 - }, - "While expanding the reference 'syscall_ptr' in:" - ], - "start_col": 15, - "start_line": 12 - } - }, - "292": { - "accessible_scopes": [ - "openzeppelin.access.ownable.library", - "openzeppelin.access.ownable.library.Ownable_owner", - "openzeppelin.access.ownable.library.Ownable_owner.read" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 26, - "end_line": 13, - "input_file": { - "filename": "autogen/starknet/storage_var/Ownable_owner/impl.cairo" - }, - "parent_location": [ - { - "end_col": 70, - "end_line": 14, - "input_file": { - "filename": "autogen/starknet/storage_var/Ownable_owner/impl.cairo" - }, - "start_col": 58, - "start_line": 14 - }, - "While expanding the reference 'storage_addr' in:" - ], - "start_col": 14, - "start_line": 13 - } - }, - "293": { - "accessible_scopes": [ - "openzeppelin.access.ownable.library", - "openzeppelin.access.ownable.library.Ownable_owner", - "openzeppelin.access.ownable.library.Ownable_owner.read" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 75, - "end_line": 14, - "input_file": { - "filename": "autogen/starknet/storage_var/Ownable_owner/impl.cairo" - }, - "start_col": 37, - "start_line": 14 - } - }, - "295": { - "accessible_scopes": [ - "openzeppelin.access.ownable.library", - "openzeppelin.access.ownable.library.Ownable_owner", - "openzeppelin.access.ownable.library.Ownable_owner.read" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 37, - "end_line": 352, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/starknet/common/syscalls.cairo" - }, - "parent_location": [ - { - "end_col": 75, - "end_line": 14, - "input_file": { - "filename": "autogen/starknet/storage_var/Ownable_owner/impl.cairo" - }, - "parent_location": [ - { - "end_col": 42, - "end_line": 16, - "input_file": { - "filename": "autogen/starknet/storage_var/Ownable_owner/impl.cairo" - }, - "start_col": 31, - "start_line": 16 - }, - "While expanding the reference 'syscall_ptr' in:" - ], - "start_col": 37, - "start_line": 14 - }, - "While trying to update the implicit return value 'syscall_ptr' in:" - ], - "start_col": 19, - "start_line": 352 - } - }, - "296": { - "accessible_scopes": [ - "openzeppelin.access.ownable.library", - "openzeppelin.access.ownable.library.Ownable_owner", - "openzeppelin.access.ownable.library.Ownable_owner.read" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 41, - "end_line": 7, - "input_file": { - "filename": "autogen/starknet/storage_var/Ownable_owner/decl.cairo" - }, - "parent_location": [ - { - "end_col": 36, - "end_line": 13, - "input_file": { - "filename": "autogen/starknet/storage_var/Ownable_owner/impl.cairo" - }, - "parent_location": [ - { - "end_col": 44, - "end_line": 17, - "input_file": { - "filename": "autogen/starknet/storage_var/Ownable_owner/impl.cairo" - }, - "start_col": 32, - "start_line": 17 - }, - "While expanding the reference 'pedersen_ptr' in:" - ], - "start_col": 30, - "start_line": 13 - }, - "While trying to update the implicit return value 'pedersen_ptr' in:" - ], - "start_col": 15, - "start_line": 7 - } - }, - "297": { - "accessible_scopes": [ - "openzeppelin.access.ownable.library", - "openzeppelin.access.ownable.library.Ownable_owner", - "openzeppelin.access.ownable.library.Ownable_owner.read" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 58, - "end_line": 7, - "input_file": { - "filename": "autogen/starknet/storage_var/Ownable_owner/decl.cairo" - }, - "parent_location": [ - { - "end_col": 36, - "end_line": 13, - "input_file": { - "filename": "autogen/starknet/storage_var/Ownable_owner/impl.cairo" - }, - "parent_location": [ - { - "end_col": 50, - "end_line": 18, - "input_file": { - "filename": "autogen/starknet/storage_var/Ownable_owner/impl.cairo" - }, - "start_col": 35, - "start_line": 18 - }, - "While expanding the reference 'range_check_ptr' in:" - ], - "start_col": 30, - "start_line": 13 - }, - "While trying to update the implicit return value 'range_check_ptr' in:" - ], - "start_col": 43, - "start_line": 7 - } - }, - "298": { - "accessible_scopes": [ - "openzeppelin.access.ownable.library", - "openzeppelin.access.ownable.library.Ownable_owner", - "openzeppelin.access.ownable.library.Ownable_owner.read" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 33, - "end_line": 14, - "input_file": { - "filename": "autogen/starknet/storage_var/Ownable_owner/impl.cairo" - }, - "parent_location": [ - { - "end_col": 64, - "end_line": 19, - "input_file": { - "filename": "autogen/starknet/storage_var/Ownable_owner/impl.cairo" - }, - "start_col": 45, - "start_line": 19 - }, - "While expanding the reference '__storage_var_temp0' in:" - ], - "start_col": 14, - "start_line": 14 - } - }, - "299": { - "accessible_scopes": [ - "openzeppelin.access.ownable.library", - "openzeppelin.access.ownable.library.Ownable_owner", - "openzeppelin.access.ownable.library.Ownable_owner.read" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 55, - "end_line": 20, - "input_file": { - "filename": "autogen/starknet/storage_var/Ownable_owner/impl.cairo" - }, - "start_col": 9, - "start_line": 20 - } - }, - "300": { - "accessible_scopes": [ - "openzeppelin.access.ownable.library", - "openzeppelin.access.ownable.library.Ownable_owner", - "openzeppelin.access.ownable.library.Ownable_owner.write" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 62, - "end_line": 23, - "input_file": { - "filename": "autogen/starknet/storage_var/Ownable_owner/impl.cairo" - }, - "parent_location": [ - { - "end_col": 41, - "end_line": 7, - "input_file": { - "filename": "autogen/starknet/storage_var/Ownable_owner/decl.cairo" - }, - "parent_location": [ - { - "end_col": 36, - "end_line": 24, - "input_file": { - "filename": "autogen/starknet/storage_var/Ownable_owner/impl.cairo" - }, - "start_col": 30, - "start_line": 24 - }, - "While trying to retrieve the implicit argument 'pedersen_ptr' in:" - ], - "start_col": 15, - "start_line": 7 - }, - "While expanding the reference 'pedersen_ptr' in:" - ], - "start_col": 36, - "start_line": 23 - } - }, - "301": { - "accessible_scopes": [ - "openzeppelin.access.ownable.library", - "openzeppelin.access.ownable.library.Ownable_owner", - "openzeppelin.access.ownable.library.Ownable_owner.write" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 79, - "end_line": 23, - "input_file": { - "filename": "autogen/starknet/storage_var/Ownable_owner/impl.cairo" - }, - "parent_location": [ - { - "end_col": 58, - "end_line": 7, - "input_file": { - "filename": "autogen/starknet/storage_var/Ownable_owner/decl.cairo" - }, - "parent_location": [ - { - "end_col": 36, - "end_line": 24, - "input_file": { - "filename": "autogen/starknet/storage_var/Ownable_owner/impl.cairo" - }, - "start_col": 30, - "start_line": 24 - }, - "While trying to retrieve the implicit argument 'range_check_ptr' in:" - ], - "start_col": 43, - "start_line": 7 - }, - "While expanding the reference 'range_check_ptr' in:" - ], - "start_col": 64, - "start_line": 23 - } - }, - "302": { - "accessible_scopes": [ - "openzeppelin.access.ownable.library", - "openzeppelin.access.ownable.library.Ownable_owner", - "openzeppelin.access.ownable.library.Ownable_owner.write" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 36, - "end_line": 24, - "input_file": { - "filename": "autogen/starknet/storage_var/Ownable_owner/impl.cairo" - }, - "start_col": 30, - "start_line": 24 - } - }, - "304": { - "accessible_scopes": [ - "openzeppelin.access.ownable.library", - "openzeppelin.access.ownable.library.Ownable_owner", - "openzeppelin.access.ownable.library.Ownable_owner.write" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 34, - "end_line": 23, - "input_file": { - "filename": "autogen/starknet/storage_var/Ownable_owner/impl.cairo" - }, - "parent_location": [ - { - "end_col": 38, - "end_line": 370, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/starknet/common/syscalls.cairo" - }, - "parent_location": [ - { - "end_col": 80, - "end_line": 25, - "input_file": { - "filename": "autogen/starknet/storage_var/Ownable_owner/impl.cairo" - }, - "start_col": 9, - "start_line": 25 - }, - "While trying to retrieve the implicit argument 'syscall_ptr' in:" - ], - "start_col": 20, - "start_line": 370 - }, - "While expanding the reference 'syscall_ptr' in:" - ], - "start_col": 16, - "start_line": 23 - } - }, - "305": { - "accessible_scopes": [ - "openzeppelin.access.ownable.library", - "openzeppelin.access.ownable.library.Ownable_owner", - "openzeppelin.access.ownable.library.Ownable_owner.write" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 26, - "end_line": 24, - "input_file": { - "filename": "autogen/starknet/storage_var/Ownable_owner/impl.cairo" - }, - "parent_location": [ - { - "end_col": 43, - "end_line": 25, - "input_file": { - "filename": "autogen/starknet/storage_var/Ownable_owner/impl.cairo" - }, - "start_col": 31, - "start_line": 25 - }, - "While expanding the reference 'storage_addr' in:" - ], - "start_col": 14, - "start_line": 24 - } - }, - "306": { - "accessible_scopes": [ - "openzeppelin.access.ownable.library", - "openzeppelin.access.ownable.library.Ownable_owner", - "openzeppelin.access.ownable.library.Ownable_owner.write" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 79, - "end_line": 25, - "input_file": { - "filename": "autogen/starknet/storage_var/Ownable_owner/impl.cairo" - }, - "start_col": 55, - "start_line": 25 - } - }, - "307": { - "accessible_scopes": [ - "openzeppelin.access.ownable.library", - "openzeppelin.access.ownable.library.Ownable_owner", - "openzeppelin.access.ownable.library.Ownable_owner.write" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 80, - "end_line": 25, - "input_file": { - "filename": "autogen/starknet/storage_var/Ownable_owner/impl.cairo" - }, - "start_col": 9, - "start_line": 25 - } - }, - "309": { - "accessible_scopes": [ - "openzeppelin.access.ownable.library", - "openzeppelin.access.ownable.library.Ownable_owner", - "openzeppelin.access.ownable.library.Ownable_owner.write" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 41, - "end_line": 7, - "input_file": { - "filename": "autogen/starknet/storage_var/Ownable_owner/decl.cairo" - }, - "parent_location": [ - { - "end_col": 36, - "end_line": 24, - "input_file": { - "filename": "autogen/starknet/storage_var/Ownable_owner/impl.cairo" - }, - "parent_location": [ - { - "end_col": 62, - "end_line": 19, - "input_file": { - "filename": "autogen/starknet/storage_var/Ownable_owner/decl.cairo" - }, - "parent_location": [ - { - "end_col": 19, - "end_line": 26, - "input_file": { - "filename": "autogen/starknet/storage_var/Ownable_owner/impl.cairo" - }, - "start_col": 9, - "start_line": 26 - }, - "While trying to retrieve the implicit argument 'pedersen_ptr' in:" - ], - "start_col": 36, - "start_line": 19 - }, - "While expanding the reference 'pedersen_ptr' in:" - ], - "start_col": 30, - "start_line": 24 - }, - "While trying to update the implicit return value 'pedersen_ptr' in:" - ], - "start_col": 15, - "start_line": 7 - } - }, - "310": { - "accessible_scopes": [ - "openzeppelin.access.ownable.library", - "openzeppelin.access.ownable.library.Ownable_owner", - "openzeppelin.access.ownable.library.Ownable_owner.write" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 58, - "end_line": 7, - "input_file": { - "filename": "autogen/starknet/storage_var/Ownable_owner/decl.cairo" - }, - "parent_location": [ - { - "end_col": 36, - "end_line": 24, - "input_file": { - "filename": "autogen/starknet/storage_var/Ownable_owner/impl.cairo" - }, - "parent_location": [ - { - "end_col": 79, - "end_line": 19, - "input_file": { - "filename": "autogen/starknet/storage_var/Ownable_owner/decl.cairo" - }, - "parent_location": [ - { - "end_col": 19, - "end_line": 26, - "input_file": { - "filename": "autogen/starknet/storage_var/Ownable_owner/impl.cairo" - }, - "start_col": 9, - "start_line": 26 - }, - "While trying to retrieve the implicit argument 'range_check_ptr' in:" - ], - "start_col": 64, - "start_line": 19 - }, - "While expanding the reference 'range_check_ptr' in:" - ], - "start_col": 30, - "start_line": 24 - }, - "While trying to update the implicit return value 'range_check_ptr' in:" - ], - "start_col": 43, - "start_line": 7 - } - }, - "311": { - "accessible_scopes": [ - "openzeppelin.access.ownable.library", - "openzeppelin.access.ownable.library.Ownable_owner", - "openzeppelin.access.ownable.library.Ownable_owner.write" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 19, - "end_line": 26, - "input_file": { - "filename": "autogen/starknet/storage_var/Ownable_owner/impl.cairo" - }, - "start_col": 9, - "start_line": 26 - } - }, - "312": { - "accessible_scopes": [ - "openzeppelin.access.ownable.library", - "openzeppelin.access.ownable.library.Ownable", - "openzeppelin.access.ownable.library.Ownable.initializer" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 40, - "end_line": 31, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/access/ownable/library.cairo" - }, - "parent_location": [ - { - "end_col": 48, - "end_line": 81, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/access/ownable/library.cairo" - }, - "parent_location": [ - { - "end_col": 35, - "end_line": 32, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/access/ownable/library.cairo" - }, - "start_col": 9, - "start_line": 32 - }, - "While trying to retrieve the implicit argument 'syscall_ptr' in:" - ], - "start_col": 30, - "start_line": 81 - }, - "While expanding the reference 'syscall_ptr' in:" - ], - "start_col": 22, - "start_line": 31 - } - }, - "313": { - "accessible_scopes": [ - "openzeppelin.access.ownable.library", - "openzeppelin.access.ownable.library.Ownable", - "openzeppelin.access.ownable.library.Ownable.initializer" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 68, - "end_line": 31, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/access/ownable/library.cairo" - }, - "parent_location": [ - { - "end_col": 76, - "end_line": 81, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/access/ownable/library.cairo" - }, - "parent_location": [ - { - "end_col": 35, - "end_line": 32, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/access/ownable/library.cairo" - }, - "start_col": 9, - "start_line": 32 - }, - "While trying to retrieve the implicit argument 'pedersen_ptr' in:" - ], - "start_col": 50, - "start_line": 81 - }, - "While expanding the reference 'pedersen_ptr' in:" - ], - "start_col": 42, - "start_line": 31 - } - }, - "314": { - "accessible_scopes": [ - "openzeppelin.access.ownable.library", - "openzeppelin.access.ownable.library.Ownable", - "openzeppelin.access.ownable.library.Ownable.initializer" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 85, - "end_line": 31, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/access/ownable/library.cairo" - }, - "parent_location": [ - { - "end_col": 93, - "end_line": 81, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/access/ownable/library.cairo" - }, - "parent_location": [ - { - "end_col": 35, - "end_line": 32, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/access/ownable/library.cairo" - }, - "start_col": 9, - "start_line": 32 - }, - "While trying to retrieve the implicit argument 'range_check_ptr' in:" - ], - "start_col": 78, - "start_line": 81 - }, - "While expanding the reference 'range_check_ptr' in:" - ], - "start_col": 70, - "start_line": 31 - } - }, - "315": { - "accessible_scopes": [ - "openzeppelin.access.ownable.library", - "openzeppelin.access.ownable.library.Ownable", - "openzeppelin.access.ownable.library.Ownable.initializer" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 98, - "end_line": 31, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/access/ownable/library.cairo" - }, - "parent_location": [ - { - "end_col": 34, - "end_line": 32, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/access/ownable/library.cairo" - }, - "start_col": 29, - "start_line": 32 - }, - "While expanding the reference 'owner' in:" - ], - "start_col": 87, - "start_line": 31 - } - }, - "316": { - "accessible_scopes": [ - "openzeppelin.access.ownable.library", - "openzeppelin.access.ownable.library.Ownable", - "openzeppelin.access.ownable.library.Ownable.initializer" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 35, - "end_line": 32, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/access/ownable/library.cairo" - }, - "start_col": 9, - "start_line": 32 - } - }, - "318": { - "accessible_scopes": [ - "openzeppelin.access.ownable.library", - "openzeppelin.access.ownable.library.Ownable", - "openzeppelin.access.ownable.library.Ownable.initializer" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 19, - "end_line": 33, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/access/ownable/library.cairo" - }, - "start_col": 9, - "start_line": 33 - } - }, - "319": { - "accessible_scopes": [ - "openzeppelin.access.ownable.library", - "openzeppelin.access.ownable.library.Ownable", - "openzeppelin.access.ownable.library.Ownable.assert_only_owner" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 46, - "end_line": 40, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/access/ownable/library.cairo" - }, - "parent_location": [ - { - "end_col": 34, - "end_line": 56, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/access/ownable/library.cairo" - }, - "parent_location": [ - { - "end_col": 38, - "end_line": 41, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/access/ownable/library.cairo" - }, - "start_col": 23, - "start_line": 41 - }, - "While trying to retrieve the implicit argument 'syscall_ptr' in:" - ], - "start_col": 16, - "start_line": 56 - }, - "While expanding the reference 'syscall_ptr' in:" - ], - "start_col": 28, - "start_line": 40 - } - }, - "320": { - "accessible_scopes": [ - "openzeppelin.access.ownable.library", - "openzeppelin.access.ownable.library.Ownable", - "openzeppelin.access.ownable.library.Ownable.assert_only_owner" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 74, - "end_line": 40, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/access/ownable/library.cairo" - }, - "parent_location": [ - { - "end_col": 62, - "end_line": 56, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/access/ownable/library.cairo" - }, - "parent_location": [ - { - "end_col": 38, - "end_line": 41, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/access/ownable/library.cairo" - }, - "start_col": 23, - "start_line": 41 - }, - "While trying to retrieve the implicit argument 'pedersen_ptr' in:" - ], - "start_col": 36, - "start_line": 56 - }, - "While expanding the reference 'pedersen_ptr' in:" - ], - "start_col": 48, - "start_line": 40 - } - }, - "321": { - "accessible_scopes": [ - "openzeppelin.access.ownable.library", - "openzeppelin.access.ownable.library.Ownable", - "openzeppelin.access.ownable.library.Ownable.assert_only_owner" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 91, - "end_line": 40, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/access/ownable/library.cairo" - }, - "parent_location": [ - { - "end_col": 79, - "end_line": 56, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/access/ownable/library.cairo" - }, - "parent_location": [ - { - "end_col": 38, - "end_line": 41, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/access/ownable/library.cairo" - }, - "start_col": 23, - "start_line": 41 - }, - "While trying to retrieve the implicit argument 'range_check_ptr' in:" - ], - "start_col": 64, - "start_line": 56 - }, - "While expanding the reference 'range_check_ptr' in:" - ], - "start_col": 76, - "start_line": 40 - } - }, - "322": { - "accessible_scopes": [ - "openzeppelin.access.ownable.library", - "openzeppelin.access.ownable.library.Ownable", - "openzeppelin.access.ownable.library.Ownable.assert_only_owner" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 38, - "end_line": 41, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/access/ownable/library.cairo" - }, - "start_col": 23, - "start_line": 41 - } - }, - "324": { - "accessible_scopes": [ - "openzeppelin.access.ownable.library", - "openzeppelin.access.ownable.library.Ownable", - "openzeppelin.access.ownable.library.Ownable.assert_only_owner" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 34, - "end_line": 56, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/access/ownable/library.cairo" - }, - "parent_location": [ - { - "end_col": 38, - "end_line": 41, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/access/ownable/library.cairo" - }, - "parent_location": [ - { - "end_col": 43, - "end_line": 200, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/starknet/common/syscalls.cairo" - }, - "parent_location": [ - { - "end_col": 44, - "end_line": 42, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/access/ownable/library.cairo" - }, - "start_col": 24, - "start_line": 42 - }, - "While trying to retrieve the implicit argument 'syscall_ptr' in:" - ], - "start_col": 25, - "start_line": 200 - }, - "While expanding the reference 'syscall_ptr' in:" - ], - "start_col": 23, - "start_line": 41 - }, - "While trying to update the implicit return value 'syscall_ptr' in:" - ], - "start_col": 16, - "start_line": 56 - } - }, - "325": { - "accessible_scopes": [ - "openzeppelin.access.ownable.library", - "openzeppelin.access.ownable.library.Ownable", - "openzeppelin.access.ownable.library.Ownable.assert_only_owner" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 44, - "end_line": 42, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/access/ownable/library.cairo" - }, - "start_col": 24, - "start_line": 42 - } - }, - "327": { - "accessible_scopes": [ - "openzeppelin.access.ownable.library", - "openzeppelin.access.ownable.library.Ownable", - "openzeppelin.access.ownable.library.Ownable.assert_only_owner" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 36, - "end_line": 44, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/access/ownable/library.cairo" - }, - "start_col": 13, - "start_line": 44 - } - }, - "329": { - "accessible_scopes": [ - "openzeppelin.access.ownable.library", - "openzeppelin.access.ownable.library.Ownable", - "openzeppelin.access.ownable.library.Ownable.assert_only_owner" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 35, - "end_line": 47, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/access/ownable/library.cairo" - }, - "start_col": 13, - "start_line": 47 - } - }, - "330": { - "accessible_scopes": [ - "openzeppelin.access.ownable.library", - "openzeppelin.access.ownable.library.Ownable", - "openzeppelin.access.ownable.library.Ownable.assert_only_owner" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 43, - "end_line": 200, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/starknet/common/syscalls.cairo" - }, - "parent_location": [ - { - "end_col": 44, - "end_line": 42, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/access/ownable/library.cairo" - }, - "parent_location": [ - { - "end_col": 46, - "end_line": 40, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/access/ownable/library.cairo" - }, - "parent_location": [ - { - "end_col": 19, - "end_line": 49, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/access/ownable/library.cairo" - }, - "start_col": 9, - "start_line": 49 - }, - "While trying to retrieve the implicit argument 'syscall_ptr' in:" - ], - "start_col": 28, - "start_line": 40 - }, - "While expanding the reference 'syscall_ptr' in:" - ], - "start_col": 24, - "start_line": 42 - }, - "While trying to update the implicit return value 'syscall_ptr' in:" - ], - "start_col": 25, - "start_line": 200 - } - }, - "331": { - "accessible_scopes": [ - "openzeppelin.access.ownable.library", - "openzeppelin.access.ownable.library.Ownable", - "openzeppelin.access.ownable.library.Ownable.assert_only_owner" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 62, - "end_line": 56, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/access/ownable/library.cairo" - }, - "parent_location": [ - { - "end_col": 38, - "end_line": 41, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/access/ownable/library.cairo" - }, - "parent_location": [ - { - "end_col": 74, - "end_line": 40, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/access/ownable/library.cairo" - }, - "parent_location": [ - { - "end_col": 19, - "end_line": 49, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/access/ownable/library.cairo" - }, - "start_col": 9, - "start_line": 49 - }, - "While trying to retrieve the implicit argument 'pedersen_ptr' in:" - ], - "start_col": 48, - "start_line": 40 - }, - "While expanding the reference 'pedersen_ptr' in:" - ], - "start_col": 23, - "start_line": 41 - }, - "While trying to update the implicit return value 'pedersen_ptr' in:" - ], - "start_col": 36, - "start_line": 56 - } - }, - "332": { - "accessible_scopes": [ - "openzeppelin.access.ownable.library", - "openzeppelin.access.ownable.library.Ownable", - "openzeppelin.access.ownable.library.Ownable.assert_only_owner" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 79, - "end_line": 56, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/access/ownable/library.cairo" - }, - "parent_location": [ - { - "end_col": 38, - "end_line": 41, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/access/ownable/library.cairo" - }, - "parent_location": [ - { - "end_col": 91, - "end_line": 40, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/access/ownable/library.cairo" - }, - "parent_location": [ - { - "end_col": 19, - "end_line": 49, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/access/ownable/library.cairo" - }, - "start_col": 9, - "start_line": 49 - }, - "While trying to retrieve the implicit argument 'range_check_ptr' in:" - ], - "start_col": 76, - "start_line": 40 - }, - "While expanding the reference 'range_check_ptr' in:" - ], - "start_col": 23, - "start_line": 41 - }, - "While trying to update the implicit return value 'range_check_ptr' in:" - ], - "start_col": 64, - "start_line": 56 - } - }, - "333": { - "accessible_scopes": [ - "openzeppelin.access.ownable.library", - "openzeppelin.access.ownable.library.Ownable", - "openzeppelin.access.ownable.library.Ownable.assert_only_owner" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 19, - "end_line": 49, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/access/ownable/library.cairo" - }, - "start_col": 9, - "start_line": 49 - } - }, - "334": { - "accessible_scopes": [ - "openzeppelin.access.ownable.library", - "openzeppelin.access.ownable.library.Ownable", - "openzeppelin.access.ownable.library.Ownable.owner" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 34, - "end_line": 56, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/access/ownable/library.cairo" - }, - "parent_location": [ - { - "end_col": 33, - "end_line": 13, - "input_file": { - "filename": "autogen/starknet/storage_var/Ownable_owner/decl.cairo" - }, - "parent_location": [ - { - "end_col": 36, - "end_line": 57, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/access/ownable/library.cairo" - }, - "start_col": 16, - "start_line": 57 - }, - "While trying to retrieve the implicit argument 'syscall_ptr' in:" - ], - "start_col": 15, - "start_line": 13 - }, - "While expanding the reference 'syscall_ptr' in:" - ], - "start_col": 16, - "start_line": 56 - } - }, - "335": { - "accessible_scopes": [ - "openzeppelin.access.ownable.library", - "openzeppelin.access.ownable.library.Ownable", - "openzeppelin.access.ownable.library.Ownable.owner" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 62, - "end_line": 56, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/access/ownable/library.cairo" - }, - "parent_location": [ - { - "end_col": 61, - "end_line": 13, - "input_file": { - "filename": "autogen/starknet/storage_var/Ownable_owner/decl.cairo" - }, - "parent_location": [ - { - "end_col": 36, - "end_line": 57, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/access/ownable/library.cairo" - }, - "start_col": 16, - "start_line": 57 - }, - "While trying to retrieve the implicit argument 'pedersen_ptr' in:" - ], - "start_col": 35, - "start_line": 13 - }, - "While expanding the reference 'pedersen_ptr' in:" - ], - "start_col": 36, - "start_line": 56 - } - }, - "336": { - "accessible_scopes": [ - "openzeppelin.access.ownable.library", - "openzeppelin.access.ownable.library.Ownable", - "openzeppelin.access.ownable.library.Ownable.owner" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 79, - "end_line": 56, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/access/ownable/library.cairo" - }, - "parent_location": [ - { - "end_col": 78, - "end_line": 13, - "input_file": { - "filename": "autogen/starknet/storage_var/Ownable_owner/decl.cairo" - }, - "parent_location": [ - { - "end_col": 36, - "end_line": 57, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/access/ownable/library.cairo" - }, - "start_col": 16, - "start_line": 57 - }, - "While trying to retrieve the implicit argument 'range_check_ptr' in:" - ], - "start_col": 63, - "start_line": 13 - }, - "While expanding the reference 'range_check_ptr' in:" - ], - "start_col": 64, - "start_line": 56 - } - }, - "337": { - "accessible_scopes": [ - "openzeppelin.access.ownable.library", - "openzeppelin.access.ownable.library.Ownable", - "openzeppelin.access.ownable.library.Ownable.owner" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 36, - "end_line": 57, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/access/ownable/library.cairo" - }, - "start_col": 16, - "start_line": 57 - } - }, - "339": { - "accessible_scopes": [ - "openzeppelin.access.ownable.library", - "openzeppelin.access.ownable.library.Ownable", - "openzeppelin.access.ownable.library.Ownable.owner" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 37, - "end_line": 57, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/access/ownable/library.cairo" - }, - "start_col": 9, - "start_line": 57 - } - }, - "340": { - "accessible_scopes": [ - "openzeppelin.access.ownable.library", - "openzeppelin.access.ownable.library.Ownable", - "openzeppelin.access.ownable.library.Ownable.transfer_ownership" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 24, - "end_line": 61, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/access/ownable/library.cairo" - }, - "parent_location": [ - { - "end_col": 38, - "end_line": 64, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/access/ownable/library.cairo" - }, - "start_col": 29, - "start_line": 64 - }, - "While expanding the reference 'new_owner' in:" - ], - "start_col": 9, - "start_line": 61 - } - }, - "341": { - "accessible_scopes": [ - "openzeppelin.access.ownable.library", - "openzeppelin.access.ownable.library.Ownable", - "openzeppelin.access.ownable.library.Ownable.transfer_ownership" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 39, - "end_line": 64, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/access/ownable/library.cairo" - }, - "start_col": 13, - "start_line": 64 - } - }, - "343": { - "accessible_scopes": [ - "openzeppelin.access.ownable.library", - "openzeppelin.access.ownable.library.Ownable", - "openzeppelin.access.ownable.library.Ownable.transfer_ownership" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 47, - "end_line": 60, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/access/ownable/library.cairo" - }, - "parent_location": [ - { - "end_col": 46, - "end_line": 40, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/access/ownable/library.cairo" - }, - "parent_location": [ - { - "end_col": 28, - "end_line": 66, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/access/ownable/library.cairo" - }, - "start_col": 9, - "start_line": 66 - }, - "While trying to retrieve the implicit argument 'syscall_ptr' in:" - ], - "start_col": 28, - "start_line": 40 - }, - "While expanding the reference 'syscall_ptr' in:" - ], - "start_col": 29, - "start_line": 60 - } - }, - "344": { - "accessible_scopes": [ - "openzeppelin.access.ownable.library", - "openzeppelin.access.ownable.library.Ownable", - "openzeppelin.access.ownable.library.Ownable.transfer_ownership" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 75, - "end_line": 60, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/access/ownable/library.cairo" - }, - "parent_location": [ - { - "end_col": 74, - "end_line": 40, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/access/ownable/library.cairo" - }, - "parent_location": [ - { - "end_col": 28, - "end_line": 66, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/access/ownable/library.cairo" - }, - "start_col": 9, - "start_line": 66 - }, - "While trying to retrieve the implicit argument 'pedersen_ptr' in:" - ], - "start_col": 48, - "start_line": 40 - }, - "While expanding the reference 'pedersen_ptr' in:" - ], - "start_col": 49, - "start_line": 60 - } - }, - "345": { - "accessible_scopes": [ - "openzeppelin.access.ownable.library", - "openzeppelin.access.ownable.library.Ownable", - "openzeppelin.access.ownable.library.Ownable.transfer_ownership" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 92, - "end_line": 60, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/access/ownable/library.cairo" - }, - "parent_location": [ - { - "end_col": 91, - "end_line": 40, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/access/ownable/library.cairo" - }, - "parent_location": [ - { - "end_col": 28, - "end_line": 66, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/access/ownable/library.cairo" - }, - "start_col": 9, - "start_line": 66 - }, - "While trying to retrieve the implicit argument 'range_check_ptr' in:" - ], - "start_col": 76, - "start_line": 40 - }, - "While expanding the reference 'range_check_ptr' in:" - ], - "start_col": 77, - "start_line": 60 - } - }, - "346": { - "accessible_scopes": [ - "openzeppelin.access.ownable.library", - "openzeppelin.access.ownable.library.Ownable", - "openzeppelin.access.ownable.library.Ownable.transfer_ownership" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 28, - "end_line": 66, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/access/ownable/library.cairo" - }, - "start_col": 9, - "start_line": 66 - } - }, - "348": { - "accessible_scopes": [ - "openzeppelin.access.ownable.library", - "openzeppelin.access.ownable.library.Ownable", - "openzeppelin.access.ownable.library.Ownable.transfer_ownership" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 24, - "end_line": 61, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/access/ownable/library.cairo" - }, - "parent_location": [ - { - "end_col": 38, - "end_line": 67, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/access/ownable/library.cairo" - }, - "start_col": 29, - "start_line": 67 - }, - "While expanding the reference 'new_owner' in:" - ], - "start_col": 9, - "start_line": 61 - } - }, - "349": { - "accessible_scopes": [ - "openzeppelin.access.ownable.library", - "openzeppelin.access.ownable.library.Ownable", - "openzeppelin.access.ownable.library.Ownable.transfer_ownership" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 39, - "end_line": 67, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/access/ownable/library.cairo" - }, - "start_col": 9, - "start_line": 67 - } - }, - "351": { - "accessible_scopes": [ - "openzeppelin.access.ownable.library", - "openzeppelin.access.ownable.library.Ownable", - "openzeppelin.access.ownable.library.Ownable.transfer_ownership" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 19, - "end_line": 68, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/access/ownable/library.cairo" - }, - "start_col": 9, - "start_line": 68 - } - }, - "352": { - "accessible_scopes": [ - "openzeppelin.access.ownable.library", - "openzeppelin.access.ownable.library.Ownable", - "openzeppelin.access.ownable.library.Ownable._transfer_ownership" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 48, - "end_line": 81, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/access/ownable/library.cairo" - }, - "parent_location": [ - { - "end_col": 34, - "end_line": 56, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/access/ownable/library.cairo" - }, - "parent_location": [ - { - "end_col": 53, - "end_line": 84, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/access/ownable/library.cairo" - }, - "start_col": 38, - "start_line": 84 - }, - "While trying to retrieve the implicit argument 'syscall_ptr' in:" - ], - "start_col": 16, - "start_line": 56 - }, - "While expanding the reference 'syscall_ptr' in:" - ], - "start_col": 30, - "start_line": 81 - } - }, - "353": { - "accessible_scopes": [ - "openzeppelin.access.ownable.library", - "openzeppelin.access.ownable.library.Ownable", - "openzeppelin.access.ownable.library.Ownable._transfer_ownership" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 76, - "end_line": 81, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/access/ownable/library.cairo" - }, - "parent_location": [ - { - "end_col": 62, - "end_line": 56, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/access/ownable/library.cairo" - }, - "parent_location": [ - { - "end_col": 53, - "end_line": 84, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/access/ownable/library.cairo" - }, - "start_col": 38, - "start_line": 84 - }, - "While trying to retrieve the implicit argument 'pedersen_ptr' in:" - ], - "start_col": 36, - "start_line": 56 - }, - "While expanding the reference 'pedersen_ptr' in:" - ], - "start_col": 50, - "start_line": 81 - } - }, - "354": { - "accessible_scopes": [ - "openzeppelin.access.ownable.library", - "openzeppelin.access.ownable.library.Ownable", - "openzeppelin.access.ownable.library.Ownable._transfer_ownership" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 93, - "end_line": 81, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/access/ownable/library.cairo" - }, - "parent_location": [ - { - "end_col": 79, - "end_line": 56, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/access/ownable/library.cairo" - }, - "parent_location": [ - { - "end_col": 53, - "end_line": 84, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/access/ownable/library.cairo" - }, - "start_col": 38, - "start_line": 84 - }, - "While trying to retrieve the implicit argument 'range_check_ptr' in:" - ], - "start_col": 64, - "start_line": 56 - }, - "While expanding the reference 'range_check_ptr' in:" - ], - "start_col": 78, - "start_line": 81 - } - }, - "355": { - "accessible_scopes": [ - "openzeppelin.access.ownable.library", - "openzeppelin.access.ownable.library.Ownable", - "openzeppelin.access.ownable.library.Ownable._transfer_ownership" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 53, - "end_line": 84, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/access/ownable/library.cairo" - }, - "start_col": 38, - "start_line": 84 - } - }, - "357": { - "accessible_scopes": [ - "openzeppelin.access.ownable.library", - "openzeppelin.access.ownable.library.Ownable", - "openzeppelin.access.ownable.library.Ownable._transfer_ownership" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 34, - "end_line": 56, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/access/ownable/library.cairo" - }, - "parent_location": [ - { - "end_col": 53, - "end_line": 84, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/access/ownable/library.cairo" - }, - "parent_location": [ - { - "end_col": 34, - "end_line": 19, - "input_file": { - "filename": "autogen/starknet/storage_var/Ownable_owner/decl.cairo" - }, - "parent_location": [ - { - "end_col": 39, - "end_line": 85, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/access/ownable/library.cairo" - }, - "start_col": 9, - "start_line": 85 - }, - "While trying to retrieve the implicit argument 'syscall_ptr' in:" - ], - "start_col": 16, - "start_line": 19 - }, - "While expanding the reference 'syscall_ptr' in:" - ], - "start_col": 38, - "start_line": 84 - }, - "While trying to update the implicit return value 'syscall_ptr' in:" - ], - "start_col": 16, - "start_line": 56 - } - }, - "358": { - "accessible_scopes": [ - "openzeppelin.access.ownable.library", - "openzeppelin.access.ownable.library.Ownable", - "openzeppelin.access.ownable.library.Ownable._transfer_ownership" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 62, - "end_line": 56, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/access/ownable/library.cairo" - }, - "parent_location": [ - { - "end_col": 53, - "end_line": 84, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/access/ownable/library.cairo" - }, - "parent_location": [ - { - "end_col": 62, - "end_line": 19, - "input_file": { - "filename": "autogen/starknet/storage_var/Ownable_owner/decl.cairo" - }, - "parent_location": [ - { - "end_col": 39, - "end_line": 85, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/access/ownable/library.cairo" - }, - "start_col": 9, - "start_line": 85 - }, - "While trying to retrieve the implicit argument 'pedersen_ptr' in:" - ], - "start_col": 36, - "start_line": 19 - }, - "While expanding the reference 'pedersen_ptr' in:" - ], - "start_col": 38, - "start_line": 84 - }, - "While trying to update the implicit return value 'pedersen_ptr' in:" - ], - "start_col": 36, - "start_line": 56 - } - }, - "359": { - "accessible_scopes": [ - "openzeppelin.access.ownable.library", - "openzeppelin.access.ownable.library.Ownable", - "openzeppelin.access.ownable.library.Ownable._transfer_ownership" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 79, - "end_line": 56, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/access/ownable/library.cairo" - }, - "parent_location": [ - { - "end_col": 53, - "end_line": 84, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/access/ownable/library.cairo" - }, - "parent_location": [ - { - "end_col": 79, - "end_line": 19, - "input_file": { - "filename": "autogen/starknet/storage_var/Ownable_owner/decl.cairo" - }, - "parent_location": [ - { - "end_col": 39, - "end_line": 85, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/access/ownable/library.cairo" - }, - "start_col": 9, - "start_line": 85 - }, - "While trying to retrieve the implicit argument 'range_check_ptr' in:" - ], - "start_col": 64, - "start_line": 19 - }, - "While expanding the reference 'range_check_ptr' in:" - ], - "start_col": 38, - "start_line": 84 - }, - "While trying to update the implicit return value 'range_check_ptr' in:" - ], - "start_col": 64, - "start_line": 56 - } - }, - "360": { - "accessible_scopes": [ - "openzeppelin.access.ownable.library", - "openzeppelin.access.ownable.library.Ownable", - "openzeppelin.access.ownable.library.Ownable._transfer_ownership" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 24, - "end_line": 82, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/access/ownable/library.cairo" - }, - "parent_location": [ - { - "end_col": 38, - "end_line": 85, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/access/ownable/library.cairo" - }, - "start_col": 29, - "start_line": 85 - }, - "While expanding the reference 'new_owner' in:" - ], - "start_col": 9, - "start_line": 82 - } - }, - "361": { - "accessible_scopes": [ - "openzeppelin.access.ownable.library", - "openzeppelin.access.ownable.library.Ownable", - "openzeppelin.access.ownable.library.Ownable._transfer_ownership" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 39, - "end_line": 85, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/access/ownable/library.cairo" - }, - "start_col": 9, - "start_line": 85 - } - }, - "363": { - "accessible_scopes": [ - "openzeppelin.access.ownable.library", - "openzeppelin.access.ownable.library.Ownable", - "openzeppelin.access.ownable.library.Ownable._transfer_ownership" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 34, - "end_line": 19, - "input_file": { - "filename": "autogen/starknet/storage_var/Ownable_owner/decl.cairo" - }, - "parent_location": [ - { - "end_col": 39, - "end_line": 85, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/access/ownable/library.cairo" - }, - "parent_location": [ - { - "end_col": 29, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/event/OwnershipTransferred/a7a8ae41be29ac9f4f6c3b7837c448d787ca051dd1ade98f409e54d33d112504.cairo" - }, - "parent_location": [ - { - "end_col": 26, - "end_line": 15, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/access/ownable/library.cairo" - }, - "parent_location": [ - { - "end_col": 61, - "end_line": 86, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/access/ownable/library.cairo" - }, - "start_col": 9, - "start_line": 86 - }, - "While trying to retrieve the implicit argument 'syscall_ptr' in:" - ], - "start_col": 6, - "start_line": 15 - }, - "While handling event:" - ], - "start_col": 11, - "start_line": 1 - }, - "While expanding the reference 'syscall_ptr' in:" - ], - "start_col": 9, - "start_line": 85 - }, - "While trying to update the implicit return value 'syscall_ptr' in:" - ], - "start_col": 16, - "start_line": 19 - } - }, - "364": { - "accessible_scopes": [ - "openzeppelin.access.ownable.library", - "openzeppelin.access.ownable.library.Ownable", - "openzeppelin.access.ownable.library.Ownable._transfer_ownership" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 79, - "end_line": 19, - "input_file": { - "filename": "autogen/starknet/storage_var/Ownable_owner/decl.cairo" - }, - "parent_location": [ - { - "end_col": 39, - "end_line": 85, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/access/ownable/library.cairo" - }, - "parent_location": [ - { - "end_col": 46, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/event/OwnershipTransferred/a7a8ae41be29ac9f4f6c3b7837c448d787ca051dd1ade98f409e54d33d112504.cairo" - }, - "parent_location": [ - { - "end_col": 26, - "end_line": 15, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/access/ownable/library.cairo" - }, - "parent_location": [ - { - "end_col": 61, - "end_line": 86, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/access/ownable/library.cairo" - }, - "start_col": 9, - "start_line": 86 - }, - "While trying to retrieve the implicit argument 'range_check_ptr' in:" - ], - "start_col": 6, - "start_line": 15 - }, - "While handling event:" - ], - "start_col": 31, - "start_line": 1 - }, - "While expanding the reference 'range_check_ptr' in:" - ], - "start_col": 9, - "start_line": 85 - }, - "While trying to update the implicit return value 'range_check_ptr' in:" - ], - "start_col": 64, - "start_line": 19 - } - }, - "365": { - "accessible_scopes": [ - "openzeppelin.access.ownable.library", - "openzeppelin.access.ownable.library.Ownable", - "openzeppelin.access.ownable.library.Ownable._transfer_ownership" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 34, - "end_line": 84, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/access/ownable/library.cairo" - }, - "parent_location": [ - { - "end_col": 49, - "end_line": 86, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/access/ownable/library.cairo" - }, - "start_col": 35, - "start_line": 86 - }, - "While expanding the reference 'previous_owner' in:" - ], - "start_col": 14, - "start_line": 84 - } - }, - "366": { - "accessible_scopes": [ - "openzeppelin.access.ownable.library", - "openzeppelin.access.ownable.library.Ownable", - "openzeppelin.access.ownable.library.Ownable._transfer_ownership" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 24, - "end_line": 82, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/access/ownable/library.cairo" - }, - "parent_location": [ - { - "end_col": 60, - "end_line": 86, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/access/ownable/library.cairo" - }, - "start_col": 51, - "start_line": 86 - }, - "While expanding the reference 'new_owner' in:" - ], - "start_col": 9, - "start_line": 82 - } - }, - "367": { - "accessible_scopes": [ - "openzeppelin.access.ownable.library", - "openzeppelin.access.ownable.library.Ownable", - "openzeppelin.access.ownable.library.Ownable._transfer_ownership" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 61, - "end_line": 86, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/access/ownable/library.cairo" - }, - "start_col": 9, - "start_line": 86 - } - }, - "369": { - "accessible_scopes": [ - "openzeppelin.access.ownable.library", - "openzeppelin.access.ownable.library.Ownable", - "openzeppelin.access.ownable.library.Ownable._transfer_ownership" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 29, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/event/OwnershipTransferred/a7a8ae41be29ac9f4f6c3b7837c448d787ca051dd1ade98f409e54d33d112504.cairo" - }, - "parent_location": [ - { - "end_col": 26, - "end_line": 15, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/access/ownable/library.cairo" - }, - "parent_location": [ - { - "end_col": 61, - "end_line": 86, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/access/ownable/library.cairo" - }, - "parent_location": [ - { - "end_col": 48, - "end_line": 81, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/access/ownable/library.cairo" - }, - "parent_location": [ - { - "end_col": 19, - "end_line": 87, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/access/ownable/library.cairo" - }, - "start_col": 9, - "start_line": 87 - }, - "While trying to retrieve the implicit argument 'syscall_ptr' in:" - ], - "start_col": 30, - "start_line": 81 - }, - "While expanding the reference 'syscall_ptr' in:" - ], - "start_col": 9, - "start_line": 86 - }, - "While trying to update the implicit return value 'syscall_ptr' in:" - ], - "start_col": 6, - "start_line": 15 - }, - "While handling event:" - ], - "start_col": 11, - "start_line": 1 - } - }, - "370": { - "accessible_scopes": [ - "openzeppelin.access.ownable.library", - "openzeppelin.access.ownable.library.Ownable", - "openzeppelin.access.ownable.library.Ownable._transfer_ownership" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 62, - "end_line": 19, - "input_file": { - "filename": "autogen/starknet/storage_var/Ownable_owner/decl.cairo" - }, - "parent_location": [ - { - "end_col": 39, - "end_line": 85, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/access/ownable/library.cairo" - }, - "parent_location": [ - { - "end_col": 76, - "end_line": 81, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/access/ownable/library.cairo" - }, - "parent_location": [ - { - "end_col": 19, - "end_line": 87, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/access/ownable/library.cairo" - }, - "start_col": 9, - "start_line": 87 - }, - "While trying to retrieve the implicit argument 'pedersen_ptr' in:" - ], - "start_col": 50, - "start_line": 81 - }, - "While expanding the reference 'pedersen_ptr' in:" - ], - "start_col": 9, - "start_line": 85 - }, - "While trying to update the implicit return value 'pedersen_ptr' in:" - ], - "start_col": 36, - "start_line": 19 - } - }, - "371": { - "accessible_scopes": [ - "openzeppelin.access.ownable.library", - "openzeppelin.access.ownable.library.Ownable", - "openzeppelin.access.ownable.library.Ownable._transfer_ownership" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 46, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/event/OwnershipTransferred/a7a8ae41be29ac9f4f6c3b7837c448d787ca051dd1ade98f409e54d33d112504.cairo" - }, - "parent_location": [ - { - "end_col": 26, - "end_line": 15, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/access/ownable/library.cairo" - }, - "parent_location": [ - { - "end_col": 61, - "end_line": 86, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/access/ownable/library.cairo" - }, - "parent_location": [ - { - "end_col": 93, - "end_line": 81, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/access/ownable/library.cairo" - }, - "parent_location": [ - { - "end_col": 19, - "end_line": 87, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/access/ownable/library.cairo" - }, - "start_col": 9, - "start_line": 87 - }, - "While trying to retrieve the implicit argument 'range_check_ptr' in:" - ], - "start_col": 78, - "start_line": 81 - }, - "While expanding the reference 'range_check_ptr' in:" - ], - "start_col": 9, - "start_line": 86 - }, - "While trying to update the implicit return value 'range_check_ptr' in:" - ], - "start_col": 6, - "start_line": 15 - }, - "While handling event:" - ], - "start_col": 31, - "start_line": 1 - } - }, - "372": { - "accessible_scopes": [ - "openzeppelin.access.ownable.library", - "openzeppelin.access.ownable.library.Ownable", - "openzeppelin.access.ownable.library.Ownable._transfer_ownership" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 19, - "end_line": 87, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/access/ownable/library.cairo" - }, - "start_col": 9, - "start_line": 87 - } - }, - "373": { - "accessible_scopes": [ - "starkware.cairo.common.math_cmp", - "starkware.cairo.common.math_cmp.is_nn" - ], - "flow_tracking_data": null, - "hints": [ - { - "location": { - "end_col": 84, - "end_line": 19, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/math_cmp.cairo" - }, - "start_col": 5, - "start_line": 19 - }, - "n_prefix_newlines": 0 - } - ], - "inst": { - "end_col": 40, - "end_line": 20, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/math_cmp.cairo" - }, - "start_col": 5, - "start_line": 20 - } - }, - "375": { - "accessible_scopes": [ - "starkware.cairo.common.math_cmp", - "starkware.cairo.common.math_cmp.is_nn" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 26, - "end_line": 21, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/math_cmp.cairo" - }, - "start_col": 5, - "start_line": 21 - } - }, - "376": { - "accessible_scopes": [ - "starkware.cairo.common.math_cmp", - "starkware.cairo.common.math_cmp.is_nn" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 13, - "end_line": 22, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/math_cmp.cairo" - }, - "start_col": 5, - "start_line": 22 - } - }, - "378": { - "accessible_scopes": [ - "starkware.cairo.common.math_cmp", - "starkware.cairo.common.math_cmp.is_nn" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 46, - "end_line": 23, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/math_cmp.cairo" - }, - "parent_location": [ - { - "end_col": 27, - "end_line": 18, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/math_cmp.cairo" - }, - "parent_location": [ - { - "end_col": 14, - "end_line": 24, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/math_cmp.cairo" - }, - "start_col": 5, - "start_line": 24 - }, - "While trying to retrieve the implicit argument 'range_check_ptr' in:" - ], - "start_col": 12, - "start_line": 18 - }, - "While expanding the reference 'range_check_ptr' in:" - ], - "start_col": 27, - "start_line": 23 - } - }, - "380": { - "accessible_scopes": [ - "starkware.cairo.common.math_cmp", - "starkware.cairo.common.math_cmp.is_nn" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 13, - "end_line": 24, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/math_cmp.cairo" - }, - "start_col": 12, - "start_line": 24 - } - }, - "382": { - "accessible_scopes": [ - "starkware.cairo.common.math_cmp", - "starkware.cairo.common.math_cmp.is_nn" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 14, - "end_line": 24, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/math_cmp.cairo" - }, - "start_col": 5, - "start_line": 24 - } - }, - "383": { - "accessible_scopes": [ - "starkware.cairo.common.math_cmp", - "starkware.cairo.common.math_cmp.is_nn" - ], - "flow_tracking_data": null, - "hints": [ - { - "location": { - "end_col": 91, - "end_line": 27, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/math_cmp.cairo" - }, - "start_col": 5, - "start_line": 27 - }, - "n_prefix_newlines": 0 - } - ], - "inst": { - "end_col": 48, - "end_line": 28, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/math_cmp.cairo" - }, - "start_col": 5, - "start_line": 28 - } - }, - "385": { - "accessible_scopes": [ - "starkware.cairo.common.math_cmp", - "starkware.cairo.common.math_cmp.is_nn" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 35, - "end_line": 29, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/math_cmp.cairo" - }, - "start_col": 33, - "start_line": 29 - } - }, - "387": { - "accessible_scopes": [ - "starkware.cairo.common.math_cmp", - "starkware.cairo.common.math_cmp.is_nn" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 40, - "end_line": 29, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/math_cmp.cairo" - }, - "start_col": 32, - "start_line": 29 - } - }, - "389": { - "accessible_scopes": [ - "starkware.cairo.common.math_cmp", - "starkware.cairo.common.math_cmp.is_nn" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 41, - "end_line": 29, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/math_cmp.cairo" - }, - "start_col": 5, - "start_line": 29 - } - }, - "390": { - "accessible_scopes": [ - "starkware.cairo.common.math_cmp", - "starkware.cairo.common.math_cmp.is_nn" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 13, - "end_line": 30, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/math_cmp.cairo" - }, - "start_col": 5, - "start_line": 30 - } - }, - "392": { - "accessible_scopes": [ - "starkware.cairo.common.math_cmp", - "starkware.cairo.common.math_cmp.is_nn" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 46, - "end_line": 31, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/math_cmp.cairo" - }, - "parent_location": [ - { - "end_col": 27, - "end_line": 18, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/math_cmp.cairo" - }, - "parent_location": [ - { - "end_col": 14, - "end_line": 32, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/math_cmp.cairo" - }, - "start_col": 5, - "start_line": 32 - }, - "While trying to retrieve the implicit argument 'range_check_ptr' in:" - ], - "start_col": 12, - "start_line": 18 - }, - "While expanding the reference 'range_check_ptr' in:" - ], - "start_col": 27, - "start_line": 31 - } - }, - "394": { - "accessible_scopes": [ - "starkware.cairo.common.math_cmp", - "starkware.cairo.common.math_cmp.is_nn" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 13, - "end_line": 32, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/math_cmp.cairo" - }, - "start_col": 12, - "start_line": 32 - } - }, - "396": { - "accessible_scopes": [ - "starkware.cairo.common.math_cmp", - "starkware.cairo.common.math_cmp.is_nn" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 14, - "end_line": 32, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/math_cmp.cairo" - }, - "start_col": 5, - "start_line": 32 - } - }, - "397": { - "accessible_scopes": [ - "starkware.cairo.common.math_cmp", - "starkware.cairo.common.math_cmp.is_nn" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 27, - "end_line": 18, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/math_cmp.cairo" - }, - "parent_location": [ - { - "end_col": 36, - "end_line": 154, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/math.cairo" - }, - "parent_location": [ - { - "end_col": 32, - "end_line": 35, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/math_cmp.cairo" - }, - "start_col": 5, - "start_line": 35 - }, - "While trying to retrieve the implicit argument 'range_check_ptr' in:" - ], - "start_col": 21, - "start_line": 154 - }, - "While expanding the reference 'range_check_ptr' in:" - ], - "start_col": 12, - "start_line": 18 - } - }, - "398": { - "accessible_scopes": [ - "starkware.cairo.common.math_cmp", - "starkware.cairo.common.math_cmp.is_nn" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 28, - "end_line": 35, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/math_cmp.cairo" - }, - "start_col": 20, - "start_line": 35 - } - }, - "400": { - "accessible_scopes": [ - "starkware.cairo.common.math_cmp", - "starkware.cairo.common.math_cmp.is_nn" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 30, - "end_line": 18, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/math_cmp.cairo" - }, - "parent_location": [ - { - "end_col": 31, - "end_line": 35, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/math_cmp.cairo" - }, - "start_col": 30, - "start_line": 35 - }, - "While expanding the reference 'a' in:" - ], - "start_col": 29, - "start_line": 18 - } - }, - "401": { - "accessible_scopes": [ - "starkware.cairo.common.math_cmp", - "starkware.cairo.common.math_cmp.is_nn" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 32, - "end_line": 35, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/math_cmp.cairo" - }, - "start_col": 5, - "start_line": 35 - } - }, - "403": { - "accessible_scopes": [ - "starkware.cairo.common.math_cmp", - "starkware.cairo.common.math_cmp.is_nn" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 13, - "end_line": 36, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/math_cmp.cairo" - }, - "start_col": 12, - "start_line": 36 - } - }, - "405": { - "accessible_scopes": [ - "starkware.cairo.common.math_cmp", - "starkware.cairo.common.math_cmp.is_nn" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 14, - "end_line": 36, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/math_cmp.cairo" - }, - "start_col": 5, - "start_line": 36 - } - }, - "406": { - "accessible_scopes": [ - "starkware.cairo.common.math_cmp", - "starkware.cairo.common.math_cmp.is_le" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 27, - "end_line": 42, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/math_cmp.cairo" - }, - "parent_location": [ - { - "end_col": 27, - "end_line": 18, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/math_cmp.cairo" - }, - "parent_location": [ - { - "end_col": 24, - "end_line": 43, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/math_cmp.cairo" - }, - "start_col": 12, - "start_line": 43 - }, - "While trying to retrieve the implicit argument 'range_check_ptr' in:" - ], - "start_col": 12, - "start_line": 18 - }, - "While expanding the reference 'range_check_ptr' in:" - ], - "start_col": 12, - "start_line": 42 - } - }, - "407": { - "accessible_scopes": [ - "starkware.cairo.common.math_cmp", - "starkware.cairo.common.math_cmp.is_le" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 23, - "end_line": 43, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/math_cmp.cairo" - }, - "start_col": 18, - "start_line": 43 - } - }, - "408": { - "accessible_scopes": [ - "starkware.cairo.common.math_cmp", - "starkware.cairo.common.math_cmp.is_le" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 24, - "end_line": 43, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/math_cmp.cairo" - }, - "start_col": 12, - "start_line": 43 - } - }, - "410": { - "accessible_scopes": [ - "starkware.cairo.common.math_cmp", - "starkware.cairo.common.math_cmp.is_le" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 25, - "end_line": 43, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/math_cmp.cairo" - }, - "start_col": 5, - "start_line": 43 - } - }, - "411": { - "accessible_scopes": [ - "utils.string", - "utils.string.str" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 18, - "end_line": 14, - "input_file": { - "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/utils/string.cairo" - }, - "start_col": 5, - "start_line": 14 - } - }, - "413": { - "accessible_scopes": [ - "utils.string", - "utils.string.str" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 7, - "end_line": 16, - "input_file": { - "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/utils/string.cairo" - }, - "start_col": 5, - "start_line": 16 - } - }, - "415": { - "accessible_scopes": [ - "utils.string", - "utils.string.str" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 25, - "end_line": 13, - "input_file": { - "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/utils/string.cairo" - }, - "parent_location": [ - { - "end_col": 25, - "end_line": 13, - "input_file": { - "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/utils/string.cairo" - }, - "parent_location": [ - { - "end_col": 23, - "end_line": 17, - "input_file": { - "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/utils/string.cairo" - }, - "start_col": 9, - "start_line": 17 - }, - "While trying to retrieve the implicit argument 'range_check_ptr' in:" - ], - "start_col": 10, - "start_line": 13 - }, - "While expanding the reference 'range_check_ptr' in:" - ], - "start_col": 10, - "start_line": 13 - } - }, - "416": { - "accessible_scopes": [ - "utils.string", - "utils.string.str" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 20, - "end_line": 17, - "input_file": { - "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/utils/string.cairo" - }, - "start_col": 17, - "start_line": 17 - } - }, - "418": { - "accessible_scopes": [ - "utils.string", - "utils.string.str" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 23, - "end_line": 17, - "input_file": { - "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/utils/string.cairo" - }, - "start_col": 9, - "start_line": 17 - } - }, - "419": { - "accessible_scopes": [ - "utils.string", - "utils.string.str" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 30, - "end_line": 20, - "input_file": { - "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/utils/string.cairo" - }, - "start_col": 23, - "start_line": 20 - } - }, - "421": { - "accessible_scopes": [ - "utils.string", - "utils.string.str" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 19, - "end_line": 20, - "input_file": { - "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/utils/string.cairo" - }, - "parent_location": [ - { - "end_col": 19, - "end_line": 20, - "input_file": { - "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/utils/string.cairo" - }, - "start_col": 10, - "start_line": 20 - }, - "While auto generating local variable for 'arr_ascii'." - ], - "start_col": 10, - "start_line": 20 - } - }, - "422": { - "accessible_scopes": [ - "utils.string", - "utils.string.str" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 25, - "end_line": 13, - "input_file": { - "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/utils/string.cairo" - }, - "parent_location": [ - { - "end_col": 31, - "end_line": 242, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/math.cairo" - }, - "parent_location": [ - { - "end_col": 33, - "end_line": 21, - "input_file": { - "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/utils/string.cairo" - }, - "start_col": 19, - "start_line": 21 - }, - "While trying to retrieve the implicit argument 'range_check_ptr' in:" - ], - "start_col": 16, - "start_line": 242 - }, - "While expanding the reference 'range_check_ptr' in:" - ], - "start_col": 10, - "start_line": 13 - } - }, - "423": { - "accessible_scopes": [ - "utils.string", - "utils.string.str" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 36, - "end_line": 13, - "input_file": { - "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/utils/string.cairo" - }, - "parent_location": [ - { - "end_col": 32, - "end_line": 21, - "input_file": { - "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/utils/string.cairo" - }, - "start_col": 29, - "start_line": 21 - }, - "While expanding the reference 'num' in:" - ], - "start_col": 27, - "start_line": 13 - } - }, - "424": { - "accessible_scopes": [ - "utils.string", - "utils.string.str" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 33, - "end_line": 21, - "input_file": { - "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/utils/string.cairo" - }, - "start_col": 19, - "start_line": 21 - } - }, - "426": { - "accessible_scopes": [ - "utils.string", - "utils.string.str" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 40, - "end_line": 23, - "input_file": { - "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/utils/string.cairo" - }, - "start_col": 39, - "start_line": 23 - } - }, - "428": { - "accessible_scopes": [ - "utils.string", - "utils.string.str" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 19, - "end_line": 20, - "input_file": { - "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/utils/string.cairo" - }, - "parent_location": [ - { - "end_col": 19, - "end_line": 20, - "input_file": { - "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/utils/string.cairo" - }, - "parent_location": [ - { - "end_col": 61, - "end_line": 23, - "input_file": { - "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/utils/string.cairo" - }, - "start_col": 52, - "start_line": 23 - }, - "While expanding the reference 'arr_ascii' in:" - ], - "start_col": 10, - "start_line": 20 - }, - "While auto generating local variable for 'arr_ascii'." - ], - "start_col": 10, - "start_line": 20 - } - }, - "429": { - "accessible_scopes": [ - "utils.string", - "utils.string.str" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 6, - "end_line": 24, - "input_file": { - "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/utils/string.cairo" - }, - "start_col": 33, - "start_line": 22 - } - }, - "431": { - "accessible_scopes": [ - "utils.string", - "utils.string.str" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 54, - "end_line": 49, - "input_file": { - "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/utils/string.cairo" - }, - "parent_location": [ - { - "end_col": 6, - "end_line": 24, - "input_file": { - "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/utils/string.cairo" - }, - "parent_location": [ - { - "end_col": 26, - "end_line": 265, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/math.cairo" - }, - "parent_location": [ - { - "end_col": 22, - "end_line": 26, - "input_file": { - "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/utils/string.cairo" - }, - "start_col": 13, - "start_line": 26 - }, - "While trying to retrieve the implicit argument 'range_check_ptr' in:" - ], - "start_col": 11, - "start_line": 265 - }, - "While expanding the reference 'range_check_ptr' in:" - ], - "start_col": 33, - "start_line": 22 - }, - "While trying to update the implicit return value 'range_check_ptr' in:" - ], - "start_col": 39, - "start_line": 49 - } - }, - "432": { - "accessible_scopes": [ - "utils.string", - "utils.string.str" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 36, - "end_line": 13, - "input_file": { - "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/utils/string.cairo" - }, - "parent_location": [ - { - "end_col": 21, - "end_line": 26, - "input_file": { - "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/utils/string.cairo" - }, - "start_col": 18, - "start_line": 26 - }, - "While expanding the reference 'num' in:" - ], - "start_col": 27, - "start_line": 13 - } - }, - "433": { - "accessible_scopes": [ - "utils.string", - "utils.string.str" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 22, - "end_line": 26, - "input_file": { - "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/utils/string.cairo" - }, - "start_col": 13, - "start_line": 26 - } - }, - "435": { - "accessible_scopes": [ - "utils.string", - "utils.string.str" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 16, - "end_line": 28, - "input_file": { - "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/utils/string.cairo" - }, - "start_col": 9, - "start_line": 28 - } - }, - "437": { - "accessible_scopes": [ - "utils.string", - "utils.string.str" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 7, - "end_line": 28, - "input_file": { - "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/utils/string.cairo" - }, - "start_col": 5, - "start_line": 28 - } - }, - "439": { - "accessible_scopes": [ - "utils.string", - "utils.string.str" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 19, - "end_line": 29, - "input_file": { - "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/utils/string.cairo" - }, - "start_col": 9, - "start_line": 29 - } - }, - "441": { - "accessible_scopes": [ - "utils.string", - "utils.string.str" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 7, - "end_line": 28, - "input_file": { - "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/utils/string.cairo" - }, - "start_col": 5, - "start_line": 28 - } - }, - "443": { - "accessible_scopes": [ - "utils.string", - "utils.string.str" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 18, - "end_line": 31, - "input_file": { - "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/utils/string.cairo" - }, - "start_col": 9, - "start_line": 31 - } - }, - "445": { - "accessible_scopes": [ - "utils.string", - "utils.string.str" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 26, - "end_line": 265, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/math.cairo" - }, - "parent_location": [ - { - "end_col": 22, - "end_line": 26, - "input_file": { - "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/utils/string.cairo" - }, - "parent_location": [ - { - "end_col": 61, - "end_line": 71, - "input_file": { - "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/utils/string.cairo" - }, - "parent_location": [ - { - "end_col": 6, - "end_line": 36, - "input_file": { - "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/utils/string.cairo" - }, - "start_col": 19, - "start_line": 34 - }, - "While trying to retrieve the implicit argument 'range_check_ptr' in:" - ], - "start_col": 46, - "start_line": 71 - }, - "While expanding the reference 'range_check_ptr' in:" - ], - "start_col": 13, - "start_line": 26 - }, - "While trying to update the implicit return value 'range_check_ptr' in:" - ], - "start_col": 11, - "start_line": 265 - } - }, - "446": { - "accessible_scopes": [ - "utils.string", - "utils.string.str" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 15, - "end_line": 27, - "input_file": { - "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/utils/string.cairo" - }, - "parent_location": [ - { - "end_col": 19, - "end_line": 35, - "input_file": { - "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/utils/string.cairo" - }, - "start_col": 15, - "start_line": 35 - }, - "While expanding the reference 'init' in:" - ], - "start_col": 11, - "start_line": 27 - } - }, - "447": { - "accessible_scopes": [ - "utils.string", - "utils.string.str" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 29, - "end_line": 22, - "input_file": { - "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/utils/string.cairo" - }, - "parent_location": [ - { - "end_col": 38, - "end_line": 35, - "input_file": { - "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/utils/string.cairo" - }, - "start_col": 25, - "start_line": 35 - }, - "While expanding the reference 'arr_ascii_len' in:" - ], - "start_col": 10, - "start_line": 22 - } - }, - "448": { - "accessible_scopes": [ - "utils.string", - "utils.string.str" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 19, - "end_line": 20, - "input_file": { - "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/utils/string.cairo" - }, - "parent_location": [ - { - "end_col": 19, - "end_line": 20, - "input_file": { - "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/utils/string.cairo" - }, - "parent_location": [ - { - "end_col": 53, - "end_line": 35, - "input_file": { - "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/utils/string.cairo" - }, - "start_col": 44, - "start_line": 35 - }, - "While expanding the reference 'arr_ascii' in:" - ], - "start_col": 10, - "start_line": 20 - }, - "While auto generating local variable for 'arr_ascii'." - ], - "start_col": 10, - "start_line": 20 - } - }, - "449": { - "accessible_scopes": [ - "utils.string", - "utils.string.str" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 60, - "end_line": 35, - "input_file": { - "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/utils/string.cairo" - }, - "start_col": 59, - "start_line": 35 - } - }, - "451": { - "accessible_scopes": [ - "utils.string", - "utils.string.str" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 6, - "end_line": 36, - "input_file": { - "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/utils/string.cairo" - }, - "start_col": 19, - "start_line": 34 - } - }, - "453": { - "accessible_scopes": [ - "utils.string", - "utils.string.str" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 21, - "end_line": 38, - "input_file": { - "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/utils/string.cairo" - }, - "start_col": 5, - "start_line": 38 - } - }, - "454": { - "accessible_scopes": [ - "utils.string", - "utils.string._ascii_from_digit" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 24, - "end_line": 46, - "input_file": { - "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/utils/string.cairo" - }, - "start_col": 13, - "start_line": 46 - } - }, - "456": { - "accessible_scopes": [ - "utils.string", - "utils.string._ascii_from_digit" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 27, - "end_line": 46, - "input_file": { - "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/utils/string.cairo" - }, - "start_col": 5, - "start_line": 46 - } - }, - "457": { - "accessible_scopes": [ - "utils.string", - "utils.string._recurse_ascii_array_from_number" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 18, - "end_line": 52, - "input_file": { - "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/utils/string.cairo" - }, - "start_col": 5, - "start_line": 52 - } - }, - "459": { - "accessible_scopes": [ - "utils.string", - "utils.string._recurse_ascii_array_from_number" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 7, - "end_line": 54, - "input_file": { - "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/utils/string.cairo" - }, - "start_col": 5, - "start_line": 54 - } - }, - "461": { - "accessible_scopes": [ - "utils.string", - "utils.string._recurse_ascii_array_from_number" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 54, - "end_line": 49, - "input_file": { - "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/utils/string.cairo" - }, - "parent_location": [ - { - "end_col": 54, - "end_line": 49, - "input_file": { - "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/utils/string.cairo" - }, - "parent_location": [ - { - "end_col": 33, - "end_line": 55, - "input_file": { - "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/utils/string.cairo" - }, - "start_col": 9, - "start_line": 55 - }, - "While trying to retrieve the implicit argument 'range_check_ptr' in:" - ], - "start_col": 39, - "start_line": 49 - }, - "While expanding the reference 'range_check_ptr' in:" - ], - "start_col": 39, - "start_line": 49 - } - }, - "462": { - "accessible_scopes": [ - "utils.string", - "utils.string._recurse_ascii_array_from_number" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 38, - "end_line": 50, - "input_file": { - "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/utils/string.cairo" - }, - "parent_location": [ - { - "end_col": 30, - "end_line": 55, - "input_file": { - "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/utils/string.cairo" - }, - "start_col": 17, - "start_line": 55 - }, - "While expanding the reference 'arr_ascii_len' in:" - ], - "start_col": 19, - "start_line": 50 - } - }, - "463": { - "accessible_scopes": [ - "utils.string", - "utils.string._recurse_ascii_array_from_number" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 33, - "end_line": 55, - "input_file": { - "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/utils/string.cairo" - }, - "start_col": 9, - "start_line": 55 - } - }, - "464": { - "accessible_scopes": [ - "utils.string", - "utils.string._recurse_ascii_array_from_number" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 54, - "end_line": 49, - "input_file": { - "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/utils/string.cairo" - }, - "parent_location": [ - { - "end_col": 38, - "end_line": 297, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/math.cairo" - }, - "parent_location": [ - { - "end_col": 59, - "end_line": 58, - "input_file": { - "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/utils/string.cairo" - }, - "start_col": 31, - "start_line": 58 - }, - "While trying to retrieve the implicit argument 'range_check_ptr' in:" - ], - "start_col": 23, - "start_line": 297 - }, - "While expanding the reference 'range_check_ptr' in:" - ], - "start_col": 39, - "start_line": 49 - } - }, - "465": { - "accessible_scopes": [ - "utils.string", - "utils.string._recurse_ascii_array_from_number" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 17, - "end_line": 50, - "input_file": { - "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/utils/string.cairo" - }, - "parent_location": [ - { - "end_col": 54, - "end_line": 58, - "input_file": { - "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/utils/string.cairo" - }, - "start_col": 48, - "start_line": 58 - }, - "While expanding the reference 'remain' in:" - ], - "start_col": 5, - "start_line": 50 - } - }, - "466": { - "accessible_scopes": [ - "utils.string", - "utils.string._recurse_ascii_array_from_number" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 58, - "end_line": 58, - "input_file": { - "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/utils/string.cairo" - }, - "start_col": 56, - "start_line": 58 - } - }, - "468": { - "accessible_scopes": [ - "utils.string", - "utils.string._recurse_ascii_array_from_number" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 59, - "end_line": 58, - "input_file": { - "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/utils/string.cairo" - }, - "start_col": 31, - "start_line": 58 - } - }, - "470": { - "accessible_scopes": [ - "utils.string", - "utils.string._recurse_ascii_array_from_number" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 43, - "end_line": 59, - "input_file": { - "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/utils/string.cairo" - }, - "start_col": 19, - "start_line": 59 - } - }, - "472": { - "accessible_scopes": [ - "utils.string", - "utils.string._recurse_ascii_array_from_number" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 36, - "end_line": 60, - "input_file": { - "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/utils/string.cairo" - }, - "start_col": 12, - "start_line": 60 - } - }, - "473": { - "accessible_scopes": [ - "utils.string", - "utils.string._recurse_ascii_array_from_number" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 45, - "end_line": 60, - "input_file": { - "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/utils/string.cairo" - }, - "start_col": 5, - "start_line": 60 - } - }, - "474": { - "accessible_scopes": [ - "utils.string", - "utils.string._recurse_ascii_array_from_number" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 38, - "end_line": 297, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/math.cairo" - }, - "parent_location": [ - { - "end_col": 59, - "end_line": 58, - "input_file": { - "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/utils/string.cairo" - }, - "parent_location": [ - { - "end_col": 54, - "end_line": 49, - "input_file": { - "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/utils/string.cairo" - }, - "parent_location": [ - { - "end_col": 6, - "end_line": 67, - "input_file": { - "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/utils/string.cairo" - }, - "start_col": 33, - "start_line": 65 - }, - "While trying to retrieve the implicit argument 'range_check_ptr' in:" - ], - "start_col": 39, - "start_line": 49 - }, - "While expanding the reference 'range_check_ptr' in:" - ], - "start_col": 31, - "start_line": 58 - }, - "While trying to update the implicit return value 'range_check_ptr' in:" - ], - "start_col": 23, - "start_line": 297 - } - }, - "475": { - "accessible_scopes": [ - "utils.string", - "utils.string._recurse_ascii_array_from_number" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 20, - "end_line": 58, - "input_file": { - "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/utils/string.cairo" - }, - "parent_location": [ - { - "end_col": 26, - "end_line": 66, - "input_file": { - "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/utils/string.cairo" - }, - "start_col": 16, - "start_line": 66 - }, - "While expanding the reference 'remain_nxt' in:" - ], - "start_col": 10, - "start_line": 58 - } - }, - "476": { - "accessible_scopes": [ - "utils.string", - "utils.string._recurse_ascii_array_from_number" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 59, - "end_line": 66, - "input_file": { - "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/utils/string.cairo" - }, - "start_col": 42, - "start_line": 66 - } - }, - "478": { - "accessible_scopes": [ - "utils.string", - "utils.string._recurse_ascii_array_from_number" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 56, - "end_line": 50, - "input_file": { - "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/utils/string.cairo" - }, - "parent_location": [ - { - "end_col": 80, - "end_line": 66, - "input_file": { - "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/utils/string.cairo" - }, - "start_col": 71, - "start_line": 66 - }, - "While expanding the reference 'arr_ascii' in:" - ], - "start_col": 40, - "start_line": 50 - } - }, - "479": { - "accessible_scopes": [ - "utils.string", - "utils.string._recurse_ascii_array_from_number" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 6, - "end_line": 67, - "input_file": { - "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/utils/string.cairo" - }, - "start_col": 33, - "start_line": 65 - } - }, - "481": { - "accessible_scopes": [ - "utils.string", - "utils.string._recurse_ascii_array_from_number" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 35, - "end_line": 68, - "input_file": { - "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/utils/string.cairo" - }, - "start_col": 5, - "start_line": 68 - } - }, - "482": { - "accessible_scopes": [ - "utils.string", - "utils.string._recurse_ascii_from_ascii_array_inverse" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 19, - "end_line": 74, - "input_file": { - "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/utils/string.cairo" - }, - "start_col": 9, - "start_line": 74 - } - }, - "483": { - "accessible_scopes": [ - "utils.string", - "utils.string._recurse_ascii_from_ascii_array_inverse" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 7, - "end_line": 74, - "input_file": { - "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/utils/string.cairo" - }, - "start_col": 5, - "start_line": 74 - } - }, - "485": { - "accessible_scopes": [ - "utils.string", - "utils.string._recurse_ascii_from_ascii_array_inverse" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 61, - "end_line": 71, - "input_file": { - "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/utils/string.cairo" - }, - "parent_location": [ - { - "end_col": 61, - "end_line": 71, - "input_file": { - "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/utils/string.cairo" - }, - "parent_location": [ - { - "end_col": 25, - "end_line": 75, - "input_file": { - "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/utils/string.cairo" - }, - "start_col": 9, - "start_line": 75 - }, - "While trying to retrieve the implicit argument 'range_check_ptr' in:" - ], - "start_col": 46, - "start_line": 71 - }, - "While expanding the reference 'range_check_ptr' in:" - ], - "start_col": 46, - "start_line": 71 - } - }, - "486": { - "accessible_scopes": [ - "utils.string", - "utils.string._recurse_ascii_from_ascii_array_inverse" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 16, - "end_line": 72, - "input_file": { - "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/utils/string.cairo" - }, - "parent_location": [ - { - "end_col": 22, - "end_line": 75, - "input_file": { - "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/utils/string.cairo" - }, - "start_col": 17, - "start_line": 75 - }, - "While expanding the reference 'ascii' in:" - ], - "start_col": 5, - "start_line": 72 - } - }, - "487": { - "accessible_scopes": [ - "utils.string", - "utils.string._recurse_ascii_from_ascii_array_inverse" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 25, - "end_line": 75, - "input_file": { - "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/utils/string.cairo" - }, - "start_col": 9, - "start_line": 75 - } - }, - "488": { - "accessible_scopes": [ - "utils.string", - "utils.string._recurse_ascii_from_ascii_array_inverse" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 32, - "end_line": 78, - "input_file": { - "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/utils/string.cairo" - }, - "parent_location": [ - { - "end_col": 24, - "end_line": 84, - "input_file": { - "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/utils/string.cairo" - }, - "start_col": 15, - "start_line": 84 - }, - "While expanding the reference 'ascii_nxt' in:" - ], - "start_col": 21, - "start_line": 78 - } - }, - "490": { - "accessible_scopes": [ - "utils.string", - "utils.string._recurse_ascii_from_ascii_array_inverse" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 52, - "end_line": 78, - "input_file": { - "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/utils/string.cairo" - }, - "parent_location": [ - { - "end_col": 24, - "end_line": 84, - "input_file": { - "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/utils/string.cairo" - }, - "start_col": 15, - "start_line": 84 - }, - "While expanding the reference 'ascii_nxt' in:" - ], - "start_col": 39, - "start_line": 78 - } - }, - "492": { - "accessible_scopes": [ - "utils.string", - "utils.string._recurse_ascii_from_ascii_array_inverse" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 52, - "end_line": 78, - "input_file": { - "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/utils/string.cairo" - }, - "parent_location": [ - { - "end_col": 24, - "end_line": 84, - "input_file": { - "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/utils/string.cairo" - }, - "start_col": 15, - "start_line": 84 - }, - "While expanding the reference 'ascii_nxt' in:" - ], - "start_col": 39, - "start_line": 78 - } - }, - "493": { - "accessible_scopes": [ - "utils.string", - "utils.string._recurse_ascii_from_ascii_array_inverse" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 53, - "end_line": 78, - "input_file": { - "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/utils/string.cairo" - }, - "parent_location": [ - { - "end_col": 24, - "end_line": 84, - "input_file": { - "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/utils/string.cairo" - }, - "start_col": 15, - "start_line": 84 - }, - "While expanding the reference 'ascii_nxt' in:" - ], - "start_col": 35, - "start_line": 78 - } - }, - "494": { - "accessible_scopes": [ - "utils.string", - "utils.string._recurse_ascii_from_ascii_array_inverse" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 53, - "end_line": 78, - "input_file": { - "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/utils/string.cairo" - }, - "parent_location": [ - { - "end_col": 24, - "end_line": 84, - "input_file": { - "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/utils/string.cairo" - }, - "start_col": 15, - "start_line": 84 - }, - "While expanding the reference 'ascii_nxt' in:" - ], - "start_col": 35, - "start_line": 78 - } - }, - "495": { - "accessible_scopes": [ - "utils.string", - "utils.string._recurse_ascii_from_ascii_array_inverse" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 61, - "end_line": 71, - "input_file": { - "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/utils/string.cairo" - }, - "parent_location": [ - { - "end_col": 61, - "end_line": 71, - "input_file": { - "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/utils/string.cairo" - }, - "parent_location": [ - { - "end_col": 6, - "end_line": 85, - "input_file": { - "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/utils/string.cairo" - }, - "start_col": 25, - "start_line": 83 - }, - "While trying to retrieve the implicit argument 'range_check_ptr' in:" - ], - "start_col": 46, - "start_line": 71 - }, - "While expanding the reference 'range_check_ptr' in:" - ], - "start_col": 46, - "start_line": 71 - } - }, - "496": { - "accessible_scopes": [ - "utils.string", - "utils.string._recurse_ascii_from_ascii_array_inverse" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 53, - "end_line": 78, - "input_file": { - "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/utils/string.cairo" - }, - "parent_location": [ - { - "end_col": 24, - "end_line": 84, - "input_file": { - "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/utils/string.cairo" - }, - "start_col": 15, - "start_line": 84 - }, - "While expanding the reference 'ascii_nxt' in:" - ], - "start_col": 21, - "start_line": 78 - } - }, - "497": { - "accessible_scopes": [ - "utils.string", - "utils.string._recurse_ascii_from_ascii_array_inverse" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 27, - "end_line": 72, - "input_file": { - "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/utils/string.cairo" - }, - "parent_location": [ - { - "end_col": 33, - "end_line": 84, - "input_file": { - "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/utils/string.cairo" - }, - "start_col": 30, - "start_line": 84 - }, - "While expanding the reference 'len' in:" - ], - "start_col": 18, - "start_line": 72 - } - }, - "498": { - "accessible_scopes": [ - "utils.string", - "utils.string._recurse_ascii_from_ascii_array_inverse" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 39, - "end_line": 72, - "input_file": { - "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/utils/string.cairo" - }, - "parent_location": [ - { - "end_col": 42, - "end_line": 84, - "input_file": { - "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/utils/string.cairo" - }, - "start_col": 39, - "start_line": 84 - }, - "While expanding the reference 'arr' in:" - ], - "start_col": 29, - "start_line": 72 - } - }, - "499": { - "accessible_scopes": [ - "utils.string", - "utils.string._recurse_ascii_from_ascii_array_inverse" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 55, - "end_line": 84, - "input_file": { - "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/utils/string.cairo" - }, - "start_col": 48, - "start_line": 84 - } - }, - "501": { - "accessible_scopes": [ - "utils.string", - "utils.string._recurse_ascii_from_ascii_array_inverse" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 6, - "end_line": 85, - "input_file": { - "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/utils/string.cairo" - }, - "start_col": 25, - "start_line": 83 - } - }, - "503": { - "accessible_scopes": [ - "utils.string", - "utils.string._recurse_ascii_from_ascii_array_inverse" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 27, - "end_line": 86, - "input_file": { - "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/utils/string.cairo" - }, - "start_col": 5, - "start_line": 86 - } - }, - "504": { - "accessible_scopes": [ - "starkware.cairo.common.registers", - "starkware.cairo.common.registers.get_label_location" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 38, - "end_line": 22, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/registers.cairo" - }, - "start_col": 23, - "start_line": 22 - } - }, - "506": { - "accessible_scopes": [ - "starkware.cairo.common.registers", - "starkware.cairo.common.registers.get_label_location" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 53, - "end_line": 25, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/registers.cairo" - }, - "start_col": 27, - "start_line": 25 - } - }, - "508": { - "accessible_scopes": [ - "starkware.cairo.common.registers", - "starkware.cairo.common.registers.get_label_location" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 54, - "end_line": 25, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/registers.cairo" - }, - "start_col": 17, - "start_line": 25 - } - }, - "509": { - "accessible_scopes": [ - "starkware.cairo.common.registers", - "starkware.cairo.common.registers.get_label_location" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 56, - "end_line": 25, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/registers.cairo" - }, - "start_col": 5, - "start_line": 25 - } - }, - "510": { - "accessible_scopes": [ - "__main__", - "__main__.initialized", - "__main__.initialized.addr" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 41, - "end_line": 7, - "input_file": { - "filename": "autogen/starknet/storage_var/initialized/impl.cairo" - }, - "parent_location": [ - { - "end_col": 41, - "end_line": 7, - "input_file": { - "filename": "autogen/starknet/storage_var/initialized/decl.cairo" - }, - "parent_location": [ - { - "end_col": 26, - "end_line": 9, - "input_file": { - "filename": "autogen/starknet/storage_var/initialized/impl.cairo" - }, - "start_col": 9, - "start_line": 9 - }, - "While trying to retrieve the implicit argument 'pedersen_ptr' in:" - ], - "start_col": 15, - "start_line": 7 - }, - "While expanding the reference 'pedersen_ptr' in:" - ], - "start_col": 15, - "start_line": 7 - } - }, - "511": { - "accessible_scopes": [ - "__main__", - "__main__.initialized", - "__main__.initialized.addr" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 58, - "end_line": 7, - "input_file": { - "filename": "autogen/starknet/storage_var/initialized/impl.cairo" - }, - "parent_location": [ - { - "end_col": 58, - "end_line": 7, - "input_file": { - "filename": "autogen/starknet/storage_var/initialized/decl.cairo" - }, - "parent_location": [ - { - "end_col": 26, - "end_line": 9, - "input_file": { - "filename": "autogen/starknet/storage_var/initialized/impl.cairo" - }, - "start_col": 9, - "start_line": 9 - }, - "While trying to retrieve the implicit argument 'range_check_ptr' in:" - ], - "start_col": 43, - "start_line": 7 - }, - "While expanding the reference 'range_check_ptr' in:" - ], - "start_col": 43, - "start_line": 7 - } - }, - "512": { - "accessible_scopes": [ - "__main__", - "__main__.initialized", - "__main__.initialized.addr" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 95, - "end_line": 8, - "input_file": { - "filename": "autogen/starknet/storage_var/initialized/impl.cairo" - }, - "parent_location": [ - { - "end_col": 24, - "end_line": 9, - "input_file": { - "filename": "autogen/starknet/storage_var/initialized/impl.cairo" - }, - "start_col": 21, - "start_line": 9 - }, - "While expanding the reference 'res' in:" - ], - "start_col": 19, - "start_line": 8 - } - }, - "514": { - "accessible_scopes": [ - "__main__", - "__main__.initialized", - "__main__.initialized.addr" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 26, - "end_line": 9, - "input_file": { - "filename": "autogen/starknet/storage_var/initialized/impl.cairo" - }, - "start_col": 9, - "start_line": 9 - } - }, - "515": { - "accessible_scopes": [ - "__main__", - "__main__.initialized", - "__main__.initialized.read" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 61, - "end_line": 12, - "input_file": { - "filename": "autogen/starknet/storage_var/initialized/impl.cairo" - }, - "parent_location": [ - { - "end_col": 41, - "end_line": 7, - "input_file": { - "filename": "autogen/starknet/storage_var/initialized/decl.cairo" - }, - "parent_location": [ - { - "end_col": 36, - "end_line": 13, - "input_file": { - "filename": "autogen/starknet/storage_var/initialized/impl.cairo" - }, - "start_col": 30, - "start_line": 13 - }, - "While trying to retrieve the implicit argument 'pedersen_ptr' in:" - ], - "start_col": 15, - "start_line": 7 - }, - "While expanding the reference 'pedersen_ptr' in:" - ], - "start_col": 35, - "start_line": 12 - } - }, - "516": { - "accessible_scopes": [ - "__main__", - "__main__.initialized", - "__main__.initialized.read" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 78, - "end_line": 12, - "input_file": { - "filename": "autogen/starknet/storage_var/initialized/impl.cairo" - }, - "parent_location": [ - { - "end_col": 58, - "end_line": 7, - "input_file": { - "filename": "autogen/starknet/storage_var/initialized/decl.cairo" - }, - "parent_location": [ - { - "end_col": 36, - "end_line": 13, - "input_file": { - "filename": "autogen/starknet/storage_var/initialized/impl.cairo" - }, - "start_col": 30, - "start_line": 13 - }, - "While trying to retrieve the implicit argument 'range_check_ptr' in:" - ], - "start_col": 43, - "start_line": 7 - }, - "While expanding the reference 'range_check_ptr' in:" - ], - "start_col": 63, - "start_line": 12 - } - }, - "517": { - "accessible_scopes": [ - "__main__", - "__main__.initialized", - "__main__.initialized.read" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 36, - "end_line": 13, - "input_file": { - "filename": "autogen/starknet/storage_var/initialized/impl.cairo" - }, - "start_col": 30, - "start_line": 13 - } - }, - "519": { - "accessible_scopes": [ - "__main__", - "__main__.initialized", - "__main__.initialized.read" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 33, - "end_line": 12, - "input_file": { - "filename": "autogen/starknet/storage_var/initialized/impl.cairo" - }, - "parent_location": [ - { - "end_col": 37, - "end_line": 352, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/starknet/common/syscalls.cairo" - }, - "parent_location": [ - { - "end_col": 75, - "end_line": 14, - "input_file": { - "filename": "autogen/starknet/storage_var/initialized/impl.cairo" - }, - "start_col": 37, - "start_line": 14 - }, - "While trying to retrieve the implicit argument 'syscall_ptr' in:" - ], - "start_col": 19, - "start_line": 352 - }, - "While expanding the reference 'syscall_ptr' in:" - ], - "start_col": 15, - "start_line": 12 - } - }, - "520": { - "accessible_scopes": [ - "__main__", - "__main__.initialized", - "__main__.initialized.read" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 26, - "end_line": 13, - "input_file": { - "filename": "autogen/starknet/storage_var/initialized/impl.cairo" - }, - "parent_location": [ - { - "end_col": 70, - "end_line": 14, - "input_file": { - "filename": "autogen/starknet/storage_var/initialized/impl.cairo" - }, - "start_col": 58, - "start_line": 14 - }, - "While expanding the reference 'storage_addr' in:" - ], - "start_col": 14, - "start_line": 13 - } - }, - "521": { - "accessible_scopes": [ - "__main__", - "__main__.initialized", - "__main__.initialized.read" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 75, - "end_line": 14, - "input_file": { - "filename": "autogen/starknet/storage_var/initialized/impl.cairo" - }, - "start_col": 37, - "start_line": 14 - } - }, - "523": { - "accessible_scopes": [ - "__main__", - "__main__.initialized", - "__main__.initialized.read" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 37, - "end_line": 352, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/starknet/common/syscalls.cairo" - }, - "parent_location": [ - { - "end_col": 75, - "end_line": 14, - "input_file": { - "filename": "autogen/starknet/storage_var/initialized/impl.cairo" - }, - "parent_location": [ - { - "end_col": 42, - "end_line": 16, - "input_file": { - "filename": "autogen/starknet/storage_var/initialized/impl.cairo" - }, - "start_col": 31, - "start_line": 16 - }, - "While expanding the reference 'syscall_ptr' in:" - ], - "start_col": 37, - "start_line": 14 - }, - "While trying to update the implicit return value 'syscall_ptr' in:" - ], - "start_col": 19, - "start_line": 352 - } - }, - "524": { - "accessible_scopes": [ - "__main__", - "__main__.initialized", - "__main__.initialized.read" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 41, - "end_line": 7, - "input_file": { - "filename": "autogen/starknet/storage_var/initialized/decl.cairo" - }, - "parent_location": [ - { - "end_col": 36, - "end_line": 13, - "input_file": { - "filename": "autogen/starknet/storage_var/initialized/impl.cairo" - }, - "parent_location": [ - { - "end_col": 44, - "end_line": 17, - "input_file": { - "filename": "autogen/starknet/storage_var/initialized/impl.cairo" - }, - "start_col": 32, - "start_line": 17 - }, - "While expanding the reference 'pedersen_ptr' in:" - ], - "start_col": 30, - "start_line": 13 - }, - "While trying to update the implicit return value 'pedersen_ptr' in:" - ], - "start_col": 15, - "start_line": 7 - } - }, - "525": { - "accessible_scopes": [ - "__main__", - "__main__.initialized", - "__main__.initialized.read" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 58, - "end_line": 7, - "input_file": { - "filename": "autogen/starknet/storage_var/initialized/decl.cairo" - }, - "parent_location": [ - { - "end_col": 36, - "end_line": 13, - "input_file": { - "filename": "autogen/starknet/storage_var/initialized/impl.cairo" - }, - "parent_location": [ - { - "end_col": 50, - "end_line": 18, - "input_file": { - "filename": "autogen/starknet/storage_var/initialized/impl.cairo" - }, - "start_col": 35, - "start_line": 18 - }, - "While expanding the reference 'range_check_ptr' in:" - ], - "start_col": 30, - "start_line": 13 - }, - "While trying to update the implicit return value 'range_check_ptr' in:" - ], - "start_col": 43, - "start_line": 7 - } - }, - "526": { - "accessible_scopes": [ - "__main__", - "__main__.initialized", - "__main__.initialized.read" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 33, - "end_line": 14, - "input_file": { - "filename": "autogen/starknet/storage_var/initialized/impl.cairo" - }, - "parent_location": [ - { - "end_col": 64, - "end_line": 19, - "input_file": { - "filename": "autogen/starknet/storage_var/initialized/impl.cairo" - }, - "start_col": 45, - "start_line": 19 - }, - "While expanding the reference '__storage_var_temp0' in:" - ], - "start_col": 14, - "start_line": 14 - } - }, - "527": { - "accessible_scopes": [ - "__main__", - "__main__.initialized", - "__main__.initialized.read" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 55, - "end_line": 20, - "input_file": { - "filename": "autogen/starknet/storage_var/initialized/impl.cairo" - }, - "start_col": 9, - "start_line": 20 - } - }, - "528": { - "accessible_scopes": [ - "__main__", - "__main__.initialized", - "__main__.initialized.write" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 62, - "end_line": 23, - "input_file": { - "filename": "autogen/starknet/storage_var/initialized/impl.cairo" - }, - "parent_location": [ - { - "end_col": 41, - "end_line": 7, - "input_file": { - "filename": "autogen/starknet/storage_var/initialized/decl.cairo" - }, - "parent_location": [ - { - "end_col": 36, - "end_line": 24, - "input_file": { - "filename": "autogen/starknet/storage_var/initialized/impl.cairo" - }, - "start_col": 30, - "start_line": 24 - }, - "While trying to retrieve the implicit argument 'pedersen_ptr' in:" - ], - "start_col": 15, - "start_line": 7 - }, - "While expanding the reference 'pedersen_ptr' in:" - ], - "start_col": 36, - "start_line": 23 - } - }, - "529": { - "accessible_scopes": [ - "__main__", - "__main__.initialized", - "__main__.initialized.write" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 79, - "end_line": 23, - "input_file": { - "filename": "autogen/starknet/storage_var/initialized/impl.cairo" - }, - "parent_location": [ - { - "end_col": 58, - "end_line": 7, - "input_file": { - "filename": "autogen/starknet/storage_var/initialized/decl.cairo" - }, - "parent_location": [ - { - "end_col": 36, - "end_line": 24, - "input_file": { - "filename": "autogen/starknet/storage_var/initialized/impl.cairo" - }, - "start_col": 30, - "start_line": 24 - }, - "While trying to retrieve the implicit argument 'range_check_ptr' in:" - ], - "start_col": 43, - "start_line": 7 - }, - "While expanding the reference 'range_check_ptr' in:" - ], - "start_col": 64, - "start_line": 23 - } - }, - "530": { - "accessible_scopes": [ - "__main__", - "__main__.initialized", - "__main__.initialized.write" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 36, - "end_line": 24, - "input_file": { - "filename": "autogen/starknet/storage_var/initialized/impl.cairo" - }, - "start_col": 30, - "start_line": 24 - } - }, - "532": { - "accessible_scopes": [ - "__main__", - "__main__.initialized", - "__main__.initialized.write" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 34, - "end_line": 23, - "input_file": { - "filename": "autogen/starknet/storage_var/initialized/impl.cairo" - }, - "parent_location": [ - { - "end_col": 38, - "end_line": 370, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/starknet/common/syscalls.cairo" - }, - "parent_location": [ - { - "end_col": 80, - "end_line": 25, - "input_file": { - "filename": "autogen/starknet/storage_var/initialized/impl.cairo" - }, - "start_col": 9, - "start_line": 25 - }, - "While trying to retrieve the implicit argument 'syscall_ptr' in:" - ], - "start_col": 20, - "start_line": 370 - }, - "While expanding the reference 'syscall_ptr' in:" - ], - "start_col": 16, - "start_line": 23 - } - }, - "533": { - "accessible_scopes": [ - "__main__", - "__main__.initialized", - "__main__.initialized.write" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 26, - "end_line": 24, - "input_file": { - "filename": "autogen/starknet/storage_var/initialized/impl.cairo" - }, - "parent_location": [ - { - "end_col": 43, - "end_line": 25, - "input_file": { - "filename": "autogen/starknet/storage_var/initialized/impl.cairo" - }, - "start_col": 31, - "start_line": 25 - }, - "While expanding the reference 'storage_addr' in:" - ], - "start_col": 14, - "start_line": 24 - } - }, - "534": { - "accessible_scopes": [ - "__main__", - "__main__.initialized", - "__main__.initialized.write" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 79, - "end_line": 25, - "input_file": { - "filename": "autogen/starknet/storage_var/initialized/impl.cairo" - }, - "start_col": 55, - "start_line": 25 - } - }, - "535": { - "accessible_scopes": [ - "__main__", - "__main__.initialized", - "__main__.initialized.write" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 80, - "end_line": 25, - "input_file": { - "filename": "autogen/starknet/storage_var/initialized/impl.cairo" - }, - "start_col": 9, - "start_line": 25 - } - }, - "537": { - "accessible_scopes": [ - "__main__", - "__main__.initialized", - "__main__.initialized.write" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 41, - "end_line": 7, - "input_file": { - "filename": "autogen/starknet/storage_var/initialized/decl.cairo" - }, - "parent_location": [ - { - "end_col": 36, - "end_line": 24, - "input_file": { - "filename": "autogen/starknet/storage_var/initialized/impl.cairo" - }, - "parent_location": [ - { - "end_col": 62, - "end_line": 19, - "input_file": { - "filename": "autogen/starknet/storage_var/initialized/decl.cairo" - }, - "parent_location": [ - { - "end_col": 19, - "end_line": 26, - "input_file": { - "filename": "autogen/starknet/storage_var/initialized/impl.cairo" - }, - "start_col": 9, - "start_line": 26 - }, - "While trying to retrieve the implicit argument 'pedersen_ptr' in:" - ], - "start_col": 36, - "start_line": 19 - }, - "While expanding the reference 'pedersen_ptr' in:" - ], - "start_col": 30, - "start_line": 24 - }, - "While trying to update the implicit return value 'pedersen_ptr' in:" - ], - "start_col": 15, - "start_line": 7 - } - }, - "538": { - "accessible_scopes": [ - "__main__", - "__main__.initialized", - "__main__.initialized.write" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 58, - "end_line": 7, - "input_file": { - "filename": "autogen/starknet/storage_var/initialized/decl.cairo" - }, - "parent_location": [ - { - "end_col": 36, - "end_line": 24, - "input_file": { - "filename": "autogen/starknet/storage_var/initialized/impl.cairo" - }, - "parent_location": [ - { - "end_col": 79, - "end_line": 19, - "input_file": { - "filename": "autogen/starknet/storage_var/initialized/decl.cairo" - }, - "parent_location": [ - { - "end_col": 19, - "end_line": 26, - "input_file": { - "filename": "autogen/starknet/storage_var/initialized/impl.cairo" - }, - "start_col": 9, - "start_line": 26 - }, - "While trying to retrieve the implicit argument 'range_check_ptr' in:" - ], - "start_col": 64, - "start_line": 19 - }, - "While expanding the reference 'range_check_ptr' in:" - ], - "start_col": 30, - "start_line": 24 - }, - "While trying to update the implicit return value 'range_check_ptr' in:" - ], - "start_col": 43, - "start_line": 7 - } - }, - "539": { - "accessible_scopes": [ - "__main__", - "__main__.initialized", - "__main__.initialized.write" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 19, - "end_line": 26, - "input_file": { - "filename": "autogen/starknet/storage_var/initialized/impl.cairo" - }, - "start_col": 9, - "start_line": 26 - } - }, - "540": { - "accessible_scopes": [ - "__main__", - "__main__._thresholds_len", - "__main__._thresholds_len.addr" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 41, - "end_line": 7, - "input_file": { - "filename": "autogen/starknet/storage_var/_thresholds_len/impl.cairo" - }, - "parent_location": [ - { - "end_col": 41, - "end_line": 7, - "input_file": { - "filename": "autogen/starknet/storage_var/_thresholds_len/decl.cairo" - }, - "parent_location": [ - { - "end_col": 26, - "end_line": 9, - "input_file": { - "filename": "autogen/starknet/storage_var/_thresholds_len/impl.cairo" - }, - "start_col": 9, - "start_line": 9 - }, - "While trying to retrieve the implicit argument 'pedersen_ptr' in:" - ], - "start_col": 15, - "start_line": 7 - }, - "While expanding the reference 'pedersen_ptr' in:" - ], - "start_col": 15, - "start_line": 7 - } - }, - "541": { - "accessible_scopes": [ - "__main__", - "__main__._thresholds_len", - "__main__._thresholds_len.addr" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 58, - "end_line": 7, - "input_file": { - "filename": "autogen/starknet/storage_var/_thresholds_len/impl.cairo" - }, - "parent_location": [ - { - "end_col": 58, - "end_line": 7, - "input_file": { - "filename": "autogen/starknet/storage_var/_thresholds_len/decl.cairo" - }, - "parent_location": [ - { - "end_col": 26, - "end_line": 9, - "input_file": { - "filename": "autogen/starknet/storage_var/_thresholds_len/impl.cairo" - }, - "start_col": 9, - "start_line": 9 - }, - "While trying to retrieve the implicit argument 'range_check_ptr' in:" - ], - "start_col": 43, - "start_line": 7 - }, - "While expanding the reference 'range_check_ptr' in:" - ], - "start_col": 43, - "start_line": 7 - } - }, - "542": { - "accessible_scopes": [ - "__main__", - "__main__._thresholds_len", - "__main__._thresholds_len.addr" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 95, - "end_line": 8, - "input_file": { - "filename": "autogen/starknet/storage_var/_thresholds_len/impl.cairo" - }, - "parent_location": [ - { - "end_col": 24, - "end_line": 9, - "input_file": { - "filename": "autogen/starknet/storage_var/_thresholds_len/impl.cairo" - }, - "start_col": 21, - "start_line": 9 - }, - "While expanding the reference 'res' in:" - ], - "start_col": 19, - "start_line": 8 - } - }, - "544": { - "accessible_scopes": [ - "__main__", - "__main__._thresholds_len", - "__main__._thresholds_len.addr" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 26, - "end_line": 9, - "input_file": { - "filename": "autogen/starknet/storage_var/_thresholds_len/impl.cairo" - }, - "start_col": 9, - "start_line": 9 - } - }, - "545": { - "accessible_scopes": [ - "__main__", - "__main__._thresholds_len", - "__main__._thresholds_len.read" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 61, - "end_line": 12, - "input_file": { - "filename": "autogen/starknet/storage_var/_thresholds_len/impl.cairo" - }, - "parent_location": [ - { - "end_col": 41, - "end_line": 7, - "input_file": { - "filename": "autogen/starknet/storage_var/_thresholds_len/decl.cairo" - }, - "parent_location": [ - { - "end_col": 36, - "end_line": 13, - "input_file": { - "filename": "autogen/starknet/storage_var/_thresholds_len/impl.cairo" - }, - "start_col": 30, - "start_line": 13 - }, - "While trying to retrieve the implicit argument 'pedersen_ptr' in:" - ], - "start_col": 15, - "start_line": 7 - }, - "While expanding the reference 'pedersen_ptr' in:" - ], - "start_col": 35, - "start_line": 12 - } - }, - "546": { - "accessible_scopes": [ - "__main__", - "__main__._thresholds_len", - "__main__._thresholds_len.read" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 78, - "end_line": 12, - "input_file": { - "filename": "autogen/starknet/storage_var/_thresholds_len/impl.cairo" - }, - "parent_location": [ - { - "end_col": 58, - "end_line": 7, - "input_file": { - "filename": "autogen/starknet/storage_var/_thresholds_len/decl.cairo" - }, - "parent_location": [ - { - "end_col": 36, - "end_line": 13, - "input_file": { - "filename": "autogen/starknet/storage_var/_thresholds_len/impl.cairo" - }, - "start_col": 30, - "start_line": 13 - }, - "While trying to retrieve the implicit argument 'range_check_ptr' in:" - ], - "start_col": 43, - "start_line": 7 - }, - "While expanding the reference 'range_check_ptr' in:" - ], - "start_col": 63, - "start_line": 12 - } - }, - "547": { - "accessible_scopes": [ - "__main__", - "__main__._thresholds_len", - "__main__._thresholds_len.read" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 36, - "end_line": 13, - "input_file": { - "filename": "autogen/starknet/storage_var/_thresholds_len/impl.cairo" - }, - "start_col": 30, - "start_line": 13 - } - }, - "549": { - "accessible_scopes": [ - "__main__", - "__main__._thresholds_len", - "__main__._thresholds_len.read" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 33, - "end_line": 12, - "input_file": { - "filename": "autogen/starknet/storage_var/_thresholds_len/impl.cairo" - }, - "parent_location": [ - { - "end_col": 37, - "end_line": 352, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/starknet/common/syscalls.cairo" - }, - "parent_location": [ - { - "end_col": 75, - "end_line": 14, - "input_file": { - "filename": "autogen/starknet/storage_var/_thresholds_len/impl.cairo" - }, - "start_col": 37, - "start_line": 14 - }, - "While trying to retrieve the implicit argument 'syscall_ptr' in:" - ], - "start_col": 19, - "start_line": 352 - }, - "While expanding the reference 'syscall_ptr' in:" - ], - "start_col": 15, - "start_line": 12 - } - }, - "550": { - "accessible_scopes": [ - "__main__", - "__main__._thresholds_len", - "__main__._thresholds_len.read" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 26, - "end_line": 13, - "input_file": { - "filename": "autogen/starknet/storage_var/_thresholds_len/impl.cairo" - }, - "parent_location": [ - { - "end_col": 70, - "end_line": 14, - "input_file": { - "filename": "autogen/starknet/storage_var/_thresholds_len/impl.cairo" - }, - "start_col": 58, - "start_line": 14 - }, - "While expanding the reference 'storage_addr' in:" - ], - "start_col": 14, - "start_line": 13 - } - }, - "551": { - "accessible_scopes": [ - "__main__", - "__main__._thresholds_len", - "__main__._thresholds_len.read" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 75, - "end_line": 14, - "input_file": { - "filename": "autogen/starknet/storage_var/_thresholds_len/impl.cairo" - }, - "start_col": 37, - "start_line": 14 - } - }, - "553": { - "accessible_scopes": [ - "__main__", - "__main__._thresholds_len", - "__main__._thresholds_len.read" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 37, - "end_line": 352, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/starknet/common/syscalls.cairo" - }, - "parent_location": [ - { - "end_col": 75, - "end_line": 14, - "input_file": { - "filename": "autogen/starknet/storage_var/_thresholds_len/impl.cairo" - }, - "parent_location": [ - { - "end_col": 42, - "end_line": 16, - "input_file": { - "filename": "autogen/starknet/storage_var/_thresholds_len/impl.cairo" - }, - "start_col": 31, - "start_line": 16 - }, - "While expanding the reference 'syscall_ptr' in:" - ], - "start_col": 37, - "start_line": 14 - }, - "While trying to update the implicit return value 'syscall_ptr' in:" - ], - "start_col": 19, - "start_line": 352 - } - }, - "554": { - "accessible_scopes": [ - "__main__", - "__main__._thresholds_len", - "__main__._thresholds_len.read" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 41, - "end_line": 7, - "input_file": { - "filename": "autogen/starknet/storage_var/_thresholds_len/decl.cairo" - }, - "parent_location": [ - { - "end_col": 36, - "end_line": 13, - "input_file": { - "filename": "autogen/starknet/storage_var/_thresholds_len/impl.cairo" - }, - "parent_location": [ - { - "end_col": 44, - "end_line": 17, - "input_file": { - "filename": "autogen/starknet/storage_var/_thresholds_len/impl.cairo" - }, - "start_col": 32, - "start_line": 17 - }, - "While expanding the reference 'pedersen_ptr' in:" - ], - "start_col": 30, - "start_line": 13 - }, - "While trying to update the implicit return value 'pedersen_ptr' in:" - ], - "start_col": 15, - "start_line": 7 - } - }, - "555": { - "accessible_scopes": [ - "__main__", - "__main__._thresholds_len", - "__main__._thresholds_len.read" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 58, - "end_line": 7, - "input_file": { - "filename": "autogen/starknet/storage_var/_thresholds_len/decl.cairo" - }, - "parent_location": [ - { - "end_col": 36, - "end_line": 13, - "input_file": { - "filename": "autogen/starknet/storage_var/_thresholds_len/impl.cairo" - }, - "parent_location": [ - { - "end_col": 50, - "end_line": 18, - "input_file": { - "filename": "autogen/starknet/storage_var/_thresholds_len/impl.cairo" - }, - "start_col": 35, - "start_line": 18 - }, - "While expanding the reference 'range_check_ptr' in:" - ], - "start_col": 30, - "start_line": 13 - }, - "While trying to update the implicit return value 'range_check_ptr' in:" - ], - "start_col": 43, - "start_line": 7 - } - }, - "556": { - "accessible_scopes": [ - "__main__", - "__main__._thresholds_len", - "__main__._thresholds_len.read" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 33, - "end_line": 14, - "input_file": { - "filename": "autogen/starknet/storage_var/_thresholds_len/impl.cairo" - }, - "parent_location": [ - { - "end_col": 64, - "end_line": 19, - "input_file": { - "filename": "autogen/starknet/storage_var/_thresholds_len/impl.cairo" - }, - "start_col": 45, - "start_line": 19 - }, - "While expanding the reference '__storage_var_temp0' in:" - ], - "start_col": 14, - "start_line": 14 - } - }, - "557": { - "accessible_scopes": [ - "__main__", - "__main__._thresholds_len", - "__main__._thresholds_len.read" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 55, - "end_line": 20, - "input_file": { - "filename": "autogen/starknet/storage_var/_thresholds_len/impl.cairo" - }, - "start_col": 9, - "start_line": 20 - } - }, - "558": { - "accessible_scopes": [ - "__main__", - "__main__._thresholds_len", - "__main__._thresholds_len.write" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 62, - "end_line": 23, - "input_file": { - "filename": "autogen/starknet/storage_var/_thresholds_len/impl.cairo" - }, - "parent_location": [ - { - "end_col": 41, - "end_line": 7, - "input_file": { - "filename": "autogen/starknet/storage_var/_thresholds_len/decl.cairo" - }, - "parent_location": [ - { - "end_col": 36, - "end_line": 24, - "input_file": { - "filename": "autogen/starknet/storage_var/_thresholds_len/impl.cairo" - }, - "start_col": 30, - "start_line": 24 - }, - "While trying to retrieve the implicit argument 'pedersen_ptr' in:" - ], - "start_col": 15, - "start_line": 7 - }, - "While expanding the reference 'pedersen_ptr' in:" - ], - "start_col": 36, - "start_line": 23 - } - }, - "559": { - "accessible_scopes": [ - "__main__", - "__main__._thresholds_len", - "__main__._thresholds_len.write" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 79, - "end_line": 23, - "input_file": { - "filename": "autogen/starknet/storage_var/_thresholds_len/impl.cairo" - }, - "parent_location": [ - { - "end_col": 58, - "end_line": 7, - "input_file": { - "filename": "autogen/starknet/storage_var/_thresholds_len/decl.cairo" - }, - "parent_location": [ - { - "end_col": 36, - "end_line": 24, - "input_file": { - "filename": "autogen/starknet/storage_var/_thresholds_len/impl.cairo" - }, - "start_col": 30, - "start_line": 24 - }, - "While trying to retrieve the implicit argument 'range_check_ptr' in:" - ], - "start_col": 43, - "start_line": 7 - }, - "While expanding the reference 'range_check_ptr' in:" - ], - "start_col": 64, - "start_line": 23 - } - }, - "560": { - "accessible_scopes": [ - "__main__", - "__main__._thresholds_len", - "__main__._thresholds_len.write" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 36, - "end_line": 24, - "input_file": { - "filename": "autogen/starknet/storage_var/_thresholds_len/impl.cairo" - }, - "start_col": 30, - "start_line": 24 - } - }, - "562": { - "accessible_scopes": [ - "__main__", - "__main__._thresholds_len", - "__main__._thresholds_len.write" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 34, - "end_line": 23, - "input_file": { - "filename": "autogen/starknet/storage_var/_thresholds_len/impl.cairo" - }, - "parent_location": [ - { - "end_col": 38, - "end_line": 370, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/starknet/common/syscalls.cairo" - }, - "parent_location": [ - { - "end_col": 80, - "end_line": 25, - "input_file": { - "filename": "autogen/starknet/storage_var/_thresholds_len/impl.cairo" - }, - "start_col": 9, - "start_line": 25 - }, - "While trying to retrieve the implicit argument 'syscall_ptr' in:" - ], - "start_col": 20, - "start_line": 370 - }, - "While expanding the reference 'syscall_ptr' in:" - ], - "start_col": 16, - "start_line": 23 - } - }, - "563": { - "accessible_scopes": [ - "__main__", - "__main__._thresholds_len", - "__main__._thresholds_len.write" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 26, - "end_line": 24, - "input_file": { - "filename": "autogen/starknet/storage_var/_thresholds_len/impl.cairo" - }, - "parent_location": [ - { - "end_col": 43, - "end_line": 25, - "input_file": { - "filename": "autogen/starknet/storage_var/_thresholds_len/impl.cairo" - }, - "start_col": 31, - "start_line": 25 - }, - "While expanding the reference 'storage_addr' in:" - ], - "start_col": 14, - "start_line": 24 - } - }, - "564": { - "accessible_scopes": [ - "__main__", - "__main__._thresholds_len", - "__main__._thresholds_len.write" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 79, - "end_line": 25, - "input_file": { - "filename": "autogen/starknet/storage_var/_thresholds_len/impl.cairo" - }, - "start_col": 55, - "start_line": 25 - } - }, - "565": { - "accessible_scopes": [ - "__main__", - "__main__._thresholds_len", - "__main__._thresholds_len.write" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 80, - "end_line": 25, - "input_file": { - "filename": "autogen/starknet/storage_var/_thresholds_len/impl.cairo" - }, - "start_col": 9, - "start_line": 25 - } - }, - "567": { - "accessible_scopes": [ - "__main__", - "__main__._thresholds_len", - "__main__._thresholds_len.write" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 41, - "end_line": 7, - "input_file": { - "filename": "autogen/starknet/storage_var/_thresholds_len/decl.cairo" - }, - "parent_location": [ - { - "end_col": 36, - "end_line": 24, - "input_file": { - "filename": "autogen/starknet/storage_var/_thresholds_len/impl.cairo" - }, - "parent_location": [ - { - "end_col": 62, - "end_line": 19, - "input_file": { - "filename": "autogen/starknet/storage_var/_thresholds_len/decl.cairo" - }, - "parent_location": [ - { - "end_col": 19, - "end_line": 26, - "input_file": { - "filename": "autogen/starknet/storage_var/_thresholds_len/impl.cairo" - }, - "start_col": 9, - "start_line": 26 - }, - "While trying to retrieve the implicit argument 'pedersen_ptr' in:" - ], - "start_col": 36, - "start_line": 19 - }, - "While expanding the reference 'pedersen_ptr' in:" - ], - "start_col": 30, - "start_line": 24 - }, - "While trying to update the implicit return value 'pedersen_ptr' in:" - ], - "start_col": 15, - "start_line": 7 - } - }, - "568": { - "accessible_scopes": [ - "__main__", - "__main__._thresholds_len", - "__main__._thresholds_len.write" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 58, - "end_line": 7, - "input_file": { - "filename": "autogen/starknet/storage_var/_thresholds_len/decl.cairo" - }, - "parent_location": [ - { - "end_col": 36, - "end_line": 24, - "input_file": { - "filename": "autogen/starknet/storage_var/_thresholds_len/impl.cairo" - }, - "parent_location": [ - { - "end_col": 79, - "end_line": 19, - "input_file": { - "filename": "autogen/starknet/storage_var/_thresholds_len/decl.cairo" - }, - "parent_location": [ - { - "end_col": 19, - "end_line": 26, - "input_file": { - "filename": "autogen/starknet/storage_var/_thresholds_len/impl.cairo" - }, - "start_col": 9, - "start_line": 26 - }, - "While trying to retrieve the implicit argument 'range_check_ptr' in:" - ], - "start_col": 64, - "start_line": 19 - }, - "While expanding the reference 'range_check_ptr' in:" - ], - "start_col": 30, - "start_line": 24 - }, - "While trying to update the implicit return value 'range_check_ptr' in:" - ], - "start_col": 43, - "start_line": 7 - } - }, - "569": { - "accessible_scopes": [ - "__main__", - "__main__._thresholds_len", - "__main__._thresholds_len.write" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 19, - "end_line": 26, - "input_file": { - "filename": "autogen/starknet/storage_var/_thresholds_len/impl.cairo" - }, - "start_col": 9, - "start_line": 26 - } - }, - "570": { - "accessible_scopes": [ - "__main__", - "__main__._thresholds", - "__main__._thresholds.addr" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 41, - "end_line": 7, - "input_file": { - "filename": "autogen/starknet/storage_var/_thresholds/impl.cairo" - }, - "parent_location": [ - { - "end_col": 48, - "end_line": 9, - "input_file": { - "filename": "autogen/starknet/storage_var/_thresholds/impl.cairo" - }, - "start_col": 36, - "start_line": 9 - }, - "While expanding the reference 'pedersen_ptr' in:" - ], - "start_col": 15, - "start_line": 7 - } - }, - "571": { - "accessible_scopes": [ - "__main__", - "__main__._thresholds", - "__main__._thresholds.addr" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 94, - "end_line": 8, - "input_file": { - "filename": "autogen/starknet/storage_var/_thresholds/impl.cairo" - }, - "parent_location": [ - { - "end_col": 53, - "end_line": 9, - "input_file": { - "filename": "autogen/starknet/storage_var/_thresholds/impl.cairo" - }, - "start_col": 50, - "start_line": 9 - }, - "While expanding the reference 'res' in:" - ], - "start_col": 19, - "start_line": 8 - } - }, - "573": { - "accessible_scopes": [ - "__main__", - "__main__._thresholds", - "__main__._thresholds.addr" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 77, - "end_line": 9, - "input_file": { - "filename": "autogen/starknet/storage_var/_thresholds/impl.cairo" - }, - "start_col": 55, - "start_line": 9 - } - }, - "574": { - "accessible_scopes": [ - "__main__", - "__main__._thresholds", - "__main__._thresholds.addr" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 78, - "end_line": 9, - "input_file": { - "filename": "autogen/starknet/storage_var/_thresholds/impl.cairo" - }, - "start_col": 21, - "start_line": 9 - } - }, - "576": { - "accessible_scopes": [ - "__main__", - "__main__._thresholds", - "__main__._thresholds.addr" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 58, - "end_line": 7, - "input_file": { - "filename": "autogen/starknet/storage_var/_thresholds/impl.cairo" - }, - "parent_location": [ - { - "end_col": 39, - "end_line": 12, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/starknet/common/storage.cairo" - }, - "parent_location": [ - { - "end_col": 48, - "end_line": 10, - "input_file": { - "filename": "autogen/starknet/storage_var/_thresholds/impl.cairo" - }, - "start_col": 21, - "start_line": 10 - }, - "While trying to retrieve the implicit argument 'range_check_ptr' in:" - ], - "start_col": 24, - "start_line": 12 - }, - "While expanding the reference 'range_check_ptr' in:" - ], - "start_col": 43, - "start_line": 7 - } - }, - "577": { - "accessible_scopes": [ - "__main__", - "__main__._thresholds", - "__main__._thresholds.addr" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 17, - "end_line": 9, - "input_file": { - "filename": "autogen/starknet/storage_var/_thresholds/impl.cairo" - }, - "parent_location": [ - { - "end_col": 47, - "end_line": 10, - "input_file": { - "filename": "autogen/starknet/storage_var/_thresholds/impl.cairo" - }, - "start_col": 44, - "start_line": 10 - }, - "While expanding the reference 'res' in:" - ], - "start_col": 14, - "start_line": 9 - } - }, - "578": { - "accessible_scopes": [ - "__main__", - "__main__._thresholds", - "__main__._thresholds.addr" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 48, - "end_line": 10, - "input_file": { - "filename": "autogen/starknet/storage_var/_thresholds/impl.cairo" - }, - "start_col": 21, - "start_line": 10 - } - }, - "580": { - "accessible_scopes": [ - "__main__", - "__main__._thresholds", - "__main__._thresholds.addr" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 48, - "end_line": 9, - "input_file": { - "filename": "autogen/starknet/storage_var/_thresholds/impl.cairo" - }, - "parent_location": [ - { - "end_col": 41, - "end_line": 7, - "input_file": { - "filename": "autogen/starknet/storage_var/_thresholds/decl.cairo" - }, - "parent_location": [ - { - "end_col": 26, - "end_line": 11, - "input_file": { - "filename": "autogen/starknet/storage_var/_thresholds/impl.cairo" - }, - "start_col": 9, - "start_line": 11 - }, - "While trying to retrieve the implicit argument 'pedersen_ptr' in:" - ], - "start_col": 15, - "start_line": 7 - }, - "While expanding the reference 'pedersen_ptr' in:" - ], - "start_col": 36, - "start_line": 9 - } - }, - "581": { - "accessible_scopes": [ - "__main__", - "__main__._thresholds", - "__main__._thresholds.addr" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 39, - "end_line": 12, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/starknet/common/storage.cairo" - }, - "parent_location": [ - { - "end_col": 48, - "end_line": 10, - "input_file": { - "filename": "autogen/starknet/storage_var/_thresholds/impl.cairo" - }, - "parent_location": [ - { - "end_col": 58, - "end_line": 7, - "input_file": { - "filename": "autogen/starknet/storage_var/_thresholds/decl.cairo" - }, - "parent_location": [ - { - "end_col": 26, - "end_line": 11, - "input_file": { - "filename": "autogen/starknet/storage_var/_thresholds/impl.cairo" - }, - "start_col": 9, - "start_line": 11 - }, - "While trying to retrieve the implicit argument 'range_check_ptr' in:" - ], - "start_col": 43, - "start_line": 7 - }, - "While expanding the reference 'range_check_ptr' in:" - ], - "start_col": 21, - "start_line": 10 - }, - "While trying to update the implicit return value 'range_check_ptr' in:" - ], - "start_col": 24, - "start_line": 12 - } - }, - "582": { - "accessible_scopes": [ - "__main__", - "__main__._thresholds", - "__main__._thresholds.addr" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 17, - "end_line": 10, - "input_file": { - "filename": "autogen/starknet/storage_var/_thresholds/impl.cairo" - }, - "parent_location": [ - { - "end_col": 24, - "end_line": 11, - "input_file": { - "filename": "autogen/starknet/storage_var/_thresholds/impl.cairo" - }, - "start_col": 21, - "start_line": 11 - }, - "While expanding the reference 'res' in:" - ], - "start_col": 14, - "start_line": 10 - } - }, - "583": { - "accessible_scopes": [ - "__main__", - "__main__._thresholds", - "__main__._thresholds.addr" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 26, - "end_line": 11, - "input_file": { - "filename": "autogen/starknet/storage_var/_thresholds/impl.cairo" - }, - "start_col": 9, - "start_line": 11 - } - }, - "584": { - "accessible_scopes": [ - "__main__", - "__main__._thresholds", - "__main__._thresholds.read" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 61, - "end_line": 14, - "input_file": { - "filename": "autogen/starknet/storage_var/_thresholds/impl.cairo" - }, - "parent_location": [ - { - "end_col": 41, - "end_line": 7, - "input_file": { - "filename": "autogen/starknet/storage_var/_thresholds/decl.cairo" - }, - "parent_location": [ - { - "end_col": 41, - "end_line": 17, - "input_file": { - "filename": "autogen/starknet/storage_var/_thresholds/impl.cairo" - }, - "start_col": 30, - "start_line": 17 - }, - "While trying to retrieve the implicit argument 'pedersen_ptr' in:" - ], - "start_col": 15, - "start_line": 7 - }, - "While expanding the reference 'pedersen_ptr' in:" - ], - "start_col": 35, - "start_line": 14 - } - }, - "585": { - "accessible_scopes": [ - "__main__", - "__main__._thresholds", - "__main__._thresholds.read" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 78, - "end_line": 14, - "input_file": { - "filename": "autogen/starknet/storage_var/_thresholds/impl.cairo" - }, - "parent_location": [ - { - "end_col": 58, - "end_line": 7, - "input_file": { - "filename": "autogen/starknet/storage_var/_thresholds/decl.cairo" - }, - "parent_location": [ - { - "end_col": 41, - "end_line": 17, - "input_file": { - "filename": "autogen/starknet/storage_var/_thresholds/impl.cairo" - }, - "start_col": 30, - "start_line": 17 - }, - "While trying to retrieve the implicit argument 'range_check_ptr' in:" - ], - "start_col": 43, - "start_line": 7 - }, - "While expanding the reference 'range_check_ptr' in:" - ], - "start_col": 63, - "start_line": 14 - } - }, - "586": { - "accessible_scopes": [ - "__main__", - "__main__._thresholds", - "__main__._thresholds.read" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 91, - "end_line": 14, - "input_file": { - "filename": "autogen/starknet/storage_var/_thresholds/impl.cairo" - }, - "parent_location": [ - { - "end_col": 40, - "end_line": 17, - "input_file": { - "filename": "autogen/starknet/storage_var/_thresholds/impl.cairo" - }, - "start_col": 35, - "start_line": 17 - }, - "While expanding the reference 'index' in:" - ], - "start_col": 80, - "start_line": 14 - } - }, - "587": { - "accessible_scopes": [ - "__main__", - "__main__._thresholds", - "__main__._thresholds.read" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 41, - "end_line": 17, - "input_file": { - "filename": "autogen/starknet/storage_var/_thresholds/impl.cairo" - }, - "start_col": 30, - "start_line": 17 - } - }, - "589": { - "accessible_scopes": [ - "__main__", - "__main__._thresholds", - "__main__._thresholds.read" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 33, - "end_line": 14, - "input_file": { - "filename": "autogen/starknet/storage_var/_thresholds/impl.cairo" - }, - "parent_location": [ - { - "end_col": 37, - "end_line": 352, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/starknet/common/syscalls.cairo" - }, - "parent_location": [ - { - "end_col": 75, - "end_line": 18, - "input_file": { - "filename": "autogen/starknet/storage_var/_thresholds/impl.cairo" - }, - "start_col": 37, - "start_line": 18 - }, - "While trying to retrieve the implicit argument 'syscall_ptr' in:" - ], - "start_col": 19, - "start_line": 352 - }, - "While expanding the reference 'syscall_ptr' in:" - ], - "start_col": 15, - "start_line": 14 - } - }, - "590": { - "accessible_scopes": [ - "__main__", - "__main__._thresholds", - "__main__._thresholds.read" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 26, - "end_line": 17, - "input_file": { - "filename": "autogen/starknet/storage_var/_thresholds/impl.cairo" - }, - "parent_location": [ - { - "end_col": 70, - "end_line": 18, - "input_file": { - "filename": "autogen/starknet/storage_var/_thresholds/impl.cairo" - }, - "start_col": 58, - "start_line": 18 - }, - "While expanding the reference 'storage_addr' in:" - ], - "start_col": 14, - "start_line": 17 - } - }, - "591": { - "accessible_scopes": [ - "__main__", - "__main__._thresholds", - "__main__._thresholds.read" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 75, - "end_line": 18, - "input_file": { - "filename": "autogen/starknet/storage_var/_thresholds/impl.cairo" - }, - "start_col": 37, - "start_line": 18 - } - }, - "593": { - "accessible_scopes": [ - "__main__", - "__main__._thresholds", - "__main__._thresholds.read" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 37, - "end_line": 352, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/starknet/common/syscalls.cairo" - }, - "parent_location": [ - { - "end_col": 75, - "end_line": 18, - "input_file": { - "filename": "autogen/starknet/storage_var/_thresholds/impl.cairo" - }, - "parent_location": [ - { - "end_col": 42, - "end_line": 20, - "input_file": { - "filename": "autogen/starknet/storage_var/_thresholds/impl.cairo" - }, - "start_col": 31, - "start_line": 20 - }, - "While expanding the reference 'syscall_ptr' in:" - ], - "start_col": 37, - "start_line": 18 - }, - "While trying to update the implicit return value 'syscall_ptr' in:" - ], - "start_col": 19, - "start_line": 352 - } - }, - "594": { - "accessible_scopes": [ - "__main__", - "__main__._thresholds", - "__main__._thresholds.read" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 41, - "end_line": 7, - "input_file": { - "filename": "autogen/starknet/storage_var/_thresholds/decl.cairo" - }, - "parent_location": [ - { - "end_col": 41, - "end_line": 17, - "input_file": { - "filename": "autogen/starknet/storage_var/_thresholds/impl.cairo" - }, - "parent_location": [ - { - "end_col": 44, - "end_line": 21, - "input_file": { - "filename": "autogen/starknet/storage_var/_thresholds/impl.cairo" - }, - "start_col": 32, - "start_line": 21 - }, - "While expanding the reference 'pedersen_ptr' in:" - ], - "start_col": 30, - "start_line": 17 - }, - "While trying to update the implicit return value 'pedersen_ptr' in:" - ], - "start_col": 15, - "start_line": 7 - } - }, - "595": { - "accessible_scopes": [ - "__main__", - "__main__._thresholds", - "__main__._thresholds.read" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 58, - "end_line": 7, - "input_file": { - "filename": "autogen/starknet/storage_var/_thresholds/decl.cairo" - }, - "parent_location": [ - { - "end_col": 41, - "end_line": 17, - "input_file": { - "filename": "autogen/starknet/storage_var/_thresholds/impl.cairo" - }, - "parent_location": [ - { - "end_col": 50, - "end_line": 22, - "input_file": { - "filename": "autogen/starknet/storage_var/_thresholds/impl.cairo" - }, - "start_col": 35, - "start_line": 22 - }, - "While expanding the reference 'range_check_ptr' in:" - ], - "start_col": 30, - "start_line": 17 - }, - "While trying to update the implicit return value 'range_check_ptr' in:" - ], - "start_col": 43, - "start_line": 7 - } - }, - "596": { - "accessible_scopes": [ - "__main__", - "__main__._thresholds", - "__main__._thresholds.read" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 33, - "end_line": 18, - "input_file": { - "filename": "autogen/starknet/storage_var/_thresholds/impl.cairo" - }, - "parent_location": [ - { - "end_col": 64, - "end_line": 23, - "input_file": { - "filename": "autogen/starknet/storage_var/_thresholds/impl.cairo" - }, - "start_col": 45, - "start_line": 23 - }, - "While expanding the reference '__storage_var_temp0' in:" - ], - "start_col": 14, - "start_line": 18 - } - }, - "597": { - "accessible_scopes": [ - "__main__", - "__main__._thresholds", - "__main__._thresholds.read" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 55, - "end_line": 24, - "input_file": { - "filename": "autogen/starknet/storage_var/_thresholds/impl.cairo" - }, - "start_col": 9, - "start_line": 24 - } - }, - "598": { - "accessible_scopes": [ - "__main__", - "__main__._thresholds", - "__main__._thresholds.write" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 62, - "end_line": 27, - "input_file": { - "filename": "autogen/starknet/storage_var/_thresholds/impl.cairo" - }, - "parent_location": [ - { - "end_col": 41, - "end_line": 7, - "input_file": { - "filename": "autogen/starknet/storage_var/_thresholds/decl.cairo" - }, - "parent_location": [ - { - "end_col": 41, - "end_line": 30, - "input_file": { - "filename": "autogen/starknet/storage_var/_thresholds/impl.cairo" - }, - "start_col": 30, - "start_line": 30 - }, - "While trying to retrieve the implicit argument 'pedersen_ptr' in:" - ], - "start_col": 15, - "start_line": 7 - }, - "While expanding the reference 'pedersen_ptr' in:" - ], - "start_col": 36, - "start_line": 27 - } - }, - "599": { - "accessible_scopes": [ - "__main__", - "__main__._thresholds", - "__main__._thresholds.write" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 79, - "end_line": 27, - "input_file": { - "filename": "autogen/starknet/storage_var/_thresholds/impl.cairo" - }, - "parent_location": [ - { - "end_col": 58, - "end_line": 7, - "input_file": { - "filename": "autogen/starknet/storage_var/_thresholds/decl.cairo" - }, - "parent_location": [ - { - "end_col": 41, - "end_line": 30, - "input_file": { - "filename": "autogen/starknet/storage_var/_thresholds/impl.cairo" - }, - "start_col": 30, - "start_line": 30 - }, - "While trying to retrieve the implicit argument 'range_check_ptr' in:" - ], - "start_col": 43, - "start_line": 7 - }, - "While expanding the reference 'range_check_ptr' in:" - ], - "start_col": 64, - "start_line": 27 - } - }, - "600": { - "accessible_scopes": [ - "__main__", - "__main__._thresholds", - "__main__._thresholds.write" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 20, - "end_line": 28, - "input_file": { - "filename": "autogen/starknet/storage_var/_thresholds/impl.cairo" - }, - "parent_location": [ - { - "end_col": 40, - "end_line": 30, - "input_file": { - "filename": "autogen/starknet/storage_var/_thresholds/impl.cairo" - }, - "start_col": 35, - "start_line": 30 - }, - "While expanding the reference 'index' in:" - ], - "start_col": 9, - "start_line": 28 - } - }, - "601": { - "accessible_scopes": [ - "__main__", - "__main__._thresholds", - "__main__._thresholds.write" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 41, - "end_line": 30, - "input_file": { - "filename": "autogen/starknet/storage_var/_thresholds/impl.cairo" - }, - "start_col": 30, - "start_line": 30 - } - }, - "603": { - "accessible_scopes": [ - "__main__", - "__main__._thresholds", - "__main__._thresholds.write" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 34, - "end_line": 27, - "input_file": { - "filename": "autogen/starknet/storage_var/_thresholds/impl.cairo" - }, - "parent_location": [ - { - "end_col": 38, - "end_line": 370, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/starknet/common/syscalls.cairo" - }, - "parent_location": [ - { - "end_col": 80, - "end_line": 31, - "input_file": { - "filename": "autogen/starknet/storage_var/_thresholds/impl.cairo" - }, - "start_col": 9, - "start_line": 31 - }, - "While trying to retrieve the implicit argument 'syscall_ptr' in:" - ], - "start_col": 20, - "start_line": 370 - }, - "While expanding the reference 'syscall_ptr' in:" - ], - "start_col": 16, - "start_line": 27 - } - }, - "604": { - "accessible_scopes": [ - "__main__", - "__main__._thresholds", - "__main__._thresholds.write" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 26, - "end_line": 30, - "input_file": { - "filename": "autogen/starknet/storage_var/_thresholds/impl.cairo" - }, - "parent_location": [ - { - "end_col": 43, - "end_line": 31, - "input_file": { - "filename": "autogen/starknet/storage_var/_thresholds/impl.cairo" - }, - "start_col": 31, - "start_line": 31 - }, - "While expanding the reference 'storage_addr' in:" - ], - "start_col": 14, - "start_line": 30 - } - }, - "605": { - "accessible_scopes": [ - "__main__", - "__main__._thresholds", - "__main__._thresholds.write" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 79, - "end_line": 31, - "input_file": { - "filename": "autogen/starknet/storage_var/_thresholds/impl.cairo" - }, - "start_col": 55, - "start_line": 31 - } - }, - "606": { - "accessible_scopes": [ - "__main__", - "__main__._thresholds", - "__main__._thresholds.write" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 80, - "end_line": 31, - "input_file": { - "filename": "autogen/starknet/storage_var/_thresholds/impl.cairo" - }, - "start_col": 9, - "start_line": 31 - } - }, - "608": { - "accessible_scopes": [ - "__main__", - "__main__._thresholds", - "__main__._thresholds.write" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 41, - "end_line": 7, - "input_file": { - "filename": "autogen/starknet/storage_var/_thresholds/decl.cairo" - }, - "parent_location": [ - { - "end_col": 41, - "end_line": 30, - "input_file": { - "filename": "autogen/starknet/storage_var/_thresholds/impl.cairo" - }, - "parent_location": [ - { - "end_col": 62, - "end_line": 21, - "input_file": { - "filename": "autogen/starknet/storage_var/_thresholds/decl.cairo" - }, - "parent_location": [ - { - "end_col": 19, - "end_line": 32, - "input_file": { - "filename": "autogen/starknet/storage_var/_thresholds/impl.cairo" - }, - "start_col": 9, - "start_line": 32 - }, - "While trying to retrieve the implicit argument 'pedersen_ptr' in:" - ], - "start_col": 36, - "start_line": 21 - }, - "While expanding the reference 'pedersen_ptr' in:" - ], - "start_col": 30, - "start_line": 30 - }, - "While trying to update the implicit return value 'pedersen_ptr' in:" - ], - "start_col": 15, - "start_line": 7 - } - }, - "609": { - "accessible_scopes": [ - "__main__", - "__main__._thresholds", - "__main__._thresholds.write" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 58, - "end_line": 7, - "input_file": { - "filename": "autogen/starknet/storage_var/_thresholds/decl.cairo" - }, - "parent_location": [ - { - "end_col": 41, - "end_line": 30, - "input_file": { - "filename": "autogen/starknet/storage_var/_thresholds/impl.cairo" - }, - "parent_location": [ - { - "end_col": 79, - "end_line": 21, - "input_file": { - "filename": "autogen/starknet/storage_var/_thresholds/decl.cairo" - }, - "parent_location": [ - { - "end_col": 19, - "end_line": 32, - "input_file": { - "filename": "autogen/starknet/storage_var/_thresholds/impl.cairo" - }, - "start_col": 9, - "start_line": 32 - }, - "While trying to retrieve the implicit argument 'range_check_ptr' in:" - ], - "start_col": 64, - "start_line": 21 - }, - "While expanding the reference 'range_check_ptr' in:" - ], - "start_col": 30, - "start_line": 30 - }, - "While trying to update the implicit return value 'range_check_ptr' in:" - ], - "start_col": 43, - "start_line": 7 - } - }, - "610": { - "accessible_scopes": [ - "__main__", - "__main__._thresholds", - "__main__._thresholds.write" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 19, - "end_line": 32, - "input_file": { - "filename": "autogen/starknet/storage_var/_thresholds/impl.cairo" - }, - "start_col": 9, - "start_line": 32 - } - }, - "611": { - "accessible_scopes": [ - "__main__", - "__main__", - "__main__.getOwner" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 33, - "end_line": 25, - "input_file": { - "filename": "src/renderers/DustyPilotRenderer.cairo" - }, - "parent_location": [ - { - "end_col": 34, - "end_line": 56, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/access/ownable/library.cairo" - }, - "parent_location": [ - { - "end_col": 27, - "end_line": 26, - "input_file": { - "filename": "src/renderers/DustyPilotRenderer.cairo" - }, - "start_col": 12, - "start_line": 26 - }, - "While trying to retrieve the implicit argument 'syscall_ptr' in:" - ], - "start_col": 16, - "start_line": 56 - }, - "While expanding the reference 'syscall_ptr' in:" - ], - "start_col": 15, - "start_line": 25 - } - }, - "612": { - "accessible_scopes": [ - "__main__", - "__main__", - "__main__.getOwner" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 61, - "end_line": 25, - "input_file": { - "filename": "src/renderers/DustyPilotRenderer.cairo" - }, - "parent_location": [ - { - "end_col": 62, - "end_line": 56, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/access/ownable/library.cairo" - }, - "parent_location": [ - { - "end_col": 27, - "end_line": 26, - "input_file": { - "filename": "src/renderers/DustyPilotRenderer.cairo" - }, - "start_col": 12, - "start_line": 26 - }, - "While trying to retrieve the implicit argument 'pedersen_ptr' in:" - ], - "start_col": 36, - "start_line": 56 - }, - "While expanding the reference 'pedersen_ptr' in:" - ], - "start_col": 35, - "start_line": 25 - } - }, - "613": { - "accessible_scopes": [ - "__main__", - "__main__", - "__main__.getOwner" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 78, - "end_line": 25, - "input_file": { - "filename": "src/renderers/DustyPilotRenderer.cairo" - }, - "parent_location": [ - { - "end_col": 79, - "end_line": 56, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/access/ownable/library.cairo" - }, - "parent_location": [ - { - "end_col": 27, - "end_line": 26, - "input_file": { - "filename": "src/renderers/DustyPilotRenderer.cairo" - }, - "start_col": 12, - "start_line": 26 - }, - "While trying to retrieve the implicit argument 'range_check_ptr' in:" - ], - "start_col": 64, - "start_line": 56 - }, - "While expanding the reference 'range_check_ptr' in:" - ], - "start_col": 63, - "start_line": 25 - } - }, - "614": { - "accessible_scopes": [ - "__main__", - "__main__", - "__main__.getOwner" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 27, - "end_line": 26, - "input_file": { - "filename": "src/renderers/DustyPilotRenderer.cairo" - }, - "start_col": 12, - "start_line": 26 - } - }, - "616": { - "accessible_scopes": [ - "__main__", - "__main__", - "__main__.getOwner" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 28, - "end_line": 26, - "input_file": { - "filename": "src/renderers/DustyPilotRenderer.cairo" - }, - "start_col": 5, - "start_line": 26 - } - }, - "617": { - "accessible_scopes": [ - "__main__", - "__main__", - "__wrappers__", - "__wrappers__.getOwner_encode_return" - ], - "flow_tracking_data": null, - "hints": [ - { - "location": { - "end_col": 38, - "end_line": 3, - "input_file": { - "filename": "autogen/starknet/external/return/getOwner/b6df8dec790559c2c5b7a358af946adc3119f253addccded3beb4074a973d539.cairo" - }, - "parent_location": [ - { - "end_col": 14, - "end_line": 25, - "input_file": { - "filename": "src/renderers/DustyPilotRenderer.cairo" - }, - "start_col": 6, - "start_line": 25 - }, - "While handling return value of" - ], - "start_col": 5, - "start_line": 3 - }, - "n_prefix_newlines": 0 - } - ], - "inst": { - "end_col": 18, - "end_line": 4, - "input_file": { - "filename": "autogen/starknet/external/return/getOwner/b6df8dec790559c2c5b7a358af946adc3119f253addccded3beb4074a973d539.cairo" - }, - "parent_location": [ - { - "end_col": 14, - "end_line": 25, - "input_file": { - "filename": "src/renderers/DustyPilotRenderer.cairo" - }, - "start_col": 6, - "start_line": 25 - }, - "While handling return value of" - ], - "start_col": 5, - "start_line": 4 - } - }, - "619": { - "accessible_scopes": [ - "__main__", - "__main__", - "__wrappers__", - "__wrappers__.getOwner_encode_return" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 47, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/arg_processor/b02ddc13e06346668d980e18c0fec90f17036d195bf95d21ac18e846a0a129f3.cairo" - }, - "parent_location": [ - { - "end_col": 97, - "end_line": 25, - "input_file": { - "filename": "src/renderers/DustyPilotRenderer.cairo" - }, - "start_col": 86, - "start_line": 25 - }, - "While handling return value 'owner'" - ], - "start_col": 1, - "start_line": 1 - } - }, - "620": { - "accessible_scopes": [ - "__main__", - "__main__", - "__wrappers__", - "__wrappers__.getOwner_encode_return" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 48, - "end_line": 2, - "input_file": { - "filename": "autogen/starknet/arg_processor/b02ddc13e06346668d980e18c0fec90f17036d195bf95d21ac18e846a0a129f3.cairo" - }, - "parent_location": [ - { - "end_col": 97, - "end_line": 25, - "input_file": { - "filename": "src/renderers/DustyPilotRenderer.cairo" - }, - "parent_location": [ - { - "end_col": 36, - "end_line": 11, - "input_file": { - "filename": "autogen/starknet/external/return/getOwner/b6df8dec790559c2c5b7a358af946adc3119f253addccded3beb4074a973d539.cairo" - }, - "parent_location": [ - { - "end_col": 14, - "end_line": 25, - "input_file": { - "filename": "src/renderers/DustyPilotRenderer.cairo" - }, - "start_col": 6, - "start_line": 25 - }, - "While handling return value of" - ], - "start_col": 18, - "start_line": 11 - }, - "While expanding the reference '__return_value_ptr' in:" - ], - "start_col": 86, - "start_line": 25 - }, - "While handling return value 'owner'" - ], - "start_col": 26, - "start_line": 2 - } - }, - "622": { - "accessible_scopes": [ - "__main__", - "__main__", - "__wrappers__", - "__wrappers__.getOwner_encode_return" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 70, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/external/return/getOwner/b6df8dec790559c2c5b7a358af946adc3119f253addccded3beb4074a973d539.cairo" - }, - "parent_location": [ - { - "end_col": 14, - "end_line": 25, - "input_file": { - "filename": "src/renderers/DustyPilotRenderer.cairo" - }, - "parent_location": [ - { - "end_col": 40, - "end_line": 10, - "input_file": { - "filename": "autogen/starknet/external/return/getOwner/b6df8dec790559c2c5b7a358af946adc3119f253addccded3beb4074a973d539.cairo" - }, - "parent_location": [ - { - "end_col": 14, - "end_line": 25, - "input_file": { - "filename": "src/renderers/DustyPilotRenderer.cairo" - }, - "start_col": 6, - "start_line": 25 - }, - "While handling return value of" - ], - "start_col": 25, - "start_line": 10 - }, - "While expanding the reference 'range_check_ptr' in:" - ], - "start_col": 6, - "start_line": 25 - }, - "While handling return value of" - ], - "start_col": 55, - "start_line": 1 - } - }, - "623": { - "accessible_scopes": [ - "__main__", - "__main__", - "__wrappers__", - "__wrappers__.getOwner_encode_return" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 63, - "end_line": 11, - "input_file": { - "filename": "autogen/starknet/external/return/getOwner/b6df8dec790559c2c5b7a358af946adc3119f253addccded3beb4074a973d539.cairo" - }, - "parent_location": [ - { - "end_col": 14, - "end_line": 25, - "input_file": { - "filename": "src/renderers/DustyPilotRenderer.cairo" - }, - "start_col": 6, - "start_line": 25 - }, - "While handling return value of" - ], - "start_col": 18, - "start_line": 11 - } - }, - "624": { - "accessible_scopes": [ - "__main__", - "__main__", - "__wrappers__", - "__wrappers__.getOwner_encode_return" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 35, - "end_line": 5, - "input_file": { - "filename": "autogen/starknet/external/return/getOwner/b6df8dec790559c2c5b7a358af946adc3119f253addccded3beb4074a973d539.cairo" - }, - "parent_location": [ - { - "end_col": 14, - "end_line": 25, - "input_file": { - "filename": "src/renderers/DustyPilotRenderer.cairo" - }, - "parent_location": [ - { - "end_col": 38, - "end_line": 12, - "input_file": { - "filename": "autogen/starknet/external/return/getOwner/b6df8dec790559c2c5b7a358af946adc3119f253addccded3beb4074a973d539.cairo" - }, - "parent_location": [ - { - "end_col": 14, - "end_line": 25, - "input_file": { - "filename": "src/renderers/DustyPilotRenderer.cairo" - }, - "start_col": 6, - "start_line": 25 - }, - "While handling return value of" - ], - "start_col": 14, - "start_line": 12 - }, - "While expanding the reference '__return_value_ptr_start' in:" - ], - "start_col": 6, - "start_line": 25 - }, - "While handling return value of" - ], - "start_col": 11, - "start_line": 5 - } - }, - "625": { - "accessible_scopes": [ - "__main__", - "__main__", - "__wrappers__", - "__wrappers__.getOwner_encode_return" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 40, - "end_line": 12, - "input_file": { - "filename": "autogen/starknet/external/return/getOwner/b6df8dec790559c2c5b7a358af946adc3119f253addccded3beb4074a973d539.cairo" - }, - "parent_location": [ - { - "end_col": 14, - "end_line": 25, - "input_file": { - "filename": "src/renderers/DustyPilotRenderer.cairo" - }, - "start_col": 6, - "start_line": 25 - }, - "While handling return value of" - ], - "start_col": 5, - "start_line": 9 - } - }, - "626": { - "accessible_scopes": [ - "__main__", - "__main__", - "__wrappers__", - "__wrappers__.getOwner" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 58, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/arg_processor/01cba52f8515996bb9d7070bde81ff39281d096d7024a558efcba6e1fd2402cf.cairo" - }, - "parent_location": [ - { - "end_col": 14, - "end_line": 25, - "input_file": { - "filename": "src/renderers/DustyPilotRenderer.cairo" - }, - "start_col": 6, - "start_line": 25 - }, - "While handling calldata of" - ], - "start_col": 1, - "start_line": 1 - } - }, - "627": { - "accessible_scopes": [ - "__main__", - "__main__", - "__wrappers__", - "__wrappers__.getOwner" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 64, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/external/getOwner/b2c52ca2d2a8fc8791a983086d8716c5eacd0c3d62934914d2286f84b98ff4cb.cairo" - }, - "parent_location": [ - { - "end_col": 33, - "end_line": 25, - "input_file": { - "filename": "src/renderers/DustyPilotRenderer.cairo" - }, - "parent_location": [ - { - "end_col": 55, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/external/getOwner/50eef2d703602d24c42df800878bfabc425ad0069960e1dc159c4d3bf27e35f6.cairo" - }, - "parent_location": [ - { - "end_col": 14, - "end_line": 25, - "input_file": { - "filename": "src/renderers/DustyPilotRenderer.cairo" - }, - "start_col": 6, - "start_line": 25 - }, - "While constructing the external wrapper for:" - ], - "start_col": 44, - "start_line": 1 - }, - "While expanding the reference 'syscall_ptr' in:" - ], - "start_col": 15, - "start_line": 25 - }, - "While constructing the external wrapper for:" - ], - "start_col": 19, - "start_line": 1 - } - }, - "628": { - "accessible_scopes": [ - "__main__", - "__main__", - "__wrappers__", - "__wrappers__.getOwner" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 110, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/external/getOwner/9684a85e93c782014ca14293edea4eb2502039a5a7b6538ecd39c56faaf12529.cairo" - }, - "parent_location": [ - { - "end_col": 61, - "end_line": 25, - "input_file": { - "filename": "src/renderers/DustyPilotRenderer.cairo" - }, - "parent_location": [ - { - "end_col": 82, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/external/getOwner/50eef2d703602d24c42df800878bfabc425ad0069960e1dc159c4d3bf27e35f6.cairo" - }, - "parent_location": [ - { - "end_col": 14, - "end_line": 25, - "input_file": { - "filename": "src/renderers/DustyPilotRenderer.cairo" - }, - "start_col": 6, - "start_line": 25 - }, - "While constructing the external wrapper for:" - ], - "start_col": 70, - "start_line": 1 - }, - "While expanding the reference 'pedersen_ptr' in:" - ], - "start_col": 35, - "start_line": 25 - }, - "While constructing the external wrapper for:" - ], - "start_col": 20, - "start_line": 1 - } - }, - "629": { - "accessible_scopes": [ - "__main__", - "__main__", - "__wrappers__", - "__wrappers__.getOwner" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 67, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/external/getOwner/741ea357d6336b0bed7bf0472425acd0311d543883b803388880e60a232040c7.cairo" - }, - "parent_location": [ - { - "end_col": 78, - "end_line": 25, - "input_file": { - "filename": "src/renderers/DustyPilotRenderer.cairo" - }, - "parent_location": [ - { - "end_col": 115, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/external/getOwner/50eef2d703602d24c42df800878bfabc425ad0069960e1dc159c4d3bf27e35f6.cairo" - }, - "parent_location": [ - { - "end_col": 14, - "end_line": 25, - "input_file": { - "filename": "src/renderers/DustyPilotRenderer.cairo" - }, - "start_col": 6, - "start_line": 25 - }, - "While constructing the external wrapper for:" - ], - "start_col": 100, - "start_line": 1 - }, - "While expanding the reference 'range_check_ptr' in:" - ], - "start_col": 63, - "start_line": 25 - }, - "While constructing the external wrapper for:" - ], - "start_col": 23, - "start_line": 1 - } - }, - "630": { - "accessible_scopes": [ - "__main__", - "__main__", - "__wrappers__", - "__wrappers__.getOwner" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 14, - "end_line": 25, - "input_file": { - "filename": "src/renderers/DustyPilotRenderer.cairo" - }, - "start_col": 6, - "start_line": 25 - } - }, - "632": { - "accessible_scopes": [ - "__main__", - "__main__", - "__wrappers__", - "__wrappers__.getOwner" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 115, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/external/getOwner/50eef2d703602d24c42df800878bfabc425ad0069960e1dc159c4d3bf27e35f6.cairo" - }, - "parent_location": [ - { - "end_col": 14, - "end_line": 25, - "input_file": { - "filename": "src/renderers/DustyPilotRenderer.cairo" - }, - "parent_location": [ - { - "end_col": 97, - "end_line": 2, - "input_file": { - "filename": "autogen/starknet/external/getOwner/50eef2d703602d24c42df800878bfabc425ad0069960e1dc159c4d3bf27e35f6.cairo" - }, - "parent_location": [ - { - "end_col": 14, - "end_line": 25, - "input_file": { - "filename": "src/renderers/DustyPilotRenderer.cairo" - }, - "start_col": 6, - "start_line": 25 - }, - "While constructing the external wrapper for:" - ], - "start_col": 82, - "start_line": 2 - }, - "While expanding the reference 'range_check_ptr' in:" - ], - "start_col": 6, - "start_line": 25 - }, - "While constructing the external wrapper for:" - ], - "start_col": 100, - "start_line": 1 - } - }, - "633": { - "accessible_scopes": [ - "__main__", - "__main__", - "__wrappers__", - "__wrappers__.getOwner" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 98, - "end_line": 2, - "input_file": { - "filename": "autogen/starknet/external/getOwner/50eef2d703602d24c42df800878bfabc425ad0069960e1dc159c4d3bf27e35f6.cairo" - }, - "parent_location": [ - { - "end_col": 14, - "end_line": 25, - "input_file": { - "filename": "src/renderers/DustyPilotRenderer.cairo" - }, - "start_col": 6, - "start_line": 25 - }, - "While constructing the external wrapper for:" - ], - "start_col": 48, - "start_line": 2 - } - }, - "635": { - "accessible_scopes": [ - "__main__", - "__main__", - "__wrappers__", - "__wrappers__.getOwner" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 55, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/external/getOwner/50eef2d703602d24c42df800878bfabc425ad0069960e1dc159c4d3bf27e35f6.cairo" - }, - "parent_location": [ - { - "end_col": 14, - "end_line": 25, - "input_file": { - "filename": "src/renderers/DustyPilotRenderer.cairo" - }, - "parent_location": [ - { - "end_col": 20, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/external/getOwner/da17921a4e81c09e730800bbf23bfdbe5e9e6bfaedc59d80fbf62087fa43c27d.cairo" - }, - "parent_location": [ - { - "end_col": 14, - "end_line": 25, - "input_file": { - "filename": "src/renderers/DustyPilotRenderer.cairo" - }, - "start_col": 6, - "start_line": 25 - }, - "While constructing the external wrapper for:" - ], - "start_col": 9, - "start_line": 1 - }, - "While expanding the reference 'syscall_ptr' in:" - ], - "start_col": 6, - "start_line": 25 - }, - "While constructing the external wrapper for:" - ], - "start_col": 44, - "start_line": 1 - } - }, - "636": { - "accessible_scopes": [ - "__main__", - "__main__", - "__wrappers__", - "__wrappers__.getOwner" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 82, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/external/getOwner/50eef2d703602d24c42df800878bfabc425ad0069960e1dc159c4d3bf27e35f6.cairo" - }, - "parent_location": [ - { - "end_col": 14, - "end_line": 25, - "input_file": { - "filename": "src/renderers/DustyPilotRenderer.cairo" - }, - "parent_location": [ - { - "end_col": 33, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/external/getOwner/da17921a4e81c09e730800bbf23bfdbe5e9e6bfaedc59d80fbf62087fa43c27d.cairo" - }, - "parent_location": [ - { - "end_col": 14, - "end_line": 25, - "input_file": { - "filename": "src/renderers/DustyPilotRenderer.cairo" - }, - "start_col": 6, - "start_line": 25 - }, - "While constructing the external wrapper for:" - ], - "start_col": 21, - "start_line": 1 - }, - "While expanding the reference 'pedersen_ptr' in:" - ], - "start_col": 6, - "start_line": 25 - }, - "While constructing the external wrapper for:" - ], - "start_col": 70, - "start_line": 1 - } - }, - "637": { - "accessible_scopes": [ - "__main__", - "__main__", - "__wrappers__", - "__wrappers__.getOwner" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 21, - "end_line": 2, - "input_file": { - "filename": "autogen/starknet/external/getOwner/50eef2d703602d24c42df800878bfabc425ad0069960e1dc159c4d3bf27e35f6.cairo" - }, - "parent_location": [ - { - "end_col": 14, - "end_line": 25, - "input_file": { - "filename": "src/renderers/DustyPilotRenderer.cairo" - }, - "parent_location": [ - { - "end_col": 49, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/external/getOwner/da17921a4e81c09e730800bbf23bfdbe5e9e6bfaedc59d80fbf62087fa43c27d.cairo" - }, - "parent_location": [ - { - "end_col": 14, - "end_line": 25, - "input_file": { - "filename": "src/renderers/DustyPilotRenderer.cairo" - }, - "start_col": 6, - "start_line": 25 - }, - "While constructing the external wrapper for:" - ], - "start_col": 34, - "start_line": 1 - }, - "While expanding the reference 'range_check_ptr' in:" - ], - "start_col": 6, - "start_line": 25 - }, - "While constructing the external wrapper for:" - ], - "start_col": 6, - "start_line": 2 - } - }, - "638": { - "accessible_scopes": [ - "__main__", - "__main__", - "__wrappers__", - "__wrappers__.getOwner" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 35, - "end_line": 2, - "input_file": { - "filename": "autogen/starknet/external/getOwner/50eef2d703602d24c42df800878bfabc425ad0069960e1dc159c4d3bf27e35f6.cairo" - }, - "parent_location": [ - { - "end_col": 14, - "end_line": 25, - "input_file": { - "filename": "src/renderers/DustyPilotRenderer.cairo" - }, - "parent_location": [ - { - "end_col": 62, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/external/getOwner/da17921a4e81c09e730800bbf23bfdbe5e9e6bfaedc59d80fbf62087fa43c27d.cairo" - }, - "parent_location": [ - { - "end_col": 14, - "end_line": 25, - "input_file": { - "filename": "src/renderers/DustyPilotRenderer.cairo" - }, - "start_col": 6, - "start_line": 25 - }, - "While constructing the external wrapper for:" - ], - "start_col": 50, - "start_line": 1 - }, - "While expanding the reference 'retdata_size' in:" - ], - "start_col": 6, - "start_line": 25 - }, - "While constructing the external wrapper for:" - ], - "start_col": 23, - "start_line": 2 - } - }, - "639": { - "accessible_scopes": [ - "__main__", - "__main__", - "__wrappers__", - "__wrappers__.getOwner" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 44, - "end_line": 2, - "input_file": { - "filename": "autogen/starknet/external/getOwner/50eef2d703602d24c42df800878bfabc425ad0069960e1dc159c4d3bf27e35f6.cairo" - }, - "parent_location": [ - { - "end_col": 14, - "end_line": 25, - "input_file": { - "filename": "src/renderers/DustyPilotRenderer.cairo" - }, - "parent_location": [ - { - "end_col": 70, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/external/getOwner/da17921a4e81c09e730800bbf23bfdbe5e9e6bfaedc59d80fbf62087fa43c27d.cairo" - }, - "parent_location": [ - { - "end_col": 14, - "end_line": 25, - "input_file": { - "filename": "src/renderers/DustyPilotRenderer.cairo" - }, - "start_col": 6, - "start_line": 25 - }, - "While constructing the external wrapper for:" - ], - "start_col": 63, - "start_line": 1 - }, - "While expanding the reference 'retdata' in:" - ], - "start_col": 6, - "start_line": 25 - }, - "While constructing the external wrapper for:" - ], - "start_col": 37, - "start_line": 2 - } - }, - "640": { - "accessible_scopes": [ - "__main__", - "__main__", - "__wrappers__", - "__wrappers__.getOwner" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 72, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/external/getOwner/da17921a4e81c09e730800bbf23bfdbe5e9e6bfaedc59d80fbf62087fa43c27d.cairo" - }, - "parent_location": [ - { - "end_col": 14, - "end_line": 25, - "input_file": { - "filename": "src/renderers/DustyPilotRenderer.cairo" - }, - "start_col": 6, - "start_line": 25 - }, - "While constructing the external wrapper for:" - ], - "start_col": 1, - "start_line": 1 - } - }, - "641": { - "accessible_scopes": [ - "__main__", - "__main__", - "__main__.getThresholds" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 18, - "end_line": 33, - "input_file": { - "filename": "src/renderers/DustyPilotRenderer.cairo" - }, - "start_col": 5, - "start_line": 33 - } - }, - "643": { - "accessible_scopes": [ - "__main__", - "__main__", - "__main__.getThresholds" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 31, - "end_line": 34, - "input_file": { - "filename": "src/renderers/DustyPilotRenderer.cairo" - }, - "start_col": 24, - "start_line": 34 - } - }, - "645": { - "accessible_scopes": [ - "__main__", - "__main__", - "__main__.getThresholds" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 20, - "end_line": 34, - "input_file": { - "filename": "src/renderers/DustyPilotRenderer.cairo" - }, - "parent_location": [ - { - "end_col": 20, - "end_line": 34, - "input_file": { - "filename": "src/renderers/DustyPilotRenderer.cairo" - }, - "start_col": 10, - "start_line": 34 - }, - "While auto generating local variable for 'thresholds'." - ], - "start_col": 10, - "start_line": 34 - } - }, - "646": { - "accessible_scopes": [ - "__main__", - "__main__", - "__main__.getThresholds" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 38, - "end_line": 30, - "input_file": { - "filename": "src/renderers/DustyPilotRenderer.cairo" - }, - "parent_location": [ - { - "end_col": 41, - "end_line": 61, - "input_file": { - "filename": "src/renderers/DustyPilotRenderer.cairo" - }, - "parent_location": [ - { - "end_col": 50, - "end_line": 35, - "input_file": { - "filename": "src/renderers/DustyPilotRenderer.cairo" - }, - "start_col": 19, - "start_line": 35 - }, - "While trying to retrieve the implicit argument 'syscall_ptr' in:" - ], - "start_col": 23, - "start_line": 61 - }, - "While expanding the reference 'syscall_ptr' in:" - ], - "start_col": 20, - "start_line": 30 - } - }, - "647": { - "accessible_scopes": [ - "__main__", - "__main__", - "__main__.getThresholds" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 66, - "end_line": 30, - "input_file": { - "filename": "src/renderers/DustyPilotRenderer.cairo" - }, - "parent_location": [ - { - "end_col": 69, - "end_line": 61, - "input_file": { - "filename": "src/renderers/DustyPilotRenderer.cairo" - }, - "parent_location": [ - { - "end_col": 50, - "end_line": 35, - "input_file": { - "filename": "src/renderers/DustyPilotRenderer.cairo" - }, - "start_col": 19, - "start_line": 35 - }, - "While trying to retrieve the implicit argument 'pedersen_ptr' in:" - ], - "start_col": 43, - "start_line": 61 - }, - "While expanding the reference 'pedersen_ptr' in:" - ], - "start_col": 40, - "start_line": 30 - } - }, - "648": { - "accessible_scopes": [ - "__main__", - "__main__", - "__main__.getThresholds" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 83, - "end_line": 30, - "input_file": { - "filename": "src/renderers/DustyPilotRenderer.cairo" - }, - "parent_location": [ - { - "end_col": 86, - "end_line": 61, - "input_file": { - "filename": "src/renderers/DustyPilotRenderer.cairo" - }, - "parent_location": [ - { - "end_col": 50, - "end_line": 35, - "input_file": { - "filename": "src/renderers/DustyPilotRenderer.cairo" - }, - "start_col": 19, - "start_line": 35 - }, - "While trying to retrieve the implicit argument 'range_check_ptr' in:" - ], - "start_col": 71, - "start_line": 61 - }, - "While expanding the reference 'range_check_ptr' in:" - ], - "start_col": 68, - "start_line": 30 - } - }, - "649": { - "accessible_scopes": [ - "__main__", - "__main__", - "__main__.getThresholds" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 37, - "end_line": 35, - "input_file": { - "filename": "src/renderers/DustyPilotRenderer.cairo" - }, - "start_col": 36, - "start_line": 35 - } - }, - "651": { - "accessible_scopes": [ - "__main__", - "__main__", - "__main__.getThresholds" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 20, - "end_line": 34, - "input_file": { - "filename": "src/renderers/DustyPilotRenderer.cairo" - }, - "parent_location": [ - { - "end_col": 20, - "end_line": 34, - "input_file": { - "filename": "src/renderers/DustyPilotRenderer.cairo" - }, - "parent_location": [ - { - "end_col": 49, - "end_line": 35, - "input_file": { - "filename": "src/renderers/DustyPilotRenderer.cairo" - }, - "start_col": 39, - "start_line": 35 - }, - "While expanding the reference 'thresholds' in:" - ], - "start_col": 10, - "start_line": 34 - }, - "While auto generating local variable for 'thresholds'." - ], - "start_col": 10, - "start_line": 34 - } - }, - "652": { - "accessible_scopes": [ - "__main__", - "__main__", - "__main__.getThresholds" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 50, - "end_line": 35, - "input_file": { - "filename": "src/renderers/DustyPilotRenderer.cairo" - }, - "start_col": 19, - "start_line": 35 - } - }, - "654": { - "accessible_scopes": [ - "__main__", - "__main__", - "__main__.getThresholds" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 41, - "end_line": 61, - "input_file": { - "filename": "src/renderers/DustyPilotRenderer.cairo" - }, - "parent_location": [ - { - "end_col": 50, - "end_line": 35, - "input_file": { - "filename": "src/renderers/DustyPilotRenderer.cairo" - }, - "parent_location": [ - { - "end_col": 33, - "end_line": 13, - "input_file": { - "filename": "autogen/starknet/storage_var/_thresholds_len/decl.cairo" - }, - "parent_location": [ - { - "end_col": 50, - "end_line": 36, - "input_file": { - "filename": "src/renderers/DustyPilotRenderer.cairo" - }, - "start_col": 28, - "start_line": 36 - }, - "While trying to retrieve the implicit argument 'syscall_ptr' in:" - ], - "start_col": 15, - "start_line": 13 - }, - "While expanding the reference 'syscall_ptr' in:" - ], - "start_col": 19, - "start_line": 35 - }, - "While trying to update the implicit return value 'syscall_ptr' in:" - ], - "start_col": 23, - "start_line": 61 - } - }, - "655": { - "accessible_scopes": [ - "__main__", - "__main__", - "__main__.getThresholds" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 69, - "end_line": 61, - "input_file": { - "filename": "src/renderers/DustyPilotRenderer.cairo" - }, - "parent_location": [ - { - "end_col": 50, - "end_line": 35, - "input_file": { - "filename": "src/renderers/DustyPilotRenderer.cairo" - }, - "parent_location": [ - { - "end_col": 61, - "end_line": 13, - "input_file": { - "filename": "autogen/starknet/storage_var/_thresholds_len/decl.cairo" - }, - "parent_location": [ - { - "end_col": 50, - "end_line": 36, - "input_file": { - "filename": "src/renderers/DustyPilotRenderer.cairo" - }, - "start_col": 28, - "start_line": 36 - }, - "While trying to retrieve the implicit argument 'pedersen_ptr' in:" - ], - "start_col": 35, - "start_line": 13 - }, - "While expanding the reference 'pedersen_ptr' in:" - ], - "start_col": 19, - "start_line": 35 - }, - "While trying to update the implicit return value 'pedersen_ptr' in:" - ], - "start_col": 43, - "start_line": 61 - } - }, - "656": { - "accessible_scopes": [ - "__main__", - "__main__", - "__main__.getThresholds" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 86, - "end_line": 61, - "input_file": { - "filename": "src/renderers/DustyPilotRenderer.cairo" - }, - "parent_location": [ - { - "end_col": 50, - "end_line": 35, - "input_file": { - "filename": "src/renderers/DustyPilotRenderer.cairo" - }, - "parent_location": [ - { - "end_col": 78, - "end_line": 13, - "input_file": { - "filename": "autogen/starknet/storage_var/_thresholds_len/decl.cairo" - }, - "parent_location": [ - { - "end_col": 50, - "end_line": 36, - "input_file": { - "filename": "src/renderers/DustyPilotRenderer.cairo" - }, - "start_col": 28, - "start_line": 36 - }, - "While trying to retrieve the implicit argument 'range_check_ptr' in:" - ], - "start_col": 63, - "start_line": 13 - }, - "While expanding the reference 'range_check_ptr' in:" - ], - "start_col": 19, - "start_line": 35 - }, - "While trying to update the implicit return value 'range_check_ptr' in:" - ], - "start_col": 71, - "start_line": 61 - } - }, - "657": { - "accessible_scopes": [ - "__main__", - "__main__", - "__main__.getThresholds" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 50, - "end_line": 36, - "input_file": { - "filename": "src/renderers/DustyPilotRenderer.cairo" - }, - "start_col": 28, - "start_line": 36 - } - }, - "659": { - "accessible_scopes": [ - "__main__", - "__main__", - "__main__.getThresholds" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 20, - "end_line": 34, - "input_file": { - "filename": "src/renderers/DustyPilotRenderer.cairo" - }, - "parent_location": [ - { - "end_col": 20, - "end_line": 34, - "input_file": { - "filename": "src/renderers/DustyPilotRenderer.cairo" - }, - "parent_location": [ - { - "end_col": 39, - "end_line": 37, - "input_file": { - "filename": "src/renderers/DustyPilotRenderer.cairo" - }, - "start_col": 29, - "start_line": 37 - }, - "While expanding the reference 'thresholds' in:" - ], - "start_col": 10, - "start_line": 34 - }, - "While auto generating local variable for 'thresholds'." - ], - "start_col": 10, - "start_line": 34 - } - }, - "660": { - "accessible_scopes": [ - "__main__", - "__main__", - "__main__.getThresholds" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 41, - "end_line": 37, - "input_file": { - "filename": "src/renderers/DustyPilotRenderer.cairo" - }, - "start_col": 5, - "start_line": 37 - } - }, - "661": { - "accessible_scopes": [ - "__main__", - "__main__", - "__wrappers__", - "__wrappers__.getThresholds_encode_return" - ], - "flow_tracking_data": null, - "hints": [ - { - "location": { - "end_col": 38, - "end_line": 3, - "input_file": { - "filename": "autogen/starknet/external/return/getThresholds/9802441e33a7be9198a89b97eee0a4392d67fc60729ed368669d796a14056b69.cairo" - }, - "parent_location": [ - { - "end_col": 19, - "end_line": 30, - "input_file": { - "filename": "src/renderers/DustyPilotRenderer.cairo" - }, - "start_col": 6, - "start_line": 30 - }, - "While handling return value of" - ], - "start_col": 5, - "start_line": 3 - }, - "n_prefix_newlines": 0 - } - ], - "inst": { - "end_col": 18, - "end_line": 4, - "input_file": { - "filename": "autogen/starknet/external/return/getThresholds/9802441e33a7be9198a89b97eee0a4392d67fc60729ed368669d796a14056b69.cairo" - }, - "parent_location": [ - { - "end_col": 19, - "end_line": 30, - "input_file": { - "filename": "src/renderers/DustyPilotRenderer.cairo" - }, - "start_col": 6, - "start_line": 30 - }, - "While handling return value of" - ], - "start_col": 5, - "start_line": 4 - } - }, - "663": { - "accessible_scopes": [ - "__main__", - "__main__", - "__wrappers__", - "__wrappers__.getThresholds_encode_return" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 56, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/arg_processor/576aaaacf3f9765b8d4c4f0080b47f3443309fe8a5c76d9c0bbf56f81f5c5547.cairo" - }, - "parent_location": [ - { - "end_col": 25, - "end_line": 31, - "input_file": { - "filename": "src/renderers/DustyPilotRenderer.cairo" - }, - "start_col": 5, - "start_line": 31 - }, - "While handling return value 'thresholds_len'" - ], - "start_col": 1, - "start_line": 1 - } - }, - "664": { - "accessible_scopes": [ - "__main__", - "__main__", - "__wrappers__", - "__wrappers__.getThresholds_encode_return" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 53, - "end_line": 2, - "input_file": { - "filename": "autogen/starknet/arg_processor/26888a8b0591098a0a4f302b72cbac00272d5fe2d4db1172eca8910fde65f68a.cairo" - }, - "parent_location": [ - { - "end_col": 44, - "end_line": 31, - "input_file": { - "filename": "src/renderers/DustyPilotRenderer.cairo" - }, - "start_col": 27, - "start_line": 31 - }, - "While handling return value 'thresholds'" - ], - "start_col": 1, - "start_line": 2 - } - }, - "665": { - "accessible_scopes": [ - "__main__", - "__main__", - "__wrappers__", - "__wrappers__.getThresholds_encode_return" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 45, - "end_line": 5, - "input_file": { - "filename": "autogen/starknet/arg_processor/26888a8b0591098a0a4f302b72cbac00272d5fe2d4db1172eca8910fde65f68a.cairo" - }, - "parent_location": [ - { - "end_col": 44, - "end_line": 31, - "input_file": { - "filename": "src/renderers/DustyPilotRenderer.cairo" - }, - "start_col": 27, - "start_line": 31 - }, - "While handling return value 'thresholds'" - ], - "start_col": 1, - "start_line": 5 - } - }, - "667": { - "accessible_scopes": [ - "__main__", - "__main__", - "__wrappers__", - "__wrappers__.getThresholds_encode_return" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 48, - "end_line": 2, - "input_file": { - "filename": "autogen/starknet/arg_processor/576aaaacf3f9765b8d4c4f0080b47f3443309fe8a5c76d9c0bbf56f81f5c5547.cairo" - }, - "parent_location": [ - { - "end_col": 25, - "end_line": 31, - "input_file": { - "filename": "src/renderers/DustyPilotRenderer.cairo" - }, - "parent_location": [ - { - "end_col": 53, - "end_line": 10, - "input_file": { - "filename": "autogen/starknet/arg_processor/26888a8b0591098a0a4f302b72cbac00272d5fe2d4db1172eca8910fde65f68a.cairo" - }, - "parent_location": [ - { - "end_col": 44, - "end_line": 31, - "input_file": { - "filename": "src/renderers/DustyPilotRenderer.cairo" - }, - "start_col": 27, - "start_line": 31 - }, - "While handling return value 'thresholds'" - ], - "start_col": 35, - "start_line": 10 - }, - "While expanding the reference '__return_value_ptr' in:" - ], - "start_col": 5, - "start_line": 31 - }, - "While handling return value 'thresholds_len'" - ], - "start_col": 26, - "start_line": 2 - } - }, - "669": { - "accessible_scopes": [ - "__main__", - "__main__", - "__wrappers__", - "__wrappers__.getThresholds_encode_return" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 85, - "end_line": 10, - "input_file": { - "filename": "autogen/starknet/arg_processor/26888a8b0591098a0a4f302b72cbac00272d5fe2d4db1172eca8910fde65f68a.cairo" - }, - "parent_location": [ - { - "end_col": 44, - "end_line": 31, - "input_file": { - "filename": "src/renderers/DustyPilotRenderer.cairo" - }, - "start_col": 27, - "start_line": 31 - }, - "While handling return value 'thresholds'" - ], - "start_col": 1, - "start_line": 10 - } - }, - "670": { - "accessible_scopes": [ - "__main__", - "__main__", - "__wrappers__", - "__wrappers__.getThresholds_encode_return" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 48, - "end_line": 2, - "input_file": { - "filename": "autogen/starknet/arg_processor/576aaaacf3f9765b8d4c4f0080b47f3443309fe8a5c76d9c0bbf56f81f5c5547.cairo" - }, - "parent_location": [ - { - "end_col": 25, - "end_line": 31, - "input_file": { - "filename": "src/renderers/DustyPilotRenderer.cairo" - }, - "parent_location": [ - { - "end_col": 49, - "end_line": 7, - "input_file": { - "filename": "autogen/starknet/arg_processor/26888a8b0591098a0a4f302b72cbac00272d5fe2d4db1172eca8910fde65f68a.cairo" - }, - "parent_location": [ - { - "end_col": 44, - "end_line": 31, - "input_file": { - "filename": "src/renderers/DustyPilotRenderer.cairo" - }, - "parent_location": [ - { - "end_col": 32, - "end_line": 12, - "input_file": { - "filename": "autogen/starknet/arg_processor/26888a8b0591098a0a4f302b72cbac00272d5fe2d4db1172eca8910fde65f68a.cairo" - }, - "parent_location": [ - { - "end_col": 44, - "end_line": 31, - "input_file": { - "filename": "src/renderers/DustyPilotRenderer.cairo" - }, - "start_col": 27, - "start_line": 31 - }, - "While handling return value 'thresholds'" - ], - "start_col": 9, - "start_line": 12 - }, - "While expanding the reference '__return_value_ptr_copy' in:" - ], - "start_col": 27, - "start_line": 31 - }, - "While handling return value 'thresholds'" - ], - "start_col": 31, - "start_line": 7 - }, - "While expanding the reference '__return_value_ptr' in:" - ], - "start_col": 5, - "start_line": 31 - }, - "While handling return value 'thresholds_len'" - ], - "start_col": 26, - "start_line": 2 - } - }, - "672": { - "accessible_scopes": [ - "__main__", - "__main__", - "__wrappers__", - "__wrappers__.getThresholds_encode_return" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 29, - "end_line": 13, - "input_file": { - "filename": "autogen/starknet/arg_processor/26888a8b0591098a0a4f302b72cbac00272d5fe2d4db1172eca8910fde65f68a.cairo" - }, - "parent_location": [ - { - "end_col": 44, - "end_line": 31, - "input_file": { - "filename": "src/renderers/DustyPilotRenderer.cairo" - }, - "start_col": 27, - "start_line": 31 - }, - "While handling return value 'thresholds'" - ], - "start_col": 9, - "start_line": 13 - } - }, - "673": { - "accessible_scopes": [ - "__main__", - "__main__", - "__wrappers__", - "__wrappers__.getThresholds_encode_return" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 33, - "end_line": 14, - "input_file": { - "filename": "autogen/starknet/arg_processor/26888a8b0591098a0a4f302b72cbac00272d5fe2d4db1172eca8910fde65f68a.cairo" - }, - "parent_location": [ - { - "end_col": 44, - "end_line": 31, - "input_file": { - "filename": "src/renderers/DustyPilotRenderer.cairo" - }, - "start_col": 27, - "start_line": 31 - }, - "While handling return value 'thresholds'" - ], - "start_col": 9, - "start_line": 14 - } - }, - "674": { - "accessible_scopes": [ - "__main__", - "__main__", - "__wrappers__", - "__wrappers__.getThresholds_encode_return" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 38, - "end_line": 14, - "input_file": { - "filename": "autogen/starknet/arg_processor/26888a8b0591098a0a4f302b72cbac00272d5fe2d4db1172eca8910fde65f68a.cairo" - }, - "parent_location": [ - { - "end_col": 44, - "end_line": 31, - "input_file": { - "filename": "src/renderers/DustyPilotRenderer.cairo" - }, - "start_col": 27, - "start_line": 31 - }, - "While handling return value 'thresholds'" - ], - "start_col": 1, - "start_line": 11 - } - }, - "676": { - "accessible_scopes": [ - "__main__", - "__main__", - "__wrappers__", - "__wrappers__.getThresholds_encode_return" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 22, - "end_line": 5, - "input_file": { - "filename": "autogen/starknet/arg_processor/26888a8b0591098a0a4f302b72cbac00272d5fe2d4db1172eca8910fde65f68a.cairo" - }, - "parent_location": [ - { - "end_col": 44, - "end_line": 31, - "input_file": { - "filename": "src/renderers/DustyPilotRenderer.cairo" - }, - "parent_location": [ - { - "end_col": 40, - "end_line": 10, - "input_file": { - "filename": "autogen/starknet/external/return/getThresholds/9802441e33a7be9198a89b97eee0a4392d67fc60729ed368669d796a14056b69.cairo" - }, - "parent_location": [ - { - "end_col": 19, - "end_line": 30, - "input_file": { - "filename": "src/renderers/DustyPilotRenderer.cairo" - }, - "start_col": 6, - "start_line": 30 - }, - "While handling return value of" - ], - "start_col": 25, - "start_line": 10 - }, - "While expanding the reference 'range_check_ptr' in:" - ], - "start_col": 27, - "start_line": 31 - }, - "While handling return value 'thresholds'" - ], - "start_col": 7, - "start_line": 5 - } - }, - "677": { - "accessible_scopes": [ - "__main__", - "__main__", - "__wrappers__", - "__wrappers__.getThresholds_encode_return" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 63, - "end_line": 11, - "input_file": { - "filename": "autogen/starknet/external/return/getThresholds/9802441e33a7be9198a89b97eee0a4392d67fc60729ed368669d796a14056b69.cairo" - }, - "parent_location": [ - { - "end_col": 19, - "end_line": 30, - "input_file": { - "filename": "src/renderers/DustyPilotRenderer.cairo" - }, - "start_col": 6, - "start_line": 30 - }, - "While handling return value of" - ], - "start_col": 18, - "start_line": 11 - } - }, - "678": { - "accessible_scopes": [ - "__main__", - "__main__", - "__wrappers__", - "__wrappers__.getThresholds_encode_return" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 35, - "end_line": 5, - "input_file": { - "filename": "autogen/starknet/external/return/getThresholds/9802441e33a7be9198a89b97eee0a4392d67fc60729ed368669d796a14056b69.cairo" - }, - "parent_location": [ - { - "end_col": 19, - "end_line": 30, - "input_file": { - "filename": "src/renderers/DustyPilotRenderer.cairo" - }, - "parent_location": [ - { - "end_col": 38, - "end_line": 12, - "input_file": { - "filename": "autogen/starknet/external/return/getThresholds/9802441e33a7be9198a89b97eee0a4392d67fc60729ed368669d796a14056b69.cairo" - }, - "parent_location": [ - { - "end_col": 19, - "end_line": 30, - "input_file": { - "filename": "src/renderers/DustyPilotRenderer.cairo" - }, - "start_col": 6, - "start_line": 30 - }, - "While handling return value of" - ], - "start_col": 14, - "start_line": 12 - }, - "While expanding the reference '__return_value_ptr_start' in:" - ], - "start_col": 6, - "start_line": 30 - }, - "While handling return value of" - ], - "start_col": 11, - "start_line": 5 - } - }, - "679": { - "accessible_scopes": [ - "__main__", - "__main__", - "__wrappers__", - "__wrappers__.getThresholds_encode_return" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 40, - "end_line": 12, - "input_file": { - "filename": "autogen/starknet/external/return/getThresholds/9802441e33a7be9198a89b97eee0a4392d67fc60729ed368669d796a14056b69.cairo" - }, - "parent_location": [ - { - "end_col": 19, - "end_line": 30, - "input_file": { - "filename": "src/renderers/DustyPilotRenderer.cairo" - }, - "start_col": 6, - "start_line": 30 - }, - "While handling return value of" - ], - "start_col": 5, - "start_line": 9 - } - }, - "680": { - "accessible_scopes": [ - "__main__", - "__main__", - "__wrappers__", - "__wrappers__.getThresholds" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 18, - "end_line": 2, - "input_file": { - "filename": "autogen/starknet/external/getThresholds/746967275ee6822bc0e5f0716a41195587494d803b55992189b93c4fb0e2e25a.cairo" - }, - "parent_location": [ - { - "end_col": 19, - "end_line": 30, - "input_file": { - "filename": "src/renderers/DustyPilotRenderer.cairo" - }, - "start_col": 6, - "start_line": 30 - }, - "While constructing the external wrapper for:" - ], - "start_col": 5, - "start_line": 2 - } - }, - "682": { - "accessible_scopes": [ - "__main__", - "__main__", - "__wrappers__", - "__wrappers__.getThresholds" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 58, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/arg_processor/01cba52f8515996bb9d7070bde81ff39281d096d7024a558efcba6e1fd2402cf.cairo" - }, - "parent_location": [ - { - "end_col": 19, - "end_line": 30, - "input_file": { - "filename": "src/renderers/DustyPilotRenderer.cairo" - }, - "start_col": 6, - "start_line": 30 - }, - "While handling calldata of" - ], - "start_col": 1, - "start_line": 1 - } - }, - "683": { - "accessible_scopes": [ - "__main__", - "__main__", - "__wrappers__", - "__wrappers__.getThresholds" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 64, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/external/getThresholds/b2c52ca2d2a8fc8791a983086d8716c5eacd0c3d62934914d2286f84b98ff4cb.cairo" - }, - "parent_location": [ - { - "end_col": 38, - "end_line": 30, - "input_file": { - "filename": "src/renderers/DustyPilotRenderer.cairo" - }, - "parent_location": [ - { - "end_col": 55, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/external/getThresholds/8cb46b4e28994ec330ee261c7e7c72df878710408b14a4d6daf29aaf098ad3e9.cairo" - }, - "parent_location": [ - { - "end_col": 19, - "end_line": 30, - "input_file": { - "filename": "src/renderers/DustyPilotRenderer.cairo" - }, - "start_col": 6, - "start_line": 30 - }, - "While constructing the external wrapper for:" - ], - "start_col": 44, - "start_line": 1 - }, - "While expanding the reference 'syscall_ptr' in:" - ], - "start_col": 20, - "start_line": 30 - }, - "While constructing the external wrapper for:" - ], - "start_col": 19, - "start_line": 1 - } - }, - "684": { - "accessible_scopes": [ - "__main__", - "__main__", - "__wrappers__", - "__wrappers__.getThresholds" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 110, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/external/getThresholds/9684a85e93c782014ca14293edea4eb2502039a5a7b6538ecd39c56faaf12529.cairo" - }, - "parent_location": [ - { - "end_col": 66, - "end_line": 30, - "input_file": { - "filename": "src/renderers/DustyPilotRenderer.cairo" - }, - "parent_location": [ - { - "end_col": 82, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/external/getThresholds/8cb46b4e28994ec330ee261c7e7c72df878710408b14a4d6daf29aaf098ad3e9.cairo" - }, - "parent_location": [ - { - "end_col": 19, - "end_line": 30, - "input_file": { - "filename": "src/renderers/DustyPilotRenderer.cairo" - }, - "start_col": 6, - "start_line": 30 - }, - "While constructing the external wrapper for:" - ], - "start_col": 70, - "start_line": 1 - }, - "While expanding the reference 'pedersen_ptr' in:" - ], - "start_col": 40, - "start_line": 30 - }, - "While constructing the external wrapper for:" - ], - "start_col": 20, - "start_line": 1 - } - }, - "685": { - "accessible_scopes": [ - "__main__", - "__main__", - "__wrappers__", - "__wrappers__.getThresholds" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 67, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/external/getThresholds/741ea357d6336b0bed7bf0472425acd0311d543883b803388880e60a232040c7.cairo" - }, - "parent_location": [ - { - "end_col": 83, - "end_line": 30, - "input_file": { - "filename": "src/renderers/DustyPilotRenderer.cairo" - }, - "parent_location": [ - { - "end_col": 115, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/external/getThresholds/8cb46b4e28994ec330ee261c7e7c72df878710408b14a4d6daf29aaf098ad3e9.cairo" - }, - "parent_location": [ - { - "end_col": 19, - "end_line": 30, - "input_file": { - "filename": "src/renderers/DustyPilotRenderer.cairo" - }, - "start_col": 6, - "start_line": 30 - }, - "While constructing the external wrapper for:" - ], - "start_col": 100, - "start_line": 1 - }, - "While expanding the reference 'range_check_ptr' in:" - ], - "start_col": 68, - "start_line": 30 - }, - "While constructing the external wrapper for:" - ], - "start_col": 23, - "start_line": 1 - } - }, - "686": { - "accessible_scopes": [ - "__main__", - "__main__", - "__wrappers__", - "__wrappers__.getThresholds" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 19, - "end_line": 30, - "input_file": { - "filename": "src/renderers/DustyPilotRenderer.cairo" - }, - "start_col": 6, - "start_line": 30 - } - }, - "688": { - "accessible_scopes": [ - "__main__", - "__main__", - "__wrappers__", - "__wrappers__.getThresholds" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 55, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/external/getThresholds/8cb46b4e28994ec330ee261c7e7c72df878710408b14a4d6daf29aaf098ad3e9.cairo" - }, - "parent_location": [ - { - "end_col": 19, - "end_line": 30, - "input_file": { - "filename": "src/renderers/DustyPilotRenderer.cairo" - }, - "parent_location": [ - { - "end_col": 55, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/external/getThresholds/8cb46b4e28994ec330ee261c7e7c72df878710408b14a4d6daf29aaf098ad3e9.cairo" - }, - "parent_location": [ - { - "end_col": 19, - "end_line": 30, - "input_file": { - "filename": "src/renderers/DustyPilotRenderer.cairo" - }, - "start_col": 6, - "start_line": 30 - }, - "While constructing the external wrapper for:" - ], - "start_col": 44, - "start_line": 1 - }, - "While auto generating local variable for 'syscall_ptr'." - ], - "start_col": 6, - "start_line": 30 - }, - "While constructing the external wrapper for:" - ], - "start_col": 44, - "start_line": 1 - } - }, - "689": { - "accessible_scopes": [ - "__main__", - "__main__", - "__wrappers__", - "__wrappers__.getThresholds" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 82, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/external/getThresholds/8cb46b4e28994ec330ee261c7e7c72df878710408b14a4d6daf29aaf098ad3e9.cairo" - }, - "parent_location": [ - { - "end_col": 19, - "end_line": 30, - "input_file": { - "filename": "src/renderers/DustyPilotRenderer.cairo" - }, - "parent_location": [ - { - "end_col": 82, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/external/getThresholds/8cb46b4e28994ec330ee261c7e7c72df878710408b14a4d6daf29aaf098ad3e9.cairo" - }, - "parent_location": [ - { - "end_col": 19, - "end_line": 30, - "input_file": { - "filename": "src/renderers/DustyPilotRenderer.cairo" - }, - "start_col": 6, - "start_line": 30 - }, - "While constructing the external wrapper for:" - ], - "start_col": 70, - "start_line": 1 - }, - "While auto generating local variable for 'pedersen_ptr'." - ], - "start_col": 6, - "start_line": 30 - }, - "While constructing the external wrapper for:" - ], - "start_col": 70, - "start_line": 1 - } - }, - "690": { - "accessible_scopes": [ - "__main__", - "__main__", - "__wrappers__", - "__wrappers__.getThresholds" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 115, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/external/getThresholds/8cb46b4e28994ec330ee261c7e7c72df878710408b14a4d6daf29aaf098ad3e9.cairo" - }, - "parent_location": [ - { - "end_col": 19, - "end_line": 30, - "input_file": { - "filename": "src/renderers/DustyPilotRenderer.cairo" - }, - "parent_location": [ - { - "end_col": 102, - "end_line": 2, - "input_file": { - "filename": "autogen/starknet/external/getThresholds/8cb46b4e28994ec330ee261c7e7c72df878710408b14a4d6daf29aaf098ad3e9.cairo" - }, - "parent_location": [ - { - "end_col": 19, - "end_line": 30, - "input_file": { - "filename": "src/renderers/DustyPilotRenderer.cairo" - }, - "start_col": 6, - "start_line": 30 - }, - "While constructing the external wrapper for:" - ], - "start_col": 87, - "start_line": 2 - }, - "While expanding the reference 'range_check_ptr' in:" - ], - "start_col": 6, - "start_line": 30 - }, - "While constructing the external wrapper for:" - ], - "start_col": 100, - "start_line": 1 - } - }, - "691": { - "accessible_scopes": [ - "__main__", - "__main__", - "__wrappers__", - "__wrappers__.getThresholds" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 103, - "end_line": 2, - "input_file": { - "filename": "autogen/starknet/external/getThresholds/8cb46b4e28994ec330ee261c7e7c72df878710408b14a4d6daf29aaf098ad3e9.cairo" - }, - "parent_location": [ - { - "end_col": 19, - "end_line": 30, - "input_file": { - "filename": "src/renderers/DustyPilotRenderer.cairo" - }, - "start_col": 6, - "start_line": 30 - }, - "While constructing the external wrapper for:" - ], - "start_col": 48, - "start_line": 2 - } - }, - "693": { - "accessible_scopes": [ - "__main__", - "__main__", - "__wrappers__", - "__wrappers__.getThresholds" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 55, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/external/getThresholds/8cb46b4e28994ec330ee261c7e7c72df878710408b14a4d6daf29aaf098ad3e9.cairo" - }, - "parent_location": [ - { - "end_col": 19, - "end_line": 30, - "input_file": { - "filename": "src/renderers/DustyPilotRenderer.cairo" - }, - "parent_location": [ - { - "end_col": 55, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/external/getThresholds/8cb46b4e28994ec330ee261c7e7c72df878710408b14a4d6daf29aaf098ad3e9.cairo" - }, - "parent_location": [ - { - "end_col": 19, - "end_line": 30, - "input_file": { - "filename": "src/renderers/DustyPilotRenderer.cairo" - }, - "parent_location": [ - { - "end_col": 20, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/external/getThresholds/da17921a4e81c09e730800bbf23bfdbe5e9e6bfaedc59d80fbf62087fa43c27d.cairo" - }, - "parent_location": [ - { - "end_col": 19, - "end_line": 30, - "input_file": { - "filename": "src/renderers/DustyPilotRenderer.cairo" - }, - "start_col": 6, - "start_line": 30 - }, - "While constructing the external wrapper for:" - ], - "start_col": 9, - "start_line": 1 - }, - "While expanding the reference 'syscall_ptr' in:" - ], - "start_col": 6, - "start_line": 30 - }, - "While constructing the external wrapper for:" - ], - "start_col": 44, - "start_line": 1 - }, - "While auto generating local variable for 'syscall_ptr'." - ], - "start_col": 6, - "start_line": 30 - }, - "While constructing the external wrapper for:" - ], - "start_col": 44, - "start_line": 1 - } - }, - "694": { - "accessible_scopes": [ - "__main__", - "__main__", - "__wrappers__", - "__wrappers__.getThresholds" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 82, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/external/getThresholds/8cb46b4e28994ec330ee261c7e7c72df878710408b14a4d6daf29aaf098ad3e9.cairo" - }, - "parent_location": [ - { - "end_col": 19, - "end_line": 30, - "input_file": { - "filename": "src/renderers/DustyPilotRenderer.cairo" - }, - "parent_location": [ - { - "end_col": 82, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/external/getThresholds/8cb46b4e28994ec330ee261c7e7c72df878710408b14a4d6daf29aaf098ad3e9.cairo" - }, - "parent_location": [ - { - "end_col": 19, - "end_line": 30, - "input_file": { - "filename": "src/renderers/DustyPilotRenderer.cairo" - }, - "parent_location": [ - { - "end_col": 33, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/external/getThresholds/da17921a4e81c09e730800bbf23bfdbe5e9e6bfaedc59d80fbf62087fa43c27d.cairo" - }, - "parent_location": [ - { - "end_col": 19, - "end_line": 30, - "input_file": { - "filename": "src/renderers/DustyPilotRenderer.cairo" - }, - "start_col": 6, - "start_line": 30 - }, - "While constructing the external wrapper for:" - ], - "start_col": 21, - "start_line": 1 - }, - "While expanding the reference 'pedersen_ptr' in:" - ], - "start_col": 6, - "start_line": 30 - }, - "While constructing the external wrapper for:" - ], - "start_col": 70, - "start_line": 1 - }, - "While auto generating local variable for 'pedersen_ptr'." - ], - "start_col": 6, - "start_line": 30 - }, - "While constructing the external wrapper for:" - ], - "start_col": 70, - "start_line": 1 - } - }, - "695": { - "accessible_scopes": [ - "__main__", - "__main__", - "__wrappers__", - "__wrappers__.getThresholds" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 21, - "end_line": 2, - "input_file": { - "filename": "autogen/starknet/external/getThresholds/8cb46b4e28994ec330ee261c7e7c72df878710408b14a4d6daf29aaf098ad3e9.cairo" - }, - "parent_location": [ - { - "end_col": 19, - "end_line": 30, - "input_file": { - "filename": "src/renderers/DustyPilotRenderer.cairo" - }, - "parent_location": [ - { - "end_col": 49, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/external/getThresholds/da17921a4e81c09e730800bbf23bfdbe5e9e6bfaedc59d80fbf62087fa43c27d.cairo" - }, - "parent_location": [ - { - "end_col": 19, - "end_line": 30, - "input_file": { - "filename": "src/renderers/DustyPilotRenderer.cairo" - }, - "start_col": 6, - "start_line": 30 - }, - "While constructing the external wrapper for:" - ], - "start_col": 34, - "start_line": 1 - }, - "While expanding the reference 'range_check_ptr' in:" - ], - "start_col": 6, - "start_line": 30 - }, - "While constructing the external wrapper for:" - ], - "start_col": 6, - "start_line": 2 - } - }, - "696": { - "accessible_scopes": [ - "__main__", - "__main__", - "__wrappers__", - "__wrappers__.getThresholds" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 35, - "end_line": 2, - "input_file": { - "filename": "autogen/starknet/external/getThresholds/8cb46b4e28994ec330ee261c7e7c72df878710408b14a4d6daf29aaf098ad3e9.cairo" - }, - "parent_location": [ - { - "end_col": 19, - "end_line": 30, - "input_file": { - "filename": "src/renderers/DustyPilotRenderer.cairo" - }, - "parent_location": [ - { - "end_col": 62, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/external/getThresholds/da17921a4e81c09e730800bbf23bfdbe5e9e6bfaedc59d80fbf62087fa43c27d.cairo" - }, - "parent_location": [ - { - "end_col": 19, - "end_line": 30, - "input_file": { - "filename": "src/renderers/DustyPilotRenderer.cairo" - }, - "start_col": 6, - "start_line": 30 - }, - "While constructing the external wrapper for:" - ], - "start_col": 50, - "start_line": 1 - }, - "While expanding the reference 'retdata_size' in:" - ], - "start_col": 6, - "start_line": 30 - }, - "While constructing the external wrapper for:" - ], - "start_col": 23, - "start_line": 2 - } - }, - "697": { - "accessible_scopes": [ - "__main__", - "__main__", - "__wrappers__", - "__wrappers__.getThresholds" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 44, - "end_line": 2, - "input_file": { - "filename": "autogen/starknet/external/getThresholds/8cb46b4e28994ec330ee261c7e7c72df878710408b14a4d6daf29aaf098ad3e9.cairo" - }, - "parent_location": [ - { - "end_col": 19, - "end_line": 30, - "input_file": { - "filename": "src/renderers/DustyPilotRenderer.cairo" - }, - "parent_location": [ - { - "end_col": 70, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/external/getThresholds/da17921a4e81c09e730800bbf23bfdbe5e9e6bfaedc59d80fbf62087fa43c27d.cairo" - }, - "parent_location": [ - { - "end_col": 19, - "end_line": 30, - "input_file": { - "filename": "src/renderers/DustyPilotRenderer.cairo" - }, - "start_col": 6, - "start_line": 30 - }, - "While constructing the external wrapper for:" - ], - "start_col": 63, - "start_line": 1 - }, - "While expanding the reference 'retdata' in:" - ], - "start_col": 6, - "start_line": 30 - }, - "While constructing the external wrapper for:" - ], - "start_col": 37, - "start_line": 2 - } - }, - "698": { - "accessible_scopes": [ - "__main__", - "__main__", - "__wrappers__", - "__wrappers__.getThresholds" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 72, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/external/getThresholds/da17921a4e81c09e730800bbf23bfdbe5e9e6bfaedc59d80fbf62087fa43c27d.cairo" - }, - "parent_location": [ - { - "end_col": 19, - "end_line": 30, - "input_file": { - "filename": "src/renderers/DustyPilotRenderer.cairo" - }, - "start_col": 6, - "start_line": 30 - }, - "While constructing the external wrapper for:" - ], - "start_col": 1, - "start_line": 1 - } - }, - "699": { - "accessible_scopes": [ - "__main__", - "__main__", - "__main__.setThresholds" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 38, - "end_line": 41, - "input_file": { - "filename": "src/renderers/DustyPilotRenderer.cairo" - }, - "parent_location": [ - { - "end_col": 46, - "end_line": 40, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/access/ownable/library.cairo" - }, - "parent_location": [ - { - "end_col": 32, - "end_line": 44, - "input_file": { - "filename": "src/renderers/DustyPilotRenderer.cairo" - }, - "start_col": 5, - "start_line": 44 - }, - "While trying to retrieve the implicit argument 'syscall_ptr' in:" - ], - "start_col": 28, - "start_line": 40 - }, - "While expanding the reference 'syscall_ptr' in:" - ], - "start_col": 20, - "start_line": 41 - } - }, - "700": { - "accessible_scopes": [ - "__main__", - "__main__", - "__main__.setThresholds" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 66, - "end_line": 41, - "input_file": { - "filename": "src/renderers/DustyPilotRenderer.cairo" - }, - "parent_location": [ - { - "end_col": 74, - "end_line": 40, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/access/ownable/library.cairo" - }, - "parent_location": [ - { - "end_col": 32, - "end_line": 44, - "input_file": { - "filename": "src/renderers/DustyPilotRenderer.cairo" - }, - "start_col": 5, - "start_line": 44 - }, - "While trying to retrieve the implicit argument 'pedersen_ptr' in:" - ], - "start_col": 48, - "start_line": 40 - }, - "While expanding the reference 'pedersen_ptr' in:" - ], - "start_col": 40, - "start_line": 41 - } - }, - "701": { - "accessible_scopes": [ - "__main__", - "__main__", - "__main__.setThresholds" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 83, - "end_line": 41, - "input_file": { - "filename": "src/renderers/DustyPilotRenderer.cairo" - }, - "parent_location": [ - { - "end_col": 91, - "end_line": 40, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/access/ownable/library.cairo" - }, - "parent_location": [ - { - "end_col": 32, - "end_line": 44, - "input_file": { - "filename": "src/renderers/DustyPilotRenderer.cairo" - }, - "start_col": 5, - "start_line": 44 - }, - "While trying to retrieve the implicit argument 'range_check_ptr' in:" - ], - "start_col": 76, - "start_line": 40 - }, - "While expanding the reference 'range_check_ptr' in:" - ], - "start_col": 68, - "start_line": 41 - } - }, - "702": { - "accessible_scopes": [ - "__main__", - "__main__", - "__main__.setThresholds" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 32, - "end_line": 44, - "input_file": { - "filename": "src/renderers/DustyPilotRenderer.cairo" - }, - "start_col": 5, - "start_line": 44 - } - }, - "704": { - "accessible_scopes": [ - "__main__", - "__main__", - "__main__.setThresholds" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 25, - "end_line": 42, - "input_file": { - "filename": "src/renderers/DustyPilotRenderer.cairo" - }, - "parent_location": [ - { - "end_col": 41, - "end_line": 45, - "input_file": { - "filename": "src/renderers/DustyPilotRenderer.cairo" - }, - "start_col": 27, - "start_line": 45 - }, - "While expanding the reference 'thresholds_len' in:" - ], - "start_col": 5, - "start_line": 42 - } - }, - "705": { - "accessible_scopes": [ - "__main__", - "__main__", - "__main__.setThresholds" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 42, - "end_line": 45, - "input_file": { - "filename": "src/renderers/DustyPilotRenderer.cairo" - }, - "start_col": 5, - "start_line": 45 - } - }, - "707": { - "accessible_scopes": [ - "__main__", - "__main__", - "__main__.setThresholds" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 24, - "end_line": 46, - "input_file": { - "filename": "src/renderers/DustyPilotRenderer.cairo" - }, - "start_col": 23, - "start_line": 46 - } - }, - "709": { - "accessible_scopes": [ - "__main__", - "__main__", - "__main__.setThresholds" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 25, - "end_line": 42, - "input_file": { - "filename": "src/renderers/DustyPilotRenderer.cairo" - }, - "parent_location": [ - { - "end_col": 40, - "end_line": 46, - "input_file": { - "filename": "src/renderers/DustyPilotRenderer.cairo" - }, - "start_col": 26, - "start_line": 46 - }, - "While expanding the reference 'thresholds_len' in:" - ], - "start_col": 5, - "start_line": 42 - } - }, - "710": { - "accessible_scopes": [ - "__main__", - "__main__", - "__main__.setThresholds" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 44, - "end_line": 42, - "input_file": { - "filename": "src/renderers/DustyPilotRenderer.cairo" - }, - "parent_location": [ - { - "end_col": 52, - "end_line": 46, - "input_file": { - "filename": "src/renderers/DustyPilotRenderer.cairo" - }, - "start_col": 42, - "start_line": 46 - }, - "While expanding the reference 'thresholds' in:" - ], - "start_col": 27, - "start_line": 42 - } - }, - "711": { - "accessible_scopes": [ - "__main__", - "__main__", - "__main__.setThresholds" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 53, - "end_line": 46, - "input_file": { - "filename": "src/renderers/DustyPilotRenderer.cairo" - }, - "start_col": 5, - "start_line": 46 - } - }, - "713": { - "accessible_scopes": [ - "__main__", - "__main__", - "__main__.setThresholds" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 15, - "end_line": 47, - "input_file": { - "filename": "src/renderers/DustyPilotRenderer.cairo" - }, - "start_col": 5, - "start_line": 47 - } - }, - "714": { - "accessible_scopes": [ - "__main__", - "__main__", - "__wrappers__", - "__wrappers__.setThresholds" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 67, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/external/setThresholds/741ea357d6336b0bed7bf0472425acd0311d543883b803388880e60a232040c7.cairo" - }, - "parent_location": [ - { - "end_col": 83, - "end_line": 41, - "input_file": { - "filename": "src/renderers/DustyPilotRenderer.cairo" - }, - "parent_location": [ - { - "end_col": 24, - "end_line": 2, - "input_file": { - "filename": "autogen/starknet/arg_processor/2bfdc4ffac90f60a618dc1ef323ad79a7856f8aea423d4c7d18c33590d12a61e.cairo" - }, - "parent_location": [ - { - "end_col": 44, - "end_line": 42, - "input_file": { - "filename": "src/renderers/DustyPilotRenderer.cairo" - }, - "start_col": 27, - "start_line": 42 - }, - "While handling calldata argument 'thresholds'" - ], - "start_col": 9, - "start_line": 2 - }, - "While expanding the reference 'range_check_ptr' in:" - ], - "start_col": 68, - "start_line": 41 - }, - "While constructing the external wrapper for:" - ], - "start_col": 23, - "start_line": 1 - } - }, - "715": { - "accessible_scopes": [ - "__main__", - "__main__", - "__wrappers__", - "__wrappers__.setThresholds" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 53, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/arg_processor/e4df1f6292f94b95716e933d564f87fd3790efa318bb67c640b6e0935f122cab.cairo" - }, - "parent_location": [ - { - "end_col": 25, - "end_line": 42, - "input_file": { - "filename": "src/renderers/DustyPilotRenderer.cairo" - }, - "parent_location": [ - { - "end_col": 57, - "end_line": 2, - "input_file": { - "filename": "autogen/starknet/arg_processor/2bfdc4ffac90f60a618dc1ef323ad79a7856f8aea423d4c7d18c33590d12a61e.cairo" - }, - "parent_location": [ - { - "end_col": 44, - "end_line": 42, - "input_file": { - "filename": "src/renderers/DustyPilotRenderer.cairo" - }, - "start_col": 27, - "start_line": 42 - }, - "While handling calldata argument 'thresholds'" - ], - "start_col": 28, - "start_line": 2 - }, - "While expanding the reference '__calldata_arg_thresholds_len' in:" - ], - "start_col": 5, - "start_line": 42 - }, - "While handling calldata argument 'thresholds_len'" - ], - "start_col": 37, - "start_line": 1 - } - }, - "716": { - "accessible_scopes": [ - "__main__", - "__main__", - "__wrappers__", - "__wrappers__.setThresholds" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 58, - "end_line": 2, - "input_file": { - "filename": "autogen/starknet/arg_processor/2bfdc4ffac90f60a618dc1ef323ad79a7856f8aea423d4c7d18c33590d12a61e.cairo" - }, - "parent_location": [ - { - "end_col": 44, - "end_line": 42, - "input_file": { - "filename": "src/renderers/DustyPilotRenderer.cairo" - }, - "start_col": 27, - "start_line": 42 - }, - "While handling calldata argument 'thresholds'" - ], - "start_col": 1, - "start_line": 2 - } - }, - "717": { - "accessible_scopes": [ - "__main__", - "__main__", - "__wrappers__", - "__wrappers__.setThresholds" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 40, - "end_line": 2, - "input_file": { - "filename": "autogen/starknet/arg_processor/e4df1f6292f94b95716e933d564f87fd3790efa318bb67c640b6e0935f122cab.cairo" - }, - "parent_location": [ - { - "end_col": 25, - "end_line": 42, - "input_file": { - "filename": "src/renderers/DustyPilotRenderer.cairo" - }, - "parent_location": [ - { - "end_col": 40, - "end_line": 8, - "input_file": { - "filename": "autogen/starknet/arg_processor/2bfdc4ffac90f60a618dc1ef323ad79a7856f8aea423d4c7d18c33590d12a61e.cairo" - }, - "parent_location": [ - { - "end_col": 44, - "end_line": 42, - "input_file": { - "filename": "src/renderers/DustyPilotRenderer.cairo" - }, - "start_col": 27, - "start_line": 42 - }, - "While handling calldata argument 'thresholds'" - ], - "start_col": 26, - "start_line": 8 - }, - "While expanding the reference '__calldata_ptr' in:" - ], - "start_col": 5, - "start_line": 42 - }, - "While handling calldata argument 'thresholds_len'" - ], - "start_col": 22, - "start_line": 2 - } - }, - "719": { - "accessible_scopes": [ - "__main__", - "__main__", - "__wrappers__", - "__wrappers__.setThresholds" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 53, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/arg_processor/e4df1f6292f94b95716e933d564f87fd3790efa318bb67c640b6e0935f122cab.cairo" - }, - "parent_location": [ - { - "end_col": 25, - "end_line": 42, - "input_file": { - "filename": "src/renderers/DustyPilotRenderer.cairo" - }, - "parent_location": [ - { - "end_col": 72, - "end_line": 8, - "input_file": { - "filename": "autogen/starknet/arg_processor/2bfdc4ffac90f60a618dc1ef323ad79a7856f8aea423d4c7d18c33590d12a61e.cairo" - }, - "parent_location": [ - { - "end_col": 44, - "end_line": 42, - "input_file": { - "filename": "src/renderers/DustyPilotRenderer.cairo" - }, - "start_col": 27, - "start_line": 42 - }, - "While handling calldata argument 'thresholds'" - ], - "start_col": 43, - "start_line": 8 - }, - "While expanding the reference '__calldata_arg_thresholds_len' in:" - ], - "start_col": 5, - "start_line": 42 - }, - "While handling calldata argument 'thresholds_len'" - ], - "start_col": 37, - "start_line": 1 - } - }, - "720": { - "accessible_scopes": [ - "__main__", - "__main__", - "__wrappers__", - "__wrappers__.setThresholds" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 76, - "end_line": 8, - "input_file": { - "filename": "autogen/starknet/arg_processor/2bfdc4ffac90f60a618dc1ef323ad79a7856f8aea423d4c7d18c33590d12a61e.cairo" - }, - "parent_location": [ - { - "end_col": 44, - "end_line": 42, - "input_file": { - "filename": "src/renderers/DustyPilotRenderer.cairo" - }, - "start_col": 27, - "start_line": 42 - }, - "While handling calldata argument 'thresholds'" - ], - "start_col": 26, - "start_line": 8 - } - }, - "721": { - "accessible_scopes": [ - "__main__", - "__main__", - "__wrappers__", - "__wrappers__.setThresholds" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 58, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/arg_processor/01cba52f8515996bb9d7070bde81ff39281d096d7024a558efcba6e1fd2402cf.cairo" - }, - "parent_location": [ - { - "end_col": 19, - "end_line": 41, - "input_file": { - "filename": "src/renderers/DustyPilotRenderer.cairo" - }, - "start_col": 6, - "start_line": 41 - }, - "While handling calldata of" - ], - "start_col": 1, - "start_line": 1 - } - }, - "722": { - "accessible_scopes": [ - "__main__", - "__main__", - "__wrappers__", - "__wrappers__.setThresholds" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 67, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/external/setThresholds/741ea357d6336b0bed7bf0472425acd0311d543883b803388880e60a232040c7.cairo" - }, - "parent_location": [ - { - "end_col": 83, - "end_line": 41, - "input_file": { - "filename": "src/renderers/DustyPilotRenderer.cairo" - }, - "parent_location": [ - { - "end_col": 38, - "end_line": 3, - "input_file": { - "filename": "autogen/starknet/arg_processor/2bfdc4ffac90f60a618dc1ef323ad79a7856f8aea423d4c7d18c33590d12a61e.cairo" - }, - "parent_location": [ - { - "end_col": 44, - "end_line": 42, - "input_file": { - "filename": "src/renderers/DustyPilotRenderer.cairo" - }, - "parent_location": [ - { - "end_col": 115, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/external/setThresholds/e1079c359f90fa1512a45e8d21aee37f44f5279b379ca7982c52634d864bb1a2.cairo" - }, - "parent_location": [ - { - "end_col": 19, - "end_line": 41, - "input_file": { - "filename": "src/renderers/DustyPilotRenderer.cairo" - }, - "start_col": 6, - "start_line": 41 - }, - "While constructing the external wrapper for:" - ], - "start_col": 100, - "start_line": 1 - }, - "While expanding the reference 'range_check_ptr' in:" - ], - "start_col": 27, - "start_line": 42 - }, - "While handling calldata argument 'thresholds'" - ], - "start_col": 23, - "start_line": 3 - }, - "While expanding the reference 'range_check_ptr' in:" - ], - "start_col": 68, - "start_line": 41 - }, - "While constructing the external wrapper for:" - ], - "start_col": 23, - "start_line": 1 - } - }, - "723": { - "accessible_scopes": [ - "__main__", - "__main__", - "__wrappers__", - "__wrappers__.setThresholds" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 64, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/external/setThresholds/b2c52ca2d2a8fc8791a983086d8716c5eacd0c3d62934914d2286f84b98ff4cb.cairo" - }, - "parent_location": [ - { - "end_col": 38, - "end_line": 41, - "input_file": { - "filename": "src/renderers/DustyPilotRenderer.cairo" - }, - "parent_location": [ - { - "end_col": 55, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/external/setThresholds/e1079c359f90fa1512a45e8d21aee37f44f5279b379ca7982c52634d864bb1a2.cairo" - }, - "parent_location": [ - { - "end_col": 19, - "end_line": 41, - "input_file": { - "filename": "src/renderers/DustyPilotRenderer.cairo" - }, - "start_col": 6, - "start_line": 41 - }, - "While constructing the external wrapper for:" - ], - "start_col": 44, - "start_line": 1 - }, - "While expanding the reference 'syscall_ptr' in:" - ], - "start_col": 20, - "start_line": 41 - }, - "While constructing the external wrapper for:" - ], - "start_col": 19, - "start_line": 1 - } - }, - "724": { - "accessible_scopes": [ - "__main__", - "__main__", - "__wrappers__", - "__wrappers__.setThresholds" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 110, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/external/setThresholds/9684a85e93c782014ca14293edea4eb2502039a5a7b6538ecd39c56faaf12529.cairo" - }, - "parent_location": [ - { - "end_col": 66, - "end_line": 41, - "input_file": { - "filename": "src/renderers/DustyPilotRenderer.cairo" - }, - "parent_location": [ - { - "end_col": 82, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/external/setThresholds/e1079c359f90fa1512a45e8d21aee37f44f5279b379ca7982c52634d864bb1a2.cairo" - }, - "parent_location": [ - { - "end_col": 19, - "end_line": 41, - "input_file": { - "filename": "src/renderers/DustyPilotRenderer.cairo" - }, - "start_col": 6, - "start_line": 41 - }, - "While constructing the external wrapper for:" - ], - "start_col": 70, - "start_line": 1 - }, - "While expanding the reference 'pedersen_ptr' in:" - ], - "start_col": 40, - "start_line": 41 - }, - "While constructing the external wrapper for:" - ], - "start_col": 20, - "start_line": 1 - } - }, - "725": { - "accessible_scopes": [ - "__main__", - "__main__", - "__wrappers__", - "__wrappers__.setThresholds" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 42, - "end_line": 3, - "input_file": { - "filename": "autogen/starknet/arg_processor/2bfdc4ffac90f60a618dc1ef323ad79a7856f8aea423d4c7d18c33590d12a61e.cairo" - }, - "parent_location": [ - { - "end_col": 44, - "end_line": 42, - "input_file": { - "filename": "src/renderers/DustyPilotRenderer.cairo" - }, - "parent_location": [ - { - "end_col": 115, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/external/setThresholds/e1079c359f90fa1512a45e8d21aee37f44f5279b379ca7982c52634d864bb1a2.cairo" - }, - "parent_location": [ - { - "end_col": 19, - "end_line": 41, - "input_file": { - "filename": "src/renderers/DustyPilotRenderer.cairo" - }, - "start_col": 6, - "start_line": 41 - }, - "While constructing the external wrapper for:" - ], - "start_col": 100, - "start_line": 1 - }, - "While expanding the reference 'range_check_ptr' in:" - ], - "start_col": 27, - "start_line": 42 - }, - "While handling calldata argument 'thresholds'" - ], - "start_col": 23, - "start_line": 3 - } - }, - "727": { - "accessible_scopes": [ - "__main__", - "__main__", - "__wrappers__", - "__wrappers__.setThresholds" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 53, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/arg_processor/e4df1f6292f94b95716e933d564f87fd3790efa318bb67c640b6e0935f122cab.cairo" - }, - "parent_location": [ - { - "end_col": 25, - "end_line": 42, - "input_file": { - "filename": "src/renderers/DustyPilotRenderer.cairo" - }, - "parent_location": [ - { - "end_col": 161, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/external/setThresholds/e1079c359f90fa1512a45e8d21aee37f44f5279b379ca7982c52634d864bb1a2.cairo" - }, - "parent_location": [ - { - "end_col": 19, - "end_line": 41, - "input_file": { - "filename": "src/renderers/DustyPilotRenderer.cairo" - }, - "start_col": 6, - "start_line": 41 - }, - "While constructing the external wrapper for:" - ], - "start_col": 132, - "start_line": 1 - }, - "While expanding the reference '__calldata_arg_thresholds_len' in:" - ], - "start_col": 5, - "start_line": 42 - }, - "While handling calldata argument 'thresholds_len'" - ], - "start_col": 37, - "start_line": 1 - } - }, - "728": { - "accessible_scopes": [ - "__main__", - "__main__", - "__wrappers__", - "__wrappers__.setThresholds" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 60, - "end_line": 5, - "input_file": { - "filename": "autogen/starknet/arg_processor/2bfdc4ffac90f60a618dc1ef323ad79a7856f8aea423d4c7d18c33590d12a61e.cairo" - }, - "parent_location": [ - { - "end_col": 44, - "end_line": 42, - "input_file": { - "filename": "src/renderers/DustyPilotRenderer.cairo" - }, - "parent_location": [ - { - "end_col": 199, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/external/setThresholds/e1079c359f90fa1512a45e8d21aee37f44f5279b379ca7982c52634d864bb1a2.cairo" - }, - "parent_location": [ - { - "end_col": 19, - "end_line": 41, - "input_file": { - "filename": "src/renderers/DustyPilotRenderer.cairo" - }, - "start_col": 6, - "start_line": 41 - }, - "While constructing the external wrapper for:" - ], - "start_col": 174, - "start_line": 1 - }, - "While expanding the reference '__calldata_arg_thresholds' in:" - ], - "start_col": 27, - "start_line": 42 - }, - "While handling calldata argument 'thresholds'" - ], - "start_col": 33, - "start_line": 5 - } - }, - "730": { - "accessible_scopes": [ - "__main__", - "__main__", - "__wrappers__", - "__wrappers__.setThresholds" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 19, - "end_line": 41, - "input_file": { - "filename": "src/renderers/DustyPilotRenderer.cairo" - }, - "start_col": 6, - "start_line": 41 - } - }, - "732": { - "accessible_scopes": [ - "__main__", - "__main__", - "__wrappers__", - "__wrappers__.setThresholds" - ], - "flow_tracking_data": null, - "hints": [ - { - "location": { - "end_col": 34, - "end_line": 2, - "input_file": { - "filename": "autogen/starknet/external/setThresholds/e1079c359f90fa1512a45e8d21aee37f44f5279b379ca7982c52634d864bb1a2.cairo" - }, - "parent_location": [ - { - "end_col": 19, - "end_line": 41, - "input_file": { - "filename": "src/renderers/DustyPilotRenderer.cairo" - }, - "start_col": 6, - "start_line": 41 - }, - "While constructing the external wrapper for:" - ], - "start_col": 1, - "start_line": 2 - }, - "n_prefix_newlines": 0 - } - ], - "inst": { - "end_col": 24, - "end_line": 3, - "input_file": { - "filename": "autogen/starknet/external/setThresholds/e1079c359f90fa1512a45e8d21aee37f44f5279b379ca7982c52634d864bb1a2.cairo" - }, - "parent_location": [ - { - "end_col": 19, - "end_line": 41, - "input_file": { - "filename": "src/renderers/DustyPilotRenderer.cairo" - }, - "start_col": 6, - "start_line": 41 - }, - "While constructing the external wrapper for:" - ], - "start_col": 1, - "start_line": 3 - } - }, - "734": { - "accessible_scopes": [ - "__main__", - "__main__", - "__wrappers__", - "__wrappers__.setThresholds" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 55, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/external/setThresholds/e1079c359f90fa1512a45e8d21aee37f44f5279b379ca7982c52634d864bb1a2.cairo" - }, - "parent_location": [ - { - "end_col": 19, - "end_line": 41, - "input_file": { - "filename": "src/renderers/DustyPilotRenderer.cairo" - }, - "parent_location": [ - { - "end_col": 20, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/external/setThresholds/da17921a4e81c09e730800bbf23bfdbe5e9e6bfaedc59d80fbf62087fa43c27d.cairo" - }, - "parent_location": [ - { - "end_col": 19, - "end_line": 41, - "input_file": { - "filename": "src/renderers/DustyPilotRenderer.cairo" - }, - "start_col": 6, - "start_line": 41 - }, - "While constructing the external wrapper for:" - ], - "start_col": 9, - "start_line": 1 - }, - "While expanding the reference 'syscall_ptr' in:" - ], - "start_col": 6, - "start_line": 41 - }, - "While constructing the external wrapper for:" - ], - "start_col": 44, - "start_line": 1 - } - }, - "735": { - "accessible_scopes": [ - "__main__", - "__main__", - "__wrappers__", - "__wrappers__.setThresholds" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 82, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/external/setThresholds/e1079c359f90fa1512a45e8d21aee37f44f5279b379ca7982c52634d864bb1a2.cairo" - }, - "parent_location": [ - { - "end_col": 19, - "end_line": 41, - "input_file": { - "filename": "src/renderers/DustyPilotRenderer.cairo" - }, - "parent_location": [ - { - "end_col": 33, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/external/setThresholds/da17921a4e81c09e730800bbf23bfdbe5e9e6bfaedc59d80fbf62087fa43c27d.cairo" - }, - "parent_location": [ - { - "end_col": 19, - "end_line": 41, - "input_file": { - "filename": "src/renderers/DustyPilotRenderer.cairo" - }, - "start_col": 6, - "start_line": 41 - }, - "While constructing the external wrapper for:" - ], - "start_col": 21, - "start_line": 1 - }, - "While expanding the reference 'pedersen_ptr' in:" - ], - "start_col": 6, - "start_line": 41 - }, - "While constructing the external wrapper for:" - ], - "start_col": 70, - "start_line": 1 - } - }, - "736": { - "accessible_scopes": [ - "__main__", - "__main__", - "__wrappers__", - "__wrappers__.setThresholds" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 115, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/external/setThresholds/e1079c359f90fa1512a45e8d21aee37f44f5279b379ca7982c52634d864bb1a2.cairo" - }, - "parent_location": [ - { - "end_col": 19, - "end_line": 41, - "input_file": { - "filename": "src/renderers/DustyPilotRenderer.cairo" - }, - "parent_location": [ - { - "end_col": 49, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/external/setThresholds/da17921a4e81c09e730800bbf23bfdbe5e9e6bfaedc59d80fbf62087fa43c27d.cairo" - }, - "parent_location": [ - { - "end_col": 19, - "end_line": 41, - "input_file": { - "filename": "src/renderers/DustyPilotRenderer.cairo" - }, - "start_col": 6, - "start_line": 41 - }, - "While constructing the external wrapper for:" - ], - "start_col": 34, - "start_line": 1 - }, - "While expanding the reference 'range_check_ptr' in:" - ], - "start_col": 6, - "start_line": 41 - }, - "While constructing the external wrapper for:" - ], - "start_col": 100, - "start_line": 1 - } - }, - "737": { - "accessible_scopes": [ - "__main__", - "__main__", - "__wrappers__", - "__wrappers__.setThresholds" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 21, - "end_line": 4, - "input_file": { - "filename": "autogen/starknet/external/setThresholds/e1079c359f90fa1512a45e8d21aee37f44f5279b379ca7982c52634d864bb1a2.cairo" - }, - "parent_location": [ - { - "end_col": 19, - "end_line": 41, - "input_file": { - "filename": "src/renderers/DustyPilotRenderer.cairo" - }, - "parent_location": [ - { - "end_col": 62, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/external/setThresholds/da17921a4e81c09e730800bbf23bfdbe5e9e6bfaedc59d80fbf62087fa43c27d.cairo" - }, - "parent_location": [ - { - "end_col": 19, - "end_line": 41, - "input_file": { - "filename": "src/renderers/DustyPilotRenderer.cairo" - }, - "start_col": 6, - "start_line": 41 - }, - "While constructing the external wrapper for:" - ], - "start_col": 50, - "start_line": 1 - }, - "While expanding the reference 'retdata_size' in:" - ], - "start_col": 6, - "start_line": 41 - }, - "While constructing the external wrapper for:" - ], - "start_col": 20, - "start_line": 4 - } - }, - "739": { - "accessible_scopes": [ - "__main__", - "__main__", - "__wrappers__", - "__wrappers__.setThresholds" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 16, - "end_line": 3, - "input_file": { - "filename": "autogen/starknet/external/setThresholds/e1079c359f90fa1512a45e8d21aee37f44f5279b379ca7982c52634d864bb1a2.cairo" - }, - "parent_location": [ - { - "end_col": 19, - "end_line": 41, - "input_file": { - "filename": "src/renderers/DustyPilotRenderer.cairo" - }, - "parent_location": [ - { - "end_col": 70, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/external/setThresholds/da17921a4e81c09e730800bbf23bfdbe5e9e6bfaedc59d80fbf62087fa43c27d.cairo" - }, - "parent_location": [ - { - "end_col": 19, - "end_line": 41, - "input_file": { - "filename": "src/renderers/DustyPilotRenderer.cairo" - }, - "start_col": 6, - "start_line": 41 - }, - "While constructing the external wrapper for:" - ], - "start_col": 63, - "start_line": 1 - }, - "While expanding the reference 'retdata' in:" - ], - "start_col": 6, - "start_line": 41 - }, - "While constructing the external wrapper for:" - ], - "start_col": 9, - "start_line": 3 - } - }, - "740": { - "accessible_scopes": [ - "__main__", - "__main__", - "__wrappers__", - "__wrappers__.setThresholds" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 72, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/external/setThresholds/da17921a4e81c09e730800bbf23bfdbe5e9e6bfaedc59d80fbf62087fa43c27d.cairo" - }, - "parent_location": [ - { - "end_col": 19, - "end_line": 41, - "input_file": { - "filename": "src/renderers/DustyPilotRenderer.cairo" - }, - "start_col": 6, - "start_line": 41 - }, - "While constructing the external wrapper for:" - ], - "start_col": 1, - "start_line": 1 - } - }, - "741": { - "accessible_scopes": [ - "__main__", - "__main__._thresholds_write" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 32, - "end_line": 53, - "input_file": { - "filename": "src/renderers/DustyPilotRenderer.cairo" - }, - "start_col": 9, - "start_line": 53 - } - }, - "742": { - "accessible_scopes": [ - "__main__", - "__main__._thresholds_write" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 7, - "end_line": 53, - "input_file": { - "filename": "src/renderers/DustyPilotRenderer.cairo" - }, - "start_col": 5, - "start_line": 53 - } - }, - "744": { - "accessible_scopes": [ - "__main__", - "__main__._thresholds_write" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 42, - "end_line": 50, - "input_file": { - "filename": "src/renderers/DustyPilotRenderer.cairo" - }, - "parent_location": [ - { - "end_col": 42, - "end_line": 50, - "input_file": { - "filename": "src/renderers/DustyPilotRenderer.cairo" - }, - "parent_location": [ - { - "end_col": 19, - "end_line": 54, - "input_file": { - "filename": "src/renderers/DustyPilotRenderer.cairo" - }, - "start_col": 9, - "start_line": 54 - }, - "While trying to retrieve the implicit argument 'syscall_ptr' in:" - ], - "start_col": 24, - "start_line": 50 - }, - "While expanding the reference 'syscall_ptr' in:" - ], - "start_col": 24, - "start_line": 50 - } - }, - "745": { - "accessible_scopes": [ - "__main__", - "__main__._thresholds_write" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 70, - "end_line": 50, - "input_file": { - "filename": "src/renderers/DustyPilotRenderer.cairo" - }, - "parent_location": [ - { - "end_col": 70, - "end_line": 50, - "input_file": { - "filename": "src/renderers/DustyPilotRenderer.cairo" - }, - "parent_location": [ - { - "end_col": 19, - "end_line": 54, - "input_file": { - "filename": "src/renderers/DustyPilotRenderer.cairo" - }, - "start_col": 9, - "start_line": 54 - }, - "While trying to retrieve the implicit argument 'pedersen_ptr' in:" - ], - "start_col": 44, - "start_line": 50 - }, - "While expanding the reference 'pedersen_ptr' in:" - ], - "start_col": 44, - "start_line": 50 - } - }, - "746": { - "accessible_scopes": [ - "__main__", - "__main__._thresholds_write" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 87, - "end_line": 50, - "input_file": { - "filename": "src/renderers/DustyPilotRenderer.cairo" - }, - "parent_location": [ - { - "end_col": 87, - "end_line": 50, - "input_file": { - "filename": "src/renderers/DustyPilotRenderer.cairo" - }, - "parent_location": [ - { - "end_col": 19, - "end_line": 54, - "input_file": { - "filename": "src/renderers/DustyPilotRenderer.cairo" - }, - "start_col": 9, - "start_line": 54 - }, - "While trying to retrieve the implicit argument 'range_check_ptr' in:" - ], - "start_col": 72, - "start_line": 50 - }, - "While expanding the reference 'range_check_ptr' in:" - ], - "start_col": 72, - "start_line": 50 - } - }, - "747": { - "accessible_scopes": [ - "__main__", - "__main__._thresholds_write" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 19, - "end_line": 54, - "input_file": { - "filename": "src/renderers/DustyPilotRenderer.cairo" - }, - "start_col": 9, - "start_line": 54 - } - }, - "748": { - "accessible_scopes": [ - "__main__", - "__main__._thresholds_write" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 36, - "end_line": 56, - "input_file": { - "filename": "src/renderers/DustyPilotRenderer.cairo" - }, - "parent_location": [ - { - "end_col": 37, - "end_line": 57, - "input_file": { - "filename": "src/renderers/DustyPilotRenderer.cairo" - }, - "start_col": 30, - "start_line": 57 - }, - "While expanding the reference 'current' in:" - ], - "start_col": 19, - "start_line": 56 - } - }, - "749": { - "accessible_scopes": [ - "__main__", - "__main__._thresholds_write" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 42, - "end_line": 50, - "input_file": { - "filename": "src/renderers/DustyPilotRenderer.cairo" - }, - "parent_location": [ - { - "end_col": 34, - "end_line": 21, - "input_file": { - "filename": "autogen/starknet/storage_var/_thresholds/decl.cairo" - }, - "parent_location": [ - { - "end_col": 38, - "end_line": 57, - "input_file": { - "filename": "src/renderers/DustyPilotRenderer.cairo" - }, - "start_col": 5, - "start_line": 57 - }, - "While trying to retrieve the implicit argument 'syscall_ptr' in:" - ], - "start_col": 16, - "start_line": 21 - }, - "While expanding the reference 'syscall_ptr' in:" - ], - "start_col": 24, - "start_line": 50 - } - }, - "750": { - "accessible_scopes": [ - "__main__", - "__main__._thresholds_write" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 70, - "end_line": 50, - "input_file": { - "filename": "src/renderers/DustyPilotRenderer.cairo" - }, - "parent_location": [ - { - "end_col": 62, - "end_line": 21, - "input_file": { - "filename": "autogen/starknet/storage_var/_thresholds/decl.cairo" - }, - "parent_location": [ - { - "end_col": 38, - "end_line": 57, - "input_file": { - "filename": "src/renderers/DustyPilotRenderer.cairo" - }, - "start_col": 5, - "start_line": 57 - }, - "While trying to retrieve the implicit argument 'pedersen_ptr' in:" - ], - "start_col": 36, - "start_line": 21 - }, - "While expanding the reference 'pedersen_ptr' in:" - ], - "start_col": 44, - "start_line": 50 - } - }, - "751": { - "accessible_scopes": [ - "__main__", - "__main__._thresholds_write" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 87, - "end_line": 50, - "input_file": { - "filename": "src/renderers/DustyPilotRenderer.cairo" - }, - "parent_location": [ - { - "end_col": 79, - "end_line": 21, - "input_file": { - "filename": "autogen/starknet/storage_var/_thresholds/decl.cairo" - }, - "parent_location": [ - { - "end_col": 38, - "end_line": 57, - "input_file": { - "filename": "src/renderers/DustyPilotRenderer.cairo" - }, - "start_col": 5, - "start_line": 57 - }, - "While trying to retrieve the implicit argument 'range_check_ptr' in:" - ], - "start_col": 64, - "start_line": 21 - }, - "While expanding the reference 'range_check_ptr' in:" - ], - "start_col": 72, - "start_line": 50 - } - }, - "752": { - "accessible_scopes": [ - "__main__", - "__main__._thresholds_write" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 16, - "end_line": 51, - "input_file": { - "filename": "src/renderers/DustyPilotRenderer.cairo" - }, - "parent_location": [ - { - "end_col": 28, - "end_line": 57, - "input_file": { - "filename": "src/renderers/DustyPilotRenderer.cairo" - }, - "start_col": 23, - "start_line": 57 - }, - "While expanding the reference 'index' in:" - ], - "start_col": 5, - "start_line": 51 - } - }, - "753": { - "accessible_scopes": [ - "__main__", - "__main__._thresholds_write" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 36, - "end_line": 56, - "input_file": { - "filename": "src/renderers/DustyPilotRenderer.cairo" - }, - "parent_location": [ - { - "end_col": 37, - "end_line": 57, - "input_file": { - "filename": "src/renderers/DustyPilotRenderer.cairo" - }, - "start_col": 30, - "start_line": 57 - }, - "While expanding the reference 'current' in:" - ], - "start_col": 19, - "start_line": 56 - } - }, - "754": { - "accessible_scopes": [ - "__main__", - "__main__._thresholds_write" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 38, - "end_line": 57, - "input_file": { - "filename": "src/renderers/DustyPilotRenderer.cairo" - }, - "start_col": 5, - "start_line": 57 - } - }, - "756": { - "accessible_scopes": [ - "__main__", - "__main__._thresholds_write" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 39, - "end_line": 58, - "input_file": { - "filename": "src/renderers/DustyPilotRenderer.cairo" - }, - "start_col": 30, - "start_line": 58 - } - }, - "758": { - "accessible_scopes": [ - "__main__", - "__main__._thresholds_write" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 38, - "end_line": 51, - "input_file": { - "filename": "src/renderers/DustyPilotRenderer.cairo" - }, - "parent_location": [ - { - "end_col": 55, - "end_line": 58, - "input_file": { - "filename": "src/renderers/DustyPilotRenderer.cairo" - }, - "start_col": 41, - "start_line": 58 - }, - "While expanding the reference 'thresholds_len' in:" - ], - "start_col": 18, - "start_line": 51 - } - }, - "759": { - "accessible_scopes": [ - "__main__", - "__main__._thresholds_write" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 57, - "end_line": 51, - "input_file": { - "filename": "src/renderers/DustyPilotRenderer.cairo" - }, - "parent_location": [ - { - "end_col": 67, - "end_line": 58, - "input_file": { - "filename": "src/renderers/DustyPilotRenderer.cairo" - }, - "start_col": 57, - "start_line": 58 - }, - "While expanding the reference 'thresholds' in:" - ], - "start_col": 40, - "start_line": 51 - } - }, - "760": { - "accessible_scopes": [ - "__main__", - "__main__._thresholds_write" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 68, - "end_line": 58, - "input_file": { - "filename": "src/renderers/DustyPilotRenderer.cairo" - }, - "start_col": 12, - "start_line": 58 - } - }, - "762": { - "accessible_scopes": [ - "__main__", - "__main__._thresholds_write" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 69, - "end_line": 58, - "input_file": { - "filename": "src/renderers/DustyPilotRenderer.cairo" - }, - "start_col": 5, - "start_line": 58 - } - }, - "763": { - "accessible_scopes": [ - "__main__", - "__main__._thresholds_read" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 41, - "end_line": 61, - "input_file": { - "filename": "src/renderers/DustyPilotRenderer.cairo" - }, - "parent_location": [ - { - "end_col": 33, - "end_line": 13, - "input_file": { - "filename": "autogen/starknet/storage_var/_thresholds_len/decl.cairo" - }, - "parent_location": [ - { - "end_col": 43, - "end_line": 64, - "input_file": { - "filename": "src/renderers/DustyPilotRenderer.cairo" - }, - "start_col": 21, - "start_line": 64 - }, - "While trying to retrieve the implicit argument 'syscall_ptr' in:" - ], - "start_col": 15, - "start_line": 13 - }, - "While expanding the reference 'syscall_ptr' in:" - ], - "start_col": 23, - "start_line": 61 - } - }, - "764": { - "accessible_scopes": [ - "__main__", - "__main__._thresholds_read" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 69, - "end_line": 61, - "input_file": { - "filename": "src/renderers/DustyPilotRenderer.cairo" - }, - "parent_location": [ - { - "end_col": 61, - "end_line": 13, - "input_file": { - "filename": "autogen/starknet/storage_var/_thresholds_len/decl.cairo" - }, - "parent_location": [ - { - "end_col": 43, - "end_line": 64, - "input_file": { - "filename": "src/renderers/DustyPilotRenderer.cairo" - }, - "start_col": 21, - "start_line": 64 - }, - "While trying to retrieve the implicit argument 'pedersen_ptr' in:" - ], - "start_col": 35, - "start_line": 13 - }, - "While expanding the reference 'pedersen_ptr' in:" - ], - "start_col": 43, - "start_line": 61 - } - }, - "765": { - "accessible_scopes": [ - "__main__", - "__main__._thresholds_read" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 86, - "end_line": 61, - "input_file": { - "filename": "src/renderers/DustyPilotRenderer.cairo" - }, - "parent_location": [ - { - "end_col": 78, - "end_line": 13, - "input_file": { - "filename": "autogen/starknet/storage_var/_thresholds_len/decl.cairo" - }, - "parent_location": [ - { - "end_col": 43, - "end_line": 64, - "input_file": { - "filename": "src/renderers/DustyPilotRenderer.cairo" - }, - "start_col": 21, - "start_line": 64 - }, - "While trying to retrieve the implicit argument 'range_check_ptr' in:" - ], - "start_col": 63, - "start_line": 13 - }, - "While expanding the reference 'range_check_ptr' in:" - ], - "start_col": 71, - "start_line": 61 - } - }, - "766": { - "accessible_scopes": [ - "__main__", - "__main__._thresholds_read" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 43, - "end_line": 64, - "input_file": { - "filename": "src/renderers/DustyPilotRenderer.cairo" - }, - "start_col": 21, - "start_line": 64 - } - }, - "768": { - "accessible_scopes": [ - "__main__", - "__main__._thresholds_read" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 25, - "end_line": 65, - "input_file": { - "filename": "src/renderers/DustyPilotRenderer.cairo" - }, - "start_col": 9, - "start_line": 65 - } - }, - "769": { - "accessible_scopes": [ - "__main__", - "__main__._thresholds_read" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 7, - "end_line": 65, - "input_file": { - "filename": "src/renderers/DustyPilotRenderer.cairo" - }, - "start_col": 5, - "start_line": 65 - } - }, - "771": { - "accessible_scopes": [ - "__main__", - "__main__._thresholds_read" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 33, - "end_line": 13, - "input_file": { - "filename": "autogen/starknet/storage_var/_thresholds_len/decl.cairo" - }, - "parent_location": [ - { - "end_col": 43, - "end_line": 64, - "input_file": { - "filename": "src/renderers/DustyPilotRenderer.cairo" - }, - "parent_location": [ - { - "end_col": 41, - "end_line": 61, - "input_file": { - "filename": "src/renderers/DustyPilotRenderer.cairo" - }, - "parent_location": [ - { - "end_col": 40, - "end_line": 66, - "input_file": { - "filename": "src/renderers/DustyPilotRenderer.cairo" - }, - "start_col": 9, - "start_line": 66 - }, - "While trying to retrieve the implicit argument 'syscall_ptr' in:" - ], - "start_col": 23, - "start_line": 61 - }, - "While expanding the reference 'syscall_ptr' in:" - ], - "start_col": 21, - "start_line": 64 - }, - "While trying to update the implicit return value 'syscall_ptr' in:" - ], - "start_col": 15, - "start_line": 13 - } - }, - "772": { - "accessible_scopes": [ - "__main__", - "__main__._thresholds_read" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 61, - "end_line": 13, - "input_file": { - "filename": "autogen/starknet/storage_var/_thresholds_len/decl.cairo" - }, - "parent_location": [ - { - "end_col": 43, - "end_line": 64, - "input_file": { - "filename": "src/renderers/DustyPilotRenderer.cairo" - }, - "parent_location": [ - { - "end_col": 69, - "end_line": 61, - "input_file": { - "filename": "src/renderers/DustyPilotRenderer.cairo" - }, - "parent_location": [ - { - "end_col": 40, - "end_line": 66, - "input_file": { - "filename": "src/renderers/DustyPilotRenderer.cairo" - }, - "start_col": 9, - "start_line": 66 - }, - "While trying to retrieve the implicit argument 'pedersen_ptr' in:" - ], - "start_col": 43, - "start_line": 61 - }, - "While expanding the reference 'pedersen_ptr' in:" - ], - "start_col": 21, - "start_line": 64 - }, - "While trying to update the implicit return value 'pedersen_ptr' in:" - ], - "start_col": 35, - "start_line": 13 - } - }, - "773": { - "accessible_scopes": [ - "__main__", - "__main__._thresholds_read" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 78, - "end_line": 13, - "input_file": { - "filename": "autogen/starknet/storage_var/_thresholds_len/decl.cairo" - }, - "parent_location": [ - { - "end_col": 43, - "end_line": 64, - "input_file": { - "filename": "src/renderers/DustyPilotRenderer.cairo" - }, - "parent_location": [ - { - "end_col": 86, - "end_line": 61, - "input_file": { - "filename": "src/renderers/DustyPilotRenderer.cairo" - }, - "parent_location": [ - { - "end_col": 40, - "end_line": 66, - "input_file": { - "filename": "src/renderers/DustyPilotRenderer.cairo" - }, - "start_col": 9, - "start_line": 66 - }, - "While trying to retrieve the implicit argument 'range_check_ptr' in:" - ], - "start_col": 71, - "start_line": 61 - }, - "While expanding the reference 'range_check_ptr' in:" - ], - "start_col": 21, - "start_line": 64 - }, - "While trying to update the implicit return value 'range_check_ptr' in:" - ], - "start_col": 63, - "start_line": 13 - } - }, - "774": { - "accessible_scopes": [ - "__main__", - "__main__._thresholds_read" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 35, - "end_line": 62, - "input_file": { - "filename": "src/renderers/DustyPilotRenderer.cairo" - }, - "parent_location": [ - { - "end_col": 38, - "end_line": 66, - "input_file": { - "filename": "src/renderers/DustyPilotRenderer.cairo" - }, - "start_col": 28, - "start_line": 66 - }, - "While expanding the reference 'thresholds' in:" - ], - "start_col": 18, - "start_line": 62 - } - }, - "775": { - "accessible_scopes": [ - "__main__", - "__main__._thresholds_read" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 40, - "end_line": 66, - "input_file": { - "filename": "src/renderers/DustyPilotRenderer.cairo" - }, - "start_col": 9, - "start_line": 66 - } - }, - "776": { - "accessible_scopes": [ - "__main__", - "__main__._thresholds_read" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 33, - "end_line": 13, - "input_file": { - "filename": "autogen/starknet/storage_var/_thresholds_len/decl.cairo" - }, - "parent_location": [ - { - "end_col": 43, - "end_line": 64, - "input_file": { - "filename": "src/renderers/DustyPilotRenderer.cairo" - }, - "parent_location": [ - { - "end_col": 33, - "end_line": 13, - "input_file": { - "filename": "autogen/starknet/storage_var/_thresholds/decl.cairo" - }, - "parent_location": [ - { - "end_col": 44, - "end_line": 68, - "input_file": { - "filename": "src/renderers/DustyPilotRenderer.cairo" - }, - "start_col": 21, - "start_line": 68 - }, - "While trying to retrieve the implicit argument 'syscall_ptr' in:" - ], - "start_col": 15, - "start_line": 13 - }, - "While expanding the reference 'syscall_ptr' in:" - ], - "start_col": 21, - "start_line": 64 - }, - "While trying to update the implicit return value 'syscall_ptr' in:" - ], - "start_col": 15, - "start_line": 13 - } - }, - "777": { - "accessible_scopes": [ - "__main__", - "__main__._thresholds_read" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 61, - "end_line": 13, - "input_file": { - "filename": "autogen/starknet/storage_var/_thresholds_len/decl.cairo" - }, - "parent_location": [ - { - "end_col": 43, - "end_line": 64, - "input_file": { - "filename": "src/renderers/DustyPilotRenderer.cairo" - }, - "parent_location": [ - { - "end_col": 61, - "end_line": 13, - "input_file": { - "filename": "autogen/starknet/storage_var/_thresholds/decl.cairo" - }, - "parent_location": [ - { - "end_col": 44, - "end_line": 68, - "input_file": { - "filename": "src/renderers/DustyPilotRenderer.cairo" - }, - "start_col": 21, - "start_line": 68 - }, - "While trying to retrieve the implicit argument 'pedersen_ptr' in:" - ], - "start_col": 35, - "start_line": 13 - }, - "While expanding the reference 'pedersen_ptr' in:" - ], - "start_col": 21, - "start_line": 64 - }, - "While trying to update the implicit return value 'pedersen_ptr' in:" - ], - "start_col": 35, - "start_line": 13 - } - }, - "778": { - "accessible_scopes": [ - "__main__", - "__main__._thresholds_read" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 78, - "end_line": 13, - "input_file": { - "filename": "autogen/starknet/storage_var/_thresholds_len/decl.cairo" - }, - "parent_location": [ - { - "end_col": 43, - "end_line": 64, - "input_file": { - "filename": "src/renderers/DustyPilotRenderer.cairo" - }, - "parent_location": [ - { - "end_col": 78, - "end_line": 13, - "input_file": { - "filename": "autogen/starknet/storage_var/_thresholds/decl.cairo" - }, - "parent_location": [ - { - "end_col": 44, - "end_line": 68, - "input_file": { - "filename": "src/renderers/DustyPilotRenderer.cairo" - }, - "start_col": 21, - "start_line": 68 - }, - "While trying to retrieve the implicit argument 'range_check_ptr' in:" - ], - "start_col": 63, - "start_line": 13 - }, - "While expanding the reference 'range_check_ptr' in:" - ], - "start_col": 21, - "start_line": 64 - }, - "While trying to update the implicit return value 'range_check_ptr' in:" - ], - "start_col": 63, - "start_line": 13 - } - }, - "779": { - "accessible_scopes": [ - "__main__", - "__main__._thresholds_read" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 16, - "end_line": 62, - "input_file": { - "filename": "src/renderers/DustyPilotRenderer.cairo" - }, - "parent_location": [ - { - "end_col": 43, - "end_line": 68, - "input_file": { - "filename": "src/renderers/DustyPilotRenderer.cairo" - }, - "start_col": 38, - "start_line": 68 - }, - "While expanding the reference 'index' in:" - ], - "start_col": 5, - "start_line": 62 - } - }, - "780": { - "accessible_scopes": [ - "__main__", - "__main__._thresholds_read" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 44, - "end_line": 68, - "input_file": { - "filename": "src/renderers/DustyPilotRenderer.cairo" - }, - "start_col": 21, - "start_line": 68 - } - }, - "782": { - "accessible_scopes": [ - "__main__", - "__main__._thresholds_read" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 35, - "end_line": 69, - "input_file": { - "filename": "src/renderers/DustyPilotRenderer.cairo" - }, - "start_col": 5, - "start_line": 69 - } - }, - "783": { - "accessible_scopes": [ - "__main__", - "__main__._thresholds_read" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 33, - "end_line": 13, - "input_file": { - "filename": "autogen/starknet/storage_var/_thresholds/decl.cairo" - }, - "parent_location": [ - { - "end_col": 44, - "end_line": 68, - "input_file": { - "filename": "src/renderers/DustyPilotRenderer.cairo" - }, - "parent_location": [ - { - "end_col": 41, - "end_line": 61, - "input_file": { - "filename": "src/renderers/DustyPilotRenderer.cairo" - }, - "parent_location": [ - { - "end_col": 55, - "end_line": 70, - "input_file": { - "filename": "src/renderers/DustyPilotRenderer.cairo" - }, - "start_col": 12, - "start_line": 70 - }, - "While trying to retrieve the implicit argument 'syscall_ptr' in:" - ], - "start_col": 23, - "start_line": 61 - }, - "While expanding the reference 'syscall_ptr' in:" - ], - "start_col": 21, - "start_line": 68 - }, - "While trying to update the implicit return value 'syscall_ptr' in:" - ], - "start_col": 15, - "start_line": 13 - } - }, - "784": { - "accessible_scopes": [ - "__main__", - "__main__._thresholds_read" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 61, - "end_line": 13, - "input_file": { - "filename": "autogen/starknet/storage_var/_thresholds/decl.cairo" - }, - "parent_location": [ - { - "end_col": 44, - "end_line": 68, - "input_file": { - "filename": "src/renderers/DustyPilotRenderer.cairo" - }, - "parent_location": [ - { - "end_col": 69, - "end_line": 61, - "input_file": { - "filename": "src/renderers/DustyPilotRenderer.cairo" - }, - "parent_location": [ - { - "end_col": 55, - "end_line": 70, - "input_file": { - "filename": "src/renderers/DustyPilotRenderer.cairo" - }, - "start_col": 12, - "start_line": 70 - }, - "While trying to retrieve the implicit argument 'pedersen_ptr' in:" - ], - "start_col": 43, - "start_line": 61 - }, - "While expanding the reference 'pedersen_ptr' in:" - ], - "start_col": 21, - "start_line": 68 - }, - "While trying to update the implicit return value 'pedersen_ptr' in:" - ], - "start_col": 35, - "start_line": 13 - } - }, - "785": { - "accessible_scopes": [ - "__main__", - "__main__._thresholds_read" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 78, - "end_line": 13, - "input_file": { - "filename": "autogen/starknet/storage_var/_thresholds/decl.cairo" - }, - "parent_location": [ - { - "end_col": 44, - "end_line": 68, - "input_file": { - "filename": "src/renderers/DustyPilotRenderer.cairo" - }, - "parent_location": [ - { - "end_col": 86, - "end_line": 61, - "input_file": { - "filename": "src/renderers/DustyPilotRenderer.cairo" - }, - "parent_location": [ - { - "end_col": 55, - "end_line": 70, - "input_file": { - "filename": "src/renderers/DustyPilotRenderer.cairo" - }, - "start_col": 12, - "start_line": 70 - }, - "While trying to retrieve the implicit argument 'range_check_ptr' in:" - ], - "start_col": 71, - "start_line": 61 - }, - "While expanding the reference 'range_check_ptr' in:" - ], - "start_col": 21, - "start_line": 68 - }, - "While trying to update the implicit return value 'range_check_ptr' in:" - ], - "start_col": 63, - "start_line": 13 - } - }, - "786": { - "accessible_scopes": [ - "__main__", - "__main__._thresholds_read" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 38, - "end_line": 70, - "input_file": { - "filename": "src/renderers/DustyPilotRenderer.cairo" - }, - "start_col": 29, - "start_line": 70 - } - }, - "788": { - "accessible_scopes": [ - "__main__", - "__main__._thresholds_read" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 54, - "end_line": 70, - "input_file": { - "filename": "src/renderers/DustyPilotRenderer.cairo" - }, - "start_col": 40, - "start_line": 70 - } - }, - "790": { - "accessible_scopes": [ - "__main__", - "__main__._thresholds_read" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 55, - "end_line": 70, - "input_file": { - "filename": "src/renderers/DustyPilotRenderer.cairo" - }, - "start_col": 12, - "start_line": 70 - } - }, - "792": { - "accessible_scopes": [ - "__main__", - "__main__._thresholds_read" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 56, - "end_line": 70, - "input_file": { - "filename": "src/renderers/DustyPilotRenderer.cairo" - }, - "start_col": 5, - "start_line": 70 - } - }, - "793": { - "accessible_scopes": [ - "__main__", - "__main__", - "__main__.transferOwnership" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 42, - "end_line": 74, - "input_file": { - "filename": "src/renderers/DustyPilotRenderer.cairo" - }, - "parent_location": [ - { - "end_col": 47, - "end_line": 60, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/access/ownable/library.cairo" - }, - "parent_location": [ - { - "end_col": 42, - "end_line": 77, - "input_file": { - "filename": "src/renderers/DustyPilotRenderer.cairo" - }, - "start_col": 5, - "start_line": 77 - }, - "While trying to retrieve the implicit argument 'syscall_ptr' in:" - ], - "start_col": 29, - "start_line": 60 - }, - "While expanding the reference 'syscall_ptr' in:" - ], - "start_col": 24, - "start_line": 74 - } - }, - "794": { - "accessible_scopes": [ - "__main__", - "__main__", - "__main__.transferOwnership" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 70, - "end_line": 74, - "input_file": { - "filename": "src/renderers/DustyPilotRenderer.cairo" - }, - "parent_location": [ - { - "end_col": 75, - "end_line": 60, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/access/ownable/library.cairo" - }, - "parent_location": [ - { - "end_col": 42, - "end_line": 77, - "input_file": { - "filename": "src/renderers/DustyPilotRenderer.cairo" - }, - "start_col": 5, - "start_line": 77 - }, - "While trying to retrieve the implicit argument 'pedersen_ptr' in:" - ], - "start_col": 49, - "start_line": 60 - }, - "While expanding the reference 'pedersen_ptr' in:" - ], - "start_col": 44, - "start_line": 74 - } - }, - "795": { - "accessible_scopes": [ - "__main__", - "__main__", - "__main__.transferOwnership" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 87, - "end_line": 74, - "input_file": { - "filename": "src/renderers/DustyPilotRenderer.cairo" - }, - "parent_location": [ - { - "end_col": 92, - "end_line": 60, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/access/ownable/library.cairo" - }, - "parent_location": [ - { - "end_col": 42, - "end_line": 77, - "input_file": { - "filename": "src/renderers/DustyPilotRenderer.cairo" - }, - "start_col": 5, - "start_line": 77 - }, - "While trying to retrieve the implicit argument 'range_check_ptr' in:" - ], - "start_col": 77, - "start_line": 60 - }, - "While expanding the reference 'range_check_ptr' in:" - ], - "start_col": 72, - "start_line": 74 - } - }, - "796": { - "accessible_scopes": [ - "__main__", - "__main__", - "__main__.transferOwnership" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 20, - "end_line": 75, - "input_file": { - "filename": "src/renderers/DustyPilotRenderer.cairo" - }, - "parent_location": [ - { - "end_col": 41, - "end_line": 77, - "input_file": { - "filename": "src/renderers/DustyPilotRenderer.cairo" - }, - "start_col": 32, - "start_line": 77 - }, - "While expanding the reference 'new_owner' in:" - ], - "start_col": 5, - "start_line": 75 - } - }, - "797": { - "accessible_scopes": [ - "__main__", - "__main__", - "__main__.transferOwnership" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 42, - "end_line": 77, - "input_file": { - "filename": "src/renderers/DustyPilotRenderer.cairo" - }, - "start_col": 5, - "start_line": 77 - } - }, - "799": { - "accessible_scopes": [ - "__main__", - "__main__", - "__main__.transferOwnership" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 15, - "end_line": 78, - "input_file": { - "filename": "src/renderers/DustyPilotRenderer.cairo" - }, - "start_col": 5, - "start_line": 78 - } - }, - "800": { - "accessible_scopes": [ - "__main__", - "__main__", - "__wrappers__", - "__wrappers__.transferOwnership" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 40, - "end_line": 2, - "input_file": { - "filename": "autogen/starknet/arg_processor/450f0509800d3afb78e5f375ff7b17115e6b5d0fd7e2bff94c78fdb15f5f2d10.cairo" - }, - "parent_location": [ - { - "end_col": 20, - "end_line": 75, - "input_file": { - "filename": "src/renderers/DustyPilotRenderer.cairo" - }, - "parent_location": [ - { - "end_col": 45, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/arg_processor/c31620b02d4d706f0542c989b2aadc01b0981d1f6a5933a8fe4937ace3d70d92.cairo" - }, - "parent_location": [ - { - "end_col": 23, - "end_line": 74, - "input_file": { - "filename": "src/renderers/DustyPilotRenderer.cairo" - }, - "parent_location": [ - { - "end_col": 57, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/arg_processor/01cba52f8515996bb9d7070bde81ff39281d096d7024a558efcba6e1fd2402cf.cairo" - }, - "parent_location": [ - { - "end_col": 23, - "end_line": 74, - "input_file": { - "filename": "src/renderers/DustyPilotRenderer.cairo" - }, - "start_col": 6, - "start_line": 74 - }, - "While handling calldata of" - ], - "start_col": 35, - "start_line": 1 - }, - "While expanding the reference '__calldata_actual_size' in:" - ], - "start_col": 6, - "start_line": 74 - }, - "While handling calldata of" - ], - "start_col": 31, - "start_line": 1 - }, - "While expanding the reference '__calldata_ptr' in:" - ], - "start_col": 5, - "start_line": 75 - }, - "While handling calldata argument 'new_owner'" - ], - "start_col": 22, - "start_line": 2 - } - }, - "802": { - "accessible_scopes": [ - "__main__", - "__main__", - "__wrappers__", - "__wrappers__.transferOwnership" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 58, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/arg_processor/01cba52f8515996bb9d7070bde81ff39281d096d7024a558efcba6e1fd2402cf.cairo" - }, - "parent_location": [ - { - "end_col": 23, - "end_line": 74, - "input_file": { - "filename": "src/renderers/DustyPilotRenderer.cairo" - }, - "start_col": 6, - "start_line": 74 - }, - "While handling calldata of" - ], - "start_col": 1, - "start_line": 1 - } - }, - "803": { - "accessible_scopes": [ - "__main__", - "__main__", - "__wrappers__", - "__wrappers__.transferOwnership" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 64, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/external/transferOwnership/b2c52ca2d2a8fc8791a983086d8716c5eacd0c3d62934914d2286f84b98ff4cb.cairo" - }, - "parent_location": [ - { - "end_col": 42, - "end_line": 74, - "input_file": { - "filename": "src/renderers/DustyPilotRenderer.cairo" - }, - "parent_location": [ - { - "end_col": 55, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/external/transferOwnership/c2abbdf6d40d1d1b0441e88eb8846ba0c3d55e5f282e3d3f8d0a35a43a9b3e33.cairo" - }, - "parent_location": [ - { - "end_col": 23, - "end_line": 74, - "input_file": { - "filename": "src/renderers/DustyPilotRenderer.cairo" - }, - "start_col": 6, - "start_line": 74 - }, - "While constructing the external wrapper for:" - ], - "start_col": 44, - "start_line": 1 - }, - "While expanding the reference 'syscall_ptr' in:" - ], - "start_col": 24, - "start_line": 74 - }, - "While constructing the external wrapper for:" - ], - "start_col": 19, - "start_line": 1 - } - }, - "804": { - "accessible_scopes": [ - "__main__", - "__main__", - "__wrappers__", - "__wrappers__.transferOwnership" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 110, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/external/transferOwnership/9684a85e93c782014ca14293edea4eb2502039a5a7b6538ecd39c56faaf12529.cairo" - }, - "parent_location": [ - { - "end_col": 70, - "end_line": 74, - "input_file": { - "filename": "src/renderers/DustyPilotRenderer.cairo" - }, - "parent_location": [ - { - "end_col": 82, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/external/transferOwnership/c2abbdf6d40d1d1b0441e88eb8846ba0c3d55e5f282e3d3f8d0a35a43a9b3e33.cairo" - }, - "parent_location": [ - { - "end_col": 23, - "end_line": 74, - "input_file": { - "filename": "src/renderers/DustyPilotRenderer.cairo" - }, - "start_col": 6, - "start_line": 74 - }, - "While constructing the external wrapper for:" - ], - "start_col": 70, - "start_line": 1 - }, - "While expanding the reference 'pedersen_ptr' in:" - ], - "start_col": 44, - "start_line": 74 - }, - "While constructing the external wrapper for:" - ], - "start_col": 20, - "start_line": 1 - } - }, - "805": { - "accessible_scopes": [ - "__main__", - "__main__", - "__wrappers__", - "__wrappers__.transferOwnership" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 67, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/external/transferOwnership/741ea357d6336b0bed7bf0472425acd0311d543883b803388880e60a232040c7.cairo" - }, - "parent_location": [ - { - "end_col": 87, - "end_line": 74, - "input_file": { - "filename": "src/renderers/DustyPilotRenderer.cairo" - }, - "parent_location": [ - { - "end_col": 115, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/external/transferOwnership/c2abbdf6d40d1d1b0441e88eb8846ba0c3d55e5f282e3d3f8d0a35a43a9b3e33.cairo" - }, - "parent_location": [ - { - "end_col": 23, - "end_line": 74, - "input_file": { - "filename": "src/renderers/DustyPilotRenderer.cairo" - }, - "start_col": 6, - "start_line": 74 - }, - "While constructing the external wrapper for:" - ], - "start_col": 100, - "start_line": 1 - }, - "While expanding the reference 'range_check_ptr' in:" - ], - "start_col": 72, - "start_line": 74 - }, - "While constructing the external wrapper for:" - ], - "start_col": 23, - "start_line": 1 - } - }, - "806": { - "accessible_scopes": [ - "__main__", - "__main__", - "__wrappers__", - "__wrappers__.transferOwnership" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 48, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/arg_processor/450f0509800d3afb78e5f375ff7b17115e6b5d0fd7e2bff94c78fdb15f5f2d10.cairo" - }, - "parent_location": [ - { - "end_col": 20, - "end_line": 75, - "input_file": { - "filename": "src/renderers/DustyPilotRenderer.cairo" - }, - "parent_location": [ - { - "end_col": 151, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/external/transferOwnership/c2abbdf6d40d1d1b0441e88eb8846ba0c3d55e5f282e3d3f8d0a35a43a9b3e33.cairo" - }, - "parent_location": [ - { - "end_col": 23, - "end_line": 74, - "input_file": { - "filename": "src/renderers/DustyPilotRenderer.cairo" - }, - "start_col": 6, - "start_line": 74 - }, - "While constructing the external wrapper for:" - ], - "start_col": 127, - "start_line": 1 - }, - "While expanding the reference '__calldata_arg_new_owner' in:" - ], - "start_col": 5, - "start_line": 75 - }, - "While handling calldata argument 'new_owner'" - ], - "start_col": 32, - "start_line": 1 - } - }, - "807": { - "accessible_scopes": [ - "__main__", - "__main__", - "__wrappers__", - "__wrappers__.transferOwnership" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 23, - "end_line": 74, - "input_file": { - "filename": "src/renderers/DustyPilotRenderer.cairo" - }, - "start_col": 6, - "start_line": 74 - } - }, - "809": { - "accessible_scopes": [ - "__main__", - "__main__", - "__wrappers__", - "__wrappers__.transferOwnership" - ], - "flow_tracking_data": null, - "hints": [ - { - "location": { - "end_col": 34, - "end_line": 2, - "input_file": { - "filename": "autogen/starknet/external/transferOwnership/c2abbdf6d40d1d1b0441e88eb8846ba0c3d55e5f282e3d3f8d0a35a43a9b3e33.cairo" - }, - "parent_location": [ - { - "end_col": 23, - "end_line": 74, - "input_file": { - "filename": "src/renderers/DustyPilotRenderer.cairo" - }, - "start_col": 6, - "start_line": 74 - }, - "While constructing the external wrapper for:" - ], - "start_col": 1, - "start_line": 2 - }, - "n_prefix_newlines": 0 - } - ], - "inst": { - "end_col": 24, - "end_line": 3, - "input_file": { - "filename": "autogen/starknet/external/transferOwnership/c2abbdf6d40d1d1b0441e88eb8846ba0c3d55e5f282e3d3f8d0a35a43a9b3e33.cairo" - }, - "parent_location": [ - { - "end_col": 23, - "end_line": 74, - "input_file": { - "filename": "src/renderers/DustyPilotRenderer.cairo" - }, - "start_col": 6, - "start_line": 74 - }, - "While constructing the external wrapper for:" - ], - "start_col": 1, - "start_line": 3 - } - }, - "811": { - "accessible_scopes": [ - "__main__", - "__main__", - "__wrappers__", - "__wrappers__.transferOwnership" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 55, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/external/transferOwnership/c2abbdf6d40d1d1b0441e88eb8846ba0c3d55e5f282e3d3f8d0a35a43a9b3e33.cairo" - }, - "parent_location": [ - { - "end_col": 23, - "end_line": 74, - "input_file": { - "filename": "src/renderers/DustyPilotRenderer.cairo" - }, - "parent_location": [ - { - "end_col": 20, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/external/transferOwnership/da17921a4e81c09e730800bbf23bfdbe5e9e6bfaedc59d80fbf62087fa43c27d.cairo" - }, - "parent_location": [ - { - "end_col": 23, - "end_line": 74, - "input_file": { - "filename": "src/renderers/DustyPilotRenderer.cairo" - }, - "start_col": 6, - "start_line": 74 - }, - "While constructing the external wrapper for:" - ], - "start_col": 9, - "start_line": 1 - }, - "While expanding the reference 'syscall_ptr' in:" - ], - "start_col": 6, - "start_line": 74 - }, - "While constructing the external wrapper for:" - ], - "start_col": 44, - "start_line": 1 - } - }, - "812": { - "accessible_scopes": [ - "__main__", - "__main__", - "__wrappers__", - "__wrappers__.transferOwnership" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 82, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/external/transferOwnership/c2abbdf6d40d1d1b0441e88eb8846ba0c3d55e5f282e3d3f8d0a35a43a9b3e33.cairo" - }, - "parent_location": [ - { - "end_col": 23, - "end_line": 74, - "input_file": { - "filename": "src/renderers/DustyPilotRenderer.cairo" - }, - "parent_location": [ - { - "end_col": 33, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/external/transferOwnership/da17921a4e81c09e730800bbf23bfdbe5e9e6bfaedc59d80fbf62087fa43c27d.cairo" - }, - "parent_location": [ - { - "end_col": 23, - "end_line": 74, - "input_file": { - "filename": "src/renderers/DustyPilotRenderer.cairo" - }, - "start_col": 6, - "start_line": 74 - }, - "While constructing the external wrapper for:" - ], - "start_col": 21, - "start_line": 1 - }, - "While expanding the reference 'pedersen_ptr' in:" - ], - "start_col": 6, - "start_line": 74 - }, - "While constructing the external wrapper for:" - ], - "start_col": 70, - "start_line": 1 - } - }, - "813": { - "accessible_scopes": [ - "__main__", - "__main__", - "__wrappers__", - "__wrappers__.transferOwnership" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 115, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/external/transferOwnership/c2abbdf6d40d1d1b0441e88eb8846ba0c3d55e5f282e3d3f8d0a35a43a9b3e33.cairo" - }, - "parent_location": [ - { - "end_col": 23, - "end_line": 74, - "input_file": { - "filename": "src/renderers/DustyPilotRenderer.cairo" - }, - "parent_location": [ - { - "end_col": 49, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/external/transferOwnership/da17921a4e81c09e730800bbf23bfdbe5e9e6bfaedc59d80fbf62087fa43c27d.cairo" - }, - "parent_location": [ - { - "end_col": 23, - "end_line": 74, - "input_file": { - "filename": "src/renderers/DustyPilotRenderer.cairo" - }, - "start_col": 6, - "start_line": 74 - }, - "While constructing the external wrapper for:" - ], - "start_col": 34, - "start_line": 1 - }, - "While expanding the reference 'range_check_ptr' in:" - ], - "start_col": 6, - "start_line": 74 - }, - "While constructing the external wrapper for:" - ], - "start_col": 100, - "start_line": 1 - } - }, - "814": { - "accessible_scopes": [ - "__main__", - "__main__", - "__wrappers__", - "__wrappers__.transferOwnership" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 21, - "end_line": 4, - "input_file": { - "filename": "autogen/starknet/external/transferOwnership/c2abbdf6d40d1d1b0441e88eb8846ba0c3d55e5f282e3d3f8d0a35a43a9b3e33.cairo" - }, - "parent_location": [ - { - "end_col": 23, - "end_line": 74, - "input_file": { - "filename": "src/renderers/DustyPilotRenderer.cairo" - }, - "parent_location": [ - { - "end_col": 62, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/external/transferOwnership/da17921a4e81c09e730800bbf23bfdbe5e9e6bfaedc59d80fbf62087fa43c27d.cairo" - }, - "parent_location": [ - { - "end_col": 23, - "end_line": 74, - "input_file": { - "filename": "src/renderers/DustyPilotRenderer.cairo" - }, - "start_col": 6, - "start_line": 74 - }, - "While constructing the external wrapper for:" - ], - "start_col": 50, - "start_line": 1 - }, - "While expanding the reference 'retdata_size' in:" - ], - "start_col": 6, - "start_line": 74 - }, - "While constructing the external wrapper for:" - ], - "start_col": 20, - "start_line": 4 - } - }, - "816": { - "accessible_scopes": [ - "__main__", - "__main__", - "__wrappers__", - "__wrappers__.transferOwnership" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 16, - "end_line": 3, - "input_file": { - "filename": "autogen/starknet/external/transferOwnership/c2abbdf6d40d1d1b0441e88eb8846ba0c3d55e5f282e3d3f8d0a35a43a9b3e33.cairo" - }, - "parent_location": [ - { - "end_col": 23, - "end_line": 74, - "input_file": { - "filename": "src/renderers/DustyPilotRenderer.cairo" - }, - "parent_location": [ - { - "end_col": 70, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/external/transferOwnership/da17921a4e81c09e730800bbf23bfdbe5e9e6bfaedc59d80fbf62087fa43c27d.cairo" - }, - "parent_location": [ - { - "end_col": 23, - "end_line": 74, - "input_file": { - "filename": "src/renderers/DustyPilotRenderer.cairo" - }, - "start_col": 6, - "start_line": 74 - }, - "While constructing the external wrapper for:" - ], - "start_col": 63, - "start_line": 1 - }, - "While expanding the reference 'retdata' in:" - ], - "start_col": 6, - "start_line": 74 - }, - "While constructing the external wrapper for:" - ], - "start_col": 9, - "start_line": 3 - } - }, - "817": { - "accessible_scopes": [ - "__main__", - "__main__", - "__wrappers__", - "__wrappers__.transferOwnership" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 72, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/external/transferOwnership/da17921a4e81c09e730800bbf23bfdbe5e9e6bfaedc59d80fbf62087fa43c27d.cairo" - }, - "parent_location": [ - { - "end_col": 23, - "end_line": 74, - "input_file": { - "filename": "src/renderers/DustyPilotRenderer.cairo" - }, - "start_col": 6, - "start_line": 74 - }, - "While constructing the external wrapper for:" - ], - "start_col": 1, - "start_line": 1 - } - }, - "818": { - "accessible_scopes": [ - "__main__", - "__main__", - "__main__.initialize" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 35, - "end_line": 82, - "input_file": { - "filename": "src/renderers/DustyPilotRenderer.cairo" - }, - "parent_location": [ - { - "end_col": 33, - "end_line": 13, - "input_file": { - "filename": "autogen/starknet/storage_var/initialized/decl.cairo" - }, - "parent_location": [ - { - "end_col": 44, - "end_line": 83, - "input_file": { - "filename": "src/renderers/DustyPilotRenderer.cairo" - }, - "start_col": 26, - "start_line": 83 - }, - "While trying to retrieve the implicit argument 'syscall_ptr' in:" - ], - "start_col": 15, - "start_line": 13 - }, - "While expanding the reference 'syscall_ptr' in:" - ], - "start_col": 17, - "start_line": 82 - } - }, - "819": { - "accessible_scopes": [ - "__main__", - "__main__", - "__main__.initialize" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 63, - "end_line": 82, - "input_file": { - "filename": "src/renderers/DustyPilotRenderer.cairo" - }, - "parent_location": [ - { - "end_col": 61, - "end_line": 13, - "input_file": { - "filename": "autogen/starknet/storage_var/initialized/decl.cairo" - }, - "parent_location": [ - { - "end_col": 44, - "end_line": 83, - "input_file": { - "filename": "src/renderers/DustyPilotRenderer.cairo" - }, - "start_col": 26, - "start_line": 83 - }, - "While trying to retrieve the implicit argument 'pedersen_ptr' in:" - ], - "start_col": 35, - "start_line": 13 - }, - "While expanding the reference 'pedersen_ptr' in:" - ], - "start_col": 37, - "start_line": 82 - } - }, - "820": { - "accessible_scopes": [ - "__main__", - "__main__", - "__main__.initialize" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 80, - "end_line": 82, - "input_file": { - "filename": "src/renderers/DustyPilotRenderer.cairo" - }, - "parent_location": [ - { - "end_col": 78, - "end_line": 13, - "input_file": { - "filename": "autogen/starknet/storage_var/initialized/decl.cairo" - }, - "parent_location": [ - { - "end_col": 44, - "end_line": 83, - "input_file": { - "filename": "src/renderers/DustyPilotRenderer.cairo" - }, - "start_col": 26, - "start_line": 83 - }, - "While trying to retrieve the implicit argument 'range_check_ptr' in:" - ], - "start_col": 63, - "start_line": 13 - }, - "While expanding the reference 'range_check_ptr' in:" - ], - "start_col": 65, - "start_line": 82 - } - }, - "821": { - "accessible_scopes": [ - "__main__", - "__main__", - "__main__.initialize" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 44, - "end_line": 83, - "input_file": { - "filename": "src/renderers/DustyPilotRenderer.cairo" - }, - "start_col": 26, - "start_line": 83 - } - }, - "823": { - "accessible_scopes": [ - "__main__", - "__main__", - "__main__.initialize" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 29, - "end_line": 84, - "input_file": { - "filename": "src/renderers/DustyPilotRenderer.cairo" - }, - "start_col": 5, - "start_line": 84 - } - }, - "825": { - "accessible_scopes": [ - "__main__", - "__main__", - "__main__.initialize" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 33, - "end_line": 13, - "input_file": { - "filename": "autogen/starknet/storage_var/initialized/decl.cairo" - }, - "parent_location": [ - { - "end_col": 44, - "end_line": 83, - "input_file": { - "filename": "src/renderers/DustyPilotRenderer.cairo" - }, - "parent_location": [ - { - "end_col": 40, - "end_line": 31, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/access/ownable/library.cairo" - }, - "parent_location": [ - { - "end_col": 31, - "end_line": 85, - "input_file": { - "filename": "src/renderers/DustyPilotRenderer.cairo" - }, - "start_col": 5, - "start_line": 85 - }, - "While trying to retrieve the implicit argument 'syscall_ptr' in:" - ], - "start_col": 22, - "start_line": 31 - }, - "While expanding the reference 'syscall_ptr' in:" - ], - "start_col": 26, - "start_line": 83 - }, - "While trying to update the implicit return value 'syscall_ptr' in:" - ], - "start_col": 15, - "start_line": 13 - } - }, - "826": { - "accessible_scopes": [ - "__main__", - "__main__", - "__main__.initialize" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 61, - "end_line": 13, - "input_file": { - "filename": "autogen/starknet/storage_var/initialized/decl.cairo" - }, - "parent_location": [ - { - "end_col": 44, - "end_line": 83, - "input_file": { - "filename": "src/renderers/DustyPilotRenderer.cairo" - }, - "parent_location": [ - { - "end_col": 68, - "end_line": 31, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/access/ownable/library.cairo" - }, - "parent_location": [ - { - "end_col": 31, - "end_line": 85, - "input_file": { - "filename": "src/renderers/DustyPilotRenderer.cairo" - }, - "start_col": 5, - "start_line": 85 - }, - "While trying to retrieve the implicit argument 'pedersen_ptr' in:" - ], - "start_col": 42, - "start_line": 31 - }, - "While expanding the reference 'pedersen_ptr' in:" - ], - "start_col": 26, - "start_line": 83 - }, - "While trying to update the implicit return value 'pedersen_ptr' in:" - ], - "start_col": 35, - "start_line": 13 - } - }, - "827": { - "accessible_scopes": [ - "__main__", - "__main__", - "__main__.initialize" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 78, - "end_line": 13, - "input_file": { - "filename": "autogen/starknet/storage_var/initialized/decl.cairo" - }, - "parent_location": [ - { - "end_col": 44, - "end_line": 83, - "input_file": { - "filename": "src/renderers/DustyPilotRenderer.cairo" - }, - "parent_location": [ - { - "end_col": 85, - "end_line": 31, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/access/ownable/library.cairo" - }, - "parent_location": [ - { - "end_col": 31, - "end_line": 85, - "input_file": { - "filename": "src/renderers/DustyPilotRenderer.cairo" - }, - "start_col": 5, - "start_line": 85 - }, - "While trying to retrieve the implicit argument 'range_check_ptr' in:" - ], - "start_col": 70, - "start_line": 31 - }, - "While expanding the reference 'range_check_ptr' in:" - ], - "start_col": 26, - "start_line": 83 - }, - "While trying to update the implicit return value 'range_check_ptr' in:" - ], - "start_col": 63, - "start_line": 13 - } - }, - "828": { - "accessible_scopes": [ - "__main__", - "__main__", - "__main__.initialize" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 93, - "end_line": 82, - "input_file": { - "filename": "src/renderers/DustyPilotRenderer.cairo" - }, - "parent_location": [ - { - "end_col": 30, - "end_line": 85, - "input_file": { - "filename": "src/renderers/DustyPilotRenderer.cairo" - }, - "start_col": 25, - "start_line": 85 - }, - "While expanding the reference 'owner' in:" - ], - "start_col": 82, - "start_line": 82 - } - }, - "829": { - "accessible_scopes": [ - "__main__", - "__main__", - "__main__.initialize" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 31, - "end_line": 85, - "input_file": { - "filename": "src/renderers/DustyPilotRenderer.cairo" - }, - "start_col": 5, - "start_line": 85 - } - }, - "831": { - "accessible_scopes": [ - "__main__", - "__main__", - "__main__.initialize" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 24, - "end_line": 86, - "input_file": { - "filename": "src/renderers/DustyPilotRenderer.cairo" - }, - "start_col": 23, - "start_line": 86 - } - }, - "833": { - "accessible_scopes": [ - "__main__", - "__main__", - "__main__.initialize" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 25, - "end_line": 86, - "input_file": { - "filename": "src/renderers/DustyPilotRenderer.cairo" - }, - "start_col": 5, - "start_line": 86 - } - }, - "835": { - "accessible_scopes": [ - "__main__", - "__main__", - "__main__.initialize" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 15, - "end_line": 87, - "input_file": { - "filename": "src/renderers/DustyPilotRenderer.cairo" - }, - "start_col": 5, - "start_line": 87 - } - }, - "836": { - "accessible_scopes": [ - "__main__", - "__main__", - "__wrappers__", - "__wrappers__.initialize" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 40, - "end_line": 2, - "input_file": { - "filename": "autogen/starknet/arg_processor/f6a4d9ae897caf37cefd18f7c8da7eee73157818279359aadee282f0fe59cdbc.cairo" - }, - "parent_location": [ - { - "end_col": 93, - "end_line": 82, - "input_file": { - "filename": "src/renderers/DustyPilotRenderer.cairo" - }, - "parent_location": [ - { - "end_col": 45, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/arg_processor/c31620b02d4d706f0542c989b2aadc01b0981d1f6a5933a8fe4937ace3d70d92.cairo" - }, - "parent_location": [ - { - "end_col": 16, - "end_line": 82, - "input_file": { - "filename": "src/renderers/DustyPilotRenderer.cairo" - }, - "parent_location": [ - { - "end_col": 57, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/arg_processor/01cba52f8515996bb9d7070bde81ff39281d096d7024a558efcba6e1fd2402cf.cairo" - }, - "parent_location": [ - { - "end_col": 16, - "end_line": 82, - "input_file": { - "filename": "src/renderers/DustyPilotRenderer.cairo" - }, - "start_col": 6, - "start_line": 82 - }, - "While handling calldata of" - ], - "start_col": 35, - "start_line": 1 - }, - "While expanding the reference '__calldata_actual_size' in:" - ], - "start_col": 6, - "start_line": 82 - }, - "While handling calldata of" - ], - "start_col": 31, - "start_line": 1 - }, - "While expanding the reference '__calldata_ptr' in:" - ], - "start_col": 82, - "start_line": 82 - }, - "While handling calldata argument 'owner'" - ], - "start_col": 22, - "start_line": 2 - } - }, - "838": { - "accessible_scopes": [ - "__main__", - "__main__", - "__wrappers__", - "__wrappers__.initialize" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 58, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/arg_processor/01cba52f8515996bb9d7070bde81ff39281d096d7024a558efcba6e1fd2402cf.cairo" - }, - "parent_location": [ - { - "end_col": 16, - "end_line": 82, - "input_file": { - "filename": "src/renderers/DustyPilotRenderer.cairo" - }, - "start_col": 6, - "start_line": 82 - }, - "While handling calldata of" - ], - "start_col": 1, - "start_line": 1 - } - }, - "839": { - "accessible_scopes": [ - "__main__", - "__main__", - "__wrappers__", - "__wrappers__.initialize" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 64, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/external/initialize/b2c52ca2d2a8fc8791a983086d8716c5eacd0c3d62934914d2286f84b98ff4cb.cairo" - }, - "parent_location": [ - { - "end_col": 35, - "end_line": 82, - "input_file": { - "filename": "src/renderers/DustyPilotRenderer.cairo" - }, - "parent_location": [ - { - "end_col": 55, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/external/initialize/5243d13a214edd1f03ee87eac1b3ceb0ae897772a136cabb4cc7905c46b3e2c4.cairo" - }, - "parent_location": [ - { - "end_col": 16, - "end_line": 82, - "input_file": { - "filename": "src/renderers/DustyPilotRenderer.cairo" - }, - "start_col": 6, - "start_line": 82 - }, - "While constructing the external wrapper for:" - ], - "start_col": 44, - "start_line": 1 - }, - "While expanding the reference 'syscall_ptr' in:" - ], - "start_col": 17, - "start_line": 82 - }, - "While constructing the external wrapper for:" - ], - "start_col": 19, - "start_line": 1 - } - }, - "840": { - "accessible_scopes": [ - "__main__", - "__main__", - "__wrappers__", - "__wrappers__.initialize" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 110, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/external/initialize/9684a85e93c782014ca14293edea4eb2502039a5a7b6538ecd39c56faaf12529.cairo" - }, - "parent_location": [ - { - "end_col": 63, - "end_line": 82, - "input_file": { - "filename": "src/renderers/DustyPilotRenderer.cairo" - }, - "parent_location": [ - { - "end_col": 82, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/external/initialize/5243d13a214edd1f03ee87eac1b3ceb0ae897772a136cabb4cc7905c46b3e2c4.cairo" - }, - "parent_location": [ - { - "end_col": 16, - "end_line": 82, - "input_file": { - "filename": "src/renderers/DustyPilotRenderer.cairo" - }, - "start_col": 6, - "start_line": 82 - }, - "While constructing the external wrapper for:" - ], - "start_col": 70, - "start_line": 1 - }, - "While expanding the reference 'pedersen_ptr' in:" - ], - "start_col": 37, - "start_line": 82 - }, - "While constructing the external wrapper for:" - ], - "start_col": 20, - "start_line": 1 - } - }, - "841": { - "accessible_scopes": [ - "__main__", - "__main__", - "__wrappers__", - "__wrappers__.initialize" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 67, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/external/initialize/741ea357d6336b0bed7bf0472425acd0311d543883b803388880e60a232040c7.cairo" - }, - "parent_location": [ - { - "end_col": 80, - "end_line": 82, - "input_file": { - "filename": "src/renderers/DustyPilotRenderer.cairo" - }, - "parent_location": [ - { - "end_col": 115, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/external/initialize/5243d13a214edd1f03ee87eac1b3ceb0ae897772a136cabb4cc7905c46b3e2c4.cairo" - }, - "parent_location": [ - { - "end_col": 16, - "end_line": 82, - "input_file": { - "filename": "src/renderers/DustyPilotRenderer.cairo" - }, - "start_col": 6, - "start_line": 82 - }, - "While constructing the external wrapper for:" - ], - "start_col": 100, - "start_line": 1 - }, - "While expanding the reference 'range_check_ptr' in:" - ], - "start_col": 65, - "start_line": 82 - }, - "While constructing the external wrapper for:" - ], - "start_col": 23, - "start_line": 1 - } - }, - "842": { - "accessible_scopes": [ - "__main__", - "__main__", - "__wrappers__", - "__wrappers__.initialize" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 44, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/arg_processor/f6a4d9ae897caf37cefd18f7c8da7eee73157818279359aadee282f0fe59cdbc.cairo" - }, - "parent_location": [ - { - "end_col": 93, - "end_line": 82, - "input_file": { - "filename": "src/renderers/DustyPilotRenderer.cairo" - }, - "parent_location": [ - { - "end_col": 143, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/external/initialize/5243d13a214edd1f03ee87eac1b3ceb0ae897772a136cabb4cc7905c46b3e2c4.cairo" - }, - "parent_location": [ - { - "end_col": 16, - "end_line": 82, - "input_file": { - "filename": "src/renderers/DustyPilotRenderer.cairo" - }, - "start_col": 6, - "start_line": 82 - }, - "While constructing the external wrapper for:" - ], - "start_col": 123, - "start_line": 1 - }, - "While expanding the reference '__calldata_arg_owner' in:" - ], - "start_col": 82, - "start_line": 82 - }, - "While handling calldata argument 'owner'" - ], - "start_col": 28, - "start_line": 1 - } - }, - "843": { - "accessible_scopes": [ - "__main__", - "__main__", - "__wrappers__", - "__wrappers__.initialize" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 16, - "end_line": 82, - "input_file": { - "filename": "src/renderers/DustyPilotRenderer.cairo" - }, - "start_col": 6, - "start_line": 82 - } - }, - "845": { - "accessible_scopes": [ - "__main__", - "__main__", - "__wrappers__", - "__wrappers__.initialize" - ], - "flow_tracking_data": null, - "hints": [ - { - "location": { - "end_col": 34, - "end_line": 2, - "input_file": { - "filename": "autogen/starknet/external/initialize/5243d13a214edd1f03ee87eac1b3ceb0ae897772a136cabb4cc7905c46b3e2c4.cairo" - }, - "parent_location": [ - { - "end_col": 16, - "end_line": 82, - "input_file": { - "filename": "src/renderers/DustyPilotRenderer.cairo" - }, - "start_col": 6, - "start_line": 82 - }, - "While constructing the external wrapper for:" - ], - "start_col": 1, - "start_line": 2 - }, - "n_prefix_newlines": 0 - } - ], - "inst": { - "end_col": 24, - "end_line": 3, - "input_file": { - "filename": "autogen/starknet/external/initialize/5243d13a214edd1f03ee87eac1b3ceb0ae897772a136cabb4cc7905c46b3e2c4.cairo" - }, - "parent_location": [ - { - "end_col": 16, - "end_line": 82, - "input_file": { - "filename": "src/renderers/DustyPilotRenderer.cairo" - }, - "start_col": 6, - "start_line": 82 - }, - "While constructing the external wrapper for:" - ], - "start_col": 1, - "start_line": 3 - } - }, - "847": { - "accessible_scopes": [ - "__main__", - "__main__", - "__wrappers__", - "__wrappers__.initialize" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 55, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/external/initialize/5243d13a214edd1f03ee87eac1b3ceb0ae897772a136cabb4cc7905c46b3e2c4.cairo" - }, - "parent_location": [ - { - "end_col": 16, - "end_line": 82, - "input_file": { - "filename": "src/renderers/DustyPilotRenderer.cairo" - }, - "parent_location": [ - { - "end_col": 20, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/external/initialize/da17921a4e81c09e730800bbf23bfdbe5e9e6bfaedc59d80fbf62087fa43c27d.cairo" - }, - "parent_location": [ - { - "end_col": 16, - "end_line": 82, - "input_file": { - "filename": "src/renderers/DustyPilotRenderer.cairo" - }, - "start_col": 6, - "start_line": 82 - }, - "While constructing the external wrapper for:" - ], - "start_col": 9, - "start_line": 1 - }, - "While expanding the reference 'syscall_ptr' in:" - ], - "start_col": 6, - "start_line": 82 - }, - "While constructing the external wrapper for:" - ], - "start_col": 44, - "start_line": 1 - } - }, - "848": { - "accessible_scopes": [ - "__main__", - "__main__", - "__wrappers__", - "__wrappers__.initialize" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 82, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/external/initialize/5243d13a214edd1f03ee87eac1b3ceb0ae897772a136cabb4cc7905c46b3e2c4.cairo" - }, - "parent_location": [ - { - "end_col": 16, - "end_line": 82, - "input_file": { - "filename": "src/renderers/DustyPilotRenderer.cairo" - }, - "parent_location": [ - { - "end_col": 33, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/external/initialize/da17921a4e81c09e730800bbf23bfdbe5e9e6bfaedc59d80fbf62087fa43c27d.cairo" - }, - "parent_location": [ - { - "end_col": 16, - "end_line": 82, - "input_file": { - "filename": "src/renderers/DustyPilotRenderer.cairo" - }, - "start_col": 6, - "start_line": 82 - }, - "While constructing the external wrapper for:" - ], - "start_col": 21, - "start_line": 1 - }, - "While expanding the reference 'pedersen_ptr' in:" - ], - "start_col": 6, - "start_line": 82 - }, - "While constructing the external wrapper for:" - ], - "start_col": 70, - "start_line": 1 - } - }, - "849": { - "accessible_scopes": [ - "__main__", - "__main__", - "__wrappers__", - "__wrappers__.initialize" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 115, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/external/initialize/5243d13a214edd1f03ee87eac1b3ceb0ae897772a136cabb4cc7905c46b3e2c4.cairo" - }, - "parent_location": [ - { - "end_col": 16, - "end_line": 82, - "input_file": { - "filename": "src/renderers/DustyPilotRenderer.cairo" - }, - "parent_location": [ - { - "end_col": 49, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/external/initialize/da17921a4e81c09e730800bbf23bfdbe5e9e6bfaedc59d80fbf62087fa43c27d.cairo" - }, - "parent_location": [ - { - "end_col": 16, - "end_line": 82, - "input_file": { - "filename": "src/renderers/DustyPilotRenderer.cairo" - }, - "start_col": 6, - "start_line": 82 - }, - "While constructing the external wrapper for:" - ], - "start_col": 34, - "start_line": 1 - }, - "While expanding the reference 'range_check_ptr' in:" - ], - "start_col": 6, - "start_line": 82 - }, - "While constructing the external wrapper for:" - ], - "start_col": 100, - "start_line": 1 - } - }, - "850": { - "accessible_scopes": [ - "__main__", - "__main__", - "__wrappers__", - "__wrappers__.initialize" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 21, - "end_line": 4, - "input_file": { - "filename": "autogen/starknet/external/initialize/5243d13a214edd1f03ee87eac1b3ceb0ae897772a136cabb4cc7905c46b3e2c4.cairo" - }, - "parent_location": [ - { - "end_col": 16, - "end_line": 82, - "input_file": { - "filename": "src/renderers/DustyPilotRenderer.cairo" - }, - "parent_location": [ - { - "end_col": 62, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/external/initialize/da17921a4e81c09e730800bbf23bfdbe5e9e6bfaedc59d80fbf62087fa43c27d.cairo" - }, - "parent_location": [ - { - "end_col": 16, - "end_line": 82, - "input_file": { - "filename": "src/renderers/DustyPilotRenderer.cairo" - }, - "start_col": 6, - "start_line": 82 - }, - "While constructing the external wrapper for:" - ], - "start_col": 50, - "start_line": 1 - }, - "While expanding the reference 'retdata_size' in:" - ], - "start_col": 6, - "start_line": 82 - }, - "While constructing the external wrapper for:" - ], - "start_col": 20, - "start_line": 4 - } - }, - "852": { - "accessible_scopes": [ - "__main__", - "__main__", - "__wrappers__", - "__wrappers__.initialize" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 16, - "end_line": 3, - "input_file": { - "filename": "autogen/starknet/external/initialize/5243d13a214edd1f03ee87eac1b3ceb0ae897772a136cabb4cc7905c46b3e2c4.cairo" - }, - "parent_location": [ - { - "end_col": 16, - "end_line": 82, - "input_file": { - "filename": "src/renderers/DustyPilotRenderer.cairo" - }, - "parent_location": [ - { - "end_col": 70, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/external/initialize/da17921a4e81c09e730800bbf23bfdbe5e9e6bfaedc59d80fbf62087fa43c27d.cairo" - }, - "parent_location": [ - { - "end_col": 16, - "end_line": 82, - "input_file": { - "filename": "src/renderers/DustyPilotRenderer.cairo" - }, - "start_col": 6, - "start_line": 82 - }, - "While constructing the external wrapper for:" - ], - "start_col": 63, - "start_line": 1 - }, - "While expanding the reference 'retdata' in:" - ], - "start_col": 6, - "start_line": 82 - }, - "While constructing the external wrapper for:" - ], - "start_col": 9, - "start_line": 3 - } - }, - "853": { - "accessible_scopes": [ - "__main__", - "__main__", - "__wrappers__", - "__wrappers__.initialize" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 72, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/external/initialize/da17921a4e81c09e730800bbf23bfdbe5e9e6bfaedc59d80fbf62087fa43c27d.cairo" - }, - "parent_location": [ - { - "end_col": 16, - "end_line": 82, - "input_file": { - "filename": "src/renderers/DustyPilotRenderer.cairo" - }, - "start_col": 6, - "start_line": 82 - }, - "While constructing the external wrapper for:" - ], - "start_col": 1, - "start_line": 1 - } - }, - "854": { - "accessible_scopes": [ - "__main__", - "__main__._find_index" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 7, - "end_line": 93, - "input_file": { - "filename": "src/renderers/DustyPilotRenderer.cairo" - }, - "start_col": 5, - "start_line": 93 - } - }, - "856": { - "accessible_scopes": [ - "__main__", - "__main__._find_index" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 44, - "end_line": 90, - "input_file": { - "filename": "src/renderers/DustyPilotRenderer.cairo" - }, - "parent_location": [ - { - "end_col": 44, - "end_line": 90, - "input_file": { - "filename": "src/renderers/DustyPilotRenderer.cairo" - }, - "parent_location": [ - { - "end_col": 33, - "end_line": 94, - "input_file": { - "filename": "src/renderers/DustyPilotRenderer.cairo" - }, - "start_col": 9, - "start_line": 94 - }, - "While trying to retrieve the implicit argument 'pedersen_ptr' in:" - ], - "start_col": 18, - "start_line": 90 - }, - "While expanding the reference 'pedersen_ptr' in:" - ], - "start_col": 18, - "start_line": 90 - } - }, - "857": { - "accessible_scopes": [ - "__main__", - "__main__._find_index" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 64, - "end_line": 90, - "input_file": { - "filename": "src/renderers/DustyPilotRenderer.cairo" - }, - "parent_location": [ - { - "end_col": 64, - "end_line": 90, - "input_file": { - "filename": "src/renderers/DustyPilotRenderer.cairo" - }, - "parent_location": [ - { - "end_col": 33, - "end_line": 94, - "input_file": { - "filename": "src/renderers/DustyPilotRenderer.cairo" - }, - "start_col": 9, - "start_line": 94 - }, - "While trying to retrieve the implicit argument 'syscall_ptr' in:" - ], - "start_col": 46, - "start_line": 90 - }, - "While expanding the reference 'syscall_ptr' in:" - ], - "start_col": 46, - "start_line": 90 - } - }, - "858": { - "accessible_scopes": [ - "__main__", - "__main__._find_index" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 81, - "end_line": 90, - "input_file": { - "filename": "src/renderers/DustyPilotRenderer.cairo" - }, - "parent_location": [ - { - "end_col": 81, - "end_line": 90, - "input_file": { - "filename": "src/renderers/DustyPilotRenderer.cairo" - }, - "parent_location": [ - { - "end_col": 33, - "end_line": 94, - "input_file": { - "filename": "src/renderers/DustyPilotRenderer.cairo" - }, - "start_col": 9, - "start_line": 94 - }, - "While trying to retrieve the implicit argument 'range_check_ptr' in:" - ], - "start_col": 66, - "start_line": 90 - }, - "While expanding the reference 'range_check_ptr' in:" - ], - "start_col": 66, - "start_line": 90 - } - }, - "859": { - "accessible_scopes": [ - "__main__", - "__main__._find_index" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 31, - "end_line": 94, - "input_file": { - "filename": "src/renderers/DustyPilotRenderer.cairo" - }, - "start_col": 23, - "start_line": 94 - } - }, - "861": { - "accessible_scopes": [ - "__main__", - "__main__._find_index" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 33, - "end_line": 94, - "input_file": { - "filename": "src/renderers/DustyPilotRenderer.cairo" - }, - "start_col": 9, - "start_line": 94 - } - }, - "862": { - "accessible_scopes": [ - "__main__", - "__main__._find_index" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 81, - "end_line": 90, - "input_file": { - "filename": "src/renderers/DustyPilotRenderer.cairo" - }, - "parent_location": [ - { - "end_col": 27, - "end_line": 42, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/math_cmp.cairo" - }, - "parent_location": [ - { - "end_col": 39, - "end_line": 97, - "input_file": { - "filename": "src/renderers/DustyPilotRenderer.cairo" - }, - "start_col": 17, - "start_line": 97 - }, - "While trying to retrieve the implicit argument 'range_check_ptr' in:" - ], - "start_col": 12, - "start_line": 42 - }, - "While expanding the reference 'range_check_ptr' in:" - ], - "start_col": 66, - "start_line": 90 - } - }, - "863": { - "accessible_scopes": [ - "__main__", - "__main__._find_index" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 17, - "end_line": 91, - "input_file": { - "filename": "src/renderers/DustyPilotRenderer.cairo" - }, - "parent_location": [ - { - "end_col": 29, - "end_line": 97, - "input_file": { - "filename": "src/renderers/DustyPilotRenderer.cairo" - }, - "start_col": 23, - "start_line": 97 - }, - "While expanding the reference 'rarity' in:" - ], - "start_col": 5, - "start_line": 91 - } - }, - "864": { - "accessible_scopes": [ - "__main__", - "__main__._find_index" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 24, - "end_line": 96, - "input_file": { - "filename": "src/renderers/DustyPilotRenderer.cairo" - }, - "parent_location": [ - { - "end_col": 38, - "end_line": 97, - "input_file": { - "filename": "src/renderers/DustyPilotRenderer.cairo" - }, - "start_col": 31, - "start_line": 97 - }, - "While expanding the reference 'current' in:" - ], - "start_col": 19, - "start_line": 96 - } - }, - "865": { - "accessible_scopes": [ - "__main__", - "__main__._find_index" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 39, - "end_line": 97, - "input_file": { - "filename": "src/renderers/DustyPilotRenderer.cairo" - }, - "start_col": 17, - "start_line": 97 - } - }, - "867": { - "accessible_scopes": [ - "__main__", - "__main__._find_index" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 7, - "end_line": 98, - "input_file": { - "filename": "src/renderers/DustyPilotRenderer.cairo" - }, - "start_col": 5, - "start_line": 98 - } - }, - "869": { - "accessible_scopes": [ - "__main__", - "__main__._find_index" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 44, - "end_line": 90, - "input_file": { - "filename": "src/renderers/DustyPilotRenderer.cairo" - }, - "parent_location": [ - { - "end_col": 44, - "end_line": 90, - "input_file": { - "filename": "src/renderers/DustyPilotRenderer.cairo" - }, - "parent_location": [ - { - "end_col": 57, - "end_line": 99, - "input_file": { - "filename": "src/renderers/DustyPilotRenderer.cairo" - }, - "start_col": 16, - "start_line": 99 - }, - "While trying to retrieve the implicit argument 'pedersen_ptr' in:" - ], - "start_col": 18, - "start_line": 90 - }, - "While expanding the reference 'pedersen_ptr' in:" - ], - "start_col": 18, - "start_line": 90 - } - }, - "870": { - "accessible_scopes": [ - "__main__", - "__main__._find_index" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 64, - "end_line": 90, - "input_file": { - "filename": "src/renderers/DustyPilotRenderer.cairo" - }, - "parent_location": [ - { - "end_col": 64, - "end_line": 90, - "input_file": { - "filename": "src/renderers/DustyPilotRenderer.cairo" - }, - "parent_location": [ - { - "end_col": 57, - "end_line": 99, - "input_file": { - "filename": "src/renderers/DustyPilotRenderer.cairo" - }, - "start_col": 16, - "start_line": 99 - }, - "While trying to retrieve the implicit argument 'syscall_ptr' in:" - ], - "start_col": 46, - "start_line": 90 - }, - "While expanding the reference 'syscall_ptr' in:" - ], - "start_col": 46, - "start_line": 90 - } - }, - "871": { - "accessible_scopes": [ - "__main__", - "__main__._find_index" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 27, - "end_line": 42, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/math_cmp.cairo" - }, - "parent_location": [ - { - "end_col": 39, - "end_line": 97, - "input_file": { - "filename": "src/renderers/DustyPilotRenderer.cairo" - }, - "parent_location": [ - { - "end_col": 81, - "end_line": 90, - "input_file": { - "filename": "src/renderers/DustyPilotRenderer.cairo" - }, - "parent_location": [ - { - "end_col": 57, - "end_line": 99, - "input_file": { - "filename": "src/renderers/DustyPilotRenderer.cairo" - }, - "start_col": 16, - "start_line": 99 - }, - "While trying to retrieve the implicit argument 'range_check_ptr' in:" - ], - "start_col": 66, - "start_line": 90 - }, - "While expanding the reference 'range_check_ptr' in:" - ], - "start_col": 17, - "start_line": 97 - }, - "While trying to update the implicit return value 'range_check_ptr' in:" - ], - "start_col": 12, - "start_line": 42 - } - }, - "872": { - "accessible_scopes": [ - "__main__", - "__main__._find_index" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 17, - "end_line": 91, - "input_file": { - "filename": "src/renderers/DustyPilotRenderer.cairo" - }, - "parent_location": [ - { - "end_col": 34, - "end_line": 99, - "input_file": { - "filename": "src/renderers/DustyPilotRenderer.cairo" - }, - "start_col": 28, - "start_line": 99 - }, - "While expanding the reference 'rarity' in:" - ], - "start_col": 5, - "start_line": 91 - } - }, - "873": { - "accessible_scopes": [ - "__main__", - "__main__._find_index" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 47, - "end_line": 99, - "input_file": { - "filename": "src/renderers/DustyPilotRenderer.cairo" - }, - "start_col": 36, - "start_line": 99 - } - }, - "875": { - "accessible_scopes": [ - "__main__", - "__main__._find_index" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 56, - "end_line": 99, - "input_file": { - "filename": "src/renderers/DustyPilotRenderer.cairo" - }, - "start_col": 49, - "start_line": 99 - } - }, - "877": { - "accessible_scopes": [ - "__main__", - "__main__._find_index" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 57, - "end_line": 99, - "input_file": { - "filename": "src/renderers/DustyPilotRenderer.cairo" - }, - "start_col": 16, - "start_line": 99 - } - }, - "879": { - "accessible_scopes": [ - "__main__", - "__main__._find_index" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 58, - "end_line": 99, - "input_file": { - "filename": "src/renderers/DustyPilotRenderer.cairo" - }, - "start_col": 9, - "start_line": 99 - } - }, - "880": { - "accessible_scopes": [ - "__main__", - "__main__._find_index" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 44, - "end_line": 90, - "input_file": { - "filename": "src/renderers/DustyPilotRenderer.cairo" - }, - "parent_location": [ - { - "end_col": 44, - "end_line": 90, - "input_file": { - "filename": "src/renderers/DustyPilotRenderer.cairo" - }, - "parent_location": [ - { - "end_col": 28, - "end_line": 101, - "input_file": { - "filename": "src/renderers/DustyPilotRenderer.cairo" - }, - "start_col": 5, - "start_line": 101 - }, - "While trying to retrieve the implicit argument 'pedersen_ptr' in:" - ], - "start_col": 18, - "start_line": 90 - }, - "While expanding the reference 'pedersen_ptr' in:" - ], - "start_col": 18, - "start_line": 90 - } - }, - "881": { - "accessible_scopes": [ - "__main__", - "__main__._find_index" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 64, - "end_line": 90, - "input_file": { - "filename": "src/renderers/DustyPilotRenderer.cairo" - }, - "parent_location": [ - { - "end_col": 64, - "end_line": 90, - "input_file": { - "filename": "src/renderers/DustyPilotRenderer.cairo" - }, - "parent_location": [ - { - "end_col": 28, - "end_line": 101, - "input_file": { - "filename": "src/renderers/DustyPilotRenderer.cairo" - }, - "start_col": 5, - "start_line": 101 - }, - "While trying to retrieve the implicit argument 'syscall_ptr' in:" - ], - "start_col": 46, - "start_line": 90 - }, - "While expanding the reference 'syscall_ptr' in:" - ], - "start_col": 46, - "start_line": 90 - } - }, - "882": { - "accessible_scopes": [ - "__main__", - "__main__._find_index" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 27, - "end_line": 42, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/math_cmp.cairo" - }, - "parent_location": [ - { - "end_col": 39, - "end_line": 97, - "input_file": { - "filename": "src/renderers/DustyPilotRenderer.cairo" - }, - "parent_location": [ - { - "end_col": 81, - "end_line": 90, - "input_file": { - "filename": "src/renderers/DustyPilotRenderer.cairo" - }, - "parent_location": [ - { - "end_col": 28, - "end_line": 101, - "input_file": { - "filename": "src/renderers/DustyPilotRenderer.cairo" - }, - "start_col": 5, - "start_line": 101 - }, - "While trying to retrieve the implicit argument 'range_check_ptr' in:" - ], - "start_col": 66, - "start_line": 90 - }, - "While expanding the reference 'range_check_ptr' in:" - ], - "start_col": 17, - "start_line": 97 - }, - "While trying to update the implicit return value 'range_check_ptr' in:" - ], - "start_col": 12, - "start_line": 42 - } - }, - "883": { - "accessible_scopes": [ - "__main__", - "__main__._find_index" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 32, - "end_line": 91, - "input_file": { - "filename": "src/renderers/DustyPilotRenderer.cairo" - }, - "parent_location": [ - { - "end_col": 26, - "end_line": 101, - "input_file": { - "filename": "src/renderers/DustyPilotRenderer.cairo" - }, - "start_col": 19, - "start_line": 101 - }, - "While expanding the reference 'arr_len' in:" - ], - "start_col": 19, - "start_line": 91 - } - }, - "884": { - "accessible_scopes": [ - "__main__", - "__main__._find_index" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 28, - "end_line": 101, - "input_file": { - "filename": "src/renderers/DustyPilotRenderer.cairo" - }, - "start_col": 5, - "start_line": 101 - } - }, - "885": { - "accessible_scopes": [ - "__main__", - "__main__", - "__main__.token_uri" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 18, - "end_line": 108, - "input_file": { - "filename": "src/renderers/DustyPilotRenderer.cairo" - }, - "start_col": 5, - "start_line": 108 - } - }, - "887": { - "accessible_scopes": [ - "__main__", - "__main__", - "__main__.token_uri" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 52, - "end_line": 109, - "input_file": { - "filename": "src/renderers/DustyPilotRenderer.cairo" - }, - "start_col": 41, - "start_line": 109 - } - }, - "889": { - "accessible_scopes": [ - "__main__", - "__main__", - "__main__.token_uri" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 53, - "end_line": 109, - "input_file": { - "filename": "src/renderers/DustyPilotRenderer.cairo" - }, - "start_col": 22, - "start_line": 109 - } - }, - "891": { - "accessible_scopes": [ - "__main__", - "__main__", - "__main__.token_uri" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 30, - "end_line": 110, - "input_file": { - "filename": "src/renderers/DustyPilotRenderer.cairo" - }, - "start_col": 23, - "start_line": 110 - } - }, - "893": { - "accessible_scopes": [ - "__main__", - "__main__", - "__main__.token_uri" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 19, - "end_line": 110, - "input_file": { - "filename": "src/renderers/DustyPilotRenderer.cairo" - }, - "parent_location": [ - { - "end_col": 19, - "end_line": 110, - "input_file": { - "filename": "src/renderers/DustyPilotRenderer.cairo" - }, - "start_col": 10, - "start_line": 110 - }, - "While auto generating local variable for 'token_uri'." - ], - "start_col": 10, - "start_line": 110 - } - }, - "894": { - "accessible_scopes": [ - "__main__", - "__main__", - "__main__.token_uri" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 31, - "end_line": 111, - "input_file": { - "filename": "src/renderers/DustyPilotRenderer.cairo" - }, - "start_col": 5, - "start_line": 111 - } - }, - "896": { - "accessible_scopes": [ - "__main__", - "__main__", - "__main__.token_uri" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 19, - "end_line": 110, - "input_file": { - "filename": "src/renderers/DustyPilotRenderer.cairo" - }, - "parent_location": [ - { - "end_col": 19, - "end_line": 110, - "input_file": { - "filename": "src/renderers/DustyPilotRenderer.cairo" - }, - "parent_location": [ - { - "end_col": 21, - "end_line": 112, - "input_file": { - "filename": "src/renderers/DustyPilotRenderer.cairo" - }, - "start_col": 12, - "start_line": 112 - }, - "While expanding the reference 'token_uri' in:" - ], - "start_col": 10, - "start_line": 110 - }, - "While auto generating local variable for 'token_uri'." - ], - "start_col": 10, - "start_line": 110 - } - }, - "897": { - "accessible_scopes": [ - "__main__", - "__main__", - "__main__.token_uri" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 18, - "end_line": 109, - "input_file": { - "filename": "src/renderers/DustyPilotRenderer.cairo" - }, - "parent_location": [ - { - "end_col": 31, - "end_line": 112, - "input_file": { - "filename": "src/renderers/DustyPilotRenderer.cairo" - }, - "start_col": 23, - "start_line": 112 - }, - "While expanding the reference 'base_uri' in:" - ], - "start_col": 10, - "start_line": 109 - } - }, - "898": { - "accessible_scopes": [ - "__main__", - "__main__", - "__main__.token_uri" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 24, - "end_line": 111, - "input_file": { - "filename": "src/renderers/DustyPilotRenderer.cairo" - }, - "parent_location": [ - { - "end_col": 46, - "end_line": 112, - "input_file": { - "filename": "src/renderers/DustyPilotRenderer.cairo" - }, - "start_col": 33, - "start_line": 112 - }, - "While expanding the reference 'token_uri_len' in:" - ], - "start_col": 11, - "start_line": 111 - } - }, - "899": { - "accessible_scopes": [ - "__main__", - "__main__", - "__main__.token_uri" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 47, - "end_line": 112, - "input_file": { - "filename": "src/renderers/DustyPilotRenderer.cairo" - }, - "start_col": 5, - "start_line": 112 - } - }, - "901": { - "accessible_scopes": [ - "__main__", - "__main__", - "__main__.token_uri" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 31, - "end_line": 114, - "input_file": { - "filename": "src/renderers/DustyPilotRenderer.cairo" - }, - "start_col": 24, - "start_line": 114 - } - }, - "903": { - "accessible_scopes": [ - "__main__", - "__main__", - "__main__.token_uri" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 20, - "end_line": 114, - "input_file": { - "filename": "src/renderers/DustyPilotRenderer.cairo" - }, - "parent_location": [ - { - "end_col": 20, - "end_line": 114, - "input_file": { - "filename": "src/renderers/DustyPilotRenderer.cairo" - }, - "start_col": 10, - "start_line": 114 - }, - "While auto generating local variable for 'thresholds'." - ], - "start_col": 10, - "start_line": 114 - } - }, - "904": { - "accessible_scopes": [ - "__main__", - "__main__", - "__main__.token_uri" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 62, - "end_line": 105, - "input_file": { - "filename": "src/renderers/DustyPilotRenderer.cairo" - }, - "parent_location": [ - { - "end_col": 41, - "end_line": 61, - "input_file": { - "filename": "src/renderers/DustyPilotRenderer.cairo" - }, - "parent_location": [ - { - "end_col": 36, - "end_line": 115, - "input_file": { - "filename": "src/renderers/DustyPilotRenderer.cairo" - }, - "start_col": 5, - "start_line": 115 - }, - "While trying to retrieve the implicit argument 'syscall_ptr' in:" - ], - "start_col": 23, - "start_line": 61 - }, - "While expanding the reference 'syscall_ptr' in:" - ], - "start_col": 44, - "start_line": 105 - } - }, - "905": { - "accessible_scopes": [ - "__main__", - "__main__", - "__main__.token_uri" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 42, - "end_line": 105, - "input_file": { - "filename": "src/renderers/DustyPilotRenderer.cairo" - }, - "parent_location": [ - { - "end_col": 69, - "end_line": 61, - "input_file": { - "filename": "src/renderers/DustyPilotRenderer.cairo" - }, - "parent_location": [ - { - "end_col": 36, - "end_line": 115, - "input_file": { - "filename": "src/renderers/DustyPilotRenderer.cairo" - }, - "start_col": 5, - "start_line": 115 - }, - "While trying to retrieve the implicit argument 'pedersen_ptr' in:" - ], - "start_col": 43, - "start_line": 61 - }, - "While expanding the reference 'pedersen_ptr' in:" - ], - "start_col": 16, - "start_line": 105 - } - }, - "906": { - "accessible_scopes": [ - "__main__", - "__main__", - "__main__.token_uri" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 79, - "end_line": 105, - "input_file": { - "filename": "src/renderers/DustyPilotRenderer.cairo" - }, - "parent_location": [ - { - "end_col": 86, - "end_line": 61, - "input_file": { - "filename": "src/renderers/DustyPilotRenderer.cairo" - }, - "parent_location": [ - { - "end_col": 36, - "end_line": 115, - "input_file": { - "filename": "src/renderers/DustyPilotRenderer.cairo" - }, - "start_col": 5, - "start_line": 115 - }, - "While trying to retrieve the implicit argument 'range_check_ptr' in:" - ], - "start_col": 71, - "start_line": 61 - }, - "While expanding the reference 'range_check_ptr' in:" - ], - "start_col": 64, - "start_line": 105 - } - }, - "907": { - "accessible_scopes": [ - "__main__", - "__main__", - "__main__.token_uri" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 23, - "end_line": 115, - "input_file": { - "filename": "src/renderers/DustyPilotRenderer.cairo" - }, - "start_col": 22, - "start_line": 115 - } - }, - "909": { - "accessible_scopes": [ - "__main__", - "__main__", - "__main__.token_uri" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 20, - "end_line": 114, - "input_file": { - "filename": "src/renderers/DustyPilotRenderer.cairo" - }, - "parent_location": [ - { - "end_col": 20, - "end_line": 114, - "input_file": { - "filename": "src/renderers/DustyPilotRenderer.cairo" - }, - "parent_location": [ - { - "end_col": 35, - "end_line": 115, - "input_file": { - "filename": "src/renderers/DustyPilotRenderer.cairo" - }, - "start_col": 25, - "start_line": 115 - }, - "While expanding the reference 'thresholds' in:" - ], - "start_col": 10, - "start_line": 114 - }, - "While auto generating local variable for 'thresholds'." - ], - "start_col": 10, - "start_line": 114 - } - }, - "910": { - "accessible_scopes": [ - "__main__", - "__main__", - "__main__.token_uri" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 36, - "end_line": 115, - "input_file": { - "filename": "src/renderers/DustyPilotRenderer.cairo" - }, - "start_col": 5, - "start_line": 115 - } - }, - "912": { - "accessible_scopes": [ - "__main__", - "__main__", - "__main__.token_uri" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 41, - "end_line": 61, - "input_file": { - "filename": "src/renderers/DustyPilotRenderer.cairo" - }, - "parent_location": [ - { - "end_col": 36, - "end_line": 115, - "input_file": { - "filename": "src/renderers/DustyPilotRenderer.cairo" - }, - "parent_location": [ - { - "end_col": 33, - "end_line": 13, - "input_file": { - "filename": "autogen/starknet/storage_var/_thresholds_len/decl.cairo" - }, - "parent_location": [ - { - "end_col": 56, - "end_line": 116, - "input_file": { - "filename": "src/renderers/DustyPilotRenderer.cairo" - }, - "start_col": 34, - "start_line": 116 - }, - "While trying to retrieve the implicit argument 'syscall_ptr' in:" - ], - "start_col": 15, - "start_line": 13 - }, - "While expanding the reference 'syscall_ptr' in:" - ], - "start_col": 5, - "start_line": 115 - }, - "While trying to update the implicit return value 'syscall_ptr' in:" - ], - "start_col": 23, - "start_line": 61 - } - }, - "913": { - "accessible_scopes": [ - "__main__", - "__main__", - "__main__.token_uri" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 69, - "end_line": 61, - "input_file": { - "filename": "src/renderers/DustyPilotRenderer.cairo" - }, - "parent_location": [ - { - "end_col": 36, - "end_line": 115, - "input_file": { - "filename": "src/renderers/DustyPilotRenderer.cairo" - }, - "parent_location": [ - { - "end_col": 61, - "end_line": 13, - "input_file": { - "filename": "autogen/starknet/storage_var/_thresholds_len/decl.cairo" - }, - "parent_location": [ - { - "end_col": 56, - "end_line": 116, - "input_file": { - "filename": "src/renderers/DustyPilotRenderer.cairo" - }, - "start_col": 34, - "start_line": 116 - }, - "While trying to retrieve the implicit argument 'pedersen_ptr' in:" - ], - "start_col": 35, - "start_line": 13 - }, - "While expanding the reference 'pedersen_ptr' in:" - ], - "start_col": 5, - "start_line": 115 - }, - "While trying to update the implicit return value 'pedersen_ptr' in:" - ], - "start_col": 43, - "start_line": 61 - } - }, - "914": { - "accessible_scopes": [ - "__main__", - "__main__", - "__main__.token_uri" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 86, - "end_line": 61, - "input_file": { - "filename": "src/renderers/DustyPilotRenderer.cairo" - }, - "parent_location": [ - { - "end_col": 36, - "end_line": 115, - "input_file": { - "filename": "src/renderers/DustyPilotRenderer.cairo" - }, - "parent_location": [ - { - "end_col": 78, - "end_line": 13, - "input_file": { - "filename": "autogen/starknet/storage_var/_thresholds_len/decl.cairo" - }, - "parent_location": [ - { - "end_col": 56, - "end_line": 116, - "input_file": { - "filename": "src/renderers/DustyPilotRenderer.cairo" - }, - "start_col": 34, - "start_line": 116 - }, - "While trying to retrieve the implicit argument 'range_check_ptr' in:" - ], - "start_col": 63, - "start_line": 13 - }, - "While expanding the reference 'range_check_ptr' in:" - ], - "start_col": 5, - "start_line": 115 - }, - "While trying to update the implicit return value 'range_check_ptr' in:" - ], - "start_col": 71, - "start_line": 61 - } - }, - "915": { - "accessible_scopes": [ - "__main__", - "__main__", - "__main__.token_uri" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 56, - "end_line": 116, - "input_file": { - "filename": "src/renderers/DustyPilotRenderer.cairo" - }, - "start_col": 34, - "start_line": 116 - } - }, - "917": { - "accessible_scopes": [ - "__main__", - "__main__", - "__main__.token_uri" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 30, - "end_line": 116, - "input_file": { - "filename": "src/renderers/DustyPilotRenderer.cairo" - }, - "start_col": 10, - "start_line": 116 - } - }, - "918": { - "accessible_scopes": [ - "__main__", - "__main__", - "__main__.token_uri" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 61, - "end_line": 13, - "input_file": { - "filename": "autogen/starknet/storage_var/_thresholds_len/decl.cairo" - }, - "parent_location": [ - { - "end_col": 56, - "end_line": 116, - "input_file": { - "filename": "src/renderers/DustyPilotRenderer.cairo" - }, - "parent_location": [ - { - "end_col": 47, - "end_line": 118, - "input_file": { - "filename": "src/renderers/DustyPilotRenderer.cairo" - }, - "start_col": 35, - "start_line": 118 - }, - "While expanding the reference 'pedersen_ptr' in:" - ], - "start_col": 34, - "start_line": 116 - }, - "While trying to update the implicit return value 'pedersen_ptr' in:" - ], - "start_col": 35, - "start_line": 13 - } - }, - "919": { - "accessible_scopes": [ - "__main__", - "__main__", - "__main__.token_uri" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 19, - "end_line": 106, - "input_file": { - "filename": "src/renderers/DustyPilotRenderer.cairo" - }, - "parent_location": [ - { - "end_col": 57, - "end_line": 118, - "input_file": { - "filename": "src/renderers/DustyPilotRenderer.cairo" - }, - "start_col": 49, - "start_line": 118 - }, - "While expanding the reference 'token_id' in:" - ], - "start_col": 5, - "start_line": 106 - } - }, - "920": { - "accessible_scopes": [ - "__main__", - "__main__", - "__main__.token_uri" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 32, - "end_line": 106, - "input_file": { - "filename": "src/renderers/DustyPilotRenderer.cairo" - }, - "parent_location": [ - { - "end_col": 64, - "end_line": 118, - "input_file": { - "filename": "src/renderers/DustyPilotRenderer.cairo" - }, - "start_col": 59, - "start_line": 118 - }, - "While expanding the reference 'value' in:" - ], - "start_col": 21, - "start_line": 106 - } - }, - "921": { - "accessible_scopes": [ - "__main__", - "__main__", - "__main__.token_uri" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 65, - "end_line": 118, - "input_file": { - "filename": "src/renderers/DustyPilotRenderer.cairo" - }, - "start_col": 20, - "start_line": 118 - } - }, - "923": { - "accessible_scopes": [ - "__main__", - "__main__", - "__main__.token_uri" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 78, - "end_line": 13, - "input_file": { - "filename": "autogen/starknet/storage_var/_thresholds_len/decl.cairo" - }, - "parent_location": [ - { - "end_col": 56, - "end_line": 116, - "input_file": { - "filename": "src/renderers/DustyPilotRenderer.cairo" - }, - "parent_location": [ - { - "end_col": 32, - "end_line": 124, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/math.cairo" - }, - "parent_location": [ - { - "end_col": 41, - "end_line": 119, - "input_file": { - "filename": "src/renderers/DustyPilotRenderer.cairo" - }, - "start_col": 23, - "start_line": 119 - }, - "While trying to retrieve the implicit argument 'range_check_ptr' in:" - ], - "start_col": 17, - "start_line": 124 - }, - "While expanding the reference 'range_check_ptr' in:" - ], - "start_col": 34, - "start_line": 116 - }, - "While trying to update the implicit return value 'range_check_ptr' in:" - ], - "start_col": 63, - "start_line": 13 - } - }, - "924": { - "accessible_scopes": [ - "__main__", - "__main__", - "__main__.token_uri" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 16, - "end_line": 118, - "input_file": { - "filename": "src/renderers/DustyPilotRenderer.cairo" - }, - "parent_location": [ - { - "end_col": 40, - "end_line": 119, - "input_file": { - "filename": "src/renderers/DustyPilotRenderer.cairo" - }, - "start_col": 34, - "start_line": 119 - }, - "While expanding the reference 'rarity' in:" - ], - "start_col": 10, - "start_line": 118 - } - }, - "925": { - "accessible_scopes": [ - "__main__", - "__main__", - "__main__.token_uri" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 41, - "end_line": 119, - "input_file": { - "filename": "src/renderers/DustyPilotRenderer.cairo" - }, - "start_col": 23, - "start_line": 119 - } - }, - "927": { - "accessible_scopes": [ - "__main__", - "__main__", - "__main__.token_uri" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 77, - "end_line": 120, - "input_file": { - "filename": "src/renderers/DustyPilotRenderer.cairo" - }, - "start_col": 59, - "start_line": 120 - } - }, - "929": { - "accessible_scopes": [ - "__main__", - "__main__", - "__main__.token_uri" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 78, - "end_line": 120, - "input_file": { - "filename": "src/renderers/DustyPilotRenderer.cairo" - }, - "start_col": 48, - "start_line": 120 - } - }, - "930": { - "accessible_scopes": [ - "__main__", - "__main__", - "__main__.token_uri" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 32, - "end_line": 124, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/math.cairo" - }, - "parent_location": [ - { - "end_col": 41, - "end_line": 119, - "input_file": { - "filename": "src/renderers/DustyPilotRenderer.cairo" - }, - "parent_location": [ - { - "end_col": 38, - "end_line": 297, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/math.cairo" - }, - "parent_location": [ - { - "end_col": 79, - "end_line": 120, - "input_file": { - "filename": "src/renderers/DustyPilotRenderer.cairo" - }, - "start_col": 23, - "start_line": 120 - }, - "While trying to retrieve the implicit argument 'range_check_ptr' in:" - ], - "start_col": 23, - "start_line": 297 - }, - "While expanding the reference 'range_check_ptr' in:" - ], - "start_col": 23, - "start_line": 119 - }, - "While trying to update the implicit return value 'range_check_ptr' in:" - ], - "start_col": 17, - "start_line": 124 - } - }, - "931": { - "accessible_scopes": [ - "__main__", - "__main__", - "__main__.token_uri" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 19, - "end_line": 119, - "input_file": { - "filename": "src/renderers/DustyPilotRenderer.cairo" - }, - "parent_location": [ - { - "end_col": 46, - "end_line": 120, - "input_file": { - "filename": "src/renderers/DustyPilotRenderer.cairo" - }, - "start_col": 40, - "start_line": 120 - }, - "While expanding the reference 'rarity' in:" - ], - "start_col": 13, - "start_line": 119 - } - }, - "932": { - "accessible_scopes": [ - "__main__", - "__main__", - "__main__.token_uri" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 78, - "end_line": 120, - "input_file": { - "filename": "src/renderers/DustyPilotRenderer.cairo" - }, - "start_col": 48, - "start_line": 120 - } - }, - "933": { - "accessible_scopes": [ - "__main__", - "__main__", - "__main__.token_uri" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 79, - "end_line": 120, - "input_file": { - "filename": "src/renderers/DustyPilotRenderer.cairo" - }, - "start_col": 23, - "start_line": 120 - } - }, - "935": { - "accessible_scopes": [ - "__main__", - "__main__", - "__main__.token_uri" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 47, - "end_line": 118, - "input_file": { - "filename": "src/renderers/DustyPilotRenderer.cairo" - }, - "parent_location": [ - { - "end_col": 44, - "end_line": 90, - "input_file": { - "filename": "src/renderers/DustyPilotRenderer.cairo" - }, - "parent_location": [ - { - "end_col": 69, - "end_line": 121, - "input_file": { - "filename": "src/renderers/DustyPilotRenderer.cairo" - }, - "start_col": 22, - "start_line": 121 - }, - "While trying to retrieve the implicit argument 'pedersen_ptr' in:" - ], - "start_col": 18, - "start_line": 90 - }, - "While expanding the reference 'pedersen_ptr' in:" - ], - "start_col": 35, - "start_line": 118 - } - }, - "936": { - "accessible_scopes": [ - "__main__", - "__main__", - "__main__.token_uri" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 33, - "end_line": 13, - "input_file": { - "filename": "autogen/starknet/storage_var/_thresholds_len/decl.cairo" - }, - "parent_location": [ - { - "end_col": 56, - "end_line": 116, - "input_file": { - "filename": "src/renderers/DustyPilotRenderer.cairo" - }, - "parent_location": [ - { - "end_col": 64, - "end_line": 90, - "input_file": { - "filename": "src/renderers/DustyPilotRenderer.cairo" - }, - "parent_location": [ - { - "end_col": 69, - "end_line": 121, - "input_file": { - "filename": "src/renderers/DustyPilotRenderer.cairo" - }, - "start_col": 22, - "start_line": 121 - }, - "While trying to retrieve the implicit argument 'syscall_ptr' in:" - ], - "start_col": 46, - "start_line": 90 - }, - "While expanding the reference 'syscall_ptr' in:" - ], - "start_col": 34, - "start_line": 116 - }, - "While trying to update the implicit return value 'syscall_ptr' in:" - ], - "start_col": 15, - "start_line": 13 - } - }, - "937": { - "accessible_scopes": [ - "__main__", - "__main__", - "__main__.token_uri" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 38, - "end_line": 297, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/math.cairo" - }, - "parent_location": [ - { - "end_col": 79, - "end_line": 120, - "input_file": { - "filename": "src/renderers/DustyPilotRenderer.cairo" - }, - "parent_location": [ - { - "end_col": 81, - "end_line": 90, - "input_file": { - "filename": "src/renderers/DustyPilotRenderer.cairo" - }, - "parent_location": [ - { - "end_col": 69, - "end_line": 121, - "input_file": { - "filename": "src/renderers/DustyPilotRenderer.cairo" - }, - "start_col": 22, - "start_line": 121 - }, - "While trying to retrieve the implicit argument 'range_check_ptr' in:" - ], - "start_col": 66, - "start_line": 90 - }, - "While expanding the reference 'range_check_ptr' in:" - ], - "start_col": 23, - "start_line": 120 - }, - "While trying to update the implicit return value 'range_check_ptr' in:" - ], - "start_col": 23, - "start_line": 297 - } - }, - "938": { - "accessible_scopes": [ - "__main__", - "__main__", - "__main__.token_uri" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 19, - "end_line": 120, - "input_file": { - "filename": "src/renderers/DustyPilotRenderer.cairo" - }, - "parent_location": [ - { - "end_col": 40, - "end_line": 121, - "input_file": { - "filename": "src/renderers/DustyPilotRenderer.cairo" - }, - "start_col": 34, - "start_line": 121 - }, - "While expanding the reference 'rarity' in:" - ], - "start_col": 13, - "start_line": 120 - } - }, - "939": { - "accessible_scopes": [ - "__main__", - "__main__", - "__main__.token_uri" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 30, - "end_line": 116, - "input_file": { - "filename": "src/renderers/DustyPilotRenderer.cairo" - }, - "parent_location": [ - { - "end_col": 56, - "end_line": 121, - "input_file": { - "filename": "src/renderers/DustyPilotRenderer.cairo" - }, - "start_col": 42, - "start_line": 121 - }, - "While expanding the reference 'thresholds_len' in:" - ], - "start_col": 16, - "start_line": 116 - } - }, - "940": { - "accessible_scopes": [ - "__main__", - "__main__", - "__main__.token_uri" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 20, - "end_line": 114, - "input_file": { - "filename": "src/renderers/DustyPilotRenderer.cairo" - }, - "parent_location": [ - { - "end_col": 20, - "end_line": 114, - "input_file": { - "filename": "src/renderers/DustyPilotRenderer.cairo" - }, - "parent_location": [ - { - "end_col": 68, - "end_line": 121, - "input_file": { - "filename": "src/renderers/DustyPilotRenderer.cairo" - }, - "start_col": 58, - "start_line": 121 - }, - "While expanding the reference 'thresholds' in:" - ], - "start_col": 10, - "start_line": 114 - }, - "While auto generating local variable for 'thresholds'." - ], - "start_col": 10, - "start_line": 114 - } - }, - "941": { - "accessible_scopes": [ - "__main__", - "__main__", - "__main__.token_uri" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 69, - "end_line": 121, - "input_file": { - "filename": "src/renderers/DustyPilotRenderer.cairo" - }, - "start_col": 22, - "start_line": 121 - } - }, - "943": { - "accessible_scopes": [ - "__main__", - "__main__", - "__main__.token_uri" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 44, - "end_line": 90, - "input_file": { - "filename": "src/renderers/DustyPilotRenderer.cairo" - }, - "parent_location": [ - { - "end_col": 69, - "end_line": 121, - "input_file": { - "filename": "src/renderers/DustyPilotRenderer.cairo" - }, - "parent_location": [ - { - "end_col": 44, - "end_line": 90, - "input_file": { - "filename": "src/renderers/DustyPilotRenderer.cairo" - }, - "parent_location": [ - { - "end_col": 69, - "end_line": 121, - "input_file": { - "filename": "src/renderers/DustyPilotRenderer.cairo" - }, - "start_col": 22, - "start_line": 121 - }, - "While trying to update the implicit return value 'pedersen_ptr' in:" - ], - "start_col": 18, - "start_line": 90 - }, - "While auto generating local variable for 'pedersen_ptr'." - ], - "start_col": 22, - "start_line": 121 - }, - "While trying to update the implicit return value 'pedersen_ptr' in:" - ], - "start_col": 18, - "start_line": 90 - } - }, - "944": { - "accessible_scopes": [ - "__main__", - "__main__", - "__main__.token_uri" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 64, - "end_line": 90, - "input_file": { - "filename": "src/renderers/DustyPilotRenderer.cairo" - }, - "parent_location": [ - { - "end_col": 69, - "end_line": 121, - "input_file": { - "filename": "src/renderers/DustyPilotRenderer.cairo" - }, - "parent_location": [ - { - "end_col": 64, - "end_line": 90, - "input_file": { - "filename": "src/renderers/DustyPilotRenderer.cairo" - }, - "parent_location": [ - { - "end_col": 69, - "end_line": 121, - "input_file": { - "filename": "src/renderers/DustyPilotRenderer.cairo" - }, - "start_col": 22, - "start_line": 121 - }, - "While trying to update the implicit return value 'syscall_ptr' in:" - ], - "start_col": 46, - "start_line": 90 - }, - "While auto generating local variable for 'syscall_ptr'." - ], - "start_col": 22, - "start_line": 121 - }, - "While trying to update the implicit return value 'syscall_ptr' in:" - ], - "start_col": 46, - "start_line": 90 - } - }, - "945": { - "accessible_scopes": [ - "__main__", - "__main__", - "__main__.token_uri" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 49, - "end_line": 122, - "input_file": { - "filename": "src/renderers/DustyPilotRenderer.cairo" - }, - "parent_location": [ - { - "end_col": 40, - "end_line": 123, - "input_file": { - "filename": "src/renderers/DustyPilotRenderer.cairo" - }, - "start_col": 32, - "start_line": 123 - }, - "While expanding the reference 'token_id' in:" - ], - "start_col": 20, - "start_line": 122 - } - }, - "947": { - "accessible_scopes": [ - "__main__", - "__main__", - "__main__.token_uri" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 81, - "end_line": 90, - "input_file": { - "filename": "src/renderers/DustyPilotRenderer.cairo" - }, - "parent_location": [ - { - "end_col": 69, - "end_line": 121, - "input_file": { - "filename": "src/renderers/DustyPilotRenderer.cairo" - }, - "parent_location": [ - { - "end_col": 25, - "end_line": 13, - "input_file": { - "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/utils/string.cairo" - }, - "parent_location": [ - { - "end_col": 41, - "end_line": 123, - "input_file": { - "filename": "src/renderers/DustyPilotRenderer.cairo" - }, - "start_col": 28, - "start_line": 123 - }, - "While trying to retrieve the implicit argument 'range_check_ptr' in:" - ], - "start_col": 10, - "start_line": 13 - }, - "While expanding the reference 'range_check_ptr' in:" - ], - "start_col": 22, - "start_line": 121 - }, - "While trying to update the implicit return value 'range_check_ptr' in:" - ], - "start_col": 66, - "start_line": 90 - } - }, - "948": { - "accessible_scopes": [ - "__main__", - "__main__", - "__main__.token_uri" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 49, - "end_line": 122, - "input_file": { - "filename": "src/renderers/DustyPilotRenderer.cairo" - }, - "parent_location": [ - { - "end_col": 40, - "end_line": 123, - "input_file": { - "filename": "src/renderers/DustyPilotRenderer.cairo" - }, - "start_col": 32, - "start_line": 123 - }, - "While expanding the reference 'token_id' in:" - ], - "start_col": 20, - "start_line": 122 - } - }, - "949": { - "accessible_scopes": [ - "__main__", - "__main__", - "__main__.token_uri" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 41, - "end_line": 123, - "input_file": { - "filename": "src/renderers/DustyPilotRenderer.cairo" - }, - "start_col": 28, - "start_line": 123 - } - }, - "951": { - "accessible_scopes": [ - "__main__", - "__main__", - "__main__.token_uri" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 38, - "end_line": 126, - "input_file": { - "filename": "src/renderers/DustyPilotRenderer.cairo" - }, - "start_col": 13, - "start_line": 126 - } - }, - "952": { - "accessible_scopes": [ - "__main__", - "__main__", - "__main__.token_uri" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 57, - "end_line": 126, - "input_file": { - "filename": "src/renderers/DustyPilotRenderer.cairo" - }, - "start_col": 5, - "start_line": 126 - } - }, - "953": { - "accessible_scopes": [ - "__main__", - "__main__", - "__main__.token_uri" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 42, - "end_line": 127, - "input_file": { - "filename": "src/renderers/DustyPilotRenderer.cairo" - }, - "start_col": 13, - "start_line": 127 - } - }, - "955": { - "accessible_scopes": [ - "__main__", - "__main__", - "__main__.token_uri" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 42, - "end_line": 127, - "input_file": { - "filename": "src/renderers/DustyPilotRenderer.cairo" - }, - "start_col": 13, - "start_line": 127 - } - }, - "956": { - "accessible_scopes": [ - "__main__", - "__main__", - "__main__.token_uri" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 53, - "end_line": 127, - "input_file": { - "filename": "src/renderers/DustyPilotRenderer.cairo" - }, - "start_col": 46, - "start_line": 127 - } - }, - "958": { - "accessible_scopes": [ - "__main__", - "__main__", - "__main__.token_uri" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 54, - "end_line": 127, - "input_file": { - "filename": "src/renderers/DustyPilotRenderer.cairo" - }, - "start_col": 5, - "start_line": 127 - } - }, - "959": { - "accessible_scopes": [ - "__main__", - "__main__", - "__main__.token_uri" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 44, - "end_line": 90, - "input_file": { - "filename": "src/renderers/DustyPilotRenderer.cairo" - }, - "parent_location": [ - { - "end_col": 69, - "end_line": 121, - "input_file": { - "filename": "src/renderers/DustyPilotRenderer.cairo" - }, - "parent_location": [ - { - "end_col": 44, - "end_line": 90, - "input_file": { - "filename": "src/renderers/DustyPilotRenderer.cairo" - }, - "parent_location": [ - { - "end_col": 69, - "end_line": 121, - "input_file": { - "filename": "src/renderers/DustyPilotRenderer.cairo" - }, - "parent_location": [ - { - "end_col": 42, - "end_line": 105, - "input_file": { - "filename": "src/renderers/DustyPilotRenderer.cairo" - }, - "parent_location": [ - { - "end_col": 43, - "end_line": 128, - "input_file": { - "filename": "src/renderers/DustyPilotRenderer.cairo" - }, - "start_col": 5, - "start_line": 128 - }, - "While trying to retrieve the implicit argument 'pedersen_ptr' in:" - ], - "start_col": 16, - "start_line": 105 - }, - "While expanding the reference 'pedersen_ptr' in:" - ], - "start_col": 22, - "start_line": 121 - }, - "While trying to update the implicit return value 'pedersen_ptr' in:" - ], - "start_col": 18, - "start_line": 90 - }, - "While auto generating local variable for 'pedersen_ptr'." - ], - "start_col": 22, - "start_line": 121 - }, - "While trying to update the implicit return value 'pedersen_ptr' in:" - ], - "start_col": 18, - "start_line": 90 - } - }, - "960": { - "accessible_scopes": [ - "__main__", - "__main__", - "__main__.token_uri" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 64, - "end_line": 90, - "input_file": { - "filename": "src/renderers/DustyPilotRenderer.cairo" - }, - "parent_location": [ - { - "end_col": 69, - "end_line": 121, - "input_file": { - "filename": "src/renderers/DustyPilotRenderer.cairo" - }, - "parent_location": [ - { - "end_col": 64, - "end_line": 90, - "input_file": { - "filename": "src/renderers/DustyPilotRenderer.cairo" - }, - "parent_location": [ - { - "end_col": 69, - "end_line": 121, - "input_file": { - "filename": "src/renderers/DustyPilotRenderer.cairo" - }, - "parent_location": [ - { - "end_col": 62, - "end_line": 105, - "input_file": { - "filename": "src/renderers/DustyPilotRenderer.cairo" - }, - "parent_location": [ - { - "end_col": 43, - "end_line": 128, - "input_file": { - "filename": "src/renderers/DustyPilotRenderer.cairo" - }, - "start_col": 5, - "start_line": 128 - }, - "While trying to retrieve the implicit argument 'syscall_ptr' in:" - ], - "start_col": 44, - "start_line": 105 - }, - "While expanding the reference 'syscall_ptr' in:" - ], - "start_col": 22, - "start_line": 121 - }, - "While trying to update the implicit return value 'syscall_ptr' in:" - ], - "start_col": 46, - "start_line": 90 - }, - "While auto generating local variable for 'syscall_ptr'." - ], - "start_col": 22, - "start_line": 121 - }, - "While trying to update the implicit return value 'syscall_ptr' in:" - ], - "start_col": 46, - "start_line": 90 - } - }, - "961": { - "accessible_scopes": [ - "__main__", - "__main__", - "__main__.token_uri" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 25, - "end_line": 13, - "input_file": { - "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/utils/string.cairo" - }, - "parent_location": [ - { - "end_col": 41, - "end_line": 123, - "input_file": { - "filename": "src/renderers/DustyPilotRenderer.cairo" - }, - "parent_location": [ - { - "end_col": 79, - "end_line": 105, - "input_file": { - "filename": "src/renderers/DustyPilotRenderer.cairo" - }, - "parent_location": [ - { - "end_col": 43, - "end_line": 128, - "input_file": { - "filename": "src/renderers/DustyPilotRenderer.cairo" - }, - "start_col": 5, - "start_line": 128 - }, - "While trying to retrieve the implicit argument 'range_check_ptr' in:" - ], - "start_col": 64, - "start_line": 105 - }, - "While expanding the reference 'range_check_ptr' in:" - ], - "start_col": 28, - "start_line": 123 - }, - "While trying to update the implicit return value 'range_check_ptr' in:" - ], - "start_col": 10, - "start_line": 13 - } - }, - "962": { - "accessible_scopes": [ - "__main__", - "__main__", - "__main__.token_uri" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 30, - "end_line": 128, - "input_file": { - "filename": "src/renderers/DustyPilotRenderer.cairo" - }, - "start_col": 13, - "start_line": 128 - } - }, - "964": { - "accessible_scopes": [ - "__main__", - "__main__", - "__main__.token_uri" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 19, - "end_line": 110, - "input_file": { - "filename": "src/renderers/DustyPilotRenderer.cairo" - }, - "parent_location": [ - { - "end_col": 19, - "end_line": 110, - "input_file": { - "filename": "src/renderers/DustyPilotRenderer.cairo" - }, - "parent_location": [ - { - "end_col": 41, - "end_line": 128, - "input_file": { - "filename": "src/renderers/DustyPilotRenderer.cairo" - }, - "start_col": 32, - "start_line": 128 - }, - "While expanding the reference 'token_uri' in:" - ], - "start_col": 10, - "start_line": 110 - }, - "While auto generating local variable for 'token_uri'." - ], - "start_col": 10, - "start_line": 110 - } - }, - "965": { - "accessible_scopes": [ - "__main__", - "__main__", - "__main__.token_uri" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 43, - "end_line": 128, - "input_file": { - "filename": "src/renderers/DustyPilotRenderer.cairo" - }, - "start_col": 5, - "start_line": 128 - } - }, - "966": { - "accessible_scopes": [ - "__main__", - "__main__", - "__main__.token_uri" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 11, - "end_line": 131, - "input_file": { - "filename": "src/renderers/DustyPilotRenderer.cairo" - }, - "start_col": 5, - "start_line": 131 - } - }, - "967": { - "accessible_scopes": [ - "__main__", - "__main__", - "__main__.token_uri" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 11, - "end_line": 132, - "input_file": { - "filename": "src/renderers/DustyPilotRenderer.cairo" - }, - "start_col": 5, - "start_line": 132 - } - }, - "968": { - "accessible_scopes": [ - "__main__", - "__main__", - "__main__.token_uri" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 11, - "end_line": 133, - "input_file": { - "filename": "src/renderers/DustyPilotRenderer.cairo" - }, - "start_col": 5, - "start_line": 133 - } - }, - "969": { - "accessible_scopes": [ - "__main__", - "__main__", - "__main__.token_uri" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 11, - "end_line": 134, - "input_file": { - "filename": "src/renderers/DustyPilotRenderer.cairo" - }, - "start_col": 5, - "start_line": 134 - } - }, - "970": { - "accessible_scopes": [ - "__main__", - "__main__", - "__main__.token_uri" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 11, - "end_line": 135, - "input_file": { - "filename": "src/renderers/DustyPilotRenderer.cairo" - }, - "start_col": 5, - "start_line": 135 - } - }, - "971": { - "accessible_scopes": [ - "__main__", - "__main__", - "__main__.token_uri" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 10, - "end_line": 136, - "input_file": { - "filename": "src/renderers/DustyPilotRenderer.cairo" - }, - "start_col": 5, - "start_line": 136 - } - }, - "972": { - "accessible_scopes": [ - "__main__", - "__main__", - "__main__.token_uri" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 10, - "end_line": 137, - "input_file": { - "filename": "src/renderers/DustyPilotRenderer.cairo" - }, - "start_col": 5, - "start_line": 137 - } - }, - "973": { - "accessible_scopes": [ - "__main__", - "__main__", - "__main__.token_uri" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 10, - "end_line": 138, - "input_file": { - "filename": "src/renderers/DustyPilotRenderer.cairo" - }, - "start_col": 5, - "start_line": 138 - } - }, - "974": { - "accessible_scopes": [ - "__main__", - "__main__", - "__main__.token_uri" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 11, - "end_line": 139, - "input_file": { - "filename": "src/renderers/DustyPilotRenderer.cairo" - }, - "start_col": 5, - "start_line": 139 - } - }, - "975": { - "accessible_scopes": [ - "__main__", - "__main__", - "__main__.token_uri" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 10, - "end_line": 140, - "input_file": { - "filename": "src/renderers/DustyPilotRenderer.cairo" - }, - "start_col": 5, - "start_line": 140 - } - }, - "976": { - "accessible_scopes": [ - "__main__", - "__main__", - "__main__.token_uri" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 11, - "end_line": 141, - "input_file": { - "filename": "src/renderers/DustyPilotRenderer.cairo" - }, - "start_col": 5, - "start_line": 141 - } - }, - "977": { - "accessible_scopes": [ - "__main__", - "__main__", - "__main__.token_uri" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 10, - "end_line": 142, - "input_file": { - "filename": "src/renderers/DustyPilotRenderer.cairo" - }, - "start_col": 5, - "start_line": 142 - } - }, - "978": { - "accessible_scopes": [ - "__main__", - "__main__", - "__main__.token_uri" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 11, - "end_line": 143, - "input_file": { - "filename": "src/renderers/DustyPilotRenderer.cairo" - }, - "start_col": 5, - "start_line": 143 - } - }, - "979": { - "accessible_scopes": [ - "__main__", - "__main__", - "__main__.token_uri" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 11, - "end_line": 144, - "input_file": { - "filename": "src/renderers/DustyPilotRenderer.cairo" - }, - "start_col": 5, - "start_line": 144 - } - }, - "980": { - "accessible_scopes": [ - "__main__", - "__main__", - "__main__.token_uri" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 11, - "end_line": 145, - "input_file": { - "filename": "src/renderers/DustyPilotRenderer.cairo" - }, - "start_col": 5, - "start_line": 145 - } - }, - "981": { - "accessible_scopes": [ - "__main__", - "__main__", - "__main__.token_uri" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 11, - "end_line": 146, - "input_file": { - "filename": "src/renderers/DustyPilotRenderer.cairo" - }, - "start_col": 5, - "start_line": 146 - } - }, - "982": { - "accessible_scopes": [ - "__main__", - "__main__", - "__main__.token_uri" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 11, - "end_line": 147, - "input_file": { - "filename": "src/renderers/DustyPilotRenderer.cairo" - }, - "start_col": 5, - "start_line": 147 - } - }, - "983": { - "accessible_scopes": [ - "__main__", - "__main__", - "__main__.token_uri" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 10, - "end_line": 148, - "input_file": { - "filename": "src/renderers/DustyPilotRenderer.cairo" - }, - "start_col": 5, - "start_line": 148 - } - }, - "984": { - "accessible_scopes": [ - "__main__", - "__main__", - "__main__.token_uri" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 11, - "end_line": 149, - "input_file": { - "filename": "src/renderers/DustyPilotRenderer.cairo" - }, - "start_col": 5, - "start_line": 149 - } - }, - "985": { - "accessible_scopes": [ - "__main__", - "__main__", - "__main__.token_uri" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 11, - "end_line": 150, - "input_file": { - "filename": "src/renderers/DustyPilotRenderer.cairo" - }, - "start_col": 5, - "start_line": 150 - } - }, - "986": { - "accessible_scopes": [ - "__main__", - "__main__", - "__main__.token_uri" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 11, - "end_line": 151, - "input_file": { - "filename": "src/renderers/DustyPilotRenderer.cairo" - }, - "start_col": 5, - "start_line": 151 - } - }, - "987": { - "accessible_scopes": [ - "__main__", - "__main__", - "__main__.token_uri" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 11, - "end_line": 152, - "input_file": { - "filename": "src/renderers/DustyPilotRenderer.cairo" - }, - "start_col": 5, - "start_line": 152 - } - }, - "988": { - "accessible_scopes": [ - "__main__", - "__main__", - "__main__.token_uri" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 10, - "end_line": 153, - "input_file": { - "filename": "src/renderers/DustyPilotRenderer.cairo" - }, - "start_col": 5, - "start_line": 153 - } - }, - "989": { - "accessible_scopes": [ - "__main__", - "__main__", - "__main__.token_uri" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 11, - "end_line": 154, - "input_file": { - "filename": "src/renderers/DustyPilotRenderer.cairo" - }, - "start_col": 5, - "start_line": 154 - } - }, - "990": { - "accessible_scopes": [ - "__main__", - "__main__", - "__main__.token_uri" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 11, - "end_line": 155, - "input_file": { - "filename": "src/renderers/DustyPilotRenderer.cairo" - }, - "start_col": 5, - "start_line": 155 - } - }, - "991": { - "accessible_scopes": [ - "__main__", - "__main__", - "__main__.token_uri" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 11, - "end_line": 156, - "input_file": { - "filename": "src/renderers/DustyPilotRenderer.cairo" - }, - "start_col": 5, - "start_line": 156 - } - }, - "992": { - "accessible_scopes": [ - "__main__", - "__main__", - "__main__.token_uri" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 11, - "end_line": 157, - "input_file": { - "filename": "src/renderers/DustyPilotRenderer.cairo" - }, - "start_col": 5, - "start_line": 157 - } - }, - "993": { - "accessible_scopes": [ - "__main__", - "__main__", - "__main__.token_uri" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 11, - "end_line": 158, - "input_file": { - "filename": "src/renderers/DustyPilotRenderer.cairo" - }, - "start_col": 5, - "start_line": 158 - } - }, - "994": { - "accessible_scopes": [ - "__main__", - "__main__", - "__main__.token_uri" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 11, - "end_line": 159, - "input_file": { - "filename": "src/renderers/DustyPilotRenderer.cairo" - }, - "start_col": 5, - "start_line": 159 - } - }, - "995": { - "accessible_scopes": [ - "__main__", - "__main__", - "__main__.token_uri" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 10, - "end_line": 160, - "input_file": { - "filename": "src/renderers/DustyPilotRenderer.cairo" - }, - "start_col": 5, - "start_line": 160 - } - }, - "996": { - "accessible_scopes": [ - "__main__", - "__main__", - "__main__.token_uri" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 10, - "end_line": 161, - "input_file": { - "filename": "src/renderers/DustyPilotRenderer.cairo" - }, - "start_col": 5, - "start_line": 161 - } - }, - "997": { - "accessible_scopes": [ - "__main__", - "__main__", - "__main__.token_uri" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 11, - "end_line": 162, - "input_file": { - "filename": "src/renderers/DustyPilotRenderer.cairo" - }, - "start_col": 5, - "start_line": 162 - } - }, - "998": { - "accessible_scopes": [ - "__main__", - "__main__", - "__main__.token_uri" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 11, - "end_line": 163, - "input_file": { - "filename": "src/renderers/DustyPilotRenderer.cairo" - }, - "start_col": 5, - "start_line": 163 - } - }, - "999": { - "accessible_scopes": [ - "__main__", - "__main__", - "__main__.token_uri" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 10, - "end_line": 164, - "input_file": { - "filename": "src/renderers/DustyPilotRenderer.cairo" - }, - "start_col": 5, - "start_line": 164 - } - }, - "1000": { - "accessible_scopes": [ - "__main__", - "__main__", - "__main__.token_uri" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 11, - "end_line": 165, - "input_file": { - "filename": "src/renderers/DustyPilotRenderer.cairo" - }, - "start_col": 5, - "start_line": 165 - } - }, - "1001": { - "accessible_scopes": [ - "__main__", - "__main__", - "__main__.token_uri" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 11, - "end_line": 166, - "input_file": { - "filename": "src/renderers/DustyPilotRenderer.cairo" - }, - "start_col": 5, - "start_line": 166 - } - }, - "1002": { - "accessible_scopes": [ - "__main__", - "__main__", - "__main__.token_uri" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 11, - "end_line": 167, - "input_file": { - "filename": "src/renderers/DustyPilotRenderer.cairo" - }, - "start_col": 5, - "start_line": 167 - } - }, - "1003": { - "accessible_scopes": [ - "__main__", - "__main__", - "__main__.token_uri" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 10, - "end_line": 168, - "input_file": { - "filename": "src/renderers/DustyPilotRenderer.cairo" - }, - "start_col": 5, - "start_line": 168 - } - }, - "1004": { - "accessible_scopes": [ - "__main__", - "__main__", - "__main__.token_uri" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 10, - "end_line": 169, - "input_file": { - "filename": "src/renderers/DustyPilotRenderer.cairo" - }, - "start_col": 5, - "start_line": 169 - } - }, - "1005": { - "accessible_scopes": [ - "__main__", - "__main__", - "__main__.token_uri" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 10, - "end_line": 170, - "input_file": { - "filename": "src/renderers/DustyPilotRenderer.cairo" - }, - "start_col": 5, - "start_line": 170 - } - }, - "1006": { - "accessible_scopes": [ - "__main__", - "__main__", - "__main__.token_uri" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 11, - "end_line": 171, - "input_file": { - "filename": "src/renderers/DustyPilotRenderer.cairo" - }, - "start_col": 5, - "start_line": 171 - } - }, - "1007": { - "accessible_scopes": [ - "__main__", - "__main__", - "__main__.token_uri" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 11, - "end_line": 172, - "input_file": { - "filename": "src/renderers/DustyPilotRenderer.cairo" - }, - "start_col": 5, - "start_line": 172 - } - }, - "1008": { - "accessible_scopes": [ - "__main__", - "__main__", - "__main__.token_uri" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 11, - "end_line": 173, - "input_file": { - "filename": "src/renderers/DustyPilotRenderer.cairo" - }, - "start_col": 5, - "start_line": 173 - } - }, - "1009": { - "accessible_scopes": [ - "__main__", - "__main__", - "__main__.token_uri" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 10, - "end_line": 174, - "input_file": { - "filename": "src/renderers/DustyPilotRenderer.cairo" - }, - "start_col": 5, - "start_line": 174 - } - }, - "1010": { - "accessible_scopes": [ - "__main__", - "__main__", - "__main__.token_uri" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 11, - "end_line": 175, - "input_file": { - "filename": "src/renderers/DustyPilotRenderer.cairo" - }, - "start_col": 5, - "start_line": 175 - } - }, - "1011": { - "accessible_scopes": [ - "__main__", - "__main__", - "__main__.token_uri" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 11, - "end_line": 176, - "input_file": { - "filename": "src/renderers/DustyPilotRenderer.cairo" - }, - "start_col": 5, - "start_line": 176 - } - }, - "1012": { - "accessible_scopes": [ - "__main__", - "__main__", - "__main__.token_uri" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 11, - "end_line": 177, - "input_file": { - "filename": "src/renderers/DustyPilotRenderer.cairo" - }, - "start_col": 5, - "start_line": 177 - } - }, - "1013": { - "accessible_scopes": [ - "__main__", - "__main__", - "__main__.token_uri" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 11, - "end_line": 178, - "input_file": { - "filename": "src/renderers/DustyPilotRenderer.cairo" - }, - "start_col": 5, - "start_line": 178 - } - }, - "1014": { - "accessible_scopes": [ - "__main__", - "__main__", - "__main__.token_uri" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 10, - "end_line": 179, - "input_file": { - "filename": "src/renderers/DustyPilotRenderer.cairo" - }, - "start_col": 5, - "start_line": 179 - } - }, - "1015": { - "accessible_scopes": [ - "__main__", - "__main__", - "__main__.token_uri" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 11, - "end_line": 180, - "input_file": { - "filename": "src/renderers/DustyPilotRenderer.cairo" - }, - "start_col": 5, - "start_line": 180 - } - }, - "1016": { - "accessible_scopes": [ - "__main__", - "__main__", - "__main__.token_uri" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 11, - "end_line": 181, - "input_file": { - "filename": "src/renderers/DustyPilotRenderer.cairo" - }, - "start_col": 5, - "start_line": 181 - } - }, - "1017": { - "accessible_scopes": [ - "__main__", - "__main__", - "__main__.token_uri" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 10, - "end_line": 182, - "input_file": { - "filename": "src/renderers/DustyPilotRenderer.cairo" - }, - "start_col": 5, - "start_line": 182 - } - }, - "1018": { - "accessible_scopes": [ - "__main__", - "__main__", - "__main__.token_uri" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 11, - "end_line": 183, - "input_file": { - "filename": "src/renderers/DustyPilotRenderer.cairo" - }, - "start_col": 5, - "start_line": 183 - } - }, - "1019": { - "accessible_scopes": [ - "__main__", - "__main__", - "__main__.token_uri" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 11, - "end_line": 184, - "input_file": { - "filename": "src/renderers/DustyPilotRenderer.cairo" - }, - "start_col": 5, - "start_line": 184 - } - }, - "1020": { - "accessible_scopes": [ - "__main__", - "__main__", - "__main__.token_uri" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 11, - "end_line": 185, - "input_file": { - "filename": "src/renderers/DustyPilotRenderer.cairo" - }, - "start_col": 5, - "start_line": 185 - } - }, - "1021": { - "accessible_scopes": [ - "__main__", - "__main__", - "__main__.token_uri" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 11, - "end_line": 186, - "input_file": { - "filename": "src/renderers/DustyPilotRenderer.cairo" - }, - "start_col": 5, - "start_line": 186 - } - }, - "1022": { - "accessible_scopes": [ - "__main__", - "__main__", - "__main__.token_uri" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 11, - "end_line": 187, - "input_file": { - "filename": "src/renderers/DustyPilotRenderer.cairo" - }, - "start_col": 5, - "start_line": 187 - } - }, - "1023": { - "accessible_scopes": [ - "__main__", - "__main__", - "__main__.token_uri" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 11, - "end_line": 188, - "input_file": { - "filename": "src/renderers/DustyPilotRenderer.cairo" - }, - "start_col": 5, - "start_line": 188 - } - }, - "1024": { - "accessible_scopes": [ - "__main__", - "__main__", - "__main__.token_uri" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 11, - "end_line": 189, - "input_file": { - "filename": "src/renderers/DustyPilotRenderer.cairo" - }, - "start_col": 5, - "start_line": 189 - } - }, - "1025": { - "accessible_scopes": [ - "__main__", - "__main__", - "__main__.token_uri" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 10, - "end_line": 190, - "input_file": { - "filename": "src/renderers/DustyPilotRenderer.cairo" - }, - "start_col": 5, - "start_line": 190 - } - }, - "1026": { - "accessible_scopes": [ - "__main__", - "__main__", - "__main__.token_uri" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 11, - "end_line": 191, - "input_file": { - "filename": "src/renderers/DustyPilotRenderer.cairo" - }, - "start_col": 5, - "start_line": 191 - } - }, - "1027": { - "accessible_scopes": [ - "__main__", - "__main__", - "__main__.token_uri" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 11, - "end_line": 192, - "input_file": { - "filename": "src/renderers/DustyPilotRenderer.cairo" - }, - "start_col": 5, - "start_line": 192 - } - }, - "1028": { - "accessible_scopes": [ - "__main__", - "__main__", - "__main__.token_uri" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 11, - "end_line": 193, - "input_file": { - "filename": "src/renderers/DustyPilotRenderer.cairo" - }, - "start_col": 5, - "start_line": 193 - } - }, - "1029": { - "accessible_scopes": [ - "__main__", - "__main__", - "__main__.token_uri" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 11, - "end_line": 194, - "input_file": { - "filename": "src/renderers/DustyPilotRenderer.cairo" - }, - "start_col": 5, - "start_line": 194 - } - }, - "1030": { - "accessible_scopes": [ - "__main__", - "__main__", - "__main__.token_uri" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 11, - "end_line": 195, - "input_file": { - "filename": "src/renderers/DustyPilotRenderer.cairo" - }, - "start_col": 5, - "start_line": 195 - } - }, - "1031": { - "accessible_scopes": [ - "__main__", - "__main__", - "__main__.token_uri" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 11, - "end_line": 196, - "input_file": { - "filename": "src/renderers/DustyPilotRenderer.cairo" - }, - "start_col": 5, - "start_line": 196 - } - }, - "1032": { - "accessible_scopes": [ - "__main__", - "__main__", - "__main__.token_uri" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 11, - "end_line": 197, - "input_file": { - "filename": "src/renderers/DustyPilotRenderer.cairo" - }, - "start_col": 5, - "start_line": 197 - } - }, - "1033": { - "accessible_scopes": [ - "__main__", - "__main__", - "__main__.token_uri" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 11, - "end_line": 198, - "input_file": { - "filename": "src/renderers/DustyPilotRenderer.cairo" - }, - "start_col": 5, - "start_line": 198 - } - }, - "1034": { - "accessible_scopes": [ - "__main__", - "__main__", - "__main__.token_uri" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 10, - "end_line": 199, - "input_file": { - "filename": "src/renderers/DustyPilotRenderer.cairo" - }, - "start_col": 5, - "start_line": 199 - } - }, - "1035": { - "accessible_scopes": [ - "__main__", - "__main__", - "__main__.token_uri" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 11, - "end_line": 200, - "input_file": { - "filename": "src/renderers/DustyPilotRenderer.cairo" - }, - "start_col": 5, - "start_line": 200 - } - }, - "1036": { - "accessible_scopes": [ - "__main__", - "__main__", - "__main__.token_uri" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 10, - "end_line": 201, - "input_file": { - "filename": "src/renderers/DustyPilotRenderer.cairo" - }, - "start_col": 5, - "start_line": 201 - } - }, - "1037": { - "accessible_scopes": [ - "__main__", - "__main__", - "__main__.token_uri" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 11, - "end_line": 202, - "input_file": { - "filename": "src/renderers/DustyPilotRenderer.cairo" - }, - "start_col": 5, - "start_line": 202 - } - }, - "1038": { - "accessible_scopes": [ - "__main__", - "__main__", - "__main__.token_uri" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 11, - "end_line": 203, - "input_file": { - "filename": "src/renderers/DustyPilotRenderer.cairo" - }, - "start_col": 5, - "start_line": 203 - } - }, - "1039": { - "accessible_scopes": [ - "__main__", - "__main__", - "__main__.token_uri" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 10, - "end_line": 204, - "input_file": { - "filename": "src/renderers/DustyPilotRenderer.cairo" - }, - "start_col": 5, - "start_line": 204 - } - }, - "1040": { - "accessible_scopes": [ - "__main__", - "__main__", - "__main__.token_uri" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 11, - "end_line": 205, - "input_file": { - "filename": "src/renderers/DustyPilotRenderer.cairo" - }, - "start_col": 5, - "start_line": 205 - } - }, - "1041": { - "accessible_scopes": [ - "__main__", - "__main__", - "__main__.token_uri" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 10, - "end_line": 206, - "input_file": { - "filename": "src/renderers/DustyPilotRenderer.cairo" - }, - "start_col": 5, - "start_line": 206 - } - }, - "1042": { - "accessible_scopes": [ - "__main__", - "__main__", - "__main__.token_uri" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 10, - "end_line": 207, - "input_file": { - "filename": "src/renderers/DustyPilotRenderer.cairo" - }, - "start_col": 5, - "start_line": 207 - } - }, - "1043": { - "accessible_scopes": [ - "__main__", - "__main__", - "__main__.token_uri" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 11, - "end_line": 208, - "input_file": { - "filename": "src/renderers/DustyPilotRenderer.cairo" - }, - "start_col": 5, - "start_line": 208 - } - }, - "1044": { - "accessible_scopes": [ - "__main__", - "__main__", - "__main__.token_uri" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 10, - "end_line": 209, - "input_file": { - "filename": "src/renderers/DustyPilotRenderer.cairo" - }, - "start_col": 5, - "start_line": 209 - } - }, - "1045": { - "accessible_scopes": [ - "__main__", - "__main__", - "__main__.token_uri" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 11, - "end_line": 210, - "input_file": { - "filename": "src/renderers/DustyPilotRenderer.cairo" - }, - "start_col": 5, - "start_line": 210 - } - }, - "1046": { - "accessible_scopes": [ - "__main__", - "__main__", - "__main__.token_uri" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 11, - "end_line": 211, - "input_file": { - "filename": "src/renderers/DustyPilotRenderer.cairo" - }, - "start_col": 5, - "start_line": 211 - } - }, - "1047": { - "accessible_scopes": [ - "__main__", - "__main__", - "__main__.token_uri" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 11, - "end_line": 212, - "input_file": { - "filename": "src/renderers/DustyPilotRenderer.cairo" - }, - "start_col": 5, - "start_line": 212 - } - }, - "1048": { - "accessible_scopes": [ - "__main__", - "__main__", - "__main__.token_uri" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 10, - "end_line": 213, - "input_file": { - "filename": "src/renderers/DustyPilotRenderer.cairo" - }, - "start_col": 5, - "start_line": 213 - } - }, - "1049": { - "accessible_scopes": [ - "__main__", - "__main__", - "__main__.token_uri" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 11, - "end_line": 214, - "input_file": { - "filename": "src/renderers/DustyPilotRenderer.cairo" - }, - "start_col": 5, - "start_line": 214 - } - }, - "1050": { - "accessible_scopes": [ - "__main__", - "__main__", - "__main__.token_uri" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 11, - "end_line": 215, - "input_file": { - "filename": "src/renderers/DustyPilotRenderer.cairo" - }, - "start_col": 5, - "start_line": 215 - } - }, - "1051": { - "accessible_scopes": [ - "__main__", - "__main__", - "__main__.token_uri" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 10, - "end_line": 216, - "input_file": { - "filename": "src/renderers/DustyPilotRenderer.cairo" - }, - "start_col": 5, - "start_line": 216 - } - }, - "1052": { - "accessible_scopes": [ - "__main__", - "__main__", - "__main__.token_uri" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 11, - "end_line": 217, - "input_file": { - "filename": "src/renderers/DustyPilotRenderer.cairo" - }, - "start_col": 5, - "start_line": 217 - } - }, - "1053": { - "accessible_scopes": [ - "__main__", - "__main__", - "__main__.token_uri" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 11, - "end_line": 218, - "input_file": { - "filename": "src/renderers/DustyPilotRenderer.cairo" - }, - "start_col": 5, - "start_line": 218 - } - }, - "1054": { - "accessible_scopes": [ - "__main__", - "__main__", - "__main__.token_uri" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 11, - "end_line": 219, - "input_file": { - "filename": "src/renderers/DustyPilotRenderer.cairo" - }, - "start_col": 5, - "start_line": 219 - } - }, - "1055": { - "accessible_scopes": [ - "__main__", - "__main__", - "__main__.token_uri" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 11, - "end_line": 220, - "input_file": { - "filename": "src/renderers/DustyPilotRenderer.cairo" - }, - "start_col": 5, - "start_line": 220 - } - }, - "1056": { - "accessible_scopes": [ - "__main__", - "__main__", - "__main__.token_uri" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 11, - "end_line": 221, - "input_file": { - "filename": "src/renderers/DustyPilotRenderer.cairo" - }, - "start_col": 5, - "start_line": 221 - } - }, - "1057": { - "accessible_scopes": [ - "__main__", - "__main__", - "__main__.token_uri" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 11, - "end_line": 222, - "input_file": { - "filename": "src/renderers/DustyPilotRenderer.cairo" - }, - "start_col": 5, - "start_line": 222 - } - }, - "1058": { - "accessible_scopes": [ - "__main__", - "__main__", - "__main__.token_uri" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 11, - "end_line": 223, - "input_file": { - "filename": "src/renderers/DustyPilotRenderer.cairo" - }, - "start_col": 5, - "start_line": 223 - } - }, - "1059": { - "accessible_scopes": [ - "__main__", - "__main__", - "__main__.token_uri" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 10, - "end_line": 224, - "input_file": { - "filename": "src/renderers/DustyPilotRenderer.cairo" - }, - "start_col": 5, - "start_line": 224 - } - }, - "1060": { - "accessible_scopes": [ - "__main__", - "__main__", - "__main__.token_uri" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 10, - "end_line": 225, - "input_file": { - "filename": "src/renderers/DustyPilotRenderer.cairo" - }, - "start_col": 5, - "start_line": 225 - } - }, - "1061": { - "accessible_scopes": [ - "__main__", - "__main__", - "__main__.token_uri" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 10, - "end_line": 226, - "input_file": { - "filename": "src/renderers/DustyPilotRenderer.cairo" - }, - "start_col": 5, - "start_line": 226 - } - }, - "1062": { - "accessible_scopes": [ - "__main__", - "__main__", - "__main__.token_uri" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 11, - "end_line": 227, - "input_file": { - "filename": "src/renderers/DustyPilotRenderer.cairo" - }, - "start_col": 5, - "start_line": 227 - } - }, - "1063": { - "accessible_scopes": [ - "__main__", - "__main__", - "__main__.token_uri" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 11, - "end_line": 228, - "input_file": { - "filename": "src/renderers/DustyPilotRenderer.cairo" - }, - "start_col": 5, - "start_line": 228 - } - }, - "1064": { - "accessible_scopes": [ - "__main__", - "__main__", - "__main__.token_uri" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 11, - "end_line": 229, - "input_file": { - "filename": "src/renderers/DustyPilotRenderer.cairo" - }, - "start_col": 5, - "start_line": 229 - } - }, - "1065": { - "accessible_scopes": [ - "__main__", - "__main__", - "__main__.token_uri" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 10, - "end_line": 230, - "input_file": { - "filename": "src/renderers/DustyPilotRenderer.cairo" - }, - "start_col": 5, - "start_line": 230 - } - }, - "1066": { - "accessible_scopes": [ - "__main__", - "__main__", - "__main__.token_uri" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 11, - "end_line": 231, - "input_file": { - "filename": "src/renderers/DustyPilotRenderer.cairo" - }, - "start_col": 5, - "start_line": 231 - } - }, - "1067": { - "accessible_scopes": [ - "__main__", - "__main__", - "__main__.token_uri" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 11, - "end_line": 232, - "input_file": { - "filename": "src/renderers/DustyPilotRenderer.cairo" - }, - "start_col": 5, - "start_line": 232 - } - }, - "1068": { - "accessible_scopes": [ - "__main__", - "__main__", - "__main__.token_uri" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 11, - "end_line": 233, - "input_file": { - "filename": "src/renderers/DustyPilotRenderer.cairo" - }, - "start_col": 5, - "start_line": 233 - } - }, - "1069": { - "accessible_scopes": [ - "__main__", - "__main__", - "__main__.token_uri" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 11, - "end_line": 234, - "input_file": { - "filename": "src/renderers/DustyPilotRenderer.cairo" - }, - "start_col": 5, - "start_line": 234 - } - }, - "1070": { - "accessible_scopes": [ - "__main__", - "__main__", - "__main__.token_uri" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 10, - "end_line": 235, - "input_file": { - "filename": "src/renderers/DustyPilotRenderer.cairo" - }, - "start_col": 5, - "start_line": 235 - } - }, - "1071": { - "accessible_scopes": [ - "__main__", - "__main__", - "__main__.token_uri" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 11, - "end_line": 236, - "input_file": { - "filename": "src/renderers/DustyPilotRenderer.cairo" - }, - "start_col": 5, - "start_line": 236 - } - }, - "1072": { - "accessible_scopes": [ - "__main__", - "__main__", - "__main__.token_uri" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 11, - "end_line": 237, - "input_file": { - "filename": "src/renderers/DustyPilotRenderer.cairo" - }, - "start_col": 5, - "start_line": 237 - } - }, - "1073": { - "accessible_scopes": [ - "__main__", - "__main__", - "__main__.token_uri" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 11, - "end_line": 238, - "input_file": { - "filename": "src/renderers/DustyPilotRenderer.cairo" - }, - "start_col": 5, - "start_line": 238 - } - }, - "1074": { - "accessible_scopes": [ - "__main__", - "__main__", - "__main__.token_uri" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 11, - "end_line": 239, - "input_file": { - "filename": "src/renderers/DustyPilotRenderer.cairo" - }, - "start_col": 5, - "start_line": 239 - } - }, - "1075": { - "accessible_scopes": [ - "__main__", - "__main__", - "__main__.token_uri" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 11, - "end_line": 240, - "input_file": { - "filename": "src/renderers/DustyPilotRenderer.cairo" - }, - "start_col": 5, - "start_line": 240 - } - }, - "1076": { - "accessible_scopes": [ - "__main__", - "__main__", - "__main__.token_uri" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 11, - "end_line": 241, - "input_file": { - "filename": "src/renderers/DustyPilotRenderer.cairo" - }, - "start_col": 5, - "start_line": 241 - } - }, - "1077": { - "accessible_scopes": [ - "__main__", - "__main__", - "__main__.token_uri" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 10, - "end_line": 242, - "input_file": { - "filename": "src/renderers/DustyPilotRenderer.cairo" - }, - "start_col": 5, - "start_line": 242 - } - }, - "1078": { - "accessible_scopes": [ - "__main__", - "__main__", - "__main__.token_uri" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 11, - "end_line": 243, - "input_file": { - "filename": "src/renderers/DustyPilotRenderer.cairo" - }, - "start_col": 5, - "start_line": 243 - } - }, - "1079": { - "accessible_scopes": [ - "__main__", - "__main__", - "__main__.token_uri" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 11, - "end_line": 244, - "input_file": { - "filename": "src/renderers/DustyPilotRenderer.cairo" - }, - "start_col": 5, - "start_line": 244 - } - }, - "1080": { - "accessible_scopes": [ - "__main__", - "__main__", - "__main__.token_uri" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 11, - "end_line": 245, - "input_file": { - "filename": "src/renderers/DustyPilotRenderer.cairo" - }, - "start_col": 5, - "start_line": 245 - } - }, - "1081": { - "accessible_scopes": [ - "__main__", - "__main__", - "__main__.token_uri" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 11, - "end_line": 246, - "input_file": { - "filename": "src/renderers/DustyPilotRenderer.cairo" - }, - "start_col": 5, - "start_line": 246 - } - }, - "1082": { - "accessible_scopes": [ - "__main__", - "__main__", - "__main__.token_uri" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 11, - "end_line": 247, - "input_file": { - "filename": "src/renderers/DustyPilotRenderer.cairo" - }, - "start_col": 5, - "start_line": 247 - } - }, - "1083": { - "accessible_scopes": [ - "__main__", - "__main__", - "__main__.token_uri" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 10, - "end_line": 248, - "input_file": { - "filename": "src/renderers/DustyPilotRenderer.cairo" - }, - "start_col": 5, - "start_line": 248 - } - }, - "1084": { - "accessible_scopes": [ - "__main__", - "__main__", - "__main__.token_uri" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 11, - "end_line": 249, - "input_file": { - "filename": "src/renderers/DustyPilotRenderer.cairo" - }, - "start_col": 5, - "start_line": 249 - } - }, - "1085": { - "accessible_scopes": [ - "__main__", - "__main__", - "__main__.token_uri" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 11, - "end_line": 250, - "input_file": { - "filename": "src/renderers/DustyPilotRenderer.cairo" - }, - "start_col": 5, - "start_line": 250 - } - }, - "1086": { - "accessible_scopes": [ - "__main__", - "__main__", - "__main__.token_uri" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 11, - "end_line": 251, - "input_file": { - "filename": "src/renderers/DustyPilotRenderer.cairo" - }, - "start_col": 5, - "start_line": 251 - } - }, - "1087": { - "accessible_scopes": [ - "__main__", - "__main__", - "__main__.token_uri" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 11, - "end_line": 252, - "input_file": { - "filename": "src/renderers/DustyPilotRenderer.cairo" - }, - "start_col": 5, - "start_line": 252 - } - }, - "1088": { - "accessible_scopes": [ - "__main__", - "__main__", - "__main__.token_uri" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 10, - "end_line": 253, - "input_file": { - "filename": "src/renderers/DustyPilotRenderer.cairo" - }, - "start_col": 5, - "start_line": 253 - } - }, - "1089": { - "accessible_scopes": [ - "__main__", - "__main__", - "__wrappers__", - "__wrappers__.token_uri_encode_return" - ], - "flow_tracking_data": null, - "hints": [ - { - "location": { - "end_col": 38, - "end_line": 3, - "input_file": { - "filename": "autogen/starknet/external/return/token_uri/f48cf5085ac07908983bbc364b0ba70d64fa7f2a9b8dc38e9d6fe3783bd626a8.cairo" - }, - "parent_location": [ - { - "end_col": 15, - "end_line": 105, - "input_file": { - "filename": "src/renderers/DustyPilotRenderer.cairo" - }, - "start_col": 6, - "start_line": 105 - }, - "While handling return value of" - ], - "start_col": 5, - "start_line": 3 - }, - "n_prefix_newlines": 0 - } - ], - "inst": { - "end_col": 18, - "end_line": 4, - "input_file": { - "filename": "autogen/starknet/external/return/token_uri/f48cf5085ac07908983bbc364b0ba70d64fa7f2a9b8dc38e9d6fe3783bd626a8.cairo" - }, - "parent_location": [ - { - "end_col": 15, - "end_line": 105, - "input_file": { - "filename": "src/renderers/DustyPilotRenderer.cairo" - }, - "start_col": 6, - "start_line": 105 - }, - "While handling return value of" - ], - "start_col": 5, - "start_line": 4 - } - }, - "1091": { - "accessible_scopes": [ - "__main__", - "__main__", - "__wrappers__", - "__wrappers__.token_uri_encode_return" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 55, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/arg_processor/5462c9ea522f66a6a8b3de2f37f244c7074893fe5c8d0b413046098a1ccfc2ce.cairo" - }, - "parent_location": [ - { - "end_col": 26, - "end_line": 107, - "input_file": { - "filename": "src/renderers/DustyPilotRenderer.cairo" - }, - "start_col": 7, - "start_line": 107 - }, - "While handling return value 'token_uri_len'" - ], - "start_col": 1, - "start_line": 1 - } - }, - "1092": { - "accessible_scopes": [ - "__main__", - "__main__", - "__wrappers__", - "__wrappers__.token_uri_encode_return" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 52, - "end_line": 2, - "input_file": { - "filename": "autogen/starknet/arg_processor/8d1ba44ec0b1d27c24688348db19d49f555faaa5454ce90a4e7ba33d6a63afea.cairo" - }, - "parent_location": [ - { - "end_col": 44, - "end_line": 107, - "input_file": { - "filename": "src/renderers/DustyPilotRenderer.cairo" - }, - "start_col": 28, - "start_line": 107 - }, - "While handling return value 'token_uri'" - ], - "start_col": 1, - "start_line": 2 - } - }, - "1093": { - "accessible_scopes": [ - "__main__", - "__main__", - "__wrappers__", - "__wrappers__.token_uri_encode_return" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 45, - "end_line": 5, - "input_file": { - "filename": "autogen/starknet/arg_processor/8d1ba44ec0b1d27c24688348db19d49f555faaa5454ce90a4e7ba33d6a63afea.cairo" - }, - "parent_location": [ - { - "end_col": 44, - "end_line": 107, - "input_file": { - "filename": "src/renderers/DustyPilotRenderer.cairo" - }, - "start_col": 28, - "start_line": 107 - }, - "While handling return value 'token_uri'" - ], - "start_col": 1, - "start_line": 5 - } - }, - "1095": { - "accessible_scopes": [ - "__main__", - "__main__", - "__wrappers__", - "__wrappers__.token_uri_encode_return" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 48, - "end_line": 2, - "input_file": { - "filename": "autogen/starknet/arg_processor/5462c9ea522f66a6a8b3de2f37f244c7074893fe5c8d0b413046098a1ccfc2ce.cairo" - }, - "parent_location": [ - { - "end_col": 26, - "end_line": 107, - "input_file": { - "filename": "src/renderers/DustyPilotRenderer.cairo" - }, - "parent_location": [ - { - "end_col": 53, - "end_line": 10, - "input_file": { - "filename": "autogen/starknet/arg_processor/8d1ba44ec0b1d27c24688348db19d49f555faaa5454ce90a4e7ba33d6a63afea.cairo" - }, - "parent_location": [ - { - "end_col": 44, - "end_line": 107, - "input_file": { - "filename": "src/renderers/DustyPilotRenderer.cairo" - }, - "start_col": 28, - "start_line": 107 - }, - "While handling return value 'token_uri'" - ], - "start_col": 35, - "start_line": 10 - }, - "While expanding the reference '__return_value_ptr' in:" - ], - "start_col": 7, - "start_line": 107 - }, - "While handling return value 'token_uri_len'" - ], - "start_col": 26, - "start_line": 2 - } - }, - "1097": { - "accessible_scopes": [ - "__main__", - "__main__", - "__wrappers__", - "__wrappers__.token_uri_encode_return" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 84, - "end_line": 10, - "input_file": { - "filename": "autogen/starknet/arg_processor/8d1ba44ec0b1d27c24688348db19d49f555faaa5454ce90a4e7ba33d6a63afea.cairo" - }, - "parent_location": [ - { - "end_col": 44, - "end_line": 107, - "input_file": { - "filename": "src/renderers/DustyPilotRenderer.cairo" - }, - "start_col": 28, - "start_line": 107 - }, - "While handling return value 'token_uri'" - ], - "start_col": 1, - "start_line": 10 - } - }, - "1098": { - "accessible_scopes": [ - "__main__", - "__main__", - "__wrappers__", - "__wrappers__.token_uri_encode_return" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 48, - "end_line": 2, - "input_file": { - "filename": "autogen/starknet/arg_processor/5462c9ea522f66a6a8b3de2f37f244c7074893fe5c8d0b413046098a1ccfc2ce.cairo" - }, - "parent_location": [ - { - "end_col": 26, - "end_line": 107, - "input_file": { - "filename": "src/renderers/DustyPilotRenderer.cairo" - }, - "parent_location": [ - { - "end_col": 49, - "end_line": 7, - "input_file": { - "filename": "autogen/starknet/arg_processor/8d1ba44ec0b1d27c24688348db19d49f555faaa5454ce90a4e7ba33d6a63afea.cairo" - }, - "parent_location": [ - { - "end_col": 44, - "end_line": 107, - "input_file": { - "filename": "src/renderers/DustyPilotRenderer.cairo" - }, - "parent_location": [ - { - "end_col": 32, - "end_line": 12, - "input_file": { - "filename": "autogen/starknet/arg_processor/8d1ba44ec0b1d27c24688348db19d49f555faaa5454ce90a4e7ba33d6a63afea.cairo" - }, - "parent_location": [ - { - "end_col": 44, - "end_line": 107, - "input_file": { - "filename": "src/renderers/DustyPilotRenderer.cairo" - }, - "start_col": 28, - "start_line": 107 - }, - "While handling return value 'token_uri'" - ], - "start_col": 9, - "start_line": 12 - }, - "While expanding the reference '__return_value_ptr_copy' in:" - ], - "start_col": 28, - "start_line": 107 - }, - "While handling return value 'token_uri'" - ], - "start_col": 31, - "start_line": 7 - }, - "While expanding the reference '__return_value_ptr' in:" - ], - "start_col": 7, - "start_line": 107 - }, - "While handling return value 'token_uri_len'" - ], - "start_col": 26, - "start_line": 2 - } - }, - "1100": { - "accessible_scopes": [ - "__main__", - "__main__", - "__wrappers__", - "__wrappers__.token_uri_encode_return" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 28, - "end_line": 13, - "input_file": { - "filename": "autogen/starknet/arg_processor/8d1ba44ec0b1d27c24688348db19d49f555faaa5454ce90a4e7ba33d6a63afea.cairo" - }, - "parent_location": [ - { - "end_col": 44, - "end_line": 107, - "input_file": { - "filename": "src/renderers/DustyPilotRenderer.cairo" - }, - "start_col": 28, - "start_line": 107 - }, - "While handling return value 'token_uri'" - ], - "start_col": 9, - "start_line": 13 - } - }, - "1101": { - "accessible_scopes": [ - "__main__", - "__main__", - "__wrappers__", - "__wrappers__.token_uri_encode_return" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 32, - "end_line": 14, - "input_file": { - "filename": "autogen/starknet/arg_processor/8d1ba44ec0b1d27c24688348db19d49f555faaa5454ce90a4e7ba33d6a63afea.cairo" - }, - "parent_location": [ - { - "end_col": 44, - "end_line": 107, - "input_file": { - "filename": "src/renderers/DustyPilotRenderer.cairo" - }, - "start_col": 28, - "start_line": 107 - }, - "While handling return value 'token_uri'" - ], - "start_col": 9, - "start_line": 14 - } - }, - "1102": { - "accessible_scopes": [ - "__main__", - "__main__", - "__wrappers__", - "__wrappers__.token_uri_encode_return" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 37, - "end_line": 14, - "input_file": { - "filename": "autogen/starknet/arg_processor/8d1ba44ec0b1d27c24688348db19d49f555faaa5454ce90a4e7ba33d6a63afea.cairo" - }, - "parent_location": [ - { - "end_col": 44, - "end_line": 107, - "input_file": { - "filename": "src/renderers/DustyPilotRenderer.cairo" - }, - "start_col": 28, - "start_line": 107 - }, - "While handling return value 'token_uri'" - ], - "start_col": 1, - "start_line": 11 - } - }, - "1104": { - "accessible_scopes": [ - "__main__", - "__main__", - "__wrappers__", - "__wrappers__.token_uri_encode_return" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 22, - "end_line": 5, - "input_file": { - "filename": "autogen/starknet/arg_processor/8d1ba44ec0b1d27c24688348db19d49f555faaa5454ce90a4e7ba33d6a63afea.cairo" - }, - "parent_location": [ - { - "end_col": 44, - "end_line": 107, - "input_file": { - "filename": "src/renderers/DustyPilotRenderer.cairo" - }, - "parent_location": [ - { - "end_col": 40, - "end_line": 10, - "input_file": { - "filename": "autogen/starknet/external/return/token_uri/f48cf5085ac07908983bbc364b0ba70d64fa7f2a9b8dc38e9d6fe3783bd626a8.cairo" - }, - "parent_location": [ - { - "end_col": 15, - "end_line": 105, - "input_file": { - "filename": "src/renderers/DustyPilotRenderer.cairo" - }, - "start_col": 6, - "start_line": 105 - }, - "While handling return value of" - ], - "start_col": 25, - "start_line": 10 - }, - "While expanding the reference 'range_check_ptr' in:" - ], - "start_col": 28, - "start_line": 107 - }, - "While handling return value 'token_uri'" - ], - "start_col": 7, - "start_line": 5 - } - }, - "1105": { - "accessible_scopes": [ - "__main__", - "__main__", - "__wrappers__", - "__wrappers__.token_uri_encode_return" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 63, - "end_line": 11, - "input_file": { - "filename": "autogen/starknet/external/return/token_uri/f48cf5085ac07908983bbc364b0ba70d64fa7f2a9b8dc38e9d6fe3783bd626a8.cairo" - }, - "parent_location": [ - { - "end_col": 15, - "end_line": 105, - "input_file": { - "filename": "src/renderers/DustyPilotRenderer.cairo" - }, - "start_col": 6, - "start_line": 105 - }, - "While handling return value of" - ], - "start_col": 18, - "start_line": 11 - } - }, - "1106": { - "accessible_scopes": [ - "__main__", - "__main__", - "__wrappers__", - "__wrappers__.token_uri_encode_return" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 35, - "end_line": 5, - "input_file": { - "filename": "autogen/starknet/external/return/token_uri/f48cf5085ac07908983bbc364b0ba70d64fa7f2a9b8dc38e9d6fe3783bd626a8.cairo" - }, - "parent_location": [ - { - "end_col": 15, - "end_line": 105, - "input_file": { - "filename": "src/renderers/DustyPilotRenderer.cairo" - }, - "parent_location": [ - { - "end_col": 38, - "end_line": 12, - "input_file": { - "filename": "autogen/starknet/external/return/token_uri/f48cf5085ac07908983bbc364b0ba70d64fa7f2a9b8dc38e9d6fe3783bd626a8.cairo" - }, - "parent_location": [ - { - "end_col": 15, - "end_line": 105, - "input_file": { - "filename": "src/renderers/DustyPilotRenderer.cairo" - }, - "start_col": 6, - "start_line": 105 - }, - "While handling return value of" - ], - "start_col": 14, - "start_line": 12 - }, - "While expanding the reference '__return_value_ptr_start' in:" - ], - "start_col": 6, - "start_line": 105 - }, - "While handling return value of" - ], - "start_col": 11, - "start_line": 5 - } - }, - "1107": { - "accessible_scopes": [ - "__main__", - "__main__", - "__wrappers__", - "__wrappers__.token_uri_encode_return" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 40, - "end_line": 12, - "input_file": { - "filename": "autogen/starknet/external/return/token_uri/f48cf5085ac07908983bbc364b0ba70d64fa7f2a9b8dc38e9d6fe3783bd626a8.cairo" - }, - "parent_location": [ - { - "end_col": 15, - "end_line": 105, - "input_file": { - "filename": "src/renderers/DustyPilotRenderer.cairo" - }, - "start_col": 6, - "start_line": 105 - }, - "While handling return value of" - ], - "start_col": 5, - "start_line": 9 - } - }, - "1108": { - "accessible_scopes": [ - "__main__", - "__main__", - "__wrappers__", - "__wrappers__.token_uri" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 18, - "end_line": 2, - "input_file": { - "filename": "autogen/starknet/external/token_uri/0e46c67014b1932c61618de0923cda1cd086d4d13ccfc96398cf52540cb66251.cairo" - }, - "parent_location": [ - { - "end_col": 15, - "end_line": 105, - "input_file": { - "filename": "src/renderers/DustyPilotRenderer.cairo" - }, - "start_col": 6, - "start_line": 105 - }, - "While constructing the external wrapper for:" - ], - "start_col": 5, - "start_line": 2 - } - }, - "1110": { - "accessible_scopes": [ - "__main__", - "__main__", - "__wrappers__", - "__wrappers__.token_uri" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 40, - "end_line": 2, - "input_file": { - "filename": "autogen/starknet/arg_processor/e1eb73cd870ec466294c3700e77817cf3c039ac1384882ddb76383eb87a5da90.cairo" - }, - "parent_location": [ - { - "end_col": 44, - "end_line": 106, - "input_file": { - "filename": "src/renderers/DustyPilotRenderer.cairo" - }, - "parent_location": [ - { - "end_col": 45, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/arg_processor/c31620b02d4d706f0542c989b2aadc01b0981d1f6a5933a8fe4937ace3d70d92.cairo" - }, - "parent_location": [ - { - "end_col": 15, - "end_line": 105, - "input_file": { - "filename": "src/renderers/DustyPilotRenderer.cairo" - }, - "parent_location": [ - { - "end_col": 57, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/arg_processor/01cba52f8515996bb9d7070bde81ff39281d096d7024a558efcba6e1fd2402cf.cairo" - }, - "parent_location": [ - { - "end_col": 15, - "end_line": 105, - "input_file": { - "filename": "src/renderers/DustyPilotRenderer.cairo" - }, - "start_col": 6, - "start_line": 105 - }, - "While handling calldata of" - ], - "start_col": 35, - "start_line": 1 - }, - "While expanding the reference '__calldata_actual_size' in:" - ], - "start_col": 6, - "start_line": 105 - }, - "While handling calldata of" - ], - "start_col": 31, - "start_line": 1 - }, - "While expanding the reference '__calldata_ptr' in:" - ], - "start_col": 34, - "start_line": 106 - }, - "While handling calldata argument 'name'" - ], - "start_col": 22, - "start_line": 2 - } - }, - "1112": { - "accessible_scopes": [ - "__main__", - "__main__", - "__wrappers__", - "__wrappers__.token_uri" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 58, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/arg_processor/01cba52f8515996bb9d7070bde81ff39281d096d7024a558efcba6e1fd2402cf.cairo" - }, - "parent_location": [ - { - "end_col": 15, - "end_line": 105, - "input_file": { - "filename": "src/renderers/DustyPilotRenderer.cairo" - }, - "start_col": 6, - "start_line": 105 - }, - "While handling calldata of" - ], - "start_col": 1, - "start_line": 1 - } - }, - "1113": { - "accessible_scopes": [ - "__main__", - "__main__", - "__wrappers__", - "__wrappers__.token_uri" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 110, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/external/token_uri/9684a85e93c782014ca14293edea4eb2502039a5a7b6538ecd39c56faaf12529.cairo" - }, - "parent_location": [ - { - "end_col": 42, - "end_line": 105, - "input_file": { - "filename": "src/renderers/DustyPilotRenderer.cairo" - }, - "parent_location": [ - { - "end_col": 57, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/external/token_uri/3c45a718d5dec5c07bc4698665154ce6a53892dd6482470bafad1a3c27838e5e.cairo" - }, - "parent_location": [ - { - "end_col": 15, - "end_line": 105, - "input_file": { - "filename": "src/renderers/DustyPilotRenderer.cairo" - }, - "start_col": 6, - "start_line": 105 - }, - "While constructing the external wrapper for:" - ], - "start_col": 45, - "start_line": 1 - }, - "While expanding the reference 'pedersen_ptr' in:" - ], - "start_col": 16, - "start_line": 105 - }, - "While constructing the external wrapper for:" - ], - "start_col": 20, - "start_line": 1 - } - }, - "1114": { - "accessible_scopes": [ - "__main__", - "__main__", - "__wrappers__", - "__wrappers__.token_uri" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 64, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/external/token_uri/b2c52ca2d2a8fc8791a983086d8716c5eacd0c3d62934914d2286f84b98ff4cb.cairo" - }, - "parent_location": [ - { - "end_col": 62, - "end_line": 105, - "input_file": { - "filename": "src/renderers/DustyPilotRenderer.cairo" - }, - "parent_location": [ - { - "end_col": 82, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/external/token_uri/3c45a718d5dec5c07bc4698665154ce6a53892dd6482470bafad1a3c27838e5e.cairo" - }, - "parent_location": [ - { - "end_col": 15, - "end_line": 105, - "input_file": { - "filename": "src/renderers/DustyPilotRenderer.cairo" - }, - "start_col": 6, - "start_line": 105 - }, - "While constructing the external wrapper for:" - ], - "start_col": 71, - "start_line": 1 - }, - "While expanding the reference 'syscall_ptr' in:" - ], - "start_col": 44, - "start_line": 105 - }, - "While constructing the external wrapper for:" - ], - "start_col": 19, - "start_line": 1 - } - }, - "1115": { - "accessible_scopes": [ - "__main__", - "__main__", - "__wrappers__", - "__wrappers__.token_uri" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 67, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/external/token_uri/741ea357d6336b0bed7bf0472425acd0311d543883b803388880e60a232040c7.cairo" - }, - "parent_location": [ - { - "end_col": 79, - "end_line": 105, - "input_file": { - "filename": "src/renderers/DustyPilotRenderer.cairo" - }, - "parent_location": [ - { - "end_col": 115, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/external/token_uri/3c45a718d5dec5c07bc4698665154ce6a53892dd6482470bafad1a3c27838e5e.cairo" - }, - "parent_location": [ - { - "end_col": 15, - "end_line": 105, - "input_file": { - "filename": "src/renderers/DustyPilotRenderer.cairo" - }, - "start_col": 6, - "start_line": 105 - }, - "While constructing the external wrapper for:" - ], - "start_col": 100, - "start_line": 1 - }, - "While expanding the reference 'range_check_ptr' in:" - ], - "start_col": 64, - "start_line": 105 - }, - "While constructing the external wrapper for:" - ], - "start_col": 23, - "start_line": 1 - } - }, - "1116": { - "accessible_scopes": [ - "__main__", - "__main__", - "__wrappers__", - "__wrappers__.token_uri" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 47, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/arg_processor/92bae94c430cca894eac466fa5be50d176f1f62e79244db218577fbac5e84220.cairo" - }, - "parent_location": [ - { - "end_col": 19, - "end_line": 106, - "input_file": { - "filename": "src/renderers/DustyPilotRenderer.cairo" - }, - "parent_location": [ - { - "end_col": 149, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/external/token_uri/3c45a718d5dec5c07bc4698665154ce6a53892dd6482470bafad1a3c27838e5e.cairo" - }, - "parent_location": [ - { - "end_col": 15, - "end_line": 105, - "input_file": { - "filename": "src/renderers/DustyPilotRenderer.cairo" - }, - "start_col": 6, - "start_line": 105 - }, - "While constructing the external wrapper for:" - ], - "start_col": 126, - "start_line": 1 - }, - "While expanding the reference '__calldata_arg_token_id' in:" - ], - "start_col": 5, - "start_line": 106 - }, - "While handling calldata argument 'token_id'" - ], - "start_col": 31, - "start_line": 1 - } - }, - "1117": { - "accessible_scopes": [ - "__main__", - "__main__", - "__wrappers__", - "__wrappers__.token_uri" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 44, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/arg_processor/3e93b8906c329e7a5c33e020ce7a5a9c542c4444955be98eec5fcbef545a8662.cairo" - }, - "parent_location": [ - { - "end_col": 32, - "end_line": 106, - "input_file": { - "filename": "src/renderers/DustyPilotRenderer.cairo" - }, - "parent_location": [ - { - "end_col": 177, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/external/token_uri/3c45a718d5dec5c07bc4698665154ce6a53892dd6482470bafad1a3c27838e5e.cairo" - }, - "parent_location": [ - { - "end_col": 15, - "end_line": 105, - "input_file": { - "filename": "src/renderers/DustyPilotRenderer.cairo" - }, - "start_col": 6, - "start_line": 105 - }, - "While constructing the external wrapper for:" - ], - "start_col": 157, - "start_line": 1 - }, - "While expanding the reference '__calldata_arg_value' in:" - ], - "start_col": 21, - "start_line": 106 - }, - "While handling calldata argument 'value'" - ], - "start_col": 28, - "start_line": 1 - } - }, - "1118": { - "accessible_scopes": [ - "__main__", - "__main__", - "__wrappers__", - "__wrappers__.token_uri" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 43, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/arg_processor/e1eb73cd870ec466294c3700e77817cf3c039ac1384882ddb76383eb87a5da90.cairo" - }, - "parent_location": [ - { - "end_col": 44, - "end_line": 106, - "input_file": { - "filename": "src/renderers/DustyPilotRenderer.cairo" - }, - "parent_location": [ - { - "end_col": 203, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/external/token_uri/3c45a718d5dec5c07bc4698665154ce6a53892dd6482470bafad1a3c27838e5e.cairo" - }, - "parent_location": [ - { - "end_col": 15, - "end_line": 105, - "input_file": { - "filename": "src/renderers/DustyPilotRenderer.cairo" - }, - "start_col": 6, - "start_line": 105 - }, - "While constructing the external wrapper for:" - ], - "start_col": 184, - "start_line": 1 - }, - "While expanding the reference '__calldata_arg_name' in:" - ], - "start_col": 34, - "start_line": 106 - }, - "While handling calldata argument 'name'" - ], - "start_col": 27, - "start_line": 1 - } - }, - "1119": { - "accessible_scopes": [ - "__main__", - "__main__", - "__wrappers__", - "__wrappers__.token_uri" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 15, - "end_line": 105, - "input_file": { - "filename": "src/renderers/DustyPilotRenderer.cairo" - }, - "start_col": 6, - "start_line": 105 - } - }, - "1121": { - "accessible_scopes": [ - "__main__", - "__main__", - "__wrappers__", - "__wrappers__.token_uri" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 82, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/external/token_uri/3c45a718d5dec5c07bc4698665154ce6a53892dd6482470bafad1a3c27838e5e.cairo" - }, - "parent_location": [ - { - "end_col": 15, - "end_line": 105, - "input_file": { - "filename": "src/renderers/DustyPilotRenderer.cairo" - }, - "parent_location": [ - { - "end_col": 82, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/external/token_uri/3c45a718d5dec5c07bc4698665154ce6a53892dd6482470bafad1a3c27838e5e.cairo" - }, - "parent_location": [ - { - "end_col": 15, - "end_line": 105, - "input_file": { - "filename": "src/renderers/DustyPilotRenderer.cairo" - }, - "start_col": 6, - "start_line": 105 - }, - "While constructing the external wrapper for:" - ], - "start_col": 71, - "start_line": 1 - }, - "While auto generating local variable for 'syscall_ptr'." - ], - "start_col": 6, - "start_line": 105 - }, - "While constructing the external wrapper for:" - ], - "start_col": 71, - "start_line": 1 - } - }, - "1122": { - "accessible_scopes": [ - "__main__", - "__main__", - "__wrappers__", - "__wrappers__.token_uri" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 57, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/external/token_uri/3c45a718d5dec5c07bc4698665154ce6a53892dd6482470bafad1a3c27838e5e.cairo" - }, - "parent_location": [ - { - "end_col": 15, - "end_line": 105, - "input_file": { - "filename": "src/renderers/DustyPilotRenderer.cairo" - }, - "parent_location": [ - { - "end_col": 57, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/external/token_uri/3c45a718d5dec5c07bc4698665154ce6a53892dd6482470bafad1a3c27838e5e.cairo" - }, - "parent_location": [ - { - "end_col": 15, - "end_line": 105, - "input_file": { - "filename": "src/renderers/DustyPilotRenderer.cairo" - }, - "start_col": 6, - "start_line": 105 - }, - "While constructing the external wrapper for:" - ], - "start_col": 45, - "start_line": 1 - }, - "While auto generating local variable for 'pedersen_ptr'." - ], - "start_col": 6, - "start_line": 105 - }, - "While constructing the external wrapper for:" - ], - "start_col": 45, - "start_line": 1 - } - }, - "1123": { - "accessible_scopes": [ - "__main__", - "__main__", - "__wrappers__", - "__wrappers__.token_uri" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 115, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/external/token_uri/3c45a718d5dec5c07bc4698665154ce6a53892dd6482470bafad1a3c27838e5e.cairo" - }, - "parent_location": [ - { - "end_col": 15, - "end_line": 105, - "input_file": { - "filename": "src/renderers/DustyPilotRenderer.cairo" - }, - "parent_location": [ - { - "end_col": 98, - "end_line": 2, - "input_file": { - "filename": "autogen/starknet/external/token_uri/3c45a718d5dec5c07bc4698665154ce6a53892dd6482470bafad1a3c27838e5e.cairo" - }, - "parent_location": [ - { - "end_col": 15, - "end_line": 105, - "input_file": { - "filename": "src/renderers/DustyPilotRenderer.cairo" - }, - "start_col": 6, - "start_line": 105 - }, - "While constructing the external wrapper for:" - ], - "start_col": 83, - "start_line": 2 - }, - "While expanding the reference 'range_check_ptr' in:" - ], - "start_col": 6, - "start_line": 105 - }, - "While constructing the external wrapper for:" - ], - "start_col": 100, - "start_line": 1 - } - }, - "1124": { - "accessible_scopes": [ - "__main__", - "__main__", - "__wrappers__", - "__wrappers__.token_uri" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 99, - "end_line": 2, - "input_file": { - "filename": "autogen/starknet/external/token_uri/3c45a718d5dec5c07bc4698665154ce6a53892dd6482470bafad1a3c27838e5e.cairo" - }, - "parent_location": [ - { - "end_col": 15, - "end_line": 105, - "input_file": { - "filename": "src/renderers/DustyPilotRenderer.cairo" - }, - "start_col": 6, - "start_line": 105 - }, - "While constructing the external wrapper for:" - ], - "start_col": 48, - "start_line": 2 - } - }, - "1126": { - "accessible_scopes": [ - "__main__", - "__main__", - "__wrappers__", - "__wrappers__.token_uri" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 82, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/external/token_uri/3c45a718d5dec5c07bc4698665154ce6a53892dd6482470bafad1a3c27838e5e.cairo" - }, - "parent_location": [ - { - "end_col": 15, - "end_line": 105, - "input_file": { - "filename": "src/renderers/DustyPilotRenderer.cairo" - }, - "parent_location": [ - { - "end_col": 82, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/external/token_uri/3c45a718d5dec5c07bc4698665154ce6a53892dd6482470bafad1a3c27838e5e.cairo" - }, - "parent_location": [ - { - "end_col": 15, - "end_line": 105, - "input_file": { - "filename": "src/renderers/DustyPilotRenderer.cairo" - }, - "parent_location": [ - { - "end_col": 20, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/external/token_uri/da17921a4e81c09e730800bbf23bfdbe5e9e6bfaedc59d80fbf62087fa43c27d.cairo" - }, - "parent_location": [ - { - "end_col": 15, - "end_line": 105, - "input_file": { - "filename": "src/renderers/DustyPilotRenderer.cairo" - }, - "start_col": 6, - "start_line": 105 - }, - "While constructing the external wrapper for:" - ], - "start_col": 9, - "start_line": 1 - }, - "While expanding the reference 'syscall_ptr' in:" - ], - "start_col": 6, - "start_line": 105 - }, - "While constructing the external wrapper for:" - ], - "start_col": 71, - "start_line": 1 - }, - "While auto generating local variable for 'syscall_ptr'." - ], - "start_col": 6, - "start_line": 105 - }, - "While constructing the external wrapper for:" - ], - "start_col": 71, - "start_line": 1 - } - }, - "1127": { - "accessible_scopes": [ - "__main__", - "__main__", - "__wrappers__", - "__wrappers__.token_uri" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 57, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/external/token_uri/3c45a718d5dec5c07bc4698665154ce6a53892dd6482470bafad1a3c27838e5e.cairo" - }, - "parent_location": [ - { - "end_col": 15, - "end_line": 105, - "input_file": { - "filename": "src/renderers/DustyPilotRenderer.cairo" - }, - "parent_location": [ - { - "end_col": 57, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/external/token_uri/3c45a718d5dec5c07bc4698665154ce6a53892dd6482470bafad1a3c27838e5e.cairo" - }, - "parent_location": [ - { - "end_col": 15, - "end_line": 105, - "input_file": { - "filename": "src/renderers/DustyPilotRenderer.cairo" - }, - "parent_location": [ - { - "end_col": 33, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/external/token_uri/da17921a4e81c09e730800bbf23bfdbe5e9e6bfaedc59d80fbf62087fa43c27d.cairo" - }, - "parent_location": [ - { - "end_col": 15, - "end_line": 105, - "input_file": { - "filename": "src/renderers/DustyPilotRenderer.cairo" - }, - "start_col": 6, - "start_line": 105 - }, - "While constructing the external wrapper for:" - ], - "start_col": 21, - "start_line": 1 - }, - "While expanding the reference 'pedersen_ptr' in:" - ], - "start_col": 6, - "start_line": 105 - }, - "While constructing the external wrapper for:" - ], - "start_col": 45, - "start_line": 1 - }, - "While auto generating local variable for 'pedersen_ptr'." - ], - "start_col": 6, - "start_line": 105 - }, - "While constructing the external wrapper for:" - ], - "start_col": 45, - "start_line": 1 - } - }, - "1128": { - "accessible_scopes": [ - "__main__", - "__main__", - "__wrappers__", - "__wrappers__.token_uri" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 21, - "end_line": 2, - "input_file": { - "filename": "autogen/starknet/external/token_uri/3c45a718d5dec5c07bc4698665154ce6a53892dd6482470bafad1a3c27838e5e.cairo" - }, - "parent_location": [ - { - "end_col": 15, - "end_line": 105, - "input_file": { - "filename": "src/renderers/DustyPilotRenderer.cairo" - }, - "parent_location": [ - { - "end_col": 49, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/external/token_uri/da17921a4e81c09e730800bbf23bfdbe5e9e6bfaedc59d80fbf62087fa43c27d.cairo" - }, - "parent_location": [ - { - "end_col": 15, - "end_line": 105, - "input_file": { - "filename": "src/renderers/DustyPilotRenderer.cairo" - }, - "start_col": 6, - "start_line": 105 - }, - "While constructing the external wrapper for:" - ], - "start_col": 34, - "start_line": 1 - }, - "While expanding the reference 'range_check_ptr' in:" - ], - "start_col": 6, - "start_line": 105 - }, - "While constructing the external wrapper for:" - ], - "start_col": 6, - "start_line": 2 - } - }, - "1129": { - "accessible_scopes": [ - "__main__", - "__main__", - "__wrappers__", - "__wrappers__.token_uri" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 35, - "end_line": 2, - "input_file": { - "filename": "autogen/starknet/external/token_uri/3c45a718d5dec5c07bc4698665154ce6a53892dd6482470bafad1a3c27838e5e.cairo" - }, - "parent_location": [ - { - "end_col": 15, - "end_line": 105, - "input_file": { - "filename": "src/renderers/DustyPilotRenderer.cairo" - }, - "parent_location": [ - { - "end_col": 62, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/external/token_uri/da17921a4e81c09e730800bbf23bfdbe5e9e6bfaedc59d80fbf62087fa43c27d.cairo" - }, - "parent_location": [ - { - "end_col": 15, - "end_line": 105, - "input_file": { - "filename": "src/renderers/DustyPilotRenderer.cairo" - }, - "start_col": 6, - "start_line": 105 - }, - "While constructing the external wrapper for:" - ], - "start_col": 50, - "start_line": 1 - }, - "While expanding the reference 'retdata_size' in:" - ], - "start_col": 6, - "start_line": 105 - }, - "While constructing the external wrapper for:" - ], - "start_col": 23, - "start_line": 2 - } - }, - "1130": { - "accessible_scopes": [ - "__main__", - "__main__", - "__wrappers__", - "__wrappers__.token_uri" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 44, - "end_line": 2, - "input_file": { - "filename": "autogen/starknet/external/token_uri/3c45a718d5dec5c07bc4698665154ce6a53892dd6482470bafad1a3c27838e5e.cairo" - }, - "parent_location": [ - { - "end_col": 15, - "end_line": 105, - "input_file": { - "filename": "src/renderers/DustyPilotRenderer.cairo" - }, - "parent_location": [ - { - "end_col": 70, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/external/token_uri/da17921a4e81c09e730800bbf23bfdbe5e9e6bfaedc59d80fbf62087fa43c27d.cairo" - }, - "parent_location": [ - { - "end_col": 15, - "end_line": 105, - "input_file": { - "filename": "src/renderers/DustyPilotRenderer.cairo" - }, - "start_col": 6, - "start_line": 105 - }, - "While constructing the external wrapper for:" - ], - "start_col": 63, - "start_line": 1 - }, - "While expanding the reference 'retdata' in:" - ], - "start_col": 6, - "start_line": 105 - }, - "While constructing the external wrapper for:" - ], - "start_col": 37, - "start_line": 2 - } - }, - "1131": { - "accessible_scopes": [ - "__main__", - "__main__", - "__wrappers__", - "__wrappers__.token_uri" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 72, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/external/token_uri/da17921a4e81c09e730800bbf23bfdbe5e9e6bfaedc59d80fbf62087fa43c27d.cairo" - }, - "parent_location": [ - { - "end_col": 15, - "end_line": 105, - "input_file": { - "filename": "src/renderers/DustyPilotRenderer.cairo" - }, - "start_col": 6, - "start_line": 105 - }, - "While constructing the external wrapper for:" - ], - "start_col": 1, - "start_line": 1 - } - } - } - }, - "hints": { - "0": [ - { - "accessible_scopes": [ - "starkware.cairo.common.alloc", - "starkware.cairo.common.alloc.alloc" - ], - "code": "memory[ap] = segments.add()", - "flow_tracking_data": { - "ap_tracking": { - "group": 0, - "offset": 0 - }, - "reference_ids": {} - } - } - ], - "12": [ - { - "accessible_scopes": [ - "starkware.cairo.common.memcpy", - "starkware.cairo.common.memcpy.memcpy" - ], - "code": "vm_enter_scope({'n': ids.len})", - "flow_tracking_data": { - "ap_tracking": { - "group": 2, - "offset": 0 - }, - "reference_ids": { - "starkware.cairo.common.memcpy.memcpy.len": 0 - } - } - } - ], - "20": [ - { - "accessible_scopes": [ - "starkware.cairo.common.memcpy", - "starkware.cairo.common.memcpy.memcpy" - ], - "code": "n -= 1\nids.continue_copying = 1 if n > 0 else 0", - "flow_tracking_data": { - "ap_tracking": { - "group": 2, - "offset": 5 - }, - "reference_ids": { - "starkware.cairo.common.memcpy.memcpy.continue_copying": 1 - } - } - } - ], - "23": [ - { - "accessible_scopes": [ - "starkware.cairo.common.memcpy", - "starkware.cairo.common.memcpy.memcpy" - ], - "code": "vm_exit_scope()", - "flow_tracking_data": { - "ap_tracking": { - "group": 2, - "offset": 6 - }, - "reference_ids": {} - } - } - ], - "28": [ - { - "accessible_scopes": [ - "starkware.starknet.common.syscalls", - "starkware.starknet.common.syscalls.get_caller_address" - ], - "code": "syscall_handler.get_caller_address(segments=segments, syscall_ptr=ids.syscall_ptr)", - "flow_tracking_data": { - "ap_tracking": { - "group": 4, - "offset": 1 - }, - "reference_ids": { - "starkware.starknet.common.syscalls.get_caller_address.syscall_ptr": 2 - } - } - } - ], - "36": [ - { - "accessible_scopes": [ - "starkware.starknet.common.syscalls", - "starkware.starknet.common.syscalls.storage_read" - ], - "code": "syscall_handler.storage_read(segments=segments, syscall_ptr=ids.syscall_ptr)", - "flow_tracking_data": { - "ap_tracking": { - "group": 5, - "offset": 1 - }, - "reference_ids": { - "starkware.starknet.common.syscalls.storage_read.syscall_ptr": 3 - } - } - } - ], - "45": [ - { - "accessible_scopes": [ - "starkware.starknet.common.syscalls", - "starkware.starknet.common.syscalls.storage_write" - ], - "code": "syscall_handler.storage_write(segments=segments, syscall_ptr=ids.syscall_ptr)", - "flow_tracking_data": { - "ap_tracking": { - "group": 6, - "offset": 1 - }, - "reference_ids": { - "starkware.starknet.common.syscalls.storage_write.syscall_ptr": 4 - } - } - } - ], - "55": [ - { - "accessible_scopes": [ - "starkware.starknet.common.syscalls", - "starkware.starknet.common.syscalls.emit_event" - ], - "code": "syscall_handler.emit_event(segments=segments, syscall_ptr=ids.syscall_ptr)", - "flow_tracking_data": { - "ap_tracking": { - "group": 7, - "offset": 1 - }, - "reference_ids": { - "starkware.starknet.common.syscalls.emit_event.syscall_ptr": 5 - } - } - } - ], - "58": [ - { - "accessible_scopes": [ - "starkware.cairo.common.math", - "starkware.cairo.common.math.assert_not_zero" - ], - "code": "from starkware.cairo.common.math_utils import assert_integer\nassert_integer(ids.value)\nassert ids.value % PRIME != 0, f'assert_not_zero failed: {ids.value} = 0.'", - "flow_tracking_data": { - "ap_tracking": { - "group": 8, - "offset": 0 - }, - "reference_ids": { - "starkware.cairo.common.math.assert_not_zero.value": 6 - } - } - } - ], - "63": [ - { - "accessible_scopes": [ - "starkware.cairo.common.math", - "starkware.cairo.common.math.assert_nn" - ], - "code": "from starkware.cairo.common.math_utils import assert_integer\nassert_integer(ids.a)\nassert 0 <= ids.a % PRIME < range_check_builtin.bound, f'a = {ids.a} is out of range.'", - "flow_tracking_data": { - "ap_tracking": { - "group": 9, - "offset": 0 - }, - "reference_ids": { - "starkware.cairo.common.math.assert_nn.a": 7 - } - } - } - ], - "72": [ - { - "accessible_scopes": [ - "starkware.cairo.common.math", - "starkware.cairo.common.math.assert_250_bit" - ], - "code": "from starkware.cairo.common.math_utils import as_int\n\n# Correctness check.\nvalue = as_int(ids.value, PRIME) % PRIME\nassert value < ids.UPPER_BOUND, f'{value} is outside of the range [0, 2**250).'\n\n# Calculation for the assertion.\nids.high, ids.low = divmod(ids.value, ids.SHIFT)", - "flow_tracking_data": { - "ap_tracking": { - "group": 11, - "offset": 0 - }, - "reference_ids": { - "starkware.cairo.common.math.assert_250_bit.high": 10, - "starkware.cairo.common.math.assert_250_bit.low": 9, - "starkware.cairo.common.math.assert_250_bit.value": 8 - } - } - } - ], - "85": [ - { - "accessible_scopes": [ - "starkware.cairo.common.math", - "starkware.cairo.common.math.split_felt" - ], - "code": "from starkware.cairo.common.math_utils import assert_integer\nassert ids.MAX_HIGH < 2**128 and ids.MAX_LOW < 2**128\nassert PRIME - 1 == ids.MAX_HIGH * 2**128 + ids.MAX_LOW\nassert_integer(ids.value)\nids.low = ids.value & ((1 << 128) - 1)\nids.high = ids.value >> 128", - "flow_tracking_data": { - "ap_tracking": { - "group": 12, - "offset": 0 - }, - "reference_ids": { - "starkware.cairo.common.math.split_felt.high": 13, - "starkware.cairo.common.math.split_felt.low": 12, - "starkware.cairo.common.math.split_felt.value": 11 - } - } - } - ], - "114": [ - { - "accessible_scopes": [ - "starkware.cairo.common.math", - "starkware.cairo.common.math.assert_le_felt" - ], - "code": "import itertools\n\nfrom starkware.cairo.common.math_utils import assert_integer\nassert_integer(ids.a)\nassert_integer(ids.b)\na = ids.a % PRIME\nb = ids.b % PRIME\nassert a <= b, f'a = {a} is not less than or equal to b = {b}.'\n\n# Find an arc less than PRIME / 3, and another less than PRIME / 2.\nlengths_and_indices = [(a, 0), (b - a, 1), (PRIME - 1 - b, 2)]\nlengths_and_indices.sort()\nassert lengths_and_indices[0][0] <= PRIME // 3 and lengths_and_indices[1][0] <= PRIME // 2\nexcluded = lengths_and_indices[2][1]\n\nmemory[ids.range_check_ptr + 1], memory[ids.range_check_ptr + 0] = (\n divmod(lengths_and_indices[0][0], ids.PRIME_OVER_3_HIGH))\nmemory[ids.range_check_ptr + 3], memory[ids.range_check_ptr + 2] = (\n divmod(lengths_and_indices[1][0], ids.PRIME_OVER_2_HIGH))", - "flow_tracking_data": { - "ap_tracking": { - "group": 13, - "offset": 0 - }, - "reference_ids": { - "starkware.cairo.common.math.assert_le_felt.a": 14, - "starkware.cairo.common.math.assert_le_felt.b": 15, - "starkware.cairo.common.math.assert_le_felt.range_check_ptr": 16 - } - } - } - ], - "124": [ - { - "accessible_scopes": [ - "starkware.cairo.common.math", - "starkware.cairo.common.math.assert_le_felt" - ], - "code": "memory[ap] = 1 if excluded != 0 else 0", - "flow_tracking_data": { - "ap_tracking": { - "group": 13, - "offset": 8 - }, - "reference_ids": {} - } - } - ], - "138": [ - { - "accessible_scopes": [ - "starkware.cairo.common.math", - "starkware.cairo.common.math.assert_le_felt" - ], - "code": "memory[ap] = 1 if excluded != 1 else 0", - "flow_tracking_data": { - "ap_tracking": { - "group": 13, - "offset": 9 - }, - "reference_ids": {} - } - } - ], - "150": [ - { - "accessible_scopes": [ - "starkware.cairo.common.math", - "starkware.cairo.common.math.assert_le_felt" - ], - "code": "assert excluded == 2", - "flow_tracking_data": { - "ap_tracking": { - "group": 13, - "offset": 10 - }, - "reference_ids": {} - } - } - ], - "161": [ - { - "accessible_scopes": [ - "starkware.cairo.common.math", - "starkware.cairo.common.math.abs_value" - ], - "code": "from starkware.cairo.common.math_utils import is_positive\nids.is_positive = 1 if is_positive(\n value=ids.value, prime=PRIME, rc_bound=range_check_builtin.bound) else 0", - "flow_tracking_data": { - "ap_tracking": { - "group": 14, - "offset": 1 - }, - "reference_ids": { - "starkware.cairo.common.math.abs_value.is_positive": 18, - "starkware.cairo.common.math.abs_value.value": 17 - } - } - } - ], - "184": [ - { - "accessible_scopes": [ - "starkware.cairo.common.math", - "starkware.cairo.common.math.sign" - ], - "code": "from starkware.cairo.common.math_utils import is_positive\nids.is_positive = 1 if is_positive(\n value=ids.value, prime=PRIME, rc_bound=range_check_builtin.bound) else 0", - "flow_tracking_data": { - "ap_tracking": { - "group": 15, - "offset": 1 - }, - "reference_ids": { - "starkware.cairo.common.math.sign.is_positive": 20, - "starkware.cairo.common.math.sign.value": 19 - } - } - } - ], - "202": [ - { - "accessible_scopes": [ - "starkware.cairo.common.math", - "starkware.cairo.common.math.unsigned_div_rem" - ], - "code": "from starkware.cairo.common.math_utils import assert_integer\nassert_integer(ids.div)\nassert 0 < ids.div <= PRIME // range_check_builtin.bound, \\\n f'div={hex(ids.div)} is out of the valid range.'\nids.q, ids.r = divmod(ids.value, ids.div)", - "flow_tracking_data": { - "ap_tracking": { - "group": 16, - "offset": 0 - }, - "reference_ids": { - "starkware.cairo.common.math.unsigned_div_rem.div": 22, - "starkware.cairo.common.math.unsigned_div_rem.q": 24, - "starkware.cairo.common.math.unsigned_div_rem.r": 23, - "starkware.cairo.common.math.unsigned_div_rem.value": 21 - } - } - } - ], - "219": [ - { - "accessible_scopes": [ - "starkware.starknet.common.storage", - "starkware.starknet.common.storage.normalize_address" - ], - "code": "# Verify the assumptions on the relationship between 2**250, ADDR_BOUND and PRIME.\nADDR_BOUND = ids.ADDR_BOUND % PRIME\nassert (2**250 < ADDR_BOUND <= 2**251) and (2 * 2**250 < PRIME) and (\n ADDR_BOUND * 2 > PRIME), \\\n 'normalize_address() cannot be used with the current constants.'\nids.is_small = 1 if ids.addr < ADDR_BOUND else 0", - "flow_tracking_data": { - "ap_tracking": { - "group": 17, - "offset": 1 - }, - "reference_ids": { - "starkware.starknet.common.storage.normalize_address.addr": 25, - "starkware.starknet.common.storage.normalize_address.is_small": 26 - } - } - } - ], - "237": [ - { - "accessible_scopes": [ - "starkware.starknet.common.storage", - "starkware.starknet.common.storage.normalize_address" - ], - "code": "ids.is_250 = 1 if ids.addr < 2**250 else 0", - "flow_tracking_data": { - "ap_tracking": { - "group": 17, - "offset": 2 - }, - "reference_ids": { - "starkware.starknet.common.storage.normalize_address.addr": 25, - "starkware.starknet.common.storage.normalize_address.is_250": 27 - } - } - } - ], - "373": [ - { - "accessible_scopes": [ - "starkware.cairo.common.math_cmp", - "starkware.cairo.common.math_cmp.is_nn" - ], - "code": "memory[ap] = 0 if 0 <= (ids.a % PRIME) < range_check_builtin.bound else 1", - "flow_tracking_data": { - "ap_tracking": { - "group": 31, - "offset": 0 - }, - "reference_ids": { - "starkware.cairo.common.math_cmp.is_nn.a": 28 - } - } - } - ], - "383": [ - { - "accessible_scopes": [ - "starkware.cairo.common.math_cmp", - "starkware.cairo.common.math_cmp.is_nn" - ], - "code": "memory[ap] = 0 if 0 <= ((-ids.a - 1) % PRIME) < range_check_builtin.bound else 1", - "flow_tracking_data": { - "ap_tracking": { - "group": 31, - "offset": 1 - }, - "reference_ids": { - "starkware.cairo.common.math_cmp.is_nn.a": 28 - } - } - } - ], - "617": [ - { - "accessible_scopes": [ - "__main__", - "__main__", - "__wrappers__", - "__wrappers__.getOwner_encode_return" - ], - "code": "memory[ap] = segments.add()", - "flow_tracking_data": { - "ap_tracking": { - "group": 52, - "offset": 0 - }, - "reference_ids": {} - } - } - ], - "661": [ - { - "accessible_scopes": [ - "__main__", - "__main__", - "__wrappers__", - "__wrappers__.getThresholds_encode_return" - ], - "code": "memory[ap] = segments.add()", - "flow_tracking_data": { - "ap_tracking": { - "group": 56, - "offset": 0 - }, - "reference_ids": {} - } - } - ], - "732": [ - { - "accessible_scopes": [ - "__main__", - "__main__", - "__wrappers__", - "__wrappers__.setThresholds" - ], - "code": "memory[ap] = segments.add()", - "flow_tracking_data": { - "ap_tracking": { - "group": 65, - "offset": 0 - }, - "reference_ids": {} - } - } - ], - "809": [ - { - "accessible_scopes": [ - "__main__", - "__main__", - "__wrappers__", - "__wrappers__.transferOwnership" - ], - "code": "memory[ap] = segments.add()", - "flow_tracking_data": { - "ap_tracking": { - "group": 73, - "offset": 0 - }, - "reference_ids": {} - } - } - ], - "845": [ - { - "accessible_scopes": [ - "__main__", - "__main__", - "__wrappers__", - "__wrappers__.initialize" - ], - "code": "memory[ap] = segments.add()", - "flow_tracking_data": { - "ap_tracking": { - "group": 77, - "offset": 0 - }, - "reference_ids": {} - } - } - ], - "1089": [ - { - "accessible_scopes": [ - "__main__", - "__main__", - "__wrappers__", - "__wrappers__.token_uri_encode_return" - ], - "code": "memory[ap] = segments.add()", - "flow_tracking_data": { - "ap_tracking": { - "group": 208, - "offset": 0 - }, - "reference_ids": {} - } - } - ] - }, - "identifiers": { - "__main__.HashBuiltin": { - "destination": "starkware.cairo.common.cairo_builtins.HashBuiltin", - "type": "alias" - }, - "__main__.Ownable": { - "destination": "openzeppelin.access.ownable.library.Ownable", - "type": "alias" - }, - "__main__._find_index": { - "decorators": [], - "pc": 854, - "type": "function" - }, - "__main__._find_index.Args": { - "full_name": "__main__._find_index.Args", - "members": { - "arr": { - "cairo_type": "felt*", - "offset": 2 - }, - "arr_len": { - "cairo_type": "felt", - "offset": 1 - }, - "rarity": { - "cairo_type": "felt", - "offset": 0 - } - }, - "size": 3, - "type": "struct" - }, - "__main__._find_index.ImplicitArgs": { - "full_name": "__main__._find_index.ImplicitArgs", - "members": { - "pedersen_ptr": { - "cairo_type": "starkware.cairo.common.cairo_builtins.HashBuiltin*", - "offset": 0 - }, - "range_check_ptr": { - "cairo_type": "felt", - "offset": 2 - }, - "syscall_ptr": { - "cairo_type": "felt*", - "offset": 1 - } - }, - "size": 3, - "type": "struct" - }, - "__main__._find_index.Return": { - "cairo_type": "(index: felt)", - "type": "type_definition" - }, - "__main__._find_index.SIZEOF_LOCALS": { - "type": "const", - "value": 0 - }, - "__main__._thresholds": { - "type": "namespace" - }, - "__main__._thresholds.Args": { - "full_name": "__main__._thresholds.Args", - "members": {}, - "size": 0, - "type": "struct" - }, - "__main__._thresholds.HashBuiltin": { - "destination": "starkware.cairo.common.cairo_builtins.HashBuiltin", - "type": "alias" - }, - "__main__._thresholds.ImplicitArgs": { - "full_name": "__main__._thresholds.ImplicitArgs", - "members": {}, - "size": 0, - "type": "struct" - }, - "__main__._thresholds.Return": { - "cairo_type": "()", - "type": "type_definition" - }, - "__main__._thresholds.SIZEOF_LOCALS": { - "type": "const", - "value": 0 - }, - "__main__._thresholds.addr": { - "decorators": [], - "pc": 570, - "type": "function" - }, - "__main__._thresholds.addr.Args": { - "full_name": "__main__._thresholds.addr.Args", - "members": { - "index": { - "cairo_type": "felt", - "offset": 0 - } - }, - "size": 1, - "type": "struct" - }, - "__main__._thresholds.addr.ImplicitArgs": { - "full_name": "__main__._thresholds.addr.ImplicitArgs", - "members": { - "pedersen_ptr": { - "cairo_type": "starkware.cairo.common.cairo_builtins.HashBuiltin*", - "offset": 0 - }, - "range_check_ptr": { - "cairo_type": "felt", - "offset": 1 - } - }, - "size": 2, - "type": "struct" - }, - "__main__._thresholds.addr.Return": { - "cairo_type": "(res: felt)", - "type": "type_definition" - }, - "__main__._thresholds.addr.SIZEOF_LOCALS": { - "type": "const", - "value": 0 - }, - "__main__._thresholds.hash2": { - "destination": "starkware.cairo.common.hash.hash2", - "type": "alias" - }, - "__main__._thresholds.normalize_address": { - "destination": "starkware.starknet.common.storage.normalize_address", - "type": "alias" - }, - "__main__._thresholds.read": { - "decorators": [], - "pc": 584, - "type": "function" - }, - "__main__._thresholds.read.Args": { - "full_name": "__main__._thresholds.read.Args", - "members": { - "index": { - "cairo_type": "felt", - "offset": 0 - } - }, - "size": 1, - "type": "struct" - }, - "__main__._thresholds.read.ImplicitArgs": { - "full_name": "__main__._thresholds.read.ImplicitArgs", - "members": { - "pedersen_ptr": { - "cairo_type": "starkware.cairo.common.cairo_builtins.HashBuiltin*", - "offset": 1 - }, - "range_check_ptr": { - "cairo_type": "felt", - "offset": 2 - }, - "syscall_ptr": { - "cairo_type": "felt*", - "offset": 0 - } - }, - "size": 3, - "type": "struct" - }, - "__main__._thresholds.read.Return": { - "cairo_type": "(value: felt)", - "type": "type_definition" - }, - "__main__._thresholds.read.SIZEOF_LOCALS": { - "type": "const", - "value": 0 - }, - "__main__._thresholds.storage_read": { - "destination": "starkware.starknet.common.syscalls.storage_read", - "type": "alias" - }, - "__main__._thresholds.storage_write": { - "destination": "starkware.starknet.common.syscalls.storage_write", - "type": "alias" - }, - "__main__._thresholds.write": { - "decorators": [], - "pc": 598, - "type": "function" - }, - "__main__._thresholds.write.Args": { - "full_name": "__main__._thresholds.write.Args", - "members": { - "index": { - "cairo_type": "felt", - "offset": 0 - }, - "value": { - "cairo_type": "felt", - "offset": 1 - } - }, - "size": 2, - "type": "struct" - }, - "__main__._thresholds.write.ImplicitArgs": { - "full_name": "__main__._thresholds.write.ImplicitArgs", - "members": { - "pedersen_ptr": { - "cairo_type": "starkware.cairo.common.cairo_builtins.HashBuiltin*", - "offset": 1 - }, - "range_check_ptr": { - "cairo_type": "felt", - "offset": 2 - }, - "syscall_ptr": { - "cairo_type": "felt*", - "offset": 0 - } - }, - "size": 3, - "type": "struct" - }, - "__main__._thresholds.write.Return": { - "cairo_type": "()", - "type": "type_definition" - }, - "__main__._thresholds.write.SIZEOF_LOCALS": { - "type": "const", - "value": 0 - }, - "__main__._thresholds_len": { - "type": "namespace" - }, - "__main__._thresholds_len.Args": { - "full_name": "__main__._thresholds_len.Args", - "members": {}, - "size": 0, - "type": "struct" - }, - "__main__._thresholds_len.HashBuiltin": { - "destination": "starkware.cairo.common.cairo_builtins.HashBuiltin", - "type": "alias" - }, - "__main__._thresholds_len.ImplicitArgs": { - "full_name": "__main__._thresholds_len.ImplicitArgs", - "members": {}, - "size": 0, - "type": "struct" - }, - "__main__._thresholds_len.Return": { - "cairo_type": "()", - "type": "type_definition" - }, - "__main__._thresholds_len.SIZEOF_LOCALS": { - "type": "const", - "value": 0 - }, - "__main__._thresholds_len.addr": { - "decorators": [], - "pc": 540, - "type": "function" - }, - "__main__._thresholds_len.addr.Args": { - "full_name": "__main__._thresholds_len.addr.Args", - "members": {}, - "size": 0, - "type": "struct" - }, - "__main__._thresholds_len.addr.ImplicitArgs": { - "full_name": "__main__._thresholds_len.addr.ImplicitArgs", - "members": { - "pedersen_ptr": { - "cairo_type": "starkware.cairo.common.cairo_builtins.HashBuiltin*", - "offset": 0 - }, - "range_check_ptr": { - "cairo_type": "felt", - "offset": 1 - } - }, - "size": 2, - "type": "struct" - }, - "__main__._thresholds_len.addr.Return": { - "cairo_type": "(res: felt)", - "type": "type_definition" - }, - "__main__._thresholds_len.addr.SIZEOF_LOCALS": { - "type": "const", - "value": 0 - }, - "__main__._thresholds_len.hash2": { - "destination": "starkware.cairo.common.hash.hash2", - "type": "alias" - }, - "__main__._thresholds_len.normalize_address": { - "destination": "starkware.starknet.common.storage.normalize_address", - "type": "alias" - }, - "__main__._thresholds_len.read": { - "decorators": [], - "pc": 545, - "type": "function" - }, - "__main__._thresholds_len.read.Args": { - "full_name": "__main__._thresholds_len.read.Args", - "members": {}, - "size": 0, - "type": "struct" - }, - "__main__._thresholds_len.read.ImplicitArgs": { - "full_name": "__main__._thresholds_len.read.ImplicitArgs", - "members": { - "pedersen_ptr": { - "cairo_type": "starkware.cairo.common.cairo_builtins.HashBuiltin*", - "offset": 1 - }, - "range_check_ptr": { - "cairo_type": "felt", - "offset": 2 - }, - "syscall_ptr": { - "cairo_type": "felt*", - "offset": 0 - } - }, - "size": 3, - "type": "struct" - }, - "__main__._thresholds_len.read.Return": { - "cairo_type": "(res: felt)", - "type": "type_definition" - }, - "__main__._thresholds_len.read.SIZEOF_LOCALS": { - "type": "const", - "value": 0 - }, - "__main__._thresholds_len.storage_read": { - "destination": "starkware.starknet.common.syscalls.storage_read", - "type": "alias" - }, - "__main__._thresholds_len.storage_write": { - "destination": "starkware.starknet.common.syscalls.storage_write", - "type": "alias" - }, - "__main__._thresholds_len.write": { - "decorators": [], - "pc": 558, - "type": "function" - }, - "__main__._thresholds_len.write.Args": { - "full_name": "__main__._thresholds_len.write.Args", - "members": { - "value": { - "cairo_type": "felt", - "offset": 0 - } - }, - "size": 1, - "type": "struct" - }, - "__main__._thresholds_len.write.ImplicitArgs": { - "full_name": "__main__._thresholds_len.write.ImplicitArgs", - "members": { - "pedersen_ptr": { - "cairo_type": "starkware.cairo.common.cairo_builtins.HashBuiltin*", - "offset": 1 - }, - "range_check_ptr": { - "cairo_type": "felt", - "offset": 2 - }, - "syscall_ptr": { - "cairo_type": "felt*", - "offset": 0 - } - }, - "size": 3, - "type": "struct" - }, - "__main__._thresholds_len.write.Return": { - "cairo_type": "()", - "type": "type_definition" - }, - "__main__._thresholds_len.write.SIZEOF_LOCALS": { - "type": "const", - "value": 0 - }, - "__main__._thresholds_read": { - "decorators": [], - "pc": 763, - "type": "function" - }, - "__main__._thresholds_read.Args": { - "full_name": "__main__._thresholds_read.Args", - "members": { - "index": { - "cairo_type": "felt", - "offset": 0 - }, - "thresholds": { - "cairo_type": "felt*", - "offset": 1 - } - }, - "size": 2, - "type": "struct" - }, - "__main__._thresholds_read.ImplicitArgs": { - "full_name": "__main__._thresholds_read.ImplicitArgs", - "members": { - "pedersen_ptr": { - "cairo_type": "starkware.cairo.common.cairo_builtins.HashBuiltin*", - "offset": 1 - }, - "range_check_ptr": { - "cairo_type": "felt", - "offset": 2 - }, - "syscall_ptr": { - "cairo_type": "felt*", - "offset": 0 - } - }, - "size": 3, - "type": "struct" - }, - "__main__._thresholds_read.Return": { - "cairo_type": "(thresholds: felt*)", - "type": "type_definition" - }, - "__main__._thresholds_read.SIZEOF_LOCALS": { - "type": "const", - "value": 0 - }, - "__main__._thresholds_write": { - "decorators": [], - "pc": 741, - "type": "function" - }, - "__main__._thresholds_write.Args": { - "full_name": "__main__._thresholds_write.Args", - "members": { - "index": { - "cairo_type": "felt", - "offset": 0 - }, - "thresholds": { - "cairo_type": "felt*", - "offset": 2 - }, - "thresholds_len": { - "cairo_type": "felt", - "offset": 1 - } - }, - "size": 3, - "type": "struct" - }, - "__main__._thresholds_write.ImplicitArgs": { - "full_name": "__main__._thresholds_write.ImplicitArgs", - "members": { - "pedersen_ptr": { - "cairo_type": "starkware.cairo.common.cairo_builtins.HashBuiltin*", - "offset": 1 - }, - "range_check_ptr": { - "cairo_type": "felt", - "offset": 2 - }, - "syscall_ptr": { - "cairo_type": "felt*", - "offset": 0 - } - }, - "size": 3, - "type": "struct" - }, - "__main__._thresholds_write.Return": { - "cairo_type": "()", - "type": "type_definition" - }, - "__main__._thresholds_write.SIZEOF_LOCALS": { - "type": "const", - "value": 0 - }, - "__main__.alloc": { - "destination": "starkware.cairo.common.alloc.alloc", - "type": "alias" - }, - "__main__.getOwner": { - "decorators": [ - "view" - ], - "pc": 611, - "type": "function" - }, - "__main__.getOwner.Args": { - "full_name": "__main__.getOwner.Args", - "members": {}, - "size": 0, - "type": "struct" - }, - "__main__.getOwner.ImplicitArgs": { - "full_name": "__main__.getOwner.ImplicitArgs", - "members": { - "pedersen_ptr": { - "cairo_type": "starkware.cairo.common.cairo_builtins.HashBuiltin*", - "offset": 1 - }, - "range_check_ptr": { - "cairo_type": "felt", - "offset": 2 - }, - "syscall_ptr": { - "cairo_type": "felt*", - "offset": 0 - } - }, - "size": 3, - "type": "struct" - }, - "__main__.getOwner.Return": { - "cairo_type": "(owner: felt)", - "type": "type_definition" - }, - "__main__.getOwner.SIZEOF_LOCALS": { - "type": "const", - "value": 0 - }, - "__main__.getThresholds": { - "decorators": [ - "view" - ], - "pc": 641, - "type": "function" - }, - "__main__.getThresholds.Args": { - "full_name": "__main__.getThresholds.Args", - "members": {}, - "size": 0, - "type": "struct" - }, - "__main__.getThresholds.ImplicitArgs": { - "full_name": "__main__.getThresholds.ImplicitArgs", - "members": { - "pedersen_ptr": { - "cairo_type": "starkware.cairo.common.cairo_builtins.HashBuiltin*", - "offset": 1 - }, - "range_check_ptr": { - "cairo_type": "felt", - "offset": 2 - }, - "syscall_ptr": { - "cairo_type": "felt*", - "offset": 0 - } - }, - "size": 3, - "type": "struct" - }, - "__main__.getThresholds.Return": { - "cairo_type": "(thresholds_len: felt, thresholds: felt*)", - "type": "type_definition" - }, - "__main__.getThresholds.SIZEOF_LOCALS": { - "type": "const", - "value": 1 - }, - "__main__.get_label_location": { - "destination": "starkware.cairo.common.registers.get_label_location", - "type": "alias" - }, - "__main__.hash2": { - "destination": "starkware.cairo.common.hash.hash2", - "type": "alias" - }, - "__main__.initialize": { - "decorators": [ - "external" - ], - "pc": 818, - "type": "function" - }, - "__main__.initialize.Args": { - "full_name": "__main__.initialize.Args", - "members": { - "owner": { - "cairo_type": "felt", - "offset": 0 - } - }, - "size": 1, - "type": "struct" - }, - "__main__.initialize.ImplicitArgs": { - "full_name": "__main__.initialize.ImplicitArgs", - "members": { - "pedersen_ptr": { - "cairo_type": "starkware.cairo.common.cairo_builtins.HashBuiltin*", - "offset": 1 - }, - "range_check_ptr": { - "cairo_type": "felt", - "offset": 2 - }, - "syscall_ptr": { - "cairo_type": "felt*", - "offset": 0 - } - }, - "size": 3, - "type": "struct" - }, - "__main__.initialize.Return": { - "cairo_type": "()", - "type": "type_definition" - }, - "__main__.initialize.SIZEOF_LOCALS": { - "type": "const", - "value": 0 - }, - "__main__.initialized": { - "type": "namespace" - }, - "__main__.initialized.Args": { - "full_name": "__main__.initialized.Args", - "members": {}, - "size": 0, - "type": "struct" - }, - "__main__.initialized.HashBuiltin": { - "destination": "starkware.cairo.common.cairo_builtins.HashBuiltin", - "type": "alias" - }, - "__main__.initialized.ImplicitArgs": { - "full_name": "__main__.initialized.ImplicitArgs", - "members": {}, - "size": 0, - "type": "struct" - }, - "__main__.initialized.Return": { - "cairo_type": "()", - "type": "type_definition" - }, - "__main__.initialized.SIZEOF_LOCALS": { - "type": "const", - "value": 0 - }, - "__main__.initialized.addr": { - "decorators": [], - "pc": 510, - "type": "function" - }, - "__main__.initialized.addr.Args": { - "full_name": "__main__.initialized.addr.Args", - "members": {}, - "size": 0, - "type": "struct" - }, - "__main__.initialized.addr.ImplicitArgs": { - "full_name": "__main__.initialized.addr.ImplicitArgs", - "members": { - "pedersen_ptr": { - "cairo_type": "starkware.cairo.common.cairo_builtins.HashBuiltin*", - "offset": 0 - }, - "range_check_ptr": { - "cairo_type": "felt", - "offset": 1 - } - }, - "size": 2, - "type": "struct" - }, - "__main__.initialized.addr.Return": { - "cairo_type": "(res: felt)", - "type": "type_definition" - }, - "__main__.initialized.addr.SIZEOF_LOCALS": { - "type": "const", - "value": 0 - }, - "__main__.initialized.hash2": { - "destination": "starkware.cairo.common.hash.hash2", - "type": "alias" - }, - "__main__.initialized.normalize_address": { - "destination": "starkware.starknet.common.storage.normalize_address", - "type": "alias" - }, - "__main__.initialized.read": { - "decorators": [], - "pc": 515, - "type": "function" - }, - "__main__.initialized.read.Args": { - "full_name": "__main__.initialized.read.Args", - "members": {}, - "size": 0, - "type": "struct" - }, - "__main__.initialized.read.ImplicitArgs": { - "full_name": "__main__.initialized.read.ImplicitArgs", - "members": { - "pedersen_ptr": { - "cairo_type": "starkware.cairo.common.cairo_builtins.HashBuiltin*", - "offset": 1 - }, - "range_check_ptr": { - "cairo_type": "felt", - "offset": 2 - }, - "syscall_ptr": { - "cairo_type": "felt*", - "offset": 0 - } - }, - "size": 3, - "type": "struct" - }, - "__main__.initialized.read.Return": { - "cairo_type": "(res: felt)", - "type": "type_definition" - }, - "__main__.initialized.read.SIZEOF_LOCALS": { - "type": "const", - "value": 0 - }, - "__main__.initialized.storage_read": { - "destination": "starkware.starknet.common.syscalls.storage_read", - "type": "alias" - }, - "__main__.initialized.storage_write": { - "destination": "starkware.starknet.common.syscalls.storage_write", - "type": "alias" - }, - "__main__.initialized.write": { - "decorators": [], - "pc": 528, - "type": "function" - }, - "__main__.initialized.write.Args": { - "full_name": "__main__.initialized.write.Args", - "members": { - "value": { - "cairo_type": "felt", - "offset": 0 - } - }, - "size": 1, - "type": "struct" - }, - "__main__.initialized.write.ImplicitArgs": { - "full_name": "__main__.initialized.write.ImplicitArgs", - "members": { - "pedersen_ptr": { - "cairo_type": "starkware.cairo.common.cairo_builtins.HashBuiltin*", - "offset": 1 - }, - "range_check_ptr": { - "cairo_type": "felt", - "offset": 2 - }, - "syscall_ptr": { - "cairo_type": "felt*", - "offset": 0 - } - }, - "size": 3, - "type": "struct" - }, - "__main__.initialized.write.Return": { - "cairo_type": "()", - "type": "type_definition" - }, - "__main__.initialized.write.SIZEOF_LOCALS": { - "type": "const", - "value": 0 - }, - "__main__.is_le": { - "destination": "starkware.cairo.common.math_cmp.is_le", - "type": "alias" - }, - "__main__.memcpy": { - "destination": "starkware.cairo.common.memcpy.memcpy", - "type": "alias" - }, - "__main__.setThresholds": { - "decorators": [ - "external" - ], - "pc": 699, - "type": "function" - }, - "__main__.setThresholds.Args": { - "full_name": "__main__.setThresholds.Args", - "members": { - "thresholds": { - "cairo_type": "felt*", - "offset": 1 - }, - "thresholds_len": { - "cairo_type": "felt", - "offset": 0 - } - }, - "size": 2, - "type": "struct" - }, - "__main__.setThresholds.ImplicitArgs": { - "full_name": "__main__.setThresholds.ImplicitArgs", - "members": { - "pedersen_ptr": { - "cairo_type": "starkware.cairo.common.cairo_builtins.HashBuiltin*", - "offset": 1 - }, - "range_check_ptr": { - "cairo_type": "felt", - "offset": 2 - }, - "syscall_ptr": { - "cairo_type": "felt*", - "offset": 0 - } - }, - "size": 3, - "type": "struct" - }, - "__main__.setThresholds.Return": { - "cairo_type": "()", - "type": "type_definition" - }, - "__main__.setThresholds.SIZEOF_LOCALS": { - "type": "const", - "value": 0 - }, - "__main__.split_felt": { - "destination": "starkware.cairo.common.math.split_felt", - "type": "alias" - }, - "__main__.str": { - "destination": "utils.string.str", - "type": "alias" - }, - "__main__.token_uri": { - "decorators": [ - "view" - ], - "pc": 885, - "type": "function" - }, - "__main__.token_uri.Args": { - "full_name": "__main__.token_uri.Args", - "members": { - "name": { - "cairo_type": "felt", - "offset": 2 - }, - "token_id": { - "cairo_type": "felt", - "offset": 0 - }, - "value": { - "cairo_type": "felt", - "offset": 1 - } - }, - "size": 3, - "type": "struct" - }, - "__main__.token_uri.ImplicitArgs": { - "full_name": "__main__.token_uri.ImplicitArgs", - "members": { - "pedersen_ptr": { - "cairo_type": "starkware.cairo.common.cairo_builtins.HashBuiltin*", - "offset": 0 - }, - "range_check_ptr": { - "cairo_type": "felt", - "offset": 2 - }, - "syscall_ptr": { - "cairo_type": "felt*", - "offset": 1 - } - }, - "size": 3, - "type": "struct" - }, - "__main__.token_uri.Return": { - "cairo_type": "(token_uri_len: felt, token_uri: felt*)", - "type": "type_definition" - }, - "__main__.token_uri.SIZEOF_LOCALS": { - "type": "const", - "value": 6 - }, - "__main__.token_uri.base_uri_dw": { - "pc": 966, - "type": "label" - }, - "__main__.transferOwnership": { - "decorators": [ - "external" - ], - "pc": 793, - "type": "function" - }, - "__main__.transferOwnership.Args": { - "full_name": "__main__.transferOwnership.Args", - "members": { - "new_owner": { - "cairo_type": "felt", - "offset": 0 - } - }, - "size": 1, - "type": "struct" - }, - "__main__.transferOwnership.ImplicitArgs": { - "full_name": "__main__.transferOwnership.ImplicitArgs", - "members": { - "pedersen_ptr": { - "cairo_type": "starkware.cairo.common.cairo_builtins.HashBuiltin*", - "offset": 1 - }, - "range_check_ptr": { - "cairo_type": "felt", - "offset": 2 - }, - "syscall_ptr": { - "cairo_type": "felt*", - "offset": 0 - } - }, - "size": 3, - "type": "struct" - }, - "__main__.transferOwnership.Return": { - "cairo_type": "()", - "type": "type_definition" - }, - "__main__.transferOwnership.SIZEOF_LOCALS": { - "type": "const", - "value": 0 - }, - "__main__.unsigned_div_rem": { - "destination": "starkware.cairo.common.math.unsigned_div_rem", - "type": "alias" - }, - "__wrappers__.getOwner": { - "decorators": [ - "view" - ], - "pc": 626, - "type": "function" - }, - "__wrappers__.getOwner.Args": { - "full_name": "__wrappers__.getOwner.Args", - "members": {}, - "size": 0, - "type": "struct" - }, - "__wrappers__.getOwner.ImplicitArgs": { - "full_name": "__wrappers__.getOwner.ImplicitArgs", - "members": {}, - "size": 0, - "type": "struct" - }, - "__wrappers__.getOwner.Return": { - "cairo_type": "(syscall_ptr: felt*, pedersen_ptr: starkware.cairo.common.cairo_builtins.HashBuiltin*, range_check_ptr: felt, size: felt, retdata: felt*)", - "type": "type_definition" - }, - "__wrappers__.getOwner.SIZEOF_LOCALS": { - "type": "const", - "value": 0 - }, - "__wrappers__.getOwner.__wrapped_func": { - "destination": "__main__.getOwner", - "type": "alias" - }, - "__wrappers__.getOwner_encode_return": { - "decorators": [], - "pc": 617, - "type": "function" - }, - "__wrappers__.getOwner_encode_return.Args": { - "full_name": "__wrappers__.getOwner_encode_return.Args", - "members": { - "range_check_ptr": { - "cairo_type": "felt", - "offset": 1 - }, - "ret_value": { - "cairo_type": "(owner: felt)", - "offset": 0 - } - }, - "size": 2, - "type": "struct" - }, - "__wrappers__.getOwner_encode_return.ImplicitArgs": { - "full_name": "__wrappers__.getOwner_encode_return.ImplicitArgs", - "members": {}, - "size": 0, - "type": "struct" - }, - "__wrappers__.getOwner_encode_return.Return": { - "cairo_type": "(range_check_ptr: felt, data_len: felt, data: felt*)", - "type": "type_definition" - }, - "__wrappers__.getOwner_encode_return.SIZEOF_LOCALS": { - "type": "const", - "value": 1 - }, - "__wrappers__.getOwner_encode_return.memcpy": { - "destination": "starkware.cairo.common.memcpy.memcpy", - "type": "alias" - }, - "__wrappers__.getThresholds": { - "decorators": [ - "view" - ], - "pc": 680, - "type": "function" - }, - "__wrappers__.getThresholds.Args": { - "full_name": "__wrappers__.getThresholds.Args", - "members": {}, - "size": 0, - "type": "struct" - }, - "__wrappers__.getThresholds.ImplicitArgs": { - "full_name": "__wrappers__.getThresholds.ImplicitArgs", - "members": {}, - "size": 0, - "type": "struct" - }, - "__wrappers__.getThresholds.Return": { - "cairo_type": "(syscall_ptr: felt*, pedersen_ptr: starkware.cairo.common.cairo_builtins.HashBuiltin*, range_check_ptr: felt, size: felt, retdata: felt*)", - "type": "type_definition" - }, - "__wrappers__.getThresholds.SIZEOF_LOCALS": { - "type": "const", - "value": 2 - }, - "__wrappers__.getThresholds.__wrapped_func": { - "destination": "__main__.getThresholds", - "type": "alias" - }, - "__wrappers__.getThresholds_encode_return": { - "decorators": [], - "pc": 661, - "type": "function" - }, - "__wrappers__.getThresholds_encode_return.Args": { - "full_name": "__wrappers__.getThresholds_encode_return.Args", - "members": { - "range_check_ptr": { - "cairo_type": "felt", - "offset": 2 - }, - "ret_value": { - "cairo_type": "(thresholds_len: felt, thresholds: felt*)", - "offset": 0 - } - }, - "size": 3, - "type": "struct" - }, - "__wrappers__.getThresholds_encode_return.ImplicitArgs": { - "full_name": "__wrappers__.getThresholds_encode_return.ImplicitArgs", - "members": {}, - "size": 0, - "type": "struct" - }, - "__wrappers__.getThresholds_encode_return.Return": { - "cairo_type": "(range_check_ptr: felt, data_len: felt, data: felt*)", - "type": "type_definition" - }, - "__wrappers__.getThresholds_encode_return.SIZEOF_LOCALS": { - "type": "const", - "value": 3 - }, - "__wrappers__.getThresholds_encode_return.memcpy": { - "destination": "starkware.cairo.common.memcpy.memcpy", - "type": "alias" - }, - "__wrappers__.initialize": { - "decorators": [ - "external" - ], - "pc": 836, - "type": "function" - }, - "__wrappers__.initialize.Args": { - "full_name": "__wrappers__.initialize.Args", - "members": {}, - "size": 0, - "type": "struct" - }, - "__wrappers__.initialize.ImplicitArgs": { - "full_name": "__wrappers__.initialize.ImplicitArgs", - "members": {}, - "size": 0, - "type": "struct" - }, - "__wrappers__.initialize.Return": { - "cairo_type": "(syscall_ptr: felt*, pedersen_ptr: starkware.cairo.common.cairo_builtins.HashBuiltin*, range_check_ptr: felt, size: felt, retdata: felt*)", - "type": "type_definition" - }, - "__wrappers__.initialize.SIZEOF_LOCALS": { - "type": "const", - "value": 0 - }, - "__wrappers__.initialize.__wrapped_func": { - "destination": "__main__.initialize", - "type": "alias" - }, - "__wrappers__.initialize_encode_return.memcpy": { - "destination": "starkware.cairo.common.memcpy.memcpy", - "type": "alias" - }, - "__wrappers__.setThresholds": { - "decorators": [ - "external" - ], - "pc": 714, - "type": "function" - }, - "__wrappers__.setThresholds.Args": { - "full_name": "__wrappers__.setThresholds.Args", - "members": {}, - "size": 0, - "type": "struct" - }, - "__wrappers__.setThresholds.ImplicitArgs": { - "full_name": "__wrappers__.setThresholds.ImplicitArgs", - "members": {}, - "size": 0, - "type": "struct" - }, - "__wrappers__.setThresholds.Return": { - "cairo_type": "(syscall_ptr: felt*, pedersen_ptr: starkware.cairo.common.cairo_builtins.HashBuiltin*, range_check_ptr: felt, size: felt, retdata: felt*)", - "type": "type_definition" - }, - "__wrappers__.setThresholds.SIZEOF_LOCALS": { - "type": "const", - "value": 0 - }, - "__wrappers__.setThresholds.__wrapped_func": { - "destination": "__main__.setThresholds", - "type": "alias" - }, - "__wrappers__.setThresholds_encode_return.memcpy": { - "destination": "starkware.cairo.common.memcpy.memcpy", - "type": "alias" - }, - "__wrappers__.token_uri": { - "decorators": [ - "view" - ], - "pc": 1108, - "type": "function" - }, - "__wrappers__.token_uri.Args": { - "full_name": "__wrappers__.token_uri.Args", - "members": {}, - "size": 0, - "type": "struct" - }, - "__wrappers__.token_uri.ImplicitArgs": { - "full_name": "__wrappers__.token_uri.ImplicitArgs", - "members": {}, - "size": 0, - "type": "struct" - }, - "__wrappers__.token_uri.Return": { - "cairo_type": "(syscall_ptr: felt*, pedersen_ptr: starkware.cairo.common.cairo_builtins.HashBuiltin*, range_check_ptr: felt, size: felt, retdata: felt*)", - "type": "type_definition" - }, - "__wrappers__.token_uri.SIZEOF_LOCALS": { - "type": "const", - "value": 2 - }, - "__wrappers__.token_uri.__wrapped_func": { - "destination": "__main__.token_uri", - "type": "alias" - }, - "__wrappers__.token_uri_encode_return": { - "decorators": [], - "pc": 1089, - "type": "function" - }, - "__wrappers__.token_uri_encode_return.Args": { - "full_name": "__wrappers__.token_uri_encode_return.Args", - "members": { - "range_check_ptr": { - "cairo_type": "felt", - "offset": 2 - }, - "ret_value": { - "cairo_type": "(token_uri_len: felt, token_uri: felt*)", - "offset": 0 - } - }, - "size": 3, - "type": "struct" - }, - "__wrappers__.token_uri_encode_return.ImplicitArgs": { - "full_name": "__wrappers__.token_uri_encode_return.ImplicitArgs", - "members": {}, - "size": 0, - "type": "struct" - }, - "__wrappers__.token_uri_encode_return.Return": { - "cairo_type": "(range_check_ptr: felt, data_len: felt, data: felt*)", - "type": "type_definition" - }, - "__wrappers__.token_uri_encode_return.SIZEOF_LOCALS": { - "type": "const", - "value": 3 - }, - "__wrappers__.token_uri_encode_return.memcpy": { - "destination": "starkware.cairo.common.memcpy.memcpy", - "type": "alias" - }, - "__wrappers__.transferOwnership": { - "decorators": [ - "external" - ], - "pc": 800, - "type": "function" - }, - "__wrappers__.transferOwnership.Args": { - "full_name": "__wrappers__.transferOwnership.Args", - "members": {}, - "size": 0, - "type": "struct" - }, - "__wrappers__.transferOwnership.ImplicitArgs": { - "full_name": "__wrappers__.transferOwnership.ImplicitArgs", - "members": {}, - "size": 0, - "type": "struct" - }, - "__wrappers__.transferOwnership.Return": { - "cairo_type": "(syscall_ptr: felt*, pedersen_ptr: starkware.cairo.common.cairo_builtins.HashBuiltin*, range_check_ptr: felt, size: felt, retdata: felt*)", - "type": "type_definition" - }, - "__wrappers__.transferOwnership.SIZEOF_LOCALS": { - "type": "const", - "value": 0 - }, - "__wrappers__.transferOwnership.__wrapped_func": { - "destination": "__main__.transferOwnership", - "type": "alias" - }, - "__wrappers__.transferOwnership_encode_return.memcpy": { - "destination": "starkware.cairo.common.memcpy.memcpy", - "type": "alias" - }, - "openzeppelin.access.ownable.library.HashBuiltin": { - "destination": "starkware.cairo.common.cairo_builtins.HashBuiltin", - "type": "alias" - }, - "openzeppelin.access.ownable.library.Ownable": { - "type": "namespace" - }, - "openzeppelin.access.ownable.library.Ownable.Args": { - "full_name": "openzeppelin.access.ownable.library.Ownable.Args", - "members": {}, - "size": 0, - "type": "struct" - }, - "openzeppelin.access.ownable.library.Ownable.ImplicitArgs": { - "full_name": "openzeppelin.access.ownable.library.Ownable.ImplicitArgs", - "members": {}, - "size": 0, - "type": "struct" - }, - "openzeppelin.access.ownable.library.Ownable.Return": { - "cairo_type": "()", - "type": "type_definition" - }, - "openzeppelin.access.ownable.library.Ownable.SIZEOF_LOCALS": { - "type": "const", - "value": 0 - }, - "openzeppelin.access.ownable.library.Ownable._transfer_ownership": { - "decorators": [], - "pc": 352, - "type": "function" - }, - "openzeppelin.access.ownable.library.Ownable._transfer_ownership.Args": { - "full_name": "openzeppelin.access.ownable.library.Ownable._transfer_ownership.Args", - "members": { - "new_owner": { - "cairo_type": "felt", - "offset": 0 - } - }, - "size": 1, - "type": "struct" - }, - "openzeppelin.access.ownable.library.Ownable._transfer_ownership.ImplicitArgs": { - "full_name": "openzeppelin.access.ownable.library.Ownable._transfer_ownership.ImplicitArgs", - "members": { - "pedersen_ptr": { - "cairo_type": "starkware.cairo.common.cairo_builtins.HashBuiltin*", - "offset": 1 - }, - "range_check_ptr": { - "cairo_type": "felt", - "offset": 2 - }, - "syscall_ptr": { - "cairo_type": "felt*", - "offset": 0 - } - }, - "size": 3, - "type": "struct" - }, - "openzeppelin.access.ownable.library.Ownable._transfer_ownership.Return": { - "cairo_type": "()", - "type": "type_definition" - }, - "openzeppelin.access.ownable.library.Ownable._transfer_ownership.SIZEOF_LOCALS": { - "type": "const", - "value": 0 - }, - "openzeppelin.access.ownable.library.Ownable.assert_only_owner": { - "decorators": [], - "pc": 319, - "type": "function" - }, - "openzeppelin.access.ownable.library.Ownable.assert_only_owner.Args": { - "full_name": "openzeppelin.access.ownable.library.Ownable.assert_only_owner.Args", - "members": {}, - "size": 0, - "type": "struct" - }, - "openzeppelin.access.ownable.library.Ownable.assert_only_owner.ImplicitArgs": { - "full_name": "openzeppelin.access.ownable.library.Ownable.assert_only_owner.ImplicitArgs", - "members": { - "pedersen_ptr": { - "cairo_type": "starkware.cairo.common.cairo_builtins.HashBuiltin*", - "offset": 1 - }, - "range_check_ptr": { - "cairo_type": "felt", - "offset": 2 - }, - "syscall_ptr": { - "cairo_type": "felt*", - "offset": 0 - } - }, - "size": 3, - "type": "struct" - }, - "openzeppelin.access.ownable.library.Ownable.assert_only_owner.Return": { - "cairo_type": "()", - "type": "type_definition" - }, - "openzeppelin.access.ownable.library.Ownable.assert_only_owner.SIZEOF_LOCALS": { - "type": "const", - "value": 0 - }, - "openzeppelin.access.ownable.library.Ownable.initializer": { - "decorators": [], - "pc": 312, - "type": "function" - }, - "openzeppelin.access.ownable.library.Ownable.initializer.Args": { - "full_name": "openzeppelin.access.ownable.library.Ownable.initializer.Args", - "members": { - "owner": { - "cairo_type": "felt", - "offset": 0 - } - }, - "size": 1, - "type": "struct" - }, - "openzeppelin.access.ownable.library.Ownable.initializer.ImplicitArgs": { - "full_name": "openzeppelin.access.ownable.library.Ownable.initializer.ImplicitArgs", - "members": { - "pedersen_ptr": { - "cairo_type": "starkware.cairo.common.cairo_builtins.HashBuiltin*", - "offset": 1 - }, - "range_check_ptr": { - "cairo_type": "felt", - "offset": 2 - }, - "syscall_ptr": { - "cairo_type": "felt*", - "offset": 0 - } - }, - "size": 3, - "type": "struct" - }, - "openzeppelin.access.ownable.library.Ownable.initializer.Return": { - "cairo_type": "()", - "type": "type_definition" - }, - "openzeppelin.access.ownable.library.Ownable.initializer.SIZEOF_LOCALS": { - "type": "const", - "value": 0 - }, - "openzeppelin.access.ownable.library.Ownable.owner": { - "decorators": [], - "pc": 334, - "type": "function" - }, - "openzeppelin.access.ownable.library.Ownable.owner.Args": { - "full_name": "openzeppelin.access.ownable.library.Ownable.owner.Args", - "members": {}, - "size": 0, - "type": "struct" - }, - "openzeppelin.access.ownable.library.Ownable.owner.ImplicitArgs": { - "full_name": "openzeppelin.access.ownable.library.Ownable.owner.ImplicitArgs", - "members": { - "pedersen_ptr": { - "cairo_type": "starkware.cairo.common.cairo_builtins.HashBuiltin*", - "offset": 1 - }, - "range_check_ptr": { - "cairo_type": "felt", - "offset": 2 - }, - "syscall_ptr": { - "cairo_type": "felt*", - "offset": 0 - } - }, - "size": 3, - "type": "struct" - }, - "openzeppelin.access.ownable.library.Ownable.owner.Return": { - "cairo_type": "(owner: felt)", - "type": "type_definition" - }, - "openzeppelin.access.ownable.library.Ownable.owner.SIZEOF_LOCALS": { - "type": "const", - "value": 0 - }, - "openzeppelin.access.ownable.library.Ownable.transfer_ownership": { - "decorators": [], - "pc": 340, - "type": "function" - }, - "openzeppelin.access.ownable.library.Ownable.transfer_ownership.Args": { - "full_name": "openzeppelin.access.ownable.library.Ownable.transfer_ownership.Args", - "members": { - "new_owner": { - "cairo_type": "felt", - "offset": 0 - } - }, - "size": 1, - "type": "struct" - }, - "openzeppelin.access.ownable.library.Ownable.transfer_ownership.ImplicitArgs": { - "full_name": "openzeppelin.access.ownable.library.Ownable.transfer_ownership.ImplicitArgs", - "members": { - "pedersen_ptr": { - "cairo_type": "starkware.cairo.common.cairo_builtins.HashBuiltin*", - "offset": 1 - }, - "range_check_ptr": { - "cairo_type": "felt", - "offset": 2 - }, - "syscall_ptr": { - "cairo_type": "felt*", - "offset": 0 - } - }, - "size": 3, - "type": "struct" - }, - "openzeppelin.access.ownable.library.Ownable.transfer_ownership.Return": { - "cairo_type": "()", - "type": "type_definition" - }, - "openzeppelin.access.ownable.library.Ownable.transfer_ownership.SIZEOF_LOCALS": { - "type": "const", - "value": 0 - }, - "openzeppelin.access.ownable.library.Ownable_owner": { - "type": "namespace" - }, - "openzeppelin.access.ownable.library.Ownable_owner.Args": { - "full_name": "openzeppelin.access.ownable.library.Ownable_owner.Args", - "members": {}, - "size": 0, - "type": "struct" - }, - "openzeppelin.access.ownable.library.Ownable_owner.HashBuiltin": { - "destination": "starkware.cairo.common.cairo_builtins.HashBuiltin", - "type": "alias" - }, - "openzeppelin.access.ownable.library.Ownable_owner.ImplicitArgs": { - "full_name": "openzeppelin.access.ownable.library.Ownable_owner.ImplicitArgs", - "members": {}, - "size": 0, - "type": "struct" - }, - "openzeppelin.access.ownable.library.Ownable_owner.Return": { - "cairo_type": "()", - "type": "type_definition" - }, - "openzeppelin.access.ownable.library.Ownable_owner.SIZEOF_LOCALS": { - "type": "const", - "value": 0 - }, - "openzeppelin.access.ownable.library.Ownable_owner.addr": { - "decorators": [], - "pc": 282, - "type": "function" - }, - "openzeppelin.access.ownable.library.Ownable_owner.addr.Args": { - "full_name": "openzeppelin.access.ownable.library.Ownable_owner.addr.Args", - "members": {}, - "size": 0, - "type": "struct" - }, - "openzeppelin.access.ownable.library.Ownable_owner.addr.ImplicitArgs": { - "full_name": "openzeppelin.access.ownable.library.Ownable_owner.addr.ImplicitArgs", - "members": { - "pedersen_ptr": { - "cairo_type": "starkware.cairo.common.cairo_builtins.HashBuiltin*", - "offset": 0 - }, - "range_check_ptr": { - "cairo_type": "felt", - "offset": 1 - } - }, - "size": 2, - "type": "struct" - }, - "openzeppelin.access.ownable.library.Ownable_owner.addr.Return": { - "cairo_type": "(res: felt)", - "type": "type_definition" - }, - "openzeppelin.access.ownable.library.Ownable_owner.addr.SIZEOF_LOCALS": { - "type": "const", - "value": 0 - }, - "openzeppelin.access.ownable.library.Ownable_owner.hash2": { - "destination": "starkware.cairo.common.hash.hash2", - "type": "alias" - }, - "openzeppelin.access.ownable.library.Ownable_owner.normalize_address": { - "destination": "starkware.starknet.common.storage.normalize_address", - "type": "alias" - }, - "openzeppelin.access.ownable.library.Ownable_owner.read": { - "decorators": [], - "pc": 287, - "type": "function" - }, - "openzeppelin.access.ownable.library.Ownable_owner.read.Args": { - "full_name": "openzeppelin.access.ownable.library.Ownable_owner.read.Args", - "members": {}, - "size": 0, - "type": "struct" - }, - "openzeppelin.access.ownable.library.Ownable_owner.read.ImplicitArgs": { - "full_name": "openzeppelin.access.ownable.library.Ownable_owner.read.ImplicitArgs", - "members": { - "pedersen_ptr": { - "cairo_type": "starkware.cairo.common.cairo_builtins.HashBuiltin*", - "offset": 1 - }, - "range_check_ptr": { - "cairo_type": "felt", - "offset": 2 - }, - "syscall_ptr": { - "cairo_type": "felt*", - "offset": 0 - } - }, - "size": 3, - "type": "struct" - }, - "openzeppelin.access.ownable.library.Ownable_owner.read.Return": { - "cairo_type": "(owner: felt)", - "type": "type_definition" - }, - "openzeppelin.access.ownable.library.Ownable_owner.read.SIZEOF_LOCALS": { - "type": "const", - "value": 0 - }, - "openzeppelin.access.ownable.library.Ownable_owner.storage_read": { - "destination": "starkware.starknet.common.syscalls.storage_read", - "type": "alias" - }, - "openzeppelin.access.ownable.library.Ownable_owner.storage_write": { - "destination": "starkware.starknet.common.syscalls.storage_write", - "type": "alias" - }, - "openzeppelin.access.ownable.library.Ownable_owner.write": { - "decorators": [], - "pc": 300, - "type": "function" - }, - "openzeppelin.access.ownable.library.Ownable_owner.write.Args": { - "full_name": "openzeppelin.access.ownable.library.Ownable_owner.write.Args", - "members": { - "value": { - "cairo_type": "felt", - "offset": 0 - } - }, - "size": 1, - "type": "struct" - }, - "openzeppelin.access.ownable.library.Ownable_owner.write.ImplicitArgs": { - "full_name": "openzeppelin.access.ownable.library.Ownable_owner.write.ImplicitArgs", - "members": { - "pedersen_ptr": { - "cairo_type": "starkware.cairo.common.cairo_builtins.HashBuiltin*", - "offset": 1 - }, - "range_check_ptr": { - "cairo_type": "felt", - "offset": 2 - }, - "syscall_ptr": { - "cairo_type": "felt*", - "offset": 0 - } - }, - "size": 3, - "type": "struct" - }, - "openzeppelin.access.ownable.library.Ownable_owner.write.Return": { - "cairo_type": "()", - "type": "type_definition" - }, - "openzeppelin.access.ownable.library.Ownable_owner.write.SIZEOF_LOCALS": { - "type": "const", - "value": 0 - }, - "openzeppelin.access.ownable.library.OwnershipTransferred": { - "type": "namespace" - }, - "openzeppelin.access.ownable.library.OwnershipTransferred.Args": { - "full_name": "openzeppelin.access.ownable.library.OwnershipTransferred.Args", - "members": {}, - "size": 0, - "type": "struct" - }, - "openzeppelin.access.ownable.library.OwnershipTransferred.ImplicitArgs": { - "full_name": "openzeppelin.access.ownable.library.OwnershipTransferred.ImplicitArgs", - "members": {}, - "size": 0, - "type": "struct" - }, - "openzeppelin.access.ownable.library.OwnershipTransferred.Return": { - "cairo_type": "()", - "type": "type_definition" - }, - "openzeppelin.access.ownable.library.OwnershipTransferred.SELECTOR": { - "type": "const", - "value": 553132481214675521502977957974509639062080100631756862105218886163371506175 - }, - "openzeppelin.access.ownable.library.OwnershipTransferred.SIZEOF_LOCALS": { - "type": "const", - "value": 0 - }, - "openzeppelin.access.ownable.library.OwnershipTransferred.alloc": { - "destination": "starkware.cairo.common.alloc.alloc", - "type": "alias" - }, - "openzeppelin.access.ownable.library.OwnershipTransferred.emit": { - "decorators": [], - "pc": 257, - "type": "function" - }, - "openzeppelin.access.ownable.library.OwnershipTransferred.emit.Args": { - "full_name": "openzeppelin.access.ownable.library.OwnershipTransferred.emit.Args", - "members": { - "newOwner": { - "cairo_type": "felt", - "offset": 1 - }, - "previousOwner": { - "cairo_type": "felt", - "offset": 0 - } - }, - "size": 2, - "type": "struct" - }, - "openzeppelin.access.ownable.library.OwnershipTransferred.emit.ImplicitArgs": { - "full_name": "openzeppelin.access.ownable.library.OwnershipTransferred.emit.ImplicitArgs", - "members": { - "range_check_ptr": { - "cairo_type": "felt", - "offset": 1 - }, - "syscall_ptr": { - "cairo_type": "felt*", - "offset": 0 - } - }, - "size": 2, - "type": "struct" - }, - "openzeppelin.access.ownable.library.OwnershipTransferred.emit.Return": { - "cairo_type": "()", - "type": "type_definition" - }, - "openzeppelin.access.ownable.library.OwnershipTransferred.emit.SIZEOF_LOCALS": { - "type": "const", - "value": 2 - }, - "openzeppelin.access.ownable.library.OwnershipTransferred.emit_event": { - "destination": "starkware.starknet.common.syscalls.emit_event", - "type": "alias" - }, - "openzeppelin.access.ownable.library.OwnershipTransferred.memcpy": { - "destination": "starkware.cairo.common.memcpy.memcpy", - "type": "alias" - }, - "openzeppelin.access.ownable.library.assert_not_zero": { - "destination": "starkware.cairo.common.math.assert_not_zero", - "type": "alias" - }, - "openzeppelin.access.ownable.library.get_caller_address": { - "destination": "starkware.starknet.common.syscalls.get_caller_address", - "type": "alias" - }, - "starkware.cairo.common.alloc.alloc": { - "decorators": [], - "pc": 0, - "type": "function" - }, - "starkware.cairo.common.alloc.alloc.Args": { - "full_name": "starkware.cairo.common.alloc.alloc.Args", - "members": {}, - "size": 0, - "type": "struct" - }, - "starkware.cairo.common.alloc.alloc.ImplicitArgs": { - "full_name": "starkware.cairo.common.alloc.alloc.ImplicitArgs", - "members": {}, - "size": 0, - "type": "struct" - }, - "starkware.cairo.common.alloc.alloc.Return": { - "cairo_type": "(ptr: felt*)", - "type": "type_definition" - }, - "starkware.cairo.common.alloc.alloc.SIZEOF_LOCALS": { - "type": "const", - "value": 0 - }, - "starkware.cairo.common.bool.FALSE": { - "type": "const", - "value": 0 - }, - "starkware.cairo.common.bool.TRUE": { - "type": "const", - "value": 1 - }, - "starkware.cairo.common.cairo_builtins.BitwiseBuiltin": { - "full_name": "starkware.cairo.common.cairo_builtins.BitwiseBuiltin", - "members": { - "x": { - "cairo_type": "felt", - "offset": 0 - }, - "x_and_y": { - "cairo_type": "felt", - "offset": 2 - }, - "x_or_y": { - "cairo_type": "felt", - "offset": 4 - }, - "x_xor_y": { - "cairo_type": "felt", - "offset": 3 - }, - "y": { - "cairo_type": "felt", - "offset": 1 - } - }, - "size": 5, - "type": "struct" - }, - "starkware.cairo.common.cairo_builtins.EcOpBuiltin": { - "full_name": "starkware.cairo.common.cairo_builtins.EcOpBuiltin", - "members": { - "m": { - "cairo_type": "felt", - "offset": 4 - }, - "p": { - "cairo_type": "starkware.cairo.common.ec_point.EcPoint", - "offset": 0 - }, - "q": { - "cairo_type": "starkware.cairo.common.ec_point.EcPoint", - "offset": 2 - }, - "r": { - "cairo_type": "starkware.cairo.common.ec_point.EcPoint", - "offset": 5 - } - }, - "size": 7, - "type": "struct" - }, - "starkware.cairo.common.cairo_builtins.EcPoint": { - "destination": "starkware.cairo.common.ec_point.EcPoint", - "type": "alias" - }, - "starkware.cairo.common.cairo_builtins.HashBuiltin": { - "full_name": "starkware.cairo.common.cairo_builtins.HashBuiltin", - "members": { - "result": { - "cairo_type": "felt", - "offset": 2 - }, - "x": { - "cairo_type": "felt", - "offset": 0 - }, - "y": { - "cairo_type": "felt", - "offset": 1 - } - }, - "size": 3, - "type": "struct" - }, - "starkware.cairo.common.cairo_builtins.KeccakBuiltin": { - "full_name": "starkware.cairo.common.cairo_builtins.KeccakBuiltin", - "members": { - "input": { - "cairo_type": "starkware.cairo.common.keccak_state.KeccakBuiltinState", - "offset": 0 - }, - "output": { - "cairo_type": "starkware.cairo.common.keccak_state.KeccakBuiltinState", - "offset": 8 - } - }, - "size": 16, - "type": "struct" - }, - "starkware.cairo.common.cairo_builtins.KeccakBuiltinState": { - "destination": "starkware.cairo.common.keccak_state.KeccakBuiltinState", - "type": "alias" - }, - "starkware.cairo.common.cairo_builtins.PoseidonBuiltin": { - "full_name": "starkware.cairo.common.cairo_builtins.PoseidonBuiltin", - "members": { - "input": { - "cairo_type": "starkware.cairo.common.poseidon_state.PoseidonBuiltinState", - "offset": 0 - }, - "output": { - "cairo_type": "starkware.cairo.common.poseidon_state.PoseidonBuiltinState", - "offset": 3 - } - }, - "size": 6, - "type": "struct" - }, - "starkware.cairo.common.cairo_builtins.PoseidonBuiltinState": { - "destination": "starkware.cairo.common.poseidon_state.PoseidonBuiltinState", - "type": "alias" - }, - "starkware.cairo.common.cairo_builtins.SignatureBuiltin": { - "full_name": "starkware.cairo.common.cairo_builtins.SignatureBuiltin", - "members": { - "message": { - "cairo_type": "felt", - "offset": 1 - }, - "pub_key": { - "cairo_type": "felt", - "offset": 0 - } - }, - "size": 2, - "type": "struct" - }, - "starkware.cairo.common.dict_access.DictAccess": { - "full_name": "starkware.cairo.common.dict_access.DictAccess", - "members": { - "key": { - "cairo_type": "felt", - "offset": 0 - }, - "new_value": { - "cairo_type": "felt", - "offset": 2 - }, - "prev_value": { - "cairo_type": "felt", - "offset": 1 - } - }, - "size": 3, - "type": "struct" - }, - "starkware.cairo.common.ec_point.EcPoint": { - "full_name": "starkware.cairo.common.ec_point.EcPoint", - "members": { - "x": { - "cairo_type": "felt", - "offset": 0 - }, - "y": { - "cairo_type": "felt", - "offset": 1 - } - }, - "size": 2, - "type": "struct" - }, - "starkware.cairo.common.hash.HashBuiltin": { - "destination": "starkware.cairo.common.cairo_builtins.HashBuiltin", - "type": "alias" - }, - "starkware.cairo.common.hash.hash2": { - "decorators": [], - "pc": 3, - "type": "function" - }, - "starkware.cairo.common.hash.hash2.Args": { - "full_name": "starkware.cairo.common.hash.hash2.Args", - "members": { - "x": { - "cairo_type": "felt", - "offset": 0 - }, - "y": { - "cairo_type": "felt", - "offset": 1 - } - }, - "size": 2, - "type": "struct" - }, - "starkware.cairo.common.hash.hash2.ImplicitArgs": { - "full_name": "starkware.cairo.common.hash.hash2.ImplicitArgs", - "members": { - "hash_ptr": { - "cairo_type": "starkware.cairo.common.cairo_builtins.HashBuiltin*", - "offset": 0 - } - }, - "size": 1, - "type": "struct" - }, - "starkware.cairo.common.hash.hash2.Return": { - "cairo_type": "(result: felt)", - "type": "type_definition" - }, - "starkware.cairo.common.hash.hash2.SIZEOF_LOCALS": { - "type": "const", - "value": 0 - }, - "starkware.cairo.common.keccak_state.KeccakBuiltinState": { - "full_name": "starkware.cairo.common.keccak_state.KeccakBuiltinState", - "members": { - "s0": { - "cairo_type": "felt", - "offset": 0 - }, - "s1": { - "cairo_type": "felt", - "offset": 1 - }, - "s2": { - "cairo_type": "felt", - "offset": 2 - }, - "s3": { - "cairo_type": "felt", - "offset": 3 - }, - "s4": { - "cairo_type": "felt", - "offset": 4 - }, - "s5": { - "cairo_type": "felt", - "offset": 5 - }, - "s6": { - "cairo_type": "felt", - "offset": 6 - }, - "s7": { - "cairo_type": "felt", - "offset": 7 - } - }, - "size": 8, - "type": "struct" - }, - "starkware.cairo.common.math.FALSE": { - "destination": "starkware.cairo.common.bool.FALSE", - "type": "alias" - }, - "starkware.cairo.common.math.TRUE": { - "destination": "starkware.cairo.common.bool.TRUE", - "type": "alias" - }, - "starkware.cairo.common.math.abs_value": { - "decorators": [ - "known_ap_change" - ], - "pc": 159, - "type": "function" - }, - "starkware.cairo.common.math.abs_value.Args": { - "full_name": "starkware.cairo.common.math.abs_value.Args", - "members": { - "value": { - "cairo_type": "felt", - "offset": 0 - } - }, - "size": 1, - "type": "struct" - }, - "starkware.cairo.common.math.abs_value.ImplicitArgs": { - "full_name": "starkware.cairo.common.math.abs_value.ImplicitArgs", - "members": { - "range_check_ptr": { - "cairo_type": "felt", - "offset": 0 - } - }, - "size": 1, - "type": "struct" - }, - "starkware.cairo.common.math.abs_value.Return": { - "cairo_type": "felt", - "type": "type_definition" - }, - "starkware.cairo.common.math.abs_value.SIZEOF_LOCALS": { - "type": "const", - "value": 0 - }, - "starkware.cairo.common.math.abs_value.is_positive": { - "cairo_type": "felt", - "full_name": "starkware.cairo.common.math.abs_value.is_positive", - "references": [ - { - "ap_tracking_data": { - "group": 14, - "offset": 1 - }, - "pc": 161, - "value": "[cast(ap + (-1), felt*)]" - } - ], - "type": "reference" - }, - "starkware.cairo.common.math.abs_value.value": { - "cairo_type": "felt", - "full_name": "starkware.cairo.common.math.abs_value.value", - "references": [ - { - "ap_tracking_data": { - "group": 14, - "offset": 0 - }, - "pc": 159, - "value": "[cast(fp + (-3), felt*)]" - } - ], - "type": "reference" - }, - "starkware.cairo.common.math.assert_250_bit": { - "decorators": [ - "known_ap_change" - ], - "pc": 72, - "type": "function" - }, - "starkware.cairo.common.math.assert_250_bit.Args": { - "full_name": "starkware.cairo.common.math.assert_250_bit.Args", - "members": { - "value": { - "cairo_type": "felt", - "offset": 0 - } - }, - "size": 1, - "type": "struct" - }, - "starkware.cairo.common.math.assert_250_bit.HIGH_BOUND": { - "type": "const", - "value": 5316911983139663491615228241121378304 - }, - "starkware.cairo.common.math.assert_250_bit.ImplicitArgs": { - "full_name": "starkware.cairo.common.math.assert_250_bit.ImplicitArgs", - "members": { - "range_check_ptr": { - "cairo_type": "felt", - "offset": 0 - } - }, - "size": 1, - "type": "struct" - }, - "starkware.cairo.common.math.assert_250_bit.Return": { - "cairo_type": "()", - "type": "type_definition" - }, - "starkware.cairo.common.math.assert_250_bit.SHIFT": { - "type": "const", - "value": 340282366920938463463374607431768211456 - }, - "starkware.cairo.common.math.assert_250_bit.SIZEOF_LOCALS": { - "type": "const", - "value": 0 - }, - "starkware.cairo.common.math.assert_250_bit.UPPER_BOUND": { - "type": "const", - "value": 1809251394333065553493296640760748560207343510400633813116524750123642650624 - }, - "starkware.cairo.common.math.assert_250_bit.high": { - "cairo_type": "felt", - "full_name": "starkware.cairo.common.math.assert_250_bit.high", - "references": [ - { - "ap_tracking_data": { - "group": 11, - "offset": 0 - }, - "pc": 72, - "value": "[cast([fp + (-4)] + 1, felt*)]" - } - ], - "type": "reference" - }, - "starkware.cairo.common.math.assert_250_bit.low": { - "cairo_type": "felt", - "full_name": "starkware.cairo.common.math.assert_250_bit.low", - "references": [ - { - "ap_tracking_data": { - "group": 11, - "offset": 0 - }, - "pc": 72, - "value": "[cast([fp + (-4)], felt*)]" - } - ], - "type": "reference" - }, - "starkware.cairo.common.math.assert_250_bit.value": { - "cairo_type": "felt", - "full_name": "starkware.cairo.common.math.assert_250_bit.value", - "references": [ - { - "ap_tracking_data": { - "group": 11, - "offset": 0 - }, - "pc": 72, - "value": "[cast(fp + (-3), felt*)]" - } - ], - "type": "reference" - }, - "starkware.cairo.common.math.assert_le": { - "decorators": [], - "pc": 67, - "type": "function" - }, - "starkware.cairo.common.math.assert_le.Args": { - "full_name": "starkware.cairo.common.math.assert_le.Args", - "members": { - "a": { - "cairo_type": "felt", - "offset": 0 - }, - "b": { - "cairo_type": "felt", - "offset": 1 - } - }, - "size": 2, - "type": "struct" - }, - "starkware.cairo.common.math.assert_le.ImplicitArgs": { - "full_name": "starkware.cairo.common.math.assert_le.ImplicitArgs", - "members": { - "range_check_ptr": { - "cairo_type": "felt", - "offset": 0 - } - }, - "size": 1, - "type": "struct" - }, - "starkware.cairo.common.math.assert_le.Return": { - "cairo_type": "()", - "type": "type_definition" - }, - "starkware.cairo.common.math.assert_le.SIZEOF_LOCALS": { - "type": "const", - "value": 0 - }, - "starkware.cairo.common.math.assert_le_felt": { - "decorators": [ - "known_ap_change" - ], - "pc": 114, - "type": "function" - }, - "starkware.cairo.common.math.assert_le_felt.Args": { - "full_name": "starkware.cairo.common.math.assert_le_felt.Args", - "members": { - "a": { - "cairo_type": "felt", - "offset": 0 - }, - "b": { - "cairo_type": "felt", - "offset": 1 - } - }, - "size": 2, - "type": "struct" - }, - "starkware.cairo.common.math.assert_le_felt.ImplicitArgs": { - "full_name": "starkware.cairo.common.math.assert_le_felt.ImplicitArgs", - "members": { - "range_check_ptr": { - "cairo_type": "felt", - "offset": 0 - } - }, - "size": 1, - "type": "struct" - }, - "starkware.cairo.common.math.assert_le_felt.PRIME_OVER_2_HIGH": { - "type": "const", - "value": 5316911983139663648412552867652567041 - }, - "starkware.cairo.common.math.assert_le_felt.PRIME_OVER_3_HIGH": { - "type": "const", - "value": 3544607988759775765608368578435044694 - }, - "starkware.cairo.common.math.assert_le_felt.Return": { - "cairo_type": "()", - "type": "type_definition" - }, - "starkware.cairo.common.math.assert_le_felt.SIZEOF_LOCALS": { - "type": "const", - "value": 0 - }, - "starkware.cairo.common.math.assert_le_felt.a": { - "cairo_type": "felt", - "full_name": "starkware.cairo.common.math.assert_le_felt.a", - "references": [ - { - "ap_tracking_data": { - "group": 13, - "offset": 0 - }, - "pc": 114, - "value": "[cast(fp + (-4), felt*)]" - } - ], - "type": "reference" - }, - "starkware.cairo.common.math.assert_le_felt.b": { - "cairo_type": "felt", - "full_name": "starkware.cairo.common.math.assert_le_felt.b", - "references": [ - { - "ap_tracking_data": { - "group": 13, - "offset": 0 - }, - "pc": 114, - "value": "[cast(fp + (-3), felt*)]" - } - ], - "type": "reference" - }, - "starkware.cairo.common.math.assert_le_felt.range_check_ptr": { - "cairo_type": "felt", - "full_name": "starkware.cairo.common.math.assert_le_felt.range_check_ptr", - "references": [ - { - "ap_tracking_data": { - "group": 13, - "offset": 0 - }, - "pc": 114, - "value": "[cast(fp + (-5), felt*)]" - }, - { - "ap_tracking_data": { - "group": 13, - "offset": 8 - }, - "pc": 124, - "value": "cast([fp + (-5)] + 4, felt)" - } - ], - "type": "reference" - }, - "starkware.cairo.common.math.assert_le_felt.skip_exclude_a": { - "pc": 138, - "type": "label" - }, - "starkware.cairo.common.math.assert_le_felt.skip_exclude_b_minus_a": { - "pc": 150, - "type": "label" - }, - "starkware.cairo.common.math.assert_nn": { - "decorators": [], - "pc": 63, - "type": "function" - }, - "starkware.cairo.common.math.assert_nn.Args": { - "full_name": "starkware.cairo.common.math.assert_nn.Args", - "members": { - "a": { - "cairo_type": "felt", - "offset": 0 - } - }, - "size": 1, - "type": "struct" - }, - "starkware.cairo.common.math.assert_nn.ImplicitArgs": { - "full_name": "starkware.cairo.common.math.assert_nn.ImplicitArgs", - "members": { - "range_check_ptr": { - "cairo_type": "felt", - "offset": 0 - } - }, - "size": 1, - "type": "struct" - }, - "starkware.cairo.common.math.assert_nn.Return": { - "cairo_type": "()", - "type": "type_definition" - }, - "starkware.cairo.common.math.assert_nn.SIZEOF_LOCALS": { - "type": "const", - "value": 0 - }, - "starkware.cairo.common.math.assert_nn.a": { - "cairo_type": "felt", - "full_name": "starkware.cairo.common.math.assert_nn.a", - "references": [ - { - "ap_tracking_data": { - "group": 9, - "offset": 0 - }, - "pc": 63, - "value": "[cast(fp + (-3), felt*)]" - } - ], - "type": "reference" - }, - "starkware.cairo.common.math.assert_not_zero": { - "decorators": [], - "pc": 58, - "type": "function" - }, - "starkware.cairo.common.math.assert_not_zero.Args": { - "full_name": "starkware.cairo.common.math.assert_not_zero.Args", - "members": { - "value": { - "cairo_type": "felt", - "offset": 0 - } - }, - "size": 1, - "type": "struct" - }, - "starkware.cairo.common.math.assert_not_zero.ImplicitArgs": { - "full_name": "starkware.cairo.common.math.assert_not_zero.ImplicitArgs", - "members": {}, - "size": 0, - "type": "struct" - }, - "starkware.cairo.common.math.assert_not_zero.Return": { - "cairo_type": "()", - "type": "type_definition" - }, - "starkware.cairo.common.math.assert_not_zero.SIZEOF_LOCALS": { - "type": "const", - "value": 0 - }, - "starkware.cairo.common.math.assert_not_zero.value": { - "cairo_type": "felt", - "full_name": "starkware.cairo.common.math.assert_not_zero.value", - "references": [ - { - "ap_tracking_data": { - "group": 8, - "offset": 0 - }, - "pc": 58, - "value": "[cast(fp + (-3), felt*)]" - } - ], - "type": "reference" - }, - "starkware.cairo.common.math.sign": { - "decorators": [ - "known_ap_change" - ], - "pc": 174, - "type": "function" - }, - "starkware.cairo.common.math.sign.Args": { - "full_name": "starkware.cairo.common.math.sign.Args", - "members": { - "value": { - "cairo_type": "felt", - "offset": 0 - } - }, - "size": 1, - "type": "struct" - }, - "starkware.cairo.common.math.sign.ImplicitArgs": { - "full_name": "starkware.cairo.common.math.sign.ImplicitArgs", - "members": { - "range_check_ptr": { - "cairo_type": "felt", - "offset": 0 - } - }, - "size": 1, - "type": "struct" - }, - "starkware.cairo.common.math.sign.Return": { - "cairo_type": "felt", - "type": "type_definition" - }, - "starkware.cairo.common.math.sign.SIZEOF_LOCALS": { - "type": "const", - "value": 0 - }, - "starkware.cairo.common.math.sign.is_positive": { - "cairo_type": "felt", - "full_name": "starkware.cairo.common.math.sign.is_positive", - "references": [ - { - "ap_tracking_data": { - "group": 15, - "offset": 1 - }, - "pc": 184, - "value": "[cast(ap + (-1), felt*)]" - } - ], - "type": "reference" - }, - "starkware.cairo.common.math.sign.value": { - "cairo_type": "felt", - "full_name": "starkware.cairo.common.math.sign.value", - "references": [ - { - "ap_tracking_data": { - "group": 15, - "offset": 0 - }, - "pc": 174, - "value": "[cast(fp + (-3), felt*)]" - } - ], - "type": "reference" - }, - "starkware.cairo.common.math.split_felt": { - "decorators": [ - "known_ap_change" - ], - "pc": 85, - "type": "function" - }, - "starkware.cairo.common.math.split_felt.Args": { - "full_name": "starkware.cairo.common.math.split_felt.Args", - "members": { - "value": { - "cairo_type": "felt", - "offset": 0 - } - }, - "size": 1, - "type": "struct" - }, - "starkware.cairo.common.math.split_felt.ImplicitArgs": { - "full_name": "starkware.cairo.common.math.split_felt.ImplicitArgs", - "members": { - "range_check_ptr": { - "cairo_type": "felt", - "offset": 0 - } - }, - "size": 1, - "type": "struct" - }, - "starkware.cairo.common.math.split_felt.MAX_HIGH": { - "type": "const", - "value": 10633823966279327296825105735305134080 - }, - "starkware.cairo.common.math.split_felt.MAX_LOW": { - "type": "const", - "value": 0 - }, - "starkware.cairo.common.math.split_felt.Return": { - "cairo_type": "(high: felt, low: felt)", - "type": "type_definition" - }, - "starkware.cairo.common.math.split_felt.SIZEOF_LOCALS": { - "type": "const", - "value": 0 - }, - "starkware.cairo.common.math.split_felt.high": { - "cairo_type": "felt", - "full_name": "starkware.cairo.common.math.split_felt.high", - "references": [ - { - "ap_tracking_data": { - "group": 12, - "offset": 0 - }, - "pc": 85, - "value": "[cast([fp + (-4)] + 1, felt*)]" - } - ], - "type": "reference" - }, - "starkware.cairo.common.math.split_felt.low": { - "cairo_type": "felt", - "full_name": "starkware.cairo.common.math.split_felt.low", - "references": [ - { - "ap_tracking_data": { - "group": 12, - "offset": 0 - }, - "pc": 85, - "value": "[cast([fp + (-4)], felt*)]" - } - ], - "type": "reference" - }, - "starkware.cairo.common.math.split_felt.value": { - "cairo_type": "felt", - "full_name": "starkware.cairo.common.math.split_felt.value", - "references": [ - { - "ap_tracking_data": { - "group": 12, - "offset": 0 - }, - "pc": 85, - "value": "[cast(fp + (-3), felt*)]" - } - ], - "type": "reference" - }, - "starkware.cairo.common.math.unsigned_div_rem": { - "decorators": [], - "pc": 202, - "type": "function" - }, - "starkware.cairo.common.math.unsigned_div_rem.Args": { - "full_name": "starkware.cairo.common.math.unsigned_div_rem.Args", - "members": { - "div": { - "cairo_type": "felt", - "offset": 1 - }, - "value": { - "cairo_type": "felt", - "offset": 0 - } - }, - "size": 2, - "type": "struct" - }, - "starkware.cairo.common.math.unsigned_div_rem.ImplicitArgs": { - "full_name": "starkware.cairo.common.math.unsigned_div_rem.ImplicitArgs", - "members": { - "range_check_ptr": { - "cairo_type": "felt", - "offset": 0 - } - }, - "size": 1, - "type": "struct" - }, - "starkware.cairo.common.math.unsigned_div_rem.Return": { - "cairo_type": "(q: felt, r: felt)", - "type": "type_definition" - }, - "starkware.cairo.common.math.unsigned_div_rem.SIZEOF_LOCALS": { - "type": "const", - "value": 0 - }, - "starkware.cairo.common.math.unsigned_div_rem.div": { - "cairo_type": "felt", - "full_name": "starkware.cairo.common.math.unsigned_div_rem.div", - "references": [ - { - "ap_tracking_data": { - "group": 16, - "offset": 0 - }, - "pc": 202, - "value": "[cast(fp + (-3), felt*)]" - } - ], - "type": "reference" - }, - "starkware.cairo.common.math.unsigned_div_rem.q": { - "cairo_type": "felt", - "full_name": "starkware.cairo.common.math.unsigned_div_rem.q", - "references": [ - { - "ap_tracking_data": { - "group": 16, - "offset": 0 - }, - "pc": 202, - "value": "[cast([fp + (-5)] + 1, felt*)]" - } - ], - "type": "reference" - }, - "starkware.cairo.common.math.unsigned_div_rem.r": { - "cairo_type": "felt", - "full_name": "starkware.cairo.common.math.unsigned_div_rem.r", - "references": [ - { - "ap_tracking_data": { - "group": 16, - "offset": 0 - }, - "pc": 202, - "value": "[cast([fp + (-5)], felt*)]" - } - ], - "type": "reference" - }, - "starkware.cairo.common.math.unsigned_div_rem.value": { - "cairo_type": "felt", - "full_name": "starkware.cairo.common.math.unsigned_div_rem.value", - "references": [ - { - "ap_tracking_data": { - "group": 16, - "offset": 0 - }, - "pc": 202, - "value": "[cast(fp + (-4), felt*)]" - } - ], - "type": "reference" - }, - "starkware.cairo.common.math_cmp.RC_BOUND": { - "type": "const", - "value": 340282366920938463463374607431768211456 - }, - "starkware.cairo.common.math_cmp.assert_le_felt": { - "destination": "starkware.cairo.common.math.assert_le_felt", - "type": "alias" - }, - "starkware.cairo.common.math_cmp.assert_lt_felt": { - "destination": "starkware.cairo.common.math.assert_lt_felt", - "type": "alias" - }, - "starkware.cairo.common.math_cmp.is_le": { - "decorators": [ - "known_ap_change" - ], - "pc": 406, - "type": "function" - }, - "starkware.cairo.common.math_cmp.is_le.Args": { - "full_name": "starkware.cairo.common.math_cmp.is_le.Args", - "members": { - "a": { - "cairo_type": "felt", - "offset": 0 - }, - "b": { - "cairo_type": "felt", - "offset": 1 - } - }, - "size": 2, - "type": "struct" - }, - "starkware.cairo.common.math_cmp.is_le.ImplicitArgs": { - "full_name": "starkware.cairo.common.math_cmp.is_le.ImplicitArgs", - "members": { - "range_check_ptr": { - "cairo_type": "felt", - "offset": 0 - } - }, - "size": 1, - "type": "struct" - }, - "starkware.cairo.common.math_cmp.is_le.Return": { - "cairo_type": "felt", - "type": "type_definition" - }, - "starkware.cairo.common.math_cmp.is_le.SIZEOF_LOCALS": { - "type": "const", - "value": 0 - }, - "starkware.cairo.common.math_cmp.is_nn": { - "decorators": [ - "known_ap_change" - ], - "pc": 373, - "type": "function" - }, - "starkware.cairo.common.math_cmp.is_nn.Args": { - "full_name": "starkware.cairo.common.math_cmp.is_nn.Args", - "members": { - "a": { - "cairo_type": "felt", - "offset": 0 - } - }, - "size": 1, - "type": "struct" - }, - "starkware.cairo.common.math_cmp.is_nn.ImplicitArgs": { - "full_name": "starkware.cairo.common.math_cmp.is_nn.ImplicitArgs", - "members": { - "range_check_ptr": { - "cairo_type": "felt", - "offset": 0 - } - }, - "size": 1, - "type": "struct" - }, - "starkware.cairo.common.math_cmp.is_nn.Return": { - "cairo_type": "felt", - "type": "type_definition" - }, - "starkware.cairo.common.math_cmp.is_nn.SIZEOF_LOCALS": { - "type": "const", - "value": 0 - }, - "starkware.cairo.common.math_cmp.is_nn.a": { - "cairo_type": "felt", - "full_name": "starkware.cairo.common.math_cmp.is_nn.a", - "references": [ - { - "ap_tracking_data": { - "group": 31, - "offset": 0 - }, - "pc": 373, - "value": "[cast(fp + (-3), felt*)]" - } - ], - "type": "reference" - }, - "starkware.cairo.common.math_cmp.is_nn.need_felt_comparison": { - "pc": 397, - "type": "label" - }, - "starkware.cairo.common.math_cmp.is_nn.out_of_range": { - "pc": 383, - "type": "label" - }, - "starkware.cairo.common.memcpy.memcpy": { - "decorators": [], - "pc": 9, - "type": "function" - }, - "starkware.cairo.common.memcpy.memcpy.Args": { - "full_name": "starkware.cairo.common.memcpy.memcpy.Args", - "members": { - "dst": { - "cairo_type": "felt*", - "offset": 0 - }, - "len": { - "cairo_type": "felt", - "offset": 2 - }, - "src": { - "cairo_type": "felt*", - "offset": 1 - } - }, - "size": 3, - "type": "struct" - }, - "starkware.cairo.common.memcpy.memcpy.ImplicitArgs": { - "full_name": "starkware.cairo.common.memcpy.memcpy.ImplicitArgs", - "members": {}, - "size": 0, - "type": "struct" - }, - "starkware.cairo.common.memcpy.memcpy.LoopFrame": { - "full_name": "starkware.cairo.common.memcpy.memcpy.LoopFrame", - "members": { - "dst": { - "cairo_type": "felt*", - "offset": 0 - }, - "src": { - "cairo_type": "felt*", - "offset": 1 - } - }, - "size": 2, - "type": "struct" - }, - "starkware.cairo.common.memcpy.memcpy.Return": { - "cairo_type": "()", - "type": "type_definition" - }, - "starkware.cairo.common.memcpy.memcpy.SIZEOF_LOCALS": { - "type": "const", - "value": 0 - }, - "starkware.cairo.common.memcpy.memcpy.continue_copying": { - "cairo_type": "felt", - "full_name": "starkware.cairo.common.memcpy.memcpy.continue_copying", - "references": [ - { - "ap_tracking_data": { - "group": 2, - "offset": 3 - }, - "pc": 16, - "value": "[cast(ap, felt*)]" - } - ], - "type": "reference" - }, - "starkware.cairo.common.memcpy.memcpy.len": { - "cairo_type": "felt", - "full_name": "starkware.cairo.common.memcpy.memcpy.len", - "references": [ - { - "ap_tracking_data": { - "group": 2, - "offset": 0 - }, - "pc": 9, - "value": "[cast(fp + (-3), felt*)]" - } - ], - "type": "reference" - }, - "starkware.cairo.common.memcpy.memcpy.loop": { - "pc": 14, - "type": "label" - }, - "starkware.cairo.common.poseidon_state.PoseidonBuiltinState": { - "full_name": "starkware.cairo.common.poseidon_state.PoseidonBuiltinState", - "members": { - "s0": { - "cairo_type": "felt", - "offset": 0 - }, - "s1": { - "cairo_type": "felt", - "offset": 1 - }, - "s2": { - "cairo_type": "felt", - "offset": 2 - } - }, - "size": 3, - "type": "struct" - }, - "starkware.cairo.common.registers.get_ap": { - "destination": "starkware.cairo.lang.compiler.lib.registers.get_ap", - "type": "alias" - }, - "starkware.cairo.common.registers.get_fp_and_pc": { - "destination": "starkware.cairo.lang.compiler.lib.registers.get_fp_and_pc", - "type": "alias" - }, - "starkware.cairo.common.registers.get_label_location": { - "decorators": [], - "pc": 504, - "type": "function" - }, - "starkware.cairo.common.registers.get_label_location.Args": { - "full_name": "starkware.cairo.common.registers.get_label_location.Args", - "members": { - "label_value": { - "cairo_type": "codeoffset", - "offset": 0 - } - }, - "size": 1, - "type": "struct" - }, - "starkware.cairo.common.registers.get_label_location.ImplicitArgs": { - "full_name": "starkware.cairo.common.registers.get_label_location.ImplicitArgs", - "members": {}, - "size": 0, - "type": "struct" - }, - "starkware.cairo.common.registers.get_label_location.Return": { - "cairo_type": "(res: felt*)", - "type": "type_definition" - }, - "starkware.cairo.common.registers.get_label_location.SIZEOF_LOCALS": { - "type": "const", - "value": 0 - }, - "starkware.cairo.common.registers.get_label_location.ret_pc_label": { - "pc": 506, - "type": "label" - }, - "starkware.cairo.lang.compiler.lib.registers.get_fp_and_pc": { - "decorators": [], - "pc": 24, - "type": "function" - }, - "starkware.cairo.lang.compiler.lib.registers.get_fp_and_pc.Args": { - "full_name": "starkware.cairo.lang.compiler.lib.registers.get_fp_and_pc.Args", - "members": {}, - "size": 0, - "type": "struct" - }, - "starkware.cairo.lang.compiler.lib.registers.get_fp_and_pc.ImplicitArgs": { - "full_name": "starkware.cairo.lang.compiler.lib.registers.get_fp_and_pc.ImplicitArgs", - "members": {}, - "size": 0, - "type": "struct" - }, - "starkware.cairo.lang.compiler.lib.registers.get_fp_and_pc.Return": { - "cairo_type": "(fp_val: felt*, pc_val: felt*)", - "type": "type_definition" - }, - "starkware.cairo.lang.compiler.lib.registers.get_fp_and_pc.SIZEOF_LOCALS": { - "type": "const", - "value": 0 - }, - "starkware.starknet.common.storage.ADDR_BOUND": { - "type": "const", - "value": -106710729501573572985208420194530329073740042555888586719489 - }, - "starkware.starknet.common.storage.MAX_STORAGE_ITEM_SIZE": { - "type": "const", - "value": 256 - }, - "starkware.starknet.common.storage.assert_250_bit": { - "destination": "starkware.cairo.common.math.assert_250_bit", - "type": "alias" - }, - "starkware.starknet.common.storage.normalize_address": { - "decorators": [ - "known_ap_change" - ], - "pc": 217, - "type": "function" - }, - "starkware.starknet.common.storage.normalize_address.Args": { - "full_name": "starkware.starknet.common.storage.normalize_address.Args", - "members": { - "addr": { - "cairo_type": "felt", - "offset": 0 - } - }, - "size": 1, - "type": "struct" - }, - "starkware.starknet.common.storage.normalize_address.ImplicitArgs": { - "full_name": "starkware.starknet.common.storage.normalize_address.ImplicitArgs", - "members": { - "range_check_ptr": { - "cairo_type": "felt", - "offset": 0 - } - }, - "size": 1, - "type": "struct" - }, - "starkware.starknet.common.storage.normalize_address.Return": { - "cairo_type": "(res: felt)", - "type": "type_definition" - }, - "starkware.starknet.common.storage.normalize_address.SIZEOF_LOCALS": { - "type": "const", - "value": 0 - }, - "starkware.starknet.common.storage.normalize_address.addr": { - "cairo_type": "felt", - "full_name": "starkware.starknet.common.storage.normalize_address.addr", - "references": [ - { - "ap_tracking_data": { - "group": 17, - "offset": 0 - }, - "pc": 217, - "value": "[cast(fp + (-3), felt*)]" - } - ], - "type": "reference" - }, - "starkware.starknet.common.storage.normalize_address.is_250": { - "cairo_type": "felt", - "full_name": "starkware.starknet.common.storage.normalize_address.is_250", - "references": [ - { - "ap_tracking_data": { - "group": 17, - "offset": 2 - }, - "pc": 237, - "value": "[cast(ap + (-1), felt*)]" - } - ], - "type": "reference" - }, - "starkware.starknet.common.storage.normalize_address.is_small": { - "cairo_type": "felt", - "full_name": "starkware.starknet.common.storage.normalize_address.is_small", - "references": [ - { - "ap_tracking_data": { - "group": 17, - "offset": 1 - }, - "pc": 219, - "value": "[cast(ap + (-1), felt*)]" - } - ], - "type": "reference" - }, - "starkware.starknet.common.syscalls.CALL_CONTRACT_SELECTOR": { - "type": "const", - "value": 20853273475220472486191784820 - }, - "starkware.starknet.common.syscalls.CallContract": { - "full_name": "starkware.starknet.common.syscalls.CallContract", - "members": { - "request": { - "cairo_type": "starkware.starknet.common.syscalls.CallContractRequest", - "offset": 0 - }, - "response": { - "cairo_type": "starkware.starknet.common.syscalls.CallContractResponse", - "offset": 5 - } - }, - "size": 7, - "type": "struct" - }, - "starkware.starknet.common.syscalls.CallContractRequest": { - "full_name": "starkware.starknet.common.syscalls.CallContractRequest", - "members": { - "calldata": { - "cairo_type": "felt*", - "offset": 4 - }, - "calldata_size": { - "cairo_type": "felt", - "offset": 3 - }, - "contract_address": { - "cairo_type": "felt", - "offset": 1 - }, - "function_selector": { - "cairo_type": "felt", - "offset": 2 - }, - "selector": { - "cairo_type": "felt", - "offset": 0 - } - }, - "size": 5, - "type": "struct" - }, - "starkware.starknet.common.syscalls.CallContractResponse": { - "full_name": "starkware.starknet.common.syscalls.CallContractResponse", - "members": { - "retdata": { - "cairo_type": "felt*", - "offset": 1 - }, - "retdata_size": { - "cairo_type": "felt", - "offset": 0 - } - }, - "size": 2, - "type": "struct" - }, - "starkware.starknet.common.syscalls.DELEGATE_CALL_SELECTOR": { - "type": "const", - "value": 21167594061783206823196716140 - }, - "starkware.starknet.common.syscalls.DELEGATE_L1_HANDLER_SELECTOR": { - "type": "const", - "value": 23274015802972845247556842986379118667122 - }, - "starkware.starknet.common.syscalls.DEPLOY_SELECTOR": { - "type": "const", - "value": 75202468540281 - }, - "starkware.starknet.common.syscalls.Deploy": { - "full_name": "starkware.starknet.common.syscalls.Deploy", - "members": { - "request": { - "cairo_type": "starkware.starknet.common.syscalls.DeployRequest", - "offset": 0 - }, - "response": { - "cairo_type": "starkware.starknet.common.syscalls.DeployResponse", - "offset": 6 - } - }, - "size": 9, - "type": "struct" - }, - "starkware.starknet.common.syscalls.DeployRequest": { - "full_name": "starkware.starknet.common.syscalls.DeployRequest", - "members": { - "class_hash": { - "cairo_type": "felt", - "offset": 1 - }, - "constructor_calldata": { - "cairo_type": "felt*", - "offset": 4 - }, - "constructor_calldata_size": { - "cairo_type": "felt", - "offset": 3 - }, - "contract_address_salt": { - "cairo_type": "felt", - "offset": 2 - }, - "deploy_from_zero": { - "cairo_type": "felt", - "offset": 5 - }, - "selector": { - "cairo_type": "felt", - "offset": 0 - } - }, - "size": 6, - "type": "struct" - }, - "starkware.starknet.common.syscalls.DeployResponse": { - "full_name": "starkware.starknet.common.syscalls.DeployResponse", - "members": { - "constructor_retdata": { - "cairo_type": "felt*", - "offset": 2 - }, - "constructor_retdata_size": { - "cairo_type": "felt", - "offset": 1 - }, - "contract_address": { - "cairo_type": "felt", - "offset": 0 - } - }, - "size": 3, - "type": "struct" - }, - "starkware.starknet.common.syscalls.DictAccess": { - "destination": "starkware.cairo.common.dict_access.DictAccess", - "type": "alias" - }, - "starkware.starknet.common.syscalls.EMIT_EVENT_SELECTOR": { - "type": "const", - "value": 1280709301550335749748 - }, - "starkware.starknet.common.syscalls.EmitEvent": { - "full_name": "starkware.starknet.common.syscalls.EmitEvent", - "members": { - "data": { - "cairo_type": "felt*", - "offset": 4 - }, - "data_len": { - "cairo_type": "felt", - "offset": 3 - }, - "keys": { - "cairo_type": "felt*", - "offset": 2 - }, - "keys_len": { - "cairo_type": "felt", - "offset": 1 - }, - "selector": { - "cairo_type": "felt", - "offset": 0 - } - }, - "size": 5, - "type": "struct" - }, - "starkware.starknet.common.syscalls.GET_BLOCK_NUMBER_SELECTOR": { - "type": "const", - "value": 1448089106835523001438702345020786 - }, - "starkware.starknet.common.syscalls.GET_BLOCK_TIMESTAMP_SELECTOR": { - "type": "const", - "value": 24294903732626645868215235778792757751152 - }, - "starkware.starknet.common.syscalls.GET_CALLER_ADDRESS_SELECTOR": { - "type": "const", - "value": 94901967781393078444254803017658102643 - }, - "starkware.starknet.common.syscalls.GET_CONTRACT_ADDRESS_SELECTOR": { - "type": "const", - "value": 6219495360805491471215297013070624192820083 - }, - "starkware.starknet.common.syscalls.GET_SEQUENCER_ADDRESS_SELECTOR": { - "type": "const", - "value": 1592190833581991703053805829594610833820054387 - }, - "starkware.starknet.common.syscalls.GET_TX_INFO_SELECTOR": { - "type": "const", - "value": 1317029390204112103023 - }, - "starkware.starknet.common.syscalls.GET_TX_SIGNATURE_SELECTOR": { - "type": "const", - "value": 1448089128652340074717162277007973 - }, - "starkware.starknet.common.syscalls.GetBlockNumber": { - "full_name": "starkware.starknet.common.syscalls.GetBlockNumber", - "members": { - "request": { - "cairo_type": "starkware.starknet.common.syscalls.GetBlockNumberRequest", - "offset": 0 - }, - "response": { - "cairo_type": "starkware.starknet.common.syscalls.GetBlockNumberResponse", - "offset": 1 - } - }, - "size": 2, - "type": "struct" - }, - "starkware.starknet.common.syscalls.GetBlockNumberRequest": { - "full_name": "starkware.starknet.common.syscalls.GetBlockNumberRequest", - "members": { - "selector": { - "cairo_type": "felt", - "offset": 0 - } - }, - "size": 1, - "type": "struct" - }, - "starkware.starknet.common.syscalls.GetBlockNumberResponse": { - "full_name": "starkware.starknet.common.syscalls.GetBlockNumberResponse", - "members": { - "block_number": { - "cairo_type": "felt", - "offset": 0 - } - }, - "size": 1, - "type": "struct" - }, - "starkware.starknet.common.syscalls.GetBlockTimestamp": { - "full_name": "starkware.starknet.common.syscalls.GetBlockTimestamp", - "members": { - "request": { - "cairo_type": "starkware.starknet.common.syscalls.GetBlockTimestampRequest", - "offset": 0 - }, - "response": { - "cairo_type": "starkware.starknet.common.syscalls.GetBlockTimestampResponse", - "offset": 1 - } - }, - "size": 2, - "type": "struct" - }, - "starkware.starknet.common.syscalls.GetBlockTimestampRequest": { - "full_name": "starkware.starknet.common.syscalls.GetBlockTimestampRequest", - "members": { - "selector": { - "cairo_type": "felt", - "offset": 0 - } - }, - "size": 1, - "type": "struct" - }, - "starkware.starknet.common.syscalls.GetBlockTimestampResponse": { - "full_name": "starkware.starknet.common.syscalls.GetBlockTimestampResponse", - "members": { - "block_timestamp": { - "cairo_type": "felt", - "offset": 0 - } - }, - "size": 1, - "type": "struct" - }, - "starkware.starknet.common.syscalls.GetCallerAddress": { - "full_name": "starkware.starknet.common.syscalls.GetCallerAddress", - "members": { - "request": { - "cairo_type": "starkware.starknet.common.syscalls.GetCallerAddressRequest", - "offset": 0 - }, - "response": { - "cairo_type": "starkware.starknet.common.syscalls.GetCallerAddressResponse", - "offset": 1 - } - }, - "size": 2, - "type": "struct" - }, - "starkware.starknet.common.syscalls.GetCallerAddressRequest": { - "full_name": "starkware.starknet.common.syscalls.GetCallerAddressRequest", - "members": { - "selector": { - "cairo_type": "felt", - "offset": 0 - } - }, - "size": 1, - "type": "struct" - }, - "starkware.starknet.common.syscalls.GetCallerAddressResponse": { - "full_name": "starkware.starknet.common.syscalls.GetCallerAddressResponse", - "members": { - "caller_address": { - "cairo_type": "felt", - "offset": 0 - } - }, - "size": 1, - "type": "struct" - }, - "starkware.starknet.common.syscalls.GetContractAddress": { - "full_name": "starkware.starknet.common.syscalls.GetContractAddress", - "members": { - "request": { - "cairo_type": "starkware.starknet.common.syscalls.GetContractAddressRequest", - "offset": 0 - }, - "response": { - "cairo_type": "starkware.starknet.common.syscalls.GetContractAddressResponse", - "offset": 1 - } - }, - "size": 2, - "type": "struct" - }, - "starkware.starknet.common.syscalls.GetContractAddressRequest": { - "full_name": "starkware.starknet.common.syscalls.GetContractAddressRequest", - "members": { - "selector": { - "cairo_type": "felt", - "offset": 0 - } - }, - "size": 1, - "type": "struct" - }, - "starkware.starknet.common.syscalls.GetContractAddressResponse": { - "full_name": "starkware.starknet.common.syscalls.GetContractAddressResponse", - "members": { - "contract_address": { - "cairo_type": "felt", - "offset": 0 - } - }, - "size": 1, - "type": "struct" - }, - "starkware.starknet.common.syscalls.GetSequencerAddress": { - "full_name": "starkware.starknet.common.syscalls.GetSequencerAddress", - "members": { - "request": { - "cairo_type": "starkware.starknet.common.syscalls.GetSequencerAddressRequest", - "offset": 0 - }, - "response": { - "cairo_type": "starkware.starknet.common.syscalls.GetSequencerAddressResponse", - "offset": 1 - } - }, - "size": 2, - "type": "struct" - }, - "starkware.starknet.common.syscalls.GetSequencerAddressRequest": { - "full_name": "starkware.starknet.common.syscalls.GetSequencerAddressRequest", - "members": { - "selector": { - "cairo_type": "felt", - "offset": 0 - } - }, - "size": 1, - "type": "struct" - }, - "starkware.starknet.common.syscalls.GetSequencerAddressResponse": { - "full_name": "starkware.starknet.common.syscalls.GetSequencerAddressResponse", - "members": { - "sequencer_address": { - "cairo_type": "felt", - "offset": 0 - } - }, - "size": 1, - "type": "struct" - }, - "starkware.starknet.common.syscalls.GetTxInfo": { - "full_name": "starkware.starknet.common.syscalls.GetTxInfo", - "members": { - "request": { - "cairo_type": "starkware.starknet.common.syscalls.GetTxInfoRequest", - "offset": 0 - }, - "response": { - "cairo_type": "starkware.starknet.common.syscalls.GetTxInfoResponse", - "offset": 1 - } - }, - "size": 2, - "type": "struct" - }, - "starkware.starknet.common.syscalls.GetTxInfoRequest": { - "full_name": "starkware.starknet.common.syscalls.GetTxInfoRequest", - "members": { - "selector": { - "cairo_type": "felt", - "offset": 0 - } - }, - "size": 1, - "type": "struct" - }, - "starkware.starknet.common.syscalls.GetTxInfoResponse": { - "full_name": "starkware.starknet.common.syscalls.GetTxInfoResponse", - "members": { - "tx_info": { - "cairo_type": "starkware.starknet.common.syscalls.TxInfo*", - "offset": 0 - } - }, - "size": 1, - "type": "struct" - }, - "starkware.starknet.common.syscalls.GetTxSignature": { - "full_name": "starkware.starknet.common.syscalls.GetTxSignature", - "members": { - "request": { - "cairo_type": "starkware.starknet.common.syscalls.GetTxSignatureRequest", - "offset": 0 - }, - "response": { - "cairo_type": "starkware.starknet.common.syscalls.GetTxSignatureResponse", - "offset": 1 - } - }, - "size": 3, - "type": "struct" - }, - "starkware.starknet.common.syscalls.GetTxSignatureRequest": { - "full_name": "starkware.starknet.common.syscalls.GetTxSignatureRequest", - "members": { - "selector": { - "cairo_type": "felt", - "offset": 0 - } - }, - "size": 1, - "type": "struct" - }, - "starkware.starknet.common.syscalls.GetTxSignatureResponse": { - "full_name": "starkware.starknet.common.syscalls.GetTxSignatureResponse", - "members": { - "signature": { - "cairo_type": "felt*", - "offset": 1 - }, - "signature_len": { - "cairo_type": "felt", - "offset": 0 - } - }, - "size": 2, - "type": "struct" - }, - "starkware.starknet.common.syscalls.LIBRARY_CALL_L1_HANDLER_SELECTOR": { - "type": "const", - "value": 436233452754198157705746250789557519228244616562 - }, - "starkware.starknet.common.syscalls.LIBRARY_CALL_SELECTOR": { - "type": "const", - "value": 92376026794327011772951660 - }, - "starkware.starknet.common.syscalls.LibraryCall": { - "full_name": "starkware.starknet.common.syscalls.LibraryCall", - "members": { - "request": { - "cairo_type": "starkware.starknet.common.syscalls.LibraryCallRequest", - "offset": 0 - }, - "response": { - "cairo_type": "starkware.starknet.common.syscalls.CallContractResponse", - "offset": 5 - } - }, - "size": 7, - "type": "struct" - }, - "starkware.starknet.common.syscalls.LibraryCallRequest": { - "full_name": "starkware.starknet.common.syscalls.LibraryCallRequest", - "members": { - "calldata": { - "cairo_type": "felt*", - "offset": 4 - }, - "calldata_size": { - "cairo_type": "felt", - "offset": 3 - }, - "class_hash": { - "cairo_type": "felt", - "offset": 1 - }, - "function_selector": { - "cairo_type": "felt", - "offset": 2 - }, - "selector": { - "cairo_type": "felt", - "offset": 0 - } - }, - "size": 5, - "type": "struct" - }, - "starkware.starknet.common.syscalls.REPLACE_CLASS_SELECTOR": { - "type": "const", - "value": 25500403217443378527601783667 - }, - "starkware.starknet.common.syscalls.ReplaceClass": { - "full_name": "starkware.starknet.common.syscalls.ReplaceClass", - "members": { - "class_hash": { - "cairo_type": "felt", - "offset": 1 - }, - "selector": { - "cairo_type": "felt", - "offset": 0 - } - }, - "size": 2, - "type": "struct" - }, - "starkware.starknet.common.syscalls.SEND_MESSAGE_TO_L1_SELECTOR": { - "type": "const", - "value": 433017908768303439907196859243777073 - }, - "starkware.starknet.common.syscalls.STORAGE_READ_SELECTOR": { - "type": "const", - "value": 100890693370601760042082660 - }, - "starkware.starknet.common.syscalls.STORAGE_WRITE_SELECTOR": { - "type": "const", - "value": 25828017502874050592466629733 - }, - "starkware.starknet.common.syscalls.SendMessageToL1SysCall": { - "full_name": "starkware.starknet.common.syscalls.SendMessageToL1SysCall", - "members": { - "payload_ptr": { - "cairo_type": "felt*", - "offset": 3 - }, - "payload_size": { - "cairo_type": "felt", - "offset": 2 - }, - "selector": { - "cairo_type": "felt", - "offset": 0 - }, - "to_address": { - "cairo_type": "felt", - "offset": 1 - } - }, - "size": 4, - "type": "struct" - }, - "starkware.starknet.common.syscalls.StorageRead": { - "full_name": "starkware.starknet.common.syscalls.StorageRead", - "members": { - "request": { - "cairo_type": "starkware.starknet.common.syscalls.StorageReadRequest", - "offset": 0 - }, - "response": { - "cairo_type": "starkware.starknet.common.syscalls.StorageReadResponse", - "offset": 2 - } - }, - "size": 3, - "type": "struct" - }, - "starkware.starknet.common.syscalls.StorageReadRequest": { - "full_name": "starkware.starknet.common.syscalls.StorageReadRequest", - "members": { - "address": { - "cairo_type": "felt", - "offset": 1 - }, - "selector": { - "cairo_type": "felt", - "offset": 0 - } - }, - "size": 2, - "type": "struct" - }, - "starkware.starknet.common.syscalls.StorageReadResponse": { - "full_name": "starkware.starknet.common.syscalls.StorageReadResponse", - "members": { - "value": { - "cairo_type": "felt", - "offset": 0 - } - }, - "size": 1, - "type": "struct" - }, - "starkware.starknet.common.syscalls.StorageWrite": { - "full_name": "starkware.starknet.common.syscalls.StorageWrite", - "members": { - "address": { - "cairo_type": "felt", - "offset": 1 - }, - "selector": { - "cairo_type": "felt", - "offset": 0 - }, - "value": { - "cairo_type": "felt", - "offset": 2 - } - }, - "size": 3, - "type": "struct" - }, - "starkware.starknet.common.syscalls.TxInfo": { - "full_name": "starkware.starknet.common.syscalls.TxInfo", - "members": { - "account_contract_address": { - "cairo_type": "felt", - "offset": 1 - }, - "chain_id": { - "cairo_type": "felt", - "offset": 6 - }, - "max_fee": { - "cairo_type": "felt", - "offset": 2 - }, - "nonce": { - "cairo_type": "felt", - "offset": 7 - }, - "signature": { - "cairo_type": "felt*", - "offset": 4 - }, - "signature_len": { - "cairo_type": "felt", - "offset": 3 - }, - "transaction_hash": { - "cairo_type": "felt", - "offset": 5 - }, - "version": { - "cairo_type": "felt", - "offset": 0 - } - }, - "size": 8, - "type": "struct" - }, - "starkware.starknet.common.syscalls.emit_event": { - "decorators": [], - "pc": 48, - "type": "function" - }, - "starkware.starknet.common.syscalls.emit_event.Args": { - "full_name": "starkware.starknet.common.syscalls.emit_event.Args", - "members": { - "data": { - "cairo_type": "felt*", - "offset": 3 - }, - "data_len": { - "cairo_type": "felt", - "offset": 2 - }, - "keys": { - "cairo_type": "felt*", - "offset": 1 - }, - "keys_len": { - "cairo_type": "felt", - "offset": 0 - } - }, - "size": 4, - "type": "struct" - }, - "starkware.starknet.common.syscalls.emit_event.ImplicitArgs": { - "full_name": "starkware.starknet.common.syscalls.emit_event.ImplicitArgs", - "members": { - "syscall_ptr": { - "cairo_type": "felt*", - "offset": 0 - } - }, - "size": 1, - "type": "struct" - }, - "starkware.starknet.common.syscalls.emit_event.Return": { - "cairo_type": "()", - "type": "type_definition" - }, - "starkware.starknet.common.syscalls.emit_event.SIZEOF_LOCALS": { - "type": "const", - "value": 0 - }, - "starkware.starknet.common.syscalls.emit_event.syscall_ptr": { - "cairo_type": "felt*", - "full_name": "starkware.starknet.common.syscalls.emit_event.syscall_ptr", - "references": [ - { - "ap_tracking_data": { - "group": 7, - "offset": 0 - }, - "pc": 48, - "value": "[cast(fp + (-7), felt**)]" - }, - { - "ap_tracking_data": { - "group": 7, - "offset": 1 - }, - "pc": 55, - "value": "cast([fp + (-7)] + 5, felt*)" - } - ], - "type": "reference" - }, - "starkware.starknet.common.syscalls.get_caller_address": { - "decorators": [], - "pc": 25, - "type": "function" - }, - "starkware.starknet.common.syscalls.get_caller_address.Args": { - "full_name": "starkware.starknet.common.syscalls.get_caller_address.Args", - "members": {}, - "size": 0, - "type": "struct" - }, - "starkware.starknet.common.syscalls.get_caller_address.ImplicitArgs": { - "full_name": "starkware.starknet.common.syscalls.get_caller_address.ImplicitArgs", - "members": { - "syscall_ptr": { - "cairo_type": "felt*", - "offset": 0 - } - }, - "size": 1, - "type": "struct" - }, - "starkware.starknet.common.syscalls.get_caller_address.Return": { - "cairo_type": "(caller_address: felt)", - "type": "type_definition" - }, - "starkware.starknet.common.syscalls.get_caller_address.SIZEOF_LOCALS": { - "type": "const", - "value": 0 - }, - "starkware.starknet.common.syscalls.get_caller_address.syscall_ptr": { - "cairo_type": "felt*", - "full_name": "starkware.starknet.common.syscalls.get_caller_address.syscall_ptr", - "references": [ - { - "ap_tracking_data": { - "group": 4, - "offset": 0 - }, - "pc": 25, - "value": "[cast(fp + (-3), felt**)]" - }, - { - "ap_tracking_data": { - "group": 4, - "offset": 1 - }, - "pc": 28, - "value": "cast([fp + (-3)] + 2, felt*)" - } - ], - "type": "reference" - }, - "starkware.starknet.common.syscalls.storage_read": { - "decorators": [], - "pc": 32, - "type": "function" - }, - "starkware.starknet.common.syscalls.storage_read.Args": { - "full_name": "starkware.starknet.common.syscalls.storage_read.Args", - "members": { - "address": { - "cairo_type": "felt", - "offset": 0 - } - }, - "size": 1, - "type": "struct" - }, - "starkware.starknet.common.syscalls.storage_read.ImplicitArgs": { - "full_name": "starkware.starknet.common.syscalls.storage_read.ImplicitArgs", - "members": { - "syscall_ptr": { - "cairo_type": "felt*", - "offset": 0 - } - }, - "size": 1, - "type": "struct" - }, - "starkware.starknet.common.syscalls.storage_read.Return": { - "cairo_type": "(value: felt)", - "type": "type_definition" - }, - "starkware.starknet.common.syscalls.storage_read.SIZEOF_LOCALS": { - "type": "const", - "value": 0 - }, - "starkware.starknet.common.syscalls.storage_read.syscall_ptr": { - "cairo_type": "felt*", - "full_name": "starkware.starknet.common.syscalls.storage_read.syscall_ptr", - "references": [ - { - "ap_tracking_data": { - "group": 5, - "offset": 0 - }, - "pc": 32, - "value": "[cast(fp + (-4), felt**)]" - }, - { - "ap_tracking_data": { - "group": 5, - "offset": 1 - }, - "pc": 36, - "value": "cast([fp + (-4)] + 3, felt*)" - } - ], - "type": "reference" - }, - "starkware.starknet.common.syscalls.storage_write": { - "decorators": [], - "pc": 40, - "type": "function" - }, - "starkware.starknet.common.syscalls.storage_write.Args": { - "full_name": "starkware.starknet.common.syscalls.storage_write.Args", - "members": { - "address": { - "cairo_type": "felt", - "offset": 0 - }, - "value": { - "cairo_type": "felt", - "offset": 1 - } - }, - "size": 2, - "type": "struct" - }, - "starkware.starknet.common.syscalls.storage_write.ImplicitArgs": { - "full_name": "starkware.starknet.common.syscalls.storage_write.ImplicitArgs", - "members": { - "syscall_ptr": { - "cairo_type": "felt*", - "offset": 0 - } - }, - "size": 1, - "type": "struct" - }, - "starkware.starknet.common.syscalls.storage_write.Return": { - "cairo_type": "()", - "type": "type_definition" - }, - "starkware.starknet.common.syscalls.storage_write.SIZEOF_LOCALS": { - "type": "const", - "value": 0 - }, - "starkware.starknet.common.syscalls.storage_write.syscall_ptr": { - "cairo_type": "felt*", - "full_name": "starkware.starknet.common.syscalls.storage_write.syscall_ptr", - "references": [ - { - "ap_tracking_data": { - "group": 6, - "offset": 0 - }, - "pc": 40, - "value": "[cast(fp + (-5), felt**)]" - }, - { - "ap_tracking_data": { - "group": 6, - "offset": 1 - }, - "pc": 45, - "value": "cast([fp + (-5)] + 3, felt*)" - } - ], - "type": "reference" - }, - "utils.string.HashBuiltin": { - "destination": "starkware.cairo.common.cairo_builtins.HashBuiltin", - "type": "alias" - }, - "utils.string._ascii_from_digit": { - "decorators": [], - "pc": 454, - "type": "function" - }, - "utils.string._ascii_from_digit.Args": { - "full_name": "utils.string._ascii_from_digit.Args", - "members": { - "digit": { - "cairo_type": "felt", - "offset": 0 - } - }, - "size": 1, - "type": "struct" - }, - "utils.string._ascii_from_digit.ImplicitArgs": { - "full_name": "utils.string._ascii_from_digit.ImplicitArgs", - "members": {}, - "size": 0, - "type": "struct" - }, - "utils.string._ascii_from_digit.Return": { - "cairo_type": "(ascii: felt)", - "type": "type_definition" - }, - "utils.string._ascii_from_digit.SIZEOF_LOCALS": { - "type": "const", - "value": 0 - }, - "utils.string._recurse_ascii_array_from_number": { - "decorators": [], - "pc": 457, - "type": "function" - }, - "utils.string._recurse_ascii_array_from_number.Args": { - "full_name": "utils.string._recurse_ascii_array_from_number.Args", - "members": { - "arr_ascii": { - "cairo_type": "felt*", - "offset": 2 - }, - "arr_ascii_len": { - "cairo_type": "felt", - "offset": 1 - }, - "remain": { - "cairo_type": "felt", - "offset": 0 - } - }, - "size": 3, - "type": "struct" - }, - "utils.string._recurse_ascii_array_from_number.ImplicitArgs": { - "full_name": "utils.string._recurse_ascii_array_from_number.ImplicitArgs", - "members": { - "range_check_ptr": { - "cairo_type": "felt", - "offset": 0 - } - }, - "size": 1, - "type": "struct" - }, - "utils.string._recurse_ascii_array_from_number.Return": { - "cairo_type": "(arr_ascii_final_len: felt)", - "type": "type_definition" - }, - "utils.string._recurse_ascii_array_from_number.SIZEOF_LOCALS": { - "type": "const", - "value": 0 - }, - "utils.string._recurse_ascii_from_ascii_array_inverse": { - "decorators": [], - "pc": 482, - "type": "function" - }, - "utils.string._recurse_ascii_from_ascii_array_inverse.Args": { - "full_name": "utils.string._recurse_ascii_from_ascii_array_inverse.Args", - "members": { - "arr": { - "cairo_type": "felt*", - "offset": 2 - }, - "ascii": { - "cairo_type": "felt", - "offset": 0 - }, - "idx": { - "cairo_type": "felt", - "offset": 3 - }, - "len": { - "cairo_type": "felt", - "offset": 1 - } - }, - "size": 4, - "type": "struct" - }, - "utils.string._recurse_ascii_from_ascii_array_inverse.ImplicitArgs": { - "full_name": "utils.string._recurse_ascii_from_ascii_array_inverse.ImplicitArgs", - "members": { - "range_check_ptr": { - "cairo_type": "felt", - "offset": 0 - } - }, - "size": 1, - "type": "struct" - }, - "utils.string._recurse_ascii_from_ascii_array_inverse.Return": { - "cairo_type": "(ascii_final: felt)", - "type": "type_definition" - }, - "utils.string._recurse_ascii_from_ascii_array_inverse.SIZEOF_LOCALS": { - "type": "const", - "value": 0 - }, - "utils.string.abs_value": { - "destination": "starkware.cairo.common.math.abs_value", - "type": "alias" - }, - "utils.string.alloc": { - "destination": "starkware.cairo.common.alloc.alloc", - "type": "alias" - }, - "utils.string.is_le": { - "destination": "starkware.cairo.common.math_cmp.is_le", - "type": "alias" - }, - "utils.string.sign": { - "destination": "starkware.cairo.common.math.sign", - "type": "alias" - }, - "utils.string.str": { - "decorators": [], - "pc": 411, - "type": "function" - }, - "utils.string.str.Args": { - "full_name": "utils.string.str.Args", - "members": { - "num": { - "cairo_type": "felt", - "offset": 0 - } - }, - "size": 1, - "type": "struct" - }, - "utils.string.str.ImplicitArgs": { - "full_name": "utils.string.str.ImplicitArgs", - "members": { - "range_check_ptr": { - "cairo_type": "felt", - "offset": 0 - } - }, - "size": 1, - "type": "struct" - }, - "utils.string.str.Return": { - "cairo_type": "(literal: felt)", - "type": "type_definition" - }, - "utils.string.str.SIZEOF_LOCALS": { - "type": "const", - "value": 2 - }, - "utils.string.unsigned_div_rem": { - "destination": "starkware.cairo.common.math.unsigned_div_rem", - "type": "alias" - } - }, - "main_scope": "__main__", - "prime": "0x800000000000011000000000000000000000000000000000000000000000001", - "reference_manager": { - "references": [ - { - "ap_tracking_data": { - "group": 2, - "offset": 0 - }, - "pc": 9, - "value": "[cast(fp + (-3), felt*)]" - }, - { - "ap_tracking_data": { - "group": 2, - "offset": 3 - }, - "pc": 16, - "value": "[cast(ap, felt*)]" - }, - { - "ap_tracking_data": { - "group": 4, - "offset": 0 - }, - "pc": 25, - "value": "[cast(fp + (-3), felt**)]" - }, - { - "ap_tracking_data": { - "group": 5, - "offset": 0 - }, - "pc": 32, - "value": "[cast(fp + (-4), felt**)]" - }, - { - "ap_tracking_data": { - "group": 6, - "offset": 0 - }, - "pc": 40, - "value": "[cast(fp + (-5), felt**)]" - }, - { - "ap_tracking_data": { - "group": 7, - "offset": 0 - }, - "pc": 48, - "value": "[cast(fp + (-7), felt**)]" - }, - { - "ap_tracking_data": { - "group": 8, - "offset": 0 - }, - "pc": 58, - "value": "[cast(fp + (-3), felt*)]" - }, - { - "ap_tracking_data": { - "group": 9, - "offset": 0 - }, - "pc": 63, - "value": "[cast(fp + (-3), felt*)]" - }, - { - "ap_tracking_data": { - "group": 11, - "offset": 0 - }, - "pc": 72, - "value": "[cast(fp + (-3), felt*)]" - }, - { - "ap_tracking_data": { - "group": 11, - "offset": 0 - }, - "pc": 72, - "value": "[cast([fp + (-4)], felt*)]" - }, - { - "ap_tracking_data": { - "group": 11, - "offset": 0 - }, - "pc": 72, - "value": "[cast([fp + (-4)] + 1, felt*)]" - }, - { - "ap_tracking_data": { - "group": 12, - "offset": 0 - }, - "pc": 85, - "value": "[cast(fp + (-3), felt*)]" - }, - { - "ap_tracking_data": { - "group": 12, - "offset": 0 - }, - "pc": 85, - "value": "[cast([fp + (-4)], felt*)]" - }, - { - "ap_tracking_data": { - "group": 12, - "offset": 0 - }, - "pc": 85, - "value": "[cast([fp + (-4)] + 1, felt*)]" - }, - { - "ap_tracking_data": { - "group": 13, - "offset": 0 - }, - "pc": 114, - "value": "[cast(fp + (-4), felt*)]" - }, - { - "ap_tracking_data": { - "group": 13, - "offset": 0 - }, - "pc": 114, - "value": "[cast(fp + (-3), felt*)]" - }, - { - "ap_tracking_data": { - "group": 13, - "offset": 0 - }, - "pc": 114, - "value": "[cast(fp + (-5), felt*)]" - }, - { - "ap_tracking_data": { - "group": 14, - "offset": 0 - }, - "pc": 159, - "value": "[cast(fp + (-3), felt*)]" - }, - { - "ap_tracking_data": { - "group": 14, - "offset": 1 - }, - "pc": 161, - "value": "[cast(ap + (-1), felt*)]" - }, - { - "ap_tracking_data": { - "group": 15, - "offset": 0 - }, - "pc": 174, - "value": "[cast(fp + (-3), felt*)]" - }, - { - "ap_tracking_data": { - "group": 15, - "offset": 1 - }, - "pc": 184, - "value": "[cast(ap + (-1), felt*)]" - }, - { - "ap_tracking_data": { - "group": 16, - "offset": 0 - }, - "pc": 202, - "value": "[cast(fp + (-4), felt*)]" - }, - { - "ap_tracking_data": { - "group": 16, - "offset": 0 - }, - "pc": 202, - "value": "[cast(fp + (-3), felt*)]" - }, - { - "ap_tracking_data": { - "group": 16, - "offset": 0 - }, - "pc": 202, - "value": "[cast([fp + (-5)], felt*)]" - }, - { - "ap_tracking_data": { - "group": 16, - "offset": 0 - }, - "pc": 202, - "value": "[cast([fp + (-5)] + 1, felt*)]" - }, - { - "ap_tracking_data": { - "group": 17, - "offset": 0 - }, - "pc": 217, - "value": "[cast(fp + (-3), felt*)]" - }, - { - "ap_tracking_data": { - "group": 17, - "offset": 1 - }, - "pc": 219, - "value": "[cast(ap + (-1), felt*)]" - }, - { - "ap_tracking_data": { - "group": 17, - "offset": 2 - }, - "pc": 237, - "value": "[cast(ap + (-1), felt*)]" - }, - { - "ap_tracking_data": { - "group": 31, - "offset": 0 - }, - "pc": 373, - "value": "[cast(fp + (-3), felt*)]" - } - ] - } - } -} diff --git a/packages/starksheet-cairo/build/DustyPilotRenderer_abi.json b/packages/starksheet-cairo/build/DustyPilotRenderer_abi.json deleted file mode 100644 index cab7aa50..00000000 --- a/packages/starksheet-cairo/build/DustyPilotRenderer_abi.json +++ /dev/null @@ -1,111 +0,0 @@ -[ - { - "data": [ - { - "name": "previousOwner", - "type": "felt" - }, - { - "name": "newOwner", - "type": "felt" - } - ], - "keys": [], - "name": "OwnershipTransferred", - "type": "event" - }, - { - "inputs": [], - "name": "getOwner", - "outputs": [ - { - "name": "owner", - "type": "felt" - } - ], - "stateMutability": "view", - "type": "function" - }, - { - "inputs": [], - "name": "getThresholds", - "outputs": [ - { - "name": "thresholds_len", - "type": "felt" - }, - { - "name": "thresholds", - "type": "felt*" - } - ], - "stateMutability": "view", - "type": "function" - }, - { - "inputs": [ - { - "name": "thresholds_len", - "type": "felt" - }, - { - "name": "thresholds", - "type": "felt*" - } - ], - "name": "setThresholds", - "outputs": [], - "type": "function" - }, - { - "inputs": [ - { - "name": "new_owner", - "type": "felt" - } - ], - "name": "transferOwnership", - "outputs": [], - "type": "function" - }, - { - "inputs": [ - { - "name": "owner", - "type": "felt" - } - ], - "name": "initialize", - "outputs": [], - "type": "function" - }, - { - "inputs": [ - { - "name": "token_id", - "type": "felt" - }, - { - "name": "value", - "type": "felt" - }, - { - "name": "name", - "type": "felt" - } - ], - "name": "token_uri", - "outputs": [ - { - "name": "token_uri_len", - "type": "felt" - }, - { - "name": "token_uri", - "type": "felt*" - } - ], - "stateMutability": "view", - "type": "function" - } -] diff --git a/packages/starksheet-cairo/build/DustyPilots.json b/packages/starksheet-cairo/build/DustyPilots.json deleted file mode 100644 index 82d1ae7d..00000000 --- a/packages/starksheet-cairo/build/DustyPilots.json +++ /dev/null @@ -1,169921 +0,0 @@ -{ - "abi": [ - { - "members": [ - { - "name": "low", - "offset": 0, - "type": "felt" - }, - { - "name": "high", - "offset": 1, - "type": "felt" - } - ], - "name": "Uint256", - "size": 2, - "type": "struct" - }, - { - "members": [ - { - "name": "id", - "offset": 0, - "type": "felt" - }, - { - "name": "owner", - "offset": 1, - "type": "felt" - }, - { - "name": "value", - "offset": 2, - "type": "felt" - } - ], - "name": "CellRendered", - "size": 3, - "type": "struct" - }, - { - "data": [ - { - "name": "previousOwner", - "type": "felt" - }, - { - "name": "newOwner", - "type": "felt" - } - ], - "keys": [], - "name": "OwnershipTransferred", - "type": "event" - }, - { - "data": [ - { - "name": "from_", - "type": "felt" - }, - { - "name": "to", - "type": "felt" - }, - { - "name": "tokenId", - "type": "Uint256" - } - ], - "keys": [], - "name": "Transfer", - "type": "event" - }, - { - "data": [ - { - "name": "owner", - "type": "felt" - }, - { - "name": "approved", - "type": "felt" - }, - { - "name": "tokenId", - "type": "Uint256" - } - ], - "keys": [], - "name": "Approval", - "type": "event" - }, - { - "data": [ - { - "name": "owner", - "type": "felt" - }, - { - "name": "operator", - "type": "felt" - }, - { - "name": "approved", - "type": "felt" - } - ], - "keys": [], - "name": "ApprovalForAll", - "type": "event" - }, - { - "data": [ - { - "name": "id", - "type": "felt" - }, - { - "name": "value", - "type": "felt" - }, - { - "name": "contract_address", - "type": "felt" - } - ], - "keys": [], - "name": "CellUpdated", - "type": "event" - }, - { - "inputs": [], - "name": "owner", - "outputs": [ - { - "name": "owner", - "type": "felt" - } - ], - "stateMutability": "view", - "type": "function" - }, - { - "inputs": [ - { - "name": "new_owner", - "type": "felt" - } - ], - "name": "transferOwnership", - "outputs": [], - "type": "function" - }, - { - "inputs": [ - { - "name": "max", - "type": "felt" - } - ], - "name": "setMaxPerWallet", - "outputs": [], - "type": "function" - }, - { - "inputs": [], - "name": "getMaxPerWallet", - "outputs": [ - { - "name": "max", - "type": "felt" - } - ], - "stateMutability": "view", - "type": "function" - }, - { - "inputs": [ - { - "name": "n_row", - "type": "felt" - } - ], - "name": "setNRow", - "outputs": [], - "type": "function" - }, - { - "inputs": [], - "name": "getNRow", - "outputs": [ - { - "name": "n_row", - "type": "felt" - } - ], - "stateMutability": "view", - "type": "function" - }, - { - "inputs": [ - { - "name": "address", - "type": "felt" - } - ], - "name": "setCellRenderer", - "outputs": [], - "type": "function" - }, - { - "inputs": [], - "name": "getCellRenderer", - "outputs": [ - { - "name": "address", - "type": "felt" - } - ], - "stateMutability": "view", - "type": "function" - }, - { - "inputs": [ - { - "name": "root", - "type": "felt" - } - ], - "name": "setMerkleRoot", - "outputs": [], - "type": "function" - }, - { - "inputs": [], - "name": "openMint", - "outputs": [], - "type": "function" - }, - { - "inputs": [], - "name": "closeMint", - "outputs": [], - "type": "function" - }, - { - "inputs": [], - "name": "getMerkleRoot", - "outputs": [ - { - "name": "root", - "type": "felt" - } - ], - "stateMutability": "view", - "type": "function" - }, - { - "inputs": [ - { - "name": "tokenId", - "type": "felt" - }, - { - "name": "contractAddress", - "type": "felt" - }, - { - "name": "value", - "type": "felt" - }, - { - "name": "cell_calldata_len", - "type": "felt" - }, - { - "name": "cell_calldata", - "type": "felt*" - } - ], - "name": "setCell", - "outputs": [], - "type": "function" - }, - { - "inputs": [ - { - "name": "tokenId", - "type": "felt" - } - ], - "name": "getCell", - "outputs": [ - { - "name": "contractAddress", - "type": "felt" - }, - { - "name": "value", - "type": "felt" - }, - { - "name": "cell_calldata_len", - "type": "felt" - }, - { - "name": "cell_calldata", - "type": "felt*" - } - ], - "stateMutability": "view", - "type": "function" - }, - { - "inputs": [ - { - "name": "tokenId", - "type": "felt" - } - ], - "name": "renderCell", - "outputs": [ - { - "name": "cell", - "type": "CellRendered" - } - ], - "stateMutability": "view", - "type": "function" - }, - { - "inputs": [ - { - "name": "tokenId", - "type": "felt" - } - ], - "name": "renderCellValue", - "outputs": [ - { - "name": "value", - "type": "felt" - } - ], - "stateMutability": "view", - "type": "function" - }, - { - "inputs": [], - "name": "renderGrid", - "outputs": [ - { - "name": "cells_len", - "type": "felt" - }, - { - "name": "cells", - "type": "CellRendered*" - } - ], - "stateMutability": "view", - "type": "function" - }, - { - "inputs": [ - { - "name": "tokenId", - "type": "Uint256" - }, - { - "name": "proof_len", - "type": "felt" - }, - { - "name": "proof", - "type": "felt*" - } - ], - "name": "mintPublic", - "outputs": [], - "type": "function" - }, - { - "inputs": [ - { - "name": "tokenId", - "type": "Uint256" - }, - { - "name": "proof_len", - "type": "felt" - }, - { - "name": "proof", - "type": "felt*" - }, - { - "name": "contractAddress", - "type": "felt" - }, - { - "name": "value", - "type": "felt" - }, - { - "name": "cellCalldata_len", - "type": "felt" - }, - { - "name": "cellCalldata", - "type": "felt*" - } - ], - "name": "mintAndSetPublic", - "outputs": [], - "type": "function" - }, - { - "inputs": [ - { - "name": "tokenId", - "type": "Uint256" - } - ], - "name": "tokenURI", - "outputs": [ - { - "name": "token_uri_len", - "type": "felt" - }, - { - "name": "token_uri", - "type": "felt*" - } - ], - "stateMutability": "view", - "type": "function" - }, - { - "inputs": [], - "name": "contractURI", - "outputs": [ - { - "name": "contractURI_len", - "type": "felt" - }, - { - "name": "contractURI", - "type": "felt*" - } - ], - "stateMutability": "view", - "type": "function" - }, - { - "inputs": [ - { - "name": "name", - "type": "felt" - }, - { - "name": "symbol", - "type": "felt" - }, - { - "name": "owner", - "type": "felt" - }, - { - "name": "merkle_root", - "type": "felt" - }, - { - "name": "max_per_wallet", - "type": "felt" - }, - { - "name": "renderer_address", - "type": "felt" - } - ], - "name": "initialize", - "outputs": [], - "type": "function" - }, - { - "inputs": [], - "name": "is_initialized", - "outputs": [ - { - "name": "res", - "type": "felt" - } - ], - "stateMutability": "view", - "type": "function" - }, - { - "inputs": [], - "name": "totalSupply", - "outputs": [ - { - "name": "totalSupply", - "type": "Uint256" - } - ], - "stateMutability": "view", - "type": "function" - }, - { - "inputs": [ - { - "name": "index", - "type": "Uint256" - } - ], - "name": "tokenByIndex", - "outputs": [ - { - "name": "tokenId", - "type": "Uint256" - } - ], - "stateMutability": "view", - "type": "function" - }, - { - "inputs": [ - { - "name": "owner", - "type": "felt" - }, - { - "name": "index", - "type": "Uint256" - } - ], - "name": "tokenOfOwnerByIndex", - "outputs": [ - { - "name": "tokenId", - "type": "Uint256" - } - ], - "stateMutability": "view", - "type": "function" - }, - { - "inputs": [ - { - "name": "interfaceId", - "type": "felt" - } - ], - "name": "supportsInterface", - "outputs": [ - { - "name": "success", - "type": "felt" - } - ], - "stateMutability": "view", - "type": "function" - }, - { - "inputs": [], - "name": "name", - "outputs": [ - { - "name": "name", - "type": "felt" - } - ], - "stateMutability": "view", - "type": "function" - }, - { - "inputs": [], - "name": "symbol", - "outputs": [ - { - "name": "symbol", - "type": "felt" - } - ], - "stateMutability": "view", - "type": "function" - }, - { - "inputs": [ - { - "name": "owner", - "type": "felt" - } - ], - "name": "balanceOf", - "outputs": [ - { - "name": "balance", - "type": "Uint256" - } - ], - "stateMutability": "view", - "type": "function" - }, - { - "inputs": [ - { - "name": "tokenId", - "type": "Uint256" - } - ], - "name": "ownerOf", - "outputs": [ - { - "name": "owner", - "type": "felt" - } - ], - "stateMutability": "view", - "type": "function" - }, - { - "inputs": [ - { - "name": "tokenId", - "type": "Uint256" - } - ], - "name": "getApproved", - "outputs": [ - { - "name": "approved", - "type": "felt" - } - ], - "stateMutability": "view", - "type": "function" - }, - { - "inputs": [ - { - "name": "owner", - "type": "felt" - }, - { - "name": "operator", - "type": "felt" - } - ], - "name": "isApprovedForAll", - "outputs": [ - { - "name": "isApproved", - "type": "felt" - } - ], - "stateMutability": "view", - "type": "function" - }, - { - "inputs": [ - { - "name": "to", - "type": "felt" - }, - { - "name": "tokenId", - "type": "Uint256" - } - ], - "name": "approve", - "outputs": [], - "type": "function" - }, - { - "inputs": [ - { - "name": "operator", - "type": "felt" - }, - { - "name": "approved", - "type": "felt" - } - ], - "name": "setApprovalForAll", - "outputs": [], - "type": "function" - }, - { - "inputs": [ - { - "name": "from_", - "type": "felt" - }, - { - "name": "to", - "type": "felt" - }, - { - "name": "tokenId", - "type": "Uint256" - } - ], - "name": "transferFrom", - "outputs": [], - "type": "function" - }, - { - "inputs": [ - { - "name": "from_", - "type": "felt" - }, - { - "name": "to", - "type": "felt" - }, - { - "name": "tokenId", - "type": "Uint256" - }, - { - "name": "data_len", - "type": "felt" - }, - { - "name": "data", - "type": "felt*" - } - ], - "name": "safeTransferFrom", - "outputs": [], - "type": "function" - }, - { - "inputs": [ - { - "name": "to", - "type": "felt" - }, - { - "name": "tokenId", - "type": "Uint256" - } - ], - "name": "mintOwner", - "outputs": [], - "type": "function" - }, - { - "inputs": [ - { - "name": "tokenId", - "type": "Uint256" - } - ], - "name": "burn", - "outputs": [], - "type": "function" - } - ], - "entry_points_by_type": { - "CONSTRUCTOR": [], - "EXTERNAL": [ - { - "offset": 3609, - "selector": "0x709c69d1e1e32576d4e1139cf648b409f1b40dac279c3dbe472f3b3f0dbc9" - }, - { - "offset": 4251, - "selector": "0x146338fd3ec3883c0bc256d485a88fc5136ff6ad458519e376320aa2c30d78" - }, - { - "offset": 3633, - "selector": "0x23392a6cac48e36e9d15eb1d75d05f4a2a41132a2c2bed22e587cd1f34fe9f" - }, - { - "offset": 4879, - "selector": "0x2962ba17806af798afa6eaf4aa8c93a9fb60a3e305045b6eea33435086cae9" - }, - { - "offset": 5146, - "selector": "0x3e8cfd4725c1e28fa4a6e3e468b4fcf75367166b850ac5f04e33ec843e82c1" - }, - { - "offset": 3826, - "selector": "0x40c1ce731edc7dbc678f85e582974962e082e218fced71f519208d27cc21d3" - }, - { - "offset": 5036, - "selector": "0x41b033f4a31df8067c24d1e9b550a2ce75fd4a29e1147af9752174f0e6cb20" - }, - { - "offset": 3747, - "selector": "0x61069ab48af4ff62df3c06eed149a18bab9d4d458d7f561697fa3f1dcd0216" - }, - { - "offset": 3796, - "selector": "0x6b3d0a0f7b9781c369612c5a511f0d40d3253cfefbd708ce2cb847ff0da078" - }, - { - "offset": 4558, - "selector": "0x79dc0da7c54b95f10aa182ad0a46400db63156920adb65eca2654c0945a463" - }, - { - "offset": 4632, - "selector": "0x80aa9fdbfaf9615e4afc7f5f722e265daca5ccc655360fa5ccacf9c267936d" - }, - { - "offset": 4040, - "selector": "0x8dbb73a01d4117752f0057c252a1c2ed409db2571de51769a2106ba3e2d873" - }, - { - "offset": 4002, - "selector": "0x9dca2323803469f6a72da859c203c6d859a4a4ccb341ea1469495824818611" - }, - { - "offset": 4915, - "selector": "0xb180e2fe9f14914416216da76338ac0beb980443725c802af615f8431fdb1e" - }, - { - "offset": 3936, - "selector": "0xfac585db5ef45ccaa86a35ceb98608d4adcca66ea379ed56d369be16f0ddf9" - }, - { - "offset": 5114, - "selector": "0x10a4ed8ba35088f7113830a4ac12b5369a08a3ffa257ebb7d99a725e6200c08" - }, - { - "offset": 4670, - "selector": "0x10a6a6f98a84ccc0dc2dccd6988c77cb625e25df66f9482b8fca3a82f50cf50" - }, - { - "offset": 4596, - "selector": "0x1199477cb0ce72bf66c6d439da76bc568947cb9aad287402ba7b93353c94092" - }, - { - "offset": 4324, - "selector": "0x12a7823b0c6bee58f8c694888f32f862c6584caa8afa0242de046d298ba684d" - }, - { - "offset": 3549, - "selector": "0x14a390f291e2e1f29874769efdef47ddad94d76f77ff516fad206a385e8995f" - }, - { - "offset": 4506, - "selector": "0x1530b1e3e1fe59556d7ac7104ced650bd036802735b613ada407ce4a05d653c" - }, - { - "offset": 5069, - "selector": "0x19d59d013d4aa1a8b1ce4c8299086f070733b453c02d0dc46e735edc04d6444" - }, - { - "offset": 3527, - "selector": "0x2016836a56b71f0d02689e69e326f4f4c1b9057164ef592671cf0d37c8040c0" - }, - { - "offset": 4812, - "selector": "0x216b05c387bab9ac31918a3e61672f4618601f3c598a2f3f2710f37053e1ea4" - }, - { - "offset": 4979, - "selector": "0x219209e083275171774dab1df80982e9df2096516f06319c5c6d71ae0a8480c" - }, - { - "offset": 4951, - "selector": "0x21cdf9aedfed41bc4485ae779fda471feca12075d9127a0fc70ac6b3b3d9c30" - }, - { - "offset": 4749, - "selector": "0x29e211664c0b63c79638fbea474206ca74016b3e9a3dc4f9ac300ffd8bdf2cd" - }, - { - "offset": 5007, - "selector": "0x2d4c8ea4c8fb9f571d1f6f9b7692fff8e5ceaf73b1df98e7da8c1109b39ae9a" - }, - { - "offset": 3576, - "selector": "0x2e3fe88dce63950b23b7e6722c7db320036e484f62e238e573a7bd47623925c" - }, - { - "offset": 4844, - "selector": "0x2e4263afad30923c891518314c3c95dbe830a16874e8abc5777a9a20b54c76e" - }, - { - "offset": 4184, - "selector": "0x2e6ac22a3db917e01e9578e58d0fb4a62900dc236c6e2b1a2f4608d5ba2892b" - }, - { - "offset": 3878, - "selector": "0x30105034d5800a3c0345821011267bf85c0f7c0ec15f87a8365ddcb4c6d7632" - }, - { - "offset": 4122, - "selector": "0x327bfdf8e5449597c3bd96e8ca4523c06933fcf8a347ddf8c992210de351c76" - }, - { - "offset": 3723, - "selector": "0x32e515e407797d56da7e86b1b00d354f7b7ac51cd7d9289dee44c6c29581782" - }, - { - "offset": 3690, - "selector": "0x34cd279f1c4532e33e6b1c151b7d98c0f0ccdcf6cfec9882874ba196ded3a8c" - }, - { - "offset": 4713, - "selector": "0x34e45f1a39063678f3d4c888e6fa7fd9f96160b4bebf14bf5f54845ead7fb79" - }, - { - "offset": 3773, - "selector": "0x353ad1b041e37aa7ab682ae5c0ac964b73623fd5c7362cda245d7fd2085d24b" - }, - { - "offset": 4782, - "selector": "0x361458367e696363fbcc70777d07ebbd2394e89fd0adcaf147faccd1d294d60" - }, - { - "offset": 3666, - "selector": "0x3bf8db3f4ac7cd4ce3fbef148e1a6605871b3b6a66db5374b7fa5585df46677" - } - ], - "L1_HANDLER": [] - }, - "program": { - "attributes": [ - { - "accessible_scopes": [ - "openzeppelin.access.ownable.library", - "openzeppelin.access.ownable.library.Ownable", - "openzeppelin.access.ownable.library.Ownable.assert_only_owner" - ], - "end_pc": 297, - "flow_tracking_data": { - "ap_tracking": { - "group": 25, - "offset": 6 - }, - "reference_ids": {} - }, - "name": "error_message", - "start_pc": 295, - "value": "Ownable: caller is the zero address" - }, - { - "accessible_scopes": [ - "openzeppelin.access.ownable.library", - "openzeppelin.access.ownable.library.Ownable", - "openzeppelin.access.ownable.library.Ownable.assert_only_owner" - ], - "end_pc": 298, - "flow_tracking_data": { - "ap_tracking": { - "group": 25, - "offset": 8 - }, - "reference_ids": {} - }, - "name": "error_message", - "start_pc": 297, - "value": "Ownable: caller is not the owner" - }, - { - "accessible_scopes": [ - "openzeppelin.access.ownable.library", - "openzeppelin.access.ownable.library.Ownable", - "openzeppelin.access.ownable.library.Ownable.transfer_ownership" - ], - "end_pc": 311, - "flow_tracking_data": { - "ap_tracking": { - "group": 27, - "offset": 0 - }, - "reference_ids": {} - }, - "name": "error_message", - "start_pc": 308, - "value": "Ownable: new owner is the zero address" - }, - { - "accessible_scopes": [ - "starkware.cairo.common.uint256", - "starkware.cairo.common.uint256.assert_uint256_le" - ], - "end_pc": 555, - "flow_tracking_data": { - "ap_tracking": { - "group": 45, - "offset": 50 - }, - "reference_ids": {} - }, - "name": "error_message", - "start_pc": 553, - "value": "assert_uint256_le failed" - }, - { - "accessible_scopes": [ - "openzeppelin.introspection.erc165.library", - "openzeppelin.introspection.erc165.library.ERC165", - "openzeppelin.introspection.erc165.library.ERC165.register_interface" - ], - "end_pc": 620, - "flow_tracking_data": { - "ap_tracking": { - "group": 50, - "offset": 0 - }, - "reference_ids": {} - }, - "name": "error_message", - "start_pc": 615, - "value": "ERC165: invalid interface id" - }, - { - "accessible_scopes": [ - "openzeppelin.security.safemath.library", - "openzeppelin.security.safemath.library.SafeUint256", - "openzeppelin.security.safemath.library.SafeUint256.add" - ], - "end_pc": 669, - "flow_tracking_data": { - "ap_tracking": { - "group": 52, - "offset": 35 - }, - "reference_ids": {} - }, - "name": "error_message", - "start_pc": 667, - "value": "SafeUint256: addition overflow" - }, - { - "accessible_scopes": [ - "openzeppelin.security.safemath.library", - "openzeppelin.security.safemath.library.SafeUint256", - "openzeppelin.security.safemath.library.SafeUint256.sub_le" - ], - "end_pc": 694, - "flow_tracking_data": { - "ap_tracking": { - "group": 53, - "offset": 60 - }, - "reference_ids": {} - }, - "name": "error_message", - "start_pc": 692, - "value": "SafeUint256: subtraction overflow" - }, - { - "accessible_scopes": [ - "openzeppelin.token.erc721.library", - "openzeppelin.token.erc721.library.ERC721", - "openzeppelin.token.erc721.library.ERC721.balance_of" - ], - "end_pc": 1088, - "flow_tracking_data": { - "ap_tracking": { - "group": 78, - "offset": 0 - }, - "reference_ids": {} - }, - "name": "error_message", - "start_pc": 1085, - "value": "ERC721: balance query for the zero address" - }, - { - "accessible_scopes": [ - "openzeppelin.token.erc721.library", - "openzeppelin.token.erc721.library.ERC721", - "openzeppelin.token.erc721.library.ERC721.owner_of" - ], - "end_pc": 1100, - "flow_tracking_data": { - "ap_tracking": { - "group": 79, - "offset": 0 - }, - "reference_ids": {} - }, - "name": "error_message", - "start_pc": 1095, - "value": "ERC721: token_id is not a valid Uint256" - }, - { - "accessible_scopes": [ - "openzeppelin.token.erc721.library", - "openzeppelin.token.erc721.library.ERC721", - "openzeppelin.token.erc721.library.ERC721.owner_of" - ], - "end_pc": 1109, - "flow_tracking_data": { - "ap_tracking": { - "group": 79, - "offset": 74 - }, - "reference_ids": {} - }, - "name": "error_message", - "start_pc": 1107, - "value": "ERC721: owner query for nonexistent token" - }, - { - "accessible_scopes": [ - "openzeppelin.token.erc721.library", - "openzeppelin.token.erc721.library.ERC721", - "openzeppelin.token.erc721.library.ERC721.get_approved" - ], - "end_pc": 1119, - "flow_tracking_data": { - "ap_tracking": { - "group": 80, - "offset": 0 - }, - "reference_ids": {} - }, - "name": "error_message", - "start_pc": 1114, - "value": "ERC721: token_id is not a valid Uint256" - }, - { - "accessible_scopes": [ - "openzeppelin.token.erc721.library", - "openzeppelin.token.erc721.library.ERC721", - "openzeppelin.token.erc721.library.ERC721.get_approved" - ], - "end_pc": 1128, - "flow_tracking_data": { - "ap_tracking": { - "group": 81, - "offset": 0 - }, - "reference_ids": {} - }, - "name": "error_message", - "start_pc": 1126, - "value": "ERC721: approved query for nonexistent token" - }, - { - "accessible_scopes": [ - "openzeppelin.token.erc721.library", - "openzeppelin.token.erc721.library.ERC721", - "openzeppelin.token.erc721.library.ERC721.approve" - ], - "end_pc": 1149, - "flow_tracking_data": { - "ap_tracking": { - "group": 83, - "offset": 0 - }, - "reference_ids": {} - }, - "name": "error_mesage", - "start_pc": 1144, - "value": "ERC721: token_id is not a valid Uint256" - }, - { - "accessible_scopes": [ - "openzeppelin.token.erc721.library", - "openzeppelin.token.erc721.library.ERC721", - "openzeppelin.token.erc721.library.ERC721.approve" - ], - "end_pc": 1154, - "flow_tracking_data": { - "ap_tracking": { - "group": 83, - "offset": 12 - }, - "reference_ids": {} - }, - "name": "error_message", - "start_pc": 1152, - "value": "ERC721: cannot approve from the zero address" - }, - { - "accessible_scopes": [ - "openzeppelin.token.erc721.library", - "openzeppelin.token.erc721.library.ERC721", - "openzeppelin.token.erc721.library.ERC721.approve" - ], - "end_pc": 1164, - "flow_tracking_data": { - "ap_tracking": { - "group": 83, - "offset": 82 - }, - "reference_ids": {} - }, - "name": "error_message", - "start_pc": 1161, - "value": "ERC721: approval to current owner" - }, - { - "accessible_scopes": [ - "openzeppelin.token.erc721.library", - "openzeppelin.token.erc721.library.ERC721", - "openzeppelin.token.erc721.library.ERC721.approve" - ], - "end_pc": 1188, - "flow_tracking_data": { - "ap_tracking": { - "group": 83, - "offset": 155 - }, - "reference_ids": {} - }, - "name": "error_message", - "start_pc": 1186, - "value": "ERC721: approve caller is not owner nor approved for all" - }, - { - "accessible_scopes": [ - "openzeppelin.token.erc721.library", - "openzeppelin.token.erc721.library.ERC721", - "openzeppelin.token.erc721.library.ERC721.set_approval_for_all" - ], - "end_pc": 1206, - "flow_tracking_data": { - "ap_tracking": { - "group": 86, - "offset": 6 - }, - "reference_ids": {} - }, - "name": "error_message", - "start_pc": 1203, - "value": "ERC721: either the caller or operator is the zero address" - }, - { - "accessible_scopes": [ - "openzeppelin.token.erc721.library", - "openzeppelin.token.erc721.library.ERC721", - "openzeppelin.token.erc721.library.ERC721.set_approval_for_all" - ], - "end_pc": 1210, - "flow_tracking_data": { - "ap_tracking": { - "group": 86, - "offset": 9 - }, - "reference_ids": {} - }, - "name": "error_message", - "start_pc": 1206, - "value": "ERC721: approve to caller" - }, - { - "accessible_scopes": [ - "openzeppelin.token.erc721.library", - "openzeppelin.token.erc721.library.ERC721", - "openzeppelin.token.erc721.library.ERC721.set_approval_for_all" - ], - "end_pc": 1216, - "flow_tracking_data": { - "ap_tracking": { - "group": 86, - "offset": 14 - }, - "reference_ids": {} - }, - "name": "error_message", - "start_pc": 1210, - "value": "ERC721: approved is not a Cairo boolean" - }, - { - "accessible_scopes": [ - "openzeppelin.token.erc721.library", - "openzeppelin.token.erc721.library.ERC721", - "openzeppelin.token.erc721.library.ERC721.transfer_from" - ], - "end_pc": 1242, - "flow_tracking_data": { - "ap_tracking": { - "group": 87, - "offset": 1 - }, - "reference_ids": {} - }, - "name": "error_message", - "start_pc": 1237, - "value": "ERC721: token_id is not a valid Uint256" - }, - { - "accessible_scopes": [ - "openzeppelin.token.erc721.library", - "openzeppelin.token.erc721.library.ERC721", - "openzeppelin.token.erc721.library.ERC721.transfer_from" - ], - "end_pc": 1257, - "flow_tracking_data": { - "ap_tracking": { - "group": 88, - "offset": 0 - }, - "reference_ids": {} - }, - "name": "error_message", - "start_pc": 1254, - "value": "ERC721: either is not approved or the caller is the zero address" - }, - { - "accessible_scopes": [ - "openzeppelin.token.erc721.library", - "openzeppelin.token.erc721.library.ERC721", - "openzeppelin.token.erc721.library.ERC721.safe_transfer_from" - ], - "end_pc": 1277, - "flow_tracking_data": { - "ap_tracking": { - "group": 90, - "offset": 1 - }, - "reference_ids": {} - }, - "name": "error_message", - "start_pc": 1272, - "value": "ERC721: token_id is not a valid Uint256" - }, - { - "accessible_scopes": [ - "openzeppelin.token.erc721.library", - "openzeppelin.token.erc721.library.ERC721", - "openzeppelin.token.erc721.library.ERC721.safe_transfer_from" - ], - "end_pc": 1292, - "flow_tracking_data": { - "ap_tracking": { - "group": 91, - "offset": 0 - }, - "reference_ids": {} - }, - "name": "error_message", - "start_pc": 1289, - "value": "ERC721: either is not approved or the caller is the zero address" - }, - { - "accessible_scopes": [ - "openzeppelin.token.erc721.library", - "openzeppelin.token.erc721.library.ERC721", - "openzeppelin.token.erc721.library.ERC721.assert_only_token_owner" - ], - "end_pc": 1323, - "flow_tracking_data": { - "ap_tracking": { - "group": 93, - "offset": 99 - }, - "reference_ids": {} - }, - "name": "error_message", - "start_pc": 1322, - "value": "ERC721: caller is not the token owner" - }, - { - "accessible_scopes": [ - "openzeppelin.token.erc721.library", - "openzeppelin.token.erc721.library.ERC721", - "openzeppelin.token.erc721.library.ERC721._is_approved_or_owner" - ], - "end_pc": 1338, - "flow_tracking_data": { - "ap_tracking": { - "group": 95, - "offset": 0 - }, - "reference_ids": {} - }, - "name": "error_message", - "start_pc": 1336, - "value": "ERC721: token id does not exist" - }, - { - "accessible_scopes": [ - "openzeppelin.token.erc721.library", - "openzeppelin.token.erc721.library.ERC721", - "openzeppelin.token.erc721.library.ERC721._transfer" - ], - "end_pc": 1447, - "flow_tracking_data": { - "ap_tracking": { - "group": 99, - "offset": 87 - }, - "reference_ids": {} - }, - "name": "error_message", - "start_pc": 1446, - "value": "ERC721: transfer from incorrect owner" - }, - { - "accessible_scopes": [ - "openzeppelin.token.erc721.library", - "openzeppelin.token.erc721.library.ERC721", - "openzeppelin.token.erc721.library.ERC721._transfer" - ], - "end_pc": 1450, - "flow_tracking_data": { - "ap_tracking": { - "group": 99, - "offset": 87 - }, - "reference_ids": {} - }, - "name": "error_message", - "start_pc": 1447, - "value": "ERC721: cannot transfer to the zero address" - }, - { - "accessible_scopes": [ - "openzeppelin.token.erc721.library", - "openzeppelin.token.erc721.library.ERC721", - "openzeppelin.token.erc721.library.ERC721._safe_transfer" - ], - "end_pc": 1529, - "flow_tracking_data": { - "ap_tracking": { - "group": 101, - "offset": 0 - }, - "reference_ids": {} - }, - "name": "error_message", - "start_pc": 1527, - "value": "ERC721: transfer to non ERC721Receiver implementer" - }, - { - "accessible_scopes": [ - "openzeppelin.token.erc721.library", - "openzeppelin.token.erc721.library.ERC721", - "openzeppelin.token.erc721.library.ERC721._mint" - ], - "end_pc": 1538, - "flow_tracking_data": { - "ap_tracking": { - "group": 102, - "offset": 0 - }, - "reference_ids": {} - }, - "name": "error_message", - "start_pc": 1533, - "value": "ERC721: token_id is not a valid Uint256" - }, - { - "accessible_scopes": [ - "openzeppelin.token.erc721.library", - "openzeppelin.token.erc721.library.ERC721", - "openzeppelin.token.erc721.library.ERC721._mint" - ], - "end_pc": 1541, - "flow_tracking_data": { - "ap_tracking": { - "group": 102, - "offset": 6 - }, - "reference_ids": {} - }, - "name": "error_message", - "start_pc": 1538, - "value": "ERC721: cannot mint to the zero address" - }, - { - "accessible_scopes": [ - "openzeppelin.token.erc721.library", - "openzeppelin.token.erc721.library.ERC721", - "openzeppelin.token.erc721.library.ERC721._mint" - ], - "end_pc": 1550, - "flow_tracking_data": { - "ap_tracking": { - "group": 102, - "offset": 88 - }, - "reference_ids": {} - }, - "name": "error_message", - "start_pc": 1548, - "value": "ERC721: token already minted" - }, - { - "accessible_scopes": [ - "openzeppelin.token.erc721.library", - "openzeppelin.token.erc721.library.ERC721", - "openzeppelin.token.erc721.library.ERC721._burn" - ], - "end_pc": 1595, - "flow_tracking_data": { - "ap_tracking": { - "group": 103, - "offset": 0 - }, - "reference_ids": {} - }, - "name": "error_message", - "start_pc": 1590, - "value": "ERC721: token_id is not a valid Uint256" - }, - { - "accessible_scopes": [ - "openzeppelin.token.erc721.library", - "openzeppelin.token.erc721.library._check_onERC721Received" - ], - "end_pc": 1674, - "flow_tracking_data": { - "ap_tracking": { - "group": 105, - "offset": 0 - }, - "reference_ids": {} - }, - "name": "error_message", - "start_pc": 1672, - "value": "ERC721: transfer to non ERC721Receiver implementer" - }, - { - "accessible_scopes": [ - "openzeppelin.token.erc721.enumerable.library", - "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable", - "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable.token_by_index" - ], - "end_pc": 2001, - "flow_tracking_data": { - "ap_tracking": { - "group": 123, - "offset": 82 - }, - "reference_ids": {} - }, - "name": "error_message", - "start_pc": 1999, - "value": "ERC721Enumerable: global index out of bounds" - }, - { - "accessible_scopes": [ - "openzeppelin.token.erc721.enumerable.library", - "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable", - "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable.token_of_owner_by_index" - ], - "end_pc": 2031, - "flow_tracking_data": { - "ap_tracking": { - "group": 124, - "offset": 124 - }, - "reference_ids": {} - }, - "name": "error_message", - "start_pc": 2029, - "value": "ERC721Enumerable: owner index out of bounds" - }, - { - "accessible_scopes": [ - "sheet.library", - "sheet.library.Sheet", - "sheet.library.Sheet.token_uri" - ], - "end_pc": 3100, - "flow_tracking_data": { - "ap_tracking": { - "group": 201, - "offset": 83 - }, - "reference_ids": {} - }, - "name": "error_message", - "start_pc": 3098, - "value": "ERC721: tokenURI query for nonexistent token" - }, - { - "accessible_scopes": [ - "sheet.library", - "sheet.library._assert_is_allowed" - ], - "end_pc": 3406, - "flow_tracking_data": { - "ap_tracking": { - "group": 218, - "offset": 0 - }, - "reference_ids": { - "sheet.library._assert_is_allowed.address": 57 - } - }, - "name": "error_message", - "start_pc": 3399, - "value": "mint: {address} is not allowed" - }, - { - "accessible_scopes": [ - "sheet.library", - "sheet.library._assert_does_not_exceed_allocation" - ], - "end_pc": 3436, - "flow_tracking_data": { - "ap_tracking": { - "group": 219, - "offset": 115 - }, - "reference_ids": { - "sheet.library._assert_does_not_exceed_allocation.address": 59, - "sheet.library._assert_does_not_exceed_allocation.allocation": 58 - } - }, - "name": "error_message", - "start_pc": 3429, - "value": "mint: user {address} exceeds allocation {allocation}" - }, - { - "accessible_scopes": [ - "sheet.library", - "sheet.library._assert_is_open" - ], - "end_pc": 3448, - "flow_tracking_data": { - "ap_tracking": { - "group": 220, - "offset": 0 - }, - "reference_ids": {} - }, - "name": "error_mesage", - "start_pc": 3441, - "value": "Mint is not open" - }, - { - "accessible_scopes": [ - "__main__", - "__main__", - "__main__.setCell" - ], - "end_pc": 3856, - "flow_tracking_data": { - "ap_tracking": { - "group": 270, - "offset": 12 - }, - "reference_ids": {} - }, - "name": "error_message", - "start_pc": 3847, - "value": "setCell: tokenId does not exist" - }, - { - "accessible_scopes": [ - "__main__", - "__main__", - "__main__.setCell" - ], - "end_pc": 3867, - "flow_tracking_data": { - "ap_tracking": { - "group": 270, - "offset": 91 - }, - "reference_ids": {} - }, - "name": "error_message", - "start_pc": 3856, - "value": "setCell: caller is not owner" - }, - { - "accessible_scopes": [ - "__main__", - "__main__", - "__main__.mintPublic" - ], - "end_pc": 4156, - "flow_tracking_data": { - "ap_tracking": { - "group": 300, - "offset": 0 - }, - "reference_ids": {} - }, - "name": "error_message", - "start_pc": 4141, - "value": "Token out of grid" - }, - { - "accessible_scopes": [ - "__main__", - "__main__", - "__main__.mintAndSetPublic" - ], - "end_pc": 4228, - "flow_tracking_data": { - "ap_tracking": { - "group": 305, - "offset": 0 - }, - "reference_ids": {} - }, - "name": "error_message", - "start_pc": 4213, - "value": "Token out of grid" - } - ], - "builtins": [ - "pedersen", - "range_check" - ], - "compiler_version": "0.11.0.2", - "data": [ - "0x40780017fff7fff", - "0x1", - "0x208b7fff7fff7ffe", - "0x400380007ffb7ffc", - "0x400380017ffb7ffd", - "0x482680017ffb8000", - "0x3", - "0x480280027ffb8000", - "0x208b7fff7fff7ffe", - "0x20780017fff7ffd", - "0x3", - "0x208b7fff7fff7ffe", - "0x480a7ffb7fff8000", - "0x480a7ffc7fff8000", - "0x480080007fff8000", - "0x400080007ffd7fff", - "0x482480017ffd8001", - "0x1", - "0x482480017ffd8001", - "0x1", - "0xa0680017fff7ffe", - "0x800000000000010fffffffffffffffffffffffffffffffffffffffffffffffb", - "0x402a7ffc7ffd7fff", - "0x208b7fff7fff7ffe", - "0x208b7fff7fff7ffe", - "0x480680017fff8000", - "0x43616c6c436f6e7472616374", - "0x400280007ff97fff", - "0x400380017ff97ffa", - "0x400380027ff97ffb", - "0x400380037ff97ffc", - "0x400380047ff97ffd", - "0x482680017ff98000", - "0x7", - "0x480280057ff98000", - "0x480280067ff98000", - "0x208b7fff7fff7ffe", - "0x480680017fff8000", - "0x47657443616c6c657241646472657373", - "0x400280007ffd7fff", - "0x482680017ffd8000", - "0x2", - "0x480280017ffd8000", - "0x208b7fff7fff7ffe", - "0x480680017fff8000", - "0x53746f7261676552656164", - "0x400280007ffc7fff", - "0x400380017ffc7ffd", - "0x482680017ffc8000", - "0x3", - "0x480280027ffc8000", - "0x208b7fff7fff7ffe", - "0x480680017fff8000", - "0x53746f726167655772697465", - "0x400280007ffb7fff", - "0x400380017ffb7ffc", - "0x400380027ffb7ffd", - "0x482680017ffb8000", - "0x3", - "0x208b7fff7fff7ffe", - "0x480680017fff8000", - "0x456d69744576656e74", - "0x400280007ff97fff", - "0x400380017ff97ffa", - "0x400380027ff97ffb", - "0x400380037ff97ffc", - "0x400380047ff97ffd", - "0x482680017ff98000", - "0x5", - "0x208b7fff7fff7ffe", - "0x20780017fff7ffd", - "0x4", - "0x400780017fff7ffd", - "0x1", - "0x208b7fff7fff7ffe", - "0x48297ffd80007ffc", - "0x20680017fff7fff", - "0x4", - "0x402780017ffc7ffc", - "0x1", - "0x208b7fff7fff7ffe", - "0x400380007ffc7ffd", - "0x482680017ffc8000", - "0x1", - "0x208b7fff7fff7ffe", - "0x480a7ffb7fff8000", - "0x48297ffc80007ffd", - "0x1104800180018000", - "0x800000000000010fffffffffffffffffffffffffffffffffffffffffffffffb", - "0x208b7fff7fff7ffe", - "0x480680017fff8000", - "0x3ffffffffffffffffffffffffffffff", - "0x480280017ffc8000", - "0x48307fff80007ffe", - "0x400280027ffc7fff", - "0x480280017ffc8000", - "0x484480017fff8000", - "0x100000000000000000000000000000000", - "0x480280007ffc8000", - "0x40317fff7ffe7ffd", - "0x482680017ffc8000", - "0x3", - "0x208b7fff7fff7ffe", - "0x480280007ffb8000", - "0x480280017ffb8000", - "0x484480017fff8000", - "0x2aaaaaaaaaaaab05555555555555556", - "0x48307fff7ffd8000", - "0x480280027ffb8000", - "0x480280037ffb8000", - "0x484480017fff8000", - "0x4000000000000088000000000000001", - "0x48307fff7ffd8000", - "0xa0680017fff8000", - "0xe", - "0x480680017fff8000", - "0x800000000000011000000000000000000000000000000000000000000000000", - "0x48287ffc80007fff", - "0x40307ffc7ff87fff", - "0x48297ffd80007ffc", - "0x482680017ffd8000", - "0x1", - "0x48507fff7ffe8000", - "0x40507ff97ff57fff", - "0x482680017ffb8000", - "0x4", - "0x208b7fff7fff7ffe", - "0xa0680017fff8000", - "0xc", - "0x480680017fff8000", - "0x800000000000011000000000000000000000000000000000000000000000000", - "0x48287ffd80007fff", - "0x48327fff7ffc8000", - "0x40307ffa7ff67fff", - "0x48527ffe7ffc8000", - "0x40507ff97ff57fff", - "0x482680017ffb8000", - "0x4", - "0x208b7fff7fff7ffe", - "0x40317ffd7ff97ffd", - "0x48297ffc80007ffd", - "0x48527fff7ffc8000", - "0x40507ffb7ff77fff", - "0x40780017fff7fff", - "0x2", - "0x482680017ffb8000", - "0x4", - "0x208b7fff7fff7ffe", - "0x48297ffd80007ffc", - "0x20680017fff7fff", - "0x4", - "0x402780017ffc7ffc", - "0x1", - "0x480a7ffb7fff8000", - "0x480a7ffc7fff8000", - "0x480a7ffd7fff8000", - "0x1104800180018000", - "0x800000000000010ffffffffffffffffffffffffffffffffffffffffffffffcc", - "0x208b7fff7fff7ffe", - "0x480280017ffa8000", - "0x48287ffd80007fff", - "0x48487ffc7fff8000", - "0x480280007ffa8000", - "0x40317fff7ffe7ffb", - "0x482680017ffa8000", - "0x2", - "0x480280007ffa8000", - "0x482680017ffc8000", - "0x800000000000011000000000000000000000000000000000000000000000000", - "0x1104800180018000", - "0x800000000000010ffffffffffffffffffffffffffffffffffffffffffffffad", - "0x480680017fff8000", - "0x2", - "0x48487ffd7fff8000", - "0x48127ffd7fff8000", - "0x480280017ffa8000", - "0x482480017ffd8000", - "0x800000000000011000000000000000000000000000000000000000000000000", - "0x1104800180018000", - "0x800000000000010ffffffffffffffffffffffffffffffffffffffffffffffa4", - "0x480280017ffa8000", - "0x48127ffe7fff8000", - "0x48287ffd80007ffe", - "0x480280007ffa8000", - "0x208b7fff7fff7ffe", - "0x40780017fff7fff", - "0x1", - "0x20680017fff7fff", - "0x10", - "0x480a7ffc7fff8000", - "0x482680017ffd8000", - "0x11000000000000000000000000000000000000000000000101", - "0x1104800180018000", - "0x800000000000010ffffffffffffffffffffffffffffffffffffffffffffff9b", - "0x480680017fff8000", - "0x800000000000011000000000000000000000000000000000000000000000000", - "0x48127ffe7fff8000", - "0x48287ffd80007ffe", - "0x1104800180018000", - "0x800000000000010ffffffffffffffffffffffffffffffffffffffffffffff95", - "0x482680017ffd8000", - "0x11000000000000000000000000000000000000000000000101", - "0x208b7fff7fff7ffe", - "0x40780017fff7fff", - "0x1", - "0x20680017fff7fff", - "0xc", - "0x40780017fff7fff", - "0xa", - "0x480680017fff8000", - "0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffeff", - "0x480a7ffc7fff8000", - "0x48287ffd80007ffe", - "0x1104800180018000", - "0x800000000000010ffffffffffffffffffffffffffffffffffffffffffffff86", - "0x10780017fff7fff", - "0x8", - "0x40780017fff7fff", - "0xb", - "0x480a7ffc7fff8000", - "0x480a7ffd7fff8000", - "0x1104800180018000", - "0x800000000000010ffffffffffffffffffffffffffffffffffffffffffffff7e", - "0x480a7ffd7fff8000", - "0x208b7fff7fff7ffe", - "0x40780017fff7fff", - "0x2", - "0x1104800180018000", - "0x800000000000010ffffffffffffffffffffffffffffffffffffffffffffff1e", - "0x40137fff7fff8000", - "0x480680017fff8000", - "0x1390fd803c110ac71730ece1decfc34eb1d0088e295d4f1b125dda1e0c5b9ff", - "0x4002800080007fff", - "0x1104800180018000", - "0x800000000000010ffffffffffffffffffffffffffffffffffffffffffffff18", - "0x40137fff7fff8001", - "0x4003800080017ffc", - "0x4003800180017ffd", - "0x4826800180018000", - "0x2", - "0x480a7ffa7fff8000", - "0x480680017fff8000", - "0x1", - "0x480a80007fff8000", - "0x4828800180007ffc", - "0x480a80017fff8000", - "0x1104800180018000", - "0x800000000000010ffffffffffffffffffffffffffffffffffffffffffffff47", - "0x480a7ffb7fff8000", - "0x208b7fff7fff7ffe", - "0x480a7ffc7fff8000", - "0x480a7ffd7fff8000", - "0x480680017fff8000", - "0x2bd557f4ba80dfabefabe45e9b2dd35db1b9a78e96c72bc2b69b655ce47a930", - "0x208b7fff7fff7ffe", - "0x480a7ffc7fff8000", - "0x480a7ffd7fff8000", - "0x1104800180018000", - "0x800000000000010fffffffffffffffffffffffffffffffffffffffffffffffa", - "0x480a7ffb7fff8000", - "0x48127ffe7fff8000", - "0x1104800180018000", - "0x800000000000010ffffffffffffffffffffffffffffffffffffffffffffff28", - "0x48127ffe7fff8000", - "0x48127ff57fff8000", - "0x48127ff57fff8000", - "0x48127ffc7fff8000", - "0x208b7fff7fff7ffe", - "0x480a7ffb7fff8000", - "0x480a7ffc7fff8000", - "0x1104800180018000", - "0x800000000000010ffffffffffffffffffffffffffffffffffffffffffffffed", - "0x480a7ffa7fff8000", - "0x48127ffe7fff8000", - "0x480a7ffd7fff8000", - "0x1104800180018000", - "0x800000000000010ffffffffffffffffffffffffffffffffffffffffffffff22", - "0x48127ff67fff8000", - "0x48127ff67fff8000", - "0x208b7fff7fff7ffe", - "0x480a7ffa7fff8000", - "0x480a7ffb7fff8000", - "0x480a7ffc7fff8000", - "0x480a7ffd7fff8000", - "0x1104800180018000", - "0x24", - "0x208b7fff7fff7ffe", - "0x480a7ffb7fff8000", - "0x480a7ffc7fff8000", - "0x480a7ffd7fff8000", - "0x1104800180018000", - "0xc", - "0x48127ffc7fff8000", - "0x1104800180018000", - "0x800000000000010ffffffffffffffffffffffffffffffffffffffffffffff01", - "0x1104800180018000", - "0x800000000000010ffffffffffffffffffffffffffffffffffffffffffffff20", - "0x40127ffd7fff7ff7", - "0x48127ffc7fff8000", - "0x48127ff47fff8000", - "0x48127ff47fff8000", - "0x208b7fff7fff7ffe", - "0x480a7ffb7fff8000", - "0x480a7ffc7fff8000", - "0x480a7ffd7fff8000", - "0x1104800180018000", - "0x800000000000010ffffffffffffffffffffffffffffffffffffffffffffffcf", - "0x208b7fff7fff7ffe", - "0x480a7ffd7fff8000", - "0x1104800180018000", - "0x800000000000010ffffffffffffffffffffffffffffffffffffffffffffff12", - "0x480a7ffa7fff8000", - "0x480a7ffb7fff8000", - "0x480a7ffc7fff8000", - "0x1104800180018000", - "0x800000000000010ffffffffffffffffffffffffffffffffffffffffffffffe6", - "0x480a7ffd7fff8000", - "0x1104800180018000", - "0x3", - "0x208b7fff7fff7ffe", - "0x480a7ffa7fff8000", - "0x480a7ffb7fff8000", - "0x480a7ffc7fff8000", - "0x1104800180018000", - "0x800000000000010ffffffffffffffffffffffffffffffffffffffffffffffec", - "0x48127ffc7fff8000", - "0x48127ffc7fff8000", - "0x48127ffc7fff8000", - "0x480a7ffd7fff8000", - "0x1104800180018000", - "0x800000000000010ffffffffffffffffffffffffffffffffffffffffffffffc4", - "0x48127ffd7fff8000", - "0x48127ffe7fff8000", - "0x48127fe77fff8000", - "0x480a7ffd7fff8000", - "0x1104800180018000", - "0x800000000000010ffffffffffffffffffffffffffffffffffffffffffffff93", - "0x48127ffe7fff8000", - "0x48127fe37fff8000", - "0x48127ffd7fff8000", - "0x208b7fff7fff7ffe", - "0x20780017fff7ffd", - "0x5", - "0x480680017fff8000", - "0x0", - "0x208b7fff7fff7ffe", - "0x480680017fff8000", - "0x1", - "0x208b7fff7fff7ffe", - "0xa0680017fff8000", - "0xa", - "0x400380007ffc7ffd", - "0x40780017fff7fff", - "0x14", - "0x482680017ffc8000", - "0x1", - "0x480680017fff8000", - "0x1", - "0x208b7fff7fff7ffe", - "0xa0680017fff8000", - "0xe", - "0x484680017ffd8000", - "0x800000000000011000000000000000000000000000000000000000000000000", - "0x482480017fff8000", - "0x800000000000011000000000000000000000000000000000000000000000000", - "0x400280007ffc7fff", - "0x40780017fff7fff", - "0x11", - "0x482680017ffc8000", - "0x1", - "0x480680017fff8000", - "0x0", - "0x208b7fff7fff7ffe", - "0x480a7ffc7fff8000", - "0x480680017fff8000", - "0x100000000000000000000000000000000", - "0x480a7ffd7fff8000", - "0x1104800180018000", - "0x800000000000010fffffffffffffffffffffffffffffffffffffffffffffeef", - "0x480680017fff8000", - "0x0", - "0x208b7fff7fff7ffe", - "0x480a7ffb7fff8000", - "0x48297ffc80007ffd", - "0x1104800180018000", - "0x800000000000010ffffffffffffffffffffffffffffffffffffffffffffffde", - "0x208b7fff7fff7ffe", - "0xa0680017fff8000", - "0xc", - "0x40780017fff7fff", - "0x6", - "0x480a7ffb7fff8000", - "0x480a7ffc7fff8000", - "0x480a7ffd7fff8000", - "0x1104800180018000", - "0x800000000000010fffffffffffffffffffffffffffffffffffffffffffffede", - "0x480680017fff8000", - "0x1", - "0x208b7fff7fff7ffe", - "0x480a7ffb7fff8000", - "0x480a7ffd7fff8000", - "0x480a7ffc7fff8000", - "0x1104800180018000", - "0x800000000000010ffffffffffffffffffffffffffffffffffffffffffffff03", - "0x480680017fff8000", - "0x0", - "0x208b7fff7fff7ffe", - "0x1104800180018000", - "0x800000000000010fffffffffffffffffffffffffffffffffffffffffffffe82", - "0x482680017ffd8000", - "0x800000000000010fffffffffffffffffffffffffffffffffffffffffffffe68", - "0x48307fff7ffe8000", - "0x208b7fff7fff7ffe", - "0x400380007ffb7ffc", - "0x400380017ffb7ffd", - "0x482680017ffb8000", - "0x2", - "0x208b7fff7fff7ffe", - "0x40780017fff7fff", - "0x4", - "0x404b800280028002", - "0x404b800380038003", - "0x482a7ffc7ffa8000", - "0x4846800180028000", - "0x100000000000000000000000000000000", - "0x40327fff80007ffe", - "0x482a7ffd7ffb8000", - "0x482880027fff8000", - "0x4846800180038000", - "0x100000000000000000000000000000000", - "0x40327fff80017ffe", - "0x480a7ff97fff8000", - "0x480a80007fff8000", - "0x480a80017fff8000", - "0x1104800180018000", - "0x800000000000010ffffffffffffffffffffffffffffffffffffffffffffffec", - "0x480a80007fff8000", - "0x480a80017fff8000", - "0x480a80037fff8000", - "0x208b7fff7fff7ffe", - "0x40780017fff7fff", - "0x2", - "0x4846800180018000", - "0x10000000000000000", - "0x40337fff80007ffd", - "0x400380007ffc8000", - "0x480680017fff8000", - "0xffffffffffffffff", - "0x4828800080007fff", - "0x400280017ffc7fff", - "0x400380027ffc8001", - "0x482680017ffc8000", - "0x3", - "0x480a80007fff8000", - "0x480a80017fff8000", - "0x208b7fff7fff7ffe", - "0x48297ffd80007ffb", - "0x20680017fff7fff", - "0x9", - "0x480a7ff97fff8000", - "0x482680017ffa8000", - "0x1", - "0x480a7ffc7fff8000", - "0x1104800180018000", - "0x800000000000010ffffffffffffffffffffffffffffffffffffffffffffffb0", - "0x208b7fff7fff7ffe", - "0x480a7ff97fff8000", - "0x482680017ffb8000", - "0x1", - "0x480a7ffd7fff8000", - "0x1104800180018000", - "0x800000000000010ffffffffffffffffffffffffffffffffffffffffffffffa9", - "0x208b7fff7fff7ffe", - "0x480a7ff97fff8000", - "0x480a7ffc7fff8000", - "0x480a7ffd7fff8000", - "0x480a7ffa7fff8000", - "0x480a7ffb7fff8000", - "0x1104800180018000", - "0x800000000000010ffffffffffffffffffffffffffffffffffffffffffffffeb", - "0x480680017fff8000", - "0x1", - "0x48127ffd7fff8000", - "0x48307ffd80007ffe", - "0x208b7fff7fff7ffe", - "0x480680017fff8000", - "0xffffffffffffffffffffffffffffffff", - "0x480680017fff8000", - "0xffffffffffffffffffffffffffffffff", - "0x480a7ffb7fff8000", - "0x48287ffc80007ffd", - "0x48287ffd80007ffd", - "0x208b7fff7fff7ffe", - "0x480a7ffb7fff8000", - "0x480a7ffc7fff8000", - "0x480a7ffd7fff8000", - "0x1104800180018000", - "0x800000000000010fffffffffffffffffffffffffffffffffffffffffffffff6", - "0x480680017fff8000", - "0x1", - "0x480680017fff8000", - "0x0", - "0x1104800180018000", - "0x800000000000010ffffffffffffffffffffffffffffffffffffffffffffffad", - "0x48127ffc7fff8000", - "0x48127ffc7fff8000", - "0x48127ffc7fff8000", - "0x208b7fff7fff7ffe", - "0x480a7ff97fff8000", - "0x480a7ffc7fff8000", - "0x480a7ffd7fff8000", - "0x1104800180018000", - "0x800000000000010ffffffffffffffffffffffffffffffffffffffffffffffef", - "0x48127ffd7fff8000", - "0x480a7ffa7fff8000", - "0x480a7ffb7fff8000", - "0x48127ffb7fff8000", - "0x48127ffb7fff8000", - "0x1104800180018000", - "0x800000000000010ffffffffffffffffffffffffffffffffffffffffffffff9d", - "0x48127ffc7fff8000", - "0x48127ffc7fff8000", - "0x48127ffc7fff8000", - "0x208b7fff7fff7ffe", - "0x48297ffd80007ffb", - "0x20680017fff7fff", - "0x4", - "0x10780017fff7fff", - "0x6", - "0x480a7ff97fff8000", - "0x480680017fff8000", - "0x0", - "0x208b7fff7fff7ffe", - "0x48297ffc80007ffa", - "0x20680017fff7fff", - "0x4", - "0x10780017fff7fff", - "0x6", - "0x480a7ff97fff8000", - "0x480680017fff8000", - "0x0", - "0x208b7fff7fff7ffe", - "0x480a7ff97fff8000", - "0x480680017fff8000", - "0x1", - "0x208b7fff7fff7ffe", - "0x480a7ff97fff8000", - "0x480a7ffa7fff8000", - "0x480a7ffb7fff8000", - "0x480a7ffc7fff8000", - "0x480a7ffd7fff8000", - "0x1104800180018000", - "0x800000000000010ffffffffffffffffffffffffffffffffffffffffffffffb3", - "0x400680017fff7fff", - "0x1", - "0x48127ffe7fff8000", - "0x208b7fff7fff7ffe", - "0x480a7ffb7fff8000", - "0x480680017fff8000", - "0x10f6bdc8f69644775581b157f06334cb94ae302da4f6d09656c9a31f092cff6", - "0x480a7ffd7fff8000", - "0x1104800180018000", - "0x800000000000010fffffffffffffffffffffffffffffffffffffffffffffdd3", - "0x480a7ffc7fff8000", - "0x48127ffe7fff8000", - "0x1104800180018000", - "0x800000000000010fffffffffffffffffffffffffffffffffffffffffffffe85", - "0x48127fe17fff8000", - "0x48127ffd7fff8000", - "0x48127ffd7fff8000", - "0x208b7fff7fff7ffe", - "0x480a7ffb7fff8000", - "0x480a7ffc7fff8000", - "0x480a7ffd7fff8000", - "0x1104800180018000", - "0x800000000000010fffffffffffffffffffffffffffffffffffffffffffffff0", - "0x480a7ffa7fff8000", - "0x48127ffe7fff8000", - "0x1104800180018000", - "0x800000000000010fffffffffffffffffffffffffffffffffffffffffffffdeb", - "0x48127ffe7fff8000", - "0x48127ff57fff8000", - "0x48127ff57fff8000", - "0x48127ffc7fff8000", - "0x208b7fff7fff7ffe", - "0x480a7ffa7fff8000", - "0x480a7ffb7fff8000", - "0x480a7ffc7fff8000", - "0x1104800180018000", - "0x800000000000010ffffffffffffffffffffffffffffffffffffffffffffffe2", - "0x480a7ff97fff8000", - "0x48127ffe7fff8000", - "0x480a7ffd7fff8000", - "0x1104800180018000", - "0x800000000000010fffffffffffffffffffffffffffffffffffffffffffffde4", - "0x48127ff67fff8000", - "0x48127ff67fff8000", - "0x208b7fff7fff7ffe", - "0x482680017ffd8000", - "0x800000000000010fffffffffffffffffffffffffffffffffffffffffe00365a", - "0x20680017fff7fff", - "0x8", - "0x480a7ffa7fff8000", - "0x480a7ffb7fff8000", - "0x480a7ffc7fff8000", - "0x480680017fff8000", - "0x1", - "0x208b7fff7fff7ffe", - "0x480a7ffa7fff8000", - "0x480a7ffb7fff8000", - "0x480a7ffc7fff8000", - "0x480a7ffd7fff8000", - "0x1104800180018000", - "0x800000000000010ffffffffffffffffffffffffffffffffffffffffffffffd8", - "0x208b7fff7fff7ffe", - "0x480a7ffd7fff8000", - "0x480680017fff8000", - "0xffffffff", - "0x1104800180018000", - "0x800000000000010fffffffffffffffffffffffffffffffffffffffffffffde2", - "0x480a7ffa7fff8000", - "0x480a7ffb7fff8000", - "0x480a7ffc7fff8000", - "0x480a7ffd7fff8000", - "0x480680017fff8000", - "0x1", - "0x1104800180018000", - "0x800000000000010ffffffffffffffffffffffffffffffffffffffffffffffd8", - "0x208b7fff7fff7ffe", - "0x40780017fff7fff", - "0x1", - "0x1104800180018000", - "0x800000000000010fffffffffffffffffffffffffffffffffffffffffffffd8a", - "0x40137fff7fff8000", - "0x4003800080007ffd", - "0x4826800180008000", - "0x1", - "0x480a7ffa7fff8000", - "0x480a7ffc7fff8000", - "0x480680017fff8000", - "0x29e211664c0b63c79638fbea474206ca74016b3e9a3dc4f9ac300ffd8bdf2cd", - "0x4828800080007ffc", - "0x480a80007fff8000", - "0x1104800180018000", - "0x800000000000010fffffffffffffffffffffffffffffffffffffffffffffd97", - "0x482480017fff8000", - "0x1", - "0x40307ffe7ffd7fff", - "0x48127ffc7fff8000", - "0x480a7ffb7fff8000", - "0x480080007ffc8000", - "0x208b7fff7fff7ffe", - "0x480a7ff97fff8000", - "0x480a7ffa7fff8000", - "0x480a7ffb7fff8000", - "0x1104800180018000", - "0x800000000000010ffffffffffffffffffffffffffffffffffffffffffffff0f", - "0x480a7ffc7fff8000", - "0x480a7ffd7fff8000", - "0x1104800180018000", - "0x800000000000010ffffffffffffffffffffffffffffffffffffffffffffff0b", - "0x480a7ffa7fff8000", - "0x480a7ffb7fff8000", - "0x480a7ffc7fff8000", - "0x480a7ffd7fff8000", - "0x1104800180018000", - "0x800000000000010ffffffffffffffffffffffffffffffffffffffffffffff0a", - "0x400680017fff7fff", - "0x0", - "0x480a7ff77fff8000", - "0x480a7ff87fff8000", - "0x48127ffa7fff8000", - "0x48127ffa7fff8000", - "0x48127ffa7fff8000", - "0x208b7fff7fff7ffe", - "0x40780017fff7fff", - "0x0", - "0x480a7ff97fff8000", - "0x480a7ffa7fff8000", - "0x480a7ffb7fff8000", - "0x1104800180018000", - "0x800000000000010fffffffffffffffffffffffffffffffffffffffffffffef6", - "0x480a7ffc7fff8000", - "0x480a7ffd7fff8000", - "0x1104800180018000", - "0x800000000000010fffffffffffffffffffffffffffffffffffffffffffffef2", - "0x480a7ffc7fff8000", - "0x480a7ffd7fff8000", - "0x480a7ffa7fff8000", - "0x480a7ffb7fff8000", - "0x1104800180018000", - "0x800000000000010ffffffffffffffffffffffffffffffffffffffffffffff28", - "0x400680017fff7fff", - "0x1", - "0x48127ffe7fff8000", - "0x480a7ffa7fff8000", - "0x480a7ffb7fff8000", - "0x480a7ffc7fff8000", - "0x480a7ffd7fff8000", - "0x1104800180018000", - "0x800000000000010ffffffffffffffffffffffffffffffffffffffffffffff42", - "0x480a7ff77fff8000", - "0x480a7ff87fff8000", - "0x48127ffb7fff8000", - "0x48127ffb7fff8000", - "0x48127ffb7fff8000", - "0x208b7fff7fff7ffe", - "0x40780017fff7fff", - "0x3", - "0x1104800180018000", - "0x800000000000010fffffffffffffffffffffffffffffffffffffffffffffd3c", - "0x40137fff7fff8000", - "0x4003800080007ff8", - "0x4003800180007ff9", - "0x4003800280007ffa", - "0x4003800380007ffb", - "0x4003800480007ffc", - "0x400380007ff67ffc", - "0x402780017ff68001", - "0x1", - "0x4826800180008000", - "0x5", - "0x40297ffc7fff8002", - "0x4826800180008000", - "0x5", - "0x480a7ffd7fff8000", - "0x480a7ffc7fff8000", - "0x1104800180018000", - "0x800000000000010fffffffffffffffffffffffffffffffffffffffffffffd33", - "0x480a7ff57fff8000", - "0x480a7ff77fff8000", - "0x480680017fff8000", - "0xfa119a8fafc6f1a02deb36fe5efbcc4929ef2021e50cf1cb6d1a780ccd009b", - "0x4829800080008002", - "0x480a80007fff8000", - "0x1104800180018000", - "0x800000000000010fffffffffffffffffffffffffffffffffffffffffffffd3b", - "0x482480017fff8000", - "0x1", - "0x40307ffe7ffd7fff", - "0x48127ffc7fff8000", - "0x480a80017fff8000", - "0x480080007ffc8000", - "0x208b7fff7fff7ffe", - "0x40780017fff7fff", - "0x2", - "0x1104800180018000", - "0x800000000000010fffffffffffffffffffffffffffffffffffffffffffffd17", - "0x40137fff7fff8000", - "0x480680017fff8000", - "0x99cd8bde557814842a3121e8ddfd433a539b8c9f14bf31ebf108d12e6196e9", - "0x4002800080007fff", - "0x1104800180018000", - "0x800000000000010fffffffffffffffffffffffffffffffffffffffffffffd11", - "0x40137fff7fff8001", - "0x4003800080017ffa", - "0x4003800180017ffb", - "0x4003800280017ffc", - "0x4003800380017ffd", - "0x4826800180018000", - "0x4", - "0x480a7ff87fff8000", - "0x480680017fff8000", - "0x1", - "0x480a80007fff8000", - "0x4828800180007ffc", - "0x480a80017fff8000", - "0x1104800180018000", - "0x800000000000010fffffffffffffffffffffffffffffffffffffffffffffd3e", - "0x480a7ff97fff8000", - "0x208b7fff7fff7ffe", - "0x40780017fff7fff", - "0x2", - "0x1104800180018000", - "0x800000000000010fffffffffffffffffffffffffffffffffffffffffffffcfc", - "0x40137fff7fff8000", - "0x480680017fff8000", - "0x134692b230b9e1ffa39098904722134159652b09c5bc41d88d6698779d228ff", - "0x4002800080007fff", - "0x1104800180018000", - "0x800000000000010fffffffffffffffffffffffffffffffffffffffffffffcf6", - "0x40137fff7fff8001", - "0x4003800080017ffa", - "0x4003800180017ffb", - "0x4003800280017ffc", - "0x4003800380017ffd", - "0x4826800180018000", - "0x4", - "0x480a7ff87fff8000", - "0x480680017fff8000", - "0x1", - "0x480a80007fff8000", - "0x4828800180007ffc", - "0x480a80017fff8000", - "0x1104800180018000", - "0x800000000000010fffffffffffffffffffffffffffffffffffffffffffffd23", - "0x480a7ff97fff8000", - "0x208b7fff7fff7ffe", - "0x40780017fff7fff", - "0x2", - "0x1104800180018000", - "0x800000000000010fffffffffffffffffffffffffffffffffffffffffffffce1", - "0x40137fff7fff8000", - "0x480680017fff8000", - "0x6ad9ed7b6318f1bcffefe19df9aeb40d22c36bed567e1925a5ccde0536edd", - "0x4002800080007fff", - "0x1104800180018000", - "0x800000000000010fffffffffffffffffffffffffffffffffffffffffffffcdb", - "0x40137fff7fff8001", - "0x4003800080017ffb", - "0x4003800180017ffc", - "0x4003800280017ffd", - "0x4826800180018000", - "0x3", - "0x480a7ff97fff8000", - "0x480680017fff8000", - "0x1", - "0x480a80007fff8000", - "0x4828800180007ffc", - "0x480a80017fff8000", - "0x1104800180018000", - "0x800000000000010fffffffffffffffffffffffffffffffffffffffffffffd09", - "0x480a7ffa7fff8000", - "0x208b7fff7fff7ffe", - "0x480a7ffc7fff8000", - "0x480a7ffd7fff8000", - "0x480680017fff8000", - "0x3a762f04043ed52ed42b61e4ad2e367163f5a928ef94f71121e68d78b8a00df", - "0x208b7fff7fff7ffe", - "0x480a7ffc7fff8000", - "0x480a7ffd7fff8000", - "0x1104800180018000", - "0x800000000000010fffffffffffffffffffffffffffffffffffffffffffffffa", - "0x480a7ffb7fff8000", - "0x48127ffe7fff8000", - "0x1104800180018000", - "0x800000000000010fffffffffffffffffffffffffffffffffffffffffffffcea", - "0x48127ffe7fff8000", - "0x48127ff57fff8000", - "0x48127ff57fff8000", - "0x48127ffc7fff8000", - "0x208b7fff7fff7ffe", - "0x480a7ffb7fff8000", - "0x480a7ffc7fff8000", - "0x1104800180018000", - "0x800000000000010ffffffffffffffffffffffffffffffffffffffffffffffed", - "0x480a7ffa7fff8000", - "0x48127ffe7fff8000", - "0x480a7ffd7fff8000", - "0x1104800180018000", - "0x800000000000010fffffffffffffffffffffffffffffffffffffffffffffce4", - "0x48127ff67fff8000", - "0x48127ff67fff8000", - "0x208b7fff7fff7ffe", - "0x480a7ffc7fff8000", - "0x480a7ffd7fff8000", - "0x480680017fff8000", - "0x144d444467c1a7848e62c72fd678f9225602bf41005c66940ee2373705d90a2", - "0x208b7fff7fff7ffe", - "0x480a7ffb7fff8000", - "0x480a7ffc7fff8000", - "0x1104800180018000", - "0x800000000000010fffffffffffffffffffffffffffffffffffffffffffffffa", - "0x480a7ffa7fff8000", - "0x48127ffe7fff8000", - "0x480a7ffd7fff8000", - "0x1104800180018000", - "0x800000000000010fffffffffffffffffffffffffffffffffffffffffffffcd3", - "0x48127ff67fff8000", - "0x48127ff67fff8000", - "0x208b7fff7fff7ffe", - "0x480a7ffa7fff8000", - "0x480680017fff8000", - "0x19eba13c2ffadbed69e7a3ff4399447db5f0f1deff605072b123c3d33e5e300", - "0x480a7ffc7fff8000", - "0x1104800180018000", - "0x800000000000010fffffffffffffffffffffffffffffffffffffffffffffc99", - "0x480a7ffd7fff8000", - "0x1104800180018000", - "0x800000000000010fffffffffffffffffffffffffffffffffffffffffffffc96", - "0x480a7ffb7fff8000", - "0x48127ffe7fff8000", - "0x1104800180018000", - "0x800000000000010fffffffffffffffffffffffffffffffffffffffffffffd48", - "0x48127fe17fff8000", - "0x48127ffd7fff8000", - "0x48127ffd7fff8000", - "0x208b7fff7fff7ffe", - "0x480a7ffa7fff8000", - "0x480a7ffb7fff8000", - "0x480a7ffc7fff8000", - "0x480a7ffd7fff8000", - "0x1104800180018000", - "0x800000000000010ffffffffffffffffffffffffffffffffffffffffffffffec", - "0x480a7ff97fff8000", - "0x48127ffe7fff8000", - "0x1104800180018000", - "0x800000000000010fffffffffffffffffffffffffffffffffffffffffffffcad", - "0x48127ffe7fff8000", - "0x48127ff57fff8000", - "0x48127ff57fff8000", - "0x48127ffc7fff8000", - "0x208b7fff7fff7ffe", - "0x480a7ff97fff8000", - "0x480a7ffa7fff8000", - "0x480a7ffb7fff8000", - "0x480a7ffc7fff8000", - "0x1104800180018000", - "0x800000000000010ffffffffffffffffffffffffffffffffffffffffffffffdd", - "0x480a7ff87fff8000", - "0x48127ffe7fff8000", - "0x480a7ffd7fff8000", - "0x1104800180018000", - "0x800000000000010fffffffffffffffffffffffffffffffffffffffffffffca5", - "0x48127ff67fff8000", - "0x48127ff67fff8000", - "0x208b7fff7fff7ffe", - "0x480a7ffb7fff8000", - "0x480680017fff8000", - "0x3bbfaec36427c06f699125e4eedffd9148420983ff94e5284a9087e22050b79", - "0x480a7ffd7fff8000", - "0x1104800180018000", - "0x800000000000010fffffffffffffffffffffffffffffffffffffffffffffc6b", - "0x480a7ffc7fff8000", - "0x48127ffe7fff8000", - "0x1104800180018000", - "0x800000000000010fffffffffffffffffffffffffffffffffffffffffffffd1d", - "0x48127fe17fff8000", - "0x48127ffd7fff8000", - "0x48127ffd7fff8000", - "0x208b7fff7fff7ffe", - "0x480a7ffb7fff8000", - "0x480a7ffc7fff8000", - "0x480a7ffd7fff8000", - "0x1104800180018000", - "0x800000000000010fffffffffffffffffffffffffffffffffffffffffffffff0", - "0x480a7ffa7fff8000", - "0x48127ffe7fff8000", - "0x1104800180018000", - "0x800000000000010fffffffffffffffffffffffffffffffffffffffffffffc83", - "0x48127ffe7fff8000", - "0x482480017ff78000", - "0x1", - "0x1104800180018000", - "0x800000000000010fffffffffffffffffffffffffffffffffffffffffffffc7e", - "0x48127ffe7fff8000", - "0x48127fee7fff8000", - "0x48127fee7fff8000", - "0x48127ff57fff8000", - "0x48127ffb7fff8000", - "0x208b7fff7fff7ffe", - "0x480a7ff97fff8000", - "0x480a7ffa7fff8000", - "0x480a7ffb7fff8000", - "0x1104800180018000", - "0x800000000000010ffffffffffffffffffffffffffffffffffffffffffffffdc", - "0x480a7ff87fff8000", - "0x48127ffe7fff8000", - "0x480a7ffc7fff8000", - "0x1104800180018000", - "0x800000000000010fffffffffffffffffffffffffffffffffffffffffffffc76", - "0x482480017ff88000", - "0x1", - "0x480a7ffd7fff8000", - "0x1104800180018000", - "0x800000000000010fffffffffffffffffffffffffffffffffffffffffffffc71", - "0x48127ff07fff8000", - "0x48127ff07fff8000", - "0x208b7fff7fff7ffe", - "0x480a7ffa7fff8000", - "0x480680017fff8000", - "0x2618225f6ac4a00b9635ed0e036ea1db17cf353e7ad948e882dbbca50565fbd", - "0x480a7ffc7fff8000", - "0x1104800180018000", - "0x800000000000010fffffffffffffffffffffffffffffffffffffffffffffc37", - "0x480a7ffd7fff8000", - "0x1104800180018000", - "0x800000000000010fffffffffffffffffffffffffffffffffffffffffffffc34", - "0x480a7ffb7fff8000", - "0x48127ffe7fff8000", - "0x1104800180018000", - "0x800000000000010fffffffffffffffffffffffffffffffffffffffffffffce6", - "0x48127fe17fff8000", - "0x48127ffd7fff8000", - "0x48127ffd7fff8000", - "0x208b7fff7fff7ffe", - "0x480a7ffa7fff8000", - "0x480a7ffb7fff8000", - "0x480a7ffc7fff8000", - "0x480a7ffd7fff8000", - "0x1104800180018000", - "0x800000000000010ffffffffffffffffffffffffffffffffffffffffffffffec", - "0x480a7ff97fff8000", - "0x48127ffe7fff8000", - "0x1104800180018000", - "0x800000000000010fffffffffffffffffffffffffffffffffffffffffffffc4b", - "0x48127ffe7fff8000", - "0x48127ff57fff8000", - "0x48127ff57fff8000", - "0x48127ffc7fff8000", - "0x208b7fff7fff7ffe", - "0x480a7ff97fff8000", - "0x480a7ffa7fff8000", - "0x480a7ffb7fff8000", - "0x480a7ffc7fff8000", - "0x1104800180018000", - "0x800000000000010ffffffffffffffffffffffffffffffffffffffffffffffdd", - "0x480a7ff87fff8000", - "0x48127ffe7fff8000", - "0x480a7ffd7fff8000", - "0x1104800180018000", - "0x800000000000010fffffffffffffffffffffffffffffffffffffffffffffc43", - "0x48127ff67fff8000", - "0x48127ff67fff8000", - "0x208b7fff7fff7ffe", - "0x480a7ffa7fff8000", - "0x480680017fff8000", - "0x350efce99c55a2fbf8c09cde498fd24d686f21a900621778cd59ed10f4ae843", - "0x480a7ffc7fff8000", - "0x1104800180018000", - "0x800000000000010fffffffffffffffffffffffffffffffffffffffffffffc09", - "0x480a7ffd7fff8000", - "0x1104800180018000", - "0x800000000000010fffffffffffffffffffffffffffffffffffffffffffffc06", - "0x480a7ffb7fff8000", - "0x48127ffe7fff8000", - "0x1104800180018000", - "0x800000000000010fffffffffffffffffffffffffffffffffffffffffffffcb8", - "0x48127fe17fff8000", - "0x48127ffd7fff8000", - "0x48127ffd7fff8000", - "0x208b7fff7fff7ffe", - "0x480a7ffa7fff8000", - "0x480a7ffb7fff8000", - "0x480a7ffc7fff8000", - "0x480a7ffd7fff8000", - "0x1104800180018000", - "0x800000000000010ffffffffffffffffffffffffffffffffffffffffffffffec", - "0x480a7ff97fff8000", - "0x48127ffe7fff8000", - "0x1104800180018000", - "0x800000000000010fffffffffffffffffffffffffffffffffffffffffffffc1d", - "0x48127ffe7fff8000", - "0x48127ff57fff8000", - "0x48127ff57fff8000", - "0x48127ffc7fff8000", - "0x208b7fff7fff7ffe", - "0x480a7ff97fff8000", - "0x480a7ffa7fff8000", - "0x480a7ffb7fff8000", - "0x480a7ffc7fff8000", - "0x1104800180018000", - "0x800000000000010ffffffffffffffffffffffffffffffffffffffffffffffdd", - "0x480a7ff87fff8000", - "0x48127ffe7fff8000", - "0x480a7ffd7fff8000", - "0x1104800180018000", - "0x800000000000010fffffffffffffffffffffffffffffffffffffffffffffc15", - "0x48127ff67fff8000", - "0x48127ff67fff8000", - "0x208b7fff7fff7ffe", - "0x480a7ff97fff8000", - "0x480a7ffa7fff8000", - "0x480a7ffb7fff8000", - "0x480a7ffc7fff8000", - "0x1104800180018000", - "0x800000000000010ffffffffffffffffffffffffffffffffffffffffffffff22", - "0x480a7ffd7fff8000", - "0x1104800180018000", - "0x800000000000010ffffffffffffffffffffffffffffffffffffffffffffff30", - "0x480680017fff8000", - "0x80ac58cd", - "0x1104800180018000", - "0x800000000000010fffffffffffffffffffffffffffffffffffffffffffffe38", - "0x480680017fff8000", - "0x5b5e139f", - "0x1104800180018000", - "0x800000000000010fffffffffffffffffffffffffffffffffffffffffffffe34", - "0x208b7fff7fff7ffe", - "0x480a7ffb7fff8000", - "0x480a7ffc7fff8000", - "0x480a7ffd7fff8000", - "0x1104800180018000", - "0x800000000000010ffffffffffffffffffffffffffffffffffffffffffffff04", - "0x208b7fff7fff7ffe", - "0x480a7ffd7fff8000", - "0x1104800180018000", - "0x800000000000010fffffffffffffffffffffffffffffffffffffffffffffc09", - "0x480a7ffa7fff8000", - "0x480a7ffb7fff8000", - "0x480a7ffc7fff8000", - "0x480a7ffd7fff8000", - "0x1104800180018000", - "0x800000000000010ffffffffffffffffffffffffffffffffffffffffffffff60", - "0x208b7fff7fff7ffe", - "0x480a7ffb7fff8000", - "0x480a7ffc7fff8000", - "0x480a7ffd7fff8000", - "0x1104800180018000", - "0x800000000000010fffffffffffffffffffffffffffffffffffffffffffffd54", - "0x480a7ff97fff8000", - "0x480a7ffa7fff8000", - "0x48127ffd7fff8000", - "0x480a7ffc7fff8000", - "0x480a7ffd7fff8000", - "0x1104800180018000", - "0x800000000000010ffffffffffffffffffffffffffffffffffffffffffffff28", - "0x1104800180018000", - "0x800000000000010fffffffffffffffffffffffffffffffffffffffffffffbf4", - "0x48127ffa7fff8000", - "0x48127ffa7fff8000", - "0x48127ffa7fff8000", - "0x48127ffa7fff8000", - "0x208b7fff7fff7ffe", - "0x480a7ffb7fff8000", - "0x480a7ffc7fff8000", - "0x480a7ffd7fff8000", - "0x1104800180018000", - "0x800000000000010fffffffffffffffffffffffffffffffffffffffffffffd41", - "0x480a7ff97fff8000", - "0x480a7ffa7fff8000", - "0x48127ffd7fff8000", - "0x480a7ffc7fff8000", - "0x480a7ffd7fff8000", - "0x1104800180018000", - "0x10e", - "0x400680017fff7fff", - "0x1", - "0x48127ffc7fff8000", - "0x48127ffc7fff8000", - "0x48127ffc7fff8000", - "0x480a7ffc7fff8000", - "0x480a7ffd7fff8000", - "0x1104800180018000", - "0x800000000000010ffffffffffffffffffffffffffffffffffffffffffffff6e", - "0x208b7fff7fff7ffe", - "0x480a7ff97fff8000", - "0x480a7ffa7fff8000", - "0x480a7ffb7fff8000", - "0x480a7ffc7fff8000", - "0x480a7ffd7fff8000", - "0x1104800180018000", - "0x800000000000010ffffffffffffffffffffffffffffffffffffffffffffff94", - "0x208b7fff7fff7ffe", - "0x480a7ffa7fff8000", - "0x480a7ffc7fff8000", - "0x480a7ffd7fff8000", - "0x1104800180018000", - "0x800000000000010fffffffffffffffffffffffffffffffffffffffffffffd23", - "0x480a7ff97fff8000", - "0x1104800180018000", - "0x800000000000010fffffffffffffffffffffffffffffffffffffffffffffba8", - "0x1104800180018000", - "0x800000000000010fffffffffffffffffffffffffffffffffffffffffffffbc7", - "0x48127ffc7fff8000", - "0x480a7ff87fff8000", - "0x48127ff57fff8000", - "0x480a7ffc7fff8000", - "0x480a7ffd7fff8000", - "0x1104800180018000", - "0x800000000000010fffffffffffffffffffffffffffffffffffffffffffffef2", - "0x480a7ffb7fff8000", - "0x1104800180018000", - "0x800000000000010fffffffffffffffffffffffffffffffffffffffffffffbc2", - "0x48307ffb80007fb5", - "0x20680017fff7fff", - "0xe", - "0x48127ff77fff8000", - "0x48127ff77fff8000", - "0x48127ff77fff8000", - "0x480a7ffb7fff8000", - "0x480a7ffc7fff8000", - "0x480a7ffd7fff8000", - "0x1104800180018000", - "0xf2", - "0x48127ffe7fff8000", - "0x48127ffc7fff8000", - "0x48127ffd7fff8000", - "0x208b7fff7fff7ffe", - "0x48127ff77fff8000", - "0x48127ff77fff8000", - "0x48127ff77fff8000", - "0x48127ff77fff8000", - "0x48127fb07fff8000", - "0x1104800180018000", - "0x800000000000010ffffffffffffffffffffffffffffffffffffffffffffff69", - "0x1104800180018000", - "0x800000000000010fffffffffffffffffffffffffffffffffffffffffffffba5", - "0x48127ffa7fff8000", - "0x48127ffa7fff8000", - "0x48127ffa7fff8000", - "0x480a7ffb7fff8000", - "0x480a7ffc7fff8000", - "0x480a7ffd7fff8000", - "0x1104800180018000", - "0xdd", - "0x48127ffe7fff8000", - "0x48127ffc7fff8000", - "0x48127ffd7fff8000", - "0x208b7fff7fff7ffe", - "0x480a7ff97fff8000", - "0x1104800180018000", - "0x800000000000010fffffffffffffffffffffffffffffffffffffffffffffb75", - "0x48487ffc7fff8000", - "0x1104800180018000", - "0x800000000000010fffffffffffffffffffffffffffffffffffffffffffffb93", - "0x48127ffc7fff8000", - "0x480a7ffc7fff8000", - "0x1104800180018000", - "0x800000000000010fffffffffffffffffffffffffffffffffffffffffffffb94", - "0x480680017fff8000", - "0x1", - "0x48287ffd80007fff", - "0x480680017fff8000", - "0x0", - "0x40527ffe7ffd7fff", - "0x48127ff37fff8000", - "0x480a7ffa7fff8000", - "0x480a7ffb7fff8000", - "0x48127ff17fff8000", - "0x480a7ffc7fff8000", - "0x480a7ffd7fff8000", - "0x1104800180018000", - "0x800000000000010ffffffffffffffffffffffffffffffffffffffffffffff52", - "0x48127ffd7fff8000", - "0x48127ffe7fff8000", - "0x48127faf7fff8000", - "0x480a7ffc7fff8000", - "0x480a7ffd7fff8000", - "0x1104800180018000", - "0x800000000000010fffffffffffffffffffffffffffffffffffffffffffffe52", - "0x48127ffe7fff8000", - "0x48127fe27fff8000", - "0x48127ffd7fff8000", - "0x208b7fff7fff7ffe", - "0x40780017fff7fff", - "0x1", - "0x480a7ff97fff8000", - "0x480a7ffc7fff8000", - "0x480a7ffd7fff8000", - "0x1104800180018000", - "0x800000000000010fffffffffffffffffffffffffffffffffffffffffffffcc6", - "0x480a7ff87fff8000", - "0x1104800180018000", - "0x800000000000010fffffffffffffffffffffffffffffffffffffffffffffb4b", - "0x40137fff7fff8000", - "0x480a7ff77fff8000", - "0x48127ffd7fff8000", - "0x48127ff77fff8000", - "0x480a80007fff8000", - "0x480a7ffc7fff8000", - "0x480a7ffd7fff8000", - "0x1104800180018000", - "0x4b", - "0x48527fff80008000", - "0x1104800180018000", - "0x800000000000010fffffffffffffffffffffffffffffffffffffffffffffb60", - "0x48127ffa7fff8000", - "0x48127ff87fff8000", - "0x48127ff97fff8000", - "0x480a7ffa7fff8000", - "0x480a7ffb7fff8000", - "0x480a7ffc7fff8000", - "0x480a7ffd7fff8000", - "0x1104800180018000", - "0xaf", - "0x48127ffe7fff8000", - "0x48127ffc7fff8000", - "0x48127ffd7fff8000", - "0x208b7fff7fff7ffe", - "0x40780017fff7fff", - "0x1", - "0x480a7ff77fff8000", - "0x480a7ffa7fff8000", - "0x480a7ffb7fff8000", - "0x1104800180018000", - "0x800000000000010fffffffffffffffffffffffffffffffffffffffffffffca3", - "0x480a7ff67fff8000", - "0x1104800180018000", - "0x800000000000010fffffffffffffffffffffffffffffffffffffffffffffb28", - "0x40137fff7fff8000", - "0x480a7ff57fff8000", - "0x48127ffd7fff8000", - "0x48127ff77fff8000", - "0x480a80007fff8000", - "0x480a7ffa7fff8000", - "0x480a7ffb7fff8000", - "0x1104800180018000", - "0x28", - "0x48527fff80008000", - "0x1104800180018000", - "0x800000000000010fffffffffffffffffffffffffffffffffffffffffffffb3d", - "0x48127ffa7fff8000", - "0x48127ff87fff8000", - "0x48127ff97fff8000", - "0x480a7ff87fff8000", - "0x480a7ff97fff8000", - "0x480a7ffa7fff8000", - "0x480a7ffb7fff8000", - "0x480a7ffc7fff8000", - "0x480a7ffd7fff8000", - "0x1104800180018000", - "0xd1", - "0x48127ffe7fff8000", - "0x48127ffc7fff8000", - "0x48127ffd7fff8000", - "0x208b7fff7fff7ffe", - "0x480a7ffb7fff8000", - "0x480a7ffc7fff8000", - "0x480a7ffd7fff8000", - "0x1104800180018000", - "0x800000000000010fffffffffffffffffffffffffffffffffffffffffffffc80", - "0x480a7ffa7fff8000", - "0x1104800180018000", - "0x800000000000010fffffffffffffffffffffffffffffffffffffffffffffb05", - "0x48127ffe7fff8000", - "0x480a7ff97fff8000", - "0x48127ff77fff8000", - "0x480a7ffc7fff8000", - "0x480a7ffd7fff8000", - "0x1104800180018000", - "0x800000000000010ffffffffffffffffffffffffffffffffffffffffffffff20", - "0x40127fff7fff7fa8", - "0x48127ffd7fff8000", - "0x48127ffb7fff8000", - "0x48127ffc7fff8000", - "0x208b7fff7fff7ffe", - "0x40780017fff7fff", - "0x1", - "0x480a7ff97fff8000", - "0x480a7ff87fff8000", - "0x480a7ffa7fff8000", - "0x480a7ffc7fff8000", - "0x480a7ffd7fff8000", - "0x1104800180018000", - "0x3c", - "0x400680017fff7fff", - "0x1", - "0x48127ffc7fff8000", - "0x48127ffc7fff8000", - "0x48127ffc7fff8000", - "0x480a7ffc7fff8000", - "0x480a7ffd7fff8000", - "0x1104800180018000", - "0x800000000000010ffffffffffffffffffffffffffffffffffffffffffffff09", - "0x40137fff7fff8000", - "0x48297ffb80008000", - "0x20680017fff7fff", - "0x8", - "0x48127ffc7fff8000", - "0x48127ffa7fff8000", - "0x48127ffb7fff8000", - "0x480680017fff8000", - "0x1", - "0x208b7fff7fff7ffe", - "0x48127ffb7fff8000", - "0x48127ffb7fff8000", - "0x48127ffb7fff8000", - "0x480a7ffc7fff8000", - "0x480a7ffd7fff8000", - "0x1104800180018000", - "0x800000000000010ffffffffffffffffffffffffffffffffffffffffffffff0b", - "0x48287ffb80007fff", - "0x20680017fff7fff", - "0x8", - "0x48127ffc7fff8000", - "0x48127ffa7fff8000", - "0x48127ffb7fff8000", - "0x480680017fff8000", - "0x1", - "0x208b7fff7fff7ffe", - "0x48127ffb7fff8000", - "0x48127ffb7fff8000", - "0x48127ffb7fff8000", - "0x480a80007fff8000", - "0x480a7ffb7fff8000", - "0x1104800180018000", - "0x800000000000010ffffffffffffffffffffffffffffffffffffffffffffff11", - "0x482480017fff8000", - "0x800000000000011000000000000000000000000000000000000000000000000", - "0x20680017fff7fff", - "0x8", - "0x48127ffc7fff8000", - "0x48127ffa7fff8000", - "0x48127ffb7fff8000", - "0x480680017fff8000", - "0x1", - "0x208b7fff7fff7ffe", - "0x48127ffc7fff8000", - "0x48127ffa7fff8000", - "0x48127ffb7fff8000", - "0x480680017fff8000", - "0x0", - "0x208b7fff7fff7ffe", - "0x480a7ff97fff8000", - "0x480a7ffa7fff8000", - "0x480a7ffb7fff8000", - "0x480a7ffc7fff8000", - "0x480a7ffd7fff8000", - "0x1104800180018000", - "0x800000000000010fffffffffffffffffffffffffffffffffffffffffffffe02", - "0x20680017fff7fff", - "0x8", - "0x48127ffc7fff8000", - "0x48127ffc7fff8000", - "0x48127ffc7fff8000", - "0x480680017fff8000", - "0x0", - "0x208b7fff7fff7ffe", - "0x48127ffc7fff8000", - "0x48127ffc7fff8000", - "0x48127ffc7fff8000", - "0x480680017fff8000", - "0x1", - "0x208b7fff7fff7ffe", - "0x480a7ff87fff8000", - "0x480a7ff97fff8000", - "0x480a7ffa7fff8000", - "0x480a7ffc7fff8000", - "0x480a7ffd7fff8000", - "0x480a7ffb7fff8000", - "0x1104800180018000", - "0x800000000000010fffffffffffffffffffffffffffffffffffffffffffffe5d", - "0x480a7ffc7fff8000", - "0x480a7ffd7fff8000", - "0x1104800180018000", - "0x800000000000010fffffffffffffffffffffffffffffffffffffffffffffeb7", - "0x48127ffc7fff8000", - "0x48127ffd7fff8000", - "0x48127ffd7fff8000", - "0x480a7ffb7fff8000", - "0x480a7ffc7fff8000", - "0x480a7ffd7fff8000", - "0x1104800180018000", - "0x800000000000010fffffffffffffffffffffffffffffffffffffffffffffd6b", - "0x48127ffe7fff8000", - "0x48127fe07fff8000", - "0x48127ffd7fff8000", - "0x208b7fff7fff7ffe", - "0x480a7ff77fff8000", - "0x480a7ff87fff8000", - "0x480a7ff97fff8000", - "0x480a7ffc7fff8000", - "0x480a7ffd7fff8000", - "0x1104800180018000", - "0x800000000000010fffffffffffffffffffffffffffffffffffffffffffffea4", - "0x400a7ffa7fff7fff", - "0x480a7ffb7fff8000", - "0x1104800180018000", - "0x800000000000010fffffffffffffffffffffffffffffffffffffffffffffa9f", - "0x48127ff97fff8000", - "0x48127ff97fff8000", - "0x48127ff97fff8000", - "0x480680017fff8000", - "0x0", - "0x480a7ffc7fff8000", - "0x480a7ffd7fff8000", - "0x1104800180018000", - "0x800000000000010ffffffffffffffffffffffffffffffffffffffffffffffd7", - "0x480a7ffa7fff8000", - "0x1104800180018000", - "0x800000000000010fffffffffffffffffffffffffffffffffffffffffffffdf0", - "0x480680017fff8000", - "0x1", - "0x480680017fff8000", - "0x0", - "0x1104800180018000", - "0x800000000000010fffffffffffffffffffffffffffffffffffffffffffffcea", - "0x48127ffb7fff8000", - "0x48127ffb7fff8000", - "0x48127ffb7fff8000", - "0x480a7ffa7fff8000", - "0x48127ffa7fff8000", - "0x48127ffa7fff8000", - "0x1104800180018000", - "0x800000000000010fffffffffffffffffffffffffffffffffffffffffffffdf6", - "0x480a7ffb7fff8000", - "0x1104800180018000", - "0x800000000000010fffffffffffffffffffffffffffffffffffffffffffffddf", - "0x480680017fff8000", - "0x1", - "0x480680017fff8000", - "0x0", - "0x1104800180018000", - "0x800000000000010fffffffffffffffffffffffffffffffffffffffffffffcc2", - "0x48127ffb7fff8000", - "0x48127ffb7fff8000", - "0x48127ffb7fff8000", - "0x480a7ffb7fff8000", - "0x48127ffa7fff8000", - "0x48127ffa7fff8000", - "0x1104800180018000", - "0x800000000000010fffffffffffffffffffffffffffffffffffffffffffffde5", - "0x480a7ffc7fff8000", - "0x480a7ffd7fff8000", - "0x480a7ffb7fff8000", - "0x1104800180018000", - "0x800000000000010fffffffffffffffffffffffffffffffffffffffffffffdb0", - "0x48127ffd7fff8000", - "0x48127ffe7fff8000", - "0x480a7ffa7fff8000", - "0x480a7ffb7fff8000", - "0x480a7ffc7fff8000", - "0x480a7ffd7fff8000", - "0x1104800180018000", - "0x800000000000010fffffffffffffffffffffffffffffffffffffffffffffd09", - "0x48127ffe7fff8000", - "0x48127fe17fff8000", - "0x48127ffd7fff8000", - "0x208b7fff7fff7ffe", - "0x480a7ff57fff8000", - "0x480a7ff67fff8000", - "0x480a7ff77fff8000", - "0x480a7ff87fff8000", - "0x480a7ff97fff8000", - "0x480a7ffa7fff8000", - "0x480a7ffb7fff8000", - "0x1104800180018000", - "0x800000000000010ffffffffffffffffffffffffffffffffffffffffffffffb3", - "0x480a7ff87fff8000", - "0x480a7ff97fff8000", - "0x480a7ffa7fff8000", - "0x480a7ffb7fff8000", - "0x480a7ffc7fff8000", - "0x480a7ffd7fff8000", - "0x1104800180018000", - "0x7a", - "0x1104800180018000", - "0x800000000000010fffffffffffffffffffffffffffffffffffffffffffffa50", - "0x48127ffa7fff8000", - "0x48127ffa7fff8000", - "0x48127ffa7fff8000", - "0x208b7fff7fff7ffe", - "0x480a7ffa7fff8000", - "0x480a7ffc7fff8000", - "0x480a7ffd7fff8000", - "0x1104800180018000", - "0x800000000000010fffffffffffffffffffffffffffffffffffffffffffffb9e", - "0x480a7ffb7fff8000", - "0x1104800180018000", - "0x800000000000010fffffffffffffffffffffffffffffffffffffffffffffa44", - "0x480a7ff97fff8000", - "0x480a7ff87fff8000", - "0x48127ffa7fff8000", - "0x480a7ffc7fff8000", - "0x480a7ffd7fff8000", - "0x1104800180018000", - "0x800000000000010ffffffffffffffffffffffffffffffffffffffffffffff69", - "0x400680017fff7fff", - "0x0", - "0x48127ffc7fff8000", - "0x48127ffc7fff8000", - "0x48127ffc7fff8000", - "0x480a7ffb7fff8000", - "0x1104800180018000", - "0x800000000000010fffffffffffffffffffffffffffffffffffffffffffffd92", - "0x480680017fff8000", - "0x1", - "0x480680017fff8000", - "0x0", - "0x1104800180018000", - "0x800000000000010fffffffffffffffffffffffffffffffffffffffffffffc75", - "0x48127ffb7fff8000", - "0x48127ffb7fff8000", - "0x48127ffb7fff8000", - "0x480a7ffb7fff8000", - "0x48127ffa7fff8000", - "0x48127ffa7fff8000", - "0x1104800180018000", - "0x800000000000010fffffffffffffffffffffffffffffffffffffffffffffd98", - "0x480a7ffc7fff8000", - "0x480a7ffd7fff8000", - "0x480a7ffb7fff8000", - "0x1104800180018000", - "0x800000000000010fffffffffffffffffffffffffffffffffffffffffffffd63", - "0x48127ffd7fff8000", - "0x48127ffe7fff8000", - "0x480680017fff8000", - "0x0", - "0x480a7ffb7fff8000", - "0x480a7ffc7fff8000", - "0x480a7ffd7fff8000", - "0x1104800180018000", - "0x800000000000010fffffffffffffffffffffffffffffffffffffffffffffcbb", - "0x48127fe27fff8000", - "0x48127ffd7fff8000", - "0x48127ffd7fff8000", - "0x208b7fff7fff7ffe", - "0x40780017fff7fff", - "0x0", - "0x480a7ffb7fff8000", - "0x480a7ffc7fff8000", - "0x480a7ffd7fff8000", - "0x1104800180018000", - "0x800000000000010fffffffffffffffffffffffffffffffffffffffffffffb65", - "0x480a7ffa7fff8000", - "0x480a7ff97fff8000", - "0x48127ffd7fff8000", - "0x480a7ffc7fff8000", - "0x480a7ffd7fff8000", - "0x1104800180018000", - "0x800000000000010fffffffffffffffffffffffffffffffffffffffffffffe08", - "0x48127ffc7fff8000", - "0x48127ffc7fff8000", - "0x48127ffc7fff8000", - "0x480680017fff8000", - "0x0", - "0x480a7ffc7fff8000", - "0x480a7ffd7fff8000", - "0x1104800180018000", - "0x800000000000010ffffffffffffffffffffffffffffffffffffffffffffff3f", - "0x48127f417fff8000", - "0x1104800180018000", - "0x800000000000010fffffffffffffffffffffffffffffffffffffffffffffd58", - "0x480680017fff8000", - "0x1", - "0x480680017fff8000", - "0x0", - "0x1104800180018000", - "0x800000000000010fffffffffffffffffffffffffffffffffffffffffffffc52", - "0x48127ffb7fff8000", - "0x48127ffb7fff8000", - "0x48127ffb7fff8000", - "0x48127e6c7fff8000", - "0x48127ffa7fff8000", - "0x48127ffa7fff8000", - "0x1104800180018000", - "0x800000000000010fffffffffffffffffffffffffffffffffffffffffffffd5e", - "0x480a7ffc7fff8000", - "0x480a7ffd7fff8000", - "0x480680017fff8000", - "0x0", - "0x1104800180018000", - "0x800000000000010fffffffffffffffffffffffffffffffffffffffffffffd28", - "0x48127ffd7fff8000", - "0x48127ffe7fff8000", - "0x48127dea7fff8000", - "0x480680017fff8000", - "0x0", - "0x480a7ffc7fff8000", - "0x480a7ffd7fff8000", - "0x1104800180018000", - "0x800000000000010fffffffffffffffffffffffffffffffffffffffffffffc80", - "0x48127fe27fff8000", - "0x48127ffd7fff8000", - "0x48127ffd7fff8000", - "0x208b7fff7fff7ffe", - "0x480a7ff57fff8000", - "0x1104800180018000", - "0x800000000000010fffffffffffffffffffffffffffffffffffffffffffff9b6", - "0x48127ffe7fff8000", - "0x480a7ff77fff8000", - "0x480a7ff97fff8000", - "0x480680017fff8000", - "0x150b7a02", - "0x1104800180018000", - "0x800000000000010fffffffffffffffffffffffffffffffffffffffffffffbff", - "0x482480017fff8000", - "0x800000000000011000000000000000000000000000000000000000000000000", - "0x20680017fff7fff", - "0x15", - "0x48127ffc7fff8000", - "0x48127ffc7fff8000", - "0x480a7ff97fff8000", - "0x48127fe17fff8000", - "0x480a7ff87fff8000", - "0x480a7ffa7fff8000", - "0x480a7ffb7fff8000", - "0x480a7ffc7fff8000", - "0x480a7ffd7fff8000", - "0x1104800180018000", - "0x800000000000010fffffffffffffffffffffffffffffffffffffffffffffc3e", - "0x400680017fff7fff", - "0x150b7a02", - "0x48127ffd7fff8000", - "0x480a7ff67fff8000", - "0x48127ffc7fff8000", - "0x480680017fff8000", - "0x1", - "0x208b7fff7fff7ffe", - "0x48127ffc7fff8000", - "0x48127ffc7fff8000", - "0x480a7ff97fff8000", - "0x480680017fff8000", - "0xa66bd575", - "0x1104800180018000", - "0x800000000000010fffffffffffffffffffffffffffffffffffffffffffffbe1", - "0x48127ffd7fff8000", - "0x480a7ff67fff8000", - "0x48127ffc7fff8000", - "0x48127ffc7fff8000", - "0x208b7fff7fff7ffe", - "0x480a7ffc7fff8000", - "0x480a7ffd7fff8000", - "0x480680017fff8000", - "0x262d01c4ea0ba5224219c45caec496441066662f6d51da63f7a7184ad4d7beb", - "0x208b7fff7fff7ffe", - "0x480a7ffc7fff8000", - "0x480a7ffd7fff8000", - "0x1104800180018000", - "0x800000000000010fffffffffffffffffffffffffffffffffffffffffffffffa", - "0x480a7ffb7fff8000", - "0x48127ffe7fff8000", - "0x1104800180018000", - "0x800000000000010fffffffffffffffffffffffffffffffffffffffffffff986", - "0x48127ffe7fff8000", - "0x482480017ff78000", - "0x1", - "0x1104800180018000", - "0x800000000000010fffffffffffffffffffffffffffffffffffffffffffff981", - "0x48127ffe7fff8000", - "0x48127fee7fff8000", - "0x48127fee7fff8000", - "0x48127ff57fff8000", - "0x48127ffb7fff8000", - "0x208b7fff7fff7ffe", - "0x480a7ffa7fff8000", - "0x480a7ffb7fff8000", - "0x1104800180018000", - "0x800000000000010ffffffffffffffffffffffffffffffffffffffffffffffe7", - "0x480a7ff97fff8000", - "0x48127ffe7fff8000", - "0x480a7ffc7fff8000", - "0x1104800180018000", - "0x800000000000010fffffffffffffffffffffffffffffffffffffffffffff97a", - "0x482480017ff88000", - "0x1", - "0x480a7ffd7fff8000", - "0x1104800180018000", - "0x800000000000010fffffffffffffffffffffffffffffffffffffffffffff975", - "0x48127ff07fff8000", - "0x48127ff07fff8000", - "0x208b7fff7fff7ffe", - "0x480a7ffa7fff8000", - "0x480680017fff8000", - "0xf11411b81c9239cfac89f17700199691be25bd01ff084beac5a58ae0f3a116", - "0x480a7ffc7fff8000", - "0x1104800180018000", - "0x800000000000010fffffffffffffffffffffffffffffffffffffffffffff93b", - "0x480a7ffd7fff8000", - "0x1104800180018000", - "0x800000000000010fffffffffffffffffffffffffffffffffffffffffffff938", - "0x480a7ffb7fff8000", - "0x48127ffe7fff8000", - "0x1104800180018000", - "0x800000000000010fffffffffffffffffffffffffffffffffffffffffffff9ea", - "0x48127fe17fff8000", - "0x48127ffd7fff8000", - "0x48127ffd7fff8000", - "0x208b7fff7fff7ffe", - "0x480a7ffa7fff8000", - "0x480a7ffb7fff8000", - "0x480a7ffc7fff8000", - "0x480a7ffd7fff8000", - "0x1104800180018000", - "0x800000000000010ffffffffffffffffffffffffffffffffffffffffffffffec", - "0x480a7ff97fff8000", - "0x48127ffe7fff8000", - "0x1104800180018000", - "0x800000000000010fffffffffffffffffffffffffffffffffffffffffffff94f", - "0x48127ffe7fff8000", - "0x482480017ff78000", - "0x1", - "0x1104800180018000", - "0x800000000000010fffffffffffffffffffffffffffffffffffffffffffff94a", - "0x48127ffe7fff8000", - "0x48127fee7fff8000", - "0x48127fee7fff8000", - "0x48127ff57fff8000", - "0x48127ffb7fff8000", - "0x208b7fff7fff7ffe", - "0x480a7ff87fff8000", - "0x480a7ff97fff8000", - "0x480a7ffa7fff8000", - "0x480a7ffb7fff8000", - "0x1104800180018000", - "0x800000000000010ffffffffffffffffffffffffffffffffffffffffffffffd7", - "0x480a7ff77fff8000", - "0x48127ffe7fff8000", - "0x480a7ffc7fff8000", - "0x1104800180018000", - "0x800000000000010fffffffffffffffffffffffffffffffffffffffffffff941", - "0x482480017ff88000", - "0x1", - "0x480a7ffd7fff8000", - "0x1104800180018000", - "0x800000000000010fffffffffffffffffffffffffffffffffffffffffffff93c", - "0x48127ff07fff8000", - "0x48127ff07fff8000", - "0x208b7fff7fff7ffe", - "0x480a7ffa7fff8000", - "0x480680017fff8000", - "0x2b0c4bfff42b5530b077c974b25c0efd9f26ebb99ff749ef9462b69c6569843", - "0x480a7ffc7fff8000", - "0x1104800180018000", - "0x800000000000010fffffffffffffffffffffffffffffffffffffffffffff902", - "0x480a7ffd7fff8000", - "0x1104800180018000", - "0x800000000000010fffffffffffffffffffffffffffffffffffffffffffff8ff", - "0x480a7ffb7fff8000", - "0x48127ffe7fff8000", - "0x1104800180018000", - "0x800000000000010fffffffffffffffffffffffffffffffffffffffffffff9b1", - "0x48127fe17fff8000", - "0x48127ffd7fff8000", - "0x48127ffd7fff8000", - "0x208b7fff7fff7ffe", - "0x480a7ffa7fff8000", - "0x480a7ffb7fff8000", - "0x480a7ffc7fff8000", - "0x480a7ffd7fff8000", - "0x1104800180018000", - "0x800000000000010ffffffffffffffffffffffffffffffffffffffffffffffec", - "0x480a7ff97fff8000", - "0x48127ffe7fff8000", - "0x1104800180018000", - "0x800000000000010fffffffffffffffffffffffffffffffffffffffffffff916", - "0x48127ffe7fff8000", - "0x482480017ff78000", - "0x1", - "0x1104800180018000", - "0x800000000000010fffffffffffffffffffffffffffffffffffffffffffff911", - "0x48127ffe7fff8000", - "0x48127fee7fff8000", - "0x48127fee7fff8000", - "0x48127ff57fff8000", - "0x48127ffb7fff8000", - "0x208b7fff7fff7ffe", - "0x480a7ff87fff8000", - "0x480a7ff97fff8000", - "0x480a7ffa7fff8000", - "0x480a7ffb7fff8000", - "0x1104800180018000", - "0x800000000000010ffffffffffffffffffffffffffffffffffffffffffffffd7", - "0x480a7ff77fff8000", - "0x48127ffe7fff8000", - "0x480a7ffc7fff8000", - "0x1104800180018000", - "0x800000000000010fffffffffffffffffffffffffffffffffffffffffffff908", - "0x482480017ff88000", - "0x1", - "0x480a7ffd7fff8000", - "0x1104800180018000", - "0x800000000000010fffffffffffffffffffffffffffffffffffffffffffff903", - "0x48127ff07fff8000", - "0x48127ff07fff8000", - "0x208b7fff7fff7ffe", - "0x480a7ff97fff8000", - "0x480680017fff8000", - "0x22dde6bfc6a0294f0be56e2261b1d20d98b72a06f6f327c202666e645a9b64", - "0x480a7ffb7fff8000", - "0x1104800180018000", - "0x800000000000010fffffffffffffffffffffffffffffffffffffffffffff8c9", - "0x480a7ffc7fff8000", - "0x1104800180018000", - "0x800000000000010fffffffffffffffffffffffffffffffffffffffffffff8c6", - "0x480a7ffd7fff8000", - "0x1104800180018000", - "0x800000000000010fffffffffffffffffffffffffffffffffffffffffffff8c3", - "0x480a7ffa7fff8000", - "0x48127ffe7fff8000", - "0x1104800180018000", - "0x800000000000010fffffffffffffffffffffffffffffffffffffffffffff975", - "0x48127fe17fff8000", - "0x48127ffd7fff8000", - "0x48127ffd7fff8000", - "0x208b7fff7fff7ffe", - "0x480a7ff97fff8000", - "0x480a7ffa7fff8000", - "0x480a7ffb7fff8000", - "0x480a7ffc7fff8000", - "0x480a7ffd7fff8000", - "0x1104800180018000", - "0x800000000000010ffffffffffffffffffffffffffffffffffffffffffffffe8", - "0x480a7ff87fff8000", - "0x48127ffe7fff8000", - "0x1104800180018000", - "0x800000000000010fffffffffffffffffffffffffffffffffffffffffffff8d9", - "0x48127ffe7fff8000", - "0x482480017ff78000", - "0x1", - "0x1104800180018000", - "0x800000000000010fffffffffffffffffffffffffffffffffffffffffffff8d4", - "0x48127ffe7fff8000", - "0x48127fee7fff8000", - "0x48127fee7fff8000", - "0x48127ff57fff8000", - "0x48127ffb7fff8000", - "0x208b7fff7fff7ffe", - "0x480a7ff77fff8000", - "0x480a7ff87fff8000", - "0x480a7ff97fff8000", - "0x480a7ffa7fff8000", - "0x480a7ffb7fff8000", - "0x1104800180018000", - "0x800000000000010ffffffffffffffffffffffffffffffffffffffffffffffd2", - "0x480a7ff67fff8000", - "0x48127ffe7fff8000", - "0x480a7ffc7fff8000", - "0x1104800180018000", - "0x800000000000010fffffffffffffffffffffffffffffffffffffffffffff8ca", - "0x482480017ff88000", - "0x1", - "0x480a7ffd7fff8000", - "0x1104800180018000", - "0x800000000000010fffffffffffffffffffffffffffffffffffffffffffff8c5", - "0x48127ff07fff8000", - "0x48127ff07fff8000", - "0x208b7fff7fff7ffe", - "0x480a7ffa7fff8000", - "0x480680017fff8000", - "0xb07881c3aa5eae500f7a20fc4f14798fc96eb5dbedba83d1c10500b7188c53", - "0x480a7ffc7fff8000", - "0x1104800180018000", - "0x800000000000010fffffffffffffffffffffffffffffffffffffffffffff88b", - "0x480a7ffd7fff8000", - "0x1104800180018000", - "0x800000000000010fffffffffffffffffffffffffffffffffffffffffffff888", - "0x480a7ffb7fff8000", - "0x48127ffe7fff8000", - "0x1104800180018000", - "0x800000000000010fffffffffffffffffffffffffffffffffffffffffffff93a", - "0x48127fe17fff8000", - "0x48127ffd7fff8000", - "0x48127ffd7fff8000", - "0x208b7fff7fff7ffe", - "0x480a7ffa7fff8000", - "0x480a7ffb7fff8000", - "0x480a7ffc7fff8000", - "0x480a7ffd7fff8000", - "0x1104800180018000", - "0x800000000000010ffffffffffffffffffffffffffffffffffffffffffffffec", - "0x480a7ff97fff8000", - "0x48127ffe7fff8000", - "0x1104800180018000", - "0x800000000000010fffffffffffffffffffffffffffffffffffffffffffff89f", - "0x48127ffe7fff8000", - "0x482480017ff78000", - "0x1", - "0x1104800180018000", - "0x800000000000010fffffffffffffffffffffffffffffffffffffffffffff89a", - "0x48127ffe7fff8000", - "0x48127fee7fff8000", - "0x48127fee7fff8000", - "0x48127ff57fff8000", - "0x48127ffb7fff8000", - "0x208b7fff7fff7ffe", - "0x480a7ff87fff8000", - "0x480a7ff97fff8000", - "0x480a7ffa7fff8000", - "0x480a7ffb7fff8000", - "0x1104800180018000", - "0x800000000000010ffffffffffffffffffffffffffffffffffffffffffffffd7", - "0x480a7ff77fff8000", - "0x48127ffe7fff8000", - "0x480a7ffc7fff8000", - "0x1104800180018000", - "0x800000000000010fffffffffffffffffffffffffffffffffffffffffffff891", - "0x482480017ff88000", - "0x1", - "0x480a7ffd7fff8000", - "0x1104800180018000", - "0x800000000000010fffffffffffffffffffffffffffffffffffffffffffff88c", - "0x48127ff07fff8000", - "0x48127ff07fff8000", - "0x208b7fff7fff7ffe", - "0x480a7ffb7fff8000", - "0x480a7ffc7fff8000", - "0x480a7ffd7fff8000", - "0x480680017fff8000", - "0x780e9d63", - "0x1104800180018000", - "0x800000000000010fffffffffffffffffffffffffffffffffffffffffffffab5", - "0x208b7fff7fff7ffe", - "0x480a7ffb7fff8000", - "0x480a7ffc7fff8000", - "0x480a7ffd7fff8000", - "0x1104800180018000", - "0x800000000000010fffffffffffffffffffffffffffffffffffffffffffffee9", - "0x208b7fff7fff7ffe", - "0x40780017fff7fff", - "0x0", - "0x480a7ffb7fff8000", - "0x480a7ffc7fff8000", - "0x480a7ffd7fff8000", - "0x1104800180018000", - "0x800000000000010fffffffffffffffffffffffffffffffffffffffffffff9dd", - "0x480a7ff97fff8000", - "0x480a7ffa7fff8000", - "0x48127ffd7fff8000", - "0x1104800180018000", - "0x800000000000010fffffffffffffffffffffffffffffffffffffffffffffff1", - "0x48127ffd7fff8000", - "0x480a7ffc7fff8000", - "0x480a7ffd7fff8000", - "0x48127ffb7fff8000", - "0x48127ffb7fff8000", - "0x1104800180018000", - "0x800000000000010fffffffffffffffffffffffffffffffffffffffffffff9fc", - "0x400680017fff7fff", - "0x1", - "0x48127fd37fff8000", - "0x48127fd37fff8000", - "0x48127ffc7fff8000", - "0x480a7ffc7fff8000", - "0x480a7ffd7fff8000", - "0x1104800180018000", - "0x800000000000010ffffffffffffffffffffffffffffffffffffffffffffff01", - "0x208b7fff7fff7ffe", - "0x40780017fff7fff", - "0x0", - "0x480a7ffa7fff8000", - "0x480a7ffc7fff8000", - "0x480a7ffd7fff8000", - "0x1104800180018000", - "0x800000000000010fffffffffffffffffffffffffffffffffffffffffffff9c0", - "0x480a7ff87fff8000", - "0x480a7ff97fff8000", - "0x48127ffd7fff8000", - "0x480a7ffb7fff8000", - "0x1104800180018000", - "0x800000000000010fffffffffffffffffffffffffffffffffffffffffffffc5a", - "0x48127ffd7fff8000", - "0x480a7ffc7fff8000", - "0x480a7ffd7fff8000", - "0x48127ffb7fff8000", - "0x48127ffb7fff8000", - "0x1104800180018000", - "0x800000000000010fffffffffffffffffffffffffffffffffffffffffffff9de", - "0x400680017fff7fff", - "0x1", - "0x48127fd37fff8000", - "0x48127fd37fff8000", - "0x48127ffc7fff8000", - "0x480a7ffb7fff8000", - "0x480a7ffc7fff8000", - "0x480a7ffd7fff8000", - "0x1104800180018000", - "0x800000000000010ffffffffffffffffffffffffffffffffffffffffffffff57", - "0x208b7fff7fff7ffe", - "0x480a7ff77fff8000", - "0x480a7ff87fff8000", - "0x480a7ff97fff8000", - "0x480a7ffa7fff8000", - "0x480a7ffc7fff8000", - "0x480a7ffd7fff8000", - "0x1104800180018000", - "0xdc", - "0x480a7ffb7fff8000", - "0x480a7ffc7fff8000", - "0x480a7ffd7fff8000", - "0x1104800180018000", - "0xbd", - "0x480a7ffa7fff8000", - "0x480a7ffb7fff8000", - "0x480a7ffc7fff8000", - "0x480a7ffd7fff8000", - "0x1104800180018000", - "0x800000000000010fffffffffffffffffffffffffffffffffffffffffffffccb", - "0x208b7fff7fff7ffe", - "0x480a7ff57fff8000", - "0x480a7ff67fff8000", - "0x480a7ff77fff8000", - "0x480a7ff87fff8000", - "0x480a7ffa7fff8000", - "0x480a7ffb7fff8000", - "0x1104800180018000", - "0xc8", - "0x480a7ff97fff8000", - "0x480a7ffa7fff8000", - "0x480a7ffb7fff8000", - "0x1104800180018000", - "0xa9", - "0x480a7ff87fff8000", - "0x480a7ff97fff8000", - "0x480a7ffa7fff8000", - "0x480a7ffb7fff8000", - "0x480a7ffc7fff8000", - "0x480a7ffd7fff8000", - "0x1104800180018000", - "0x800000000000010fffffffffffffffffffffffffffffffffffffffffffffcd8", - "0x208b7fff7fff7ffe", - "0x480a7ff87fff8000", - "0x480a7ff97fff8000", - "0x480a7ffa7fff8000", - "0x480a7ffc7fff8000", - "0x480a7ffd7fff8000", - "0x1104800180018000", - "0x25", - "0x480a7ffb7fff8000", - "0x480a7ffc7fff8000", - "0x480a7ffd7fff8000", - "0x1104800180018000", - "0x94", - "0x480a7ffb7fff8000", - "0x480a7ffc7fff8000", - "0x480a7ffd7fff8000", - "0x1104800180018000", - "0x800000000000010fffffffffffffffffffffffffffffffffffffffffffffdcd", - "0x208b7fff7fff7ffe", - "0x480a7ffa7fff8000", - "0x480a7ff97fff8000", - "0x480a7ffb7fff8000", - "0x480a7ffc7fff8000", - "0x480a7ffd7fff8000", - "0x1104800180018000", - "0x800000000000010fffffffffffffffffffffffffffffffffffffffffffffc0f", - "0x48127ffd7fff8000", - "0x48127ffb7fff8000", - "0x48127ffc7fff8000", - "0x48127ffc7fff8000", - "0x480a7ffc7fff8000", - "0x480a7ffd7fff8000", - "0x1104800180018000", - "0x99", - "0x480a7ffc7fff8000", - "0x480a7ffd7fff8000", - "0x1104800180018000", - "0x24", - "0x480a7ffc7fff8000", - "0x480a7ffd7fff8000", - "0x1104800180018000", - "0x800000000000010fffffffffffffffffffffffffffffffffffffffffffffdec", - "0x208b7fff7fff7ffe", - "0x480a7ffa7fff8000", - "0x480a7ff97fff8000", - "0x480a7ffb7fff8000", - "0x1104800180018000", - "0x800000000000010fffffffffffffffffffffffffffffffffffffffffffffe53", - "0x480a7ffc7fff8000", - "0x480a7ffd7fff8000", - "0x1104800180018000", - "0x800000000000010fffffffffffffffffffffffffffffffffffffffffffffe99", - "0x480a7ffc7fff8000", - "0x480a7ffd7fff8000", - "0x48127fb77fff8000", - "0x48127fb77fff8000", - "0x1104800180018000", - "0x800000000000010fffffffffffffffffffffffffffffffffffffffffffffecc", - "0x48127f727fff8000", - "0x48127f727fff8000", - "0x480680017fff8000", - "0x1", - "0x480680017fff8000", - "0x0", - "0x1104800180018000", - "0x800000000000010fffffffffffffffffffffffffffffffffffffffffffffa2c", - "0x1104800180018000", - "0x800000000000010fffffffffffffffffffffffffffffffffffffffffffffe52", - "0x48127ffe7fff8000", - "0x48127ffc7fff8000", - "0x48127ffd7fff8000", - "0x208b7fff7fff7ffe", - "0x40780017fff7fff", - "0x6", - "0x480a7ffa7fff8000", - "0x480a7ff97fff8000", - "0x480a7ffb7fff8000", - "0x1104800180018000", - "0x800000000000010fffffffffffffffffffffffffffffffffffffffffffffe34", - "0x480680017fff8000", - "0x1", - "0x480680017fff8000", - "0x0", - "0x1104800180018000", - "0x800000000000010fffffffffffffffffffffffffffffffffffffffffffffa30", - "0x48127ffb7fff8000", - "0x48127ffb7fff8000", - "0x48127ffb7fff8000", - "0x480a7ffc7fff8000", - "0x480a7ffd7fff8000", - "0x1104800180018000", - "0x800000000000010fffffffffffffffffffffffffffffffffffffffffffffe95", - "0x40137ffe7fff8000", - "0x40137fff7fff8001", - "0x48127ffb7fff8000", - "0x48127ffb7fff8000", - "0x48127ffb7fff8000", - "0x48127faf7fff8000", - "0x48127faf7fff8000", - "0x1104800180018000", - "0x800000000000010fffffffffffffffffffffffffffffffffffffffffffffe53", - "0x40137ffe7fff8002", - "0x40137fff7fff8003", - "0x48127ffb7fff8000", - "0x48127ffb7fff8000", - "0x48127ffb7fff8000", - "0x48127f637fff8000", - "0x48127f637fff8000", - "0x480680017fff8000", - "0x0", - "0x480680017fff8000", - "0x0", - "0x1104800180018000", - "0x800000000000010fffffffffffffffffffffffffffffffffffffffffffffe5b", - "0x480a7ffc7fff8000", - "0x480a7ffd7fff8000", - "0x480680017fff8000", - "0x0", - "0x480680017fff8000", - "0x0", - "0x1104800180018000", - "0x800000000000010fffffffffffffffffffffffffffffffffffffffffffffe8c", - "0x48127ed57fff8000", - "0x48127ed57fff8000", - "0x1104800180018000", - "0x800000000000010fffffffffffffffffffffffffffffffffffffffffffffe18", - "0x40137ffd7fff8004", - "0x40137ffe7fff8005", - "0x48127ebb7fff8000", - "0x48127ebb7fff8000", - "0x480a80007fff8000", - "0x480a80017fff8000", - "0x1104800180018000", - "0x800000000000010fffffffffffffffffffffffffffffffffffffffffffff968", - "0x20680017fff7fff", - "0x15", - "0x480a80047fff8000", - "0x480a80057fff8000", - "0x48127ffc7fff8000", - "0x480a80027fff8000", - "0x480a80037fff8000", - "0x480a80007fff8000", - "0x480a80017fff8000", - "0x1104800180018000", - "0x800000000000010fffffffffffffffffffffffffffffffffffffffffffffe75", - "0x480a80007fff8000", - "0x480a80017fff8000", - "0x480a80027fff8000", - "0x480a80037fff8000", - "0x1104800180018000", - "0x800000000000010fffffffffffffffffffffffffffffffffffffffffffffe36", - "0x48127ffe7fff8000", - "0x48127ffc7fff8000", - "0x48127ffd7fff8000", - "0x208b7fff7fff7ffe", - "0x480a80057fff8000", - "0x480a80047fff8000", - "0x48127ffc7fff8000", - "0x208b7fff7fff7ffe", - "0x480a7ff97fff8000", - "0x480a7ff87fff8000", - "0x480a7ffa7fff8000", - "0x480a7ffb7fff8000", - "0x1104800180018000", - "0x800000000000010fffffffffffffffffffffffffffffffffffffffffffffb7a", - "0x48127ffb7fff8000", - "0x48127ffb7fff8000", - "0x48127ffb7fff8000", - "0x480a7ffb7fff8000", - "0x48127ffa7fff8000", - "0x48127ffa7fff8000", - "0x480a7ffc7fff8000", - "0x480a7ffd7fff8000", - "0x1104800180018000", - "0x800000000000010fffffffffffffffffffffffffffffffffffffffffffffe94", - "0x480a7ffc7fff8000", - "0x480a7ffd7fff8000", - "0x48127fab7fff8000", - "0x48127fab7fff8000", - "0x1104800180018000", - "0x800000000000010fffffffffffffffffffffffffffffffffffffffffffffec8", - "0x48127ffe7fff8000", - "0x48127ffc7fff8000", - "0x48127ffd7fff8000", - "0x208b7fff7fff7ffe", - "0x40780017fff7fff", - "0x6", - "0x480a7ff97fff8000", - "0x480a7ff87fff8000", - "0x480a7ffa7fff8000", - "0x480a7ffb7fff8000", - "0x1104800180018000", - "0x800000000000010fffffffffffffffffffffffffffffffffffffffffffffb5e", - "0x480680017fff8000", - "0x1", - "0x480680017fff8000", - "0x0", - "0x1104800180018000", - "0x800000000000010fffffffffffffffffffffffffffffffffffffffffffff9be", - "0x40137ffe7fff8000", - "0x40137fff7fff8001", - "0x48127ffb7fff8000", - "0x48127ffb7fff8000", - "0x48127ffb7fff8000", - "0x480a7ffc7fff8000", - "0x480a7ffd7fff8000", - "0x1104800180018000", - "0x800000000000010fffffffffffffffffffffffffffffffffffffffffffffe98", - "0x40137ffb7fff8002", - "0x40137ffc7fff8003", - "0x40137ffe7fff8004", - "0x40137fff7fff8005", - "0x48127ffd7fff8000", - "0x480a80047fff8000", - "0x480a80057fff8000", - "0x480a80007fff8000", - "0x480a80017fff8000", - "0x1104800180018000", - "0x800000000000010fffffffffffffffffffffffffffffffffffffffffffff913", - "0x482480017fff8000", - "0x800000000000011000000000000000000000000000000000000000000000000", - "0x20680017fff7fff", - "0x1a", - "0x480a80027fff8000", - "0x480a80037fff8000", - "0x48127ffb7fff8000", - "0x480a7ffc7fff8000", - "0x480a7ffd7fff8000", - "0x480680017fff8000", - "0x0", - "0x480680017fff8000", - "0x0", - "0x1104800180018000", - "0x800000000000010fffffffffffffffffffffffffffffffffffffffffffffe93", - "0x480a7ffb7fff8000", - "0x480a80007fff8000", - "0x480a80017fff8000", - "0x480680017fff8000", - "0x0", - "0x480680017fff8000", - "0x0", - "0x1104800180018000", - "0x800000000000010fffffffffffffffffffffffffffffffffffffffffffffe50", - "0x48127ffe7fff8000", - "0x48127ffc7fff8000", - "0x48127ffd7fff8000", - "0x208b7fff7fff7ffe", - "0x480a80027fff8000", - "0x480a80037fff8000", - "0x48127ffb7fff8000", - "0x480a7ffb7fff8000", - "0x480a80007fff8000", - "0x480a80017fff8000", - "0x1104800180018000", - "0x800000000000010fffffffffffffffffffffffffffffffffffffffffffffe2e", - "0x48127ffb7fff8000", - "0x48127ffb7fff8000", - "0x48127ffb7fff8000", - "0x480a7ffb7fff8000", - "0x480a80047fff8000", - "0x480a80057fff8000", - "0x48127ff87fff8000", - "0x48127ff87fff8000", - "0x1104800180018000", - "0x800000000000010fffffffffffffffffffffffffffffffffffffffffffffe3a", - "0x48127fad7fff8000", - "0x48127fad7fff8000", - "0x480a80047fff8000", - "0x480a80057fff8000", - "0x1104800180018000", - "0x800000000000010fffffffffffffffffffffffffffffffffffffffffffffe6e", - "0x48127ffe7fff8000", - "0x48127ffc7fff8000", - "0x48127ffd7fff8000", - "0x208b7fff7fff7ffe", - "0x40780017fff7fff", - "0x3", - "0x402b7ffb80007ffc", - "0x20780017fff8000", - "0x5", - "0x480a7ffa7fff8000", - "0x480a7ffd7fff8000", - "0x208b7fff7fff7ffe", - "0x4846800180008000", - "0x2aaaaaaaaaaaab0555555555555555555555555555555555555555555555556", - "0x20780017fff8002", - "0x7", - "0x400380007ffa8001", - "0x482680017ffa8000", - "0x1", - "0x10780017fff7fff", - "0x3", - "0x480a7ffa7fff8000", - "0x480a7ffb7fff8000", - "0x482680017ffc8000", - "0x800000000000011000000000000000000000000000000000000000000000000", - "0x480a80017fff8000", - "0x48127ffb7fff8000", - "0x480a7ffd7fff8000", - "0x480a80027fff8000", - "0x1104800180018000", - "0x3", - "0x208b7fff7fff7ffe", - "0x40780017fff7fff", - "0x2", - "0x480280007ff78000", - "0x484480017fff8000", - "0x3", - "0x48327fff7ff88001", - "0x4800800280007fff", - "0x482680017ff78000", - "0x1", - "0x400180007ffe7ffa", - "0x400380007ffc7ffa", - "0x400180017ffe8000", - "0x400380017ffc8000", - "0x20780017fff8001", - "0xf", - "0x480080007fff8000", - "0x482480017fff8000", - "0x1", - "0x484480017fff8000", - "0x3", - "0x48307fff7ffb8002", - "0x4000800180017ff9", - "0x4800800280018000", - "0x4001800080007ffa", - "0x482480017ffa8001", - "0x1", - "0xa0680017fff7ffd", - "0x800000000000010fffffffffffffffffffffffffffffffffffffffffffffff6", - "0x40317ffe80007ff9", - "0x480080007fff8000", - "0x48287ff780007ffe", - "0x400280027ffc7ffb", - "0x48317fff80007ffb", - "0x20680017fff7fff", - "0x7", - "0x482480017ffc8000", - "0x1", - "0x482680017ffc8000", - "0x3", - "0x208b7fff7fff7ffe", - "0x40780017fff7fff", - "0x1", - "0x20780017fff7ffd", - "0xe", - "0x482680017ffa8000", - "0x1", - "0x48307fff80007ffe", - "0x400080017ff97fff", - "0x482480017ff98000", - "0x2", - "0x480a7ff87fff8000", - "0x480a7ff97fff8000", - "0x48127ffa7fff8000", - "0x48127ff87fff8000", - "0x10780017fff7fff", - "0xc", - "0x482480017ffb8000", - "0x1", - "0x480a7ffa7fff8000", - "0x48127ffd7fff8000", - "0x1104800180018000", - "0x800000000000010fffffffffffffffffffffffffffffffffffffffffffff709", - "0x480a7ff87fff8000", - "0x480a7ff97fff8000", - "0x48127fe37fff8000", - "0x48127fe17fff8000", - "0x482680017ffc8000", - "0x3", - "0x480a7ffd7fff8000", - "0x1104800180018000", - "0x800000000000010ffffffffffffffffffffffffffffffffffffffffffffffbc", - "0x208b7fff7fff7ffe", - "0x40780017fff7fff", - "0x1", - "0x208b7fff7fff7ffe", - "0x40780017fff7fff", - "0x1", - "0x400380007ffc7ffd", - "0x400380017ffc8000", - "0x400380027ffc8000", - "0x482680017ffc8000", - "0x3", - "0x480a80007fff8000", - "0x208b7fff7fff7ffe", - "0x400380007ffb7ffc", - "0x400380027ffb7ffd", - "0x482680017ffb8000", - "0x3", - "0x208b7fff7fff7ffe", - "0x40780017fff7fff", - "0x1", - "0x1104800180018000", - "0x800000000000010ffffffffffffffffffffffffffffffffffffffffffffffee", - "0x40137fff7fff8000", - "0x480a7ffb7fff8000", - "0x480a7ffc7fff8000", - "0x480a7ffd7fff8000", - "0x480a80007fff8000", - "0x1104800180018000", - "0x800000000000010ffffffffffffffffffffffffffffffffffffffffffffff83", - "0x48127ffe7fff8000", - "0x480a80007fff8000", - "0x48127ffd7fff8000", - "0x208b7fff7fff7ffe", - "0x40780017fff7fff", - "0x1", - "0x208b7fff7fff7ffe", - "0x40780017fff7fff", - "0x3", - "0x480a7ffa7fff8000", - "0x480a7ffb7fff8000", - "0x480a7ffc7fff8000", - "0x1104800180018000", - "0x800000000000010ffffffffffffffffffffffffffffffffffffffffffffffea", - "0x40137ffe7fff8000", - "0x40137fff7fff8001", - "0x40137ffd7fff8002", - "0x4829800080008001", - "0x480a80007fff8000", - "0x484480017ffe8000", - "0x2aaaaaaaaaaaab0555555555555555555555555555555555555555555555556", - "0x480a7ffd7fff8000", - "0x1104800180018000", - "0x6", - "0x480a80027fff8000", - "0x480a80007fff8000", - "0x480a80017fff8000", - "0x208b7fff7fff7ffe", - "0x20780017fff7ffc", - "0x3", - "0x208b7fff7fff7ffe", - "0x400380017ffb7ffd", - "0x482680017ffb8000", - "0x3", - "0x482680017ffc8000", - "0x800000000000011000000000000000000000000000000000000000000000000", - "0x480a7ffd7fff8000", - "0x1104800180018000", - "0x800000000000010fffffffffffffffffffffffffffffffffffffffffffffff8", - "0x208b7fff7fff7ffe", - "0x40780017fff7fff", - "0x1", - "0x1104800180018000", - "0x800000000000010fffffffffffffffffffffffffffffffffffffffffffff623", - "0x40137fff7fff8000", - "0x4003800080007ffb", - "0x4003800180007ffc", - "0x4003800280007ffd", - "0x4826800180008000", - "0x3", - "0x480a7ff87fff8000", - "0x480a7ffa7fff8000", - "0x480680017fff8000", - "0x226ad7e84c1fe08eb4c525ed93cccadf9517670341304571e66f7c4f95cbe54", - "0x4828800080007ffc", - "0x480a80007fff8000", - "0x1104800180018000", - "0x800000000000010fffffffffffffffffffffffffffffffffffffffffffff62e", - "0x480080007fff8000", - "0x400280007ff97fff", - "0x482480017ffe8000", - "0x1", - "0x480080007ffd8000", - "0x48307fff7ffe8000", - "0x40307ffb7ffa7fff", - "0x48127ff97fff8000", - "0x482680017ff98000", - "0x1", - "0x480080007ff98000", - "0x482480017ff88000", - "0x1", - "0x208b7fff7fff7ffe", - "0x480a7ff77fff8000", - "0x480a7ff87fff8000", - "0x480a7ff97fff8000", - "0x480a7ffa7fff8000", - "0x480a7ffc7fff8000", - "0x480a7ffd7fff8000", - "0x1104800180018000", - "0x2a", - "0x48287ffb80007fff", - "0x20680017fff7fff", - "0x8", - "0x48127ffb7fff8000", - "0x48127ffb7fff8000", - "0x48127ffb7fff8000", - "0x480680017fff8000", - "0x1", - "0x208b7fff7fff7ffe", - "0x48127ffb7fff8000", - "0x48127ffb7fff8000", - "0x48127ffb7fff8000", - "0x480680017fff8000", - "0x0", - "0x208b7fff7fff7ffe", - "0x480a7ffb7fff8000", - "0x480a7ffc7fff8000", - "0x480a7ffd7fff8000", - "0x1104800180018000", - "0x800000000000010fffffffffffffffffffffffffffffffffffffffffffff76e", - "0x482480017fff8000", - "0x800000000000011000000000000000000000000000000000000000000000000", - "0x20680017fff7fff", - "0x9", - "0x480a7ffa7fff8000", - "0x480a7ffc7fff8000", - "0x480a7ffd7fff8000", - "0x1104800180018000", - "0x800000000000010fffffffffffffffffffffffffffffffffffffffffffff5e5", - "0x10780017fff7fff", - "0x7", - "0x480a7ffa7fff8000", - "0x480a7ffd7fff8000", - "0x480a7ffc7fff8000", - "0x1104800180018000", - "0x800000000000010fffffffffffffffffffffffffffffffffffffffffffff5de", - "0x48127ffe7fff8000", - "0x48127ff57fff8000", - "0x48127ffd7fff8000", - "0x208b7fff7fff7ffe", - "0x40780017fff7fff", - "0x0", - "0x20780017fff7ffc", - "0x7", - "0x480a7ff87fff8000", - "0x480a7ff97fff8000", - "0x480a7ffa7fff8000", - "0x480a7ffb7fff8000", - "0x208b7fff7fff7ffe", - "0x480a7ff97fff8000", - "0x480a7ffa7fff8000", - "0x480a7ffb7fff8000", - "0x480280007ffd8000", - "0x1104800180018000", - "0x800000000000010ffffffffffffffffffffffffffffffffffffffffffffffdb", - "0x480a7ff87fff8000", - "0x48127ffc7fff8000", - "0x48127ffc7fff8000", - "0x48127ffc7fff8000", - "0x482680017ffc8000", - "0x800000000000011000000000000000000000000000000000000000000000000", - "0x482680017ffd8000", - "0x1", - "0x1104800180018000", - "0x800000000000010ffffffffffffffffffffffffffffffffffffffffffffffea", - "0x208b7fff7fff7ffe", - "0x40780017fff7fff", - "0x2", - "0x1104800180018000", - "0x800000000000010fffffffffffffffffffffffffffffffffffffffffffff5b9", - "0x40137fff7fff8000", - "0x480680017fff8000", - "0x17085574e1c42492e9895381192414748882d65fdfc58190010fd4ad12b9bee", - "0x4002800080007fff", - "0x1104800180018000", - "0x800000000000010fffffffffffffffffffffffffffffffffffffffffffff5b3", - "0x40137fff7fff8001", - "0x4003800080017ffb", - "0x4003800180017ffc", - "0x4003800280017ffd", - "0x4826800180018000", - "0x3", - "0x480a7ff97fff8000", - "0x480680017fff8000", - "0x1", - "0x480a80007fff8000", - "0x4828800180007ffc", - "0x480a80017fff8000", - "0x1104800180018000", - "0x800000000000010fffffffffffffffffffffffffffffffffffffffffffff5e1", - "0x480a7ffa7fff8000", - "0x208b7fff7fff7ffe", - "0x480a7ffc7fff8000", - "0x480a7ffd7fff8000", - "0x480680017fff8000", - "0x3db98c277ad1506f258354ce31a5a0de8a45d41f9442611b6d927ee7763b960", - "0x208b7fff7fff7ffe", - "0x480a7ffc7fff8000", - "0x480a7ffd7fff8000", - "0x1104800180018000", - "0x800000000000010fffffffffffffffffffffffffffffffffffffffffffffffa", - "0x480a7ffb7fff8000", - "0x48127ffe7fff8000", - "0x1104800180018000", - "0x800000000000010fffffffffffffffffffffffffffffffffffffffffffff5c2", - "0x48127ffe7fff8000", - "0x48127ff57fff8000", - "0x48127ff57fff8000", - "0x48127ffc7fff8000", - "0x208b7fff7fff7ffe", - "0x480a7ffb7fff8000", - "0x480a7ffc7fff8000", - "0x1104800180018000", - "0x800000000000010ffffffffffffffffffffffffffffffffffffffffffffffed", - "0x480a7ffa7fff8000", - "0x48127ffe7fff8000", - "0x480a7ffd7fff8000", - "0x1104800180018000", - "0x800000000000010fffffffffffffffffffffffffffffffffffffffffffff5bc", - "0x48127ff67fff8000", - "0x48127ff67fff8000", - "0x208b7fff7fff7ffe", - "0x480a7ffc7fff8000", - "0x480a7ffd7fff8000", - "0x480680017fff8000", - "0x44c9531167581fe2dd1e59b476ec4a394bc01804f1f135efbeeb21b5396bc7", - "0x208b7fff7fff7ffe", - "0x480a7ffc7fff8000", - "0x480a7ffd7fff8000", - "0x1104800180018000", - "0x800000000000010fffffffffffffffffffffffffffffffffffffffffffffffa", - "0x480a7ffb7fff8000", - "0x48127ffe7fff8000", - "0x1104800180018000", - "0x800000000000010fffffffffffffffffffffffffffffffffffffffffffff5a4", - "0x48127ffe7fff8000", - "0x48127ff57fff8000", - "0x48127ff57fff8000", - "0x48127ffc7fff8000", - "0x208b7fff7fff7ffe", - "0x480a7ffb7fff8000", - "0x480a7ffc7fff8000", - "0x1104800180018000", - "0x800000000000010ffffffffffffffffffffffffffffffffffffffffffffffed", - "0x480a7ffa7fff8000", - "0x48127ffe7fff8000", - "0x480a7ffd7fff8000", - "0x1104800180018000", - "0x800000000000010fffffffffffffffffffffffffffffffffffffffffffff59e", - "0x48127ff67fff8000", - "0x48127ff67fff8000", - "0x208b7fff7fff7ffe", - "0x480a7ffc7fff8000", - "0x480a7ffd7fff8000", - "0x480680017fff8000", - "0x35e8e634877bbb5c9907eb6b57090687409bba90ac09f4252480e5e256242f7", - "0x208b7fff7fff7ffe", - "0x480a7ffc7fff8000", - "0x480a7ffd7fff8000", - "0x1104800180018000", - "0x800000000000010fffffffffffffffffffffffffffffffffffffffffffffffa", - "0x480a7ffb7fff8000", - "0x48127ffe7fff8000", - "0x1104800180018000", - "0x800000000000010fffffffffffffffffffffffffffffffffffffffffffff586", - "0x48127ffe7fff8000", - "0x48127ff57fff8000", - "0x48127ff57fff8000", - "0x48127ffc7fff8000", - "0x208b7fff7fff7ffe", - "0x480a7ffb7fff8000", - "0x480a7ffc7fff8000", - "0x1104800180018000", - "0x800000000000010ffffffffffffffffffffffffffffffffffffffffffffffed", - "0x480a7ffa7fff8000", - "0x48127ffe7fff8000", - "0x480a7ffd7fff8000", - "0x1104800180018000", - "0x800000000000010fffffffffffffffffffffffffffffffffffffffffffff580", - "0x48127ff67fff8000", - "0x48127ff67fff8000", - "0x208b7fff7fff7ffe", - "0x480a7ffb7fff8000", - "0x480680017fff8000", - "0x12ccf5b33005c4de327e0df3d0727e3255aedbad20cb85c8c2589a1f99c21df", - "0x480a7ffd7fff8000", - "0x1104800180018000", - "0x800000000000010fffffffffffffffffffffffffffffffffffffffffffff546", - "0x480a7ffc7fff8000", - "0x48127ffe7fff8000", - "0x1104800180018000", - "0x800000000000010fffffffffffffffffffffffffffffffffffffffffffff5f8", - "0x48127fe17fff8000", - "0x48127ffd7fff8000", - "0x48127ffd7fff8000", - "0x208b7fff7fff7ffe", - "0x480a7ffb7fff8000", - "0x480a7ffc7fff8000", - "0x480a7ffd7fff8000", - "0x1104800180018000", - "0x800000000000010fffffffffffffffffffffffffffffffffffffffffffffff0", - "0x480a7ffa7fff8000", - "0x48127ffe7fff8000", - "0x1104800180018000", - "0x800000000000010fffffffffffffffffffffffffffffffffffffffffffff55e", - "0x48127ffe7fff8000", - "0x482480017ff78000", - "0x1", - "0x1104800180018000", - "0x800000000000010fffffffffffffffffffffffffffffffffffffffffffff559", - "0x48127ffe7fff8000", - "0x482480017ff08000", - "0x2", - "0x1104800180018000", - "0x800000000000010fffffffffffffffffffffffffffffffffffffffffffff554", - "0x48127ffe7fff8000", - "0x48127fe77fff8000", - "0x48127fe77fff8000", - "0x48127fee7fff8000", - "0x48127ff47fff8000", - "0x48127ffa7fff8000", - "0x208b7fff7fff7ffe", - "0x480a7ff87fff8000", - "0x480a7ff97fff8000", - "0x480a7ffa7fff8000", - "0x1104800180018000", - "0x800000000000010ffffffffffffffffffffffffffffffffffffffffffffffd6", - "0x480a7ff77fff8000", - "0x48127ffe7fff8000", - "0x480a7ffb7fff8000", - "0x1104800180018000", - "0x800000000000010fffffffffffffffffffffffffffffffffffffffffffff54b", - "0x482480017ff88000", - "0x1", - "0x480a7ffc7fff8000", - "0x1104800180018000", - "0x800000000000010fffffffffffffffffffffffffffffffffffffffffffff546", - "0x482480017ff28000", - "0x2", - "0x480a7ffd7fff8000", - "0x1104800180018000", - "0x800000000000010fffffffffffffffffffffffffffffffffffffffffffff541", - "0x48127fea7fff8000", - "0x48127fea7fff8000", - "0x208b7fff7fff7ffe", - "0x480a7ffa7fff8000", - "0x480680017fff8000", - "0x367068c387e60d6333f2217e3f1d26deb2254c21fb93e70c54632d6e387dcdc", - "0x480a7ffc7fff8000", - "0x1104800180018000", - "0x800000000000010fffffffffffffffffffffffffffffffffffffffffffff507", - "0x480a7ffd7fff8000", - "0x1104800180018000", - "0x800000000000010fffffffffffffffffffffffffffffffffffffffffffff504", - "0x480a7ffb7fff8000", - "0x48127ffe7fff8000", - "0x1104800180018000", - "0x800000000000010fffffffffffffffffffffffffffffffffffffffffffff5b6", - "0x48127fe17fff8000", - "0x48127ffd7fff8000", - "0x48127ffd7fff8000", - "0x208b7fff7fff7ffe", - "0x480a7ffa7fff8000", - "0x480a7ffb7fff8000", - "0x480a7ffc7fff8000", - "0x480a7ffd7fff8000", - "0x1104800180018000", - "0x800000000000010ffffffffffffffffffffffffffffffffffffffffffffffec", - "0x480a7ff97fff8000", - "0x48127ffe7fff8000", - "0x1104800180018000", - "0x800000000000010fffffffffffffffffffffffffffffffffffffffffffff51b", - "0x48127ffe7fff8000", - "0x48127ff57fff8000", - "0x48127ff57fff8000", - "0x48127ffc7fff8000", - "0x208b7fff7fff7ffe", - "0x480a7ff97fff8000", - "0x480a7ffa7fff8000", - "0x480a7ffb7fff8000", - "0x480a7ffc7fff8000", - "0x1104800180018000", - "0x800000000000010ffffffffffffffffffffffffffffffffffffffffffffffdd", - "0x480a7ff87fff8000", - "0x48127ffe7fff8000", - "0x480a7ffd7fff8000", - "0x1104800180018000", - "0x800000000000010fffffffffffffffffffffffffffffffffffffffffffff513", - "0x48127ff67fff8000", - "0x48127ff67fff8000", - "0x208b7fff7fff7ffe", - "0x480a7ffc7fff8000", - "0x480a7ffd7fff8000", - "0x480680017fff8000", - "0x3313fccdc1fbf6d484442a55907126871bafe1c11074ea072b3b44413096b2c", - "0x208b7fff7fff7ffe", - "0x480a7ffc7fff8000", - "0x480a7ffd7fff8000", - "0x1104800180018000", - "0x800000000000010fffffffffffffffffffffffffffffffffffffffffffffffa", - "0x480a7ffb7fff8000", - "0x48127ffe7fff8000", - "0x1104800180018000", - "0x800000000000010fffffffffffffffffffffffffffffffffffffffffffff4fb", - "0x48127ffe7fff8000", - "0x48127ff57fff8000", - "0x48127ff57fff8000", - "0x48127ffc7fff8000", - "0x208b7fff7fff7ffe", - "0x480a7ffb7fff8000", - "0x480a7ffc7fff8000", - "0x1104800180018000", - "0x800000000000010ffffffffffffffffffffffffffffffffffffffffffffffed", - "0x480a7ffa7fff8000", - "0x48127ffe7fff8000", - "0x480a7ffd7fff8000", - "0x1104800180018000", - "0x800000000000010fffffffffffffffffffffffffffffffffffffffffffff4f5", - "0x48127ff67fff8000", - "0x48127ff67fff8000", - "0x208b7fff7fff7ffe", - "0x40780017fff7fff", - "0x1", - "0x480a7ff67fff8000", - "0x480a7ff77fff8000", - "0x480a7ff87fff8000", - "0x480a7ff97fff8000", - "0x480a7ffa7fff8000", - "0x480a7ffb7fff8000", - "0x480a7ffc7fff8000", - "0x1104800180018000", - "0x800000000000010ffffffffffffffffffffffffffffffffffffffffffffff95", - "0x400780017fff8000", - "0x0", - "0x480a7ff97fff8000", - "0x480a80007fff8000", - "0x480a7ffc7fff8000", - "0x480a7ffd7fff8000", - "0x1104800180018000", - "0x107", - "0x48127ffa7fff8000", - "0x48127ffb7fff8000", - "0x48127ffb7fff8000", - "0x480a7ffb7fff8000", - "0x480a7ffa7fff8000", - "0x1104800180018000", - "0x800000000000010fffffffffffffffffffffffffffffffffffffffffffffeea", - "0x48127ffe7fff8000", - "0x48127fdf7fff8000", - "0x48127ffd7fff8000", - "0x208b7fff7fff7ffe", - "0x40780017fff7fff", - "0x4", - "0x480a7ffa7fff8000", - "0x480a7ffb7fff8000", - "0x480a7ffc7fff8000", - "0x480a7ffd7fff8000", - "0x480680017fff8000", - "0x0", - "0x1104800180018000", - "0x800000000000010fffffffffffffffffffffffffffffffffffffffffffffa08", - "0x20680017fff7fff", - "0xf", - "0x1104800180018000", - "0x800000000000010fffffffffffffffffffffffffffffffffffffffffffff492", - "0x48127ff97fff8000", - "0x48127ff97fff8000", - "0x48127ff97fff8000", - "0x480680017fff8000", - "0x100000000000000000000000000000000", - "0x480680017fff8000", - "0x0", - "0x480680017fff8000", - "0x0", - "0x48127ff97fff8000", - "0x208b7fff7fff7ffe", - "0x48127ffc7fff8000", - "0x48127ffc7fff8000", - "0x48127ffc7fff8000", - "0x480a7ffd7fff8000", - "0x1104800180018000", - "0x800000000000010ffffffffffffffffffffffffffffffffffffffffffffff49", - "0x40137ffd7fff8000", - "0x40137ffe7fff8001", - "0x40137fff7fff8002", - "0x1104800180018000", - "0x800000000000010fffffffffffffffffffffffffffffffffffffffffffff47c", - "0x40137fff7fff8003", - "0x48127ff77fff8000", - "0x48127ff77fff8000", - "0x48127ff77fff8000", - "0x480a7ffd7fff8000", - "0x480a80027fff8000", - "0x480a80037fff8000", - "0x480680017fff8000", - "0x0", - "0x1104800180018000", - "0xee", - "0x48127ffa7fff8000", - "0x48127ffa7fff8000", - "0x48127ffa7fff8000", - "0x480a80007fff8000", - "0x480a80017fff8000", - "0x48127ff97fff8000", - "0x48127ff97fff8000", - "0x208b7fff7fff7ffe", - "0x480a7ff97fff8000", - "0x480a7ffa7fff8000", - "0x480a7ffb7fff8000", - "0x480a7ffc7fff8000", - "0x480680017fff8000", - "0x1", - "0x480a7ffd7fff8000", - "0x1104800180018000", - "0xfb", - "0x48127ffa7fff8000", - "0x48127ffa7fff8000", - "0x48127ffa7fff8000", - "0x480a7ffd7fff8000", - "0x480680017fff8000", - "0x0", - "0x1104800180018000", - "0x800000000000010fffffffffffffffffffffffffffffffffffffffffffff7d0", - "0x48127ffc7fff8000", - "0x48127ffc7fff8000", - "0x48127ffc7fff8000", - "0x48127fb67fff8000", - "0x480a7ffd7fff8000", - "0x48127ffa7fff8000", - "0x48127fb57fff8000", - "0x208b7fff7fff7ffe", - "0x40780017fff7fff", - "0x0", - "0x48297ffc80007ffd", - "0x20680017fff7fff", - "0x9", - "0x480a7ff77fff8000", - "0x480a7ff87fff8000", - "0x480a7ff97fff8000", - "0x480a7ffa7fff8000", - "0x480a7ffb7fff8000", - "0x480a7ffc7fff8000", - "0x208b7fff7fff7ffe", - "0x480a7ff77fff8000", - "0x480a7ff87fff8000", - "0x480a7ff97fff8000", - "0x480a7ffd7fff8000", - "0x480680017fff8000", - "0x0", - "0x1104800180018000", - "0x800000000000010fffffffffffffffffffffffffffffffffffffffffffffbf8", - "0x48127ffb7fff8000", - "0x48127ffb7fff8000", - "0x48127ffb7fff8000", - "0x480a7ffb7fff8000", - "0x48127ffa7fff8000", - "0x1104800180018000", - "0x800000000000010ffffffffffffffffffffffffffffffffffffffffffffffcf", - "0x480680017fff8000", - "0x3", - "0x48487ffd7fff8000", - "0x48327fff7ffa8000", - "0x400080007fff7ffa", - "0x480680017fff8000", - "0x3", - "0x48487ffd7fff8000", - "0x482480017fff8000", - "0x1", - "0x48327fff7ffa8000", - "0x400080007fff7ff7", - "0x480680017fff8000", - "0x3", - "0x48487ffd7fff8000", - "0x482480017fff8000", - "0x2", - "0x48327fff7ffa8000", - "0x400080007fff7ff4", - "0x48127fee7fff8000", - "0x48127fee7fff8000", - "0x48127fee7fff8000", - "0x480a7ffa7fff8000", - "0x48127fed7fff8000", - "0x480a7ffc7fff8000", - "0x482680017ffd8000", - "0x1", - "0x1104800180018000", - "0x800000000000010ffffffffffffffffffffffffffffffffffffffffffffffcb", - "0x208b7fff7fff7ffe", - "0x480a7ff87fff8000", - "0x480a7ff77fff8000", - "0x480a7ff97fff8000", - "0x1104800180018000", - "0x182", - "0x48127ffd7fff8000", - "0x1104800180018000", - "0x800000000000010fffffffffffffffffffffffffffffffffffffffffffff434", - "0x48127ffe7fff8000", - "0x48127ff77fff8000", - "0x48127ff77fff8000", - "0x48127ffc7fff8000", - "0x480a7ffc7fff8000", - "0x480a7ffd7fff8000", - "0x1104800180018000", - "0x132", - "0x48127ffc7fff8000", - "0x48127ffc7fff8000", - "0x48127ffc7fff8000", - "0x1104800180018000", - "0x800000000000010fffffffffffffffffffffffffffffffffffffffffffffea3", - "0x48127ffc7fff8000", - "0x48127ffc7fff8000", - "0x48127ffc7fff8000", - "0x48127fe57fff8000", - "0x48127ffb7fff8000", - "0x1104800180018000", - "0x14d", - "0x48127ffd7fff8000", - "0x48127ffb7fff8000", - "0x48127ffc7fff8000", - "0x48127ffc7fff8000", - "0x480a7ffa7fff8000", - "0x480a7ffb7fff8000", - "0x1104800180018000", - "0x800000000000010fffffffffffffffffffffffffffffffffffffffffffffc15", - "0x208b7fff7fff7ffe", - "0x40780017fff7fff", - "0x4", - "0x480a7ffa7fff8000", - "0x480a7ff97fff8000", - "0x480a7ffb7fff8000", - "0x480a7ffc7fff8000", - "0x480a7ffd7fff8000", - "0x1104800180018000", - "0x800000000000010fffffffffffffffffffffffffffffffffffffffffffff95b", - "0x400680017fff7fff", - "0x1", - "0x480680017fff8000", - "0xffffffffffffffffffffffffffffffff", - "0x1104800180018000", - "0x800000000000010fffffffffffffffffffffffffffffffffffffffffffffd9b", - "0x40137fff7fff8000", - "0x48127ff87fff8000", - "0x48127ff87fff8000", - "0x48127ff87fff8000", - "0x480a80007fff8000", - "0x480680017fff8000", - "0x1", - "0x480a7ffc7fff8000", - "0x1104800180018000", - "0x74", - "0x40137ffb7fff8001", - "0x40137ffa7fff8002", - "0x40137fff7fff8003", - "0x48127ffc7fff8000", - "0x480a80007fff8000", - "0x48127ffb7fff8000", - "0x480680017fff8000", - "0xffffffffffffffffffffffffffffffff", - "0x1104800180018000", - "0x800000000000010fffffffffffffffffffffffffffffffffffffffffffffd8a", - "0x480a80017fff8000", - "0x480a80027fff8000", - "0x48127ffe7fff8000", - "0x48127ffa7fff8000", - "0x1104800180018000", - "0x800000000000010fffffffffffffffffffffffffffffffffffffffffffff800", - "0x48127ffc7fff8000", - "0x48127ffc7fff8000", - "0x48127ffc7fff8000", - "0x1104800180018000", - "0x800000000000010fffffffffffffffffffffffffffffffffffffffffffffe29", - "0x48127ffc7fff8000", - "0x48127ffd7fff8000", - "0x48127ffd7fff8000", - "0x480a7ffc7fff8000", - "0x480a80037fff8000", - "0x48127fe37fff8000", - "0x1104800180018000", - "0x800000000000010fffffffffffffffffffffffffffffffffffffffffffffd98", - "0x48127fdd7fff8000", - "0x48127ffb7fff8000", - "0x48127ffb7fff8000", - "0x48127ffb7fff8000", - "0x48127ffb7fff8000", - "0x208b7fff7fff7ffe", - "0x480a7ffb7fff8000", - "0x480a7ffc7fff8000", - "0x480a7ffd7fff8000", - "0x480680017fff8000", - "0x1", - "0x1104800180018000", - "0x800000000000010fffffffffffffffffffffffffffffffffffffffffffffee8", - "0x208b7fff7fff7ffe", - "0x480a7ffb7fff8000", - "0x480a7ffc7fff8000", - "0x480a7ffd7fff8000", - "0x480680017fff8000", - "0x0", - "0x1104800180018000", - "0x800000000000010fffffffffffffffffffffffffffffffffffffffffffffee0", - "0x208b7fff7fff7ffe", - "0x48297ffb80007ffc", - "0x20680017fff7fff", - "0x9", - "0x480a7ff77fff8000", - "0x480a7ff87fff8000", - "0x480a7ff97fff8000", - "0x480a7ffa7fff8000", - "0x480a7ffb7fff8000", - "0x480a7ffc7fff8000", - "0x208b7fff7fff7ffe", - "0x480a7ff77fff8000", - "0x480a7ff87fff8000", - "0x480a7ff97fff8000", - "0x480a7ffa7fff8000", - "0x480a7ffb7fff8000", - "0x480280007ffd8000", - "0x1104800180018000", - "0x800000000000010fffffffffffffffffffffffffffffffffffffffffffffead", - "0x480a7ffa7fff8000", - "0x482680017ffb8000", - "0x1", - "0x480a7ffc7fff8000", - "0x482680017ffd8000", - "0x1", - "0x1104800180018000", - "0x800000000000010ffffffffffffffffffffffffffffffffffffffffffffffe9", - "0x48127ffa7fff8000", - "0x48127ffa7fff8000", - "0x48127ffa7fff8000", - "0x48127ffa7fff8000", - "0x480a7ffb7fff8000", - "0x48127ffa7fff8000", - "0x208b7fff7fff7ffe", - "0x48297ffd80007ffb", - "0x20680017fff7fff", - "0x9", - "0x480a7ff77fff8000", - "0x480a7ff87fff8000", - "0x480a7ff97fff8000", - "0x480a7ffa7fff8000", - "0x480a7ffb7fff8000", - "0x480a7ffc7fff8000", - "0x208b7fff7fff7ffe", - "0x480a7ff77fff8000", - "0x480a7ff87fff8000", - "0x480a7ff97fff8000", - "0x480a7ffa7fff8000", - "0x480a7ffd7fff8000", - "0x1104800180018000", - "0x800000000000010fffffffffffffffffffffffffffffffffffffffffffffe7e", - "0x482a7ffd7ffc8000", - "0x400080007fff7ffe", - "0x48127ffb7fff8000", - "0x48127ffb7fff8000", - "0x48127ffb7fff8000", - "0x480a7ffa7fff8000", - "0x480a7ffb7fff8000", - "0x480a7ffc7fff8000", - "0x482680017ffd8000", - "0x1", - "0x1104800180018000", - "0x800000000000010ffffffffffffffffffffffffffffffffffffffffffffffe6", - "0x208b7fff7fff7ffe", - "0x40780017fff7fff", - "0x6", - "0x20780017fff7ffc", - "0x9", - "0x480a7ff87fff8000", - "0x480a7ff97fff8000", - "0x480a7ffa7fff8000", - "0x480a7ffb7fff8000", - "0x480a7ffc7fff8000", - "0x480a7ffd7fff8000", - "0x208b7fff7fff7ffe", - "0x480a7ffb7fff8000", - "0x480a7ffd7fff8000", - "0x1104800180018000", - "0x800000000000010fffffffffffffffffffffffffffffffffffffffffffffcf3", - "0x40137ffe7fff8000", - "0x482480017fff8000", - "0x800000000000010ffffffffffffffff00000000000000000000000000000002", - "0x20680017fff7fff", - "0x4", - "0x10780017fff7fff", - "0x9", - "0x480a7ff87fff8000", - "0x480a7ff97fff8000", - "0x480a7ffa7fff8000", - "0x480a80007fff8000", - "0x480a7ffc7fff8000", - "0x48127ff97fff8000", - "0x208b7fff7fff7ffe", - "0x480a7ff87fff8000", - "0x480a7ff97fff8000", - "0x480a7ffa7fff8000", - "0x480a7ffd7fff8000", - "0x1104800180018000", - "0x800000000000010fffffffffffffffffffffffffffffffffffffffffffffea7", - "0x40137fff7fff8001", - "0x40137ffe7fff8002", - "0x40137ffd7fff8003", - "0x482480017ffc8000", - "0x800000000000010ffffffffffffffff00000000000000000000000000000001", - "0x20680017fff7fff", - "0xe", - "0x480a80007fff8000", - "0x480a7ffd7fff8000", - "0x480a80037fff8000", - "0x1104800180018000", - "0x800000000000010fffffffffffffffffffffffffffffffffffffffffffffcdc", - "0x48127ff27fff8000", - "0x48127ff27fff8000", - "0x48127ff27fff8000", - "0x48127ffc7fff8000", - "0x480a7ffc7fff8000", - "0x480a80037fff8000", - "0x208b7fff7fff7ffe", - "0x48127ffa7fff8000", - "0x48127ffa7fff8000", - "0x1104800180018000", - "0x800000000000010fffffffffffffffffffffffffffffffffffffffffffff48a", - "0x48127fdd7fff8000", - "0x48127fdd7fff8000", - "0x48127ffc7fff8000", - "0x480a80007fff8000", - "0x48127ffb7fff8000", - "0x48127fdb7fff8000", - "0x1104800180018000", - "0x800000000000010ffffffffffffffffffffffffffffffffffffffffffffffc1", - "0x40137fff7fff8004", - "0x1104800180018000", - "0x800000000000010fffffffffffffffffffffffffffffffffffffffffffff322", - "0x40137fff7fff8005", - "0x48127ff77fff8000", - "0x48127ff77fff8000", - "0x48127ff77fff8000", - "0x480a80017fff8000", - "0x480a80057fff8000", - "0x48127ff57fff8000", - "0x480a80027fff8000", - "0x480680017fff8000", - "0x0", - "0x1104800180018000", - "0x15", - "0x48127ff97fff8000", - "0x480a80047fff8000", - "0x480a80037fff8000", - "0x48127ffc7fff8000", - "0x48127ff97fff8000", - "0x1104800180018000", - "0x800000000000010fffffffffffffffffffffffffffffffffffffffffffff328", - "0x48127ff37fff8000", - "0x480a7ffd7fff8000", - "0x480080007ffd8000", - "0x1104800180018000", - "0x800000000000010fffffffffffffffffffffffffffffffffffffffffffffcae", - "0x48127ff77fff8000", - "0x48127fe87fff8000", - "0x48127fe87fff8000", - "0x48127ffc7fff8000", - "0x480a7ffc7fff8000", - "0x480080007ff48000", - "0x208b7fff7fff7ffe", - "0x48297ffc80007ffd", - "0x20680017fff7fff", - "0xa", - "0x480a7ff67fff8000", - "0x480a7ff77fff8000", - "0x480a7ff87fff8000", - "0x480a7ff97fff8000", - "0x480a7ffa7fff8000", - "0x480a7ffb7fff8000", - "0x480a7ffc7fff8000", - "0x208b7fff7fff7ffe", - "0x482a7ffd7ff98000", - "0x482a7ffd7ff98000", - "0x480080007fff8000", - "0x480a7ff87fff8000", - "0x480080007ffc8000", - "0x480680017fff8000", - "0x2", - "0x482480017ffc8000", - "0x1", - "0x1104800180018000", - "0x800000000000010fffffffffffffffffffffffffffffffffffffffffffff38c", - "0x480a7ff67fff8000", - "0x480a7ff77fff8000", - "0x48127ffb7fff8000", - "0x480a7ffb7fff8000", - "0x48127ffb7fff8000", - "0x48127ff97fff8000", - "0x1104800180018000", - "0x800000000000010ffffffffffffffffffffffffffffffffffffffffffffff81", - "0x482a7ffd7ffa8000", - "0x400080007fff7ffe", - "0x48127ff97fff8000", - "0x48127ff97fff8000", - "0x48127ff97fff8000", - "0x480a7ff97fff8000", - "0x480a7ffa7fff8000", - "0x48127ff77fff8000", - "0x480a7ffc7fff8000", - "0x482680017ffd8000", - "0x1", - "0x1104800180018000", - "0x800000000000010ffffffffffffffffffffffffffffffffffffffffffffffd8", - "0x208b7fff7fff7ffe", - "0x40780017fff7fff", - "0x2", - "0x480a7ff97fff8000", - "0x480a7ffa7fff8000", - "0x480a7ffb7fff8000", - "0x480a7ffb7fff8000", - "0x1104800180018000", - "0x800000000000010fffffffffffffffffffffffffffffffffffffffffffffce2", - "0x480a7ff87fff8000", - "0x48127ffc7fff8000", - "0x48127ffc7fff8000", - "0x1104800180018000", - "0x800000000000010fffffffffffffffffffffffffffffffffffffffffffffd4d", - "0x40137fff7fff8000", - "0x480a80007fff8000", - "0x1104800180018000", - "0x800000000000010fffffffffffffffffffffffffffffffffffffffffffff41b", - "0x40137fff7fff8001", - "0x48127ff87fff8000", - "0x48127ff87fff8000", - "0x48127ff87fff8000", - "0x48127fe17fff8000", - "0x480a80007fff8000", - "0x480a7ffc7fff8000", - "0x480a7ffd7fff8000", - "0x1104800180018000", - "0x800000000000010fffffffffffffffffffffffffffffffffffffffffffffcb8", - "0x484880017fff8000", - "0x480680017fff8000", - "0x1", - "0x4828800180007fff", - "0x480680017fff8000", - "0x1", - "0x40307ffe7ffc7fff", - "0x48127ff87fff8000", - "0x48127ff87fff8000", - "0x48127ff87fff8000", - "0x480a7ffb7fff8000", - "0x208b7fff7fff7ffe", - "0x40780017fff7fff", - "0x1", - "0x480a7ffd7fff8000", - "0x1104800180018000", - "0x800000000000010fffffffffffffffffffffffffffffffffffffffffffff400", - "0x40137fff7fff8000", - "0x480a7ff97fff8000", - "0x480a7ffa7fff8000", - "0x480a7ffb7fff8000", - "0x480a7ffc7fff8000", - "0x1104800180018000", - "0x800000000000010fffffffffffffffffffffffffffffffffffffffffffff6e1", - "0x48127ffd7fff8000", - "0x48127ffd7fff8000", - "0x482680017ffd8000", - "0x800000000000011000000000000000000000000000000000000000000000000", - "0x1104800180018000", - "0x800000000000010fffffffffffffffffffffffffffffffffffffffffffff41c", - "0x484880007fff8000", - "0x480680017fff8000", - "0x1", - "0x4828800080007fff", - "0x480680017fff8000", - "0x1", - "0x40307ffe7ffc7fff", - "0x48127fd77fff8000", - "0x48127fd77fff8000", - "0x48127ff87fff8000", - "0x480a7ffc7fff8000", - "0x208b7fff7fff7ffe", - "0x480a7ffb7fff8000", - "0x480a7ffc7fff8000", - "0x480a7ffd7fff8000", - "0x1104800180018000", - "0x800000000000010fffffffffffffffffffffffffffffffffffffffffffffdb9", - "0x400680017fff7fff", - "0x1", - "0x48127ffc7fff8000", - "0x48127ffc7fff8000", - "0x48127ffc7fff8000", - "0x208b7fff7fff7ffe", - "0x480a7ffc7fff8000", - "0x480a7ffd7fff8000", - "0x480680017fff8000", - "0x3c0ba99f1a18bcdc81fcbcb6b4f15a9a6725f937075aed6fac107ffcb147068", - "0x208b7fff7fff7ffe", - "0x480a7ffc7fff8000", - "0x480a7ffd7fff8000", - "0x1104800180018000", - "0x800000000000010fffffffffffffffffffffffffffffffffffffffffffffffa", - "0x480a7ffb7fff8000", - "0x48127ffe7fff8000", - "0x1104800180018000", - "0x800000000000010fffffffffffffffffffffffffffffffffffffffffffff2a6", - "0x48127ffe7fff8000", - "0x48127ff57fff8000", - "0x48127ff57fff8000", - "0x48127ffc7fff8000", - "0x208b7fff7fff7ffe", - "0x480a7ffb7fff8000", - "0x480a7ffc7fff8000", - "0x1104800180018000", - "0x800000000000010ffffffffffffffffffffffffffffffffffffffffffffffed", - "0x480a7ffa7fff8000", - "0x48127ffe7fff8000", - "0x480a7ffd7fff8000", - "0x1104800180018000", - "0x800000000000010fffffffffffffffffffffffffffffffffffffffffffff2a0", - "0x48127ff67fff8000", - "0x48127ff67fff8000", - "0x208b7fff7fff7ffe", - "0x480a7ffc7fff8000", - "0x480a7ffd7fff8000", - "0x480680017fff8000", - "0x3f28e19e02f4f0ceb4624dfba7436532332027a62545bb87ac4ffb965ff488e", - "0x208b7fff7fff7ffe", - "0x480a7ffc7fff8000", - "0x480a7ffd7fff8000", - "0x1104800180018000", - "0x800000000000010fffffffffffffffffffffffffffffffffffffffffffffffa", - "0x480a7ffb7fff8000", - "0x48127ffe7fff8000", - "0x1104800180018000", - "0x800000000000010fffffffffffffffffffffffffffffffffffffffffffff288", - "0x48127ffe7fff8000", - "0x48127ff57fff8000", - "0x48127ff57fff8000", - "0x48127ffc7fff8000", - "0x208b7fff7fff7ffe", - "0x480a7ffb7fff8000", - "0x480a7ffc7fff8000", - "0x1104800180018000", - "0x800000000000010ffffffffffffffffffffffffffffffffffffffffffffffed", - "0x480a7ffa7fff8000", - "0x48127ffe7fff8000", - "0x480a7ffd7fff8000", - "0x1104800180018000", - "0x800000000000010fffffffffffffffffffffffffffffffffffffffffffff282", - "0x48127ff67fff8000", - "0x48127ff67fff8000", - "0x208b7fff7fff7ffe", - "0x480a7ffb7fff8000", - "0x480a7ffc7fff8000", - "0x480a7ffd7fff8000", - "0x1104800180018000", - "0x800000000000010fffffffffffffffffffffffffffffffffffffffffffff374", - "0x208b7fff7fff7ffe", - "0x40780017fff7fff", - "0x1", - "0x4003800080007ffc", - "0x4826800180008000", - "0x1", - "0x480a7ffd7fff8000", - "0x4828800080007ffe", - "0x480a80007fff8000", - "0x208b7fff7fff7ffe", - "0x402b7ffd7ffc7ffd", - "0x480280007ffb8000", - "0x480280017ffb8000", - "0x480280027ffb8000", - "0x1104800180018000", - "0x800000000000010ffffffffffffffffffffffffffffffffffffffffffffffee", - "0x48127ffe7fff8000", - "0x1104800180018000", - "0x800000000000010fffffffffffffffffffffffffffffffffffffffffffffff1", - "0x48127ff47fff8000", - "0x48127ff47fff8000", - "0x48127ffb7fff8000", - "0x48127ffb7fff8000", - "0x48127ffb7fff8000", - "0x208b7fff7fff7ffe", - "0x480a7ffa7fff8000", - "0x480a7ffb7fff8000", - "0x480a7ffc7fff8000", - "0x480a7ffd7fff8000", - "0x1104800180018000", - "0x800000000000010fffffffffffffffffffffffffffffffffffffffffffff35b", - "0x208b7fff7fff7ffe", - "0x482680017ffd8000", - "0x1", - "0x402a7ffd7ffc7fff", - "0x480280007ffb8000", - "0x480280017ffb8000", - "0x480280027ffb8000", - "0x480280007ffd8000", - "0x1104800180018000", - "0x800000000000010fffffffffffffffffffffffffffffffffffffffffffffff3", - "0x40780017fff7fff", - "0x1", - "0x48127ffc7fff8000", - "0x48127ffc7fff8000", - "0x48127ffc7fff8000", - "0x480680017fff8000", - "0x0", - "0x48127ffb7fff8000", - "0x208b7fff7fff7ffe", - "0x480a7ffa7fff8000", - "0x480a7ffb7fff8000", - "0x480a7ffc7fff8000", - "0x1104800180018000", - "0x800000000000010fffffffffffffffffffffffffffffffffffffffffffff32e", - "0x480a7ffd7fff8000", - "0x1104800180018000", - "0x800000000000010fffffffffffffffffffffffffffffffffffffffffffffcba", - "0x208b7fff7fff7ffe", - "0x482680017ffd8000", - "0x1", - "0x402a7ffd7ffc7fff", - "0x480280007ffb8000", - "0x480280017ffb8000", - "0x480280027ffb8000", - "0x480280007ffd8000", - "0x1104800180018000", - "0x800000000000010fffffffffffffffffffffffffffffffffffffffffffffff1", - "0x40780017fff7fff", - "0x1", - "0x48127ffc7fff8000", - "0x48127ffc7fff8000", - "0x48127ffc7fff8000", - "0x480680017fff8000", - "0x0", - "0x48127ffb7fff8000", - "0x208b7fff7fff7ffe", - "0x480a7ffb7fff8000", - "0x480a7ffc7fff8000", - "0x480a7ffd7fff8000", - "0x1104800180018000", - "0x800000000000010fffffffffffffffffffffffffffffffffffffffffffffc95", - "0x208b7fff7fff7ffe", - "0x40780017fff7fff", - "0x1", - "0x4003800080007ffc", - "0x4826800180008000", - "0x1", - "0x480a7ffd7fff8000", - "0x4828800080007ffe", - "0x480a80007fff8000", - "0x208b7fff7fff7ffe", - "0x402b7ffd7ffc7ffd", - "0x480280007ffb8000", - "0x480280017ffb8000", - "0x480280027ffb8000", - "0x1104800180018000", - "0x800000000000010ffffffffffffffffffffffffffffffffffffffffffffffee", - "0x48127ffe7fff8000", - "0x1104800180018000", - "0x800000000000010fffffffffffffffffffffffffffffffffffffffffffffff1", - "0x48127ff47fff8000", - "0x48127ff47fff8000", - "0x48127ffb7fff8000", - "0x48127ffb7fff8000", - "0x48127ffb7fff8000", - "0x208b7fff7fff7ffe", - "0x480a7ffa7fff8000", - "0x480a7ffb7fff8000", - "0x480a7ffc7fff8000", - "0x1104800180018000", - "0x800000000000010fffffffffffffffffffffffffffffffffffffffffffff2f5", - "0x480a7ffd7fff8000", - "0x1104800180018000", - "0x800000000000010ffffffffffffffffffffffffffffffffffffffffffffff7f", - "0x208b7fff7fff7ffe", - "0x482680017ffd8000", - "0x1", - "0x402a7ffd7ffc7fff", - "0x480280007ffb8000", - "0x480280017ffb8000", - "0x480280027ffb8000", - "0x480280007ffd8000", - "0x1104800180018000", - "0x800000000000010fffffffffffffffffffffffffffffffffffffffffffffff1", - "0x40780017fff7fff", - "0x1", - "0x48127ffc7fff8000", - "0x48127ffc7fff8000", - "0x48127ffc7fff8000", - "0x480680017fff8000", - "0x0", - "0x48127ffb7fff8000", - "0x208b7fff7fff7ffe", - "0x480a7ffb7fff8000", - "0x480a7ffc7fff8000", - "0x480a7ffd7fff8000", - "0x1104800180018000", - "0x800000000000010ffffffffffffffffffffffffffffffffffffffffffffff5a", - "0x208b7fff7fff7ffe", - "0x40780017fff7fff", - "0x1", - "0x4003800080007ffc", - "0x4826800180008000", - "0x1", - "0x480a7ffd7fff8000", - "0x4828800080007ffe", - "0x480a80007fff8000", - "0x208b7fff7fff7ffe", - "0x402b7ffd7ffc7ffd", - "0x480280007ffb8000", - "0x480280017ffb8000", - "0x480280027ffb8000", - "0x1104800180018000", - "0x800000000000010ffffffffffffffffffffffffffffffffffffffffffffffee", - "0x48127ffe7fff8000", - "0x1104800180018000", - "0x800000000000010fffffffffffffffffffffffffffffffffffffffffffffff1", - "0x48127ff47fff8000", - "0x48127ff47fff8000", - "0x48127ffb7fff8000", - "0x48127ffb7fff8000", - "0x48127ffb7fff8000", - "0x208b7fff7fff7ffe", - "0x480a7ffa7fff8000", - "0x480a7ffb7fff8000", - "0x480a7ffc7fff8000", - "0x1104800180018000", - "0x800000000000010fffffffffffffffffffffffffffffffffffffffffffff2bc", - "0x480a7ffd7fff8000", - "0x1104800180018000", - "0x800000000000010fffffffffffffffffffffffffffffffffffffffffffffc0c", - "0x208b7fff7fff7ffe", - "0x482680017ffd8000", - "0x1", - "0x402a7ffd7ffc7fff", - "0x480280007ffb8000", - "0x480280017ffb8000", - "0x480280027ffb8000", - "0x480280007ffd8000", - "0x1104800180018000", - "0x800000000000010fffffffffffffffffffffffffffffffffffffffffffffff1", - "0x40780017fff7fff", - "0x1", - "0x48127ffc7fff8000", - "0x48127ffc7fff8000", - "0x48127ffc7fff8000", - "0x480680017fff8000", - "0x0", - "0x48127ffb7fff8000", - "0x208b7fff7fff7ffe", - "0x480a7ffb7fff8000", - "0x480a7ffc7fff8000", - "0x480a7ffd7fff8000", - "0x1104800180018000", - "0x800000000000010fffffffffffffffffffffffffffffffffffffffffffffbe7", - "0x208b7fff7fff7ffe", - "0x40780017fff7fff", - "0x1", - "0x4003800080007ffc", - "0x4826800180008000", - "0x1", - "0x480a7ffd7fff8000", - "0x4828800080007ffe", - "0x480a80007fff8000", - "0x208b7fff7fff7ffe", - "0x402b7ffd7ffc7ffd", - "0x480280007ffb8000", - "0x480280017ffb8000", - "0x480280027ffb8000", - "0x1104800180018000", - "0x800000000000010ffffffffffffffffffffffffffffffffffffffffffffffee", - "0x48127ffe7fff8000", - "0x1104800180018000", - "0x800000000000010fffffffffffffffffffffffffffffffffffffffffffffff1", - "0x48127ff47fff8000", - "0x48127ff47fff8000", - "0x48127ffb7fff8000", - "0x48127ffb7fff8000", - "0x48127ffb7fff8000", - "0x208b7fff7fff7ffe", - "0x480a7ffa7fff8000", - "0x480a7ffb7fff8000", - "0x480a7ffc7fff8000", - "0x1104800180018000", - "0x800000000000010fffffffffffffffffffffffffffffffffffffffffffff283", - "0x480a7ffd7fff8000", - "0x1104800180018000", - "0x800000000000010fffffffffffffffffffffffffffffffffffffffffffffbf1", - "0x208b7fff7fff7ffe", - "0x482680017ffd8000", - "0x1", - "0x402a7ffd7ffc7fff", - "0x480280007ffb8000", - "0x480280017ffb8000", - "0x480280027ffb8000", - "0x480280007ffd8000", - "0x1104800180018000", - "0x800000000000010fffffffffffffffffffffffffffffffffffffffffffffff1", - "0x40780017fff7fff", - "0x1", - "0x48127ffc7fff8000", - "0x48127ffc7fff8000", - "0x48127ffc7fff8000", - "0x480680017fff8000", - "0x0", - "0x48127ffb7fff8000", - "0x208b7fff7fff7ffe", - "0x480a7ffb7fff8000", - "0x480a7ffc7fff8000", - "0x480a7ffd7fff8000", - "0x1104800180018000", - "0x800000000000010fffffffffffffffffffffffffffffffffffffffffffff268", - "0x1104800180018000", - "0x800000000000010fffffffffffffffffffffffffffffffffffffffffffffd94", - "0x208b7fff7fff7ffe", - "0x402b7ffd7ffc7ffd", - "0x480280007ffb8000", - "0x480280017ffb8000", - "0x480280027ffb8000", - "0x1104800180018000", - "0x800000000000010fffffffffffffffffffffffffffffffffffffffffffffff5", - "0x40780017fff7fff", - "0x1", - "0x48127ffc7fff8000", - "0x48127ffc7fff8000", - "0x48127ffc7fff8000", - "0x480680017fff8000", - "0x0", - "0x48127ffb7fff8000", - "0x208b7fff7fff7ffe", - "0x480a7ffb7fff8000", - "0x480a7ffc7fff8000", - "0x480a7ffd7fff8000", - "0x1104800180018000", - "0x800000000000010fffffffffffffffffffffffffffffffffffffffffffff251", - "0x1104800180018000", - "0x800000000000010fffffffffffffffffffffffffffffffffffffffffffffd85", - "0x208b7fff7fff7ffe", - "0x402b7ffd7ffc7ffd", - "0x480280007ffb8000", - "0x480280017ffb8000", - "0x480280027ffb8000", - "0x1104800180018000", - "0x800000000000010fffffffffffffffffffffffffffffffffffffffffffffff5", - "0x40780017fff7fff", - "0x1", - "0x48127ffc7fff8000", - "0x48127ffc7fff8000", - "0x48127ffc7fff8000", - "0x480680017fff8000", - "0x0", - "0x48127ffb7fff8000", - "0x208b7fff7fff7ffe", - "0x480a7ffb7fff8000", - "0x480a7ffc7fff8000", - "0x480a7ffd7fff8000", - "0x1104800180018000", - "0x800000000000010fffffffffffffffffffffffffffffffffffffffffffffb9e", - "0x208b7fff7fff7ffe", - "0x40780017fff7fff", - "0x1", - "0x4003800080007ffc", - "0x4826800180008000", - "0x1", - "0x480a7ffd7fff8000", - "0x4828800080007ffe", - "0x480a80007fff8000", - "0x208b7fff7fff7ffe", - "0x402b7ffd7ffc7ffd", - "0x480280007ffb8000", - "0x480280017ffb8000", - "0x480280027ffb8000", - "0x1104800180018000", - "0x800000000000010ffffffffffffffffffffffffffffffffffffffffffffffee", - "0x48127ffe7fff8000", - "0x1104800180018000", - "0x800000000000010fffffffffffffffffffffffffffffffffffffffffffffff1", - "0x48127ff47fff8000", - "0x48127ff47fff8000", - "0x48127ffb7fff8000", - "0x48127ffb7fff8000", - "0x48127ffb7fff8000", - "0x208b7fff7fff7ffe", - "0x40780017fff7fff", - "0x0", - "0x480a7ff87fff8000", - "0x480a7ff97fff8000", - "0x1104800180018000", - "0x800000000000010fffffffffffffffffffffffffffffffffffffffffffff2b4", - "0x480a7ff67fff8000", - "0x480a7ff77fff8000", - "0x48127ffb7fff8000", - "0x48127ffb7fff8000", - "0x48127ffb7fff8000", - "0x1104800180018000", - "0x800000000000010fffffffffffffffffffffffffffffffffffffffffffff667", - "0x400680017fff7fff", - "0x1", - "0x48127ffc7fff8000", - "0x48127ffc7fff8000", - "0x48127ffc7fff8000", - "0x48127fac7fff8000", - "0x48127fac7fff8000", - "0x1104800180018000", - "0x800000000000010fffffffffffffffffffffffffffffffffffffffffffff533", - "0x48127ffc7fff8000", - "0x1104800180018000", - "0x800000000000010fffffffffffffffffffffffffffffffffffffffffffff10e", - "0x40127fff7fff7ff9", - "0x48127ffe7fff8000", - "0x48127ff67fff8000", - "0x48127ff67fff8000", - "0x480a7ff97fff8000", - "0x480a7ffa7fff8000", - "0x480a7ffb7fff8000", - "0x480a7ffc7fff8000", - "0x480a7ffd7fff8000", - "0x1104800180018000", - "0x800000000000010fffffffffffffffffffffffffffffffffffffffffffffc23", - "0x208b7fff7fff7ffe", - "0x480280027ffb8000", - "0x480280037ffd8000", - "0x400080007ffe7fff", - "0x482680017ffd8000", - "0x4", - "0x480280037ffd8000", - "0x48307fff7ffe8000", - "0x402a7ffd7ffc7fff", - "0x480280027ffb8000", - "0x480280007ffb8000", - "0x480280017ffb8000", - "0x482480017ffd8000", - "0x1", - "0x480280007ffd8000", - "0x480280017ffd8000", - "0x480280027ffd8000", - "0x480280037ffd8000", - "0x482680017ffd8000", - "0x4", - "0x1104800180018000", - "0x800000000000010ffffffffffffffffffffffffffffffffffffffffffffffc9", - "0x40780017fff7fff", - "0x1", - "0x48127ffc7fff8000", - "0x48127ffc7fff8000", - "0x48127ffc7fff8000", - "0x480680017fff8000", - "0x0", - "0x48127ffb7fff8000", - "0x208b7fff7fff7ffe", - "0x480a7ffa7fff8000", - "0x480a7ffb7fff8000", - "0x480a7ffc7fff8000", - "0x480a7ffd7fff8000", - "0x1104800180018000", - "0x800000000000010fffffffffffffffffffffffffffffffffffffffffffffc1c", - "0x208b7fff7fff7ffe", - "0x40780017fff7fff", - "0x3", - "0x4003800080007ff9", - "0x4003800180007ffa", - "0x4003800280007ffb", - "0x400380007ffd7ffb", - "0x402780017ffd8001", - "0x1", - "0x4826800180008000", - "0x3", - "0x40297ffb7fff8002", - "0x4826800180008000", - "0x3", - "0x480a7ffc7fff8000", - "0x480a7ffb7fff8000", - "0x1104800180018000", - "0x800000000000010fffffffffffffffffffffffffffffffffffffffffffff0b0", - "0x480a80017fff8000", - "0x4829800080008002", - "0x480a80007fff8000", - "0x208b7fff7fff7ffe", - "0x40780017fff7fff", - "0x2", - "0x482680017ffd8000", - "0x1", - "0x402a7ffd7ffc7fff", - "0x480280007ffb8000", - "0x480280017ffb8000", - "0x480280027ffb8000", - "0x480280007ffd8000", - "0x1104800180018000", - "0x800000000000010ffffffffffffffffffffffffffffffffffffffffffffffdc", - "0x40137ff97fff8000", - "0x40137ffa7fff8001", - "0x48127ffb7fff8000", - "0x1104800180018000", - "0x800000000000010ffffffffffffffffffffffffffffffffffffffffffffffde", - "0x480a80007fff8000", - "0x480a80017fff8000", - "0x48127ffb7fff8000", - "0x48127ffb7fff8000", - "0x48127ffb7fff8000", - "0x208b7fff7fff7ffe", - "0x40780017fff7fff", - "0x6", - "0x480680017fff8000", - "0xffffffffffffffffffffffffffffffff", - "0x1104800180018000", - "0x800000000000010fffffffffffffffffffffffffffffffffffffffffffffa3f", - "0x40137fff7fff8000", - "0x480a7ffa7fff8000", - "0x480a7ffb7fff8000", - "0x480a7ffc7fff8000", - "0x480a80007fff8000", - "0x480a7ffd7fff8000", - "0x1104800180018000", - "0x800000000000010fffffffffffffffffffffffffffffffffffffffffffffc19", - "0x40137ffd7fff8001", - "0x40137ffe7fff8002", - "0x40137fff7fff8003", - "0x40137ff97fff8004", - "0x40137ffa7fff8005", - "0x48127ffb7fff8000", - "0x480a80007fff8000", - "0x48127ffa7fff8000", - "0x480680017fff8000", - "0xffffffffffffffffffffffffffffffff", - "0x1104800180018000", - "0x800000000000010fffffffffffffffffffffffffffffffffffffffffffffa2e", - "0x480a80047fff8000", - "0x480a80057fff8000", - "0x48127ffb7fff8000", - "0x480a80017fff8000", - "0x480a80027fff8000", - "0x480a80037fff8000", - "0x208b7fff7fff7ffe", - "0x40780017fff7fff", - "0x1", - "0x4003800080007ffa", - "0x4003800180007ffb", - "0x4003800280007ffc", - "0x4826800180008000", - "0x3", - "0x480a7ffd7fff8000", - "0x4828800080007ffe", - "0x480a80007fff8000", - "0x208b7fff7fff7ffe", - "0x482680017ffd8000", - "0x1", - "0x402a7ffd7ffc7fff", - "0x480280007ffb8000", - "0x480280017ffb8000", - "0x480280027ffb8000", - "0x480280007ffd8000", - "0x1104800180018000", - "0x800000000000010ffffffffffffffffffffffffffffffffffffffffffffffce", - "0x48127ffc7fff8000", - "0x1104800180018000", - "0x800000000000010ffffffffffffffffffffffffffffffffffffffffffffffec", - "0x48127ff27fff8000", - "0x48127ff27fff8000", - "0x48127ffb7fff8000", - "0x48127ffb7fff8000", - "0x48127ffb7fff8000", - "0x208b7fff7fff7ffe", - "0x480a7ffa7fff8000", - "0x480a7ffb7fff8000", - "0x480a7ffc7fff8000", - "0x480a7ffd7fff8000", - "0x1104800180018000", - "0x800000000000010ffffffffffffffffffffffffffffffffffffffffffffffbf", - "0x48127ffa7fff8000", - "0x48127ffa7fff8000", - "0x48127ffa7fff8000", - "0x48127ffc7fff8000", - "0x208b7fff7fff7ffe", - "0x40780017fff7fff", - "0x1", - "0x4003800080007ffc", - "0x4826800180008000", - "0x1", - "0x480a7ffd7fff8000", - "0x4828800080007ffe", - "0x480a80007fff8000", - "0x208b7fff7fff7ffe", - "0x482680017ffd8000", - "0x1", - "0x402a7ffd7ffc7fff", - "0x480280007ffb8000", - "0x480280017ffb8000", - "0x480280027ffb8000", - "0x480280007ffd8000", - "0x1104800180018000", - "0x800000000000010ffffffffffffffffffffffffffffffffffffffffffffffe6", - "0x48127ffe7fff8000", - "0x1104800180018000", - "0x800000000000010ffffffffffffffffffffffffffffffffffffffffffffffee", - "0x48127ff47fff8000", - "0x48127ff47fff8000", - "0x48127ffb7fff8000", - "0x48127ffb7fff8000", - "0x48127ffb7fff8000", - "0x208b7fff7fff7ffe", - "0x40780017fff7fff", - "0x6", - "0x1104800180018000", - "0x800000000000010fffffffffffffffffffffffffffffffffffffffffffff025", - "0x40137fff7fff8000", - "0x480680017fff8000", - "0xffffffffffffffffffffffffffffffff", - "0x1104800180018000", - "0x800000000000010fffffffffffffffffffffffffffffffffffffffffffff9d8", - "0x40137fff7fff8001", - "0x480a7ffb7fff8000", - "0x480a7ffc7fff8000", - "0x480a7ffd7fff8000", - "0x1104800180018000", - "0x800000000000010fffffffffffffffffffffffffffffffffffffffffffff7d0", - "0x48127ffb7fff8000", - "0x48127ffb7fff8000", - "0x48127ffb7fff8000", - "0x480a80007fff8000", - "0x480a80017fff8000", - "0x48127ff97fff8000", - "0x480680017fff8000", - "0x0", - "0x1104800180018000", - "0x800000000000010fffffffffffffffffffffffffffffffffffffffffffffbc3", - "0x40137fff7fff8002", - "0x40137ffd7fff8003", - "0x40137ffa7fff8004", - "0x40137ffb7fff8005", - "0x48127ffc7fff8000", - "0x480a80017fff8000", - "0x48127ffc7fff8000", - "0x480680017fff8000", - "0xffffffffffffffffffffffffffffffff", - "0x1104800180018000", - "0x800000000000010fffffffffffffffffffffffffffffffffffffffffffff9c0", - "0x480a80047fff8000", - "0x480a80057fff8000", - "0x48127ffb7fff8000", - "0x480a80027fff8000", - "0x480a80037fff8000", - "0x208b7fff7fff7ffe", - "0x40780017fff7fff", - "0x3", - "0x4003800080007ffb", - "0x400380007ffd7ffb", - "0x402780017ffd8001", - "0x1", - "0x4826800180008000", - "0x1", - "0x484680017ffb8000", - "0x3", - "0x40317fff7ffe8002", - "0x4826800180008000", - "0x1", - "0x480a7ffc7fff8000", - "0x484680017ffb8000", - "0x3", - "0x1104800180018000", - "0x800000000000010ffffffffffffffffffffffffffffffffffffffffffffeff6", - "0x480a80017fff8000", - "0x4829800080008002", - "0x480a80007fff8000", - "0x208b7fff7fff7ffe", - "0x40780017fff7fff", - "0x2", - "0x402b7ffd7ffc7ffd", - "0x480280007ffb8000", - "0x480280017ffb8000", - "0x480280027ffb8000", - "0x1104800180018000", - "0x800000000000010ffffffffffffffffffffffffffffffffffffffffffffffbb", - "0x40137ffb7fff8000", - "0x40137ffc7fff8001", - "0x48127ffd7fff8000", - "0x1104800180018000", - "0x800000000000010ffffffffffffffffffffffffffffffffffffffffffffffe0", - "0x480a80007fff8000", - "0x480a80017fff8000", - "0x48127ffb7fff8000", - "0x48127ffb7fff8000", - "0x48127ffb7fff8000", - "0x208b7fff7fff7ffe", - "0x480a7ff87fff8000", - "0x480a7ff77fff8000", - "0x480a7ff97fff8000", - "0x1104800180018000", - "0x800000000000010fffffffffffffffffffffffffffffffffffffffffffffd70", - "0x484480017fff8000", - "0xf", - "0x48127ffd7fff8000", - "0x480a7ffa7fff8000", - "0x482480017ffd8000", - "0x800000000000011000000000000000000000000000000000000000000000000", - "0x1104800180018000", - "0x800000000000010fffffffffffffffffffffffffffffffffffffffffffff01e", - "0x400780017fff7ffb", - "0x0", - "0x48127ff27fff8000", - "0x48127ff07fff8000", - "0x48127ffd7fff8000", - "0x480a7ffa7fff8000", - "0x480a7ffb7fff8000", - "0x480a7ffc7fff8000", - "0x480a7ffd7fff8000", - "0x1104800180018000", - "0x800000000000010fffffffffffffffffffffffffffffffffffffffffffffbaa", - "0x1104800180018000", - "0x800000000000010ffffffffffffffffffffffffffffffffffffffffffffefbc", - "0x48127ffb7fff8000", - "0x48127ff97fff8000", - "0x48127ffa7fff8000", - "0x480a7ffa7fff8000", - "0x480680017fff8000", - "0x100000000000000000000000000000000", - "0x480680017fff8000", - "0x0", - "0x480680017fff8000", - "0x0", - "0x48127ff87fff8000", - "0x1104800180018000", - "0x800000000000010fffffffffffffffffffffffffffffffffffffffffffffaf4", - "0x48127ffe7fff8000", - "0x48127ffc7fff8000", - "0x48127ffd7fff8000", - "0x208b7fff7fff7ffe", - "0x480280027ffb8000", - "0x480280027ffd8000", - "0x400080007ffe7fff", - "0x482680017ffd8000", - "0x3", - "0x480280027ffd8000", - "0x48307fff7ffe8000", - "0x402a7ffd7ffc7fff", - "0x480280027ffb8000", - "0x480280017ffb8000", - "0x480280007ffb8000", - "0x482480017ffd8000", - "0x1", - "0x480280007ffd8000", - "0x480280017ffd8000", - "0x480280027ffd8000", - "0x482680017ffd8000", - "0x3", - "0x1104800180018000", - "0x800000000000010ffffffffffffffffffffffffffffffffffffffffffffffc4", - "0x40780017fff7fff", - "0x1", - "0x48127ffd7fff8000", - "0x48127ffb7fff8000", - "0x48127ffc7fff8000", - "0x480680017fff8000", - "0x0", - "0x48127ffb7fff8000", - "0x208b7fff7fff7ffe", - "0x480a7ff47fff8000", - "0x480a7ff37fff8000", - "0x480a7ff57fff8000", - "0x1104800180018000", - "0x800000000000010fffffffffffffffffffffffffffffffffffffffffffffd28", - "0x484480017fff8000", - "0xf", - "0x48127ffd7fff8000", - "0x480a7ff67fff8000", - "0x482480017ffd8000", - "0x800000000000011000000000000000000000000000000000000000000000000", - "0x1104800180018000", - "0x800000000000010ffffffffffffffffffffffffffffffffffffffffffffefd6", - "0x400780017fff7ff7", - "0x0", - "0x48127ff27fff8000", - "0x48127ff07fff8000", - "0x48127ffd7fff8000", - "0x480a7ff67fff8000", - "0x480a7ff77fff8000", - "0x480a7ff87fff8000", - "0x480a7ff97fff8000", - "0x1104800180018000", - "0x800000000000010fffffffffffffffffffffffffffffffffffffffffffffb62", - "0x48127ffe7fff8000", - "0x48127ffc7fff8000", - "0x48127ffd7fff8000", - "0x480a7ff67fff8000", - "0x480a7ffa7fff8000", - "0x480a7ffb7fff8000", - "0x480a7ffc7fff8000", - "0x480a7ffd7fff8000", - "0x1104800180018000", - "0x800000000000010fffffffffffffffffffffffffffffffffffffffffffffab1", - "0x48127ffe7fff8000", - "0x48127ffc7fff8000", - "0x48127ffd7fff8000", - "0x208b7fff7fff7ffe", - "0x480280027ffb8000", - "0x480280027ffd8000", - "0x400080007ffe7fff", - "0x482680017ffd8000", - "0x3", - "0x480280027ffd8000", - "0x48307fff7ffe8000", - "0x480280027ffb8000", - "0x480080027ffe8000", - "0x400080017ffe7fff", - "0x482480017ffd8000", - "0x3", - "0x480080027ffc8000", - "0x48307fff7ffe8000", - "0x402a7ffd7ffc7fff", - "0x480280027ffb8000", - "0x480280017ffb8000", - "0x480280007ffb8000", - "0x482480017ffd8000", - "0x2", - "0x480280007ffd8000", - "0x480280017ffd8000", - "0x480280027ffd8000", - "0x482680017ffd8000", - "0x3", - "0x480080007ff28000", - "0x480080017ff18000", - "0x480080027ff08000", - "0x482480017fef8000", - "0x3", - "0x1104800180018000", - "0x800000000000010ffffffffffffffffffffffffffffffffffffffffffffffbd", - "0x40780017fff7fff", - "0x1", - "0x48127ffd7fff8000", - "0x48127ffb7fff8000", - "0x48127ffc7fff8000", - "0x480680017fff8000", - "0x0", - "0x48127ffb7fff8000", - "0x208b7fff7fff7ffe", - "0x480a7ffa7fff8000", - "0x480a7ff97fff8000", - "0x480a7ffb7fff8000", - "0x480a7ffc7fff8000", - "0x480a7ffd7fff8000", - "0x1104800180018000", - "0x800000000000010fffffffffffffffffffffffffffffffffffffffffffffb49", - "0x48127ffc7fff8000", - "0x48127ffa7fff8000", - "0x48127ffb7fff8000", - "0x48127ffb7fff8000", - "0x48127ffb7fff8000", - "0x208b7fff7fff7ffe", - "0x40780017fff7fff", - "0x3", - "0x4003800080007ffb", - "0x400380007ffd7ffb", - "0x402780017ffd8001", - "0x1", - "0x4826800180008000", - "0x1", - "0x40297ffb7fff8002", - "0x4826800180008000", - "0x1", - "0x480a7ffc7fff8000", - "0x480a7ffb7fff8000", - "0x1104800180018000", - "0x800000000000010ffffffffffffffffffffffffffffffffffffffffffffef2c", - "0x480a80017fff8000", - "0x4829800080008002", - "0x480a80007fff8000", - "0x208b7fff7fff7ffe", - "0x40780017fff7fff", - "0x2", - "0x482680017ffd8000", - "0x2", - "0x402a7ffd7ffc7fff", - "0x480280007ffb8000", - "0x480280017ffb8000", - "0x480280027ffb8000", - "0x480280007ffd8000", - "0x480280017ffd8000", - "0x1104800180018000", - "0x800000000000010ffffffffffffffffffffffffffffffffffffffffffffffd7", - "0x40137ffb7fff8000", - "0x40137ffc7fff8001", - "0x48127ffd7fff8000", - "0x1104800180018000", - "0x800000000000010ffffffffffffffffffffffffffffffffffffffffffffffdf", - "0x480a80007fff8000", - "0x480a80017fff8000", - "0x48127ffb7fff8000", - "0x48127ffb7fff8000", - "0x48127ffb7fff8000", - "0x208b7fff7fff7ffe", - "0x480680017fff8000", - "0x1106", - "0x1104800180018000", - "0x800000000000010fffffffffffffffffffffffffffffffffffffffffffff09b", - "0x480a7ffb7fff8000", - "0x480a7ffc7fff8000", - "0x480a7ffd7fff8000", - "0x480680017fff8000", - "0x81", - "0x48127ffb7fff8000", - "0x208b7fff7fff7ffe", - "0x68", - "0x74", - "0x74", - "0x70", - "0x73", - "0x3a", - "0x2f", - "0x2f", - "0x72", - "0x61", - "0x77", - "0x2e", - "0x67", - "0x69", - "0x74", - "0x68", - "0x75", - "0x62", - "0x75", - "0x73", - "0x65", - "0x72", - "0x63", - "0x6f", - "0x6e", - "0x74", - "0x65", - "0x6e", - "0x74", - "0x2e", - "0x63", - "0x6f", - "0x6d", - "0x2f", - "0x74", - "0x68", - "0x65", - "0x2d", - "0x63", - "0x61", - "0x6e", - "0x64", - "0x79", - "0x2d", - "0x73", - "0x68", - "0x6f", - "0x70", - "0x2f", - "0x73", - "0x74", - "0x61", - "0x72", - "0x6b", - "0x73", - "0x68", - "0x65", - "0x65", - "0x74", - "0x2d", - "0x6d", - "0x6f", - "0x6e", - "0x6f", - "0x72", - "0x65", - "0x70", - "0x6f", - "0x2f", - "0x6d", - "0x61", - "0x69", - "0x6e", - "0x2f", - "0x70", - "0x61", - "0x63", - "0x6b", - "0x61", - "0x67", - "0x65", - "0x73", - "0x2f", - "0x73", - "0x74", - "0x61", - "0x72", - "0x6b", - "0x73", - "0x68", - "0x65", - "0x65", - "0x74", - "0x2d", - "0x63", - "0x61", - "0x69", - "0x72", - "0x6f", - "0x2f", - "0x64", - "0x75", - "0x73", - "0x74", - "0x5f", - "0x70", - "0x69", - "0x6c", - "0x6f", - "0x74", - "0x73", - "0x2f", - "0x63", - "0x6f", - "0x6e", - "0x74", - "0x72", - "0x61", - "0x63", - "0x74", - "0x5f", - "0x75", - "0x72", - "0x69", - "0x2e", - "0x6a", - "0x73", - "0x6f", - "0x6e", - "0x40780017fff7fff", - "0x3", - "0x4003800080007ffb", - "0x400380007ffd7ffb", - "0x402780017ffd8001", - "0x1", - "0x4826800180008000", - "0x1", - "0x40297ffb7fff8002", - "0x4826800180008000", - "0x1", - "0x480a7ffc7fff8000", - "0x480a7ffb7fff8000", - "0x1104800180018000", - "0x800000000000010ffffffffffffffffffffffffffffffffffffffffffffee76", - "0x480a80017fff8000", - "0x4829800080008002", - "0x480a80007fff8000", - "0x208b7fff7fff7ffe", - "0x40780017fff7fff", - "0x2", - "0x402b7ffd7ffc7ffd", - "0x480280007ffb8000", - "0x480280017ffb8000", - "0x480280027ffb8000", - "0x1104800180018000", - "0x800000000000010ffffffffffffffffffffffffffffffffffffffffffffff5c", - "0x40137ffb7fff8000", - "0x40137ffc7fff8001", - "0x48127ffd7fff8000", - "0x1104800180018000", - "0x800000000000010ffffffffffffffffffffffffffffffffffffffffffffffe3", - "0x480a80007fff8000", - "0x480a80017fff8000", - "0x48127ffb7fff8000", - "0x48127ffb7fff8000", - "0x48127ffb7fff8000", - "0x208b7fff7fff7ffe", - "0x480a7ff57fff8000", - "0x480a7ff67fff8000", - "0x480a7ff77fff8000", - "0x1104800180018000", - "0x800000000000010fffffffffffffffffffffffffffffffffffffffffffffbd2", - "0x400680017fff7fff", - "0x0", - "0x48127ffc7fff8000", - "0x48127ffc7fff8000", - "0x48127ffc7fff8000", - "0x480a7ff87fff8000", - "0x480a7ff97fff8000", - "0x1104800180018000", - "0x800000000000010fffffffffffffffffffffffffffffffffffffffffffff26d", - "0x1104800180018000", - "0x800000000000010fffffffffffffffffffffffffffffffffffffffffffff5f4", - "0x480a7ffa7fff8000", - "0x1104800180018000", - "0x800000000000010ffffffffffffffffffffffffffffffffffffffffffffef5b", - "0x480a7ffb7fff8000", - "0x1104800180018000", - "0x800000000000010fffffffffffffffffffffffffffffffffffffffffffff8d0", - "0x480a7ffc7fff8000", - "0x1104800180018000", - "0x800000000000010fffffffffffffffffffffffffffffffffffffffffffff8eb", - "0x480a7ffd7fff8000", - "0x1104800180018000", - "0x800000000000010fffffffffffffffffffffffffffffffffffffffffffff8ac", - "0x480680017fff8000", - "0x1", - "0x1104800180018000", - "0x800000000000010fffffffffffffffffffffffffffffffffffffffffffffbc4", - "0x208b7fff7fff7ffe", - "0x482680017ffd8000", - "0x6", - "0x402a7ffd7ffc7fff", - "0x480280007ffb8000", - "0x480280017ffb8000", - "0x480280027ffb8000", - "0x480280007ffd8000", - "0x480280017ffd8000", - "0x480280027ffd8000", - "0x480280037ffd8000", - "0x480280047ffd8000", - "0x480280057ffd8000", - "0x1104800180018000", - "0x800000000000010ffffffffffffffffffffffffffffffffffffffffffffffd4", - "0x40780017fff7fff", - "0x1", - "0x48127ffc7fff8000", - "0x48127ffc7fff8000", - "0x48127ffc7fff8000", - "0x480680017fff8000", - "0x0", - "0x48127ffb7fff8000", - "0x208b7fff7fff7ffe", - "0x480a7ffb7fff8000", - "0x480a7ffc7fff8000", - "0x480a7ffd7fff8000", - "0x1104800180018000", - "0x800000000000010fffffffffffffffffffffffffffffffffffffffffffffb9a", - "0x208b7fff7fff7ffe", - "0x40780017fff7fff", - "0x1", - "0x4003800080007ffc", - "0x4826800180008000", - "0x1", - "0x480a7ffd7fff8000", - "0x4828800080007ffe", - "0x480a80007fff8000", - "0x208b7fff7fff7ffe", - "0x402b7ffd7ffc7ffd", - "0x480280007ffb8000", - "0x480280017ffb8000", - "0x480280027ffb8000", - "0x1104800180018000", - "0x800000000000010ffffffffffffffffffffffffffffffffffffffffffffffee", - "0x48127ffe7fff8000", - "0x1104800180018000", - "0x800000000000010fffffffffffffffffffffffffffffffffffffffffffffff1", - "0x48127ff47fff8000", - "0x48127ff47fff8000", - "0x48127ffb7fff8000", - "0x48127ffb7fff8000", - "0x48127ffb7fff8000", - "0x208b7fff7fff7ffe", - "0x480a7ffc7fff8000", - "0x480a7ffb7fff8000", - "0x480a7ffd7fff8000", - "0x1104800180018000", - "0x800000000000010fffffffffffffffffffffffffffffffffffffffffffff5b1", - "0x48127ffc7fff8000", - "0x48127ffa7fff8000", - "0x48127ffb7fff8000", - "0x48127ffb7fff8000", - "0x48127ffb7fff8000", - "0x208b7fff7fff7ffe", - "0x40780017fff7fff", - "0x1", - "0x4003800080007ffb", - "0x4003800180007ffc", - "0x4826800180008000", - "0x2", - "0x480a7ffd7fff8000", - "0x4828800080007ffe", - "0x480a80007fff8000", - "0x208b7fff7fff7ffe", - "0x402b7ffd7ffc7ffd", - "0x480280017ffb8000", - "0x480280007ffb8000", - "0x480280027ffb8000", - "0x1104800180018000", - "0x800000000000010ffffffffffffffffffffffffffffffffffffffffffffffe8", - "0x48127ffd7fff8000", - "0x1104800180018000", - "0x800000000000010fffffffffffffffffffffffffffffffffffffffffffffff0", - "0x48127ff47fff8000", - "0x48127ff27fff8000", - "0x48127ffb7fff8000", - "0x48127ffb7fff8000", - "0x48127ffb7fff8000", - "0x208b7fff7fff7ffe", - "0x480a7ffa7fff8000", - "0x480a7ff97fff8000", - "0x480a7ffb7fff8000", - "0x480a7ffc7fff8000", - "0x480a7ffd7fff8000", - "0x1104800180018000", - "0x800000000000010fffffffffffffffffffffffffffffffffffffffffffff591", - "0x48127ffc7fff8000", - "0x48127ffa7fff8000", - "0x48127ffb7fff8000", - "0x48127ffb7fff8000", - "0x48127ffb7fff8000", - "0x208b7fff7fff7ffe", - "0x40780017fff7fff", - "0x1", - "0x4003800080007ffb", - "0x4003800180007ffc", - "0x4826800180008000", - "0x2", - "0x480a7ffd7fff8000", - "0x4828800080007ffe", - "0x480a80007fff8000", - "0x208b7fff7fff7ffe", - "0x482680017ffd8000", - "0x2", - "0x402a7ffd7ffc7fff", - "0x480280017ffb8000", - "0x480280007ffb8000", - "0x480280027ffb8000", - "0x480280007ffd8000", - "0x480280017ffd8000", - "0x1104800180018000", - "0x800000000000010ffffffffffffffffffffffffffffffffffffffffffffffe2", - "0x48127ffd7fff8000", - "0x1104800180018000", - "0x800000000000010ffffffffffffffffffffffffffffffffffffffffffffffec", - "0x48127ff47fff8000", - "0x48127ff27fff8000", - "0x48127ffb7fff8000", - "0x48127ffb7fff8000", - "0x48127ffb7fff8000", - "0x208b7fff7fff7ffe", - "0x480a7ff97fff8000", - "0x480a7ff87fff8000", - "0x480a7ffa7fff8000", - "0x480a7ffb7fff8000", - "0x480a7ffc7fff8000", - "0x480a7ffd7fff8000", - "0x1104800180018000", - "0x800000000000010fffffffffffffffffffffffffffffffffffffffffffff583", - "0x48127ffc7fff8000", - "0x48127ffa7fff8000", - "0x48127ffb7fff8000", - "0x48127ffb7fff8000", - "0x48127ffb7fff8000", - "0x208b7fff7fff7ffe", - "0x40780017fff7fff", - "0x1", - "0x4003800080007ffb", - "0x4003800180007ffc", - "0x4826800180008000", - "0x2", - "0x480a7ffd7fff8000", - "0x4828800080007ffe", - "0x480a80007fff8000", - "0x208b7fff7fff7ffe", - "0x482680017ffd8000", - "0x3", - "0x402a7ffd7ffc7fff", - "0x480280017ffb8000", - "0x480280007ffb8000", - "0x480280027ffb8000", - "0x480280007ffd8000", - "0x480280017ffd8000", - "0x480280027ffd8000", - "0x1104800180018000", - "0x800000000000010ffffffffffffffffffffffffffffffffffffffffffffffe0", - "0x48127ffd7fff8000", - "0x1104800180018000", - "0x800000000000010ffffffffffffffffffffffffffffffffffffffffffffffeb", - "0x48127ff47fff8000", - "0x48127ff27fff8000", - "0x48127ffb7fff8000", - "0x48127ffb7fff8000", - "0x48127ffb7fff8000", - "0x208b7fff7fff7ffe", - "0x480a7ffa7fff8000", - "0x480a7ffb7fff8000", - "0x480a7ffc7fff8000", - "0x480a7ffd7fff8000", - "0x1104800180018000", - "0x800000000000010ffffffffffffffffffffffffffffffffffffffffffffefd6", - "0x208b7fff7fff7ffe", - "0x40780017fff7fff", - "0x1", - "0x4003800080007ffc", - "0x4826800180008000", - "0x1", - "0x480a7ffd7fff8000", - "0x4828800080007ffe", - "0x480a80007fff8000", - "0x208b7fff7fff7ffe", - "0x482680017ffd8000", - "0x1", - "0x402a7ffd7ffc7fff", - "0x480280007ffb8000", - "0x480280017ffb8000", - "0x480280027ffb8000", - "0x480280007ffd8000", - "0x1104800180018000", - "0x800000000000010ffffffffffffffffffffffffffffffffffffffffffffffea", - "0x48127ffe7fff8000", - "0x1104800180018000", - "0x800000000000010ffffffffffffffffffffffffffffffffffffffffffffffee", - "0x48127ff47fff8000", - "0x48127ff47fff8000", - "0x48127ffb7fff8000", - "0x48127ffb7fff8000", - "0x48127ffb7fff8000", - "0x208b7fff7fff7ffe", - "0x480a7ffb7fff8000", - "0x480a7ffc7fff8000", - "0x480a7ffd7fff8000", - "0x480680017fff8000", - "0x44757374792050696c6f7473", - "0x208b7fff7fff7ffe", - "0x40780017fff7fff", - "0x1", - "0x4003800080007ffc", - "0x4826800180008000", - "0x1", - "0x480a7ffd7fff8000", - "0x4828800080007ffe", - "0x480a80007fff8000", - "0x208b7fff7fff7ffe", - "0x402b7ffd7ffc7ffd", - "0x480280007ffb8000", - "0x480280017ffb8000", - "0x480280027ffb8000", - "0x1104800180018000", - "0x800000000000010ffffffffffffffffffffffffffffffffffffffffffffffee", - "0x48127ffe7fff8000", - "0x1104800180018000", - "0x800000000000010fffffffffffffffffffffffffffffffffffffffffffffff1", - "0x48127ff47fff8000", - "0x48127ff47fff8000", - "0x48127ffb7fff8000", - "0x48127ffb7fff8000", - "0x48127ffb7fff8000", - "0x208b7fff7fff7ffe", - "0x480a7ffb7fff8000", - "0x480a7ffc7fff8000", - "0x480a7ffd7fff8000", - "0x480680017fff8000", - "0x44535450", - "0x208b7fff7fff7ffe", - "0x40780017fff7fff", - "0x1", - "0x4003800080007ffc", - "0x4826800180008000", - "0x1", - "0x480a7ffd7fff8000", - "0x4828800080007ffe", - "0x480a80007fff8000", - "0x208b7fff7fff7ffe", - "0x402b7ffd7ffc7ffd", - "0x480280007ffb8000", - "0x480280017ffb8000", - "0x480280027ffb8000", - "0x1104800180018000", - "0x800000000000010ffffffffffffffffffffffffffffffffffffffffffffffee", - "0x48127ffe7fff8000", - "0x1104800180018000", - "0x800000000000010fffffffffffffffffffffffffffffffffffffffffffffff1", - "0x48127ff47fff8000", - "0x48127ff47fff8000", - "0x48127ffb7fff8000", - "0x48127ffb7fff8000", - "0x48127ffb7fff8000", - "0x208b7fff7fff7ffe", - "0x480a7ffa7fff8000", - "0x480a7ffb7fff8000", - "0x480a7ffc7fff8000", - "0x480a7ffd7fff8000", - "0x1104800180018000", - "0x800000000000010fffffffffffffffffffffffffffffffffffffffffffff15f", - "0x208b7fff7fff7ffe", - "0x40780017fff7fff", - "0x1", - "0x4003800080007ffb", - "0x4003800180007ffc", - "0x4826800180008000", - "0x2", - "0x480a7ffd7fff8000", - "0x4828800080007ffe", - "0x480a80007fff8000", - "0x208b7fff7fff7ffe", - "0x482680017ffd8000", - "0x1", - "0x402a7ffd7ffc7fff", - "0x480280007ffb8000", - "0x480280017ffb8000", - "0x480280027ffb8000", - "0x480280007ffd8000", - "0x1104800180018000", - "0x800000000000010ffffffffffffffffffffffffffffffffffffffffffffffe9", - "0x48127ffd7fff8000", - "0x1104800180018000", - "0x800000000000010ffffffffffffffffffffffffffffffffffffffffffffffed", - "0x48127ff37fff8000", - "0x48127ff37fff8000", - "0x48127ffb7fff8000", - "0x48127ffb7fff8000", - "0x48127ffb7fff8000", - "0x208b7fff7fff7ffe", - "0x480a7ff97fff8000", - "0x480a7ffa7fff8000", - "0x480a7ffb7fff8000", - "0x480a7ffc7fff8000", - "0x480a7ffd7fff8000", - "0x1104800180018000", - "0x800000000000010fffffffffffffffffffffffffffffffffffffffffffff145", - "0x208b7fff7fff7ffe", - "0x40780017fff7fff", - "0x1", - "0x4003800080007ffc", - "0x4826800180008000", - "0x1", - "0x480a7ffd7fff8000", - "0x4828800080007ffe", - "0x480a80007fff8000", - "0x208b7fff7fff7ffe", - "0x482680017ffd8000", - "0x2", - "0x402a7ffd7ffc7fff", - "0x480280007ffb8000", - "0x480280017ffb8000", - "0x480280027ffb8000", - "0x480280007ffd8000", - "0x480280017ffd8000", - "0x1104800180018000", - "0x800000000000010ffffffffffffffffffffffffffffffffffffffffffffffe8", - "0x48127ffe7fff8000", - "0x1104800180018000", - "0x800000000000010ffffffffffffffffffffffffffffffffffffffffffffffed", - "0x48127ff47fff8000", - "0x48127ff47fff8000", - "0x48127ffb7fff8000", - "0x48127ffb7fff8000", - "0x48127ffb7fff8000", - "0x208b7fff7fff7ffe", - "0x480a7ff97fff8000", - "0x480a7ffa7fff8000", - "0x480a7ffb7fff8000", - "0x480a7ffc7fff8000", - "0x480a7ffd7fff8000", - "0x1104800180018000", - "0x800000000000010fffffffffffffffffffffffffffffffffffffffffffff134", - "0x208b7fff7fff7ffe", - "0x40780017fff7fff", - "0x1", - "0x4003800080007ffc", - "0x4826800180008000", - "0x1", - "0x480a7ffd7fff8000", - "0x4828800080007ffe", - "0x480a80007fff8000", - "0x208b7fff7fff7ffe", - "0x482680017ffd8000", - "0x2", - "0x402a7ffd7ffc7fff", - "0x480280007ffb8000", - "0x480280017ffb8000", - "0x480280027ffb8000", - "0x480280007ffd8000", - "0x480280017ffd8000", - "0x1104800180018000", - "0x800000000000010ffffffffffffffffffffffffffffffffffffffffffffffe8", - "0x48127ffe7fff8000", - "0x1104800180018000", - "0x800000000000010ffffffffffffffffffffffffffffffffffffffffffffffed", - "0x48127ff47fff8000", - "0x48127ff47fff8000", - "0x48127ffb7fff8000", - "0x48127ffb7fff8000", - "0x48127ffb7fff8000", - "0x208b7fff7fff7ffe", - "0x480a7ff97fff8000", - "0x480a7ffa7fff8000", - "0x480a7ffb7fff8000", - "0x480a7ffc7fff8000", - "0x480a7ffd7fff8000", - "0x1104800180018000", - "0x800000000000010fffffffffffffffffffffffffffffffffffffffffffff126", - "0x208b7fff7fff7ffe", - "0x40780017fff7fff", - "0x1", - "0x4003800080007ffc", - "0x4826800180008000", - "0x1", - "0x480a7ffd7fff8000", - "0x4828800080007ffe", - "0x480a80007fff8000", - "0x208b7fff7fff7ffe", - "0x482680017ffd8000", - "0x2", - "0x402a7ffd7ffc7fff", - "0x480280007ffb8000", - "0x480280017ffb8000", - "0x480280027ffb8000", - "0x480280007ffd8000", - "0x480280017ffd8000", - "0x1104800180018000", - "0x800000000000010ffffffffffffffffffffffffffffffffffffffffffffffe8", - "0x48127ffe7fff8000", - "0x1104800180018000", - "0x800000000000010ffffffffffffffffffffffffffffffffffffffffffffffed", - "0x48127ff47fff8000", - "0x48127ff47fff8000", - "0x48127ffb7fff8000", - "0x48127ffb7fff8000", - "0x48127ffb7fff8000", - "0x208b7fff7fff7ffe", - "0x480a7ff87fff8000", - "0x480a7ff97fff8000", - "0x480a7ffa7fff8000", - "0x480a7ffb7fff8000", - "0x480a7ffc7fff8000", - "0x480a7ffd7fff8000", - "0x1104800180018000", - "0x800000000000010fffffffffffffffffffffffffffffffffffffffffffff109", - "0x208b7fff7fff7ffe", - "0x482680017ffd8000", - "0x3", - "0x402a7ffd7ffc7fff", - "0x480280017ffb8000", - "0x480280007ffb8000", - "0x480280027ffb8000", - "0x480280007ffd8000", - "0x480280017ffd8000", - "0x480280027ffd8000", - "0x1104800180018000", - "0x800000000000010ffffffffffffffffffffffffffffffffffffffffffffffef", - "0x40780017fff7fff", - "0x1", - "0x48127ffd7fff8000", - "0x48127ffb7fff8000", - "0x48127ffc7fff8000", - "0x480680017fff8000", - "0x0", - "0x48127ffb7fff8000", - "0x208b7fff7fff7ffe", - "0x480a7ff97fff8000", - "0x480a7ffa7fff8000", - "0x480a7ffb7fff8000", - "0x480a7ffc7fff8000", - "0x480a7ffd7fff8000", - "0x1104800180018000", - "0x800000000000010fffffffffffffffffffffffffffffffffffffffffffff125", - "0x208b7fff7fff7ffe", - "0x482680017ffd8000", - "0x2", - "0x402a7ffd7ffc7fff", - "0x480280007ffb8000", - "0x480280017ffb8000", - "0x480280027ffb8000", - "0x480280007ffd8000", - "0x480280017ffd8000", - "0x1104800180018000", - "0x800000000000010fffffffffffffffffffffffffffffffffffffffffffffff1", - "0x40780017fff7fff", - "0x1", - "0x48127ffc7fff8000", - "0x48127ffc7fff8000", - "0x48127ffc7fff8000", - "0x480680017fff8000", - "0x0", - "0x48127ffb7fff8000", - "0x208b7fff7fff7ffe", - "0x480a7ff77fff8000", - "0x480a7ff87fff8000", - "0x480a7ff97fff8000", - "0x480a7ffa7fff8000", - "0x480a7ffb7fff8000", - "0x480a7ffc7fff8000", - "0x480a7ffd7fff8000", - "0x1104800180018000", - "0x800000000000010fffffffffffffffffffffffffffffffffffffffffffff450", - "0x208b7fff7fff7ffe", - "0x482680017ffd8000", - "0x4", - "0x402a7ffd7ffc7fff", - "0x480280017ffb8000", - "0x480280007ffb8000", - "0x480280027ffb8000", - "0x480280007ffd8000", - "0x480280017ffd8000", - "0x480280027ffd8000", - "0x480280037ffd8000", - "0x1104800180018000", - "0x800000000000010ffffffffffffffffffffffffffffffffffffffffffffffed", - "0x40780017fff7fff", - "0x1", - "0x48127ffd7fff8000", - "0x48127ffb7fff8000", - "0x48127ffc7fff8000", - "0x480680017fff8000", - "0x0", - "0x48127ffb7fff8000", - "0x208b7fff7fff7ffe", - "0x480a7ff57fff8000", - "0x480a7ff67fff8000", - "0x480a7ff77fff8000", - "0x480a7ff87fff8000", - "0x480a7ff97fff8000", - "0x480a7ffa7fff8000", - "0x480a7ffb7fff8000", - "0x480a7ffc7fff8000", - "0x480a7ffd7fff8000", - "0x1104800180018000", - "0x800000000000010fffffffffffffffffffffffffffffffffffffffffffff443", - "0x208b7fff7fff7ffe", - "0x480280027ffb8000", - "0x480280047ffd8000", - "0x400080007ffe7fff", - "0x482680017ffd8000", - "0x5", - "0x480280047ffd8000", - "0x48307fff7ffe8000", - "0x402a7ffd7ffc7fff", - "0x480280027ffb8000", - "0x480280017ffb8000", - "0x480280007ffb8000", - "0x482480017ffd8000", - "0x1", - "0x480280007ffd8000", - "0x480280017ffd8000", - "0x480280027ffd8000", - "0x480280037ffd8000", - "0x480280047ffd8000", - "0x482680017ffd8000", - "0x5", - "0x1104800180018000", - "0x800000000000010ffffffffffffffffffffffffffffffffffffffffffffffe1", - "0x40780017fff7fff", - "0x1", - "0x48127ffd7fff8000", - "0x48127ffb7fff8000", - "0x48127ffc7fff8000", - "0x480680017fff8000", - "0x0", - "0x48127ffb7fff8000", - "0x208b7fff7fff7ffe", - "0x480a7ff97fff8000", - "0x480a7ff87fff8000", - "0x480a7ffa7fff8000", - "0x1104800180018000", - "0x800000000000010ffffffffffffffffffffffffffffffffffffffffffffed31", - "0x48127ffe7fff8000", - "0x48127ffc7fff8000", - "0x48127ffd7fff8000", - "0x480a7ffb7fff8000", - "0x480a7ffc7fff8000", - "0x480a7ffd7fff8000", - "0x1104800180018000", - "0x800000000000010fffffffffffffffffffffffffffffffffffffffffffff42c", - "0x208b7fff7fff7ffe", - "0x482680017ffd8000", - "0x3", - "0x402a7ffd7ffc7fff", - "0x480280017ffb8000", - "0x480280007ffb8000", - "0x480280027ffb8000", - "0x480280007ffd8000", - "0x480280017ffd8000", - "0x480280027ffd8000", - "0x1104800180018000", - "0x800000000000010ffffffffffffffffffffffffffffffffffffffffffffffea", - "0x40780017fff7fff", - "0x1", - "0x48127ffd7fff8000", - "0x48127ffb7fff8000", - "0x48127ffc7fff8000", - "0x480680017fff8000", - "0x0", - "0x48127ffb7fff8000", - "0x208b7fff7fff7ffe", - "0x480a7ff97fff8000", - "0x480a7ffa7fff8000", - "0x480a7ffb7fff8000", - "0x480a7ffc7fff8000", - "0x480a7ffd7fff8000", - "0x1104800180018000", - "0x800000000000010fffffffffffffffffffffffffffffffffffffffffffff109", - "0x480a7ffc7fff8000", - "0x480a7ffd7fff8000", - "0x1104800180018000", - "0x800000000000010fffffffffffffffffffffffffffffffffffffffffffff41e", - "0x208b7fff7fff7ffe", - "0x482680017ffd8000", - "0x2", - "0x402a7ffd7ffc7fff", - "0x480280017ffb8000", - "0x480280007ffb8000", - "0x480280027ffb8000", - "0x480280007ffd8000", - "0x480280017ffd8000", - "0x1104800180018000", - "0x800000000000010ffffffffffffffffffffffffffffffffffffffffffffffed", - "0x40780017fff7fff", - "0x1", - "0x48127ffd7fff8000", - "0x48127ffb7fff8000", - "0x48127ffc7fff8000", - "0x480680017fff8000", - "0x0", - "0x48127ffb7fff8000", - "0x208b7fff7fff7ffe" - ], - "debug_info": { - "file_contents": { - "autogen/starknet/arg_processor/001e7e7ada5970d5cd7e7b9fbe70b3d18a0e22c2451b74c773c532e003bf9599.cairo": "// Create a reference to tokenId as felt*.\nlet __calldata_tmp: felt* = cast(&tokenId, felt*);\nassert [__calldata_ptr + 0] = [__calldata_tmp + 0];\nassert [__calldata_ptr + 1] = [__calldata_tmp + 1];\nlet __calldata_ptr = __calldata_ptr + 2;\n", - "autogen/starknet/arg_processor/01cba52f8515996bb9d7070bde81ff39281d096d7024a558efcba6e1fd2402cf.cairo": "assert [cast(fp + (-4), felt*)] = __calldata_actual_size;\n", - "autogen/starknet/arg_processor/038c0cb4ed8fb3662b2204f7a3dad52bb6fd1aceaf040c7093bf2d59c5e90d2e.cairo": "let __calldata_arg_root = [__calldata_ptr];\nlet __calldata_ptr = __calldata_ptr + 1;\n", - "autogen/starknet/arg_processor/06e5a14f93bc3fcb38f775bb6be32ec075a9ef033df7521d51e3a5a3fb688ccb.cairo": "let __calldata_arg_max = [__calldata_ptr];\nlet __calldata_ptr = __calldata_ptr + 1;\n", - "autogen/starknet/arg_processor/075e4ad17c5c33f2000b89f716344a0dc5939a8c778eaecf5d50aad0b8c8f6a4.cairo": "assert [__calldata_ptr] = id;\nlet __calldata_ptr = __calldata_ptr + 1;\n", - "autogen/starknet/arg_processor/0f6247d8ffdacc049a6789184a88aa3d8ff5ca077cd837063ce067f132dc586d.cairo": "// Create a reference to ret_value.tokenId as felt*.\nlet __return_value_tmp: felt* = cast(&ret_value.tokenId, felt*);\nassert [__return_value_ptr + 0] = [__return_value_tmp + 0];\nassert [__return_value_ptr + 1] = [__return_value_tmp + 1];\nlet __return_value_ptr = __return_value_ptr + 2;\n", - "autogen/starknet/arg_processor/10f4ffaf96982a2fff2ff72dc2d3b1a8878257148aab4051a8f2ef7f16687f01.cairo": "assert [__return_value_ptr] = ret_value.address;\nlet __return_value_ptr = __return_value_ptr + 1;\n", - "autogen/starknet/arg_processor/128c2321f9070588a8d11dc60a4b2c6a3b0b1a97919597936f0847381384bd91.cairo": "let __calldata_arg_tokenId = [__calldata_ptr];\nlet __calldata_ptr = __calldata_ptr + 1;\n", - "autogen/starknet/arg_processor/138fbb2581468edec2beca8ce38fccac384aeb4b51fe6af3126d17a00f09f61e.cairo": "let __calldata_arg_contractAddress = [__calldata_ptr];\nlet __calldata_ptr = __calldata_ptr + 1;\n", - "autogen/starknet/arg_processor/1457c154551db44c95111acc1c07961afd1fa1086353a081a57220df823025a2.cairo": "assert [__return_value_ptr] = ret_value.n_row;\nlet __return_value_ptr = __return_value_ptr + 1;\n", - "autogen/starknet/arg_processor/1921cf80c34685bda7c52d95e53497e74d914798938b1491cfcf9359bff14cc8.cairo": "assert [__return_value_ptr] = ret_value.cells_len;\nlet __return_value_ptr = __return_value_ptr + 1;\n", - "autogen/starknet/arg_processor/1c69c7efe008948007bb96a7ffcf593eef2281114be5664acdb2aab9fdcaff9f.cairo": "let __return_value_arg_data_uri_len = [__return_value_ptr];\nlet __return_value_ptr = __return_value_ptr + 1;\n", - "autogen/starknet/arg_processor/211305a4982e84dee745bdcf06176fa172dde0d5d206f753a2e0d4a223d668e4.cairo": "// Check that the length is non-negative.\nassert [range_check_ptr] = ret_value.cells_len;\n// Store the updated range_check_ptr as a local variable to keep it available after\n// the memcpy.\nlocal range_check_ptr = range_check_ptr + 1;\n// Keep a reference to __return_value_ptr.\nlet __return_value_ptr_copy = __return_value_ptr;\n// Store the updated __return_value_ptr as a local variable to keep it available after\n// the memcpy.\nlocal __return_value_ptr: felt* = __return_value_ptr + ret_value.cells_len * 3;\nmemcpy(\n dst=__return_value_ptr_copy,\n src=ret_value.cells,\n len=ret_value.cells_len * 3);\n", - "autogen/starknet/arg_processor/2670bb539ede27446c75876e41bcf9ef5cab09b9eec143f3986635a545b089ab.cairo": "assert [__calldata_ptr] = to;\nlet __calldata_ptr = __calldata_ptr + 1;\n", - "autogen/starknet/arg_processor/280c0a864fa1758c1c68a2dbf7db54c26c78c0212241fc0ab68100cf9886a85a.cairo": "assert [__calldata_ptr] = interfaceId;\nlet __calldata_ptr = __calldata_ptr + 1;\n", - "autogen/starknet/arg_processor/293368f3a0e12cfcf22314a31e13b9801e95a5b8b2b71822a2fbbdf5a01ea795.cairo": "assert [__return_value_ptr] = ret_value.res;\nlet __return_value_ptr = __return_value_ptr + 1;\n", - "autogen/starknet/arg_processor/2d2a59588c2058016ad4194dc37ffe15f61d7d7faa733af03df5d625b7049362.cairo": "let __return_value_arg_selector = [__return_value_ptr];\nlet __return_value_ptr = __return_value_ptr + 1;\n", - "autogen/starknet/arg_processor/33df6e1bcfab0c2b721012401630ed459af24510751c21dc2cea42d959db9ca9.cairo": "assert [__return_value_ptr] = ret_value.contractAddress;\nlet __return_value_ptr = __return_value_ptr + 1;\n", - "autogen/starknet/arg_processor/361efcca75a31f4c299c46d8d625210e368f481380cc3fa32a6d87e5dbe7e45c.cairo": "assert [__return_value_ptr] = ret_value.value;\nlet __return_value_ptr = __return_value_ptr + 1;\n", - "autogen/starknet/arg_processor/3635b1d7caa543a52376beeb37a143262ea6ffdf923d8e3676d9b27787e943c8.cairo": "assert [__return_value_ptr] = ret_value.symbol;\nlet __return_value_ptr = __return_value_ptr + 1;\n", - "autogen/starknet/arg_processor/36bb2f0e50d9623bedb46d800f874e3225ca779427bfe225ce6bc8586f2087bd.cairo": "// Check that the length is non-negative.\nassert [range_check_ptr] = ret_value.cell_calldata_len;\n// Store the updated range_check_ptr as a local variable to keep it available after\n// the memcpy.\nlocal range_check_ptr = range_check_ptr + 1;\n// Keep a reference to __return_value_ptr.\nlet __return_value_ptr_copy = __return_value_ptr;\n// Store the updated __return_value_ptr as a local variable to keep it available after\n// the memcpy.\nlocal __return_value_ptr: felt* = __return_value_ptr + ret_value.cell_calldata_len * 1;\nmemcpy(\n dst=__return_value_ptr_copy,\n src=ret_value.cell_calldata,\n len=ret_value.cell_calldata_len * 1);\n", - "autogen/starknet/arg_processor/3766ca78b7221666e5286be6b1bea607d51c54e82b2b7db68735ed38d00f7732.cairo": "assert [__calldata_ptr] = approved;\nlet __calldata_ptr = __calldata_ptr + 1;\n", - "autogen/starknet/arg_processor/39e07c9c78c5d65e4021222b6cb180405c183c5369648ce6703b11444f98e3ea.cairo": "assert [__return_value_ptr] = ret_value.contractURI_len;\nlet __return_value_ptr = __return_value_ptr + 1;\n", - "autogen/starknet/arg_processor/3df93897a3d5ba5292d0e14e5ec6fc5a7b4e70846d4b45d9e0d60ead1a53339e.cairo": "let __calldata_arg_approved = [__calldata_ptr];\nlet __calldata_ptr = __calldata_ptr + 1;\n", - "autogen/starknet/arg_processor/3e93b8906c329e7a5c33e020ce7a5a9c542c4444955be98eec5fcbef545a8662.cairo": "let __calldata_arg_value = [__calldata_ptr];\nlet __calldata_ptr = __calldata_ptr + 1;\n", - "autogen/starknet/arg_processor/3fa00a8d2ef4ad5733642f8c5f3a225f5ee5fd306a52e47a3de0f3e4a53969e9.cairo": "assert [__return_value_ptr] = ret_value.root;\nlet __return_value_ptr = __return_value_ptr + 1;\n", - "autogen/starknet/arg_processor/445d818b0524d35ae3e73b7abec41731d1445f0ce6866ec5a3a8a871521799a0.cairo": "assert [__calldata_ptr] = newOwner;\nlet __calldata_ptr = __calldata_ptr + 1;\n", - "autogen/starknet/arg_processor/450f0509800d3afb78e5f375ff7b17115e6b5d0fd7e2bff94c78fdb15f5f2d10.cairo": "let __calldata_arg_new_owner = [__calldata_ptr];\nlet __calldata_ptr = __calldata_ptr + 1;\n", - "autogen/starknet/arg_processor/46897e8d1eeb70f43de97768fc576e67eb909a92fef3afcd8593de4462cb359f.cairo": "assert [__calldata_ptr] = contract_address;\nlet __calldata_ptr = __calldata_ptr + 1;\n", - "autogen/starknet/arg_processor/4f1f3aa0a6fec21a155d7e953cd34daa7ca48450bbb80f627eb4f8df9f25922a.cairo": "let __calldata_arg_data_len = [__calldata_ptr];\nlet __calldata_ptr = __calldata_ptr + 1;\n", - "autogen/starknet/arg_processor/5462c9ea522f66a6a8b3de2f37f244c7074893fe5c8d0b413046098a1ccfc2ce.cairo": "assert [__return_value_ptr] = ret_value.token_uri_len;\nlet __return_value_ptr = __return_value_ptr + 1;\n", - "autogen/starknet/arg_processor/5acfd8e875f992ccc9524eb75bc3cf4970bff0987c9ed04b83bdbe0bdb94c8b5.cairo": "assert [__calldata_ptr] = data_len;\nlet __calldata_ptr = __calldata_ptr + 1;\n", - "autogen/starknet/arg_processor/5c10028f67364b153272aa9b4cbc0fb78920a40fab821ac7257b0069e0773b49.cairo": "assert [__return_value_ptr] = ret_value.success;\nlet __return_value_ptr = __return_value_ptr + 1;\n", - "autogen/starknet/arg_processor/5f6f38b703e229f570e2da89310885489d239999dac5c644617b668e9f79038b.cairo": "// Create a reference to ret_value.cell as felt*.\nlet __return_value_tmp: felt* = cast(&ret_value.cell, felt*);\nassert [__return_value_ptr + 0] = [__return_value_tmp + 0];\nassert [__return_value_ptr + 1] = [__return_value_tmp + 1];\nassert [__return_value_ptr + 2] = [__return_value_tmp + 2];\nlet __return_value_ptr = __return_value_ptr + 3;\n", - "autogen/starknet/arg_processor/5f7cff0f0869183ab81c52dd23cebe852fdd2ffd08dec74a7e76d81c9d544ed2.cairo": "// Check that the length is non-negative.\nassert [range_check_ptr] = data_len;\n// Store the updated range_check_ptr as a local variable to keep it available after\n// the memcpy.\nlocal range_check_ptr = range_check_ptr + 1;\n// Keep a reference to __calldata_ptr.\nlet __calldata_ptr_copy = __calldata_ptr;\n// Store the updated __calldata_ptr as a local variable to keep it available after\n// the memcpy.\nlocal __calldata_ptr: felt* = __calldata_ptr + data_len * 1;\nmemcpy(\n dst=__calldata_ptr_copy,\n src=data,\n len=data_len * 1);\n", - "autogen/starknet/arg_processor/60c79ef5477686f2843e61432dcde7f4fc0f354d42095115ea9dca625a35df6e.cairo": "let __calldata_arg_tokenId = [\n cast(__calldata_ptr, starkware.cairo.common.uint256.Uint256*)];\nlet __calldata_ptr = __calldata_ptr + 2;\n", - "autogen/starknet/arg_processor/6450610d0d553c149684e3d6d36a5d949ffe368d7692d99cec27ac08c51ad845.cairo": "assert [__return_value_ptr] = ret_value.isApproved;\nlet __return_value_ptr = __return_value_ptr + 1;\n", - "autogen/starknet/arg_processor/6f345e20daf86e05c346aa1f6a9eeaa296a59eb71a12784c017d25ed5b25ff32.cairo": "assert [__return_value_ptr] = ret_value.name;\nlet __return_value_ptr = __return_value_ptr + 1;\n", - "autogen/starknet/arg_processor/708f2877a5fc05dca278266df4d8e2025597a78068ffd64385f0ef27ab208871.cairo": "let __calldata_arg_interfaceId = [__calldata_ptr];\nlet __calldata_ptr = __calldata_ptr + 1;\n", - "autogen/starknet/arg_processor/718aa2ac933a14995b4c0da5118692224afa83ebc1cf2b531694a3e835400de0.cairo": "assert [__calldata_ptr] = name;\nlet __calldata_ptr = __calldata_ptr + 1;\n", - "autogen/starknet/arg_processor/721e180cb3ac704934655c034d4d45bf2d0ab4353d430b4f2bbda2a388c131b2.cairo": "let __calldata_arg_merkle_root = [__calldata_ptr];\nlet __calldata_ptr = __calldata_ptr + 1;\n", - "autogen/starknet/arg_processor/74a3369943c8d7518ff17d6d8cb3e9a3785e7db4bcf995a7ffbf3a439df0343b.cairo": "assert [__return_value_ptr] = ret_value.approved;\nlet __return_value_ptr = __return_value_ptr + 1;\n", - "autogen/starknet/arg_processor/7e247556a8b9bc505c1e503bda1dbcb424caa8925f45ae18cdde008e8b84b376.cairo": "assert [__calldata_ptr] = owner;\nlet __calldata_ptr = __calldata_ptr + 1;\n", - "autogen/starknet/arg_processor/7e872b5a76cfa33336e13e83d342763f36bad8be8a18be69e78776b449847f1a.cairo": "let __calldata_arg_cellCalldata_len = [__calldata_ptr];\nlet __calldata_ptr = __calldata_ptr + 1;\n", - "autogen/starknet/arg_processor/7e8d4187d234f1ad9572c7c76c7fcab338d2159e013bdd9bfc0f771a29c04f92.cairo": "// Check that the length is non-negative.\nassert [range_check_ptr] = __calldata_arg_cellCalldata_len;\nlet range_check_ptr = range_check_ptr + 1;\n// Create the reference.\nlet __calldata_arg_cellCalldata = cast(__calldata_ptr, felt*);\n// Use 'tempvar' instead of 'let' to avoid repeating this computation for the\n// following arguments.\ntempvar __calldata_ptr = __calldata_ptr + __calldata_arg_cellCalldata_len * 1;\n", - "autogen/starknet/arg_processor/84a24514c1fc47c938055c9b8b555ae76e193c3fe4f1a6a3391748432a916688.cairo": "assert [__calldata_ptr] = value;\nlet __calldata_ptr = __calldata_ptr + 1;\n", - "autogen/starknet/arg_processor/8ca78f1082aaedcf62c13aff4dffe5943aa04164c60cb6d9f03916c0319201df.cairo": "let __return_value_arg_success = [__return_value_ptr];\nlet __return_value_ptr = __return_value_ptr + 1;\n", - "autogen/starknet/arg_processor/8d1ba44ec0b1d27c24688348db19d49f555faaa5454ce90a4e7ba33d6a63afea.cairo": "// Check that the length is non-negative.\nassert [range_check_ptr] = ret_value.token_uri_len;\n// Store the updated range_check_ptr as a local variable to keep it available after\n// the memcpy.\nlocal range_check_ptr = range_check_ptr + 1;\n// Keep a reference to __return_value_ptr.\nlet __return_value_ptr_copy = __return_value_ptr;\n// Store the updated __return_value_ptr as a local variable to keep it available after\n// the memcpy.\nlocal __return_value_ptr: felt* = __return_value_ptr + ret_value.token_uri_len * 1;\nmemcpy(\n dst=__return_value_ptr_copy,\n src=ret_value.token_uri,\n len=ret_value.token_uri_len * 1);\n", - "autogen/starknet/arg_processor/90d39885368c3e7097e50bfd1ab7069fc16a5b7a0aacb507eaa76c5ff838c93e.cairo": "// Check that the length is non-negative.\nassert [range_check_ptr] = __return_value_arg_data_uri_len;\nlet range_check_ptr = range_check_ptr + 1;\n// Create the reference.\nlet __return_value_arg_data_uri = cast(__return_value_ptr, felt*);\n// Use 'tempvar' instead of 'let' to avoid repeating this computation for the\n// following arguments.\ntempvar __return_value_ptr = __return_value_ptr + __return_value_arg_data_uri_len * 1;\n", - "autogen/starknet/arg_processor/96447016176d161dae83f414c4d3e33e78856e0ef69bc33f8d419f1c9b90f9c5.cairo": "assert retdata_size = __return_value_actual_size;\n", - "autogen/starknet/arg_processor/9822619206729a9eadcae854c851238a68f93e9dbd956bc4fa147da27ae12e2e.cairo": "// Create a reference to ret_value.totalSupply as felt*.\nlet __return_value_tmp: felt* = cast(&ret_value.totalSupply, felt*);\nassert [__return_value_ptr + 0] = [__return_value_tmp + 0];\nassert [__return_value_ptr + 1] = [__return_value_tmp + 1];\nlet __return_value_ptr = __return_value_ptr + 2;\n", - "autogen/starknet/arg_processor/99058c0781745b3c0332799d723549974cbf489b623dde03906204304de60803.cairo": "let __calldata_arg_symbol = [__calldata_ptr];\nlet __calldata_ptr = __calldata_ptr + 1;\n", - "autogen/starknet/arg_processor/991f62016c321db1ce050da1566d298118c65229306c26d6cd25e91286a63d4b.cairo": "let __calldata_arg_proof_len = [__calldata_ptr];\nlet __calldata_ptr = __calldata_ptr + 1;\n", - "autogen/starknet/arg_processor/a98a36d6a206700a5fdb61e2bbb1beffba5cbd4bdfdab9d3af5254d2a0b5137a.cairo": "// Check that the length is non-negative.\nassert [range_check_ptr] = ret_value.contractURI_len;\n// Store the updated range_check_ptr as a local variable to keep it available after\n// the memcpy.\nlocal range_check_ptr = range_check_ptr + 1;\n// Keep a reference to __return_value_ptr.\nlet __return_value_ptr_copy = __return_value_ptr;\n// Store the updated __return_value_ptr as a local variable to keep it available after\n// the memcpy.\nlocal __return_value_ptr: felt* = __return_value_ptr + ret_value.contractURI_len * 1;\nmemcpy(\n dst=__return_value_ptr_copy,\n src=ret_value.contractURI,\n len=ret_value.contractURI_len * 1);\n", - "autogen/starknet/arg_processor/accb388bcbbace5b6218198851efaad2a781c1339e305a37fab51afe90a3194a.cairo": "let __return_value_actual_size = __return_value_ptr - cast(retdata, felt*);\n", - "autogen/starknet/arg_processor/ad6bf90c88bb84c90b568cfe0e89ce22c3213011f6c9cc8bf0b75066ae521c26.cairo": "assert [__calldata_ptr] = from_;\nlet __calldata_ptr = __calldata_ptr + 1;\n", - "autogen/starknet/arg_processor/ae93e6f6d7f86189a001cc0e74584f97c7f1eac8e0ab1a1d6be76deb397bb0c0.cairo": "let __calldata_arg_n_row = [__calldata_ptr];\nlet __calldata_ptr = __calldata_ptr + 1;\n", - "autogen/starknet/arg_processor/b02ddc13e06346668d980e18c0fec90f17036d195bf95d21ac18e846a0a129f3.cairo": "assert [__return_value_ptr] = ret_value.owner;\nlet __return_value_ptr = __return_value_ptr + 1;\n", - "autogen/starknet/arg_processor/b19b7bf952f10d75c6d6d48c16be4d0aa794947e7c7409b4e5d1fff596b961ac.cairo": "let __calldata_arg_cell_calldata_len = [__calldata_ptr];\nlet __calldata_ptr = __calldata_ptr + 1;\n", - "autogen/starknet/arg_processor/b2cf08f23bd6d74eeb872bed49d06f4a7518757c8955198bd7ce9a52a9cf0046.cairo": "assert [__calldata_ptr] = token_id;\nlet __calldata_ptr = __calldata_ptr + 1;\n", - "autogen/starknet/arg_processor/c28d01f4036658535ed1f26a855ca481100f6b9fa5c266733e27ba2dce390d91.cairo": "let __calldata_arg_operator = [__calldata_ptr];\nlet __calldata_ptr = __calldata_ptr + 1;\n", - "autogen/starknet/arg_processor/c31620b02d4d706f0542c989b2aadc01b0981d1f6a5933a8fe4937ace3d70d92.cairo": "let __calldata_actual_size = __calldata_ptr - cast([cast(fp + (-3), felt**)], felt*);\n", - "autogen/starknet/arg_processor/c78355ecc2754d55946f2925c4c255af62ef2b2ddba4e3e4e975bebf3d66daa1.cairo": "let __calldata_arg_renderer_address = [__calldata_ptr];\nlet __calldata_ptr = __calldata_ptr + 1;\n", - "autogen/starknet/arg_processor/c8edcb1cbb2b70f99346c0510efba5a82524d6fbe8558629ad05a45a84efd25b.cairo": "// Check that the length is non-negative.\nassert [range_check_ptr] = __calldata_arg_proof_len;\nlet range_check_ptr = range_check_ptr + 1;\n// Create the reference.\nlet __calldata_arg_proof = cast(__calldata_ptr, felt*);\n// Use 'tempvar' instead of 'let' to avoid repeating this computation for the\n// following arguments.\ntempvar __calldata_ptr = __calldata_ptr + __calldata_arg_proof_len * 1;\n", - "autogen/starknet/arg_processor/cf9d155a82359872fd6c3831de72477dc112f8fe156e1c50035a0d8fc012189b.cairo": "// Check that the length is non-negative.\nassert [range_check_ptr] = __calldata_arg_cell_calldata_len;\nlet range_check_ptr = range_check_ptr + 1;\n// Create the reference.\nlet __calldata_arg_cell_calldata = cast(__calldata_ptr, felt*);\n// Use 'tempvar' instead of 'let' to avoid repeating this computation for the\n// following arguments.\ntempvar __calldata_ptr = __calldata_ptr + __calldata_arg_cell_calldata_len * 1;\n", - "autogen/starknet/arg_processor/d1f8dd5812766c8b9a93481fc66a39d49b601278b5c44556f4c0881f1ef1608f.cairo": "let __calldata_arg_index = [\n cast(__calldata_ptr, starkware.cairo.common.uint256.Uint256*)];\nlet __calldata_ptr = __calldata_ptr + 2;\n", - "autogen/starknet/arg_processor/d68c2b8787e4e85a0788ba04df9230f6e6b1f9240af8998fd1d7acac9fe8e6db.cairo": "assert [__calldata_ptr] = operator;\nlet __calldata_ptr = __calldata_ptr + 1;\n", - "autogen/starknet/arg_processor/d7daa544e246461a936b5ac82f5344c08a96429550ee8026ea086c8d8ed93006.cairo": "let __calldata_arg_address = [__calldata_ptr];\nlet __calldata_ptr = __calldata_ptr + 1;\n", - "autogen/starknet/arg_processor/dceaabc265216c0ff87c509d90446554648ec4d692c521cda952464d1fc22972.cairo": "let __calldata_arg_to = [__calldata_ptr];\nlet __calldata_ptr = __calldata_ptr + 1;\n", - "autogen/starknet/arg_processor/df39236eab78c921af48d719316dc25209f5ba97dc94936a936f353a674f3486.cairo": "let __calldata_arg_from_ = [__calldata_ptr];\nlet __calldata_ptr = __calldata_ptr + 1;\n", - "autogen/starknet/arg_processor/e0af26f9fbe513562e2133164d694cbff092c47bbb4efa182711421f0c0cc5d3.cairo": "// Check that the length is non-negative.\nassert [range_check_ptr] = __calldata_arg_data_len;\nlet range_check_ptr = range_check_ptr + 1;\n// Create the reference.\nlet __calldata_arg_data = cast(__calldata_ptr, felt*);\n// Use 'tempvar' instead of 'let' to avoid repeating this computation for the\n// following arguments.\ntempvar __calldata_ptr = __calldata_ptr + __calldata_arg_data_len * 1;\n", - "autogen/starknet/arg_processor/e1eb73cd870ec466294c3700e77817cf3c039ac1384882ddb76383eb87a5da90.cairo": "let __calldata_arg_name = [__calldata_ptr];\nlet __calldata_ptr = __calldata_ptr + 1;\n", - "autogen/starknet/arg_processor/e2129a0023ce5f9e4c3de1d6fb100b2688dccff4a2ed2082db4a311f35c53e21.cairo": "assert [__calldata_ptr] = previousOwner;\nlet __calldata_ptr = __calldata_ptr + 1;\n", - "autogen/starknet/arg_processor/e276a8bfa422a700d63781b00d1ac04d0496d9b70b1f051710b53e01fffe130c.cairo": "assert [__return_value_ptr] = ret_value.max;\nlet __return_value_ptr = __return_value_ptr + 1;\n", - "autogen/starknet/arg_processor/e35382e271586e2ad95e0c2b81d70c0cfb65ce154855d90ea95dcf9e76667535.cairo": "let __calldata_arg_max_per_wallet = [__calldata_ptr];\nlet __calldata_ptr = __calldata_ptr + 1;\n", - "autogen/starknet/arg_processor/f013cc89754bf613d36aa163a5014b518987d20a85394ebbe3c47c5cdb0a38b1.cairo": "// Create a reference to ret_value.balance as felt*.\nlet __return_value_tmp: felt* = cast(&ret_value.balance, felt*);\nassert [__return_value_ptr + 0] = [__return_value_tmp + 0];\nassert [__return_value_ptr + 1] = [__return_value_tmp + 1];\nlet __return_value_ptr = __return_value_ptr + 2;\n", - "autogen/starknet/arg_processor/f204bba64347870893c4affbf57c4cff6fc02af3b0ac400d4d3ba5c273c8059c.cairo": "assert [__return_value_ptr] = ret_value.cell_calldata_len;\nlet __return_value_ptr = __return_value_ptr + 1;\n", - "autogen/starknet/arg_processor/f6a4d9ae897caf37cefd18f7c8da7eee73157818279359aadee282f0fe59cdbc.cairo": "let __calldata_arg_owner = [__calldata_ptr];\nlet __calldata_ptr = __calldata_ptr + 1;\n", - "autogen/starknet/contract_interface/ICellRenderer/token_uri/41262dba046518ea626ceadddf9bdd89ee1cb488a62fdf8cc47232b6ce4027bb.cairo": "func token_uri{syscall_ptr: felt*, range_check_ptr}(\n contract_address: felt) {\n}\n", - "autogen/starknet/contract_interface/ICellRenderer/token_uri/63dec979b849c8d317c85f20bf92c57762e3a959db375d2edb42d111867dcba1.cairo": "\nreturn (data_uri_len=__return_value_arg_data_uri_len, data_uri=__return_value_arg_data_uri,);\n", - "autogen/starknet/contract_interface/ICellRenderer/token_uri/64f7842b108e76706927b78270ac73c789c558c54431b3359e4441e63ec2a868.cairo": "\nalloc_locals;\nlet (local calldata_ptr_start: felt*) = alloc();\nlet __calldata_ptr = calldata_ptr_start;\n", - "autogen/starknet/contract_interface/ICellRenderer/token_uri/e1e41e9022bda39c4617b9e4e338140cde71000402172e9b2b9c9fdc807617dc.cairo": "\nlet (retdata_size, retdata) = call_contract(\n contract_address=contract_address,\n function_selector=TOKEN_URI_SELECTOR,\n calldata_size=__calldata_ptr - calldata_ptr_start,\n calldata=calldata_ptr_start);\n", - "autogen/starknet/contract_interface/IERC165/supportsInterface/18abb29d0a089e1c243e4bd2b316687e6162b3321c14733ee37389da5d8b074f.cairo": "\nreturn (success=__return_value_arg_success,);\n", - "autogen/starknet/contract_interface/IERC165/supportsInterface/2a1791e6eb36480300e6de9be3cf0c73e2bf0096fbe6995a9e4600da5d0240a4.cairo": "func supportsInterface{syscall_ptr: felt*, range_check_ptr}(\n contract_address: felt) {\n}\n", - "autogen/starknet/contract_interface/IERC165/supportsInterface/64f7842b108e76706927b78270ac73c789c558c54431b3359e4441e63ec2a868.cairo": "\nalloc_locals;\nlet (local calldata_ptr_start: felt*) = alloc();\nlet __calldata_ptr = calldata_ptr_start;\n", - "autogen/starknet/contract_interface/IERC165/supportsInterface/f50ea4a37616147e889ba1b747383d1afbdef44f9e4713bc1859b7607cc3c796.cairo": "\nlet (retdata_size, retdata) = call_contract(\n contract_address=contract_address,\n function_selector=SUPPORTSINTERFACE_SELECTOR,\n calldata_size=__calldata_ptr - calldata_ptr_start,\n calldata=calldata_ptr_start);\n", - "autogen/starknet/contract_interface/IERC721Receiver/onERC721Received/15cc68dcffa081f990a115434ffe958c4bde04186a7f9f51e10c68f8fafad966.cairo": "\nlet (retdata_size, retdata) = call_contract(\n contract_address=contract_address,\n function_selector=ONERC721RECEIVED_SELECTOR,\n calldata_size=__calldata_ptr - calldata_ptr_start,\n calldata=calldata_ptr_start);\n", - "autogen/starknet/contract_interface/IERC721Receiver/onERC721Received/64f7842b108e76706927b78270ac73c789c558c54431b3359e4441e63ec2a868.cairo": "\nalloc_locals;\nlet (local calldata_ptr_start: felt*) = alloc();\nlet __calldata_ptr = calldata_ptr_start;\n", - "autogen/starknet/contract_interface/IERC721Receiver/onERC721Received/7867481925aec1465158cbaa62d2d4fc603e34734d22c5e07da7379a4d0d3f0e.cairo": "func onERC721Received{syscall_ptr: felt*, range_check_ptr}(\n contract_address: felt) {\n}\n", - "autogen/starknet/contract_interface/IERC721Receiver/onERC721Received/eacb58a12700a3c997996f81c85f24b3de75e21f5c5811cc3b2470465a1aa212.cairo": "\nreturn (selector=__return_value_arg_selector,);\n", - "autogen/starknet/event/Approval/6150feec30bd48bfd0f446ed8c155a6d911a2c3fb3ec7a980733900416819259.cairo": "emit_event(keys_len=1, keys=__keys_ptr, data_len=__calldata_ptr - __data_ptr, data=__data_ptr);\nreturn ();\n", - "autogen/starknet/event/Approval/8220fde17ca5479f12ae71a8036f4d354fe722f2c036da610b53511924e4ee84.cairo": "alloc_locals;\nlet (local __keys_ptr: felt*) = alloc();\nassert [__keys_ptr] = SELECTOR;\nlet (local __data_ptr: felt*) = alloc();\nlet __calldata_ptr = __data_ptr;\n", - "autogen/starknet/event/Approval/a7a8ae41be29ac9f4f6c3b7837c448d787ca051dd1ade98f409e54d33d112504.cairo": "func emit{syscall_ptr: felt*, range_check_ptr}() {\n}\n", - "autogen/starknet/event/ApprovalForAll/6150feec30bd48bfd0f446ed8c155a6d911a2c3fb3ec7a980733900416819259.cairo": "emit_event(keys_len=1, keys=__keys_ptr, data_len=__calldata_ptr - __data_ptr, data=__data_ptr);\nreturn ();\n", - "autogen/starknet/event/ApprovalForAll/8220fde17ca5479f12ae71a8036f4d354fe722f2c036da610b53511924e4ee84.cairo": "alloc_locals;\nlet (local __keys_ptr: felt*) = alloc();\nassert [__keys_ptr] = SELECTOR;\nlet (local __data_ptr: felt*) = alloc();\nlet __calldata_ptr = __data_ptr;\n", - "autogen/starknet/event/ApprovalForAll/a7a8ae41be29ac9f4f6c3b7837c448d787ca051dd1ade98f409e54d33d112504.cairo": "func emit{syscall_ptr: felt*, range_check_ptr}() {\n}\n", - "autogen/starknet/event/CellUpdated/6150feec30bd48bfd0f446ed8c155a6d911a2c3fb3ec7a980733900416819259.cairo": "emit_event(keys_len=1, keys=__keys_ptr, data_len=__calldata_ptr - __data_ptr, data=__data_ptr);\nreturn ();\n", - "autogen/starknet/event/CellUpdated/8220fde17ca5479f12ae71a8036f4d354fe722f2c036da610b53511924e4ee84.cairo": "alloc_locals;\nlet (local __keys_ptr: felt*) = alloc();\nassert [__keys_ptr] = SELECTOR;\nlet (local __data_ptr: felt*) = alloc();\nlet __calldata_ptr = __data_ptr;\n", - "autogen/starknet/event/CellUpdated/a7a8ae41be29ac9f4f6c3b7837c448d787ca051dd1ade98f409e54d33d112504.cairo": "func emit{syscall_ptr: felt*, range_check_ptr}() {\n}\n", - "autogen/starknet/event/OwnershipTransferred/6150feec30bd48bfd0f446ed8c155a6d911a2c3fb3ec7a980733900416819259.cairo": "emit_event(keys_len=1, keys=__keys_ptr, data_len=__calldata_ptr - __data_ptr, data=__data_ptr);\nreturn ();\n", - "autogen/starknet/event/OwnershipTransferred/8220fde17ca5479f12ae71a8036f4d354fe722f2c036da610b53511924e4ee84.cairo": "alloc_locals;\nlet (local __keys_ptr: felt*) = alloc();\nassert [__keys_ptr] = SELECTOR;\nlet (local __data_ptr: felt*) = alloc();\nlet __calldata_ptr = __data_ptr;\n", - "autogen/starknet/event/OwnershipTransferred/a7a8ae41be29ac9f4f6c3b7837c448d787ca051dd1ade98f409e54d33d112504.cairo": "func emit{syscall_ptr: felt*, range_check_ptr}() {\n}\n", - "autogen/starknet/event/Transfer/6150feec30bd48bfd0f446ed8c155a6d911a2c3fb3ec7a980733900416819259.cairo": "emit_event(keys_len=1, keys=__keys_ptr, data_len=__calldata_ptr - __data_ptr, data=__data_ptr);\nreturn ();\n", - "autogen/starknet/event/Transfer/8220fde17ca5479f12ae71a8036f4d354fe722f2c036da610b53511924e4ee84.cairo": "alloc_locals;\nlet (local __keys_ptr: felt*) = alloc();\nassert [__keys_ptr] = SELECTOR;\nlet (local __data_ptr: felt*) = alloc();\nlet __calldata_ptr = __data_ptr;\n", - "autogen/starknet/event/Transfer/a7a8ae41be29ac9f4f6c3b7837c448d787ca051dd1ade98f409e54d33d112504.cairo": "func emit{syscall_ptr: felt*, range_check_ptr}() {\n}\n", - "autogen/starknet/external/approve/5388f692818f55977b2452a31ce8c0a2aaeeb5ab5c5db8c2d2f3ab50dcff739b.cairo": "let ret_value = __wrapped_func{pedersen_ptr=pedersen_ptr, syscall_ptr=syscall_ptr, range_check_ptr=range_check_ptr}(to=__calldata_arg_to, tokenId=__calldata_arg_tokenId,);\n%{ memory[ap] = segments.add() %} // Allocate memory for return value.\ntempvar retdata: felt*;\nlet retdata_size = 0;\n", - "autogen/starknet/external/approve/741ea357d6336b0bed7bf0472425acd0311d543883b803388880e60a232040c7.cairo": "let range_check_ptr = [cast([cast(fp + (-5), felt**)] + 2, felt*)];\n", - "autogen/starknet/external/approve/9684a85e93c782014ca14293edea4eb2502039a5a7b6538ecd39c56faaf12529.cairo": "let pedersen_ptr = [cast([cast(fp + (-5), felt**)] + 1, starkware.cairo.common.cairo_builtins.HashBuiltin**)];\n", - "autogen/starknet/external/approve/b2c52ca2d2a8fc8791a983086d8716c5eacd0c3d62934914d2286f84b98ff4cb.cairo": "let syscall_ptr = [cast([cast(fp + (-5), felt**)] + 0, felt**)];\n", - "autogen/starknet/external/approve/da17921a4e81c09e730800bbf23bfdbe5e9e6bfaedc59d80fbf62087fa43c27d.cairo": "return (syscall_ptr,pedersen_ptr,range_check_ptr,retdata_size,retdata);\n", - "autogen/starknet/external/balanceOf/741ea357d6336b0bed7bf0472425acd0311d543883b803388880e60a232040c7.cairo": "let range_check_ptr = [cast([cast(fp + (-5), felt**)] + 2, felt*)];\n", - "autogen/starknet/external/balanceOf/9684a85e93c782014ca14293edea4eb2502039a5a7b6538ecd39c56faaf12529.cairo": "let pedersen_ptr = [cast([cast(fp + (-5), felt**)] + 1, starkware.cairo.common.cairo_builtins.HashBuiltin**)];\n", - "autogen/starknet/external/balanceOf/b2c52ca2d2a8fc8791a983086d8716c5eacd0c3d62934914d2286f84b98ff4cb.cairo": "let syscall_ptr = [cast([cast(fp + (-5), felt**)] + 0, felt**)];\n", - "autogen/starknet/external/balanceOf/da17921a4e81c09e730800bbf23bfdbe5e9e6bfaedc59d80fbf62087fa43c27d.cairo": "return (syscall_ptr,pedersen_ptr,range_check_ptr,retdata_size,retdata);\n", - "autogen/starknet/external/balanceOf/e284e4e5d868a363d8b6a6cb098d9657778060e55c5be38c8c67b1857b1926cc.cairo": "let ret_value = __wrapped_func{syscall_ptr=syscall_ptr, pedersen_ptr=pedersen_ptr, range_check_ptr=range_check_ptr}(owner=__calldata_arg_owner,);\nlet (range_check_ptr, retdata_size, retdata) = balanceOf_encode_return(ret_value, range_check_ptr);\n", - "autogen/starknet/external/burn/741ea357d6336b0bed7bf0472425acd0311d543883b803388880e60a232040c7.cairo": "let range_check_ptr = [cast([cast(fp + (-5), felt**)] + 2, felt*)];\n", - "autogen/starknet/external/burn/9684a85e93c782014ca14293edea4eb2502039a5a7b6538ecd39c56faaf12529.cairo": "let pedersen_ptr = [cast([cast(fp + (-5), felt**)] + 1, starkware.cairo.common.cairo_builtins.HashBuiltin**)];\n", - "autogen/starknet/external/burn/b2c52ca2d2a8fc8791a983086d8716c5eacd0c3d62934914d2286f84b98ff4cb.cairo": "let syscall_ptr = [cast([cast(fp + (-5), felt**)] + 0, felt**)];\n", - "autogen/starknet/external/burn/da17921a4e81c09e730800bbf23bfdbe5e9e6bfaedc59d80fbf62087fa43c27d.cairo": "return (syscall_ptr,pedersen_ptr,range_check_ptr,retdata_size,retdata);\n", - "autogen/starknet/external/burn/eaf4d781176f2c7f8e24c490df96b0bc54d4e6b6ef7b6749ba2322b4fdcc923a.cairo": "let ret_value = __wrapped_func{pedersen_ptr=pedersen_ptr, syscall_ptr=syscall_ptr, range_check_ptr=range_check_ptr}(tokenId=__calldata_arg_tokenId,);\n%{ memory[ap] = segments.add() %} // Allocate memory for return value.\ntempvar retdata: felt*;\nlet retdata_size = 0;\n", - "autogen/starknet/external/closeMint/741ea357d6336b0bed7bf0472425acd0311d543883b803388880e60a232040c7.cairo": "let range_check_ptr = [cast([cast(fp + (-5), felt**)] + 2, felt*)];\n", - "autogen/starknet/external/closeMint/8f83d060e7e088c358526f8859eb82973ba2c094c7d9223df6230b744dfa211c.cairo": "let ret_value = __wrapped_func{syscall_ptr=syscall_ptr, pedersen_ptr=pedersen_ptr, range_check_ptr=range_check_ptr}();\n%{ memory[ap] = segments.add() %} // Allocate memory for return value.\ntempvar retdata: felt*;\nlet retdata_size = 0;\n", - "autogen/starknet/external/closeMint/9684a85e93c782014ca14293edea4eb2502039a5a7b6538ecd39c56faaf12529.cairo": "let pedersen_ptr = [cast([cast(fp + (-5), felt**)] + 1, starkware.cairo.common.cairo_builtins.HashBuiltin**)];\n", - "autogen/starknet/external/closeMint/b2c52ca2d2a8fc8791a983086d8716c5eacd0c3d62934914d2286f84b98ff4cb.cairo": "let syscall_ptr = [cast([cast(fp + (-5), felt**)] + 0, felt**)];\n", - "autogen/starknet/external/closeMint/da17921a4e81c09e730800bbf23bfdbe5e9e6bfaedc59d80fbf62087fa43c27d.cairo": "return (syscall_ptr,pedersen_ptr,range_check_ptr,retdata_size,retdata);\n", - "autogen/starknet/external/contractURI/3c9b92c0973b74bf396b0131dcaac8f957a6f0700183164a2207ddd5fa7fe277.cairo": "func contractURI() -> (syscall_ptr: felt*, pedersen_ptr: starkware.cairo.common.cairo_builtins.HashBuiltin*, range_check_ptr: felt, size: felt, retdata: felt*) {\n alloc_locals;\n}\n", - "autogen/starknet/external/contractURI/741ea357d6336b0bed7bf0472425acd0311d543883b803388880e60a232040c7.cairo": "let range_check_ptr = [cast([cast(fp + (-5), felt**)] + 2, felt*)];\n", - "autogen/starknet/external/contractURI/9684a85e93c782014ca14293edea4eb2502039a5a7b6538ecd39c56faaf12529.cairo": "let pedersen_ptr = [cast([cast(fp + (-5), felt**)] + 1, starkware.cairo.common.cairo_builtins.HashBuiltin**)];\n", - "autogen/starknet/external/contractURI/acba12aa8a66bb92372f5fdd79fc376f71f4b521ee6979ba2e3213be2ff11068.cairo": "let ret_value = __wrapped_func{syscall_ptr=syscall_ptr, pedersen_ptr=pedersen_ptr, range_check_ptr=range_check_ptr}();\nlet (range_check_ptr, retdata_size, retdata) = contractURI_encode_return(ret_value, range_check_ptr);\n", - "autogen/starknet/external/contractURI/b2c52ca2d2a8fc8791a983086d8716c5eacd0c3d62934914d2286f84b98ff4cb.cairo": "let syscall_ptr = [cast([cast(fp + (-5), felt**)] + 0, felt**)];\n", - "autogen/starknet/external/contractURI/da17921a4e81c09e730800bbf23bfdbe5e9e6bfaedc59d80fbf62087fa43c27d.cairo": "return (syscall_ptr,pedersen_ptr,range_check_ptr,retdata_size,retdata);\n", - "autogen/starknet/external/getApproved/741ea357d6336b0bed7bf0472425acd0311d543883b803388880e60a232040c7.cairo": "let range_check_ptr = [cast([cast(fp + (-5), felt**)] + 2, felt*)];\n", - "autogen/starknet/external/getApproved/835e657df1ee968194eed5f3c9b857e397b684d36f56ec8a7b26cb299a6be11f.cairo": "let ret_value = __wrapped_func{syscall_ptr=syscall_ptr, pedersen_ptr=pedersen_ptr, range_check_ptr=range_check_ptr}(tokenId=__calldata_arg_tokenId,);\nlet (range_check_ptr, retdata_size, retdata) = getApproved_encode_return(ret_value, range_check_ptr);\n", - "autogen/starknet/external/getApproved/9684a85e93c782014ca14293edea4eb2502039a5a7b6538ecd39c56faaf12529.cairo": "let pedersen_ptr = [cast([cast(fp + (-5), felt**)] + 1, starkware.cairo.common.cairo_builtins.HashBuiltin**)];\n", - "autogen/starknet/external/getApproved/b2c52ca2d2a8fc8791a983086d8716c5eacd0c3d62934914d2286f84b98ff4cb.cairo": "let syscall_ptr = [cast([cast(fp + (-5), felt**)] + 0, felt**)];\n", - "autogen/starknet/external/getApproved/da17921a4e81c09e730800bbf23bfdbe5e9e6bfaedc59d80fbf62087fa43c27d.cairo": "return (syscall_ptr,pedersen_ptr,range_check_ptr,retdata_size,retdata);\n", - "autogen/starknet/external/getCell/741ea357d6336b0bed7bf0472425acd0311d543883b803388880e60a232040c7.cairo": "let range_check_ptr = [cast([cast(fp + (-5), felt**)] + 2, felt*)];\n", - "autogen/starknet/external/getCell/9684a85e93c782014ca14293edea4eb2502039a5a7b6538ecd39c56faaf12529.cairo": "let pedersen_ptr = [cast([cast(fp + (-5), felt**)] + 1, starkware.cairo.common.cairo_builtins.HashBuiltin**)];\n", - "autogen/starknet/external/getCell/b2c52ca2d2a8fc8791a983086d8716c5eacd0c3d62934914d2286f84b98ff4cb.cairo": "let syscall_ptr = [cast([cast(fp + (-5), felt**)] + 0, felt**)];\n", - "autogen/starknet/external/getCell/b9f082c9f793d6f80f66b8a110e326ab27269a523c2aa107129eed9fa07085f2.cairo": "let ret_value = __wrapped_func{syscall_ptr=syscall_ptr, pedersen_ptr=pedersen_ptr, range_check_ptr=range_check_ptr}(tokenId=__calldata_arg_tokenId,);\nlet (range_check_ptr, retdata_size, retdata) = getCell_encode_return(ret_value, range_check_ptr);\n", - "autogen/starknet/external/getCell/da17921a4e81c09e730800bbf23bfdbe5e9e6bfaedc59d80fbf62087fa43c27d.cairo": "return (syscall_ptr,pedersen_ptr,range_check_ptr,retdata_size,retdata);\n", - "autogen/starknet/external/getCell/fc5657cf51bd050c7a3c8729ca7f6e7cfabf2530b3ff0492dd4d28b5d2976ebb.cairo": "func getCell() -> (syscall_ptr: felt*, pedersen_ptr: starkware.cairo.common.cairo_builtins.HashBuiltin*, range_check_ptr: felt, size: felt, retdata: felt*) {\n alloc_locals;\n}\n", - "autogen/starknet/external/getCellRenderer/741ea357d6336b0bed7bf0472425acd0311d543883b803388880e60a232040c7.cairo": "let range_check_ptr = [cast([cast(fp + (-5), felt**)] + 2, felt*)];\n", - "autogen/starknet/external/getCellRenderer/9684a85e93c782014ca14293edea4eb2502039a5a7b6538ecd39c56faaf12529.cairo": "let pedersen_ptr = [cast([cast(fp + (-5), felt**)] + 1, starkware.cairo.common.cairo_builtins.HashBuiltin**)];\n", - "autogen/starknet/external/getCellRenderer/ad0970b7c612f5c2245a4fd1a68988d1dca7e1deee86e0b02cc4780b6294c9d7.cairo": "let ret_value = __wrapped_func{syscall_ptr=syscall_ptr, pedersen_ptr=pedersen_ptr, range_check_ptr=range_check_ptr}();\nlet (range_check_ptr, retdata_size, retdata) = getCellRenderer_encode_return(ret_value, range_check_ptr);\n", - "autogen/starknet/external/getCellRenderer/b2c52ca2d2a8fc8791a983086d8716c5eacd0c3d62934914d2286f84b98ff4cb.cairo": "let syscall_ptr = [cast([cast(fp + (-5), felt**)] + 0, felt**)];\n", - "autogen/starknet/external/getCellRenderer/da17921a4e81c09e730800bbf23bfdbe5e9e6bfaedc59d80fbf62087fa43c27d.cairo": "return (syscall_ptr,pedersen_ptr,range_check_ptr,retdata_size,retdata);\n", - "autogen/starknet/external/getMaxPerWallet/741ea357d6336b0bed7bf0472425acd0311d543883b803388880e60a232040c7.cairo": "let range_check_ptr = [cast([cast(fp + (-5), felt**)] + 2, felt*)];\n", - "autogen/starknet/external/getMaxPerWallet/9684a85e93c782014ca14293edea4eb2502039a5a7b6538ecd39c56faaf12529.cairo": "let pedersen_ptr = [cast([cast(fp + (-5), felt**)] + 1, starkware.cairo.common.cairo_builtins.HashBuiltin**)];\n", - "autogen/starknet/external/getMaxPerWallet/b2c52ca2d2a8fc8791a983086d8716c5eacd0c3d62934914d2286f84b98ff4cb.cairo": "let syscall_ptr = [cast([cast(fp + (-5), felt**)] + 0, felt**)];\n", - "autogen/starknet/external/getMaxPerWallet/ceb6999ac1e0d9e3ce90cae3d8b161ded5f8cd083d4cb07d602d4d0dfb9793ea.cairo": "let ret_value = __wrapped_func{syscall_ptr=syscall_ptr, pedersen_ptr=pedersen_ptr, range_check_ptr=range_check_ptr}();\nlet (range_check_ptr, retdata_size, retdata) = getMaxPerWallet_encode_return(ret_value, range_check_ptr);\n", - "autogen/starknet/external/getMaxPerWallet/da17921a4e81c09e730800bbf23bfdbe5e9e6bfaedc59d80fbf62087fa43c27d.cairo": "return (syscall_ptr,pedersen_ptr,range_check_ptr,retdata_size,retdata);\n", - "autogen/starknet/external/getMerkleRoot/741ea357d6336b0bed7bf0472425acd0311d543883b803388880e60a232040c7.cairo": "let range_check_ptr = [cast([cast(fp + (-5), felt**)] + 2, felt*)];\n", - "autogen/starknet/external/getMerkleRoot/9684a85e93c782014ca14293edea4eb2502039a5a7b6538ecd39c56faaf12529.cairo": "let pedersen_ptr = [cast([cast(fp + (-5), felt**)] + 1, starkware.cairo.common.cairo_builtins.HashBuiltin**)];\n", - "autogen/starknet/external/getMerkleRoot/9ec40c6ab1532b67d6b3241da7f0fc2a824d63002b85dbc8e7b345e400aebd93.cairo": "let ret_value = __wrapped_func{syscall_ptr=syscall_ptr, pedersen_ptr=pedersen_ptr, range_check_ptr=range_check_ptr}();\nlet (range_check_ptr, retdata_size, retdata) = getMerkleRoot_encode_return(ret_value, range_check_ptr);\n", - "autogen/starknet/external/getMerkleRoot/b2c52ca2d2a8fc8791a983086d8716c5eacd0c3d62934914d2286f84b98ff4cb.cairo": "let syscall_ptr = [cast([cast(fp + (-5), felt**)] + 0, felt**)];\n", - "autogen/starknet/external/getMerkleRoot/da17921a4e81c09e730800bbf23bfdbe5e9e6bfaedc59d80fbf62087fa43c27d.cairo": "return (syscall_ptr,pedersen_ptr,range_check_ptr,retdata_size,retdata);\n", - "autogen/starknet/external/getNRow/741ea357d6336b0bed7bf0472425acd0311d543883b803388880e60a232040c7.cairo": "let range_check_ptr = [cast([cast(fp + (-5), felt**)] + 2, felt*)];\n", - "autogen/starknet/external/getNRow/9684a85e93c782014ca14293edea4eb2502039a5a7b6538ecd39c56faaf12529.cairo": "let pedersen_ptr = [cast([cast(fp + (-5), felt**)] + 1, starkware.cairo.common.cairo_builtins.HashBuiltin**)];\n", - "autogen/starknet/external/getNRow/a9a0b7c56f536deaaeff58255052c75aa43e29bc9e7cce54223f1ba64c55e736.cairo": "let ret_value = __wrapped_func{syscall_ptr=syscall_ptr, pedersen_ptr=pedersen_ptr, range_check_ptr=range_check_ptr}();\nlet (range_check_ptr, retdata_size, retdata) = getNRow_encode_return(ret_value, range_check_ptr);\n", - "autogen/starknet/external/getNRow/b2c52ca2d2a8fc8791a983086d8716c5eacd0c3d62934914d2286f84b98ff4cb.cairo": "let syscall_ptr = [cast([cast(fp + (-5), felt**)] + 0, felt**)];\n", - "autogen/starknet/external/getNRow/da17921a4e81c09e730800bbf23bfdbe5e9e6bfaedc59d80fbf62087fa43c27d.cairo": "return (syscall_ptr,pedersen_ptr,range_check_ptr,retdata_size,retdata);\n", - "autogen/starknet/external/initialize/741ea357d6336b0bed7bf0472425acd0311d543883b803388880e60a232040c7.cairo": "let range_check_ptr = [cast([cast(fp + (-5), felt**)] + 2, felt*)];\n", - "autogen/starknet/external/initialize/9684a85e93c782014ca14293edea4eb2502039a5a7b6538ecd39c56faaf12529.cairo": "let pedersen_ptr = [cast([cast(fp + (-5), felt**)] + 1, starkware.cairo.common.cairo_builtins.HashBuiltin**)];\n", - "autogen/starknet/external/initialize/98fffa3d7b20f8a177d79ca985c017c6105a8f832599cc3392d95ef2cfd87a05.cairo": "let ret_value = __wrapped_func{syscall_ptr=syscall_ptr, pedersen_ptr=pedersen_ptr, range_check_ptr=range_check_ptr}(name=__calldata_arg_name, symbol=__calldata_arg_symbol, owner=__calldata_arg_owner, merkle_root=__calldata_arg_merkle_root, max_per_wallet=__calldata_arg_max_per_wallet, renderer_address=__calldata_arg_renderer_address,);\n%{ memory[ap] = segments.add() %} // Allocate memory for return value.\ntempvar retdata: felt*;\nlet retdata_size = 0;\n", - "autogen/starknet/external/initialize/b2c52ca2d2a8fc8791a983086d8716c5eacd0c3d62934914d2286f84b98ff4cb.cairo": "let syscall_ptr = [cast([cast(fp + (-5), felt**)] + 0, felt**)];\n", - "autogen/starknet/external/initialize/da17921a4e81c09e730800bbf23bfdbe5e9e6bfaedc59d80fbf62087fa43c27d.cairo": "return (syscall_ptr,pedersen_ptr,range_check_ptr,retdata_size,retdata);\n", - "autogen/starknet/external/isApprovedForAll/28e6449b750a764997de3246d5af785f29a76b7b369ce53a25f4614d960a20f3.cairo": "let ret_value = __wrapped_func{syscall_ptr=syscall_ptr, pedersen_ptr=pedersen_ptr, range_check_ptr=range_check_ptr}(owner=__calldata_arg_owner, operator=__calldata_arg_operator,);\nlet (range_check_ptr, retdata_size, retdata) = isApprovedForAll_encode_return(ret_value, range_check_ptr);\n", - "autogen/starknet/external/isApprovedForAll/741ea357d6336b0bed7bf0472425acd0311d543883b803388880e60a232040c7.cairo": "let range_check_ptr = [cast([cast(fp + (-5), felt**)] + 2, felt*)];\n", - "autogen/starknet/external/isApprovedForAll/9684a85e93c782014ca14293edea4eb2502039a5a7b6538ecd39c56faaf12529.cairo": "let pedersen_ptr = [cast([cast(fp + (-5), felt**)] + 1, starkware.cairo.common.cairo_builtins.HashBuiltin**)];\n", - "autogen/starknet/external/isApprovedForAll/b2c52ca2d2a8fc8791a983086d8716c5eacd0c3d62934914d2286f84b98ff4cb.cairo": "let syscall_ptr = [cast([cast(fp + (-5), felt**)] + 0, felt**)];\n", - "autogen/starknet/external/isApprovedForAll/da17921a4e81c09e730800bbf23bfdbe5e9e6bfaedc59d80fbf62087fa43c27d.cairo": "return (syscall_ptr,pedersen_ptr,range_check_ptr,retdata_size,retdata);\n", - "autogen/starknet/external/is_initialized/50c3501112c017187b4c12bebdfd953af0bc789f5dc55376df4d428435913d0e.cairo": "let ret_value = __wrapped_func{syscall_ptr=syscall_ptr, pedersen_ptr=pedersen_ptr, range_check_ptr=range_check_ptr}();\nlet (range_check_ptr, retdata_size, retdata) = is_initialized_encode_return(ret_value, range_check_ptr);\n", - "autogen/starknet/external/is_initialized/741ea357d6336b0bed7bf0472425acd0311d543883b803388880e60a232040c7.cairo": "let range_check_ptr = [cast([cast(fp + (-5), felt**)] + 2, felt*)];\n", - "autogen/starknet/external/is_initialized/9684a85e93c782014ca14293edea4eb2502039a5a7b6538ecd39c56faaf12529.cairo": "let pedersen_ptr = [cast([cast(fp + (-5), felt**)] + 1, starkware.cairo.common.cairo_builtins.HashBuiltin**)];\n", - "autogen/starknet/external/is_initialized/b2c52ca2d2a8fc8791a983086d8716c5eacd0c3d62934914d2286f84b98ff4cb.cairo": "let syscall_ptr = [cast([cast(fp + (-5), felt**)] + 0, felt**)];\n", - "autogen/starknet/external/is_initialized/da17921a4e81c09e730800bbf23bfdbe5e9e6bfaedc59d80fbf62087fa43c27d.cairo": "return (syscall_ptr,pedersen_ptr,range_check_ptr,retdata_size,retdata);\n", - "autogen/starknet/external/mintAndSetPublic/741ea357d6336b0bed7bf0472425acd0311d543883b803388880e60a232040c7.cairo": "let range_check_ptr = [cast([cast(fp + (-5), felt**)] + 2, felt*)];\n", - "autogen/starknet/external/mintAndSetPublic/8d28e230e489bc8d7b9f205ad15790d268dd96b367ed23a515f6d462c885a511.cairo": "let ret_value = __wrapped_func{pedersen_ptr=pedersen_ptr, syscall_ptr=syscall_ptr, range_check_ptr=range_check_ptr}(tokenId=__calldata_arg_tokenId, proof_len=__calldata_arg_proof_len, proof=__calldata_arg_proof, contractAddress=__calldata_arg_contractAddress, value=__calldata_arg_value, cellCalldata_len=__calldata_arg_cellCalldata_len, cellCalldata=__calldata_arg_cellCalldata,);\n%{ memory[ap] = segments.add() %} // Allocate memory for return value.\ntempvar retdata: felt*;\nlet retdata_size = 0;\n", - "autogen/starknet/external/mintAndSetPublic/9684a85e93c782014ca14293edea4eb2502039a5a7b6538ecd39c56faaf12529.cairo": "let pedersen_ptr = [cast([cast(fp + (-5), felt**)] + 1, starkware.cairo.common.cairo_builtins.HashBuiltin**)];\n", - "autogen/starknet/external/mintAndSetPublic/b2c52ca2d2a8fc8791a983086d8716c5eacd0c3d62934914d2286f84b98ff4cb.cairo": "let syscall_ptr = [cast([cast(fp + (-5), felt**)] + 0, felt**)];\n", - "autogen/starknet/external/mintAndSetPublic/da17921a4e81c09e730800bbf23bfdbe5e9e6bfaedc59d80fbf62087fa43c27d.cairo": "return (syscall_ptr,pedersen_ptr,range_check_ptr,retdata_size,retdata);\n", - "autogen/starknet/external/mintOwner/5388f692818f55977b2452a31ce8c0a2aaeeb5ab5c5db8c2d2f3ab50dcff739b.cairo": "let ret_value = __wrapped_func{pedersen_ptr=pedersen_ptr, syscall_ptr=syscall_ptr, range_check_ptr=range_check_ptr}(to=__calldata_arg_to, tokenId=__calldata_arg_tokenId,);\n%{ memory[ap] = segments.add() %} // Allocate memory for return value.\ntempvar retdata: felt*;\nlet retdata_size = 0;\n", - "autogen/starknet/external/mintOwner/741ea357d6336b0bed7bf0472425acd0311d543883b803388880e60a232040c7.cairo": "let range_check_ptr = [cast([cast(fp + (-5), felt**)] + 2, felt*)];\n", - "autogen/starknet/external/mintOwner/9684a85e93c782014ca14293edea4eb2502039a5a7b6538ecd39c56faaf12529.cairo": "let pedersen_ptr = [cast([cast(fp + (-5), felt**)] + 1, starkware.cairo.common.cairo_builtins.HashBuiltin**)];\n", - "autogen/starknet/external/mintOwner/b2c52ca2d2a8fc8791a983086d8716c5eacd0c3d62934914d2286f84b98ff4cb.cairo": "let syscall_ptr = [cast([cast(fp + (-5), felt**)] + 0, felt**)];\n", - "autogen/starknet/external/mintOwner/da17921a4e81c09e730800bbf23bfdbe5e9e6bfaedc59d80fbf62087fa43c27d.cairo": "return (syscall_ptr,pedersen_ptr,range_check_ptr,retdata_size,retdata);\n", - "autogen/starknet/external/mintPublic/03792f53710bdf1b4f13130505d4195b48cad96eb41b093c9596524ebfb1aea6.cairo": "let ret_value = __wrapped_func{pedersen_ptr=pedersen_ptr, syscall_ptr=syscall_ptr, range_check_ptr=range_check_ptr}(tokenId=__calldata_arg_tokenId, proof_len=__calldata_arg_proof_len, proof=__calldata_arg_proof,);\n%{ memory[ap] = segments.add() %} // Allocate memory for return value.\ntempvar retdata: felt*;\nlet retdata_size = 0;\n", - "autogen/starknet/external/mintPublic/741ea357d6336b0bed7bf0472425acd0311d543883b803388880e60a232040c7.cairo": "let range_check_ptr = [cast([cast(fp + (-5), felt**)] + 2, felt*)];\n", - "autogen/starknet/external/mintPublic/9684a85e93c782014ca14293edea4eb2502039a5a7b6538ecd39c56faaf12529.cairo": "let pedersen_ptr = [cast([cast(fp + (-5), felt**)] + 1, starkware.cairo.common.cairo_builtins.HashBuiltin**)];\n", - "autogen/starknet/external/mintPublic/b2c52ca2d2a8fc8791a983086d8716c5eacd0c3d62934914d2286f84b98ff4cb.cairo": "let syscall_ptr = [cast([cast(fp + (-5), felt**)] + 0, felt**)];\n", - "autogen/starknet/external/mintPublic/da17921a4e81c09e730800bbf23bfdbe5e9e6bfaedc59d80fbf62087fa43c27d.cairo": "return (syscall_ptr,pedersen_ptr,range_check_ptr,retdata_size,retdata);\n", - "autogen/starknet/external/name/3034a84ffbc2cc9a83b0bdb0bf6aadae87a5c63f8544f4bc76a18d60221f0e94.cairo": "let ret_value = __wrapped_func{syscall_ptr=syscall_ptr, pedersen_ptr=pedersen_ptr, range_check_ptr=range_check_ptr}();\nlet (range_check_ptr, retdata_size, retdata) = name_encode_return(ret_value, range_check_ptr);\n", - "autogen/starknet/external/name/741ea357d6336b0bed7bf0472425acd0311d543883b803388880e60a232040c7.cairo": "let range_check_ptr = [cast([cast(fp + (-5), felt**)] + 2, felt*)];\n", - "autogen/starknet/external/name/9684a85e93c782014ca14293edea4eb2502039a5a7b6538ecd39c56faaf12529.cairo": "let pedersen_ptr = [cast([cast(fp + (-5), felt**)] + 1, starkware.cairo.common.cairo_builtins.HashBuiltin**)];\n", - "autogen/starknet/external/name/b2c52ca2d2a8fc8791a983086d8716c5eacd0c3d62934914d2286f84b98ff4cb.cairo": "let syscall_ptr = [cast([cast(fp + (-5), felt**)] + 0, felt**)];\n", - "autogen/starknet/external/name/da17921a4e81c09e730800bbf23bfdbe5e9e6bfaedc59d80fbf62087fa43c27d.cairo": "return (syscall_ptr,pedersen_ptr,range_check_ptr,retdata_size,retdata);\n", - "autogen/starknet/external/openMint/741ea357d6336b0bed7bf0472425acd0311d543883b803388880e60a232040c7.cairo": "let range_check_ptr = [cast([cast(fp + (-5), felt**)] + 2, felt*)];\n", - "autogen/starknet/external/openMint/8f83d060e7e088c358526f8859eb82973ba2c094c7d9223df6230b744dfa211c.cairo": "let ret_value = __wrapped_func{syscall_ptr=syscall_ptr, pedersen_ptr=pedersen_ptr, range_check_ptr=range_check_ptr}();\n%{ memory[ap] = segments.add() %} // Allocate memory for return value.\ntempvar retdata: felt*;\nlet retdata_size = 0;\n", - "autogen/starknet/external/openMint/9684a85e93c782014ca14293edea4eb2502039a5a7b6538ecd39c56faaf12529.cairo": "let pedersen_ptr = [cast([cast(fp + (-5), felt**)] + 1, starkware.cairo.common.cairo_builtins.HashBuiltin**)];\n", - "autogen/starknet/external/openMint/b2c52ca2d2a8fc8791a983086d8716c5eacd0c3d62934914d2286f84b98ff4cb.cairo": "let syscall_ptr = [cast([cast(fp + (-5), felt**)] + 0, felt**)];\n", - "autogen/starknet/external/openMint/da17921a4e81c09e730800bbf23bfdbe5e9e6bfaedc59d80fbf62087fa43c27d.cairo": "return (syscall_ptr,pedersen_ptr,range_check_ptr,retdata_size,retdata);\n", - "autogen/starknet/external/owner/613a24dd6fa1e6c043f44c3b480cfa5d629bfe6891f43b0ff9ba79b40a6c8e9e.cairo": "let ret_value = __wrapped_func{syscall_ptr=syscall_ptr, pedersen_ptr=pedersen_ptr, range_check_ptr=range_check_ptr}();\nlet (range_check_ptr, retdata_size, retdata) = owner_encode_return(ret_value, range_check_ptr);\n", - "autogen/starknet/external/owner/741ea357d6336b0bed7bf0472425acd0311d543883b803388880e60a232040c7.cairo": "let range_check_ptr = [cast([cast(fp + (-5), felt**)] + 2, felt*)];\n", - "autogen/starknet/external/owner/9684a85e93c782014ca14293edea4eb2502039a5a7b6538ecd39c56faaf12529.cairo": "let pedersen_ptr = [cast([cast(fp + (-5), felt**)] + 1, starkware.cairo.common.cairo_builtins.HashBuiltin**)];\n", - "autogen/starknet/external/owner/b2c52ca2d2a8fc8791a983086d8716c5eacd0c3d62934914d2286f84b98ff4cb.cairo": "let syscall_ptr = [cast([cast(fp + (-5), felt**)] + 0, felt**)];\n", - "autogen/starknet/external/owner/da17921a4e81c09e730800bbf23bfdbe5e9e6bfaedc59d80fbf62087fa43c27d.cairo": "return (syscall_ptr,pedersen_ptr,range_check_ptr,retdata_size,retdata);\n", - "autogen/starknet/external/ownerOf/741ea357d6336b0bed7bf0472425acd0311d543883b803388880e60a232040c7.cairo": "let range_check_ptr = [cast([cast(fp + (-5), felt**)] + 2, felt*)];\n", - "autogen/starknet/external/ownerOf/9684a85e93c782014ca14293edea4eb2502039a5a7b6538ecd39c56faaf12529.cairo": "let pedersen_ptr = [cast([cast(fp + (-5), felt**)] + 1, starkware.cairo.common.cairo_builtins.HashBuiltin**)];\n", - "autogen/starknet/external/ownerOf/b0b45230936b2f4ec6e384bea3a984e2819816dfc8b4e03dac3539fcc1c0dc60.cairo": "let ret_value = __wrapped_func{syscall_ptr=syscall_ptr, pedersen_ptr=pedersen_ptr, range_check_ptr=range_check_ptr}(tokenId=__calldata_arg_tokenId,);\nlet (range_check_ptr, retdata_size, retdata) = ownerOf_encode_return(ret_value, range_check_ptr);\n", - "autogen/starknet/external/ownerOf/b2c52ca2d2a8fc8791a983086d8716c5eacd0c3d62934914d2286f84b98ff4cb.cairo": "let syscall_ptr = [cast([cast(fp + (-5), felt**)] + 0, felt**)];\n", - "autogen/starknet/external/ownerOf/da17921a4e81c09e730800bbf23bfdbe5e9e6bfaedc59d80fbf62087fa43c27d.cairo": "return (syscall_ptr,pedersen_ptr,range_check_ptr,retdata_size,retdata);\n", - "autogen/starknet/external/renderCell/146e356956f1b5b1ec5d9c2427e96b5918bf0557e0b6f7ad743096649056d836.cairo": "let ret_value = __wrapped_func{syscall_ptr=syscall_ptr, pedersen_ptr=pedersen_ptr, range_check_ptr=range_check_ptr}(tokenId=__calldata_arg_tokenId,);\nlet (range_check_ptr, retdata_size, retdata) = renderCell_encode_return(ret_value, range_check_ptr);\n", - "autogen/starknet/external/renderCell/741ea357d6336b0bed7bf0472425acd0311d543883b803388880e60a232040c7.cairo": "let range_check_ptr = [cast([cast(fp + (-5), felt**)] + 2, felt*)];\n", - "autogen/starknet/external/renderCell/9684a85e93c782014ca14293edea4eb2502039a5a7b6538ecd39c56faaf12529.cairo": "let pedersen_ptr = [cast([cast(fp + (-5), felt**)] + 1, starkware.cairo.common.cairo_builtins.HashBuiltin**)];\n", - "autogen/starknet/external/renderCell/b2c52ca2d2a8fc8791a983086d8716c5eacd0c3d62934914d2286f84b98ff4cb.cairo": "let syscall_ptr = [cast([cast(fp + (-5), felt**)] + 0, felt**)];\n", - "autogen/starknet/external/renderCell/da17921a4e81c09e730800bbf23bfdbe5e9e6bfaedc59d80fbf62087fa43c27d.cairo": "return (syscall_ptr,pedersen_ptr,range_check_ptr,retdata_size,retdata);\n", - "autogen/starknet/external/renderCellValue/741ea357d6336b0bed7bf0472425acd0311d543883b803388880e60a232040c7.cairo": "let range_check_ptr = [cast([cast(fp + (-5), felt**)] + 2, felt*)];\n", - "autogen/starknet/external/renderCellValue/9684a85e93c782014ca14293edea4eb2502039a5a7b6538ecd39c56faaf12529.cairo": "let pedersen_ptr = [cast([cast(fp + (-5), felt**)] + 1, starkware.cairo.common.cairo_builtins.HashBuiltin**)];\n", - "autogen/starknet/external/renderCellValue/b2c52ca2d2a8fc8791a983086d8716c5eacd0c3d62934914d2286f84b98ff4cb.cairo": "let syscall_ptr = [cast([cast(fp + (-5), felt**)] + 0, felt**)];\n", - "autogen/starknet/external/renderCellValue/da17921a4e81c09e730800bbf23bfdbe5e9e6bfaedc59d80fbf62087fa43c27d.cairo": "return (syscall_ptr,pedersen_ptr,range_check_ptr,retdata_size,retdata);\n", - "autogen/starknet/external/renderCellValue/f5e623291f93f5721b4e366de1f2f5345d268b1d1b1dd5b6b0411cd83a1a1988.cairo": "let ret_value = __wrapped_func{syscall_ptr=syscall_ptr, pedersen_ptr=pedersen_ptr, range_check_ptr=range_check_ptr}(tokenId=__calldata_arg_tokenId,);\nlet (range_check_ptr, retdata_size, retdata) = renderCellValue_encode_return(ret_value, range_check_ptr);\n", - "autogen/starknet/external/renderGrid/2ea9c7f0441b228ee60fde547a6f592088d6be14cedb6f979f2f4e15977f79ea.cairo": "func renderGrid() -> (syscall_ptr: felt*, pedersen_ptr: starkware.cairo.common.cairo_builtins.HashBuiltin*, range_check_ptr: felt, size: felt, retdata: felt*) {\n alloc_locals;\n}\n", - "autogen/starknet/external/renderGrid/741ea357d6336b0bed7bf0472425acd0311d543883b803388880e60a232040c7.cairo": "let range_check_ptr = [cast([cast(fp + (-5), felt**)] + 2, felt*)];\n", - "autogen/starknet/external/renderGrid/9684a85e93c782014ca14293edea4eb2502039a5a7b6538ecd39c56faaf12529.cairo": "let pedersen_ptr = [cast([cast(fp + (-5), felt**)] + 1, starkware.cairo.common.cairo_builtins.HashBuiltin**)];\n", - "autogen/starknet/external/renderGrid/b2c52ca2d2a8fc8791a983086d8716c5eacd0c3d62934914d2286f84b98ff4cb.cairo": "let syscall_ptr = [cast([cast(fp + (-5), felt**)] + 0, felt**)];\n", - "autogen/starknet/external/renderGrid/da17921a4e81c09e730800bbf23bfdbe5e9e6bfaedc59d80fbf62087fa43c27d.cairo": "return (syscall_ptr,pedersen_ptr,range_check_ptr,retdata_size,retdata);\n", - "autogen/starknet/external/renderGrid/e893877178a8e3e6a487467e13267cb6540bc108f9ef40dde6e8760c2ce03e6d.cairo": "let ret_value = __wrapped_func{syscall_ptr=syscall_ptr, pedersen_ptr=pedersen_ptr, range_check_ptr=range_check_ptr}();\nlet (range_check_ptr, retdata_size, retdata) = renderGrid_encode_return(ret_value, range_check_ptr);\n", - "autogen/starknet/external/return/balanceOf/6be46755be2f937558932379e9c42b1ab153e2ba499cd66beb178511b2106ad9.cairo": "func balanceOf_encode_return(ret_value: (balance: starkware.cairo.common.uint256.Uint256), range_check_ptr) -> (\n range_check_ptr: felt, data_len: felt, data: felt*) {\n %{ memory[ap] = segments.add() %}\n alloc_locals;\n local __return_value_ptr_start: felt*;\n let __return_value_ptr = __return_value_ptr_start;\n with range_check_ptr {\n }\n return (\n range_check_ptr=range_check_ptr,\n data_len=__return_value_ptr - __return_value_ptr_start,\n data=__return_value_ptr_start);\n}\n", - "autogen/starknet/external/return/contractURI/b04c73e7705bedc8f1f7443e51be7624df9567d66b186004fbcf68937ec0909c.cairo": "func contractURI_encode_return(ret_value: (contractURI_len: felt, contractURI: felt*), range_check_ptr) -> (\n range_check_ptr: felt, data_len: felt, data: felt*) {\n %{ memory[ap] = segments.add() %}\n alloc_locals;\n local __return_value_ptr_start: felt*;\n let __return_value_ptr = __return_value_ptr_start;\n with range_check_ptr {\n }\n return (\n range_check_ptr=range_check_ptr,\n data_len=__return_value_ptr - __return_value_ptr_start,\n data=__return_value_ptr_start);\n}\n", - "autogen/starknet/external/return/getApproved/dc5d90a8417d0a28ffeb92cb7cbd7f0e5af1af69279ff1bda88fa7a837af50d3.cairo": "func getApproved_encode_return(ret_value: (approved: felt), range_check_ptr) -> (\n range_check_ptr: felt, data_len: felt, data: felt*) {\n %{ memory[ap] = segments.add() %}\n alloc_locals;\n local __return_value_ptr_start: felt*;\n let __return_value_ptr = __return_value_ptr_start;\n with range_check_ptr {\n }\n return (\n range_check_ptr=range_check_ptr,\n data_len=__return_value_ptr - __return_value_ptr_start,\n data=__return_value_ptr_start);\n}\n", - "autogen/starknet/external/return/getCell/45b3c8aa5973e07cb910131aed3aef1456e8199a31086ed15bad4bcb607a4d71.cairo": "func getCell_encode_return(ret_value: (contractAddress: felt, value: felt, cell_calldata_len: felt, cell_calldata: felt*), range_check_ptr) -> (\n range_check_ptr: felt, data_len: felt, data: felt*) {\n %{ memory[ap] = segments.add() %}\n alloc_locals;\n local __return_value_ptr_start: felt*;\n let __return_value_ptr = __return_value_ptr_start;\n with range_check_ptr {\n }\n return (\n range_check_ptr=range_check_ptr,\n data_len=__return_value_ptr - __return_value_ptr_start,\n data=__return_value_ptr_start);\n}\n", - "autogen/starknet/external/return/getCellRenderer/32ed84cc62db75f1e784f477fb8a01720540a0a2f04e442b873ca26adef8a14d.cairo": "func getCellRenderer_encode_return(ret_value: (address: felt), range_check_ptr) -> (\n range_check_ptr: felt, data_len: felt, data: felt*) {\n %{ memory[ap] = segments.add() %}\n alloc_locals;\n local __return_value_ptr_start: felt*;\n let __return_value_ptr = __return_value_ptr_start;\n with range_check_ptr {\n }\n return (\n range_check_ptr=range_check_ptr,\n data_len=__return_value_ptr - __return_value_ptr_start,\n data=__return_value_ptr_start);\n}\n", - "autogen/starknet/external/return/getMaxPerWallet/d2ee4d3b1583586a9c7911079b8ad0e4c03e4dff239e0bd34696827d233e32ba.cairo": "func getMaxPerWallet_encode_return(ret_value: (max: felt), range_check_ptr) -> (\n range_check_ptr: felt, data_len: felt, data: felt*) {\n %{ memory[ap] = segments.add() %}\n alloc_locals;\n local __return_value_ptr_start: felt*;\n let __return_value_ptr = __return_value_ptr_start;\n with range_check_ptr {\n }\n return (\n range_check_ptr=range_check_ptr,\n data_len=__return_value_ptr - __return_value_ptr_start,\n data=__return_value_ptr_start);\n}\n", - "autogen/starknet/external/return/getMerkleRoot/495cd1b94c09dee8983a036b9556d859b3656107157b2238179ca9efde6ed739.cairo": "func getMerkleRoot_encode_return(ret_value: (root: felt), range_check_ptr) -> (\n range_check_ptr: felt, data_len: felt, data: felt*) {\n %{ memory[ap] = segments.add() %}\n alloc_locals;\n local __return_value_ptr_start: felt*;\n let __return_value_ptr = __return_value_ptr_start;\n with range_check_ptr {\n }\n return (\n range_check_ptr=range_check_ptr,\n data_len=__return_value_ptr - __return_value_ptr_start,\n data=__return_value_ptr_start);\n}\n", - "autogen/starknet/external/return/getNRow/eb44c31645a89509f2704ee875f3b8ebd83dcd8f7c527e17259323fc74e20827.cairo": "func getNRow_encode_return(ret_value: (n_row: felt), range_check_ptr) -> (\n range_check_ptr: felt, data_len: felt, data: felt*) {\n %{ memory[ap] = segments.add() %}\n alloc_locals;\n local __return_value_ptr_start: felt*;\n let __return_value_ptr = __return_value_ptr_start;\n with range_check_ptr {\n }\n return (\n range_check_ptr=range_check_ptr,\n data_len=__return_value_ptr - __return_value_ptr_start,\n data=__return_value_ptr_start);\n}\n", - "autogen/starknet/external/return/isApprovedForAll/38789844dce484b974dbd524d5dc5d79b5898ffc6c946c5e91ff04055990eef0.cairo": "func isApprovedForAll_encode_return(ret_value: (isApproved: felt), range_check_ptr) -> (\n range_check_ptr: felt, data_len: felt, data: felt*) {\n %{ memory[ap] = segments.add() %}\n alloc_locals;\n local __return_value_ptr_start: felt*;\n let __return_value_ptr = __return_value_ptr_start;\n with range_check_ptr {\n }\n return (\n range_check_ptr=range_check_ptr,\n data_len=__return_value_ptr - __return_value_ptr_start,\n data=__return_value_ptr_start);\n}\n", - "autogen/starknet/external/return/is_initialized/c99ceecf6e21396d4a0ce3c69131d8c5d452cab3b90a24cd92a2105bd59d7aa7.cairo": "func is_initialized_encode_return(ret_value: (res: felt), range_check_ptr) -> (\n range_check_ptr: felt, data_len: felt, data: felt*) {\n %{ memory[ap] = segments.add() %}\n alloc_locals;\n local __return_value_ptr_start: felt*;\n let __return_value_ptr = __return_value_ptr_start;\n with range_check_ptr {\n }\n return (\n range_check_ptr=range_check_ptr,\n data_len=__return_value_ptr - __return_value_ptr_start,\n data=__return_value_ptr_start);\n}\n", - "autogen/starknet/external/return/name/c8fcd0b2b3f24b16bed33f1349d99fe0bde24b7764fe1bdc31d37b9ddca24adc.cairo": "func name_encode_return(ret_value: (name: felt), range_check_ptr) -> (\n range_check_ptr: felt, data_len: felt, data: felt*) {\n %{ memory[ap] = segments.add() %}\n alloc_locals;\n local __return_value_ptr_start: felt*;\n let __return_value_ptr = __return_value_ptr_start;\n with range_check_ptr {\n }\n return (\n range_check_ptr=range_check_ptr,\n data_len=__return_value_ptr - __return_value_ptr_start,\n data=__return_value_ptr_start);\n}\n", - "autogen/starknet/external/return/owner/c1ea7b1e827d8c158fe70e5d717faa1b8c13dd7db70cc1edeadb514de355a1bc.cairo": "func owner_encode_return(ret_value: (owner: felt), range_check_ptr) -> (\n range_check_ptr: felt, data_len: felt, data: felt*) {\n %{ memory[ap] = segments.add() %}\n alloc_locals;\n local __return_value_ptr_start: felt*;\n let __return_value_ptr = __return_value_ptr_start;\n with range_check_ptr {\n }\n return (\n range_check_ptr=range_check_ptr,\n data_len=__return_value_ptr - __return_value_ptr_start,\n data=__return_value_ptr_start);\n}\n", - "autogen/starknet/external/return/ownerOf/e26804beb30ff3fdad1596e68c20c0df03519fc5def143a2feb768126371681c.cairo": "func ownerOf_encode_return(ret_value: (owner: felt), range_check_ptr) -> (\n range_check_ptr: felt, data_len: felt, data: felt*) {\n %{ memory[ap] = segments.add() %}\n alloc_locals;\n local __return_value_ptr_start: felt*;\n let __return_value_ptr = __return_value_ptr_start;\n with range_check_ptr {\n }\n return (\n range_check_ptr=range_check_ptr,\n data_len=__return_value_ptr - __return_value_ptr_start,\n data=__return_value_ptr_start);\n}\n", - "autogen/starknet/external/return/renderCell/519b9d1185b56b8b78dd1f832f4829e22be687880e347646a4023068e141c8d6.cairo": "func renderCell_encode_return(ret_value: (cell: sheet.library.CellRendered), range_check_ptr) -> (\n range_check_ptr: felt, data_len: felt, data: felt*) {\n %{ memory[ap] = segments.add() %}\n alloc_locals;\n local __return_value_ptr_start: felt*;\n let __return_value_ptr = __return_value_ptr_start;\n with range_check_ptr {\n }\n return (\n range_check_ptr=range_check_ptr,\n data_len=__return_value_ptr - __return_value_ptr_start,\n data=__return_value_ptr_start);\n}\n", - "autogen/starknet/external/return/renderCellValue/5178822e53bcca72dafc5ab7de86f8a9c6086d257f9e71100782acd0b5bff53e.cairo": "func renderCellValue_encode_return(ret_value: (value: felt), range_check_ptr) -> (\n range_check_ptr: felt, data_len: felt, data: felt*) {\n %{ memory[ap] = segments.add() %}\n alloc_locals;\n local __return_value_ptr_start: felt*;\n let __return_value_ptr = __return_value_ptr_start;\n with range_check_ptr {\n }\n return (\n range_check_ptr=range_check_ptr,\n data_len=__return_value_ptr - __return_value_ptr_start,\n data=__return_value_ptr_start);\n}\n", - "autogen/starknet/external/return/renderGrid/fe9a6a1bcaa57ee30a381bd9a108817459a6bd115cb6e4fe27d4c45a53d5294c.cairo": "func renderGrid_encode_return(ret_value: (cells_len: felt, cells: sheet.library.CellRendered*), range_check_ptr) -> (\n range_check_ptr: felt, data_len: felt, data: felt*) {\n %{ memory[ap] = segments.add() %}\n alloc_locals;\n local __return_value_ptr_start: felt*;\n let __return_value_ptr = __return_value_ptr_start;\n with range_check_ptr {\n }\n return (\n range_check_ptr=range_check_ptr,\n data_len=__return_value_ptr - __return_value_ptr_start,\n data=__return_value_ptr_start);\n}\n", - "autogen/starknet/external/return/supportsInterface/40b33230f82887d6ee6ba7936c0fcb15006d084631250a62d0c39394fb5b7629.cairo": "func supportsInterface_encode_return(ret_value: (success: felt), range_check_ptr) -> (\n range_check_ptr: felt, data_len: felt, data: felt*) {\n %{ memory[ap] = segments.add() %}\n alloc_locals;\n local __return_value_ptr_start: felt*;\n let __return_value_ptr = __return_value_ptr_start;\n with range_check_ptr {\n }\n return (\n range_check_ptr=range_check_ptr,\n data_len=__return_value_ptr - __return_value_ptr_start,\n data=__return_value_ptr_start);\n}\n", - "autogen/starknet/external/return/symbol/a0ae85480af0490479ac55aa0fb10c479d3c551bd5d0b449dafe97eed061cca1.cairo": "func symbol_encode_return(ret_value: (symbol: felt), range_check_ptr) -> (\n range_check_ptr: felt, data_len: felt, data: felt*) {\n %{ memory[ap] = segments.add() %}\n alloc_locals;\n local __return_value_ptr_start: felt*;\n let __return_value_ptr = __return_value_ptr_start;\n with range_check_ptr {\n }\n return (\n range_check_ptr=range_check_ptr,\n data_len=__return_value_ptr - __return_value_ptr_start,\n data=__return_value_ptr_start);\n}\n", - "autogen/starknet/external/return/tokenByIndex/6c9b4477e48860e369406084e6d163095309287e22bedb8c84c1ffe7fdaa93c9.cairo": "func tokenByIndex_encode_return(ret_value: (tokenId: starkware.cairo.common.uint256.Uint256), range_check_ptr) -> (\n range_check_ptr: felt, data_len: felt, data: felt*) {\n %{ memory[ap] = segments.add() %}\n alloc_locals;\n local __return_value_ptr_start: felt*;\n let __return_value_ptr = __return_value_ptr_start;\n with range_check_ptr {\n }\n return (\n range_check_ptr=range_check_ptr,\n data_len=__return_value_ptr - __return_value_ptr_start,\n data=__return_value_ptr_start);\n}\n", - "autogen/starknet/external/return/tokenOfOwnerByIndex/c5cd611a0f2954a3db08f801163c417bcf50c88f70287322178f6feb818c2683.cairo": "func tokenOfOwnerByIndex_encode_return(ret_value: (tokenId: starkware.cairo.common.uint256.Uint256), range_check_ptr) -> (\n range_check_ptr: felt, data_len: felt, data: felt*) {\n %{ memory[ap] = segments.add() %}\n alloc_locals;\n local __return_value_ptr_start: felt*;\n let __return_value_ptr = __return_value_ptr_start;\n with range_check_ptr {\n }\n return (\n range_check_ptr=range_check_ptr,\n data_len=__return_value_ptr - __return_value_ptr_start,\n data=__return_value_ptr_start);\n}\n", - "autogen/starknet/external/return/tokenURI/fb2afe9383e6d6e4c510e54ea324f398df586428973a4c0745d97d759227d96c.cairo": "func tokenURI_encode_return(ret_value: (token_uri_len: felt, token_uri: felt*), range_check_ptr) -> (\n range_check_ptr: felt, data_len: felt, data: felt*) {\n %{ memory[ap] = segments.add() %}\n alloc_locals;\n local __return_value_ptr_start: felt*;\n let __return_value_ptr = __return_value_ptr_start;\n with range_check_ptr {\n }\n return (\n range_check_ptr=range_check_ptr,\n data_len=__return_value_ptr - __return_value_ptr_start,\n data=__return_value_ptr_start);\n}\n", - "autogen/starknet/external/return/totalSupply/eeeda446bdea67b39cd9f67678f4dfc35c6c1d0744df18691bf4ede77f67f604.cairo": "func totalSupply_encode_return(ret_value: (totalSupply: starkware.cairo.common.uint256.Uint256), range_check_ptr) -> (\n range_check_ptr: felt, data_len: felt, data: felt*) {\n %{ memory[ap] = segments.add() %}\n alloc_locals;\n local __return_value_ptr_start: felt*;\n let __return_value_ptr = __return_value_ptr_start;\n with range_check_ptr {\n }\n return (\n range_check_ptr=range_check_ptr,\n data_len=__return_value_ptr - __return_value_ptr_start,\n data=__return_value_ptr_start);\n}\n", - "autogen/starknet/external/safeTransferFrom/2b49474f1011f9d58397f6c4fb411d470fd935a4210c29898caaad0c7ad72623.cairo": "let ret_value = __wrapped_func{pedersen_ptr=pedersen_ptr, syscall_ptr=syscall_ptr, range_check_ptr=range_check_ptr}(from_=__calldata_arg_from_, to=__calldata_arg_to, tokenId=__calldata_arg_tokenId, data_len=__calldata_arg_data_len, data=__calldata_arg_data,);\n%{ memory[ap] = segments.add() %} // Allocate memory for return value.\ntempvar retdata: felt*;\nlet retdata_size = 0;\n", - "autogen/starknet/external/safeTransferFrom/741ea357d6336b0bed7bf0472425acd0311d543883b803388880e60a232040c7.cairo": "let range_check_ptr = [cast([cast(fp + (-5), felt**)] + 2, felt*)];\n", - "autogen/starknet/external/safeTransferFrom/9684a85e93c782014ca14293edea4eb2502039a5a7b6538ecd39c56faaf12529.cairo": "let pedersen_ptr = [cast([cast(fp + (-5), felt**)] + 1, starkware.cairo.common.cairo_builtins.HashBuiltin**)];\n", - "autogen/starknet/external/safeTransferFrom/b2c52ca2d2a8fc8791a983086d8716c5eacd0c3d62934914d2286f84b98ff4cb.cairo": "let syscall_ptr = [cast([cast(fp + (-5), felt**)] + 0, felt**)];\n", - "autogen/starknet/external/safeTransferFrom/da17921a4e81c09e730800bbf23bfdbe5e9e6bfaedc59d80fbf62087fa43c27d.cairo": "return (syscall_ptr,pedersen_ptr,range_check_ptr,retdata_size,retdata);\n", - "autogen/starknet/external/setApprovalForAll/36d3b3d1e829d7c23b24cbbecc8b2addd27fb9b3d959fca94c45d76a0c77f32d.cairo": "let ret_value = __wrapped_func{syscall_ptr=syscall_ptr, pedersen_ptr=pedersen_ptr, range_check_ptr=range_check_ptr}(operator=__calldata_arg_operator, approved=__calldata_arg_approved,);\n%{ memory[ap] = segments.add() %} // Allocate memory for return value.\ntempvar retdata: felt*;\nlet retdata_size = 0;\n", - "autogen/starknet/external/setApprovalForAll/741ea357d6336b0bed7bf0472425acd0311d543883b803388880e60a232040c7.cairo": "let range_check_ptr = [cast([cast(fp + (-5), felt**)] + 2, felt*)];\n", - "autogen/starknet/external/setApprovalForAll/9684a85e93c782014ca14293edea4eb2502039a5a7b6538ecd39c56faaf12529.cairo": "let pedersen_ptr = [cast([cast(fp + (-5), felt**)] + 1, starkware.cairo.common.cairo_builtins.HashBuiltin**)];\n", - "autogen/starknet/external/setApprovalForAll/b2c52ca2d2a8fc8791a983086d8716c5eacd0c3d62934914d2286f84b98ff4cb.cairo": "let syscall_ptr = [cast([cast(fp + (-5), felt**)] + 0, felt**)];\n", - "autogen/starknet/external/setApprovalForAll/da17921a4e81c09e730800bbf23bfdbe5e9e6bfaedc59d80fbf62087fa43c27d.cairo": "return (syscall_ptr,pedersen_ptr,range_check_ptr,retdata_size,retdata);\n", - "autogen/starknet/external/setCell/4283afad5f046e779f9086ab343c3867291282e0a5a6a5743aa6762671e022a9.cairo": "let ret_value = __wrapped_func{syscall_ptr=syscall_ptr, pedersen_ptr=pedersen_ptr, range_check_ptr=range_check_ptr}(tokenId=__calldata_arg_tokenId, contractAddress=__calldata_arg_contractAddress, value=__calldata_arg_value, cell_calldata_len=__calldata_arg_cell_calldata_len, cell_calldata=__calldata_arg_cell_calldata,);\n%{ memory[ap] = segments.add() %} // Allocate memory for return value.\ntempvar retdata: felt*;\nlet retdata_size = 0;\n", - "autogen/starknet/external/setCell/741ea357d6336b0bed7bf0472425acd0311d543883b803388880e60a232040c7.cairo": "let range_check_ptr = [cast([cast(fp + (-5), felt**)] + 2, felt*)];\n", - "autogen/starknet/external/setCell/9684a85e93c782014ca14293edea4eb2502039a5a7b6538ecd39c56faaf12529.cairo": "let pedersen_ptr = [cast([cast(fp + (-5), felt**)] + 1, starkware.cairo.common.cairo_builtins.HashBuiltin**)];\n", - "autogen/starknet/external/setCell/b2c52ca2d2a8fc8791a983086d8716c5eacd0c3d62934914d2286f84b98ff4cb.cairo": "let syscall_ptr = [cast([cast(fp + (-5), felt**)] + 0, felt**)];\n", - "autogen/starknet/external/setCell/da17921a4e81c09e730800bbf23bfdbe5e9e6bfaedc59d80fbf62087fa43c27d.cairo": "return (syscall_ptr,pedersen_ptr,range_check_ptr,retdata_size,retdata);\n", - "autogen/starknet/external/setCellRenderer/0659a254e8c454b3c657c5278489e4243b32c053e1167867ca4c539b977e7a36.cairo": "let ret_value = __wrapped_func{syscall_ptr=syscall_ptr, pedersen_ptr=pedersen_ptr, range_check_ptr=range_check_ptr}(address=__calldata_arg_address,);\n%{ memory[ap] = segments.add() %} // Allocate memory for return value.\ntempvar retdata: felt*;\nlet retdata_size = 0;\n", - "autogen/starknet/external/setCellRenderer/741ea357d6336b0bed7bf0472425acd0311d543883b803388880e60a232040c7.cairo": "let range_check_ptr = [cast([cast(fp + (-5), felt**)] + 2, felt*)];\n", - "autogen/starknet/external/setCellRenderer/9684a85e93c782014ca14293edea4eb2502039a5a7b6538ecd39c56faaf12529.cairo": "let pedersen_ptr = [cast([cast(fp + (-5), felt**)] + 1, starkware.cairo.common.cairo_builtins.HashBuiltin**)];\n", - "autogen/starknet/external/setCellRenderer/b2c52ca2d2a8fc8791a983086d8716c5eacd0c3d62934914d2286f84b98ff4cb.cairo": "let syscall_ptr = [cast([cast(fp + (-5), felt**)] + 0, felt**)];\n", - "autogen/starknet/external/setCellRenderer/da17921a4e81c09e730800bbf23bfdbe5e9e6bfaedc59d80fbf62087fa43c27d.cairo": "return (syscall_ptr,pedersen_ptr,range_check_ptr,retdata_size,retdata);\n", - "autogen/starknet/external/setMaxPerWallet/741ea357d6336b0bed7bf0472425acd0311d543883b803388880e60a232040c7.cairo": "let range_check_ptr = [cast([cast(fp + (-5), felt**)] + 2, felt*)];\n", - "autogen/starknet/external/setMaxPerWallet/9684a85e93c782014ca14293edea4eb2502039a5a7b6538ecd39c56faaf12529.cairo": "let pedersen_ptr = [cast([cast(fp + (-5), felt**)] + 1, starkware.cairo.common.cairo_builtins.HashBuiltin**)];\n", - "autogen/starknet/external/setMaxPerWallet/b2c52ca2d2a8fc8791a983086d8716c5eacd0c3d62934914d2286f84b98ff4cb.cairo": "let syscall_ptr = [cast([cast(fp + (-5), felt**)] + 0, felt**)];\n", - "autogen/starknet/external/setMaxPerWallet/da17921a4e81c09e730800bbf23bfdbe5e9e6bfaedc59d80fbf62087fa43c27d.cairo": "return (syscall_ptr,pedersen_ptr,range_check_ptr,retdata_size,retdata);\n", - "autogen/starknet/external/setMaxPerWallet/e308d249203f5705a190f059b56eb14752af6a01867f138740d0ff96dacabd43.cairo": "let ret_value = __wrapped_func{syscall_ptr=syscall_ptr, pedersen_ptr=pedersen_ptr, range_check_ptr=range_check_ptr}(max=__calldata_arg_max,);\n%{ memory[ap] = segments.add() %} // Allocate memory for return value.\ntempvar retdata: felt*;\nlet retdata_size = 0;\n", - "autogen/starknet/external/setMerkleRoot/161aaf3a5af5c303dbefacf522ccca3916f71a0b81c07d23f94176863241c379.cairo": "let ret_value = __wrapped_func{syscall_ptr=syscall_ptr, pedersen_ptr=pedersen_ptr, range_check_ptr=range_check_ptr}(root=__calldata_arg_root,);\n%{ memory[ap] = segments.add() %} // Allocate memory for return value.\ntempvar retdata: felt*;\nlet retdata_size = 0;\n", - "autogen/starknet/external/setMerkleRoot/741ea357d6336b0bed7bf0472425acd0311d543883b803388880e60a232040c7.cairo": "let range_check_ptr = [cast([cast(fp + (-5), felt**)] + 2, felt*)];\n", - "autogen/starknet/external/setMerkleRoot/9684a85e93c782014ca14293edea4eb2502039a5a7b6538ecd39c56faaf12529.cairo": "let pedersen_ptr = [cast([cast(fp + (-5), felt**)] + 1, starkware.cairo.common.cairo_builtins.HashBuiltin**)];\n", - "autogen/starknet/external/setMerkleRoot/b2c52ca2d2a8fc8791a983086d8716c5eacd0c3d62934914d2286f84b98ff4cb.cairo": "let syscall_ptr = [cast([cast(fp + (-5), felt**)] + 0, felt**)];\n", - "autogen/starknet/external/setMerkleRoot/da17921a4e81c09e730800bbf23bfdbe5e9e6bfaedc59d80fbf62087fa43c27d.cairo": "return (syscall_ptr,pedersen_ptr,range_check_ptr,retdata_size,retdata);\n", - "autogen/starknet/external/setNRow/039da8e30c366ab0cf35f9186a0bed5471fd3233c0d8c5f9d81c668743f087b3.cairo": "let ret_value = __wrapped_func{syscall_ptr=syscall_ptr, pedersen_ptr=pedersen_ptr, range_check_ptr=range_check_ptr}(n_row=__calldata_arg_n_row,);\n%{ memory[ap] = segments.add() %} // Allocate memory for return value.\ntempvar retdata: felt*;\nlet retdata_size = 0;\n", - "autogen/starknet/external/setNRow/741ea357d6336b0bed7bf0472425acd0311d543883b803388880e60a232040c7.cairo": "let range_check_ptr = [cast([cast(fp + (-5), felt**)] + 2, felt*)];\n", - "autogen/starknet/external/setNRow/9684a85e93c782014ca14293edea4eb2502039a5a7b6538ecd39c56faaf12529.cairo": "let pedersen_ptr = [cast([cast(fp + (-5), felt**)] + 1, starkware.cairo.common.cairo_builtins.HashBuiltin**)];\n", - "autogen/starknet/external/setNRow/b2c52ca2d2a8fc8791a983086d8716c5eacd0c3d62934914d2286f84b98ff4cb.cairo": "let syscall_ptr = [cast([cast(fp + (-5), felt**)] + 0, felt**)];\n", - "autogen/starknet/external/setNRow/da17921a4e81c09e730800bbf23bfdbe5e9e6bfaedc59d80fbf62087fa43c27d.cairo": "return (syscall_ptr,pedersen_ptr,range_check_ptr,retdata_size,retdata);\n", - "autogen/starknet/external/supportsInterface/741ea357d6336b0bed7bf0472425acd0311d543883b803388880e60a232040c7.cairo": "let range_check_ptr = [cast([cast(fp + (-5), felt**)] + 2, felt*)];\n", - "autogen/starknet/external/supportsInterface/9684a85e93c782014ca14293edea4eb2502039a5a7b6538ecd39c56faaf12529.cairo": "let pedersen_ptr = [cast([cast(fp + (-5), felt**)] + 1, starkware.cairo.common.cairo_builtins.HashBuiltin**)];\n", - "autogen/starknet/external/supportsInterface/b2c52ca2d2a8fc8791a983086d8716c5eacd0c3d62934914d2286f84b98ff4cb.cairo": "let syscall_ptr = [cast([cast(fp + (-5), felt**)] + 0, felt**)];\n", - "autogen/starknet/external/supportsInterface/bca8209c591df9f65b13800fe22999fe396aef7f2e9ee72505ad6a9793c5916d.cairo": "let ret_value = __wrapped_func{syscall_ptr=syscall_ptr, pedersen_ptr=pedersen_ptr, range_check_ptr=range_check_ptr}(interfaceId=__calldata_arg_interfaceId,);\nlet (range_check_ptr, retdata_size, retdata) = supportsInterface_encode_return(ret_value, range_check_ptr);\n", - "autogen/starknet/external/supportsInterface/da17921a4e81c09e730800bbf23bfdbe5e9e6bfaedc59d80fbf62087fa43c27d.cairo": "return (syscall_ptr,pedersen_ptr,range_check_ptr,retdata_size,retdata);\n", - "autogen/starknet/external/symbol/741ea357d6336b0bed7bf0472425acd0311d543883b803388880e60a232040c7.cairo": "let range_check_ptr = [cast([cast(fp + (-5), felt**)] + 2, felt*)];\n", - "autogen/starknet/external/symbol/9684a85e93c782014ca14293edea4eb2502039a5a7b6538ecd39c56faaf12529.cairo": "let pedersen_ptr = [cast([cast(fp + (-5), felt**)] + 1, starkware.cairo.common.cairo_builtins.HashBuiltin**)];\n", - "autogen/starknet/external/symbol/b2c52ca2d2a8fc8791a983086d8716c5eacd0c3d62934914d2286f84b98ff4cb.cairo": "let syscall_ptr = [cast([cast(fp + (-5), felt**)] + 0, felt**)];\n", - "autogen/starknet/external/symbol/d8aa55fbbc45562d781915a1c7930fc50b33d8bd29db7102b5c44cbfd8b54639.cairo": "let ret_value = __wrapped_func{syscall_ptr=syscall_ptr, pedersen_ptr=pedersen_ptr, range_check_ptr=range_check_ptr}();\nlet (range_check_ptr, retdata_size, retdata) = symbol_encode_return(ret_value, range_check_ptr);\n", - "autogen/starknet/external/symbol/da17921a4e81c09e730800bbf23bfdbe5e9e6bfaedc59d80fbf62087fa43c27d.cairo": "return (syscall_ptr,pedersen_ptr,range_check_ptr,retdata_size,retdata);\n", - "autogen/starknet/external/tokenByIndex/741ea357d6336b0bed7bf0472425acd0311d543883b803388880e60a232040c7.cairo": "let range_check_ptr = [cast([cast(fp + (-5), felt**)] + 2, felt*)];\n", - "autogen/starknet/external/tokenByIndex/764d32c547e6047601bca718c9c34d89ceb4a36da87d3814e62b7924e8a28eda.cairo": "let ret_value = __wrapped_func{pedersen_ptr=pedersen_ptr, syscall_ptr=syscall_ptr, range_check_ptr=range_check_ptr}(index=__calldata_arg_index,);\nlet (range_check_ptr, retdata_size, retdata) = tokenByIndex_encode_return(ret_value, range_check_ptr);\n", - "autogen/starknet/external/tokenByIndex/9684a85e93c782014ca14293edea4eb2502039a5a7b6538ecd39c56faaf12529.cairo": "let pedersen_ptr = [cast([cast(fp + (-5), felt**)] + 1, starkware.cairo.common.cairo_builtins.HashBuiltin**)];\n", - "autogen/starknet/external/tokenByIndex/b2c52ca2d2a8fc8791a983086d8716c5eacd0c3d62934914d2286f84b98ff4cb.cairo": "let syscall_ptr = [cast([cast(fp + (-5), felt**)] + 0, felt**)];\n", - "autogen/starknet/external/tokenByIndex/da17921a4e81c09e730800bbf23bfdbe5e9e6bfaedc59d80fbf62087fa43c27d.cairo": "return (syscall_ptr,pedersen_ptr,range_check_ptr,retdata_size,retdata);\n", - "autogen/starknet/external/tokenOfOwnerByIndex/741ea357d6336b0bed7bf0472425acd0311d543883b803388880e60a232040c7.cairo": "let range_check_ptr = [cast([cast(fp + (-5), felt**)] + 2, felt*)];\n", - "autogen/starknet/external/tokenOfOwnerByIndex/9684a85e93c782014ca14293edea4eb2502039a5a7b6538ecd39c56faaf12529.cairo": "let pedersen_ptr = [cast([cast(fp + (-5), felt**)] + 1, starkware.cairo.common.cairo_builtins.HashBuiltin**)];\n", - "autogen/starknet/external/tokenOfOwnerByIndex/b2c52ca2d2a8fc8791a983086d8716c5eacd0c3d62934914d2286f84b98ff4cb.cairo": "let syscall_ptr = [cast([cast(fp + (-5), felt**)] + 0, felt**)];\n", - "autogen/starknet/external/tokenOfOwnerByIndex/bcfb5e1fff2b0d63e3f507cf619efd30405ebe178d0663eb8b95f3e0572d1ca5.cairo": "let ret_value = __wrapped_func{pedersen_ptr=pedersen_ptr, syscall_ptr=syscall_ptr, range_check_ptr=range_check_ptr}(owner=__calldata_arg_owner, index=__calldata_arg_index,);\nlet (range_check_ptr, retdata_size, retdata) = tokenOfOwnerByIndex_encode_return(ret_value, range_check_ptr);\n", - "autogen/starknet/external/tokenOfOwnerByIndex/da17921a4e81c09e730800bbf23bfdbe5e9e6bfaedc59d80fbf62087fa43c27d.cairo": "return (syscall_ptr,pedersen_ptr,range_check_ptr,retdata_size,retdata);\n", - "autogen/starknet/external/tokenURI/42e9e406a0e7dbd46b7b1448ce8da1ca2e3fdc14d84af0c1d0d4fdb56a52a5f4.cairo": "let ret_value = __wrapped_func{syscall_ptr=syscall_ptr, pedersen_ptr=pedersen_ptr, range_check_ptr=range_check_ptr}(tokenId=__calldata_arg_tokenId,);\nlet (range_check_ptr, retdata_size, retdata) = tokenURI_encode_return(ret_value, range_check_ptr);\n", - "autogen/starknet/external/tokenURI/741ea357d6336b0bed7bf0472425acd0311d543883b803388880e60a232040c7.cairo": "let range_check_ptr = [cast([cast(fp + (-5), felt**)] + 2, felt*)];\n", - "autogen/starknet/external/tokenURI/86cf3ce3e78b1f08bd517752a6b6deed16efd89e5728b638ff9485a43d30a598.cairo": "func tokenURI() -> (syscall_ptr: felt*, pedersen_ptr: starkware.cairo.common.cairo_builtins.HashBuiltin*, range_check_ptr: felt, size: felt, retdata: felt*) {\n alloc_locals;\n}\n", - "autogen/starknet/external/tokenURI/9684a85e93c782014ca14293edea4eb2502039a5a7b6538ecd39c56faaf12529.cairo": "let pedersen_ptr = [cast([cast(fp + (-5), felt**)] + 1, starkware.cairo.common.cairo_builtins.HashBuiltin**)];\n", - "autogen/starknet/external/tokenURI/b2c52ca2d2a8fc8791a983086d8716c5eacd0c3d62934914d2286f84b98ff4cb.cairo": "let syscall_ptr = [cast([cast(fp + (-5), felt**)] + 0, felt**)];\n", - "autogen/starknet/external/tokenURI/da17921a4e81c09e730800bbf23bfdbe5e9e6bfaedc59d80fbf62087fa43c27d.cairo": "return (syscall_ptr,pedersen_ptr,range_check_ptr,retdata_size,retdata);\n", - "autogen/starknet/external/totalSupply/5b54c430df10b729ecc10b3e860410c6829f116d1a34b32e8415fa1ac24c16d8.cairo": "let ret_value = __wrapped_func{pedersen_ptr=pedersen_ptr, syscall_ptr=syscall_ptr, range_check_ptr=range_check_ptr}();\nlet (range_check_ptr, retdata_size, retdata) = totalSupply_encode_return(ret_value, range_check_ptr);\n", - "autogen/starknet/external/totalSupply/741ea357d6336b0bed7bf0472425acd0311d543883b803388880e60a232040c7.cairo": "let range_check_ptr = [cast([cast(fp + (-5), felt**)] + 2, felt*)];\n", - "autogen/starknet/external/totalSupply/9684a85e93c782014ca14293edea4eb2502039a5a7b6538ecd39c56faaf12529.cairo": "let pedersen_ptr = [cast([cast(fp + (-5), felt**)] + 1, starkware.cairo.common.cairo_builtins.HashBuiltin**)];\n", - "autogen/starknet/external/totalSupply/b2c52ca2d2a8fc8791a983086d8716c5eacd0c3d62934914d2286f84b98ff4cb.cairo": "let syscall_ptr = [cast([cast(fp + (-5), felt**)] + 0, felt**)];\n", - "autogen/starknet/external/totalSupply/da17921a4e81c09e730800bbf23bfdbe5e9e6bfaedc59d80fbf62087fa43c27d.cairo": "return (syscall_ptr,pedersen_ptr,range_check_ptr,retdata_size,retdata);\n", - "autogen/starknet/external/transferFrom/741ea357d6336b0bed7bf0472425acd0311d543883b803388880e60a232040c7.cairo": "let range_check_ptr = [cast([cast(fp + (-5), felt**)] + 2, felt*)];\n", - "autogen/starknet/external/transferFrom/9684a85e93c782014ca14293edea4eb2502039a5a7b6538ecd39c56faaf12529.cairo": "let pedersen_ptr = [cast([cast(fp + (-5), felt**)] + 1, starkware.cairo.common.cairo_builtins.HashBuiltin**)];\n", - "autogen/starknet/external/transferFrom/b2c52ca2d2a8fc8791a983086d8716c5eacd0c3d62934914d2286f84b98ff4cb.cairo": "let syscall_ptr = [cast([cast(fp + (-5), felt**)] + 0, felt**)];\n", - "autogen/starknet/external/transferFrom/da17921a4e81c09e730800bbf23bfdbe5e9e6bfaedc59d80fbf62087fa43c27d.cairo": "return (syscall_ptr,pedersen_ptr,range_check_ptr,retdata_size,retdata);\n", - "autogen/starknet/external/transferFrom/ebf9f2690eeffee22f3d99ab5430147a11d0a2aa047472f5b737d6d09ce13c6e.cairo": "let ret_value = __wrapped_func{pedersen_ptr=pedersen_ptr, syscall_ptr=syscall_ptr, range_check_ptr=range_check_ptr}(from_=__calldata_arg_from_, to=__calldata_arg_to, tokenId=__calldata_arg_tokenId,);\n%{ memory[ap] = segments.add() %} // Allocate memory for return value.\ntempvar retdata: felt*;\nlet retdata_size = 0;\n", - "autogen/starknet/external/transferOwnership/741ea357d6336b0bed7bf0472425acd0311d543883b803388880e60a232040c7.cairo": "let range_check_ptr = [cast([cast(fp + (-5), felt**)] + 2, felt*)];\n", - "autogen/starknet/external/transferOwnership/9684a85e93c782014ca14293edea4eb2502039a5a7b6538ecd39c56faaf12529.cairo": "let pedersen_ptr = [cast([cast(fp + (-5), felt**)] + 1, starkware.cairo.common.cairo_builtins.HashBuiltin**)];\n", - "autogen/starknet/external/transferOwnership/b2c52ca2d2a8fc8791a983086d8716c5eacd0c3d62934914d2286f84b98ff4cb.cairo": "let syscall_ptr = [cast([cast(fp + (-5), felt**)] + 0, felt**)];\n", - "autogen/starknet/external/transferOwnership/c2abbdf6d40d1d1b0441e88eb8846ba0c3d55e5f282e3d3f8d0a35a43a9b3e33.cairo": "let ret_value = __wrapped_func{syscall_ptr=syscall_ptr, pedersen_ptr=pedersen_ptr, range_check_ptr=range_check_ptr}(new_owner=__calldata_arg_new_owner,);\n%{ memory[ap] = segments.add() %} // Allocate memory for return value.\ntempvar retdata: felt*;\nlet retdata_size = 0;\n", - "autogen/starknet/external/transferOwnership/da17921a4e81c09e730800bbf23bfdbe5e9e6bfaedc59d80fbf62087fa43c27d.cairo": "return (syscall_ptr,pedersen_ptr,range_check_ptr,retdata_size,retdata);\n", - "autogen/starknet/storage_var/ERC165_supported_interfaces/decl.cairo": "namespace ERC165_supported_interfaces {\n from starkware.starknet.common.storage import normalize_address\n from starkware.starknet.common.syscalls import storage_read, storage_write\n from starkware.cairo.common.cairo_builtins import HashBuiltin\n from starkware.cairo.common.hash import hash2\n\n func addr{pedersen_ptr: HashBuiltin*, range_check_ptr}(interface_id: felt) -> (res: felt) {\n let res = 0;\n call hash2;\n call normalize_address;\n }\n\n func read{syscall_ptr: felt*, pedersen_ptr: HashBuiltin*, range_check_ptr}(\n interface_id: felt\n ) -> (is_supported: felt) {\n let storage_addr = 0;\n call addr;\n call storage_read;\n }\n\n func write{syscall_ptr: felt*, pedersen_ptr: HashBuiltin*, range_check_ptr}(\n interface_id: felt, value: felt\n ) {\n let storage_addr = 0;\n call addr;\n call storage_write;\n }\n}", - "autogen/starknet/storage_var/ERC165_supported_interfaces/impl.cairo": "namespace ERC165_supported_interfaces {\n from starkware.starknet.common.storage import normalize_address\n from starkware.starknet.common.syscalls import storage_read, storage_write\n from starkware.cairo.common.cairo_builtins import HashBuiltin\n from starkware.cairo.common.hash import hash2\n\n func addr{pedersen_ptr: HashBuiltin*, range_check_ptr}(interface_id: felt) -> (res: felt) {\n let res = 479559987705328862372362947504386080106579713470203672197513890426980061174;\n let (res) = hash2{hash_ptr=pedersen_ptr}(res, cast(&interface_id, felt*)[0]);\n let (res) = normalize_address(addr=res);\n return (res=res);\n }\n\n func read{syscall_ptr: felt*, pedersen_ptr: HashBuiltin*, range_check_ptr}(\n interface_id: felt\n ) -> (is_supported: felt) {\n let (storage_addr) = addr(interface_id);\n let (__storage_var_temp0) = storage_read(address=storage_addr + 0);\n\n tempvar syscall_ptr = syscall_ptr;\n tempvar pedersen_ptr = pedersen_ptr;\n tempvar range_check_ptr = range_check_ptr;\n tempvar __storage_var_temp0: felt = __storage_var_temp0;\n return ([cast(&__storage_var_temp0, felt*)],);\n }\n\n func write{syscall_ptr: felt*, pedersen_ptr: HashBuiltin*, range_check_ptr}(\n interface_id: felt, value: felt\n ) {\n let (storage_addr) = addr(interface_id);\n storage_write(address=storage_addr + 0, value=[cast(&value, felt) + 0]);\n return ();\n }\n}", - "autogen/starknet/storage_var/ERC721Enumerable_all_tokens/decl.cairo": "namespace ERC721Enumerable_all_tokens {\n from starkware.starknet.common.storage import normalize_address\n from starkware.starknet.common.syscalls import storage_read, storage_write\n from starkware.cairo.common.cairo_builtins import HashBuiltin\n from starkware.cairo.common.hash import hash2\n\n func addr{pedersen_ptr: HashBuiltin*, range_check_ptr}(index: Uint256) -> (res: felt) {\n let res = 0;\n call hash2;\n call normalize_address;\n }\n\n func read{syscall_ptr: felt*, pedersen_ptr: HashBuiltin*, range_check_ptr}(index: Uint256) -> (\n token_id: Uint256\n ) {\n let storage_addr = 0;\n call addr;\n call storage_read;\n }\n\n func write{syscall_ptr: felt*, pedersen_ptr: HashBuiltin*, range_check_ptr}(\n index: Uint256, value: Uint256\n ) {\n let storage_addr = 0;\n call addr;\n call storage_write;\n }\n}", - "autogen/starknet/storage_var/ERC721Enumerable_all_tokens/impl.cairo": "namespace ERC721Enumerable_all_tokens {\n from starkware.starknet.common.storage import normalize_address\n from starkware.starknet.common.syscalls import storage_read, storage_write\n from starkware.cairo.common.cairo_builtins import HashBuiltin\n from starkware.cairo.common.hash import hash2\n\n func addr{pedersen_ptr: HashBuiltin*, range_check_ptr}(index: Uint256) -> (res: felt) {\n let res = 425948655246834951023382595567403326392147733879151049994459729835523809558;\n let (res) = hash2{hash_ptr=pedersen_ptr}(res, cast(&index, felt*)[0]);\n let (res) = hash2{hash_ptr=pedersen_ptr}(res, cast(&index, felt*)[1]);\n let (res) = normalize_address(addr=res);\n return (res=res);\n }\n\n func read{syscall_ptr: felt*, pedersen_ptr: HashBuiltin*, range_check_ptr}(index: Uint256) -> (\n token_id: Uint256\n ) {\n let (storage_addr) = addr(index);\n let (__storage_var_temp0) = storage_read(address=storage_addr + 0);\n let (__storage_var_temp1) = storage_read(address=storage_addr + 1);\n\n tempvar syscall_ptr = syscall_ptr;\n tempvar pedersen_ptr = pedersen_ptr;\n tempvar range_check_ptr = range_check_ptr;\n tempvar __storage_var_temp0: felt = __storage_var_temp0;\n tempvar __storage_var_temp1: felt = __storage_var_temp1;\n return ([cast(&__storage_var_temp0, Uint256*)],);\n }\n\n func write{syscall_ptr: felt*, pedersen_ptr: HashBuiltin*, range_check_ptr}(\n index: Uint256, value: Uint256\n ) {\n let (storage_addr) = addr(index);\n storage_write(address=storage_addr + 0, value=[cast(&value, felt) + 0]);\n storage_write(address=storage_addr + 1, value=[cast(&value, felt) + 1]);\n return ();\n }\n}", - "autogen/starknet/storage_var/ERC721Enumerable_all_tokens_index/decl.cairo": "namespace ERC721Enumerable_all_tokens_index {\n from starkware.starknet.common.storage import normalize_address\n from starkware.starknet.common.syscalls import storage_read, storage_write\n from starkware.cairo.common.cairo_builtins import HashBuiltin\n from starkware.cairo.common.hash import hash2\n\n func addr{pedersen_ptr: HashBuiltin*, range_check_ptr}(token_id: Uint256) -> (res: felt) {\n let res = 0;\n call hash2;\n call normalize_address;\n }\n\n func read{syscall_ptr: felt*, pedersen_ptr: HashBuiltin*, range_check_ptr}(\n token_id: Uint256\n ) -> (index: Uint256) {\n let storage_addr = 0;\n call addr;\n call storage_read;\n }\n\n func write{syscall_ptr: felt*, pedersen_ptr: HashBuiltin*, range_check_ptr}(\n token_id: Uint256, value: Uint256\n ) {\n let storage_addr = 0;\n call addr;\n call storage_write;\n }\n}", - "autogen/starknet/storage_var/ERC721Enumerable_all_tokens_index/impl.cairo": "namespace ERC721Enumerable_all_tokens_index {\n from starkware.starknet.common.storage import normalize_address\n from starkware.starknet.common.syscalls import storage_read, storage_write\n from starkware.cairo.common.cairo_builtins import HashBuiltin\n from starkware.cairo.common.hash import hash2\n\n func addr{pedersen_ptr: HashBuiltin*, range_check_ptr}(token_id: Uint256) -> (res: felt) {\n let res = 1216948699083389372761620393074310578140236810850808160611125698991729580099;\n let (res) = hash2{hash_ptr=pedersen_ptr}(res, cast(&token_id, felt*)[0]);\n let (res) = hash2{hash_ptr=pedersen_ptr}(res, cast(&token_id, felt*)[1]);\n let (res) = normalize_address(addr=res);\n return (res=res);\n }\n\n func read{syscall_ptr: felt*, pedersen_ptr: HashBuiltin*, range_check_ptr}(\n token_id: Uint256\n ) -> (index: Uint256) {\n let (storage_addr) = addr(token_id);\n let (__storage_var_temp0) = storage_read(address=storage_addr + 0);\n let (__storage_var_temp1) = storage_read(address=storage_addr + 1);\n\n tempvar syscall_ptr = syscall_ptr;\n tempvar pedersen_ptr = pedersen_ptr;\n tempvar range_check_ptr = range_check_ptr;\n tempvar __storage_var_temp0: felt = __storage_var_temp0;\n tempvar __storage_var_temp1: felt = __storage_var_temp1;\n return ([cast(&__storage_var_temp0, Uint256*)],);\n }\n\n func write{syscall_ptr: felt*, pedersen_ptr: HashBuiltin*, range_check_ptr}(\n token_id: Uint256, value: Uint256\n ) {\n let (storage_addr) = addr(token_id);\n storage_write(address=storage_addr + 0, value=[cast(&value, felt) + 0]);\n storage_write(address=storage_addr + 1, value=[cast(&value, felt) + 1]);\n return ();\n }\n}", - "autogen/starknet/storage_var/ERC721Enumerable_all_tokens_len/decl.cairo": "namespace ERC721Enumerable_all_tokens_len {\n from starkware.starknet.common.storage import normalize_address\n from starkware.starknet.common.syscalls import storage_read, storage_write\n from starkware.cairo.common.cairo_builtins import HashBuiltin\n from starkware.cairo.common.hash import hash2\n\n func addr{pedersen_ptr: HashBuiltin*, range_check_ptr}() -> (res: felt) {\n let res = 0;\n call hash2;\n call normalize_address;\n }\n\n func read{syscall_ptr: felt*, pedersen_ptr: HashBuiltin*, range_check_ptr}() -> (\n total_supply: Uint256\n ) {\n let storage_addr = 0;\n call addr;\n call storage_read;\n }\n\n func write{syscall_ptr: felt*, pedersen_ptr: HashBuiltin*, range_check_ptr}(value: Uint256) {\n let storage_addr = 0;\n call addr;\n call storage_write;\n }\n}", - "autogen/starknet/storage_var/ERC721Enumerable_all_tokens_len/impl.cairo": "namespace ERC721Enumerable_all_tokens_len {\n from starkware.starknet.common.storage import normalize_address\n from starkware.starknet.common.syscalls import storage_read, storage_write\n from starkware.cairo.common.cairo_builtins import HashBuiltin\n from starkware.cairo.common.hash import hash2\n\n func addr{pedersen_ptr: HashBuiltin*, range_check_ptr}() -> (res: felt) {\n let res = 1079213035913931897056332105495109524451856058442083615283114591834346453995;\n return (res=res);\n }\n\n func read{syscall_ptr: felt*, pedersen_ptr: HashBuiltin*, range_check_ptr}() -> (\n total_supply: Uint256\n ) {\n let (storage_addr) = addr();\n let (__storage_var_temp0) = storage_read(address=storage_addr + 0);\n let (__storage_var_temp1) = storage_read(address=storage_addr + 1);\n\n tempvar syscall_ptr = syscall_ptr;\n tempvar pedersen_ptr = pedersen_ptr;\n tempvar range_check_ptr = range_check_ptr;\n tempvar __storage_var_temp0: felt = __storage_var_temp0;\n tempvar __storage_var_temp1: felt = __storage_var_temp1;\n return ([cast(&__storage_var_temp0, Uint256*)],);\n }\n\n func write{syscall_ptr: felt*, pedersen_ptr: HashBuiltin*, range_check_ptr}(value: Uint256) {\n let (storage_addr) = addr();\n storage_write(address=storage_addr + 0, value=[cast(&value, felt) + 0]);\n storage_write(address=storage_addr + 1, value=[cast(&value, felt) + 1]);\n return ();\n }\n}", - "autogen/starknet/storage_var/ERC721Enumerable_owned_tokens/decl.cairo": "namespace ERC721Enumerable_owned_tokens {\n from starkware.starknet.common.storage import normalize_address\n from starkware.starknet.common.syscalls import storage_read, storage_write\n from starkware.cairo.common.cairo_builtins import HashBuiltin\n from starkware.cairo.common.hash import hash2\n\n func addr{pedersen_ptr: HashBuiltin*, range_check_ptr}(owner: felt, index: Uint256) -> (\n res: felt\n ) {\n let res = 0;\n call hash2;\n call normalize_address;\n }\n\n func read{syscall_ptr: felt*, pedersen_ptr: HashBuiltin*, range_check_ptr}(\n owner: felt, index: Uint256\n ) -> (token_id: Uint256) {\n let storage_addr = 0;\n call addr;\n call storage_read;\n }\n\n func write{syscall_ptr: felt*, pedersen_ptr: HashBuiltin*, range_check_ptr}(\n owner: felt, index: Uint256, value: Uint256\n ) {\n let storage_addr = 0;\n call addr;\n call storage_write;\n }\n}", - "autogen/starknet/storage_var/ERC721Enumerable_owned_tokens/impl.cairo": "namespace ERC721Enumerable_owned_tokens {\n from starkware.starknet.common.storage import normalize_address\n from starkware.starknet.common.syscalls import storage_read, storage_write\n from starkware.cairo.common.cairo_builtins import HashBuiltin\n from starkware.cairo.common.hash import hash2\n\n func addr{pedersen_ptr: HashBuiltin*, range_check_ptr}(owner: felt, index: Uint256) -> (\n res: felt\n ) {\n let res = 61604307129196780118296711543584917649281122988081132028062811618121784164;\n let (res) = hash2{hash_ptr=pedersen_ptr}(res, cast(&owner, felt*)[0]);\n let (res) = hash2{hash_ptr=pedersen_ptr}(res, cast(&index, felt*)[0]);\n let (res) = hash2{hash_ptr=pedersen_ptr}(res, cast(&index, felt*)[1]);\n let (res) = normalize_address(addr=res);\n return (res=res);\n }\n\n func read{syscall_ptr: felt*, pedersen_ptr: HashBuiltin*, range_check_ptr}(\n owner: felt, index: Uint256\n ) -> (token_id: Uint256) {\n let (storage_addr) = addr(owner, index);\n let (__storage_var_temp0) = storage_read(address=storage_addr + 0);\n let (__storage_var_temp1) = storage_read(address=storage_addr + 1);\n\n tempvar syscall_ptr = syscall_ptr;\n tempvar pedersen_ptr = pedersen_ptr;\n tempvar range_check_ptr = range_check_ptr;\n tempvar __storage_var_temp0: felt = __storage_var_temp0;\n tempvar __storage_var_temp1: felt = __storage_var_temp1;\n return ([cast(&__storage_var_temp0, Uint256*)],);\n }\n\n func write{syscall_ptr: felt*, pedersen_ptr: HashBuiltin*, range_check_ptr}(\n owner: felt, index: Uint256, value: Uint256\n ) {\n let (storage_addr) = addr(owner, index);\n storage_write(address=storage_addr + 0, value=[cast(&value, felt) + 0]);\n storage_write(address=storage_addr + 1, value=[cast(&value, felt) + 1]);\n return ();\n }\n}", - "autogen/starknet/storage_var/ERC721Enumerable_owned_tokens_index/decl.cairo": "namespace ERC721Enumerable_owned_tokens_index {\n from starkware.starknet.common.storage import normalize_address\n from starkware.starknet.common.syscalls import storage_read, storage_write\n from starkware.cairo.common.cairo_builtins import HashBuiltin\n from starkware.cairo.common.hash import hash2\n\n func addr{pedersen_ptr: HashBuiltin*, range_check_ptr}(token_id: Uint256) -> (res: felt) {\n let res = 0;\n call hash2;\n call normalize_address;\n }\n\n func read{syscall_ptr: felt*, pedersen_ptr: HashBuiltin*, range_check_ptr}(\n token_id: Uint256\n ) -> (index: Uint256) {\n let storage_addr = 0;\n call addr;\n call storage_read;\n }\n\n func write{syscall_ptr: felt*, pedersen_ptr: HashBuiltin*, range_check_ptr}(\n token_id: Uint256, value: Uint256\n ) {\n let storage_addr = 0;\n call addr;\n call storage_write;\n }\n}", - "autogen/starknet/storage_var/ERC721Enumerable_owned_tokens_index/impl.cairo": "namespace ERC721Enumerable_owned_tokens_index {\n from starkware.starknet.common.storage import normalize_address\n from starkware.starknet.common.syscalls import storage_read, storage_write\n from starkware.cairo.common.cairo_builtins import HashBuiltin\n from starkware.cairo.common.hash import hash2\n\n func addr{pedersen_ptr: HashBuiltin*, range_check_ptr}(token_id: Uint256) -> (res: felt) {\n let res = 311796791401713537503427708838646807392281481788909959602639719990132509779;\n let (res) = hash2{hash_ptr=pedersen_ptr}(res, cast(&token_id, felt*)[0]);\n let (res) = hash2{hash_ptr=pedersen_ptr}(res, cast(&token_id, felt*)[1]);\n let (res) = normalize_address(addr=res);\n return (res=res);\n }\n\n func read{syscall_ptr: felt*, pedersen_ptr: HashBuiltin*, range_check_ptr}(\n token_id: Uint256\n ) -> (index: Uint256) {\n let (storage_addr) = addr(token_id);\n let (__storage_var_temp0) = storage_read(address=storage_addr + 0);\n let (__storage_var_temp1) = storage_read(address=storage_addr + 1);\n\n tempvar syscall_ptr = syscall_ptr;\n tempvar pedersen_ptr = pedersen_ptr;\n tempvar range_check_ptr = range_check_ptr;\n tempvar __storage_var_temp0: felt = __storage_var_temp0;\n tempvar __storage_var_temp1: felt = __storage_var_temp1;\n return ([cast(&__storage_var_temp0, Uint256*)],);\n }\n\n func write{syscall_ptr: felt*, pedersen_ptr: HashBuiltin*, range_check_ptr}(\n token_id: Uint256, value: Uint256\n ) {\n let (storage_addr) = addr(token_id);\n storage_write(address=storage_addr + 0, value=[cast(&value, felt) + 0]);\n storage_write(address=storage_addr + 1, value=[cast(&value, felt) + 1]);\n return ();\n }\n}", - "autogen/starknet/storage_var/ERC721_balances/decl.cairo": "namespace ERC721_balances {\n from starkware.starknet.common.storage import normalize_address\n from starkware.starknet.common.syscalls import storage_read, storage_write\n from starkware.cairo.common.cairo_builtins import HashBuiltin\n from starkware.cairo.common.hash import hash2\n\n func addr{pedersen_ptr: HashBuiltin*, range_check_ptr}(account: felt) -> (res: felt) {\n let res = 0;\n call hash2;\n call normalize_address;\n }\n\n func read{syscall_ptr: felt*, pedersen_ptr: HashBuiltin*, range_check_ptr}(account: felt) -> (\n balance: Uint256\n ) {\n let storage_addr = 0;\n call addr;\n call storage_read;\n }\n\n func write{syscall_ptr: felt*, pedersen_ptr: HashBuiltin*, range_check_ptr}(\n account: felt, value: Uint256\n ) {\n let storage_addr = 0;\n call addr;\n call storage_write;\n }\n}", - "autogen/starknet/storage_var/ERC721_balances/impl.cairo": "namespace ERC721_balances {\n from starkware.starknet.common.storage import normalize_address\n from starkware.starknet.common.syscalls import storage_read, storage_write\n from starkware.cairo.common.cairo_builtins import HashBuiltin\n from starkware.cairo.common.hash import hash2\n\n func addr{pedersen_ptr: HashBuiltin*, range_check_ptr}(account: felt) -> (res: felt) {\n let res = 1689070751711682002574449661976975431205580400605311704759272493176844520313;\n let (res) = hash2{hash_ptr=pedersen_ptr}(res, cast(&account, felt*)[0]);\n let (res) = normalize_address(addr=res);\n return (res=res);\n }\n\n func read{syscall_ptr: felt*, pedersen_ptr: HashBuiltin*, range_check_ptr}(account: felt) -> (\n balance: Uint256\n ) {\n let (storage_addr) = addr(account);\n let (__storage_var_temp0) = storage_read(address=storage_addr + 0);\n let (__storage_var_temp1) = storage_read(address=storage_addr + 1);\n\n tempvar syscall_ptr = syscall_ptr;\n tempvar pedersen_ptr = pedersen_ptr;\n tempvar range_check_ptr = range_check_ptr;\n tempvar __storage_var_temp0: felt = __storage_var_temp0;\n tempvar __storage_var_temp1: felt = __storage_var_temp1;\n return ([cast(&__storage_var_temp0, Uint256*)],);\n }\n\n func write{syscall_ptr: felt*, pedersen_ptr: HashBuiltin*, range_check_ptr}(\n account: felt, value: Uint256\n ) {\n let (storage_addr) = addr(account);\n storage_write(address=storage_addr + 0, value=[cast(&value, felt) + 0]);\n storage_write(address=storage_addr + 1, value=[cast(&value, felt) + 1]);\n return ();\n }\n}", - "autogen/starknet/storage_var/ERC721_name/decl.cairo": "namespace ERC721_name {\n from starkware.starknet.common.storage import normalize_address\n from starkware.starknet.common.syscalls import storage_read, storage_write\n from starkware.cairo.common.cairo_builtins import HashBuiltin\n from starkware.cairo.common.hash import hash2\n\n func addr{pedersen_ptr: HashBuiltin*, range_check_ptr}() -> (res: felt) {\n let res = 0;\n call hash2;\n call normalize_address;\n }\n\n func read{syscall_ptr: felt*, pedersen_ptr: HashBuiltin*, range_check_ptr}() -> (name: felt) {\n let storage_addr = 0;\n call addr;\n call storage_read;\n }\n\n func write{syscall_ptr: felt*, pedersen_ptr: HashBuiltin*, range_check_ptr}(value: felt) {\n let storage_addr = 0;\n call addr;\n call storage_write;\n }\n}", - "autogen/starknet/storage_var/ERC721_name/impl.cairo": "namespace ERC721_name {\n from starkware.starknet.common.storage import normalize_address\n from starkware.starknet.common.syscalls import storage_read, storage_write\n from starkware.cairo.common.cairo_builtins import HashBuiltin\n from starkware.cairo.common.hash import hash2\n\n func addr{pedersen_ptr: HashBuiltin*, range_check_ptr}() -> (res: felt) {\n let res = 1652684853864905172544337095254754697509410599464472831863256033323469373663;\n return (res=res);\n }\n\n func read{syscall_ptr: felt*, pedersen_ptr: HashBuiltin*, range_check_ptr}() -> (name: felt) {\n let (storage_addr) = addr();\n let (__storage_var_temp0) = storage_read(address=storage_addr + 0);\n\n tempvar syscall_ptr = syscall_ptr;\n tempvar pedersen_ptr = pedersen_ptr;\n tempvar range_check_ptr = range_check_ptr;\n tempvar __storage_var_temp0: felt = __storage_var_temp0;\n return ([cast(&__storage_var_temp0, felt*)],);\n }\n\n func write{syscall_ptr: felt*, pedersen_ptr: HashBuiltin*, range_check_ptr}(value: felt) {\n let (storage_addr) = addr();\n storage_write(address=storage_addr + 0, value=[cast(&value, felt) + 0]);\n return ();\n }\n}", - "autogen/starknet/storage_var/ERC721_operator_approvals/decl.cairo": "namespace ERC721_operator_approvals {\n from starkware.starknet.common.storage import normalize_address\n from starkware.starknet.common.syscalls import storage_read, storage_write\n from starkware.cairo.common.cairo_builtins import HashBuiltin\n from starkware.cairo.common.hash import hash2\n\n func addr{pedersen_ptr: HashBuiltin*, range_check_ptr}(owner: felt, operator: felt) -> (\n res: felt\n ) {\n let res = 0;\n call hash2;\n call normalize_address;\n }\n\n func read{syscall_ptr: felt*, pedersen_ptr: HashBuiltin*, range_check_ptr}(\n owner: felt, operator: felt\n ) -> (is_approved: felt) {\n let storage_addr = 0;\n call addr;\n call storage_read;\n }\n\n func write{syscall_ptr: felt*, pedersen_ptr: HashBuiltin*, range_check_ptr}(\n owner: felt, operator: felt, value: felt\n ) {\n let storage_addr = 0;\n call addr;\n call storage_write;\n }\n}", - "autogen/starknet/storage_var/ERC721_operator_approvals/impl.cairo": "namespace ERC721_operator_approvals {\n from starkware.starknet.common.storage import normalize_address\n from starkware.starknet.common.syscalls import storage_read, storage_write\n from starkware.cairo.common.cairo_builtins import HashBuiltin\n from starkware.cairo.common.hash import hash2\n\n func addr{pedersen_ptr: HashBuiltin*, range_check_ptr}(owner: felt, operator: felt) -> (\n res: felt\n ) {\n let res = 1499941398251932938145434100423974784112539485970179630262769564930032724035;\n let (res) = hash2{hash_ptr=pedersen_ptr}(res, cast(&owner, felt*)[0]);\n let (res) = hash2{hash_ptr=pedersen_ptr}(res, cast(&operator, felt*)[0]);\n let (res) = normalize_address(addr=res);\n return (res=res);\n }\n\n func read{syscall_ptr: felt*, pedersen_ptr: HashBuiltin*, range_check_ptr}(\n owner: felt, operator: felt\n ) -> (is_approved: felt) {\n let (storage_addr) = addr(owner, operator);\n let (__storage_var_temp0) = storage_read(address=storage_addr + 0);\n\n tempvar syscall_ptr = syscall_ptr;\n tempvar pedersen_ptr = pedersen_ptr;\n tempvar range_check_ptr = range_check_ptr;\n tempvar __storage_var_temp0: felt = __storage_var_temp0;\n return ([cast(&__storage_var_temp0, felt*)],);\n }\n\n func write{syscall_ptr: felt*, pedersen_ptr: HashBuiltin*, range_check_ptr}(\n owner: felt, operator: felt, value: felt\n ) {\n let (storage_addr) = addr(owner, operator);\n storage_write(address=storage_addr + 0, value=[cast(&value, felt) + 0]);\n return ();\n }\n}", - "autogen/starknet/storage_var/ERC721_owners/decl.cairo": "namespace ERC721_owners {\n from starkware.starknet.common.storage import normalize_address\n from starkware.starknet.common.syscalls import storage_read, storage_write\n from starkware.cairo.common.cairo_builtins import HashBuiltin\n from starkware.cairo.common.hash import hash2\n\n func addr{pedersen_ptr: HashBuiltin*, range_check_ptr}(token_id: Uint256) -> (res: felt) {\n let res = 0;\n call hash2;\n call normalize_address;\n }\n\n func read{syscall_ptr: felt*, pedersen_ptr: HashBuiltin*, range_check_ptr}(\n token_id: Uint256\n ) -> (owner: felt) {\n let storage_addr = 0;\n call addr;\n call storage_read;\n }\n\n func write{syscall_ptr: felt*, pedersen_ptr: HashBuiltin*, range_check_ptr}(\n token_id: Uint256, value: felt\n ) {\n let storage_addr = 0;\n call addr;\n call storage_write;\n }\n}", - "autogen/starknet/storage_var/ERC721_owners/impl.cairo": "namespace ERC721_owners {\n from starkware.starknet.common.storage import normalize_address\n from starkware.starknet.common.syscalls import storage_read, storage_write\n from starkware.cairo.common.cairo_builtins import HashBuiltin\n from starkware.cairo.common.hash import hash2\n\n func addr{pedersen_ptr: HashBuiltin*, range_check_ptr}(token_id: Uint256) -> (res: felt) {\n let res = 732758942413505530596855626420601171651165063220406830197835351730705261312;\n let (res) = hash2{hash_ptr=pedersen_ptr}(res, cast(&token_id, felt*)[0]);\n let (res) = hash2{hash_ptr=pedersen_ptr}(res, cast(&token_id, felt*)[1]);\n let (res) = normalize_address(addr=res);\n return (res=res);\n }\n\n func read{syscall_ptr: felt*, pedersen_ptr: HashBuiltin*, range_check_ptr}(\n token_id: Uint256\n ) -> (owner: felt) {\n let (storage_addr) = addr(token_id);\n let (__storage_var_temp0) = storage_read(address=storage_addr + 0);\n\n tempvar syscall_ptr = syscall_ptr;\n tempvar pedersen_ptr = pedersen_ptr;\n tempvar range_check_ptr = range_check_ptr;\n tempvar __storage_var_temp0: felt = __storage_var_temp0;\n return ([cast(&__storage_var_temp0, felt*)],);\n }\n\n func write{syscall_ptr: felt*, pedersen_ptr: HashBuiltin*, range_check_ptr}(\n token_id: Uint256, value: felt\n ) {\n let (storage_addr) = addr(token_id);\n storage_write(address=storage_addr + 0, value=[cast(&value, felt) + 0]);\n return ();\n }\n}", - "autogen/starknet/storage_var/ERC721_symbol/decl.cairo": "namespace ERC721_symbol {\n from starkware.starknet.common.storage import normalize_address\n from starkware.starknet.common.syscalls import storage_read, storage_write\n from starkware.cairo.common.cairo_builtins import HashBuiltin\n from starkware.cairo.common.hash import hash2\n\n func addr{pedersen_ptr: HashBuiltin*, range_check_ptr}() -> (res: felt) {\n let res = 0;\n call hash2;\n call normalize_address;\n }\n\n func read{syscall_ptr: felt*, pedersen_ptr: HashBuiltin*, range_check_ptr}() -> (symbol: felt) {\n let storage_addr = 0;\n call addr;\n call storage_read;\n }\n\n func write{syscall_ptr: felt*, pedersen_ptr: HashBuiltin*, range_check_ptr}(value: felt) {\n let storage_addr = 0;\n call addr;\n call storage_write;\n }\n}", - "autogen/starknet/storage_var/ERC721_symbol/impl.cairo": "namespace ERC721_symbol {\n from starkware.starknet.common.storage import normalize_address\n from starkware.starknet.common.syscalls import storage_read, storage_write\n from starkware.cairo.common.cairo_builtins import HashBuiltin\n from starkware.cairo.common.hash import hash2\n\n func addr{pedersen_ptr: HashBuiltin*, range_check_ptr}() -> (res: felt) {\n let res = 573923459913003082056231149040220796427044997268401212428888364214688518306;\n return (res=res);\n }\n\n func read{syscall_ptr: felt*, pedersen_ptr: HashBuiltin*, range_check_ptr}() -> (symbol: felt) {\n let (storage_addr) = addr();\n let (__storage_var_temp0) = storage_read(address=storage_addr + 0);\n\n tempvar syscall_ptr = syscall_ptr;\n tempvar pedersen_ptr = pedersen_ptr;\n tempvar range_check_ptr = range_check_ptr;\n tempvar __storage_var_temp0: felt = __storage_var_temp0;\n return ([cast(&__storage_var_temp0, felt*)],);\n }\n\n func write{syscall_ptr: felt*, pedersen_ptr: HashBuiltin*, range_check_ptr}(value: felt) {\n let (storage_addr) = addr();\n storage_write(address=storage_addr + 0, value=[cast(&value, felt) + 0]);\n return ();\n }\n}", - "autogen/starknet/storage_var/ERC721_token_approvals/decl.cairo": "namespace ERC721_token_approvals {\n from starkware.starknet.common.storage import normalize_address\n from starkware.starknet.common.syscalls import storage_read, storage_write\n from starkware.cairo.common.cairo_builtins import HashBuiltin\n from starkware.cairo.common.hash import hash2\n\n func addr{pedersen_ptr: HashBuiltin*, range_check_ptr}(token_id: Uint256) -> (res: felt) {\n let res = 0;\n call hash2;\n call normalize_address;\n }\n\n func read{syscall_ptr: felt*, pedersen_ptr: HashBuiltin*, range_check_ptr}(\n token_id: Uint256\n ) -> (approved: felt) {\n let storage_addr = 0;\n call addr;\n call storage_read;\n }\n\n func write{syscall_ptr: felt*, pedersen_ptr: HashBuiltin*, range_check_ptr}(\n token_id: Uint256, value: felt\n ) {\n let storage_addr = 0;\n call addr;\n call storage_write;\n }\n}", - "autogen/starknet/storage_var/ERC721_token_approvals/impl.cairo": "namespace ERC721_token_approvals {\n from starkware.starknet.common.storage import normalize_address\n from starkware.starknet.common.syscalls import storage_read, storage_write\n from starkware.cairo.common.cairo_builtins import HashBuiltin\n from starkware.cairo.common.hash import hash2\n\n func addr{pedersen_ptr: HashBuiltin*, range_check_ptr}(token_id: Uint256) -> (res: felt) {\n let res = 1076908112970844878973126643644898770413526557587041289723434576783586254781;\n let (res) = hash2{hash_ptr=pedersen_ptr}(res, cast(&token_id, felt*)[0]);\n let (res) = hash2{hash_ptr=pedersen_ptr}(res, cast(&token_id, felt*)[1]);\n let (res) = normalize_address(addr=res);\n return (res=res);\n }\n\n func read{syscall_ptr: felt*, pedersen_ptr: HashBuiltin*, range_check_ptr}(\n token_id: Uint256\n ) -> (approved: felt) {\n let (storage_addr) = addr(token_id);\n let (__storage_var_temp0) = storage_read(address=storage_addr + 0);\n\n tempvar syscall_ptr = syscall_ptr;\n tempvar pedersen_ptr = pedersen_ptr;\n tempvar range_check_ptr = range_check_ptr;\n tempvar __storage_var_temp0: felt = __storage_var_temp0;\n return ([cast(&__storage_var_temp0, felt*)],);\n }\n\n func write{syscall_ptr: felt*, pedersen_ptr: HashBuiltin*, range_check_ptr}(\n token_id: Uint256, value: felt\n ) {\n let (storage_addr) = addr(token_id);\n storage_write(address=storage_addr + 0, value=[cast(&value, felt) + 0]);\n return ();\n }\n}", - "autogen/starknet/storage_var/Ownable_owner/decl.cairo": "namespace Ownable_owner {\n from starkware.starknet.common.storage import normalize_address\n from starkware.starknet.common.syscalls import storage_read, storage_write\n from starkware.cairo.common.cairo_builtins import HashBuiltin\n from starkware.cairo.common.hash import hash2\n\n func addr{pedersen_ptr: HashBuiltin*, range_check_ptr}() -> (res: felt) {\n let res = 0;\n call hash2;\n call normalize_address;\n }\n\n func read{syscall_ptr: felt*, pedersen_ptr: HashBuiltin*, range_check_ptr}() -> (owner: felt) {\n let storage_addr = 0;\n call addr;\n call storage_read;\n }\n\n func write{syscall_ptr: felt*, pedersen_ptr: HashBuiltin*, range_check_ptr}(value: felt) {\n let storage_addr = 0;\n call addr;\n call storage_write;\n }\n}", - "autogen/starknet/storage_var/Ownable_owner/impl.cairo": "namespace Ownable_owner {\n from starkware.starknet.common.storage import normalize_address\n from starkware.starknet.common.syscalls import storage_read, storage_write\n from starkware.cairo.common.cairo_builtins import HashBuiltin\n from starkware.cairo.common.hash import hash2\n\n func addr{pedersen_ptr: HashBuiltin*, range_check_ptr}() -> (res: felt) {\n let res = 1239149872729906871793169171313897310809028090219849129902089947133222824240;\n return (res=res);\n }\n\n func read{syscall_ptr: felt*, pedersen_ptr: HashBuiltin*, range_check_ptr}() -> (owner: felt) {\n let (storage_addr) = addr();\n let (__storage_var_temp0) = storage_read(address=storage_addr + 0);\n\n tempvar syscall_ptr = syscall_ptr;\n tempvar pedersen_ptr = pedersen_ptr;\n tempvar range_check_ptr = range_check_ptr;\n tempvar __storage_var_temp0: felt = __storage_var_temp0;\n return ([cast(&__storage_var_temp0, felt*)],);\n }\n\n func write{syscall_ptr: felt*, pedersen_ptr: HashBuiltin*, range_check_ptr}(value: felt) {\n let (storage_addr) = addr();\n storage_write(address=storage_addr + 0, value=[cast(&value, felt) + 0]);\n return ();\n }\n}", - "autogen/starknet/storage_var/Sheet_cell/decl.cairo": "namespace Sheet_cell {\n from starkware.starknet.common.storage import normalize_address\n from starkware.starknet.common.syscalls import storage_read, storage_write\n from starkware.cairo.common.cairo_builtins import HashBuiltin\n from starkware.cairo.common.hash import hash2\n\n func addr{pedersen_ptr: HashBuiltin*, range_check_ptr}(id: felt) -> (res: felt) {\n let res = 0;\n call hash2;\n call normalize_address;\n }\n\n func read{syscall_ptr: felt*, pedersen_ptr: HashBuiltin*, range_check_ptr}(id: felt) -> (\n cell_data: CellData\n ) {\n let storage_addr = 0;\n call addr;\n call storage_read;\n }\n\n func write{syscall_ptr: felt*, pedersen_ptr: HashBuiltin*, range_check_ptr}(\n id: felt, value: CellData\n ) {\n let storage_addr = 0;\n call addr;\n call storage_write;\n }\n}", - "autogen/starknet/storage_var/Sheet_cell/impl.cairo": "namespace Sheet_cell {\n from starkware.starknet.common.storage import normalize_address\n from starkware.starknet.common.syscalls import storage_read, storage_write\n from starkware.cairo.common.cairo_builtins import HashBuiltin\n from starkware.cairo.common.hash import hash2\n\n func addr{pedersen_ptr: HashBuiltin*, range_check_ptr}(id: felt) -> (res: felt) {\n let res = 531485239653522858590374929777261088186370096163524664202939382659265864159;\n let (res) = hash2{hash_ptr=pedersen_ptr}(res, cast(&id, felt*)[0]);\n let (res) = normalize_address(addr=res);\n return (res=res);\n }\n\n func read{syscall_ptr: felt*, pedersen_ptr: HashBuiltin*, range_check_ptr}(id: felt) -> (\n cell_data: CellData\n ) {\n let (storage_addr) = addr(id);\n let (__storage_var_temp0) = storage_read(address=storage_addr + 0);\n let (__storage_var_temp1) = storage_read(address=storage_addr + 1);\n let (__storage_var_temp2) = storage_read(address=storage_addr + 2);\n\n tempvar syscall_ptr = syscall_ptr;\n tempvar pedersen_ptr = pedersen_ptr;\n tempvar range_check_ptr = range_check_ptr;\n tempvar __storage_var_temp0: felt = __storage_var_temp0;\n tempvar __storage_var_temp1: felt = __storage_var_temp1;\n tempvar __storage_var_temp2: felt = __storage_var_temp2;\n return ([cast(&__storage_var_temp0, CellData*)],);\n }\n\n func write{syscall_ptr: felt*, pedersen_ptr: HashBuiltin*, range_check_ptr}(\n id: felt, value: CellData\n ) {\n let (storage_addr) = addr(id);\n storage_write(address=storage_addr + 0, value=[cast(&value, felt) + 0]);\n storage_write(address=storage_addr + 1, value=[cast(&value, felt) + 1]);\n storage_write(address=storage_addr + 2, value=[cast(&value, felt) + 2]);\n return ();\n }\n}", - "autogen/starknet/storage_var/Sheet_cell_calldata/decl.cairo": "namespace Sheet_cell_calldata {\n from starkware.starknet.common.storage import normalize_address\n from starkware.starknet.common.syscalls import storage_read, storage_write\n from starkware.cairo.common.cairo_builtins import HashBuiltin\n from starkware.cairo.common.hash import hash2\n\n func addr{pedersen_ptr: HashBuiltin*, range_check_ptr}(id: felt, index: felt) -> (res: felt) {\n let res = 0;\n call hash2;\n call normalize_address;\n }\n\n func read{syscall_ptr: felt*, pedersen_ptr: HashBuiltin*, range_check_ptr}(\n id: felt, index: felt\n ) -> (value: felt) {\n let storage_addr = 0;\n call addr;\n call storage_read;\n }\n\n func write{syscall_ptr: felt*, pedersen_ptr: HashBuiltin*, range_check_ptr}(\n id: felt, index: felt, value: felt\n ) {\n let storage_addr = 0;\n call addr;\n call storage_write;\n }\n}", - "autogen/starknet/storage_var/Sheet_cell_calldata/impl.cairo": "namespace Sheet_cell_calldata {\n from starkware.starknet.common.storage import normalize_address\n from starkware.starknet.common.syscalls import storage_read, storage_write\n from starkware.cairo.common.cairo_builtins import HashBuiltin\n from starkware.cairo.common.hash import hash2\n\n func addr{pedersen_ptr: HashBuiltin*, range_check_ptr}(id: felt, index: felt) -> (res: felt) {\n let res = 1538968984242064233142751984656641889085841840397100448476378201159432133852;\n let (res) = hash2{hash_ptr=pedersen_ptr}(res, cast(&id, felt*)[0]);\n let (res) = hash2{hash_ptr=pedersen_ptr}(res, cast(&index, felt*)[0]);\n let (res) = normalize_address(addr=res);\n return (res=res);\n }\n\n func read{syscall_ptr: felt*, pedersen_ptr: HashBuiltin*, range_check_ptr}(\n id: felt, index: felt\n ) -> (value: felt) {\n let (storage_addr) = addr(id, index);\n let (__storage_var_temp0) = storage_read(address=storage_addr + 0);\n\n tempvar syscall_ptr = syscall_ptr;\n tempvar pedersen_ptr = pedersen_ptr;\n tempvar range_check_ptr = range_check_ptr;\n tempvar __storage_var_temp0: felt = __storage_var_temp0;\n return ([cast(&__storage_var_temp0, felt*)],);\n }\n\n func write{syscall_ptr: felt*, pedersen_ptr: HashBuiltin*, range_check_ptr}(\n id: felt, index: felt, value: felt\n ) {\n let (storage_addr) = addr(id, index);\n storage_write(address=storage_addr + 0, value=[cast(&value, felt) + 0]);\n return ();\n }\n}", - "autogen/starknet/storage_var/Sheet_cell_renderer/decl.cairo": "namespace Sheet_cell_renderer {\n from starkware.starknet.common.storage import normalize_address\n from starkware.starknet.common.syscalls import storage_read, storage_write\n from starkware.cairo.common.cairo_builtins import HashBuiltin\n from starkware.cairo.common.hash import hash2\n\n func addr{pedersen_ptr: HashBuiltin*, range_check_ptr}() -> (res: felt) {\n let res = 0;\n call hash2;\n call normalize_address;\n }\n\n func read{syscall_ptr: felt*, pedersen_ptr: HashBuiltin*, range_check_ptr}() -> (\n address: felt\n ) {\n let storage_addr = 0;\n call addr;\n call storage_read;\n }\n\n func write{syscall_ptr: felt*, pedersen_ptr: HashBuiltin*, range_check_ptr}(value: felt) {\n let storage_addr = 0;\n call addr;\n call storage_write;\n }\n}", - "autogen/starknet/storage_var/Sheet_cell_renderer/impl.cairo": "namespace Sheet_cell_renderer {\n from starkware.starknet.common.storage import normalize_address\n from starkware.starknet.common.syscalls import storage_read, storage_write\n from starkware.cairo.common.cairo_builtins import HashBuiltin\n from starkware.cairo.common.hash import hash2\n\n func addr{pedersen_ptr: HashBuiltin*, range_check_ptr}() -> (res: felt) {\n let res = 1744932361213995496184783512748924600834631307981846227036945661186302785888;\n return (res=res);\n }\n\n func read{syscall_ptr: felt*, pedersen_ptr: HashBuiltin*, range_check_ptr}() -> (\n address: felt\n ) {\n let (storage_addr) = addr();\n let (__storage_var_temp0) = storage_read(address=storage_addr + 0);\n\n tempvar syscall_ptr = syscall_ptr;\n tempvar pedersen_ptr = pedersen_ptr;\n tempvar range_check_ptr = range_check_ptr;\n tempvar __storage_var_temp0: felt = __storage_var_temp0;\n return ([cast(&__storage_var_temp0, felt*)],);\n }\n\n func write{syscall_ptr: felt*, pedersen_ptr: HashBuiltin*, range_check_ptr}(value: felt) {\n let (storage_addr) = addr();\n storage_write(address=storage_addr + 0, value=[cast(&value, felt) + 0]);\n return ();\n }\n}", - "autogen/starknet/storage_var/Sheet_is_mint_open/decl.cairo": "namespace Sheet_is_mint_open {\n from starkware.starknet.common.storage import normalize_address\n from starkware.starknet.common.syscalls import storage_read, storage_write\n from starkware.cairo.common.cairo_builtins import HashBuiltin\n from starkware.cairo.common.hash import hash2\n\n func addr{pedersen_ptr: HashBuiltin*, range_check_ptr}() -> (res: felt) {\n let res = 0;\n call hash2;\n call normalize_address;\n }\n\n func read{syscall_ptr: felt*, pedersen_ptr: HashBuiltin*, range_check_ptr}() -> (res: felt) {\n let storage_addr = 0;\n call addr;\n call storage_read;\n }\n\n func write{syscall_ptr: felt*, pedersen_ptr: HashBuiltin*, range_check_ptr}(value: felt) {\n let storage_addr = 0;\n call addr;\n call storage_write;\n }\n}", - "autogen/starknet/storage_var/Sheet_is_mint_open/impl.cairo": "namespace Sheet_is_mint_open {\n from starkware.starknet.common.storage import normalize_address\n from starkware.starknet.common.syscalls import storage_read, storage_write\n from starkware.cairo.common.cairo_builtins import HashBuiltin\n from starkware.cairo.common.hash import hash2\n\n func addr{pedersen_ptr: HashBuiltin*, range_check_ptr}() -> (res: felt) {\n let res = 1443954384954672340063016508770740888865139325238685197512734853477845003052;\n return (res=res);\n }\n\n func read{syscall_ptr: felt*, pedersen_ptr: HashBuiltin*, range_check_ptr}() -> (res: felt) {\n let (storage_addr) = addr();\n let (__storage_var_temp0) = storage_read(address=storage_addr + 0);\n\n tempvar syscall_ptr = syscall_ptr;\n tempvar pedersen_ptr = pedersen_ptr;\n tempvar range_check_ptr = range_check_ptr;\n tempvar __storage_var_temp0: felt = __storage_var_temp0;\n return ([cast(&__storage_var_temp0, felt*)],);\n }\n\n func write{syscall_ptr: felt*, pedersen_ptr: HashBuiltin*, range_check_ptr}(value: felt) {\n let (storage_addr) = addr();\n storage_write(address=storage_addr + 0, value=[cast(&value, felt) + 0]);\n return ();\n }\n}", - "autogen/starknet/storage_var/Sheet_max_per_wallet/decl.cairo": "namespace Sheet_max_per_wallet {\n from starkware.starknet.common.storage import normalize_address\n from starkware.starknet.common.syscalls import storage_read, storage_write\n from starkware.cairo.common.cairo_builtins import HashBuiltin\n from starkware.cairo.common.hash import hash2\n\n func addr{pedersen_ptr: HashBuiltin*, range_check_ptr}() -> (res: felt) {\n let res = 0;\n call hash2;\n call normalize_address;\n }\n\n func read{syscall_ptr: felt*, pedersen_ptr: HashBuiltin*, range_check_ptr}() -> (max: felt) {\n let storage_addr = 0;\n call addr;\n call storage_read;\n }\n\n func write{syscall_ptr: felt*, pedersen_ptr: HashBuiltin*, range_check_ptr}(value: felt) {\n let storage_addr = 0;\n call addr;\n call storage_write;\n }\n}", - "autogen/starknet/storage_var/Sheet_max_per_wallet/impl.cairo": "namespace Sheet_max_per_wallet {\n from starkware.starknet.common.storage import normalize_address\n from starkware.starknet.common.syscalls import storage_read, storage_write\n from starkware.cairo.common.cairo_builtins import HashBuiltin\n from starkware.cairo.common.hash import hash2\n\n func addr{pedersen_ptr: HashBuiltin*, range_check_ptr}() -> (res: felt) {\n let res = 1524004894486671999300417239700726541524143124141885038369930069964419646199;\n return (res=res);\n }\n\n func read{syscall_ptr: felt*, pedersen_ptr: HashBuiltin*, range_check_ptr}() -> (max: felt) {\n let (storage_addr) = addr();\n let (__storage_var_temp0) = storage_read(address=storage_addr + 0);\n\n tempvar syscall_ptr = syscall_ptr;\n tempvar pedersen_ptr = pedersen_ptr;\n tempvar range_check_ptr = range_check_ptr;\n tempvar __storage_var_temp0: felt = __storage_var_temp0;\n return ([cast(&__storage_var_temp0, felt*)],);\n }\n\n func write{syscall_ptr: felt*, pedersen_ptr: HashBuiltin*, range_check_ptr}(value: felt) {\n let (storage_addr) = addr();\n storage_write(address=storage_addr + 0, value=[cast(&value, felt) + 0]);\n return ();\n }\n}", - "autogen/starknet/storage_var/Sheet_merkle_root/decl.cairo": "namespace Sheet_merkle_root {\n from starkware.starknet.common.storage import normalize_address\n from starkware.starknet.common.syscalls import storage_read, storage_write\n from starkware.cairo.common.cairo_builtins import HashBuiltin\n from starkware.cairo.common.hash import hash2\n\n func addr{pedersen_ptr: HashBuiltin*, range_check_ptr}() -> (res: felt) {\n let res = 0;\n call hash2;\n call normalize_address;\n }\n\n func read{syscall_ptr: felt*, pedersen_ptr: HashBuiltin*, range_check_ptr}() -> (root: felt) {\n let storage_addr = 0;\n call addr;\n call storage_read;\n }\n\n func write{syscall_ptr: felt*, pedersen_ptr: HashBuiltin*, range_check_ptr}(value: felt) {\n let storage_addr = 0;\n call addr;\n call storage_write;\n }\n}", - "autogen/starknet/storage_var/Sheet_merkle_root/impl.cairo": "namespace Sheet_merkle_root {\n from starkware.starknet.common.storage import normalize_address\n from starkware.starknet.common.syscalls import storage_read, storage_write\n from starkware.cairo.common.cairo_builtins import HashBuiltin\n from starkware.cairo.common.hash import hash2\n\n func addr{pedersen_ptr: HashBuiltin*, range_check_ptr}() -> (res: felt) {\n let res = 121535090929030722653266216788291698371285888970737918297740923934734904263;\n return (res=res);\n }\n\n func read{syscall_ptr: felt*, pedersen_ptr: HashBuiltin*, range_check_ptr}() -> (root: felt) {\n let (storage_addr) = addr();\n let (__storage_var_temp0) = storage_read(address=storage_addr + 0);\n\n tempvar syscall_ptr = syscall_ptr;\n tempvar pedersen_ptr = pedersen_ptr;\n tempvar range_check_ptr = range_check_ptr;\n tempvar __storage_var_temp0: felt = __storage_var_temp0;\n return ([cast(&__storage_var_temp0, felt*)],);\n }\n\n func write{syscall_ptr: felt*, pedersen_ptr: HashBuiltin*, range_check_ptr}(value: felt) {\n let (storage_addr) = addr();\n storage_write(address=storage_addr + 0, value=[cast(&value, felt) + 0]);\n return ();\n }\n}", - "autogen/starknet/storage_var/_n_row/decl.cairo": "namespace _n_row {\n from starkware.starknet.common.storage import normalize_address\n from starkware.starknet.common.syscalls import storage_read, storage_write\n from starkware.cairo.common.cairo_builtins import HashBuiltin\n from starkware.cairo.common.hash import hash2\n\n func addr{pedersen_ptr: HashBuiltin*, range_check_ptr}() -> (res: felt) {\n let res = 0;\n call hash2;\n call normalize_address;\n }\n\n func read{syscall_ptr: felt*, pedersen_ptr: HashBuiltin*, range_check_ptr}() -> (n_row: felt) {\n let storage_addr = 0;\n call addr;\n call storage_read;\n }\n\n func write{syscall_ptr: felt*, pedersen_ptr: HashBuiltin*, range_check_ptr}(value: felt) {\n let storage_addr = 0;\n call addr;\n call storage_write;\n }\n}", - "autogen/starknet/storage_var/_n_row/impl.cairo": "namespace _n_row {\n from starkware.starknet.common.storage import normalize_address\n from starkware.starknet.common.syscalls import storage_read, storage_write\n from starkware.cairo.common.cairo_builtins import HashBuiltin\n from starkware.cairo.common.hash import hash2\n\n func addr{pedersen_ptr: HashBuiltin*, range_check_ptr}() -> (res: felt) {\n let res = 1785496281015494153207894051784513323908038005600239446184254367578055461006;\n return (res=res);\n }\n\n func read{syscall_ptr: felt*, pedersen_ptr: HashBuiltin*, range_check_ptr}() -> (n_row: felt) {\n let (storage_addr) = addr();\n let (__storage_var_temp0) = storage_read(address=storage_addr + 0);\n\n tempvar syscall_ptr = syscall_ptr;\n tempvar pedersen_ptr = pedersen_ptr;\n tempvar range_check_ptr = range_check_ptr;\n tempvar __storage_var_temp0: felt = __storage_var_temp0;\n return ([cast(&__storage_var_temp0, felt*)],);\n }\n\n func write{syscall_ptr: felt*, pedersen_ptr: HashBuiltin*, range_check_ptr}(value: felt) {\n let (storage_addr) = addr();\n storage_write(address=storage_addr + 0, value=[cast(&value, felt) + 0]);\n return ();\n }\n}", - "autogen/starknet/storage_var/initialized/decl.cairo": "namespace initialized {\n from starkware.starknet.common.storage import normalize_address\n from starkware.starknet.common.syscalls import storage_read, storage_write\n from starkware.cairo.common.cairo_builtins import HashBuiltin\n from starkware.cairo.common.hash import hash2\n\n func addr{pedersen_ptr: HashBuiltin*, range_check_ptr}() -> (res: felt) {\n let res = 0;\n call hash2;\n call normalize_address;\n }\n\n func read{syscall_ptr: felt*, pedersen_ptr: HashBuiltin*, range_check_ptr}() -> (res: felt) {\n let storage_addr = 0;\n call addr;\n call storage_read;\n }\n\n func write{syscall_ptr: felt*, pedersen_ptr: HashBuiltin*, range_check_ptr}(value: felt) {\n let storage_addr = 0;\n call addr;\n call storage_write;\n }\n}", - "autogen/starknet/storage_var/initialized/impl.cairo": "namespace initialized {\n from starkware.starknet.common.storage import normalize_address\n from starkware.starknet.common.syscalls import storage_read, storage_write\n from starkware.cairo.common.cairo_builtins import HashBuiltin\n from starkware.cairo.common.hash import hash2\n\n func addr{pedersen_ptr: HashBuiltin*, range_check_ptr}() -> (res: felt) {\n let res = 1697461057326310581967816530165551571743938660869987744467005324703617544296;\n return (res=res);\n }\n\n func read{syscall_ptr: felt*, pedersen_ptr: HashBuiltin*, range_check_ptr}() -> (res: felt) {\n let (storage_addr) = addr();\n let (__storage_var_temp0) = storage_read(address=storage_addr + 0);\n\n tempvar syscall_ptr = syscall_ptr;\n tempvar pedersen_ptr = pedersen_ptr;\n tempvar range_check_ptr = range_check_ptr;\n tempvar __storage_var_temp0: felt = __storage_var_temp0;\n return ([cast(&__storage_var_temp0, felt*)],);\n }\n\n func write{syscall_ptr: felt*, pedersen_ptr: HashBuiltin*, range_check_ptr}(value: felt) {\n let (storage_addr) = addr();\n storage_write(address=storage_addr + 0, value=[cast(&value, felt) + 0]);\n return ();\n }\n}" - }, - "instruction_locations": { - "0": { - "accessible_scopes": [ - "starkware.cairo.common.alloc", - "starkware.cairo.common.alloc.alloc" - ], - "flow_tracking_data": null, - "hints": [ - { - "location": { - "end_col": 38, - "end_line": 3, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/alloc.cairo" - }, - "start_col": 5, - "start_line": 3 - }, - "n_prefix_newlines": 0 - } - ], - "inst": { - "end_col": 12, - "end_line": 4, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/alloc.cairo" - }, - "start_col": 5, - "start_line": 4 - } - }, - "2": { - "accessible_scopes": [ - "starkware.cairo.common.alloc", - "starkware.cairo.common.alloc.alloc" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 40, - "end_line": 5, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/alloc.cairo" - }, - "start_col": 5, - "start_line": 5 - } - }, - "3": { - "accessible_scopes": [ - "starkware.cairo.common.hash", - "starkware.cairo.common.hash.hash2" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 19, - "end_line": 14, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/hash.cairo" - }, - "start_col": 5, - "start_line": 14 - } - }, - "4": { - "accessible_scopes": [ - "starkware.cairo.common.hash", - "starkware.cairo.common.hash.hash2" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 19, - "end_line": 15, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/hash.cairo" - }, - "start_col": 5, - "start_line": 15 - } - }, - "5": { - "accessible_scopes": [ - "starkware.cairo.common.hash", - "starkware.cairo.common.hash.hash2" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 47, - "end_line": 17, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/hash.cairo" - }, - "parent_location": [ - { - "end_col": 34, - "end_line": 13, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/hash.cairo" - }, - "parent_location": [ - { - "end_col": 28, - "end_line": 18, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/hash.cairo" - }, - "start_col": 5, - "start_line": 18 - }, - "While trying to retrieve the implicit argument 'hash_ptr' in:" - ], - "start_col": 12, - "start_line": 13 - }, - "While expanding the reference 'hash_ptr' in:" - ], - "start_col": 20, - "start_line": 17 - } - }, - "7": { - "accessible_scopes": [ - "starkware.cairo.common.hash", - "starkware.cairo.common.hash.hash2" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 33, - "end_line": 16, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/hash.cairo" - }, - "parent_location": [ - { - "end_col": 26, - "end_line": 18, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/hash.cairo" - }, - "start_col": 20, - "start_line": 18 - }, - "While expanding the reference 'result' in:" - ], - "start_col": 18, - "start_line": 16 - } - }, - "8": { - "accessible_scopes": [ - "starkware.cairo.common.hash", - "starkware.cairo.common.hash.hash2" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 28, - "end_line": 18, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/hash.cairo" - }, - "start_col": 5, - "start_line": 18 - } - }, - "9": { - "accessible_scopes": [ - "starkware.cairo.common.memcpy", - "starkware.cairo.common.memcpy.memcpy" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 7, - "end_line": 8, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/memcpy.cairo" - }, - "start_col": 5, - "start_line": 8 - } - }, - "11": { - "accessible_scopes": [ - "starkware.cairo.common.memcpy", - "starkware.cairo.common.memcpy.memcpy" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 19, - "end_line": 9, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/memcpy.cairo" - }, - "start_col": 9, - "start_line": 9 - } - }, - "12": { - "accessible_scopes": [ - "starkware.cairo.common.memcpy", - "starkware.cairo.common.memcpy.memcpy" - ], - "flow_tracking_data": null, - "hints": [ - { - "location": { - "end_col": 41, - "end_line": 12, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/memcpy.cairo" - }, - "start_col": 5, - "start_line": 12 - }, - "n_prefix_newlines": 0 - } - ], - "inst": { - "end_col": 23, - "end_line": 2, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/memcpy.cairo" - }, - "parent_location": [ - { - "end_col": 38, - "end_line": 13, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/memcpy.cairo" - }, - "start_col": 35, - "start_line": 13 - }, - "While expanding the reference 'dst' in:" - ], - "start_col": 13, - "start_line": 2 - } - }, - "13": { - "accessible_scopes": [ - "starkware.cairo.common.memcpy", - "starkware.cairo.common.memcpy.memcpy" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 35, - "end_line": 2, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/memcpy.cairo" - }, - "parent_location": [ - { - "end_col": 47, - "end_line": 13, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/memcpy.cairo" - }, - "start_col": 44, - "start_line": 13 - }, - "While expanding the reference 'src' in:" - ], - "start_col": 25, - "start_line": 2 - } - }, - "14": { - "accessible_scopes": [ - "starkware.cairo.common.memcpy", - "starkware.cairo.common.memcpy.memcpy" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 37, - "end_line": 17, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/memcpy.cairo" - }, - "start_col": 26, - "start_line": 17 - } - }, - "15": { - "accessible_scopes": [ - "starkware.cairo.common.memcpy", - "starkware.cairo.common.memcpy.memcpy" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 38, - "end_line": 17, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/memcpy.cairo" - }, - "start_col": 5, - "start_line": 17 - } - }, - "16": { - "accessible_scopes": [ - "starkware.cairo.common.memcpy", - "starkware.cairo.common.memcpy.memcpy" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 41, - "end_line": 22, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/memcpy.cairo" - }, - "start_col": 5, - "start_line": 22 - } - }, - "18": { - "accessible_scopes": [ - "starkware.cairo.common.memcpy", - "starkware.cairo.common.memcpy.memcpy" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 41, - "end_line": 23, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/memcpy.cairo" - }, - "start_col": 5, - "start_line": 23 - } - }, - "20": { - "accessible_scopes": [ - "starkware.cairo.common.memcpy", - "starkware.cairo.common.memcpy.memcpy" - ], - "flow_tracking_data": null, - "hints": [ - { - "location": { - "end_col": 7, - "end_line": 27, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/memcpy.cairo" - }, - "start_col": 5, - "start_line": 24 - }, - "n_prefix_newlines": 1 - } - ], - "inst": { - "end_col": 44, - "end_line": 29, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/memcpy.cairo" - }, - "start_col": 5, - "start_line": 29 - } - }, - "22": { - "accessible_scopes": [ - "starkware.cairo.common.memcpy", - "starkware.cairo.common.memcpy.memcpy" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 55, - "end_line": 31, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/memcpy.cairo" - }, - "start_col": 5, - "start_line": 31 - } - }, - "23": { - "accessible_scopes": [ - "starkware.cairo.common.memcpy", - "starkware.cairo.common.memcpy.memcpy" - ], - "flow_tracking_data": null, - "hints": [ - { - "location": { - "end_col": 26, - "end_line": 33, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/memcpy.cairo" - }, - "start_col": 5, - "start_line": 33 - }, - "n_prefix_newlines": 0 - } - ], - "inst": { - "end_col": 15, - "end_line": 34, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/memcpy.cairo" - }, - "start_col": 5, - "start_line": 34 - } - }, - "24": { - "accessible_scopes": [ - "starkware.cairo.lang.compiler.lib.registers", - "starkware.cairo.lang.compiler.lib.registers.get_fp_and_pc" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 73, - "end_line": 7, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/lang/compiler/lib/registers.cairo" - }, - "start_col": 5, - "start_line": 7 - } - }, - "25": { - "accessible_scopes": [ - "starkware.starknet.common.syscalls", - "starkware.starknet.common.syscalls.call_contract" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 40, - "end_line": 47, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/starknet/common/syscalls.cairo" - }, - "start_col": 18, - "start_line": 47 - } - }, - "27": { - "accessible_scopes": [ - "starkware.starknet.common.syscalls", - "starkware.starknet.common.syscalls.call_contract" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 7, - "end_line": 52, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/starknet/common/syscalls.cairo" - }, - "start_col": 5, - "start_line": 46 - } - }, - "28": { - "accessible_scopes": [ - "starkware.starknet.common.syscalls", - "starkware.starknet.common.syscalls.call_contract" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 7, - "end_line": 52, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/starknet/common/syscalls.cairo" - }, - "start_col": 5, - "start_line": 46 - } - }, - "29": { - "accessible_scopes": [ - "starkware.starknet.common.syscalls", - "starkware.starknet.common.syscalls.call_contract" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 7, - "end_line": 52, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/starknet/common/syscalls.cairo" - }, - "start_col": 5, - "start_line": 46 - } - }, - "30": { - "accessible_scopes": [ - "starkware.starknet.common.syscalls", - "starkware.starknet.common.syscalls.call_contract" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 7, - "end_line": 52, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/starknet/common/syscalls.cairo" - }, - "start_col": 5, - "start_line": 46 - } - }, - "31": { - "accessible_scopes": [ - "starkware.starknet.common.syscalls", - "starkware.starknet.common.syscalls.call_contract" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 7, - "end_line": 52, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/starknet/common/syscalls.cairo" - }, - "start_col": 5, - "start_line": 46 - } - }, - "32": { - "accessible_scopes": [ - "starkware.starknet.common.syscalls", - "starkware.starknet.common.syscalls.call_contract" - ], - "flow_tracking_data": null, - "hints": [ - { - "location": { - "end_col": 88, - "end_line": 53, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/starknet/common/syscalls.cairo" - }, - "start_col": 5, - "start_line": 53 - }, - "n_prefix_newlines": 0 - } - ], - "inst": { - "end_col": 54, - "end_line": 56, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/starknet/common/syscalls.cairo" - }, - "parent_location": [ - { - "end_col": 38, - "end_line": 42, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/starknet/common/syscalls.cairo" - }, - "parent_location": [ - { - "end_col": 75, - "end_line": 57, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/starknet/common/syscalls.cairo" - }, - "start_col": 5, - "start_line": 57 - }, - "While trying to retrieve the implicit argument 'syscall_ptr' in:" - ], - "start_col": 20, - "start_line": 42 - }, - "While expanding the reference 'syscall_ptr' in:" - ], - "start_col": 23, - "start_line": 56 - } - }, - "34": { - "accessible_scopes": [ - "starkware.starknet.common.syscalls", - "starkware.starknet.common.syscalls.call_contract" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 47, - "end_line": 57, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/starknet/common/syscalls.cairo" - }, - "start_col": 26, - "start_line": 57 - } - }, - "35": { - "accessible_scopes": [ - "starkware.starknet.common.syscalls", - "starkware.starknet.common.syscalls.call_contract" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 73, - "end_line": 57, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/starknet/common/syscalls.cairo" - }, - "start_col": 57, - "start_line": 57 - } - }, - "36": { - "accessible_scopes": [ - "starkware.starknet.common.syscalls", - "starkware.starknet.common.syscalls.call_contract" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 75, - "end_line": 57, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/starknet/common/syscalls.cairo" - }, - "start_col": 5, - "start_line": 57 - } - }, - "37": { - "accessible_scopes": [ - "starkware.starknet.common.syscalls", - "starkware.starknet.common.syscalls.get_caller_address" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 90, - "end_line": 202, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/starknet/common/syscalls.cairo" - }, - "start_col": 63, - "start_line": 202 - } - }, - "39": { - "accessible_scopes": [ - "starkware.starknet.common.syscalls", - "starkware.starknet.common.syscalls.get_caller_address" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 92, - "end_line": 202, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/starknet/common/syscalls.cairo" - }, - "start_col": 5, - "start_line": 202 - } - }, - "40": { - "accessible_scopes": [ - "starkware.starknet.common.syscalls", - "starkware.starknet.common.syscalls.get_caller_address" - ], - "flow_tracking_data": null, - "hints": [ - { - "location": { - "end_col": 93, - "end_line": 203, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/starknet/common/syscalls.cairo" - }, - "start_col": 5, - "start_line": 203 - }, - "n_prefix_newlines": 0 - } - ], - "inst": { - "end_col": 58, - "end_line": 204, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/starknet/common/syscalls.cairo" - }, - "parent_location": [ - { - "end_col": 43, - "end_line": 200, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/starknet/common/syscalls.cairo" - }, - "parent_location": [ - { - "end_col": 61, - "end_line": 205, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/starknet/common/syscalls.cairo" - }, - "start_col": 5, - "start_line": 205 - }, - "While trying to retrieve the implicit argument 'syscall_ptr' in:" - ], - "start_col": 25, - "start_line": 200 - }, - "While expanding the reference 'syscall_ptr' in:" - ], - "start_col": 23, - "start_line": 204 - } - }, - "42": { - "accessible_scopes": [ - "starkware.starknet.common.syscalls", - "starkware.starknet.common.syscalls.get_caller_address" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 59, - "end_line": 205, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/starknet/common/syscalls.cairo" - }, - "start_col": 28, - "start_line": 205 - } - }, - "43": { - "accessible_scopes": [ - "starkware.starknet.common.syscalls", - "starkware.starknet.common.syscalls.get_caller_address" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 61, - "end_line": 205, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/starknet/common/syscalls.cairo" - }, - "start_col": 5, - "start_line": 205 - } - }, - "44": { - "accessible_scopes": [ - "starkware.starknet.common.syscalls", - "starkware.starknet.common.syscalls.storage_read" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 79, - "end_line": 354, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/starknet/common/syscalls.cairo" - }, - "start_col": 58, - "start_line": 354 - } - }, - "46": { - "accessible_scopes": [ - "starkware.starknet.common.syscalls", - "starkware.starknet.common.syscalls.storage_read" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 98, - "end_line": 354, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/starknet/common/syscalls.cairo" - }, - "start_col": 5, - "start_line": 354 - } - }, - "47": { - "accessible_scopes": [ - "starkware.starknet.common.syscalls", - "starkware.starknet.common.syscalls.storage_read" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 98, - "end_line": 354, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/starknet/common/syscalls.cairo" - }, - "start_col": 5, - "start_line": 354 - } - }, - "48": { - "accessible_scopes": [ - "starkware.starknet.common.syscalls", - "starkware.starknet.common.syscalls.storage_read" - ], - "flow_tracking_data": null, - "hints": [ - { - "location": { - "end_col": 87, - "end_line": 355, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/starknet/common/syscalls.cairo" - }, - "start_col": 5, - "start_line": 355 - }, - "n_prefix_newlines": 0 - } - ], - "inst": { - "end_col": 53, - "end_line": 357, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/starknet/common/syscalls.cairo" - }, - "parent_location": [ - { - "end_col": 37, - "end_line": 352, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/starknet/common/syscalls.cairo" - }, - "parent_location": [ - { - "end_col": 35, - "end_line": 358, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/starknet/common/syscalls.cairo" - }, - "start_col": 5, - "start_line": 358 - }, - "While trying to retrieve the implicit argument 'syscall_ptr' in:" - ], - "start_col": 19, - "start_line": 352 - }, - "While expanding the reference 'syscall_ptr' in:" - ], - "start_col": 23, - "start_line": 357 - } - }, - "50": { - "accessible_scopes": [ - "starkware.starknet.common.syscalls", - "starkware.starknet.common.syscalls.storage_read" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 33, - "end_line": 358, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/starknet/common/syscalls.cairo" - }, - "start_col": 19, - "start_line": 358 - } - }, - "51": { - "accessible_scopes": [ - "starkware.starknet.common.syscalls", - "starkware.starknet.common.syscalls.storage_read" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 35, - "end_line": 358, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/starknet/common/syscalls.cairo" - }, - "start_col": 5, - "start_line": 358 - } - }, - "52": { - "accessible_scopes": [ - "starkware.starknet.common.syscalls", - "starkware.starknet.common.syscalls.storage_write" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 40, - "end_line": 372, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/starknet/common/syscalls.cairo" - }, - "start_col": 18, - "start_line": 372 - } - }, - "54": { - "accessible_scopes": [ - "starkware.starknet.common.syscalls", - "starkware.starknet.common.syscalls.storage_write" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 7, - "end_line": 373, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/starknet/common/syscalls.cairo" - }, - "start_col": 5, - "start_line": 371 - } - }, - "55": { - "accessible_scopes": [ - "starkware.starknet.common.syscalls", - "starkware.starknet.common.syscalls.storage_write" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 7, - "end_line": 373, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/starknet/common/syscalls.cairo" - }, - "start_col": 5, - "start_line": 371 - } - }, - "56": { - "accessible_scopes": [ - "starkware.starknet.common.syscalls", - "starkware.starknet.common.syscalls.storage_write" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 7, - "end_line": 373, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/starknet/common/syscalls.cairo" - }, - "start_col": 5, - "start_line": 371 - } - }, - "57": { - "accessible_scopes": [ - "starkware.starknet.common.syscalls", - "starkware.starknet.common.syscalls.storage_write" - ], - "flow_tracking_data": null, - "hints": [ - { - "location": { - "end_col": 88, - "end_line": 374, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/starknet/common/syscalls.cairo" - }, - "start_col": 5, - "start_line": 374 - }, - "n_prefix_newlines": 0 - } - ], - "inst": { - "end_col": 54, - "end_line": 375, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/starknet/common/syscalls.cairo" - }, - "parent_location": [ - { - "end_col": 38, - "end_line": 370, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/starknet/common/syscalls.cairo" - }, - "parent_location": [ - { - "end_col": 15, - "end_line": 376, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/starknet/common/syscalls.cairo" - }, - "start_col": 5, - "start_line": 376 - }, - "While trying to retrieve the implicit argument 'syscall_ptr' in:" - ], - "start_col": 20, - "start_line": 370 - }, - "While expanding the reference 'syscall_ptr' in:" - ], - "start_col": 23, - "start_line": 375 - } - }, - "59": { - "accessible_scopes": [ - "starkware.starknet.common.syscalls", - "starkware.starknet.common.syscalls.storage_write" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 15, - "end_line": 376, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/starknet/common/syscalls.cairo" - }, - "start_col": 5, - "start_line": 376 - } - }, - "60": { - "accessible_scopes": [ - "starkware.starknet.common.syscalls", - "starkware.starknet.common.syscalls.emit_event" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 37, - "end_line": 392, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/starknet/common/syscalls.cairo" - }, - "start_col": 18, - "start_line": 392 - } - }, - "62": { - "accessible_scopes": [ - "starkware.starknet.common.syscalls", - "starkware.starknet.common.syscalls.emit_event" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 7, - "end_line": 393, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/starknet/common/syscalls.cairo" - }, - "start_col": 5, - "start_line": 391 - } - }, - "63": { - "accessible_scopes": [ - "starkware.starknet.common.syscalls", - "starkware.starknet.common.syscalls.emit_event" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 7, - "end_line": 393, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/starknet/common/syscalls.cairo" - }, - "start_col": 5, - "start_line": 391 - } - }, - "64": { - "accessible_scopes": [ - "starkware.starknet.common.syscalls", - "starkware.starknet.common.syscalls.emit_event" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 7, - "end_line": 393, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/starknet/common/syscalls.cairo" - }, - "start_col": 5, - "start_line": 391 - } - }, - "65": { - "accessible_scopes": [ - "starkware.starknet.common.syscalls", - "starkware.starknet.common.syscalls.emit_event" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 7, - "end_line": 393, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/starknet/common/syscalls.cairo" - }, - "start_col": 5, - "start_line": 391 - } - }, - "66": { - "accessible_scopes": [ - "starkware.starknet.common.syscalls", - "starkware.starknet.common.syscalls.emit_event" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 7, - "end_line": 393, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/starknet/common/syscalls.cairo" - }, - "start_col": 5, - "start_line": 391 - } - }, - "67": { - "accessible_scopes": [ - "starkware.starknet.common.syscalls", - "starkware.starknet.common.syscalls.emit_event" - ], - "flow_tracking_data": null, - "hints": [ - { - "location": { - "end_col": 85, - "end_line": 394, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/starknet/common/syscalls.cairo" - }, - "start_col": 5, - "start_line": 394 - }, - "n_prefix_newlines": 0 - } - ], - "inst": { - "end_col": 51, - "end_line": 395, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/starknet/common/syscalls.cairo" - }, - "parent_location": [ - { - "end_col": 35, - "end_line": 390, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/starknet/common/syscalls.cairo" - }, - "parent_location": [ - { - "end_col": 15, - "end_line": 396, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/starknet/common/syscalls.cairo" - }, - "start_col": 5, - "start_line": 396 - }, - "While trying to retrieve the implicit argument 'syscall_ptr' in:" - ], - "start_col": 17, - "start_line": 390 - }, - "While expanding the reference 'syscall_ptr' in:" - ], - "start_col": 23, - "start_line": 395 - } - }, - "69": { - "accessible_scopes": [ - "starkware.starknet.common.syscalls", - "starkware.starknet.common.syscalls.emit_event" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 15, - "end_line": 396, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/starknet/common/syscalls.cairo" - }, - "start_col": 5, - "start_line": 396 - } - }, - "70": { - "accessible_scopes": [ - "starkware.cairo.common.math", - "starkware.cairo.common.math.assert_not_zero" - ], - "flow_tracking_data": null, - "hints": [ - { - "location": { - "end_col": 7, - "end_line": 11, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/math.cairo" - }, - "start_col": 5, - "start_line": 7 - }, - "n_prefix_newlines": 1 - } - ], - "inst": { - "end_col": 7, - "end_line": 12, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/math.cairo" - }, - "start_col": 5, - "start_line": 12 - } - }, - "72": { - "accessible_scopes": [ - "starkware.cairo.common.math", - "starkware.cairo.common.math.assert_not_zero" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 18, - "end_line": 14, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/math.cairo" - }, - "start_col": 9, - "start_line": 14 - } - }, - "74": { - "accessible_scopes": [ - "starkware.cairo.common.math", - "starkware.cairo.common.math.assert_not_zero" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 15, - "end_line": 17, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/math.cairo" - }, - "start_col": 5, - "start_line": 17 - } - }, - "75": { - "accessible_scopes": [ - "starkware.cairo.common.math", - "starkware.cairo.common.math.assert_not_equal" - ], - "flow_tracking_data": null, - "hints": [ - { - "location": { - "end_col": 7, - "end_line": 31, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/math.cairo" - }, - "start_col": 5, - "start_line": 22 - }, - "n_prefix_newlines": 1 - } - ], - "inst": { - "end_col": 15, - "end_line": 32, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/math.cairo" - }, - "start_col": 9, - "start_line": 32 - } - }, - "76": { - "accessible_scopes": [ - "starkware.cairo.common.math", - "starkware.cairo.common.math.assert_not_equal" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 7, - "end_line": 32, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/math.cairo" - }, - "start_col": 5, - "start_line": 32 - } - }, - "78": { - "accessible_scopes": [ - "starkware.cairo.common.math", - "starkware.cairo.common.math.assert_not_equal" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 18, - "end_line": 34, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/math.cairo" - }, - "start_col": 9, - "start_line": 34 - } - }, - "80": { - "accessible_scopes": [ - "starkware.cairo.common.math", - "starkware.cairo.common.math.assert_not_equal" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 15, - "end_line": 37, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/math.cairo" - }, - "start_col": 5, - "start_line": 37 - } - }, - "81": { - "accessible_scopes": [ - "starkware.cairo.common.math", - "starkware.cairo.common.math.assert_nn" - ], - "flow_tracking_data": null, - "hints": [ - { - "location": { - "end_col": 7, - "end_line": 46, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/math.cairo" - }, - "start_col": 5, - "start_line": 42 - }, - "n_prefix_newlines": 1 - } - ], - "inst": { - "end_col": 26, - "end_line": 47, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/math.cairo" - }, - "start_col": 5, - "start_line": 47 - } - }, - "82": { - "accessible_scopes": [ - "starkware.cairo.common.math", - "starkware.cairo.common.math.assert_nn" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 46, - "end_line": 48, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/math.cairo" - }, - "parent_location": [ - { - "end_col": 31, - "end_line": 41, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/math.cairo" - }, - "parent_location": [ - { - "end_col": 15, - "end_line": 49, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/math.cairo" - }, - "start_col": 5, - "start_line": 49 - }, - "While trying to retrieve the implicit argument 'range_check_ptr' in:" - ], - "start_col": 16, - "start_line": 41 - }, - "While expanding the reference 'range_check_ptr' in:" - ], - "start_col": 27, - "start_line": 48 - } - }, - "84": { - "accessible_scopes": [ - "starkware.cairo.common.math", - "starkware.cairo.common.math.assert_nn" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 15, - "end_line": 49, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/math.cairo" - }, - "start_col": 5, - "start_line": 49 - } - }, - "85": { - "accessible_scopes": [ - "starkware.cairo.common.math", - "starkware.cairo.common.math.assert_le" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 31, - "end_line": 53, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/math.cairo" - }, - "parent_location": [ - { - "end_col": 31, - "end_line": 41, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/math.cairo" - }, - "parent_location": [ - { - "end_col": 21, - "end_line": 54, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/math.cairo" - }, - "start_col": 5, - "start_line": 54 - }, - "While trying to retrieve the implicit argument 'range_check_ptr' in:" - ], - "start_col": 16, - "start_line": 41 - }, - "While expanding the reference 'range_check_ptr' in:" - ], - "start_col": 16, - "start_line": 53 - } - }, - "86": { - "accessible_scopes": [ - "starkware.cairo.common.math", - "starkware.cairo.common.math.assert_le" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 20, - "end_line": 54, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/math.cairo" - }, - "start_col": 15, - "start_line": 54 - } - }, - "87": { - "accessible_scopes": [ - "starkware.cairo.common.math", - "starkware.cairo.common.math.assert_le" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 21, - "end_line": 54, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/math.cairo" - }, - "start_col": 5, - "start_line": 54 - } - }, - "89": { - "accessible_scopes": [ - "starkware.cairo.common.math", - "starkware.cairo.common.math.assert_le" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 15, - "end_line": 55, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/math.cairo" - }, - "start_col": 5, - "start_line": 55 - } - }, - "90": { - "accessible_scopes": [ - "starkware.cairo.common.math", - "starkware.cairo.common.math.assert_250_bit" - ], - "flow_tracking_data": null, - "hints": [ - { - "location": { - "end_col": 7, - "end_line": 106, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/math.cairo" - }, - "start_col": 5, - "start_line": 97 - }, - "n_prefix_newlines": 1 - } - ], - "inst": { - "end_col": 50, - "end_line": 108, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/math.cairo" - }, - "start_col": 36, - "start_line": 108 - } - }, - "92": { - "accessible_scopes": [ - "starkware.cairo.common.math", - "starkware.cairo.common.math.assert_250_bit" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 37, - "end_line": 95, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/math.cairo" - }, - "parent_location": [ - { - "end_col": 57, - "end_line": 108, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/math.cairo" - }, - "start_col": 53, - "start_line": 108 - }, - "While expanding the reference 'high' in:" - ], - "start_col": 16, - "start_line": 95 - } - }, - "93": { - "accessible_scopes": [ - "starkware.cairo.common.math", - "starkware.cairo.common.math.assert_250_bit" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 57, - "end_line": 108, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/math.cairo" - }, - "start_col": 36, - "start_line": 108 - } - }, - "94": { - "accessible_scopes": [ - "starkware.cairo.common.math", - "starkware.cairo.common.math.assert_250_bit" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 58, - "end_line": 108, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/math.cairo" - }, - "start_col": 5, - "start_line": 108 - } - }, - "95": { - "accessible_scopes": [ - "starkware.cairo.common.math", - "starkware.cairo.common.math.assert_250_bit" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 37, - "end_line": 95, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/math.cairo" - }, - "parent_location": [ - { - "end_col": 24, - "end_line": 113, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/math.cairo" - }, - "start_col": 20, - "start_line": 113 - }, - "While expanding the reference 'high' in:" - ], - "start_col": 16, - "start_line": 95 - } - }, - "96": { - "accessible_scopes": [ - "starkware.cairo.common.math", - "starkware.cairo.common.math.assert_250_bit" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 32, - "end_line": 113, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/math.cairo" - }, - "start_col": 20, - "start_line": 113 - } - }, - "98": { - "accessible_scopes": [ - "starkware.cairo.common.math", - "starkware.cairo.common.math.assert_250_bit" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 32, - "end_line": 94, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/math.cairo" - }, - "parent_location": [ - { - "end_col": 38, - "end_line": 113, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/math.cairo" - }, - "start_col": 35, - "start_line": 113 - }, - "While expanding the reference 'low' in:" - ], - "start_col": 15, - "start_line": 94 - } - }, - "99": { - "accessible_scopes": [ - "starkware.cairo.common.math", - "starkware.cairo.common.math.assert_250_bit" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 39, - "end_line": 113, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/math.cairo" - }, - "start_col": 5, - "start_line": 113 - } - }, - "100": { - "accessible_scopes": [ - "starkware.cairo.common.math", - "starkware.cairo.common.math.assert_250_bit" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 46, - "end_line": 115, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/math.cairo" - }, - "parent_location": [ - { - "end_col": 36, - "end_line": 89, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/math.cairo" - }, - "parent_location": [ - { - "end_col": 15, - "end_line": 116, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/math.cairo" - }, - "start_col": 5, - "start_line": 116 - }, - "While trying to retrieve the implicit argument 'range_check_ptr' in:" - ], - "start_col": 21, - "start_line": 89 - }, - "While expanding the reference 'range_check_ptr' in:" - ], - "start_col": 27, - "start_line": 115 - } - }, - "102": { - "accessible_scopes": [ - "starkware.cairo.common.math", - "starkware.cairo.common.math.assert_250_bit" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 15, - "end_line": 116, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/math.cairo" - }, - "start_col": 5, - "start_line": 116 - } - }, - "103": { - "accessible_scopes": [ - "starkware.cairo.common.math", - "starkware.cairo.common.math.assert_le_felt" - ], - "flow_tracking_data": null, - "hints": [ - { - "location": { - "end_col": 7, - "end_line": 184, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/math.cairo" - }, - "start_col": 5, - "start_line": 164 - }, - "n_prefix_newlines": 1 - } - ], - "inst": { - "end_col": 42, - "end_line": 186, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/math.cairo" - }, - "start_col": 25, - "start_line": 186 - } - }, - "104": { - "accessible_scopes": [ - "starkware.cairo.common.math", - "starkware.cairo.common.math.assert_le_felt" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 66, - "end_line": 186, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/math.cairo" - }, - "start_col": 45, - "start_line": 186 - } - }, - "105": { - "accessible_scopes": [ - "starkware.cairo.common.math", - "starkware.cairo.common.math.assert_le_felt" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 86, - "end_line": 186, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/math.cairo" - }, - "start_col": 45, - "start_line": 186 - } - }, - "107": { - "accessible_scopes": [ - "starkware.cairo.common.math", - "starkware.cairo.common.math.assert_le_felt" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 86, - "end_line": 186, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/math.cairo" - }, - "start_col": 25, - "start_line": 186 - } - }, - "108": { - "accessible_scopes": [ - "starkware.cairo.common.math", - "starkware.cairo.common.math.assert_le_felt" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 45, - "end_line": 187, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/math.cairo" - }, - "start_col": 24, - "start_line": 187 - } - }, - "109": { - "accessible_scopes": [ - "starkware.cairo.common.math", - "starkware.cairo.common.math.assert_le_felt" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 69, - "end_line": 187, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/math.cairo" - }, - "start_col": 48, - "start_line": 187 - } - }, - "110": { - "accessible_scopes": [ - "starkware.cairo.common.math", - "starkware.cairo.common.math.assert_le_felt" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 89, - "end_line": 187, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/math.cairo" - }, - "start_col": 48, - "start_line": 187 - } - }, - "112": { - "accessible_scopes": [ - "starkware.cairo.common.math", - "starkware.cairo.common.math.assert_le_felt" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 89, - "end_line": 187, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/math.cairo" - }, - "start_col": 24, - "start_line": 187 - } - }, - "113": { - "accessible_scopes": [ - "starkware.cairo.common.math", - "starkware.cairo.common.math.assert_le_felt" - ], - "flow_tracking_data": null, - "hints": [ - { - "location": { - "end_col": 49, - "end_line": 196, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/math.cairo" - }, - "start_col": 5, - "start_line": 196 - }, - "n_prefix_newlines": 0 - } - ], - "inst": { - "end_col": 42, - "end_line": 197, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/math.cairo" - }, - "start_col": 5, - "start_line": 197 - } - }, - "115": { - "accessible_scopes": [ - "starkware.cairo.common.math", - "starkware.cairo.common.math.assert_le_felt" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 25, - "end_line": 198, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/math.cairo" - }, - "start_col": 23, - "start_line": 198 - } - }, - "117": { - "accessible_scopes": [ - "starkware.cairo.common.math", - "starkware.cairo.common.math.assert_le_felt" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 30, - "end_line": 198, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/math.cairo" - }, - "start_col": 22, - "start_line": 198 - } - }, - "118": { - "accessible_scopes": [ - "starkware.cairo.common.math", - "starkware.cairo.common.math.assert_le_felt" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 31, - "end_line": 198, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/math.cairo" - }, - "start_col": 5, - "start_line": 198 - } - }, - "119": { - "accessible_scopes": [ - "starkware.cairo.common.math", - "starkware.cairo.common.math.assert_le_felt" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 29, - "end_line": 199, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/math.cairo" - }, - "start_col": 24, - "start_line": 199 - } - }, - "120": { - "accessible_scopes": [ - "starkware.cairo.common.math", - "starkware.cairo.common.math.assert_le_felt" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 39, - "end_line": 199, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/math.cairo" - }, - "start_col": 34, - "start_line": 199 - } - }, - "122": { - "accessible_scopes": [ - "starkware.cairo.common.math", - "starkware.cairo.common.math.assert_le_felt" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 40, - "end_line": 199, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/math.cairo" - }, - "start_col": 23, - "start_line": 199 - } - }, - "123": { - "accessible_scopes": [ - "starkware.cairo.common.math", - "starkware.cairo.common.math.assert_le_felt" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 41, - "end_line": 199, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/math.cairo" - }, - "start_col": 5, - "start_line": 199 - } - }, - "124": { - "accessible_scopes": [ - "starkware.cairo.common.math", - "starkware.cairo.common.math.assert_le_felt" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 46, - "end_line": 188, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/math.cairo" - }, - "parent_location": [ - { - "end_col": 36, - "end_line": 154, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/math.cairo" - }, - "parent_location": [ - { - "end_col": 15, - "end_line": 200, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/math.cairo" - }, - "start_col": 5, - "start_line": 200 - }, - "While trying to retrieve the implicit argument 'range_check_ptr' in:" - ], - "start_col": 21, - "start_line": 154 - }, - "While expanding the reference 'range_check_ptr' in:" - ], - "start_col": 27, - "start_line": 188 - } - }, - "126": { - "accessible_scopes": [ - "starkware.cairo.common.math", - "starkware.cairo.common.math.assert_le_felt" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 15, - "end_line": 200, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/math.cairo" - }, - "start_col": 5, - "start_line": 200 - } - }, - "127": { - "accessible_scopes": [ - "starkware.cairo.common.math", - "starkware.cairo.common.math.assert_le_felt" - ], - "flow_tracking_data": null, - "hints": [ - { - "location": { - "end_col": 49, - "end_line": 204, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/math.cairo" - }, - "start_col": 5, - "start_line": 204 - }, - "n_prefix_newlines": 0 - } - ], - "inst": { - "end_col": 50, - "end_line": 205, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/math.cairo" - }, - "start_col": 5, - "start_line": 205 - } - }, - "129": { - "accessible_scopes": [ - "starkware.cairo.common.math", - "starkware.cairo.common.math.assert_le_felt" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 23, - "end_line": 206, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/math.cairo" - }, - "start_col": 21, - "start_line": 206 - } - }, - "131": { - "accessible_scopes": [ - "starkware.cairo.common.math", - "starkware.cairo.common.math.assert_le_felt" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 28, - "end_line": 206, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/math.cairo" - }, - "start_col": 20, - "start_line": 206 - } - }, - "132": { - "accessible_scopes": [ - "starkware.cairo.common.math", - "starkware.cairo.common.math.assert_le_felt" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 30, - "end_line": 207, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/math.cairo" - }, - "start_col": 22, - "start_line": 207 - } - }, - "133": { - "accessible_scopes": [ - "starkware.cairo.common.math", - "starkware.cairo.common.math.assert_le_felt" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 31, - "end_line": 207, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/math.cairo" - }, - "start_col": 5, - "start_line": 207 - } - }, - "134": { - "accessible_scopes": [ - "starkware.cairo.common.math", - "starkware.cairo.common.math.assert_le_felt" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 31, - "end_line": 208, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/math.cairo" - }, - "start_col": 23, - "start_line": 208 - } - }, - "135": { - "accessible_scopes": [ - "starkware.cairo.common.math", - "starkware.cairo.common.math.assert_le_felt" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 32, - "end_line": 208, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/math.cairo" - }, - "start_col": 5, - "start_line": 208 - } - }, - "136": { - "accessible_scopes": [ - "starkware.cairo.common.math", - "starkware.cairo.common.math.assert_le_felt" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 46, - "end_line": 188, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/math.cairo" - }, - "parent_location": [ - { - "end_col": 36, - "end_line": 154, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/math.cairo" - }, - "parent_location": [ - { - "end_col": 15, - "end_line": 209, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/math.cairo" - }, - "start_col": 5, - "start_line": 209 - }, - "While trying to retrieve the implicit argument 'range_check_ptr' in:" - ], - "start_col": 21, - "start_line": 154 - }, - "While expanding the reference 'range_check_ptr' in:" - ], - "start_col": 27, - "start_line": 188 - } - }, - "138": { - "accessible_scopes": [ - "starkware.cairo.common.math", - "starkware.cairo.common.math.assert_le_felt" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 15, - "end_line": 209, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/math.cairo" - }, - "start_col": 5, - "start_line": 209 - } - }, - "139": { - "accessible_scopes": [ - "starkware.cairo.common.math", - "starkware.cairo.common.math.assert_le_felt" - ], - "flow_tracking_data": null, - "hints": [ - { - "location": { - "end_col": 31, - "end_line": 213, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/math.cairo" - }, - "start_col": 5, - "start_line": 213 - }, - "n_prefix_newlines": 0 - } - ], - "inst": { - "end_col": 24, - "end_line": 214, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/math.cairo" - }, - "start_col": 5, - "start_line": 214 - } - }, - "140": { - "accessible_scopes": [ - "starkware.cairo.common.math", - "starkware.cairo.common.math.assert_le_felt" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 33, - "end_line": 215, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/math.cairo" - }, - "start_col": 28, - "start_line": 215 - } - }, - "141": { - "accessible_scopes": [ - "starkware.cairo.common.math", - "starkware.cairo.common.math.assert_le_felt" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 34, - "end_line": 215, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/math.cairo" - }, - "start_col": 23, - "start_line": 215 - } - }, - "142": { - "accessible_scopes": [ - "starkware.cairo.common.math", - "starkware.cairo.common.math.assert_le_felt" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 35, - "end_line": 215, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/math.cairo" - }, - "start_col": 5, - "start_line": 215 - } - }, - "143": { - "accessible_scopes": [ - "starkware.cairo.common.math", - "starkware.cairo.common.math.assert_le_felt" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 12, - "end_line": 216, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/math.cairo" - }, - "start_col": 5, - "start_line": 216 - } - }, - "145": { - "accessible_scopes": [ - "starkware.cairo.common.math", - "starkware.cairo.common.math.assert_le_felt" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 46, - "end_line": 188, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/math.cairo" - }, - "parent_location": [ - { - "end_col": 36, - "end_line": 154, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/math.cairo" - }, - "parent_location": [ - { - "end_col": 15, - "end_line": 217, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/math.cairo" - }, - "start_col": 5, - "start_line": 217 - }, - "While trying to retrieve the implicit argument 'range_check_ptr' in:" - ], - "start_col": 21, - "start_line": 154 - }, - "While expanding the reference 'range_check_ptr' in:" - ], - "start_col": 27, - "start_line": 188 - } - }, - "147": { - "accessible_scopes": [ - "starkware.cairo.common.math", - "starkware.cairo.common.math.assert_le_felt" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 15, - "end_line": 217, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/math.cairo" - }, - "start_col": 5, - "start_line": 217 - } - }, - "148": { - "accessible_scopes": [ - "starkware.cairo.common.math", - "starkware.cairo.common.math.assert_lt_felt" - ], - "flow_tracking_data": null, - "hints": [ - { - "location": { - "end_col": 7, - "end_line": 230, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/math.cairo" - }, - "start_col": 5, - "start_line": 224 - }, - "n_prefix_newlines": 1 - } - ], - "inst": { - "end_col": 15, - "end_line": 231, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/math.cairo" - }, - "start_col": 9, - "start_line": 231 - } - }, - "149": { - "accessible_scopes": [ - "starkware.cairo.common.math", - "starkware.cairo.common.math.assert_lt_felt" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 7, - "end_line": 231, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/math.cairo" - }, - "start_col": 5, - "start_line": 231 - } - }, - "151": { - "accessible_scopes": [ - "starkware.cairo.common.math", - "starkware.cairo.common.math.assert_lt_felt" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 18, - "end_line": 233, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/math.cairo" - }, - "start_col": 9, - "start_line": 233 - } - }, - "153": { - "accessible_scopes": [ - "starkware.cairo.common.math", - "starkware.cairo.common.math.assert_lt_felt" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 36, - "end_line": 223, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/math.cairo" - }, - "parent_location": [ - { - "end_col": 36, - "end_line": 154, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/math.cairo" - }, - "parent_location": [ - { - "end_col": 25, - "end_line": 235, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/math.cairo" - }, - "start_col": 5, - "start_line": 235 - }, - "While trying to retrieve the implicit argument 'range_check_ptr' in:" - ], - "start_col": 21, - "start_line": 154 - }, - "While expanding the reference 'range_check_ptr' in:" - ], - "start_col": 21, - "start_line": 223 - } - }, - "154": { - "accessible_scopes": [ - "starkware.cairo.common.math", - "starkware.cairo.common.math.assert_lt_felt" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 39, - "end_line": 223, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/math.cairo" - }, - "parent_location": [ - { - "end_col": 21, - "end_line": 235, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/math.cairo" - }, - "start_col": 20, - "start_line": 235 - }, - "While expanding the reference 'a' in:" - ], - "start_col": 38, - "start_line": 223 - } - }, - "155": { - "accessible_scopes": [ - "starkware.cairo.common.math", - "starkware.cairo.common.math.assert_lt_felt" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 42, - "end_line": 223, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/math.cairo" - }, - "parent_location": [ - { - "end_col": 24, - "end_line": 235, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/math.cairo" - }, - "start_col": 23, - "start_line": 235 - }, - "While expanding the reference 'b' in:" - ], - "start_col": 41, - "start_line": 223 - } - }, - "156": { - "accessible_scopes": [ - "starkware.cairo.common.math", - "starkware.cairo.common.math.assert_lt_felt" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 25, - "end_line": 235, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/math.cairo" - }, - "start_col": 5, - "start_line": 235 - } - }, - "158": { - "accessible_scopes": [ - "starkware.cairo.common.math", - "starkware.cairo.common.math.assert_lt_felt" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 15, - "end_line": 236, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/math.cairo" - }, - "start_col": 5, - "start_line": 236 - } - }, - "159": { - "accessible_scopes": [ - "starkware.cairo.common.math", - "starkware.cairo.common.math.signed_div_rem" - ], - "flow_tracking_data": null, - "hints": [ - { - "location": { - "end_col": 7, - "end_line": 347, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/math.cairo" - }, - "start_col": 5, - "start_line": 329 - }, - "n_prefix_newlines": 1 - } - ], - "inst": { - "end_col": 41, - "end_line": 327, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/math.cairo" - }, - "parent_location": [ - { - "end_col": 21, - "end_line": 348, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/math.cairo" - }, - "parent_location": [ - { - "end_col": 21, - "end_line": 349, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/math.cairo" - }, - "start_col": 20, - "start_line": 349 - }, - "While expanding the reference 'q' in:" - ], - "start_col": 13, - "start_line": 348 - }, - "While expanding the reference 'biased_q' in:" - ], - "start_col": 20, - "start_line": 327 - } - }, - "160": { - "accessible_scopes": [ - "starkware.cairo.common.math", - "starkware.cairo.common.math.signed_div_rem" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 29, - "end_line": 348, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/math.cairo" - }, - "parent_location": [ - { - "end_col": 21, - "end_line": 349, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/math.cairo" - }, - "start_col": 20, - "start_line": 349 - }, - "While expanding the reference 'q' in:" - ], - "start_col": 13, - "start_line": 348 - } - }, - "161": { - "accessible_scopes": [ - "starkware.cairo.common.math", - "starkware.cairo.common.math.signed_div_rem" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 27, - "end_line": 349, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/math.cairo" - }, - "start_col": 20, - "start_line": 349 - } - }, - "162": { - "accessible_scopes": [ - "starkware.cairo.common.math", - "starkware.cairo.common.math.signed_div_rem" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 30, - "end_line": 326, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/math.cairo" - }, - "parent_location": [ - { - "end_col": 31, - "end_line": 349, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/math.cairo" - }, - "start_col": 30, - "start_line": 349 - }, - "While expanding the reference 'r' in:" - ], - "start_col": 13, - "start_line": 326 - } - }, - "163": { - "accessible_scopes": [ - "starkware.cairo.common.math", - "starkware.cairo.common.math.signed_div_rem" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 32, - "end_line": 349, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/math.cairo" - }, - "start_col": 5, - "start_line": 349 - } - }, - "164": { - "accessible_scopes": [ - "starkware.cairo.common.math", - "starkware.cairo.common.math.signed_div_rem" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 46, - "end_line": 328, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/math.cairo" - }, - "parent_location": [ - { - "end_col": 31, - "end_line": 53, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/math.cairo" - }, - "parent_location": [ - { - "end_col": 26, - "end_line": 350, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/math.cairo" - }, - "start_col": 5, - "start_line": 350 - }, - "While trying to retrieve the implicit argument 'range_check_ptr' in:" - ], - "start_col": 16, - "start_line": 53 - }, - "While expanding the reference 'range_check_ptr' in:" - ], - "start_col": 27, - "start_line": 328 - } - }, - "166": { - "accessible_scopes": [ - "starkware.cairo.common.math", - "starkware.cairo.common.math.signed_div_rem" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 30, - "end_line": 326, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/math.cairo" - }, - "parent_location": [ - { - "end_col": 16, - "end_line": 350, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/math.cairo" - }, - "start_col": 15, - "start_line": 350 - }, - "While expanding the reference 'r' in:" - ], - "start_col": 13, - "start_line": 326 - } - }, - "167": { - "accessible_scopes": [ - "starkware.cairo.common.math", - "starkware.cairo.common.math.signed_div_rem" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 25, - "end_line": 350, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/math.cairo" - }, - "start_col": 18, - "start_line": 350 - } - }, - "169": { - "accessible_scopes": [ - "starkware.cairo.common.math", - "starkware.cairo.common.math.signed_div_rem" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 26, - "end_line": 350, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/math.cairo" - }, - "start_col": 5, - "start_line": 350 - } - }, - "171": { - "accessible_scopes": [ - "starkware.cairo.common.math", - "starkware.cairo.common.math.signed_div_rem" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 26, - "end_line": 351, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/math.cairo" - }, - "start_col": 25, - "start_line": 351 - } - }, - "173": { - "accessible_scopes": [ - "starkware.cairo.common.math", - "starkware.cairo.common.math.signed_div_rem" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 34, - "end_line": 351, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/math.cairo" - }, - "start_col": 25, - "start_line": 351 - } - }, - "174": { - "accessible_scopes": [ - "starkware.cairo.common.math", - "starkware.cairo.common.math.signed_div_rem" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 31, - "end_line": 53, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/math.cairo" - }, - "parent_location": [ - { - "end_col": 26, - "end_line": 350, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/math.cairo" - }, - "parent_location": [ - { - "end_col": 31, - "end_line": 53, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/math.cairo" - }, - "parent_location": [ - { - "end_col": 39, - "end_line": 351, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/math.cairo" - }, - "start_col": 5, - "start_line": 351 - }, - "While trying to retrieve the implicit argument 'range_check_ptr' in:" - ], - "start_col": 16, - "start_line": 53 - }, - "While expanding the reference 'range_check_ptr' in:" - ], - "start_col": 5, - "start_line": 350 - }, - "While trying to update the implicit return value 'range_check_ptr' in:" - ], - "start_col": 16, - "start_line": 53 - } - }, - "175": { - "accessible_scopes": [ - "starkware.cairo.common.math", - "starkware.cairo.common.math.signed_div_rem" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 41, - "end_line": 327, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/math.cairo" - }, - "parent_location": [ - { - "end_col": 23, - "end_line": 351, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/math.cairo" - }, - "start_col": 15, - "start_line": 351 - }, - "While expanding the reference 'biased_q' in:" - ], - "start_col": 20, - "start_line": 327 - } - }, - "176": { - "accessible_scopes": [ - "starkware.cairo.common.math", - "starkware.cairo.common.math.signed_div_rem" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 38, - "end_line": 351, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/math.cairo" - }, - "start_col": 25, - "start_line": 351 - } - }, - "178": { - "accessible_scopes": [ - "starkware.cairo.common.math", - "starkware.cairo.common.math.signed_div_rem" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 39, - "end_line": 351, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/math.cairo" - }, - "start_col": 5, - "start_line": 351 - } - }, - "180": { - "accessible_scopes": [ - "starkware.cairo.common.math", - "starkware.cairo.common.math.signed_div_rem" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 41, - "end_line": 327, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/math.cairo" - }, - "parent_location": [ - { - "end_col": 21, - "end_line": 348, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/math.cairo" - }, - "parent_location": [ - { - "end_col": 14, - "end_line": 352, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/math.cairo" - }, - "start_col": 13, - "start_line": 352 - }, - "While expanding the reference 'q' in:" - ], - "start_col": 13, - "start_line": 348 - }, - "While expanding the reference 'biased_q' in:" - ], - "start_col": 20, - "start_line": 327 - } - }, - "181": { - "accessible_scopes": [ - "starkware.cairo.common.math", - "starkware.cairo.common.math.signed_div_rem" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 31, - "end_line": 53, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/math.cairo" - }, - "parent_location": [ - { - "end_col": 39, - "end_line": 351, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/math.cairo" - }, - "parent_location": [ - { - "end_col": 36, - "end_line": 325, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/math.cairo" - }, - "parent_location": [ - { - "end_col": 19, - "end_line": 352, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/math.cairo" - }, - "start_col": 5, - "start_line": 352 - }, - "While trying to retrieve the implicit argument 'range_check_ptr' in:" - ], - "start_col": 21, - "start_line": 325 - }, - "While expanding the reference 'range_check_ptr' in:" - ], - "start_col": 5, - "start_line": 351 - }, - "While trying to update the implicit return value 'range_check_ptr' in:" - ], - "start_col": 16, - "start_line": 53 - } - }, - "182": { - "accessible_scopes": [ - "starkware.cairo.common.math", - "starkware.cairo.common.math.signed_div_rem" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 29, - "end_line": 348, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/math.cairo" - }, - "parent_location": [ - { - "end_col": 14, - "end_line": 352, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/math.cairo" - }, - "start_col": 13, - "start_line": 352 - }, - "While expanding the reference 'q' in:" - ], - "start_col": 13, - "start_line": 348 - } - }, - "183": { - "accessible_scopes": [ - "starkware.cairo.common.math", - "starkware.cairo.common.math.signed_div_rem" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 30, - "end_line": 326, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/math.cairo" - }, - "parent_location": [ - { - "end_col": 17, - "end_line": 352, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/math.cairo" - }, - "start_col": 16, - "start_line": 352 - }, - "While expanding the reference 'r' in:" - ], - "start_col": 13, - "start_line": 326 - } - }, - "184": { - "accessible_scopes": [ - "starkware.cairo.common.math", - "starkware.cairo.common.math.signed_div_rem" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 19, - "end_line": 352, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/math.cairo" - }, - "start_col": 5, - "start_line": 352 - } - }, - "185": { - "accessible_scopes": [ - "starkware.starknet.common.storage", - "starkware.starknet.common.storage.normalize_address" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 22, - "end_line": 13, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/starknet/common/storage.cairo" - }, - "start_col": 5, - "start_line": 13 - } - }, - "187": { - "accessible_scopes": [ - "starkware.starknet.common.storage", - "starkware.starknet.common.storage.normalize_address" - ], - "flow_tracking_data": null, - "hints": [ - { - "location": { - "end_col": 7, - "end_line": 21, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/starknet/common/storage.cairo" - }, - "start_col": 5, - "start_line": 14 - }, - "n_prefix_newlines": 1 - } - ], - "inst": { - "end_col": 7, - "end_line": 22, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/starknet/common/storage.cairo" - }, - "start_col": 5, - "start_line": 22 - } - }, - "189": { - "accessible_scopes": [ - "starkware.starknet.common.storage", - "starkware.starknet.common.storage.normalize_address" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 39, - "end_line": 12, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/starknet/common/storage.cairo" - }, - "parent_location": [ - { - "end_col": 36, - "end_line": 89, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/math.cairo" - }, - "parent_location": [ - { - "end_col": 26, - "end_line": 50, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/starknet/common/storage.cairo" - }, - "start_col": 9, - "start_line": 50 - }, - "While trying to retrieve the implicit argument 'range_check_ptr' in:" - ], - "start_col": 21, - "start_line": 89 - }, - "While expanding the reference 'range_check_ptr' in:" - ], - "start_col": 24, - "start_line": 12 - } - }, - "190": { - "accessible_scopes": [ - "starkware.starknet.common.storage", - "starkware.starknet.common.storage.normalize_address" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 34, - "end_line": 48, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/starknet/common/storage.cairo" - }, - "parent_location": [ - { - "end_col": 25, - "end_line": 50, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/starknet/common/storage.cairo" - }, - "start_col": 24, - "start_line": 50 - }, - "While expanding the reference 'x' in:" - ], - "start_col": 17, - "start_line": 48 - } - }, - "192": { - "accessible_scopes": [ - "starkware.starknet.common.storage", - "starkware.starknet.common.storage.normalize_address" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 26, - "end_line": 50, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/starknet/common/storage.cairo" - }, - "start_col": 9, - "start_line": 50 - } - }, - "194": { - "accessible_scopes": [ - "starkware.starknet.common.storage", - "starkware.starknet.common.storage.normalize_address" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 20, - "end_line": 49, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/starknet/common/storage.cairo" - }, - "parent_location": [ - { - "end_col": 25, - "end_line": 51, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/starknet/common/storage.cairo" - }, - "start_col": 24, - "start_line": 51 - }, - "While expanding the reference 'y' in:" - ], - "start_col": 18, - "start_line": 49 - } - }, - "196": { - "accessible_scopes": [ - "starkware.starknet.common.storage", - "starkware.starknet.common.storage.normalize_address" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 36, - "end_line": 89, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/math.cairo" - }, - "parent_location": [ - { - "end_col": 26, - "end_line": 50, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/starknet/common/storage.cairo" - }, - "parent_location": [ - { - "end_col": 36, - "end_line": 89, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/math.cairo" - }, - "parent_location": [ - { - "end_col": 26, - "end_line": 51, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/starknet/common/storage.cairo" - }, - "start_col": 9, - "start_line": 51 - }, - "While trying to retrieve the implicit argument 'range_check_ptr' in:" - ], - "start_col": 21, - "start_line": 89 - }, - "While expanding the reference 'range_check_ptr' in:" - ], - "start_col": 9, - "start_line": 50 - }, - "While trying to update the implicit return value 'range_check_ptr' in:" - ], - "start_col": 21, - "start_line": 89 - } - }, - "197": { - "accessible_scopes": [ - "starkware.starknet.common.storage", - "starkware.starknet.common.storage.normalize_address" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 28, - "end_line": 49, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/starknet/common/storage.cairo" - }, - "parent_location": [ - { - "end_col": 25, - "end_line": 51, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/starknet/common/storage.cairo" - }, - "start_col": 24, - "start_line": 51 - }, - "While expanding the reference 'y' in:" - ], - "start_col": 17, - "start_line": 49 - } - }, - "198": { - "accessible_scopes": [ - "starkware.starknet.common.storage", - "starkware.starknet.common.storage.normalize_address" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 26, - "end_line": 51, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/starknet/common/storage.cairo" - }, - "start_col": 9, - "start_line": 51 - } - }, - "200": { - "accessible_scopes": [ - "starkware.starknet.common.storage", - "starkware.starknet.common.storage.normalize_address" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 38, - "end_line": 52, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/starknet/common/storage.cairo" - }, - "start_col": 21, - "start_line": 52 - } - }, - "202": { - "accessible_scopes": [ - "starkware.starknet.common.storage", - "starkware.starknet.common.storage.normalize_address" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 40, - "end_line": 52, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/starknet/common/storage.cairo" - }, - "start_col": 9, - "start_line": 52 - } - }, - "203": { - "accessible_scopes": [ - "starkware.starknet.common.storage", - "starkware.starknet.common.storage.normalize_address" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 24, - "end_line": 23, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/starknet/common/storage.cairo" - }, - "start_col": 9, - "start_line": 23 - } - }, - "205": { - "accessible_scopes": [ - "starkware.starknet.common.storage", - "starkware.starknet.common.storage.normalize_address" - ], - "flow_tracking_data": null, - "hints": [ - { - "location": { - "end_col": 57, - "end_line": 24, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/starknet/common/storage.cairo" - }, - "start_col": 9, - "start_line": 24 - }, - "n_prefix_newlines": 0 - } - ], - "inst": { - "end_col": 11, - "end_line": 25, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/starknet/common/storage.cairo" - }, - "start_col": 9, - "start_line": 25 - } - }, - "207": { - "accessible_scopes": [ - "starkware.starknet.common.storage", - "starkware.starknet.common.storage.normalize_address" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 21, - "end_line": 30, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/starknet/common/storage.cairo" - }, - "start_col": 13, - "start_line": 30 - } - }, - "209": { - "accessible_scopes": [ - "starkware.starknet.common.storage", - "starkware.starknet.common.storage.normalize_address" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 42, - "end_line": 32, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/starknet/common/storage.cairo" - }, - "start_col": 28, - "start_line": 32 - } - }, - "211": { - "accessible_scopes": [ - "starkware.starknet.common.storage", - "starkware.starknet.common.storage.normalize_address" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 39, - "end_line": 12, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/starknet/common/storage.cairo" - }, - "parent_location": [ - { - "end_col": 36, - "end_line": 89, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/math.cairo" - }, - "parent_location": [ - { - "end_col": 50, - "end_line": 32, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/starknet/common/storage.cairo" - }, - "start_col": 13, - "start_line": 32 - }, - "While trying to retrieve the implicit argument 'range_check_ptr' in:" - ], - "start_col": 21, - "start_line": 89 - }, - "While expanding the reference 'range_check_ptr' in:" - ], - "start_col": 24, - "start_line": 12 - } - }, - "212": { - "accessible_scopes": [ - "starkware.starknet.common.storage", - "starkware.starknet.common.storage.normalize_address" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 49, - "end_line": 32, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/starknet/common/storage.cairo" - }, - "start_col": 28, - "start_line": 32 - } - }, - "213": { - "accessible_scopes": [ - "starkware.starknet.common.storage", - "starkware.starknet.common.storage.normalize_address" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 50, - "end_line": 32, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/starknet/common/storage.cairo" - }, - "start_col": 13, - "start_line": 32 - } - }, - "215": { - "accessible_scopes": [ - "starkware.starknet.common.storage", - "starkware.starknet.common.storage.normalize_address" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 11, - "end_line": 25, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/starknet/common/storage.cairo" - }, - "start_col": 9, - "start_line": 25 - } - }, - "217": { - "accessible_scopes": [ - "starkware.starknet.common.storage", - "starkware.starknet.common.storage.normalize_address" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 21, - "end_line": 26, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/starknet/common/storage.cairo" - }, - "start_col": 13, - "start_line": 26 - } - }, - "219": { - "accessible_scopes": [ - "starkware.starknet.common.storage", - "starkware.starknet.common.storage.normalize_address" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 39, - "end_line": 12, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/starknet/common/storage.cairo" - }, - "parent_location": [ - { - "end_col": 36, - "end_line": 89, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/math.cairo" - }, - "parent_location": [ - { - "end_col": 33, - "end_line": 28, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/starknet/common/storage.cairo" - }, - "start_col": 13, - "start_line": 28 - }, - "While trying to retrieve the implicit argument 'range_check_ptr' in:" - ], - "start_col": 21, - "start_line": 89 - }, - "While expanding the reference 'range_check_ptr' in:" - ], - "start_col": 24, - "start_line": 12 - } - }, - "220": { - "accessible_scopes": [ - "starkware.starknet.common.storage", - "starkware.starknet.common.storage.normalize_address" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 51, - "end_line": 12, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/starknet/common/storage.cairo" - }, - "parent_location": [ - { - "end_col": 32, - "end_line": 28, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/starknet/common/storage.cairo" - }, - "start_col": 28, - "start_line": 28 - }, - "While expanding the reference 'addr' in:" - ], - "start_col": 41, - "start_line": 12 - } - }, - "221": { - "accessible_scopes": [ - "starkware.starknet.common.storage", - "starkware.starknet.common.storage.normalize_address" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 33, - "end_line": 28, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/starknet/common/storage.cairo" - }, - "start_col": 13, - "start_line": 28 - } - }, - "223": { - "accessible_scopes": [ - "starkware.starknet.common.storage", - "starkware.starknet.common.storage.normalize_address" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 51, - "end_line": 12, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/starknet/common/storage.cairo" - }, - "parent_location": [ - { - "end_col": 25, - "end_line": 34, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/starknet/common/storage.cairo" - }, - "start_col": 21, - "start_line": 34 - }, - "While expanding the reference 'addr' in:" - ], - "start_col": 41, - "start_line": 12 - } - }, - "224": { - "accessible_scopes": [ - "starkware.starknet.common.storage", - "starkware.starknet.common.storage.normalize_address" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 27, - "end_line": 34, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/starknet/common/storage.cairo" - }, - "start_col": 9, - "start_line": 34 - } - }, - "225": { - "accessible_scopes": [ - "openzeppelin.access.ownable.library", - "openzeppelin.access.ownable.library.OwnershipTransferred", - "openzeppelin.access.ownable.library.OwnershipTransferred.emit" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 14, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/event/OwnershipTransferred/8220fde17ca5479f12ae71a8036f4d354fe722f2c036da610b53511924e4ee84.cairo" - }, - "parent_location": [ - { - "end_col": 26, - "end_line": 15, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/access/ownable/library.cairo" - }, - "start_col": 6, - "start_line": 15 - }, - "While handling event:" - ], - "start_col": 1, - "start_line": 1 - } - }, - "227": { - "accessible_scopes": [ - "openzeppelin.access.ownable.library", - "openzeppelin.access.ownable.library.OwnershipTransferred", - "openzeppelin.access.ownable.library.OwnershipTransferred.emit" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 40, - "end_line": 2, - "input_file": { - "filename": "autogen/starknet/event/OwnershipTransferred/8220fde17ca5479f12ae71a8036f4d354fe722f2c036da610b53511924e4ee84.cairo" - }, - "parent_location": [ - { - "end_col": 26, - "end_line": 15, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/access/ownable/library.cairo" - }, - "start_col": 6, - "start_line": 15 - }, - "While handling event:" - ], - "start_col": 33, - "start_line": 2 - } - }, - "229": { - "accessible_scopes": [ - "openzeppelin.access.ownable.library", - "openzeppelin.access.ownable.library.OwnershipTransferred", - "openzeppelin.access.ownable.library.OwnershipTransferred.emit" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 29, - "end_line": 2, - "input_file": { - "filename": "autogen/starknet/event/OwnershipTransferred/8220fde17ca5479f12ae71a8036f4d354fe722f2c036da610b53511924e4ee84.cairo" - }, - "parent_location": [ - { - "end_col": 26, - "end_line": 15, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/access/ownable/library.cairo" - }, - "start_col": 6, - "start_line": 15 - }, - "While handling event:" - ], - "start_col": 6, - "start_line": 2 - } - }, - "230": { - "accessible_scopes": [ - "openzeppelin.access.ownable.library", - "openzeppelin.access.ownable.library.OwnershipTransferred", - "openzeppelin.access.ownable.library.OwnershipTransferred.emit" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 31, - "end_line": 3, - "input_file": { - "filename": "autogen/starknet/event/OwnershipTransferred/8220fde17ca5479f12ae71a8036f4d354fe722f2c036da610b53511924e4ee84.cairo" - }, - "parent_location": [ - { - "end_col": 26, - "end_line": 15, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/access/ownable/library.cairo" - }, - "start_col": 6, - "start_line": 15 - }, - "While handling event:" - ], - "start_col": 23, - "start_line": 3 - } - }, - "232": { - "accessible_scopes": [ - "openzeppelin.access.ownable.library", - "openzeppelin.access.ownable.library.OwnershipTransferred", - "openzeppelin.access.ownable.library.OwnershipTransferred.emit" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 32, - "end_line": 3, - "input_file": { - "filename": "autogen/starknet/event/OwnershipTransferred/8220fde17ca5479f12ae71a8036f4d354fe722f2c036da610b53511924e4ee84.cairo" - }, - "parent_location": [ - { - "end_col": 26, - "end_line": 15, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/access/ownable/library.cairo" - }, - "start_col": 6, - "start_line": 15 - }, - "While handling event:" - ], - "start_col": 1, - "start_line": 3 - } - }, - "233": { - "accessible_scopes": [ - "openzeppelin.access.ownable.library", - "openzeppelin.access.ownable.library.OwnershipTransferred", - "openzeppelin.access.ownable.library.OwnershipTransferred.emit" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 40, - "end_line": 4, - "input_file": { - "filename": "autogen/starknet/event/OwnershipTransferred/8220fde17ca5479f12ae71a8036f4d354fe722f2c036da610b53511924e4ee84.cairo" - }, - "parent_location": [ - { - "end_col": 26, - "end_line": 15, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/access/ownable/library.cairo" - }, - "start_col": 6, - "start_line": 15 - }, - "While handling event:" - ], - "start_col": 33, - "start_line": 4 - } - }, - "235": { - "accessible_scopes": [ - "openzeppelin.access.ownable.library", - "openzeppelin.access.ownable.library.OwnershipTransferred", - "openzeppelin.access.ownable.library.OwnershipTransferred.emit" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 29, - "end_line": 4, - "input_file": { - "filename": "autogen/starknet/event/OwnershipTransferred/8220fde17ca5479f12ae71a8036f4d354fe722f2c036da610b53511924e4ee84.cairo" - }, - "parent_location": [ - { - "end_col": 26, - "end_line": 15, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/access/ownable/library.cairo" - }, - "start_col": 6, - "start_line": 15 - }, - "While handling event:" - ], - "start_col": 6, - "start_line": 4 - } - }, - "236": { - "accessible_scopes": [ - "openzeppelin.access.ownable.library", - "openzeppelin.access.ownable.library.OwnershipTransferred", - "openzeppelin.access.ownable.library.OwnershipTransferred.emit" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 41, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/arg_processor/e2129a0023ce5f9e4c3de1d6fb100b2688dccff4a2ed2082db4a311f35c53e21.cairo" - }, - "parent_location": [ - { - "end_col": 40, - "end_line": 15, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/access/ownable/library.cairo" - }, - "start_col": 27, - "start_line": 15 - }, - "While handling calldata argument 'previousOwner'" - ], - "start_col": 1, - "start_line": 1 - } - }, - "237": { - "accessible_scopes": [ - "openzeppelin.access.ownable.library", - "openzeppelin.access.ownable.library.OwnershipTransferred", - "openzeppelin.access.ownable.library.OwnershipTransferred.emit" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 36, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/arg_processor/445d818b0524d35ae3e73b7abec41731d1445f0ce6866ec5a3a8a871521799a0.cairo" - }, - "parent_location": [ - { - "end_col": 56, - "end_line": 15, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/access/ownable/library.cairo" - }, - "start_col": 48, - "start_line": 15 - }, - "While handling calldata argument 'newOwner'" - ], - "start_col": 1, - "start_line": 1 - } - }, - "238": { - "accessible_scopes": [ - "openzeppelin.access.ownable.library", - "openzeppelin.access.ownable.library.OwnershipTransferred", - "openzeppelin.access.ownable.library.OwnershipTransferred.emit" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 40, - "end_line": 2, - "input_file": { - "filename": "autogen/starknet/arg_processor/445d818b0524d35ae3e73b7abec41731d1445f0ce6866ec5a3a8a871521799a0.cairo" - }, - "parent_location": [ - { - "end_col": 56, - "end_line": 15, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/access/ownable/library.cairo" - }, - "parent_location": [ - { - "end_col": 64, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/event/OwnershipTransferred/6150feec30bd48bfd0f446ed8c155a6d911a2c3fb3ec7a980733900416819259.cairo" - }, - "parent_location": [ - { - "end_col": 26, - "end_line": 15, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/access/ownable/library.cairo" - }, - "start_col": 6, - "start_line": 15 - }, - "While handling event:" - ], - "start_col": 50, - "start_line": 1 - }, - "While expanding the reference '__calldata_ptr' in:" - ], - "start_col": 48, - "start_line": 15 - }, - "While handling calldata argument 'newOwner'" - ], - "start_col": 22, - "start_line": 2 - } - }, - "240": { - "accessible_scopes": [ - "openzeppelin.access.ownable.library", - "openzeppelin.access.ownable.library.OwnershipTransferred", - "openzeppelin.access.ownable.library.OwnershipTransferred.emit" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 29, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/event/OwnershipTransferred/a7a8ae41be29ac9f4f6c3b7837c448d787ca051dd1ade98f409e54d33d112504.cairo" - }, - "parent_location": [ - { - "end_col": 26, - "end_line": 15, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/access/ownable/library.cairo" - }, - "parent_location": [ - { - "end_col": 35, - "end_line": 390, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/starknet/common/syscalls.cairo" - }, - "parent_location": [ - { - "end_col": 95, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/event/OwnershipTransferred/6150feec30bd48bfd0f446ed8c155a6d911a2c3fb3ec7a980733900416819259.cairo" - }, - "parent_location": [ - { - "end_col": 26, - "end_line": 15, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/access/ownable/library.cairo" - }, - "start_col": 6, - "start_line": 15 - }, - "While handling event:" - ], - "start_col": 1, - "start_line": 1 - }, - "While trying to retrieve the implicit argument 'syscall_ptr' in:" - ], - "start_col": 17, - "start_line": 390 - }, - "While expanding the reference 'syscall_ptr' in:" - ], - "start_col": 6, - "start_line": 15 - }, - "While handling event:" - ], - "start_col": 11, - "start_line": 1 - } - }, - "241": { - "accessible_scopes": [ - "openzeppelin.access.ownable.library", - "openzeppelin.access.ownable.library.OwnershipTransferred", - "openzeppelin.access.ownable.library.OwnershipTransferred.emit" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 22, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/event/OwnershipTransferred/6150feec30bd48bfd0f446ed8c155a6d911a2c3fb3ec7a980733900416819259.cairo" - }, - "parent_location": [ - { - "end_col": 26, - "end_line": 15, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/access/ownable/library.cairo" - }, - "start_col": 6, - "start_line": 15 - }, - "While handling event:" - ], - "start_col": 21, - "start_line": 1 - } - }, - "243": { - "accessible_scopes": [ - "openzeppelin.access.ownable.library", - "openzeppelin.access.ownable.library.OwnershipTransferred", - "openzeppelin.access.ownable.library.OwnershipTransferred.emit" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 22, - "end_line": 2, - "input_file": { - "filename": "autogen/starknet/event/OwnershipTransferred/8220fde17ca5479f12ae71a8036f4d354fe722f2c036da610b53511924e4ee84.cairo" - }, - "parent_location": [ - { - "end_col": 26, - "end_line": 15, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/access/ownable/library.cairo" - }, - "parent_location": [ - { - "end_col": 39, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/event/OwnershipTransferred/6150feec30bd48bfd0f446ed8c155a6d911a2c3fb3ec7a980733900416819259.cairo" - }, - "parent_location": [ - { - "end_col": 26, - "end_line": 15, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/access/ownable/library.cairo" - }, - "start_col": 6, - "start_line": 15 - }, - "While handling event:" - ], - "start_col": 29, - "start_line": 1 - }, - "While expanding the reference '__keys_ptr' in:" - ], - "start_col": 6, - "start_line": 15 - }, - "While handling event:" - ], - "start_col": 12, - "start_line": 2 - } - }, - "244": { - "accessible_scopes": [ - "openzeppelin.access.ownable.library", - "openzeppelin.access.ownable.library.OwnershipTransferred", - "openzeppelin.access.ownable.library.OwnershipTransferred.emit" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 77, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/event/OwnershipTransferred/6150feec30bd48bfd0f446ed8c155a6d911a2c3fb3ec7a980733900416819259.cairo" - }, - "parent_location": [ - { - "end_col": 26, - "end_line": 15, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/access/ownable/library.cairo" - }, - "start_col": 6, - "start_line": 15 - }, - "While handling event:" - ], - "start_col": 50, - "start_line": 1 - } - }, - "245": { - "accessible_scopes": [ - "openzeppelin.access.ownable.library", - "openzeppelin.access.ownable.library.OwnershipTransferred", - "openzeppelin.access.ownable.library.OwnershipTransferred.emit" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 22, - "end_line": 4, - "input_file": { - "filename": "autogen/starknet/event/OwnershipTransferred/8220fde17ca5479f12ae71a8036f4d354fe722f2c036da610b53511924e4ee84.cairo" - }, - "parent_location": [ - { - "end_col": 26, - "end_line": 15, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/access/ownable/library.cairo" - }, - "parent_location": [ - { - "end_col": 94, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/event/OwnershipTransferred/6150feec30bd48bfd0f446ed8c155a6d911a2c3fb3ec7a980733900416819259.cairo" - }, - "parent_location": [ - { - "end_col": 26, - "end_line": 15, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/access/ownable/library.cairo" - }, - "start_col": 6, - "start_line": 15 - }, - "While handling event:" - ], - "start_col": 84, - "start_line": 1 - }, - "While expanding the reference '__data_ptr' in:" - ], - "start_col": 6, - "start_line": 15 - }, - "While handling event:" - ], - "start_col": 12, - "start_line": 4 - } - }, - "246": { - "accessible_scopes": [ - "openzeppelin.access.ownable.library", - "openzeppelin.access.ownable.library.OwnershipTransferred", - "openzeppelin.access.ownable.library.OwnershipTransferred.emit" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 95, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/event/OwnershipTransferred/6150feec30bd48bfd0f446ed8c155a6d911a2c3fb3ec7a980733900416819259.cairo" - }, - "parent_location": [ - { - "end_col": 26, - "end_line": 15, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/access/ownable/library.cairo" - }, - "start_col": 6, - "start_line": 15 - }, - "While handling event:" - ], - "start_col": 1, - "start_line": 1 - } - }, - "248": { - "accessible_scopes": [ - "openzeppelin.access.ownable.library", - "openzeppelin.access.ownable.library.OwnershipTransferred", - "openzeppelin.access.ownable.library.OwnershipTransferred.emit" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 46, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/event/OwnershipTransferred/a7a8ae41be29ac9f4f6c3b7837c448d787ca051dd1ade98f409e54d33d112504.cairo" - }, - "parent_location": [ - { - "end_col": 26, - "end_line": 15, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/access/ownable/library.cairo" - }, - "parent_location": [ - { - "end_col": 46, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/event/OwnershipTransferred/a7a8ae41be29ac9f4f6c3b7837c448d787ca051dd1ade98f409e54d33d112504.cairo" - }, - "parent_location": [ - { - "end_col": 26, - "end_line": 15, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/access/ownable/library.cairo" - }, - "parent_location": [ - { - "end_col": 11, - "end_line": 2, - "input_file": { - "filename": "autogen/starknet/event/OwnershipTransferred/6150feec30bd48bfd0f446ed8c155a6d911a2c3fb3ec7a980733900416819259.cairo" - }, - "parent_location": [ - { - "end_col": 26, - "end_line": 15, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/access/ownable/library.cairo" - }, - "start_col": 6, - "start_line": 15 - }, - "While handling event:" - ], - "start_col": 1, - "start_line": 2 - }, - "While trying to retrieve the implicit argument 'range_check_ptr' in:" - ], - "start_col": 6, - "start_line": 15 - }, - "While handling event:" - ], - "start_col": 31, - "start_line": 1 - }, - "While expanding the reference 'range_check_ptr' in:" - ], - "start_col": 6, - "start_line": 15 - }, - "While handling event:" - ], - "start_col": 31, - "start_line": 1 - } - }, - "249": { - "accessible_scopes": [ - "openzeppelin.access.ownable.library", - "openzeppelin.access.ownable.library.OwnershipTransferred", - "openzeppelin.access.ownable.library.OwnershipTransferred.emit" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 11, - "end_line": 2, - "input_file": { - "filename": "autogen/starknet/event/OwnershipTransferred/6150feec30bd48bfd0f446ed8c155a6d911a2c3fb3ec7a980733900416819259.cairo" - }, - "parent_location": [ - { - "end_col": 26, - "end_line": 15, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/access/ownable/library.cairo" - }, - "start_col": 6, - "start_line": 15 - }, - "While handling event:" - ], - "start_col": 1, - "start_line": 2 - } - }, - "250": { - "accessible_scopes": [ - "openzeppelin.access.ownable.library", - "openzeppelin.access.ownable.library.Ownable_owner", - "openzeppelin.access.ownable.library.Ownable_owner.addr" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 41, - "end_line": 7, - "input_file": { - "filename": "autogen/starknet/storage_var/Ownable_owner/impl.cairo" - }, - "parent_location": [ - { - "end_col": 41, - "end_line": 7, - "input_file": { - "filename": "autogen/starknet/storage_var/Ownable_owner/decl.cairo" - }, - "parent_location": [ - { - "end_col": 26, - "end_line": 9, - "input_file": { - "filename": "autogen/starknet/storage_var/Ownable_owner/impl.cairo" - }, - "start_col": 9, - "start_line": 9 - }, - "While trying to retrieve the implicit argument 'pedersen_ptr' in:" - ], - "start_col": 15, - "start_line": 7 - }, - "While expanding the reference 'pedersen_ptr' in:" - ], - "start_col": 15, - "start_line": 7 - } - }, - "251": { - "accessible_scopes": [ - "openzeppelin.access.ownable.library", - "openzeppelin.access.ownable.library.Ownable_owner", - "openzeppelin.access.ownable.library.Ownable_owner.addr" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 58, - "end_line": 7, - "input_file": { - "filename": "autogen/starknet/storage_var/Ownable_owner/impl.cairo" - }, - "parent_location": [ - { - "end_col": 58, - "end_line": 7, - "input_file": { - "filename": "autogen/starknet/storage_var/Ownable_owner/decl.cairo" - }, - "parent_location": [ - { - "end_col": 26, - "end_line": 9, - "input_file": { - "filename": "autogen/starknet/storage_var/Ownable_owner/impl.cairo" - }, - "start_col": 9, - "start_line": 9 - }, - "While trying to retrieve the implicit argument 'range_check_ptr' in:" - ], - "start_col": 43, - "start_line": 7 - }, - "While expanding the reference 'range_check_ptr' in:" - ], - "start_col": 43, - "start_line": 7 - } - }, - "252": { - "accessible_scopes": [ - "openzeppelin.access.ownable.library", - "openzeppelin.access.ownable.library.Ownable_owner", - "openzeppelin.access.ownable.library.Ownable_owner.addr" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 95, - "end_line": 8, - "input_file": { - "filename": "autogen/starknet/storage_var/Ownable_owner/impl.cairo" - }, - "parent_location": [ - { - "end_col": 24, - "end_line": 9, - "input_file": { - "filename": "autogen/starknet/storage_var/Ownable_owner/impl.cairo" - }, - "start_col": 21, - "start_line": 9 - }, - "While expanding the reference 'res' in:" - ], - "start_col": 19, - "start_line": 8 - } - }, - "254": { - "accessible_scopes": [ - "openzeppelin.access.ownable.library", - "openzeppelin.access.ownable.library.Ownable_owner", - "openzeppelin.access.ownable.library.Ownable_owner.addr" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 26, - "end_line": 9, - "input_file": { - "filename": "autogen/starknet/storage_var/Ownable_owner/impl.cairo" - }, - "start_col": 9, - "start_line": 9 - } - }, - "255": { - "accessible_scopes": [ - "openzeppelin.access.ownable.library", - "openzeppelin.access.ownable.library.Ownable_owner", - "openzeppelin.access.ownable.library.Ownable_owner.read" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 61, - "end_line": 12, - "input_file": { - "filename": "autogen/starknet/storage_var/Ownable_owner/impl.cairo" - }, - "parent_location": [ - { - "end_col": 41, - "end_line": 7, - "input_file": { - "filename": "autogen/starknet/storage_var/Ownable_owner/decl.cairo" - }, - "parent_location": [ - { - "end_col": 36, - "end_line": 13, - "input_file": { - "filename": "autogen/starknet/storage_var/Ownable_owner/impl.cairo" - }, - "start_col": 30, - "start_line": 13 - }, - "While trying to retrieve the implicit argument 'pedersen_ptr' in:" - ], - "start_col": 15, - "start_line": 7 - }, - "While expanding the reference 'pedersen_ptr' in:" - ], - "start_col": 35, - "start_line": 12 - } - }, - "256": { - "accessible_scopes": [ - "openzeppelin.access.ownable.library", - "openzeppelin.access.ownable.library.Ownable_owner", - "openzeppelin.access.ownable.library.Ownable_owner.read" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 78, - "end_line": 12, - "input_file": { - "filename": "autogen/starknet/storage_var/Ownable_owner/impl.cairo" - }, - "parent_location": [ - { - "end_col": 58, - "end_line": 7, - "input_file": { - "filename": "autogen/starknet/storage_var/Ownable_owner/decl.cairo" - }, - "parent_location": [ - { - "end_col": 36, - "end_line": 13, - "input_file": { - "filename": "autogen/starknet/storage_var/Ownable_owner/impl.cairo" - }, - "start_col": 30, - "start_line": 13 - }, - "While trying to retrieve the implicit argument 'range_check_ptr' in:" - ], - "start_col": 43, - "start_line": 7 - }, - "While expanding the reference 'range_check_ptr' in:" - ], - "start_col": 63, - "start_line": 12 - } - }, - "257": { - "accessible_scopes": [ - "openzeppelin.access.ownable.library", - "openzeppelin.access.ownable.library.Ownable_owner", - "openzeppelin.access.ownable.library.Ownable_owner.read" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 36, - "end_line": 13, - "input_file": { - "filename": "autogen/starknet/storage_var/Ownable_owner/impl.cairo" - }, - "start_col": 30, - "start_line": 13 - } - }, - "259": { - "accessible_scopes": [ - "openzeppelin.access.ownable.library", - "openzeppelin.access.ownable.library.Ownable_owner", - "openzeppelin.access.ownable.library.Ownable_owner.read" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 33, - "end_line": 12, - "input_file": { - "filename": "autogen/starknet/storage_var/Ownable_owner/impl.cairo" - }, - "parent_location": [ - { - "end_col": 37, - "end_line": 352, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/starknet/common/syscalls.cairo" - }, - "parent_location": [ - { - "end_col": 75, - "end_line": 14, - "input_file": { - "filename": "autogen/starknet/storage_var/Ownable_owner/impl.cairo" - }, - "start_col": 37, - "start_line": 14 - }, - "While trying to retrieve the implicit argument 'syscall_ptr' in:" - ], - "start_col": 19, - "start_line": 352 - }, - "While expanding the reference 'syscall_ptr' in:" - ], - "start_col": 15, - "start_line": 12 - } - }, - "260": { - "accessible_scopes": [ - "openzeppelin.access.ownable.library", - "openzeppelin.access.ownable.library.Ownable_owner", - "openzeppelin.access.ownable.library.Ownable_owner.read" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 26, - "end_line": 13, - "input_file": { - "filename": "autogen/starknet/storage_var/Ownable_owner/impl.cairo" - }, - "parent_location": [ - { - "end_col": 70, - "end_line": 14, - "input_file": { - "filename": "autogen/starknet/storage_var/Ownable_owner/impl.cairo" - }, - "start_col": 58, - "start_line": 14 - }, - "While expanding the reference 'storage_addr' in:" - ], - "start_col": 14, - "start_line": 13 - } - }, - "261": { - "accessible_scopes": [ - "openzeppelin.access.ownable.library", - "openzeppelin.access.ownable.library.Ownable_owner", - "openzeppelin.access.ownable.library.Ownable_owner.read" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 75, - "end_line": 14, - "input_file": { - "filename": "autogen/starknet/storage_var/Ownable_owner/impl.cairo" - }, - "start_col": 37, - "start_line": 14 - } - }, - "263": { - "accessible_scopes": [ - "openzeppelin.access.ownable.library", - "openzeppelin.access.ownable.library.Ownable_owner", - "openzeppelin.access.ownable.library.Ownable_owner.read" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 37, - "end_line": 352, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/starknet/common/syscalls.cairo" - }, - "parent_location": [ - { - "end_col": 75, - "end_line": 14, - "input_file": { - "filename": "autogen/starknet/storage_var/Ownable_owner/impl.cairo" - }, - "parent_location": [ - { - "end_col": 42, - "end_line": 16, - "input_file": { - "filename": "autogen/starknet/storage_var/Ownable_owner/impl.cairo" - }, - "start_col": 31, - "start_line": 16 - }, - "While expanding the reference 'syscall_ptr' in:" - ], - "start_col": 37, - "start_line": 14 - }, - "While trying to update the implicit return value 'syscall_ptr' in:" - ], - "start_col": 19, - "start_line": 352 - } - }, - "264": { - "accessible_scopes": [ - "openzeppelin.access.ownable.library", - "openzeppelin.access.ownable.library.Ownable_owner", - "openzeppelin.access.ownable.library.Ownable_owner.read" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 41, - "end_line": 7, - "input_file": { - "filename": "autogen/starknet/storage_var/Ownable_owner/decl.cairo" - }, - "parent_location": [ - { - "end_col": 36, - "end_line": 13, - "input_file": { - "filename": "autogen/starknet/storage_var/Ownable_owner/impl.cairo" - }, - "parent_location": [ - { - "end_col": 44, - "end_line": 17, - "input_file": { - "filename": "autogen/starknet/storage_var/Ownable_owner/impl.cairo" - }, - "start_col": 32, - "start_line": 17 - }, - "While expanding the reference 'pedersen_ptr' in:" - ], - "start_col": 30, - "start_line": 13 - }, - "While trying to update the implicit return value 'pedersen_ptr' in:" - ], - "start_col": 15, - "start_line": 7 - } - }, - "265": { - "accessible_scopes": [ - "openzeppelin.access.ownable.library", - "openzeppelin.access.ownable.library.Ownable_owner", - "openzeppelin.access.ownable.library.Ownable_owner.read" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 58, - "end_line": 7, - "input_file": { - "filename": "autogen/starknet/storage_var/Ownable_owner/decl.cairo" - }, - "parent_location": [ - { - "end_col": 36, - "end_line": 13, - "input_file": { - "filename": "autogen/starknet/storage_var/Ownable_owner/impl.cairo" - }, - "parent_location": [ - { - "end_col": 50, - "end_line": 18, - "input_file": { - "filename": "autogen/starknet/storage_var/Ownable_owner/impl.cairo" - }, - "start_col": 35, - "start_line": 18 - }, - "While expanding the reference 'range_check_ptr' in:" - ], - "start_col": 30, - "start_line": 13 - }, - "While trying to update the implicit return value 'range_check_ptr' in:" - ], - "start_col": 43, - "start_line": 7 - } - }, - "266": { - "accessible_scopes": [ - "openzeppelin.access.ownable.library", - "openzeppelin.access.ownable.library.Ownable_owner", - "openzeppelin.access.ownable.library.Ownable_owner.read" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 33, - "end_line": 14, - "input_file": { - "filename": "autogen/starknet/storage_var/Ownable_owner/impl.cairo" - }, - "parent_location": [ - { - "end_col": 64, - "end_line": 19, - "input_file": { - "filename": "autogen/starknet/storage_var/Ownable_owner/impl.cairo" - }, - "start_col": 45, - "start_line": 19 - }, - "While expanding the reference '__storage_var_temp0' in:" - ], - "start_col": 14, - "start_line": 14 - } - }, - "267": { - "accessible_scopes": [ - "openzeppelin.access.ownable.library", - "openzeppelin.access.ownable.library.Ownable_owner", - "openzeppelin.access.ownable.library.Ownable_owner.read" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 55, - "end_line": 20, - "input_file": { - "filename": "autogen/starknet/storage_var/Ownable_owner/impl.cairo" - }, - "start_col": 9, - "start_line": 20 - } - }, - "268": { - "accessible_scopes": [ - "openzeppelin.access.ownable.library", - "openzeppelin.access.ownable.library.Ownable_owner", - "openzeppelin.access.ownable.library.Ownable_owner.write" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 62, - "end_line": 23, - "input_file": { - "filename": "autogen/starknet/storage_var/Ownable_owner/impl.cairo" - }, - "parent_location": [ - { - "end_col": 41, - "end_line": 7, - "input_file": { - "filename": "autogen/starknet/storage_var/Ownable_owner/decl.cairo" - }, - "parent_location": [ - { - "end_col": 36, - "end_line": 24, - "input_file": { - "filename": "autogen/starknet/storage_var/Ownable_owner/impl.cairo" - }, - "start_col": 30, - "start_line": 24 - }, - "While trying to retrieve the implicit argument 'pedersen_ptr' in:" - ], - "start_col": 15, - "start_line": 7 - }, - "While expanding the reference 'pedersen_ptr' in:" - ], - "start_col": 36, - "start_line": 23 - } - }, - "269": { - "accessible_scopes": [ - "openzeppelin.access.ownable.library", - "openzeppelin.access.ownable.library.Ownable_owner", - "openzeppelin.access.ownable.library.Ownable_owner.write" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 79, - "end_line": 23, - "input_file": { - "filename": "autogen/starknet/storage_var/Ownable_owner/impl.cairo" - }, - "parent_location": [ - { - "end_col": 58, - "end_line": 7, - "input_file": { - "filename": "autogen/starknet/storage_var/Ownable_owner/decl.cairo" - }, - "parent_location": [ - { - "end_col": 36, - "end_line": 24, - "input_file": { - "filename": "autogen/starknet/storage_var/Ownable_owner/impl.cairo" - }, - "start_col": 30, - "start_line": 24 - }, - "While trying to retrieve the implicit argument 'range_check_ptr' in:" - ], - "start_col": 43, - "start_line": 7 - }, - "While expanding the reference 'range_check_ptr' in:" - ], - "start_col": 64, - "start_line": 23 - } - }, - "270": { - "accessible_scopes": [ - "openzeppelin.access.ownable.library", - "openzeppelin.access.ownable.library.Ownable_owner", - "openzeppelin.access.ownable.library.Ownable_owner.write" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 36, - "end_line": 24, - "input_file": { - "filename": "autogen/starknet/storage_var/Ownable_owner/impl.cairo" - }, - "start_col": 30, - "start_line": 24 - } - }, - "272": { - "accessible_scopes": [ - "openzeppelin.access.ownable.library", - "openzeppelin.access.ownable.library.Ownable_owner", - "openzeppelin.access.ownable.library.Ownable_owner.write" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 34, - "end_line": 23, - "input_file": { - "filename": "autogen/starknet/storage_var/Ownable_owner/impl.cairo" - }, - "parent_location": [ - { - "end_col": 38, - "end_line": 370, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/starknet/common/syscalls.cairo" - }, - "parent_location": [ - { - "end_col": 80, - "end_line": 25, - "input_file": { - "filename": "autogen/starknet/storage_var/Ownable_owner/impl.cairo" - }, - "start_col": 9, - "start_line": 25 - }, - "While trying to retrieve the implicit argument 'syscall_ptr' in:" - ], - "start_col": 20, - "start_line": 370 - }, - "While expanding the reference 'syscall_ptr' in:" - ], - "start_col": 16, - "start_line": 23 - } - }, - "273": { - "accessible_scopes": [ - "openzeppelin.access.ownable.library", - "openzeppelin.access.ownable.library.Ownable_owner", - "openzeppelin.access.ownable.library.Ownable_owner.write" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 26, - "end_line": 24, - "input_file": { - "filename": "autogen/starknet/storage_var/Ownable_owner/impl.cairo" - }, - "parent_location": [ - { - "end_col": 43, - "end_line": 25, - "input_file": { - "filename": "autogen/starknet/storage_var/Ownable_owner/impl.cairo" - }, - "start_col": 31, - "start_line": 25 - }, - "While expanding the reference 'storage_addr' in:" - ], - "start_col": 14, - "start_line": 24 - } - }, - "274": { - "accessible_scopes": [ - "openzeppelin.access.ownable.library", - "openzeppelin.access.ownable.library.Ownable_owner", - "openzeppelin.access.ownable.library.Ownable_owner.write" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 79, - "end_line": 25, - "input_file": { - "filename": "autogen/starknet/storage_var/Ownable_owner/impl.cairo" - }, - "start_col": 55, - "start_line": 25 - } - }, - "275": { - "accessible_scopes": [ - "openzeppelin.access.ownable.library", - "openzeppelin.access.ownable.library.Ownable_owner", - "openzeppelin.access.ownable.library.Ownable_owner.write" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 80, - "end_line": 25, - "input_file": { - "filename": "autogen/starknet/storage_var/Ownable_owner/impl.cairo" - }, - "start_col": 9, - "start_line": 25 - } - }, - "277": { - "accessible_scopes": [ - "openzeppelin.access.ownable.library", - "openzeppelin.access.ownable.library.Ownable_owner", - "openzeppelin.access.ownable.library.Ownable_owner.write" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 41, - "end_line": 7, - "input_file": { - "filename": "autogen/starknet/storage_var/Ownable_owner/decl.cairo" - }, - "parent_location": [ - { - "end_col": 36, - "end_line": 24, - "input_file": { - "filename": "autogen/starknet/storage_var/Ownable_owner/impl.cairo" - }, - "parent_location": [ - { - "end_col": 62, - "end_line": 19, - "input_file": { - "filename": "autogen/starknet/storage_var/Ownable_owner/decl.cairo" - }, - "parent_location": [ - { - "end_col": 19, - "end_line": 26, - "input_file": { - "filename": "autogen/starknet/storage_var/Ownable_owner/impl.cairo" - }, - "start_col": 9, - "start_line": 26 - }, - "While trying to retrieve the implicit argument 'pedersen_ptr' in:" - ], - "start_col": 36, - "start_line": 19 - }, - "While expanding the reference 'pedersen_ptr' in:" - ], - "start_col": 30, - "start_line": 24 - }, - "While trying to update the implicit return value 'pedersen_ptr' in:" - ], - "start_col": 15, - "start_line": 7 - } - }, - "278": { - "accessible_scopes": [ - "openzeppelin.access.ownable.library", - "openzeppelin.access.ownable.library.Ownable_owner", - "openzeppelin.access.ownable.library.Ownable_owner.write" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 58, - "end_line": 7, - "input_file": { - "filename": "autogen/starknet/storage_var/Ownable_owner/decl.cairo" - }, - "parent_location": [ - { - "end_col": 36, - "end_line": 24, - "input_file": { - "filename": "autogen/starknet/storage_var/Ownable_owner/impl.cairo" - }, - "parent_location": [ - { - "end_col": 79, - "end_line": 19, - "input_file": { - "filename": "autogen/starknet/storage_var/Ownable_owner/decl.cairo" - }, - "parent_location": [ - { - "end_col": 19, - "end_line": 26, - "input_file": { - "filename": "autogen/starknet/storage_var/Ownable_owner/impl.cairo" - }, - "start_col": 9, - "start_line": 26 - }, - "While trying to retrieve the implicit argument 'range_check_ptr' in:" - ], - "start_col": 64, - "start_line": 19 - }, - "While expanding the reference 'range_check_ptr' in:" - ], - "start_col": 30, - "start_line": 24 - }, - "While trying to update the implicit return value 'range_check_ptr' in:" - ], - "start_col": 43, - "start_line": 7 - } - }, - "279": { - "accessible_scopes": [ - "openzeppelin.access.ownable.library", - "openzeppelin.access.ownable.library.Ownable_owner", - "openzeppelin.access.ownable.library.Ownable_owner.write" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 19, - "end_line": 26, - "input_file": { - "filename": "autogen/starknet/storage_var/Ownable_owner/impl.cairo" - }, - "start_col": 9, - "start_line": 26 - } - }, - "280": { - "accessible_scopes": [ - "openzeppelin.access.ownable.library", - "openzeppelin.access.ownable.library.Ownable", - "openzeppelin.access.ownable.library.Ownable.initializer" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 40, - "end_line": 31, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/access/ownable/library.cairo" - }, - "parent_location": [ - { - "end_col": 48, - "end_line": 81, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/access/ownable/library.cairo" - }, - "parent_location": [ - { - "end_col": 35, - "end_line": 32, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/access/ownable/library.cairo" - }, - "start_col": 9, - "start_line": 32 - }, - "While trying to retrieve the implicit argument 'syscall_ptr' in:" - ], - "start_col": 30, - "start_line": 81 - }, - "While expanding the reference 'syscall_ptr' in:" - ], - "start_col": 22, - "start_line": 31 - } - }, - "281": { - "accessible_scopes": [ - "openzeppelin.access.ownable.library", - "openzeppelin.access.ownable.library.Ownable", - "openzeppelin.access.ownable.library.Ownable.initializer" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 68, - "end_line": 31, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/access/ownable/library.cairo" - }, - "parent_location": [ - { - "end_col": 76, - "end_line": 81, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/access/ownable/library.cairo" - }, - "parent_location": [ - { - "end_col": 35, - "end_line": 32, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/access/ownable/library.cairo" - }, - "start_col": 9, - "start_line": 32 - }, - "While trying to retrieve the implicit argument 'pedersen_ptr' in:" - ], - "start_col": 50, - "start_line": 81 - }, - "While expanding the reference 'pedersen_ptr' in:" - ], - "start_col": 42, - "start_line": 31 - } - }, - "282": { - "accessible_scopes": [ - "openzeppelin.access.ownable.library", - "openzeppelin.access.ownable.library.Ownable", - "openzeppelin.access.ownable.library.Ownable.initializer" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 85, - "end_line": 31, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/access/ownable/library.cairo" - }, - "parent_location": [ - { - "end_col": 93, - "end_line": 81, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/access/ownable/library.cairo" - }, - "parent_location": [ - { - "end_col": 35, - "end_line": 32, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/access/ownable/library.cairo" - }, - "start_col": 9, - "start_line": 32 - }, - "While trying to retrieve the implicit argument 'range_check_ptr' in:" - ], - "start_col": 78, - "start_line": 81 - }, - "While expanding the reference 'range_check_ptr' in:" - ], - "start_col": 70, - "start_line": 31 - } - }, - "283": { - "accessible_scopes": [ - "openzeppelin.access.ownable.library", - "openzeppelin.access.ownable.library.Ownable", - "openzeppelin.access.ownable.library.Ownable.initializer" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 98, - "end_line": 31, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/access/ownable/library.cairo" - }, - "parent_location": [ - { - "end_col": 34, - "end_line": 32, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/access/ownable/library.cairo" - }, - "start_col": 29, - "start_line": 32 - }, - "While expanding the reference 'owner' in:" - ], - "start_col": 87, - "start_line": 31 - } - }, - "284": { - "accessible_scopes": [ - "openzeppelin.access.ownable.library", - "openzeppelin.access.ownable.library.Ownable", - "openzeppelin.access.ownable.library.Ownable.initializer" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 35, - "end_line": 32, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/access/ownable/library.cairo" - }, - "start_col": 9, - "start_line": 32 - } - }, - "286": { - "accessible_scopes": [ - "openzeppelin.access.ownable.library", - "openzeppelin.access.ownable.library.Ownable", - "openzeppelin.access.ownable.library.Ownable.initializer" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 19, - "end_line": 33, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/access/ownable/library.cairo" - }, - "start_col": 9, - "start_line": 33 - } - }, - "287": { - "accessible_scopes": [ - "openzeppelin.access.ownable.library", - "openzeppelin.access.ownable.library.Ownable", - "openzeppelin.access.ownable.library.Ownable.assert_only_owner" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 46, - "end_line": 40, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/access/ownable/library.cairo" - }, - "parent_location": [ - { - "end_col": 34, - "end_line": 56, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/access/ownable/library.cairo" - }, - "parent_location": [ - { - "end_col": 38, - "end_line": 41, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/access/ownable/library.cairo" - }, - "start_col": 23, - "start_line": 41 - }, - "While trying to retrieve the implicit argument 'syscall_ptr' in:" - ], - "start_col": 16, - "start_line": 56 - }, - "While expanding the reference 'syscall_ptr' in:" - ], - "start_col": 28, - "start_line": 40 - } - }, - "288": { - "accessible_scopes": [ - "openzeppelin.access.ownable.library", - "openzeppelin.access.ownable.library.Ownable", - "openzeppelin.access.ownable.library.Ownable.assert_only_owner" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 74, - "end_line": 40, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/access/ownable/library.cairo" - }, - "parent_location": [ - { - "end_col": 62, - "end_line": 56, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/access/ownable/library.cairo" - }, - "parent_location": [ - { - "end_col": 38, - "end_line": 41, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/access/ownable/library.cairo" - }, - "start_col": 23, - "start_line": 41 - }, - "While trying to retrieve the implicit argument 'pedersen_ptr' in:" - ], - "start_col": 36, - "start_line": 56 - }, - "While expanding the reference 'pedersen_ptr' in:" - ], - "start_col": 48, - "start_line": 40 - } - }, - "289": { - "accessible_scopes": [ - "openzeppelin.access.ownable.library", - "openzeppelin.access.ownable.library.Ownable", - "openzeppelin.access.ownable.library.Ownable.assert_only_owner" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 91, - "end_line": 40, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/access/ownable/library.cairo" - }, - "parent_location": [ - { - "end_col": 79, - "end_line": 56, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/access/ownable/library.cairo" - }, - "parent_location": [ - { - "end_col": 38, - "end_line": 41, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/access/ownable/library.cairo" - }, - "start_col": 23, - "start_line": 41 - }, - "While trying to retrieve the implicit argument 'range_check_ptr' in:" - ], - "start_col": 64, - "start_line": 56 - }, - "While expanding the reference 'range_check_ptr' in:" - ], - "start_col": 76, - "start_line": 40 - } - }, - "290": { - "accessible_scopes": [ - "openzeppelin.access.ownable.library", - "openzeppelin.access.ownable.library.Ownable", - "openzeppelin.access.ownable.library.Ownable.assert_only_owner" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 38, - "end_line": 41, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/access/ownable/library.cairo" - }, - "start_col": 23, - "start_line": 41 - } - }, - "292": { - "accessible_scopes": [ - "openzeppelin.access.ownable.library", - "openzeppelin.access.ownable.library.Ownable", - "openzeppelin.access.ownable.library.Ownable.assert_only_owner" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 34, - "end_line": 56, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/access/ownable/library.cairo" - }, - "parent_location": [ - { - "end_col": 38, - "end_line": 41, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/access/ownable/library.cairo" - }, - "parent_location": [ - { - "end_col": 43, - "end_line": 200, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/starknet/common/syscalls.cairo" - }, - "parent_location": [ - { - "end_col": 44, - "end_line": 42, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/access/ownable/library.cairo" - }, - "start_col": 24, - "start_line": 42 - }, - "While trying to retrieve the implicit argument 'syscall_ptr' in:" - ], - "start_col": 25, - "start_line": 200 - }, - "While expanding the reference 'syscall_ptr' in:" - ], - "start_col": 23, - "start_line": 41 - }, - "While trying to update the implicit return value 'syscall_ptr' in:" - ], - "start_col": 16, - "start_line": 56 - } - }, - "293": { - "accessible_scopes": [ - "openzeppelin.access.ownable.library", - "openzeppelin.access.ownable.library.Ownable", - "openzeppelin.access.ownable.library.Ownable.assert_only_owner" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 44, - "end_line": 42, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/access/ownable/library.cairo" - }, - "start_col": 24, - "start_line": 42 - } - }, - "295": { - "accessible_scopes": [ - "openzeppelin.access.ownable.library", - "openzeppelin.access.ownable.library.Ownable", - "openzeppelin.access.ownable.library.Ownable.assert_only_owner" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 36, - "end_line": 44, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/access/ownable/library.cairo" - }, - "start_col": 13, - "start_line": 44 - } - }, - "297": { - "accessible_scopes": [ - "openzeppelin.access.ownable.library", - "openzeppelin.access.ownable.library.Ownable", - "openzeppelin.access.ownable.library.Ownable.assert_only_owner" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 35, - "end_line": 47, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/access/ownable/library.cairo" - }, - "start_col": 13, - "start_line": 47 - } - }, - "298": { - "accessible_scopes": [ - "openzeppelin.access.ownable.library", - "openzeppelin.access.ownable.library.Ownable", - "openzeppelin.access.ownable.library.Ownable.assert_only_owner" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 43, - "end_line": 200, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/starknet/common/syscalls.cairo" - }, - "parent_location": [ - { - "end_col": 44, - "end_line": 42, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/access/ownable/library.cairo" - }, - "parent_location": [ - { - "end_col": 46, - "end_line": 40, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/access/ownable/library.cairo" - }, - "parent_location": [ - { - "end_col": 19, - "end_line": 49, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/access/ownable/library.cairo" - }, - "start_col": 9, - "start_line": 49 - }, - "While trying to retrieve the implicit argument 'syscall_ptr' in:" - ], - "start_col": 28, - "start_line": 40 - }, - "While expanding the reference 'syscall_ptr' in:" - ], - "start_col": 24, - "start_line": 42 - }, - "While trying to update the implicit return value 'syscall_ptr' in:" - ], - "start_col": 25, - "start_line": 200 - } - }, - "299": { - "accessible_scopes": [ - "openzeppelin.access.ownable.library", - "openzeppelin.access.ownable.library.Ownable", - "openzeppelin.access.ownable.library.Ownable.assert_only_owner" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 62, - "end_line": 56, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/access/ownable/library.cairo" - }, - "parent_location": [ - { - "end_col": 38, - "end_line": 41, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/access/ownable/library.cairo" - }, - "parent_location": [ - { - "end_col": 74, - "end_line": 40, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/access/ownable/library.cairo" - }, - "parent_location": [ - { - "end_col": 19, - "end_line": 49, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/access/ownable/library.cairo" - }, - "start_col": 9, - "start_line": 49 - }, - "While trying to retrieve the implicit argument 'pedersen_ptr' in:" - ], - "start_col": 48, - "start_line": 40 - }, - "While expanding the reference 'pedersen_ptr' in:" - ], - "start_col": 23, - "start_line": 41 - }, - "While trying to update the implicit return value 'pedersen_ptr' in:" - ], - "start_col": 36, - "start_line": 56 - } - }, - "300": { - "accessible_scopes": [ - "openzeppelin.access.ownable.library", - "openzeppelin.access.ownable.library.Ownable", - "openzeppelin.access.ownable.library.Ownable.assert_only_owner" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 79, - "end_line": 56, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/access/ownable/library.cairo" - }, - "parent_location": [ - { - "end_col": 38, - "end_line": 41, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/access/ownable/library.cairo" - }, - "parent_location": [ - { - "end_col": 91, - "end_line": 40, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/access/ownable/library.cairo" - }, - "parent_location": [ - { - "end_col": 19, - "end_line": 49, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/access/ownable/library.cairo" - }, - "start_col": 9, - "start_line": 49 - }, - "While trying to retrieve the implicit argument 'range_check_ptr' in:" - ], - "start_col": 76, - "start_line": 40 - }, - "While expanding the reference 'range_check_ptr' in:" - ], - "start_col": 23, - "start_line": 41 - }, - "While trying to update the implicit return value 'range_check_ptr' in:" - ], - "start_col": 64, - "start_line": 56 - } - }, - "301": { - "accessible_scopes": [ - "openzeppelin.access.ownable.library", - "openzeppelin.access.ownable.library.Ownable", - "openzeppelin.access.ownable.library.Ownable.assert_only_owner" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 19, - "end_line": 49, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/access/ownable/library.cairo" - }, - "start_col": 9, - "start_line": 49 - } - }, - "302": { - "accessible_scopes": [ - "openzeppelin.access.ownable.library", - "openzeppelin.access.ownable.library.Ownable", - "openzeppelin.access.ownable.library.Ownable.owner" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 34, - "end_line": 56, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/access/ownable/library.cairo" - }, - "parent_location": [ - { - "end_col": 33, - "end_line": 13, - "input_file": { - "filename": "autogen/starknet/storage_var/Ownable_owner/decl.cairo" - }, - "parent_location": [ - { - "end_col": 36, - "end_line": 57, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/access/ownable/library.cairo" - }, - "start_col": 16, - "start_line": 57 - }, - "While trying to retrieve the implicit argument 'syscall_ptr' in:" - ], - "start_col": 15, - "start_line": 13 - }, - "While expanding the reference 'syscall_ptr' in:" - ], - "start_col": 16, - "start_line": 56 - } - }, - "303": { - "accessible_scopes": [ - "openzeppelin.access.ownable.library", - "openzeppelin.access.ownable.library.Ownable", - "openzeppelin.access.ownable.library.Ownable.owner" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 62, - "end_line": 56, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/access/ownable/library.cairo" - }, - "parent_location": [ - { - "end_col": 61, - "end_line": 13, - "input_file": { - "filename": "autogen/starknet/storage_var/Ownable_owner/decl.cairo" - }, - "parent_location": [ - { - "end_col": 36, - "end_line": 57, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/access/ownable/library.cairo" - }, - "start_col": 16, - "start_line": 57 - }, - "While trying to retrieve the implicit argument 'pedersen_ptr' in:" - ], - "start_col": 35, - "start_line": 13 - }, - "While expanding the reference 'pedersen_ptr' in:" - ], - "start_col": 36, - "start_line": 56 - } - }, - "304": { - "accessible_scopes": [ - "openzeppelin.access.ownable.library", - "openzeppelin.access.ownable.library.Ownable", - "openzeppelin.access.ownable.library.Ownable.owner" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 79, - "end_line": 56, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/access/ownable/library.cairo" - }, - "parent_location": [ - { - "end_col": 78, - "end_line": 13, - "input_file": { - "filename": "autogen/starknet/storage_var/Ownable_owner/decl.cairo" - }, - "parent_location": [ - { - "end_col": 36, - "end_line": 57, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/access/ownable/library.cairo" - }, - "start_col": 16, - "start_line": 57 - }, - "While trying to retrieve the implicit argument 'range_check_ptr' in:" - ], - "start_col": 63, - "start_line": 13 - }, - "While expanding the reference 'range_check_ptr' in:" - ], - "start_col": 64, - "start_line": 56 - } - }, - "305": { - "accessible_scopes": [ - "openzeppelin.access.ownable.library", - "openzeppelin.access.ownable.library.Ownable", - "openzeppelin.access.ownable.library.Ownable.owner" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 36, - "end_line": 57, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/access/ownable/library.cairo" - }, - "start_col": 16, - "start_line": 57 - } - }, - "307": { - "accessible_scopes": [ - "openzeppelin.access.ownable.library", - "openzeppelin.access.ownable.library.Ownable", - "openzeppelin.access.ownable.library.Ownable.owner" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 37, - "end_line": 57, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/access/ownable/library.cairo" - }, - "start_col": 9, - "start_line": 57 - } - }, - "308": { - "accessible_scopes": [ - "openzeppelin.access.ownable.library", - "openzeppelin.access.ownable.library.Ownable", - "openzeppelin.access.ownable.library.Ownable.transfer_ownership" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 24, - "end_line": 61, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/access/ownable/library.cairo" - }, - "parent_location": [ - { - "end_col": 38, - "end_line": 64, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/access/ownable/library.cairo" - }, - "start_col": 29, - "start_line": 64 - }, - "While expanding the reference 'new_owner' in:" - ], - "start_col": 9, - "start_line": 61 - } - }, - "309": { - "accessible_scopes": [ - "openzeppelin.access.ownable.library", - "openzeppelin.access.ownable.library.Ownable", - "openzeppelin.access.ownable.library.Ownable.transfer_ownership" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 39, - "end_line": 64, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/access/ownable/library.cairo" - }, - "start_col": 13, - "start_line": 64 - } - }, - "311": { - "accessible_scopes": [ - "openzeppelin.access.ownable.library", - "openzeppelin.access.ownable.library.Ownable", - "openzeppelin.access.ownable.library.Ownable.transfer_ownership" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 47, - "end_line": 60, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/access/ownable/library.cairo" - }, - "parent_location": [ - { - "end_col": 46, - "end_line": 40, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/access/ownable/library.cairo" - }, - "parent_location": [ - { - "end_col": 28, - "end_line": 66, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/access/ownable/library.cairo" - }, - "start_col": 9, - "start_line": 66 - }, - "While trying to retrieve the implicit argument 'syscall_ptr' in:" - ], - "start_col": 28, - "start_line": 40 - }, - "While expanding the reference 'syscall_ptr' in:" - ], - "start_col": 29, - "start_line": 60 - } - }, - "312": { - "accessible_scopes": [ - "openzeppelin.access.ownable.library", - "openzeppelin.access.ownable.library.Ownable", - "openzeppelin.access.ownable.library.Ownable.transfer_ownership" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 75, - "end_line": 60, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/access/ownable/library.cairo" - }, - "parent_location": [ - { - "end_col": 74, - "end_line": 40, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/access/ownable/library.cairo" - }, - "parent_location": [ - { - "end_col": 28, - "end_line": 66, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/access/ownable/library.cairo" - }, - "start_col": 9, - "start_line": 66 - }, - "While trying to retrieve the implicit argument 'pedersen_ptr' in:" - ], - "start_col": 48, - "start_line": 40 - }, - "While expanding the reference 'pedersen_ptr' in:" - ], - "start_col": 49, - "start_line": 60 - } - }, - "313": { - "accessible_scopes": [ - "openzeppelin.access.ownable.library", - "openzeppelin.access.ownable.library.Ownable", - "openzeppelin.access.ownable.library.Ownable.transfer_ownership" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 92, - "end_line": 60, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/access/ownable/library.cairo" - }, - "parent_location": [ - { - "end_col": 91, - "end_line": 40, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/access/ownable/library.cairo" - }, - "parent_location": [ - { - "end_col": 28, - "end_line": 66, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/access/ownable/library.cairo" - }, - "start_col": 9, - "start_line": 66 - }, - "While trying to retrieve the implicit argument 'range_check_ptr' in:" - ], - "start_col": 76, - "start_line": 40 - }, - "While expanding the reference 'range_check_ptr' in:" - ], - "start_col": 77, - "start_line": 60 - } - }, - "314": { - "accessible_scopes": [ - "openzeppelin.access.ownable.library", - "openzeppelin.access.ownable.library.Ownable", - "openzeppelin.access.ownable.library.Ownable.transfer_ownership" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 28, - "end_line": 66, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/access/ownable/library.cairo" - }, - "start_col": 9, - "start_line": 66 - } - }, - "316": { - "accessible_scopes": [ - "openzeppelin.access.ownable.library", - "openzeppelin.access.ownable.library.Ownable", - "openzeppelin.access.ownable.library.Ownable.transfer_ownership" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 24, - "end_line": 61, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/access/ownable/library.cairo" - }, - "parent_location": [ - { - "end_col": 38, - "end_line": 67, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/access/ownable/library.cairo" - }, - "start_col": 29, - "start_line": 67 - }, - "While expanding the reference 'new_owner' in:" - ], - "start_col": 9, - "start_line": 61 - } - }, - "317": { - "accessible_scopes": [ - "openzeppelin.access.ownable.library", - "openzeppelin.access.ownable.library.Ownable", - "openzeppelin.access.ownable.library.Ownable.transfer_ownership" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 39, - "end_line": 67, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/access/ownable/library.cairo" - }, - "start_col": 9, - "start_line": 67 - } - }, - "319": { - "accessible_scopes": [ - "openzeppelin.access.ownable.library", - "openzeppelin.access.ownable.library.Ownable", - "openzeppelin.access.ownable.library.Ownable.transfer_ownership" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 19, - "end_line": 68, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/access/ownable/library.cairo" - }, - "start_col": 9, - "start_line": 68 - } - }, - "320": { - "accessible_scopes": [ - "openzeppelin.access.ownable.library", - "openzeppelin.access.ownable.library.Ownable", - "openzeppelin.access.ownable.library.Ownable._transfer_ownership" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 48, - "end_line": 81, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/access/ownable/library.cairo" - }, - "parent_location": [ - { - "end_col": 34, - "end_line": 56, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/access/ownable/library.cairo" - }, - "parent_location": [ - { - "end_col": 53, - "end_line": 84, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/access/ownable/library.cairo" - }, - "start_col": 38, - "start_line": 84 - }, - "While trying to retrieve the implicit argument 'syscall_ptr' in:" - ], - "start_col": 16, - "start_line": 56 - }, - "While expanding the reference 'syscall_ptr' in:" - ], - "start_col": 30, - "start_line": 81 - } - }, - "321": { - "accessible_scopes": [ - "openzeppelin.access.ownable.library", - "openzeppelin.access.ownable.library.Ownable", - "openzeppelin.access.ownable.library.Ownable._transfer_ownership" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 76, - "end_line": 81, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/access/ownable/library.cairo" - }, - "parent_location": [ - { - "end_col": 62, - "end_line": 56, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/access/ownable/library.cairo" - }, - "parent_location": [ - { - "end_col": 53, - "end_line": 84, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/access/ownable/library.cairo" - }, - "start_col": 38, - "start_line": 84 - }, - "While trying to retrieve the implicit argument 'pedersen_ptr' in:" - ], - "start_col": 36, - "start_line": 56 - }, - "While expanding the reference 'pedersen_ptr' in:" - ], - "start_col": 50, - "start_line": 81 - } - }, - "322": { - "accessible_scopes": [ - "openzeppelin.access.ownable.library", - "openzeppelin.access.ownable.library.Ownable", - "openzeppelin.access.ownable.library.Ownable._transfer_ownership" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 93, - "end_line": 81, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/access/ownable/library.cairo" - }, - "parent_location": [ - { - "end_col": 79, - "end_line": 56, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/access/ownable/library.cairo" - }, - "parent_location": [ - { - "end_col": 53, - "end_line": 84, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/access/ownable/library.cairo" - }, - "start_col": 38, - "start_line": 84 - }, - "While trying to retrieve the implicit argument 'range_check_ptr' in:" - ], - "start_col": 64, - "start_line": 56 - }, - "While expanding the reference 'range_check_ptr' in:" - ], - "start_col": 78, - "start_line": 81 - } - }, - "323": { - "accessible_scopes": [ - "openzeppelin.access.ownable.library", - "openzeppelin.access.ownable.library.Ownable", - "openzeppelin.access.ownable.library.Ownable._transfer_ownership" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 53, - "end_line": 84, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/access/ownable/library.cairo" - }, - "start_col": 38, - "start_line": 84 - } - }, - "325": { - "accessible_scopes": [ - "openzeppelin.access.ownable.library", - "openzeppelin.access.ownable.library.Ownable", - "openzeppelin.access.ownable.library.Ownable._transfer_ownership" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 34, - "end_line": 56, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/access/ownable/library.cairo" - }, - "parent_location": [ - { - "end_col": 53, - "end_line": 84, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/access/ownable/library.cairo" - }, - "parent_location": [ - { - "end_col": 34, - "end_line": 19, - "input_file": { - "filename": "autogen/starknet/storage_var/Ownable_owner/decl.cairo" - }, - "parent_location": [ - { - "end_col": 39, - "end_line": 85, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/access/ownable/library.cairo" - }, - "start_col": 9, - "start_line": 85 - }, - "While trying to retrieve the implicit argument 'syscall_ptr' in:" - ], - "start_col": 16, - "start_line": 19 - }, - "While expanding the reference 'syscall_ptr' in:" - ], - "start_col": 38, - "start_line": 84 - }, - "While trying to update the implicit return value 'syscall_ptr' in:" - ], - "start_col": 16, - "start_line": 56 - } - }, - "326": { - "accessible_scopes": [ - "openzeppelin.access.ownable.library", - "openzeppelin.access.ownable.library.Ownable", - "openzeppelin.access.ownable.library.Ownable._transfer_ownership" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 62, - "end_line": 56, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/access/ownable/library.cairo" - }, - "parent_location": [ - { - "end_col": 53, - "end_line": 84, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/access/ownable/library.cairo" - }, - "parent_location": [ - { - "end_col": 62, - "end_line": 19, - "input_file": { - "filename": "autogen/starknet/storage_var/Ownable_owner/decl.cairo" - }, - "parent_location": [ - { - "end_col": 39, - "end_line": 85, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/access/ownable/library.cairo" - }, - "start_col": 9, - "start_line": 85 - }, - "While trying to retrieve the implicit argument 'pedersen_ptr' in:" - ], - "start_col": 36, - "start_line": 19 - }, - "While expanding the reference 'pedersen_ptr' in:" - ], - "start_col": 38, - "start_line": 84 - }, - "While trying to update the implicit return value 'pedersen_ptr' in:" - ], - "start_col": 36, - "start_line": 56 - } - }, - "327": { - "accessible_scopes": [ - "openzeppelin.access.ownable.library", - "openzeppelin.access.ownable.library.Ownable", - "openzeppelin.access.ownable.library.Ownable._transfer_ownership" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 79, - "end_line": 56, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/access/ownable/library.cairo" - }, - "parent_location": [ - { - "end_col": 53, - "end_line": 84, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/access/ownable/library.cairo" - }, - "parent_location": [ - { - "end_col": 79, - "end_line": 19, - "input_file": { - "filename": "autogen/starknet/storage_var/Ownable_owner/decl.cairo" - }, - "parent_location": [ - { - "end_col": 39, - "end_line": 85, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/access/ownable/library.cairo" - }, - "start_col": 9, - "start_line": 85 - }, - "While trying to retrieve the implicit argument 'range_check_ptr' in:" - ], - "start_col": 64, - "start_line": 19 - }, - "While expanding the reference 'range_check_ptr' in:" - ], - "start_col": 38, - "start_line": 84 - }, - "While trying to update the implicit return value 'range_check_ptr' in:" - ], - "start_col": 64, - "start_line": 56 - } - }, - "328": { - "accessible_scopes": [ - "openzeppelin.access.ownable.library", - "openzeppelin.access.ownable.library.Ownable", - "openzeppelin.access.ownable.library.Ownable._transfer_ownership" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 24, - "end_line": 82, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/access/ownable/library.cairo" - }, - "parent_location": [ - { - "end_col": 38, - "end_line": 85, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/access/ownable/library.cairo" - }, - "start_col": 29, - "start_line": 85 - }, - "While expanding the reference 'new_owner' in:" - ], - "start_col": 9, - "start_line": 82 - } - }, - "329": { - "accessible_scopes": [ - "openzeppelin.access.ownable.library", - "openzeppelin.access.ownable.library.Ownable", - "openzeppelin.access.ownable.library.Ownable._transfer_ownership" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 39, - "end_line": 85, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/access/ownable/library.cairo" - }, - "start_col": 9, - "start_line": 85 - } - }, - "331": { - "accessible_scopes": [ - "openzeppelin.access.ownable.library", - "openzeppelin.access.ownable.library.Ownable", - "openzeppelin.access.ownable.library.Ownable._transfer_ownership" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 34, - "end_line": 19, - "input_file": { - "filename": "autogen/starknet/storage_var/Ownable_owner/decl.cairo" - }, - "parent_location": [ - { - "end_col": 39, - "end_line": 85, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/access/ownable/library.cairo" - }, - "parent_location": [ - { - "end_col": 29, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/event/OwnershipTransferred/a7a8ae41be29ac9f4f6c3b7837c448d787ca051dd1ade98f409e54d33d112504.cairo" - }, - "parent_location": [ - { - "end_col": 26, - "end_line": 15, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/access/ownable/library.cairo" - }, - "parent_location": [ - { - "end_col": 61, - "end_line": 86, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/access/ownable/library.cairo" - }, - "start_col": 9, - "start_line": 86 - }, - "While trying to retrieve the implicit argument 'syscall_ptr' in:" - ], - "start_col": 6, - "start_line": 15 - }, - "While handling event:" - ], - "start_col": 11, - "start_line": 1 - }, - "While expanding the reference 'syscall_ptr' in:" - ], - "start_col": 9, - "start_line": 85 - }, - "While trying to update the implicit return value 'syscall_ptr' in:" - ], - "start_col": 16, - "start_line": 19 - } - }, - "332": { - "accessible_scopes": [ - "openzeppelin.access.ownable.library", - "openzeppelin.access.ownable.library.Ownable", - "openzeppelin.access.ownable.library.Ownable._transfer_ownership" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 79, - "end_line": 19, - "input_file": { - "filename": "autogen/starknet/storage_var/Ownable_owner/decl.cairo" - }, - "parent_location": [ - { - "end_col": 39, - "end_line": 85, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/access/ownable/library.cairo" - }, - "parent_location": [ - { - "end_col": 46, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/event/OwnershipTransferred/a7a8ae41be29ac9f4f6c3b7837c448d787ca051dd1ade98f409e54d33d112504.cairo" - }, - "parent_location": [ - { - "end_col": 26, - "end_line": 15, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/access/ownable/library.cairo" - }, - "parent_location": [ - { - "end_col": 61, - "end_line": 86, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/access/ownable/library.cairo" - }, - "start_col": 9, - "start_line": 86 - }, - "While trying to retrieve the implicit argument 'range_check_ptr' in:" - ], - "start_col": 6, - "start_line": 15 - }, - "While handling event:" - ], - "start_col": 31, - "start_line": 1 - }, - "While expanding the reference 'range_check_ptr' in:" - ], - "start_col": 9, - "start_line": 85 - }, - "While trying to update the implicit return value 'range_check_ptr' in:" - ], - "start_col": 64, - "start_line": 19 - } - }, - "333": { - "accessible_scopes": [ - "openzeppelin.access.ownable.library", - "openzeppelin.access.ownable.library.Ownable", - "openzeppelin.access.ownable.library.Ownable._transfer_ownership" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 34, - "end_line": 84, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/access/ownable/library.cairo" - }, - "parent_location": [ - { - "end_col": 49, - "end_line": 86, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/access/ownable/library.cairo" - }, - "start_col": 35, - "start_line": 86 - }, - "While expanding the reference 'previous_owner' in:" - ], - "start_col": 14, - "start_line": 84 - } - }, - "334": { - "accessible_scopes": [ - "openzeppelin.access.ownable.library", - "openzeppelin.access.ownable.library.Ownable", - "openzeppelin.access.ownable.library.Ownable._transfer_ownership" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 24, - "end_line": 82, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/access/ownable/library.cairo" - }, - "parent_location": [ - { - "end_col": 60, - "end_line": 86, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/access/ownable/library.cairo" - }, - "start_col": 51, - "start_line": 86 - }, - "While expanding the reference 'new_owner' in:" - ], - "start_col": 9, - "start_line": 82 - } - }, - "335": { - "accessible_scopes": [ - "openzeppelin.access.ownable.library", - "openzeppelin.access.ownable.library.Ownable", - "openzeppelin.access.ownable.library.Ownable._transfer_ownership" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 61, - "end_line": 86, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/access/ownable/library.cairo" - }, - "start_col": 9, - "start_line": 86 - } - }, - "337": { - "accessible_scopes": [ - "openzeppelin.access.ownable.library", - "openzeppelin.access.ownable.library.Ownable", - "openzeppelin.access.ownable.library.Ownable._transfer_ownership" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 29, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/event/OwnershipTransferred/a7a8ae41be29ac9f4f6c3b7837c448d787ca051dd1ade98f409e54d33d112504.cairo" - }, - "parent_location": [ - { - "end_col": 26, - "end_line": 15, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/access/ownable/library.cairo" - }, - "parent_location": [ - { - "end_col": 61, - "end_line": 86, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/access/ownable/library.cairo" - }, - "parent_location": [ - { - "end_col": 48, - "end_line": 81, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/access/ownable/library.cairo" - }, - "parent_location": [ - { - "end_col": 19, - "end_line": 87, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/access/ownable/library.cairo" - }, - "start_col": 9, - "start_line": 87 - }, - "While trying to retrieve the implicit argument 'syscall_ptr' in:" - ], - "start_col": 30, - "start_line": 81 - }, - "While expanding the reference 'syscall_ptr' in:" - ], - "start_col": 9, - "start_line": 86 - }, - "While trying to update the implicit return value 'syscall_ptr' in:" - ], - "start_col": 6, - "start_line": 15 - }, - "While handling event:" - ], - "start_col": 11, - "start_line": 1 - } - }, - "338": { - "accessible_scopes": [ - "openzeppelin.access.ownable.library", - "openzeppelin.access.ownable.library.Ownable", - "openzeppelin.access.ownable.library.Ownable._transfer_ownership" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 62, - "end_line": 19, - "input_file": { - "filename": "autogen/starknet/storage_var/Ownable_owner/decl.cairo" - }, - "parent_location": [ - { - "end_col": 39, - "end_line": 85, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/access/ownable/library.cairo" - }, - "parent_location": [ - { - "end_col": 76, - "end_line": 81, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/access/ownable/library.cairo" - }, - "parent_location": [ - { - "end_col": 19, - "end_line": 87, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/access/ownable/library.cairo" - }, - "start_col": 9, - "start_line": 87 - }, - "While trying to retrieve the implicit argument 'pedersen_ptr' in:" - ], - "start_col": 50, - "start_line": 81 - }, - "While expanding the reference 'pedersen_ptr' in:" - ], - "start_col": 9, - "start_line": 85 - }, - "While trying to update the implicit return value 'pedersen_ptr' in:" - ], - "start_col": 36, - "start_line": 19 - } - }, - "339": { - "accessible_scopes": [ - "openzeppelin.access.ownable.library", - "openzeppelin.access.ownable.library.Ownable", - "openzeppelin.access.ownable.library.Ownable._transfer_ownership" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 46, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/event/OwnershipTransferred/a7a8ae41be29ac9f4f6c3b7837c448d787ca051dd1ade98f409e54d33d112504.cairo" - }, - "parent_location": [ - { - "end_col": 26, - "end_line": 15, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/access/ownable/library.cairo" - }, - "parent_location": [ - { - "end_col": 61, - "end_line": 86, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/access/ownable/library.cairo" - }, - "parent_location": [ - { - "end_col": 93, - "end_line": 81, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/access/ownable/library.cairo" - }, - "parent_location": [ - { - "end_col": 19, - "end_line": 87, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/access/ownable/library.cairo" - }, - "start_col": 9, - "start_line": 87 - }, - "While trying to retrieve the implicit argument 'range_check_ptr' in:" - ], - "start_col": 78, - "start_line": 81 - }, - "While expanding the reference 'range_check_ptr' in:" - ], - "start_col": 9, - "start_line": 86 - }, - "While trying to update the implicit return value 'range_check_ptr' in:" - ], - "start_col": 6, - "start_line": 15 - }, - "While handling event:" - ], - "start_col": 31, - "start_line": 1 - } - }, - "340": { - "accessible_scopes": [ - "openzeppelin.access.ownable.library", - "openzeppelin.access.ownable.library.Ownable", - "openzeppelin.access.ownable.library.Ownable._transfer_ownership" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 19, - "end_line": 87, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/access/ownable/library.cairo" - }, - "start_col": 9, - "start_line": 87 - } - }, - "341": { - "accessible_scopes": [ - "starkware.cairo.common.math_cmp", - "starkware.cairo.common.math_cmp.is_not_zero" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 7, - "end_line": 8, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/math_cmp.cairo" - }, - "start_col": 5, - "start_line": 8 - } - }, - "343": { - "accessible_scopes": [ - "starkware.cairo.common.math_cmp", - "starkware.cairo.common.math_cmp.is_not_zero" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 17, - "end_line": 9, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/math_cmp.cairo" - }, - "start_col": 16, - "start_line": 9 - } - }, - "345": { - "accessible_scopes": [ - "starkware.cairo.common.math_cmp", - "starkware.cairo.common.math_cmp.is_not_zero" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 18, - "end_line": 9, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/math_cmp.cairo" - }, - "start_col": 9, - "start_line": 9 - } - }, - "346": { - "accessible_scopes": [ - "starkware.cairo.common.math_cmp", - "starkware.cairo.common.math_cmp.is_not_zero" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 13, - "end_line": 12, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/math_cmp.cairo" - }, - "start_col": 12, - "start_line": 12 - } - }, - "348": { - "accessible_scopes": [ - "starkware.cairo.common.math_cmp", - "starkware.cairo.common.math_cmp.is_not_zero" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 14, - "end_line": 12, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/math_cmp.cairo" - }, - "start_col": 5, - "start_line": 12 - } - }, - "349": { - "accessible_scopes": [ - "starkware.cairo.common.math_cmp", - "starkware.cairo.common.math_cmp.is_nn" - ], - "flow_tracking_data": null, - "hints": [ - { - "location": { - "end_col": 84, - "end_line": 19, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/math_cmp.cairo" - }, - "start_col": 5, - "start_line": 19 - }, - "n_prefix_newlines": 0 - } - ], - "inst": { - "end_col": 40, - "end_line": 20, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/math_cmp.cairo" - }, - "start_col": 5, - "start_line": 20 - } - }, - "351": { - "accessible_scopes": [ - "starkware.cairo.common.math_cmp", - "starkware.cairo.common.math_cmp.is_nn" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 26, - "end_line": 21, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/math_cmp.cairo" - }, - "start_col": 5, - "start_line": 21 - } - }, - "352": { - "accessible_scopes": [ - "starkware.cairo.common.math_cmp", - "starkware.cairo.common.math_cmp.is_nn" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 13, - "end_line": 22, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/math_cmp.cairo" - }, - "start_col": 5, - "start_line": 22 - } - }, - "354": { - "accessible_scopes": [ - "starkware.cairo.common.math_cmp", - "starkware.cairo.common.math_cmp.is_nn" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 46, - "end_line": 23, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/math_cmp.cairo" - }, - "parent_location": [ - { - "end_col": 27, - "end_line": 18, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/math_cmp.cairo" - }, - "parent_location": [ - { - "end_col": 14, - "end_line": 24, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/math_cmp.cairo" - }, - "start_col": 5, - "start_line": 24 - }, - "While trying to retrieve the implicit argument 'range_check_ptr' in:" - ], - "start_col": 12, - "start_line": 18 - }, - "While expanding the reference 'range_check_ptr' in:" - ], - "start_col": 27, - "start_line": 23 - } - }, - "356": { - "accessible_scopes": [ - "starkware.cairo.common.math_cmp", - "starkware.cairo.common.math_cmp.is_nn" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 13, - "end_line": 24, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/math_cmp.cairo" - }, - "start_col": 12, - "start_line": 24 - } - }, - "358": { - "accessible_scopes": [ - "starkware.cairo.common.math_cmp", - "starkware.cairo.common.math_cmp.is_nn" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 14, - "end_line": 24, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/math_cmp.cairo" - }, - "start_col": 5, - "start_line": 24 - } - }, - "359": { - "accessible_scopes": [ - "starkware.cairo.common.math_cmp", - "starkware.cairo.common.math_cmp.is_nn" - ], - "flow_tracking_data": null, - "hints": [ - { - "location": { - "end_col": 91, - "end_line": 27, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/math_cmp.cairo" - }, - "start_col": 5, - "start_line": 27 - }, - "n_prefix_newlines": 0 - } - ], - "inst": { - "end_col": 48, - "end_line": 28, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/math_cmp.cairo" - }, - "start_col": 5, - "start_line": 28 - } - }, - "361": { - "accessible_scopes": [ - "starkware.cairo.common.math_cmp", - "starkware.cairo.common.math_cmp.is_nn" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 35, - "end_line": 29, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/math_cmp.cairo" - }, - "start_col": 33, - "start_line": 29 - } - }, - "363": { - "accessible_scopes": [ - "starkware.cairo.common.math_cmp", - "starkware.cairo.common.math_cmp.is_nn" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 40, - "end_line": 29, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/math_cmp.cairo" - }, - "start_col": 32, - "start_line": 29 - } - }, - "365": { - "accessible_scopes": [ - "starkware.cairo.common.math_cmp", - "starkware.cairo.common.math_cmp.is_nn" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 41, - "end_line": 29, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/math_cmp.cairo" - }, - "start_col": 5, - "start_line": 29 - } - }, - "366": { - "accessible_scopes": [ - "starkware.cairo.common.math_cmp", - "starkware.cairo.common.math_cmp.is_nn" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 13, - "end_line": 30, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/math_cmp.cairo" - }, - "start_col": 5, - "start_line": 30 - } - }, - "368": { - "accessible_scopes": [ - "starkware.cairo.common.math_cmp", - "starkware.cairo.common.math_cmp.is_nn" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 46, - "end_line": 31, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/math_cmp.cairo" - }, - "parent_location": [ - { - "end_col": 27, - "end_line": 18, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/math_cmp.cairo" - }, - "parent_location": [ - { - "end_col": 14, - "end_line": 32, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/math_cmp.cairo" - }, - "start_col": 5, - "start_line": 32 - }, - "While trying to retrieve the implicit argument 'range_check_ptr' in:" - ], - "start_col": 12, - "start_line": 18 - }, - "While expanding the reference 'range_check_ptr' in:" - ], - "start_col": 27, - "start_line": 31 - } - }, - "370": { - "accessible_scopes": [ - "starkware.cairo.common.math_cmp", - "starkware.cairo.common.math_cmp.is_nn" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 13, - "end_line": 32, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/math_cmp.cairo" - }, - "start_col": 12, - "start_line": 32 - } - }, - "372": { - "accessible_scopes": [ - "starkware.cairo.common.math_cmp", - "starkware.cairo.common.math_cmp.is_nn" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 14, - "end_line": 32, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/math_cmp.cairo" - }, - "start_col": 5, - "start_line": 32 - } - }, - "373": { - "accessible_scopes": [ - "starkware.cairo.common.math_cmp", - "starkware.cairo.common.math_cmp.is_nn" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 27, - "end_line": 18, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/math_cmp.cairo" - }, - "parent_location": [ - { - "end_col": 36, - "end_line": 154, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/math.cairo" - }, - "parent_location": [ - { - "end_col": 32, - "end_line": 35, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/math_cmp.cairo" - }, - "start_col": 5, - "start_line": 35 - }, - "While trying to retrieve the implicit argument 'range_check_ptr' in:" - ], - "start_col": 21, - "start_line": 154 - }, - "While expanding the reference 'range_check_ptr' in:" - ], - "start_col": 12, - "start_line": 18 - } - }, - "374": { - "accessible_scopes": [ - "starkware.cairo.common.math_cmp", - "starkware.cairo.common.math_cmp.is_nn" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 28, - "end_line": 35, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/math_cmp.cairo" - }, - "start_col": 20, - "start_line": 35 - } - }, - "376": { - "accessible_scopes": [ - "starkware.cairo.common.math_cmp", - "starkware.cairo.common.math_cmp.is_nn" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 30, - "end_line": 18, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/math_cmp.cairo" - }, - "parent_location": [ - { - "end_col": 31, - "end_line": 35, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/math_cmp.cairo" - }, - "start_col": 30, - "start_line": 35 - }, - "While expanding the reference 'a' in:" - ], - "start_col": 29, - "start_line": 18 - } - }, - "377": { - "accessible_scopes": [ - "starkware.cairo.common.math_cmp", - "starkware.cairo.common.math_cmp.is_nn" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 32, - "end_line": 35, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/math_cmp.cairo" - }, - "start_col": 5, - "start_line": 35 - } - }, - "379": { - "accessible_scopes": [ - "starkware.cairo.common.math_cmp", - "starkware.cairo.common.math_cmp.is_nn" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 13, - "end_line": 36, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/math_cmp.cairo" - }, - "start_col": 12, - "start_line": 36 - } - }, - "381": { - "accessible_scopes": [ - "starkware.cairo.common.math_cmp", - "starkware.cairo.common.math_cmp.is_nn" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 14, - "end_line": 36, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/math_cmp.cairo" - }, - "start_col": 5, - "start_line": 36 - } - }, - "382": { - "accessible_scopes": [ - "starkware.cairo.common.math_cmp", - "starkware.cairo.common.math_cmp.is_le" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 27, - "end_line": 42, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/math_cmp.cairo" - }, - "parent_location": [ - { - "end_col": 27, - "end_line": 18, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/math_cmp.cairo" - }, - "parent_location": [ - { - "end_col": 24, - "end_line": 43, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/math_cmp.cairo" - }, - "start_col": 12, - "start_line": 43 - }, - "While trying to retrieve the implicit argument 'range_check_ptr' in:" - ], - "start_col": 12, - "start_line": 18 - }, - "While expanding the reference 'range_check_ptr' in:" - ], - "start_col": 12, - "start_line": 42 - } - }, - "383": { - "accessible_scopes": [ - "starkware.cairo.common.math_cmp", - "starkware.cairo.common.math_cmp.is_le" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 23, - "end_line": 43, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/math_cmp.cairo" - }, - "start_col": 18, - "start_line": 43 - } - }, - "384": { - "accessible_scopes": [ - "starkware.cairo.common.math_cmp", - "starkware.cairo.common.math_cmp.is_le" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 24, - "end_line": 43, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/math_cmp.cairo" - }, - "start_col": 12, - "start_line": 43 - } - }, - "386": { - "accessible_scopes": [ - "starkware.cairo.common.math_cmp", - "starkware.cairo.common.math_cmp.is_le" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 25, - "end_line": 43, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/math_cmp.cairo" - }, - "start_col": 5, - "start_line": 43 - } - }, - "387": { - "accessible_scopes": [ - "starkware.cairo.common.math_cmp", - "starkware.cairo.common.math_cmp.is_le_felt" - ], - "flow_tracking_data": null, - "hints": [ - { - "location": { - "end_col": 70, - "end_line": 80, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/math_cmp.cairo" - }, - "start_col": 5, - "start_line": 80 - }, - "n_prefix_newlines": 0 - } - ], - "inst": { - "end_col": 34, - "end_line": 81, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/math_cmp.cairo" - }, - "start_col": 5, - "start_line": 81 - } - }, - "389": { - "accessible_scopes": [ - "starkware.cairo.common.math_cmp", - "starkware.cairo.common.math_cmp.is_le_felt" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 12, - "end_line": 82, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/math_cmp.cairo" - }, - "start_col": 5, - "start_line": 82 - } - }, - "391": { - "accessible_scopes": [ - "starkware.cairo.common.math_cmp", - "starkware.cairo.common.math_cmp.is_le_felt" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 32, - "end_line": 79, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/math_cmp.cairo" - }, - "parent_location": [ - { - "end_col": 36, - "end_line": 154, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/math.cairo" - }, - "parent_location": [ - { - "end_col": 25, - "end_line": 83, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/math_cmp.cairo" - }, - "start_col": 5, - "start_line": 83 - }, - "While trying to retrieve the implicit argument 'range_check_ptr' in:" - ], - "start_col": 21, - "start_line": 154 - }, - "While expanding the reference 'range_check_ptr' in:" - ], - "start_col": 17, - "start_line": 79 - } - }, - "392": { - "accessible_scopes": [ - "starkware.cairo.common.math_cmp", - "starkware.cairo.common.math_cmp.is_le_felt" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 35, - "end_line": 79, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/math_cmp.cairo" - }, - "parent_location": [ - { - "end_col": 21, - "end_line": 83, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/math_cmp.cairo" - }, - "start_col": 20, - "start_line": 83 - }, - "While expanding the reference 'a' in:" - ], - "start_col": 34, - "start_line": 79 - } - }, - "393": { - "accessible_scopes": [ - "starkware.cairo.common.math_cmp", - "starkware.cairo.common.math_cmp.is_le_felt" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 38, - "end_line": 79, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/math_cmp.cairo" - }, - "parent_location": [ - { - "end_col": 24, - "end_line": 83, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/math_cmp.cairo" - }, - "start_col": 23, - "start_line": 83 - }, - "While expanding the reference 'b' in:" - ], - "start_col": 37, - "start_line": 79 - } - }, - "394": { - "accessible_scopes": [ - "starkware.cairo.common.math_cmp", - "starkware.cairo.common.math_cmp.is_le_felt" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 25, - "end_line": 83, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/math_cmp.cairo" - }, - "start_col": 5, - "start_line": 83 - } - }, - "396": { - "accessible_scopes": [ - "starkware.cairo.common.math_cmp", - "starkware.cairo.common.math_cmp.is_le_felt" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 13, - "end_line": 84, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/math_cmp.cairo" - }, - "start_col": 12, - "start_line": 84 - } - }, - "398": { - "accessible_scopes": [ - "starkware.cairo.common.math_cmp", - "starkware.cairo.common.math_cmp.is_le_felt" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 14, - "end_line": 84, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/math_cmp.cairo" - }, - "start_col": 5, - "start_line": 84 - } - }, - "399": { - "accessible_scopes": [ - "starkware.cairo.common.math_cmp", - "starkware.cairo.common.math_cmp.is_le_felt" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 32, - "end_line": 79, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/math_cmp.cairo" - }, - "parent_location": [ - { - "end_col": 36, - "end_line": 223, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/math.cairo" - }, - "parent_location": [ - { - "end_col": 25, - "end_line": 87, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/math_cmp.cairo" - }, - "start_col": 5, - "start_line": 87 - }, - "While trying to retrieve the implicit argument 'range_check_ptr' in:" - ], - "start_col": 21, - "start_line": 223 - }, - "While expanding the reference 'range_check_ptr' in:" - ], - "start_col": 17, - "start_line": 79 - } - }, - "400": { - "accessible_scopes": [ - "starkware.cairo.common.math_cmp", - "starkware.cairo.common.math_cmp.is_le_felt" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 38, - "end_line": 79, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/math_cmp.cairo" - }, - "parent_location": [ - { - "end_col": 21, - "end_line": 87, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/math_cmp.cairo" - }, - "start_col": 20, - "start_line": 87 - }, - "While expanding the reference 'b' in:" - ], - "start_col": 37, - "start_line": 79 - } - }, - "401": { - "accessible_scopes": [ - "starkware.cairo.common.math_cmp", - "starkware.cairo.common.math_cmp.is_le_felt" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 35, - "end_line": 79, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/math_cmp.cairo" - }, - "parent_location": [ - { - "end_col": 24, - "end_line": 87, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/math_cmp.cairo" - }, - "start_col": 23, - "start_line": 87 - }, - "While expanding the reference 'a' in:" - ], - "start_col": 34, - "start_line": 79 - } - }, - "402": { - "accessible_scopes": [ - "starkware.cairo.common.math_cmp", - "starkware.cairo.common.math_cmp.is_le_felt" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 25, - "end_line": 87, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/math_cmp.cairo" - }, - "start_col": 5, - "start_line": 87 - } - }, - "404": { - "accessible_scopes": [ - "starkware.cairo.common.math_cmp", - "starkware.cairo.common.math_cmp.is_le_felt" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 13, - "end_line": 88, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/math_cmp.cairo" - }, - "start_col": 12, - "start_line": 88 - } - }, - "406": { - "accessible_scopes": [ - "starkware.cairo.common.math_cmp", - "starkware.cairo.common.math_cmp.is_le_felt" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 14, - "end_line": 88, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/math_cmp.cairo" - }, - "start_col": 5, - "start_line": 88 - } - }, - "407": { - "accessible_scopes": [ - "starkware.cairo.common.registers", - "starkware.cairo.common.registers.get_label_location" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 38, - "end_line": 22, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/registers.cairo" - }, - "start_col": 23, - "start_line": 22 - } - }, - "409": { - "accessible_scopes": [ - "starkware.cairo.common.registers", - "starkware.cairo.common.registers.get_label_location" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 53, - "end_line": 25, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/registers.cairo" - }, - "start_col": 27, - "start_line": 25 - } - }, - "411": { - "accessible_scopes": [ - "starkware.cairo.common.registers", - "starkware.cairo.common.registers.get_label_location" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 54, - "end_line": 25, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/registers.cairo" - }, - "start_col": 17, - "start_line": 25 - } - }, - "412": { - "accessible_scopes": [ - "starkware.cairo.common.registers", - "starkware.cairo.common.registers.get_label_location" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 56, - "end_line": 25, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/registers.cairo" - }, - "start_col": 5, - "start_line": 25 - } - }, - "413": { - "accessible_scopes": [ - "starkware.cairo.common.uint256", - "starkware.cairo.common.uint256.uint256_check" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 30, - "end_line": 22, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/uint256.cairo" - }, - "start_col": 5, - "start_line": 22 - } - }, - "414": { - "accessible_scopes": [ - "starkware.cairo.common.uint256", - "starkware.cairo.common.uint256.uint256_check" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 35, - "end_line": 23, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/uint256.cairo" - }, - "start_col": 5, - "start_line": 23 - } - }, - "415": { - "accessible_scopes": [ - "starkware.cairo.common.uint256", - "starkware.cairo.common.uint256.uint256_check" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 46, - "end_line": 24, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/uint256.cairo" - }, - "parent_location": [ - { - "end_col": 35, - "end_line": 21, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/uint256.cairo" - }, - "parent_location": [ - { - "end_col": 15, - "end_line": 25, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/uint256.cairo" - }, - "start_col": 5, - "start_line": 25 - }, - "While trying to retrieve the implicit argument 'range_check_ptr' in:" - ], - "start_col": 20, - "start_line": 21 - }, - "While expanding the reference 'range_check_ptr' in:" - ], - "start_col": 27, - "start_line": 24 - } - }, - "417": { - "accessible_scopes": [ - "starkware.cairo.common.uint256", - "starkware.cairo.common.uint256.uint256_check" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 15, - "end_line": 25, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/uint256.cairo" - }, - "start_col": 5, - "start_line": 25 - } - }, - "418": { - "accessible_scopes": [ - "starkware.cairo.common.uint256", - "starkware.cairo.common.uint256.uint256_add" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 18, - "end_line": 32, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/uint256.cairo" - }, - "start_col": 5, - "start_line": 32 - } - }, - "420": { - "accessible_scopes": [ - "starkware.cairo.common.uint256", - "starkware.cairo.common.uint256.uint256_add" - ], - "flow_tracking_data": null, - "hints": [ - { - "location": { - "end_col": 7, - "end_line": 41, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/uint256.cairo" - }, - "start_col": 5, - "start_line": 36 - }, - "n_prefix_newlines": 1 - } - ], - "inst": { - "end_col": 46, - "end_line": 43, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/uint256.cairo" - }, - "start_col": 5, - "start_line": 43 - } - }, - "421": { - "accessible_scopes": [ - "starkware.cairo.common.uint256", - "starkware.cairo.common.uint256.uint256_add" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 49, - "end_line": 44, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/uint256.cairo" - }, - "start_col": 5, - "start_line": 44 - } - }, - "422": { - "accessible_scopes": [ - "starkware.cairo.common.uint256", - "starkware.cairo.common.uint256.uint256_add" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 35, - "end_line": 46, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/uint256.cairo" - }, - "start_col": 22, - "start_line": 46 - } - }, - "423": { - "accessible_scopes": [ - "starkware.cairo.common.uint256", - "starkware.cairo.common.uint256.uint256_add" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 55, - "end_line": 46, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/uint256.cairo" - }, - "start_col": 38, - "start_line": 46 - } - }, - "425": { - "accessible_scopes": [ - "starkware.cairo.common.uint256", - "starkware.cairo.common.uint256.uint256_add" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 56, - "end_line": 46, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/uint256.cairo" - }, - "start_col": 5, - "start_line": 46 - } - }, - "426": { - "accessible_scopes": [ - "starkware.cairo.common.uint256", - "starkware.cairo.common.uint256.uint256_add" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 38, - "end_line": 47, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/uint256.cairo" - }, - "start_col": 23, - "start_line": 47 - } - }, - "427": { - "accessible_scopes": [ - "starkware.cairo.common.uint256", - "starkware.cairo.common.uint256.uint256_add" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 50, - "end_line": 47, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/uint256.cairo" - }, - "start_col": 23, - "start_line": 47 - } - }, - "428": { - "accessible_scopes": [ - "starkware.cairo.common.uint256", - "starkware.cairo.common.uint256.uint256_add" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 71, - "end_line": 47, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/uint256.cairo" - }, - "start_col": 53, - "start_line": 47 - } - }, - "430": { - "accessible_scopes": [ - "starkware.cairo.common.uint256", - "starkware.cairo.common.uint256.uint256_add" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 72, - "end_line": 47, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/uint256.cairo" - }, - "start_col": 5, - "start_line": 47 - } - }, - "431": { - "accessible_scopes": [ - "starkware.cairo.common.uint256", - "starkware.cairo.common.uint256.uint256_add" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 33, - "end_line": 31, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/uint256.cairo" - }, - "parent_location": [ - { - "end_col": 35, - "end_line": 21, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/uint256.cairo" - }, - "parent_location": [ - { - "end_col": 23, - "end_line": 48, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/uint256.cairo" - }, - "start_col": 5, - "start_line": 48 - }, - "While trying to retrieve the implicit argument 'range_check_ptr' in:" - ], - "start_col": 20, - "start_line": 21 - }, - "While expanding the reference 'range_check_ptr' in:" - ], - "start_col": 18, - "start_line": 31 - } - }, - "432": { - "accessible_scopes": [ - "starkware.cairo.common.uint256", - "starkware.cairo.common.uint256.uint256_add" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 14, - "end_line": 33, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/uint256.cairo" - }, - "parent_location": [ - { - "end_col": 22, - "end_line": 48, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/uint256.cairo" - }, - "start_col": 19, - "start_line": 48 - }, - "While expanding the reference 'res' in:" - ], - "start_col": 11, - "start_line": 33 - } - }, - "433": { - "accessible_scopes": [ - "starkware.cairo.common.uint256", - "starkware.cairo.common.uint256.uint256_add" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 14, - "end_line": 33, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/uint256.cairo" - }, - "parent_location": [ - { - "end_col": 22, - "end_line": 48, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/uint256.cairo" - }, - "start_col": 19, - "start_line": 48 - }, - "While expanding the reference 'res' in:" - ], - "start_col": 11, - "start_line": 33 - } - }, - "434": { - "accessible_scopes": [ - "starkware.cairo.common.uint256", - "starkware.cairo.common.uint256.uint256_add" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 23, - "end_line": 48, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/uint256.cairo" - }, - "start_col": 5, - "start_line": 48 - } - }, - "436": { - "accessible_scopes": [ - "starkware.cairo.common.uint256", - "starkware.cairo.common.uint256.uint256_add" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 14, - "end_line": 33, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/uint256.cairo" - }, - "parent_location": [ - { - "end_col": 16, - "end_line": 50, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/uint256.cairo" - }, - "start_col": 13, - "start_line": 50 - }, - "While expanding the reference 'res' in:" - ], - "start_col": 11, - "start_line": 33 - } - }, - "437": { - "accessible_scopes": [ - "starkware.cairo.common.uint256", - "starkware.cairo.common.uint256.uint256_add" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 14, - "end_line": 33, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/uint256.cairo" - }, - "parent_location": [ - { - "end_col": 16, - "end_line": 50, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/uint256.cairo" - }, - "start_col": 13, - "start_line": 50 - }, - "While expanding the reference 'res' in:" - ], - "start_col": 11, - "start_line": 33 - } - }, - "438": { - "accessible_scopes": [ - "starkware.cairo.common.uint256", - "starkware.cairo.common.uint256.uint256_add" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 21, - "end_line": 35, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/uint256.cairo" - }, - "parent_location": [ - { - "end_col": 28, - "end_line": 50, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/uint256.cairo" - }, - "start_col": 18, - "start_line": 50 - }, - "While expanding the reference 'carry_high' in:" - ], - "start_col": 11, - "start_line": 35 - } - }, - "439": { - "accessible_scopes": [ - "starkware.cairo.common.uint256", - "starkware.cairo.common.uint256.uint256_add" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 30, - "end_line": 50, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/uint256.cairo" - }, - "start_col": 5, - "start_line": 50 - } - }, - "440": { - "accessible_scopes": [ - "starkware.cairo.common.uint256", - "starkware.cairo.common.uint256.split_64" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 18, - "end_line": 56, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/uint256.cairo" - }, - "start_col": 5, - "start_line": 56 - } - }, - "442": { - "accessible_scopes": [ - "starkware.cairo.common.uint256", - "starkware.cairo.common.uint256.split_64" - ], - "flow_tracking_data": null, - "hints": [ - { - "location": { - "end_col": 7, - "end_line": 63, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/uint256.cairo" - }, - "start_col": 5, - "start_line": 60 - }, - "n_prefix_newlines": 1 - } - ], - "inst": { - "end_col": 39, - "end_line": 64, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/uint256.cairo" - }, - "start_col": 22, - "start_line": 64 - } - }, - "444": { - "accessible_scopes": [ - "starkware.cairo.common.uint256", - "starkware.cairo.common.uint256.split_64" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 40, - "end_line": 64, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/uint256.cairo" - }, - "start_col": 5, - "start_line": 64 - } - }, - "445": { - "accessible_scopes": [ - "starkware.cairo.common.uint256", - "starkware.cairo.common.uint256.split_64" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 40, - "end_line": 65, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/uint256.cairo" - }, - "start_col": 5, - "start_line": 65 - } - }, - "446": { - "accessible_scopes": [ - "starkware.cairo.common.uint256", - "starkware.cairo.common.uint256.split_64" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 50, - "end_line": 66, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/uint256.cairo" - }, - "start_col": 36, - "start_line": 66 - } - }, - "448": { - "accessible_scopes": [ - "starkware.cairo.common.uint256", - "starkware.cairo.common.uint256.split_64" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 56, - "end_line": 66, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/uint256.cairo" - }, - "start_col": 36, - "start_line": 66 - } - }, - "449": { - "accessible_scopes": [ - "starkware.cairo.common.uint256", - "starkware.cairo.common.uint256.split_64" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 57, - "end_line": 66, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/uint256.cairo" - }, - "start_col": 5, - "start_line": 66 - } - }, - "450": { - "accessible_scopes": [ - "starkware.cairo.common.uint256", - "starkware.cairo.common.uint256.split_64" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 41, - "end_line": 67, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/uint256.cairo" - }, - "start_col": 5, - "start_line": 67 - } - }, - "451": { - "accessible_scopes": [ - "starkware.cairo.common.uint256", - "starkware.cairo.common.uint256.split_64" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 46, - "end_line": 68, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/uint256.cairo" - }, - "parent_location": [ - { - "end_col": 30, - "end_line": 55, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/uint256.cairo" - }, - "parent_location": [ - { - "end_col": 24, - "end_line": 69, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/uint256.cairo" - }, - "start_col": 5, - "start_line": 69 - }, - "While trying to retrieve the implicit argument 'range_check_ptr' in:" - ], - "start_col": 15, - "start_line": 55 - }, - "While expanding the reference 'range_check_ptr' in:" - ], - "start_col": 27, - "start_line": 68 - } - }, - "453": { - "accessible_scopes": [ - "starkware.cairo.common.uint256", - "starkware.cairo.common.uint256.split_64" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 14, - "end_line": 57, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/uint256.cairo" - }, - "parent_location": [ - { - "end_col": 16, - "end_line": 69, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/uint256.cairo" - }, - "start_col": 13, - "start_line": 69 - }, - "While expanding the reference 'low' in:" - ], - "start_col": 11, - "start_line": 57 - } - }, - "454": { - "accessible_scopes": [ - "starkware.cairo.common.uint256", - "starkware.cairo.common.uint256.split_64" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 15, - "end_line": 58, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/uint256.cairo" - }, - "parent_location": [ - { - "end_col": 22, - "end_line": 69, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/uint256.cairo" - }, - "start_col": 18, - "start_line": 69 - }, - "While expanding the reference 'high' in:" - ], - "start_col": 11, - "start_line": 58 - } - }, - "455": { - "accessible_scopes": [ - "starkware.cairo.common.uint256", - "starkware.cairo.common.uint256.split_64" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 24, - "end_line": 69, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/uint256.cairo" - }, - "start_col": 5, - "start_line": 69 - } - }, - "456": { - "accessible_scopes": [ - "starkware.cairo.common.uint256", - "starkware.cairo.common.uint256.uint256_lt" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 25, - "end_line": 134, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/uint256.cairo" - }, - "start_col": 9, - "start_line": 134 - } - }, - "457": { - "accessible_scopes": [ - "starkware.cairo.common.uint256", - "starkware.cairo.common.uint256.uint256_lt" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 7, - "end_line": 134, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/uint256.cairo" - }, - "start_col": 5, - "start_line": 134 - } - }, - "459": { - "accessible_scopes": [ - "starkware.cairo.common.uint256", - "starkware.cairo.common.uint256.uint256_lt" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 32, - "end_line": 133, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/uint256.cairo" - }, - "parent_location": [ - { - "end_col": 27, - "end_line": 42, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/math_cmp.cairo" - }, - "parent_location": [ - { - "end_col": 40, - "end_line": 135, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/uint256.cairo" - }, - "start_col": 17, - "start_line": 135 - }, - "While trying to retrieve the implicit argument 'range_check_ptr' in:" - ], - "start_col": 12, - "start_line": 42 - }, - "While expanding the reference 'range_check_ptr' in:" - ], - "start_col": 17, - "start_line": 133 - } - }, - "460": { - "accessible_scopes": [ - "starkware.cairo.common.uint256", - "starkware.cairo.common.uint256.uint256_lt" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 32, - "end_line": 135, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/uint256.cairo" - }, - "start_col": 23, - "start_line": 135 - } - }, - "462": { - "accessible_scopes": [ - "starkware.cairo.common.uint256", - "starkware.cairo.common.uint256.uint256_lt" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 39, - "end_line": 135, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/uint256.cairo" - }, - "start_col": 34, - "start_line": 135 - } - }, - "463": { - "accessible_scopes": [ - "starkware.cairo.common.uint256", - "starkware.cairo.common.uint256.uint256_lt" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 40, - "end_line": 135, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/uint256.cairo" - }, - "start_col": 17, - "start_line": 135 - } - }, - "465": { - "accessible_scopes": [ - "starkware.cairo.common.uint256", - "starkware.cairo.common.uint256.uint256_lt" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 43, - "end_line": 135, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/uint256.cairo" - }, - "start_col": 9, - "start_line": 135 - } - }, - "466": { - "accessible_scopes": [ - "starkware.cairo.common.uint256", - "starkware.cairo.common.uint256.uint256_lt" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 32, - "end_line": 133, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/uint256.cairo" - }, - "parent_location": [ - { - "end_col": 27, - "end_line": 42, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/math_cmp.cairo" - }, - "parent_location": [ - { - "end_col": 38, - "end_line": 137, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/uint256.cairo" - }, - "start_col": 13, - "start_line": 137 - }, - "While trying to retrieve the implicit argument 'range_check_ptr' in:" - ], - "start_col": 12, - "start_line": 42 - }, - "While expanding the reference 'range_check_ptr' in:" - ], - "start_col": 17, - "start_line": 133 - } - }, - "467": { - "accessible_scopes": [ - "starkware.cairo.common.uint256", - "starkware.cairo.common.uint256.uint256_lt" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 29, - "end_line": 137, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/uint256.cairo" - }, - "start_col": 19, - "start_line": 137 - } - }, - "469": { - "accessible_scopes": [ - "starkware.cairo.common.uint256", - "starkware.cairo.common.uint256.uint256_lt" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 37, - "end_line": 137, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/uint256.cairo" - }, - "start_col": 31, - "start_line": 137 - } - }, - "470": { - "accessible_scopes": [ - "starkware.cairo.common.uint256", - "starkware.cairo.common.uint256.uint256_lt" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 38, - "end_line": 137, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/uint256.cairo" - }, - "start_col": 13, - "start_line": 137 - } - }, - "472": { - "accessible_scopes": [ - "starkware.cairo.common.uint256", - "starkware.cairo.common.uint256.uint256_lt" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 41, - "end_line": 137, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/uint256.cairo" - }, - "start_col": 5, - "start_line": 137 - } - }, - "473": { - "accessible_scopes": [ - "starkware.cairo.common.uint256", - "starkware.cairo.common.uint256.uint256_le" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 32, - "end_line": 148, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/uint256.cairo" - }, - "parent_location": [ - { - "end_col": 32, - "end_line": 133, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/uint256.cairo" - }, - "parent_location": [ - { - "end_col": 40, - "end_line": 149, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/uint256.cairo" - }, - "start_col": 20, - "start_line": 149 - }, - "While trying to retrieve the implicit argument 'range_check_ptr' in:" - ], - "start_col": 17, - "start_line": 133 - }, - "While expanding the reference 'range_check_ptr' in:" - ], - "start_col": 17, - "start_line": 148 - } - }, - "474": { - "accessible_scopes": [ - "starkware.cairo.common.uint256", - "starkware.cairo.common.uint256.uint256_le" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 56, - "end_line": 148, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/uint256.cairo" - }, - "parent_location": [ - { - "end_col": 34, - "end_line": 149, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/uint256.cairo" - }, - "start_col": 33, - "start_line": 149 - }, - "While expanding the reference 'b' in:" - ], - "start_col": 46, - "start_line": 148 - } - }, - "475": { - "accessible_scopes": [ - "starkware.cairo.common.uint256", - "starkware.cairo.common.uint256.uint256_le" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 56, - "end_line": 148, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/uint256.cairo" - }, - "parent_location": [ - { - "end_col": 34, - "end_line": 149, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/uint256.cairo" - }, - "start_col": 33, - "start_line": 149 - }, - "While expanding the reference 'b' in:" - ], - "start_col": 46, - "start_line": 148 - } - }, - "476": { - "accessible_scopes": [ - "starkware.cairo.common.uint256", - "starkware.cairo.common.uint256.uint256_le" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 44, - "end_line": 148, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/uint256.cairo" - }, - "parent_location": [ - { - "end_col": 39, - "end_line": 149, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/uint256.cairo" - }, - "start_col": 38, - "start_line": 149 - }, - "While expanding the reference 'a' in:" - ], - "start_col": 34, - "start_line": 148 - } - }, - "477": { - "accessible_scopes": [ - "starkware.cairo.common.uint256", - "starkware.cairo.common.uint256.uint256_le" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 44, - "end_line": 148, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/uint256.cairo" - }, - "parent_location": [ - { - "end_col": 39, - "end_line": 149, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/uint256.cairo" - }, - "start_col": 38, - "start_line": 149 - }, - "While expanding the reference 'a' in:" - ], - "start_col": 34, - "start_line": 148 - } - }, - "478": { - "accessible_scopes": [ - "starkware.cairo.common.uint256", - "starkware.cairo.common.uint256.uint256_le" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 40, - "end_line": 149, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/uint256.cairo" - }, - "start_col": 20, - "start_line": 149 - } - }, - "480": { - "accessible_scopes": [ - "starkware.cairo.common.uint256", - "starkware.cairo.common.uint256.uint256_le" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 18, - "end_line": 150, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/uint256.cairo" - }, - "start_col": 17, - "start_line": 150 - } - }, - "482": { - "accessible_scopes": [ - "starkware.cairo.common.uint256", - "starkware.cairo.common.uint256.uint256_le" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 32, - "end_line": 133, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/uint256.cairo" - }, - "parent_location": [ - { - "end_col": 40, - "end_line": 149, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/uint256.cairo" - }, - "parent_location": [ - { - "end_col": 32, - "end_line": 148, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/uint256.cairo" - }, - "parent_location": [ - { - "end_col": 29, - "end_line": 150, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/uint256.cairo" - }, - "start_col": 5, - "start_line": 150 - }, - "While trying to retrieve the implicit argument 'range_check_ptr' in:" - ], - "start_col": 17, - "start_line": 148 - }, - "While expanding the reference 'range_check_ptr' in:" - ], - "start_col": 20, - "start_line": 149 - }, - "While trying to update the implicit return value 'range_check_ptr' in:" - ], - "start_col": 17, - "start_line": 133 - } - }, - "483": { - "accessible_scopes": [ - "starkware.cairo.common.uint256", - "starkware.cairo.common.uint256.uint256_le" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 27, - "end_line": 150, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/uint256.cairo" - }, - "start_col": 17, - "start_line": 150 - } - }, - "484": { - "accessible_scopes": [ - "starkware.cairo.common.uint256", - "starkware.cairo.common.uint256.uint256_le" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 29, - "end_line": 150, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/uint256.cairo" - }, - "start_col": 5, - "start_line": 150 - } - }, - "485": { - "accessible_scopes": [ - "starkware.cairo.common.uint256", - "starkware.cairo.common.uint256.uint256_not" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 37, - "end_line": 285, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/uint256.cairo" - }, - "start_col": 29, - "start_line": 285 - } - }, - "487": { - "accessible_scopes": [ - "starkware.cairo.common.uint256", - "starkware.cairo.common.uint256.uint256_not" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 60, - "end_line": 285, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/uint256.cairo" - }, - "start_col": 52, - "start_line": 285 - } - }, - "489": { - "accessible_scopes": [ - "starkware.cairo.common.uint256", - "starkware.cairo.common.uint256.uint256_not" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 33, - "end_line": 284, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/uint256.cairo" - }, - "parent_location": [ - { - "end_col": 33, - "end_line": 284, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/uint256.cairo" - }, - "parent_location": [ - { - "end_col": 72, - "end_line": 285, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/uint256.cairo" - }, - "start_col": 5, - "start_line": 285 - }, - "While trying to retrieve the implicit argument 'range_check_ptr' in:" - ], - "start_col": 18, - "start_line": 284 - }, - "While expanding the reference 'range_check_ptr' in:" - ], - "start_col": 18, - "start_line": 284 - } - }, - "490": { - "accessible_scopes": [ - "starkware.cairo.common.uint256", - "starkware.cairo.common.uint256.uint256_not" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 45, - "end_line": 285, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/uint256.cairo" - }, - "start_col": 29, - "start_line": 285 - } - }, - "491": { - "accessible_scopes": [ - "starkware.cairo.common.uint256", - "starkware.cairo.common.uint256.uint256_not" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 69, - "end_line": 285, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/uint256.cairo" - }, - "start_col": 52, - "start_line": 285 - } - }, - "492": { - "accessible_scopes": [ - "starkware.cairo.common.uint256", - "starkware.cairo.common.uint256.uint256_not" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 72, - "end_line": 285, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/uint256.cairo" - }, - "start_col": 5, - "start_line": 285 - } - }, - "493": { - "accessible_scopes": [ - "starkware.cairo.common.uint256", - "starkware.cairo.common.uint256.uint256_neg" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 33, - "end_line": 290, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/uint256.cairo" - }, - "parent_location": [ - { - "end_col": 33, - "end_line": 284, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/uint256.cairo" - }, - "parent_location": [ - { - "end_col": 35, - "end_line": 291, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/uint256.cairo" - }, - "start_col": 21, - "start_line": 291 - }, - "While trying to retrieve the implicit argument 'range_check_ptr' in:" - ], - "start_col": 18, - "start_line": 284 - }, - "While expanding the reference 'range_check_ptr' in:" - ], - "start_col": 18, - "start_line": 290 - } - }, - "494": { - "accessible_scopes": [ - "starkware.cairo.common.uint256", - "starkware.cairo.common.uint256.uint256_neg" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 45, - "end_line": 290, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/uint256.cairo" - }, - "parent_location": [ - { - "end_col": 34, - "end_line": 291, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/uint256.cairo" - }, - "start_col": 33, - "start_line": 291 - }, - "While expanding the reference 'a' in:" - ], - "start_col": 35, - "start_line": 290 - } - }, - "495": { - "accessible_scopes": [ - "starkware.cairo.common.uint256", - "starkware.cairo.common.uint256.uint256_neg" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 45, - "end_line": 290, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/uint256.cairo" - }, - "parent_location": [ - { - "end_col": 34, - "end_line": 291, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/uint256.cairo" - }, - "start_col": 33, - "start_line": 291 - }, - "While expanding the reference 'a' in:" - ], - "start_col": 35, - "start_line": 290 - } - }, - "496": { - "accessible_scopes": [ - "starkware.cairo.common.uint256", - "starkware.cairo.common.uint256.uint256_neg" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 35, - "end_line": 291, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/uint256.cairo" - }, - "start_col": 21, - "start_line": 291 - } - }, - "498": { - "accessible_scopes": [ - "starkware.cairo.common.uint256", - "starkware.cairo.common.uint256.uint256_neg" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 54, - "end_line": 292, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/uint256.cairo" - }, - "start_col": 53, - "start_line": 292 - } - }, - "500": { - "accessible_scopes": [ - "starkware.cairo.common.uint256", - "starkware.cairo.common.uint256.uint256_neg" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 62, - "end_line": 292, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/uint256.cairo" - }, - "start_col": 61, - "start_line": 292 - } - }, - "502": { - "accessible_scopes": [ - "starkware.cairo.common.uint256", - "starkware.cairo.common.uint256.uint256_neg" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 64, - "end_line": 292, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/uint256.cairo" - }, - "start_col": 20, - "start_line": 292 - } - }, - "504": { - "accessible_scopes": [ - "starkware.cairo.common.uint256", - "starkware.cairo.common.uint256.uint256_neg" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 33, - "end_line": 31, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/uint256.cairo" - }, - "parent_location": [ - { - "end_col": 64, - "end_line": 292, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/uint256.cairo" - }, - "parent_location": [ - { - "end_col": 33, - "end_line": 290, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/uint256.cairo" - }, - "parent_location": [ - { - "end_col": 22, - "end_line": 293, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/uint256.cairo" - }, - "start_col": 5, - "start_line": 293 - }, - "While trying to retrieve the implicit argument 'range_check_ptr' in:" - ], - "start_col": 18, - "start_line": 290 - }, - "While expanding the reference 'range_check_ptr' in:" - ], - "start_col": 20, - "start_line": 292 - }, - "While trying to update the implicit return value 'range_check_ptr' in:" - ], - "start_col": 18, - "start_line": 31 - } - }, - "505": { - "accessible_scopes": [ - "starkware.cairo.common.uint256", - "starkware.cairo.common.uint256.uint256_neg" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 13, - "end_line": 292, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/uint256.cairo" - }, - "parent_location": [ - { - "end_col": 20, - "end_line": 293, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/uint256.cairo" - }, - "start_col": 17, - "start_line": 293 - }, - "While expanding the reference 'res' in:" - ], - "start_col": 10, - "start_line": 292 - } - }, - "506": { - "accessible_scopes": [ - "starkware.cairo.common.uint256", - "starkware.cairo.common.uint256.uint256_neg" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 13, - "end_line": 292, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/uint256.cairo" - }, - "parent_location": [ - { - "end_col": 20, - "end_line": 293, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/uint256.cairo" - }, - "start_col": 17, - "start_line": 293 - }, - "While expanding the reference 'res' in:" - ], - "start_col": 10, - "start_line": 292 - } - }, - "507": { - "accessible_scopes": [ - "starkware.cairo.common.uint256", - "starkware.cairo.common.uint256.uint256_neg" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 22, - "end_line": 293, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/uint256.cairo" - }, - "start_col": 5, - "start_line": 293 - } - }, - "508": { - "accessible_scopes": [ - "starkware.cairo.common.uint256", - "starkware.cairo.common.uint256.uint256_sub" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 33, - "end_line": 348, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/uint256.cairo" - }, - "parent_location": [ - { - "end_col": 33, - "end_line": 290, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/uint256.cairo" - }, - "parent_location": [ - { - "end_col": 33, - "end_line": 349, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/uint256.cairo" - }, - "start_col": 19, - "start_line": 349 - }, - "While trying to retrieve the implicit argument 'range_check_ptr' in:" - ], - "start_col": 18, - "start_line": 290 - }, - "While expanding the reference 'range_check_ptr' in:" - ], - "start_col": 18, - "start_line": 348 - } - }, - "509": { - "accessible_scopes": [ - "starkware.cairo.common.uint256", - "starkware.cairo.common.uint256.uint256_sub" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 57, - "end_line": 348, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/uint256.cairo" - }, - "parent_location": [ - { - "end_col": 32, - "end_line": 349, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/uint256.cairo" - }, - "start_col": 31, - "start_line": 349 - }, - "While expanding the reference 'b' in:" - ], - "start_col": 47, - "start_line": 348 - } - }, - "510": { - "accessible_scopes": [ - "starkware.cairo.common.uint256", - "starkware.cairo.common.uint256.uint256_sub" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 57, - "end_line": 348, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/uint256.cairo" - }, - "parent_location": [ - { - "end_col": 32, - "end_line": 349, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/uint256.cairo" - }, - "start_col": 31, - "start_line": 349 - }, - "While expanding the reference 'b' in:" - ], - "start_col": 47, - "start_line": 348 - } - }, - "511": { - "accessible_scopes": [ - "starkware.cairo.common.uint256", - "starkware.cairo.common.uint256.uint256_sub" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 33, - "end_line": 349, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/uint256.cairo" - }, - "start_col": 19, - "start_line": 349 - } - }, - "513": { - "accessible_scopes": [ - "starkware.cairo.common.uint256", - "starkware.cairo.common.uint256.uint256_sub" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 33, - "end_line": 290, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/uint256.cairo" - }, - "parent_location": [ - { - "end_col": 33, - "end_line": 349, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/uint256.cairo" - }, - "parent_location": [ - { - "end_col": 33, - "end_line": 31, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/uint256.cairo" - }, - "parent_location": [ - { - "end_col": 41, - "end_line": 350, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/uint256.cairo" - }, - "start_col": 20, - "start_line": 350 - }, - "While trying to retrieve the implicit argument 'range_check_ptr' in:" - ], - "start_col": 18, - "start_line": 31 - }, - "While expanding the reference 'range_check_ptr' in:" - ], - "start_col": 19, - "start_line": 349 - }, - "While trying to update the implicit return value 'range_check_ptr' in:" - ], - "start_col": 18, - "start_line": 290 - } - }, - "514": { - "accessible_scopes": [ - "starkware.cairo.common.uint256", - "starkware.cairo.common.uint256.uint256_sub" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 45, - "end_line": 348, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/uint256.cairo" - }, - "parent_location": [ - { - "end_col": 33, - "end_line": 350, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/uint256.cairo" - }, - "start_col": 32, - "start_line": 350 - }, - "While expanding the reference 'a' in:" - ], - "start_col": 35, - "start_line": 348 - } - }, - "515": { - "accessible_scopes": [ - "starkware.cairo.common.uint256", - "starkware.cairo.common.uint256.uint256_sub" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 45, - "end_line": 348, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/uint256.cairo" - }, - "parent_location": [ - { - "end_col": 33, - "end_line": 350, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/uint256.cairo" - }, - "start_col": 32, - "start_line": 350 - }, - "While expanding the reference 'a' in:" - ], - "start_col": 35, - "start_line": 348 - } - }, - "516": { - "accessible_scopes": [ - "starkware.cairo.common.uint256", - "starkware.cairo.common.uint256.uint256_sub" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 15, - "end_line": 349, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/uint256.cairo" - }, - "parent_location": [ - { - "end_col": 40, - "end_line": 350, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/uint256.cairo" - }, - "start_col": 35, - "start_line": 350 - }, - "While expanding the reference 'b_neg' in:" - ], - "start_col": 10, - "start_line": 349 - } - }, - "517": { - "accessible_scopes": [ - "starkware.cairo.common.uint256", - "starkware.cairo.common.uint256.uint256_sub" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 15, - "end_line": 349, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/uint256.cairo" - }, - "parent_location": [ - { - "end_col": 40, - "end_line": 350, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/uint256.cairo" - }, - "start_col": 35, - "start_line": 350 - }, - "While expanding the reference 'b_neg' in:" - ], - "start_col": 10, - "start_line": 349 - } - }, - "518": { - "accessible_scopes": [ - "starkware.cairo.common.uint256", - "starkware.cairo.common.uint256.uint256_sub" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 41, - "end_line": 350, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/uint256.cairo" - }, - "start_col": 20, - "start_line": 350 - } - }, - "520": { - "accessible_scopes": [ - "starkware.cairo.common.uint256", - "starkware.cairo.common.uint256.uint256_sub" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 33, - "end_line": 31, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/uint256.cairo" - }, - "parent_location": [ - { - "end_col": 41, - "end_line": 350, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/uint256.cairo" - }, - "parent_location": [ - { - "end_col": 33, - "end_line": 348, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/uint256.cairo" - }, - "parent_location": [ - { - "end_col": 22, - "end_line": 351, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/uint256.cairo" - }, - "start_col": 5, - "start_line": 351 - }, - "While trying to retrieve the implicit argument 'range_check_ptr' in:" - ], - "start_col": 18, - "start_line": 348 - }, - "While expanding the reference 'range_check_ptr' in:" - ], - "start_col": 20, - "start_line": 350 - }, - "While trying to update the implicit return value 'range_check_ptr' in:" - ], - "start_col": 18, - "start_line": 31 - } - }, - "521": { - "accessible_scopes": [ - "starkware.cairo.common.uint256", - "starkware.cairo.common.uint256.uint256_sub" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 13, - "end_line": 350, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/uint256.cairo" - }, - "parent_location": [ - { - "end_col": 20, - "end_line": 351, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/uint256.cairo" - }, - "start_col": 17, - "start_line": 351 - }, - "While expanding the reference 'res' in:" - ], - "start_col": 10, - "start_line": 350 - } - }, - "522": { - "accessible_scopes": [ - "starkware.cairo.common.uint256", - "starkware.cairo.common.uint256.uint256_sub" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 13, - "end_line": 350, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/uint256.cairo" - }, - "parent_location": [ - { - "end_col": 20, - "end_line": 351, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/uint256.cairo" - }, - "start_col": 17, - "start_line": 351 - }, - "While expanding the reference 'res' in:" - ], - "start_col": 10, - "start_line": 350 - } - }, - "523": { - "accessible_scopes": [ - "starkware.cairo.common.uint256", - "starkware.cairo.common.uint256.uint256_sub" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 22, - "end_line": 351, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/uint256.cairo" - }, - "start_col": 5, - "start_line": 351 - } - }, - "524": { - "accessible_scopes": [ - "starkware.cairo.common.uint256", - "starkware.cairo.common.uint256.uint256_eq" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 25, - "end_line": 358, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/uint256.cairo" - }, - "start_col": 9, - "start_line": 358 - } - }, - "525": { - "accessible_scopes": [ - "starkware.cairo.common.uint256", - "starkware.cairo.common.uint256.uint256_eq" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 7, - "end_line": 358, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/uint256.cairo" - }, - "start_col": 5, - "start_line": 358 - } - }, - "527": { - "accessible_scopes": [ - "starkware.cairo.common.uint256", - "starkware.cairo.common.uint256.uint256_eq" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 7, - "end_line": 358, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/uint256.cairo" - }, - "start_col": 5, - "start_line": 358 - } - }, - "529": { - "accessible_scopes": [ - "starkware.cairo.common.uint256", - "starkware.cairo.common.uint256.uint256_eq" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 32, - "end_line": 357, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/uint256.cairo" - }, - "parent_location": [ - { - "end_col": 32, - "end_line": 357, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/uint256.cairo" - }, - "parent_location": [ - { - "end_col": 24, - "end_line": 359, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/uint256.cairo" - }, - "start_col": 9, - "start_line": 359 - }, - "While trying to retrieve the implicit argument 'range_check_ptr' in:" - ], - "start_col": 17, - "start_line": 357 - }, - "While expanding the reference 'range_check_ptr' in:" - ], - "start_col": 17, - "start_line": 357 - } - }, - "530": { - "accessible_scopes": [ - "starkware.cairo.common.uint256", - "starkware.cairo.common.uint256.uint256_eq" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 22, - "end_line": 359, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/uint256.cairo" - }, - "start_col": 21, - "start_line": 359 - } - }, - "532": { - "accessible_scopes": [ - "starkware.cairo.common.uint256", - "starkware.cairo.common.uint256.uint256_eq" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 24, - "end_line": 359, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/uint256.cairo" - }, - "start_col": 9, - "start_line": 359 - } - }, - "533": { - "accessible_scopes": [ - "starkware.cairo.common.uint256", - "starkware.cairo.common.uint256.uint256_eq" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 23, - "end_line": 361, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/uint256.cairo" - }, - "start_col": 9, - "start_line": 361 - } - }, - "534": { - "accessible_scopes": [ - "starkware.cairo.common.uint256", - "starkware.cairo.common.uint256.uint256_eq" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 7, - "end_line": 361, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/uint256.cairo" - }, - "start_col": 5, - "start_line": 361 - } - }, - "536": { - "accessible_scopes": [ - "starkware.cairo.common.uint256", - "starkware.cairo.common.uint256.uint256_eq" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 7, - "end_line": 361, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/uint256.cairo" - }, - "start_col": 5, - "start_line": 361 - } - }, - "538": { - "accessible_scopes": [ - "starkware.cairo.common.uint256", - "starkware.cairo.common.uint256.uint256_eq" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 32, - "end_line": 357, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/uint256.cairo" - }, - "parent_location": [ - { - "end_col": 32, - "end_line": 357, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/uint256.cairo" - }, - "parent_location": [ - { - "end_col": 24, - "end_line": 362, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/uint256.cairo" - }, - "start_col": 9, - "start_line": 362 - }, - "While trying to retrieve the implicit argument 'range_check_ptr' in:" - ], - "start_col": 17, - "start_line": 357 - }, - "While expanding the reference 'range_check_ptr' in:" - ], - "start_col": 17, - "start_line": 357 - } - }, - "539": { - "accessible_scopes": [ - "starkware.cairo.common.uint256", - "starkware.cairo.common.uint256.uint256_eq" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 22, - "end_line": 362, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/uint256.cairo" - }, - "start_col": 21, - "start_line": 362 - } - }, - "541": { - "accessible_scopes": [ - "starkware.cairo.common.uint256", - "starkware.cairo.common.uint256.uint256_eq" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 24, - "end_line": 362, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/uint256.cairo" - }, - "start_col": 9, - "start_line": 362 - } - }, - "542": { - "accessible_scopes": [ - "starkware.cairo.common.uint256", - "starkware.cairo.common.uint256.uint256_eq" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 32, - "end_line": 357, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/uint256.cairo" - }, - "parent_location": [ - { - "end_col": 32, - "end_line": 357, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/uint256.cairo" - }, - "parent_location": [ - { - "end_col": 20, - "end_line": 364, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/uint256.cairo" - }, - "start_col": 5, - "start_line": 364 - }, - "While trying to retrieve the implicit argument 'range_check_ptr' in:" - ], - "start_col": 17, - "start_line": 357 - }, - "While expanding the reference 'range_check_ptr' in:" - ], - "start_col": 17, - "start_line": 357 - } - }, - "543": { - "accessible_scopes": [ - "starkware.cairo.common.uint256", - "starkware.cairo.common.uint256.uint256_eq" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 18, - "end_line": 364, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/uint256.cairo" - }, - "start_col": 17, - "start_line": 364 - } - }, - "545": { - "accessible_scopes": [ - "starkware.cairo.common.uint256", - "starkware.cairo.common.uint256.uint256_eq" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 20, - "end_line": 364, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/uint256.cairo" - }, - "start_col": 5, - "start_line": 364 - } - }, - "546": { - "accessible_scopes": [ - "starkware.cairo.common.uint256", - "starkware.cairo.common.uint256.assert_uint256_le" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 39, - "end_line": 499, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/uint256.cairo" - }, - "parent_location": [ - { - "end_col": 32, - "end_line": 148, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/uint256.cairo" - }, - "parent_location": [ - { - "end_col": 33, - "end_line": 500, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/uint256.cairo" - }, - "start_col": 17, - "start_line": 500 - }, - "While trying to retrieve the implicit argument 'range_check_ptr' in:" - ], - "start_col": 17, - "start_line": 148 - }, - "While expanding the reference 'range_check_ptr' in:" - ], - "start_col": 24, - "start_line": 499 - } - }, - "547": { - "accessible_scopes": [ - "starkware.cairo.common.uint256", - "starkware.cairo.common.uint256.assert_uint256_le" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 51, - "end_line": 499, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/uint256.cairo" - }, - "parent_location": [ - { - "end_col": 29, - "end_line": 500, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/uint256.cairo" - }, - "start_col": 28, - "start_line": 500 - }, - "While expanding the reference 'a' in:" - ], - "start_col": 41, - "start_line": 499 - } - }, - "548": { - "accessible_scopes": [ - "starkware.cairo.common.uint256", - "starkware.cairo.common.uint256.assert_uint256_le" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 51, - "end_line": 499, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/uint256.cairo" - }, - "parent_location": [ - { - "end_col": 29, - "end_line": 500, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/uint256.cairo" - }, - "start_col": 28, - "start_line": 500 - }, - "While expanding the reference 'a' in:" - ], - "start_col": 41, - "start_line": 499 - } - }, - "549": { - "accessible_scopes": [ - "starkware.cairo.common.uint256", - "starkware.cairo.common.uint256.assert_uint256_le" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 63, - "end_line": 499, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/uint256.cairo" - }, - "parent_location": [ - { - "end_col": 32, - "end_line": 500, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/uint256.cairo" - }, - "start_col": 31, - "start_line": 500 - }, - "While expanding the reference 'b' in:" - ], - "start_col": 53, - "start_line": 499 - } - }, - "550": { - "accessible_scopes": [ - "starkware.cairo.common.uint256", - "starkware.cairo.common.uint256.assert_uint256_le" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 63, - "end_line": 499, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/uint256.cairo" - }, - "parent_location": [ - { - "end_col": 32, - "end_line": 500, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/uint256.cairo" - }, - "start_col": 31, - "start_line": 500 - }, - "While expanding the reference 'b' in:" - ], - "start_col": 53, - "start_line": 499 - } - }, - "551": { - "accessible_scopes": [ - "starkware.cairo.common.uint256", - "starkware.cairo.common.uint256.assert_uint256_le" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 33, - "end_line": 500, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/uint256.cairo" - }, - "start_col": 17, - "start_line": 500 - } - }, - "553": { - "accessible_scopes": [ - "starkware.cairo.common.uint256", - "starkware.cairo.common.uint256.assert_uint256_le" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 24, - "end_line": 502, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/uint256.cairo" - }, - "start_col": 9, - "start_line": 502 - } - }, - "555": { - "accessible_scopes": [ - "starkware.cairo.common.uint256", - "starkware.cairo.common.uint256.assert_uint256_le" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 32, - "end_line": 148, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/uint256.cairo" - }, - "parent_location": [ - { - "end_col": 33, - "end_line": 500, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/uint256.cairo" - }, - "parent_location": [ - { - "end_col": 39, - "end_line": 499, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/uint256.cairo" - }, - "parent_location": [ - { - "end_col": 15, - "end_line": 504, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/uint256.cairo" - }, - "start_col": 5, - "start_line": 504 - }, - "While trying to retrieve the implicit argument 'range_check_ptr' in:" - ], - "start_col": 24, - "start_line": 499 - }, - "While expanding the reference 'range_check_ptr' in:" - ], - "start_col": 17, - "start_line": 500 - }, - "While trying to update the implicit return value 'range_check_ptr' in:" - ], - "start_col": 17, - "start_line": 148 - } - }, - "556": { - "accessible_scopes": [ - "starkware.cairo.common.uint256", - "starkware.cairo.common.uint256.assert_uint256_le" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 15, - "end_line": 504, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/uint256.cairo" - }, - "start_col": 5, - "start_line": 504 - } - }, - "557": { - "accessible_scopes": [ - "openzeppelin.introspection.erc165.library", - "openzeppelin.introspection.erc165.library.ERC165_supported_interfaces", - "openzeppelin.introspection.erc165.library.ERC165_supported_interfaces.addr" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 41, - "end_line": 7, - "input_file": { - "filename": "autogen/starknet/storage_var/ERC165_supported_interfaces/impl.cairo" - }, - "parent_location": [ - { - "end_col": 48, - "end_line": 9, - "input_file": { - "filename": "autogen/starknet/storage_var/ERC165_supported_interfaces/impl.cairo" - }, - "start_col": 36, - "start_line": 9 - }, - "While expanding the reference 'pedersen_ptr' in:" - ], - "start_col": 15, - "start_line": 7 - } - }, - "558": { - "accessible_scopes": [ - "openzeppelin.introspection.erc165.library", - "openzeppelin.introspection.erc165.library.ERC165_supported_interfaces", - "openzeppelin.introspection.erc165.library.ERC165_supported_interfaces.addr" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 94, - "end_line": 8, - "input_file": { - "filename": "autogen/starknet/storage_var/ERC165_supported_interfaces/impl.cairo" - }, - "parent_location": [ - { - "end_col": 53, - "end_line": 9, - "input_file": { - "filename": "autogen/starknet/storage_var/ERC165_supported_interfaces/impl.cairo" - }, - "start_col": 50, - "start_line": 9 - }, - "While expanding the reference 'res' in:" - ], - "start_col": 19, - "start_line": 8 - } - }, - "560": { - "accessible_scopes": [ - "openzeppelin.introspection.erc165.library", - "openzeppelin.introspection.erc165.library.ERC165_supported_interfaces", - "openzeppelin.introspection.erc165.library.ERC165_supported_interfaces.addr" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 84, - "end_line": 9, - "input_file": { - "filename": "autogen/starknet/storage_var/ERC165_supported_interfaces/impl.cairo" - }, - "start_col": 55, - "start_line": 9 - } - }, - "561": { - "accessible_scopes": [ - "openzeppelin.introspection.erc165.library", - "openzeppelin.introspection.erc165.library.ERC165_supported_interfaces", - "openzeppelin.introspection.erc165.library.ERC165_supported_interfaces.addr" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 85, - "end_line": 9, - "input_file": { - "filename": "autogen/starknet/storage_var/ERC165_supported_interfaces/impl.cairo" - }, - "start_col": 21, - "start_line": 9 - } - }, - "563": { - "accessible_scopes": [ - "openzeppelin.introspection.erc165.library", - "openzeppelin.introspection.erc165.library.ERC165_supported_interfaces", - "openzeppelin.introspection.erc165.library.ERC165_supported_interfaces.addr" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 58, - "end_line": 7, - "input_file": { - "filename": "autogen/starknet/storage_var/ERC165_supported_interfaces/impl.cairo" - }, - "parent_location": [ - { - "end_col": 39, - "end_line": 12, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/starknet/common/storage.cairo" - }, - "parent_location": [ - { - "end_col": 48, - "end_line": 10, - "input_file": { - "filename": "autogen/starknet/storage_var/ERC165_supported_interfaces/impl.cairo" - }, - "start_col": 21, - "start_line": 10 - }, - "While trying to retrieve the implicit argument 'range_check_ptr' in:" - ], - "start_col": 24, - "start_line": 12 - }, - "While expanding the reference 'range_check_ptr' in:" - ], - "start_col": 43, - "start_line": 7 - } - }, - "564": { - "accessible_scopes": [ - "openzeppelin.introspection.erc165.library", - "openzeppelin.introspection.erc165.library.ERC165_supported_interfaces", - "openzeppelin.introspection.erc165.library.ERC165_supported_interfaces.addr" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 17, - "end_line": 9, - "input_file": { - "filename": "autogen/starknet/storage_var/ERC165_supported_interfaces/impl.cairo" - }, - "parent_location": [ - { - "end_col": 47, - "end_line": 10, - "input_file": { - "filename": "autogen/starknet/storage_var/ERC165_supported_interfaces/impl.cairo" - }, - "start_col": 44, - "start_line": 10 - }, - "While expanding the reference 'res' in:" - ], - "start_col": 14, - "start_line": 9 - } - }, - "565": { - "accessible_scopes": [ - "openzeppelin.introspection.erc165.library", - "openzeppelin.introspection.erc165.library.ERC165_supported_interfaces", - "openzeppelin.introspection.erc165.library.ERC165_supported_interfaces.addr" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 48, - "end_line": 10, - "input_file": { - "filename": "autogen/starknet/storage_var/ERC165_supported_interfaces/impl.cairo" - }, - "start_col": 21, - "start_line": 10 - } - }, - "567": { - "accessible_scopes": [ - "openzeppelin.introspection.erc165.library", - "openzeppelin.introspection.erc165.library.ERC165_supported_interfaces", - "openzeppelin.introspection.erc165.library.ERC165_supported_interfaces.addr" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 48, - "end_line": 9, - "input_file": { - "filename": "autogen/starknet/storage_var/ERC165_supported_interfaces/impl.cairo" - }, - "parent_location": [ - { - "end_col": 41, - "end_line": 7, - "input_file": { - "filename": "autogen/starknet/storage_var/ERC165_supported_interfaces/decl.cairo" - }, - "parent_location": [ - { - "end_col": 26, - "end_line": 11, - "input_file": { - "filename": "autogen/starknet/storage_var/ERC165_supported_interfaces/impl.cairo" - }, - "start_col": 9, - "start_line": 11 - }, - "While trying to retrieve the implicit argument 'pedersen_ptr' in:" - ], - "start_col": 15, - "start_line": 7 - }, - "While expanding the reference 'pedersen_ptr' in:" - ], - "start_col": 36, - "start_line": 9 - } - }, - "568": { - "accessible_scopes": [ - "openzeppelin.introspection.erc165.library", - "openzeppelin.introspection.erc165.library.ERC165_supported_interfaces", - "openzeppelin.introspection.erc165.library.ERC165_supported_interfaces.addr" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 39, - "end_line": 12, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/starknet/common/storage.cairo" - }, - "parent_location": [ - { - "end_col": 48, - "end_line": 10, - "input_file": { - "filename": "autogen/starknet/storage_var/ERC165_supported_interfaces/impl.cairo" - }, - "parent_location": [ - { - "end_col": 58, - "end_line": 7, - "input_file": { - "filename": "autogen/starknet/storage_var/ERC165_supported_interfaces/decl.cairo" - }, - "parent_location": [ - { - "end_col": 26, - "end_line": 11, - "input_file": { - "filename": "autogen/starknet/storage_var/ERC165_supported_interfaces/impl.cairo" - }, - "start_col": 9, - "start_line": 11 - }, - "While trying to retrieve the implicit argument 'range_check_ptr' in:" - ], - "start_col": 43, - "start_line": 7 - }, - "While expanding the reference 'range_check_ptr' in:" - ], - "start_col": 21, - "start_line": 10 - }, - "While trying to update the implicit return value 'range_check_ptr' in:" - ], - "start_col": 24, - "start_line": 12 - } - }, - "569": { - "accessible_scopes": [ - "openzeppelin.introspection.erc165.library", - "openzeppelin.introspection.erc165.library.ERC165_supported_interfaces", - "openzeppelin.introspection.erc165.library.ERC165_supported_interfaces.addr" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 17, - "end_line": 10, - "input_file": { - "filename": "autogen/starknet/storage_var/ERC165_supported_interfaces/impl.cairo" - }, - "parent_location": [ - { - "end_col": 24, - "end_line": 11, - "input_file": { - "filename": "autogen/starknet/storage_var/ERC165_supported_interfaces/impl.cairo" - }, - "start_col": 21, - "start_line": 11 - }, - "While expanding the reference 'res' in:" - ], - "start_col": 14, - "start_line": 10 - } - }, - "570": { - "accessible_scopes": [ - "openzeppelin.introspection.erc165.library", - "openzeppelin.introspection.erc165.library.ERC165_supported_interfaces", - "openzeppelin.introspection.erc165.library.ERC165_supported_interfaces.addr" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 26, - "end_line": 11, - "input_file": { - "filename": "autogen/starknet/storage_var/ERC165_supported_interfaces/impl.cairo" - }, - "start_col": 9, - "start_line": 11 - } - }, - "571": { - "accessible_scopes": [ - "openzeppelin.introspection.erc165.library", - "openzeppelin.introspection.erc165.library.ERC165_supported_interfaces", - "openzeppelin.introspection.erc165.library.ERC165_supported_interfaces.read" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 61, - "end_line": 14, - "input_file": { - "filename": "autogen/starknet/storage_var/ERC165_supported_interfaces/impl.cairo" - }, - "parent_location": [ - { - "end_col": 41, - "end_line": 7, - "input_file": { - "filename": "autogen/starknet/storage_var/ERC165_supported_interfaces/decl.cairo" - }, - "parent_location": [ - { - "end_col": 48, - "end_line": 17, - "input_file": { - "filename": "autogen/starknet/storage_var/ERC165_supported_interfaces/impl.cairo" - }, - "start_col": 30, - "start_line": 17 - }, - "While trying to retrieve the implicit argument 'pedersen_ptr' in:" - ], - "start_col": 15, - "start_line": 7 - }, - "While expanding the reference 'pedersen_ptr' in:" - ], - "start_col": 35, - "start_line": 14 - } - }, - "572": { - "accessible_scopes": [ - "openzeppelin.introspection.erc165.library", - "openzeppelin.introspection.erc165.library.ERC165_supported_interfaces", - "openzeppelin.introspection.erc165.library.ERC165_supported_interfaces.read" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 78, - "end_line": 14, - "input_file": { - "filename": "autogen/starknet/storage_var/ERC165_supported_interfaces/impl.cairo" - }, - "parent_location": [ - { - "end_col": 58, - "end_line": 7, - "input_file": { - "filename": "autogen/starknet/storage_var/ERC165_supported_interfaces/decl.cairo" - }, - "parent_location": [ - { - "end_col": 48, - "end_line": 17, - "input_file": { - "filename": "autogen/starknet/storage_var/ERC165_supported_interfaces/impl.cairo" - }, - "start_col": 30, - "start_line": 17 - }, - "While trying to retrieve the implicit argument 'range_check_ptr' in:" - ], - "start_col": 43, - "start_line": 7 - }, - "While expanding the reference 'range_check_ptr' in:" - ], - "start_col": 63, - "start_line": 14 - } - }, - "573": { - "accessible_scopes": [ - "openzeppelin.introspection.erc165.library", - "openzeppelin.introspection.erc165.library.ERC165_supported_interfaces", - "openzeppelin.introspection.erc165.library.ERC165_supported_interfaces.read" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 27, - "end_line": 15, - "input_file": { - "filename": "autogen/starknet/storage_var/ERC165_supported_interfaces/impl.cairo" - }, - "parent_location": [ - { - "end_col": 47, - "end_line": 17, - "input_file": { - "filename": "autogen/starknet/storage_var/ERC165_supported_interfaces/impl.cairo" - }, - "start_col": 35, - "start_line": 17 - }, - "While expanding the reference 'interface_id' in:" - ], - "start_col": 9, - "start_line": 15 - } - }, - "574": { - "accessible_scopes": [ - "openzeppelin.introspection.erc165.library", - "openzeppelin.introspection.erc165.library.ERC165_supported_interfaces", - "openzeppelin.introspection.erc165.library.ERC165_supported_interfaces.read" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 48, - "end_line": 17, - "input_file": { - "filename": "autogen/starknet/storage_var/ERC165_supported_interfaces/impl.cairo" - }, - "start_col": 30, - "start_line": 17 - } - }, - "576": { - "accessible_scopes": [ - "openzeppelin.introspection.erc165.library", - "openzeppelin.introspection.erc165.library.ERC165_supported_interfaces", - "openzeppelin.introspection.erc165.library.ERC165_supported_interfaces.read" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 33, - "end_line": 14, - "input_file": { - "filename": "autogen/starknet/storage_var/ERC165_supported_interfaces/impl.cairo" - }, - "parent_location": [ - { - "end_col": 37, - "end_line": 352, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/starknet/common/syscalls.cairo" - }, - "parent_location": [ - { - "end_col": 75, - "end_line": 18, - "input_file": { - "filename": "autogen/starknet/storage_var/ERC165_supported_interfaces/impl.cairo" - }, - "start_col": 37, - "start_line": 18 - }, - "While trying to retrieve the implicit argument 'syscall_ptr' in:" - ], - "start_col": 19, - "start_line": 352 - }, - "While expanding the reference 'syscall_ptr' in:" - ], - "start_col": 15, - "start_line": 14 - } - }, - "577": { - "accessible_scopes": [ - "openzeppelin.introspection.erc165.library", - "openzeppelin.introspection.erc165.library.ERC165_supported_interfaces", - "openzeppelin.introspection.erc165.library.ERC165_supported_interfaces.read" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 26, - "end_line": 17, - "input_file": { - "filename": "autogen/starknet/storage_var/ERC165_supported_interfaces/impl.cairo" - }, - "parent_location": [ - { - "end_col": 70, - "end_line": 18, - "input_file": { - "filename": "autogen/starknet/storage_var/ERC165_supported_interfaces/impl.cairo" - }, - "start_col": 58, - "start_line": 18 - }, - "While expanding the reference 'storage_addr' in:" - ], - "start_col": 14, - "start_line": 17 - } - }, - "578": { - "accessible_scopes": [ - "openzeppelin.introspection.erc165.library", - "openzeppelin.introspection.erc165.library.ERC165_supported_interfaces", - "openzeppelin.introspection.erc165.library.ERC165_supported_interfaces.read" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 75, - "end_line": 18, - "input_file": { - "filename": "autogen/starknet/storage_var/ERC165_supported_interfaces/impl.cairo" - }, - "start_col": 37, - "start_line": 18 - } - }, - "580": { - "accessible_scopes": [ - "openzeppelin.introspection.erc165.library", - "openzeppelin.introspection.erc165.library.ERC165_supported_interfaces", - "openzeppelin.introspection.erc165.library.ERC165_supported_interfaces.read" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 37, - "end_line": 352, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/starknet/common/syscalls.cairo" - }, - "parent_location": [ - { - "end_col": 75, - "end_line": 18, - "input_file": { - "filename": "autogen/starknet/storage_var/ERC165_supported_interfaces/impl.cairo" - }, - "parent_location": [ - { - "end_col": 42, - "end_line": 20, - "input_file": { - "filename": "autogen/starknet/storage_var/ERC165_supported_interfaces/impl.cairo" - }, - "start_col": 31, - "start_line": 20 - }, - "While expanding the reference 'syscall_ptr' in:" - ], - "start_col": 37, - "start_line": 18 - }, - "While trying to update the implicit return value 'syscall_ptr' in:" - ], - "start_col": 19, - "start_line": 352 - } - }, - "581": { - "accessible_scopes": [ - "openzeppelin.introspection.erc165.library", - "openzeppelin.introspection.erc165.library.ERC165_supported_interfaces", - "openzeppelin.introspection.erc165.library.ERC165_supported_interfaces.read" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 41, - "end_line": 7, - "input_file": { - "filename": "autogen/starknet/storage_var/ERC165_supported_interfaces/decl.cairo" - }, - "parent_location": [ - { - "end_col": 48, - "end_line": 17, - "input_file": { - "filename": "autogen/starknet/storage_var/ERC165_supported_interfaces/impl.cairo" - }, - "parent_location": [ - { - "end_col": 44, - "end_line": 21, - "input_file": { - "filename": "autogen/starknet/storage_var/ERC165_supported_interfaces/impl.cairo" - }, - "start_col": 32, - "start_line": 21 - }, - "While expanding the reference 'pedersen_ptr' in:" - ], - "start_col": 30, - "start_line": 17 - }, - "While trying to update the implicit return value 'pedersen_ptr' in:" - ], - "start_col": 15, - "start_line": 7 - } - }, - "582": { - "accessible_scopes": [ - "openzeppelin.introspection.erc165.library", - "openzeppelin.introspection.erc165.library.ERC165_supported_interfaces", - "openzeppelin.introspection.erc165.library.ERC165_supported_interfaces.read" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 58, - "end_line": 7, - "input_file": { - "filename": "autogen/starknet/storage_var/ERC165_supported_interfaces/decl.cairo" - }, - "parent_location": [ - { - "end_col": 48, - "end_line": 17, - "input_file": { - "filename": "autogen/starknet/storage_var/ERC165_supported_interfaces/impl.cairo" - }, - "parent_location": [ - { - "end_col": 50, - "end_line": 22, - "input_file": { - "filename": "autogen/starknet/storage_var/ERC165_supported_interfaces/impl.cairo" - }, - "start_col": 35, - "start_line": 22 - }, - "While expanding the reference 'range_check_ptr' in:" - ], - "start_col": 30, - "start_line": 17 - }, - "While trying to update the implicit return value 'range_check_ptr' in:" - ], - "start_col": 43, - "start_line": 7 - } - }, - "583": { - "accessible_scopes": [ - "openzeppelin.introspection.erc165.library", - "openzeppelin.introspection.erc165.library.ERC165_supported_interfaces", - "openzeppelin.introspection.erc165.library.ERC165_supported_interfaces.read" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 33, - "end_line": 18, - "input_file": { - "filename": "autogen/starknet/storage_var/ERC165_supported_interfaces/impl.cairo" - }, - "parent_location": [ - { - "end_col": 64, - "end_line": 23, - "input_file": { - "filename": "autogen/starknet/storage_var/ERC165_supported_interfaces/impl.cairo" - }, - "start_col": 45, - "start_line": 23 - }, - "While expanding the reference '__storage_var_temp0' in:" - ], - "start_col": 14, - "start_line": 18 - } - }, - "584": { - "accessible_scopes": [ - "openzeppelin.introspection.erc165.library", - "openzeppelin.introspection.erc165.library.ERC165_supported_interfaces", - "openzeppelin.introspection.erc165.library.ERC165_supported_interfaces.read" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 55, - "end_line": 24, - "input_file": { - "filename": "autogen/starknet/storage_var/ERC165_supported_interfaces/impl.cairo" - }, - "start_col": 9, - "start_line": 24 - } - }, - "585": { - "accessible_scopes": [ - "openzeppelin.introspection.erc165.library", - "openzeppelin.introspection.erc165.library.ERC165_supported_interfaces", - "openzeppelin.introspection.erc165.library.ERC165_supported_interfaces.write" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 62, - "end_line": 27, - "input_file": { - "filename": "autogen/starknet/storage_var/ERC165_supported_interfaces/impl.cairo" - }, - "parent_location": [ - { - "end_col": 41, - "end_line": 7, - "input_file": { - "filename": "autogen/starknet/storage_var/ERC165_supported_interfaces/decl.cairo" - }, - "parent_location": [ - { - "end_col": 48, - "end_line": 30, - "input_file": { - "filename": "autogen/starknet/storage_var/ERC165_supported_interfaces/impl.cairo" - }, - "start_col": 30, - "start_line": 30 - }, - "While trying to retrieve the implicit argument 'pedersen_ptr' in:" - ], - "start_col": 15, - "start_line": 7 - }, - "While expanding the reference 'pedersen_ptr' in:" - ], - "start_col": 36, - "start_line": 27 - } - }, - "586": { - "accessible_scopes": [ - "openzeppelin.introspection.erc165.library", - "openzeppelin.introspection.erc165.library.ERC165_supported_interfaces", - "openzeppelin.introspection.erc165.library.ERC165_supported_interfaces.write" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 79, - "end_line": 27, - "input_file": { - "filename": "autogen/starknet/storage_var/ERC165_supported_interfaces/impl.cairo" - }, - "parent_location": [ - { - "end_col": 58, - "end_line": 7, - "input_file": { - "filename": "autogen/starknet/storage_var/ERC165_supported_interfaces/decl.cairo" - }, - "parent_location": [ - { - "end_col": 48, - "end_line": 30, - "input_file": { - "filename": "autogen/starknet/storage_var/ERC165_supported_interfaces/impl.cairo" - }, - "start_col": 30, - "start_line": 30 - }, - "While trying to retrieve the implicit argument 'range_check_ptr' in:" - ], - "start_col": 43, - "start_line": 7 - }, - "While expanding the reference 'range_check_ptr' in:" - ], - "start_col": 64, - "start_line": 27 - } - }, - "587": { - "accessible_scopes": [ - "openzeppelin.introspection.erc165.library", - "openzeppelin.introspection.erc165.library.ERC165_supported_interfaces", - "openzeppelin.introspection.erc165.library.ERC165_supported_interfaces.write" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 27, - "end_line": 28, - "input_file": { - "filename": "autogen/starknet/storage_var/ERC165_supported_interfaces/impl.cairo" - }, - "parent_location": [ - { - "end_col": 47, - "end_line": 30, - "input_file": { - "filename": "autogen/starknet/storage_var/ERC165_supported_interfaces/impl.cairo" - }, - "start_col": 35, - "start_line": 30 - }, - "While expanding the reference 'interface_id' in:" - ], - "start_col": 9, - "start_line": 28 - } - }, - "588": { - "accessible_scopes": [ - "openzeppelin.introspection.erc165.library", - "openzeppelin.introspection.erc165.library.ERC165_supported_interfaces", - "openzeppelin.introspection.erc165.library.ERC165_supported_interfaces.write" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 48, - "end_line": 30, - "input_file": { - "filename": "autogen/starknet/storage_var/ERC165_supported_interfaces/impl.cairo" - }, - "start_col": 30, - "start_line": 30 - } - }, - "590": { - "accessible_scopes": [ - "openzeppelin.introspection.erc165.library", - "openzeppelin.introspection.erc165.library.ERC165_supported_interfaces", - "openzeppelin.introspection.erc165.library.ERC165_supported_interfaces.write" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 34, - "end_line": 27, - "input_file": { - "filename": "autogen/starknet/storage_var/ERC165_supported_interfaces/impl.cairo" - }, - "parent_location": [ - { - "end_col": 38, - "end_line": 370, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/starknet/common/syscalls.cairo" - }, - "parent_location": [ - { - "end_col": 80, - "end_line": 31, - "input_file": { - "filename": "autogen/starknet/storage_var/ERC165_supported_interfaces/impl.cairo" - }, - "start_col": 9, - "start_line": 31 - }, - "While trying to retrieve the implicit argument 'syscall_ptr' in:" - ], - "start_col": 20, - "start_line": 370 - }, - "While expanding the reference 'syscall_ptr' in:" - ], - "start_col": 16, - "start_line": 27 - } - }, - "591": { - "accessible_scopes": [ - "openzeppelin.introspection.erc165.library", - "openzeppelin.introspection.erc165.library.ERC165_supported_interfaces", - "openzeppelin.introspection.erc165.library.ERC165_supported_interfaces.write" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 26, - "end_line": 30, - "input_file": { - "filename": "autogen/starknet/storage_var/ERC165_supported_interfaces/impl.cairo" - }, - "parent_location": [ - { - "end_col": 43, - "end_line": 31, - "input_file": { - "filename": "autogen/starknet/storage_var/ERC165_supported_interfaces/impl.cairo" - }, - "start_col": 31, - "start_line": 31 - }, - "While expanding the reference 'storage_addr' in:" - ], - "start_col": 14, - "start_line": 30 - } - }, - "592": { - "accessible_scopes": [ - "openzeppelin.introspection.erc165.library", - "openzeppelin.introspection.erc165.library.ERC165_supported_interfaces", - "openzeppelin.introspection.erc165.library.ERC165_supported_interfaces.write" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 79, - "end_line": 31, - "input_file": { - "filename": "autogen/starknet/storage_var/ERC165_supported_interfaces/impl.cairo" - }, - "start_col": 55, - "start_line": 31 - } - }, - "593": { - "accessible_scopes": [ - "openzeppelin.introspection.erc165.library", - "openzeppelin.introspection.erc165.library.ERC165_supported_interfaces", - "openzeppelin.introspection.erc165.library.ERC165_supported_interfaces.write" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 80, - "end_line": 31, - "input_file": { - "filename": "autogen/starknet/storage_var/ERC165_supported_interfaces/impl.cairo" - }, - "start_col": 9, - "start_line": 31 - } - }, - "595": { - "accessible_scopes": [ - "openzeppelin.introspection.erc165.library", - "openzeppelin.introspection.erc165.library.ERC165_supported_interfaces", - "openzeppelin.introspection.erc165.library.ERC165_supported_interfaces.write" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 41, - "end_line": 7, - "input_file": { - "filename": "autogen/starknet/storage_var/ERC165_supported_interfaces/decl.cairo" - }, - "parent_location": [ - { - "end_col": 48, - "end_line": 30, - "input_file": { - "filename": "autogen/starknet/storage_var/ERC165_supported_interfaces/impl.cairo" - }, - "parent_location": [ - { - "end_col": 62, - "end_line": 21, - "input_file": { - "filename": "autogen/starknet/storage_var/ERC165_supported_interfaces/decl.cairo" - }, - "parent_location": [ - { - "end_col": 19, - "end_line": 32, - "input_file": { - "filename": "autogen/starknet/storage_var/ERC165_supported_interfaces/impl.cairo" - }, - "start_col": 9, - "start_line": 32 - }, - "While trying to retrieve the implicit argument 'pedersen_ptr' in:" - ], - "start_col": 36, - "start_line": 21 - }, - "While expanding the reference 'pedersen_ptr' in:" - ], - "start_col": 30, - "start_line": 30 - }, - "While trying to update the implicit return value 'pedersen_ptr' in:" - ], - "start_col": 15, - "start_line": 7 - } - }, - "596": { - "accessible_scopes": [ - "openzeppelin.introspection.erc165.library", - "openzeppelin.introspection.erc165.library.ERC165_supported_interfaces", - "openzeppelin.introspection.erc165.library.ERC165_supported_interfaces.write" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 58, - "end_line": 7, - "input_file": { - "filename": "autogen/starknet/storage_var/ERC165_supported_interfaces/decl.cairo" - }, - "parent_location": [ - { - "end_col": 48, - "end_line": 30, - "input_file": { - "filename": "autogen/starknet/storage_var/ERC165_supported_interfaces/impl.cairo" - }, - "parent_location": [ - { - "end_col": 79, - "end_line": 21, - "input_file": { - "filename": "autogen/starknet/storage_var/ERC165_supported_interfaces/decl.cairo" - }, - "parent_location": [ - { - "end_col": 19, - "end_line": 32, - "input_file": { - "filename": "autogen/starknet/storage_var/ERC165_supported_interfaces/impl.cairo" - }, - "start_col": 9, - "start_line": 32 - }, - "While trying to retrieve the implicit argument 'range_check_ptr' in:" - ], - "start_col": 64, - "start_line": 21 - }, - "While expanding the reference 'range_check_ptr' in:" - ], - "start_col": 30, - "start_line": 30 - }, - "While trying to update the implicit return value 'range_check_ptr' in:" - ], - "start_col": 43, - "start_line": 7 - } - }, - "597": { - "accessible_scopes": [ - "openzeppelin.introspection.erc165.library", - "openzeppelin.introspection.erc165.library.ERC165_supported_interfaces", - "openzeppelin.introspection.erc165.library.ERC165_supported_interfaces.write" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 19, - "end_line": 32, - "input_file": { - "filename": "autogen/starknet/storage_var/ERC165_supported_interfaces/impl.cairo" - }, - "start_col": 9, - "start_line": 32 - } - }, - "598": { - "accessible_scopes": [ - "openzeppelin.introspection.erc165.library", - "openzeppelin.introspection.erc165.library.ERC165", - "openzeppelin.introspection.erc165.library.ERC165.supports_interface" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 39, - "end_line": 20, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/introspection/erc165/library.cairo" - }, - "start_col": 13, - "start_line": 20 - } - }, - "600": { - "accessible_scopes": [ - "openzeppelin.introspection.erc165.library", - "openzeppelin.introspection.erc165.library.ERC165", - "openzeppelin.introspection.erc165.library.ERC165.supports_interface" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 11, - "end_line": 20, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/introspection/erc165/library.cairo" - }, - "start_col": 9, - "start_line": 20 - } - }, - "602": { - "accessible_scopes": [ - "openzeppelin.introspection.erc165.library", - "openzeppelin.introspection.erc165.library.ERC165", - "openzeppelin.introspection.erc165.library.ERC165.supports_interface" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 47, - "end_line": 17, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/introspection/erc165/library.cairo" - }, - "parent_location": [ - { - "end_col": 47, - "end_line": 17, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/introspection/erc165/library.cairo" - }, - "parent_location": [ - { - "end_col": 35, - "end_line": 21, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/introspection/erc165/library.cairo" - }, - "start_col": 13, - "start_line": 21 - }, - "While trying to retrieve the implicit argument 'syscall_ptr' in:" - ], - "start_col": 29, - "start_line": 17 - }, - "While expanding the reference 'syscall_ptr' in:" - ], - "start_col": 29, - "start_line": 17 - } - }, - "603": { - "accessible_scopes": [ - "openzeppelin.introspection.erc165.library", - "openzeppelin.introspection.erc165.library.ERC165", - "openzeppelin.introspection.erc165.library.ERC165.supports_interface" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 75, - "end_line": 17, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/introspection/erc165/library.cairo" - }, - "parent_location": [ - { - "end_col": 75, - "end_line": 17, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/introspection/erc165/library.cairo" - }, - "parent_location": [ - { - "end_col": 35, - "end_line": 21, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/introspection/erc165/library.cairo" - }, - "start_col": 13, - "start_line": 21 - }, - "While trying to retrieve the implicit argument 'pedersen_ptr' in:" - ], - "start_col": 49, - "start_line": 17 - }, - "While expanding the reference 'pedersen_ptr' in:" - ], - "start_col": 49, - "start_line": 17 - } - }, - "604": { - "accessible_scopes": [ - "openzeppelin.introspection.erc165.library", - "openzeppelin.introspection.erc165.library.ERC165", - "openzeppelin.introspection.erc165.library.ERC165.supports_interface" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 92, - "end_line": 17, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/introspection/erc165/library.cairo" - }, - "parent_location": [ - { - "end_col": 92, - "end_line": 17, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/introspection/erc165/library.cairo" - }, - "parent_location": [ - { - "end_col": 35, - "end_line": 21, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/introspection/erc165/library.cairo" - }, - "start_col": 13, - "start_line": 21 - }, - "While trying to retrieve the implicit argument 'range_check_ptr' in:" - ], - "start_col": 77, - "start_line": 17 - }, - "While expanding the reference 'range_check_ptr' in:" - ], - "start_col": 77, - "start_line": 17 - } - }, - "605": { - "accessible_scopes": [ - "openzeppelin.introspection.erc165.library", - "openzeppelin.introspection.erc165.library.ERC165", - "openzeppelin.introspection.erc165.library.ERC165.supports_interface" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 33, - "end_line": 21, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/introspection/erc165/library.cairo" - }, - "start_col": 29, - "start_line": 21 - } - }, - "607": { - "accessible_scopes": [ - "openzeppelin.introspection.erc165.library", - "openzeppelin.introspection.erc165.library.ERC165", - "openzeppelin.introspection.erc165.library.ERC165.supports_interface" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 35, - "end_line": 21, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/introspection/erc165/library.cairo" - }, - "start_col": 13, - "start_line": 21 - } - }, - "608": { - "accessible_scopes": [ - "openzeppelin.introspection.erc165.library", - "openzeppelin.introspection.erc165.library.ERC165", - "openzeppelin.introspection.erc165.library.ERC165.supports_interface" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 47, - "end_line": 17, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/introspection/erc165/library.cairo" - }, - "parent_location": [ - { - "end_col": 33, - "end_line": 13, - "input_file": { - "filename": "autogen/starknet/storage_var/ERC165_supported_interfaces/decl.cairo" - }, - "parent_location": [ - { - "end_col": 76, - "end_line": 25, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/introspection/erc165/library.cairo" - }, - "start_col": 30, - "start_line": 25 - }, - "While trying to retrieve the implicit argument 'syscall_ptr' in:" - ], - "start_col": 15, - "start_line": 13 - }, - "While expanding the reference 'syscall_ptr' in:" - ], - "start_col": 29, - "start_line": 17 - } - }, - "609": { - "accessible_scopes": [ - "openzeppelin.introspection.erc165.library", - "openzeppelin.introspection.erc165.library.ERC165", - "openzeppelin.introspection.erc165.library.ERC165.supports_interface" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 75, - "end_line": 17, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/introspection/erc165/library.cairo" - }, - "parent_location": [ - { - "end_col": 61, - "end_line": 13, - "input_file": { - "filename": "autogen/starknet/storage_var/ERC165_supported_interfaces/decl.cairo" - }, - "parent_location": [ - { - "end_col": 76, - "end_line": 25, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/introspection/erc165/library.cairo" - }, - "start_col": 30, - "start_line": 25 - }, - "While trying to retrieve the implicit argument 'pedersen_ptr' in:" - ], - "start_col": 35, - "start_line": 13 - }, - "While expanding the reference 'pedersen_ptr' in:" - ], - "start_col": 49, - "start_line": 17 - } - }, - "610": { - "accessible_scopes": [ - "openzeppelin.introspection.erc165.library", - "openzeppelin.introspection.erc165.library.ERC165", - "openzeppelin.introspection.erc165.library.ERC165.supports_interface" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 92, - "end_line": 17, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/introspection/erc165/library.cairo" - }, - "parent_location": [ - { - "end_col": 78, - "end_line": 13, - "input_file": { - "filename": "autogen/starknet/storage_var/ERC165_supported_interfaces/decl.cairo" - }, - "parent_location": [ - { - "end_col": 76, - "end_line": 25, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/introspection/erc165/library.cairo" - }, - "start_col": 30, - "start_line": 25 - }, - "While trying to retrieve the implicit argument 'range_check_ptr' in:" - ], - "start_col": 63, - "start_line": 13 - }, - "While expanding the reference 'range_check_ptr' in:" - ], - "start_col": 77, - "start_line": 17 - } - }, - "611": { - "accessible_scopes": [ - "openzeppelin.introspection.erc165.library", - "openzeppelin.introspection.erc165.library.ERC165", - "openzeppelin.introspection.erc165.library.ERC165.supports_interface" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 27, - "end_line": 18, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/introspection/erc165/library.cairo" - }, - "parent_location": [ - { - "end_col": 75, - "end_line": 25, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/introspection/erc165/library.cairo" - }, - "start_col": 63, - "start_line": 25 - }, - "While expanding the reference 'interface_id' in:" - ], - "start_col": 9, - "start_line": 18 - } - }, - "612": { - "accessible_scopes": [ - "openzeppelin.introspection.erc165.library", - "openzeppelin.introspection.erc165.library.ERC165", - "openzeppelin.introspection.erc165.library.ERC165.supports_interface" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 76, - "end_line": 25, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/introspection/erc165/library.cairo" - }, - "start_col": 30, - "start_line": 25 - } - }, - "614": { - "accessible_scopes": [ - "openzeppelin.introspection.erc165.library", - "openzeppelin.introspection.erc165.library.ERC165", - "openzeppelin.introspection.erc165.library.ERC165.supports_interface" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 39, - "end_line": 26, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/introspection/erc165/library.cairo" - }, - "start_col": 9, - "start_line": 26 - } - }, - "615": { - "accessible_scopes": [ - "openzeppelin.introspection.erc165.library", - "openzeppelin.introspection.erc165.library.ERC165", - "openzeppelin.introspection.erc165.library.ERC165.register_interface" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 27, - "end_line": 30, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/introspection/erc165/library.cairo" - }, - "parent_location": [ - { - "end_col": 42, - "end_line": 33, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/introspection/erc165/library.cairo" - }, - "start_col": 30, - "start_line": 33 - }, - "While expanding the reference 'interface_id' in:" - ], - "start_col": 9, - "start_line": 30 - } - }, - "616": { - "accessible_scopes": [ - "openzeppelin.introspection.erc165.library", - "openzeppelin.introspection.erc165.library.ERC165", - "openzeppelin.introspection.erc165.library.ERC165.register_interface" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 54, - "end_line": 33, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/introspection/erc165/library.cairo" - }, - "start_col": 44, - "start_line": 33 - } - }, - "618": { - "accessible_scopes": [ - "openzeppelin.introspection.erc165.library", - "openzeppelin.introspection.erc165.library.ERC165", - "openzeppelin.introspection.erc165.library.ERC165.register_interface" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 55, - "end_line": 33, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/introspection/erc165/library.cairo" - }, - "start_col": 13, - "start_line": 33 - } - }, - "620": { - "accessible_scopes": [ - "openzeppelin.introspection.erc165.library", - "openzeppelin.introspection.erc165.library.ERC165", - "openzeppelin.introspection.erc165.library.ERC165.register_interface" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 47, - "end_line": 29, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/introspection/erc165/library.cairo" - }, - "parent_location": [ - { - "end_col": 34, - "end_line": 21, - "input_file": { - "filename": "autogen/starknet/storage_var/ERC165_supported_interfaces/decl.cairo" - }, - "parent_location": [ - { - "end_col": 62, - "end_line": 35, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/introspection/erc165/library.cairo" - }, - "start_col": 9, - "start_line": 35 - }, - "While trying to retrieve the implicit argument 'syscall_ptr' in:" - ], - "start_col": 16, - "start_line": 21 - }, - "While expanding the reference 'syscall_ptr' in:" - ], - "start_col": 29, - "start_line": 29 - } - }, - "621": { - "accessible_scopes": [ - "openzeppelin.introspection.erc165.library", - "openzeppelin.introspection.erc165.library.ERC165", - "openzeppelin.introspection.erc165.library.ERC165.register_interface" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 75, - "end_line": 29, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/introspection/erc165/library.cairo" - }, - "parent_location": [ - { - "end_col": 62, - "end_line": 21, - "input_file": { - "filename": "autogen/starknet/storage_var/ERC165_supported_interfaces/decl.cairo" - }, - "parent_location": [ - { - "end_col": 62, - "end_line": 35, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/introspection/erc165/library.cairo" - }, - "start_col": 9, - "start_line": 35 - }, - "While trying to retrieve the implicit argument 'pedersen_ptr' in:" - ], - "start_col": 36, - "start_line": 21 - }, - "While expanding the reference 'pedersen_ptr' in:" - ], - "start_col": 49, - "start_line": 29 - } - }, - "622": { - "accessible_scopes": [ - "openzeppelin.introspection.erc165.library", - "openzeppelin.introspection.erc165.library.ERC165", - "openzeppelin.introspection.erc165.library.ERC165.register_interface" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 92, - "end_line": 29, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/introspection/erc165/library.cairo" - }, - "parent_location": [ - { - "end_col": 79, - "end_line": 21, - "input_file": { - "filename": "autogen/starknet/storage_var/ERC165_supported_interfaces/decl.cairo" - }, - "parent_location": [ - { - "end_col": 62, - "end_line": 35, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/introspection/erc165/library.cairo" - }, - "start_col": 9, - "start_line": 35 - }, - "While trying to retrieve the implicit argument 'range_check_ptr' in:" - ], - "start_col": 64, - "start_line": 21 - }, - "While expanding the reference 'range_check_ptr' in:" - ], - "start_col": 77, - "start_line": 29 - } - }, - "623": { - "accessible_scopes": [ - "openzeppelin.introspection.erc165.library", - "openzeppelin.introspection.erc165.library.ERC165", - "openzeppelin.introspection.erc165.library.ERC165.register_interface" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 27, - "end_line": 30, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/introspection/erc165/library.cairo" - }, - "parent_location": [ - { - "end_col": 55, - "end_line": 35, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/introspection/erc165/library.cairo" - }, - "start_col": 43, - "start_line": 35 - }, - "While expanding the reference 'interface_id' in:" - ], - "start_col": 9, - "start_line": 30 - } - }, - "624": { - "accessible_scopes": [ - "openzeppelin.introspection.erc165.library", - "openzeppelin.introspection.erc165.library.ERC165", - "openzeppelin.introspection.erc165.library.ERC165.register_interface" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 61, - "end_line": 35, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/introspection/erc165/library.cairo" - }, - "start_col": 57, - "start_line": 35 - } - }, - "626": { - "accessible_scopes": [ - "openzeppelin.introspection.erc165.library", - "openzeppelin.introspection.erc165.library.ERC165", - "openzeppelin.introspection.erc165.library.ERC165.register_interface" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 62, - "end_line": 35, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/introspection/erc165/library.cairo" - }, - "start_col": 9, - "start_line": 35 - } - }, - "628": { - "accessible_scopes": [ - "openzeppelin.introspection.erc165.library", - "openzeppelin.introspection.erc165.library.ERC165", - "openzeppelin.introspection.erc165.library.ERC165.register_interface" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 19, - "end_line": 36, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/introspection/erc165/library.cairo" - }, - "start_col": 9, - "start_line": 36 - } - }, - "629": { - "accessible_scopes": [ - "openzeppelin.introspection.erc165.IERC165", - "openzeppelin.introspection.erc165.IERC165.IERC165", - "openzeppelin.introspection.erc165.IERC165.IERC165.supportsInterface" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 14, - "end_line": 2, - "input_file": { - "filename": "autogen/starknet/contract_interface/IERC165/supportsInterface/64f7842b108e76706927b78270ac73c789c558c54431b3359e4441e63ec2a868.cairo" - }, - "parent_location": [ - { - "end_col": 27, - "end_line": 8, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/introspection/erc165/IERC165.cairo" - }, - "start_col": 10, - "start_line": 8 - }, - "While handling contract interface function:" - ], - "start_col": 1, - "start_line": 2 - } - }, - "631": { - "accessible_scopes": [ - "openzeppelin.introspection.erc165.IERC165", - "openzeppelin.introspection.erc165.IERC165.IERC165", - "openzeppelin.introspection.erc165.IERC165.IERC165.supportsInterface" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 48, - "end_line": 3, - "input_file": { - "filename": "autogen/starknet/contract_interface/IERC165/supportsInterface/64f7842b108e76706927b78270ac73c789c558c54431b3359e4441e63ec2a868.cairo" - }, - "parent_location": [ - { - "end_col": 27, - "end_line": 8, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/introspection/erc165/IERC165.cairo" - }, - "start_col": 10, - "start_line": 8 - }, - "While handling contract interface function:" - ], - "start_col": 41, - "start_line": 3 - } - }, - "633": { - "accessible_scopes": [ - "openzeppelin.introspection.erc165.IERC165", - "openzeppelin.introspection.erc165.IERC165.IERC165", - "openzeppelin.introspection.erc165.IERC165.IERC165.supportsInterface" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 37, - "end_line": 3, - "input_file": { - "filename": "autogen/starknet/contract_interface/IERC165/supportsInterface/64f7842b108e76706927b78270ac73c789c558c54431b3359e4441e63ec2a868.cairo" - }, - "parent_location": [ - { - "end_col": 27, - "end_line": 8, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/introspection/erc165/IERC165.cairo" - }, - "start_col": 10, - "start_line": 8 - }, - "While handling contract interface function:" - ], - "start_col": 6, - "start_line": 3 - } - }, - "634": { - "accessible_scopes": [ - "openzeppelin.introspection.erc165.IERC165", - "openzeppelin.introspection.erc165.IERC165.IERC165", - "openzeppelin.introspection.erc165.IERC165.IERC165.supportsInterface" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 39, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/arg_processor/280c0a864fa1758c1c68a2dbf7db54c26c78c0212241fc0ab68100cf9886a85a.cairo" - }, - "parent_location": [ - { - "end_col": 39, - "end_line": 8, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/introspection/erc165/IERC165.cairo" - }, - "start_col": 28, - "start_line": 8 - }, - "While handling calldata argument 'interfaceId'" - ], - "start_col": 1, - "start_line": 1 - } - }, - "635": { - "accessible_scopes": [ - "openzeppelin.introspection.erc165.IERC165", - "openzeppelin.introspection.erc165.IERC165.IERC165", - "openzeppelin.introspection.erc165.IERC165.IERC165.supportsInterface" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 40, - "end_line": 2, - "input_file": { - "filename": "autogen/starknet/arg_processor/280c0a864fa1758c1c68a2dbf7db54c26c78c0212241fc0ab68100cf9886a85a.cairo" - }, - "parent_location": [ - { - "end_col": 39, - "end_line": 8, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/introspection/erc165/IERC165.cairo" - }, - "parent_location": [ - { - "end_col": 33, - "end_line": 5, - "input_file": { - "filename": "autogen/starknet/contract_interface/IERC165/supportsInterface/f50ea4a37616147e889ba1b747383d1afbdef44f9e4713bc1859b7607cc3c796.cairo" - }, - "parent_location": [ - { - "end_col": 27, - "end_line": 8, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/introspection/erc165/IERC165.cairo" - }, - "start_col": 10, - "start_line": 8 - }, - "While handling contract interface function:" - ], - "start_col": 19, - "start_line": 5 - }, - "While expanding the reference '__calldata_ptr' in:" - ], - "start_col": 28, - "start_line": 8 - }, - "While handling calldata argument 'interfaceId'" - ], - "start_col": 22, - "start_line": 2 - } - }, - "637": { - "accessible_scopes": [ - "openzeppelin.introspection.erc165.IERC165", - "openzeppelin.introspection.erc165.IERC165.IERC165", - "openzeppelin.introspection.erc165.IERC165.IERC165.supportsInterface" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 42, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/contract_interface/IERC165/supportsInterface/2a1791e6eb36480300e6de9be3cf0c73e2bf0096fbe6995a9e4600da5d0240a4.cairo" - }, - "parent_location": [ - { - "end_col": 27, - "end_line": 8, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/introspection/erc165/IERC165.cairo" - }, - "parent_location": [ - { - "end_col": 38, - "end_line": 42, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/starknet/common/syscalls.cairo" - }, - "parent_location": [ - { - "end_col": 33, - "end_line": 6, - "input_file": { - "filename": "autogen/starknet/contract_interface/IERC165/supportsInterface/f50ea4a37616147e889ba1b747383d1afbdef44f9e4713bc1859b7607cc3c796.cairo" - }, - "parent_location": [ - { - "end_col": 27, - "end_line": 8, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/introspection/erc165/IERC165.cairo" - }, - "start_col": 10, - "start_line": 8 - }, - "While handling contract interface function:" - ], - "start_col": 31, - "start_line": 2 - }, - "While trying to retrieve the implicit argument 'syscall_ptr' in:" - ], - "start_col": 20, - "start_line": 42 - }, - "While expanding the reference 'syscall_ptr' in:" - ], - "start_col": 10, - "start_line": 8 - }, - "While handling contract interface function:" - ], - "start_col": 24, - "start_line": 1 - } - }, - "638": { - "accessible_scopes": [ - "openzeppelin.introspection.erc165.IERC165", - "openzeppelin.introspection.erc165.IERC165.IERC165", - "openzeppelin.introspection.erc165.IERC165.IERC165.supportsInterface" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 27, - "end_line": 2, - "input_file": { - "filename": "autogen/starknet/contract_interface/IERC165/supportsInterface/2a1791e6eb36480300e6de9be3cf0c73e2bf0096fbe6995a9e4600da5d0240a4.cairo" - }, - "parent_location": [ - { - "end_col": 27, - "end_line": 8, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/introspection/erc165/IERC165.cairo" - }, - "parent_location": [ - { - "end_col": 38, - "end_line": 3, - "input_file": { - "filename": "autogen/starknet/contract_interface/IERC165/supportsInterface/f50ea4a37616147e889ba1b747383d1afbdef44f9e4713bc1859b7607cc3c796.cairo" - }, - "parent_location": [ - { - "end_col": 27, - "end_line": 8, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/introspection/erc165/IERC165.cairo" - }, - "start_col": 10, - "start_line": 8 - }, - "While handling contract interface function:" - ], - "start_col": 22, - "start_line": 3 - }, - "While expanding the reference 'contract_address' in:" - ], - "start_col": 10, - "start_line": 8 - }, - "While handling contract interface function:" - ], - "start_col": 5, - "start_line": 2 - } - }, - "639": { - "accessible_scopes": [ - "openzeppelin.introspection.erc165.IERC165", - "openzeppelin.introspection.erc165.IERC165.IERC165", - "openzeppelin.introspection.erc165.IERC165.IERC165.supportsInterface" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 49, - "end_line": 4, - "input_file": { - "filename": "autogen/starknet/contract_interface/IERC165/supportsInterface/f50ea4a37616147e889ba1b747383d1afbdef44f9e4713bc1859b7607cc3c796.cairo" - }, - "parent_location": [ - { - "end_col": 27, - "end_line": 8, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/introspection/erc165/IERC165.cairo" - }, - "start_col": 10, - "start_line": 8 - }, - "While handling contract interface function:" - ], - "start_col": 23, - "start_line": 4 - } - }, - "641": { - "accessible_scopes": [ - "openzeppelin.introspection.erc165.IERC165", - "openzeppelin.introspection.erc165.IERC165.IERC165", - "openzeppelin.introspection.erc165.IERC165.IERC165.supportsInterface" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 54, - "end_line": 5, - "input_file": { - "filename": "autogen/starknet/contract_interface/IERC165/supportsInterface/f50ea4a37616147e889ba1b747383d1afbdef44f9e4713bc1859b7607cc3c796.cairo" - }, - "parent_location": [ - { - "end_col": 27, - "end_line": 8, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/introspection/erc165/IERC165.cairo" - }, - "start_col": 10, - "start_line": 8 - }, - "While handling contract interface function:" - ], - "start_col": 19, - "start_line": 5 - } - }, - "642": { - "accessible_scopes": [ - "openzeppelin.introspection.erc165.IERC165", - "openzeppelin.introspection.erc165.IERC165.IERC165", - "openzeppelin.introspection.erc165.IERC165.IERC165.supportsInterface" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 30, - "end_line": 3, - "input_file": { - "filename": "autogen/starknet/contract_interface/IERC165/supportsInterface/64f7842b108e76706927b78270ac73c789c558c54431b3359e4441e63ec2a868.cairo" - }, - "parent_location": [ - { - "end_col": 27, - "end_line": 8, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/introspection/erc165/IERC165.cairo" - }, - "parent_location": [ - { - "end_col": 32, - "end_line": 6, - "input_file": { - "filename": "autogen/starknet/contract_interface/IERC165/supportsInterface/f50ea4a37616147e889ba1b747383d1afbdef44f9e4713bc1859b7607cc3c796.cairo" - }, - "parent_location": [ - { - "end_col": 27, - "end_line": 8, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/introspection/erc165/IERC165.cairo" - }, - "start_col": 10, - "start_line": 8 - }, - "While handling contract interface function:" - ], - "start_col": 14, - "start_line": 6 - }, - "While expanding the reference 'calldata_ptr_start' in:" - ], - "start_col": 10, - "start_line": 8 - }, - "While handling contract interface function:" - ], - "start_col": 12, - "start_line": 3 - } - }, - "643": { - "accessible_scopes": [ - "openzeppelin.introspection.erc165.IERC165", - "openzeppelin.introspection.erc165.IERC165.IERC165", - "openzeppelin.introspection.erc165.IERC165.IERC165.supportsInterface" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 33, - "end_line": 6, - "input_file": { - "filename": "autogen/starknet/contract_interface/IERC165/supportsInterface/f50ea4a37616147e889ba1b747383d1afbdef44f9e4713bc1859b7607cc3c796.cairo" - }, - "parent_location": [ - { - "end_col": 27, - "end_line": 8, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/introspection/erc165/IERC165.cairo" - }, - "start_col": 10, - "start_line": 8 - }, - "While handling contract interface function:" - ], - "start_col": 31, - "start_line": 2 - } - }, - "645": { - "accessible_scopes": [ - "openzeppelin.introspection.erc165.IERC165", - "openzeppelin.introspection.erc165.IERC165.IERC165", - "openzeppelin.introspection.erc165.IERC165.IERC165.supportsInterface" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 48, - "end_line": 2, - "input_file": { - "filename": "autogen/starknet/arg_processor/8ca78f1082aaedcf62c13aff4dffe5943aa04164c60cb6d9f03916c0319201df.cairo" - }, - "parent_location": [ - { - "end_col": 64, - "end_line": 8, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/introspection/erc165/IERC165.cairo" - }, - "parent_location": [ - { - "end_col": 53, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/arg_processor/accb388bcbbace5b6218198851efaad2a781c1339e305a37fab51afe90a3194a.cairo" - }, - "parent_location": [ - { - "end_col": 27, - "end_line": 8, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/introspection/erc165/IERC165.cairo" - }, - "parent_location": [ - { - "end_col": 49, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/arg_processor/96447016176d161dae83f414c4d3e33e78856e0ef69bc33f8d419f1c9b90f9c5.cairo" - }, - "parent_location": [ - { - "end_col": 27, - "end_line": 8, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/introspection/erc165/IERC165.cairo" - }, - "start_col": 10, - "start_line": 8 - }, - "While handling return values of" - ], - "start_col": 23, - "start_line": 1 - }, - "While expanding the reference '__return_value_actual_size' in:" - ], - "start_col": 10, - "start_line": 8 - }, - "While handling return values of" - ], - "start_col": 35, - "start_line": 1 - }, - "While expanding the reference '__return_value_ptr' in:" - ], - "start_col": 51, - "start_line": 8 - }, - "While handling return value 'success'" - ], - "start_col": 26, - "start_line": 2 - } - }, - "647": { - "accessible_scopes": [ - "openzeppelin.introspection.erc165.IERC165", - "openzeppelin.introspection.erc165.IERC165.IERC165", - "openzeppelin.introspection.erc165.IERC165.IERC165.supportsInterface" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 50, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/arg_processor/96447016176d161dae83f414c4d3e33e78856e0ef69bc33f8d419f1c9b90f9c5.cairo" - }, - "parent_location": [ - { - "end_col": 27, - "end_line": 8, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/introspection/erc165/IERC165.cairo" - }, - "start_col": 10, - "start_line": 8 - }, - "While handling return values of" - ], - "start_col": 1, - "start_line": 1 - } - }, - "648": { - "accessible_scopes": [ - "openzeppelin.introspection.erc165.IERC165", - "openzeppelin.introspection.erc165.IERC165.IERC165", - "openzeppelin.introspection.erc165.IERC165.IERC165.supportsInterface" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 38, - "end_line": 42, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/starknet/common/syscalls.cairo" - }, - "parent_location": [ - { - "end_col": 33, - "end_line": 6, - "input_file": { - "filename": "autogen/starknet/contract_interface/IERC165/supportsInterface/f50ea4a37616147e889ba1b747383d1afbdef44f9e4713bc1859b7607cc3c796.cairo" - }, - "parent_location": [ - { - "end_col": 27, - "end_line": 8, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/introspection/erc165/IERC165.cairo" - }, - "parent_location": [ - { - "end_col": 42, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/contract_interface/IERC165/supportsInterface/2a1791e6eb36480300e6de9be3cf0c73e2bf0096fbe6995a9e4600da5d0240a4.cairo" - }, - "parent_location": [ - { - "end_col": 27, - "end_line": 8, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/introspection/erc165/IERC165.cairo" - }, - "parent_location": [ - { - "end_col": 46, - "end_line": 2, - "input_file": { - "filename": "autogen/starknet/contract_interface/IERC165/supportsInterface/18abb29d0a089e1c243e4bd2b316687e6162b3321c14733ee37389da5d8b074f.cairo" - }, - "parent_location": [ - { - "end_col": 27, - "end_line": 8, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/introspection/erc165/IERC165.cairo" - }, - "start_col": 10, - "start_line": 8 - }, - "While handling contract interface function:" - ], - "start_col": 1, - "start_line": 2 - }, - "While trying to retrieve the implicit argument 'syscall_ptr' in:" - ], - "start_col": 10, - "start_line": 8 - }, - "While handling contract interface function:" - ], - "start_col": 24, - "start_line": 1 - }, - "While expanding the reference 'syscall_ptr' in:" - ], - "start_col": 10, - "start_line": 8 - }, - "While handling contract interface function:" - ], - "start_col": 31, - "start_line": 2 - }, - "While trying to update the implicit return value 'syscall_ptr' in:" - ], - "start_col": 20, - "start_line": 42 - } - }, - "649": { - "accessible_scopes": [ - "openzeppelin.introspection.erc165.IERC165", - "openzeppelin.introspection.erc165.IERC165.IERC165", - "openzeppelin.introspection.erc165.IERC165.IERC165.supportsInterface" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 59, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/contract_interface/IERC165/supportsInterface/2a1791e6eb36480300e6de9be3cf0c73e2bf0096fbe6995a9e4600da5d0240a4.cairo" - }, - "parent_location": [ - { - "end_col": 27, - "end_line": 8, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/introspection/erc165/IERC165.cairo" - }, - "parent_location": [ - { - "end_col": 59, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/contract_interface/IERC165/supportsInterface/2a1791e6eb36480300e6de9be3cf0c73e2bf0096fbe6995a9e4600da5d0240a4.cairo" - }, - "parent_location": [ - { - "end_col": 27, - "end_line": 8, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/introspection/erc165/IERC165.cairo" - }, - "parent_location": [ - { - "end_col": 46, - "end_line": 2, - "input_file": { - "filename": "autogen/starknet/contract_interface/IERC165/supportsInterface/18abb29d0a089e1c243e4bd2b316687e6162b3321c14733ee37389da5d8b074f.cairo" - }, - "parent_location": [ - { - "end_col": 27, - "end_line": 8, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/introspection/erc165/IERC165.cairo" - }, - "start_col": 10, - "start_line": 8 - }, - "While handling contract interface function:" - ], - "start_col": 1, - "start_line": 2 - }, - "While trying to retrieve the implicit argument 'range_check_ptr' in:" - ], - "start_col": 10, - "start_line": 8 - }, - "While handling contract interface function:" - ], - "start_col": 44, - "start_line": 1 - }, - "While expanding the reference 'range_check_ptr' in:" - ], - "start_col": 10, - "start_line": 8 - }, - "While handling contract interface function:" - ], - "start_col": 44, - "start_line": 1 - } - }, - "650": { - "accessible_scopes": [ - "openzeppelin.introspection.erc165.IERC165", - "openzeppelin.introspection.erc165.IERC165.IERC165", - "openzeppelin.introspection.erc165.IERC165.IERC165.supportsInterface" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 54, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/arg_processor/8ca78f1082aaedcf62c13aff4dffe5943aa04164c60cb6d9f03916c0319201df.cairo" - }, - "parent_location": [ - { - "end_col": 64, - "end_line": 8, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/introspection/erc165/IERC165.cairo" - }, - "parent_location": [ - { - "end_col": 43, - "end_line": 2, - "input_file": { - "filename": "autogen/starknet/contract_interface/IERC165/supportsInterface/18abb29d0a089e1c243e4bd2b316687e6162b3321c14733ee37389da5d8b074f.cairo" - }, - "parent_location": [ - { - "end_col": 27, - "end_line": 8, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/introspection/erc165/IERC165.cairo" - }, - "start_col": 10, - "start_line": 8 - }, - "While handling contract interface function:" - ], - "start_col": 17, - "start_line": 2 - }, - "While expanding the reference '__return_value_arg_success' in:" - ], - "start_col": 51, - "start_line": 8 - }, - "While handling return value 'success'" - ], - "start_col": 34, - "start_line": 1 - } - }, - "651": { - "accessible_scopes": [ - "openzeppelin.introspection.erc165.IERC165", - "openzeppelin.introspection.erc165.IERC165.IERC165", - "openzeppelin.introspection.erc165.IERC165.IERC165.supportsInterface" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 46, - "end_line": 2, - "input_file": { - "filename": "autogen/starknet/contract_interface/IERC165/supportsInterface/18abb29d0a089e1c243e4bd2b316687e6162b3321c14733ee37389da5d8b074f.cairo" - }, - "parent_location": [ - { - "end_col": 27, - "end_line": 8, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/introspection/erc165/IERC165.cairo" - }, - "start_col": 10, - "start_line": 8 - }, - "While handling contract interface function:" - ], - "start_col": 1, - "start_line": 2 - } - }, - "652": { - "accessible_scopes": [ - "openzeppelin.security.safemath.library", - "openzeppelin.security.safemath.library.SafeUint256", - "openzeppelin.security.safemath.library.SafeUint256.add" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 77, - "end_line": 23, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/security/safemath/library.cairo" - }, - "parent_location": [ - { - "end_col": 35, - "end_line": 21, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/uint256.cairo" - }, - "parent_location": [ - { - "end_col": 25, - "end_line": 26, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/security/safemath/library.cairo" - }, - "start_col": 9, - "start_line": 26 - }, - "While trying to retrieve the implicit argument 'range_check_ptr' in:" - ], - "start_col": 20, - "start_line": 21 - }, - "While expanding the reference 'range_check_ptr' in:" - ], - "start_col": 62, - "start_line": 23 - } - }, - "653": { - "accessible_scopes": [ - "openzeppelin.security.safemath.library", - "openzeppelin.security.safemath.library.SafeUint256", - "openzeppelin.security.safemath.library.SafeUint256.add" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 19, - "end_line": 24, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/security/safemath/library.cairo" - }, - "parent_location": [ - { - "end_col": 24, - "end_line": 26, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/security/safemath/library.cairo" - }, - "start_col": 23, - "start_line": 26 - }, - "While expanding the reference 'a' in:" - ], - "start_col": 9, - "start_line": 24 - } - }, - "654": { - "accessible_scopes": [ - "openzeppelin.security.safemath.library", - "openzeppelin.security.safemath.library.SafeUint256", - "openzeppelin.security.safemath.library.SafeUint256.add" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 19, - "end_line": 24, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/security/safemath/library.cairo" - }, - "parent_location": [ - { - "end_col": 24, - "end_line": 26, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/security/safemath/library.cairo" - }, - "start_col": 23, - "start_line": 26 - }, - "While expanding the reference 'a' in:" - ], - "start_col": 9, - "start_line": 24 - } - }, - "655": { - "accessible_scopes": [ - "openzeppelin.security.safemath.library", - "openzeppelin.security.safemath.library.SafeUint256", - "openzeppelin.security.safemath.library.SafeUint256.add" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 25, - "end_line": 26, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/security/safemath/library.cairo" - }, - "start_col": 9, - "start_line": 26 - } - }, - "657": { - "accessible_scopes": [ - "openzeppelin.security.safemath.library", - "openzeppelin.security.safemath.library.SafeUint256", - "openzeppelin.security.safemath.library.SafeUint256.add" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 31, - "end_line": 24, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/security/safemath/library.cairo" - }, - "parent_location": [ - { - "end_col": 24, - "end_line": 27, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/security/safemath/library.cairo" - }, - "start_col": 23, - "start_line": 27 - }, - "While expanding the reference 'b' in:" - ], - "start_col": 21, - "start_line": 24 - } - }, - "658": { - "accessible_scopes": [ - "openzeppelin.security.safemath.library", - "openzeppelin.security.safemath.library.SafeUint256", - "openzeppelin.security.safemath.library.SafeUint256.add" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 31, - "end_line": 24, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/security/safemath/library.cairo" - }, - "parent_location": [ - { - "end_col": 24, - "end_line": 27, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/security/safemath/library.cairo" - }, - "start_col": 23, - "start_line": 27 - }, - "While expanding the reference 'b' in:" - ], - "start_col": 21, - "start_line": 24 - } - }, - "659": { - "accessible_scopes": [ - "openzeppelin.security.safemath.library", - "openzeppelin.security.safemath.library.SafeUint256", - "openzeppelin.security.safemath.library.SafeUint256.add" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 25, - "end_line": 27, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/security/safemath/library.cairo" - }, - "start_col": 9, - "start_line": 27 - } - }, - "661": { - "accessible_scopes": [ - "openzeppelin.security.safemath.library", - "openzeppelin.security.safemath.library.SafeUint256", - "openzeppelin.security.safemath.library.SafeUint256.add" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 19, - "end_line": 24, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/security/safemath/library.cairo" - }, - "parent_location": [ - { - "end_col": 54, - "end_line": 28, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/security/safemath/library.cairo" - }, - "start_col": 53, - "start_line": 28 - }, - "While expanding the reference 'a' in:" - ], - "start_col": 9, - "start_line": 24 - } - }, - "662": { - "accessible_scopes": [ - "openzeppelin.security.safemath.library", - "openzeppelin.security.safemath.library.SafeUint256", - "openzeppelin.security.safemath.library.SafeUint256.add" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 19, - "end_line": 24, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/security/safemath/library.cairo" - }, - "parent_location": [ - { - "end_col": 54, - "end_line": 28, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/security/safemath/library.cairo" - }, - "start_col": 53, - "start_line": 28 - }, - "While expanding the reference 'a' in:" - ], - "start_col": 9, - "start_line": 24 - } - }, - "663": { - "accessible_scopes": [ - "openzeppelin.security.safemath.library", - "openzeppelin.security.safemath.library.SafeUint256", - "openzeppelin.security.safemath.library.SafeUint256.add" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 31, - "end_line": 24, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/security/safemath/library.cairo" - }, - "parent_location": [ - { - "end_col": 57, - "end_line": 28, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/security/safemath/library.cairo" - }, - "start_col": 56, - "start_line": 28 - }, - "While expanding the reference 'b' in:" - ], - "start_col": 21, - "start_line": 24 - } - }, - "664": { - "accessible_scopes": [ - "openzeppelin.security.safemath.library", - "openzeppelin.security.safemath.library.SafeUint256", - "openzeppelin.security.safemath.library.SafeUint256.add" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 31, - "end_line": 24, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/security/safemath/library.cairo" - }, - "parent_location": [ - { - "end_col": 57, - "end_line": 28, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/security/safemath/library.cairo" - }, - "start_col": 56, - "start_line": 28 - }, - "While expanding the reference 'b' in:" - ], - "start_col": 21, - "start_line": 24 - } - }, - "665": { - "accessible_scopes": [ - "openzeppelin.security.safemath.library", - "openzeppelin.security.safemath.library.SafeUint256", - "openzeppelin.security.safemath.library.SafeUint256.add" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 58, - "end_line": 28, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/security/safemath/library.cairo" - }, - "start_col": 41, - "start_line": 28 - } - }, - "667": { - "accessible_scopes": [ - "openzeppelin.security.safemath.library", - "openzeppelin.security.safemath.library.SafeUint256", - "openzeppelin.security.safemath.library.SafeUint256.add" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 40, - "end_line": 30, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/security/safemath/library.cairo" - }, - "start_col": 13, - "start_line": 30 - } - }, - "669": { - "accessible_scopes": [ - "openzeppelin.security.safemath.library", - "openzeppelin.security.safemath.library.SafeUint256", - "openzeppelin.security.safemath.library.SafeUint256.add" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 32, - "end_line": 23, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/security/safemath/library.cairo" - }, - "parent_location": [ - { - "end_col": 32, - "end_line": 23, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/security/safemath/library.cairo" - }, - "parent_location": [ - { - "end_col": 22, - "end_line": 32, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/security/safemath/library.cairo" - }, - "start_col": 9, - "start_line": 32 - }, - "While trying to retrieve the implicit argument 'syscall_ptr' in:" - ], - "start_col": 14, - "start_line": 23 - }, - "While expanding the reference 'syscall_ptr' in:" - ], - "start_col": 14, - "start_line": 23 - } - }, - "670": { - "accessible_scopes": [ - "openzeppelin.security.safemath.library", - "openzeppelin.security.safemath.library.SafeUint256", - "openzeppelin.security.safemath.library.SafeUint256.add" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 60, - "end_line": 23, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/security/safemath/library.cairo" - }, - "parent_location": [ - { - "end_col": 60, - "end_line": 23, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/security/safemath/library.cairo" - }, - "parent_location": [ - { - "end_col": 22, - "end_line": 32, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/security/safemath/library.cairo" - }, - "start_col": 9, - "start_line": 32 - }, - "While trying to retrieve the implicit argument 'pedersen_ptr' in:" - ], - "start_col": 34, - "start_line": 23 - }, - "While expanding the reference 'pedersen_ptr' in:" - ], - "start_col": 34, - "start_line": 23 - } - }, - "671": { - "accessible_scopes": [ - "openzeppelin.security.safemath.library", - "openzeppelin.security.safemath.library.SafeUint256", - "openzeppelin.security.safemath.library.SafeUint256.add" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 33, - "end_line": 31, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/uint256.cairo" - }, - "parent_location": [ - { - "end_col": 58, - "end_line": 28, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/security/safemath/library.cairo" - }, - "parent_location": [ - { - "end_col": 77, - "end_line": 23, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/security/safemath/library.cairo" - }, - "parent_location": [ - { - "end_col": 22, - "end_line": 32, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/security/safemath/library.cairo" - }, - "start_col": 9, - "start_line": 32 - }, - "While trying to retrieve the implicit argument 'range_check_ptr' in:" - ], - "start_col": 62, - "start_line": 23 - }, - "While expanding the reference 'range_check_ptr' in:" - ], - "start_col": 41, - "start_line": 28 - }, - "While trying to update the implicit return value 'range_check_ptr' in:" - ], - "start_col": 18, - "start_line": 31 - } - }, - "672": { - "accessible_scopes": [ - "openzeppelin.security.safemath.library", - "openzeppelin.security.safemath.library.SafeUint256", - "openzeppelin.security.safemath.library.SafeUint256.add" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 24, - "end_line": 28, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/security/safemath/library.cairo" - }, - "parent_location": [ - { - "end_col": 20, - "end_line": 32, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/security/safemath/library.cairo" - }, - "start_col": 19, - "start_line": 32 - }, - "While expanding the reference 'c' in:" - ], - "start_col": 14, - "start_line": 28 - } - }, - "673": { - "accessible_scopes": [ - "openzeppelin.security.safemath.library", - "openzeppelin.security.safemath.library.SafeUint256", - "openzeppelin.security.safemath.library.SafeUint256.add" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 24, - "end_line": 28, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/security/safemath/library.cairo" - }, - "parent_location": [ - { - "end_col": 20, - "end_line": 32, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/security/safemath/library.cairo" - }, - "start_col": 19, - "start_line": 32 - }, - "While expanding the reference 'c' in:" - ], - "start_col": 14, - "start_line": 28 - } - }, - "674": { - "accessible_scopes": [ - "openzeppelin.security.safemath.library", - "openzeppelin.security.safemath.library.SafeUint256", - "openzeppelin.security.safemath.library.SafeUint256.add" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 22, - "end_line": 32, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/security/safemath/library.cairo" - }, - "start_col": 9, - "start_line": 32 - } - }, - "675": { - "accessible_scopes": [ - "openzeppelin.security.safemath.library", - "openzeppelin.security.safemath.library.SafeUint256", - "openzeppelin.security.safemath.library.SafeUint256.sub_le" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 22, - "end_line": 40, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/security/safemath/library.cairo" - }, - "start_col": 9, - "start_line": 40 - } - }, - "677": { - "accessible_scopes": [ - "openzeppelin.security.safemath.library", - "openzeppelin.security.safemath.library.SafeUint256", - "openzeppelin.security.safemath.library.SafeUint256.sub_le" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 80, - "end_line": 37, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/security/safemath/library.cairo" - }, - "parent_location": [ - { - "end_col": 35, - "end_line": 21, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/uint256.cairo" - }, - "parent_location": [ - { - "end_col": 25, - "end_line": 41, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/security/safemath/library.cairo" - }, - "start_col": 9, - "start_line": 41 - }, - "While trying to retrieve the implicit argument 'range_check_ptr' in:" - ], - "start_col": 20, - "start_line": 21 - }, - "While expanding the reference 'range_check_ptr' in:" - ], - "start_col": 65, - "start_line": 37 - } - }, - "678": { - "accessible_scopes": [ - "openzeppelin.security.safemath.library", - "openzeppelin.security.safemath.library.SafeUint256", - "openzeppelin.security.safemath.library.SafeUint256.sub_le" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 19, - "end_line": 38, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/security/safemath/library.cairo" - }, - "parent_location": [ - { - "end_col": 24, - "end_line": 41, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/security/safemath/library.cairo" - }, - "start_col": 23, - "start_line": 41 - }, - "While expanding the reference 'a' in:" - ], - "start_col": 9, - "start_line": 38 - } - }, - "679": { - "accessible_scopes": [ - "openzeppelin.security.safemath.library", - "openzeppelin.security.safemath.library.SafeUint256", - "openzeppelin.security.safemath.library.SafeUint256.sub_le" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 19, - "end_line": 38, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/security/safemath/library.cairo" - }, - "parent_location": [ - { - "end_col": 24, - "end_line": 41, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/security/safemath/library.cairo" - }, - "start_col": 23, - "start_line": 41 - }, - "While expanding the reference 'a' in:" - ], - "start_col": 9, - "start_line": 38 - } - }, - "680": { - "accessible_scopes": [ - "openzeppelin.security.safemath.library", - "openzeppelin.security.safemath.library.SafeUint256", - "openzeppelin.security.safemath.library.SafeUint256.sub_le" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 25, - "end_line": 41, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/security/safemath/library.cairo" - }, - "start_col": 9, - "start_line": 41 - } - }, - "682": { - "accessible_scopes": [ - "openzeppelin.security.safemath.library", - "openzeppelin.security.safemath.library.SafeUint256", - "openzeppelin.security.safemath.library.SafeUint256.sub_le" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 31, - "end_line": 38, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/security/safemath/library.cairo" - }, - "parent_location": [ - { - "end_col": 24, - "end_line": 42, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/security/safemath/library.cairo" - }, - "start_col": 23, - "start_line": 42 - }, - "While expanding the reference 'b' in:" - ], - "start_col": 21, - "start_line": 38 - } - }, - "683": { - "accessible_scopes": [ - "openzeppelin.security.safemath.library", - "openzeppelin.security.safemath.library.SafeUint256", - "openzeppelin.security.safemath.library.SafeUint256.sub_le" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 31, - "end_line": 38, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/security/safemath/library.cairo" - }, - "parent_location": [ - { - "end_col": 24, - "end_line": 42, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/security/safemath/library.cairo" - }, - "start_col": 23, - "start_line": 42 - }, - "While expanding the reference 'b' in:" - ], - "start_col": 21, - "start_line": 38 - } - }, - "684": { - "accessible_scopes": [ - "openzeppelin.security.safemath.library", - "openzeppelin.security.safemath.library.SafeUint256", - "openzeppelin.security.safemath.library.SafeUint256.sub_le" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 25, - "end_line": 42, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/security/safemath/library.cairo" - }, - "start_col": 9, - "start_line": 42 - } - }, - "686": { - "accessible_scopes": [ - "openzeppelin.security.safemath.library", - "openzeppelin.security.safemath.library.SafeUint256", - "openzeppelin.security.safemath.library.SafeUint256.sub_le" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 31, - "end_line": 38, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/security/safemath/library.cairo" - }, - "parent_location": [ - { - "end_col": 35, - "end_line": 43, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/security/safemath/library.cairo" - }, - "start_col": 34, - "start_line": 43 - }, - "While expanding the reference 'b' in:" - ], - "start_col": 21, - "start_line": 38 - } - }, - "687": { - "accessible_scopes": [ - "openzeppelin.security.safemath.library", - "openzeppelin.security.safemath.library.SafeUint256", - "openzeppelin.security.safemath.library.SafeUint256.sub_le" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 31, - "end_line": 38, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/security/safemath/library.cairo" - }, - "parent_location": [ - { - "end_col": 35, - "end_line": 43, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/security/safemath/library.cairo" - }, - "start_col": 34, - "start_line": 43 - }, - "While expanding the reference 'b' in:" - ], - "start_col": 21, - "start_line": 38 - } - }, - "688": { - "accessible_scopes": [ - "openzeppelin.security.safemath.library", - "openzeppelin.security.safemath.library.SafeUint256", - "openzeppelin.security.safemath.library.SafeUint256.sub_le" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 19, - "end_line": 38, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/security/safemath/library.cairo" - }, - "parent_location": [ - { - "end_col": 38, - "end_line": 43, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/security/safemath/library.cairo" - }, - "start_col": 37, - "start_line": 43 - }, - "While expanding the reference 'a' in:" - ], - "start_col": 9, - "start_line": 38 - } - }, - "689": { - "accessible_scopes": [ - "openzeppelin.security.safemath.library", - "openzeppelin.security.safemath.library.SafeUint256", - "openzeppelin.security.safemath.library.SafeUint256.sub_le" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 19, - "end_line": 38, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/security/safemath/library.cairo" - }, - "parent_location": [ - { - "end_col": 38, - "end_line": 43, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/security/safemath/library.cairo" - }, - "start_col": 37, - "start_line": 43 - }, - "While expanding the reference 'a' in:" - ], - "start_col": 9, - "start_line": 38 - } - }, - "690": { - "accessible_scopes": [ - "openzeppelin.security.safemath.library", - "openzeppelin.security.safemath.library.SafeUint256", - "openzeppelin.security.safemath.library.SafeUint256.sub_le" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 39, - "end_line": 43, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/security/safemath/library.cairo" - }, - "start_col": 23, - "start_line": 43 - } - }, - "692": { - "accessible_scopes": [ - "openzeppelin.security.safemath.library", - "openzeppelin.security.safemath.library.SafeUint256", - "openzeppelin.security.safemath.library.SafeUint256.sub_le" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 33, - "end_line": 45, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/security/safemath/library.cairo" - }, - "start_col": 13, - "start_line": 45 - } - }, - "694": { - "accessible_scopes": [ - "openzeppelin.security.safemath.library", - "openzeppelin.security.safemath.library.SafeUint256", - "openzeppelin.security.safemath.library.SafeUint256.sub_le" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 32, - "end_line": 148, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/uint256.cairo" - }, - "parent_location": [ - { - "end_col": 39, - "end_line": 43, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/security/safemath/library.cairo" - }, - "parent_location": [ - { - "end_col": 33, - "end_line": 348, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/uint256.cairo" - }, - "parent_location": [ - { - "end_col": 45, - "end_line": 47, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/security/safemath/library.cairo" - }, - "start_col": 28, - "start_line": 47 - }, - "While trying to retrieve the implicit argument 'range_check_ptr' in:" - ], - "start_col": 18, - "start_line": 348 - }, - "While expanding the reference 'range_check_ptr' in:" - ], - "start_col": 23, - "start_line": 43 - }, - "While trying to update the implicit return value 'range_check_ptr' in:" - ], - "start_col": 17, - "start_line": 148 - } - }, - "695": { - "accessible_scopes": [ - "openzeppelin.security.safemath.library", - "openzeppelin.security.safemath.library.SafeUint256", - "openzeppelin.security.safemath.library.SafeUint256.sub_le" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 19, - "end_line": 38, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/security/safemath/library.cairo" - }, - "parent_location": [ - { - "end_col": 41, - "end_line": 47, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/security/safemath/library.cairo" - }, - "start_col": 40, - "start_line": 47 - }, - "While expanding the reference 'a' in:" - ], - "start_col": 9, - "start_line": 38 - } - }, - "696": { - "accessible_scopes": [ - "openzeppelin.security.safemath.library", - "openzeppelin.security.safemath.library.SafeUint256", - "openzeppelin.security.safemath.library.SafeUint256.sub_le" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 19, - "end_line": 38, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/security/safemath/library.cairo" - }, - "parent_location": [ - { - "end_col": 41, - "end_line": 47, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/security/safemath/library.cairo" - }, - "start_col": 40, - "start_line": 47 - }, - "While expanding the reference 'a' in:" - ], - "start_col": 9, - "start_line": 38 - } - }, - "697": { - "accessible_scopes": [ - "openzeppelin.security.safemath.library", - "openzeppelin.security.safemath.library.SafeUint256", - "openzeppelin.security.safemath.library.SafeUint256.sub_le" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 31, - "end_line": 38, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/security/safemath/library.cairo" - }, - "parent_location": [ - { - "end_col": 44, - "end_line": 47, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/security/safemath/library.cairo" - }, - "start_col": 43, - "start_line": 47 - }, - "While expanding the reference 'b' in:" - ], - "start_col": 21, - "start_line": 38 - } - }, - "698": { - "accessible_scopes": [ - "openzeppelin.security.safemath.library", - "openzeppelin.security.safemath.library.SafeUint256", - "openzeppelin.security.safemath.library.SafeUint256.sub_le" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 31, - "end_line": 38, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/security/safemath/library.cairo" - }, - "parent_location": [ - { - "end_col": 44, - "end_line": 47, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/security/safemath/library.cairo" - }, - "start_col": 43, - "start_line": 47 - }, - "While expanding the reference 'b' in:" - ], - "start_col": 21, - "start_line": 38 - } - }, - "699": { - "accessible_scopes": [ - "openzeppelin.security.safemath.library", - "openzeppelin.security.safemath.library.SafeUint256", - "openzeppelin.security.safemath.library.SafeUint256.sub_le" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 45, - "end_line": 47, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/security/safemath/library.cairo" - }, - "start_col": 28, - "start_line": 47 - } - }, - "701": { - "accessible_scopes": [ - "openzeppelin.security.safemath.library", - "openzeppelin.security.safemath.library.SafeUint256", - "openzeppelin.security.safemath.library.SafeUint256.sub_le" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 35, - "end_line": 37, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/security/safemath/library.cairo" - }, - "parent_location": [ - { - "end_col": 35, - "end_line": 37, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/security/safemath/library.cairo" - }, - "parent_location": [ - { - "end_col": 22, - "end_line": 48, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/security/safemath/library.cairo" - }, - "start_col": 9, - "start_line": 48 - }, - "While trying to retrieve the implicit argument 'syscall_ptr' in:" - ], - "start_col": 17, - "start_line": 37 - }, - "While expanding the reference 'syscall_ptr' in:" - ], - "start_col": 17, - "start_line": 37 - } - }, - "702": { - "accessible_scopes": [ - "openzeppelin.security.safemath.library", - "openzeppelin.security.safemath.library.SafeUint256", - "openzeppelin.security.safemath.library.SafeUint256.sub_le" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 63, - "end_line": 37, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/security/safemath/library.cairo" - }, - "parent_location": [ - { - "end_col": 63, - "end_line": 37, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/security/safemath/library.cairo" - }, - "parent_location": [ - { - "end_col": 22, - "end_line": 48, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/security/safemath/library.cairo" - }, - "start_col": 9, - "start_line": 48 - }, - "While trying to retrieve the implicit argument 'pedersen_ptr' in:" - ], - "start_col": 37, - "start_line": 37 - }, - "While expanding the reference 'pedersen_ptr' in:" - ], - "start_col": 37, - "start_line": 37 - } - }, - "703": { - "accessible_scopes": [ - "openzeppelin.security.safemath.library", - "openzeppelin.security.safemath.library.SafeUint256", - "openzeppelin.security.safemath.library.SafeUint256.sub_le" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 33, - "end_line": 348, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/uint256.cairo" - }, - "parent_location": [ - { - "end_col": 45, - "end_line": 47, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/security/safemath/library.cairo" - }, - "parent_location": [ - { - "end_col": 80, - "end_line": 37, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/security/safemath/library.cairo" - }, - "parent_location": [ - { - "end_col": 22, - "end_line": 48, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/security/safemath/library.cairo" - }, - "start_col": 9, - "start_line": 48 - }, - "While trying to retrieve the implicit argument 'range_check_ptr' in:" - ], - "start_col": 65, - "start_line": 37 - }, - "While expanding the reference 'range_check_ptr' in:" - ], - "start_col": 28, - "start_line": 47 - }, - "While trying to update the implicit return value 'range_check_ptr' in:" - ], - "start_col": 18, - "start_line": 348 - } - }, - "704": { - "accessible_scopes": [ - "openzeppelin.security.safemath.library", - "openzeppelin.security.safemath.library.SafeUint256", - "openzeppelin.security.safemath.library.SafeUint256.sub_le" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 24, - "end_line": 47, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/security/safemath/library.cairo" - }, - "parent_location": [ - { - "end_col": 20, - "end_line": 48, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/security/safemath/library.cairo" - }, - "start_col": 19, - "start_line": 48 - }, - "While expanding the reference 'c' in:" - ], - "start_col": 14, - "start_line": 47 - } - }, - "705": { - "accessible_scopes": [ - "openzeppelin.security.safemath.library", - "openzeppelin.security.safemath.library.SafeUint256", - "openzeppelin.security.safemath.library.SafeUint256.sub_le" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 24, - "end_line": 47, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/security/safemath/library.cairo" - }, - "parent_location": [ - { - "end_col": 20, - "end_line": 48, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/security/safemath/library.cairo" - }, - "start_col": 19, - "start_line": 48 - }, - "While expanding the reference 'c' in:" - ], - "start_col": 14, - "start_line": 47 - } - }, - "706": { - "accessible_scopes": [ - "openzeppelin.security.safemath.library", - "openzeppelin.security.safemath.library.SafeUint256", - "openzeppelin.security.safemath.library.SafeUint256.sub_le" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 22, - "end_line": 48, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/security/safemath/library.cairo" - }, - "start_col": 9, - "start_line": 48 - } - }, - "707": { - "accessible_scopes": [ - "openzeppelin.token.erc721.IERC721Receiver", - "openzeppelin.token.erc721.IERC721Receiver.IERC721Receiver", - "openzeppelin.token.erc721.IERC721Receiver.IERC721Receiver.onERC721Received" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 14, - "end_line": 2, - "input_file": { - "filename": "autogen/starknet/contract_interface/IERC721Receiver/onERC721Received/64f7842b108e76706927b78270ac73c789c558c54431b3359e4441e63ec2a868.cairo" - }, - "parent_location": [ - { - "end_col": 26, - "end_line": 10, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/IERC721Receiver.cairo" - }, - "start_col": 10, - "start_line": 10 - }, - "While handling contract interface function:" - ], - "start_col": 1, - "start_line": 2 - } - }, - "709": { - "accessible_scopes": [ - "openzeppelin.token.erc721.IERC721Receiver", - "openzeppelin.token.erc721.IERC721Receiver.IERC721Receiver", - "openzeppelin.token.erc721.IERC721Receiver.IERC721Receiver.onERC721Received" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 48, - "end_line": 3, - "input_file": { - "filename": "autogen/starknet/contract_interface/IERC721Receiver/onERC721Received/64f7842b108e76706927b78270ac73c789c558c54431b3359e4441e63ec2a868.cairo" - }, - "parent_location": [ - { - "end_col": 26, - "end_line": 10, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/IERC721Receiver.cairo" - }, - "start_col": 10, - "start_line": 10 - }, - "While handling contract interface function:" - ], - "start_col": 41, - "start_line": 3 - } - }, - "711": { - "accessible_scopes": [ - "openzeppelin.token.erc721.IERC721Receiver", - "openzeppelin.token.erc721.IERC721Receiver.IERC721Receiver", - "openzeppelin.token.erc721.IERC721Receiver.IERC721Receiver.onERC721Received" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 37, - "end_line": 3, - "input_file": { - "filename": "autogen/starknet/contract_interface/IERC721Receiver/onERC721Received/64f7842b108e76706927b78270ac73c789c558c54431b3359e4441e63ec2a868.cairo" - }, - "parent_location": [ - { - "end_col": 26, - "end_line": 10, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/IERC721Receiver.cairo" - }, - "start_col": 10, - "start_line": 10 - }, - "While handling contract interface function:" - ], - "start_col": 6, - "start_line": 3 - } - }, - "712": { - "accessible_scopes": [ - "openzeppelin.token.erc721.IERC721Receiver", - "openzeppelin.token.erc721.IERC721Receiver.IERC721Receiver", - "openzeppelin.token.erc721.IERC721Receiver.IERC721Receiver.onERC721Received" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 36, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/arg_processor/d68c2b8787e4e85a0788ba04df9230f6e6b1f9240af8998fd1d7acac9fe8e6db.cairo" - }, - "parent_location": [ - { - "end_col": 17, - "end_line": 11, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/IERC721Receiver.cairo" - }, - "start_col": 9, - "start_line": 11 - }, - "While handling calldata argument 'operator'" - ], - "start_col": 1, - "start_line": 1 - } - }, - "713": { - "accessible_scopes": [ - "openzeppelin.token.erc721.IERC721Receiver", - "openzeppelin.token.erc721.IERC721Receiver.IERC721Receiver", - "openzeppelin.token.erc721.IERC721Receiver.IERC721Receiver.onERC721Received" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 33, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/arg_processor/ad6bf90c88bb84c90b568cfe0e89ce22c3213011f6c9cc8bf0b75066ae521c26.cairo" - }, - "parent_location": [ - { - "end_col": 30, - "end_line": 11, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/IERC721Receiver.cairo" - }, - "start_col": 25, - "start_line": 11 - }, - "While handling calldata argument 'from_'" - ], - "start_col": 1, - "start_line": 1 - } - }, - "714": { - "accessible_scopes": [ - "openzeppelin.token.erc721.IERC721Receiver", - "openzeppelin.token.erc721.IERC721Receiver.IERC721Receiver", - "openzeppelin.token.erc721.IERC721Receiver.IERC721Receiver.onERC721Received" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 52, - "end_line": 3, - "input_file": { - "filename": "autogen/starknet/arg_processor/001e7e7ada5970d5cd7e7b9fbe70b3d18a0e22c2451b74c773c532e003bf9599.cairo" - }, - "parent_location": [ - { - "end_col": 45, - "end_line": 11, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/IERC721Receiver.cairo" - }, - "start_col": 38, - "start_line": 11 - }, - "While handling calldata argument 'tokenId'" - ], - "start_col": 1, - "start_line": 3 - } - }, - "715": { - "accessible_scopes": [ - "openzeppelin.token.erc721.IERC721Receiver", - "openzeppelin.token.erc721.IERC721Receiver.IERC721Receiver", - "openzeppelin.token.erc721.IERC721Receiver.IERC721Receiver.onERC721Received" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 52, - "end_line": 4, - "input_file": { - "filename": "autogen/starknet/arg_processor/001e7e7ada5970d5cd7e7b9fbe70b3d18a0e22c2451b74c773c532e003bf9599.cairo" - }, - "parent_location": [ - { - "end_col": 45, - "end_line": 11, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/IERC721Receiver.cairo" - }, - "start_col": 38, - "start_line": 11 - }, - "While handling calldata argument 'tokenId'" - ], - "start_col": 1, - "start_line": 4 - } - }, - "716": { - "accessible_scopes": [ - "openzeppelin.token.erc721.IERC721Receiver", - "openzeppelin.token.erc721.IERC721Receiver.IERC721Receiver", - "openzeppelin.token.erc721.IERC721Receiver.IERC721Receiver.onERC721Received" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 36, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/arg_processor/5acfd8e875f992ccc9524eb75bc3cf4970bff0987c9ed04b83bdbe0bdb94c8b5.cairo" - }, - "parent_location": [ - { - "end_col": 64, - "end_line": 11, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/IERC721Receiver.cairo" - }, - "start_col": 56, - "start_line": 11 - }, - "While handling calldata argument 'data_len'" - ], - "start_col": 1, - "start_line": 1 - } - }, - "717": { - "accessible_scopes": [ - "openzeppelin.token.erc721.IERC721Receiver", - "openzeppelin.token.erc721.IERC721Receiver.IERC721Receiver", - "openzeppelin.token.erc721.IERC721Receiver.IERC721Receiver.onERC721Received" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 37, - "end_line": 2, - "input_file": { - "filename": "autogen/starknet/arg_processor/5f7cff0f0869183ab81c52dd23cebe852fdd2ffd08dec74a7e76d81c9d544ed2.cairo" - }, - "parent_location": [ - { - "end_col": 76, - "end_line": 11, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/IERC721Receiver.cairo" - }, - "start_col": 72, - "start_line": 11 - }, - "While handling calldata argument 'data'" - ], - "start_col": 1, - "start_line": 2 - } - }, - "718": { - "accessible_scopes": [ - "openzeppelin.token.erc721.IERC721Receiver", - "openzeppelin.token.erc721.IERC721Receiver.IERC721Receiver", - "openzeppelin.token.erc721.IERC721Receiver.IERC721Receiver.onERC721Received" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 45, - "end_line": 5, - "input_file": { - "filename": "autogen/starknet/arg_processor/5f7cff0f0869183ab81c52dd23cebe852fdd2ffd08dec74a7e76d81c9d544ed2.cairo" - }, - "parent_location": [ - { - "end_col": 76, - "end_line": 11, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/IERC721Receiver.cairo" - }, - "start_col": 72, - "start_line": 11 - }, - "While handling calldata argument 'data'" - ], - "start_col": 1, - "start_line": 5 - } - }, - "720": { - "accessible_scopes": [ - "openzeppelin.token.erc721.IERC721Receiver", - "openzeppelin.token.erc721.IERC721Receiver.IERC721Receiver", - "openzeppelin.token.erc721.IERC721Receiver.IERC721Receiver.onERC721Received" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 40, - "end_line": 2, - "input_file": { - "filename": "autogen/starknet/arg_processor/5acfd8e875f992ccc9524eb75bc3cf4970bff0987c9ed04b83bdbe0bdb94c8b5.cairo" - }, - "parent_location": [ - { - "end_col": 64, - "end_line": 11, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/IERC721Receiver.cairo" - }, - "parent_location": [ - { - "end_col": 45, - "end_line": 10, - "input_file": { - "filename": "autogen/starknet/arg_processor/5f7cff0f0869183ab81c52dd23cebe852fdd2ffd08dec74a7e76d81c9d544ed2.cairo" - }, - "parent_location": [ - { - "end_col": 76, - "end_line": 11, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/IERC721Receiver.cairo" - }, - "start_col": 72, - "start_line": 11 - }, - "While handling calldata argument 'data'" - ], - "start_col": 31, - "start_line": 10 - }, - "While expanding the reference '__calldata_ptr' in:" - ], - "start_col": 56, - "start_line": 11 - }, - "While handling calldata argument 'data_len'" - ], - "start_col": 22, - "start_line": 2 - } - }, - "722": { - "accessible_scopes": [ - "openzeppelin.token.erc721.IERC721Receiver", - "openzeppelin.token.erc721.IERC721Receiver.IERC721Receiver", - "openzeppelin.token.erc721.IERC721Receiver.IERC721Receiver.onERC721Received" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 61, - "end_line": 10, - "input_file": { - "filename": "autogen/starknet/arg_processor/5f7cff0f0869183ab81c52dd23cebe852fdd2ffd08dec74a7e76d81c9d544ed2.cairo" - }, - "parent_location": [ - { - "end_col": 76, - "end_line": 11, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/IERC721Receiver.cairo" - }, - "start_col": 72, - "start_line": 11 - }, - "While handling calldata argument 'data'" - ], - "start_col": 1, - "start_line": 10 - } - }, - "723": { - "accessible_scopes": [ - "openzeppelin.token.erc721.IERC721Receiver", - "openzeppelin.token.erc721.IERC721Receiver.IERC721Receiver", - "openzeppelin.token.erc721.IERC721Receiver.IERC721Receiver.onERC721Received" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 40, - "end_line": 2, - "input_file": { - "filename": "autogen/starknet/arg_processor/5acfd8e875f992ccc9524eb75bc3cf4970bff0987c9ed04b83bdbe0bdb94c8b5.cairo" - }, - "parent_location": [ - { - "end_col": 64, - "end_line": 11, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/IERC721Receiver.cairo" - }, - "parent_location": [ - { - "end_col": 41, - "end_line": 7, - "input_file": { - "filename": "autogen/starknet/arg_processor/5f7cff0f0869183ab81c52dd23cebe852fdd2ffd08dec74a7e76d81c9d544ed2.cairo" - }, - "parent_location": [ - { - "end_col": 76, - "end_line": 11, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/IERC721Receiver.cairo" - }, - "parent_location": [ - { - "end_col": 28, - "end_line": 12, - "input_file": { - "filename": "autogen/starknet/arg_processor/5f7cff0f0869183ab81c52dd23cebe852fdd2ffd08dec74a7e76d81c9d544ed2.cairo" - }, - "parent_location": [ - { - "end_col": 76, - "end_line": 11, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/IERC721Receiver.cairo" - }, - "start_col": 72, - "start_line": 11 - }, - "While handling calldata argument 'data'" - ], - "start_col": 9, - "start_line": 12 - }, - "While expanding the reference '__calldata_ptr_copy' in:" - ], - "start_col": 72, - "start_line": 11 - }, - "While handling calldata argument 'data'" - ], - "start_col": 27, - "start_line": 7 - }, - "While expanding the reference '__calldata_ptr' in:" - ], - "start_col": 56, - "start_line": 11 - }, - "While handling calldata argument 'data_len'" - ], - "start_col": 22, - "start_line": 2 - } - }, - "725": { - "accessible_scopes": [ - "openzeppelin.token.erc721.IERC721Receiver", - "openzeppelin.token.erc721.IERC721Receiver.IERC721Receiver", - "openzeppelin.token.erc721.IERC721Receiver.IERC721Receiver.onERC721Received" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 83, - "end_line": 11, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/IERC721Receiver.cairo" - }, - "parent_location": [ - { - "end_col": 13, - "end_line": 13, - "input_file": { - "filename": "autogen/starknet/arg_processor/5f7cff0f0869183ab81c52dd23cebe852fdd2ffd08dec74a7e76d81c9d544ed2.cairo" - }, - "parent_location": [ - { - "end_col": 76, - "end_line": 11, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/IERC721Receiver.cairo" - }, - "start_col": 72, - "start_line": 11 - }, - "While handling calldata argument 'data'" - ], - "start_col": 9, - "start_line": 13 - }, - "While expanding the reference 'data' in:" - ], - "start_col": 72, - "start_line": 11 - } - }, - "726": { - "accessible_scopes": [ - "openzeppelin.token.erc721.IERC721Receiver", - "openzeppelin.token.erc721.IERC721Receiver.IERC721Receiver", - "openzeppelin.token.erc721.IERC721Receiver.IERC721Receiver.onERC721Received" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 70, - "end_line": 11, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/IERC721Receiver.cairo" - }, - "parent_location": [ - { - "end_col": 17, - "end_line": 14, - "input_file": { - "filename": "autogen/starknet/arg_processor/5f7cff0f0869183ab81c52dd23cebe852fdd2ffd08dec74a7e76d81c9d544ed2.cairo" - }, - "parent_location": [ - { - "end_col": 76, - "end_line": 11, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/IERC721Receiver.cairo" - }, - "start_col": 72, - "start_line": 11 - }, - "While handling calldata argument 'data'" - ], - "start_col": 9, - "start_line": 14 - }, - "While expanding the reference 'data_len' in:" - ], - "start_col": 56, - "start_line": 11 - } - }, - "727": { - "accessible_scopes": [ - "openzeppelin.token.erc721.IERC721Receiver", - "openzeppelin.token.erc721.IERC721Receiver.IERC721Receiver", - "openzeppelin.token.erc721.IERC721Receiver.IERC721Receiver.onERC721Received" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 22, - "end_line": 14, - "input_file": { - "filename": "autogen/starknet/arg_processor/5f7cff0f0869183ab81c52dd23cebe852fdd2ffd08dec74a7e76d81c9d544ed2.cairo" - }, - "parent_location": [ - { - "end_col": 76, - "end_line": 11, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/IERC721Receiver.cairo" - }, - "start_col": 72, - "start_line": 11 - }, - "While handling calldata argument 'data'" - ], - "start_col": 1, - "start_line": 11 - } - }, - "729": { - "accessible_scopes": [ - "openzeppelin.token.erc721.IERC721Receiver", - "openzeppelin.token.erc721.IERC721Receiver.IERC721Receiver", - "openzeppelin.token.erc721.IERC721Receiver.IERC721Receiver.onERC721Received" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 41, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/contract_interface/IERC721Receiver/onERC721Received/7867481925aec1465158cbaa62d2d4fc603e34734d22c5e07da7379a4d0d3f0e.cairo" - }, - "parent_location": [ - { - "end_col": 26, - "end_line": 10, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/IERC721Receiver.cairo" - }, - "parent_location": [ - { - "end_col": 38, - "end_line": 42, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/starknet/common/syscalls.cairo" - }, - "parent_location": [ - { - "end_col": 33, - "end_line": 6, - "input_file": { - "filename": "autogen/starknet/contract_interface/IERC721Receiver/onERC721Received/15cc68dcffa081f990a115434ffe958c4bde04186a7f9f51e10c68f8fafad966.cairo" - }, - "parent_location": [ - { - "end_col": 26, - "end_line": 10, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/IERC721Receiver.cairo" - }, - "start_col": 10, - "start_line": 10 - }, - "While handling contract interface function:" - ], - "start_col": 31, - "start_line": 2 - }, - "While trying to retrieve the implicit argument 'syscall_ptr' in:" - ], - "start_col": 20, - "start_line": 42 - }, - "While expanding the reference 'syscall_ptr' in:" - ], - "start_col": 10, - "start_line": 10 - }, - "While handling contract interface function:" - ], - "start_col": 23, - "start_line": 1 - } - }, - "730": { - "accessible_scopes": [ - "openzeppelin.token.erc721.IERC721Receiver", - "openzeppelin.token.erc721.IERC721Receiver.IERC721Receiver", - "openzeppelin.token.erc721.IERC721Receiver.IERC721Receiver.onERC721Received" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 27, - "end_line": 2, - "input_file": { - "filename": "autogen/starknet/contract_interface/IERC721Receiver/onERC721Received/7867481925aec1465158cbaa62d2d4fc603e34734d22c5e07da7379a4d0d3f0e.cairo" - }, - "parent_location": [ - { - "end_col": 26, - "end_line": 10, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/IERC721Receiver.cairo" - }, - "parent_location": [ - { - "end_col": 38, - "end_line": 3, - "input_file": { - "filename": "autogen/starknet/contract_interface/IERC721Receiver/onERC721Received/15cc68dcffa081f990a115434ffe958c4bde04186a7f9f51e10c68f8fafad966.cairo" - }, - "parent_location": [ - { - "end_col": 26, - "end_line": 10, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/IERC721Receiver.cairo" - }, - "start_col": 10, - "start_line": 10 - }, - "While handling contract interface function:" - ], - "start_col": 22, - "start_line": 3 - }, - "While expanding the reference 'contract_address' in:" - ], - "start_col": 10, - "start_line": 10 - }, - "While handling contract interface function:" - ], - "start_col": 5, - "start_line": 2 - } - }, - "731": { - "accessible_scopes": [ - "openzeppelin.token.erc721.IERC721Receiver", - "openzeppelin.token.erc721.IERC721Receiver.IERC721Receiver", - "openzeppelin.token.erc721.IERC721Receiver.IERC721Receiver.onERC721Received" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 48, - "end_line": 4, - "input_file": { - "filename": "autogen/starknet/contract_interface/IERC721Receiver/onERC721Received/15cc68dcffa081f990a115434ffe958c4bde04186a7f9f51e10c68f8fafad966.cairo" - }, - "parent_location": [ - { - "end_col": 26, - "end_line": 10, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/IERC721Receiver.cairo" - }, - "start_col": 10, - "start_line": 10 - }, - "While handling contract interface function:" - ], - "start_col": 23, - "start_line": 4 - } - }, - "733": { - "accessible_scopes": [ - "openzeppelin.token.erc721.IERC721Receiver", - "openzeppelin.token.erc721.IERC721Receiver.IERC721Receiver", - "openzeppelin.token.erc721.IERC721Receiver.IERC721Receiver.onERC721Received" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 54, - "end_line": 5, - "input_file": { - "filename": "autogen/starknet/contract_interface/IERC721Receiver/onERC721Received/15cc68dcffa081f990a115434ffe958c4bde04186a7f9f51e10c68f8fafad966.cairo" - }, - "parent_location": [ - { - "end_col": 26, - "end_line": 10, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/IERC721Receiver.cairo" - }, - "start_col": 10, - "start_line": 10 - }, - "While handling contract interface function:" - ], - "start_col": 19, - "start_line": 5 - } - }, - "734": { - "accessible_scopes": [ - "openzeppelin.token.erc721.IERC721Receiver", - "openzeppelin.token.erc721.IERC721Receiver.IERC721Receiver", - "openzeppelin.token.erc721.IERC721Receiver.IERC721Receiver.onERC721Received" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 30, - "end_line": 3, - "input_file": { - "filename": "autogen/starknet/contract_interface/IERC721Receiver/onERC721Received/64f7842b108e76706927b78270ac73c789c558c54431b3359e4441e63ec2a868.cairo" - }, - "parent_location": [ - { - "end_col": 26, - "end_line": 10, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/IERC721Receiver.cairo" - }, - "parent_location": [ - { - "end_col": 32, - "end_line": 6, - "input_file": { - "filename": "autogen/starknet/contract_interface/IERC721Receiver/onERC721Received/15cc68dcffa081f990a115434ffe958c4bde04186a7f9f51e10c68f8fafad966.cairo" - }, - "parent_location": [ - { - "end_col": 26, - "end_line": 10, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/IERC721Receiver.cairo" - }, - "start_col": 10, - "start_line": 10 - }, - "While handling contract interface function:" - ], - "start_col": 14, - "start_line": 6 - }, - "While expanding the reference 'calldata_ptr_start' in:" - ], - "start_col": 10, - "start_line": 10 - }, - "While handling contract interface function:" - ], - "start_col": 12, - "start_line": 3 - } - }, - "735": { - "accessible_scopes": [ - "openzeppelin.token.erc721.IERC721Receiver", - "openzeppelin.token.erc721.IERC721Receiver.IERC721Receiver", - "openzeppelin.token.erc721.IERC721Receiver.IERC721Receiver.onERC721Received" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 33, - "end_line": 6, - "input_file": { - "filename": "autogen/starknet/contract_interface/IERC721Receiver/onERC721Received/15cc68dcffa081f990a115434ffe958c4bde04186a7f9f51e10c68f8fafad966.cairo" - }, - "parent_location": [ - { - "end_col": 26, - "end_line": 10, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/IERC721Receiver.cairo" - }, - "start_col": 10, - "start_line": 10 - }, - "While handling contract interface function:" - ], - "start_col": 31, - "start_line": 2 - } - }, - "737": { - "accessible_scopes": [ - "openzeppelin.token.erc721.IERC721Receiver", - "openzeppelin.token.erc721.IERC721Receiver.IERC721Receiver", - "openzeppelin.token.erc721.IERC721Receiver.IERC721Receiver.onERC721Received" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 48, - "end_line": 2, - "input_file": { - "filename": "autogen/starknet/arg_processor/2d2a59588c2058016ad4194dc37ffe15f61d7d7faa733af03df5d625b7049362.cairo" - }, - "parent_location": [ - { - "end_col": 25, - "end_line": 12, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/IERC721Receiver.cairo" - }, - "parent_location": [ - { - "end_col": 53, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/arg_processor/accb388bcbbace5b6218198851efaad2a781c1339e305a37fab51afe90a3194a.cairo" - }, - "parent_location": [ - { - "end_col": 26, - "end_line": 10, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/IERC721Receiver.cairo" - }, - "parent_location": [ - { - "end_col": 49, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/arg_processor/96447016176d161dae83f414c4d3e33e78856e0ef69bc33f8d419f1c9b90f9c5.cairo" - }, - "parent_location": [ - { - "end_col": 26, - "end_line": 10, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/IERC721Receiver.cairo" - }, - "start_col": 10, - "start_line": 10 - }, - "While handling return values of" - ], - "start_col": 23, - "start_line": 1 - }, - "While expanding the reference '__return_value_actual_size' in:" - ], - "start_col": 10, - "start_line": 10 - }, - "While handling return values of" - ], - "start_col": 35, - "start_line": 1 - }, - "While expanding the reference '__return_value_ptr' in:" - ], - "start_col": 11, - "start_line": 12 - }, - "While handling return value 'selector'" - ], - "start_col": 26, - "start_line": 2 - } - }, - "739": { - "accessible_scopes": [ - "openzeppelin.token.erc721.IERC721Receiver", - "openzeppelin.token.erc721.IERC721Receiver.IERC721Receiver", - "openzeppelin.token.erc721.IERC721Receiver.IERC721Receiver.onERC721Received" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 50, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/arg_processor/96447016176d161dae83f414c4d3e33e78856e0ef69bc33f8d419f1c9b90f9c5.cairo" - }, - "parent_location": [ - { - "end_col": 26, - "end_line": 10, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/IERC721Receiver.cairo" - }, - "start_col": 10, - "start_line": 10 - }, - "While handling return values of" - ], - "start_col": 1, - "start_line": 1 - } - }, - "740": { - "accessible_scopes": [ - "openzeppelin.token.erc721.IERC721Receiver", - "openzeppelin.token.erc721.IERC721Receiver.IERC721Receiver", - "openzeppelin.token.erc721.IERC721Receiver.IERC721Receiver.onERC721Received" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 38, - "end_line": 42, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/starknet/common/syscalls.cairo" - }, - "parent_location": [ - { - "end_col": 33, - "end_line": 6, - "input_file": { - "filename": "autogen/starknet/contract_interface/IERC721Receiver/onERC721Received/15cc68dcffa081f990a115434ffe958c4bde04186a7f9f51e10c68f8fafad966.cairo" - }, - "parent_location": [ - { - "end_col": 26, - "end_line": 10, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/IERC721Receiver.cairo" - }, - "parent_location": [ - { - "end_col": 41, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/contract_interface/IERC721Receiver/onERC721Received/7867481925aec1465158cbaa62d2d4fc603e34734d22c5e07da7379a4d0d3f0e.cairo" - }, - "parent_location": [ - { - "end_col": 26, - "end_line": 10, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/IERC721Receiver.cairo" - }, - "parent_location": [ - { - "end_col": 48, - "end_line": 2, - "input_file": { - "filename": "autogen/starknet/contract_interface/IERC721Receiver/onERC721Received/eacb58a12700a3c997996f81c85f24b3de75e21f5c5811cc3b2470465a1aa212.cairo" - }, - "parent_location": [ - { - "end_col": 26, - "end_line": 10, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/IERC721Receiver.cairo" - }, - "start_col": 10, - "start_line": 10 - }, - "While handling contract interface function:" - ], - "start_col": 1, - "start_line": 2 - }, - "While trying to retrieve the implicit argument 'syscall_ptr' in:" - ], - "start_col": 10, - "start_line": 10 - }, - "While handling contract interface function:" - ], - "start_col": 23, - "start_line": 1 - }, - "While expanding the reference 'syscall_ptr' in:" - ], - "start_col": 10, - "start_line": 10 - }, - "While handling contract interface function:" - ], - "start_col": 31, - "start_line": 2 - }, - "While trying to update the implicit return value 'syscall_ptr' in:" - ], - "start_col": 20, - "start_line": 42 - } - }, - "741": { - "accessible_scopes": [ - "openzeppelin.token.erc721.IERC721Receiver", - "openzeppelin.token.erc721.IERC721Receiver.IERC721Receiver", - "openzeppelin.token.erc721.IERC721Receiver.IERC721Receiver.onERC721Received" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 22, - "end_line": 5, - "input_file": { - "filename": "autogen/starknet/arg_processor/5f7cff0f0869183ab81c52dd23cebe852fdd2ffd08dec74a7e76d81c9d544ed2.cairo" - }, - "parent_location": [ - { - "end_col": 76, - "end_line": 11, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/IERC721Receiver.cairo" - }, - "parent_location": [ - { - "end_col": 58, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/contract_interface/IERC721Receiver/onERC721Received/7867481925aec1465158cbaa62d2d4fc603e34734d22c5e07da7379a4d0d3f0e.cairo" - }, - "parent_location": [ - { - "end_col": 26, - "end_line": 10, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/IERC721Receiver.cairo" - }, - "parent_location": [ - { - "end_col": 48, - "end_line": 2, - "input_file": { - "filename": "autogen/starknet/contract_interface/IERC721Receiver/onERC721Received/eacb58a12700a3c997996f81c85f24b3de75e21f5c5811cc3b2470465a1aa212.cairo" - }, - "parent_location": [ - { - "end_col": 26, - "end_line": 10, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/IERC721Receiver.cairo" - }, - "start_col": 10, - "start_line": 10 - }, - "While handling contract interface function:" - ], - "start_col": 1, - "start_line": 2 - }, - "While trying to retrieve the implicit argument 'range_check_ptr' in:" - ], - "start_col": 10, - "start_line": 10 - }, - "While handling contract interface function:" - ], - "start_col": 43, - "start_line": 1 - }, - "While expanding the reference 'range_check_ptr' in:" - ], - "start_col": 72, - "start_line": 11 - }, - "While handling calldata argument 'data'" - ], - "start_col": 7, - "start_line": 5 - } - }, - "742": { - "accessible_scopes": [ - "openzeppelin.token.erc721.IERC721Receiver", - "openzeppelin.token.erc721.IERC721Receiver.IERC721Receiver", - "openzeppelin.token.erc721.IERC721Receiver.IERC721Receiver.onERC721Received" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 55, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/arg_processor/2d2a59588c2058016ad4194dc37ffe15f61d7d7faa733af03df5d625b7049362.cairo" - }, - "parent_location": [ - { - "end_col": 25, - "end_line": 12, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/IERC721Receiver.cairo" - }, - "parent_location": [ - { - "end_col": 45, - "end_line": 2, - "input_file": { - "filename": "autogen/starknet/contract_interface/IERC721Receiver/onERC721Received/eacb58a12700a3c997996f81c85f24b3de75e21f5c5811cc3b2470465a1aa212.cairo" - }, - "parent_location": [ - { - "end_col": 26, - "end_line": 10, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/IERC721Receiver.cairo" - }, - "start_col": 10, - "start_line": 10 - }, - "While handling contract interface function:" - ], - "start_col": 18, - "start_line": 2 - }, - "While expanding the reference '__return_value_arg_selector' in:" - ], - "start_col": 11, - "start_line": 12 - }, - "While handling return value 'selector'" - ], - "start_col": 35, - "start_line": 1 - } - }, - "743": { - "accessible_scopes": [ - "openzeppelin.token.erc721.IERC721Receiver", - "openzeppelin.token.erc721.IERC721Receiver.IERC721Receiver", - "openzeppelin.token.erc721.IERC721Receiver.IERC721Receiver.onERC721Received" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 48, - "end_line": 2, - "input_file": { - "filename": "autogen/starknet/contract_interface/IERC721Receiver/onERC721Received/eacb58a12700a3c997996f81c85f24b3de75e21f5c5811cc3b2470465a1aa212.cairo" - }, - "parent_location": [ - { - "end_col": 26, - "end_line": 10, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/IERC721Receiver.cairo" - }, - "start_col": 10, - "start_line": 10 - }, - "While handling contract interface function:" - ], - "start_col": 1, - "start_line": 2 - } - }, - "744": { - "accessible_scopes": [ - "openzeppelin.token.erc721.library", - "openzeppelin.token.erc721.library.Transfer", - "openzeppelin.token.erc721.library.Transfer.emit" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 14, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/event/Transfer/8220fde17ca5479f12ae71a8036f4d354fe722f2c036da610b53511924e4ee84.cairo" - }, - "parent_location": [ - { - "end_col": 14, - "end_line": 28, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" - }, - "start_col": 6, - "start_line": 28 - }, - "While handling event:" - ], - "start_col": 1, - "start_line": 1 - } - }, - "746": { - "accessible_scopes": [ - "openzeppelin.token.erc721.library", - "openzeppelin.token.erc721.library.Transfer", - "openzeppelin.token.erc721.library.Transfer.emit" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 40, - "end_line": 2, - "input_file": { - "filename": "autogen/starknet/event/Transfer/8220fde17ca5479f12ae71a8036f4d354fe722f2c036da610b53511924e4ee84.cairo" - }, - "parent_location": [ - { - "end_col": 14, - "end_line": 28, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" - }, - "start_col": 6, - "start_line": 28 - }, - "While handling event:" - ], - "start_col": 33, - "start_line": 2 - } - }, - "748": { - "accessible_scopes": [ - "openzeppelin.token.erc721.library", - "openzeppelin.token.erc721.library.Transfer", - "openzeppelin.token.erc721.library.Transfer.emit" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 29, - "end_line": 2, - "input_file": { - "filename": "autogen/starknet/event/Transfer/8220fde17ca5479f12ae71a8036f4d354fe722f2c036da610b53511924e4ee84.cairo" - }, - "parent_location": [ - { - "end_col": 14, - "end_line": 28, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" - }, - "start_col": 6, - "start_line": 28 - }, - "While handling event:" - ], - "start_col": 6, - "start_line": 2 - } - }, - "749": { - "accessible_scopes": [ - "openzeppelin.token.erc721.library", - "openzeppelin.token.erc721.library.Transfer", - "openzeppelin.token.erc721.library.Transfer.emit" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 31, - "end_line": 3, - "input_file": { - "filename": "autogen/starknet/event/Transfer/8220fde17ca5479f12ae71a8036f4d354fe722f2c036da610b53511924e4ee84.cairo" - }, - "parent_location": [ - { - "end_col": 14, - "end_line": 28, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" - }, - "start_col": 6, - "start_line": 28 - }, - "While handling event:" - ], - "start_col": 23, - "start_line": 3 - } - }, - "751": { - "accessible_scopes": [ - "openzeppelin.token.erc721.library", - "openzeppelin.token.erc721.library.Transfer", - "openzeppelin.token.erc721.library.Transfer.emit" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 32, - "end_line": 3, - "input_file": { - "filename": "autogen/starknet/event/Transfer/8220fde17ca5479f12ae71a8036f4d354fe722f2c036da610b53511924e4ee84.cairo" - }, - "parent_location": [ - { - "end_col": 14, - "end_line": 28, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" - }, - "start_col": 6, - "start_line": 28 - }, - "While handling event:" - ], - "start_col": 1, - "start_line": 3 - } - }, - "752": { - "accessible_scopes": [ - "openzeppelin.token.erc721.library", - "openzeppelin.token.erc721.library.Transfer", - "openzeppelin.token.erc721.library.Transfer.emit" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 40, - "end_line": 4, - "input_file": { - "filename": "autogen/starknet/event/Transfer/8220fde17ca5479f12ae71a8036f4d354fe722f2c036da610b53511924e4ee84.cairo" - }, - "parent_location": [ - { - "end_col": 14, - "end_line": 28, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" - }, - "start_col": 6, - "start_line": 28 - }, - "While handling event:" - ], - "start_col": 33, - "start_line": 4 - } - }, - "754": { - "accessible_scopes": [ - "openzeppelin.token.erc721.library", - "openzeppelin.token.erc721.library.Transfer", - "openzeppelin.token.erc721.library.Transfer.emit" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 29, - "end_line": 4, - "input_file": { - "filename": "autogen/starknet/event/Transfer/8220fde17ca5479f12ae71a8036f4d354fe722f2c036da610b53511924e4ee84.cairo" - }, - "parent_location": [ - { - "end_col": 14, - "end_line": 28, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" - }, - "start_col": 6, - "start_line": 28 - }, - "While handling event:" - ], - "start_col": 6, - "start_line": 4 - } - }, - "755": { - "accessible_scopes": [ - "openzeppelin.token.erc721.library", - "openzeppelin.token.erc721.library.Transfer", - "openzeppelin.token.erc721.library.Transfer.emit" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 33, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/arg_processor/ad6bf90c88bb84c90b568cfe0e89ce22c3213011f6c9cc8bf0b75066ae521c26.cairo" - }, - "parent_location": [ - { - "end_col": 20, - "end_line": 28, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" - }, - "start_col": 15, - "start_line": 28 - }, - "While handling calldata argument 'from_'" - ], - "start_col": 1, - "start_line": 1 - } - }, - "756": { - "accessible_scopes": [ - "openzeppelin.token.erc721.library", - "openzeppelin.token.erc721.library.Transfer", - "openzeppelin.token.erc721.library.Transfer.emit" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 30, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/arg_processor/2670bb539ede27446c75876e41bcf9ef5cab09b9eec143f3986635a545b089ab.cairo" - }, - "parent_location": [ - { - "end_col": 30, - "end_line": 28, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" - }, - "start_col": 28, - "start_line": 28 - }, - "While handling calldata argument 'to'" - ], - "start_col": 1, - "start_line": 1 - } - }, - "757": { - "accessible_scopes": [ - "openzeppelin.token.erc721.library", - "openzeppelin.token.erc721.library.Transfer", - "openzeppelin.token.erc721.library.Transfer.emit" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 52, - "end_line": 3, - "input_file": { - "filename": "autogen/starknet/arg_processor/001e7e7ada5970d5cd7e7b9fbe70b3d18a0e22c2451b74c773c532e003bf9599.cairo" - }, - "parent_location": [ - { - "end_col": 45, - "end_line": 28, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" - }, - "start_col": 38, - "start_line": 28 - }, - "While handling calldata argument 'tokenId'" - ], - "start_col": 1, - "start_line": 3 - } - }, - "758": { - "accessible_scopes": [ - "openzeppelin.token.erc721.library", - "openzeppelin.token.erc721.library.Transfer", - "openzeppelin.token.erc721.library.Transfer.emit" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 52, - "end_line": 4, - "input_file": { - "filename": "autogen/starknet/arg_processor/001e7e7ada5970d5cd7e7b9fbe70b3d18a0e22c2451b74c773c532e003bf9599.cairo" - }, - "parent_location": [ - { - "end_col": 45, - "end_line": 28, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" - }, - "start_col": 38, - "start_line": 28 - }, - "While handling calldata argument 'tokenId'" - ], - "start_col": 1, - "start_line": 4 - } - }, - "759": { - "accessible_scopes": [ - "openzeppelin.token.erc721.library", - "openzeppelin.token.erc721.library.Transfer", - "openzeppelin.token.erc721.library.Transfer.emit" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 40, - "end_line": 5, - "input_file": { - "filename": "autogen/starknet/arg_processor/001e7e7ada5970d5cd7e7b9fbe70b3d18a0e22c2451b74c773c532e003bf9599.cairo" - }, - "parent_location": [ - { - "end_col": 45, - "end_line": 28, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" - }, - "parent_location": [ - { - "end_col": 64, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/event/Transfer/6150feec30bd48bfd0f446ed8c155a6d911a2c3fb3ec7a980733900416819259.cairo" - }, - "parent_location": [ - { - "end_col": 14, - "end_line": 28, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" - }, - "start_col": 6, - "start_line": 28 - }, - "While handling event:" - ], - "start_col": 50, - "start_line": 1 - }, - "While expanding the reference '__calldata_ptr' in:" - ], - "start_col": 38, - "start_line": 28 - }, - "While handling calldata argument 'tokenId'" - ], - "start_col": 22, - "start_line": 5 - } - }, - "761": { - "accessible_scopes": [ - "openzeppelin.token.erc721.library", - "openzeppelin.token.erc721.library.Transfer", - "openzeppelin.token.erc721.library.Transfer.emit" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 29, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/event/Transfer/a7a8ae41be29ac9f4f6c3b7837c448d787ca051dd1ade98f409e54d33d112504.cairo" - }, - "parent_location": [ - { - "end_col": 14, - "end_line": 28, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" - }, - "parent_location": [ - { - "end_col": 35, - "end_line": 390, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/starknet/common/syscalls.cairo" - }, - "parent_location": [ - { - "end_col": 95, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/event/Transfer/6150feec30bd48bfd0f446ed8c155a6d911a2c3fb3ec7a980733900416819259.cairo" - }, - "parent_location": [ - { - "end_col": 14, - "end_line": 28, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" - }, - "start_col": 6, - "start_line": 28 - }, - "While handling event:" - ], - "start_col": 1, - "start_line": 1 - }, - "While trying to retrieve the implicit argument 'syscall_ptr' in:" - ], - "start_col": 17, - "start_line": 390 - }, - "While expanding the reference 'syscall_ptr' in:" - ], - "start_col": 6, - "start_line": 28 - }, - "While handling event:" - ], - "start_col": 11, - "start_line": 1 - } - }, - "762": { - "accessible_scopes": [ - "openzeppelin.token.erc721.library", - "openzeppelin.token.erc721.library.Transfer", - "openzeppelin.token.erc721.library.Transfer.emit" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 22, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/event/Transfer/6150feec30bd48bfd0f446ed8c155a6d911a2c3fb3ec7a980733900416819259.cairo" - }, - "parent_location": [ - { - "end_col": 14, - "end_line": 28, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" - }, - "start_col": 6, - "start_line": 28 - }, - "While handling event:" - ], - "start_col": 21, - "start_line": 1 - } - }, - "764": { - "accessible_scopes": [ - "openzeppelin.token.erc721.library", - "openzeppelin.token.erc721.library.Transfer", - "openzeppelin.token.erc721.library.Transfer.emit" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 22, - "end_line": 2, - "input_file": { - "filename": "autogen/starknet/event/Transfer/8220fde17ca5479f12ae71a8036f4d354fe722f2c036da610b53511924e4ee84.cairo" - }, - "parent_location": [ - { - "end_col": 14, - "end_line": 28, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" - }, - "parent_location": [ - { - "end_col": 39, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/event/Transfer/6150feec30bd48bfd0f446ed8c155a6d911a2c3fb3ec7a980733900416819259.cairo" - }, - "parent_location": [ - { - "end_col": 14, - "end_line": 28, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" - }, - "start_col": 6, - "start_line": 28 - }, - "While handling event:" - ], - "start_col": 29, - "start_line": 1 - }, - "While expanding the reference '__keys_ptr' in:" - ], - "start_col": 6, - "start_line": 28 - }, - "While handling event:" - ], - "start_col": 12, - "start_line": 2 - } - }, - "765": { - "accessible_scopes": [ - "openzeppelin.token.erc721.library", - "openzeppelin.token.erc721.library.Transfer", - "openzeppelin.token.erc721.library.Transfer.emit" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 77, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/event/Transfer/6150feec30bd48bfd0f446ed8c155a6d911a2c3fb3ec7a980733900416819259.cairo" - }, - "parent_location": [ - { - "end_col": 14, - "end_line": 28, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" - }, - "start_col": 6, - "start_line": 28 - }, - "While handling event:" - ], - "start_col": 50, - "start_line": 1 - } - }, - "766": { - "accessible_scopes": [ - "openzeppelin.token.erc721.library", - "openzeppelin.token.erc721.library.Transfer", - "openzeppelin.token.erc721.library.Transfer.emit" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 22, - "end_line": 4, - "input_file": { - "filename": "autogen/starknet/event/Transfer/8220fde17ca5479f12ae71a8036f4d354fe722f2c036da610b53511924e4ee84.cairo" - }, - "parent_location": [ - { - "end_col": 14, - "end_line": 28, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" - }, - "parent_location": [ - { - "end_col": 94, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/event/Transfer/6150feec30bd48bfd0f446ed8c155a6d911a2c3fb3ec7a980733900416819259.cairo" - }, - "parent_location": [ - { - "end_col": 14, - "end_line": 28, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" - }, - "start_col": 6, - "start_line": 28 - }, - "While handling event:" - ], - "start_col": 84, - "start_line": 1 - }, - "While expanding the reference '__data_ptr' in:" - ], - "start_col": 6, - "start_line": 28 - }, - "While handling event:" - ], - "start_col": 12, - "start_line": 4 - } - }, - "767": { - "accessible_scopes": [ - "openzeppelin.token.erc721.library", - "openzeppelin.token.erc721.library.Transfer", - "openzeppelin.token.erc721.library.Transfer.emit" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 95, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/event/Transfer/6150feec30bd48bfd0f446ed8c155a6d911a2c3fb3ec7a980733900416819259.cairo" - }, - "parent_location": [ - { - "end_col": 14, - "end_line": 28, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" - }, - "start_col": 6, - "start_line": 28 - }, - "While handling event:" - ], - "start_col": 1, - "start_line": 1 - } - }, - "769": { - "accessible_scopes": [ - "openzeppelin.token.erc721.library", - "openzeppelin.token.erc721.library.Transfer", - "openzeppelin.token.erc721.library.Transfer.emit" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 46, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/event/Transfer/a7a8ae41be29ac9f4f6c3b7837c448d787ca051dd1ade98f409e54d33d112504.cairo" - }, - "parent_location": [ - { - "end_col": 14, - "end_line": 28, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" - }, - "parent_location": [ - { - "end_col": 46, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/event/Transfer/a7a8ae41be29ac9f4f6c3b7837c448d787ca051dd1ade98f409e54d33d112504.cairo" - }, - "parent_location": [ - { - "end_col": 14, - "end_line": 28, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" - }, - "parent_location": [ - { - "end_col": 11, - "end_line": 2, - "input_file": { - "filename": "autogen/starknet/event/Transfer/6150feec30bd48bfd0f446ed8c155a6d911a2c3fb3ec7a980733900416819259.cairo" - }, - "parent_location": [ - { - "end_col": 14, - "end_line": 28, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" - }, - "start_col": 6, - "start_line": 28 - }, - "While handling event:" - ], - "start_col": 1, - "start_line": 2 - }, - "While trying to retrieve the implicit argument 'range_check_ptr' in:" - ], - "start_col": 6, - "start_line": 28 - }, - "While handling event:" - ], - "start_col": 31, - "start_line": 1 - }, - "While expanding the reference 'range_check_ptr' in:" - ], - "start_col": 6, - "start_line": 28 - }, - "While handling event:" - ], - "start_col": 31, - "start_line": 1 - } - }, - "770": { - "accessible_scopes": [ - "openzeppelin.token.erc721.library", - "openzeppelin.token.erc721.library.Transfer", - "openzeppelin.token.erc721.library.Transfer.emit" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 11, - "end_line": 2, - "input_file": { - "filename": "autogen/starknet/event/Transfer/6150feec30bd48bfd0f446ed8c155a6d911a2c3fb3ec7a980733900416819259.cairo" - }, - "parent_location": [ - { - "end_col": 14, - "end_line": 28, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" - }, - "start_col": 6, - "start_line": 28 - }, - "While handling event:" - ], - "start_col": 1, - "start_line": 2 - } - }, - "771": { - "accessible_scopes": [ - "openzeppelin.token.erc721.library", - "openzeppelin.token.erc721.library.Approval", - "openzeppelin.token.erc721.library.Approval.emit" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 14, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/event/Approval/8220fde17ca5479f12ae71a8036f4d354fe722f2c036da610b53511924e4ee84.cairo" - }, - "parent_location": [ - { - "end_col": 14, - "end_line": 32, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" - }, - "start_col": 6, - "start_line": 32 - }, - "While handling event:" - ], - "start_col": 1, - "start_line": 1 - } - }, - "773": { - "accessible_scopes": [ - "openzeppelin.token.erc721.library", - "openzeppelin.token.erc721.library.Approval", - "openzeppelin.token.erc721.library.Approval.emit" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 40, - "end_line": 2, - "input_file": { - "filename": "autogen/starknet/event/Approval/8220fde17ca5479f12ae71a8036f4d354fe722f2c036da610b53511924e4ee84.cairo" - }, - "parent_location": [ - { - "end_col": 14, - "end_line": 32, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" - }, - "start_col": 6, - "start_line": 32 - }, - "While handling event:" - ], - "start_col": 33, - "start_line": 2 - } - }, - "775": { - "accessible_scopes": [ - "openzeppelin.token.erc721.library", - "openzeppelin.token.erc721.library.Approval", - "openzeppelin.token.erc721.library.Approval.emit" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 29, - "end_line": 2, - "input_file": { - "filename": "autogen/starknet/event/Approval/8220fde17ca5479f12ae71a8036f4d354fe722f2c036da610b53511924e4ee84.cairo" - }, - "parent_location": [ - { - "end_col": 14, - "end_line": 32, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" - }, - "start_col": 6, - "start_line": 32 - }, - "While handling event:" - ], - "start_col": 6, - "start_line": 2 - } - }, - "776": { - "accessible_scopes": [ - "openzeppelin.token.erc721.library", - "openzeppelin.token.erc721.library.Approval", - "openzeppelin.token.erc721.library.Approval.emit" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 31, - "end_line": 3, - "input_file": { - "filename": "autogen/starknet/event/Approval/8220fde17ca5479f12ae71a8036f4d354fe722f2c036da610b53511924e4ee84.cairo" - }, - "parent_location": [ - { - "end_col": 14, - "end_line": 32, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" - }, - "start_col": 6, - "start_line": 32 - }, - "While handling event:" - ], - "start_col": 23, - "start_line": 3 - } - }, - "778": { - "accessible_scopes": [ - "openzeppelin.token.erc721.library", - "openzeppelin.token.erc721.library.Approval", - "openzeppelin.token.erc721.library.Approval.emit" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 32, - "end_line": 3, - "input_file": { - "filename": "autogen/starknet/event/Approval/8220fde17ca5479f12ae71a8036f4d354fe722f2c036da610b53511924e4ee84.cairo" - }, - "parent_location": [ - { - "end_col": 14, - "end_line": 32, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" - }, - "start_col": 6, - "start_line": 32 - }, - "While handling event:" - ], - "start_col": 1, - "start_line": 3 - } - }, - "779": { - "accessible_scopes": [ - "openzeppelin.token.erc721.library", - "openzeppelin.token.erc721.library.Approval", - "openzeppelin.token.erc721.library.Approval.emit" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 40, - "end_line": 4, - "input_file": { - "filename": "autogen/starknet/event/Approval/8220fde17ca5479f12ae71a8036f4d354fe722f2c036da610b53511924e4ee84.cairo" - }, - "parent_location": [ - { - "end_col": 14, - "end_line": 32, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" - }, - "start_col": 6, - "start_line": 32 - }, - "While handling event:" - ], - "start_col": 33, - "start_line": 4 - } - }, - "781": { - "accessible_scopes": [ - "openzeppelin.token.erc721.library", - "openzeppelin.token.erc721.library.Approval", - "openzeppelin.token.erc721.library.Approval.emit" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 29, - "end_line": 4, - "input_file": { - "filename": "autogen/starknet/event/Approval/8220fde17ca5479f12ae71a8036f4d354fe722f2c036da610b53511924e4ee84.cairo" - }, - "parent_location": [ - { - "end_col": 14, - "end_line": 32, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" - }, - "start_col": 6, - "start_line": 32 - }, - "While handling event:" - ], - "start_col": 6, - "start_line": 4 - } - }, - "782": { - "accessible_scopes": [ - "openzeppelin.token.erc721.library", - "openzeppelin.token.erc721.library.Approval", - "openzeppelin.token.erc721.library.Approval.emit" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 33, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/arg_processor/7e247556a8b9bc505c1e503bda1dbcb424caa8925f45ae18cdde008e8b84b376.cairo" - }, - "parent_location": [ - { - "end_col": 20, - "end_line": 32, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" - }, - "start_col": 15, - "start_line": 32 - }, - "While handling calldata argument 'owner'" - ], - "start_col": 1, - "start_line": 1 - } - }, - "783": { - "accessible_scopes": [ - "openzeppelin.token.erc721.library", - "openzeppelin.token.erc721.library.Approval", - "openzeppelin.token.erc721.library.Approval.emit" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 36, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/arg_processor/3766ca78b7221666e5286be6b1bea607d51c54e82b2b7db68735ed38d00f7732.cairo" - }, - "parent_location": [ - { - "end_col": 36, - "end_line": 32, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" - }, - "start_col": 28, - "start_line": 32 - }, - "While handling calldata argument 'approved'" - ], - "start_col": 1, - "start_line": 1 - } - }, - "784": { - "accessible_scopes": [ - "openzeppelin.token.erc721.library", - "openzeppelin.token.erc721.library.Approval", - "openzeppelin.token.erc721.library.Approval.emit" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 52, - "end_line": 3, - "input_file": { - "filename": "autogen/starknet/arg_processor/001e7e7ada5970d5cd7e7b9fbe70b3d18a0e22c2451b74c773c532e003bf9599.cairo" - }, - "parent_location": [ - { - "end_col": 51, - "end_line": 32, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" - }, - "start_col": 44, - "start_line": 32 - }, - "While handling calldata argument 'tokenId'" - ], - "start_col": 1, - "start_line": 3 - } - }, - "785": { - "accessible_scopes": [ - "openzeppelin.token.erc721.library", - "openzeppelin.token.erc721.library.Approval", - "openzeppelin.token.erc721.library.Approval.emit" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 52, - "end_line": 4, - "input_file": { - "filename": "autogen/starknet/arg_processor/001e7e7ada5970d5cd7e7b9fbe70b3d18a0e22c2451b74c773c532e003bf9599.cairo" - }, - "parent_location": [ - { - "end_col": 51, - "end_line": 32, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" - }, - "start_col": 44, - "start_line": 32 - }, - "While handling calldata argument 'tokenId'" - ], - "start_col": 1, - "start_line": 4 - } - }, - "786": { - "accessible_scopes": [ - "openzeppelin.token.erc721.library", - "openzeppelin.token.erc721.library.Approval", - "openzeppelin.token.erc721.library.Approval.emit" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 40, - "end_line": 5, - "input_file": { - "filename": "autogen/starknet/arg_processor/001e7e7ada5970d5cd7e7b9fbe70b3d18a0e22c2451b74c773c532e003bf9599.cairo" - }, - "parent_location": [ - { - "end_col": 51, - "end_line": 32, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" - }, - "parent_location": [ - { - "end_col": 64, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/event/Approval/6150feec30bd48bfd0f446ed8c155a6d911a2c3fb3ec7a980733900416819259.cairo" - }, - "parent_location": [ - { - "end_col": 14, - "end_line": 32, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" - }, - "start_col": 6, - "start_line": 32 - }, - "While handling event:" - ], - "start_col": 50, - "start_line": 1 - }, - "While expanding the reference '__calldata_ptr' in:" - ], - "start_col": 44, - "start_line": 32 - }, - "While handling calldata argument 'tokenId'" - ], - "start_col": 22, - "start_line": 5 - } - }, - "788": { - "accessible_scopes": [ - "openzeppelin.token.erc721.library", - "openzeppelin.token.erc721.library.Approval", - "openzeppelin.token.erc721.library.Approval.emit" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 29, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/event/Approval/a7a8ae41be29ac9f4f6c3b7837c448d787ca051dd1ade98f409e54d33d112504.cairo" - }, - "parent_location": [ - { - "end_col": 14, - "end_line": 32, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" - }, - "parent_location": [ - { - "end_col": 35, - "end_line": 390, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/starknet/common/syscalls.cairo" - }, - "parent_location": [ - { - "end_col": 95, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/event/Approval/6150feec30bd48bfd0f446ed8c155a6d911a2c3fb3ec7a980733900416819259.cairo" - }, - "parent_location": [ - { - "end_col": 14, - "end_line": 32, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" - }, - "start_col": 6, - "start_line": 32 - }, - "While handling event:" - ], - "start_col": 1, - "start_line": 1 - }, - "While trying to retrieve the implicit argument 'syscall_ptr' in:" - ], - "start_col": 17, - "start_line": 390 - }, - "While expanding the reference 'syscall_ptr' in:" - ], - "start_col": 6, - "start_line": 32 - }, - "While handling event:" - ], - "start_col": 11, - "start_line": 1 - } - }, - "789": { - "accessible_scopes": [ - "openzeppelin.token.erc721.library", - "openzeppelin.token.erc721.library.Approval", - "openzeppelin.token.erc721.library.Approval.emit" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 22, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/event/Approval/6150feec30bd48bfd0f446ed8c155a6d911a2c3fb3ec7a980733900416819259.cairo" - }, - "parent_location": [ - { - "end_col": 14, - "end_line": 32, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" - }, - "start_col": 6, - "start_line": 32 - }, - "While handling event:" - ], - "start_col": 21, - "start_line": 1 - } - }, - "791": { - "accessible_scopes": [ - "openzeppelin.token.erc721.library", - "openzeppelin.token.erc721.library.Approval", - "openzeppelin.token.erc721.library.Approval.emit" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 22, - "end_line": 2, - "input_file": { - "filename": "autogen/starknet/event/Approval/8220fde17ca5479f12ae71a8036f4d354fe722f2c036da610b53511924e4ee84.cairo" - }, - "parent_location": [ - { - "end_col": 14, - "end_line": 32, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" - }, - "parent_location": [ - { - "end_col": 39, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/event/Approval/6150feec30bd48bfd0f446ed8c155a6d911a2c3fb3ec7a980733900416819259.cairo" - }, - "parent_location": [ - { - "end_col": 14, - "end_line": 32, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" - }, - "start_col": 6, - "start_line": 32 - }, - "While handling event:" - ], - "start_col": 29, - "start_line": 1 - }, - "While expanding the reference '__keys_ptr' in:" - ], - "start_col": 6, - "start_line": 32 - }, - "While handling event:" - ], - "start_col": 12, - "start_line": 2 - } - }, - "792": { - "accessible_scopes": [ - "openzeppelin.token.erc721.library", - "openzeppelin.token.erc721.library.Approval", - "openzeppelin.token.erc721.library.Approval.emit" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 77, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/event/Approval/6150feec30bd48bfd0f446ed8c155a6d911a2c3fb3ec7a980733900416819259.cairo" - }, - "parent_location": [ - { - "end_col": 14, - "end_line": 32, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" - }, - "start_col": 6, - "start_line": 32 - }, - "While handling event:" - ], - "start_col": 50, - "start_line": 1 - } - }, - "793": { - "accessible_scopes": [ - "openzeppelin.token.erc721.library", - "openzeppelin.token.erc721.library.Approval", - "openzeppelin.token.erc721.library.Approval.emit" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 22, - "end_line": 4, - "input_file": { - "filename": "autogen/starknet/event/Approval/8220fde17ca5479f12ae71a8036f4d354fe722f2c036da610b53511924e4ee84.cairo" - }, - "parent_location": [ - { - "end_col": 14, - "end_line": 32, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" - }, - "parent_location": [ - { - "end_col": 94, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/event/Approval/6150feec30bd48bfd0f446ed8c155a6d911a2c3fb3ec7a980733900416819259.cairo" - }, - "parent_location": [ - { - "end_col": 14, - "end_line": 32, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" - }, - "start_col": 6, - "start_line": 32 - }, - "While handling event:" - ], - "start_col": 84, - "start_line": 1 - }, - "While expanding the reference '__data_ptr' in:" - ], - "start_col": 6, - "start_line": 32 - }, - "While handling event:" - ], - "start_col": 12, - "start_line": 4 - } - }, - "794": { - "accessible_scopes": [ - "openzeppelin.token.erc721.library", - "openzeppelin.token.erc721.library.Approval", - "openzeppelin.token.erc721.library.Approval.emit" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 95, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/event/Approval/6150feec30bd48bfd0f446ed8c155a6d911a2c3fb3ec7a980733900416819259.cairo" - }, - "parent_location": [ - { - "end_col": 14, - "end_line": 32, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" - }, - "start_col": 6, - "start_line": 32 - }, - "While handling event:" - ], - "start_col": 1, - "start_line": 1 - } - }, - "796": { - "accessible_scopes": [ - "openzeppelin.token.erc721.library", - "openzeppelin.token.erc721.library.Approval", - "openzeppelin.token.erc721.library.Approval.emit" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 46, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/event/Approval/a7a8ae41be29ac9f4f6c3b7837c448d787ca051dd1ade98f409e54d33d112504.cairo" - }, - "parent_location": [ - { - "end_col": 14, - "end_line": 32, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" - }, - "parent_location": [ - { - "end_col": 46, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/event/Approval/a7a8ae41be29ac9f4f6c3b7837c448d787ca051dd1ade98f409e54d33d112504.cairo" - }, - "parent_location": [ - { - "end_col": 14, - "end_line": 32, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" - }, - "parent_location": [ - { - "end_col": 11, - "end_line": 2, - "input_file": { - "filename": "autogen/starknet/event/Approval/6150feec30bd48bfd0f446ed8c155a6d911a2c3fb3ec7a980733900416819259.cairo" - }, - "parent_location": [ - { - "end_col": 14, - "end_line": 32, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" - }, - "start_col": 6, - "start_line": 32 - }, - "While handling event:" - ], - "start_col": 1, - "start_line": 2 - }, - "While trying to retrieve the implicit argument 'range_check_ptr' in:" - ], - "start_col": 6, - "start_line": 32 - }, - "While handling event:" - ], - "start_col": 31, - "start_line": 1 - }, - "While expanding the reference 'range_check_ptr' in:" - ], - "start_col": 6, - "start_line": 32 - }, - "While handling event:" - ], - "start_col": 31, - "start_line": 1 - } - }, - "797": { - "accessible_scopes": [ - "openzeppelin.token.erc721.library", - "openzeppelin.token.erc721.library.Approval", - "openzeppelin.token.erc721.library.Approval.emit" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 11, - "end_line": 2, - "input_file": { - "filename": "autogen/starknet/event/Approval/6150feec30bd48bfd0f446ed8c155a6d911a2c3fb3ec7a980733900416819259.cairo" - }, - "parent_location": [ - { - "end_col": 14, - "end_line": 32, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" - }, - "start_col": 6, - "start_line": 32 - }, - "While handling event:" - ], - "start_col": 1, - "start_line": 2 - } - }, - "798": { - "accessible_scopes": [ - "openzeppelin.token.erc721.library", - "openzeppelin.token.erc721.library.ApprovalForAll", - "openzeppelin.token.erc721.library.ApprovalForAll.emit" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 14, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/event/ApprovalForAll/8220fde17ca5479f12ae71a8036f4d354fe722f2c036da610b53511924e4ee84.cairo" - }, - "parent_location": [ - { - "end_col": 20, - "end_line": 36, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" - }, - "start_col": 6, - "start_line": 36 - }, - "While handling event:" - ], - "start_col": 1, - "start_line": 1 - } - }, - "800": { - "accessible_scopes": [ - "openzeppelin.token.erc721.library", - "openzeppelin.token.erc721.library.ApprovalForAll", - "openzeppelin.token.erc721.library.ApprovalForAll.emit" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 40, - "end_line": 2, - "input_file": { - "filename": "autogen/starknet/event/ApprovalForAll/8220fde17ca5479f12ae71a8036f4d354fe722f2c036da610b53511924e4ee84.cairo" - }, - "parent_location": [ - { - "end_col": 20, - "end_line": 36, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" - }, - "start_col": 6, - "start_line": 36 - }, - "While handling event:" - ], - "start_col": 33, - "start_line": 2 - } - }, - "802": { - "accessible_scopes": [ - "openzeppelin.token.erc721.library", - "openzeppelin.token.erc721.library.ApprovalForAll", - "openzeppelin.token.erc721.library.ApprovalForAll.emit" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 29, - "end_line": 2, - "input_file": { - "filename": "autogen/starknet/event/ApprovalForAll/8220fde17ca5479f12ae71a8036f4d354fe722f2c036da610b53511924e4ee84.cairo" - }, - "parent_location": [ - { - "end_col": 20, - "end_line": 36, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" - }, - "start_col": 6, - "start_line": 36 - }, - "While handling event:" - ], - "start_col": 6, - "start_line": 2 - } - }, - "803": { - "accessible_scopes": [ - "openzeppelin.token.erc721.library", - "openzeppelin.token.erc721.library.ApprovalForAll", - "openzeppelin.token.erc721.library.ApprovalForAll.emit" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 31, - "end_line": 3, - "input_file": { - "filename": "autogen/starknet/event/ApprovalForAll/8220fde17ca5479f12ae71a8036f4d354fe722f2c036da610b53511924e4ee84.cairo" - }, - "parent_location": [ - { - "end_col": 20, - "end_line": 36, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" - }, - "start_col": 6, - "start_line": 36 - }, - "While handling event:" - ], - "start_col": 23, - "start_line": 3 - } - }, - "805": { - "accessible_scopes": [ - "openzeppelin.token.erc721.library", - "openzeppelin.token.erc721.library.ApprovalForAll", - "openzeppelin.token.erc721.library.ApprovalForAll.emit" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 32, - "end_line": 3, - "input_file": { - "filename": "autogen/starknet/event/ApprovalForAll/8220fde17ca5479f12ae71a8036f4d354fe722f2c036da610b53511924e4ee84.cairo" - }, - "parent_location": [ - { - "end_col": 20, - "end_line": 36, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" - }, - "start_col": 6, - "start_line": 36 - }, - "While handling event:" - ], - "start_col": 1, - "start_line": 3 - } - }, - "806": { - "accessible_scopes": [ - "openzeppelin.token.erc721.library", - "openzeppelin.token.erc721.library.ApprovalForAll", - "openzeppelin.token.erc721.library.ApprovalForAll.emit" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 40, - "end_line": 4, - "input_file": { - "filename": "autogen/starknet/event/ApprovalForAll/8220fde17ca5479f12ae71a8036f4d354fe722f2c036da610b53511924e4ee84.cairo" - }, - "parent_location": [ - { - "end_col": 20, - "end_line": 36, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" - }, - "start_col": 6, - "start_line": 36 - }, - "While handling event:" - ], - "start_col": 33, - "start_line": 4 - } - }, - "808": { - "accessible_scopes": [ - "openzeppelin.token.erc721.library", - "openzeppelin.token.erc721.library.ApprovalForAll", - "openzeppelin.token.erc721.library.ApprovalForAll.emit" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 29, - "end_line": 4, - "input_file": { - "filename": "autogen/starknet/event/ApprovalForAll/8220fde17ca5479f12ae71a8036f4d354fe722f2c036da610b53511924e4ee84.cairo" - }, - "parent_location": [ - { - "end_col": 20, - "end_line": 36, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" - }, - "start_col": 6, - "start_line": 36 - }, - "While handling event:" - ], - "start_col": 6, - "start_line": 4 - } - }, - "809": { - "accessible_scopes": [ - "openzeppelin.token.erc721.library", - "openzeppelin.token.erc721.library.ApprovalForAll", - "openzeppelin.token.erc721.library.ApprovalForAll.emit" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 33, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/arg_processor/7e247556a8b9bc505c1e503bda1dbcb424caa8925f45ae18cdde008e8b84b376.cairo" - }, - "parent_location": [ - { - "end_col": 26, - "end_line": 36, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" - }, - "start_col": 21, - "start_line": 36 - }, - "While handling calldata argument 'owner'" - ], - "start_col": 1, - "start_line": 1 - } - }, - "810": { - "accessible_scopes": [ - "openzeppelin.token.erc721.library", - "openzeppelin.token.erc721.library.ApprovalForAll", - "openzeppelin.token.erc721.library.ApprovalForAll.emit" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 36, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/arg_processor/d68c2b8787e4e85a0788ba04df9230f6e6b1f9240af8998fd1d7acac9fe8e6db.cairo" - }, - "parent_location": [ - { - "end_col": 42, - "end_line": 36, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" - }, - "start_col": 34, - "start_line": 36 - }, - "While handling calldata argument 'operator'" - ], - "start_col": 1, - "start_line": 1 - } - }, - "811": { - "accessible_scopes": [ - "openzeppelin.token.erc721.library", - "openzeppelin.token.erc721.library.ApprovalForAll", - "openzeppelin.token.erc721.library.ApprovalForAll.emit" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 36, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/arg_processor/3766ca78b7221666e5286be6b1bea607d51c54e82b2b7db68735ed38d00f7732.cairo" - }, - "parent_location": [ - { - "end_col": 58, - "end_line": 36, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" - }, - "start_col": 50, - "start_line": 36 - }, - "While handling calldata argument 'approved'" - ], - "start_col": 1, - "start_line": 1 - } - }, - "812": { - "accessible_scopes": [ - "openzeppelin.token.erc721.library", - "openzeppelin.token.erc721.library.ApprovalForAll", - "openzeppelin.token.erc721.library.ApprovalForAll.emit" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 40, - "end_line": 2, - "input_file": { - "filename": "autogen/starknet/arg_processor/3766ca78b7221666e5286be6b1bea607d51c54e82b2b7db68735ed38d00f7732.cairo" - }, - "parent_location": [ - { - "end_col": 58, - "end_line": 36, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" - }, - "parent_location": [ - { - "end_col": 64, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/event/ApprovalForAll/6150feec30bd48bfd0f446ed8c155a6d911a2c3fb3ec7a980733900416819259.cairo" - }, - "parent_location": [ - { - "end_col": 20, - "end_line": 36, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" - }, - "start_col": 6, - "start_line": 36 - }, - "While handling event:" - ], - "start_col": 50, - "start_line": 1 - }, - "While expanding the reference '__calldata_ptr' in:" - ], - "start_col": 50, - "start_line": 36 - }, - "While handling calldata argument 'approved'" - ], - "start_col": 22, - "start_line": 2 - } - }, - "814": { - "accessible_scopes": [ - "openzeppelin.token.erc721.library", - "openzeppelin.token.erc721.library.ApprovalForAll", - "openzeppelin.token.erc721.library.ApprovalForAll.emit" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 29, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/event/ApprovalForAll/a7a8ae41be29ac9f4f6c3b7837c448d787ca051dd1ade98f409e54d33d112504.cairo" - }, - "parent_location": [ - { - "end_col": 20, - "end_line": 36, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" - }, - "parent_location": [ - { - "end_col": 35, - "end_line": 390, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/starknet/common/syscalls.cairo" - }, - "parent_location": [ - { - "end_col": 95, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/event/ApprovalForAll/6150feec30bd48bfd0f446ed8c155a6d911a2c3fb3ec7a980733900416819259.cairo" - }, - "parent_location": [ - { - "end_col": 20, - "end_line": 36, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" - }, - "start_col": 6, - "start_line": 36 - }, - "While handling event:" - ], - "start_col": 1, - "start_line": 1 - }, - "While trying to retrieve the implicit argument 'syscall_ptr' in:" - ], - "start_col": 17, - "start_line": 390 - }, - "While expanding the reference 'syscall_ptr' in:" - ], - "start_col": 6, - "start_line": 36 - }, - "While handling event:" - ], - "start_col": 11, - "start_line": 1 - } - }, - "815": { - "accessible_scopes": [ - "openzeppelin.token.erc721.library", - "openzeppelin.token.erc721.library.ApprovalForAll", - "openzeppelin.token.erc721.library.ApprovalForAll.emit" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 22, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/event/ApprovalForAll/6150feec30bd48bfd0f446ed8c155a6d911a2c3fb3ec7a980733900416819259.cairo" - }, - "parent_location": [ - { - "end_col": 20, - "end_line": 36, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" - }, - "start_col": 6, - "start_line": 36 - }, - "While handling event:" - ], - "start_col": 21, - "start_line": 1 - } - }, - "817": { - "accessible_scopes": [ - "openzeppelin.token.erc721.library", - "openzeppelin.token.erc721.library.ApprovalForAll", - "openzeppelin.token.erc721.library.ApprovalForAll.emit" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 22, - "end_line": 2, - "input_file": { - "filename": "autogen/starknet/event/ApprovalForAll/8220fde17ca5479f12ae71a8036f4d354fe722f2c036da610b53511924e4ee84.cairo" - }, - "parent_location": [ - { - "end_col": 20, - "end_line": 36, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" - }, - "parent_location": [ - { - "end_col": 39, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/event/ApprovalForAll/6150feec30bd48bfd0f446ed8c155a6d911a2c3fb3ec7a980733900416819259.cairo" - }, - "parent_location": [ - { - "end_col": 20, - "end_line": 36, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" - }, - "start_col": 6, - "start_line": 36 - }, - "While handling event:" - ], - "start_col": 29, - "start_line": 1 - }, - "While expanding the reference '__keys_ptr' in:" - ], - "start_col": 6, - "start_line": 36 - }, - "While handling event:" - ], - "start_col": 12, - "start_line": 2 - } - }, - "818": { - "accessible_scopes": [ - "openzeppelin.token.erc721.library", - "openzeppelin.token.erc721.library.ApprovalForAll", - "openzeppelin.token.erc721.library.ApprovalForAll.emit" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 77, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/event/ApprovalForAll/6150feec30bd48bfd0f446ed8c155a6d911a2c3fb3ec7a980733900416819259.cairo" - }, - "parent_location": [ - { - "end_col": 20, - "end_line": 36, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" - }, - "start_col": 6, - "start_line": 36 - }, - "While handling event:" - ], - "start_col": 50, - "start_line": 1 - } - }, - "819": { - "accessible_scopes": [ - "openzeppelin.token.erc721.library", - "openzeppelin.token.erc721.library.ApprovalForAll", - "openzeppelin.token.erc721.library.ApprovalForAll.emit" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 22, - "end_line": 4, - "input_file": { - "filename": "autogen/starknet/event/ApprovalForAll/8220fde17ca5479f12ae71a8036f4d354fe722f2c036da610b53511924e4ee84.cairo" - }, - "parent_location": [ - { - "end_col": 20, - "end_line": 36, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" - }, - "parent_location": [ - { - "end_col": 94, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/event/ApprovalForAll/6150feec30bd48bfd0f446ed8c155a6d911a2c3fb3ec7a980733900416819259.cairo" - }, - "parent_location": [ - { - "end_col": 20, - "end_line": 36, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" - }, - "start_col": 6, - "start_line": 36 - }, - "While handling event:" - ], - "start_col": 84, - "start_line": 1 - }, - "While expanding the reference '__data_ptr' in:" - ], - "start_col": 6, - "start_line": 36 - }, - "While handling event:" - ], - "start_col": 12, - "start_line": 4 - } - }, - "820": { - "accessible_scopes": [ - "openzeppelin.token.erc721.library", - "openzeppelin.token.erc721.library.ApprovalForAll", - "openzeppelin.token.erc721.library.ApprovalForAll.emit" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 95, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/event/ApprovalForAll/6150feec30bd48bfd0f446ed8c155a6d911a2c3fb3ec7a980733900416819259.cairo" - }, - "parent_location": [ - { - "end_col": 20, - "end_line": 36, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" - }, - "start_col": 6, - "start_line": 36 - }, - "While handling event:" - ], - "start_col": 1, - "start_line": 1 - } - }, - "822": { - "accessible_scopes": [ - "openzeppelin.token.erc721.library", - "openzeppelin.token.erc721.library.ApprovalForAll", - "openzeppelin.token.erc721.library.ApprovalForAll.emit" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 46, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/event/ApprovalForAll/a7a8ae41be29ac9f4f6c3b7837c448d787ca051dd1ade98f409e54d33d112504.cairo" - }, - "parent_location": [ - { - "end_col": 20, - "end_line": 36, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" - }, - "parent_location": [ - { - "end_col": 46, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/event/ApprovalForAll/a7a8ae41be29ac9f4f6c3b7837c448d787ca051dd1ade98f409e54d33d112504.cairo" - }, - "parent_location": [ - { - "end_col": 20, - "end_line": 36, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" - }, - "parent_location": [ - { - "end_col": 11, - "end_line": 2, - "input_file": { - "filename": "autogen/starknet/event/ApprovalForAll/6150feec30bd48bfd0f446ed8c155a6d911a2c3fb3ec7a980733900416819259.cairo" - }, - "parent_location": [ - { - "end_col": 20, - "end_line": 36, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" - }, - "start_col": 6, - "start_line": 36 - }, - "While handling event:" - ], - "start_col": 1, - "start_line": 2 - }, - "While trying to retrieve the implicit argument 'range_check_ptr' in:" - ], - "start_col": 6, - "start_line": 36 - }, - "While handling event:" - ], - "start_col": 31, - "start_line": 1 - }, - "While expanding the reference 'range_check_ptr' in:" - ], - "start_col": 6, - "start_line": 36 - }, - "While handling event:" - ], - "start_col": 31, - "start_line": 1 - } - }, - "823": { - "accessible_scopes": [ - "openzeppelin.token.erc721.library", - "openzeppelin.token.erc721.library.ApprovalForAll", - "openzeppelin.token.erc721.library.ApprovalForAll.emit" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 11, - "end_line": 2, - "input_file": { - "filename": "autogen/starknet/event/ApprovalForAll/6150feec30bd48bfd0f446ed8c155a6d911a2c3fb3ec7a980733900416819259.cairo" - }, - "parent_location": [ - { - "end_col": 20, - "end_line": 36, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" - }, - "start_col": 6, - "start_line": 36 - }, - "While handling event:" - ], - "start_col": 1, - "start_line": 2 - } - }, - "824": { - "accessible_scopes": [ - "openzeppelin.token.erc721.library", - "openzeppelin.token.erc721.library.ERC721_name", - "openzeppelin.token.erc721.library.ERC721_name.addr" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 41, - "end_line": 7, - "input_file": { - "filename": "autogen/starknet/storage_var/ERC721_name/impl.cairo" - }, - "parent_location": [ - { - "end_col": 41, - "end_line": 7, - "input_file": { - "filename": "autogen/starknet/storage_var/ERC721_name/decl.cairo" - }, - "parent_location": [ - { - "end_col": 26, - "end_line": 9, - "input_file": { - "filename": "autogen/starknet/storage_var/ERC721_name/impl.cairo" - }, - "start_col": 9, - "start_line": 9 - }, - "While trying to retrieve the implicit argument 'pedersen_ptr' in:" - ], - "start_col": 15, - "start_line": 7 - }, - "While expanding the reference 'pedersen_ptr' in:" - ], - "start_col": 15, - "start_line": 7 - } - }, - "825": { - "accessible_scopes": [ - "openzeppelin.token.erc721.library", - "openzeppelin.token.erc721.library.ERC721_name", - "openzeppelin.token.erc721.library.ERC721_name.addr" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 58, - "end_line": 7, - "input_file": { - "filename": "autogen/starknet/storage_var/ERC721_name/impl.cairo" - }, - "parent_location": [ - { - "end_col": 58, - "end_line": 7, - "input_file": { - "filename": "autogen/starknet/storage_var/ERC721_name/decl.cairo" - }, - "parent_location": [ - { - "end_col": 26, - "end_line": 9, - "input_file": { - "filename": "autogen/starknet/storage_var/ERC721_name/impl.cairo" - }, - "start_col": 9, - "start_line": 9 - }, - "While trying to retrieve the implicit argument 'range_check_ptr' in:" - ], - "start_col": 43, - "start_line": 7 - }, - "While expanding the reference 'range_check_ptr' in:" - ], - "start_col": 43, - "start_line": 7 - } - }, - "826": { - "accessible_scopes": [ - "openzeppelin.token.erc721.library", - "openzeppelin.token.erc721.library.ERC721_name", - "openzeppelin.token.erc721.library.ERC721_name.addr" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 95, - "end_line": 8, - "input_file": { - "filename": "autogen/starknet/storage_var/ERC721_name/impl.cairo" - }, - "parent_location": [ - { - "end_col": 24, - "end_line": 9, - "input_file": { - "filename": "autogen/starknet/storage_var/ERC721_name/impl.cairo" - }, - "start_col": 21, - "start_line": 9 - }, - "While expanding the reference 'res' in:" - ], - "start_col": 19, - "start_line": 8 - } - }, - "828": { - "accessible_scopes": [ - "openzeppelin.token.erc721.library", - "openzeppelin.token.erc721.library.ERC721_name", - "openzeppelin.token.erc721.library.ERC721_name.addr" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 26, - "end_line": 9, - "input_file": { - "filename": "autogen/starknet/storage_var/ERC721_name/impl.cairo" - }, - "start_col": 9, - "start_line": 9 - } - }, - "829": { - "accessible_scopes": [ - "openzeppelin.token.erc721.library", - "openzeppelin.token.erc721.library.ERC721_name", - "openzeppelin.token.erc721.library.ERC721_name.read" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 61, - "end_line": 12, - "input_file": { - "filename": "autogen/starknet/storage_var/ERC721_name/impl.cairo" - }, - "parent_location": [ - { - "end_col": 41, - "end_line": 7, - "input_file": { - "filename": "autogen/starknet/storage_var/ERC721_name/decl.cairo" - }, - "parent_location": [ - { - "end_col": 36, - "end_line": 13, - "input_file": { - "filename": "autogen/starknet/storage_var/ERC721_name/impl.cairo" - }, - "start_col": 30, - "start_line": 13 - }, - "While trying to retrieve the implicit argument 'pedersen_ptr' in:" - ], - "start_col": 15, - "start_line": 7 - }, - "While expanding the reference 'pedersen_ptr' in:" - ], - "start_col": 35, - "start_line": 12 - } - }, - "830": { - "accessible_scopes": [ - "openzeppelin.token.erc721.library", - "openzeppelin.token.erc721.library.ERC721_name", - "openzeppelin.token.erc721.library.ERC721_name.read" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 78, - "end_line": 12, - "input_file": { - "filename": "autogen/starknet/storage_var/ERC721_name/impl.cairo" - }, - "parent_location": [ - { - "end_col": 58, - "end_line": 7, - "input_file": { - "filename": "autogen/starknet/storage_var/ERC721_name/decl.cairo" - }, - "parent_location": [ - { - "end_col": 36, - "end_line": 13, - "input_file": { - "filename": "autogen/starknet/storage_var/ERC721_name/impl.cairo" - }, - "start_col": 30, - "start_line": 13 - }, - "While trying to retrieve the implicit argument 'range_check_ptr' in:" - ], - "start_col": 43, - "start_line": 7 - }, - "While expanding the reference 'range_check_ptr' in:" - ], - "start_col": 63, - "start_line": 12 - } - }, - "831": { - "accessible_scopes": [ - "openzeppelin.token.erc721.library", - "openzeppelin.token.erc721.library.ERC721_name", - "openzeppelin.token.erc721.library.ERC721_name.read" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 36, - "end_line": 13, - "input_file": { - "filename": "autogen/starknet/storage_var/ERC721_name/impl.cairo" - }, - "start_col": 30, - "start_line": 13 - } - }, - "833": { - "accessible_scopes": [ - "openzeppelin.token.erc721.library", - "openzeppelin.token.erc721.library.ERC721_name", - "openzeppelin.token.erc721.library.ERC721_name.read" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 33, - "end_line": 12, - "input_file": { - "filename": "autogen/starknet/storage_var/ERC721_name/impl.cairo" - }, - "parent_location": [ - { - "end_col": 37, - "end_line": 352, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/starknet/common/syscalls.cairo" - }, - "parent_location": [ - { - "end_col": 75, - "end_line": 14, - "input_file": { - "filename": "autogen/starknet/storage_var/ERC721_name/impl.cairo" - }, - "start_col": 37, - "start_line": 14 - }, - "While trying to retrieve the implicit argument 'syscall_ptr' in:" - ], - "start_col": 19, - "start_line": 352 - }, - "While expanding the reference 'syscall_ptr' in:" - ], - "start_col": 15, - "start_line": 12 - } - }, - "834": { - "accessible_scopes": [ - "openzeppelin.token.erc721.library", - "openzeppelin.token.erc721.library.ERC721_name", - "openzeppelin.token.erc721.library.ERC721_name.read" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 26, - "end_line": 13, - "input_file": { - "filename": "autogen/starknet/storage_var/ERC721_name/impl.cairo" - }, - "parent_location": [ - { - "end_col": 70, - "end_line": 14, - "input_file": { - "filename": "autogen/starknet/storage_var/ERC721_name/impl.cairo" - }, - "start_col": 58, - "start_line": 14 - }, - "While expanding the reference 'storage_addr' in:" - ], - "start_col": 14, - "start_line": 13 - } - }, - "835": { - "accessible_scopes": [ - "openzeppelin.token.erc721.library", - "openzeppelin.token.erc721.library.ERC721_name", - "openzeppelin.token.erc721.library.ERC721_name.read" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 75, - "end_line": 14, - "input_file": { - "filename": "autogen/starknet/storage_var/ERC721_name/impl.cairo" - }, - "start_col": 37, - "start_line": 14 - } - }, - "837": { - "accessible_scopes": [ - "openzeppelin.token.erc721.library", - "openzeppelin.token.erc721.library.ERC721_name", - "openzeppelin.token.erc721.library.ERC721_name.read" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 37, - "end_line": 352, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/starknet/common/syscalls.cairo" - }, - "parent_location": [ - { - "end_col": 75, - "end_line": 14, - "input_file": { - "filename": "autogen/starknet/storage_var/ERC721_name/impl.cairo" - }, - "parent_location": [ - { - "end_col": 42, - "end_line": 16, - "input_file": { - "filename": "autogen/starknet/storage_var/ERC721_name/impl.cairo" - }, - "start_col": 31, - "start_line": 16 - }, - "While expanding the reference 'syscall_ptr' in:" - ], - "start_col": 37, - "start_line": 14 - }, - "While trying to update the implicit return value 'syscall_ptr' in:" - ], - "start_col": 19, - "start_line": 352 - } - }, - "838": { - "accessible_scopes": [ - "openzeppelin.token.erc721.library", - "openzeppelin.token.erc721.library.ERC721_name", - "openzeppelin.token.erc721.library.ERC721_name.read" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 41, - "end_line": 7, - "input_file": { - "filename": "autogen/starknet/storage_var/ERC721_name/decl.cairo" - }, - "parent_location": [ - { - "end_col": 36, - "end_line": 13, - "input_file": { - "filename": "autogen/starknet/storage_var/ERC721_name/impl.cairo" - }, - "parent_location": [ - { - "end_col": 44, - "end_line": 17, - "input_file": { - "filename": "autogen/starknet/storage_var/ERC721_name/impl.cairo" - }, - "start_col": 32, - "start_line": 17 - }, - "While expanding the reference 'pedersen_ptr' in:" - ], - "start_col": 30, - "start_line": 13 - }, - "While trying to update the implicit return value 'pedersen_ptr' in:" - ], - "start_col": 15, - "start_line": 7 - } - }, - "839": { - "accessible_scopes": [ - "openzeppelin.token.erc721.library", - "openzeppelin.token.erc721.library.ERC721_name", - "openzeppelin.token.erc721.library.ERC721_name.read" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 58, - "end_line": 7, - "input_file": { - "filename": "autogen/starknet/storage_var/ERC721_name/decl.cairo" - }, - "parent_location": [ - { - "end_col": 36, - "end_line": 13, - "input_file": { - "filename": "autogen/starknet/storage_var/ERC721_name/impl.cairo" - }, - "parent_location": [ - { - "end_col": 50, - "end_line": 18, - "input_file": { - "filename": "autogen/starknet/storage_var/ERC721_name/impl.cairo" - }, - "start_col": 35, - "start_line": 18 - }, - "While expanding the reference 'range_check_ptr' in:" - ], - "start_col": 30, - "start_line": 13 - }, - "While trying to update the implicit return value 'range_check_ptr' in:" - ], - "start_col": 43, - "start_line": 7 - } - }, - "840": { - "accessible_scopes": [ - "openzeppelin.token.erc721.library", - "openzeppelin.token.erc721.library.ERC721_name", - "openzeppelin.token.erc721.library.ERC721_name.read" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 33, - "end_line": 14, - "input_file": { - "filename": "autogen/starknet/storage_var/ERC721_name/impl.cairo" - }, - "parent_location": [ - { - "end_col": 64, - "end_line": 19, - "input_file": { - "filename": "autogen/starknet/storage_var/ERC721_name/impl.cairo" - }, - "start_col": 45, - "start_line": 19 - }, - "While expanding the reference '__storage_var_temp0' in:" - ], - "start_col": 14, - "start_line": 14 - } - }, - "841": { - "accessible_scopes": [ - "openzeppelin.token.erc721.library", - "openzeppelin.token.erc721.library.ERC721_name", - "openzeppelin.token.erc721.library.ERC721_name.read" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 55, - "end_line": 20, - "input_file": { - "filename": "autogen/starknet/storage_var/ERC721_name/impl.cairo" - }, - "start_col": 9, - "start_line": 20 - } - }, - "842": { - "accessible_scopes": [ - "openzeppelin.token.erc721.library", - "openzeppelin.token.erc721.library.ERC721_name", - "openzeppelin.token.erc721.library.ERC721_name.write" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 62, - "end_line": 23, - "input_file": { - "filename": "autogen/starknet/storage_var/ERC721_name/impl.cairo" - }, - "parent_location": [ - { - "end_col": 41, - "end_line": 7, - "input_file": { - "filename": "autogen/starknet/storage_var/ERC721_name/decl.cairo" - }, - "parent_location": [ - { - "end_col": 36, - "end_line": 24, - "input_file": { - "filename": "autogen/starknet/storage_var/ERC721_name/impl.cairo" - }, - "start_col": 30, - "start_line": 24 - }, - "While trying to retrieve the implicit argument 'pedersen_ptr' in:" - ], - "start_col": 15, - "start_line": 7 - }, - "While expanding the reference 'pedersen_ptr' in:" - ], - "start_col": 36, - "start_line": 23 - } - }, - "843": { - "accessible_scopes": [ - "openzeppelin.token.erc721.library", - "openzeppelin.token.erc721.library.ERC721_name", - "openzeppelin.token.erc721.library.ERC721_name.write" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 79, - "end_line": 23, - "input_file": { - "filename": "autogen/starknet/storage_var/ERC721_name/impl.cairo" - }, - "parent_location": [ - { - "end_col": 58, - "end_line": 7, - "input_file": { - "filename": "autogen/starknet/storage_var/ERC721_name/decl.cairo" - }, - "parent_location": [ - { - "end_col": 36, - "end_line": 24, - "input_file": { - "filename": "autogen/starknet/storage_var/ERC721_name/impl.cairo" - }, - "start_col": 30, - "start_line": 24 - }, - "While trying to retrieve the implicit argument 'range_check_ptr' in:" - ], - "start_col": 43, - "start_line": 7 - }, - "While expanding the reference 'range_check_ptr' in:" - ], - "start_col": 64, - "start_line": 23 - } - }, - "844": { - "accessible_scopes": [ - "openzeppelin.token.erc721.library", - "openzeppelin.token.erc721.library.ERC721_name", - "openzeppelin.token.erc721.library.ERC721_name.write" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 36, - "end_line": 24, - "input_file": { - "filename": "autogen/starknet/storage_var/ERC721_name/impl.cairo" - }, - "start_col": 30, - "start_line": 24 - } - }, - "846": { - "accessible_scopes": [ - "openzeppelin.token.erc721.library", - "openzeppelin.token.erc721.library.ERC721_name", - "openzeppelin.token.erc721.library.ERC721_name.write" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 34, - "end_line": 23, - "input_file": { - "filename": "autogen/starknet/storage_var/ERC721_name/impl.cairo" - }, - "parent_location": [ - { - "end_col": 38, - "end_line": 370, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/starknet/common/syscalls.cairo" - }, - "parent_location": [ - { - "end_col": 80, - "end_line": 25, - "input_file": { - "filename": "autogen/starknet/storage_var/ERC721_name/impl.cairo" - }, - "start_col": 9, - "start_line": 25 - }, - "While trying to retrieve the implicit argument 'syscall_ptr' in:" - ], - "start_col": 20, - "start_line": 370 - }, - "While expanding the reference 'syscall_ptr' in:" - ], - "start_col": 16, - "start_line": 23 - } - }, - "847": { - "accessible_scopes": [ - "openzeppelin.token.erc721.library", - "openzeppelin.token.erc721.library.ERC721_name", - "openzeppelin.token.erc721.library.ERC721_name.write" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 26, - "end_line": 24, - "input_file": { - "filename": "autogen/starknet/storage_var/ERC721_name/impl.cairo" - }, - "parent_location": [ - { - "end_col": 43, - "end_line": 25, - "input_file": { - "filename": "autogen/starknet/storage_var/ERC721_name/impl.cairo" - }, - "start_col": 31, - "start_line": 25 - }, - "While expanding the reference 'storage_addr' in:" - ], - "start_col": 14, - "start_line": 24 - } - }, - "848": { - "accessible_scopes": [ - "openzeppelin.token.erc721.library", - "openzeppelin.token.erc721.library.ERC721_name", - "openzeppelin.token.erc721.library.ERC721_name.write" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 79, - "end_line": 25, - "input_file": { - "filename": "autogen/starknet/storage_var/ERC721_name/impl.cairo" - }, - "start_col": 55, - "start_line": 25 - } - }, - "849": { - "accessible_scopes": [ - "openzeppelin.token.erc721.library", - "openzeppelin.token.erc721.library.ERC721_name", - "openzeppelin.token.erc721.library.ERC721_name.write" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 80, - "end_line": 25, - "input_file": { - "filename": "autogen/starknet/storage_var/ERC721_name/impl.cairo" - }, - "start_col": 9, - "start_line": 25 - } - }, - "851": { - "accessible_scopes": [ - "openzeppelin.token.erc721.library", - "openzeppelin.token.erc721.library.ERC721_name", - "openzeppelin.token.erc721.library.ERC721_name.write" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 41, - "end_line": 7, - "input_file": { - "filename": "autogen/starknet/storage_var/ERC721_name/decl.cairo" - }, - "parent_location": [ - { - "end_col": 36, - "end_line": 24, - "input_file": { - "filename": "autogen/starknet/storage_var/ERC721_name/impl.cairo" - }, - "parent_location": [ - { - "end_col": 62, - "end_line": 19, - "input_file": { - "filename": "autogen/starknet/storage_var/ERC721_name/decl.cairo" - }, - "parent_location": [ - { - "end_col": 19, - "end_line": 26, - "input_file": { - "filename": "autogen/starknet/storage_var/ERC721_name/impl.cairo" - }, - "start_col": 9, - "start_line": 26 - }, - "While trying to retrieve the implicit argument 'pedersen_ptr' in:" - ], - "start_col": 36, - "start_line": 19 - }, - "While expanding the reference 'pedersen_ptr' in:" - ], - "start_col": 30, - "start_line": 24 - }, - "While trying to update the implicit return value 'pedersen_ptr' in:" - ], - "start_col": 15, - "start_line": 7 - } - }, - "852": { - "accessible_scopes": [ - "openzeppelin.token.erc721.library", - "openzeppelin.token.erc721.library.ERC721_name", - "openzeppelin.token.erc721.library.ERC721_name.write" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 58, - "end_line": 7, - "input_file": { - "filename": "autogen/starknet/storage_var/ERC721_name/decl.cairo" - }, - "parent_location": [ - { - "end_col": 36, - "end_line": 24, - "input_file": { - "filename": "autogen/starknet/storage_var/ERC721_name/impl.cairo" - }, - "parent_location": [ - { - "end_col": 79, - "end_line": 19, - "input_file": { - "filename": "autogen/starknet/storage_var/ERC721_name/decl.cairo" - }, - "parent_location": [ - { - "end_col": 19, - "end_line": 26, - "input_file": { - "filename": "autogen/starknet/storage_var/ERC721_name/impl.cairo" - }, - "start_col": 9, - "start_line": 26 - }, - "While trying to retrieve the implicit argument 'range_check_ptr' in:" - ], - "start_col": 64, - "start_line": 19 - }, - "While expanding the reference 'range_check_ptr' in:" - ], - "start_col": 30, - "start_line": 24 - }, - "While trying to update the implicit return value 'range_check_ptr' in:" - ], - "start_col": 43, - "start_line": 7 - } - }, - "853": { - "accessible_scopes": [ - "openzeppelin.token.erc721.library", - "openzeppelin.token.erc721.library.ERC721_name", - "openzeppelin.token.erc721.library.ERC721_name.write" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 19, - "end_line": 26, - "input_file": { - "filename": "autogen/starknet/storage_var/ERC721_name/impl.cairo" - }, - "start_col": 9, - "start_line": 26 - } - }, - "854": { - "accessible_scopes": [ - "openzeppelin.token.erc721.library", - "openzeppelin.token.erc721.library.ERC721_symbol", - "openzeppelin.token.erc721.library.ERC721_symbol.addr" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 41, - "end_line": 7, - "input_file": { - "filename": "autogen/starknet/storage_var/ERC721_symbol/impl.cairo" - }, - "parent_location": [ - { - "end_col": 41, - "end_line": 7, - "input_file": { - "filename": "autogen/starknet/storage_var/ERC721_symbol/decl.cairo" - }, - "parent_location": [ - { - "end_col": 26, - "end_line": 9, - "input_file": { - "filename": "autogen/starknet/storage_var/ERC721_symbol/impl.cairo" - }, - "start_col": 9, - "start_line": 9 - }, - "While trying to retrieve the implicit argument 'pedersen_ptr' in:" - ], - "start_col": 15, - "start_line": 7 - }, - "While expanding the reference 'pedersen_ptr' in:" - ], - "start_col": 15, - "start_line": 7 - } - }, - "855": { - "accessible_scopes": [ - "openzeppelin.token.erc721.library", - "openzeppelin.token.erc721.library.ERC721_symbol", - "openzeppelin.token.erc721.library.ERC721_symbol.addr" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 58, - "end_line": 7, - "input_file": { - "filename": "autogen/starknet/storage_var/ERC721_symbol/impl.cairo" - }, - "parent_location": [ - { - "end_col": 58, - "end_line": 7, - "input_file": { - "filename": "autogen/starknet/storage_var/ERC721_symbol/decl.cairo" - }, - "parent_location": [ - { - "end_col": 26, - "end_line": 9, - "input_file": { - "filename": "autogen/starknet/storage_var/ERC721_symbol/impl.cairo" - }, - "start_col": 9, - "start_line": 9 - }, - "While trying to retrieve the implicit argument 'range_check_ptr' in:" - ], - "start_col": 43, - "start_line": 7 - }, - "While expanding the reference 'range_check_ptr' in:" - ], - "start_col": 43, - "start_line": 7 - } - }, - "856": { - "accessible_scopes": [ - "openzeppelin.token.erc721.library", - "openzeppelin.token.erc721.library.ERC721_symbol", - "openzeppelin.token.erc721.library.ERC721_symbol.addr" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 94, - "end_line": 8, - "input_file": { - "filename": "autogen/starknet/storage_var/ERC721_symbol/impl.cairo" - }, - "parent_location": [ - { - "end_col": 24, - "end_line": 9, - "input_file": { - "filename": "autogen/starknet/storage_var/ERC721_symbol/impl.cairo" - }, - "start_col": 21, - "start_line": 9 - }, - "While expanding the reference 'res' in:" - ], - "start_col": 19, - "start_line": 8 - } - }, - "858": { - "accessible_scopes": [ - "openzeppelin.token.erc721.library", - "openzeppelin.token.erc721.library.ERC721_symbol", - "openzeppelin.token.erc721.library.ERC721_symbol.addr" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 26, - "end_line": 9, - "input_file": { - "filename": "autogen/starknet/storage_var/ERC721_symbol/impl.cairo" - }, - "start_col": 9, - "start_line": 9 - } - }, - "859": { - "accessible_scopes": [ - "openzeppelin.token.erc721.library", - "openzeppelin.token.erc721.library.ERC721_symbol", - "openzeppelin.token.erc721.library.ERC721_symbol.write" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 62, - "end_line": 23, - "input_file": { - "filename": "autogen/starknet/storage_var/ERC721_symbol/impl.cairo" - }, - "parent_location": [ - { - "end_col": 41, - "end_line": 7, - "input_file": { - "filename": "autogen/starknet/storage_var/ERC721_symbol/decl.cairo" - }, - "parent_location": [ - { - "end_col": 36, - "end_line": 24, - "input_file": { - "filename": "autogen/starknet/storage_var/ERC721_symbol/impl.cairo" - }, - "start_col": 30, - "start_line": 24 - }, - "While trying to retrieve the implicit argument 'pedersen_ptr' in:" - ], - "start_col": 15, - "start_line": 7 - }, - "While expanding the reference 'pedersen_ptr' in:" - ], - "start_col": 36, - "start_line": 23 - } - }, - "860": { - "accessible_scopes": [ - "openzeppelin.token.erc721.library", - "openzeppelin.token.erc721.library.ERC721_symbol", - "openzeppelin.token.erc721.library.ERC721_symbol.write" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 79, - "end_line": 23, - "input_file": { - "filename": "autogen/starknet/storage_var/ERC721_symbol/impl.cairo" - }, - "parent_location": [ - { - "end_col": 58, - "end_line": 7, - "input_file": { - "filename": "autogen/starknet/storage_var/ERC721_symbol/decl.cairo" - }, - "parent_location": [ - { - "end_col": 36, - "end_line": 24, - "input_file": { - "filename": "autogen/starknet/storage_var/ERC721_symbol/impl.cairo" - }, - "start_col": 30, - "start_line": 24 - }, - "While trying to retrieve the implicit argument 'range_check_ptr' in:" - ], - "start_col": 43, - "start_line": 7 - }, - "While expanding the reference 'range_check_ptr' in:" - ], - "start_col": 64, - "start_line": 23 - } - }, - "861": { - "accessible_scopes": [ - "openzeppelin.token.erc721.library", - "openzeppelin.token.erc721.library.ERC721_symbol", - "openzeppelin.token.erc721.library.ERC721_symbol.write" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 36, - "end_line": 24, - "input_file": { - "filename": "autogen/starknet/storage_var/ERC721_symbol/impl.cairo" - }, - "start_col": 30, - "start_line": 24 - } - }, - "863": { - "accessible_scopes": [ - "openzeppelin.token.erc721.library", - "openzeppelin.token.erc721.library.ERC721_symbol", - "openzeppelin.token.erc721.library.ERC721_symbol.write" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 34, - "end_line": 23, - "input_file": { - "filename": "autogen/starknet/storage_var/ERC721_symbol/impl.cairo" - }, - "parent_location": [ - { - "end_col": 38, - "end_line": 370, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/starknet/common/syscalls.cairo" - }, - "parent_location": [ - { - "end_col": 80, - "end_line": 25, - "input_file": { - "filename": "autogen/starknet/storage_var/ERC721_symbol/impl.cairo" - }, - "start_col": 9, - "start_line": 25 - }, - "While trying to retrieve the implicit argument 'syscall_ptr' in:" - ], - "start_col": 20, - "start_line": 370 - }, - "While expanding the reference 'syscall_ptr' in:" - ], - "start_col": 16, - "start_line": 23 - } - }, - "864": { - "accessible_scopes": [ - "openzeppelin.token.erc721.library", - "openzeppelin.token.erc721.library.ERC721_symbol", - "openzeppelin.token.erc721.library.ERC721_symbol.write" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 26, - "end_line": 24, - "input_file": { - "filename": "autogen/starknet/storage_var/ERC721_symbol/impl.cairo" - }, - "parent_location": [ - { - "end_col": 43, - "end_line": 25, - "input_file": { - "filename": "autogen/starknet/storage_var/ERC721_symbol/impl.cairo" - }, - "start_col": 31, - "start_line": 25 - }, - "While expanding the reference 'storage_addr' in:" - ], - "start_col": 14, - "start_line": 24 - } - }, - "865": { - "accessible_scopes": [ - "openzeppelin.token.erc721.library", - "openzeppelin.token.erc721.library.ERC721_symbol", - "openzeppelin.token.erc721.library.ERC721_symbol.write" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 79, - "end_line": 25, - "input_file": { - "filename": "autogen/starknet/storage_var/ERC721_symbol/impl.cairo" - }, - "start_col": 55, - "start_line": 25 - } - }, - "866": { - "accessible_scopes": [ - "openzeppelin.token.erc721.library", - "openzeppelin.token.erc721.library.ERC721_symbol", - "openzeppelin.token.erc721.library.ERC721_symbol.write" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 80, - "end_line": 25, - "input_file": { - "filename": "autogen/starknet/storage_var/ERC721_symbol/impl.cairo" - }, - "start_col": 9, - "start_line": 25 - } - }, - "868": { - "accessible_scopes": [ - "openzeppelin.token.erc721.library", - "openzeppelin.token.erc721.library.ERC721_symbol", - "openzeppelin.token.erc721.library.ERC721_symbol.write" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 41, - "end_line": 7, - "input_file": { - "filename": "autogen/starknet/storage_var/ERC721_symbol/decl.cairo" - }, - "parent_location": [ - { - "end_col": 36, - "end_line": 24, - "input_file": { - "filename": "autogen/starknet/storage_var/ERC721_symbol/impl.cairo" - }, - "parent_location": [ - { - "end_col": 62, - "end_line": 19, - "input_file": { - "filename": "autogen/starknet/storage_var/ERC721_symbol/decl.cairo" - }, - "parent_location": [ - { - "end_col": 19, - "end_line": 26, - "input_file": { - "filename": "autogen/starknet/storage_var/ERC721_symbol/impl.cairo" - }, - "start_col": 9, - "start_line": 26 - }, - "While trying to retrieve the implicit argument 'pedersen_ptr' in:" - ], - "start_col": 36, - "start_line": 19 - }, - "While expanding the reference 'pedersen_ptr' in:" - ], - "start_col": 30, - "start_line": 24 - }, - "While trying to update the implicit return value 'pedersen_ptr' in:" - ], - "start_col": 15, - "start_line": 7 - } - }, - "869": { - "accessible_scopes": [ - "openzeppelin.token.erc721.library", - "openzeppelin.token.erc721.library.ERC721_symbol", - "openzeppelin.token.erc721.library.ERC721_symbol.write" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 58, - "end_line": 7, - "input_file": { - "filename": "autogen/starknet/storage_var/ERC721_symbol/decl.cairo" - }, - "parent_location": [ - { - "end_col": 36, - "end_line": 24, - "input_file": { - "filename": "autogen/starknet/storage_var/ERC721_symbol/impl.cairo" - }, - "parent_location": [ - { - "end_col": 79, - "end_line": 19, - "input_file": { - "filename": "autogen/starknet/storage_var/ERC721_symbol/decl.cairo" - }, - "parent_location": [ - { - "end_col": 19, - "end_line": 26, - "input_file": { - "filename": "autogen/starknet/storage_var/ERC721_symbol/impl.cairo" - }, - "start_col": 9, - "start_line": 26 - }, - "While trying to retrieve the implicit argument 'range_check_ptr' in:" - ], - "start_col": 64, - "start_line": 19 - }, - "While expanding the reference 'range_check_ptr' in:" - ], - "start_col": 30, - "start_line": 24 - }, - "While trying to update the implicit return value 'range_check_ptr' in:" - ], - "start_col": 43, - "start_line": 7 - } - }, - "870": { - "accessible_scopes": [ - "openzeppelin.token.erc721.library", - "openzeppelin.token.erc721.library.ERC721_symbol", - "openzeppelin.token.erc721.library.ERC721_symbol.write" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 19, - "end_line": 26, - "input_file": { - "filename": "autogen/starknet/storage_var/ERC721_symbol/impl.cairo" - }, - "start_col": 9, - "start_line": 26 - } - }, - "871": { - "accessible_scopes": [ - "openzeppelin.token.erc721.library", - "openzeppelin.token.erc721.library.ERC721_owners", - "openzeppelin.token.erc721.library.ERC721_owners.addr" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 41, - "end_line": 7, - "input_file": { - "filename": "autogen/starknet/storage_var/ERC721_owners/impl.cairo" - }, - "parent_location": [ - { - "end_col": 48, - "end_line": 9, - "input_file": { - "filename": "autogen/starknet/storage_var/ERC721_owners/impl.cairo" - }, - "start_col": 36, - "start_line": 9 - }, - "While expanding the reference 'pedersen_ptr' in:" - ], - "start_col": 15, - "start_line": 7 - } - }, - "872": { - "accessible_scopes": [ - "openzeppelin.token.erc721.library", - "openzeppelin.token.erc721.library.ERC721_owners", - "openzeppelin.token.erc721.library.ERC721_owners.addr" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 94, - "end_line": 8, - "input_file": { - "filename": "autogen/starknet/storage_var/ERC721_owners/impl.cairo" - }, - "parent_location": [ - { - "end_col": 53, - "end_line": 9, - "input_file": { - "filename": "autogen/starknet/storage_var/ERC721_owners/impl.cairo" - }, - "start_col": 50, - "start_line": 9 - }, - "While expanding the reference 'res' in:" - ], - "start_col": 19, - "start_line": 8 - } - }, - "874": { - "accessible_scopes": [ - "openzeppelin.token.erc721.library", - "openzeppelin.token.erc721.library.ERC721_owners", - "openzeppelin.token.erc721.library.ERC721_owners.addr" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 80, - "end_line": 9, - "input_file": { - "filename": "autogen/starknet/storage_var/ERC721_owners/impl.cairo" - }, - "start_col": 55, - "start_line": 9 - } - }, - "875": { - "accessible_scopes": [ - "openzeppelin.token.erc721.library", - "openzeppelin.token.erc721.library.ERC721_owners", - "openzeppelin.token.erc721.library.ERC721_owners.addr" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 81, - "end_line": 9, - "input_file": { - "filename": "autogen/starknet/storage_var/ERC721_owners/impl.cairo" - }, - "start_col": 21, - "start_line": 9 - } - }, - "877": { - "accessible_scopes": [ - "openzeppelin.token.erc721.library", - "openzeppelin.token.erc721.library.ERC721_owners", - "openzeppelin.token.erc721.library.ERC721_owners.addr" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 80, - "end_line": 10, - "input_file": { - "filename": "autogen/starknet/storage_var/ERC721_owners/impl.cairo" - }, - "start_col": 55, - "start_line": 10 - } - }, - "878": { - "accessible_scopes": [ - "openzeppelin.token.erc721.library", - "openzeppelin.token.erc721.library.ERC721_owners", - "openzeppelin.token.erc721.library.ERC721_owners.addr" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 81, - "end_line": 10, - "input_file": { - "filename": "autogen/starknet/storage_var/ERC721_owners/impl.cairo" - }, - "start_col": 21, - "start_line": 10 - } - }, - "880": { - "accessible_scopes": [ - "openzeppelin.token.erc721.library", - "openzeppelin.token.erc721.library.ERC721_owners", - "openzeppelin.token.erc721.library.ERC721_owners.addr" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 58, - "end_line": 7, - "input_file": { - "filename": "autogen/starknet/storage_var/ERC721_owners/impl.cairo" - }, - "parent_location": [ - { - "end_col": 39, - "end_line": 12, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/starknet/common/storage.cairo" - }, - "parent_location": [ - { - "end_col": 48, - "end_line": 11, - "input_file": { - "filename": "autogen/starknet/storage_var/ERC721_owners/impl.cairo" - }, - "start_col": 21, - "start_line": 11 - }, - "While trying to retrieve the implicit argument 'range_check_ptr' in:" - ], - "start_col": 24, - "start_line": 12 - }, - "While expanding the reference 'range_check_ptr' in:" - ], - "start_col": 43, - "start_line": 7 - } - }, - "881": { - "accessible_scopes": [ - "openzeppelin.token.erc721.library", - "openzeppelin.token.erc721.library.ERC721_owners", - "openzeppelin.token.erc721.library.ERC721_owners.addr" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 17, - "end_line": 10, - "input_file": { - "filename": "autogen/starknet/storage_var/ERC721_owners/impl.cairo" - }, - "parent_location": [ - { - "end_col": 47, - "end_line": 11, - "input_file": { - "filename": "autogen/starknet/storage_var/ERC721_owners/impl.cairo" - }, - "start_col": 44, - "start_line": 11 - }, - "While expanding the reference 'res' in:" - ], - "start_col": 14, - "start_line": 10 - } - }, - "882": { - "accessible_scopes": [ - "openzeppelin.token.erc721.library", - "openzeppelin.token.erc721.library.ERC721_owners", - "openzeppelin.token.erc721.library.ERC721_owners.addr" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 48, - "end_line": 11, - "input_file": { - "filename": "autogen/starknet/storage_var/ERC721_owners/impl.cairo" - }, - "start_col": 21, - "start_line": 11 - } - }, - "884": { - "accessible_scopes": [ - "openzeppelin.token.erc721.library", - "openzeppelin.token.erc721.library.ERC721_owners", - "openzeppelin.token.erc721.library.ERC721_owners.addr" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 48, - "end_line": 10, - "input_file": { - "filename": "autogen/starknet/storage_var/ERC721_owners/impl.cairo" - }, - "parent_location": [ - { - "end_col": 41, - "end_line": 7, - "input_file": { - "filename": "autogen/starknet/storage_var/ERC721_owners/decl.cairo" - }, - "parent_location": [ - { - "end_col": 26, - "end_line": 12, - "input_file": { - "filename": "autogen/starknet/storage_var/ERC721_owners/impl.cairo" - }, - "start_col": 9, - "start_line": 12 - }, - "While trying to retrieve the implicit argument 'pedersen_ptr' in:" - ], - "start_col": 15, - "start_line": 7 - }, - "While expanding the reference 'pedersen_ptr' in:" - ], - "start_col": 36, - "start_line": 10 - } - }, - "885": { - "accessible_scopes": [ - "openzeppelin.token.erc721.library", - "openzeppelin.token.erc721.library.ERC721_owners", - "openzeppelin.token.erc721.library.ERC721_owners.addr" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 39, - "end_line": 12, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/starknet/common/storage.cairo" - }, - "parent_location": [ - { - "end_col": 48, - "end_line": 11, - "input_file": { - "filename": "autogen/starknet/storage_var/ERC721_owners/impl.cairo" - }, - "parent_location": [ - { - "end_col": 58, - "end_line": 7, - "input_file": { - "filename": "autogen/starknet/storage_var/ERC721_owners/decl.cairo" - }, - "parent_location": [ - { - "end_col": 26, - "end_line": 12, - "input_file": { - "filename": "autogen/starknet/storage_var/ERC721_owners/impl.cairo" - }, - "start_col": 9, - "start_line": 12 - }, - "While trying to retrieve the implicit argument 'range_check_ptr' in:" - ], - "start_col": 43, - "start_line": 7 - }, - "While expanding the reference 'range_check_ptr' in:" - ], - "start_col": 21, - "start_line": 11 - }, - "While trying to update the implicit return value 'range_check_ptr' in:" - ], - "start_col": 24, - "start_line": 12 - } - }, - "886": { - "accessible_scopes": [ - "openzeppelin.token.erc721.library", - "openzeppelin.token.erc721.library.ERC721_owners", - "openzeppelin.token.erc721.library.ERC721_owners.addr" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 17, - "end_line": 11, - "input_file": { - "filename": "autogen/starknet/storage_var/ERC721_owners/impl.cairo" - }, - "parent_location": [ - { - "end_col": 24, - "end_line": 12, - "input_file": { - "filename": "autogen/starknet/storage_var/ERC721_owners/impl.cairo" - }, - "start_col": 21, - "start_line": 12 - }, - "While expanding the reference 'res' in:" - ], - "start_col": 14, - "start_line": 11 - } - }, - "887": { - "accessible_scopes": [ - "openzeppelin.token.erc721.library", - "openzeppelin.token.erc721.library.ERC721_owners", - "openzeppelin.token.erc721.library.ERC721_owners.addr" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 26, - "end_line": 12, - "input_file": { - "filename": "autogen/starknet/storage_var/ERC721_owners/impl.cairo" - }, - "start_col": 9, - "start_line": 12 - } - }, - "888": { - "accessible_scopes": [ - "openzeppelin.token.erc721.library", - "openzeppelin.token.erc721.library.ERC721_owners", - "openzeppelin.token.erc721.library.ERC721_owners.read" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 61, - "end_line": 15, - "input_file": { - "filename": "autogen/starknet/storage_var/ERC721_owners/impl.cairo" - }, - "parent_location": [ - { - "end_col": 41, - "end_line": 7, - "input_file": { - "filename": "autogen/starknet/storage_var/ERC721_owners/decl.cairo" - }, - "parent_location": [ - { - "end_col": 44, - "end_line": 18, - "input_file": { - "filename": "autogen/starknet/storage_var/ERC721_owners/impl.cairo" - }, - "start_col": 30, - "start_line": 18 - }, - "While trying to retrieve the implicit argument 'pedersen_ptr' in:" - ], - "start_col": 15, - "start_line": 7 - }, - "While expanding the reference 'pedersen_ptr' in:" - ], - "start_col": 35, - "start_line": 15 - } - }, - "889": { - "accessible_scopes": [ - "openzeppelin.token.erc721.library", - "openzeppelin.token.erc721.library.ERC721_owners", - "openzeppelin.token.erc721.library.ERC721_owners.read" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 78, - "end_line": 15, - "input_file": { - "filename": "autogen/starknet/storage_var/ERC721_owners/impl.cairo" - }, - "parent_location": [ - { - "end_col": 58, - "end_line": 7, - "input_file": { - "filename": "autogen/starknet/storage_var/ERC721_owners/decl.cairo" - }, - "parent_location": [ - { - "end_col": 44, - "end_line": 18, - "input_file": { - "filename": "autogen/starknet/storage_var/ERC721_owners/impl.cairo" - }, - "start_col": 30, - "start_line": 18 - }, - "While trying to retrieve the implicit argument 'range_check_ptr' in:" - ], - "start_col": 43, - "start_line": 7 - }, - "While expanding the reference 'range_check_ptr' in:" - ], - "start_col": 63, - "start_line": 15 - } - }, - "890": { - "accessible_scopes": [ - "openzeppelin.token.erc721.library", - "openzeppelin.token.erc721.library.ERC721_owners", - "openzeppelin.token.erc721.library.ERC721_owners.read" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 26, - "end_line": 16, - "input_file": { - "filename": "autogen/starknet/storage_var/ERC721_owners/impl.cairo" - }, - "parent_location": [ - { - "end_col": 43, - "end_line": 18, - "input_file": { - "filename": "autogen/starknet/storage_var/ERC721_owners/impl.cairo" - }, - "start_col": 35, - "start_line": 18 - }, - "While expanding the reference 'token_id' in:" - ], - "start_col": 9, - "start_line": 16 - } - }, - "891": { - "accessible_scopes": [ - "openzeppelin.token.erc721.library", - "openzeppelin.token.erc721.library.ERC721_owners", - "openzeppelin.token.erc721.library.ERC721_owners.read" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 26, - "end_line": 16, - "input_file": { - "filename": "autogen/starknet/storage_var/ERC721_owners/impl.cairo" - }, - "parent_location": [ - { - "end_col": 43, - "end_line": 18, - "input_file": { - "filename": "autogen/starknet/storage_var/ERC721_owners/impl.cairo" - }, - "start_col": 35, - "start_line": 18 - }, - "While expanding the reference 'token_id' in:" - ], - "start_col": 9, - "start_line": 16 - } - }, - "892": { - "accessible_scopes": [ - "openzeppelin.token.erc721.library", - "openzeppelin.token.erc721.library.ERC721_owners", - "openzeppelin.token.erc721.library.ERC721_owners.read" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 44, - "end_line": 18, - "input_file": { - "filename": "autogen/starknet/storage_var/ERC721_owners/impl.cairo" - }, - "start_col": 30, - "start_line": 18 - } - }, - "894": { - "accessible_scopes": [ - "openzeppelin.token.erc721.library", - "openzeppelin.token.erc721.library.ERC721_owners", - "openzeppelin.token.erc721.library.ERC721_owners.read" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 33, - "end_line": 15, - "input_file": { - "filename": "autogen/starknet/storage_var/ERC721_owners/impl.cairo" - }, - "parent_location": [ - { - "end_col": 37, - "end_line": 352, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/starknet/common/syscalls.cairo" - }, - "parent_location": [ - { - "end_col": 75, - "end_line": 19, - "input_file": { - "filename": "autogen/starknet/storage_var/ERC721_owners/impl.cairo" - }, - "start_col": 37, - "start_line": 19 - }, - "While trying to retrieve the implicit argument 'syscall_ptr' in:" - ], - "start_col": 19, - "start_line": 352 - }, - "While expanding the reference 'syscall_ptr' in:" - ], - "start_col": 15, - "start_line": 15 - } - }, - "895": { - "accessible_scopes": [ - "openzeppelin.token.erc721.library", - "openzeppelin.token.erc721.library.ERC721_owners", - "openzeppelin.token.erc721.library.ERC721_owners.read" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 26, - "end_line": 18, - "input_file": { - "filename": "autogen/starknet/storage_var/ERC721_owners/impl.cairo" - }, - "parent_location": [ - { - "end_col": 70, - "end_line": 19, - "input_file": { - "filename": "autogen/starknet/storage_var/ERC721_owners/impl.cairo" - }, - "start_col": 58, - "start_line": 19 - }, - "While expanding the reference 'storage_addr' in:" - ], - "start_col": 14, - "start_line": 18 - } - }, - "896": { - "accessible_scopes": [ - "openzeppelin.token.erc721.library", - "openzeppelin.token.erc721.library.ERC721_owners", - "openzeppelin.token.erc721.library.ERC721_owners.read" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 75, - "end_line": 19, - "input_file": { - "filename": "autogen/starknet/storage_var/ERC721_owners/impl.cairo" - }, - "start_col": 37, - "start_line": 19 - } - }, - "898": { - "accessible_scopes": [ - "openzeppelin.token.erc721.library", - "openzeppelin.token.erc721.library.ERC721_owners", - "openzeppelin.token.erc721.library.ERC721_owners.read" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 37, - "end_line": 352, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/starknet/common/syscalls.cairo" - }, - "parent_location": [ - { - "end_col": 75, - "end_line": 19, - "input_file": { - "filename": "autogen/starknet/storage_var/ERC721_owners/impl.cairo" - }, - "parent_location": [ - { - "end_col": 42, - "end_line": 21, - "input_file": { - "filename": "autogen/starknet/storage_var/ERC721_owners/impl.cairo" - }, - "start_col": 31, - "start_line": 21 - }, - "While expanding the reference 'syscall_ptr' in:" - ], - "start_col": 37, - "start_line": 19 - }, - "While trying to update the implicit return value 'syscall_ptr' in:" - ], - "start_col": 19, - "start_line": 352 - } - }, - "899": { - "accessible_scopes": [ - "openzeppelin.token.erc721.library", - "openzeppelin.token.erc721.library.ERC721_owners", - "openzeppelin.token.erc721.library.ERC721_owners.read" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 41, - "end_line": 7, - "input_file": { - "filename": "autogen/starknet/storage_var/ERC721_owners/decl.cairo" - }, - "parent_location": [ - { - "end_col": 44, - "end_line": 18, - "input_file": { - "filename": "autogen/starknet/storage_var/ERC721_owners/impl.cairo" - }, - "parent_location": [ - { - "end_col": 44, - "end_line": 22, - "input_file": { - "filename": "autogen/starknet/storage_var/ERC721_owners/impl.cairo" - }, - "start_col": 32, - "start_line": 22 - }, - "While expanding the reference 'pedersen_ptr' in:" - ], - "start_col": 30, - "start_line": 18 - }, - "While trying to update the implicit return value 'pedersen_ptr' in:" - ], - "start_col": 15, - "start_line": 7 - } - }, - "900": { - "accessible_scopes": [ - "openzeppelin.token.erc721.library", - "openzeppelin.token.erc721.library.ERC721_owners", - "openzeppelin.token.erc721.library.ERC721_owners.read" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 58, - "end_line": 7, - "input_file": { - "filename": "autogen/starknet/storage_var/ERC721_owners/decl.cairo" - }, - "parent_location": [ - { - "end_col": 44, - "end_line": 18, - "input_file": { - "filename": "autogen/starknet/storage_var/ERC721_owners/impl.cairo" - }, - "parent_location": [ - { - "end_col": 50, - "end_line": 23, - "input_file": { - "filename": "autogen/starknet/storage_var/ERC721_owners/impl.cairo" - }, - "start_col": 35, - "start_line": 23 - }, - "While expanding the reference 'range_check_ptr' in:" - ], - "start_col": 30, - "start_line": 18 - }, - "While trying to update the implicit return value 'range_check_ptr' in:" - ], - "start_col": 43, - "start_line": 7 - } - }, - "901": { - "accessible_scopes": [ - "openzeppelin.token.erc721.library", - "openzeppelin.token.erc721.library.ERC721_owners", - "openzeppelin.token.erc721.library.ERC721_owners.read" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 33, - "end_line": 19, - "input_file": { - "filename": "autogen/starknet/storage_var/ERC721_owners/impl.cairo" - }, - "parent_location": [ - { - "end_col": 64, - "end_line": 24, - "input_file": { - "filename": "autogen/starknet/storage_var/ERC721_owners/impl.cairo" - }, - "start_col": 45, - "start_line": 24 - }, - "While expanding the reference '__storage_var_temp0' in:" - ], - "start_col": 14, - "start_line": 19 - } - }, - "902": { - "accessible_scopes": [ - "openzeppelin.token.erc721.library", - "openzeppelin.token.erc721.library.ERC721_owners", - "openzeppelin.token.erc721.library.ERC721_owners.read" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 55, - "end_line": 25, - "input_file": { - "filename": "autogen/starknet/storage_var/ERC721_owners/impl.cairo" - }, - "start_col": 9, - "start_line": 25 - } - }, - "903": { - "accessible_scopes": [ - "openzeppelin.token.erc721.library", - "openzeppelin.token.erc721.library.ERC721_owners", - "openzeppelin.token.erc721.library.ERC721_owners.write" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 62, - "end_line": 28, - "input_file": { - "filename": "autogen/starknet/storage_var/ERC721_owners/impl.cairo" - }, - "parent_location": [ - { - "end_col": 41, - "end_line": 7, - "input_file": { - "filename": "autogen/starknet/storage_var/ERC721_owners/decl.cairo" - }, - "parent_location": [ - { - "end_col": 44, - "end_line": 31, - "input_file": { - "filename": "autogen/starknet/storage_var/ERC721_owners/impl.cairo" - }, - "start_col": 30, - "start_line": 31 - }, - "While trying to retrieve the implicit argument 'pedersen_ptr' in:" - ], - "start_col": 15, - "start_line": 7 - }, - "While expanding the reference 'pedersen_ptr' in:" - ], - "start_col": 36, - "start_line": 28 - } - }, - "904": { - "accessible_scopes": [ - "openzeppelin.token.erc721.library", - "openzeppelin.token.erc721.library.ERC721_owners", - "openzeppelin.token.erc721.library.ERC721_owners.write" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 79, - "end_line": 28, - "input_file": { - "filename": "autogen/starknet/storage_var/ERC721_owners/impl.cairo" - }, - "parent_location": [ - { - "end_col": 58, - "end_line": 7, - "input_file": { - "filename": "autogen/starknet/storage_var/ERC721_owners/decl.cairo" - }, - "parent_location": [ - { - "end_col": 44, - "end_line": 31, - "input_file": { - "filename": "autogen/starknet/storage_var/ERC721_owners/impl.cairo" - }, - "start_col": 30, - "start_line": 31 - }, - "While trying to retrieve the implicit argument 'range_check_ptr' in:" - ], - "start_col": 43, - "start_line": 7 - }, - "While expanding the reference 'range_check_ptr' in:" - ], - "start_col": 64, - "start_line": 28 - } - }, - "905": { - "accessible_scopes": [ - "openzeppelin.token.erc721.library", - "openzeppelin.token.erc721.library.ERC721_owners", - "openzeppelin.token.erc721.library.ERC721_owners.write" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 26, - "end_line": 29, - "input_file": { - "filename": "autogen/starknet/storage_var/ERC721_owners/impl.cairo" - }, - "parent_location": [ - { - "end_col": 43, - "end_line": 31, - "input_file": { - "filename": "autogen/starknet/storage_var/ERC721_owners/impl.cairo" - }, - "start_col": 35, - "start_line": 31 - }, - "While expanding the reference 'token_id' in:" - ], - "start_col": 9, - "start_line": 29 - } - }, - "906": { - "accessible_scopes": [ - "openzeppelin.token.erc721.library", - "openzeppelin.token.erc721.library.ERC721_owners", - "openzeppelin.token.erc721.library.ERC721_owners.write" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 26, - "end_line": 29, - "input_file": { - "filename": "autogen/starknet/storage_var/ERC721_owners/impl.cairo" - }, - "parent_location": [ - { - "end_col": 43, - "end_line": 31, - "input_file": { - "filename": "autogen/starknet/storage_var/ERC721_owners/impl.cairo" - }, - "start_col": 35, - "start_line": 31 - }, - "While expanding the reference 'token_id' in:" - ], - "start_col": 9, - "start_line": 29 - } - }, - "907": { - "accessible_scopes": [ - "openzeppelin.token.erc721.library", - "openzeppelin.token.erc721.library.ERC721_owners", - "openzeppelin.token.erc721.library.ERC721_owners.write" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 44, - "end_line": 31, - "input_file": { - "filename": "autogen/starknet/storage_var/ERC721_owners/impl.cairo" - }, - "start_col": 30, - "start_line": 31 - } - }, - "909": { - "accessible_scopes": [ - "openzeppelin.token.erc721.library", - "openzeppelin.token.erc721.library.ERC721_owners", - "openzeppelin.token.erc721.library.ERC721_owners.write" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 34, - "end_line": 28, - "input_file": { - "filename": "autogen/starknet/storage_var/ERC721_owners/impl.cairo" - }, - "parent_location": [ - { - "end_col": 38, - "end_line": 370, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/starknet/common/syscalls.cairo" - }, - "parent_location": [ - { - "end_col": 80, - "end_line": 32, - "input_file": { - "filename": "autogen/starknet/storage_var/ERC721_owners/impl.cairo" - }, - "start_col": 9, - "start_line": 32 - }, - "While trying to retrieve the implicit argument 'syscall_ptr' in:" - ], - "start_col": 20, - "start_line": 370 - }, - "While expanding the reference 'syscall_ptr' in:" - ], - "start_col": 16, - "start_line": 28 - } - }, - "910": { - "accessible_scopes": [ - "openzeppelin.token.erc721.library", - "openzeppelin.token.erc721.library.ERC721_owners", - "openzeppelin.token.erc721.library.ERC721_owners.write" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 26, - "end_line": 31, - "input_file": { - "filename": "autogen/starknet/storage_var/ERC721_owners/impl.cairo" - }, - "parent_location": [ - { - "end_col": 43, - "end_line": 32, - "input_file": { - "filename": "autogen/starknet/storage_var/ERC721_owners/impl.cairo" - }, - "start_col": 31, - "start_line": 32 - }, - "While expanding the reference 'storage_addr' in:" - ], - "start_col": 14, - "start_line": 31 - } - }, - "911": { - "accessible_scopes": [ - "openzeppelin.token.erc721.library", - "openzeppelin.token.erc721.library.ERC721_owners", - "openzeppelin.token.erc721.library.ERC721_owners.write" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 79, - "end_line": 32, - "input_file": { - "filename": "autogen/starknet/storage_var/ERC721_owners/impl.cairo" - }, - "start_col": 55, - "start_line": 32 - } - }, - "912": { - "accessible_scopes": [ - "openzeppelin.token.erc721.library", - "openzeppelin.token.erc721.library.ERC721_owners", - "openzeppelin.token.erc721.library.ERC721_owners.write" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 80, - "end_line": 32, - "input_file": { - "filename": "autogen/starknet/storage_var/ERC721_owners/impl.cairo" - }, - "start_col": 9, - "start_line": 32 - } - }, - "914": { - "accessible_scopes": [ - "openzeppelin.token.erc721.library", - "openzeppelin.token.erc721.library.ERC721_owners", - "openzeppelin.token.erc721.library.ERC721_owners.write" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 41, - "end_line": 7, - "input_file": { - "filename": "autogen/starknet/storage_var/ERC721_owners/decl.cairo" - }, - "parent_location": [ - { - "end_col": 44, - "end_line": 31, - "input_file": { - "filename": "autogen/starknet/storage_var/ERC721_owners/impl.cairo" - }, - "parent_location": [ - { - "end_col": 62, - "end_line": 21, - "input_file": { - "filename": "autogen/starknet/storage_var/ERC721_owners/decl.cairo" - }, - "parent_location": [ - { - "end_col": 19, - "end_line": 33, - "input_file": { - "filename": "autogen/starknet/storage_var/ERC721_owners/impl.cairo" - }, - "start_col": 9, - "start_line": 33 - }, - "While trying to retrieve the implicit argument 'pedersen_ptr' in:" - ], - "start_col": 36, - "start_line": 21 - }, - "While expanding the reference 'pedersen_ptr' in:" - ], - "start_col": 30, - "start_line": 31 - }, - "While trying to update the implicit return value 'pedersen_ptr' in:" - ], - "start_col": 15, - "start_line": 7 - } - }, - "915": { - "accessible_scopes": [ - "openzeppelin.token.erc721.library", - "openzeppelin.token.erc721.library.ERC721_owners", - "openzeppelin.token.erc721.library.ERC721_owners.write" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 58, - "end_line": 7, - "input_file": { - "filename": "autogen/starknet/storage_var/ERC721_owners/decl.cairo" - }, - "parent_location": [ - { - "end_col": 44, - "end_line": 31, - "input_file": { - "filename": "autogen/starknet/storage_var/ERC721_owners/impl.cairo" - }, - "parent_location": [ - { - "end_col": 79, - "end_line": 21, - "input_file": { - "filename": "autogen/starknet/storage_var/ERC721_owners/decl.cairo" - }, - "parent_location": [ - { - "end_col": 19, - "end_line": 33, - "input_file": { - "filename": "autogen/starknet/storage_var/ERC721_owners/impl.cairo" - }, - "start_col": 9, - "start_line": 33 - }, - "While trying to retrieve the implicit argument 'range_check_ptr' in:" - ], - "start_col": 64, - "start_line": 21 - }, - "While expanding the reference 'range_check_ptr' in:" - ], - "start_col": 30, - "start_line": 31 - }, - "While trying to update the implicit return value 'range_check_ptr' in:" - ], - "start_col": 43, - "start_line": 7 - } - }, - "916": { - "accessible_scopes": [ - "openzeppelin.token.erc721.library", - "openzeppelin.token.erc721.library.ERC721_owners", - "openzeppelin.token.erc721.library.ERC721_owners.write" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 19, - "end_line": 33, - "input_file": { - "filename": "autogen/starknet/storage_var/ERC721_owners/impl.cairo" - }, - "start_col": 9, - "start_line": 33 - } - }, - "917": { - "accessible_scopes": [ - "openzeppelin.token.erc721.library", - "openzeppelin.token.erc721.library.ERC721_balances", - "openzeppelin.token.erc721.library.ERC721_balances.addr" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 41, - "end_line": 7, - "input_file": { - "filename": "autogen/starknet/storage_var/ERC721_balances/impl.cairo" - }, - "parent_location": [ - { - "end_col": 48, - "end_line": 9, - "input_file": { - "filename": "autogen/starknet/storage_var/ERC721_balances/impl.cairo" - }, - "start_col": 36, - "start_line": 9 - }, - "While expanding the reference 'pedersen_ptr' in:" - ], - "start_col": 15, - "start_line": 7 - } - }, - "918": { - "accessible_scopes": [ - "openzeppelin.token.erc721.library", - "openzeppelin.token.erc721.library.ERC721_balances", - "openzeppelin.token.erc721.library.ERC721_balances.addr" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 95, - "end_line": 8, - "input_file": { - "filename": "autogen/starknet/storage_var/ERC721_balances/impl.cairo" - }, - "parent_location": [ - { - "end_col": 53, - "end_line": 9, - "input_file": { - "filename": "autogen/starknet/storage_var/ERC721_balances/impl.cairo" - }, - "start_col": 50, - "start_line": 9 - }, - "While expanding the reference 'res' in:" - ], - "start_col": 19, - "start_line": 8 - } - }, - "920": { - "accessible_scopes": [ - "openzeppelin.token.erc721.library", - "openzeppelin.token.erc721.library.ERC721_balances", - "openzeppelin.token.erc721.library.ERC721_balances.addr" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 79, - "end_line": 9, - "input_file": { - "filename": "autogen/starknet/storage_var/ERC721_balances/impl.cairo" - }, - "start_col": 55, - "start_line": 9 - } - }, - "921": { - "accessible_scopes": [ - "openzeppelin.token.erc721.library", - "openzeppelin.token.erc721.library.ERC721_balances", - "openzeppelin.token.erc721.library.ERC721_balances.addr" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 80, - "end_line": 9, - "input_file": { - "filename": "autogen/starknet/storage_var/ERC721_balances/impl.cairo" - }, - "start_col": 21, - "start_line": 9 - } - }, - "923": { - "accessible_scopes": [ - "openzeppelin.token.erc721.library", - "openzeppelin.token.erc721.library.ERC721_balances", - "openzeppelin.token.erc721.library.ERC721_balances.addr" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 58, - "end_line": 7, - "input_file": { - "filename": "autogen/starknet/storage_var/ERC721_balances/impl.cairo" - }, - "parent_location": [ - { - "end_col": 39, - "end_line": 12, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/starknet/common/storage.cairo" - }, - "parent_location": [ - { - "end_col": 48, - "end_line": 10, - "input_file": { - "filename": "autogen/starknet/storage_var/ERC721_balances/impl.cairo" - }, - "start_col": 21, - "start_line": 10 - }, - "While trying to retrieve the implicit argument 'range_check_ptr' in:" - ], - "start_col": 24, - "start_line": 12 - }, - "While expanding the reference 'range_check_ptr' in:" - ], - "start_col": 43, - "start_line": 7 - } - }, - "924": { - "accessible_scopes": [ - "openzeppelin.token.erc721.library", - "openzeppelin.token.erc721.library.ERC721_balances", - "openzeppelin.token.erc721.library.ERC721_balances.addr" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 17, - "end_line": 9, - "input_file": { - "filename": "autogen/starknet/storage_var/ERC721_balances/impl.cairo" - }, - "parent_location": [ - { - "end_col": 47, - "end_line": 10, - "input_file": { - "filename": "autogen/starknet/storage_var/ERC721_balances/impl.cairo" - }, - "start_col": 44, - "start_line": 10 - }, - "While expanding the reference 'res' in:" - ], - "start_col": 14, - "start_line": 9 - } - }, - "925": { - "accessible_scopes": [ - "openzeppelin.token.erc721.library", - "openzeppelin.token.erc721.library.ERC721_balances", - "openzeppelin.token.erc721.library.ERC721_balances.addr" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 48, - "end_line": 10, - "input_file": { - "filename": "autogen/starknet/storage_var/ERC721_balances/impl.cairo" - }, - "start_col": 21, - "start_line": 10 - } - }, - "927": { - "accessible_scopes": [ - "openzeppelin.token.erc721.library", - "openzeppelin.token.erc721.library.ERC721_balances", - "openzeppelin.token.erc721.library.ERC721_balances.addr" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 48, - "end_line": 9, - "input_file": { - "filename": "autogen/starknet/storage_var/ERC721_balances/impl.cairo" - }, - "parent_location": [ - { - "end_col": 41, - "end_line": 7, - "input_file": { - "filename": "autogen/starknet/storage_var/ERC721_balances/decl.cairo" - }, - "parent_location": [ - { - "end_col": 26, - "end_line": 11, - "input_file": { - "filename": "autogen/starknet/storage_var/ERC721_balances/impl.cairo" - }, - "start_col": 9, - "start_line": 11 - }, - "While trying to retrieve the implicit argument 'pedersen_ptr' in:" - ], - "start_col": 15, - "start_line": 7 - }, - "While expanding the reference 'pedersen_ptr' in:" - ], - "start_col": 36, - "start_line": 9 - } - }, - "928": { - "accessible_scopes": [ - "openzeppelin.token.erc721.library", - "openzeppelin.token.erc721.library.ERC721_balances", - "openzeppelin.token.erc721.library.ERC721_balances.addr" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 39, - "end_line": 12, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/starknet/common/storage.cairo" - }, - "parent_location": [ - { - "end_col": 48, - "end_line": 10, - "input_file": { - "filename": "autogen/starknet/storage_var/ERC721_balances/impl.cairo" - }, - "parent_location": [ - { - "end_col": 58, - "end_line": 7, - "input_file": { - "filename": "autogen/starknet/storage_var/ERC721_balances/decl.cairo" - }, - "parent_location": [ - { - "end_col": 26, - "end_line": 11, - "input_file": { - "filename": "autogen/starknet/storage_var/ERC721_balances/impl.cairo" - }, - "start_col": 9, - "start_line": 11 - }, - "While trying to retrieve the implicit argument 'range_check_ptr' in:" - ], - "start_col": 43, - "start_line": 7 - }, - "While expanding the reference 'range_check_ptr' in:" - ], - "start_col": 21, - "start_line": 10 - }, - "While trying to update the implicit return value 'range_check_ptr' in:" - ], - "start_col": 24, - "start_line": 12 - } - }, - "929": { - "accessible_scopes": [ - "openzeppelin.token.erc721.library", - "openzeppelin.token.erc721.library.ERC721_balances", - "openzeppelin.token.erc721.library.ERC721_balances.addr" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 17, - "end_line": 10, - "input_file": { - "filename": "autogen/starknet/storage_var/ERC721_balances/impl.cairo" - }, - "parent_location": [ - { - "end_col": 24, - "end_line": 11, - "input_file": { - "filename": "autogen/starknet/storage_var/ERC721_balances/impl.cairo" - }, - "start_col": 21, - "start_line": 11 - }, - "While expanding the reference 'res' in:" - ], - "start_col": 14, - "start_line": 10 - } - }, - "930": { - "accessible_scopes": [ - "openzeppelin.token.erc721.library", - "openzeppelin.token.erc721.library.ERC721_balances", - "openzeppelin.token.erc721.library.ERC721_balances.addr" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 26, - "end_line": 11, - "input_file": { - "filename": "autogen/starknet/storage_var/ERC721_balances/impl.cairo" - }, - "start_col": 9, - "start_line": 11 - } - }, - "931": { - "accessible_scopes": [ - "openzeppelin.token.erc721.library", - "openzeppelin.token.erc721.library.ERC721_balances", - "openzeppelin.token.erc721.library.ERC721_balances.read" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 61, - "end_line": 14, - "input_file": { - "filename": "autogen/starknet/storage_var/ERC721_balances/impl.cairo" - }, - "parent_location": [ - { - "end_col": 41, - "end_line": 7, - "input_file": { - "filename": "autogen/starknet/storage_var/ERC721_balances/decl.cairo" - }, - "parent_location": [ - { - "end_col": 43, - "end_line": 17, - "input_file": { - "filename": "autogen/starknet/storage_var/ERC721_balances/impl.cairo" - }, - "start_col": 30, - "start_line": 17 - }, - "While trying to retrieve the implicit argument 'pedersen_ptr' in:" - ], - "start_col": 15, - "start_line": 7 - }, - "While expanding the reference 'pedersen_ptr' in:" - ], - "start_col": 35, - "start_line": 14 - } - }, - "932": { - "accessible_scopes": [ - "openzeppelin.token.erc721.library", - "openzeppelin.token.erc721.library.ERC721_balances", - "openzeppelin.token.erc721.library.ERC721_balances.read" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 78, - "end_line": 14, - "input_file": { - "filename": "autogen/starknet/storage_var/ERC721_balances/impl.cairo" - }, - "parent_location": [ - { - "end_col": 58, - "end_line": 7, - "input_file": { - "filename": "autogen/starknet/storage_var/ERC721_balances/decl.cairo" - }, - "parent_location": [ - { - "end_col": 43, - "end_line": 17, - "input_file": { - "filename": "autogen/starknet/storage_var/ERC721_balances/impl.cairo" - }, - "start_col": 30, - "start_line": 17 - }, - "While trying to retrieve the implicit argument 'range_check_ptr' in:" - ], - "start_col": 43, - "start_line": 7 - }, - "While expanding the reference 'range_check_ptr' in:" - ], - "start_col": 63, - "start_line": 14 - } - }, - "933": { - "accessible_scopes": [ - "openzeppelin.token.erc721.library", - "openzeppelin.token.erc721.library.ERC721_balances", - "openzeppelin.token.erc721.library.ERC721_balances.read" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 93, - "end_line": 14, - "input_file": { - "filename": "autogen/starknet/storage_var/ERC721_balances/impl.cairo" - }, - "parent_location": [ - { - "end_col": 42, - "end_line": 17, - "input_file": { - "filename": "autogen/starknet/storage_var/ERC721_balances/impl.cairo" - }, - "start_col": 35, - "start_line": 17 - }, - "While expanding the reference 'account' in:" - ], - "start_col": 80, - "start_line": 14 - } - }, - "934": { - "accessible_scopes": [ - "openzeppelin.token.erc721.library", - "openzeppelin.token.erc721.library.ERC721_balances", - "openzeppelin.token.erc721.library.ERC721_balances.read" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 43, - "end_line": 17, - "input_file": { - "filename": "autogen/starknet/storage_var/ERC721_balances/impl.cairo" - }, - "start_col": 30, - "start_line": 17 - } - }, - "936": { - "accessible_scopes": [ - "openzeppelin.token.erc721.library", - "openzeppelin.token.erc721.library.ERC721_balances", - "openzeppelin.token.erc721.library.ERC721_balances.read" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 33, - "end_line": 14, - "input_file": { - "filename": "autogen/starknet/storage_var/ERC721_balances/impl.cairo" - }, - "parent_location": [ - { - "end_col": 37, - "end_line": 352, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/starknet/common/syscalls.cairo" - }, - "parent_location": [ - { - "end_col": 75, - "end_line": 18, - "input_file": { - "filename": "autogen/starknet/storage_var/ERC721_balances/impl.cairo" - }, - "start_col": 37, - "start_line": 18 - }, - "While trying to retrieve the implicit argument 'syscall_ptr' in:" - ], - "start_col": 19, - "start_line": 352 - }, - "While expanding the reference 'syscall_ptr' in:" - ], - "start_col": 15, - "start_line": 14 - } - }, - "937": { - "accessible_scopes": [ - "openzeppelin.token.erc721.library", - "openzeppelin.token.erc721.library.ERC721_balances", - "openzeppelin.token.erc721.library.ERC721_balances.read" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 26, - "end_line": 17, - "input_file": { - "filename": "autogen/starknet/storage_var/ERC721_balances/impl.cairo" - }, - "parent_location": [ - { - "end_col": 70, - "end_line": 18, - "input_file": { - "filename": "autogen/starknet/storage_var/ERC721_balances/impl.cairo" - }, - "start_col": 58, - "start_line": 18 - }, - "While expanding the reference 'storage_addr' in:" - ], - "start_col": 14, - "start_line": 17 - } - }, - "938": { - "accessible_scopes": [ - "openzeppelin.token.erc721.library", - "openzeppelin.token.erc721.library.ERC721_balances", - "openzeppelin.token.erc721.library.ERC721_balances.read" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 75, - "end_line": 18, - "input_file": { - "filename": "autogen/starknet/storage_var/ERC721_balances/impl.cairo" - }, - "start_col": 37, - "start_line": 18 - } - }, - "940": { - "accessible_scopes": [ - "openzeppelin.token.erc721.library", - "openzeppelin.token.erc721.library.ERC721_balances", - "openzeppelin.token.erc721.library.ERC721_balances.read" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 37, - "end_line": 352, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/starknet/common/syscalls.cairo" - }, - "parent_location": [ - { - "end_col": 75, - "end_line": 18, - "input_file": { - "filename": "autogen/starknet/storage_var/ERC721_balances/impl.cairo" - }, - "parent_location": [ - { - "end_col": 37, - "end_line": 352, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/starknet/common/syscalls.cairo" - }, - "parent_location": [ - { - "end_col": 75, - "end_line": 19, - "input_file": { - "filename": "autogen/starknet/storage_var/ERC721_balances/impl.cairo" - }, - "start_col": 37, - "start_line": 19 - }, - "While trying to retrieve the implicit argument 'syscall_ptr' in:" - ], - "start_col": 19, - "start_line": 352 - }, - "While expanding the reference 'syscall_ptr' in:" - ], - "start_col": 37, - "start_line": 18 - }, - "While trying to update the implicit return value 'syscall_ptr' in:" - ], - "start_col": 19, - "start_line": 352 - } - }, - "941": { - "accessible_scopes": [ - "openzeppelin.token.erc721.library", - "openzeppelin.token.erc721.library.ERC721_balances", - "openzeppelin.token.erc721.library.ERC721_balances.read" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 74, - "end_line": 19, - "input_file": { - "filename": "autogen/starknet/storage_var/ERC721_balances/impl.cairo" - }, - "start_col": 58, - "start_line": 19 - } - }, - "943": { - "accessible_scopes": [ - "openzeppelin.token.erc721.library", - "openzeppelin.token.erc721.library.ERC721_balances", - "openzeppelin.token.erc721.library.ERC721_balances.read" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 75, - "end_line": 19, - "input_file": { - "filename": "autogen/starknet/storage_var/ERC721_balances/impl.cairo" - }, - "start_col": 37, - "start_line": 19 - } - }, - "945": { - "accessible_scopes": [ - "openzeppelin.token.erc721.library", - "openzeppelin.token.erc721.library.ERC721_balances", - "openzeppelin.token.erc721.library.ERC721_balances.read" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 37, - "end_line": 352, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/starknet/common/syscalls.cairo" - }, - "parent_location": [ - { - "end_col": 75, - "end_line": 19, - "input_file": { - "filename": "autogen/starknet/storage_var/ERC721_balances/impl.cairo" - }, - "parent_location": [ - { - "end_col": 42, - "end_line": 21, - "input_file": { - "filename": "autogen/starknet/storage_var/ERC721_balances/impl.cairo" - }, - "start_col": 31, - "start_line": 21 - }, - "While expanding the reference 'syscall_ptr' in:" - ], - "start_col": 37, - "start_line": 19 - }, - "While trying to update the implicit return value 'syscall_ptr' in:" - ], - "start_col": 19, - "start_line": 352 - } - }, - "946": { - "accessible_scopes": [ - "openzeppelin.token.erc721.library", - "openzeppelin.token.erc721.library.ERC721_balances", - "openzeppelin.token.erc721.library.ERC721_balances.read" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 41, - "end_line": 7, - "input_file": { - "filename": "autogen/starknet/storage_var/ERC721_balances/decl.cairo" - }, - "parent_location": [ - { - "end_col": 43, - "end_line": 17, - "input_file": { - "filename": "autogen/starknet/storage_var/ERC721_balances/impl.cairo" - }, - "parent_location": [ - { - "end_col": 44, - "end_line": 22, - "input_file": { - "filename": "autogen/starknet/storage_var/ERC721_balances/impl.cairo" - }, - "start_col": 32, - "start_line": 22 - }, - "While expanding the reference 'pedersen_ptr' in:" - ], - "start_col": 30, - "start_line": 17 - }, - "While trying to update the implicit return value 'pedersen_ptr' in:" - ], - "start_col": 15, - "start_line": 7 - } - }, - "947": { - "accessible_scopes": [ - "openzeppelin.token.erc721.library", - "openzeppelin.token.erc721.library.ERC721_balances", - "openzeppelin.token.erc721.library.ERC721_balances.read" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 58, - "end_line": 7, - "input_file": { - "filename": "autogen/starknet/storage_var/ERC721_balances/decl.cairo" - }, - "parent_location": [ - { - "end_col": 43, - "end_line": 17, - "input_file": { - "filename": "autogen/starknet/storage_var/ERC721_balances/impl.cairo" - }, - "parent_location": [ - { - "end_col": 50, - "end_line": 23, - "input_file": { - "filename": "autogen/starknet/storage_var/ERC721_balances/impl.cairo" - }, - "start_col": 35, - "start_line": 23 - }, - "While expanding the reference 'range_check_ptr' in:" - ], - "start_col": 30, - "start_line": 17 - }, - "While trying to update the implicit return value 'range_check_ptr' in:" - ], - "start_col": 43, - "start_line": 7 - } - }, - "948": { - "accessible_scopes": [ - "openzeppelin.token.erc721.library", - "openzeppelin.token.erc721.library.ERC721_balances", - "openzeppelin.token.erc721.library.ERC721_balances.read" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 33, - "end_line": 18, - "input_file": { - "filename": "autogen/starknet/storage_var/ERC721_balances/impl.cairo" - }, - "parent_location": [ - { - "end_col": 64, - "end_line": 24, - "input_file": { - "filename": "autogen/starknet/storage_var/ERC721_balances/impl.cairo" - }, - "start_col": 45, - "start_line": 24 - }, - "While expanding the reference '__storage_var_temp0' in:" - ], - "start_col": 14, - "start_line": 18 - } - }, - "949": { - "accessible_scopes": [ - "openzeppelin.token.erc721.library", - "openzeppelin.token.erc721.library.ERC721_balances", - "openzeppelin.token.erc721.library.ERC721_balances.read" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 33, - "end_line": 19, - "input_file": { - "filename": "autogen/starknet/storage_var/ERC721_balances/impl.cairo" - }, - "parent_location": [ - { - "end_col": 64, - "end_line": 25, - "input_file": { - "filename": "autogen/starknet/storage_var/ERC721_balances/impl.cairo" - }, - "start_col": 45, - "start_line": 25 - }, - "While expanding the reference '__storage_var_temp1' in:" - ], - "start_col": 14, - "start_line": 19 - } - }, - "950": { - "accessible_scopes": [ - "openzeppelin.token.erc721.library", - "openzeppelin.token.erc721.library.ERC721_balances", - "openzeppelin.token.erc721.library.ERC721_balances.read" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 58, - "end_line": 26, - "input_file": { - "filename": "autogen/starknet/storage_var/ERC721_balances/impl.cairo" - }, - "start_col": 9, - "start_line": 26 - } - }, - "951": { - "accessible_scopes": [ - "openzeppelin.token.erc721.library", - "openzeppelin.token.erc721.library.ERC721_balances", - "openzeppelin.token.erc721.library.ERC721_balances.write" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 62, - "end_line": 29, - "input_file": { - "filename": "autogen/starknet/storage_var/ERC721_balances/impl.cairo" - }, - "parent_location": [ - { - "end_col": 41, - "end_line": 7, - "input_file": { - "filename": "autogen/starknet/storage_var/ERC721_balances/decl.cairo" - }, - "parent_location": [ - { - "end_col": 43, - "end_line": 32, - "input_file": { - "filename": "autogen/starknet/storage_var/ERC721_balances/impl.cairo" - }, - "start_col": 30, - "start_line": 32 - }, - "While trying to retrieve the implicit argument 'pedersen_ptr' in:" - ], - "start_col": 15, - "start_line": 7 - }, - "While expanding the reference 'pedersen_ptr' in:" - ], - "start_col": 36, - "start_line": 29 - } - }, - "952": { - "accessible_scopes": [ - "openzeppelin.token.erc721.library", - "openzeppelin.token.erc721.library.ERC721_balances", - "openzeppelin.token.erc721.library.ERC721_balances.write" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 79, - "end_line": 29, - "input_file": { - "filename": "autogen/starknet/storage_var/ERC721_balances/impl.cairo" - }, - "parent_location": [ - { - "end_col": 58, - "end_line": 7, - "input_file": { - "filename": "autogen/starknet/storage_var/ERC721_balances/decl.cairo" - }, - "parent_location": [ - { - "end_col": 43, - "end_line": 32, - "input_file": { - "filename": "autogen/starknet/storage_var/ERC721_balances/impl.cairo" - }, - "start_col": 30, - "start_line": 32 - }, - "While trying to retrieve the implicit argument 'range_check_ptr' in:" - ], - "start_col": 43, - "start_line": 7 - }, - "While expanding the reference 'range_check_ptr' in:" - ], - "start_col": 64, - "start_line": 29 - } - }, - "953": { - "accessible_scopes": [ - "openzeppelin.token.erc721.library", - "openzeppelin.token.erc721.library.ERC721_balances", - "openzeppelin.token.erc721.library.ERC721_balances.write" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 22, - "end_line": 30, - "input_file": { - "filename": "autogen/starknet/storage_var/ERC721_balances/impl.cairo" - }, - "parent_location": [ - { - "end_col": 42, - "end_line": 32, - "input_file": { - "filename": "autogen/starknet/storage_var/ERC721_balances/impl.cairo" - }, - "start_col": 35, - "start_line": 32 - }, - "While expanding the reference 'account' in:" - ], - "start_col": 9, - "start_line": 30 - } - }, - "954": { - "accessible_scopes": [ - "openzeppelin.token.erc721.library", - "openzeppelin.token.erc721.library.ERC721_balances", - "openzeppelin.token.erc721.library.ERC721_balances.write" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 43, - "end_line": 32, - "input_file": { - "filename": "autogen/starknet/storage_var/ERC721_balances/impl.cairo" - }, - "start_col": 30, - "start_line": 32 - } - }, - "956": { - "accessible_scopes": [ - "openzeppelin.token.erc721.library", - "openzeppelin.token.erc721.library.ERC721_balances", - "openzeppelin.token.erc721.library.ERC721_balances.write" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 34, - "end_line": 29, - "input_file": { - "filename": "autogen/starknet/storage_var/ERC721_balances/impl.cairo" - }, - "parent_location": [ - { - "end_col": 38, - "end_line": 370, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/starknet/common/syscalls.cairo" - }, - "parent_location": [ - { - "end_col": 80, - "end_line": 33, - "input_file": { - "filename": "autogen/starknet/storage_var/ERC721_balances/impl.cairo" - }, - "start_col": 9, - "start_line": 33 - }, - "While trying to retrieve the implicit argument 'syscall_ptr' in:" - ], - "start_col": 20, - "start_line": 370 - }, - "While expanding the reference 'syscall_ptr' in:" - ], - "start_col": 16, - "start_line": 29 - } - }, - "957": { - "accessible_scopes": [ - "openzeppelin.token.erc721.library", - "openzeppelin.token.erc721.library.ERC721_balances", - "openzeppelin.token.erc721.library.ERC721_balances.write" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 26, - "end_line": 32, - "input_file": { - "filename": "autogen/starknet/storage_var/ERC721_balances/impl.cairo" - }, - "parent_location": [ - { - "end_col": 43, - "end_line": 33, - "input_file": { - "filename": "autogen/starknet/storage_var/ERC721_balances/impl.cairo" - }, - "start_col": 31, - "start_line": 33 - }, - "While expanding the reference 'storage_addr' in:" - ], - "start_col": 14, - "start_line": 32 - } - }, - "958": { - "accessible_scopes": [ - "openzeppelin.token.erc721.library", - "openzeppelin.token.erc721.library.ERC721_balances", - "openzeppelin.token.erc721.library.ERC721_balances.write" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 79, - "end_line": 33, - "input_file": { - "filename": "autogen/starknet/storage_var/ERC721_balances/impl.cairo" - }, - "start_col": 55, - "start_line": 33 - } - }, - "959": { - "accessible_scopes": [ - "openzeppelin.token.erc721.library", - "openzeppelin.token.erc721.library.ERC721_balances", - "openzeppelin.token.erc721.library.ERC721_balances.write" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 80, - "end_line": 33, - "input_file": { - "filename": "autogen/starknet/storage_var/ERC721_balances/impl.cairo" - }, - "start_col": 9, - "start_line": 33 - } - }, - "961": { - "accessible_scopes": [ - "openzeppelin.token.erc721.library", - "openzeppelin.token.erc721.library.ERC721_balances", - "openzeppelin.token.erc721.library.ERC721_balances.write" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 47, - "end_line": 34, - "input_file": { - "filename": "autogen/starknet/storage_var/ERC721_balances/impl.cairo" - }, - "start_col": 31, - "start_line": 34 - } - }, - "963": { - "accessible_scopes": [ - "openzeppelin.token.erc721.library", - "openzeppelin.token.erc721.library.ERC721_balances", - "openzeppelin.token.erc721.library.ERC721_balances.write" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 79, - "end_line": 34, - "input_file": { - "filename": "autogen/starknet/storage_var/ERC721_balances/impl.cairo" - }, - "start_col": 55, - "start_line": 34 - } - }, - "964": { - "accessible_scopes": [ - "openzeppelin.token.erc721.library", - "openzeppelin.token.erc721.library.ERC721_balances", - "openzeppelin.token.erc721.library.ERC721_balances.write" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 80, - "end_line": 34, - "input_file": { - "filename": "autogen/starknet/storage_var/ERC721_balances/impl.cairo" - }, - "start_col": 9, - "start_line": 34 - } - }, - "966": { - "accessible_scopes": [ - "openzeppelin.token.erc721.library", - "openzeppelin.token.erc721.library.ERC721_balances", - "openzeppelin.token.erc721.library.ERC721_balances.write" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 41, - "end_line": 7, - "input_file": { - "filename": "autogen/starknet/storage_var/ERC721_balances/decl.cairo" - }, - "parent_location": [ - { - "end_col": 43, - "end_line": 32, - "input_file": { - "filename": "autogen/starknet/storage_var/ERC721_balances/impl.cairo" - }, - "parent_location": [ - { - "end_col": 62, - "end_line": 21, - "input_file": { - "filename": "autogen/starknet/storage_var/ERC721_balances/decl.cairo" - }, - "parent_location": [ - { - "end_col": 19, - "end_line": 35, - "input_file": { - "filename": "autogen/starknet/storage_var/ERC721_balances/impl.cairo" - }, - "start_col": 9, - "start_line": 35 - }, - "While trying to retrieve the implicit argument 'pedersen_ptr' in:" - ], - "start_col": 36, - "start_line": 21 - }, - "While expanding the reference 'pedersen_ptr' in:" - ], - "start_col": 30, - "start_line": 32 - }, - "While trying to update the implicit return value 'pedersen_ptr' in:" - ], - "start_col": 15, - "start_line": 7 - } - }, - "967": { - "accessible_scopes": [ - "openzeppelin.token.erc721.library", - "openzeppelin.token.erc721.library.ERC721_balances", - "openzeppelin.token.erc721.library.ERC721_balances.write" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 58, - "end_line": 7, - "input_file": { - "filename": "autogen/starknet/storage_var/ERC721_balances/decl.cairo" - }, - "parent_location": [ - { - "end_col": 43, - "end_line": 32, - "input_file": { - "filename": "autogen/starknet/storage_var/ERC721_balances/impl.cairo" - }, - "parent_location": [ - { - "end_col": 79, - "end_line": 21, - "input_file": { - "filename": "autogen/starknet/storage_var/ERC721_balances/decl.cairo" - }, - "parent_location": [ - { - "end_col": 19, - "end_line": 35, - "input_file": { - "filename": "autogen/starknet/storage_var/ERC721_balances/impl.cairo" - }, - "start_col": 9, - "start_line": 35 - }, - "While trying to retrieve the implicit argument 'range_check_ptr' in:" - ], - "start_col": 64, - "start_line": 21 - }, - "While expanding the reference 'range_check_ptr' in:" - ], - "start_col": 30, - "start_line": 32 - }, - "While trying to update the implicit return value 'range_check_ptr' in:" - ], - "start_col": 43, - "start_line": 7 - } - }, - "968": { - "accessible_scopes": [ - "openzeppelin.token.erc721.library", - "openzeppelin.token.erc721.library.ERC721_balances", - "openzeppelin.token.erc721.library.ERC721_balances.write" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 19, - "end_line": 35, - "input_file": { - "filename": "autogen/starknet/storage_var/ERC721_balances/impl.cairo" - }, - "start_col": 9, - "start_line": 35 - } - }, - "969": { - "accessible_scopes": [ - "openzeppelin.token.erc721.library", - "openzeppelin.token.erc721.library.ERC721_token_approvals", - "openzeppelin.token.erc721.library.ERC721_token_approvals.addr" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 41, - "end_line": 7, - "input_file": { - "filename": "autogen/starknet/storage_var/ERC721_token_approvals/impl.cairo" - }, - "parent_location": [ - { - "end_col": 48, - "end_line": 9, - "input_file": { - "filename": "autogen/starknet/storage_var/ERC721_token_approvals/impl.cairo" - }, - "start_col": 36, - "start_line": 9 - }, - "While expanding the reference 'pedersen_ptr' in:" - ], - "start_col": 15, - "start_line": 7 - } - }, - "970": { - "accessible_scopes": [ - "openzeppelin.token.erc721.library", - "openzeppelin.token.erc721.library.ERC721_token_approvals", - "openzeppelin.token.erc721.library.ERC721_token_approvals.addr" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 95, - "end_line": 8, - "input_file": { - "filename": "autogen/starknet/storage_var/ERC721_token_approvals/impl.cairo" - }, - "parent_location": [ - { - "end_col": 53, - "end_line": 9, - "input_file": { - "filename": "autogen/starknet/storage_var/ERC721_token_approvals/impl.cairo" - }, - "start_col": 50, - "start_line": 9 - }, - "While expanding the reference 'res' in:" - ], - "start_col": 19, - "start_line": 8 - } - }, - "972": { - "accessible_scopes": [ - "openzeppelin.token.erc721.library", - "openzeppelin.token.erc721.library.ERC721_token_approvals", - "openzeppelin.token.erc721.library.ERC721_token_approvals.addr" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 80, - "end_line": 9, - "input_file": { - "filename": "autogen/starknet/storage_var/ERC721_token_approvals/impl.cairo" - }, - "start_col": 55, - "start_line": 9 - } - }, - "973": { - "accessible_scopes": [ - "openzeppelin.token.erc721.library", - "openzeppelin.token.erc721.library.ERC721_token_approvals", - "openzeppelin.token.erc721.library.ERC721_token_approvals.addr" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 81, - "end_line": 9, - "input_file": { - "filename": "autogen/starknet/storage_var/ERC721_token_approvals/impl.cairo" - }, - "start_col": 21, - "start_line": 9 - } - }, - "975": { - "accessible_scopes": [ - "openzeppelin.token.erc721.library", - "openzeppelin.token.erc721.library.ERC721_token_approvals", - "openzeppelin.token.erc721.library.ERC721_token_approvals.addr" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 80, - "end_line": 10, - "input_file": { - "filename": "autogen/starknet/storage_var/ERC721_token_approvals/impl.cairo" - }, - "start_col": 55, - "start_line": 10 - } - }, - "976": { - "accessible_scopes": [ - "openzeppelin.token.erc721.library", - "openzeppelin.token.erc721.library.ERC721_token_approvals", - "openzeppelin.token.erc721.library.ERC721_token_approvals.addr" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 81, - "end_line": 10, - "input_file": { - "filename": "autogen/starknet/storage_var/ERC721_token_approvals/impl.cairo" - }, - "start_col": 21, - "start_line": 10 - } - }, - "978": { - "accessible_scopes": [ - "openzeppelin.token.erc721.library", - "openzeppelin.token.erc721.library.ERC721_token_approvals", - "openzeppelin.token.erc721.library.ERC721_token_approvals.addr" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 58, - "end_line": 7, - "input_file": { - "filename": "autogen/starknet/storage_var/ERC721_token_approvals/impl.cairo" - }, - "parent_location": [ - { - "end_col": 39, - "end_line": 12, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/starknet/common/storage.cairo" - }, - "parent_location": [ - { - "end_col": 48, - "end_line": 11, - "input_file": { - "filename": "autogen/starknet/storage_var/ERC721_token_approvals/impl.cairo" - }, - "start_col": 21, - "start_line": 11 - }, - "While trying to retrieve the implicit argument 'range_check_ptr' in:" - ], - "start_col": 24, - "start_line": 12 - }, - "While expanding the reference 'range_check_ptr' in:" - ], - "start_col": 43, - "start_line": 7 - } - }, - "979": { - "accessible_scopes": [ - "openzeppelin.token.erc721.library", - "openzeppelin.token.erc721.library.ERC721_token_approvals", - "openzeppelin.token.erc721.library.ERC721_token_approvals.addr" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 17, - "end_line": 10, - "input_file": { - "filename": "autogen/starknet/storage_var/ERC721_token_approvals/impl.cairo" - }, - "parent_location": [ - { - "end_col": 47, - "end_line": 11, - "input_file": { - "filename": "autogen/starknet/storage_var/ERC721_token_approvals/impl.cairo" - }, - "start_col": 44, - "start_line": 11 - }, - "While expanding the reference 'res' in:" - ], - "start_col": 14, - "start_line": 10 - } - }, - "980": { - "accessible_scopes": [ - "openzeppelin.token.erc721.library", - "openzeppelin.token.erc721.library.ERC721_token_approvals", - "openzeppelin.token.erc721.library.ERC721_token_approvals.addr" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 48, - "end_line": 11, - "input_file": { - "filename": "autogen/starknet/storage_var/ERC721_token_approvals/impl.cairo" - }, - "start_col": 21, - "start_line": 11 - } - }, - "982": { - "accessible_scopes": [ - "openzeppelin.token.erc721.library", - "openzeppelin.token.erc721.library.ERC721_token_approvals", - "openzeppelin.token.erc721.library.ERC721_token_approvals.addr" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 48, - "end_line": 10, - "input_file": { - "filename": "autogen/starknet/storage_var/ERC721_token_approvals/impl.cairo" - }, - "parent_location": [ - { - "end_col": 41, - "end_line": 7, - "input_file": { - "filename": "autogen/starknet/storage_var/ERC721_token_approvals/decl.cairo" - }, - "parent_location": [ - { - "end_col": 26, - "end_line": 12, - "input_file": { - "filename": "autogen/starknet/storage_var/ERC721_token_approvals/impl.cairo" - }, - "start_col": 9, - "start_line": 12 - }, - "While trying to retrieve the implicit argument 'pedersen_ptr' in:" - ], - "start_col": 15, - "start_line": 7 - }, - "While expanding the reference 'pedersen_ptr' in:" - ], - "start_col": 36, - "start_line": 10 - } - }, - "983": { - "accessible_scopes": [ - "openzeppelin.token.erc721.library", - "openzeppelin.token.erc721.library.ERC721_token_approvals", - "openzeppelin.token.erc721.library.ERC721_token_approvals.addr" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 39, - "end_line": 12, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/starknet/common/storage.cairo" - }, - "parent_location": [ - { - "end_col": 48, - "end_line": 11, - "input_file": { - "filename": "autogen/starknet/storage_var/ERC721_token_approvals/impl.cairo" - }, - "parent_location": [ - { - "end_col": 58, - "end_line": 7, - "input_file": { - "filename": "autogen/starknet/storage_var/ERC721_token_approvals/decl.cairo" - }, - "parent_location": [ - { - "end_col": 26, - "end_line": 12, - "input_file": { - "filename": "autogen/starknet/storage_var/ERC721_token_approvals/impl.cairo" - }, - "start_col": 9, - "start_line": 12 - }, - "While trying to retrieve the implicit argument 'range_check_ptr' in:" - ], - "start_col": 43, - "start_line": 7 - }, - "While expanding the reference 'range_check_ptr' in:" - ], - "start_col": 21, - "start_line": 11 - }, - "While trying to update the implicit return value 'range_check_ptr' in:" - ], - "start_col": 24, - "start_line": 12 - } - }, - "984": { - "accessible_scopes": [ - "openzeppelin.token.erc721.library", - "openzeppelin.token.erc721.library.ERC721_token_approvals", - "openzeppelin.token.erc721.library.ERC721_token_approvals.addr" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 17, - "end_line": 11, - "input_file": { - "filename": "autogen/starknet/storage_var/ERC721_token_approvals/impl.cairo" - }, - "parent_location": [ - { - "end_col": 24, - "end_line": 12, - "input_file": { - "filename": "autogen/starknet/storage_var/ERC721_token_approvals/impl.cairo" - }, - "start_col": 21, - "start_line": 12 - }, - "While expanding the reference 'res' in:" - ], - "start_col": 14, - "start_line": 11 - } - }, - "985": { - "accessible_scopes": [ - "openzeppelin.token.erc721.library", - "openzeppelin.token.erc721.library.ERC721_token_approvals", - "openzeppelin.token.erc721.library.ERC721_token_approvals.addr" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 26, - "end_line": 12, - "input_file": { - "filename": "autogen/starknet/storage_var/ERC721_token_approvals/impl.cairo" - }, - "start_col": 9, - "start_line": 12 - } - }, - "986": { - "accessible_scopes": [ - "openzeppelin.token.erc721.library", - "openzeppelin.token.erc721.library.ERC721_token_approvals", - "openzeppelin.token.erc721.library.ERC721_token_approvals.read" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 61, - "end_line": 15, - "input_file": { - "filename": "autogen/starknet/storage_var/ERC721_token_approvals/impl.cairo" - }, - "parent_location": [ - { - "end_col": 41, - "end_line": 7, - "input_file": { - "filename": "autogen/starknet/storage_var/ERC721_token_approvals/decl.cairo" - }, - "parent_location": [ - { - "end_col": 44, - "end_line": 18, - "input_file": { - "filename": "autogen/starknet/storage_var/ERC721_token_approvals/impl.cairo" - }, - "start_col": 30, - "start_line": 18 - }, - "While trying to retrieve the implicit argument 'pedersen_ptr' in:" - ], - "start_col": 15, - "start_line": 7 - }, - "While expanding the reference 'pedersen_ptr' in:" - ], - "start_col": 35, - "start_line": 15 - } - }, - "987": { - "accessible_scopes": [ - "openzeppelin.token.erc721.library", - "openzeppelin.token.erc721.library.ERC721_token_approvals", - "openzeppelin.token.erc721.library.ERC721_token_approvals.read" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 78, - "end_line": 15, - "input_file": { - "filename": "autogen/starknet/storage_var/ERC721_token_approvals/impl.cairo" - }, - "parent_location": [ - { - "end_col": 58, - "end_line": 7, - "input_file": { - "filename": "autogen/starknet/storage_var/ERC721_token_approvals/decl.cairo" - }, - "parent_location": [ - { - "end_col": 44, - "end_line": 18, - "input_file": { - "filename": "autogen/starknet/storage_var/ERC721_token_approvals/impl.cairo" - }, - "start_col": 30, - "start_line": 18 - }, - "While trying to retrieve the implicit argument 'range_check_ptr' in:" - ], - "start_col": 43, - "start_line": 7 - }, - "While expanding the reference 'range_check_ptr' in:" - ], - "start_col": 63, - "start_line": 15 - } - }, - "988": { - "accessible_scopes": [ - "openzeppelin.token.erc721.library", - "openzeppelin.token.erc721.library.ERC721_token_approvals", - "openzeppelin.token.erc721.library.ERC721_token_approvals.read" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 26, - "end_line": 16, - "input_file": { - "filename": "autogen/starknet/storage_var/ERC721_token_approvals/impl.cairo" - }, - "parent_location": [ - { - "end_col": 43, - "end_line": 18, - "input_file": { - "filename": "autogen/starknet/storage_var/ERC721_token_approvals/impl.cairo" - }, - "start_col": 35, - "start_line": 18 - }, - "While expanding the reference 'token_id' in:" - ], - "start_col": 9, - "start_line": 16 - } - }, - "989": { - "accessible_scopes": [ - "openzeppelin.token.erc721.library", - "openzeppelin.token.erc721.library.ERC721_token_approvals", - "openzeppelin.token.erc721.library.ERC721_token_approvals.read" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 26, - "end_line": 16, - "input_file": { - "filename": "autogen/starknet/storage_var/ERC721_token_approvals/impl.cairo" - }, - "parent_location": [ - { - "end_col": 43, - "end_line": 18, - "input_file": { - "filename": "autogen/starknet/storage_var/ERC721_token_approvals/impl.cairo" - }, - "start_col": 35, - "start_line": 18 - }, - "While expanding the reference 'token_id' in:" - ], - "start_col": 9, - "start_line": 16 - } - }, - "990": { - "accessible_scopes": [ - "openzeppelin.token.erc721.library", - "openzeppelin.token.erc721.library.ERC721_token_approvals", - "openzeppelin.token.erc721.library.ERC721_token_approvals.read" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 44, - "end_line": 18, - "input_file": { - "filename": "autogen/starknet/storage_var/ERC721_token_approvals/impl.cairo" - }, - "start_col": 30, - "start_line": 18 - } - }, - "992": { - "accessible_scopes": [ - "openzeppelin.token.erc721.library", - "openzeppelin.token.erc721.library.ERC721_token_approvals", - "openzeppelin.token.erc721.library.ERC721_token_approvals.read" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 33, - "end_line": 15, - "input_file": { - "filename": "autogen/starknet/storage_var/ERC721_token_approvals/impl.cairo" - }, - "parent_location": [ - { - "end_col": 37, - "end_line": 352, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/starknet/common/syscalls.cairo" - }, - "parent_location": [ - { - "end_col": 75, - "end_line": 19, - "input_file": { - "filename": "autogen/starknet/storage_var/ERC721_token_approvals/impl.cairo" - }, - "start_col": 37, - "start_line": 19 - }, - "While trying to retrieve the implicit argument 'syscall_ptr' in:" - ], - "start_col": 19, - "start_line": 352 - }, - "While expanding the reference 'syscall_ptr' in:" - ], - "start_col": 15, - "start_line": 15 - } - }, - "993": { - "accessible_scopes": [ - "openzeppelin.token.erc721.library", - "openzeppelin.token.erc721.library.ERC721_token_approvals", - "openzeppelin.token.erc721.library.ERC721_token_approvals.read" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 26, - "end_line": 18, - "input_file": { - "filename": "autogen/starknet/storage_var/ERC721_token_approvals/impl.cairo" - }, - "parent_location": [ - { - "end_col": 70, - "end_line": 19, - "input_file": { - "filename": "autogen/starknet/storage_var/ERC721_token_approvals/impl.cairo" - }, - "start_col": 58, - "start_line": 19 - }, - "While expanding the reference 'storage_addr' in:" - ], - "start_col": 14, - "start_line": 18 - } - }, - "994": { - "accessible_scopes": [ - "openzeppelin.token.erc721.library", - "openzeppelin.token.erc721.library.ERC721_token_approvals", - "openzeppelin.token.erc721.library.ERC721_token_approvals.read" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 75, - "end_line": 19, - "input_file": { - "filename": "autogen/starknet/storage_var/ERC721_token_approvals/impl.cairo" - }, - "start_col": 37, - "start_line": 19 - } - }, - "996": { - "accessible_scopes": [ - "openzeppelin.token.erc721.library", - "openzeppelin.token.erc721.library.ERC721_token_approvals", - "openzeppelin.token.erc721.library.ERC721_token_approvals.read" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 37, - "end_line": 352, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/starknet/common/syscalls.cairo" - }, - "parent_location": [ - { - "end_col": 75, - "end_line": 19, - "input_file": { - "filename": "autogen/starknet/storage_var/ERC721_token_approvals/impl.cairo" - }, - "parent_location": [ - { - "end_col": 42, - "end_line": 21, - "input_file": { - "filename": "autogen/starknet/storage_var/ERC721_token_approvals/impl.cairo" - }, - "start_col": 31, - "start_line": 21 - }, - "While expanding the reference 'syscall_ptr' in:" - ], - "start_col": 37, - "start_line": 19 - }, - "While trying to update the implicit return value 'syscall_ptr' in:" - ], - "start_col": 19, - "start_line": 352 - } - }, - "997": { - "accessible_scopes": [ - "openzeppelin.token.erc721.library", - "openzeppelin.token.erc721.library.ERC721_token_approvals", - "openzeppelin.token.erc721.library.ERC721_token_approvals.read" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 41, - "end_line": 7, - "input_file": { - "filename": "autogen/starknet/storage_var/ERC721_token_approvals/decl.cairo" - }, - "parent_location": [ - { - "end_col": 44, - "end_line": 18, - "input_file": { - "filename": "autogen/starknet/storage_var/ERC721_token_approvals/impl.cairo" - }, - "parent_location": [ - { - "end_col": 44, - "end_line": 22, - "input_file": { - "filename": "autogen/starknet/storage_var/ERC721_token_approvals/impl.cairo" - }, - "start_col": 32, - "start_line": 22 - }, - "While expanding the reference 'pedersen_ptr' in:" - ], - "start_col": 30, - "start_line": 18 - }, - "While trying to update the implicit return value 'pedersen_ptr' in:" - ], - "start_col": 15, - "start_line": 7 - } - }, - "998": { - "accessible_scopes": [ - "openzeppelin.token.erc721.library", - "openzeppelin.token.erc721.library.ERC721_token_approvals", - "openzeppelin.token.erc721.library.ERC721_token_approvals.read" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 58, - "end_line": 7, - "input_file": { - "filename": "autogen/starknet/storage_var/ERC721_token_approvals/decl.cairo" - }, - "parent_location": [ - { - "end_col": 44, - "end_line": 18, - "input_file": { - "filename": "autogen/starknet/storage_var/ERC721_token_approvals/impl.cairo" - }, - "parent_location": [ - { - "end_col": 50, - "end_line": 23, - "input_file": { - "filename": "autogen/starknet/storage_var/ERC721_token_approvals/impl.cairo" - }, - "start_col": 35, - "start_line": 23 - }, - "While expanding the reference 'range_check_ptr' in:" - ], - "start_col": 30, - "start_line": 18 - }, - "While trying to update the implicit return value 'range_check_ptr' in:" - ], - "start_col": 43, - "start_line": 7 - } - }, - "999": { - "accessible_scopes": [ - "openzeppelin.token.erc721.library", - "openzeppelin.token.erc721.library.ERC721_token_approvals", - "openzeppelin.token.erc721.library.ERC721_token_approvals.read" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 33, - "end_line": 19, - "input_file": { - "filename": "autogen/starknet/storage_var/ERC721_token_approvals/impl.cairo" - }, - "parent_location": [ - { - "end_col": 64, - "end_line": 24, - "input_file": { - "filename": "autogen/starknet/storage_var/ERC721_token_approvals/impl.cairo" - }, - "start_col": 45, - "start_line": 24 - }, - "While expanding the reference '__storage_var_temp0' in:" - ], - "start_col": 14, - "start_line": 19 - } - }, - "1000": { - "accessible_scopes": [ - "openzeppelin.token.erc721.library", - "openzeppelin.token.erc721.library.ERC721_token_approvals", - "openzeppelin.token.erc721.library.ERC721_token_approvals.read" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 55, - "end_line": 25, - "input_file": { - "filename": "autogen/starknet/storage_var/ERC721_token_approvals/impl.cairo" - }, - "start_col": 9, - "start_line": 25 - } - }, - "1001": { - "accessible_scopes": [ - "openzeppelin.token.erc721.library", - "openzeppelin.token.erc721.library.ERC721_token_approvals", - "openzeppelin.token.erc721.library.ERC721_token_approvals.write" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 62, - "end_line": 28, - "input_file": { - "filename": "autogen/starknet/storage_var/ERC721_token_approvals/impl.cairo" - }, - "parent_location": [ - { - "end_col": 41, - "end_line": 7, - "input_file": { - "filename": "autogen/starknet/storage_var/ERC721_token_approvals/decl.cairo" - }, - "parent_location": [ - { - "end_col": 44, - "end_line": 31, - "input_file": { - "filename": "autogen/starknet/storage_var/ERC721_token_approvals/impl.cairo" - }, - "start_col": 30, - "start_line": 31 - }, - "While trying to retrieve the implicit argument 'pedersen_ptr' in:" - ], - "start_col": 15, - "start_line": 7 - }, - "While expanding the reference 'pedersen_ptr' in:" - ], - "start_col": 36, - "start_line": 28 - } - }, - "1002": { - "accessible_scopes": [ - "openzeppelin.token.erc721.library", - "openzeppelin.token.erc721.library.ERC721_token_approvals", - "openzeppelin.token.erc721.library.ERC721_token_approvals.write" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 79, - "end_line": 28, - "input_file": { - "filename": "autogen/starknet/storage_var/ERC721_token_approvals/impl.cairo" - }, - "parent_location": [ - { - "end_col": 58, - "end_line": 7, - "input_file": { - "filename": "autogen/starknet/storage_var/ERC721_token_approvals/decl.cairo" - }, - "parent_location": [ - { - "end_col": 44, - "end_line": 31, - "input_file": { - "filename": "autogen/starknet/storage_var/ERC721_token_approvals/impl.cairo" - }, - "start_col": 30, - "start_line": 31 - }, - "While trying to retrieve the implicit argument 'range_check_ptr' in:" - ], - "start_col": 43, - "start_line": 7 - }, - "While expanding the reference 'range_check_ptr' in:" - ], - "start_col": 64, - "start_line": 28 - } - }, - "1003": { - "accessible_scopes": [ - "openzeppelin.token.erc721.library", - "openzeppelin.token.erc721.library.ERC721_token_approvals", - "openzeppelin.token.erc721.library.ERC721_token_approvals.write" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 26, - "end_line": 29, - "input_file": { - "filename": "autogen/starknet/storage_var/ERC721_token_approvals/impl.cairo" - }, - "parent_location": [ - { - "end_col": 43, - "end_line": 31, - "input_file": { - "filename": "autogen/starknet/storage_var/ERC721_token_approvals/impl.cairo" - }, - "start_col": 35, - "start_line": 31 - }, - "While expanding the reference 'token_id' in:" - ], - "start_col": 9, - "start_line": 29 - } - }, - "1004": { - "accessible_scopes": [ - "openzeppelin.token.erc721.library", - "openzeppelin.token.erc721.library.ERC721_token_approvals", - "openzeppelin.token.erc721.library.ERC721_token_approvals.write" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 26, - "end_line": 29, - "input_file": { - "filename": "autogen/starknet/storage_var/ERC721_token_approvals/impl.cairo" - }, - "parent_location": [ - { - "end_col": 43, - "end_line": 31, - "input_file": { - "filename": "autogen/starknet/storage_var/ERC721_token_approvals/impl.cairo" - }, - "start_col": 35, - "start_line": 31 - }, - "While expanding the reference 'token_id' in:" - ], - "start_col": 9, - "start_line": 29 - } - }, - "1005": { - "accessible_scopes": [ - "openzeppelin.token.erc721.library", - "openzeppelin.token.erc721.library.ERC721_token_approvals", - "openzeppelin.token.erc721.library.ERC721_token_approvals.write" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 44, - "end_line": 31, - "input_file": { - "filename": "autogen/starknet/storage_var/ERC721_token_approvals/impl.cairo" - }, - "start_col": 30, - "start_line": 31 - } - }, - "1007": { - "accessible_scopes": [ - "openzeppelin.token.erc721.library", - "openzeppelin.token.erc721.library.ERC721_token_approvals", - "openzeppelin.token.erc721.library.ERC721_token_approvals.write" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 34, - "end_line": 28, - "input_file": { - "filename": "autogen/starknet/storage_var/ERC721_token_approvals/impl.cairo" - }, - "parent_location": [ - { - "end_col": 38, - "end_line": 370, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/starknet/common/syscalls.cairo" - }, - "parent_location": [ - { - "end_col": 80, - "end_line": 32, - "input_file": { - "filename": "autogen/starknet/storage_var/ERC721_token_approvals/impl.cairo" - }, - "start_col": 9, - "start_line": 32 - }, - "While trying to retrieve the implicit argument 'syscall_ptr' in:" - ], - "start_col": 20, - "start_line": 370 - }, - "While expanding the reference 'syscall_ptr' in:" - ], - "start_col": 16, - "start_line": 28 - } - }, - "1008": { - "accessible_scopes": [ - "openzeppelin.token.erc721.library", - "openzeppelin.token.erc721.library.ERC721_token_approvals", - "openzeppelin.token.erc721.library.ERC721_token_approvals.write" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 26, - "end_line": 31, - "input_file": { - "filename": "autogen/starknet/storage_var/ERC721_token_approvals/impl.cairo" - }, - "parent_location": [ - { - "end_col": 43, - "end_line": 32, - "input_file": { - "filename": "autogen/starknet/storage_var/ERC721_token_approvals/impl.cairo" - }, - "start_col": 31, - "start_line": 32 - }, - "While expanding the reference 'storage_addr' in:" - ], - "start_col": 14, - "start_line": 31 - } - }, - "1009": { - "accessible_scopes": [ - "openzeppelin.token.erc721.library", - "openzeppelin.token.erc721.library.ERC721_token_approvals", - "openzeppelin.token.erc721.library.ERC721_token_approvals.write" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 79, - "end_line": 32, - "input_file": { - "filename": "autogen/starknet/storage_var/ERC721_token_approvals/impl.cairo" - }, - "start_col": 55, - "start_line": 32 - } - }, - "1010": { - "accessible_scopes": [ - "openzeppelin.token.erc721.library", - "openzeppelin.token.erc721.library.ERC721_token_approvals", - "openzeppelin.token.erc721.library.ERC721_token_approvals.write" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 80, - "end_line": 32, - "input_file": { - "filename": "autogen/starknet/storage_var/ERC721_token_approvals/impl.cairo" - }, - "start_col": 9, - "start_line": 32 - } - }, - "1012": { - "accessible_scopes": [ - "openzeppelin.token.erc721.library", - "openzeppelin.token.erc721.library.ERC721_token_approvals", - "openzeppelin.token.erc721.library.ERC721_token_approvals.write" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 41, - "end_line": 7, - "input_file": { - "filename": "autogen/starknet/storage_var/ERC721_token_approvals/decl.cairo" - }, - "parent_location": [ - { - "end_col": 44, - "end_line": 31, - "input_file": { - "filename": "autogen/starknet/storage_var/ERC721_token_approvals/impl.cairo" - }, - "parent_location": [ - { - "end_col": 62, - "end_line": 21, - "input_file": { - "filename": "autogen/starknet/storage_var/ERC721_token_approvals/decl.cairo" - }, - "parent_location": [ - { - "end_col": 19, - "end_line": 33, - "input_file": { - "filename": "autogen/starknet/storage_var/ERC721_token_approvals/impl.cairo" - }, - "start_col": 9, - "start_line": 33 - }, - "While trying to retrieve the implicit argument 'pedersen_ptr' in:" - ], - "start_col": 36, - "start_line": 21 - }, - "While expanding the reference 'pedersen_ptr' in:" - ], - "start_col": 30, - "start_line": 31 - }, - "While trying to update the implicit return value 'pedersen_ptr' in:" - ], - "start_col": 15, - "start_line": 7 - } - }, - "1013": { - "accessible_scopes": [ - "openzeppelin.token.erc721.library", - "openzeppelin.token.erc721.library.ERC721_token_approvals", - "openzeppelin.token.erc721.library.ERC721_token_approvals.write" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 58, - "end_line": 7, - "input_file": { - "filename": "autogen/starknet/storage_var/ERC721_token_approvals/decl.cairo" - }, - "parent_location": [ - { - "end_col": 44, - "end_line": 31, - "input_file": { - "filename": "autogen/starknet/storage_var/ERC721_token_approvals/impl.cairo" - }, - "parent_location": [ - { - "end_col": 79, - "end_line": 21, - "input_file": { - "filename": "autogen/starknet/storage_var/ERC721_token_approvals/decl.cairo" - }, - "parent_location": [ - { - "end_col": 19, - "end_line": 33, - "input_file": { - "filename": "autogen/starknet/storage_var/ERC721_token_approvals/impl.cairo" - }, - "start_col": 9, - "start_line": 33 - }, - "While trying to retrieve the implicit argument 'range_check_ptr' in:" - ], - "start_col": 64, - "start_line": 21 - }, - "While expanding the reference 'range_check_ptr' in:" - ], - "start_col": 30, - "start_line": 31 - }, - "While trying to update the implicit return value 'range_check_ptr' in:" - ], - "start_col": 43, - "start_line": 7 - } - }, - "1014": { - "accessible_scopes": [ - "openzeppelin.token.erc721.library", - "openzeppelin.token.erc721.library.ERC721_token_approvals", - "openzeppelin.token.erc721.library.ERC721_token_approvals.write" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 19, - "end_line": 33, - "input_file": { - "filename": "autogen/starknet/storage_var/ERC721_token_approvals/impl.cairo" - }, - "start_col": 9, - "start_line": 33 - } - }, - "1015": { - "accessible_scopes": [ - "openzeppelin.token.erc721.library", - "openzeppelin.token.erc721.library.ERC721_operator_approvals", - "openzeppelin.token.erc721.library.ERC721_operator_approvals.addr" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 41, - "end_line": 7, - "input_file": { - "filename": "autogen/starknet/storage_var/ERC721_operator_approvals/impl.cairo" - }, - "parent_location": [ - { - "end_col": 48, - "end_line": 11, - "input_file": { - "filename": "autogen/starknet/storage_var/ERC721_operator_approvals/impl.cairo" - }, - "start_col": 36, - "start_line": 11 - }, - "While expanding the reference 'pedersen_ptr' in:" - ], - "start_col": 15, - "start_line": 7 - } - }, - "1016": { - "accessible_scopes": [ - "openzeppelin.token.erc721.library", - "openzeppelin.token.erc721.library.ERC721_operator_approvals", - "openzeppelin.token.erc721.library.ERC721_operator_approvals.addr" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 95, - "end_line": 10, - "input_file": { - "filename": "autogen/starknet/storage_var/ERC721_operator_approvals/impl.cairo" - }, - "parent_location": [ - { - "end_col": 53, - "end_line": 11, - "input_file": { - "filename": "autogen/starknet/storage_var/ERC721_operator_approvals/impl.cairo" - }, - "start_col": 50, - "start_line": 11 - }, - "While expanding the reference 'res' in:" - ], - "start_col": 19, - "start_line": 10 - } - }, - "1018": { - "accessible_scopes": [ - "openzeppelin.token.erc721.library", - "openzeppelin.token.erc721.library.ERC721_operator_approvals", - "openzeppelin.token.erc721.library.ERC721_operator_approvals.addr" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 77, - "end_line": 11, - "input_file": { - "filename": "autogen/starknet/storage_var/ERC721_operator_approvals/impl.cairo" - }, - "start_col": 55, - "start_line": 11 - } - }, - "1019": { - "accessible_scopes": [ - "openzeppelin.token.erc721.library", - "openzeppelin.token.erc721.library.ERC721_operator_approvals", - "openzeppelin.token.erc721.library.ERC721_operator_approvals.addr" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 78, - "end_line": 11, - "input_file": { - "filename": "autogen/starknet/storage_var/ERC721_operator_approvals/impl.cairo" - }, - "start_col": 21, - "start_line": 11 - } - }, - "1021": { - "accessible_scopes": [ - "openzeppelin.token.erc721.library", - "openzeppelin.token.erc721.library.ERC721_operator_approvals", - "openzeppelin.token.erc721.library.ERC721_operator_approvals.addr" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 80, - "end_line": 12, - "input_file": { - "filename": "autogen/starknet/storage_var/ERC721_operator_approvals/impl.cairo" - }, - "start_col": 55, - "start_line": 12 - } - }, - "1022": { - "accessible_scopes": [ - "openzeppelin.token.erc721.library", - "openzeppelin.token.erc721.library.ERC721_operator_approvals", - "openzeppelin.token.erc721.library.ERC721_operator_approvals.addr" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 81, - "end_line": 12, - "input_file": { - "filename": "autogen/starknet/storage_var/ERC721_operator_approvals/impl.cairo" - }, - "start_col": 21, - "start_line": 12 - } - }, - "1024": { - "accessible_scopes": [ - "openzeppelin.token.erc721.library", - "openzeppelin.token.erc721.library.ERC721_operator_approvals", - "openzeppelin.token.erc721.library.ERC721_operator_approvals.addr" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 58, - "end_line": 7, - "input_file": { - "filename": "autogen/starknet/storage_var/ERC721_operator_approvals/impl.cairo" - }, - "parent_location": [ - { - "end_col": 39, - "end_line": 12, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/starknet/common/storage.cairo" - }, - "parent_location": [ - { - "end_col": 48, - "end_line": 13, - "input_file": { - "filename": "autogen/starknet/storage_var/ERC721_operator_approvals/impl.cairo" - }, - "start_col": 21, - "start_line": 13 - }, - "While trying to retrieve the implicit argument 'range_check_ptr' in:" - ], - "start_col": 24, - "start_line": 12 - }, - "While expanding the reference 'range_check_ptr' in:" - ], - "start_col": 43, - "start_line": 7 - } - }, - "1025": { - "accessible_scopes": [ - "openzeppelin.token.erc721.library", - "openzeppelin.token.erc721.library.ERC721_operator_approvals", - "openzeppelin.token.erc721.library.ERC721_operator_approvals.addr" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 17, - "end_line": 12, - "input_file": { - "filename": "autogen/starknet/storage_var/ERC721_operator_approvals/impl.cairo" - }, - "parent_location": [ - { - "end_col": 47, - "end_line": 13, - "input_file": { - "filename": "autogen/starknet/storage_var/ERC721_operator_approvals/impl.cairo" - }, - "start_col": 44, - "start_line": 13 - }, - "While expanding the reference 'res' in:" - ], - "start_col": 14, - "start_line": 12 - } - }, - "1026": { - "accessible_scopes": [ - "openzeppelin.token.erc721.library", - "openzeppelin.token.erc721.library.ERC721_operator_approvals", - "openzeppelin.token.erc721.library.ERC721_operator_approvals.addr" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 48, - "end_line": 13, - "input_file": { - "filename": "autogen/starknet/storage_var/ERC721_operator_approvals/impl.cairo" - }, - "start_col": 21, - "start_line": 13 - } - }, - "1028": { - "accessible_scopes": [ - "openzeppelin.token.erc721.library", - "openzeppelin.token.erc721.library.ERC721_operator_approvals", - "openzeppelin.token.erc721.library.ERC721_operator_approvals.addr" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 48, - "end_line": 12, - "input_file": { - "filename": "autogen/starknet/storage_var/ERC721_operator_approvals/impl.cairo" - }, - "parent_location": [ - { - "end_col": 41, - "end_line": 7, - "input_file": { - "filename": "autogen/starknet/storage_var/ERC721_operator_approvals/decl.cairo" - }, - "parent_location": [ - { - "end_col": 26, - "end_line": 14, - "input_file": { - "filename": "autogen/starknet/storage_var/ERC721_operator_approvals/impl.cairo" - }, - "start_col": 9, - "start_line": 14 - }, - "While trying to retrieve the implicit argument 'pedersen_ptr' in:" - ], - "start_col": 15, - "start_line": 7 - }, - "While expanding the reference 'pedersen_ptr' in:" - ], - "start_col": 36, - "start_line": 12 - } - }, - "1029": { - "accessible_scopes": [ - "openzeppelin.token.erc721.library", - "openzeppelin.token.erc721.library.ERC721_operator_approvals", - "openzeppelin.token.erc721.library.ERC721_operator_approvals.addr" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 39, - "end_line": 12, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/starknet/common/storage.cairo" - }, - "parent_location": [ - { - "end_col": 48, - "end_line": 13, - "input_file": { - "filename": "autogen/starknet/storage_var/ERC721_operator_approvals/impl.cairo" - }, - "parent_location": [ - { - "end_col": 58, - "end_line": 7, - "input_file": { - "filename": "autogen/starknet/storage_var/ERC721_operator_approvals/decl.cairo" - }, - "parent_location": [ - { - "end_col": 26, - "end_line": 14, - "input_file": { - "filename": "autogen/starknet/storage_var/ERC721_operator_approvals/impl.cairo" - }, - "start_col": 9, - "start_line": 14 - }, - "While trying to retrieve the implicit argument 'range_check_ptr' in:" - ], - "start_col": 43, - "start_line": 7 - }, - "While expanding the reference 'range_check_ptr' in:" - ], - "start_col": 21, - "start_line": 13 - }, - "While trying to update the implicit return value 'range_check_ptr' in:" - ], - "start_col": 24, - "start_line": 12 - } - }, - "1030": { - "accessible_scopes": [ - "openzeppelin.token.erc721.library", - "openzeppelin.token.erc721.library.ERC721_operator_approvals", - "openzeppelin.token.erc721.library.ERC721_operator_approvals.addr" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 17, - "end_line": 13, - "input_file": { - "filename": "autogen/starknet/storage_var/ERC721_operator_approvals/impl.cairo" - }, - "parent_location": [ - { - "end_col": 24, - "end_line": 14, - "input_file": { - "filename": "autogen/starknet/storage_var/ERC721_operator_approvals/impl.cairo" - }, - "start_col": 21, - "start_line": 14 - }, - "While expanding the reference 'res' in:" - ], - "start_col": 14, - "start_line": 13 - } - }, - "1031": { - "accessible_scopes": [ - "openzeppelin.token.erc721.library", - "openzeppelin.token.erc721.library.ERC721_operator_approvals", - "openzeppelin.token.erc721.library.ERC721_operator_approvals.addr" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 26, - "end_line": 14, - "input_file": { - "filename": "autogen/starknet/storage_var/ERC721_operator_approvals/impl.cairo" - }, - "start_col": 9, - "start_line": 14 - } - }, - "1032": { - "accessible_scopes": [ - "openzeppelin.token.erc721.library", - "openzeppelin.token.erc721.library.ERC721_operator_approvals", - "openzeppelin.token.erc721.library.ERC721_operator_approvals.read" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 61, - "end_line": 17, - "input_file": { - "filename": "autogen/starknet/storage_var/ERC721_operator_approvals/impl.cairo" - }, - "parent_location": [ - { - "end_col": 41, - "end_line": 7, - "input_file": { - "filename": "autogen/starknet/storage_var/ERC721_operator_approvals/decl.cairo" - }, - "parent_location": [ - { - "end_col": 51, - "end_line": 20, - "input_file": { - "filename": "autogen/starknet/storage_var/ERC721_operator_approvals/impl.cairo" - }, - "start_col": 30, - "start_line": 20 - }, - "While trying to retrieve the implicit argument 'pedersen_ptr' in:" - ], - "start_col": 15, - "start_line": 7 - }, - "While expanding the reference 'pedersen_ptr' in:" - ], - "start_col": 35, - "start_line": 17 - } - }, - "1033": { - "accessible_scopes": [ - "openzeppelin.token.erc721.library", - "openzeppelin.token.erc721.library.ERC721_operator_approvals", - "openzeppelin.token.erc721.library.ERC721_operator_approvals.read" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 78, - "end_line": 17, - "input_file": { - "filename": "autogen/starknet/storage_var/ERC721_operator_approvals/impl.cairo" - }, - "parent_location": [ - { - "end_col": 58, - "end_line": 7, - "input_file": { - "filename": "autogen/starknet/storage_var/ERC721_operator_approvals/decl.cairo" - }, - "parent_location": [ - { - "end_col": 51, - "end_line": 20, - "input_file": { - "filename": "autogen/starknet/storage_var/ERC721_operator_approvals/impl.cairo" - }, - "start_col": 30, - "start_line": 20 - }, - "While trying to retrieve the implicit argument 'range_check_ptr' in:" - ], - "start_col": 43, - "start_line": 7 - }, - "While expanding the reference 'range_check_ptr' in:" - ], - "start_col": 63, - "start_line": 17 - } - }, - "1034": { - "accessible_scopes": [ - "openzeppelin.token.erc721.library", - "openzeppelin.token.erc721.library.ERC721_operator_approvals", - "openzeppelin.token.erc721.library.ERC721_operator_approvals.read" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 20, - "end_line": 18, - "input_file": { - "filename": "autogen/starknet/storage_var/ERC721_operator_approvals/impl.cairo" - }, - "parent_location": [ - { - "end_col": 40, - "end_line": 20, - "input_file": { - "filename": "autogen/starknet/storage_var/ERC721_operator_approvals/impl.cairo" - }, - "start_col": 35, - "start_line": 20 - }, - "While expanding the reference 'owner' in:" - ], - "start_col": 9, - "start_line": 18 - } - }, - "1035": { - "accessible_scopes": [ - "openzeppelin.token.erc721.library", - "openzeppelin.token.erc721.library.ERC721_operator_approvals", - "openzeppelin.token.erc721.library.ERC721_operator_approvals.read" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 36, - "end_line": 18, - "input_file": { - "filename": "autogen/starknet/storage_var/ERC721_operator_approvals/impl.cairo" - }, - "parent_location": [ - { - "end_col": 50, - "end_line": 20, - "input_file": { - "filename": "autogen/starknet/storage_var/ERC721_operator_approvals/impl.cairo" - }, - "start_col": 42, - "start_line": 20 - }, - "While expanding the reference 'operator' in:" - ], - "start_col": 22, - "start_line": 18 - } - }, - "1036": { - "accessible_scopes": [ - "openzeppelin.token.erc721.library", - "openzeppelin.token.erc721.library.ERC721_operator_approvals", - "openzeppelin.token.erc721.library.ERC721_operator_approvals.read" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 51, - "end_line": 20, - "input_file": { - "filename": "autogen/starknet/storage_var/ERC721_operator_approvals/impl.cairo" - }, - "start_col": 30, - "start_line": 20 - } - }, - "1038": { - "accessible_scopes": [ - "openzeppelin.token.erc721.library", - "openzeppelin.token.erc721.library.ERC721_operator_approvals", - "openzeppelin.token.erc721.library.ERC721_operator_approvals.read" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 33, - "end_line": 17, - "input_file": { - "filename": "autogen/starknet/storage_var/ERC721_operator_approvals/impl.cairo" - }, - "parent_location": [ - { - "end_col": 37, - "end_line": 352, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/starknet/common/syscalls.cairo" - }, - "parent_location": [ - { - "end_col": 75, - "end_line": 21, - "input_file": { - "filename": "autogen/starknet/storage_var/ERC721_operator_approvals/impl.cairo" - }, - "start_col": 37, - "start_line": 21 - }, - "While trying to retrieve the implicit argument 'syscall_ptr' in:" - ], - "start_col": 19, - "start_line": 352 - }, - "While expanding the reference 'syscall_ptr' in:" - ], - "start_col": 15, - "start_line": 17 - } - }, - "1039": { - "accessible_scopes": [ - "openzeppelin.token.erc721.library", - "openzeppelin.token.erc721.library.ERC721_operator_approvals", - "openzeppelin.token.erc721.library.ERC721_operator_approvals.read" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 26, - "end_line": 20, - "input_file": { - "filename": "autogen/starknet/storage_var/ERC721_operator_approvals/impl.cairo" - }, - "parent_location": [ - { - "end_col": 70, - "end_line": 21, - "input_file": { - "filename": "autogen/starknet/storage_var/ERC721_operator_approvals/impl.cairo" - }, - "start_col": 58, - "start_line": 21 - }, - "While expanding the reference 'storage_addr' in:" - ], - "start_col": 14, - "start_line": 20 - } - }, - "1040": { - "accessible_scopes": [ - "openzeppelin.token.erc721.library", - "openzeppelin.token.erc721.library.ERC721_operator_approvals", - "openzeppelin.token.erc721.library.ERC721_operator_approvals.read" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 75, - "end_line": 21, - "input_file": { - "filename": "autogen/starknet/storage_var/ERC721_operator_approvals/impl.cairo" - }, - "start_col": 37, - "start_line": 21 - } - }, - "1042": { - "accessible_scopes": [ - "openzeppelin.token.erc721.library", - "openzeppelin.token.erc721.library.ERC721_operator_approvals", - "openzeppelin.token.erc721.library.ERC721_operator_approvals.read" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 37, - "end_line": 352, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/starknet/common/syscalls.cairo" - }, - "parent_location": [ - { - "end_col": 75, - "end_line": 21, - "input_file": { - "filename": "autogen/starknet/storage_var/ERC721_operator_approvals/impl.cairo" - }, - "parent_location": [ - { - "end_col": 42, - "end_line": 23, - "input_file": { - "filename": "autogen/starknet/storage_var/ERC721_operator_approvals/impl.cairo" - }, - "start_col": 31, - "start_line": 23 - }, - "While expanding the reference 'syscall_ptr' in:" - ], - "start_col": 37, - "start_line": 21 - }, - "While trying to update the implicit return value 'syscall_ptr' in:" - ], - "start_col": 19, - "start_line": 352 - } - }, - "1043": { - "accessible_scopes": [ - "openzeppelin.token.erc721.library", - "openzeppelin.token.erc721.library.ERC721_operator_approvals", - "openzeppelin.token.erc721.library.ERC721_operator_approvals.read" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 41, - "end_line": 7, - "input_file": { - "filename": "autogen/starknet/storage_var/ERC721_operator_approvals/decl.cairo" - }, - "parent_location": [ - { - "end_col": 51, - "end_line": 20, - "input_file": { - "filename": "autogen/starknet/storage_var/ERC721_operator_approvals/impl.cairo" - }, - "parent_location": [ - { - "end_col": 44, - "end_line": 24, - "input_file": { - "filename": "autogen/starknet/storage_var/ERC721_operator_approvals/impl.cairo" - }, - "start_col": 32, - "start_line": 24 - }, - "While expanding the reference 'pedersen_ptr' in:" - ], - "start_col": 30, - "start_line": 20 - }, - "While trying to update the implicit return value 'pedersen_ptr' in:" - ], - "start_col": 15, - "start_line": 7 - } - }, - "1044": { - "accessible_scopes": [ - "openzeppelin.token.erc721.library", - "openzeppelin.token.erc721.library.ERC721_operator_approvals", - "openzeppelin.token.erc721.library.ERC721_operator_approvals.read" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 58, - "end_line": 7, - "input_file": { - "filename": "autogen/starknet/storage_var/ERC721_operator_approvals/decl.cairo" - }, - "parent_location": [ - { - "end_col": 51, - "end_line": 20, - "input_file": { - "filename": "autogen/starknet/storage_var/ERC721_operator_approvals/impl.cairo" - }, - "parent_location": [ - { - "end_col": 50, - "end_line": 25, - "input_file": { - "filename": "autogen/starknet/storage_var/ERC721_operator_approvals/impl.cairo" - }, - "start_col": 35, - "start_line": 25 - }, - "While expanding the reference 'range_check_ptr' in:" - ], - "start_col": 30, - "start_line": 20 - }, - "While trying to update the implicit return value 'range_check_ptr' in:" - ], - "start_col": 43, - "start_line": 7 - } - }, - "1045": { - "accessible_scopes": [ - "openzeppelin.token.erc721.library", - "openzeppelin.token.erc721.library.ERC721_operator_approvals", - "openzeppelin.token.erc721.library.ERC721_operator_approvals.read" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 33, - "end_line": 21, - "input_file": { - "filename": "autogen/starknet/storage_var/ERC721_operator_approvals/impl.cairo" - }, - "parent_location": [ - { - "end_col": 64, - "end_line": 26, - "input_file": { - "filename": "autogen/starknet/storage_var/ERC721_operator_approvals/impl.cairo" - }, - "start_col": 45, - "start_line": 26 - }, - "While expanding the reference '__storage_var_temp0' in:" - ], - "start_col": 14, - "start_line": 21 - } - }, - "1046": { - "accessible_scopes": [ - "openzeppelin.token.erc721.library", - "openzeppelin.token.erc721.library.ERC721_operator_approvals", - "openzeppelin.token.erc721.library.ERC721_operator_approvals.read" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 55, - "end_line": 27, - "input_file": { - "filename": "autogen/starknet/storage_var/ERC721_operator_approvals/impl.cairo" - }, - "start_col": 9, - "start_line": 27 - } - }, - "1047": { - "accessible_scopes": [ - "openzeppelin.token.erc721.library", - "openzeppelin.token.erc721.library.ERC721_operator_approvals", - "openzeppelin.token.erc721.library.ERC721_operator_approvals.write" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 62, - "end_line": 30, - "input_file": { - "filename": "autogen/starknet/storage_var/ERC721_operator_approvals/impl.cairo" - }, - "parent_location": [ - { - "end_col": 41, - "end_line": 7, - "input_file": { - "filename": "autogen/starknet/storage_var/ERC721_operator_approvals/decl.cairo" - }, - "parent_location": [ - { - "end_col": 51, - "end_line": 33, - "input_file": { - "filename": "autogen/starknet/storage_var/ERC721_operator_approvals/impl.cairo" - }, - "start_col": 30, - "start_line": 33 - }, - "While trying to retrieve the implicit argument 'pedersen_ptr' in:" - ], - "start_col": 15, - "start_line": 7 - }, - "While expanding the reference 'pedersen_ptr' in:" - ], - "start_col": 36, - "start_line": 30 - } - }, - "1048": { - "accessible_scopes": [ - "openzeppelin.token.erc721.library", - "openzeppelin.token.erc721.library.ERC721_operator_approvals", - "openzeppelin.token.erc721.library.ERC721_operator_approvals.write" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 79, - "end_line": 30, - "input_file": { - "filename": "autogen/starknet/storage_var/ERC721_operator_approvals/impl.cairo" - }, - "parent_location": [ - { - "end_col": 58, - "end_line": 7, - "input_file": { - "filename": "autogen/starknet/storage_var/ERC721_operator_approvals/decl.cairo" - }, - "parent_location": [ - { - "end_col": 51, - "end_line": 33, - "input_file": { - "filename": "autogen/starknet/storage_var/ERC721_operator_approvals/impl.cairo" - }, - "start_col": 30, - "start_line": 33 - }, - "While trying to retrieve the implicit argument 'range_check_ptr' in:" - ], - "start_col": 43, - "start_line": 7 - }, - "While expanding the reference 'range_check_ptr' in:" - ], - "start_col": 64, - "start_line": 30 - } - }, - "1049": { - "accessible_scopes": [ - "openzeppelin.token.erc721.library", - "openzeppelin.token.erc721.library.ERC721_operator_approvals", - "openzeppelin.token.erc721.library.ERC721_operator_approvals.write" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 20, - "end_line": 31, - "input_file": { - "filename": "autogen/starknet/storage_var/ERC721_operator_approvals/impl.cairo" - }, - "parent_location": [ - { - "end_col": 40, - "end_line": 33, - "input_file": { - "filename": "autogen/starknet/storage_var/ERC721_operator_approvals/impl.cairo" - }, - "start_col": 35, - "start_line": 33 - }, - "While expanding the reference 'owner' in:" - ], - "start_col": 9, - "start_line": 31 - } - }, - "1050": { - "accessible_scopes": [ - "openzeppelin.token.erc721.library", - "openzeppelin.token.erc721.library.ERC721_operator_approvals", - "openzeppelin.token.erc721.library.ERC721_operator_approvals.write" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 36, - "end_line": 31, - "input_file": { - "filename": "autogen/starknet/storage_var/ERC721_operator_approvals/impl.cairo" - }, - "parent_location": [ - { - "end_col": 50, - "end_line": 33, - "input_file": { - "filename": "autogen/starknet/storage_var/ERC721_operator_approvals/impl.cairo" - }, - "start_col": 42, - "start_line": 33 - }, - "While expanding the reference 'operator' in:" - ], - "start_col": 22, - "start_line": 31 - } - }, - "1051": { - "accessible_scopes": [ - "openzeppelin.token.erc721.library", - "openzeppelin.token.erc721.library.ERC721_operator_approvals", - "openzeppelin.token.erc721.library.ERC721_operator_approvals.write" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 51, - "end_line": 33, - "input_file": { - "filename": "autogen/starknet/storage_var/ERC721_operator_approvals/impl.cairo" - }, - "start_col": 30, - "start_line": 33 - } - }, - "1053": { - "accessible_scopes": [ - "openzeppelin.token.erc721.library", - "openzeppelin.token.erc721.library.ERC721_operator_approvals", - "openzeppelin.token.erc721.library.ERC721_operator_approvals.write" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 34, - "end_line": 30, - "input_file": { - "filename": "autogen/starknet/storage_var/ERC721_operator_approvals/impl.cairo" - }, - "parent_location": [ - { - "end_col": 38, - "end_line": 370, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/starknet/common/syscalls.cairo" - }, - "parent_location": [ - { - "end_col": 80, - "end_line": 34, - "input_file": { - "filename": "autogen/starknet/storage_var/ERC721_operator_approvals/impl.cairo" - }, - "start_col": 9, - "start_line": 34 - }, - "While trying to retrieve the implicit argument 'syscall_ptr' in:" - ], - "start_col": 20, - "start_line": 370 - }, - "While expanding the reference 'syscall_ptr' in:" - ], - "start_col": 16, - "start_line": 30 - } - }, - "1054": { - "accessible_scopes": [ - "openzeppelin.token.erc721.library", - "openzeppelin.token.erc721.library.ERC721_operator_approvals", - "openzeppelin.token.erc721.library.ERC721_operator_approvals.write" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 26, - "end_line": 33, - "input_file": { - "filename": "autogen/starknet/storage_var/ERC721_operator_approvals/impl.cairo" - }, - "parent_location": [ - { - "end_col": 43, - "end_line": 34, - "input_file": { - "filename": "autogen/starknet/storage_var/ERC721_operator_approvals/impl.cairo" - }, - "start_col": 31, - "start_line": 34 - }, - "While expanding the reference 'storage_addr' in:" - ], - "start_col": 14, - "start_line": 33 - } - }, - "1055": { - "accessible_scopes": [ - "openzeppelin.token.erc721.library", - "openzeppelin.token.erc721.library.ERC721_operator_approvals", - "openzeppelin.token.erc721.library.ERC721_operator_approvals.write" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 79, - "end_line": 34, - "input_file": { - "filename": "autogen/starknet/storage_var/ERC721_operator_approvals/impl.cairo" - }, - "start_col": 55, - "start_line": 34 - } - }, - "1056": { - "accessible_scopes": [ - "openzeppelin.token.erc721.library", - "openzeppelin.token.erc721.library.ERC721_operator_approvals", - "openzeppelin.token.erc721.library.ERC721_operator_approvals.write" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 80, - "end_line": 34, - "input_file": { - "filename": "autogen/starknet/storage_var/ERC721_operator_approvals/impl.cairo" - }, - "start_col": 9, - "start_line": 34 - } - }, - "1058": { - "accessible_scopes": [ - "openzeppelin.token.erc721.library", - "openzeppelin.token.erc721.library.ERC721_operator_approvals", - "openzeppelin.token.erc721.library.ERC721_operator_approvals.write" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 41, - "end_line": 7, - "input_file": { - "filename": "autogen/starknet/storage_var/ERC721_operator_approvals/decl.cairo" - }, - "parent_location": [ - { - "end_col": 51, - "end_line": 33, - "input_file": { - "filename": "autogen/starknet/storage_var/ERC721_operator_approvals/impl.cairo" - }, - "parent_location": [ - { - "end_col": 62, - "end_line": 23, - "input_file": { - "filename": "autogen/starknet/storage_var/ERC721_operator_approvals/decl.cairo" - }, - "parent_location": [ - { - "end_col": 19, - "end_line": 35, - "input_file": { - "filename": "autogen/starknet/storage_var/ERC721_operator_approvals/impl.cairo" - }, - "start_col": 9, - "start_line": 35 - }, - "While trying to retrieve the implicit argument 'pedersen_ptr' in:" - ], - "start_col": 36, - "start_line": 23 - }, - "While expanding the reference 'pedersen_ptr' in:" - ], - "start_col": 30, - "start_line": 33 - }, - "While trying to update the implicit return value 'pedersen_ptr' in:" - ], - "start_col": 15, - "start_line": 7 - } - }, - "1059": { - "accessible_scopes": [ - "openzeppelin.token.erc721.library", - "openzeppelin.token.erc721.library.ERC721_operator_approvals", - "openzeppelin.token.erc721.library.ERC721_operator_approvals.write" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 58, - "end_line": 7, - "input_file": { - "filename": "autogen/starknet/storage_var/ERC721_operator_approvals/decl.cairo" - }, - "parent_location": [ - { - "end_col": 51, - "end_line": 33, - "input_file": { - "filename": "autogen/starknet/storage_var/ERC721_operator_approvals/impl.cairo" - }, - "parent_location": [ - { - "end_col": 79, - "end_line": 23, - "input_file": { - "filename": "autogen/starknet/storage_var/ERC721_operator_approvals/decl.cairo" - }, - "parent_location": [ - { - "end_col": 19, - "end_line": 35, - "input_file": { - "filename": "autogen/starknet/storage_var/ERC721_operator_approvals/impl.cairo" - }, - "start_col": 9, - "start_line": 35 - }, - "While trying to retrieve the implicit argument 'range_check_ptr' in:" - ], - "start_col": 64, - "start_line": 23 - }, - "While expanding the reference 'range_check_ptr' in:" - ], - "start_col": 30, - "start_line": 33 - }, - "While trying to update the implicit return value 'range_check_ptr' in:" - ], - "start_col": 43, - "start_line": 7 - } - }, - "1060": { - "accessible_scopes": [ - "openzeppelin.token.erc721.library", - "openzeppelin.token.erc721.library.ERC721_operator_approvals", - "openzeppelin.token.erc721.library.ERC721_operator_approvals.write" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 19, - "end_line": 35, - "input_file": { - "filename": "autogen/starknet/storage_var/ERC721_operator_approvals/impl.cairo" - }, - "start_col": 9, - "start_line": 35 - } - }, - "1061": { - "accessible_scopes": [ - "openzeppelin.token.erc721.library", - "openzeppelin.token.erc721.library.ERC721", - "openzeppelin.token.erc721.library.ERC721.initializer" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 40, - "end_line": 76, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" - }, - "parent_location": [ - { - "end_col": 34, - "end_line": 19, - "input_file": { - "filename": "autogen/starknet/storage_var/ERC721_name/decl.cairo" - }, - "parent_location": [ - { - "end_col": 32, - "end_line": 79, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" - }, - "start_col": 9, - "start_line": 79 - }, - "While trying to retrieve the implicit argument 'syscall_ptr' in:" - ], - "start_col": 16, - "start_line": 19 - }, - "While expanding the reference 'syscall_ptr' in:" - ], - "start_col": 22, - "start_line": 76 - } - }, - "1062": { - "accessible_scopes": [ - "openzeppelin.token.erc721.library", - "openzeppelin.token.erc721.library.ERC721", - "openzeppelin.token.erc721.library.ERC721.initializer" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 68, - "end_line": 76, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" - }, - "parent_location": [ - { - "end_col": 62, - "end_line": 19, - "input_file": { - "filename": "autogen/starknet/storage_var/ERC721_name/decl.cairo" - }, - "parent_location": [ - { - "end_col": 32, - "end_line": 79, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" - }, - "start_col": 9, - "start_line": 79 - }, - "While trying to retrieve the implicit argument 'pedersen_ptr' in:" - ], - "start_col": 36, - "start_line": 19 - }, - "While expanding the reference 'pedersen_ptr' in:" - ], - "start_col": 42, - "start_line": 76 - } - }, - "1063": { - "accessible_scopes": [ - "openzeppelin.token.erc721.library", - "openzeppelin.token.erc721.library.ERC721", - "openzeppelin.token.erc721.library.ERC721.initializer" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 85, - "end_line": 76, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" - }, - "parent_location": [ - { - "end_col": 79, - "end_line": 19, - "input_file": { - "filename": "autogen/starknet/storage_var/ERC721_name/decl.cairo" - }, - "parent_location": [ - { - "end_col": 32, - "end_line": 79, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" - }, - "start_col": 9, - "start_line": 79 - }, - "While trying to retrieve the implicit argument 'range_check_ptr' in:" - ], - "start_col": 64, - "start_line": 19 - }, - "While expanding the reference 'range_check_ptr' in:" - ], - "start_col": 70, - "start_line": 76 - } - }, - "1064": { - "accessible_scopes": [ - "openzeppelin.token.erc721.library", - "openzeppelin.token.erc721.library.ERC721", - "openzeppelin.token.erc721.library.ERC721.initializer" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 19, - "end_line": 77, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" - }, - "parent_location": [ - { - "end_col": 31, - "end_line": 79, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" - }, - "start_col": 27, - "start_line": 79 - }, - "While expanding the reference 'name' in:" - ], - "start_col": 9, - "start_line": 77 - } - }, - "1065": { - "accessible_scopes": [ - "openzeppelin.token.erc721.library", - "openzeppelin.token.erc721.library.ERC721", - "openzeppelin.token.erc721.library.ERC721.initializer" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 32, - "end_line": 79, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" - }, - "start_col": 9, - "start_line": 79 - } - }, - "1067": { - "accessible_scopes": [ - "openzeppelin.token.erc721.library", - "openzeppelin.token.erc721.library.ERC721", - "openzeppelin.token.erc721.library.ERC721.initializer" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 33, - "end_line": 77, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" - }, - "parent_location": [ - { - "end_col": 35, - "end_line": 80, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" - }, - "start_col": 29, - "start_line": 80 - }, - "While expanding the reference 'symbol' in:" - ], - "start_col": 21, - "start_line": 77 - } - }, - "1068": { - "accessible_scopes": [ - "openzeppelin.token.erc721.library", - "openzeppelin.token.erc721.library.ERC721", - "openzeppelin.token.erc721.library.ERC721.initializer" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 36, - "end_line": 80, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" - }, - "start_col": 9, - "start_line": 80 - } - }, - "1070": { - "accessible_scopes": [ - "openzeppelin.token.erc721.library", - "openzeppelin.token.erc721.library.ERC721", - "openzeppelin.token.erc721.library.ERC721.initializer" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 45, - "end_line": 81, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" - }, - "start_col": 35, - "start_line": 81 - } - }, - "1072": { - "accessible_scopes": [ - "openzeppelin.token.erc721.library", - "openzeppelin.token.erc721.library.ERC721", - "openzeppelin.token.erc721.library.ERC721.initializer" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 46, - "end_line": 81, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" - }, - "start_col": 9, - "start_line": 81 - } - }, - "1074": { - "accessible_scopes": [ - "openzeppelin.token.erc721.library", - "openzeppelin.token.erc721.library.ERC721", - "openzeppelin.token.erc721.library.ERC721.initializer" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 54, - "end_line": 82, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" - }, - "start_col": 35, - "start_line": 82 - } - }, - "1076": { - "accessible_scopes": [ - "openzeppelin.token.erc721.library", - "openzeppelin.token.erc721.library.ERC721", - "openzeppelin.token.erc721.library.ERC721.initializer" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 55, - "end_line": 82, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" - }, - "start_col": 9, - "start_line": 82 - } - }, - "1078": { - "accessible_scopes": [ - "openzeppelin.token.erc721.library", - "openzeppelin.token.erc721.library.ERC721", - "openzeppelin.token.erc721.library.ERC721.initializer" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 19, - "end_line": 83, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" - }, - "start_col": 9, - "start_line": 83 - } - }, - "1079": { - "accessible_scopes": [ - "openzeppelin.token.erc721.library", - "openzeppelin.token.erc721.library.ERC721", - "openzeppelin.token.erc721.library.ERC721.name" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 33, - "end_line": 90, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" - }, - "parent_location": [ - { - "end_col": 33, - "end_line": 13, - "input_file": { - "filename": "autogen/starknet/storage_var/ERC721_name/decl.cairo" - }, - "parent_location": [ - { - "end_col": 34, - "end_line": 91, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" - }, - "start_col": 16, - "start_line": 91 - }, - "While trying to retrieve the implicit argument 'syscall_ptr' in:" - ], - "start_col": 15, - "start_line": 13 - }, - "While expanding the reference 'syscall_ptr' in:" - ], - "start_col": 15, - "start_line": 90 - } - }, - "1080": { - "accessible_scopes": [ - "openzeppelin.token.erc721.library", - "openzeppelin.token.erc721.library.ERC721", - "openzeppelin.token.erc721.library.ERC721.name" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 61, - "end_line": 90, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" - }, - "parent_location": [ - { - "end_col": 61, - "end_line": 13, - "input_file": { - "filename": "autogen/starknet/storage_var/ERC721_name/decl.cairo" - }, - "parent_location": [ - { - "end_col": 34, - "end_line": 91, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" - }, - "start_col": 16, - "start_line": 91 - }, - "While trying to retrieve the implicit argument 'pedersen_ptr' in:" - ], - "start_col": 35, - "start_line": 13 - }, - "While expanding the reference 'pedersen_ptr' in:" - ], - "start_col": 35, - "start_line": 90 - } - }, - "1081": { - "accessible_scopes": [ - "openzeppelin.token.erc721.library", - "openzeppelin.token.erc721.library.ERC721", - "openzeppelin.token.erc721.library.ERC721.name" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 78, - "end_line": 90, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" - }, - "parent_location": [ - { - "end_col": 78, - "end_line": 13, - "input_file": { - "filename": "autogen/starknet/storage_var/ERC721_name/decl.cairo" - }, - "parent_location": [ - { - "end_col": 34, - "end_line": 91, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" - }, - "start_col": 16, - "start_line": 91 - }, - "While trying to retrieve the implicit argument 'range_check_ptr' in:" - ], - "start_col": 63, - "start_line": 13 - }, - "While expanding the reference 'range_check_ptr' in:" - ], - "start_col": 63, - "start_line": 90 - } - }, - "1082": { - "accessible_scopes": [ - "openzeppelin.token.erc721.library", - "openzeppelin.token.erc721.library.ERC721", - "openzeppelin.token.erc721.library.ERC721.name" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 34, - "end_line": 91, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" - }, - "start_col": 16, - "start_line": 91 - } - }, - "1084": { - "accessible_scopes": [ - "openzeppelin.token.erc721.library", - "openzeppelin.token.erc721.library.ERC721", - "openzeppelin.token.erc721.library.ERC721.name" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 35, - "end_line": 91, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" - }, - "start_col": 9, - "start_line": 91 - } - }, - "1085": { - "accessible_scopes": [ - "openzeppelin.token.erc721.library", - "openzeppelin.token.erc721.library.ERC721", - "openzeppelin.token.erc721.library.ERC721.balance_of" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 20, - "end_line": 101, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" - }, - "parent_location": [ - { - "end_col": 34, - "end_line": 104, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" - }, - "start_col": 29, - "start_line": 104 - }, - "While expanding the reference 'owner' in:" - ], - "start_col": 9, - "start_line": 101 - } - }, - "1086": { - "accessible_scopes": [ - "openzeppelin.token.erc721.library", - "openzeppelin.token.erc721.library.ERC721", - "openzeppelin.token.erc721.library.ERC721.balance_of" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 35, - "end_line": 104, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" - }, - "start_col": 13, - "start_line": 104 - } - }, - "1088": { - "accessible_scopes": [ - "openzeppelin.token.erc721.library", - "openzeppelin.token.erc721.library.ERC721", - "openzeppelin.token.erc721.library.ERC721.balance_of" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 39, - "end_line": 100, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" - }, - "parent_location": [ - { - "end_col": 33, - "end_line": 13, - "input_file": { - "filename": "autogen/starknet/storage_var/ERC721_balances/decl.cairo" - }, - "parent_location": [ - { - "end_col": 43, - "end_line": 106, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" - }, - "start_col": 16, - "start_line": 106 - }, - "While trying to retrieve the implicit argument 'syscall_ptr' in:" - ], - "start_col": 15, - "start_line": 13 - }, - "While expanding the reference 'syscall_ptr' in:" - ], - "start_col": 21, - "start_line": 100 - } - }, - "1089": { - "accessible_scopes": [ - "openzeppelin.token.erc721.library", - "openzeppelin.token.erc721.library.ERC721", - "openzeppelin.token.erc721.library.ERC721.balance_of" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 67, - "end_line": 100, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" - }, - "parent_location": [ - { - "end_col": 61, - "end_line": 13, - "input_file": { - "filename": "autogen/starknet/storage_var/ERC721_balances/decl.cairo" - }, - "parent_location": [ - { - "end_col": 43, - "end_line": 106, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" - }, - "start_col": 16, - "start_line": 106 - }, - "While trying to retrieve the implicit argument 'pedersen_ptr' in:" - ], - "start_col": 35, - "start_line": 13 - }, - "While expanding the reference 'pedersen_ptr' in:" - ], - "start_col": 41, - "start_line": 100 - } - }, - "1090": { - "accessible_scopes": [ - "openzeppelin.token.erc721.library", - "openzeppelin.token.erc721.library.ERC721", - "openzeppelin.token.erc721.library.ERC721.balance_of" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 84, - "end_line": 100, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" - }, - "parent_location": [ - { - "end_col": 78, - "end_line": 13, - "input_file": { - "filename": "autogen/starknet/storage_var/ERC721_balances/decl.cairo" - }, - "parent_location": [ - { - "end_col": 43, - "end_line": 106, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" - }, - "start_col": 16, - "start_line": 106 - }, - "While trying to retrieve the implicit argument 'range_check_ptr' in:" - ], - "start_col": 63, - "start_line": 13 - }, - "While expanding the reference 'range_check_ptr' in:" - ], - "start_col": 69, - "start_line": 100 - } - }, - "1091": { - "accessible_scopes": [ - "openzeppelin.token.erc721.library", - "openzeppelin.token.erc721.library.ERC721", - "openzeppelin.token.erc721.library.ERC721.balance_of" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 20, - "end_line": 101, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" - }, - "parent_location": [ - { - "end_col": 42, - "end_line": 106, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" - }, - "start_col": 37, - "start_line": 106 - }, - "While expanding the reference 'owner' in:" - ], - "start_col": 9, - "start_line": 101 - } - }, - "1092": { - "accessible_scopes": [ - "openzeppelin.token.erc721.library", - "openzeppelin.token.erc721.library.ERC721", - "openzeppelin.token.erc721.library.ERC721.balance_of" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 43, - "end_line": 106, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" - }, - "start_col": 16, - "start_line": 106 - } - }, - "1094": { - "accessible_scopes": [ - "openzeppelin.token.erc721.library", - "openzeppelin.token.erc721.library.ERC721", - "openzeppelin.token.erc721.library.ERC721.balance_of" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 44, - "end_line": 106, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" - }, - "start_col": 9, - "start_line": 106 - } - }, - "1095": { - "accessible_scopes": [ - "openzeppelin.token.erc721.library", - "openzeppelin.token.erc721.library.ERC721", - "openzeppelin.token.erc721.library.ERC721.owner_of" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 82, - "end_line": 109, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" - }, - "parent_location": [ - { - "end_col": 35, - "end_line": 21, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/uint256.cairo" - }, - "parent_location": [ - { - "end_col": 36, - "end_line": 113, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" - }, - "start_col": 13, - "start_line": 113 - }, - "While trying to retrieve the implicit argument 'range_check_ptr' in:" - ], - "start_col": 20, - "start_line": 21 - }, - "While expanding the reference 'range_check_ptr' in:" - ], - "start_col": 67, - "start_line": 109 - } - }, - "1096": { - "accessible_scopes": [ - "openzeppelin.token.erc721.library", - "openzeppelin.token.erc721.library.ERC721", - "openzeppelin.token.erc721.library.ERC721.owner_of" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 26, - "end_line": 110, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" - }, - "parent_location": [ - { - "end_col": 35, - "end_line": 113, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" - }, - "start_col": 27, - "start_line": 113 - }, - "While expanding the reference 'token_id' in:" - ], - "start_col": 9, - "start_line": 110 - } - }, - "1097": { - "accessible_scopes": [ - "openzeppelin.token.erc721.library", - "openzeppelin.token.erc721.library.ERC721", - "openzeppelin.token.erc721.library.ERC721.owner_of" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 26, - "end_line": 110, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" - }, - "parent_location": [ - { - "end_col": 35, - "end_line": 113, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" - }, - "start_col": 27, - "start_line": 113 - }, - "While expanding the reference 'token_id' in:" - ], - "start_col": 9, - "start_line": 110 - } - }, - "1098": { - "accessible_scopes": [ - "openzeppelin.token.erc721.library", - "openzeppelin.token.erc721.library.ERC721", - "openzeppelin.token.erc721.library.ERC721.owner_of" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 36, - "end_line": 113, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" - }, - "start_col": 13, - "start_line": 113 - } - }, - "1100": { - "accessible_scopes": [ - "openzeppelin.token.erc721.library", - "openzeppelin.token.erc721.library.ERC721", - "openzeppelin.token.erc721.library.ERC721.owner_of" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 37, - "end_line": 109, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" - }, - "parent_location": [ - { - "end_col": 33, - "end_line": 13, - "input_file": { - "filename": "autogen/starknet/storage_var/ERC721_owners/decl.cairo" - }, - "parent_location": [ - { - "end_col": 51, - "end_line": 115, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" - }, - "start_col": 23, - "start_line": 115 - }, - "While trying to retrieve the implicit argument 'syscall_ptr' in:" - ], - "start_col": 15, - "start_line": 13 - }, - "While expanding the reference 'syscall_ptr' in:" - ], - "start_col": 19, - "start_line": 109 - } - }, - "1101": { - "accessible_scopes": [ - "openzeppelin.token.erc721.library", - "openzeppelin.token.erc721.library.ERC721", - "openzeppelin.token.erc721.library.ERC721.owner_of" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 65, - "end_line": 109, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" - }, - "parent_location": [ - { - "end_col": 61, - "end_line": 13, - "input_file": { - "filename": "autogen/starknet/storage_var/ERC721_owners/decl.cairo" - }, - "parent_location": [ - { - "end_col": 51, - "end_line": 115, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" - }, - "start_col": 23, - "start_line": 115 - }, - "While trying to retrieve the implicit argument 'pedersen_ptr' in:" - ], - "start_col": 35, - "start_line": 13 - }, - "While expanding the reference 'pedersen_ptr' in:" - ], - "start_col": 39, - "start_line": 109 - } - }, - "1102": { - "accessible_scopes": [ - "openzeppelin.token.erc721.library", - "openzeppelin.token.erc721.library.ERC721", - "openzeppelin.token.erc721.library.ERC721.owner_of" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 35, - "end_line": 21, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/uint256.cairo" - }, - "parent_location": [ - { - "end_col": 36, - "end_line": 113, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" - }, - "parent_location": [ - { - "end_col": 78, - "end_line": 13, - "input_file": { - "filename": "autogen/starknet/storage_var/ERC721_owners/decl.cairo" - }, - "parent_location": [ - { - "end_col": 51, - "end_line": 115, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" - }, - "start_col": 23, - "start_line": 115 - }, - "While trying to retrieve the implicit argument 'range_check_ptr' in:" - ], - "start_col": 63, - "start_line": 13 - }, - "While expanding the reference 'range_check_ptr' in:" - ], - "start_col": 13, - "start_line": 113 - }, - "While trying to update the implicit return value 'range_check_ptr' in:" - ], - "start_col": 20, - "start_line": 21 - } - }, - "1103": { - "accessible_scopes": [ - "openzeppelin.token.erc721.library", - "openzeppelin.token.erc721.library.ERC721", - "openzeppelin.token.erc721.library.ERC721.owner_of" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 26, - "end_line": 110, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" - }, - "parent_location": [ - { - "end_col": 50, - "end_line": 115, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" - }, - "start_col": 42, - "start_line": 115 - }, - "While expanding the reference 'token_id' in:" - ], - "start_col": 9, - "start_line": 110 - } - }, - "1104": { - "accessible_scopes": [ - "openzeppelin.token.erc721.library", - "openzeppelin.token.erc721.library.ERC721", - "openzeppelin.token.erc721.library.ERC721.owner_of" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 26, - "end_line": 110, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" - }, - "parent_location": [ - { - "end_col": 50, - "end_line": 115, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" - }, - "start_col": 42, - "start_line": 115 - }, - "While expanding the reference 'token_id' in:" - ], - "start_col": 9, - "start_line": 110 - } - }, - "1105": { - "accessible_scopes": [ - "openzeppelin.token.erc721.library", - "openzeppelin.token.erc721.library.ERC721", - "openzeppelin.token.erc721.library.ERC721.owner_of" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 51, - "end_line": 115, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" - }, - "start_col": 23, - "start_line": 115 - } - }, - "1107": { - "accessible_scopes": [ - "openzeppelin.token.erc721.library", - "openzeppelin.token.erc721.library.ERC721", - "openzeppelin.token.erc721.library.ERC721.owner_of" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 35, - "end_line": 117, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" - }, - "start_col": 13, - "start_line": 117 - } - }, - "1109": { - "accessible_scopes": [ - "openzeppelin.token.erc721.library", - "openzeppelin.token.erc721.library.ERC721", - "openzeppelin.token.erc721.library.ERC721.owner_of" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 33, - "end_line": 13, - "input_file": { - "filename": "autogen/starknet/storage_var/ERC721_owners/decl.cairo" - }, - "parent_location": [ - { - "end_col": 51, - "end_line": 115, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" - }, - "parent_location": [ - { - "end_col": 37, - "end_line": 109, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" - }, - "parent_location": [ - { - "end_col": 30, - "end_line": 119, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" - }, - "start_col": 9, - "start_line": 119 - }, - "While trying to retrieve the implicit argument 'syscall_ptr' in:" - ], - "start_col": 19, - "start_line": 109 - }, - "While expanding the reference 'syscall_ptr' in:" - ], - "start_col": 23, - "start_line": 115 - }, - "While trying to update the implicit return value 'syscall_ptr' in:" - ], - "start_col": 15, - "start_line": 13 - } - }, - "1110": { - "accessible_scopes": [ - "openzeppelin.token.erc721.library", - "openzeppelin.token.erc721.library.ERC721", - "openzeppelin.token.erc721.library.ERC721.owner_of" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 61, - "end_line": 13, - "input_file": { - "filename": "autogen/starknet/storage_var/ERC721_owners/decl.cairo" - }, - "parent_location": [ - { - "end_col": 51, - "end_line": 115, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" - }, - "parent_location": [ - { - "end_col": 65, - "end_line": 109, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" - }, - "parent_location": [ - { - "end_col": 30, - "end_line": 119, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" - }, - "start_col": 9, - "start_line": 119 - }, - "While trying to retrieve the implicit argument 'pedersen_ptr' in:" - ], - "start_col": 39, - "start_line": 109 - }, - "While expanding the reference 'pedersen_ptr' in:" - ], - "start_col": 23, - "start_line": 115 - }, - "While trying to update the implicit return value 'pedersen_ptr' in:" - ], - "start_col": 35, - "start_line": 13 - } - }, - "1111": { - "accessible_scopes": [ - "openzeppelin.token.erc721.library", - "openzeppelin.token.erc721.library.ERC721", - "openzeppelin.token.erc721.library.ERC721.owner_of" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 78, - "end_line": 13, - "input_file": { - "filename": "autogen/starknet/storage_var/ERC721_owners/decl.cairo" - }, - "parent_location": [ - { - "end_col": 51, - "end_line": 115, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" - }, - "parent_location": [ - { - "end_col": 82, - "end_line": 109, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" - }, - "parent_location": [ - { - "end_col": 30, - "end_line": 119, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" - }, - "start_col": 9, - "start_line": 119 - }, - "While trying to retrieve the implicit argument 'range_check_ptr' in:" - ], - "start_col": 67, - "start_line": 109 - }, - "While expanding the reference 'range_check_ptr' in:" - ], - "start_col": 23, - "start_line": 115 - }, - "While trying to update the implicit return value 'range_check_ptr' in:" - ], - "start_col": 63, - "start_line": 13 - } - }, - "1112": { - "accessible_scopes": [ - "openzeppelin.token.erc721.library", - "openzeppelin.token.erc721.library.ERC721", - "openzeppelin.token.erc721.library.ERC721.owner_of" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 19, - "end_line": 115, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" - }, - "parent_location": [ - { - "end_col": 28, - "end_line": 119, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" - }, - "start_col": 23, - "start_line": 119 - }, - "While expanding the reference 'owner' in:" - ], - "start_col": 14, - "start_line": 115 - } - }, - "1113": { - "accessible_scopes": [ - "openzeppelin.token.erc721.library", - "openzeppelin.token.erc721.library.ERC721", - "openzeppelin.token.erc721.library.ERC721.owner_of" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 30, - "end_line": 119, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" - }, - "start_col": 9, - "start_line": 119 - } - }, - "1114": { - "accessible_scopes": [ - "openzeppelin.token.erc721.library", - "openzeppelin.token.erc721.library.ERC721", - "openzeppelin.token.erc721.library.ERC721.get_approved" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 86, - "end_line": 122, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" - }, - "parent_location": [ - { - "end_col": 35, - "end_line": 21, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/uint256.cairo" - }, - "parent_location": [ - { - "end_col": 36, - "end_line": 126, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" - }, - "start_col": 13, - "start_line": 126 - }, - "While trying to retrieve the implicit argument 'range_check_ptr' in:" - ], - "start_col": 20, - "start_line": 21 - }, - "While expanding the reference 'range_check_ptr' in:" - ], - "start_col": 71, - "start_line": 122 - } - }, - "1115": { - "accessible_scopes": [ - "openzeppelin.token.erc721.library", - "openzeppelin.token.erc721.library.ERC721", - "openzeppelin.token.erc721.library.ERC721.get_approved" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 26, - "end_line": 123, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" - }, - "parent_location": [ - { - "end_col": 35, - "end_line": 126, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" - }, - "start_col": 27, - "start_line": 126 - }, - "While expanding the reference 'token_id' in:" - ], - "start_col": 9, - "start_line": 123 - } - }, - "1116": { - "accessible_scopes": [ - "openzeppelin.token.erc721.library", - "openzeppelin.token.erc721.library.ERC721", - "openzeppelin.token.erc721.library.ERC721.get_approved" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 26, - "end_line": 123, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" - }, - "parent_location": [ - { - "end_col": 35, - "end_line": 126, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" - }, - "start_col": 27, - "start_line": 126 - }, - "While expanding the reference 'token_id' in:" - ], - "start_col": 9, - "start_line": 123 - } - }, - "1117": { - "accessible_scopes": [ - "openzeppelin.token.erc721.library", - "openzeppelin.token.erc721.library.ERC721", - "openzeppelin.token.erc721.library.ERC721.get_approved" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 36, - "end_line": 126, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" - }, - "start_col": 13, - "start_line": 126 - } - }, - "1119": { - "accessible_scopes": [ - "openzeppelin.token.erc721.library", - "openzeppelin.token.erc721.library.ERC721", - "openzeppelin.token.erc721.library.ERC721.get_approved" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 41, - "end_line": 122, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" - }, - "parent_location": [ - { - "end_col": 36, - "end_line": 311, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" - }, - "parent_location": [ - { - "end_col": 39, - "end_line": 128, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" - }, - "start_col": 22, - "start_line": 128 - }, - "While trying to retrieve the implicit argument 'syscall_ptr' in:" - ], - "start_col": 18, - "start_line": 311 - }, - "While expanding the reference 'syscall_ptr' in:" - ], - "start_col": 23, - "start_line": 122 - } - }, - "1120": { - "accessible_scopes": [ - "openzeppelin.token.erc721.library", - "openzeppelin.token.erc721.library.ERC721", - "openzeppelin.token.erc721.library.ERC721.get_approved" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 69, - "end_line": 122, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" - }, - "parent_location": [ - { - "end_col": 64, - "end_line": 311, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" - }, - "parent_location": [ - { - "end_col": 39, - "end_line": 128, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" - }, - "start_col": 22, - "start_line": 128 - }, - "While trying to retrieve the implicit argument 'pedersen_ptr' in:" - ], - "start_col": 38, - "start_line": 311 - }, - "While expanding the reference 'pedersen_ptr' in:" - ], - "start_col": 43, - "start_line": 122 - } - }, - "1121": { - "accessible_scopes": [ - "openzeppelin.token.erc721.library", - "openzeppelin.token.erc721.library.ERC721", - "openzeppelin.token.erc721.library.ERC721.get_approved" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 35, - "end_line": 21, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/uint256.cairo" - }, - "parent_location": [ - { - "end_col": 36, - "end_line": 126, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" - }, - "parent_location": [ - { - "end_col": 81, - "end_line": 311, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" - }, - "parent_location": [ - { - "end_col": 39, - "end_line": 128, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" - }, - "start_col": 22, - "start_line": 128 - }, - "While trying to retrieve the implicit argument 'range_check_ptr' in:" - ], - "start_col": 66, - "start_line": 311 - }, - "While expanding the reference 'range_check_ptr' in:" - ], - "start_col": 13, - "start_line": 126 - }, - "While trying to update the implicit return value 'range_check_ptr' in:" - ], - "start_col": 20, - "start_line": 21 - } - }, - "1122": { - "accessible_scopes": [ - "openzeppelin.token.erc721.library", - "openzeppelin.token.erc721.library.ERC721", - "openzeppelin.token.erc721.library.ERC721.get_approved" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 26, - "end_line": 123, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" - }, - "parent_location": [ - { - "end_col": 38, - "end_line": 128, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" - }, - "start_col": 30, - "start_line": 128 - }, - "While expanding the reference 'token_id' in:" - ], - "start_col": 9, - "start_line": 123 - } - }, - "1123": { - "accessible_scopes": [ - "openzeppelin.token.erc721.library", - "openzeppelin.token.erc721.library.ERC721", - "openzeppelin.token.erc721.library.ERC721.get_approved" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 26, - "end_line": 123, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" - }, - "parent_location": [ - { - "end_col": 38, - "end_line": 128, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" - }, - "start_col": 30, - "start_line": 128 - }, - "While expanding the reference 'token_id' in:" - ], - "start_col": 9, - "start_line": 123 - } - }, - "1124": { - "accessible_scopes": [ - "openzeppelin.token.erc721.library", - "openzeppelin.token.erc721.library.ERC721", - "openzeppelin.token.erc721.library.ERC721.get_approved" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 39, - "end_line": 128, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" - }, - "start_col": 22, - "start_line": 128 - } - }, - "1126": { - "accessible_scopes": [ - "openzeppelin.token.erc721.library", - "openzeppelin.token.erc721.library.ERC721", - "openzeppelin.token.erc721.library.ERC721.get_approved" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 34, - "end_line": 130, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" - }, - "start_col": 13, - "start_line": 130 - } - }, - "1128": { - "accessible_scopes": [ - "openzeppelin.token.erc721.library", - "openzeppelin.token.erc721.library.ERC721", - "openzeppelin.token.erc721.library.ERC721.get_approved" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 36, - "end_line": 311, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" - }, - "parent_location": [ - { - "end_col": 39, - "end_line": 128, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" - }, - "parent_location": [ - { - "end_col": 33, - "end_line": 13, - "input_file": { - "filename": "autogen/starknet/storage_var/ERC721_token_approvals/decl.cairo" - }, - "parent_location": [ - { - "end_col": 53, - "end_line": 133, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" - }, - "start_col": 16, - "start_line": 133 - }, - "While trying to retrieve the implicit argument 'syscall_ptr' in:" - ], - "start_col": 15, - "start_line": 13 - }, - "While expanding the reference 'syscall_ptr' in:" - ], - "start_col": 22, - "start_line": 128 - }, - "While trying to update the implicit return value 'syscall_ptr' in:" - ], - "start_col": 18, - "start_line": 311 - } - }, - "1129": { - "accessible_scopes": [ - "openzeppelin.token.erc721.library", - "openzeppelin.token.erc721.library.ERC721", - "openzeppelin.token.erc721.library.ERC721.get_approved" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 64, - "end_line": 311, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" - }, - "parent_location": [ - { - "end_col": 39, - "end_line": 128, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" - }, - "parent_location": [ - { - "end_col": 61, - "end_line": 13, - "input_file": { - "filename": "autogen/starknet/storage_var/ERC721_token_approvals/decl.cairo" - }, - "parent_location": [ - { - "end_col": 53, - "end_line": 133, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" - }, - "start_col": 16, - "start_line": 133 - }, - "While trying to retrieve the implicit argument 'pedersen_ptr' in:" - ], - "start_col": 35, - "start_line": 13 - }, - "While expanding the reference 'pedersen_ptr' in:" - ], - "start_col": 22, - "start_line": 128 - }, - "While trying to update the implicit return value 'pedersen_ptr' in:" - ], - "start_col": 38, - "start_line": 311 - } - }, - "1130": { - "accessible_scopes": [ - "openzeppelin.token.erc721.library", - "openzeppelin.token.erc721.library.ERC721", - "openzeppelin.token.erc721.library.ERC721.get_approved" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 81, - "end_line": 311, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" - }, - "parent_location": [ - { - "end_col": 39, - "end_line": 128, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" - }, - "parent_location": [ - { - "end_col": 78, - "end_line": 13, - "input_file": { - "filename": "autogen/starknet/storage_var/ERC721_token_approvals/decl.cairo" - }, - "parent_location": [ - { - "end_col": 53, - "end_line": 133, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" - }, - "start_col": 16, - "start_line": 133 - }, - "While trying to retrieve the implicit argument 'range_check_ptr' in:" - ], - "start_col": 63, - "start_line": 13 - }, - "While expanding the reference 'range_check_ptr' in:" - ], - "start_col": 22, - "start_line": 128 - }, - "While trying to update the implicit return value 'range_check_ptr' in:" - ], - "start_col": 66, - "start_line": 311 - } - }, - "1131": { - "accessible_scopes": [ - "openzeppelin.token.erc721.library", - "openzeppelin.token.erc721.library.ERC721", - "openzeppelin.token.erc721.library.ERC721.get_approved" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 26, - "end_line": 123, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" - }, - "parent_location": [ - { - "end_col": 52, - "end_line": 133, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" - }, - "start_col": 44, - "start_line": 133 - }, - "While expanding the reference 'token_id' in:" - ], - "start_col": 9, - "start_line": 123 - } - }, - "1132": { - "accessible_scopes": [ - "openzeppelin.token.erc721.library", - "openzeppelin.token.erc721.library.ERC721", - "openzeppelin.token.erc721.library.ERC721.get_approved" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 26, - "end_line": 123, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" - }, - "parent_location": [ - { - "end_col": 52, - "end_line": 133, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" - }, - "start_col": 44, - "start_line": 133 - }, - "While expanding the reference 'token_id' in:" - ], - "start_col": 9, - "start_line": 123 - } - }, - "1133": { - "accessible_scopes": [ - "openzeppelin.token.erc721.library", - "openzeppelin.token.erc721.library.ERC721", - "openzeppelin.token.erc721.library.ERC721.get_approved" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 53, - "end_line": 133, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" - }, - "start_col": 16, - "start_line": 133 - } - }, - "1135": { - "accessible_scopes": [ - "openzeppelin.token.erc721.library", - "openzeppelin.token.erc721.library.ERC721", - "openzeppelin.token.erc721.library.ERC721.get_approved" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 54, - "end_line": 133, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" - }, - "start_col": 9, - "start_line": 133 - } - }, - "1136": { - "accessible_scopes": [ - "openzeppelin.token.erc721.library", - "openzeppelin.token.erc721.library.ERC721", - "openzeppelin.token.erc721.library.ERC721.is_approved_for_all" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 48, - "end_line": 136, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" - }, - "parent_location": [ - { - "end_col": 33, - "end_line": 15, - "input_file": { - "filename": "autogen/starknet/storage_var/ERC721_operator_approvals/decl.cairo" - }, - "parent_location": [ - { - "end_col": 63, - "end_line": 139, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" - }, - "start_col": 16, - "start_line": 139 - }, - "While trying to retrieve the implicit argument 'syscall_ptr' in:" - ], - "start_col": 15, - "start_line": 15 - }, - "While expanding the reference 'syscall_ptr' in:" - ], - "start_col": 30, - "start_line": 136 - } - }, - "1137": { - "accessible_scopes": [ - "openzeppelin.token.erc721.library", - "openzeppelin.token.erc721.library.ERC721", - "openzeppelin.token.erc721.library.ERC721.is_approved_for_all" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 76, - "end_line": 136, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" - }, - "parent_location": [ - { - "end_col": 61, - "end_line": 15, - "input_file": { - "filename": "autogen/starknet/storage_var/ERC721_operator_approvals/decl.cairo" - }, - "parent_location": [ - { - "end_col": 63, - "end_line": 139, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" - }, - "start_col": 16, - "start_line": 139 - }, - "While trying to retrieve the implicit argument 'pedersen_ptr' in:" - ], - "start_col": 35, - "start_line": 15 - }, - "While expanding the reference 'pedersen_ptr' in:" - ], - "start_col": 50, - "start_line": 136 - } - }, - "1138": { - "accessible_scopes": [ - "openzeppelin.token.erc721.library", - "openzeppelin.token.erc721.library.ERC721", - "openzeppelin.token.erc721.library.ERC721.is_approved_for_all" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 93, - "end_line": 136, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" - }, - "parent_location": [ - { - "end_col": 78, - "end_line": 15, - "input_file": { - "filename": "autogen/starknet/storage_var/ERC721_operator_approvals/decl.cairo" - }, - "parent_location": [ - { - "end_col": 63, - "end_line": 139, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" - }, - "start_col": 16, - "start_line": 139 - }, - "While trying to retrieve the implicit argument 'range_check_ptr' in:" - ], - "start_col": 63, - "start_line": 15 - }, - "While expanding the reference 'range_check_ptr' in:" - ], - "start_col": 78, - "start_line": 136 - } - }, - "1139": { - "accessible_scopes": [ - "openzeppelin.token.erc721.library", - "openzeppelin.token.erc721.library.ERC721", - "openzeppelin.token.erc721.library.ERC721.is_approved_for_all" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 20, - "end_line": 137, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" - }, - "parent_location": [ - { - "end_col": 52, - "end_line": 139, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" - }, - "start_col": 47, - "start_line": 139 - }, - "While expanding the reference 'owner' in:" - ], - "start_col": 9, - "start_line": 137 - } - }, - "1140": { - "accessible_scopes": [ - "openzeppelin.token.erc721.library", - "openzeppelin.token.erc721.library.ERC721", - "openzeppelin.token.erc721.library.ERC721.is_approved_for_all" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 36, - "end_line": 137, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" - }, - "parent_location": [ - { - "end_col": 62, - "end_line": 139, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" - }, - "start_col": 54, - "start_line": 139 - }, - "While expanding the reference 'operator' in:" - ], - "start_col": 22, - "start_line": 137 - } - }, - "1141": { - "accessible_scopes": [ - "openzeppelin.token.erc721.library", - "openzeppelin.token.erc721.library.ERC721", - "openzeppelin.token.erc721.library.ERC721.is_approved_for_all" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 63, - "end_line": 139, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" - }, - "start_col": 16, - "start_line": 139 - } - }, - "1143": { - "accessible_scopes": [ - "openzeppelin.token.erc721.library", - "openzeppelin.token.erc721.library.ERC721", - "openzeppelin.token.erc721.library.ERC721.is_approved_for_all" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 64, - "end_line": 139, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" - }, - "start_col": 9, - "start_line": 139 - } - }, - "1144": { - "accessible_scopes": [ - "openzeppelin.token.erc721.library", - "openzeppelin.token.erc721.library.ERC721", - "openzeppelin.token.erc721.library.ERC721.approve" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 81, - "end_line": 158, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" - }, - "parent_location": [ - { - "end_col": 35, - "end_line": 21, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/uint256.cairo" - }, - "parent_location": [ - { - "end_col": 36, - "end_line": 162, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" - }, - "start_col": 13, - "start_line": 162 - }, - "While trying to retrieve the implicit argument 'range_check_ptr' in:" - ], - "start_col": 20, - "start_line": 21 - }, - "While expanding the reference 'range_check_ptr' in:" - ], - "start_col": 66, - "start_line": 158 - } - }, - "1145": { - "accessible_scopes": [ - "openzeppelin.token.erc721.library", - "openzeppelin.token.erc721.library.ERC721", - "openzeppelin.token.erc721.library.ERC721.approve" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 36, - "end_line": 159, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" - }, - "parent_location": [ - { - "end_col": 35, - "end_line": 162, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" - }, - "start_col": 27, - "start_line": 162 - }, - "While expanding the reference 'token_id' in:" - ], - "start_col": 19, - "start_line": 159 - } - }, - "1146": { - "accessible_scopes": [ - "openzeppelin.token.erc721.library", - "openzeppelin.token.erc721.library.ERC721", - "openzeppelin.token.erc721.library.ERC721.approve" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 36, - "end_line": 159, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" - }, - "parent_location": [ - { - "end_col": 35, - "end_line": 162, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" - }, - "start_col": 27, - "start_line": 162 - }, - "While expanding the reference 'token_id' in:" - ], - "start_col": 19, - "start_line": 159 - } - }, - "1147": { - "accessible_scopes": [ - "openzeppelin.token.erc721.library", - "openzeppelin.token.erc721.library.ERC721", - "openzeppelin.token.erc721.library.ERC721.approve" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 36, - "end_line": 162, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" - }, - "start_col": 13, - "start_line": 162 - } - }, - "1149": { - "accessible_scopes": [ - "openzeppelin.token.erc721.library", - "openzeppelin.token.erc721.library.ERC721", - "openzeppelin.token.erc721.library.ERC721.approve" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 64, - "end_line": 158, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" - }, - "parent_location": [ - { - "end_col": 43, - "end_line": 200, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/starknet/common/syscalls.cairo" - }, - "parent_location": [ - { - "end_col": 44, - "end_line": 166, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" - }, - "start_col": 24, - "start_line": 166 - }, - "While trying to retrieve the implicit argument 'syscall_ptr' in:" - ], - "start_col": 25, - "start_line": 200 - }, - "While expanding the reference 'syscall_ptr' in:" - ], - "start_col": 46, - "start_line": 158 - } - }, - "1150": { - "accessible_scopes": [ - "openzeppelin.token.erc721.library", - "openzeppelin.token.erc721.library.ERC721", - "openzeppelin.token.erc721.library.ERC721.approve" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 44, - "end_line": 166, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" - }, - "start_col": 24, - "start_line": 166 - } - }, - "1152": { - "accessible_scopes": [ - "openzeppelin.token.erc721.library", - "openzeppelin.token.erc721.library.ERC721", - "openzeppelin.token.erc721.library.ERC721.approve" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 36, - "end_line": 168, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" - }, - "start_col": 13, - "start_line": 168 - } - }, - "1154": { - "accessible_scopes": [ - "openzeppelin.token.erc721.library", - "openzeppelin.token.erc721.library.ERC721", - "openzeppelin.token.erc721.library.ERC721.approve" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 43, - "end_line": 200, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/starknet/common/syscalls.cairo" - }, - "parent_location": [ - { - "end_col": 44, - "end_line": 166, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" - }, - "parent_location": [ - { - "end_col": 33, - "end_line": 13, - "input_file": { - "filename": "autogen/starknet/storage_var/ERC721_owners/decl.cairo" - }, - "parent_location": [ - { - "end_col": 51, - "end_line": 172, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" - }, - "start_col": 23, - "start_line": 172 - }, - "While trying to retrieve the implicit argument 'syscall_ptr' in:" - ], - "start_col": 15, - "start_line": 13 - }, - "While expanding the reference 'syscall_ptr' in:" - ], - "start_col": 24, - "start_line": 166 - }, - "While trying to update the implicit return value 'syscall_ptr' in:" - ], - "start_col": 25, - "start_line": 200 - } - }, - "1155": { - "accessible_scopes": [ - "openzeppelin.token.erc721.library", - "openzeppelin.token.erc721.library.ERC721", - "openzeppelin.token.erc721.library.ERC721.approve" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 44, - "end_line": 158, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" - }, - "parent_location": [ - { - "end_col": 61, - "end_line": 13, - "input_file": { - "filename": "autogen/starknet/storage_var/ERC721_owners/decl.cairo" - }, - "parent_location": [ - { - "end_col": 51, - "end_line": 172, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" - }, - "start_col": 23, - "start_line": 172 - }, - "While trying to retrieve the implicit argument 'pedersen_ptr' in:" - ], - "start_col": 35, - "start_line": 13 - }, - "While expanding the reference 'pedersen_ptr' in:" - ], - "start_col": 18, - "start_line": 158 - } - }, - "1156": { - "accessible_scopes": [ - "openzeppelin.token.erc721.library", - "openzeppelin.token.erc721.library.ERC721", - "openzeppelin.token.erc721.library.ERC721.approve" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 35, - "end_line": 21, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/uint256.cairo" - }, - "parent_location": [ - { - "end_col": 36, - "end_line": 162, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" - }, - "parent_location": [ - { - "end_col": 78, - "end_line": 13, - "input_file": { - "filename": "autogen/starknet/storage_var/ERC721_owners/decl.cairo" - }, - "parent_location": [ - { - "end_col": 51, - "end_line": 172, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" - }, - "start_col": 23, - "start_line": 172 - }, - "While trying to retrieve the implicit argument 'range_check_ptr' in:" - ], - "start_col": 63, - "start_line": 13 - }, - "While expanding the reference 'range_check_ptr' in:" - ], - "start_col": 13, - "start_line": 162 - }, - "While trying to update the implicit return value 'range_check_ptr' in:" - ], - "start_col": 20, - "start_line": 21 - } - }, - "1157": { - "accessible_scopes": [ - "openzeppelin.token.erc721.library", - "openzeppelin.token.erc721.library.ERC721", - "openzeppelin.token.erc721.library.ERC721.approve" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 36, - "end_line": 159, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" - }, - "parent_location": [ - { - "end_col": 50, - "end_line": 172, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" - }, - "start_col": 42, - "start_line": 172 - }, - "While expanding the reference 'token_id' in:" - ], - "start_col": 19, - "start_line": 159 - } - }, - "1158": { - "accessible_scopes": [ - "openzeppelin.token.erc721.library", - "openzeppelin.token.erc721.library.ERC721", - "openzeppelin.token.erc721.library.ERC721.approve" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 36, - "end_line": 159, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" - }, - "parent_location": [ - { - "end_col": 50, - "end_line": 172, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" - }, - "start_col": 42, - "start_line": 172 - }, - "While expanding the reference 'token_id' in:" - ], - "start_col": 19, - "start_line": 159 - } - }, - "1159": { - "accessible_scopes": [ - "openzeppelin.token.erc721.library", - "openzeppelin.token.erc721.library.ERC721", - "openzeppelin.token.erc721.library.ERC721.approve" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 51, - "end_line": 172, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" - }, - "start_col": 23, - "start_line": 172 - } - }, - "1161": { - "accessible_scopes": [ - "openzeppelin.token.erc721.library", - "openzeppelin.token.erc721.library.ERC721", - "openzeppelin.token.erc721.library.ERC721.approve" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 17, - "end_line": 159, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" - }, - "parent_location": [ - { - "end_col": 39, - "end_line": 174, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" - }, - "start_col": 37, - "start_line": 174 - }, - "While expanding the reference 'to' in:" - ], - "start_col": 9, - "start_line": 159 - } - }, - "1162": { - "accessible_scopes": [ - "openzeppelin.token.erc721.library", - "openzeppelin.token.erc721.library.ERC721", - "openzeppelin.token.erc721.library.ERC721.approve" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 40, - "end_line": 174, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" - }, - "start_col": 13, - "start_line": 174 - } - }, - "1164": { - "accessible_scopes": [ - "openzeppelin.token.erc721.library", - "openzeppelin.token.erc721.library.ERC721", - "openzeppelin.token.erc721.library.ERC721.approve" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 28, - "end_line": 179, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" - }, - "start_col": 13, - "start_line": 179 - } - }, - "1165": { - "accessible_scopes": [ - "openzeppelin.token.erc721.library", - "openzeppelin.token.erc721.library.ERC721", - "openzeppelin.token.erc721.library.ERC721.approve" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 11, - "end_line": 179, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" - }, - "start_col": 9, - "start_line": 179 - } - }, - "1167": { - "accessible_scopes": [ - "openzeppelin.token.erc721.library", - "openzeppelin.token.erc721.library.ERC721", - "openzeppelin.token.erc721.library.ERC721.approve" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 33, - "end_line": 13, - "input_file": { - "filename": "autogen/starknet/storage_var/ERC721_owners/decl.cairo" - }, - "parent_location": [ - { - "end_col": 51, - "end_line": 172, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" - }, - "parent_location": [ - { - "end_col": 37, - "end_line": 322, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" - }, - "parent_location": [ - { - "end_col": 35, - "end_line": 180, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" - }, - "start_col": 13, - "start_line": 180 - }, - "While trying to retrieve the implicit argument 'syscall_ptr' in:" - ], - "start_col": 19, - "start_line": 322 - }, - "While expanding the reference 'syscall_ptr' in:" - ], - "start_col": 23, - "start_line": 172 - }, - "While trying to update the implicit return value 'syscall_ptr' in:" - ], - "start_col": 15, - "start_line": 13 - } - }, - "1168": { - "accessible_scopes": [ - "openzeppelin.token.erc721.library", - "openzeppelin.token.erc721.library.ERC721", - "openzeppelin.token.erc721.library.ERC721.approve" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 61, - "end_line": 13, - "input_file": { - "filename": "autogen/starknet/storage_var/ERC721_owners/decl.cairo" - }, - "parent_location": [ - { - "end_col": 51, - "end_line": 172, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" - }, - "parent_location": [ - { - "end_col": 65, - "end_line": 322, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" - }, - "parent_location": [ - { - "end_col": 35, - "end_line": 180, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" - }, - "start_col": 13, - "start_line": 180 - }, - "While trying to retrieve the implicit argument 'pedersen_ptr' in:" - ], - "start_col": 39, - "start_line": 322 - }, - "While expanding the reference 'pedersen_ptr' in:" - ], - "start_col": 23, - "start_line": 172 - }, - "While trying to update the implicit return value 'pedersen_ptr' in:" - ], - "start_col": 35, - "start_line": 13 - } - }, - "1169": { - "accessible_scopes": [ - "openzeppelin.token.erc721.library", - "openzeppelin.token.erc721.library.ERC721", - "openzeppelin.token.erc721.library.ERC721.approve" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 78, - "end_line": 13, - "input_file": { - "filename": "autogen/starknet/storage_var/ERC721_owners/decl.cairo" - }, - "parent_location": [ - { - "end_col": 51, - "end_line": 172, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" - }, - "parent_location": [ - { - "end_col": 82, - "end_line": 322, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" - }, - "parent_location": [ - { - "end_col": 35, - "end_line": 180, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" - }, - "start_col": 13, - "start_line": 180 - }, - "While trying to retrieve the implicit argument 'range_check_ptr' in:" - ], - "start_col": 67, - "start_line": 322 - }, - "While expanding the reference 'range_check_ptr' in:" - ], - "start_col": 23, - "start_line": 172 - }, - "While trying to update the implicit return value 'range_check_ptr' in:" - ], - "start_col": 63, - "start_line": 13 - } - }, - "1170": { - "accessible_scopes": [ - "openzeppelin.token.erc721.library", - "openzeppelin.token.erc721.library.ERC721", - "openzeppelin.token.erc721.library.ERC721.approve" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 17, - "end_line": 159, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" - }, - "parent_location": [ - { - "end_col": 24, - "end_line": 180, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" - }, - "start_col": 22, - "start_line": 180 - }, - "While expanding the reference 'to' in:" - ], - "start_col": 9, - "start_line": 159 - } - }, - "1171": { - "accessible_scopes": [ - "openzeppelin.token.erc721.library", - "openzeppelin.token.erc721.library.ERC721", - "openzeppelin.token.erc721.library.ERC721.approve" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 36, - "end_line": 159, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" - }, - "parent_location": [ - { - "end_col": 34, - "end_line": 180, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" - }, - "start_col": 26, - "start_line": 180 - }, - "While expanding the reference 'token_id' in:" - ], - "start_col": 19, - "start_line": 159 - } - }, - "1172": { - "accessible_scopes": [ - "openzeppelin.token.erc721.library", - "openzeppelin.token.erc721.library.ERC721", - "openzeppelin.token.erc721.library.ERC721.approve" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 36, - "end_line": 159, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" - }, - "parent_location": [ - { - "end_col": 34, - "end_line": 180, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" - }, - "start_col": 26, - "start_line": 180 - }, - "While expanding the reference 'token_id' in:" - ], - "start_col": 19, - "start_line": 159 - } - }, - "1173": { - "accessible_scopes": [ - "openzeppelin.token.erc721.library", - "openzeppelin.token.erc721.library.ERC721", - "openzeppelin.token.erc721.library.ERC721.approve" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 35, - "end_line": 180, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" - }, - "start_col": 13, - "start_line": 180 - } - }, - "1175": { - "accessible_scopes": [ - "openzeppelin.token.erc721.library", - "openzeppelin.token.erc721.library.ERC721", - "openzeppelin.token.erc721.library.ERC721.approve" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 65, - "end_line": 322, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" - }, - "parent_location": [ - { - "end_col": 35, - "end_line": 180, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" - }, - "parent_location": [ - { - "end_col": 44, - "end_line": 158, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" - }, - "parent_location": [ - { - "end_col": 23, - "end_line": 181, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" - }, - "start_col": 13, - "start_line": 181 - }, - "While trying to retrieve the implicit argument 'pedersen_ptr' in:" - ], - "start_col": 18, - "start_line": 158 - }, - "While expanding the reference 'pedersen_ptr' in:" - ], - "start_col": 13, - "start_line": 180 - }, - "While trying to update the implicit return value 'pedersen_ptr' in:" - ], - "start_col": 39, - "start_line": 322 - } - }, - "1176": { - "accessible_scopes": [ - "openzeppelin.token.erc721.library", - "openzeppelin.token.erc721.library.ERC721", - "openzeppelin.token.erc721.library.ERC721.approve" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 37, - "end_line": 322, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" - }, - "parent_location": [ - { - "end_col": 35, - "end_line": 180, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" - }, - "parent_location": [ - { - "end_col": 64, - "end_line": 158, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" - }, - "parent_location": [ - { - "end_col": 23, - "end_line": 181, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" - }, - "start_col": 13, - "start_line": 181 - }, - "While trying to retrieve the implicit argument 'syscall_ptr' in:" - ], - "start_col": 46, - "start_line": 158 - }, - "While expanding the reference 'syscall_ptr' in:" - ], - "start_col": 13, - "start_line": 180 - }, - "While trying to update the implicit return value 'syscall_ptr' in:" - ], - "start_col": 19, - "start_line": 322 - } - }, - "1177": { - "accessible_scopes": [ - "openzeppelin.token.erc721.library", - "openzeppelin.token.erc721.library.ERC721", - "openzeppelin.token.erc721.library.ERC721.approve" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 82, - "end_line": 322, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" - }, - "parent_location": [ - { - "end_col": 35, - "end_line": 180, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" - }, - "parent_location": [ - { - "end_col": 81, - "end_line": 158, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" - }, - "parent_location": [ - { - "end_col": 23, - "end_line": 181, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" - }, - "start_col": 13, - "start_line": 181 - }, - "While trying to retrieve the implicit argument 'range_check_ptr' in:" - ], - "start_col": 66, - "start_line": 158 - }, - "While expanding the reference 'range_check_ptr' in:" - ], - "start_col": 13, - "start_line": 180 - }, - "While trying to update the implicit return value 'range_check_ptr' in:" - ], - "start_col": 67, - "start_line": 322 - } - }, - "1178": { - "accessible_scopes": [ - "openzeppelin.token.erc721.library", - "openzeppelin.token.erc721.library.ERC721", - "openzeppelin.token.erc721.library.ERC721.approve" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 23, - "end_line": 181, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" - }, - "start_col": 13, - "start_line": 181 - } - }, - "1179": { - "accessible_scopes": [ - "openzeppelin.token.erc721.library", - "openzeppelin.token.erc721.library.ERC721", - "openzeppelin.token.erc721.library.ERC721.approve" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 33, - "end_line": 13, - "input_file": { - "filename": "autogen/starknet/storage_var/ERC721_owners/decl.cairo" - }, - "parent_location": [ - { - "end_col": 51, - "end_line": 172, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" - }, - "parent_location": [ - { - "end_col": 33, - "end_line": 15, - "input_file": { - "filename": "autogen/starknet/storage_var/ERC721_operator_approvals/decl.cairo" - }, - "parent_location": [ - { - "end_col": 78, - "end_line": 183, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" - }, - "start_col": 33, - "start_line": 183 - }, - "While trying to retrieve the implicit argument 'syscall_ptr' in:" - ], - "start_col": 15, - "start_line": 15 - }, - "While expanding the reference 'syscall_ptr' in:" - ], - "start_col": 23, - "start_line": 172 - }, - "While trying to update the implicit return value 'syscall_ptr' in:" - ], - "start_col": 15, - "start_line": 13 - } - }, - "1180": { - "accessible_scopes": [ - "openzeppelin.token.erc721.library", - "openzeppelin.token.erc721.library.ERC721", - "openzeppelin.token.erc721.library.ERC721.approve" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 61, - "end_line": 13, - "input_file": { - "filename": "autogen/starknet/storage_var/ERC721_owners/decl.cairo" - }, - "parent_location": [ - { - "end_col": 51, - "end_line": 172, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" - }, - "parent_location": [ - { - "end_col": 61, - "end_line": 15, - "input_file": { - "filename": "autogen/starknet/storage_var/ERC721_operator_approvals/decl.cairo" - }, - "parent_location": [ - { - "end_col": 78, - "end_line": 183, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" - }, - "start_col": 33, - "start_line": 183 - }, - "While trying to retrieve the implicit argument 'pedersen_ptr' in:" - ], - "start_col": 35, - "start_line": 15 - }, - "While expanding the reference 'pedersen_ptr' in:" - ], - "start_col": 23, - "start_line": 172 - }, - "While trying to update the implicit return value 'pedersen_ptr' in:" - ], - "start_col": 35, - "start_line": 13 - } - }, - "1181": { - "accessible_scopes": [ - "openzeppelin.token.erc721.library", - "openzeppelin.token.erc721.library.ERC721", - "openzeppelin.token.erc721.library.ERC721.approve" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 78, - "end_line": 13, - "input_file": { - "filename": "autogen/starknet/storage_var/ERC721_owners/decl.cairo" - }, - "parent_location": [ - { - "end_col": 51, - "end_line": 172, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" - }, - "parent_location": [ - { - "end_col": 78, - "end_line": 15, - "input_file": { - "filename": "autogen/starknet/storage_var/ERC721_operator_approvals/decl.cairo" - }, - "parent_location": [ - { - "end_col": 78, - "end_line": 183, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" - }, - "start_col": 33, - "start_line": 183 - }, - "While trying to retrieve the implicit argument 'range_check_ptr' in:" - ], - "start_col": 63, - "start_line": 15 - }, - "While expanding the reference 'range_check_ptr' in:" - ], - "start_col": 23, - "start_line": 172 - }, - "While trying to update the implicit return value 'range_check_ptr' in:" - ], - "start_col": 63, - "start_line": 13 - } - }, - "1182": { - "accessible_scopes": [ - "openzeppelin.token.erc721.library", - "openzeppelin.token.erc721.library.ERC721", - "openzeppelin.token.erc721.library.ERC721.approve" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 19, - "end_line": 172, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" - }, - "parent_location": [ - { - "end_col": 69, - "end_line": 183, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" - }, - "start_col": 64, - "start_line": 183 - }, - "While expanding the reference 'owner' in:" - ], - "start_col": 14, - "start_line": 172 - } - }, - "1183": { - "accessible_scopes": [ - "openzeppelin.token.erc721.library", - "openzeppelin.token.erc721.library.ERC721", - "openzeppelin.token.erc721.library.ERC721.approve" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 20, - "end_line": 166, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" - }, - "parent_location": [ - { - "end_col": 77, - "end_line": 183, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" - }, - "start_col": 71, - "start_line": 183 - }, - "While expanding the reference 'caller' in:" - ], - "start_col": 14, - "start_line": 166 - } - }, - "1184": { - "accessible_scopes": [ - "openzeppelin.token.erc721.library", - "openzeppelin.token.erc721.library.ERC721", - "openzeppelin.token.erc721.library.ERC721.approve" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 78, - "end_line": 183, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" - }, - "start_col": 33, - "start_line": 183 - } - }, - "1186": { - "accessible_scopes": [ - "openzeppelin.token.erc721.library", - "openzeppelin.token.erc721.library.ERC721", - "openzeppelin.token.erc721.library.ERC721.approve" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 45, - "end_line": 185, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" - }, - "start_col": 17, - "start_line": 185 - } - }, - "1188": { - "accessible_scopes": [ - "openzeppelin.token.erc721.library", - "openzeppelin.token.erc721.library.ERC721", - "openzeppelin.token.erc721.library.ERC721.approve" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 33, - "end_line": 15, - "input_file": { - "filename": "autogen/starknet/storage_var/ERC721_operator_approvals/decl.cairo" - }, - "parent_location": [ - { - "end_col": 78, - "end_line": 183, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" - }, - "parent_location": [ - { - "end_col": 37, - "end_line": 322, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" - }, - "parent_location": [ - { - "end_col": 35, - "end_line": 187, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" - }, - "start_col": 13, - "start_line": 187 - }, - "While trying to retrieve the implicit argument 'syscall_ptr' in:" - ], - "start_col": 19, - "start_line": 322 - }, - "While expanding the reference 'syscall_ptr' in:" - ], - "start_col": 33, - "start_line": 183 - }, - "While trying to update the implicit return value 'syscall_ptr' in:" - ], - "start_col": 15, - "start_line": 15 - } - }, - "1189": { - "accessible_scopes": [ - "openzeppelin.token.erc721.library", - "openzeppelin.token.erc721.library.ERC721", - "openzeppelin.token.erc721.library.ERC721.approve" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 61, - "end_line": 15, - "input_file": { - "filename": "autogen/starknet/storage_var/ERC721_operator_approvals/decl.cairo" - }, - "parent_location": [ - { - "end_col": 78, - "end_line": 183, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" - }, - "parent_location": [ - { - "end_col": 65, - "end_line": 322, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" - }, - "parent_location": [ - { - "end_col": 35, - "end_line": 187, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" - }, - "start_col": 13, - "start_line": 187 - }, - "While trying to retrieve the implicit argument 'pedersen_ptr' in:" - ], - "start_col": 39, - "start_line": 322 - }, - "While expanding the reference 'pedersen_ptr' in:" - ], - "start_col": 33, - "start_line": 183 - }, - "While trying to update the implicit return value 'pedersen_ptr' in:" - ], - "start_col": 35, - "start_line": 15 - } - }, - "1190": { - "accessible_scopes": [ - "openzeppelin.token.erc721.library", - "openzeppelin.token.erc721.library.ERC721", - "openzeppelin.token.erc721.library.ERC721.approve" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 78, - "end_line": 15, - "input_file": { - "filename": "autogen/starknet/storage_var/ERC721_operator_approvals/decl.cairo" - }, - "parent_location": [ - { - "end_col": 78, - "end_line": 183, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" - }, - "parent_location": [ - { - "end_col": 82, - "end_line": 322, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" - }, - "parent_location": [ - { - "end_col": 35, - "end_line": 187, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" - }, - "start_col": 13, - "start_line": 187 - }, - "While trying to retrieve the implicit argument 'range_check_ptr' in:" - ], - "start_col": 67, - "start_line": 322 - }, - "While expanding the reference 'range_check_ptr' in:" - ], - "start_col": 33, - "start_line": 183 - }, - "While trying to update the implicit return value 'range_check_ptr' in:" - ], - "start_col": 63, - "start_line": 15 - } - }, - "1191": { - "accessible_scopes": [ - "openzeppelin.token.erc721.library", - "openzeppelin.token.erc721.library.ERC721", - "openzeppelin.token.erc721.library.ERC721.approve" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 17, - "end_line": 159, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" - }, - "parent_location": [ - { - "end_col": 24, - "end_line": 187, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" - }, - "start_col": 22, - "start_line": 187 - }, - "While expanding the reference 'to' in:" - ], - "start_col": 9, - "start_line": 159 - } - }, - "1192": { - "accessible_scopes": [ - "openzeppelin.token.erc721.library", - "openzeppelin.token.erc721.library.ERC721", - "openzeppelin.token.erc721.library.ERC721.approve" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 36, - "end_line": 159, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" - }, - "parent_location": [ - { - "end_col": 34, - "end_line": 187, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" - }, - "start_col": 26, - "start_line": 187 - }, - "While expanding the reference 'token_id' in:" - ], - "start_col": 19, - "start_line": 159 - } - }, - "1193": { - "accessible_scopes": [ - "openzeppelin.token.erc721.library", - "openzeppelin.token.erc721.library.ERC721", - "openzeppelin.token.erc721.library.ERC721.approve" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 36, - "end_line": 159, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" - }, - "parent_location": [ - { - "end_col": 34, - "end_line": 187, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" - }, - "start_col": 26, - "start_line": 187 - }, - "While expanding the reference 'token_id' in:" - ], - "start_col": 19, - "start_line": 159 - } - }, - "1194": { - "accessible_scopes": [ - "openzeppelin.token.erc721.library", - "openzeppelin.token.erc721.library.ERC721", - "openzeppelin.token.erc721.library.ERC721.approve" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 35, - "end_line": 187, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" - }, - "start_col": 13, - "start_line": 187 - } - }, - "1196": { - "accessible_scopes": [ - "openzeppelin.token.erc721.library", - "openzeppelin.token.erc721.library.ERC721", - "openzeppelin.token.erc721.library.ERC721.approve" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 65, - "end_line": 322, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" - }, - "parent_location": [ - { - "end_col": 35, - "end_line": 187, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" - }, - "parent_location": [ - { - "end_col": 44, - "end_line": 158, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" - }, - "parent_location": [ - { - "end_col": 23, - "end_line": 188, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" - }, - "start_col": 13, - "start_line": 188 - }, - "While trying to retrieve the implicit argument 'pedersen_ptr' in:" - ], - "start_col": 18, - "start_line": 158 - }, - "While expanding the reference 'pedersen_ptr' in:" - ], - "start_col": 13, - "start_line": 187 - }, - "While trying to update the implicit return value 'pedersen_ptr' in:" - ], - "start_col": 39, - "start_line": 322 - } - }, - "1197": { - "accessible_scopes": [ - "openzeppelin.token.erc721.library", - "openzeppelin.token.erc721.library.ERC721", - "openzeppelin.token.erc721.library.ERC721.approve" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 37, - "end_line": 322, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" - }, - "parent_location": [ - { - "end_col": 35, - "end_line": 187, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" - }, - "parent_location": [ - { - "end_col": 64, - "end_line": 158, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" - }, - "parent_location": [ - { - "end_col": 23, - "end_line": 188, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" - }, - "start_col": 13, - "start_line": 188 - }, - "While trying to retrieve the implicit argument 'syscall_ptr' in:" - ], - "start_col": 46, - "start_line": 158 - }, - "While expanding the reference 'syscall_ptr' in:" - ], - "start_col": 13, - "start_line": 187 - }, - "While trying to update the implicit return value 'syscall_ptr' in:" - ], - "start_col": 19, - "start_line": 322 - } - }, - "1198": { - "accessible_scopes": [ - "openzeppelin.token.erc721.library", - "openzeppelin.token.erc721.library.ERC721", - "openzeppelin.token.erc721.library.ERC721.approve" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 82, - "end_line": 322, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" - }, - "parent_location": [ - { - "end_col": 35, - "end_line": 187, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" - }, - "parent_location": [ - { - "end_col": 81, - "end_line": 158, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" - }, - "parent_location": [ - { - "end_col": 23, - "end_line": 188, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" - }, - "start_col": 13, - "start_line": 188 - }, - "While trying to retrieve the implicit argument 'range_check_ptr' in:" - ], - "start_col": 66, - "start_line": 158 - }, - "While expanding the reference 'range_check_ptr' in:" - ], - "start_col": 13, - "start_line": 187 - }, - "While trying to update the implicit return value 'range_check_ptr' in:" - ], - "start_col": 67, - "start_line": 322 - } - }, - "1199": { - "accessible_scopes": [ - "openzeppelin.token.erc721.library", - "openzeppelin.token.erc721.library.ERC721", - "openzeppelin.token.erc721.library.ERC721.approve" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 23, - "end_line": 188, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" - }, - "start_col": 13, - "start_line": 188 - } - }, - "1200": { - "accessible_scopes": [ - "openzeppelin.token.erc721.library", - "openzeppelin.token.erc721.library.ERC721", - "openzeppelin.token.erc721.library.ERC721.set_approval_for_all" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 49, - "end_line": 192, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" - }, - "parent_location": [ - { - "end_col": 43, - "end_line": 200, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/starknet/common/syscalls.cairo" - }, - "parent_location": [ - { - "end_col": 44, - "end_line": 196, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" - }, - "start_col": 24, - "start_line": 196 - }, - "While trying to retrieve the implicit argument 'syscall_ptr' in:" - ], - "start_col": 25, - "start_line": 200 - }, - "While expanding the reference 'syscall_ptr' in:" - ], - "start_col": 31, - "start_line": 192 - } - }, - "1201": { - "accessible_scopes": [ - "openzeppelin.token.erc721.library", - "openzeppelin.token.erc721.library.ERC721", - "openzeppelin.token.erc721.library.ERC721.set_approval_for_all" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 44, - "end_line": 196, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" - }, - "start_col": 24, - "start_line": 196 - } - }, - "1203": { - "accessible_scopes": [ - "openzeppelin.token.erc721.library", - "openzeppelin.token.erc721.library.ERC721", - "openzeppelin.token.erc721.library.ERC721.set_approval_for_all" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 46, - "end_line": 198, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" - }, - "start_col": 29, - "start_line": 198 - } - }, - "1204": { - "accessible_scopes": [ - "openzeppelin.token.erc721.library", - "openzeppelin.token.erc721.library.ERC721", - "openzeppelin.token.erc721.library.ERC721.set_approval_for_all" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 47, - "end_line": 198, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" - }, - "start_col": 13, - "start_line": 198 - } - }, - "1206": { - "accessible_scopes": [ - "openzeppelin.token.erc721.library", - "openzeppelin.token.erc721.library.ERC721", - "openzeppelin.token.erc721.library.ERC721.set_approval_for_all" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 20, - "end_line": 196, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" - }, - "parent_location": [ - { - "end_col": 36, - "end_line": 207, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" - }, - "start_col": 30, - "start_line": 207 - }, - "While expanding the reference 'caller' in:" - ], - "start_col": 14, - "start_line": 196 - } - }, - "1207": { - "accessible_scopes": [ - "openzeppelin.token.erc721.library", - "openzeppelin.token.erc721.library.ERC721", - "openzeppelin.token.erc721.library.ERC721.set_approval_for_all" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 23, - "end_line": 193, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" - }, - "parent_location": [ - { - "end_col": 46, - "end_line": 207, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" - }, - "start_col": 38, - "start_line": 207 - }, - "While expanding the reference 'operator' in:" - ], - "start_col": 9, - "start_line": 193 - } - }, - "1208": { - "accessible_scopes": [ - "openzeppelin.token.erc721.library", - "openzeppelin.token.erc721.library.ERC721", - "openzeppelin.token.erc721.library.ERC721.set_approval_for_all" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 47, - "end_line": 207, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" - }, - "start_col": 13, - "start_line": 207 - } - }, - "1210": { - "accessible_scopes": [ - "openzeppelin.token.erc721.library", - "openzeppelin.token.erc721.library.ERC721", - "openzeppelin.token.erc721.library.ERC721.set_approval_for_all" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 33, - "end_line": 212, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" - }, - "start_col": 32, - "start_line": 212 - } - }, - "1212": { - "accessible_scopes": [ - "openzeppelin.token.erc721.library", - "openzeppelin.token.erc721.library.ERC721", - "openzeppelin.token.erc721.library.ERC721.set_approval_for_all" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 44, - "end_line": 212, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" - }, - "start_col": 32, - "start_line": 212 - } - }, - "1213": { - "accessible_scopes": [ - "openzeppelin.token.erc721.library", - "openzeppelin.token.erc721.library.ERC721", - "openzeppelin.token.erc721.library.ERC721.set_approval_for_all" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 49, - "end_line": 212, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" - }, - "start_col": 48, - "start_line": 212 - } - }, - "1215": { - "accessible_scopes": [ - "openzeppelin.token.erc721.library", - "openzeppelin.token.erc721.library.ERC721", - "openzeppelin.token.erc721.library.ERC721.set_approval_for_all" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 50, - "end_line": 212, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" - }, - "start_col": 13, - "start_line": 212 - } - }, - "1216": { - "accessible_scopes": [ - "openzeppelin.token.erc721.library", - "openzeppelin.token.erc721.library.ERC721", - "openzeppelin.token.erc721.library.ERC721.set_approval_for_all" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 43, - "end_line": 200, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/starknet/common/syscalls.cairo" - }, - "parent_location": [ - { - "end_col": 44, - "end_line": 196, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" - }, - "parent_location": [ - { - "end_col": 34, - "end_line": 23, - "input_file": { - "filename": "autogen/starknet/storage_var/ERC721_operator_approvals/decl.cairo" - }, - "parent_location": [ - { - "end_col": 89, - "end_line": 215, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" - }, - "start_col": 9, - "start_line": 215 - }, - "While trying to retrieve the implicit argument 'syscall_ptr' in:" - ], - "start_col": 16, - "start_line": 23 - }, - "While expanding the reference 'syscall_ptr' in:" - ], - "start_col": 24, - "start_line": 196 - }, - "While trying to update the implicit return value 'syscall_ptr' in:" - ], - "start_col": 25, - "start_line": 200 - } - }, - "1217": { - "accessible_scopes": [ - "openzeppelin.token.erc721.library", - "openzeppelin.token.erc721.library.ERC721", - "openzeppelin.token.erc721.library.ERC721.set_approval_for_all" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 77, - "end_line": 192, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" - }, - "parent_location": [ - { - "end_col": 62, - "end_line": 23, - "input_file": { - "filename": "autogen/starknet/storage_var/ERC721_operator_approvals/decl.cairo" - }, - "parent_location": [ - { - "end_col": 89, - "end_line": 215, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" - }, - "start_col": 9, - "start_line": 215 - }, - "While trying to retrieve the implicit argument 'pedersen_ptr' in:" - ], - "start_col": 36, - "start_line": 23 - }, - "While expanding the reference 'pedersen_ptr' in:" - ], - "start_col": 51, - "start_line": 192 - } - }, - "1218": { - "accessible_scopes": [ - "openzeppelin.token.erc721.library", - "openzeppelin.token.erc721.library.ERC721", - "openzeppelin.token.erc721.library.ERC721.set_approval_for_all" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 94, - "end_line": 192, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" - }, - "parent_location": [ - { - "end_col": 79, - "end_line": 23, - "input_file": { - "filename": "autogen/starknet/storage_var/ERC721_operator_approvals/decl.cairo" - }, - "parent_location": [ - { - "end_col": 89, - "end_line": 215, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" - }, - "start_col": 9, - "start_line": 215 - }, - "While trying to retrieve the implicit argument 'range_check_ptr' in:" - ], - "start_col": 64, - "start_line": 23 - }, - "While expanding the reference 'range_check_ptr' in:" - ], - "start_col": 79, - "start_line": 192 - } - }, - "1219": { - "accessible_scopes": [ - "openzeppelin.token.erc721.library", - "openzeppelin.token.erc721.library.ERC721", - "openzeppelin.token.erc721.library.ERC721.set_approval_for_all" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 20, - "end_line": 196, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" - }, - "parent_location": [ - { - "end_col": 53, - "end_line": 215, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" - }, - "start_col": 47, - "start_line": 215 - }, - "While expanding the reference 'caller' in:" - ], - "start_col": 14, - "start_line": 196 - } - }, - "1220": { - "accessible_scopes": [ - "openzeppelin.token.erc721.library", - "openzeppelin.token.erc721.library.ERC721", - "openzeppelin.token.erc721.library.ERC721.set_approval_for_all" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 23, - "end_line": 193, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" - }, - "parent_location": [ - { - "end_col": 72, - "end_line": 215, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" - }, - "start_col": 64, - "start_line": 215 - }, - "While expanding the reference 'operator' in:" - ], - "start_col": 9, - "start_line": 193 - } - }, - "1221": { - "accessible_scopes": [ - "openzeppelin.token.erc721.library", - "openzeppelin.token.erc721.library.ERC721", - "openzeppelin.token.erc721.library.ERC721.set_approval_for_all" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 39, - "end_line": 193, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" - }, - "parent_location": [ - { - "end_col": 88, - "end_line": 215, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" - }, - "start_col": 80, - "start_line": 215 - }, - "While expanding the reference 'approved' in:" - ], - "start_col": 25, - "start_line": 193 - } - }, - "1222": { - "accessible_scopes": [ - "openzeppelin.token.erc721.library", - "openzeppelin.token.erc721.library.ERC721", - "openzeppelin.token.erc721.library.ERC721.set_approval_for_all" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 89, - "end_line": 215, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" - }, - "start_col": 9, - "start_line": 215 - } - }, - "1224": { - "accessible_scopes": [ - "openzeppelin.token.erc721.library", - "openzeppelin.token.erc721.library.ERC721", - "openzeppelin.token.erc721.library.ERC721.set_approval_for_all" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 34, - "end_line": 23, - "input_file": { - "filename": "autogen/starknet/storage_var/ERC721_operator_approvals/decl.cairo" - }, - "parent_location": [ - { - "end_col": 89, - "end_line": 215, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" - }, - "parent_location": [ - { - "end_col": 29, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/event/ApprovalForAll/a7a8ae41be29ac9f4f6c3b7837c448d787ca051dd1ade98f409e54d33d112504.cairo" - }, - "parent_location": [ - { - "end_col": 20, - "end_line": 36, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" - }, - "parent_location": [ - { - "end_col": 56, - "end_line": 216, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" - }, - "start_col": 9, - "start_line": 216 - }, - "While trying to retrieve the implicit argument 'syscall_ptr' in:" - ], - "start_col": 6, - "start_line": 36 - }, - "While handling event:" - ], - "start_col": 11, - "start_line": 1 - }, - "While expanding the reference 'syscall_ptr' in:" - ], - "start_col": 9, - "start_line": 215 - }, - "While trying to update the implicit return value 'syscall_ptr' in:" - ], - "start_col": 16, - "start_line": 23 - } - }, - "1225": { - "accessible_scopes": [ - "openzeppelin.token.erc721.library", - "openzeppelin.token.erc721.library.ERC721", - "openzeppelin.token.erc721.library.ERC721.set_approval_for_all" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 79, - "end_line": 23, - "input_file": { - "filename": "autogen/starknet/storage_var/ERC721_operator_approvals/decl.cairo" - }, - "parent_location": [ - { - "end_col": 89, - "end_line": 215, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" - }, - "parent_location": [ - { - "end_col": 46, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/event/ApprovalForAll/a7a8ae41be29ac9f4f6c3b7837c448d787ca051dd1ade98f409e54d33d112504.cairo" - }, - "parent_location": [ - { - "end_col": 20, - "end_line": 36, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" - }, - "parent_location": [ - { - "end_col": 56, - "end_line": 216, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" - }, - "start_col": 9, - "start_line": 216 - }, - "While trying to retrieve the implicit argument 'range_check_ptr' in:" - ], - "start_col": 6, - "start_line": 36 - }, - "While handling event:" - ], - "start_col": 31, - "start_line": 1 - }, - "While expanding the reference 'range_check_ptr' in:" - ], - "start_col": 9, - "start_line": 215 - }, - "While trying to update the implicit return value 'range_check_ptr' in:" - ], - "start_col": 64, - "start_line": 23 - } - }, - "1226": { - "accessible_scopes": [ - "openzeppelin.token.erc721.library", - "openzeppelin.token.erc721.library.ERC721", - "openzeppelin.token.erc721.library.ERC721.set_approval_for_all" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 20, - "end_line": 196, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" - }, - "parent_location": [ - { - "end_col": 35, - "end_line": 216, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" - }, - "start_col": 29, - "start_line": 216 - }, - "While expanding the reference 'caller' in:" - ], - "start_col": 14, - "start_line": 196 - } - }, - "1227": { - "accessible_scopes": [ - "openzeppelin.token.erc721.library", - "openzeppelin.token.erc721.library.ERC721", - "openzeppelin.token.erc721.library.ERC721.set_approval_for_all" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 23, - "end_line": 193, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" - }, - "parent_location": [ - { - "end_col": 45, - "end_line": 216, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" - }, - "start_col": 37, - "start_line": 216 - }, - "While expanding the reference 'operator' in:" - ], - "start_col": 9, - "start_line": 193 - } - }, - "1228": { - "accessible_scopes": [ - "openzeppelin.token.erc721.library", - "openzeppelin.token.erc721.library.ERC721", - "openzeppelin.token.erc721.library.ERC721.set_approval_for_all" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 39, - "end_line": 193, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" - }, - "parent_location": [ - { - "end_col": 55, - "end_line": 216, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" - }, - "start_col": 47, - "start_line": 216 - }, - "While expanding the reference 'approved' in:" - ], - "start_col": 25, - "start_line": 193 - } - }, - "1229": { - "accessible_scopes": [ - "openzeppelin.token.erc721.library", - "openzeppelin.token.erc721.library.ERC721", - "openzeppelin.token.erc721.library.ERC721.set_approval_for_all" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 56, - "end_line": 216, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" - }, - "start_col": 9, - "start_line": 216 - } - }, - "1231": { - "accessible_scopes": [ - "openzeppelin.token.erc721.library", - "openzeppelin.token.erc721.library.ERC721", - "openzeppelin.token.erc721.library.ERC721.set_approval_for_all" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 29, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/event/ApprovalForAll/a7a8ae41be29ac9f4f6c3b7837c448d787ca051dd1ade98f409e54d33d112504.cairo" - }, - "parent_location": [ - { - "end_col": 20, - "end_line": 36, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" - }, - "parent_location": [ - { - "end_col": 56, - "end_line": 216, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" - }, - "parent_location": [ - { - "end_col": 49, - "end_line": 192, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" - }, - "parent_location": [ - { - "end_col": 19, - "end_line": 217, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" - }, - "start_col": 9, - "start_line": 217 - }, - "While trying to retrieve the implicit argument 'syscall_ptr' in:" - ], - "start_col": 31, - "start_line": 192 - }, - "While expanding the reference 'syscall_ptr' in:" - ], - "start_col": 9, - "start_line": 216 - }, - "While trying to update the implicit return value 'syscall_ptr' in:" - ], - "start_col": 6, - "start_line": 36 - }, - "While handling event:" - ], - "start_col": 11, - "start_line": 1 - } - }, - "1232": { - "accessible_scopes": [ - "openzeppelin.token.erc721.library", - "openzeppelin.token.erc721.library.ERC721", - "openzeppelin.token.erc721.library.ERC721.set_approval_for_all" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 62, - "end_line": 23, - "input_file": { - "filename": "autogen/starknet/storage_var/ERC721_operator_approvals/decl.cairo" - }, - "parent_location": [ - { - "end_col": 89, - "end_line": 215, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" - }, - "parent_location": [ - { - "end_col": 77, - "end_line": 192, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" - }, - "parent_location": [ - { - "end_col": 19, - "end_line": 217, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" - }, - "start_col": 9, - "start_line": 217 - }, - "While trying to retrieve the implicit argument 'pedersen_ptr' in:" - ], - "start_col": 51, - "start_line": 192 - }, - "While expanding the reference 'pedersen_ptr' in:" - ], - "start_col": 9, - "start_line": 215 - }, - "While trying to update the implicit return value 'pedersen_ptr' in:" - ], - "start_col": 36, - "start_line": 23 - } - }, - "1233": { - "accessible_scopes": [ - "openzeppelin.token.erc721.library", - "openzeppelin.token.erc721.library.ERC721", - "openzeppelin.token.erc721.library.ERC721.set_approval_for_all" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 46, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/event/ApprovalForAll/a7a8ae41be29ac9f4f6c3b7837c448d787ca051dd1ade98f409e54d33d112504.cairo" - }, - "parent_location": [ - { - "end_col": 20, - "end_line": 36, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" - }, - "parent_location": [ - { - "end_col": 56, - "end_line": 216, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" - }, - "parent_location": [ - { - "end_col": 94, - "end_line": 192, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" - }, - "parent_location": [ - { - "end_col": 19, - "end_line": 217, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" - }, - "start_col": 9, - "start_line": 217 - }, - "While trying to retrieve the implicit argument 'range_check_ptr' in:" - ], - "start_col": 79, - "start_line": 192 - }, - "While expanding the reference 'range_check_ptr' in:" - ], - "start_col": 9, - "start_line": 216 - }, - "While trying to update the implicit return value 'range_check_ptr' in:" - ], - "start_col": 6, - "start_line": 36 - }, - "While handling event:" - ], - "start_col": 31, - "start_line": 1 - } - }, - "1234": { - "accessible_scopes": [ - "openzeppelin.token.erc721.library", - "openzeppelin.token.erc721.library.ERC721", - "openzeppelin.token.erc721.library.ERC721.set_approval_for_all" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 19, - "end_line": 217, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" - }, - "start_col": 9, - "start_line": 217 - } - }, - "1235": { - "accessible_scopes": [ - "openzeppelin.token.erc721.library", - "openzeppelin.token.erc721.library.ERC721", - "openzeppelin.token.erc721.library.ERC721.transfer_from" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 22, - "end_line": 223, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" - }, - "start_col": 9, - "start_line": 223 - } - }, - "1237": { - "accessible_scopes": [ - "openzeppelin.token.erc721.library", - "openzeppelin.token.erc721.library.ERC721", - "openzeppelin.token.erc721.library.ERC721.transfer_from" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 87, - "end_line": 220, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" - }, - "parent_location": [ - { - "end_col": 35, - "end_line": 21, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/uint256.cairo" - }, - "parent_location": [ - { - "end_col": 36, - "end_line": 225, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" - }, - "start_col": 13, - "start_line": 225 - }, - "While trying to retrieve the implicit argument 'range_check_ptr' in:" - ], - "start_col": 20, - "start_line": 21 - }, - "While expanding the reference 'range_check_ptr' in:" - ], - "start_col": 72, - "start_line": 220 - } - }, - "1238": { - "accessible_scopes": [ - "openzeppelin.token.erc721.library", - "openzeppelin.token.erc721.library.ERC721", - "openzeppelin.token.erc721.library.ERC721.transfer_from" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 49, - "end_line": 221, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" - }, - "parent_location": [ - { - "end_col": 35, - "end_line": 225, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" - }, - "start_col": 27, - "start_line": 225 - }, - "While expanding the reference 'token_id' in:" - ], - "start_col": 32, - "start_line": 221 - } - }, - "1239": { - "accessible_scopes": [ - "openzeppelin.token.erc721.library", - "openzeppelin.token.erc721.library.ERC721", - "openzeppelin.token.erc721.library.ERC721.transfer_from" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 49, - "end_line": 221, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" - }, - "parent_location": [ - { - "end_col": 35, - "end_line": 225, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" - }, - "start_col": 27, - "start_line": 225 - }, - "While expanding the reference 'token_id' in:" - ], - "start_col": 32, - "start_line": 221 - } - }, - "1240": { - "accessible_scopes": [ - "openzeppelin.token.erc721.library", - "openzeppelin.token.erc721.library.ERC721", - "openzeppelin.token.erc721.library.ERC721.transfer_from" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 36, - "end_line": 225, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" - }, - "start_col": 13, - "start_line": 225 - } - }, - "1242": { - "accessible_scopes": [ - "openzeppelin.token.erc721.library", - "openzeppelin.token.erc721.library.ERC721", - "openzeppelin.token.erc721.library.ERC721.transfer_from" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 70, - "end_line": 220, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" - }, - "parent_location": [ - { - "end_col": 43, - "end_line": 200, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/starknet/common/syscalls.cairo" - }, - "parent_location": [ - { - "end_col": 44, - "end_line": 227, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" - }, - "start_col": 24, - "start_line": 227 - }, - "While trying to retrieve the implicit argument 'syscall_ptr' in:" - ], - "start_col": 25, - "start_line": 200 - }, - "While expanding the reference 'syscall_ptr' in:" - ], - "start_col": 52, - "start_line": 220 - } - }, - "1243": { - "accessible_scopes": [ - "openzeppelin.token.erc721.library", - "openzeppelin.token.erc721.library.ERC721", - "openzeppelin.token.erc721.library.ERC721.transfer_from" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 44, - "end_line": 227, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" - }, - "start_col": 24, - "start_line": 227 - } - }, - "1245": { - "accessible_scopes": [ - "openzeppelin.token.erc721.library", - "openzeppelin.token.erc721.library.ERC721", - "openzeppelin.token.erc721.library.ERC721.transfer_from" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 20, - "end_line": 227, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" - }, - "parent_location": [ - { - "end_col": 20, - "end_line": 227, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" - }, - "start_col": 14, - "start_line": 227 - }, - "While auto generating local variable for 'caller'." - ], - "start_col": 14, - "start_line": 227 - } - }, - "1246": { - "accessible_scopes": [ - "openzeppelin.token.erc721.library", - "openzeppelin.token.erc721.library.ERC721", - "openzeppelin.token.erc721.library.ERC721.transfer_from" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 50, - "end_line": 220, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" - }, - "parent_location": [ - { - "end_col": 58, - "end_line": 283, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" - }, - "parent_location": [ - { - "end_col": 66, - "end_line": 228, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" - }, - "start_col": 27, - "start_line": 228 - }, - "While trying to retrieve the implicit argument 'pedersen_ptr' in:" - ], - "start_col": 32, - "start_line": 283 - }, - "While expanding the reference 'pedersen_ptr' in:" - ], - "start_col": 24, - "start_line": 220 - } - }, - "1247": { - "accessible_scopes": [ - "openzeppelin.token.erc721.library", - "openzeppelin.token.erc721.library.ERC721", - "openzeppelin.token.erc721.library.ERC721.transfer_from" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 43, - "end_line": 200, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/starknet/common/syscalls.cairo" - }, - "parent_location": [ - { - "end_col": 44, - "end_line": 227, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" - }, - "parent_location": [ - { - "end_col": 78, - "end_line": 283, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" - }, - "parent_location": [ - { - "end_col": 66, - "end_line": 228, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" - }, - "start_col": 27, - "start_line": 228 - }, - "While trying to retrieve the implicit argument 'syscall_ptr' in:" - ], - "start_col": 60, - "start_line": 283 - }, - "While expanding the reference 'syscall_ptr' in:" - ], - "start_col": 24, - "start_line": 227 - }, - "While trying to update the implicit return value 'syscall_ptr' in:" - ], - "start_col": 25, - "start_line": 200 - } - }, - "1248": { - "accessible_scopes": [ - "openzeppelin.token.erc721.library", - "openzeppelin.token.erc721.library.ERC721", - "openzeppelin.token.erc721.library.ERC721.transfer_from" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 35, - "end_line": 21, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/uint256.cairo" - }, - "parent_location": [ - { - "end_col": 36, - "end_line": 225, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" - }, - "parent_location": [ - { - "end_col": 95, - "end_line": 283, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" - }, - "parent_location": [ - { - "end_col": 66, - "end_line": 228, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" - }, - "start_col": 27, - "start_line": 228 - }, - "While trying to retrieve the implicit argument 'range_check_ptr' in:" - ], - "start_col": 80, - "start_line": 283 - }, - "While expanding the reference 'range_check_ptr' in:" - ], - "start_col": 13, - "start_line": 225 - }, - "While trying to update the implicit return value 'range_check_ptr' in:" - ], - "start_col": 20, - "start_line": 21 - } - }, - "1249": { - "accessible_scopes": [ - "openzeppelin.token.erc721.library", - "openzeppelin.token.erc721.library.ERC721", - "openzeppelin.token.erc721.library.ERC721.transfer_from" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 20, - "end_line": 227, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" - }, - "parent_location": [ - { - "end_col": 20, - "end_line": 227, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" - }, - "parent_location": [ - { - "end_col": 55, - "end_line": 228, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" - }, - "start_col": 49, - "start_line": 228 - }, - "While expanding the reference 'caller' in:" - ], - "start_col": 14, - "start_line": 227 - }, - "While auto generating local variable for 'caller'." - ], - "start_col": 14, - "start_line": 227 - } - }, - "1250": { - "accessible_scopes": [ - "openzeppelin.token.erc721.library", - "openzeppelin.token.erc721.library.ERC721", - "openzeppelin.token.erc721.library.ERC721.transfer_from" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 49, - "end_line": 221, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" - }, - "parent_location": [ - { - "end_col": 65, - "end_line": 228, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" - }, - "start_col": 57, - "start_line": 228 - }, - "While expanding the reference 'token_id' in:" - ], - "start_col": 32, - "start_line": 221 - } - }, - "1251": { - "accessible_scopes": [ - "openzeppelin.token.erc721.library", - "openzeppelin.token.erc721.library.ERC721", - "openzeppelin.token.erc721.library.ERC721.transfer_from" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 49, - "end_line": 221, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" - }, - "parent_location": [ - { - "end_col": 65, - "end_line": 228, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" - }, - "start_col": 57, - "start_line": 228 - }, - "While expanding the reference 'token_id' in:" - ], - "start_col": 32, - "start_line": 221 - } - }, - "1252": { - "accessible_scopes": [ - "openzeppelin.token.erc721.library", - "openzeppelin.token.erc721.library.ERC721", - "openzeppelin.token.erc721.library.ERC721.transfer_from" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 66, - "end_line": 228, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" - }, - "start_col": 27, - "start_line": 228 - } - }, - "1254": { - "accessible_scopes": [ - "openzeppelin.token.erc721.library", - "openzeppelin.token.erc721.library.ERC721", - "openzeppelin.token.erc721.library.ERC721.transfer_from" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 49, - "end_line": 231, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" - }, - "start_col": 29, - "start_line": 231 - } - }, - "1255": { - "accessible_scopes": [ - "openzeppelin.token.erc721.library", - "openzeppelin.token.erc721.library.ERC721", - "openzeppelin.token.erc721.library.ERC721.transfer_from" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 50, - "end_line": 231, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" - }, - "start_col": 13, - "start_line": 231 - } - }, - "1257": { - "accessible_scopes": [ - "openzeppelin.token.erc721.library", - "openzeppelin.token.erc721.library.ERC721", - "openzeppelin.token.erc721.library.ERC721.transfer_from" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 78, - "end_line": 283, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" - }, - "parent_location": [ - { - "end_col": 66, - "end_line": 228, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" - }, - "parent_location": [ - { - "end_col": 38, - "end_line": 331, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" - }, - "parent_location": [ - { - "end_col": 39, - "end_line": 239, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" - }, - "start_col": 9, - "start_line": 239 - }, - "While trying to retrieve the implicit argument 'syscall_ptr' in:" - ], - "start_col": 20, - "start_line": 331 - }, - "While expanding the reference 'syscall_ptr' in:" - ], - "start_col": 27, - "start_line": 228 - }, - "While trying to update the implicit return value 'syscall_ptr' in:" - ], - "start_col": 60, - "start_line": 283 - } - }, - "1258": { - "accessible_scopes": [ - "openzeppelin.token.erc721.library", - "openzeppelin.token.erc721.library.ERC721", - "openzeppelin.token.erc721.library.ERC721.transfer_from" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 58, - "end_line": 283, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" - }, - "parent_location": [ - { - "end_col": 66, - "end_line": 228, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" - }, - "parent_location": [ - { - "end_col": 66, - "end_line": 331, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" - }, - "parent_location": [ - { - "end_col": 39, - "end_line": 239, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" - }, - "start_col": 9, - "start_line": 239 - }, - "While trying to retrieve the implicit argument 'pedersen_ptr' in:" - ], - "start_col": 40, - "start_line": 331 - }, - "While expanding the reference 'pedersen_ptr' in:" - ], - "start_col": 27, - "start_line": 228 - }, - "While trying to update the implicit return value 'pedersen_ptr' in:" - ], - "start_col": 32, - "start_line": 283 - } - }, - "1259": { - "accessible_scopes": [ - "openzeppelin.token.erc721.library", - "openzeppelin.token.erc721.library.ERC721", - "openzeppelin.token.erc721.library.ERC721.transfer_from" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 95, - "end_line": 283, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" - }, - "parent_location": [ - { - "end_col": 66, - "end_line": 228, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" - }, - "parent_location": [ - { - "end_col": 83, - "end_line": 331, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" - }, - "parent_location": [ - { - "end_col": 39, - "end_line": 239, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" - }, - "start_col": 9, - "start_line": 239 - }, - "While trying to retrieve the implicit argument 'range_check_ptr' in:" - ], - "start_col": 68, - "start_line": 331 - }, - "While expanding the reference 'range_check_ptr' in:" - ], - "start_col": 27, - "start_line": 228 - }, - "While trying to update the implicit return value 'range_check_ptr' in:" - ], - "start_col": 80, - "start_line": 283 - } - }, - "1260": { - "accessible_scopes": [ - "openzeppelin.token.erc721.library", - "openzeppelin.token.erc721.library.ERC721", - "openzeppelin.token.erc721.library.ERC721.transfer_from" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 20, - "end_line": 221, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" - }, - "parent_location": [ - { - "end_col": 24, - "end_line": 239, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" - }, - "start_col": 19, - "start_line": 239 - }, - "While expanding the reference 'from_' in:" - ], - "start_col": 9, - "start_line": 221 - } - }, - "1261": { - "accessible_scopes": [ - "openzeppelin.token.erc721.library", - "openzeppelin.token.erc721.library.ERC721", - "openzeppelin.token.erc721.library.ERC721.transfer_from" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 30, - "end_line": 221, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" - }, - "parent_location": [ - { - "end_col": 28, - "end_line": 239, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" - }, - "start_col": 26, - "start_line": 239 - }, - "While expanding the reference 'to' in:" - ], - "start_col": 22, - "start_line": 221 - } - }, - "1262": { - "accessible_scopes": [ - "openzeppelin.token.erc721.library", - "openzeppelin.token.erc721.library.ERC721", - "openzeppelin.token.erc721.library.ERC721.transfer_from" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 49, - "end_line": 221, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" - }, - "parent_location": [ - { - "end_col": 38, - "end_line": 239, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" - }, - "start_col": 30, - "start_line": 239 - }, - "While expanding the reference 'token_id' in:" - ], - "start_col": 32, - "start_line": 221 - } - }, - "1263": { - "accessible_scopes": [ - "openzeppelin.token.erc721.library", - "openzeppelin.token.erc721.library.ERC721", - "openzeppelin.token.erc721.library.ERC721.transfer_from" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 49, - "end_line": 221, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" - }, - "parent_location": [ - { - "end_col": 38, - "end_line": 239, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" - }, - "start_col": 30, - "start_line": 239 - }, - "While expanding the reference 'token_id' in:" - ], - "start_col": 32, - "start_line": 221 - } - }, - "1264": { - "accessible_scopes": [ - "openzeppelin.token.erc721.library", - "openzeppelin.token.erc721.library.ERC721", - "openzeppelin.token.erc721.library.ERC721.transfer_from" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 39, - "end_line": 239, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" - }, - "start_col": 9, - "start_line": 239 - } - }, - "1266": { - "accessible_scopes": [ - "openzeppelin.token.erc721.library", - "openzeppelin.token.erc721.library.ERC721", - "openzeppelin.token.erc721.library.ERC721.transfer_from" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 66, - "end_line": 331, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" - }, - "parent_location": [ - { - "end_col": 39, - "end_line": 239, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" - }, - "parent_location": [ - { - "end_col": 50, - "end_line": 220, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" - }, - "parent_location": [ - { - "end_col": 19, - "end_line": 240, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" - }, - "start_col": 9, - "start_line": 240 - }, - "While trying to retrieve the implicit argument 'pedersen_ptr' in:" - ], - "start_col": 24, - "start_line": 220 - }, - "While expanding the reference 'pedersen_ptr' in:" - ], - "start_col": 9, - "start_line": 239 - }, - "While trying to update the implicit return value 'pedersen_ptr' in:" - ], - "start_col": 40, - "start_line": 331 - } - }, - "1267": { - "accessible_scopes": [ - "openzeppelin.token.erc721.library", - "openzeppelin.token.erc721.library.ERC721", - "openzeppelin.token.erc721.library.ERC721.transfer_from" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 38, - "end_line": 331, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" - }, - "parent_location": [ - { - "end_col": 39, - "end_line": 239, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" - }, - "parent_location": [ - { - "end_col": 70, - "end_line": 220, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" - }, - "parent_location": [ - { - "end_col": 19, - "end_line": 240, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" - }, - "start_col": 9, - "start_line": 240 - }, - "While trying to retrieve the implicit argument 'syscall_ptr' in:" - ], - "start_col": 52, - "start_line": 220 - }, - "While expanding the reference 'syscall_ptr' in:" - ], - "start_col": 9, - "start_line": 239 - }, - "While trying to update the implicit return value 'syscall_ptr' in:" - ], - "start_col": 20, - "start_line": 331 - } - }, - "1268": { - "accessible_scopes": [ - "openzeppelin.token.erc721.library", - "openzeppelin.token.erc721.library.ERC721", - "openzeppelin.token.erc721.library.ERC721.transfer_from" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 83, - "end_line": 331, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" - }, - "parent_location": [ - { - "end_col": 39, - "end_line": 239, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" - }, - "parent_location": [ - { - "end_col": 87, - "end_line": 220, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" - }, - "parent_location": [ - { - "end_col": 19, - "end_line": 240, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" - }, - "start_col": 9, - "start_line": 240 - }, - "While trying to retrieve the implicit argument 'range_check_ptr' in:" - ], - "start_col": 72, - "start_line": 220 - }, - "While expanding the reference 'range_check_ptr' in:" - ], - "start_col": 9, - "start_line": 239 - }, - "While trying to update the implicit return value 'range_check_ptr' in:" - ], - "start_col": 68, - "start_line": 331 - } - }, - "1269": { - "accessible_scopes": [ - "openzeppelin.token.erc721.library", - "openzeppelin.token.erc721.library.ERC721", - "openzeppelin.token.erc721.library.ERC721.transfer_from" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 19, - "end_line": 240, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" - }, - "start_col": 9, - "start_line": 240 - } - }, - "1270": { - "accessible_scopes": [ - "openzeppelin.token.erc721.library", - "openzeppelin.token.erc721.library.ERC721", - "openzeppelin.token.erc721.library.ERC721.safe_transfer_from" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 22, - "end_line": 246, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" - }, - "start_col": 9, - "start_line": 246 - } - }, - "1272": { - "accessible_scopes": [ - "openzeppelin.token.erc721.library", - "openzeppelin.token.erc721.library.ERC721", - "openzeppelin.token.erc721.library.ERC721.safe_transfer_from" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 92, - "end_line": 243, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" - }, - "parent_location": [ - { - "end_col": 35, - "end_line": 21, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/uint256.cairo" - }, - "parent_location": [ - { - "end_col": 36, - "end_line": 248, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" - }, - "start_col": 13, - "start_line": 248 - }, - "While trying to retrieve the implicit argument 'range_check_ptr' in:" - ], - "start_col": 20, - "start_line": 21 - }, - "While expanding the reference 'range_check_ptr' in:" - ], - "start_col": 77, - "start_line": 243 - } - }, - "1273": { - "accessible_scopes": [ - "openzeppelin.token.erc721.library", - "openzeppelin.token.erc721.library.ERC721", - "openzeppelin.token.erc721.library.ERC721.safe_transfer_from" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 49, - "end_line": 244, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" - }, - "parent_location": [ - { - "end_col": 35, - "end_line": 248, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" - }, - "start_col": 27, - "start_line": 248 - }, - "While expanding the reference 'token_id' in:" - ], - "start_col": 32, - "start_line": 244 - } - }, - "1274": { - "accessible_scopes": [ - "openzeppelin.token.erc721.library", - "openzeppelin.token.erc721.library.ERC721", - "openzeppelin.token.erc721.library.ERC721.safe_transfer_from" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 49, - "end_line": 244, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" - }, - "parent_location": [ - { - "end_col": 35, - "end_line": 248, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" - }, - "start_col": 27, - "start_line": 248 - }, - "While expanding the reference 'token_id' in:" - ], - "start_col": 32, - "start_line": 244 - } - }, - "1275": { - "accessible_scopes": [ - "openzeppelin.token.erc721.library", - "openzeppelin.token.erc721.library.ERC721", - "openzeppelin.token.erc721.library.ERC721.safe_transfer_from" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 36, - "end_line": 248, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" - }, - "start_col": 13, - "start_line": 248 - } - }, - "1277": { - "accessible_scopes": [ - "openzeppelin.token.erc721.library", - "openzeppelin.token.erc721.library.ERC721", - "openzeppelin.token.erc721.library.ERC721.safe_transfer_from" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 75, - "end_line": 243, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" - }, - "parent_location": [ - { - "end_col": 43, - "end_line": 200, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/starknet/common/syscalls.cairo" - }, - "parent_location": [ - { - "end_col": 44, - "end_line": 250, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" - }, - "start_col": 24, - "start_line": 250 - }, - "While trying to retrieve the implicit argument 'syscall_ptr' in:" - ], - "start_col": 25, - "start_line": 200 - }, - "While expanding the reference 'syscall_ptr' in:" - ], - "start_col": 57, - "start_line": 243 - } - }, - "1278": { - "accessible_scopes": [ - "openzeppelin.token.erc721.library", - "openzeppelin.token.erc721.library.ERC721", - "openzeppelin.token.erc721.library.ERC721.safe_transfer_from" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 44, - "end_line": 250, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" - }, - "start_col": 24, - "start_line": 250 - } - }, - "1280": { - "accessible_scopes": [ - "openzeppelin.token.erc721.library", - "openzeppelin.token.erc721.library.ERC721", - "openzeppelin.token.erc721.library.ERC721.safe_transfer_from" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 20, - "end_line": 250, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" - }, - "parent_location": [ - { - "end_col": 20, - "end_line": 250, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" - }, - "start_col": 14, - "start_line": 250 - }, - "While auto generating local variable for 'caller'." - ], - "start_col": 14, - "start_line": 250 - } - }, - "1281": { - "accessible_scopes": [ - "openzeppelin.token.erc721.library", - "openzeppelin.token.erc721.library.ERC721", - "openzeppelin.token.erc721.library.ERC721.safe_transfer_from" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 55, - "end_line": 243, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" - }, - "parent_location": [ - { - "end_col": 58, - "end_line": 283, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" - }, - "parent_location": [ - { - "end_col": 66, - "end_line": 251, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" - }, - "start_col": 27, - "start_line": 251 - }, - "While trying to retrieve the implicit argument 'pedersen_ptr' in:" - ], - "start_col": 32, - "start_line": 283 - }, - "While expanding the reference 'pedersen_ptr' in:" - ], - "start_col": 29, - "start_line": 243 - } - }, - "1282": { - "accessible_scopes": [ - "openzeppelin.token.erc721.library", - "openzeppelin.token.erc721.library.ERC721", - "openzeppelin.token.erc721.library.ERC721.safe_transfer_from" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 43, - "end_line": 200, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/starknet/common/syscalls.cairo" - }, - "parent_location": [ - { - "end_col": 44, - "end_line": 250, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" - }, - "parent_location": [ - { - "end_col": 78, - "end_line": 283, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" - }, - "parent_location": [ - { - "end_col": 66, - "end_line": 251, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" - }, - "start_col": 27, - "start_line": 251 - }, - "While trying to retrieve the implicit argument 'syscall_ptr' in:" - ], - "start_col": 60, - "start_line": 283 - }, - "While expanding the reference 'syscall_ptr' in:" - ], - "start_col": 24, - "start_line": 250 - }, - "While trying to update the implicit return value 'syscall_ptr' in:" - ], - "start_col": 25, - "start_line": 200 - } - }, - "1283": { - "accessible_scopes": [ - "openzeppelin.token.erc721.library", - "openzeppelin.token.erc721.library.ERC721", - "openzeppelin.token.erc721.library.ERC721.safe_transfer_from" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 35, - "end_line": 21, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/uint256.cairo" - }, - "parent_location": [ - { - "end_col": 36, - "end_line": 248, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" - }, - "parent_location": [ - { - "end_col": 95, - "end_line": 283, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" - }, - "parent_location": [ - { - "end_col": 66, - "end_line": 251, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" - }, - "start_col": 27, - "start_line": 251 - }, - "While trying to retrieve the implicit argument 'range_check_ptr' in:" - ], - "start_col": 80, - "start_line": 283 - }, - "While expanding the reference 'range_check_ptr' in:" - ], - "start_col": 13, - "start_line": 248 - }, - "While trying to update the implicit return value 'range_check_ptr' in:" - ], - "start_col": 20, - "start_line": 21 - } - }, - "1284": { - "accessible_scopes": [ - "openzeppelin.token.erc721.library", - "openzeppelin.token.erc721.library.ERC721", - "openzeppelin.token.erc721.library.ERC721.safe_transfer_from" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 20, - "end_line": 250, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" - }, - "parent_location": [ - { - "end_col": 20, - "end_line": 250, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" - }, - "parent_location": [ - { - "end_col": 55, - "end_line": 251, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" - }, - "start_col": 49, - "start_line": 251 - }, - "While expanding the reference 'caller' in:" - ], - "start_col": 14, - "start_line": 250 - }, - "While auto generating local variable for 'caller'." - ], - "start_col": 14, - "start_line": 250 - } - }, - "1285": { - "accessible_scopes": [ - "openzeppelin.token.erc721.library", - "openzeppelin.token.erc721.library.ERC721", - "openzeppelin.token.erc721.library.ERC721.safe_transfer_from" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 49, - "end_line": 244, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" - }, - "parent_location": [ - { - "end_col": 65, - "end_line": 251, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" - }, - "start_col": 57, - "start_line": 251 - }, - "While expanding the reference 'token_id' in:" - ], - "start_col": 32, - "start_line": 244 - } - }, - "1286": { - "accessible_scopes": [ - "openzeppelin.token.erc721.library", - "openzeppelin.token.erc721.library.ERC721", - "openzeppelin.token.erc721.library.ERC721.safe_transfer_from" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 49, - "end_line": 244, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" - }, - "parent_location": [ - { - "end_col": 65, - "end_line": 251, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" - }, - "start_col": 57, - "start_line": 251 - }, - "While expanding the reference 'token_id' in:" - ], - "start_col": 32, - "start_line": 244 - } - }, - "1287": { - "accessible_scopes": [ - "openzeppelin.token.erc721.library", - "openzeppelin.token.erc721.library.ERC721", - "openzeppelin.token.erc721.library.ERC721.safe_transfer_from" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 66, - "end_line": 251, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" - }, - "start_col": 27, - "start_line": 251 - } - }, - "1289": { - "accessible_scopes": [ - "openzeppelin.token.erc721.library", - "openzeppelin.token.erc721.library.ERC721", - "openzeppelin.token.erc721.library.ERC721.safe_transfer_from" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 49, - "end_line": 254, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" - }, - "start_col": 29, - "start_line": 254 - } - }, - "1290": { - "accessible_scopes": [ - "openzeppelin.token.erc721.library", - "openzeppelin.token.erc721.library.ERC721", - "openzeppelin.token.erc721.library.ERC721.safe_transfer_from" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 50, - "end_line": 254, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" - }, - "start_col": 13, - "start_line": 254 - } - }, - "1292": { - "accessible_scopes": [ - "openzeppelin.token.erc721.library", - "openzeppelin.token.erc721.library.ERC721", - "openzeppelin.token.erc721.library.ERC721.safe_transfer_from" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 78, - "end_line": 283, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" - }, - "parent_location": [ - { - "end_col": 66, - "end_line": 251, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" - }, - "parent_location": [ - { - "end_col": 43, - "end_line": 363, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" - }, - "parent_location": [ - { - "end_col": 60, - "end_line": 262, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" - }, - "start_col": 9, - "start_line": 262 - }, - "While trying to retrieve the implicit argument 'syscall_ptr' in:" - ], - "start_col": 25, - "start_line": 363 - }, - "While expanding the reference 'syscall_ptr' in:" - ], - "start_col": 27, - "start_line": 251 - }, - "While trying to update the implicit return value 'syscall_ptr' in:" - ], - "start_col": 60, - "start_line": 283 - } - }, - "1293": { - "accessible_scopes": [ - "openzeppelin.token.erc721.library", - "openzeppelin.token.erc721.library.ERC721", - "openzeppelin.token.erc721.library.ERC721.safe_transfer_from" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 58, - "end_line": 283, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" - }, - "parent_location": [ - { - "end_col": 66, - "end_line": 251, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" - }, - "parent_location": [ - { - "end_col": 71, - "end_line": 363, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" - }, - "parent_location": [ - { - "end_col": 60, - "end_line": 262, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" - }, - "start_col": 9, - "start_line": 262 - }, - "While trying to retrieve the implicit argument 'pedersen_ptr' in:" - ], - "start_col": 45, - "start_line": 363 - }, - "While expanding the reference 'pedersen_ptr' in:" - ], - "start_col": 27, - "start_line": 251 - }, - "While trying to update the implicit return value 'pedersen_ptr' in:" - ], - "start_col": 32, - "start_line": 283 - } - }, - "1294": { - "accessible_scopes": [ - "openzeppelin.token.erc721.library", - "openzeppelin.token.erc721.library.ERC721", - "openzeppelin.token.erc721.library.ERC721.safe_transfer_from" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 95, - "end_line": 283, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" - }, - "parent_location": [ - { - "end_col": 66, - "end_line": 251, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" - }, - "parent_location": [ - { - "end_col": 88, - "end_line": 363, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" - }, - "parent_location": [ - { - "end_col": 60, - "end_line": 262, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" - }, - "start_col": 9, - "start_line": 262 - }, - "While trying to retrieve the implicit argument 'range_check_ptr' in:" - ], - "start_col": 73, - "start_line": 363 - }, - "While expanding the reference 'range_check_ptr' in:" - ], - "start_col": 27, - "start_line": 251 - }, - "While trying to update the implicit return value 'range_check_ptr' in:" - ], - "start_col": 80, - "start_line": 283 - } - }, - "1295": { - "accessible_scopes": [ - "openzeppelin.token.erc721.library", - "openzeppelin.token.erc721.library.ERC721", - "openzeppelin.token.erc721.library.ERC721.safe_transfer_from" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 20, - "end_line": 244, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" - }, - "parent_location": [ - { - "end_col": 29, - "end_line": 262, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" - }, - "start_col": 24, - "start_line": 262 - }, - "While expanding the reference 'from_' in:" - ], - "start_col": 9, - "start_line": 244 - } - }, - "1296": { - "accessible_scopes": [ - "openzeppelin.token.erc721.library", - "openzeppelin.token.erc721.library.ERC721", - "openzeppelin.token.erc721.library.ERC721.safe_transfer_from" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 30, - "end_line": 244, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" - }, - "parent_location": [ - { - "end_col": 33, - "end_line": 262, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" - }, - "start_col": 31, - "start_line": 262 - }, - "While expanding the reference 'to' in:" - ], - "start_col": 22, - "start_line": 244 - } - }, - "1297": { - "accessible_scopes": [ - "openzeppelin.token.erc721.library", - "openzeppelin.token.erc721.library.ERC721", - "openzeppelin.token.erc721.library.ERC721.safe_transfer_from" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 49, - "end_line": 244, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" - }, - "parent_location": [ - { - "end_col": 43, - "end_line": 262, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" - }, - "start_col": 35, - "start_line": 262 - }, - "While expanding the reference 'token_id' in:" - ], - "start_col": 32, - "start_line": 244 - } - }, - "1298": { - "accessible_scopes": [ - "openzeppelin.token.erc721.library", - "openzeppelin.token.erc721.library.ERC721", - "openzeppelin.token.erc721.library.ERC721.safe_transfer_from" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 49, - "end_line": 244, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" - }, - "parent_location": [ - { - "end_col": 43, - "end_line": 262, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" - }, - "start_col": 35, - "start_line": 262 - }, - "While expanding the reference 'token_id' in:" - ], - "start_col": 32, - "start_line": 244 - } - }, - "1299": { - "accessible_scopes": [ - "openzeppelin.token.erc721.library", - "openzeppelin.token.erc721.library.ERC721", - "openzeppelin.token.erc721.library.ERC721.safe_transfer_from" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 65, - "end_line": 244, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" - }, - "parent_location": [ - { - "end_col": 53, - "end_line": 262, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" - }, - "start_col": 45, - "start_line": 262 - }, - "While expanding the reference 'data_len' in:" - ], - "start_col": 51, - "start_line": 244 - } - }, - "1300": { - "accessible_scopes": [ - "openzeppelin.token.erc721.library", - "openzeppelin.token.erc721.library.ERC721", - "openzeppelin.token.erc721.library.ERC721.safe_transfer_from" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 78, - "end_line": 244, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" - }, - "parent_location": [ - { - "end_col": 59, - "end_line": 262, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" - }, - "start_col": 55, - "start_line": 262 - }, - "While expanding the reference 'data' in:" - ], - "start_col": 67, - "start_line": 244 - } - }, - "1301": { - "accessible_scopes": [ - "openzeppelin.token.erc721.library", - "openzeppelin.token.erc721.library.ERC721", - "openzeppelin.token.erc721.library.ERC721.safe_transfer_from" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 60, - "end_line": 262, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" - }, - "start_col": 9, - "start_line": 262 - } - }, - "1303": { - "accessible_scopes": [ - "openzeppelin.token.erc721.library", - "openzeppelin.token.erc721.library.ERC721", - "openzeppelin.token.erc721.library.ERC721.safe_transfer_from" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 71, - "end_line": 363, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" - }, - "parent_location": [ - { - "end_col": 60, - "end_line": 262, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" - }, - "parent_location": [ - { - "end_col": 55, - "end_line": 243, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" - }, - "parent_location": [ - { - "end_col": 19, - "end_line": 263, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" - }, - "start_col": 9, - "start_line": 263 - }, - "While trying to retrieve the implicit argument 'pedersen_ptr' in:" - ], - "start_col": 29, - "start_line": 243 - }, - "While expanding the reference 'pedersen_ptr' in:" - ], - "start_col": 9, - "start_line": 262 - }, - "While trying to update the implicit return value 'pedersen_ptr' in:" - ], - "start_col": 45, - "start_line": 363 - } - }, - "1304": { - "accessible_scopes": [ - "openzeppelin.token.erc721.library", - "openzeppelin.token.erc721.library.ERC721", - "openzeppelin.token.erc721.library.ERC721.safe_transfer_from" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 43, - "end_line": 363, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" - }, - "parent_location": [ - { - "end_col": 60, - "end_line": 262, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" - }, - "parent_location": [ - { - "end_col": 75, - "end_line": 243, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" - }, - "parent_location": [ - { - "end_col": 19, - "end_line": 263, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" - }, - "start_col": 9, - "start_line": 263 - }, - "While trying to retrieve the implicit argument 'syscall_ptr' in:" - ], - "start_col": 57, - "start_line": 243 - }, - "While expanding the reference 'syscall_ptr' in:" - ], - "start_col": 9, - "start_line": 262 - }, - "While trying to update the implicit return value 'syscall_ptr' in:" - ], - "start_col": 25, - "start_line": 363 - } - }, - "1305": { - "accessible_scopes": [ - "openzeppelin.token.erc721.library", - "openzeppelin.token.erc721.library.ERC721", - "openzeppelin.token.erc721.library.ERC721.safe_transfer_from" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 88, - "end_line": 363, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" - }, - "parent_location": [ - { - "end_col": 60, - "end_line": 262, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" - }, - "parent_location": [ - { - "end_col": 92, - "end_line": 243, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" - }, - "parent_location": [ - { - "end_col": 19, - "end_line": 263, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" - }, - "start_col": 9, - "start_line": 263 - }, - "While trying to retrieve the implicit argument 'range_check_ptr' in:" - ], - "start_col": 77, - "start_line": 243 - }, - "While expanding the reference 'range_check_ptr' in:" - ], - "start_col": 9, - "start_line": 262 - }, - "While trying to update the implicit return value 'range_check_ptr' in:" - ], - "start_col": 73, - "start_line": 363 - } - }, - "1306": { - "accessible_scopes": [ - "openzeppelin.token.erc721.library", - "openzeppelin.token.erc721.library.ERC721", - "openzeppelin.token.erc721.library.ERC721.safe_transfer_from" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 19, - "end_line": 263, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" - }, - "start_col": 9, - "start_line": 263 - } - }, - "1307": { - "accessible_scopes": [ - "openzeppelin.token.erc721.library", - "openzeppelin.token.erc721.library.ERC721", - "openzeppelin.token.erc721.library.ERC721.assert_only_token_owner" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 97, - "end_line": 270, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" - }, - "parent_location": [ - { - "end_col": 35, - "end_line": 21, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/uint256.cairo" - }, - "parent_location": [ - { - "end_col": 32, - "end_line": 273, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" - }, - "start_col": 9, - "start_line": 273 - }, - "While trying to retrieve the implicit argument 'range_check_ptr' in:" - ], - "start_col": 20, - "start_line": 21 - }, - "While expanding the reference 'range_check_ptr' in:" - ], - "start_col": 82, - "start_line": 270 - } - }, - "1308": { - "accessible_scopes": [ - "openzeppelin.token.erc721.library", - "openzeppelin.token.erc721.library.ERC721", - "openzeppelin.token.erc721.library.ERC721.assert_only_token_owner" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 26, - "end_line": 271, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" - }, - "parent_location": [ - { - "end_col": 31, - "end_line": 273, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" - }, - "start_col": 23, - "start_line": 273 - }, - "While expanding the reference 'token_id' in:" - ], - "start_col": 9, - "start_line": 271 - } - }, - "1309": { - "accessible_scopes": [ - "openzeppelin.token.erc721.library", - "openzeppelin.token.erc721.library.ERC721", - "openzeppelin.token.erc721.library.ERC721.assert_only_token_owner" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 26, - "end_line": 271, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" - }, - "parent_location": [ - { - "end_col": 31, - "end_line": 273, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" - }, - "start_col": 23, - "start_line": 273 - }, - "While expanding the reference 'token_id' in:" - ], - "start_col": 9, - "start_line": 271 - } - }, - "1310": { - "accessible_scopes": [ - "openzeppelin.token.erc721.library", - "openzeppelin.token.erc721.library.ERC721", - "openzeppelin.token.erc721.library.ERC721.assert_only_token_owner" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 32, - "end_line": 273, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" - }, - "start_col": 9, - "start_line": 273 - } - }, - "1312": { - "accessible_scopes": [ - "openzeppelin.token.erc721.library", - "openzeppelin.token.erc721.library.ERC721", - "openzeppelin.token.erc721.library.ERC721.assert_only_token_owner" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 80, - "end_line": 270, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" - }, - "parent_location": [ - { - "end_col": 43, - "end_line": 200, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/starknet/common/syscalls.cairo" - }, - "parent_location": [ - { - "end_col": 44, - "end_line": 274, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" - }, - "start_col": 24, - "start_line": 274 - }, - "While trying to retrieve the implicit argument 'syscall_ptr' in:" - ], - "start_col": 25, - "start_line": 200 - }, - "While expanding the reference 'syscall_ptr' in:" - ], - "start_col": 62, - "start_line": 270 - } - }, - "1313": { - "accessible_scopes": [ - "openzeppelin.token.erc721.library", - "openzeppelin.token.erc721.library.ERC721", - "openzeppelin.token.erc721.library.ERC721.assert_only_token_owner" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 44, - "end_line": 274, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" - }, - "start_col": 24, - "start_line": 274 - } - }, - "1315": { - "accessible_scopes": [ - "openzeppelin.token.erc721.library", - "openzeppelin.token.erc721.library.ERC721", - "openzeppelin.token.erc721.library.ERC721.assert_only_token_owner" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 43, - "end_line": 200, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/starknet/common/syscalls.cairo" - }, - "parent_location": [ - { - "end_col": 44, - "end_line": 274, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" - }, - "parent_location": [ - { - "end_col": 37, - "end_line": 109, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" - }, - "parent_location": [ - { - "end_col": 41, - "end_line": 275, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" - }, - "start_col": 23, - "start_line": 275 - }, - "While trying to retrieve the implicit argument 'syscall_ptr' in:" - ], - "start_col": 19, - "start_line": 109 - }, - "While expanding the reference 'syscall_ptr' in:" - ], - "start_col": 24, - "start_line": 274 - }, - "While trying to update the implicit return value 'syscall_ptr' in:" - ], - "start_col": 25, - "start_line": 200 - } - }, - "1316": { - "accessible_scopes": [ - "openzeppelin.token.erc721.library", - "openzeppelin.token.erc721.library.ERC721", - "openzeppelin.token.erc721.library.ERC721.assert_only_token_owner" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 60, - "end_line": 270, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" - }, - "parent_location": [ - { - "end_col": 65, - "end_line": 109, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" - }, - "parent_location": [ - { - "end_col": 41, - "end_line": 275, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" - }, - "start_col": 23, - "start_line": 275 - }, - "While trying to retrieve the implicit argument 'pedersen_ptr' in:" - ], - "start_col": 39, - "start_line": 109 - }, - "While expanding the reference 'pedersen_ptr' in:" - ], - "start_col": 34, - "start_line": 270 - } - }, - "1317": { - "accessible_scopes": [ - "openzeppelin.token.erc721.library", - "openzeppelin.token.erc721.library.ERC721", - "openzeppelin.token.erc721.library.ERC721.assert_only_token_owner" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 35, - "end_line": 21, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/uint256.cairo" - }, - "parent_location": [ - { - "end_col": 32, - "end_line": 273, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" - }, - "parent_location": [ - { - "end_col": 82, - "end_line": 109, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" - }, - "parent_location": [ - { - "end_col": 41, - "end_line": 275, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" - }, - "start_col": 23, - "start_line": 275 - }, - "While trying to retrieve the implicit argument 'range_check_ptr' in:" - ], - "start_col": 67, - "start_line": 109 - }, - "While expanding the reference 'range_check_ptr' in:" - ], - "start_col": 9, - "start_line": 273 - }, - "While trying to update the implicit return value 'range_check_ptr' in:" - ], - "start_col": 20, - "start_line": 21 - } - }, - "1318": { - "accessible_scopes": [ - "openzeppelin.token.erc721.library", - "openzeppelin.token.erc721.library.ERC721", - "openzeppelin.token.erc721.library.ERC721.assert_only_token_owner" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 26, - "end_line": 271, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" - }, - "parent_location": [ - { - "end_col": 40, - "end_line": 275, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" - }, - "start_col": 32, - "start_line": 275 - }, - "While expanding the reference 'token_id' in:" - ], - "start_col": 9, - "start_line": 271 - } - }, - "1319": { - "accessible_scopes": [ - "openzeppelin.token.erc721.library", - "openzeppelin.token.erc721.library.ERC721", - "openzeppelin.token.erc721.library.ERC721.assert_only_token_owner" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 26, - "end_line": 271, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" - }, - "parent_location": [ - { - "end_col": 40, - "end_line": 275, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" - }, - "start_col": 32, - "start_line": 275 - }, - "While expanding the reference 'token_id' in:" - ], - "start_col": 9, - "start_line": 271 - } - }, - "1320": { - "accessible_scopes": [ - "openzeppelin.token.erc721.library", - "openzeppelin.token.erc721.library.ERC721", - "openzeppelin.token.erc721.library.ERC721.assert_only_token_owner" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 41, - "end_line": 275, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" - }, - "start_col": 23, - "start_line": 275 - } - }, - "1322": { - "accessible_scopes": [ - "openzeppelin.token.erc721.library", - "openzeppelin.token.erc721.library.ERC721", - "openzeppelin.token.erc721.library.ERC721.assert_only_token_owner" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 35, - "end_line": 278, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" - }, - "start_col": 13, - "start_line": 278 - } - }, - "1323": { - "accessible_scopes": [ - "openzeppelin.token.erc721.library", - "openzeppelin.token.erc721.library.ERC721", - "openzeppelin.token.erc721.library.ERC721.assert_only_token_owner" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 65, - "end_line": 109, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" - }, - "parent_location": [ - { - "end_col": 41, - "end_line": 275, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" - }, - "parent_location": [ - { - "end_col": 60, - "end_line": 270, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" - }, - "parent_location": [ - { - "end_col": 19, - "end_line": 280, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" - }, - "start_col": 9, - "start_line": 280 - }, - "While trying to retrieve the implicit argument 'pedersen_ptr' in:" - ], - "start_col": 34, - "start_line": 270 - }, - "While expanding the reference 'pedersen_ptr' in:" - ], - "start_col": 23, - "start_line": 275 - }, - "While trying to update the implicit return value 'pedersen_ptr' in:" - ], - "start_col": 39, - "start_line": 109 - } - }, - "1324": { - "accessible_scopes": [ - "openzeppelin.token.erc721.library", - "openzeppelin.token.erc721.library.ERC721", - "openzeppelin.token.erc721.library.ERC721.assert_only_token_owner" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 37, - "end_line": 109, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" - }, - "parent_location": [ - { - "end_col": 41, - "end_line": 275, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" - }, - "parent_location": [ - { - "end_col": 80, - "end_line": 270, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" - }, - "parent_location": [ - { - "end_col": 19, - "end_line": 280, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" - }, - "start_col": 9, - "start_line": 280 - }, - "While trying to retrieve the implicit argument 'syscall_ptr' in:" - ], - "start_col": 62, - "start_line": 270 - }, - "While expanding the reference 'syscall_ptr' in:" - ], - "start_col": 23, - "start_line": 275 - }, - "While trying to update the implicit return value 'syscall_ptr' in:" - ], - "start_col": 19, - "start_line": 109 - } - }, - "1325": { - "accessible_scopes": [ - "openzeppelin.token.erc721.library", - "openzeppelin.token.erc721.library.ERC721", - "openzeppelin.token.erc721.library.ERC721.assert_only_token_owner" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 82, - "end_line": 109, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" - }, - "parent_location": [ - { - "end_col": 41, - "end_line": 275, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" - }, - "parent_location": [ - { - "end_col": 97, - "end_line": 270, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" - }, - "parent_location": [ - { - "end_col": 19, - "end_line": 280, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" - }, - "start_col": 9, - "start_line": 280 - }, - "While trying to retrieve the implicit argument 'range_check_ptr' in:" - ], - "start_col": 82, - "start_line": 270 - }, - "While expanding the reference 'range_check_ptr' in:" - ], - "start_col": 23, - "start_line": 275 - }, - "While trying to update the implicit return value 'range_check_ptr' in:" - ], - "start_col": 67, - "start_line": 109 - } - }, - "1326": { - "accessible_scopes": [ - "openzeppelin.token.erc721.library", - "openzeppelin.token.erc721.library.ERC721", - "openzeppelin.token.erc721.library.ERC721.assert_only_token_owner" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 19, - "end_line": 280, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" - }, - "start_col": 9, - "start_line": 280 - } - }, - "1327": { - "accessible_scopes": [ - "openzeppelin.token.erc721.library", - "openzeppelin.token.erc721.library.ERC721", - "openzeppelin.token.erc721.library.ERC721._is_approved_or_owner" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 22, - "end_line": 286, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" - }, - "start_col": 9, - "start_line": 286 - } - }, - "1329": { - "accessible_scopes": [ - "openzeppelin.token.erc721.library", - "openzeppelin.token.erc721.library.ERC721", - "openzeppelin.token.erc721.library.ERC721._is_approved_or_owner" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 78, - "end_line": 283, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" - }, - "parent_location": [ - { - "end_col": 36, - "end_line": 311, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" - }, - "parent_location": [ - { - "end_col": 39, - "end_line": 288, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" - }, - "start_col": 22, - "start_line": 288 - }, - "While trying to retrieve the implicit argument 'syscall_ptr' in:" - ], - "start_col": 18, - "start_line": 311 - }, - "While expanding the reference 'syscall_ptr' in:" - ], - "start_col": 60, - "start_line": 283 - } - }, - "1330": { - "accessible_scopes": [ - "openzeppelin.token.erc721.library", - "openzeppelin.token.erc721.library.ERC721", - "openzeppelin.token.erc721.library.ERC721._is_approved_or_owner" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 58, - "end_line": 283, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" - }, - "parent_location": [ - { - "end_col": 64, - "end_line": 311, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" - }, - "parent_location": [ - { - "end_col": 39, - "end_line": 288, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" - }, - "start_col": 22, - "start_line": 288 - }, - "While trying to retrieve the implicit argument 'pedersen_ptr' in:" - ], - "start_col": 38, - "start_line": 311 - }, - "While expanding the reference 'pedersen_ptr' in:" - ], - "start_col": 32, - "start_line": 283 - } - }, - "1331": { - "accessible_scopes": [ - "openzeppelin.token.erc721.library", - "openzeppelin.token.erc721.library.ERC721", - "openzeppelin.token.erc721.library.ERC721._is_approved_or_owner" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 95, - "end_line": 283, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" - }, - "parent_location": [ - { - "end_col": 81, - "end_line": 311, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" - }, - "parent_location": [ - { - "end_col": 39, - "end_line": 288, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" - }, - "start_col": 22, - "start_line": 288 - }, - "While trying to retrieve the implicit argument 'range_check_ptr' in:" - ], - "start_col": 66, - "start_line": 311 - }, - "While expanding the reference 'range_check_ptr' in:" - ], - "start_col": 80, - "start_line": 283 - } - }, - "1332": { - "accessible_scopes": [ - "openzeppelin.token.erc721.library", - "openzeppelin.token.erc721.library.ERC721", - "openzeppelin.token.erc721.library.ERC721._is_approved_or_owner" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 41, - "end_line": 284, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" - }, - "parent_location": [ - { - "end_col": 38, - "end_line": 288, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" - }, - "start_col": 30, - "start_line": 288 - }, - "While expanding the reference 'token_id' in:" - ], - "start_col": 24, - "start_line": 284 - } - }, - "1333": { - "accessible_scopes": [ - "openzeppelin.token.erc721.library", - "openzeppelin.token.erc721.library.ERC721", - "openzeppelin.token.erc721.library.ERC721._is_approved_or_owner" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 41, - "end_line": 284, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" - }, - "parent_location": [ - { - "end_col": 38, - "end_line": 288, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" - }, - "start_col": 30, - "start_line": 288 - }, - "While expanding the reference 'token_id' in:" - ], - "start_col": 24, - "start_line": 284 - } - }, - "1334": { - "accessible_scopes": [ - "openzeppelin.token.erc721.library", - "openzeppelin.token.erc721.library.ERC721", - "openzeppelin.token.erc721.library.ERC721._is_approved_or_owner" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 39, - "end_line": 288, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" - }, - "start_col": 22, - "start_line": 288 - } - }, - "1336": { - "accessible_scopes": [ - "openzeppelin.token.erc721.library", - "openzeppelin.token.erc721.library.ERC721", - "openzeppelin.token.erc721.library.ERC721._is_approved_or_owner" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 34, - "end_line": 290, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" - }, - "start_col": 13, - "start_line": 290 - } - }, - "1338": { - "accessible_scopes": [ - "openzeppelin.token.erc721.library", - "openzeppelin.token.erc721.library.ERC721", - "openzeppelin.token.erc721.library.ERC721._is_approved_or_owner" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 36, - "end_line": 311, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" - }, - "parent_location": [ - { - "end_col": 39, - "end_line": 288, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" - }, - "parent_location": [ - { - "end_col": 37, - "end_line": 109, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" - }, - "parent_location": [ - { - "end_col": 41, - "end_line": 293, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" - }, - "start_col": 23, - "start_line": 293 - }, - "While trying to retrieve the implicit argument 'syscall_ptr' in:" - ], - "start_col": 19, - "start_line": 109 - }, - "While expanding the reference 'syscall_ptr' in:" - ], - "start_col": 22, - "start_line": 288 - }, - "While trying to update the implicit return value 'syscall_ptr' in:" - ], - "start_col": 18, - "start_line": 311 - } - }, - "1339": { - "accessible_scopes": [ - "openzeppelin.token.erc721.library", - "openzeppelin.token.erc721.library.ERC721", - "openzeppelin.token.erc721.library.ERC721._is_approved_or_owner" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 64, - "end_line": 311, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" - }, - "parent_location": [ - { - "end_col": 39, - "end_line": 288, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" - }, - "parent_location": [ - { - "end_col": 65, - "end_line": 109, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" - }, - "parent_location": [ - { - "end_col": 41, - "end_line": 293, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" - }, - "start_col": 23, - "start_line": 293 - }, - "While trying to retrieve the implicit argument 'pedersen_ptr' in:" - ], - "start_col": 39, - "start_line": 109 - }, - "While expanding the reference 'pedersen_ptr' in:" - ], - "start_col": 22, - "start_line": 288 - }, - "While trying to update the implicit return value 'pedersen_ptr' in:" - ], - "start_col": 38, - "start_line": 311 - } - }, - "1340": { - "accessible_scopes": [ - "openzeppelin.token.erc721.library", - "openzeppelin.token.erc721.library.ERC721", - "openzeppelin.token.erc721.library.ERC721._is_approved_or_owner" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 81, - "end_line": 311, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" - }, - "parent_location": [ - { - "end_col": 39, - "end_line": 288, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" - }, - "parent_location": [ - { - "end_col": 82, - "end_line": 109, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" - }, - "parent_location": [ - { - "end_col": 41, - "end_line": 293, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" - }, - "start_col": 23, - "start_line": 293 - }, - "While trying to retrieve the implicit argument 'range_check_ptr' in:" - ], - "start_col": 67, - "start_line": 109 - }, - "While expanding the reference 'range_check_ptr' in:" - ], - "start_col": 22, - "start_line": 288 - }, - "While trying to update the implicit return value 'range_check_ptr' in:" - ], - "start_col": 66, - "start_line": 311 - } - }, - "1341": { - "accessible_scopes": [ - "openzeppelin.token.erc721.library", - "openzeppelin.token.erc721.library.ERC721", - "openzeppelin.token.erc721.library.ERC721._is_approved_or_owner" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 41, - "end_line": 284, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" - }, - "parent_location": [ - { - "end_col": 40, - "end_line": 293, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" - }, - "start_col": 32, - "start_line": 293 - }, - "While expanding the reference 'token_id' in:" - ], - "start_col": 24, - "start_line": 284 - } - }, - "1342": { - "accessible_scopes": [ - "openzeppelin.token.erc721.library", - "openzeppelin.token.erc721.library.ERC721", - "openzeppelin.token.erc721.library.ERC721._is_approved_or_owner" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 41, - "end_line": 284, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" - }, - "parent_location": [ - { - "end_col": 40, - "end_line": 293, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" - }, - "start_col": 32, - "start_line": 293 - }, - "While expanding the reference 'token_id' in:" - ], - "start_col": 24, - "start_line": 284 - } - }, - "1343": { - "accessible_scopes": [ - "openzeppelin.token.erc721.library", - "openzeppelin.token.erc721.library.ERC721", - "openzeppelin.token.erc721.library.ERC721._is_approved_or_owner" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 41, - "end_line": 293, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" - }, - "start_col": 23, - "start_line": 293 - } - }, - "1345": { - "accessible_scopes": [ - "openzeppelin.token.erc721.library", - "openzeppelin.token.erc721.library.ERC721", - "openzeppelin.token.erc721.library.ERC721._is_approved_or_owner" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 19, - "end_line": 293, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" - }, - "parent_location": [ - { - "end_col": 19, - "end_line": 293, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" - }, - "start_col": 14, - "start_line": 293 - }, - "While auto generating local variable for 'owner'." - ], - "start_col": 14, - "start_line": 293 - } - }, - "1346": { - "accessible_scopes": [ - "openzeppelin.token.erc721.library", - "openzeppelin.token.erc721.library.ERC721", - "openzeppelin.token.erc721.library.ERC721._is_approved_or_owner" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 29, - "end_line": 294, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" - }, - "start_col": 13, - "start_line": 294 - } - }, - "1347": { - "accessible_scopes": [ - "openzeppelin.token.erc721.library", - "openzeppelin.token.erc721.library.ERC721", - "openzeppelin.token.erc721.library.ERC721._is_approved_or_owner" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 11, - "end_line": 294, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" - }, - "start_col": 9, - "start_line": 294 - } - }, - "1349": { - "accessible_scopes": [ - "openzeppelin.token.erc721.library", - "openzeppelin.token.erc721.library.ERC721", - "openzeppelin.token.erc721.library.ERC721._is_approved_or_owner" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 65, - "end_line": 109, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" - }, - "parent_location": [ - { - "end_col": 41, - "end_line": 293, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" - }, - "parent_location": [ - { - "end_col": 58, - "end_line": 283, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" - }, - "parent_location": [ - { - "end_col": 25, - "end_line": 295, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" - }, - "start_col": 13, - "start_line": 295 - }, - "While trying to retrieve the implicit argument 'pedersen_ptr' in:" - ], - "start_col": 32, - "start_line": 283 - }, - "While expanding the reference 'pedersen_ptr' in:" - ], - "start_col": 23, - "start_line": 293 - }, - "While trying to update the implicit return value 'pedersen_ptr' in:" - ], - "start_col": 39, - "start_line": 109 - } - }, - "1350": { - "accessible_scopes": [ - "openzeppelin.token.erc721.library", - "openzeppelin.token.erc721.library.ERC721", - "openzeppelin.token.erc721.library.ERC721._is_approved_or_owner" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 37, - "end_line": 109, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" - }, - "parent_location": [ - { - "end_col": 41, - "end_line": 293, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" - }, - "parent_location": [ - { - "end_col": 78, - "end_line": 283, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" - }, - "parent_location": [ - { - "end_col": 25, - "end_line": 295, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" - }, - "start_col": 13, - "start_line": 295 - }, - "While trying to retrieve the implicit argument 'syscall_ptr' in:" - ], - "start_col": 60, - "start_line": 283 - }, - "While expanding the reference 'syscall_ptr' in:" - ], - "start_col": 23, - "start_line": 293 - }, - "While trying to update the implicit return value 'syscall_ptr' in:" - ], - "start_col": 19, - "start_line": 109 - } - }, - "1351": { - "accessible_scopes": [ - "openzeppelin.token.erc721.library", - "openzeppelin.token.erc721.library.ERC721", - "openzeppelin.token.erc721.library.ERC721._is_approved_or_owner" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 82, - "end_line": 109, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" - }, - "parent_location": [ - { - "end_col": 41, - "end_line": 293, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" - }, - "parent_location": [ - { - "end_col": 95, - "end_line": 283, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" - }, - "parent_location": [ - { - "end_col": 25, - "end_line": 295, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" - }, - "start_col": 13, - "start_line": 295 - }, - "While trying to retrieve the implicit argument 'range_check_ptr' in:" - ], - "start_col": 80, - "start_line": 283 - }, - "While expanding the reference 'range_check_ptr' in:" - ], - "start_col": 23, - "start_line": 293 - }, - "While trying to update the implicit return value 'range_check_ptr' in:" - ], - "start_col": 67, - "start_line": 109 - } - }, - "1352": { - "accessible_scopes": [ - "openzeppelin.token.erc721.library", - "openzeppelin.token.erc721.library.ERC721", - "openzeppelin.token.erc721.library.ERC721._is_approved_or_owner" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 24, - "end_line": 295, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" - }, - "start_col": 20, - "start_line": 295 - } - }, - "1354": { - "accessible_scopes": [ - "openzeppelin.token.erc721.library", - "openzeppelin.token.erc721.library.ERC721", - "openzeppelin.token.erc721.library.ERC721._is_approved_or_owner" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 25, - "end_line": 295, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" - }, - "start_col": 13, - "start_line": 295 - } - }, - "1355": { - "accessible_scopes": [ - "openzeppelin.token.erc721.library", - "openzeppelin.token.erc721.library.ERC721", - "openzeppelin.token.erc721.library.ERC721._is_approved_or_owner" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 37, - "end_line": 109, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" - }, - "parent_location": [ - { - "end_col": 41, - "end_line": 293, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" - }, - "parent_location": [ - { - "end_col": 41, - "end_line": 122, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" - }, - "parent_location": [ - { - "end_col": 53, - "end_line": 298, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" - }, - "start_col": 31, - "start_line": 298 - }, - "While trying to retrieve the implicit argument 'syscall_ptr' in:" - ], - "start_col": 23, - "start_line": 122 - }, - "While expanding the reference 'syscall_ptr' in:" - ], - "start_col": 23, - "start_line": 293 - }, - "While trying to update the implicit return value 'syscall_ptr' in:" - ], - "start_col": 19, - "start_line": 109 - } - }, - "1356": { - "accessible_scopes": [ - "openzeppelin.token.erc721.library", - "openzeppelin.token.erc721.library.ERC721", - "openzeppelin.token.erc721.library.ERC721._is_approved_or_owner" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 65, - "end_line": 109, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" - }, - "parent_location": [ - { - "end_col": 41, - "end_line": 293, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" - }, - "parent_location": [ - { - "end_col": 69, - "end_line": 122, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" - }, - "parent_location": [ - { - "end_col": 53, - "end_line": 298, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" - }, - "start_col": 31, - "start_line": 298 - }, - "While trying to retrieve the implicit argument 'pedersen_ptr' in:" - ], - "start_col": 43, - "start_line": 122 - }, - "While expanding the reference 'pedersen_ptr' in:" - ], - "start_col": 23, - "start_line": 293 - }, - "While trying to update the implicit return value 'pedersen_ptr' in:" - ], - "start_col": 39, - "start_line": 109 - } - }, - "1357": { - "accessible_scopes": [ - "openzeppelin.token.erc721.library", - "openzeppelin.token.erc721.library.ERC721", - "openzeppelin.token.erc721.library.ERC721._is_approved_or_owner" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 82, - "end_line": 109, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" - }, - "parent_location": [ - { - "end_col": 41, - "end_line": 293, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" - }, - "parent_location": [ - { - "end_col": 86, - "end_line": 122, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" - }, - "parent_location": [ - { - "end_col": 53, - "end_line": 298, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" - }, - "start_col": 31, - "start_line": 298 - }, - "While trying to retrieve the implicit argument 'range_check_ptr' in:" - ], - "start_col": 71, - "start_line": 122 - }, - "While expanding the reference 'range_check_ptr' in:" - ], - "start_col": 23, - "start_line": 293 - }, - "While trying to update the implicit return value 'range_check_ptr' in:" - ], - "start_col": 67, - "start_line": 109 - } - }, - "1358": { - "accessible_scopes": [ - "openzeppelin.token.erc721.library", - "openzeppelin.token.erc721.library.ERC721", - "openzeppelin.token.erc721.library.ERC721._is_approved_or_owner" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 41, - "end_line": 284, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" - }, - "parent_location": [ - { - "end_col": 52, - "end_line": 298, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" - }, - "start_col": 44, - "start_line": 298 - }, - "While expanding the reference 'token_id' in:" - ], - "start_col": 24, - "start_line": 284 - } - }, - "1359": { - "accessible_scopes": [ - "openzeppelin.token.erc721.library", - "openzeppelin.token.erc721.library.ERC721", - "openzeppelin.token.erc721.library.ERC721._is_approved_or_owner" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 41, - "end_line": 284, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" - }, - "parent_location": [ - { - "end_col": 52, - "end_line": 298, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" - }, - "start_col": 44, - "start_line": 298 - }, - "While expanding the reference 'token_id' in:" - ], - "start_col": 24, - "start_line": 284 - } - }, - "1360": { - "accessible_scopes": [ - "openzeppelin.token.erc721.library", - "openzeppelin.token.erc721.library.ERC721", - "openzeppelin.token.erc721.library.ERC721._is_approved_or_owner" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 53, - "end_line": 298, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" - }, - "start_col": 31, - "start_line": 298 - } - }, - "1362": { - "accessible_scopes": [ - "openzeppelin.token.erc721.library", - "openzeppelin.token.erc721.library.ERC721", - "openzeppelin.token.erc721.library.ERC721._is_approved_or_owner" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 37, - "end_line": 299, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" - }, - "start_col": 13, - "start_line": 299 - } - }, - "1363": { - "accessible_scopes": [ - "openzeppelin.token.erc721.library", - "openzeppelin.token.erc721.library.ERC721", - "openzeppelin.token.erc721.library.ERC721._is_approved_or_owner" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 11, - "end_line": 299, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" - }, - "start_col": 9, - "start_line": 299 - } - }, - "1365": { - "accessible_scopes": [ - "openzeppelin.token.erc721.library", - "openzeppelin.token.erc721.library.ERC721", - "openzeppelin.token.erc721.library.ERC721._is_approved_or_owner" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 69, - "end_line": 122, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" - }, - "parent_location": [ - { - "end_col": 53, - "end_line": 298, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" - }, - "parent_location": [ - { - "end_col": 58, - "end_line": 283, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" - }, - "parent_location": [ - { - "end_col": 25, - "end_line": 300, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" - }, - "start_col": 13, - "start_line": 300 - }, - "While trying to retrieve the implicit argument 'pedersen_ptr' in:" - ], - "start_col": 32, - "start_line": 283 - }, - "While expanding the reference 'pedersen_ptr' in:" - ], - "start_col": 31, - "start_line": 298 - }, - "While trying to update the implicit return value 'pedersen_ptr' in:" - ], - "start_col": 43, - "start_line": 122 - } - }, - "1366": { - "accessible_scopes": [ - "openzeppelin.token.erc721.library", - "openzeppelin.token.erc721.library.ERC721", - "openzeppelin.token.erc721.library.ERC721._is_approved_or_owner" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 41, - "end_line": 122, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" - }, - "parent_location": [ - { - "end_col": 53, - "end_line": 298, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" - }, - "parent_location": [ - { - "end_col": 78, - "end_line": 283, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" - }, - "parent_location": [ - { - "end_col": 25, - "end_line": 300, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" - }, - "start_col": 13, - "start_line": 300 - }, - "While trying to retrieve the implicit argument 'syscall_ptr' in:" - ], - "start_col": 60, - "start_line": 283 - }, - "While expanding the reference 'syscall_ptr' in:" - ], - "start_col": 31, - "start_line": 298 - }, - "While trying to update the implicit return value 'syscall_ptr' in:" - ], - "start_col": 23, - "start_line": 122 - } - }, - "1367": { - "accessible_scopes": [ - "openzeppelin.token.erc721.library", - "openzeppelin.token.erc721.library.ERC721", - "openzeppelin.token.erc721.library.ERC721._is_approved_or_owner" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 86, - "end_line": 122, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" - }, - "parent_location": [ - { - "end_col": 53, - "end_line": 298, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" - }, - "parent_location": [ - { - "end_col": 95, - "end_line": 283, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" - }, - "parent_location": [ - { - "end_col": 25, - "end_line": 300, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" - }, - "start_col": 13, - "start_line": 300 - }, - "While trying to retrieve the implicit argument 'range_check_ptr' in:" - ], - "start_col": 80, - "start_line": 283 - }, - "While expanding the reference 'range_check_ptr' in:" - ], - "start_col": 31, - "start_line": 298 - }, - "While trying to update the implicit return value 'range_check_ptr' in:" - ], - "start_col": 71, - "start_line": 122 - } - }, - "1368": { - "accessible_scopes": [ - "openzeppelin.token.erc721.library", - "openzeppelin.token.erc721.library.ERC721", - "openzeppelin.token.erc721.library.ERC721._is_approved_or_owner" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 24, - "end_line": 300, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" - }, - "start_col": 20, - "start_line": 300 - } - }, - "1370": { - "accessible_scopes": [ - "openzeppelin.token.erc721.library", - "openzeppelin.token.erc721.library.ERC721", - "openzeppelin.token.erc721.library.ERC721._is_approved_or_owner" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 25, - "end_line": 300, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" - }, - "start_col": 13, - "start_line": 300 - } - }, - "1371": { - "accessible_scopes": [ - "openzeppelin.token.erc721.library", - "openzeppelin.token.erc721.library.ERC721", - "openzeppelin.token.erc721.library.ERC721._is_approved_or_owner" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 41, - "end_line": 122, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" - }, - "parent_location": [ - { - "end_col": 53, - "end_line": 298, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" - }, - "parent_location": [ - { - "end_col": 48, - "end_line": 136, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" - }, - "parent_location": [ - { - "end_col": 64, - "end_line": 303, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" - }, - "start_col": 29, - "start_line": 303 - }, - "While trying to retrieve the implicit argument 'syscall_ptr' in:" - ], - "start_col": 30, - "start_line": 136 - }, - "While expanding the reference 'syscall_ptr' in:" - ], - "start_col": 31, - "start_line": 298 - }, - "While trying to update the implicit return value 'syscall_ptr' in:" - ], - "start_col": 23, - "start_line": 122 - } - }, - "1372": { - "accessible_scopes": [ - "openzeppelin.token.erc721.library", - "openzeppelin.token.erc721.library.ERC721", - "openzeppelin.token.erc721.library.ERC721._is_approved_or_owner" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 69, - "end_line": 122, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" - }, - "parent_location": [ - { - "end_col": 53, - "end_line": 298, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" - }, - "parent_location": [ - { - "end_col": 76, - "end_line": 136, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" - }, - "parent_location": [ - { - "end_col": 64, - "end_line": 303, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" - }, - "start_col": 29, - "start_line": 303 - }, - "While trying to retrieve the implicit argument 'pedersen_ptr' in:" - ], - "start_col": 50, - "start_line": 136 - }, - "While expanding the reference 'pedersen_ptr' in:" - ], - "start_col": 31, - "start_line": 298 - }, - "While trying to update the implicit return value 'pedersen_ptr' in:" - ], - "start_col": 43, - "start_line": 122 - } - }, - "1373": { - "accessible_scopes": [ - "openzeppelin.token.erc721.library", - "openzeppelin.token.erc721.library.ERC721", - "openzeppelin.token.erc721.library.ERC721._is_approved_or_owner" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 86, - "end_line": 122, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" - }, - "parent_location": [ - { - "end_col": 53, - "end_line": 298, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" - }, - "parent_location": [ - { - "end_col": 93, - "end_line": 136, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" - }, - "parent_location": [ - { - "end_col": 64, - "end_line": 303, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" - }, - "start_col": 29, - "start_line": 303 - }, - "While trying to retrieve the implicit argument 'range_check_ptr' in:" - ], - "start_col": 78, - "start_line": 136 - }, - "While expanding the reference 'range_check_ptr' in:" - ], - "start_col": 31, - "start_line": 298 - }, - "While trying to update the implicit return value 'range_check_ptr' in:" - ], - "start_col": 71, - "start_line": 122 - } - }, - "1374": { - "accessible_scopes": [ - "openzeppelin.token.erc721.library", - "openzeppelin.token.erc721.library.ERC721", - "openzeppelin.token.erc721.library.ERC721._is_approved_or_owner" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 19, - "end_line": 293, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" - }, - "parent_location": [ - { - "end_col": 19, - "end_line": 293, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" - }, - "parent_location": [ - { - "end_col": 54, - "end_line": 303, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" - }, - "start_col": 49, - "start_line": 303 - }, - "While expanding the reference 'owner' in:" - ], - "start_col": 14, - "start_line": 293 - }, - "While auto generating local variable for 'owner'." - ], - "start_col": 14, - "start_line": 293 - } - }, - "1375": { - "accessible_scopes": [ - "openzeppelin.token.erc721.library", - "openzeppelin.token.erc721.library.ERC721", - "openzeppelin.token.erc721.library.ERC721._is_approved_or_owner" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 22, - "end_line": 284, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" - }, - "parent_location": [ - { - "end_col": 63, - "end_line": 303, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" - }, - "start_col": 56, - "start_line": 303 - }, - "While expanding the reference 'spender' in:" - ], - "start_col": 9, - "start_line": 284 - } - }, - "1376": { - "accessible_scopes": [ - "openzeppelin.token.erc721.library", - "openzeppelin.token.erc721.library.ERC721", - "openzeppelin.token.erc721.library.ERC721._is_approved_or_owner" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 64, - "end_line": 303, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" - }, - "start_col": 29, - "start_line": 303 - } - }, - "1378": { - "accessible_scopes": [ - "openzeppelin.token.erc721.library", - "openzeppelin.token.erc721.library.ERC721", - "openzeppelin.token.erc721.library.ERC721._is_approved_or_owner" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 32, - "end_line": 304, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" - }, - "start_col": 13, - "start_line": 304 - } - }, - "1380": { - "accessible_scopes": [ - "openzeppelin.token.erc721.library", - "openzeppelin.token.erc721.library.ERC721", - "openzeppelin.token.erc721.library.ERC721._is_approved_or_owner" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 11, - "end_line": 304, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" - }, - "start_col": 9, - "start_line": 304 - } - }, - "1382": { - "accessible_scopes": [ - "openzeppelin.token.erc721.library", - "openzeppelin.token.erc721.library.ERC721", - "openzeppelin.token.erc721.library.ERC721._is_approved_or_owner" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 76, - "end_line": 136, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" - }, - "parent_location": [ - { - "end_col": 64, - "end_line": 303, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" - }, - "parent_location": [ - { - "end_col": 58, - "end_line": 283, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" - }, - "parent_location": [ - { - "end_col": 25, - "end_line": 305, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" - }, - "start_col": 13, - "start_line": 305 - }, - "While trying to retrieve the implicit argument 'pedersen_ptr' in:" - ], - "start_col": 32, - "start_line": 283 - }, - "While expanding the reference 'pedersen_ptr' in:" - ], - "start_col": 29, - "start_line": 303 - }, - "While trying to update the implicit return value 'pedersen_ptr' in:" - ], - "start_col": 50, - "start_line": 136 - } - }, - "1383": { - "accessible_scopes": [ - "openzeppelin.token.erc721.library", - "openzeppelin.token.erc721.library.ERC721", - "openzeppelin.token.erc721.library.ERC721._is_approved_or_owner" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 48, - "end_line": 136, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" - }, - "parent_location": [ - { - "end_col": 64, - "end_line": 303, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" - }, - "parent_location": [ - { - "end_col": 78, - "end_line": 283, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" - }, - "parent_location": [ - { - "end_col": 25, - "end_line": 305, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" - }, - "start_col": 13, - "start_line": 305 - }, - "While trying to retrieve the implicit argument 'syscall_ptr' in:" - ], - "start_col": 60, - "start_line": 283 - }, - "While expanding the reference 'syscall_ptr' in:" - ], - "start_col": 29, - "start_line": 303 - }, - "While trying to update the implicit return value 'syscall_ptr' in:" - ], - "start_col": 30, - "start_line": 136 - } - }, - "1384": { - "accessible_scopes": [ - "openzeppelin.token.erc721.library", - "openzeppelin.token.erc721.library.ERC721", - "openzeppelin.token.erc721.library.ERC721._is_approved_or_owner" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 93, - "end_line": 136, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" - }, - "parent_location": [ - { - "end_col": 64, - "end_line": 303, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" - }, - "parent_location": [ - { - "end_col": 95, - "end_line": 283, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" - }, - "parent_location": [ - { - "end_col": 25, - "end_line": 305, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" - }, - "start_col": 13, - "start_line": 305 - }, - "While trying to retrieve the implicit argument 'range_check_ptr' in:" - ], - "start_col": 80, - "start_line": 283 - }, - "While expanding the reference 'range_check_ptr' in:" - ], - "start_col": 29, - "start_line": 303 - }, - "While trying to update the implicit return value 'range_check_ptr' in:" - ], - "start_col": 78, - "start_line": 136 - } - }, - "1385": { - "accessible_scopes": [ - "openzeppelin.token.erc721.library", - "openzeppelin.token.erc721.library.ERC721", - "openzeppelin.token.erc721.library.ERC721._is_approved_or_owner" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 24, - "end_line": 305, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" - }, - "start_col": 20, - "start_line": 305 - } - }, - "1387": { - "accessible_scopes": [ - "openzeppelin.token.erc721.library", - "openzeppelin.token.erc721.library.ERC721", - "openzeppelin.token.erc721.library.ERC721._is_approved_or_owner" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 25, - "end_line": 305, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" - }, - "start_col": 13, - "start_line": 305 - } - }, - "1388": { - "accessible_scopes": [ - "openzeppelin.token.erc721.library", - "openzeppelin.token.erc721.library.ERC721", - "openzeppelin.token.erc721.library.ERC721._is_approved_or_owner" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 76, - "end_line": 136, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" - }, - "parent_location": [ - { - "end_col": 64, - "end_line": 303, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" - }, - "parent_location": [ - { - "end_col": 58, - "end_line": 283, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" - }, - "parent_location": [ - { - "end_col": 22, - "end_line": 308, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" - }, - "start_col": 9, - "start_line": 308 - }, - "While trying to retrieve the implicit argument 'pedersen_ptr' in:" - ], - "start_col": 32, - "start_line": 283 - }, - "While expanding the reference 'pedersen_ptr' in:" - ], - "start_col": 29, - "start_line": 303 - }, - "While trying to update the implicit return value 'pedersen_ptr' in:" - ], - "start_col": 50, - "start_line": 136 - } - }, - "1389": { - "accessible_scopes": [ - "openzeppelin.token.erc721.library", - "openzeppelin.token.erc721.library.ERC721", - "openzeppelin.token.erc721.library.ERC721._is_approved_or_owner" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 48, - "end_line": 136, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" - }, - "parent_location": [ - { - "end_col": 64, - "end_line": 303, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" - }, - "parent_location": [ - { - "end_col": 78, - "end_line": 283, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" - }, - "parent_location": [ - { - "end_col": 22, - "end_line": 308, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" - }, - "start_col": 9, - "start_line": 308 - }, - "While trying to retrieve the implicit argument 'syscall_ptr' in:" - ], - "start_col": 60, - "start_line": 283 - }, - "While expanding the reference 'syscall_ptr' in:" - ], - "start_col": 29, - "start_line": 303 - }, - "While trying to update the implicit return value 'syscall_ptr' in:" - ], - "start_col": 30, - "start_line": 136 - } - }, - "1390": { - "accessible_scopes": [ - "openzeppelin.token.erc721.library", - "openzeppelin.token.erc721.library.ERC721", - "openzeppelin.token.erc721.library.ERC721._is_approved_or_owner" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 93, - "end_line": 136, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" - }, - "parent_location": [ - { - "end_col": 64, - "end_line": 303, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" - }, - "parent_location": [ - { - "end_col": 95, - "end_line": 283, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" - }, - "parent_location": [ - { - "end_col": 22, - "end_line": 308, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" - }, - "start_col": 9, - "start_line": 308 - }, - "While trying to retrieve the implicit argument 'range_check_ptr' in:" - ], - "start_col": 80, - "start_line": 283 - }, - "While expanding the reference 'range_check_ptr' in:" - ], - "start_col": 29, - "start_line": 303 - }, - "While trying to update the implicit return value 'range_check_ptr' in:" - ], - "start_col": 78, - "start_line": 136 - } - }, - "1391": { - "accessible_scopes": [ - "openzeppelin.token.erc721.library", - "openzeppelin.token.erc721.library.ERC721", - "openzeppelin.token.erc721.library.ERC721._is_approved_or_owner" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 21, - "end_line": 308, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" - }, - "start_col": 16, - "start_line": 308 - } - }, - "1393": { - "accessible_scopes": [ - "openzeppelin.token.erc721.library", - "openzeppelin.token.erc721.library.ERC721", - "openzeppelin.token.erc721.library.ERC721._is_approved_or_owner" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 22, - "end_line": 308, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" - }, - "start_col": 9, - "start_line": 308 - } - }, - "1394": { - "accessible_scopes": [ - "openzeppelin.token.erc721.library", - "openzeppelin.token.erc721.library.ERC721", - "openzeppelin.token.erc721.library.ERC721._exists" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 36, - "end_line": 311, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" - }, - "parent_location": [ - { - "end_col": 33, - "end_line": 13, - "input_file": { - "filename": "autogen/starknet/storage_var/ERC721_owners/decl.cairo" - }, - "parent_location": [ - { - "end_col": 52, - "end_line": 314, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" - }, - "start_col": 24, - "start_line": 314 - }, - "While trying to retrieve the implicit argument 'syscall_ptr' in:" - ], - "start_col": 15, - "start_line": 13 - }, - "While expanding the reference 'syscall_ptr' in:" - ], - "start_col": 18, - "start_line": 311 - } - }, - "1395": { - "accessible_scopes": [ - "openzeppelin.token.erc721.library", - "openzeppelin.token.erc721.library.ERC721", - "openzeppelin.token.erc721.library.ERC721._exists" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 64, - "end_line": 311, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" - }, - "parent_location": [ - { - "end_col": 61, - "end_line": 13, - "input_file": { - "filename": "autogen/starknet/storage_var/ERC721_owners/decl.cairo" - }, - "parent_location": [ - { - "end_col": 52, - "end_line": 314, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" - }, - "start_col": 24, - "start_line": 314 - }, - "While trying to retrieve the implicit argument 'pedersen_ptr' in:" - ], - "start_col": 35, - "start_line": 13 - }, - "While expanding the reference 'pedersen_ptr' in:" - ], - "start_col": 38, - "start_line": 311 - } - }, - "1396": { - "accessible_scopes": [ - "openzeppelin.token.erc721.library", - "openzeppelin.token.erc721.library.ERC721", - "openzeppelin.token.erc721.library.ERC721._exists" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 81, - "end_line": 311, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" - }, - "parent_location": [ - { - "end_col": 78, - "end_line": 13, - "input_file": { - "filename": "autogen/starknet/storage_var/ERC721_owners/decl.cairo" - }, - "parent_location": [ - { - "end_col": 52, - "end_line": 314, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" - }, - "start_col": 24, - "start_line": 314 - }, - "While trying to retrieve the implicit argument 'range_check_ptr' in:" - ], - "start_col": 63, - "start_line": 13 - }, - "While expanding the reference 'range_check_ptr' in:" - ], - "start_col": 66, - "start_line": 311 - } - }, - "1397": { - "accessible_scopes": [ - "openzeppelin.token.erc721.library", - "openzeppelin.token.erc721.library.ERC721", - "openzeppelin.token.erc721.library.ERC721._exists" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 26, - "end_line": 312, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" - }, - "parent_location": [ - { - "end_col": 51, - "end_line": 314, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" - }, - "start_col": 43, - "start_line": 314 - }, - "While expanding the reference 'token_id' in:" - ], - "start_col": 9, - "start_line": 312 - } - }, - "1398": { - "accessible_scopes": [ - "openzeppelin.token.erc721.library", - "openzeppelin.token.erc721.library.ERC721", - "openzeppelin.token.erc721.library.ERC721._exists" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 26, - "end_line": 312, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" - }, - "parent_location": [ - { - "end_col": 51, - "end_line": 314, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" - }, - "start_col": 43, - "start_line": 314 - }, - "While expanding the reference 'token_id' in:" - ], - "start_col": 9, - "start_line": 312 - } - }, - "1399": { - "accessible_scopes": [ - "openzeppelin.token.erc721.library", - "openzeppelin.token.erc721.library.ERC721", - "openzeppelin.token.erc721.library.ERC721._exists" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 52, - "end_line": 314, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" - }, - "start_col": 24, - "start_line": 314 - } - }, - "1401": { - "accessible_scopes": [ - "openzeppelin.token.erc721.library", - "openzeppelin.token.erc721.library.ERC721", - "openzeppelin.token.erc721.library.ERC721._exists" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 11, - "end_line": 315, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" - }, - "start_col": 9, - "start_line": 315 - } - }, - "1403": { - "accessible_scopes": [ - "openzeppelin.token.erc721.library", - "openzeppelin.token.erc721.library.ERC721", - "openzeppelin.token.erc721.library.ERC721._exists" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 33, - "end_line": 13, - "input_file": { - "filename": "autogen/starknet/storage_var/ERC721_owners/decl.cairo" - }, - "parent_location": [ - { - "end_col": 52, - "end_line": 314, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" - }, - "parent_location": [ - { - "end_col": 36, - "end_line": 311, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" - }, - "parent_location": [ - { - "end_col": 26, - "end_line": 316, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" - }, - "start_col": 13, - "start_line": 316 - }, - "While trying to retrieve the implicit argument 'syscall_ptr' in:" - ], - "start_col": 18, - "start_line": 311 - }, - "While expanding the reference 'syscall_ptr' in:" - ], - "start_col": 24, - "start_line": 314 - }, - "While trying to update the implicit return value 'syscall_ptr' in:" - ], - "start_col": 15, - "start_line": 13 - } - }, - "1404": { - "accessible_scopes": [ - "openzeppelin.token.erc721.library", - "openzeppelin.token.erc721.library.ERC721", - "openzeppelin.token.erc721.library.ERC721._exists" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 61, - "end_line": 13, - "input_file": { - "filename": "autogen/starknet/storage_var/ERC721_owners/decl.cairo" - }, - "parent_location": [ - { - "end_col": 52, - "end_line": 314, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" - }, - "parent_location": [ - { - "end_col": 64, - "end_line": 311, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" - }, - "parent_location": [ - { - "end_col": 26, - "end_line": 316, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" - }, - "start_col": 13, - "start_line": 316 - }, - "While trying to retrieve the implicit argument 'pedersen_ptr' in:" - ], - "start_col": 38, - "start_line": 311 - }, - "While expanding the reference 'pedersen_ptr' in:" - ], - "start_col": 24, - "start_line": 314 - }, - "While trying to update the implicit return value 'pedersen_ptr' in:" - ], - "start_col": 35, - "start_line": 13 - } - }, - "1405": { - "accessible_scopes": [ - "openzeppelin.token.erc721.library", - "openzeppelin.token.erc721.library.ERC721", - "openzeppelin.token.erc721.library.ERC721._exists" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 78, - "end_line": 13, - "input_file": { - "filename": "autogen/starknet/storage_var/ERC721_owners/decl.cairo" - }, - "parent_location": [ - { - "end_col": 52, - "end_line": 314, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" - }, - "parent_location": [ - { - "end_col": 81, - "end_line": 311, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" - }, - "parent_location": [ - { - "end_col": 26, - "end_line": 316, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" - }, - "start_col": 13, - "start_line": 316 - }, - "While trying to retrieve the implicit argument 'range_check_ptr' in:" - ], - "start_col": 66, - "start_line": 311 - }, - "While expanding the reference 'range_check_ptr' in:" - ], - "start_col": 24, - "start_line": 314 - }, - "While trying to update the implicit return value 'range_check_ptr' in:" - ], - "start_col": 63, - "start_line": 13 - } - }, - "1406": { - "accessible_scopes": [ - "openzeppelin.token.erc721.library", - "openzeppelin.token.erc721.library.ERC721", - "openzeppelin.token.erc721.library.ERC721._exists" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 25, - "end_line": 316, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" - }, - "start_col": 20, - "start_line": 316 - } - }, - "1408": { - "accessible_scopes": [ - "openzeppelin.token.erc721.library", - "openzeppelin.token.erc721.library.ERC721", - "openzeppelin.token.erc721.library.ERC721._exists" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 26, - "end_line": 316, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" - }, - "start_col": 13, - "start_line": 316 - } - }, - "1409": { - "accessible_scopes": [ - "openzeppelin.token.erc721.library", - "openzeppelin.token.erc721.library.ERC721", - "openzeppelin.token.erc721.library.ERC721._exists" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 33, - "end_line": 13, - "input_file": { - "filename": "autogen/starknet/storage_var/ERC721_owners/decl.cairo" - }, - "parent_location": [ - { - "end_col": 52, - "end_line": 314, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" - }, - "parent_location": [ - { - "end_col": 36, - "end_line": 311, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" - }, - "parent_location": [ - { - "end_col": 21, - "end_line": 319, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" - }, - "start_col": 9, - "start_line": 319 - }, - "While trying to retrieve the implicit argument 'syscall_ptr' in:" - ], - "start_col": 18, - "start_line": 311 - }, - "While expanding the reference 'syscall_ptr' in:" - ], - "start_col": 24, - "start_line": 314 - }, - "While trying to update the implicit return value 'syscall_ptr' in:" - ], - "start_col": 15, - "start_line": 13 - } - }, - "1410": { - "accessible_scopes": [ - "openzeppelin.token.erc721.library", - "openzeppelin.token.erc721.library.ERC721", - "openzeppelin.token.erc721.library.ERC721._exists" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 61, - "end_line": 13, - "input_file": { - "filename": "autogen/starknet/storage_var/ERC721_owners/decl.cairo" - }, - "parent_location": [ - { - "end_col": 52, - "end_line": 314, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" - }, - "parent_location": [ - { - "end_col": 64, - "end_line": 311, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" - }, - "parent_location": [ - { - "end_col": 21, - "end_line": 319, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" - }, - "start_col": 9, - "start_line": 319 - }, - "While trying to retrieve the implicit argument 'pedersen_ptr' in:" - ], - "start_col": 38, - "start_line": 311 - }, - "While expanding the reference 'pedersen_ptr' in:" - ], - "start_col": 24, - "start_line": 314 - }, - "While trying to update the implicit return value 'pedersen_ptr' in:" - ], - "start_col": 35, - "start_line": 13 - } - }, - "1411": { - "accessible_scopes": [ - "openzeppelin.token.erc721.library", - "openzeppelin.token.erc721.library.ERC721", - "openzeppelin.token.erc721.library.ERC721._exists" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 78, - "end_line": 13, - "input_file": { - "filename": "autogen/starknet/storage_var/ERC721_owners/decl.cairo" - }, - "parent_location": [ - { - "end_col": 52, - "end_line": 314, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" - }, - "parent_location": [ - { - "end_col": 81, - "end_line": 311, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" - }, - "parent_location": [ - { - "end_col": 21, - "end_line": 319, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" - }, - "start_col": 9, - "start_line": 319 - }, - "While trying to retrieve the implicit argument 'range_check_ptr' in:" - ], - "start_col": 66, - "start_line": 311 - }, - "While expanding the reference 'range_check_ptr' in:" - ], - "start_col": 24, - "start_line": 314 - }, - "While trying to update the implicit return value 'range_check_ptr' in:" - ], - "start_col": 63, - "start_line": 13 - } - }, - "1412": { - "accessible_scopes": [ - "openzeppelin.token.erc721.library", - "openzeppelin.token.erc721.library.ERC721", - "openzeppelin.token.erc721.library.ERC721._exists" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 20, - "end_line": 319, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" - }, - "start_col": 16, - "start_line": 319 - } - }, - "1414": { - "accessible_scopes": [ - "openzeppelin.token.erc721.library", - "openzeppelin.token.erc721.library.ERC721", - "openzeppelin.token.erc721.library.ERC721._exists" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 21, - "end_line": 319, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" - }, - "start_col": 9, - "start_line": 319 - } - }, - "1415": { - "accessible_scopes": [ - "openzeppelin.token.erc721.library", - "openzeppelin.token.erc721.library.ERC721", - "openzeppelin.token.erc721.library.ERC721._approve" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 37, - "end_line": 322, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" - }, - "parent_location": [ - { - "end_col": 34, - "end_line": 21, - "input_file": { - "filename": "autogen/starknet/storage_var/ERC721_token_approvals/decl.cairo" - }, - "parent_location": [ - { - "end_col": 51, - "end_line": 325, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" - }, - "start_col": 9, - "start_line": 325 - }, - "While trying to retrieve the implicit argument 'syscall_ptr' in:" - ], - "start_col": 16, - "start_line": 21 - }, - "While expanding the reference 'syscall_ptr' in:" - ], - "start_col": 19, - "start_line": 322 - } - }, - "1416": { - "accessible_scopes": [ - "openzeppelin.token.erc721.library", - "openzeppelin.token.erc721.library.ERC721", - "openzeppelin.token.erc721.library.ERC721._approve" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 65, - "end_line": 322, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" - }, - "parent_location": [ - { - "end_col": 62, - "end_line": 21, - "input_file": { - "filename": "autogen/starknet/storage_var/ERC721_token_approvals/decl.cairo" - }, - "parent_location": [ - { - "end_col": 51, - "end_line": 325, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" - }, - "start_col": 9, - "start_line": 325 - }, - "While trying to retrieve the implicit argument 'pedersen_ptr' in:" - ], - "start_col": 36, - "start_line": 21 - }, - "While expanding the reference 'pedersen_ptr' in:" - ], - "start_col": 39, - "start_line": 322 - } - }, - "1417": { - "accessible_scopes": [ - "openzeppelin.token.erc721.library", - "openzeppelin.token.erc721.library.ERC721", - "openzeppelin.token.erc721.library.ERC721._approve" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 82, - "end_line": 322, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" - }, - "parent_location": [ - { - "end_col": 79, - "end_line": 21, - "input_file": { - "filename": "autogen/starknet/storage_var/ERC721_token_approvals/decl.cairo" - }, - "parent_location": [ - { - "end_col": 51, - "end_line": 325, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" - }, - "start_col": 9, - "start_line": 325 - }, - "While trying to retrieve the implicit argument 'range_check_ptr' in:" - ], - "start_col": 64, - "start_line": 21 - }, - "While expanding the reference 'range_check_ptr' in:" - ], - "start_col": 67, - "start_line": 322 - } - }, - "1418": { - "accessible_scopes": [ - "openzeppelin.token.erc721.library", - "openzeppelin.token.erc721.library.ERC721", - "openzeppelin.token.erc721.library.ERC721._approve" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 36, - "end_line": 323, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" - }, - "parent_location": [ - { - "end_col": 46, - "end_line": 325, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" - }, - "start_col": 38, - "start_line": 325 - }, - "While expanding the reference 'token_id' in:" - ], - "start_col": 19, - "start_line": 323 - } - }, - "1419": { - "accessible_scopes": [ - "openzeppelin.token.erc721.library", - "openzeppelin.token.erc721.library.ERC721", - "openzeppelin.token.erc721.library.ERC721._approve" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 36, - "end_line": 323, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" - }, - "parent_location": [ - { - "end_col": 46, - "end_line": 325, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" - }, - "start_col": 38, - "start_line": 325 - }, - "While expanding the reference 'token_id' in:" - ], - "start_col": 19, - "start_line": 323 - } - }, - "1420": { - "accessible_scopes": [ - "openzeppelin.token.erc721.library", - "openzeppelin.token.erc721.library.ERC721", - "openzeppelin.token.erc721.library.ERC721._approve" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 17, - "end_line": 323, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" - }, - "parent_location": [ - { - "end_col": 50, - "end_line": 325, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" - }, - "start_col": 48, - "start_line": 325 - }, - "While expanding the reference 'to' in:" - ], - "start_col": 9, - "start_line": 323 - } - }, - "1421": { - "accessible_scopes": [ - "openzeppelin.token.erc721.library", - "openzeppelin.token.erc721.library.ERC721", - "openzeppelin.token.erc721.library.ERC721._approve" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 51, - "end_line": 325, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" - }, - "start_col": 9, - "start_line": 325 - } - }, - "1423": { - "accessible_scopes": [ - "openzeppelin.token.erc721.library", - "openzeppelin.token.erc721.library.ERC721", - "openzeppelin.token.erc721.library.ERC721._approve" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 36, - "end_line": 323, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" - }, - "parent_location": [ - { - "end_col": 40, - "end_line": 326, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" - }, - "start_col": 32, - "start_line": 326 - }, - "While expanding the reference 'token_id' in:" - ], - "start_col": 19, - "start_line": 323 - } - }, - "1424": { - "accessible_scopes": [ - "openzeppelin.token.erc721.library", - "openzeppelin.token.erc721.library.ERC721", - "openzeppelin.token.erc721.library.ERC721._approve" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 36, - "end_line": 323, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" - }, - "parent_location": [ - { - "end_col": 40, - "end_line": 326, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" - }, - "start_col": 32, - "start_line": 326 - }, - "While expanding the reference 'token_id' in:" - ], - "start_col": 19, - "start_line": 323 - } - }, - "1425": { - "accessible_scopes": [ - "openzeppelin.token.erc721.library", - "openzeppelin.token.erc721.library.ERC721", - "openzeppelin.token.erc721.library.ERC721._approve" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 41, - "end_line": 326, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" - }, - "start_col": 23, - "start_line": 326 - } - }, - "1427": { - "accessible_scopes": [ - "openzeppelin.token.erc721.library", - "openzeppelin.token.erc721.library.ERC721", - "openzeppelin.token.erc721.library.ERC721._approve" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 37, - "end_line": 109, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" - }, - "parent_location": [ - { - "end_col": 41, - "end_line": 326, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" - }, - "parent_location": [ - { - "end_col": 29, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/event/Approval/a7a8ae41be29ac9f4f6c3b7837c448d787ca051dd1ade98f409e54d33d112504.cairo" - }, - "parent_location": [ - { - "end_col": 14, - "end_line": 32, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" - }, - "parent_location": [ - { - "end_col": 43, - "end_line": 327, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" - }, - "start_col": 9, - "start_line": 327 - }, - "While trying to retrieve the implicit argument 'syscall_ptr' in:" - ], - "start_col": 6, - "start_line": 32 - }, - "While handling event:" - ], - "start_col": 11, - "start_line": 1 - }, - "While expanding the reference 'syscall_ptr' in:" - ], - "start_col": 23, - "start_line": 326 - }, - "While trying to update the implicit return value 'syscall_ptr' in:" - ], - "start_col": 19, - "start_line": 109 - } - }, - "1428": { - "accessible_scopes": [ - "openzeppelin.token.erc721.library", - "openzeppelin.token.erc721.library.ERC721", - "openzeppelin.token.erc721.library.ERC721._approve" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 82, - "end_line": 109, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" - }, - "parent_location": [ - { - "end_col": 41, - "end_line": 326, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" - }, - "parent_location": [ - { - "end_col": 46, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/event/Approval/a7a8ae41be29ac9f4f6c3b7837c448d787ca051dd1ade98f409e54d33d112504.cairo" - }, - "parent_location": [ - { - "end_col": 14, - "end_line": 32, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" - }, - "parent_location": [ - { - "end_col": 43, - "end_line": 327, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" - }, - "start_col": 9, - "start_line": 327 - }, - "While trying to retrieve the implicit argument 'range_check_ptr' in:" - ], - "start_col": 6, - "start_line": 32 - }, - "While handling event:" - ], - "start_col": 31, - "start_line": 1 - }, - "While expanding the reference 'range_check_ptr' in:" - ], - "start_col": 23, - "start_line": 326 - }, - "While trying to update the implicit return value 'range_check_ptr' in:" - ], - "start_col": 67, - "start_line": 109 - } - }, - "1429": { - "accessible_scopes": [ - "openzeppelin.token.erc721.library", - "openzeppelin.token.erc721.library.ERC721", - "openzeppelin.token.erc721.library.ERC721._approve" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 19, - "end_line": 326, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" - }, - "parent_location": [ - { - "end_col": 28, - "end_line": 327, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" - }, - "start_col": 23, - "start_line": 327 - }, - "While expanding the reference 'owner' in:" - ], - "start_col": 14, - "start_line": 326 - } - }, - "1430": { - "accessible_scopes": [ - "openzeppelin.token.erc721.library", - "openzeppelin.token.erc721.library.ERC721", - "openzeppelin.token.erc721.library.ERC721._approve" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 17, - "end_line": 323, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" - }, - "parent_location": [ - { - "end_col": 32, - "end_line": 327, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" - }, - "start_col": 30, - "start_line": 327 - }, - "While expanding the reference 'to' in:" - ], - "start_col": 9, - "start_line": 323 - } - }, - "1431": { - "accessible_scopes": [ - "openzeppelin.token.erc721.library", - "openzeppelin.token.erc721.library.ERC721", - "openzeppelin.token.erc721.library.ERC721._approve" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 36, - "end_line": 323, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" - }, - "parent_location": [ - { - "end_col": 42, - "end_line": 327, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" - }, - "start_col": 34, - "start_line": 327 - }, - "While expanding the reference 'token_id' in:" - ], - "start_col": 19, - "start_line": 323 - } - }, - "1432": { - "accessible_scopes": [ - "openzeppelin.token.erc721.library", - "openzeppelin.token.erc721.library.ERC721", - "openzeppelin.token.erc721.library.ERC721._approve" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 36, - "end_line": 323, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" - }, - "parent_location": [ - { - "end_col": 42, - "end_line": 327, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" - }, - "start_col": 34, - "start_line": 327 - }, - "While expanding the reference 'token_id' in:" - ], - "start_col": 19, - "start_line": 323 - } - }, - "1433": { - "accessible_scopes": [ - "openzeppelin.token.erc721.library", - "openzeppelin.token.erc721.library.ERC721", - "openzeppelin.token.erc721.library.ERC721._approve" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 43, - "end_line": 327, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" - }, - "start_col": 9, - "start_line": 327 - } - }, - "1435": { - "accessible_scopes": [ - "openzeppelin.token.erc721.library", - "openzeppelin.token.erc721.library.ERC721", - "openzeppelin.token.erc721.library.ERC721._approve" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 29, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/event/Approval/a7a8ae41be29ac9f4f6c3b7837c448d787ca051dd1ade98f409e54d33d112504.cairo" - }, - "parent_location": [ - { - "end_col": 14, - "end_line": 32, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" - }, - "parent_location": [ - { - "end_col": 43, - "end_line": 327, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" - }, - "parent_location": [ - { - "end_col": 37, - "end_line": 322, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" - }, - "parent_location": [ - { - "end_col": 19, - "end_line": 328, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" - }, - "start_col": 9, - "start_line": 328 - }, - "While trying to retrieve the implicit argument 'syscall_ptr' in:" - ], - "start_col": 19, - "start_line": 322 - }, - "While expanding the reference 'syscall_ptr' in:" - ], - "start_col": 9, - "start_line": 327 - }, - "While trying to update the implicit return value 'syscall_ptr' in:" - ], - "start_col": 6, - "start_line": 32 - }, - "While handling event:" - ], - "start_col": 11, - "start_line": 1 - } - }, - "1436": { - "accessible_scopes": [ - "openzeppelin.token.erc721.library", - "openzeppelin.token.erc721.library.ERC721", - "openzeppelin.token.erc721.library.ERC721._approve" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 65, - "end_line": 109, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" - }, - "parent_location": [ - { - "end_col": 41, - "end_line": 326, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" - }, - "parent_location": [ - { - "end_col": 65, - "end_line": 322, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" - }, - "parent_location": [ - { - "end_col": 19, - "end_line": 328, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" - }, - "start_col": 9, - "start_line": 328 - }, - "While trying to retrieve the implicit argument 'pedersen_ptr' in:" - ], - "start_col": 39, - "start_line": 322 - }, - "While expanding the reference 'pedersen_ptr' in:" - ], - "start_col": 23, - "start_line": 326 - }, - "While trying to update the implicit return value 'pedersen_ptr' in:" - ], - "start_col": 39, - "start_line": 109 - } - }, - "1437": { - "accessible_scopes": [ - "openzeppelin.token.erc721.library", - "openzeppelin.token.erc721.library.ERC721", - "openzeppelin.token.erc721.library.ERC721._approve" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 46, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/event/Approval/a7a8ae41be29ac9f4f6c3b7837c448d787ca051dd1ade98f409e54d33d112504.cairo" - }, - "parent_location": [ - { - "end_col": 14, - "end_line": 32, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" - }, - "parent_location": [ - { - "end_col": 43, - "end_line": 327, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" - }, - "parent_location": [ - { - "end_col": 82, - "end_line": 322, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" - }, - "parent_location": [ - { - "end_col": 19, - "end_line": 328, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" - }, - "start_col": 9, - "start_line": 328 - }, - "While trying to retrieve the implicit argument 'range_check_ptr' in:" - ], - "start_col": 67, - "start_line": 322 - }, - "While expanding the reference 'range_check_ptr' in:" - ], - "start_col": 9, - "start_line": 327 - }, - "While trying to update the implicit return value 'range_check_ptr' in:" - ], - "start_col": 6, - "start_line": 32 - }, - "While handling event:" - ], - "start_col": 31, - "start_line": 1 - } - }, - "1438": { - "accessible_scopes": [ - "openzeppelin.token.erc721.library", - "openzeppelin.token.erc721.library.ERC721", - "openzeppelin.token.erc721.library.ERC721._approve" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 19, - "end_line": 328, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" - }, - "start_col": 9, - "start_line": 328 - } - }, - "1439": { - "accessible_scopes": [ - "openzeppelin.token.erc721.library", - "openzeppelin.token.erc721.library.ERC721", - "openzeppelin.token.erc721.library.ERC721._transfer" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 38, - "end_line": 331, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" - }, - "parent_location": [ - { - "end_col": 37, - "end_line": 109, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" - }, - "parent_location": [ - { - "end_col": 41, - "end_line": 335, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" - }, - "start_col": 23, - "start_line": 335 - }, - "While trying to retrieve the implicit argument 'syscall_ptr' in:" - ], - "start_col": 19, - "start_line": 109 - }, - "While expanding the reference 'syscall_ptr' in:" - ], - "start_col": 20, - "start_line": 331 - } - }, - "1440": { - "accessible_scopes": [ - "openzeppelin.token.erc721.library", - "openzeppelin.token.erc721.library.ERC721", - "openzeppelin.token.erc721.library.ERC721._transfer" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 66, - "end_line": 331, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" - }, - "parent_location": [ - { - "end_col": 65, - "end_line": 109, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" - }, - "parent_location": [ - { - "end_col": 41, - "end_line": 335, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" - }, - "start_col": 23, - "start_line": 335 - }, - "While trying to retrieve the implicit argument 'pedersen_ptr' in:" - ], - "start_col": 39, - "start_line": 109 - }, - "While expanding the reference 'pedersen_ptr' in:" - ], - "start_col": 40, - "start_line": 331 - } - }, - "1441": { - "accessible_scopes": [ - "openzeppelin.token.erc721.library", - "openzeppelin.token.erc721.library.ERC721", - "openzeppelin.token.erc721.library.ERC721._transfer" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 83, - "end_line": 331, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" - }, - "parent_location": [ - { - "end_col": 82, - "end_line": 109, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" - }, - "parent_location": [ - { - "end_col": 41, - "end_line": 335, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" - }, - "start_col": 23, - "start_line": 335 - }, - "While trying to retrieve the implicit argument 'range_check_ptr' in:" - ], - "start_col": 67, - "start_line": 109 - }, - "While expanding the reference 'range_check_ptr' in:" - ], - "start_col": 68, - "start_line": 331 - } - }, - "1442": { - "accessible_scopes": [ - "openzeppelin.token.erc721.library", - "openzeppelin.token.erc721.library.ERC721", - "openzeppelin.token.erc721.library.ERC721._transfer" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 49, - "end_line": 332, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" - }, - "parent_location": [ - { - "end_col": 40, - "end_line": 335, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" - }, - "start_col": 32, - "start_line": 335 - }, - "While expanding the reference 'token_id' in:" - ], - "start_col": 32, - "start_line": 332 - } - }, - "1443": { - "accessible_scopes": [ - "openzeppelin.token.erc721.library", - "openzeppelin.token.erc721.library.ERC721", - "openzeppelin.token.erc721.library.ERC721._transfer" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 49, - "end_line": 332, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" - }, - "parent_location": [ - { - "end_col": 40, - "end_line": 335, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" - }, - "start_col": 32, - "start_line": 335 - }, - "While expanding the reference 'token_id' in:" - ], - "start_col": 32, - "start_line": 332 - } - }, - "1444": { - "accessible_scopes": [ - "openzeppelin.token.erc721.library", - "openzeppelin.token.erc721.library.ERC721", - "openzeppelin.token.erc721.library.ERC721._transfer" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 41, - "end_line": 335, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" - }, - "start_col": 23, - "start_line": 335 - } - }, - "1446": { - "accessible_scopes": [ - "openzeppelin.token.erc721.library", - "openzeppelin.token.erc721.library.ERC721", - "openzeppelin.token.erc721.library.ERC721._transfer" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 34, - "end_line": 337, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" - }, - "start_col": 13, - "start_line": 337 - } - }, - "1447": { - "accessible_scopes": [ - "openzeppelin.token.erc721.library", - "openzeppelin.token.erc721.library.ERC721", - "openzeppelin.token.erc721.library.ERC721._transfer" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 30, - "end_line": 332, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" - }, - "parent_location": [ - { - "end_col": 31, - "end_line": 341, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" - }, - "start_col": 29, - "start_line": 341 - }, - "While expanding the reference 'to' in:" - ], - "start_col": 22, - "start_line": 332 - } - }, - "1448": { - "accessible_scopes": [ - "openzeppelin.token.erc721.library", - "openzeppelin.token.erc721.library.ERC721", - "openzeppelin.token.erc721.library.ERC721._transfer" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 32, - "end_line": 341, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" - }, - "start_col": 13, - "start_line": 341 - } - }, - "1450": { - "accessible_scopes": [ - "openzeppelin.token.erc721.library", - "openzeppelin.token.erc721.library.ERC721", - "openzeppelin.token.erc721.library.ERC721._transfer" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 37, - "end_line": 109, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" - }, - "parent_location": [ - { - "end_col": 41, - "end_line": 335, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" - }, - "parent_location": [ - { - "end_col": 37, - "end_line": 322, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" - }, - "parent_location": [ - { - "end_col": 30, - "end_line": 345, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" - }, - "start_col": 9, - "start_line": 345 - }, - "While trying to retrieve the implicit argument 'syscall_ptr' in:" - ], - "start_col": 19, - "start_line": 322 - }, - "While expanding the reference 'syscall_ptr' in:" - ], - "start_col": 23, - "start_line": 335 - }, - "While trying to update the implicit return value 'syscall_ptr' in:" - ], - "start_col": 19, - "start_line": 109 - } - }, - "1451": { - "accessible_scopes": [ - "openzeppelin.token.erc721.library", - "openzeppelin.token.erc721.library.ERC721", - "openzeppelin.token.erc721.library.ERC721._transfer" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 65, - "end_line": 109, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" - }, - "parent_location": [ - { - "end_col": 41, - "end_line": 335, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" - }, - "parent_location": [ - { - "end_col": 65, - "end_line": 322, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" - }, - "parent_location": [ - { - "end_col": 30, - "end_line": 345, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" - }, - "start_col": 9, - "start_line": 345 - }, - "While trying to retrieve the implicit argument 'pedersen_ptr' in:" - ], - "start_col": 39, - "start_line": 322 - }, - "While expanding the reference 'pedersen_ptr' in:" - ], - "start_col": 23, - "start_line": 335 - }, - "While trying to update the implicit return value 'pedersen_ptr' in:" - ], - "start_col": 39, - "start_line": 109 - } - }, - "1452": { - "accessible_scopes": [ - "openzeppelin.token.erc721.library", - "openzeppelin.token.erc721.library.ERC721", - "openzeppelin.token.erc721.library.ERC721._transfer" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 82, - "end_line": 109, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" - }, - "parent_location": [ - { - "end_col": 41, - "end_line": 335, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" - }, - "parent_location": [ - { - "end_col": 82, - "end_line": 322, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" - }, - "parent_location": [ - { - "end_col": 30, - "end_line": 345, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" - }, - "start_col": 9, - "start_line": 345 - }, - "While trying to retrieve the implicit argument 'range_check_ptr' in:" - ], - "start_col": 67, - "start_line": 322 - }, - "While expanding the reference 'range_check_ptr' in:" - ], - "start_col": 23, - "start_line": 335 - }, - "While trying to update the implicit return value 'range_check_ptr' in:" - ], - "start_col": 67, - "start_line": 109 - } - }, - "1453": { - "accessible_scopes": [ - "openzeppelin.token.erc721.library", - "openzeppelin.token.erc721.library.ERC721", - "openzeppelin.token.erc721.library.ERC721._transfer" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 19, - "end_line": 345, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" - }, - "start_col": 18, - "start_line": 345 - } - }, - "1455": { - "accessible_scopes": [ - "openzeppelin.token.erc721.library", - "openzeppelin.token.erc721.library.ERC721", - "openzeppelin.token.erc721.library.ERC721._transfer" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 49, - "end_line": 332, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" - }, - "parent_location": [ - { - "end_col": 29, - "end_line": 345, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" - }, - "start_col": 21, - "start_line": 345 - }, - "While expanding the reference 'token_id' in:" - ], - "start_col": 32, - "start_line": 332 - } - }, - "1456": { - "accessible_scopes": [ - "openzeppelin.token.erc721.library", - "openzeppelin.token.erc721.library.ERC721", - "openzeppelin.token.erc721.library.ERC721._transfer" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 49, - "end_line": 332, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" - }, - "parent_location": [ - { - "end_col": 29, - "end_line": 345, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" - }, - "start_col": 21, - "start_line": 345 - }, - "While expanding the reference 'token_id' in:" - ], - "start_col": 32, - "start_line": 332 - } - }, - "1457": { - "accessible_scopes": [ - "openzeppelin.token.erc721.library", - "openzeppelin.token.erc721.library.ERC721", - "openzeppelin.token.erc721.library.ERC721._transfer" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 30, - "end_line": 345, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" - }, - "start_col": 9, - "start_line": 345 - } - }, - "1459": { - "accessible_scopes": [ - "openzeppelin.token.erc721.library", - "openzeppelin.token.erc721.library.ERC721", - "openzeppelin.token.erc721.library.ERC721._transfer" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 20, - "end_line": 332, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" - }, - "parent_location": [ - { - "end_col": 53, - "end_line": 348, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" - }, - "start_col": 48, - "start_line": 348 - }, - "While expanding the reference 'from_' in:" - ], - "start_col": 9, - "start_line": 332 - } - }, - "1460": { - "accessible_scopes": [ - "openzeppelin.token.erc721.library", - "openzeppelin.token.erc721.library.ERC721", - "openzeppelin.token.erc721.library.ERC721._transfer" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 54, - "end_line": 348, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" - }, - "start_col": 27, - "start_line": 348 - } - }, - "1462": { - "accessible_scopes": [ - "openzeppelin.token.erc721.library", - "openzeppelin.token.erc721.library.ERC721", - "openzeppelin.token.erc721.library.ERC721._transfer" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 77, - "end_line": 349, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" - }, - "start_col": 76, - "start_line": 349 - } - }, - "1464": { - "accessible_scopes": [ - "openzeppelin.token.erc721.library", - "openzeppelin.token.erc721.library.ERC721", - "openzeppelin.token.erc721.library.ERC721._transfer" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 80, - "end_line": 349, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" - }, - "start_col": 79, - "start_line": 349 - } - }, - "1466": { - "accessible_scopes": [ - "openzeppelin.token.erc721.library", - "openzeppelin.token.erc721.library.ERC721", - "openzeppelin.token.erc721.library.ERC721._transfer" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 82, - "end_line": 349, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" - }, - "start_col": 38, - "start_line": 349 - } - }, - "1468": { - "accessible_scopes": [ - "openzeppelin.token.erc721.library", - "openzeppelin.token.erc721.library.ERC721", - "openzeppelin.token.erc721.library.ERC721._transfer" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 35, - "end_line": 37, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/security/safemath/library.cairo" - }, - "parent_location": [ - { - "end_col": 82, - "end_line": 349, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" - }, - "parent_location": [ - { - "end_col": 34, - "end_line": 21, - "input_file": { - "filename": "autogen/starknet/storage_var/ERC721_balances/decl.cairo" - }, - "parent_location": [ - { - "end_col": 50, - "end_line": 350, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" - }, - "start_col": 9, - "start_line": 350 - }, - "While trying to retrieve the implicit argument 'syscall_ptr' in:" - ], - "start_col": 16, - "start_line": 21 - }, - "While expanding the reference 'syscall_ptr' in:" - ], - "start_col": 38, - "start_line": 349 - }, - "While trying to update the implicit return value 'syscall_ptr' in:" - ], - "start_col": 17, - "start_line": 37 - } - }, - "1469": { - "accessible_scopes": [ - "openzeppelin.token.erc721.library", - "openzeppelin.token.erc721.library.ERC721", - "openzeppelin.token.erc721.library.ERC721._transfer" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 63, - "end_line": 37, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/security/safemath/library.cairo" - }, - "parent_location": [ - { - "end_col": 82, - "end_line": 349, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" - }, - "parent_location": [ - { - "end_col": 62, - "end_line": 21, - "input_file": { - "filename": "autogen/starknet/storage_var/ERC721_balances/decl.cairo" - }, - "parent_location": [ - { - "end_col": 50, - "end_line": 350, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" - }, - "start_col": 9, - "start_line": 350 - }, - "While trying to retrieve the implicit argument 'pedersen_ptr' in:" - ], - "start_col": 36, - "start_line": 21 - }, - "While expanding the reference 'pedersen_ptr' in:" - ], - "start_col": 38, - "start_line": 349 - }, - "While trying to update the implicit return value 'pedersen_ptr' in:" - ], - "start_col": 37, - "start_line": 37 - } - }, - "1470": { - "accessible_scopes": [ - "openzeppelin.token.erc721.library", - "openzeppelin.token.erc721.library.ERC721", - "openzeppelin.token.erc721.library.ERC721._transfer" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 80, - "end_line": 37, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/security/safemath/library.cairo" - }, - "parent_location": [ - { - "end_col": 82, - "end_line": 349, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" - }, - "parent_location": [ - { - "end_col": 79, - "end_line": 21, - "input_file": { - "filename": "autogen/starknet/storage_var/ERC721_balances/decl.cairo" - }, - "parent_location": [ - { - "end_col": 50, - "end_line": 350, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" - }, - "start_col": 9, - "start_line": 350 - }, - "While trying to retrieve the implicit argument 'range_check_ptr' in:" - ], - "start_col": 64, - "start_line": 21 - }, - "While expanding the reference 'range_check_ptr' in:" - ], - "start_col": 38, - "start_line": 349 - }, - "While trying to update the implicit return value 'range_check_ptr' in:" - ], - "start_col": 65, - "start_line": 37 - } - }, - "1471": { - "accessible_scopes": [ - "openzeppelin.token.erc721.library", - "openzeppelin.token.erc721.library.ERC721", - "openzeppelin.token.erc721.library.ERC721._transfer" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 20, - "end_line": 332, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" - }, - "parent_location": [ - { - "end_col": 36, - "end_line": 350, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" - }, - "start_col": 31, - "start_line": 350 - }, - "While expanding the reference 'from_' in:" - ], - "start_col": 9, - "start_line": 332 - } - }, - "1472": { - "accessible_scopes": [ - "openzeppelin.token.erc721.library", - "openzeppelin.token.erc721.library.ERC721", - "openzeppelin.token.erc721.library.ERC721._transfer" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 34, - "end_line": 349, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" - }, - "parent_location": [ - { - "end_col": 49, - "end_line": 350, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" - }, - "start_col": 38, - "start_line": 350 - }, - "While expanding the reference 'new_balance' in:" - ], - "start_col": 14, - "start_line": 349 - } - }, - "1473": { - "accessible_scopes": [ - "openzeppelin.token.erc721.library", - "openzeppelin.token.erc721.library.ERC721", - "openzeppelin.token.erc721.library.ERC721._transfer" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 34, - "end_line": 349, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" - }, - "parent_location": [ - { - "end_col": 49, - "end_line": 350, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" - }, - "start_col": 38, - "start_line": 350 - }, - "While expanding the reference 'new_balance' in:" - ], - "start_col": 14, - "start_line": 349 - } - }, - "1474": { - "accessible_scopes": [ - "openzeppelin.token.erc721.library", - "openzeppelin.token.erc721.library.ERC721", - "openzeppelin.token.erc721.library.ERC721._transfer" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 50, - "end_line": 350, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" - }, - "start_col": 9, - "start_line": 350 - } - }, - "1476": { - "accessible_scopes": [ - "openzeppelin.token.erc721.library", - "openzeppelin.token.erc721.library.ERC721", - "openzeppelin.token.erc721.library.ERC721._transfer" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 30, - "end_line": 332, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" - }, - "parent_location": [ - { - "end_col": 53, - "end_line": 353, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" - }, - "start_col": 51, - "start_line": 353 - }, - "While expanding the reference 'to' in:" - ], - "start_col": 22, - "start_line": 332 - } - }, - "1477": { - "accessible_scopes": [ - "openzeppelin.token.erc721.library", - "openzeppelin.token.erc721.library.ERC721", - "openzeppelin.token.erc721.library.ERC721._transfer" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 54, - "end_line": 353, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" - }, - "start_col": 30, - "start_line": 353 - } - }, - "1479": { - "accessible_scopes": [ - "openzeppelin.token.erc721.library", - "openzeppelin.token.erc721.library.ERC721", - "openzeppelin.token.erc721.library.ERC721._transfer" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 77, - "end_line": 354, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" - }, - "start_col": 76, - "start_line": 354 - } - }, - "1481": { - "accessible_scopes": [ - "openzeppelin.token.erc721.library", - "openzeppelin.token.erc721.library.ERC721", - "openzeppelin.token.erc721.library.ERC721._transfer" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 80, - "end_line": 354, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" - }, - "start_col": 79, - "start_line": 354 - } - }, - "1483": { - "accessible_scopes": [ - "openzeppelin.token.erc721.library", - "openzeppelin.token.erc721.library.ERC721", - "openzeppelin.token.erc721.library.ERC721._transfer" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 82, - "end_line": 354, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" - }, - "start_col": 38, - "start_line": 354 - } - }, - "1485": { - "accessible_scopes": [ - "openzeppelin.token.erc721.library", - "openzeppelin.token.erc721.library.ERC721", - "openzeppelin.token.erc721.library.ERC721._transfer" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 32, - "end_line": 23, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/security/safemath/library.cairo" - }, - "parent_location": [ - { - "end_col": 82, - "end_line": 354, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" - }, - "parent_location": [ - { - "end_col": 34, - "end_line": 21, - "input_file": { - "filename": "autogen/starknet/storage_var/ERC721_balances/decl.cairo" - }, - "parent_location": [ - { - "end_col": 47, - "end_line": 355, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" - }, - "start_col": 9, - "start_line": 355 - }, - "While trying to retrieve the implicit argument 'syscall_ptr' in:" - ], - "start_col": 16, - "start_line": 21 - }, - "While expanding the reference 'syscall_ptr' in:" - ], - "start_col": 38, - "start_line": 354 - }, - "While trying to update the implicit return value 'syscall_ptr' in:" - ], - "start_col": 14, - "start_line": 23 - } - }, - "1486": { - "accessible_scopes": [ - "openzeppelin.token.erc721.library", - "openzeppelin.token.erc721.library.ERC721", - "openzeppelin.token.erc721.library.ERC721._transfer" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 60, - "end_line": 23, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/security/safemath/library.cairo" - }, - "parent_location": [ - { - "end_col": 82, - "end_line": 354, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" - }, - "parent_location": [ - { - "end_col": 62, - "end_line": 21, - "input_file": { - "filename": "autogen/starknet/storage_var/ERC721_balances/decl.cairo" - }, - "parent_location": [ - { - "end_col": 47, - "end_line": 355, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" - }, - "start_col": 9, - "start_line": 355 - }, - "While trying to retrieve the implicit argument 'pedersen_ptr' in:" - ], - "start_col": 36, - "start_line": 21 - }, - "While expanding the reference 'pedersen_ptr' in:" - ], - "start_col": 38, - "start_line": 354 - }, - "While trying to update the implicit return value 'pedersen_ptr' in:" - ], - "start_col": 34, - "start_line": 23 - } - }, - "1487": { - "accessible_scopes": [ - "openzeppelin.token.erc721.library", - "openzeppelin.token.erc721.library.ERC721", - "openzeppelin.token.erc721.library.ERC721._transfer" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 77, - "end_line": 23, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/security/safemath/library.cairo" - }, - "parent_location": [ - { - "end_col": 82, - "end_line": 354, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" - }, - "parent_location": [ - { - "end_col": 79, - "end_line": 21, - "input_file": { - "filename": "autogen/starknet/storage_var/ERC721_balances/decl.cairo" - }, - "parent_location": [ - { - "end_col": 47, - "end_line": 355, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" - }, - "start_col": 9, - "start_line": 355 - }, - "While trying to retrieve the implicit argument 'range_check_ptr' in:" - ], - "start_col": 64, - "start_line": 21 - }, - "While expanding the reference 'range_check_ptr' in:" - ], - "start_col": 38, - "start_line": 354 - }, - "While trying to update the implicit return value 'range_check_ptr' in:" - ], - "start_col": 62, - "start_line": 23 - } - }, - "1488": { - "accessible_scopes": [ - "openzeppelin.token.erc721.library", - "openzeppelin.token.erc721.library.ERC721", - "openzeppelin.token.erc721.library.ERC721._transfer" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 30, - "end_line": 332, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" - }, - "parent_location": [ - { - "end_col": 33, - "end_line": 355, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" - }, - "start_col": 31, - "start_line": 355 - }, - "While expanding the reference 'to' in:" - ], - "start_col": 22, - "start_line": 332 - } - }, - "1489": { - "accessible_scopes": [ - "openzeppelin.token.erc721.library", - "openzeppelin.token.erc721.library.ERC721", - "openzeppelin.token.erc721.library.ERC721._transfer" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 34, - "end_line": 354, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" - }, - "parent_location": [ - { - "end_col": 46, - "end_line": 355, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" - }, - "start_col": 35, - "start_line": 355 - }, - "While expanding the reference 'new_balance' in:" - ], - "start_col": 14, - "start_line": 354 - } - }, - "1490": { - "accessible_scopes": [ - "openzeppelin.token.erc721.library", - "openzeppelin.token.erc721.library.ERC721", - "openzeppelin.token.erc721.library.ERC721._transfer" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 34, - "end_line": 354, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" - }, - "parent_location": [ - { - "end_col": 46, - "end_line": 355, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" - }, - "start_col": 35, - "start_line": 355 - }, - "While expanding the reference 'new_balance' in:" - ], - "start_col": 14, - "start_line": 354 - } - }, - "1491": { - "accessible_scopes": [ - "openzeppelin.token.erc721.library", - "openzeppelin.token.erc721.library.ERC721", - "openzeppelin.token.erc721.library.ERC721._transfer" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 47, - "end_line": 355, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" - }, - "start_col": 9, - "start_line": 355 - } - }, - "1493": { - "accessible_scopes": [ - "openzeppelin.token.erc721.library", - "openzeppelin.token.erc721.library.ERC721", - "openzeppelin.token.erc721.library.ERC721._transfer" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 49, - "end_line": 332, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" - }, - "parent_location": [ - { - "end_col": 37, - "end_line": 358, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" - }, - "start_col": 29, - "start_line": 358 - }, - "While expanding the reference 'token_id' in:" - ], - "start_col": 32, - "start_line": 332 - } - }, - "1494": { - "accessible_scopes": [ - "openzeppelin.token.erc721.library", - "openzeppelin.token.erc721.library.ERC721", - "openzeppelin.token.erc721.library.ERC721._transfer" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 49, - "end_line": 332, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" - }, - "parent_location": [ - { - "end_col": 37, - "end_line": 358, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" - }, - "start_col": 29, - "start_line": 358 - }, - "While expanding the reference 'token_id' in:" - ], - "start_col": 32, - "start_line": 332 - } - }, - "1495": { - "accessible_scopes": [ - "openzeppelin.token.erc721.library", - "openzeppelin.token.erc721.library.ERC721", - "openzeppelin.token.erc721.library.ERC721._transfer" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 30, - "end_line": 332, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" - }, - "parent_location": [ - { - "end_col": 41, - "end_line": 358, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" - }, - "start_col": 39, - "start_line": 358 - }, - "While expanding the reference 'to' in:" - ], - "start_col": 22, - "start_line": 332 - } - }, - "1496": { - "accessible_scopes": [ - "openzeppelin.token.erc721.library", - "openzeppelin.token.erc721.library.ERC721", - "openzeppelin.token.erc721.library.ERC721._transfer" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 42, - "end_line": 358, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" - }, - "start_col": 9, - "start_line": 358 - } - }, - "1498": { - "accessible_scopes": [ - "openzeppelin.token.erc721.library", - "openzeppelin.token.erc721.library.ERC721", - "openzeppelin.token.erc721.library.ERC721._transfer" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 34, - "end_line": 21, - "input_file": { - "filename": "autogen/starknet/storage_var/ERC721_owners/decl.cairo" - }, - "parent_location": [ - { - "end_col": 42, - "end_line": 358, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" - }, - "parent_location": [ - { - "end_col": 29, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/event/Transfer/a7a8ae41be29ac9f4f6c3b7837c448d787ca051dd1ade98f409e54d33d112504.cairo" - }, - "parent_location": [ - { - "end_col": 14, - "end_line": 28, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" - }, - "parent_location": [ - { - "end_col": 43, - "end_line": 359, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" - }, - "start_col": 9, - "start_line": 359 - }, - "While trying to retrieve the implicit argument 'syscall_ptr' in:" - ], - "start_col": 6, - "start_line": 28 - }, - "While handling event:" - ], - "start_col": 11, - "start_line": 1 - }, - "While expanding the reference 'syscall_ptr' in:" - ], - "start_col": 9, - "start_line": 358 - }, - "While trying to update the implicit return value 'syscall_ptr' in:" - ], - "start_col": 16, - "start_line": 21 - } - }, - "1499": { - "accessible_scopes": [ - "openzeppelin.token.erc721.library", - "openzeppelin.token.erc721.library.ERC721", - "openzeppelin.token.erc721.library.ERC721._transfer" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 79, - "end_line": 21, - "input_file": { - "filename": "autogen/starknet/storage_var/ERC721_owners/decl.cairo" - }, - "parent_location": [ - { - "end_col": 42, - "end_line": 358, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" - }, - "parent_location": [ - { - "end_col": 46, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/event/Transfer/a7a8ae41be29ac9f4f6c3b7837c448d787ca051dd1ade98f409e54d33d112504.cairo" - }, - "parent_location": [ - { - "end_col": 14, - "end_line": 28, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" - }, - "parent_location": [ - { - "end_col": 43, - "end_line": 359, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" - }, - "start_col": 9, - "start_line": 359 - }, - "While trying to retrieve the implicit argument 'range_check_ptr' in:" - ], - "start_col": 6, - "start_line": 28 - }, - "While handling event:" - ], - "start_col": 31, - "start_line": 1 - }, - "While expanding the reference 'range_check_ptr' in:" - ], - "start_col": 9, - "start_line": 358 - }, - "While trying to update the implicit return value 'range_check_ptr' in:" - ], - "start_col": 64, - "start_line": 21 - } - }, - "1500": { - "accessible_scopes": [ - "openzeppelin.token.erc721.library", - "openzeppelin.token.erc721.library.ERC721", - "openzeppelin.token.erc721.library.ERC721._transfer" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 20, - "end_line": 332, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" - }, - "parent_location": [ - { - "end_col": 28, - "end_line": 359, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" - }, - "start_col": 23, - "start_line": 359 - }, - "While expanding the reference 'from_' in:" - ], - "start_col": 9, - "start_line": 332 - } - }, - "1501": { - "accessible_scopes": [ - "openzeppelin.token.erc721.library", - "openzeppelin.token.erc721.library.ERC721", - "openzeppelin.token.erc721.library.ERC721._transfer" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 30, - "end_line": 332, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" - }, - "parent_location": [ - { - "end_col": 32, - "end_line": 359, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" - }, - "start_col": 30, - "start_line": 359 - }, - "While expanding the reference 'to' in:" - ], - "start_col": 22, - "start_line": 332 - } - }, - "1502": { - "accessible_scopes": [ - "openzeppelin.token.erc721.library", - "openzeppelin.token.erc721.library.ERC721", - "openzeppelin.token.erc721.library.ERC721._transfer" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 49, - "end_line": 332, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" - }, - "parent_location": [ - { - "end_col": 42, - "end_line": 359, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" - }, - "start_col": 34, - "start_line": 359 - }, - "While expanding the reference 'token_id' in:" - ], - "start_col": 32, - "start_line": 332 - } - }, - "1503": { - "accessible_scopes": [ - "openzeppelin.token.erc721.library", - "openzeppelin.token.erc721.library.ERC721", - "openzeppelin.token.erc721.library.ERC721._transfer" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 49, - "end_line": 332, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" - }, - "parent_location": [ - { - "end_col": 42, - "end_line": 359, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" - }, - "start_col": 34, - "start_line": 359 - }, - "While expanding the reference 'token_id' in:" - ], - "start_col": 32, - "start_line": 332 - } - }, - "1504": { - "accessible_scopes": [ - "openzeppelin.token.erc721.library", - "openzeppelin.token.erc721.library.ERC721", - "openzeppelin.token.erc721.library.ERC721._transfer" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 43, - "end_line": 359, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" - }, - "start_col": 9, - "start_line": 359 - } - }, - "1506": { - "accessible_scopes": [ - "openzeppelin.token.erc721.library", - "openzeppelin.token.erc721.library.ERC721", - "openzeppelin.token.erc721.library.ERC721._transfer" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 29, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/event/Transfer/a7a8ae41be29ac9f4f6c3b7837c448d787ca051dd1ade98f409e54d33d112504.cairo" - }, - "parent_location": [ - { - "end_col": 14, - "end_line": 28, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" - }, - "parent_location": [ - { - "end_col": 43, - "end_line": 359, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" - }, - "parent_location": [ - { - "end_col": 38, - "end_line": 331, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" - }, - "parent_location": [ - { - "end_col": 19, - "end_line": 360, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" - }, - "start_col": 9, - "start_line": 360 - }, - "While trying to retrieve the implicit argument 'syscall_ptr' in:" - ], - "start_col": 20, - "start_line": 331 - }, - "While expanding the reference 'syscall_ptr' in:" - ], - "start_col": 9, - "start_line": 359 - }, - "While trying to update the implicit return value 'syscall_ptr' in:" - ], - "start_col": 6, - "start_line": 28 - }, - "While handling event:" - ], - "start_col": 11, - "start_line": 1 - } - }, - "1507": { - "accessible_scopes": [ - "openzeppelin.token.erc721.library", - "openzeppelin.token.erc721.library.ERC721", - "openzeppelin.token.erc721.library.ERC721._transfer" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 62, - "end_line": 21, - "input_file": { - "filename": "autogen/starknet/storage_var/ERC721_owners/decl.cairo" - }, - "parent_location": [ - { - "end_col": 42, - "end_line": 358, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" - }, - "parent_location": [ - { - "end_col": 66, - "end_line": 331, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" - }, - "parent_location": [ - { - "end_col": 19, - "end_line": 360, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" - }, - "start_col": 9, - "start_line": 360 - }, - "While trying to retrieve the implicit argument 'pedersen_ptr' in:" - ], - "start_col": 40, - "start_line": 331 - }, - "While expanding the reference 'pedersen_ptr' in:" - ], - "start_col": 9, - "start_line": 358 - }, - "While trying to update the implicit return value 'pedersen_ptr' in:" - ], - "start_col": 36, - "start_line": 21 - } - }, - "1508": { - "accessible_scopes": [ - "openzeppelin.token.erc721.library", - "openzeppelin.token.erc721.library.ERC721", - "openzeppelin.token.erc721.library.ERC721._transfer" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 46, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/event/Transfer/a7a8ae41be29ac9f4f6c3b7837c448d787ca051dd1ade98f409e54d33d112504.cairo" - }, - "parent_location": [ - { - "end_col": 14, - "end_line": 28, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" - }, - "parent_location": [ - { - "end_col": 43, - "end_line": 359, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" - }, - "parent_location": [ - { - "end_col": 83, - "end_line": 331, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" - }, - "parent_location": [ - { - "end_col": 19, - "end_line": 360, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" - }, - "start_col": 9, - "start_line": 360 - }, - "While trying to retrieve the implicit argument 'range_check_ptr' in:" - ], - "start_col": 68, - "start_line": 331 - }, - "While expanding the reference 'range_check_ptr' in:" - ], - "start_col": 9, - "start_line": 359 - }, - "While trying to update the implicit return value 'range_check_ptr' in:" - ], - "start_col": 6, - "start_line": 28 - }, - "While handling event:" - ], - "start_col": 31, - "start_line": 1 - } - }, - "1509": { - "accessible_scopes": [ - "openzeppelin.token.erc721.library", - "openzeppelin.token.erc721.library.ERC721", - "openzeppelin.token.erc721.library.ERC721._transfer" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 19, - "end_line": 360, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" - }, - "start_col": 9, - "start_line": 360 - } - }, - "1510": { - "accessible_scopes": [ - "openzeppelin.token.erc721.library", - "openzeppelin.token.erc721.library.ERC721", - "openzeppelin.token.erc721.library.ERC721._safe_transfer" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 43, - "end_line": 363, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" - }, - "parent_location": [ - { - "end_col": 38, - "end_line": 331, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" - }, - "parent_location": [ - { - "end_col": 39, - "end_line": 366, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" - }, - "start_col": 9, - "start_line": 366 - }, - "While trying to retrieve the implicit argument 'syscall_ptr' in:" - ], - "start_col": 20, - "start_line": 331 - }, - "While expanding the reference 'syscall_ptr' in:" - ], - "start_col": 25, - "start_line": 363 - } - }, - "1511": { - "accessible_scopes": [ - "openzeppelin.token.erc721.library", - "openzeppelin.token.erc721.library.ERC721", - "openzeppelin.token.erc721.library.ERC721._safe_transfer" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 71, - "end_line": 363, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" - }, - "parent_location": [ - { - "end_col": 66, - "end_line": 331, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" - }, - "parent_location": [ - { - "end_col": 39, - "end_line": 366, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" - }, - "start_col": 9, - "start_line": 366 - }, - "While trying to retrieve the implicit argument 'pedersen_ptr' in:" - ], - "start_col": 40, - "start_line": 331 - }, - "While expanding the reference 'pedersen_ptr' in:" - ], - "start_col": 45, - "start_line": 363 - } - }, - "1512": { - "accessible_scopes": [ - "openzeppelin.token.erc721.library", - "openzeppelin.token.erc721.library.ERC721", - "openzeppelin.token.erc721.library.ERC721._safe_transfer" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 88, - "end_line": 363, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" - }, - "parent_location": [ - { - "end_col": 83, - "end_line": 331, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" - }, - "parent_location": [ - { - "end_col": 39, - "end_line": 366, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" - }, - "start_col": 9, - "start_line": 366 - }, - "While trying to retrieve the implicit argument 'range_check_ptr' in:" - ], - "start_col": 68, - "start_line": 331 - }, - "While expanding the reference 'range_check_ptr' in:" - ], - "start_col": 73, - "start_line": 363 - } - }, - "1513": { - "accessible_scopes": [ - "openzeppelin.token.erc721.library", - "openzeppelin.token.erc721.library.ERC721", - "openzeppelin.token.erc721.library.ERC721._safe_transfer" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 20, - "end_line": 364, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" - }, - "parent_location": [ - { - "end_col": 24, - "end_line": 366, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" - }, - "start_col": 19, - "start_line": 366 - }, - "While expanding the reference 'from_' in:" - ], - "start_col": 9, - "start_line": 364 - } - }, - "1514": { - "accessible_scopes": [ - "openzeppelin.token.erc721.library", - "openzeppelin.token.erc721.library.ERC721", - "openzeppelin.token.erc721.library.ERC721._safe_transfer" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 30, - "end_line": 364, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" - }, - "parent_location": [ - { - "end_col": 28, - "end_line": 366, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" - }, - "start_col": 26, - "start_line": 366 - }, - "While expanding the reference 'to' in:" - ], - "start_col": 22, - "start_line": 364 - } - }, - "1515": { - "accessible_scopes": [ - "openzeppelin.token.erc721.library", - "openzeppelin.token.erc721.library.ERC721", - "openzeppelin.token.erc721.library.ERC721._safe_transfer" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 49, - "end_line": 364, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" - }, - "parent_location": [ - { - "end_col": 38, - "end_line": 366, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" - }, - "start_col": 30, - "start_line": 366 - }, - "While expanding the reference 'token_id' in:" - ], - "start_col": 32, - "start_line": 364 - } - }, - "1516": { - "accessible_scopes": [ - "openzeppelin.token.erc721.library", - "openzeppelin.token.erc721.library.ERC721", - "openzeppelin.token.erc721.library.ERC721._safe_transfer" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 49, - "end_line": 364, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" - }, - "parent_location": [ - { - "end_col": 38, - "end_line": 366, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" - }, - "start_col": 30, - "start_line": 366 - }, - "While expanding the reference 'token_id' in:" - ], - "start_col": 32, - "start_line": 364 - } - }, - "1517": { - "accessible_scopes": [ - "openzeppelin.token.erc721.library", - "openzeppelin.token.erc721.library.ERC721", - "openzeppelin.token.erc721.library.ERC721._safe_transfer" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 39, - "end_line": 366, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" - }, - "start_col": 9, - "start_line": 366 - } - }, - "1519": { - "accessible_scopes": [ - "openzeppelin.token.erc721.library", - "openzeppelin.token.erc721.library.ERC721", - "openzeppelin.token.erc721.library.ERC721._safe_transfer" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 20, - "end_line": 364, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" - }, - "parent_location": [ - { - "end_col": 54, - "end_line": 368, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" - }, - "start_col": 49, - "start_line": 368 - }, - "While expanding the reference 'from_' in:" - ], - "start_col": 9, - "start_line": 364 - } - }, - "1520": { - "accessible_scopes": [ - "openzeppelin.token.erc721.library", - "openzeppelin.token.erc721.library.ERC721", - "openzeppelin.token.erc721.library.ERC721._safe_transfer" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 30, - "end_line": 364, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" - }, - "parent_location": [ - { - "end_col": 58, - "end_line": 368, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" - }, - "start_col": 56, - "start_line": 368 - }, - "While expanding the reference 'to' in:" - ], - "start_col": 22, - "start_line": 364 - } - }, - "1521": { - "accessible_scopes": [ - "openzeppelin.token.erc721.library", - "openzeppelin.token.erc721.library.ERC721", - "openzeppelin.token.erc721.library.ERC721._safe_transfer" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 49, - "end_line": 364, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" - }, - "parent_location": [ - { - "end_col": 68, - "end_line": 368, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" - }, - "start_col": 60, - "start_line": 368 - }, - "While expanding the reference 'token_id' in:" - ], - "start_col": 32, - "start_line": 364 - } - }, - "1522": { - "accessible_scopes": [ - "openzeppelin.token.erc721.library", - "openzeppelin.token.erc721.library.ERC721", - "openzeppelin.token.erc721.library.ERC721._safe_transfer" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 49, - "end_line": 364, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" - }, - "parent_location": [ - { - "end_col": 68, - "end_line": 368, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" - }, - "start_col": 60, - "start_line": 368 - }, - "While expanding the reference 'token_id' in:" - ], - "start_col": 32, - "start_line": 364 - } - }, - "1523": { - "accessible_scopes": [ - "openzeppelin.token.erc721.library", - "openzeppelin.token.erc721.library.ERC721", - "openzeppelin.token.erc721.library.ERC721._safe_transfer" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 65, - "end_line": 364, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" - }, - "parent_location": [ - { - "end_col": 78, - "end_line": 368, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" - }, - "start_col": 70, - "start_line": 368 - }, - "While expanding the reference 'data_len' in:" - ], - "start_col": 51, - "start_line": 364 - } - }, - "1524": { - "accessible_scopes": [ - "openzeppelin.token.erc721.library", - "openzeppelin.token.erc721.library.ERC721", - "openzeppelin.token.erc721.library.ERC721._safe_transfer" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 78, - "end_line": 364, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" - }, - "parent_location": [ - { - "end_col": 84, - "end_line": 368, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" - }, - "start_col": 80, - "start_line": 368 - }, - "While expanding the reference 'data' in:" - ], - "start_col": 67, - "start_line": 364 - } - }, - "1525": { - "accessible_scopes": [ - "openzeppelin.token.erc721.library", - "openzeppelin.token.erc721.library.ERC721", - "openzeppelin.token.erc721.library.ERC721._safe_transfer" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 85, - "end_line": 368, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" - }, - "start_col": 25, - "start_line": 368 - } - }, - "1527": { - "accessible_scopes": [ - "openzeppelin.token.erc721.library", - "openzeppelin.token.erc721.library.ERC721", - "openzeppelin.token.erc721.library.ERC721._safe_transfer" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 37, - "end_line": 370, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" - }, - "start_col": 13, - "start_line": 370 - } - }, - "1529": { - "accessible_scopes": [ - "openzeppelin.token.erc721.library", - "openzeppelin.token.erc721.library.ERC721", - "openzeppelin.token.erc721.library.ERC721._safe_transfer" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 48, - "end_line": 453, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" - }, - "parent_location": [ - { - "end_col": 85, - "end_line": 368, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" - }, - "parent_location": [ - { - "end_col": 43, - "end_line": 363, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" - }, - "parent_location": [ - { - "end_col": 19, - "end_line": 372, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" - }, - "start_col": 9, - "start_line": 372 - }, - "While trying to retrieve the implicit argument 'syscall_ptr' in:" - ], - "start_col": 25, - "start_line": 363 - }, - "While expanding the reference 'syscall_ptr' in:" - ], - "start_col": 25, - "start_line": 368 - }, - "While trying to update the implicit return value 'syscall_ptr' in:" - ], - "start_col": 30, - "start_line": 453 - } - }, - "1530": { - "accessible_scopes": [ - "openzeppelin.token.erc721.library", - "openzeppelin.token.erc721.library.ERC721", - "openzeppelin.token.erc721.library.ERC721._safe_transfer" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 76, - "end_line": 453, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" - }, - "parent_location": [ - { - "end_col": 85, - "end_line": 368, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" - }, - "parent_location": [ - { - "end_col": 71, - "end_line": 363, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" - }, - "parent_location": [ - { - "end_col": 19, - "end_line": 372, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" - }, - "start_col": 9, - "start_line": 372 - }, - "While trying to retrieve the implicit argument 'pedersen_ptr' in:" - ], - "start_col": 45, - "start_line": 363 - }, - "While expanding the reference 'pedersen_ptr' in:" - ], - "start_col": 25, - "start_line": 368 - }, - "While trying to update the implicit return value 'pedersen_ptr' in:" - ], - "start_col": 50, - "start_line": 453 - } - }, - "1531": { - "accessible_scopes": [ - "openzeppelin.token.erc721.library", - "openzeppelin.token.erc721.library.ERC721", - "openzeppelin.token.erc721.library.ERC721._safe_transfer" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 93, - "end_line": 453, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" - }, - "parent_location": [ - { - "end_col": 85, - "end_line": 368, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" - }, - "parent_location": [ - { - "end_col": 88, - "end_line": 363, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" - }, - "parent_location": [ - { - "end_col": 19, - "end_line": 372, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" - }, - "start_col": 9, - "start_line": 372 - }, - "While trying to retrieve the implicit argument 'range_check_ptr' in:" - ], - "start_col": 73, - "start_line": 363 - }, - "While expanding the reference 'range_check_ptr' in:" - ], - "start_col": 25, - "start_line": 368 - }, - "While trying to update the implicit return value 'range_check_ptr' in:" - ], - "start_col": 78, - "start_line": 453 - } - }, - "1532": { - "accessible_scopes": [ - "openzeppelin.token.erc721.library", - "openzeppelin.token.erc721.library.ERC721", - "openzeppelin.token.erc721.library.ERC721._safe_transfer" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 19, - "end_line": 372, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" - }, - "start_col": 9, - "start_line": 372 - } - }, - "1533": { - "accessible_scopes": [ - "openzeppelin.token.erc721.library", - "openzeppelin.token.erc721.library.ERC721", - "openzeppelin.token.erc721.library.ERC721._mint" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 79, - "end_line": 375, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" - }, - "parent_location": [ - { - "end_col": 35, - "end_line": 21, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/uint256.cairo" - }, - "parent_location": [ - { - "end_col": 36, - "end_line": 379, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" - }, - "start_col": 13, - "start_line": 379 - }, - "While trying to retrieve the implicit argument 'range_check_ptr' in:" - ], - "start_col": 20, - "start_line": 21 - }, - "While expanding the reference 'range_check_ptr' in:" - ], - "start_col": 64, - "start_line": 375 - } - }, - "1534": { - "accessible_scopes": [ - "openzeppelin.token.erc721.library", - "openzeppelin.token.erc721.library.ERC721", - "openzeppelin.token.erc721.library.ERC721._mint" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 36, - "end_line": 376, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" - }, - "parent_location": [ - { - "end_col": 35, - "end_line": 379, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" - }, - "start_col": 27, - "start_line": 379 - }, - "While expanding the reference 'token_id' in:" - ], - "start_col": 19, - "start_line": 376 - } - }, - "1535": { - "accessible_scopes": [ - "openzeppelin.token.erc721.library", - "openzeppelin.token.erc721.library.ERC721", - "openzeppelin.token.erc721.library.ERC721._mint" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 36, - "end_line": 376, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" - }, - "parent_location": [ - { - "end_col": 35, - "end_line": 379, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" - }, - "start_col": 27, - "start_line": 379 - }, - "While expanding the reference 'token_id' in:" - ], - "start_col": 19, - "start_line": 376 - } - }, - "1536": { - "accessible_scopes": [ - "openzeppelin.token.erc721.library", - "openzeppelin.token.erc721.library.ERC721", - "openzeppelin.token.erc721.library.ERC721._mint" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 36, - "end_line": 379, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" - }, - "start_col": 13, - "start_line": 379 - } - }, - "1538": { - "accessible_scopes": [ - "openzeppelin.token.erc721.library", - "openzeppelin.token.erc721.library.ERC721", - "openzeppelin.token.erc721.library.ERC721._mint" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 17, - "end_line": 376, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" - }, - "parent_location": [ - { - "end_col": 31, - "end_line": 382, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" - }, - "start_col": 29, - "start_line": 382 - }, - "While expanding the reference 'to' in:" - ], - "start_col": 9, - "start_line": 376 - } - }, - "1539": { - "accessible_scopes": [ - "openzeppelin.token.erc721.library", - "openzeppelin.token.erc721.library.ERC721", - "openzeppelin.token.erc721.library.ERC721._mint" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 32, - "end_line": 382, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" - }, - "start_col": 13, - "start_line": 382 - } - }, - "1541": { - "accessible_scopes": [ - "openzeppelin.token.erc721.library", - "openzeppelin.token.erc721.library.ERC721", - "openzeppelin.token.erc721.library.ERC721._mint" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 62, - "end_line": 375, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" - }, - "parent_location": [ - { - "end_col": 36, - "end_line": 311, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" - }, - "parent_location": [ - { - "end_col": 39, - "end_line": 386, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" - }, - "start_col": 22, - "start_line": 386 - }, - "While trying to retrieve the implicit argument 'syscall_ptr' in:" - ], - "start_col": 18, - "start_line": 311 - }, - "While expanding the reference 'syscall_ptr' in:" - ], - "start_col": 44, - "start_line": 375 - } - }, - "1542": { - "accessible_scopes": [ - "openzeppelin.token.erc721.library", - "openzeppelin.token.erc721.library.ERC721", - "openzeppelin.token.erc721.library.ERC721._mint" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 42, - "end_line": 375, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" - }, - "parent_location": [ - { - "end_col": 64, - "end_line": 311, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" - }, - "parent_location": [ - { - "end_col": 39, - "end_line": 386, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" - }, - "start_col": 22, - "start_line": 386 - }, - "While trying to retrieve the implicit argument 'pedersen_ptr' in:" - ], - "start_col": 38, - "start_line": 311 - }, - "While expanding the reference 'pedersen_ptr' in:" - ], - "start_col": 16, - "start_line": 375 - } - }, - "1543": { - "accessible_scopes": [ - "openzeppelin.token.erc721.library", - "openzeppelin.token.erc721.library.ERC721", - "openzeppelin.token.erc721.library.ERC721._mint" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 35, - "end_line": 21, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/uint256.cairo" - }, - "parent_location": [ - { - "end_col": 36, - "end_line": 379, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" - }, - "parent_location": [ - { - "end_col": 81, - "end_line": 311, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" - }, - "parent_location": [ - { - "end_col": 39, - "end_line": 386, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" - }, - "start_col": 22, - "start_line": 386 - }, - "While trying to retrieve the implicit argument 'range_check_ptr' in:" - ], - "start_col": 66, - "start_line": 311 - }, - "While expanding the reference 'range_check_ptr' in:" - ], - "start_col": 13, - "start_line": 379 - }, - "While trying to update the implicit return value 'range_check_ptr' in:" - ], - "start_col": 20, - "start_line": 21 - } - }, - "1544": { - "accessible_scopes": [ - "openzeppelin.token.erc721.library", - "openzeppelin.token.erc721.library.ERC721", - "openzeppelin.token.erc721.library.ERC721._mint" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 36, - "end_line": 376, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" - }, - "parent_location": [ - { - "end_col": 38, - "end_line": 386, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" - }, - "start_col": 30, - "start_line": 386 - }, - "While expanding the reference 'token_id' in:" - ], - "start_col": 19, - "start_line": 376 - } - }, - "1545": { - "accessible_scopes": [ - "openzeppelin.token.erc721.library", - "openzeppelin.token.erc721.library.ERC721", - "openzeppelin.token.erc721.library.ERC721._mint" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 36, - "end_line": 376, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" - }, - "parent_location": [ - { - "end_col": 38, - "end_line": 386, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" - }, - "start_col": 30, - "start_line": 386 - }, - "While expanding the reference 'token_id' in:" - ], - "start_col": 19, - "start_line": 376 - } - }, - "1546": { - "accessible_scopes": [ - "openzeppelin.token.erc721.library", - "openzeppelin.token.erc721.library.ERC721", - "openzeppelin.token.erc721.library.ERC721._mint" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 39, - "end_line": 386, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" - }, - "start_col": 22, - "start_line": 386 - } - }, - "1548": { - "accessible_scopes": [ - "openzeppelin.token.erc721.library", - "openzeppelin.token.erc721.library.ERC721", - "openzeppelin.token.erc721.library.ERC721._mint" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 35, - "end_line": 388, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" - }, - "start_col": 13, - "start_line": 388 - } - }, - "1550": { - "accessible_scopes": [ - "openzeppelin.token.erc721.library", - "openzeppelin.token.erc721.library.ERC721", - "openzeppelin.token.erc721.library.ERC721._mint" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 36, - "end_line": 311, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" - }, - "parent_location": [ - { - "end_col": 39, - "end_line": 386, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" - }, - "parent_location": [ - { - "end_col": 33, - "end_line": 13, - "input_file": { - "filename": "autogen/starknet/storage_var/ERC721_balances/decl.cairo" - }, - "parent_location": [ - { - "end_col": 58, - "end_line": 391, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" - }, - "start_col": 34, - "start_line": 391 - }, - "While trying to retrieve the implicit argument 'syscall_ptr' in:" - ], - "start_col": 15, - "start_line": 13 - }, - "While expanding the reference 'syscall_ptr' in:" - ], - "start_col": 22, - "start_line": 386 - }, - "While trying to update the implicit return value 'syscall_ptr' in:" - ], - "start_col": 18, - "start_line": 311 - } - }, - "1551": { - "accessible_scopes": [ - "openzeppelin.token.erc721.library", - "openzeppelin.token.erc721.library.ERC721", - "openzeppelin.token.erc721.library.ERC721._mint" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 64, - "end_line": 311, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" - }, - "parent_location": [ - { - "end_col": 39, - "end_line": 386, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" - }, - "parent_location": [ - { - "end_col": 61, - "end_line": 13, - "input_file": { - "filename": "autogen/starknet/storage_var/ERC721_balances/decl.cairo" - }, - "parent_location": [ - { - "end_col": 58, - "end_line": 391, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" - }, - "start_col": 34, - "start_line": 391 - }, - "While trying to retrieve the implicit argument 'pedersen_ptr' in:" - ], - "start_col": 35, - "start_line": 13 - }, - "While expanding the reference 'pedersen_ptr' in:" - ], - "start_col": 22, - "start_line": 386 - }, - "While trying to update the implicit return value 'pedersen_ptr' in:" - ], - "start_col": 38, - "start_line": 311 - } - }, - "1552": { - "accessible_scopes": [ - "openzeppelin.token.erc721.library", - "openzeppelin.token.erc721.library.ERC721", - "openzeppelin.token.erc721.library.ERC721._mint" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 81, - "end_line": 311, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" - }, - "parent_location": [ - { - "end_col": 39, - "end_line": 386, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" - }, - "parent_location": [ - { - "end_col": 78, - "end_line": 13, - "input_file": { - "filename": "autogen/starknet/storage_var/ERC721_balances/decl.cairo" - }, - "parent_location": [ - { - "end_col": 58, - "end_line": 391, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" - }, - "start_col": 34, - "start_line": 391 - }, - "While trying to retrieve the implicit argument 'range_check_ptr' in:" - ], - "start_col": 63, - "start_line": 13 - }, - "While expanding the reference 'range_check_ptr' in:" - ], - "start_col": 22, - "start_line": 386 - }, - "While trying to update the implicit return value 'range_check_ptr' in:" - ], - "start_col": 66, - "start_line": 311 - } - }, - "1553": { - "accessible_scopes": [ - "openzeppelin.token.erc721.library", - "openzeppelin.token.erc721.library.ERC721", - "openzeppelin.token.erc721.library.ERC721._mint" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 17, - "end_line": 376, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" - }, - "parent_location": [ - { - "end_col": 57, - "end_line": 391, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" - }, - "start_col": 55, - "start_line": 391 - }, - "While expanding the reference 'to' in:" - ], - "start_col": 9, - "start_line": 376 - } - }, - "1554": { - "accessible_scopes": [ - "openzeppelin.token.erc721.library", - "openzeppelin.token.erc721.library.ERC721", - "openzeppelin.token.erc721.library.ERC721._mint" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 58, - "end_line": 391, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" - }, - "start_col": 34, - "start_line": 391 - } - }, - "1556": { - "accessible_scopes": [ - "openzeppelin.token.erc721.library", - "openzeppelin.token.erc721.library.ERC721", - "openzeppelin.token.erc721.library.ERC721._mint" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 72, - "end_line": 392, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" - }, - "start_col": 71, - "start_line": 392 - } - }, - "1558": { - "accessible_scopes": [ - "openzeppelin.token.erc721.library", - "openzeppelin.token.erc721.library.ERC721", - "openzeppelin.token.erc721.library.ERC721._mint" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 75, - "end_line": 392, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" - }, - "start_col": 74, - "start_line": 392 - } - }, - "1560": { - "accessible_scopes": [ - "openzeppelin.token.erc721.library", - "openzeppelin.token.erc721.library.ERC721", - "openzeppelin.token.erc721.library.ERC721._mint" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 77, - "end_line": 392, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" - }, - "start_col": 38, - "start_line": 392 - } - }, - "1562": { - "accessible_scopes": [ - "openzeppelin.token.erc721.library", - "openzeppelin.token.erc721.library.ERC721", - "openzeppelin.token.erc721.library.ERC721._mint" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 32, - "end_line": 23, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/security/safemath/library.cairo" - }, - "parent_location": [ - { - "end_col": 77, - "end_line": 392, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" - }, - "parent_location": [ - { - "end_col": 34, - "end_line": 21, - "input_file": { - "filename": "autogen/starknet/storage_var/ERC721_balances/decl.cairo" - }, - "parent_location": [ - { - "end_col": 47, - "end_line": 393, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" - }, - "start_col": 9, - "start_line": 393 - }, - "While trying to retrieve the implicit argument 'syscall_ptr' in:" - ], - "start_col": 16, - "start_line": 21 - }, - "While expanding the reference 'syscall_ptr' in:" - ], - "start_col": 38, - "start_line": 392 - }, - "While trying to update the implicit return value 'syscall_ptr' in:" - ], - "start_col": 14, - "start_line": 23 - } - }, - "1563": { - "accessible_scopes": [ - "openzeppelin.token.erc721.library", - "openzeppelin.token.erc721.library.ERC721", - "openzeppelin.token.erc721.library.ERC721._mint" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 60, - "end_line": 23, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/security/safemath/library.cairo" - }, - "parent_location": [ - { - "end_col": 77, - "end_line": 392, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" - }, - "parent_location": [ - { - "end_col": 62, - "end_line": 21, - "input_file": { - "filename": "autogen/starknet/storage_var/ERC721_balances/decl.cairo" - }, - "parent_location": [ - { - "end_col": 47, - "end_line": 393, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" - }, - "start_col": 9, - "start_line": 393 - }, - "While trying to retrieve the implicit argument 'pedersen_ptr' in:" - ], - "start_col": 36, - "start_line": 21 - }, - "While expanding the reference 'pedersen_ptr' in:" - ], - "start_col": 38, - "start_line": 392 - }, - "While trying to update the implicit return value 'pedersen_ptr' in:" - ], - "start_col": 34, - "start_line": 23 - } - }, - "1564": { - "accessible_scopes": [ - "openzeppelin.token.erc721.library", - "openzeppelin.token.erc721.library.ERC721", - "openzeppelin.token.erc721.library.ERC721._mint" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 77, - "end_line": 23, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/security/safemath/library.cairo" - }, - "parent_location": [ - { - "end_col": 77, - "end_line": 392, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" - }, - "parent_location": [ - { - "end_col": 79, - "end_line": 21, - "input_file": { - "filename": "autogen/starknet/storage_var/ERC721_balances/decl.cairo" - }, - "parent_location": [ - { - "end_col": 47, - "end_line": 393, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" - }, - "start_col": 9, - "start_line": 393 - }, - "While trying to retrieve the implicit argument 'range_check_ptr' in:" - ], - "start_col": 64, - "start_line": 21 - }, - "While expanding the reference 'range_check_ptr' in:" - ], - "start_col": 38, - "start_line": 392 - }, - "While trying to update the implicit return value 'range_check_ptr' in:" - ], - "start_col": 62, - "start_line": 23 - } - }, - "1565": { - "accessible_scopes": [ - "openzeppelin.token.erc721.library", - "openzeppelin.token.erc721.library.ERC721", - "openzeppelin.token.erc721.library.ERC721._mint" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 17, - "end_line": 376, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" - }, - "parent_location": [ - { - "end_col": 33, - "end_line": 393, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" - }, - "start_col": 31, - "start_line": 393 - }, - "While expanding the reference 'to' in:" - ], - "start_col": 9, - "start_line": 376 - } - }, - "1566": { - "accessible_scopes": [ - "openzeppelin.token.erc721.library", - "openzeppelin.token.erc721.library.ERC721", - "openzeppelin.token.erc721.library.ERC721._mint" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 34, - "end_line": 392, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" - }, - "parent_location": [ - { - "end_col": 46, - "end_line": 393, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" - }, - "start_col": 35, - "start_line": 393 - }, - "While expanding the reference 'new_balance' in:" - ], - "start_col": 14, - "start_line": 392 - } - }, - "1567": { - "accessible_scopes": [ - "openzeppelin.token.erc721.library", - "openzeppelin.token.erc721.library.ERC721", - "openzeppelin.token.erc721.library.ERC721._mint" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 34, - "end_line": 392, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" - }, - "parent_location": [ - { - "end_col": 46, - "end_line": 393, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" - }, - "start_col": 35, - "start_line": 393 - }, - "While expanding the reference 'new_balance' in:" - ], - "start_col": 14, - "start_line": 392 - } - }, - "1568": { - "accessible_scopes": [ - "openzeppelin.token.erc721.library", - "openzeppelin.token.erc721.library.ERC721", - "openzeppelin.token.erc721.library.ERC721._mint" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 47, - "end_line": 393, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" - }, - "start_col": 9, - "start_line": 393 - } - }, - "1570": { - "accessible_scopes": [ - "openzeppelin.token.erc721.library", - "openzeppelin.token.erc721.library.ERC721", - "openzeppelin.token.erc721.library.ERC721._mint" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 36, - "end_line": 376, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" - }, - "parent_location": [ - { - "end_col": 37, - "end_line": 394, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" - }, - "start_col": 29, - "start_line": 394 - }, - "While expanding the reference 'token_id' in:" - ], - "start_col": 19, - "start_line": 376 - } - }, - "1571": { - "accessible_scopes": [ - "openzeppelin.token.erc721.library", - "openzeppelin.token.erc721.library.ERC721", - "openzeppelin.token.erc721.library.ERC721._mint" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 36, - "end_line": 376, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" - }, - "parent_location": [ - { - "end_col": 37, - "end_line": 394, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" - }, - "start_col": 29, - "start_line": 394 - }, - "While expanding the reference 'token_id' in:" - ], - "start_col": 19, - "start_line": 376 - } - }, - "1572": { - "accessible_scopes": [ - "openzeppelin.token.erc721.library", - "openzeppelin.token.erc721.library.ERC721", - "openzeppelin.token.erc721.library.ERC721._mint" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 17, - "end_line": 376, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" - }, - "parent_location": [ - { - "end_col": 41, - "end_line": 394, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" - }, - "start_col": 39, - "start_line": 394 - }, - "While expanding the reference 'to' in:" - ], - "start_col": 9, - "start_line": 376 - } - }, - "1573": { - "accessible_scopes": [ - "openzeppelin.token.erc721.library", - "openzeppelin.token.erc721.library.ERC721", - "openzeppelin.token.erc721.library.ERC721._mint" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 42, - "end_line": 394, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" - }, - "start_col": 9, - "start_line": 394 - } - }, - "1575": { - "accessible_scopes": [ - "openzeppelin.token.erc721.library", - "openzeppelin.token.erc721.library.ERC721", - "openzeppelin.token.erc721.library.ERC721._mint" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 34, - "end_line": 21, - "input_file": { - "filename": "autogen/starknet/storage_var/ERC721_owners/decl.cairo" - }, - "parent_location": [ - { - "end_col": 42, - "end_line": 394, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" - }, - "parent_location": [ - { - "end_col": 29, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/event/Transfer/a7a8ae41be29ac9f4f6c3b7837c448d787ca051dd1ade98f409e54d33d112504.cairo" - }, - "parent_location": [ - { - "end_col": 14, - "end_line": 28, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" - }, - "parent_location": [ - { - "end_col": 39, - "end_line": 395, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" - }, - "start_col": 9, - "start_line": 395 - }, - "While trying to retrieve the implicit argument 'syscall_ptr' in:" - ], - "start_col": 6, - "start_line": 28 - }, - "While handling event:" - ], - "start_col": 11, - "start_line": 1 - }, - "While expanding the reference 'syscall_ptr' in:" - ], - "start_col": 9, - "start_line": 394 - }, - "While trying to update the implicit return value 'syscall_ptr' in:" - ], - "start_col": 16, - "start_line": 21 - } - }, - "1576": { - "accessible_scopes": [ - "openzeppelin.token.erc721.library", - "openzeppelin.token.erc721.library.ERC721", - "openzeppelin.token.erc721.library.ERC721._mint" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 79, - "end_line": 21, - "input_file": { - "filename": "autogen/starknet/storage_var/ERC721_owners/decl.cairo" - }, - "parent_location": [ - { - "end_col": 42, - "end_line": 394, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" - }, - "parent_location": [ - { - "end_col": 46, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/event/Transfer/a7a8ae41be29ac9f4f6c3b7837c448d787ca051dd1ade98f409e54d33d112504.cairo" - }, - "parent_location": [ - { - "end_col": 14, - "end_line": 28, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" - }, - "parent_location": [ - { - "end_col": 39, - "end_line": 395, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" - }, - "start_col": 9, - "start_line": 395 - }, - "While trying to retrieve the implicit argument 'range_check_ptr' in:" - ], - "start_col": 6, - "start_line": 28 - }, - "While handling event:" - ], - "start_col": 31, - "start_line": 1 - }, - "While expanding the reference 'range_check_ptr' in:" - ], - "start_col": 9, - "start_line": 394 - }, - "While trying to update the implicit return value 'range_check_ptr' in:" - ], - "start_col": 64, - "start_line": 21 - } - }, - "1577": { - "accessible_scopes": [ - "openzeppelin.token.erc721.library", - "openzeppelin.token.erc721.library.ERC721", - "openzeppelin.token.erc721.library.ERC721._mint" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 24, - "end_line": 395, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" - }, - "start_col": 23, - "start_line": 395 - } - }, - "1579": { - "accessible_scopes": [ - "openzeppelin.token.erc721.library", - "openzeppelin.token.erc721.library.ERC721", - "openzeppelin.token.erc721.library.ERC721._mint" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 17, - "end_line": 376, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" - }, - "parent_location": [ - { - "end_col": 28, - "end_line": 395, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" - }, - "start_col": 26, - "start_line": 395 - }, - "While expanding the reference 'to' in:" - ], - "start_col": 9, - "start_line": 376 - } - }, - "1580": { - "accessible_scopes": [ - "openzeppelin.token.erc721.library", - "openzeppelin.token.erc721.library.ERC721", - "openzeppelin.token.erc721.library.ERC721._mint" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 36, - "end_line": 376, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" - }, - "parent_location": [ - { - "end_col": 38, - "end_line": 395, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" - }, - "start_col": 30, - "start_line": 395 - }, - "While expanding the reference 'token_id' in:" - ], - "start_col": 19, - "start_line": 376 - } - }, - "1581": { - "accessible_scopes": [ - "openzeppelin.token.erc721.library", - "openzeppelin.token.erc721.library.ERC721", - "openzeppelin.token.erc721.library.ERC721._mint" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 36, - "end_line": 376, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" - }, - "parent_location": [ - { - "end_col": 38, - "end_line": 395, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" - }, - "start_col": 30, - "start_line": 395 - }, - "While expanding the reference 'token_id' in:" - ], - "start_col": 19, - "start_line": 376 - } - }, - "1582": { - "accessible_scopes": [ - "openzeppelin.token.erc721.library", - "openzeppelin.token.erc721.library.ERC721", - "openzeppelin.token.erc721.library.ERC721._mint" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 39, - "end_line": 395, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" - }, - "start_col": 9, - "start_line": 395 - } - }, - "1584": { - "accessible_scopes": [ - "openzeppelin.token.erc721.library", - "openzeppelin.token.erc721.library.ERC721", - "openzeppelin.token.erc721.library.ERC721._mint" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 62, - "end_line": 21, - "input_file": { - "filename": "autogen/starknet/storage_var/ERC721_owners/decl.cairo" - }, - "parent_location": [ - { - "end_col": 42, - "end_line": 394, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" - }, - "parent_location": [ - { - "end_col": 42, - "end_line": 375, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" - }, - "parent_location": [ - { - "end_col": 19, - "end_line": 396, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" - }, - "start_col": 9, - "start_line": 396 - }, - "While trying to retrieve the implicit argument 'pedersen_ptr' in:" - ], - "start_col": 16, - "start_line": 375 - }, - "While expanding the reference 'pedersen_ptr' in:" - ], - "start_col": 9, - "start_line": 394 - }, - "While trying to update the implicit return value 'pedersen_ptr' in:" - ], - "start_col": 36, - "start_line": 21 - } - }, - "1585": { - "accessible_scopes": [ - "openzeppelin.token.erc721.library", - "openzeppelin.token.erc721.library.ERC721", - "openzeppelin.token.erc721.library.ERC721._mint" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 29, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/event/Transfer/a7a8ae41be29ac9f4f6c3b7837c448d787ca051dd1ade98f409e54d33d112504.cairo" - }, - "parent_location": [ - { - "end_col": 14, - "end_line": 28, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" - }, - "parent_location": [ - { - "end_col": 39, - "end_line": 395, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" - }, - "parent_location": [ - { - "end_col": 62, - "end_line": 375, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" - }, - "parent_location": [ - { - "end_col": 19, - "end_line": 396, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" - }, - "start_col": 9, - "start_line": 396 - }, - "While trying to retrieve the implicit argument 'syscall_ptr' in:" - ], - "start_col": 44, - "start_line": 375 - }, - "While expanding the reference 'syscall_ptr' in:" - ], - "start_col": 9, - "start_line": 395 - }, - "While trying to update the implicit return value 'syscall_ptr' in:" - ], - "start_col": 6, - "start_line": 28 - }, - "While handling event:" - ], - "start_col": 11, - "start_line": 1 - } - }, - "1586": { - "accessible_scopes": [ - "openzeppelin.token.erc721.library", - "openzeppelin.token.erc721.library.ERC721", - "openzeppelin.token.erc721.library.ERC721._mint" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 46, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/event/Transfer/a7a8ae41be29ac9f4f6c3b7837c448d787ca051dd1ade98f409e54d33d112504.cairo" - }, - "parent_location": [ - { - "end_col": 14, - "end_line": 28, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" - }, - "parent_location": [ - { - "end_col": 39, - "end_line": 395, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" - }, - "parent_location": [ - { - "end_col": 79, - "end_line": 375, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" - }, - "parent_location": [ - { - "end_col": 19, - "end_line": 396, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" - }, - "start_col": 9, - "start_line": 396 - }, - "While trying to retrieve the implicit argument 'range_check_ptr' in:" - ], - "start_col": 64, - "start_line": 375 - }, - "While expanding the reference 'range_check_ptr' in:" - ], - "start_col": 9, - "start_line": 395 - }, - "While trying to update the implicit return value 'range_check_ptr' in:" - ], - "start_col": 6, - "start_line": 28 - }, - "While handling event:" - ], - "start_col": 31, - "start_line": 1 - } - }, - "1587": { - "accessible_scopes": [ - "openzeppelin.token.erc721.library", - "openzeppelin.token.erc721.library.ERC721", - "openzeppelin.token.erc721.library.ERC721._mint" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 19, - "end_line": 396, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" - }, - "start_col": 9, - "start_line": 396 - } - }, - "1588": { - "accessible_scopes": [ - "openzeppelin.token.erc721.library", - "openzeppelin.token.erc721.library.ERC721", - "openzeppelin.token.erc721.library.ERC721._burn" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 22, - "end_line": 415, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" - }, - "start_col": 9, - "start_line": 415 - } - }, - "1590": { - "accessible_scopes": [ - "openzeppelin.token.erc721.library", - "openzeppelin.token.erc721.library.ERC721", - "openzeppelin.token.erc721.library.ERC721._burn" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 79, - "end_line": 414, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" - }, - "parent_location": [ - { - "end_col": 35, - "end_line": 21, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/uint256.cairo" - }, - "parent_location": [ - { - "end_col": 36, - "end_line": 417, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" - }, - "start_col": 13, - "start_line": 417 - }, - "While trying to retrieve the implicit argument 'range_check_ptr' in:" - ], - "start_col": 20, - "start_line": 21 - }, - "While expanding the reference 'range_check_ptr' in:" - ], - "start_col": 64, - "start_line": 414 - } - }, - "1591": { - "accessible_scopes": [ - "openzeppelin.token.erc721.library", - "openzeppelin.token.erc721.library.ERC721", - "openzeppelin.token.erc721.library.ERC721._burn" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 98, - "end_line": 414, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" - }, - "parent_location": [ - { - "end_col": 35, - "end_line": 417, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" - }, - "start_col": 27, - "start_line": 417 - }, - "While expanding the reference 'token_id' in:" - ], - "start_col": 81, - "start_line": 414 - } - }, - "1592": { - "accessible_scopes": [ - "openzeppelin.token.erc721.library", - "openzeppelin.token.erc721.library.ERC721", - "openzeppelin.token.erc721.library.ERC721._burn" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 98, - "end_line": 414, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" - }, - "parent_location": [ - { - "end_col": 35, - "end_line": 417, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" - }, - "start_col": 27, - "start_line": 417 - }, - "While expanding the reference 'token_id' in:" - ], - "start_col": 81, - "start_line": 414 - } - }, - "1593": { - "accessible_scopes": [ - "openzeppelin.token.erc721.library", - "openzeppelin.token.erc721.library.ERC721", - "openzeppelin.token.erc721.library.ERC721._burn" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 36, - "end_line": 417, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" - }, - "start_col": 13, - "start_line": 417 - } - }, - "1595": { - "accessible_scopes": [ - "openzeppelin.token.erc721.library", - "openzeppelin.token.erc721.library.ERC721", - "openzeppelin.token.erc721.library.ERC721._burn" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 62, - "end_line": 414, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" - }, - "parent_location": [ - { - "end_col": 37, - "end_line": 109, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" - }, - "parent_location": [ - { - "end_col": 41, - "end_line": 419, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" - }, - "start_col": 23, - "start_line": 419 - }, - "While trying to retrieve the implicit argument 'syscall_ptr' in:" - ], - "start_col": 19, - "start_line": 109 - }, - "While expanding the reference 'syscall_ptr' in:" - ], - "start_col": 44, - "start_line": 414 - } - }, - "1596": { - "accessible_scopes": [ - "openzeppelin.token.erc721.library", - "openzeppelin.token.erc721.library.ERC721", - "openzeppelin.token.erc721.library.ERC721._burn" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 42, - "end_line": 414, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" - }, - "parent_location": [ - { - "end_col": 65, - "end_line": 109, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" - }, - "parent_location": [ - { - "end_col": 41, - "end_line": 419, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" - }, - "start_col": 23, - "start_line": 419 - }, - "While trying to retrieve the implicit argument 'pedersen_ptr' in:" - ], - "start_col": 39, - "start_line": 109 - }, - "While expanding the reference 'pedersen_ptr' in:" - ], - "start_col": 16, - "start_line": 414 - } - }, - "1597": { - "accessible_scopes": [ - "openzeppelin.token.erc721.library", - "openzeppelin.token.erc721.library.ERC721", - "openzeppelin.token.erc721.library.ERC721._burn" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 35, - "end_line": 21, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/uint256.cairo" - }, - "parent_location": [ - { - "end_col": 36, - "end_line": 417, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" - }, - "parent_location": [ - { - "end_col": 82, - "end_line": 109, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" - }, - "parent_location": [ - { - "end_col": 41, - "end_line": 419, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" - }, - "start_col": 23, - "start_line": 419 - }, - "While trying to retrieve the implicit argument 'range_check_ptr' in:" - ], - "start_col": 67, - "start_line": 109 - }, - "While expanding the reference 'range_check_ptr' in:" - ], - "start_col": 13, - "start_line": 417 - }, - "While trying to update the implicit return value 'range_check_ptr' in:" - ], - "start_col": 20, - "start_line": 21 - } - }, - "1598": { - "accessible_scopes": [ - "openzeppelin.token.erc721.library", - "openzeppelin.token.erc721.library.ERC721", - "openzeppelin.token.erc721.library.ERC721._burn" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 98, - "end_line": 414, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" - }, - "parent_location": [ - { - "end_col": 40, - "end_line": 419, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" - }, - "start_col": 32, - "start_line": 419 - }, - "While expanding the reference 'token_id' in:" - ], - "start_col": 81, - "start_line": 414 - } - }, - "1599": { - "accessible_scopes": [ - "openzeppelin.token.erc721.library", - "openzeppelin.token.erc721.library.ERC721", - "openzeppelin.token.erc721.library.ERC721._burn" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 98, - "end_line": 414, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" - }, - "parent_location": [ - { - "end_col": 40, - "end_line": 419, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" - }, - "start_col": 32, - "start_line": 419 - }, - "While expanding the reference 'token_id' in:" - ], - "start_col": 81, - "start_line": 414 - } - }, - "1600": { - "accessible_scopes": [ - "openzeppelin.token.erc721.library", - "openzeppelin.token.erc721.library.ERC721", - "openzeppelin.token.erc721.library.ERC721._burn" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 41, - "end_line": 419, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" - }, - "start_col": 23, - "start_line": 419 - } - }, - "1602": { - "accessible_scopes": [ - "openzeppelin.token.erc721.library", - "openzeppelin.token.erc721.library.ERC721", - "openzeppelin.token.erc721.library.ERC721._burn" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 37, - "end_line": 109, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" - }, - "parent_location": [ - { - "end_col": 41, - "end_line": 419, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" - }, - "parent_location": [ - { - "end_col": 37, - "end_line": 322, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" - }, - "parent_location": [ - { - "end_col": 30, - "end_line": 422, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" - }, - "start_col": 9, - "start_line": 422 - }, - "While trying to retrieve the implicit argument 'syscall_ptr' in:" - ], - "start_col": 19, - "start_line": 322 - }, - "While expanding the reference 'syscall_ptr' in:" - ], - "start_col": 23, - "start_line": 419 - }, - "While trying to update the implicit return value 'syscall_ptr' in:" - ], - "start_col": 19, - "start_line": 109 - } - }, - "1603": { - "accessible_scopes": [ - "openzeppelin.token.erc721.library", - "openzeppelin.token.erc721.library.ERC721", - "openzeppelin.token.erc721.library.ERC721._burn" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 65, - "end_line": 109, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" - }, - "parent_location": [ - { - "end_col": 41, - "end_line": 419, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" - }, - "parent_location": [ - { - "end_col": 65, - "end_line": 322, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" - }, - "parent_location": [ - { - "end_col": 30, - "end_line": 422, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" - }, - "start_col": 9, - "start_line": 422 - }, - "While trying to retrieve the implicit argument 'pedersen_ptr' in:" - ], - "start_col": 39, - "start_line": 322 - }, - "While expanding the reference 'pedersen_ptr' in:" - ], - "start_col": 23, - "start_line": 419 - }, - "While trying to update the implicit return value 'pedersen_ptr' in:" - ], - "start_col": 39, - "start_line": 109 - } - }, - "1604": { - "accessible_scopes": [ - "openzeppelin.token.erc721.library", - "openzeppelin.token.erc721.library.ERC721", - "openzeppelin.token.erc721.library.ERC721._burn" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 82, - "end_line": 109, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" - }, - "parent_location": [ - { - "end_col": 41, - "end_line": 419, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" - }, - "parent_location": [ - { - "end_col": 82, - "end_line": 322, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" - }, - "parent_location": [ - { - "end_col": 30, - "end_line": 422, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" - }, - "start_col": 9, - "start_line": 422 - }, - "While trying to retrieve the implicit argument 'range_check_ptr' in:" - ], - "start_col": 67, - "start_line": 322 - }, - "While expanding the reference 'range_check_ptr' in:" - ], - "start_col": 23, - "start_line": 419 - }, - "While trying to update the implicit return value 'range_check_ptr' in:" - ], - "start_col": 67, - "start_line": 109 - } - }, - "1605": { - "accessible_scopes": [ - "openzeppelin.token.erc721.library", - "openzeppelin.token.erc721.library.ERC721", - "openzeppelin.token.erc721.library.ERC721._burn" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 19, - "end_line": 422, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" - }, - "start_col": 18, - "start_line": 422 - } - }, - "1607": { - "accessible_scopes": [ - "openzeppelin.token.erc721.library", - "openzeppelin.token.erc721.library.ERC721", - "openzeppelin.token.erc721.library.ERC721._burn" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 98, - "end_line": 414, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" - }, - "parent_location": [ - { - "end_col": 29, - "end_line": 422, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" - }, - "start_col": 21, - "start_line": 422 - }, - "While expanding the reference 'token_id' in:" - ], - "start_col": 81, - "start_line": 414 - } - }, - "1608": { - "accessible_scopes": [ - "openzeppelin.token.erc721.library", - "openzeppelin.token.erc721.library.ERC721", - "openzeppelin.token.erc721.library.ERC721._burn" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 98, - "end_line": 414, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" - }, - "parent_location": [ - { - "end_col": 29, - "end_line": 422, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" - }, - "start_col": 21, - "start_line": 422 - }, - "While expanding the reference 'token_id' in:" - ], - "start_col": 81, - "start_line": 414 - } - }, - "1609": { - "accessible_scopes": [ - "openzeppelin.token.erc721.library", - "openzeppelin.token.erc721.library.ERC721", - "openzeppelin.token.erc721.library.ERC721._burn" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 30, - "end_line": 422, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" - }, - "start_col": 9, - "start_line": 422 - } - }, - "1611": { - "accessible_scopes": [ - "openzeppelin.token.erc721.library", - "openzeppelin.token.erc721.library.ERC721", - "openzeppelin.token.erc721.library.ERC721._burn" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 19, - "end_line": 419, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" - }, - "parent_location": [ - { - "end_col": 60, - "end_line": 425, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" - }, - "start_col": 55, - "start_line": 425 - }, - "While expanding the reference 'owner' in:" - ], - "start_col": 14, - "start_line": 419 - } - }, - "1612": { - "accessible_scopes": [ - "openzeppelin.token.erc721.library", - "openzeppelin.token.erc721.library.ERC721", - "openzeppelin.token.erc721.library.ERC721._burn" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 61, - "end_line": 425, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" - }, - "start_col": 34, - "start_line": 425 - } - }, - "1614": { - "accessible_scopes": [ - "openzeppelin.token.erc721.library", - "openzeppelin.token.erc721.library.ERC721", - "openzeppelin.token.erc721.library.ERC721._burn" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 75, - "end_line": 426, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" - }, - "start_col": 74, - "start_line": 426 - } - }, - "1616": { - "accessible_scopes": [ - "openzeppelin.token.erc721.library", - "openzeppelin.token.erc721.library.ERC721", - "openzeppelin.token.erc721.library.ERC721._burn" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 78, - "end_line": 426, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" - }, - "start_col": 77, - "start_line": 426 - } - }, - "1618": { - "accessible_scopes": [ - "openzeppelin.token.erc721.library", - "openzeppelin.token.erc721.library.ERC721", - "openzeppelin.token.erc721.library.ERC721._burn" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 80, - "end_line": 426, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" - }, - "start_col": 38, - "start_line": 426 - } - }, - "1620": { - "accessible_scopes": [ - "openzeppelin.token.erc721.library", - "openzeppelin.token.erc721.library.ERC721", - "openzeppelin.token.erc721.library.ERC721._burn" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 35, - "end_line": 37, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/security/safemath/library.cairo" - }, - "parent_location": [ - { - "end_col": 80, - "end_line": 426, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" - }, - "parent_location": [ - { - "end_col": 34, - "end_line": 21, - "input_file": { - "filename": "autogen/starknet/storage_var/ERC721_balances/decl.cairo" - }, - "parent_location": [ - { - "end_col": 50, - "end_line": 427, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" - }, - "start_col": 9, - "start_line": 427 - }, - "While trying to retrieve the implicit argument 'syscall_ptr' in:" - ], - "start_col": 16, - "start_line": 21 - }, - "While expanding the reference 'syscall_ptr' in:" - ], - "start_col": 38, - "start_line": 426 - }, - "While trying to update the implicit return value 'syscall_ptr' in:" - ], - "start_col": 17, - "start_line": 37 - } - }, - "1621": { - "accessible_scopes": [ - "openzeppelin.token.erc721.library", - "openzeppelin.token.erc721.library.ERC721", - "openzeppelin.token.erc721.library.ERC721._burn" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 63, - "end_line": 37, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/security/safemath/library.cairo" - }, - "parent_location": [ - { - "end_col": 80, - "end_line": 426, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" - }, - "parent_location": [ - { - "end_col": 62, - "end_line": 21, - "input_file": { - "filename": "autogen/starknet/storage_var/ERC721_balances/decl.cairo" - }, - "parent_location": [ - { - "end_col": 50, - "end_line": 427, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" - }, - "start_col": 9, - "start_line": 427 - }, - "While trying to retrieve the implicit argument 'pedersen_ptr' in:" - ], - "start_col": 36, - "start_line": 21 - }, - "While expanding the reference 'pedersen_ptr' in:" - ], - "start_col": 38, - "start_line": 426 - }, - "While trying to update the implicit return value 'pedersen_ptr' in:" - ], - "start_col": 37, - "start_line": 37 - } - }, - "1622": { - "accessible_scopes": [ - "openzeppelin.token.erc721.library", - "openzeppelin.token.erc721.library.ERC721", - "openzeppelin.token.erc721.library.ERC721._burn" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 80, - "end_line": 37, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/security/safemath/library.cairo" - }, - "parent_location": [ - { - "end_col": 80, - "end_line": 426, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" - }, - "parent_location": [ - { - "end_col": 79, - "end_line": 21, - "input_file": { - "filename": "autogen/starknet/storage_var/ERC721_balances/decl.cairo" - }, - "parent_location": [ - { - "end_col": 50, - "end_line": 427, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" - }, - "start_col": 9, - "start_line": 427 - }, - "While trying to retrieve the implicit argument 'range_check_ptr' in:" - ], - "start_col": 64, - "start_line": 21 - }, - "While expanding the reference 'range_check_ptr' in:" - ], - "start_col": 38, - "start_line": 426 - }, - "While trying to update the implicit return value 'range_check_ptr' in:" - ], - "start_col": 65, - "start_line": 37 - } - }, - "1623": { - "accessible_scopes": [ - "openzeppelin.token.erc721.library", - "openzeppelin.token.erc721.library.ERC721", - "openzeppelin.token.erc721.library.ERC721._burn" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 19, - "end_line": 419, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" - }, - "parent_location": [ - { - "end_col": 36, - "end_line": 427, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" - }, - "start_col": 31, - "start_line": 427 - }, - "While expanding the reference 'owner' in:" - ], - "start_col": 14, - "start_line": 419 - } - }, - "1624": { - "accessible_scopes": [ - "openzeppelin.token.erc721.library", - "openzeppelin.token.erc721.library.ERC721", - "openzeppelin.token.erc721.library.ERC721._burn" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 34, - "end_line": 426, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" - }, - "parent_location": [ - { - "end_col": 49, - "end_line": 427, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" - }, - "start_col": 38, - "start_line": 427 - }, - "While expanding the reference 'new_balance' in:" - ], - "start_col": 14, - "start_line": 426 - } - }, - "1625": { - "accessible_scopes": [ - "openzeppelin.token.erc721.library", - "openzeppelin.token.erc721.library.ERC721", - "openzeppelin.token.erc721.library.ERC721._burn" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 34, - "end_line": 426, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" - }, - "parent_location": [ - { - "end_col": 49, - "end_line": 427, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" - }, - "start_col": 38, - "start_line": 427 - }, - "While expanding the reference 'new_balance' in:" - ], - "start_col": 14, - "start_line": 426 - } - }, - "1626": { - "accessible_scopes": [ - "openzeppelin.token.erc721.library", - "openzeppelin.token.erc721.library.ERC721", - "openzeppelin.token.erc721.library.ERC721._burn" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 50, - "end_line": 427, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" - }, - "start_col": 9, - "start_line": 427 - } - }, - "1628": { - "accessible_scopes": [ - "openzeppelin.token.erc721.library", - "openzeppelin.token.erc721.library.ERC721", - "openzeppelin.token.erc721.library.ERC721._burn" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 98, - "end_line": 414, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" - }, - "parent_location": [ - { - "end_col": 37, - "end_line": 430, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" - }, - "start_col": 29, - "start_line": 430 - }, - "While expanding the reference 'token_id' in:" - ], - "start_col": 81, - "start_line": 414 - } - }, - "1629": { - "accessible_scopes": [ - "openzeppelin.token.erc721.library", - "openzeppelin.token.erc721.library.ERC721", - "openzeppelin.token.erc721.library.ERC721._burn" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 98, - "end_line": 414, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" - }, - "parent_location": [ - { - "end_col": 37, - "end_line": 430, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" - }, - "start_col": 29, - "start_line": 430 - }, - "While expanding the reference 'token_id' in:" - ], - "start_col": 81, - "start_line": 414 - } - }, - "1630": { - "accessible_scopes": [ - "openzeppelin.token.erc721.library", - "openzeppelin.token.erc721.library.ERC721", - "openzeppelin.token.erc721.library.ERC721._burn" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 40, - "end_line": 430, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" - }, - "start_col": 39, - "start_line": 430 - } - }, - "1632": { - "accessible_scopes": [ - "openzeppelin.token.erc721.library", - "openzeppelin.token.erc721.library.ERC721", - "openzeppelin.token.erc721.library.ERC721._burn" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 41, - "end_line": 430, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" - }, - "start_col": 9, - "start_line": 430 - } - }, - "1634": { - "accessible_scopes": [ - "openzeppelin.token.erc721.library", - "openzeppelin.token.erc721.library.ERC721", - "openzeppelin.token.erc721.library.ERC721._burn" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 34, - "end_line": 21, - "input_file": { - "filename": "autogen/starknet/storage_var/ERC721_owners/decl.cairo" - }, - "parent_location": [ - { - "end_col": 41, - "end_line": 430, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" - }, - "parent_location": [ - { - "end_col": 29, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/event/Transfer/a7a8ae41be29ac9f4f6c3b7837c448d787ca051dd1ade98f409e54d33d112504.cairo" - }, - "parent_location": [ - { - "end_col": 14, - "end_line": 28, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" - }, - "parent_location": [ - { - "end_col": 42, - "end_line": 431, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" - }, - "start_col": 9, - "start_line": 431 - }, - "While trying to retrieve the implicit argument 'syscall_ptr' in:" - ], - "start_col": 6, - "start_line": 28 - }, - "While handling event:" - ], - "start_col": 11, - "start_line": 1 - }, - "While expanding the reference 'syscall_ptr' in:" - ], - "start_col": 9, - "start_line": 430 - }, - "While trying to update the implicit return value 'syscall_ptr' in:" - ], - "start_col": 16, - "start_line": 21 - } - }, - "1635": { - "accessible_scopes": [ - "openzeppelin.token.erc721.library", - "openzeppelin.token.erc721.library.ERC721", - "openzeppelin.token.erc721.library.ERC721._burn" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 79, - "end_line": 21, - "input_file": { - "filename": "autogen/starknet/storage_var/ERC721_owners/decl.cairo" - }, - "parent_location": [ - { - "end_col": 41, - "end_line": 430, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" - }, - "parent_location": [ - { - "end_col": 46, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/event/Transfer/a7a8ae41be29ac9f4f6c3b7837c448d787ca051dd1ade98f409e54d33d112504.cairo" - }, - "parent_location": [ - { - "end_col": 14, - "end_line": 28, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" - }, - "parent_location": [ - { - "end_col": 42, - "end_line": 431, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" - }, - "start_col": 9, - "start_line": 431 - }, - "While trying to retrieve the implicit argument 'range_check_ptr' in:" - ], - "start_col": 6, - "start_line": 28 - }, - "While handling event:" - ], - "start_col": 31, - "start_line": 1 - }, - "While expanding the reference 'range_check_ptr' in:" - ], - "start_col": 9, - "start_line": 430 - }, - "While trying to update the implicit return value 'range_check_ptr' in:" - ], - "start_col": 64, - "start_line": 21 - } - }, - "1636": { - "accessible_scopes": [ - "openzeppelin.token.erc721.library", - "openzeppelin.token.erc721.library.ERC721", - "openzeppelin.token.erc721.library.ERC721._burn" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 19, - "end_line": 419, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" - }, - "parent_location": [ - { - "end_col": 28, - "end_line": 431, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" - }, - "start_col": 23, - "start_line": 431 - }, - "While expanding the reference 'owner' in:" - ], - "start_col": 14, - "start_line": 419 - } - }, - "1637": { - "accessible_scopes": [ - "openzeppelin.token.erc721.library", - "openzeppelin.token.erc721.library.ERC721", - "openzeppelin.token.erc721.library.ERC721._burn" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 31, - "end_line": 431, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" - }, - "start_col": 30, - "start_line": 431 - } - }, - "1639": { - "accessible_scopes": [ - "openzeppelin.token.erc721.library", - "openzeppelin.token.erc721.library.ERC721", - "openzeppelin.token.erc721.library.ERC721._burn" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 98, - "end_line": 414, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" - }, - "parent_location": [ - { - "end_col": 41, - "end_line": 431, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" - }, - "start_col": 33, - "start_line": 431 - }, - "While expanding the reference 'token_id' in:" - ], - "start_col": 81, - "start_line": 414 - } - }, - "1640": { - "accessible_scopes": [ - "openzeppelin.token.erc721.library", - "openzeppelin.token.erc721.library.ERC721", - "openzeppelin.token.erc721.library.ERC721._burn" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 98, - "end_line": 414, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" - }, - "parent_location": [ - { - "end_col": 41, - "end_line": 431, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" - }, - "start_col": 33, - "start_line": 431 - }, - "While expanding the reference 'token_id' in:" - ], - "start_col": 81, - "start_line": 414 - } - }, - "1641": { - "accessible_scopes": [ - "openzeppelin.token.erc721.library", - "openzeppelin.token.erc721.library.ERC721", - "openzeppelin.token.erc721.library.ERC721._burn" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 42, - "end_line": 431, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" - }, - "start_col": 9, - "start_line": 431 - } - }, - "1643": { - "accessible_scopes": [ - "openzeppelin.token.erc721.library", - "openzeppelin.token.erc721.library.ERC721", - "openzeppelin.token.erc721.library.ERC721._burn" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 62, - "end_line": 21, - "input_file": { - "filename": "autogen/starknet/storage_var/ERC721_owners/decl.cairo" - }, - "parent_location": [ - { - "end_col": 41, - "end_line": 430, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" - }, - "parent_location": [ - { - "end_col": 42, - "end_line": 414, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" - }, - "parent_location": [ - { - "end_col": 19, - "end_line": 432, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" - }, - "start_col": 9, - "start_line": 432 - }, - "While trying to retrieve the implicit argument 'pedersen_ptr' in:" - ], - "start_col": 16, - "start_line": 414 - }, - "While expanding the reference 'pedersen_ptr' in:" - ], - "start_col": 9, - "start_line": 430 - }, - "While trying to update the implicit return value 'pedersen_ptr' in:" - ], - "start_col": 36, - "start_line": 21 - } - }, - "1644": { - "accessible_scopes": [ - "openzeppelin.token.erc721.library", - "openzeppelin.token.erc721.library.ERC721", - "openzeppelin.token.erc721.library.ERC721._burn" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 29, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/event/Transfer/a7a8ae41be29ac9f4f6c3b7837c448d787ca051dd1ade98f409e54d33d112504.cairo" - }, - "parent_location": [ - { - "end_col": 14, - "end_line": 28, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" - }, - "parent_location": [ - { - "end_col": 42, - "end_line": 431, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" - }, - "parent_location": [ - { - "end_col": 62, - "end_line": 414, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" - }, - "parent_location": [ - { - "end_col": 19, - "end_line": 432, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" - }, - "start_col": 9, - "start_line": 432 - }, - "While trying to retrieve the implicit argument 'syscall_ptr' in:" - ], - "start_col": 44, - "start_line": 414 - }, - "While expanding the reference 'syscall_ptr' in:" - ], - "start_col": 9, - "start_line": 431 - }, - "While trying to update the implicit return value 'syscall_ptr' in:" - ], - "start_col": 6, - "start_line": 28 - }, - "While handling event:" - ], - "start_col": 11, - "start_line": 1 - } - }, - "1645": { - "accessible_scopes": [ - "openzeppelin.token.erc721.library", - "openzeppelin.token.erc721.library.ERC721", - "openzeppelin.token.erc721.library.ERC721._burn" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 46, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/event/Transfer/a7a8ae41be29ac9f4f6c3b7837c448d787ca051dd1ade98f409e54d33d112504.cairo" - }, - "parent_location": [ - { - "end_col": 14, - "end_line": 28, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" - }, - "parent_location": [ - { - "end_col": 42, - "end_line": 431, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" - }, - "parent_location": [ - { - "end_col": 79, - "end_line": 414, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" - }, - "parent_location": [ - { - "end_col": 19, - "end_line": 432, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" - }, - "start_col": 9, - "start_line": 432 - }, - "While trying to retrieve the implicit argument 'range_check_ptr' in:" - ], - "start_col": 64, - "start_line": 414 - }, - "While expanding the reference 'range_check_ptr' in:" - ], - "start_col": 9, - "start_line": 431 - }, - "While trying to update the implicit return value 'range_check_ptr' in:" - ], - "start_col": 6, - "start_line": 28 - }, - "While handling event:" - ], - "start_col": 31, - "start_line": 1 - } - }, - "1646": { - "accessible_scopes": [ - "openzeppelin.token.erc721.library", - "openzeppelin.token.erc721.library.ERC721", - "openzeppelin.token.erc721.library.ERC721._burn" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 19, - "end_line": 432, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" - }, - "start_col": 9, - "start_line": 432 - } - }, - "1647": { - "accessible_scopes": [ - "openzeppelin.token.erc721.library", - "openzeppelin.token.erc721.library._check_onERC721Received" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 48, - "end_line": 453, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" - }, - "parent_location": [ - { - "end_col": 43, - "end_line": 200, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/starknet/common/syscalls.cairo" - }, - "parent_location": [ - { - "end_col": 40, - "end_line": 456, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" - }, - "start_col": 20, - "start_line": 456 - }, - "While trying to retrieve the implicit argument 'syscall_ptr' in:" - ], - "start_col": 25, - "start_line": 200 - }, - "While expanding the reference 'syscall_ptr' in:" - ], - "start_col": 30, - "start_line": 453 - } - }, - "1648": { - "accessible_scopes": [ - "openzeppelin.token.erc721.library", - "openzeppelin.token.erc721.library._check_onERC721Received" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 40, - "end_line": 456, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" - }, - "start_col": 20, - "start_line": 456 - } - }, - "1650": { - "accessible_scopes": [ - "openzeppelin.token.erc721.library", - "openzeppelin.token.erc721.library._check_onERC721Received" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 43, - "end_line": 200, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/starknet/common/syscalls.cairo" - }, - "parent_location": [ - { - "end_col": 40, - "end_line": 456, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" - }, - "parent_location": [ - { - "end_col": 42, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/contract_interface/IERC165/supportsInterface/2a1791e6eb36480300e6de9be3cf0c73e2bf0096fbe6995a9e4600da5d0240a4.cairo" - }, - "parent_location": [ - { - "end_col": 27, - "end_line": 8, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/introspection/erc165/IERC165.cairo" - }, - "parent_location": [ - { - "end_col": 76, - "end_line": 457, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" - }, - "start_col": 26, - "start_line": 457 - }, - "While trying to retrieve the implicit argument 'syscall_ptr' in:" - ], - "start_col": 10, - "start_line": 8 - }, - "While handling contract interface function:" - ], - "start_col": 24, - "start_line": 1 - }, - "While expanding the reference 'syscall_ptr' in:" - ], - "start_col": 20, - "start_line": 456 - }, - "While trying to update the implicit return value 'syscall_ptr' in:" - ], - "start_col": 25, - "start_line": 200 - } - }, - "1651": { - "accessible_scopes": [ - "openzeppelin.token.erc721.library", - "openzeppelin.token.erc721.library._check_onERC721Received" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 93, - "end_line": 453, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" - }, - "parent_location": [ - { - "end_col": 59, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/contract_interface/IERC165/supportsInterface/2a1791e6eb36480300e6de9be3cf0c73e2bf0096fbe6995a9e4600da5d0240a4.cairo" - }, - "parent_location": [ - { - "end_col": 27, - "end_line": 8, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/introspection/erc165/IERC165.cairo" - }, - "parent_location": [ - { - "end_col": 76, - "end_line": 457, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" - }, - "start_col": 26, - "start_line": 457 - }, - "While trying to retrieve the implicit argument 'range_check_ptr' in:" - ], - "start_col": 10, - "start_line": 8 - }, - "While handling contract interface function:" - ], - "start_col": 44, - "start_line": 1 - }, - "While expanding the reference 'range_check_ptr' in:" - ], - "start_col": 78, - "start_line": 453 - } - }, - "1652": { - "accessible_scopes": [ - "openzeppelin.token.erc721.library", - "openzeppelin.token.erc721.library._check_onERC721Received" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 26, - "end_line": 454, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" - }, - "parent_location": [ - { - "end_col": 54, - "end_line": 457, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" - }, - "start_col": 52, - "start_line": 457 - }, - "While expanding the reference 'to' in:" - ], - "start_col": 18, - "start_line": 454 - } - }, - "1653": { - "accessible_scopes": [ - "openzeppelin.token.erc721.library", - "openzeppelin.token.erc721.library._check_onERC721Received" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 75, - "end_line": 457, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" - }, - "start_col": 56, - "start_line": 457 - } - }, - "1655": { - "accessible_scopes": [ - "openzeppelin.token.erc721.library", - "openzeppelin.token.erc721.library._check_onERC721Received" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 76, - "end_line": 457, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" - }, - "start_col": 26, - "start_line": 457 - } - }, - "1657": { - "accessible_scopes": [ - "openzeppelin.token.erc721.library", - "openzeppelin.token.erc721.library._check_onERC721Received" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 29, - "end_line": 458, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" - }, - "start_col": 9, - "start_line": 458 - } - }, - "1659": { - "accessible_scopes": [ - "openzeppelin.token.erc721.library", - "openzeppelin.token.erc721.library._check_onERC721Received" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 7, - "end_line": 458, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" - }, - "start_col": 5, - "start_line": 458 - } - }, - "1661": { - "accessible_scopes": [ - "openzeppelin.token.erc721.library", - "openzeppelin.token.erc721.library._check_onERC721Received" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 42, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/contract_interface/IERC165/supportsInterface/2a1791e6eb36480300e6de9be3cf0c73e2bf0096fbe6995a9e4600da5d0240a4.cairo" - }, - "parent_location": [ - { - "end_col": 27, - "end_line": 8, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/introspection/erc165/IERC165.cairo" - }, - "parent_location": [ - { - "end_col": 76, - "end_line": 457, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" - }, - "parent_location": [ - { - "end_col": 41, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/contract_interface/IERC721Receiver/onERC721Received/7867481925aec1465158cbaa62d2d4fc603e34734d22c5e07da7379a4d0d3f0e.cairo" - }, - "parent_location": [ - { - "end_col": 26, - "end_line": 10, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/IERC721Receiver.cairo" - }, - "parent_location": [ - { - "end_col": 10, - "end_line": 461, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" - }, - "start_col": 26, - "start_line": 459 - }, - "While trying to retrieve the implicit argument 'syscall_ptr' in:" - ], - "start_col": 10, - "start_line": 10 - }, - "While handling contract interface function:" - ], - "start_col": 23, - "start_line": 1 - }, - "While expanding the reference 'syscall_ptr' in:" - ], - "start_col": 26, - "start_line": 457 - }, - "While trying to update the implicit return value 'syscall_ptr' in:" - ], - "start_col": 10, - "start_line": 8 - }, - "While handling contract interface function:" - ], - "start_col": 24, - "start_line": 1 - } - }, - "1662": { - "accessible_scopes": [ - "openzeppelin.token.erc721.library", - "openzeppelin.token.erc721.library._check_onERC721Received" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 59, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/contract_interface/IERC165/supportsInterface/2a1791e6eb36480300e6de9be3cf0c73e2bf0096fbe6995a9e4600da5d0240a4.cairo" - }, - "parent_location": [ - { - "end_col": 27, - "end_line": 8, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/introspection/erc165/IERC165.cairo" - }, - "parent_location": [ - { - "end_col": 76, - "end_line": 457, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" - }, - "parent_location": [ - { - "end_col": 58, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/contract_interface/IERC721Receiver/onERC721Received/7867481925aec1465158cbaa62d2d4fc603e34734d22c5e07da7379a4d0d3f0e.cairo" - }, - "parent_location": [ - { - "end_col": 26, - "end_line": 10, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/IERC721Receiver.cairo" - }, - "parent_location": [ - { - "end_col": 10, - "end_line": 461, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" - }, - "start_col": 26, - "start_line": 459 - }, - "While trying to retrieve the implicit argument 'range_check_ptr' in:" - ], - "start_col": 10, - "start_line": 10 - }, - "While handling contract interface function:" - ], - "start_col": 43, - "start_line": 1 - }, - "While expanding the reference 'range_check_ptr' in:" - ], - "start_col": 26, - "start_line": 457 - }, - "While trying to update the implicit return value 'range_check_ptr' in:" - ], - "start_col": 10, - "start_line": 8 - }, - "While handling contract interface function:" - ], - "start_col": 44, - "start_line": 1 - } - }, - "1663": { - "accessible_scopes": [ - "openzeppelin.token.erc721.library", - "openzeppelin.token.erc721.library._check_onERC721Received" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 26, - "end_line": 454, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" - }, - "parent_location": [ - { - "end_col": 15, - "end_line": 460, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" - }, - "start_col": 13, - "start_line": 460 - }, - "While expanding the reference 'to' in:" - ], - "start_col": 18, - "start_line": 454 - } - }, - "1664": { - "accessible_scopes": [ - "openzeppelin.token.erc721.library", - "openzeppelin.token.erc721.library._check_onERC721Received" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 16, - "end_line": 456, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" - }, - "parent_location": [ - { - "end_col": 23, - "end_line": 460, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" - }, - "start_col": 17, - "start_line": 460 - }, - "While expanding the reference 'caller' in:" - ], - "start_col": 10, - "start_line": 456 - } - }, - "1665": { - "accessible_scopes": [ - "openzeppelin.token.erc721.library", - "openzeppelin.token.erc721.library._check_onERC721Received" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 16, - "end_line": 454, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" - }, - "parent_location": [ - { - "end_col": 30, - "end_line": 460, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" - }, - "start_col": 25, - "start_line": 460 - }, - "While expanding the reference 'from_' in:" - ], - "start_col": 5, - "start_line": 454 - } - }, - "1666": { - "accessible_scopes": [ - "openzeppelin.token.erc721.library", - "openzeppelin.token.erc721.library._check_onERC721Received" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 45, - "end_line": 454, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" - }, - "parent_location": [ - { - "end_col": 40, - "end_line": 460, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" - }, - "start_col": 32, - "start_line": 460 - }, - "While expanding the reference 'token_id' in:" - ], - "start_col": 28, - "start_line": 454 - } - }, - "1667": { - "accessible_scopes": [ - "openzeppelin.token.erc721.library", - "openzeppelin.token.erc721.library._check_onERC721Received" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 45, - "end_line": 454, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" - }, - "parent_location": [ - { - "end_col": 40, - "end_line": 460, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" - }, - "start_col": 32, - "start_line": 460 - }, - "While expanding the reference 'token_id' in:" - ], - "start_col": 28, - "start_line": 454 - } - }, - "1668": { - "accessible_scopes": [ - "openzeppelin.token.erc721.library", - "openzeppelin.token.erc721.library._check_onERC721Received" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 61, - "end_line": 454, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" - }, - "parent_location": [ - { - "end_col": 50, - "end_line": 460, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" - }, - "start_col": 42, - "start_line": 460 - }, - "While expanding the reference 'data_len' in:" - ], - "start_col": 47, - "start_line": 454 - } - }, - "1669": { - "accessible_scopes": [ - "openzeppelin.token.erc721.library", - "openzeppelin.token.erc721.library._check_onERC721Received" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 74, - "end_line": 454, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" - }, - "parent_location": [ - { - "end_col": 56, - "end_line": 460, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" - }, - "start_col": 52, - "start_line": 460 - }, - "While expanding the reference 'data' in:" - ], - "start_col": 63, - "start_line": 454 - } - }, - "1670": { - "accessible_scopes": [ - "openzeppelin.token.erc721.library", - "openzeppelin.token.erc721.library._check_onERC721Received" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 10, - "end_line": 461, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" - }, - "start_col": 26, - "start_line": 459 - } - }, - "1672": { - "accessible_scopes": [ - "openzeppelin.token.erc721.library", - "openzeppelin.token.erc721.library._check_onERC721Received" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 51, - "end_line": 464, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" - }, - "start_col": 13, - "start_line": 464 - } - }, - "1674": { - "accessible_scopes": [ - "openzeppelin.token.erc721.library", - "openzeppelin.token.erc721.library._check_onERC721Received" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 41, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/contract_interface/IERC721Receiver/onERC721Received/7867481925aec1465158cbaa62d2d4fc603e34734d22c5e07da7379a4d0d3f0e.cairo" - }, - "parent_location": [ - { - "end_col": 26, - "end_line": 10, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/IERC721Receiver.cairo" - }, - "parent_location": [ - { - "end_col": 10, - "end_line": 461, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" - }, - "parent_location": [ - { - "end_col": 48, - "end_line": 453, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" - }, - "parent_location": [ - { - "end_col": 31, - "end_line": 466, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" - }, - "start_col": 9, - "start_line": 466 - }, - "While trying to retrieve the implicit argument 'syscall_ptr' in:" - ], - "start_col": 30, - "start_line": 453 - }, - "While expanding the reference 'syscall_ptr' in:" - ], - "start_col": 26, - "start_line": 459 - }, - "While trying to update the implicit return value 'syscall_ptr' in:" - ], - "start_col": 10, - "start_line": 10 - }, - "While handling contract interface function:" - ], - "start_col": 23, - "start_line": 1 - } - }, - "1675": { - "accessible_scopes": [ - "openzeppelin.token.erc721.library", - "openzeppelin.token.erc721.library._check_onERC721Received" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 76, - "end_line": 453, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" - }, - "parent_location": [ - { - "end_col": 76, - "end_line": 453, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" - }, - "parent_location": [ - { - "end_col": 31, - "end_line": 466, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" - }, - "start_col": 9, - "start_line": 466 - }, - "While trying to retrieve the implicit argument 'pedersen_ptr' in:" - ], - "start_col": 50, - "start_line": 453 - }, - "While expanding the reference 'pedersen_ptr' in:" - ], - "start_col": 50, - "start_line": 453 - } - }, - "1676": { - "accessible_scopes": [ - "openzeppelin.token.erc721.library", - "openzeppelin.token.erc721.library._check_onERC721Received" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 58, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/contract_interface/IERC721Receiver/onERC721Received/7867481925aec1465158cbaa62d2d4fc603e34734d22c5e07da7379a4d0d3f0e.cairo" - }, - "parent_location": [ - { - "end_col": 26, - "end_line": 10, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/IERC721Receiver.cairo" - }, - "parent_location": [ - { - "end_col": 10, - "end_line": 461, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" - }, - "parent_location": [ - { - "end_col": 93, - "end_line": 453, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" - }, - "parent_location": [ - { - "end_col": 31, - "end_line": 466, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" - }, - "start_col": 9, - "start_line": 466 - }, - "While trying to retrieve the implicit argument 'range_check_ptr' in:" - ], - "start_col": 78, - "start_line": 453 - }, - "While expanding the reference 'range_check_ptr' in:" - ], - "start_col": 26, - "start_line": 459 - }, - "While trying to update the implicit return value 'range_check_ptr' in:" - ], - "start_col": 10, - "start_line": 10 - }, - "While handling contract interface function:" - ], - "start_col": 43, - "start_line": 1 - } - }, - "1677": { - "accessible_scopes": [ - "openzeppelin.token.erc721.library", - "openzeppelin.token.erc721.library._check_onERC721Received" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 29, - "end_line": 466, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" - }, - "start_col": 25, - "start_line": 466 - } - }, - "1679": { - "accessible_scopes": [ - "openzeppelin.token.erc721.library", - "openzeppelin.token.erc721.library._check_onERC721Received" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 31, - "end_line": 466, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" - }, - "start_col": 9, - "start_line": 466 - } - }, - "1680": { - "accessible_scopes": [ - "openzeppelin.token.erc721.library", - "openzeppelin.token.erc721.library._check_onERC721Received" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 42, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/contract_interface/IERC165/supportsInterface/2a1791e6eb36480300e6de9be3cf0c73e2bf0096fbe6995a9e4600da5d0240a4.cairo" - }, - "parent_location": [ - { - "end_col": 27, - "end_line": 8, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/introspection/erc165/IERC165.cairo" - }, - "parent_location": [ - { - "end_col": 76, - "end_line": 457, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" - }, - "parent_location": [ - { - "end_col": 42, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/contract_interface/IERC165/supportsInterface/2a1791e6eb36480300e6de9be3cf0c73e2bf0096fbe6995a9e4600da5d0240a4.cairo" - }, - "parent_location": [ - { - "end_col": 27, - "end_line": 8, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/introspection/erc165/IERC165.cairo" - }, - "parent_location": [ - { - "end_col": 66, - "end_line": 469, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" - }, - "start_col": 24, - "start_line": 469 - }, - "While trying to retrieve the implicit argument 'syscall_ptr' in:" - ], - "start_col": 10, - "start_line": 8 - }, - "While handling contract interface function:" - ], - "start_col": 24, - "start_line": 1 - }, - "While expanding the reference 'syscall_ptr' in:" - ], - "start_col": 26, - "start_line": 457 - }, - "While trying to update the implicit return value 'syscall_ptr' in:" - ], - "start_col": 10, - "start_line": 8 - }, - "While handling contract interface function:" - ], - "start_col": 24, - "start_line": 1 - } - }, - "1681": { - "accessible_scopes": [ - "openzeppelin.token.erc721.library", - "openzeppelin.token.erc721.library._check_onERC721Received" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 59, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/contract_interface/IERC165/supportsInterface/2a1791e6eb36480300e6de9be3cf0c73e2bf0096fbe6995a9e4600da5d0240a4.cairo" - }, - "parent_location": [ - { - "end_col": 27, - "end_line": 8, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/introspection/erc165/IERC165.cairo" - }, - "parent_location": [ - { - "end_col": 76, - "end_line": 457, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" - }, - "parent_location": [ - { - "end_col": 59, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/contract_interface/IERC165/supportsInterface/2a1791e6eb36480300e6de9be3cf0c73e2bf0096fbe6995a9e4600da5d0240a4.cairo" - }, - "parent_location": [ - { - "end_col": 27, - "end_line": 8, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/introspection/erc165/IERC165.cairo" - }, - "parent_location": [ - { - "end_col": 66, - "end_line": 469, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" - }, - "start_col": 24, - "start_line": 469 - }, - "While trying to retrieve the implicit argument 'range_check_ptr' in:" - ], - "start_col": 10, - "start_line": 8 - }, - "While handling contract interface function:" - ], - "start_col": 44, - "start_line": 1 - }, - "While expanding the reference 'range_check_ptr' in:" - ], - "start_col": 26, - "start_line": 457 - }, - "While trying to update the implicit return value 'range_check_ptr' in:" - ], - "start_col": 10, - "start_line": 8 - }, - "While handling contract interface function:" - ], - "start_col": 44, - "start_line": 1 - } - }, - "1682": { - "accessible_scopes": [ - "openzeppelin.token.erc721.library", - "openzeppelin.token.erc721.library._check_onERC721Received" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 26, - "end_line": 454, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" - }, - "parent_location": [ - { - "end_col": 52, - "end_line": 469, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" - }, - "start_col": 50, - "start_line": 469 - }, - "While expanding the reference 'to' in:" - ], - "start_col": 18, - "start_line": 454 - } - }, - "1683": { - "accessible_scopes": [ - "openzeppelin.token.erc721.library", - "openzeppelin.token.erc721.library._check_onERC721Received" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 65, - "end_line": 469, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" - }, - "start_col": 54, - "start_line": 469 - } - }, - "1685": { - "accessible_scopes": [ - "openzeppelin.token.erc721.library", - "openzeppelin.token.erc721.library._check_onERC721Received" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 66, - "end_line": 469, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" - }, - "start_col": 24, - "start_line": 469 - } - }, - "1687": { - "accessible_scopes": [ - "openzeppelin.token.erc721.library", - "openzeppelin.token.erc721.library._check_onERC721Received" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 42, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/contract_interface/IERC165/supportsInterface/2a1791e6eb36480300e6de9be3cf0c73e2bf0096fbe6995a9e4600da5d0240a4.cairo" - }, - "parent_location": [ - { - "end_col": 27, - "end_line": 8, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/introspection/erc165/IERC165.cairo" - }, - "parent_location": [ - { - "end_col": 66, - "end_line": 469, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" - }, - "parent_location": [ - { - "end_col": 48, - "end_line": 453, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" - }, - "parent_location": [ - { - "end_col": 33, - "end_line": 470, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" - }, - "start_col": 5, - "start_line": 470 - }, - "While trying to retrieve the implicit argument 'syscall_ptr' in:" - ], - "start_col": 30, - "start_line": 453 - }, - "While expanding the reference 'syscall_ptr' in:" - ], - "start_col": 24, - "start_line": 469 - }, - "While trying to update the implicit return value 'syscall_ptr' in:" - ], - "start_col": 10, - "start_line": 8 - }, - "While handling contract interface function:" - ], - "start_col": 24, - "start_line": 1 - } - }, - "1688": { - "accessible_scopes": [ - "openzeppelin.token.erc721.library", - "openzeppelin.token.erc721.library._check_onERC721Received" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 76, - "end_line": 453, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" - }, - "parent_location": [ - { - "end_col": 76, - "end_line": 453, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" - }, - "parent_location": [ - { - "end_col": 33, - "end_line": 470, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" - }, - "start_col": 5, - "start_line": 470 - }, - "While trying to retrieve the implicit argument 'pedersen_ptr' in:" - ], - "start_col": 50, - "start_line": 453 - }, - "While expanding the reference 'pedersen_ptr' in:" - ], - "start_col": 50, - "start_line": 453 - } - }, - "1689": { - "accessible_scopes": [ - "openzeppelin.token.erc721.library", - "openzeppelin.token.erc721.library._check_onERC721Received" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 59, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/contract_interface/IERC165/supportsInterface/2a1791e6eb36480300e6de9be3cf0c73e2bf0096fbe6995a9e4600da5d0240a4.cairo" - }, - "parent_location": [ - { - "end_col": 27, - "end_line": 8, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/introspection/erc165/IERC165.cairo" - }, - "parent_location": [ - { - "end_col": 66, - "end_line": 469, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" - }, - "parent_location": [ - { - "end_col": 93, - "end_line": 453, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" - }, - "parent_location": [ - { - "end_col": 33, - "end_line": 470, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" - }, - "start_col": 5, - "start_line": 470 - }, - "While trying to retrieve the implicit argument 'range_check_ptr' in:" - ], - "start_col": 78, - "start_line": 453 - }, - "While expanding the reference 'range_check_ptr' in:" - ], - "start_col": 24, - "start_line": 469 - }, - "While trying to update the implicit return value 'range_check_ptr' in:" - ], - "start_col": 10, - "start_line": 8 - }, - "While handling contract interface function:" - ], - "start_col": 44, - "start_line": 1 - } - }, - "1690": { - "accessible_scopes": [ - "openzeppelin.token.erc721.library", - "openzeppelin.token.erc721.library._check_onERC721Received" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 20, - "end_line": 469, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" - }, - "parent_location": [ - { - "end_col": 31, - "end_line": 470, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" - }, - "start_col": 21, - "start_line": 470 - }, - "While expanding the reference 'is_account' in:" - ], - "start_col": 10, - "start_line": 469 - } - }, - "1691": { - "accessible_scopes": [ - "openzeppelin.token.erc721.library", - "openzeppelin.token.erc721.library._check_onERC721Received" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 33, - "end_line": 470, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" - }, - "start_col": 5, - "start_line": 470 - } - }, - "1692": { - "accessible_scopes": [ - "openzeppelin.token.erc721.enumerable.library", - "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable_all_tokens_len", - "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable_all_tokens_len.addr" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 41, - "end_line": 7, - "input_file": { - "filename": "autogen/starknet/storage_var/ERC721Enumerable_all_tokens_len/impl.cairo" - }, - "parent_location": [ - { - "end_col": 41, - "end_line": 7, - "input_file": { - "filename": "autogen/starknet/storage_var/ERC721Enumerable_all_tokens_len/decl.cairo" - }, - "parent_location": [ - { - "end_col": 26, - "end_line": 9, - "input_file": { - "filename": "autogen/starknet/storage_var/ERC721Enumerable_all_tokens_len/impl.cairo" - }, - "start_col": 9, - "start_line": 9 - }, - "While trying to retrieve the implicit argument 'pedersen_ptr' in:" - ], - "start_col": 15, - "start_line": 7 - }, - "While expanding the reference 'pedersen_ptr' in:" - ], - "start_col": 15, - "start_line": 7 - } - }, - "1693": { - "accessible_scopes": [ - "openzeppelin.token.erc721.enumerable.library", - "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable_all_tokens_len", - "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable_all_tokens_len.addr" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 58, - "end_line": 7, - "input_file": { - "filename": "autogen/starknet/storage_var/ERC721Enumerable_all_tokens_len/impl.cairo" - }, - "parent_location": [ - { - "end_col": 58, - "end_line": 7, - "input_file": { - "filename": "autogen/starknet/storage_var/ERC721Enumerable_all_tokens_len/decl.cairo" - }, - "parent_location": [ - { - "end_col": 26, - "end_line": 9, - "input_file": { - "filename": "autogen/starknet/storage_var/ERC721Enumerable_all_tokens_len/impl.cairo" - }, - "start_col": 9, - "start_line": 9 - }, - "While trying to retrieve the implicit argument 'range_check_ptr' in:" - ], - "start_col": 43, - "start_line": 7 - }, - "While expanding the reference 'range_check_ptr' in:" - ], - "start_col": 43, - "start_line": 7 - } - }, - "1694": { - "accessible_scopes": [ - "openzeppelin.token.erc721.enumerable.library", - "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable_all_tokens_len", - "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable_all_tokens_len.addr" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 95, - "end_line": 8, - "input_file": { - "filename": "autogen/starknet/storage_var/ERC721Enumerable_all_tokens_len/impl.cairo" - }, - "parent_location": [ - { - "end_col": 24, - "end_line": 9, - "input_file": { - "filename": "autogen/starknet/storage_var/ERC721Enumerable_all_tokens_len/impl.cairo" - }, - "start_col": 21, - "start_line": 9 - }, - "While expanding the reference 'res' in:" - ], - "start_col": 19, - "start_line": 8 - } - }, - "1696": { - "accessible_scopes": [ - "openzeppelin.token.erc721.enumerable.library", - "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable_all_tokens_len", - "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable_all_tokens_len.addr" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 26, - "end_line": 9, - "input_file": { - "filename": "autogen/starknet/storage_var/ERC721Enumerable_all_tokens_len/impl.cairo" - }, - "start_col": 9, - "start_line": 9 - } - }, - "1697": { - "accessible_scopes": [ - "openzeppelin.token.erc721.enumerable.library", - "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable_all_tokens_len", - "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable_all_tokens_len.read" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 61, - "end_line": 12, - "input_file": { - "filename": "autogen/starknet/storage_var/ERC721Enumerable_all_tokens_len/impl.cairo" - }, - "parent_location": [ - { - "end_col": 41, - "end_line": 7, - "input_file": { - "filename": "autogen/starknet/storage_var/ERC721Enumerable_all_tokens_len/decl.cairo" - }, - "parent_location": [ - { - "end_col": 36, - "end_line": 15, - "input_file": { - "filename": "autogen/starknet/storage_var/ERC721Enumerable_all_tokens_len/impl.cairo" - }, - "start_col": 30, - "start_line": 15 - }, - "While trying to retrieve the implicit argument 'pedersen_ptr' in:" - ], - "start_col": 15, - "start_line": 7 - }, - "While expanding the reference 'pedersen_ptr' in:" - ], - "start_col": 35, - "start_line": 12 - } - }, - "1698": { - "accessible_scopes": [ - "openzeppelin.token.erc721.enumerable.library", - "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable_all_tokens_len", - "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable_all_tokens_len.read" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 78, - "end_line": 12, - "input_file": { - "filename": "autogen/starknet/storage_var/ERC721Enumerable_all_tokens_len/impl.cairo" - }, - "parent_location": [ - { - "end_col": 58, - "end_line": 7, - "input_file": { - "filename": "autogen/starknet/storage_var/ERC721Enumerable_all_tokens_len/decl.cairo" - }, - "parent_location": [ - { - "end_col": 36, - "end_line": 15, - "input_file": { - "filename": "autogen/starknet/storage_var/ERC721Enumerable_all_tokens_len/impl.cairo" - }, - "start_col": 30, - "start_line": 15 - }, - "While trying to retrieve the implicit argument 'range_check_ptr' in:" - ], - "start_col": 43, - "start_line": 7 - }, - "While expanding the reference 'range_check_ptr' in:" - ], - "start_col": 63, - "start_line": 12 - } - }, - "1699": { - "accessible_scopes": [ - "openzeppelin.token.erc721.enumerable.library", - "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable_all_tokens_len", - "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable_all_tokens_len.read" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 36, - "end_line": 15, - "input_file": { - "filename": "autogen/starknet/storage_var/ERC721Enumerable_all_tokens_len/impl.cairo" - }, - "start_col": 30, - "start_line": 15 - } - }, - "1701": { - "accessible_scopes": [ - "openzeppelin.token.erc721.enumerable.library", - "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable_all_tokens_len", - "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable_all_tokens_len.read" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 33, - "end_line": 12, - "input_file": { - "filename": "autogen/starknet/storage_var/ERC721Enumerable_all_tokens_len/impl.cairo" - }, - "parent_location": [ - { - "end_col": 37, - "end_line": 352, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/starknet/common/syscalls.cairo" - }, - "parent_location": [ - { - "end_col": 75, - "end_line": 16, - "input_file": { - "filename": "autogen/starknet/storage_var/ERC721Enumerable_all_tokens_len/impl.cairo" - }, - "start_col": 37, - "start_line": 16 - }, - "While trying to retrieve the implicit argument 'syscall_ptr' in:" - ], - "start_col": 19, - "start_line": 352 - }, - "While expanding the reference 'syscall_ptr' in:" - ], - "start_col": 15, - "start_line": 12 - } - }, - "1702": { - "accessible_scopes": [ - "openzeppelin.token.erc721.enumerable.library", - "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable_all_tokens_len", - "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable_all_tokens_len.read" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 26, - "end_line": 15, - "input_file": { - "filename": "autogen/starknet/storage_var/ERC721Enumerable_all_tokens_len/impl.cairo" - }, - "parent_location": [ - { - "end_col": 70, - "end_line": 16, - "input_file": { - "filename": "autogen/starknet/storage_var/ERC721Enumerable_all_tokens_len/impl.cairo" - }, - "start_col": 58, - "start_line": 16 - }, - "While expanding the reference 'storage_addr' in:" - ], - "start_col": 14, - "start_line": 15 - } - }, - "1703": { - "accessible_scopes": [ - "openzeppelin.token.erc721.enumerable.library", - "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable_all_tokens_len", - "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable_all_tokens_len.read" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 75, - "end_line": 16, - "input_file": { - "filename": "autogen/starknet/storage_var/ERC721Enumerable_all_tokens_len/impl.cairo" - }, - "start_col": 37, - "start_line": 16 - } - }, - "1705": { - "accessible_scopes": [ - "openzeppelin.token.erc721.enumerable.library", - "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable_all_tokens_len", - "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable_all_tokens_len.read" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 37, - "end_line": 352, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/starknet/common/syscalls.cairo" - }, - "parent_location": [ - { - "end_col": 75, - "end_line": 16, - "input_file": { - "filename": "autogen/starknet/storage_var/ERC721Enumerable_all_tokens_len/impl.cairo" - }, - "parent_location": [ - { - "end_col": 37, - "end_line": 352, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/starknet/common/syscalls.cairo" - }, - "parent_location": [ - { - "end_col": 75, - "end_line": 17, - "input_file": { - "filename": "autogen/starknet/storage_var/ERC721Enumerable_all_tokens_len/impl.cairo" - }, - "start_col": 37, - "start_line": 17 - }, - "While trying to retrieve the implicit argument 'syscall_ptr' in:" - ], - "start_col": 19, - "start_line": 352 - }, - "While expanding the reference 'syscall_ptr' in:" - ], - "start_col": 37, - "start_line": 16 - }, - "While trying to update the implicit return value 'syscall_ptr' in:" - ], - "start_col": 19, - "start_line": 352 - } - }, - "1706": { - "accessible_scopes": [ - "openzeppelin.token.erc721.enumerable.library", - "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable_all_tokens_len", - "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable_all_tokens_len.read" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 74, - "end_line": 17, - "input_file": { - "filename": "autogen/starknet/storage_var/ERC721Enumerable_all_tokens_len/impl.cairo" - }, - "start_col": 58, - "start_line": 17 - } - }, - "1708": { - "accessible_scopes": [ - "openzeppelin.token.erc721.enumerable.library", - "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable_all_tokens_len", - "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable_all_tokens_len.read" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 75, - "end_line": 17, - "input_file": { - "filename": "autogen/starknet/storage_var/ERC721Enumerable_all_tokens_len/impl.cairo" - }, - "start_col": 37, - "start_line": 17 - } - }, - "1710": { - "accessible_scopes": [ - "openzeppelin.token.erc721.enumerable.library", - "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable_all_tokens_len", - "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable_all_tokens_len.read" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 37, - "end_line": 352, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/starknet/common/syscalls.cairo" - }, - "parent_location": [ - { - "end_col": 75, - "end_line": 17, - "input_file": { - "filename": "autogen/starknet/storage_var/ERC721Enumerable_all_tokens_len/impl.cairo" - }, - "parent_location": [ - { - "end_col": 42, - "end_line": 19, - "input_file": { - "filename": "autogen/starknet/storage_var/ERC721Enumerable_all_tokens_len/impl.cairo" - }, - "start_col": 31, - "start_line": 19 - }, - "While expanding the reference 'syscall_ptr' in:" - ], - "start_col": 37, - "start_line": 17 - }, - "While trying to update the implicit return value 'syscall_ptr' in:" - ], - "start_col": 19, - "start_line": 352 - } - }, - "1711": { - "accessible_scopes": [ - "openzeppelin.token.erc721.enumerable.library", - "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable_all_tokens_len", - "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable_all_tokens_len.read" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 41, - "end_line": 7, - "input_file": { - "filename": "autogen/starknet/storage_var/ERC721Enumerable_all_tokens_len/decl.cairo" - }, - "parent_location": [ - { - "end_col": 36, - "end_line": 15, - "input_file": { - "filename": "autogen/starknet/storage_var/ERC721Enumerable_all_tokens_len/impl.cairo" - }, - "parent_location": [ - { - "end_col": 44, - "end_line": 20, - "input_file": { - "filename": "autogen/starknet/storage_var/ERC721Enumerable_all_tokens_len/impl.cairo" - }, - "start_col": 32, - "start_line": 20 - }, - "While expanding the reference 'pedersen_ptr' in:" - ], - "start_col": 30, - "start_line": 15 - }, - "While trying to update the implicit return value 'pedersen_ptr' in:" - ], - "start_col": 15, - "start_line": 7 - } - }, - "1712": { - "accessible_scopes": [ - "openzeppelin.token.erc721.enumerable.library", - "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable_all_tokens_len", - "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable_all_tokens_len.read" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 58, - "end_line": 7, - "input_file": { - "filename": "autogen/starknet/storage_var/ERC721Enumerable_all_tokens_len/decl.cairo" - }, - "parent_location": [ - { - "end_col": 36, - "end_line": 15, - "input_file": { - "filename": "autogen/starknet/storage_var/ERC721Enumerable_all_tokens_len/impl.cairo" - }, - "parent_location": [ - { - "end_col": 50, - "end_line": 21, - "input_file": { - "filename": "autogen/starknet/storage_var/ERC721Enumerable_all_tokens_len/impl.cairo" - }, - "start_col": 35, - "start_line": 21 - }, - "While expanding the reference 'range_check_ptr' in:" - ], - "start_col": 30, - "start_line": 15 - }, - "While trying to update the implicit return value 'range_check_ptr' in:" - ], - "start_col": 43, - "start_line": 7 - } - }, - "1713": { - "accessible_scopes": [ - "openzeppelin.token.erc721.enumerable.library", - "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable_all_tokens_len", - "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable_all_tokens_len.read" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 33, - "end_line": 16, - "input_file": { - "filename": "autogen/starknet/storage_var/ERC721Enumerable_all_tokens_len/impl.cairo" - }, - "parent_location": [ - { - "end_col": 64, - "end_line": 22, - "input_file": { - "filename": "autogen/starknet/storage_var/ERC721Enumerable_all_tokens_len/impl.cairo" - }, - "start_col": 45, - "start_line": 22 - }, - "While expanding the reference '__storage_var_temp0' in:" - ], - "start_col": 14, - "start_line": 16 - } - }, - "1714": { - "accessible_scopes": [ - "openzeppelin.token.erc721.enumerable.library", - "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable_all_tokens_len", - "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable_all_tokens_len.read" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 33, - "end_line": 17, - "input_file": { - "filename": "autogen/starknet/storage_var/ERC721Enumerable_all_tokens_len/impl.cairo" - }, - "parent_location": [ - { - "end_col": 64, - "end_line": 23, - "input_file": { - "filename": "autogen/starknet/storage_var/ERC721Enumerable_all_tokens_len/impl.cairo" - }, - "start_col": 45, - "start_line": 23 - }, - "While expanding the reference '__storage_var_temp1' in:" - ], - "start_col": 14, - "start_line": 17 - } - }, - "1715": { - "accessible_scopes": [ - "openzeppelin.token.erc721.enumerable.library", - "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable_all_tokens_len", - "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable_all_tokens_len.read" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 58, - "end_line": 24, - "input_file": { - "filename": "autogen/starknet/storage_var/ERC721Enumerable_all_tokens_len/impl.cairo" - }, - "start_col": 9, - "start_line": 24 - } - }, - "1716": { - "accessible_scopes": [ - "openzeppelin.token.erc721.enumerable.library", - "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable_all_tokens_len", - "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable_all_tokens_len.write" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 62, - "end_line": 27, - "input_file": { - "filename": "autogen/starknet/storage_var/ERC721Enumerable_all_tokens_len/impl.cairo" - }, - "parent_location": [ - { - "end_col": 41, - "end_line": 7, - "input_file": { - "filename": "autogen/starknet/storage_var/ERC721Enumerable_all_tokens_len/decl.cairo" - }, - "parent_location": [ - { - "end_col": 36, - "end_line": 28, - "input_file": { - "filename": "autogen/starknet/storage_var/ERC721Enumerable_all_tokens_len/impl.cairo" - }, - "start_col": 30, - "start_line": 28 - }, - "While trying to retrieve the implicit argument 'pedersen_ptr' in:" - ], - "start_col": 15, - "start_line": 7 - }, - "While expanding the reference 'pedersen_ptr' in:" - ], - "start_col": 36, - "start_line": 27 - } - }, - "1717": { - "accessible_scopes": [ - "openzeppelin.token.erc721.enumerable.library", - "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable_all_tokens_len", - "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable_all_tokens_len.write" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 79, - "end_line": 27, - "input_file": { - "filename": "autogen/starknet/storage_var/ERC721Enumerable_all_tokens_len/impl.cairo" - }, - "parent_location": [ - { - "end_col": 58, - "end_line": 7, - "input_file": { - "filename": "autogen/starknet/storage_var/ERC721Enumerable_all_tokens_len/decl.cairo" - }, - "parent_location": [ - { - "end_col": 36, - "end_line": 28, - "input_file": { - "filename": "autogen/starknet/storage_var/ERC721Enumerable_all_tokens_len/impl.cairo" - }, - "start_col": 30, - "start_line": 28 - }, - "While trying to retrieve the implicit argument 'range_check_ptr' in:" - ], - "start_col": 43, - "start_line": 7 - }, - "While expanding the reference 'range_check_ptr' in:" - ], - "start_col": 64, - "start_line": 27 - } - }, - "1718": { - "accessible_scopes": [ - "openzeppelin.token.erc721.enumerable.library", - "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable_all_tokens_len", - "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable_all_tokens_len.write" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 36, - "end_line": 28, - "input_file": { - "filename": "autogen/starknet/storage_var/ERC721Enumerable_all_tokens_len/impl.cairo" - }, - "start_col": 30, - "start_line": 28 - } - }, - "1720": { - "accessible_scopes": [ - "openzeppelin.token.erc721.enumerable.library", - "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable_all_tokens_len", - "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable_all_tokens_len.write" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 34, - "end_line": 27, - "input_file": { - "filename": "autogen/starknet/storage_var/ERC721Enumerable_all_tokens_len/impl.cairo" - }, - "parent_location": [ - { - "end_col": 38, - "end_line": 370, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/starknet/common/syscalls.cairo" - }, - "parent_location": [ - { - "end_col": 80, - "end_line": 29, - "input_file": { - "filename": "autogen/starknet/storage_var/ERC721Enumerable_all_tokens_len/impl.cairo" - }, - "start_col": 9, - "start_line": 29 - }, - "While trying to retrieve the implicit argument 'syscall_ptr' in:" - ], - "start_col": 20, - "start_line": 370 - }, - "While expanding the reference 'syscall_ptr' in:" - ], - "start_col": 16, - "start_line": 27 - } - }, - "1721": { - "accessible_scopes": [ - "openzeppelin.token.erc721.enumerable.library", - "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable_all_tokens_len", - "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable_all_tokens_len.write" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 26, - "end_line": 28, - "input_file": { - "filename": "autogen/starknet/storage_var/ERC721Enumerable_all_tokens_len/impl.cairo" - }, - "parent_location": [ - { - "end_col": 43, - "end_line": 29, - "input_file": { - "filename": "autogen/starknet/storage_var/ERC721Enumerable_all_tokens_len/impl.cairo" - }, - "start_col": 31, - "start_line": 29 - }, - "While expanding the reference 'storage_addr' in:" - ], - "start_col": 14, - "start_line": 28 - } - }, - "1722": { - "accessible_scopes": [ - "openzeppelin.token.erc721.enumerable.library", - "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable_all_tokens_len", - "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable_all_tokens_len.write" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 79, - "end_line": 29, - "input_file": { - "filename": "autogen/starknet/storage_var/ERC721Enumerable_all_tokens_len/impl.cairo" - }, - "start_col": 55, - "start_line": 29 - } - }, - "1723": { - "accessible_scopes": [ - "openzeppelin.token.erc721.enumerable.library", - "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable_all_tokens_len", - "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable_all_tokens_len.write" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 80, - "end_line": 29, - "input_file": { - "filename": "autogen/starknet/storage_var/ERC721Enumerable_all_tokens_len/impl.cairo" - }, - "start_col": 9, - "start_line": 29 - } - }, - "1725": { - "accessible_scopes": [ - "openzeppelin.token.erc721.enumerable.library", - "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable_all_tokens_len", - "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable_all_tokens_len.write" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 47, - "end_line": 30, - "input_file": { - "filename": "autogen/starknet/storage_var/ERC721Enumerable_all_tokens_len/impl.cairo" - }, - "start_col": 31, - "start_line": 30 - } - }, - "1727": { - "accessible_scopes": [ - "openzeppelin.token.erc721.enumerable.library", - "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable_all_tokens_len", - "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable_all_tokens_len.write" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 79, - "end_line": 30, - "input_file": { - "filename": "autogen/starknet/storage_var/ERC721Enumerable_all_tokens_len/impl.cairo" - }, - "start_col": 55, - "start_line": 30 - } - }, - "1728": { - "accessible_scopes": [ - "openzeppelin.token.erc721.enumerable.library", - "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable_all_tokens_len", - "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable_all_tokens_len.write" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 80, - "end_line": 30, - "input_file": { - "filename": "autogen/starknet/storage_var/ERC721Enumerable_all_tokens_len/impl.cairo" - }, - "start_col": 9, - "start_line": 30 - } - }, - "1730": { - "accessible_scopes": [ - "openzeppelin.token.erc721.enumerable.library", - "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable_all_tokens_len", - "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable_all_tokens_len.write" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 41, - "end_line": 7, - "input_file": { - "filename": "autogen/starknet/storage_var/ERC721Enumerable_all_tokens_len/decl.cairo" - }, - "parent_location": [ - { - "end_col": 36, - "end_line": 28, - "input_file": { - "filename": "autogen/starknet/storage_var/ERC721Enumerable_all_tokens_len/impl.cairo" - }, - "parent_location": [ - { - "end_col": 62, - "end_line": 21, - "input_file": { - "filename": "autogen/starknet/storage_var/ERC721Enumerable_all_tokens_len/decl.cairo" - }, - "parent_location": [ - { - "end_col": 19, - "end_line": 31, - "input_file": { - "filename": "autogen/starknet/storage_var/ERC721Enumerable_all_tokens_len/impl.cairo" - }, - "start_col": 9, - "start_line": 31 - }, - "While trying to retrieve the implicit argument 'pedersen_ptr' in:" - ], - "start_col": 36, - "start_line": 21 - }, - "While expanding the reference 'pedersen_ptr' in:" - ], - "start_col": 30, - "start_line": 28 - }, - "While trying to update the implicit return value 'pedersen_ptr' in:" - ], - "start_col": 15, - "start_line": 7 - } - }, - "1731": { - "accessible_scopes": [ - "openzeppelin.token.erc721.enumerable.library", - "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable_all_tokens_len", - "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable_all_tokens_len.write" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 58, - "end_line": 7, - "input_file": { - "filename": "autogen/starknet/storage_var/ERC721Enumerable_all_tokens_len/decl.cairo" - }, - "parent_location": [ - { - "end_col": 36, - "end_line": 28, - "input_file": { - "filename": "autogen/starknet/storage_var/ERC721Enumerable_all_tokens_len/impl.cairo" - }, - "parent_location": [ - { - "end_col": 79, - "end_line": 21, - "input_file": { - "filename": "autogen/starknet/storage_var/ERC721Enumerable_all_tokens_len/decl.cairo" - }, - "parent_location": [ - { - "end_col": 19, - "end_line": 31, - "input_file": { - "filename": "autogen/starknet/storage_var/ERC721Enumerable_all_tokens_len/impl.cairo" - }, - "start_col": 9, - "start_line": 31 - }, - "While trying to retrieve the implicit argument 'range_check_ptr' in:" - ], - "start_col": 64, - "start_line": 21 - }, - "While expanding the reference 'range_check_ptr' in:" - ], - "start_col": 30, - "start_line": 28 - }, - "While trying to update the implicit return value 'range_check_ptr' in:" - ], - "start_col": 43, - "start_line": 7 - } - }, - "1732": { - "accessible_scopes": [ - "openzeppelin.token.erc721.enumerable.library", - "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable_all_tokens_len", - "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable_all_tokens_len.write" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 19, - "end_line": 31, - "input_file": { - "filename": "autogen/starknet/storage_var/ERC721Enumerable_all_tokens_len/impl.cairo" - }, - "start_col": 9, - "start_line": 31 - } - }, - "1733": { - "accessible_scopes": [ - "openzeppelin.token.erc721.enumerable.library", - "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable_all_tokens", - "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable_all_tokens.addr" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 41, - "end_line": 7, - "input_file": { - "filename": "autogen/starknet/storage_var/ERC721Enumerable_all_tokens/impl.cairo" - }, - "parent_location": [ - { - "end_col": 48, - "end_line": 9, - "input_file": { - "filename": "autogen/starknet/storage_var/ERC721Enumerable_all_tokens/impl.cairo" - }, - "start_col": 36, - "start_line": 9 - }, - "While expanding the reference 'pedersen_ptr' in:" - ], - "start_col": 15, - "start_line": 7 - } - }, - "1734": { - "accessible_scopes": [ - "openzeppelin.token.erc721.enumerable.library", - "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable_all_tokens", - "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable_all_tokens.addr" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 94, - "end_line": 8, - "input_file": { - "filename": "autogen/starknet/storage_var/ERC721Enumerable_all_tokens/impl.cairo" - }, - "parent_location": [ - { - "end_col": 53, - "end_line": 9, - "input_file": { - "filename": "autogen/starknet/storage_var/ERC721Enumerable_all_tokens/impl.cairo" - }, - "start_col": 50, - "start_line": 9 - }, - "While expanding the reference 'res' in:" - ], - "start_col": 19, - "start_line": 8 - } - }, - "1736": { - "accessible_scopes": [ - "openzeppelin.token.erc721.enumerable.library", - "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable_all_tokens", - "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable_all_tokens.addr" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 77, - "end_line": 9, - "input_file": { - "filename": "autogen/starknet/storage_var/ERC721Enumerable_all_tokens/impl.cairo" - }, - "start_col": 55, - "start_line": 9 - } - }, - "1737": { - "accessible_scopes": [ - "openzeppelin.token.erc721.enumerable.library", - "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable_all_tokens", - "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable_all_tokens.addr" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 78, - "end_line": 9, - "input_file": { - "filename": "autogen/starknet/storage_var/ERC721Enumerable_all_tokens/impl.cairo" - }, - "start_col": 21, - "start_line": 9 - } - }, - "1739": { - "accessible_scopes": [ - "openzeppelin.token.erc721.enumerable.library", - "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable_all_tokens", - "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable_all_tokens.addr" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 77, - "end_line": 10, - "input_file": { - "filename": "autogen/starknet/storage_var/ERC721Enumerable_all_tokens/impl.cairo" - }, - "start_col": 55, - "start_line": 10 - } - }, - "1740": { - "accessible_scopes": [ - "openzeppelin.token.erc721.enumerable.library", - "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable_all_tokens", - "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable_all_tokens.addr" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 78, - "end_line": 10, - "input_file": { - "filename": "autogen/starknet/storage_var/ERC721Enumerable_all_tokens/impl.cairo" - }, - "start_col": 21, - "start_line": 10 - } - }, - "1742": { - "accessible_scopes": [ - "openzeppelin.token.erc721.enumerable.library", - "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable_all_tokens", - "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable_all_tokens.addr" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 58, - "end_line": 7, - "input_file": { - "filename": "autogen/starknet/storage_var/ERC721Enumerable_all_tokens/impl.cairo" - }, - "parent_location": [ - { - "end_col": 39, - "end_line": 12, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/starknet/common/storage.cairo" - }, - "parent_location": [ - { - "end_col": 48, - "end_line": 11, - "input_file": { - "filename": "autogen/starknet/storage_var/ERC721Enumerable_all_tokens/impl.cairo" - }, - "start_col": 21, - "start_line": 11 - }, - "While trying to retrieve the implicit argument 'range_check_ptr' in:" - ], - "start_col": 24, - "start_line": 12 - }, - "While expanding the reference 'range_check_ptr' in:" - ], - "start_col": 43, - "start_line": 7 - } - }, - "1743": { - "accessible_scopes": [ - "openzeppelin.token.erc721.enumerable.library", - "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable_all_tokens", - "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable_all_tokens.addr" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 17, - "end_line": 10, - "input_file": { - "filename": "autogen/starknet/storage_var/ERC721Enumerable_all_tokens/impl.cairo" - }, - "parent_location": [ - { - "end_col": 47, - "end_line": 11, - "input_file": { - "filename": "autogen/starknet/storage_var/ERC721Enumerable_all_tokens/impl.cairo" - }, - "start_col": 44, - "start_line": 11 - }, - "While expanding the reference 'res' in:" - ], - "start_col": 14, - "start_line": 10 - } - }, - "1744": { - "accessible_scopes": [ - "openzeppelin.token.erc721.enumerable.library", - "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable_all_tokens", - "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable_all_tokens.addr" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 48, - "end_line": 11, - "input_file": { - "filename": "autogen/starknet/storage_var/ERC721Enumerable_all_tokens/impl.cairo" - }, - "start_col": 21, - "start_line": 11 - } - }, - "1746": { - "accessible_scopes": [ - "openzeppelin.token.erc721.enumerable.library", - "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable_all_tokens", - "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable_all_tokens.addr" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 48, - "end_line": 10, - "input_file": { - "filename": "autogen/starknet/storage_var/ERC721Enumerable_all_tokens/impl.cairo" - }, - "parent_location": [ - { - "end_col": 41, - "end_line": 7, - "input_file": { - "filename": "autogen/starknet/storage_var/ERC721Enumerable_all_tokens/decl.cairo" - }, - "parent_location": [ - { - "end_col": 26, - "end_line": 12, - "input_file": { - "filename": "autogen/starknet/storage_var/ERC721Enumerable_all_tokens/impl.cairo" - }, - "start_col": 9, - "start_line": 12 - }, - "While trying to retrieve the implicit argument 'pedersen_ptr' in:" - ], - "start_col": 15, - "start_line": 7 - }, - "While expanding the reference 'pedersen_ptr' in:" - ], - "start_col": 36, - "start_line": 10 - } - }, - "1747": { - "accessible_scopes": [ - "openzeppelin.token.erc721.enumerable.library", - "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable_all_tokens", - "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable_all_tokens.addr" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 39, - "end_line": 12, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/starknet/common/storage.cairo" - }, - "parent_location": [ - { - "end_col": 48, - "end_line": 11, - "input_file": { - "filename": "autogen/starknet/storage_var/ERC721Enumerable_all_tokens/impl.cairo" - }, - "parent_location": [ - { - "end_col": 58, - "end_line": 7, - "input_file": { - "filename": "autogen/starknet/storage_var/ERC721Enumerable_all_tokens/decl.cairo" - }, - "parent_location": [ - { - "end_col": 26, - "end_line": 12, - "input_file": { - "filename": "autogen/starknet/storage_var/ERC721Enumerable_all_tokens/impl.cairo" - }, - "start_col": 9, - "start_line": 12 - }, - "While trying to retrieve the implicit argument 'range_check_ptr' in:" - ], - "start_col": 43, - "start_line": 7 - }, - "While expanding the reference 'range_check_ptr' in:" - ], - "start_col": 21, - "start_line": 11 - }, - "While trying to update the implicit return value 'range_check_ptr' in:" - ], - "start_col": 24, - "start_line": 12 - } - }, - "1748": { - "accessible_scopes": [ - "openzeppelin.token.erc721.enumerable.library", - "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable_all_tokens", - "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable_all_tokens.addr" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 17, - "end_line": 11, - "input_file": { - "filename": "autogen/starknet/storage_var/ERC721Enumerable_all_tokens/impl.cairo" - }, - "parent_location": [ - { - "end_col": 24, - "end_line": 12, - "input_file": { - "filename": "autogen/starknet/storage_var/ERC721Enumerable_all_tokens/impl.cairo" - }, - "start_col": 21, - "start_line": 12 - }, - "While expanding the reference 'res' in:" - ], - "start_col": 14, - "start_line": 11 - } - }, - "1749": { - "accessible_scopes": [ - "openzeppelin.token.erc721.enumerable.library", - "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable_all_tokens", - "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable_all_tokens.addr" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 26, - "end_line": 12, - "input_file": { - "filename": "autogen/starknet/storage_var/ERC721Enumerable_all_tokens/impl.cairo" - }, - "start_col": 9, - "start_line": 12 - } - }, - "1750": { - "accessible_scopes": [ - "openzeppelin.token.erc721.enumerable.library", - "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable_all_tokens", - "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable_all_tokens.read" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 61, - "end_line": 15, - "input_file": { - "filename": "autogen/starknet/storage_var/ERC721Enumerable_all_tokens/impl.cairo" - }, - "parent_location": [ - { - "end_col": 41, - "end_line": 7, - "input_file": { - "filename": "autogen/starknet/storage_var/ERC721Enumerable_all_tokens/decl.cairo" - }, - "parent_location": [ - { - "end_col": 41, - "end_line": 18, - "input_file": { - "filename": "autogen/starknet/storage_var/ERC721Enumerable_all_tokens/impl.cairo" - }, - "start_col": 30, - "start_line": 18 - }, - "While trying to retrieve the implicit argument 'pedersen_ptr' in:" - ], - "start_col": 15, - "start_line": 7 - }, - "While expanding the reference 'pedersen_ptr' in:" - ], - "start_col": 35, - "start_line": 15 - } - }, - "1751": { - "accessible_scopes": [ - "openzeppelin.token.erc721.enumerable.library", - "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable_all_tokens", - "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable_all_tokens.read" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 78, - "end_line": 15, - "input_file": { - "filename": "autogen/starknet/storage_var/ERC721Enumerable_all_tokens/impl.cairo" - }, - "parent_location": [ - { - "end_col": 58, - "end_line": 7, - "input_file": { - "filename": "autogen/starknet/storage_var/ERC721Enumerable_all_tokens/decl.cairo" - }, - "parent_location": [ - { - "end_col": 41, - "end_line": 18, - "input_file": { - "filename": "autogen/starknet/storage_var/ERC721Enumerable_all_tokens/impl.cairo" - }, - "start_col": 30, - "start_line": 18 - }, - "While trying to retrieve the implicit argument 'range_check_ptr' in:" - ], - "start_col": 43, - "start_line": 7 - }, - "While expanding the reference 'range_check_ptr' in:" - ], - "start_col": 63, - "start_line": 15 - } - }, - "1752": { - "accessible_scopes": [ - "openzeppelin.token.erc721.enumerable.library", - "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable_all_tokens", - "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable_all_tokens.read" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 94, - "end_line": 15, - "input_file": { - "filename": "autogen/starknet/storage_var/ERC721Enumerable_all_tokens/impl.cairo" - }, - "parent_location": [ - { - "end_col": 40, - "end_line": 18, - "input_file": { - "filename": "autogen/starknet/storage_var/ERC721Enumerable_all_tokens/impl.cairo" - }, - "start_col": 35, - "start_line": 18 - }, - "While expanding the reference 'index' in:" - ], - "start_col": 80, - "start_line": 15 - } - }, - "1753": { - "accessible_scopes": [ - "openzeppelin.token.erc721.enumerable.library", - "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable_all_tokens", - "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable_all_tokens.read" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 94, - "end_line": 15, - "input_file": { - "filename": "autogen/starknet/storage_var/ERC721Enumerable_all_tokens/impl.cairo" - }, - "parent_location": [ - { - "end_col": 40, - "end_line": 18, - "input_file": { - "filename": "autogen/starknet/storage_var/ERC721Enumerable_all_tokens/impl.cairo" - }, - "start_col": 35, - "start_line": 18 - }, - "While expanding the reference 'index' in:" - ], - "start_col": 80, - "start_line": 15 - } - }, - "1754": { - "accessible_scopes": [ - "openzeppelin.token.erc721.enumerable.library", - "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable_all_tokens", - "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable_all_tokens.read" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 41, - "end_line": 18, - "input_file": { - "filename": "autogen/starknet/storage_var/ERC721Enumerable_all_tokens/impl.cairo" - }, - "start_col": 30, - "start_line": 18 - } - }, - "1756": { - "accessible_scopes": [ - "openzeppelin.token.erc721.enumerable.library", - "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable_all_tokens", - "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable_all_tokens.read" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 33, - "end_line": 15, - "input_file": { - "filename": "autogen/starknet/storage_var/ERC721Enumerable_all_tokens/impl.cairo" - }, - "parent_location": [ - { - "end_col": 37, - "end_line": 352, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/starknet/common/syscalls.cairo" - }, - "parent_location": [ - { - "end_col": 75, - "end_line": 19, - "input_file": { - "filename": "autogen/starknet/storage_var/ERC721Enumerable_all_tokens/impl.cairo" - }, - "start_col": 37, - "start_line": 19 - }, - "While trying to retrieve the implicit argument 'syscall_ptr' in:" - ], - "start_col": 19, - "start_line": 352 - }, - "While expanding the reference 'syscall_ptr' in:" - ], - "start_col": 15, - "start_line": 15 - } - }, - "1757": { - "accessible_scopes": [ - "openzeppelin.token.erc721.enumerable.library", - "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable_all_tokens", - "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable_all_tokens.read" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 26, - "end_line": 18, - "input_file": { - "filename": "autogen/starknet/storage_var/ERC721Enumerable_all_tokens/impl.cairo" - }, - "parent_location": [ - { - "end_col": 70, - "end_line": 19, - "input_file": { - "filename": "autogen/starknet/storage_var/ERC721Enumerable_all_tokens/impl.cairo" - }, - "start_col": 58, - "start_line": 19 - }, - "While expanding the reference 'storage_addr' in:" - ], - "start_col": 14, - "start_line": 18 - } - }, - "1758": { - "accessible_scopes": [ - "openzeppelin.token.erc721.enumerable.library", - "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable_all_tokens", - "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable_all_tokens.read" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 75, - "end_line": 19, - "input_file": { - "filename": "autogen/starknet/storage_var/ERC721Enumerable_all_tokens/impl.cairo" - }, - "start_col": 37, - "start_line": 19 - } - }, - "1760": { - "accessible_scopes": [ - "openzeppelin.token.erc721.enumerable.library", - "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable_all_tokens", - "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable_all_tokens.read" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 37, - "end_line": 352, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/starknet/common/syscalls.cairo" - }, - "parent_location": [ - { - "end_col": 75, - "end_line": 19, - "input_file": { - "filename": "autogen/starknet/storage_var/ERC721Enumerable_all_tokens/impl.cairo" - }, - "parent_location": [ - { - "end_col": 37, - "end_line": 352, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/starknet/common/syscalls.cairo" - }, - "parent_location": [ - { - "end_col": 75, - "end_line": 20, - "input_file": { - "filename": "autogen/starknet/storage_var/ERC721Enumerable_all_tokens/impl.cairo" - }, - "start_col": 37, - "start_line": 20 - }, - "While trying to retrieve the implicit argument 'syscall_ptr' in:" - ], - "start_col": 19, - "start_line": 352 - }, - "While expanding the reference 'syscall_ptr' in:" - ], - "start_col": 37, - "start_line": 19 - }, - "While trying to update the implicit return value 'syscall_ptr' in:" - ], - "start_col": 19, - "start_line": 352 - } - }, - "1761": { - "accessible_scopes": [ - "openzeppelin.token.erc721.enumerable.library", - "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable_all_tokens", - "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable_all_tokens.read" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 74, - "end_line": 20, - "input_file": { - "filename": "autogen/starknet/storage_var/ERC721Enumerable_all_tokens/impl.cairo" - }, - "start_col": 58, - "start_line": 20 - } - }, - "1763": { - "accessible_scopes": [ - "openzeppelin.token.erc721.enumerable.library", - "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable_all_tokens", - "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable_all_tokens.read" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 75, - "end_line": 20, - "input_file": { - "filename": "autogen/starknet/storage_var/ERC721Enumerable_all_tokens/impl.cairo" - }, - "start_col": 37, - "start_line": 20 - } - }, - "1765": { - "accessible_scopes": [ - "openzeppelin.token.erc721.enumerable.library", - "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable_all_tokens", - "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable_all_tokens.read" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 37, - "end_line": 352, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/starknet/common/syscalls.cairo" - }, - "parent_location": [ - { - "end_col": 75, - "end_line": 20, - "input_file": { - "filename": "autogen/starknet/storage_var/ERC721Enumerable_all_tokens/impl.cairo" - }, - "parent_location": [ - { - "end_col": 42, - "end_line": 22, - "input_file": { - "filename": "autogen/starknet/storage_var/ERC721Enumerable_all_tokens/impl.cairo" - }, - "start_col": 31, - "start_line": 22 - }, - "While expanding the reference 'syscall_ptr' in:" - ], - "start_col": 37, - "start_line": 20 - }, - "While trying to update the implicit return value 'syscall_ptr' in:" - ], - "start_col": 19, - "start_line": 352 - } - }, - "1766": { - "accessible_scopes": [ - "openzeppelin.token.erc721.enumerable.library", - "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable_all_tokens", - "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable_all_tokens.read" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 41, - "end_line": 7, - "input_file": { - "filename": "autogen/starknet/storage_var/ERC721Enumerable_all_tokens/decl.cairo" - }, - "parent_location": [ - { - "end_col": 41, - "end_line": 18, - "input_file": { - "filename": "autogen/starknet/storage_var/ERC721Enumerable_all_tokens/impl.cairo" - }, - "parent_location": [ - { - "end_col": 44, - "end_line": 23, - "input_file": { - "filename": "autogen/starknet/storage_var/ERC721Enumerable_all_tokens/impl.cairo" - }, - "start_col": 32, - "start_line": 23 - }, - "While expanding the reference 'pedersen_ptr' in:" - ], - "start_col": 30, - "start_line": 18 - }, - "While trying to update the implicit return value 'pedersen_ptr' in:" - ], - "start_col": 15, - "start_line": 7 - } - }, - "1767": { - "accessible_scopes": [ - "openzeppelin.token.erc721.enumerable.library", - "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable_all_tokens", - "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable_all_tokens.read" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 58, - "end_line": 7, - "input_file": { - "filename": "autogen/starknet/storage_var/ERC721Enumerable_all_tokens/decl.cairo" - }, - "parent_location": [ - { - "end_col": 41, - "end_line": 18, - "input_file": { - "filename": "autogen/starknet/storage_var/ERC721Enumerable_all_tokens/impl.cairo" - }, - "parent_location": [ - { - "end_col": 50, - "end_line": 24, - "input_file": { - "filename": "autogen/starknet/storage_var/ERC721Enumerable_all_tokens/impl.cairo" - }, - "start_col": 35, - "start_line": 24 - }, - "While expanding the reference 'range_check_ptr' in:" - ], - "start_col": 30, - "start_line": 18 - }, - "While trying to update the implicit return value 'range_check_ptr' in:" - ], - "start_col": 43, - "start_line": 7 - } - }, - "1768": { - "accessible_scopes": [ - "openzeppelin.token.erc721.enumerable.library", - "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable_all_tokens", - "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable_all_tokens.read" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 33, - "end_line": 19, - "input_file": { - "filename": "autogen/starknet/storage_var/ERC721Enumerable_all_tokens/impl.cairo" - }, - "parent_location": [ - { - "end_col": 64, - "end_line": 25, - "input_file": { - "filename": "autogen/starknet/storage_var/ERC721Enumerable_all_tokens/impl.cairo" - }, - "start_col": 45, - "start_line": 25 - }, - "While expanding the reference '__storage_var_temp0' in:" - ], - "start_col": 14, - "start_line": 19 - } - }, - "1769": { - "accessible_scopes": [ - "openzeppelin.token.erc721.enumerable.library", - "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable_all_tokens", - "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable_all_tokens.read" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 33, - "end_line": 20, - "input_file": { - "filename": "autogen/starknet/storage_var/ERC721Enumerable_all_tokens/impl.cairo" - }, - "parent_location": [ - { - "end_col": 64, - "end_line": 26, - "input_file": { - "filename": "autogen/starknet/storage_var/ERC721Enumerable_all_tokens/impl.cairo" - }, - "start_col": 45, - "start_line": 26 - }, - "While expanding the reference '__storage_var_temp1' in:" - ], - "start_col": 14, - "start_line": 20 - } - }, - "1770": { - "accessible_scopes": [ - "openzeppelin.token.erc721.enumerable.library", - "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable_all_tokens", - "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable_all_tokens.read" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 58, - "end_line": 27, - "input_file": { - "filename": "autogen/starknet/storage_var/ERC721Enumerable_all_tokens/impl.cairo" - }, - "start_col": 9, - "start_line": 27 - } - }, - "1771": { - "accessible_scopes": [ - "openzeppelin.token.erc721.enumerable.library", - "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable_all_tokens", - "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable_all_tokens.write" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 62, - "end_line": 30, - "input_file": { - "filename": "autogen/starknet/storage_var/ERC721Enumerable_all_tokens/impl.cairo" - }, - "parent_location": [ - { - "end_col": 41, - "end_line": 7, - "input_file": { - "filename": "autogen/starknet/storage_var/ERC721Enumerable_all_tokens/decl.cairo" - }, - "parent_location": [ - { - "end_col": 41, - "end_line": 33, - "input_file": { - "filename": "autogen/starknet/storage_var/ERC721Enumerable_all_tokens/impl.cairo" - }, - "start_col": 30, - "start_line": 33 - }, - "While trying to retrieve the implicit argument 'pedersen_ptr' in:" - ], - "start_col": 15, - "start_line": 7 - }, - "While expanding the reference 'pedersen_ptr' in:" - ], - "start_col": 36, - "start_line": 30 - } - }, - "1772": { - "accessible_scopes": [ - "openzeppelin.token.erc721.enumerable.library", - "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable_all_tokens", - "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable_all_tokens.write" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 79, - "end_line": 30, - "input_file": { - "filename": "autogen/starknet/storage_var/ERC721Enumerable_all_tokens/impl.cairo" - }, - "parent_location": [ - { - "end_col": 58, - "end_line": 7, - "input_file": { - "filename": "autogen/starknet/storage_var/ERC721Enumerable_all_tokens/decl.cairo" - }, - "parent_location": [ - { - "end_col": 41, - "end_line": 33, - "input_file": { - "filename": "autogen/starknet/storage_var/ERC721Enumerable_all_tokens/impl.cairo" - }, - "start_col": 30, - "start_line": 33 - }, - "While trying to retrieve the implicit argument 'range_check_ptr' in:" - ], - "start_col": 43, - "start_line": 7 - }, - "While expanding the reference 'range_check_ptr' in:" - ], - "start_col": 64, - "start_line": 30 - } - }, - "1773": { - "accessible_scopes": [ - "openzeppelin.token.erc721.enumerable.library", - "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable_all_tokens", - "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable_all_tokens.write" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 23, - "end_line": 31, - "input_file": { - "filename": "autogen/starknet/storage_var/ERC721Enumerable_all_tokens/impl.cairo" - }, - "parent_location": [ - { - "end_col": 40, - "end_line": 33, - "input_file": { - "filename": "autogen/starknet/storage_var/ERC721Enumerable_all_tokens/impl.cairo" - }, - "start_col": 35, - "start_line": 33 - }, - "While expanding the reference 'index' in:" - ], - "start_col": 9, - "start_line": 31 - } - }, - "1774": { - "accessible_scopes": [ - "openzeppelin.token.erc721.enumerable.library", - "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable_all_tokens", - "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable_all_tokens.write" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 23, - "end_line": 31, - "input_file": { - "filename": "autogen/starknet/storage_var/ERC721Enumerable_all_tokens/impl.cairo" - }, - "parent_location": [ - { - "end_col": 40, - "end_line": 33, - "input_file": { - "filename": "autogen/starknet/storage_var/ERC721Enumerable_all_tokens/impl.cairo" - }, - "start_col": 35, - "start_line": 33 - }, - "While expanding the reference 'index' in:" - ], - "start_col": 9, - "start_line": 31 - } - }, - "1775": { - "accessible_scopes": [ - "openzeppelin.token.erc721.enumerable.library", - "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable_all_tokens", - "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable_all_tokens.write" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 41, - "end_line": 33, - "input_file": { - "filename": "autogen/starknet/storage_var/ERC721Enumerable_all_tokens/impl.cairo" - }, - "start_col": 30, - "start_line": 33 - } - }, - "1777": { - "accessible_scopes": [ - "openzeppelin.token.erc721.enumerable.library", - "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable_all_tokens", - "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable_all_tokens.write" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 34, - "end_line": 30, - "input_file": { - "filename": "autogen/starknet/storage_var/ERC721Enumerable_all_tokens/impl.cairo" - }, - "parent_location": [ - { - "end_col": 38, - "end_line": 370, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/starknet/common/syscalls.cairo" - }, - "parent_location": [ - { - "end_col": 80, - "end_line": 34, - "input_file": { - "filename": "autogen/starknet/storage_var/ERC721Enumerable_all_tokens/impl.cairo" - }, - "start_col": 9, - "start_line": 34 - }, - "While trying to retrieve the implicit argument 'syscall_ptr' in:" - ], - "start_col": 20, - "start_line": 370 - }, - "While expanding the reference 'syscall_ptr' in:" - ], - "start_col": 16, - "start_line": 30 - } - }, - "1778": { - "accessible_scopes": [ - "openzeppelin.token.erc721.enumerable.library", - "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable_all_tokens", - "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable_all_tokens.write" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 26, - "end_line": 33, - "input_file": { - "filename": "autogen/starknet/storage_var/ERC721Enumerable_all_tokens/impl.cairo" - }, - "parent_location": [ - { - "end_col": 43, - "end_line": 34, - "input_file": { - "filename": "autogen/starknet/storage_var/ERC721Enumerable_all_tokens/impl.cairo" - }, - "start_col": 31, - "start_line": 34 - }, - "While expanding the reference 'storage_addr' in:" - ], - "start_col": 14, - "start_line": 33 - } - }, - "1779": { - "accessible_scopes": [ - "openzeppelin.token.erc721.enumerable.library", - "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable_all_tokens", - "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable_all_tokens.write" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 79, - "end_line": 34, - "input_file": { - "filename": "autogen/starknet/storage_var/ERC721Enumerable_all_tokens/impl.cairo" - }, - "start_col": 55, - "start_line": 34 - } - }, - "1780": { - "accessible_scopes": [ - "openzeppelin.token.erc721.enumerable.library", - "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable_all_tokens", - "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable_all_tokens.write" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 80, - "end_line": 34, - "input_file": { - "filename": "autogen/starknet/storage_var/ERC721Enumerable_all_tokens/impl.cairo" - }, - "start_col": 9, - "start_line": 34 - } - }, - "1782": { - "accessible_scopes": [ - "openzeppelin.token.erc721.enumerable.library", - "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable_all_tokens", - "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable_all_tokens.write" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 47, - "end_line": 35, - "input_file": { - "filename": "autogen/starknet/storage_var/ERC721Enumerable_all_tokens/impl.cairo" - }, - "start_col": 31, - "start_line": 35 - } - }, - "1784": { - "accessible_scopes": [ - "openzeppelin.token.erc721.enumerable.library", - "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable_all_tokens", - "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable_all_tokens.write" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 79, - "end_line": 35, - "input_file": { - "filename": "autogen/starknet/storage_var/ERC721Enumerable_all_tokens/impl.cairo" - }, - "start_col": 55, - "start_line": 35 - } - }, - "1785": { - "accessible_scopes": [ - "openzeppelin.token.erc721.enumerable.library", - "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable_all_tokens", - "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable_all_tokens.write" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 80, - "end_line": 35, - "input_file": { - "filename": "autogen/starknet/storage_var/ERC721Enumerable_all_tokens/impl.cairo" - }, - "start_col": 9, - "start_line": 35 - } - }, - "1787": { - "accessible_scopes": [ - "openzeppelin.token.erc721.enumerable.library", - "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable_all_tokens", - "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable_all_tokens.write" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 41, - "end_line": 7, - "input_file": { - "filename": "autogen/starknet/storage_var/ERC721Enumerable_all_tokens/decl.cairo" - }, - "parent_location": [ - { - "end_col": 41, - "end_line": 33, - "input_file": { - "filename": "autogen/starknet/storage_var/ERC721Enumerable_all_tokens/impl.cairo" - }, - "parent_location": [ - { - "end_col": 62, - "end_line": 21, - "input_file": { - "filename": "autogen/starknet/storage_var/ERC721Enumerable_all_tokens/decl.cairo" - }, - "parent_location": [ - { - "end_col": 19, - "end_line": 36, - "input_file": { - "filename": "autogen/starknet/storage_var/ERC721Enumerable_all_tokens/impl.cairo" - }, - "start_col": 9, - "start_line": 36 - }, - "While trying to retrieve the implicit argument 'pedersen_ptr' in:" - ], - "start_col": 36, - "start_line": 21 - }, - "While expanding the reference 'pedersen_ptr' in:" - ], - "start_col": 30, - "start_line": 33 - }, - "While trying to update the implicit return value 'pedersen_ptr' in:" - ], - "start_col": 15, - "start_line": 7 - } - }, - "1788": { - "accessible_scopes": [ - "openzeppelin.token.erc721.enumerable.library", - "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable_all_tokens", - "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable_all_tokens.write" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 58, - "end_line": 7, - "input_file": { - "filename": "autogen/starknet/storage_var/ERC721Enumerable_all_tokens/decl.cairo" - }, - "parent_location": [ - { - "end_col": 41, - "end_line": 33, - "input_file": { - "filename": "autogen/starknet/storage_var/ERC721Enumerable_all_tokens/impl.cairo" - }, - "parent_location": [ - { - "end_col": 79, - "end_line": 21, - "input_file": { - "filename": "autogen/starknet/storage_var/ERC721Enumerable_all_tokens/decl.cairo" - }, - "parent_location": [ - { - "end_col": 19, - "end_line": 36, - "input_file": { - "filename": "autogen/starknet/storage_var/ERC721Enumerable_all_tokens/impl.cairo" - }, - "start_col": 9, - "start_line": 36 - }, - "While trying to retrieve the implicit argument 'range_check_ptr' in:" - ], - "start_col": 64, - "start_line": 21 - }, - "While expanding the reference 'range_check_ptr' in:" - ], - "start_col": 30, - "start_line": 33 - }, - "While trying to update the implicit return value 'range_check_ptr' in:" - ], - "start_col": 43, - "start_line": 7 - } - }, - "1789": { - "accessible_scopes": [ - "openzeppelin.token.erc721.enumerable.library", - "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable_all_tokens", - "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable_all_tokens.write" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 19, - "end_line": 36, - "input_file": { - "filename": "autogen/starknet/storage_var/ERC721Enumerable_all_tokens/impl.cairo" - }, - "start_col": 9, - "start_line": 36 - } - }, - "1790": { - "accessible_scopes": [ - "openzeppelin.token.erc721.enumerable.library", - "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable_all_tokens_index", - "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable_all_tokens_index.addr" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 41, - "end_line": 7, - "input_file": { - "filename": "autogen/starknet/storage_var/ERC721Enumerable_all_tokens_index/impl.cairo" - }, - "parent_location": [ - { - "end_col": 48, - "end_line": 9, - "input_file": { - "filename": "autogen/starknet/storage_var/ERC721Enumerable_all_tokens_index/impl.cairo" - }, - "start_col": 36, - "start_line": 9 - }, - "While expanding the reference 'pedersen_ptr' in:" - ], - "start_col": 15, - "start_line": 7 - } - }, - "1791": { - "accessible_scopes": [ - "openzeppelin.token.erc721.enumerable.library", - "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable_all_tokens_index", - "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable_all_tokens_index.addr" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 95, - "end_line": 8, - "input_file": { - "filename": "autogen/starknet/storage_var/ERC721Enumerable_all_tokens_index/impl.cairo" - }, - "parent_location": [ - { - "end_col": 53, - "end_line": 9, - "input_file": { - "filename": "autogen/starknet/storage_var/ERC721Enumerable_all_tokens_index/impl.cairo" - }, - "start_col": 50, - "start_line": 9 - }, - "While expanding the reference 'res' in:" - ], - "start_col": 19, - "start_line": 8 - } - }, - "1793": { - "accessible_scopes": [ - "openzeppelin.token.erc721.enumerable.library", - "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable_all_tokens_index", - "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable_all_tokens_index.addr" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 80, - "end_line": 9, - "input_file": { - "filename": "autogen/starknet/storage_var/ERC721Enumerable_all_tokens_index/impl.cairo" - }, - "start_col": 55, - "start_line": 9 - } - }, - "1794": { - "accessible_scopes": [ - "openzeppelin.token.erc721.enumerable.library", - "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable_all_tokens_index", - "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable_all_tokens_index.addr" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 81, - "end_line": 9, - "input_file": { - "filename": "autogen/starknet/storage_var/ERC721Enumerable_all_tokens_index/impl.cairo" - }, - "start_col": 21, - "start_line": 9 - } - }, - "1796": { - "accessible_scopes": [ - "openzeppelin.token.erc721.enumerable.library", - "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable_all_tokens_index", - "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable_all_tokens_index.addr" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 80, - "end_line": 10, - "input_file": { - "filename": "autogen/starknet/storage_var/ERC721Enumerable_all_tokens_index/impl.cairo" - }, - "start_col": 55, - "start_line": 10 - } - }, - "1797": { - "accessible_scopes": [ - "openzeppelin.token.erc721.enumerable.library", - "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable_all_tokens_index", - "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable_all_tokens_index.addr" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 81, - "end_line": 10, - "input_file": { - "filename": "autogen/starknet/storage_var/ERC721Enumerable_all_tokens_index/impl.cairo" - }, - "start_col": 21, - "start_line": 10 - } - }, - "1799": { - "accessible_scopes": [ - "openzeppelin.token.erc721.enumerable.library", - "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable_all_tokens_index", - "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable_all_tokens_index.addr" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 58, - "end_line": 7, - "input_file": { - "filename": "autogen/starknet/storage_var/ERC721Enumerable_all_tokens_index/impl.cairo" - }, - "parent_location": [ - { - "end_col": 39, - "end_line": 12, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/starknet/common/storage.cairo" - }, - "parent_location": [ - { - "end_col": 48, - "end_line": 11, - "input_file": { - "filename": "autogen/starknet/storage_var/ERC721Enumerable_all_tokens_index/impl.cairo" - }, - "start_col": 21, - "start_line": 11 - }, - "While trying to retrieve the implicit argument 'range_check_ptr' in:" - ], - "start_col": 24, - "start_line": 12 - }, - "While expanding the reference 'range_check_ptr' in:" - ], - "start_col": 43, - "start_line": 7 - } - }, - "1800": { - "accessible_scopes": [ - "openzeppelin.token.erc721.enumerable.library", - "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable_all_tokens_index", - "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable_all_tokens_index.addr" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 17, - "end_line": 10, - "input_file": { - "filename": "autogen/starknet/storage_var/ERC721Enumerable_all_tokens_index/impl.cairo" - }, - "parent_location": [ - { - "end_col": 47, - "end_line": 11, - "input_file": { - "filename": "autogen/starknet/storage_var/ERC721Enumerable_all_tokens_index/impl.cairo" - }, - "start_col": 44, - "start_line": 11 - }, - "While expanding the reference 'res' in:" - ], - "start_col": 14, - "start_line": 10 - } - }, - "1801": { - "accessible_scopes": [ - "openzeppelin.token.erc721.enumerable.library", - "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable_all_tokens_index", - "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable_all_tokens_index.addr" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 48, - "end_line": 11, - "input_file": { - "filename": "autogen/starknet/storage_var/ERC721Enumerable_all_tokens_index/impl.cairo" - }, - "start_col": 21, - "start_line": 11 - } - }, - "1803": { - "accessible_scopes": [ - "openzeppelin.token.erc721.enumerable.library", - "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable_all_tokens_index", - "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable_all_tokens_index.addr" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 48, - "end_line": 10, - "input_file": { - "filename": "autogen/starknet/storage_var/ERC721Enumerable_all_tokens_index/impl.cairo" - }, - "parent_location": [ - { - "end_col": 41, - "end_line": 7, - "input_file": { - "filename": "autogen/starknet/storage_var/ERC721Enumerable_all_tokens_index/decl.cairo" - }, - "parent_location": [ - { - "end_col": 26, - "end_line": 12, - "input_file": { - "filename": "autogen/starknet/storage_var/ERC721Enumerable_all_tokens_index/impl.cairo" - }, - "start_col": 9, - "start_line": 12 - }, - "While trying to retrieve the implicit argument 'pedersen_ptr' in:" - ], - "start_col": 15, - "start_line": 7 - }, - "While expanding the reference 'pedersen_ptr' in:" - ], - "start_col": 36, - "start_line": 10 - } - }, - "1804": { - "accessible_scopes": [ - "openzeppelin.token.erc721.enumerable.library", - "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable_all_tokens_index", - "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable_all_tokens_index.addr" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 39, - "end_line": 12, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/starknet/common/storage.cairo" - }, - "parent_location": [ - { - "end_col": 48, - "end_line": 11, - "input_file": { - "filename": "autogen/starknet/storage_var/ERC721Enumerable_all_tokens_index/impl.cairo" - }, - "parent_location": [ - { - "end_col": 58, - "end_line": 7, - "input_file": { - "filename": "autogen/starknet/storage_var/ERC721Enumerable_all_tokens_index/decl.cairo" - }, - "parent_location": [ - { - "end_col": 26, - "end_line": 12, - "input_file": { - "filename": "autogen/starknet/storage_var/ERC721Enumerable_all_tokens_index/impl.cairo" - }, - "start_col": 9, - "start_line": 12 - }, - "While trying to retrieve the implicit argument 'range_check_ptr' in:" - ], - "start_col": 43, - "start_line": 7 - }, - "While expanding the reference 'range_check_ptr' in:" - ], - "start_col": 21, - "start_line": 11 - }, - "While trying to update the implicit return value 'range_check_ptr' in:" - ], - "start_col": 24, - "start_line": 12 - } - }, - "1805": { - "accessible_scopes": [ - "openzeppelin.token.erc721.enumerable.library", - "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable_all_tokens_index", - "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable_all_tokens_index.addr" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 17, - "end_line": 11, - "input_file": { - "filename": "autogen/starknet/storage_var/ERC721Enumerable_all_tokens_index/impl.cairo" - }, - "parent_location": [ - { - "end_col": 24, - "end_line": 12, - "input_file": { - "filename": "autogen/starknet/storage_var/ERC721Enumerable_all_tokens_index/impl.cairo" - }, - "start_col": 21, - "start_line": 12 - }, - "While expanding the reference 'res' in:" - ], - "start_col": 14, - "start_line": 11 - } - }, - "1806": { - "accessible_scopes": [ - "openzeppelin.token.erc721.enumerable.library", - "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable_all_tokens_index", - "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable_all_tokens_index.addr" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 26, - "end_line": 12, - "input_file": { - "filename": "autogen/starknet/storage_var/ERC721Enumerable_all_tokens_index/impl.cairo" - }, - "start_col": 9, - "start_line": 12 - } - }, - "1807": { - "accessible_scopes": [ - "openzeppelin.token.erc721.enumerable.library", - "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable_all_tokens_index", - "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable_all_tokens_index.read" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 61, - "end_line": 15, - "input_file": { - "filename": "autogen/starknet/storage_var/ERC721Enumerable_all_tokens_index/impl.cairo" - }, - "parent_location": [ - { - "end_col": 41, - "end_line": 7, - "input_file": { - "filename": "autogen/starknet/storage_var/ERC721Enumerable_all_tokens_index/decl.cairo" - }, - "parent_location": [ - { - "end_col": 44, - "end_line": 18, - "input_file": { - "filename": "autogen/starknet/storage_var/ERC721Enumerable_all_tokens_index/impl.cairo" - }, - "start_col": 30, - "start_line": 18 - }, - "While trying to retrieve the implicit argument 'pedersen_ptr' in:" - ], - "start_col": 15, - "start_line": 7 - }, - "While expanding the reference 'pedersen_ptr' in:" - ], - "start_col": 35, - "start_line": 15 - } - }, - "1808": { - "accessible_scopes": [ - "openzeppelin.token.erc721.enumerable.library", - "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable_all_tokens_index", - "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable_all_tokens_index.read" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 78, - "end_line": 15, - "input_file": { - "filename": "autogen/starknet/storage_var/ERC721Enumerable_all_tokens_index/impl.cairo" - }, - "parent_location": [ - { - "end_col": 58, - "end_line": 7, - "input_file": { - "filename": "autogen/starknet/storage_var/ERC721Enumerable_all_tokens_index/decl.cairo" - }, - "parent_location": [ - { - "end_col": 44, - "end_line": 18, - "input_file": { - "filename": "autogen/starknet/storage_var/ERC721Enumerable_all_tokens_index/impl.cairo" - }, - "start_col": 30, - "start_line": 18 - }, - "While trying to retrieve the implicit argument 'range_check_ptr' in:" - ], - "start_col": 43, - "start_line": 7 - }, - "While expanding the reference 'range_check_ptr' in:" - ], - "start_col": 63, - "start_line": 15 - } - }, - "1809": { - "accessible_scopes": [ - "openzeppelin.token.erc721.enumerable.library", - "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable_all_tokens_index", - "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable_all_tokens_index.read" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 26, - "end_line": 16, - "input_file": { - "filename": "autogen/starknet/storage_var/ERC721Enumerable_all_tokens_index/impl.cairo" - }, - "parent_location": [ - { - "end_col": 43, - "end_line": 18, - "input_file": { - "filename": "autogen/starknet/storage_var/ERC721Enumerable_all_tokens_index/impl.cairo" - }, - "start_col": 35, - "start_line": 18 - }, - "While expanding the reference 'token_id' in:" - ], - "start_col": 9, - "start_line": 16 - } - }, - "1810": { - "accessible_scopes": [ - "openzeppelin.token.erc721.enumerable.library", - "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable_all_tokens_index", - "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable_all_tokens_index.read" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 26, - "end_line": 16, - "input_file": { - "filename": "autogen/starknet/storage_var/ERC721Enumerable_all_tokens_index/impl.cairo" - }, - "parent_location": [ - { - "end_col": 43, - "end_line": 18, - "input_file": { - "filename": "autogen/starknet/storage_var/ERC721Enumerable_all_tokens_index/impl.cairo" - }, - "start_col": 35, - "start_line": 18 - }, - "While expanding the reference 'token_id' in:" - ], - "start_col": 9, - "start_line": 16 - } - }, - "1811": { - "accessible_scopes": [ - "openzeppelin.token.erc721.enumerable.library", - "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable_all_tokens_index", - "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable_all_tokens_index.read" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 44, - "end_line": 18, - "input_file": { - "filename": "autogen/starknet/storage_var/ERC721Enumerable_all_tokens_index/impl.cairo" - }, - "start_col": 30, - "start_line": 18 - } - }, - "1813": { - "accessible_scopes": [ - "openzeppelin.token.erc721.enumerable.library", - "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable_all_tokens_index", - "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable_all_tokens_index.read" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 33, - "end_line": 15, - "input_file": { - "filename": "autogen/starknet/storage_var/ERC721Enumerable_all_tokens_index/impl.cairo" - }, - "parent_location": [ - { - "end_col": 37, - "end_line": 352, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/starknet/common/syscalls.cairo" - }, - "parent_location": [ - { - "end_col": 75, - "end_line": 19, - "input_file": { - "filename": "autogen/starknet/storage_var/ERC721Enumerable_all_tokens_index/impl.cairo" - }, - "start_col": 37, - "start_line": 19 - }, - "While trying to retrieve the implicit argument 'syscall_ptr' in:" - ], - "start_col": 19, - "start_line": 352 - }, - "While expanding the reference 'syscall_ptr' in:" - ], - "start_col": 15, - "start_line": 15 - } - }, - "1814": { - "accessible_scopes": [ - "openzeppelin.token.erc721.enumerable.library", - "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable_all_tokens_index", - "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable_all_tokens_index.read" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 26, - "end_line": 18, - "input_file": { - "filename": "autogen/starknet/storage_var/ERC721Enumerable_all_tokens_index/impl.cairo" - }, - "parent_location": [ - { - "end_col": 70, - "end_line": 19, - "input_file": { - "filename": "autogen/starknet/storage_var/ERC721Enumerable_all_tokens_index/impl.cairo" - }, - "start_col": 58, - "start_line": 19 - }, - "While expanding the reference 'storage_addr' in:" - ], - "start_col": 14, - "start_line": 18 - } - }, - "1815": { - "accessible_scopes": [ - "openzeppelin.token.erc721.enumerable.library", - "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable_all_tokens_index", - "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable_all_tokens_index.read" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 75, - "end_line": 19, - "input_file": { - "filename": "autogen/starknet/storage_var/ERC721Enumerable_all_tokens_index/impl.cairo" - }, - "start_col": 37, - "start_line": 19 - } - }, - "1817": { - "accessible_scopes": [ - "openzeppelin.token.erc721.enumerable.library", - "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable_all_tokens_index", - "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable_all_tokens_index.read" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 37, - "end_line": 352, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/starknet/common/syscalls.cairo" - }, - "parent_location": [ - { - "end_col": 75, - "end_line": 19, - "input_file": { - "filename": "autogen/starknet/storage_var/ERC721Enumerable_all_tokens_index/impl.cairo" - }, - "parent_location": [ - { - "end_col": 37, - "end_line": 352, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/starknet/common/syscalls.cairo" - }, - "parent_location": [ - { - "end_col": 75, - "end_line": 20, - "input_file": { - "filename": "autogen/starknet/storage_var/ERC721Enumerable_all_tokens_index/impl.cairo" - }, - "start_col": 37, - "start_line": 20 - }, - "While trying to retrieve the implicit argument 'syscall_ptr' in:" - ], - "start_col": 19, - "start_line": 352 - }, - "While expanding the reference 'syscall_ptr' in:" - ], - "start_col": 37, - "start_line": 19 - }, - "While trying to update the implicit return value 'syscall_ptr' in:" - ], - "start_col": 19, - "start_line": 352 - } - }, - "1818": { - "accessible_scopes": [ - "openzeppelin.token.erc721.enumerable.library", - "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable_all_tokens_index", - "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable_all_tokens_index.read" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 74, - "end_line": 20, - "input_file": { - "filename": "autogen/starknet/storage_var/ERC721Enumerable_all_tokens_index/impl.cairo" - }, - "start_col": 58, - "start_line": 20 - } - }, - "1820": { - "accessible_scopes": [ - "openzeppelin.token.erc721.enumerable.library", - "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable_all_tokens_index", - "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable_all_tokens_index.read" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 75, - "end_line": 20, - "input_file": { - "filename": "autogen/starknet/storage_var/ERC721Enumerable_all_tokens_index/impl.cairo" - }, - "start_col": 37, - "start_line": 20 - } - }, - "1822": { - "accessible_scopes": [ - "openzeppelin.token.erc721.enumerable.library", - "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable_all_tokens_index", - "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable_all_tokens_index.read" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 37, - "end_line": 352, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/starknet/common/syscalls.cairo" - }, - "parent_location": [ - { - "end_col": 75, - "end_line": 20, - "input_file": { - "filename": "autogen/starknet/storage_var/ERC721Enumerable_all_tokens_index/impl.cairo" - }, - "parent_location": [ - { - "end_col": 42, - "end_line": 22, - "input_file": { - "filename": "autogen/starknet/storage_var/ERC721Enumerable_all_tokens_index/impl.cairo" - }, - "start_col": 31, - "start_line": 22 - }, - "While expanding the reference 'syscall_ptr' in:" - ], - "start_col": 37, - "start_line": 20 - }, - "While trying to update the implicit return value 'syscall_ptr' in:" - ], - "start_col": 19, - "start_line": 352 - } - }, - "1823": { - "accessible_scopes": [ - "openzeppelin.token.erc721.enumerable.library", - "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable_all_tokens_index", - "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable_all_tokens_index.read" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 41, - "end_line": 7, - "input_file": { - "filename": "autogen/starknet/storage_var/ERC721Enumerable_all_tokens_index/decl.cairo" - }, - "parent_location": [ - { - "end_col": 44, - "end_line": 18, - "input_file": { - "filename": "autogen/starknet/storage_var/ERC721Enumerable_all_tokens_index/impl.cairo" - }, - "parent_location": [ - { - "end_col": 44, - "end_line": 23, - "input_file": { - "filename": "autogen/starknet/storage_var/ERC721Enumerable_all_tokens_index/impl.cairo" - }, - "start_col": 32, - "start_line": 23 - }, - "While expanding the reference 'pedersen_ptr' in:" - ], - "start_col": 30, - "start_line": 18 - }, - "While trying to update the implicit return value 'pedersen_ptr' in:" - ], - "start_col": 15, - "start_line": 7 - } - }, - "1824": { - "accessible_scopes": [ - "openzeppelin.token.erc721.enumerable.library", - "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable_all_tokens_index", - "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable_all_tokens_index.read" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 58, - "end_line": 7, - "input_file": { - "filename": "autogen/starknet/storage_var/ERC721Enumerable_all_tokens_index/decl.cairo" - }, - "parent_location": [ - { - "end_col": 44, - "end_line": 18, - "input_file": { - "filename": "autogen/starknet/storage_var/ERC721Enumerable_all_tokens_index/impl.cairo" - }, - "parent_location": [ - { - "end_col": 50, - "end_line": 24, - "input_file": { - "filename": "autogen/starknet/storage_var/ERC721Enumerable_all_tokens_index/impl.cairo" - }, - "start_col": 35, - "start_line": 24 - }, - "While expanding the reference 'range_check_ptr' in:" - ], - "start_col": 30, - "start_line": 18 - }, - "While trying to update the implicit return value 'range_check_ptr' in:" - ], - "start_col": 43, - "start_line": 7 - } - }, - "1825": { - "accessible_scopes": [ - "openzeppelin.token.erc721.enumerable.library", - "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable_all_tokens_index", - "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable_all_tokens_index.read" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 33, - "end_line": 19, - "input_file": { - "filename": "autogen/starknet/storage_var/ERC721Enumerable_all_tokens_index/impl.cairo" - }, - "parent_location": [ - { - "end_col": 64, - "end_line": 25, - "input_file": { - "filename": "autogen/starknet/storage_var/ERC721Enumerable_all_tokens_index/impl.cairo" - }, - "start_col": 45, - "start_line": 25 - }, - "While expanding the reference '__storage_var_temp0' in:" - ], - "start_col": 14, - "start_line": 19 - } - }, - "1826": { - "accessible_scopes": [ - "openzeppelin.token.erc721.enumerable.library", - "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable_all_tokens_index", - "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable_all_tokens_index.read" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 33, - "end_line": 20, - "input_file": { - "filename": "autogen/starknet/storage_var/ERC721Enumerable_all_tokens_index/impl.cairo" - }, - "parent_location": [ - { - "end_col": 64, - "end_line": 26, - "input_file": { - "filename": "autogen/starknet/storage_var/ERC721Enumerable_all_tokens_index/impl.cairo" - }, - "start_col": 45, - "start_line": 26 - }, - "While expanding the reference '__storage_var_temp1' in:" - ], - "start_col": 14, - "start_line": 20 - } - }, - "1827": { - "accessible_scopes": [ - "openzeppelin.token.erc721.enumerable.library", - "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable_all_tokens_index", - "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable_all_tokens_index.read" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 58, - "end_line": 27, - "input_file": { - "filename": "autogen/starknet/storage_var/ERC721Enumerable_all_tokens_index/impl.cairo" - }, - "start_col": 9, - "start_line": 27 - } - }, - "1828": { - "accessible_scopes": [ - "openzeppelin.token.erc721.enumerable.library", - "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable_all_tokens_index", - "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable_all_tokens_index.write" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 62, - "end_line": 30, - "input_file": { - "filename": "autogen/starknet/storage_var/ERC721Enumerable_all_tokens_index/impl.cairo" - }, - "parent_location": [ - { - "end_col": 41, - "end_line": 7, - "input_file": { - "filename": "autogen/starknet/storage_var/ERC721Enumerable_all_tokens_index/decl.cairo" - }, - "parent_location": [ - { - "end_col": 44, - "end_line": 33, - "input_file": { - "filename": "autogen/starknet/storage_var/ERC721Enumerable_all_tokens_index/impl.cairo" - }, - "start_col": 30, - "start_line": 33 - }, - "While trying to retrieve the implicit argument 'pedersen_ptr' in:" - ], - "start_col": 15, - "start_line": 7 - }, - "While expanding the reference 'pedersen_ptr' in:" - ], - "start_col": 36, - "start_line": 30 - } - }, - "1829": { - "accessible_scopes": [ - "openzeppelin.token.erc721.enumerable.library", - "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable_all_tokens_index", - "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable_all_tokens_index.write" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 79, - "end_line": 30, - "input_file": { - "filename": "autogen/starknet/storage_var/ERC721Enumerable_all_tokens_index/impl.cairo" - }, - "parent_location": [ - { - "end_col": 58, - "end_line": 7, - "input_file": { - "filename": "autogen/starknet/storage_var/ERC721Enumerable_all_tokens_index/decl.cairo" - }, - "parent_location": [ - { - "end_col": 44, - "end_line": 33, - "input_file": { - "filename": "autogen/starknet/storage_var/ERC721Enumerable_all_tokens_index/impl.cairo" - }, - "start_col": 30, - "start_line": 33 - }, - "While trying to retrieve the implicit argument 'range_check_ptr' in:" - ], - "start_col": 43, - "start_line": 7 - }, - "While expanding the reference 'range_check_ptr' in:" - ], - "start_col": 64, - "start_line": 30 - } - }, - "1830": { - "accessible_scopes": [ - "openzeppelin.token.erc721.enumerable.library", - "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable_all_tokens_index", - "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable_all_tokens_index.write" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 26, - "end_line": 31, - "input_file": { - "filename": "autogen/starknet/storage_var/ERC721Enumerable_all_tokens_index/impl.cairo" - }, - "parent_location": [ - { - "end_col": 43, - "end_line": 33, - "input_file": { - "filename": "autogen/starknet/storage_var/ERC721Enumerable_all_tokens_index/impl.cairo" - }, - "start_col": 35, - "start_line": 33 - }, - "While expanding the reference 'token_id' in:" - ], - "start_col": 9, - "start_line": 31 - } - }, - "1831": { - "accessible_scopes": [ - "openzeppelin.token.erc721.enumerable.library", - "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable_all_tokens_index", - "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable_all_tokens_index.write" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 26, - "end_line": 31, - "input_file": { - "filename": "autogen/starknet/storage_var/ERC721Enumerable_all_tokens_index/impl.cairo" - }, - "parent_location": [ - { - "end_col": 43, - "end_line": 33, - "input_file": { - "filename": "autogen/starknet/storage_var/ERC721Enumerable_all_tokens_index/impl.cairo" - }, - "start_col": 35, - "start_line": 33 - }, - "While expanding the reference 'token_id' in:" - ], - "start_col": 9, - "start_line": 31 - } - }, - "1832": { - "accessible_scopes": [ - "openzeppelin.token.erc721.enumerable.library", - "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable_all_tokens_index", - "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable_all_tokens_index.write" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 44, - "end_line": 33, - "input_file": { - "filename": "autogen/starknet/storage_var/ERC721Enumerable_all_tokens_index/impl.cairo" - }, - "start_col": 30, - "start_line": 33 - } - }, - "1834": { - "accessible_scopes": [ - "openzeppelin.token.erc721.enumerable.library", - "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable_all_tokens_index", - "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable_all_tokens_index.write" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 34, - "end_line": 30, - "input_file": { - "filename": "autogen/starknet/storage_var/ERC721Enumerable_all_tokens_index/impl.cairo" - }, - "parent_location": [ - { - "end_col": 38, - "end_line": 370, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/starknet/common/syscalls.cairo" - }, - "parent_location": [ - { - "end_col": 80, - "end_line": 34, - "input_file": { - "filename": "autogen/starknet/storage_var/ERC721Enumerable_all_tokens_index/impl.cairo" - }, - "start_col": 9, - "start_line": 34 - }, - "While trying to retrieve the implicit argument 'syscall_ptr' in:" - ], - "start_col": 20, - "start_line": 370 - }, - "While expanding the reference 'syscall_ptr' in:" - ], - "start_col": 16, - "start_line": 30 - } - }, - "1835": { - "accessible_scopes": [ - "openzeppelin.token.erc721.enumerable.library", - "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable_all_tokens_index", - "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable_all_tokens_index.write" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 26, - "end_line": 33, - "input_file": { - "filename": "autogen/starknet/storage_var/ERC721Enumerable_all_tokens_index/impl.cairo" - }, - "parent_location": [ - { - "end_col": 43, - "end_line": 34, - "input_file": { - "filename": "autogen/starknet/storage_var/ERC721Enumerable_all_tokens_index/impl.cairo" - }, - "start_col": 31, - "start_line": 34 - }, - "While expanding the reference 'storage_addr' in:" - ], - "start_col": 14, - "start_line": 33 - } - }, - "1836": { - "accessible_scopes": [ - "openzeppelin.token.erc721.enumerable.library", - "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable_all_tokens_index", - "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable_all_tokens_index.write" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 79, - "end_line": 34, - "input_file": { - "filename": "autogen/starknet/storage_var/ERC721Enumerable_all_tokens_index/impl.cairo" - }, - "start_col": 55, - "start_line": 34 - } - }, - "1837": { - "accessible_scopes": [ - "openzeppelin.token.erc721.enumerable.library", - "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable_all_tokens_index", - "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable_all_tokens_index.write" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 80, - "end_line": 34, - "input_file": { - "filename": "autogen/starknet/storage_var/ERC721Enumerable_all_tokens_index/impl.cairo" - }, - "start_col": 9, - "start_line": 34 - } - }, - "1839": { - "accessible_scopes": [ - "openzeppelin.token.erc721.enumerable.library", - "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable_all_tokens_index", - "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable_all_tokens_index.write" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 47, - "end_line": 35, - "input_file": { - "filename": "autogen/starknet/storage_var/ERC721Enumerable_all_tokens_index/impl.cairo" - }, - "start_col": 31, - "start_line": 35 - } - }, - "1841": { - "accessible_scopes": [ - "openzeppelin.token.erc721.enumerable.library", - "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable_all_tokens_index", - "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable_all_tokens_index.write" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 79, - "end_line": 35, - "input_file": { - "filename": "autogen/starknet/storage_var/ERC721Enumerable_all_tokens_index/impl.cairo" - }, - "start_col": 55, - "start_line": 35 - } - }, - "1842": { - "accessible_scopes": [ - "openzeppelin.token.erc721.enumerable.library", - "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable_all_tokens_index", - "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable_all_tokens_index.write" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 80, - "end_line": 35, - "input_file": { - "filename": "autogen/starknet/storage_var/ERC721Enumerable_all_tokens_index/impl.cairo" - }, - "start_col": 9, - "start_line": 35 - } - }, - "1844": { - "accessible_scopes": [ - "openzeppelin.token.erc721.enumerable.library", - "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable_all_tokens_index", - "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable_all_tokens_index.write" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 41, - "end_line": 7, - "input_file": { - "filename": "autogen/starknet/storage_var/ERC721Enumerable_all_tokens_index/decl.cairo" - }, - "parent_location": [ - { - "end_col": 44, - "end_line": 33, - "input_file": { - "filename": "autogen/starknet/storage_var/ERC721Enumerable_all_tokens_index/impl.cairo" - }, - "parent_location": [ - { - "end_col": 62, - "end_line": 21, - "input_file": { - "filename": "autogen/starknet/storage_var/ERC721Enumerable_all_tokens_index/decl.cairo" - }, - "parent_location": [ - { - "end_col": 19, - "end_line": 36, - "input_file": { - "filename": "autogen/starknet/storage_var/ERC721Enumerable_all_tokens_index/impl.cairo" - }, - "start_col": 9, - "start_line": 36 - }, - "While trying to retrieve the implicit argument 'pedersen_ptr' in:" - ], - "start_col": 36, - "start_line": 21 - }, - "While expanding the reference 'pedersen_ptr' in:" - ], - "start_col": 30, - "start_line": 33 - }, - "While trying to update the implicit return value 'pedersen_ptr' in:" - ], - "start_col": 15, - "start_line": 7 - } - }, - "1845": { - "accessible_scopes": [ - "openzeppelin.token.erc721.enumerable.library", - "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable_all_tokens_index", - "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable_all_tokens_index.write" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 58, - "end_line": 7, - "input_file": { - "filename": "autogen/starknet/storage_var/ERC721Enumerable_all_tokens_index/decl.cairo" - }, - "parent_location": [ - { - "end_col": 44, - "end_line": 33, - "input_file": { - "filename": "autogen/starknet/storage_var/ERC721Enumerable_all_tokens_index/impl.cairo" - }, - "parent_location": [ - { - "end_col": 79, - "end_line": 21, - "input_file": { - "filename": "autogen/starknet/storage_var/ERC721Enumerable_all_tokens_index/decl.cairo" - }, - "parent_location": [ - { - "end_col": 19, - "end_line": 36, - "input_file": { - "filename": "autogen/starknet/storage_var/ERC721Enumerable_all_tokens_index/impl.cairo" - }, - "start_col": 9, - "start_line": 36 - }, - "While trying to retrieve the implicit argument 'range_check_ptr' in:" - ], - "start_col": 64, - "start_line": 21 - }, - "While expanding the reference 'range_check_ptr' in:" - ], - "start_col": 30, - "start_line": 33 - }, - "While trying to update the implicit return value 'range_check_ptr' in:" - ], - "start_col": 43, - "start_line": 7 - } - }, - "1846": { - "accessible_scopes": [ - "openzeppelin.token.erc721.enumerable.library", - "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable_all_tokens_index", - "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable_all_tokens_index.write" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 19, - "end_line": 36, - "input_file": { - "filename": "autogen/starknet/storage_var/ERC721Enumerable_all_tokens_index/impl.cairo" - }, - "start_col": 9, - "start_line": 36 - } - }, - "1847": { - "accessible_scopes": [ - "openzeppelin.token.erc721.enumerable.library", - "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable_owned_tokens", - "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable_owned_tokens.addr" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 41, - "end_line": 7, - "input_file": { - "filename": "autogen/starknet/storage_var/ERC721Enumerable_owned_tokens/impl.cairo" - }, - "parent_location": [ - { - "end_col": 48, - "end_line": 11, - "input_file": { - "filename": "autogen/starknet/storage_var/ERC721Enumerable_owned_tokens/impl.cairo" - }, - "start_col": 36, - "start_line": 11 - }, - "While expanding the reference 'pedersen_ptr' in:" - ], - "start_col": 15, - "start_line": 7 - } - }, - "1848": { - "accessible_scopes": [ - "openzeppelin.token.erc721.enumerable.library", - "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable_owned_tokens", - "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable_owned_tokens.addr" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 93, - "end_line": 10, - "input_file": { - "filename": "autogen/starknet/storage_var/ERC721Enumerable_owned_tokens/impl.cairo" - }, - "parent_location": [ - { - "end_col": 53, - "end_line": 11, - "input_file": { - "filename": "autogen/starknet/storage_var/ERC721Enumerable_owned_tokens/impl.cairo" - }, - "start_col": 50, - "start_line": 11 - }, - "While expanding the reference 'res' in:" - ], - "start_col": 19, - "start_line": 10 - } - }, - "1850": { - "accessible_scopes": [ - "openzeppelin.token.erc721.enumerable.library", - "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable_owned_tokens", - "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable_owned_tokens.addr" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 77, - "end_line": 11, - "input_file": { - "filename": "autogen/starknet/storage_var/ERC721Enumerable_owned_tokens/impl.cairo" - }, - "start_col": 55, - "start_line": 11 - } - }, - "1851": { - "accessible_scopes": [ - "openzeppelin.token.erc721.enumerable.library", - "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable_owned_tokens", - "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable_owned_tokens.addr" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 78, - "end_line": 11, - "input_file": { - "filename": "autogen/starknet/storage_var/ERC721Enumerable_owned_tokens/impl.cairo" - }, - "start_col": 21, - "start_line": 11 - } - }, - "1853": { - "accessible_scopes": [ - "openzeppelin.token.erc721.enumerable.library", - "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable_owned_tokens", - "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable_owned_tokens.addr" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 77, - "end_line": 12, - "input_file": { - "filename": "autogen/starknet/storage_var/ERC721Enumerable_owned_tokens/impl.cairo" - }, - "start_col": 55, - "start_line": 12 - } - }, - "1854": { - "accessible_scopes": [ - "openzeppelin.token.erc721.enumerable.library", - "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable_owned_tokens", - "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable_owned_tokens.addr" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 78, - "end_line": 12, - "input_file": { - "filename": "autogen/starknet/storage_var/ERC721Enumerable_owned_tokens/impl.cairo" - }, - "start_col": 21, - "start_line": 12 - } - }, - "1856": { - "accessible_scopes": [ - "openzeppelin.token.erc721.enumerable.library", - "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable_owned_tokens", - "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable_owned_tokens.addr" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 77, - "end_line": 13, - "input_file": { - "filename": "autogen/starknet/storage_var/ERC721Enumerable_owned_tokens/impl.cairo" - }, - "start_col": 55, - "start_line": 13 - } - }, - "1857": { - "accessible_scopes": [ - "openzeppelin.token.erc721.enumerable.library", - "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable_owned_tokens", - "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable_owned_tokens.addr" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 78, - "end_line": 13, - "input_file": { - "filename": "autogen/starknet/storage_var/ERC721Enumerable_owned_tokens/impl.cairo" - }, - "start_col": 21, - "start_line": 13 - } - }, - "1859": { - "accessible_scopes": [ - "openzeppelin.token.erc721.enumerable.library", - "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable_owned_tokens", - "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable_owned_tokens.addr" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 58, - "end_line": 7, - "input_file": { - "filename": "autogen/starknet/storage_var/ERC721Enumerable_owned_tokens/impl.cairo" - }, - "parent_location": [ - { - "end_col": 39, - "end_line": 12, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/starknet/common/storage.cairo" - }, - "parent_location": [ - { - "end_col": 48, - "end_line": 14, - "input_file": { - "filename": "autogen/starknet/storage_var/ERC721Enumerable_owned_tokens/impl.cairo" - }, - "start_col": 21, - "start_line": 14 - }, - "While trying to retrieve the implicit argument 'range_check_ptr' in:" - ], - "start_col": 24, - "start_line": 12 - }, - "While expanding the reference 'range_check_ptr' in:" - ], - "start_col": 43, - "start_line": 7 - } - }, - "1860": { - "accessible_scopes": [ - "openzeppelin.token.erc721.enumerable.library", - "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable_owned_tokens", - "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable_owned_tokens.addr" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 17, - "end_line": 13, - "input_file": { - "filename": "autogen/starknet/storage_var/ERC721Enumerable_owned_tokens/impl.cairo" - }, - "parent_location": [ - { - "end_col": 47, - "end_line": 14, - "input_file": { - "filename": "autogen/starknet/storage_var/ERC721Enumerable_owned_tokens/impl.cairo" - }, - "start_col": 44, - "start_line": 14 - }, - "While expanding the reference 'res' in:" - ], - "start_col": 14, - "start_line": 13 - } - }, - "1861": { - "accessible_scopes": [ - "openzeppelin.token.erc721.enumerable.library", - "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable_owned_tokens", - "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable_owned_tokens.addr" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 48, - "end_line": 14, - "input_file": { - "filename": "autogen/starknet/storage_var/ERC721Enumerable_owned_tokens/impl.cairo" - }, - "start_col": 21, - "start_line": 14 - } - }, - "1863": { - "accessible_scopes": [ - "openzeppelin.token.erc721.enumerable.library", - "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable_owned_tokens", - "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable_owned_tokens.addr" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 48, - "end_line": 13, - "input_file": { - "filename": "autogen/starknet/storage_var/ERC721Enumerable_owned_tokens/impl.cairo" - }, - "parent_location": [ - { - "end_col": 41, - "end_line": 7, - "input_file": { - "filename": "autogen/starknet/storage_var/ERC721Enumerable_owned_tokens/decl.cairo" - }, - "parent_location": [ - { - "end_col": 26, - "end_line": 15, - "input_file": { - "filename": "autogen/starknet/storage_var/ERC721Enumerable_owned_tokens/impl.cairo" - }, - "start_col": 9, - "start_line": 15 - }, - "While trying to retrieve the implicit argument 'pedersen_ptr' in:" - ], - "start_col": 15, - "start_line": 7 - }, - "While expanding the reference 'pedersen_ptr' in:" - ], - "start_col": 36, - "start_line": 13 - } - }, - "1864": { - "accessible_scopes": [ - "openzeppelin.token.erc721.enumerable.library", - "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable_owned_tokens", - "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable_owned_tokens.addr" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 39, - "end_line": 12, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/starknet/common/storage.cairo" - }, - "parent_location": [ - { - "end_col": 48, - "end_line": 14, - "input_file": { - "filename": "autogen/starknet/storage_var/ERC721Enumerable_owned_tokens/impl.cairo" - }, - "parent_location": [ - { - "end_col": 58, - "end_line": 7, - "input_file": { - "filename": "autogen/starknet/storage_var/ERC721Enumerable_owned_tokens/decl.cairo" - }, - "parent_location": [ - { - "end_col": 26, - "end_line": 15, - "input_file": { - "filename": "autogen/starknet/storage_var/ERC721Enumerable_owned_tokens/impl.cairo" - }, - "start_col": 9, - "start_line": 15 - }, - "While trying to retrieve the implicit argument 'range_check_ptr' in:" - ], - "start_col": 43, - "start_line": 7 - }, - "While expanding the reference 'range_check_ptr' in:" - ], - "start_col": 21, - "start_line": 14 - }, - "While trying to update the implicit return value 'range_check_ptr' in:" - ], - "start_col": 24, - "start_line": 12 - } - }, - "1865": { - "accessible_scopes": [ - "openzeppelin.token.erc721.enumerable.library", - "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable_owned_tokens", - "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable_owned_tokens.addr" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 17, - "end_line": 14, - "input_file": { - "filename": "autogen/starknet/storage_var/ERC721Enumerable_owned_tokens/impl.cairo" - }, - "parent_location": [ - { - "end_col": 24, - "end_line": 15, - "input_file": { - "filename": "autogen/starknet/storage_var/ERC721Enumerable_owned_tokens/impl.cairo" - }, - "start_col": 21, - "start_line": 15 - }, - "While expanding the reference 'res' in:" - ], - "start_col": 14, - "start_line": 14 - } - }, - "1866": { - "accessible_scopes": [ - "openzeppelin.token.erc721.enumerable.library", - "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable_owned_tokens", - "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable_owned_tokens.addr" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 26, - "end_line": 15, - "input_file": { - "filename": "autogen/starknet/storage_var/ERC721Enumerable_owned_tokens/impl.cairo" - }, - "start_col": 9, - "start_line": 15 - } - }, - "1867": { - "accessible_scopes": [ - "openzeppelin.token.erc721.enumerable.library", - "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable_owned_tokens", - "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable_owned_tokens.read" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 61, - "end_line": 18, - "input_file": { - "filename": "autogen/starknet/storage_var/ERC721Enumerable_owned_tokens/impl.cairo" - }, - "parent_location": [ - { - "end_col": 41, - "end_line": 7, - "input_file": { - "filename": "autogen/starknet/storage_var/ERC721Enumerable_owned_tokens/decl.cairo" - }, - "parent_location": [ - { - "end_col": 48, - "end_line": 21, - "input_file": { - "filename": "autogen/starknet/storage_var/ERC721Enumerable_owned_tokens/impl.cairo" - }, - "start_col": 30, - "start_line": 21 - }, - "While trying to retrieve the implicit argument 'pedersen_ptr' in:" - ], - "start_col": 15, - "start_line": 7 - }, - "While expanding the reference 'pedersen_ptr' in:" - ], - "start_col": 35, - "start_line": 18 - } - }, - "1868": { - "accessible_scopes": [ - "openzeppelin.token.erc721.enumerable.library", - "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable_owned_tokens", - "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable_owned_tokens.read" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 78, - "end_line": 18, - "input_file": { - "filename": "autogen/starknet/storage_var/ERC721Enumerable_owned_tokens/impl.cairo" - }, - "parent_location": [ - { - "end_col": 58, - "end_line": 7, - "input_file": { - "filename": "autogen/starknet/storage_var/ERC721Enumerable_owned_tokens/decl.cairo" - }, - "parent_location": [ - { - "end_col": 48, - "end_line": 21, - "input_file": { - "filename": "autogen/starknet/storage_var/ERC721Enumerable_owned_tokens/impl.cairo" - }, - "start_col": 30, - "start_line": 21 - }, - "While trying to retrieve the implicit argument 'range_check_ptr' in:" - ], - "start_col": 43, - "start_line": 7 - }, - "While expanding the reference 'range_check_ptr' in:" - ], - "start_col": 63, - "start_line": 18 - } - }, - "1869": { - "accessible_scopes": [ - "openzeppelin.token.erc721.enumerable.library", - "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable_owned_tokens", - "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable_owned_tokens.read" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 20, - "end_line": 19, - "input_file": { - "filename": "autogen/starknet/storage_var/ERC721Enumerable_owned_tokens/impl.cairo" - }, - "parent_location": [ - { - "end_col": 40, - "end_line": 21, - "input_file": { - "filename": "autogen/starknet/storage_var/ERC721Enumerable_owned_tokens/impl.cairo" - }, - "start_col": 35, - "start_line": 21 - }, - "While expanding the reference 'owner' in:" - ], - "start_col": 9, - "start_line": 19 - } - }, - "1870": { - "accessible_scopes": [ - "openzeppelin.token.erc721.enumerable.library", - "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable_owned_tokens", - "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable_owned_tokens.read" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 36, - "end_line": 19, - "input_file": { - "filename": "autogen/starknet/storage_var/ERC721Enumerable_owned_tokens/impl.cairo" - }, - "parent_location": [ - { - "end_col": 47, - "end_line": 21, - "input_file": { - "filename": "autogen/starknet/storage_var/ERC721Enumerable_owned_tokens/impl.cairo" - }, - "start_col": 42, - "start_line": 21 - }, - "While expanding the reference 'index' in:" - ], - "start_col": 22, - "start_line": 19 - } - }, - "1871": { - "accessible_scopes": [ - "openzeppelin.token.erc721.enumerable.library", - "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable_owned_tokens", - "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable_owned_tokens.read" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 36, - "end_line": 19, - "input_file": { - "filename": "autogen/starknet/storage_var/ERC721Enumerable_owned_tokens/impl.cairo" - }, - "parent_location": [ - { - "end_col": 47, - "end_line": 21, - "input_file": { - "filename": "autogen/starknet/storage_var/ERC721Enumerable_owned_tokens/impl.cairo" - }, - "start_col": 42, - "start_line": 21 - }, - "While expanding the reference 'index' in:" - ], - "start_col": 22, - "start_line": 19 - } - }, - "1872": { - "accessible_scopes": [ - "openzeppelin.token.erc721.enumerable.library", - "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable_owned_tokens", - "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable_owned_tokens.read" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 48, - "end_line": 21, - "input_file": { - "filename": "autogen/starknet/storage_var/ERC721Enumerable_owned_tokens/impl.cairo" - }, - "start_col": 30, - "start_line": 21 - } - }, - "1874": { - "accessible_scopes": [ - "openzeppelin.token.erc721.enumerable.library", - "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable_owned_tokens", - "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable_owned_tokens.read" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 33, - "end_line": 18, - "input_file": { - "filename": "autogen/starknet/storage_var/ERC721Enumerable_owned_tokens/impl.cairo" - }, - "parent_location": [ - { - "end_col": 37, - "end_line": 352, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/starknet/common/syscalls.cairo" - }, - "parent_location": [ - { - "end_col": 75, - "end_line": 22, - "input_file": { - "filename": "autogen/starknet/storage_var/ERC721Enumerable_owned_tokens/impl.cairo" - }, - "start_col": 37, - "start_line": 22 - }, - "While trying to retrieve the implicit argument 'syscall_ptr' in:" - ], - "start_col": 19, - "start_line": 352 - }, - "While expanding the reference 'syscall_ptr' in:" - ], - "start_col": 15, - "start_line": 18 - } - }, - "1875": { - "accessible_scopes": [ - "openzeppelin.token.erc721.enumerable.library", - "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable_owned_tokens", - "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable_owned_tokens.read" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 26, - "end_line": 21, - "input_file": { - "filename": "autogen/starknet/storage_var/ERC721Enumerable_owned_tokens/impl.cairo" - }, - "parent_location": [ - { - "end_col": 70, - "end_line": 22, - "input_file": { - "filename": "autogen/starknet/storage_var/ERC721Enumerable_owned_tokens/impl.cairo" - }, - "start_col": 58, - "start_line": 22 - }, - "While expanding the reference 'storage_addr' in:" - ], - "start_col": 14, - "start_line": 21 - } - }, - "1876": { - "accessible_scopes": [ - "openzeppelin.token.erc721.enumerable.library", - "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable_owned_tokens", - "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable_owned_tokens.read" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 75, - "end_line": 22, - "input_file": { - "filename": "autogen/starknet/storage_var/ERC721Enumerable_owned_tokens/impl.cairo" - }, - "start_col": 37, - "start_line": 22 - } - }, - "1878": { - "accessible_scopes": [ - "openzeppelin.token.erc721.enumerable.library", - "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable_owned_tokens", - "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable_owned_tokens.read" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 37, - "end_line": 352, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/starknet/common/syscalls.cairo" - }, - "parent_location": [ - { - "end_col": 75, - "end_line": 22, - "input_file": { - "filename": "autogen/starknet/storage_var/ERC721Enumerable_owned_tokens/impl.cairo" - }, - "parent_location": [ - { - "end_col": 37, - "end_line": 352, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/starknet/common/syscalls.cairo" - }, - "parent_location": [ - { - "end_col": 75, - "end_line": 23, - "input_file": { - "filename": "autogen/starknet/storage_var/ERC721Enumerable_owned_tokens/impl.cairo" - }, - "start_col": 37, - "start_line": 23 - }, - "While trying to retrieve the implicit argument 'syscall_ptr' in:" - ], - "start_col": 19, - "start_line": 352 - }, - "While expanding the reference 'syscall_ptr' in:" - ], - "start_col": 37, - "start_line": 22 - }, - "While trying to update the implicit return value 'syscall_ptr' in:" - ], - "start_col": 19, - "start_line": 352 - } - }, - "1879": { - "accessible_scopes": [ - "openzeppelin.token.erc721.enumerable.library", - "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable_owned_tokens", - "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable_owned_tokens.read" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 74, - "end_line": 23, - "input_file": { - "filename": "autogen/starknet/storage_var/ERC721Enumerable_owned_tokens/impl.cairo" - }, - "start_col": 58, - "start_line": 23 - } - }, - "1881": { - "accessible_scopes": [ - "openzeppelin.token.erc721.enumerable.library", - "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable_owned_tokens", - "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable_owned_tokens.read" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 75, - "end_line": 23, - "input_file": { - "filename": "autogen/starknet/storage_var/ERC721Enumerable_owned_tokens/impl.cairo" - }, - "start_col": 37, - "start_line": 23 - } - }, - "1883": { - "accessible_scopes": [ - "openzeppelin.token.erc721.enumerable.library", - "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable_owned_tokens", - "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable_owned_tokens.read" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 37, - "end_line": 352, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/starknet/common/syscalls.cairo" - }, - "parent_location": [ - { - "end_col": 75, - "end_line": 23, - "input_file": { - "filename": "autogen/starknet/storage_var/ERC721Enumerable_owned_tokens/impl.cairo" - }, - "parent_location": [ - { - "end_col": 42, - "end_line": 25, - "input_file": { - "filename": "autogen/starknet/storage_var/ERC721Enumerable_owned_tokens/impl.cairo" - }, - "start_col": 31, - "start_line": 25 - }, - "While expanding the reference 'syscall_ptr' in:" - ], - "start_col": 37, - "start_line": 23 - }, - "While trying to update the implicit return value 'syscall_ptr' in:" - ], - "start_col": 19, - "start_line": 352 - } - }, - "1884": { - "accessible_scopes": [ - "openzeppelin.token.erc721.enumerable.library", - "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable_owned_tokens", - "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable_owned_tokens.read" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 41, - "end_line": 7, - "input_file": { - "filename": "autogen/starknet/storage_var/ERC721Enumerable_owned_tokens/decl.cairo" - }, - "parent_location": [ - { - "end_col": 48, - "end_line": 21, - "input_file": { - "filename": "autogen/starknet/storage_var/ERC721Enumerable_owned_tokens/impl.cairo" - }, - "parent_location": [ - { - "end_col": 44, - "end_line": 26, - "input_file": { - "filename": "autogen/starknet/storage_var/ERC721Enumerable_owned_tokens/impl.cairo" - }, - "start_col": 32, - "start_line": 26 - }, - "While expanding the reference 'pedersen_ptr' in:" - ], - "start_col": 30, - "start_line": 21 - }, - "While trying to update the implicit return value 'pedersen_ptr' in:" - ], - "start_col": 15, - "start_line": 7 - } - }, - "1885": { - "accessible_scopes": [ - "openzeppelin.token.erc721.enumerable.library", - "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable_owned_tokens", - "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable_owned_tokens.read" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 58, - "end_line": 7, - "input_file": { - "filename": "autogen/starknet/storage_var/ERC721Enumerable_owned_tokens/decl.cairo" - }, - "parent_location": [ - { - "end_col": 48, - "end_line": 21, - "input_file": { - "filename": "autogen/starknet/storage_var/ERC721Enumerable_owned_tokens/impl.cairo" - }, - "parent_location": [ - { - "end_col": 50, - "end_line": 27, - "input_file": { - "filename": "autogen/starknet/storage_var/ERC721Enumerable_owned_tokens/impl.cairo" - }, - "start_col": 35, - "start_line": 27 - }, - "While expanding the reference 'range_check_ptr' in:" - ], - "start_col": 30, - "start_line": 21 - }, - "While trying to update the implicit return value 'range_check_ptr' in:" - ], - "start_col": 43, - "start_line": 7 - } - }, - "1886": { - "accessible_scopes": [ - "openzeppelin.token.erc721.enumerable.library", - "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable_owned_tokens", - "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable_owned_tokens.read" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 33, - "end_line": 22, - "input_file": { - "filename": "autogen/starknet/storage_var/ERC721Enumerable_owned_tokens/impl.cairo" - }, - "parent_location": [ - { - "end_col": 64, - "end_line": 28, - "input_file": { - "filename": "autogen/starknet/storage_var/ERC721Enumerable_owned_tokens/impl.cairo" - }, - "start_col": 45, - "start_line": 28 - }, - "While expanding the reference '__storage_var_temp0' in:" - ], - "start_col": 14, - "start_line": 22 - } - }, - "1887": { - "accessible_scopes": [ - "openzeppelin.token.erc721.enumerable.library", - "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable_owned_tokens", - "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable_owned_tokens.read" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 33, - "end_line": 23, - "input_file": { - "filename": "autogen/starknet/storage_var/ERC721Enumerable_owned_tokens/impl.cairo" - }, - "parent_location": [ - { - "end_col": 64, - "end_line": 29, - "input_file": { - "filename": "autogen/starknet/storage_var/ERC721Enumerable_owned_tokens/impl.cairo" - }, - "start_col": 45, - "start_line": 29 - }, - "While expanding the reference '__storage_var_temp1' in:" - ], - "start_col": 14, - "start_line": 23 - } - }, - "1888": { - "accessible_scopes": [ - "openzeppelin.token.erc721.enumerable.library", - "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable_owned_tokens", - "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable_owned_tokens.read" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 58, - "end_line": 30, - "input_file": { - "filename": "autogen/starknet/storage_var/ERC721Enumerable_owned_tokens/impl.cairo" - }, - "start_col": 9, - "start_line": 30 - } - }, - "1889": { - "accessible_scopes": [ - "openzeppelin.token.erc721.enumerable.library", - "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable_owned_tokens", - "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable_owned_tokens.write" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 62, - "end_line": 33, - "input_file": { - "filename": "autogen/starknet/storage_var/ERC721Enumerable_owned_tokens/impl.cairo" - }, - "parent_location": [ - { - "end_col": 41, - "end_line": 7, - "input_file": { - "filename": "autogen/starknet/storage_var/ERC721Enumerable_owned_tokens/decl.cairo" - }, - "parent_location": [ - { - "end_col": 48, - "end_line": 36, - "input_file": { - "filename": "autogen/starknet/storage_var/ERC721Enumerable_owned_tokens/impl.cairo" - }, - "start_col": 30, - "start_line": 36 - }, - "While trying to retrieve the implicit argument 'pedersen_ptr' in:" - ], - "start_col": 15, - "start_line": 7 - }, - "While expanding the reference 'pedersen_ptr' in:" - ], - "start_col": 36, - "start_line": 33 - } - }, - "1890": { - "accessible_scopes": [ - "openzeppelin.token.erc721.enumerable.library", - "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable_owned_tokens", - "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable_owned_tokens.write" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 79, - "end_line": 33, - "input_file": { - "filename": "autogen/starknet/storage_var/ERC721Enumerable_owned_tokens/impl.cairo" - }, - "parent_location": [ - { - "end_col": 58, - "end_line": 7, - "input_file": { - "filename": "autogen/starknet/storage_var/ERC721Enumerable_owned_tokens/decl.cairo" - }, - "parent_location": [ - { - "end_col": 48, - "end_line": 36, - "input_file": { - "filename": "autogen/starknet/storage_var/ERC721Enumerable_owned_tokens/impl.cairo" - }, - "start_col": 30, - "start_line": 36 - }, - "While trying to retrieve the implicit argument 'range_check_ptr' in:" - ], - "start_col": 43, - "start_line": 7 - }, - "While expanding the reference 'range_check_ptr' in:" - ], - "start_col": 64, - "start_line": 33 - } - }, - "1891": { - "accessible_scopes": [ - "openzeppelin.token.erc721.enumerable.library", - "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable_owned_tokens", - "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable_owned_tokens.write" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 20, - "end_line": 34, - "input_file": { - "filename": "autogen/starknet/storage_var/ERC721Enumerable_owned_tokens/impl.cairo" - }, - "parent_location": [ - { - "end_col": 40, - "end_line": 36, - "input_file": { - "filename": "autogen/starknet/storage_var/ERC721Enumerable_owned_tokens/impl.cairo" - }, - "start_col": 35, - "start_line": 36 - }, - "While expanding the reference 'owner' in:" - ], - "start_col": 9, - "start_line": 34 - } - }, - "1892": { - "accessible_scopes": [ - "openzeppelin.token.erc721.enumerable.library", - "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable_owned_tokens", - "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable_owned_tokens.write" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 36, - "end_line": 34, - "input_file": { - "filename": "autogen/starknet/storage_var/ERC721Enumerable_owned_tokens/impl.cairo" - }, - "parent_location": [ - { - "end_col": 47, - "end_line": 36, - "input_file": { - "filename": "autogen/starknet/storage_var/ERC721Enumerable_owned_tokens/impl.cairo" - }, - "start_col": 42, - "start_line": 36 - }, - "While expanding the reference 'index' in:" - ], - "start_col": 22, - "start_line": 34 - } - }, - "1893": { - "accessible_scopes": [ - "openzeppelin.token.erc721.enumerable.library", - "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable_owned_tokens", - "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable_owned_tokens.write" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 36, - "end_line": 34, - "input_file": { - "filename": "autogen/starknet/storage_var/ERC721Enumerable_owned_tokens/impl.cairo" - }, - "parent_location": [ - { - "end_col": 47, - "end_line": 36, - "input_file": { - "filename": "autogen/starknet/storage_var/ERC721Enumerable_owned_tokens/impl.cairo" - }, - "start_col": 42, - "start_line": 36 - }, - "While expanding the reference 'index' in:" - ], - "start_col": 22, - "start_line": 34 - } - }, - "1894": { - "accessible_scopes": [ - "openzeppelin.token.erc721.enumerable.library", - "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable_owned_tokens", - "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable_owned_tokens.write" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 48, - "end_line": 36, - "input_file": { - "filename": "autogen/starknet/storage_var/ERC721Enumerable_owned_tokens/impl.cairo" - }, - "start_col": 30, - "start_line": 36 - } - }, - "1896": { - "accessible_scopes": [ - "openzeppelin.token.erc721.enumerable.library", - "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable_owned_tokens", - "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable_owned_tokens.write" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 34, - "end_line": 33, - "input_file": { - "filename": "autogen/starknet/storage_var/ERC721Enumerable_owned_tokens/impl.cairo" - }, - "parent_location": [ - { - "end_col": 38, - "end_line": 370, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/starknet/common/syscalls.cairo" - }, - "parent_location": [ - { - "end_col": 80, - "end_line": 37, - "input_file": { - "filename": "autogen/starknet/storage_var/ERC721Enumerable_owned_tokens/impl.cairo" - }, - "start_col": 9, - "start_line": 37 - }, - "While trying to retrieve the implicit argument 'syscall_ptr' in:" - ], - "start_col": 20, - "start_line": 370 - }, - "While expanding the reference 'syscall_ptr' in:" - ], - "start_col": 16, - "start_line": 33 - } - }, - "1897": { - "accessible_scopes": [ - "openzeppelin.token.erc721.enumerable.library", - "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable_owned_tokens", - "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable_owned_tokens.write" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 26, - "end_line": 36, - "input_file": { - "filename": "autogen/starknet/storage_var/ERC721Enumerable_owned_tokens/impl.cairo" - }, - "parent_location": [ - { - "end_col": 43, - "end_line": 37, - "input_file": { - "filename": "autogen/starknet/storage_var/ERC721Enumerable_owned_tokens/impl.cairo" - }, - "start_col": 31, - "start_line": 37 - }, - "While expanding the reference 'storage_addr' in:" - ], - "start_col": 14, - "start_line": 36 - } - }, - "1898": { - "accessible_scopes": [ - "openzeppelin.token.erc721.enumerable.library", - "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable_owned_tokens", - "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable_owned_tokens.write" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 79, - "end_line": 37, - "input_file": { - "filename": "autogen/starknet/storage_var/ERC721Enumerable_owned_tokens/impl.cairo" - }, - "start_col": 55, - "start_line": 37 - } - }, - "1899": { - "accessible_scopes": [ - "openzeppelin.token.erc721.enumerable.library", - "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable_owned_tokens", - "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable_owned_tokens.write" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 80, - "end_line": 37, - "input_file": { - "filename": "autogen/starknet/storage_var/ERC721Enumerable_owned_tokens/impl.cairo" - }, - "start_col": 9, - "start_line": 37 - } - }, - "1901": { - "accessible_scopes": [ - "openzeppelin.token.erc721.enumerable.library", - "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable_owned_tokens", - "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable_owned_tokens.write" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 47, - "end_line": 38, - "input_file": { - "filename": "autogen/starknet/storage_var/ERC721Enumerable_owned_tokens/impl.cairo" - }, - "start_col": 31, - "start_line": 38 - } - }, - "1903": { - "accessible_scopes": [ - "openzeppelin.token.erc721.enumerable.library", - "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable_owned_tokens", - "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable_owned_tokens.write" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 79, - "end_line": 38, - "input_file": { - "filename": "autogen/starknet/storage_var/ERC721Enumerable_owned_tokens/impl.cairo" - }, - "start_col": 55, - "start_line": 38 - } - }, - "1904": { - "accessible_scopes": [ - "openzeppelin.token.erc721.enumerable.library", - "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable_owned_tokens", - "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable_owned_tokens.write" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 80, - "end_line": 38, - "input_file": { - "filename": "autogen/starknet/storage_var/ERC721Enumerable_owned_tokens/impl.cairo" - }, - "start_col": 9, - "start_line": 38 - } - }, - "1906": { - "accessible_scopes": [ - "openzeppelin.token.erc721.enumerable.library", - "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable_owned_tokens", - "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable_owned_tokens.write" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 41, - "end_line": 7, - "input_file": { - "filename": "autogen/starknet/storage_var/ERC721Enumerable_owned_tokens/decl.cairo" - }, - "parent_location": [ - { - "end_col": 48, - "end_line": 36, - "input_file": { - "filename": "autogen/starknet/storage_var/ERC721Enumerable_owned_tokens/impl.cairo" - }, - "parent_location": [ - { - "end_col": 62, - "end_line": 23, - "input_file": { - "filename": "autogen/starknet/storage_var/ERC721Enumerable_owned_tokens/decl.cairo" - }, - "parent_location": [ - { - "end_col": 19, - "end_line": 39, - "input_file": { - "filename": "autogen/starknet/storage_var/ERC721Enumerable_owned_tokens/impl.cairo" - }, - "start_col": 9, - "start_line": 39 - }, - "While trying to retrieve the implicit argument 'pedersen_ptr' in:" - ], - "start_col": 36, - "start_line": 23 - }, - "While expanding the reference 'pedersen_ptr' in:" - ], - "start_col": 30, - "start_line": 36 - }, - "While trying to update the implicit return value 'pedersen_ptr' in:" - ], - "start_col": 15, - "start_line": 7 - } - }, - "1907": { - "accessible_scopes": [ - "openzeppelin.token.erc721.enumerable.library", - "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable_owned_tokens", - "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable_owned_tokens.write" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 58, - "end_line": 7, - "input_file": { - "filename": "autogen/starknet/storage_var/ERC721Enumerable_owned_tokens/decl.cairo" - }, - "parent_location": [ - { - "end_col": 48, - "end_line": 36, - "input_file": { - "filename": "autogen/starknet/storage_var/ERC721Enumerable_owned_tokens/impl.cairo" - }, - "parent_location": [ - { - "end_col": 79, - "end_line": 23, - "input_file": { - "filename": "autogen/starknet/storage_var/ERC721Enumerable_owned_tokens/decl.cairo" - }, - "parent_location": [ - { - "end_col": 19, - "end_line": 39, - "input_file": { - "filename": "autogen/starknet/storage_var/ERC721Enumerable_owned_tokens/impl.cairo" - }, - "start_col": 9, - "start_line": 39 - }, - "While trying to retrieve the implicit argument 'range_check_ptr' in:" - ], - "start_col": 64, - "start_line": 23 - }, - "While expanding the reference 'range_check_ptr' in:" - ], - "start_col": 30, - "start_line": 36 - }, - "While trying to update the implicit return value 'range_check_ptr' in:" - ], - "start_col": 43, - "start_line": 7 - } - }, - "1908": { - "accessible_scopes": [ - "openzeppelin.token.erc721.enumerable.library", - "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable_owned_tokens", - "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable_owned_tokens.write" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 19, - "end_line": 39, - "input_file": { - "filename": "autogen/starknet/storage_var/ERC721Enumerable_owned_tokens/impl.cairo" - }, - "start_col": 9, - "start_line": 39 - } - }, - "1909": { - "accessible_scopes": [ - "openzeppelin.token.erc721.enumerable.library", - "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable_owned_tokens_index", - "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable_owned_tokens_index.addr" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 41, - "end_line": 7, - "input_file": { - "filename": "autogen/starknet/storage_var/ERC721Enumerable_owned_tokens_index/impl.cairo" - }, - "parent_location": [ - { - "end_col": 48, - "end_line": 9, - "input_file": { - "filename": "autogen/starknet/storage_var/ERC721Enumerable_owned_tokens_index/impl.cairo" - }, - "start_col": 36, - "start_line": 9 - }, - "While expanding the reference 'pedersen_ptr' in:" - ], - "start_col": 15, - "start_line": 7 - } - }, - "1910": { - "accessible_scopes": [ - "openzeppelin.token.erc721.enumerable.library", - "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable_owned_tokens_index", - "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable_owned_tokens_index.addr" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 94, - "end_line": 8, - "input_file": { - "filename": "autogen/starknet/storage_var/ERC721Enumerable_owned_tokens_index/impl.cairo" - }, - "parent_location": [ - { - "end_col": 53, - "end_line": 9, - "input_file": { - "filename": "autogen/starknet/storage_var/ERC721Enumerable_owned_tokens_index/impl.cairo" - }, - "start_col": 50, - "start_line": 9 - }, - "While expanding the reference 'res' in:" - ], - "start_col": 19, - "start_line": 8 - } - }, - "1912": { - "accessible_scopes": [ - "openzeppelin.token.erc721.enumerable.library", - "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable_owned_tokens_index", - "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable_owned_tokens_index.addr" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 80, - "end_line": 9, - "input_file": { - "filename": "autogen/starknet/storage_var/ERC721Enumerable_owned_tokens_index/impl.cairo" - }, - "start_col": 55, - "start_line": 9 - } - }, - "1913": { - "accessible_scopes": [ - "openzeppelin.token.erc721.enumerable.library", - "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable_owned_tokens_index", - "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable_owned_tokens_index.addr" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 81, - "end_line": 9, - "input_file": { - "filename": "autogen/starknet/storage_var/ERC721Enumerable_owned_tokens_index/impl.cairo" - }, - "start_col": 21, - "start_line": 9 - } - }, - "1915": { - "accessible_scopes": [ - "openzeppelin.token.erc721.enumerable.library", - "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable_owned_tokens_index", - "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable_owned_tokens_index.addr" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 80, - "end_line": 10, - "input_file": { - "filename": "autogen/starknet/storage_var/ERC721Enumerable_owned_tokens_index/impl.cairo" - }, - "start_col": 55, - "start_line": 10 - } - }, - "1916": { - "accessible_scopes": [ - "openzeppelin.token.erc721.enumerable.library", - "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable_owned_tokens_index", - "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable_owned_tokens_index.addr" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 81, - "end_line": 10, - "input_file": { - "filename": "autogen/starknet/storage_var/ERC721Enumerable_owned_tokens_index/impl.cairo" - }, - "start_col": 21, - "start_line": 10 - } - }, - "1918": { - "accessible_scopes": [ - "openzeppelin.token.erc721.enumerable.library", - "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable_owned_tokens_index", - "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable_owned_tokens_index.addr" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 58, - "end_line": 7, - "input_file": { - "filename": "autogen/starknet/storage_var/ERC721Enumerable_owned_tokens_index/impl.cairo" - }, - "parent_location": [ - { - "end_col": 39, - "end_line": 12, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/starknet/common/storage.cairo" - }, - "parent_location": [ - { - "end_col": 48, - "end_line": 11, - "input_file": { - "filename": "autogen/starknet/storage_var/ERC721Enumerable_owned_tokens_index/impl.cairo" - }, - "start_col": 21, - "start_line": 11 - }, - "While trying to retrieve the implicit argument 'range_check_ptr' in:" - ], - "start_col": 24, - "start_line": 12 - }, - "While expanding the reference 'range_check_ptr' in:" - ], - "start_col": 43, - "start_line": 7 - } - }, - "1919": { - "accessible_scopes": [ - "openzeppelin.token.erc721.enumerable.library", - "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable_owned_tokens_index", - "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable_owned_tokens_index.addr" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 17, - "end_line": 10, - "input_file": { - "filename": "autogen/starknet/storage_var/ERC721Enumerable_owned_tokens_index/impl.cairo" - }, - "parent_location": [ - { - "end_col": 47, - "end_line": 11, - "input_file": { - "filename": "autogen/starknet/storage_var/ERC721Enumerable_owned_tokens_index/impl.cairo" - }, - "start_col": 44, - "start_line": 11 - }, - "While expanding the reference 'res' in:" - ], - "start_col": 14, - "start_line": 10 - } - }, - "1920": { - "accessible_scopes": [ - "openzeppelin.token.erc721.enumerable.library", - "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable_owned_tokens_index", - "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable_owned_tokens_index.addr" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 48, - "end_line": 11, - "input_file": { - "filename": "autogen/starknet/storage_var/ERC721Enumerable_owned_tokens_index/impl.cairo" - }, - "start_col": 21, - "start_line": 11 - } - }, - "1922": { - "accessible_scopes": [ - "openzeppelin.token.erc721.enumerable.library", - "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable_owned_tokens_index", - "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable_owned_tokens_index.addr" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 48, - "end_line": 10, - "input_file": { - "filename": "autogen/starknet/storage_var/ERC721Enumerable_owned_tokens_index/impl.cairo" - }, - "parent_location": [ - { - "end_col": 41, - "end_line": 7, - "input_file": { - "filename": "autogen/starknet/storage_var/ERC721Enumerable_owned_tokens_index/decl.cairo" - }, - "parent_location": [ - { - "end_col": 26, - "end_line": 12, - "input_file": { - "filename": "autogen/starknet/storage_var/ERC721Enumerable_owned_tokens_index/impl.cairo" - }, - "start_col": 9, - "start_line": 12 - }, - "While trying to retrieve the implicit argument 'pedersen_ptr' in:" - ], - "start_col": 15, - "start_line": 7 - }, - "While expanding the reference 'pedersen_ptr' in:" - ], - "start_col": 36, - "start_line": 10 - } - }, - "1923": { - "accessible_scopes": [ - "openzeppelin.token.erc721.enumerable.library", - "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable_owned_tokens_index", - "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable_owned_tokens_index.addr" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 39, - "end_line": 12, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/starknet/common/storage.cairo" - }, - "parent_location": [ - { - "end_col": 48, - "end_line": 11, - "input_file": { - "filename": "autogen/starknet/storage_var/ERC721Enumerable_owned_tokens_index/impl.cairo" - }, - "parent_location": [ - { - "end_col": 58, - "end_line": 7, - "input_file": { - "filename": "autogen/starknet/storage_var/ERC721Enumerable_owned_tokens_index/decl.cairo" - }, - "parent_location": [ - { - "end_col": 26, - "end_line": 12, - "input_file": { - "filename": "autogen/starknet/storage_var/ERC721Enumerable_owned_tokens_index/impl.cairo" - }, - "start_col": 9, - "start_line": 12 - }, - "While trying to retrieve the implicit argument 'range_check_ptr' in:" - ], - "start_col": 43, - "start_line": 7 - }, - "While expanding the reference 'range_check_ptr' in:" - ], - "start_col": 21, - "start_line": 11 - }, - "While trying to update the implicit return value 'range_check_ptr' in:" - ], - "start_col": 24, - "start_line": 12 - } - }, - "1924": { - "accessible_scopes": [ - "openzeppelin.token.erc721.enumerable.library", - "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable_owned_tokens_index", - "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable_owned_tokens_index.addr" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 17, - "end_line": 11, - "input_file": { - "filename": "autogen/starknet/storage_var/ERC721Enumerable_owned_tokens_index/impl.cairo" - }, - "parent_location": [ - { - "end_col": 24, - "end_line": 12, - "input_file": { - "filename": "autogen/starknet/storage_var/ERC721Enumerable_owned_tokens_index/impl.cairo" - }, - "start_col": 21, - "start_line": 12 - }, - "While expanding the reference 'res' in:" - ], - "start_col": 14, - "start_line": 11 - } - }, - "1925": { - "accessible_scopes": [ - "openzeppelin.token.erc721.enumerable.library", - "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable_owned_tokens_index", - "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable_owned_tokens_index.addr" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 26, - "end_line": 12, - "input_file": { - "filename": "autogen/starknet/storage_var/ERC721Enumerable_owned_tokens_index/impl.cairo" - }, - "start_col": 9, - "start_line": 12 - } - }, - "1926": { - "accessible_scopes": [ - "openzeppelin.token.erc721.enumerable.library", - "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable_owned_tokens_index", - "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable_owned_tokens_index.read" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 61, - "end_line": 15, - "input_file": { - "filename": "autogen/starknet/storage_var/ERC721Enumerable_owned_tokens_index/impl.cairo" - }, - "parent_location": [ - { - "end_col": 41, - "end_line": 7, - "input_file": { - "filename": "autogen/starknet/storage_var/ERC721Enumerable_owned_tokens_index/decl.cairo" - }, - "parent_location": [ - { - "end_col": 44, - "end_line": 18, - "input_file": { - "filename": "autogen/starknet/storage_var/ERC721Enumerable_owned_tokens_index/impl.cairo" - }, - "start_col": 30, - "start_line": 18 - }, - "While trying to retrieve the implicit argument 'pedersen_ptr' in:" - ], - "start_col": 15, - "start_line": 7 - }, - "While expanding the reference 'pedersen_ptr' in:" - ], - "start_col": 35, - "start_line": 15 - } - }, - "1927": { - "accessible_scopes": [ - "openzeppelin.token.erc721.enumerable.library", - "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable_owned_tokens_index", - "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable_owned_tokens_index.read" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 78, - "end_line": 15, - "input_file": { - "filename": "autogen/starknet/storage_var/ERC721Enumerable_owned_tokens_index/impl.cairo" - }, - "parent_location": [ - { - "end_col": 58, - "end_line": 7, - "input_file": { - "filename": "autogen/starknet/storage_var/ERC721Enumerable_owned_tokens_index/decl.cairo" - }, - "parent_location": [ - { - "end_col": 44, - "end_line": 18, - "input_file": { - "filename": "autogen/starknet/storage_var/ERC721Enumerable_owned_tokens_index/impl.cairo" - }, - "start_col": 30, - "start_line": 18 - }, - "While trying to retrieve the implicit argument 'range_check_ptr' in:" - ], - "start_col": 43, - "start_line": 7 - }, - "While expanding the reference 'range_check_ptr' in:" - ], - "start_col": 63, - "start_line": 15 - } - }, - "1928": { - "accessible_scopes": [ - "openzeppelin.token.erc721.enumerable.library", - "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable_owned_tokens_index", - "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable_owned_tokens_index.read" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 26, - "end_line": 16, - "input_file": { - "filename": "autogen/starknet/storage_var/ERC721Enumerable_owned_tokens_index/impl.cairo" - }, - "parent_location": [ - { - "end_col": 43, - "end_line": 18, - "input_file": { - "filename": "autogen/starknet/storage_var/ERC721Enumerable_owned_tokens_index/impl.cairo" - }, - "start_col": 35, - "start_line": 18 - }, - "While expanding the reference 'token_id' in:" - ], - "start_col": 9, - "start_line": 16 - } - }, - "1929": { - "accessible_scopes": [ - "openzeppelin.token.erc721.enumerable.library", - "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable_owned_tokens_index", - "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable_owned_tokens_index.read" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 26, - "end_line": 16, - "input_file": { - "filename": "autogen/starknet/storage_var/ERC721Enumerable_owned_tokens_index/impl.cairo" - }, - "parent_location": [ - { - "end_col": 43, - "end_line": 18, - "input_file": { - "filename": "autogen/starknet/storage_var/ERC721Enumerable_owned_tokens_index/impl.cairo" - }, - "start_col": 35, - "start_line": 18 - }, - "While expanding the reference 'token_id' in:" - ], - "start_col": 9, - "start_line": 16 - } - }, - "1930": { - "accessible_scopes": [ - "openzeppelin.token.erc721.enumerable.library", - "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable_owned_tokens_index", - "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable_owned_tokens_index.read" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 44, - "end_line": 18, - "input_file": { - "filename": "autogen/starknet/storage_var/ERC721Enumerable_owned_tokens_index/impl.cairo" - }, - "start_col": 30, - "start_line": 18 - } - }, - "1932": { - "accessible_scopes": [ - "openzeppelin.token.erc721.enumerable.library", - "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable_owned_tokens_index", - "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable_owned_tokens_index.read" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 33, - "end_line": 15, - "input_file": { - "filename": "autogen/starknet/storage_var/ERC721Enumerable_owned_tokens_index/impl.cairo" - }, - "parent_location": [ - { - "end_col": 37, - "end_line": 352, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/starknet/common/syscalls.cairo" - }, - "parent_location": [ - { - "end_col": 75, - "end_line": 19, - "input_file": { - "filename": "autogen/starknet/storage_var/ERC721Enumerable_owned_tokens_index/impl.cairo" - }, - "start_col": 37, - "start_line": 19 - }, - "While trying to retrieve the implicit argument 'syscall_ptr' in:" - ], - "start_col": 19, - "start_line": 352 - }, - "While expanding the reference 'syscall_ptr' in:" - ], - "start_col": 15, - "start_line": 15 - } - }, - "1933": { - "accessible_scopes": [ - "openzeppelin.token.erc721.enumerable.library", - "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable_owned_tokens_index", - "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable_owned_tokens_index.read" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 26, - "end_line": 18, - "input_file": { - "filename": "autogen/starknet/storage_var/ERC721Enumerable_owned_tokens_index/impl.cairo" - }, - "parent_location": [ - { - "end_col": 70, - "end_line": 19, - "input_file": { - "filename": "autogen/starknet/storage_var/ERC721Enumerable_owned_tokens_index/impl.cairo" - }, - "start_col": 58, - "start_line": 19 - }, - "While expanding the reference 'storage_addr' in:" - ], - "start_col": 14, - "start_line": 18 - } - }, - "1934": { - "accessible_scopes": [ - "openzeppelin.token.erc721.enumerable.library", - "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable_owned_tokens_index", - "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable_owned_tokens_index.read" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 75, - "end_line": 19, - "input_file": { - "filename": "autogen/starknet/storage_var/ERC721Enumerable_owned_tokens_index/impl.cairo" - }, - "start_col": 37, - "start_line": 19 - } - }, - "1936": { - "accessible_scopes": [ - "openzeppelin.token.erc721.enumerable.library", - "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable_owned_tokens_index", - "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable_owned_tokens_index.read" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 37, - "end_line": 352, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/starknet/common/syscalls.cairo" - }, - "parent_location": [ - { - "end_col": 75, - "end_line": 19, - "input_file": { - "filename": "autogen/starknet/storage_var/ERC721Enumerable_owned_tokens_index/impl.cairo" - }, - "parent_location": [ - { - "end_col": 37, - "end_line": 352, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/starknet/common/syscalls.cairo" - }, - "parent_location": [ - { - "end_col": 75, - "end_line": 20, - "input_file": { - "filename": "autogen/starknet/storage_var/ERC721Enumerable_owned_tokens_index/impl.cairo" - }, - "start_col": 37, - "start_line": 20 - }, - "While trying to retrieve the implicit argument 'syscall_ptr' in:" - ], - "start_col": 19, - "start_line": 352 - }, - "While expanding the reference 'syscall_ptr' in:" - ], - "start_col": 37, - "start_line": 19 - }, - "While trying to update the implicit return value 'syscall_ptr' in:" - ], - "start_col": 19, - "start_line": 352 - } - }, - "1937": { - "accessible_scopes": [ - "openzeppelin.token.erc721.enumerable.library", - "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable_owned_tokens_index", - "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable_owned_tokens_index.read" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 74, - "end_line": 20, - "input_file": { - "filename": "autogen/starknet/storage_var/ERC721Enumerable_owned_tokens_index/impl.cairo" - }, - "start_col": 58, - "start_line": 20 - } - }, - "1939": { - "accessible_scopes": [ - "openzeppelin.token.erc721.enumerable.library", - "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable_owned_tokens_index", - "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable_owned_tokens_index.read" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 75, - "end_line": 20, - "input_file": { - "filename": "autogen/starknet/storage_var/ERC721Enumerable_owned_tokens_index/impl.cairo" - }, - "start_col": 37, - "start_line": 20 - } - }, - "1941": { - "accessible_scopes": [ - "openzeppelin.token.erc721.enumerable.library", - "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable_owned_tokens_index", - "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable_owned_tokens_index.read" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 37, - "end_line": 352, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/starknet/common/syscalls.cairo" - }, - "parent_location": [ - { - "end_col": 75, - "end_line": 20, - "input_file": { - "filename": "autogen/starknet/storage_var/ERC721Enumerable_owned_tokens_index/impl.cairo" - }, - "parent_location": [ - { - "end_col": 42, - "end_line": 22, - "input_file": { - "filename": "autogen/starknet/storage_var/ERC721Enumerable_owned_tokens_index/impl.cairo" - }, - "start_col": 31, - "start_line": 22 - }, - "While expanding the reference 'syscall_ptr' in:" - ], - "start_col": 37, - "start_line": 20 - }, - "While trying to update the implicit return value 'syscall_ptr' in:" - ], - "start_col": 19, - "start_line": 352 - } - }, - "1942": { - "accessible_scopes": [ - "openzeppelin.token.erc721.enumerable.library", - "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable_owned_tokens_index", - "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable_owned_tokens_index.read" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 41, - "end_line": 7, - "input_file": { - "filename": "autogen/starknet/storage_var/ERC721Enumerable_owned_tokens_index/decl.cairo" - }, - "parent_location": [ - { - "end_col": 44, - "end_line": 18, - "input_file": { - "filename": "autogen/starknet/storage_var/ERC721Enumerable_owned_tokens_index/impl.cairo" - }, - "parent_location": [ - { - "end_col": 44, - "end_line": 23, - "input_file": { - "filename": "autogen/starknet/storage_var/ERC721Enumerable_owned_tokens_index/impl.cairo" - }, - "start_col": 32, - "start_line": 23 - }, - "While expanding the reference 'pedersen_ptr' in:" - ], - "start_col": 30, - "start_line": 18 - }, - "While trying to update the implicit return value 'pedersen_ptr' in:" - ], - "start_col": 15, - "start_line": 7 - } - }, - "1943": { - "accessible_scopes": [ - "openzeppelin.token.erc721.enumerable.library", - "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable_owned_tokens_index", - "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable_owned_tokens_index.read" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 58, - "end_line": 7, - "input_file": { - "filename": "autogen/starknet/storage_var/ERC721Enumerable_owned_tokens_index/decl.cairo" - }, - "parent_location": [ - { - "end_col": 44, - "end_line": 18, - "input_file": { - "filename": "autogen/starknet/storage_var/ERC721Enumerable_owned_tokens_index/impl.cairo" - }, - "parent_location": [ - { - "end_col": 50, - "end_line": 24, - "input_file": { - "filename": "autogen/starknet/storage_var/ERC721Enumerable_owned_tokens_index/impl.cairo" - }, - "start_col": 35, - "start_line": 24 - }, - "While expanding the reference 'range_check_ptr' in:" - ], - "start_col": 30, - "start_line": 18 - }, - "While trying to update the implicit return value 'range_check_ptr' in:" - ], - "start_col": 43, - "start_line": 7 - } - }, - "1944": { - "accessible_scopes": [ - "openzeppelin.token.erc721.enumerable.library", - "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable_owned_tokens_index", - "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable_owned_tokens_index.read" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 33, - "end_line": 19, - "input_file": { - "filename": "autogen/starknet/storage_var/ERC721Enumerable_owned_tokens_index/impl.cairo" - }, - "parent_location": [ - { - "end_col": 64, - "end_line": 25, - "input_file": { - "filename": "autogen/starknet/storage_var/ERC721Enumerable_owned_tokens_index/impl.cairo" - }, - "start_col": 45, - "start_line": 25 - }, - "While expanding the reference '__storage_var_temp0' in:" - ], - "start_col": 14, - "start_line": 19 - } - }, - "1945": { - "accessible_scopes": [ - "openzeppelin.token.erc721.enumerable.library", - "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable_owned_tokens_index", - "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable_owned_tokens_index.read" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 33, - "end_line": 20, - "input_file": { - "filename": "autogen/starknet/storage_var/ERC721Enumerable_owned_tokens_index/impl.cairo" - }, - "parent_location": [ - { - "end_col": 64, - "end_line": 26, - "input_file": { - "filename": "autogen/starknet/storage_var/ERC721Enumerable_owned_tokens_index/impl.cairo" - }, - "start_col": 45, - "start_line": 26 - }, - "While expanding the reference '__storage_var_temp1' in:" - ], - "start_col": 14, - "start_line": 20 - } - }, - "1946": { - "accessible_scopes": [ - "openzeppelin.token.erc721.enumerable.library", - "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable_owned_tokens_index", - "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable_owned_tokens_index.read" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 58, - "end_line": 27, - "input_file": { - "filename": "autogen/starknet/storage_var/ERC721Enumerable_owned_tokens_index/impl.cairo" - }, - "start_col": 9, - "start_line": 27 - } - }, - "1947": { - "accessible_scopes": [ - "openzeppelin.token.erc721.enumerable.library", - "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable_owned_tokens_index", - "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable_owned_tokens_index.write" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 62, - "end_line": 30, - "input_file": { - "filename": "autogen/starknet/storage_var/ERC721Enumerable_owned_tokens_index/impl.cairo" - }, - "parent_location": [ - { - "end_col": 41, - "end_line": 7, - "input_file": { - "filename": "autogen/starknet/storage_var/ERC721Enumerable_owned_tokens_index/decl.cairo" - }, - "parent_location": [ - { - "end_col": 44, - "end_line": 33, - "input_file": { - "filename": "autogen/starknet/storage_var/ERC721Enumerable_owned_tokens_index/impl.cairo" - }, - "start_col": 30, - "start_line": 33 - }, - "While trying to retrieve the implicit argument 'pedersen_ptr' in:" - ], - "start_col": 15, - "start_line": 7 - }, - "While expanding the reference 'pedersen_ptr' in:" - ], - "start_col": 36, - "start_line": 30 - } - }, - "1948": { - "accessible_scopes": [ - "openzeppelin.token.erc721.enumerable.library", - "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable_owned_tokens_index", - "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable_owned_tokens_index.write" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 79, - "end_line": 30, - "input_file": { - "filename": "autogen/starknet/storage_var/ERC721Enumerable_owned_tokens_index/impl.cairo" - }, - "parent_location": [ - { - "end_col": 58, - "end_line": 7, - "input_file": { - "filename": "autogen/starknet/storage_var/ERC721Enumerable_owned_tokens_index/decl.cairo" - }, - "parent_location": [ - { - "end_col": 44, - "end_line": 33, - "input_file": { - "filename": "autogen/starknet/storage_var/ERC721Enumerable_owned_tokens_index/impl.cairo" - }, - "start_col": 30, - "start_line": 33 - }, - "While trying to retrieve the implicit argument 'range_check_ptr' in:" - ], - "start_col": 43, - "start_line": 7 - }, - "While expanding the reference 'range_check_ptr' in:" - ], - "start_col": 64, - "start_line": 30 - } - }, - "1949": { - "accessible_scopes": [ - "openzeppelin.token.erc721.enumerable.library", - "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable_owned_tokens_index", - "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable_owned_tokens_index.write" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 26, - "end_line": 31, - "input_file": { - "filename": "autogen/starknet/storage_var/ERC721Enumerable_owned_tokens_index/impl.cairo" - }, - "parent_location": [ - { - "end_col": 43, - "end_line": 33, - "input_file": { - "filename": "autogen/starknet/storage_var/ERC721Enumerable_owned_tokens_index/impl.cairo" - }, - "start_col": 35, - "start_line": 33 - }, - "While expanding the reference 'token_id' in:" - ], - "start_col": 9, - "start_line": 31 - } - }, - "1950": { - "accessible_scopes": [ - "openzeppelin.token.erc721.enumerable.library", - "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable_owned_tokens_index", - "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable_owned_tokens_index.write" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 26, - "end_line": 31, - "input_file": { - "filename": "autogen/starknet/storage_var/ERC721Enumerable_owned_tokens_index/impl.cairo" - }, - "parent_location": [ - { - "end_col": 43, - "end_line": 33, - "input_file": { - "filename": "autogen/starknet/storage_var/ERC721Enumerable_owned_tokens_index/impl.cairo" - }, - "start_col": 35, - "start_line": 33 - }, - "While expanding the reference 'token_id' in:" - ], - "start_col": 9, - "start_line": 31 - } - }, - "1951": { - "accessible_scopes": [ - "openzeppelin.token.erc721.enumerable.library", - "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable_owned_tokens_index", - "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable_owned_tokens_index.write" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 44, - "end_line": 33, - "input_file": { - "filename": "autogen/starknet/storage_var/ERC721Enumerable_owned_tokens_index/impl.cairo" - }, - "start_col": 30, - "start_line": 33 - } - }, - "1953": { - "accessible_scopes": [ - "openzeppelin.token.erc721.enumerable.library", - "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable_owned_tokens_index", - "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable_owned_tokens_index.write" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 34, - "end_line": 30, - "input_file": { - "filename": "autogen/starknet/storage_var/ERC721Enumerable_owned_tokens_index/impl.cairo" - }, - "parent_location": [ - { - "end_col": 38, - "end_line": 370, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/starknet/common/syscalls.cairo" - }, - "parent_location": [ - { - "end_col": 80, - "end_line": 34, - "input_file": { - "filename": "autogen/starknet/storage_var/ERC721Enumerable_owned_tokens_index/impl.cairo" - }, - "start_col": 9, - "start_line": 34 - }, - "While trying to retrieve the implicit argument 'syscall_ptr' in:" - ], - "start_col": 20, - "start_line": 370 - }, - "While expanding the reference 'syscall_ptr' in:" - ], - "start_col": 16, - "start_line": 30 - } - }, - "1954": { - "accessible_scopes": [ - "openzeppelin.token.erc721.enumerable.library", - "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable_owned_tokens_index", - "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable_owned_tokens_index.write" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 26, - "end_line": 33, - "input_file": { - "filename": "autogen/starknet/storage_var/ERC721Enumerable_owned_tokens_index/impl.cairo" - }, - "parent_location": [ - { - "end_col": 43, - "end_line": 34, - "input_file": { - "filename": "autogen/starknet/storage_var/ERC721Enumerable_owned_tokens_index/impl.cairo" - }, - "start_col": 31, - "start_line": 34 - }, - "While expanding the reference 'storage_addr' in:" - ], - "start_col": 14, - "start_line": 33 - } - }, - "1955": { - "accessible_scopes": [ - "openzeppelin.token.erc721.enumerable.library", - "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable_owned_tokens_index", - "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable_owned_tokens_index.write" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 79, - "end_line": 34, - "input_file": { - "filename": "autogen/starknet/storage_var/ERC721Enumerable_owned_tokens_index/impl.cairo" - }, - "start_col": 55, - "start_line": 34 - } - }, - "1956": { - "accessible_scopes": [ - "openzeppelin.token.erc721.enumerable.library", - "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable_owned_tokens_index", - "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable_owned_tokens_index.write" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 80, - "end_line": 34, - "input_file": { - "filename": "autogen/starknet/storage_var/ERC721Enumerable_owned_tokens_index/impl.cairo" - }, - "start_col": 9, - "start_line": 34 - } - }, - "1958": { - "accessible_scopes": [ - "openzeppelin.token.erc721.enumerable.library", - "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable_owned_tokens_index", - "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable_owned_tokens_index.write" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 47, - "end_line": 35, - "input_file": { - "filename": "autogen/starknet/storage_var/ERC721Enumerable_owned_tokens_index/impl.cairo" - }, - "start_col": 31, - "start_line": 35 - } - }, - "1960": { - "accessible_scopes": [ - "openzeppelin.token.erc721.enumerable.library", - "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable_owned_tokens_index", - "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable_owned_tokens_index.write" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 79, - "end_line": 35, - "input_file": { - "filename": "autogen/starknet/storage_var/ERC721Enumerable_owned_tokens_index/impl.cairo" - }, - "start_col": 55, - "start_line": 35 - } - }, - "1961": { - "accessible_scopes": [ - "openzeppelin.token.erc721.enumerable.library", - "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable_owned_tokens_index", - "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable_owned_tokens_index.write" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 80, - "end_line": 35, - "input_file": { - "filename": "autogen/starknet/storage_var/ERC721Enumerable_owned_tokens_index/impl.cairo" - }, - "start_col": 9, - "start_line": 35 - } - }, - "1963": { - "accessible_scopes": [ - "openzeppelin.token.erc721.enumerable.library", - "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable_owned_tokens_index", - "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable_owned_tokens_index.write" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 41, - "end_line": 7, - "input_file": { - "filename": "autogen/starknet/storage_var/ERC721Enumerable_owned_tokens_index/decl.cairo" - }, - "parent_location": [ - { - "end_col": 44, - "end_line": 33, - "input_file": { - "filename": "autogen/starknet/storage_var/ERC721Enumerable_owned_tokens_index/impl.cairo" - }, - "parent_location": [ - { - "end_col": 62, - "end_line": 21, - "input_file": { - "filename": "autogen/starknet/storage_var/ERC721Enumerable_owned_tokens_index/decl.cairo" - }, - "parent_location": [ - { - "end_col": 19, - "end_line": 36, - "input_file": { - "filename": "autogen/starknet/storage_var/ERC721Enumerable_owned_tokens_index/impl.cairo" - }, - "start_col": 9, - "start_line": 36 - }, - "While trying to retrieve the implicit argument 'pedersen_ptr' in:" - ], - "start_col": 36, - "start_line": 21 - }, - "While expanding the reference 'pedersen_ptr' in:" - ], - "start_col": 30, - "start_line": 33 - }, - "While trying to update the implicit return value 'pedersen_ptr' in:" - ], - "start_col": 15, - "start_line": 7 - } - }, - "1964": { - "accessible_scopes": [ - "openzeppelin.token.erc721.enumerable.library", - "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable_owned_tokens_index", - "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable_owned_tokens_index.write" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 58, - "end_line": 7, - "input_file": { - "filename": "autogen/starknet/storage_var/ERC721Enumerable_owned_tokens_index/decl.cairo" - }, - "parent_location": [ - { - "end_col": 44, - "end_line": 33, - "input_file": { - "filename": "autogen/starknet/storage_var/ERC721Enumerable_owned_tokens_index/impl.cairo" - }, - "parent_location": [ - { - "end_col": 79, - "end_line": 21, - "input_file": { - "filename": "autogen/starknet/storage_var/ERC721Enumerable_owned_tokens_index/decl.cairo" - }, - "parent_location": [ - { - "end_col": 19, - "end_line": 36, - "input_file": { - "filename": "autogen/starknet/storage_var/ERC721Enumerable_owned_tokens_index/impl.cairo" - }, - "start_col": 9, - "start_line": 36 - }, - "While trying to retrieve the implicit argument 'range_check_ptr' in:" - ], - "start_col": 64, - "start_line": 21 - }, - "While expanding the reference 'range_check_ptr' in:" - ], - "start_col": 30, - "start_line": 33 - }, - "While trying to update the implicit return value 'range_check_ptr' in:" - ], - "start_col": 43, - "start_line": 7 - } - }, - "1965": { - "accessible_scopes": [ - "openzeppelin.token.erc721.enumerable.library", - "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable_owned_tokens_index", - "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable_owned_tokens_index.write" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 19, - "end_line": 36, - "input_file": { - "filename": "autogen/starknet/storage_var/ERC721Enumerable_owned_tokens_index/impl.cairo" - }, - "start_col": 9, - "start_line": 36 - } - }, - "1966": { - "accessible_scopes": [ - "openzeppelin.token.erc721.enumerable.library", - "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable", - "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable.initializer" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 40, - "end_line": 44, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" - }, - "parent_location": [ - { - "end_col": 47, - "end_line": 29, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/introspection/erc165/library.cairo" - }, - "parent_location": [ - { - "end_col": 57, - "end_line": 45, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" - }, - "start_col": 9, - "start_line": 45 - }, - "While trying to retrieve the implicit argument 'syscall_ptr' in:" - ], - "start_col": 29, - "start_line": 29 - }, - "While expanding the reference 'syscall_ptr' in:" - ], - "start_col": 22, - "start_line": 44 - } - }, - "1967": { - "accessible_scopes": [ - "openzeppelin.token.erc721.enumerable.library", - "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable", - "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable.initializer" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 68, - "end_line": 44, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" - }, - "parent_location": [ - { - "end_col": 75, - "end_line": 29, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/introspection/erc165/library.cairo" - }, - "parent_location": [ - { - "end_col": 57, - "end_line": 45, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" - }, - "start_col": 9, - "start_line": 45 - }, - "While trying to retrieve the implicit argument 'pedersen_ptr' in:" - ], - "start_col": 49, - "start_line": 29 - }, - "While expanding the reference 'pedersen_ptr' in:" - ], - "start_col": 42, - "start_line": 44 - } - }, - "1968": { - "accessible_scopes": [ - "openzeppelin.token.erc721.enumerable.library", - "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable", - "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable.initializer" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 85, - "end_line": 44, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" - }, - "parent_location": [ - { - "end_col": 92, - "end_line": 29, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/introspection/erc165/library.cairo" - }, - "parent_location": [ - { - "end_col": 57, - "end_line": 45, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" - }, - "start_col": 9, - "start_line": 45 - }, - "While trying to retrieve the implicit argument 'range_check_ptr' in:" - ], - "start_col": 77, - "start_line": 29 - }, - "While expanding the reference 'range_check_ptr' in:" - ], - "start_col": 70, - "start_line": 44 - } - }, - "1969": { - "accessible_scopes": [ - "openzeppelin.token.erc721.enumerable.library", - "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable", - "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable.initializer" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 56, - "end_line": 45, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" - }, - "start_col": 35, - "start_line": 45 - } - }, - "1971": { - "accessible_scopes": [ - "openzeppelin.token.erc721.enumerable.library", - "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable", - "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable.initializer" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 57, - "end_line": 45, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" - }, - "start_col": 9, - "start_line": 45 - } - }, - "1973": { - "accessible_scopes": [ - "openzeppelin.token.erc721.enumerable.library", - "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable", - "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable.initializer" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 19, - "end_line": 46, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" - }, - "start_col": 9, - "start_line": 46 - } - }, - "1974": { - "accessible_scopes": [ - "openzeppelin.token.erc721.enumerable.library", - "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable", - "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable.total_supply" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 41, - "end_line": 53, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" - }, - "parent_location": [ - { - "end_col": 33, - "end_line": 13, - "input_file": { - "filename": "autogen/starknet/storage_var/ERC721Enumerable_all_tokens_len/decl.cairo" - }, - "parent_location": [ - { - "end_col": 54, - "end_line": 56, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" - }, - "start_col": 16, - "start_line": 56 - }, - "While trying to retrieve the implicit argument 'syscall_ptr' in:" - ], - "start_col": 15, - "start_line": 13 - }, - "While expanding the reference 'syscall_ptr' in:" - ], - "start_col": 23, - "start_line": 53 - } - }, - "1975": { - "accessible_scopes": [ - "openzeppelin.token.erc721.enumerable.library", - "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable", - "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable.total_supply" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 69, - "end_line": 53, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" - }, - "parent_location": [ - { - "end_col": 61, - "end_line": 13, - "input_file": { - "filename": "autogen/starknet/storage_var/ERC721Enumerable_all_tokens_len/decl.cairo" - }, - "parent_location": [ - { - "end_col": 54, - "end_line": 56, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" - }, - "start_col": 16, - "start_line": 56 - }, - "While trying to retrieve the implicit argument 'pedersen_ptr' in:" - ], - "start_col": 35, - "start_line": 13 - }, - "While expanding the reference 'pedersen_ptr' in:" - ], - "start_col": 43, - "start_line": 53 - } - }, - "1976": { - "accessible_scopes": [ - "openzeppelin.token.erc721.enumerable.library", - "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable", - "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable.total_supply" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 86, - "end_line": 53, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" - }, - "parent_location": [ - { - "end_col": 78, - "end_line": 13, - "input_file": { - "filename": "autogen/starknet/storage_var/ERC721Enumerable_all_tokens_len/decl.cairo" - }, - "parent_location": [ - { - "end_col": 54, - "end_line": 56, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" - }, - "start_col": 16, - "start_line": 56 - }, - "While trying to retrieve the implicit argument 'range_check_ptr' in:" - ], - "start_col": 63, - "start_line": 13 - }, - "While expanding the reference 'range_check_ptr' in:" - ], - "start_col": 71, - "start_line": 53 - } - }, - "1977": { - "accessible_scopes": [ - "openzeppelin.token.erc721.enumerable.library", - "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable", - "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable.total_supply" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 54, - "end_line": 56, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" - }, - "start_col": 16, - "start_line": 56 - } - }, - "1979": { - "accessible_scopes": [ - "openzeppelin.token.erc721.enumerable.library", - "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable", - "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable.total_supply" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 55, - "end_line": 56, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" - }, - "start_col": 9, - "start_line": 56 - } - }, - "1980": { - "accessible_scopes": [ - "openzeppelin.token.erc721.enumerable.library", - "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable", - "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable.token_by_index" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 22, - "end_line": 62, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" - }, - "start_col": 9, - "start_line": 62 - } - }, - "1982": { - "accessible_scopes": [ - "openzeppelin.token.erc721.enumerable.library", - "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable", - "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable.token_by_index" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 88, - "end_line": 59, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" - }, - "parent_location": [ - { - "end_col": 35, - "end_line": 21, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/uint256.cairo" - }, - "parent_location": [ - { - "end_col": 29, - "end_line": 63, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" - }, - "start_col": 9, - "start_line": 63 - }, - "While trying to retrieve the implicit argument 'range_check_ptr' in:" - ], - "start_col": 20, - "start_line": 21 - }, - "While expanding the reference 'range_check_ptr' in:" - ], - "start_col": 73, - "start_line": 59 - } - }, - "1983": { - "accessible_scopes": [ - "openzeppelin.token.erc721.enumerable.library", - "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable", - "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable.token_by_index" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 23, - "end_line": 60, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" - }, - "parent_location": [ - { - "end_col": 28, - "end_line": 63, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" - }, - "start_col": 23, - "start_line": 63 - }, - "While expanding the reference 'index' in:" - ], - "start_col": 9, - "start_line": 60 - } - }, - "1984": { - "accessible_scopes": [ - "openzeppelin.token.erc721.enumerable.library", - "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable", - "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable.token_by_index" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 23, - "end_line": 60, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" - }, - "parent_location": [ - { - "end_col": 28, - "end_line": 63, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" - }, - "start_col": 23, - "start_line": 63 - }, - "While expanding the reference 'index' in:" - ], - "start_col": 9, - "start_line": 60 - } - }, - "1985": { - "accessible_scopes": [ - "openzeppelin.token.erc721.enumerable.library", - "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable", - "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable.token_by_index" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 29, - "end_line": 63, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" - }, - "start_col": 9, - "start_line": 63 - } - }, - "1987": { - "accessible_scopes": [ - "openzeppelin.token.erc721.enumerable.library", - "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable", - "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable.token_by_index" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 43, - "end_line": 59, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" - }, - "parent_location": [ - { - "end_col": 41, - "end_line": 53, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" - }, - "parent_location": [ - { - "end_col": 61, - "end_line": 65, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" - }, - "start_col": 30, - "start_line": 65 - }, - "While trying to retrieve the implicit argument 'syscall_ptr' in:" - ], - "start_col": 23, - "start_line": 53 - }, - "While expanding the reference 'syscall_ptr' in:" - ], - "start_col": 25, - "start_line": 59 - } - }, - "1988": { - "accessible_scopes": [ - "openzeppelin.token.erc721.enumerable.library", - "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable", - "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable.token_by_index" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 71, - "end_line": 59, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" - }, - "parent_location": [ - { - "end_col": 69, - "end_line": 53, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" - }, - "parent_location": [ - { - "end_col": 61, - "end_line": 65, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" - }, - "start_col": 30, - "start_line": 65 - }, - "While trying to retrieve the implicit argument 'pedersen_ptr' in:" - ], - "start_col": 43, - "start_line": 53 - }, - "While expanding the reference 'pedersen_ptr' in:" - ], - "start_col": 45, - "start_line": 59 - } - }, - "1989": { - "accessible_scopes": [ - "openzeppelin.token.erc721.enumerable.library", - "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable", - "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable.token_by_index" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 35, - "end_line": 21, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/uint256.cairo" - }, - "parent_location": [ - { - "end_col": 29, - "end_line": 63, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" - }, - "parent_location": [ - { - "end_col": 86, - "end_line": 53, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" - }, - "parent_location": [ - { - "end_col": 61, - "end_line": 65, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" - }, - "start_col": 30, - "start_line": 65 - }, - "While trying to retrieve the implicit argument 'range_check_ptr' in:" - ], - "start_col": 71, - "start_line": 53 - }, - "While expanding the reference 'range_check_ptr' in:" - ], - "start_col": 9, - "start_line": 63 - }, - "While trying to update the implicit return value 'range_check_ptr' in:" - ], - "start_col": 20, - "start_line": 21 - } - }, - "1990": { - "accessible_scopes": [ - "openzeppelin.token.erc721.enumerable.library", - "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable", - "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable.token_by_index" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 61, - "end_line": 65, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" - }, - "start_col": 30, - "start_line": 65 - } - }, - "1992": { - "accessible_scopes": [ - "openzeppelin.token.erc721.enumerable.library", - "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable", - "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable.token_by_index" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 86, - "end_line": 53, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" - }, - "parent_location": [ - { - "end_col": 61, - "end_line": 65, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" - }, - "parent_location": [ - { - "end_col": 32, - "end_line": 133, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/uint256.cairo" - }, - "parent_location": [ - { - "end_col": 45, - "end_line": 66, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" - }, - "start_col": 23, - "start_line": 66 - }, - "While trying to retrieve the implicit argument 'range_check_ptr' in:" - ], - "start_col": 17, - "start_line": 133 - }, - "While expanding the reference 'range_check_ptr' in:" - ], - "start_col": 30, - "start_line": 65 - }, - "While trying to update the implicit return value 'range_check_ptr' in:" - ], - "start_col": 71, - "start_line": 53 - } - }, - "1993": { - "accessible_scopes": [ - "openzeppelin.token.erc721.enumerable.library", - "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable", - "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable.token_by_index" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 23, - "end_line": 60, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" - }, - "parent_location": [ - { - "end_col": 39, - "end_line": 66, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" - }, - "start_col": 34, - "start_line": 66 - }, - "While expanding the reference 'index' in:" - ], - "start_col": 9, - "start_line": 60 - } - }, - "1994": { - "accessible_scopes": [ - "openzeppelin.token.erc721.enumerable.library", - "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable", - "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable.token_by_index" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 23, - "end_line": 60, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" - }, - "parent_location": [ - { - "end_col": 39, - "end_line": 66, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" - }, - "start_col": 34, - "start_line": 66 - }, - "While expanding the reference 'index' in:" - ], - "start_col": 9, - "start_line": 60 - } - }, - "1995": { - "accessible_scopes": [ - "openzeppelin.token.erc721.enumerable.library", - "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable", - "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable.token_by_index" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 26, - "end_line": 65, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" - }, - "parent_location": [ - { - "end_col": 44, - "end_line": 66, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" - }, - "start_col": 41, - "start_line": 66 - }, - "While expanding the reference 'len' in:" - ], - "start_col": 14, - "start_line": 65 - } - }, - "1996": { - "accessible_scopes": [ - "openzeppelin.token.erc721.enumerable.library", - "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable", - "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable.token_by_index" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 26, - "end_line": 65, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" - }, - "parent_location": [ - { - "end_col": 44, - "end_line": 66, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" - }, - "start_col": 41, - "start_line": 66 - }, - "While expanding the reference 'len' in:" - ], - "start_col": 14, - "start_line": 65 - } - }, - "1997": { - "accessible_scopes": [ - "openzeppelin.token.erc721.enumerable.library", - "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable", - "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable.token_by_index" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 45, - "end_line": 66, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" - }, - "start_col": 23, - "start_line": 66 - } - }, - "1999": { - "accessible_scopes": [ - "openzeppelin.token.erc721.enumerable.library", - "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable", - "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable.token_by_index" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 33, - "end_line": 68, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" - }, - "start_col": 13, - "start_line": 68 - } - }, - "2001": { - "accessible_scopes": [ - "openzeppelin.token.erc721.enumerable.library", - "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable", - "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable.token_by_index" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 41, - "end_line": 53, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" - }, - "parent_location": [ - { - "end_col": 61, - "end_line": 65, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" - }, - "parent_location": [ - { - "end_col": 33, - "end_line": 13, - "input_file": { - "filename": "autogen/starknet/storage_var/ERC721Enumerable_all_tokens/decl.cairo" - }, - "parent_location": [ - { - "end_col": 55, - "end_line": 71, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" - }, - "start_col": 16, - "start_line": 71 - }, - "While trying to retrieve the implicit argument 'syscall_ptr' in:" - ], - "start_col": 15, - "start_line": 13 - }, - "While expanding the reference 'syscall_ptr' in:" - ], - "start_col": 30, - "start_line": 65 - }, - "While trying to update the implicit return value 'syscall_ptr' in:" - ], - "start_col": 23, - "start_line": 53 - } - }, - "2002": { - "accessible_scopes": [ - "openzeppelin.token.erc721.enumerable.library", - "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable", - "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable.token_by_index" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 69, - "end_line": 53, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" - }, - "parent_location": [ - { - "end_col": 61, - "end_line": 65, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" - }, - "parent_location": [ - { - "end_col": 61, - "end_line": 13, - "input_file": { - "filename": "autogen/starknet/storage_var/ERC721Enumerable_all_tokens/decl.cairo" - }, - "parent_location": [ - { - "end_col": 55, - "end_line": 71, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" - }, - "start_col": 16, - "start_line": 71 - }, - "While trying to retrieve the implicit argument 'pedersen_ptr' in:" - ], - "start_col": 35, - "start_line": 13 - }, - "While expanding the reference 'pedersen_ptr' in:" - ], - "start_col": 30, - "start_line": 65 - }, - "While trying to update the implicit return value 'pedersen_ptr' in:" - ], - "start_col": 43, - "start_line": 53 - } - }, - "2003": { - "accessible_scopes": [ - "openzeppelin.token.erc721.enumerable.library", - "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable", - "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable.token_by_index" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 32, - "end_line": 133, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/uint256.cairo" - }, - "parent_location": [ - { - "end_col": 45, - "end_line": 66, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" - }, - "parent_location": [ - { - "end_col": 78, - "end_line": 13, - "input_file": { - "filename": "autogen/starknet/storage_var/ERC721Enumerable_all_tokens/decl.cairo" - }, - "parent_location": [ - { - "end_col": 55, - "end_line": 71, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" - }, - "start_col": 16, - "start_line": 71 - }, - "While trying to retrieve the implicit argument 'range_check_ptr' in:" - ], - "start_col": 63, - "start_line": 13 - }, - "While expanding the reference 'range_check_ptr' in:" - ], - "start_col": 23, - "start_line": 66 - }, - "While trying to update the implicit return value 'range_check_ptr' in:" - ], - "start_col": 17, - "start_line": 133 - } - }, - "2004": { - "accessible_scopes": [ - "openzeppelin.token.erc721.enumerable.library", - "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable", - "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable.token_by_index" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 23, - "end_line": 60, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" - }, - "parent_location": [ - { - "end_col": 54, - "end_line": 71, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" - }, - "start_col": 49, - "start_line": 71 - }, - "While expanding the reference 'index' in:" - ], - "start_col": 9, - "start_line": 60 - } - }, - "2005": { - "accessible_scopes": [ - "openzeppelin.token.erc721.enumerable.library", - "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable", - "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable.token_by_index" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 23, - "end_line": 60, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" - }, - "parent_location": [ - { - "end_col": 54, - "end_line": 71, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" - }, - "start_col": 49, - "start_line": 71 - }, - "While expanding the reference 'index' in:" - ], - "start_col": 9, - "start_line": 60 - } - }, - "2006": { - "accessible_scopes": [ - "openzeppelin.token.erc721.enumerable.library", - "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable", - "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable.token_by_index" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 55, - "end_line": 71, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" - }, - "start_col": 16, - "start_line": 71 - } - }, - "2008": { - "accessible_scopes": [ - "openzeppelin.token.erc721.enumerable.library", - "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable", - "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable.token_by_index" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 56, - "end_line": 71, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" - }, - "start_col": 9, - "start_line": 71 - } - }, - "2009": { - "accessible_scopes": [ - "openzeppelin.token.erc721.enumerable.library", - "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable", - "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable.token_of_owner_by_index" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 22, - "end_line": 77, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" - }, - "start_col": 9, - "start_line": 77 - } - }, - "2011": { - "accessible_scopes": [ - "openzeppelin.token.erc721.enumerable.library", - "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable", - "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable.token_of_owner_by_index" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 97, - "end_line": 74, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" - }, - "parent_location": [ - { - "end_col": 35, - "end_line": 21, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/uint256.cairo" - }, - "parent_location": [ - { - "end_col": 29, - "end_line": 78, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" - }, - "start_col": 9, - "start_line": 78 - }, - "While trying to retrieve the implicit argument 'range_check_ptr' in:" - ], - "start_col": 20, - "start_line": 21 - }, - "While expanding the reference 'range_check_ptr' in:" - ], - "start_col": 82, - "start_line": 74 - } - }, - "2012": { - "accessible_scopes": [ - "openzeppelin.token.erc721.enumerable.library", - "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable", - "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable.token_of_owner_by_index" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 36, - "end_line": 75, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" - }, - "parent_location": [ - { - "end_col": 28, - "end_line": 78, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" - }, - "start_col": 23, - "start_line": 78 - }, - "While expanding the reference 'index' in:" - ], - "start_col": 22, - "start_line": 75 - } - }, - "2013": { - "accessible_scopes": [ - "openzeppelin.token.erc721.enumerable.library", - "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable", - "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable.token_of_owner_by_index" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 36, - "end_line": 75, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" - }, - "parent_location": [ - { - "end_col": 28, - "end_line": 78, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" - }, - "start_col": 23, - "start_line": 78 - }, - "While expanding the reference 'index' in:" - ], - "start_col": 22, - "start_line": 75 - } - }, - "2014": { - "accessible_scopes": [ - "openzeppelin.token.erc721.enumerable.library", - "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable", - "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable.token_of_owner_by_index" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 29, - "end_line": 78, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" - }, - "start_col": 9, - "start_line": 78 - } - }, - "2016": { - "accessible_scopes": [ - "openzeppelin.token.erc721.enumerable.library", - "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable", - "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable.token_of_owner_by_index" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 52, - "end_line": 74, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" - }, - "parent_location": [ - { - "end_col": 39, - "end_line": 100, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" - }, - "parent_location": [ - { - "end_col": 54, - "end_line": 80, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" - }, - "start_col": 30, - "start_line": 80 - }, - "While trying to retrieve the implicit argument 'syscall_ptr' in:" - ], - "start_col": 21, - "start_line": 100 - }, - "While expanding the reference 'syscall_ptr' in:" - ], - "start_col": 34, - "start_line": 74 - } - }, - "2017": { - "accessible_scopes": [ - "openzeppelin.token.erc721.enumerable.library", - "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable", - "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable.token_of_owner_by_index" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 80, - "end_line": 74, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" - }, - "parent_location": [ - { - "end_col": 67, - "end_line": 100, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" - }, - "parent_location": [ - { - "end_col": 54, - "end_line": 80, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" - }, - "start_col": 30, - "start_line": 80 - }, - "While trying to retrieve the implicit argument 'pedersen_ptr' in:" - ], - "start_col": 41, - "start_line": 100 - }, - "While expanding the reference 'pedersen_ptr' in:" - ], - "start_col": 54, - "start_line": 74 - } - }, - "2018": { - "accessible_scopes": [ - "openzeppelin.token.erc721.enumerable.library", - "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable", - "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable.token_of_owner_by_index" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 35, - "end_line": 21, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/uint256.cairo" - }, - "parent_location": [ - { - "end_col": 29, - "end_line": 78, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" - }, - "parent_location": [ - { - "end_col": 84, - "end_line": 100, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" - }, - "parent_location": [ - { - "end_col": 54, - "end_line": 80, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" - }, - "start_col": 30, - "start_line": 80 - }, - "While trying to retrieve the implicit argument 'range_check_ptr' in:" - ], - "start_col": 69, - "start_line": 100 - }, - "While expanding the reference 'range_check_ptr' in:" - ], - "start_col": 9, - "start_line": 78 - }, - "While trying to update the implicit return value 'range_check_ptr' in:" - ], - "start_col": 20, - "start_line": 21 - } - }, - "2019": { - "accessible_scopes": [ - "openzeppelin.token.erc721.enumerable.library", - "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable", - "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable.token_of_owner_by_index" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 20, - "end_line": 75, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" - }, - "parent_location": [ - { - "end_col": 53, - "end_line": 80, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" - }, - "start_col": 48, - "start_line": 80 - }, - "While expanding the reference 'owner' in:" - ], - "start_col": 9, - "start_line": 75 - } - }, - "2020": { - "accessible_scopes": [ - "openzeppelin.token.erc721.enumerable.library", - "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable", - "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable.token_of_owner_by_index" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 54, - "end_line": 80, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" - }, - "start_col": 30, - "start_line": 80 - } - }, - "2022": { - "accessible_scopes": [ - "openzeppelin.token.erc721.enumerable.library", - "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable", - "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable.token_of_owner_by_index" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 84, - "end_line": 100, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" - }, - "parent_location": [ - { - "end_col": 54, - "end_line": 80, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" - }, - "parent_location": [ - { - "end_col": 32, - "end_line": 133, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/uint256.cairo" - }, - "parent_location": [ - { - "end_col": 45, - "end_line": 81, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" - }, - "start_col": 23, - "start_line": 81 - }, - "While trying to retrieve the implicit argument 'range_check_ptr' in:" - ], - "start_col": 17, - "start_line": 133 - }, - "While expanding the reference 'range_check_ptr' in:" - ], - "start_col": 30, - "start_line": 80 - }, - "While trying to update the implicit return value 'range_check_ptr' in:" - ], - "start_col": 69, - "start_line": 100 - } - }, - "2023": { - "accessible_scopes": [ - "openzeppelin.token.erc721.enumerable.library", - "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable", - "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable.token_of_owner_by_index" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 36, - "end_line": 75, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" - }, - "parent_location": [ - { - "end_col": 39, - "end_line": 81, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" - }, - "start_col": 34, - "start_line": 81 - }, - "While expanding the reference 'index' in:" - ], - "start_col": 22, - "start_line": 75 - } - }, - "2024": { - "accessible_scopes": [ - "openzeppelin.token.erc721.enumerable.library", - "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable", - "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable.token_of_owner_by_index" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 36, - "end_line": 75, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" - }, - "parent_location": [ - { - "end_col": 39, - "end_line": 81, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" - }, - "start_col": 34, - "start_line": 81 - }, - "While expanding the reference 'index' in:" - ], - "start_col": 22, - "start_line": 75 - } - }, - "2025": { - "accessible_scopes": [ - "openzeppelin.token.erc721.enumerable.library", - "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable", - "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable.token_of_owner_by_index" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 26, - "end_line": 80, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" - }, - "parent_location": [ - { - "end_col": 44, - "end_line": 81, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" - }, - "start_col": 41, - "start_line": 81 - }, - "While expanding the reference 'len' in:" - ], - "start_col": 14, - "start_line": 80 - } - }, - "2026": { - "accessible_scopes": [ - "openzeppelin.token.erc721.enumerable.library", - "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable", - "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable.token_of_owner_by_index" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 26, - "end_line": 80, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" - }, - "parent_location": [ - { - "end_col": 44, - "end_line": 81, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" - }, - "start_col": 41, - "start_line": 81 - }, - "While expanding the reference 'len' in:" - ], - "start_col": 14, - "start_line": 80 - } - }, - "2027": { - "accessible_scopes": [ - "openzeppelin.token.erc721.enumerable.library", - "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable", - "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable.token_of_owner_by_index" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 45, - "end_line": 81, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" - }, - "start_col": 23, - "start_line": 81 - } - }, - "2029": { - "accessible_scopes": [ - "openzeppelin.token.erc721.enumerable.library", - "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable", - "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable.token_of_owner_by_index" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 33, - "end_line": 83, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" - }, - "start_col": 13, - "start_line": 83 - } - }, - "2031": { - "accessible_scopes": [ - "openzeppelin.token.erc721.enumerable.library", - "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable", - "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable.token_of_owner_by_index" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 39, - "end_line": 100, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" - }, - "parent_location": [ - { - "end_col": 54, - "end_line": 80, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" - }, - "parent_location": [ - { - "end_col": 33, - "end_line": 15, - "input_file": { - "filename": "autogen/starknet/storage_var/ERC721Enumerable_owned_tokens/decl.cairo" - }, - "parent_location": [ - { - "end_col": 64, - "end_line": 86, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" - }, - "start_col": 16, - "start_line": 86 - }, - "While trying to retrieve the implicit argument 'syscall_ptr' in:" - ], - "start_col": 15, - "start_line": 15 - }, - "While expanding the reference 'syscall_ptr' in:" - ], - "start_col": 30, - "start_line": 80 - }, - "While trying to update the implicit return value 'syscall_ptr' in:" - ], - "start_col": 21, - "start_line": 100 - } - }, - "2032": { - "accessible_scopes": [ - "openzeppelin.token.erc721.enumerable.library", - "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable", - "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable.token_of_owner_by_index" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 67, - "end_line": 100, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" - }, - "parent_location": [ - { - "end_col": 54, - "end_line": 80, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" - }, - "parent_location": [ - { - "end_col": 61, - "end_line": 15, - "input_file": { - "filename": "autogen/starknet/storage_var/ERC721Enumerable_owned_tokens/decl.cairo" - }, - "parent_location": [ - { - "end_col": 64, - "end_line": 86, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" - }, - "start_col": 16, - "start_line": 86 - }, - "While trying to retrieve the implicit argument 'pedersen_ptr' in:" - ], - "start_col": 35, - "start_line": 15 - }, - "While expanding the reference 'pedersen_ptr' in:" - ], - "start_col": 30, - "start_line": 80 - }, - "While trying to update the implicit return value 'pedersen_ptr' in:" - ], - "start_col": 41, - "start_line": 100 - } - }, - "2033": { - "accessible_scopes": [ - "openzeppelin.token.erc721.enumerable.library", - "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable", - "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable.token_of_owner_by_index" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 32, - "end_line": 133, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/uint256.cairo" - }, - "parent_location": [ - { - "end_col": 45, - "end_line": 81, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" - }, - "parent_location": [ - { - "end_col": 78, - "end_line": 15, - "input_file": { - "filename": "autogen/starknet/storage_var/ERC721Enumerable_owned_tokens/decl.cairo" - }, - "parent_location": [ - { - "end_col": 64, - "end_line": 86, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" - }, - "start_col": 16, - "start_line": 86 - }, - "While trying to retrieve the implicit argument 'range_check_ptr' in:" - ], - "start_col": 63, - "start_line": 15 - }, - "While expanding the reference 'range_check_ptr' in:" - ], - "start_col": 23, - "start_line": 81 - }, - "While trying to update the implicit return value 'range_check_ptr' in:" - ], - "start_col": 17, - "start_line": 133 - } - }, - "2034": { - "accessible_scopes": [ - "openzeppelin.token.erc721.enumerable.library", - "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable", - "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable.token_of_owner_by_index" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 20, - "end_line": 75, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" - }, - "parent_location": [ - { - "end_col": 56, - "end_line": 86, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" - }, - "start_col": 51, - "start_line": 86 - }, - "While expanding the reference 'owner' in:" - ], - "start_col": 9, - "start_line": 75 - } - }, - "2035": { - "accessible_scopes": [ - "openzeppelin.token.erc721.enumerable.library", - "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable", - "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable.token_of_owner_by_index" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 36, - "end_line": 75, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" - }, - "parent_location": [ - { - "end_col": 63, - "end_line": 86, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" - }, - "start_col": 58, - "start_line": 86 - }, - "While expanding the reference 'index' in:" - ], - "start_col": 22, - "start_line": 75 - } - }, - "2036": { - "accessible_scopes": [ - "openzeppelin.token.erc721.enumerable.library", - "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable", - "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable.token_of_owner_by_index" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 36, - "end_line": 75, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" - }, - "parent_location": [ - { - "end_col": 63, - "end_line": 86, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" - }, - "start_col": 58, - "start_line": 86 - }, - "While expanding the reference 'index' in:" - ], - "start_col": 22, - "start_line": 75 - } - }, - "2037": { - "accessible_scopes": [ - "openzeppelin.token.erc721.enumerable.library", - "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable", - "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable.token_of_owner_by_index" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 64, - "end_line": 86, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" - }, - "start_col": 16, - "start_line": 86 - } - }, - "2039": { - "accessible_scopes": [ - "openzeppelin.token.erc721.enumerable.library", - "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable", - "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable.token_of_owner_by_index" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 65, - "end_line": 86, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" - }, - "start_col": 9, - "start_line": 86 - } - }, - "2040": { - "accessible_scopes": [ - "openzeppelin.token.erc721.enumerable.library", - "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable", - "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable.transfer_from" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 50, - "end_line": 92, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" - }, - "parent_location": [ - { - "end_col": 31, - "end_line": 180, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" - }, - "parent_location": [ - { - "end_col": 62, - "end_line": 95, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" - }, - "start_col": 9, - "start_line": 95 - }, - "While trying to retrieve the implicit argument 'pedersen_ptr' in:" - ], - "start_col": 5, - "start_line": 180 - }, - "While expanding the reference 'pedersen_ptr' in:" - ], - "start_col": 24, - "start_line": 92 - } - }, - "2041": { - "accessible_scopes": [ - "openzeppelin.token.erc721.enumerable.library", - "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable", - "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable.transfer_from" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 70, - "end_line": 92, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" - }, - "parent_location": [ - { - "end_col": 51, - "end_line": 180, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" - }, - "parent_location": [ - { - "end_col": 62, - "end_line": 95, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" - }, - "start_col": 9, - "start_line": 95 - }, - "While trying to retrieve the implicit argument 'syscall_ptr' in:" - ], - "start_col": 33, - "start_line": 180 - }, - "While expanding the reference 'syscall_ptr' in:" - ], - "start_col": 52, - "start_line": 92 - } - }, - "2042": { - "accessible_scopes": [ - "openzeppelin.token.erc721.enumerable.library", - "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable", - "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable.transfer_from" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 87, - "end_line": 92, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" - }, - "parent_location": [ - { - "end_col": 68, - "end_line": 180, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" - }, - "parent_location": [ - { - "end_col": 62, - "end_line": 95, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" - }, - "start_col": 9, - "start_line": 95 - }, - "While trying to retrieve the implicit argument 'range_check_ptr' in:" - ], - "start_col": 53, - "start_line": 180 - }, - "While expanding the reference 'range_check_ptr' in:" - ], - "start_col": 72, - "start_line": 92 - } - }, - "2043": { - "accessible_scopes": [ - "openzeppelin.token.erc721.enumerable.library", - "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable", - "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable.transfer_from" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 20, - "end_line": 93, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" - }, - "parent_location": [ - { - "end_col": 51, - "end_line": 95, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" - }, - "start_col": 46, - "start_line": 95 - }, - "While expanding the reference 'from_' in:" - ], - "start_col": 9, - "start_line": 93 - } - }, - "2044": { - "accessible_scopes": [ - "openzeppelin.token.erc721.enumerable.library", - "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable", - "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable.transfer_from" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 49, - "end_line": 93, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" - }, - "parent_location": [ - { - "end_col": 61, - "end_line": 95, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" - }, - "start_col": 53, - "start_line": 95 - }, - "While expanding the reference 'token_id' in:" - ], - "start_col": 32, - "start_line": 93 - } - }, - "2045": { - "accessible_scopes": [ - "openzeppelin.token.erc721.enumerable.library", - "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable", - "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable.transfer_from" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 49, - "end_line": 93, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" - }, - "parent_location": [ - { - "end_col": 61, - "end_line": 95, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" - }, - "start_col": 53, - "start_line": 95 - }, - "While expanding the reference 'token_id' in:" - ], - "start_col": 32, - "start_line": 93 - } - }, - "2046": { - "accessible_scopes": [ - "openzeppelin.token.erc721.enumerable.library", - "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable", - "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable.transfer_from" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 62, - "end_line": 95, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" - }, - "start_col": 9, - "start_line": 95 - } - }, - "2048": { - "accessible_scopes": [ - "openzeppelin.token.erc721.enumerable.library", - "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable", - "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable.transfer_from" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 30, - "end_line": 93, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" - }, - "parent_location": [ - { - "end_col": 43, - "end_line": 96, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" - }, - "start_col": 41, - "start_line": 96 - }, - "While expanding the reference 'to' in:" - ], - "start_col": 22, - "start_line": 93 - } - }, - "2049": { - "accessible_scopes": [ - "openzeppelin.token.erc721.enumerable.library", - "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable", - "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable.transfer_from" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 49, - "end_line": 93, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" - }, - "parent_location": [ - { - "end_col": 53, - "end_line": 96, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" - }, - "start_col": 45, - "start_line": 96 - }, - "While expanding the reference 'token_id' in:" - ], - "start_col": 32, - "start_line": 93 - } - }, - "2050": { - "accessible_scopes": [ - "openzeppelin.token.erc721.enumerable.library", - "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable", - "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable.transfer_from" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 49, - "end_line": 93, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" - }, - "parent_location": [ - { - "end_col": 53, - "end_line": 96, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" - }, - "start_col": 45, - "start_line": 96 - }, - "While expanding the reference 'token_id' in:" - ], - "start_col": 32, - "start_line": 93 - } - }, - "2051": { - "accessible_scopes": [ - "openzeppelin.token.erc721.enumerable.library", - "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable", - "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable.transfer_from" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 54, - "end_line": 96, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" - }, - "start_col": 9, - "start_line": 96 - } - }, - "2053": { - "accessible_scopes": [ - "openzeppelin.token.erc721.enumerable.library", - "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable", - "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable.transfer_from" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 20, - "end_line": 93, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" - }, - "parent_location": [ - { - "end_col": 35, - "end_line": 97, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" - }, - "start_col": 30, - "start_line": 97 - }, - "While expanding the reference 'from_' in:" - ], - "start_col": 9, - "start_line": 93 - } - }, - "2054": { - "accessible_scopes": [ - "openzeppelin.token.erc721.enumerable.library", - "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable", - "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable.transfer_from" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 30, - "end_line": 93, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" - }, - "parent_location": [ - { - "end_col": 39, - "end_line": 97, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" - }, - "start_col": 37, - "start_line": 97 - }, - "While expanding the reference 'to' in:" - ], - "start_col": 22, - "start_line": 93 - } - }, - "2055": { - "accessible_scopes": [ - "openzeppelin.token.erc721.enumerable.library", - "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable", - "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable.transfer_from" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 49, - "end_line": 93, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" - }, - "parent_location": [ - { - "end_col": 49, - "end_line": 97, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" - }, - "start_col": 41, - "start_line": 97 - }, - "While expanding the reference 'token_id' in:" - ], - "start_col": 32, - "start_line": 93 - } - }, - "2056": { - "accessible_scopes": [ - "openzeppelin.token.erc721.enumerable.library", - "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable", - "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable.transfer_from" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 49, - "end_line": 93, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" - }, - "parent_location": [ - { - "end_col": 49, - "end_line": 97, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" - }, - "start_col": 41, - "start_line": 97 - }, - "While expanding the reference 'token_id' in:" - ], - "start_col": 32, - "start_line": 93 - } - }, - "2057": { - "accessible_scopes": [ - "openzeppelin.token.erc721.enumerable.library", - "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable", - "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable.transfer_from" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 50, - "end_line": 97, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" - }, - "start_col": 9, - "start_line": 97 - } - }, - "2059": { - "accessible_scopes": [ - "openzeppelin.token.erc721.enumerable.library", - "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable", - "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable.transfer_from" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 19, - "end_line": 98, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" - }, - "start_col": 9, - "start_line": 98 - } - }, - "2060": { - "accessible_scopes": [ - "openzeppelin.token.erc721.enumerable.library", - "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable", - "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable.safe_transfer_from" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 55, - "end_line": 101, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" - }, - "parent_location": [ - { - "end_col": 31, - "end_line": 180, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" - }, - "parent_location": [ - { - "end_col": 62, - "end_line": 104, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" - }, - "start_col": 9, - "start_line": 104 - }, - "While trying to retrieve the implicit argument 'pedersen_ptr' in:" - ], - "start_col": 5, - "start_line": 180 - }, - "While expanding the reference 'pedersen_ptr' in:" - ], - "start_col": 29, - "start_line": 101 - } - }, - "2061": { - "accessible_scopes": [ - "openzeppelin.token.erc721.enumerable.library", - "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable", - "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable.safe_transfer_from" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 75, - "end_line": 101, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" - }, - "parent_location": [ - { - "end_col": 51, - "end_line": 180, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" - }, - "parent_location": [ - { - "end_col": 62, - "end_line": 104, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" - }, - "start_col": 9, - "start_line": 104 - }, - "While trying to retrieve the implicit argument 'syscall_ptr' in:" - ], - "start_col": 33, - "start_line": 180 - }, - "While expanding the reference 'syscall_ptr' in:" - ], - "start_col": 57, - "start_line": 101 - } - }, - "2062": { - "accessible_scopes": [ - "openzeppelin.token.erc721.enumerable.library", - "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable", - "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable.safe_transfer_from" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 92, - "end_line": 101, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" - }, - "parent_location": [ - { - "end_col": 68, - "end_line": 180, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" - }, - "parent_location": [ - { - "end_col": 62, - "end_line": 104, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" - }, - "start_col": 9, - "start_line": 104 - }, - "While trying to retrieve the implicit argument 'range_check_ptr' in:" - ], - "start_col": 53, - "start_line": 180 - }, - "While expanding the reference 'range_check_ptr' in:" - ], - "start_col": 77, - "start_line": 101 - } - }, - "2063": { - "accessible_scopes": [ - "openzeppelin.token.erc721.enumerable.library", - "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable", - "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable.safe_transfer_from" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 20, - "end_line": 102, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" - }, - "parent_location": [ - { - "end_col": 51, - "end_line": 104, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" - }, - "start_col": 46, - "start_line": 104 - }, - "While expanding the reference 'from_' in:" - ], - "start_col": 9, - "start_line": 102 - } - }, - "2064": { - "accessible_scopes": [ - "openzeppelin.token.erc721.enumerable.library", - "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable", - "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable.safe_transfer_from" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 49, - "end_line": 102, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" - }, - "parent_location": [ - { - "end_col": 61, - "end_line": 104, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" - }, - "start_col": 53, - "start_line": 104 - }, - "While expanding the reference 'token_id' in:" - ], - "start_col": 32, - "start_line": 102 - } - }, - "2065": { - "accessible_scopes": [ - "openzeppelin.token.erc721.enumerable.library", - "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable", - "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable.safe_transfer_from" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 49, - "end_line": 102, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" - }, - "parent_location": [ - { - "end_col": 61, - "end_line": 104, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" - }, - "start_col": 53, - "start_line": 104 - }, - "While expanding the reference 'token_id' in:" - ], - "start_col": 32, - "start_line": 102 - } - }, - "2066": { - "accessible_scopes": [ - "openzeppelin.token.erc721.enumerable.library", - "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable", - "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable.safe_transfer_from" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 62, - "end_line": 104, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" - }, - "start_col": 9, - "start_line": 104 - } - }, - "2068": { - "accessible_scopes": [ - "openzeppelin.token.erc721.enumerable.library", - "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable", - "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable.safe_transfer_from" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 30, - "end_line": 102, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" - }, - "parent_location": [ - { - "end_col": 43, - "end_line": 105, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" - }, - "start_col": 41, - "start_line": 105 - }, - "While expanding the reference 'to' in:" - ], - "start_col": 22, - "start_line": 102 - } - }, - "2069": { - "accessible_scopes": [ - "openzeppelin.token.erc721.enumerable.library", - "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable", - "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable.safe_transfer_from" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 49, - "end_line": 102, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" - }, - "parent_location": [ - { - "end_col": 53, - "end_line": 105, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" - }, - "start_col": 45, - "start_line": 105 - }, - "While expanding the reference 'token_id' in:" - ], - "start_col": 32, - "start_line": 102 - } - }, - "2070": { - "accessible_scopes": [ - "openzeppelin.token.erc721.enumerable.library", - "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable", - "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable.safe_transfer_from" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 49, - "end_line": 102, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" - }, - "parent_location": [ - { - "end_col": 53, - "end_line": 105, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" - }, - "start_col": 45, - "start_line": 105 - }, - "While expanding the reference 'token_id' in:" - ], - "start_col": 32, - "start_line": 102 - } - }, - "2071": { - "accessible_scopes": [ - "openzeppelin.token.erc721.enumerable.library", - "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable", - "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable.safe_transfer_from" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 54, - "end_line": 105, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" - }, - "start_col": 9, - "start_line": 105 - } - }, - "2073": { - "accessible_scopes": [ - "openzeppelin.token.erc721.enumerable.library", - "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable", - "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable.safe_transfer_from" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 20, - "end_line": 102, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" - }, - "parent_location": [ - { - "end_col": 40, - "end_line": 106, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" - }, - "start_col": 35, - "start_line": 106 - }, - "While expanding the reference 'from_' in:" - ], - "start_col": 9, - "start_line": 102 - } - }, - "2074": { - "accessible_scopes": [ - "openzeppelin.token.erc721.enumerable.library", - "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable", - "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable.safe_transfer_from" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 30, - "end_line": 102, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" - }, - "parent_location": [ - { - "end_col": 44, - "end_line": 106, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" - }, - "start_col": 42, - "start_line": 106 - }, - "While expanding the reference 'to' in:" - ], - "start_col": 22, - "start_line": 102 - } - }, - "2075": { - "accessible_scopes": [ - "openzeppelin.token.erc721.enumerable.library", - "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable", - "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable.safe_transfer_from" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 49, - "end_line": 102, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" - }, - "parent_location": [ - { - "end_col": 54, - "end_line": 106, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" - }, - "start_col": 46, - "start_line": 106 - }, - "While expanding the reference 'token_id' in:" - ], - "start_col": 32, - "start_line": 102 - } - }, - "2076": { - "accessible_scopes": [ - "openzeppelin.token.erc721.enumerable.library", - "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable", - "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable.safe_transfer_from" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 49, - "end_line": 102, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" - }, - "parent_location": [ - { - "end_col": 54, - "end_line": 106, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" - }, - "start_col": 46, - "start_line": 106 - }, - "While expanding the reference 'token_id' in:" - ], - "start_col": 32, - "start_line": 102 - } - }, - "2077": { - "accessible_scopes": [ - "openzeppelin.token.erc721.enumerable.library", - "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable", - "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable.safe_transfer_from" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 65, - "end_line": 102, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" - }, - "parent_location": [ - { - "end_col": 64, - "end_line": 106, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" - }, - "start_col": 56, - "start_line": 106 - }, - "While expanding the reference 'data_len' in:" - ], - "start_col": 51, - "start_line": 102 - } - }, - "2078": { - "accessible_scopes": [ - "openzeppelin.token.erc721.enumerable.library", - "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable", - "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable.safe_transfer_from" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 78, - "end_line": 102, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" - }, - "parent_location": [ - { - "end_col": 70, - "end_line": 106, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" - }, - "start_col": 66, - "start_line": 106 - }, - "While expanding the reference 'data' in:" - ], - "start_col": 67, - "start_line": 102 - } - }, - "2079": { - "accessible_scopes": [ - "openzeppelin.token.erc721.enumerable.library", - "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable", - "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable.safe_transfer_from" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 71, - "end_line": 106, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" - }, - "start_col": 9, - "start_line": 106 - } - }, - "2081": { - "accessible_scopes": [ - "openzeppelin.token.erc721.enumerable.library", - "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable", - "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable.safe_transfer_from" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 19, - "end_line": 107, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" - }, - "start_col": 9, - "start_line": 107 - } - }, - "2082": { - "accessible_scopes": [ - "openzeppelin.token.erc721.enumerable.library", - "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable", - "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable._mint" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 42, - "end_line": 114, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" - }, - "parent_location": [ - { - "end_col": 31, - "end_line": 137, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" - }, - "parent_location": [ - { - "end_col": 55, - "end_line": 117, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" - }, - "start_col": 9, - "start_line": 117 - }, - "While trying to retrieve the implicit argument 'pedersen_ptr' in:" - ], - "start_col": 5, - "start_line": 137 - }, - "While expanding the reference 'pedersen_ptr' in:" - ], - "start_col": 16, - "start_line": 114 - } - }, - "2083": { - "accessible_scopes": [ - "openzeppelin.token.erc721.enumerable.library", - "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable", - "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable._mint" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 62, - "end_line": 114, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" - }, - "parent_location": [ - { - "end_col": 51, - "end_line": 137, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" - }, - "parent_location": [ - { - "end_col": 55, - "end_line": 117, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" - }, - "start_col": 9, - "start_line": 117 - }, - "While trying to retrieve the implicit argument 'syscall_ptr' in:" - ], - "start_col": 33, - "start_line": 137 - }, - "While expanding the reference 'syscall_ptr' in:" - ], - "start_col": 44, - "start_line": 114 - } - }, - "2084": { - "accessible_scopes": [ - "openzeppelin.token.erc721.enumerable.library", - "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable", - "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable._mint" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 79, - "end_line": 114, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" - }, - "parent_location": [ - { - "end_col": 68, - "end_line": 137, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" - }, - "parent_location": [ - { - "end_col": 55, - "end_line": 117, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" - }, - "start_col": 9, - "start_line": 117 - }, - "While trying to retrieve the implicit argument 'range_check_ptr' in:" - ], - "start_col": 53, - "start_line": 137 - }, - "While expanding the reference 'range_check_ptr' in:" - ], - "start_col": 64, - "start_line": 114 - } - }, - "2085": { - "accessible_scopes": [ - "openzeppelin.token.erc721.enumerable.library", - "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable", - "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable._mint" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 36, - "end_line": 115, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" - }, - "parent_location": [ - { - "end_col": 54, - "end_line": 117, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" - }, - "start_col": 46, - "start_line": 117 - }, - "While expanding the reference 'token_id' in:" - ], - "start_col": 19, - "start_line": 115 - } - }, - "2086": { - "accessible_scopes": [ - "openzeppelin.token.erc721.enumerable.library", - "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable", - "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable._mint" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 36, - "end_line": 115, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" - }, - "parent_location": [ - { - "end_col": 54, - "end_line": 117, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" - }, - "start_col": 46, - "start_line": 117 - }, - "While expanding the reference 'token_id' in:" - ], - "start_col": 19, - "start_line": 115 - } - }, - "2087": { - "accessible_scopes": [ - "openzeppelin.token.erc721.enumerable.library", - "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable", - "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable._mint" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 55, - "end_line": 117, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" - }, - "start_col": 9, - "start_line": 117 - } - }, - "2089": { - "accessible_scopes": [ - "openzeppelin.token.erc721.enumerable.library", - "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable", - "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable._mint" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 17, - "end_line": 115, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" - }, - "parent_location": [ - { - "end_col": 43, - "end_line": 118, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" - }, - "start_col": 41, - "start_line": 118 - }, - "While expanding the reference 'to' in:" - ], - "start_col": 9, - "start_line": 115 - } - }, - "2090": { - "accessible_scopes": [ - "openzeppelin.token.erc721.enumerable.library", - "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable", - "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable._mint" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 36, - "end_line": 115, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" - }, - "parent_location": [ - { - "end_col": 53, - "end_line": 118, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" - }, - "start_col": 45, - "start_line": 118 - }, - "While expanding the reference 'token_id' in:" - ], - "start_col": 19, - "start_line": 115 - } - }, - "2091": { - "accessible_scopes": [ - "openzeppelin.token.erc721.enumerable.library", - "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable", - "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable._mint" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 36, - "end_line": 115, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" - }, - "parent_location": [ - { - "end_col": 53, - "end_line": 118, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" - }, - "start_col": 45, - "start_line": 118 - }, - "While expanding the reference 'token_id' in:" - ], - "start_col": 19, - "start_line": 115 - } - }, - "2092": { - "accessible_scopes": [ - "openzeppelin.token.erc721.enumerable.library", - "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable", - "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable._mint" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 54, - "end_line": 118, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" - }, - "start_col": 9, - "start_line": 118 - } - }, - "2094": { - "accessible_scopes": [ - "openzeppelin.token.erc721.enumerable.library", - "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable", - "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable._mint" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 17, - "end_line": 115, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" - }, - "parent_location": [ - { - "end_col": 24, - "end_line": 119, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" - }, - "start_col": 22, - "start_line": 119 - }, - "While expanding the reference 'to' in:" - ], - "start_col": 9, - "start_line": 115 - } - }, - "2095": { - "accessible_scopes": [ - "openzeppelin.token.erc721.enumerable.library", - "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable", - "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable._mint" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 36, - "end_line": 115, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" - }, - "parent_location": [ - { - "end_col": 34, - "end_line": 119, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" - }, - "start_col": 26, - "start_line": 119 - }, - "While expanding the reference 'token_id' in:" - ], - "start_col": 19, - "start_line": 115 - } - }, - "2096": { - "accessible_scopes": [ - "openzeppelin.token.erc721.enumerable.library", - "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable", - "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable._mint" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 36, - "end_line": 115, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" - }, - "parent_location": [ - { - "end_col": 34, - "end_line": 119, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" - }, - "start_col": 26, - "start_line": 119 - }, - "While expanding the reference 'token_id' in:" - ], - "start_col": 19, - "start_line": 115 - } - }, - "2097": { - "accessible_scopes": [ - "openzeppelin.token.erc721.enumerable.library", - "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable", - "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable._mint" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 35, - "end_line": 119, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" - }, - "start_col": 9, - "start_line": 119 - } - }, - "2099": { - "accessible_scopes": [ - "openzeppelin.token.erc721.enumerable.library", - "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable", - "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable._mint" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 19, - "end_line": 120, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" - }, - "start_col": 9, - "start_line": 120 - } - }, - "2100": { - "accessible_scopes": [ - "openzeppelin.token.erc721.enumerable.library", - "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable", - "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable._burn" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 62, - "end_line": 123, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" - }, - "parent_location": [ - { - "end_col": 37, - "end_line": 109, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" - }, - "parent_location": [ - { - "end_col": 48, - "end_line": 124, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" - }, - "start_col": 23, - "start_line": 124 - }, - "While trying to retrieve the implicit argument 'syscall_ptr' in:" - ], - "start_col": 19, - "start_line": 109 - }, - "While expanding the reference 'syscall_ptr' in:" - ], - "start_col": 44, - "start_line": 123 - } - }, - "2101": { - "accessible_scopes": [ - "openzeppelin.token.erc721.enumerable.library", - "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable", - "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable._burn" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 42, - "end_line": 123, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" - }, - "parent_location": [ - { - "end_col": 65, - "end_line": 109, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" - }, - "parent_location": [ - { - "end_col": 48, - "end_line": 124, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" - }, - "start_col": 23, - "start_line": 124 - }, - "While trying to retrieve the implicit argument 'pedersen_ptr' in:" - ], - "start_col": 39, - "start_line": 109 - }, - "While expanding the reference 'pedersen_ptr' in:" - ], - "start_col": 16, - "start_line": 123 - } - }, - "2102": { - "accessible_scopes": [ - "openzeppelin.token.erc721.enumerable.library", - "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable", - "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable._burn" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 79, - "end_line": 123, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" - }, - "parent_location": [ - { - "end_col": 82, - "end_line": 109, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" - }, - "parent_location": [ - { - "end_col": 48, - "end_line": 124, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" - }, - "start_col": 23, - "start_line": 124 - }, - "While trying to retrieve the implicit argument 'range_check_ptr' in:" - ], - "start_col": 67, - "start_line": 109 - }, - "While expanding the reference 'range_check_ptr' in:" - ], - "start_col": 64, - "start_line": 123 - } - }, - "2103": { - "accessible_scopes": [ - "openzeppelin.token.erc721.enumerable.library", - "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable", - "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable._burn" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 98, - "end_line": 123, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" - }, - "parent_location": [ - { - "end_col": 47, - "end_line": 124, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" - }, - "start_col": 39, - "start_line": 124 - }, - "While expanding the reference 'token_id' in:" - ], - "start_col": 81, - "start_line": 123 - } - }, - "2104": { - "accessible_scopes": [ - "openzeppelin.token.erc721.enumerable.library", - "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable", - "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable._burn" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 98, - "end_line": 123, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" - }, - "parent_location": [ - { - "end_col": 47, - "end_line": 124, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" - }, - "start_col": 39, - "start_line": 124 - }, - "While expanding the reference 'token_id' in:" - ], - "start_col": 81, - "start_line": 123 - } - }, - "2105": { - "accessible_scopes": [ - "openzeppelin.token.erc721.enumerable.library", - "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable", - "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable._burn" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 48, - "end_line": 124, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" - }, - "start_col": 23, - "start_line": 124 - } - }, - "2107": { - "accessible_scopes": [ - "openzeppelin.token.erc721.enumerable.library", - "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable", - "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable._burn" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 65, - "end_line": 109, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" - }, - "parent_location": [ - { - "end_col": 48, - "end_line": 124, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" - }, - "parent_location": [ - { - "end_col": 31, - "end_line": 180, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" - }, - "parent_location": [ - { - "end_col": 62, - "end_line": 125, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" - }, - "start_col": 9, - "start_line": 125 - }, - "While trying to retrieve the implicit argument 'pedersen_ptr' in:" - ], - "start_col": 5, - "start_line": 180 - }, - "While expanding the reference 'pedersen_ptr' in:" - ], - "start_col": 23, - "start_line": 124 - }, - "While trying to update the implicit return value 'pedersen_ptr' in:" - ], - "start_col": 39, - "start_line": 109 - } - }, - "2108": { - "accessible_scopes": [ - "openzeppelin.token.erc721.enumerable.library", - "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable", - "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable._burn" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 37, - "end_line": 109, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" - }, - "parent_location": [ - { - "end_col": 48, - "end_line": 124, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" - }, - "parent_location": [ - { - "end_col": 51, - "end_line": 180, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" - }, - "parent_location": [ - { - "end_col": 62, - "end_line": 125, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" - }, - "start_col": 9, - "start_line": 125 - }, - "While trying to retrieve the implicit argument 'syscall_ptr' in:" - ], - "start_col": 33, - "start_line": 180 - }, - "While expanding the reference 'syscall_ptr' in:" - ], - "start_col": 23, - "start_line": 124 - }, - "While trying to update the implicit return value 'syscall_ptr' in:" - ], - "start_col": 19, - "start_line": 109 - } - }, - "2109": { - "accessible_scopes": [ - "openzeppelin.token.erc721.enumerable.library", - "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable", - "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable._burn" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 82, - "end_line": 109, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" - }, - "parent_location": [ - { - "end_col": 48, - "end_line": 124, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" - }, - "parent_location": [ - { - "end_col": 68, - "end_line": 180, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" - }, - "parent_location": [ - { - "end_col": 62, - "end_line": 125, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" - }, - "start_col": 9, - "start_line": 125 - }, - "While trying to retrieve the implicit argument 'range_check_ptr' in:" - ], - "start_col": 53, - "start_line": 180 - }, - "While expanding the reference 'range_check_ptr' in:" - ], - "start_col": 23, - "start_line": 124 - }, - "While trying to update the implicit return value 'range_check_ptr' in:" - ], - "start_col": 67, - "start_line": 109 - } - }, - "2110": { - "accessible_scopes": [ - "openzeppelin.token.erc721.enumerable.library", - "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable", - "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable._burn" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 19, - "end_line": 124, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" - }, - "parent_location": [ - { - "end_col": 51, - "end_line": 125, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" - }, - "start_col": 46, - "start_line": 125 - }, - "While expanding the reference 'from_' in:" - ], - "start_col": 14, - "start_line": 124 - } - }, - "2111": { - "accessible_scopes": [ - "openzeppelin.token.erc721.enumerable.library", - "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable", - "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable._burn" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 98, - "end_line": 123, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" - }, - "parent_location": [ - { - "end_col": 61, - "end_line": 125, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" - }, - "start_col": 53, - "start_line": 125 - }, - "While expanding the reference 'token_id' in:" - ], - "start_col": 81, - "start_line": 123 - } - }, - "2112": { - "accessible_scopes": [ - "openzeppelin.token.erc721.enumerable.library", - "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable", - "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable._burn" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 98, - "end_line": 123, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" - }, - "parent_location": [ - { - "end_col": 61, - "end_line": 125, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" - }, - "start_col": 53, - "start_line": 125 - }, - "While expanding the reference 'token_id' in:" - ], - "start_col": 81, - "start_line": 123 - } - }, - "2113": { - "accessible_scopes": [ - "openzeppelin.token.erc721.enumerable.library", - "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable", - "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable._burn" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 62, - "end_line": 125, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" - }, - "start_col": 9, - "start_line": 125 - } - }, - "2115": { - "accessible_scopes": [ - "openzeppelin.token.erc721.enumerable.library", - "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable", - "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable._burn" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 98, - "end_line": 123, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" - }, - "parent_location": [ - { - "end_col": 59, - "end_line": 126, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" - }, - "start_col": 51, - "start_line": 126 - }, - "While expanding the reference 'token_id' in:" - ], - "start_col": 81, - "start_line": 123 - } - }, - "2116": { - "accessible_scopes": [ - "openzeppelin.token.erc721.enumerable.library", - "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable", - "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable._burn" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 98, - "end_line": 123, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" - }, - "parent_location": [ - { - "end_col": 59, - "end_line": 126, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" - }, - "start_col": 51, - "start_line": 126 - }, - "While expanding the reference 'token_id' in:" - ], - "start_col": 81, - "start_line": 123 - } - }, - "2117": { - "accessible_scopes": [ - "openzeppelin.token.erc721.enumerable.library", - "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable", - "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable._burn" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 60, - "end_line": 126, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" - }, - "start_col": 9, - "start_line": 126 - } - }, - "2119": { - "accessible_scopes": [ - "openzeppelin.token.erc721.enumerable.library", - "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable", - "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable._burn" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 98, - "end_line": 123, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" - }, - "parent_location": [ - { - "end_col": 30, - "end_line": 127, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" - }, - "start_col": 22, - "start_line": 127 - }, - "While expanding the reference 'token_id' in:" - ], - "start_col": 81, - "start_line": 123 - } - }, - "2120": { - "accessible_scopes": [ - "openzeppelin.token.erc721.enumerable.library", - "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable", - "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable._burn" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 98, - "end_line": 123, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" - }, - "parent_location": [ - { - "end_col": 30, - "end_line": 127, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" - }, - "start_col": 22, - "start_line": 127 - }, - "While expanding the reference 'token_id' in:" - ], - "start_col": 81, - "start_line": 123 - } - }, - "2121": { - "accessible_scopes": [ - "openzeppelin.token.erc721.enumerable.library", - "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable", - "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable._burn" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 31, - "end_line": 127, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" - }, - "start_col": 9, - "start_line": 127 - } - }, - "2123": { - "accessible_scopes": [ - "openzeppelin.token.erc721.enumerable.library", - "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable", - "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable._burn" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 19, - "end_line": 128, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" - }, - "start_col": 9, - "start_line": 128 - } - }, - "2124": { - "accessible_scopes": [ - "openzeppelin.token.erc721.enumerable.library", - "openzeppelin.token.erc721.enumerable.library._add_token_to_all_tokens_enumeration" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 51, - "end_line": 137, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" - }, - "parent_location": [ - { - "end_col": 33, - "end_line": 13, - "input_file": { - "filename": "autogen/starknet/storage_var/ERC721Enumerable_all_tokens_len/decl.cairo" - }, - "parent_location": [ - { - "end_col": 67, - "end_line": 139, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" - }, - "start_col": 29, - "start_line": 139 - }, - "While trying to retrieve the implicit argument 'syscall_ptr' in:" - ], - "start_col": 15, - "start_line": 13 - }, - "While expanding the reference 'syscall_ptr' in:" - ], - "start_col": 33, - "start_line": 137 - } - }, - "2125": { - "accessible_scopes": [ - "openzeppelin.token.erc721.enumerable.library", - "openzeppelin.token.erc721.enumerable.library._add_token_to_all_tokens_enumeration" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 31, - "end_line": 137, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" - }, - "parent_location": [ - { - "end_col": 61, - "end_line": 13, - "input_file": { - "filename": "autogen/starknet/storage_var/ERC721Enumerable_all_tokens_len/decl.cairo" - }, - "parent_location": [ - { - "end_col": 67, - "end_line": 139, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" - }, - "start_col": 29, - "start_line": 139 - }, - "While trying to retrieve the implicit argument 'pedersen_ptr' in:" - ], - "start_col": 35, - "start_line": 13 - }, - "While expanding the reference 'pedersen_ptr' in:" - ], - "start_col": 5, - "start_line": 137 - } - }, - "2126": { - "accessible_scopes": [ - "openzeppelin.token.erc721.enumerable.library", - "openzeppelin.token.erc721.enumerable.library._add_token_to_all_tokens_enumeration" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 68, - "end_line": 137, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" - }, - "parent_location": [ - { - "end_col": 78, - "end_line": 13, - "input_file": { - "filename": "autogen/starknet/storage_var/ERC721Enumerable_all_tokens_len/decl.cairo" - }, - "parent_location": [ - { - "end_col": 67, - "end_line": 139, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" - }, - "start_col": 29, - "start_line": 139 - }, - "While trying to retrieve the implicit argument 'range_check_ptr' in:" - ], - "start_col": 63, - "start_line": 13 - }, - "While expanding the reference 'range_check_ptr' in:" - ], - "start_col": 53, - "start_line": 137 - } - }, - "2127": { - "accessible_scopes": [ - "openzeppelin.token.erc721.enumerable.library", - "openzeppelin.token.erc721.enumerable.library._add_token_to_all_tokens_enumeration" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 67, - "end_line": 139, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" - }, - "start_col": 29, - "start_line": 139 - } - }, - "2129": { - "accessible_scopes": [ - "openzeppelin.token.erc721.enumerable.library", - "openzeppelin.token.erc721.enumerable.library._add_token_to_all_tokens_enumeration" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 20, - "end_line": 138, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" - }, - "parent_location": [ - { - "end_col": 55, - "end_line": 140, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" - }, - "start_col": 47, - "start_line": 140 - }, - "While expanding the reference 'token_id' in:" - ], - "start_col": 3, - "start_line": 138 - } - }, - "2130": { - "accessible_scopes": [ - "openzeppelin.token.erc721.enumerable.library", - "openzeppelin.token.erc721.enumerable.library._add_token_to_all_tokens_enumeration" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 20, - "end_line": 138, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" - }, - "parent_location": [ - { - "end_col": 55, - "end_line": 140, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" - }, - "start_col": 47, - "start_line": 140 - }, - "While expanding the reference 'token_id' in:" - ], - "start_col": 3, - "start_line": 138 - } - }, - "2131": { - "accessible_scopes": [ - "openzeppelin.token.erc721.enumerable.library", - "openzeppelin.token.erc721.enumerable.library._add_token_to_all_tokens_enumeration" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 56, - "end_line": 140, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" - }, - "start_col": 5, - "start_line": 140 - } - }, - "2133": { - "accessible_scopes": [ - "openzeppelin.token.erc721.enumerable.library", - "openzeppelin.token.erc721.enumerable.library._add_token_to_all_tokens_enumeration" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 20, - "end_line": 138, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" - }, - "parent_location": [ - { - "end_col": 53, - "end_line": 141, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" - }, - "start_col": 45, - "start_line": 141 - }, - "While expanding the reference 'token_id' in:" - ], - "start_col": 3, - "start_line": 138 - } - }, - "2134": { - "accessible_scopes": [ - "openzeppelin.token.erc721.enumerable.library", - "openzeppelin.token.erc721.enumerable.library._add_token_to_all_tokens_enumeration" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 20, - "end_line": 138, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" - }, - "parent_location": [ - { - "end_col": 53, - "end_line": 141, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" - }, - "start_col": 45, - "start_line": 141 - }, - "While expanding the reference 'token_id' in:" - ], - "start_col": 3, - "start_line": 138 - } - }, - "2135": { - "accessible_scopes": [ - "openzeppelin.token.erc721.enumerable.library", - "openzeppelin.token.erc721.enumerable.library._add_token_to_all_tokens_enumeration" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 25, - "end_line": 139, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" - }, - "parent_location": [ - { - "end_col": 61, - "end_line": 141, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" - }, - "start_col": 55, - "start_line": 141 - }, - "While expanding the reference 'supply' in:" - ], - "start_col": 10, - "start_line": 139 - } - }, - "2136": { - "accessible_scopes": [ - "openzeppelin.token.erc721.enumerable.library", - "openzeppelin.token.erc721.enumerable.library._add_token_to_all_tokens_enumeration" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 25, - "end_line": 139, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" - }, - "parent_location": [ - { - "end_col": 61, - "end_line": 141, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" - }, - "start_col": 55, - "start_line": 141 - }, - "While expanding the reference 'supply' in:" - ], - "start_col": 10, - "start_line": 139 - } - }, - "2137": { - "accessible_scopes": [ - "openzeppelin.token.erc721.enumerable.library", - "openzeppelin.token.erc721.enumerable.library._add_token_to_all_tokens_enumeration" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 62, - "end_line": 141, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" - }, - "start_col": 5, - "start_line": 141 - } - }, - "2139": { - "accessible_scopes": [ - "openzeppelin.token.erc721.enumerable.library", - "openzeppelin.token.erc721.enumerable.library._add_token_to_all_tokens_enumeration" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 25, - "end_line": 139, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" - }, - "parent_location": [ - { - "end_col": 55, - "end_line": 143, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" - }, - "start_col": 49, - "start_line": 143 - }, - "While expanding the reference 'supply' in:" - ], - "start_col": 10, - "start_line": 139 - } - }, - "2140": { - "accessible_scopes": [ - "openzeppelin.token.erc721.enumerable.library", - "openzeppelin.token.erc721.enumerable.library._add_token_to_all_tokens_enumeration" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 25, - "end_line": 139, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" - }, - "parent_location": [ - { - "end_col": 55, - "end_line": 143, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" - }, - "start_col": 49, - "start_line": 143 - }, - "While expanding the reference 'supply' in:" - ], - "start_col": 10, - "start_line": 139 - } - }, - "2141": { - "accessible_scopes": [ - "openzeppelin.token.erc721.enumerable.library", - "openzeppelin.token.erc721.enumerable.library._add_token_to_all_tokens_enumeration" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 66, - "end_line": 143, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" - }, - "start_col": 65, - "start_line": 143 - } - }, - "2143": { - "accessible_scopes": [ - "openzeppelin.token.erc721.enumerable.library", - "openzeppelin.token.erc721.enumerable.library._add_token_to_all_tokens_enumeration" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 69, - "end_line": 143, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" - }, - "start_col": 68, - "start_line": 143 - } - }, - "2145": { - "accessible_scopes": [ - "openzeppelin.token.erc721.enumerable.library", - "openzeppelin.token.erc721.enumerable.library._add_token_to_all_tokens_enumeration" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 71, - "end_line": 143, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" - }, - "start_col": 33, - "start_line": 143 - } - }, - "2147": { - "accessible_scopes": [ - "openzeppelin.token.erc721.enumerable.library", - "openzeppelin.token.erc721.enumerable.library._add_token_to_all_tokens_enumeration" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 54, - "end_line": 144, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" - }, - "start_col": 5, - "start_line": 144 - } - }, - "2149": { - "accessible_scopes": [ - "openzeppelin.token.erc721.enumerable.library", - "openzeppelin.token.erc721.enumerable.library._add_token_to_all_tokens_enumeration" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 62, - "end_line": 21, - "input_file": { - "filename": "autogen/starknet/storage_var/ERC721Enumerable_all_tokens_len/decl.cairo" - }, - "parent_location": [ - { - "end_col": 54, - "end_line": 144, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" - }, - "parent_location": [ - { - "end_col": 31, - "end_line": 137, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" - }, - "parent_location": [ - { - "end_col": 15, - "end_line": 145, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" - }, - "start_col": 5, - "start_line": 145 - }, - "While trying to retrieve the implicit argument 'pedersen_ptr' in:" - ], - "start_col": 5, - "start_line": 137 - }, - "While expanding the reference 'pedersen_ptr' in:" - ], - "start_col": 5, - "start_line": 144 - }, - "While trying to update the implicit return value 'pedersen_ptr' in:" - ], - "start_col": 36, - "start_line": 21 - } - }, - "2150": { - "accessible_scopes": [ - "openzeppelin.token.erc721.enumerable.library", - "openzeppelin.token.erc721.enumerable.library._add_token_to_all_tokens_enumeration" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 34, - "end_line": 21, - "input_file": { - "filename": "autogen/starknet/storage_var/ERC721Enumerable_all_tokens_len/decl.cairo" - }, - "parent_location": [ - { - "end_col": 54, - "end_line": 144, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" - }, - "parent_location": [ - { - "end_col": 51, - "end_line": 137, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" - }, - "parent_location": [ - { - "end_col": 15, - "end_line": 145, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" - }, - "start_col": 5, - "start_line": 145 - }, - "While trying to retrieve the implicit argument 'syscall_ptr' in:" - ], - "start_col": 33, - "start_line": 137 - }, - "While expanding the reference 'syscall_ptr' in:" - ], - "start_col": 5, - "start_line": 144 - }, - "While trying to update the implicit return value 'syscall_ptr' in:" - ], - "start_col": 16, - "start_line": 21 - } - }, - "2151": { - "accessible_scopes": [ - "openzeppelin.token.erc721.enumerable.library", - "openzeppelin.token.erc721.enumerable.library._add_token_to_all_tokens_enumeration" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 79, - "end_line": 21, - "input_file": { - "filename": "autogen/starknet/storage_var/ERC721Enumerable_all_tokens_len/decl.cairo" - }, - "parent_location": [ - { - "end_col": 54, - "end_line": 144, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" - }, - "parent_location": [ - { - "end_col": 68, - "end_line": 137, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" - }, - "parent_location": [ - { - "end_col": 15, - "end_line": 145, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" - }, - "start_col": 5, - "start_line": 145 - }, - "While trying to retrieve the implicit argument 'range_check_ptr' in:" - ], - "start_col": 53, - "start_line": 137 - }, - "While expanding the reference 'range_check_ptr' in:" - ], - "start_col": 5, - "start_line": 144 - }, - "While trying to update the implicit return value 'range_check_ptr' in:" - ], - "start_col": 64, - "start_line": 21 - } - }, - "2152": { - "accessible_scopes": [ - "openzeppelin.token.erc721.enumerable.library", - "openzeppelin.token.erc721.enumerable.library._add_token_to_all_tokens_enumeration" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 15, - "end_line": 145, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" - }, - "start_col": 5, - "start_line": 145 - } - }, - "2153": { - "accessible_scopes": [ - "openzeppelin.token.erc721.enumerable.library", - "openzeppelin.token.erc721.enumerable.library._remove_token_from_all_tokens_enumeration" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 18, - "end_line": 151, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" - }, - "start_col": 5, - "start_line": 151 - } - }, - "2155": { - "accessible_scopes": [ - "openzeppelin.token.erc721.enumerable.library", - "openzeppelin.token.erc721.enumerable.library._remove_token_from_all_tokens_enumeration" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 51, - "end_line": 149, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" - }, - "parent_location": [ - { - "end_col": 33, - "end_line": 13, - "input_file": { - "filename": "autogen/starknet/storage_var/ERC721Enumerable_all_tokens_len/decl.cairo" - }, - "parent_location": [ - { - "end_col": 67, - "end_line": 152, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" - }, - "start_col": 29, - "start_line": 152 - }, - "While trying to retrieve the implicit argument 'syscall_ptr' in:" - ], - "start_col": 15, - "start_line": 13 - }, - "While expanding the reference 'syscall_ptr' in:" - ], - "start_col": 33, - "start_line": 149 - } - }, - "2156": { - "accessible_scopes": [ - "openzeppelin.token.erc721.enumerable.library", - "openzeppelin.token.erc721.enumerable.library._remove_token_from_all_tokens_enumeration" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 31, - "end_line": 149, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" - }, - "parent_location": [ - { - "end_col": 61, - "end_line": 13, - "input_file": { - "filename": "autogen/starknet/storage_var/ERC721Enumerable_all_tokens_len/decl.cairo" - }, - "parent_location": [ - { - "end_col": 67, - "end_line": 152, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" - }, - "start_col": 29, - "start_line": 152 - }, - "While trying to retrieve the implicit argument 'pedersen_ptr' in:" - ], - "start_col": 35, - "start_line": 13 - }, - "While expanding the reference 'pedersen_ptr' in:" - ], - "start_col": 5, - "start_line": 149 - } - }, - "2157": { - "accessible_scopes": [ - "openzeppelin.token.erc721.enumerable.library", - "openzeppelin.token.erc721.enumerable.library._remove_token_from_all_tokens_enumeration" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 68, - "end_line": 149, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" - }, - "parent_location": [ - { - "end_col": 78, - "end_line": 13, - "input_file": { - "filename": "autogen/starknet/storage_var/ERC721Enumerable_all_tokens_len/decl.cairo" - }, - "parent_location": [ - { - "end_col": 67, - "end_line": 152, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" - }, - "start_col": 29, - "start_line": 152 - }, - "While trying to retrieve the implicit argument 'range_check_ptr' in:" - ], - "start_col": 63, - "start_line": 13 - }, - "While expanding the reference 'range_check_ptr' in:" - ], - "start_col": 53, - "start_line": 149 - } - }, - "2158": { - "accessible_scopes": [ - "openzeppelin.token.erc721.enumerable.library", - "openzeppelin.token.erc721.enumerable.library._remove_token_from_all_tokens_enumeration" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 67, - "end_line": 152, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" - }, - "start_col": 29, - "start_line": 152 - } - }, - "2160": { - "accessible_scopes": [ - "openzeppelin.token.erc721.enumerable.library", - "openzeppelin.token.erc721.enumerable.library._remove_token_from_all_tokens_enumeration" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 75, - "end_line": 153, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" - }, - "start_col": 74, - "start_line": 153 - } - }, - "2162": { - "accessible_scopes": [ - "openzeppelin.token.erc721.enumerable.library", - "openzeppelin.token.erc721.enumerable.library._remove_token_from_all_tokens_enumeration" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 78, - "end_line": 153, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" - }, - "start_col": 77, - "start_line": 153 - } - }, - "2164": { - "accessible_scopes": [ - "openzeppelin.token.erc721.enumerable.library", - "openzeppelin.token.erc721.enumerable.library._remove_token_from_all_tokens_enumeration" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 80, - "end_line": 153, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" - }, - "start_col": 39, - "start_line": 153 - } - }, - "2166": { - "accessible_scopes": [ - "openzeppelin.token.erc721.enumerable.library", - "openzeppelin.token.erc721.enumerable.library._remove_token_from_all_tokens_enumeration" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 35, - "end_line": 37, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/security/safemath/library.cairo" - }, - "parent_location": [ - { - "end_col": 80, - "end_line": 153, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" - }, - "parent_location": [ - { - "end_col": 33, - "end_line": 13, - "input_file": { - "filename": "autogen/starknet/storage_var/ERC721Enumerable_all_tokens_index/decl.cairo" - }, - "parent_location": [ - { - "end_col": 82, - "end_line": 154, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" - }, - "start_col": 34, - "start_line": 154 - }, - "While trying to retrieve the implicit argument 'syscall_ptr' in:" - ], - "start_col": 15, - "start_line": 13 - }, - "While expanding the reference 'syscall_ptr' in:" - ], - "start_col": 39, - "start_line": 153 - }, - "While trying to update the implicit return value 'syscall_ptr' in:" - ], - "start_col": 17, - "start_line": 37 - } - }, - "2167": { - "accessible_scopes": [ - "openzeppelin.token.erc721.enumerable.library", - "openzeppelin.token.erc721.enumerable.library._remove_token_from_all_tokens_enumeration" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 63, - "end_line": 37, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/security/safemath/library.cairo" - }, - "parent_location": [ - { - "end_col": 80, - "end_line": 153, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" - }, - "parent_location": [ - { - "end_col": 61, - "end_line": 13, - "input_file": { - "filename": "autogen/starknet/storage_var/ERC721Enumerable_all_tokens_index/decl.cairo" - }, - "parent_location": [ - { - "end_col": 82, - "end_line": 154, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" - }, - "start_col": 34, - "start_line": 154 - }, - "While trying to retrieve the implicit argument 'pedersen_ptr' in:" - ], - "start_col": 35, - "start_line": 13 - }, - "While expanding the reference 'pedersen_ptr' in:" - ], - "start_col": 39, - "start_line": 153 - }, - "While trying to update the implicit return value 'pedersen_ptr' in:" - ], - "start_col": 37, - "start_line": 37 - } - }, - "2168": { - "accessible_scopes": [ - "openzeppelin.token.erc721.enumerable.library", - "openzeppelin.token.erc721.enumerable.library._remove_token_from_all_tokens_enumeration" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 80, - "end_line": 37, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/security/safemath/library.cairo" - }, - "parent_location": [ - { - "end_col": 80, - "end_line": 153, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" - }, - "parent_location": [ - { - "end_col": 78, - "end_line": 13, - "input_file": { - "filename": "autogen/starknet/storage_var/ERC721Enumerable_all_tokens_index/decl.cairo" - }, - "parent_location": [ - { - "end_col": 82, - "end_line": 154, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" - }, - "start_col": 34, - "start_line": 154 - }, - "While trying to retrieve the implicit argument 'range_check_ptr' in:" - ], - "start_col": 63, - "start_line": 13 - }, - "While expanding the reference 'range_check_ptr' in:" - ], - "start_col": 39, - "start_line": 153 - }, - "While trying to update the implicit return value 'range_check_ptr' in:" - ], - "start_col": 65, - "start_line": 37 - } - }, - "2169": { - "accessible_scopes": [ - "openzeppelin.token.erc721.enumerable.library", - "openzeppelin.token.erc721.enumerable.library._remove_token_from_all_tokens_enumeration" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 20, - "end_line": 150, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" - }, - "parent_location": [ - { - "end_col": 81, - "end_line": 154, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" - }, - "start_col": 73, - "start_line": 154 - }, - "While expanding the reference 'token_id' in:" - ], - "start_col": 3, - "start_line": 150 - } - }, - "2170": { - "accessible_scopes": [ - "openzeppelin.token.erc721.enumerable.library", - "openzeppelin.token.erc721.enumerable.library._remove_token_from_all_tokens_enumeration" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 20, - "end_line": 150, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" - }, - "parent_location": [ - { - "end_col": 81, - "end_line": 154, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" - }, - "start_col": 73, - "start_line": 154 - }, - "While expanding the reference 'token_id' in:" - ], - "start_col": 3, - "start_line": 150 - } - }, - "2171": { - "accessible_scopes": [ - "openzeppelin.token.erc721.enumerable.library", - "openzeppelin.token.erc721.enumerable.library._remove_token_from_all_tokens_enumeration" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 82, - "end_line": 154, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" - }, - "start_col": 34, - "start_line": 154 - } - }, - "2173": { - "accessible_scopes": [ - "openzeppelin.token.erc721.enumerable.library", - "openzeppelin.token.erc721.enumerable.library._remove_token_from_all_tokens_enumeration" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 30, - "end_line": 154, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" - }, - "parent_location": [ - { - "end_col": 30, - "end_line": 154, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" - }, - "start_col": 10, - "start_line": 154 - }, - "While auto generating local variable for 'token_index'." - ], - "start_col": 10, - "start_line": 154 - } - }, - "2174": { - "accessible_scopes": [ - "openzeppelin.token.erc721.enumerable.library", - "openzeppelin.token.erc721.enumerable.library._remove_token_from_all_tokens_enumeration" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 30, - "end_line": 154, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" - }, - "parent_location": [ - { - "end_col": 30, - "end_line": 154, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" - }, - "start_col": 10, - "start_line": 154 - }, - "While auto generating local variable for 'token_index'." - ], - "start_col": 10, - "start_line": 154 - } - }, - "2175": { - "accessible_scopes": [ - "openzeppelin.token.erc721.enumerable.library", - "openzeppelin.token.erc721.enumerable.library._remove_token_from_all_tokens_enumeration" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 33, - "end_line": 13, - "input_file": { - "filename": "autogen/starknet/storage_var/ERC721Enumerable_all_tokens_index/decl.cairo" - }, - "parent_location": [ - { - "end_col": 82, - "end_line": 154, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" - }, - "parent_location": [ - { - "end_col": 33, - "end_line": 13, - "input_file": { - "filename": "autogen/starknet/storage_var/ERC721Enumerable_all_tokens/decl.cairo" - }, - "parent_location": [ - { - "end_col": 86, - "end_line": 155, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" - }, - "start_col": 36, - "start_line": 155 - }, - "While trying to retrieve the implicit argument 'syscall_ptr' in:" - ], - "start_col": 15, - "start_line": 13 - }, - "While expanding the reference 'syscall_ptr' in:" - ], - "start_col": 34, - "start_line": 154 - }, - "While trying to update the implicit return value 'syscall_ptr' in:" - ], - "start_col": 15, - "start_line": 13 - } - }, - "2176": { - "accessible_scopes": [ - "openzeppelin.token.erc721.enumerable.library", - "openzeppelin.token.erc721.enumerable.library._remove_token_from_all_tokens_enumeration" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 61, - "end_line": 13, - "input_file": { - "filename": "autogen/starknet/storage_var/ERC721Enumerable_all_tokens_index/decl.cairo" - }, - "parent_location": [ - { - "end_col": 82, - "end_line": 154, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" - }, - "parent_location": [ - { - "end_col": 61, - "end_line": 13, - "input_file": { - "filename": "autogen/starknet/storage_var/ERC721Enumerable_all_tokens/decl.cairo" - }, - "parent_location": [ - { - "end_col": 86, - "end_line": 155, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" - }, - "start_col": 36, - "start_line": 155 - }, - "While trying to retrieve the implicit argument 'pedersen_ptr' in:" - ], - "start_col": 35, - "start_line": 13 - }, - "While expanding the reference 'pedersen_ptr' in:" - ], - "start_col": 34, - "start_line": 154 - }, - "While trying to update the implicit return value 'pedersen_ptr' in:" - ], - "start_col": 35, - "start_line": 13 - } - }, - "2177": { - "accessible_scopes": [ - "openzeppelin.token.erc721.enumerable.library", - "openzeppelin.token.erc721.enumerable.library._remove_token_from_all_tokens_enumeration" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 78, - "end_line": 13, - "input_file": { - "filename": "autogen/starknet/storage_var/ERC721Enumerable_all_tokens_index/decl.cairo" - }, - "parent_location": [ - { - "end_col": 82, - "end_line": 154, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" - }, - "parent_location": [ - { - "end_col": 78, - "end_line": 13, - "input_file": { - "filename": "autogen/starknet/storage_var/ERC721Enumerable_all_tokens/decl.cairo" - }, - "parent_location": [ - { - "end_col": 86, - "end_line": 155, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" - }, - "start_col": 36, - "start_line": 155 - }, - "While trying to retrieve the implicit argument 'range_check_ptr' in:" - ], - "start_col": 63, - "start_line": 13 - }, - "While expanding the reference 'range_check_ptr' in:" - ], - "start_col": 34, - "start_line": 154 - }, - "While trying to update the implicit return value 'range_check_ptr' in:" - ], - "start_col": 63, - "start_line": 13 - } - }, - "2178": { - "accessible_scopes": [ - "openzeppelin.token.erc721.enumerable.library", - "openzeppelin.token.erc721.enumerable.library._remove_token_from_all_tokens_enumeration" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 35, - "end_line": 153, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" - }, - "parent_location": [ - { - "end_col": 85, - "end_line": 155, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" - }, - "start_col": 69, - "start_line": 155 - }, - "While expanding the reference 'last_token_index' in:" - ], - "start_col": 10, - "start_line": 153 - } - }, - "2179": { - "accessible_scopes": [ - "openzeppelin.token.erc721.enumerable.library", - "openzeppelin.token.erc721.enumerable.library._remove_token_from_all_tokens_enumeration" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 35, - "end_line": 153, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" - }, - "parent_location": [ - { - "end_col": 85, - "end_line": 155, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" - }, - "start_col": 69, - "start_line": 155 - }, - "While expanding the reference 'last_token_index' in:" - ], - "start_col": 10, - "start_line": 153 - } - }, - "2180": { - "accessible_scopes": [ - "openzeppelin.token.erc721.enumerable.library", - "openzeppelin.token.erc721.enumerable.library._remove_token_from_all_tokens_enumeration" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 86, - "end_line": 155, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" - }, - "start_col": 36, - "start_line": 155 - } - }, - "2182": { - "accessible_scopes": [ - "openzeppelin.token.erc721.enumerable.library", - "openzeppelin.token.erc721.enumerable.library._remove_token_from_all_tokens_enumeration" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 32, - "end_line": 155, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" - }, - "parent_location": [ - { - "end_col": 32, - "end_line": 155, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" - }, - "start_col": 10, - "start_line": 155 - }, - "While auto generating local variable for 'last_token_id'." - ], - "start_col": 10, - "start_line": 155 - } - }, - "2183": { - "accessible_scopes": [ - "openzeppelin.token.erc721.enumerable.library", - "openzeppelin.token.erc721.enumerable.library._remove_token_from_all_tokens_enumeration" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 32, - "end_line": 155, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" - }, - "parent_location": [ - { - "end_col": 32, - "end_line": 155, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" - }, - "start_col": 10, - "start_line": 155 - }, - "While auto generating local variable for 'last_token_id'." - ], - "start_col": 10, - "start_line": 155 - } - }, - "2184": { - "accessible_scopes": [ - "openzeppelin.token.erc721.enumerable.library", - "openzeppelin.token.erc721.enumerable.library._remove_token_from_all_tokens_enumeration" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 33, - "end_line": 13, - "input_file": { - "filename": "autogen/starknet/storage_var/ERC721Enumerable_all_tokens/decl.cairo" - }, - "parent_location": [ - { - "end_col": 86, - "end_line": 155, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" - }, - "parent_location": [ - { - "end_col": 34, - "end_line": 21, - "input_file": { - "filename": "autogen/starknet/storage_var/ERC721Enumerable_all_tokens/decl.cairo" - }, - "parent_location": [ - { - "end_col": 71, - "end_line": 157, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" - }, - "start_col": 5, - "start_line": 157 - }, - "While trying to retrieve the implicit argument 'syscall_ptr' in:" - ], - "start_col": 16, - "start_line": 21 - }, - "While expanding the reference 'syscall_ptr' in:" - ], - "start_col": 36, - "start_line": 155 - }, - "While trying to update the implicit return value 'syscall_ptr' in:" - ], - "start_col": 15, - "start_line": 13 - } - }, - "2185": { - "accessible_scopes": [ - "openzeppelin.token.erc721.enumerable.library", - "openzeppelin.token.erc721.enumerable.library._remove_token_from_all_tokens_enumeration" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 61, - "end_line": 13, - "input_file": { - "filename": "autogen/starknet/storage_var/ERC721Enumerable_all_tokens/decl.cairo" - }, - "parent_location": [ - { - "end_col": 86, - "end_line": 155, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" - }, - "parent_location": [ - { - "end_col": 62, - "end_line": 21, - "input_file": { - "filename": "autogen/starknet/storage_var/ERC721Enumerable_all_tokens/decl.cairo" - }, - "parent_location": [ - { - "end_col": 71, - "end_line": 157, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" - }, - "start_col": 5, - "start_line": 157 - }, - "While trying to retrieve the implicit argument 'pedersen_ptr' in:" - ], - "start_col": 36, - "start_line": 21 - }, - "While expanding the reference 'pedersen_ptr' in:" - ], - "start_col": 36, - "start_line": 155 - }, - "While trying to update the implicit return value 'pedersen_ptr' in:" - ], - "start_col": 35, - "start_line": 13 - } - }, - "2186": { - "accessible_scopes": [ - "openzeppelin.token.erc721.enumerable.library", - "openzeppelin.token.erc721.enumerable.library._remove_token_from_all_tokens_enumeration" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 78, - "end_line": 13, - "input_file": { - "filename": "autogen/starknet/storage_var/ERC721Enumerable_all_tokens/decl.cairo" - }, - "parent_location": [ - { - "end_col": 86, - "end_line": 155, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" - }, - "parent_location": [ - { - "end_col": 79, - "end_line": 21, - "input_file": { - "filename": "autogen/starknet/storage_var/ERC721Enumerable_all_tokens/decl.cairo" - }, - "parent_location": [ - { - "end_col": 71, - "end_line": 157, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" - }, - "start_col": 5, - "start_line": 157 - }, - "While trying to retrieve the implicit argument 'range_check_ptr' in:" - ], - "start_col": 64, - "start_line": 21 - }, - "While expanding the reference 'range_check_ptr' in:" - ], - "start_col": 36, - "start_line": 155 - }, - "While trying to update the implicit return value 'range_check_ptr' in:" - ], - "start_col": 63, - "start_line": 13 - } - }, - "2187": { - "accessible_scopes": [ - "openzeppelin.token.erc721.enumerable.library", - "openzeppelin.token.erc721.enumerable.library._remove_token_from_all_tokens_enumeration" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 35, - "end_line": 153, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" - }, - "parent_location": [ - { - "end_col": 55, - "end_line": 157, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" - }, - "start_col": 39, - "start_line": 157 - }, - "While expanding the reference 'last_token_index' in:" - ], - "start_col": 10, - "start_line": 153 - } - }, - "2188": { - "accessible_scopes": [ - "openzeppelin.token.erc721.enumerable.library", - "openzeppelin.token.erc721.enumerable.library._remove_token_from_all_tokens_enumeration" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 35, - "end_line": 153, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" - }, - "parent_location": [ - { - "end_col": 55, - "end_line": 157, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" - }, - "start_col": 39, - "start_line": 157 - }, - "While expanding the reference 'last_token_index' in:" - ], - "start_col": 10, - "start_line": 153 - } - }, - "2189": { - "accessible_scopes": [ - "openzeppelin.token.erc721.enumerable.library", - "openzeppelin.token.erc721.enumerable.library._remove_token_from_all_tokens_enumeration" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 66, - "end_line": 157, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" - }, - "start_col": 65, - "start_line": 157 - } - }, - "2191": { - "accessible_scopes": [ - "openzeppelin.token.erc721.enumerable.library", - "openzeppelin.token.erc721.enumerable.library._remove_token_from_all_tokens_enumeration" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 69, - "end_line": 157, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" - }, - "start_col": 68, - "start_line": 157 - } - }, - "2193": { - "accessible_scopes": [ - "openzeppelin.token.erc721.enumerable.library", - "openzeppelin.token.erc721.enumerable.library._remove_token_from_all_tokens_enumeration" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 71, - "end_line": 157, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" - }, - "start_col": 5, - "start_line": 157 - } - }, - "2195": { - "accessible_scopes": [ - "openzeppelin.token.erc721.enumerable.library", - "openzeppelin.token.erc721.enumerable.library._remove_token_from_all_tokens_enumeration" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 20, - "end_line": 150, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" - }, - "parent_location": [ - { - "end_col": 53, - "end_line": 158, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" - }, - "start_col": 45, - "start_line": 158 - }, - "While expanding the reference 'token_id' in:" - ], - "start_col": 3, - "start_line": 150 - } - }, - "2196": { - "accessible_scopes": [ - "openzeppelin.token.erc721.enumerable.library", - "openzeppelin.token.erc721.enumerable.library._remove_token_from_all_tokens_enumeration" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 20, - "end_line": 150, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" - }, - "parent_location": [ - { - "end_col": 53, - "end_line": 158, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" - }, - "start_col": 45, - "start_line": 158 - }, - "While expanding the reference 'token_id' in:" - ], - "start_col": 3, - "start_line": 150 - } - }, - "2197": { - "accessible_scopes": [ - "openzeppelin.token.erc721.enumerable.library", - "openzeppelin.token.erc721.enumerable.library._remove_token_from_all_tokens_enumeration" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 64, - "end_line": 158, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" - }, - "start_col": 63, - "start_line": 158 - } - }, - "2199": { - "accessible_scopes": [ - "openzeppelin.token.erc721.enumerable.library", - "openzeppelin.token.erc721.enumerable.library._remove_token_from_all_tokens_enumeration" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 67, - "end_line": 158, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" - }, - "start_col": 66, - "start_line": 158 - } - }, - "2201": { - "accessible_scopes": [ - "openzeppelin.token.erc721.enumerable.library", - "openzeppelin.token.erc721.enumerable.library._remove_token_from_all_tokens_enumeration" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 69, - "end_line": 158, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" - }, - "start_col": 5, - "start_line": 158 - } - }, - "2203": { - "accessible_scopes": [ - "openzeppelin.token.erc721.enumerable.library", - "openzeppelin.token.erc721.enumerable.library._remove_token_from_all_tokens_enumeration" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 35, - "end_line": 153, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" - }, - "parent_location": [ - { - "end_col": 59, - "end_line": 159, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" - }, - "start_col": 43, - "start_line": 159 - }, - "While expanding the reference 'last_token_index' in:" - ], - "start_col": 10, - "start_line": 153 - } - }, - "2204": { - "accessible_scopes": [ - "openzeppelin.token.erc721.enumerable.library", - "openzeppelin.token.erc721.enumerable.library._remove_token_from_all_tokens_enumeration" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 35, - "end_line": 153, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" - }, - "parent_location": [ - { - "end_col": 59, - "end_line": 159, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" - }, - "start_col": 43, - "start_line": 159 - }, - "While expanding the reference 'last_token_index' in:" - ], - "start_col": 10, - "start_line": 153 - } - }, - "2205": { - "accessible_scopes": [ - "openzeppelin.token.erc721.enumerable.library", - "openzeppelin.token.erc721.enumerable.library._remove_token_from_all_tokens_enumeration" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 60, - "end_line": 159, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" - }, - "start_col": 5, - "start_line": 159 - } - }, - "2207": { - "accessible_scopes": [ - "openzeppelin.token.erc721.enumerable.library", - "openzeppelin.token.erc721.enumerable.library._remove_token_from_all_tokens_enumeration" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 34, - "end_line": 21, - "input_file": { - "filename": "autogen/starknet/storage_var/ERC721Enumerable_all_tokens_len/decl.cairo" - }, - "parent_location": [ - { - "end_col": 60, - "end_line": 159, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" - }, - "parent_location": [ - { - "end_col": 34, - "end_line": 21, - "input_file": { - "filename": "autogen/starknet/storage_var/ERC721Enumerable_all_tokens_len/decl.cairo" - }, - "parent_location": [ - { - "end_col": 60, - "end_line": 159, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" - }, - "start_col": 5, - "start_line": 159 - }, - "While trying to update the implicit return value 'syscall_ptr' in:" - ], - "start_col": 16, - "start_line": 21 - }, - "While auto generating local variable for 'syscall_ptr'." - ], - "start_col": 5, - "start_line": 159 - }, - "While trying to update the implicit return value 'syscall_ptr' in:" - ], - "start_col": 16, - "start_line": 21 - } - }, - "2208": { - "accessible_scopes": [ - "openzeppelin.token.erc721.enumerable.library", - "openzeppelin.token.erc721.enumerable.library._remove_token_from_all_tokens_enumeration" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 62, - "end_line": 21, - "input_file": { - "filename": "autogen/starknet/storage_var/ERC721Enumerable_all_tokens_len/decl.cairo" - }, - "parent_location": [ - { - "end_col": 60, - "end_line": 159, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" - }, - "parent_location": [ - { - "end_col": 62, - "end_line": 21, - "input_file": { - "filename": "autogen/starknet/storage_var/ERC721Enumerable_all_tokens_len/decl.cairo" - }, - "parent_location": [ - { - "end_col": 60, - "end_line": 159, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" - }, - "start_col": 5, - "start_line": 159 - }, - "While trying to update the implicit return value 'pedersen_ptr' in:" - ], - "start_col": 36, - "start_line": 21 - }, - "While auto generating local variable for 'pedersen_ptr'." - ], - "start_col": 5, - "start_line": 159 - }, - "While trying to update the implicit return value 'pedersen_ptr' in:" - ], - "start_col": 36, - "start_line": 21 - } - }, - "2209": { - "accessible_scopes": [ - "openzeppelin.token.erc721.enumerable.library", - "openzeppelin.token.erc721.enumerable.library._remove_token_from_all_tokens_enumeration" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 35, - "end_line": 153, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" - }, - "parent_location": [ - { - "end_col": 49, - "end_line": 161, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" - }, - "start_col": 33, - "start_line": 161 - }, - "While expanding the reference 'last_token_index' in:" - ], - "start_col": 10, - "start_line": 153 - } - }, - "2210": { - "accessible_scopes": [ - "openzeppelin.token.erc721.enumerable.library", - "openzeppelin.token.erc721.enumerable.library._remove_token_from_all_tokens_enumeration" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 35, - "end_line": 153, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" - }, - "parent_location": [ - { - "end_col": 49, - "end_line": 161, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" - }, - "start_col": 33, - "start_line": 161 - }, - "While expanding the reference 'last_token_index' in:" - ], - "start_col": 10, - "start_line": 153 - } - }, - "2211": { - "accessible_scopes": [ - "openzeppelin.token.erc721.enumerable.library", - "openzeppelin.token.erc721.enumerable.library._remove_token_from_all_tokens_enumeration" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 30, - "end_line": 154, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" - }, - "parent_location": [ - { - "end_col": 30, - "end_line": 154, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" - }, - "parent_location": [ - { - "end_col": 62, - "end_line": 161, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" - }, - "start_col": 51, - "start_line": 161 - }, - "While expanding the reference 'token_index' in:" - ], - "start_col": 10, - "start_line": 154 - }, - "While auto generating local variable for 'token_index'." - ], - "start_col": 10, - "start_line": 154 - } - }, - "2212": { - "accessible_scopes": [ - "openzeppelin.token.erc721.enumerable.library", - "openzeppelin.token.erc721.enumerable.library._remove_token_from_all_tokens_enumeration" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 30, - "end_line": 154, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" - }, - "parent_location": [ - { - "end_col": 30, - "end_line": 154, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" - }, - "parent_location": [ - { - "end_col": 62, - "end_line": 161, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" - }, - "start_col": 51, - "start_line": 161 - }, - "While expanding the reference 'token_index' in:" - ], - "start_col": 10, - "start_line": 154 - }, - "While auto generating local variable for 'token_index'." - ], - "start_col": 10, - "start_line": 154 - } - }, - "2213": { - "accessible_scopes": [ - "openzeppelin.token.erc721.enumerable.library", - "openzeppelin.token.erc721.enumerable.library._remove_token_from_all_tokens_enumeration" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 63, - "end_line": 161, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" - }, - "start_col": 22, - "start_line": 161 - } - }, - "2215": { - "accessible_scopes": [ - "openzeppelin.token.erc721.enumerable.library", - "openzeppelin.token.erc721.enumerable.library._remove_token_from_all_tokens_enumeration" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 7, - "end_line": 162, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" - }, - "start_col": 5, - "start_line": 162 - } - }, - "2217": { - "accessible_scopes": [ - "openzeppelin.token.erc721.enumerable.library", - "openzeppelin.token.erc721.enumerable.library._remove_token_from_all_tokens_enumeration" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 34, - "end_line": 21, - "input_file": { - "filename": "autogen/starknet/storage_var/ERC721Enumerable_all_tokens_len/decl.cairo" - }, - "parent_location": [ - { - "end_col": 60, - "end_line": 159, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" - }, - "parent_location": [ - { - "end_col": 34, - "end_line": 21, - "input_file": { - "filename": "autogen/starknet/storage_var/ERC721Enumerable_all_tokens_len/decl.cairo" - }, - "parent_location": [ - { - "end_col": 60, - "end_line": 159, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" - }, - "parent_location": [ - { - "end_col": 34, - "end_line": 21, - "input_file": { - "filename": "autogen/starknet/storage_var/ERC721Enumerable_all_tokens_index/decl.cairo" - }, - "parent_location": [ - { - "end_col": 76, - "end_line": 163, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" - }, - "start_col": 9, - "start_line": 163 - }, - "While trying to retrieve the implicit argument 'syscall_ptr' in:" - ], - "start_col": 16, - "start_line": 21 - }, - "While expanding the reference 'syscall_ptr' in:" - ], - "start_col": 5, - "start_line": 159 - }, - "While trying to update the implicit return value 'syscall_ptr' in:" - ], - "start_col": 16, - "start_line": 21 - }, - "While auto generating local variable for 'syscall_ptr'." - ], - "start_col": 5, - "start_line": 159 - }, - "While trying to update the implicit return value 'syscall_ptr' in:" - ], - "start_col": 16, - "start_line": 21 - } - }, - "2218": { - "accessible_scopes": [ - "openzeppelin.token.erc721.enumerable.library", - "openzeppelin.token.erc721.enumerable.library._remove_token_from_all_tokens_enumeration" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 62, - "end_line": 21, - "input_file": { - "filename": "autogen/starknet/storage_var/ERC721Enumerable_all_tokens_len/decl.cairo" - }, - "parent_location": [ - { - "end_col": 60, - "end_line": 159, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" - }, - "parent_location": [ - { - "end_col": 62, - "end_line": 21, - "input_file": { - "filename": "autogen/starknet/storage_var/ERC721Enumerable_all_tokens_len/decl.cairo" - }, - "parent_location": [ - { - "end_col": 60, - "end_line": 159, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" - }, - "parent_location": [ - { - "end_col": 62, - "end_line": 21, - "input_file": { - "filename": "autogen/starknet/storage_var/ERC721Enumerable_all_tokens_index/decl.cairo" - }, - "parent_location": [ - { - "end_col": 76, - "end_line": 163, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" - }, - "start_col": 9, - "start_line": 163 - }, - "While trying to retrieve the implicit argument 'pedersen_ptr' in:" - ], - "start_col": 36, - "start_line": 21 - }, - "While expanding the reference 'pedersen_ptr' in:" - ], - "start_col": 5, - "start_line": 159 - }, - "While trying to update the implicit return value 'pedersen_ptr' in:" - ], - "start_col": 36, - "start_line": 21 - }, - "While auto generating local variable for 'pedersen_ptr'." - ], - "start_col": 5, - "start_line": 159 - }, - "While trying to update the implicit return value 'pedersen_ptr' in:" - ], - "start_col": 36, - "start_line": 21 - } - }, - "2219": { - "accessible_scopes": [ - "openzeppelin.token.erc721.enumerable.library", - "openzeppelin.token.erc721.enumerable.library._remove_token_from_all_tokens_enumeration" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 32, - "end_line": 357, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/uint256.cairo" - }, - "parent_location": [ - { - "end_col": 63, - "end_line": 161, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" - }, - "parent_location": [ - { - "end_col": 79, - "end_line": 21, - "input_file": { - "filename": "autogen/starknet/storage_var/ERC721Enumerable_all_tokens_index/decl.cairo" - }, - "parent_location": [ - { - "end_col": 76, - "end_line": 163, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" - }, - "start_col": 9, - "start_line": 163 - }, - "While trying to retrieve the implicit argument 'range_check_ptr' in:" - ], - "start_col": 64, - "start_line": 21 - }, - "While expanding the reference 'range_check_ptr' in:" - ], - "start_col": 22, - "start_line": 161 - }, - "While trying to update the implicit return value 'range_check_ptr' in:" - ], - "start_col": 17, - "start_line": 357 - } - }, - "2220": { - "accessible_scopes": [ - "openzeppelin.token.erc721.enumerable.library", - "openzeppelin.token.erc721.enumerable.library._remove_token_from_all_tokens_enumeration" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 32, - "end_line": 155, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" - }, - "parent_location": [ - { - "end_col": 32, - "end_line": 155, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" - }, - "parent_location": [ - { - "end_col": 62, - "end_line": 163, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" - }, - "start_col": 49, - "start_line": 163 - }, - "While expanding the reference 'last_token_id' in:" - ], - "start_col": 10, - "start_line": 155 - }, - "While auto generating local variable for 'last_token_id'." - ], - "start_col": 10, - "start_line": 155 - } - }, - "2221": { - "accessible_scopes": [ - "openzeppelin.token.erc721.enumerable.library", - "openzeppelin.token.erc721.enumerable.library._remove_token_from_all_tokens_enumeration" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 32, - "end_line": 155, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" - }, - "parent_location": [ - { - "end_col": 32, - "end_line": 155, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" - }, - "parent_location": [ - { - "end_col": 62, - "end_line": 163, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" - }, - "start_col": 49, - "start_line": 163 - }, - "While expanding the reference 'last_token_id' in:" - ], - "start_col": 10, - "start_line": 155 - }, - "While auto generating local variable for 'last_token_id'." - ], - "start_col": 10, - "start_line": 155 - } - }, - "2222": { - "accessible_scopes": [ - "openzeppelin.token.erc721.enumerable.library", - "openzeppelin.token.erc721.enumerable.library._remove_token_from_all_tokens_enumeration" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 30, - "end_line": 154, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" - }, - "parent_location": [ - { - "end_col": 30, - "end_line": 154, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" - }, - "parent_location": [ - { - "end_col": 75, - "end_line": 163, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" - }, - "start_col": 64, - "start_line": 163 - }, - "While expanding the reference 'token_index' in:" - ], - "start_col": 10, - "start_line": 154 - }, - "While auto generating local variable for 'token_index'." - ], - "start_col": 10, - "start_line": 154 - } - }, - "2223": { - "accessible_scopes": [ - "openzeppelin.token.erc721.enumerable.library", - "openzeppelin.token.erc721.enumerable.library._remove_token_from_all_tokens_enumeration" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 30, - "end_line": 154, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" - }, - "parent_location": [ - { - "end_col": 30, - "end_line": 154, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" - }, - "parent_location": [ - { - "end_col": 75, - "end_line": 163, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" - }, - "start_col": 64, - "start_line": 163 - }, - "While expanding the reference 'token_index' in:" - ], - "start_col": 10, - "start_line": 154 - }, - "While auto generating local variable for 'token_index'." - ], - "start_col": 10, - "start_line": 154 - } - }, - "2224": { - "accessible_scopes": [ - "openzeppelin.token.erc721.enumerable.library", - "openzeppelin.token.erc721.enumerable.library._remove_token_from_all_tokens_enumeration" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 76, - "end_line": 163, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" - }, - "start_col": 9, - "start_line": 163 - } - }, - "2226": { - "accessible_scopes": [ - "openzeppelin.token.erc721.enumerable.library", - "openzeppelin.token.erc721.enumerable.library._remove_token_from_all_tokens_enumeration" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 30, - "end_line": 154, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" - }, - "parent_location": [ - { - "end_col": 30, - "end_line": 154, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" - }, - "parent_location": [ - { - "end_col": 54, - "end_line": 164, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" - }, - "start_col": 43, - "start_line": 164 - }, - "While expanding the reference 'token_index' in:" - ], - "start_col": 10, - "start_line": 154 - }, - "While auto generating local variable for 'token_index'." - ], - "start_col": 10, - "start_line": 154 - } - }, - "2227": { - "accessible_scopes": [ - "openzeppelin.token.erc721.enumerable.library", - "openzeppelin.token.erc721.enumerable.library._remove_token_from_all_tokens_enumeration" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 30, - "end_line": 154, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" - }, - "parent_location": [ - { - "end_col": 30, - "end_line": 154, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" - }, - "parent_location": [ - { - "end_col": 54, - "end_line": 164, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" - }, - "start_col": 43, - "start_line": 164 - }, - "While expanding the reference 'token_index' in:" - ], - "start_col": 10, - "start_line": 154 - }, - "While auto generating local variable for 'token_index'." - ], - "start_col": 10, - "start_line": 154 - } - }, - "2228": { - "accessible_scopes": [ - "openzeppelin.token.erc721.enumerable.library", - "openzeppelin.token.erc721.enumerable.library._remove_token_from_all_tokens_enumeration" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 32, - "end_line": 155, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" - }, - "parent_location": [ - { - "end_col": 32, - "end_line": 155, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" - }, - "parent_location": [ - { - "end_col": 69, - "end_line": 164, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" - }, - "start_col": 56, - "start_line": 164 - }, - "While expanding the reference 'last_token_id' in:" - ], - "start_col": 10, - "start_line": 155 - }, - "While auto generating local variable for 'last_token_id'." - ], - "start_col": 10, - "start_line": 155 - } - }, - "2229": { - "accessible_scopes": [ - "openzeppelin.token.erc721.enumerable.library", - "openzeppelin.token.erc721.enumerable.library._remove_token_from_all_tokens_enumeration" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 32, - "end_line": 155, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" - }, - "parent_location": [ - { - "end_col": 32, - "end_line": 155, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" - }, - "parent_location": [ - { - "end_col": 69, - "end_line": 164, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" - }, - "start_col": 56, - "start_line": 164 - }, - "While expanding the reference 'last_token_id' in:" - ], - "start_col": 10, - "start_line": 155 - }, - "While auto generating local variable for 'last_token_id'." - ], - "start_col": 10, - "start_line": 155 - } - }, - "2230": { - "accessible_scopes": [ - "openzeppelin.token.erc721.enumerable.library", - "openzeppelin.token.erc721.enumerable.library._remove_token_from_all_tokens_enumeration" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 70, - "end_line": 164, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" - }, - "start_col": 9, - "start_line": 164 - } - }, - "2232": { - "accessible_scopes": [ - "openzeppelin.token.erc721.enumerable.library", - "openzeppelin.token.erc721.enumerable.library._remove_token_from_all_tokens_enumeration" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 62, - "end_line": 21, - "input_file": { - "filename": "autogen/starknet/storage_var/ERC721Enumerable_all_tokens/decl.cairo" - }, - "parent_location": [ - { - "end_col": 70, - "end_line": 164, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" - }, - "parent_location": [ - { - "end_col": 31, - "end_line": 149, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" - }, - "parent_location": [ - { - "end_col": 19, - "end_line": 165, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" - }, - "start_col": 9, - "start_line": 165 - }, - "While trying to retrieve the implicit argument 'pedersen_ptr' in:" - ], - "start_col": 5, - "start_line": 149 - }, - "While expanding the reference 'pedersen_ptr' in:" - ], - "start_col": 9, - "start_line": 164 - }, - "While trying to update the implicit return value 'pedersen_ptr' in:" - ], - "start_col": 36, - "start_line": 21 - } - }, - "2233": { - "accessible_scopes": [ - "openzeppelin.token.erc721.enumerable.library", - "openzeppelin.token.erc721.enumerable.library._remove_token_from_all_tokens_enumeration" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 34, - "end_line": 21, - "input_file": { - "filename": "autogen/starknet/storage_var/ERC721Enumerable_all_tokens/decl.cairo" - }, - "parent_location": [ - { - "end_col": 70, - "end_line": 164, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" - }, - "parent_location": [ - { - "end_col": 51, - "end_line": 149, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" - }, - "parent_location": [ - { - "end_col": 19, - "end_line": 165, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" - }, - "start_col": 9, - "start_line": 165 - }, - "While trying to retrieve the implicit argument 'syscall_ptr' in:" - ], - "start_col": 33, - "start_line": 149 - }, - "While expanding the reference 'syscall_ptr' in:" - ], - "start_col": 9, - "start_line": 164 - }, - "While trying to update the implicit return value 'syscall_ptr' in:" - ], - "start_col": 16, - "start_line": 21 - } - }, - "2234": { - "accessible_scopes": [ - "openzeppelin.token.erc721.enumerable.library", - "openzeppelin.token.erc721.enumerable.library._remove_token_from_all_tokens_enumeration" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 79, - "end_line": 21, - "input_file": { - "filename": "autogen/starknet/storage_var/ERC721Enumerable_all_tokens/decl.cairo" - }, - "parent_location": [ - { - "end_col": 70, - "end_line": 164, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" - }, - "parent_location": [ - { - "end_col": 68, - "end_line": 149, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" - }, - "parent_location": [ - { - "end_col": 19, - "end_line": 165, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" - }, - "start_col": 9, - "start_line": 165 - }, - "While trying to retrieve the implicit argument 'range_check_ptr' in:" - ], - "start_col": 53, - "start_line": 149 - }, - "While expanding the reference 'range_check_ptr' in:" - ], - "start_col": 9, - "start_line": 164 - }, - "While trying to update the implicit return value 'range_check_ptr' in:" - ], - "start_col": 64, - "start_line": 21 - } - }, - "2235": { - "accessible_scopes": [ - "openzeppelin.token.erc721.enumerable.library", - "openzeppelin.token.erc721.enumerable.library._remove_token_from_all_tokens_enumeration" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 19, - "end_line": 165, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" - }, - "start_col": 9, - "start_line": 165 - } - }, - "2236": { - "accessible_scopes": [ - "openzeppelin.token.erc721.enumerable.library", - "openzeppelin.token.erc721.enumerable.library._remove_token_from_all_tokens_enumeration" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 62, - "end_line": 21, - "input_file": { - "filename": "autogen/starknet/storage_var/ERC721Enumerable_all_tokens_len/decl.cairo" - }, - "parent_location": [ - { - "end_col": 60, - "end_line": 159, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" - }, - "parent_location": [ - { - "end_col": 62, - "end_line": 21, - "input_file": { - "filename": "autogen/starknet/storage_var/ERC721Enumerable_all_tokens_len/decl.cairo" - }, - "parent_location": [ - { - "end_col": 60, - "end_line": 159, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" - }, - "parent_location": [ - { - "end_col": 31, - "end_line": 149, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" - }, - "parent_location": [ - { - "end_col": 15, - "end_line": 167, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" - }, - "start_col": 5, - "start_line": 167 - }, - "While trying to retrieve the implicit argument 'pedersen_ptr' in:" - ], - "start_col": 5, - "start_line": 149 - }, - "While expanding the reference 'pedersen_ptr' in:" - ], - "start_col": 5, - "start_line": 159 - }, - "While trying to update the implicit return value 'pedersen_ptr' in:" - ], - "start_col": 36, - "start_line": 21 - }, - "While auto generating local variable for 'pedersen_ptr'." - ], - "start_col": 5, - "start_line": 159 - }, - "While trying to update the implicit return value 'pedersen_ptr' in:" - ], - "start_col": 36, - "start_line": 21 - } - }, - "2237": { - "accessible_scopes": [ - "openzeppelin.token.erc721.enumerable.library", - "openzeppelin.token.erc721.enumerable.library._remove_token_from_all_tokens_enumeration" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 34, - "end_line": 21, - "input_file": { - "filename": "autogen/starknet/storage_var/ERC721Enumerable_all_tokens_len/decl.cairo" - }, - "parent_location": [ - { - "end_col": 60, - "end_line": 159, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" - }, - "parent_location": [ - { - "end_col": 34, - "end_line": 21, - "input_file": { - "filename": "autogen/starknet/storage_var/ERC721Enumerable_all_tokens_len/decl.cairo" - }, - "parent_location": [ - { - "end_col": 60, - "end_line": 159, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" - }, - "parent_location": [ - { - "end_col": 51, - "end_line": 149, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" - }, - "parent_location": [ - { - "end_col": 15, - "end_line": 167, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" - }, - "start_col": 5, - "start_line": 167 - }, - "While trying to retrieve the implicit argument 'syscall_ptr' in:" - ], - "start_col": 33, - "start_line": 149 - }, - "While expanding the reference 'syscall_ptr' in:" - ], - "start_col": 5, - "start_line": 159 - }, - "While trying to update the implicit return value 'syscall_ptr' in:" - ], - "start_col": 16, - "start_line": 21 - }, - "While auto generating local variable for 'syscall_ptr'." - ], - "start_col": 5, - "start_line": 159 - }, - "While trying to update the implicit return value 'syscall_ptr' in:" - ], - "start_col": 16, - "start_line": 21 - } - }, - "2238": { - "accessible_scopes": [ - "openzeppelin.token.erc721.enumerable.library", - "openzeppelin.token.erc721.enumerable.library._remove_token_from_all_tokens_enumeration" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 32, - "end_line": 357, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/uint256.cairo" - }, - "parent_location": [ - { - "end_col": 63, - "end_line": 161, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" - }, - "parent_location": [ - { - "end_col": 68, - "end_line": 149, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" - }, - "parent_location": [ - { - "end_col": 15, - "end_line": 167, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" - }, - "start_col": 5, - "start_line": 167 - }, - "While trying to retrieve the implicit argument 'range_check_ptr' in:" - ], - "start_col": 53, - "start_line": 149 - }, - "While expanding the reference 'range_check_ptr' in:" - ], - "start_col": 22, - "start_line": 161 - }, - "While trying to update the implicit return value 'range_check_ptr' in:" - ], - "start_col": 17, - "start_line": 357 - } - }, - "2239": { - "accessible_scopes": [ - "openzeppelin.token.erc721.enumerable.library", - "openzeppelin.token.erc721.enumerable.library._remove_token_from_all_tokens_enumeration" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 15, - "end_line": 167, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" - }, - "start_col": 5, - "start_line": 167 - } - }, - "2240": { - "accessible_scopes": [ - "openzeppelin.token.erc721.enumerable.library", - "openzeppelin.token.erc721.enumerable.library._add_token_to_owner_enumeration" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 51, - "end_line": 171, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" - }, - "parent_location": [ - { - "end_col": 39, - "end_line": 100, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" - }, - "parent_location": [ - { - "end_col": 50, - "end_line": 173, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" - }, - "start_col": 29, - "start_line": 173 - }, - "While trying to retrieve the implicit argument 'syscall_ptr' in:" - ], - "start_col": 21, - "start_line": 100 - }, - "While expanding the reference 'syscall_ptr' in:" - ], - "start_col": 33, - "start_line": 171 - } - }, - "2241": { - "accessible_scopes": [ - "openzeppelin.token.erc721.enumerable.library", - "openzeppelin.token.erc721.enumerable.library._add_token_to_owner_enumeration" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 31, - "end_line": 171, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" - }, - "parent_location": [ - { - "end_col": 67, - "end_line": 100, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" - }, - "parent_location": [ - { - "end_col": 50, - "end_line": 173, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" - }, - "start_col": 29, - "start_line": 173 - }, - "While trying to retrieve the implicit argument 'pedersen_ptr' in:" - ], - "start_col": 41, - "start_line": 100 - }, - "While expanding the reference 'pedersen_ptr' in:" - ], - "start_col": 5, - "start_line": 171 - } - }, - "2242": { - "accessible_scopes": [ - "openzeppelin.token.erc721.enumerable.library", - "openzeppelin.token.erc721.enumerable.library._add_token_to_owner_enumeration" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 68, - "end_line": 171, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" - }, - "parent_location": [ - { - "end_col": 84, - "end_line": 100, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" - }, - "parent_location": [ - { - "end_col": 50, - "end_line": 173, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" - }, - "start_col": 29, - "start_line": 173 - }, - "While trying to retrieve the implicit argument 'range_check_ptr' in:" - ], - "start_col": 69, - "start_line": 100 - }, - "While expanding the reference 'range_check_ptr' in:" - ], - "start_col": 53, - "start_line": 171 - } - }, - "2243": { - "accessible_scopes": [ - "openzeppelin.token.erc721.enumerable.library", - "openzeppelin.token.erc721.enumerable.library._add_token_to_owner_enumeration" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 11, - "end_line": 172, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" - }, - "parent_location": [ - { - "end_col": 49, - "end_line": 173, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" - }, - "start_col": 47, - "start_line": 173 - }, - "While expanding the reference 'to' in:" - ], - "start_col": 3, - "start_line": 172 - } - }, - "2244": { - "accessible_scopes": [ - "openzeppelin.token.erc721.enumerable.library", - "openzeppelin.token.erc721.enumerable.library._add_token_to_owner_enumeration" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 50, - "end_line": 173, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" - }, - "start_col": 29, - "start_line": 173 - } - }, - "2246": { - "accessible_scopes": [ - "openzeppelin.token.erc721.enumerable.library", - "openzeppelin.token.erc721.enumerable.library._add_token_to_owner_enumeration" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 39, - "end_line": 100, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" - }, - "parent_location": [ - { - "end_col": 50, - "end_line": 173, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" - }, - "parent_location": [ - { - "end_col": 34, - "end_line": 23, - "input_file": { - "filename": "autogen/starknet/storage_var/ERC721Enumerable_owned_tokens/decl.cairo" - }, - "parent_location": [ - { - "end_col": 62, - "end_line": 174, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" - }, - "start_col": 5, - "start_line": 174 - }, - "While trying to retrieve the implicit argument 'syscall_ptr' in:" - ], - "start_col": 16, - "start_line": 23 - }, - "While expanding the reference 'syscall_ptr' in:" - ], - "start_col": 29, - "start_line": 173 - }, - "While trying to update the implicit return value 'syscall_ptr' in:" - ], - "start_col": 21, - "start_line": 100 - } - }, - "2247": { - "accessible_scopes": [ - "openzeppelin.token.erc721.enumerable.library", - "openzeppelin.token.erc721.enumerable.library._add_token_to_owner_enumeration" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 67, - "end_line": 100, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" - }, - "parent_location": [ - { - "end_col": 50, - "end_line": 173, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" - }, - "parent_location": [ - { - "end_col": 62, - "end_line": 23, - "input_file": { - "filename": "autogen/starknet/storage_var/ERC721Enumerable_owned_tokens/decl.cairo" - }, - "parent_location": [ - { - "end_col": 62, - "end_line": 174, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" - }, - "start_col": 5, - "start_line": 174 - }, - "While trying to retrieve the implicit argument 'pedersen_ptr' in:" - ], - "start_col": 36, - "start_line": 23 - }, - "While expanding the reference 'pedersen_ptr' in:" - ], - "start_col": 29, - "start_line": 173 - }, - "While trying to update the implicit return value 'pedersen_ptr' in:" - ], - "start_col": 41, - "start_line": 100 - } - }, - "2248": { - "accessible_scopes": [ - "openzeppelin.token.erc721.enumerable.library", - "openzeppelin.token.erc721.enumerable.library._add_token_to_owner_enumeration" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 84, - "end_line": 100, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" - }, - "parent_location": [ - { - "end_col": 50, - "end_line": 173, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" - }, - "parent_location": [ - { - "end_col": 79, - "end_line": 23, - "input_file": { - "filename": "autogen/starknet/storage_var/ERC721Enumerable_owned_tokens/decl.cairo" - }, - "parent_location": [ - { - "end_col": 62, - "end_line": 174, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" - }, - "start_col": 5, - "start_line": 174 - }, - "While trying to retrieve the implicit argument 'range_check_ptr' in:" - ], - "start_col": 64, - "start_line": 23 - }, - "While expanding the reference 'range_check_ptr' in:" - ], - "start_col": 29, - "start_line": 173 - }, - "While trying to update the implicit return value 'range_check_ptr' in:" - ], - "start_col": 69, - "start_line": 100 - } - }, - "2249": { - "accessible_scopes": [ - "openzeppelin.token.erc721.enumerable.library", - "openzeppelin.token.erc721.enumerable.library._add_token_to_owner_enumeration" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 11, - "end_line": 172, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" - }, - "parent_location": [ - { - "end_col": 43, - "end_line": 174, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" - }, - "start_col": 41, - "start_line": 174 - }, - "While expanding the reference 'to' in:" - ], - "start_col": 3, - "start_line": 172 - } - }, - "2250": { - "accessible_scopes": [ - "openzeppelin.token.erc721.enumerable.library", - "openzeppelin.token.erc721.enumerable.library._add_token_to_owner_enumeration" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 25, - "end_line": 173, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" - }, - "parent_location": [ - { - "end_col": 51, - "end_line": 174, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" - }, - "start_col": 45, - "start_line": 174 - }, - "While expanding the reference 'length' in:" - ], - "start_col": 10, - "start_line": 173 - } - }, - "2251": { - "accessible_scopes": [ - "openzeppelin.token.erc721.enumerable.library", - "openzeppelin.token.erc721.enumerable.library._add_token_to_owner_enumeration" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 25, - "end_line": 173, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" - }, - "parent_location": [ - { - "end_col": 51, - "end_line": 174, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" - }, - "start_col": 45, - "start_line": 174 - }, - "While expanding the reference 'length' in:" - ], - "start_col": 10, - "start_line": 173 - } - }, - "2252": { - "accessible_scopes": [ - "openzeppelin.token.erc721.enumerable.library", - "openzeppelin.token.erc721.enumerable.library._add_token_to_owner_enumeration" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 30, - "end_line": 172, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" - }, - "parent_location": [ - { - "end_col": 61, - "end_line": 174, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" - }, - "start_col": 53, - "start_line": 174 - }, - "While expanding the reference 'token_id' in:" - ], - "start_col": 13, - "start_line": 172 - } - }, - "2253": { - "accessible_scopes": [ - "openzeppelin.token.erc721.enumerable.library", - "openzeppelin.token.erc721.enumerable.library._add_token_to_owner_enumeration" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 30, - "end_line": 172, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" - }, - "parent_location": [ - { - "end_col": 61, - "end_line": 174, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" - }, - "start_col": 53, - "start_line": 174 - }, - "While expanding the reference 'token_id' in:" - ], - "start_col": 13, - "start_line": 172 - } - }, - "2254": { - "accessible_scopes": [ - "openzeppelin.token.erc721.enumerable.library", - "openzeppelin.token.erc721.enumerable.library._add_token_to_owner_enumeration" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 62, - "end_line": 174, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" - }, - "start_col": 5, - "start_line": 174 - } - }, - "2256": { - "accessible_scopes": [ - "openzeppelin.token.erc721.enumerable.library", - "openzeppelin.token.erc721.enumerable.library._add_token_to_owner_enumeration" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 30, - "end_line": 172, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" - }, - "parent_location": [ - { - "end_col": 55, - "end_line": 175, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" - }, - "start_col": 47, - "start_line": 175 - }, - "While expanding the reference 'token_id' in:" - ], - "start_col": 13, - "start_line": 172 - } - }, - "2257": { - "accessible_scopes": [ - "openzeppelin.token.erc721.enumerable.library", - "openzeppelin.token.erc721.enumerable.library._add_token_to_owner_enumeration" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 30, - "end_line": 172, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" - }, - "parent_location": [ - { - "end_col": 55, - "end_line": 175, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" - }, - "start_col": 47, - "start_line": 175 - }, - "While expanding the reference 'token_id' in:" - ], - "start_col": 13, - "start_line": 172 - } - }, - "2258": { - "accessible_scopes": [ - "openzeppelin.token.erc721.enumerable.library", - "openzeppelin.token.erc721.enumerable.library._add_token_to_owner_enumeration" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 25, - "end_line": 173, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" - }, - "parent_location": [ - { - "end_col": 63, - "end_line": 175, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" - }, - "start_col": 57, - "start_line": 175 - }, - "While expanding the reference 'length' in:" - ], - "start_col": 10, - "start_line": 173 - } - }, - "2259": { - "accessible_scopes": [ - "openzeppelin.token.erc721.enumerable.library", - "openzeppelin.token.erc721.enumerable.library._add_token_to_owner_enumeration" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 25, - "end_line": 173, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" - }, - "parent_location": [ - { - "end_col": 63, - "end_line": 175, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" - }, - "start_col": 57, - "start_line": 175 - }, - "While expanding the reference 'length' in:" - ], - "start_col": 10, - "start_line": 173 - } - }, - "2260": { - "accessible_scopes": [ - "openzeppelin.token.erc721.enumerable.library", - "openzeppelin.token.erc721.enumerable.library._add_token_to_owner_enumeration" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 64, - "end_line": 175, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" - }, - "start_col": 5, - "start_line": 175 - } - }, - "2262": { - "accessible_scopes": [ - "openzeppelin.token.erc721.enumerable.library", - "openzeppelin.token.erc721.enumerable.library._add_token_to_owner_enumeration" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 62, - "end_line": 21, - "input_file": { - "filename": "autogen/starknet/storage_var/ERC721Enumerable_owned_tokens_index/decl.cairo" - }, - "parent_location": [ - { - "end_col": 64, - "end_line": 175, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" - }, - "parent_location": [ - { - "end_col": 31, - "end_line": 171, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" - }, - "parent_location": [ - { - "end_col": 15, - "end_line": 176, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" - }, - "start_col": 5, - "start_line": 176 - }, - "While trying to retrieve the implicit argument 'pedersen_ptr' in:" - ], - "start_col": 5, - "start_line": 171 - }, - "While expanding the reference 'pedersen_ptr' in:" - ], - "start_col": 5, - "start_line": 175 - }, - "While trying to update the implicit return value 'pedersen_ptr' in:" - ], - "start_col": 36, - "start_line": 21 - } - }, - "2263": { - "accessible_scopes": [ - "openzeppelin.token.erc721.enumerable.library", - "openzeppelin.token.erc721.enumerable.library._add_token_to_owner_enumeration" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 34, - "end_line": 21, - "input_file": { - "filename": "autogen/starknet/storage_var/ERC721Enumerable_owned_tokens_index/decl.cairo" - }, - "parent_location": [ - { - "end_col": 64, - "end_line": 175, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" - }, - "parent_location": [ - { - "end_col": 51, - "end_line": 171, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" - }, - "parent_location": [ - { - "end_col": 15, - "end_line": 176, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" - }, - "start_col": 5, - "start_line": 176 - }, - "While trying to retrieve the implicit argument 'syscall_ptr' in:" - ], - "start_col": 33, - "start_line": 171 - }, - "While expanding the reference 'syscall_ptr' in:" - ], - "start_col": 5, - "start_line": 175 - }, - "While trying to update the implicit return value 'syscall_ptr' in:" - ], - "start_col": 16, - "start_line": 21 - } - }, - "2264": { - "accessible_scopes": [ - "openzeppelin.token.erc721.enumerable.library", - "openzeppelin.token.erc721.enumerable.library._add_token_to_owner_enumeration" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 79, - "end_line": 21, - "input_file": { - "filename": "autogen/starknet/storage_var/ERC721Enumerable_owned_tokens_index/decl.cairo" - }, - "parent_location": [ - { - "end_col": 64, - "end_line": 175, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" - }, - "parent_location": [ - { - "end_col": 68, - "end_line": 171, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" - }, - "parent_location": [ - { - "end_col": 15, - "end_line": 176, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" - }, - "start_col": 5, - "start_line": 176 - }, - "While trying to retrieve the implicit argument 'range_check_ptr' in:" - ], - "start_col": 53, - "start_line": 171 - }, - "While expanding the reference 'range_check_ptr' in:" - ], - "start_col": 5, - "start_line": 175 - }, - "While trying to update the implicit return value 'range_check_ptr' in:" - ], - "start_col": 64, - "start_line": 21 - } - }, - "2265": { - "accessible_scopes": [ - "openzeppelin.token.erc721.enumerable.library", - "openzeppelin.token.erc721.enumerable.library._add_token_to_owner_enumeration" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 15, - "end_line": 176, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" - }, - "start_col": 5, - "start_line": 176 - } - }, - "2266": { - "accessible_scopes": [ - "openzeppelin.token.erc721.enumerable.library", - "openzeppelin.token.erc721.enumerable.library._remove_token_from_owner_enumeration" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 18, - "end_line": 182, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" - }, - "start_col": 5, - "start_line": 182 - } - }, - "2268": { - "accessible_scopes": [ - "openzeppelin.token.erc721.enumerable.library", - "openzeppelin.token.erc721.enumerable.library._remove_token_from_owner_enumeration" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 51, - "end_line": 180, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" - }, - "parent_location": [ - { - "end_col": 39, - "end_line": 100, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" - }, - "parent_location": [ - { - "end_col": 63, - "end_line": 183, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" - }, - "start_col": 39, - "start_line": 183 - }, - "While trying to retrieve the implicit argument 'syscall_ptr' in:" - ], - "start_col": 21, - "start_line": 100 - }, - "While expanding the reference 'syscall_ptr' in:" - ], - "start_col": 33, - "start_line": 180 - } - }, - "2269": { - "accessible_scopes": [ - "openzeppelin.token.erc721.enumerable.library", - "openzeppelin.token.erc721.enumerable.library._remove_token_from_owner_enumeration" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 31, - "end_line": 180, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" - }, - "parent_location": [ - { - "end_col": 67, - "end_line": 100, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" - }, - "parent_location": [ - { - "end_col": 63, - "end_line": 183, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" - }, - "start_col": 39, - "start_line": 183 - }, - "While trying to retrieve the implicit argument 'pedersen_ptr' in:" - ], - "start_col": 41, - "start_line": 100 - }, - "While expanding the reference 'pedersen_ptr' in:" - ], - "start_col": 5, - "start_line": 180 - } - }, - "2270": { - "accessible_scopes": [ - "openzeppelin.token.erc721.enumerable.library", - "openzeppelin.token.erc721.enumerable.library._remove_token_from_owner_enumeration" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 68, - "end_line": 180, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" - }, - "parent_location": [ - { - "end_col": 84, - "end_line": 100, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" - }, - "parent_location": [ - { - "end_col": 63, - "end_line": 183, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" - }, - "start_col": 39, - "start_line": 183 - }, - "While trying to retrieve the implicit argument 'range_check_ptr' in:" - ], - "start_col": 69, - "start_line": 100 - }, - "While expanding the reference 'range_check_ptr' in:" - ], - "start_col": 53, - "start_line": 180 - } - }, - "2271": { - "accessible_scopes": [ - "openzeppelin.token.erc721.enumerable.library", - "openzeppelin.token.erc721.enumerable.library._remove_token_from_owner_enumeration" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 14, - "end_line": 181, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" - }, - "parent_location": [ - { - "end_col": 62, - "end_line": 183, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" - }, - "start_col": 57, - "start_line": 183 - }, - "While expanding the reference 'from_' in:" - ], - "start_col": 3, - "start_line": 181 - } - }, - "2272": { - "accessible_scopes": [ - "openzeppelin.token.erc721.enumerable.library", - "openzeppelin.token.erc721.enumerable.library._remove_token_from_owner_enumeration" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 63, - "end_line": 183, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" - }, - "start_col": 39, - "start_line": 183 - } - }, - "2274": { - "accessible_scopes": [ - "openzeppelin.token.erc721.enumerable.library", - "openzeppelin.token.erc721.enumerable.library._remove_token_from_owner_enumeration" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 76, - "end_line": 185, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" - }, - "start_col": 75, - "start_line": 185 - } - }, - "2276": { - "accessible_scopes": [ - "openzeppelin.token.erc721.enumerable.library", - "openzeppelin.token.erc721.enumerable.library._remove_token_from_owner_enumeration" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 79, - "end_line": 185, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" - }, - "start_col": 78, - "start_line": 185 - } - }, - "2278": { - "accessible_scopes": [ - "openzeppelin.token.erc721.enumerable.library", - "openzeppelin.token.erc721.enumerable.library._remove_token_from_owner_enumeration" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 81, - "end_line": 185, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" - }, - "start_col": 30, - "start_line": 185 - } - }, - "2280": { - "accessible_scopes": [ - "openzeppelin.token.erc721.enumerable.library", - "openzeppelin.token.erc721.enumerable.library._remove_token_from_owner_enumeration" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 26, - "end_line": 185, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" - }, - "parent_location": [ - { - "end_col": 26, - "end_line": 185, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" - }, - "start_col": 10, - "start_line": 185 - }, - "While auto generating local variable for 'last_token_index'." - ], - "start_col": 10, - "start_line": 185 - } - }, - "2281": { - "accessible_scopes": [ - "openzeppelin.token.erc721.enumerable.library", - "openzeppelin.token.erc721.enumerable.library._remove_token_from_owner_enumeration" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 26, - "end_line": 185, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" - }, - "parent_location": [ - { - "end_col": 26, - "end_line": 185, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" - }, - "start_col": 10, - "start_line": 185 - }, - "While auto generating local variable for 'last_token_index'." - ], - "start_col": 10, - "start_line": 185 - } - }, - "2282": { - "accessible_scopes": [ - "openzeppelin.token.erc721.enumerable.library", - "openzeppelin.token.erc721.enumerable.library._remove_token_from_owner_enumeration" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 35, - "end_line": 37, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/security/safemath/library.cairo" - }, - "parent_location": [ - { - "end_col": 81, - "end_line": 185, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" - }, - "parent_location": [ - { - "end_col": 33, - "end_line": 13, - "input_file": { - "filename": "autogen/starknet/storage_var/ERC721Enumerable_owned_tokens_index/decl.cairo" - }, - "parent_location": [ - { - "end_col": 84, - "end_line": 186, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" - }, - "start_col": 34, - "start_line": 186 - }, - "While trying to retrieve the implicit argument 'syscall_ptr' in:" - ], - "start_col": 15, - "start_line": 13 - }, - "While expanding the reference 'syscall_ptr' in:" - ], - "start_col": 30, - "start_line": 185 - }, - "While trying to update the implicit return value 'syscall_ptr' in:" - ], - "start_col": 17, - "start_line": 37 - } - }, - "2283": { - "accessible_scopes": [ - "openzeppelin.token.erc721.enumerable.library", - "openzeppelin.token.erc721.enumerable.library._remove_token_from_owner_enumeration" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 63, - "end_line": 37, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/security/safemath/library.cairo" - }, - "parent_location": [ - { - "end_col": 81, - "end_line": 185, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" - }, - "parent_location": [ - { - "end_col": 61, - "end_line": 13, - "input_file": { - "filename": "autogen/starknet/storage_var/ERC721Enumerable_owned_tokens_index/decl.cairo" - }, - "parent_location": [ - { - "end_col": 84, - "end_line": 186, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" - }, - "start_col": 34, - "start_line": 186 - }, - "While trying to retrieve the implicit argument 'pedersen_ptr' in:" - ], - "start_col": 35, - "start_line": 13 - }, - "While expanding the reference 'pedersen_ptr' in:" - ], - "start_col": 30, - "start_line": 185 - }, - "While trying to update the implicit return value 'pedersen_ptr' in:" - ], - "start_col": 37, - "start_line": 37 - } - }, - "2284": { - "accessible_scopes": [ - "openzeppelin.token.erc721.enumerable.library", - "openzeppelin.token.erc721.enumerable.library._remove_token_from_owner_enumeration" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 80, - "end_line": 37, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/security/safemath/library.cairo" - }, - "parent_location": [ - { - "end_col": 81, - "end_line": 185, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" - }, - "parent_location": [ - { - "end_col": 78, - "end_line": 13, - "input_file": { - "filename": "autogen/starknet/storage_var/ERC721Enumerable_owned_tokens_index/decl.cairo" - }, - "parent_location": [ - { - "end_col": 84, - "end_line": 186, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" - }, - "start_col": 34, - "start_line": 186 - }, - "While trying to retrieve the implicit argument 'range_check_ptr' in:" - ], - "start_col": 63, - "start_line": 13 - }, - "While expanding the reference 'range_check_ptr' in:" - ], - "start_col": 30, - "start_line": 185 - }, - "While trying to update the implicit return value 'range_check_ptr' in:" - ], - "start_col": 65, - "start_line": 37 - } - }, - "2285": { - "accessible_scopes": [ - "openzeppelin.token.erc721.enumerable.library", - "openzeppelin.token.erc721.enumerable.library._remove_token_from_owner_enumeration" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 33, - "end_line": 181, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" - }, - "parent_location": [ - { - "end_col": 83, - "end_line": 186, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" - }, - "start_col": 75, - "start_line": 186 - }, - "While expanding the reference 'token_id' in:" - ], - "start_col": 16, - "start_line": 181 - } - }, - "2286": { - "accessible_scopes": [ - "openzeppelin.token.erc721.enumerable.library", - "openzeppelin.token.erc721.enumerable.library._remove_token_from_owner_enumeration" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 33, - "end_line": 181, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" - }, - "parent_location": [ - { - "end_col": 83, - "end_line": 186, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" - }, - "start_col": 75, - "start_line": 186 - }, - "While expanding the reference 'token_id' in:" - ], - "start_col": 16, - "start_line": 181 - } - }, - "2287": { - "accessible_scopes": [ - "openzeppelin.token.erc721.enumerable.library", - "openzeppelin.token.erc721.enumerable.library._remove_token_from_owner_enumeration" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 84, - "end_line": 186, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" - }, - "start_col": 34, - "start_line": 186 - } - }, - "2289": { - "accessible_scopes": [ - "openzeppelin.token.erc721.enumerable.library", - "openzeppelin.token.erc721.enumerable.library._remove_token_from_owner_enumeration" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 33, - "end_line": 13, - "input_file": { - "filename": "autogen/starknet/storage_var/ERC721Enumerable_owned_tokens_index/decl.cairo" - }, - "parent_location": [ - { - "end_col": 84, - "end_line": 186, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" - }, - "parent_location": [ - { - "end_col": 33, - "end_line": 13, - "input_file": { - "filename": "autogen/starknet/storage_var/ERC721Enumerable_owned_tokens_index/decl.cairo" - }, - "parent_location": [ - { - "end_col": 84, - "end_line": 186, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" - }, - "start_col": 34, - "start_line": 186 - }, - "While trying to update the implicit return value 'syscall_ptr' in:" - ], - "start_col": 15, - "start_line": 13 - }, - "While auto generating local variable for 'syscall_ptr'." - ], - "start_col": 34, - "start_line": 186 - }, - "While trying to update the implicit return value 'syscall_ptr' in:" - ], - "start_col": 15, - "start_line": 13 - } - }, - "2290": { - "accessible_scopes": [ - "openzeppelin.token.erc721.enumerable.library", - "openzeppelin.token.erc721.enumerable.library._remove_token_from_owner_enumeration" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 61, - "end_line": 13, - "input_file": { - "filename": "autogen/starknet/storage_var/ERC721Enumerable_owned_tokens_index/decl.cairo" - }, - "parent_location": [ - { - "end_col": 84, - "end_line": 186, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" - }, - "parent_location": [ - { - "end_col": 61, - "end_line": 13, - "input_file": { - "filename": "autogen/starknet/storage_var/ERC721Enumerable_owned_tokens_index/decl.cairo" - }, - "parent_location": [ - { - "end_col": 84, - "end_line": 186, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" - }, - "start_col": 34, - "start_line": 186 - }, - "While trying to update the implicit return value 'pedersen_ptr' in:" - ], - "start_col": 35, - "start_line": 13 - }, - "While auto generating local variable for 'pedersen_ptr'." - ], - "start_col": 34, - "start_line": 186 - }, - "While trying to update the implicit return value 'pedersen_ptr' in:" - ], - "start_col": 35, - "start_line": 13 - } - }, - "2291": { - "accessible_scopes": [ - "openzeppelin.token.erc721.enumerable.library", - "openzeppelin.token.erc721.enumerable.library._remove_token_from_owner_enumeration" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 30, - "end_line": 186, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" - }, - "parent_location": [ - { - "end_col": 30, - "end_line": 186, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" - }, - "start_col": 10, - "start_line": 186 - }, - "While auto generating local variable for 'token_index'." - ], - "start_col": 10, - "start_line": 186 - } - }, - "2292": { - "accessible_scopes": [ - "openzeppelin.token.erc721.enumerable.library", - "openzeppelin.token.erc721.enumerable.library._remove_token_from_owner_enumeration" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 30, - "end_line": 186, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" - }, - "parent_location": [ - { - "end_col": 30, - "end_line": 186, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" - }, - "start_col": 10, - "start_line": 186 - }, - "While auto generating local variable for 'token_index'." - ], - "start_col": 10, - "start_line": 186 - } - }, - "2293": { - "accessible_scopes": [ - "openzeppelin.token.erc721.enumerable.library", - "openzeppelin.token.erc721.enumerable.library._remove_token_from_owner_enumeration" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 78, - "end_line": 13, - "input_file": { - "filename": "autogen/starknet/storage_var/ERC721Enumerable_owned_tokens_index/decl.cairo" - }, - "parent_location": [ - { - "end_col": 84, - "end_line": 186, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" - }, - "parent_location": [ - { - "end_col": 32, - "end_line": 357, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/uint256.cairo" - }, - "parent_location": [ - { - "end_col": 63, - "end_line": 189, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" - }, - "start_col": 22, - "start_line": 189 - }, - "While trying to retrieve the implicit argument 'range_check_ptr' in:" - ], - "start_col": 17, - "start_line": 357 - }, - "While expanding the reference 'range_check_ptr' in:" - ], - "start_col": 34, - "start_line": 186 - }, - "While trying to update the implicit return value 'range_check_ptr' in:" - ], - "start_col": 63, - "start_line": 13 - } - }, - "2294": { - "accessible_scopes": [ - "openzeppelin.token.erc721.enumerable.library", - "openzeppelin.token.erc721.enumerable.library._remove_token_from_owner_enumeration" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 30, - "end_line": 186, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" - }, - "parent_location": [ - { - "end_col": 30, - "end_line": 186, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" - }, - "parent_location": [ - { - "end_col": 44, - "end_line": 189, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" - }, - "start_col": 33, - "start_line": 189 - }, - "While expanding the reference 'token_index' in:" - ], - "start_col": 10, - "start_line": 186 - }, - "While auto generating local variable for 'token_index'." - ], - "start_col": 10, - "start_line": 186 - } - }, - "2295": { - "accessible_scopes": [ - "openzeppelin.token.erc721.enumerable.library", - "openzeppelin.token.erc721.enumerable.library._remove_token_from_owner_enumeration" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 30, - "end_line": 186, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" - }, - "parent_location": [ - { - "end_col": 30, - "end_line": 186, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" - }, - "parent_location": [ - { - "end_col": 44, - "end_line": 189, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" - }, - "start_col": 33, - "start_line": 189 - }, - "While expanding the reference 'token_index' in:" - ], - "start_col": 10, - "start_line": 186 - }, - "While auto generating local variable for 'token_index'." - ], - "start_col": 10, - "start_line": 186 - } - }, - "2296": { - "accessible_scopes": [ - "openzeppelin.token.erc721.enumerable.library", - "openzeppelin.token.erc721.enumerable.library._remove_token_from_owner_enumeration" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 26, - "end_line": 185, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" - }, - "parent_location": [ - { - "end_col": 26, - "end_line": 185, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" - }, - "parent_location": [ - { - "end_col": 62, - "end_line": 189, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" - }, - "start_col": 46, - "start_line": 189 - }, - "While expanding the reference 'last_token_index' in:" - ], - "start_col": 10, - "start_line": 185 - }, - "While auto generating local variable for 'last_token_index'." - ], - "start_col": 10, - "start_line": 185 - } - }, - "2297": { - "accessible_scopes": [ - "openzeppelin.token.erc721.enumerable.library", - "openzeppelin.token.erc721.enumerable.library._remove_token_from_owner_enumeration" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 26, - "end_line": 185, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" - }, - "parent_location": [ - { - "end_col": 26, - "end_line": 185, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" - }, - "parent_location": [ - { - "end_col": 62, - "end_line": 189, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" - }, - "start_col": 46, - "start_line": 189 - }, - "While expanding the reference 'last_token_index' in:" - ], - "start_col": 10, - "start_line": 185 - }, - "While auto generating local variable for 'last_token_index'." - ], - "start_col": 10, - "start_line": 185 - } - }, - "2298": { - "accessible_scopes": [ - "openzeppelin.token.erc721.enumerable.library", - "openzeppelin.token.erc721.enumerable.library._remove_token_from_owner_enumeration" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 63, - "end_line": 189, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" - }, - "start_col": 22, - "start_line": 189 - } - }, - "2300": { - "accessible_scopes": [ - "openzeppelin.token.erc721.enumerable.library", - "openzeppelin.token.erc721.enumerable.library._remove_token_from_owner_enumeration" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 25, - "end_line": 190, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" - }, - "start_col": 9, - "start_line": 190 - } - }, - "2302": { - "accessible_scopes": [ - "openzeppelin.token.erc721.enumerable.library", - "openzeppelin.token.erc721.enumerable.library._remove_token_from_owner_enumeration" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 7, - "end_line": 190, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" - }, - "start_col": 5, - "start_line": 190 - } - }, - "2304": { - "accessible_scopes": [ - "openzeppelin.token.erc721.enumerable.library", - "openzeppelin.token.erc721.enumerable.library._remove_token_from_owner_enumeration" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 33, - "end_line": 13, - "input_file": { - "filename": "autogen/starknet/storage_var/ERC721Enumerable_owned_tokens_index/decl.cairo" - }, - "parent_location": [ - { - "end_col": 84, - "end_line": 186, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" - }, - "parent_location": [ - { - "end_col": 33, - "end_line": 13, - "input_file": { - "filename": "autogen/starknet/storage_var/ERC721Enumerable_owned_tokens_index/decl.cairo" - }, - "parent_location": [ - { - "end_col": 84, - "end_line": 186, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" - }, - "parent_location": [ - { - "end_col": 34, - "end_line": 21, - "input_file": { - "filename": "autogen/starknet/storage_var/ERC721Enumerable_owned_tokens_index/decl.cairo" - }, - "parent_location": [ - { - "end_col": 75, - "end_line": 191, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" - }, - "start_col": 9, - "start_line": 191 - }, - "While trying to retrieve the implicit argument 'syscall_ptr' in:" - ], - "start_col": 16, - "start_line": 21 - }, - "While expanding the reference 'syscall_ptr' in:" - ], - "start_col": 34, - "start_line": 186 - }, - "While trying to update the implicit return value 'syscall_ptr' in:" - ], - "start_col": 15, - "start_line": 13 - }, - "While auto generating local variable for 'syscall_ptr'." - ], - "start_col": 34, - "start_line": 186 - }, - "While trying to update the implicit return value 'syscall_ptr' in:" - ], - "start_col": 15, - "start_line": 13 - } - }, - "2305": { - "accessible_scopes": [ - "openzeppelin.token.erc721.enumerable.library", - "openzeppelin.token.erc721.enumerable.library._remove_token_from_owner_enumeration" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 61, - "end_line": 13, - "input_file": { - "filename": "autogen/starknet/storage_var/ERC721Enumerable_owned_tokens_index/decl.cairo" - }, - "parent_location": [ - { - "end_col": 84, - "end_line": 186, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" - }, - "parent_location": [ - { - "end_col": 61, - "end_line": 13, - "input_file": { - "filename": "autogen/starknet/storage_var/ERC721Enumerable_owned_tokens_index/decl.cairo" - }, - "parent_location": [ - { - "end_col": 84, - "end_line": 186, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" - }, - "parent_location": [ - { - "end_col": 62, - "end_line": 21, - "input_file": { - "filename": "autogen/starknet/storage_var/ERC721Enumerable_owned_tokens_index/decl.cairo" - }, - "parent_location": [ - { - "end_col": 75, - "end_line": 191, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" - }, - "start_col": 9, - "start_line": 191 - }, - "While trying to retrieve the implicit argument 'pedersen_ptr' in:" - ], - "start_col": 36, - "start_line": 21 - }, - "While expanding the reference 'pedersen_ptr' in:" - ], - "start_col": 34, - "start_line": 186 - }, - "While trying to update the implicit return value 'pedersen_ptr' in:" - ], - "start_col": 35, - "start_line": 13 - }, - "While auto generating local variable for 'pedersen_ptr'." - ], - "start_col": 34, - "start_line": 186 - }, - "While trying to update the implicit return value 'pedersen_ptr' in:" - ], - "start_col": 35, - "start_line": 13 - } - }, - "2306": { - "accessible_scopes": [ - "openzeppelin.token.erc721.enumerable.library", - "openzeppelin.token.erc721.enumerable.library._remove_token_from_owner_enumeration" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 32, - "end_line": 357, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/uint256.cairo" - }, - "parent_location": [ - { - "end_col": 63, - "end_line": 189, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" - }, - "parent_location": [ - { - "end_col": 79, - "end_line": 21, - "input_file": { - "filename": "autogen/starknet/storage_var/ERC721Enumerable_owned_tokens_index/decl.cairo" - }, - "parent_location": [ - { - "end_col": 75, - "end_line": 191, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" - }, - "start_col": 9, - "start_line": 191 - }, - "While trying to retrieve the implicit argument 'range_check_ptr' in:" - ], - "start_col": 64, - "start_line": 21 - }, - "While expanding the reference 'range_check_ptr' in:" - ], - "start_col": 22, - "start_line": 189 - }, - "While trying to update the implicit return value 'range_check_ptr' in:" - ], - "start_col": 17, - "start_line": 357 - } - }, - "2307": { - "accessible_scopes": [ - "openzeppelin.token.erc721.enumerable.library", - "openzeppelin.token.erc721.enumerable.library._remove_token_from_owner_enumeration" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 33, - "end_line": 181, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" - }, - "parent_location": [ - { - "end_col": 59, - "end_line": 191, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" - }, - "start_col": 51, - "start_line": 191 - }, - "While expanding the reference 'token_id' in:" - ], - "start_col": 16, - "start_line": 181 - } - }, - "2308": { - "accessible_scopes": [ - "openzeppelin.token.erc721.enumerable.library", - "openzeppelin.token.erc721.enumerable.library._remove_token_from_owner_enumeration" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 33, - "end_line": 181, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" - }, - "parent_location": [ - { - "end_col": 59, - "end_line": 191, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" - }, - "start_col": 51, - "start_line": 191 - }, - "While expanding the reference 'token_id' in:" - ], - "start_col": 16, - "start_line": 181 - } - }, - "2309": { - "accessible_scopes": [ - "openzeppelin.token.erc721.enumerable.library", - "openzeppelin.token.erc721.enumerable.library._remove_token_from_owner_enumeration" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 70, - "end_line": 191, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" - }, - "start_col": 69, - "start_line": 191 - } - }, - "2311": { - "accessible_scopes": [ - "openzeppelin.token.erc721.enumerable.library", - "openzeppelin.token.erc721.enumerable.library._remove_token_from_owner_enumeration" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 73, - "end_line": 191, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" - }, - "start_col": 72, - "start_line": 191 - } - }, - "2313": { - "accessible_scopes": [ - "openzeppelin.token.erc721.enumerable.library", - "openzeppelin.token.erc721.enumerable.library._remove_token_from_owner_enumeration" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 75, - "end_line": 191, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" - }, - "start_col": 9, - "start_line": 191 - } - }, - "2315": { - "accessible_scopes": [ - "openzeppelin.token.erc721.enumerable.library", - "openzeppelin.token.erc721.enumerable.library._remove_token_from_owner_enumeration" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 14, - "end_line": 181, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" - }, - "parent_location": [ - { - "end_col": 50, - "end_line": 192, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" - }, - "start_col": 45, - "start_line": 192 - }, - "While expanding the reference 'from_' in:" - ], - "start_col": 3, - "start_line": 181 - } - }, - "2316": { - "accessible_scopes": [ - "openzeppelin.token.erc721.enumerable.library", - "openzeppelin.token.erc721.enumerable.library._remove_token_from_owner_enumeration" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 26, - "end_line": 185, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" - }, - "parent_location": [ - { - "end_col": 26, - "end_line": 185, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" - }, - "parent_location": [ - { - "end_col": 68, - "end_line": 192, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" - }, - "start_col": 52, - "start_line": 192 - }, - "While expanding the reference 'last_token_index' in:" - ], - "start_col": 10, - "start_line": 185 - }, - "While auto generating local variable for 'last_token_index'." - ], - "start_col": 10, - "start_line": 185 - } - }, - "2317": { - "accessible_scopes": [ - "openzeppelin.token.erc721.enumerable.library", - "openzeppelin.token.erc721.enumerable.library._remove_token_from_owner_enumeration" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 26, - "end_line": 185, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" - }, - "parent_location": [ - { - "end_col": 26, - "end_line": 185, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" - }, - "parent_location": [ - { - "end_col": 68, - "end_line": 192, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" - }, - "start_col": 52, - "start_line": 192 - }, - "While expanding the reference 'last_token_index' in:" - ], - "start_col": 10, - "start_line": 185 - }, - "While auto generating local variable for 'last_token_index'." - ], - "start_col": 10, - "start_line": 185 - } - }, - "2318": { - "accessible_scopes": [ - "openzeppelin.token.erc721.enumerable.library", - "openzeppelin.token.erc721.enumerable.library._remove_token_from_owner_enumeration" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 79, - "end_line": 192, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" - }, - "start_col": 78, - "start_line": 192 - } - }, - "2320": { - "accessible_scopes": [ - "openzeppelin.token.erc721.enumerable.library", - "openzeppelin.token.erc721.enumerable.library._remove_token_from_owner_enumeration" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 82, - "end_line": 192, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" - }, - "start_col": 81, - "start_line": 192 - } - }, - "2322": { - "accessible_scopes": [ - "openzeppelin.token.erc721.enumerable.library", - "openzeppelin.token.erc721.enumerable.library._remove_token_from_owner_enumeration" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 84, - "end_line": 192, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" - }, - "start_col": 9, - "start_line": 192 - } - }, - "2324": { - "accessible_scopes": [ - "openzeppelin.token.erc721.enumerable.library", - "openzeppelin.token.erc721.enumerable.library._remove_token_from_owner_enumeration" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 62, - "end_line": 23, - "input_file": { - "filename": "autogen/starknet/storage_var/ERC721Enumerable_owned_tokens/decl.cairo" - }, - "parent_location": [ - { - "end_col": 84, - "end_line": 192, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" - }, - "parent_location": [ - { - "end_col": 31, - "end_line": 180, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" - }, - "parent_location": [ - { - "end_col": 19, - "end_line": 193, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" - }, - "start_col": 9, - "start_line": 193 - }, - "While trying to retrieve the implicit argument 'pedersen_ptr' in:" - ], - "start_col": 5, - "start_line": 180 - }, - "While expanding the reference 'pedersen_ptr' in:" - ], - "start_col": 9, - "start_line": 192 - }, - "While trying to update the implicit return value 'pedersen_ptr' in:" - ], - "start_col": 36, - "start_line": 23 - } - }, - "2325": { - "accessible_scopes": [ - "openzeppelin.token.erc721.enumerable.library", - "openzeppelin.token.erc721.enumerable.library._remove_token_from_owner_enumeration" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 34, - "end_line": 23, - "input_file": { - "filename": "autogen/starknet/storage_var/ERC721Enumerable_owned_tokens/decl.cairo" - }, - "parent_location": [ - { - "end_col": 84, - "end_line": 192, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" - }, - "parent_location": [ - { - "end_col": 51, - "end_line": 180, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" - }, - "parent_location": [ - { - "end_col": 19, - "end_line": 193, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" - }, - "start_col": 9, - "start_line": 193 - }, - "While trying to retrieve the implicit argument 'syscall_ptr' in:" - ], - "start_col": 33, - "start_line": 180 - }, - "While expanding the reference 'syscall_ptr' in:" - ], - "start_col": 9, - "start_line": 192 - }, - "While trying to update the implicit return value 'syscall_ptr' in:" - ], - "start_col": 16, - "start_line": 23 - } - }, - "2326": { - "accessible_scopes": [ - "openzeppelin.token.erc721.enumerable.library", - "openzeppelin.token.erc721.enumerable.library._remove_token_from_owner_enumeration" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 79, - "end_line": 23, - "input_file": { - "filename": "autogen/starknet/storage_var/ERC721Enumerable_owned_tokens/decl.cairo" - }, - "parent_location": [ - { - "end_col": 84, - "end_line": 192, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" - }, - "parent_location": [ - { - "end_col": 68, - "end_line": 180, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" - }, - "parent_location": [ - { - "end_col": 19, - "end_line": 193, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" - }, - "start_col": 9, - "start_line": 193 - }, - "While trying to retrieve the implicit argument 'range_check_ptr' in:" - ], - "start_col": 53, - "start_line": 180 - }, - "While expanding the reference 'range_check_ptr' in:" - ], - "start_col": 9, - "start_line": 192 - }, - "While trying to update the implicit return value 'range_check_ptr' in:" - ], - "start_col": 64, - "start_line": 23 - } - }, - "2327": { - "accessible_scopes": [ - "openzeppelin.token.erc721.enumerable.library", - "openzeppelin.token.erc721.enumerable.library._remove_token_from_owner_enumeration" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 19, - "end_line": 193, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" - }, - "start_col": 9, - "start_line": 193 - } - }, - "2328": { - "accessible_scopes": [ - "openzeppelin.token.erc721.enumerable.library", - "openzeppelin.token.erc721.enumerable.library._remove_token_from_owner_enumeration" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 33, - "end_line": 13, - "input_file": { - "filename": "autogen/starknet/storage_var/ERC721Enumerable_owned_tokens_index/decl.cairo" - }, - "parent_location": [ - { - "end_col": 84, - "end_line": 186, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" - }, - "parent_location": [ - { - "end_col": 33, - "end_line": 13, - "input_file": { - "filename": "autogen/starknet/storage_var/ERC721Enumerable_owned_tokens_index/decl.cairo" - }, - "parent_location": [ - { - "end_col": 84, - "end_line": 186, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" - }, - "parent_location": [ - { - "end_col": 33, - "end_line": 15, - "input_file": { - "filename": "autogen/starknet/storage_var/ERC721Enumerable_owned_tokens/decl.cairo" - }, - "parent_location": [ - { - "end_col": 95, - "end_line": 197, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" - }, - "start_col": 36, - "start_line": 197 - }, - "While trying to retrieve the implicit argument 'syscall_ptr' in:" - ], - "start_col": 15, - "start_line": 15 - }, - "While expanding the reference 'syscall_ptr' in:" - ], - "start_col": 34, - "start_line": 186 - }, - "While trying to update the implicit return value 'syscall_ptr' in:" - ], - "start_col": 15, - "start_line": 13 - }, - "While auto generating local variable for 'syscall_ptr'." - ], - "start_col": 34, - "start_line": 186 - }, - "While trying to update the implicit return value 'syscall_ptr' in:" - ], - "start_col": 15, - "start_line": 13 - } - }, - "2329": { - "accessible_scopes": [ - "openzeppelin.token.erc721.enumerable.library", - "openzeppelin.token.erc721.enumerable.library._remove_token_from_owner_enumeration" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 61, - "end_line": 13, - "input_file": { - "filename": "autogen/starknet/storage_var/ERC721Enumerable_owned_tokens_index/decl.cairo" - }, - "parent_location": [ - { - "end_col": 84, - "end_line": 186, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" - }, - "parent_location": [ - { - "end_col": 61, - "end_line": 13, - "input_file": { - "filename": "autogen/starknet/storage_var/ERC721Enumerable_owned_tokens_index/decl.cairo" - }, - "parent_location": [ - { - "end_col": 84, - "end_line": 186, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" - }, - "parent_location": [ - { - "end_col": 61, - "end_line": 15, - "input_file": { - "filename": "autogen/starknet/storage_var/ERC721Enumerable_owned_tokens/decl.cairo" - }, - "parent_location": [ - { - "end_col": 95, - "end_line": 197, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" - }, - "start_col": 36, - "start_line": 197 - }, - "While trying to retrieve the implicit argument 'pedersen_ptr' in:" - ], - "start_col": 35, - "start_line": 15 - }, - "While expanding the reference 'pedersen_ptr' in:" - ], - "start_col": 34, - "start_line": 186 - }, - "While trying to update the implicit return value 'pedersen_ptr' in:" - ], - "start_col": 35, - "start_line": 13 - }, - "While auto generating local variable for 'pedersen_ptr'." - ], - "start_col": 34, - "start_line": 186 - }, - "While trying to update the implicit return value 'pedersen_ptr' in:" - ], - "start_col": 35, - "start_line": 13 - } - }, - "2330": { - "accessible_scopes": [ - "openzeppelin.token.erc721.enumerable.library", - "openzeppelin.token.erc721.enumerable.library._remove_token_from_owner_enumeration" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 32, - "end_line": 357, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/uint256.cairo" - }, - "parent_location": [ - { - "end_col": 63, - "end_line": 189, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" - }, - "parent_location": [ - { - "end_col": 78, - "end_line": 15, - "input_file": { - "filename": "autogen/starknet/storage_var/ERC721Enumerable_owned_tokens/decl.cairo" - }, - "parent_location": [ - { - "end_col": 95, - "end_line": 197, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" - }, - "start_col": 36, - "start_line": 197 - }, - "While trying to retrieve the implicit argument 'range_check_ptr' in:" - ], - "start_col": 63, - "start_line": 15 - }, - "While expanding the reference 'range_check_ptr' in:" - ], - "start_col": 22, - "start_line": 189 - }, - "While trying to update the implicit return value 'range_check_ptr' in:" - ], - "start_col": 17, - "start_line": 357 - } - }, - "2331": { - "accessible_scopes": [ - "openzeppelin.token.erc721.enumerable.library", - "openzeppelin.token.erc721.enumerable.library._remove_token_from_owner_enumeration" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 14, - "end_line": 181, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" - }, - "parent_location": [ - { - "end_col": 76, - "end_line": 197, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" - }, - "start_col": 71, - "start_line": 197 - }, - "While expanding the reference 'from_' in:" - ], - "start_col": 3, - "start_line": 181 - } - }, - "2332": { - "accessible_scopes": [ - "openzeppelin.token.erc721.enumerable.library", - "openzeppelin.token.erc721.enumerable.library._remove_token_from_owner_enumeration" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 26, - "end_line": 185, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" - }, - "parent_location": [ - { - "end_col": 26, - "end_line": 185, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" - }, - "parent_location": [ - { - "end_col": 94, - "end_line": 197, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" - }, - "start_col": 78, - "start_line": 197 - }, - "While expanding the reference 'last_token_index' in:" - ], - "start_col": 10, - "start_line": 185 - }, - "While auto generating local variable for 'last_token_index'." - ], - "start_col": 10, - "start_line": 185 - } - }, - "2333": { - "accessible_scopes": [ - "openzeppelin.token.erc721.enumerable.library", - "openzeppelin.token.erc721.enumerable.library._remove_token_from_owner_enumeration" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 26, - "end_line": 185, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" - }, - "parent_location": [ - { - "end_col": 26, - "end_line": 185, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" - }, - "parent_location": [ - { - "end_col": 94, - "end_line": 197, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" - }, - "start_col": 78, - "start_line": 197 - }, - "While expanding the reference 'last_token_index' in:" - ], - "start_col": 10, - "start_line": 185 - }, - "While auto generating local variable for 'last_token_index'." - ], - "start_col": 10, - "start_line": 185 - } - }, - "2334": { - "accessible_scopes": [ - "openzeppelin.token.erc721.enumerable.library", - "openzeppelin.token.erc721.enumerable.library._remove_token_from_owner_enumeration" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 95, - "end_line": 197, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" - }, - "start_col": 36, - "start_line": 197 - } - }, - "2336": { - "accessible_scopes": [ - "openzeppelin.token.erc721.enumerable.library", - "openzeppelin.token.erc721.enumerable.library._remove_token_from_owner_enumeration" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 33, - "end_line": 15, - "input_file": { - "filename": "autogen/starknet/storage_var/ERC721Enumerable_owned_tokens/decl.cairo" - }, - "parent_location": [ - { - "end_col": 95, - "end_line": 197, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" - }, - "parent_location": [ - { - "end_col": 34, - "end_line": 23, - "input_file": { - "filename": "autogen/starknet/storage_var/ERC721Enumerable_owned_tokens/decl.cairo" - }, - "parent_location": [ - { - "end_col": 75, - "end_line": 198, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" - }, - "start_col": 5, - "start_line": 198 - }, - "While trying to retrieve the implicit argument 'syscall_ptr' in:" - ], - "start_col": 16, - "start_line": 23 - }, - "While expanding the reference 'syscall_ptr' in:" - ], - "start_col": 36, - "start_line": 197 - }, - "While trying to update the implicit return value 'syscall_ptr' in:" - ], - "start_col": 15, - "start_line": 15 - } - }, - "2337": { - "accessible_scopes": [ - "openzeppelin.token.erc721.enumerable.library", - "openzeppelin.token.erc721.enumerable.library._remove_token_from_owner_enumeration" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 61, - "end_line": 15, - "input_file": { - "filename": "autogen/starknet/storage_var/ERC721Enumerable_owned_tokens/decl.cairo" - }, - "parent_location": [ - { - "end_col": 95, - "end_line": 197, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" - }, - "parent_location": [ - { - "end_col": 62, - "end_line": 23, - "input_file": { - "filename": "autogen/starknet/storage_var/ERC721Enumerable_owned_tokens/decl.cairo" - }, - "parent_location": [ - { - "end_col": 75, - "end_line": 198, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" - }, - "start_col": 5, - "start_line": 198 - }, - "While trying to retrieve the implicit argument 'pedersen_ptr' in:" - ], - "start_col": 36, - "start_line": 23 - }, - "While expanding the reference 'pedersen_ptr' in:" - ], - "start_col": 36, - "start_line": 197 - }, - "While trying to update the implicit return value 'pedersen_ptr' in:" - ], - "start_col": 35, - "start_line": 15 - } - }, - "2338": { - "accessible_scopes": [ - "openzeppelin.token.erc721.enumerable.library", - "openzeppelin.token.erc721.enumerable.library._remove_token_from_owner_enumeration" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 78, - "end_line": 15, - "input_file": { - "filename": "autogen/starknet/storage_var/ERC721Enumerable_owned_tokens/decl.cairo" - }, - "parent_location": [ - { - "end_col": 95, - "end_line": 197, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" - }, - "parent_location": [ - { - "end_col": 79, - "end_line": 23, - "input_file": { - "filename": "autogen/starknet/storage_var/ERC721Enumerable_owned_tokens/decl.cairo" - }, - "parent_location": [ - { - "end_col": 75, - "end_line": 198, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" - }, - "start_col": 5, - "start_line": 198 - }, - "While trying to retrieve the implicit argument 'range_check_ptr' in:" - ], - "start_col": 64, - "start_line": 23 - }, - "While expanding the reference 'range_check_ptr' in:" - ], - "start_col": 36, - "start_line": 197 - }, - "While trying to update the implicit return value 'range_check_ptr' in:" - ], - "start_col": 63, - "start_line": 15 - } - }, - "2339": { - "accessible_scopes": [ - "openzeppelin.token.erc721.enumerable.library", - "openzeppelin.token.erc721.enumerable.library._remove_token_from_owner_enumeration" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 14, - "end_line": 181, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" - }, - "parent_location": [ - { - "end_col": 46, - "end_line": 198, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" - }, - "start_col": 41, - "start_line": 198 - }, - "While expanding the reference 'from_' in:" - ], - "start_col": 3, - "start_line": 181 - } - }, - "2340": { - "accessible_scopes": [ - "openzeppelin.token.erc721.enumerable.library", - "openzeppelin.token.erc721.enumerable.library._remove_token_from_owner_enumeration" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 30, - "end_line": 186, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" - }, - "parent_location": [ - { - "end_col": 30, - "end_line": 186, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" - }, - "parent_location": [ - { - "end_col": 59, - "end_line": 198, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" - }, - "start_col": 48, - "start_line": 198 - }, - "While expanding the reference 'token_index' in:" - ], - "start_col": 10, - "start_line": 186 - }, - "While auto generating local variable for 'token_index'." - ], - "start_col": 10, - "start_line": 186 - } - }, - "2341": { - "accessible_scopes": [ - "openzeppelin.token.erc721.enumerable.library", - "openzeppelin.token.erc721.enumerable.library._remove_token_from_owner_enumeration" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 30, - "end_line": 186, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" - }, - "parent_location": [ - { - "end_col": 30, - "end_line": 186, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" - }, - "parent_location": [ - { - "end_col": 59, - "end_line": 198, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" - }, - "start_col": 48, - "start_line": 198 - }, - "While expanding the reference 'token_index' in:" - ], - "start_col": 10, - "start_line": 186 - }, - "While auto generating local variable for 'token_index'." - ], - "start_col": 10, - "start_line": 186 - } - }, - "2342": { - "accessible_scopes": [ - "openzeppelin.token.erc721.enumerable.library", - "openzeppelin.token.erc721.enumerable.library._remove_token_from_owner_enumeration" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 32, - "end_line": 197, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" - }, - "parent_location": [ - { - "end_col": 74, - "end_line": 198, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" - }, - "start_col": 61, - "start_line": 198 - }, - "While expanding the reference 'last_token_id' in:" - ], - "start_col": 10, - "start_line": 197 - } - }, - "2343": { - "accessible_scopes": [ - "openzeppelin.token.erc721.enumerable.library", - "openzeppelin.token.erc721.enumerable.library._remove_token_from_owner_enumeration" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 32, - "end_line": 197, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" - }, - "parent_location": [ - { - "end_col": 74, - "end_line": 198, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" - }, - "start_col": 61, - "start_line": 198 - }, - "While expanding the reference 'last_token_id' in:" - ], - "start_col": 10, - "start_line": 197 - } - }, - "2344": { - "accessible_scopes": [ - "openzeppelin.token.erc721.enumerable.library", - "openzeppelin.token.erc721.enumerable.library._remove_token_from_owner_enumeration" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 75, - "end_line": 198, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" - }, - "start_col": 5, - "start_line": 198 - } - }, - "2346": { - "accessible_scopes": [ - "openzeppelin.token.erc721.enumerable.library", - "openzeppelin.token.erc721.enumerable.library._remove_token_from_owner_enumeration" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 32, - "end_line": 197, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" - }, - "parent_location": [ - { - "end_col": 60, - "end_line": 199, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" - }, - "start_col": 47, - "start_line": 199 - }, - "While expanding the reference 'last_token_id' in:" - ], - "start_col": 10, - "start_line": 197 - } - }, - "2347": { - "accessible_scopes": [ - "openzeppelin.token.erc721.enumerable.library", - "openzeppelin.token.erc721.enumerable.library._remove_token_from_owner_enumeration" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 32, - "end_line": 197, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" - }, - "parent_location": [ - { - "end_col": 60, - "end_line": 199, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" - }, - "start_col": 47, - "start_line": 199 - }, - "While expanding the reference 'last_token_id' in:" - ], - "start_col": 10, - "start_line": 197 - } - }, - "2348": { - "accessible_scopes": [ - "openzeppelin.token.erc721.enumerable.library", - "openzeppelin.token.erc721.enumerable.library._remove_token_from_owner_enumeration" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 30, - "end_line": 186, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" - }, - "parent_location": [ - { - "end_col": 30, - "end_line": 186, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" - }, - "parent_location": [ - { - "end_col": 73, - "end_line": 199, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" - }, - "start_col": 62, - "start_line": 199 - }, - "While expanding the reference 'token_index' in:" - ], - "start_col": 10, - "start_line": 186 - }, - "While auto generating local variable for 'token_index'." - ], - "start_col": 10, - "start_line": 186 - } - }, - "2349": { - "accessible_scopes": [ - "openzeppelin.token.erc721.enumerable.library", - "openzeppelin.token.erc721.enumerable.library._remove_token_from_owner_enumeration" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 30, - "end_line": 186, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" - }, - "parent_location": [ - { - "end_col": 30, - "end_line": 186, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" - }, - "parent_location": [ - { - "end_col": 73, - "end_line": 199, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" - }, - "start_col": 62, - "start_line": 199 - }, - "While expanding the reference 'token_index' in:" - ], - "start_col": 10, - "start_line": 186 - }, - "While auto generating local variable for 'token_index'." - ], - "start_col": 10, - "start_line": 186 - } - }, - "2350": { - "accessible_scopes": [ - "openzeppelin.token.erc721.enumerable.library", - "openzeppelin.token.erc721.enumerable.library._remove_token_from_owner_enumeration" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 74, - "end_line": 199, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" - }, - "start_col": 5, - "start_line": 199 - } - }, - "2352": { - "accessible_scopes": [ - "openzeppelin.token.erc721.enumerable.library", - "openzeppelin.token.erc721.enumerable.library._remove_token_from_owner_enumeration" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 62, - "end_line": 21, - "input_file": { - "filename": "autogen/starknet/storage_var/ERC721Enumerable_owned_tokens_index/decl.cairo" - }, - "parent_location": [ - { - "end_col": 74, - "end_line": 199, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" - }, - "parent_location": [ - { - "end_col": 31, - "end_line": 180, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" - }, - "parent_location": [ - { - "end_col": 15, - "end_line": 200, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" - }, - "start_col": 5, - "start_line": 200 - }, - "While trying to retrieve the implicit argument 'pedersen_ptr' in:" - ], - "start_col": 5, - "start_line": 180 - }, - "While expanding the reference 'pedersen_ptr' in:" - ], - "start_col": 5, - "start_line": 199 - }, - "While trying to update the implicit return value 'pedersen_ptr' in:" - ], - "start_col": 36, - "start_line": 21 - } - }, - "2353": { - "accessible_scopes": [ - "openzeppelin.token.erc721.enumerable.library", - "openzeppelin.token.erc721.enumerable.library._remove_token_from_owner_enumeration" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 34, - "end_line": 21, - "input_file": { - "filename": "autogen/starknet/storage_var/ERC721Enumerable_owned_tokens_index/decl.cairo" - }, - "parent_location": [ - { - "end_col": 74, - "end_line": 199, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" - }, - "parent_location": [ - { - "end_col": 51, - "end_line": 180, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" - }, - "parent_location": [ - { - "end_col": 15, - "end_line": 200, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" - }, - "start_col": 5, - "start_line": 200 - }, - "While trying to retrieve the implicit argument 'syscall_ptr' in:" - ], - "start_col": 33, - "start_line": 180 - }, - "While expanding the reference 'syscall_ptr' in:" - ], - "start_col": 5, - "start_line": 199 - }, - "While trying to update the implicit return value 'syscall_ptr' in:" - ], - "start_col": 16, - "start_line": 21 - } - }, - "2354": { - "accessible_scopes": [ - "openzeppelin.token.erc721.enumerable.library", - "openzeppelin.token.erc721.enumerable.library._remove_token_from_owner_enumeration" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 79, - "end_line": 21, - "input_file": { - "filename": "autogen/starknet/storage_var/ERC721Enumerable_owned_tokens_index/decl.cairo" - }, - "parent_location": [ - { - "end_col": 74, - "end_line": 199, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" - }, - "parent_location": [ - { - "end_col": 68, - "end_line": 180, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" - }, - "parent_location": [ - { - "end_col": 15, - "end_line": 200, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" - }, - "start_col": 5, - "start_line": 200 - }, - "While trying to retrieve the implicit argument 'range_check_ptr' in:" - ], - "start_col": 53, - "start_line": 180 - }, - "While expanding the reference 'range_check_ptr' in:" - ], - "start_col": 5, - "start_line": 199 - }, - "While trying to update the implicit return value 'range_check_ptr' in:" - ], - "start_col": 64, - "start_line": 21 - } - }, - "2355": { - "accessible_scopes": [ - "openzeppelin.token.erc721.enumerable.library", - "openzeppelin.token.erc721.enumerable.library._remove_token_from_owner_enumeration" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 15, - "end_line": 200, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" - }, - "start_col": 5, - "start_line": 200 - } - }, - "2356": { - "accessible_scopes": [ - "starkware.cairo.common.squash_dict", - "starkware.cairo.common.squash_dict.squash_dict" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 18, - "end_line": 27, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/squash_dict.cairo" - }, - "start_col": 5, - "start_line": 27 - } - }, - "2358": { - "accessible_scopes": [ - "starkware.cairo.common.squash_dict", - "starkware.cairo.common.squash_dict.squash_dict" - ], - "flow_tracking_data": null, - "hints": [ - { - "location": { - "end_col": 27, - "end_line": 28, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/squash_dict.cairo" - }, - "start_col": 5, - "start_line": 28 - }, - "n_prefix_newlines": 0 - } - ], - "inst": { - "end_col": 56, - "end_line": 29, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/squash_dict.cairo" - }, - "start_col": 5, - "start_line": 29 - } - }, - "2359": { - "accessible_scopes": [ - "starkware.cairo.common.squash_dict", - "starkware.cairo.common.squash_dict.squash_dict" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 7, - "end_line": 31, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/squash_dict.cairo" - }, - "start_col": 5, - "start_line": 31 - } - }, - "2361": { - "accessible_scopes": [ - "starkware.cairo.common.squash_dict", - "starkware.cairo.common.squash_dict.squash_dict" - ], - "flow_tracking_data": null, - "hints": [ - { - "location": { - "end_col": 30, - "end_line": 33, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/squash_dict.cairo" - }, - "start_col": 9, - "start_line": 33 - }, - "n_prefix_newlines": 0 - } - ], - "inst": { - "end_col": 33, - "end_line": 24, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/squash_dict.cairo" - }, - "parent_location": [ - { - "end_col": 33, - "end_line": 24, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/squash_dict.cairo" - }, - "parent_location": [ - { - "end_col": 46, - "end_line": 34, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/squash_dict.cairo" - }, - "start_col": 9, - "start_line": 34 - }, - "While trying to retrieve the implicit argument 'range_check_ptr' in:" - ], - "start_col": 18, - "start_line": 24 - }, - "While expanding the reference 'range_check_ptr' in:" - ], - "start_col": 18, - "start_line": 24 - } - }, - "2362": { - "accessible_scopes": [ - "starkware.cairo.common.squash_dict", - "starkware.cairo.common.squash_dict.squash_dict" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 91, - "end_line": 25, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/squash_dict.cairo" - }, - "parent_location": [ - { - "end_col": 44, - "end_line": 34, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/squash_dict.cairo" - }, - "start_col": 31, - "start_line": 34 - }, - "While expanding the reference 'squashed_dict' in:" - ], - "start_col": 65, - "start_line": 25 - } - }, - "2363": { - "accessible_scopes": [ - "starkware.cairo.common.squash_dict", - "starkware.cairo.common.squash_dict.squash_dict" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 46, - "end_line": 34, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/squash_dict.cairo" - }, - "start_col": 9, - "start_line": 34 - } - }, - "2364": { - "accessible_scopes": [ - "starkware.cairo.common.squash_dict", - "starkware.cairo.common.squash_dict.squash_dict" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 52, - "end_line": 38, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/squash_dict.cairo" - }, - "start_col": 26, - "start_line": 38 - } - }, - "2366": { - "accessible_scopes": [ - "starkware.cairo.common.squash_dict", - "starkware.cairo.common.squash_dict.squash_dict" - ], - "flow_tracking_data": null, - "hints": [ - { - "location": { - "end_col": 7, - "end_line": 59, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/squash_dict.cairo" - }, - "start_col": 5, - "start_line": 39 - }, - "n_prefix_newlines": 1 - } - ], - "inst": { - "end_col": 7, - "end_line": 62, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/squash_dict.cairo" - }, - "start_col": 5, - "start_line": 62 - } - }, - "2368": { - "accessible_scopes": [ - "starkware.cairo.common.squash_dict", - "starkware.cairo.common.squash_dict.squash_dict" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 46, - "end_line": 65, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/squash_dict.cairo" - }, - "start_col": 9, - "start_line": 65 - } - }, - "2369": { - "accessible_scopes": [ - "starkware.cairo.common.squash_dict", - "starkware.cairo.common.squash_dict.squash_dict" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 54, - "end_line": 66, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/squash_dict.cairo" - }, - "start_col": 35, - "start_line": 66 - } - }, - "2371": { - "accessible_scopes": [ - "starkware.cairo.common.squash_dict", - "starkware.cairo.common.squash_dict.squash_dict" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 7, - "end_line": 62, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/squash_dict.cairo" - }, - "start_col": 5, - "start_line": 62 - } - }, - "2373": { - "accessible_scopes": [ - "starkware.cairo.common.squash_dict", - "starkware.cairo.common.squash_dict.squash_dict" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 33, - "end_line": 24, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/squash_dict.cairo" - }, - "parent_location": [ - { - "end_col": 50, - "end_line": 63, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/squash_dict.cairo" - }, - "start_col": 35, - "start_line": 63 - }, - "While expanding the reference 'range_check_ptr' in:" - ], - "start_col": 18, - "start_line": 24 - } - }, - "2374": { - "accessible_scopes": [ - "starkware.cairo.common.squash_dict", - "starkware.cairo.common.squash_dict.squash_dict" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 31, - "end_line": 25, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/squash_dict.cairo" - }, - "parent_location": [ - { - "end_col": 36, - "end_line": 70, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/squash_dict.cairo" - }, - "start_col": 23, - "start_line": 70 - }, - "While expanding the reference 'dict_accesses' in:" - ], - "start_col": 5, - "start_line": 25 - } - }, - "2375": { - "accessible_scopes": [ - "starkware.cairo.common.squash_dict", - "starkware.cairo.common.squash_dict.squash_dict" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 55, - "end_line": 71, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/squash_dict.cairo" - }, - "start_col": 34, - "start_line": 71 - } - }, - "2377": { - "accessible_scopes": [ - "starkware.cairo.common.squash_dict", - "starkware.cairo.common.squash_dict.squash_dict" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 20, - "end_line": 36, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/squash_dict.cairo" - }, - "parent_location": [ - { - "end_col": 22, - "end_line": 72, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/squash_dict.cairo" - }, - "start_col": 13, - "start_line": 72 - }, - "While expanding the reference 'first_key' in:" - ], - "start_col": 11, - "start_line": 36 - } - }, - "2378": { - "accessible_scopes": [ - "starkware.cairo.common.squash_dict", - "starkware.cairo.common.squash_dict.squash_dict" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 23, - "end_line": 38, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/squash_dict.cairo" - }, - "parent_location": [ - { - "end_col": 38, - "end_line": 73, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/squash_dict.cairo" - }, - "start_col": 28, - "start_line": 73 - }, - "While expanding the reference 'n_accesses' in:" - ], - "start_col": 13, - "start_line": 38 - } - }, - "2379": { - "accessible_scopes": [ - "starkware.cairo.common.squash_dict", - "starkware.cairo.common.squash_dict.squash_dict" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 91, - "end_line": 25, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/squash_dict.cairo" - }, - "parent_location": [ - { - "end_col": 36, - "end_line": 74, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/squash_dict.cairo" - }, - "start_col": 23, - "start_line": 74 - }, - "While expanding the reference 'squashed_dict' in:" - ], - "start_col": 65, - "start_line": 25 - } - }, - "2380": { - "accessible_scopes": [ - "starkware.cairo.common.squash_dict", - "starkware.cairo.common.squash_dict.squash_dict" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 19, - "end_line": 37, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/squash_dict.cairo" - }, - "parent_location": [ - { - "end_col": 26, - "end_line": 75, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/squash_dict.cairo" - }, - "start_col": 18, - "start_line": 75 - }, - "While expanding the reference 'big_keys' in:" - ], - "start_col": 11, - "start_line": 37 - } - }, - "2381": { - "accessible_scopes": [ - "starkware.cairo.common.squash_dict", - "starkware.cairo.common.squash_dict.squash_dict" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 6, - "end_line": 76, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/squash_dict.cairo" - }, - "start_col": 44, - "start_line": 68 - } - }, - "2383": { - "accessible_scopes": [ - "starkware.cairo.common.squash_dict", - "starkware.cairo.common.squash_dict.squash_dict" - ], - "flow_tracking_data": null, - "hints": [ - { - "location": { - "end_col": 26, - "end_line": 77, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/squash_dict.cairo" - }, - "start_col": 5, - "start_line": 77 - }, - "n_prefix_newlines": 0 - } - ], - "inst": { - "end_col": 42, - "end_line": 78, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/squash_dict.cairo" - }, - "start_col": 5, - "start_line": 78 - } - }, - "2384": { - "accessible_scopes": [ - "starkware.cairo.common.squash_dict", - "starkware.cairo.common.squash_dict.squash_dict_inner" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 18, - "end_line": 110, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/squash_dict.cairo" - }, - "start_col": 5, - "start_line": 110 - } - }, - "2386": { - "accessible_scopes": [ - "starkware.cairo.common.squash_dict", - "starkware.cairo.common.squash_dict.squash_dict_inner" - ], - "flow_tracking_data": null, - "hints": [ - { - "location": { - "end_col": 7, - "end_line": 134, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/squash_dict.cairo" - }, - "start_col": 5, - "start_line": 130 - }, - "n_prefix_newlines": 1 - } - ], - "inst": { - "end_col": 53, - "end_line": 136, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/squash_dict.cairo" - }, - "start_col": 36, - "start_line": 136 - } - }, - "2387": { - "accessible_scopes": [ - "starkware.cairo.common.squash_dict", - "starkware.cairo.common.squash_dict.squash_dict_inner" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 63, - "end_line": 137, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/squash_dict.cairo" - }, - "start_col": 25, - "start_line": 137 - } - }, - "2389": { - "accessible_scopes": [ - "starkware.cairo.common.squash_dict", - "starkware.cairo.common.squash_dict.squash_dict_inner" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 67, - "end_line": 140, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/squash_dict.cairo" - }, - "start_col": 5, - "start_line": 140 - } - }, - "2390": { - "accessible_scopes": [ - "starkware.cairo.common.squash_dict", - "starkware.cairo.common.squash_dict.squash_dict_inner" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 59, - "end_line": 142, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/squash_dict.cairo" - }, - "start_col": 5, - "start_line": 142 - } - }, - "2391": { - "accessible_scopes": [ - "starkware.cairo.common.squash_dict", - "starkware.cairo.common.squash_dict.squash_dict_inner" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 66, - "end_line": 143, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/squash_dict.cairo" - }, - "start_col": 5, - "start_line": 143 - } - }, - "2393": { - "accessible_scopes": [ - "starkware.cairo.common.squash_dict", - "starkware.cairo.common.squash_dict.squash_dict_inner" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 27, - "end_line": 146, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/squash_dict.cairo" - }, - "start_col": 5, - "start_line": 146 - } - }, - "2394": { - "accessible_scopes": [ - "starkware.cairo.common.squash_dict", - "starkware.cairo.common.squash_dict.squash_dict_inner" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 24, - "end_line": 149, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/squash_dict.cairo" - }, - "start_col": 5, - "start_line": 149 - } - }, - "2395": { - "accessible_scopes": [ - "starkware.cairo.common.squash_dict", - "starkware.cairo.common.squash_dict.squash_dict_inner" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 49, - "end_line": 151, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/squash_dict.cairo" - }, - "start_col": 5, - "start_line": 151 - } - }, - "2396": { - "accessible_scopes": [ - "starkware.cairo.common.squash_dict", - "starkware.cairo.common.squash_dict.squash_dict_inner" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 47, - "end_line": 152, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/squash_dict.cairo" - }, - "start_col": 5, - "start_line": 152 - } - }, - "2397": { - "accessible_scopes": [ - "starkware.cairo.common.squash_dict", - "starkware.cairo.common.squash_dict.squash_dict_inner" - ], - "flow_tracking_data": null, - "hints": [ - { - "location": { - "end_col": 68, - "end_line": 160, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/squash_dict.cairo" - }, - "start_col": 5, - "start_line": 160 - }, - "n_prefix_newlines": 0 - } - ], - "inst": { - "end_col": 43, - "end_line": 161, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/squash_dict.cairo" - }, - "start_col": 5, - "start_line": 161 - } - }, - "2399": { - "accessible_scopes": [ - "starkware.cairo.common.squash_dict", - "starkware.cairo.common.squash_dict.squash_dict_inner" - ], - "flow_tracking_data": null, - "hints": [ - { - "location": { - "end_col": 7, - "end_line": 175, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/squash_dict.cairo" - }, - "start_col": 5, - "start_line": 171 - }, - "n_prefix_newlines": 1 - } - ], - "inst": { - "end_col": 77, - "end_line": 177, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/squash_dict.cairo" - }, - "start_col": 5, - "start_line": 177 - } - }, - "2400": { - "accessible_scopes": [ - "starkware.cairo.common.squash_dict", - "starkware.cairo.common.squash_dict.squash_dict_inner" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 69, - "end_line": 178, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/squash_dict.cairo" - }, - "start_col": 5, - "start_line": 178 - } - }, - "2402": { - "accessible_scopes": [ - "starkware.cairo.common.squash_dict", - "starkware.cairo.common.squash_dict.squash_dict_inner" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 74, - "end_line": 179, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/squash_dict.cairo" - }, - "start_col": 5, - "start_line": 179 - } - }, - "2404": { - "accessible_scopes": [ - "starkware.cairo.common.squash_dict", - "starkware.cairo.common.squash_dict.squash_dict_inner" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 86, - "end_line": 180, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/squash_dict.cairo" - }, - "start_col": 5, - "start_line": 180 - } - }, - "2405": { - "accessible_scopes": [ - "starkware.cairo.common.squash_dict", - "starkware.cairo.common.squash_dict.squash_dict_inner" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 47, - "end_line": 184, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/squash_dict.cairo" - }, - "start_col": 5, - "start_line": 184 - } - }, - "2406": { - "accessible_scopes": [ - "starkware.cairo.common.squash_dict", - "starkware.cairo.common.squash_dict.squash_dict_inner" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 47, - "end_line": 185, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/squash_dict.cairo" - }, - "start_col": 5, - "start_line": 185 - } - }, - "2407": { - "accessible_scopes": [ - "starkware.cairo.common.squash_dict", - "starkware.cairo.common.squash_dict.squash_dict_inner" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 21, - "end_line": 188, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/squash_dict.cairo" - }, - "start_col": 5, - "start_line": 188 - } - }, - "2408": { - "accessible_scopes": [ - "starkware.cairo.common.squash_dict", - "starkware.cairo.common.squash_dict.squash_dict_inner" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 77, - "end_line": 191, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/squash_dict.cairo" - }, - "start_col": 5, - "start_line": 191 - } - }, - "2410": { - "accessible_scopes": [ - "starkware.cairo.common.squash_dict", - "starkware.cairo.common.squash_dict.squash_dict_inner" - ], - "flow_tracking_data": null, - "hints": [ - { - "location": { - "end_col": 78, - "end_line": 194, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/squash_dict.cairo" - }, - "start_col": 5, - "start_line": 194 - }, - "n_prefix_newlines": 0 - } - ], - "inst": { - "end_col": 54, - "end_line": 195, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/squash_dict.cairo" - }, - "start_col": 5, - "start_line": 195 - } - }, - "2412": { - "accessible_scopes": [ - "starkware.cairo.common.squash_dict", - "starkware.cairo.common.squash_dict.squash_dict_inner" - ], - "flow_tracking_data": null, - "hints": [ - { - "location": { - "end_col": 50, - "end_line": 201, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/squash_dict.cairo" - }, - "start_col": 5, - "start_line": 201 - }, - "n_prefix_newlines": 0 - } - ], - "inst": { - "end_col": 78, - "end_line": 202, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/squash_dict.cairo" - }, - "start_col": 5, - "start_line": 202 - } - }, - "2413": { - "accessible_scopes": [ - "starkware.cairo.common.squash_dict", - "starkware.cairo.common.squash_dict.squash_dict_inner" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 52, - "end_line": 203, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/squash_dict.cairo" - }, - "start_col": 5, - "start_line": 203 - } - }, - "2414": { - "accessible_scopes": [ - "starkware.cairo.common.squash_dict", - "starkware.cairo.common.squash_dict.squash_dict_inner" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 81, - "end_line": 205, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/squash_dict.cairo" - }, - "start_col": 31, - "start_line": 205 - } - }, - "2415": { - "accessible_scopes": [ - "starkware.cairo.common.squash_dict", - "starkware.cairo.common.squash_dict.squash_dict_inner" - ], - "flow_tracking_data": null, - "hints": [ - { - "location": { - "end_col": 65, - "end_line": 206, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/squash_dict.cairo" - }, - "start_col": 5, - "start_line": 206 - }, - "n_prefix_newlines": 0 - } - ], - "inst": { - "end_col": 49, - "end_line": 209, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/squash_dict.cairo" - }, - "start_col": 5, - "start_line": 209 - } - }, - "2416": { - "accessible_scopes": [ - "starkware.cairo.common.squash_dict", - "starkware.cairo.common.squash_dict.squash_dict_inner" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 70, - "end_line": 212, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/squash_dict.cairo" - }, - "start_col": 34, - "start_line": 212 - } - }, - "2417": { - "accessible_scopes": [ - "starkware.cairo.common.squash_dict", - "starkware.cairo.common.squash_dict.squash_dict_inner" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 7, - "end_line": 215, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/squash_dict.cairo" - }, - "start_col": 5, - "start_line": 215 - } - }, - "2419": { - "accessible_scopes": [ - "starkware.cairo.common.squash_dict", - "starkware.cairo.common.squash_dict.squash_dict_inner" - ], - "flow_tracking_data": null, - "hints": [ - { - "location": { - "end_col": 36, - "end_line": 216, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/squash_dict.cairo" - }, - "start_col": 9, - "start_line": 216 - }, - "n_prefix_newlines": 0 - } - ], - "inst": { - "end_col": 63, - "end_line": 211, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/squash_dict.cairo" - }, - "parent_location": [ - { - "end_col": 48, - "end_line": 217, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/squash_dict.cairo" - }, - "start_col": 33, - "start_line": 217 - }, - "While expanding the reference 'range_check_ptr' in:" - ], - "start_col": 27, - "start_line": 211 - } - }, - "2421": { - "accessible_scopes": [ - "starkware.cairo.common.squash_dict", - "starkware.cairo.common.squash_dict.squash_dict_inner" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 95, - "end_line": 217, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/squash_dict.cairo" - }, - "start_col": 64, - "start_line": 217 - } - }, - "2423": { - "accessible_scopes": [ - "starkware.cairo.common.squash_dict", - "starkware.cairo.common.squash_dict.squash_dict_inner" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 97, - "end_line": 217, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/squash_dict.cairo" - }, - "start_col": 9, - "start_line": 217 - } - }, - "2424": { - "accessible_scopes": [ - "starkware.cairo.common.squash_dict", - "starkware.cairo.common.squash_dict.squash_dict_inner" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 12, - "end_line": 222, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/squash_dict.cairo" - }, - "start_col": 5, - "start_line": 222 - } - }, - "2426": { - "accessible_scopes": [ - "starkware.cairo.common.squash_dict", - "starkware.cairo.common.squash_dict.squash_dict_inner" - ], - "flow_tracking_data": null, - "hints": [ - { - "location": { - "end_col": 7, - "end_line": 227, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/squash_dict.cairo" - }, - "start_col": 5, - "start_line": 224 - }, - "n_prefix_newlines": 1 - } - ], - "inst": { - "end_col": 7, - "end_line": 229, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/squash_dict.cairo" - }, - "start_col": 5, - "start_line": 229 - } - }, - "2428": { - "accessible_scopes": [ - "starkware.cairo.common.squash_dict", - "starkware.cairo.common.squash_dict.squash_dict_inner" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 55, - "end_line": 236, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/squash_dict.cairo" - }, - "start_col": 48, - "start_line": 236 - } - }, - "2430": { - "accessible_scopes": [ - "starkware.cairo.common.squash_dict", - "starkware.cairo.common.squash_dict.squash_dict_inner" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 56, - "end_line": 236, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/squash_dict.cairo" - }, - "start_col": 36, - "start_line": 236 - } - }, - "2431": { - "accessible_scopes": [ - "starkware.cairo.common.squash_dict", - "starkware.cairo.common.squash_dict.squash_dict_inner" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 57, - "end_line": 236, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/squash_dict.cairo" - }, - "start_col": 9, - "start_line": 236 - } - }, - "2432": { - "accessible_scopes": [ - "starkware.cairo.common.squash_dict", - "starkware.cairo.common.squash_dict.squash_dict_inner" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 54, - "end_line": 237, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/squash_dict.cairo" - }, - "start_col": 35, - "start_line": 237 - } - }, - "2434": { - "accessible_scopes": [ - "starkware.cairo.common.squash_dict", - "starkware.cairo.common.squash_dict.squash_dict_inner" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 31, - "end_line": 103, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/squash_dict.cairo" - }, - "parent_location": [ - { - "end_col": 46, - "end_line": 238, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/squash_dict.cairo" - }, - "start_col": 33, - "start_line": 238 - }, - "While expanding the reference 'dict_accesses' in:" - ], - "start_col": 5, - "start_line": 103 - } - }, - "2435": { - "accessible_scopes": [ - "starkware.cairo.common.squash_dict", - "starkware.cairo.common.squash_dict.squash_dict_inner" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 36, - "end_line": 104, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/squash_dict.cairo" - }, - "parent_location": [ - { - "end_col": 68, - "end_line": 239, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/squash_dict.cairo" - }, - "start_col": 44, - "start_line": 239 - }, - "While expanding the reference 'dict_accesses_end_minus1' in:" - ], - "start_col": 5, - "start_line": 104 - } - }, - "2436": { - "accessible_scopes": [ - "starkware.cairo.common.squash_dict", - "starkware.cairo.common.squash_dict.squash_dict_inner" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 24, - "end_line": 221, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/squash_dict.cairo" - }, - "parent_location": [ - { - "end_col": 36, - "end_line": 240, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/squash_dict.cairo" - }, - "start_col": 28, - "start_line": 240 - }, - "While expanding the reference 'next_key' in:" - ], - "start_col": 20, - "start_line": 221 - } - }, - "2437": { - "accessible_scopes": [ - "starkware.cairo.common.squash_dict", - "starkware.cairo.common.squash_dict.squash_dict_inner" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 31, - "end_line": 212, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/squash_dict.cairo" - }, - "parent_location": [ - { - "end_col": 56, - "end_line": 241, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/squash_dict.cairo" - }, - "start_col": 38, - "start_line": 241 - }, - "While expanding the reference 'remaining_accesses' in:" - ], - "start_col": 13, - "start_line": 212 - } - }, - "2438": { - "accessible_scopes": [ - "starkware.cairo.common.squash_dict", - "starkware.cairo.common.squash_dict.squash_dict_inner" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 7, - "end_line": 229, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/squash_dict.cairo" - }, - "start_col": 5, - "start_line": 229 - } - }, - "2440": { - "accessible_scopes": [ - "starkware.cairo.common.squash_dict", - "starkware.cairo.common.squash_dict.squash_dict_inner" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 63, - "end_line": 211, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/squash_dict.cairo" - }, - "parent_location": [ - { - "end_col": 55, - "end_line": 230, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/squash_dict.cairo" - }, - "start_col": 40, - "start_line": 230 - }, - "While expanding the reference 'range_check_ptr' in:" - ], - "start_col": 27, - "start_line": 211 - } - }, - "2442": { - "accessible_scopes": [ - "starkware.cairo.common.squash_dict", - "starkware.cairo.common.squash_dict.squash_dict_inner" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 8, - "end_line": 105, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/squash_dict.cairo" - }, - "parent_location": [ - { - "end_col": 62, - "end_line": 230, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/squash_dict.cairo" - }, - "start_col": 59, - "start_line": 230 - }, - "While expanding the reference 'key' in:" - ], - "start_col": 5, - "start_line": 105 - } - }, - "2443": { - "accessible_scopes": [ - "starkware.cairo.common.squash_dict", - "starkware.cairo.common.squash_dict.squash_dict_inner" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 24, - "end_line": 221, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/squash_dict.cairo" - }, - "parent_location": [ - { - "end_col": 74, - "end_line": 230, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/squash_dict.cairo" - }, - "start_col": 66, - "start_line": 230 - }, - "While expanding the reference 'next_key' in:" - ], - "start_col": 20, - "start_line": 221 - } - }, - "2444": { - "accessible_scopes": [ - "starkware.cairo.common.squash_dict", - "starkware.cairo.common.squash_dict.squash_dict_inner" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 75, - "end_line": 230, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/squash_dict.cairo" - }, - "start_col": 9, - "start_line": 230 - } - }, - "2446": { - "accessible_scopes": [ - "starkware.cairo.common.squash_dict", - "starkware.cairo.common.squash_dict.squash_dict_inner" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 31, - "end_line": 103, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/squash_dict.cairo" - }, - "parent_location": [ - { - "end_col": 46, - "end_line": 231, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/squash_dict.cairo" - }, - "start_col": 33, - "start_line": 231 - }, - "While expanding the reference 'dict_accesses' in:" - ], - "start_col": 5, - "start_line": 103 - } - }, - "2447": { - "accessible_scopes": [ - "starkware.cairo.common.squash_dict", - "starkware.cairo.common.squash_dict.squash_dict_inner" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 36, - "end_line": 104, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/squash_dict.cairo" - }, - "parent_location": [ - { - "end_col": 68, - "end_line": 232, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/squash_dict.cairo" - }, - "start_col": 44, - "start_line": 232 - }, - "While expanding the reference 'dict_accesses_end_minus1' in:" - ], - "start_col": 5, - "start_line": 104 - } - }, - "2448": { - "accessible_scopes": [ - "starkware.cairo.common.squash_dict", - "starkware.cairo.common.squash_dict.squash_dict_inner" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 24, - "end_line": 221, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/squash_dict.cairo" - }, - "parent_location": [ - { - "end_col": 36, - "end_line": 233, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/squash_dict.cairo" - }, - "start_col": 28, - "start_line": 233 - }, - "While expanding the reference 'next_key' in:" - ], - "start_col": 20, - "start_line": 221 - } - }, - "2449": { - "accessible_scopes": [ - "starkware.cairo.common.squash_dict", - "starkware.cairo.common.squash_dict.squash_dict_inner" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 31, - "end_line": 212, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/squash_dict.cairo" - }, - "parent_location": [ - { - "end_col": 56, - "end_line": 234, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/squash_dict.cairo" - }, - "start_col": 38, - "start_line": 234 - }, - "While expanding the reference 'remaining_accesses' in:" - ], - "start_col": 13, - "start_line": 212 - } - }, - "2450": { - "accessible_scopes": [ - "starkware.cairo.common.squash_dict", - "starkware.cairo.common.squash_dict.squash_dict_inner" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 54, - "end_line": 250, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/squash_dict.cairo" - }, - "start_col": 23, - "start_line": 250 - } - }, - "2452": { - "accessible_scopes": [ - "starkware.cairo.common.squash_dict", - "starkware.cairo.common.squash_dict.squash_dict_inner" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 13, - "end_line": 108, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/squash_dict.cairo" - }, - "parent_location": [ - { - "end_col": 26, - "end_line": 251, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/squash_dict.cairo" - }, - "start_col": 18, - "start_line": 251 - }, - "While expanding the reference 'big_keys' in:" - ], - "start_col": 5, - "start_line": 108 - } - }, - "2453": { - "accessible_scopes": [ - "starkware.cairo.common.squash_dict", - "starkware.cairo.common.squash_dict.squash_dict_inner" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 6, - "end_line": 252, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/squash_dict.cairo" - }, - "start_col": 12, - "start_line": 244 - } - }, - "2455": { - "accessible_scopes": [ - "starkware.cairo.common.squash_dict", - "starkware.cairo.common.squash_dict.squash_dict_inner" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 7, - "end_line": 252, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/squash_dict.cairo" - }, - "start_col": 5, - "start_line": 244 - } - }, - "2456": { - "accessible_scopes": [ - "starkware.cairo.common.dict", - "starkware.cairo.common.dict.dict_new" - ], - "flow_tracking_data": null, - "hints": [ - { - "location": { - "end_col": 7, - "end_line": 16, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/dict.cairo" - }, - "start_col": 5, - "start_line": 9 - }, - "n_prefix_newlines": 1 - } - ], - "inst": { - "end_col": 12, - "end_line": 17, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/dict.cairo" - }, - "start_col": 5, - "start_line": 17 - } - }, - "2458": { - "accessible_scopes": [ - "starkware.cairo.common.dict", - "starkware.cairo.common.dict.dict_new" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 46, - "end_line": 18, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/dict.cairo" - }, - "start_col": 5, - "start_line": 18 - } - }, - "2459": { - "accessible_scopes": [ - "starkware.cairo.common.dict", - "starkware.cairo.common.dict.dict_read" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 18, - "end_line": 23, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/dict.cairo" - }, - "start_col": 5, - "start_line": 23 - } - }, - "2461": { - "accessible_scopes": [ - "starkware.cairo.common.dict", - "starkware.cairo.common.dict.dict_read" - ], - "flow_tracking_data": null, - "hints": [ - { - "location": { - "end_col": 7, - "end_line": 29, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/dict.cairo" - }, - "start_col": 5, - "start_line": 25 - }, - "n_prefix_newlines": 1 - } - ], - "inst": { - "end_col": 23, - "end_line": 30, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/dict.cairo" - }, - "start_col": 5, - "start_line": 30 - } - }, - "2462": { - "accessible_scopes": [ - "starkware.cairo.common.dict", - "starkware.cairo.common.dict.dict_read" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 32, - "end_line": 31, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/dict.cairo" - }, - "start_col": 5, - "start_line": 31 - } - }, - "2463": { - "accessible_scopes": [ - "starkware.cairo.common.dict", - "starkware.cairo.common.dict.dict_read" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 31, - "end_line": 32, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/dict.cairo" - }, - "start_col": 5, - "start_line": 32 - } - }, - "2464": { - "accessible_scopes": [ - "starkware.cairo.common.dict", - "starkware.cairo.common.dict.dict_read" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 46, - "end_line": 33, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/dict.cairo" - }, - "parent_location": [ - { - "end_col": 37, - "end_line": 22, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/dict.cairo" - }, - "parent_location": [ - { - "end_col": 26, - "end_line": 34, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/dict.cairo" - }, - "start_col": 5, - "start_line": 34 - }, - "While trying to retrieve the implicit argument 'dict_ptr' in:" - ], - "start_col": 16, - "start_line": 22 - }, - "While expanding the reference 'dict_ptr' in:" - ], - "start_col": 20, - "start_line": 33 - } - }, - "2466": { - "accessible_scopes": [ - "starkware.cairo.common.dict", - "starkware.cairo.common.dict.dict_read" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 16, - "end_line": 24, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/dict.cairo" - }, - "parent_location": [ - { - "end_col": 24, - "end_line": 34, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/dict.cairo" - }, - "start_col": 19, - "start_line": 34 - }, - "While expanding the reference 'value' in:" - ], - "start_col": 11, - "start_line": 24 - } - }, - "2467": { - "accessible_scopes": [ - "starkware.cairo.common.dict", - "starkware.cairo.common.dict.dict_read" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 26, - "end_line": 34, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/dict.cairo" - }, - "start_col": 5, - "start_line": 34 - } - }, - "2468": { - "accessible_scopes": [ - "starkware.cairo.common.dict", - "starkware.cairo.common.dict.dict_write" - ], - "flow_tracking_data": null, - "hints": [ - { - "location": { - "end_col": 7, - "end_line": 44, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/dict.cairo" - }, - "start_col": 5, - "start_line": 39 - }, - "n_prefix_newlines": 1 - } - ], - "inst": { - "end_col": 23, - "end_line": 45, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/dict.cairo" - }, - "start_col": 5, - "start_line": 45 - } - }, - "2469": { - "accessible_scopes": [ - "starkware.cairo.common.dict", - "starkware.cairo.common.dict.dict_write" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 35, - "end_line": 46, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/dict.cairo" - }, - "start_col": 5, - "start_line": 46 - } - }, - "2470": { - "accessible_scopes": [ - "starkware.cairo.common.dict", - "starkware.cairo.common.dict.dict_write" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 46, - "end_line": 47, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/dict.cairo" - }, - "parent_location": [ - { - "end_col": 38, - "end_line": 38, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/dict.cairo" - }, - "parent_location": [ - { - "end_col": 15, - "end_line": 48, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/dict.cairo" - }, - "start_col": 5, - "start_line": 48 - }, - "While trying to retrieve the implicit argument 'dict_ptr' in:" - ], - "start_col": 17, - "start_line": 38 - }, - "While expanding the reference 'dict_ptr' in:" - ], - "start_col": 20, - "start_line": 47 - } - }, - "2472": { - "accessible_scopes": [ - "starkware.cairo.common.dict", - "starkware.cairo.common.dict.dict_write" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 15, - "end_line": 48, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/dict.cairo" - }, - "start_col": 5, - "start_line": 48 - } - }, - "2473": { - "accessible_scopes": [ - "starkware.cairo.common.dict", - "starkware.cairo.common.dict.dict_squash" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 18, - "end_line": 85, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/dict.cairo" - }, - "start_col": 5, - "start_line": 85 - } - }, - "2475": { - "accessible_scopes": [ - "starkware.cairo.common.dict", - "starkware.cairo.common.dict.dict_squash" - ], - "flow_tracking_data": null, - "hints": [ - { - "location": { - "end_col": 7, - "end_line": 96, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/dict.cairo" - }, - "start_col": 5, - "start_line": 87 - }, - "n_prefix_newlines": 1 - } - ], - "inst": { - "end_col": 49, - "end_line": 97, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/dict.cairo" - }, - "start_col": 39, - "start_line": 97 - } - }, - "2477": { - "accessible_scopes": [ - "starkware.cairo.common.dict", - "starkware.cairo.common.dict.dict_squash" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 35, - "end_line": 97, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/dict.cairo" - }, - "start_col": 10, - "start_line": 97 - } - }, - "2478": { - "accessible_scopes": [ - "starkware.cairo.common.dict", - "starkware.cairo.common.dict.dict_squash" - ], - "flow_tracking_data": null, - "hints": [ - { - "location": { - "end_col": 26, - "end_line": 98, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/dict.cairo" - }, - "start_col": 5, - "start_line": 98 - }, - "n_prefix_newlines": 0 - } - ], - "inst": { - "end_col": 33, - "end_line": 82, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/dict.cairo" - }, - "parent_location": [ - { - "end_col": 33, - "end_line": 24, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/squash_dict.cairo" - }, - "parent_location": [ - { - "end_col": 6, - "end_line": 104, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/dict.cairo" - }, - "start_col": 31, - "start_line": 100 - }, - "While trying to retrieve the implicit argument 'range_check_ptr' in:" - ], - "start_col": 18, - "start_line": 24 - }, - "While expanding the reference 'range_check_ptr' in:" - ], - "start_col": 18, - "start_line": 82 - } - }, - "2479": { - "accessible_scopes": [ - "starkware.cairo.common.dict", - "starkware.cairo.common.dict.dict_squash" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 37, - "end_line": 83, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/dict.cairo" - }, - "parent_location": [ - { - "end_col": 42, - "end_line": 101, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/dict.cairo" - }, - "start_col": 23, - "start_line": 101 - }, - "While expanding the reference 'dict_accesses_start' in:" - ], - "start_col": 5, - "start_line": 83 - } - }, - "2480": { - "accessible_scopes": [ - "starkware.cairo.common.dict", - "starkware.cairo.common.dict.dict_squash" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 69, - "end_line": 83, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/dict.cairo" - }, - "parent_location": [ - { - "end_col": 44, - "end_line": 102, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/dict.cairo" - }, - "start_col": 27, - "start_line": 102 - }, - "While expanding the reference 'dict_accesses_end' in:" - ], - "start_col": 39, - "start_line": 83 - } - }, - "2481": { - "accessible_scopes": [ - "starkware.cairo.common.dict", - "starkware.cairo.common.dict.dict_squash" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 35, - "end_line": 97, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/dict.cairo" - }, - "parent_location": [ - { - "end_col": 42, - "end_line": 103, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/dict.cairo" - }, - "start_col": 23, - "start_line": 103 - }, - "While expanding the reference 'squashed_dict_start' in:" - ], - "start_col": 16, - "start_line": 97 - } - }, - "2482": { - "accessible_scopes": [ - "starkware.cairo.common.dict", - "starkware.cairo.common.dict.dict_squash" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 6, - "end_line": 104, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/dict.cairo" - }, - "start_col": 31, - "start_line": 100 - } - }, - "2484": { - "accessible_scopes": [ - "starkware.cairo.common.dict", - "starkware.cairo.common.dict.dict_squash" - ], - "flow_tracking_data": null, - "hints": [ - { - "location": { - "end_col": 7, - "end_line": 110, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/dict.cairo" - }, - "start_col": 5, - "start_line": 106 - }, - "n_prefix_newlines": 1 - } - ], - "inst": { - "end_col": 33, - "end_line": 24, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/squash_dict.cairo" - }, - "parent_location": [ - { - "end_col": 6, - "end_line": 104, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/dict.cairo" - }, - "parent_location": [ - { - "end_col": 33, - "end_line": 82, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/dict.cairo" - }, - "parent_location": [ - { - "end_col": 91, - "end_line": 111, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/dict.cairo" - }, - "start_col": 5, - "start_line": 111 - }, - "While trying to retrieve the implicit argument 'range_check_ptr' in:" - ], - "start_col": 18, - "start_line": 82 - }, - "While expanding the reference 'range_check_ptr' in:" - ], - "start_col": 31, - "start_line": 100 - }, - "While trying to update the implicit return value 'range_check_ptr' in:" - ], - "start_col": 18, - "start_line": 24 - } - }, - "2485": { - "accessible_scopes": [ - "starkware.cairo.common.dict", - "starkware.cairo.common.dict.dict_squash" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 35, - "end_line": 97, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/dict.cairo" - }, - "parent_location": [ - { - "end_col": 52, - "end_line": 111, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/dict.cairo" - }, - "start_col": 33, - "start_line": 111 - }, - "While expanding the reference 'squashed_dict_start' in:" - ], - "start_col": 16, - "start_line": 97 - } - }, - "2486": { - "accessible_scopes": [ - "starkware.cairo.common.dict", - "starkware.cairo.common.dict.dict_squash" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 27, - "end_line": 100, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/dict.cairo" - }, - "parent_location": [ - { - "end_col": 89, - "end_line": 111, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/dict.cairo" - }, - "start_col": 72, - "start_line": 111 - }, - "While expanding the reference 'squashed_dict_end' in:" - ], - "start_col": 10, - "start_line": 100 - } - }, - "2487": { - "accessible_scopes": [ - "starkware.cairo.common.dict", - "starkware.cairo.common.dict.dict_squash" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 91, - "end_line": 111, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/dict.cairo" - }, - "start_col": 5, - "start_line": 111 - } - }, - "2488": { - "accessible_scopes": [ - "starkware.cairo.common.default_dict", - "starkware.cairo.common.default_dict.default_dict_new" - ], - "flow_tracking_data": null, - "hints": [ - { - "location": { - "end_col": 7, - "end_line": 15, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/default_dict.cairo" - }, - "start_col": 5, - "start_line": 9 - }, - "n_prefix_newlines": 1 - } - ], - "inst": { - "end_col": 12, - "end_line": 16, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/default_dict.cairo" - }, - "start_col": 5, - "start_line": 16 - } - }, - "2490": { - "accessible_scopes": [ - "starkware.cairo.common.default_dict", - "starkware.cairo.common.default_dict.default_dict_new" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 46, - "end_line": 17, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/default_dict.cairo" - }, - "start_col": 5, - "start_line": 17 - } - }, - "2491": { - "accessible_scopes": [ - "starkware.cairo.common.default_dict", - "starkware.cairo.common.default_dict.default_dict_finalize" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 18, - "end_line": 26, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/default_dict.cairo" - }, - "start_col": 5, - "start_line": 26 - } - }, - "2493": { - "accessible_scopes": [ - "starkware.cairo.common.default_dict", - "starkware.cairo.common.default_dict.default_dict_finalize" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 43, - "end_line": 23, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/default_dict.cairo" - }, - "parent_location": [ - { - "end_col": 33, - "end_line": 82, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/dict.cairo" - }, - "parent_location": [ - { - "end_col": 6, - "end_line": 29, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/default_dict.cairo" - }, - "start_col": 64, - "start_line": 27 - }, - "While trying to retrieve the implicit argument 'range_check_ptr' in:" - ], - "start_col": 18, - "start_line": 82 - }, - "While expanding the reference 'range_check_ptr' in:" - ], - "start_col": 28, - "start_line": 23 - } - }, - "2494": { - "accessible_scopes": [ - "starkware.cairo.common.default_dict", - "starkware.cairo.common.default_dict.default_dict_finalize" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 37, - "end_line": 24, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/default_dict.cairo" - }, - "parent_location": [ - { - "end_col": 28, - "end_line": 28, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/default_dict.cairo" - }, - "start_col": 9, - "start_line": 28 - }, - "While expanding the reference 'dict_accesses_start' in:" - ], - "start_col": 5, - "start_line": 24 - } - }, - "2495": { - "accessible_scopes": [ - "starkware.cairo.common.default_dict", - "starkware.cairo.common.default_dict.default_dict_finalize" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 69, - "end_line": 24, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/default_dict.cairo" - }, - "parent_location": [ - { - "end_col": 47, - "end_line": 28, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/default_dict.cairo" - }, - "start_col": 30, - "start_line": 28 - }, - "While expanding the reference 'dict_accesses_end' in:" - ], - "start_col": 39, - "start_line": 24 - } - }, - "2496": { - "accessible_scopes": [ - "starkware.cairo.common.default_dict", - "starkware.cairo.common.default_dict.default_dict_finalize" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 6, - "end_line": 29, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/default_dict.cairo" - }, - "start_col": 64, - "start_line": 27 - } - }, - "2498": { - "accessible_scopes": [ - "starkware.cairo.common.default_dict", - "starkware.cairo.common.default_dict.default_dict_finalize" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 35, - "end_line": 27, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/default_dict.cairo" - }, - "start_col": 10, - "start_line": 27 - } - }, - "2499": { - "accessible_scopes": [ - "starkware.cairo.common.default_dict", - "starkware.cairo.common.default_dict.default_dict_finalize" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 60, - "end_line": 27, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/default_dict.cairo" - }, - "start_col": 37, - "start_line": 27 - } - }, - "2500": { - "accessible_scopes": [ - "starkware.cairo.common.default_dict", - "starkware.cairo.common.default_dict.default_dict_finalize" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 45, - "end_line": 30, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/default_dict.cairo" - }, - "start_col": 5, - "start_line": 30 - } - }, - "2501": { - "accessible_scopes": [ - "starkware.cairo.common.default_dict", - "starkware.cairo.common.default_dict.default_dict_finalize" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 60, - "end_line": 34, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/default_dict.cairo" - }, - "start_col": 21, - "start_line": 34 - } - }, - "2502": { - "accessible_scopes": [ - "starkware.cairo.common.default_dict", - "starkware.cairo.common.default_dict.default_dict_finalize" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 35, - "end_line": 27, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/default_dict.cairo" - }, - "parent_location": [ - { - "end_col": 48, - "end_line": 33, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/default_dict.cairo" - }, - "start_col": 29, - "start_line": 33 - }, - "While expanding the reference 'squashed_dict_start' in:" - ], - "start_col": 16, - "start_line": 27 - } - }, - "2503": { - "accessible_scopes": [ - "starkware.cairo.common.default_dict", - "starkware.cairo.common.default_dict.default_dict_finalize" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 79, - "end_line": 34, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/default_dict.cairo" - }, - "start_col": 20, - "start_line": 34 - } - }, - "2505": { - "accessible_scopes": [ - "starkware.cairo.common.default_dict", - "starkware.cairo.common.default_dict.default_dict_finalize" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 90, - "end_line": 24, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/default_dict.cairo" - }, - "parent_location": [ - { - "end_col": 36, - "end_line": 35, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/default_dict.cairo" - }, - "start_col": 23, - "start_line": 35 - }, - "While expanding the reference 'default_value' in:" - ], - "start_col": 71, - "start_line": 24 - } - }, - "2506": { - "accessible_scopes": [ - "starkware.cairo.common.default_dict", - "starkware.cairo.common.default_dict.default_dict_finalize" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 6, - "end_line": 36, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/default_dict.cairo" - }, - "start_col": 5, - "start_line": 32 - } - }, - "2508": { - "accessible_scopes": [ - "starkware.cairo.common.default_dict", - "starkware.cairo.common.default_dict.default_dict_finalize" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 26, - "end_line": 30, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/default_dict.cairo" - }, - "parent_location": [ - { - "end_col": 43, - "end_line": 23, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/default_dict.cairo" - }, - "parent_location": [ - { - "end_col": 91, - "end_line": 37, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/default_dict.cairo" - }, - "start_col": 5, - "start_line": 37 - }, - "While trying to retrieve the implicit argument 'range_check_ptr' in:" - ], - "start_col": 28, - "start_line": 23 - }, - "While expanding the reference 'range_check_ptr' in:" - ], - "start_col": 11, - "start_line": 30 - } - }, - "2509": { - "accessible_scopes": [ - "starkware.cairo.common.default_dict", - "starkware.cairo.common.default_dict.default_dict_finalize" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 35, - "end_line": 27, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/default_dict.cairo" - }, - "parent_location": [ - { - "end_col": 52, - "end_line": 37, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/default_dict.cairo" - }, - "start_col": 33, - "start_line": 37 - }, - "While expanding the reference 'squashed_dict_start' in:" - ], - "start_col": 16, - "start_line": 27 - } - }, - "2510": { - "accessible_scopes": [ - "starkware.cairo.common.default_dict", - "starkware.cairo.common.default_dict.default_dict_finalize" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 60, - "end_line": 27, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/default_dict.cairo" - }, - "parent_location": [ - { - "end_col": 89, - "end_line": 37, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/default_dict.cairo" - }, - "start_col": 72, - "start_line": 37 - }, - "While expanding the reference 'squashed_dict_end' in:" - ], - "start_col": 43, - "start_line": 27 - } - }, - "2511": { - "accessible_scopes": [ - "starkware.cairo.common.default_dict", - "starkware.cairo.common.default_dict.default_dict_finalize" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 91, - "end_line": 37, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/default_dict.cairo" - }, - "start_col": 5, - "start_line": 37 - } - }, - "2512": { - "accessible_scopes": [ - "starkware.cairo.common.default_dict", - "starkware.cairo.common.default_dict.default_dict_finalize_inner" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 7, - "end_line": 43, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/default_dict.cairo" - }, - "start_col": 5, - "start_line": 43 - } - }, - "2514": { - "accessible_scopes": [ - "starkware.cairo.common.default_dict", - "starkware.cairo.common.default_dict.default_dict_finalize_inner" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 19, - "end_line": 44, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/default_dict.cairo" - }, - "start_col": 9, - "start_line": 44 - } - }, - "2515": { - "accessible_scopes": [ - "starkware.cairo.common.default_dict", - "starkware.cairo.common.default_dict.default_dict_finalize_inner" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 59, - "end_line": 47, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/default_dict.cairo" - }, - "start_col": 5, - "start_line": 47 - } - }, - "2516": { - "accessible_scopes": [ - "starkware.cairo.common.default_dict", - "starkware.cairo.common.default_dict.default_dict_finalize_inner" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 46, - "end_line": 49, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/default_dict.cairo" - }, - "start_col": 9, - "start_line": 49 - } - }, - "2518": { - "accessible_scopes": [ - "starkware.cairo.common.default_dict", - "starkware.cairo.common.default_dict.default_dict_finalize_inner" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 34, - "end_line": 50, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/default_dict.cairo" - }, - "start_col": 20, - "start_line": 50 - } - }, - "2520": { - "accessible_scopes": [ - "starkware.cairo.common.default_dict", - "starkware.cairo.common.default_dict.default_dict_finalize_inner" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 76, - "end_line": 41, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/default_dict.cairo" - }, - "parent_location": [ - { - "end_col": 36, - "end_line": 51, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/default_dict.cairo" - }, - "start_col": 23, - "start_line": 51 - }, - "While expanding the reference 'default_value' in:" - ], - "start_col": 57, - "start_line": 41 - } - }, - "2521": { - "accessible_scopes": [ - "starkware.cairo.common.default_dict", - "starkware.cairo.common.default_dict.default_dict_finalize_inner" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 6, - "end_line": 52, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/default_dict.cairo" - }, - "start_col": 12, - "start_line": 48 - } - }, - "2523": { - "accessible_scopes": [ - "starkware.cairo.common.default_dict", - "starkware.cairo.common.default_dict.default_dict_finalize_inner" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 7, - "end_line": 52, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/default_dict.cairo" - }, - "start_col": 5, - "start_line": 48 - } - }, - "2524": { - "accessible_scopes": [ - "interfaces", - "interfaces.ICellRenderer", - "interfaces.ICellRenderer.token_uri" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 14, - "end_line": 2, - "input_file": { - "filename": "autogen/starknet/contract_interface/ICellRenderer/token_uri/64f7842b108e76706927b78270ac73c789c558c54431b3359e4441e63ec2a868.cairo" - }, - "parent_location": [ - { - "end_col": 19, - "end_line": 6, - "input_file": { - "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/interfaces.cairo" - }, - "start_col": 10, - "start_line": 6 - }, - "While handling contract interface function:" - ], - "start_col": 1, - "start_line": 2 - } - }, - "2526": { - "accessible_scopes": [ - "interfaces", - "interfaces.ICellRenderer", - "interfaces.ICellRenderer.token_uri" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 48, - "end_line": 3, - "input_file": { - "filename": "autogen/starknet/contract_interface/ICellRenderer/token_uri/64f7842b108e76706927b78270ac73c789c558c54431b3359e4441e63ec2a868.cairo" - }, - "parent_location": [ - { - "end_col": 19, - "end_line": 6, - "input_file": { - "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/interfaces.cairo" - }, - "start_col": 10, - "start_line": 6 - }, - "While handling contract interface function:" - ], - "start_col": 41, - "start_line": 3 - } - }, - "2528": { - "accessible_scopes": [ - "interfaces", - "interfaces.ICellRenderer", - "interfaces.ICellRenderer.token_uri" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 37, - "end_line": 3, - "input_file": { - "filename": "autogen/starknet/contract_interface/ICellRenderer/token_uri/64f7842b108e76706927b78270ac73c789c558c54431b3359e4441e63ec2a868.cairo" - }, - "parent_location": [ - { - "end_col": 19, - "end_line": 6, - "input_file": { - "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/interfaces.cairo" - }, - "start_col": 10, - "start_line": 6 - }, - "While handling contract interface function:" - ], - "start_col": 6, - "start_line": 3 - } - }, - "2529": { - "accessible_scopes": [ - "interfaces", - "interfaces.ICellRenderer", - "interfaces.ICellRenderer.token_uri" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 36, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/arg_processor/b2cf08f23bd6d74eeb872bed49d06f4a7518757c8955198bd7ce9a52a9cf0046.cairo" - }, - "parent_location": [ - { - "end_col": 28, - "end_line": 6, - "input_file": { - "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/interfaces.cairo" - }, - "start_col": 20, - "start_line": 6 - }, - "While handling calldata argument 'token_id'" - ], - "start_col": 1, - "start_line": 1 - } - }, - "2530": { - "accessible_scopes": [ - "interfaces", - "interfaces.ICellRenderer", - "interfaces.ICellRenderer.token_uri" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 33, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/arg_processor/84a24514c1fc47c938055c9b8b555ae76e193c3fe4f1a6a3391748432a916688.cairo" - }, - "parent_location": [ - { - "end_col": 41, - "end_line": 6, - "input_file": { - "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/interfaces.cairo" - }, - "start_col": 36, - "start_line": 6 - }, - "While handling calldata argument 'value'" - ], - "start_col": 1, - "start_line": 1 - } - }, - "2531": { - "accessible_scopes": [ - "interfaces", - "interfaces.ICellRenderer", - "interfaces.ICellRenderer.token_uri" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 32, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/arg_processor/718aa2ac933a14995b4c0da5118692224afa83ebc1cf2b531694a3e835400de0.cairo" - }, - "parent_location": [ - { - "end_col": 53, - "end_line": 6, - "input_file": { - "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/interfaces.cairo" - }, - "start_col": 49, - "start_line": 6 - }, - "While handling calldata argument 'name'" - ], - "start_col": 1, - "start_line": 1 - } - }, - "2532": { - "accessible_scopes": [ - "interfaces", - "interfaces.ICellRenderer", - "interfaces.ICellRenderer.token_uri" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 40, - "end_line": 2, - "input_file": { - "filename": "autogen/starknet/arg_processor/718aa2ac933a14995b4c0da5118692224afa83ebc1cf2b531694a3e835400de0.cairo" - }, - "parent_location": [ - { - "end_col": 53, - "end_line": 6, - "input_file": { - "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/interfaces.cairo" - }, - "parent_location": [ - { - "end_col": 33, - "end_line": 5, - "input_file": { - "filename": "autogen/starknet/contract_interface/ICellRenderer/token_uri/e1e41e9022bda39c4617b9e4e338140cde71000402172e9b2b9c9fdc807617dc.cairo" - }, - "parent_location": [ - { - "end_col": 19, - "end_line": 6, - "input_file": { - "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/interfaces.cairo" - }, - "start_col": 10, - "start_line": 6 - }, - "While handling contract interface function:" - ], - "start_col": 19, - "start_line": 5 - }, - "While expanding the reference '__calldata_ptr' in:" - ], - "start_col": 49, - "start_line": 6 - }, - "While handling calldata argument 'name'" - ], - "start_col": 22, - "start_line": 2 - } - }, - "2534": { - "accessible_scopes": [ - "interfaces", - "interfaces.ICellRenderer", - "interfaces.ICellRenderer.token_uri" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 34, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/contract_interface/ICellRenderer/token_uri/41262dba046518ea626ceadddf9bdd89ee1cb488a62fdf8cc47232b6ce4027bb.cairo" - }, - "parent_location": [ - { - "end_col": 19, - "end_line": 6, - "input_file": { - "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/interfaces.cairo" - }, - "parent_location": [ - { - "end_col": 38, - "end_line": 42, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/starknet/common/syscalls.cairo" - }, - "parent_location": [ - { - "end_col": 33, - "end_line": 6, - "input_file": { - "filename": "autogen/starknet/contract_interface/ICellRenderer/token_uri/e1e41e9022bda39c4617b9e4e338140cde71000402172e9b2b9c9fdc807617dc.cairo" - }, - "parent_location": [ - { - "end_col": 19, - "end_line": 6, - "input_file": { - "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/interfaces.cairo" - }, - "start_col": 10, - "start_line": 6 - }, - "While handling contract interface function:" - ], - "start_col": 31, - "start_line": 2 - }, - "While trying to retrieve the implicit argument 'syscall_ptr' in:" - ], - "start_col": 20, - "start_line": 42 - }, - "While expanding the reference 'syscall_ptr' in:" - ], - "start_col": 10, - "start_line": 6 - }, - "While handling contract interface function:" - ], - "start_col": 16, - "start_line": 1 - } - }, - "2535": { - "accessible_scopes": [ - "interfaces", - "interfaces.ICellRenderer", - "interfaces.ICellRenderer.token_uri" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 27, - "end_line": 2, - "input_file": { - "filename": "autogen/starknet/contract_interface/ICellRenderer/token_uri/41262dba046518ea626ceadddf9bdd89ee1cb488a62fdf8cc47232b6ce4027bb.cairo" - }, - "parent_location": [ - { - "end_col": 19, - "end_line": 6, - "input_file": { - "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/interfaces.cairo" - }, - "parent_location": [ - { - "end_col": 38, - "end_line": 3, - "input_file": { - "filename": "autogen/starknet/contract_interface/ICellRenderer/token_uri/e1e41e9022bda39c4617b9e4e338140cde71000402172e9b2b9c9fdc807617dc.cairo" - }, - "parent_location": [ - { - "end_col": 19, - "end_line": 6, - "input_file": { - "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/interfaces.cairo" - }, - "start_col": 10, - "start_line": 6 - }, - "While handling contract interface function:" - ], - "start_col": 22, - "start_line": 3 - }, - "While expanding the reference 'contract_address' in:" - ], - "start_col": 10, - "start_line": 6 - }, - "While handling contract interface function:" - ], - "start_col": 5, - "start_line": 2 - } - }, - "2536": { - "accessible_scopes": [ - "interfaces", - "interfaces.ICellRenderer", - "interfaces.ICellRenderer.token_uri" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 41, - "end_line": 4, - "input_file": { - "filename": "autogen/starknet/contract_interface/ICellRenderer/token_uri/e1e41e9022bda39c4617b9e4e338140cde71000402172e9b2b9c9fdc807617dc.cairo" - }, - "parent_location": [ - { - "end_col": 19, - "end_line": 6, - "input_file": { - "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/interfaces.cairo" - }, - "start_col": 10, - "start_line": 6 - }, - "While handling contract interface function:" - ], - "start_col": 23, - "start_line": 4 - } - }, - "2538": { - "accessible_scopes": [ - "interfaces", - "interfaces.ICellRenderer", - "interfaces.ICellRenderer.token_uri" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 54, - "end_line": 5, - "input_file": { - "filename": "autogen/starknet/contract_interface/ICellRenderer/token_uri/e1e41e9022bda39c4617b9e4e338140cde71000402172e9b2b9c9fdc807617dc.cairo" - }, - "parent_location": [ - { - "end_col": 19, - "end_line": 6, - "input_file": { - "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/interfaces.cairo" - }, - "start_col": 10, - "start_line": 6 - }, - "While handling contract interface function:" - ], - "start_col": 19, - "start_line": 5 - } - }, - "2539": { - "accessible_scopes": [ - "interfaces", - "interfaces.ICellRenderer", - "interfaces.ICellRenderer.token_uri" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 30, - "end_line": 3, - "input_file": { - "filename": "autogen/starknet/contract_interface/ICellRenderer/token_uri/64f7842b108e76706927b78270ac73c789c558c54431b3359e4441e63ec2a868.cairo" - }, - "parent_location": [ - { - "end_col": 19, - "end_line": 6, - "input_file": { - "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/interfaces.cairo" - }, - "parent_location": [ - { - "end_col": 32, - "end_line": 6, - "input_file": { - "filename": "autogen/starknet/contract_interface/ICellRenderer/token_uri/e1e41e9022bda39c4617b9e4e338140cde71000402172e9b2b9c9fdc807617dc.cairo" - }, - "parent_location": [ - { - "end_col": 19, - "end_line": 6, - "input_file": { - "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/interfaces.cairo" - }, - "start_col": 10, - "start_line": 6 - }, - "While handling contract interface function:" - ], - "start_col": 14, - "start_line": 6 - }, - "While expanding the reference 'calldata_ptr_start' in:" - ], - "start_col": 10, - "start_line": 6 - }, - "While handling contract interface function:" - ], - "start_col": 12, - "start_line": 3 - } - }, - "2540": { - "accessible_scopes": [ - "interfaces", - "interfaces.ICellRenderer", - "interfaces.ICellRenderer.token_uri" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 33, - "end_line": 6, - "input_file": { - "filename": "autogen/starknet/contract_interface/ICellRenderer/token_uri/e1e41e9022bda39c4617b9e4e338140cde71000402172e9b2b9c9fdc807617dc.cairo" - }, - "parent_location": [ - { - "end_col": 19, - "end_line": 6, - "input_file": { - "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/interfaces.cairo" - }, - "start_col": 10, - "start_line": 6 - }, - "While handling contract interface function:" - ], - "start_col": 31, - "start_line": 2 - } - }, - "2542": { - "accessible_scopes": [ - "interfaces", - "interfaces.ICellRenderer", - "interfaces.ICellRenderer.token_uri" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 59, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/arg_processor/1c69c7efe008948007bb96a7ffcf593eef2281114be5664acdb2aab9fdcaff9f.cairo" - }, - "parent_location": [ - { - "end_col": 27, - "end_line": 7, - "input_file": { - "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/interfaces.cairo" - }, - "parent_location": [ - { - "end_col": 59, - "end_line": 2, - "input_file": { - "filename": "autogen/starknet/arg_processor/90d39885368c3e7097e50bfd1ab7069fc16a5b7a0aacb507eaa76c5ff838c93e.cairo" - }, - "parent_location": [ - { - "end_col": 44, - "end_line": 7, - "input_file": { - "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/interfaces.cairo" - }, - "start_col": 29, - "start_line": 7 - }, - "While handling return value 'data_uri'" - ], - "start_col": 28, - "start_line": 2 - }, - "While expanding the reference '__return_value_arg_data_uri_len' in:" - ], - "start_col": 9, - "start_line": 7 - }, - "While handling return value 'data_uri_len'" - ], - "start_col": 39, - "start_line": 1 - } - }, - "2543": { - "accessible_scopes": [ - "interfaces", - "interfaces.ICellRenderer", - "interfaces.ICellRenderer.token_uri" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 60, - "end_line": 2, - "input_file": { - "filename": "autogen/starknet/arg_processor/90d39885368c3e7097e50bfd1ab7069fc16a5b7a0aacb507eaa76c5ff838c93e.cairo" - }, - "parent_location": [ - { - "end_col": 44, - "end_line": 7, - "input_file": { - "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/interfaces.cairo" - }, - "start_col": 29, - "start_line": 7 - }, - "While handling return value 'data_uri'" - ], - "start_col": 1, - "start_line": 2 - } - }, - "2544": { - "accessible_scopes": [ - "interfaces", - "interfaces.ICellRenderer", - "interfaces.ICellRenderer.token_uri" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 48, - "end_line": 2, - "input_file": { - "filename": "autogen/starknet/arg_processor/1c69c7efe008948007bb96a7ffcf593eef2281114be5664acdb2aab9fdcaff9f.cairo" - }, - "parent_location": [ - { - "end_col": 27, - "end_line": 7, - "input_file": { - "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/interfaces.cairo" - }, - "parent_location": [ - { - "end_col": 48, - "end_line": 8, - "input_file": { - "filename": "autogen/starknet/arg_processor/90d39885368c3e7097e50bfd1ab7069fc16a5b7a0aacb507eaa76c5ff838c93e.cairo" - }, - "parent_location": [ - { - "end_col": 44, - "end_line": 7, - "input_file": { - "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/interfaces.cairo" - }, - "start_col": 29, - "start_line": 7 - }, - "While handling return value 'data_uri'" - ], - "start_col": 30, - "start_line": 8 - }, - "While expanding the reference '__return_value_ptr' in:" - ], - "start_col": 9, - "start_line": 7 - }, - "While handling return value 'data_uri_len'" - ], - "start_col": 26, - "start_line": 2 - } - }, - "2546": { - "accessible_scopes": [ - "interfaces", - "interfaces.ICellRenderer", - "interfaces.ICellRenderer.token_uri" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 59, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/arg_processor/1c69c7efe008948007bb96a7ffcf593eef2281114be5664acdb2aab9fdcaff9f.cairo" - }, - "parent_location": [ - { - "end_col": 27, - "end_line": 7, - "input_file": { - "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/interfaces.cairo" - }, - "parent_location": [ - { - "end_col": 82, - "end_line": 8, - "input_file": { - "filename": "autogen/starknet/arg_processor/90d39885368c3e7097e50bfd1ab7069fc16a5b7a0aacb507eaa76c5ff838c93e.cairo" - }, - "parent_location": [ - { - "end_col": 44, - "end_line": 7, - "input_file": { - "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/interfaces.cairo" - }, - "start_col": 29, - "start_line": 7 - }, - "While handling return value 'data_uri'" - ], - "start_col": 51, - "start_line": 8 - }, - "While expanding the reference '__return_value_arg_data_uri_len' in:" - ], - "start_col": 9, - "start_line": 7 - }, - "While handling return value 'data_uri_len'" - ], - "start_col": 39, - "start_line": 1 - } - }, - "2547": { - "accessible_scopes": [ - "interfaces", - "interfaces.ICellRenderer", - "interfaces.ICellRenderer.token_uri" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 86, - "end_line": 8, - "input_file": { - "filename": "autogen/starknet/arg_processor/90d39885368c3e7097e50bfd1ab7069fc16a5b7a0aacb507eaa76c5ff838c93e.cairo" - }, - "parent_location": [ - { - "end_col": 44, - "end_line": 7, - "input_file": { - "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/interfaces.cairo" - }, - "start_col": 29, - "start_line": 7 - }, - "While handling return value 'data_uri'" - ], - "start_col": 30, - "start_line": 8 - } - }, - "2548": { - "accessible_scopes": [ - "interfaces", - "interfaces.ICellRenderer", - "interfaces.ICellRenderer.token_uri" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 50, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/arg_processor/96447016176d161dae83f414c4d3e33e78856e0ef69bc33f8d419f1c9b90f9c5.cairo" - }, - "parent_location": [ - { - "end_col": 19, - "end_line": 6, - "input_file": { - "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/interfaces.cairo" - }, - "start_col": 10, - "start_line": 6 - }, - "While handling return values of" - ], - "start_col": 1, - "start_line": 1 - } - }, - "2549": { - "accessible_scopes": [ - "interfaces", - "interfaces.ICellRenderer", - "interfaces.ICellRenderer.token_uri" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 38, - "end_line": 42, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/starknet/common/syscalls.cairo" - }, - "parent_location": [ - { - "end_col": 33, - "end_line": 6, - "input_file": { - "filename": "autogen/starknet/contract_interface/ICellRenderer/token_uri/e1e41e9022bda39c4617b9e4e338140cde71000402172e9b2b9c9fdc807617dc.cairo" - }, - "parent_location": [ - { - "end_col": 19, - "end_line": 6, - "input_file": { - "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/interfaces.cairo" - }, - "parent_location": [ - { - "end_col": 34, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/contract_interface/ICellRenderer/token_uri/41262dba046518ea626ceadddf9bdd89ee1cb488a62fdf8cc47232b6ce4027bb.cairo" - }, - "parent_location": [ - { - "end_col": 19, - "end_line": 6, - "input_file": { - "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/interfaces.cairo" - }, - "parent_location": [ - { - "end_col": 94, - "end_line": 2, - "input_file": { - "filename": "autogen/starknet/contract_interface/ICellRenderer/token_uri/63dec979b849c8d317c85f20bf92c57762e3a959db375d2edb42d111867dcba1.cairo" - }, - "parent_location": [ - { - "end_col": 19, - "end_line": 6, - "input_file": { - "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/interfaces.cairo" - }, - "start_col": 10, - "start_line": 6 - }, - "While handling contract interface function:" - ], - "start_col": 1, - "start_line": 2 - }, - "While trying to retrieve the implicit argument 'syscall_ptr' in:" - ], - "start_col": 10, - "start_line": 6 - }, - "While handling contract interface function:" - ], - "start_col": 16, - "start_line": 1 - }, - "While expanding the reference 'syscall_ptr' in:" - ], - "start_col": 10, - "start_line": 6 - }, - "While handling contract interface function:" - ], - "start_col": 31, - "start_line": 2 - }, - "While trying to update the implicit return value 'syscall_ptr' in:" - ], - "start_col": 20, - "start_line": 42 - } - }, - "2550": { - "accessible_scopes": [ - "interfaces", - "interfaces.ICellRenderer", - "interfaces.ICellRenderer.token_uri" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 42, - "end_line": 3, - "input_file": { - "filename": "autogen/starknet/arg_processor/90d39885368c3e7097e50bfd1ab7069fc16a5b7a0aacb507eaa76c5ff838c93e.cairo" - }, - "parent_location": [ - { - "end_col": 44, - "end_line": 7, - "input_file": { - "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/interfaces.cairo" - }, - "parent_location": [ - { - "end_col": 51, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/contract_interface/ICellRenderer/token_uri/41262dba046518ea626ceadddf9bdd89ee1cb488a62fdf8cc47232b6ce4027bb.cairo" - }, - "parent_location": [ - { - "end_col": 19, - "end_line": 6, - "input_file": { - "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/interfaces.cairo" - }, - "parent_location": [ - { - "end_col": 94, - "end_line": 2, - "input_file": { - "filename": "autogen/starknet/contract_interface/ICellRenderer/token_uri/63dec979b849c8d317c85f20bf92c57762e3a959db375d2edb42d111867dcba1.cairo" - }, - "parent_location": [ - { - "end_col": 19, - "end_line": 6, - "input_file": { - "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/interfaces.cairo" - }, - "start_col": 10, - "start_line": 6 - }, - "While handling contract interface function:" - ], - "start_col": 1, - "start_line": 2 - }, - "While trying to retrieve the implicit argument 'range_check_ptr' in:" - ], - "start_col": 10, - "start_line": 6 - }, - "While handling contract interface function:" - ], - "start_col": 36, - "start_line": 1 - }, - "While expanding the reference 'range_check_ptr' in:" - ], - "start_col": 29, - "start_line": 7 - }, - "While handling return value 'data_uri'" - ], - "start_col": 23, - "start_line": 3 - } - }, - "2552": { - "accessible_scopes": [ - "interfaces", - "interfaces.ICellRenderer", - "interfaces.ICellRenderer.token_uri" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 59, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/arg_processor/1c69c7efe008948007bb96a7ffcf593eef2281114be5664acdb2aab9fdcaff9f.cairo" - }, - "parent_location": [ - { - "end_col": 27, - "end_line": 7, - "input_file": { - "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/interfaces.cairo" - }, - "parent_location": [ - { - "end_col": 53, - "end_line": 2, - "input_file": { - "filename": "autogen/starknet/contract_interface/ICellRenderer/token_uri/63dec979b849c8d317c85f20bf92c57762e3a959db375d2edb42d111867dcba1.cairo" - }, - "parent_location": [ - { - "end_col": 19, - "end_line": 6, - "input_file": { - "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/interfaces.cairo" - }, - "start_col": 10, - "start_line": 6 - }, - "While handling contract interface function:" - ], - "start_col": 22, - "start_line": 2 - }, - "While expanding the reference '__return_value_arg_data_uri_len' in:" - ], - "start_col": 9, - "start_line": 7 - }, - "While handling return value 'data_uri_len'" - ], - "start_col": 39, - "start_line": 1 - } - }, - "2553": { - "accessible_scopes": [ - "interfaces", - "interfaces.ICellRenderer", - "interfaces.ICellRenderer.token_uri" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 66, - "end_line": 5, - "input_file": { - "filename": "autogen/starknet/arg_processor/90d39885368c3e7097e50bfd1ab7069fc16a5b7a0aacb507eaa76c5ff838c93e.cairo" - }, - "parent_location": [ - { - "end_col": 44, - "end_line": 7, - "input_file": { - "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/interfaces.cairo" - }, - "parent_location": [ - { - "end_col": 91, - "end_line": 2, - "input_file": { - "filename": "autogen/starknet/contract_interface/ICellRenderer/token_uri/63dec979b849c8d317c85f20bf92c57762e3a959db375d2edb42d111867dcba1.cairo" - }, - "parent_location": [ - { - "end_col": 19, - "end_line": 6, - "input_file": { - "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/interfaces.cairo" - }, - "start_col": 10, - "start_line": 6 - }, - "While handling contract interface function:" - ], - "start_col": 64, - "start_line": 2 - }, - "While expanding the reference '__return_value_arg_data_uri' in:" - ], - "start_col": 29, - "start_line": 7 - }, - "While handling return value 'data_uri'" - ], - "start_col": 35, - "start_line": 5 - } - }, - "2555": { - "accessible_scopes": [ - "interfaces", - "interfaces.ICellRenderer", - "interfaces.ICellRenderer.token_uri" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 94, - "end_line": 2, - "input_file": { - "filename": "autogen/starknet/contract_interface/ICellRenderer/token_uri/63dec979b849c8d317c85f20bf92c57762e3a959db375d2edb42d111867dcba1.cairo" - }, - "parent_location": [ - { - "end_col": 19, - "end_line": 6, - "input_file": { - "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/interfaces.cairo" - }, - "start_col": 10, - "start_line": 6 - }, - "While handling contract interface function:" - ], - "start_col": 1, - "start_line": 2 - } - }, - "2556": { - "accessible_scopes": [ - "utils.merkle_tree", - "utils.merkle_tree.merkle_verify" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 38, - "end_line": 12, - "input_file": { - "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/utils/merkle_tree.cairo" - }, - "parent_location": [ - { - "end_col": 44, - "end_line": 36, - "input_file": { - "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/utils/merkle_tree.cairo" - }, - "parent_location": [ - { - "end_col": 66, - "end_line": 15, - "input_file": { - "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/utils/merkle_tree.cairo" - }, - "start_col": 23, - "start_line": 15 - }, - "While trying to retrieve the implicit argument 'syscall_ptr' in:" - ], - "start_col": 26, - "start_line": 36 - }, - "While expanding the reference 'syscall_ptr' in:" - ], - "start_col": 20, - "start_line": 12 - } - }, - "2557": { - "accessible_scopes": [ - "utils.merkle_tree", - "utils.merkle_tree.merkle_verify" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 66, - "end_line": 12, - "input_file": { - "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/utils/merkle_tree.cairo" - }, - "parent_location": [ - { - "end_col": 72, - "end_line": 36, - "input_file": { - "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/utils/merkle_tree.cairo" - }, - "parent_location": [ - { - "end_col": 66, - "end_line": 15, - "input_file": { - "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/utils/merkle_tree.cairo" - }, - "start_col": 23, - "start_line": 15 - }, - "While trying to retrieve the implicit argument 'pedersen_ptr' in:" - ], - "start_col": 46, - "start_line": 36 - }, - "While expanding the reference 'pedersen_ptr' in:" - ], - "start_col": 40, - "start_line": 12 - } - }, - "2558": { - "accessible_scopes": [ - "utils.merkle_tree", - "utils.merkle_tree.merkle_verify" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 83, - "end_line": 12, - "input_file": { - "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/utils/merkle_tree.cairo" - }, - "parent_location": [ - { - "end_col": 89, - "end_line": 36, - "input_file": { - "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/utils/merkle_tree.cairo" - }, - "parent_location": [ - { - "end_col": 66, - "end_line": 15, - "input_file": { - "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/utils/merkle_tree.cairo" - }, - "start_col": 23, - "start_line": 15 - }, - "While trying to retrieve the implicit argument 'range_check_ptr' in:" - ], - "start_col": 74, - "start_line": 36 - }, - "While expanding the reference 'range_check_ptr' in:" - ], - "start_col": 68, - "start_line": 12 - } - }, - "2559": { - "accessible_scopes": [ - "utils.merkle_tree", - "utils.merkle_tree.merkle_verify" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 15, - "end_line": 13, - "input_file": { - "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/utils/merkle_tree.cairo" - }, - "parent_location": [ - { - "end_col": 47, - "end_line": 15, - "input_file": { - "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/utils/merkle_tree.cairo" - }, - "start_col": 43, - "start_line": 15 - }, - "While expanding the reference 'leaf' in:" - ], - "start_col": 5, - "start_line": 13 - } - }, - "2560": { - "accessible_scopes": [ - "utils.merkle_tree", - "utils.merkle_tree.merkle_verify" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 44, - "end_line": 13, - "input_file": { - "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/utils/merkle_tree.cairo" - }, - "parent_location": [ - { - "end_col": 58, - "end_line": 15, - "input_file": { - "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/utils/merkle_tree.cairo" - }, - "start_col": 49, - "start_line": 15 - }, - "While expanding the reference 'proof_len' in:" - ], - "start_col": 29, - "start_line": 13 - } - }, - "2561": { - "accessible_scopes": [ - "utils.merkle_tree", - "utils.merkle_tree.merkle_verify" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 58, - "end_line": 13, - "input_file": { - "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/utils/merkle_tree.cairo" - }, - "parent_location": [ - { - "end_col": 65, - "end_line": 15, - "input_file": { - "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/utils/merkle_tree.cairo" - }, - "start_col": 60, - "start_line": 15 - }, - "While expanding the reference 'proof' in:" - ], - "start_col": 46, - "start_line": 13 - } - }, - "2562": { - "accessible_scopes": [ - "utils.merkle_tree", - "utils.merkle_tree.merkle_verify" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 66, - "end_line": 15, - "input_file": { - "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/utils/merkle_tree.cairo" - }, - "start_col": 23, - "start_line": 15 - } - }, - "2564": { - "accessible_scopes": [ - "utils.merkle_tree", - "utils.merkle_tree.merkle_verify" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 26, - "end_line": 17, - "input_file": { - "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/utils/merkle_tree.cairo" - }, - "start_col": 9, - "start_line": 17 - } - }, - "2565": { - "accessible_scopes": [ - "utils.merkle_tree", - "utils.merkle_tree.merkle_verify" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 7, - "end_line": 17, - "input_file": { - "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/utils/merkle_tree.cairo" - }, - "start_col": 5, - "start_line": 17 - } - }, - "2567": { - "accessible_scopes": [ - "utils.merkle_tree", - "utils.merkle_tree.merkle_verify" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 44, - "end_line": 36, - "input_file": { - "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/utils/merkle_tree.cairo" - }, - "parent_location": [ - { - "end_col": 66, - "end_line": 15, - "input_file": { - "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/utils/merkle_tree.cairo" - }, - "parent_location": [ - { - "end_col": 38, - "end_line": 12, - "input_file": { - "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/utils/merkle_tree.cairo" - }, - "parent_location": [ - { - "end_col": 21, - "end_line": 18, - "input_file": { - "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/utils/merkle_tree.cairo" - }, - "start_col": 9, - "start_line": 18 - }, - "While trying to retrieve the implicit argument 'syscall_ptr' in:" - ], - "start_col": 20, - "start_line": 12 - }, - "While expanding the reference 'syscall_ptr' in:" - ], - "start_col": 23, - "start_line": 15 - }, - "While trying to update the implicit return value 'syscall_ptr' in:" - ], - "start_col": 26, - "start_line": 36 - } - }, - "2568": { - "accessible_scopes": [ - "utils.merkle_tree", - "utils.merkle_tree.merkle_verify" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 72, - "end_line": 36, - "input_file": { - "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/utils/merkle_tree.cairo" - }, - "parent_location": [ - { - "end_col": 66, - "end_line": 15, - "input_file": { - "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/utils/merkle_tree.cairo" - }, - "parent_location": [ - { - "end_col": 66, - "end_line": 12, - "input_file": { - "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/utils/merkle_tree.cairo" - }, - "parent_location": [ - { - "end_col": 21, - "end_line": 18, - "input_file": { - "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/utils/merkle_tree.cairo" - }, - "start_col": 9, - "start_line": 18 - }, - "While trying to retrieve the implicit argument 'pedersen_ptr' in:" - ], - "start_col": 40, - "start_line": 12 - }, - "While expanding the reference 'pedersen_ptr' in:" - ], - "start_col": 23, - "start_line": 15 - }, - "While trying to update the implicit return value 'pedersen_ptr' in:" - ], - "start_col": 46, - "start_line": 36 - } - }, - "2569": { - "accessible_scopes": [ - "utils.merkle_tree", - "utils.merkle_tree.merkle_verify" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 89, - "end_line": 36, - "input_file": { - "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/utils/merkle_tree.cairo" - }, - "parent_location": [ - { - "end_col": 66, - "end_line": 15, - "input_file": { - "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/utils/merkle_tree.cairo" - }, - "parent_location": [ - { - "end_col": 83, - "end_line": 12, - "input_file": { - "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/utils/merkle_tree.cairo" - }, - "parent_location": [ - { - "end_col": 21, - "end_line": 18, - "input_file": { - "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/utils/merkle_tree.cairo" - }, - "start_col": 9, - "start_line": 18 - }, - "While trying to retrieve the implicit argument 'range_check_ptr' in:" - ], - "start_col": 68, - "start_line": 12 - }, - "While expanding the reference 'range_check_ptr' in:" - ], - "start_col": 23, - "start_line": 15 - }, - "While trying to update the implicit return value 'range_check_ptr' in:" - ], - "start_col": 74, - "start_line": 36 - } - }, - "2570": { - "accessible_scopes": [ - "utils.merkle_tree", - "utils.merkle_tree.merkle_verify" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 18, - "end_line": 18, - "input_file": { - "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/utils/merkle_tree.cairo" - }, - "start_col": 17, - "start_line": 18 - } - }, - "2572": { - "accessible_scopes": [ - "utils.merkle_tree", - "utils.merkle_tree.merkle_verify" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 21, - "end_line": 18, - "input_file": { - "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/utils/merkle_tree.cairo" - }, - "start_col": 9, - "start_line": 18 - } - }, - "2573": { - "accessible_scopes": [ - "utils.merkle_tree", - "utils.merkle_tree.merkle_verify" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 44, - "end_line": 36, - "input_file": { - "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/utils/merkle_tree.cairo" - }, - "parent_location": [ - { - "end_col": 66, - "end_line": 15, - "input_file": { - "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/utils/merkle_tree.cairo" - }, - "parent_location": [ - { - "end_col": 38, - "end_line": 12, - "input_file": { - "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/utils/merkle_tree.cairo" - }, - "parent_location": [ - { - "end_col": 21, - "end_line": 20, - "input_file": { - "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/utils/merkle_tree.cairo" - }, - "start_col": 9, - "start_line": 20 - }, - "While trying to retrieve the implicit argument 'syscall_ptr' in:" - ], - "start_col": 20, - "start_line": 12 - }, - "While expanding the reference 'syscall_ptr' in:" - ], - "start_col": 23, - "start_line": 15 - }, - "While trying to update the implicit return value 'syscall_ptr' in:" - ], - "start_col": 26, - "start_line": 36 - } - }, - "2574": { - "accessible_scopes": [ - "utils.merkle_tree", - "utils.merkle_tree.merkle_verify" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 72, - "end_line": 36, - "input_file": { - "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/utils/merkle_tree.cairo" - }, - "parent_location": [ - { - "end_col": 66, - "end_line": 15, - "input_file": { - "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/utils/merkle_tree.cairo" - }, - "parent_location": [ - { - "end_col": 66, - "end_line": 12, - "input_file": { - "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/utils/merkle_tree.cairo" - }, - "parent_location": [ - { - "end_col": 21, - "end_line": 20, - "input_file": { - "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/utils/merkle_tree.cairo" - }, - "start_col": 9, - "start_line": 20 - }, - "While trying to retrieve the implicit argument 'pedersen_ptr' in:" - ], - "start_col": 40, - "start_line": 12 - }, - "While expanding the reference 'pedersen_ptr' in:" - ], - "start_col": 23, - "start_line": 15 - }, - "While trying to update the implicit return value 'pedersen_ptr' in:" - ], - "start_col": 46, - "start_line": 36 - } - }, - "2575": { - "accessible_scopes": [ - "utils.merkle_tree", - "utils.merkle_tree.merkle_verify" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 89, - "end_line": 36, - "input_file": { - "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/utils/merkle_tree.cairo" - }, - "parent_location": [ - { - "end_col": 66, - "end_line": 15, - "input_file": { - "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/utils/merkle_tree.cairo" - }, - "parent_location": [ - { - "end_col": 83, - "end_line": 12, - "input_file": { - "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/utils/merkle_tree.cairo" - }, - "parent_location": [ - { - "end_col": 21, - "end_line": 20, - "input_file": { - "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/utils/merkle_tree.cairo" - }, - "start_col": 9, - "start_line": 20 - }, - "While trying to retrieve the implicit argument 'range_check_ptr' in:" - ], - "start_col": 68, - "start_line": 12 - }, - "While expanding the reference 'range_check_ptr' in:" - ], - "start_col": 23, - "start_line": 15 - }, - "While trying to update the implicit return value 'range_check_ptr' in:" - ], - "start_col": 74, - "start_line": 36 - } - }, - "2576": { - "accessible_scopes": [ - "utils.merkle_tree", - "utils.merkle_tree.merkle_verify" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 18, - "end_line": 20, - "input_file": { - "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/utils/merkle_tree.cairo" - }, - "start_col": 17, - "start_line": 20 - } - }, - "2578": { - "accessible_scopes": [ - "utils.merkle_tree", - "utils.merkle_tree.merkle_verify" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 21, - "end_line": 20, - "input_file": { - "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/utils/merkle_tree.cairo" - }, - "start_col": 9, - "start_line": 20 - } - }, - "2579": { - "accessible_scopes": [ - "utils.merkle_tree", - "utils.merkle_tree._hash_sorted" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 58, - "end_line": 24, - "input_file": { - "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/utils/merkle_tree.cairo" - }, - "parent_location": [ - { - "end_col": 32, - "end_line": 79, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/math_cmp.cairo" - }, - "parent_location": [ - { - "end_col": 30, - "end_line": 25, - "input_file": { - "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/utils/merkle_tree.cairo" - }, - "start_col": 14, - "start_line": 25 - }, - "While trying to retrieve the implicit argument 'range_check_ptr' in:" - ], - "start_col": 17, - "start_line": 79 - }, - "While expanding the reference 'range_check_ptr' in:" - ], - "start_col": 43, - "start_line": 24 - } - }, - "2580": { - "accessible_scopes": [ - "utils.merkle_tree", - "utils.merkle_tree._hash_sorted" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 61, - "end_line": 24, - "input_file": { - "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/utils/merkle_tree.cairo" - }, - "parent_location": [ - { - "end_col": 26, - "end_line": 25, - "input_file": { - "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/utils/merkle_tree.cairo" - }, - "start_col": 25, - "start_line": 25 - }, - "While expanding the reference 'a' in:" - ], - "start_col": 60, - "start_line": 24 - } - }, - "2581": { - "accessible_scopes": [ - "utils.merkle_tree", - "utils.merkle_tree._hash_sorted" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 64, - "end_line": 24, - "input_file": { - "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/utils/merkle_tree.cairo" - }, - "parent_location": [ - { - "end_col": 29, - "end_line": 25, - "input_file": { - "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/utils/merkle_tree.cairo" - }, - "start_col": 28, - "start_line": 25 - }, - "While expanding the reference 'b' in:" - ], - "start_col": 63, - "start_line": 24 - } - }, - "2582": { - "accessible_scopes": [ - "utils.merkle_tree", - "utils.merkle_tree._hash_sorted" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 30, - "end_line": 25, - "input_file": { - "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/utils/merkle_tree.cairo" - }, - "start_col": 14, - "start_line": 25 - } - }, - "2584": { - "accessible_scopes": [ - "utils.merkle_tree", - "utils.merkle_tree._hash_sorted" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 16, - "end_line": 27, - "input_file": { - "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/utils/merkle_tree.cairo" - }, - "start_col": 9, - "start_line": 27 - } - }, - "2586": { - "accessible_scopes": [ - "utils.merkle_tree", - "utils.merkle_tree._hash_sorted" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 7, - "end_line": 27, - "input_file": { - "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/utils/merkle_tree.cairo" - }, - "start_col": 5, - "start_line": 27 - } - }, - "2588": { - "accessible_scopes": [ - "utils.merkle_tree", - "utils.merkle_tree._hash_sorted" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 41, - "end_line": 24, - "input_file": { - "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/utils/merkle_tree.cairo" - }, - "parent_location": [ - { - "end_col": 42, - "end_line": 28, - "input_file": { - "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/utils/merkle_tree.cairo" - }, - "start_col": 34, - "start_line": 28 - }, - "While expanding the reference 'hash_ptr' in:" - ], - "start_col": 19, - "start_line": 24 - } - }, - "2589": { - "accessible_scopes": [ - "utils.merkle_tree", - "utils.merkle_tree._hash_sorted" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 61, - "end_line": 24, - "input_file": { - "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/utils/merkle_tree.cairo" - }, - "parent_location": [ - { - "end_col": 45, - "end_line": 28, - "input_file": { - "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/utils/merkle_tree.cairo" - }, - "start_col": 44, - "start_line": 28 - }, - "While expanding the reference 'a' in:" - ], - "start_col": 60, - "start_line": 24 - } - }, - "2590": { - "accessible_scopes": [ - "utils.merkle_tree", - "utils.merkle_tree._hash_sorted" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 64, - "end_line": 24, - "input_file": { - "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/utils/merkle_tree.cairo" - }, - "parent_location": [ - { - "end_col": 48, - "end_line": 28, - "input_file": { - "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/utils/merkle_tree.cairo" - }, - "start_col": 47, - "start_line": 28 - }, - "While expanding the reference 'b' in:" - ], - "start_col": 63, - "start_line": 24 - } - }, - "2591": { - "accessible_scopes": [ - "utils.merkle_tree", - "utils.merkle_tree._hash_sorted" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 49, - "end_line": 28, - "input_file": { - "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/utils/merkle_tree.cairo" - }, - "start_col": 19, - "start_line": 28 - } - }, - "2593": { - "accessible_scopes": [ - "utils.merkle_tree", - "utils.merkle_tree._hash_sorted" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 7, - "end_line": 27, - "input_file": { - "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/utils/merkle_tree.cairo" - }, - "start_col": 5, - "start_line": 27 - } - }, - "2595": { - "accessible_scopes": [ - "utils.merkle_tree", - "utils.merkle_tree._hash_sorted" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 41, - "end_line": 24, - "input_file": { - "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/utils/merkle_tree.cairo" - }, - "parent_location": [ - { - "end_col": 42, - "end_line": 30, - "input_file": { - "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/utils/merkle_tree.cairo" - }, - "start_col": 34, - "start_line": 30 - }, - "While expanding the reference 'hash_ptr' in:" - ], - "start_col": 19, - "start_line": 24 - } - }, - "2596": { - "accessible_scopes": [ - "utils.merkle_tree", - "utils.merkle_tree._hash_sorted" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 64, - "end_line": 24, - "input_file": { - "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/utils/merkle_tree.cairo" - }, - "parent_location": [ - { - "end_col": 45, - "end_line": 30, - "input_file": { - "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/utils/merkle_tree.cairo" - }, - "start_col": 44, - "start_line": 30 - }, - "While expanding the reference 'b' in:" - ], - "start_col": 63, - "start_line": 24 - } - }, - "2597": { - "accessible_scopes": [ - "utils.merkle_tree", - "utils.merkle_tree._hash_sorted" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 61, - "end_line": 24, - "input_file": { - "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/utils/merkle_tree.cairo" - }, - "parent_location": [ - { - "end_col": 48, - "end_line": 30, - "input_file": { - "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/utils/merkle_tree.cairo" - }, - "start_col": 47, - "start_line": 30 - }, - "While expanding the reference 'a' in:" - ], - "start_col": 60, - "start_line": 24 - } - }, - "2598": { - "accessible_scopes": [ - "utils.merkle_tree", - "utils.merkle_tree._hash_sorted" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 49, - "end_line": 30, - "input_file": { - "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/utils/merkle_tree.cairo" - }, - "start_col": 19, - "start_line": 30 - } - }, - "2600": { - "accessible_scopes": [ - "utils.merkle_tree", - "utils.merkle_tree._hash_sorted" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 42, - "end_line": 30, - "input_file": { - "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/utils/merkle_tree.cairo" - }, - "parent_location": [ - { - "end_col": 41, - "end_line": 24, - "input_file": { - "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/utils/merkle_tree.cairo" - }, - "parent_location": [ - { - "end_col": 17, - "end_line": 32, - "input_file": { - "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/utils/merkle_tree.cairo" - }, - "start_col": 5, - "start_line": 32 - }, - "While trying to retrieve the implicit argument 'hash_ptr' in:" - ], - "start_col": 19, - "start_line": 24 - }, - "While expanding the reference 'hash_ptr' in:" - ], - "start_col": 34, - "start_line": 30 - } - }, - "2601": { - "accessible_scopes": [ - "utils.merkle_tree", - "utils.merkle_tree._hash_sorted" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 32, - "end_line": 79, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/math_cmp.cairo" - }, - "parent_location": [ - { - "end_col": 30, - "end_line": 25, - "input_file": { - "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/utils/merkle_tree.cairo" - }, - "parent_location": [ - { - "end_col": 58, - "end_line": 24, - "input_file": { - "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/utils/merkle_tree.cairo" - }, - "parent_location": [ - { - "end_col": 17, - "end_line": 32, - "input_file": { - "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/utils/merkle_tree.cairo" - }, - "start_col": 5, - "start_line": 32 - }, - "While trying to retrieve the implicit argument 'range_check_ptr' in:" - ], - "start_col": 43, - "start_line": 24 - }, - "While expanding the reference 'range_check_ptr' in:" - ], - "start_col": 14, - "start_line": 25 - }, - "While trying to update the implicit return value 'range_check_ptr' in:" - ], - "start_col": 17, - "start_line": 79 - } - }, - "2602": { - "accessible_scopes": [ - "utils.merkle_tree", - "utils.merkle_tree._hash_sorted" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 15, - "end_line": 30, - "input_file": { - "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/utils/merkle_tree.cairo" - }, - "parent_location": [ - { - "end_col": 14, - "end_line": 32, - "input_file": { - "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/utils/merkle_tree.cairo" - }, - "start_col": 13, - "start_line": 32 - }, - "While expanding the reference 'n' in:" - ], - "start_col": 14, - "start_line": 30 - } - }, - "2603": { - "accessible_scopes": [ - "utils.merkle_tree", - "utils.merkle_tree._hash_sorted" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 17, - "end_line": 32, - "input_file": { - "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/utils/merkle_tree.cairo" - }, - "start_col": 5, - "start_line": 32 - } - }, - "2604": { - "accessible_scopes": [ - "utils.merkle_tree", - "utils.merkle_tree._merkle_verify_body" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 18, - "end_line": 39, - "input_file": { - "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/utils/merkle_tree.cairo" - }, - "start_col": 5, - "start_line": 39 - } - }, - "2606": { - "accessible_scopes": [ - "utils.merkle_tree", - "utils.merkle_tree._merkle_verify_body" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 7, - "end_line": 41, - "input_file": { - "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/utils/merkle_tree.cairo" - }, - "start_col": 5, - "start_line": 41 - } - }, - "2608": { - "accessible_scopes": [ - "utils.merkle_tree", - "utils.merkle_tree._merkle_verify_body" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 44, - "end_line": 36, - "input_file": { - "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/utils/merkle_tree.cairo" - }, - "parent_location": [ - { - "end_col": 44, - "end_line": 36, - "input_file": { - "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/utils/merkle_tree.cairo" - }, - "parent_location": [ - { - "end_col": 24, - "end_line": 42, - "input_file": { - "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/utils/merkle_tree.cairo" - }, - "start_col": 9, - "start_line": 42 - }, - "While trying to retrieve the implicit argument 'syscall_ptr' in:" - ], - "start_col": 26, - "start_line": 36 - }, - "While expanding the reference 'syscall_ptr' in:" - ], - "start_col": 26, - "start_line": 36 - } - }, - "2609": { - "accessible_scopes": [ - "utils.merkle_tree", - "utils.merkle_tree._merkle_verify_body" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 72, - "end_line": 36, - "input_file": { - "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/utils/merkle_tree.cairo" - }, - "parent_location": [ - { - "end_col": 72, - "end_line": 36, - "input_file": { - "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/utils/merkle_tree.cairo" - }, - "parent_location": [ - { - "end_col": 24, - "end_line": 42, - "input_file": { - "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/utils/merkle_tree.cairo" - }, - "start_col": 9, - "start_line": 42 - }, - "While trying to retrieve the implicit argument 'pedersen_ptr' in:" - ], - "start_col": 46, - "start_line": 36 - }, - "While expanding the reference 'pedersen_ptr' in:" - ], - "start_col": 46, - "start_line": 36 - } - }, - "2610": { - "accessible_scopes": [ - "utils.merkle_tree", - "utils.merkle_tree._merkle_verify_body" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 89, - "end_line": 36, - "input_file": { - "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/utils/merkle_tree.cairo" - }, - "parent_location": [ - { - "end_col": 89, - "end_line": 36, - "input_file": { - "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/utils/merkle_tree.cairo" - }, - "parent_location": [ - { - "end_col": 24, - "end_line": 42, - "input_file": { - "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/utils/merkle_tree.cairo" - }, - "start_col": 9, - "start_line": 42 - }, - "While trying to retrieve the implicit argument 'range_check_ptr' in:" - ], - "start_col": 74, - "start_line": 36 - }, - "While expanding the reference 'range_check_ptr' in:" - ], - "start_col": 74, - "start_line": 36 - } - }, - "2611": { - "accessible_scopes": [ - "utils.merkle_tree", - "utils.merkle_tree._merkle_verify_body" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 15, - "end_line": 37, - "input_file": { - "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/utils/merkle_tree.cairo" - }, - "parent_location": [ - { - "end_col": 21, - "end_line": 42, - "input_file": { - "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/utils/merkle_tree.cairo" - }, - "start_col": 17, - "start_line": 42 - }, - "While expanding the reference 'curr' in:" - ], - "start_col": 5, - "start_line": 37 - } - }, - "2612": { - "accessible_scopes": [ - "utils.merkle_tree", - "utils.merkle_tree._merkle_verify_body" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 24, - "end_line": 42, - "input_file": { - "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/utils/merkle_tree.cairo" - }, - "start_col": 9, - "start_line": 42 - } - }, - "2613": { - "accessible_scopes": [ - "utils.merkle_tree", - "utils.merkle_tree._merkle_verify_body" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 72, - "end_line": 36, - "input_file": { - "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/utils/merkle_tree.cairo" - }, - "parent_location": [ - { - "end_col": 49, - "end_line": 45, - "input_file": { - "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/utils/merkle_tree.cairo" - }, - "start_col": 37, - "start_line": 45 - }, - "While expanding the reference 'pedersen_ptr' in:" - ], - "start_col": 46, - "start_line": 36 - } - }, - "2614": { - "accessible_scopes": [ - "utils.merkle_tree", - "utils.merkle_tree._merkle_verify_body" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 89, - "end_line": 36, - "input_file": { - "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/utils/merkle_tree.cairo" - }, - "parent_location": [ - { - "end_col": 58, - "end_line": 24, - "input_file": { - "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/utils/merkle_tree.cairo" - }, - "parent_location": [ - { - "end_col": 65, - "end_line": 45, - "input_file": { - "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/utils/merkle_tree.cairo" - }, - "start_col": 15, - "start_line": 45 - }, - "While trying to retrieve the implicit argument 'range_check_ptr' in:" - ], - "start_col": 43, - "start_line": 24 - }, - "While expanding the reference 'range_check_ptr' in:" - ], - "start_col": 74, - "start_line": 36 - } - }, - "2615": { - "accessible_scopes": [ - "utils.merkle_tree", - "utils.merkle_tree._merkle_verify_body" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 15, - "end_line": 37, - "input_file": { - "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/utils/merkle_tree.cairo" - }, - "parent_location": [ - { - "end_col": 55, - "end_line": 45, - "input_file": { - "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/utils/merkle_tree.cairo" - }, - "start_col": 51, - "start_line": 45 - }, - "While expanding the reference 'curr' in:" - ], - "start_col": 5, - "start_line": 37 - } - }, - "2616": { - "accessible_scopes": [ - "utils.merkle_tree", - "utils.merkle_tree._merkle_verify_body" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 64, - "end_line": 45, - "input_file": { - "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/utils/merkle_tree.cairo" - }, - "start_col": 57, - "start_line": 45 - } - }, - "2617": { - "accessible_scopes": [ - "utils.merkle_tree", - "utils.merkle_tree._merkle_verify_body" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 65, - "end_line": 45, - "input_file": { - "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/utils/merkle_tree.cairo" - }, - "start_col": 15, - "start_line": 45 - } - }, - "2619": { - "accessible_scopes": [ - "utils.merkle_tree", - "utils.merkle_tree._merkle_verify_body" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 44, - "end_line": 36, - "input_file": { - "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/utils/merkle_tree.cairo" - }, - "parent_location": [ - { - "end_col": 44, - "end_line": 36, - "input_file": { - "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/utils/merkle_tree.cairo" - }, - "parent_location": [ - { - "end_col": 65, - "end_line": 47, - "input_file": { - "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/utils/merkle_tree.cairo" - }, - "start_col": 17, - "start_line": 47 - }, - "While trying to retrieve the implicit argument 'syscall_ptr' in:" - ], - "start_col": 26, - "start_line": 36 - }, - "While expanding the reference 'syscall_ptr' in:" - ], - "start_col": 26, - "start_line": 36 - } - }, - "2620": { - "accessible_scopes": [ - "utils.merkle_tree", - "utils.merkle_tree._merkle_verify_body" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 49, - "end_line": 45, - "input_file": { - "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/utils/merkle_tree.cairo" - }, - "parent_location": [ - { - "end_col": 72, - "end_line": 36, - "input_file": { - "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/utils/merkle_tree.cairo" - }, - "parent_location": [ - { - "end_col": 65, - "end_line": 47, - "input_file": { - "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/utils/merkle_tree.cairo" - }, - "start_col": 17, - "start_line": 47 - }, - "While trying to retrieve the implicit argument 'pedersen_ptr' in:" - ], - "start_col": 46, - "start_line": 36 - }, - "While expanding the reference 'pedersen_ptr' in:" - ], - "start_col": 37, - "start_line": 45 - } - }, - "2621": { - "accessible_scopes": [ - "utils.merkle_tree", - "utils.merkle_tree._merkle_verify_body" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 58, - "end_line": 24, - "input_file": { - "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/utils/merkle_tree.cairo" - }, - "parent_location": [ - { - "end_col": 65, - "end_line": 45, - "input_file": { - "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/utils/merkle_tree.cairo" - }, - "parent_location": [ - { - "end_col": 89, - "end_line": 36, - "input_file": { - "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/utils/merkle_tree.cairo" - }, - "parent_location": [ - { - "end_col": 65, - "end_line": 47, - "input_file": { - "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/utils/merkle_tree.cairo" - }, - "start_col": 17, - "start_line": 47 - }, - "While trying to retrieve the implicit argument 'range_check_ptr' in:" - ], - "start_col": 74, - "start_line": 36 - }, - "While expanding the reference 'range_check_ptr' in:" - ], - "start_col": 15, - "start_line": 45 - }, - "While trying to update the implicit return value 'range_check_ptr' in:" - ], - "start_col": 43, - "start_line": 24 - } - }, - "2622": { - "accessible_scopes": [ - "utils.merkle_tree", - "utils.merkle_tree._merkle_verify_body" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 11, - "end_line": 45, - "input_file": { - "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/utils/merkle_tree.cairo" - }, - "parent_location": [ - { - "end_col": 38, - "end_line": 47, - "input_file": { - "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/utils/merkle_tree.cairo" - }, - "start_col": 37, - "start_line": 47 - }, - "While expanding the reference 'n' in:" - ], - "start_col": 10, - "start_line": 45 - } - }, - "2623": { - "accessible_scopes": [ - "utils.merkle_tree", - "utils.merkle_tree._merkle_verify_body" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 53, - "end_line": 47, - "input_file": { - "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/utils/merkle_tree.cairo" - }, - "start_col": 40, - "start_line": 47 - } - }, - "2625": { - "accessible_scopes": [ - "utils.merkle_tree", - "utils.merkle_tree._merkle_verify_body" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 64, - "end_line": 47, - "input_file": { - "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/utils/merkle_tree.cairo" - }, - "start_col": 55, - "start_line": 47 - } - }, - "2627": { - "accessible_scopes": [ - "utils.merkle_tree", - "utils.merkle_tree._merkle_verify_body" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 65, - "end_line": 47, - "input_file": { - "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/utils/merkle_tree.cairo" - }, - "start_col": 17, - "start_line": 47 - } - }, - "2629": { - "accessible_scopes": [ - "utils.merkle_tree", - "utils.merkle_tree._merkle_verify_body" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 19, - "end_line": 48, - "input_file": { - "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/utils/merkle_tree.cairo" - }, - "start_col": 5, - "start_line": 48 - } - }, - "2630": { - "accessible_scopes": [ - "sheet.library", - "sheet.library.CellUpdated", - "sheet.library.CellUpdated.emit" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 14, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/event/CellUpdated/8220fde17ca5479f12ae71a8036f4d354fe722f2c036da610b53511924e4ee84.cairo" - }, - "parent_location": [ - { - "end_col": 17, - "end_line": 24, - "input_file": { - "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" - }, - "start_col": 6, - "start_line": 24 - }, - "While handling event:" - ], - "start_col": 1, - "start_line": 1 - } - }, - "2632": { - "accessible_scopes": [ - "sheet.library", - "sheet.library.CellUpdated", - "sheet.library.CellUpdated.emit" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 40, - "end_line": 2, - "input_file": { - "filename": "autogen/starknet/event/CellUpdated/8220fde17ca5479f12ae71a8036f4d354fe722f2c036da610b53511924e4ee84.cairo" - }, - "parent_location": [ - { - "end_col": 17, - "end_line": 24, - "input_file": { - "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" - }, - "start_col": 6, - "start_line": 24 - }, - "While handling event:" - ], - "start_col": 33, - "start_line": 2 - } - }, - "2634": { - "accessible_scopes": [ - "sheet.library", - "sheet.library.CellUpdated", - "sheet.library.CellUpdated.emit" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 29, - "end_line": 2, - "input_file": { - "filename": "autogen/starknet/event/CellUpdated/8220fde17ca5479f12ae71a8036f4d354fe722f2c036da610b53511924e4ee84.cairo" - }, - "parent_location": [ - { - "end_col": 17, - "end_line": 24, - "input_file": { - "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" - }, - "start_col": 6, - "start_line": 24 - }, - "While handling event:" - ], - "start_col": 6, - "start_line": 2 - } - }, - "2635": { - "accessible_scopes": [ - "sheet.library", - "sheet.library.CellUpdated", - "sheet.library.CellUpdated.emit" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 31, - "end_line": 3, - "input_file": { - "filename": "autogen/starknet/event/CellUpdated/8220fde17ca5479f12ae71a8036f4d354fe722f2c036da610b53511924e4ee84.cairo" - }, - "parent_location": [ - { - "end_col": 17, - "end_line": 24, - "input_file": { - "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" - }, - "start_col": 6, - "start_line": 24 - }, - "While handling event:" - ], - "start_col": 23, - "start_line": 3 - } - }, - "2637": { - "accessible_scopes": [ - "sheet.library", - "sheet.library.CellUpdated", - "sheet.library.CellUpdated.emit" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 32, - "end_line": 3, - "input_file": { - "filename": "autogen/starknet/event/CellUpdated/8220fde17ca5479f12ae71a8036f4d354fe722f2c036da610b53511924e4ee84.cairo" - }, - "parent_location": [ - { - "end_col": 17, - "end_line": 24, - "input_file": { - "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" - }, - "start_col": 6, - "start_line": 24 - }, - "While handling event:" - ], - "start_col": 1, - "start_line": 3 - } - }, - "2638": { - "accessible_scopes": [ - "sheet.library", - "sheet.library.CellUpdated", - "sheet.library.CellUpdated.emit" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 40, - "end_line": 4, - "input_file": { - "filename": "autogen/starknet/event/CellUpdated/8220fde17ca5479f12ae71a8036f4d354fe722f2c036da610b53511924e4ee84.cairo" - }, - "parent_location": [ - { - "end_col": 17, - "end_line": 24, - "input_file": { - "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" - }, - "start_col": 6, - "start_line": 24 - }, - "While handling event:" - ], - "start_col": 33, - "start_line": 4 - } - }, - "2640": { - "accessible_scopes": [ - "sheet.library", - "sheet.library.CellUpdated", - "sheet.library.CellUpdated.emit" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 29, - "end_line": 4, - "input_file": { - "filename": "autogen/starknet/event/CellUpdated/8220fde17ca5479f12ae71a8036f4d354fe722f2c036da610b53511924e4ee84.cairo" - }, - "parent_location": [ - { - "end_col": 17, - "end_line": 24, - "input_file": { - "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" - }, - "start_col": 6, - "start_line": 24 - }, - "While handling event:" - ], - "start_col": 6, - "start_line": 4 - } - }, - "2641": { - "accessible_scopes": [ - "sheet.library", - "sheet.library.CellUpdated", - "sheet.library.CellUpdated.emit" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 30, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/arg_processor/075e4ad17c5c33f2000b89f716344a0dc5939a8c778eaecf5d50aad0b8c8f6a4.cairo" - }, - "parent_location": [ - { - "end_col": 20, - "end_line": 24, - "input_file": { - "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" - }, - "start_col": 18, - "start_line": 24 - }, - "While handling calldata argument 'id'" - ], - "start_col": 1, - "start_line": 1 - } - }, - "2642": { - "accessible_scopes": [ - "sheet.library", - "sheet.library.CellUpdated", - "sheet.library.CellUpdated.emit" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 33, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/arg_processor/84a24514c1fc47c938055c9b8b555ae76e193c3fe4f1a6a3391748432a916688.cairo" - }, - "parent_location": [ - { - "end_col": 33, - "end_line": 24, - "input_file": { - "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" - }, - "start_col": 28, - "start_line": 24 - }, - "While handling calldata argument 'value'" - ], - "start_col": 1, - "start_line": 1 - } - }, - "2643": { - "accessible_scopes": [ - "sheet.library", - "sheet.library.CellUpdated", - "sheet.library.CellUpdated.emit" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 44, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/arg_processor/46897e8d1eeb70f43de97768fc576e67eb909a92fef3afcd8593de4462cb359f.cairo" - }, - "parent_location": [ - { - "end_col": 57, - "end_line": 24, - "input_file": { - "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" - }, - "start_col": 41, - "start_line": 24 - }, - "While handling calldata argument 'contract_address'" - ], - "start_col": 1, - "start_line": 1 - } - }, - "2644": { - "accessible_scopes": [ - "sheet.library", - "sheet.library.CellUpdated", - "sheet.library.CellUpdated.emit" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 40, - "end_line": 2, - "input_file": { - "filename": "autogen/starknet/arg_processor/46897e8d1eeb70f43de97768fc576e67eb909a92fef3afcd8593de4462cb359f.cairo" - }, - "parent_location": [ - { - "end_col": 57, - "end_line": 24, - "input_file": { - "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" - }, - "parent_location": [ - { - "end_col": 64, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/event/CellUpdated/6150feec30bd48bfd0f446ed8c155a6d911a2c3fb3ec7a980733900416819259.cairo" - }, - "parent_location": [ - { - "end_col": 17, - "end_line": 24, - "input_file": { - "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" - }, - "start_col": 6, - "start_line": 24 - }, - "While handling event:" - ], - "start_col": 50, - "start_line": 1 - }, - "While expanding the reference '__calldata_ptr' in:" - ], - "start_col": 41, - "start_line": 24 - }, - "While handling calldata argument 'contract_address'" - ], - "start_col": 22, - "start_line": 2 - } - }, - "2646": { - "accessible_scopes": [ - "sheet.library", - "sheet.library.CellUpdated", - "sheet.library.CellUpdated.emit" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 29, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/event/CellUpdated/a7a8ae41be29ac9f4f6c3b7837c448d787ca051dd1ade98f409e54d33d112504.cairo" - }, - "parent_location": [ - { - "end_col": 17, - "end_line": 24, - "input_file": { - "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" - }, - "parent_location": [ - { - "end_col": 35, - "end_line": 390, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/starknet/common/syscalls.cairo" - }, - "parent_location": [ - { - "end_col": 95, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/event/CellUpdated/6150feec30bd48bfd0f446ed8c155a6d911a2c3fb3ec7a980733900416819259.cairo" - }, - "parent_location": [ - { - "end_col": 17, - "end_line": 24, - "input_file": { - "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" - }, - "start_col": 6, - "start_line": 24 - }, - "While handling event:" - ], - "start_col": 1, - "start_line": 1 - }, - "While trying to retrieve the implicit argument 'syscall_ptr' in:" - ], - "start_col": 17, - "start_line": 390 - }, - "While expanding the reference 'syscall_ptr' in:" - ], - "start_col": 6, - "start_line": 24 - }, - "While handling event:" - ], - "start_col": 11, - "start_line": 1 - } - }, - "2647": { - "accessible_scopes": [ - "sheet.library", - "sheet.library.CellUpdated", - "sheet.library.CellUpdated.emit" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 22, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/event/CellUpdated/6150feec30bd48bfd0f446ed8c155a6d911a2c3fb3ec7a980733900416819259.cairo" - }, - "parent_location": [ - { - "end_col": 17, - "end_line": 24, - "input_file": { - "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" - }, - "start_col": 6, - "start_line": 24 - }, - "While handling event:" - ], - "start_col": 21, - "start_line": 1 - } - }, - "2649": { - "accessible_scopes": [ - "sheet.library", - "sheet.library.CellUpdated", - "sheet.library.CellUpdated.emit" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 22, - "end_line": 2, - "input_file": { - "filename": "autogen/starknet/event/CellUpdated/8220fde17ca5479f12ae71a8036f4d354fe722f2c036da610b53511924e4ee84.cairo" - }, - "parent_location": [ - { - "end_col": 17, - "end_line": 24, - "input_file": { - "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" - }, - "parent_location": [ - { - "end_col": 39, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/event/CellUpdated/6150feec30bd48bfd0f446ed8c155a6d911a2c3fb3ec7a980733900416819259.cairo" - }, - "parent_location": [ - { - "end_col": 17, - "end_line": 24, - "input_file": { - "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" - }, - "start_col": 6, - "start_line": 24 - }, - "While handling event:" - ], - "start_col": 29, - "start_line": 1 - }, - "While expanding the reference '__keys_ptr' in:" - ], - "start_col": 6, - "start_line": 24 - }, - "While handling event:" - ], - "start_col": 12, - "start_line": 2 - } - }, - "2650": { - "accessible_scopes": [ - "sheet.library", - "sheet.library.CellUpdated", - "sheet.library.CellUpdated.emit" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 77, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/event/CellUpdated/6150feec30bd48bfd0f446ed8c155a6d911a2c3fb3ec7a980733900416819259.cairo" - }, - "parent_location": [ - { - "end_col": 17, - "end_line": 24, - "input_file": { - "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" - }, - "start_col": 6, - "start_line": 24 - }, - "While handling event:" - ], - "start_col": 50, - "start_line": 1 - } - }, - "2651": { - "accessible_scopes": [ - "sheet.library", - "sheet.library.CellUpdated", - "sheet.library.CellUpdated.emit" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 22, - "end_line": 4, - "input_file": { - "filename": "autogen/starknet/event/CellUpdated/8220fde17ca5479f12ae71a8036f4d354fe722f2c036da610b53511924e4ee84.cairo" - }, - "parent_location": [ - { - "end_col": 17, - "end_line": 24, - "input_file": { - "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" - }, - "parent_location": [ - { - "end_col": 94, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/event/CellUpdated/6150feec30bd48bfd0f446ed8c155a6d911a2c3fb3ec7a980733900416819259.cairo" - }, - "parent_location": [ - { - "end_col": 17, - "end_line": 24, - "input_file": { - "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" - }, - "start_col": 6, - "start_line": 24 - }, - "While handling event:" - ], - "start_col": 84, - "start_line": 1 - }, - "While expanding the reference '__data_ptr' in:" - ], - "start_col": 6, - "start_line": 24 - }, - "While handling event:" - ], - "start_col": 12, - "start_line": 4 - } - }, - "2652": { - "accessible_scopes": [ - "sheet.library", - "sheet.library.CellUpdated", - "sheet.library.CellUpdated.emit" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 95, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/event/CellUpdated/6150feec30bd48bfd0f446ed8c155a6d911a2c3fb3ec7a980733900416819259.cairo" - }, - "parent_location": [ - { - "end_col": 17, - "end_line": 24, - "input_file": { - "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" - }, - "start_col": 6, - "start_line": 24 - }, - "While handling event:" - ], - "start_col": 1, - "start_line": 1 - } - }, - "2654": { - "accessible_scopes": [ - "sheet.library", - "sheet.library.CellUpdated", - "sheet.library.CellUpdated.emit" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 46, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/event/CellUpdated/a7a8ae41be29ac9f4f6c3b7837c448d787ca051dd1ade98f409e54d33d112504.cairo" - }, - "parent_location": [ - { - "end_col": 17, - "end_line": 24, - "input_file": { - "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" - }, - "parent_location": [ - { - "end_col": 46, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/event/CellUpdated/a7a8ae41be29ac9f4f6c3b7837c448d787ca051dd1ade98f409e54d33d112504.cairo" - }, - "parent_location": [ - { - "end_col": 17, - "end_line": 24, - "input_file": { - "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" - }, - "parent_location": [ - { - "end_col": 11, - "end_line": 2, - "input_file": { - "filename": "autogen/starknet/event/CellUpdated/6150feec30bd48bfd0f446ed8c155a6d911a2c3fb3ec7a980733900416819259.cairo" - }, - "parent_location": [ - { - "end_col": 17, - "end_line": 24, - "input_file": { - "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" - }, - "start_col": 6, - "start_line": 24 - }, - "While handling event:" - ], - "start_col": 1, - "start_line": 2 - }, - "While trying to retrieve the implicit argument 'range_check_ptr' in:" - ], - "start_col": 6, - "start_line": 24 - }, - "While handling event:" - ], - "start_col": 31, - "start_line": 1 - }, - "While expanding the reference 'range_check_ptr' in:" - ], - "start_col": 6, - "start_line": 24 - }, - "While handling event:" - ], - "start_col": 31, - "start_line": 1 - } - }, - "2655": { - "accessible_scopes": [ - "sheet.library", - "sheet.library.CellUpdated", - "sheet.library.CellUpdated.emit" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 11, - "end_line": 2, - "input_file": { - "filename": "autogen/starknet/event/CellUpdated/6150feec30bd48bfd0f446ed8c155a6d911a2c3fb3ec7a980733900416819259.cairo" - }, - "parent_location": [ - { - "end_col": 17, - "end_line": 24, - "input_file": { - "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" - }, - "start_col": 6, - "start_line": 24 - }, - "While handling event:" - ], - "start_col": 1, - "start_line": 2 - } - }, - "2656": { - "accessible_scopes": [ - "sheet.library", - "sheet.library.Sheet_cell_renderer", - "sheet.library.Sheet_cell_renderer.addr" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 41, - "end_line": 7, - "input_file": { - "filename": "autogen/starknet/storage_var/Sheet_cell_renderer/impl.cairo" - }, - "parent_location": [ - { - "end_col": 41, - "end_line": 7, - "input_file": { - "filename": "autogen/starknet/storage_var/Sheet_cell_renderer/decl.cairo" - }, - "parent_location": [ - { - "end_col": 26, - "end_line": 9, - "input_file": { - "filename": "autogen/starknet/storage_var/Sheet_cell_renderer/impl.cairo" - }, - "start_col": 9, - "start_line": 9 - }, - "While trying to retrieve the implicit argument 'pedersen_ptr' in:" - ], - "start_col": 15, - "start_line": 7 - }, - "While expanding the reference 'pedersen_ptr' in:" - ], - "start_col": 15, - "start_line": 7 - } - }, - "2657": { - "accessible_scopes": [ - "sheet.library", - "sheet.library.Sheet_cell_renderer", - "sheet.library.Sheet_cell_renderer.addr" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 58, - "end_line": 7, - "input_file": { - "filename": "autogen/starknet/storage_var/Sheet_cell_renderer/impl.cairo" - }, - "parent_location": [ - { - "end_col": 58, - "end_line": 7, - "input_file": { - "filename": "autogen/starknet/storage_var/Sheet_cell_renderer/decl.cairo" - }, - "parent_location": [ - { - "end_col": 26, - "end_line": 9, - "input_file": { - "filename": "autogen/starknet/storage_var/Sheet_cell_renderer/impl.cairo" - }, - "start_col": 9, - "start_line": 9 - }, - "While trying to retrieve the implicit argument 'range_check_ptr' in:" - ], - "start_col": 43, - "start_line": 7 - }, - "While expanding the reference 'range_check_ptr' in:" - ], - "start_col": 43, - "start_line": 7 - } - }, - "2658": { - "accessible_scopes": [ - "sheet.library", - "sheet.library.Sheet_cell_renderer", - "sheet.library.Sheet_cell_renderer.addr" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 95, - "end_line": 8, - "input_file": { - "filename": "autogen/starknet/storage_var/Sheet_cell_renderer/impl.cairo" - }, - "parent_location": [ - { - "end_col": 24, - "end_line": 9, - "input_file": { - "filename": "autogen/starknet/storage_var/Sheet_cell_renderer/impl.cairo" - }, - "start_col": 21, - "start_line": 9 - }, - "While expanding the reference 'res' in:" - ], - "start_col": 19, - "start_line": 8 - } - }, - "2660": { - "accessible_scopes": [ - "sheet.library", - "sheet.library.Sheet_cell_renderer", - "sheet.library.Sheet_cell_renderer.addr" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 26, - "end_line": 9, - "input_file": { - "filename": "autogen/starknet/storage_var/Sheet_cell_renderer/impl.cairo" - }, - "start_col": 9, - "start_line": 9 - } - }, - "2661": { - "accessible_scopes": [ - "sheet.library", - "sheet.library.Sheet_cell_renderer", - "sheet.library.Sheet_cell_renderer.read" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 61, - "end_line": 12, - "input_file": { - "filename": "autogen/starknet/storage_var/Sheet_cell_renderer/impl.cairo" - }, - "parent_location": [ - { - "end_col": 41, - "end_line": 7, - "input_file": { - "filename": "autogen/starknet/storage_var/Sheet_cell_renderer/decl.cairo" - }, - "parent_location": [ - { - "end_col": 36, - "end_line": 15, - "input_file": { - "filename": "autogen/starknet/storage_var/Sheet_cell_renderer/impl.cairo" - }, - "start_col": 30, - "start_line": 15 - }, - "While trying to retrieve the implicit argument 'pedersen_ptr' in:" - ], - "start_col": 15, - "start_line": 7 - }, - "While expanding the reference 'pedersen_ptr' in:" - ], - "start_col": 35, - "start_line": 12 - } - }, - "2662": { - "accessible_scopes": [ - "sheet.library", - "sheet.library.Sheet_cell_renderer", - "sheet.library.Sheet_cell_renderer.read" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 78, - "end_line": 12, - "input_file": { - "filename": "autogen/starknet/storage_var/Sheet_cell_renderer/impl.cairo" - }, - "parent_location": [ - { - "end_col": 58, - "end_line": 7, - "input_file": { - "filename": "autogen/starknet/storage_var/Sheet_cell_renderer/decl.cairo" - }, - "parent_location": [ - { - "end_col": 36, - "end_line": 15, - "input_file": { - "filename": "autogen/starknet/storage_var/Sheet_cell_renderer/impl.cairo" - }, - "start_col": 30, - "start_line": 15 - }, - "While trying to retrieve the implicit argument 'range_check_ptr' in:" - ], - "start_col": 43, - "start_line": 7 - }, - "While expanding the reference 'range_check_ptr' in:" - ], - "start_col": 63, - "start_line": 12 - } - }, - "2663": { - "accessible_scopes": [ - "sheet.library", - "sheet.library.Sheet_cell_renderer", - "sheet.library.Sheet_cell_renderer.read" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 36, - "end_line": 15, - "input_file": { - "filename": "autogen/starknet/storage_var/Sheet_cell_renderer/impl.cairo" - }, - "start_col": 30, - "start_line": 15 - } - }, - "2665": { - "accessible_scopes": [ - "sheet.library", - "sheet.library.Sheet_cell_renderer", - "sheet.library.Sheet_cell_renderer.read" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 33, - "end_line": 12, - "input_file": { - "filename": "autogen/starknet/storage_var/Sheet_cell_renderer/impl.cairo" - }, - "parent_location": [ - { - "end_col": 37, - "end_line": 352, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/starknet/common/syscalls.cairo" - }, - "parent_location": [ - { - "end_col": 75, - "end_line": 16, - "input_file": { - "filename": "autogen/starknet/storage_var/Sheet_cell_renderer/impl.cairo" - }, - "start_col": 37, - "start_line": 16 - }, - "While trying to retrieve the implicit argument 'syscall_ptr' in:" - ], - "start_col": 19, - "start_line": 352 - }, - "While expanding the reference 'syscall_ptr' in:" - ], - "start_col": 15, - "start_line": 12 - } - }, - "2666": { - "accessible_scopes": [ - "sheet.library", - "sheet.library.Sheet_cell_renderer", - "sheet.library.Sheet_cell_renderer.read" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 26, - "end_line": 15, - "input_file": { - "filename": "autogen/starknet/storage_var/Sheet_cell_renderer/impl.cairo" - }, - "parent_location": [ - { - "end_col": 70, - "end_line": 16, - "input_file": { - "filename": "autogen/starknet/storage_var/Sheet_cell_renderer/impl.cairo" - }, - "start_col": 58, - "start_line": 16 - }, - "While expanding the reference 'storage_addr' in:" - ], - "start_col": 14, - "start_line": 15 - } - }, - "2667": { - "accessible_scopes": [ - "sheet.library", - "sheet.library.Sheet_cell_renderer", - "sheet.library.Sheet_cell_renderer.read" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 75, - "end_line": 16, - "input_file": { - "filename": "autogen/starknet/storage_var/Sheet_cell_renderer/impl.cairo" - }, - "start_col": 37, - "start_line": 16 - } - }, - "2669": { - "accessible_scopes": [ - "sheet.library", - "sheet.library.Sheet_cell_renderer", - "sheet.library.Sheet_cell_renderer.read" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 37, - "end_line": 352, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/starknet/common/syscalls.cairo" - }, - "parent_location": [ - { - "end_col": 75, - "end_line": 16, - "input_file": { - "filename": "autogen/starknet/storage_var/Sheet_cell_renderer/impl.cairo" - }, - "parent_location": [ - { - "end_col": 42, - "end_line": 18, - "input_file": { - "filename": "autogen/starknet/storage_var/Sheet_cell_renderer/impl.cairo" - }, - "start_col": 31, - "start_line": 18 - }, - "While expanding the reference 'syscall_ptr' in:" - ], - "start_col": 37, - "start_line": 16 - }, - "While trying to update the implicit return value 'syscall_ptr' in:" - ], - "start_col": 19, - "start_line": 352 - } - }, - "2670": { - "accessible_scopes": [ - "sheet.library", - "sheet.library.Sheet_cell_renderer", - "sheet.library.Sheet_cell_renderer.read" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 41, - "end_line": 7, - "input_file": { - "filename": "autogen/starknet/storage_var/Sheet_cell_renderer/decl.cairo" - }, - "parent_location": [ - { - "end_col": 36, - "end_line": 15, - "input_file": { - "filename": "autogen/starknet/storage_var/Sheet_cell_renderer/impl.cairo" - }, - "parent_location": [ - { - "end_col": 44, - "end_line": 19, - "input_file": { - "filename": "autogen/starknet/storage_var/Sheet_cell_renderer/impl.cairo" - }, - "start_col": 32, - "start_line": 19 - }, - "While expanding the reference 'pedersen_ptr' in:" - ], - "start_col": 30, - "start_line": 15 - }, - "While trying to update the implicit return value 'pedersen_ptr' in:" - ], - "start_col": 15, - "start_line": 7 - } - }, - "2671": { - "accessible_scopes": [ - "sheet.library", - "sheet.library.Sheet_cell_renderer", - "sheet.library.Sheet_cell_renderer.read" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 58, - "end_line": 7, - "input_file": { - "filename": "autogen/starknet/storage_var/Sheet_cell_renderer/decl.cairo" - }, - "parent_location": [ - { - "end_col": 36, - "end_line": 15, - "input_file": { - "filename": "autogen/starknet/storage_var/Sheet_cell_renderer/impl.cairo" - }, - "parent_location": [ - { - "end_col": 50, - "end_line": 20, - "input_file": { - "filename": "autogen/starknet/storage_var/Sheet_cell_renderer/impl.cairo" - }, - "start_col": 35, - "start_line": 20 - }, - "While expanding the reference 'range_check_ptr' in:" - ], - "start_col": 30, - "start_line": 15 - }, - "While trying to update the implicit return value 'range_check_ptr' in:" - ], - "start_col": 43, - "start_line": 7 - } - }, - "2672": { - "accessible_scopes": [ - "sheet.library", - "sheet.library.Sheet_cell_renderer", - "sheet.library.Sheet_cell_renderer.read" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 33, - "end_line": 16, - "input_file": { - "filename": "autogen/starknet/storage_var/Sheet_cell_renderer/impl.cairo" - }, - "parent_location": [ - { - "end_col": 64, - "end_line": 21, - "input_file": { - "filename": "autogen/starknet/storage_var/Sheet_cell_renderer/impl.cairo" - }, - "start_col": 45, - "start_line": 21 - }, - "While expanding the reference '__storage_var_temp0' in:" - ], - "start_col": 14, - "start_line": 16 - } - }, - "2673": { - "accessible_scopes": [ - "sheet.library", - "sheet.library.Sheet_cell_renderer", - "sheet.library.Sheet_cell_renderer.read" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 55, - "end_line": 22, - "input_file": { - "filename": "autogen/starknet/storage_var/Sheet_cell_renderer/impl.cairo" - }, - "start_col": 9, - "start_line": 22 - } - }, - "2674": { - "accessible_scopes": [ - "sheet.library", - "sheet.library.Sheet_cell_renderer", - "sheet.library.Sheet_cell_renderer.write" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 62, - "end_line": 25, - "input_file": { - "filename": "autogen/starknet/storage_var/Sheet_cell_renderer/impl.cairo" - }, - "parent_location": [ - { - "end_col": 41, - "end_line": 7, - "input_file": { - "filename": "autogen/starknet/storage_var/Sheet_cell_renderer/decl.cairo" - }, - "parent_location": [ - { - "end_col": 36, - "end_line": 26, - "input_file": { - "filename": "autogen/starknet/storage_var/Sheet_cell_renderer/impl.cairo" - }, - "start_col": 30, - "start_line": 26 - }, - "While trying to retrieve the implicit argument 'pedersen_ptr' in:" - ], - "start_col": 15, - "start_line": 7 - }, - "While expanding the reference 'pedersen_ptr' in:" - ], - "start_col": 36, - "start_line": 25 - } - }, - "2675": { - "accessible_scopes": [ - "sheet.library", - "sheet.library.Sheet_cell_renderer", - "sheet.library.Sheet_cell_renderer.write" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 79, - "end_line": 25, - "input_file": { - "filename": "autogen/starknet/storage_var/Sheet_cell_renderer/impl.cairo" - }, - "parent_location": [ - { - "end_col": 58, - "end_line": 7, - "input_file": { - "filename": "autogen/starknet/storage_var/Sheet_cell_renderer/decl.cairo" - }, - "parent_location": [ - { - "end_col": 36, - "end_line": 26, - "input_file": { - "filename": "autogen/starknet/storage_var/Sheet_cell_renderer/impl.cairo" - }, - "start_col": 30, - "start_line": 26 - }, - "While trying to retrieve the implicit argument 'range_check_ptr' in:" - ], - "start_col": 43, - "start_line": 7 - }, - "While expanding the reference 'range_check_ptr' in:" - ], - "start_col": 64, - "start_line": 25 - } - }, - "2676": { - "accessible_scopes": [ - "sheet.library", - "sheet.library.Sheet_cell_renderer", - "sheet.library.Sheet_cell_renderer.write" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 36, - "end_line": 26, - "input_file": { - "filename": "autogen/starknet/storage_var/Sheet_cell_renderer/impl.cairo" - }, - "start_col": 30, - "start_line": 26 - } - }, - "2678": { - "accessible_scopes": [ - "sheet.library", - "sheet.library.Sheet_cell_renderer", - "sheet.library.Sheet_cell_renderer.write" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 34, - "end_line": 25, - "input_file": { - "filename": "autogen/starknet/storage_var/Sheet_cell_renderer/impl.cairo" - }, - "parent_location": [ - { - "end_col": 38, - "end_line": 370, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/starknet/common/syscalls.cairo" - }, - "parent_location": [ - { - "end_col": 80, - "end_line": 27, - "input_file": { - "filename": "autogen/starknet/storage_var/Sheet_cell_renderer/impl.cairo" - }, - "start_col": 9, - "start_line": 27 - }, - "While trying to retrieve the implicit argument 'syscall_ptr' in:" - ], - "start_col": 20, - "start_line": 370 - }, - "While expanding the reference 'syscall_ptr' in:" - ], - "start_col": 16, - "start_line": 25 - } - }, - "2679": { - "accessible_scopes": [ - "sheet.library", - "sheet.library.Sheet_cell_renderer", - "sheet.library.Sheet_cell_renderer.write" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 26, - "end_line": 26, - "input_file": { - "filename": "autogen/starknet/storage_var/Sheet_cell_renderer/impl.cairo" - }, - "parent_location": [ - { - "end_col": 43, - "end_line": 27, - "input_file": { - "filename": "autogen/starknet/storage_var/Sheet_cell_renderer/impl.cairo" - }, - "start_col": 31, - "start_line": 27 - }, - "While expanding the reference 'storage_addr' in:" - ], - "start_col": 14, - "start_line": 26 - } - }, - "2680": { - "accessible_scopes": [ - "sheet.library", - "sheet.library.Sheet_cell_renderer", - "sheet.library.Sheet_cell_renderer.write" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 79, - "end_line": 27, - "input_file": { - "filename": "autogen/starknet/storage_var/Sheet_cell_renderer/impl.cairo" - }, - "start_col": 55, - "start_line": 27 - } - }, - "2681": { - "accessible_scopes": [ - "sheet.library", - "sheet.library.Sheet_cell_renderer", - "sheet.library.Sheet_cell_renderer.write" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 80, - "end_line": 27, - "input_file": { - "filename": "autogen/starknet/storage_var/Sheet_cell_renderer/impl.cairo" - }, - "start_col": 9, - "start_line": 27 - } - }, - "2683": { - "accessible_scopes": [ - "sheet.library", - "sheet.library.Sheet_cell_renderer", - "sheet.library.Sheet_cell_renderer.write" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 41, - "end_line": 7, - "input_file": { - "filename": "autogen/starknet/storage_var/Sheet_cell_renderer/decl.cairo" - }, - "parent_location": [ - { - "end_col": 36, - "end_line": 26, - "input_file": { - "filename": "autogen/starknet/storage_var/Sheet_cell_renderer/impl.cairo" - }, - "parent_location": [ - { - "end_col": 62, - "end_line": 21, - "input_file": { - "filename": "autogen/starknet/storage_var/Sheet_cell_renderer/decl.cairo" - }, - "parent_location": [ - { - "end_col": 19, - "end_line": 28, - "input_file": { - "filename": "autogen/starknet/storage_var/Sheet_cell_renderer/impl.cairo" - }, - "start_col": 9, - "start_line": 28 - }, - "While trying to retrieve the implicit argument 'pedersen_ptr' in:" - ], - "start_col": 36, - "start_line": 21 - }, - "While expanding the reference 'pedersen_ptr' in:" - ], - "start_col": 30, - "start_line": 26 - }, - "While trying to update the implicit return value 'pedersen_ptr' in:" - ], - "start_col": 15, - "start_line": 7 - } - }, - "2684": { - "accessible_scopes": [ - "sheet.library", - "sheet.library.Sheet_cell_renderer", - "sheet.library.Sheet_cell_renderer.write" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 58, - "end_line": 7, - "input_file": { - "filename": "autogen/starknet/storage_var/Sheet_cell_renderer/decl.cairo" - }, - "parent_location": [ - { - "end_col": 36, - "end_line": 26, - "input_file": { - "filename": "autogen/starknet/storage_var/Sheet_cell_renderer/impl.cairo" - }, - "parent_location": [ - { - "end_col": 79, - "end_line": 21, - "input_file": { - "filename": "autogen/starknet/storage_var/Sheet_cell_renderer/decl.cairo" - }, - "parent_location": [ - { - "end_col": 19, - "end_line": 28, - "input_file": { - "filename": "autogen/starknet/storage_var/Sheet_cell_renderer/impl.cairo" - }, - "start_col": 9, - "start_line": 28 - }, - "While trying to retrieve the implicit argument 'range_check_ptr' in:" - ], - "start_col": 64, - "start_line": 21 - }, - "While expanding the reference 'range_check_ptr' in:" - ], - "start_col": 30, - "start_line": 26 - }, - "While trying to update the implicit return value 'range_check_ptr' in:" - ], - "start_col": 43, - "start_line": 7 - } - }, - "2685": { - "accessible_scopes": [ - "sheet.library", - "sheet.library.Sheet_cell_renderer", - "sheet.library.Sheet_cell_renderer.write" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 19, - "end_line": 28, - "input_file": { - "filename": "autogen/starknet/storage_var/Sheet_cell_renderer/impl.cairo" - }, - "start_col": 9, - "start_line": 28 - } - }, - "2686": { - "accessible_scopes": [ - "sheet.library", - "sheet.library.Sheet_merkle_root", - "sheet.library.Sheet_merkle_root.addr" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 41, - "end_line": 7, - "input_file": { - "filename": "autogen/starknet/storage_var/Sheet_merkle_root/impl.cairo" - }, - "parent_location": [ - { - "end_col": 41, - "end_line": 7, - "input_file": { - "filename": "autogen/starknet/storage_var/Sheet_merkle_root/decl.cairo" - }, - "parent_location": [ - { - "end_col": 26, - "end_line": 9, - "input_file": { - "filename": "autogen/starknet/storage_var/Sheet_merkle_root/impl.cairo" - }, - "start_col": 9, - "start_line": 9 - }, - "While trying to retrieve the implicit argument 'pedersen_ptr' in:" - ], - "start_col": 15, - "start_line": 7 - }, - "While expanding the reference 'pedersen_ptr' in:" - ], - "start_col": 15, - "start_line": 7 - } - }, - "2687": { - "accessible_scopes": [ - "sheet.library", - "sheet.library.Sheet_merkle_root", - "sheet.library.Sheet_merkle_root.addr" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 58, - "end_line": 7, - "input_file": { - "filename": "autogen/starknet/storage_var/Sheet_merkle_root/impl.cairo" - }, - "parent_location": [ - { - "end_col": 58, - "end_line": 7, - "input_file": { - "filename": "autogen/starknet/storage_var/Sheet_merkle_root/decl.cairo" - }, - "parent_location": [ - { - "end_col": 26, - "end_line": 9, - "input_file": { - "filename": "autogen/starknet/storage_var/Sheet_merkle_root/impl.cairo" - }, - "start_col": 9, - "start_line": 9 - }, - "While trying to retrieve the implicit argument 'range_check_ptr' in:" - ], - "start_col": 43, - "start_line": 7 - }, - "While expanding the reference 'range_check_ptr' in:" - ], - "start_col": 43, - "start_line": 7 - } - }, - "2688": { - "accessible_scopes": [ - "sheet.library", - "sheet.library.Sheet_merkle_root", - "sheet.library.Sheet_merkle_root.addr" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 94, - "end_line": 8, - "input_file": { - "filename": "autogen/starknet/storage_var/Sheet_merkle_root/impl.cairo" - }, - "parent_location": [ - { - "end_col": 24, - "end_line": 9, - "input_file": { - "filename": "autogen/starknet/storage_var/Sheet_merkle_root/impl.cairo" - }, - "start_col": 21, - "start_line": 9 - }, - "While expanding the reference 'res' in:" - ], - "start_col": 19, - "start_line": 8 - } - }, - "2690": { - "accessible_scopes": [ - "sheet.library", - "sheet.library.Sheet_merkle_root", - "sheet.library.Sheet_merkle_root.addr" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 26, - "end_line": 9, - "input_file": { - "filename": "autogen/starknet/storage_var/Sheet_merkle_root/impl.cairo" - }, - "start_col": 9, - "start_line": 9 - } - }, - "2691": { - "accessible_scopes": [ - "sheet.library", - "sheet.library.Sheet_merkle_root", - "sheet.library.Sheet_merkle_root.read" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 61, - "end_line": 12, - "input_file": { - "filename": "autogen/starknet/storage_var/Sheet_merkle_root/impl.cairo" - }, - "parent_location": [ - { - "end_col": 41, - "end_line": 7, - "input_file": { - "filename": "autogen/starknet/storage_var/Sheet_merkle_root/decl.cairo" - }, - "parent_location": [ - { - "end_col": 36, - "end_line": 13, - "input_file": { - "filename": "autogen/starknet/storage_var/Sheet_merkle_root/impl.cairo" - }, - "start_col": 30, - "start_line": 13 - }, - "While trying to retrieve the implicit argument 'pedersen_ptr' in:" - ], - "start_col": 15, - "start_line": 7 - }, - "While expanding the reference 'pedersen_ptr' in:" - ], - "start_col": 35, - "start_line": 12 - } - }, - "2692": { - "accessible_scopes": [ - "sheet.library", - "sheet.library.Sheet_merkle_root", - "sheet.library.Sheet_merkle_root.read" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 78, - "end_line": 12, - "input_file": { - "filename": "autogen/starknet/storage_var/Sheet_merkle_root/impl.cairo" - }, - "parent_location": [ - { - "end_col": 58, - "end_line": 7, - "input_file": { - "filename": "autogen/starknet/storage_var/Sheet_merkle_root/decl.cairo" - }, - "parent_location": [ - { - "end_col": 36, - "end_line": 13, - "input_file": { - "filename": "autogen/starknet/storage_var/Sheet_merkle_root/impl.cairo" - }, - "start_col": 30, - "start_line": 13 - }, - "While trying to retrieve the implicit argument 'range_check_ptr' in:" - ], - "start_col": 43, - "start_line": 7 - }, - "While expanding the reference 'range_check_ptr' in:" - ], - "start_col": 63, - "start_line": 12 - } - }, - "2693": { - "accessible_scopes": [ - "sheet.library", - "sheet.library.Sheet_merkle_root", - "sheet.library.Sheet_merkle_root.read" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 36, - "end_line": 13, - "input_file": { - "filename": "autogen/starknet/storage_var/Sheet_merkle_root/impl.cairo" - }, - "start_col": 30, - "start_line": 13 - } - }, - "2695": { - "accessible_scopes": [ - "sheet.library", - "sheet.library.Sheet_merkle_root", - "sheet.library.Sheet_merkle_root.read" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 33, - "end_line": 12, - "input_file": { - "filename": "autogen/starknet/storage_var/Sheet_merkle_root/impl.cairo" - }, - "parent_location": [ - { - "end_col": 37, - "end_line": 352, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/starknet/common/syscalls.cairo" - }, - "parent_location": [ - { - "end_col": 75, - "end_line": 14, - "input_file": { - "filename": "autogen/starknet/storage_var/Sheet_merkle_root/impl.cairo" - }, - "start_col": 37, - "start_line": 14 - }, - "While trying to retrieve the implicit argument 'syscall_ptr' in:" - ], - "start_col": 19, - "start_line": 352 - }, - "While expanding the reference 'syscall_ptr' in:" - ], - "start_col": 15, - "start_line": 12 - } - }, - "2696": { - "accessible_scopes": [ - "sheet.library", - "sheet.library.Sheet_merkle_root", - "sheet.library.Sheet_merkle_root.read" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 26, - "end_line": 13, - "input_file": { - "filename": "autogen/starknet/storage_var/Sheet_merkle_root/impl.cairo" - }, - "parent_location": [ - { - "end_col": 70, - "end_line": 14, - "input_file": { - "filename": "autogen/starknet/storage_var/Sheet_merkle_root/impl.cairo" - }, - "start_col": 58, - "start_line": 14 - }, - "While expanding the reference 'storage_addr' in:" - ], - "start_col": 14, - "start_line": 13 - } - }, - "2697": { - "accessible_scopes": [ - "sheet.library", - "sheet.library.Sheet_merkle_root", - "sheet.library.Sheet_merkle_root.read" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 75, - "end_line": 14, - "input_file": { - "filename": "autogen/starknet/storage_var/Sheet_merkle_root/impl.cairo" - }, - "start_col": 37, - "start_line": 14 - } - }, - "2699": { - "accessible_scopes": [ - "sheet.library", - "sheet.library.Sheet_merkle_root", - "sheet.library.Sheet_merkle_root.read" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 37, - "end_line": 352, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/starknet/common/syscalls.cairo" - }, - "parent_location": [ - { - "end_col": 75, - "end_line": 14, - "input_file": { - "filename": "autogen/starknet/storage_var/Sheet_merkle_root/impl.cairo" - }, - "parent_location": [ - { - "end_col": 42, - "end_line": 16, - "input_file": { - "filename": "autogen/starknet/storage_var/Sheet_merkle_root/impl.cairo" - }, - "start_col": 31, - "start_line": 16 - }, - "While expanding the reference 'syscall_ptr' in:" - ], - "start_col": 37, - "start_line": 14 - }, - "While trying to update the implicit return value 'syscall_ptr' in:" - ], - "start_col": 19, - "start_line": 352 - } - }, - "2700": { - "accessible_scopes": [ - "sheet.library", - "sheet.library.Sheet_merkle_root", - "sheet.library.Sheet_merkle_root.read" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 41, - "end_line": 7, - "input_file": { - "filename": "autogen/starknet/storage_var/Sheet_merkle_root/decl.cairo" - }, - "parent_location": [ - { - "end_col": 36, - "end_line": 13, - "input_file": { - "filename": "autogen/starknet/storage_var/Sheet_merkle_root/impl.cairo" - }, - "parent_location": [ - { - "end_col": 44, - "end_line": 17, - "input_file": { - "filename": "autogen/starknet/storage_var/Sheet_merkle_root/impl.cairo" - }, - "start_col": 32, - "start_line": 17 - }, - "While expanding the reference 'pedersen_ptr' in:" - ], - "start_col": 30, - "start_line": 13 - }, - "While trying to update the implicit return value 'pedersen_ptr' in:" - ], - "start_col": 15, - "start_line": 7 - } - }, - "2701": { - "accessible_scopes": [ - "sheet.library", - "sheet.library.Sheet_merkle_root", - "sheet.library.Sheet_merkle_root.read" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 58, - "end_line": 7, - "input_file": { - "filename": "autogen/starknet/storage_var/Sheet_merkle_root/decl.cairo" - }, - "parent_location": [ - { - "end_col": 36, - "end_line": 13, - "input_file": { - "filename": "autogen/starknet/storage_var/Sheet_merkle_root/impl.cairo" - }, - "parent_location": [ - { - "end_col": 50, - "end_line": 18, - "input_file": { - "filename": "autogen/starknet/storage_var/Sheet_merkle_root/impl.cairo" - }, - "start_col": 35, - "start_line": 18 - }, - "While expanding the reference 'range_check_ptr' in:" - ], - "start_col": 30, - "start_line": 13 - }, - "While trying to update the implicit return value 'range_check_ptr' in:" - ], - "start_col": 43, - "start_line": 7 - } - }, - "2702": { - "accessible_scopes": [ - "sheet.library", - "sheet.library.Sheet_merkle_root", - "sheet.library.Sheet_merkle_root.read" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 33, - "end_line": 14, - "input_file": { - "filename": "autogen/starknet/storage_var/Sheet_merkle_root/impl.cairo" - }, - "parent_location": [ - { - "end_col": 64, - "end_line": 19, - "input_file": { - "filename": "autogen/starknet/storage_var/Sheet_merkle_root/impl.cairo" - }, - "start_col": 45, - "start_line": 19 - }, - "While expanding the reference '__storage_var_temp0' in:" - ], - "start_col": 14, - "start_line": 14 - } - }, - "2703": { - "accessible_scopes": [ - "sheet.library", - "sheet.library.Sheet_merkle_root", - "sheet.library.Sheet_merkle_root.read" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 55, - "end_line": 20, - "input_file": { - "filename": "autogen/starknet/storage_var/Sheet_merkle_root/impl.cairo" - }, - "start_col": 9, - "start_line": 20 - } - }, - "2704": { - "accessible_scopes": [ - "sheet.library", - "sheet.library.Sheet_merkle_root", - "sheet.library.Sheet_merkle_root.write" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 62, - "end_line": 23, - "input_file": { - "filename": "autogen/starknet/storage_var/Sheet_merkle_root/impl.cairo" - }, - "parent_location": [ - { - "end_col": 41, - "end_line": 7, - "input_file": { - "filename": "autogen/starknet/storage_var/Sheet_merkle_root/decl.cairo" - }, - "parent_location": [ - { - "end_col": 36, - "end_line": 24, - "input_file": { - "filename": "autogen/starknet/storage_var/Sheet_merkle_root/impl.cairo" - }, - "start_col": 30, - "start_line": 24 - }, - "While trying to retrieve the implicit argument 'pedersen_ptr' in:" - ], - "start_col": 15, - "start_line": 7 - }, - "While expanding the reference 'pedersen_ptr' in:" - ], - "start_col": 36, - "start_line": 23 - } - }, - "2705": { - "accessible_scopes": [ - "sheet.library", - "sheet.library.Sheet_merkle_root", - "sheet.library.Sheet_merkle_root.write" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 79, - "end_line": 23, - "input_file": { - "filename": "autogen/starknet/storage_var/Sheet_merkle_root/impl.cairo" - }, - "parent_location": [ - { - "end_col": 58, - "end_line": 7, - "input_file": { - "filename": "autogen/starknet/storage_var/Sheet_merkle_root/decl.cairo" - }, - "parent_location": [ - { - "end_col": 36, - "end_line": 24, - "input_file": { - "filename": "autogen/starknet/storage_var/Sheet_merkle_root/impl.cairo" - }, - "start_col": 30, - "start_line": 24 - }, - "While trying to retrieve the implicit argument 'range_check_ptr' in:" - ], - "start_col": 43, - "start_line": 7 - }, - "While expanding the reference 'range_check_ptr' in:" - ], - "start_col": 64, - "start_line": 23 - } - }, - "2706": { - "accessible_scopes": [ - "sheet.library", - "sheet.library.Sheet_merkle_root", - "sheet.library.Sheet_merkle_root.write" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 36, - "end_line": 24, - "input_file": { - "filename": "autogen/starknet/storage_var/Sheet_merkle_root/impl.cairo" - }, - "start_col": 30, - "start_line": 24 - } - }, - "2708": { - "accessible_scopes": [ - "sheet.library", - "sheet.library.Sheet_merkle_root", - "sheet.library.Sheet_merkle_root.write" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 34, - "end_line": 23, - "input_file": { - "filename": "autogen/starknet/storage_var/Sheet_merkle_root/impl.cairo" - }, - "parent_location": [ - { - "end_col": 38, - "end_line": 370, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/starknet/common/syscalls.cairo" - }, - "parent_location": [ - { - "end_col": 80, - "end_line": 25, - "input_file": { - "filename": "autogen/starknet/storage_var/Sheet_merkle_root/impl.cairo" - }, - "start_col": 9, - "start_line": 25 - }, - "While trying to retrieve the implicit argument 'syscall_ptr' in:" - ], - "start_col": 20, - "start_line": 370 - }, - "While expanding the reference 'syscall_ptr' in:" - ], - "start_col": 16, - "start_line": 23 - } - }, - "2709": { - "accessible_scopes": [ - "sheet.library", - "sheet.library.Sheet_merkle_root", - "sheet.library.Sheet_merkle_root.write" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 26, - "end_line": 24, - "input_file": { - "filename": "autogen/starknet/storage_var/Sheet_merkle_root/impl.cairo" - }, - "parent_location": [ - { - "end_col": 43, - "end_line": 25, - "input_file": { - "filename": "autogen/starknet/storage_var/Sheet_merkle_root/impl.cairo" - }, - "start_col": 31, - "start_line": 25 - }, - "While expanding the reference 'storage_addr' in:" - ], - "start_col": 14, - "start_line": 24 - } - }, - "2710": { - "accessible_scopes": [ - "sheet.library", - "sheet.library.Sheet_merkle_root", - "sheet.library.Sheet_merkle_root.write" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 79, - "end_line": 25, - "input_file": { - "filename": "autogen/starknet/storage_var/Sheet_merkle_root/impl.cairo" - }, - "start_col": 55, - "start_line": 25 - } - }, - "2711": { - "accessible_scopes": [ - "sheet.library", - "sheet.library.Sheet_merkle_root", - "sheet.library.Sheet_merkle_root.write" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 80, - "end_line": 25, - "input_file": { - "filename": "autogen/starknet/storage_var/Sheet_merkle_root/impl.cairo" - }, - "start_col": 9, - "start_line": 25 - } - }, - "2713": { - "accessible_scopes": [ - "sheet.library", - "sheet.library.Sheet_merkle_root", - "sheet.library.Sheet_merkle_root.write" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 41, - "end_line": 7, - "input_file": { - "filename": "autogen/starknet/storage_var/Sheet_merkle_root/decl.cairo" - }, - "parent_location": [ - { - "end_col": 36, - "end_line": 24, - "input_file": { - "filename": "autogen/starknet/storage_var/Sheet_merkle_root/impl.cairo" - }, - "parent_location": [ - { - "end_col": 62, - "end_line": 19, - "input_file": { - "filename": "autogen/starknet/storage_var/Sheet_merkle_root/decl.cairo" - }, - "parent_location": [ - { - "end_col": 19, - "end_line": 26, - "input_file": { - "filename": "autogen/starknet/storage_var/Sheet_merkle_root/impl.cairo" - }, - "start_col": 9, - "start_line": 26 - }, - "While trying to retrieve the implicit argument 'pedersen_ptr' in:" - ], - "start_col": 36, - "start_line": 19 - }, - "While expanding the reference 'pedersen_ptr' in:" - ], - "start_col": 30, - "start_line": 24 - }, - "While trying to update the implicit return value 'pedersen_ptr' in:" - ], - "start_col": 15, - "start_line": 7 - } - }, - "2714": { - "accessible_scopes": [ - "sheet.library", - "sheet.library.Sheet_merkle_root", - "sheet.library.Sheet_merkle_root.write" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 58, - "end_line": 7, - "input_file": { - "filename": "autogen/starknet/storage_var/Sheet_merkle_root/decl.cairo" - }, - "parent_location": [ - { - "end_col": 36, - "end_line": 24, - "input_file": { - "filename": "autogen/starknet/storage_var/Sheet_merkle_root/impl.cairo" - }, - "parent_location": [ - { - "end_col": 79, - "end_line": 19, - "input_file": { - "filename": "autogen/starknet/storage_var/Sheet_merkle_root/decl.cairo" - }, - "parent_location": [ - { - "end_col": 19, - "end_line": 26, - "input_file": { - "filename": "autogen/starknet/storage_var/Sheet_merkle_root/impl.cairo" - }, - "start_col": 9, - "start_line": 26 - }, - "While trying to retrieve the implicit argument 'range_check_ptr' in:" - ], - "start_col": 64, - "start_line": 19 - }, - "While expanding the reference 'range_check_ptr' in:" - ], - "start_col": 30, - "start_line": 24 - }, - "While trying to update the implicit return value 'range_check_ptr' in:" - ], - "start_col": 43, - "start_line": 7 - } - }, - "2715": { - "accessible_scopes": [ - "sheet.library", - "sheet.library.Sheet_merkle_root", - "sheet.library.Sheet_merkle_root.write" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 19, - "end_line": 26, - "input_file": { - "filename": "autogen/starknet/storage_var/Sheet_merkle_root/impl.cairo" - }, - "start_col": 9, - "start_line": 26 - } - }, - "2716": { - "accessible_scopes": [ - "sheet.library", - "sheet.library.Sheet_max_per_wallet", - "sheet.library.Sheet_max_per_wallet.addr" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 41, - "end_line": 7, - "input_file": { - "filename": "autogen/starknet/storage_var/Sheet_max_per_wallet/impl.cairo" - }, - "parent_location": [ - { - "end_col": 41, - "end_line": 7, - "input_file": { - "filename": "autogen/starknet/storage_var/Sheet_max_per_wallet/decl.cairo" - }, - "parent_location": [ - { - "end_col": 26, - "end_line": 9, - "input_file": { - "filename": "autogen/starknet/storage_var/Sheet_max_per_wallet/impl.cairo" - }, - "start_col": 9, - "start_line": 9 - }, - "While trying to retrieve the implicit argument 'pedersen_ptr' in:" - ], - "start_col": 15, - "start_line": 7 - }, - "While expanding the reference 'pedersen_ptr' in:" - ], - "start_col": 15, - "start_line": 7 - } - }, - "2717": { - "accessible_scopes": [ - "sheet.library", - "sheet.library.Sheet_max_per_wallet", - "sheet.library.Sheet_max_per_wallet.addr" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 58, - "end_line": 7, - "input_file": { - "filename": "autogen/starknet/storage_var/Sheet_max_per_wallet/impl.cairo" - }, - "parent_location": [ - { - "end_col": 58, - "end_line": 7, - "input_file": { - "filename": "autogen/starknet/storage_var/Sheet_max_per_wallet/decl.cairo" - }, - "parent_location": [ - { - "end_col": 26, - "end_line": 9, - "input_file": { - "filename": "autogen/starknet/storage_var/Sheet_max_per_wallet/impl.cairo" - }, - "start_col": 9, - "start_line": 9 - }, - "While trying to retrieve the implicit argument 'range_check_ptr' in:" - ], - "start_col": 43, - "start_line": 7 - }, - "While expanding the reference 'range_check_ptr' in:" - ], - "start_col": 43, - "start_line": 7 - } - }, - "2718": { - "accessible_scopes": [ - "sheet.library", - "sheet.library.Sheet_max_per_wallet", - "sheet.library.Sheet_max_per_wallet.addr" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 95, - "end_line": 8, - "input_file": { - "filename": "autogen/starknet/storage_var/Sheet_max_per_wallet/impl.cairo" - }, - "parent_location": [ - { - "end_col": 24, - "end_line": 9, - "input_file": { - "filename": "autogen/starknet/storage_var/Sheet_max_per_wallet/impl.cairo" - }, - "start_col": 21, - "start_line": 9 - }, - "While expanding the reference 'res' in:" - ], - "start_col": 19, - "start_line": 8 - } - }, - "2720": { - "accessible_scopes": [ - "sheet.library", - "sheet.library.Sheet_max_per_wallet", - "sheet.library.Sheet_max_per_wallet.addr" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 26, - "end_line": 9, - "input_file": { - "filename": "autogen/starknet/storage_var/Sheet_max_per_wallet/impl.cairo" - }, - "start_col": 9, - "start_line": 9 - } - }, - "2721": { - "accessible_scopes": [ - "sheet.library", - "sheet.library.Sheet_max_per_wallet", - "sheet.library.Sheet_max_per_wallet.read" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 61, - "end_line": 12, - "input_file": { - "filename": "autogen/starknet/storage_var/Sheet_max_per_wallet/impl.cairo" - }, - "parent_location": [ - { - "end_col": 41, - "end_line": 7, - "input_file": { - "filename": "autogen/starknet/storage_var/Sheet_max_per_wallet/decl.cairo" - }, - "parent_location": [ - { - "end_col": 36, - "end_line": 13, - "input_file": { - "filename": "autogen/starknet/storage_var/Sheet_max_per_wallet/impl.cairo" - }, - "start_col": 30, - "start_line": 13 - }, - "While trying to retrieve the implicit argument 'pedersen_ptr' in:" - ], - "start_col": 15, - "start_line": 7 - }, - "While expanding the reference 'pedersen_ptr' in:" - ], - "start_col": 35, - "start_line": 12 - } - }, - "2722": { - "accessible_scopes": [ - "sheet.library", - "sheet.library.Sheet_max_per_wallet", - "sheet.library.Sheet_max_per_wallet.read" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 78, - "end_line": 12, - "input_file": { - "filename": "autogen/starknet/storage_var/Sheet_max_per_wallet/impl.cairo" - }, - "parent_location": [ - { - "end_col": 58, - "end_line": 7, - "input_file": { - "filename": "autogen/starknet/storage_var/Sheet_max_per_wallet/decl.cairo" - }, - "parent_location": [ - { - "end_col": 36, - "end_line": 13, - "input_file": { - "filename": "autogen/starknet/storage_var/Sheet_max_per_wallet/impl.cairo" - }, - "start_col": 30, - "start_line": 13 - }, - "While trying to retrieve the implicit argument 'range_check_ptr' in:" - ], - "start_col": 43, - "start_line": 7 - }, - "While expanding the reference 'range_check_ptr' in:" - ], - "start_col": 63, - "start_line": 12 - } - }, - "2723": { - "accessible_scopes": [ - "sheet.library", - "sheet.library.Sheet_max_per_wallet", - "sheet.library.Sheet_max_per_wallet.read" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 36, - "end_line": 13, - "input_file": { - "filename": "autogen/starknet/storage_var/Sheet_max_per_wallet/impl.cairo" - }, - "start_col": 30, - "start_line": 13 - } - }, - "2725": { - "accessible_scopes": [ - "sheet.library", - "sheet.library.Sheet_max_per_wallet", - "sheet.library.Sheet_max_per_wallet.read" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 33, - "end_line": 12, - "input_file": { - "filename": "autogen/starknet/storage_var/Sheet_max_per_wallet/impl.cairo" - }, - "parent_location": [ - { - "end_col": 37, - "end_line": 352, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/starknet/common/syscalls.cairo" - }, - "parent_location": [ - { - "end_col": 75, - "end_line": 14, - "input_file": { - "filename": "autogen/starknet/storage_var/Sheet_max_per_wallet/impl.cairo" - }, - "start_col": 37, - "start_line": 14 - }, - "While trying to retrieve the implicit argument 'syscall_ptr' in:" - ], - "start_col": 19, - "start_line": 352 - }, - "While expanding the reference 'syscall_ptr' in:" - ], - "start_col": 15, - "start_line": 12 - } - }, - "2726": { - "accessible_scopes": [ - "sheet.library", - "sheet.library.Sheet_max_per_wallet", - "sheet.library.Sheet_max_per_wallet.read" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 26, - "end_line": 13, - "input_file": { - "filename": "autogen/starknet/storage_var/Sheet_max_per_wallet/impl.cairo" - }, - "parent_location": [ - { - "end_col": 70, - "end_line": 14, - "input_file": { - "filename": "autogen/starknet/storage_var/Sheet_max_per_wallet/impl.cairo" - }, - "start_col": 58, - "start_line": 14 - }, - "While expanding the reference 'storage_addr' in:" - ], - "start_col": 14, - "start_line": 13 - } - }, - "2727": { - "accessible_scopes": [ - "sheet.library", - "sheet.library.Sheet_max_per_wallet", - "sheet.library.Sheet_max_per_wallet.read" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 75, - "end_line": 14, - "input_file": { - "filename": "autogen/starknet/storage_var/Sheet_max_per_wallet/impl.cairo" - }, - "start_col": 37, - "start_line": 14 - } - }, - "2729": { - "accessible_scopes": [ - "sheet.library", - "sheet.library.Sheet_max_per_wallet", - "sheet.library.Sheet_max_per_wallet.read" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 37, - "end_line": 352, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/starknet/common/syscalls.cairo" - }, - "parent_location": [ - { - "end_col": 75, - "end_line": 14, - "input_file": { - "filename": "autogen/starknet/storage_var/Sheet_max_per_wallet/impl.cairo" - }, - "parent_location": [ - { - "end_col": 42, - "end_line": 16, - "input_file": { - "filename": "autogen/starknet/storage_var/Sheet_max_per_wallet/impl.cairo" - }, - "start_col": 31, - "start_line": 16 - }, - "While expanding the reference 'syscall_ptr' in:" - ], - "start_col": 37, - "start_line": 14 - }, - "While trying to update the implicit return value 'syscall_ptr' in:" - ], - "start_col": 19, - "start_line": 352 - } - }, - "2730": { - "accessible_scopes": [ - "sheet.library", - "sheet.library.Sheet_max_per_wallet", - "sheet.library.Sheet_max_per_wallet.read" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 41, - "end_line": 7, - "input_file": { - "filename": "autogen/starknet/storage_var/Sheet_max_per_wallet/decl.cairo" - }, - "parent_location": [ - { - "end_col": 36, - "end_line": 13, - "input_file": { - "filename": "autogen/starknet/storage_var/Sheet_max_per_wallet/impl.cairo" - }, - "parent_location": [ - { - "end_col": 44, - "end_line": 17, - "input_file": { - "filename": "autogen/starknet/storage_var/Sheet_max_per_wallet/impl.cairo" - }, - "start_col": 32, - "start_line": 17 - }, - "While expanding the reference 'pedersen_ptr' in:" - ], - "start_col": 30, - "start_line": 13 - }, - "While trying to update the implicit return value 'pedersen_ptr' in:" - ], - "start_col": 15, - "start_line": 7 - } - }, - "2731": { - "accessible_scopes": [ - "sheet.library", - "sheet.library.Sheet_max_per_wallet", - "sheet.library.Sheet_max_per_wallet.read" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 58, - "end_line": 7, - "input_file": { - "filename": "autogen/starknet/storage_var/Sheet_max_per_wallet/decl.cairo" - }, - "parent_location": [ - { - "end_col": 36, - "end_line": 13, - "input_file": { - "filename": "autogen/starknet/storage_var/Sheet_max_per_wallet/impl.cairo" - }, - "parent_location": [ - { - "end_col": 50, - "end_line": 18, - "input_file": { - "filename": "autogen/starknet/storage_var/Sheet_max_per_wallet/impl.cairo" - }, - "start_col": 35, - "start_line": 18 - }, - "While expanding the reference 'range_check_ptr' in:" - ], - "start_col": 30, - "start_line": 13 - }, - "While trying to update the implicit return value 'range_check_ptr' in:" - ], - "start_col": 43, - "start_line": 7 - } - }, - "2732": { - "accessible_scopes": [ - "sheet.library", - "sheet.library.Sheet_max_per_wallet", - "sheet.library.Sheet_max_per_wallet.read" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 33, - "end_line": 14, - "input_file": { - "filename": "autogen/starknet/storage_var/Sheet_max_per_wallet/impl.cairo" - }, - "parent_location": [ - { - "end_col": 64, - "end_line": 19, - "input_file": { - "filename": "autogen/starknet/storage_var/Sheet_max_per_wallet/impl.cairo" - }, - "start_col": 45, - "start_line": 19 - }, - "While expanding the reference '__storage_var_temp0' in:" - ], - "start_col": 14, - "start_line": 14 - } - }, - "2733": { - "accessible_scopes": [ - "sheet.library", - "sheet.library.Sheet_max_per_wallet", - "sheet.library.Sheet_max_per_wallet.read" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 55, - "end_line": 20, - "input_file": { - "filename": "autogen/starknet/storage_var/Sheet_max_per_wallet/impl.cairo" - }, - "start_col": 9, - "start_line": 20 - } - }, - "2734": { - "accessible_scopes": [ - "sheet.library", - "sheet.library.Sheet_max_per_wallet", - "sheet.library.Sheet_max_per_wallet.write" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 62, - "end_line": 23, - "input_file": { - "filename": "autogen/starknet/storage_var/Sheet_max_per_wallet/impl.cairo" - }, - "parent_location": [ - { - "end_col": 41, - "end_line": 7, - "input_file": { - "filename": "autogen/starknet/storage_var/Sheet_max_per_wallet/decl.cairo" - }, - "parent_location": [ - { - "end_col": 36, - "end_line": 24, - "input_file": { - "filename": "autogen/starknet/storage_var/Sheet_max_per_wallet/impl.cairo" - }, - "start_col": 30, - "start_line": 24 - }, - "While trying to retrieve the implicit argument 'pedersen_ptr' in:" - ], - "start_col": 15, - "start_line": 7 - }, - "While expanding the reference 'pedersen_ptr' in:" - ], - "start_col": 36, - "start_line": 23 - } - }, - "2735": { - "accessible_scopes": [ - "sheet.library", - "sheet.library.Sheet_max_per_wallet", - "sheet.library.Sheet_max_per_wallet.write" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 79, - "end_line": 23, - "input_file": { - "filename": "autogen/starknet/storage_var/Sheet_max_per_wallet/impl.cairo" - }, - "parent_location": [ - { - "end_col": 58, - "end_line": 7, - "input_file": { - "filename": "autogen/starknet/storage_var/Sheet_max_per_wallet/decl.cairo" - }, - "parent_location": [ - { - "end_col": 36, - "end_line": 24, - "input_file": { - "filename": "autogen/starknet/storage_var/Sheet_max_per_wallet/impl.cairo" - }, - "start_col": 30, - "start_line": 24 - }, - "While trying to retrieve the implicit argument 'range_check_ptr' in:" - ], - "start_col": 43, - "start_line": 7 - }, - "While expanding the reference 'range_check_ptr' in:" - ], - "start_col": 64, - "start_line": 23 - } - }, - "2736": { - "accessible_scopes": [ - "sheet.library", - "sheet.library.Sheet_max_per_wallet", - "sheet.library.Sheet_max_per_wallet.write" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 36, - "end_line": 24, - "input_file": { - "filename": "autogen/starknet/storage_var/Sheet_max_per_wallet/impl.cairo" - }, - "start_col": 30, - "start_line": 24 - } - }, - "2738": { - "accessible_scopes": [ - "sheet.library", - "sheet.library.Sheet_max_per_wallet", - "sheet.library.Sheet_max_per_wallet.write" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 34, - "end_line": 23, - "input_file": { - "filename": "autogen/starknet/storage_var/Sheet_max_per_wallet/impl.cairo" - }, - "parent_location": [ - { - "end_col": 38, - "end_line": 370, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/starknet/common/syscalls.cairo" - }, - "parent_location": [ - { - "end_col": 80, - "end_line": 25, - "input_file": { - "filename": "autogen/starknet/storage_var/Sheet_max_per_wallet/impl.cairo" - }, - "start_col": 9, - "start_line": 25 - }, - "While trying to retrieve the implicit argument 'syscall_ptr' in:" - ], - "start_col": 20, - "start_line": 370 - }, - "While expanding the reference 'syscall_ptr' in:" - ], - "start_col": 16, - "start_line": 23 - } - }, - "2739": { - "accessible_scopes": [ - "sheet.library", - "sheet.library.Sheet_max_per_wallet", - "sheet.library.Sheet_max_per_wallet.write" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 26, - "end_line": 24, - "input_file": { - "filename": "autogen/starknet/storage_var/Sheet_max_per_wallet/impl.cairo" - }, - "parent_location": [ - { - "end_col": 43, - "end_line": 25, - "input_file": { - "filename": "autogen/starknet/storage_var/Sheet_max_per_wallet/impl.cairo" - }, - "start_col": 31, - "start_line": 25 - }, - "While expanding the reference 'storage_addr' in:" - ], - "start_col": 14, - "start_line": 24 - } - }, - "2740": { - "accessible_scopes": [ - "sheet.library", - "sheet.library.Sheet_max_per_wallet", - "sheet.library.Sheet_max_per_wallet.write" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 79, - "end_line": 25, - "input_file": { - "filename": "autogen/starknet/storage_var/Sheet_max_per_wallet/impl.cairo" - }, - "start_col": 55, - "start_line": 25 - } - }, - "2741": { - "accessible_scopes": [ - "sheet.library", - "sheet.library.Sheet_max_per_wallet", - "sheet.library.Sheet_max_per_wallet.write" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 80, - "end_line": 25, - "input_file": { - "filename": "autogen/starknet/storage_var/Sheet_max_per_wallet/impl.cairo" - }, - "start_col": 9, - "start_line": 25 - } - }, - "2743": { - "accessible_scopes": [ - "sheet.library", - "sheet.library.Sheet_max_per_wallet", - "sheet.library.Sheet_max_per_wallet.write" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 41, - "end_line": 7, - "input_file": { - "filename": "autogen/starknet/storage_var/Sheet_max_per_wallet/decl.cairo" - }, - "parent_location": [ - { - "end_col": 36, - "end_line": 24, - "input_file": { - "filename": "autogen/starknet/storage_var/Sheet_max_per_wallet/impl.cairo" - }, - "parent_location": [ - { - "end_col": 62, - "end_line": 19, - "input_file": { - "filename": "autogen/starknet/storage_var/Sheet_max_per_wallet/decl.cairo" - }, - "parent_location": [ - { - "end_col": 19, - "end_line": 26, - "input_file": { - "filename": "autogen/starknet/storage_var/Sheet_max_per_wallet/impl.cairo" - }, - "start_col": 9, - "start_line": 26 - }, - "While trying to retrieve the implicit argument 'pedersen_ptr' in:" - ], - "start_col": 36, - "start_line": 19 - }, - "While expanding the reference 'pedersen_ptr' in:" - ], - "start_col": 30, - "start_line": 24 - }, - "While trying to update the implicit return value 'pedersen_ptr' in:" - ], - "start_col": 15, - "start_line": 7 - } - }, - "2744": { - "accessible_scopes": [ - "sheet.library", - "sheet.library.Sheet_max_per_wallet", - "sheet.library.Sheet_max_per_wallet.write" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 58, - "end_line": 7, - "input_file": { - "filename": "autogen/starknet/storage_var/Sheet_max_per_wallet/decl.cairo" - }, - "parent_location": [ - { - "end_col": 36, - "end_line": 24, - "input_file": { - "filename": "autogen/starknet/storage_var/Sheet_max_per_wallet/impl.cairo" - }, - "parent_location": [ - { - "end_col": 79, - "end_line": 19, - "input_file": { - "filename": "autogen/starknet/storage_var/Sheet_max_per_wallet/decl.cairo" - }, - "parent_location": [ - { - "end_col": 19, - "end_line": 26, - "input_file": { - "filename": "autogen/starknet/storage_var/Sheet_max_per_wallet/impl.cairo" - }, - "start_col": 9, - "start_line": 26 - }, - "While trying to retrieve the implicit argument 'range_check_ptr' in:" - ], - "start_col": 64, - "start_line": 19 - }, - "While expanding the reference 'range_check_ptr' in:" - ], - "start_col": 30, - "start_line": 24 - }, - "While trying to update the implicit return value 'range_check_ptr' in:" - ], - "start_col": 43, - "start_line": 7 - } - }, - "2745": { - "accessible_scopes": [ - "sheet.library", - "sheet.library.Sheet_max_per_wallet", - "sheet.library.Sheet_max_per_wallet.write" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 19, - "end_line": 26, - "input_file": { - "filename": "autogen/starknet/storage_var/Sheet_max_per_wallet/impl.cairo" - }, - "start_col": 9, - "start_line": 26 - } - }, - "2746": { - "accessible_scopes": [ - "sheet.library", - "sheet.library.Sheet_cell", - "sheet.library.Sheet_cell.addr" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 41, - "end_line": 7, - "input_file": { - "filename": "autogen/starknet/storage_var/Sheet_cell/impl.cairo" - }, - "parent_location": [ - { - "end_col": 48, - "end_line": 9, - "input_file": { - "filename": "autogen/starknet/storage_var/Sheet_cell/impl.cairo" - }, - "start_col": 36, - "start_line": 9 - }, - "While expanding the reference 'pedersen_ptr' in:" - ], - "start_col": 15, - "start_line": 7 - } - }, - "2747": { - "accessible_scopes": [ - "sheet.library", - "sheet.library.Sheet_cell", - "sheet.library.Sheet_cell.addr" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 94, - "end_line": 8, - "input_file": { - "filename": "autogen/starknet/storage_var/Sheet_cell/impl.cairo" - }, - "parent_location": [ - { - "end_col": 53, - "end_line": 9, - "input_file": { - "filename": "autogen/starknet/storage_var/Sheet_cell/impl.cairo" - }, - "start_col": 50, - "start_line": 9 - }, - "While expanding the reference 'res' in:" - ], - "start_col": 19, - "start_line": 8 - } - }, - "2749": { - "accessible_scopes": [ - "sheet.library", - "sheet.library.Sheet_cell", - "sheet.library.Sheet_cell.addr" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 74, - "end_line": 9, - "input_file": { - "filename": "autogen/starknet/storage_var/Sheet_cell/impl.cairo" - }, - "start_col": 55, - "start_line": 9 - } - }, - "2750": { - "accessible_scopes": [ - "sheet.library", - "sheet.library.Sheet_cell", - "sheet.library.Sheet_cell.addr" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 75, - "end_line": 9, - "input_file": { - "filename": "autogen/starknet/storage_var/Sheet_cell/impl.cairo" - }, - "start_col": 21, - "start_line": 9 - } - }, - "2752": { - "accessible_scopes": [ - "sheet.library", - "sheet.library.Sheet_cell", - "sheet.library.Sheet_cell.addr" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 58, - "end_line": 7, - "input_file": { - "filename": "autogen/starknet/storage_var/Sheet_cell/impl.cairo" - }, - "parent_location": [ - { - "end_col": 39, - "end_line": 12, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/starknet/common/storage.cairo" - }, - "parent_location": [ - { - "end_col": 48, - "end_line": 10, - "input_file": { - "filename": "autogen/starknet/storage_var/Sheet_cell/impl.cairo" - }, - "start_col": 21, - "start_line": 10 - }, - "While trying to retrieve the implicit argument 'range_check_ptr' in:" - ], - "start_col": 24, - "start_line": 12 - }, - "While expanding the reference 'range_check_ptr' in:" - ], - "start_col": 43, - "start_line": 7 - } - }, - "2753": { - "accessible_scopes": [ - "sheet.library", - "sheet.library.Sheet_cell", - "sheet.library.Sheet_cell.addr" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 17, - "end_line": 9, - "input_file": { - "filename": "autogen/starknet/storage_var/Sheet_cell/impl.cairo" - }, - "parent_location": [ - { - "end_col": 47, - "end_line": 10, - "input_file": { - "filename": "autogen/starknet/storage_var/Sheet_cell/impl.cairo" - }, - "start_col": 44, - "start_line": 10 - }, - "While expanding the reference 'res' in:" - ], - "start_col": 14, - "start_line": 9 - } - }, - "2754": { - "accessible_scopes": [ - "sheet.library", - "sheet.library.Sheet_cell", - "sheet.library.Sheet_cell.addr" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 48, - "end_line": 10, - "input_file": { - "filename": "autogen/starknet/storage_var/Sheet_cell/impl.cairo" - }, - "start_col": 21, - "start_line": 10 - } - }, - "2756": { - "accessible_scopes": [ - "sheet.library", - "sheet.library.Sheet_cell", - "sheet.library.Sheet_cell.addr" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 48, - "end_line": 9, - "input_file": { - "filename": "autogen/starknet/storage_var/Sheet_cell/impl.cairo" - }, - "parent_location": [ - { - "end_col": 41, - "end_line": 7, - "input_file": { - "filename": "autogen/starknet/storage_var/Sheet_cell/decl.cairo" - }, - "parent_location": [ - { - "end_col": 26, - "end_line": 11, - "input_file": { - "filename": "autogen/starknet/storage_var/Sheet_cell/impl.cairo" - }, - "start_col": 9, - "start_line": 11 - }, - "While trying to retrieve the implicit argument 'pedersen_ptr' in:" - ], - "start_col": 15, - "start_line": 7 - }, - "While expanding the reference 'pedersen_ptr' in:" - ], - "start_col": 36, - "start_line": 9 - } - }, - "2757": { - "accessible_scopes": [ - "sheet.library", - "sheet.library.Sheet_cell", - "sheet.library.Sheet_cell.addr" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 39, - "end_line": 12, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/starknet/common/storage.cairo" - }, - "parent_location": [ - { - "end_col": 48, - "end_line": 10, - "input_file": { - "filename": "autogen/starknet/storage_var/Sheet_cell/impl.cairo" - }, - "parent_location": [ - { - "end_col": 58, - "end_line": 7, - "input_file": { - "filename": "autogen/starknet/storage_var/Sheet_cell/decl.cairo" - }, - "parent_location": [ - { - "end_col": 26, - "end_line": 11, - "input_file": { - "filename": "autogen/starknet/storage_var/Sheet_cell/impl.cairo" - }, - "start_col": 9, - "start_line": 11 - }, - "While trying to retrieve the implicit argument 'range_check_ptr' in:" - ], - "start_col": 43, - "start_line": 7 - }, - "While expanding the reference 'range_check_ptr' in:" - ], - "start_col": 21, - "start_line": 10 - }, - "While trying to update the implicit return value 'range_check_ptr' in:" - ], - "start_col": 24, - "start_line": 12 - } - }, - "2758": { - "accessible_scopes": [ - "sheet.library", - "sheet.library.Sheet_cell", - "sheet.library.Sheet_cell.addr" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 17, - "end_line": 10, - "input_file": { - "filename": "autogen/starknet/storage_var/Sheet_cell/impl.cairo" - }, - "parent_location": [ - { - "end_col": 24, - "end_line": 11, - "input_file": { - "filename": "autogen/starknet/storage_var/Sheet_cell/impl.cairo" - }, - "start_col": 21, - "start_line": 11 - }, - "While expanding the reference 'res' in:" - ], - "start_col": 14, - "start_line": 10 - } - }, - "2759": { - "accessible_scopes": [ - "sheet.library", - "sheet.library.Sheet_cell", - "sheet.library.Sheet_cell.addr" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 26, - "end_line": 11, - "input_file": { - "filename": "autogen/starknet/storage_var/Sheet_cell/impl.cairo" - }, - "start_col": 9, - "start_line": 11 - } - }, - "2760": { - "accessible_scopes": [ - "sheet.library", - "sheet.library.Sheet_cell", - "sheet.library.Sheet_cell.read" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 61, - "end_line": 14, - "input_file": { - "filename": "autogen/starknet/storage_var/Sheet_cell/impl.cairo" - }, - "parent_location": [ - { - "end_col": 41, - "end_line": 7, - "input_file": { - "filename": "autogen/starknet/storage_var/Sheet_cell/decl.cairo" - }, - "parent_location": [ - { - "end_col": 38, - "end_line": 17, - "input_file": { - "filename": "autogen/starknet/storage_var/Sheet_cell/impl.cairo" - }, - "start_col": 30, - "start_line": 17 - }, - "While trying to retrieve the implicit argument 'pedersen_ptr' in:" - ], - "start_col": 15, - "start_line": 7 - }, - "While expanding the reference 'pedersen_ptr' in:" - ], - "start_col": 35, - "start_line": 14 - } - }, - "2761": { - "accessible_scopes": [ - "sheet.library", - "sheet.library.Sheet_cell", - "sheet.library.Sheet_cell.read" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 78, - "end_line": 14, - "input_file": { - "filename": "autogen/starknet/storage_var/Sheet_cell/impl.cairo" - }, - "parent_location": [ - { - "end_col": 58, - "end_line": 7, - "input_file": { - "filename": "autogen/starknet/storage_var/Sheet_cell/decl.cairo" - }, - "parent_location": [ - { - "end_col": 38, - "end_line": 17, - "input_file": { - "filename": "autogen/starknet/storage_var/Sheet_cell/impl.cairo" - }, - "start_col": 30, - "start_line": 17 - }, - "While trying to retrieve the implicit argument 'range_check_ptr' in:" - ], - "start_col": 43, - "start_line": 7 - }, - "While expanding the reference 'range_check_ptr' in:" - ], - "start_col": 63, - "start_line": 14 - } - }, - "2762": { - "accessible_scopes": [ - "sheet.library", - "sheet.library.Sheet_cell", - "sheet.library.Sheet_cell.read" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 88, - "end_line": 14, - "input_file": { - "filename": "autogen/starknet/storage_var/Sheet_cell/impl.cairo" - }, - "parent_location": [ - { - "end_col": 37, - "end_line": 17, - "input_file": { - "filename": "autogen/starknet/storage_var/Sheet_cell/impl.cairo" - }, - "start_col": 35, - "start_line": 17 - }, - "While expanding the reference 'id' in:" - ], - "start_col": 80, - "start_line": 14 - } - }, - "2763": { - "accessible_scopes": [ - "sheet.library", - "sheet.library.Sheet_cell", - "sheet.library.Sheet_cell.read" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 38, - "end_line": 17, - "input_file": { - "filename": "autogen/starknet/storage_var/Sheet_cell/impl.cairo" - }, - "start_col": 30, - "start_line": 17 - } - }, - "2765": { - "accessible_scopes": [ - "sheet.library", - "sheet.library.Sheet_cell", - "sheet.library.Sheet_cell.read" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 33, - "end_line": 14, - "input_file": { - "filename": "autogen/starknet/storage_var/Sheet_cell/impl.cairo" - }, - "parent_location": [ - { - "end_col": 37, - "end_line": 352, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/starknet/common/syscalls.cairo" - }, - "parent_location": [ - { - "end_col": 75, - "end_line": 18, - "input_file": { - "filename": "autogen/starknet/storage_var/Sheet_cell/impl.cairo" - }, - "start_col": 37, - "start_line": 18 - }, - "While trying to retrieve the implicit argument 'syscall_ptr' in:" - ], - "start_col": 19, - "start_line": 352 - }, - "While expanding the reference 'syscall_ptr' in:" - ], - "start_col": 15, - "start_line": 14 - } - }, - "2766": { - "accessible_scopes": [ - "sheet.library", - "sheet.library.Sheet_cell", - "sheet.library.Sheet_cell.read" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 26, - "end_line": 17, - "input_file": { - "filename": "autogen/starknet/storage_var/Sheet_cell/impl.cairo" - }, - "parent_location": [ - { - "end_col": 70, - "end_line": 18, - "input_file": { - "filename": "autogen/starknet/storage_var/Sheet_cell/impl.cairo" - }, - "start_col": 58, - "start_line": 18 - }, - "While expanding the reference 'storage_addr' in:" - ], - "start_col": 14, - "start_line": 17 - } - }, - "2767": { - "accessible_scopes": [ - "sheet.library", - "sheet.library.Sheet_cell", - "sheet.library.Sheet_cell.read" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 75, - "end_line": 18, - "input_file": { - "filename": "autogen/starknet/storage_var/Sheet_cell/impl.cairo" - }, - "start_col": 37, - "start_line": 18 - } - }, - "2769": { - "accessible_scopes": [ - "sheet.library", - "sheet.library.Sheet_cell", - "sheet.library.Sheet_cell.read" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 37, - "end_line": 352, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/starknet/common/syscalls.cairo" - }, - "parent_location": [ - { - "end_col": 75, - "end_line": 18, - "input_file": { - "filename": "autogen/starknet/storage_var/Sheet_cell/impl.cairo" - }, - "parent_location": [ - { - "end_col": 37, - "end_line": 352, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/starknet/common/syscalls.cairo" - }, - "parent_location": [ - { - "end_col": 75, - "end_line": 19, - "input_file": { - "filename": "autogen/starknet/storage_var/Sheet_cell/impl.cairo" - }, - "start_col": 37, - "start_line": 19 - }, - "While trying to retrieve the implicit argument 'syscall_ptr' in:" - ], - "start_col": 19, - "start_line": 352 - }, - "While expanding the reference 'syscall_ptr' in:" - ], - "start_col": 37, - "start_line": 18 - }, - "While trying to update the implicit return value 'syscall_ptr' in:" - ], - "start_col": 19, - "start_line": 352 - } - }, - "2770": { - "accessible_scopes": [ - "sheet.library", - "sheet.library.Sheet_cell", - "sheet.library.Sheet_cell.read" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 74, - "end_line": 19, - "input_file": { - "filename": "autogen/starknet/storage_var/Sheet_cell/impl.cairo" - }, - "start_col": 58, - "start_line": 19 - } - }, - "2772": { - "accessible_scopes": [ - "sheet.library", - "sheet.library.Sheet_cell", - "sheet.library.Sheet_cell.read" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 75, - "end_line": 19, - "input_file": { - "filename": "autogen/starknet/storage_var/Sheet_cell/impl.cairo" - }, - "start_col": 37, - "start_line": 19 - } - }, - "2774": { - "accessible_scopes": [ - "sheet.library", - "sheet.library.Sheet_cell", - "sheet.library.Sheet_cell.read" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 37, - "end_line": 352, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/starknet/common/syscalls.cairo" - }, - "parent_location": [ - { - "end_col": 75, - "end_line": 19, - "input_file": { - "filename": "autogen/starknet/storage_var/Sheet_cell/impl.cairo" - }, - "parent_location": [ - { - "end_col": 37, - "end_line": 352, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/starknet/common/syscalls.cairo" - }, - "parent_location": [ - { - "end_col": 75, - "end_line": 20, - "input_file": { - "filename": "autogen/starknet/storage_var/Sheet_cell/impl.cairo" - }, - "start_col": 37, - "start_line": 20 - }, - "While trying to retrieve the implicit argument 'syscall_ptr' in:" - ], - "start_col": 19, - "start_line": 352 - }, - "While expanding the reference 'syscall_ptr' in:" - ], - "start_col": 37, - "start_line": 19 - }, - "While trying to update the implicit return value 'syscall_ptr' in:" - ], - "start_col": 19, - "start_line": 352 - } - }, - "2775": { - "accessible_scopes": [ - "sheet.library", - "sheet.library.Sheet_cell", - "sheet.library.Sheet_cell.read" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 74, - "end_line": 20, - "input_file": { - "filename": "autogen/starknet/storage_var/Sheet_cell/impl.cairo" - }, - "start_col": 58, - "start_line": 20 - } - }, - "2777": { - "accessible_scopes": [ - "sheet.library", - "sheet.library.Sheet_cell", - "sheet.library.Sheet_cell.read" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 75, - "end_line": 20, - "input_file": { - "filename": "autogen/starknet/storage_var/Sheet_cell/impl.cairo" - }, - "start_col": 37, - "start_line": 20 - } - }, - "2779": { - "accessible_scopes": [ - "sheet.library", - "sheet.library.Sheet_cell", - "sheet.library.Sheet_cell.read" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 37, - "end_line": 352, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/starknet/common/syscalls.cairo" - }, - "parent_location": [ - { - "end_col": 75, - "end_line": 20, - "input_file": { - "filename": "autogen/starknet/storage_var/Sheet_cell/impl.cairo" - }, - "parent_location": [ - { - "end_col": 42, - "end_line": 22, - "input_file": { - "filename": "autogen/starknet/storage_var/Sheet_cell/impl.cairo" - }, - "start_col": 31, - "start_line": 22 - }, - "While expanding the reference 'syscall_ptr' in:" - ], - "start_col": 37, - "start_line": 20 - }, - "While trying to update the implicit return value 'syscall_ptr' in:" - ], - "start_col": 19, - "start_line": 352 - } - }, - "2780": { - "accessible_scopes": [ - "sheet.library", - "sheet.library.Sheet_cell", - "sheet.library.Sheet_cell.read" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 41, - "end_line": 7, - "input_file": { - "filename": "autogen/starknet/storage_var/Sheet_cell/decl.cairo" - }, - "parent_location": [ - { - "end_col": 38, - "end_line": 17, - "input_file": { - "filename": "autogen/starknet/storage_var/Sheet_cell/impl.cairo" - }, - "parent_location": [ - { - "end_col": 44, - "end_line": 23, - "input_file": { - "filename": "autogen/starknet/storage_var/Sheet_cell/impl.cairo" - }, - "start_col": 32, - "start_line": 23 - }, - "While expanding the reference 'pedersen_ptr' in:" - ], - "start_col": 30, - "start_line": 17 - }, - "While trying to update the implicit return value 'pedersen_ptr' in:" - ], - "start_col": 15, - "start_line": 7 - } - }, - "2781": { - "accessible_scopes": [ - "sheet.library", - "sheet.library.Sheet_cell", - "sheet.library.Sheet_cell.read" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 58, - "end_line": 7, - "input_file": { - "filename": "autogen/starknet/storage_var/Sheet_cell/decl.cairo" - }, - "parent_location": [ - { - "end_col": 38, - "end_line": 17, - "input_file": { - "filename": "autogen/starknet/storage_var/Sheet_cell/impl.cairo" - }, - "parent_location": [ - { - "end_col": 50, - "end_line": 24, - "input_file": { - "filename": "autogen/starknet/storage_var/Sheet_cell/impl.cairo" - }, - "start_col": 35, - "start_line": 24 - }, - "While expanding the reference 'range_check_ptr' in:" - ], - "start_col": 30, - "start_line": 17 - }, - "While trying to update the implicit return value 'range_check_ptr' in:" - ], - "start_col": 43, - "start_line": 7 - } - }, - "2782": { - "accessible_scopes": [ - "sheet.library", - "sheet.library.Sheet_cell", - "sheet.library.Sheet_cell.read" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 33, - "end_line": 18, - "input_file": { - "filename": "autogen/starknet/storage_var/Sheet_cell/impl.cairo" - }, - "parent_location": [ - { - "end_col": 64, - "end_line": 25, - "input_file": { - "filename": "autogen/starknet/storage_var/Sheet_cell/impl.cairo" - }, - "start_col": 45, - "start_line": 25 - }, - "While expanding the reference '__storage_var_temp0' in:" - ], - "start_col": 14, - "start_line": 18 - } - }, - "2783": { - "accessible_scopes": [ - "sheet.library", - "sheet.library.Sheet_cell", - "sheet.library.Sheet_cell.read" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 33, - "end_line": 19, - "input_file": { - "filename": "autogen/starknet/storage_var/Sheet_cell/impl.cairo" - }, - "parent_location": [ - { - "end_col": 64, - "end_line": 26, - "input_file": { - "filename": "autogen/starknet/storage_var/Sheet_cell/impl.cairo" - }, - "start_col": 45, - "start_line": 26 - }, - "While expanding the reference '__storage_var_temp1' in:" - ], - "start_col": 14, - "start_line": 19 - } - }, - "2784": { - "accessible_scopes": [ - "sheet.library", - "sheet.library.Sheet_cell", - "sheet.library.Sheet_cell.read" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 33, - "end_line": 20, - "input_file": { - "filename": "autogen/starknet/storage_var/Sheet_cell/impl.cairo" - }, - "parent_location": [ - { - "end_col": 64, - "end_line": 27, - "input_file": { - "filename": "autogen/starknet/storage_var/Sheet_cell/impl.cairo" - }, - "start_col": 45, - "start_line": 27 - }, - "While expanding the reference '__storage_var_temp2' in:" - ], - "start_col": 14, - "start_line": 20 - } - }, - "2785": { - "accessible_scopes": [ - "sheet.library", - "sheet.library.Sheet_cell", - "sheet.library.Sheet_cell.read" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 59, - "end_line": 28, - "input_file": { - "filename": "autogen/starknet/storage_var/Sheet_cell/impl.cairo" - }, - "start_col": 9, - "start_line": 28 - } - }, - "2786": { - "accessible_scopes": [ - "sheet.library", - "sheet.library.Sheet_cell", - "sheet.library.Sheet_cell.write" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 62, - "end_line": 31, - "input_file": { - "filename": "autogen/starknet/storage_var/Sheet_cell/impl.cairo" - }, - "parent_location": [ - { - "end_col": 41, - "end_line": 7, - "input_file": { - "filename": "autogen/starknet/storage_var/Sheet_cell/decl.cairo" - }, - "parent_location": [ - { - "end_col": 38, - "end_line": 34, - "input_file": { - "filename": "autogen/starknet/storage_var/Sheet_cell/impl.cairo" - }, - "start_col": 30, - "start_line": 34 - }, - "While trying to retrieve the implicit argument 'pedersen_ptr' in:" - ], - "start_col": 15, - "start_line": 7 - }, - "While expanding the reference 'pedersen_ptr' in:" - ], - "start_col": 36, - "start_line": 31 - } - }, - "2787": { - "accessible_scopes": [ - "sheet.library", - "sheet.library.Sheet_cell", - "sheet.library.Sheet_cell.write" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 79, - "end_line": 31, - "input_file": { - "filename": "autogen/starknet/storage_var/Sheet_cell/impl.cairo" - }, - "parent_location": [ - { - "end_col": 58, - "end_line": 7, - "input_file": { - "filename": "autogen/starknet/storage_var/Sheet_cell/decl.cairo" - }, - "parent_location": [ - { - "end_col": 38, - "end_line": 34, - "input_file": { - "filename": "autogen/starknet/storage_var/Sheet_cell/impl.cairo" - }, - "start_col": 30, - "start_line": 34 - }, - "While trying to retrieve the implicit argument 'range_check_ptr' in:" - ], - "start_col": 43, - "start_line": 7 - }, - "While expanding the reference 'range_check_ptr' in:" - ], - "start_col": 64, - "start_line": 31 - } - }, - "2788": { - "accessible_scopes": [ - "sheet.library", - "sheet.library.Sheet_cell", - "sheet.library.Sheet_cell.write" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 17, - "end_line": 32, - "input_file": { - "filename": "autogen/starknet/storage_var/Sheet_cell/impl.cairo" - }, - "parent_location": [ - { - "end_col": 37, - "end_line": 34, - "input_file": { - "filename": "autogen/starknet/storage_var/Sheet_cell/impl.cairo" - }, - "start_col": 35, - "start_line": 34 - }, - "While expanding the reference 'id' in:" - ], - "start_col": 9, - "start_line": 32 - } - }, - "2789": { - "accessible_scopes": [ - "sheet.library", - "sheet.library.Sheet_cell", - "sheet.library.Sheet_cell.write" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 38, - "end_line": 34, - "input_file": { - "filename": "autogen/starknet/storage_var/Sheet_cell/impl.cairo" - }, - "start_col": 30, - "start_line": 34 - } - }, - "2791": { - "accessible_scopes": [ - "sheet.library", - "sheet.library.Sheet_cell", - "sheet.library.Sheet_cell.write" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 34, - "end_line": 31, - "input_file": { - "filename": "autogen/starknet/storage_var/Sheet_cell/impl.cairo" - }, - "parent_location": [ - { - "end_col": 38, - "end_line": 370, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/starknet/common/syscalls.cairo" - }, - "parent_location": [ - { - "end_col": 80, - "end_line": 35, - "input_file": { - "filename": "autogen/starknet/storage_var/Sheet_cell/impl.cairo" - }, - "start_col": 9, - "start_line": 35 - }, - "While trying to retrieve the implicit argument 'syscall_ptr' in:" - ], - "start_col": 20, - "start_line": 370 - }, - "While expanding the reference 'syscall_ptr' in:" - ], - "start_col": 16, - "start_line": 31 - } - }, - "2792": { - "accessible_scopes": [ - "sheet.library", - "sheet.library.Sheet_cell", - "sheet.library.Sheet_cell.write" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 26, - "end_line": 34, - "input_file": { - "filename": "autogen/starknet/storage_var/Sheet_cell/impl.cairo" - }, - "parent_location": [ - { - "end_col": 43, - "end_line": 35, - "input_file": { - "filename": "autogen/starknet/storage_var/Sheet_cell/impl.cairo" - }, - "start_col": 31, - "start_line": 35 - }, - "While expanding the reference 'storage_addr' in:" - ], - "start_col": 14, - "start_line": 34 - } - }, - "2793": { - "accessible_scopes": [ - "sheet.library", - "sheet.library.Sheet_cell", - "sheet.library.Sheet_cell.write" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 79, - "end_line": 35, - "input_file": { - "filename": "autogen/starknet/storage_var/Sheet_cell/impl.cairo" - }, - "start_col": 55, - "start_line": 35 - } - }, - "2794": { - "accessible_scopes": [ - "sheet.library", - "sheet.library.Sheet_cell", - "sheet.library.Sheet_cell.write" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 80, - "end_line": 35, - "input_file": { - "filename": "autogen/starknet/storage_var/Sheet_cell/impl.cairo" - }, - "start_col": 9, - "start_line": 35 - } - }, - "2796": { - "accessible_scopes": [ - "sheet.library", - "sheet.library.Sheet_cell", - "sheet.library.Sheet_cell.write" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 47, - "end_line": 36, - "input_file": { - "filename": "autogen/starknet/storage_var/Sheet_cell/impl.cairo" - }, - "start_col": 31, - "start_line": 36 - } - }, - "2798": { - "accessible_scopes": [ - "sheet.library", - "sheet.library.Sheet_cell", - "sheet.library.Sheet_cell.write" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 79, - "end_line": 36, - "input_file": { - "filename": "autogen/starknet/storage_var/Sheet_cell/impl.cairo" - }, - "start_col": 55, - "start_line": 36 - } - }, - "2799": { - "accessible_scopes": [ - "sheet.library", - "sheet.library.Sheet_cell", - "sheet.library.Sheet_cell.write" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 80, - "end_line": 36, - "input_file": { - "filename": "autogen/starknet/storage_var/Sheet_cell/impl.cairo" - }, - "start_col": 9, - "start_line": 36 - } - }, - "2801": { - "accessible_scopes": [ - "sheet.library", - "sheet.library.Sheet_cell", - "sheet.library.Sheet_cell.write" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 47, - "end_line": 37, - "input_file": { - "filename": "autogen/starknet/storage_var/Sheet_cell/impl.cairo" - }, - "start_col": 31, - "start_line": 37 - } - }, - "2803": { - "accessible_scopes": [ - "sheet.library", - "sheet.library.Sheet_cell", - "sheet.library.Sheet_cell.write" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 79, - "end_line": 37, - "input_file": { - "filename": "autogen/starknet/storage_var/Sheet_cell/impl.cairo" - }, - "start_col": 55, - "start_line": 37 - } - }, - "2804": { - "accessible_scopes": [ - "sheet.library", - "sheet.library.Sheet_cell", - "sheet.library.Sheet_cell.write" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 80, - "end_line": 37, - "input_file": { - "filename": "autogen/starknet/storage_var/Sheet_cell/impl.cairo" - }, - "start_col": 9, - "start_line": 37 - } - }, - "2806": { - "accessible_scopes": [ - "sheet.library", - "sheet.library.Sheet_cell", - "sheet.library.Sheet_cell.write" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 41, - "end_line": 7, - "input_file": { - "filename": "autogen/starknet/storage_var/Sheet_cell/decl.cairo" - }, - "parent_location": [ - { - "end_col": 38, - "end_line": 34, - "input_file": { - "filename": "autogen/starknet/storage_var/Sheet_cell/impl.cairo" - }, - "parent_location": [ - { - "end_col": 62, - "end_line": 21, - "input_file": { - "filename": "autogen/starknet/storage_var/Sheet_cell/decl.cairo" - }, - "parent_location": [ - { - "end_col": 19, - "end_line": 38, - "input_file": { - "filename": "autogen/starknet/storage_var/Sheet_cell/impl.cairo" - }, - "start_col": 9, - "start_line": 38 - }, - "While trying to retrieve the implicit argument 'pedersen_ptr' in:" - ], - "start_col": 36, - "start_line": 21 - }, - "While expanding the reference 'pedersen_ptr' in:" - ], - "start_col": 30, - "start_line": 34 - }, - "While trying to update the implicit return value 'pedersen_ptr' in:" - ], - "start_col": 15, - "start_line": 7 - } - }, - "2807": { - "accessible_scopes": [ - "sheet.library", - "sheet.library.Sheet_cell", - "sheet.library.Sheet_cell.write" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 58, - "end_line": 7, - "input_file": { - "filename": "autogen/starknet/storage_var/Sheet_cell/decl.cairo" - }, - "parent_location": [ - { - "end_col": 38, - "end_line": 34, - "input_file": { - "filename": "autogen/starknet/storage_var/Sheet_cell/impl.cairo" - }, - "parent_location": [ - { - "end_col": 79, - "end_line": 21, - "input_file": { - "filename": "autogen/starknet/storage_var/Sheet_cell/decl.cairo" - }, - "parent_location": [ - { - "end_col": 19, - "end_line": 38, - "input_file": { - "filename": "autogen/starknet/storage_var/Sheet_cell/impl.cairo" - }, - "start_col": 9, - "start_line": 38 - }, - "While trying to retrieve the implicit argument 'range_check_ptr' in:" - ], - "start_col": 64, - "start_line": 21 - }, - "While expanding the reference 'range_check_ptr' in:" - ], - "start_col": 30, - "start_line": 34 - }, - "While trying to update the implicit return value 'range_check_ptr' in:" - ], - "start_col": 43, - "start_line": 7 - } - }, - "2808": { - "accessible_scopes": [ - "sheet.library", - "sheet.library.Sheet_cell", - "sheet.library.Sheet_cell.write" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 19, - "end_line": 38, - "input_file": { - "filename": "autogen/starknet/storage_var/Sheet_cell/impl.cairo" - }, - "start_col": 9, - "start_line": 38 - } - }, - "2809": { - "accessible_scopes": [ - "sheet.library", - "sheet.library.Sheet_cell_calldata", - "sheet.library.Sheet_cell_calldata.addr" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 41, - "end_line": 7, - "input_file": { - "filename": "autogen/starknet/storage_var/Sheet_cell_calldata/impl.cairo" - }, - "parent_location": [ - { - "end_col": 48, - "end_line": 9, - "input_file": { - "filename": "autogen/starknet/storage_var/Sheet_cell_calldata/impl.cairo" - }, - "start_col": 36, - "start_line": 9 - }, - "While expanding the reference 'pedersen_ptr' in:" - ], - "start_col": 15, - "start_line": 7 - } - }, - "2810": { - "accessible_scopes": [ - "sheet.library", - "sheet.library.Sheet_cell_calldata", - "sheet.library.Sheet_cell_calldata.addr" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 95, - "end_line": 8, - "input_file": { - "filename": "autogen/starknet/storage_var/Sheet_cell_calldata/impl.cairo" - }, - "parent_location": [ - { - "end_col": 53, - "end_line": 9, - "input_file": { - "filename": "autogen/starknet/storage_var/Sheet_cell_calldata/impl.cairo" - }, - "start_col": 50, - "start_line": 9 - }, - "While expanding the reference 'res' in:" - ], - "start_col": 19, - "start_line": 8 - } - }, - "2812": { - "accessible_scopes": [ - "sheet.library", - "sheet.library.Sheet_cell_calldata", - "sheet.library.Sheet_cell_calldata.addr" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 74, - "end_line": 9, - "input_file": { - "filename": "autogen/starknet/storage_var/Sheet_cell_calldata/impl.cairo" - }, - "start_col": 55, - "start_line": 9 - } - }, - "2813": { - "accessible_scopes": [ - "sheet.library", - "sheet.library.Sheet_cell_calldata", - "sheet.library.Sheet_cell_calldata.addr" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 75, - "end_line": 9, - "input_file": { - "filename": "autogen/starknet/storage_var/Sheet_cell_calldata/impl.cairo" - }, - "start_col": 21, - "start_line": 9 - } - }, - "2815": { - "accessible_scopes": [ - "sheet.library", - "sheet.library.Sheet_cell_calldata", - "sheet.library.Sheet_cell_calldata.addr" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 77, - "end_line": 10, - "input_file": { - "filename": "autogen/starknet/storage_var/Sheet_cell_calldata/impl.cairo" - }, - "start_col": 55, - "start_line": 10 - } - }, - "2816": { - "accessible_scopes": [ - "sheet.library", - "sheet.library.Sheet_cell_calldata", - "sheet.library.Sheet_cell_calldata.addr" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 78, - "end_line": 10, - "input_file": { - "filename": "autogen/starknet/storage_var/Sheet_cell_calldata/impl.cairo" - }, - "start_col": 21, - "start_line": 10 - } - }, - "2818": { - "accessible_scopes": [ - "sheet.library", - "sheet.library.Sheet_cell_calldata", - "sheet.library.Sheet_cell_calldata.addr" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 58, - "end_line": 7, - "input_file": { - "filename": "autogen/starknet/storage_var/Sheet_cell_calldata/impl.cairo" - }, - "parent_location": [ - { - "end_col": 39, - "end_line": 12, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/starknet/common/storage.cairo" - }, - "parent_location": [ - { - "end_col": 48, - "end_line": 11, - "input_file": { - "filename": "autogen/starknet/storage_var/Sheet_cell_calldata/impl.cairo" - }, - "start_col": 21, - "start_line": 11 - }, - "While trying to retrieve the implicit argument 'range_check_ptr' in:" - ], - "start_col": 24, - "start_line": 12 - }, - "While expanding the reference 'range_check_ptr' in:" - ], - "start_col": 43, - "start_line": 7 - } - }, - "2819": { - "accessible_scopes": [ - "sheet.library", - "sheet.library.Sheet_cell_calldata", - "sheet.library.Sheet_cell_calldata.addr" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 17, - "end_line": 10, - "input_file": { - "filename": "autogen/starknet/storage_var/Sheet_cell_calldata/impl.cairo" - }, - "parent_location": [ - { - "end_col": 47, - "end_line": 11, - "input_file": { - "filename": "autogen/starknet/storage_var/Sheet_cell_calldata/impl.cairo" - }, - "start_col": 44, - "start_line": 11 - }, - "While expanding the reference 'res' in:" - ], - "start_col": 14, - "start_line": 10 - } - }, - "2820": { - "accessible_scopes": [ - "sheet.library", - "sheet.library.Sheet_cell_calldata", - "sheet.library.Sheet_cell_calldata.addr" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 48, - "end_line": 11, - "input_file": { - "filename": "autogen/starknet/storage_var/Sheet_cell_calldata/impl.cairo" - }, - "start_col": 21, - "start_line": 11 - } - }, - "2822": { - "accessible_scopes": [ - "sheet.library", - "sheet.library.Sheet_cell_calldata", - "sheet.library.Sheet_cell_calldata.addr" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 48, - "end_line": 10, - "input_file": { - "filename": "autogen/starknet/storage_var/Sheet_cell_calldata/impl.cairo" - }, - "parent_location": [ - { - "end_col": 41, - "end_line": 7, - "input_file": { - "filename": "autogen/starknet/storage_var/Sheet_cell_calldata/decl.cairo" - }, - "parent_location": [ - { - "end_col": 26, - "end_line": 12, - "input_file": { - "filename": "autogen/starknet/storage_var/Sheet_cell_calldata/impl.cairo" - }, - "start_col": 9, - "start_line": 12 - }, - "While trying to retrieve the implicit argument 'pedersen_ptr' in:" - ], - "start_col": 15, - "start_line": 7 - }, - "While expanding the reference 'pedersen_ptr' in:" - ], - "start_col": 36, - "start_line": 10 - } - }, - "2823": { - "accessible_scopes": [ - "sheet.library", - "sheet.library.Sheet_cell_calldata", - "sheet.library.Sheet_cell_calldata.addr" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 39, - "end_line": 12, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/starknet/common/storage.cairo" - }, - "parent_location": [ - { - "end_col": 48, - "end_line": 11, - "input_file": { - "filename": "autogen/starknet/storage_var/Sheet_cell_calldata/impl.cairo" - }, - "parent_location": [ - { - "end_col": 58, - "end_line": 7, - "input_file": { - "filename": "autogen/starknet/storage_var/Sheet_cell_calldata/decl.cairo" - }, - "parent_location": [ - { - "end_col": 26, - "end_line": 12, - "input_file": { - "filename": "autogen/starknet/storage_var/Sheet_cell_calldata/impl.cairo" - }, - "start_col": 9, - "start_line": 12 - }, - "While trying to retrieve the implicit argument 'range_check_ptr' in:" - ], - "start_col": 43, - "start_line": 7 - }, - "While expanding the reference 'range_check_ptr' in:" - ], - "start_col": 21, - "start_line": 11 - }, - "While trying to update the implicit return value 'range_check_ptr' in:" - ], - "start_col": 24, - "start_line": 12 - } - }, - "2824": { - "accessible_scopes": [ - "sheet.library", - "sheet.library.Sheet_cell_calldata", - "sheet.library.Sheet_cell_calldata.addr" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 17, - "end_line": 11, - "input_file": { - "filename": "autogen/starknet/storage_var/Sheet_cell_calldata/impl.cairo" - }, - "parent_location": [ - { - "end_col": 24, - "end_line": 12, - "input_file": { - "filename": "autogen/starknet/storage_var/Sheet_cell_calldata/impl.cairo" - }, - "start_col": 21, - "start_line": 12 - }, - "While expanding the reference 'res' in:" - ], - "start_col": 14, - "start_line": 11 - } - }, - "2825": { - "accessible_scopes": [ - "sheet.library", - "sheet.library.Sheet_cell_calldata", - "sheet.library.Sheet_cell_calldata.addr" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 26, - "end_line": 12, - "input_file": { - "filename": "autogen/starknet/storage_var/Sheet_cell_calldata/impl.cairo" - }, - "start_col": 9, - "start_line": 12 - } - }, - "2826": { - "accessible_scopes": [ - "sheet.library", - "sheet.library.Sheet_cell_calldata", - "sheet.library.Sheet_cell_calldata.read" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 61, - "end_line": 15, - "input_file": { - "filename": "autogen/starknet/storage_var/Sheet_cell_calldata/impl.cairo" - }, - "parent_location": [ - { - "end_col": 41, - "end_line": 7, - "input_file": { - "filename": "autogen/starknet/storage_var/Sheet_cell_calldata/decl.cairo" - }, - "parent_location": [ - { - "end_col": 45, - "end_line": 18, - "input_file": { - "filename": "autogen/starknet/storage_var/Sheet_cell_calldata/impl.cairo" - }, - "start_col": 30, - "start_line": 18 - }, - "While trying to retrieve the implicit argument 'pedersen_ptr' in:" - ], - "start_col": 15, - "start_line": 7 - }, - "While expanding the reference 'pedersen_ptr' in:" - ], - "start_col": 35, - "start_line": 15 - } - }, - "2827": { - "accessible_scopes": [ - "sheet.library", - "sheet.library.Sheet_cell_calldata", - "sheet.library.Sheet_cell_calldata.read" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 78, - "end_line": 15, - "input_file": { - "filename": "autogen/starknet/storage_var/Sheet_cell_calldata/impl.cairo" - }, - "parent_location": [ - { - "end_col": 58, - "end_line": 7, - "input_file": { - "filename": "autogen/starknet/storage_var/Sheet_cell_calldata/decl.cairo" - }, - "parent_location": [ - { - "end_col": 45, - "end_line": 18, - "input_file": { - "filename": "autogen/starknet/storage_var/Sheet_cell_calldata/impl.cairo" - }, - "start_col": 30, - "start_line": 18 - }, - "While trying to retrieve the implicit argument 'range_check_ptr' in:" - ], - "start_col": 43, - "start_line": 7 - }, - "While expanding the reference 'range_check_ptr' in:" - ], - "start_col": 63, - "start_line": 15 - } - }, - "2828": { - "accessible_scopes": [ - "sheet.library", - "sheet.library.Sheet_cell_calldata", - "sheet.library.Sheet_cell_calldata.read" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 17, - "end_line": 16, - "input_file": { - "filename": "autogen/starknet/storage_var/Sheet_cell_calldata/impl.cairo" - }, - "parent_location": [ - { - "end_col": 37, - "end_line": 18, - "input_file": { - "filename": "autogen/starknet/storage_var/Sheet_cell_calldata/impl.cairo" - }, - "start_col": 35, - "start_line": 18 - }, - "While expanding the reference 'id' in:" - ], - "start_col": 9, - "start_line": 16 - } - }, - "2829": { - "accessible_scopes": [ - "sheet.library", - "sheet.library.Sheet_cell_calldata", - "sheet.library.Sheet_cell_calldata.read" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 30, - "end_line": 16, - "input_file": { - "filename": "autogen/starknet/storage_var/Sheet_cell_calldata/impl.cairo" - }, - "parent_location": [ - { - "end_col": 44, - "end_line": 18, - "input_file": { - "filename": "autogen/starknet/storage_var/Sheet_cell_calldata/impl.cairo" - }, - "start_col": 39, - "start_line": 18 - }, - "While expanding the reference 'index' in:" - ], - "start_col": 19, - "start_line": 16 - } - }, - "2830": { - "accessible_scopes": [ - "sheet.library", - "sheet.library.Sheet_cell_calldata", - "sheet.library.Sheet_cell_calldata.read" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 45, - "end_line": 18, - "input_file": { - "filename": "autogen/starknet/storage_var/Sheet_cell_calldata/impl.cairo" - }, - "start_col": 30, - "start_line": 18 - } - }, - "2832": { - "accessible_scopes": [ - "sheet.library", - "sheet.library.Sheet_cell_calldata", - "sheet.library.Sheet_cell_calldata.read" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 33, - "end_line": 15, - "input_file": { - "filename": "autogen/starknet/storage_var/Sheet_cell_calldata/impl.cairo" - }, - "parent_location": [ - { - "end_col": 37, - "end_line": 352, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/starknet/common/syscalls.cairo" - }, - "parent_location": [ - { - "end_col": 75, - "end_line": 19, - "input_file": { - "filename": "autogen/starknet/storage_var/Sheet_cell_calldata/impl.cairo" - }, - "start_col": 37, - "start_line": 19 - }, - "While trying to retrieve the implicit argument 'syscall_ptr' in:" - ], - "start_col": 19, - "start_line": 352 - }, - "While expanding the reference 'syscall_ptr' in:" - ], - "start_col": 15, - "start_line": 15 - } - }, - "2833": { - "accessible_scopes": [ - "sheet.library", - "sheet.library.Sheet_cell_calldata", - "sheet.library.Sheet_cell_calldata.read" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 26, - "end_line": 18, - "input_file": { - "filename": "autogen/starknet/storage_var/Sheet_cell_calldata/impl.cairo" - }, - "parent_location": [ - { - "end_col": 70, - "end_line": 19, - "input_file": { - "filename": "autogen/starknet/storage_var/Sheet_cell_calldata/impl.cairo" - }, - "start_col": 58, - "start_line": 19 - }, - "While expanding the reference 'storage_addr' in:" - ], - "start_col": 14, - "start_line": 18 - } - }, - "2834": { - "accessible_scopes": [ - "sheet.library", - "sheet.library.Sheet_cell_calldata", - "sheet.library.Sheet_cell_calldata.read" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 75, - "end_line": 19, - "input_file": { - "filename": "autogen/starknet/storage_var/Sheet_cell_calldata/impl.cairo" - }, - "start_col": 37, - "start_line": 19 - } - }, - "2836": { - "accessible_scopes": [ - "sheet.library", - "sheet.library.Sheet_cell_calldata", - "sheet.library.Sheet_cell_calldata.read" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 37, - "end_line": 352, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/starknet/common/syscalls.cairo" - }, - "parent_location": [ - { - "end_col": 75, - "end_line": 19, - "input_file": { - "filename": "autogen/starknet/storage_var/Sheet_cell_calldata/impl.cairo" - }, - "parent_location": [ - { - "end_col": 42, - "end_line": 21, - "input_file": { - "filename": "autogen/starknet/storage_var/Sheet_cell_calldata/impl.cairo" - }, - "start_col": 31, - "start_line": 21 - }, - "While expanding the reference 'syscall_ptr' in:" - ], - "start_col": 37, - "start_line": 19 - }, - "While trying to update the implicit return value 'syscall_ptr' in:" - ], - "start_col": 19, - "start_line": 352 - } - }, - "2837": { - "accessible_scopes": [ - "sheet.library", - "sheet.library.Sheet_cell_calldata", - "sheet.library.Sheet_cell_calldata.read" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 41, - "end_line": 7, - "input_file": { - "filename": "autogen/starknet/storage_var/Sheet_cell_calldata/decl.cairo" - }, - "parent_location": [ - { - "end_col": 45, - "end_line": 18, - "input_file": { - "filename": "autogen/starknet/storage_var/Sheet_cell_calldata/impl.cairo" - }, - "parent_location": [ - { - "end_col": 44, - "end_line": 22, - "input_file": { - "filename": "autogen/starknet/storage_var/Sheet_cell_calldata/impl.cairo" - }, - "start_col": 32, - "start_line": 22 - }, - "While expanding the reference 'pedersen_ptr' in:" - ], - "start_col": 30, - "start_line": 18 - }, - "While trying to update the implicit return value 'pedersen_ptr' in:" - ], - "start_col": 15, - "start_line": 7 - } - }, - "2838": { - "accessible_scopes": [ - "sheet.library", - "sheet.library.Sheet_cell_calldata", - "sheet.library.Sheet_cell_calldata.read" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 58, - "end_line": 7, - "input_file": { - "filename": "autogen/starknet/storage_var/Sheet_cell_calldata/decl.cairo" - }, - "parent_location": [ - { - "end_col": 45, - "end_line": 18, - "input_file": { - "filename": "autogen/starknet/storage_var/Sheet_cell_calldata/impl.cairo" - }, - "parent_location": [ - { - "end_col": 50, - "end_line": 23, - "input_file": { - "filename": "autogen/starknet/storage_var/Sheet_cell_calldata/impl.cairo" - }, - "start_col": 35, - "start_line": 23 - }, - "While expanding the reference 'range_check_ptr' in:" - ], - "start_col": 30, - "start_line": 18 - }, - "While trying to update the implicit return value 'range_check_ptr' in:" - ], - "start_col": 43, - "start_line": 7 - } - }, - "2839": { - "accessible_scopes": [ - "sheet.library", - "sheet.library.Sheet_cell_calldata", - "sheet.library.Sheet_cell_calldata.read" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 33, - "end_line": 19, - "input_file": { - "filename": "autogen/starknet/storage_var/Sheet_cell_calldata/impl.cairo" - }, - "parent_location": [ - { - "end_col": 64, - "end_line": 24, - "input_file": { - "filename": "autogen/starknet/storage_var/Sheet_cell_calldata/impl.cairo" - }, - "start_col": 45, - "start_line": 24 - }, - "While expanding the reference '__storage_var_temp0' in:" - ], - "start_col": 14, - "start_line": 19 - } - }, - "2840": { - "accessible_scopes": [ - "sheet.library", - "sheet.library.Sheet_cell_calldata", - "sheet.library.Sheet_cell_calldata.read" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 55, - "end_line": 25, - "input_file": { - "filename": "autogen/starknet/storage_var/Sheet_cell_calldata/impl.cairo" - }, - "start_col": 9, - "start_line": 25 - } - }, - "2841": { - "accessible_scopes": [ - "sheet.library", - "sheet.library.Sheet_cell_calldata", - "sheet.library.Sheet_cell_calldata.write" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 62, - "end_line": 28, - "input_file": { - "filename": "autogen/starknet/storage_var/Sheet_cell_calldata/impl.cairo" - }, - "parent_location": [ - { - "end_col": 41, - "end_line": 7, - "input_file": { - "filename": "autogen/starknet/storage_var/Sheet_cell_calldata/decl.cairo" - }, - "parent_location": [ - { - "end_col": 45, - "end_line": 31, - "input_file": { - "filename": "autogen/starknet/storage_var/Sheet_cell_calldata/impl.cairo" - }, - "start_col": 30, - "start_line": 31 - }, - "While trying to retrieve the implicit argument 'pedersen_ptr' in:" - ], - "start_col": 15, - "start_line": 7 - }, - "While expanding the reference 'pedersen_ptr' in:" - ], - "start_col": 36, - "start_line": 28 - } - }, - "2842": { - "accessible_scopes": [ - "sheet.library", - "sheet.library.Sheet_cell_calldata", - "sheet.library.Sheet_cell_calldata.write" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 79, - "end_line": 28, - "input_file": { - "filename": "autogen/starknet/storage_var/Sheet_cell_calldata/impl.cairo" - }, - "parent_location": [ - { - "end_col": 58, - "end_line": 7, - "input_file": { - "filename": "autogen/starknet/storage_var/Sheet_cell_calldata/decl.cairo" - }, - "parent_location": [ - { - "end_col": 45, - "end_line": 31, - "input_file": { - "filename": "autogen/starknet/storage_var/Sheet_cell_calldata/impl.cairo" - }, - "start_col": 30, - "start_line": 31 - }, - "While trying to retrieve the implicit argument 'range_check_ptr' in:" - ], - "start_col": 43, - "start_line": 7 - }, - "While expanding the reference 'range_check_ptr' in:" - ], - "start_col": 64, - "start_line": 28 - } - }, - "2843": { - "accessible_scopes": [ - "sheet.library", - "sheet.library.Sheet_cell_calldata", - "sheet.library.Sheet_cell_calldata.write" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 17, - "end_line": 29, - "input_file": { - "filename": "autogen/starknet/storage_var/Sheet_cell_calldata/impl.cairo" - }, - "parent_location": [ - { - "end_col": 37, - "end_line": 31, - "input_file": { - "filename": "autogen/starknet/storage_var/Sheet_cell_calldata/impl.cairo" - }, - "start_col": 35, - "start_line": 31 - }, - "While expanding the reference 'id' in:" - ], - "start_col": 9, - "start_line": 29 - } - }, - "2844": { - "accessible_scopes": [ - "sheet.library", - "sheet.library.Sheet_cell_calldata", - "sheet.library.Sheet_cell_calldata.write" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 30, - "end_line": 29, - "input_file": { - "filename": "autogen/starknet/storage_var/Sheet_cell_calldata/impl.cairo" - }, - "parent_location": [ - { - "end_col": 44, - "end_line": 31, - "input_file": { - "filename": "autogen/starknet/storage_var/Sheet_cell_calldata/impl.cairo" - }, - "start_col": 39, - "start_line": 31 - }, - "While expanding the reference 'index' in:" - ], - "start_col": 19, - "start_line": 29 - } - }, - "2845": { - "accessible_scopes": [ - "sheet.library", - "sheet.library.Sheet_cell_calldata", - "sheet.library.Sheet_cell_calldata.write" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 45, - "end_line": 31, - "input_file": { - "filename": "autogen/starknet/storage_var/Sheet_cell_calldata/impl.cairo" - }, - "start_col": 30, - "start_line": 31 - } - }, - "2847": { - "accessible_scopes": [ - "sheet.library", - "sheet.library.Sheet_cell_calldata", - "sheet.library.Sheet_cell_calldata.write" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 34, - "end_line": 28, - "input_file": { - "filename": "autogen/starknet/storage_var/Sheet_cell_calldata/impl.cairo" - }, - "parent_location": [ - { - "end_col": 38, - "end_line": 370, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/starknet/common/syscalls.cairo" - }, - "parent_location": [ - { - "end_col": 80, - "end_line": 32, - "input_file": { - "filename": "autogen/starknet/storage_var/Sheet_cell_calldata/impl.cairo" - }, - "start_col": 9, - "start_line": 32 - }, - "While trying to retrieve the implicit argument 'syscall_ptr' in:" - ], - "start_col": 20, - "start_line": 370 - }, - "While expanding the reference 'syscall_ptr' in:" - ], - "start_col": 16, - "start_line": 28 - } - }, - "2848": { - "accessible_scopes": [ - "sheet.library", - "sheet.library.Sheet_cell_calldata", - "sheet.library.Sheet_cell_calldata.write" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 26, - "end_line": 31, - "input_file": { - "filename": "autogen/starknet/storage_var/Sheet_cell_calldata/impl.cairo" - }, - "parent_location": [ - { - "end_col": 43, - "end_line": 32, - "input_file": { - "filename": "autogen/starknet/storage_var/Sheet_cell_calldata/impl.cairo" - }, - "start_col": 31, - "start_line": 32 - }, - "While expanding the reference 'storage_addr' in:" - ], - "start_col": 14, - "start_line": 31 - } - }, - "2849": { - "accessible_scopes": [ - "sheet.library", - "sheet.library.Sheet_cell_calldata", - "sheet.library.Sheet_cell_calldata.write" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 79, - "end_line": 32, - "input_file": { - "filename": "autogen/starknet/storage_var/Sheet_cell_calldata/impl.cairo" - }, - "start_col": 55, - "start_line": 32 - } - }, - "2850": { - "accessible_scopes": [ - "sheet.library", - "sheet.library.Sheet_cell_calldata", - "sheet.library.Sheet_cell_calldata.write" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 80, - "end_line": 32, - "input_file": { - "filename": "autogen/starknet/storage_var/Sheet_cell_calldata/impl.cairo" - }, - "start_col": 9, - "start_line": 32 - } - }, - "2852": { - "accessible_scopes": [ - "sheet.library", - "sheet.library.Sheet_cell_calldata", - "sheet.library.Sheet_cell_calldata.write" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 41, - "end_line": 7, - "input_file": { - "filename": "autogen/starknet/storage_var/Sheet_cell_calldata/decl.cairo" - }, - "parent_location": [ - { - "end_col": 45, - "end_line": 31, - "input_file": { - "filename": "autogen/starknet/storage_var/Sheet_cell_calldata/impl.cairo" - }, - "parent_location": [ - { - "end_col": 62, - "end_line": 21, - "input_file": { - "filename": "autogen/starknet/storage_var/Sheet_cell_calldata/decl.cairo" - }, - "parent_location": [ - { - "end_col": 19, - "end_line": 33, - "input_file": { - "filename": "autogen/starknet/storage_var/Sheet_cell_calldata/impl.cairo" - }, - "start_col": 9, - "start_line": 33 - }, - "While trying to retrieve the implicit argument 'pedersen_ptr' in:" - ], - "start_col": 36, - "start_line": 21 - }, - "While expanding the reference 'pedersen_ptr' in:" - ], - "start_col": 30, - "start_line": 31 - }, - "While trying to update the implicit return value 'pedersen_ptr' in:" - ], - "start_col": 15, - "start_line": 7 - } - }, - "2853": { - "accessible_scopes": [ - "sheet.library", - "sheet.library.Sheet_cell_calldata", - "sheet.library.Sheet_cell_calldata.write" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 58, - "end_line": 7, - "input_file": { - "filename": "autogen/starknet/storage_var/Sheet_cell_calldata/decl.cairo" - }, - "parent_location": [ - { - "end_col": 45, - "end_line": 31, - "input_file": { - "filename": "autogen/starknet/storage_var/Sheet_cell_calldata/impl.cairo" - }, - "parent_location": [ - { - "end_col": 79, - "end_line": 21, - "input_file": { - "filename": "autogen/starknet/storage_var/Sheet_cell_calldata/decl.cairo" - }, - "parent_location": [ - { - "end_col": 19, - "end_line": 33, - "input_file": { - "filename": "autogen/starknet/storage_var/Sheet_cell_calldata/impl.cairo" - }, - "start_col": 9, - "start_line": 33 - }, - "While trying to retrieve the implicit argument 'range_check_ptr' in:" - ], - "start_col": 64, - "start_line": 21 - }, - "While expanding the reference 'range_check_ptr' in:" - ], - "start_col": 30, - "start_line": 31 - }, - "While trying to update the implicit return value 'range_check_ptr' in:" - ], - "start_col": 43, - "start_line": 7 - } - }, - "2854": { - "accessible_scopes": [ - "sheet.library", - "sheet.library.Sheet_cell_calldata", - "sheet.library.Sheet_cell_calldata.write" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 19, - "end_line": 33, - "input_file": { - "filename": "autogen/starknet/storage_var/Sheet_cell_calldata/impl.cairo" - }, - "start_col": 9, - "start_line": 33 - } - }, - "2855": { - "accessible_scopes": [ - "sheet.library", - "sheet.library.Sheet_is_mint_open", - "sheet.library.Sheet_is_mint_open.addr" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 41, - "end_line": 7, - "input_file": { - "filename": "autogen/starknet/storage_var/Sheet_is_mint_open/impl.cairo" - }, - "parent_location": [ - { - "end_col": 41, - "end_line": 7, - "input_file": { - "filename": "autogen/starknet/storage_var/Sheet_is_mint_open/decl.cairo" - }, - "parent_location": [ - { - "end_col": 26, - "end_line": 9, - "input_file": { - "filename": "autogen/starknet/storage_var/Sheet_is_mint_open/impl.cairo" - }, - "start_col": 9, - "start_line": 9 - }, - "While trying to retrieve the implicit argument 'pedersen_ptr' in:" - ], - "start_col": 15, - "start_line": 7 - }, - "While expanding the reference 'pedersen_ptr' in:" - ], - "start_col": 15, - "start_line": 7 - } - }, - "2856": { - "accessible_scopes": [ - "sheet.library", - "sheet.library.Sheet_is_mint_open", - "sheet.library.Sheet_is_mint_open.addr" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 58, - "end_line": 7, - "input_file": { - "filename": "autogen/starknet/storage_var/Sheet_is_mint_open/impl.cairo" - }, - "parent_location": [ - { - "end_col": 58, - "end_line": 7, - "input_file": { - "filename": "autogen/starknet/storage_var/Sheet_is_mint_open/decl.cairo" - }, - "parent_location": [ - { - "end_col": 26, - "end_line": 9, - "input_file": { - "filename": "autogen/starknet/storage_var/Sheet_is_mint_open/impl.cairo" - }, - "start_col": 9, - "start_line": 9 - }, - "While trying to retrieve the implicit argument 'range_check_ptr' in:" - ], - "start_col": 43, - "start_line": 7 - }, - "While expanding the reference 'range_check_ptr' in:" - ], - "start_col": 43, - "start_line": 7 - } - }, - "2857": { - "accessible_scopes": [ - "sheet.library", - "sheet.library.Sheet_is_mint_open", - "sheet.library.Sheet_is_mint_open.addr" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 95, - "end_line": 8, - "input_file": { - "filename": "autogen/starknet/storage_var/Sheet_is_mint_open/impl.cairo" - }, - "parent_location": [ - { - "end_col": 24, - "end_line": 9, - "input_file": { - "filename": "autogen/starknet/storage_var/Sheet_is_mint_open/impl.cairo" - }, - "start_col": 21, - "start_line": 9 - }, - "While expanding the reference 'res' in:" - ], - "start_col": 19, - "start_line": 8 - } - }, - "2859": { - "accessible_scopes": [ - "sheet.library", - "sheet.library.Sheet_is_mint_open", - "sheet.library.Sheet_is_mint_open.addr" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 26, - "end_line": 9, - "input_file": { - "filename": "autogen/starknet/storage_var/Sheet_is_mint_open/impl.cairo" - }, - "start_col": 9, - "start_line": 9 - } - }, - "2860": { - "accessible_scopes": [ - "sheet.library", - "sheet.library.Sheet_is_mint_open", - "sheet.library.Sheet_is_mint_open.read" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 61, - "end_line": 12, - "input_file": { - "filename": "autogen/starknet/storage_var/Sheet_is_mint_open/impl.cairo" - }, - "parent_location": [ - { - "end_col": 41, - "end_line": 7, - "input_file": { - "filename": "autogen/starknet/storage_var/Sheet_is_mint_open/decl.cairo" - }, - "parent_location": [ - { - "end_col": 36, - "end_line": 13, - "input_file": { - "filename": "autogen/starknet/storage_var/Sheet_is_mint_open/impl.cairo" - }, - "start_col": 30, - "start_line": 13 - }, - "While trying to retrieve the implicit argument 'pedersen_ptr' in:" - ], - "start_col": 15, - "start_line": 7 - }, - "While expanding the reference 'pedersen_ptr' in:" - ], - "start_col": 35, - "start_line": 12 - } - }, - "2861": { - "accessible_scopes": [ - "sheet.library", - "sheet.library.Sheet_is_mint_open", - "sheet.library.Sheet_is_mint_open.read" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 78, - "end_line": 12, - "input_file": { - "filename": "autogen/starknet/storage_var/Sheet_is_mint_open/impl.cairo" - }, - "parent_location": [ - { - "end_col": 58, - "end_line": 7, - "input_file": { - "filename": "autogen/starknet/storage_var/Sheet_is_mint_open/decl.cairo" - }, - "parent_location": [ - { - "end_col": 36, - "end_line": 13, - "input_file": { - "filename": "autogen/starknet/storage_var/Sheet_is_mint_open/impl.cairo" - }, - "start_col": 30, - "start_line": 13 - }, - "While trying to retrieve the implicit argument 'range_check_ptr' in:" - ], - "start_col": 43, - "start_line": 7 - }, - "While expanding the reference 'range_check_ptr' in:" - ], - "start_col": 63, - "start_line": 12 - } - }, - "2862": { - "accessible_scopes": [ - "sheet.library", - "sheet.library.Sheet_is_mint_open", - "sheet.library.Sheet_is_mint_open.read" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 36, - "end_line": 13, - "input_file": { - "filename": "autogen/starknet/storage_var/Sheet_is_mint_open/impl.cairo" - }, - "start_col": 30, - "start_line": 13 - } - }, - "2864": { - "accessible_scopes": [ - "sheet.library", - "sheet.library.Sheet_is_mint_open", - "sheet.library.Sheet_is_mint_open.read" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 33, - "end_line": 12, - "input_file": { - "filename": "autogen/starknet/storage_var/Sheet_is_mint_open/impl.cairo" - }, - "parent_location": [ - { - "end_col": 37, - "end_line": 352, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/starknet/common/syscalls.cairo" - }, - "parent_location": [ - { - "end_col": 75, - "end_line": 14, - "input_file": { - "filename": "autogen/starknet/storage_var/Sheet_is_mint_open/impl.cairo" - }, - "start_col": 37, - "start_line": 14 - }, - "While trying to retrieve the implicit argument 'syscall_ptr' in:" - ], - "start_col": 19, - "start_line": 352 - }, - "While expanding the reference 'syscall_ptr' in:" - ], - "start_col": 15, - "start_line": 12 - } - }, - "2865": { - "accessible_scopes": [ - "sheet.library", - "sheet.library.Sheet_is_mint_open", - "sheet.library.Sheet_is_mint_open.read" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 26, - "end_line": 13, - "input_file": { - "filename": "autogen/starknet/storage_var/Sheet_is_mint_open/impl.cairo" - }, - "parent_location": [ - { - "end_col": 70, - "end_line": 14, - "input_file": { - "filename": "autogen/starknet/storage_var/Sheet_is_mint_open/impl.cairo" - }, - "start_col": 58, - "start_line": 14 - }, - "While expanding the reference 'storage_addr' in:" - ], - "start_col": 14, - "start_line": 13 - } - }, - "2866": { - "accessible_scopes": [ - "sheet.library", - "sheet.library.Sheet_is_mint_open", - "sheet.library.Sheet_is_mint_open.read" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 75, - "end_line": 14, - "input_file": { - "filename": "autogen/starknet/storage_var/Sheet_is_mint_open/impl.cairo" - }, - "start_col": 37, - "start_line": 14 - } - }, - "2868": { - "accessible_scopes": [ - "sheet.library", - "sheet.library.Sheet_is_mint_open", - "sheet.library.Sheet_is_mint_open.read" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 37, - "end_line": 352, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/starknet/common/syscalls.cairo" - }, - "parent_location": [ - { - "end_col": 75, - "end_line": 14, - "input_file": { - "filename": "autogen/starknet/storage_var/Sheet_is_mint_open/impl.cairo" - }, - "parent_location": [ - { - "end_col": 42, - "end_line": 16, - "input_file": { - "filename": "autogen/starknet/storage_var/Sheet_is_mint_open/impl.cairo" - }, - "start_col": 31, - "start_line": 16 - }, - "While expanding the reference 'syscall_ptr' in:" - ], - "start_col": 37, - "start_line": 14 - }, - "While trying to update the implicit return value 'syscall_ptr' in:" - ], - "start_col": 19, - "start_line": 352 - } - }, - "2869": { - "accessible_scopes": [ - "sheet.library", - "sheet.library.Sheet_is_mint_open", - "sheet.library.Sheet_is_mint_open.read" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 41, - "end_line": 7, - "input_file": { - "filename": "autogen/starknet/storage_var/Sheet_is_mint_open/decl.cairo" - }, - "parent_location": [ - { - "end_col": 36, - "end_line": 13, - "input_file": { - "filename": "autogen/starknet/storage_var/Sheet_is_mint_open/impl.cairo" - }, - "parent_location": [ - { - "end_col": 44, - "end_line": 17, - "input_file": { - "filename": "autogen/starknet/storage_var/Sheet_is_mint_open/impl.cairo" - }, - "start_col": 32, - "start_line": 17 - }, - "While expanding the reference 'pedersen_ptr' in:" - ], - "start_col": 30, - "start_line": 13 - }, - "While trying to update the implicit return value 'pedersen_ptr' in:" - ], - "start_col": 15, - "start_line": 7 - } - }, - "2870": { - "accessible_scopes": [ - "sheet.library", - "sheet.library.Sheet_is_mint_open", - "sheet.library.Sheet_is_mint_open.read" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 58, - "end_line": 7, - "input_file": { - "filename": "autogen/starknet/storage_var/Sheet_is_mint_open/decl.cairo" - }, - "parent_location": [ - { - "end_col": 36, - "end_line": 13, - "input_file": { - "filename": "autogen/starknet/storage_var/Sheet_is_mint_open/impl.cairo" - }, - "parent_location": [ - { - "end_col": 50, - "end_line": 18, - "input_file": { - "filename": "autogen/starknet/storage_var/Sheet_is_mint_open/impl.cairo" - }, - "start_col": 35, - "start_line": 18 - }, - "While expanding the reference 'range_check_ptr' in:" - ], - "start_col": 30, - "start_line": 13 - }, - "While trying to update the implicit return value 'range_check_ptr' in:" - ], - "start_col": 43, - "start_line": 7 - } - }, - "2871": { - "accessible_scopes": [ - "sheet.library", - "sheet.library.Sheet_is_mint_open", - "sheet.library.Sheet_is_mint_open.read" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 33, - "end_line": 14, - "input_file": { - "filename": "autogen/starknet/storage_var/Sheet_is_mint_open/impl.cairo" - }, - "parent_location": [ - { - "end_col": 64, - "end_line": 19, - "input_file": { - "filename": "autogen/starknet/storage_var/Sheet_is_mint_open/impl.cairo" - }, - "start_col": 45, - "start_line": 19 - }, - "While expanding the reference '__storage_var_temp0' in:" - ], - "start_col": 14, - "start_line": 14 - } - }, - "2872": { - "accessible_scopes": [ - "sheet.library", - "sheet.library.Sheet_is_mint_open", - "sheet.library.Sheet_is_mint_open.read" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 55, - "end_line": 20, - "input_file": { - "filename": "autogen/starknet/storage_var/Sheet_is_mint_open/impl.cairo" - }, - "start_col": 9, - "start_line": 20 - } - }, - "2873": { - "accessible_scopes": [ - "sheet.library", - "sheet.library.Sheet_is_mint_open", - "sheet.library.Sheet_is_mint_open.write" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 62, - "end_line": 23, - "input_file": { - "filename": "autogen/starknet/storage_var/Sheet_is_mint_open/impl.cairo" - }, - "parent_location": [ - { - "end_col": 41, - "end_line": 7, - "input_file": { - "filename": "autogen/starknet/storage_var/Sheet_is_mint_open/decl.cairo" - }, - "parent_location": [ - { - "end_col": 36, - "end_line": 24, - "input_file": { - "filename": "autogen/starknet/storage_var/Sheet_is_mint_open/impl.cairo" - }, - "start_col": 30, - "start_line": 24 - }, - "While trying to retrieve the implicit argument 'pedersen_ptr' in:" - ], - "start_col": 15, - "start_line": 7 - }, - "While expanding the reference 'pedersen_ptr' in:" - ], - "start_col": 36, - "start_line": 23 - } - }, - "2874": { - "accessible_scopes": [ - "sheet.library", - "sheet.library.Sheet_is_mint_open", - "sheet.library.Sheet_is_mint_open.write" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 79, - "end_line": 23, - "input_file": { - "filename": "autogen/starknet/storage_var/Sheet_is_mint_open/impl.cairo" - }, - "parent_location": [ - { - "end_col": 58, - "end_line": 7, - "input_file": { - "filename": "autogen/starknet/storage_var/Sheet_is_mint_open/decl.cairo" - }, - "parent_location": [ - { - "end_col": 36, - "end_line": 24, - "input_file": { - "filename": "autogen/starknet/storage_var/Sheet_is_mint_open/impl.cairo" - }, - "start_col": 30, - "start_line": 24 - }, - "While trying to retrieve the implicit argument 'range_check_ptr' in:" - ], - "start_col": 43, - "start_line": 7 - }, - "While expanding the reference 'range_check_ptr' in:" - ], - "start_col": 64, - "start_line": 23 - } - }, - "2875": { - "accessible_scopes": [ - "sheet.library", - "sheet.library.Sheet_is_mint_open", - "sheet.library.Sheet_is_mint_open.write" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 36, - "end_line": 24, - "input_file": { - "filename": "autogen/starknet/storage_var/Sheet_is_mint_open/impl.cairo" - }, - "start_col": 30, - "start_line": 24 - } - }, - "2877": { - "accessible_scopes": [ - "sheet.library", - "sheet.library.Sheet_is_mint_open", - "sheet.library.Sheet_is_mint_open.write" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 34, - "end_line": 23, - "input_file": { - "filename": "autogen/starknet/storage_var/Sheet_is_mint_open/impl.cairo" - }, - "parent_location": [ - { - "end_col": 38, - "end_line": 370, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/starknet/common/syscalls.cairo" - }, - "parent_location": [ - { - "end_col": 80, - "end_line": 25, - "input_file": { - "filename": "autogen/starknet/storage_var/Sheet_is_mint_open/impl.cairo" - }, - "start_col": 9, - "start_line": 25 - }, - "While trying to retrieve the implicit argument 'syscall_ptr' in:" - ], - "start_col": 20, - "start_line": 370 - }, - "While expanding the reference 'syscall_ptr' in:" - ], - "start_col": 16, - "start_line": 23 - } - }, - "2878": { - "accessible_scopes": [ - "sheet.library", - "sheet.library.Sheet_is_mint_open", - "sheet.library.Sheet_is_mint_open.write" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 26, - "end_line": 24, - "input_file": { - "filename": "autogen/starknet/storage_var/Sheet_is_mint_open/impl.cairo" - }, - "parent_location": [ - { - "end_col": 43, - "end_line": 25, - "input_file": { - "filename": "autogen/starknet/storage_var/Sheet_is_mint_open/impl.cairo" - }, - "start_col": 31, - "start_line": 25 - }, - "While expanding the reference 'storage_addr' in:" - ], - "start_col": 14, - "start_line": 24 - } - }, - "2879": { - "accessible_scopes": [ - "sheet.library", - "sheet.library.Sheet_is_mint_open", - "sheet.library.Sheet_is_mint_open.write" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 79, - "end_line": 25, - "input_file": { - "filename": "autogen/starknet/storage_var/Sheet_is_mint_open/impl.cairo" - }, - "start_col": 55, - "start_line": 25 - } - }, - "2880": { - "accessible_scopes": [ - "sheet.library", - "sheet.library.Sheet_is_mint_open", - "sheet.library.Sheet_is_mint_open.write" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 80, - "end_line": 25, - "input_file": { - "filename": "autogen/starknet/storage_var/Sheet_is_mint_open/impl.cairo" - }, - "start_col": 9, - "start_line": 25 - } - }, - "2882": { - "accessible_scopes": [ - "sheet.library", - "sheet.library.Sheet_is_mint_open", - "sheet.library.Sheet_is_mint_open.write" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 41, - "end_line": 7, - "input_file": { - "filename": "autogen/starknet/storage_var/Sheet_is_mint_open/decl.cairo" - }, - "parent_location": [ - { - "end_col": 36, - "end_line": 24, - "input_file": { - "filename": "autogen/starknet/storage_var/Sheet_is_mint_open/impl.cairo" - }, - "parent_location": [ - { - "end_col": 62, - "end_line": 19, - "input_file": { - "filename": "autogen/starknet/storage_var/Sheet_is_mint_open/decl.cairo" - }, - "parent_location": [ - { - "end_col": 19, - "end_line": 26, - "input_file": { - "filename": "autogen/starknet/storage_var/Sheet_is_mint_open/impl.cairo" - }, - "start_col": 9, - "start_line": 26 - }, - "While trying to retrieve the implicit argument 'pedersen_ptr' in:" - ], - "start_col": 36, - "start_line": 19 - }, - "While expanding the reference 'pedersen_ptr' in:" - ], - "start_col": 30, - "start_line": 24 - }, - "While trying to update the implicit return value 'pedersen_ptr' in:" - ], - "start_col": 15, - "start_line": 7 - } - }, - "2883": { - "accessible_scopes": [ - "sheet.library", - "sheet.library.Sheet_is_mint_open", - "sheet.library.Sheet_is_mint_open.write" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 58, - "end_line": 7, - "input_file": { - "filename": "autogen/starknet/storage_var/Sheet_is_mint_open/decl.cairo" - }, - "parent_location": [ - { - "end_col": 36, - "end_line": 24, - "input_file": { - "filename": "autogen/starknet/storage_var/Sheet_is_mint_open/impl.cairo" - }, - "parent_location": [ - { - "end_col": 79, - "end_line": 19, - "input_file": { - "filename": "autogen/starknet/storage_var/Sheet_is_mint_open/decl.cairo" - }, - "parent_location": [ - { - "end_col": 19, - "end_line": 26, - "input_file": { - "filename": "autogen/starknet/storage_var/Sheet_is_mint_open/impl.cairo" - }, - "start_col": 9, - "start_line": 26 - }, - "While trying to retrieve the implicit argument 'range_check_ptr' in:" - ], - "start_col": 64, - "start_line": 19 - }, - "While expanding the reference 'range_check_ptr' in:" - ], - "start_col": 30, - "start_line": 24 - }, - "While trying to update the implicit return value 'range_check_ptr' in:" - ], - "start_col": 43, - "start_line": 7 - } - }, - "2884": { - "accessible_scopes": [ - "sheet.library", - "sheet.library.Sheet_is_mint_open", - "sheet.library.Sheet_is_mint_open.write" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 19, - "end_line": 26, - "input_file": { - "filename": "autogen/starknet/storage_var/Sheet_is_mint_open/impl.cairo" - }, - "start_col": 9, - "start_line": 26 - } - }, - "2885": { - "accessible_scopes": [ - "sheet.library", - "sheet.library.Sheet", - "sheet.library.Sheet.set_cell" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 22, - "end_line": 98, - "input_file": { - "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" - }, - "start_col": 9, - "start_line": 98 - } - }, - "2887": { - "accessible_scopes": [ - "sheet.library", - "sheet.library.Sheet", - "sheet.library.Sheet.set_cell" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 37, - "end_line": 91, - "input_file": { - "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" - }, - "parent_location": [ - { - "end_col": 34, - "end_line": 21, - "input_file": { - "filename": "autogen/starknet/storage_var/Sheet_cell/decl.cairo" - }, - "parent_location": [ - { - "end_col": 10, - "end_line": 104, - "input_file": { - "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" - }, - "start_col": 9, - "start_line": 99 - }, - "While trying to retrieve the implicit argument 'syscall_ptr' in:" - ], - "start_col": 16, - "start_line": 21 - }, - "While expanding the reference 'syscall_ptr' in:" - ], - "start_col": 19, - "start_line": 91 - } - }, - "2888": { - "accessible_scopes": [ - "sheet.library", - "sheet.library.Sheet", - "sheet.library.Sheet.set_cell" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 65, - "end_line": 91, - "input_file": { - "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" - }, - "parent_location": [ - { - "end_col": 62, - "end_line": 21, - "input_file": { - "filename": "autogen/starknet/storage_var/Sheet_cell/decl.cairo" - }, - "parent_location": [ - { - "end_col": 10, - "end_line": 104, - "input_file": { - "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" - }, - "start_col": 9, - "start_line": 99 - }, - "While trying to retrieve the implicit argument 'pedersen_ptr' in:" - ], - "start_col": 36, - "start_line": 21 - }, - "While expanding the reference 'pedersen_ptr' in:" - ], - "start_col": 39, - "start_line": 91 - } - }, - "2889": { - "accessible_scopes": [ - "sheet.library", - "sheet.library.Sheet", - "sheet.library.Sheet.set_cell" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 82, - "end_line": 91, - "input_file": { - "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" - }, - "parent_location": [ - { - "end_col": 79, - "end_line": 21, - "input_file": { - "filename": "autogen/starknet/storage_var/Sheet_cell/decl.cairo" - }, - "parent_location": [ - { - "end_col": 10, - "end_line": 104, - "input_file": { - "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" - }, - "start_col": 9, - "start_line": 99 - }, - "While trying to retrieve the implicit argument 'range_check_ptr' in:" - ], - "start_col": 64, - "start_line": 21 - }, - "While expanding the reference 'range_check_ptr' in:" - ], - "start_col": 67, - "start_line": 91 - } - }, - "2890": { - "accessible_scopes": [ - "sheet.library", - "sheet.library.Sheet", - "sheet.library.Sheet.set_cell" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 23, - "end_line": 92, - "input_file": { - "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" - }, - "parent_location": [ - { - "end_col": 21, - "end_line": 100, - "input_file": { - "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" - }, - "start_col": 13, - "start_line": 100 - }, - "While expanding the reference 'token_id' in:" - ], - "start_col": 9, - "start_line": 92 - } - }, - "2891": { - "accessible_scopes": [ - "sheet.library", - "sheet.library.Sheet", - "sheet.library.Sheet.set_cell" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 31, - "end_line": 93, - "input_file": { - "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" - }, - "parent_location": [ - { - "end_col": 50, - "end_line": 102, - "input_file": { - "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" - }, - "start_col": 34, - "start_line": 102 - }, - "While expanding the reference 'contract_address' in:" - ], - "start_col": 9, - "start_line": 93 - } - }, - "2892": { - "accessible_scopes": [ - "sheet.library", - "sheet.library.Sheet", - "sheet.library.Sheet.set_cell" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 20, - "end_line": 94, - "input_file": { - "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" - }, - "parent_location": [ - { - "end_col": 63, - "end_line": 102, - "input_file": { - "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" - }, - "start_col": 58, - "start_line": 102 - }, - "While expanding the reference 'value' in:" - ], - "start_col": 9, - "start_line": 94 - } - }, - "2893": { - "accessible_scopes": [ - "sheet.library", - "sheet.library.Sheet", - "sheet.library.Sheet.set_cell" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 32, - "end_line": 95, - "input_file": { - "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" - }, - "parent_location": [ - { - "end_col": 95, - "end_line": 102, - "input_file": { - "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" - }, - "start_col": 78, - "start_line": 102 - }, - "While expanding the reference 'cell_calldata_len' in:" - ], - "start_col": 9, - "start_line": 95 - } - }, - "2894": { - "accessible_scopes": [ - "sheet.library", - "sheet.library.Sheet", - "sheet.library.Sheet.set_cell" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 10, - "end_line": 104, - "input_file": { - "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" - }, - "start_col": 9, - "start_line": 99 - } - }, - "2896": { - "accessible_scopes": [ - "sheet.library", - "sheet.library.Sheet", - "sheet.library.Sheet.set_cell" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 25, - "end_line": 105, - "input_file": { - "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" - }, - "start_col": 9, - "start_line": 105 - } - }, - "2898": { - "accessible_scopes": [ - "sheet.library", - "sheet.library.Sheet", - "sheet.library.Sheet.set_cell" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 23, - "end_line": 92, - "input_file": { - "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" - }, - "parent_location": [ - { - "end_col": 40, - "end_line": 106, - "input_file": { - "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" - }, - "start_col": 32, - "start_line": 106 - }, - "While expanding the reference 'token_id' in:" - ], - "start_col": 9, - "start_line": 92 - } - }, - "2899": { - "accessible_scopes": [ - "sheet.library", - "sheet.library.Sheet", - "sheet.library.Sheet.set_cell" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 20, - "end_line": 105, - "input_file": { - "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" - }, - "parent_location": [ - { - "end_col": 53, - "end_line": 106, - "input_file": { - "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" - }, - "start_col": 48, - "start_line": 106 - }, - "While expanding the reference 'index' in:" - ], - "start_col": 15, - "start_line": 105 - } - }, - "2900": { - "accessible_scopes": [ - "sheet.library", - "sheet.library.Sheet", - "sheet.library.Sheet.set_cell" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 32, - "end_line": 95, - "input_file": { - "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" - }, - "parent_location": [ - { - "end_col": 85, - "end_line": 106, - "input_file": { - "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" - }, - "start_col": 68, - "start_line": 106 - }, - "While expanding the reference 'cell_calldata_len' in:" - ], - "start_col": 9, - "start_line": 95 - } - }, - "2901": { - "accessible_scopes": [ - "sheet.library", - "sheet.library.Sheet", - "sheet.library.Sheet.set_cell" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 29, - "end_line": 96, - "input_file": { - "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" - }, - "parent_location": [ - { - "end_col": 26, - "end_line": 107, - "input_file": { - "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" - }, - "start_col": 13, - "start_line": 107 - }, - "While expanding the reference 'cell_calldata' in:" - ], - "start_col": 9, - "start_line": 96 - } - }, - "2902": { - "accessible_scopes": [ - "sheet.library", - "sheet.library.Sheet", - "sheet.library.Sheet.set_cell" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 10, - "end_line": 108, - "input_file": { - "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" - }, - "start_col": 9, - "start_line": 106 - } - }, - "2904": { - "accessible_scopes": [ - "sheet.library", - "sheet.library.Sheet", - "sheet.library.Sheet.set_cell" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 23, - "end_line": 248, - "input_file": { - "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" - }, - "parent_location": [ - { - "end_col": 10, - "end_line": 108, - "input_file": { - "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" - }, - "parent_location": [ - { - "end_col": 29, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/event/CellUpdated/a7a8ae41be29ac9f4f6c3b7837c448d787ca051dd1ade98f409e54d33d112504.cairo" - }, - "parent_location": [ - { - "end_col": 17, - "end_line": 24, - "input_file": { - "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" - }, - "parent_location": [ - { - "end_col": 60, - "end_line": 109, - "input_file": { - "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" - }, - "start_col": 9, - "start_line": 109 - }, - "While trying to retrieve the implicit argument 'syscall_ptr' in:" - ], - "start_col": 6, - "start_line": 24 - }, - "While handling event:" - ], - "start_col": 11, - "start_line": 1 - }, - "While expanding the reference 'syscall_ptr' in:" - ], - "start_col": 9, - "start_line": 106 - }, - "While trying to update the implicit return value 'syscall_ptr' in:" - ], - "start_col": 5, - "start_line": 248 - } - }, - "2905": { - "accessible_scopes": [ - "sheet.library", - "sheet.library.Sheet", - "sheet.library.Sheet.set_cell" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 20, - "end_line": 250, - "input_file": { - "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" - }, - "parent_location": [ - { - "end_col": 10, - "end_line": 108, - "input_file": { - "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" - }, - "parent_location": [ - { - "end_col": 46, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/event/CellUpdated/a7a8ae41be29ac9f4f6c3b7837c448d787ca051dd1ade98f409e54d33d112504.cairo" - }, - "parent_location": [ - { - "end_col": 17, - "end_line": 24, - "input_file": { - "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" - }, - "parent_location": [ - { - "end_col": 60, - "end_line": 109, - "input_file": { - "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" - }, - "start_col": 9, - "start_line": 109 - }, - "While trying to retrieve the implicit argument 'range_check_ptr' in:" - ], - "start_col": 6, - "start_line": 24 - }, - "While handling event:" - ], - "start_col": 31, - "start_line": 1 - }, - "While expanding the reference 'range_check_ptr' in:" - ], - "start_col": 9, - "start_line": 106 - }, - "While trying to update the implicit return value 'range_check_ptr' in:" - ], - "start_col": 5, - "start_line": 250 - } - }, - "2906": { - "accessible_scopes": [ - "sheet.library", - "sheet.library.Sheet", - "sheet.library.Sheet.set_cell" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 40, - "end_line": 106, - "input_file": { - "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" - }, - "parent_location": [ - { - "end_col": 34, - "end_line": 109, - "input_file": { - "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" - }, - "start_col": 26, - "start_line": 109 - }, - "While expanding the reference 'token_id' in:" - ], - "start_col": 32, - "start_line": 106 - } - }, - "2907": { - "accessible_scopes": [ - "sheet.library", - "sheet.library.Sheet", - "sheet.library.Sheet.set_cell" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 20, - "end_line": 94, - "input_file": { - "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" - }, - "parent_location": [ - { - "end_col": 41, - "end_line": 109, - "input_file": { - "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" - }, - "start_col": 36, - "start_line": 109 - }, - "While expanding the reference 'value' in:" - ], - "start_col": 9, - "start_line": 94 - } - }, - "2908": { - "accessible_scopes": [ - "sheet.library", - "sheet.library.Sheet", - "sheet.library.Sheet.set_cell" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 31, - "end_line": 93, - "input_file": { - "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" - }, - "parent_location": [ - { - "end_col": 59, - "end_line": 109, - "input_file": { - "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" - }, - "start_col": 43, - "start_line": 109 - }, - "While expanding the reference 'contract_address' in:" - ], - "start_col": 9, - "start_line": 93 - } - }, - "2909": { - "accessible_scopes": [ - "sheet.library", - "sheet.library.Sheet", - "sheet.library.Sheet.set_cell" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 60, - "end_line": 109, - "input_file": { - "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" - }, - "start_col": 9, - "start_line": 109 - } - }, - "2911": { - "accessible_scopes": [ - "sheet.library", - "sheet.library.Sheet", - "sheet.library.Sheet.set_cell" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 29, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/event/CellUpdated/a7a8ae41be29ac9f4f6c3b7837c448d787ca051dd1ade98f409e54d33d112504.cairo" - }, - "parent_location": [ - { - "end_col": 17, - "end_line": 24, - "input_file": { - "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" - }, - "parent_location": [ - { - "end_col": 60, - "end_line": 109, - "input_file": { - "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" - }, - "parent_location": [ - { - "end_col": 37, - "end_line": 91, - "input_file": { - "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" - }, - "parent_location": [ - { - "end_col": 19, - "end_line": 110, - "input_file": { - "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" - }, - "start_col": 9, - "start_line": 110 - }, - "While trying to retrieve the implicit argument 'syscall_ptr' in:" - ], - "start_col": 19, - "start_line": 91 - }, - "While expanding the reference 'syscall_ptr' in:" - ], - "start_col": 9, - "start_line": 109 - }, - "While trying to update the implicit return value 'syscall_ptr' in:" - ], - "start_col": 6, - "start_line": 24 - }, - "While handling event:" - ], - "start_col": 11, - "start_line": 1 - } - }, - "2912": { - "accessible_scopes": [ - "sheet.library", - "sheet.library.Sheet", - "sheet.library.Sheet.set_cell" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 31, - "end_line": 249, - "input_file": { - "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" - }, - "parent_location": [ - { - "end_col": 10, - "end_line": 108, - "input_file": { - "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" - }, - "parent_location": [ - { - "end_col": 65, - "end_line": 91, - "input_file": { - "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" - }, - "parent_location": [ - { - "end_col": 19, - "end_line": 110, - "input_file": { - "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" - }, - "start_col": 9, - "start_line": 110 - }, - "While trying to retrieve the implicit argument 'pedersen_ptr' in:" - ], - "start_col": 39, - "start_line": 91 - }, - "While expanding the reference 'pedersen_ptr' in:" - ], - "start_col": 9, - "start_line": 106 - }, - "While trying to update the implicit return value 'pedersen_ptr' in:" - ], - "start_col": 5, - "start_line": 249 - } - }, - "2913": { - "accessible_scopes": [ - "sheet.library", - "sheet.library.Sheet", - "sheet.library.Sheet.set_cell" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 46, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/event/CellUpdated/a7a8ae41be29ac9f4f6c3b7837c448d787ca051dd1ade98f409e54d33d112504.cairo" - }, - "parent_location": [ - { - "end_col": 17, - "end_line": 24, - "input_file": { - "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" - }, - "parent_location": [ - { - "end_col": 60, - "end_line": 109, - "input_file": { - "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" - }, - "parent_location": [ - { - "end_col": 82, - "end_line": 91, - "input_file": { - "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" - }, - "parent_location": [ - { - "end_col": 19, - "end_line": 110, - "input_file": { - "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" - }, - "start_col": 9, - "start_line": 110 - }, - "While trying to retrieve the implicit argument 'range_check_ptr' in:" - ], - "start_col": 67, - "start_line": 91 - }, - "While expanding the reference 'range_check_ptr' in:" - ], - "start_col": 9, - "start_line": 109 - }, - "While trying to update the implicit return value 'range_check_ptr' in:" - ], - "start_col": 6, - "start_line": 24 - }, - "While handling event:" - ], - "start_col": 31, - "start_line": 1 - } - }, - "2914": { - "accessible_scopes": [ - "sheet.library", - "sheet.library.Sheet", - "sheet.library.Sheet.set_cell" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 19, - "end_line": 110, - "input_file": { - "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" - }, - "start_col": 9, - "start_line": 110 - } - }, - "2915": { - "accessible_scopes": [ - "sheet.library", - "sheet.library.Sheet", - "sheet.library.Sheet.get_cell" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 22, - "end_line": 116, - "input_file": { - "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" - }, - "start_col": 9, - "start_line": 116 - } - }, - "2917": { - "accessible_scopes": [ - "sheet.library", - "sheet.library.Sheet", - "sheet.library.Sheet.get_cell" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 37, - "end_line": 113, - "input_file": { - "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" - }, - "parent_location": [ - { - "end_col": 36, - "end_line": 311, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" - }, - "parent_location": [ - { - "end_col": 50, - "end_line": 118, - "input_file": { - "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" - }, - "start_col": 22, - "start_line": 118 - }, - "While trying to retrieve the implicit argument 'syscall_ptr' in:" - ], - "start_col": 18, - "start_line": 311 - }, - "While expanding the reference 'syscall_ptr' in:" - ], - "start_col": 19, - "start_line": 113 - } - }, - "2918": { - "accessible_scopes": [ - "sheet.library", - "sheet.library.Sheet", - "sheet.library.Sheet.get_cell" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 65, - "end_line": 113, - "input_file": { - "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" - }, - "parent_location": [ - { - "end_col": 64, - "end_line": 311, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" - }, - "parent_location": [ - { - "end_col": 50, - "end_line": 118, - "input_file": { - "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" - }, - "start_col": 22, - "start_line": 118 - }, - "While trying to retrieve the implicit argument 'pedersen_ptr' in:" - ], - "start_col": 38, - "start_line": 311 - }, - "While expanding the reference 'pedersen_ptr' in:" - ], - "start_col": 39, - "start_line": 113 - } - }, - "2919": { - "accessible_scopes": [ - "sheet.library", - "sheet.library.Sheet", - "sheet.library.Sheet.get_cell" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 82, - "end_line": 113, - "input_file": { - "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" - }, - "parent_location": [ - { - "end_col": 81, - "end_line": 311, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" - }, - "parent_location": [ - { - "end_col": 50, - "end_line": 118, - "input_file": { - "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" - }, - "start_col": 22, - "start_line": 118 - }, - "While trying to retrieve the implicit argument 'range_check_ptr' in:" - ], - "start_col": 66, - "start_line": 311 - }, - "While expanding the reference 'range_check_ptr' in:" - ], - "start_col": 67, - "start_line": 113 - } - }, - "2920": { - "accessible_scopes": [ - "sheet.library", - "sheet.library.Sheet", - "sheet.library.Sheet.get_cell" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 23, - "end_line": 114, - "input_file": { - "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" - }, - "parent_location": [ - { - "end_col": 44, - "end_line": 117, - "input_file": { - "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" - }, - "parent_location": [ - { - "end_col": 49, - "end_line": 118, - "input_file": { - "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" - }, - "start_col": 37, - "start_line": 118 - }, - "While expanding the reference 'token_id_256' in:" - ], - "start_col": 36, - "start_line": 117 - }, - "While expanding the reference 'token_id' in:" - ], - "start_col": 9, - "start_line": 114 - } - }, - "2921": { - "accessible_scopes": [ - "sheet.library", - "sheet.library.Sheet", - "sheet.library.Sheet.get_cell" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 47, - "end_line": 117, - "input_file": { - "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" - }, - "parent_location": [ - { - "end_col": 49, - "end_line": 118, - "input_file": { - "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" - }, - "start_col": 37, - "start_line": 118 - }, - "While expanding the reference 'token_id_256' in:" - ], - "start_col": 46, - "start_line": 117 - } - }, - "2923": { - "accessible_scopes": [ - "sheet.library", - "sheet.library.Sheet", - "sheet.library.Sheet.get_cell" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 50, - "end_line": 118, - "input_file": { - "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" - }, - "start_col": 22, - "start_line": 118 - } - }, - "2925": { - "accessible_scopes": [ - "sheet.library", - "sheet.library.Sheet", - "sheet.library.Sheet.get_cell" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 11, - "end_line": 119, - "input_file": { - "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" - }, - "start_col": 9, - "start_line": 119 - } - }, - "2927": { - "accessible_scopes": [ - "sheet.library", - "sheet.library.Sheet", - "sheet.library.Sheet.get_cell" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 42, - "end_line": 120, - "input_file": { - "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" - }, - "start_col": 35, - "start_line": 120 - } - }, - "2929": { - "accessible_scopes": [ - "sheet.library", - "sheet.library.Sheet", - "sheet.library.Sheet.get_cell" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 36, - "end_line": 311, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" - }, - "parent_location": [ - { - "end_col": 50, - "end_line": 118, - "input_file": { - "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" - }, - "parent_location": [ - { - "end_col": 37, - "end_line": 113, - "input_file": { - "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" - }, - "parent_location": [ - { - "end_col": 47, - "end_line": 121, - "input_file": { - "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" - }, - "start_col": 13, - "start_line": 121 - }, - "While trying to retrieve the implicit argument 'syscall_ptr' in:" - ], - "start_col": 19, - "start_line": 113 - }, - "While expanding the reference 'syscall_ptr' in:" - ], - "start_col": 22, - "start_line": 118 - }, - "While trying to update the implicit return value 'syscall_ptr' in:" - ], - "start_col": 18, - "start_line": 311 - } - }, - "2930": { - "accessible_scopes": [ - "sheet.library", - "sheet.library.Sheet", - "sheet.library.Sheet.get_cell" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 64, - "end_line": 311, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" - }, - "parent_location": [ - { - "end_col": 50, - "end_line": 118, - "input_file": { - "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" - }, - "parent_location": [ - { - "end_col": 65, - "end_line": 113, - "input_file": { - "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" - }, - "parent_location": [ - { - "end_col": 47, - "end_line": 121, - "input_file": { - "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" - }, - "start_col": 13, - "start_line": 121 - }, - "While trying to retrieve the implicit argument 'pedersen_ptr' in:" - ], - "start_col": 39, - "start_line": 113 - }, - "While expanding the reference 'pedersen_ptr' in:" - ], - "start_col": 22, - "start_line": 118 - }, - "While trying to update the implicit return value 'pedersen_ptr' in:" - ], - "start_col": 38, - "start_line": 311 - } - }, - "2931": { - "accessible_scopes": [ - "sheet.library", - "sheet.library.Sheet", - "sheet.library.Sheet.get_cell" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 81, - "end_line": 311, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" - }, - "parent_location": [ - { - "end_col": 50, - "end_line": 118, - "input_file": { - "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" - }, - "parent_location": [ - { - "end_col": 82, - "end_line": 113, - "input_file": { - "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" - }, - "parent_location": [ - { - "end_col": 47, - "end_line": 121, - "input_file": { - "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" - }, - "start_col": 13, - "start_line": 121 - }, - "While trying to retrieve the implicit argument 'range_check_ptr' in:" - ], - "start_col": 67, - "start_line": 113 - }, - "While expanding the reference 'range_check_ptr' in:" - ], - "start_col": 22, - "start_line": 118 - }, - "While trying to update the implicit return value 'range_check_ptr' in:" - ], - "start_col": 66, - "start_line": 311 - } - }, - "2932": { - "accessible_scopes": [ - "sheet.library", - "sheet.library.Sheet", - "sheet.library.Sheet.get_cell" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 29, - "end_line": 121, - "input_file": { - "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" - }, - "start_col": 21, - "start_line": 121 - } - }, - "2934": { - "accessible_scopes": [ - "sheet.library", - "sheet.library.Sheet", - "sheet.library.Sheet.get_cell" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 32, - "end_line": 121, - "input_file": { - "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" - }, - "start_col": 31, - "start_line": 121 - } - }, - "2936": { - "accessible_scopes": [ - "sheet.library", - "sheet.library.Sheet", - "sheet.library.Sheet.get_cell" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 35, - "end_line": 121, - "input_file": { - "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" - }, - "start_col": 34, - "start_line": 121 - } - }, - "2938": { - "accessible_scopes": [ - "sheet.library", - "sheet.library.Sheet", - "sheet.library.Sheet.get_cell" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 32, - "end_line": 120, - "input_file": { - "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" - }, - "parent_location": [ - { - "end_col": 45, - "end_line": 121, - "input_file": { - "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" - }, - "start_col": 37, - "start_line": 121 - }, - "While expanding the reference 'calldata' in:" - ], - "start_col": 17, - "start_line": 120 - } - }, - "2939": { - "accessible_scopes": [ - "sheet.library", - "sheet.library.Sheet", - "sheet.library.Sheet.get_cell" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 47, - "end_line": 121, - "input_file": { - "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" - }, - "start_col": 13, - "start_line": 121 - } - }, - "2940": { - "accessible_scopes": [ - "sheet.library", - "sheet.library.Sheet", - "sheet.library.Sheet.get_cell" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 36, - "end_line": 311, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" - }, - "parent_location": [ - { - "end_col": 50, - "end_line": 118, - "input_file": { - "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" - }, - "parent_location": [ - { - "end_col": 33, - "end_line": 13, - "input_file": { - "filename": "autogen/starknet/storage_var/Sheet_cell/decl.cairo" - }, - "parent_location": [ - { - "end_col": 52, - "end_line": 123, - "input_file": { - "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" - }, - "start_col": 27, - "start_line": 123 - }, - "While trying to retrieve the implicit argument 'syscall_ptr' in:" - ], - "start_col": 15, - "start_line": 13 - }, - "While expanding the reference 'syscall_ptr' in:" - ], - "start_col": 22, - "start_line": 118 - }, - "While trying to update the implicit return value 'syscall_ptr' in:" - ], - "start_col": 18, - "start_line": 311 - } - }, - "2941": { - "accessible_scopes": [ - "sheet.library", - "sheet.library.Sheet", - "sheet.library.Sheet.get_cell" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 64, - "end_line": 311, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" - }, - "parent_location": [ - { - "end_col": 50, - "end_line": 118, - "input_file": { - "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" - }, - "parent_location": [ - { - "end_col": 61, - "end_line": 13, - "input_file": { - "filename": "autogen/starknet/storage_var/Sheet_cell/decl.cairo" - }, - "parent_location": [ - { - "end_col": 52, - "end_line": 123, - "input_file": { - "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" - }, - "start_col": 27, - "start_line": 123 - }, - "While trying to retrieve the implicit argument 'pedersen_ptr' in:" - ], - "start_col": 35, - "start_line": 13 - }, - "While expanding the reference 'pedersen_ptr' in:" - ], - "start_col": 22, - "start_line": 118 - }, - "While trying to update the implicit return value 'pedersen_ptr' in:" - ], - "start_col": 38, - "start_line": 311 - } - }, - "2942": { - "accessible_scopes": [ - "sheet.library", - "sheet.library.Sheet", - "sheet.library.Sheet.get_cell" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 81, - "end_line": 311, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" - }, - "parent_location": [ - { - "end_col": 50, - "end_line": 118, - "input_file": { - "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" - }, - "parent_location": [ - { - "end_col": 78, - "end_line": 13, - "input_file": { - "filename": "autogen/starknet/storage_var/Sheet_cell/decl.cairo" - }, - "parent_location": [ - { - "end_col": 52, - "end_line": 123, - "input_file": { - "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" - }, - "start_col": 27, - "start_line": 123 - }, - "While trying to retrieve the implicit argument 'range_check_ptr' in:" - ], - "start_col": 63, - "start_line": 13 - }, - "While expanding the reference 'range_check_ptr' in:" - ], - "start_col": 22, - "start_line": 118 - }, - "While trying to update the implicit return value 'range_check_ptr' in:" - ], - "start_col": 66, - "start_line": 311 - } - }, - "2943": { - "accessible_scopes": [ - "sheet.library", - "sheet.library.Sheet", - "sheet.library.Sheet.get_cell" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 23, - "end_line": 114, - "input_file": { - "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" - }, - "parent_location": [ - { - "end_col": 51, - "end_line": 123, - "input_file": { - "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" - }, - "start_col": 43, - "start_line": 123 - }, - "While expanding the reference 'token_id' in:" - ], - "start_col": 9, - "start_line": 114 - } - }, - "2944": { - "accessible_scopes": [ - "sheet.library", - "sheet.library.Sheet", - "sheet.library.Sheet.get_cell" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 52, - "end_line": 123, - "input_file": { - "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" - }, - "start_col": 27, - "start_line": 123 - } - }, - "2946": { - "accessible_scopes": [ - "sheet.library", - "sheet.library.Sheet", - "sheet.library.Sheet.get_cell" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 23, - "end_line": 123, - "input_file": { - "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" - }, - "parent_location": [ - { - "end_col": 23, - "end_line": 123, - "input_file": { - "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" - }, - "start_col": 14, - "start_line": 123 - }, - "While auto generating local variable for 'cell_data'." - ], - "start_col": 14, - "start_line": 123 - } - }, - "2947": { - "accessible_scopes": [ - "sheet.library", - "sheet.library.Sheet", - "sheet.library.Sheet.get_cell" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 23, - "end_line": 123, - "input_file": { - "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" - }, - "parent_location": [ - { - "end_col": 23, - "end_line": 123, - "input_file": { - "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" - }, - "start_col": 14, - "start_line": 123 - }, - "While auto generating local variable for 'cell_data'." - ], - "start_col": 14, - "start_line": 123 - } - }, - "2948": { - "accessible_scopes": [ - "sheet.library", - "sheet.library.Sheet", - "sheet.library.Sheet.get_cell" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 23, - "end_line": 123, - "input_file": { - "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" - }, - "parent_location": [ - { - "end_col": 23, - "end_line": 123, - "input_file": { - "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" - }, - "start_col": 14, - "start_line": 123 - }, - "While auto generating local variable for 'cell_data'." - ], - "start_col": 14, - "start_line": 123 - } - }, - "2949": { - "accessible_scopes": [ - "sheet.library", - "sheet.library.Sheet", - "sheet.library.Sheet.get_cell" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 46, - "end_line": 126, - "input_file": { - "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" - }, - "start_col": 39, - "start_line": 126 - } - }, - "2951": { - "accessible_scopes": [ - "sheet.library", - "sheet.library.Sheet", - "sheet.library.Sheet.get_cell" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 35, - "end_line": 126, - "input_file": { - "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" - }, - "start_col": 14, - "start_line": 126 - } - }, - "2952": { - "accessible_scopes": [ - "sheet.library", - "sheet.library.Sheet", - "sheet.library.Sheet.get_cell" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 33, - "end_line": 13, - "input_file": { - "filename": "autogen/starknet/storage_var/Sheet_cell/decl.cairo" - }, - "parent_location": [ - { - "end_col": 52, - "end_line": 123, - "input_file": { - "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" - }, - "parent_location": [ - { - "end_col": 23, - "end_line": 266, - "input_file": { - "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" - }, - "parent_location": [ - { - "end_col": 29, - "end_line": 128, - "input_file": { - "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" - }, - "start_col": 13, - "start_line": 128 - }, - "While trying to retrieve the implicit argument 'syscall_ptr' in:" - ], - "start_col": 5, - "start_line": 266 - }, - "While expanding the reference 'syscall_ptr' in:" - ], - "start_col": 27, - "start_line": 123 - }, - "While trying to update the implicit return value 'syscall_ptr' in:" - ], - "start_col": 15, - "start_line": 13 - } - }, - "2953": { - "accessible_scopes": [ - "sheet.library", - "sheet.library.Sheet", - "sheet.library.Sheet.get_cell" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 61, - "end_line": 13, - "input_file": { - "filename": "autogen/starknet/storage_var/Sheet_cell/decl.cairo" - }, - "parent_location": [ - { - "end_col": 52, - "end_line": 123, - "input_file": { - "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" - }, - "parent_location": [ - { - "end_col": 31, - "end_line": 267, - "input_file": { - "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" - }, - "parent_location": [ - { - "end_col": 29, - "end_line": 128, - "input_file": { - "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" - }, - "start_col": 13, - "start_line": 128 - }, - "While trying to retrieve the implicit argument 'pedersen_ptr' in:" - ], - "start_col": 5, - "start_line": 267 - }, - "While expanding the reference 'pedersen_ptr' in:" - ], - "start_col": 27, - "start_line": 123 - }, - "While trying to update the implicit return value 'pedersen_ptr' in:" - ], - "start_col": 35, - "start_line": 13 - } - }, - "2954": { - "accessible_scopes": [ - "sheet.library", - "sheet.library.Sheet", - "sheet.library.Sheet.get_cell" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 78, - "end_line": 13, - "input_file": { - "filename": "autogen/starknet/storage_var/Sheet_cell/decl.cairo" - }, - "parent_location": [ - { - "end_col": 52, - "end_line": 123, - "input_file": { - "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" - }, - "parent_location": [ - { - "end_col": 20, - "end_line": 268, - "input_file": { - "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" - }, - "parent_location": [ - { - "end_col": 29, - "end_line": 128, - "input_file": { - "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" - }, - "start_col": 13, - "start_line": 128 - }, - "While trying to retrieve the implicit argument 'range_check_ptr' in:" - ], - "start_col": 5, - "start_line": 268 - }, - "While expanding the reference 'range_check_ptr' in:" - ], - "start_col": 27, - "start_line": 123 - }, - "While trying to update the implicit return value 'range_check_ptr' in:" - ], - "start_col": 63, - "start_line": 13 - } - }, - "2955": { - "accessible_scopes": [ - "sheet.library", - "sheet.library.Sheet", - "sheet.library.Sheet.get_cell" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 23, - "end_line": 114, - "input_file": { - "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" - }, - "parent_location": [ - { - "end_col": 19, - "end_line": 269, - "input_file": { - "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" - }, - "parent_location": [ - { - "end_col": 29, - "end_line": 128, - "input_file": { - "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" - }, - "start_col": 13, - "start_line": 128 - }, - "While trying to retrieve the implicit argument 'token_id' in:" - ], - "start_col": 5, - "start_line": 269 - }, - "While expanding the reference 'token_id' in:" - ], - "start_col": 9, - "start_line": 114 - } - }, - "2956": { - "accessible_scopes": [ - "sheet.library", - "sheet.library.Sheet", - "sheet.library.Sheet.get_cell" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 50, - "end_line": 124, - "input_file": { - "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" - }, - "parent_location": [ - { - "end_col": 23, - "end_line": 270, - "input_file": { - "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" - }, - "parent_location": [ - { - "end_col": 29, - "end_line": 128, - "input_file": { - "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" - }, - "start_col": 13, - "start_line": 128 - }, - "While trying to retrieve the implicit argument 'calldata_len' in:" - ], - "start_col": 5, - "start_line": 270 - }, - "While expanding the reference 'calldata_len' in:" - ], - "start_col": 28, - "start_line": 124 - } - }, - "2957": { - "accessible_scopes": [ - "sheet.library", - "sheet.library.Sheet", - "sheet.library.Sheet.get_cell" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 28, - "end_line": 126, - "input_file": { - "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" - }, - "parent_location": [ - { - "end_col": 20, - "end_line": 271, - "input_file": { - "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" - }, - "parent_location": [ - { - "end_col": 29, - "end_line": 128, - "input_file": { - "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" - }, - "start_col": 13, - "start_line": 128 - }, - "While trying to retrieve the implicit argument 'calldata' in:" - ], - "start_col": 5, - "start_line": 271 - }, - "While expanding the reference 'calldata' in:" - ], - "start_col": 20, - "start_line": 126 - } - }, - "2958": { - "accessible_scopes": [ - "sheet.library", - "sheet.library.Sheet", - "sheet.library.Sheet.get_cell" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 28, - "end_line": 128, - "input_file": { - "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" - }, - "start_col": 27, - "start_line": 128 - } - }, - "2960": { - "accessible_scopes": [ - "sheet.library", - "sheet.library.Sheet", - "sheet.library.Sheet.get_cell" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 29, - "end_line": 128, - "input_file": { - "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" - }, - "start_col": 13, - "start_line": 128 - } - }, - "2962": { - "accessible_scopes": [ - "sheet.library", - "sheet.library.Sheet", - "sheet.library.Sheet.get_cell" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 23, - "end_line": 266, - "input_file": { - "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" - }, - "parent_location": [ - { - "end_col": 29, - "end_line": 128, - "input_file": { - "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" - }, - "parent_location": [ - { - "end_col": 37, - "end_line": 113, - "input_file": { - "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" - }, - "parent_location": [ - { - "end_col": 86, - "end_line": 130, - "input_file": { - "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" - }, - "start_col": 9, - "start_line": 130 - }, - "While trying to retrieve the implicit argument 'syscall_ptr' in:" - ], - "start_col": 19, - "start_line": 113 - }, - "While expanding the reference 'syscall_ptr' in:" - ], - "start_col": 13, - "start_line": 128 - }, - "While trying to update the implicit return value 'syscall_ptr' in:" - ], - "start_col": 5, - "start_line": 266 - } - }, - "2963": { - "accessible_scopes": [ - "sheet.library", - "sheet.library.Sheet", - "sheet.library.Sheet.get_cell" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 31, - "end_line": 267, - "input_file": { - "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" - }, - "parent_location": [ - { - "end_col": 29, - "end_line": 128, - "input_file": { - "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" - }, - "parent_location": [ - { - "end_col": 65, - "end_line": 113, - "input_file": { - "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" - }, - "parent_location": [ - { - "end_col": 86, - "end_line": 130, - "input_file": { - "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" - }, - "start_col": 9, - "start_line": 130 - }, - "While trying to retrieve the implicit argument 'pedersen_ptr' in:" - ], - "start_col": 39, - "start_line": 113 - }, - "While expanding the reference 'pedersen_ptr' in:" - ], - "start_col": 13, - "start_line": 128 - }, - "While trying to update the implicit return value 'pedersen_ptr' in:" - ], - "start_col": 5, - "start_line": 267 - } - }, - "2964": { - "accessible_scopes": [ - "sheet.library", - "sheet.library.Sheet", - "sheet.library.Sheet.get_cell" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 20, - "end_line": 268, - "input_file": { - "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" - }, - "parent_location": [ - { - "end_col": 29, - "end_line": 128, - "input_file": { - "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" - }, - "parent_location": [ - { - "end_col": 82, - "end_line": 113, - "input_file": { - "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" - }, - "parent_location": [ - { - "end_col": 86, - "end_line": 130, - "input_file": { - "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" - }, - "start_col": 9, - "start_line": 130 - }, - "While trying to retrieve the implicit argument 'range_check_ptr' in:" - ], - "start_col": 67, - "start_line": 113 - }, - "While expanding the reference 'range_check_ptr' in:" - ], - "start_col": 13, - "start_line": 128 - }, - "While trying to update the implicit return value 'range_check_ptr' in:" - ], - "start_col": 5, - "start_line": 268 - } - }, - "2965": { - "accessible_scopes": [ - "sheet.library", - "sheet.library.Sheet", - "sheet.library.Sheet.get_cell" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 43, - "end_line": 130, - "input_file": { - "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" - }, - "start_col": 17, - "start_line": 130 - } - }, - "2966": { - "accessible_scopes": [ - "sheet.library", - "sheet.library.Sheet", - "sheet.library.Sheet.get_cell" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 60, - "end_line": 130, - "input_file": { - "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" - }, - "start_col": 45, - "start_line": 130 - } - }, - "2967": { - "accessible_scopes": [ - "sheet.library", - "sheet.library.Sheet", - "sheet.library.Sheet.get_cell" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 23, - "end_line": 270, - "input_file": { - "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" - }, - "parent_location": [ - { - "end_col": 29, - "end_line": 128, - "input_file": { - "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" - }, - "parent_location": [ - { - "end_col": 74, - "end_line": 130, - "input_file": { - "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" - }, - "start_col": 62, - "start_line": 130 - }, - "While expanding the reference 'calldata_len' in:" - ], - "start_col": 13, - "start_line": 128 - }, - "While trying to update the implicit return value 'calldata_len' in:" - ], - "start_col": 5, - "start_line": 270 - } - }, - "2968": { - "accessible_scopes": [ - "sheet.library", - "sheet.library.Sheet", - "sheet.library.Sheet.get_cell" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 20, - "end_line": 271, - "input_file": { - "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" - }, - "parent_location": [ - { - "end_col": 29, - "end_line": 128, - "input_file": { - "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" - }, - "parent_location": [ - { - "end_col": 84, - "end_line": 130, - "input_file": { - "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" - }, - "start_col": 76, - "start_line": 130 - }, - "While expanding the reference 'calldata' in:" - ], - "start_col": 13, - "start_line": 128 - }, - "While trying to update the implicit return value 'calldata' in:" - ], - "start_col": 5, - "start_line": 271 - } - }, - "2969": { - "accessible_scopes": [ - "sheet.library", - "sheet.library.Sheet", - "sheet.library.Sheet.get_cell" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 86, - "end_line": 130, - "input_file": { - "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" - }, - "start_col": 9, - "start_line": 130 - } - }, - "2970": { - "accessible_scopes": [ - "sheet.library", - "sheet.library.Sheet", - "sheet.library.Sheet.render_cell" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 27, - "end_line": 134, - "input_file": { - "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" - }, - "parent_location": [ - { - "end_col": 23, - "end_line": 284, - "input_file": { - "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" - }, - "parent_location": [ - { - "end_col": 69, - "end_line": 137, - "input_file": { - "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" - }, - "start_col": 23, - "start_line": 137 - }, - "While trying to retrieve the implicit argument 'syscall_ptr' in:" - ], - "start_col": 5, - "start_line": 284 - }, - "While expanding the reference 'syscall_ptr' in:" - ], - "start_col": 9, - "start_line": 134 - } - }, - "2971": { - "accessible_scopes": [ - "sheet.library", - "sheet.library.Sheet", - "sheet.library.Sheet.render_cell" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 55, - "end_line": 134, - "input_file": { - "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" - }, - "parent_location": [ - { - "end_col": 31, - "end_line": 285, - "input_file": { - "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" - }, - "parent_location": [ - { - "end_col": 69, - "end_line": 137, - "input_file": { - "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" - }, - "start_col": 23, - "start_line": 137 - }, - "While trying to retrieve the implicit argument 'pedersen_ptr' in:" - ], - "start_col": 5, - "start_line": 285 - }, - "While expanding the reference 'pedersen_ptr' in:" - ], - "start_col": 29, - "start_line": 134 - } - }, - "2972": { - "accessible_scopes": [ - "sheet.library", - "sheet.library.Sheet", - "sheet.library.Sheet.render_cell" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 72, - "end_line": 134, - "input_file": { - "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" - }, - "parent_location": [ - { - "end_col": 20, - "end_line": 286, - "input_file": { - "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" - }, - "parent_location": [ - { - "end_col": 69, - "end_line": 137, - "input_file": { - "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" - }, - "start_col": 23, - "start_line": 137 - }, - "While trying to retrieve the implicit argument 'range_check_ptr' in:" - ], - "start_col": 5, - "start_line": 286 - }, - "While expanding the reference 'range_check_ptr' in:" - ], - "start_col": 57, - "start_line": 134 - } - }, - "2973": { - "accessible_scopes": [ - "sheet.library", - "sheet.library.Sheet", - "sheet.library.Sheet.render_cell" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 101, - "end_line": 134, - "input_file": { - "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" - }, - "parent_location": [ - { - "end_col": 32, - "end_line": 287, - "input_file": { - "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" - }, - "parent_location": [ - { - "end_col": 69, - "end_line": 137, - "input_file": { - "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" - }, - "start_col": 23, - "start_line": 137 - }, - "While trying to retrieve the implicit argument 'rendered_cells' in:" - ], - "start_col": 5, - "start_line": 287 - }, - "While expanding the reference 'rendered_cells' in:" - ], - "start_col": 74, - "start_line": 134 - } - }, - "2974": { - "accessible_scopes": [ - "sheet.library", - "sheet.library.Sheet", - "sheet.library.Sheet.render_cell" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 24, - "end_line": 136, - "input_file": { - "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" - }, - "parent_location": [ - { - "end_col": 58, - "end_line": 137, - "input_file": { - "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" - }, - "start_col": 54, - "start_line": 137 - }, - "While expanding the reference 'true' in:" - ], - "start_col": 20, - "start_line": 136 - } - }, - "2976": { - "accessible_scopes": [ - "sheet.library", - "sheet.library.Sheet", - "sheet.library.Sheet.render_cell" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 21, - "end_line": 135, - "input_file": { - "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" - }, - "parent_location": [ - { - "end_col": 68, - "end_line": 137, - "input_file": { - "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" - }, - "start_col": 60, - "start_line": 137 - }, - "While expanding the reference 'token_id' in:" - ], - "start_col": 7, - "start_line": 135 - } - }, - "2977": { - "accessible_scopes": [ - "sheet.library", - "sheet.library.Sheet", - "sheet.library.Sheet.render_cell" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 69, - "end_line": 137, - "input_file": { - "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" - }, - "start_col": 23, - "start_line": 137 - } - }, - "2979": { - "accessible_scopes": [ - "sheet.library", - "sheet.library.Sheet", - "sheet.library.Sheet.render_cell" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 23, - "end_line": 284, - "input_file": { - "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" - }, - "parent_location": [ - { - "end_col": 69, - "end_line": 137, - "input_file": { - "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" - }, - "parent_location": [ - { - "end_col": 33, - "end_line": 13, - "input_file": { - "filename": "autogen/starknet/storage_var/ERC721_owners/decl.cairo" - }, - "parent_location": [ - { - "end_col": 55, - "end_line": 139, - "input_file": { - "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" - }, - "start_col": 23, - "start_line": 139 - }, - "While trying to retrieve the implicit argument 'syscall_ptr' in:" - ], - "start_col": 15, - "start_line": 13 - }, - "While expanding the reference 'syscall_ptr' in:" - ], - "start_col": 23, - "start_line": 137 - }, - "While trying to update the implicit return value 'syscall_ptr' in:" - ], - "start_col": 5, - "start_line": 284 - } - }, - "2980": { - "accessible_scopes": [ - "sheet.library", - "sheet.library.Sheet", - "sheet.library.Sheet.render_cell" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 31, - "end_line": 285, - "input_file": { - "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" - }, - "parent_location": [ - { - "end_col": 69, - "end_line": 137, - "input_file": { - "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" - }, - "parent_location": [ - { - "end_col": 61, - "end_line": 13, - "input_file": { - "filename": "autogen/starknet/storage_var/ERC721_owners/decl.cairo" - }, - "parent_location": [ - { - "end_col": 55, - "end_line": 139, - "input_file": { - "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" - }, - "start_col": 23, - "start_line": 139 - }, - "While trying to retrieve the implicit argument 'pedersen_ptr' in:" - ], - "start_col": 35, - "start_line": 13 - }, - "While expanding the reference 'pedersen_ptr' in:" - ], - "start_col": 23, - "start_line": 137 - }, - "While trying to update the implicit return value 'pedersen_ptr' in:" - ], - "start_col": 5, - "start_line": 285 - } - }, - "2981": { - "accessible_scopes": [ - "sheet.library", - "sheet.library.Sheet", - "sheet.library.Sheet.render_cell" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 20, - "end_line": 286, - "input_file": { - "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" - }, - "parent_location": [ - { - "end_col": 69, - "end_line": 137, - "input_file": { - "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" - }, - "parent_location": [ - { - "end_col": 78, - "end_line": 13, - "input_file": { - "filename": "autogen/starknet/storage_var/ERC721_owners/decl.cairo" - }, - "parent_location": [ - { - "end_col": 55, - "end_line": 139, - "input_file": { - "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" - }, - "start_col": 23, - "start_line": 139 - }, - "While trying to retrieve the implicit argument 'range_check_ptr' in:" - ], - "start_col": 63, - "start_line": 13 - }, - "While expanding the reference 'range_check_ptr' in:" - ], - "start_col": 23, - "start_line": 137 - }, - "While trying to update the implicit return value 'range_check_ptr' in:" - ], - "start_col": 5, - "start_line": 286 - } - }, - "2982": { - "accessible_scopes": [ - "sheet.library", - "sheet.library.Sheet", - "sheet.library.Sheet.render_cell" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 21, - "end_line": 135, - "input_file": { - "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" - }, - "parent_location": [ - { - "end_col": 44, - "end_line": 138, - "input_file": { - "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" - }, - "parent_location": [ - { - "end_col": 54, - "end_line": 139, - "input_file": { - "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" - }, - "start_col": 42, - "start_line": 139 - }, - "While expanding the reference 'token_id_256' in:" - ], - "start_col": 36, - "start_line": 138 - }, - "While expanding the reference 'token_id' in:" - ], - "start_col": 7, - "start_line": 135 - } - }, - "2983": { - "accessible_scopes": [ - "sheet.library", - "sheet.library.Sheet", - "sheet.library.Sheet.render_cell" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 47, - "end_line": 138, - "input_file": { - "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" - }, - "parent_location": [ - { - "end_col": 54, - "end_line": 139, - "input_file": { - "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" - }, - "start_col": 42, - "start_line": 139 - }, - "While expanding the reference 'token_id_256' in:" - ], - "start_col": 46, - "start_line": 138 - } - }, - "2985": { - "accessible_scopes": [ - "sheet.library", - "sheet.library.Sheet", - "sheet.library.Sheet.render_cell" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 55, - "end_line": 139, - "input_file": { - "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" - }, - "start_col": 23, - "start_line": 139 - } - }, - "2987": { - "accessible_scopes": [ - "sheet.library", - "sheet.library.Sheet", - "sheet.library.Sheet.render_cell" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 33, - "end_line": 13, - "input_file": { - "filename": "autogen/starknet/storage_var/ERC721_owners/decl.cairo" - }, - "parent_location": [ - { - "end_col": 55, - "end_line": 139, - "input_file": { - "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" - }, - "parent_location": [ - { - "end_col": 27, - "end_line": 134, - "input_file": { - "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" - }, - "parent_location": [ - { - "end_col": 71, - "end_line": 140, - "input_file": { - "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" - }, - "start_col": 9, - "start_line": 140 - }, - "While trying to retrieve the implicit argument 'syscall_ptr' in:" - ], - "start_col": 9, - "start_line": 134 - }, - "While expanding the reference 'syscall_ptr' in:" - ], - "start_col": 23, - "start_line": 139 - }, - "While trying to update the implicit return value 'syscall_ptr' in:" - ], - "start_col": 15, - "start_line": 13 - } - }, - "2988": { - "accessible_scopes": [ - "sheet.library", - "sheet.library.Sheet", - "sheet.library.Sheet.render_cell" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 61, - "end_line": 13, - "input_file": { - "filename": "autogen/starknet/storage_var/ERC721_owners/decl.cairo" - }, - "parent_location": [ - { - "end_col": 55, - "end_line": 139, - "input_file": { - "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" - }, - "parent_location": [ - { - "end_col": 55, - "end_line": 134, - "input_file": { - "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" - }, - "parent_location": [ - { - "end_col": 71, - "end_line": 140, - "input_file": { - "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" - }, - "start_col": 9, - "start_line": 140 - }, - "While trying to retrieve the implicit argument 'pedersen_ptr' in:" - ], - "start_col": 29, - "start_line": 134 - }, - "While expanding the reference 'pedersen_ptr' in:" - ], - "start_col": 23, - "start_line": 139 - }, - "While trying to update the implicit return value 'pedersen_ptr' in:" - ], - "start_col": 35, - "start_line": 13 - } - }, - "2989": { - "accessible_scopes": [ - "sheet.library", - "sheet.library.Sheet", - "sheet.library.Sheet.render_cell" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 78, - "end_line": 13, - "input_file": { - "filename": "autogen/starknet/storage_var/ERC721_owners/decl.cairo" - }, - "parent_location": [ - { - "end_col": 55, - "end_line": 139, - "input_file": { - "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" - }, - "parent_location": [ - { - "end_col": 72, - "end_line": 134, - "input_file": { - "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" - }, - "parent_location": [ - { - "end_col": 71, - "end_line": 140, - "input_file": { - "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" - }, - "start_col": 9, - "start_line": 140 - }, - "While trying to retrieve the implicit argument 'range_check_ptr' in:" - ], - "start_col": 57, - "start_line": 134 - }, - "While expanding the reference 'range_check_ptr' in:" - ], - "start_col": 23, - "start_line": 139 - }, - "While trying to update the implicit return value 'range_check_ptr' in:" - ], - "start_col": 63, - "start_line": 13 - } - }, - "2990": { - "accessible_scopes": [ - "sheet.library", - "sheet.library.Sheet", - "sheet.library.Sheet.render_cell" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 32, - "end_line": 287, - "input_file": { - "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" - }, - "parent_location": [ - { - "end_col": 69, - "end_line": 137, - "input_file": { - "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" - }, - "parent_location": [ - { - "end_col": 101, - "end_line": 134, - "input_file": { - "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" - }, - "parent_location": [ - { - "end_col": 71, - "end_line": 140, - "input_file": { - "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" - }, - "start_col": 9, - "start_line": 140 - }, - "While trying to retrieve the implicit argument 'rendered_cells' in:" - ], - "start_col": 74, - "start_line": 134 - }, - "While expanding the reference 'rendered_cells' in:" - ], - "start_col": 23, - "start_line": 137 - }, - "While trying to update the implicit return value 'rendered_cells' in:" - ], - "start_col": 5, - "start_line": 287 - } - }, - "2991": { - "accessible_scopes": [ - "sheet.library", - "sheet.library.Sheet", - "sheet.library.Sheet.render_cell" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 21, - "end_line": 135, - "input_file": { - "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" - }, - "parent_location": [ - { - "end_col": 41, - "end_line": 140, - "input_file": { - "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" - }, - "start_col": 33, - "start_line": 140 - }, - "While expanding the reference 'token_id' in:" - ], - "start_col": 7, - "start_line": 135 - } - }, - "2992": { - "accessible_scopes": [ - "sheet.library", - "sheet.library.Sheet", - "sheet.library.Sheet.render_cell" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 19, - "end_line": 139, - "input_file": { - "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" - }, - "parent_location": [ - { - "end_col": 54, - "end_line": 140, - "input_file": { - "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" - }, - "start_col": 49, - "start_line": 140 - }, - "While expanding the reference 'owner' in:" - ], - "start_col": 14, - "start_line": 139 - } - }, - "2993": { - "accessible_scopes": [ - "sheet.library", - "sheet.library.Sheet", - "sheet.library.Sheet.render_cell" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 19, - "end_line": 137, - "input_file": { - "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" - }, - "parent_location": [ - { - "end_col": 67, - "end_line": 140, - "input_file": { - "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" - }, - "start_col": 62, - "start_line": 140 - }, - "While expanding the reference 'value' in:" - ], - "start_col": 14, - "start_line": 137 - } - }, - "2994": { - "accessible_scopes": [ - "sheet.library", - "sheet.library.Sheet", - "sheet.library.Sheet.render_cell" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 71, - "end_line": 140, - "input_file": { - "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" - }, - "start_col": 9, - "start_line": 140 - } - }, - "2995": { - "accessible_scopes": [ - "sheet.library", - "sheet.library.Sheet", - "sheet.library.Sheet.render_grid" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 22, - "end_line": 154, - "input_file": { - "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" - }, - "start_col": 9, - "start_line": 154 - } - }, - "2997": { - "accessible_scopes": [ - "sheet.library", - "sheet.library.Sheet", - "sheet.library.Sheet.render_grid" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 26, - "end_line": 155, - "input_file": { - "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" - }, - "start_col": 13, - "start_line": 155 - } - }, - "2998": { - "accessible_scopes": [ - "sheet.library", - "sheet.library.Sheet", - "sheet.library.Sheet.render_grid" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 11, - "end_line": 155, - "input_file": { - "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" - }, - "start_col": 9, - "start_line": 155 - } - }, - "3000": { - "accessible_scopes": [ - "sheet.library", - "sheet.library.Sheet", - "sheet.library.Sheet.render_grid" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 27, - "end_line": 147, - "input_file": { - "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" - }, - "parent_location": [ - { - "end_col": 27, - "end_line": 147, - "input_file": { - "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" - }, - "parent_location": [ - { - "end_col": 23, - "end_line": 156, - "input_file": { - "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" - }, - "start_col": 13, - "start_line": 156 - }, - "While trying to retrieve the implicit argument 'syscall_ptr' in:" - ], - "start_col": 9, - "start_line": 147 - }, - "While expanding the reference 'syscall_ptr' in:" - ], - "start_col": 9, - "start_line": 147 - } - }, - "3001": { - "accessible_scopes": [ - "sheet.library", - "sheet.library.Sheet", - "sheet.library.Sheet.render_grid" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 35, - "end_line": 148, - "input_file": { - "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" - }, - "parent_location": [ - { - "end_col": 35, - "end_line": 148, - "input_file": { - "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" - }, - "parent_location": [ - { - "end_col": 23, - "end_line": 156, - "input_file": { - "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" - }, - "start_col": 13, - "start_line": 156 - }, - "While trying to retrieve the implicit argument 'pedersen_ptr' in:" - ], - "start_col": 9, - "start_line": 148 - }, - "While expanding the reference 'pedersen_ptr' in:" - ], - "start_col": 9, - "start_line": 148 - } - }, - "3002": { - "accessible_scopes": [ - "sheet.library", - "sheet.library.Sheet", - "sheet.library.Sheet.render_grid" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 24, - "end_line": 149, - "input_file": { - "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" - }, - "parent_location": [ - { - "end_col": 24, - "end_line": 149, - "input_file": { - "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" - }, - "parent_location": [ - { - "end_col": 23, - "end_line": 156, - "input_file": { - "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" - }, - "start_col": 13, - "start_line": 156 - }, - "While trying to retrieve the implicit argument 'range_check_ptr' in:" - ], - "start_col": 9, - "start_line": 149 - }, - "While expanding the reference 'range_check_ptr' in:" - ], - "start_col": 9, - "start_line": 149 - } - }, - "3003": { - "accessible_scopes": [ - "sheet.library", - "sheet.library.Sheet", - "sheet.library.Sheet.render_grid" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 29, - "end_line": 150, - "input_file": { - "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" - }, - "parent_location": [ - { - "end_col": 29, - "end_line": 150, - "input_file": { - "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" - }, - "parent_location": [ - { - "end_col": 23, - "end_line": 156, - "input_file": { - "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" - }, - "start_col": 13, - "start_line": 156 - }, - "While trying to retrieve the implicit argument 'cells' in:" - ], - "start_col": 9, - "start_line": 150 - }, - "While expanding the reference 'cells' in:" - ], - "start_col": 9, - "start_line": 150 - } - }, - "3004": { - "accessible_scopes": [ - "sheet.library", - "sheet.library.Sheet", - "sheet.library.Sheet.render_grid" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 36, - "end_line": 151, - "input_file": { - "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" - }, - "parent_location": [ - { - "end_col": 36, - "end_line": 151, - "input_file": { - "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" - }, - "parent_location": [ - { - "end_col": 23, - "end_line": 156, - "input_file": { - "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" - }, - "start_col": 13, - "start_line": 156 - }, - "While trying to retrieve the implicit argument 'rendered_cells' in:" - ], - "start_col": 9, - "start_line": 151 - }, - "While expanding the reference 'rendered_cells' in:" - ], - "start_col": 9, - "start_line": 151 - } - }, - "3005": { - "accessible_scopes": [ - "sheet.library", - "sheet.library.Sheet", - "sheet.library.Sheet.render_grid" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 19, - "end_line": 152, - "input_file": { - "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" - }, - "parent_location": [ - { - "end_col": 19, - "end_line": 152, - "input_file": { - "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" - }, - "parent_location": [ - { - "end_col": 23, - "end_line": 156, - "input_file": { - "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" - }, - "start_col": 13, - "start_line": 156 - }, - "While trying to retrieve the implicit argument 'stop' in:" - ], - "start_col": 9, - "start_line": 152 - }, - "While expanding the reference 'stop' in:" - ], - "start_col": 9, - "start_line": 152 - } - }, - "3006": { - "accessible_scopes": [ - "sheet.library", - "sheet.library.Sheet", - "sheet.library.Sheet.render_grid" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 23, - "end_line": 156, - "input_file": { - "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" - }, - "start_col": 13, - "start_line": 156 - } - }, - "3007": { - "accessible_scopes": [ - "sheet.library", - "sheet.library.Sheet", - "sheet.library.Sheet.render_grid" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 27, - "end_line": 147, - "input_file": { - "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" - }, - "parent_location": [ - { - "end_col": 43, - "end_line": 59, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" - }, - "parent_location": [ - { - "end_col": 76, - "end_line": 158, - "input_file": { - "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" - }, - "start_col": 26, - "start_line": 158 - }, - "While trying to retrieve the implicit argument 'syscall_ptr' in:" - ], - "start_col": 25, - "start_line": 59 - }, - "While expanding the reference 'syscall_ptr' in:" - ], - "start_col": 9, - "start_line": 147 - } - }, - "3008": { - "accessible_scopes": [ - "sheet.library", - "sheet.library.Sheet", - "sheet.library.Sheet.render_grid" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 35, - "end_line": 148, - "input_file": { - "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" - }, - "parent_location": [ - { - "end_col": 71, - "end_line": 59, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" - }, - "parent_location": [ - { - "end_col": 76, - "end_line": 158, - "input_file": { - "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" - }, - "start_col": 26, - "start_line": 158 - }, - "While trying to retrieve the implicit argument 'pedersen_ptr' in:" - ], - "start_col": 45, - "start_line": 59 - }, - "While expanding the reference 'pedersen_ptr' in:" - ], - "start_col": 9, - "start_line": 148 - } - }, - "3009": { - "accessible_scopes": [ - "sheet.library", - "sheet.library.Sheet", - "sheet.library.Sheet.render_grid" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 24, - "end_line": 149, - "input_file": { - "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" - }, - "parent_location": [ - { - "end_col": 88, - "end_line": 59, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" - }, - "parent_location": [ - { - "end_col": 76, - "end_line": 158, - "input_file": { - "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" - }, - "start_col": 26, - "start_line": 158 - }, - "While trying to retrieve the implicit argument 'range_check_ptr' in:" - ], - "start_col": 73, - "start_line": 59 - }, - "While expanding the reference 'range_check_ptr' in:" - ], - "start_col": 9, - "start_line": 149 - } - }, - "3010": { - "accessible_scopes": [ - "sheet.library", - "sheet.library.Sheet", - "sheet.library.Sheet.render_grid" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 18, - "end_line": 153, - "input_file": { - "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" - }, - "parent_location": [ - { - "end_col": 71, - "end_line": 158, - "input_file": { - "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" - }, - "start_col": 66, - "start_line": 158 - }, - "While expanding the reference 'index' in:" - ], - "start_col": 7, - "start_line": 153 - } - }, - "3011": { - "accessible_scopes": [ - "sheet.library", - "sheet.library.Sheet", - "sheet.library.Sheet.render_grid" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 74, - "end_line": 158, - "input_file": { - "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" - }, - "start_col": 73, - "start_line": 158 - } - }, - "3013": { - "accessible_scopes": [ - "sheet.library", - "sheet.library.Sheet", - "sheet.library.Sheet.render_grid" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 76, - "end_line": 158, - "input_file": { - "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" - }, - "start_col": 26, - "start_line": 158 - } - }, - "3015": { - "accessible_scopes": [ - "sheet.library", - "sheet.library.Sheet", - "sheet.library.Sheet.render_grid" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 43, - "end_line": 59, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" - }, - "parent_location": [ - { - "end_col": 76, - "end_line": 158, - "input_file": { - "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" - }, - "parent_location": [ - { - "end_col": 27, - "end_line": 134, - "input_file": { - "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" - }, - "parent_location": [ - { - "end_col": 47, - "end_line": 159, - "input_file": { - "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" - }, - "start_col": 22, - "start_line": 159 - }, - "While trying to retrieve the implicit argument 'syscall_ptr' in:" - ], - "start_col": 9, - "start_line": 134 - }, - "While expanding the reference 'syscall_ptr' in:" - ], - "start_col": 26, - "start_line": 158 - }, - "While trying to update the implicit return value 'syscall_ptr' in:" - ], - "start_col": 25, - "start_line": 59 - } - }, - "3016": { - "accessible_scopes": [ - "sheet.library", - "sheet.library.Sheet", - "sheet.library.Sheet.render_grid" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 71, - "end_line": 59, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" - }, - "parent_location": [ - { - "end_col": 76, - "end_line": 158, - "input_file": { - "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" - }, - "parent_location": [ - { - "end_col": 55, - "end_line": 134, - "input_file": { - "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" - }, - "parent_location": [ - { - "end_col": 47, - "end_line": 159, - "input_file": { - "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" - }, - "start_col": 22, - "start_line": 159 - }, - "While trying to retrieve the implicit argument 'pedersen_ptr' in:" - ], - "start_col": 29, - "start_line": 134 - }, - "While expanding the reference 'pedersen_ptr' in:" - ], - "start_col": 26, - "start_line": 158 - }, - "While trying to update the implicit return value 'pedersen_ptr' in:" - ], - "start_col": 45, - "start_line": 59 - } - }, - "3017": { - "accessible_scopes": [ - "sheet.library", - "sheet.library.Sheet", - "sheet.library.Sheet.render_grid" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 88, - "end_line": 59, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" - }, - "parent_location": [ - { - "end_col": 76, - "end_line": 158, - "input_file": { - "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" - }, - "parent_location": [ - { - "end_col": 72, - "end_line": 134, - "input_file": { - "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" - }, - "parent_location": [ - { - "end_col": 47, - "end_line": 159, - "input_file": { - "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" - }, - "start_col": 22, - "start_line": 159 - }, - "While trying to retrieve the implicit argument 'range_check_ptr' in:" - ], - "start_col": 57, - "start_line": 134 - }, - "While expanding the reference 'range_check_ptr' in:" - ], - "start_col": 26, - "start_line": 158 - }, - "While trying to update the implicit return value 'range_check_ptr' in:" - ], - "start_col": 73, - "start_line": 59 - } - }, - "3018": { - "accessible_scopes": [ - "sheet.library", - "sheet.library.Sheet", - "sheet.library.Sheet.render_grid" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 36, - "end_line": 151, - "input_file": { - "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" - }, - "parent_location": [ - { - "end_col": 101, - "end_line": 134, - "input_file": { - "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" - }, - "parent_location": [ - { - "end_col": 47, - "end_line": 159, - "input_file": { - "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" - }, - "start_col": 22, - "start_line": 159 - }, - "While trying to retrieve the implicit argument 'rendered_cells' in:" - ], - "start_col": 74, - "start_line": 134 - }, - "While expanding the reference 'rendered_cells' in:" - ], - "start_col": 9, - "start_line": 151 - } - }, - "3019": { - "accessible_scopes": [ - "sheet.library", - "sheet.library.Sheet", - "sheet.library.Sheet.render_grid" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 46, - "end_line": 159, - "input_file": { - "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" - }, - "start_col": 34, - "start_line": 159 - } - }, - "3020": { - "accessible_scopes": [ - "sheet.library", - "sheet.library.Sheet", - "sheet.library.Sheet.render_grid" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 47, - "end_line": 159, - "input_file": { - "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" - }, - "start_col": 22, - "start_line": 159 - } - }, - "3022": { - "accessible_scopes": [ - "sheet.library", - "sheet.library.Sheet", - "sheet.library.Sheet.render_grid" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 42, - "end_line": 160, - "input_file": { - "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" - }, - "start_col": 25, - "start_line": 160 - } - }, - "3024": { - "accessible_scopes": [ - "sheet.library", - "sheet.library.Sheet", - "sheet.library.Sheet.render_grid" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 50, - "end_line": 160, - "input_file": { - "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" - }, - "start_col": 25, - "start_line": 160 - } - }, - "3025": { - "accessible_scopes": [ - "sheet.library", - "sheet.library.Sheet", - "sheet.library.Sheet.render_grid" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 50, - "end_line": 160, - "input_file": { - "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" - }, - "start_col": 17, - "start_line": 160 - } - }, - "3026": { - "accessible_scopes": [ - "sheet.library", - "sheet.library.Sheet", - "sheet.library.Sheet.render_grid" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 59, - "end_line": 160, - "input_file": { - "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" - }, - "start_col": 9, - "start_line": 160 - } - }, - "3027": { - "accessible_scopes": [ - "sheet.library", - "sheet.library.Sheet", - "sheet.library.Sheet.render_grid" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 42, - "end_line": 160, - "input_file": { - "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" - }, - "start_col": 25, - "start_line": 160 - } - }, - "3029": { - "accessible_scopes": [ - "sheet.library", - "sheet.library.Sheet", - "sheet.library.Sheet.render_grid" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 50, - "end_line": 160, - "input_file": { - "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" - }, - "start_col": 25, - "start_line": 160 - } - }, - "3030": { - "accessible_scopes": [ - "sheet.library", - "sheet.library.Sheet", - "sheet.library.Sheet.render_grid" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 51, - "end_line": 160, - "input_file": { - "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" - }, - "start_col": 16, - "start_line": 160 - } - }, - "3032": { - "accessible_scopes": [ - "sheet.library", - "sheet.library.Sheet", - "sheet.library.Sheet.render_grid" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 51, - "end_line": 160, - "input_file": { - "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" - }, - "start_col": 16, - "start_line": 160 - } - }, - "3033": { - "accessible_scopes": [ - "sheet.library", - "sheet.library.Sheet", - "sheet.library.Sheet.render_grid" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 59, - "end_line": 160, - "input_file": { - "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" - }, - "start_col": 9, - "start_line": 160 - } - }, - "3034": { - "accessible_scopes": [ - "sheet.library", - "sheet.library.Sheet", - "sheet.library.Sheet.render_grid" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 42, - "end_line": 160, - "input_file": { - "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" - }, - "start_col": 25, - "start_line": 160 - } - }, - "3036": { - "accessible_scopes": [ - "sheet.library", - "sheet.library.Sheet", - "sheet.library.Sheet.render_grid" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 50, - "end_line": 160, - "input_file": { - "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" - }, - "start_col": 25, - "start_line": 160 - } - }, - "3037": { - "accessible_scopes": [ - "sheet.library", - "sheet.library.Sheet", - "sheet.library.Sheet.render_grid" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 51, - "end_line": 160, - "input_file": { - "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" - }, - "start_col": 16, - "start_line": 160 - } - }, - "3039": { - "accessible_scopes": [ - "sheet.library", - "sheet.library.Sheet", - "sheet.library.Sheet.render_grid" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 51, - "end_line": 160, - "input_file": { - "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" - }, - "start_col": 16, - "start_line": 160 - } - }, - "3040": { - "accessible_scopes": [ - "sheet.library", - "sheet.library.Sheet", - "sheet.library.Sheet.render_grid" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 59, - "end_line": 160, - "input_file": { - "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" - }, - "start_col": 9, - "start_line": 160 - } - }, - "3041": { - "accessible_scopes": [ - "sheet.library", - "sheet.library.Sheet", - "sheet.library.Sheet.render_grid" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 27, - "end_line": 134, - "input_file": { - "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" - }, - "parent_location": [ - { - "end_col": 47, - "end_line": 159, - "input_file": { - "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" - }, - "parent_location": [ - { - "end_col": 27, - "end_line": 147, - "input_file": { - "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" - }, - "parent_location": [ - { - "end_col": 38, - "end_line": 161, - "input_file": { - "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" - }, - "start_col": 16, - "start_line": 161 - }, - "While trying to retrieve the implicit argument 'syscall_ptr' in:" - ], - "start_col": 9, - "start_line": 147 - }, - "While expanding the reference 'syscall_ptr' in:" - ], - "start_col": 22, - "start_line": 159 - }, - "While trying to update the implicit return value 'syscall_ptr' in:" - ], - "start_col": 9, - "start_line": 134 - } - }, - "3042": { - "accessible_scopes": [ - "sheet.library", - "sheet.library.Sheet", - "sheet.library.Sheet.render_grid" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 55, - "end_line": 134, - "input_file": { - "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" - }, - "parent_location": [ - { - "end_col": 47, - "end_line": 159, - "input_file": { - "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" - }, - "parent_location": [ - { - "end_col": 35, - "end_line": 148, - "input_file": { - "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" - }, - "parent_location": [ - { - "end_col": 38, - "end_line": 161, - "input_file": { - "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" - }, - "start_col": 16, - "start_line": 161 - }, - "While trying to retrieve the implicit argument 'pedersen_ptr' in:" - ], - "start_col": 9, - "start_line": 148 - }, - "While expanding the reference 'pedersen_ptr' in:" - ], - "start_col": 22, - "start_line": 159 - }, - "While trying to update the implicit return value 'pedersen_ptr' in:" - ], - "start_col": 29, - "start_line": 134 - } - }, - "3043": { - "accessible_scopes": [ - "sheet.library", - "sheet.library.Sheet", - "sheet.library.Sheet.render_grid" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 72, - "end_line": 134, - "input_file": { - "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" - }, - "parent_location": [ - { - "end_col": 47, - "end_line": 159, - "input_file": { - "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" - }, - "parent_location": [ - { - "end_col": 24, - "end_line": 149, - "input_file": { - "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" - }, - "parent_location": [ - { - "end_col": 38, - "end_line": 161, - "input_file": { - "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" - }, - "start_col": 16, - "start_line": 161 - }, - "While trying to retrieve the implicit argument 'range_check_ptr' in:" - ], - "start_col": 9, - "start_line": 149 - }, - "While expanding the reference 'range_check_ptr' in:" - ], - "start_col": 22, - "start_line": 159 - }, - "While trying to update the implicit return value 'range_check_ptr' in:" - ], - "start_col": 57, - "start_line": 134 - } - }, - "3044": { - "accessible_scopes": [ - "sheet.library", - "sheet.library.Sheet", - "sheet.library.Sheet.render_grid" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 29, - "end_line": 150, - "input_file": { - "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" - }, - "parent_location": [ - { - "end_col": 29, - "end_line": 150, - "input_file": { - "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" - }, - "parent_location": [ - { - "end_col": 38, - "end_line": 161, - "input_file": { - "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" - }, - "start_col": 16, - "start_line": 161 - }, - "While trying to retrieve the implicit argument 'cells' in:" - ], - "start_col": 9, - "start_line": 150 - }, - "While expanding the reference 'cells' in:" - ], - "start_col": 9, - "start_line": 150 - } - }, - "3045": { - "accessible_scopes": [ - "sheet.library", - "sheet.library.Sheet", - "sheet.library.Sheet.render_grid" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 101, - "end_line": 134, - "input_file": { - "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" - }, - "parent_location": [ - { - "end_col": 47, - "end_line": 159, - "input_file": { - "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" - }, - "parent_location": [ - { - "end_col": 36, - "end_line": 151, - "input_file": { - "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" - }, - "parent_location": [ - { - "end_col": 38, - "end_line": 161, - "input_file": { - "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" - }, - "start_col": 16, - "start_line": 161 - }, - "While trying to retrieve the implicit argument 'rendered_cells' in:" - ], - "start_col": 9, - "start_line": 151 - }, - "While expanding the reference 'rendered_cells' in:" - ], - "start_col": 22, - "start_line": 159 - }, - "While trying to update the implicit return value 'rendered_cells' in:" - ], - "start_col": 74, - "start_line": 134 - } - }, - "3046": { - "accessible_scopes": [ - "sheet.library", - "sheet.library.Sheet", - "sheet.library.Sheet.render_grid" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 19, - "end_line": 152, - "input_file": { - "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" - }, - "parent_location": [ - { - "end_col": 19, - "end_line": 152, - "input_file": { - "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" - }, - "parent_location": [ - { - "end_col": 38, - "end_line": 161, - "input_file": { - "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" - }, - "start_col": 16, - "start_line": 161 - }, - "While trying to retrieve the implicit argument 'stop' in:" - ], - "start_col": 9, - "start_line": 152 - }, - "While expanding the reference 'stop' in:" - ], - "start_col": 9, - "start_line": 152 - } - }, - "3047": { - "accessible_scopes": [ - "sheet.library", - "sheet.library.Sheet", - "sheet.library.Sheet.render_grid" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 37, - "end_line": 161, - "input_file": { - "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" - }, - "start_col": 28, - "start_line": 161 - } - }, - "3049": { - "accessible_scopes": [ - "sheet.library", - "sheet.library.Sheet", - "sheet.library.Sheet.render_grid" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 38, - "end_line": 161, - "input_file": { - "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" - }, - "start_col": 16, - "start_line": 161 - } - }, - "3051": { - "accessible_scopes": [ - "sheet.library", - "sheet.library.Sheet", - "sheet.library.Sheet.render_grid" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 39, - "end_line": 161, - "input_file": { - "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" - }, - "start_col": 9, - "start_line": 161 - } - }, - "3052": { - "accessible_scopes": [ - "sheet.library", - "sheet.library.Sheet", - "sheet.library.Sheet.mint" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 61, - "end_line": 164, - "input_file": { - "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" - }, - "parent_location": [ - { - "end_col": 40, - "end_line": 402, - "input_file": { - "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" - }, - "parent_location": [ - { - "end_col": 26, - "end_line": 167, - "input_file": { - "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" - }, - "start_col": 9, - "start_line": 167 - }, - "While trying to retrieve the implicit argument 'syscall_ptr' in:" - ], - "start_col": 22, - "start_line": 402 - }, - "While expanding the reference 'syscall_ptr' in:" - ], - "start_col": 43, - "start_line": 164 - } - }, - "3053": { - "accessible_scopes": [ - "sheet.library", - "sheet.library.Sheet", - "sheet.library.Sheet.mint" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 41, - "end_line": 164, - "input_file": { - "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" - }, - "parent_location": [ - { - "end_col": 68, - "end_line": 402, - "input_file": { - "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" - }, - "parent_location": [ - { - "end_col": 26, - "end_line": 167, - "input_file": { - "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" - }, - "start_col": 9, - "start_line": 167 - }, - "While trying to retrieve the implicit argument 'pedersen_ptr' in:" - ], - "start_col": 42, - "start_line": 402 - }, - "While expanding the reference 'pedersen_ptr' in:" - ], - "start_col": 15, - "start_line": 164 - } - }, - "3054": { - "accessible_scopes": [ - "sheet.library", - "sheet.library.Sheet", - "sheet.library.Sheet.mint" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 78, - "end_line": 164, - "input_file": { - "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" - }, - "parent_location": [ - { - "end_col": 85, - "end_line": 402, - "input_file": { - "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" - }, - "parent_location": [ - { - "end_col": 26, - "end_line": 167, - "input_file": { - "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" - }, - "start_col": 9, - "start_line": 167 - }, - "While trying to retrieve the implicit argument 'range_check_ptr' in:" - ], - "start_col": 70, - "start_line": 402 - }, - "While expanding the reference 'range_check_ptr' in:" - ], - "start_col": 63, - "start_line": 164 - } - }, - "3055": { - "accessible_scopes": [ - "sheet.library", - "sheet.library.Sheet", - "sheet.library.Sheet.mint" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 26, - "end_line": 167, - "input_file": { - "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" - }, - "start_col": 9, - "start_line": 167 - } - }, - "3057": { - "accessible_scopes": [ - "sheet.library", - "sheet.library.Sheet", - "sheet.library.Sheet.mint" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 40, - "end_line": 402, - "input_file": { - "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" - }, - "parent_location": [ - { - "end_col": 26, - "end_line": 167, - "input_file": { - "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" - }, - "parent_location": [ - { - "end_col": 43, - "end_line": 200, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/starknet/common/syscalls.cairo" - }, - "parent_location": [ - { - "end_col": 45, - "end_line": 168, - "input_file": { - "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" - }, - "start_col": 25, - "start_line": 168 - }, - "While trying to retrieve the implicit argument 'syscall_ptr' in:" - ], - "start_col": 25, - "start_line": 200 - }, - "While expanding the reference 'syscall_ptr' in:" - ], - "start_col": 9, - "start_line": 167 - }, - "While trying to update the implicit return value 'syscall_ptr' in:" - ], - "start_col": 22, - "start_line": 402 - } - }, - "3058": { - "accessible_scopes": [ - "sheet.library", - "sheet.library.Sheet", - "sheet.library.Sheet.mint" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 45, - "end_line": 168, - "input_file": { - "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" - }, - "start_col": 25, - "start_line": 168 - } - }, - "3060": { - "accessible_scopes": [ - "sheet.library", - "sheet.library.Sheet", - "sheet.library.Sheet.mint" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 43, - "end_line": 200, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/starknet/common/syscalls.cairo" - }, - "parent_location": [ - { - "end_col": 45, - "end_line": 168, - "input_file": { - "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" - }, - "parent_location": [ - { - "end_col": 23, - "end_line": 376, - "input_file": { - "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" - }, - "parent_location": [ - { - "end_col": 49, - "end_line": 170, - "input_file": { - "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" - }, - "start_col": 13, - "start_line": 170 - }, - "While trying to retrieve the implicit argument 'syscall_ptr' in:" - ], - "start_col": 5, - "start_line": 376 - }, - "While expanding the reference 'syscall_ptr' in:" - ], - "start_col": 25, - "start_line": 168 - }, - "While trying to update the implicit return value 'syscall_ptr' in:" - ], - "start_col": 25, - "start_line": 200 - } - }, - "3061": { - "accessible_scopes": [ - "sheet.library", - "sheet.library.Sheet", - "sheet.library.Sheet.mint" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 68, - "end_line": 402, - "input_file": { - "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" - }, - "parent_location": [ - { - "end_col": 26, - "end_line": 167, - "input_file": { - "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" - }, - "parent_location": [ - { - "end_col": 51, - "end_line": 376, - "input_file": { - "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" - }, - "parent_location": [ - { - "end_col": 49, - "end_line": 170, - "input_file": { - "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" - }, - "start_col": 13, - "start_line": 170 - }, - "While trying to retrieve the implicit argument 'pedersen_ptr' in:" - ], - "start_col": 25, - "start_line": 376 - }, - "While expanding the reference 'pedersen_ptr' in:" - ], - "start_col": 9, - "start_line": 167 - }, - "While trying to update the implicit return value 'pedersen_ptr' in:" - ], - "start_col": 42, - "start_line": 402 - } - }, - "3062": { - "accessible_scopes": [ - "sheet.library", - "sheet.library.Sheet", - "sheet.library.Sheet.mint" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 85, - "end_line": 402, - "input_file": { - "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" - }, - "parent_location": [ - { - "end_col": 26, - "end_line": 167, - "input_file": { - "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" - }, - "parent_location": [ - { - "end_col": 68, - "end_line": 376, - "input_file": { - "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" - }, - "parent_location": [ - { - "end_col": 49, - "end_line": 170, - "input_file": { - "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" - }, - "start_col": 13, - "start_line": 170 - }, - "While trying to retrieve the implicit argument 'range_check_ptr' in:" - ], - "start_col": 53, - "start_line": 376 - }, - "While expanding the reference 'range_check_ptr' in:" - ], - "start_col": 9, - "start_line": 167 - }, - "While trying to update the implicit return value 'range_check_ptr' in:" - ], - "start_col": 70, - "start_line": 402 - } - }, - "3063": { - "accessible_scopes": [ - "sheet.library", - "sheet.library.Sheet", - "sheet.library.Sheet.mint" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 21, - "end_line": 168, - "input_file": { - "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" - }, - "parent_location": [ - { - "end_col": 83, - "end_line": 376, - "input_file": { - "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" - }, - "parent_location": [ - { - "end_col": 49, - "end_line": 170, - "input_file": { - "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" - }, - "start_col": 13, - "start_line": 170 - }, - "While trying to retrieve the implicit argument 'address' in:" - ], - "start_col": 70, - "start_line": 376 - }, - "While expanding the reference 'address' in:" - ], - "start_col": 14, - "start_line": 168 - } - }, - "3064": { - "accessible_scopes": [ - "sheet.library", - "sheet.library.Sheet", - "sheet.library.Sheet.mint" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 43, - "end_line": 165, - "input_file": { - "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" - }, - "parent_location": [ - { - "end_col": 41, - "end_line": 170, - "input_file": { - "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" - }, - "start_col": 32, - "start_line": 170 - }, - "While expanding the reference 'proof_len' in:" - ], - "start_col": 28, - "start_line": 165 - } - }, - "3065": { - "accessible_scopes": [ - "sheet.library", - "sheet.library.Sheet", - "sheet.library.Sheet.mint" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 57, - "end_line": 165, - "input_file": { - "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" - }, - "parent_location": [ - { - "end_col": 48, - "end_line": 170, - "input_file": { - "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" - }, - "start_col": 43, - "start_line": 170 - }, - "While expanding the reference 'proof' in:" - ], - "start_col": 45, - "start_line": 165 - } - }, - "3066": { - "accessible_scopes": [ - "sheet.library", - "sheet.library.Sheet", - "sheet.library.Sheet.mint" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 49, - "end_line": 170, - "input_file": { - "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" - }, - "start_col": 13, - "start_line": 170 - } - }, - "3068": { - "accessible_scopes": [ - "sheet.library", - "sheet.library.Sheet", - "sheet.library.Sheet.mint" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 23, - "end_line": 376, - "input_file": { - "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" - }, - "parent_location": [ - { - "end_col": 49, - "end_line": 170, - "input_file": { - "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" - }, - "parent_location": [ - { - "end_col": 33, - "end_line": 13, - "input_file": { - "filename": "autogen/starknet/storage_var/Sheet_max_per_wallet/decl.cairo" - }, - "parent_location": [ - { - "end_col": 63, - "end_line": 171, - "input_file": { - "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" - }, - "start_col": 36, - "start_line": 171 - }, - "While trying to retrieve the implicit argument 'syscall_ptr' in:" - ], - "start_col": 15, - "start_line": 13 - }, - "While expanding the reference 'syscall_ptr' in:" - ], - "start_col": 13, - "start_line": 170 - }, - "While trying to update the implicit return value 'syscall_ptr' in:" - ], - "start_col": 5, - "start_line": 376 - } - }, - "3069": { - "accessible_scopes": [ - "sheet.library", - "sheet.library.Sheet", - "sheet.library.Sheet.mint" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 51, - "end_line": 376, - "input_file": { - "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" - }, - "parent_location": [ - { - "end_col": 49, - "end_line": 170, - "input_file": { - "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" - }, - "parent_location": [ - { - "end_col": 61, - "end_line": 13, - "input_file": { - "filename": "autogen/starknet/storage_var/Sheet_max_per_wallet/decl.cairo" - }, - "parent_location": [ - { - "end_col": 63, - "end_line": 171, - "input_file": { - "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" - }, - "start_col": 36, - "start_line": 171 - }, - "While trying to retrieve the implicit argument 'pedersen_ptr' in:" - ], - "start_col": 35, - "start_line": 13 - }, - "While expanding the reference 'pedersen_ptr' in:" - ], - "start_col": 13, - "start_line": 170 - }, - "While trying to update the implicit return value 'pedersen_ptr' in:" - ], - "start_col": 25, - "start_line": 376 - } - }, - "3070": { - "accessible_scopes": [ - "sheet.library", - "sheet.library.Sheet", - "sheet.library.Sheet.mint" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 68, - "end_line": 376, - "input_file": { - "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" - }, - "parent_location": [ - { - "end_col": 49, - "end_line": 170, - "input_file": { - "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" - }, - "parent_location": [ - { - "end_col": 78, - "end_line": 13, - "input_file": { - "filename": "autogen/starknet/storage_var/Sheet_max_per_wallet/decl.cairo" - }, - "parent_location": [ - { - "end_col": 63, - "end_line": 171, - "input_file": { - "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" - }, - "start_col": 36, - "start_line": 171 - }, - "While trying to retrieve the implicit argument 'range_check_ptr' in:" - ], - "start_col": 63, - "start_line": 13 - }, - "While expanding the reference 'range_check_ptr' in:" - ], - "start_col": 13, - "start_line": 170 - }, - "While trying to update the implicit return value 'range_check_ptr' in:" - ], - "start_col": 53, - "start_line": 376 - } - }, - "3071": { - "accessible_scopes": [ - "sheet.library", - "sheet.library.Sheet", - "sheet.library.Sheet.mint" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 63, - "end_line": 171, - "input_file": { - "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" - }, - "start_col": 36, - "start_line": 171 - } - }, - "3073": { - "accessible_scopes": [ - "sheet.library", - "sheet.library.Sheet", - "sheet.library.Sheet.mint" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 33, - "end_line": 13, - "input_file": { - "filename": "autogen/starknet/storage_var/Sheet_max_per_wallet/decl.cairo" - }, - "parent_location": [ - { - "end_col": 63, - "end_line": 171, - "input_file": { - "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" - }, - "parent_location": [ - { - "end_col": 23, - "end_line": 390, - "input_file": { - "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" - }, - "parent_location": [ - { - "end_col": 63, - "end_line": 172, - "input_file": { - "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" - }, - "start_col": 13, - "start_line": 172 - }, - "While trying to retrieve the implicit argument 'syscall_ptr' in:" - ], - "start_col": 5, - "start_line": 390 - }, - "While expanding the reference 'syscall_ptr' in:" - ], - "start_col": 36, - "start_line": 171 - }, - "While trying to update the implicit return value 'syscall_ptr' in:" - ], - "start_col": 15, - "start_line": 13 - } - }, - "3074": { - "accessible_scopes": [ - "sheet.library", - "sheet.library.Sheet", - "sheet.library.Sheet.mint" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 61, - "end_line": 13, - "input_file": { - "filename": "autogen/starknet/storage_var/Sheet_max_per_wallet/decl.cairo" - }, - "parent_location": [ - { - "end_col": 63, - "end_line": 171, - "input_file": { - "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" - }, - "parent_location": [ - { - "end_col": 51, - "end_line": 390, - "input_file": { - "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" - }, - "parent_location": [ - { - "end_col": 63, - "end_line": 172, - "input_file": { - "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" - }, - "start_col": 13, - "start_line": 172 - }, - "While trying to retrieve the implicit argument 'pedersen_ptr' in:" - ], - "start_col": 25, - "start_line": 390 - }, - "While expanding the reference 'pedersen_ptr' in:" - ], - "start_col": 36, - "start_line": 171 - }, - "While trying to update the implicit return value 'pedersen_ptr' in:" - ], - "start_col": 35, - "start_line": 13 - } - }, - "3075": { - "accessible_scopes": [ - "sheet.library", - "sheet.library.Sheet", - "sheet.library.Sheet.mint" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 78, - "end_line": 13, - "input_file": { - "filename": "autogen/starknet/storage_var/Sheet_max_per_wallet/decl.cairo" - }, - "parent_location": [ - { - "end_col": 63, - "end_line": 171, - "input_file": { - "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" - }, - "parent_location": [ - { - "end_col": 68, - "end_line": 390, - "input_file": { - "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" - }, - "parent_location": [ - { - "end_col": 63, - "end_line": 172, - "input_file": { - "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" - }, - "start_col": 13, - "start_line": 172 - }, - "While trying to retrieve the implicit argument 'range_check_ptr' in:" - ], - "start_col": 53, - "start_line": 390 - }, - "While expanding the reference 'range_check_ptr' in:" - ], - "start_col": 36, - "start_line": 171 - }, - "While trying to update the implicit return value 'range_check_ptr' in:" - ], - "start_col": 63, - "start_line": 13 - } - }, - "3076": { - "accessible_scopes": [ - "sheet.library", - "sheet.library.Sheet", - "sheet.library.Sheet.mint" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 83, - "end_line": 376, - "input_file": { - "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" - }, - "parent_location": [ - { - "end_col": 49, - "end_line": 170, - "input_file": { - "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" - }, - "parent_location": [ - { - "end_col": 83, - "end_line": 390, - "input_file": { - "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" - }, - "parent_location": [ - { - "end_col": 63, - "end_line": 172, - "input_file": { - "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" - }, - "start_col": 13, - "start_line": 172 - }, - "While trying to retrieve the implicit argument 'address' in:" - ], - "start_col": 70, - "start_line": 390 - }, - "While expanding the reference 'address' in:" - ], - "start_col": 13, - "start_line": 170 - }, - "While trying to update the implicit return value 'address' in:" - ], - "start_col": 70, - "start_line": 376 - } - }, - "3077": { - "accessible_scopes": [ - "sheet.library", - "sheet.library.Sheet", - "sheet.library.Sheet.mint" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 32, - "end_line": 171, - "input_file": { - "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" - }, - "parent_location": [ - { - "end_col": 62, - "end_line": 172, - "input_file": { - "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" - }, - "start_col": 48, - "start_line": 172 - }, - "While expanding the reference 'max_per_wallet' in:" - ], - "start_col": 18, - "start_line": 171 - } - }, - "3078": { - "accessible_scopes": [ - "sheet.library", - "sheet.library.Sheet", - "sheet.library.Sheet.mint" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 63, - "end_line": 172, - "input_file": { - "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" - }, - "start_col": 13, - "start_line": 172 - } - }, - "3080": { - "accessible_scopes": [ - "sheet.library", - "sheet.library.Sheet", - "sheet.library.Sheet.mint" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 51, - "end_line": 390, - "input_file": { - "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" - }, - "parent_location": [ - { - "end_col": 63, - "end_line": 172, - "input_file": { - "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" - }, - "parent_location": [ - { - "end_col": 42, - "end_line": 114, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" - }, - "parent_location": [ - { - "end_col": 50, - "end_line": 175, - "input_file": { - "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" - }, - "start_col": 9, - "start_line": 175 - }, - "While trying to retrieve the implicit argument 'pedersen_ptr' in:" - ], - "start_col": 16, - "start_line": 114 - }, - "While expanding the reference 'pedersen_ptr' in:" - ], - "start_col": 13, - "start_line": 172 - }, - "While trying to update the implicit return value 'pedersen_ptr' in:" - ], - "start_col": 25, - "start_line": 390 - } - }, - "3081": { - "accessible_scopes": [ - "sheet.library", - "sheet.library.Sheet", - "sheet.library.Sheet.mint" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 23, - "end_line": 390, - "input_file": { - "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" - }, - "parent_location": [ - { - "end_col": 63, - "end_line": 172, - "input_file": { - "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" - }, - "parent_location": [ - { - "end_col": 62, - "end_line": 114, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" - }, - "parent_location": [ - { - "end_col": 50, - "end_line": 175, - "input_file": { - "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" - }, - "start_col": 9, - "start_line": 175 - }, - "While trying to retrieve the implicit argument 'syscall_ptr' in:" - ], - "start_col": 44, - "start_line": 114 - }, - "While expanding the reference 'syscall_ptr' in:" - ], - "start_col": 13, - "start_line": 172 - }, - "While trying to update the implicit return value 'syscall_ptr' in:" - ], - "start_col": 5, - "start_line": 390 - } - }, - "3082": { - "accessible_scopes": [ - "sheet.library", - "sheet.library.Sheet", - "sheet.library.Sheet.mint" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 68, - "end_line": 390, - "input_file": { - "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" - }, - "parent_location": [ - { - "end_col": 63, - "end_line": 172, - "input_file": { - "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" - }, - "parent_location": [ - { - "end_col": 79, - "end_line": 114, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" - }, - "parent_location": [ - { - "end_col": 50, - "end_line": 175, - "input_file": { - "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" - }, - "start_col": 9, - "start_line": 175 - }, - "While trying to retrieve the implicit argument 'range_check_ptr' in:" - ], - "start_col": 64, - "start_line": 114 - }, - "While expanding the reference 'range_check_ptr' in:" - ], - "start_col": 13, - "start_line": 172 - }, - "While trying to update the implicit return value 'range_check_ptr' in:" - ], - "start_col": 53, - "start_line": 390 - } - }, - "3083": { - "accessible_scopes": [ - "sheet.library", - "sheet.library.Sheet", - "sheet.library.Sheet.mint" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 83, - "end_line": 390, - "input_file": { - "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" - }, - "parent_location": [ - { - "end_col": 63, - "end_line": 172, - "input_file": { - "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" - }, - "parent_location": [ - { - "end_col": 39, - "end_line": 175, - "input_file": { - "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" - }, - "start_col": 32, - "start_line": 175 - }, - "While expanding the reference 'address' in:" - ], - "start_col": 13, - "start_line": 172 - }, - "While trying to update the implicit return value 'address' in:" - ], - "start_col": 70, - "start_line": 390 - } - }, - "3084": { - "accessible_scopes": [ - "sheet.library", - "sheet.library.Sheet", - "sheet.library.Sheet.mint" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 26, - "end_line": 165, - "input_file": { - "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" - }, - "parent_location": [ - { - "end_col": 49, - "end_line": 175, - "input_file": { - "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" - }, - "start_col": 41, - "start_line": 175 - }, - "While expanding the reference 'token_id' in:" - ], - "start_col": 9, - "start_line": 165 - } - }, - "3085": { - "accessible_scopes": [ - "sheet.library", - "sheet.library.Sheet", - "sheet.library.Sheet.mint" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 26, - "end_line": 165, - "input_file": { - "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" - }, - "parent_location": [ - { - "end_col": 49, - "end_line": 175, - "input_file": { - "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" - }, - "start_col": 41, - "start_line": 175 - }, - "While expanding the reference 'token_id' in:" - ], - "start_col": 9, - "start_line": 165 - } - }, - "3086": { - "accessible_scopes": [ - "sheet.library", - "sheet.library.Sheet", - "sheet.library.Sheet.mint" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 50, - "end_line": 175, - "input_file": { - "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" - }, - "start_col": 9, - "start_line": 175 - } - }, - "3088": { - "accessible_scopes": [ - "sheet.library", - "sheet.library.Sheet", - "sheet.library.Sheet.mint" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 19, - "end_line": 176, - "input_file": { - "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" - }, - "start_col": 9, - "start_line": 176 - } - }, - "3089": { - "accessible_scopes": [ - "sheet.library", - "sheet.library.Sheet", - "sheet.library.Sheet.token_uri" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 22, - "end_line": 182, - "input_file": { - "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" - }, - "start_col": 9, - "start_line": 182 - } - }, - "3091": { - "accessible_scopes": [ - "sheet.library", - "sheet.library.Sheet", - "sheet.library.Sheet.token_uri" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 66, - "end_line": 179, - "input_file": { - "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" - }, - "parent_location": [ - { - "end_col": 36, - "end_line": 311, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" - }, - "parent_location": [ - { - "end_col": 46, - "end_line": 183, - "input_file": { - "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" - }, - "start_col": 22, - "start_line": 183 - }, - "While trying to retrieve the implicit argument 'syscall_ptr' in:" - ], - "start_col": 18, - "start_line": 311 - }, - "While expanding the reference 'syscall_ptr' in:" - ], - "start_col": 48, - "start_line": 179 - } - }, - "3092": { - "accessible_scopes": [ - "sheet.library", - "sheet.library.Sheet", - "sheet.library.Sheet.token_uri" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 46, - "end_line": 179, - "input_file": { - "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" - }, - "parent_location": [ - { - "end_col": 64, - "end_line": 311, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" - }, - "parent_location": [ - { - "end_col": 46, - "end_line": 183, - "input_file": { - "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" - }, - "start_col": 22, - "start_line": 183 - }, - "While trying to retrieve the implicit argument 'pedersen_ptr' in:" - ], - "start_col": 38, - "start_line": 311 - }, - "While expanding the reference 'pedersen_ptr' in:" - ], - "start_col": 20, - "start_line": 179 - } - }, - "3093": { - "accessible_scopes": [ - "sheet.library", - "sheet.library.Sheet", - "sheet.library.Sheet.token_uri" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 83, - "end_line": 179, - "input_file": { - "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" - }, - "parent_location": [ - { - "end_col": 81, - "end_line": 311, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" - }, - "parent_location": [ - { - "end_col": 46, - "end_line": 183, - "input_file": { - "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" - }, - "start_col": 22, - "start_line": 183 - }, - "While trying to retrieve the implicit argument 'range_check_ptr' in:" - ], - "start_col": 66, - "start_line": 311 - }, - "While expanding the reference 'range_check_ptr' in:" - ], - "start_col": 68, - "start_line": 179 - } - }, - "3094": { - "accessible_scopes": [ - "sheet.library", - "sheet.library.Sheet", - "sheet.library.Sheet.token_uri" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 26, - "end_line": 180, - "input_file": { - "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" - }, - "parent_location": [ - { - "end_col": 45, - "end_line": 183, - "input_file": { - "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" - }, - "start_col": 37, - "start_line": 183 - }, - "While expanding the reference 'token_id' in:" - ], - "start_col": 9, - "start_line": 180 - } - }, - "3095": { - "accessible_scopes": [ - "sheet.library", - "sheet.library.Sheet", - "sheet.library.Sheet.token_uri" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 26, - "end_line": 180, - "input_file": { - "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" - }, - "parent_location": [ - { - "end_col": 45, - "end_line": 183, - "input_file": { - "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" - }, - "start_col": 37, - "start_line": 183 - }, - "While expanding the reference 'token_id' in:" - ], - "start_col": 9, - "start_line": 180 - } - }, - "3096": { - "accessible_scopes": [ - "sheet.library", - "sheet.library.Sheet", - "sheet.library.Sheet.token_uri" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 46, - "end_line": 183, - "input_file": { - "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" - }, - "start_col": 22, - "start_line": 183 - } - }, - "3098": { - "accessible_scopes": [ - "sheet.library", - "sheet.library.Sheet", - "sheet.library.Sheet.token_uri" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 34, - "end_line": 185, - "input_file": { - "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" - }, - "start_col": 13, - "start_line": 185 - } - }, - "3100": { - "accessible_scopes": [ - "sheet.library", - "sheet.library.Sheet", - "sheet.library.Sheet.token_uri" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 88, - "end_line": 188, - "input_file": { - "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" - }, - "start_col": 75, - "start_line": 188 - } - }, - "3102": { - "accessible_scopes": [ - "sheet.library", - "sheet.library.Sheet", - "sheet.library.Sheet.token_uri" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 89, - "end_line": 188, - "input_file": { - "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" - }, - "start_col": 44, - "start_line": 188 - } - }, - "3104": { - "accessible_scopes": [ - "sheet.library", - "sheet.library.Sheet", - "sheet.library.Sheet.token_uri" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 40, - "end_line": 188, - "input_file": { - "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" - }, - "start_col": 14, - "start_line": 188 - } - }, - "3105": { - "accessible_scopes": [ - "sheet.library", - "sheet.library.Sheet", - "sheet.library.Sheet.token_uri" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 36, - "end_line": 311, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" - }, - "parent_location": [ - { - "end_col": 46, - "end_line": 183, - "input_file": { - "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" - }, - "parent_location": [ - { - "end_col": 23, - "end_line": 284, - "input_file": { - "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" - }, - "parent_location": [ - { - "end_col": 10, - "end_line": 194, - "input_file": { - "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" - }, - "start_col": 23, - "start_line": 192 - }, - "While trying to retrieve the implicit argument 'syscall_ptr' in:" - ], - "start_col": 5, - "start_line": 284 - }, - "While expanding the reference 'syscall_ptr' in:" - ], - "start_col": 22, - "start_line": 183 - }, - "While trying to update the implicit return value 'syscall_ptr' in:" - ], - "start_col": 18, - "start_line": 311 - } - }, - "3106": { - "accessible_scopes": [ - "sheet.library", - "sheet.library.Sheet", - "sheet.library.Sheet.token_uri" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 64, - "end_line": 311, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" - }, - "parent_location": [ - { - "end_col": 46, - "end_line": 183, - "input_file": { - "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" - }, - "parent_location": [ - { - "end_col": 31, - "end_line": 285, - "input_file": { - "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" - }, - "parent_location": [ - { - "end_col": 10, - "end_line": 194, - "input_file": { - "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" - }, - "start_col": 23, - "start_line": 192 - }, - "While trying to retrieve the implicit argument 'pedersen_ptr' in:" - ], - "start_col": 5, - "start_line": 285 - }, - "While expanding the reference 'pedersen_ptr' in:" - ], - "start_col": 22, - "start_line": 183 - }, - "While trying to update the implicit return value 'pedersen_ptr' in:" - ], - "start_col": 38, - "start_line": 311 - } - }, - "3107": { - "accessible_scopes": [ - "sheet.library", - "sheet.library.Sheet", - "sheet.library.Sheet.token_uri" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 81, - "end_line": 311, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" - }, - "parent_location": [ - { - "end_col": 46, - "end_line": 183, - "input_file": { - "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" - }, - "parent_location": [ - { - "end_col": 20, - "end_line": 286, - "input_file": { - "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" - }, - "parent_location": [ - { - "end_col": 10, - "end_line": 194, - "input_file": { - "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" - }, - "start_col": 23, - "start_line": 192 - }, - "While trying to retrieve the implicit argument 'range_check_ptr' in:" - ], - "start_col": 5, - "start_line": 286 - }, - "While expanding the reference 'range_check_ptr' in:" - ], - "start_col": 22, - "start_line": 183 - }, - "While trying to update the implicit return value 'range_check_ptr' in:" - ], - "start_col": 66, - "start_line": 311 - } - }, - "3108": { - "accessible_scopes": [ - "sheet.library", - "sheet.library.Sheet", - "sheet.library.Sheet.token_uri" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 40, - "end_line": 188, - "input_file": { - "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" - }, - "parent_location": [ - { - "end_col": 50, - "end_line": 189, - "input_file": { - "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" - }, - "parent_location": [ - { - "end_col": 65, - "end_line": 192, - "input_file": { - "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" - }, - "start_col": 51, - "start_line": 192 - }, - "While expanding the reference 'rendered_cells' in:" - ], - "start_col": 30, - "start_line": 189 - }, - "While expanding the reference 'rendered_cells_start' in:" - ], - "start_col": 20, - "start_line": 188 - } - }, - "3109": { - "accessible_scopes": [ - "sheet.library", - "sheet.library.Sheet", - "sheet.library.Sheet.token_uri" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 24, - "end_line": 191, - "input_file": { - "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" - }, - "parent_location": [ - { - "end_col": 89, - "end_line": 192, - "input_file": { - "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" - }, - "start_col": 85, - "start_line": 192 - }, - "While expanding the reference 'true' in:" - ], - "start_col": 20, - "start_line": 191 - } - }, - "3111": { - "accessible_scopes": [ - "sheet.library", - "sheet.library.Sheet", - "sheet.library.Sheet.token_uri" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 25, - "end_line": 193, - "input_file": { - "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" - }, - "start_col": 13, - "start_line": 193 - } - }, - "3112": { - "accessible_scopes": [ - "sheet.library", - "sheet.library.Sheet", - "sheet.library.Sheet.token_uri" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 10, - "end_line": 194, - "input_file": { - "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" - }, - "start_col": 23, - "start_line": 192 - } - }, - "3114": { - "accessible_scopes": [ - "sheet.library", - "sheet.library.Sheet", - "sheet.library.Sheet.token_uri" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 31, - "end_line": 285, - "input_file": { - "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" - }, - "parent_location": [ - { - "end_col": 10, - "end_line": 194, - "input_file": { - "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" - }, - "parent_location": [ - { - "end_col": 31, - "end_line": 285, - "input_file": { - "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" - }, - "parent_location": [ - { - "end_col": 10, - "end_line": 194, - "input_file": { - "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" - }, - "start_col": 23, - "start_line": 192 - }, - "While trying to update the implicit return value 'pedersen_ptr' in:" - ], - "start_col": 5, - "start_line": 285 - }, - "While auto generating local variable for 'pedersen_ptr'." - ], - "start_col": 23, - "start_line": 192 - }, - "While trying to update the implicit return value 'pedersen_ptr' in:" - ], - "start_col": 5, - "start_line": 285 - } - }, - "3115": { - "accessible_scopes": [ - "sheet.library", - "sheet.library.Sheet", - "sheet.library.Sheet.token_uri" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 23, - "end_line": 284, - "input_file": { - "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" - }, - "parent_location": [ - { - "end_col": 10, - "end_line": 194, - "input_file": { - "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" - }, - "parent_location": [ - { - "end_col": 23, - "end_line": 284, - "input_file": { - "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" - }, - "parent_location": [ - { - "end_col": 10, - "end_line": 194, - "input_file": { - "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" - }, - "start_col": 23, - "start_line": 192 - }, - "While trying to update the implicit return value 'syscall_ptr' in:" - ], - "start_col": 5, - "start_line": 284 - }, - "While auto generating local variable for 'syscall_ptr'." - ], - "start_col": 23, - "start_line": 192 - }, - "While trying to update the implicit return value 'syscall_ptr' in:" - ], - "start_col": 5, - "start_line": 284 - } - }, - "3116": { - "accessible_scopes": [ - "sheet.library", - "sheet.library.Sheet", - "sheet.library.Sheet.token_uri" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 19, - "end_line": 192, - "input_file": { - "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" - }, - "parent_location": [ - { - "end_col": 19, - "end_line": 192, - "input_file": { - "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" - }, - "start_col": 14, - "start_line": 192 - }, - "While auto generating local variable for 'value'." - ], - "start_col": 14, - "start_line": 192 - } - }, - "3117": { - "accessible_scopes": [ - "sheet.library", - "sheet.library.Sheet", - "sheet.library.Sheet.token_uri" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 20, - "end_line": 286, - "input_file": { - "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" - }, - "parent_location": [ - { - "end_col": 10, - "end_line": 194, - "input_file": { - "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" - }, - "parent_location": [ - { - "end_col": 43, - "end_line": 23, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/default_dict.cairo" - }, - "parent_location": [ - { - "end_col": 10, - "end_line": 197, - "input_file": { - "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" - }, - "start_col": 78, - "start_line": 195 - }, - "While trying to retrieve the implicit argument 'range_check_ptr' in:" - ], - "start_col": 28, - "start_line": 23 - }, - "While expanding the reference 'range_check_ptr' in:" - ], - "start_col": 23, - "start_line": 192 - }, - "While trying to update the implicit return value 'range_check_ptr' in:" - ], - "start_col": 5, - "start_line": 286 - } - }, - "3118": { - "accessible_scopes": [ - "sheet.library", - "sheet.library.Sheet", - "sheet.library.Sheet.token_uri" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 40, - "end_line": 188, - "input_file": { - "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" - }, - "parent_location": [ - { - "end_col": 33, - "end_line": 196, - "input_file": { - "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" - }, - "start_col": 13, - "start_line": 196 - }, - "While expanding the reference 'rendered_cells_start' in:" - ], - "start_col": 20, - "start_line": 188 - } - }, - "3119": { - "accessible_scopes": [ - "sheet.library", - "sheet.library.Sheet", - "sheet.library.Sheet.token_uri" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 65, - "end_line": 192, - "input_file": { - "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" - }, - "parent_location": [ - { - "end_col": 49, - "end_line": 196, - "input_file": { - "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" - }, - "start_col": 35, - "start_line": 196 - }, - "While expanding the reference 'rendered_cells' in:" - ], - "start_col": 51, - "start_line": 192 - } - }, - "3120": { - "accessible_scopes": [ - "sheet.library", - "sheet.library.Sheet", - "sheet.library.Sheet.token_uri" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 64, - "end_line": 196, - "input_file": { - "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" - }, - "start_col": 51, - "start_line": 196 - } - }, - "3122": { - "accessible_scopes": [ - "sheet.library", - "sheet.library.Sheet", - "sheet.library.Sheet.token_uri" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 10, - "end_line": 197, - "input_file": { - "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" - }, - "start_col": 78, - "start_line": 195 - } - }, - "3124": { - "accessible_scopes": [ - "sheet.library", - "sheet.library.Sheet", - "sheet.library.Sheet.token_uri" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 31, - "end_line": 285, - "input_file": { - "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" - }, - "parent_location": [ - { - "end_col": 10, - "end_line": 194, - "input_file": { - "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" - }, - "parent_location": [ - { - "end_col": 31, - "end_line": 285, - "input_file": { - "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" - }, - "parent_location": [ - { - "end_col": 10, - "end_line": 194, - "input_file": { - "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" - }, - "parent_location": [ - { - "end_col": 44, - "end_line": 198, - "input_file": { - "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" - }, - "start_col": 32, - "start_line": 198 - }, - "While expanding the reference 'pedersen_ptr' in:" - ], - "start_col": 23, - "start_line": 192 - }, - "While trying to update the implicit return value 'pedersen_ptr' in:" - ], - "start_col": 5, - "start_line": 285 - }, - "While auto generating local variable for 'pedersen_ptr'." - ], - "start_col": 23, - "start_line": 192 - }, - "While trying to update the implicit return value 'pedersen_ptr' in:" - ], - "start_col": 5, - "start_line": 285 - } - }, - "3125": { - "accessible_scopes": [ - "sheet.library", - "sheet.library.Sheet", - "sheet.library.Sheet.token_uri" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 23, - "end_line": 284, - "input_file": { - "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" - }, - "parent_location": [ - { - "end_col": 10, - "end_line": 194, - "input_file": { - "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" - }, - "parent_location": [ - { - "end_col": 23, - "end_line": 284, - "input_file": { - "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" - }, - "parent_location": [ - { - "end_col": 10, - "end_line": 194, - "input_file": { - "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" - }, - "parent_location": [ - { - "end_col": 33, - "end_line": 90, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" - }, - "parent_location": [ - { - "end_col": 35, - "end_line": 200, - "input_file": { - "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" - }, - "start_col": 22, - "start_line": 200 - }, - "While trying to retrieve the implicit argument 'syscall_ptr' in:" - ], - "start_col": 15, - "start_line": 90 - }, - "While expanding the reference 'syscall_ptr' in:" - ], - "start_col": 23, - "start_line": 192 - }, - "While trying to update the implicit return value 'syscall_ptr' in:" - ], - "start_col": 5, - "start_line": 284 - }, - "While auto generating local variable for 'syscall_ptr'." - ], - "start_col": 23, - "start_line": 192 - }, - "While trying to update the implicit return value 'syscall_ptr' in:" - ], - "start_col": 5, - "start_line": 284 - } - }, - "3126": { - "accessible_scopes": [ - "sheet.library", - "sheet.library.Sheet", - "sheet.library.Sheet.token_uri" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 29, - "end_line": 198, - "input_file": { - "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" - }, - "parent_location": [ - { - "end_col": 61, - "end_line": 90, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" - }, - "parent_location": [ - { - "end_col": 35, - "end_line": 200, - "input_file": { - "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" - }, - "start_col": 22, - "start_line": 200 - }, - "While trying to retrieve the implicit argument 'pedersen_ptr' in:" - ], - "start_col": 35, - "start_line": 90 - }, - "While expanding the reference 'pedersen_ptr' in:" - ], - "start_col": 17, - "start_line": 198 - } - }, - "3127": { - "accessible_scopes": [ - "sheet.library", - "sheet.library.Sheet", - "sheet.library.Sheet.token_uri" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 43, - "end_line": 23, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/default_dict.cairo" - }, - "parent_location": [ - { - "end_col": 10, - "end_line": 197, - "input_file": { - "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" - }, - "parent_location": [ - { - "end_col": 78, - "end_line": 90, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" - }, - "parent_location": [ - { - "end_col": 35, - "end_line": 200, - "input_file": { - "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" - }, - "start_col": 22, - "start_line": 200 - }, - "While trying to retrieve the implicit argument 'range_check_ptr' in:" - ], - "start_col": 63, - "start_line": 90 - }, - "While expanding the reference 'range_check_ptr' in:" - ], - "start_col": 78, - "start_line": 195 - }, - "While trying to update the implicit return value 'range_check_ptr' in:" - ], - "start_col": 28, - "start_line": 23 - } - }, - "3128": { - "accessible_scopes": [ - "sheet.library", - "sheet.library.Sheet", - "sheet.library.Sheet.token_uri" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 35, - "end_line": 200, - "input_file": { - "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" - }, - "start_col": 22, - "start_line": 200 - } - }, - "3130": { - "accessible_scopes": [ - "sheet.library", - "sheet.library.Sheet", - "sheet.library.Sheet.token_uri" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 33, - "end_line": 90, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" - }, - "parent_location": [ - { - "end_col": 35, - "end_line": 200, - "input_file": { - "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" - }, - "parent_location": [ - { - "end_col": 33, - "end_line": 13, - "input_file": { - "filename": "autogen/starknet/storage_var/Sheet_cell_renderer/decl.cairo" - }, - "parent_location": [ - { - "end_col": 60, - "end_line": 201, - "input_file": { - "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" - }, - "start_col": 34, - "start_line": 201 - }, - "While trying to retrieve the implicit argument 'syscall_ptr' in:" - ], - "start_col": 15, - "start_line": 13 - }, - "While expanding the reference 'syscall_ptr' in:" - ], - "start_col": 22, - "start_line": 200 - }, - "While trying to update the implicit return value 'syscall_ptr' in:" - ], - "start_col": 15, - "start_line": 90 - } - }, - "3131": { - "accessible_scopes": [ - "sheet.library", - "sheet.library.Sheet", - "sheet.library.Sheet.token_uri" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 61, - "end_line": 90, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" - }, - "parent_location": [ - { - "end_col": 35, - "end_line": 200, - "input_file": { - "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" - }, - "parent_location": [ - { - "end_col": 61, - "end_line": 13, - "input_file": { - "filename": "autogen/starknet/storage_var/Sheet_cell_renderer/decl.cairo" - }, - "parent_location": [ - { - "end_col": 60, - "end_line": 201, - "input_file": { - "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" - }, - "start_col": 34, - "start_line": 201 - }, - "While trying to retrieve the implicit argument 'pedersen_ptr' in:" - ], - "start_col": 35, - "start_line": 13 - }, - "While expanding the reference 'pedersen_ptr' in:" - ], - "start_col": 22, - "start_line": 200 - }, - "While trying to update the implicit return value 'pedersen_ptr' in:" - ], - "start_col": 35, - "start_line": 90 - } - }, - "3132": { - "accessible_scopes": [ - "sheet.library", - "sheet.library.Sheet", - "sheet.library.Sheet.token_uri" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 78, - "end_line": 90, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" - }, - "parent_location": [ - { - "end_col": 35, - "end_line": 200, - "input_file": { - "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" - }, - "parent_location": [ - { - "end_col": 78, - "end_line": 13, - "input_file": { - "filename": "autogen/starknet/storage_var/Sheet_cell_renderer/decl.cairo" - }, - "parent_location": [ - { - "end_col": 60, - "end_line": 201, - "input_file": { - "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" - }, - "start_col": 34, - "start_line": 201 - }, - "While trying to retrieve the implicit argument 'range_check_ptr' in:" - ], - "start_col": 63, - "start_line": 13 - }, - "While expanding the reference 'range_check_ptr' in:" - ], - "start_col": 22, - "start_line": 200 - }, - "While trying to update the implicit return value 'range_check_ptr' in:" - ], - "start_col": 63, - "start_line": 90 - } - }, - "3133": { - "accessible_scopes": [ - "sheet.library", - "sheet.library.Sheet", - "sheet.library.Sheet.token_uri" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 60, - "end_line": 201, - "input_file": { - "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" - }, - "start_col": 34, - "start_line": 201 - } - }, - "3135": { - "accessible_scopes": [ - "sheet.library", - "sheet.library.Sheet", - "sheet.library.Sheet.token_uri" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 33, - "end_line": 13, - "input_file": { - "filename": "autogen/starknet/storage_var/Sheet_cell_renderer/decl.cairo" - }, - "parent_location": [ - { - "end_col": 60, - "end_line": 201, - "input_file": { - "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" - }, - "parent_location": [ - { - "end_col": 34, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/contract_interface/ICellRenderer/token_uri/41262dba046518ea626ceadddf9bdd89ee1cb488a62fdf8cc47232b6ce4027bb.cairo" - }, - "parent_location": [ - { - "end_col": 19, - "end_line": 6, - "input_file": { - "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/interfaces.cairo" - }, - "parent_location": [ - { - "end_col": 10, - "end_line": 204, - "input_file": { - "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" - }, - "start_col": 42, - "start_line": 202 - }, - "While trying to retrieve the implicit argument 'syscall_ptr' in:" - ], - "start_col": 10, - "start_line": 6 - }, - "While handling contract interface function:" - ], - "start_col": 16, - "start_line": 1 - }, - "While expanding the reference 'syscall_ptr' in:" - ], - "start_col": 34, - "start_line": 201 - }, - "While trying to update the implicit return value 'syscall_ptr' in:" - ], - "start_col": 15, - "start_line": 13 - } - }, - "3136": { - "accessible_scopes": [ - "sheet.library", - "sheet.library.Sheet", - "sheet.library.Sheet.token_uri" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 78, - "end_line": 13, - "input_file": { - "filename": "autogen/starknet/storage_var/Sheet_cell_renderer/decl.cairo" - }, - "parent_location": [ - { - "end_col": 60, - "end_line": 201, - "input_file": { - "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" - }, - "parent_location": [ - { - "end_col": 51, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/contract_interface/ICellRenderer/token_uri/41262dba046518ea626ceadddf9bdd89ee1cb488a62fdf8cc47232b6ce4027bb.cairo" - }, - "parent_location": [ - { - "end_col": 19, - "end_line": 6, - "input_file": { - "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/interfaces.cairo" - }, - "parent_location": [ - { - "end_col": 10, - "end_line": 204, - "input_file": { - "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" - }, - "start_col": 42, - "start_line": 202 - }, - "While trying to retrieve the implicit argument 'range_check_ptr' in:" - ], - "start_col": 10, - "start_line": 6 - }, - "While handling contract interface function:" - ], - "start_col": 36, - "start_line": 1 - }, - "While expanding the reference 'range_check_ptr' in:" - ], - "start_col": 34, - "start_line": 201 - }, - "While trying to update the implicit return value 'range_check_ptr' in:" - ], - "start_col": 63, - "start_line": 13 - } - }, - "3137": { - "accessible_scopes": [ - "sheet.library", - "sheet.library.Sheet", - "sheet.library.Sheet.token_uri" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 30, - "end_line": 201, - "input_file": { - "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" - }, - "parent_location": [ - { - "end_col": 29, - "end_line": 203, - "input_file": { - "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" - }, - "start_col": 13, - "start_line": 203 - }, - "While expanding the reference 'renderer_address' in:" - ], - "start_col": 14, - "start_line": 201 - } - }, - "3138": { - "accessible_scopes": [ - "sheet.library", - "sheet.library.Sheet", - "sheet.library.Sheet.token_uri" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 43, - "end_line": 203, - "input_file": { - "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" - }, - "start_col": 31, - "start_line": 203 - } - }, - "3139": { - "accessible_scopes": [ - "sheet.library", - "sheet.library.Sheet", - "sheet.library.Sheet.token_uri" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 19, - "end_line": 192, - "input_file": { - "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" - }, - "parent_location": [ - { - "end_col": 19, - "end_line": 192, - "input_file": { - "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" - }, - "parent_location": [ - { - "end_col": 50, - "end_line": 203, - "input_file": { - "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" - }, - "start_col": 45, - "start_line": 203 - }, - "While expanding the reference 'value' in:" - ], - "start_col": 14, - "start_line": 192 - }, - "While auto generating local variable for 'value'." - ], - "start_col": 14, - "start_line": 192 - } - }, - "3140": { - "accessible_scopes": [ - "sheet.library", - "sheet.library.Sheet", - "sheet.library.Sheet.token_uri" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 18, - "end_line": 200, - "input_file": { - "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" - }, - "parent_location": [ - { - "end_col": 56, - "end_line": 203, - "input_file": { - "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" - }, - "start_col": 52, - "start_line": 203 - }, - "While expanding the reference 'name' in:" - ], - "start_col": 14, - "start_line": 200 - } - }, - "3141": { - "accessible_scopes": [ - "sheet.library", - "sheet.library.Sheet", - "sheet.library.Sheet.token_uri" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 10, - "end_line": 204, - "input_file": { - "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" - }, - "start_col": 42, - "start_line": 202 - } - }, - "3143": { - "accessible_scopes": [ - "sheet.library", - "sheet.library.Sheet", - "sheet.library.Sheet.token_uri" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 61, - "end_line": 13, - "input_file": { - "filename": "autogen/starknet/storage_var/Sheet_cell_renderer/decl.cairo" - }, - "parent_location": [ - { - "end_col": 60, - "end_line": 201, - "input_file": { - "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" - }, - "parent_location": [ - { - "end_col": 46, - "end_line": 179, - "input_file": { - "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" - }, - "parent_location": [ - { - "end_col": 43, - "end_line": 205, - "input_file": { - "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" - }, - "start_col": 9, - "start_line": 205 - }, - "While trying to retrieve the implicit argument 'pedersen_ptr' in:" - ], - "start_col": 20, - "start_line": 179 - }, - "While expanding the reference 'pedersen_ptr' in:" - ], - "start_col": 34, - "start_line": 201 - }, - "While trying to update the implicit return value 'pedersen_ptr' in:" - ], - "start_col": 35, - "start_line": 13 - } - }, - "3144": { - "accessible_scopes": [ - "sheet.library", - "sheet.library.Sheet", - "sheet.library.Sheet.token_uri" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 34, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/contract_interface/ICellRenderer/token_uri/41262dba046518ea626ceadddf9bdd89ee1cb488a62fdf8cc47232b6ce4027bb.cairo" - }, - "parent_location": [ - { - "end_col": 19, - "end_line": 6, - "input_file": { - "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/interfaces.cairo" - }, - "parent_location": [ - { - "end_col": 10, - "end_line": 204, - "input_file": { - "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" - }, - "parent_location": [ - { - "end_col": 66, - "end_line": 179, - "input_file": { - "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" - }, - "parent_location": [ - { - "end_col": 43, - "end_line": 205, - "input_file": { - "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" - }, - "start_col": 9, - "start_line": 205 - }, - "While trying to retrieve the implicit argument 'syscall_ptr' in:" - ], - "start_col": 48, - "start_line": 179 - }, - "While expanding the reference 'syscall_ptr' in:" - ], - "start_col": 42, - "start_line": 202 - }, - "While trying to update the implicit return value 'syscall_ptr' in:" - ], - "start_col": 10, - "start_line": 6 - }, - "While handling contract interface function:" - ], - "start_col": 16, - "start_line": 1 - } - }, - "3145": { - "accessible_scopes": [ - "sheet.library", - "sheet.library.Sheet", - "sheet.library.Sheet.token_uri" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 51, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/contract_interface/ICellRenderer/token_uri/41262dba046518ea626ceadddf9bdd89ee1cb488a62fdf8cc47232b6ce4027bb.cairo" - }, - "parent_location": [ - { - "end_col": 19, - "end_line": 6, - "input_file": { - "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/interfaces.cairo" - }, - "parent_location": [ - { - "end_col": 10, - "end_line": 204, - "input_file": { - "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" - }, - "parent_location": [ - { - "end_col": 83, - "end_line": 179, - "input_file": { - "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" - }, - "parent_location": [ - { - "end_col": 43, - "end_line": 205, - "input_file": { - "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" - }, - "start_col": 9, - "start_line": 205 - }, - "While trying to retrieve the implicit argument 'range_check_ptr' in:" - ], - "start_col": 68, - "start_line": 179 - }, - "While expanding the reference 'range_check_ptr' in:" - ], - "start_col": 42, - "start_line": 202 - }, - "While trying to update the implicit return value 'range_check_ptr' in:" - ], - "start_col": 10, - "start_line": 6 - }, - "While handling contract interface function:" - ], - "start_col": 36, - "start_line": 1 - } - }, - "3146": { - "accessible_scopes": [ - "sheet.library", - "sheet.library.Sheet", - "sheet.library.Sheet.token_uri" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 27, - "end_line": 202, - "input_file": { - "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" - }, - "parent_location": [ - { - "end_col": 30, - "end_line": 205, - "input_file": { - "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" - }, - "start_col": 17, - "start_line": 205 - }, - "While expanding the reference 'token_uri_len' in:" - ], - "start_col": 14, - "start_line": 202 - } - }, - "3147": { - "accessible_scopes": [ - "sheet.library", - "sheet.library.Sheet", - "sheet.library.Sheet.token_uri" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 38, - "end_line": 202, - "input_file": { - "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" - }, - "parent_location": [ - { - "end_col": 41, - "end_line": 205, - "input_file": { - "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" - }, - "start_col": 32, - "start_line": 205 - }, - "While expanding the reference 'token_uri' in:" - ], - "start_col": 29, - "start_line": 202 - } - }, - "3148": { - "accessible_scopes": [ - "sheet.library", - "sheet.library.Sheet", - "sheet.library.Sheet.token_uri" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 43, - "end_line": 205, - "input_file": { - "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" - }, - "start_col": 9, - "start_line": 205 - } - }, - "3149": { - "accessible_scopes": [ - "sheet.library", - "sheet.library.Sheet", - "sheet.library.Sheet.open_mint" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 38, - "end_line": 234, - "input_file": { - "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" - }, - "parent_location": [ - { - "end_col": 34, - "end_line": 19, - "input_file": { - "filename": "autogen/starknet/storage_var/Sheet_is_mint_open/decl.cairo" - }, - "parent_location": [ - { - "end_col": 36, - "end_line": 235, - "input_file": { - "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" - }, - "start_col": 9, - "start_line": 235 - }, - "While trying to retrieve the implicit argument 'syscall_ptr' in:" - ], - "start_col": 16, - "start_line": 19 - }, - "While expanding the reference 'syscall_ptr' in:" - ], - "start_col": 20, - "start_line": 234 - } - }, - "3150": { - "accessible_scopes": [ - "sheet.library", - "sheet.library.Sheet", - "sheet.library.Sheet.open_mint" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 66, - "end_line": 234, - "input_file": { - "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" - }, - "parent_location": [ - { - "end_col": 62, - "end_line": 19, - "input_file": { - "filename": "autogen/starknet/storage_var/Sheet_is_mint_open/decl.cairo" - }, - "parent_location": [ - { - "end_col": 36, - "end_line": 235, - "input_file": { - "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" - }, - "start_col": 9, - "start_line": 235 - }, - "While trying to retrieve the implicit argument 'pedersen_ptr' in:" - ], - "start_col": 36, - "start_line": 19 - }, - "While expanding the reference 'pedersen_ptr' in:" - ], - "start_col": 40, - "start_line": 234 - } - }, - "3151": { - "accessible_scopes": [ - "sheet.library", - "sheet.library.Sheet", - "sheet.library.Sheet.open_mint" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 83, - "end_line": 234, - "input_file": { - "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" - }, - "parent_location": [ - { - "end_col": 79, - "end_line": 19, - "input_file": { - "filename": "autogen/starknet/storage_var/Sheet_is_mint_open/decl.cairo" - }, - "parent_location": [ - { - "end_col": 36, - "end_line": 235, - "input_file": { - "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" - }, - "start_col": 9, - "start_line": 235 - }, - "While trying to retrieve the implicit argument 'range_check_ptr' in:" - ], - "start_col": 64, - "start_line": 19 - }, - "While expanding the reference 'range_check_ptr' in:" - ], - "start_col": 68, - "start_line": 234 - } - }, - "3152": { - "accessible_scopes": [ - "sheet.library", - "sheet.library.Sheet", - "sheet.library.Sheet.open_mint" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 35, - "end_line": 235, - "input_file": { - "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" - }, - "start_col": 34, - "start_line": 235 - } - }, - "3154": { - "accessible_scopes": [ - "sheet.library", - "sheet.library.Sheet", - "sheet.library.Sheet.open_mint" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 36, - "end_line": 235, - "input_file": { - "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" - }, - "start_col": 9, - "start_line": 235 - } - }, - "3156": { - "accessible_scopes": [ - "sheet.library", - "sheet.library.Sheet", - "sheet.library.Sheet.open_mint" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 19, - "end_line": 236, - "input_file": { - "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" - }, - "start_col": 9, - "start_line": 236 - } - }, - "3157": { - "accessible_scopes": [ - "sheet.library", - "sheet.library.Sheet", - "sheet.library.Sheet.close_mint" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 39, - "end_line": 239, - "input_file": { - "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" - }, - "parent_location": [ - { - "end_col": 34, - "end_line": 19, - "input_file": { - "filename": "autogen/starknet/storage_var/Sheet_is_mint_open/decl.cairo" - }, - "parent_location": [ - { - "end_col": 36, - "end_line": 240, - "input_file": { - "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" - }, - "start_col": 9, - "start_line": 240 - }, - "While trying to retrieve the implicit argument 'syscall_ptr' in:" - ], - "start_col": 16, - "start_line": 19 - }, - "While expanding the reference 'syscall_ptr' in:" - ], - "start_col": 21, - "start_line": 239 - } - }, - "3158": { - "accessible_scopes": [ - "sheet.library", - "sheet.library.Sheet", - "sheet.library.Sheet.close_mint" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 67, - "end_line": 239, - "input_file": { - "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" - }, - "parent_location": [ - { - "end_col": 62, - "end_line": 19, - "input_file": { - "filename": "autogen/starknet/storage_var/Sheet_is_mint_open/decl.cairo" - }, - "parent_location": [ - { - "end_col": 36, - "end_line": 240, - "input_file": { - "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" - }, - "start_col": 9, - "start_line": 240 - }, - "While trying to retrieve the implicit argument 'pedersen_ptr' in:" - ], - "start_col": 36, - "start_line": 19 - }, - "While expanding the reference 'pedersen_ptr' in:" - ], - "start_col": 41, - "start_line": 239 - } - }, - "3159": { - "accessible_scopes": [ - "sheet.library", - "sheet.library.Sheet", - "sheet.library.Sheet.close_mint" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 84, - "end_line": 239, - "input_file": { - "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" - }, - "parent_location": [ - { - "end_col": 79, - "end_line": 19, - "input_file": { - "filename": "autogen/starknet/storage_var/Sheet_is_mint_open/decl.cairo" - }, - "parent_location": [ - { - "end_col": 36, - "end_line": 240, - "input_file": { - "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" - }, - "start_col": 9, - "start_line": 240 - }, - "While trying to retrieve the implicit argument 'range_check_ptr' in:" - ], - "start_col": 64, - "start_line": 19 - }, - "While expanding the reference 'range_check_ptr' in:" - ], - "start_col": 69, - "start_line": 239 - } - }, - "3160": { - "accessible_scopes": [ - "sheet.library", - "sheet.library.Sheet", - "sheet.library.Sheet.close_mint" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 35, - "end_line": 240, - "input_file": { - "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" - }, - "start_col": 34, - "start_line": 240 - } - }, - "3162": { - "accessible_scopes": [ - "sheet.library", - "sheet.library.Sheet", - "sheet.library.Sheet.close_mint" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 36, - "end_line": 240, - "input_file": { - "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" - }, - "start_col": 9, - "start_line": 240 - } - }, - "3164": { - "accessible_scopes": [ - "sheet.library", - "sheet.library.Sheet", - "sheet.library.Sheet.close_mint" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 19, - "end_line": 241, - "input_file": { - "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" - }, - "start_col": 9, - "start_line": 241 - } - }, - "3165": { - "accessible_scopes": [ - "sheet.library", - "sheet.library._set_calldata" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 50, - "end_line": 255, - "input_file": { - "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" - }, - "start_col": 30, - "start_line": 255 - } - }, - "3166": { - "accessible_scopes": [ - "sheet.library", - "sheet.library._set_calldata" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 7, - "end_line": 256, - "input_file": { - "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" - }, - "start_col": 5, - "start_line": 256 - } - }, - "3168": { - "accessible_scopes": [ - "sheet.library", - "sheet.library._set_calldata" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 23, - "end_line": 248, - "input_file": { - "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" - }, - "parent_location": [ - { - "end_col": 23, - "end_line": 248, - "input_file": { - "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" - }, - "parent_location": [ - { - "end_col": 19, - "end_line": 257, - "input_file": { - "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" - }, - "start_col": 9, - "start_line": 257 - }, - "While trying to retrieve the implicit argument 'syscall_ptr' in:" - ], - "start_col": 5, - "start_line": 248 - }, - "While expanding the reference 'syscall_ptr' in:" - ], - "start_col": 5, - "start_line": 248 - } - }, - "3169": { - "accessible_scopes": [ - "sheet.library", - "sheet.library._set_calldata" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 31, - "end_line": 249, - "input_file": { - "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" - }, - "parent_location": [ - { - "end_col": 31, - "end_line": 249, - "input_file": { - "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" - }, - "parent_location": [ - { - "end_col": 19, - "end_line": 257, - "input_file": { - "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" - }, - "start_col": 9, - "start_line": 257 - }, - "While trying to retrieve the implicit argument 'pedersen_ptr' in:" - ], - "start_col": 5, - "start_line": 249 - }, - "While expanding the reference 'pedersen_ptr' in:" - ], - "start_col": 5, - "start_line": 249 - } - }, - "3170": { - "accessible_scopes": [ - "sheet.library", - "sheet.library._set_calldata" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 20, - "end_line": 250, - "input_file": { - "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" - }, - "parent_location": [ - { - "end_col": 20, - "end_line": 250, - "input_file": { - "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" - }, - "parent_location": [ - { - "end_col": 19, - "end_line": 257, - "input_file": { - "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" - }, - "start_col": 9, - "start_line": 257 - }, - "While trying to retrieve the implicit argument 'range_check_ptr' in:" - ], - "start_col": 5, - "start_line": 250 - }, - "While expanding the reference 'range_check_ptr' in:" - ], - "start_col": 5, - "start_line": 250 - } - }, - "3171": { - "accessible_scopes": [ - "sheet.library", - "sheet.library._set_calldata" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 19, - "end_line": 251, - "input_file": { - "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" - }, - "parent_location": [ - { - "end_col": 19, - "end_line": 251, - "input_file": { - "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" - }, - "parent_location": [ - { - "end_col": 19, - "end_line": 257, - "input_file": { - "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" - }, - "start_col": 9, - "start_line": 257 - }, - "While trying to retrieve the implicit argument 'token_id' in:" - ], - "start_col": 5, - "start_line": 251 - }, - "While expanding the reference 'token_id' in:" - ], - "start_col": 5, - "start_line": 251 - } - }, - "3172": { - "accessible_scopes": [ - "sheet.library", - "sheet.library._set_calldata" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 16, - "end_line": 252, - "input_file": { - "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" - }, - "parent_location": [ - { - "end_col": 16, - "end_line": 252, - "input_file": { - "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" - }, - "parent_location": [ - { - "end_col": 19, - "end_line": 257, - "input_file": { - "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" - }, - "start_col": 9, - "start_line": 257 - }, - "While trying to retrieve the implicit argument 'index' in:" - ], - "start_col": 5, - "start_line": 252 - }, - "While expanding the reference 'index' in:" - ], - "start_col": 5, - "start_line": 252 - } - }, - "3173": { - "accessible_scopes": [ - "sheet.library", - "sheet.library._set_calldata" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 23, - "end_line": 253, - "input_file": { - "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" - }, - "parent_location": [ - { - "end_col": 23, - "end_line": 253, - "input_file": { - "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" - }, - "parent_location": [ - { - "end_col": 19, - "end_line": 257, - "input_file": { - "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" - }, - "start_col": 9, - "start_line": 257 - }, - "While trying to retrieve the implicit argument 'calldata_len' in:" - ], - "start_col": 5, - "start_line": 253 - }, - "While expanding the reference 'calldata_len' in:" - ], - "start_col": 5, - "start_line": 253 - } - }, - "3174": { - "accessible_scopes": [ - "sheet.library", - "sheet.library._set_calldata" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 19, - "end_line": 257, - "input_file": { - "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" - }, - "start_col": 9, - "start_line": 257 - } - }, - "3175": { - "accessible_scopes": [ - "sheet.library", - "sheet.library._set_calldata" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 23, - "end_line": 248, - "input_file": { - "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" - }, - "parent_location": [ - { - "end_col": 34, - "end_line": 21, - "input_file": { - "filename": "autogen/starknet/storage_var/Sheet_cell_calldata/decl.cairo" - }, - "parent_location": [ - { - "end_col": 59, - "end_line": 259, - "input_file": { - "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" - }, - "start_col": 5, - "start_line": 259 - }, - "While trying to retrieve the implicit argument 'syscall_ptr' in:" - ], - "start_col": 16, - "start_line": 21 - }, - "While expanding the reference 'syscall_ptr' in:" - ], - "start_col": 5, - "start_line": 248 - } - }, - "3176": { - "accessible_scopes": [ - "sheet.library", - "sheet.library._set_calldata" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 31, - "end_line": 249, - "input_file": { - "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" - }, - "parent_location": [ - { - "end_col": 62, - "end_line": 21, - "input_file": { - "filename": "autogen/starknet/storage_var/Sheet_cell_calldata/decl.cairo" - }, - "parent_location": [ - { - "end_col": 59, - "end_line": 259, - "input_file": { - "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" - }, - "start_col": 5, - "start_line": 259 - }, - "While trying to retrieve the implicit argument 'pedersen_ptr' in:" - ], - "start_col": 36, - "start_line": 21 - }, - "While expanding the reference 'pedersen_ptr' in:" - ], - "start_col": 5, - "start_line": 249 - } - }, - "3177": { - "accessible_scopes": [ - "sheet.library", - "sheet.library._set_calldata" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 20, - "end_line": 250, - "input_file": { - "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" - }, - "parent_location": [ - { - "end_col": 79, - "end_line": 21, - "input_file": { - "filename": "autogen/starknet/storage_var/Sheet_cell_calldata/decl.cairo" - }, - "parent_location": [ - { - "end_col": 59, - "end_line": 259, - "input_file": { - "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" - }, - "start_col": 5, - "start_line": 259 - }, - "While trying to retrieve the implicit argument 'range_check_ptr' in:" - ], - "start_col": 64, - "start_line": 21 - }, - "While expanding the reference 'range_check_ptr' in:" - ], - "start_col": 5, - "start_line": 250 - } - }, - "3178": { - "accessible_scopes": [ - "sheet.library", - "sheet.library._set_calldata" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 19, - "end_line": 251, - "input_file": { - "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" - }, - "parent_location": [ - { - "end_col": 39, - "end_line": 259, - "input_file": { - "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" - }, - "start_col": 31, - "start_line": 259 - }, - "While expanding the reference 'token_id' in:" - ], - "start_col": 5, - "start_line": 251 - } - }, - "3179": { - "accessible_scopes": [ - "sheet.library", - "sheet.library._set_calldata" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 16, - "end_line": 252, - "input_file": { - "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" - }, - "parent_location": [ - { - "end_col": 46, - "end_line": 259, - "input_file": { - "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" - }, - "start_col": 41, - "start_line": 259 - }, - "While expanding the reference 'index' in:" - ], - "start_col": 5, - "start_line": 252 - } - }, - "3180": { - "accessible_scopes": [ - "sheet.library", - "sheet.library._set_calldata" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 58, - "end_line": 259, - "input_file": { - "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" - }, - "start_col": 48, - "start_line": 259 - } - }, - "3181": { - "accessible_scopes": [ - "sheet.library", - "sheet.library._set_calldata" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 59, - "end_line": 259, - "input_file": { - "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" - }, - "start_col": 5, - "start_line": 259 - } - }, - "3183": { - "accessible_scopes": [ - "sheet.library", - "sheet.library._set_calldata" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 19, - "end_line": 251, - "input_file": { - "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" - }, - "parent_location": [ - { - "end_col": 19, - "end_line": 251, - "input_file": { - "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" - }, - "parent_location": [ - { - "end_col": 49, - "end_line": 261, - "input_file": { - "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" - }, - "start_col": 5, - "start_line": 261 - }, - "While trying to retrieve the implicit argument 'token_id' in:" - ], - "start_col": 5, - "start_line": 251 - }, - "While expanding the reference 'token_id' in:" - ], - "start_col": 5, - "start_line": 251 - } - }, - "3184": { - "accessible_scopes": [ - "sheet.library", - "sheet.library._set_calldata" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 30, - "end_line": 260, - "input_file": { - "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" - }, - "parent_location": [ - { - "end_col": 34, - "end_line": 261, - "input_file": { - "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" - }, - "start_col": 25, - "start_line": 261 - }, - "While expanding the reference 'index_new' in:" - ], - "start_col": 21, - "start_line": 260 - } - }, - "3186": { - "accessible_scopes": [ - "sheet.library", - "sheet.library._set_calldata" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 23, - "end_line": 253, - "input_file": { - "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" - }, - "parent_location": [ - { - "end_col": 23, - "end_line": 253, - "input_file": { - "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" - }, - "parent_location": [ - { - "end_col": 49, - "end_line": 261, - "input_file": { - "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" - }, - "start_col": 5, - "start_line": 261 - }, - "While trying to retrieve the implicit argument 'calldata_len' in:" - ], - "start_col": 5, - "start_line": 253 - }, - "While expanding the reference 'calldata_len' in:" - ], - "start_col": 5, - "start_line": 253 - } - }, - "3187": { - "accessible_scopes": [ - "sheet.library", - "sheet.library._set_calldata" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 48, - "end_line": 261, - "input_file": { - "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" - }, - "start_col": 36, - "start_line": 261 - } - }, - "3189": { - "accessible_scopes": [ - "sheet.library", - "sheet.library._set_calldata" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 49, - "end_line": 261, - "input_file": { - "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" - }, - "start_col": 5, - "start_line": 261 - } - }, - "3191": { - "accessible_scopes": [ - "sheet.library", - "sheet.library._set_calldata" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 23, - "end_line": 248, - "input_file": { - "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" - }, - "parent_location": [ - { - "end_col": 49, - "end_line": 261, - "input_file": { - "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" - }, - "parent_location": [ - { - "end_col": 23, - "end_line": 248, - "input_file": { - "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" - }, - "parent_location": [ - { - "end_col": 15, - "end_line": 262, - "input_file": { - "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" - }, - "start_col": 5, - "start_line": 262 - }, - "While trying to retrieve the implicit argument 'syscall_ptr' in:" - ], - "start_col": 5, - "start_line": 248 - }, - "While expanding the reference 'syscall_ptr' in:" - ], - "start_col": 5, - "start_line": 261 - }, - "While trying to update the implicit return value 'syscall_ptr' in:" - ], - "start_col": 5, - "start_line": 248 - } - }, - "3192": { - "accessible_scopes": [ - "sheet.library", - "sheet.library._set_calldata" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 31, - "end_line": 249, - "input_file": { - "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" - }, - "parent_location": [ - { - "end_col": 49, - "end_line": 261, - "input_file": { - "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" - }, - "parent_location": [ - { - "end_col": 31, - "end_line": 249, - "input_file": { - "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" - }, - "parent_location": [ - { - "end_col": 15, - "end_line": 262, - "input_file": { - "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" - }, - "start_col": 5, - "start_line": 262 - }, - "While trying to retrieve the implicit argument 'pedersen_ptr' in:" - ], - "start_col": 5, - "start_line": 249 - }, - "While expanding the reference 'pedersen_ptr' in:" - ], - "start_col": 5, - "start_line": 261 - }, - "While trying to update the implicit return value 'pedersen_ptr' in:" - ], - "start_col": 5, - "start_line": 249 - } - }, - "3193": { - "accessible_scopes": [ - "sheet.library", - "sheet.library._set_calldata" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 20, - "end_line": 250, - "input_file": { - "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" - }, - "parent_location": [ - { - "end_col": 49, - "end_line": 261, - "input_file": { - "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" - }, - "parent_location": [ - { - "end_col": 20, - "end_line": 250, - "input_file": { - "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" - }, - "parent_location": [ - { - "end_col": 15, - "end_line": 262, - "input_file": { - "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" - }, - "start_col": 5, - "start_line": 262 - }, - "While trying to retrieve the implicit argument 'range_check_ptr' in:" - ], - "start_col": 5, - "start_line": 250 - }, - "While expanding the reference 'range_check_ptr' in:" - ], - "start_col": 5, - "start_line": 261 - }, - "While trying to update the implicit return value 'range_check_ptr' in:" - ], - "start_col": 5, - "start_line": 250 - } - }, - "3194": { - "accessible_scopes": [ - "sheet.library", - "sheet.library._set_calldata" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 19, - "end_line": 251, - "input_file": { - "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" - }, - "parent_location": [ - { - "end_col": 49, - "end_line": 261, - "input_file": { - "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" - }, - "parent_location": [ - { - "end_col": 19, - "end_line": 251, - "input_file": { - "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" - }, - "parent_location": [ - { - "end_col": 15, - "end_line": 262, - "input_file": { - "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" - }, - "start_col": 5, - "start_line": 262 - }, - "While trying to retrieve the implicit argument 'token_id' in:" - ], - "start_col": 5, - "start_line": 251 - }, - "While expanding the reference 'token_id' in:" - ], - "start_col": 5, - "start_line": 261 - }, - "While trying to update the implicit return value 'token_id' in:" - ], - "start_col": 5, - "start_line": 251 - } - }, - "3195": { - "accessible_scopes": [ - "sheet.library", - "sheet.library._set_calldata" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 16, - "end_line": 252, - "input_file": { - "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" - }, - "parent_location": [ - { - "end_col": 16, - "end_line": 252, - "input_file": { - "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" - }, - "parent_location": [ - { - "end_col": 15, - "end_line": 262, - "input_file": { - "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" - }, - "start_col": 5, - "start_line": 262 - }, - "While trying to retrieve the implicit argument 'index' in:" - ], - "start_col": 5, - "start_line": 252 - }, - "While expanding the reference 'index' in:" - ], - "start_col": 5, - "start_line": 252 - } - }, - "3196": { - "accessible_scopes": [ - "sheet.library", - "sheet.library._set_calldata" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 23, - "end_line": 253, - "input_file": { - "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" - }, - "parent_location": [ - { - "end_col": 49, - "end_line": 261, - "input_file": { - "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" - }, - "parent_location": [ - { - "end_col": 23, - "end_line": 253, - "input_file": { - "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" - }, - "parent_location": [ - { - "end_col": 15, - "end_line": 262, - "input_file": { - "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" - }, - "start_col": 5, - "start_line": 262 - }, - "While trying to retrieve the implicit argument 'calldata_len' in:" - ], - "start_col": 5, - "start_line": 253 - }, - "While expanding the reference 'calldata_len' in:" - ], - "start_col": 5, - "start_line": 261 - }, - "While trying to update the implicit return value 'calldata_len' in:" - ], - "start_col": 5, - "start_line": 253 - } - }, - "3197": { - "accessible_scopes": [ - "sheet.library", - "sheet.library._set_calldata" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 15, - "end_line": 262, - "input_file": { - "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" - }, - "start_col": 5, - "start_line": 262 - } - }, - "3198": { - "accessible_scopes": [ - "sheet.library", - "sheet.library._get_calldata" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 50, - "end_line": 273, - "input_file": { - "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" - }, - "start_col": 30, - "start_line": 273 - } - }, - "3199": { - "accessible_scopes": [ - "sheet.library", - "sheet.library._get_calldata" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 7, - "end_line": 274, - "input_file": { - "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" - }, - "start_col": 5, - "start_line": 274 - } - }, - "3201": { - "accessible_scopes": [ - "sheet.library", - "sheet.library._get_calldata" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 23, - "end_line": 266, - "input_file": { - "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" - }, - "parent_location": [ - { - "end_col": 23, - "end_line": 266, - "input_file": { - "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" - }, - "parent_location": [ - { - "end_col": 19, - "end_line": 275, - "input_file": { - "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" - }, - "start_col": 9, - "start_line": 275 - }, - "While trying to retrieve the implicit argument 'syscall_ptr' in:" - ], - "start_col": 5, - "start_line": 266 - }, - "While expanding the reference 'syscall_ptr' in:" - ], - "start_col": 5, - "start_line": 266 - } - }, - "3202": { - "accessible_scopes": [ - "sheet.library", - "sheet.library._get_calldata" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 31, - "end_line": 267, - "input_file": { - "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" - }, - "parent_location": [ - { - "end_col": 31, - "end_line": 267, - "input_file": { - "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" - }, - "parent_location": [ - { - "end_col": 19, - "end_line": 275, - "input_file": { - "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" - }, - "start_col": 9, - "start_line": 275 - }, - "While trying to retrieve the implicit argument 'pedersen_ptr' in:" - ], - "start_col": 5, - "start_line": 267 - }, - "While expanding the reference 'pedersen_ptr' in:" - ], - "start_col": 5, - "start_line": 267 - } - }, - "3203": { - "accessible_scopes": [ - "sheet.library", - "sheet.library._get_calldata" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 20, - "end_line": 268, - "input_file": { - "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" - }, - "parent_location": [ - { - "end_col": 20, - "end_line": 268, - "input_file": { - "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" - }, - "parent_location": [ - { - "end_col": 19, - "end_line": 275, - "input_file": { - "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" - }, - "start_col": 9, - "start_line": 275 - }, - "While trying to retrieve the implicit argument 'range_check_ptr' in:" - ], - "start_col": 5, - "start_line": 268 - }, - "While expanding the reference 'range_check_ptr' in:" - ], - "start_col": 5, - "start_line": 268 - } - }, - "3204": { - "accessible_scopes": [ - "sheet.library", - "sheet.library._get_calldata" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 19, - "end_line": 269, - "input_file": { - "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" - }, - "parent_location": [ - { - "end_col": 19, - "end_line": 269, - "input_file": { - "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" - }, - "parent_location": [ - { - "end_col": 19, - "end_line": 275, - "input_file": { - "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" - }, - "start_col": 9, - "start_line": 275 - }, - "While trying to retrieve the implicit argument 'token_id' in:" - ], - "start_col": 5, - "start_line": 269 - }, - "While expanding the reference 'token_id' in:" - ], - "start_col": 5, - "start_line": 269 - } - }, - "3205": { - "accessible_scopes": [ - "sheet.library", - "sheet.library._get_calldata" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 23, - "end_line": 270, - "input_file": { - "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" - }, - "parent_location": [ - { - "end_col": 23, - "end_line": 270, - "input_file": { - "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" - }, - "parent_location": [ - { - "end_col": 19, - "end_line": 275, - "input_file": { - "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" - }, - "start_col": 9, - "start_line": 275 - }, - "While trying to retrieve the implicit argument 'calldata_len' in:" - ], - "start_col": 5, - "start_line": 270 - }, - "While expanding the reference 'calldata_len' in:" - ], - "start_col": 5, - "start_line": 270 - } - }, - "3206": { - "accessible_scopes": [ - "sheet.library", - "sheet.library._get_calldata" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 20, - "end_line": 271, - "input_file": { - "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" - }, - "parent_location": [ - { - "end_col": 20, - "end_line": 271, - "input_file": { - "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" - }, - "parent_location": [ - { - "end_col": 19, - "end_line": 275, - "input_file": { - "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" - }, - "start_col": 9, - "start_line": 275 - }, - "While trying to retrieve the implicit argument 'calldata' in:" - ], - "start_col": 5, - "start_line": 271 - }, - "While expanding the reference 'calldata' in:" - ], - "start_col": 5, - "start_line": 271 - } - }, - "3207": { - "accessible_scopes": [ - "sheet.library", - "sheet.library._get_calldata" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 19, - "end_line": 275, - "input_file": { - "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" - }, - "start_col": 9, - "start_line": 275 - } - }, - "3208": { - "accessible_scopes": [ - "sheet.library", - "sheet.library._get_calldata" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 23, - "end_line": 266, - "input_file": { - "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" - }, - "parent_location": [ - { - "end_col": 33, - "end_line": 13, - "input_file": { - "filename": "autogen/starknet/storage_var/Sheet_cell_calldata/decl.cairo" - }, - "parent_location": [ - { - "end_col": 67, - "end_line": 277, - "input_file": { - "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" - }, - "start_col": 26, - "start_line": 277 - }, - "While trying to retrieve the implicit argument 'syscall_ptr' in:" - ], - "start_col": 15, - "start_line": 13 - }, - "While expanding the reference 'syscall_ptr' in:" - ], - "start_col": 5, - "start_line": 266 - } - }, - "3209": { - "accessible_scopes": [ - "sheet.library", - "sheet.library._get_calldata" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 31, - "end_line": 267, - "input_file": { - "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" - }, - "parent_location": [ - { - "end_col": 61, - "end_line": 13, - "input_file": { - "filename": "autogen/starknet/storage_var/Sheet_cell_calldata/decl.cairo" - }, - "parent_location": [ - { - "end_col": 67, - "end_line": 277, - "input_file": { - "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" - }, - "start_col": 26, - "start_line": 277 - }, - "While trying to retrieve the implicit argument 'pedersen_ptr' in:" - ], - "start_col": 35, - "start_line": 13 - }, - "While expanding the reference 'pedersen_ptr' in:" - ], - "start_col": 5, - "start_line": 267 - } - }, - "3210": { - "accessible_scopes": [ - "sheet.library", - "sheet.library._get_calldata" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 20, - "end_line": 268, - "input_file": { - "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" - }, - "parent_location": [ - { - "end_col": 78, - "end_line": 13, - "input_file": { - "filename": "autogen/starknet/storage_var/Sheet_cell_calldata/decl.cairo" - }, - "parent_location": [ - { - "end_col": 67, - "end_line": 277, - "input_file": { - "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" - }, - "start_col": 26, - "start_line": 277 - }, - "While trying to retrieve the implicit argument 'range_check_ptr' in:" - ], - "start_col": 63, - "start_line": 13 - }, - "While expanding the reference 'range_check_ptr' in:" - ], - "start_col": 5, - "start_line": 268 - } - }, - "3211": { - "accessible_scopes": [ - "sheet.library", - "sheet.library._get_calldata" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 19, - "end_line": 269, - "input_file": { - "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" - }, - "parent_location": [ - { - "end_col": 59, - "end_line": 277, - "input_file": { - "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" - }, - "start_col": 51, - "start_line": 277 - }, - "While expanding the reference 'token_id' in:" - ], - "start_col": 5, - "start_line": 269 - } - }, - "3212": { - "accessible_scopes": [ - "sheet.library", - "sheet.library._get_calldata" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 14, - "end_line": 272, - "input_file": { - "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" - }, - "parent_location": [ - { - "end_col": 66, - "end_line": 277, - "input_file": { - "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" - }, - "start_col": 61, - "start_line": 277 - }, - "While expanding the reference 'index' in:" - ], - "start_col": 3, - "start_line": 272 - } - }, - "3213": { - "accessible_scopes": [ - "sheet.library", - "sheet.library._get_calldata" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 67, - "end_line": 277, - "input_file": { - "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" - }, - "start_col": 26, - "start_line": 277 - } - }, - "3215": { - "accessible_scopes": [ - "sheet.library", - "sheet.library._get_calldata" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 27, - "end_line": 278, - "input_file": { - "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" - }, - "start_col": 12, - "start_line": 278 - } - }, - "3216": { - "accessible_scopes": [ - "sheet.library", - "sheet.library._get_calldata" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 43, - "end_line": 278, - "input_file": { - "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" - }, - "start_col": 5, - "start_line": 278 - } - }, - "3217": { - "accessible_scopes": [ - "sheet.library", - "sheet.library._get_calldata" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 33, - "end_line": 13, - "input_file": { - "filename": "autogen/starknet/storage_var/Sheet_cell_calldata/decl.cairo" - }, - "parent_location": [ - { - "end_col": 67, - "end_line": 277, - "input_file": { - "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" - }, - "parent_location": [ - { - "end_col": 23, - "end_line": 266, - "input_file": { - "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" - }, - "parent_location": [ - { - "end_col": 29, - "end_line": 279, - "input_file": { - "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" - }, - "start_col": 5, - "start_line": 279 - }, - "While trying to retrieve the implicit argument 'syscall_ptr' in:" - ], - "start_col": 5, - "start_line": 266 - }, - "While expanding the reference 'syscall_ptr' in:" - ], - "start_col": 26, - "start_line": 277 - }, - "While trying to update the implicit return value 'syscall_ptr' in:" - ], - "start_col": 15, - "start_line": 13 - } - }, - "3218": { - "accessible_scopes": [ - "sheet.library", - "sheet.library._get_calldata" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 61, - "end_line": 13, - "input_file": { - "filename": "autogen/starknet/storage_var/Sheet_cell_calldata/decl.cairo" - }, - "parent_location": [ - { - "end_col": 67, - "end_line": 277, - "input_file": { - "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" - }, - "parent_location": [ - { - "end_col": 31, - "end_line": 267, - "input_file": { - "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" - }, - "parent_location": [ - { - "end_col": 29, - "end_line": 279, - "input_file": { - "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" - }, - "start_col": 5, - "start_line": 279 - }, - "While trying to retrieve the implicit argument 'pedersen_ptr' in:" - ], - "start_col": 5, - "start_line": 267 - }, - "While expanding the reference 'pedersen_ptr' in:" - ], - "start_col": 26, - "start_line": 277 - }, - "While trying to update the implicit return value 'pedersen_ptr' in:" - ], - "start_col": 35, - "start_line": 13 - } - }, - "3219": { - "accessible_scopes": [ - "sheet.library", - "sheet.library._get_calldata" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 78, - "end_line": 13, - "input_file": { - "filename": "autogen/starknet/storage_var/Sheet_cell_calldata/decl.cairo" - }, - "parent_location": [ - { - "end_col": 67, - "end_line": 277, - "input_file": { - "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" - }, - "parent_location": [ - { - "end_col": 20, - "end_line": 268, - "input_file": { - "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" - }, - "parent_location": [ - { - "end_col": 29, - "end_line": 279, - "input_file": { - "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" - }, - "start_col": 5, - "start_line": 279 - }, - "While trying to retrieve the implicit argument 'range_check_ptr' in:" - ], - "start_col": 5, - "start_line": 268 - }, - "While expanding the reference 'range_check_ptr' in:" - ], - "start_col": 26, - "start_line": 277 - }, - "While trying to update the implicit return value 'range_check_ptr' in:" - ], - "start_col": 63, - "start_line": 13 - } - }, - "3220": { - "accessible_scopes": [ - "sheet.library", - "sheet.library._get_calldata" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 19, - "end_line": 269, - "input_file": { - "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" - }, - "parent_location": [ - { - "end_col": 19, - "end_line": 269, - "input_file": { - "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" - }, - "parent_location": [ - { - "end_col": 29, - "end_line": 279, - "input_file": { - "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" - }, - "start_col": 5, - "start_line": 279 - }, - "While trying to retrieve the implicit argument 'token_id' in:" - ], - "start_col": 5, - "start_line": 269 - }, - "While expanding the reference 'token_id' in:" - ], - "start_col": 5, - "start_line": 269 - } - }, - "3221": { - "accessible_scopes": [ - "sheet.library", - "sheet.library._get_calldata" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 23, - "end_line": 270, - "input_file": { - "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" - }, - "parent_location": [ - { - "end_col": 23, - "end_line": 270, - "input_file": { - "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" - }, - "parent_location": [ - { - "end_col": 29, - "end_line": 279, - "input_file": { - "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" - }, - "start_col": 5, - "start_line": 279 - }, - "While trying to retrieve the implicit argument 'calldata_len' in:" - ], - "start_col": 5, - "start_line": 270 - }, - "While expanding the reference 'calldata_len' in:" - ], - "start_col": 5, - "start_line": 270 - } - }, - "3222": { - "accessible_scopes": [ - "sheet.library", - "sheet.library._get_calldata" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 20, - "end_line": 271, - "input_file": { - "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" - }, - "parent_location": [ - { - "end_col": 20, - "end_line": 271, - "input_file": { - "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" - }, - "parent_location": [ - { - "end_col": 29, - "end_line": 279, - "input_file": { - "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" - }, - "start_col": 5, - "start_line": 279 - }, - "While trying to retrieve the implicit argument 'calldata' in:" - ], - "start_col": 5, - "start_line": 271 - }, - "While expanding the reference 'calldata' in:" - ], - "start_col": 5, - "start_line": 271 - } - }, - "3223": { - "accessible_scopes": [ - "sheet.library", - "sheet.library._get_calldata" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 28, - "end_line": 279, - "input_file": { - "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" - }, - "start_col": 19, - "start_line": 279 - } - }, - "3225": { - "accessible_scopes": [ - "sheet.library", - "sheet.library._get_calldata" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 29, - "end_line": 279, - "input_file": { - "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" - }, - "start_col": 5, - "start_line": 279 - } - }, - "3227": { - "accessible_scopes": [ - "sheet.library", - "sheet.library._get_calldata" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 15, - "end_line": 280, - "input_file": { - "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" - }, - "start_col": 5, - "start_line": 280 - } - }, - "3228": { - "accessible_scopes": [ - "sheet.library", - "sheet.library._render_cell" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 18, - "end_line": 290, - "input_file": { - "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" - }, - "start_col": 5, - "start_line": 290 - } - }, - "3230": { - "accessible_scopes": [ - "sheet.library", - "sheet.library._render_cell" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 7, - "end_line": 291, - "input_file": { - "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" - }, - "start_col": 5, - "start_line": 291 - } - }, - "3232": { - "accessible_scopes": [ - "sheet.library", - "sheet.library._render_cell" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 23, - "end_line": 284, - "input_file": { - "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" - }, - "parent_location": [ - { - "end_col": 23, - "end_line": 284, - "input_file": { - "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" - }, - "parent_location": [ - { - "end_col": 25, - "end_line": 292, - "input_file": { - "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" - }, - "start_col": 9, - "start_line": 292 - }, - "While trying to retrieve the implicit argument 'syscall_ptr' in:" - ], - "start_col": 5, - "start_line": 284 - }, - "While expanding the reference 'syscall_ptr' in:" - ], - "start_col": 5, - "start_line": 284 - } - }, - "3233": { - "accessible_scopes": [ - "sheet.library", - "sheet.library._render_cell" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 31, - "end_line": 285, - "input_file": { - "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" - }, - "parent_location": [ - { - "end_col": 31, - "end_line": 285, - "input_file": { - "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" - }, - "parent_location": [ - { - "end_col": 25, - "end_line": 292, - "input_file": { - "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" - }, - "start_col": 9, - "start_line": 292 - }, - "While trying to retrieve the implicit argument 'pedersen_ptr' in:" - ], - "start_col": 5, - "start_line": 285 - }, - "While expanding the reference 'pedersen_ptr' in:" - ], - "start_col": 5, - "start_line": 285 - } - }, - "3234": { - "accessible_scopes": [ - "sheet.library", - "sheet.library._render_cell" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 20, - "end_line": 286, - "input_file": { - "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" - }, - "parent_location": [ - { - "end_col": 20, - "end_line": 286, - "input_file": { - "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" - }, - "parent_location": [ - { - "end_col": 25, - "end_line": 292, - "input_file": { - "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" - }, - "start_col": 9, - "start_line": 292 - }, - "While trying to retrieve the implicit argument 'range_check_ptr' in:" - ], - "start_col": 5, - "start_line": 286 - }, - "While expanding the reference 'range_check_ptr' in:" - ], - "start_col": 5, - "start_line": 286 - } - }, - "3235": { - "accessible_scopes": [ - "sheet.library", - "sheet.library._render_cell" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 32, - "end_line": 287, - "input_file": { - "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" - }, - "parent_location": [ - { - "end_col": 32, - "end_line": 287, - "input_file": { - "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" - }, - "parent_location": [ - { - "end_col": 25, - "end_line": 292, - "input_file": { - "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" - }, - "start_col": 9, - "start_line": 292 - }, - "While trying to retrieve the implicit argument 'rendered_cells' in:" - ], - "start_col": 5, - "start_line": 287 - }, - "While expanding the reference 'rendered_cells' in:" - ], - "start_col": 5, - "start_line": 287 - } - }, - "3236": { - "accessible_scopes": [ - "sheet.library", - "sheet.library._render_cell" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 28, - "end_line": 288, - "input_file": { - "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" - }, - "parent_location": [ - { - "end_col": 28, - "end_line": 288, - "input_file": { - "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" - }, - "parent_location": [ - { - "end_col": 25, - "end_line": 292, - "input_file": { - "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" - }, - "start_col": 9, - "start_line": 292 - }, - "While trying to retrieve the implicit argument 'value_is_token_id' in:" - ], - "start_col": 5, - "start_line": 288 - }, - "While expanding the reference 'value_is_token_id' in:" - ], - "start_col": 5, - "start_line": 288 - } - }, - "3237": { - "accessible_scopes": [ - "sheet.library", - "sheet.library._render_cell" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 14, - "end_line": 289, - "input_file": { - "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" - }, - "parent_location": [ - { - "end_col": 22, - "end_line": 292, - "input_file": { - "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" - }, - "start_col": 17, - "start_line": 292 - }, - "While expanding the reference 'value' in:" - ], - "start_col": 3, - "start_line": 289 - } - }, - "3238": { - "accessible_scopes": [ - "sheet.library", - "sheet.library._render_cell" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 25, - "end_line": 292, - "input_file": { - "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" - }, - "start_col": 9, - "start_line": 292 - } - }, - "3239": { - "accessible_scopes": [ - "sheet.library", - "sheet.library._render_cell" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 32, - "end_line": 287, - "input_file": { - "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" - }, - "parent_location": [ - { - "end_col": 60, - "end_line": 295, - "input_file": { - "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" - }, - "start_col": 46, - "start_line": 295 - }, - "While expanding the reference 'rendered_cells' in:" - ], - "start_col": 5, - "start_line": 287 - } - }, - "3240": { - "accessible_scopes": [ - "sheet.library", - "sheet.library._render_cell" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 14, - "end_line": 289, - "input_file": { - "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" - }, - "parent_location": [ - { - "end_col": 67, - "end_line": 295, - "input_file": { - "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" - }, - "start_col": 62, - "start_line": 295 - }, - "While expanding the reference 'value' in:" - ], - "start_col": 3, - "start_line": 289 - } - }, - "3241": { - "accessible_scopes": [ - "sheet.library", - "sheet.library._render_cell" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 68, - "end_line": 295, - "input_file": { - "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" - }, - "start_col": 27, - "start_line": 295 - } - }, - "3243": { - "accessible_scopes": [ - "sheet.library", - "sheet.library._render_cell" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 60, - "end_line": 295, - "input_file": { - "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" - }, - "parent_location": [ - { - "end_col": 60, - "end_line": 295, - "input_file": { - "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" - }, - "start_col": 46, - "start_line": 295 - }, - "While auto generating local variable for 'rendered_cells'." - ], - "start_col": 46, - "start_line": 295 - } - }, - "3244": { - "accessible_scopes": [ - "sheet.library", - "sheet.library._render_cell" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 39, - "end_line": 296, - "input_file": { - "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" - }, - "start_col": 9, - "start_line": 296 - } - }, - "3246": { - "accessible_scopes": [ - "sheet.library", - "sheet.library._render_cell" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 7, - "end_line": 296, - "input_file": { - "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" - }, - "start_col": 5, - "start_line": 296 - } - }, - "3248": { - "accessible_scopes": [ - "sheet.library", - "sheet.library._render_cell" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 7, - "end_line": 296, - "input_file": { - "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" - }, - "start_col": 5, - "start_line": 296 - } - }, - "3250": { - "accessible_scopes": [ - "sheet.library", - "sheet.library._render_cell" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 23, - "end_line": 284, - "input_file": { - "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" - }, - "parent_location": [ - { - "end_col": 23, - "end_line": 284, - "input_file": { - "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" - }, - "parent_location": [ - { - "end_col": 33, - "end_line": 297, - "input_file": { - "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" - }, - "start_col": 9, - "start_line": 297 - }, - "While trying to retrieve the implicit argument 'syscall_ptr' in:" - ], - "start_col": 5, - "start_line": 284 - }, - "While expanding the reference 'syscall_ptr' in:" - ], - "start_col": 5, - "start_line": 284 - } - }, - "3251": { - "accessible_scopes": [ - "sheet.library", - "sheet.library._render_cell" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 31, - "end_line": 285, - "input_file": { - "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" - }, - "parent_location": [ - { - "end_col": 31, - "end_line": 285, - "input_file": { - "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" - }, - "parent_location": [ - { - "end_col": 33, - "end_line": 297, - "input_file": { - "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" - }, - "start_col": 9, - "start_line": 297 - }, - "While trying to retrieve the implicit argument 'pedersen_ptr' in:" - ], - "start_col": 5, - "start_line": 285 - }, - "While expanding the reference 'pedersen_ptr' in:" - ], - "start_col": 5, - "start_line": 285 - } - }, - "3252": { - "accessible_scopes": [ - "sheet.library", - "sheet.library._render_cell" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 20, - "end_line": 286, - "input_file": { - "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" - }, - "parent_location": [ - { - "end_col": 20, - "end_line": 286, - "input_file": { - "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" - }, - "parent_location": [ - { - "end_col": 33, - "end_line": 297, - "input_file": { - "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" - }, - "start_col": 9, - "start_line": 297 - }, - "While trying to retrieve the implicit argument 'range_check_ptr' in:" - ], - "start_col": 5, - "start_line": 286 - }, - "While expanding the reference 'range_check_ptr' in:" - ], - "start_col": 5, - "start_line": 286 - } - }, - "3253": { - "accessible_scopes": [ - "sheet.library", - "sheet.library._render_cell" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 60, - "end_line": 295, - "input_file": { - "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" - }, - "parent_location": [ - { - "end_col": 60, - "end_line": 295, - "input_file": { - "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" - }, - "parent_location": [ - { - "end_col": 32, - "end_line": 287, - "input_file": { - "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" - }, - "parent_location": [ - { - "end_col": 33, - "end_line": 297, - "input_file": { - "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" - }, - "start_col": 9, - "start_line": 297 - }, - "While trying to retrieve the implicit argument 'rendered_cells' in:" - ], - "start_col": 5, - "start_line": 287 - }, - "While expanding the reference 'rendered_cells' in:" - ], - "start_col": 46, - "start_line": 295 - }, - "While auto generating local variable for 'rendered_cells'." - ], - "start_col": 46, - "start_line": 295 - } - }, - "3254": { - "accessible_scopes": [ - "sheet.library", - "sheet.library._render_cell" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 28, - "end_line": 288, - "input_file": { - "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" - }, - "parent_location": [ - { - "end_col": 28, - "end_line": 288, - "input_file": { - "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" - }, - "parent_location": [ - { - "end_col": 33, - "end_line": 297, - "input_file": { - "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" - }, - "start_col": 9, - "start_line": 297 - }, - "While trying to retrieve the implicit argument 'value_is_token_id' in:" - ], - "start_col": 5, - "start_line": 288 - }, - "While expanding the reference 'value_is_token_id' in:" - ], - "start_col": 5, - "start_line": 288 - } - }, - "3255": { - "accessible_scopes": [ - "sheet.library", - "sheet.library._render_cell" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 23, - "end_line": 295, - "input_file": { - "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" - }, - "parent_location": [ - { - "end_col": 30, - "end_line": 297, - "input_file": { - "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" - }, - "start_col": 17, - "start_line": 297 - }, - "While expanding the reference 'stored_result' in:" - ], - "start_col": 10, - "start_line": 295 - } - }, - "3256": { - "accessible_scopes": [ - "sheet.library", - "sheet.library._render_cell" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 33, - "end_line": 297, - "input_file": { - "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" - }, - "start_col": 9, - "start_line": 297 - } - }, - "3257": { - "accessible_scopes": [ - "sheet.library", - "sheet.library._render_cell" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 23, - "end_line": 284, - "input_file": { - "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" - }, - "parent_location": [ - { - "end_col": 37, - "end_line": 113, - "input_file": { - "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" - }, - "parent_location": [ - { - "end_col": 83, - "end_line": 300, - "input_file": { - "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" - }, - "start_col": 62, - "start_line": 300 - }, - "While trying to retrieve the implicit argument 'syscall_ptr' in:" - ], - "start_col": 19, - "start_line": 113 - }, - "While expanding the reference 'syscall_ptr' in:" - ], - "start_col": 5, - "start_line": 284 - } - }, - "3258": { - "accessible_scopes": [ - "sheet.library", - "sheet.library._render_cell" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 31, - "end_line": 285, - "input_file": { - "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" - }, - "parent_location": [ - { - "end_col": 65, - "end_line": 113, - "input_file": { - "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" - }, - "parent_location": [ - { - "end_col": 83, - "end_line": 300, - "input_file": { - "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" - }, - "start_col": 62, - "start_line": 300 - }, - "While trying to retrieve the implicit argument 'pedersen_ptr' in:" - ], - "start_col": 39, - "start_line": 113 - }, - "While expanding the reference 'pedersen_ptr' in:" - ], - "start_col": 5, - "start_line": 285 - } - }, - "3259": { - "accessible_scopes": [ - "sheet.library", - "sheet.library._render_cell" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 20, - "end_line": 286, - "input_file": { - "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" - }, - "parent_location": [ - { - "end_col": 82, - "end_line": 113, - "input_file": { - "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" - }, - "parent_location": [ - { - "end_col": 83, - "end_line": 300, - "input_file": { - "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" - }, - "start_col": 62, - "start_line": 300 - }, - "While trying to retrieve the implicit argument 'range_check_ptr' in:" - ], - "start_col": 67, - "start_line": 113 - }, - "While expanding the reference 'range_check_ptr' in:" - ], - "start_col": 5, - "start_line": 286 - } - }, - "3260": { - "accessible_scopes": [ - "sheet.library", - "sheet.library._render_cell" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 14, - "end_line": 289, - "input_file": { - "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" - }, - "parent_location": [ - { - "end_col": 82, - "end_line": 300, - "input_file": { - "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" - }, - "start_col": 77, - "start_line": 300 - }, - "While expanding the reference 'value' in:" - ], - "start_col": 3, - "start_line": 289 - } - }, - "3261": { - "accessible_scopes": [ - "sheet.library", - "sheet.library._render_cell" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 83, - "end_line": 300, - "input_file": { - "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" - }, - "start_col": 62, - "start_line": 300 - } - }, - "3263": { - "accessible_scopes": [ - "sheet.library", - "sheet.library._render_cell" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 58, - "end_line": 300, - "input_file": { - "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" - }, - "parent_location": [ - { - "end_col": 58, - "end_line": 300, - "input_file": { - "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" - }, - "start_col": 50, - "start_line": 300 - }, - "While auto generating local variable for 'calldata'." - ], - "start_col": 50, - "start_line": 300 - } - }, - "3264": { - "accessible_scopes": [ - "sheet.library", - "sheet.library._render_cell" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 48, - "end_line": 300, - "input_file": { - "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" - }, - "parent_location": [ - { - "end_col": 48, - "end_line": 300, - "input_file": { - "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" - }, - "start_col": 36, - "start_line": 300 - }, - "While auto generating local variable for 'calldata_len'." - ], - "start_col": 36, - "start_line": 300 - } - }, - "3265": { - "accessible_scopes": [ - "sheet.library", - "sheet.library._render_cell" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 34, - "end_line": 300, - "input_file": { - "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" - }, - "parent_location": [ - { - "end_col": 34, - "end_line": 300, - "input_file": { - "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" - }, - "start_col": 28, - "start_line": 300 - }, - "While auto generating local variable for 'result'." - ], - "start_col": 28, - "start_line": 300 - } - }, - "3266": { - "accessible_scopes": [ - "sheet.library", - "sheet.library._render_cell" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 37, - "end_line": 301, - "input_file": { - "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" - }, - "start_col": 9, - "start_line": 301 - } - }, - "3268": { - "accessible_scopes": [ - "sheet.library", - "sheet.library._render_cell" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 7, - "end_line": 301, - "input_file": { - "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" - }, - "start_col": 5, - "start_line": 301 - } - }, - "3270": { - "accessible_scopes": [ - "sheet.library", - "sheet.library._render_cell" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 60, - "end_line": 295, - "input_file": { - "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" - }, - "parent_location": [ - { - "end_col": 60, - "end_line": 295, - "input_file": { - "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" - }, - "parent_location": [ - { - "end_col": 43, - "end_line": 302, - "input_file": { - "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" - }, - "start_col": 29, - "start_line": 302 - }, - "While expanding the reference 'rendered_cells' in:" - ], - "start_col": 46, - "start_line": 295 - }, - "While auto generating local variable for 'rendered_cells'." - ], - "start_col": 46, - "start_line": 295 - } - }, - "3271": { - "accessible_scopes": [ - "sheet.library", - "sheet.library._render_cell" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 14, - "end_line": 289, - "input_file": { - "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" - }, - "parent_location": [ - { - "end_col": 50, - "end_line": 302, - "input_file": { - "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" - }, - "start_col": 45, - "start_line": 302 - }, - "While expanding the reference 'value' in:" - ], - "start_col": 3, - "start_line": 289 - } - }, - "3272": { - "accessible_scopes": [ - "sheet.library", - "sheet.library._render_cell" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 34, - "end_line": 300, - "input_file": { - "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" - }, - "parent_location": [ - { - "end_col": 34, - "end_line": 300, - "input_file": { - "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" - }, - "parent_location": [ - { - "end_col": 58, - "end_line": 302, - "input_file": { - "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" - }, - "start_col": 52, - "start_line": 302 - }, - "While expanding the reference 'result' in:" - ], - "start_col": 28, - "start_line": 300 - }, - "While auto generating local variable for 'result'." - ], - "start_col": 28, - "start_line": 300 - } - }, - "3273": { - "accessible_scopes": [ - "sheet.library", - "sheet.library._render_cell" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 59, - "end_line": 302, - "input_file": { - "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" - }, - "start_col": 9, - "start_line": 302 - } - }, - "3275": { - "accessible_scopes": [ - "sheet.library", - "sheet.library._render_cell" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 37, - "end_line": 113, - "input_file": { - "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" - }, - "parent_location": [ - { - "end_col": 83, - "end_line": 300, - "input_file": { - "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" - }, - "parent_location": [ - { - "end_col": 23, - "end_line": 284, - "input_file": { - "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" - }, - "parent_location": [ - { - "end_col": 26, - "end_line": 303, - "input_file": { - "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" - }, - "start_col": 9, - "start_line": 303 - }, - "While trying to retrieve the implicit argument 'syscall_ptr' in:" - ], - "start_col": 5, - "start_line": 284 - }, - "While expanding the reference 'syscall_ptr' in:" - ], - "start_col": 62, - "start_line": 300 - }, - "While trying to update the implicit return value 'syscall_ptr' in:" - ], - "start_col": 19, - "start_line": 113 - } - }, - "3276": { - "accessible_scopes": [ - "sheet.library", - "sheet.library._render_cell" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 65, - "end_line": 113, - "input_file": { - "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" - }, - "parent_location": [ - { - "end_col": 83, - "end_line": 300, - "input_file": { - "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" - }, - "parent_location": [ - { - "end_col": 31, - "end_line": 285, - "input_file": { - "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" - }, - "parent_location": [ - { - "end_col": 26, - "end_line": 303, - "input_file": { - "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" - }, - "start_col": 9, - "start_line": 303 - }, - "While trying to retrieve the implicit argument 'pedersen_ptr' in:" - ], - "start_col": 5, - "start_line": 285 - }, - "While expanding the reference 'pedersen_ptr' in:" - ], - "start_col": 62, - "start_line": 300 - }, - "While trying to update the implicit return value 'pedersen_ptr' in:" - ], - "start_col": 39, - "start_line": 113 - } - }, - "3277": { - "accessible_scopes": [ - "sheet.library", - "sheet.library._render_cell" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 82, - "end_line": 113, - "input_file": { - "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" - }, - "parent_location": [ - { - "end_col": 83, - "end_line": 300, - "input_file": { - "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" - }, - "parent_location": [ - { - "end_col": 20, - "end_line": 286, - "input_file": { - "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" - }, - "parent_location": [ - { - "end_col": 26, - "end_line": 303, - "input_file": { - "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" - }, - "start_col": 9, - "start_line": 303 - }, - "While trying to retrieve the implicit argument 'range_check_ptr' in:" - ], - "start_col": 5, - "start_line": 286 - }, - "While expanding the reference 'range_check_ptr' in:" - ], - "start_col": 62, - "start_line": 300 - }, - "While trying to update the implicit return value 'range_check_ptr' in:" - ], - "start_col": 67, - "start_line": 113 - } - }, - "3278": { - "accessible_scopes": [ - "sheet.library", - "sheet.library._render_cell" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 43, - "end_line": 302, - "input_file": { - "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" - }, - "parent_location": [ - { - "end_col": 32, - "end_line": 287, - "input_file": { - "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" - }, - "parent_location": [ - { - "end_col": 26, - "end_line": 303, - "input_file": { - "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" - }, - "start_col": 9, - "start_line": 303 - }, - "While trying to retrieve the implicit argument 'rendered_cells' in:" - ], - "start_col": 5, - "start_line": 287 - }, - "While expanding the reference 'rendered_cells' in:" - ], - "start_col": 29, - "start_line": 302 - } - }, - "3279": { - "accessible_scopes": [ - "sheet.library", - "sheet.library._render_cell" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 28, - "end_line": 288, - "input_file": { - "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" - }, - "parent_location": [ - { - "end_col": 28, - "end_line": 288, - "input_file": { - "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" - }, - "parent_location": [ - { - "end_col": 26, - "end_line": 303, - "input_file": { - "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" - }, - "start_col": 9, - "start_line": 303 - }, - "While trying to retrieve the implicit argument 'value_is_token_id' in:" - ], - "start_col": 5, - "start_line": 288 - }, - "While expanding the reference 'value_is_token_id' in:" - ], - "start_col": 5, - "start_line": 288 - } - }, - "3280": { - "accessible_scopes": [ - "sheet.library", - "sheet.library._render_cell" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 34, - "end_line": 300, - "input_file": { - "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" - }, - "parent_location": [ - { - "end_col": 34, - "end_line": 300, - "input_file": { - "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" - }, - "parent_location": [ - { - "end_col": 23, - "end_line": 303, - "input_file": { - "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" - }, - "start_col": 17, - "start_line": 303 - }, - "While expanding the reference 'result' in:" - ], - "start_col": 28, - "start_line": 300 - }, - "While auto generating local variable for 'result'." - ], - "start_col": 28, - "start_line": 300 - } - }, - "3281": { - "accessible_scopes": [ - "sheet.library", - "sheet.library._render_cell" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 26, - "end_line": 303, - "input_file": { - "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" - }, - "start_col": 9, - "start_line": 303 - } - }, - "3282": { - "accessible_scopes": [ - "sheet.library", - "sheet.library._render_cell" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 82, - "end_line": 113, - "input_file": { - "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" - }, - "parent_location": [ - { - "end_col": 83, - "end_line": 300, - "input_file": { - "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" - }, - "parent_location": [ - { - "end_col": 27, - "end_line": 18, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/math_cmp.cairo" - }, - "parent_location": [ - { - "end_col": 63, - "end_line": 306, - "input_file": { - "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" - }, - "start_col": 40, - "start_line": 306 - }, - "While trying to retrieve the implicit argument 'range_check_ptr' in:" - ], - "start_col": 12, - "start_line": 18 - }, - "While expanding the reference 'range_check_ptr' in:" - ], - "start_col": 62, - "start_line": 300 - }, - "While trying to update the implicit return value 'range_check_ptr' in:" - ], - "start_col": 67, - "start_line": 113 - } - }, - "3283": { - "accessible_scopes": [ - "sheet.library", - "sheet.library._render_cell" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 26, - "end_line": 300, - "input_file": { - "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" - }, - "parent_location": [ - { - "end_col": 62, - "end_line": 306, - "input_file": { - "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" - }, - "start_col": 46, - "start_line": 306 - }, - "While expanding the reference 'contract_address' in:" - ], - "start_col": 10, - "start_line": 300 - } - }, - "3284": { - "accessible_scopes": [ - "sheet.library", - "sheet.library._render_cell" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 63, - "end_line": 306, - "input_file": { - "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" - }, - "start_col": 40, - "start_line": 306 - } - }, - "3286": { - "accessible_scopes": [ - "sheet.library", - "sheet.library._render_cell" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 37, - "end_line": 113, - "input_file": { - "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" - }, - "parent_location": [ - { - "end_col": 83, - "end_line": 300, - "input_file": { - "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" - }, - "parent_location": [ - { - "end_col": 23, - "end_line": 284, - "input_file": { - "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" - }, - "parent_location": [ - { - "end_col": 24, - "end_line": 309, - "input_file": { - "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" - }, - "start_col": 45, - "start_line": 307 - }, - "While trying to retrieve the implicit argument 'syscall_ptr' in:" - ], - "start_col": 5, - "start_line": 284 - }, - "While expanding the reference 'syscall_ptr' in:" - ], - "start_col": 62, - "start_line": 300 - }, - "While trying to update the implicit return value 'syscall_ptr' in:" - ], - "start_col": 19, - "start_line": 113 - } - }, - "3287": { - "accessible_scopes": [ - "sheet.library", - "sheet.library._render_cell" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 65, - "end_line": 113, - "input_file": { - "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" - }, - "parent_location": [ - { - "end_col": 83, - "end_line": 300, - "input_file": { - "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" - }, - "parent_location": [ - { - "end_col": 31, - "end_line": 285, - "input_file": { - "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" - }, - "parent_location": [ - { - "end_col": 24, - "end_line": 309, - "input_file": { - "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" - }, - "start_col": 45, - "start_line": 307 - }, - "While trying to retrieve the implicit argument 'pedersen_ptr' in:" - ], - "start_col": 5, - "start_line": 285 - }, - "While expanding the reference 'pedersen_ptr' in:" - ], - "start_col": 62, - "start_line": 300 - }, - "While trying to update the implicit return value 'pedersen_ptr' in:" - ], - "start_col": 39, - "start_line": 113 - } - }, - "3288": { - "accessible_scopes": [ - "sheet.library", - "sheet.library._render_cell" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 27, - "end_line": 18, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/math_cmp.cairo" - }, - "parent_location": [ - { - "end_col": 63, - "end_line": 306, - "input_file": { - "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" - }, - "parent_location": [ - { - "end_col": 20, - "end_line": 286, - "input_file": { - "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" - }, - "parent_location": [ - { - "end_col": 24, - "end_line": 309, - "input_file": { - "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" - }, - "start_col": 45, - "start_line": 307 - }, - "While trying to retrieve the implicit argument 'range_check_ptr' in:" - ], - "start_col": 5, - "start_line": 286 - }, - "While expanding the reference 'range_check_ptr' in:" - ], - "start_col": 40, - "start_line": 306 - }, - "While trying to update the implicit return value 'range_check_ptr' in:" - ], - "start_col": 12, - "start_line": 18 - } - }, - "3289": { - "accessible_scopes": [ - "sheet.library", - "sheet.library._render_cell" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 60, - "end_line": 295, - "input_file": { - "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" - }, - "parent_location": [ - { - "end_col": 60, - "end_line": 295, - "input_file": { - "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" - }, - "parent_location": [ - { - "end_col": 32, - "end_line": 287, - "input_file": { - "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" - }, - "parent_location": [ - { - "end_col": 24, - "end_line": 309, - "input_file": { - "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" - }, - "start_col": 45, - "start_line": 307 - }, - "While trying to retrieve the implicit argument 'rendered_cells' in:" - ], - "start_col": 5, - "start_line": 287 - }, - "While expanding the reference 'rendered_cells' in:" - ], - "start_col": 46, - "start_line": 295 - }, - "While auto generating local variable for 'rendered_cells'." - ], - "start_col": 46, - "start_line": 295 - } - }, - "3290": { - "accessible_scopes": [ - "sheet.library", - "sheet.library._render_cell" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 37, - "end_line": 306, - "input_file": { - "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" - }, - "parent_location": [ - { - "end_col": 55, - "end_line": 308, - "input_file": { - "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" - }, - "start_col": 27, - "start_line": 308 - }, - "While expanding the reference 'contract_address_is_token_id' in:" - ], - "start_col": 9, - "start_line": 306 - } - }, - "3291": { - "accessible_scopes": [ - "sheet.library", - "sheet.library._render_cell" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 26, - "end_line": 300, - "input_file": { - "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" - }, - "parent_location": [ - { - "end_col": 23, - "end_line": 309, - "input_file": { - "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" - }, - "start_col": 7, - "start_line": 309 - }, - "While expanding the reference 'contract_address' in:" - ], - "start_col": 10, - "start_line": 300 - } - }, - "3292": { - "accessible_scopes": [ - "sheet.library", - "sheet.library._render_cell" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 24, - "end_line": 309, - "input_file": { - "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" - }, - "start_col": 45, - "start_line": 307 - } - }, - "3294": { - "accessible_scopes": [ - "sheet.library", - "sheet.library._render_cell" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 41, - "end_line": 307, - "input_file": { - "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" - }, - "start_col": 10, - "start_line": 307 - } - }, - "3295": { - "accessible_scopes": [ - "sheet.library", - "sheet.library._render_cell" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 51, - "end_line": 310, - "input_file": { - "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" - }, - "start_col": 44, - "start_line": 310 - } - }, - "3297": { - "accessible_scopes": [ - "sheet.library", - "sheet.library._render_cell" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 40, - "end_line": 310, - "input_file": { - "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" - }, - "start_col": 10, - "start_line": 310 - } - }, - "3298": { - "accessible_scopes": [ - "sheet.library", - "sheet.library._render_cell" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 23, - "end_line": 284, - "input_file": { - "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" - }, - "parent_location": [ - { - "end_col": 24, - "end_line": 309, - "input_file": { - "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" - }, - "parent_location": [ - { - "end_col": 23, - "end_line": 328, - "input_file": { - "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" - }, - "parent_location": [ - { - "end_col": 9, - "end_line": 316, - "input_file": { - "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" - }, - "start_col": 5, - "start_line": 311 - }, - "While trying to retrieve the implicit argument 'syscall_ptr' in:" - ], - "start_col": 5, - "start_line": 328 - }, - "While expanding the reference 'syscall_ptr' in:" - ], - "start_col": 45, - "start_line": 307 - }, - "While trying to update the implicit return value 'syscall_ptr' in:" - ], - "start_col": 5, - "start_line": 284 - } - }, - "3299": { - "accessible_scopes": [ - "sheet.library", - "sheet.library._render_cell" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 31, - "end_line": 285, - "input_file": { - "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" - }, - "parent_location": [ - { - "end_col": 24, - "end_line": 309, - "input_file": { - "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" - }, - "parent_location": [ - { - "end_col": 31, - "end_line": 329, - "input_file": { - "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" - }, - "parent_location": [ - { - "end_col": 9, - "end_line": 316, - "input_file": { - "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" - }, - "start_col": 5, - "start_line": 311 - }, - "While trying to retrieve the implicit argument 'pedersen_ptr' in:" - ], - "start_col": 5, - "start_line": 329 - }, - "While expanding the reference 'pedersen_ptr' in:" - ], - "start_col": 45, - "start_line": 307 - }, - "While trying to update the implicit return value 'pedersen_ptr' in:" - ], - "start_col": 5, - "start_line": 285 - } - }, - "3300": { - "accessible_scopes": [ - "sheet.library", - "sheet.library._render_cell" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 20, - "end_line": 286, - "input_file": { - "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" - }, - "parent_location": [ - { - "end_col": 24, - "end_line": 309, - "input_file": { - "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" - }, - "parent_location": [ - { - "end_col": 20, - "end_line": 330, - "input_file": { - "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" - }, - "parent_location": [ - { - "end_col": 9, - "end_line": 316, - "input_file": { - "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" - }, - "start_col": 5, - "start_line": 311 - }, - "While trying to retrieve the implicit argument 'range_check_ptr' in:" - ], - "start_col": 5, - "start_line": 330 - }, - "While expanding the reference 'range_check_ptr' in:" - ], - "start_col": 45, - "start_line": 307 - }, - "While trying to update the implicit return value 'range_check_ptr' in:" - ], - "start_col": 5, - "start_line": 286 - } - }, - "3301": { - "accessible_scopes": [ - "sheet.library", - "sheet.library._render_cell" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 58, - "end_line": 300, - "input_file": { - "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" - }, - "parent_location": [ - { - "end_col": 58, - "end_line": 300, - "input_file": { - "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" - }, - "parent_location": [ - { - "end_col": 30, - "end_line": 312, - "input_file": { - "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" - }, - "start_col": 22, - "start_line": 312 - }, - "While expanding the reference 'calldata' in:" - ], - "start_col": 50, - "start_line": 300 - }, - "While auto generating local variable for 'calldata'." - ], - "start_col": 50, - "start_line": 300 - } - }, - "3302": { - "accessible_scopes": [ - "sheet.library", - "sheet.library._render_cell" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 33, - "end_line": 310, - "input_file": { - "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" - }, - "parent_location": [ - { - "end_col": 44, - "end_line": 313, - "input_file": { - "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" - }, - "start_col": 27, - "start_line": 313 - }, - "While expanding the reference 'calldata_rendered' in:" - ], - "start_col": 16, - "start_line": 310 - } - }, - "3303": { - "accessible_scopes": [ - "sheet.library", - "sheet.library._render_cell" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 32, - "end_line": 287, - "input_file": { - "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" - }, - "parent_location": [ - { - "end_col": 24, - "end_line": 309, - "input_file": { - "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" - }, - "parent_location": [ - { - "end_col": 38, - "end_line": 314, - "input_file": { - "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" - }, - "start_col": 24, - "start_line": 314 - }, - "While expanding the reference 'rendered_cells' in:" - ], - "start_col": 45, - "start_line": 307 - }, - "While trying to update the implicit return value 'rendered_cells' in:" - ], - "start_col": 5, - "start_line": 287 - } - }, - "3304": { - "accessible_scopes": [ - "sheet.library", - "sheet.library._render_cell" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 48, - "end_line": 300, - "input_file": { - "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" - }, - "parent_location": [ - { - "end_col": 48, - "end_line": 300, - "input_file": { - "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" - }, - "parent_location": [ - { - "end_col": 26, - "end_line": 315, - "input_file": { - "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" - }, - "start_col": 14, - "start_line": 315 - }, - "While expanding the reference 'calldata_len' in:" - ], - "start_col": 36, - "start_line": 300 - }, - "While auto generating local variable for 'calldata_len'." - ], - "start_col": 36, - "start_line": 300 - } - }, - "3305": { - "accessible_scopes": [ - "sheet.library", - "sheet.library._render_cell" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 8, - "end_line": 316, - "input_file": { - "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" - }, - "start_col": 7, - "start_line": 316 - } - }, - "3307": { - "accessible_scopes": [ - "sheet.library", - "sheet.library._render_cell" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 9, - "end_line": 316, - "input_file": { - "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" - }, - "start_col": 5, - "start_line": 311 - } - }, - "3309": { - "accessible_scopes": [ - "sheet.library", - "sheet.library._render_cell" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 23, - "end_line": 328, - "input_file": { - "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" - }, - "parent_location": [ - { - "end_col": 9, - "end_line": 316, - "input_file": { - "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" - }, - "parent_location": [ - { - "end_col": 38, - "end_line": 42, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/starknet/common/syscalls.cairo" - }, - "parent_location": [ - { - "end_col": 6, - "end_line": 320, - "input_file": { - "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" - }, - "start_col": 48, - "start_line": 318 - }, - "While trying to retrieve the implicit argument 'syscall_ptr' in:" - ], - "start_col": 20, - "start_line": 42 - }, - "While expanding the reference 'syscall_ptr' in:" - ], - "start_col": 5, - "start_line": 311 - }, - "While trying to update the implicit return value 'syscall_ptr' in:" - ], - "start_col": 5, - "start_line": 328 - } - }, - "3310": { - "accessible_scopes": [ - "sheet.library", - "sheet.library._render_cell" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 41, - "end_line": 307, - "input_file": { - "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" - }, - "parent_location": [ - { - "end_col": 34, - "end_line": 319, - "input_file": { - "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" - }, - "start_col": 9, - "start_line": 319 - }, - "While expanding the reference 'rendered_contract_address' in:" - ], - "start_col": 16, - "start_line": 307 - } - }, - "3311": { - "accessible_scopes": [ - "sheet.library", - "sheet.library._render_cell" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 34, - "end_line": 300, - "input_file": { - "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" - }, - "parent_location": [ - { - "end_col": 34, - "end_line": 300, - "input_file": { - "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" - }, - "parent_location": [ - { - "end_col": 42, - "end_line": 319, - "input_file": { - "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" - }, - "start_col": 36, - "start_line": 319 - }, - "While expanding the reference 'result' in:" - ], - "start_col": 28, - "start_line": 300 - }, - "While auto generating local variable for 'result'." - ], - "start_col": 28, - "start_line": 300 - } - }, - "3312": { - "accessible_scopes": [ - "sheet.library", - "sheet.library._render_cell" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 26, - "end_line": 315, - "input_file": { - "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" - }, - "parent_location": [ - { - "end_col": 56, - "end_line": 319, - "input_file": { - "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" - }, - "start_col": 44, - "start_line": 319 - }, - "While expanding the reference 'calldata_len' in:" - ], - "start_col": 14, - "start_line": 315 - } - }, - "3313": { - "accessible_scopes": [ - "sheet.library", - "sheet.library._render_cell" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 44, - "end_line": 313, - "input_file": { - "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" - }, - "parent_location": [ - { - "end_col": 75, - "end_line": 319, - "input_file": { - "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" - }, - "start_col": 58, - "start_line": 319 - }, - "While expanding the reference 'calldata_rendered' in:" - ], - "start_col": 27, - "start_line": 313 - } - }, - "3314": { - "accessible_scopes": [ - "sheet.library", - "sheet.library._render_cell" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 6, - "end_line": 320, - "input_file": { - "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" - }, - "start_col": 48, - "start_line": 318 - } - }, - "3316": { - "accessible_scopes": [ - "sheet.library", - "sheet.library._render_cell" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 38, - "end_line": 314, - "input_file": { - "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" - }, - "parent_location": [ - { - "end_col": 39, - "end_line": 323, - "input_file": { - "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" - }, - "start_col": 25, - "start_line": 323 - }, - "While expanding the reference 'rendered_cells' in:" - ], - "start_col": 24, - "start_line": 314 - } - }, - "3317": { - "accessible_scopes": [ - "sheet.library", - "sheet.library._render_cell" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 14, - "end_line": 289, - "input_file": { - "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" - }, - "parent_location": [ - { - "end_col": 46, - "end_line": 323, - "input_file": { - "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" - }, - "start_col": 41, - "start_line": 323 - }, - "While expanding the reference 'value' in:" - ], - "start_col": 3, - "start_line": 289 - } - }, - "3318": { - "accessible_scopes": [ - "sheet.library", - "sheet.library._render_cell" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 28, - "end_line": 321, - "input_file": { - "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" - }, - "parent_location": [ - { - "end_col": 54, - "end_line": 323, - "input_file": { - "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" - }, - "start_col": 48, - "start_line": 323 - }, - "While expanding the reference 'result' in:" - ], - "start_col": 18, - "start_line": 321 - } - }, - "3319": { - "accessible_scopes": [ - "sheet.library", - "sheet.library._render_cell" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 55, - "end_line": 323, - "input_file": { - "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" - }, - "start_col": 5, - "start_line": 323 - } - }, - "3321": { - "accessible_scopes": [ - "sheet.library", - "sheet.library._render_cell" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 38, - "end_line": 42, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/starknet/common/syscalls.cairo" - }, - "parent_location": [ - { - "end_col": 6, - "end_line": 320, - "input_file": { - "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" - }, - "parent_location": [ - { - "end_col": 23, - "end_line": 284, - "input_file": { - "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" - }, - "parent_location": [ - { - "end_col": 22, - "end_line": 324, - "input_file": { - "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" - }, - "start_col": 5, - "start_line": 324 - }, - "While trying to retrieve the implicit argument 'syscall_ptr' in:" - ], - "start_col": 5, - "start_line": 284 - }, - "While expanding the reference 'syscall_ptr' in:" - ], - "start_col": 48, - "start_line": 318 - }, - "While trying to update the implicit return value 'syscall_ptr' in:" - ], - "start_col": 20, - "start_line": 42 - } - }, - "3322": { - "accessible_scopes": [ - "sheet.library", - "sheet.library._render_cell" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 31, - "end_line": 329, - "input_file": { - "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" - }, - "parent_location": [ - { - "end_col": 9, - "end_line": 316, - "input_file": { - "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" - }, - "parent_location": [ - { - "end_col": 31, - "end_line": 285, - "input_file": { - "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" - }, - "parent_location": [ - { - "end_col": 22, - "end_line": 324, - "input_file": { - "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" - }, - "start_col": 5, - "start_line": 324 - }, - "While trying to retrieve the implicit argument 'pedersen_ptr' in:" - ], - "start_col": 5, - "start_line": 285 - }, - "While expanding the reference 'pedersen_ptr' in:" - ], - "start_col": 5, - "start_line": 311 - }, - "While trying to update the implicit return value 'pedersen_ptr' in:" - ], - "start_col": 5, - "start_line": 329 - } - }, - "3323": { - "accessible_scopes": [ - "sheet.library", - "sheet.library._render_cell" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 20, - "end_line": 330, - "input_file": { - "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" - }, - "parent_location": [ - { - "end_col": 9, - "end_line": 316, - "input_file": { - "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" - }, - "parent_location": [ - { - "end_col": 20, - "end_line": 286, - "input_file": { - "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" - }, - "parent_location": [ - { - "end_col": 22, - "end_line": 324, - "input_file": { - "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" - }, - "start_col": 5, - "start_line": 324 - }, - "While trying to retrieve the implicit argument 'range_check_ptr' in:" - ], - "start_col": 5, - "start_line": 286 - }, - "While expanding the reference 'range_check_ptr' in:" - ], - "start_col": 5, - "start_line": 311 - }, - "While trying to update the implicit return value 'range_check_ptr' in:" - ], - "start_col": 5, - "start_line": 330 - } - }, - "3324": { - "accessible_scopes": [ - "sheet.library", - "sheet.library._render_cell" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 39, - "end_line": 323, - "input_file": { - "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" - }, - "parent_location": [ - { - "end_col": 32, - "end_line": 287, - "input_file": { - "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" - }, - "parent_location": [ - { - "end_col": 22, - "end_line": 324, - "input_file": { - "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" - }, - "start_col": 5, - "start_line": 324 - }, - "While trying to retrieve the implicit argument 'rendered_cells' in:" - ], - "start_col": 5, - "start_line": 287 - }, - "While expanding the reference 'rendered_cells' in:" - ], - "start_col": 25, - "start_line": 323 - } - }, - "3325": { - "accessible_scopes": [ - "sheet.library", - "sheet.library._render_cell" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 28, - "end_line": 288, - "input_file": { - "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" - }, - "parent_location": [ - { - "end_col": 28, - "end_line": 288, - "input_file": { - "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" - }, - "parent_location": [ - { - "end_col": 22, - "end_line": 324, - "input_file": { - "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" - }, - "start_col": 5, - "start_line": 324 - }, - "While trying to retrieve the implicit argument 'value_is_token_id' in:" - ], - "start_col": 5, - "start_line": 288 - }, - "While expanding the reference 'value_is_token_id' in:" - ], - "start_col": 5, - "start_line": 288 - } - }, - "3326": { - "accessible_scopes": [ - "sheet.library", - "sheet.library._render_cell" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 28, - "end_line": 321, - "input_file": { - "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" - }, - "parent_location": [ - { - "end_col": 19, - "end_line": 324, - "input_file": { - "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" - }, - "start_col": 13, - "start_line": 324 - }, - "While expanding the reference 'result' in:" - ], - "start_col": 18, - "start_line": 321 - } - }, - "3327": { - "accessible_scopes": [ - "sheet.library", - "sheet.library._render_cell" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 22, - "end_line": 324, - "input_file": { - "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" - }, - "start_col": 5, - "start_line": 324 - } - }, - "3328": { - "accessible_scopes": [ - "sheet.library", - "sheet.library._render_cell_calldata" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 22, - "end_line": 336, - "input_file": { - "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" - }, - "start_col": 9, - "start_line": 336 - } - }, - "3329": { - "accessible_scopes": [ - "sheet.library", - "sheet.library._render_cell_calldata" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 7, - "end_line": 336, - "input_file": { - "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" - }, - "start_col": 5, - "start_line": 336 - } - }, - "3331": { - "accessible_scopes": [ - "sheet.library", - "sheet.library._render_cell_calldata" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 23, - "end_line": 328, - "input_file": { - "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" - }, - "parent_location": [ - { - "end_col": 23, - "end_line": 328, - "input_file": { - "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" - }, - "parent_location": [ - { - "end_col": 19, - "end_line": 337, - "input_file": { - "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" - }, - "start_col": 9, - "start_line": 337 - }, - "While trying to retrieve the implicit argument 'syscall_ptr' in:" - ], - "start_col": 5, - "start_line": 328 - }, - "While expanding the reference 'syscall_ptr' in:" - ], - "start_col": 5, - "start_line": 328 - } - }, - "3332": { - "accessible_scopes": [ - "sheet.library", - "sheet.library._render_cell_calldata" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 31, - "end_line": 329, - "input_file": { - "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" - }, - "parent_location": [ - { - "end_col": 31, - "end_line": 329, - "input_file": { - "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" - }, - "parent_location": [ - { - "end_col": 19, - "end_line": 337, - "input_file": { - "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" - }, - "start_col": 9, - "start_line": 337 - }, - "While trying to retrieve the implicit argument 'pedersen_ptr' in:" - ], - "start_col": 5, - "start_line": 329 - }, - "While expanding the reference 'pedersen_ptr' in:" - ], - "start_col": 5, - "start_line": 329 - } - }, - "3333": { - "accessible_scopes": [ - "sheet.library", - "sheet.library._render_cell_calldata" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 20, - "end_line": 330, - "input_file": { - "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" - }, - "parent_location": [ - { - "end_col": 20, - "end_line": 330, - "input_file": { - "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" - }, - "parent_location": [ - { - "end_col": 19, - "end_line": 337, - "input_file": { - "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" - }, - "start_col": 9, - "start_line": 337 - }, - "While trying to retrieve the implicit argument 'range_check_ptr' in:" - ], - "start_col": 5, - "start_line": 330 - }, - "While expanding the reference 'range_check_ptr' in:" - ], - "start_col": 5, - "start_line": 330 - } - }, - "3334": { - "accessible_scopes": [ - "sheet.library", - "sheet.library._render_cell_calldata" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 24, - "end_line": 331, - "input_file": { - "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" - }, - "parent_location": [ - { - "end_col": 24, - "end_line": 331, - "input_file": { - "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" - }, - "parent_location": [ - { - "end_col": 19, - "end_line": 337, - "input_file": { - "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" - }, - "start_col": 9, - "start_line": 337 - }, - "While trying to retrieve the implicit argument 'calldata_ids' in:" - ], - "start_col": 5, - "start_line": 331 - }, - "While expanding the reference 'calldata_ids' in:" - ], - "start_col": 5, - "start_line": 331 - } - }, - "3335": { - "accessible_scopes": [ - "sheet.library", - "sheet.library._render_cell_calldata" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 29, - "end_line": 332, - "input_file": { - "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" - }, - "parent_location": [ - { - "end_col": 29, - "end_line": 332, - "input_file": { - "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" - }, - "parent_location": [ - { - "end_col": 19, - "end_line": 337, - "input_file": { - "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" - }, - "start_col": 9, - "start_line": 337 - }, - "While trying to retrieve the implicit argument 'calldata_rendered' in:" - ], - "start_col": 5, - "start_line": 332 - }, - "While expanding the reference 'calldata_rendered' in:" - ], - "start_col": 5, - "start_line": 332 - } - }, - "3336": { - "accessible_scopes": [ - "sheet.library", - "sheet.library._render_cell_calldata" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 32, - "end_line": 333, - "input_file": { - "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" - }, - "parent_location": [ - { - "end_col": 32, - "end_line": 333, - "input_file": { - "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" - }, - "parent_location": [ - { - "end_col": 19, - "end_line": 337, - "input_file": { - "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" - }, - "start_col": 9, - "start_line": 337 - }, - "While trying to retrieve the implicit argument 'rendered_cells' in:" - ], - "start_col": 5, - "start_line": 333 - }, - "While expanding the reference 'rendered_cells' in:" - ], - "start_col": 5, - "start_line": 333 - } - }, - "3337": { - "accessible_scopes": [ - "sheet.library", - "sheet.library._render_cell_calldata" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 15, - "end_line": 334, - "input_file": { - "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" - }, - "parent_location": [ - { - "end_col": 15, - "end_line": 334, - "input_file": { - "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" - }, - "parent_location": [ - { - "end_col": 19, - "end_line": 337, - "input_file": { - "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" - }, - "start_col": 9, - "start_line": 337 - }, - "While trying to retrieve the implicit argument 'stop' in:" - ], - "start_col": 5, - "start_line": 334 - }, - "While expanding the reference 'stop' in:" - ], - "start_col": 5, - "start_line": 334 - } - }, - "3338": { - "accessible_scopes": [ - "sheet.library", - "sheet.library._render_cell_calldata" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 19, - "end_line": 337, - "input_file": { - "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" - }, - "start_col": 9, - "start_line": 337 - } - }, - "3339": { - "accessible_scopes": [ - "sheet.library", - "sheet.library._render_cell_calldata" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 36, - "end_line": 339, - "input_file": { - "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" - }, - "parent_location": [ - { - "end_col": 58, - "end_line": 341, - "input_file": { - "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" - }, - "start_col": 53, - "start_line": 341 - }, - "While expanding the reference 'value' in:" - ], - "start_col": 17, - "start_line": 339 - } - }, - "3340": { - "accessible_scopes": [ - "sheet.library", - "sheet.library._render_cell_calldata" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 36, - "end_line": 339, - "input_file": { - "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" - }, - "parent_location": [ - { - "end_col": 85, - "end_line": 341, - "input_file": { - "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" - }, - "start_col": 80, - "start_line": 341 - }, - "While expanding the reference 'value' in:" - ], - "start_col": 17, - "start_line": 339 - } - }, - "3341": { - "accessible_scopes": [ - "sheet.library", - "sheet.library._render_cell_calldata" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 36, - "end_line": 339, - "input_file": { - "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" - }, - "parent_location": [ - { - "end_col": 85, - "end_line": 341, - "input_file": { - "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" - }, - "start_col": 80, - "start_line": 341 - }, - "While expanding the reference 'value' in:" - ], - "start_col": 17, - "start_line": 339 - } - }, - "3342": { - "accessible_scopes": [ - "sheet.library", - "sheet.library._render_cell_calldata" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 20, - "end_line": 330, - "input_file": { - "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" - }, - "parent_location": [ - { - "end_col": 36, - "end_line": 325, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/math.cairo" - }, - "parent_location": [ - { - "end_col": 90, - "end_line": 341, - "input_file": { - "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" - }, - "start_col": 38, - "start_line": 341 - }, - "While trying to retrieve the implicit argument 'range_check_ptr' in:" - ], - "start_col": 21, - "start_line": 325 - }, - "While expanding the reference 'range_check_ptr' in:" - ], - "start_col": 5, - "start_line": 330 - } - }, - "3343": { - "accessible_scopes": [ - "sheet.library", - "sheet.library._render_cell_calldata" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 36, - "end_line": 339, - "input_file": { - "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" - }, - "parent_location": [ - { - "end_col": 58, - "end_line": 341, - "input_file": { - "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" - }, - "start_col": 53, - "start_line": 341 - }, - "While expanding the reference 'value' in:" - ], - "start_col": 17, - "start_line": 339 - } - }, - "3344": { - "accessible_scopes": [ - "sheet.library", - "sheet.library._render_cell_calldata" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 78, - "end_line": 341, - "input_file": { - "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" - }, - "start_col": 60, - "start_line": 341 - } - }, - "3346": { - "accessible_scopes": [ - "sheet.library", - "sheet.library._render_cell_calldata" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 89, - "end_line": 341, - "input_file": { - "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" - }, - "start_col": 80, - "start_line": 341 - } - }, - "3348": { - "accessible_scopes": [ - "sheet.library", - "sheet.library._render_cell_calldata" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 90, - "end_line": 341, - "input_file": { - "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" - }, - "start_col": 38, - "start_line": 341 - } - }, - "3350": { - "accessible_scopes": [ - "sheet.library", - "sheet.library._render_cell_calldata" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 23, - "end_line": 328, - "input_file": { - "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" - }, - "parent_location": [ - { - "end_col": 23, - "end_line": 284, - "input_file": { - "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" - }, - "parent_location": [ - { - "end_col": 43, - "end_line": 343, - "input_file": { - "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" - }, - "start_col": 24, - "start_line": 343 - }, - "While trying to retrieve the implicit argument 'syscall_ptr' in:" - ], - "start_col": 5, - "start_line": 284 - }, - "While expanding the reference 'syscall_ptr' in:" - ], - "start_col": 5, - "start_line": 328 - } - }, - "3351": { - "accessible_scopes": [ - "sheet.library", - "sheet.library._render_cell_calldata" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 31, - "end_line": 329, - "input_file": { - "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" - }, - "parent_location": [ - { - "end_col": 31, - "end_line": 285, - "input_file": { - "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" - }, - "parent_location": [ - { - "end_col": 43, - "end_line": 343, - "input_file": { - "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" - }, - "start_col": 24, - "start_line": 343 - }, - "While trying to retrieve the implicit argument 'pedersen_ptr' in:" - ], - "start_col": 5, - "start_line": 285 - }, - "While expanding the reference 'pedersen_ptr' in:" - ], - "start_col": 5, - "start_line": 329 - } - }, - "3352": { - "accessible_scopes": [ - "sheet.library", - "sheet.library._render_cell_calldata" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 36, - "end_line": 325, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/math.cairo" - }, - "parent_location": [ - { - "end_col": 90, - "end_line": 341, - "input_file": { - "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" - }, - "parent_location": [ - { - "end_col": 20, - "end_line": 286, - "input_file": { - "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" - }, - "parent_location": [ - { - "end_col": 43, - "end_line": 343, - "input_file": { - "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" - }, - "start_col": 24, - "start_line": 343 - }, - "While trying to retrieve the implicit argument 'range_check_ptr' in:" - ], - "start_col": 5, - "start_line": 286 - }, - "While expanding the reference 'range_check_ptr' in:" - ], - "start_col": 38, - "start_line": 341 - }, - "While trying to update the implicit return value 'range_check_ptr' in:" - ], - "start_col": 21, - "start_line": 325 - } - }, - "3353": { - "accessible_scopes": [ - "sheet.library", - "sheet.library._render_cell_calldata" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 32, - "end_line": 333, - "input_file": { - "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" - }, - "parent_location": [ - { - "end_col": 32, - "end_line": 287, - "input_file": { - "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" - }, - "parent_location": [ - { - "end_col": 43, - "end_line": 343, - "input_file": { - "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" - }, - "start_col": 24, - "start_line": 343 - }, - "While trying to retrieve the implicit argument 'rendered_cells' in:" - ], - "start_col": 5, - "start_line": 287 - }, - "While expanding the reference 'rendered_cells' in:" - ], - "start_col": 5, - "start_line": 333 - } - }, - "3354": { - "accessible_scopes": [ - "sheet.library", - "sheet.library._render_cell_calldata" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 34, - "end_line": 341, - "input_file": { - "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" - }, - "parent_location": [ - { - "end_col": 28, - "end_line": 288, - "input_file": { - "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" - }, - "parent_location": [ - { - "end_col": 43, - "end_line": 343, - "input_file": { - "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" - }, - "start_col": 24, - "start_line": 343 - }, - "While trying to retrieve the implicit argument 'value_is_token_id' in:" - ], - "start_col": 5, - "start_line": 288 - }, - "While expanding the reference 'value_is_token_id' in:" - ], - "start_col": 17, - "start_line": 341 - } - }, - "3355": { - "accessible_scopes": [ - "sheet.library", - "sheet.library._render_cell_calldata" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 15, - "end_line": 341, - "input_file": { - "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" - }, - "parent_location": [ - { - "end_col": 42, - "end_line": 343, - "input_file": { - "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" - }, - "start_col": 37, - "start_line": 343 - }, - "While expanding the reference 'value' in:" - ], - "start_col": 10, - "start_line": 341 - } - }, - "3356": { - "accessible_scopes": [ - "sheet.library", - "sheet.library._render_cell_calldata" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 43, - "end_line": 343, - "input_file": { - "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" - }, - "start_col": 24, - "start_line": 343 - } - }, - "3358": { - "accessible_scopes": [ - "sheet.library", - "sheet.library._render_cell_calldata" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 36, - "end_line": 346, - "input_file": { - "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" - }, - "start_col": 12, - "start_line": 346 - } - }, - "3359": { - "accessible_scopes": [ - "sheet.library", - "sheet.library._render_cell_calldata" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 46, - "end_line": 346, - "input_file": { - "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" - }, - "start_col": 5, - "start_line": 346 - } - }, - "3360": { - "accessible_scopes": [ - "sheet.library", - "sheet.library._render_cell_calldata" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 23, - "end_line": 284, - "input_file": { - "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" - }, - "parent_location": [ - { - "end_col": 43, - "end_line": 343, - "input_file": { - "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" - }, - "parent_location": [ - { - "end_col": 23, - "end_line": 328, - "input_file": { - "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" - }, - "parent_location": [ - { - "end_col": 44, - "end_line": 347, - "input_file": { - "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" - }, - "start_col": 12, - "start_line": 347 - }, - "While trying to retrieve the implicit argument 'syscall_ptr' in:" - ], - "start_col": 5, - "start_line": 328 - }, - "While expanding the reference 'syscall_ptr' in:" - ], - "start_col": 24, - "start_line": 343 - }, - "While trying to update the implicit return value 'syscall_ptr' in:" - ], - "start_col": 5, - "start_line": 284 - } - }, - "3361": { - "accessible_scopes": [ - "sheet.library", - "sheet.library._render_cell_calldata" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 31, - "end_line": 285, - "input_file": { - "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" - }, - "parent_location": [ - { - "end_col": 43, - "end_line": 343, - "input_file": { - "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" - }, - "parent_location": [ - { - "end_col": 31, - "end_line": 329, - "input_file": { - "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" - }, - "parent_location": [ - { - "end_col": 44, - "end_line": 347, - "input_file": { - "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" - }, - "start_col": 12, - "start_line": 347 - }, - "While trying to retrieve the implicit argument 'pedersen_ptr' in:" - ], - "start_col": 5, - "start_line": 329 - }, - "While expanding the reference 'pedersen_ptr' in:" - ], - "start_col": 24, - "start_line": 343 - }, - "While trying to update the implicit return value 'pedersen_ptr' in:" - ], - "start_col": 5, - "start_line": 285 - } - }, - "3362": { - "accessible_scopes": [ - "sheet.library", - "sheet.library._render_cell_calldata" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 20, - "end_line": 286, - "input_file": { - "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" - }, - "parent_location": [ - { - "end_col": 43, - "end_line": 343, - "input_file": { - "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" - }, - "parent_location": [ - { - "end_col": 20, - "end_line": 330, - "input_file": { - "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" - }, - "parent_location": [ - { - "end_col": 44, - "end_line": 347, - "input_file": { - "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" - }, - "start_col": 12, - "start_line": 347 - }, - "While trying to retrieve the implicit argument 'range_check_ptr' in:" - ], - "start_col": 5, - "start_line": 330 - }, - "While expanding the reference 'range_check_ptr' in:" - ], - "start_col": 24, - "start_line": 343 - }, - "While trying to update the implicit return value 'range_check_ptr' in:" - ], - "start_col": 5, - "start_line": 286 - } - }, - "3363": { - "accessible_scopes": [ - "sheet.library", - "sheet.library._render_cell_calldata" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 24, - "end_line": 331, - "input_file": { - "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" - }, - "parent_location": [ - { - "end_col": 24, - "end_line": 331, - "input_file": { - "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" - }, - "parent_location": [ - { - "end_col": 44, - "end_line": 347, - "input_file": { - "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" - }, - "start_col": 12, - "start_line": 347 - }, - "While trying to retrieve the implicit argument 'calldata_ids' in:" - ], - "start_col": 5, - "start_line": 331 - }, - "While expanding the reference 'calldata_ids' in:" - ], - "start_col": 5, - "start_line": 331 - } - }, - "3364": { - "accessible_scopes": [ - "sheet.library", - "sheet.library._render_cell_calldata" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 29, - "end_line": 332, - "input_file": { - "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" - }, - "parent_location": [ - { - "end_col": 29, - "end_line": 332, - "input_file": { - "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" - }, - "parent_location": [ - { - "end_col": 44, - "end_line": 347, - "input_file": { - "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" - }, - "start_col": 12, - "start_line": 347 - }, - "While trying to retrieve the implicit argument 'calldata_rendered' in:" - ], - "start_col": 5, - "start_line": 332 - }, - "While expanding the reference 'calldata_rendered' in:" - ], - "start_col": 5, - "start_line": 332 - } - }, - "3365": { - "accessible_scopes": [ - "sheet.library", - "sheet.library._render_cell_calldata" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 32, - "end_line": 287, - "input_file": { - "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" - }, - "parent_location": [ - { - "end_col": 43, - "end_line": 343, - "input_file": { - "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" - }, - "parent_location": [ - { - "end_col": 32, - "end_line": 333, - "input_file": { - "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" - }, - "parent_location": [ - { - "end_col": 44, - "end_line": 347, - "input_file": { - "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" - }, - "start_col": 12, - "start_line": 347 - }, - "While trying to retrieve the implicit argument 'rendered_cells' in:" - ], - "start_col": 5, - "start_line": 333 - }, - "While expanding the reference 'rendered_cells' in:" - ], - "start_col": 24, - "start_line": 343 - }, - "While trying to update the implicit return value 'rendered_cells' in:" - ], - "start_col": 5, - "start_line": 287 - } - }, - "3366": { - "accessible_scopes": [ - "sheet.library", - "sheet.library._render_cell_calldata" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 15, - "end_line": 334, - "input_file": { - "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" - }, - "parent_location": [ - { - "end_col": 15, - "end_line": 334, - "input_file": { - "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" - }, - "parent_location": [ - { - "end_col": 44, - "end_line": 347, - "input_file": { - "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" - }, - "start_col": 12, - "start_line": 347 - }, - "While trying to retrieve the implicit argument 'stop' in:" - ], - "start_col": 5, - "start_line": 334 - }, - "While expanding the reference 'stop' in:" - ], - "start_col": 5, - "start_line": 334 - } - }, - "3367": { - "accessible_scopes": [ - "sheet.library", - "sheet.library._render_cell_calldata" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 43, - "end_line": 347, - "input_file": { - "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" - }, - "start_col": 34, - "start_line": 347 - } - }, - "3369": { - "accessible_scopes": [ - "sheet.library", - "sheet.library._render_cell_calldata" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 44, - "end_line": 347, - "input_file": { - "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" - }, - "start_col": 12, - "start_line": 347 - } - }, - "3371": { - "accessible_scopes": [ - "sheet.library", - "sheet.library._render_cell_calldata" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 45, - "end_line": 347, - "input_file": { - "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" - }, - "start_col": 5, - "start_line": 347 - } - }, - "3372": { - "accessible_scopes": [ - "sheet.library", - "sheet.library._assert_is_allowed" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 18, - "end_line": 378, - "input_file": { - "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" - }, - "start_col": 5, - "start_line": 378 - } - }, - "3374": { - "accessible_scopes": [ - "sheet.library", - "sheet.library._assert_is_allowed" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 51, - "end_line": 376, - "input_file": { - "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" - }, - "parent_location": [ - { - "end_col": 52, - "end_line": 379, - "input_file": { - "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" - }, - "start_col": 40, - "start_line": 379 - }, - "While expanding the reference 'pedersen_ptr' in:" - ], - "start_col": 25, - "start_line": 376 - } - }, - "3375": { - "accessible_scopes": [ - "sheet.library", - "sheet.library._assert_is_allowed" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 68, - "end_line": 376, - "input_file": { - "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" - }, - "parent_location": [ - { - "end_col": 58, - "end_line": 24, - "input_file": { - "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/utils/merkle_tree.cairo" - }, - "parent_location": [ - { - "end_col": 71, - "end_line": 379, - "input_file": { - "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" - }, - "start_col": 18, - "start_line": 379 - }, - "While trying to retrieve the implicit argument 'range_check_ptr' in:" - ], - "start_col": 43, - "start_line": 24 - }, - "While expanding the reference 'range_check_ptr' in:" - ], - "start_col": 53, - "start_line": 376 - } - }, - "3376": { - "accessible_scopes": [ - "sheet.library", - "sheet.library._assert_is_allowed" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 83, - "end_line": 376, - "input_file": { - "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" - }, - "parent_location": [ - { - "end_col": 61, - "end_line": 379, - "input_file": { - "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" - }, - "start_col": 54, - "start_line": 379 - }, - "While expanding the reference 'address' in:" - ], - "start_col": 70, - "start_line": 376 - } - }, - "3377": { - "accessible_scopes": [ - "sheet.library", - "sheet.library._assert_is_allowed" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 83, - "end_line": 376, - "input_file": { - "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" - }, - "parent_location": [ - { - "end_col": 70, - "end_line": 379, - "input_file": { - "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" - }, - "start_col": 63, - "start_line": 379 - }, - "While expanding the reference 'address' in:" - ], - "start_col": 70, - "start_line": 376 - } - }, - "3378": { - "accessible_scopes": [ - "sheet.library", - "sheet.library._assert_is_allowed" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 71, - "end_line": 379, - "input_file": { - "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" - }, - "start_col": 18, - "start_line": 379 - } - }, - "3380": { - "accessible_scopes": [ - "sheet.library", - "sheet.library._assert_is_allowed" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 23, - "end_line": 376, - "input_file": { - "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" - }, - "parent_location": [ - { - "end_col": 33, - "end_line": 13, - "input_file": { - "filename": "autogen/starknet/storage_var/Sheet_merkle_root/decl.cairo" - }, - "parent_location": [ - { - "end_col": 48, - "end_line": 380, - "input_file": { - "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" - }, - "start_col": 24, - "start_line": 380 - }, - "While trying to retrieve the implicit argument 'syscall_ptr' in:" - ], - "start_col": 15, - "start_line": 13 - }, - "While expanding the reference 'syscall_ptr' in:" - ], - "start_col": 5, - "start_line": 376 - } - }, - "3381": { - "accessible_scopes": [ - "sheet.library", - "sheet.library._assert_is_allowed" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 52, - "end_line": 379, - "input_file": { - "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" - }, - "parent_location": [ - { - "end_col": 61, - "end_line": 13, - "input_file": { - "filename": "autogen/starknet/storage_var/Sheet_merkle_root/decl.cairo" - }, - "parent_location": [ - { - "end_col": 48, - "end_line": 380, - "input_file": { - "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" - }, - "start_col": 24, - "start_line": 380 - }, - "While trying to retrieve the implicit argument 'pedersen_ptr' in:" - ], - "start_col": 35, - "start_line": 13 - }, - "While expanding the reference 'pedersen_ptr' in:" - ], - "start_col": 40, - "start_line": 379 - } - }, - "3382": { - "accessible_scopes": [ - "sheet.library", - "sheet.library._assert_is_allowed" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 58, - "end_line": 24, - "input_file": { - "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/utils/merkle_tree.cairo" - }, - "parent_location": [ - { - "end_col": 71, - "end_line": 379, - "input_file": { - "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" - }, - "parent_location": [ - { - "end_col": 78, - "end_line": 13, - "input_file": { - "filename": "autogen/starknet/storage_var/Sheet_merkle_root/decl.cairo" - }, - "parent_location": [ - { - "end_col": 48, - "end_line": 380, - "input_file": { - "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" - }, - "start_col": 24, - "start_line": 380 - }, - "While trying to retrieve the implicit argument 'range_check_ptr' in:" - ], - "start_col": 63, - "start_line": 13 - }, - "While expanding the reference 'range_check_ptr' in:" - ], - "start_col": 18, - "start_line": 379 - }, - "While trying to update the implicit return value 'range_check_ptr' in:" - ], - "start_col": 43, - "start_line": 24 - } - }, - "3383": { - "accessible_scopes": [ - "sheet.library", - "sheet.library._assert_is_allowed" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 48, - "end_line": 380, - "input_file": { - "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" - }, - "start_col": 24, - "start_line": 380 - } - }, - "3385": { - "accessible_scopes": [ - "sheet.library", - "sheet.library._assert_is_allowed" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 20, - "end_line": 380, - "input_file": { - "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" - }, - "start_col": 10, - "start_line": 380 - } - }, - "3386": { - "accessible_scopes": [ - "sheet.library", - "sheet.library._assert_is_allowed" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 20, - "end_line": 380, - "input_file": { - "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" - }, - "parent_location": [ - { - "end_col": 37, - "end_line": 381, - "input_file": { - "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" - }, - "start_col": 33, - "start_line": 381 - }, - "While expanding the reference 'root' in:" - ], - "start_col": 16, - "start_line": 380 - } - }, - "3387": { - "accessible_scopes": [ - "sheet.library", - "sheet.library._assert_is_allowed" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 38, - "end_line": 381, - "input_file": { - "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" - }, - "start_col": 21, - "start_line": 381 - } - }, - "3389": { - "accessible_scopes": [ - "sheet.library", - "sheet.library._assert_is_allowed" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 18, - "end_line": 381, - "input_file": { - "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" - }, - "parent_location": [ - { - "end_col": 18, - "end_line": 381, - "input_file": { - "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" - }, - "start_col": 9, - "start_line": 381 - }, - "While auto generating local variable for 'use_proof'." - ], - "start_col": 9, - "start_line": 381 - } - }, - "3390": { - "accessible_scopes": [ - "sheet.library", - "sheet.library._assert_is_allowed" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 33, - "end_line": 13, - "input_file": { - "filename": "autogen/starknet/storage_var/Sheet_merkle_root/decl.cairo" - }, - "parent_location": [ - { - "end_col": 48, - "end_line": 380, - "input_file": { - "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" - }, - "parent_location": [ - { - "end_col": 38, - "end_line": 12, - "input_file": { - "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/utils/merkle_tree.cairo" - }, - "parent_location": [ - { - "end_col": 70, - "end_line": 382, - "input_file": { - "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" - }, - "start_col": 27, - "start_line": 382 - }, - "While trying to retrieve the implicit argument 'syscall_ptr' in:" - ], - "start_col": 20, - "start_line": 12 - }, - "While expanding the reference 'syscall_ptr' in:" - ], - "start_col": 24, - "start_line": 380 - }, - "While trying to update the implicit return value 'syscall_ptr' in:" - ], - "start_col": 15, - "start_line": 13 - } - }, - "3391": { - "accessible_scopes": [ - "sheet.library", - "sheet.library._assert_is_allowed" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 61, - "end_line": 13, - "input_file": { - "filename": "autogen/starknet/storage_var/Sheet_merkle_root/decl.cairo" - }, - "parent_location": [ - { - "end_col": 48, - "end_line": 380, - "input_file": { - "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" - }, - "parent_location": [ - { - "end_col": 66, - "end_line": 12, - "input_file": { - "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/utils/merkle_tree.cairo" - }, - "parent_location": [ - { - "end_col": 70, - "end_line": 382, - "input_file": { - "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" - }, - "start_col": 27, - "start_line": 382 - }, - "While trying to retrieve the implicit argument 'pedersen_ptr' in:" - ], - "start_col": 40, - "start_line": 12 - }, - "While expanding the reference 'pedersen_ptr' in:" - ], - "start_col": 24, - "start_line": 380 - }, - "While trying to update the implicit return value 'pedersen_ptr' in:" - ], - "start_col": 35, - "start_line": 13 - } - }, - "3392": { - "accessible_scopes": [ - "sheet.library", - "sheet.library._assert_is_allowed" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 78, - "end_line": 13, - "input_file": { - "filename": "autogen/starknet/storage_var/Sheet_merkle_root/decl.cairo" - }, - "parent_location": [ - { - "end_col": 48, - "end_line": 380, - "input_file": { - "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" - }, - "parent_location": [ - { - "end_col": 83, - "end_line": 12, - "input_file": { - "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/utils/merkle_tree.cairo" - }, - "parent_location": [ - { - "end_col": 70, - "end_line": 382, - "input_file": { - "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" - }, - "start_col": 27, - "start_line": 382 - }, - "While trying to retrieve the implicit argument 'range_check_ptr' in:" - ], - "start_col": 68, - "start_line": 12 - }, - "While expanding the reference 'range_check_ptr' in:" - ], - "start_col": 24, - "start_line": 380 - }, - "While trying to update the implicit return value 'range_check_ptr' in:" - ], - "start_col": 63, - "start_line": 13 - } - }, - "3393": { - "accessible_scopes": [ - "sheet.library", - "sheet.library._assert_is_allowed" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 14, - "end_line": 379, - "input_file": { - "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" - }, - "parent_location": [ - { - "end_col": 45, - "end_line": 382, - "input_file": { - "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" - }, - "start_col": 41, - "start_line": 382 - }, - "While expanding the reference 'leaf' in:" - ], - "start_col": 10, - "start_line": 379 - } - }, - "3394": { - "accessible_scopes": [ - "sheet.library", - "sheet.library._assert_is_allowed" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 20, - "end_line": 380, - "input_file": { - "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" - }, - "parent_location": [ - { - "end_col": 51, - "end_line": 382, - "input_file": { - "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" - }, - "start_col": 47, - "start_line": 382 - }, - "While expanding the reference 'root' in:" - ], - "start_col": 16, - "start_line": 380 - } - }, - "3395": { - "accessible_scopes": [ - "sheet.library", - "sheet.library._assert_is_allowed" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 18, - "end_line": 377, - "input_file": { - "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" - }, - "parent_location": [ - { - "end_col": 62, - "end_line": 382, - "input_file": { - "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" - }, - "start_col": 53, - "start_line": 382 - }, - "While expanding the reference 'proof_len' in:" - ], - "start_col": 3, - "start_line": 377 - } - }, - "3396": { - "accessible_scopes": [ - "sheet.library", - "sheet.library._assert_is_allowed" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 32, - "end_line": 377, - "input_file": { - "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" - }, - "parent_location": [ - { - "end_col": 69, - "end_line": 382, - "input_file": { - "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" - }, - "start_col": 64, - "start_line": 382 - }, - "While expanding the reference 'proof' in:" - ], - "start_col": 20, - "start_line": 377 - } - }, - "3397": { - "accessible_scopes": [ - "sheet.library", - "sheet.library._assert_is_allowed" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 70, - "end_line": 382, - "input_file": { - "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" - }, - "start_col": 27, - "start_line": 382 - } - }, - "3399": { - "accessible_scopes": [ - "sheet.library", - "sheet.library._assert_is_allowed" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 41, - "end_line": 384, - "input_file": { - "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" - }, - "start_col": 16, - "start_line": 384 - } - }, - "3400": { - "accessible_scopes": [ - "sheet.library", - "sheet.library._assert_is_allowed" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 46, - "end_line": 384, - "input_file": { - "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" - }, - "start_col": 45, - "start_line": 384 - } - }, - "3402": { - "accessible_scopes": [ - "sheet.library", - "sheet.library._assert_is_allowed" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 58, - "end_line": 384, - "input_file": { - "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" - }, - "start_col": 45, - "start_line": 384 - } - }, - "3403": { - "accessible_scopes": [ - "sheet.library", - "sheet.library._assert_is_allowed" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 66, - "end_line": 384, - "input_file": { - "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" - }, - "start_col": 62, - "start_line": 384 - } - }, - "3405": { - "accessible_scopes": [ - "sheet.library", - "sheet.library._assert_is_allowed" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 67, - "end_line": 384, - "input_file": { - "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" - }, - "start_col": 9, - "start_line": 384 - } - }, - "3406": { - "accessible_scopes": [ - "sheet.library", - "sheet.library._assert_is_allowed" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 38, - "end_line": 12, - "input_file": { - "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/utils/merkle_tree.cairo" - }, - "parent_location": [ - { - "end_col": 70, - "end_line": 382, - "input_file": { - "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" - }, - "parent_location": [ - { - "end_col": 23, - "end_line": 376, - "input_file": { - "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" - }, - "parent_location": [ - { - "end_col": 15, - "end_line": 386, - "input_file": { - "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" - }, - "start_col": 5, - "start_line": 386 - }, - "While trying to retrieve the implicit argument 'syscall_ptr' in:" - ], - "start_col": 5, - "start_line": 376 - }, - "While expanding the reference 'syscall_ptr' in:" - ], - "start_col": 27, - "start_line": 382 - }, - "While trying to update the implicit return value 'syscall_ptr' in:" - ], - "start_col": 20, - "start_line": 12 - } - }, - "3407": { - "accessible_scopes": [ - "sheet.library", - "sheet.library._assert_is_allowed" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 66, - "end_line": 12, - "input_file": { - "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/utils/merkle_tree.cairo" - }, - "parent_location": [ - { - "end_col": 70, - "end_line": 382, - "input_file": { - "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" - }, - "parent_location": [ - { - "end_col": 51, - "end_line": 376, - "input_file": { - "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" - }, - "parent_location": [ - { - "end_col": 15, - "end_line": 386, - "input_file": { - "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" - }, - "start_col": 5, - "start_line": 386 - }, - "While trying to retrieve the implicit argument 'pedersen_ptr' in:" - ], - "start_col": 25, - "start_line": 376 - }, - "While expanding the reference 'pedersen_ptr' in:" - ], - "start_col": 27, - "start_line": 382 - }, - "While trying to update the implicit return value 'pedersen_ptr' in:" - ], - "start_col": 40, - "start_line": 12 - } - }, - "3408": { - "accessible_scopes": [ - "sheet.library", - "sheet.library._assert_is_allowed" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 83, - "end_line": 12, - "input_file": { - "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/utils/merkle_tree.cairo" - }, - "parent_location": [ - { - "end_col": 70, - "end_line": 382, - "input_file": { - "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" - }, - "parent_location": [ - { - "end_col": 68, - "end_line": 376, - "input_file": { - "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" - }, - "parent_location": [ - { - "end_col": 15, - "end_line": 386, - "input_file": { - "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" - }, - "start_col": 5, - "start_line": 386 - }, - "While trying to retrieve the implicit argument 'range_check_ptr' in:" - ], - "start_col": 53, - "start_line": 376 - }, - "While expanding the reference 'range_check_ptr' in:" - ], - "start_col": 27, - "start_line": 382 - }, - "While trying to update the implicit return value 'range_check_ptr' in:" - ], - "start_col": 68, - "start_line": 12 - } - }, - "3409": { - "accessible_scopes": [ - "sheet.library", - "sheet.library._assert_is_allowed" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 83, - "end_line": 376, - "input_file": { - "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" - }, - "parent_location": [ - { - "end_col": 83, - "end_line": 376, - "input_file": { - "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" - }, - "parent_location": [ - { - "end_col": 15, - "end_line": 386, - "input_file": { - "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" - }, - "start_col": 5, - "start_line": 386 - }, - "While trying to retrieve the implicit argument 'address' in:" - ], - "start_col": 70, - "start_line": 376 - }, - "While expanding the reference 'address' in:" - ], - "start_col": 70, - "start_line": 376 - } - }, - "3410": { - "accessible_scopes": [ - "sheet.library", - "sheet.library._assert_is_allowed" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 15, - "end_line": 386, - "input_file": { - "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" - }, - "start_col": 5, - "start_line": 386 - } - }, - "3411": { - "accessible_scopes": [ - "sheet.library", - "sheet.library._assert_does_not_exceed_allocation" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 18, - "end_line": 392, - "input_file": { - "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" - }, - "start_col": 5, - "start_line": 392 - } - }, - "3413": { - "accessible_scopes": [ - "sheet.library", - "sheet.library._assert_does_not_exceed_allocation" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 19, - "end_line": 391, - "input_file": { - "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" - }, - "parent_location": [ - { - "end_col": 50, - "end_line": 393, - "input_file": { - "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" - }, - "start_col": 40, - "start_line": 393 - }, - "While expanding the reference 'allocation' in:" - ], - "start_col": 3, - "start_line": 391 - } - }, - "3414": { - "accessible_scopes": [ - "sheet.library", - "sheet.library._assert_does_not_exceed_allocation" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 51, - "end_line": 393, - "input_file": { - "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" - }, - "start_col": 28, - "start_line": 393 - } - }, - "3416": { - "accessible_scopes": [ - "sheet.library", - "sheet.library._assert_does_not_exceed_allocation" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 52, - "end_line": 393, - "input_file": { - "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" - }, - "start_col": 5, - "start_line": 393 - } - }, - "3417": { - "accessible_scopes": [ - "sheet.library", - "sheet.library._assert_does_not_exceed_allocation" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 23, - "end_line": 390, - "input_file": { - "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" - }, - "parent_location": [ - { - "end_col": 39, - "end_line": 100, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" - }, - "parent_location": [ - { - "end_col": 52, - "end_line": 394, - "input_file": { - "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" - }, - "start_col": 26, - "start_line": 394 - }, - "While trying to retrieve the implicit argument 'syscall_ptr' in:" - ], - "start_col": 21, - "start_line": 100 - }, - "While expanding the reference 'syscall_ptr' in:" - ], - "start_col": 5, - "start_line": 390 - } - }, - "3418": { - "accessible_scopes": [ - "sheet.library", - "sheet.library._assert_does_not_exceed_allocation" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 51, - "end_line": 390, - "input_file": { - "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" - }, - "parent_location": [ - { - "end_col": 67, - "end_line": 100, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" - }, - "parent_location": [ - { - "end_col": 52, - "end_line": 394, - "input_file": { - "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" - }, - "start_col": 26, - "start_line": 394 - }, - "While trying to retrieve the implicit argument 'pedersen_ptr' in:" - ], - "start_col": 41, - "start_line": 100 - }, - "While expanding the reference 'pedersen_ptr' in:" - ], - "start_col": 25, - "start_line": 390 - } - }, - "3419": { - "accessible_scopes": [ - "sheet.library", - "sheet.library._assert_does_not_exceed_allocation" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 68, - "end_line": 390, - "input_file": { - "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" - }, - "parent_location": [ - { - "end_col": 84, - "end_line": 100, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" - }, - "parent_location": [ - { - "end_col": 52, - "end_line": 394, - "input_file": { - "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" - }, - "start_col": 26, - "start_line": 394 - }, - "While trying to retrieve the implicit argument 'range_check_ptr' in:" - ], - "start_col": 69, - "start_line": 100 - }, - "While expanding the reference 'range_check_ptr' in:" - ], - "start_col": 53, - "start_line": 390 - } - }, - "3420": { - "accessible_scopes": [ - "sheet.library", - "sheet.library._assert_does_not_exceed_allocation" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 83, - "end_line": 390, - "input_file": { - "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" - }, - "parent_location": [ - { - "end_col": 51, - "end_line": 394, - "input_file": { - "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" - }, - "start_col": 44, - "start_line": 394 - }, - "While expanding the reference 'address' in:" - ], - "start_col": 70, - "start_line": 390 - } - }, - "3421": { - "accessible_scopes": [ - "sheet.library", - "sheet.library._assert_does_not_exceed_allocation" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 52, - "end_line": 394, - "input_file": { - "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" - }, - "start_col": 26, - "start_line": 394 - } - }, - "3423": { - "accessible_scopes": [ - "sheet.library", - "sheet.library._assert_does_not_exceed_allocation" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 84, - "end_line": 100, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" - }, - "parent_location": [ - { - "end_col": 52, - "end_line": 394, - "input_file": { - "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" - }, - "parent_location": [ - { - "end_col": 27, - "end_line": 42, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/math_cmp.cairo" - }, - "parent_location": [ - { - "end_col": 71, - "end_line": 395, - "input_file": { - "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" - }, - "start_col": 32, - "start_line": 395 - }, - "While trying to retrieve the implicit argument 'range_check_ptr' in:" - ], - "start_col": 12, - "start_line": 42 - }, - "While expanding the reference 'range_check_ptr' in:" - ], - "start_col": 26, - "start_line": 394 - }, - "While trying to update the implicit return value 'range_check_ptr' in:" - ], - "start_col": 69, - "start_line": 100 - } - }, - "3424": { - "accessible_scopes": [ - "sheet.library", - "sheet.library._assert_does_not_exceed_allocation" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 54, - "end_line": 395, - "input_file": { - "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" - }, - "start_col": 38, - "start_line": 395 - } - }, - "3425": { - "accessible_scopes": [ - "sheet.library", - "sheet.library._assert_does_not_exceed_allocation" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 70, - "end_line": 395, - "input_file": { - "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" - }, - "start_col": 56, - "start_line": 395 - } - }, - "3427": { - "accessible_scopes": [ - "sheet.library", - "sheet.library._assert_does_not_exceed_allocation" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 71, - "end_line": 395, - "input_file": { - "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" - }, - "start_col": 32, - "start_line": 395 - } - }, - "3429": { - "accessible_scopes": [ - "sheet.library", - "sheet.library._assert_does_not_exceed_allocation" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 53, - "end_line": 397, - "input_file": { - "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" - }, - "start_col": 16, - "start_line": 397 - } - }, - "3430": { - "accessible_scopes": [ - "sheet.library", - "sheet.library._assert_does_not_exceed_allocation" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 58, - "end_line": 397, - "input_file": { - "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" - }, - "start_col": 57, - "start_line": 397 - } - }, - "3432": { - "accessible_scopes": [ - "sheet.library", - "sheet.library._assert_does_not_exceed_allocation" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 75, - "end_line": 397, - "input_file": { - "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" - }, - "start_col": 57, - "start_line": 397 - } - }, - "3433": { - "accessible_scopes": [ - "sheet.library", - "sheet.library._assert_does_not_exceed_allocation" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 83, - "end_line": 397, - "input_file": { - "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" - }, - "start_col": 79, - "start_line": 397 - } - }, - "3435": { - "accessible_scopes": [ - "sheet.library", - "sheet.library._assert_does_not_exceed_allocation" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 84, - "end_line": 397, - "input_file": { - "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" - }, - "start_col": 9, - "start_line": 397 - } - }, - "3436": { - "accessible_scopes": [ - "sheet.library", - "sheet.library._assert_does_not_exceed_allocation" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 39, - "end_line": 100, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" - }, - "parent_location": [ - { - "end_col": 52, - "end_line": 394, - "input_file": { - "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" - }, - "parent_location": [ - { - "end_col": 23, - "end_line": 390, - "input_file": { - "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" - }, - "parent_location": [ - { - "end_col": 15, - "end_line": 399, - "input_file": { - "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" - }, - "start_col": 5, - "start_line": 399 - }, - "While trying to retrieve the implicit argument 'syscall_ptr' in:" - ], - "start_col": 5, - "start_line": 390 - }, - "While expanding the reference 'syscall_ptr' in:" - ], - "start_col": 26, - "start_line": 394 - }, - "While trying to update the implicit return value 'syscall_ptr' in:" - ], - "start_col": 21, - "start_line": 100 - } - }, - "3437": { - "accessible_scopes": [ - "sheet.library", - "sheet.library._assert_does_not_exceed_allocation" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 67, - "end_line": 100, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" - }, - "parent_location": [ - { - "end_col": 52, - "end_line": 394, - "input_file": { - "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" - }, - "parent_location": [ - { - "end_col": 51, - "end_line": 390, - "input_file": { - "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" - }, - "parent_location": [ - { - "end_col": 15, - "end_line": 399, - "input_file": { - "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" - }, - "start_col": 5, - "start_line": 399 - }, - "While trying to retrieve the implicit argument 'pedersen_ptr' in:" - ], - "start_col": 25, - "start_line": 390 - }, - "While expanding the reference 'pedersen_ptr' in:" - ], - "start_col": 26, - "start_line": 394 - }, - "While trying to update the implicit return value 'pedersen_ptr' in:" - ], - "start_col": 41, - "start_line": 100 - } - }, - "3438": { - "accessible_scopes": [ - "sheet.library", - "sheet.library._assert_does_not_exceed_allocation" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 27, - "end_line": 42, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/math_cmp.cairo" - }, - "parent_location": [ - { - "end_col": 71, - "end_line": 395, - "input_file": { - "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" - }, - "parent_location": [ - { - "end_col": 68, - "end_line": 390, - "input_file": { - "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" - }, - "parent_location": [ - { - "end_col": 15, - "end_line": 399, - "input_file": { - "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" - }, - "start_col": 5, - "start_line": 399 - }, - "While trying to retrieve the implicit argument 'range_check_ptr' in:" - ], - "start_col": 53, - "start_line": 390 - }, - "While expanding the reference 'range_check_ptr' in:" - ], - "start_col": 32, - "start_line": 395 - }, - "While trying to update the implicit return value 'range_check_ptr' in:" - ], - "start_col": 12, - "start_line": 42 - } - }, - "3439": { - "accessible_scopes": [ - "sheet.library", - "sheet.library._assert_does_not_exceed_allocation" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 83, - "end_line": 390, - "input_file": { - "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" - }, - "parent_location": [ - { - "end_col": 83, - "end_line": 390, - "input_file": { - "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" - }, - "parent_location": [ - { - "end_col": 15, - "end_line": 399, - "input_file": { - "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" - }, - "start_col": 5, - "start_line": 399 - }, - "While trying to retrieve the implicit argument 'address' in:" - ], - "start_col": 70, - "start_line": 390 - }, - "While expanding the reference 'address' in:" - ], - "start_col": 70, - "start_line": 390 - } - }, - "3440": { - "accessible_scopes": [ - "sheet.library", - "sheet.library._assert_does_not_exceed_allocation" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 15, - "end_line": 399, - "input_file": { - "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" - }, - "start_col": 5, - "start_line": 399 - } - }, - "3441": { - "accessible_scopes": [ - "sheet.library", - "sheet.library._assert_is_open" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 40, - "end_line": 402, - "input_file": { - "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" - }, - "parent_location": [ - { - "end_col": 33, - "end_line": 13, - "input_file": { - "filename": "autogen/starknet/storage_var/Sheet_is_mint_open/decl.cairo" - }, - "parent_location": [ - { - "end_col": 50, - "end_line": 404, - "input_file": { - "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" - }, - "start_col": 25, - "start_line": 404 - }, - "While trying to retrieve the implicit argument 'syscall_ptr' in:" - ], - "start_col": 15, - "start_line": 13 - }, - "While expanding the reference 'syscall_ptr' in:" - ], - "start_col": 22, - "start_line": 402 - } - }, - "3442": { - "accessible_scopes": [ - "sheet.library", - "sheet.library._assert_is_open" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 68, - "end_line": 402, - "input_file": { - "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" - }, - "parent_location": [ - { - "end_col": 61, - "end_line": 13, - "input_file": { - "filename": "autogen/starknet/storage_var/Sheet_is_mint_open/decl.cairo" - }, - "parent_location": [ - { - "end_col": 50, - "end_line": 404, - "input_file": { - "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" - }, - "start_col": 25, - "start_line": 404 - }, - "While trying to retrieve the implicit argument 'pedersen_ptr' in:" - ], - "start_col": 35, - "start_line": 13 - }, - "While expanding the reference 'pedersen_ptr' in:" - ], - "start_col": 42, - "start_line": 402 - } - }, - "3443": { - "accessible_scopes": [ - "sheet.library", - "sheet.library._assert_is_open" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 85, - "end_line": 402, - "input_file": { - "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" - }, - "parent_location": [ - { - "end_col": 78, - "end_line": 13, - "input_file": { - "filename": "autogen/starknet/storage_var/Sheet_is_mint_open/decl.cairo" - }, - "parent_location": [ - { - "end_col": 50, - "end_line": 404, - "input_file": { - "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" - }, - "start_col": 25, - "start_line": 404 - }, - "While trying to retrieve the implicit argument 'range_check_ptr' in:" - ], - "start_col": 63, - "start_line": 13 - }, - "While expanding the reference 'range_check_ptr' in:" - ], - "start_col": 70, - "start_line": 402 - } - }, - "3444": { - "accessible_scopes": [ - "sheet.library", - "sheet.library._assert_is_open" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 50, - "end_line": 404, - "input_file": { - "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" - }, - "start_col": 25, - "start_line": 404 - } - }, - "3446": { - "accessible_scopes": [ - "sheet.library", - "sheet.library._assert_is_open" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 28, - "end_line": 405, - "input_file": { - "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" - }, - "start_col": 9, - "start_line": 405 - } - }, - "3448": { - "accessible_scopes": [ - "sheet.library", - "sheet.library._assert_is_open" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 33, - "end_line": 13, - "input_file": { - "filename": "autogen/starknet/storage_var/Sheet_is_mint_open/decl.cairo" - }, - "parent_location": [ - { - "end_col": 50, - "end_line": 404, - "input_file": { - "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" - }, - "parent_location": [ - { - "end_col": 40, - "end_line": 402, - "input_file": { - "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" - }, - "parent_location": [ - { - "end_col": 15, - "end_line": 407, - "input_file": { - "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" - }, - "start_col": 5, - "start_line": 407 - }, - "While trying to retrieve the implicit argument 'syscall_ptr' in:" - ], - "start_col": 22, - "start_line": 402 - }, - "While expanding the reference 'syscall_ptr' in:" - ], - "start_col": 25, - "start_line": 404 - }, - "While trying to update the implicit return value 'syscall_ptr' in:" - ], - "start_col": 15, - "start_line": 13 - } - }, - "3449": { - "accessible_scopes": [ - "sheet.library", - "sheet.library._assert_is_open" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 61, - "end_line": 13, - "input_file": { - "filename": "autogen/starknet/storage_var/Sheet_is_mint_open/decl.cairo" - }, - "parent_location": [ - { - "end_col": 50, - "end_line": 404, - "input_file": { - "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" - }, - "parent_location": [ - { - "end_col": 68, - "end_line": 402, - "input_file": { - "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" - }, - "parent_location": [ - { - "end_col": 15, - "end_line": 407, - "input_file": { - "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" - }, - "start_col": 5, - "start_line": 407 - }, - "While trying to retrieve the implicit argument 'pedersen_ptr' in:" - ], - "start_col": 42, - "start_line": 402 - }, - "While expanding the reference 'pedersen_ptr' in:" - ], - "start_col": 25, - "start_line": 404 - }, - "While trying to update the implicit return value 'pedersen_ptr' in:" - ], - "start_col": 35, - "start_line": 13 - } - }, - "3450": { - "accessible_scopes": [ - "sheet.library", - "sheet.library._assert_is_open" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 78, - "end_line": 13, - "input_file": { - "filename": "autogen/starknet/storage_var/Sheet_is_mint_open/decl.cairo" - }, - "parent_location": [ - { - "end_col": 50, - "end_line": 404, - "input_file": { - "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" - }, - "parent_location": [ - { - "end_col": 85, - "end_line": 402, - "input_file": { - "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" - }, - "parent_location": [ - { - "end_col": 15, - "end_line": 407, - "input_file": { - "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" - }, - "start_col": 5, - "start_line": 407 - }, - "While trying to retrieve the implicit argument 'range_check_ptr' in:" - ], - "start_col": 70, - "start_line": 402 - }, - "While expanding the reference 'range_check_ptr' in:" - ], - "start_col": 25, - "start_line": 404 - }, - "While trying to update the implicit return value 'range_check_ptr' in:" - ], - "start_col": 63, - "start_line": 13 - } - }, - "3451": { - "accessible_scopes": [ - "sheet.library", - "sheet.library._assert_is_open" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 15, - "end_line": 407, - "input_file": { - "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" - }, - "start_col": 5, - "start_line": 407 - } - }, - "3452": { - "accessible_scopes": [ - "__main__", - "__main__.initialized", - "__main__.initialized.addr" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 41, - "end_line": 7, - "input_file": { - "filename": "autogen/starknet/storage_var/initialized/impl.cairo" - }, - "parent_location": [ - { - "end_col": 41, - "end_line": 7, - "input_file": { - "filename": "autogen/starknet/storage_var/initialized/decl.cairo" - }, - "parent_location": [ - { - "end_col": 26, - "end_line": 9, - "input_file": { - "filename": "autogen/starknet/storage_var/initialized/impl.cairo" - }, - "start_col": 9, - "start_line": 9 - }, - "While trying to retrieve the implicit argument 'pedersen_ptr' in:" - ], - "start_col": 15, - "start_line": 7 - }, - "While expanding the reference 'pedersen_ptr' in:" - ], - "start_col": 15, - "start_line": 7 - } - }, - "3453": { - "accessible_scopes": [ - "__main__", - "__main__.initialized", - "__main__.initialized.addr" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 58, - "end_line": 7, - "input_file": { - "filename": "autogen/starknet/storage_var/initialized/impl.cairo" - }, - "parent_location": [ - { - "end_col": 58, - "end_line": 7, - "input_file": { - "filename": "autogen/starknet/storage_var/initialized/decl.cairo" - }, - "parent_location": [ - { - "end_col": 26, - "end_line": 9, - "input_file": { - "filename": "autogen/starknet/storage_var/initialized/impl.cairo" - }, - "start_col": 9, - "start_line": 9 - }, - "While trying to retrieve the implicit argument 'range_check_ptr' in:" - ], - "start_col": 43, - "start_line": 7 - }, - "While expanding the reference 'range_check_ptr' in:" - ], - "start_col": 43, - "start_line": 7 - } - }, - "3454": { - "accessible_scopes": [ - "__main__", - "__main__.initialized", - "__main__.initialized.addr" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 95, - "end_line": 8, - "input_file": { - "filename": "autogen/starknet/storage_var/initialized/impl.cairo" - }, - "parent_location": [ - { - "end_col": 24, - "end_line": 9, - "input_file": { - "filename": "autogen/starknet/storage_var/initialized/impl.cairo" - }, - "start_col": 21, - "start_line": 9 - }, - "While expanding the reference 'res' in:" - ], - "start_col": 19, - "start_line": 8 - } - }, - "3456": { - "accessible_scopes": [ - "__main__", - "__main__.initialized", - "__main__.initialized.addr" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 26, - "end_line": 9, - "input_file": { - "filename": "autogen/starknet/storage_var/initialized/impl.cairo" - }, - "start_col": 9, - "start_line": 9 - } - }, - "3457": { - "accessible_scopes": [ - "__main__", - "__main__.initialized", - "__main__.initialized.read" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 61, - "end_line": 12, - "input_file": { - "filename": "autogen/starknet/storage_var/initialized/impl.cairo" - }, - "parent_location": [ - { - "end_col": 41, - "end_line": 7, - "input_file": { - "filename": "autogen/starknet/storage_var/initialized/decl.cairo" - }, - "parent_location": [ - { - "end_col": 36, - "end_line": 13, - "input_file": { - "filename": "autogen/starknet/storage_var/initialized/impl.cairo" - }, - "start_col": 30, - "start_line": 13 - }, - "While trying to retrieve the implicit argument 'pedersen_ptr' in:" - ], - "start_col": 15, - "start_line": 7 - }, - "While expanding the reference 'pedersen_ptr' in:" - ], - "start_col": 35, - "start_line": 12 - } - }, - "3458": { - "accessible_scopes": [ - "__main__", - "__main__.initialized", - "__main__.initialized.read" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 78, - "end_line": 12, - "input_file": { - "filename": "autogen/starknet/storage_var/initialized/impl.cairo" - }, - "parent_location": [ - { - "end_col": 58, - "end_line": 7, - "input_file": { - "filename": "autogen/starknet/storage_var/initialized/decl.cairo" - }, - "parent_location": [ - { - "end_col": 36, - "end_line": 13, - "input_file": { - "filename": "autogen/starknet/storage_var/initialized/impl.cairo" - }, - "start_col": 30, - "start_line": 13 - }, - "While trying to retrieve the implicit argument 'range_check_ptr' in:" - ], - "start_col": 43, - "start_line": 7 - }, - "While expanding the reference 'range_check_ptr' in:" - ], - "start_col": 63, - "start_line": 12 - } - }, - "3459": { - "accessible_scopes": [ - "__main__", - "__main__.initialized", - "__main__.initialized.read" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 36, - "end_line": 13, - "input_file": { - "filename": "autogen/starknet/storage_var/initialized/impl.cairo" - }, - "start_col": 30, - "start_line": 13 - } - }, - "3461": { - "accessible_scopes": [ - "__main__", - "__main__.initialized", - "__main__.initialized.read" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 33, - "end_line": 12, - "input_file": { - "filename": "autogen/starknet/storage_var/initialized/impl.cairo" - }, - "parent_location": [ - { - "end_col": 37, - "end_line": 352, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/starknet/common/syscalls.cairo" - }, - "parent_location": [ - { - "end_col": 75, - "end_line": 14, - "input_file": { - "filename": "autogen/starknet/storage_var/initialized/impl.cairo" - }, - "start_col": 37, - "start_line": 14 - }, - "While trying to retrieve the implicit argument 'syscall_ptr' in:" - ], - "start_col": 19, - "start_line": 352 - }, - "While expanding the reference 'syscall_ptr' in:" - ], - "start_col": 15, - "start_line": 12 - } - }, - "3462": { - "accessible_scopes": [ - "__main__", - "__main__.initialized", - "__main__.initialized.read" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 26, - "end_line": 13, - "input_file": { - "filename": "autogen/starknet/storage_var/initialized/impl.cairo" - }, - "parent_location": [ - { - "end_col": 70, - "end_line": 14, - "input_file": { - "filename": "autogen/starknet/storage_var/initialized/impl.cairo" - }, - "start_col": 58, - "start_line": 14 - }, - "While expanding the reference 'storage_addr' in:" - ], - "start_col": 14, - "start_line": 13 - } - }, - "3463": { - "accessible_scopes": [ - "__main__", - "__main__.initialized", - "__main__.initialized.read" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 75, - "end_line": 14, - "input_file": { - "filename": "autogen/starknet/storage_var/initialized/impl.cairo" - }, - "start_col": 37, - "start_line": 14 - } - }, - "3465": { - "accessible_scopes": [ - "__main__", - "__main__.initialized", - "__main__.initialized.read" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 37, - "end_line": 352, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/starknet/common/syscalls.cairo" - }, - "parent_location": [ - { - "end_col": 75, - "end_line": 14, - "input_file": { - "filename": "autogen/starknet/storage_var/initialized/impl.cairo" - }, - "parent_location": [ - { - "end_col": 42, - "end_line": 16, - "input_file": { - "filename": "autogen/starknet/storage_var/initialized/impl.cairo" - }, - "start_col": 31, - "start_line": 16 - }, - "While expanding the reference 'syscall_ptr' in:" - ], - "start_col": 37, - "start_line": 14 - }, - "While trying to update the implicit return value 'syscall_ptr' in:" - ], - "start_col": 19, - "start_line": 352 - } - }, - "3466": { - "accessible_scopes": [ - "__main__", - "__main__.initialized", - "__main__.initialized.read" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 41, - "end_line": 7, - "input_file": { - "filename": "autogen/starknet/storage_var/initialized/decl.cairo" - }, - "parent_location": [ - { - "end_col": 36, - "end_line": 13, - "input_file": { - "filename": "autogen/starknet/storage_var/initialized/impl.cairo" - }, - "parent_location": [ - { - "end_col": 44, - "end_line": 17, - "input_file": { - "filename": "autogen/starknet/storage_var/initialized/impl.cairo" - }, - "start_col": 32, - "start_line": 17 - }, - "While expanding the reference 'pedersen_ptr' in:" - ], - "start_col": 30, - "start_line": 13 - }, - "While trying to update the implicit return value 'pedersen_ptr' in:" - ], - "start_col": 15, - "start_line": 7 - } - }, - "3467": { - "accessible_scopes": [ - "__main__", - "__main__.initialized", - "__main__.initialized.read" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 58, - "end_line": 7, - "input_file": { - "filename": "autogen/starknet/storage_var/initialized/decl.cairo" - }, - "parent_location": [ - { - "end_col": 36, - "end_line": 13, - "input_file": { - "filename": "autogen/starknet/storage_var/initialized/impl.cairo" - }, - "parent_location": [ - { - "end_col": 50, - "end_line": 18, - "input_file": { - "filename": "autogen/starknet/storage_var/initialized/impl.cairo" - }, - "start_col": 35, - "start_line": 18 - }, - "While expanding the reference 'range_check_ptr' in:" - ], - "start_col": 30, - "start_line": 13 - }, - "While trying to update the implicit return value 'range_check_ptr' in:" - ], - "start_col": 43, - "start_line": 7 - } - }, - "3468": { - "accessible_scopes": [ - "__main__", - "__main__.initialized", - "__main__.initialized.read" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 33, - "end_line": 14, - "input_file": { - "filename": "autogen/starknet/storage_var/initialized/impl.cairo" - }, - "parent_location": [ - { - "end_col": 64, - "end_line": 19, - "input_file": { - "filename": "autogen/starknet/storage_var/initialized/impl.cairo" - }, - "start_col": 45, - "start_line": 19 - }, - "While expanding the reference '__storage_var_temp0' in:" - ], - "start_col": 14, - "start_line": 14 - } - }, - "3469": { - "accessible_scopes": [ - "__main__", - "__main__.initialized", - "__main__.initialized.read" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 55, - "end_line": 20, - "input_file": { - "filename": "autogen/starknet/storage_var/initialized/impl.cairo" - }, - "start_col": 9, - "start_line": 20 - } - }, - "3470": { - "accessible_scopes": [ - "__main__", - "__main__.initialized", - "__main__.initialized.write" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 62, - "end_line": 23, - "input_file": { - "filename": "autogen/starknet/storage_var/initialized/impl.cairo" - }, - "parent_location": [ - { - "end_col": 41, - "end_line": 7, - "input_file": { - "filename": "autogen/starknet/storage_var/initialized/decl.cairo" - }, - "parent_location": [ - { - "end_col": 36, - "end_line": 24, - "input_file": { - "filename": "autogen/starknet/storage_var/initialized/impl.cairo" - }, - "start_col": 30, - "start_line": 24 - }, - "While trying to retrieve the implicit argument 'pedersen_ptr' in:" - ], - "start_col": 15, - "start_line": 7 - }, - "While expanding the reference 'pedersen_ptr' in:" - ], - "start_col": 36, - "start_line": 23 - } - }, - "3471": { - "accessible_scopes": [ - "__main__", - "__main__.initialized", - "__main__.initialized.write" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 79, - "end_line": 23, - "input_file": { - "filename": "autogen/starknet/storage_var/initialized/impl.cairo" - }, - "parent_location": [ - { - "end_col": 58, - "end_line": 7, - "input_file": { - "filename": "autogen/starknet/storage_var/initialized/decl.cairo" - }, - "parent_location": [ - { - "end_col": 36, - "end_line": 24, - "input_file": { - "filename": "autogen/starknet/storage_var/initialized/impl.cairo" - }, - "start_col": 30, - "start_line": 24 - }, - "While trying to retrieve the implicit argument 'range_check_ptr' in:" - ], - "start_col": 43, - "start_line": 7 - }, - "While expanding the reference 'range_check_ptr' in:" - ], - "start_col": 64, - "start_line": 23 - } - }, - "3472": { - "accessible_scopes": [ - "__main__", - "__main__.initialized", - "__main__.initialized.write" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 36, - "end_line": 24, - "input_file": { - "filename": "autogen/starknet/storage_var/initialized/impl.cairo" - }, - "start_col": 30, - "start_line": 24 - } - }, - "3474": { - "accessible_scopes": [ - "__main__", - "__main__.initialized", - "__main__.initialized.write" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 34, - "end_line": 23, - "input_file": { - "filename": "autogen/starknet/storage_var/initialized/impl.cairo" - }, - "parent_location": [ - { - "end_col": 38, - "end_line": 370, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/starknet/common/syscalls.cairo" - }, - "parent_location": [ - { - "end_col": 80, - "end_line": 25, - "input_file": { - "filename": "autogen/starknet/storage_var/initialized/impl.cairo" - }, - "start_col": 9, - "start_line": 25 - }, - "While trying to retrieve the implicit argument 'syscall_ptr' in:" - ], - "start_col": 20, - "start_line": 370 - }, - "While expanding the reference 'syscall_ptr' in:" - ], - "start_col": 16, - "start_line": 23 - } - }, - "3475": { - "accessible_scopes": [ - "__main__", - "__main__.initialized", - "__main__.initialized.write" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 26, - "end_line": 24, - "input_file": { - "filename": "autogen/starknet/storage_var/initialized/impl.cairo" - }, - "parent_location": [ - { - "end_col": 43, - "end_line": 25, - "input_file": { - "filename": "autogen/starknet/storage_var/initialized/impl.cairo" - }, - "start_col": 31, - "start_line": 25 - }, - "While expanding the reference 'storage_addr' in:" - ], - "start_col": 14, - "start_line": 24 - } - }, - "3476": { - "accessible_scopes": [ - "__main__", - "__main__.initialized", - "__main__.initialized.write" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 79, - "end_line": 25, - "input_file": { - "filename": "autogen/starknet/storage_var/initialized/impl.cairo" - }, - "start_col": 55, - "start_line": 25 - } - }, - "3477": { - "accessible_scopes": [ - "__main__", - "__main__.initialized", - "__main__.initialized.write" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 80, - "end_line": 25, - "input_file": { - "filename": "autogen/starknet/storage_var/initialized/impl.cairo" - }, - "start_col": 9, - "start_line": 25 - } - }, - "3479": { - "accessible_scopes": [ - "__main__", - "__main__.initialized", - "__main__.initialized.write" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 41, - "end_line": 7, - "input_file": { - "filename": "autogen/starknet/storage_var/initialized/decl.cairo" - }, - "parent_location": [ - { - "end_col": 36, - "end_line": 24, - "input_file": { - "filename": "autogen/starknet/storage_var/initialized/impl.cairo" - }, - "parent_location": [ - { - "end_col": 62, - "end_line": 19, - "input_file": { - "filename": "autogen/starknet/storage_var/initialized/decl.cairo" - }, - "parent_location": [ - { - "end_col": 19, - "end_line": 26, - "input_file": { - "filename": "autogen/starknet/storage_var/initialized/impl.cairo" - }, - "start_col": 9, - "start_line": 26 - }, - "While trying to retrieve the implicit argument 'pedersen_ptr' in:" - ], - "start_col": 36, - "start_line": 19 - }, - "While expanding the reference 'pedersen_ptr' in:" - ], - "start_col": 30, - "start_line": 24 - }, - "While trying to update the implicit return value 'pedersen_ptr' in:" - ], - "start_col": 15, - "start_line": 7 - } - }, - "3480": { - "accessible_scopes": [ - "__main__", - "__main__.initialized", - "__main__.initialized.write" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 58, - "end_line": 7, - "input_file": { - "filename": "autogen/starknet/storage_var/initialized/decl.cairo" - }, - "parent_location": [ - { - "end_col": 36, - "end_line": 24, - "input_file": { - "filename": "autogen/starknet/storage_var/initialized/impl.cairo" - }, - "parent_location": [ - { - "end_col": 79, - "end_line": 19, - "input_file": { - "filename": "autogen/starknet/storage_var/initialized/decl.cairo" - }, - "parent_location": [ - { - "end_col": 19, - "end_line": 26, - "input_file": { - "filename": "autogen/starknet/storage_var/initialized/impl.cairo" - }, - "start_col": 9, - "start_line": 26 - }, - "While trying to retrieve the implicit argument 'range_check_ptr' in:" - ], - "start_col": 64, - "start_line": 19 - }, - "While expanding the reference 'range_check_ptr' in:" - ], - "start_col": 30, - "start_line": 24 - }, - "While trying to update the implicit return value 'range_check_ptr' in:" - ], - "start_col": 43, - "start_line": 7 - } - }, - "3481": { - "accessible_scopes": [ - "__main__", - "__main__.initialized", - "__main__.initialized.write" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 19, - "end_line": 26, - "input_file": { - "filename": "autogen/starknet/storage_var/initialized/impl.cairo" - }, - "start_col": 9, - "start_line": 26 - } - }, - "3482": { - "accessible_scopes": [ - "__main__", - "__main__._n_row", - "__main__._n_row.addr" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 41, - "end_line": 7, - "input_file": { - "filename": "autogen/starknet/storage_var/_n_row/impl.cairo" - }, - "parent_location": [ - { - "end_col": 41, - "end_line": 7, - "input_file": { - "filename": "autogen/starknet/storage_var/_n_row/decl.cairo" - }, - "parent_location": [ - { - "end_col": 26, - "end_line": 9, - "input_file": { - "filename": "autogen/starknet/storage_var/_n_row/impl.cairo" - }, - "start_col": 9, - "start_line": 9 - }, - "While trying to retrieve the implicit argument 'pedersen_ptr' in:" - ], - "start_col": 15, - "start_line": 7 - }, - "While expanding the reference 'pedersen_ptr' in:" - ], - "start_col": 15, - "start_line": 7 - } - }, - "3483": { - "accessible_scopes": [ - "__main__", - "__main__._n_row", - "__main__._n_row.addr" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 58, - "end_line": 7, - "input_file": { - "filename": "autogen/starknet/storage_var/_n_row/impl.cairo" - }, - "parent_location": [ - { - "end_col": 58, - "end_line": 7, - "input_file": { - "filename": "autogen/starknet/storage_var/_n_row/decl.cairo" - }, - "parent_location": [ - { - "end_col": 26, - "end_line": 9, - "input_file": { - "filename": "autogen/starknet/storage_var/_n_row/impl.cairo" - }, - "start_col": 9, - "start_line": 9 - }, - "While trying to retrieve the implicit argument 'range_check_ptr' in:" - ], - "start_col": 43, - "start_line": 7 - }, - "While expanding the reference 'range_check_ptr' in:" - ], - "start_col": 43, - "start_line": 7 - } - }, - "3484": { - "accessible_scopes": [ - "__main__", - "__main__._n_row", - "__main__._n_row.addr" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 95, - "end_line": 8, - "input_file": { - "filename": "autogen/starknet/storage_var/_n_row/impl.cairo" - }, - "parent_location": [ - { - "end_col": 24, - "end_line": 9, - "input_file": { - "filename": "autogen/starknet/storage_var/_n_row/impl.cairo" - }, - "start_col": 21, - "start_line": 9 - }, - "While expanding the reference 'res' in:" - ], - "start_col": 19, - "start_line": 8 - } - }, - "3486": { - "accessible_scopes": [ - "__main__", - "__main__._n_row", - "__main__._n_row.addr" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 26, - "end_line": 9, - "input_file": { - "filename": "autogen/starknet/storage_var/_n_row/impl.cairo" - }, - "start_col": 9, - "start_line": 9 - } - }, - "3487": { - "accessible_scopes": [ - "__main__", - "__main__._n_row", - "__main__._n_row.read" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 61, - "end_line": 12, - "input_file": { - "filename": "autogen/starknet/storage_var/_n_row/impl.cairo" - }, - "parent_location": [ - { - "end_col": 41, - "end_line": 7, - "input_file": { - "filename": "autogen/starknet/storage_var/_n_row/decl.cairo" - }, - "parent_location": [ - { - "end_col": 36, - "end_line": 13, - "input_file": { - "filename": "autogen/starknet/storage_var/_n_row/impl.cairo" - }, - "start_col": 30, - "start_line": 13 - }, - "While trying to retrieve the implicit argument 'pedersen_ptr' in:" - ], - "start_col": 15, - "start_line": 7 - }, - "While expanding the reference 'pedersen_ptr' in:" - ], - "start_col": 35, - "start_line": 12 - } - }, - "3488": { - "accessible_scopes": [ - "__main__", - "__main__._n_row", - "__main__._n_row.read" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 78, - "end_line": 12, - "input_file": { - "filename": "autogen/starknet/storage_var/_n_row/impl.cairo" - }, - "parent_location": [ - { - "end_col": 58, - "end_line": 7, - "input_file": { - "filename": "autogen/starknet/storage_var/_n_row/decl.cairo" - }, - "parent_location": [ - { - "end_col": 36, - "end_line": 13, - "input_file": { - "filename": "autogen/starknet/storage_var/_n_row/impl.cairo" - }, - "start_col": 30, - "start_line": 13 - }, - "While trying to retrieve the implicit argument 'range_check_ptr' in:" - ], - "start_col": 43, - "start_line": 7 - }, - "While expanding the reference 'range_check_ptr' in:" - ], - "start_col": 63, - "start_line": 12 - } - }, - "3489": { - "accessible_scopes": [ - "__main__", - "__main__._n_row", - "__main__._n_row.read" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 36, - "end_line": 13, - "input_file": { - "filename": "autogen/starknet/storage_var/_n_row/impl.cairo" - }, - "start_col": 30, - "start_line": 13 - } - }, - "3491": { - "accessible_scopes": [ - "__main__", - "__main__._n_row", - "__main__._n_row.read" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 33, - "end_line": 12, - "input_file": { - "filename": "autogen/starknet/storage_var/_n_row/impl.cairo" - }, - "parent_location": [ - { - "end_col": 37, - "end_line": 352, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/starknet/common/syscalls.cairo" - }, - "parent_location": [ - { - "end_col": 75, - "end_line": 14, - "input_file": { - "filename": "autogen/starknet/storage_var/_n_row/impl.cairo" - }, - "start_col": 37, - "start_line": 14 - }, - "While trying to retrieve the implicit argument 'syscall_ptr' in:" - ], - "start_col": 19, - "start_line": 352 - }, - "While expanding the reference 'syscall_ptr' in:" - ], - "start_col": 15, - "start_line": 12 - } - }, - "3492": { - "accessible_scopes": [ - "__main__", - "__main__._n_row", - "__main__._n_row.read" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 26, - "end_line": 13, - "input_file": { - "filename": "autogen/starknet/storage_var/_n_row/impl.cairo" - }, - "parent_location": [ - { - "end_col": 70, - "end_line": 14, - "input_file": { - "filename": "autogen/starknet/storage_var/_n_row/impl.cairo" - }, - "start_col": 58, - "start_line": 14 - }, - "While expanding the reference 'storage_addr' in:" - ], - "start_col": 14, - "start_line": 13 - } - }, - "3493": { - "accessible_scopes": [ - "__main__", - "__main__._n_row", - "__main__._n_row.read" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 75, - "end_line": 14, - "input_file": { - "filename": "autogen/starknet/storage_var/_n_row/impl.cairo" - }, - "start_col": 37, - "start_line": 14 - } - }, - "3495": { - "accessible_scopes": [ - "__main__", - "__main__._n_row", - "__main__._n_row.read" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 37, - "end_line": 352, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/starknet/common/syscalls.cairo" - }, - "parent_location": [ - { - "end_col": 75, - "end_line": 14, - "input_file": { - "filename": "autogen/starknet/storage_var/_n_row/impl.cairo" - }, - "parent_location": [ - { - "end_col": 42, - "end_line": 16, - "input_file": { - "filename": "autogen/starknet/storage_var/_n_row/impl.cairo" - }, - "start_col": 31, - "start_line": 16 - }, - "While expanding the reference 'syscall_ptr' in:" - ], - "start_col": 37, - "start_line": 14 - }, - "While trying to update the implicit return value 'syscall_ptr' in:" - ], - "start_col": 19, - "start_line": 352 - } - }, - "3496": { - "accessible_scopes": [ - "__main__", - "__main__._n_row", - "__main__._n_row.read" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 41, - "end_line": 7, - "input_file": { - "filename": "autogen/starknet/storage_var/_n_row/decl.cairo" - }, - "parent_location": [ - { - "end_col": 36, - "end_line": 13, - "input_file": { - "filename": "autogen/starknet/storage_var/_n_row/impl.cairo" - }, - "parent_location": [ - { - "end_col": 44, - "end_line": 17, - "input_file": { - "filename": "autogen/starknet/storage_var/_n_row/impl.cairo" - }, - "start_col": 32, - "start_line": 17 - }, - "While expanding the reference 'pedersen_ptr' in:" - ], - "start_col": 30, - "start_line": 13 - }, - "While trying to update the implicit return value 'pedersen_ptr' in:" - ], - "start_col": 15, - "start_line": 7 - } - }, - "3497": { - "accessible_scopes": [ - "__main__", - "__main__._n_row", - "__main__._n_row.read" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 58, - "end_line": 7, - "input_file": { - "filename": "autogen/starknet/storage_var/_n_row/decl.cairo" - }, - "parent_location": [ - { - "end_col": 36, - "end_line": 13, - "input_file": { - "filename": "autogen/starknet/storage_var/_n_row/impl.cairo" - }, - "parent_location": [ - { - "end_col": 50, - "end_line": 18, - "input_file": { - "filename": "autogen/starknet/storage_var/_n_row/impl.cairo" - }, - "start_col": 35, - "start_line": 18 - }, - "While expanding the reference 'range_check_ptr' in:" - ], - "start_col": 30, - "start_line": 13 - }, - "While trying to update the implicit return value 'range_check_ptr' in:" - ], - "start_col": 43, - "start_line": 7 - } - }, - "3498": { - "accessible_scopes": [ - "__main__", - "__main__._n_row", - "__main__._n_row.read" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 33, - "end_line": 14, - "input_file": { - "filename": "autogen/starknet/storage_var/_n_row/impl.cairo" - }, - "parent_location": [ - { - "end_col": 64, - "end_line": 19, - "input_file": { - "filename": "autogen/starknet/storage_var/_n_row/impl.cairo" - }, - "start_col": 45, - "start_line": 19 - }, - "While expanding the reference '__storage_var_temp0' in:" - ], - "start_col": 14, - "start_line": 14 - } - }, - "3499": { - "accessible_scopes": [ - "__main__", - "__main__._n_row", - "__main__._n_row.read" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 55, - "end_line": 20, - "input_file": { - "filename": "autogen/starknet/storage_var/_n_row/impl.cairo" - }, - "start_col": 9, - "start_line": 20 - } - }, - "3500": { - "accessible_scopes": [ - "__main__", - "__main__._n_row", - "__main__._n_row.write" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 62, - "end_line": 23, - "input_file": { - "filename": "autogen/starknet/storage_var/_n_row/impl.cairo" - }, - "parent_location": [ - { - "end_col": 41, - "end_line": 7, - "input_file": { - "filename": "autogen/starknet/storage_var/_n_row/decl.cairo" - }, - "parent_location": [ - { - "end_col": 36, - "end_line": 24, - "input_file": { - "filename": "autogen/starknet/storage_var/_n_row/impl.cairo" - }, - "start_col": 30, - "start_line": 24 - }, - "While trying to retrieve the implicit argument 'pedersen_ptr' in:" - ], - "start_col": 15, - "start_line": 7 - }, - "While expanding the reference 'pedersen_ptr' in:" - ], - "start_col": 36, - "start_line": 23 - } - }, - "3501": { - "accessible_scopes": [ - "__main__", - "__main__._n_row", - "__main__._n_row.write" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 79, - "end_line": 23, - "input_file": { - "filename": "autogen/starknet/storage_var/_n_row/impl.cairo" - }, - "parent_location": [ - { - "end_col": 58, - "end_line": 7, - "input_file": { - "filename": "autogen/starknet/storage_var/_n_row/decl.cairo" - }, - "parent_location": [ - { - "end_col": 36, - "end_line": 24, - "input_file": { - "filename": "autogen/starknet/storage_var/_n_row/impl.cairo" - }, - "start_col": 30, - "start_line": 24 - }, - "While trying to retrieve the implicit argument 'range_check_ptr' in:" - ], - "start_col": 43, - "start_line": 7 - }, - "While expanding the reference 'range_check_ptr' in:" - ], - "start_col": 64, - "start_line": 23 - } - }, - "3502": { - "accessible_scopes": [ - "__main__", - "__main__._n_row", - "__main__._n_row.write" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 36, - "end_line": 24, - "input_file": { - "filename": "autogen/starknet/storage_var/_n_row/impl.cairo" - }, - "start_col": 30, - "start_line": 24 - } - }, - "3504": { - "accessible_scopes": [ - "__main__", - "__main__._n_row", - "__main__._n_row.write" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 34, - "end_line": 23, - "input_file": { - "filename": "autogen/starknet/storage_var/_n_row/impl.cairo" - }, - "parent_location": [ - { - "end_col": 38, - "end_line": 370, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/starknet/common/syscalls.cairo" - }, - "parent_location": [ - { - "end_col": 80, - "end_line": 25, - "input_file": { - "filename": "autogen/starknet/storage_var/_n_row/impl.cairo" - }, - "start_col": 9, - "start_line": 25 - }, - "While trying to retrieve the implicit argument 'syscall_ptr' in:" - ], - "start_col": 20, - "start_line": 370 - }, - "While expanding the reference 'syscall_ptr' in:" - ], - "start_col": 16, - "start_line": 23 - } - }, - "3505": { - "accessible_scopes": [ - "__main__", - "__main__._n_row", - "__main__._n_row.write" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 26, - "end_line": 24, - "input_file": { - "filename": "autogen/starknet/storage_var/_n_row/impl.cairo" - }, - "parent_location": [ - { - "end_col": 43, - "end_line": 25, - "input_file": { - "filename": "autogen/starknet/storage_var/_n_row/impl.cairo" - }, - "start_col": 31, - "start_line": 25 - }, - "While expanding the reference 'storage_addr' in:" - ], - "start_col": 14, - "start_line": 24 - } - }, - "3506": { - "accessible_scopes": [ - "__main__", - "__main__._n_row", - "__main__._n_row.write" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 79, - "end_line": 25, - "input_file": { - "filename": "autogen/starknet/storage_var/_n_row/impl.cairo" - }, - "start_col": 55, - "start_line": 25 - } - }, - "3507": { - "accessible_scopes": [ - "__main__", - "__main__._n_row", - "__main__._n_row.write" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 80, - "end_line": 25, - "input_file": { - "filename": "autogen/starknet/storage_var/_n_row/impl.cairo" - }, - "start_col": 9, - "start_line": 25 - } - }, - "3509": { - "accessible_scopes": [ - "__main__", - "__main__._n_row", - "__main__._n_row.write" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 41, - "end_line": 7, - "input_file": { - "filename": "autogen/starknet/storage_var/_n_row/decl.cairo" - }, - "parent_location": [ - { - "end_col": 36, - "end_line": 24, - "input_file": { - "filename": "autogen/starknet/storage_var/_n_row/impl.cairo" - }, - "parent_location": [ - { - "end_col": 62, - "end_line": 19, - "input_file": { - "filename": "autogen/starknet/storage_var/_n_row/decl.cairo" - }, - "parent_location": [ - { - "end_col": 19, - "end_line": 26, - "input_file": { - "filename": "autogen/starknet/storage_var/_n_row/impl.cairo" - }, - "start_col": 9, - "start_line": 26 - }, - "While trying to retrieve the implicit argument 'pedersen_ptr' in:" - ], - "start_col": 36, - "start_line": 19 - }, - "While expanding the reference 'pedersen_ptr' in:" - ], - "start_col": 30, - "start_line": 24 - }, - "While trying to update the implicit return value 'pedersen_ptr' in:" - ], - "start_col": 15, - "start_line": 7 - } - }, - "3510": { - "accessible_scopes": [ - "__main__", - "__main__._n_row", - "__main__._n_row.write" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 58, - "end_line": 7, - "input_file": { - "filename": "autogen/starknet/storage_var/_n_row/decl.cairo" - }, - "parent_location": [ - { - "end_col": 36, - "end_line": 24, - "input_file": { - "filename": "autogen/starknet/storage_var/_n_row/impl.cairo" - }, - "parent_location": [ - { - "end_col": 79, - "end_line": 19, - "input_file": { - "filename": "autogen/starknet/storage_var/_n_row/decl.cairo" - }, - "parent_location": [ - { - "end_col": 19, - "end_line": 26, - "input_file": { - "filename": "autogen/starknet/storage_var/_n_row/impl.cairo" - }, - "start_col": 9, - "start_line": 26 - }, - "While trying to retrieve the implicit argument 'range_check_ptr' in:" - ], - "start_col": 64, - "start_line": 19 - }, - "While expanding the reference 'range_check_ptr' in:" - ], - "start_col": 30, - "start_line": 24 - }, - "While trying to update the implicit return value 'range_check_ptr' in:" - ], - "start_col": 43, - "start_line": 7 - } - }, - "3511": { - "accessible_scopes": [ - "__main__", - "__main__._n_row", - "__main__._n_row.write" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 19, - "end_line": 26, - "input_file": { - "filename": "autogen/starknet/storage_var/_n_row/impl.cairo" - }, - "start_col": 9, - "start_line": 26 - } - }, - "3512": { - "accessible_scopes": [ - "__main__", - "__main__", - "__main__.owner" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 30, - "end_line": 36, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "parent_location": [ - { - "end_col": 34, - "end_line": 56, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/access/ownable/library.cairo" - }, - "parent_location": [ - { - "end_col": 27, - "end_line": 37, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "start_col": 12, - "start_line": 37 - }, - "While trying to retrieve the implicit argument 'syscall_ptr' in:" - ], - "start_col": 16, - "start_line": 56 - }, - "While expanding the reference 'syscall_ptr' in:" - ], - "start_col": 12, - "start_line": 36 - } - }, - "3513": { - "accessible_scopes": [ - "__main__", - "__main__", - "__main__.owner" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 58, - "end_line": 36, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "parent_location": [ - { - "end_col": 62, - "end_line": 56, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/access/ownable/library.cairo" - }, - "parent_location": [ - { - "end_col": 27, - "end_line": 37, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "start_col": 12, - "start_line": 37 - }, - "While trying to retrieve the implicit argument 'pedersen_ptr' in:" - ], - "start_col": 36, - "start_line": 56 - }, - "While expanding the reference 'pedersen_ptr' in:" - ], - "start_col": 32, - "start_line": 36 - } - }, - "3514": { - "accessible_scopes": [ - "__main__", - "__main__", - "__main__.owner" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 75, - "end_line": 36, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "parent_location": [ - { - "end_col": 79, - "end_line": 56, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/access/ownable/library.cairo" - }, - "parent_location": [ - { - "end_col": 27, - "end_line": 37, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "start_col": 12, - "start_line": 37 - }, - "While trying to retrieve the implicit argument 'range_check_ptr' in:" - ], - "start_col": 64, - "start_line": 56 - }, - "While expanding the reference 'range_check_ptr' in:" - ], - "start_col": 60, - "start_line": 36 - } - }, - "3515": { - "accessible_scopes": [ - "__main__", - "__main__", - "__main__.owner" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 27, - "end_line": 37, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "start_col": 12, - "start_line": 37 - } - }, - "3517": { - "accessible_scopes": [ - "__main__", - "__main__", - "__main__.owner" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 28, - "end_line": 37, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "start_col": 5, - "start_line": 37 - } - }, - "3518": { - "accessible_scopes": [ - "__main__", - "__main__", - "__wrappers__", - "__wrappers__.owner_encode_return" - ], - "flow_tracking_data": null, - "hints": [ - { - "location": { - "end_col": 38, - "end_line": 3, - "input_file": { - "filename": "autogen/starknet/external/return/owner/c1ea7b1e827d8c158fe70e5d717faa1b8c13dd7db70cc1edeadb514de355a1bc.cairo" - }, - "parent_location": [ - { - "end_col": 11, - "end_line": 36, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "start_col": 6, - "start_line": 36 - }, - "While handling return value of" - ], - "start_col": 5, - "start_line": 3 - }, - "n_prefix_newlines": 0 - } - ], - "inst": { - "end_col": 18, - "end_line": 4, - "input_file": { - "filename": "autogen/starknet/external/return/owner/c1ea7b1e827d8c158fe70e5d717faa1b8c13dd7db70cc1edeadb514de355a1bc.cairo" - }, - "parent_location": [ - { - "end_col": 11, - "end_line": 36, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "start_col": 6, - "start_line": 36 - }, - "While handling return value of" - ], - "start_col": 5, - "start_line": 4 - } - }, - "3520": { - "accessible_scopes": [ - "__main__", - "__main__", - "__wrappers__", - "__wrappers__.owner_encode_return" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 47, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/arg_processor/b02ddc13e06346668d980e18c0fec90f17036d195bf95d21ac18e846a0a129f3.cairo" - }, - "parent_location": [ - { - "end_col": 94, - "end_line": 36, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "start_col": 83, - "start_line": 36 - }, - "While handling return value 'owner'" - ], - "start_col": 1, - "start_line": 1 - } - }, - "3521": { - "accessible_scopes": [ - "__main__", - "__main__", - "__wrappers__", - "__wrappers__.owner_encode_return" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 48, - "end_line": 2, - "input_file": { - "filename": "autogen/starknet/arg_processor/b02ddc13e06346668d980e18c0fec90f17036d195bf95d21ac18e846a0a129f3.cairo" - }, - "parent_location": [ - { - "end_col": 94, - "end_line": 36, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "parent_location": [ - { - "end_col": 36, - "end_line": 11, - "input_file": { - "filename": "autogen/starknet/external/return/owner/c1ea7b1e827d8c158fe70e5d717faa1b8c13dd7db70cc1edeadb514de355a1bc.cairo" - }, - "parent_location": [ - { - "end_col": 11, - "end_line": 36, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "start_col": 6, - "start_line": 36 - }, - "While handling return value of" - ], - "start_col": 18, - "start_line": 11 - }, - "While expanding the reference '__return_value_ptr' in:" - ], - "start_col": 83, - "start_line": 36 - }, - "While handling return value 'owner'" - ], - "start_col": 26, - "start_line": 2 - } - }, - "3523": { - "accessible_scopes": [ - "__main__", - "__main__", - "__wrappers__", - "__wrappers__.owner_encode_return" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 67, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/external/return/owner/c1ea7b1e827d8c158fe70e5d717faa1b8c13dd7db70cc1edeadb514de355a1bc.cairo" - }, - "parent_location": [ - { - "end_col": 11, - "end_line": 36, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "parent_location": [ - { - "end_col": 40, - "end_line": 10, - "input_file": { - "filename": "autogen/starknet/external/return/owner/c1ea7b1e827d8c158fe70e5d717faa1b8c13dd7db70cc1edeadb514de355a1bc.cairo" - }, - "parent_location": [ - { - "end_col": 11, - "end_line": 36, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "start_col": 6, - "start_line": 36 - }, - "While handling return value of" - ], - "start_col": 25, - "start_line": 10 - }, - "While expanding the reference 'range_check_ptr' in:" - ], - "start_col": 6, - "start_line": 36 - }, - "While handling return value of" - ], - "start_col": 52, - "start_line": 1 - } - }, - "3524": { - "accessible_scopes": [ - "__main__", - "__main__", - "__wrappers__", - "__wrappers__.owner_encode_return" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 63, - "end_line": 11, - "input_file": { - "filename": "autogen/starknet/external/return/owner/c1ea7b1e827d8c158fe70e5d717faa1b8c13dd7db70cc1edeadb514de355a1bc.cairo" - }, - "parent_location": [ - { - "end_col": 11, - "end_line": 36, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "start_col": 6, - "start_line": 36 - }, - "While handling return value of" - ], - "start_col": 18, - "start_line": 11 - } - }, - "3525": { - "accessible_scopes": [ - "__main__", - "__main__", - "__wrappers__", - "__wrappers__.owner_encode_return" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 35, - "end_line": 5, - "input_file": { - "filename": "autogen/starknet/external/return/owner/c1ea7b1e827d8c158fe70e5d717faa1b8c13dd7db70cc1edeadb514de355a1bc.cairo" - }, - "parent_location": [ - { - "end_col": 11, - "end_line": 36, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "parent_location": [ - { - "end_col": 38, - "end_line": 12, - "input_file": { - "filename": "autogen/starknet/external/return/owner/c1ea7b1e827d8c158fe70e5d717faa1b8c13dd7db70cc1edeadb514de355a1bc.cairo" - }, - "parent_location": [ - { - "end_col": 11, - "end_line": 36, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "start_col": 6, - "start_line": 36 - }, - "While handling return value of" - ], - "start_col": 14, - "start_line": 12 - }, - "While expanding the reference '__return_value_ptr_start' in:" - ], - "start_col": 6, - "start_line": 36 - }, - "While handling return value of" - ], - "start_col": 11, - "start_line": 5 - } - }, - "3526": { - "accessible_scopes": [ - "__main__", - "__main__", - "__wrappers__", - "__wrappers__.owner_encode_return" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 40, - "end_line": 12, - "input_file": { - "filename": "autogen/starknet/external/return/owner/c1ea7b1e827d8c158fe70e5d717faa1b8c13dd7db70cc1edeadb514de355a1bc.cairo" - }, - "parent_location": [ - { - "end_col": 11, - "end_line": 36, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "start_col": 6, - "start_line": 36 - }, - "While handling return value of" - ], - "start_col": 5, - "start_line": 9 - } - }, - "3527": { - "accessible_scopes": [ - "__main__", - "__main__", - "__wrappers__", - "__wrappers__.owner" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 58, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/arg_processor/01cba52f8515996bb9d7070bde81ff39281d096d7024a558efcba6e1fd2402cf.cairo" - }, - "parent_location": [ - { - "end_col": 11, - "end_line": 36, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "start_col": 6, - "start_line": 36 - }, - "While handling calldata of" - ], - "start_col": 1, - "start_line": 1 - } - }, - "3528": { - "accessible_scopes": [ - "__main__", - "__main__", - "__wrappers__", - "__wrappers__.owner" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 64, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/external/owner/b2c52ca2d2a8fc8791a983086d8716c5eacd0c3d62934914d2286f84b98ff4cb.cairo" - }, - "parent_location": [ - { - "end_col": 30, - "end_line": 36, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "parent_location": [ - { - "end_col": 55, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/external/owner/613a24dd6fa1e6c043f44c3b480cfa5d629bfe6891f43b0ff9ba79b40a6c8e9e.cairo" - }, - "parent_location": [ - { - "end_col": 11, - "end_line": 36, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "start_col": 6, - "start_line": 36 - }, - "While constructing the external wrapper for:" - ], - "start_col": 44, - "start_line": 1 - }, - "While expanding the reference 'syscall_ptr' in:" - ], - "start_col": 12, - "start_line": 36 - }, - "While constructing the external wrapper for:" - ], - "start_col": 19, - "start_line": 1 - } - }, - "3529": { - "accessible_scopes": [ - "__main__", - "__main__", - "__wrappers__", - "__wrappers__.owner" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 110, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/external/owner/9684a85e93c782014ca14293edea4eb2502039a5a7b6538ecd39c56faaf12529.cairo" - }, - "parent_location": [ - { - "end_col": 58, - "end_line": 36, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "parent_location": [ - { - "end_col": 82, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/external/owner/613a24dd6fa1e6c043f44c3b480cfa5d629bfe6891f43b0ff9ba79b40a6c8e9e.cairo" - }, - "parent_location": [ - { - "end_col": 11, - "end_line": 36, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "start_col": 6, - "start_line": 36 - }, - "While constructing the external wrapper for:" - ], - "start_col": 70, - "start_line": 1 - }, - "While expanding the reference 'pedersen_ptr' in:" - ], - "start_col": 32, - "start_line": 36 - }, - "While constructing the external wrapper for:" - ], - "start_col": 20, - "start_line": 1 - } - }, - "3530": { - "accessible_scopes": [ - "__main__", - "__main__", - "__wrappers__", - "__wrappers__.owner" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 67, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/external/owner/741ea357d6336b0bed7bf0472425acd0311d543883b803388880e60a232040c7.cairo" - }, - "parent_location": [ - { - "end_col": 75, - "end_line": 36, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "parent_location": [ - { - "end_col": 115, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/external/owner/613a24dd6fa1e6c043f44c3b480cfa5d629bfe6891f43b0ff9ba79b40a6c8e9e.cairo" - }, - "parent_location": [ - { - "end_col": 11, - "end_line": 36, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "start_col": 6, - "start_line": 36 - }, - "While constructing the external wrapper for:" - ], - "start_col": 100, - "start_line": 1 - }, - "While expanding the reference 'range_check_ptr' in:" - ], - "start_col": 60, - "start_line": 36 - }, - "While constructing the external wrapper for:" - ], - "start_col": 23, - "start_line": 1 - } - }, - "3531": { - "accessible_scopes": [ - "__main__", - "__main__", - "__wrappers__", - "__wrappers__.owner" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 11, - "end_line": 36, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "start_col": 6, - "start_line": 36 - } - }, - "3533": { - "accessible_scopes": [ - "__main__", - "__main__", - "__wrappers__", - "__wrappers__.owner" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 115, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/external/owner/613a24dd6fa1e6c043f44c3b480cfa5d629bfe6891f43b0ff9ba79b40a6c8e9e.cairo" - }, - "parent_location": [ - { - "end_col": 11, - "end_line": 36, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "parent_location": [ - { - "end_col": 94, - "end_line": 2, - "input_file": { - "filename": "autogen/starknet/external/owner/613a24dd6fa1e6c043f44c3b480cfa5d629bfe6891f43b0ff9ba79b40a6c8e9e.cairo" - }, - "parent_location": [ - { - "end_col": 11, - "end_line": 36, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "start_col": 6, - "start_line": 36 - }, - "While constructing the external wrapper for:" - ], - "start_col": 79, - "start_line": 2 - }, - "While expanding the reference 'range_check_ptr' in:" - ], - "start_col": 6, - "start_line": 36 - }, - "While constructing the external wrapper for:" - ], - "start_col": 100, - "start_line": 1 - } - }, - "3534": { - "accessible_scopes": [ - "__main__", - "__main__", - "__wrappers__", - "__wrappers__.owner" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 95, - "end_line": 2, - "input_file": { - "filename": "autogen/starknet/external/owner/613a24dd6fa1e6c043f44c3b480cfa5d629bfe6891f43b0ff9ba79b40a6c8e9e.cairo" - }, - "parent_location": [ - { - "end_col": 11, - "end_line": 36, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "start_col": 6, - "start_line": 36 - }, - "While constructing the external wrapper for:" - ], - "start_col": 48, - "start_line": 2 - } - }, - "3536": { - "accessible_scopes": [ - "__main__", - "__main__", - "__wrappers__", - "__wrappers__.owner" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 55, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/external/owner/613a24dd6fa1e6c043f44c3b480cfa5d629bfe6891f43b0ff9ba79b40a6c8e9e.cairo" - }, - "parent_location": [ - { - "end_col": 11, - "end_line": 36, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "parent_location": [ - { - "end_col": 20, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/external/owner/da17921a4e81c09e730800bbf23bfdbe5e9e6bfaedc59d80fbf62087fa43c27d.cairo" - }, - "parent_location": [ - { - "end_col": 11, - "end_line": 36, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "start_col": 6, - "start_line": 36 - }, - "While constructing the external wrapper for:" - ], - "start_col": 9, - "start_line": 1 - }, - "While expanding the reference 'syscall_ptr' in:" - ], - "start_col": 6, - "start_line": 36 - }, - "While constructing the external wrapper for:" - ], - "start_col": 44, - "start_line": 1 - } - }, - "3537": { - "accessible_scopes": [ - "__main__", - "__main__", - "__wrappers__", - "__wrappers__.owner" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 82, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/external/owner/613a24dd6fa1e6c043f44c3b480cfa5d629bfe6891f43b0ff9ba79b40a6c8e9e.cairo" - }, - "parent_location": [ - { - "end_col": 11, - "end_line": 36, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "parent_location": [ - { - "end_col": 33, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/external/owner/da17921a4e81c09e730800bbf23bfdbe5e9e6bfaedc59d80fbf62087fa43c27d.cairo" - }, - "parent_location": [ - { - "end_col": 11, - "end_line": 36, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "start_col": 6, - "start_line": 36 - }, - "While constructing the external wrapper for:" - ], - "start_col": 21, - "start_line": 1 - }, - "While expanding the reference 'pedersen_ptr' in:" - ], - "start_col": 6, - "start_line": 36 - }, - "While constructing the external wrapper for:" - ], - "start_col": 70, - "start_line": 1 - } - }, - "3538": { - "accessible_scopes": [ - "__main__", - "__main__", - "__wrappers__", - "__wrappers__.owner" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 21, - "end_line": 2, - "input_file": { - "filename": "autogen/starknet/external/owner/613a24dd6fa1e6c043f44c3b480cfa5d629bfe6891f43b0ff9ba79b40a6c8e9e.cairo" - }, - "parent_location": [ - { - "end_col": 11, - "end_line": 36, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "parent_location": [ - { - "end_col": 49, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/external/owner/da17921a4e81c09e730800bbf23bfdbe5e9e6bfaedc59d80fbf62087fa43c27d.cairo" - }, - "parent_location": [ - { - "end_col": 11, - "end_line": 36, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "start_col": 6, - "start_line": 36 - }, - "While constructing the external wrapper for:" - ], - "start_col": 34, - "start_line": 1 - }, - "While expanding the reference 'range_check_ptr' in:" - ], - "start_col": 6, - "start_line": 36 - }, - "While constructing the external wrapper for:" - ], - "start_col": 6, - "start_line": 2 - } - }, - "3539": { - "accessible_scopes": [ - "__main__", - "__main__", - "__wrappers__", - "__wrappers__.owner" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 35, - "end_line": 2, - "input_file": { - "filename": "autogen/starknet/external/owner/613a24dd6fa1e6c043f44c3b480cfa5d629bfe6891f43b0ff9ba79b40a6c8e9e.cairo" - }, - "parent_location": [ - { - "end_col": 11, - "end_line": 36, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "parent_location": [ - { - "end_col": 62, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/external/owner/da17921a4e81c09e730800bbf23bfdbe5e9e6bfaedc59d80fbf62087fa43c27d.cairo" - }, - "parent_location": [ - { - "end_col": 11, - "end_line": 36, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "start_col": 6, - "start_line": 36 - }, - "While constructing the external wrapper for:" - ], - "start_col": 50, - "start_line": 1 - }, - "While expanding the reference 'retdata_size' in:" - ], - "start_col": 6, - "start_line": 36 - }, - "While constructing the external wrapper for:" - ], - "start_col": 23, - "start_line": 2 - } - }, - "3540": { - "accessible_scopes": [ - "__main__", - "__main__", - "__wrappers__", - "__wrappers__.owner" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 44, - "end_line": 2, - "input_file": { - "filename": "autogen/starknet/external/owner/613a24dd6fa1e6c043f44c3b480cfa5d629bfe6891f43b0ff9ba79b40a6c8e9e.cairo" - }, - "parent_location": [ - { - "end_col": 11, - "end_line": 36, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "parent_location": [ - { - "end_col": 70, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/external/owner/da17921a4e81c09e730800bbf23bfdbe5e9e6bfaedc59d80fbf62087fa43c27d.cairo" - }, - "parent_location": [ - { - "end_col": 11, - "end_line": 36, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "start_col": 6, - "start_line": 36 - }, - "While constructing the external wrapper for:" - ], - "start_col": 63, - "start_line": 1 - }, - "While expanding the reference 'retdata' in:" - ], - "start_col": 6, - "start_line": 36 - }, - "While constructing the external wrapper for:" - ], - "start_col": 37, - "start_line": 2 - } - }, - "3541": { - "accessible_scopes": [ - "__main__", - "__main__", - "__wrappers__", - "__wrappers__.owner" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 72, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/external/owner/da17921a4e81c09e730800bbf23bfdbe5e9e6bfaedc59d80fbf62087fa43c27d.cairo" - }, - "parent_location": [ - { - "end_col": 11, - "end_line": 36, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "start_col": 6, - "start_line": 36 - }, - "While constructing the external wrapper for:" - ], - "start_col": 1, - "start_line": 1 - } - }, - "3542": { - "accessible_scopes": [ - "__main__", - "__main__", - "__main__.transferOwnership" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 42, - "end_line": 41, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "parent_location": [ - { - "end_col": 47, - "end_line": 60, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/access/ownable/library.cairo" - }, - "parent_location": [ - { - "end_col": 42, - "end_line": 44, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "start_col": 5, - "start_line": 44 - }, - "While trying to retrieve the implicit argument 'syscall_ptr' in:" - ], - "start_col": 29, - "start_line": 60 - }, - "While expanding the reference 'syscall_ptr' in:" - ], - "start_col": 24, - "start_line": 41 - } - }, - "3543": { - "accessible_scopes": [ - "__main__", - "__main__", - "__main__.transferOwnership" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 70, - "end_line": 41, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "parent_location": [ - { - "end_col": 75, - "end_line": 60, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/access/ownable/library.cairo" - }, - "parent_location": [ - { - "end_col": 42, - "end_line": 44, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "start_col": 5, - "start_line": 44 - }, - "While trying to retrieve the implicit argument 'pedersen_ptr' in:" - ], - "start_col": 49, - "start_line": 60 - }, - "While expanding the reference 'pedersen_ptr' in:" - ], - "start_col": 44, - "start_line": 41 - } - }, - "3544": { - "accessible_scopes": [ - "__main__", - "__main__", - "__main__.transferOwnership" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 87, - "end_line": 41, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "parent_location": [ - { - "end_col": 92, - "end_line": 60, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/access/ownable/library.cairo" - }, - "parent_location": [ - { - "end_col": 42, - "end_line": 44, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "start_col": 5, - "start_line": 44 - }, - "While trying to retrieve the implicit argument 'range_check_ptr' in:" - ], - "start_col": 77, - "start_line": 60 - }, - "While expanding the reference 'range_check_ptr' in:" - ], - "start_col": 72, - "start_line": 41 - } - }, - "3545": { - "accessible_scopes": [ - "__main__", - "__main__", - "__main__.transferOwnership" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 20, - "end_line": 42, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "parent_location": [ - { - "end_col": 41, - "end_line": 44, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "start_col": 32, - "start_line": 44 - }, - "While expanding the reference 'new_owner' in:" - ], - "start_col": 5, - "start_line": 42 - } - }, - "3546": { - "accessible_scopes": [ - "__main__", - "__main__", - "__main__.transferOwnership" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 42, - "end_line": 44, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "start_col": 5, - "start_line": 44 - } - }, - "3548": { - "accessible_scopes": [ - "__main__", - "__main__", - "__main__.transferOwnership" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 15, - "end_line": 45, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "start_col": 5, - "start_line": 45 - } - }, - "3549": { - "accessible_scopes": [ - "__main__", - "__main__", - "__wrappers__", - "__wrappers__.transferOwnership" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 40, - "end_line": 2, - "input_file": { - "filename": "autogen/starknet/arg_processor/450f0509800d3afb78e5f375ff7b17115e6b5d0fd7e2bff94c78fdb15f5f2d10.cairo" - }, - "parent_location": [ - { - "end_col": 20, - "end_line": 42, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "parent_location": [ - { - "end_col": 45, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/arg_processor/c31620b02d4d706f0542c989b2aadc01b0981d1f6a5933a8fe4937ace3d70d92.cairo" - }, - "parent_location": [ - { - "end_col": 23, - "end_line": 41, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "parent_location": [ - { - "end_col": 57, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/arg_processor/01cba52f8515996bb9d7070bde81ff39281d096d7024a558efcba6e1fd2402cf.cairo" - }, - "parent_location": [ - { - "end_col": 23, - "end_line": 41, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "start_col": 6, - "start_line": 41 - }, - "While handling calldata of" - ], - "start_col": 35, - "start_line": 1 - }, - "While expanding the reference '__calldata_actual_size' in:" - ], - "start_col": 6, - "start_line": 41 - }, - "While handling calldata of" - ], - "start_col": 31, - "start_line": 1 - }, - "While expanding the reference '__calldata_ptr' in:" - ], - "start_col": 5, - "start_line": 42 - }, - "While handling calldata argument 'new_owner'" - ], - "start_col": 22, - "start_line": 2 - } - }, - "3551": { - "accessible_scopes": [ - "__main__", - "__main__", - "__wrappers__", - "__wrappers__.transferOwnership" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 58, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/arg_processor/01cba52f8515996bb9d7070bde81ff39281d096d7024a558efcba6e1fd2402cf.cairo" - }, - "parent_location": [ - { - "end_col": 23, - "end_line": 41, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "start_col": 6, - "start_line": 41 - }, - "While handling calldata of" - ], - "start_col": 1, - "start_line": 1 - } - }, - "3552": { - "accessible_scopes": [ - "__main__", - "__main__", - "__wrappers__", - "__wrappers__.transferOwnership" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 64, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/external/transferOwnership/b2c52ca2d2a8fc8791a983086d8716c5eacd0c3d62934914d2286f84b98ff4cb.cairo" - }, - "parent_location": [ - { - "end_col": 42, - "end_line": 41, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "parent_location": [ - { - "end_col": 55, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/external/transferOwnership/c2abbdf6d40d1d1b0441e88eb8846ba0c3d55e5f282e3d3f8d0a35a43a9b3e33.cairo" - }, - "parent_location": [ - { - "end_col": 23, - "end_line": 41, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "start_col": 6, - "start_line": 41 - }, - "While constructing the external wrapper for:" - ], - "start_col": 44, - "start_line": 1 - }, - "While expanding the reference 'syscall_ptr' in:" - ], - "start_col": 24, - "start_line": 41 - }, - "While constructing the external wrapper for:" - ], - "start_col": 19, - "start_line": 1 - } - }, - "3553": { - "accessible_scopes": [ - "__main__", - "__main__", - "__wrappers__", - "__wrappers__.transferOwnership" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 110, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/external/transferOwnership/9684a85e93c782014ca14293edea4eb2502039a5a7b6538ecd39c56faaf12529.cairo" - }, - "parent_location": [ - { - "end_col": 70, - "end_line": 41, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "parent_location": [ - { - "end_col": 82, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/external/transferOwnership/c2abbdf6d40d1d1b0441e88eb8846ba0c3d55e5f282e3d3f8d0a35a43a9b3e33.cairo" - }, - "parent_location": [ - { - "end_col": 23, - "end_line": 41, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "start_col": 6, - "start_line": 41 - }, - "While constructing the external wrapper for:" - ], - "start_col": 70, - "start_line": 1 - }, - "While expanding the reference 'pedersen_ptr' in:" - ], - "start_col": 44, - "start_line": 41 - }, - "While constructing the external wrapper for:" - ], - "start_col": 20, - "start_line": 1 - } - }, - "3554": { - "accessible_scopes": [ - "__main__", - "__main__", - "__wrappers__", - "__wrappers__.transferOwnership" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 67, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/external/transferOwnership/741ea357d6336b0bed7bf0472425acd0311d543883b803388880e60a232040c7.cairo" - }, - "parent_location": [ - { - "end_col": 87, - "end_line": 41, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "parent_location": [ - { - "end_col": 115, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/external/transferOwnership/c2abbdf6d40d1d1b0441e88eb8846ba0c3d55e5f282e3d3f8d0a35a43a9b3e33.cairo" - }, - "parent_location": [ - { - "end_col": 23, - "end_line": 41, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "start_col": 6, - "start_line": 41 - }, - "While constructing the external wrapper for:" - ], - "start_col": 100, - "start_line": 1 - }, - "While expanding the reference 'range_check_ptr' in:" - ], - "start_col": 72, - "start_line": 41 - }, - "While constructing the external wrapper for:" - ], - "start_col": 23, - "start_line": 1 - } - }, - "3555": { - "accessible_scopes": [ - "__main__", - "__main__", - "__wrappers__", - "__wrappers__.transferOwnership" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 48, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/arg_processor/450f0509800d3afb78e5f375ff7b17115e6b5d0fd7e2bff94c78fdb15f5f2d10.cairo" - }, - "parent_location": [ - { - "end_col": 20, - "end_line": 42, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "parent_location": [ - { - "end_col": 151, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/external/transferOwnership/c2abbdf6d40d1d1b0441e88eb8846ba0c3d55e5f282e3d3f8d0a35a43a9b3e33.cairo" - }, - "parent_location": [ - { - "end_col": 23, - "end_line": 41, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "start_col": 6, - "start_line": 41 - }, - "While constructing the external wrapper for:" - ], - "start_col": 127, - "start_line": 1 - }, - "While expanding the reference '__calldata_arg_new_owner' in:" - ], - "start_col": 5, - "start_line": 42 - }, - "While handling calldata argument 'new_owner'" - ], - "start_col": 32, - "start_line": 1 - } - }, - "3556": { - "accessible_scopes": [ - "__main__", - "__main__", - "__wrappers__", - "__wrappers__.transferOwnership" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 23, - "end_line": 41, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "start_col": 6, - "start_line": 41 - } - }, - "3558": { - "accessible_scopes": [ - "__main__", - "__main__", - "__wrappers__", - "__wrappers__.transferOwnership" - ], - "flow_tracking_data": null, - "hints": [ - { - "location": { - "end_col": 34, - "end_line": 2, - "input_file": { - "filename": "autogen/starknet/external/transferOwnership/c2abbdf6d40d1d1b0441e88eb8846ba0c3d55e5f282e3d3f8d0a35a43a9b3e33.cairo" - }, - "parent_location": [ - { - "end_col": 23, - "end_line": 41, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "start_col": 6, - "start_line": 41 - }, - "While constructing the external wrapper for:" - ], - "start_col": 1, - "start_line": 2 - }, - "n_prefix_newlines": 0 - } - ], - "inst": { - "end_col": 24, - "end_line": 3, - "input_file": { - "filename": "autogen/starknet/external/transferOwnership/c2abbdf6d40d1d1b0441e88eb8846ba0c3d55e5f282e3d3f8d0a35a43a9b3e33.cairo" - }, - "parent_location": [ - { - "end_col": 23, - "end_line": 41, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "start_col": 6, - "start_line": 41 - }, - "While constructing the external wrapper for:" - ], - "start_col": 1, - "start_line": 3 - } - }, - "3560": { - "accessible_scopes": [ - "__main__", - "__main__", - "__wrappers__", - "__wrappers__.transferOwnership" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 55, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/external/transferOwnership/c2abbdf6d40d1d1b0441e88eb8846ba0c3d55e5f282e3d3f8d0a35a43a9b3e33.cairo" - }, - "parent_location": [ - { - "end_col": 23, - "end_line": 41, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "parent_location": [ - { - "end_col": 20, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/external/transferOwnership/da17921a4e81c09e730800bbf23bfdbe5e9e6bfaedc59d80fbf62087fa43c27d.cairo" - }, - "parent_location": [ - { - "end_col": 23, - "end_line": 41, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "start_col": 6, - "start_line": 41 - }, - "While constructing the external wrapper for:" - ], - "start_col": 9, - "start_line": 1 - }, - "While expanding the reference 'syscall_ptr' in:" - ], - "start_col": 6, - "start_line": 41 - }, - "While constructing the external wrapper for:" - ], - "start_col": 44, - "start_line": 1 - } - }, - "3561": { - "accessible_scopes": [ - "__main__", - "__main__", - "__wrappers__", - "__wrappers__.transferOwnership" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 82, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/external/transferOwnership/c2abbdf6d40d1d1b0441e88eb8846ba0c3d55e5f282e3d3f8d0a35a43a9b3e33.cairo" - }, - "parent_location": [ - { - "end_col": 23, - "end_line": 41, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "parent_location": [ - { - "end_col": 33, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/external/transferOwnership/da17921a4e81c09e730800bbf23bfdbe5e9e6bfaedc59d80fbf62087fa43c27d.cairo" - }, - "parent_location": [ - { - "end_col": 23, - "end_line": 41, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "start_col": 6, - "start_line": 41 - }, - "While constructing the external wrapper for:" - ], - "start_col": 21, - "start_line": 1 - }, - "While expanding the reference 'pedersen_ptr' in:" - ], - "start_col": 6, - "start_line": 41 - }, - "While constructing the external wrapper for:" - ], - "start_col": 70, - "start_line": 1 - } - }, - "3562": { - "accessible_scopes": [ - "__main__", - "__main__", - "__wrappers__", - "__wrappers__.transferOwnership" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 115, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/external/transferOwnership/c2abbdf6d40d1d1b0441e88eb8846ba0c3d55e5f282e3d3f8d0a35a43a9b3e33.cairo" - }, - "parent_location": [ - { - "end_col": 23, - "end_line": 41, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "parent_location": [ - { - "end_col": 49, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/external/transferOwnership/da17921a4e81c09e730800bbf23bfdbe5e9e6bfaedc59d80fbf62087fa43c27d.cairo" - }, - "parent_location": [ - { - "end_col": 23, - "end_line": 41, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "start_col": 6, - "start_line": 41 - }, - "While constructing the external wrapper for:" - ], - "start_col": 34, - "start_line": 1 - }, - "While expanding the reference 'range_check_ptr' in:" - ], - "start_col": 6, - "start_line": 41 - }, - "While constructing the external wrapper for:" - ], - "start_col": 100, - "start_line": 1 - } - }, - "3563": { - "accessible_scopes": [ - "__main__", - "__main__", - "__wrappers__", - "__wrappers__.transferOwnership" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 21, - "end_line": 4, - "input_file": { - "filename": "autogen/starknet/external/transferOwnership/c2abbdf6d40d1d1b0441e88eb8846ba0c3d55e5f282e3d3f8d0a35a43a9b3e33.cairo" - }, - "parent_location": [ - { - "end_col": 23, - "end_line": 41, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "parent_location": [ - { - "end_col": 62, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/external/transferOwnership/da17921a4e81c09e730800bbf23bfdbe5e9e6bfaedc59d80fbf62087fa43c27d.cairo" - }, - "parent_location": [ - { - "end_col": 23, - "end_line": 41, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "start_col": 6, - "start_line": 41 - }, - "While constructing the external wrapper for:" - ], - "start_col": 50, - "start_line": 1 - }, - "While expanding the reference 'retdata_size' in:" - ], - "start_col": 6, - "start_line": 41 - }, - "While constructing the external wrapper for:" - ], - "start_col": 20, - "start_line": 4 - } - }, - "3565": { - "accessible_scopes": [ - "__main__", - "__main__", - "__wrappers__", - "__wrappers__.transferOwnership" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 16, - "end_line": 3, - "input_file": { - "filename": "autogen/starknet/external/transferOwnership/c2abbdf6d40d1d1b0441e88eb8846ba0c3d55e5f282e3d3f8d0a35a43a9b3e33.cairo" - }, - "parent_location": [ - { - "end_col": 23, - "end_line": 41, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "parent_location": [ - { - "end_col": 70, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/external/transferOwnership/da17921a4e81c09e730800bbf23bfdbe5e9e6bfaedc59d80fbf62087fa43c27d.cairo" - }, - "parent_location": [ - { - "end_col": 23, - "end_line": 41, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "start_col": 6, - "start_line": 41 - }, - "While constructing the external wrapper for:" - ], - "start_col": 63, - "start_line": 1 - }, - "While expanding the reference 'retdata' in:" - ], - "start_col": 6, - "start_line": 41 - }, - "While constructing the external wrapper for:" - ], - "start_col": 9, - "start_line": 3 - } - }, - "3566": { - "accessible_scopes": [ - "__main__", - "__main__", - "__wrappers__", - "__wrappers__.transferOwnership" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 72, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/external/transferOwnership/da17921a4e81c09e730800bbf23bfdbe5e9e6bfaedc59d80fbf62087fa43c27d.cairo" - }, - "parent_location": [ - { - "end_col": 23, - "end_line": 41, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "start_col": 6, - "start_line": 41 - }, - "While constructing the external wrapper for:" - ], - "start_col": 1, - "start_line": 1 - } - }, - "3567": { - "accessible_scopes": [ - "__main__", - "__main__", - "__main__.setMaxPerWallet" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 40, - "end_line": 49, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "parent_location": [ - { - "end_col": 46, - "end_line": 40, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/access/ownable/library.cairo" - }, - "parent_location": [ - { - "end_col": 32, - "end_line": 50, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "start_col": 5, - "start_line": 50 - }, - "While trying to retrieve the implicit argument 'syscall_ptr' in:" - ], - "start_col": 28, - "start_line": 40 - }, - "While expanding the reference 'syscall_ptr' in:" - ], - "start_col": 22, - "start_line": 49 - } - }, - "3568": { - "accessible_scopes": [ - "__main__", - "__main__", - "__main__.setMaxPerWallet" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 68, - "end_line": 49, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "parent_location": [ - { - "end_col": 74, - "end_line": 40, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/access/ownable/library.cairo" - }, - "parent_location": [ - { - "end_col": 32, - "end_line": 50, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "start_col": 5, - "start_line": 50 - }, - "While trying to retrieve the implicit argument 'pedersen_ptr' in:" - ], - "start_col": 48, - "start_line": 40 - }, - "While expanding the reference 'pedersen_ptr' in:" - ], - "start_col": 42, - "start_line": 49 - } - }, - "3569": { - "accessible_scopes": [ - "__main__", - "__main__", - "__main__.setMaxPerWallet" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 85, - "end_line": 49, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "parent_location": [ - { - "end_col": 91, - "end_line": 40, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/access/ownable/library.cairo" - }, - "parent_location": [ - { - "end_col": 32, - "end_line": 50, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "start_col": 5, - "start_line": 50 - }, - "While trying to retrieve the implicit argument 'range_check_ptr' in:" - ], - "start_col": 76, - "start_line": 40 - }, - "While expanding the reference 'range_check_ptr' in:" - ], - "start_col": 70, - "start_line": 49 - } - }, - "3570": { - "accessible_scopes": [ - "__main__", - "__main__", - "__main__.setMaxPerWallet" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 32, - "end_line": 50, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "start_col": 5, - "start_line": 50 - } - }, - "3572": { - "accessible_scopes": [ - "__main__", - "__main__", - "__main__.setMaxPerWallet" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 96, - "end_line": 49, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "parent_location": [ - { - "end_col": 35, - "end_line": 51, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "start_col": 32, - "start_line": 51 - }, - "While expanding the reference 'max' in:" - ], - "start_col": 87, - "start_line": 49 - } - }, - "3573": { - "accessible_scopes": [ - "__main__", - "__main__", - "__main__.setMaxPerWallet" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 36, - "end_line": 51, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "start_col": 5, - "start_line": 51 - } - }, - "3575": { - "accessible_scopes": [ - "__main__", - "__main__", - "__main__.setMaxPerWallet" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 15, - "end_line": 52, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "start_col": 5, - "start_line": 52 - } - }, - "3576": { - "accessible_scopes": [ - "__main__", - "__main__", - "__wrappers__", - "__wrappers__.setMaxPerWallet" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 40, - "end_line": 2, - "input_file": { - "filename": "autogen/starknet/arg_processor/06e5a14f93bc3fcb38f775bb6be32ec075a9ef033df7521d51e3a5a3fb688ccb.cairo" - }, - "parent_location": [ - { - "end_col": 96, - "end_line": 49, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "parent_location": [ - { - "end_col": 45, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/arg_processor/c31620b02d4d706f0542c989b2aadc01b0981d1f6a5933a8fe4937ace3d70d92.cairo" - }, - "parent_location": [ - { - "end_col": 21, - "end_line": 49, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "parent_location": [ - { - "end_col": 57, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/arg_processor/01cba52f8515996bb9d7070bde81ff39281d096d7024a558efcba6e1fd2402cf.cairo" - }, - "parent_location": [ - { - "end_col": 21, - "end_line": 49, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "start_col": 6, - "start_line": 49 - }, - "While handling calldata of" - ], - "start_col": 35, - "start_line": 1 - }, - "While expanding the reference '__calldata_actual_size' in:" - ], - "start_col": 6, - "start_line": 49 - }, - "While handling calldata of" - ], - "start_col": 31, - "start_line": 1 - }, - "While expanding the reference '__calldata_ptr' in:" - ], - "start_col": 87, - "start_line": 49 - }, - "While handling calldata argument 'max'" - ], - "start_col": 22, - "start_line": 2 - } - }, - "3578": { - "accessible_scopes": [ - "__main__", - "__main__", - "__wrappers__", - "__wrappers__.setMaxPerWallet" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 58, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/arg_processor/01cba52f8515996bb9d7070bde81ff39281d096d7024a558efcba6e1fd2402cf.cairo" - }, - "parent_location": [ - { - "end_col": 21, - "end_line": 49, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "start_col": 6, - "start_line": 49 - }, - "While handling calldata of" - ], - "start_col": 1, - "start_line": 1 - } - }, - "3579": { - "accessible_scopes": [ - "__main__", - "__main__", - "__wrappers__", - "__wrappers__.setMaxPerWallet" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 64, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/external/setMaxPerWallet/b2c52ca2d2a8fc8791a983086d8716c5eacd0c3d62934914d2286f84b98ff4cb.cairo" - }, - "parent_location": [ - { - "end_col": 40, - "end_line": 49, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "parent_location": [ - { - "end_col": 55, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/external/setMaxPerWallet/e308d249203f5705a190f059b56eb14752af6a01867f138740d0ff96dacabd43.cairo" - }, - "parent_location": [ - { - "end_col": 21, - "end_line": 49, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "start_col": 6, - "start_line": 49 - }, - "While constructing the external wrapper for:" - ], - "start_col": 44, - "start_line": 1 - }, - "While expanding the reference 'syscall_ptr' in:" - ], - "start_col": 22, - "start_line": 49 - }, - "While constructing the external wrapper for:" - ], - "start_col": 19, - "start_line": 1 - } - }, - "3580": { - "accessible_scopes": [ - "__main__", - "__main__", - "__wrappers__", - "__wrappers__.setMaxPerWallet" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 110, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/external/setMaxPerWallet/9684a85e93c782014ca14293edea4eb2502039a5a7b6538ecd39c56faaf12529.cairo" - }, - "parent_location": [ - { - "end_col": 68, - "end_line": 49, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "parent_location": [ - { - "end_col": 82, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/external/setMaxPerWallet/e308d249203f5705a190f059b56eb14752af6a01867f138740d0ff96dacabd43.cairo" - }, - "parent_location": [ - { - "end_col": 21, - "end_line": 49, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "start_col": 6, - "start_line": 49 - }, - "While constructing the external wrapper for:" - ], - "start_col": 70, - "start_line": 1 - }, - "While expanding the reference 'pedersen_ptr' in:" - ], - "start_col": 42, - "start_line": 49 - }, - "While constructing the external wrapper for:" - ], - "start_col": 20, - "start_line": 1 - } - }, - "3581": { - "accessible_scopes": [ - "__main__", - "__main__", - "__wrappers__", - "__wrappers__.setMaxPerWallet" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 67, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/external/setMaxPerWallet/741ea357d6336b0bed7bf0472425acd0311d543883b803388880e60a232040c7.cairo" - }, - "parent_location": [ - { - "end_col": 85, - "end_line": 49, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "parent_location": [ - { - "end_col": 115, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/external/setMaxPerWallet/e308d249203f5705a190f059b56eb14752af6a01867f138740d0ff96dacabd43.cairo" - }, - "parent_location": [ - { - "end_col": 21, - "end_line": 49, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "start_col": 6, - "start_line": 49 - }, - "While constructing the external wrapper for:" - ], - "start_col": 100, - "start_line": 1 - }, - "While expanding the reference 'range_check_ptr' in:" - ], - "start_col": 70, - "start_line": 49 - }, - "While constructing the external wrapper for:" - ], - "start_col": 23, - "start_line": 1 - } - }, - "3582": { - "accessible_scopes": [ - "__main__", - "__main__", - "__wrappers__", - "__wrappers__.setMaxPerWallet" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 42, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/arg_processor/06e5a14f93bc3fcb38f775bb6be32ec075a9ef033df7521d51e3a5a3fb688ccb.cairo" - }, - "parent_location": [ - { - "end_col": 96, - "end_line": 49, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "parent_location": [ - { - "end_col": 139, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/external/setMaxPerWallet/e308d249203f5705a190f059b56eb14752af6a01867f138740d0ff96dacabd43.cairo" - }, - "parent_location": [ - { - "end_col": 21, - "end_line": 49, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "start_col": 6, - "start_line": 49 - }, - "While constructing the external wrapper for:" - ], - "start_col": 121, - "start_line": 1 - }, - "While expanding the reference '__calldata_arg_max' in:" - ], - "start_col": 87, - "start_line": 49 - }, - "While handling calldata argument 'max'" - ], - "start_col": 26, - "start_line": 1 - } - }, - "3583": { - "accessible_scopes": [ - "__main__", - "__main__", - "__wrappers__", - "__wrappers__.setMaxPerWallet" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 21, - "end_line": 49, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "start_col": 6, - "start_line": 49 - } - }, - "3585": { - "accessible_scopes": [ - "__main__", - "__main__", - "__wrappers__", - "__wrappers__.setMaxPerWallet" - ], - "flow_tracking_data": null, - "hints": [ - { - "location": { - "end_col": 34, - "end_line": 2, - "input_file": { - "filename": "autogen/starknet/external/setMaxPerWallet/e308d249203f5705a190f059b56eb14752af6a01867f138740d0ff96dacabd43.cairo" - }, - "parent_location": [ - { - "end_col": 21, - "end_line": 49, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "start_col": 6, - "start_line": 49 - }, - "While constructing the external wrapper for:" - ], - "start_col": 1, - "start_line": 2 - }, - "n_prefix_newlines": 0 - } - ], - "inst": { - "end_col": 24, - "end_line": 3, - "input_file": { - "filename": "autogen/starknet/external/setMaxPerWallet/e308d249203f5705a190f059b56eb14752af6a01867f138740d0ff96dacabd43.cairo" - }, - "parent_location": [ - { - "end_col": 21, - "end_line": 49, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "start_col": 6, - "start_line": 49 - }, - "While constructing the external wrapper for:" - ], - "start_col": 1, - "start_line": 3 - } - }, - "3587": { - "accessible_scopes": [ - "__main__", - "__main__", - "__wrappers__", - "__wrappers__.setMaxPerWallet" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 55, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/external/setMaxPerWallet/e308d249203f5705a190f059b56eb14752af6a01867f138740d0ff96dacabd43.cairo" - }, - "parent_location": [ - { - "end_col": 21, - "end_line": 49, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "parent_location": [ - { - "end_col": 20, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/external/setMaxPerWallet/da17921a4e81c09e730800bbf23bfdbe5e9e6bfaedc59d80fbf62087fa43c27d.cairo" - }, - "parent_location": [ - { - "end_col": 21, - "end_line": 49, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "start_col": 6, - "start_line": 49 - }, - "While constructing the external wrapper for:" - ], - "start_col": 9, - "start_line": 1 - }, - "While expanding the reference 'syscall_ptr' in:" - ], - "start_col": 6, - "start_line": 49 - }, - "While constructing the external wrapper for:" - ], - "start_col": 44, - "start_line": 1 - } - }, - "3588": { - "accessible_scopes": [ - "__main__", - "__main__", - "__wrappers__", - "__wrappers__.setMaxPerWallet" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 82, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/external/setMaxPerWallet/e308d249203f5705a190f059b56eb14752af6a01867f138740d0ff96dacabd43.cairo" - }, - "parent_location": [ - { - "end_col": 21, - "end_line": 49, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "parent_location": [ - { - "end_col": 33, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/external/setMaxPerWallet/da17921a4e81c09e730800bbf23bfdbe5e9e6bfaedc59d80fbf62087fa43c27d.cairo" - }, - "parent_location": [ - { - "end_col": 21, - "end_line": 49, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "start_col": 6, - "start_line": 49 - }, - "While constructing the external wrapper for:" - ], - "start_col": 21, - "start_line": 1 - }, - "While expanding the reference 'pedersen_ptr' in:" - ], - "start_col": 6, - "start_line": 49 - }, - "While constructing the external wrapper for:" - ], - "start_col": 70, - "start_line": 1 - } - }, - "3589": { - "accessible_scopes": [ - "__main__", - "__main__", - "__wrappers__", - "__wrappers__.setMaxPerWallet" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 115, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/external/setMaxPerWallet/e308d249203f5705a190f059b56eb14752af6a01867f138740d0ff96dacabd43.cairo" - }, - "parent_location": [ - { - "end_col": 21, - "end_line": 49, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "parent_location": [ - { - "end_col": 49, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/external/setMaxPerWallet/da17921a4e81c09e730800bbf23bfdbe5e9e6bfaedc59d80fbf62087fa43c27d.cairo" - }, - "parent_location": [ - { - "end_col": 21, - "end_line": 49, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "start_col": 6, - "start_line": 49 - }, - "While constructing the external wrapper for:" - ], - "start_col": 34, - "start_line": 1 - }, - "While expanding the reference 'range_check_ptr' in:" - ], - "start_col": 6, - "start_line": 49 - }, - "While constructing the external wrapper for:" - ], - "start_col": 100, - "start_line": 1 - } - }, - "3590": { - "accessible_scopes": [ - "__main__", - "__main__", - "__wrappers__", - "__wrappers__.setMaxPerWallet" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 21, - "end_line": 4, - "input_file": { - "filename": "autogen/starknet/external/setMaxPerWallet/e308d249203f5705a190f059b56eb14752af6a01867f138740d0ff96dacabd43.cairo" - }, - "parent_location": [ - { - "end_col": 21, - "end_line": 49, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "parent_location": [ - { - "end_col": 62, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/external/setMaxPerWallet/da17921a4e81c09e730800bbf23bfdbe5e9e6bfaedc59d80fbf62087fa43c27d.cairo" - }, - "parent_location": [ - { - "end_col": 21, - "end_line": 49, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "start_col": 6, - "start_line": 49 - }, - "While constructing the external wrapper for:" - ], - "start_col": 50, - "start_line": 1 - }, - "While expanding the reference 'retdata_size' in:" - ], - "start_col": 6, - "start_line": 49 - }, - "While constructing the external wrapper for:" - ], - "start_col": 20, - "start_line": 4 - } - }, - "3592": { - "accessible_scopes": [ - "__main__", - "__main__", - "__wrappers__", - "__wrappers__.setMaxPerWallet" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 16, - "end_line": 3, - "input_file": { - "filename": "autogen/starknet/external/setMaxPerWallet/e308d249203f5705a190f059b56eb14752af6a01867f138740d0ff96dacabd43.cairo" - }, - "parent_location": [ - { - "end_col": 21, - "end_line": 49, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "parent_location": [ - { - "end_col": 70, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/external/setMaxPerWallet/da17921a4e81c09e730800bbf23bfdbe5e9e6bfaedc59d80fbf62087fa43c27d.cairo" - }, - "parent_location": [ - { - "end_col": 21, - "end_line": 49, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "start_col": 6, - "start_line": 49 - }, - "While constructing the external wrapper for:" - ], - "start_col": 63, - "start_line": 1 - }, - "While expanding the reference 'retdata' in:" - ], - "start_col": 6, - "start_line": 49 - }, - "While constructing the external wrapper for:" - ], - "start_col": 9, - "start_line": 3 - } - }, - "3593": { - "accessible_scopes": [ - "__main__", - "__main__", - "__wrappers__", - "__wrappers__.setMaxPerWallet" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 72, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/external/setMaxPerWallet/da17921a4e81c09e730800bbf23bfdbe5e9e6bfaedc59d80fbf62087fa43c27d.cairo" - }, - "parent_location": [ - { - "end_col": 21, - "end_line": 49, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "start_col": 6, - "start_line": 49 - }, - "While constructing the external wrapper for:" - ], - "start_col": 1, - "start_line": 1 - } - }, - "3594": { - "accessible_scopes": [ - "__main__", - "__main__", - "__main__.getMaxPerWallet" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 40, - "end_line": 56, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "parent_location": [ - { - "end_col": 33, - "end_line": 13, - "input_file": { - "filename": "autogen/starknet/storage_var/Sheet_max_per_wallet/decl.cairo" - }, - "parent_location": [ - { - "end_col": 39, - "end_line": 59, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "start_col": 12, - "start_line": 59 - }, - "While trying to retrieve the implicit argument 'syscall_ptr' in:" - ], - "start_col": 15, - "start_line": 13 - }, - "While expanding the reference 'syscall_ptr' in:" - ], - "start_col": 22, - "start_line": 56 - } - }, - "3595": { - "accessible_scopes": [ - "__main__", - "__main__", - "__main__.getMaxPerWallet" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 68, - "end_line": 56, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "parent_location": [ - { - "end_col": 61, - "end_line": 13, - "input_file": { - "filename": "autogen/starknet/storage_var/Sheet_max_per_wallet/decl.cairo" - }, - "parent_location": [ - { - "end_col": 39, - "end_line": 59, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "start_col": 12, - "start_line": 59 - }, - "While trying to retrieve the implicit argument 'pedersen_ptr' in:" - ], - "start_col": 35, - "start_line": 13 - }, - "While expanding the reference 'pedersen_ptr' in:" - ], - "start_col": 42, - "start_line": 56 - } - }, - "3596": { - "accessible_scopes": [ - "__main__", - "__main__", - "__main__.getMaxPerWallet" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 85, - "end_line": 56, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "parent_location": [ - { - "end_col": 78, - "end_line": 13, - "input_file": { - "filename": "autogen/starknet/storage_var/Sheet_max_per_wallet/decl.cairo" - }, - "parent_location": [ - { - "end_col": 39, - "end_line": 59, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "start_col": 12, - "start_line": 59 - }, - "While trying to retrieve the implicit argument 'range_check_ptr' in:" - ], - "start_col": 63, - "start_line": 13 - }, - "While expanding the reference 'range_check_ptr' in:" - ], - "start_col": 70, - "start_line": 56 - } - }, - "3597": { - "accessible_scopes": [ - "__main__", - "__main__", - "__main__.getMaxPerWallet" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 39, - "end_line": 59, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "start_col": 12, - "start_line": 59 - } - }, - "3599": { - "accessible_scopes": [ - "__main__", - "__main__", - "__main__.getMaxPerWallet" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 40, - "end_line": 59, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "start_col": 5, - "start_line": 59 - } - }, - "3600": { - "accessible_scopes": [ - "__main__", - "__main__", - "__wrappers__", - "__wrappers__.getMaxPerWallet_encode_return" - ], - "flow_tracking_data": null, - "hints": [ - { - "location": { - "end_col": 38, - "end_line": 3, - "input_file": { - "filename": "autogen/starknet/external/return/getMaxPerWallet/d2ee4d3b1583586a9c7911079b8ad0e4c03e4dff239e0bd34696827d233e32ba.cairo" - }, - "parent_location": [ - { - "end_col": 21, - "end_line": 56, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "start_col": 6, - "start_line": 56 - }, - "While handling return value of" - ], - "start_col": 5, - "start_line": 3 - }, - "n_prefix_newlines": 0 - } - ], - "inst": { - "end_col": 18, - "end_line": 4, - "input_file": { - "filename": "autogen/starknet/external/return/getMaxPerWallet/d2ee4d3b1583586a9c7911079b8ad0e4c03e4dff239e0bd34696827d233e32ba.cairo" - }, - "parent_location": [ - { - "end_col": 21, - "end_line": 56, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "start_col": 6, - "start_line": 56 - }, - "While handling return value of" - ], - "start_col": 5, - "start_line": 4 - } - }, - "3602": { - "accessible_scopes": [ - "__main__", - "__main__", - "__wrappers__", - "__wrappers__.getMaxPerWallet_encode_return" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 45, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/arg_processor/e276a8bfa422a700d63781b00d1ac04d0496d9b70b1f051710b53e01fffe130c.cairo" - }, - "parent_location": [ - { - "end_col": 14, - "end_line": 57, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "start_col": 5, - "start_line": 57 - }, - "While handling return value 'max'" - ], - "start_col": 1, - "start_line": 1 - } - }, - "3603": { - "accessible_scopes": [ - "__main__", - "__main__", - "__wrappers__", - "__wrappers__.getMaxPerWallet_encode_return" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 48, - "end_line": 2, - "input_file": { - "filename": "autogen/starknet/arg_processor/e276a8bfa422a700d63781b00d1ac04d0496d9b70b1f051710b53e01fffe130c.cairo" - }, - "parent_location": [ - { - "end_col": 14, - "end_line": 57, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "parent_location": [ - { - "end_col": 36, - "end_line": 11, - "input_file": { - "filename": "autogen/starknet/external/return/getMaxPerWallet/d2ee4d3b1583586a9c7911079b8ad0e4c03e4dff239e0bd34696827d233e32ba.cairo" - }, - "parent_location": [ - { - "end_col": 21, - "end_line": 56, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "start_col": 6, - "start_line": 56 - }, - "While handling return value of" - ], - "start_col": 18, - "start_line": 11 - }, - "While expanding the reference '__return_value_ptr' in:" - ], - "start_col": 5, - "start_line": 57 - }, - "While handling return value 'max'" - ], - "start_col": 26, - "start_line": 2 - } - }, - "3605": { - "accessible_scopes": [ - "__main__", - "__main__", - "__wrappers__", - "__wrappers__.getMaxPerWallet_encode_return" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 75, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/external/return/getMaxPerWallet/d2ee4d3b1583586a9c7911079b8ad0e4c03e4dff239e0bd34696827d233e32ba.cairo" - }, - "parent_location": [ - { - "end_col": 21, - "end_line": 56, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "parent_location": [ - { - "end_col": 40, - "end_line": 10, - "input_file": { - "filename": "autogen/starknet/external/return/getMaxPerWallet/d2ee4d3b1583586a9c7911079b8ad0e4c03e4dff239e0bd34696827d233e32ba.cairo" - }, - "parent_location": [ - { - "end_col": 21, - "end_line": 56, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "start_col": 6, - "start_line": 56 - }, - "While handling return value of" - ], - "start_col": 25, - "start_line": 10 - }, - "While expanding the reference 'range_check_ptr' in:" - ], - "start_col": 6, - "start_line": 56 - }, - "While handling return value of" - ], - "start_col": 60, - "start_line": 1 - } - }, - "3606": { - "accessible_scopes": [ - "__main__", - "__main__", - "__wrappers__", - "__wrappers__.getMaxPerWallet_encode_return" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 63, - "end_line": 11, - "input_file": { - "filename": "autogen/starknet/external/return/getMaxPerWallet/d2ee4d3b1583586a9c7911079b8ad0e4c03e4dff239e0bd34696827d233e32ba.cairo" - }, - "parent_location": [ - { - "end_col": 21, - "end_line": 56, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "start_col": 6, - "start_line": 56 - }, - "While handling return value of" - ], - "start_col": 18, - "start_line": 11 - } - }, - "3607": { - "accessible_scopes": [ - "__main__", - "__main__", - "__wrappers__", - "__wrappers__.getMaxPerWallet_encode_return" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 35, - "end_line": 5, - "input_file": { - "filename": "autogen/starknet/external/return/getMaxPerWallet/d2ee4d3b1583586a9c7911079b8ad0e4c03e4dff239e0bd34696827d233e32ba.cairo" - }, - "parent_location": [ - { - "end_col": 21, - "end_line": 56, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "parent_location": [ - { - "end_col": 38, - "end_line": 12, - "input_file": { - "filename": "autogen/starknet/external/return/getMaxPerWallet/d2ee4d3b1583586a9c7911079b8ad0e4c03e4dff239e0bd34696827d233e32ba.cairo" - }, - "parent_location": [ - { - "end_col": 21, - "end_line": 56, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "start_col": 6, - "start_line": 56 - }, - "While handling return value of" - ], - "start_col": 14, - "start_line": 12 - }, - "While expanding the reference '__return_value_ptr_start' in:" - ], - "start_col": 6, - "start_line": 56 - }, - "While handling return value of" - ], - "start_col": 11, - "start_line": 5 - } - }, - "3608": { - "accessible_scopes": [ - "__main__", - "__main__", - "__wrappers__", - "__wrappers__.getMaxPerWallet_encode_return" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 40, - "end_line": 12, - "input_file": { - "filename": "autogen/starknet/external/return/getMaxPerWallet/d2ee4d3b1583586a9c7911079b8ad0e4c03e4dff239e0bd34696827d233e32ba.cairo" - }, - "parent_location": [ - { - "end_col": 21, - "end_line": 56, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "start_col": 6, - "start_line": 56 - }, - "While handling return value of" - ], - "start_col": 5, - "start_line": 9 - } - }, - "3609": { - "accessible_scopes": [ - "__main__", - "__main__", - "__wrappers__", - "__wrappers__.getMaxPerWallet" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 58, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/arg_processor/01cba52f8515996bb9d7070bde81ff39281d096d7024a558efcba6e1fd2402cf.cairo" - }, - "parent_location": [ - { - "end_col": 21, - "end_line": 56, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "start_col": 6, - "start_line": 56 - }, - "While handling calldata of" - ], - "start_col": 1, - "start_line": 1 - } - }, - "3610": { - "accessible_scopes": [ - "__main__", - "__main__", - "__wrappers__", - "__wrappers__.getMaxPerWallet" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 64, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/external/getMaxPerWallet/b2c52ca2d2a8fc8791a983086d8716c5eacd0c3d62934914d2286f84b98ff4cb.cairo" - }, - "parent_location": [ - { - "end_col": 40, - "end_line": 56, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "parent_location": [ - { - "end_col": 55, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/external/getMaxPerWallet/ceb6999ac1e0d9e3ce90cae3d8b161ded5f8cd083d4cb07d602d4d0dfb9793ea.cairo" - }, - "parent_location": [ - { - "end_col": 21, - "end_line": 56, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "start_col": 6, - "start_line": 56 - }, - "While constructing the external wrapper for:" - ], - "start_col": 44, - "start_line": 1 - }, - "While expanding the reference 'syscall_ptr' in:" - ], - "start_col": 22, - "start_line": 56 - }, - "While constructing the external wrapper for:" - ], - "start_col": 19, - "start_line": 1 - } - }, - "3611": { - "accessible_scopes": [ - "__main__", - "__main__", - "__wrappers__", - "__wrappers__.getMaxPerWallet" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 110, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/external/getMaxPerWallet/9684a85e93c782014ca14293edea4eb2502039a5a7b6538ecd39c56faaf12529.cairo" - }, - "parent_location": [ - { - "end_col": 68, - "end_line": 56, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "parent_location": [ - { - "end_col": 82, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/external/getMaxPerWallet/ceb6999ac1e0d9e3ce90cae3d8b161ded5f8cd083d4cb07d602d4d0dfb9793ea.cairo" - }, - "parent_location": [ - { - "end_col": 21, - "end_line": 56, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "start_col": 6, - "start_line": 56 - }, - "While constructing the external wrapper for:" - ], - "start_col": 70, - "start_line": 1 - }, - "While expanding the reference 'pedersen_ptr' in:" - ], - "start_col": 42, - "start_line": 56 - }, - "While constructing the external wrapper for:" - ], - "start_col": 20, - "start_line": 1 - } - }, - "3612": { - "accessible_scopes": [ - "__main__", - "__main__", - "__wrappers__", - "__wrappers__.getMaxPerWallet" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 67, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/external/getMaxPerWallet/741ea357d6336b0bed7bf0472425acd0311d543883b803388880e60a232040c7.cairo" - }, - "parent_location": [ - { - "end_col": 85, - "end_line": 56, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "parent_location": [ - { - "end_col": 115, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/external/getMaxPerWallet/ceb6999ac1e0d9e3ce90cae3d8b161ded5f8cd083d4cb07d602d4d0dfb9793ea.cairo" - }, - "parent_location": [ - { - "end_col": 21, - "end_line": 56, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "start_col": 6, - "start_line": 56 - }, - "While constructing the external wrapper for:" - ], - "start_col": 100, - "start_line": 1 - }, - "While expanding the reference 'range_check_ptr' in:" - ], - "start_col": 70, - "start_line": 56 - }, - "While constructing the external wrapper for:" - ], - "start_col": 23, - "start_line": 1 - } - }, - "3613": { - "accessible_scopes": [ - "__main__", - "__main__", - "__wrappers__", - "__wrappers__.getMaxPerWallet" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 21, - "end_line": 56, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "start_col": 6, - "start_line": 56 - } - }, - "3615": { - "accessible_scopes": [ - "__main__", - "__main__", - "__wrappers__", - "__wrappers__.getMaxPerWallet" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 115, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/external/getMaxPerWallet/ceb6999ac1e0d9e3ce90cae3d8b161ded5f8cd083d4cb07d602d4d0dfb9793ea.cairo" - }, - "parent_location": [ - { - "end_col": 21, - "end_line": 56, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "parent_location": [ - { - "end_col": 104, - "end_line": 2, - "input_file": { - "filename": "autogen/starknet/external/getMaxPerWallet/ceb6999ac1e0d9e3ce90cae3d8b161ded5f8cd083d4cb07d602d4d0dfb9793ea.cairo" - }, - "parent_location": [ - { - "end_col": 21, - "end_line": 56, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "start_col": 6, - "start_line": 56 - }, - "While constructing the external wrapper for:" - ], - "start_col": 89, - "start_line": 2 - }, - "While expanding the reference 'range_check_ptr' in:" - ], - "start_col": 6, - "start_line": 56 - }, - "While constructing the external wrapper for:" - ], - "start_col": 100, - "start_line": 1 - } - }, - "3616": { - "accessible_scopes": [ - "__main__", - "__main__", - "__wrappers__", - "__wrappers__.getMaxPerWallet" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 105, - "end_line": 2, - "input_file": { - "filename": "autogen/starknet/external/getMaxPerWallet/ceb6999ac1e0d9e3ce90cae3d8b161ded5f8cd083d4cb07d602d4d0dfb9793ea.cairo" - }, - "parent_location": [ - { - "end_col": 21, - "end_line": 56, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "start_col": 6, - "start_line": 56 - }, - "While constructing the external wrapper for:" - ], - "start_col": 48, - "start_line": 2 - } - }, - "3618": { - "accessible_scopes": [ - "__main__", - "__main__", - "__wrappers__", - "__wrappers__.getMaxPerWallet" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 55, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/external/getMaxPerWallet/ceb6999ac1e0d9e3ce90cae3d8b161ded5f8cd083d4cb07d602d4d0dfb9793ea.cairo" - }, - "parent_location": [ - { - "end_col": 21, - "end_line": 56, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "parent_location": [ - { - "end_col": 20, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/external/getMaxPerWallet/da17921a4e81c09e730800bbf23bfdbe5e9e6bfaedc59d80fbf62087fa43c27d.cairo" - }, - "parent_location": [ - { - "end_col": 21, - "end_line": 56, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "start_col": 6, - "start_line": 56 - }, - "While constructing the external wrapper for:" - ], - "start_col": 9, - "start_line": 1 - }, - "While expanding the reference 'syscall_ptr' in:" - ], - "start_col": 6, - "start_line": 56 - }, - "While constructing the external wrapper for:" - ], - "start_col": 44, - "start_line": 1 - } - }, - "3619": { - "accessible_scopes": [ - "__main__", - "__main__", - "__wrappers__", - "__wrappers__.getMaxPerWallet" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 82, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/external/getMaxPerWallet/ceb6999ac1e0d9e3ce90cae3d8b161ded5f8cd083d4cb07d602d4d0dfb9793ea.cairo" - }, - "parent_location": [ - { - "end_col": 21, - "end_line": 56, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "parent_location": [ - { - "end_col": 33, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/external/getMaxPerWallet/da17921a4e81c09e730800bbf23bfdbe5e9e6bfaedc59d80fbf62087fa43c27d.cairo" - }, - "parent_location": [ - { - "end_col": 21, - "end_line": 56, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "start_col": 6, - "start_line": 56 - }, - "While constructing the external wrapper for:" - ], - "start_col": 21, - "start_line": 1 - }, - "While expanding the reference 'pedersen_ptr' in:" - ], - "start_col": 6, - "start_line": 56 - }, - "While constructing the external wrapper for:" - ], - "start_col": 70, - "start_line": 1 - } - }, - "3620": { - "accessible_scopes": [ - "__main__", - "__main__", - "__wrappers__", - "__wrappers__.getMaxPerWallet" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 21, - "end_line": 2, - "input_file": { - "filename": "autogen/starknet/external/getMaxPerWallet/ceb6999ac1e0d9e3ce90cae3d8b161ded5f8cd083d4cb07d602d4d0dfb9793ea.cairo" - }, - "parent_location": [ - { - "end_col": 21, - "end_line": 56, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "parent_location": [ - { - "end_col": 49, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/external/getMaxPerWallet/da17921a4e81c09e730800bbf23bfdbe5e9e6bfaedc59d80fbf62087fa43c27d.cairo" - }, - "parent_location": [ - { - "end_col": 21, - "end_line": 56, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "start_col": 6, - "start_line": 56 - }, - "While constructing the external wrapper for:" - ], - "start_col": 34, - "start_line": 1 - }, - "While expanding the reference 'range_check_ptr' in:" - ], - "start_col": 6, - "start_line": 56 - }, - "While constructing the external wrapper for:" - ], - "start_col": 6, - "start_line": 2 - } - }, - "3621": { - "accessible_scopes": [ - "__main__", - "__main__", - "__wrappers__", - "__wrappers__.getMaxPerWallet" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 35, - "end_line": 2, - "input_file": { - "filename": "autogen/starknet/external/getMaxPerWallet/ceb6999ac1e0d9e3ce90cae3d8b161ded5f8cd083d4cb07d602d4d0dfb9793ea.cairo" - }, - "parent_location": [ - { - "end_col": 21, - "end_line": 56, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "parent_location": [ - { - "end_col": 62, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/external/getMaxPerWallet/da17921a4e81c09e730800bbf23bfdbe5e9e6bfaedc59d80fbf62087fa43c27d.cairo" - }, - "parent_location": [ - { - "end_col": 21, - "end_line": 56, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "start_col": 6, - "start_line": 56 - }, - "While constructing the external wrapper for:" - ], - "start_col": 50, - "start_line": 1 - }, - "While expanding the reference 'retdata_size' in:" - ], - "start_col": 6, - "start_line": 56 - }, - "While constructing the external wrapper for:" - ], - "start_col": 23, - "start_line": 2 - } - }, - "3622": { - "accessible_scopes": [ - "__main__", - "__main__", - "__wrappers__", - "__wrappers__.getMaxPerWallet" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 44, - "end_line": 2, - "input_file": { - "filename": "autogen/starknet/external/getMaxPerWallet/ceb6999ac1e0d9e3ce90cae3d8b161ded5f8cd083d4cb07d602d4d0dfb9793ea.cairo" - }, - "parent_location": [ - { - "end_col": 21, - "end_line": 56, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "parent_location": [ - { - "end_col": 70, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/external/getMaxPerWallet/da17921a4e81c09e730800bbf23bfdbe5e9e6bfaedc59d80fbf62087fa43c27d.cairo" - }, - "parent_location": [ - { - "end_col": 21, - "end_line": 56, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "start_col": 6, - "start_line": 56 - }, - "While constructing the external wrapper for:" - ], - "start_col": 63, - "start_line": 1 - }, - "While expanding the reference 'retdata' in:" - ], - "start_col": 6, - "start_line": 56 - }, - "While constructing the external wrapper for:" - ], - "start_col": 37, - "start_line": 2 - } - }, - "3623": { - "accessible_scopes": [ - "__main__", - "__main__", - "__wrappers__", - "__wrappers__.getMaxPerWallet" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 72, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/external/getMaxPerWallet/da17921a4e81c09e730800bbf23bfdbe5e9e6bfaedc59d80fbf62087fa43c27d.cairo" - }, - "parent_location": [ - { - "end_col": 21, - "end_line": 56, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "start_col": 6, - "start_line": 56 - }, - "While constructing the external wrapper for:" - ], - "start_col": 1, - "start_line": 1 - } - }, - "3624": { - "accessible_scopes": [ - "__main__", - "__main__", - "__main__.setNRow" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 32, - "end_line": 63, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "parent_location": [ - { - "end_col": 46, - "end_line": 40, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/access/ownable/library.cairo" - }, - "parent_location": [ - { - "end_col": 32, - "end_line": 64, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "start_col": 5, - "start_line": 64 - }, - "While trying to retrieve the implicit argument 'syscall_ptr' in:" - ], - "start_col": 28, - "start_line": 40 - }, - "While expanding the reference 'syscall_ptr' in:" - ], - "start_col": 14, - "start_line": 63 - } - }, - "3625": { - "accessible_scopes": [ - "__main__", - "__main__", - "__main__.setNRow" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 60, - "end_line": 63, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "parent_location": [ - { - "end_col": 74, - "end_line": 40, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/access/ownable/library.cairo" - }, - "parent_location": [ - { - "end_col": 32, - "end_line": 64, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "start_col": 5, - "start_line": 64 - }, - "While trying to retrieve the implicit argument 'pedersen_ptr' in:" - ], - "start_col": 48, - "start_line": 40 - }, - "While expanding the reference 'pedersen_ptr' in:" - ], - "start_col": 34, - "start_line": 63 - } - }, - "3626": { - "accessible_scopes": [ - "__main__", - "__main__", - "__main__.setNRow" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 77, - "end_line": 63, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "parent_location": [ - { - "end_col": 91, - "end_line": 40, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/access/ownable/library.cairo" - }, - "parent_location": [ - { - "end_col": 32, - "end_line": 64, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "start_col": 5, - "start_line": 64 - }, - "While trying to retrieve the implicit argument 'range_check_ptr' in:" - ], - "start_col": 76, - "start_line": 40 - }, - "While expanding the reference 'range_check_ptr' in:" - ], - "start_col": 62, - "start_line": 63 - } - }, - "3627": { - "accessible_scopes": [ - "__main__", - "__main__", - "__main__.setNRow" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 32, - "end_line": 64, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "start_col": 5, - "start_line": 64 - } - }, - "3629": { - "accessible_scopes": [ - "__main__", - "__main__", - "__main__.setNRow" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 90, - "end_line": 63, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "parent_location": [ - { - "end_col": 23, - "end_line": 65, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "start_col": 18, - "start_line": 65 - }, - "While expanding the reference 'n_row' in:" - ], - "start_col": 79, - "start_line": 63 - } - }, - "3630": { - "accessible_scopes": [ - "__main__", - "__main__", - "__main__.setNRow" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 24, - "end_line": 65, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "start_col": 5, - "start_line": 65 - } - }, - "3632": { - "accessible_scopes": [ - "__main__", - "__main__", - "__main__.setNRow" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 15, - "end_line": 66, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "start_col": 5, - "start_line": 66 - } - }, - "3633": { - "accessible_scopes": [ - "__main__", - "__main__", - "__wrappers__", - "__wrappers__.setNRow" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 40, - "end_line": 2, - "input_file": { - "filename": "autogen/starknet/arg_processor/ae93e6f6d7f86189a001cc0e74584f97c7f1eac8e0ab1a1d6be76deb397bb0c0.cairo" - }, - "parent_location": [ - { - "end_col": 90, - "end_line": 63, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "parent_location": [ - { - "end_col": 45, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/arg_processor/c31620b02d4d706f0542c989b2aadc01b0981d1f6a5933a8fe4937ace3d70d92.cairo" - }, - "parent_location": [ - { - "end_col": 13, - "end_line": 63, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "parent_location": [ - { - "end_col": 57, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/arg_processor/01cba52f8515996bb9d7070bde81ff39281d096d7024a558efcba6e1fd2402cf.cairo" - }, - "parent_location": [ - { - "end_col": 13, - "end_line": 63, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "start_col": 6, - "start_line": 63 - }, - "While handling calldata of" - ], - "start_col": 35, - "start_line": 1 - }, - "While expanding the reference '__calldata_actual_size' in:" - ], - "start_col": 6, - "start_line": 63 - }, - "While handling calldata of" - ], - "start_col": 31, - "start_line": 1 - }, - "While expanding the reference '__calldata_ptr' in:" - ], - "start_col": 79, - "start_line": 63 - }, - "While handling calldata argument 'n_row'" - ], - "start_col": 22, - "start_line": 2 - } - }, - "3635": { - "accessible_scopes": [ - "__main__", - "__main__", - "__wrappers__", - "__wrappers__.setNRow" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 58, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/arg_processor/01cba52f8515996bb9d7070bde81ff39281d096d7024a558efcba6e1fd2402cf.cairo" - }, - "parent_location": [ - { - "end_col": 13, - "end_line": 63, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "start_col": 6, - "start_line": 63 - }, - "While handling calldata of" - ], - "start_col": 1, - "start_line": 1 - } - }, - "3636": { - "accessible_scopes": [ - "__main__", - "__main__", - "__wrappers__", - "__wrappers__.setNRow" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 64, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/external/setNRow/b2c52ca2d2a8fc8791a983086d8716c5eacd0c3d62934914d2286f84b98ff4cb.cairo" - }, - "parent_location": [ - { - "end_col": 32, - "end_line": 63, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "parent_location": [ - { - "end_col": 55, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/external/setNRow/039da8e30c366ab0cf35f9186a0bed5471fd3233c0d8c5f9d81c668743f087b3.cairo" - }, - "parent_location": [ - { - "end_col": 13, - "end_line": 63, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "start_col": 6, - "start_line": 63 - }, - "While constructing the external wrapper for:" - ], - "start_col": 44, - "start_line": 1 - }, - "While expanding the reference 'syscall_ptr' in:" - ], - "start_col": 14, - "start_line": 63 - }, - "While constructing the external wrapper for:" - ], - "start_col": 19, - "start_line": 1 - } - }, - "3637": { - "accessible_scopes": [ - "__main__", - "__main__", - "__wrappers__", - "__wrappers__.setNRow" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 110, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/external/setNRow/9684a85e93c782014ca14293edea4eb2502039a5a7b6538ecd39c56faaf12529.cairo" - }, - "parent_location": [ - { - "end_col": 60, - "end_line": 63, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "parent_location": [ - { - "end_col": 82, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/external/setNRow/039da8e30c366ab0cf35f9186a0bed5471fd3233c0d8c5f9d81c668743f087b3.cairo" - }, - "parent_location": [ - { - "end_col": 13, - "end_line": 63, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "start_col": 6, - "start_line": 63 - }, - "While constructing the external wrapper for:" - ], - "start_col": 70, - "start_line": 1 - }, - "While expanding the reference 'pedersen_ptr' in:" - ], - "start_col": 34, - "start_line": 63 - }, - "While constructing the external wrapper for:" - ], - "start_col": 20, - "start_line": 1 - } - }, - "3638": { - "accessible_scopes": [ - "__main__", - "__main__", - "__wrappers__", - "__wrappers__.setNRow" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 67, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/external/setNRow/741ea357d6336b0bed7bf0472425acd0311d543883b803388880e60a232040c7.cairo" - }, - "parent_location": [ - { - "end_col": 77, - "end_line": 63, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "parent_location": [ - { - "end_col": 115, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/external/setNRow/039da8e30c366ab0cf35f9186a0bed5471fd3233c0d8c5f9d81c668743f087b3.cairo" - }, - "parent_location": [ - { - "end_col": 13, - "end_line": 63, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "start_col": 6, - "start_line": 63 - }, - "While constructing the external wrapper for:" - ], - "start_col": 100, - "start_line": 1 - }, - "While expanding the reference 'range_check_ptr' in:" - ], - "start_col": 62, - "start_line": 63 - }, - "While constructing the external wrapper for:" - ], - "start_col": 23, - "start_line": 1 - } - }, - "3639": { - "accessible_scopes": [ - "__main__", - "__main__", - "__wrappers__", - "__wrappers__.setNRow" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 44, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/arg_processor/ae93e6f6d7f86189a001cc0e74584f97c7f1eac8e0ab1a1d6be76deb397bb0c0.cairo" - }, - "parent_location": [ - { - "end_col": 90, - "end_line": 63, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "parent_location": [ - { - "end_col": 143, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/external/setNRow/039da8e30c366ab0cf35f9186a0bed5471fd3233c0d8c5f9d81c668743f087b3.cairo" - }, - "parent_location": [ - { - "end_col": 13, - "end_line": 63, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "start_col": 6, - "start_line": 63 - }, - "While constructing the external wrapper for:" - ], - "start_col": 123, - "start_line": 1 - }, - "While expanding the reference '__calldata_arg_n_row' in:" - ], - "start_col": 79, - "start_line": 63 - }, - "While handling calldata argument 'n_row'" - ], - "start_col": 28, - "start_line": 1 - } - }, - "3640": { - "accessible_scopes": [ - "__main__", - "__main__", - "__wrappers__", - "__wrappers__.setNRow" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 13, - "end_line": 63, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "start_col": 6, - "start_line": 63 - } - }, - "3642": { - "accessible_scopes": [ - "__main__", - "__main__", - "__wrappers__", - "__wrappers__.setNRow" - ], - "flow_tracking_data": null, - "hints": [ - { - "location": { - "end_col": 34, - "end_line": 2, - "input_file": { - "filename": "autogen/starknet/external/setNRow/039da8e30c366ab0cf35f9186a0bed5471fd3233c0d8c5f9d81c668743f087b3.cairo" - }, - "parent_location": [ - { - "end_col": 13, - "end_line": 63, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "start_col": 6, - "start_line": 63 - }, - "While constructing the external wrapper for:" - ], - "start_col": 1, - "start_line": 2 - }, - "n_prefix_newlines": 0 - } - ], - "inst": { - "end_col": 24, - "end_line": 3, - "input_file": { - "filename": "autogen/starknet/external/setNRow/039da8e30c366ab0cf35f9186a0bed5471fd3233c0d8c5f9d81c668743f087b3.cairo" - }, - "parent_location": [ - { - "end_col": 13, - "end_line": 63, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "start_col": 6, - "start_line": 63 - }, - "While constructing the external wrapper for:" - ], - "start_col": 1, - "start_line": 3 - } - }, - "3644": { - "accessible_scopes": [ - "__main__", - "__main__", - "__wrappers__", - "__wrappers__.setNRow" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 55, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/external/setNRow/039da8e30c366ab0cf35f9186a0bed5471fd3233c0d8c5f9d81c668743f087b3.cairo" - }, - "parent_location": [ - { - "end_col": 13, - "end_line": 63, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "parent_location": [ - { - "end_col": 20, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/external/setNRow/da17921a4e81c09e730800bbf23bfdbe5e9e6bfaedc59d80fbf62087fa43c27d.cairo" - }, - "parent_location": [ - { - "end_col": 13, - "end_line": 63, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "start_col": 6, - "start_line": 63 - }, - "While constructing the external wrapper for:" - ], - "start_col": 9, - "start_line": 1 - }, - "While expanding the reference 'syscall_ptr' in:" - ], - "start_col": 6, - "start_line": 63 - }, - "While constructing the external wrapper for:" - ], - "start_col": 44, - "start_line": 1 - } - }, - "3645": { - "accessible_scopes": [ - "__main__", - "__main__", - "__wrappers__", - "__wrappers__.setNRow" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 82, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/external/setNRow/039da8e30c366ab0cf35f9186a0bed5471fd3233c0d8c5f9d81c668743f087b3.cairo" - }, - "parent_location": [ - { - "end_col": 13, - "end_line": 63, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "parent_location": [ - { - "end_col": 33, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/external/setNRow/da17921a4e81c09e730800bbf23bfdbe5e9e6bfaedc59d80fbf62087fa43c27d.cairo" - }, - "parent_location": [ - { - "end_col": 13, - "end_line": 63, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "start_col": 6, - "start_line": 63 - }, - "While constructing the external wrapper for:" - ], - "start_col": 21, - "start_line": 1 - }, - "While expanding the reference 'pedersen_ptr' in:" - ], - "start_col": 6, - "start_line": 63 - }, - "While constructing the external wrapper for:" - ], - "start_col": 70, - "start_line": 1 - } - }, - "3646": { - "accessible_scopes": [ - "__main__", - "__main__", - "__wrappers__", - "__wrappers__.setNRow" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 115, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/external/setNRow/039da8e30c366ab0cf35f9186a0bed5471fd3233c0d8c5f9d81c668743f087b3.cairo" - }, - "parent_location": [ - { - "end_col": 13, - "end_line": 63, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "parent_location": [ - { - "end_col": 49, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/external/setNRow/da17921a4e81c09e730800bbf23bfdbe5e9e6bfaedc59d80fbf62087fa43c27d.cairo" - }, - "parent_location": [ - { - "end_col": 13, - "end_line": 63, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "start_col": 6, - "start_line": 63 - }, - "While constructing the external wrapper for:" - ], - "start_col": 34, - "start_line": 1 - }, - "While expanding the reference 'range_check_ptr' in:" - ], - "start_col": 6, - "start_line": 63 - }, - "While constructing the external wrapper for:" - ], - "start_col": 100, - "start_line": 1 - } - }, - "3647": { - "accessible_scopes": [ - "__main__", - "__main__", - "__wrappers__", - "__wrappers__.setNRow" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 21, - "end_line": 4, - "input_file": { - "filename": "autogen/starknet/external/setNRow/039da8e30c366ab0cf35f9186a0bed5471fd3233c0d8c5f9d81c668743f087b3.cairo" - }, - "parent_location": [ - { - "end_col": 13, - "end_line": 63, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "parent_location": [ - { - "end_col": 62, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/external/setNRow/da17921a4e81c09e730800bbf23bfdbe5e9e6bfaedc59d80fbf62087fa43c27d.cairo" - }, - "parent_location": [ - { - "end_col": 13, - "end_line": 63, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "start_col": 6, - "start_line": 63 - }, - "While constructing the external wrapper for:" - ], - "start_col": 50, - "start_line": 1 - }, - "While expanding the reference 'retdata_size' in:" - ], - "start_col": 6, - "start_line": 63 - }, - "While constructing the external wrapper for:" - ], - "start_col": 20, - "start_line": 4 - } - }, - "3649": { - "accessible_scopes": [ - "__main__", - "__main__", - "__wrappers__", - "__wrappers__.setNRow" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 16, - "end_line": 3, - "input_file": { - "filename": "autogen/starknet/external/setNRow/039da8e30c366ab0cf35f9186a0bed5471fd3233c0d8c5f9d81c668743f087b3.cairo" - }, - "parent_location": [ - { - "end_col": 13, - "end_line": 63, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "parent_location": [ - { - "end_col": 70, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/external/setNRow/da17921a4e81c09e730800bbf23bfdbe5e9e6bfaedc59d80fbf62087fa43c27d.cairo" - }, - "parent_location": [ - { - "end_col": 13, - "end_line": 63, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "start_col": 6, - "start_line": 63 - }, - "While constructing the external wrapper for:" - ], - "start_col": 63, - "start_line": 1 - }, - "While expanding the reference 'retdata' in:" - ], - "start_col": 6, - "start_line": 63 - }, - "While constructing the external wrapper for:" - ], - "start_col": 9, - "start_line": 3 - } - }, - "3650": { - "accessible_scopes": [ - "__main__", - "__main__", - "__wrappers__", - "__wrappers__.setNRow" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 72, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/external/setNRow/da17921a4e81c09e730800bbf23bfdbe5e9e6bfaedc59d80fbf62087fa43c27d.cairo" - }, - "parent_location": [ - { - "end_col": 13, - "end_line": 63, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "start_col": 6, - "start_line": 63 - }, - "While constructing the external wrapper for:" - ], - "start_col": 1, - "start_line": 1 - } - }, - "3651": { - "accessible_scopes": [ - "__main__", - "__main__", - "__main__.getNRow" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 32, - "end_line": 70, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "parent_location": [ - { - "end_col": 33, - "end_line": 13, - "input_file": { - "filename": "autogen/starknet/storage_var/_n_row/decl.cairo" - }, - "parent_location": [ - { - "end_col": 25, - "end_line": 71, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "start_col": 12, - "start_line": 71 - }, - "While trying to retrieve the implicit argument 'syscall_ptr' in:" - ], - "start_col": 15, - "start_line": 13 - }, - "While expanding the reference 'syscall_ptr' in:" - ], - "start_col": 14, - "start_line": 70 - } - }, - "3652": { - "accessible_scopes": [ - "__main__", - "__main__", - "__main__.getNRow" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 60, - "end_line": 70, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "parent_location": [ - { - "end_col": 61, - "end_line": 13, - "input_file": { - "filename": "autogen/starknet/storage_var/_n_row/decl.cairo" - }, - "parent_location": [ - { - "end_col": 25, - "end_line": 71, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "start_col": 12, - "start_line": 71 - }, - "While trying to retrieve the implicit argument 'pedersen_ptr' in:" - ], - "start_col": 35, - "start_line": 13 - }, - "While expanding the reference 'pedersen_ptr' in:" - ], - "start_col": 34, - "start_line": 70 - } - }, - "3653": { - "accessible_scopes": [ - "__main__", - "__main__", - "__main__.getNRow" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 77, - "end_line": 70, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "parent_location": [ - { - "end_col": 78, - "end_line": 13, - "input_file": { - "filename": "autogen/starknet/storage_var/_n_row/decl.cairo" - }, - "parent_location": [ - { - "end_col": 25, - "end_line": 71, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "start_col": 12, - "start_line": 71 - }, - "While trying to retrieve the implicit argument 'range_check_ptr' in:" - ], - "start_col": 63, - "start_line": 13 - }, - "While expanding the reference 'range_check_ptr' in:" - ], - "start_col": 62, - "start_line": 70 - } - }, - "3654": { - "accessible_scopes": [ - "__main__", - "__main__", - "__main__.getNRow" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 25, - "end_line": 71, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "start_col": 12, - "start_line": 71 - } - }, - "3656": { - "accessible_scopes": [ - "__main__", - "__main__", - "__main__.getNRow" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 26, - "end_line": 71, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "start_col": 5, - "start_line": 71 - } - }, - "3657": { - "accessible_scopes": [ - "__main__", - "__main__", - "__wrappers__", - "__wrappers__.getNRow_encode_return" - ], - "flow_tracking_data": null, - "hints": [ - { - "location": { - "end_col": 38, - "end_line": 3, - "input_file": { - "filename": "autogen/starknet/external/return/getNRow/eb44c31645a89509f2704ee875f3b8ebd83dcd8f7c527e17259323fc74e20827.cairo" - }, - "parent_location": [ - { - "end_col": 13, - "end_line": 70, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "start_col": 6, - "start_line": 70 - }, - "While handling return value of" - ], - "start_col": 5, - "start_line": 3 - }, - "n_prefix_newlines": 0 - } - ], - "inst": { - "end_col": 18, - "end_line": 4, - "input_file": { - "filename": "autogen/starknet/external/return/getNRow/eb44c31645a89509f2704ee875f3b8ebd83dcd8f7c527e17259323fc74e20827.cairo" - }, - "parent_location": [ - { - "end_col": 13, - "end_line": 70, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "start_col": 6, - "start_line": 70 - }, - "While handling return value of" - ], - "start_col": 5, - "start_line": 4 - } - }, - "3659": { - "accessible_scopes": [ - "__main__", - "__main__", - "__wrappers__", - "__wrappers__.getNRow_encode_return" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 47, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/arg_processor/1457c154551db44c95111acc1c07961afd1fa1086353a081a57220df823025a2.cairo" - }, - "parent_location": [ - { - "end_col": 96, - "end_line": 70, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "start_col": 85, - "start_line": 70 - }, - "While handling return value 'n_row'" - ], - "start_col": 1, - "start_line": 1 - } - }, - "3660": { - "accessible_scopes": [ - "__main__", - "__main__", - "__wrappers__", - "__wrappers__.getNRow_encode_return" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 48, - "end_line": 2, - "input_file": { - "filename": "autogen/starknet/arg_processor/1457c154551db44c95111acc1c07961afd1fa1086353a081a57220df823025a2.cairo" - }, - "parent_location": [ - { - "end_col": 96, - "end_line": 70, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "parent_location": [ - { - "end_col": 36, - "end_line": 11, - "input_file": { - "filename": "autogen/starknet/external/return/getNRow/eb44c31645a89509f2704ee875f3b8ebd83dcd8f7c527e17259323fc74e20827.cairo" - }, - "parent_location": [ - { - "end_col": 13, - "end_line": 70, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "start_col": 6, - "start_line": 70 - }, - "While handling return value of" - ], - "start_col": 18, - "start_line": 11 - }, - "While expanding the reference '__return_value_ptr' in:" - ], - "start_col": 85, - "start_line": 70 - }, - "While handling return value 'n_row'" - ], - "start_col": 26, - "start_line": 2 - } - }, - "3662": { - "accessible_scopes": [ - "__main__", - "__main__", - "__wrappers__", - "__wrappers__.getNRow_encode_return" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 69, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/external/return/getNRow/eb44c31645a89509f2704ee875f3b8ebd83dcd8f7c527e17259323fc74e20827.cairo" - }, - "parent_location": [ - { - "end_col": 13, - "end_line": 70, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "parent_location": [ - { - "end_col": 40, - "end_line": 10, - "input_file": { - "filename": "autogen/starknet/external/return/getNRow/eb44c31645a89509f2704ee875f3b8ebd83dcd8f7c527e17259323fc74e20827.cairo" - }, - "parent_location": [ - { - "end_col": 13, - "end_line": 70, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "start_col": 6, - "start_line": 70 - }, - "While handling return value of" - ], - "start_col": 25, - "start_line": 10 - }, - "While expanding the reference 'range_check_ptr' in:" - ], - "start_col": 6, - "start_line": 70 - }, - "While handling return value of" - ], - "start_col": 54, - "start_line": 1 - } - }, - "3663": { - "accessible_scopes": [ - "__main__", - "__main__", - "__wrappers__", - "__wrappers__.getNRow_encode_return" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 63, - "end_line": 11, - "input_file": { - "filename": "autogen/starknet/external/return/getNRow/eb44c31645a89509f2704ee875f3b8ebd83dcd8f7c527e17259323fc74e20827.cairo" - }, - "parent_location": [ - { - "end_col": 13, - "end_line": 70, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "start_col": 6, - "start_line": 70 - }, - "While handling return value of" - ], - "start_col": 18, - "start_line": 11 - } - }, - "3664": { - "accessible_scopes": [ - "__main__", - "__main__", - "__wrappers__", - "__wrappers__.getNRow_encode_return" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 35, - "end_line": 5, - "input_file": { - "filename": "autogen/starknet/external/return/getNRow/eb44c31645a89509f2704ee875f3b8ebd83dcd8f7c527e17259323fc74e20827.cairo" - }, - "parent_location": [ - { - "end_col": 13, - "end_line": 70, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "parent_location": [ - { - "end_col": 38, - "end_line": 12, - "input_file": { - "filename": "autogen/starknet/external/return/getNRow/eb44c31645a89509f2704ee875f3b8ebd83dcd8f7c527e17259323fc74e20827.cairo" - }, - "parent_location": [ - { - "end_col": 13, - "end_line": 70, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "start_col": 6, - "start_line": 70 - }, - "While handling return value of" - ], - "start_col": 14, - "start_line": 12 - }, - "While expanding the reference '__return_value_ptr_start' in:" - ], - "start_col": 6, - "start_line": 70 - }, - "While handling return value of" - ], - "start_col": 11, - "start_line": 5 - } - }, - "3665": { - "accessible_scopes": [ - "__main__", - "__main__", - "__wrappers__", - "__wrappers__.getNRow_encode_return" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 40, - "end_line": 12, - "input_file": { - "filename": "autogen/starknet/external/return/getNRow/eb44c31645a89509f2704ee875f3b8ebd83dcd8f7c527e17259323fc74e20827.cairo" - }, - "parent_location": [ - { - "end_col": 13, - "end_line": 70, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "start_col": 6, - "start_line": 70 - }, - "While handling return value of" - ], - "start_col": 5, - "start_line": 9 - } - }, - "3666": { - "accessible_scopes": [ - "__main__", - "__main__", - "__wrappers__", - "__wrappers__.getNRow" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 58, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/arg_processor/01cba52f8515996bb9d7070bde81ff39281d096d7024a558efcba6e1fd2402cf.cairo" - }, - "parent_location": [ - { - "end_col": 13, - "end_line": 70, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "start_col": 6, - "start_line": 70 - }, - "While handling calldata of" - ], - "start_col": 1, - "start_line": 1 - } - }, - "3667": { - "accessible_scopes": [ - "__main__", - "__main__", - "__wrappers__", - "__wrappers__.getNRow" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 64, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/external/getNRow/b2c52ca2d2a8fc8791a983086d8716c5eacd0c3d62934914d2286f84b98ff4cb.cairo" - }, - "parent_location": [ - { - "end_col": 32, - "end_line": 70, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "parent_location": [ - { - "end_col": 55, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/external/getNRow/a9a0b7c56f536deaaeff58255052c75aa43e29bc9e7cce54223f1ba64c55e736.cairo" - }, - "parent_location": [ - { - "end_col": 13, - "end_line": 70, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "start_col": 6, - "start_line": 70 - }, - "While constructing the external wrapper for:" - ], - "start_col": 44, - "start_line": 1 - }, - "While expanding the reference 'syscall_ptr' in:" - ], - "start_col": 14, - "start_line": 70 - }, - "While constructing the external wrapper for:" - ], - "start_col": 19, - "start_line": 1 - } - }, - "3668": { - "accessible_scopes": [ - "__main__", - "__main__", - "__wrappers__", - "__wrappers__.getNRow" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 110, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/external/getNRow/9684a85e93c782014ca14293edea4eb2502039a5a7b6538ecd39c56faaf12529.cairo" - }, - "parent_location": [ - { - "end_col": 60, - "end_line": 70, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "parent_location": [ - { - "end_col": 82, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/external/getNRow/a9a0b7c56f536deaaeff58255052c75aa43e29bc9e7cce54223f1ba64c55e736.cairo" - }, - "parent_location": [ - { - "end_col": 13, - "end_line": 70, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "start_col": 6, - "start_line": 70 - }, - "While constructing the external wrapper for:" - ], - "start_col": 70, - "start_line": 1 - }, - "While expanding the reference 'pedersen_ptr' in:" - ], - "start_col": 34, - "start_line": 70 - }, - "While constructing the external wrapper for:" - ], - "start_col": 20, - "start_line": 1 - } - }, - "3669": { - "accessible_scopes": [ - "__main__", - "__main__", - "__wrappers__", - "__wrappers__.getNRow" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 67, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/external/getNRow/741ea357d6336b0bed7bf0472425acd0311d543883b803388880e60a232040c7.cairo" - }, - "parent_location": [ - { - "end_col": 77, - "end_line": 70, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "parent_location": [ - { - "end_col": 115, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/external/getNRow/a9a0b7c56f536deaaeff58255052c75aa43e29bc9e7cce54223f1ba64c55e736.cairo" - }, - "parent_location": [ - { - "end_col": 13, - "end_line": 70, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "start_col": 6, - "start_line": 70 - }, - "While constructing the external wrapper for:" - ], - "start_col": 100, - "start_line": 1 - }, - "While expanding the reference 'range_check_ptr' in:" - ], - "start_col": 62, - "start_line": 70 - }, - "While constructing the external wrapper for:" - ], - "start_col": 23, - "start_line": 1 - } - }, - "3670": { - "accessible_scopes": [ - "__main__", - "__main__", - "__wrappers__", - "__wrappers__.getNRow" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 13, - "end_line": 70, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "start_col": 6, - "start_line": 70 - } - }, - "3672": { - "accessible_scopes": [ - "__main__", - "__main__", - "__wrappers__", - "__wrappers__.getNRow" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 115, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/external/getNRow/a9a0b7c56f536deaaeff58255052c75aa43e29bc9e7cce54223f1ba64c55e736.cairo" - }, - "parent_location": [ - { - "end_col": 13, - "end_line": 70, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "parent_location": [ - { - "end_col": 96, - "end_line": 2, - "input_file": { - "filename": "autogen/starknet/external/getNRow/a9a0b7c56f536deaaeff58255052c75aa43e29bc9e7cce54223f1ba64c55e736.cairo" - }, - "parent_location": [ - { - "end_col": 13, - "end_line": 70, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "start_col": 6, - "start_line": 70 - }, - "While constructing the external wrapper for:" - ], - "start_col": 81, - "start_line": 2 - }, - "While expanding the reference 'range_check_ptr' in:" - ], - "start_col": 6, - "start_line": 70 - }, - "While constructing the external wrapper for:" - ], - "start_col": 100, - "start_line": 1 - } - }, - "3673": { - "accessible_scopes": [ - "__main__", - "__main__", - "__wrappers__", - "__wrappers__.getNRow" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 97, - "end_line": 2, - "input_file": { - "filename": "autogen/starknet/external/getNRow/a9a0b7c56f536deaaeff58255052c75aa43e29bc9e7cce54223f1ba64c55e736.cairo" - }, - "parent_location": [ - { - "end_col": 13, - "end_line": 70, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "start_col": 6, - "start_line": 70 - }, - "While constructing the external wrapper for:" - ], - "start_col": 48, - "start_line": 2 - } - }, - "3675": { - "accessible_scopes": [ - "__main__", - "__main__", - "__wrappers__", - "__wrappers__.getNRow" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 55, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/external/getNRow/a9a0b7c56f536deaaeff58255052c75aa43e29bc9e7cce54223f1ba64c55e736.cairo" - }, - "parent_location": [ - { - "end_col": 13, - "end_line": 70, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "parent_location": [ - { - "end_col": 20, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/external/getNRow/da17921a4e81c09e730800bbf23bfdbe5e9e6bfaedc59d80fbf62087fa43c27d.cairo" - }, - "parent_location": [ - { - "end_col": 13, - "end_line": 70, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "start_col": 6, - "start_line": 70 - }, - "While constructing the external wrapper for:" - ], - "start_col": 9, - "start_line": 1 - }, - "While expanding the reference 'syscall_ptr' in:" - ], - "start_col": 6, - "start_line": 70 - }, - "While constructing the external wrapper for:" - ], - "start_col": 44, - "start_line": 1 - } - }, - "3676": { - "accessible_scopes": [ - "__main__", - "__main__", - "__wrappers__", - "__wrappers__.getNRow" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 82, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/external/getNRow/a9a0b7c56f536deaaeff58255052c75aa43e29bc9e7cce54223f1ba64c55e736.cairo" - }, - "parent_location": [ - { - "end_col": 13, - "end_line": 70, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "parent_location": [ - { - "end_col": 33, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/external/getNRow/da17921a4e81c09e730800bbf23bfdbe5e9e6bfaedc59d80fbf62087fa43c27d.cairo" - }, - "parent_location": [ - { - "end_col": 13, - "end_line": 70, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "start_col": 6, - "start_line": 70 - }, - "While constructing the external wrapper for:" - ], - "start_col": 21, - "start_line": 1 - }, - "While expanding the reference 'pedersen_ptr' in:" - ], - "start_col": 6, - "start_line": 70 - }, - "While constructing the external wrapper for:" - ], - "start_col": 70, - "start_line": 1 - } - }, - "3677": { - "accessible_scopes": [ - "__main__", - "__main__", - "__wrappers__", - "__wrappers__.getNRow" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 21, - "end_line": 2, - "input_file": { - "filename": "autogen/starknet/external/getNRow/a9a0b7c56f536deaaeff58255052c75aa43e29bc9e7cce54223f1ba64c55e736.cairo" - }, - "parent_location": [ - { - "end_col": 13, - "end_line": 70, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "parent_location": [ - { - "end_col": 49, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/external/getNRow/da17921a4e81c09e730800bbf23bfdbe5e9e6bfaedc59d80fbf62087fa43c27d.cairo" - }, - "parent_location": [ - { - "end_col": 13, - "end_line": 70, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "start_col": 6, - "start_line": 70 - }, - "While constructing the external wrapper for:" - ], - "start_col": 34, - "start_line": 1 - }, - "While expanding the reference 'range_check_ptr' in:" - ], - "start_col": 6, - "start_line": 70 - }, - "While constructing the external wrapper for:" - ], - "start_col": 6, - "start_line": 2 - } - }, - "3678": { - "accessible_scopes": [ - "__main__", - "__main__", - "__wrappers__", - "__wrappers__.getNRow" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 35, - "end_line": 2, - "input_file": { - "filename": "autogen/starknet/external/getNRow/a9a0b7c56f536deaaeff58255052c75aa43e29bc9e7cce54223f1ba64c55e736.cairo" - }, - "parent_location": [ - { - "end_col": 13, - "end_line": 70, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "parent_location": [ - { - "end_col": 62, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/external/getNRow/da17921a4e81c09e730800bbf23bfdbe5e9e6bfaedc59d80fbf62087fa43c27d.cairo" - }, - "parent_location": [ - { - "end_col": 13, - "end_line": 70, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "start_col": 6, - "start_line": 70 - }, - "While constructing the external wrapper for:" - ], - "start_col": 50, - "start_line": 1 - }, - "While expanding the reference 'retdata_size' in:" - ], - "start_col": 6, - "start_line": 70 - }, - "While constructing the external wrapper for:" - ], - "start_col": 23, - "start_line": 2 - } - }, - "3679": { - "accessible_scopes": [ - "__main__", - "__main__", - "__wrappers__", - "__wrappers__.getNRow" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 44, - "end_line": 2, - "input_file": { - "filename": "autogen/starknet/external/getNRow/a9a0b7c56f536deaaeff58255052c75aa43e29bc9e7cce54223f1ba64c55e736.cairo" - }, - "parent_location": [ - { - "end_col": 13, - "end_line": 70, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "parent_location": [ - { - "end_col": 70, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/external/getNRow/da17921a4e81c09e730800bbf23bfdbe5e9e6bfaedc59d80fbf62087fa43c27d.cairo" - }, - "parent_location": [ - { - "end_col": 13, - "end_line": 70, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "start_col": 6, - "start_line": 70 - }, - "While constructing the external wrapper for:" - ], - "start_col": 63, - "start_line": 1 - }, - "While expanding the reference 'retdata' in:" - ], - "start_col": 6, - "start_line": 70 - }, - "While constructing the external wrapper for:" - ], - "start_col": 37, - "start_line": 2 - } - }, - "3680": { - "accessible_scopes": [ - "__main__", - "__main__", - "__wrappers__", - "__wrappers__.getNRow" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 72, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/external/getNRow/da17921a4e81c09e730800bbf23bfdbe5e9e6bfaedc59d80fbf62087fa43c27d.cairo" - }, - "parent_location": [ - { - "end_col": 13, - "end_line": 70, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "start_col": 6, - "start_line": 70 - }, - "While constructing the external wrapper for:" - ], - "start_col": 1, - "start_line": 1 - } - }, - "3681": { - "accessible_scopes": [ - "__main__", - "__main__", - "__main__.setCellRenderer" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 40, - "end_line": 75, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "parent_location": [ - { - "end_col": 46, - "end_line": 40, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/access/ownable/library.cairo" - }, - "parent_location": [ - { - "end_col": 32, - "end_line": 78, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "start_col": 5, - "start_line": 78 - }, - "While trying to retrieve the implicit argument 'syscall_ptr' in:" - ], - "start_col": 28, - "start_line": 40 - }, - "While expanding the reference 'syscall_ptr' in:" - ], - "start_col": 22, - "start_line": 75 - } - }, - "3682": { - "accessible_scopes": [ - "__main__", - "__main__", - "__main__.setCellRenderer" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 68, - "end_line": 75, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "parent_location": [ - { - "end_col": 74, - "end_line": 40, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/access/ownable/library.cairo" - }, - "parent_location": [ - { - "end_col": 32, - "end_line": 78, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "start_col": 5, - "start_line": 78 - }, - "While trying to retrieve the implicit argument 'pedersen_ptr' in:" - ], - "start_col": 48, - "start_line": 40 - }, - "While expanding the reference 'pedersen_ptr' in:" - ], - "start_col": 42, - "start_line": 75 - } - }, - "3683": { - "accessible_scopes": [ - "__main__", - "__main__", - "__main__.setCellRenderer" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 85, - "end_line": 75, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "parent_location": [ - { - "end_col": 91, - "end_line": 40, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/access/ownable/library.cairo" - }, - "parent_location": [ - { - "end_col": 32, - "end_line": 78, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "start_col": 5, - "start_line": 78 - }, - "While trying to retrieve the implicit argument 'range_check_ptr' in:" - ], - "start_col": 76, - "start_line": 40 - }, - "While expanding the reference 'range_check_ptr' in:" - ], - "start_col": 70, - "start_line": 75 - } - }, - "3684": { - "accessible_scopes": [ - "__main__", - "__main__", - "__main__.setCellRenderer" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 32, - "end_line": 78, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "start_col": 5, - "start_line": 78 - } - }, - "3686": { - "accessible_scopes": [ - "__main__", - "__main__", - "__main__.setCellRenderer" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 18, - "end_line": 76, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "parent_location": [ - { - "end_col": 38, - "end_line": 79, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "start_col": 31, - "start_line": 79 - }, - "While expanding the reference 'address' in:" - ], - "start_col": 5, - "start_line": 76 - } - }, - "3687": { - "accessible_scopes": [ - "__main__", - "__main__", - "__main__.setCellRenderer" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 39, - "end_line": 79, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "start_col": 5, - "start_line": 79 - } - }, - "3689": { - "accessible_scopes": [ - "__main__", - "__main__", - "__main__.setCellRenderer" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 15, - "end_line": 80, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "start_col": 5, - "start_line": 80 - } - }, - "3690": { - "accessible_scopes": [ - "__main__", - "__main__", - "__wrappers__", - "__wrappers__.setCellRenderer" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 40, - "end_line": 2, - "input_file": { - "filename": "autogen/starknet/arg_processor/d7daa544e246461a936b5ac82f5344c08a96429550ee8026ea086c8d8ed93006.cairo" - }, - "parent_location": [ - { - "end_col": 18, - "end_line": 76, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "parent_location": [ - { - "end_col": 45, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/arg_processor/c31620b02d4d706f0542c989b2aadc01b0981d1f6a5933a8fe4937ace3d70d92.cairo" - }, - "parent_location": [ - { - "end_col": 21, - "end_line": 75, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "parent_location": [ - { - "end_col": 57, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/arg_processor/01cba52f8515996bb9d7070bde81ff39281d096d7024a558efcba6e1fd2402cf.cairo" - }, - "parent_location": [ - { - "end_col": 21, - "end_line": 75, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "start_col": 6, - "start_line": 75 - }, - "While handling calldata of" - ], - "start_col": 35, - "start_line": 1 - }, - "While expanding the reference '__calldata_actual_size' in:" - ], - "start_col": 6, - "start_line": 75 - }, - "While handling calldata of" - ], - "start_col": 31, - "start_line": 1 - }, - "While expanding the reference '__calldata_ptr' in:" - ], - "start_col": 5, - "start_line": 76 - }, - "While handling calldata argument 'address'" - ], - "start_col": 22, - "start_line": 2 - } - }, - "3692": { - "accessible_scopes": [ - "__main__", - "__main__", - "__wrappers__", - "__wrappers__.setCellRenderer" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 58, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/arg_processor/01cba52f8515996bb9d7070bde81ff39281d096d7024a558efcba6e1fd2402cf.cairo" - }, - "parent_location": [ - { - "end_col": 21, - "end_line": 75, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "start_col": 6, - "start_line": 75 - }, - "While handling calldata of" - ], - "start_col": 1, - "start_line": 1 - } - }, - "3693": { - "accessible_scopes": [ - "__main__", - "__main__", - "__wrappers__", - "__wrappers__.setCellRenderer" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 64, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/external/setCellRenderer/b2c52ca2d2a8fc8791a983086d8716c5eacd0c3d62934914d2286f84b98ff4cb.cairo" - }, - "parent_location": [ - { - "end_col": 40, - "end_line": 75, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "parent_location": [ - { - "end_col": 55, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/external/setCellRenderer/0659a254e8c454b3c657c5278489e4243b32c053e1167867ca4c539b977e7a36.cairo" - }, - "parent_location": [ - { - "end_col": 21, - "end_line": 75, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "start_col": 6, - "start_line": 75 - }, - "While constructing the external wrapper for:" - ], - "start_col": 44, - "start_line": 1 - }, - "While expanding the reference 'syscall_ptr' in:" - ], - "start_col": 22, - "start_line": 75 - }, - "While constructing the external wrapper for:" - ], - "start_col": 19, - "start_line": 1 - } - }, - "3694": { - "accessible_scopes": [ - "__main__", - "__main__", - "__wrappers__", - "__wrappers__.setCellRenderer" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 110, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/external/setCellRenderer/9684a85e93c782014ca14293edea4eb2502039a5a7b6538ecd39c56faaf12529.cairo" - }, - "parent_location": [ - { - "end_col": 68, - "end_line": 75, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "parent_location": [ - { - "end_col": 82, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/external/setCellRenderer/0659a254e8c454b3c657c5278489e4243b32c053e1167867ca4c539b977e7a36.cairo" - }, - "parent_location": [ - { - "end_col": 21, - "end_line": 75, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "start_col": 6, - "start_line": 75 - }, - "While constructing the external wrapper for:" - ], - "start_col": 70, - "start_line": 1 - }, - "While expanding the reference 'pedersen_ptr' in:" - ], - "start_col": 42, - "start_line": 75 - }, - "While constructing the external wrapper for:" - ], - "start_col": 20, - "start_line": 1 - } - }, - "3695": { - "accessible_scopes": [ - "__main__", - "__main__", - "__wrappers__", - "__wrappers__.setCellRenderer" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 67, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/external/setCellRenderer/741ea357d6336b0bed7bf0472425acd0311d543883b803388880e60a232040c7.cairo" - }, - "parent_location": [ - { - "end_col": 85, - "end_line": 75, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "parent_location": [ - { - "end_col": 115, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/external/setCellRenderer/0659a254e8c454b3c657c5278489e4243b32c053e1167867ca4c539b977e7a36.cairo" - }, - "parent_location": [ - { - "end_col": 21, - "end_line": 75, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "start_col": 6, - "start_line": 75 - }, - "While constructing the external wrapper for:" - ], - "start_col": 100, - "start_line": 1 - }, - "While expanding the reference 'range_check_ptr' in:" - ], - "start_col": 70, - "start_line": 75 - }, - "While constructing the external wrapper for:" - ], - "start_col": 23, - "start_line": 1 - } - }, - "3696": { - "accessible_scopes": [ - "__main__", - "__main__", - "__wrappers__", - "__wrappers__.setCellRenderer" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 46, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/arg_processor/d7daa544e246461a936b5ac82f5344c08a96429550ee8026ea086c8d8ed93006.cairo" - }, - "parent_location": [ - { - "end_col": 18, - "end_line": 76, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "parent_location": [ - { - "end_col": 147, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/external/setCellRenderer/0659a254e8c454b3c657c5278489e4243b32c053e1167867ca4c539b977e7a36.cairo" - }, - "parent_location": [ - { - "end_col": 21, - "end_line": 75, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "start_col": 6, - "start_line": 75 - }, - "While constructing the external wrapper for:" - ], - "start_col": 125, - "start_line": 1 - }, - "While expanding the reference '__calldata_arg_address' in:" - ], - "start_col": 5, - "start_line": 76 - }, - "While handling calldata argument 'address'" - ], - "start_col": 30, - "start_line": 1 - } - }, - "3697": { - "accessible_scopes": [ - "__main__", - "__main__", - "__wrappers__", - "__wrappers__.setCellRenderer" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 21, - "end_line": 75, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "start_col": 6, - "start_line": 75 - } - }, - "3699": { - "accessible_scopes": [ - "__main__", - "__main__", - "__wrappers__", - "__wrappers__.setCellRenderer" - ], - "flow_tracking_data": null, - "hints": [ - { - "location": { - "end_col": 34, - "end_line": 2, - "input_file": { - "filename": "autogen/starknet/external/setCellRenderer/0659a254e8c454b3c657c5278489e4243b32c053e1167867ca4c539b977e7a36.cairo" - }, - "parent_location": [ - { - "end_col": 21, - "end_line": 75, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "start_col": 6, - "start_line": 75 - }, - "While constructing the external wrapper for:" - ], - "start_col": 1, - "start_line": 2 - }, - "n_prefix_newlines": 0 - } - ], - "inst": { - "end_col": 24, - "end_line": 3, - "input_file": { - "filename": "autogen/starknet/external/setCellRenderer/0659a254e8c454b3c657c5278489e4243b32c053e1167867ca4c539b977e7a36.cairo" - }, - "parent_location": [ - { - "end_col": 21, - "end_line": 75, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "start_col": 6, - "start_line": 75 - }, - "While constructing the external wrapper for:" - ], - "start_col": 1, - "start_line": 3 - } - }, - "3701": { - "accessible_scopes": [ - "__main__", - "__main__", - "__wrappers__", - "__wrappers__.setCellRenderer" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 55, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/external/setCellRenderer/0659a254e8c454b3c657c5278489e4243b32c053e1167867ca4c539b977e7a36.cairo" - }, - "parent_location": [ - { - "end_col": 21, - "end_line": 75, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "parent_location": [ - { - "end_col": 20, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/external/setCellRenderer/da17921a4e81c09e730800bbf23bfdbe5e9e6bfaedc59d80fbf62087fa43c27d.cairo" - }, - "parent_location": [ - { - "end_col": 21, - "end_line": 75, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "start_col": 6, - "start_line": 75 - }, - "While constructing the external wrapper for:" - ], - "start_col": 9, - "start_line": 1 - }, - "While expanding the reference 'syscall_ptr' in:" - ], - "start_col": 6, - "start_line": 75 - }, - "While constructing the external wrapper for:" - ], - "start_col": 44, - "start_line": 1 - } - }, - "3702": { - "accessible_scopes": [ - "__main__", - "__main__", - "__wrappers__", - "__wrappers__.setCellRenderer" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 82, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/external/setCellRenderer/0659a254e8c454b3c657c5278489e4243b32c053e1167867ca4c539b977e7a36.cairo" - }, - "parent_location": [ - { - "end_col": 21, - "end_line": 75, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "parent_location": [ - { - "end_col": 33, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/external/setCellRenderer/da17921a4e81c09e730800bbf23bfdbe5e9e6bfaedc59d80fbf62087fa43c27d.cairo" - }, - "parent_location": [ - { - "end_col": 21, - "end_line": 75, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "start_col": 6, - "start_line": 75 - }, - "While constructing the external wrapper for:" - ], - "start_col": 21, - "start_line": 1 - }, - "While expanding the reference 'pedersen_ptr' in:" - ], - "start_col": 6, - "start_line": 75 - }, - "While constructing the external wrapper for:" - ], - "start_col": 70, - "start_line": 1 - } - }, - "3703": { - "accessible_scopes": [ - "__main__", - "__main__", - "__wrappers__", - "__wrappers__.setCellRenderer" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 115, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/external/setCellRenderer/0659a254e8c454b3c657c5278489e4243b32c053e1167867ca4c539b977e7a36.cairo" - }, - "parent_location": [ - { - "end_col": 21, - "end_line": 75, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "parent_location": [ - { - "end_col": 49, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/external/setCellRenderer/da17921a4e81c09e730800bbf23bfdbe5e9e6bfaedc59d80fbf62087fa43c27d.cairo" - }, - "parent_location": [ - { - "end_col": 21, - "end_line": 75, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "start_col": 6, - "start_line": 75 - }, - "While constructing the external wrapper for:" - ], - "start_col": 34, - "start_line": 1 - }, - "While expanding the reference 'range_check_ptr' in:" - ], - "start_col": 6, - "start_line": 75 - }, - "While constructing the external wrapper for:" - ], - "start_col": 100, - "start_line": 1 - } - }, - "3704": { - "accessible_scopes": [ - "__main__", - "__main__", - "__wrappers__", - "__wrappers__.setCellRenderer" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 21, - "end_line": 4, - "input_file": { - "filename": "autogen/starknet/external/setCellRenderer/0659a254e8c454b3c657c5278489e4243b32c053e1167867ca4c539b977e7a36.cairo" - }, - "parent_location": [ - { - "end_col": 21, - "end_line": 75, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "parent_location": [ - { - "end_col": 62, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/external/setCellRenderer/da17921a4e81c09e730800bbf23bfdbe5e9e6bfaedc59d80fbf62087fa43c27d.cairo" - }, - "parent_location": [ - { - "end_col": 21, - "end_line": 75, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "start_col": 6, - "start_line": 75 - }, - "While constructing the external wrapper for:" - ], - "start_col": 50, - "start_line": 1 - }, - "While expanding the reference 'retdata_size' in:" - ], - "start_col": 6, - "start_line": 75 - }, - "While constructing the external wrapper for:" - ], - "start_col": 20, - "start_line": 4 - } - }, - "3706": { - "accessible_scopes": [ - "__main__", - "__main__", - "__wrappers__", - "__wrappers__.setCellRenderer" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 16, - "end_line": 3, - "input_file": { - "filename": "autogen/starknet/external/setCellRenderer/0659a254e8c454b3c657c5278489e4243b32c053e1167867ca4c539b977e7a36.cairo" - }, - "parent_location": [ - { - "end_col": 21, - "end_line": 75, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "parent_location": [ - { - "end_col": 70, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/external/setCellRenderer/da17921a4e81c09e730800bbf23bfdbe5e9e6bfaedc59d80fbf62087fa43c27d.cairo" - }, - "parent_location": [ - { - "end_col": 21, - "end_line": 75, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "start_col": 6, - "start_line": 75 - }, - "While constructing the external wrapper for:" - ], - "start_col": 63, - "start_line": 1 - }, - "While expanding the reference 'retdata' in:" - ], - "start_col": 6, - "start_line": 75 - }, - "While constructing the external wrapper for:" - ], - "start_col": 9, - "start_line": 3 - } - }, - "3707": { - "accessible_scopes": [ - "__main__", - "__main__", - "__wrappers__", - "__wrappers__.setCellRenderer" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 72, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/external/setCellRenderer/da17921a4e81c09e730800bbf23bfdbe5e9e6bfaedc59d80fbf62087fa43c27d.cairo" - }, - "parent_location": [ - { - "end_col": 21, - "end_line": 75, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "start_col": 6, - "start_line": 75 - }, - "While constructing the external wrapper for:" - ], - "start_col": 1, - "start_line": 1 - } - }, - "3708": { - "accessible_scopes": [ - "__main__", - "__main__", - "__main__.getCellRenderer" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 40, - "end_line": 84, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "parent_location": [ - { - "end_col": 33, - "end_line": 13, - "input_file": { - "filename": "autogen/starknet/storage_var/Sheet_cell_renderer/decl.cairo" - }, - "parent_location": [ - { - "end_col": 38, - "end_line": 87, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "start_col": 12, - "start_line": 87 - }, - "While trying to retrieve the implicit argument 'syscall_ptr' in:" - ], - "start_col": 15, - "start_line": 13 - }, - "While expanding the reference 'syscall_ptr' in:" - ], - "start_col": 22, - "start_line": 84 - } - }, - "3709": { - "accessible_scopes": [ - "__main__", - "__main__", - "__main__.getCellRenderer" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 68, - "end_line": 84, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "parent_location": [ - { - "end_col": 61, - "end_line": 13, - "input_file": { - "filename": "autogen/starknet/storage_var/Sheet_cell_renderer/decl.cairo" - }, - "parent_location": [ - { - "end_col": 38, - "end_line": 87, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "start_col": 12, - "start_line": 87 - }, - "While trying to retrieve the implicit argument 'pedersen_ptr' in:" - ], - "start_col": 35, - "start_line": 13 - }, - "While expanding the reference 'pedersen_ptr' in:" - ], - "start_col": 42, - "start_line": 84 - } - }, - "3710": { - "accessible_scopes": [ - "__main__", - "__main__", - "__main__.getCellRenderer" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 85, - "end_line": 84, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "parent_location": [ - { - "end_col": 78, - "end_line": 13, - "input_file": { - "filename": "autogen/starknet/storage_var/Sheet_cell_renderer/decl.cairo" - }, - "parent_location": [ - { - "end_col": 38, - "end_line": 87, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "start_col": 12, - "start_line": 87 - }, - "While trying to retrieve the implicit argument 'range_check_ptr' in:" - ], - "start_col": 63, - "start_line": 13 - }, - "While expanding the reference 'range_check_ptr' in:" - ], - "start_col": 70, - "start_line": 84 - } - }, - "3711": { - "accessible_scopes": [ - "__main__", - "__main__", - "__main__.getCellRenderer" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 38, - "end_line": 87, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "start_col": 12, - "start_line": 87 - } - }, - "3713": { - "accessible_scopes": [ - "__main__", - "__main__", - "__main__.getCellRenderer" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 39, - "end_line": 87, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "start_col": 5, - "start_line": 87 - } - }, - "3714": { - "accessible_scopes": [ - "__main__", - "__main__", - "__wrappers__", - "__wrappers__.getCellRenderer_encode_return" - ], - "flow_tracking_data": null, - "hints": [ - { - "location": { - "end_col": 38, - "end_line": 3, - "input_file": { - "filename": "autogen/starknet/external/return/getCellRenderer/32ed84cc62db75f1e784f477fb8a01720540a0a2f04e442b873ca26adef8a14d.cairo" - }, - "parent_location": [ - { - "end_col": 21, - "end_line": 84, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "start_col": 6, - "start_line": 84 - }, - "While handling return value of" - ], - "start_col": 5, - "start_line": 3 - }, - "n_prefix_newlines": 0 - } - ], - "inst": { - "end_col": 18, - "end_line": 4, - "input_file": { - "filename": "autogen/starknet/external/return/getCellRenderer/32ed84cc62db75f1e784f477fb8a01720540a0a2f04e442b873ca26adef8a14d.cairo" - }, - "parent_location": [ - { - "end_col": 21, - "end_line": 84, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "start_col": 6, - "start_line": 84 - }, - "While handling return value of" - ], - "start_col": 5, - "start_line": 4 - } - }, - "3716": { - "accessible_scopes": [ - "__main__", - "__main__", - "__wrappers__", - "__wrappers__.getCellRenderer_encode_return" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 49, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/arg_processor/10f4ffaf96982a2fff2ff72dc2d3b1a8878257148aab4051a8f2ef7f16687f01.cairo" - }, - "parent_location": [ - { - "end_col": 18, - "end_line": 85, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "start_col": 5, - "start_line": 85 - }, - "While handling return value 'address'" - ], - "start_col": 1, - "start_line": 1 - } - }, - "3717": { - "accessible_scopes": [ - "__main__", - "__main__", - "__wrappers__", - "__wrappers__.getCellRenderer_encode_return" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 48, - "end_line": 2, - "input_file": { - "filename": "autogen/starknet/arg_processor/10f4ffaf96982a2fff2ff72dc2d3b1a8878257148aab4051a8f2ef7f16687f01.cairo" - }, - "parent_location": [ - { - "end_col": 18, - "end_line": 85, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "parent_location": [ - { - "end_col": 36, - "end_line": 11, - "input_file": { - "filename": "autogen/starknet/external/return/getCellRenderer/32ed84cc62db75f1e784f477fb8a01720540a0a2f04e442b873ca26adef8a14d.cairo" - }, - "parent_location": [ - { - "end_col": 21, - "end_line": 84, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "start_col": 6, - "start_line": 84 - }, - "While handling return value of" - ], - "start_col": 18, - "start_line": 11 - }, - "While expanding the reference '__return_value_ptr' in:" - ], - "start_col": 5, - "start_line": 85 - }, - "While handling return value 'address'" - ], - "start_col": 26, - "start_line": 2 - } - }, - "3719": { - "accessible_scopes": [ - "__main__", - "__main__", - "__wrappers__", - "__wrappers__.getCellRenderer_encode_return" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 79, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/external/return/getCellRenderer/32ed84cc62db75f1e784f477fb8a01720540a0a2f04e442b873ca26adef8a14d.cairo" - }, - "parent_location": [ - { - "end_col": 21, - "end_line": 84, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "parent_location": [ - { - "end_col": 40, - "end_line": 10, - "input_file": { - "filename": "autogen/starknet/external/return/getCellRenderer/32ed84cc62db75f1e784f477fb8a01720540a0a2f04e442b873ca26adef8a14d.cairo" - }, - "parent_location": [ - { - "end_col": 21, - "end_line": 84, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "start_col": 6, - "start_line": 84 - }, - "While handling return value of" - ], - "start_col": 25, - "start_line": 10 - }, - "While expanding the reference 'range_check_ptr' in:" - ], - "start_col": 6, - "start_line": 84 - }, - "While handling return value of" - ], - "start_col": 64, - "start_line": 1 - } - }, - "3720": { - "accessible_scopes": [ - "__main__", - "__main__", - "__wrappers__", - "__wrappers__.getCellRenderer_encode_return" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 63, - "end_line": 11, - "input_file": { - "filename": "autogen/starknet/external/return/getCellRenderer/32ed84cc62db75f1e784f477fb8a01720540a0a2f04e442b873ca26adef8a14d.cairo" - }, - "parent_location": [ - { - "end_col": 21, - "end_line": 84, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "start_col": 6, - "start_line": 84 - }, - "While handling return value of" - ], - "start_col": 18, - "start_line": 11 - } - }, - "3721": { - "accessible_scopes": [ - "__main__", - "__main__", - "__wrappers__", - "__wrappers__.getCellRenderer_encode_return" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 35, - "end_line": 5, - "input_file": { - "filename": "autogen/starknet/external/return/getCellRenderer/32ed84cc62db75f1e784f477fb8a01720540a0a2f04e442b873ca26adef8a14d.cairo" - }, - "parent_location": [ - { - "end_col": 21, - "end_line": 84, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "parent_location": [ - { - "end_col": 38, - "end_line": 12, - "input_file": { - "filename": "autogen/starknet/external/return/getCellRenderer/32ed84cc62db75f1e784f477fb8a01720540a0a2f04e442b873ca26adef8a14d.cairo" - }, - "parent_location": [ - { - "end_col": 21, - "end_line": 84, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "start_col": 6, - "start_line": 84 - }, - "While handling return value of" - ], - "start_col": 14, - "start_line": 12 - }, - "While expanding the reference '__return_value_ptr_start' in:" - ], - "start_col": 6, - "start_line": 84 - }, - "While handling return value of" - ], - "start_col": 11, - "start_line": 5 - } - }, - "3722": { - "accessible_scopes": [ - "__main__", - "__main__", - "__wrappers__", - "__wrappers__.getCellRenderer_encode_return" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 40, - "end_line": 12, - "input_file": { - "filename": "autogen/starknet/external/return/getCellRenderer/32ed84cc62db75f1e784f477fb8a01720540a0a2f04e442b873ca26adef8a14d.cairo" - }, - "parent_location": [ - { - "end_col": 21, - "end_line": 84, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "start_col": 6, - "start_line": 84 - }, - "While handling return value of" - ], - "start_col": 5, - "start_line": 9 - } - }, - "3723": { - "accessible_scopes": [ - "__main__", - "__main__", - "__wrappers__", - "__wrappers__.getCellRenderer" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 58, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/arg_processor/01cba52f8515996bb9d7070bde81ff39281d096d7024a558efcba6e1fd2402cf.cairo" - }, - "parent_location": [ - { - "end_col": 21, - "end_line": 84, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "start_col": 6, - "start_line": 84 - }, - "While handling calldata of" - ], - "start_col": 1, - "start_line": 1 - } - }, - "3724": { - "accessible_scopes": [ - "__main__", - "__main__", - "__wrappers__", - "__wrappers__.getCellRenderer" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 64, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/external/getCellRenderer/b2c52ca2d2a8fc8791a983086d8716c5eacd0c3d62934914d2286f84b98ff4cb.cairo" - }, - "parent_location": [ - { - "end_col": 40, - "end_line": 84, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "parent_location": [ - { - "end_col": 55, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/external/getCellRenderer/ad0970b7c612f5c2245a4fd1a68988d1dca7e1deee86e0b02cc4780b6294c9d7.cairo" - }, - "parent_location": [ - { - "end_col": 21, - "end_line": 84, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "start_col": 6, - "start_line": 84 - }, - "While constructing the external wrapper for:" - ], - "start_col": 44, - "start_line": 1 - }, - "While expanding the reference 'syscall_ptr' in:" - ], - "start_col": 22, - "start_line": 84 - }, - "While constructing the external wrapper for:" - ], - "start_col": 19, - "start_line": 1 - } - }, - "3725": { - "accessible_scopes": [ - "__main__", - "__main__", - "__wrappers__", - "__wrappers__.getCellRenderer" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 110, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/external/getCellRenderer/9684a85e93c782014ca14293edea4eb2502039a5a7b6538ecd39c56faaf12529.cairo" - }, - "parent_location": [ - { - "end_col": 68, - "end_line": 84, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "parent_location": [ - { - "end_col": 82, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/external/getCellRenderer/ad0970b7c612f5c2245a4fd1a68988d1dca7e1deee86e0b02cc4780b6294c9d7.cairo" - }, - "parent_location": [ - { - "end_col": 21, - "end_line": 84, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "start_col": 6, - "start_line": 84 - }, - "While constructing the external wrapper for:" - ], - "start_col": 70, - "start_line": 1 - }, - "While expanding the reference 'pedersen_ptr' in:" - ], - "start_col": 42, - "start_line": 84 - }, - "While constructing the external wrapper for:" - ], - "start_col": 20, - "start_line": 1 - } - }, - "3726": { - "accessible_scopes": [ - "__main__", - "__main__", - "__wrappers__", - "__wrappers__.getCellRenderer" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 67, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/external/getCellRenderer/741ea357d6336b0bed7bf0472425acd0311d543883b803388880e60a232040c7.cairo" - }, - "parent_location": [ - { - "end_col": 85, - "end_line": 84, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "parent_location": [ - { - "end_col": 115, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/external/getCellRenderer/ad0970b7c612f5c2245a4fd1a68988d1dca7e1deee86e0b02cc4780b6294c9d7.cairo" - }, - "parent_location": [ - { - "end_col": 21, - "end_line": 84, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "start_col": 6, - "start_line": 84 - }, - "While constructing the external wrapper for:" - ], - "start_col": 100, - "start_line": 1 - }, - "While expanding the reference 'range_check_ptr' in:" - ], - "start_col": 70, - "start_line": 84 - }, - "While constructing the external wrapper for:" - ], - "start_col": 23, - "start_line": 1 - } - }, - "3727": { - "accessible_scopes": [ - "__main__", - "__main__", - "__wrappers__", - "__wrappers__.getCellRenderer" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 21, - "end_line": 84, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "start_col": 6, - "start_line": 84 - } - }, - "3729": { - "accessible_scopes": [ - "__main__", - "__main__", - "__wrappers__", - "__wrappers__.getCellRenderer" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 115, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/external/getCellRenderer/ad0970b7c612f5c2245a4fd1a68988d1dca7e1deee86e0b02cc4780b6294c9d7.cairo" - }, - "parent_location": [ - { - "end_col": 21, - "end_line": 84, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "parent_location": [ - { - "end_col": 104, - "end_line": 2, - "input_file": { - "filename": "autogen/starknet/external/getCellRenderer/ad0970b7c612f5c2245a4fd1a68988d1dca7e1deee86e0b02cc4780b6294c9d7.cairo" - }, - "parent_location": [ - { - "end_col": 21, - "end_line": 84, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "start_col": 6, - "start_line": 84 - }, - "While constructing the external wrapper for:" - ], - "start_col": 89, - "start_line": 2 - }, - "While expanding the reference 'range_check_ptr' in:" - ], - "start_col": 6, - "start_line": 84 - }, - "While constructing the external wrapper for:" - ], - "start_col": 100, - "start_line": 1 - } - }, - "3730": { - "accessible_scopes": [ - "__main__", - "__main__", - "__wrappers__", - "__wrappers__.getCellRenderer" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 105, - "end_line": 2, - "input_file": { - "filename": "autogen/starknet/external/getCellRenderer/ad0970b7c612f5c2245a4fd1a68988d1dca7e1deee86e0b02cc4780b6294c9d7.cairo" - }, - "parent_location": [ - { - "end_col": 21, - "end_line": 84, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "start_col": 6, - "start_line": 84 - }, - "While constructing the external wrapper for:" - ], - "start_col": 48, - "start_line": 2 - } - }, - "3732": { - "accessible_scopes": [ - "__main__", - "__main__", - "__wrappers__", - "__wrappers__.getCellRenderer" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 55, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/external/getCellRenderer/ad0970b7c612f5c2245a4fd1a68988d1dca7e1deee86e0b02cc4780b6294c9d7.cairo" - }, - "parent_location": [ - { - "end_col": 21, - "end_line": 84, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "parent_location": [ - { - "end_col": 20, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/external/getCellRenderer/da17921a4e81c09e730800bbf23bfdbe5e9e6bfaedc59d80fbf62087fa43c27d.cairo" - }, - "parent_location": [ - { - "end_col": 21, - "end_line": 84, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "start_col": 6, - "start_line": 84 - }, - "While constructing the external wrapper for:" - ], - "start_col": 9, - "start_line": 1 - }, - "While expanding the reference 'syscall_ptr' in:" - ], - "start_col": 6, - "start_line": 84 - }, - "While constructing the external wrapper for:" - ], - "start_col": 44, - "start_line": 1 - } - }, - "3733": { - "accessible_scopes": [ - "__main__", - "__main__", - "__wrappers__", - "__wrappers__.getCellRenderer" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 82, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/external/getCellRenderer/ad0970b7c612f5c2245a4fd1a68988d1dca7e1deee86e0b02cc4780b6294c9d7.cairo" - }, - "parent_location": [ - { - "end_col": 21, - "end_line": 84, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "parent_location": [ - { - "end_col": 33, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/external/getCellRenderer/da17921a4e81c09e730800bbf23bfdbe5e9e6bfaedc59d80fbf62087fa43c27d.cairo" - }, - "parent_location": [ - { - "end_col": 21, - "end_line": 84, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "start_col": 6, - "start_line": 84 - }, - "While constructing the external wrapper for:" - ], - "start_col": 21, - "start_line": 1 - }, - "While expanding the reference 'pedersen_ptr' in:" - ], - "start_col": 6, - "start_line": 84 - }, - "While constructing the external wrapper for:" - ], - "start_col": 70, - "start_line": 1 - } - }, - "3734": { - "accessible_scopes": [ - "__main__", - "__main__", - "__wrappers__", - "__wrappers__.getCellRenderer" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 21, - "end_line": 2, - "input_file": { - "filename": "autogen/starknet/external/getCellRenderer/ad0970b7c612f5c2245a4fd1a68988d1dca7e1deee86e0b02cc4780b6294c9d7.cairo" - }, - "parent_location": [ - { - "end_col": 21, - "end_line": 84, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "parent_location": [ - { - "end_col": 49, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/external/getCellRenderer/da17921a4e81c09e730800bbf23bfdbe5e9e6bfaedc59d80fbf62087fa43c27d.cairo" - }, - "parent_location": [ - { - "end_col": 21, - "end_line": 84, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "start_col": 6, - "start_line": 84 - }, - "While constructing the external wrapper for:" - ], - "start_col": 34, - "start_line": 1 - }, - "While expanding the reference 'range_check_ptr' in:" - ], - "start_col": 6, - "start_line": 84 - }, - "While constructing the external wrapper for:" - ], - "start_col": 6, - "start_line": 2 - } - }, - "3735": { - "accessible_scopes": [ - "__main__", - "__main__", - "__wrappers__", - "__wrappers__.getCellRenderer" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 35, - "end_line": 2, - "input_file": { - "filename": "autogen/starknet/external/getCellRenderer/ad0970b7c612f5c2245a4fd1a68988d1dca7e1deee86e0b02cc4780b6294c9d7.cairo" - }, - "parent_location": [ - { - "end_col": 21, - "end_line": 84, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "parent_location": [ - { - "end_col": 62, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/external/getCellRenderer/da17921a4e81c09e730800bbf23bfdbe5e9e6bfaedc59d80fbf62087fa43c27d.cairo" - }, - "parent_location": [ - { - "end_col": 21, - "end_line": 84, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "start_col": 6, - "start_line": 84 - }, - "While constructing the external wrapper for:" - ], - "start_col": 50, - "start_line": 1 - }, - "While expanding the reference 'retdata_size' in:" - ], - "start_col": 6, - "start_line": 84 - }, - "While constructing the external wrapper for:" - ], - "start_col": 23, - "start_line": 2 - } - }, - "3736": { - "accessible_scopes": [ - "__main__", - "__main__", - "__wrappers__", - "__wrappers__.getCellRenderer" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 44, - "end_line": 2, - "input_file": { - "filename": "autogen/starknet/external/getCellRenderer/ad0970b7c612f5c2245a4fd1a68988d1dca7e1deee86e0b02cc4780b6294c9d7.cairo" - }, - "parent_location": [ - { - "end_col": 21, - "end_line": 84, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "parent_location": [ - { - "end_col": 70, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/external/getCellRenderer/da17921a4e81c09e730800bbf23bfdbe5e9e6bfaedc59d80fbf62087fa43c27d.cairo" - }, - "parent_location": [ - { - "end_col": 21, - "end_line": 84, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "start_col": 6, - "start_line": 84 - }, - "While constructing the external wrapper for:" - ], - "start_col": 63, - "start_line": 1 - }, - "While expanding the reference 'retdata' in:" - ], - "start_col": 6, - "start_line": 84 - }, - "While constructing the external wrapper for:" - ], - "start_col": 37, - "start_line": 2 - } - }, - "3737": { - "accessible_scopes": [ - "__main__", - "__main__", - "__wrappers__", - "__wrappers__.getCellRenderer" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 72, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/external/getCellRenderer/da17921a4e81c09e730800bbf23bfdbe5e9e6bfaedc59d80fbf62087fa43c27d.cairo" - }, - "parent_location": [ - { - "end_col": 21, - "end_line": 84, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "start_col": 6, - "start_line": 84 - }, - "While constructing the external wrapper for:" - ], - "start_col": 1, - "start_line": 1 - } - }, - "3738": { - "accessible_scopes": [ - "__main__", - "__main__", - "__main__.setMerkleRoot" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 38, - "end_line": 91, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "parent_location": [ - { - "end_col": 46, - "end_line": 40, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/access/ownable/library.cairo" - }, - "parent_location": [ - { - "end_col": 32, - "end_line": 92, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "start_col": 5, - "start_line": 92 - }, - "While trying to retrieve the implicit argument 'syscall_ptr' in:" - ], - "start_col": 28, - "start_line": 40 - }, - "While expanding the reference 'syscall_ptr' in:" - ], - "start_col": 20, - "start_line": 91 - } - }, - "3739": { - "accessible_scopes": [ - "__main__", - "__main__", - "__main__.setMerkleRoot" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 66, - "end_line": 91, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "parent_location": [ - { - "end_col": 74, - "end_line": 40, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/access/ownable/library.cairo" - }, - "parent_location": [ - { - "end_col": 32, - "end_line": 92, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "start_col": 5, - "start_line": 92 - }, - "While trying to retrieve the implicit argument 'pedersen_ptr' in:" - ], - "start_col": 48, - "start_line": 40 - }, - "While expanding the reference 'pedersen_ptr' in:" - ], - "start_col": 40, - "start_line": 91 - } - }, - "3740": { - "accessible_scopes": [ - "__main__", - "__main__", - "__main__.setMerkleRoot" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 83, - "end_line": 91, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "parent_location": [ - { - "end_col": 91, - "end_line": 40, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/access/ownable/library.cairo" - }, - "parent_location": [ - { - "end_col": 32, - "end_line": 92, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "start_col": 5, - "start_line": 92 - }, - "While trying to retrieve the implicit argument 'range_check_ptr' in:" - ], - "start_col": 76, - "start_line": 40 - }, - "While expanding the reference 'range_check_ptr' in:" - ], - "start_col": 68, - "start_line": 91 - } - }, - "3741": { - "accessible_scopes": [ - "__main__", - "__main__", - "__main__.setMerkleRoot" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 32, - "end_line": 92, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "start_col": 5, - "start_line": 92 - } - }, - "3743": { - "accessible_scopes": [ - "__main__", - "__main__", - "__main__.setMerkleRoot" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 95, - "end_line": 91, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "parent_location": [ - { - "end_col": 33, - "end_line": 93, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "start_col": 29, - "start_line": 93 - }, - "While expanding the reference 'root' in:" - ], - "start_col": 85, - "start_line": 91 - } - }, - "3744": { - "accessible_scopes": [ - "__main__", - "__main__", - "__main__.setMerkleRoot" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 34, - "end_line": 93, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "start_col": 5, - "start_line": 93 - } - }, - "3746": { - "accessible_scopes": [ - "__main__", - "__main__", - "__main__.setMerkleRoot" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 15, - "end_line": 94, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "start_col": 5, - "start_line": 94 - } - }, - "3747": { - "accessible_scopes": [ - "__main__", - "__main__", - "__wrappers__", - "__wrappers__.setMerkleRoot" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 40, - "end_line": 2, - "input_file": { - "filename": "autogen/starknet/arg_processor/038c0cb4ed8fb3662b2204f7a3dad52bb6fd1aceaf040c7093bf2d59c5e90d2e.cairo" - }, - "parent_location": [ - { - "end_col": 95, - "end_line": 91, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "parent_location": [ - { - "end_col": 45, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/arg_processor/c31620b02d4d706f0542c989b2aadc01b0981d1f6a5933a8fe4937ace3d70d92.cairo" - }, - "parent_location": [ - { - "end_col": 19, - "end_line": 91, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "parent_location": [ - { - "end_col": 57, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/arg_processor/01cba52f8515996bb9d7070bde81ff39281d096d7024a558efcba6e1fd2402cf.cairo" - }, - "parent_location": [ - { - "end_col": 19, - "end_line": 91, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "start_col": 6, - "start_line": 91 - }, - "While handling calldata of" - ], - "start_col": 35, - "start_line": 1 - }, - "While expanding the reference '__calldata_actual_size' in:" - ], - "start_col": 6, - "start_line": 91 - }, - "While handling calldata of" - ], - "start_col": 31, - "start_line": 1 - }, - "While expanding the reference '__calldata_ptr' in:" - ], - "start_col": 85, - "start_line": 91 - }, - "While handling calldata argument 'root'" - ], - "start_col": 22, - "start_line": 2 - } - }, - "3749": { - "accessible_scopes": [ - "__main__", - "__main__", - "__wrappers__", - "__wrappers__.setMerkleRoot" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 58, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/arg_processor/01cba52f8515996bb9d7070bde81ff39281d096d7024a558efcba6e1fd2402cf.cairo" - }, - "parent_location": [ - { - "end_col": 19, - "end_line": 91, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "start_col": 6, - "start_line": 91 - }, - "While handling calldata of" - ], - "start_col": 1, - "start_line": 1 - } - }, - "3750": { - "accessible_scopes": [ - "__main__", - "__main__", - "__wrappers__", - "__wrappers__.setMerkleRoot" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 64, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/external/setMerkleRoot/b2c52ca2d2a8fc8791a983086d8716c5eacd0c3d62934914d2286f84b98ff4cb.cairo" - }, - "parent_location": [ - { - "end_col": 38, - "end_line": 91, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "parent_location": [ - { - "end_col": 55, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/external/setMerkleRoot/161aaf3a5af5c303dbefacf522ccca3916f71a0b81c07d23f94176863241c379.cairo" - }, - "parent_location": [ - { - "end_col": 19, - "end_line": 91, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "start_col": 6, - "start_line": 91 - }, - "While constructing the external wrapper for:" - ], - "start_col": 44, - "start_line": 1 - }, - "While expanding the reference 'syscall_ptr' in:" - ], - "start_col": 20, - "start_line": 91 - }, - "While constructing the external wrapper for:" - ], - "start_col": 19, - "start_line": 1 - } - }, - "3751": { - "accessible_scopes": [ - "__main__", - "__main__", - "__wrappers__", - "__wrappers__.setMerkleRoot" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 110, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/external/setMerkleRoot/9684a85e93c782014ca14293edea4eb2502039a5a7b6538ecd39c56faaf12529.cairo" - }, - "parent_location": [ - { - "end_col": 66, - "end_line": 91, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "parent_location": [ - { - "end_col": 82, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/external/setMerkleRoot/161aaf3a5af5c303dbefacf522ccca3916f71a0b81c07d23f94176863241c379.cairo" - }, - "parent_location": [ - { - "end_col": 19, - "end_line": 91, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "start_col": 6, - "start_line": 91 - }, - "While constructing the external wrapper for:" - ], - "start_col": 70, - "start_line": 1 - }, - "While expanding the reference 'pedersen_ptr' in:" - ], - "start_col": 40, - "start_line": 91 - }, - "While constructing the external wrapper for:" - ], - "start_col": 20, - "start_line": 1 - } - }, - "3752": { - "accessible_scopes": [ - "__main__", - "__main__", - "__wrappers__", - "__wrappers__.setMerkleRoot" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 67, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/external/setMerkleRoot/741ea357d6336b0bed7bf0472425acd0311d543883b803388880e60a232040c7.cairo" - }, - "parent_location": [ - { - "end_col": 83, - "end_line": 91, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "parent_location": [ - { - "end_col": 115, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/external/setMerkleRoot/161aaf3a5af5c303dbefacf522ccca3916f71a0b81c07d23f94176863241c379.cairo" - }, - "parent_location": [ - { - "end_col": 19, - "end_line": 91, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "start_col": 6, - "start_line": 91 - }, - "While constructing the external wrapper for:" - ], - "start_col": 100, - "start_line": 1 - }, - "While expanding the reference 'range_check_ptr' in:" - ], - "start_col": 68, - "start_line": 91 - }, - "While constructing the external wrapper for:" - ], - "start_col": 23, - "start_line": 1 - } - }, - "3753": { - "accessible_scopes": [ - "__main__", - "__main__", - "__wrappers__", - "__wrappers__.setMerkleRoot" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 43, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/arg_processor/038c0cb4ed8fb3662b2204f7a3dad52bb6fd1aceaf040c7093bf2d59c5e90d2e.cairo" - }, - "parent_location": [ - { - "end_col": 95, - "end_line": 91, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "parent_location": [ - { - "end_col": 141, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/external/setMerkleRoot/161aaf3a5af5c303dbefacf522ccca3916f71a0b81c07d23f94176863241c379.cairo" - }, - "parent_location": [ - { - "end_col": 19, - "end_line": 91, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "start_col": 6, - "start_line": 91 - }, - "While constructing the external wrapper for:" - ], - "start_col": 122, - "start_line": 1 - }, - "While expanding the reference '__calldata_arg_root' in:" - ], - "start_col": 85, - "start_line": 91 - }, - "While handling calldata argument 'root'" - ], - "start_col": 27, - "start_line": 1 - } - }, - "3754": { - "accessible_scopes": [ - "__main__", - "__main__", - "__wrappers__", - "__wrappers__.setMerkleRoot" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 19, - "end_line": 91, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "start_col": 6, - "start_line": 91 - } - }, - "3756": { - "accessible_scopes": [ - "__main__", - "__main__", - "__wrappers__", - "__wrappers__.setMerkleRoot" - ], - "flow_tracking_data": null, - "hints": [ - { - "location": { - "end_col": 34, - "end_line": 2, - "input_file": { - "filename": "autogen/starknet/external/setMerkleRoot/161aaf3a5af5c303dbefacf522ccca3916f71a0b81c07d23f94176863241c379.cairo" - }, - "parent_location": [ - { - "end_col": 19, - "end_line": 91, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "start_col": 6, - "start_line": 91 - }, - "While constructing the external wrapper for:" - ], - "start_col": 1, - "start_line": 2 - }, - "n_prefix_newlines": 0 - } - ], - "inst": { - "end_col": 24, - "end_line": 3, - "input_file": { - "filename": "autogen/starknet/external/setMerkleRoot/161aaf3a5af5c303dbefacf522ccca3916f71a0b81c07d23f94176863241c379.cairo" - }, - "parent_location": [ - { - "end_col": 19, - "end_line": 91, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "start_col": 6, - "start_line": 91 - }, - "While constructing the external wrapper for:" - ], - "start_col": 1, - "start_line": 3 - } - }, - "3758": { - "accessible_scopes": [ - "__main__", - "__main__", - "__wrappers__", - "__wrappers__.setMerkleRoot" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 55, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/external/setMerkleRoot/161aaf3a5af5c303dbefacf522ccca3916f71a0b81c07d23f94176863241c379.cairo" - }, - "parent_location": [ - { - "end_col": 19, - "end_line": 91, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "parent_location": [ - { - "end_col": 20, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/external/setMerkleRoot/da17921a4e81c09e730800bbf23bfdbe5e9e6bfaedc59d80fbf62087fa43c27d.cairo" - }, - "parent_location": [ - { - "end_col": 19, - "end_line": 91, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "start_col": 6, - "start_line": 91 - }, - "While constructing the external wrapper for:" - ], - "start_col": 9, - "start_line": 1 - }, - "While expanding the reference 'syscall_ptr' in:" - ], - "start_col": 6, - "start_line": 91 - }, - "While constructing the external wrapper for:" - ], - "start_col": 44, - "start_line": 1 - } - }, - "3759": { - "accessible_scopes": [ - "__main__", - "__main__", - "__wrappers__", - "__wrappers__.setMerkleRoot" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 82, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/external/setMerkleRoot/161aaf3a5af5c303dbefacf522ccca3916f71a0b81c07d23f94176863241c379.cairo" - }, - "parent_location": [ - { - "end_col": 19, - "end_line": 91, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "parent_location": [ - { - "end_col": 33, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/external/setMerkleRoot/da17921a4e81c09e730800bbf23bfdbe5e9e6bfaedc59d80fbf62087fa43c27d.cairo" - }, - "parent_location": [ - { - "end_col": 19, - "end_line": 91, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "start_col": 6, - "start_line": 91 - }, - "While constructing the external wrapper for:" - ], - "start_col": 21, - "start_line": 1 - }, - "While expanding the reference 'pedersen_ptr' in:" - ], - "start_col": 6, - "start_line": 91 - }, - "While constructing the external wrapper for:" - ], - "start_col": 70, - "start_line": 1 - } - }, - "3760": { - "accessible_scopes": [ - "__main__", - "__main__", - "__wrappers__", - "__wrappers__.setMerkleRoot" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 115, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/external/setMerkleRoot/161aaf3a5af5c303dbefacf522ccca3916f71a0b81c07d23f94176863241c379.cairo" - }, - "parent_location": [ - { - "end_col": 19, - "end_line": 91, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "parent_location": [ - { - "end_col": 49, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/external/setMerkleRoot/da17921a4e81c09e730800bbf23bfdbe5e9e6bfaedc59d80fbf62087fa43c27d.cairo" - }, - "parent_location": [ - { - "end_col": 19, - "end_line": 91, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "start_col": 6, - "start_line": 91 - }, - "While constructing the external wrapper for:" - ], - "start_col": 34, - "start_line": 1 - }, - "While expanding the reference 'range_check_ptr' in:" - ], - "start_col": 6, - "start_line": 91 - }, - "While constructing the external wrapper for:" - ], - "start_col": 100, - "start_line": 1 - } - }, - "3761": { - "accessible_scopes": [ - "__main__", - "__main__", - "__wrappers__", - "__wrappers__.setMerkleRoot" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 21, - "end_line": 4, - "input_file": { - "filename": "autogen/starknet/external/setMerkleRoot/161aaf3a5af5c303dbefacf522ccca3916f71a0b81c07d23f94176863241c379.cairo" - }, - "parent_location": [ - { - "end_col": 19, - "end_line": 91, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "parent_location": [ - { - "end_col": 62, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/external/setMerkleRoot/da17921a4e81c09e730800bbf23bfdbe5e9e6bfaedc59d80fbf62087fa43c27d.cairo" - }, - "parent_location": [ - { - "end_col": 19, - "end_line": 91, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "start_col": 6, - "start_line": 91 - }, - "While constructing the external wrapper for:" - ], - "start_col": 50, - "start_line": 1 - }, - "While expanding the reference 'retdata_size' in:" - ], - "start_col": 6, - "start_line": 91 - }, - "While constructing the external wrapper for:" - ], - "start_col": 20, - "start_line": 4 - } - }, - "3763": { - "accessible_scopes": [ - "__main__", - "__main__", - "__wrappers__", - "__wrappers__.setMerkleRoot" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 16, - "end_line": 3, - "input_file": { - "filename": "autogen/starknet/external/setMerkleRoot/161aaf3a5af5c303dbefacf522ccca3916f71a0b81c07d23f94176863241c379.cairo" - }, - "parent_location": [ - { - "end_col": 19, - "end_line": 91, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "parent_location": [ - { - "end_col": 70, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/external/setMerkleRoot/da17921a4e81c09e730800bbf23bfdbe5e9e6bfaedc59d80fbf62087fa43c27d.cairo" - }, - "parent_location": [ - { - "end_col": 19, - "end_line": 91, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "start_col": 6, - "start_line": 91 - }, - "While constructing the external wrapper for:" - ], - "start_col": 63, - "start_line": 1 - }, - "While expanding the reference 'retdata' in:" - ], - "start_col": 6, - "start_line": 91 - }, - "While constructing the external wrapper for:" - ], - "start_col": 9, - "start_line": 3 - } - }, - "3764": { - "accessible_scopes": [ - "__main__", - "__main__", - "__wrappers__", - "__wrappers__.setMerkleRoot" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 72, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/external/setMerkleRoot/da17921a4e81c09e730800bbf23bfdbe5e9e6bfaedc59d80fbf62087fa43c27d.cairo" - }, - "parent_location": [ - { - "end_col": 19, - "end_line": 91, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "start_col": 6, - "start_line": 91 - }, - "While constructing the external wrapper for:" - ], - "start_col": 1, - "start_line": 1 - } - }, - "3765": { - "accessible_scopes": [ - "__main__", - "__main__", - "__main__.openMint" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 33, - "end_line": 98, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "parent_location": [ - { - "end_col": 46, - "end_line": 40, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/access/ownable/library.cairo" - }, - "parent_location": [ - { - "end_col": 32, - "end_line": 99, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "start_col": 5, - "start_line": 99 - }, - "While trying to retrieve the implicit argument 'syscall_ptr' in:" - ], - "start_col": 28, - "start_line": 40 - }, - "While expanding the reference 'syscall_ptr' in:" - ], - "start_col": 15, - "start_line": 98 - } - }, - "3766": { - "accessible_scopes": [ - "__main__", - "__main__", - "__main__.openMint" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 61, - "end_line": 98, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "parent_location": [ - { - "end_col": 74, - "end_line": 40, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/access/ownable/library.cairo" - }, - "parent_location": [ - { - "end_col": 32, - "end_line": 99, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "start_col": 5, - "start_line": 99 - }, - "While trying to retrieve the implicit argument 'pedersen_ptr' in:" - ], - "start_col": 48, - "start_line": 40 - }, - "While expanding the reference 'pedersen_ptr' in:" - ], - "start_col": 35, - "start_line": 98 - } - }, - "3767": { - "accessible_scopes": [ - "__main__", - "__main__", - "__main__.openMint" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 78, - "end_line": 98, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "parent_location": [ - { - "end_col": 91, - "end_line": 40, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/access/ownable/library.cairo" - }, - "parent_location": [ - { - "end_col": 32, - "end_line": 99, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "start_col": 5, - "start_line": 99 - }, - "While trying to retrieve the implicit argument 'range_check_ptr' in:" - ], - "start_col": 76, - "start_line": 40 - }, - "While expanding the reference 'range_check_ptr' in:" - ], - "start_col": 63, - "start_line": 98 - } - }, - "3768": { - "accessible_scopes": [ - "__main__", - "__main__", - "__main__.openMint" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 32, - "end_line": 99, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "start_col": 5, - "start_line": 99 - } - }, - "3770": { - "accessible_scopes": [ - "__main__", - "__main__", - "__main__.openMint" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 22, - "end_line": 100, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "start_col": 5, - "start_line": 100 - } - }, - "3772": { - "accessible_scopes": [ - "__main__", - "__main__", - "__main__.openMint" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 15, - "end_line": 101, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "start_col": 5, - "start_line": 101 - } - }, - "3773": { - "accessible_scopes": [ - "__main__", - "__main__", - "__wrappers__", - "__wrappers__.openMint" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 58, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/arg_processor/01cba52f8515996bb9d7070bde81ff39281d096d7024a558efcba6e1fd2402cf.cairo" - }, - "parent_location": [ - { - "end_col": 14, - "end_line": 98, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "start_col": 6, - "start_line": 98 - }, - "While handling calldata of" - ], - "start_col": 1, - "start_line": 1 - } - }, - "3774": { - "accessible_scopes": [ - "__main__", - "__main__", - "__wrappers__", - "__wrappers__.openMint" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 64, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/external/openMint/b2c52ca2d2a8fc8791a983086d8716c5eacd0c3d62934914d2286f84b98ff4cb.cairo" - }, - "parent_location": [ - { - "end_col": 33, - "end_line": 98, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "parent_location": [ - { - "end_col": 55, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/external/openMint/8f83d060e7e088c358526f8859eb82973ba2c094c7d9223df6230b744dfa211c.cairo" - }, - "parent_location": [ - { - "end_col": 14, - "end_line": 98, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "start_col": 6, - "start_line": 98 - }, - "While constructing the external wrapper for:" - ], - "start_col": 44, - "start_line": 1 - }, - "While expanding the reference 'syscall_ptr' in:" - ], - "start_col": 15, - "start_line": 98 - }, - "While constructing the external wrapper for:" - ], - "start_col": 19, - "start_line": 1 - } - }, - "3775": { - "accessible_scopes": [ - "__main__", - "__main__", - "__wrappers__", - "__wrappers__.openMint" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 110, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/external/openMint/9684a85e93c782014ca14293edea4eb2502039a5a7b6538ecd39c56faaf12529.cairo" - }, - "parent_location": [ - { - "end_col": 61, - "end_line": 98, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "parent_location": [ - { - "end_col": 82, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/external/openMint/8f83d060e7e088c358526f8859eb82973ba2c094c7d9223df6230b744dfa211c.cairo" - }, - "parent_location": [ - { - "end_col": 14, - "end_line": 98, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "start_col": 6, - "start_line": 98 - }, - "While constructing the external wrapper for:" - ], - "start_col": 70, - "start_line": 1 - }, - "While expanding the reference 'pedersen_ptr' in:" - ], - "start_col": 35, - "start_line": 98 - }, - "While constructing the external wrapper for:" - ], - "start_col": 20, - "start_line": 1 - } - }, - "3776": { - "accessible_scopes": [ - "__main__", - "__main__", - "__wrappers__", - "__wrappers__.openMint" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 67, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/external/openMint/741ea357d6336b0bed7bf0472425acd0311d543883b803388880e60a232040c7.cairo" - }, - "parent_location": [ - { - "end_col": 78, - "end_line": 98, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "parent_location": [ - { - "end_col": 115, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/external/openMint/8f83d060e7e088c358526f8859eb82973ba2c094c7d9223df6230b744dfa211c.cairo" - }, - "parent_location": [ - { - "end_col": 14, - "end_line": 98, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "start_col": 6, - "start_line": 98 - }, - "While constructing the external wrapper for:" - ], - "start_col": 100, - "start_line": 1 - }, - "While expanding the reference 'range_check_ptr' in:" - ], - "start_col": 63, - "start_line": 98 - }, - "While constructing the external wrapper for:" - ], - "start_col": 23, - "start_line": 1 - } - }, - "3777": { - "accessible_scopes": [ - "__main__", - "__main__", - "__wrappers__", - "__wrappers__.openMint" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 14, - "end_line": 98, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "start_col": 6, - "start_line": 98 - } - }, - "3779": { - "accessible_scopes": [ - "__main__", - "__main__", - "__wrappers__", - "__wrappers__.openMint" - ], - "flow_tracking_data": null, - "hints": [ - { - "location": { - "end_col": 34, - "end_line": 2, - "input_file": { - "filename": "autogen/starknet/external/openMint/8f83d060e7e088c358526f8859eb82973ba2c094c7d9223df6230b744dfa211c.cairo" - }, - "parent_location": [ - { - "end_col": 14, - "end_line": 98, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "start_col": 6, - "start_line": 98 - }, - "While constructing the external wrapper for:" - ], - "start_col": 1, - "start_line": 2 - }, - "n_prefix_newlines": 0 - } - ], - "inst": { - "end_col": 24, - "end_line": 3, - "input_file": { - "filename": "autogen/starknet/external/openMint/8f83d060e7e088c358526f8859eb82973ba2c094c7d9223df6230b744dfa211c.cairo" - }, - "parent_location": [ - { - "end_col": 14, - "end_line": 98, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "start_col": 6, - "start_line": 98 - }, - "While constructing the external wrapper for:" - ], - "start_col": 1, - "start_line": 3 - } - }, - "3781": { - "accessible_scopes": [ - "__main__", - "__main__", - "__wrappers__", - "__wrappers__.openMint" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 55, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/external/openMint/8f83d060e7e088c358526f8859eb82973ba2c094c7d9223df6230b744dfa211c.cairo" - }, - "parent_location": [ - { - "end_col": 14, - "end_line": 98, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "parent_location": [ - { - "end_col": 20, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/external/openMint/da17921a4e81c09e730800bbf23bfdbe5e9e6bfaedc59d80fbf62087fa43c27d.cairo" - }, - "parent_location": [ - { - "end_col": 14, - "end_line": 98, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "start_col": 6, - "start_line": 98 - }, - "While constructing the external wrapper for:" - ], - "start_col": 9, - "start_line": 1 - }, - "While expanding the reference 'syscall_ptr' in:" - ], - "start_col": 6, - "start_line": 98 - }, - "While constructing the external wrapper for:" - ], - "start_col": 44, - "start_line": 1 - } - }, - "3782": { - "accessible_scopes": [ - "__main__", - "__main__", - "__wrappers__", - "__wrappers__.openMint" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 82, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/external/openMint/8f83d060e7e088c358526f8859eb82973ba2c094c7d9223df6230b744dfa211c.cairo" - }, - "parent_location": [ - { - "end_col": 14, - "end_line": 98, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "parent_location": [ - { - "end_col": 33, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/external/openMint/da17921a4e81c09e730800bbf23bfdbe5e9e6bfaedc59d80fbf62087fa43c27d.cairo" - }, - "parent_location": [ - { - "end_col": 14, - "end_line": 98, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "start_col": 6, - "start_line": 98 - }, - "While constructing the external wrapper for:" - ], - "start_col": 21, - "start_line": 1 - }, - "While expanding the reference 'pedersen_ptr' in:" - ], - "start_col": 6, - "start_line": 98 - }, - "While constructing the external wrapper for:" - ], - "start_col": 70, - "start_line": 1 - } - }, - "3783": { - "accessible_scopes": [ - "__main__", - "__main__", - "__wrappers__", - "__wrappers__.openMint" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 115, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/external/openMint/8f83d060e7e088c358526f8859eb82973ba2c094c7d9223df6230b744dfa211c.cairo" - }, - "parent_location": [ - { - "end_col": 14, - "end_line": 98, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "parent_location": [ - { - "end_col": 49, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/external/openMint/da17921a4e81c09e730800bbf23bfdbe5e9e6bfaedc59d80fbf62087fa43c27d.cairo" - }, - "parent_location": [ - { - "end_col": 14, - "end_line": 98, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "start_col": 6, - "start_line": 98 - }, - "While constructing the external wrapper for:" - ], - "start_col": 34, - "start_line": 1 - }, - "While expanding the reference 'range_check_ptr' in:" - ], - "start_col": 6, - "start_line": 98 - }, - "While constructing the external wrapper for:" - ], - "start_col": 100, - "start_line": 1 - } - }, - "3784": { - "accessible_scopes": [ - "__main__", - "__main__", - "__wrappers__", - "__wrappers__.openMint" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 21, - "end_line": 4, - "input_file": { - "filename": "autogen/starknet/external/openMint/8f83d060e7e088c358526f8859eb82973ba2c094c7d9223df6230b744dfa211c.cairo" - }, - "parent_location": [ - { - "end_col": 14, - "end_line": 98, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "parent_location": [ - { - "end_col": 62, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/external/openMint/da17921a4e81c09e730800bbf23bfdbe5e9e6bfaedc59d80fbf62087fa43c27d.cairo" - }, - "parent_location": [ - { - "end_col": 14, - "end_line": 98, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "start_col": 6, - "start_line": 98 - }, - "While constructing the external wrapper for:" - ], - "start_col": 50, - "start_line": 1 - }, - "While expanding the reference 'retdata_size' in:" - ], - "start_col": 6, - "start_line": 98 - }, - "While constructing the external wrapper for:" - ], - "start_col": 20, - "start_line": 4 - } - }, - "3786": { - "accessible_scopes": [ - "__main__", - "__main__", - "__wrappers__", - "__wrappers__.openMint" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 16, - "end_line": 3, - "input_file": { - "filename": "autogen/starknet/external/openMint/8f83d060e7e088c358526f8859eb82973ba2c094c7d9223df6230b744dfa211c.cairo" - }, - "parent_location": [ - { - "end_col": 14, - "end_line": 98, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "parent_location": [ - { - "end_col": 70, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/external/openMint/da17921a4e81c09e730800bbf23bfdbe5e9e6bfaedc59d80fbf62087fa43c27d.cairo" - }, - "parent_location": [ - { - "end_col": 14, - "end_line": 98, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "start_col": 6, - "start_line": 98 - }, - "While constructing the external wrapper for:" - ], - "start_col": 63, - "start_line": 1 - }, - "While expanding the reference 'retdata' in:" - ], - "start_col": 6, - "start_line": 98 - }, - "While constructing the external wrapper for:" - ], - "start_col": 9, - "start_line": 3 - } - }, - "3787": { - "accessible_scopes": [ - "__main__", - "__main__", - "__wrappers__", - "__wrappers__.openMint" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 72, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/external/openMint/da17921a4e81c09e730800bbf23bfdbe5e9e6bfaedc59d80fbf62087fa43c27d.cairo" - }, - "parent_location": [ - { - "end_col": 14, - "end_line": 98, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "start_col": 6, - "start_line": 98 - }, - "While constructing the external wrapper for:" - ], - "start_col": 1, - "start_line": 1 - } - }, - "3788": { - "accessible_scopes": [ - "__main__", - "__main__", - "__main__.closeMint" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 34, - "end_line": 105, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "parent_location": [ - { - "end_col": 46, - "end_line": 40, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/access/ownable/library.cairo" - }, - "parent_location": [ - { - "end_col": 32, - "end_line": 106, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "start_col": 5, - "start_line": 106 - }, - "While trying to retrieve the implicit argument 'syscall_ptr' in:" - ], - "start_col": 28, - "start_line": 40 - }, - "While expanding the reference 'syscall_ptr' in:" - ], - "start_col": 16, - "start_line": 105 - } - }, - "3789": { - "accessible_scopes": [ - "__main__", - "__main__", - "__main__.closeMint" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 62, - "end_line": 105, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "parent_location": [ - { - "end_col": 74, - "end_line": 40, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/access/ownable/library.cairo" - }, - "parent_location": [ - { - "end_col": 32, - "end_line": 106, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "start_col": 5, - "start_line": 106 - }, - "While trying to retrieve the implicit argument 'pedersen_ptr' in:" - ], - "start_col": 48, - "start_line": 40 - }, - "While expanding the reference 'pedersen_ptr' in:" - ], - "start_col": 36, - "start_line": 105 - } - }, - "3790": { - "accessible_scopes": [ - "__main__", - "__main__", - "__main__.closeMint" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 79, - "end_line": 105, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "parent_location": [ - { - "end_col": 91, - "end_line": 40, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/access/ownable/library.cairo" - }, - "parent_location": [ - { - "end_col": 32, - "end_line": 106, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "start_col": 5, - "start_line": 106 - }, - "While trying to retrieve the implicit argument 'range_check_ptr' in:" - ], - "start_col": 76, - "start_line": 40 - }, - "While expanding the reference 'range_check_ptr' in:" - ], - "start_col": 64, - "start_line": 105 - } - }, - "3791": { - "accessible_scopes": [ - "__main__", - "__main__", - "__main__.closeMint" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 32, - "end_line": 106, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "start_col": 5, - "start_line": 106 - } - }, - "3793": { - "accessible_scopes": [ - "__main__", - "__main__", - "__main__.closeMint" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 23, - "end_line": 107, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "start_col": 5, - "start_line": 107 - } - }, - "3795": { - "accessible_scopes": [ - "__main__", - "__main__", - "__main__.closeMint" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 15, - "end_line": 108, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "start_col": 5, - "start_line": 108 - } - }, - "3796": { - "accessible_scopes": [ - "__main__", - "__main__", - "__wrappers__", - "__wrappers__.closeMint" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 58, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/arg_processor/01cba52f8515996bb9d7070bde81ff39281d096d7024a558efcba6e1fd2402cf.cairo" - }, - "parent_location": [ - { - "end_col": 15, - "end_line": 105, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "start_col": 6, - "start_line": 105 - }, - "While handling calldata of" - ], - "start_col": 1, - "start_line": 1 - } - }, - "3797": { - "accessible_scopes": [ - "__main__", - "__main__", - "__wrappers__", - "__wrappers__.closeMint" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 64, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/external/closeMint/b2c52ca2d2a8fc8791a983086d8716c5eacd0c3d62934914d2286f84b98ff4cb.cairo" - }, - "parent_location": [ - { - "end_col": 34, - "end_line": 105, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "parent_location": [ - { - "end_col": 55, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/external/closeMint/8f83d060e7e088c358526f8859eb82973ba2c094c7d9223df6230b744dfa211c.cairo" - }, - "parent_location": [ - { - "end_col": 15, - "end_line": 105, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "start_col": 6, - "start_line": 105 - }, - "While constructing the external wrapper for:" - ], - "start_col": 44, - "start_line": 1 - }, - "While expanding the reference 'syscall_ptr' in:" - ], - "start_col": 16, - "start_line": 105 - }, - "While constructing the external wrapper for:" - ], - "start_col": 19, - "start_line": 1 - } - }, - "3798": { - "accessible_scopes": [ - "__main__", - "__main__", - "__wrappers__", - "__wrappers__.closeMint" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 110, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/external/closeMint/9684a85e93c782014ca14293edea4eb2502039a5a7b6538ecd39c56faaf12529.cairo" - }, - "parent_location": [ - { - "end_col": 62, - "end_line": 105, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "parent_location": [ - { - "end_col": 82, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/external/closeMint/8f83d060e7e088c358526f8859eb82973ba2c094c7d9223df6230b744dfa211c.cairo" - }, - "parent_location": [ - { - "end_col": 15, - "end_line": 105, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "start_col": 6, - "start_line": 105 - }, - "While constructing the external wrapper for:" - ], - "start_col": 70, - "start_line": 1 - }, - "While expanding the reference 'pedersen_ptr' in:" - ], - "start_col": 36, - "start_line": 105 - }, - "While constructing the external wrapper for:" - ], - "start_col": 20, - "start_line": 1 - } - }, - "3799": { - "accessible_scopes": [ - "__main__", - "__main__", - "__wrappers__", - "__wrappers__.closeMint" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 67, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/external/closeMint/741ea357d6336b0bed7bf0472425acd0311d543883b803388880e60a232040c7.cairo" - }, - "parent_location": [ - { - "end_col": 79, - "end_line": 105, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "parent_location": [ - { - "end_col": 115, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/external/closeMint/8f83d060e7e088c358526f8859eb82973ba2c094c7d9223df6230b744dfa211c.cairo" - }, - "parent_location": [ - { - "end_col": 15, - "end_line": 105, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "start_col": 6, - "start_line": 105 - }, - "While constructing the external wrapper for:" - ], - "start_col": 100, - "start_line": 1 - }, - "While expanding the reference 'range_check_ptr' in:" - ], - "start_col": 64, - "start_line": 105 - }, - "While constructing the external wrapper for:" - ], - "start_col": 23, - "start_line": 1 - } - }, - "3800": { - "accessible_scopes": [ - "__main__", - "__main__", - "__wrappers__", - "__wrappers__.closeMint" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 15, - "end_line": 105, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "start_col": 6, - "start_line": 105 - } - }, - "3802": { - "accessible_scopes": [ - "__main__", - "__main__", - "__wrappers__", - "__wrappers__.closeMint" - ], - "flow_tracking_data": null, - "hints": [ - { - "location": { - "end_col": 34, - "end_line": 2, - "input_file": { - "filename": "autogen/starknet/external/closeMint/8f83d060e7e088c358526f8859eb82973ba2c094c7d9223df6230b744dfa211c.cairo" - }, - "parent_location": [ - { - "end_col": 15, - "end_line": 105, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "start_col": 6, - "start_line": 105 - }, - "While constructing the external wrapper for:" - ], - "start_col": 1, - "start_line": 2 - }, - "n_prefix_newlines": 0 - } - ], - "inst": { - "end_col": 24, - "end_line": 3, - "input_file": { - "filename": "autogen/starknet/external/closeMint/8f83d060e7e088c358526f8859eb82973ba2c094c7d9223df6230b744dfa211c.cairo" - }, - "parent_location": [ - { - "end_col": 15, - "end_line": 105, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "start_col": 6, - "start_line": 105 - }, - "While constructing the external wrapper for:" - ], - "start_col": 1, - "start_line": 3 - } - }, - "3804": { - "accessible_scopes": [ - "__main__", - "__main__", - "__wrappers__", - "__wrappers__.closeMint" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 55, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/external/closeMint/8f83d060e7e088c358526f8859eb82973ba2c094c7d9223df6230b744dfa211c.cairo" - }, - "parent_location": [ - { - "end_col": 15, - "end_line": 105, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "parent_location": [ - { - "end_col": 20, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/external/closeMint/da17921a4e81c09e730800bbf23bfdbe5e9e6bfaedc59d80fbf62087fa43c27d.cairo" - }, - "parent_location": [ - { - "end_col": 15, - "end_line": 105, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "start_col": 6, - "start_line": 105 - }, - "While constructing the external wrapper for:" - ], - "start_col": 9, - "start_line": 1 - }, - "While expanding the reference 'syscall_ptr' in:" - ], - "start_col": 6, - "start_line": 105 - }, - "While constructing the external wrapper for:" - ], - "start_col": 44, - "start_line": 1 - } - }, - "3805": { - "accessible_scopes": [ - "__main__", - "__main__", - "__wrappers__", - "__wrappers__.closeMint" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 82, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/external/closeMint/8f83d060e7e088c358526f8859eb82973ba2c094c7d9223df6230b744dfa211c.cairo" - }, - "parent_location": [ - { - "end_col": 15, - "end_line": 105, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "parent_location": [ - { - "end_col": 33, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/external/closeMint/da17921a4e81c09e730800bbf23bfdbe5e9e6bfaedc59d80fbf62087fa43c27d.cairo" - }, - "parent_location": [ - { - "end_col": 15, - "end_line": 105, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "start_col": 6, - "start_line": 105 - }, - "While constructing the external wrapper for:" - ], - "start_col": 21, - "start_line": 1 - }, - "While expanding the reference 'pedersen_ptr' in:" - ], - "start_col": 6, - "start_line": 105 - }, - "While constructing the external wrapper for:" - ], - "start_col": 70, - "start_line": 1 - } - }, - "3806": { - "accessible_scopes": [ - "__main__", - "__main__", - "__wrappers__", - "__wrappers__.closeMint" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 115, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/external/closeMint/8f83d060e7e088c358526f8859eb82973ba2c094c7d9223df6230b744dfa211c.cairo" - }, - "parent_location": [ - { - "end_col": 15, - "end_line": 105, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "parent_location": [ - { - "end_col": 49, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/external/closeMint/da17921a4e81c09e730800bbf23bfdbe5e9e6bfaedc59d80fbf62087fa43c27d.cairo" - }, - "parent_location": [ - { - "end_col": 15, - "end_line": 105, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "start_col": 6, - "start_line": 105 - }, - "While constructing the external wrapper for:" - ], - "start_col": 34, - "start_line": 1 - }, - "While expanding the reference 'range_check_ptr' in:" - ], - "start_col": 6, - "start_line": 105 - }, - "While constructing the external wrapper for:" - ], - "start_col": 100, - "start_line": 1 - } - }, - "3807": { - "accessible_scopes": [ - "__main__", - "__main__", - "__wrappers__", - "__wrappers__.closeMint" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 21, - "end_line": 4, - "input_file": { - "filename": "autogen/starknet/external/closeMint/8f83d060e7e088c358526f8859eb82973ba2c094c7d9223df6230b744dfa211c.cairo" - }, - "parent_location": [ - { - "end_col": 15, - "end_line": 105, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "parent_location": [ - { - "end_col": 62, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/external/closeMint/da17921a4e81c09e730800bbf23bfdbe5e9e6bfaedc59d80fbf62087fa43c27d.cairo" - }, - "parent_location": [ - { - "end_col": 15, - "end_line": 105, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "start_col": 6, - "start_line": 105 - }, - "While constructing the external wrapper for:" - ], - "start_col": 50, - "start_line": 1 - }, - "While expanding the reference 'retdata_size' in:" - ], - "start_col": 6, - "start_line": 105 - }, - "While constructing the external wrapper for:" - ], - "start_col": 20, - "start_line": 4 - } - }, - "3809": { - "accessible_scopes": [ - "__main__", - "__main__", - "__wrappers__", - "__wrappers__.closeMint" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 16, - "end_line": 3, - "input_file": { - "filename": "autogen/starknet/external/closeMint/8f83d060e7e088c358526f8859eb82973ba2c094c7d9223df6230b744dfa211c.cairo" - }, - "parent_location": [ - { - "end_col": 15, - "end_line": 105, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "parent_location": [ - { - "end_col": 70, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/external/closeMint/da17921a4e81c09e730800bbf23bfdbe5e9e6bfaedc59d80fbf62087fa43c27d.cairo" - }, - "parent_location": [ - { - "end_col": 15, - "end_line": 105, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "start_col": 6, - "start_line": 105 - }, - "While constructing the external wrapper for:" - ], - "start_col": 63, - "start_line": 1 - }, - "While expanding the reference 'retdata' in:" - ], - "start_col": 6, - "start_line": 105 - }, - "While constructing the external wrapper for:" - ], - "start_col": 9, - "start_line": 3 - } - }, - "3810": { - "accessible_scopes": [ - "__main__", - "__main__", - "__wrappers__", - "__wrappers__.closeMint" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 72, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/external/closeMint/da17921a4e81c09e730800bbf23bfdbe5e9e6bfaedc59d80fbf62087fa43c27d.cairo" - }, - "parent_location": [ - { - "end_col": 15, - "end_line": 105, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "start_col": 6, - "start_line": 105 - }, - "While constructing the external wrapper for:" - ], - "start_col": 1, - "start_line": 1 - } - }, - "3811": { - "accessible_scopes": [ - "__main__", - "__main__", - "__main__.getMerkleRoot" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 38, - "end_line": 112, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "parent_location": [ - { - "end_col": 33, - "end_line": 13, - "input_file": { - "filename": "autogen/starknet/storage_var/Sheet_merkle_root/decl.cairo" - }, - "parent_location": [ - { - "end_col": 42, - "end_line": 115, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "start_col": 18, - "start_line": 115 - }, - "While trying to retrieve the implicit argument 'syscall_ptr' in:" - ], - "start_col": 15, - "start_line": 13 - }, - "While expanding the reference 'syscall_ptr' in:" - ], - "start_col": 20, - "start_line": 112 - } - }, - "3812": { - "accessible_scopes": [ - "__main__", - "__main__", - "__main__.getMerkleRoot" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 66, - "end_line": 112, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "parent_location": [ - { - "end_col": 61, - "end_line": 13, - "input_file": { - "filename": "autogen/starknet/storage_var/Sheet_merkle_root/decl.cairo" - }, - "parent_location": [ - { - "end_col": 42, - "end_line": 115, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "start_col": 18, - "start_line": 115 - }, - "While trying to retrieve the implicit argument 'pedersen_ptr' in:" - ], - "start_col": 35, - "start_line": 13 - }, - "While expanding the reference 'pedersen_ptr' in:" - ], - "start_col": 40, - "start_line": 112 - } - }, - "3813": { - "accessible_scopes": [ - "__main__", - "__main__", - "__main__.getMerkleRoot" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 83, - "end_line": 112, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "parent_location": [ - { - "end_col": 78, - "end_line": 13, - "input_file": { - "filename": "autogen/starknet/storage_var/Sheet_merkle_root/decl.cairo" - }, - "parent_location": [ - { - "end_col": 42, - "end_line": 115, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "start_col": 18, - "start_line": 115 - }, - "While trying to retrieve the implicit argument 'range_check_ptr' in:" - ], - "start_col": 63, - "start_line": 13 - }, - "While expanding the reference 'range_check_ptr' in:" - ], - "start_col": 68, - "start_line": 112 - } - }, - "3814": { - "accessible_scopes": [ - "__main__", - "__main__", - "__main__.getMerkleRoot" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 42, - "end_line": 115, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "start_col": 18, - "start_line": 115 - } - }, - "3816": { - "accessible_scopes": [ - "__main__", - "__main__", - "__main__.getMerkleRoot" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 20, - "end_line": 116, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "start_col": 5, - "start_line": 116 - } - }, - "3817": { - "accessible_scopes": [ - "__main__", - "__main__", - "__wrappers__", - "__wrappers__.getMerkleRoot_encode_return" - ], - "flow_tracking_data": null, - "hints": [ - { - "location": { - "end_col": 38, - "end_line": 3, - "input_file": { - "filename": "autogen/starknet/external/return/getMerkleRoot/495cd1b94c09dee8983a036b9556d859b3656107157b2238179ca9efde6ed739.cairo" - }, - "parent_location": [ - { - "end_col": 19, - "end_line": 112, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "start_col": 6, - "start_line": 112 - }, - "While handling return value of" - ], - "start_col": 5, - "start_line": 3 - }, - "n_prefix_newlines": 0 - } - ], - "inst": { - "end_col": 18, - "end_line": 4, - "input_file": { - "filename": "autogen/starknet/external/return/getMerkleRoot/495cd1b94c09dee8983a036b9556d859b3656107157b2238179ca9efde6ed739.cairo" - }, - "parent_location": [ - { - "end_col": 19, - "end_line": 112, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "start_col": 6, - "start_line": 112 - }, - "While handling return value of" - ], - "start_col": 5, - "start_line": 4 - } - }, - "3819": { - "accessible_scopes": [ - "__main__", - "__main__", - "__wrappers__", - "__wrappers__.getMerkleRoot_encode_return" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 46, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/arg_processor/3fa00a8d2ef4ad5733642f8c5f3a225f5ee5fd306a52e47a3de0f3e4a53969e9.cairo" - }, - "parent_location": [ - { - "end_col": 15, - "end_line": 113, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "start_col": 5, - "start_line": 113 - }, - "While handling return value 'root'" - ], - "start_col": 1, - "start_line": 1 - } - }, - "3820": { - "accessible_scopes": [ - "__main__", - "__main__", - "__wrappers__", - "__wrappers__.getMerkleRoot_encode_return" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 48, - "end_line": 2, - "input_file": { - "filename": "autogen/starknet/arg_processor/3fa00a8d2ef4ad5733642f8c5f3a225f5ee5fd306a52e47a3de0f3e4a53969e9.cairo" - }, - "parent_location": [ - { - "end_col": 15, - "end_line": 113, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "parent_location": [ - { - "end_col": 36, - "end_line": 11, - "input_file": { - "filename": "autogen/starknet/external/return/getMerkleRoot/495cd1b94c09dee8983a036b9556d859b3656107157b2238179ca9efde6ed739.cairo" - }, - "parent_location": [ - { - "end_col": 19, - "end_line": 112, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "start_col": 6, - "start_line": 112 - }, - "While handling return value of" - ], - "start_col": 18, - "start_line": 11 - }, - "While expanding the reference '__return_value_ptr' in:" - ], - "start_col": 5, - "start_line": 113 - }, - "While handling return value 'root'" - ], - "start_col": 26, - "start_line": 2 - } - }, - "3822": { - "accessible_scopes": [ - "__main__", - "__main__", - "__wrappers__", - "__wrappers__.getMerkleRoot_encode_return" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 74, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/external/return/getMerkleRoot/495cd1b94c09dee8983a036b9556d859b3656107157b2238179ca9efde6ed739.cairo" - }, - "parent_location": [ - { - "end_col": 19, - "end_line": 112, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "parent_location": [ - { - "end_col": 40, - "end_line": 10, - "input_file": { - "filename": "autogen/starknet/external/return/getMerkleRoot/495cd1b94c09dee8983a036b9556d859b3656107157b2238179ca9efde6ed739.cairo" - }, - "parent_location": [ - { - "end_col": 19, - "end_line": 112, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "start_col": 6, - "start_line": 112 - }, - "While handling return value of" - ], - "start_col": 25, - "start_line": 10 - }, - "While expanding the reference 'range_check_ptr' in:" - ], - "start_col": 6, - "start_line": 112 - }, - "While handling return value of" - ], - "start_col": 59, - "start_line": 1 - } - }, - "3823": { - "accessible_scopes": [ - "__main__", - "__main__", - "__wrappers__", - "__wrappers__.getMerkleRoot_encode_return" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 63, - "end_line": 11, - "input_file": { - "filename": "autogen/starknet/external/return/getMerkleRoot/495cd1b94c09dee8983a036b9556d859b3656107157b2238179ca9efde6ed739.cairo" - }, - "parent_location": [ - { - "end_col": 19, - "end_line": 112, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "start_col": 6, - "start_line": 112 - }, - "While handling return value of" - ], - "start_col": 18, - "start_line": 11 - } - }, - "3824": { - "accessible_scopes": [ - "__main__", - "__main__", - "__wrappers__", - "__wrappers__.getMerkleRoot_encode_return" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 35, - "end_line": 5, - "input_file": { - "filename": "autogen/starknet/external/return/getMerkleRoot/495cd1b94c09dee8983a036b9556d859b3656107157b2238179ca9efde6ed739.cairo" - }, - "parent_location": [ - { - "end_col": 19, - "end_line": 112, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "parent_location": [ - { - "end_col": 38, - "end_line": 12, - "input_file": { - "filename": "autogen/starknet/external/return/getMerkleRoot/495cd1b94c09dee8983a036b9556d859b3656107157b2238179ca9efde6ed739.cairo" - }, - "parent_location": [ - { - "end_col": 19, - "end_line": 112, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "start_col": 6, - "start_line": 112 - }, - "While handling return value of" - ], - "start_col": 14, - "start_line": 12 - }, - "While expanding the reference '__return_value_ptr_start' in:" - ], - "start_col": 6, - "start_line": 112 - }, - "While handling return value of" - ], - "start_col": 11, - "start_line": 5 - } - }, - "3825": { - "accessible_scopes": [ - "__main__", - "__main__", - "__wrappers__", - "__wrappers__.getMerkleRoot_encode_return" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 40, - "end_line": 12, - "input_file": { - "filename": "autogen/starknet/external/return/getMerkleRoot/495cd1b94c09dee8983a036b9556d859b3656107157b2238179ca9efde6ed739.cairo" - }, - "parent_location": [ - { - "end_col": 19, - "end_line": 112, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "start_col": 6, - "start_line": 112 - }, - "While handling return value of" - ], - "start_col": 5, - "start_line": 9 - } - }, - "3826": { - "accessible_scopes": [ - "__main__", - "__main__", - "__wrappers__", - "__wrappers__.getMerkleRoot" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 58, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/arg_processor/01cba52f8515996bb9d7070bde81ff39281d096d7024a558efcba6e1fd2402cf.cairo" - }, - "parent_location": [ - { - "end_col": 19, - "end_line": 112, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "start_col": 6, - "start_line": 112 - }, - "While handling calldata of" - ], - "start_col": 1, - "start_line": 1 - } - }, - "3827": { - "accessible_scopes": [ - "__main__", - "__main__", - "__wrappers__", - "__wrappers__.getMerkleRoot" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 64, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/external/getMerkleRoot/b2c52ca2d2a8fc8791a983086d8716c5eacd0c3d62934914d2286f84b98ff4cb.cairo" - }, - "parent_location": [ - { - "end_col": 38, - "end_line": 112, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "parent_location": [ - { - "end_col": 55, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/external/getMerkleRoot/9ec40c6ab1532b67d6b3241da7f0fc2a824d63002b85dbc8e7b345e400aebd93.cairo" - }, - "parent_location": [ - { - "end_col": 19, - "end_line": 112, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "start_col": 6, - "start_line": 112 - }, - "While constructing the external wrapper for:" - ], - "start_col": 44, - "start_line": 1 - }, - "While expanding the reference 'syscall_ptr' in:" - ], - "start_col": 20, - "start_line": 112 - }, - "While constructing the external wrapper for:" - ], - "start_col": 19, - "start_line": 1 - } - }, - "3828": { - "accessible_scopes": [ - "__main__", - "__main__", - "__wrappers__", - "__wrappers__.getMerkleRoot" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 110, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/external/getMerkleRoot/9684a85e93c782014ca14293edea4eb2502039a5a7b6538ecd39c56faaf12529.cairo" - }, - "parent_location": [ - { - "end_col": 66, - "end_line": 112, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "parent_location": [ - { - "end_col": 82, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/external/getMerkleRoot/9ec40c6ab1532b67d6b3241da7f0fc2a824d63002b85dbc8e7b345e400aebd93.cairo" - }, - "parent_location": [ - { - "end_col": 19, - "end_line": 112, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "start_col": 6, - "start_line": 112 - }, - "While constructing the external wrapper for:" - ], - "start_col": 70, - "start_line": 1 - }, - "While expanding the reference 'pedersen_ptr' in:" - ], - "start_col": 40, - "start_line": 112 - }, - "While constructing the external wrapper for:" - ], - "start_col": 20, - "start_line": 1 - } - }, - "3829": { - "accessible_scopes": [ - "__main__", - "__main__", - "__wrappers__", - "__wrappers__.getMerkleRoot" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 67, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/external/getMerkleRoot/741ea357d6336b0bed7bf0472425acd0311d543883b803388880e60a232040c7.cairo" - }, - "parent_location": [ - { - "end_col": 83, - "end_line": 112, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "parent_location": [ - { - "end_col": 115, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/external/getMerkleRoot/9ec40c6ab1532b67d6b3241da7f0fc2a824d63002b85dbc8e7b345e400aebd93.cairo" - }, - "parent_location": [ - { - "end_col": 19, - "end_line": 112, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "start_col": 6, - "start_line": 112 - }, - "While constructing the external wrapper for:" - ], - "start_col": 100, - "start_line": 1 - }, - "While expanding the reference 'range_check_ptr' in:" - ], - "start_col": 68, - "start_line": 112 - }, - "While constructing the external wrapper for:" - ], - "start_col": 23, - "start_line": 1 - } - }, - "3830": { - "accessible_scopes": [ - "__main__", - "__main__", - "__wrappers__", - "__wrappers__.getMerkleRoot" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 19, - "end_line": 112, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "start_col": 6, - "start_line": 112 - } - }, - "3832": { - "accessible_scopes": [ - "__main__", - "__main__", - "__wrappers__", - "__wrappers__.getMerkleRoot" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 115, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/external/getMerkleRoot/9ec40c6ab1532b67d6b3241da7f0fc2a824d63002b85dbc8e7b345e400aebd93.cairo" - }, - "parent_location": [ - { - "end_col": 19, - "end_line": 112, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "parent_location": [ - { - "end_col": 102, - "end_line": 2, - "input_file": { - "filename": "autogen/starknet/external/getMerkleRoot/9ec40c6ab1532b67d6b3241da7f0fc2a824d63002b85dbc8e7b345e400aebd93.cairo" - }, - "parent_location": [ - { - "end_col": 19, - "end_line": 112, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "start_col": 6, - "start_line": 112 - }, - "While constructing the external wrapper for:" - ], - "start_col": 87, - "start_line": 2 - }, - "While expanding the reference 'range_check_ptr' in:" - ], - "start_col": 6, - "start_line": 112 - }, - "While constructing the external wrapper for:" - ], - "start_col": 100, - "start_line": 1 - } - }, - "3833": { - "accessible_scopes": [ - "__main__", - "__main__", - "__wrappers__", - "__wrappers__.getMerkleRoot" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 103, - "end_line": 2, - "input_file": { - "filename": "autogen/starknet/external/getMerkleRoot/9ec40c6ab1532b67d6b3241da7f0fc2a824d63002b85dbc8e7b345e400aebd93.cairo" - }, - "parent_location": [ - { - "end_col": 19, - "end_line": 112, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "start_col": 6, - "start_line": 112 - }, - "While constructing the external wrapper for:" - ], - "start_col": 48, - "start_line": 2 - } - }, - "3835": { - "accessible_scopes": [ - "__main__", - "__main__", - "__wrappers__", - "__wrappers__.getMerkleRoot" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 55, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/external/getMerkleRoot/9ec40c6ab1532b67d6b3241da7f0fc2a824d63002b85dbc8e7b345e400aebd93.cairo" - }, - "parent_location": [ - { - "end_col": 19, - "end_line": 112, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "parent_location": [ - { - "end_col": 20, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/external/getMerkleRoot/da17921a4e81c09e730800bbf23bfdbe5e9e6bfaedc59d80fbf62087fa43c27d.cairo" - }, - "parent_location": [ - { - "end_col": 19, - "end_line": 112, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "start_col": 6, - "start_line": 112 - }, - "While constructing the external wrapper for:" - ], - "start_col": 9, - "start_line": 1 - }, - "While expanding the reference 'syscall_ptr' in:" - ], - "start_col": 6, - "start_line": 112 - }, - "While constructing the external wrapper for:" - ], - "start_col": 44, - "start_line": 1 - } - }, - "3836": { - "accessible_scopes": [ - "__main__", - "__main__", - "__wrappers__", - "__wrappers__.getMerkleRoot" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 82, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/external/getMerkleRoot/9ec40c6ab1532b67d6b3241da7f0fc2a824d63002b85dbc8e7b345e400aebd93.cairo" - }, - "parent_location": [ - { - "end_col": 19, - "end_line": 112, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "parent_location": [ - { - "end_col": 33, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/external/getMerkleRoot/da17921a4e81c09e730800bbf23bfdbe5e9e6bfaedc59d80fbf62087fa43c27d.cairo" - }, - "parent_location": [ - { - "end_col": 19, - "end_line": 112, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "start_col": 6, - "start_line": 112 - }, - "While constructing the external wrapper for:" - ], - "start_col": 21, - "start_line": 1 - }, - "While expanding the reference 'pedersen_ptr' in:" - ], - "start_col": 6, - "start_line": 112 - }, - "While constructing the external wrapper for:" - ], - "start_col": 70, - "start_line": 1 - } - }, - "3837": { - "accessible_scopes": [ - "__main__", - "__main__", - "__wrappers__", - "__wrappers__.getMerkleRoot" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 21, - "end_line": 2, - "input_file": { - "filename": "autogen/starknet/external/getMerkleRoot/9ec40c6ab1532b67d6b3241da7f0fc2a824d63002b85dbc8e7b345e400aebd93.cairo" - }, - "parent_location": [ - { - "end_col": 19, - "end_line": 112, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "parent_location": [ - { - "end_col": 49, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/external/getMerkleRoot/da17921a4e81c09e730800bbf23bfdbe5e9e6bfaedc59d80fbf62087fa43c27d.cairo" - }, - "parent_location": [ - { - "end_col": 19, - "end_line": 112, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "start_col": 6, - "start_line": 112 - }, - "While constructing the external wrapper for:" - ], - "start_col": 34, - "start_line": 1 - }, - "While expanding the reference 'range_check_ptr' in:" - ], - "start_col": 6, - "start_line": 112 - }, - "While constructing the external wrapper for:" - ], - "start_col": 6, - "start_line": 2 - } - }, - "3838": { - "accessible_scopes": [ - "__main__", - "__main__", - "__wrappers__", - "__wrappers__.getMerkleRoot" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 35, - "end_line": 2, - "input_file": { - "filename": "autogen/starknet/external/getMerkleRoot/9ec40c6ab1532b67d6b3241da7f0fc2a824d63002b85dbc8e7b345e400aebd93.cairo" - }, - "parent_location": [ - { - "end_col": 19, - "end_line": 112, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "parent_location": [ - { - "end_col": 62, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/external/getMerkleRoot/da17921a4e81c09e730800bbf23bfdbe5e9e6bfaedc59d80fbf62087fa43c27d.cairo" - }, - "parent_location": [ - { - "end_col": 19, - "end_line": 112, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "start_col": 6, - "start_line": 112 - }, - "While constructing the external wrapper for:" - ], - "start_col": 50, - "start_line": 1 - }, - "While expanding the reference 'retdata_size' in:" - ], - "start_col": 6, - "start_line": 112 - }, - "While constructing the external wrapper for:" - ], - "start_col": 23, - "start_line": 2 - } - }, - "3839": { - "accessible_scopes": [ - "__main__", - "__main__", - "__wrappers__", - "__wrappers__.getMerkleRoot" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 44, - "end_line": 2, - "input_file": { - "filename": "autogen/starknet/external/getMerkleRoot/9ec40c6ab1532b67d6b3241da7f0fc2a824d63002b85dbc8e7b345e400aebd93.cairo" - }, - "parent_location": [ - { - "end_col": 19, - "end_line": 112, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "parent_location": [ - { - "end_col": 70, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/external/getMerkleRoot/da17921a4e81c09e730800bbf23bfdbe5e9e6bfaedc59d80fbf62087fa43c27d.cairo" - }, - "parent_location": [ - { - "end_col": 19, - "end_line": 112, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "start_col": 6, - "start_line": 112 - }, - "While constructing the external wrapper for:" - ], - "start_col": 63, - "start_line": 1 - }, - "While expanding the reference 'retdata' in:" - ], - "start_col": 6, - "start_line": 112 - }, - "While constructing the external wrapper for:" - ], - "start_col": 37, - "start_line": 2 - } - }, - "3840": { - "accessible_scopes": [ - "__main__", - "__main__", - "__wrappers__", - "__wrappers__.getMerkleRoot" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 72, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/external/getMerkleRoot/da17921a4e81c09e730800bbf23bfdbe5e9e6bfaedc59d80fbf62087fa43c27d.cairo" - }, - "parent_location": [ - { - "end_col": 19, - "end_line": 112, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "start_col": 6, - "start_line": 112 - }, - "While constructing the external wrapper for:" - ], - "start_col": 1, - "start_line": 1 - } - }, - "3841": { - "accessible_scopes": [ - "__main__", - "__main__", - "__main__.setCell" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 18, - "end_line": 123, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "start_col": 5, - "start_line": 123 - } - }, - "3843": { - "accessible_scopes": [ - "__main__", - "__main__", - "__main__.setCell" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 77, - "end_line": 120, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "parent_location": [ - { - "end_col": 30, - "end_line": 55, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/uint256.cairo" - }, - "parent_location": [ - { - "end_col": 40, - "end_line": 124, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "start_col": 23, - "start_line": 124 - }, - "While trying to retrieve the implicit argument 'range_check_ptr' in:" - ], - "start_col": 15, - "start_line": 55 - }, - "While expanding the reference 'range_check_ptr' in:" - ], - "start_col": 62, - "start_line": 120 - } - }, - "3844": { - "accessible_scopes": [ - "__main__", - "__main__", - "__main__.setCell" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 18, - "end_line": 121, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "parent_location": [ - { - "end_col": 39, - "end_line": 124, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "start_col": 32, - "start_line": 124 - }, - "While expanding the reference 'tokenId' in:" - ], - "start_col": 5, - "start_line": 121 - } - }, - "3845": { - "accessible_scopes": [ - "__main__", - "__main__", - "__main__.setCell" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 40, - "end_line": 124, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "start_col": 23, - "start_line": 124 - } - }, - "3847": { - "accessible_scopes": [ - "__main__", - "__main__", - "__main__.setCell" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 32, - "end_line": 120, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "parent_location": [ - { - "end_col": 36, - "end_line": 311, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" - }, - "parent_location": [ - { - "end_col": 45, - "end_line": 128, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "start_col": 21, - "start_line": 128 - }, - "While trying to retrieve the implicit argument 'syscall_ptr' in:" - ], - "start_col": 18, - "start_line": 311 - }, - "While expanding the reference 'syscall_ptr' in:" - ], - "start_col": 14, - "start_line": 120 - } - }, - "3848": { - "accessible_scopes": [ - "__main__", - "__main__", - "__main__.setCell" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 60, - "end_line": 120, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "parent_location": [ - { - "end_col": 64, - "end_line": 311, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" - }, - "parent_location": [ - { - "end_col": 45, - "end_line": 128, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "start_col": 21, - "start_line": 128 - }, - "While trying to retrieve the implicit argument 'pedersen_ptr' in:" - ], - "start_col": 38, - "start_line": 311 - }, - "While expanding the reference 'pedersen_ptr' in:" - ], - "start_col": 34, - "start_line": 120 - } - }, - "3849": { - "accessible_scopes": [ - "__main__", - "__main__", - "__main__.setCell" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 30, - "end_line": 55, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/uint256.cairo" - }, - "parent_location": [ - { - "end_col": 40, - "end_line": 124, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "parent_location": [ - { - "end_col": 81, - "end_line": 311, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" - }, - "parent_location": [ - { - "end_col": 45, - "end_line": 128, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "start_col": 21, - "start_line": 128 - }, - "While trying to retrieve the implicit argument 'range_check_ptr' in:" - ], - "start_col": 66, - "start_line": 311 - }, - "While expanding the reference 'range_check_ptr' in:" - ], - "start_col": 23, - "start_line": 124 - }, - "While trying to update the implicit return value 'range_check_ptr' in:" - ], - "start_col": 15, - "start_line": 55 - } - }, - "3850": { - "accessible_scopes": [ - "__main__", - "__main__", - "__main__.setCell" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 13, - "end_line": 124, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "parent_location": [ - { - "end_col": 31, - "end_line": 125, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "parent_location": [ - { - "end_col": 44, - "end_line": 128, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "start_col": 36, - "start_line": 128 - }, - "While expanding the reference 'token_id' in:" - ], - "start_col": 28, - "start_line": 125 - }, - "While expanding the reference 'low' in:" - ], - "start_col": 10, - "start_line": 124 - } - }, - "3851": { - "accessible_scopes": [ - "__main__", - "__main__", - "__main__.setCell" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 19, - "end_line": 124, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "parent_location": [ - { - "end_col": 37, - "end_line": 125, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "parent_location": [ - { - "end_col": 44, - "end_line": 128, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "start_col": 36, - "start_line": 128 - }, - "While expanding the reference 'token_id' in:" - ], - "start_col": 33, - "start_line": 125 - }, - "While expanding the reference 'high' in:" - ], - "start_col": 15, - "start_line": 124 - } - }, - "3852": { - "accessible_scopes": [ - "__main__", - "__main__", - "__main__.setCell" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 45, - "end_line": 128, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "start_col": 21, - "start_line": 128 - } - }, - "3854": { - "accessible_scopes": [ - "__main__", - "__main__", - "__main__.setCell" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 29, - "end_line": 129, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "start_col": 9, - "start_line": 129 - } - }, - "3856": { - "accessible_scopes": [ - "__main__", - "__main__", - "__main__.setCell" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 36, - "end_line": 311, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" - }, - "parent_location": [ - { - "end_col": 45, - "end_line": 128, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "parent_location": [ - { - "end_col": 37, - "end_line": 109, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" - }, - "parent_location": [ - { - "end_col": 48, - "end_line": 133, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "start_col": 23, - "start_line": 133 - }, - "While trying to retrieve the implicit argument 'syscall_ptr' in:" - ], - "start_col": 19, - "start_line": 109 - }, - "While expanding the reference 'syscall_ptr' in:" - ], - "start_col": 21, - "start_line": 128 - }, - "While trying to update the implicit return value 'syscall_ptr' in:" - ], - "start_col": 18, - "start_line": 311 - } - }, - "3857": { - "accessible_scopes": [ - "__main__", - "__main__", - "__main__.setCell" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 64, - "end_line": 311, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" - }, - "parent_location": [ - { - "end_col": 45, - "end_line": 128, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "parent_location": [ - { - "end_col": 65, - "end_line": 109, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" - }, - "parent_location": [ - { - "end_col": 48, - "end_line": 133, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "start_col": 23, - "start_line": 133 - }, - "While trying to retrieve the implicit argument 'pedersen_ptr' in:" - ], - "start_col": 39, - "start_line": 109 - }, - "While expanding the reference 'pedersen_ptr' in:" - ], - "start_col": 21, - "start_line": 128 - }, - "While trying to update the implicit return value 'pedersen_ptr' in:" - ], - "start_col": 38, - "start_line": 311 - } - }, - "3858": { - "accessible_scopes": [ - "__main__", - "__main__", - "__main__.setCell" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 81, - "end_line": 311, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" - }, - "parent_location": [ - { - "end_col": 45, - "end_line": 128, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "parent_location": [ - { - "end_col": 82, - "end_line": 109, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" - }, - "parent_location": [ - { - "end_col": 48, - "end_line": 133, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "start_col": 23, - "start_line": 133 - }, - "While trying to retrieve the implicit argument 'range_check_ptr' in:" - ], - "start_col": 67, - "start_line": 109 - }, - "While expanding the reference 'range_check_ptr' in:" - ], - "start_col": 21, - "start_line": 128 - }, - "While trying to update the implicit return value 'range_check_ptr' in:" - ], - "start_col": 66, - "start_line": 311 - } - }, - "3859": { - "accessible_scopes": [ - "__main__", - "__main__", - "__main__.setCell" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 13, - "end_line": 124, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "parent_location": [ - { - "end_col": 31, - "end_line": 125, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "parent_location": [ - { - "end_col": 47, - "end_line": 133, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "start_col": 39, - "start_line": 133 - }, - "While expanding the reference 'token_id' in:" - ], - "start_col": 28, - "start_line": 125 - }, - "While expanding the reference 'low' in:" - ], - "start_col": 10, - "start_line": 124 - } - }, - "3860": { - "accessible_scopes": [ - "__main__", - "__main__", - "__main__.setCell" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 19, - "end_line": 124, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "parent_location": [ - { - "end_col": 37, - "end_line": 125, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "parent_location": [ - { - "end_col": 47, - "end_line": 133, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "start_col": 39, - "start_line": 133 - }, - "While expanding the reference 'token_id' in:" - ], - "start_col": 33, - "start_line": 125 - }, - "While expanding the reference 'high' in:" - ], - "start_col": 15, - "start_line": 124 - } - }, - "3861": { - "accessible_scopes": [ - "__main__", - "__main__", - "__main__.setCell" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 48, - "end_line": 133, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "start_col": 23, - "start_line": 133 - } - }, - "3863": { - "accessible_scopes": [ - "__main__", - "__main__", - "__main__.setCell" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 37, - "end_line": 109, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" - }, - "parent_location": [ - { - "end_col": 48, - "end_line": 133, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "parent_location": [ - { - "end_col": 43, - "end_line": 200, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/starknet/common/syscalls.cairo" - }, - "parent_location": [ - { - "end_col": 44, - "end_line": 134, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "start_col": 24, - "start_line": 134 - }, - "While trying to retrieve the implicit argument 'syscall_ptr' in:" - ], - "start_col": 25, - "start_line": 200 - }, - "While expanding the reference 'syscall_ptr' in:" - ], - "start_col": 23, - "start_line": 133 - }, - "While trying to update the implicit return value 'syscall_ptr' in:" - ], - "start_col": 19, - "start_line": 109 - } - }, - "3864": { - "accessible_scopes": [ - "__main__", - "__main__", - "__main__.setCell" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 44, - "end_line": 134, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "start_col": 24, - "start_line": 134 - } - }, - "3866": { - "accessible_scopes": [ - "__main__", - "__main__", - "__main__.setCell" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 31, - "end_line": 135, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "start_col": 9, - "start_line": 135 - } - }, - "3867": { - "accessible_scopes": [ - "__main__", - "__main__", - "__main__.setCell" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 43, - "end_line": 200, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/starknet/common/syscalls.cairo" - }, - "parent_location": [ - { - "end_col": 44, - "end_line": 134, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "parent_location": [ - { - "end_col": 37, - "end_line": 91, - "input_file": { - "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" - }, - "parent_location": [ - { - "end_col": 86, - "end_line": 138, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "start_col": 5, - "start_line": 138 - }, - "While trying to retrieve the implicit argument 'syscall_ptr' in:" - ], - "start_col": 19, - "start_line": 91 - }, - "While expanding the reference 'syscall_ptr' in:" - ], - "start_col": 24, - "start_line": 134 - }, - "While trying to update the implicit return value 'syscall_ptr' in:" - ], - "start_col": 25, - "start_line": 200 - } - }, - "3868": { - "accessible_scopes": [ - "__main__", - "__main__", - "__main__.setCell" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 65, - "end_line": 109, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" - }, - "parent_location": [ - { - "end_col": 48, - "end_line": 133, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "parent_location": [ - { - "end_col": 65, - "end_line": 91, - "input_file": { - "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" - }, - "parent_location": [ - { - "end_col": 86, - "end_line": 138, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "start_col": 5, - "start_line": 138 - }, - "While trying to retrieve the implicit argument 'pedersen_ptr' in:" - ], - "start_col": 39, - "start_line": 91 - }, - "While expanding the reference 'pedersen_ptr' in:" - ], - "start_col": 23, - "start_line": 133 - }, - "While trying to update the implicit return value 'pedersen_ptr' in:" - ], - "start_col": 39, - "start_line": 109 - } - }, - "3869": { - "accessible_scopes": [ - "__main__", - "__main__", - "__main__.setCell" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 82, - "end_line": 109, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" - }, - "parent_location": [ - { - "end_col": 48, - "end_line": 133, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "parent_location": [ - { - "end_col": 82, - "end_line": 91, - "input_file": { - "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" - }, - "parent_location": [ - { - "end_col": 86, - "end_line": 138, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "start_col": 5, - "start_line": 138 - }, - "While trying to retrieve the implicit argument 'range_check_ptr' in:" - ], - "start_col": 67, - "start_line": 91 - }, - "While expanding the reference 'range_check_ptr' in:" - ], - "start_col": 23, - "start_line": 133 - }, - "While trying to update the implicit return value 'range_check_ptr' in:" - ], - "start_col": 67, - "start_line": 109 - } - }, - "3870": { - "accessible_scopes": [ - "__main__", - "__main__", - "__main__.setCell" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 18, - "end_line": 121, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "parent_location": [ - { - "end_col": 27, - "end_line": 138, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "start_col": 20, - "start_line": 138 - }, - "While expanding the reference 'tokenId' in:" - ], - "start_col": 5, - "start_line": 121 - } - }, - "3871": { - "accessible_scopes": [ - "__main__", - "__main__", - "__main__.setCell" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 41, - "end_line": 121, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "parent_location": [ - { - "end_col": 44, - "end_line": 138, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "start_col": 29, - "start_line": 138 - }, - "While expanding the reference 'contractAddress' in:" - ], - "start_col": 20, - "start_line": 121 - } - }, - "3872": { - "accessible_scopes": [ - "__main__", - "__main__", - "__main__.setCell" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 54, - "end_line": 121, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "parent_location": [ - { - "end_col": 51, - "end_line": 138, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "start_col": 46, - "start_line": 138 - }, - "While expanding the reference 'value' in:" - ], - "start_col": 43, - "start_line": 121 - } - }, - "3873": { - "accessible_scopes": [ - "__main__", - "__main__", - "__main__.setCell" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 79, - "end_line": 121, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "parent_location": [ - { - "end_col": 70, - "end_line": 138, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "start_col": 53, - "start_line": 138 - }, - "While expanding the reference 'cell_calldata_len' in:" - ], - "start_col": 56, - "start_line": 121 - } - }, - "3874": { - "accessible_scopes": [ - "__main__", - "__main__", - "__main__.setCell" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 101, - "end_line": 121, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "parent_location": [ - { - "end_col": 85, - "end_line": 138, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "start_col": 72, - "start_line": 138 - }, - "While expanding the reference 'cell_calldata' in:" - ], - "start_col": 81, - "start_line": 121 - } - }, - "3875": { - "accessible_scopes": [ - "__main__", - "__main__", - "__main__.setCell" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 86, - "end_line": 138, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "start_col": 5, - "start_line": 138 - } - }, - "3877": { - "accessible_scopes": [ - "__main__", - "__main__", - "__main__.setCell" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 15, - "end_line": 139, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "start_col": 5, - "start_line": 139 - } - }, - "3878": { - "accessible_scopes": [ - "__main__", - "__main__", - "__wrappers__", - "__wrappers__.setCell" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 67, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/external/setCell/741ea357d6336b0bed7bf0472425acd0311d543883b803388880e60a232040c7.cairo" - }, - "parent_location": [ - { - "end_col": 77, - "end_line": 120, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "parent_location": [ - { - "end_col": 24, - "end_line": 2, - "input_file": { - "filename": "autogen/starknet/arg_processor/cf9d155a82359872fd6c3831de72477dc112f8fe156e1c50035a0d8fc012189b.cairo" - }, - "parent_location": [ - { - "end_col": 101, - "end_line": 121, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "start_col": 81, - "start_line": 121 - }, - "While handling calldata argument 'cell_calldata'" - ], - "start_col": 9, - "start_line": 2 - }, - "While expanding the reference 'range_check_ptr' in:" - ], - "start_col": 62, - "start_line": 120 - }, - "While constructing the external wrapper for:" - ], - "start_col": 23, - "start_line": 1 - } - }, - "3879": { - "accessible_scopes": [ - "__main__", - "__main__", - "__wrappers__", - "__wrappers__.setCell" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 56, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/arg_processor/b19b7bf952f10d75c6d6d48c16be4d0aa794947e7c7409b4e5d1fff596b961ac.cairo" - }, - "parent_location": [ - { - "end_col": 79, - "end_line": 121, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "parent_location": [ - { - "end_col": 60, - "end_line": 2, - "input_file": { - "filename": "autogen/starknet/arg_processor/cf9d155a82359872fd6c3831de72477dc112f8fe156e1c50035a0d8fc012189b.cairo" - }, - "parent_location": [ - { - "end_col": 101, - "end_line": 121, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "start_col": 81, - "start_line": 121 - }, - "While handling calldata argument 'cell_calldata'" - ], - "start_col": 28, - "start_line": 2 - }, - "While expanding the reference '__calldata_arg_cell_calldata_len' in:" - ], - "start_col": 56, - "start_line": 121 - }, - "While handling calldata argument 'cell_calldata_len'" - ], - "start_col": 40, - "start_line": 1 - } - }, - "3880": { - "accessible_scopes": [ - "__main__", - "__main__", - "__wrappers__", - "__wrappers__.setCell" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 61, - "end_line": 2, - "input_file": { - "filename": "autogen/starknet/arg_processor/cf9d155a82359872fd6c3831de72477dc112f8fe156e1c50035a0d8fc012189b.cairo" - }, - "parent_location": [ - { - "end_col": 101, - "end_line": 121, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "start_col": 81, - "start_line": 121 - }, - "While handling calldata argument 'cell_calldata'" - ], - "start_col": 1, - "start_line": 2 - } - }, - "3881": { - "accessible_scopes": [ - "__main__", - "__main__", - "__wrappers__", - "__wrappers__.setCell" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 40, - "end_line": 2, - "input_file": { - "filename": "autogen/starknet/arg_processor/b19b7bf952f10d75c6d6d48c16be4d0aa794947e7c7409b4e5d1fff596b961ac.cairo" - }, - "parent_location": [ - { - "end_col": 79, - "end_line": 121, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "parent_location": [ - { - "end_col": 40, - "end_line": 8, - "input_file": { - "filename": "autogen/starknet/arg_processor/cf9d155a82359872fd6c3831de72477dc112f8fe156e1c50035a0d8fc012189b.cairo" - }, - "parent_location": [ - { - "end_col": 101, - "end_line": 121, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "start_col": 81, - "start_line": 121 - }, - "While handling calldata argument 'cell_calldata'" - ], - "start_col": 26, - "start_line": 8 - }, - "While expanding the reference '__calldata_ptr' in:" - ], - "start_col": 56, - "start_line": 121 - }, - "While handling calldata argument 'cell_calldata_len'" - ], - "start_col": 22, - "start_line": 2 - } - }, - "3883": { - "accessible_scopes": [ - "__main__", - "__main__", - "__wrappers__", - "__wrappers__.setCell" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 56, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/arg_processor/b19b7bf952f10d75c6d6d48c16be4d0aa794947e7c7409b4e5d1fff596b961ac.cairo" - }, - "parent_location": [ - { - "end_col": 79, - "end_line": 121, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "parent_location": [ - { - "end_col": 75, - "end_line": 8, - "input_file": { - "filename": "autogen/starknet/arg_processor/cf9d155a82359872fd6c3831de72477dc112f8fe156e1c50035a0d8fc012189b.cairo" - }, - "parent_location": [ - { - "end_col": 101, - "end_line": 121, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "start_col": 81, - "start_line": 121 - }, - "While handling calldata argument 'cell_calldata'" - ], - "start_col": 43, - "start_line": 8 - }, - "While expanding the reference '__calldata_arg_cell_calldata_len' in:" - ], - "start_col": 56, - "start_line": 121 - }, - "While handling calldata argument 'cell_calldata_len'" - ], - "start_col": 40, - "start_line": 1 - } - }, - "3884": { - "accessible_scopes": [ - "__main__", - "__main__", - "__wrappers__", - "__wrappers__.setCell" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 79, - "end_line": 8, - "input_file": { - "filename": "autogen/starknet/arg_processor/cf9d155a82359872fd6c3831de72477dc112f8fe156e1c50035a0d8fc012189b.cairo" - }, - "parent_location": [ - { - "end_col": 101, - "end_line": 121, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "start_col": 81, - "start_line": 121 - }, - "While handling calldata argument 'cell_calldata'" - ], - "start_col": 26, - "start_line": 8 - } - }, - "3885": { - "accessible_scopes": [ - "__main__", - "__main__", - "__wrappers__", - "__wrappers__.setCell" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 58, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/arg_processor/01cba52f8515996bb9d7070bde81ff39281d096d7024a558efcba6e1fd2402cf.cairo" - }, - "parent_location": [ - { - "end_col": 13, - "end_line": 120, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "start_col": 6, - "start_line": 120 - }, - "While handling calldata of" - ], - "start_col": 1, - "start_line": 1 - } - }, - "3886": { - "accessible_scopes": [ - "__main__", - "__main__", - "__wrappers__", - "__wrappers__.setCell" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 67, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/external/setCell/741ea357d6336b0bed7bf0472425acd0311d543883b803388880e60a232040c7.cairo" - }, - "parent_location": [ - { - "end_col": 77, - "end_line": 120, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "parent_location": [ - { - "end_col": 38, - "end_line": 3, - "input_file": { - "filename": "autogen/starknet/arg_processor/cf9d155a82359872fd6c3831de72477dc112f8fe156e1c50035a0d8fc012189b.cairo" - }, - "parent_location": [ - { - "end_col": 101, - "end_line": 121, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "parent_location": [ - { - "end_col": 115, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/external/setCell/4283afad5f046e779f9086ab343c3867291282e0a5a6a5743aa6762671e022a9.cairo" - }, - "parent_location": [ - { - "end_col": 13, - "end_line": 120, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "start_col": 6, - "start_line": 120 - }, - "While constructing the external wrapper for:" - ], - "start_col": 100, - "start_line": 1 - }, - "While expanding the reference 'range_check_ptr' in:" - ], - "start_col": 81, - "start_line": 121 - }, - "While handling calldata argument 'cell_calldata'" - ], - "start_col": 23, - "start_line": 3 - }, - "While expanding the reference 'range_check_ptr' in:" - ], - "start_col": 62, - "start_line": 120 - }, - "While constructing the external wrapper for:" - ], - "start_col": 23, - "start_line": 1 - } - }, - "3887": { - "accessible_scopes": [ - "__main__", - "__main__", - "__wrappers__", - "__wrappers__.setCell" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 64, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/external/setCell/b2c52ca2d2a8fc8791a983086d8716c5eacd0c3d62934914d2286f84b98ff4cb.cairo" - }, - "parent_location": [ - { - "end_col": 32, - "end_line": 120, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "parent_location": [ - { - "end_col": 55, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/external/setCell/4283afad5f046e779f9086ab343c3867291282e0a5a6a5743aa6762671e022a9.cairo" - }, - "parent_location": [ - { - "end_col": 13, - "end_line": 120, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "start_col": 6, - "start_line": 120 - }, - "While constructing the external wrapper for:" - ], - "start_col": 44, - "start_line": 1 - }, - "While expanding the reference 'syscall_ptr' in:" - ], - "start_col": 14, - "start_line": 120 - }, - "While constructing the external wrapper for:" - ], - "start_col": 19, - "start_line": 1 - } - }, - "3888": { - "accessible_scopes": [ - "__main__", - "__main__", - "__wrappers__", - "__wrappers__.setCell" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 110, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/external/setCell/9684a85e93c782014ca14293edea4eb2502039a5a7b6538ecd39c56faaf12529.cairo" - }, - "parent_location": [ - { - "end_col": 60, - "end_line": 120, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "parent_location": [ - { - "end_col": 82, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/external/setCell/4283afad5f046e779f9086ab343c3867291282e0a5a6a5743aa6762671e022a9.cairo" - }, - "parent_location": [ - { - "end_col": 13, - "end_line": 120, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "start_col": 6, - "start_line": 120 - }, - "While constructing the external wrapper for:" - ], - "start_col": 70, - "start_line": 1 - }, - "While expanding the reference 'pedersen_ptr' in:" - ], - "start_col": 34, - "start_line": 120 - }, - "While constructing the external wrapper for:" - ], - "start_col": 20, - "start_line": 1 - } - }, - "3889": { - "accessible_scopes": [ - "__main__", - "__main__", - "__wrappers__", - "__wrappers__.setCell" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 42, - "end_line": 3, - "input_file": { - "filename": "autogen/starknet/arg_processor/cf9d155a82359872fd6c3831de72477dc112f8fe156e1c50035a0d8fc012189b.cairo" - }, - "parent_location": [ - { - "end_col": 101, - "end_line": 121, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "parent_location": [ - { - "end_col": 115, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/external/setCell/4283afad5f046e779f9086ab343c3867291282e0a5a6a5743aa6762671e022a9.cairo" - }, - "parent_location": [ - { - "end_col": 13, - "end_line": 120, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "start_col": 6, - "start_line": 120 - }, - "While constructing the external wrapper for:" - ], - "start_col": 100, - "start_line": 1 - }, - "While expanding the reference 'range_check_ptr' in:" - ], - "start_col": 81, - "start_line": 121 - }, - "While handling calldata argument 'cell_calldata'" - ], - "start_col": 23, - "start_line": 3 - } - }, - "3891": { - "accessible_scopes": [ - "__main__", - "__main__", - "__wrappers__", - "__wrappers__.setCell" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 46, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/arg_processor/128c2321f9070588a8d11dc60a4b2c6a3b0b1a97919597936f0847381384bd91.cairo" - }, - "parent_location": [ - { - "end_col": 18, - "end_line": 121, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "parent_location": [ - { - "end_col": 147, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/external/setCell/4283afad5f046e779f9086ab343c3867291282e0a5a6a5743aa6762671e022a9.cairo" - }, - "parent_location": [ - { - "end_col": 13, - "end_line": 120, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "start_col": 6, - "start_line": 120 - }, - "While constructing the external wrapper for:" - ], - "start_col": 125, - "start_line": 1 - }, - "While expanding the reference '__calldata_arg_tokenId' in:" - ], - "start_col": 5, - "start_line": 121 - }, - "While handling calldata argument 'tokenId'" - ], - "start_col": 30, - "start_line": 1 - } - }, - "3892": { - "accessible_scopes": [ - "__main__", - "__main__", - "__wrappers__", - "__wrappers__.setCell" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 54, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/arg_processor/138fbb2581468edec2beca8ce38fccac384aeb4b51fe6af3126d17a00f09f61e.cairo" - }, - "parent_location": [ - { - "end_col": 41, - "end_line": 121, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "parent_location": [ - { - "end_col": 195, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/external/setCell/4283afad5f046e779f9086ab343c3867291282e0a5a6a5743aa6762671e022a9.cairo" - }, - "parent_location": [ - { - "end_col": 13, - "end_line": 120, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "start_col": 6, - "start_line": 120 - }, - "While constructing the external wrapper for:" - ], - "start_col": 165, - "start_line": 1 - }, - "While expanding the reference '__calldata_arg_contractAddress' in:" - ], - "start_col": 20, - "start_line": 121 - }, - "While handling calldata argument 'contractAddress'" - ], - "start_col": 38, - "start_line": 1 - } - }, - "3893": { - "accessible_scopes": [ - "__main__", - "__main__", - "__wrappers__", - "__wrappers__.setCell" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 44, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/arg_processor/3e93b8906c329e7a5c33e020ce7a5a9c542c4444955be98eec5fcbef545a8662.cairo" - }, - "parent_location": [ - { - "end_col": 54, - "end_line": 121, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "parent_location": [ - { - "end_col": 223, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/external/setCell/4283afad5f046e779f9086ab343c3867291282e0a5a6a5743aa6762671e022a9.cairo" - }, - "parent_location": [ - { - "end_col": 13, - "end_line": 120, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "start_col": 6, - "start_line": 120 - }, - "While constructing the external wrapper for:" - ], - "start_col": 203, - "start_line": 1 - }, - "While expanding the reference '__calldata_arg_value' in:" - ], - "start_col": 43, - "start_line": 121 - }, - "While handling calldata argument 'value'" - ], - "start_col": 28, - "start_line": 1 - } - }, - "3894": { - "accessible_scopes": [ - "__main__", - "__main__", - "__wrappers__", - "__wrappers__.setCell" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 56, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/arg_processor/b19b7bf952f10d75c6d6d48c16be4d0aa794947e7c7409b4e5d1fff596b961ac.cairo" - }, - "parent_location": [ - { - "end_col": 79, - "end_line": 121, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "parent_location": [ - { - "end_col": 275, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/external/setCell/4283afad5f046e779f9086ab343c3867291282e0a5a6a5743aa6762671e022a9.cairo" - }, - "parent_location": [ - { - "end_col": 13, - "end_line": 120, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "start_col": 6, - "start_line": 120 - }, - "While constructing the external wrapper for:" - ], - "start_col": 243, - "start_line": 1 - }, - "While expanding the reference '__calldata_arg_cell_calldata_len' in:" - ], - "start_col": 56, - "start_line": 121 - }, - "While handling calldata argument 'cell_calldata_len'" - ], - "start_col": 40, - "start_line": 1 - } - }, - "3895": { - "accessible_scopes": [ - "__main__", - "__main__", - "__wrappers__", - "__wrappers__.setCell" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 63, - "end_line": 5, - "input_file": { - "filename": "autogen/starknet/arg_processor/cf9d155a82359872fd6c3831de72477dc112f8fe156e1c50035a0d8fc012189b.cairo" - }, - "parent_location": [ - { - "end_col": 101, - "end_line": 121, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "parent_location": [ - { - "end_col": 319, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/external/setCell/4283afad5f046e779f9086ab343c3867291282e0a5a6a5743aa6762671e022a9.cairo" - }, - "parent_location": [ - { - "end_col": 13, - "end_line": 120, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "start_col": 6, - "start_line": 120 - }, - "While constructing the external wrapper for:" - ], - "start_col": 291, - "start_line": 1 - }, - "While expanding the reference '__calldata_arg_cell_calldata' in:" - ], - "start_col": 81, - "start_line": 121 - }, - "While handling calldata argument 'cell_calldata'" - ], - "start_col": 36, - "start_line": 5 - } - }, - "3897": { - "accessible_scopes": [ - "__main__", - "__main__", - "__wrappers__", - "__wrappers__.setCell" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 13, - "end_line": 120, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "start_col": 6, - "start_line": 120 - } - }, - "3899": { - "accessible_scopes": [ - "__main__", - "__main__", - "__wrappers__", - "__wrappers__.setCell" - ], - "flow_tracking_data": null, - "hints": [ - { - "location": { - "end_col": 34, - "end_line": 2, - "input_file": { - "filename": "autogen/starknet/external/setCell/4283afad5f046e779f9086ab343c3867291282e0a5a6a5743aa6762671e022a9.cairo" - }, - "parent_location": [ - { - "end_col": 13, - "end_line": 120, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "start_col": 6, - "start_line": 120 - }, - "While constructing the external wrapper for:" - ], - "start_col": 1, - "start_line": 2 - }, - "n_prefix_newlines": 0 - } - ], - "inst": { - "end_col": 24, - "end_line": 3, - "input_file": { - "filename": "autogen/starknet/external/setCell/4283afad5f046e779f9086ab343c3867291282e0a5a6a5743aa6762671e022a9.cairo" - }, - "parent_location": [ - { - "end_col": 13, - "end_line": 120, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "start_col": 6, - "start_line": 120 - }, - "While constructing the external wrapper for:" - ], - "start_col": 1, - "start_line": 3 - } - }, - "3901": { - "accessible_scopes": [ - "__main__", - "__main__", - "__wrappers__", - "__wrappers__.setCell" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 55, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/external/setCell/4283afad5f046e779f9086ab343c3867291282e0a5a6a5743aa6762671e022a9.cairo" - }, - "parent_location": [ - { - "end_col": 13, - "end_line": 120, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "parent_location": [ - { - "end_col": 20, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/external/setCell/da17921a4e81c09e730800bbf23bfdbe5e9e6bfaedc59d80fbf62087fa43c27d.cairo" - }, - "parent_location": [ - { - "end_col": 13, - "end_line": 120, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "start_col": 6, - "start_line": 120 - }, - "While constructing the external wrapper for:" - ], - "start_col": 9, - "start_line": 1 - }, - "While expanding the reference 'syscall_ptr' in:" - ], - "start_col": 6, - "start_line": 120 - }, - "While constructing the external wrapper for:" - ], - "start_col": 44, - "start_line": 1 - } - }, - "3902": { - "accessible_scopes": [ - "__main__", - "__main__", - "__wrappers__", - "__wrappers__.setCell" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 82, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/external/setCell/4283afad5f046e779f9086ab343c3867291282e0a5a6a5743aa6762671e022a9.cairo" - }, - "parent_location": [ - { - "end_col": 13, - "end_line": 120, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "parent_location": [ - { - "end_col": 33, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/external/setCell/da17921a4e81c09e730800bbf23bfdbe5e9e6bfaedc59d80fbf62087fa43c27d.cairo" - }, - "parent_location": [ - { - "end_col": 13, - "end_line": 120, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "start_col": 6, - "start_line": 120 - }, - "While constructing the external wrapper for:" - ], - "start_col": 21, - "start_line": 1 - }, - "While expanding the reference 'pedersen_ptr' in:" - ], - "start_col": 6, - "start_line": 120 - }, - "While constructing the external wrapper for:" - ], - "start_col": 70, - "start_line": 1 - } - }, - "3903": { - "accessible_scopes": [ - "__main__", - "__main__", - "__wrappers__", - "__wrappers__.setCell" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 115, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/external/setCell/4283afad5f046e779f9086ab343c3867291282e0a5a6a5743aa6762671e022a9.cairo" - }, - "parent_location": [ - { - "end_col": 13, - "end_line": 120, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "parent_location": [ - { - "end_col": 49, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/external/setCell/da17921a4e81c09e730800bbf23bfdbe5e9e6bfaedc59d80fbf62087fa43c27d.cairo" - }, - "parent_location": [ - { - "end_col": 13, - "end_line": 120, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "start_col": 6, - "start_line": 120 - }, - "While constructing the external wrapper for:" - ], - "start_col": 34, - "start_line": 1 - }, - "While expanding the reference 'range_check_ptr' in:" - ], - "start_col": 6, - "start_line": 120 - }, - "While constructing the external wrapper for:" - ], - "start_col": 100, - "start_line": 1 - } - }, - "3904": { - "accessible_scopes": [ - "__main__", - "__main__", - "__wrappers__", - "__wrappers__.setCell" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 21, - "end_line": 4, - "input_file": { - "filename": "autogen/starknet/external/setCell/4283afad5f046e779f9086ab343c3867291282e0a5a6a5743aa6762671e022a9.cairo" - }, - "parent_location": [ - { - "end_col": 13, - "end_line": 120, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "parent_location": [ - { - "end_col": 62, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/external/setCell/da17921a4e81c09e730800bbf23bfdbe5e9e6bfaedc59d80fbf62087fa43c27d.cairo" - }, - "parent_location": [ - { - "end_col": 13, - "end_line": 120, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "start_col": 6, - "start_line": 120 - }, - "While constructing the external wrapper for:" - ], - "start_col": 50, - "start_line": 1 - }, - "While expanding the reference 'retdata_size' in:" - ], - "start_col": 6, - "start_line": 120 - }, - "While constructing the external wrapper for:" - ], - "start_col": 20, - "start_line": 4 - } - }, - "3906": { - "accessible_scopes": [ - "__main__", - "__main__", - "__wrappers__", - "__wrappers__.setCell" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 16, - "end_line": 3, - "input_file": { - "filename": "autogen/starknet/external/setCell/4283afad5f046e779f9086ab343c3867291282e0a5a6a5743aa6762671e022a9.cairo" - }, - "parent_location": [ - { - "end_col": 13, - "end_line": 120, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "parent_location": [ - { - "end_col": 70, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/external/setCell/da17921a4e81c09e730800bbf23bfdbe5e9e6bfaedc59d80fbf62087fa43c27d.cairo" - }, - "parent_location": [ - { - "end_col": 13, - "end_line": 120, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "start_col": 6, - "start_line": 120 - }, - "While constructing the external wrapper for:" - ], - "start_col": 63, - "start_line": 1 - }, - "While expanding the reference 'retdata' in:" - ], - "start_col": 6, - "start_line": 120 - }, - "While constructing the external wrapper for:" - ], - "start_col": 9, - "start_line": 3 - } - }, - "3907": { - "accessible_scopes": [ - "__main__", - "__main__", - "__wrappers__", - "__wrappers__.setCell" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 72, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/external/setCell/da17921a4e81c09e730800bbf23bfdbe5e9e6bfaedc59d80fbf62087fa43c27d.cairo" - }, - "parent_location": [ - { - "end_col": 13, - "end_line": 120, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "start_col": 6, - "start_line": 120 - }, - "While constructing the external wrapper for:" - ], - "start_col": 1, - "start_line": 1 - } - }, - "3908": { - "accessible_scopes": [ - "__main__", - "__main__", - "__main__.getCell" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 32, - "end_line": 143, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "parent_location": [ - { - "end_col": 37, - "end_line": 113, - "input_file": { - "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" - }, - "parent_location": [ - { - "end_col": 38, - "end_line": 146, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "start_col": 15, - "start_line": 146 - }, - "While trying to retrieve the implicit argument 'syscall_ptr' in:" - ], - "start_col": 19, - "start_line": 113 - }, - "While expanding the reference 'syscall_ptr' in:" - ], - "start_col": 14, - "start_line": 143 - } - }, - "3909": { - "accessible_scopes": [ - "__main__", - "__main__", - "__main__.getCell" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 60, - "end_line": 143, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "parent_location": [ - { - "end_col": 65, - "end_line": 113, - "input_file": { - "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" - }, - "parent_location": [ - { - "end_col": 38, - "end_line": 146, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "start_col": 15, - "start_line": 146 - }, - "While trying to retrieve the implicit argument 'pedersen_ptr' in:" - ], - "start_col": 39, - "start_line": 113 - }, - "While expanding the reference 'pedersen_ptr' in:" - ], - "start_col": 34, - "start_line": 143 - } - }, - "3910": { - "accessible_scopes": [ - "__main__", - "__main__", - "__main__.getCell" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 77, - "end_line": 143, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "parent_location": [ - { - "end_col": 82, - "end_line": 113, - "input_file": { - "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" - }, - "parent_location": [ - { - "end_col": 38, - "end_line": 146, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "start_col": 15, - "start_line": 146 - }, - "While trying to retrieve the implicit argument 'range_check_ptr' in:" - ], - "start_col": 67, - "start_line": 113 - }, - "While expanding the reference 'range_check_ptr' in:" - ], - "start_col": 62, - "start_line": 143 - } - }, - "3911": { - "accessible_scopes": [ - "__main__", - "__main__", - "__main__.getCell" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 92, - "end_line": 143, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "parent_location": [ - { - "end_col": 37, - "end_line": 146, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "start_col": 30, - "start_line": 146 - }, - "While expanding the reference 'tokenId' in:" - ], - "start_col": 79, - "start_line": 143 - } - }, - "3912": { - "accessible_scopes": [ - "__main__", - "__main__", - "__main__.getCell" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 38, - "end_line": 146, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "start_col": 15, - "start_line": 146 - } - }, - "3914": { - "accessible_scopes": [ - "__main__", - "__main__", - "__main__.getCell" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 78, - "end_line": 147, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "start_col": 5, - "start_line": 147 - } - }, - "3915": { - "accessible_scopes": [ - "__main__", - "__main__", - "__wrappers__", - "__wrappers__.getCell_encode_return" - ], - "flow_tracking_data": null, - "hints": [ - { - "location": { - "end_col": 38, - "end_line": 3, - "input_file": { - "filename": "autogen/starknet/external/return/getCell/45b3c8aa5973e07cb910131aed3aef1456e8199a31086ed15bad4bcb607a4d71.cairo" - }, - "parent_location": [ - { - "end_col": 13, - "end_line": 143, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "start_col": 6, - "start_line": 143 - }, - "While handling return value of" - ], - "start_col": 5, - "start_line": 3 - }, - "n_prefix_newlines": 0 - } - ], - "inst": { - "end_col": 18, - "end_line": 4, - "input_file": { - "filename": "autogen/starknet/external/return/getCell/45b3c8aa5973e07cb910131aed3aef1456e8199a31086ed15bad4bcb607a4d71.cairo" - }, - "parent_location": [ - { - "end_col": 13, - "end_line": 143, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "start_col": 6, - "start_line": 143 - }, - "While handling return value of" - ], - "start_col": 5, - "start_line": 4 - } - }, - "3917": { - "accessible_scopes": [ - "__main__", - "__main__", - "__wrappers__", - "__wrappers__.getCell_encode_return" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 57, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/arg_processor/33df6e1bcfab0c2b721012401630ed459af24510751c21dc2cea42d959db9ca9.cairo" - }, - "parent_location": [ - { - "end_col": 26, - "end_line": 144, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "start_col": 5, - "start_line": 144 - }, - "While handling return value 'contractAddress'" - ], - "start_col": 1, - "start_line": 1 - } - }, - "3918": { - "accessible_scopes": [ - "__main__", - "__main__", - "__wrappers__", - "__wrappers__.getCell_encode_return" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 47, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/arg_processor/361efcca75a31f4c299c46d8d625210e368f481380cc3fa32a6d87e5dbe7e45c.cairo" - }, - "parent_location": [ - { - "end_col": 39, - "end_line": 144, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "start_col": 28, - "start_line": 144 - }, - "While handling return value 'value'" - ], - "start_col": 1, - "start_line": 1 - } - }, - "3919": { - "accessible_scopes": [ - "__main__", - "__main__", - "__wrappers__", - "__wrappers__.getCell_encode_return" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 59, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/arg_processor/f204bba64347870893c4affbf57c4cff6fc02af3b0ac400d4d3ba5c273c8059c.cairo" - }, - "parent_location": [ - { - "end_col": 64, - "end_line": 144, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "start_col": 41, - "start_line": 144 - }, - "While handling return value 'cell_calldata_len'" - ], - "start_col": 1, - "start_line": 1 - } - }, - "3920": { - "accessible_scopes": [ - "__main__", - "__main__", - "__wrappers__", - "__wrappers__.getCell_encode_return" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 56, - "end_line": 2, - "input_file": { - "filename": "autogen/starknet/arg_processor/36bb2f0e50d9623bedb46d800f874e3225ca779427bfe225ce6bc8586f2087bd.cairo" - }, - "parent_location": [ - { - "end_col": 86, - "end_line": 144, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "start_col": 66, - "start_line": 144 - }, - "While handling return value 'cell_calldata'" - ], - "start_col": 1, - "start_line": 2 - } - }, - "3921": { - "accessible_scopes": [ - "__main__", - "__main__", - "__wrappers__", - "__wrappers__.getCell_encode_return" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 45, - "end_line": 5, - "input_file": { - "filename": "autogen/starknet/arg_processor/36bb2f0e50d9623bedb46d800f874e3225ca779427bfe225ce6bc8586f2087bd.cairo" - }, - "parent_location": [ - { - "end_col": 86, - "end_line": 144, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "start_col": 66, - "start_line": 144 - }, - "While handling return value 'cell_calldata'" - ], - "start_col": 1, - "start_line": 5 - } - }, - "3923": { - "accessible_scopes": [ - "__main__", - "__main__", - "__wrappers__", - "__wrappers__.getCell_encode_return" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 48, - "end_line": 2, - "input_file": { - "filename": "autogen/starknet/arg_processor/f204bba64347870893c4affbf57c4cff6fc02af3b0ac400d4d3ba5c273c8059c.cairo" - }, - "parent_location": [ - { - "end_col": 64, - "end_line": 144, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "parent_location": [ - { - "end_col": 53, - "end_line": 10, - "input_file": { - "filename": "autogen/starknet/arg_processor/36bb2f0e50d9623bedb46d800f874e3225ca779427bfe225ce6bc8586f2087bd.cairo" - }, - "parent_location": [ - { - "end_col": 86, - "end_line": 144, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "start_col": 66, - "start_line": 144 - }, - "While handling return value 'cell_calldata'" - ], - "start_col": 35, - "start_line": 10 - }, - "While expanding the reference '__return_value_ptr' in:" - ], - "start_col": 41, - "start_line": 144 - }, - "While handling return value 'cell_calldata_len'" - ], - "start_col": 26, - "start_line": 2 - } - }, - "3925": { - "accessible_scopes": [ - "__main__", - "__main__", - "__wrappers__", - "__wrappers__.getCell_encode_return" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 88, - "end_line": 10, - "input_file": { - "filename": "autogen/starknet/arg_processor/36bb2f0e50d9623bedb46d800f874e3225ca779427bfe225ce6bc8586f2087bd.cairo" - }, - "parent_location": [ - { - "end_col": 86, - "end_line": 144, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "start_col": 66, - "start_line": 144 - }, - "While handling return value 'cell_calldata'" - ], - "start_col": 1, - "start_line": 10 - } - }, - "3926": { - "accessible_scopes": [ - "__main__", - "__main__", - "__wrappers__", - "__wrappers__.getCell_encode_return" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 48, - "end_line": 2, - "input_file": { - "filename": "autogen/starknet/arg_processor/f204bba64347870893c4affbf57c4cff6fc02af3b0ac400d4d3ba5c273c8059c.cairo" - }, - "parent_location": [ - { - "end_col": 64, - "end_line": 144, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "parent_location": [ - { - "end_col": 49, - "end_line": 7, - "input_file": { - "filename": "autogen/starknet/arg_processor/36bb2f0e50d9623bedb46d800f874e3225ca779427bfe225ce6bc8586f2087bd.cairo" - }, - "parent_location": [ - { - "end_col": 86, - "end_line": 144, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "parent_location": [ - { - "end_col": 32, - "end_line": 12, - "input_file": { - "filename": "autogen/starknet/arg_processor/36bb2f0e50d9623bedb46d800f874e3225ca779427bfe225ce6bc8586f2087bd.cairo" - }, - "parent_location": [ - { - "end_col": 86, - "end_line": 144, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "start_col": 66, - "start_line": 144 - }, - "While handling return value 'cell_calldata'" - ], - "start_col": 9, - "start_line": 12 - }, - "While expanding the reference '__return_value_ptr_copy' in:" - ], - "start_col": 66, - "start_line": 144 - }, - "While handling return value 'cell_calldata'" - ], - "start_col": 31, - "start_line": 7 - }, - "While expanding the reference '__return_value_ptr' in:" - ], - "start_col": 41, - "start_line": 144 - }, - "While handling return value 'cell_calldata_len'" - ], - "start_col": 26, - "start_line": 2 - } - }, - "3928": { - "accessible_scopes": [ - "__main__", - "__main__", - "__wrappers__", - "__wrappers__.getCell_encode_return" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 32, - "end_line": 13, - "input_file": { - "filename": "autogen/starknet/arg_processor/36bb2f0e50d9623bedb46d800f874e3225ca779427bfe225ce6bc8586f2087bd.cairo" - }, - "parent_location": [ - { - "end_col": 86, - "end_line": 144, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "start_col": 66, - "start_line": 144 - }, - "While handling return value 'cell_calldata'" - ], - "start_col": 9, - "start_line": 13 - } - }, - "3929": { - "accessible_scopes": [ - "__main__", - "__main__", - "__wrappers__", - "__wrappers__.getCell_encode_return" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 36, - "end_line": 14, - "input_file": { - "filename": "autogen/starknet/arg_processor/36bb2f0e50d9623bedb46d800f874e3225ca779427bfe225ce6bc8586f2087bd.cairo" - }, - "parent_location": [ - { - "end_col": 86, - "end_line": 144, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "start_col": 66, - "start_line": 144 - }, - "While handling return value 'cell_calldata'" - ], - "start_col": 9, - "start_line": 14 - } - }, - "3930": { - "accessible_scopes": [ - "__main__", - "__main__", - "__wrappers__", - "__wrappers__.getCell_encode_return" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 41, - "end_line": 14, - "input_file": { - "filename": "autogen/starknet/arg_processor/36bb2f0e50d9623bedb46d800f874e3225ca779427bfe225ce6bc8586f2087bd.cairo" - }, - "parent_location": [ - { - "end_col": 86, - "end_line": 144, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "start_col": 66, - "start_line": 144 - }, - "While handling return value 'cell_calldata'" - ], - "start_col": 1, - "start_line": 11 - } - }, - "3932": { - "accessible_scopes": [ - "__main__", - "__main__", - "__wrappers__", - "__wrappers__.getCell_encode_return" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 22, - "end_line": 5, - "input_file": { - "filename": "autogen/starknet/arg_processor/36bb2f0e50d9623bedb46d800f874e3225ca779427bfe225ce6bc8586f2087bd.cairo" - }, - "parent_location": [ - { - "end_col": 86, - "end_line": 144, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "parent_location": [ - { - "end_col": 40, - "end_line": 10, - "input_file": { - "filename": "autogen/starknet/external/return/getCell/45b3c8aa5973e07cb910131aed3aef1456e8199a31086ed15bad4bcb607a4d71.cairo" - }, - "parent_location": [ - { - "end_col": 13, - "end_line": 143, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "start_col": 6, - "start_line": 143 - }, - "While handling return value of" - ], - "start_col": 25, - "start_line": 10 - }, - "While expanding the reference 'range_check_ptr' in:" - ], - "start_col": 66, - "start_line": 144 - }, - "While handling return value 'cell_calldata'" - ], - "start_col": 7, - "start_line": 5 - } - }, - "3933": { - "accessible_scopes": [ - "__main__", - "__main__", - "__wrappers__", - "__wrappers__.getCell_encode_return" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 63, - "end_line": 11, - "input_file": { - "filename": "autogen/starknet/external/return/getCell/45b3c8aa5973e07cb910131aed3aef1456e8199a31086ed15bad4bcb607a4d71.cairo" - }, - "parent_location": [ - { - "end_col": 13, - "end_line": 143, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "start_col": 6, - "start_line": 143 - }, - "While handling return value of" - ], - "start_col": 18, - "start_line": 11 - } - }, - "3934": { - "accessible_scopes": [ - "__main__", - "__main__", - "__wrappers__", - "__wrappers__.getCell_encode_return" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 35, - "end_line": 5, - "input_file": { - "filename": "autogen/starknet/external/return/getCell/45b3c8aa5973e07cb910131aed3aef1456e8199a31086ed15bad4bcb607a4d71.cairo" - }, - "parent_location": [ - { - "end_col": 13, - "end_line": 143, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "parent_location": [ - { - "end_col": 38, - "end_line": 12, - "input_file": { - "filename": "autogen/starknet/external/return/getCell/45b3c8aa5973e07cb910131aed3aef1456e8199a31086ed15bad4bcb607a4d71.cairo" - }, - "parent_location": [ - { - "end_col": 13, - "end_line": 143, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "start_col": 6, - "start_line": 143 - }, - "While handling return value of" - ], - "start_col": 14, - "start_line": 12 - }, - "While expanding the reference '__return_value_ptr_start' in:" - ], - "start_col": 6, - "start_line": 143 - }, - "While handling return value of" - ], - "start_col": 11, - "start_line": 5 - } - }, - "3935": { - "accessible_scopes": [ - "__main__", - "__main__", - "__wrappers__", - "__wrappers__.getCell_encode_return" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 40, - "end_line": 12, - "input_file": { - "filename": "autogen/starknet/external/return/getCell/45b3c8aa5973e07cb910131aed3aef1456e8199a31086ed15bad4bcb607a4d71.cairo" - }, - "parent_location": [ - { - "end_col": 13, - "end_line": 143, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "start_col": 6, - "start_line": 143 - }, - "While handling return value of" - ], - "start_col": 5, - "start_line": 9 - } - }, - "3936": { - "accessible_scopes": [ - "__main__", - "__main__", - "__wrappers__", - "__wrappers__.getCell" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 18, - "end_line": 2, - "input_file": { - "filename": "autogen/starknet/external/getCell/fc5657cf51bd050c7a3c8729ca7f6e7cfabf2530b3ff0492dd4d28b5d2976ebb.cairo" - }, - "parent_location": [ - { - "end_col": 13, - "end_line": 143, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "start_col": 6, - "start_line": 143 - }, - "While constructing the external wrapper for:" - ], - "start_col": 5, - "start_line": 2 - } - }, - "3938": { - "accessible_scopes": [ - "__main__", - "__main__", - "__wrappers__", - "__wrappers__.getCell" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 40, - "end_line": 2, - "input_file": { - "filename": "autogen/starknet/arg_processor/128c2321f9070588a8d11dc60a4b2c6a3b0b1a97919597936f0847381384bd91.cairo" - }, - "parent_location": [ - { - "end_col": 92, - "end_line": 143, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "parent_location": [ - { - "end_col": 45, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/arg_processor/c31620b02d4d706f0542c989b2aadc01b0981d1f6a5933a8fe4937ace3d70d92.cairo" - }, - "parent_location": [ - { - "end_col": 13, - "end_line": 143, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "parent_location": [ - { - "end_col": 57, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/arg_processor/01cba52f8515996bb9d7070bde81ff39281d096d7024a558efcba6e1fd2402cf.cairo" - }, - "parent_location": [ - { - "end_col": 13, - "end_line": 143, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "start_col": 6, - "start_line": 143 - }, - "While handling calldata of" - ], - "start_col": 35, - "start_line": 1 - }, - "While expanding the reference '__calldata_actual_size' in:" - ], - "start_col": 6, - "start_line": 143 - }, - "While handling calldata of" - ], - "start_col": 31, - "start_line": 1 - }, - "While expanding the reference '__calldata_ptr' in:" - ], - "start_col": 79, - "start_line": 143 - }, - "While handling calldata argument 'tokenId'" - ], - "start_col": 22, - "start_line": 2 - } - }, - "3940": { - "accessible_scopes": [ - "__main__", - "__main__", - "__wrappers__", - "__wrappers__.getCell" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 58, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/arg_processor/01cba52f8515996bb9d7070bde81ff39281d096d7024a558efcba6e1fd2402cf.cairo" - }, - "parent_location": [ - { - "end_col": 13, - "end_line": 143, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "start_col": 6, - "start_line": 143 - }, - "While handling calldata of" - ], - "start_col": 1, - "start_line": 1 - } - }, - "3941": { - "accessible_scopes": [ - "__main__", - "__main__", - "__wrappers__", - "__wrappers__.getCell" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 64, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/external/getCell/b2c52ca2d2a8fc8791a983086d8716c5eacd0c3d62934914d2286f84b98ff4cb.cairo" - }, - "parent_location": [ - { - "end_col": 32, - "end_line": 143, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "parent_location": [ - { - "end_col": 55, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/external/getCell/b9f082c9f793d6f80f66b8a110e326ab27269a523c2aa107129eed9fa07085f2.cairo" - }, - "parent_location": [ - { - "end_col": 13, - "end_line": 143, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "start_col": 6, - "start_line": 143 - }, - "While constructing the external wrapper for:" - ], - "start_col": 44, - "start_line": 1 - }, - "While expanding the reference 'syscall_ptr' in:" - ], - "start_col": 14, - "start_line": 143 - }, - "While constructing the external wrapper for:" - ], - "start_col": 19, - "start_line": 1 - } - }, - "3942": { - "accessible_scopes": [ - "__main__", - "__main__", - "__wrappers__", - "__wrappers__.getCell" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 110, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/external/getCell/9684a85e93c782014ca14293edea4eb2502039a5a7b6538ecd39c56faaf12529.cairo" - }, - "parent_location": [ - { - "end_col": 60, - "end_line": 143, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "parent_location": [ - { - "end_col": 82, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/external/getCell/b9f082c9f793d6f80f66b8a110e326ab27269a523c2aa107129eed9fa07085f2.cairo" - }, - "parent_location": [ - { - "end_col": 13, - "end_line": 143, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "start_col": 6, - "start_line": 143 - }, - "While constructing the external wrapper for:" - ], - "start_col": 70, - "start_line": 1 - }, - "While expanding the reference 'pedersen_ptr' in:" - ], - "start_col": 34, - "start_line": 143 - }, - "While constructing the external wrapper for:" - ], - "start_col": 20, - "start_line": 1 - } - }, - "3943": { - "accessible_scopes": [ - "__main__", - "__main__", - "__wrappers__", - "__wrappers__.getCell" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 67, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/external/getCell/741ea357d6336b0bed7bf0472425acd0311d543883b803388880e60a232040c7.cairo" - }, - "parent_location": [ - { - "end_col": 77, - "end_line": 143, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "parent_location": [ - { - "end_col": 115, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/external/getCell/b9f082c9f793d6f80f66b8a110e326ab27269a523c2aa107129eed9fa07085f2.cairo" - }, - "parent_location": [ - { - "end_col": 13, - "end_line": 143, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "start_col": 6, - "start_line": 143 - }, - "While constructing the external wrapper for:" - ], - "start_col": 100, - "start_line": 1 - }, - "While expanding the reference 'range_check_ptr' in:" - ], - "start_col": 62, - "start_line": 143 - }, - "While constructing the external wrapper for:" - ], - "start_col": 23, - "start_line": 1 - } - }, - "3944": { - "accessible_scopes": [ - "__main__", - "__main__", - "__wrappers__", - "__wrappers__.getCell" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 46, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/arg_processor/128c2321f9070588a8d11dc60a4b2c6a3b0b1a97919597936f0847381384bd91.cairo" - }, - "parent_location": [ - { - "end_col": 92, - "end_line": 143, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "parent_location": [ - { - "end_col": 147, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/external/getCell/b9f082c9f793d6f80f66b8a110e326ab27269a523c2aa107129eed9fa07085f2.cairo" - }, - "parent_location": [ - { - "end_col": 13, - "end_line": 143, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "start_col": 6, - "start_line": 143 - }, - "While constructing the external wrapper for:" - ], - "start_col": 125, - "start_line": 1 - }, - "While expanding the reference '__calldata_arg_tokenId' in:" - ], - "start_col": 79, - "start_line": 143 - }, - "While handling calldata argument 'tokenId'" - ], - "start_col": 30, - "start_line": 1 - } - }, - "3945": { - "accessible_scopes": [ - "__main__", - "__main__", - "__wrappers__", - "__wrappers__.getCell" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 13, - "end_line": 143, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "start_col": 6, - "start_line": 143 - } - }, - "3947": { - "accessible_scopes": [ - "__main__", - "__main__", - "__wrappers__", - "__wrappers__.getCell" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 55, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/external/getCell/b9f082c9f793d6f80f66b8a110e326ab27269a523c2aa107129eed9fa07085f2.cairo" - }, - "parent_location": [ - { - "end_col": 13, - "end_line": 143, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "parent_location": [ - { - "end_col": 55, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/external/getCell/b9f082c9f793d6f80f66b8a110e326ab27269a523c2aa107129eed9fa07085f2.cairo" - }, - "parent_location": [ - { - "end_col": 13, - "end_line": 143, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "start_col": 6, - "start_line": 143 - }, - "While constructing the external wrapper for:" - ], - "start_col": 44, - "start_line": 1 - }, - "While auto generating local variable for 'syscall_ptr'." - ], - "start_col": 6, - "start_line": 143 - }, - "While constructing the external wrapper for:" - ], - "start_col": 44, - "start_line": 1 - } - }, - "3948": { - "accessible_scopes": [ - "__main__", - "__main__", - "__wrappers__", - "__wrappers__.getCell" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 82, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/external/getCell/b9f082c9f793d6f80f66b8a110e326ab27269a523c2aa107129eed9fa07085f2.cairo" - }, - "parent_location": [ - { - "end_col": 13, - "end_line": 143, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "parent_location": [ - { - "end_col": 82, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/external/getCell/b9f082c9f793d6f80f66b8a110e326ab27269a523c2aa107129eed9fa07085f2.cairo" - }, - "parent_location": [ - { - "end_col": 13, - "end_line": 143, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "start_col": 6, - "start_line": 143 - }, - "While constructing the external wrapper for:" - ], - "start_col": 70, - "start_line": 1 - }, - "While auto generating local variable for 'pedersen_ptr'." - ], - "start_col": 6, - "start_line": 143 - }, - "While constructing the external wrapper for:" - ], - "start_col": 70, - "start_line": 1 - } - }, - "3949": { - "accessible_scopes": [ - "__main__", - "__main__", - "__wrappers__", - "__wrappers__.getCell" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 115, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/external/getCell/b9f082c9f793d6f80f66b8a110e326ab27269a523c2aa107129eed9fa07085f2.cairo" - }, - "parent_location": [ - { - "end_col": 13, - "end_line": 143, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "parent_location": [ - { - "end_col": 96, - "end_line": 2, - "input_file": { - "filename": "autogen/starknet/external/getCell/b9f082c9f793d6f80f66b8a110e326ab27269a523c2aa107129eed9fa07085f2.cairo" - }, - "parent_location": [ - { - "end_col": 13, - "end_line": 143, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "start_col": 6, - "start_line": 143 - }, - "While constructing the external wrapper for:" - ], - "start_col": 81, - "start_line": 2 - }, - "While expanding the reference 'range_check_ptr' in:" - ], - "start_col": 6, - "start_line": 143 - }, - "While constructing the external wrapper for:" - ], - "start_col": 100, - "start_line": 1 - } - }, - "3950": { - "accessible_scopes": [ - "__main__", - "__main__", - "__wrappers__", - "__wrappers__.getCell" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 97, - "end_line": 2, - "input_file": { - "filename": "autogen/starknet/external/getCell/b9f082c9f793d6f80f66b8a110e326ab27269a523c2aa107129eed9fa07085f2.cairo" - }, - "parent_location": [ - { - "end_col": 13, - "end_line": 143, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "start_col": 6, - "start_line": 143 - }, - "While constructing the external wrapper for:" - ], - "start_col": 48, - "start_line": 2 - } - }, - "3952": { - "accessible_scopes": [ - "__main__", - "__main__", - "__wrappers__", - "__wrappers__.getCell" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 55, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/external/getCell/b9f082c9f793d6f80f66b8a110e326ab27269a523c2aa107129eed9fa07085f2.cairo" - }, - "parent_location": [ - { - "end_col": 13, - "end_line": 143, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "parent_location": [ - { - "end_col": 55, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/external/getCell/b9f082c9f793d6f80f66b8a110e326ab27269a523c2aa107129eed9fa07085f2.cairo" - }, - "parent_location": [ - { - "end_col": 13, - "end_line": 143, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "parent_location": [ - { - "end_col": 20, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/external/getCell/da17921a4e81c09e730800bbf23bfdbe5e9e6bfaedc59d80fbf62087fa43c27d.cairo" - }, - "parent_location": [ - { - "end_col": 13, - "end_line": 143, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "start_col": 6, - "start_line": 143 - }, - "While constructing the external wrapper for:" - ], - "start_col": 9, - "start_line": 1 - }, - "While expanding the reference 'syscall_ptr' in:" - ], - "start_col": 6, - "start_line": 143 - }, - "While constructing the external wrapper for:" - ], - "start_col": 44, - "start_line": 1 - }, - "While auto generating local variable for 'syscall_ptr'." - ], - "start_col": 6, - "start_line": 143 - }, - "While constructing the external wrapper for:" - ], - "start_col": 44, - "start_line": 1 - } - }, - "3953": { - "accessible_scopes": [ - "__main__", - "__main__", - "__wrappers__", - "__wrappers__.getCell" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 82, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/external/getCell/b9f082c9f793d6f80f66b8a110e326ab27269a523c2aa107129eed9fa07085f2.cairo" - }, - "parent_location": [ - { - "end_col": 13, - "end_line": 143, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "parent_location": [ - { - "end_col": 82, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/external/getCell/b9f082c9f793d6f80f66b8a110e326ab27269a523c2aa107129eed9fa07085f2.cairo" - }, - "parent_location": [ - { - "end_col": 13, - "end_line": 143, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "parent_location": [ - { - "end_col": 33, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/external/getCell/da17921a4e81c09e730800bbf23bfdbe5e9e6bfaedc59d80fbf62087fa43c27d.cairo" - }, - "parent_location": [ - { - "end_col": 13, - "end_line": 143, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "start_col": 6, - "start_line": 143 - }, - "While constructing the external wrapper for:" - ], - "start_col": 21, - "start_line": 1 - }, - "While expanding the reference 'pedersen_ptr' in:" - ], - "start_col": 6, - "start_line": 143 - }, - "While constructing the external wrapper for:" - ], - "start_col": 70, - "start_line": 1 - }, - "While auto generating local variable for 'pedersen_ptr'." - ], - "start_col": 6, - "start_line": 143 - }, - "While constructing the external wrapper for:" - ], - "start_col": 70, - "start_line": 1 - } - }, - "3954": { - "accessible_scopes": [ - "__main__", - "__main__", - "__wrappers__", - "__wrappers__.getCell" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 21, - "end_line": 2, - "input_file": { - "filename": "autogen/starknet/external/getCell/b9f082c9f793d6f80f66b8a110e326ab27269a523c2aa107129eed9fa07085f2.cairo" - }, - "parent_location": [ - { - "end_col": 13, - "end_line": 143, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "parent_location": [ - { - "end_col": 49, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/external/getCell/da17921a4e81c09e730800bbf23bfdbe5e9e6bfaedc59d80fbf62087fa43c27d.cairo" - }, - "parent_location": [ - { - "end_col": 13, - "end_line": 143, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "start_col": 6, - "start_line": 143 - }, - "While constructing the external wrapper for:" - ], - "start_col": 34, - "start_line": 1 - }, - "While expanding the reference 'range_check_ptr' in:" - ], - "start_col": 6, - "start_line": 143 - }, - "While constructing the external wrapper for:" - ], - "start_col": 6, - "start_line": 2 - } - }, - "3955": { - "accessible_scopes": [ - "__main__", - "__main__", - "__wrappers__", - "__wrappers__.getCell" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 35, - "end_line": 2, - "input_file": { - "filename": "autogen/starknet/external/getCell/b9f082c9f793d6f80f66b8a110e326ab27269a523c2aa107129eed9fa07085f2.cairo" - }, - "parent_location": [ - { - "end_col": 13, - "end_line": 143, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "parent_location": [ - { - "end_col": 62, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/external/getCell/da17921a4e81c09e730800bbf23bfdbe5e9e6bfaedc59d80fbf62087fa43c27d.cairo" - }, - "parent_location": [ - { - "end_col": 13, - "end_line": 143, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "start_col": 6, - "start_line": 143 - }, - "While constructing the external wrapper for:" - ], - "start_col": 50, - "start_line": 1 - }, - "While expanding the reference 'retdata_size' in:" - ], - "start_col": 6, - "start_line": 143 - }, - "While constructing the external wrapper for:" - ], - "start_col": 23, - "start_line": 2 - } - }, - "3956": { - "accessible_scopes": [ - "__main__", - "__main__", - "__wrappers__", - "__wrappers__.getCell" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 44, - "end_line": 2, - "input_file": { - "filename": "autogen/starknet/external/getCell/b9f082c9f793d6f80f66b8a110e326ab27269a523c2aa107129eed9fa07085f2.cairo" - }, - "parent_location": [ - { - "end_col": 13, - "end_line": 143, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "parent_location": [ - { - "end_col": 70, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/external/getCell/da17921a4e81c09e730800bbf23bfdbe5e9e6bfaedc59d80fbf62087fa43c27d.cairo" - }, - "parent_location": [ - { - "end_col": 13, - "end_line": 143, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "start_col": 6, - "start_line": 143 - }, - "While constructing the external wrapper for:" - ], - "start_col": 63, - "start_line": 1 - }, - "While expanding the reference 'retdata' in:" - ], - "start_col": 6, - "start_line": 143 - }, - "While constructing the external wrapper for:" - ], - "start_col": 37, - "start_line": 2 - } - }, - "3957": { - "accessible_scopes": [ - "__main__", - "__main__", - "__wrappers__", - "__wrappers__.getCell" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 72, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/external/getCell/da17921a4e81c09e730800bbf23bfdbe5e9e6bfaedc59d80fbf62087fa43c27d.cairo" - }, - "parent_location": [ - { - "end_col": 13, - "end_line": 143, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "start_col": 6, - "start_line": 143 - }, - "While constructing the external wrapper for:" - ], - "start_col": 1, - "start_line": 1 - } - }, - "3958": { - "accessible_scopes": [ - "__main__", - "__main__", - "__main__.renderCell" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 18, - "end_line": 154, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "start_col": 5, - "start_line": 154 - } - }, - "3960": { - "accessible_scopes": [ - "__main__", - "__main__", - "__main__.renderCell" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 84, - "end_line": 155, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "start_col": 71, - "start_line": 155 - } - }, - "3962": { - "accessible_scopes": [ - "__main__", - "__main__", - "__main__.renderCell" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 85, - "end_line": 155, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "start_col": 40, - "start_line": 155 - } - }, - "3964": { - "accessible_scopes": [ - "__main__", - "__main__", - "__main__.renderCell" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 36, - "end_line": 155, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "start_col": 10, - "start_line": 155 - } - }, - "3965": { - "accessible_scopes": [ - "__main__", - "__main__", - "__main__.renderCell" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 35, - "end_line": 151, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "parent_location": [ - { - "end_col": 27, - "end_line": 134, - "input_file": { - "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" - }, - "parent_location": [ - { - "end_col": 75, - "end_line": 158, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "start_col": 18, - "start_line": 158 - }, - "While trying to retrieve the implicit argument 'syscall_ptr' in:" - ], - "start_col": 9, - "start_line": 134 - }, - "While expanding the reference 'syscall_ptr' in:" - ], - "start_col": 17, - "start_line": 151 - } - }, - "3966": { - "accessible_scopes": [ - "__main__", - "__main__", - "__main__.renderCell" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 63, - "end_line": 151, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "parent_location": [ - { - "end_col": 55, - "end_line": 134, - "input_file": { - "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" - }, - "parent_location": [ - { - "end_col": 75, - "end_line": 158, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "start_col": 18, - "start_line": 158 - }, - "While trying to retrieve the implicit argument 'pedersen_ptr' in:" - ], - "start_col": 29, - "start_line": 134 - }, - "While expanding the reference 'pedersen_ptr' in:" - ], - "start_col": 37, - "start_line": 151 - } - }, - "3967": { - "accessible_scopes": [ - "__main__", - "__main__", - "__main__.renderCell" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 80, - "end_line": 151, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "parent_location": [ - { - "end_col": 72, - "end_line": 134, - "input_file": { - "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" - }, - "parent_location": [ - { - "end_col": 75, - "end_line": 158, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "start_col": 18, - "start_line": 158 - }, - "While trying to retrieve the implicit argument 'range_check_ptr' in:" - ], - "start_col": 57, - "start_line": 134 - }, - "While expanding the reference 'range_check_ptr' in:" - ], - "start_col": 65, - "start_line": 151 - } - }, - "3968": { - "accessible_scopes": [ - "__main__", - "__main__", - "__main__.renderCell" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 36, - "end_line": 155, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "parent_location": [ - { - "end_col": 46, - "end_line": 156, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "parent_location": [ - { - "end_col": 65, - "end_line": 158, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "start_col": 51, - "start_line": 158 - }, - "While expanding the reference 'rendered_cells' in:" - ], - "start_col": 26, - "start_line": 156 - }, - "While expanding the reference 'rendered_cells_start' in:" - ], - "start_col": 16, - "start_line": 155 - } - }, - "3969": { - "accessible_scopes": [ - "__main__", - "__main__", - "__main__.renderCell" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 95, - "end_line": 151, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "parent_location": [ - { - "end_col": 74, - "end_line": 158, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "start_col": 67, - "start_line": 158 - }, - "While expanding the reference 'tokenId' in:" - ], - "start_col": 82, - "start_line": 151 - } - }, - "3970": { - "accessible_scopes": [ - "__main__", - "__main__", - "__main__.renderCell" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 75, - "end_line": 158, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "start_col": 18, - "start_line": 158 - } - }, - "3972": { - "accessible_scopes": [ - "__main__", - "__main__", - "__main__.renderCell" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 14, - "end_line": 158, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "parent_location": [ - { - "end_col": 14, - "end_line": 158, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "start_col": 10, - "start_line": 158 - }, - "While auto generating local variable for 'cell'." - ], - "start_col": 10, - "start_line": 158 - } - }, - "3973": { - "accessible_scopes": [ - "__main__", - "__main__", - "__main__.renderCell" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 14, - "end_line": 158, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "parent_location": [ - { - "end_col": 14, - "end_line": 158, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "start_col": 10, - "start_line": 158 - }, - "While auto generating local variable for 'cell'." - ], - "start_col": 10, - "start_line": 158 - } - }, - "3974": { - "accessible_scopes": [ - "__main__", - "__main__", - "__main__.renderCell" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 14, - "end_line": 158, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "parent_location": [ - { - "end_col": 14, - "end_line": 158, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "start_col": 10, - "start_line": 158 - }, - "While auto generating local variable for 'cell'." - ], - "start_col": 10, - "start_line": 158 - } - }, - "3975": { - "accessible_scopes": [ - "__main__", - "__main__", - "__main__.renderCell" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 27, - "end_line": 134, - "input_file": { - "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" - }, - "parent_location": [ - { - "end_col": 75, - "end_line": 158, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "parent_location": [ - { - "end_col": 27, - "end_line": 134, - "input_file": { - "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" - }, - "parent_location": [ - { - "end_col": 75, - "end_line": 158, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "start_col": 18, - "start_line": 158 - }, - "While trying to update the implicit return value 'syscall_ptr' in:" - ], - "start_col": 9, - "start_line": 134 - }, - "While auto generating local variable for 'syscall_ptr'." - ], - "start_col": 18, - "start_line": 158 - }, - "While trying to update the implicit return value 'syscall_ptr' in:" - ], - "start_col": 9, - "start_line": 134 - } - }, - "3976": { - "accessible_scopes": [ - "__main__", - "__main__", - "__main__.renderCell" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 55, - "end_line": 134, - "input_file": { - "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" - }, - "parent_location": [ - { - "end_col": 75, - "end_line": 158, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "parent_location": [ - { - "end_col": 55, - "end_line": 134, - "input_file": { - "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" - }, - "parent_location": [ - { - "end_col": 75, - "end_line": 158, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "start_col": 18, - "start_line": 158 - }, - "While trying to update the implicit return value 'pedersen_ptr' in:" - ], - "start_col": 29, - "start_line": 134 - }, - "While auto generating local variable for 'pedersen_ptr'." - ], - "start_col": 18, - "start_line": 158 - }, - "While trying to update the implicit return value 'pedersen_ptr' in:" - ], - "start_col": 29, - "start_line": 134 - } - }, - "3977": { - "accessible_scopes": [ - "__main__", - "__main__", - "__main__.renderCell" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 72, - "end_line": 134, - "input_file": { - "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" - }, - "parent_location": [ - { - "end_col": 75, - "end_line": 158, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "parent_location": [ - { - "end_col": 43, - "end_line": 23, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/default_dict.cairo" - }, - "parent_location": [ - { - "end_col": 6, - "end_line": 162, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "start_col": 74, - "start_line": 160 - }, - "While trying to retrieve the implicit argument 'range_check_ptr' in:" - ], - "start_col": 28, - "start_line": 23 - }, - "While expanding the reference 'range_check_ptr' in:" - ], - "start_col": 18, - "start_line": 158 - }, - "While trying to update the implicit return value 'range_check_ptr' in:" - ], - "start_col": 57, - "start_line": 134 - } - }, - "3978": { - "accessible_scopes": [ - "__main__", - "__main__", - "__main__.renderCell" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 36, - "end_line": 155, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "parent_location": [ - { - "end_col": 29, - "end_line": 161, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "start_col": 9, - "start_line": 161 - }, - "While expanding the reference 'rendered_cells_start' in:" - ], - "start_col": 16, - "start_line": 155 - } - }, - "3979": { - "accessible_scopes": [ - "__main__", - "__main__", - "__main__.renderCell" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 65, - "end_line": 158, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "parent_location": [ - { - "end_col": 45, - "end_line": 161, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "start_col": 31, - "start_line": 161 - }, - "While expanding the reference 'rendered_cells' in:" - ], - "start_col": 51, - "start_line": 158 - } - }, - "3980": { - "accessible_scopes": [ - "__main__", - "__main__", - "__main__.renderCell" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 60, - "end_line": 161, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "start_col": 47, - "start_line": 161 - } - }, - "3982": { - "accessible_scopes": [ - "__main__", - "__main__", - "__main__.renderCell" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 6, - "end_line": 162, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "start_col": 74, - "start_line": 160 - } - }, - "3984": { - "accessible_scopes": [ - "__main__", - "__main__", - "__main__.renderCell" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 27, - "end_line": 134, - "input_file": { - "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" - }, - "parent_location": [ - { - "end_col": 75, - "end_line": 158, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "parent_location": [ - { - "end_col": 27, - "end_line": 134, - "input_file": { - "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" - }, - "parent_location": [ - { - "end_col": 75, - "end_line": 158, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "parent_location": [ - { - "end_col": 35, - "end_line": 151, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "parent_location": [ - { - "end_col": 20, - "end_line": 164, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "start_col": 5, - "start_line": 164 - }, - "While trying to retrieve the implicit argument 'syscall_ptr' in:" - ], - "start_col": 17, - "start_line": 151 - }, - "While expanding the reference 'syscall_ptr' in:" - ], - "start_col": 18, - "start_line": 158 - }, - "While trying to update the implicit return value 'syscall_ptr' in:" - ], - "start_col": 9, - "start_line": 134 - }, - "While auto generating local variable for 'syscall_ptr'." - ], - "start_col": 18, - "start_line": 158 - }, - "While trying to update the implicit return value 'syscall_ptr' in:" - ], - "start_col": 9, - "start_line": 134 - } - }, - "3985": { - "accessible_scopes": [ - "__main__", - "__main__", - "__main__.renderCell" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 55, - "end_line": 134, - "input_file": { - "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" - }, - "parent_location": [ - { - "end_col": 75, - "end_line": 158, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "parent_location": [ - { - "end_col": 55, - "end_line": 134, - "input_file": { - "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" - }, - "parent_location": [ - { - "end_col": 75, - "end_line": 158, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "parent_location": [ - { - "end_col": 63, - "end_line": 151, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "parent_location": [ - { - "end_col": 20, - "end_line": 164, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "start_col": 5, - "start_line": 164 - }, - "While trying to retrieve the implicit argument 'pedersen_ptr' in:" - ], - "start_col": 37, - "start_line": 151 - }, - "While expanding the reference 'pedersen_ptr' in:" - ], - "start_col": 18, - "start_line": 158 - }, - "While trying to update the implicit return value 'pedersen_ptr' in:" - ], - "start_col": 29, - "start_line": 134 - }, - "While auto generating local variable for 'pedersen_ptr'." - ], - "start_col": 18, - "start_line": 158 - }, - "While trying to update the implicit return value 'pedersen_ptr' in:" - ], - "start_col": 29, - "start_line": 134 - } - }, - "3986": { - "accessible_scopes": [ - "__main__", - "__main__", - "__main__.renderCell" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 43, - "end_line": 23, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/default_dict.cairo" - }, - "parent_location": [ - { - "end_col": 6, - "end_line": 162, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "parent_location": [ - { - "end_col": 80, - "end_line": 151, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "parent_location": [ - { - "end_col": 20, - "end_line": 164, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "start_col": 5, - "start_line": 164 - }, - "While trying to retrieve the implicit argument 'range_check_ptr' in:" - ], - "start_col": 65, - "start_line": 151 - }, - "While expanding the reference 'range_check_ptr' in:" - ], - "start_col": 74, - "start_line": 160 - }, - "While trying to update the implicit return value 'range_check_ptr' in:" - ], - "start_col": 28, - "start_line": 23 - } - }, - "3987": { - "accessible_scopes": [ - "__main__", - "__main__", - "__main__.renderCell" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 14, - "end_line": 158, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "parent_location": [ - { - "end_col": 14, - "end_line": 158, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "parent_location": [ - { - "end_col": 17, - "end_line": 164, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "start_col": 13, - "start_line": 164 - }, - "While expanding the reference 'cell' in:" - ], - "start_col": 10, - "start_line": 158 - }, - "While auto generating local variable for 'cell'." - ], - "start_col": 10, - "start_line": 158 - } - }, - "3988": { - "accessible_scopes": [ - "__main__", - "__main__", - "__main__.renderCell" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 14, - "end_line": 158, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "parent_location": [ - { - "end_col": 14, - "end_line": 158, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "parent_location": [ - { - "end_col": 17, - "end_line": 164, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "start_col": 13, - "start_line": 164 - }, - "While expanding the reference 'cell' in:" - ], - "start_col": 10, - "start_line": 158 - }, - "While auto generating local variable for 'cell'." - ], - "start_col": 10, - "start_line": 158 - } - }, - "3989": { - "accessible_scopes": [ - "__main__", - "__main__", - "__main__.renderCell" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 14, - "end_line": 158, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "parent_location": [ - { - "end_col": 14, - "end_line": 158, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "parent_location": [ - { - "end_col": 17, - "end_line": 164, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "start_col": 13, - "start_line": 164 - }, - "While expanding the reference 'cell' in:" - ], - "start_col": 10, - "start_line": 158 - }, - "While auto generating local variable for 'cell'." - ], - "start_col": 10, - "start_line": 158 - } - }, - "3990": { - "accessible_scopes": [ - "__main__", - "__main__", - "__main__.renderCell" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 20, - "end_line": 164, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "start_col": 5, - "start_line": 164 - } - }, - "3991": { - "accessible_scopes": [ - "__main__", - "__main__", - "__wrappers__", - "__wrappers__.renderCell_encode_return" - ], - "flow_tracking_data": null, - "hints": [ - { - "location": { - "end_col": 38, - "end_line": 3, - "input_file": { - "filename": "autogen/starknet/external/return/renderCell/519b9d1185b56b8b78dd1f832f4829e22be687880e347646a4023068e141c8d6.cairo" - }, - "parent_location": [ - { - "end_col": 16, - "end_line": 151, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "start_col": 6, - "start_line": 151 - }, - "While handling return value of" - ], - "start_col": 5, - "start_line": 3 - }, - "n_prefix_newlines": 0 - } - ], - "inst": { - "end_col": 18, - "end_line": 4, - "input_file": { - "filename": "autogen/starknet/external/return/renderCell/519b9d1185b56b8b78dd1f832f4829e22be687880e347646a4023068e141c8d6.cairo" - }, - "parent_location": [ - { - "end_col": 16, - "end_line": 151, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "start_col": 6, - "start_line": 151 - }, - "While handling return value of" - ], - "start_col": 5, - "start_line": 4 - } - }, - "3993": { - "accessible_scopes": [ - "__main__", - "__main__", - "__wrappers__", - "__wrappers__.renderCell_encode_return" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 60, - "end_line": 3, - "input_file": { - "filename": "autogen/starknet/arg_processor/5f6f38b703e229f570e2da89310885489d239999dac5c644617b668e9f79038b.cairo" - }, - "parent_location": [ - { - "end_col": 23, - "end_line": 152, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "start_col": 5, - "start_line": 152 - }, - "While handling return value 'cell'" - ], - "start_col": 1, - "start_line": 3 - } - }, - "3994": { - "accessible_scopes": [ - "__main__", - "__main__", - "__wrappers__", - "__wrappers__.renderCell_encode_return" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 60, - "end_line": 4, - "input_file": { - "filename": "autogen/starknet/arg_processor/5f6f38b703e229f570e2da89310885489d239999dac5c644617b668e9f79038b.cairo" - }, - "parent_location": [ - { - "end_col": 23, - "end_line": 152, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "start_col": 5, - "start_line": 152 - }, - "While handling return value 'cell'" - ], - "start_col": 1, - "start_line": 4 - } - }, - "3995": { - "accessible_scopes": [ - "__main__", - "__main__", - "__wrappers__", - "__wrappers__.renderCell_encode_return" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 60, - "end_line": 5, - "input_file": { - "filename": "autogen/starknet/arg_processor/5f6f38b703e229f570e2da89310885489d239999dac5c644617b668e9f79038b.cairo" - }, - "parent_location": [ - { - "end_col": 23, - "end_line": 152, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "start_col": 5, - "start_line": 152 - }, - "While handling return value 'cell'" - ], - "start_col": 1, - "start_line": 5 - } - }, - "3996": { - "accessible_scopes": [ - "__main__", - "__main__", - "__wrappers__", - "__wrappers__.renderCell_encode_return" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 48, - "end_line": 6, - "input_file": { - "filename": "autogen/starknet/arg_processor/5f6f38b703e229f570e2da89310885489d239999dac5c644617b668e9f79038b.cairo" - }, - "parent_location": [ - { - "end_col": 23, - "end_line": 152, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "parent_location": [ - { - "end_col": 36, - "end_line": 11, - "input_file": { - "filename": "autogen/starknet/external/return/renderCell/519b9d1185b56b8b78dd1f832f4829e22be687880e347646a4023068e141c8d6.cairo" - }, - "parent_location": [ - { - "end_col": 16, - "end_line": 151, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "start_col": 6, - "start_line": 151 - }, - "While handling return value of" - ], - "start_col": 18, - "start_line": 11 - }, - "While expanding the reference '__return_value_ptr' in:" - ], - "start_col": 5, - "start_line": 152 - }, - "While handling return value 'cell'" - ], - "start_col": 26, - "start_line": 6 - } - }, - "3998": { - "accessible_scopes": [ - "__main__", - "__main__", - "__wrappers__", - "__wrappers__.renderCell_encode_return" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 93, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/external/return/renderCell/519b9d1185b56b8b78dd1f832f4829e22be687880e347646a4023068e141c8d6.cairo" - }, - "parent_location": [ - { - "end_col": 16, - "end_line": 151, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "parent_location": [ - { - "end_col": 40, - "end_line": 10, - "input_file": { - "filename": "autogen/starknet/external/return/renderCell/519b9d1185b56b8b78dd1f832f4829e22be687880e347646a4023068e141c8d6.cairo" - }, - "parent_location": [ - { - "end_col": 16, - "end_line": 151, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "start_col": 6, - "start_line": 151 - }, - "While handling return value of" - ], - "start_col": 25, - "start_line": 10 - }, - "While expanding the reference 'range_check_ptr' in:" - ], - "start_col": 6, - "start_line": 151 - }, - "While handling return value of" - ], - "start_col": 78, - "start_line": 1 - } - }, - "3999": { - "accessible_scopes": [ - "__main__", - "__main__", - "__wrappers__", - "__wrappers__.renderCell_encode_return" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 63, - "end_line": 11, - "input_file": { - "filename": "autogen/starknet/external/return/renderCell/519b9d1185b56b8b78dd1f832f4829e22be687880e347646a4023068e141c8d6.cairo" - }, - "parent_location": [ - { - "end_col": 16, - "end_line": 151, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "start_col": 6, - "start_line": 151 - }, - "While handling return value of" - ], - "start_col": 18, - "start_line": 11 - } - }, - "4000": { - "accessible_scopes": [ - "__main__", - "__main__", - "__wrappers__", - "__wrappers__.renderCell_encode_return" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 35, - "end_line": 5, - "input_file": { - "filename": "autogen/starknet/external/return/renderCell/519b9d1185b56b8b78dd1f832f4829e22be687880e347646a4023068e141c8d6.cairo" - }, - "parent_location": [ - { - "end_col": 16, - "end_line": 151, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "parent_location": [ - { - "end_col": 38, - "end_line": 12, - "input_file": { - "filename": "autogen/starknet/external/return/renderCell/519b9d1185b56b8b78dd1f832f4829e22be687880e347646a4023068e141c8d6.cairo" - }, - "parent_location": [ - { - "end_col": 16, - "end_line": 151, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "start_col": 6, - "start_line": 151 - }, - "While handling return value of" - ], - "start_col": 14, - "start_line": 12 - }, - "While expanding the reference '__return_value_ptr_start' in:" - ], - "start_col": 6, - "start_line": 151 - }, - "While handling return value of" - ], - "start_col": 11, - "start_line": 5 - } - }, - "4001": { - "accessible_scopes": [ - "__main__", - "__main__", - "__wrappers__", - "__wrappers__.renderCell_encode_return" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 40, - "end_line": 12, - "input_file": { - "filename": "autogen/starknet/external/return/renderCell/519b9d1185b56b8b78dd1f832f4829e22be687880e347646a4023068e141c8d6.cairo" - }, - "parent_location": [ - { - "end_col": 16, - "end_line": 151, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "start_col": 6, - "start_line": 151 - }, - "While handling return value of" - ], - "start_col": 5, - "start_line": 9 - } - }, - "4002": { - "accessible_scopes": [ - "__main__", - "__main__", - "__wrappers__", - "__wrappers__.renderCell" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 40, - "end_line": 2, - "input_file": { - "filename": "autogen/starknet/arg_processor/128c2321f9070588a8d11dc60a4b2c6a3b0b1a97919597936f0847381384bd91.cairo" - }, - "parent_location": [ - { - "end_col": 95, - "end_line": 151, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "parent_location": [ - { - "end_col": 45, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/arg_processor/c31620b02d4d706f0542c989b2aadc01b0981d1f6a5933a8fe4937ace3d70d92.cairo" - }, - "parent_location": [ - { - "end_col": 16, - "end_line": 151, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "parent_location": [ - { - "end_col": 57, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/arg_processor/01cba52f8515996bb9d7070bde81ff39281d096d7024a558efcba6e1fd2402cf.cairo" - }, - "parent_location": [ - { - "end_col": 16, - "end_line": 151, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "start_col": 6, - "start_line": 151 - }, - "While handling calldata of" - ], - "start_col": 35, - "start_line": 1 - }, - "While expanding the reference '__calldata_actual_size' in:" - ], - "start_col": 6, - "start_line": 151 - }, - "While handling calldata of" - ], - "start_col": 31, - "start_line": 1 - }, - "While expanding the reference '__calldata_ptr' in:" - ], - "start_col": 82, - "start_line": 151 - }, - "While handling calldata argument 'tokenId'" - ], - "start_col": 22, - "start_line": 2 - } - }, - "4004": { - "accessible_scopes": [ - "__main__", - "__main__", - "__wrappers__", - "__wrappers__.renderCell" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 58, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/arg_processor/01cba52f8515996bb9d7070bde81ff39281d096d7024a558efcba6e1fd2402cf.cairo" - }, - "parent_location": [ - { - "end_col": 16, - "end_line": 151, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "start_col": 6, - "start_line": 151 - }, - "While handling calldata of" - ], - "start_col": 1, - "start_line": 1 - } - }, - "4005": { - "accessible_scopes": [ - "__main__", - "__main__", - "__wrappers__", - "__wrappers__.renderCell" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 64, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/external/renderCell/b2c52ca2d2a8fc8791a983086d8716c5eacd0c3d62934914d2286f84b98ff4cb.cairo" - }, - "parent_location": [ - { - "end_col": 35, - "end_line": 151, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "parent_location": [ - { - "end_col": 55, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/external/renderCell/146e356956f1b5b1ec5d9c2427e96b5918bf0557e0b6f7ad743096649056d836.cairo" - }, - "parent_location": [ - { - "end_col": 16, - "end_line": 151, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "start_col": 6, - "start_line": 151 - }, - "While constructing the external wrapper for:" - ], - "start_col": 44, - "start_line": 1 - }, - "While expanding the reference 'syscall_ptr' in:" - ], - "start_col": 17, - "start_line": 151 - }, - "While constructing the external wrapper for:" - ], - "start_col": 19, - "start_line": 1 - } - }, - "4006": { - "accessible_scopes": [ - "__main__", - "__main__", - "__wrappers__", - "__wrappers__.renderCell" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 110, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/external/renderCell/9684a85e93c782014ca14293edea4eb2502039a5a7b6538ecd39c56faaf12529.cairo" - }, - "parent_location": [ - { - "end_col": 63, - "end_line": 151, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "parent_location": [ - { - "end_col": 82, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/external/renderCell/146e356956f1b5b1ec5d9c2427e96b5918bf0557e0b6f7ad743096649056d836.cairo" - }, - "parent_location": [ - { - "end_col": 16, - "end_line": 151, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "start_col": 6, - "start_line": 151 - }, - "While constructing the external wrapper for:" - ], - "start_col": 70, - "start_line": 1 - }, - "While expanding the reference 'pedersen_ptr' in:" - ], - "start_col": 37, - "start_line": 151 - }, - "While constructing the external wrapper for:" - ], - "start_col": 20, - "start_line": 1 - } - }, - "4007": { - "accessible_scopes": [ - "__main__", - "__main__", - "__wrappers__", - "__wrappers__.renderCell" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 67, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/external/renderCell/741ea357d6336b0bed7bf0472425acd0311d543883b803388880e60a232040c7.cairo" - }, - "parent_location": [ - { - "end_col": 80, - "end_line": 151, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "parent_location": [ - { - "end_col": 115, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/external/renderCell/146e356956f1b5b1ec5d9c2427e96b5918bf0557e0b6f7ad743096649056d836.cairo" - }, - "parent_location": [ - { - "end_col": 16, - "end_line": 151, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "start_col": 6, - "start_line": 151 - }, - "While constructing the external wrapper for:" - ], - "start_col": 100, - "start_line": 1 - }, - "While expanding the reference 'range_check_ptr' in:" - ], - "start_col": 65, - "start_line": 151 - }, - "While constructing the external wrapper for:" - ], - "start_col": 23, - "start_line": 1 - } - }, - "4008": { - "accessible_scopes": [ - "__main__", - "__main__", - "__wrappers__", - "__wrappers__.renderCell" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 46, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/arg_processor/128c2321f9070588a8d11dc60a4b2c6a3b0b1a97919597936f0847381384bd91.cairo" - }, - "parent_location": [ - { - "end_col": 95, - "end_line": 151, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "parent_location": [ - { - "end_col": 147, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/external/renderCell/146e356956f1b5b1ec5d9c2427e96b5918bf0557e0b6f7ad743096649056d836.cairo" - }, - "parent_location": [ - { - "end_col": 16, - "end_line": 151, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "start_col": 6, - "start_line": 151 - }, - "While constructing the external wrapper for:" - ], - "start_col": 125, - "start_line": 1 - }, - "While expanding the reference '__calldata_arg_tokenId' in:" - ], - "start_col": 82, - "start_line": 151 - }, - "While handling calldata argument 'tokenId'" - ], - "start_col": 30, - "start_line": 1 - } - }, - "4009": { - "accessible_scopes": [ - "__main__", - "__main__", - "__wrappers__", - "__wrappers__.renderCell" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 16, - "end_line": 151, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "start_col": 6, - "start_line": 151 - } - }, - "4011": { - "accessible_scopes": [ - "__main__", - "__main__", - "__wrappers__", - "__wrappers__.renderCell" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 115, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/external/renderCell/146e356956f1b5b1ec5d9c2427e96b5918bf0557e0b6f7ad743096649056d836.cairo" - }, - "parent_location": [ - { - "end_col": 16, - "end_line": 151, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "parent_location": [ - { - "end_col": 99, - "end_line": 2, - "input_file": { - "filename": "autogen/starknet/external/renderCell/146e356956f1b5b1ec5d9c2427e96b5918bf0557e0b6f7ad743096649056d836.cairo" - }, - "parent_location": [ - { - "end_col": 16, - "end_line": 151, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "start_col": 6, - "start_line": 151 - }, - "While constructing the external wrapper for:" - ], - "start_col": 84, - "start_line": 2 - }, - "While expanding the reference 'range_check_ptr' in:" - ], - "start_col": 6, - "start_line": 151 - }, - "While constructing the external wrapper for:" - ], - "start_col": 100, - "start_line": 1 - } - }, - "4012": { - "accessible_scopes": [ - "__main__", - "__main__", - "__wrappers__", - "__wrappers__.renderCell" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 100, - "end_line": 2, - "input_file": { - "filename": "autogen/starknet/external/renderCell/146e356956f1b5b1ec5d9c2427e96b5918bf0557e0b6f7ad743096649056d836.cairo" - }, - "parent_location": [ - { - "end_col": 16, - "end_line": 151, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "start_col": 6, - "start_line": 151 - }, - "While constructing the external wrapper for:" - ], - "start_col": 48, - "start_line": 2 - } - }, - "4014": { - "accessible_scopes": [ - "__main__", - "__main__", - "__wrappers__", - "__wrappers__.renderCell" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 55, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/external/renderCell/146e356956f1b5b1ec5d9c2427e96b5918bf0557e0b6f7ad743096649056d836.cairo" - }, - "parent_location": [ - { - "end_col": 16, - "end_line": 151, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "parent_location": [ - { - "end_col": 20, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/external/renderCell/da17921a4e81c09e730800bbf23bfdbe5e9e6bfaedc59d80fbf62087fa43c27d.cairo" - }, - "parent_location": [ - { - "end_col": 16, - "end_line": 151, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "start_col": 6, - "start_line": 151 - }, - "While constructing the external wrapper for:" - ], - "start_col": 9, - "start_line": 1 - }, - "While expanding the reference 'syscall_ptr' in:" - ], - "start_col": 6, - "start_line": 151 - }, - "While constructing the external wrapper for:" - ], - "start_col": 44, - "start_line": 1 - } - }, - "4015": { - "accessible_scopes": [ - "__main__", - "__main__", - "__wrappers__", - "__wrappers__.renderCell" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 82, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/external/renderCell/146e356956f1b5b1ec5d9c2427e96b5918bf0557e0b6f7ad743096649056d836.cairo" - }, - "parent_location": [ - { - "end_col": 16, - "end_line": 151, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "parent_location": [ - { - "end_col": 33, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/external/renderCell/da17921a4e81c09e730800bbf23bfdbe5e9e6bfaedc59d80fbf62087fa43c27d.cairo" - }, - "parent_location": [ - { - "end_col": 16, - "end_line": 151, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "start_col": 6, - "start_line": 151 - }, - "While constructing the external wrapper for:" - ], - "start_col": 21, - "start_line": 1 - }, - "While expanding the reference 'pedersen_ptr' in:" - ], - "start_col": 6, - "start_line": 151 - }, - "While constructing the external wrapper for:" - ], - "start_col": 70, - "start_line": 1 - } - }, - "4016": { - "accessible_scopes": [ - "__main__", - "__main__", - "__wrappers__", - "__wrappers__.renderCell" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 21, - "end_line": 2, - "input_file": { - "filename": "autogen/starknet/external/renderCell/146e356956f1b5b1ec5d9c2427e96b5918bf0557e0b6f7ad743096649056d836.cairo" - }, - "parent_location": [ - { - "end_col": 16, - "end_line": 151, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "parent_location": [ - { - "end_col": 49, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/external/renderCell/da17921a4e81c09e730800bbf23bfdbe5e9e6bfaedc59d80fbf62087fa43c27d.cairo" - }, - "parent_location": [ - { - "end_col": 16, - "end_line": 151, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "start_col": 6, - "start_line": 151 - }, - "While constructing the external wrapper for:" - ], - "start_col": 34, - "start_line": 1 - }, - "While expanding the reference 'range_check_ptr' in:" - ], - "start_col": 6, - "start_line": 151 - }, - "While constructing the external wrapper for:" - ], - "start_col": 6, - "start_line": 2 - } - }, - "4017": { - "accessible_scopes": [ - "__main__", - "__main__", - "__wrappers__", - "__wrappers__.renderCell" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 35, - "end_line": 2, - "input_file": { - "filename": "autogen/starknet/external/renderCell/146e356956f1b5b1ec5d9c2427e96b5918bf0557e0b6f7ad743096649056d836.cairo" - }, - "parent_location": [ - { - "end_col": 16, - "end_line": 151, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "parent_location": [ - { - "end_col": 62, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/external/renderCell/da17921a4e81c09e730800bbf23bfdbe5e9e6bfaedc59d80fbf62087fa43c27d.cairo" - }, - "parent_location": [ - { - "end_col": 16, - "end_line": 151, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "start_col": 6, - "start_line": 151 - }, - "While constructing the external wrapper for:" - ], - "start_col": 50, - "start_line": 1 - }, - "While expanding the reference 'retdata_size' in:" - ], - "start_col": 6, - "start_line": 151 - }, - "While constructing the external wrapper for:" - ], - "start_col": 23, - "start_line": 2 - } - }, - "4018": { - "accessible_scopes": [ - "__main__", - "__main__", - "__wrappers__", - "__wrappers__.renderCell" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 44, - "end_line": 2, - "input_file": { - "filename": "autogen/starknet/external/renderCell/146e356956f1b5b1ec5d9c2427e96b5918bf0557e0b6f7ad743096649056d836.cairo" - }, - "parent_location": [ - { - "end_col": 16, - "end_line": 151, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "parent_location": [ - { - "end_col": 70, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/external/renderCell/da17921a4e81c09e730800bbf23bfdbe5e9e6bfaedc59d80fbf62087fa43c27d.cairo" - }, - "parent_location": [ - { - "end_col": 16, - "end_line": 151, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "start_col": 6, - "start_line": 151 - }, - "While constructing the external wrapper for:" - ], - "start_col": 63, - "start_line": 1 - }, - "While expanding the reference 'retdata' in:" - ], - "start_col": 6, - "start_line": 151 - }, - "While constructing the external wrapper for:" - ], - "start_col": 37, - "start_line": 2 - } - }, - "4019": { - "accessible_scopes": [ - "__main__", - "__main__", - "__wrappers__", - "__wrappers__.renderCell" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 72, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/external/renderCell/da17921a4e81c09e730800bbf23bfdbe5e9e6bfaedc59d80fbf62087fa43c27d.cairo" - }, - "parent_location": [ - { - "end_col": 16, - "end_line": 151, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "start_col": 6, - "start_line": 151 - }, - "While constructing the external wrapper for:" - ], - "start_col": 1, - "start_line": 1 - } - }, - "4020": { - "accessible_scopes": [ - "__main__", - "__main__", - "__main__.renderCellValue" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 40, - "end_line": 168, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "parent_location": [ - { - "end_col": 35, - "end_line": 151, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "parent_location": [ - { - "end_col": 37, - "end_line": 171, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "start_col": 18, - "start_line": 171 - }, - "While trying to retrieve the implicit argument 'syscall_ptr' in:" - ], - "start_col": 17, - "start_line": 151 - }, - "While expanding the reference 'syscall_ptr' in:" - ], - "start_col": 22, - "start_line": 168 - } - }, - "4021": { - "accessible_scopes": [ - "__main__", - "__main__", - "__main__.renderCellValue" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 68, - "end_line": 168, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "parent_location": [ - { - "end_col": 63, - "end_line": 151, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "parent_location": [ - { - "end_col": 37, - "end_line": 171, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "start_col": 18, - "start_line": 171 - }, - "While trying to retrieve the implicit argument 'pedersen_ptr' in:" - ], - "start_col": 37, - "start_line": 151 - }, - "While expanding the reference 'pedersen_ptr' in:" - ], - "start_col": 42, - "start_line": 168 - } - }, - "4022": { - "accessible_scopes": [ - "__main__", - "__main__", - "__main__.renderCellValue" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 85, - "end_line": 168, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "parent_location": [ - { - "end_col": 80, - "end_line": 151, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "parent_location": [ - { - "end_col": 37, - "end_line": 171, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "start_col": 18, - "start_line": 171 - }, - "While trying to retrieve the implicit argument 'range_check_ptr' in:" - ], - "start_col": 65, - "start_line": 151 - }, - "While expanding the reference 'range_check_ptr' in:" - ], - "start_col": 70, - "start_line": 168 - } - }, - "4023": { - "accessible_scopes": [ - "__main__", - "__main__", - "__main__.renderCellValue" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 18, - "end_line": 169, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "parent_location": [ - { - "end_col": 36, - "end_line": 171, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "start_col": 29, - "start_line": 171 - }, - "While expanding the reference 'tokenId' in:" - ], - "start_col": 5, - "start_line": 169 - } - }, - "4024": { - "accessible_scopes": [ - "__main__", - "__main__", - "__main__.renderCellValue" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 37, - "end_line": 171, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "start_col": 18, - "start_line": 171 - } - }, - "4026": { - "accessible_scopes": [ - "__main__", - "__main__", - "__main__.renderCellValue" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 35, - "end_line": 151, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "parent_location": [ - { - "end_col": 37, - "end_line": 171, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "parent_location": [ - { - "end_col": 40, - "end_line": 168, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "parent_location": [ - { - "end_col": 26, - "end_line": 172, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "start_col": 5, - "start_line": 172 - }, - "While trying to retrieve the implicit argument 'syscall_ptr' in:" - ], - "start_col": 22, - "start_line": 168 - }, - "While expanding the reference 'syscall_ptr' in:" - ], - "start_col": 18, - "start_line": 171 - }, - "While trying to update the implicit return value 'syscall_ptr' in:" - ], - "start_col": 17, - "start_line": 151 - } - }, - "4027": { - "accessible_scopes": [ - "__main__", - "__main__", - "__main__.renderCellValue" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 63, - "end_line": 151, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "parent_location": [ - { - "end_col": 37, - "end_line": 171, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "parent_location": [ - { - "end_col": 68, - "end_line": 168, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "parent_location": [ - { - "end_col": 26, - "end_line": 172, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "start_col": 5, - "start_line": 172 - }, - "While trying to retrieve the implicit argument 'pedersen_ptr' in:" - ], - "start_col": 42, - "start_line": 168 - }, - "While expanding the reference 'pedersen_ptr' in:" - ], - "start_col": 18, - "start_line": 171 - }, - "While trying to update the implicit return value 'pedersen_ptr' in:" - ], - "start_col": 37, - "start_line": 151 - } - }, - "4028": { - "accessible_scopes": [ - "__main__", - "__main__", - "__main__.renderCellValue" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 80, - "end_line": 151, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "parent_location": [ - { - "end_col": 37, - "end_line": 171, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "parent_location": [ - { - "end_col": 85, - "end_line": 168, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "parent_location": [ - { - "end_col": 26, - "end_line": 172, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "start_col": 5, - "start_line": 172 - }, - "While trying to retrieve the implicit argument 'range_check_ptr' in:" - ], - "start_col": 70, - "start_line": 168 - }, - "While expanding the reference 'range_check_ptr' in:" - ], - "start_col": 18, - "start_line": 171 - }, - "While trying to update the implicit return value 'range_check_ptr' in:" - ], - "start_col": 65, - "start_line": 151 - } - }, - "4029": { - "accessible_scopes": [ - "__main__", - "__main__", - "__main__.renderCellValue" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 23, - "end_line": 172, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "start_col": 13, - "start_line": 172 - } - }, - "4030": { - "accessible_scopes": [ - "__main__", - "__main__", - "__main__.renderCellValue" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 26, - "end_line": 172, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "start_col": 5, - "start_line": 172 - } - }, - "4031": { - "accessible_scopes": [ - "__main__", - "__main__", - "__wrappers__", - "__wrappers__.renderCellValue_encode_return" - ], - "flow_tracking_data": null, - "hints": [ - { - "location": { - "end_col": 38, - "end_line": 3, - "input_file": { - "filename": "autogen/starknet/external/return/renderCellValue/5178822e53bcca72dafc5ab7de86f8a9c6086d257f9e71100782acd0b5bff53e.cairo" - }, - "parent_location": [ - { - "end_col": 21, - "end_line": 168, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "start_col": 6, - "start_line": 168 - }, - "While handling return value of" - ], - "start_col": 5, - "start_line": 3 - }, - "n_prefix_newlines": 0 - } - ], - "inst": { - "end_col": 18, - "end_line": 4, - "input_file": { - "filename": "autogen/starknet/external/return/renderCellValue/5178822e53bcca72dafc5ab7de86f8a9c6086d257f9e71100782acd0b5bff53e.cairo" - }, - "parent_location": [ - { - "end_col": 21, - "end_line": 168, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "start_col": 6, - "start_line": 168 - }, - "While handling return value of" - ], - "start_col": 5, - "start_line": 4 - } - }, - "4033": { - "accessible_scopes": [ - "__main__", - "__main__", - "__wrappers__", - "__wrappers__.renderCellValue_encode_return" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 47, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/arg_processor/361efcca75a31f4c299c46d8d625210e368f481380cc3fa32a6d87e5dbe7e45c.cairo" - }, - "parent_location": [ - { - "end_col": 18, - "end_line": 170, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "start_col": 7, - "start_line": 170 - }, - "While handling return value 'value'" - ], - "start_col": 1, - "start_line": 1 - } - }, - "4034": { - "accessible_scopes": [ - "__main__", - "__main__", - "__wrappers__", - "__wrappers__.renderCellValue_encode_return" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 48, - "end_line": 2, - "input_file": { - "filename": "autogen/starknet/arg_processor/361efcca75a31f4c299c46d8d625210e368f481380cc3fa32a6d87e5dbe7e45c.cairo" - }, - "parent_location": [ - { - "end_col": 18, - "end_line": 170, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "parent_location": [ - { - "end_col": 36, - "end_line": 11, - "input_file": { - "filename": "autogen/starknet/external/return/renderCellValue/5178822e53bcca72dafc5ab7de86f8a9c6086d257f9e71100782acd0b5bff53e.cairo" - }, - "parent_location": [ - { - "end_col": 21, - "end_line": 168, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "start_col": 6, - "start_line": 168 - }, - "While handling return value of" - ], - "start_col": 18, - "start_line": 11 - }, - "While expanding the reference '__return_value_ptr' in:" - ], - "start_col": 7, - "start_line": 170 - }, - "While handling return value 'value'" - ], - "start_col": 26, - "start_line": 2 - } - }, - "4036": { - "accessible_scopes": [ - "__main__", - "__main__", - "__wrappers__", - "__wrappers__.renderCellValue_encode_return" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 77, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/external/return/renderCellValue/5178822e53bcca72dafc5ab7de86f8a9c6086d257f9e71100782acd0b5bff53e.cairo" - }, - "parent_location": [ - { - "end_col": 21, - "end_line": 168, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "parent_location": [ - { - "end_col": 40, - "end_line": 10, - "input_file": { - "filename": "autogen/starknet/external/return/renderCellValue/5178822e53bcca72dafc5ab7de86f8a9c6086d257f9e71100782acd0b5bff53e.cairo" - }, - "parent_location": [ - { - "end_col": 21, - "end_line": 168, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "start_col": 6, - "start_line": 168 - }, - "While handling return value of" - ], - "start_col": 25, - "start_line": 10 - }, - "While expanding the reference 'range_check_ptr' in:" - ], - "start_col": 6, - "start_line": 168 - }, - "While handling return value of" - ], - "start_col": 62, - "start_line": 1 - } - }, - "4037": { - "accessible_scopes": [ - "__main__", - "__main__", - "__wrappers__", - "__wrappers__.renderCellValue_encode_return" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 63, - "end_line": 11, - "input_file": { - "filename": "autogen/starknet/external/return/renderCellValue/5178822e53bcca72dafc5ab7de86f8a9c6086d257f9e71100782acd0b5bff53e.cairo" - }, - "parent_location": [ - { - "end_col": 21, - "end_line": 168, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "start_col": 6, - "start_line": 168 - }, - "While handling return value of" - ], - "start_col": 18, - "start_line": 11 - } - }, - "4038": { - "accessible_scopes": [ - "__main__", - "__main__", - "__wrappers__", - "__wrappers__.renderCellValue_encode_return" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 35, - "end_line": 5, - "input_file": { - "filename": "autogen/starknet/external/return/renderCellValue/5178822e53bcca72dafc5ab7de86f8a9c6086d257f9e71100782acd0b5bff53e.cairo" - }, - "parent_location": [ - { - "end_col": 21, - "end_line": 168, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "parent_location": [ - { - "end_col": 38, - "end_line": 12, - "input_file": { - "filename": "autogen/starknet/external/return/renderCellValue/5178822e53bcca72dafc5ab7de86f8a9c6086d257f9e71100782acd0b5bff53e.cairo" - }, - "parent_location": [ - { - "end_col": 21, - "end_line": 168, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "start_col": 6, - "start_line": 168 - }, - "While handling return value of" - ], - "start_col": 14, - "start_line": 12 - }, - "While expanding the reference '__return_value_ptr_start' in:" - ], - "start_col": 6, - "start_line": 168 - }, - "While handling return value of" - ], - "start_col": 11, - "start_line": 5 - } - }, - "4039": { - "accessible_scopes": [ - "__main__", - "__main__", - "__wrappers__", - "__wrappers__.renderCellValue_encode_return" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 40, - "end_line": 12, - "input_file": { - "filename": "autogen/starknet/external/return/renderCellValue/5178822e53bcca72dafc5ab7de86f8a9c6086d257f9e71100782acd0b5bff53e.cairo" - }, - "parent_location": [ - { - "end_col": 21, - "end_line": 168, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "start_col": 6, - "start_line": 168 - }, - "While handling return value of" - ], - "start_col": 5, - "start_line": 9 - } - }, - "4040": { - "accessible_scopes": [ - "__main__", - "__main__", - "__wrappers__", - "__wrappers__.renderCellValue" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 40, - "end_line": 2, - "input_file": { - "filename": "autogen/starknet/arg_processor/128c2321f9070588a8d11dc60a4b2c6a3b0b1a97919597936f0847381384bd91.cairo" - }, - "parent_location": [ - { - "end_col": 18, - "end_line": 169, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "parent_location": [ - { - "end_col": 45, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/arg_processor/c31620b02d4d706f0542c989b2aadc01b0981d1f6a5933a8fe4937ace3d70d92.cairo" - }, - "parent_location": [ - { - "end_col": 21, - "end_line": 168, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "parent_location": [ - { - "end_col": 57, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/arg_processor/01cba52f8515996bb9d7070bde81ff39281d096d7024a558efcba6e1fd2402cf.cairo" - }, - "parent_location": [ - { - "end_col": 21, - "end_line": 168, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "start_col": 6, - "start_line": 168 - }, - "While handling calldata of" - ], - "start_col": 35, - "start_line": 1 - }, - "While expanding the reference '__calldata_actual_size' in:" - ], - "start_col": 6, - "start_line": 168 - }, - "While handling calldata of" - ], - "start_col": 31, - "start_line": 1 - }, - "While expanding the reference '__calldata_ptr' in:" - ], - "start_col": 5, - "start_line": 169 - }, - "While handling calldata argument 'tokenId'" - ], - "start_col": 22, - "start_line": 2 - } - }, - "4042": { - "accessible_scopes": [ - "__main__", - "__main__", - "__wrappers__", - "__wrappers__.renderCellValue" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 58, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/arg_processor/01cba52f8515996bb9d7070bde81ff39281d096d7024a558efcba6e1fd2402cf.cairo" - }, - "parent_location": [ - { - "end_col": 21, - "end_line": 168, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "start_col": 6, - "start_line": 168 - }, - "While handling calldata of" - ], - "start_col": 1, - "start_line": 1 - } - }, - "4043": { - "accessible_scopes": [ - "__main__", - "__main__", - "__wrappers__", - "__wrappers__.renderCellValue" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 64, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/external/renderCellValue/b2c52ca2d2a8fc8791a983086d8716c5eacd0c3d62934914d2286f84b98ff4cb.cairo" - }, - "parent_location": [ - { - "end_col": 40, - "end_line": 168, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "parent_location": [ - { - "end_col": 55, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/external/renderCellValue/f5e623291f93f5721b4e366de1f2f5345d268b1d1b1dd5b6b0411cd83a1a1988.cairo" - }, - "parent_location": [ - { - "end_col": 21, - "end_line": 168, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "start_col": 6, - "start_line": 168 - }, - "While constructing the external wrapper for:" - ], - "start_col": 44, - "start_line": 1 - }, - "While expanding the reference 'syscall_ptr' in:" - ], - "start_col": 22, - "start_line": 168 - }, - "While constructing the external wrapper for:" - ], - "start_col": 19, - "start_line": 1 - } - }, - "4044": { - "accessible_scopes": [ - "__main__", - "__main__", - "__wrappers__", - "__wrappers__.renderCellValue" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 110, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/external/renderCellValue/9684a85e93c782014ca14293edea4eb2502039a5a7b6538ecd39c56faaf12529.cairo" - }, - "parent_location": [ - { - "end_col": 68, - "end_line": 168, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "parent_location": [ - { - "end_col": 82, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/external/renderCellValue/f5e623291f93f5721b4e366de1f2f5345d268b1d1b1dd5b6b0411cd83a1a1988.cairo" - }, - "parent_location": [ - { - "end_col": 21, - "end_line": 168, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "start_col": 6, - "start_line": 168 - }, - "While constructing the external wrapper for:" - ], - "start_col": 70, - "start_line": 1 - }, - "While expanding the reference 'pedersen_ptr' in:" - ], - "start_col": 42, - "start_line": 168 - }, - "While constructing the external wrapper for:" - ], - "start_col": 20, - "start_line": 1 - } - }, - "4045": { - "accessible_scopes": [ - "__main__", - "__main__", - "__wrappers__", - "__wrappers__.renderCellValue" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 67, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/external/renderCellValue/741ea357d6336b0bed7bf0472425acd0311d543883b803388880e60a232040c7.cairo" - }, - "parent_location": [ - { - "end_col": 85, - "end_line": 168, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "parent_location": [ - { - "end_col": 115, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/external/renderCellValue/f5e623291f93f5721b4e366de1f2f5345d268b1d1b1dd5b6b0411cd83a1a1988.cairo" - }, - "parent_location": [ - { - "end_col": 21, - "end_line": 168, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "start_col": 6, - "start_line": 168 - }, - "While constructing the external wrapper for:" - ], - "start_col": 100, - "start_line": 1 - }, - "While expanding the reference 'range_check_ptr' in:" - ], - "start_col": 70, - "start_line": 168 - }, - "While constructing the external wrapper for:" - ], - "start_col": 23, - "start_line": 1 - } - }, - "4046": { - "accessible_scopes": [ - "__main__", - "__main__", - "__wrappers__", - "__wrappers__.renderCellValue" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 46, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/arg_processor/128c2321f9070588a8d11dc60a4b2c6a3b0b1a97919597936f0847381384bd91.cairo" - }, - "parent_location": [ - { - "end_col": 18, - "end_line": 169, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "parent_location": [ - { - "end_col": 147, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/external/renderCellValue/f5e623291f93f5721b4e366de1f2f5345d268b1d1b1dd5b6b0411cd83a1a1988.cairo" - }, - "parent_location": [ - { - "end_col": 21, - "end_line": 168, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "start_col": 6, - "start_line": 168 - }, - "While constructing the external wrapper for:" - ], - "start_col": 125, - "start_line": 1 - }, - "While expanding the reference '__calldata_arg_tokenId' in:" - ], - "start_col": 5, - "start_line": 169 - }, - "While handling calldata argument 'tokenId'" - ], - "start_col": 30, - "start_line": 1 - } - }, - "4047": { - "accessible_scopes": [ - "__main__", - "__main__", - "__wrappers__", - "__wrappers__.renderCellValue" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 21, - "end_line": 168, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "start_col": 6, - "start_line": 168 - } - }, - "4049": { - "accessible_scopes": [ - "__main__", - "__main__", - "__wrappers__", - "__wrappers__.renderCellValue" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 115, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/external/renderCellValue/f5e623291f93f5721b4e366de1f2f5345d268b1d1b1dd5b6b0411cd83a1a1988.cairo" - }, - "parent_location": [ - { - "end_col": 21, - "end_line": 168, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "parent_location": [ - { - "end_col": 104, - "end_line": 2, - "input_file": { - "filename": "autogen/starknet/external/renderCellValue/f5e623291f93f5721b4e366de1f2f5345d268b1d1b1dd5b6b0411cd83a1a1988.cairo" - }, - "parent_location": [ - { - "end_col": 21, - "end_line": 168, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "start_col": 6, - "start_line": 168 - }, - "While constructing the external wrapper for:" - ], - "start_col": 89, - "start_line": 2 - }, - "While expanding the reference 'range_check_ptr' in:" - ], - "start_col": 6, - "start_line": 168 - }, - "While constructing the external wrapper for:" - ], - "start_col": 100, - "start_line": 1 - } - }, - "4050": { - "accessible_scopes": [ - "__main__", - "__main__", - "__wrappers__", - "__wrappers__.renderCellValue" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 105, - "end_line": 2, - "input_file": { - "filename": "autogen/starknet/external/renderCellValue/f5e623291f93f5721b4e366de1f2f5345d268b1d1b1dd5b6b0411cd83a1a1988.cairo" - }, - "parent_location": [ - { - "end_col": 21, - "end_line": 168, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "start_col": 6, - "start_line": 168 - }, - "While constructing the external wrapper for:" - ], - "start_col": 48, - "start_line": 2 - } - }, - "4052": { - "accessible_scopes": [ - "__main__", - "__main__", - "__wrappers__", - "__wrappers__.renderCellValue" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 55, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/external/renderCellValue/f5e623291f93f5721b4e366de1f2f5345d268b1d1b1dd5b6b0411cd83a1a1988.cairo" - }, - "parent_location": [ - { - "end_col": 21, - "end_line": 168, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "parent_location": [ - { - "end_col": 20, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/external/renderCellValue/da17921a4e81c09e730800bbf23bfdbe5e9e6bfaedc59d80fbf62087fa43c27d.cairo" - }, - "parent_location": [ - { - "end_col": 21, - "end_line": 168, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "start_col": 6, - "start_line": 168 - }, - "While constructing the external wrapper for:" - ], - "start_col": 9, - "start_line": 1 - }, - "While expanding the reference 'syscall_ptr' in:" - ], - "start_col": 6, - "start_line": 168 - }, - "While constructing the external wrapper for:" - ], - "start_col": 44, - "start_line": 1 - } - }, - "4053": { - "accessible_scopes": [ - "__main__", - "__main__", - "__wrappers__", - "__wrappers__.renderCellValue" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 82, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/external/renderCellValue/f5e623291f93f5721b4e366de1f2f5345d268b1d1b1dd5b6b0411cd83a1a1988.cairo" - }, - "parent_location": [ - { - "end_col": 21, - "end_line": 168, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "parent_location": [ - { - "end_col": 33, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/external/renderCellValue/da17921a4e81c09e730800bbf23bfdbe5e9e6bfaedc59d80fbf62087fa43c27d.cairo" - }, - "parent_location": [ - { - "end_col": 21, - "end_line": 168, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "start_col": 6, - "start_line": 168 - }, - "While constructing the external wrapper for:" - ], - "start_col": 21, - "start_line": 1 - }, - "While expanding the reference 'pedersen_ptr' in:" - ], - "start_col": 6, - "start_line": 168 - }, - "While constructing the external wrapper for:" - ], - "start_col": 70, - "start_line": 1 - } - }, - "4054": { - "accessible_scopes": [ - "__main__", - "__main__", - "__wrappers__", - "__wrappers__.renderCellValue" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 21, - "end_line": 2, - "input_file": { - "filename": "autogen/starknet/external/renderCellValue/f5e623291f93f5721b4e366de1f2f5345d268b1d1b1dd5b6b0411cd83a1a1988.cairo" - }, - "parent_location": [ - { - "end_col": 21, - "end_line": 168, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "parent_location": [ - { - "end_col": 49, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/external/renderCellValue/da17921a4e81c09e730800bbf23bfdbe5e9e6bfaedc59d80fbf62087fa43c27d.cairo" - }, - "parent_location": [ - { - "end_col": 21, - "end_line": 168, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "start_col": 6, - "start_line": 168 - }, - "While constructing the external wrapper for:" - ], - "start_col": 34, - "start_line": 1 - }, - "While expanding the reference 'range_check_ptr' in:" - ], - "start_col": 6, - "start_line": 168 - }, - "While constructing the external wrapper for:" - ], - "start_col": 6, - "start_line": 2 - } - }, - "4055": { - "accessible_scopes": [ - "__main__", - "__main__", - "__wrappers__", - "__wrappers__.renderCellValue" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 35, - "end_line": 2, - "input_file": { - "filename": "autogen/starknet/external/renderCellValue/f5e623291f93f5721b4e366de1f2f5345d268b1d1b1dd5b6b0411cd83a1a1988.cairo" - }, - "parent_location": [ - { - "end_col": 21, - "end_line": 168, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "parent_location": [ - { - "end_col": 62, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/external/renderCellValue/da17921a4e81c09e730800bbf23bfdbe5e9e6bfaedc59d80fbf62087fa43c27d.cairo" - }, - "parent_location": [ - { - "end_col": 21, - "end_line": 168, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "start_col": 6, - "start_line": 168 - }, - "While constructing the external wrapper for:" - ], - "start_col": 50, - "start_line": 1 - }, - "While expanding the reference 'retdata_size' in:" - ], - "start_col": 6, - "start_line": 168 - }, - "While constructing the external wrapper for:" - ], - "start_col": 23, - "start_line": 2 - } - }, - "4056": { - "accessible_scopes": [ - "__main__", - "__main__", - "__wrappers__", - "__wrappers__.renderCellValue" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 44, - "end_line": 2, - "input_file": { - "filename": "autogen/starknet/external/renderCellValue/f5e623291f93f5721b4e366de1f2f5345d268b1d1b1dd5b6b0411cd83a1a1988.cairo" - }, - "parent_location": [ - { - "end_col": 21, - "end_line": 168, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "parent_location": [ - { - "end_col": 70, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/external/renderCellValue/da17921a4e81c09e730800bbf23bfdbe5e9e6bfaedc59d80fbf62087fa43c27d.cairo" - }, - "parent_location": [ - { - "end_col": 21, - "end_line": 168, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "start_col": 6, - "start_line": 168 - }, - "While constructing the external wrapper for:" - ], - "start_col": 63, - "start_line": 1 - }, - "While expanding the reference 'retdata' in:" - ], - "start_col": 6, - "start_line": 168 - }, - "While constructing the external wrapper for:" - ], - "start_col": 37, - "start_line": 2 - } - }, - "4057": { - "accessible_scopes": [ - "__main__", - "__main__", - "__wrappers__", - "__wrappers__.renderCellValue" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 72, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/external/renderCellValue/da17921a4e81c09e730800bbf23bfdbe5e9e6bfaedc59d80fbf62087fa43c27d.cairo" - }, - "parent_location": [ - { - "end_col": 21, - "end_line": 168, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "start_col": 6, - "start_line": 168 - }, - "While constructing the external wrapper for:" - ], - "start_col": 1, - "start_line": 1 - } - }, - "4058": { - "accessible_scopes": [ - "__main__", - "__main__", - "__main__.renderGrid" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 18, - "end_line": 179, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "start_col": 5, - "start_line": 179 - } - }, - "4060": { - "accessible_scopes": [ - "__main__", - "__main__", - "__main__.renderGrid" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 47, - "end_line": 180, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "start_col": 40, - "start_line": 180 - } - }, - "4062": { - "accessible_scopes": [ - "__main__", - "__main__", - "__main__.renderGrid" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 36, - "end_line": 180, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "start_col": 10, - "start_line": 180 - } - }, - "4063": { - "accessible_scopes": [ - "__main__", - "__main__", - "__main__.renderGrid" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 84, - "end_line": 181, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "start_col": 71, - "start_line": 181 - } - }, - "4065": { - "accessible_scopes": [ - "__main__", - "__main__", - "__main__.renderGrid" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 85, - "end_line": 181, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "start_col": 40, - "start_line": 181 - } - }, - "4067": { - "accessible_scopes": [ - "__main__", - "__main__", - "__main__.renderGrid" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 36, - "end_line": 181, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "start_col": 10, - "start_line": 181 - } - }, - "4068": { - "accessible_scopes": [ - "__main__", - "__main__", - "__main__.renderGrid" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 35, - "end_line": 176, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "parent_location": [ - { - "end_col": 41, - "end_line": 53, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" - }, - "parent_location": [ - { - "end_col": 57, - "end_line": 183, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "start_col": 26, - "start_line": 183 - }, - "While trying to retrieve the implicit argument 'syscall_ptr' in:" - ], - "start_col": 23, - "start_line": 53 - }, - "While expanding the reference 'syscall_ptr' in:" - ], - "start_col": 17, - "start_line": 176 - } - }, - "4069": { - "accessible_scopes": [ - "__main__", - "__main__", - "__main__.renderGrid" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 63, - "end_line": 176, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "parent_location": [ - { - "end_col": 69, - "end_line": 53, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" - }, - "parent_location": [ - { - "end_col": 57, - "end_line": 183, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "start_col": 26, - "start_line": 183 - }, - "While trying to retrieve the implicit argument 'pedersen_ptr' in:" - ], - "start_col": 43, - "start_line": 53 - }, - "While expanding the reference 'pedersen_ptr' in:" - ], - "start_col": 37, - "start_line": 176 - } - }, - "4070": { - "accessible_scopes": [ - "__main__", - "__main__", - "__main__.renderGrid" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 80, - "end_line": 176, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "parent_location": [ - { - "end_col": 86, - "end_line": 53, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" - }, - "parent_location": [ - { - "end_col": 57, - "end_line": 183, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "start_col": 26, - "start_line": 183 - }, - "While trying to retrieve the implicit argument 'range_check_ptr' in:" - ], - "start_col": 71, - "start_line": 53 - }, - "While expanding the reference 'range_check_ptr' in:" - ], - "start_col": 65, - "start_line": 176 - } - }, - "4071": { - "accessible_scopes": [ - "__main__", - "__main__", - "__main__.renderGrid" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 57, - "end_line": 183, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "start_col": 26, - "start_line": 183 - } - }, - "4073": { - "accessible_scopes": [ - "__main__", - "__main__", - "__main__.renderGrid" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 41, - "end_line": 53, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" - }, - "parent_location": [ - { - "end_col": 57, - "end_line": 183, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "parent_location": [ - { - "end_col": 27, - "end_line": 147, - "input_file": { - "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" - }, - "parent_location": [ - { - "end_col": 80, - "end_line": 185, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "start_col": 5, - "start_line": 185 - }, - "While trying to retrieve the implicit argument 'syscall_ptr' in:" - ], - "start_col": 9, - "start_line": 147 - }, - "While expanding the reference 'syscall_ptr' in:" - ], - "start_col": 26, - "start_line": 183 - }, - "While trying to update the implicit return value 'syscall_ptr' in:" - ], - "start_col": 23, - "start_line": 53 - } - }, - "4074": { - "accessible_scopes": [ - "__main__", - "__main__", - "__main__.renderGrid" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 69, - "end_line": 53, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" - }, - "parent_location": [ - { - "end_col": 57, - "end_line": 183, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "parent_location": [ - { - "end_col": 35, - "end_line": 148, - "input_file": { - "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" - }, - "parent_location": [ - { - "end_col": 80, - "end_line": 185, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "start_col": 5, - "start_line": 185 - }, - "While trying to retrieve the implicit argument 'pedersen_ptr' in:" - ], - "start_col": 9, - "start_line": 148 - }, - "While expanding the reference 'pedersen_ptr' in:" - ], - "start_col": 26, - "start_line": 183 - }, - "While trying to update the implicit return value 'pedersen_ptr' in:" - ], - "start_col": 43, - "start_line": 53 - } - }, - "4075": { - "accessible_scopes": [ - "__main__", - "__main__", - "__main__.renderGrid" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 86, - "end_line": 53, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" - }, - "parent_location": [ - { - "end_col": 57, - "end_line": 183, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "parent_location": [ - { - "end_col": 24, - "end_line": 149, - "input_file": { - "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" - }, - "parent_location": [ - { - "end_col": 80, - "end_line": 185, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "start_col": 5, - "start_line": 185 - }, - "While trying to retrieve the implicit argument 'range_check_ptr' in:" - ], - "start_col": 9, - "start_line": 149 - }, - "While expanding the reference 'range_check_ptr' in:" - ], - "start_col": 26, - "start_line": 183 - }, - "While trying to update the implicit return value 'range_check_ptr' in:" - ], - "start_col": 71, - "start_line": 53 - } - }, - "4076": { - "accessible_scopes": [ - "__main__", - "__main__", - "__main__.renderGrid" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 21, - "end_line": 180, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "parent_location": [ - { - "end_col": 34, - "end_line": 185, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "start_col": 29, - "start_line": 185 - }, - "While expanding the reference 'cells' in:" - ], - "start_col": 16, - "start_line": 180 - } - }, - "4077": { - "accessible_scopes": [ - "__main__", - "__main__", - "__main__.renderGrid" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 36, - "end_line": 181, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "parent_location": [ - { - "end_col": 46, - "end_line": 182, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "parent_location": [ - { - "end_col": 65, - "end_line": 185, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "start_col": 51, - "start_line": 185 - }, - "While expanding the reference 'rendered_cells' in:" - ], - "start_col": 26, - "start_line": 182 - }, - "While expanding the reference 'rendered_cells_start' in:" - ], - "start_col": 16, - "start_line": 181 - } - }, - "4078": { - "accessible_scopes": [ - "__main__", - "__main__", - "__main__.renderGrid" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 32, - "end_line": 184, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "parent_location": [ - { - "end_col": 76, - "end_line": 185, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "start_col": 72, - "start_line": 185 - }, - "While expanding the reference 'stop' in:" - ], - "start_col": 16, - "start_line": 184 - } - }, - "4079": { - "accessible_scopes": [ - "__main__", - "__main__", - "__main__.renderGrid" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 79, - "end_line": 185, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "start_col": 78, - "start_line": 185 - } - }, - "4081": { - "accessible_scopes": [ - "__main__", - "__main__", - "__main__.renderGrid" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 80, - "end_line": 185, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "start_col": 5, - "start_line": 185 - } - }, - "4083": { - "accessible_scopes": [ - "__main__", - "__main__", - "__main__.renderGrid" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 76, - "end_line": 185, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "parent_location": [ - { - "end_col": 76, - "end_line": 185, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "start_col": 72, - "start_line": 185 - }, - "While auto generating local variable for 'stop'." - ], - "start_col": 72, - "start_line": 185 - } - }, - "4084": { - "accessible_scopes": [ - "__main__", - "__main__", - "__main__.renderGrid" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 34, - "end_line": 185, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "parent_location": [ - { - "end_col": 34, - "end_line": 185, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "start_col": 29, - "start_line": 185 - }, - "While auto generating local variable for 'cells'." - ], - "start_col": 29, - "start_line": 185 - } - }, - "4085": { - "accessible_scopes": [ - "__main__", - "__main__", - "__main__.renderGrid" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 27, - "end_line": 147, - "input_file": { - "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" - }, - "parent_location": [ - { - "end_col": 80, - "end_line": 185, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "parent_location": [ - { - "end_col": 27, - "end_line": 147, - "input_file": { - "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" - }, - "parent_location": [ - { - "end_col": 80, - "end_line": 185, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "start_col": 5, - "start_line": 185 - }, - "While trying to update the implicit return value 'syscall_ptr' in:" - ], - "start_col": 9, - "start_line": 147 - }, - "While auto generating local variable for 'syscall_ptr'." - ], - "start_col": 5, - "start_line": 185 - }, - "While trying to update the implicit return value 'syscall_ptr' in:" - ], - "start_col": 9, - "start_line": 147 - } - }, - "4086": { - "accessible_scopes": [ - "__main__", - "__main__", - "__main__.renderGrid" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 35, - "end_line": 148, - "input_file": { - "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" - }, - "parent_location": [ - { - "end_col": 80, - "end_line": 185, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "parent_location": [ - { - "end_col": 35, - "end_line": 148, - "input_file": { - "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" - }, - "parent_location": [ - { - "end_col": 80, - "end_line": 185, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "start_col": 5, - "start_line": 185 - }, - "While trying to update the implicit return value 'pedersen_ptr' in:" - ], - "start_col": 9, - "start_line": 148 - }, - "While auto generating local variable for 'pedersen_ptr'." - ], - "start_col": 5, - "start_line": 185 - }, - "While trying to update the implicit return value 'pedersen_ptr' in:" - ], - "start_col": 9, - "start_line": 148 - } - }, - "4087": { - "accessible_scopes": [ - "__main__", - "__main__", - "__main__.renderGrid" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 24, - "end_line": 149, - "input_file": { - "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" - }, - "parent_location": [ - { - "end_col": 80, - "end_line": 185, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "parent_location": [ - { - "end_col": 43, - "end_line": 23, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/default_dict.cairo" - }, - "parent_location": [ - { - "end_col": 6, - "end_line": 189, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "start_col": 74, - "start_line": 187 - }, - "While trying to retrieve the implicit argument 'range_check_ptr' in:" - ], - "start_col": 28, - "start_line": 23 - }, - "While expanding the reference 'range_check_ptr' in:" - ], - "start_col": 5, - "start_line": 185 - }, - "While trying to update the implicit return value 'range_check_ptr' in:" - ], - "start_col": 9, - "start_line": 149 - } - }, - "4088": { - "accessible_scopes": [ - "__main__", - "__main__", - "__main__.renderGrid" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 36, - "end_line": 181, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "parent_location": [ - { - "end_col": 29, - "end_line": 188, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "start_col": 9, - "start_line": 188 - }, - "While expanding the reference 'rendered_cells_start' in:" - ], - "start_col": 16, - "start_line": 181 - } - }, - "4089": { - "accessible_scopes": [ - "__main__", - "__main__", - "__main__.renderGrid" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 65, - "end_line": 185, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "parent_location": [ - { - "end_col": 45, - "end_line": 188, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "start_col": 31, - "start_line": 188 - }, - "While expanding the reference 'rendered_cells' in:" - ], - "start_col": 51, - "start_line": 185 - } - }, - "4090": { - "accessible_scopes": [ - "__main__", - "__main__", - "__main__.renderGrid" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 60, - "end_line": 188, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "start_col": 47, - "start_line": 188 - } - }, - "4092": { - "accessible_scopes": [ - "__main__", - "__main__", - "__main__.renderGrid" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 6, - "end_line": 189, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "start_col": 74, - "start_line": 187 - } - }, - "4094": { - "accessible_scopes": [ - "__main__", - "__main__", - "__main__.renderGrid" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 27, - "end_line": 147, - "input_file": { - "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" - }, - "parent_location": [ - { - "end_col": 80, - "end_line": 185, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "parent_location": [ - { - "end_col": 27, - "end_line": 147, - "input_file": { - "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" - }, - "parent_location": [ - { - "end_col": 80, - "end_line": 185, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "parent_location": [ - { - "end_col": 35, - "end_line": 176, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "parent_location": [ - { - "end_col": 26, - "end_line": 191, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "start_col": 5, - "start_line": 191 - }, - "While trying to retrieve the implicit argument 'syscall_ptr' in:" - ], - "start_col": 17, - "start_line": 176 - }, - "While expanding the reference 'syscall_ptr' in:" - ], - "start_col": 5, - "start_line": 185 - }, - "While trying to update the implicit return value 'syscall_ptr' in:" - ], - "start_col": 9, - "start_line": 147 - }, - "While auto generating local variable for 'syscall_ptr'." - ], - "start_col": 5, - "start_line": 185 - }, - "While trying to update the implicit return value 'syscall_ptr' in:" - ], - "start_col": 9, - "start_line": 147 - } - }, - "4095": { - "accessible_scopes": [ - "__main__", - "__main__", - "__main__.renderGrid" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 35, - "end_line": 148, - "input_file": { - "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" - }, - "parent_location": [ - { - "end_col": 80, - "end_line": 185, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "parent_location": [ - { - "end_col": 35, - "end_line": 148, - "input_file": { - "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" - }, - "parent_location": [ - { - "end_col": 80, - "end_line": 185, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "parent_location": [ - { - "end_col": 63, - "end_line": 176, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "parent_location": [ - { - "end_col": 26, - "end_line": 191, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "start_col": 5, - "start_line": 191 - }, - "While trying to retrieve the implicit argument 'pedersen_ptr' in:" - ], - "start_col": 37, - "start_line": 176 - }, - "While expanding the reference 'pedersen_ptr' in:" - ], - "start_col": 5, - "start_line": 185 - }, - "While trying to update the implicit return value 'pedersen_ptr' in:" - ], - "start_col": 9, - "start_line": 148 - }, - "While auto generating local variable for 'pedersen_ptr'." - ], - "start_col": 5, - "start_line": 185 - }, - "While trying to update the implicit return value 'pedersen_ptr' in:" - ], - "start_col": 9, - "start_line": 148 - } - }, - "4096": { - "accessible_scopes": [ - "__main__", - "__main__", - "__main__.renderGrid" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 43, - "end_line": 23, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/default_dict.cairo" - }, - "parent_location": [ - { - "end_col": 6, - "end_line": 189, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "parent_location": [ - { - "end_col": 80, - "end_line": 176, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "parent_location": [ - { - "end_col": 26, - "end_line": 191, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "start_col": 5, - "start_line": 191 - }, - "While trying to retrieve the implicit argument 'range_check_ptr' in:" - ], - "start_col": 65, - "start_line": 176 - }, - "While expanding the reference 'range_check_ptr' in:" - ], - "start_col": 74, - "start_line": 187 - }, - "While trying to update the implicit return value 'range_check_ptr' in:" - ], - "start_col": 28, - "start_line": 23 - } - }, - "4097": { - "accessible_scopes": [ - "__main__", - "__main__", - "__main__.renderGrid" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 76, - "end_line": 185, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "parent_location": [ - { - "end_col": 76, - "end_line": 185, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "parent_location": [ - { - "end_col": 17, - "end_line": 191, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "start_col": 13, - "start_line": 191 - }, - "While expanding the reference 'stop' in:" - ], - "start_col": 72, - "start_line": 185 - }, - "While auto generating local variable for 'stop'." - ], - "start_col": 72, - "start_line": 185 - } - }, - "4098": { - "accessible_scopes": [ - "__main__", - "__main__", - "__main__.renderGrid" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 34, - "end_line": 185, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "parent_location": [ - { - "end_col": 34, - "end_line": 185, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "parent_location": [ - { - "end_col": 24, - "end_line": 191, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "start_col": 19, - "start_line": 191 - }, - "While expanding the reference 'cells' in:" - ], - "start_col": 29, - "start_line": 185 - }, - "While auto generating local variable for 'cells'." - ], - "start_col": 29, - "start_line": 185 - } - }, - "4099": { - "accessible_scopes": [ - "__main__", - "__main__", - "__main__.renderGrid" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 26, - "end_line": 191, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "start_col": 5, - "start_line": 191 - } - }, - "4100": { - "accessible_scopes": [ - "__main__", - "__main__", - "__wrappers__", - "__wrappers__.renderGrid_encode_return" - ], - "flow_tracking_data": null, - "hints": [ - { - "location": { - "end_col": 38, - "end_line": 3, - "input_file": { - "filename": "autogen/starknet/external/return/renderGrid/fe9a6a1bcaa57ee30a381bd9a108817459a6bd115cb6e4fe27d4c45a53d5294c.cairo" - }, - "parent_location": [ - { - "end_col": 16, - "end_line": 176, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "start_col": 6, - "start_line": 176 - }, - "While handling return value of" - ], - "start_col": 5, - "start_line": 3 - }, - "n_prefix_newlines": 0 - } - ], - "inst": { - "end_col": 18, - "end_line": 4, - "input_file": { - "filename": "autogen/starknet/external/return/renderGrid/fe9a6a1bcaa57ee30a381bd9a108817459a6bd115cb6e4fe27d4c45a53d5294c.cairo" - }, - "parent_location": [ - { - "end_col": 16, - "end_line": 176, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "start_col": 6, - "start_line": 176 - }, - "While handling return value of" - ], - "start_col": 5, - "start_line": 4 - } - }, - "4102": { - "accessible_scopes": [ - "__main__", - "__main__", - "__wrappers__", - "__wrappers__.renderGrid_encode_return" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 51, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/arg_processor/1921cf80c34685bda7c52d95e53497e74d914798938b1491cfcf9359bff14cc8.cairo" - }, - "parent_location": [ - { - "end_col": 20, - "end_line": 177, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "start_col": 5, - "start_line": 177 - }, - "While handling return value 'cells_len'" - ], - "start_col": 1, - "start_line": 1 - } - }, - "4103": { - "accessible_scopes": [ - "__main__", - "__main__", - "__wrappers__", - "__wrappers__.renderGrid_encode_return" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 48, - "end_line": 2, - "input_file": { - "filename": "autogen/starknet/arg_processor/211305a4982e84dee745bdcf06176fa172dde0d5d206f753a2e0d4a223d668e4.cairo" - }, - "parent_location": [ - { - "end_col": 42, - "end_line": 177, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "start_col": 22, - "start_line": 177 - }, - "While handling return value 'cells'" - ], - "start_col": 1, - "start_line": 2 - } - }, - "4104": { - "accessible_scopes": [ - "__main__", - "__main__", - "__wrappers__", - "__wrappers__.renderGrid_encode_return" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 45, - "end_line": 5, - "input_file": { - "filename": "autogen/starknet/arg_processor/211305a4982e84dee745bdcf06176fa172dde0d5d206f753a2e0d4a223d668e4.cairo" - }, - "parent_location": [ - { - "end_col": 42, - "end_line": 177, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "start_col": 22, - "start_line": 177 - }, - "While handling return value 'cells'" - ], - "start_col": 1, - "start_line": 5 - } - }, - "4106": { - "accessible_scopes": [ - "__main__", - "__main__", - "__wrappers__", - "__wrappers__.renderGrid_encode_return" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 48, - "end_line": 2, - "input_file": { - "filename": "autogen/starknet/arg_processor/1921cf80c34685bda7c52d95e53497e74d914798938b1491cfcf9359bff14cc8.cairo" - }, - "parent_location": [ - { - "end_col": 20, - "end_line": 177, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "parent_location": [ - { - "end_col": 53, - "end_line": 10, - "input_file": { - "filename": "autogen/starknet/arg_processor/211305a4982e84dee745bdcf06176fa172dde0d5d206f753a2e0d4a223d668e4.cairo" - }, - "parent_location": [ - { - "end_col": 42, - "end_line": 177, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "start_col": 22, - "start_line": 177 - }, - "While handling return value 'cells'" - ], - "start_col": 35, - "start_line": 10 - }, - "While expanding the reference '__return_value_ptr' in:" - ], - "start_col": 5, - "start_line": 177 - }, - "While handling return value 'cells_len'" - ], - "start_col": 26, - "start_line": 2 - } - }, - "4108": { - "accessible_scopes": [ - "__main__", - "__main__", - "__wrappers__", - "__wrappers__.renderGrid_encode_return" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 79, - "end_line": 10, - "input_file": { - "filename": "autogen/starknet/arg_processor/211305a4982e84dee745bdcf06176fa172dde0d5d206f753a2e0d4a223d668e4.cairo" - }, - "parent_location": [ - { - "end_col": 42, - "end_line": 177, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "start_col": 22, - "start_line": 177 - }, - "While handling return value 'cells'" - ], - "start_col": 56, - "start_line": 10 - } - }, - "4110": { - "accessible_scopes": [ - "__main__", - "__main__", - "__wrappers__", - "__wrappers__.renderGrid_encode_return" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 80, - "end_line": 10, - "input_file": { - "filename": "autogen/starknet/arg_processor/211305a4982e84dee745bdcf06176fa172dde0d5d206f753a2e0d4a223d668e4.cairo" - }, - "parent_location": [ - { - "end_col": 42, - "end_line": 177, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "start_col": 22, - "start_line": 177 - }, - "While handling return value 'cells'" - ], - "start_col": 1, - "start_line": 10 - } - }, - "4111": { - "accessible_scopes": [ - "__main__", - "__main__", - "__wrappers__", - "__wrappers__.renderGrid_encode_return" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 48, - "end_line": 2, - "input_file": { - "filename": "autogen/starknet/arg_processor/1921cf80c34685bda7c52d95e53497e74d914798938b1491cfcf9359bff14cc8.cairo" - }, - "parent_location": [ - { - "end_col": 20, - "end_line": 177, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "parent_location": [ - { - "end_col": 49, - "end_line": 7, - "input_file": { - "filename": "autogen/starknet/arg_processor/211305a4982e84dee745bdcf06176fa172dde0d5d206f753a2e0d4a223d668e4.cairo" - }, - "parent_location": [ - { - "end_col": 42, - "end_line": 177, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "parent_location": [ - { - "end_col": 32, - "end_line": 12, - "input_file": { - "filename": "autogen/starknet/arg_processor/211305a4982e84dee745bdcf06176fa172dde0d5d206f753a2e0d4a223d668e4.cairo" - }, - "parent_location": [ - { - "end_col": 42, - "end_line": 177, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "start_col": 22, - "start_line": 177 - }, - "While handling return value 'cells'" - ], - "start_col": 9, - "start_line": 12 - }, - "While expanding the reference '__return_value_ptr_copy' in:" - ], - "start_col": 22, - "start_line": 177 - }, - "While handling return value 'cells'" - ], - "start_col": 31, - "start_line": 7 - }, - "While expanding the reference '__return_value_ptr' in:" - ], - "start_col": 5, - "start_line": 177 - }, - "While handling return value 'cells_len'" - ], - "start_col": 26, - "start_line": 2 - } - }, - "4113": { - "accessible_scopes": [ - "__main__", - "__main__", - "__wrappers__", - "__wrappers__.renderGrid_encode_return" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 24, - "end_line": 13, - "input_file": { - "filename": "autogen/starknet/arg_processor/211305a4982e84dee745bdcf06176fa172dde0d5d206f753a2e0d4a223d668e4.cairo" - }, - "parent_location": [ - { - "end_col": 42, - "end_line": 177, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "start_col": 22, - "start_line": 177 - }, - "While handling return value 'cells'" - ], - "start_col": 9, - "start_line": 13 - } - }, - "4114": { - "accessible_scopes": [ - "__main__", - "__main__", - "__wrappers__", - "__wrappers__.renderGrid_encode_return" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 32, - "end_line": 14, - "input_file": { - "filename": "autogen/starknet/arg_processor/211305a4982e84dee745bdcf06176fa172dde0d5d206f753a2e0d4a223d668e4.cairo" - }, - "parent_location": [ - { - "end_col": 42, - "end_line": 177, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "start_col": 22, - "start_line": 177 - }, - "While handling return value 'cells'" - ], - "start_col": 9, - "start_line": 14 - } - }, - "4116": { - "accessible_scopes": [ - "__main__", - "__main__", - "__wrappers__", - "__wrappers__.renderGrid_encode_return" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 33, - "end_line": 14, - "input_file": { - "filename": "autogen/starknet/arg_processor/211305a4982e84dee745bdcf06176fa172dde0d5d206f753a2e0d4a223d668e4.cairo" - }, - "parent_location": [ - { - "end_col": 42, - "end_line": 177, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "start_col": 22, - "start_line": 177 - }, - "While handling return value 'cells'" - ], - "start_col": 1, - "start_line": 11 - } - }, - "4118": { - "accessible_scopes": [ - "__main__", - "__main__", - "__wrappers__", - "__wrappers__.renderGrid_encode_return" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 22, - "end_line": 5, - "input_file": { - "filename": "autogen/starknet/arg_processor/211305a4982e84dee745bdcf06176fa172dde0d5d206f753a2e0d4a223d668e4.cairo" - }, - "parent_location": [ - { - "end_col": 42, - "end_line": 177, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "parent_location": [ - { - "end_col": 40, - "end_line": 10, - "input_file": { - "filename": "autogen/starknet/external/return/renderGrid/fe9a6a1bcaa57ee30a381bd9a108817459a6bd115cb6e4fe27d4c45a53d5294c.cairo" - }, - "parent_location": [ - { - "end_col": 16, - "end_line": 176, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "start_col": 6, - "start_line": 176 - }, - "While handling return value of" - ], - "start_col": 25, - "start_line": 10 - }, - "While expanding the reference 'range_check_ptr' in:" - ], - "start_col": 22, - "start_line": 177 - }, - "While handling return value 'cells'" - ], - "start_col": 7, - "start_line": 5 - } - }, - "4119": { - "accessible_scopes": [ - "__main__", - "__main__", - "__wrappers__", - "__wrappers__.renderGrid_encode_return" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 63, - "end_line": 11, - "input_file": { - "filename": "autogen/starknet/external/return/renderGrid/fe9a6a1bcaa57ee30a381bd9a108817459a6bd115cb6e4fe27d4c45a53d5294c.cairo" - }, - "parent_location": [ - { - "end_col": 16, - "end_line": 176, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "start_col": 6, - "start_line": 176 - }, - "While handling return value of" - ], - "start_col": 18, - "start_line": 11 - } - }, - "4120": { - "accessible_scopes": [ - "__main__", - "__main__", - "__wrappers__", - "__wrappers__.renderGrid_encode_return" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 35, - "end_line": 5, - "input_file": { - "filename": "autogen/starknet/external/return/renderGrid/fe9a6a1bcaa57ee30a381bd9a108817459a6bd115cb6e4fe27d4c45a53d5294c.cairo" - }, - "parent_location": [ - { - "end_col": 16, - "end_line": 176, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "parent_location": [ - { - "end_col": 38, - "end_line": 12, - "input_file": { - "filename": "autogen/starknet/external/return/renderGrid/fe9a6a1bcaa57ee30a381bd9a108817459a6bd115cb6e4fe27d4c45a53d5294c.cairo" - }, - "parent_location": [ - { - "end_col": 16, - "end_line": 176, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "start_col": 6, - "start_line": 176 - }, - "While handling return value of" - ], - "start_col": 14, - "start_line": 12 - }, - "While expanding the reference '__return_value_ptr_start' in:" - ], - "start_col": 6, - "start_line": 176 - }, - "While handling return value of" - ], - "start_col": 11, - "start_line": 5 - } - }, - "4121": { - "accessible_scopes": [ - "__main__", - "__main__", - "__wrappers__", - "__wrappers__.renderGrid_encode_return" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 40, - "end_line": 12, - "input_file": { - "filename": "autogen/starknet/external/return/renderGrid/fe9a6a1bcaa57ee30a381bd9a108817459a6bd115cb6e4fe27d4c45a53d5294c.cairo" - }, - "parent_location": [ - { - "end_col": 16, - "end_line": 176, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "start_col": 6, - "start_line": 176 - }, - "While handling return value of" - ], - "start_col": 5, - "start_line": 9 - } - }, - "4122": { - "accessible_scopes": [ - "__main__", - "__main__", - "__wrappers__", - "__wrappers__.renderGrid" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 18, - "end_line": 2, - "input_file": { - "filename": "autogen/starknet/external/renderGrid/2ea9c7f0441b228ee60fde547a6f592088d6be14cedb6f979f2f4e15977f79ea.cairo" - }, - "parent_location": [ - { - "end_col": 16, - "end_line": 176, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "start_col": 6, - "start_line": 176 - }, - "While constructing the external wrapper for:" - ], - "start_col": 5, - "start_line": 2 - } - }, - "4124": { - "accessible_scopes": [ - "__main__", - "__main__", - "__wrappers__", - "__wrappers__.renderGrid" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 58, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/arg_processor/01cba52f8515996bb9d7070bde81ff39281d096d7024a558efcba6e1fd2402cf.cairo" - }, - "parent_location": [ - { - "end_col": 16, - "end_line": 176, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "start_col": 6, - "start_line": 176 - }, - "While handling calldata of" - ], - "start_col": 1, - "start_line": 1 - } - }, - "4125": { - "accessible_scopes": [ - "__main__", - "__main__", - "__wrappers__", - "__wrappers__.renderGrid" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 64, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/external/renderGrid/b2c52ca2d2a8fc8791a983086d8716c5eacd0c3d62934914d2286f84b98ff4cb.cairo" - }, - "parent_location": [ - { - "end_col": 35, - "end_line": 176, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "parent_location": [ - { - "end_col": 55, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/external/renderGrid/e893877178a8e3e6a487467e13267cb6540bc108f9ef40dde6e8760c2ce03e6d.cairo" - }, - "parent_location": [ - { - "end_col": 16, - "end_line": 176, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "start_col": 6, - "start_line": 176 - }, - "While constructing the external wrapper for:" - ], - "start_col": 44, - "start_line": 1 - }, - "While expanding the reference 'syscall_ptr' in:" - ], - "start_col": 17, - "start_line": 176 - }, - "While constructing the external wrapper for:" - ], - "start_col": 19, - "start_line": 1 - } - }, - "4126": { - "accessible_scopes": [ - "__main__", - "__main__", - "__wrappers__", - "__wrappers__.renderGrid" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 110, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/external/renderGrid/9684a85e93c782014ca14293edea4eb2502039a5a7b6538ecd39c56faaf12529.cairo" - }, - "parent_location": [ - { - "end_col": 63, - "end_line": 176, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "parent_location": [ - { - "end_col": 82, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/external/renderGrid/e893877178a8e3e6a487467e13267cb6540bc108f9ef40dde6e8760c2ce03e6d.cairo" - }, - "parent_location": [ - { - "end_col": 16, - "end_line": 176, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "start_col": 6, - "start_line": 176 - }, - "While constructing the external wrapper for:" - ], - "start_col": 70, - "start_line": 1 - }, - "While expanding the reference 'pedersen_ptr' in:" - ], - "start_col": 37, - "start_line": 176 - }, - "While constructing the external wrapper for:" - ], - "start_col": 20, - "start_line": 1 - } - }, - "4127": { - "accessible_scopes": [ - "__main__", - "__main__", - "__wrappers__", - "__wrappers__.renderGrid" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 67, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/external/renderGrid/741ea357d6336b0bed7bf0472425acd0311d543883b803388880e60a232040c7.cairo" - }, - "parent_location": [ - { - "end_col": 80, - "end_line": 176, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "parent_location": [ - { - "end_col": 115, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/external/renderGrid/e893877178a8e3e6a487467e13267cb6540bc108f9ef40dde6e8760c2ce03e6d.cairo" - }, - "parent_location": [ - { - "end_col": 16, - "end_line": 176, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "start_col": 6, - "start_line": 176 - }, - "While constructing the external wrapper for:" - ], - "start_col": 100, - "start_line": 1 - }, - "While expanding the reference 'range_check_ptr' in:" - ], - "start_col": 65, - "start_line": 176 - }, - "While constructing the external wrapper for:" - ], - "start_col": 23, - "start_line": 1 - } - }, - "4128": { - "accessible_scopes": [ - "__main__", - "__main__", - "__wrappers__", - "__wrappers__.renderGrid" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 16, - "end_line": 176, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "start_col": 6, - "start_line": 176 - } - }, - "4130": { - "accessible_scopes": [ - "__main__", - "__main__", - "__wrappers__", - "__wrappers__.renderGrid" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 55, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/external/renderGrid/e893877178a8e3e6a487467e13267cb6540bc108f9ef40dde6e8760c2ce03e6d.cairo" - }, - "parent_location": [ - { - "end_col": 16, - "end_line": 176, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "parent_location": [ - { - "end_col": 55, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/external/renderGrid/e893877178a8e3e6a487467e13267cb6540bc108f9ef40dde6e8760c2ce03e6d.cairo" - }, - "parent_location": [ - { - "end_col": 16, - "end_line": 176, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "start_col": 6, - "start_line": 176 - }, - "While constructing the external wrapper for:" - ], - "start_col": 44, - "start_line": 1 - }, - "While auto generating local variable for 'syscall_ptr'." - ], - "start_col": 6, - "start_line": 176 - }, - "While constructing the external wrapper for:" - ], - "start_col": 44, - "start_line": 1 - } - }, - "4131": { - "accessible_scopes": [ - "__main__", - "__main__", - "__wrappers__", - "__wrappers__.renderGrid" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 82, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/external/renderGrid/e893877178a8e3e6a487467e13267cb6540bc108f9ef40dde6e8760c2ce03e6d.cairo" - }, - "parent_location": [ - { - "end_col": 16, - "end_line": 176, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "parent_location": [ - { - "end_col": 82, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/external/renderGrid/e893877178a8e3e6a487467e13267cb6540bc108f9ef40dde6e8760c2ce03e6d.cairo" - }, - "parent_location": [ - { - "end_col": 16, - "end_line": 176, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "start_col": 6, - "start_line": 176 - }, - "While constructing the external wrapper for:" - ], - "start_col": 70, - "start_line": 1 - }, - "While auto generating local variable for 'pedersen_ptr'." - ], - "start_col": 6, - "start_line": 176 - }, - "While constructing the external wrapper for:" - ], - "start_col": 70, - "start_line": 1 - } - }, - "4132": { - "accessible_scopes": [ - "__main__", - "__main__", - "__wrappers__", - "__wrappers__.renderGrid" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 115, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/external/renderGrid/e893877178a8e3e6a487467e13267cb6540bc108f9ef40dde6e8760c2ce03e6d.cairo" - }, - "parent_location": [ - { - "end_col": 16, - "end_line": 176, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "parent_location": [ - { - "end_col": 99, - "end_line": 2, - "input_file": { - "filename": "autogen/starknet/external/renderGrid/e893877178a8e3e6a487467e13267cb6540bc108f9ef40dde6e8760c2ce03e6d.cairo" - }, - "parent_location": [ - { - "end_col": 16, - "end_line": 176, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "start_col": 6, - "start_line": 176 - }, - "While constructing the external wrapper for:" - ], - "start_col": 84, - "start_line": 2 - }, - "While expanding the reference 'range_check_ptr' in:" - ], - "start_col": 6, - "start_line": 176 - }, - "While constructing the external wrapper for:" - ], - "start_col": 100, - "start_line": 1 - } - }, - "4133": { - "accessible_scopes": [ - "__main__", - "__main__", - "__wrappers__", - "__wrappers__.renderGrid" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 100, - "end_line": 2, - "input_file": { - "filename": "autogen/starknet/external/renderGrid/e893877178a8e3e6a487467e13267cb6540bc108f9ef40dde6e8760c2ce03e6d.cairo" - }, - "parent_location": [ - { - "end_col": 16, - "end_line": 176, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "start_col": 6, - "start_line": 176 - }, - "While constructing the external wrapper for:" - ], - "start_col": 48, - "start_line": 2 - } - }, - "4135": { - "accessible_scopes": [ - "__main__", - "__main__", - "__wrappers__", - "__wrappers__.renderGrid" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 55, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/external/renderGrid/e893877178a8e3e6a487467e13267cb6540bc108f9ef40dde6e8760c2ce03e6d.cairo" - }, - "parent_location": [ - { - "end_col": 16, - "end_line": 176, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "parent_location": [ - { - "end_col": 55, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/external/renderGrid/e893877178a8e3e6a487467e13267cb6540bc108f9ef40dde6e8760c2ce03e6d.cairo" - }, - "parent_location": [ - { - "end_col": 16, - "end_line": 176, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "parent_location": [ - { - "end_col": 20, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/external/renderGrid/da17921a4e81c09e730800bbf23bfdbe5e9e6bfaedc59d80fbf62087fa43c27d.cairo" - }, - "parent_location": [ - { - "end_col": 16, - "end_line": 176, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "start_col": 6, - "start_line": 176 - }, - "While constructing the external wrapper for:" - ], - "start_col": 9, - "start_line": 1 - }, - "While expanding the reference 'syscall_ptr' in:" - ], - "start_col": 6, - "start_line": 176 - }, - "While constructing the external wrapper for:" - ], - "start_col": 44, - "start_line": 1 - }, - "While auto generating local variable for 'syscall_ptr'." - ], - "start_col": 6, - "start_line": 176 - }, - "While constructing the external wrapper for:" - ], - "start_col": 44, - "start_line": 1 - } - }, - "4136": { - "accessible_scopes": [ - "__main__", - "__main__", - "__wrappers__", - "__wrappers__.renderGrid" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 82, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/external/renderGrid/e893877178a8e3e6a487467e13267cb6540bc108f9ef40dde6e8760c2ce03e6d.cairo" - }, - "parent_location": [ - { - "end_col": 16, - "end_line": 176, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "parent_location": [ - { - "end_col": 82, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/external/renderGrid/e893877178a8e3e6a487467e13267cb6540bc108f9ef40dde6e8760c2ce03e6d.cairo" - }, - "parent_location": [ - { - "end_col": 16, - "end_line": 176, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "parent_location": [ - { - "end_col": 33, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/external/renderGrid/da17921a4e81c09e730800bbf23bfdbe5e9e6bfaedc59d80fbf62087fa43c27d.cairo" - }, - "parent_location": [ - { - "end_col": 16, - "end_line": 176, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "start_col": 6, - "start_line": 176 - }, - "While constructing the external wrapper for:" - ], - "start_col": 21, - "start_line": 1 - }, - "While expanding the reference 'pedersen_ptr' in:" - ], - "start_col": 6, - "start_line": 176 - }, - "While constructing the external wrapper for:" - ], - "start_col": 70, - "start_line": 1 - }, - "While auto generating local variable for 'pedersen_ptr'." - ], - "start_col": 6, - "start_line": 176 - }, - "While constructing the external wrapper for:" - ], - "start_col": 70, - "start_line": 1 - } - }, - "4137": { - "accessible_scopes": [ - "__main__", - "__main__", - "__wrappers__", - "__wrappers__.renderGrid" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 21, - "end_line": 2, - "input_file": { - "filename": "autogen/starknet/external/renderGrid/e893877178a8e3e6a487467e13267cb6540bc108f9ef40dde6e8760c2ce03e6d.cairo" - }, - "parent_location": [ - { - "end_col": 16, - "end_line": 176, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "parent_location": [ - { - "end_col": 49, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/external/renderGrid/da17921a4e81c09e730800bbf23bfdbe5e9e6bfaedc59d80fbf62087fa43c27d.cairo" - }, - "parent_location": [ - { - "end_col": 16, - "end_line": 176, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "start_col": 6, - "start_line": 176 - }, - "While constructing the external wrapper for:" - ], - "start_col": 34, - "start_line": 1 - }, - "While expanding the reference 'range_check_ptr' in:" - ], - "start_col": 6, - "start_line": 176 - }, - "While constructing the external wrapper for:" - ], - "start_col": 6, - "start_line": 2 - } - }, - "4138": { - "accessible_scopes": [ - "__main__", - "__main__", - "__wrappers__", - "__wrappers__.renderGrid" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 35, - "end_line": 2, - "input_file": { - "filename": "autogen/starknet/external/renderGrid/e893877178a8e3e6a487467e13267cb6540bc108f9ef40dde6e8760c2ce03e6d.cairo" - }, - "parent_location": [ - { - "end_col": 16, - "end_line": 176, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "parent_location": [ - { - "end_col": 62, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/external/renderGrid/da17921a4e81c09e730800bbf23bfdbe5e9e6bfaedc59d80fbf62087fa43c27d.cairo" - }, - "parent_location": [ - { - "end_col": 16, - "end_line": 176, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "start_col": 6, - "start_line": 176 - }, - "While constructing the external wrapper for:" - ], - "start_col": 50, - "start_line": 1 - }, - "While expanding the reference 'retdata_size' in:" - ], - "start_col": 6, - "start_line": 176 - }, - "While constructing the external wrapper for:" - ], - "start_col": 23, - "start_line": 2 - } - }, - "4139": { - "accessible_scopes": [ - "__main__", - "__main__", - "__wrappers__", - "__wrappers__.renderGrid" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 44, - "end_line": 2, - "input_file": { - "filename": "autogen/starknet/external/renderGrid/e893877178a8e3e6a487467e13267cb6540bc108f9ef40dde6e8760c2ce03e6d.cairo" - }, - "parent_location": [ - { - "end_col": 16, - "end_line": 176, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "parent_location": [ - { - "end_col": 70, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/external/renderGrid/da17921a4e81c09e730800bbf23bfdbe5e9e6bfaedc59d80fbf62087fa43c27d.cairo" - }, - "parent_location": [ - { - "end_col": 16, - "end_line": 176, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "start_col": 6, - "start_line": 176 - }, - "While constructing the external wrapper for:" - ], - "start_col": 63, - "start_line": 1 - }, - "While expanding the reference 'retdata' in:" - ], - "start_col": 6, - "start_line": 176 - }, - "While constructing the external wrapper for:" - ], - "start_col": 37, - "start_line": 2 - } - }, - "4140": { - "accessible_scopes": [ - "__main__", - "__main__", - "__wrappers__", - "__wrappers__.renderGrid" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 72, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/external/renderGrid/da17921a4e81c09e730800bbf23bfdbe5e9e6bfaedc59d80fbf62087fa43c27d.cairo" - }, - "parent_location": [ - { - "end_col": 16, - "end_line": 176, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "start_col": 6, - "start_line": 176 - }, - "While constructing the external wrapper for:" - ], - "start_col": 1, - "start_line": 1 - } - }, - "4141": { - "accessible_scopes": [ - "__main__", - "__main__", - "__main__.mintPublic" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 63, - "end_line": 195, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "parent_location": [ - { - "end_col": 33, - "end_line": 13, - "input_file": { - "filename": "autogen/starknet/storage_var/_n_row/decl.cairo" - }, - "parent_location": [ - { - "end_col": 36, - "end_line": 199, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "start_col": 23, - "start_line": 199 - }, - "While trying to retrieve the implicit argument 'syscall_ptr' in:" - ], - "start_col": 15, - "start_line": 13 - }, - "While expanding the reference 'syscall_ptr' in:" - ], - "start_col": 45, - "start_line": 195 - } - }, - "4142": { - "accessible_scopes": [ - "__main__", - "__main__", - "__main__.mintPublic" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 43, - "end_line": 195, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "parent_location": [ - { - "end_col": 61, - "end_line": 13, - "input_file": { - "filename": "autogen/starknet/storage_var/_n_row/decl.cairo" - }, - "parent_location": [ - { - "end_col": 36, - "end_line": 199, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "start_col": 23, - "start_line": 199 - }, - "While trying to retrieve the implicit argument 'pedersen_ptr' in:" - ], - "start_col": 35, - "start_line": 13 - }, - "While expanding the reference 'pedersen_ptr' in:" - ], - "start_col": 17, - "start_line": 195 - } - }, - "4143": { - "accessible_scopes": [ - "__main__", - "__main__", - "__main__.mintPublic" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 80, - "end_line": 195, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "parent_location": [ - { - "end_col": 78, - "end_line": 13, - "input_file": { - "filename": "autogen/starknet/storage_var/_n_row/decl.cairo" - }, - "parent_location": [ - { - "end_col": 36, - "end_line": 199, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "start_col": 23, - "start_line": 199 - }, - "While trying to retrieve the implicit argument 'range_check_ptr' in:" - ], - "start_col": 63, - "start_line": 13 - }, - "While expanding the reference 'range_check_ptr' in:" - ], - "start_col": 65, - "start_line": 195 - } - }, - "4144": { - "accessible_scopes": [ - "__main__", - "__main__", - "__main__.mintPublic" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 36, - "end_line": 199, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "start_col": 23, - "start_line": 199 - } - }, - "4146": { - "accessible_scopes": [ - "__main__", - "__main__", - "__main__.mintPublic" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 42, - "end_line": 200, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "start_col": 32, - "start_line": 200 - } - }, - "4148": { - "accessible_scopes": [ - "__main__", - "__main__", - "__main__.mintPublic" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 78, - "end_line": 13, - "input_file": { - "filename": "autogen/starknet/storage_var/_n_row/decl.cairo" - }, - "parent_location": [ - { - "end_col": 36, - "end_line": 199, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "parent_location": [ - { - "end_col": 31, - "end_line": 53, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/math.cairo" - }, - "parent_location": [ - { - "end_col": 47, - "end_line": 200, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "start_col": 9, - "start_line": 200 - }, - "While trying to retrieve the implicit argument 'range_check_ptr' in:" - ], - "start_col": 16, - "start_line": 53 - }, - "While expanding the reference 'range_check_ptr' in:" - ], - "start_col": 23, - "start_line": 199 - }, - "While trying to update the implicit return value 'range_check_ptr' in:" - ], - "start_col": 63, - "start_line": 13 - } - }, - "4149": { - "accessible_scopes": [ - "__main__", - "__main__", - "__main__.mintPublic" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 30, - "end_line": 200, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "start_col": 19, - "start_line": 200 - } - }, - "4150": { - "accessible_scopes": [ - "__main__", - "__main__", - "__main__.mintPublic" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 46, - "end_line": 200, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "start_col": 32, - "start_line": 200 - } - }, - "4152": { - "accessible_scopes": [ - "__main__", - "__main__", - "__main__.mintPublic" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 47, - "end_line": 200, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "start_col": 9, - "start_line": 200 - } - }, - "4154": { - "accessible_scopes": [ - "__main__", - "__main__", - "__main__.mintPublic" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 33, - "end_line": 201, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "start_col": 9, - "start_line": 201 - } - }, - "4156": { - "accessible_scopes": [ - "__main__", - "__main__", - "__main__.mintPublic" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 61, - "end_line": 13, - "input_file": { - "filename": "autogen/starknet/storage_var/_n_row/decl.cairo" - }, - "parent_location": [ - { - "end_col": 36, - "end_line": 199, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "parent_location": [ - { - "end_col": 41, - "end_line": 164, - "input_file": { - "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" - }, - "parent_location": [ - { - "end_col": 42, - "end_line": 204, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "start_col": 5, - "start_line": 204 - }, - "While trying to retrieve the implicit argument 'pedersen_ptr' in:" - ], - "start_col": 15, - "start_line": 164 - }, - "While expanding the reference 'pedersen_ptr' in:" - ], - "start_col": 23, - "start_line": 199 - }, - "While trying to update the implicit return value 'pedersen_ptr' in:" - ], - "start_col": 35, - "start_line": 13 - } - }, - "4157": { - "accessible_scopes": [ - "__main__", - "__main__", - "__main__.mintPublic" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 33, - "end_line": 13, - "input_file": { - "filename": "autogen/starknet/storage_var/_n_row/decl.cairo" - }, - "parent_location": [ - { - "end_col": 36, - "end_line": 199, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "parent_location": [ - { - "end_col": 61, - "end_line": 164, - "input_file": { - "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" - }, - "parent_location": [ - { - "end_col": 42, - "end_line": 204, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "start_col": 5, - "start_line": 204 - }, - "While trying to retrieve the implicit argument 'syscall_ptr' in:" - ], - "start_col": 43, - "start_line": 164 - }, - "While expanding the reference 'syscall_ptr' in:" - ], - "start_col": 23, - "start_line": 199 - }, - "While trying to update the implicit return value 'syscall_ptr' in:" - ], - "start_col": 15, - "start_line": 13 - } - }, - "4158": { - "accessible_scopes": [ - "__main__", - "__main__", - "__main__.mintPublic" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 31, - "end_line": 53, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/math.cairo" - }, - "parent_location": [ - { - "end_col": 47, - "end_line": 200, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "parent_location": [ - { - "end_col": 78, - "end_line": 164, - "input_file": { - "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" - }, - "parent_location": [ - { - "end_col": 42, - "end_line": 204, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "start_col": 5, - "start_line": 204 - }, - "While trying to retrieve the implicit argument 'range_check_ptr' in:" - ], - "start_col": 63, - "start_line": 164 - }, - "While expanding the reference 'range_check_ptr' in:" - ], - "start_col": 9, - "start_line": 200 - }, - "While trying to update the implicit return value 'range_check_ptr' in:" - ], - "start_col": 16, - "start_line": 53 - } - }, - "4159": { - "accessible_scopes": [ - "__main__", - "__main__", - "__main__.mintPublic" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 21, - "end_line": 196, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "parent_location": [ - { - "end_col": 23, - "end_line": 204, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "start_col": 16, - "start_line": 204 - }, - "While expanding the reference 'tokenId' in:" - ], - "start_col": 5, - "start_line": 196 - } - }, - "4160": { - "accessible_scopes": [ - "__main__", - "__main__", - "__main__.mintPublic" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 21, - "end_line": 196, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "parent_location": [ - { - "end_col": 23, - "end_line": 204, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "start_col": 16, - "start_line": 204 - }, - "While expanding the reference 'tokenId' in:" - ], - "start_col": 5, - "start_line": 196 - } - }, - "4161": { - "accessible_scopes": [ - "__main__", - "__main__", - "__main__.mintPublic" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 38, - "end_line": 196, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "parent_location": [ - { - "end_col": 34, - "end_line": 204, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "start_col": 25, - "start_line": 204 - }, - "While expanding the reference 'proof_len' in:" - ], - "start_col": 23, - "start_line": 196 - } - }, - "4162": { - "accessible_scopes": [ - "__main__", - "__main__", - "__main__.mintPublic" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 52, - "end_line": 196, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "parent_location": [ - { - "end_col": 41, - "end_line": 204, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "start_col": 36, - "start_line": 204 - }, - "While expanding the reference 'proof' in:" - ], - "start_col": 40, - "start_line": 196 - } - }, - "4163": { - "accessible_scopes": [ - "__main__", - "__main__", - "__main__.mintPublic" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 42, - "end_line": 204, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "start_col": 5, - "start_line": 204 - } - }, - "4165": { - "accessible_scopes": [ - "__main__", - "__main__", - "__main__.mintPublic" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 39, - "end_line": 205, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "start_col": 32, - "start_line": 205 - } - }, - "4167": { - "accessible_scopes": [ - "__main__", - "__main__", - "__main__.mintPublic" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 61, - "end_line": 164, - "input_file": { - "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" - }, - "parent_location": [ - { - "end_col": 42, - "end_line": 204, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "parent_location": [ - { - "end_col": 37, - "end_line": 91, - "input_file": { - "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" - }, - "parent_location": [ - { - "end_col": 6, - "end_line": 212, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "start_col": 5, - "start_line": 206 - }, - "While trying to retrieve the implicit argument 'syscall_ptr' in:" - ], - "start_col": 19, - "start_line": 91 - }, - "While expanding the reference 'syscall_ptr' in:" - ], - "start_col": 5, - "start_line": 204 - }, - "While trying to update the implicit return value 'syscall_ptr' in:" - ], - "start_col": 43, - "start_line": 164 - } - }, - "4168": { - "accessible_scopes": [ - "__main__", - "__main__", - "__main__.mintPublic" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 41, - "end_line": 164, - "input_file": { - "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" - }, - "parent_location": [ - { - "end_col": 42, - "end_line": 204, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "parent_location": [ - { - "end_col": 65, - "end_line": 91, - "input_file": { - "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" - }, - "parent_location": [ - { - "end_col": 6, - "end_line": 212, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "start_col": 5, - "start_line": 206 - }, - "While trying to retrieve the implicit argument 'pedersen_ptr' in:" - ], - "start_col": 39, - "start_line": 91 - }, - "While expanding the reference 'pedersen_ptr' in:" - ], - "start_col": 5, - "start_line": 204 - }, - "While trying to update the implicit return value 'pedersen_ptr' in:" - ], - "start_col": 15, - "start_line": 164 - } - }, - "4169": { - "accessible_scopes": [ - "__main__", - "__main__", - "__main__.mintPublic" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 78, - "end_line": 164, - "input_file": { - "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" - }, - "parent_location": [ - { - "end_col": 42, - "end_line": 204, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "parent_location": [ - { - "end_col": 82, - "end_line": 91, - "input_file": { - "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" - }, - "parent_location": [ - { - "end_col": 6, - "end_line": 212, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "start_col": 5, - "start_line": 206 - }, - "While trying to retrieve the implicit argument 'range_check_ptr' in:" - ], - "start_col": 67, - "start_line": 91 - }, - "While expanding the reference 'range_check_ptr' in:" - ], - "start_col": 5, - "start_line": 204 - }, - "While trying to update the implicit return value 'range_check_ptr' in:" - ], - "start_col": 63, - "start_line": 164 - } - }, - "4170": { - "accessible_scopes": [ - "__main__", - "__main__", - "__main__.mintPublic" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 29, - "end_line": 207, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "start_col": 18, - "start_line": 207 - } - }, - "4171": { - "accessible_scopes": [ - "__main__", - "__main__", - "__main__.mintPublic" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 34, - "end_line": 208, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "start_col": 26, - "start_line": 208 - } - }, - "4173": { - "accessible_scopes": [ - "__main__", - "__main__", - "__main__.mintPublic" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 16, - "end_line": 209, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "start_col": 15, - "start_line": 209 - } - }, - "4175": { - "accessible_scopes": [ - "__main__", - "__main__", - "__main__.mintPublic" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 28, - "end_line": 210, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "start_col": 27, - "start_line": 210 - } - }, - "4177": { - "accessible_scopes": [ - "__main__", - "__main__", - "__main__.mintPublic" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 29, - "end_line": 205, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "parent_location": [ - { - "end_col": 36, - "end_line": 211, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "start_col": 23, - "start_line": 211 - }, - "While expanding the reference 'cell_calldata' in:" - ], - "start_col": 9, - "start_line": 205 - } - }, - "4178": { - "accessible_scopes": [ - "__main__", - "__main__", - "__main__.mintPublic" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 6, - "end_line": 212, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "start_col": 5, - "start_line": 206 - } - }, - "4180": { - "accessible_scopes": [ - "__main__", - "__main__", - "__main__.mintPublic" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 65, - "end_line": 91, - "input_file": { - "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" - }, - "parent_location": [ - { - "end_col": 6, - "end_line": 212, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "parent_location": [ - { - "end_col": 43, - "end_line": 195, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "parent_location": [ - { - "end_col": 15, - "end_line": 213, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "start_col": 5, - "start_line": 213 - }, - "While trying to retrieve the implicit argument 'pedersen_ptr' in:" - ], - "start_col": 17, - "start_line": 195 - }, - "While expanding the reference 'pedersen_ptr' in:" - ], - "start_col": 5, - "start_line": 206 - }, - "While trying to update the implicit return value 'pedersen_ptr' in:" - ], - "start_col": 39, - "start_line": 91 - } - }, - "4181": { - "accessible_scopes": [ - "__main__", - "__main__", - "__main__.mintPublic" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 37, - "end_line": 91, - "input_file": { - "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" - }, - "parent_location": [ - { - "end_col": 6, - "end_line": 212, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "parent_location": [ - { - "end_col": 63, - "end_line": 195, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "parent_location": [ - { - "end_col": 15, - "end_line": 213, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "start_col": 5, - "start_line": 213 - }, - "While trying to retrieve the implicit argument 'syscall_ptr' in:" - ], - "start_col": 45, - "start_line": 195 - }, - "While expanding the reference 'syscall_ptr' in:" - ], - "start_col": 5, - "start_line": 206 - }, - "While trying to update the implicit return value 'syscall_ptr' in:" - ], - "start_col": 19, - "start_line": 91 - } - }, - "4182": { - "accessible_scopes": [ - "__main__", - "__main__", - "__main__.mintPublic" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 82, - "end_line": 91, - "input_file": { - "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" - }, - "parent_location": [ - { - "end_col": 6, - "end_line": 212, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "parent_location": [ - { - "end_col": 80, - "end_line": 195, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "parent_location": [ - { - "end_col": 15, - "end_line": 213, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "start_col": 5, - "start_line": 213 - }, - "While trying to retrieve the implicit argument 'range_check_ptr' in:" - ], - "start_col": 65, - "start_line": 195 - }, - "While expanding the reference 'range_check_ptr' in:" - ], - "start_col": 5, - "start_line": 206 - }, - "While trying to update the implicit return value 'range_check_ptr' in:" - ], - "start_col": 67, - "start_line": 91 - } - }, - "4183": { - "accessible_scopes": [ - "__main__", - "__main__", - "__main__.mintPublic" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 15, - "end_line": 213, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "start_col": 5, - "start_line": 213 - } - }, - "4184": { - "accessible_scopes": [ - "__main__", - "__main__", - "__wrappers__", - "__wrappers__.mintPublic" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 67, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/external/mintPublic/741ea357d6336b0bed7bf0472425acd0311d543883b803388880e60a232040c7.cairo" - }, - "parent_location": [ - { - "end_col": 80, - "end_line": 195, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "parent_location": [ - { - "end_col": 24, - "end_line": 2, - "input_file": { - "filename": "autogen/starknet/arg_processor/c8edcb1cbb2b70f99346c0510efba5a82524d6fbe8558629ad05a45a84efd25b.cairo" - }, - "parent_location": [ - { - "end_col": 52, - "end_line": 196, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "start_col": 40, - "start_line": 196 - }, - "While handling calldata argument 'proof'" - ], - "start_col": 9, - "start_line": 2 - }, - "While expanding the reference 'range_check_ptr' in:" - ], - "start_col": 65, - "start_line": 195 - }, - "While constructing the external wrapper for:" - ], - "start_col": 23, - "start_line": 1 - } - }, - "4185": { - "accessible_scopes": [ - "__main__", - "__main__", - "__wrappers__", - "__wrappers__.mintPublic" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 48, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/arg_processor/991f62016c321db1ce050da1566d298118c65229306c26d6cd25e91286a63d4b.cairo" - }, - "parent_location": [ - { - "end_col": 38, - "end_line": 196, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "parent_location": [ - { - "end_col": 52, - "end_line": 2, - "input_file": { - "filename": "autogen/starknet/arg_processor/c8edcb1cbb2b70f99346c0510efba5a82524d6fbe8558629ad05a45a84efd25b.cairo" - }, - "parent_location": [ - { - "end_col": 52, - "end_line": 196, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "start_col": 40, - "start_line": 196 - }, - "While handling calldata argument 'proof'" - ], - "start_col": 28, - "start_line": 2 - }, - "While expanding the reference '__calldata_arg_proof_len' in:" - ], - "start_col": 23, - "start_line": 196 - }, - "While handling calldata argument 'proof_len'" - ], - "start_col": 32, - "start_line": 1 - } - }, - "4186": { - "accessible_scopes": [ - "__main__", - "__main__", - "__wrappers__", - "__wrappers__.mintPublic" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 53, - "end_line": 2, - "input_file": { - "filename": "autogen/starknet/arg_processor/c8edcb1cbb2b70f99346c0510efba5a82524d6fbe8558629ad05a45a84efd25b.cairo" - }, - "parent_location": [ - { - "end_col": 52, - "end_line": 196, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "start_col": 40, - "start_line": 196 - }, - "While handling calldata argument 'proof'" - ], - "start_col": 1, - "start_line": 2 - } - }, - "4187": { - "accessible_scopes": [ - "__main__", - "__main__", - "__wrappers__", - "__wrappers__.mintPublic" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 40, - "end_line": 2, - "input_file": { - "filename": "autogen/starknet/arg_processor/991f62016c321db1ce050da1566d298118c65229306c26d6cd25e91286a63d4b.cairo" - }, - "parent_location": [ - { - "end_col": 38, - "end_line": 196, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "parent_location": [ - { - "end_col": 40, - "end_line": 8, - "input_file": { - "filename": "autogen/starknet/arg_processor/c8edcb1cbb2b70f99346c0510efba5a82524d6fbe8558629ad05a45a84efd25b.cairo" - }, - "parent_location": [ - { - "end_col": 52, - "end_line": 196, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "start_col": 40, - "start_line": 196 - }, - "While handling calldata argument 'proof'" - ], - "start_col": 26, - "start_line": 8 - }, - "While expanding the reference '__calldata_ptr' in:" - ], - "start_col": 23, - "start_line": 196 - }, - "While handling calldata argument 'proof_len'" - ], - "start_col": 22, - "start_line": 2 - } - }, - "4189": { - "accessible_scopes": [ - "__main__", - "__main__", - "__wrappers__", - "__wrappers__.mintPublic" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 48, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/arg_processor/991f62016c321db1ce050da1566d298118c65229306c26d6cd25e91286a63d4b.cairo" - }, - "parent_location": [ - { - "end_col": 38, - "end_line": 196, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "parent_location": [ - { - "end_col": 67, - "end_line": 8, - "input_file": { - "filename": "autogen/starknet/arg_processor/c8edcb1cbb2b70f99346c0510efba5a82524d6fbe8558629ad05a45a84efd25b.cairo" - }, - "parent_location": [ - { - "end_col": 52, - "end_line": 196, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "start_col": 40, - "start_line": 196 - }, - "While handling calldata argument 'proof'" - ], - "start_col": 43, - "start_line": 8 - }, - "While expanding the reference '__calldata_arg_proof_len' in:" - ], - "start_col": 23, - "start_line": 196 - }, - "While handling calldata argument 'proof_len'" - ], - "start_col": 32, - "start_line": 1 - } - }, - "4190": { - "accessible_scopes": [ - "__main__", - "__main__", - "__wrappers__", - "__wrappers__.mintPublic" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 71, - "end_line": 8, - "input_file": { - "filename": "autogen/starknet/arg_processor/c8edcb1cbb2b70f99346c0510efba5a82524d6fbe8558629ad05a45a84efd25b.cairo" - }, - "parent_location": [ - { - "end_col": 52, - "end_line": 196, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "start_col": 40, - "start_line": 196 - }, - "While handling calldata argument 'proof'" - ], - "start_col": 26, - "start_line": 8 - } - }, - "4191": { - "accessible_scopes": [ - "__main__", - "__main__", - "__wrappers__", - "__wrappers__.mintPublic" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 58, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/arg_processor/01cba52f8515996bb9d7070bde81ff39281d096d7024a558efcba6e1fd2402cf.cairo" - }, - "parent_location": [ - { - "end_col": 16, - "end_line": 195, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "start_col": 6, - "start_line": 195 - }, - "While handling calldata of" - ], - "start_col": 1, - "start_line": 1 - } - }, - "4192": { - "accessible_scopes": [ - "__main__", - "__main__", - "__wrappers__", - "__wrappers__.mintPublic" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 67, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/external/mintPublic/741ea357d6336b0bed7bf0472425acd0311d543883b803388880e60a232040c7.cairo" - }, - "parent_location": [ - { - "end_col": 80, - "end_line": 195, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "parent_location": [ - { - "end_col": 38, - "end_line": 3, - "input_file": { - "filename": "autogen/starknet/arg_processor/c8edcb1cbb2b70f99346c0510efba5a82524d6fbe8558629ad05a45a84efd25b.cairo" - }, - "parent_location": [ - { - "end_col": 52, - "end_line": 196, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "parent_location": [ - { - "end_col": 115, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/external/mintPublic/03792f53710bdf1b4f13130505d4195b48cad96eb41b093c9596524ebfb1aea6.cairo" - }, - "parent_location": [ - { - "end_col": 16, - "end_line": 195, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "start_col": 6, - "start_line": 195 - }, - "While constructing the external wrapper for:" - ], - "start_col": 100, - "start_line": 1 - }, - "While expanding the reference 'range_check_ptr' in:" - ], - "start_col": 40, - "start_line": 196 - }, - "While handling calldata argument 'proof'" - ], - "start_col": 23, - "start_line": 3 - }, - "While expanding the reference 'range_check_ptr' in:" - ], - "start_col": 65, - "start_line": 195 - }, - "While constructing the external wrapper for:" - ], - "start_col": 23, - "start_line": 1 - } - }, - "4193": { - "accessible_scopes": [ - "__main__", - "__main__", - "__wrappers__", - "__wrappers__.mintPublic" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 110, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/external/mintPublic/9684a85e93c782014ca14293edea4eb2502039a5a7b6538ecd39c56faaf12529.cairo" - }, - "parent_location": [ - { - "end_col": 43, - "end_line": 195, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "parent_location": [ - { - "end_col": 57, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/external/mintPublic/03792f53710bdf1b4f13130505d4195b48cad96eb41b093c9596524ebfb1aea6.cairo" - }, - "parent_location": [ - { - "end_col": 16, - "end_line": 195, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "start_col": 6, - "start_line": 195 - }, - "While constructing the external wrapper for:" - ], - "start_col": 45, - "start_line": 1 - }, - "While expanding the reference 'pedersen_ptr' in:" - ], - "start_col": 17, - "start_line": 195 - }, - "While constructing the external wrapper for:" - ], - "start_col": 20, - "start_line": 1 - } - }, - "4194": { - "accessible_scopes": [ - "__main__", - "__main__", - "__wrappers__", - "__wrappers__.mintPublic" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 64, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/external/mintPublic/b2c52ca2d2a8fc8791a983086d8716c5eacd0c3d62934914d2286f84b98ff4cb.cairo" - }, - "parent_location": [ - { - "end_col": 63, - "end_line": 195, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "parent_location": [ - { - "end_col": 82, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/external/mintPublic/03792f53710bdf1b4f13130505d4195b48cad96eb41b093c9596524ebfb1aea6.cairo" - }, - "parent_location": [ - { - "end_col": 16, - "end_line": 195, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "start_col": 6, - "start_line": 195 - }, - "While constructing the external wrapper for:" - ], - "start_col": 71, - "start_line": 1 - }, - "While expanding the reference 'syscall_ptr' in:" - ], - "start_col": 45, - "start_line": 195 - }, - "While constructing the external wrapper for:" - ], - "start_col": 19, - "start_line": 1 - } - }, - "4195": { - "accessible_scopes": [ - "__main__", - "__main__", - "__wrappers__", - "__wrappers__.mintPublic" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 42, - "end_line": 3, - "input_file": { - "filename": "autogen/starknet/arg_processor/c8edcb1cbb2b70f99346c0510efba5a82524d6fbe8558629ad05a45a84efd25b.cairo" - }, - "parent_location": [ - { - "end_col": 52, - "end_line": 196, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "parent_location": [ - { - "end_col": 115, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/external/mintPublic/03792f53710bdf1b4f13130505d4195b48cad96eb41b093c9596524ebfb1aea6.cairo" - }, - "parent_location": [ - { - "end_col": 16, - "end_line": 195, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "start_col": 6, - "start_line": 195 - }, - "While constructing the external wrapper for:" - ], - "start_col": 100, - "start_line": 1 - }, - "While expanding the reference 'range_check_ptr' in:" - ], - "start_col": 40, - "start_line": 196 - }, - "While handling calldata argument 'proof'" - ], - "start_col": 23, - "start_line": 3 - } - }, - "4197": { - "accessible_scopes": [ - "__main__", - "__main__", - "__wrappers__", - "__wrappers__.mintPublic" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 67, - "end_line": 2, - "input_file": { - "filename": "autogen/starknet/arg_processor/60c79ef5477686f2843e61432dcde7f4fc0f354d42095115ea9dca625a35df6e.cairo" - }, - "parent_location": [ - { - "end_col": 21, - "end_line": 196, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "parent_location": [ - { - "end_col": 147, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/external/mintPublic/03792f53710bdf1b4f13130505d4195b48cad96eb41b093c9596524ebfb1aea6.cairo" - }, - "parent_location": [ - { - "end_col": 16, - "end_line": 195, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "start_col": 6, - "start_line": 195 - }, - "While constructing the external wrapper for:" - ], - "start_col": 125, - "start_line": 1 - }, - "While expanding the reference '__calldata_arg_tokenId' in:" - ], - "start_col": 5, - "start_line": 196 - }, - "While handling calldata argument 'tokenId'" - ], - "start_col": 30, - "start_line": 1 - } - }, - "4198": { - "accessible_scopes": [ - "__main__", - "__main__", - "__wrappers__", - "__wrappers__.mintPublic" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 67, - "end_line": 2, - "input_file": { - "filename": "autogen/starknet/arg_processor/60c79ef5477686f2843e61432dcde7f4fc0f354d42095115ea9dca625a35df6e.cairo" - }, - "parent_location": [ - { - "end_col": 21, - "end_line": 196, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "parent_location": [ - { - "end_col": 147, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/external/mintPublic/03792f53710bdf1b4f13130505d4195b48cad96eb41b093c9596524ebfb1aea6.cairo" - }, - "parent_location": [ - { - "end_col": 16, - "end_line": 195, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "start_col": 6, - "start_line": 195 - }, - "While constructing the external wrapper for:" - ], - "start_col": 125, - "start_line": 1 - }, - "While expanding the reference '__calldata_arg_tokenId' in:" - ], - "start_col": 5, - "start_line": 196 - }, - "While handling calldata argument 'tokenId'" - ], - "start_col": 30, - "start_line": 1 - } - }, - "4199": { - "accessible_scopes": [ - "__main__", - "__main__", - "__wrappers__", - "__wrappers__.mintPublic" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 48, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/arg_processor/991f62016c321db1ce050da1566d298118c65229306c26d6cd25e91286a63d4b.cairo" - }, - "parent_location": [ - { - "end_col": 38, - "end_line": 196, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "parent_location": [ - { - "end_col": 183, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/external/mintPublic/03792f53710bdf1b4f13130505d4195b48cad96eb41b093c9596524ebfb1aea6.cairo" - }, - "parent_location": [ - { - "end_col": 16, - "end_line": 195, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "start_col": 6, - "start_line": 195 - }, - "While constructing the external wrapper for:" - ], - "start_col": 159, - "start_line": 1 - }, - "While expanding the reference '__calldata_arg_proof_len' in:" - ], - "start_col": 23, - "start_line": 196 - }, - "While handling calldata argument 'proof_len'" - ], - "start_col": 32, - "start_line": 1 - } - }, - "4200": { - "accessible_scopes": [ - "__main__", - "__main__", - "__wrappers__", - "__wrappers__.mintPublic" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 55, - "end_line": 5, - "input_file": { - "filename": "autogen/starknet/arg_processor/c8edcb1cbb2b70f99346c0510efba5a82524d6fbe8558629ad05a45a84efd25b.cairo" - }, - "parent_location": [ - { - "end_col": 52, - "end_line": 196, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "parent_location": [ - { - "end_col": 211, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/external/mintPublic/03792f53710bdf1b4f13130505d4195b48cad96eb41b093c9596524ebfb1aea6.cairo" - }, - "parent_location": [ - { - "end_col": 16, - "end_line": 195, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "start_col": 6, - "start_line": 195 - }, - "While constructing the external wrapper for:" - ], - "start_col": 191, - "start_line": 1 - }, - "While expanding the reference '__calldata_arg_proof' in:" - ], - "start_col": 40, - "start_line": 196 - }, - "While handling calldata argument 'proof'" - ], - "start_col": 28, - "start_line": 5 - } - }, - "4202": { - "accessible_scopes": [ - "__main__", - "__main__", - "__wrappers__", - "__wrappers__.mintPublic" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 16, - "end_line": 195, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "start_col": 6, - "start_line": 195 - } - }, - "4204": { - "accessible_scopes": [ - "__main__", - "__main__", - "__wrappers__", - "__wrappers__.mintPublic" - ], - "flow_tracking_data": null, - "hints": [ - { - "location": { - "end_col": 34, - "end_line": 2, - "input_file": { - "filename": "autogen/starknet/external/mintPublic/03792f53710bdf1b4f13130505d4195b48cad96eb41b093c9596524ebfb1aea6.cairo" - }, - "parent_location": [ - { - "end_col": 16, - "end_line": 195, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "start_col": 6, - "start_line": 195 - }, - "While constructing the external wrapper for:" - ], - "start_col": 1, - "start_line": 2 - }, - "n_prefix_newlines": 0 - } - ], - "inst": { - "end_col": 24, - "end_line": 3, - "input_file": { - "filename": "autogen/starknet/external/mintPublic/03792f53710bdf1b4f13130505d4195b48cad96eb41b093c9596524ebfb1aea6.cairo" - }, - "parent_location": [ - { - "end_col": 16, - "end_line": 195, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "start_col": 6, - "start_line": 195 - }, - "While constructing the external wrapper for:" - ], - "start_col": 1, - "start_line": 3 - } - }, - "4206": { - "accessible_scopes": [ - "__main__", - "__main__", - "__wrappers__", - "__wrappers__.mintPublic" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 82, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/external/mintPublic/03792f53710bdf1b4f13130505d4195b48cad96eb41b093c9596524ebfb1aea6.cairo" - }, - "parent_location": [ - { - "end_col": 16, - "end_line": 195, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "parent_location": [ - { - "end_col": 20, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/external/mintPublic/da17921a4e81c09e730800bbf23bfdbe5e9e6bfaedc59d80fbf62087fa43c27d.cairo" - }, - "parent_location": [ - { - "end_col": 16, - "end_line": 195, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "start_col": 6, - "start_line": 195 - }, - "While constructing the external wrapper for:" - ], - "start_col": 9, - "start_line": 1 - }, - "While expanding the reference 'syscall_ptr' in:" - ], - "start_col": 6, - "start_line": 195 - }, - "While constructing the external wrapper for:" - ], - "start_col": 71, - "start_line": 1 - } - }, - "4207": { - "accessible_scopes": [ - "__main__", - "__main__", - "__wrappers__", - "__wrappers__.mintPublic" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 57, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/external/mintPublic/03792f53710bdf1b4f13130505d4195b48cad96eb41b093c9596524ebfb1aea6.cairo" - }, - "parent_location": [ - { - "end_col": 16, - "end_line": 195, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "parent_location": [ - { - "end_col": 33, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/external/mintPublic/da17921a4e81c09e730800bbf23bfdbe5e9e6bfaedc59d80fbf62087fa43c27d.cairo" - }, - "parent_location": [ - { - "end_col": 16, - "end_line": 195, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "start_col": 6, - "start_line": 195 - }, - "While constructing the external wrapper for:" - ], - "start_col": 21, - "start_line": 1 - }, - "While expanding the reference 'pedersen_ptr' in:" - ], - "start_col": 6, - "start_line": 195 - }, - "While constructing the external wrapper for:" - ], - "start_col": 45, - "start_line": 1 - } - }, - "4208": { - "accessible_scopes": [ - "__main__", - "__main__", - "__wrappers__", - "__wrappers__.mintPublic" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 115, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/external/mintPublic/03792f53710bdf1b4f13130505d4195b48cad96eb41b093c9596524ebfb1aea6.cairo" - }, - "parent_location": [ - { - "end_col": 16, - "end_line": 195, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "parent_location": [ - { - "end_col": 49, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/external/mintPublic/da17921a4e81c09e730800bbf23bfdbe5e9e6bfaedc59d80fbf62087fa43c27d.cairo" - }, - "parent_location": [ - { - "end_col": 16, - "end_line": 195, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "start_col": 6, - "start_line": 195 - }, - "While constructing the external wrapper for:" - ], - "start_col": 34, - "start_line": 1 - }, - "While expanding the reference 'range_check_ptr' in:" - ], - "start_col": 6, - "start_line": 195 - }, - "While constructing the external wrapper for:" - ], - "start_col": 100, - "start_line": 1 - } - }, - "4209": { - "accessible_scopes": [ - "__main__", - "__main__", - "__wrappers__", - "__wrappers__.mintPublic" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 21, - "end_line": 4, - "input_file": { - "filename": "autogen/starknet/external/mintPublic/03792f53710bdf1b4f13130505d4195b48cad96eb41b093c9596524ebfb1aea6.cairo" - }, - "parent_location": [ - { - "end_col": 16, - "end_line": 195, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "parent_location": [ - { - "end_col": 62, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/external/mintPublic/da17921a4e81c09e730800bbf23bfdbe5e9e6bfaedc59d80fbf62087fa43c27d.cairo" - }, - "parent_location": [ - { - "end_col": 16, - "end_line": 195, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "start_col": 6, - "start_line": 195 - }, - "While constructing the external wrapper for:" - ], - "start_col": 50, - "start_line": 1 - }, - "While expanding the reference 'retdata_size' in:" - ], - "start_col": 6, - "start_line": 195 - }, - "While constructing the external wrapper for:" - ], - "start_col": 20, - "start_line": 4 - } - }, - "4211": { - "accessible_scopes": [ - "__main__", - "__main__", - "__wrappers__", - "__wrappers__.mintPublic" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 16, - "end_line": 3, - "input_file": { - "filename": "autogen/starknet/external/mintPublic/03792f53710bdf1b4f13130505d4195b48cad96eb41b093c9596524ebfb1aea6.cairo" - }, - "parent_location": [ - { - "end_col": 16, - "end_line": 195, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "parent_location": [ - { - "end_col": 70, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/external/mintPublic/da17921a4e81c09e730800bbf23bfdbe5e9e6bfaedc59d80fbf62087fa43c27d.cairo" - }, - "parent_location": [ - { - "end_col": 16, - "end_line": 195, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "start_col": 6, - "start_line": 195 - }, - "While constructing the external wrapper for:" - ], - "start_col": 63, - "start_line": 1 - }, - "While expanding the reference 'retdata' in:" - ], - "start_col": 6, - "start_line": 195 - }, - "While constructing the external wrapper for:" - ], - "start_col": 9, - "start_line": 3 - } - }, - "4212": { - "accessible_scopes": [ - "__main__", - "__main__", - "__wrappers__", - "__wrappers__.mintPublic" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 72, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/external/mintPublic/da17921a4e81c09e730800bbf23bfdbe5e9e6bfaedc59d80fbf62087fa43c27d.cairo" - }, - "parent_location": [ - { - "end_col": 16, - "end_line": 195, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "start_col": 6, - "start_line": 195 - }, - "While constructing the external wrapper for:" - ], - "start_col": 1, - "start_line": 1 - } - }, - "4213": { - "accessible_scopes": [ - "__main__", - "__main__", - "__main__.mintAndSetPublic" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 69, - "end_line": 217, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "parent_location": [ - { - "end_col": 33, - "end_line": 13, - "input_file": { - "filename": "autogen/starknet/storage_var/_n_row/decl.cairo" - }, - "parent_location": [ - { - "end_col": 36, - "end_line": 227, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "start_col": 23, - "start_line": 227 - }, - "While trying to retrieve the implicit argument 'syscall_ptr' in:" - ], - "start_col": 15, - "start_line": 13 - }, - "While expanding the reference 'syscall_ptr' in:" - ], - "start_col": 51, - "start_line": 217 - } - }, - "4214": { - "accessible_scopes": [ - "__main__", - "__main__", - "__main__.mintAndSetPublic" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 49, - "end_line": 217, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "parent_location": [ - { - "end_col": 61, - "end_line": 13, - "input_file": { - "filename": "autogen/starknet/storage_var/_n_row/decl.cairo" - }, - "parent_location": [ - { - "end_col": 36, - "end_line": 227, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "start_col": 23, - "start_line": 227 - }, - "While trying to retrieve the implicit argument 'pedersen_ptr' in:" - ], - "start_col": 35, - "start_line": 13 - }, - "While expanding the reference 'pedersen_ptr' in:" - ], - "start_col": 23, - "start_line": 217 - } - }, - "4215": { - "accessible_scopes": [ - "__main__", - "__main__", - "__main__.mintAndSetPublic" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 86, - "end_line": 217, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "parent_location": [ - { - "end_col": 78, - "end_line": 13, - "input_file": { - "filename": "autogen/starknet/storage_var/_n_row/decl.cairo" - }, - "parent_location": [ - { - "end_col": 36, - "end_line": 227, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "start_col": 23, - "start_line": 227 - }, - "While trying to retrieve the implicit argument 'range_check_ptr' in:" - ], - "start_col": 63, - "start_line": 13 - }, - "While expanding the reference 'range_check_ptr' in:" - ], - "start_col": 71, - "start_line": 217 - } - }, - "4216": { - "accessible_scopes": [ - "__main__", - "__main__", - "__main__.mintAndSetPublic" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 36, - "end_line": 227, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "start_col": 23, - "start_line": 227 - } - }, - "4218": { - "accessible_scopes": [ - "__main__", - "__main__", - "__main__.mintAndSetPublic" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 42, - "end_line": 228, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "start_col": 32, - "start_line": 228 - } - }, - "4220": { - "accessible_scopes": [ - "__main__", - "__main__", - "__main__.mintAndSetPublic" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 78, - "end_line": 13, - "input_file": { - "filename": "autogen/starknet/storage_var/_n_row/decl.cairo" - }, - "parent_location": [ - { - "end_col": 36, - "end_line": 227, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "parent_location": [ - { - "end_col": 31, - "end_line": 53, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/math.cairo" - }, - "parent_location": [ - { - "end_col": 47, - "end_line": 228, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "start_col": 9, - "start_line": 228 - }, - "While trying to retrieve the implicit argument 'range_check_ptr' in:" - ], - "start_col": 16, - "start_line": 53 - }, - "While expanding the reference 'range_check_ptr' in:" - ], - "start_col": 23, - "start_line": 227 - }, - "While trying to update the implicit return value 'range_check_ptr' in:" - ], - "start_col": 63, - "start_line": 13 - } - }, - "4221": { - "accessible_scopes": [ - "__main__", - "__main__", - "__main__.mintAndSetPublic" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 30, - "end_line": 228, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "start_col": 19, - "start_line": 228 - } - }, - "4222": { - "accessible_scopes": [ - "__main__", - "__main__", - "__main__.mintAndSetPublic" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 46, - "end_line": 228, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "start_col": 32, - "start_line": 228 - } - }, - "4224": { - "accessible_scopes": [ - "__main__", - "__main__", - "__main__.mintAndSetPublic" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 47, - "end_line": 228, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "start_col": 9, - "start_line": 228 - } - }, - "4226": { - "accessible_scopes": [ - "__main__", - "__main__", - "__main__.mintAndSetPublic" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 33, - "end_line": 229, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "start_col": 9, - "start_line": 229 - } - }, - "4228": { - "accessible_scopes": [ - "__main__", - "__main__", - "__main__.mintAndSetPublic" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 61, - "end_line": 13, - "input_file": { - "filename": "autogen/starknet/storage_var/_n_row/decl.cairo" - }, - "parent_location": [ - { - "end_col": 36, - "end_line": 227, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "parent_location": [ - { - "end_col": 41, - "end_line": 164, - "input_file": { - "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" - }, - "parent_location": [ - { - "end_col": 42, - "end_line": 232, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "start_col": 5, - "start_line": 232 - }, - "While trying to retrieve the implicit argument 'pedersen_ptr' in:" - ], - "start_col": 15, - "start_line": 164 - }, - "While expanding the reference 'pedersen_ptr' in:" - ], - "start_col": 23, - "start_line": 227 - }, - "While trying to update the implicit return value 'pedersen_ptr' in:" - ], - "start_col": 35, - "start_line": 13 - } - }, - "4229": { - "accessible_scopes": [ - "__main__", - "__main__", - "__main__.mintAndSetPublic" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 33, - "end_line": 13, - "input_file": { - "filename": "autogen/starknet/storage_var/_n_row/decl.cairo" - }, - "parent_location": [ - { - "end_col": 36, - "end_line": 227, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "parent_location": [ - { - "end_col": 61, - "end_line": 164, - "input_file": { - "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" - }, - "parent_location": [ - { - "end_col": 42, - "end_line": 232, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "start_col": 5, - "start_line": 232 - }, - "While trying to retrieve the implicit argument 'syscall_ptr' in:" - ], - "start_col": 43, - "start_line": 164 - }, - "While expanding the reference 'syscall_ptr' in:" - ], - "start_col": 23, - "start_line": 227 - }, - "While trying to update the implicit return value 'syscall_ptr' in:" - ], - "start_col": 15, - "start_line": 13 - } - }, - "4230": { - "accessible_scopes": [ - "__main__", - "__main__", - "__main__.mintAndSetPublic" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 31, - "end_line": 53, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/math.cairo" - }, - "parent_location": [ - { - "end_col": 47, - "end_line": 228, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "parent_location": [ - { - "end_col": 78, - "end_line": 164, - "input_file": { - "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" - }, - "parent_location": [ - { - "end_col": 42, - "end_line": 232, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "start_col": 5, - "start_line": 232 - }, - "While trying to retrieve the implicit argument 'range_check_ptr' in:" - ], - "start_col": 63, - "start_line": 164 - }, - "While expanding the reference 'range_check_ptr' in:" - ], - "start_col": 9, - "start_line": 228 - }, - "While trying to update the implicit return value 'range_check_ptr' in:" - ], - "start_col": 16, - "start_line": 53 - } - }, - "4231": { - "accessible_scopes": [ - "__main__", - "__main__", - "__main__.mintAndSetPublic" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 21, - "end_line": 218, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "parent_location": [ - { - "end_col": 23, - "end_line": 232, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "start_col": 16, - "start_line": 232 - }, - "While expanding the reference 'tokenId' in:" - ], - "start_col": 5, - "start_line": 218 - } - }, - "4232": { - "accessible_scopes": [ - "__main__", - "__main__", - "__main__.mintAndSetPublic" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 21, - "end_line": 218, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "parent_location": [ - { - "end_col": 23, - "end_line": 232, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "start_col": 16, - "start_line": 232 - }, - "While expanding the reference 'tokenId' in:" - ], - "start_col": 5, - "start_line": 218 - } - }, - "4233": { - "accessible_scopes": [ - "__main__", - "__main__", - "__main__.mintAndSetPublic" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 20, - "end_line": 219, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "parent_location": [ - { - "end_col": 34, - "end_line": 232, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "start_col": 25, - "start_line": 232 - }, - "While expanding the reference 'proof_len' in:" - ], - "start_col": 5, - "start_line": 219 - } - }, - "4234": { - "accessible_scopes": [ - "__main__", - "__main__", - "__main__.mintAndSetPublic" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 17, - "end_line": 220, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "parent_location": [ - { - "end_col": 41, - "end_line": 232, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "start_col": 36, - "start_line": 232 - }, - "While expanding the reference 'proof' in:" - ], - "start_col": 5, - "start_line": 220 - } - }, - "4235": { - "accessible_scopes": [ - "__main__", - "__main__", - "__main__.mintAndSetPublic" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 42, - "end_line": 232, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "start_col": 5, - "start_line": 232 - } - }, - "4237": { - "accessible_scopes": [ - "__main__", - "__main__", - "__main__.mintAndSetPublic" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 61, - "end_line": 164, - "input_file": { - "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" - }, - "parent_location": [ - { - "end_col": 42, - "end_line": 232, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "parent_location": [ - { - "end_col": 37, - "end_line": 91, - "input_file": { - "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" - }, - "parent_location": [ - { - "end_col": 6, - "end_line": 239, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "start_col": 5, - "start_line": 233 - }, - "While trying to retrieve the implicit argument 'syscall_ptr' in:" - ], - "start_col": 19, - "start_line": 91 - }, - "While expanding the reference 'syscall_ptr' in:" - ], - "start_col": 5, - "start_line": 232 - }, - "While trying to update the implicit return value 'syscall_ptr' in:" - ], - "start_col": 43, - "start_line": 164 - } - }, - "4238": { - "accessible_scopes": [ - "__main__", - "__main__", - "__main__.mintAndSetPublic" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 41, - "end_line": 164, - "input_file": { - "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" - }, - "parent_location": [ - { - "end_col": 42, - "end_line": 232, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "parent_location": [ - { - "end_col": 65, - "end_line": 91, - "input_file": { - "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" - }, - "parent_location": [ - { - "end_col": 6, - "end_line": 239, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "start_col": 5, - "start_line": 233 - }, - "While trying to retrieve the implicit argument 'pedersen_ptr' in:" - ], - "start_col": 39, - "start_line": 91 - }, - "While expanding the reference 'pedersen_ptr' in:" - ], - "start_col": 5, - "start_line": 232 - }, - "While trying to update the implicit return value 'pedersen_ptr' in:" - ], - "start_col": 15, - "start_line": 164 - } - }, - "4239": { - "accessible_scopes": [ - "__main__", - "__main__", - "__main__.mintAndSetPublic" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 78, - "end_line": 164, - "input_file": { - "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" - }, - "parent_location": [ - { - "end_col": 42, - "end_line": 232, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "parent_location": [ - { - "end_col": 82, - "end_line": 91, - "input_file": { - "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" - }, - "parent_location": [ - { - "end_col": 6, - "end_line": 239, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "start_col": 5, - "start_line": 233 - }, - "While trying to retrieve the implicit argument 'range_check_ptr' in:" - ], - "start_col": 67, - "start_line": 91 - }, - "While expanding the reference 'range_check_ptr' in:" - ], - "start_col": 5, - "start_line": 232 - }, - "While trying to update the implicit return value 'range_check_ptr' in:" - ], - "start_col": 63, - "start_line": 164 - } - }, - "4240": { - "accessible_scopes": [ - "__main__", - "__main__", - "__main__.mintAndSetPublic" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 29, - "end_line": 234, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "start_col": 18, - "start_line": 234 - } - }, - "4241": { - "accessible_scopes": [ - "__main__", - "__main__", - "__main__.mintAndSetPublic" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 26, - "end_line": 221, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "parent_location": [ - { - "end_col": 41, - "end_line": 235, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "start_col": 26, - "start_line": 235 - }, - "While expanding the reference 'contractAddress' in:" - ], - "start_col": 5, - "start_line": 221 - } - }, - "4242": { - "accessible_scopes": [ - "__main__", - "__main__", - "__main__.mintAndSetPublic" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 16, - "end_line": 222, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "parent_location": [ - { - "end_col": 20, - "end_line": 236, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "start_col": 15, - "start_line": 236 - }, - "While expanding the reference 'value' in:" - ], - "start_col": 5, - "start_line": 222 - } - }, - "4243": { - "accessible_scopes": [ - "__main__", - "__main__", - "__main__.mintAndSetPublic" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 27, - "end_line": 223, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "parent_location": [ - { - "end_col": 43, - "end_line": 237, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "start_col": 27, - "start_line": 237 - }, - "While expanding the reference 'cellCalldata_len' in:" - ], - "start_col": 5, - "start_line": 223 - } - }, - "4244": { - "accessible_scopes": [ - "__main__", - "__main__", - "__main__.mintAndSetPublic" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 24, - "end_line": 224, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "parent_location": [ - { - "end_col": 35, - "end_line": 238, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "start_col": 23, - "start_line": 238 - }, - "While expanding the reference 'cellCalldata' in:" - ], - "start_col": 5, - "start_line": 224 - } - }, - "4245": { - "accessible_scopes": [ - "__main__", - "__main__", - "__main__.mintAndSetPublic" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 6, - "end_line": 239, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "start_col": 5, - "start_line": 233 - } - }, - "4247": { - "accessible_scopes": [ - "__main__", - "__main__", - "__main__.mintAndSetPublic" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 65, - "end_line": 91, - "input_file": { - "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" - }, - "parent_location": [ - { - "end_col": 6, - "end_line": 239, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "parent_location": [ - { - "end_col": 49, - "end_line": 217, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "parent_location": [ - { - "end_col": 15, - "end_line": 240, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "start_col": 5, - "start_line": 240 - }, - "While trying to retrieve the implicit argument 'pedersen_ptr' in:" - ], - "start_col": 23, - "start_line": 217 - }, - "While expanding the reference 'pedersen_ptr' in:" - ], - "start_col": 5, - "start_line": 233 - }, - "While trying to update the implicit return value 'pedersen_ptr' in:" - ], - "start_col": 39, - "start_line": 91 - } - }, - "4248": { - "accessible_scopes": [ - "__main__", - "__main__", - "__main__.mintAndSetPublic" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 37, - "end_line": 91, - "input_file": { - "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" - }, - "parent_location": [ - { - "end_col": 6, - "end_line": 239, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "parent_location": [ - { - "end_col": 69, - "end_line": 217, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "parent_location": [ - { - "end_col": 15, - "end_line": 240, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "start_col": 5, - "start_line": 240 - }, - "While trying to retrieve the implicit argument 'syscall_ptr' in:" - ], - "start_col": 51, - "start_line": 217 - }, - "While expanding the reference 'syscall_ptr' in:" - ], - "start_col": 5, - "start_line": 233 - }, - "While trying to update the implicit return value 'syscall_ptr' in:" - ], - "start_col": 19, - "start_line": 91 - } - }, - "4249": { - "accessible_scopes": [ - "__main__", - "__main__", - "__main__.mintAndSetPublic" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 82, - "end_line": 91, - "input_file": { - "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" - }, - "parent_location": [ - { - "end_col": 6, - "end_line": 239, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "parent_location": [ - { - "end_col": 86, - "end_line": 217, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "parent_location": [ - { - "end_col": 15, - "end_line": 240, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "start_col": 5, - "start_line": 240 - }, - "While trying to retrieve the implicit argument 'range_check_ptr' in:" - ], - "start_col": 71, - "start_line": 217 - }, - "While expanding the reference 'range_check_ptr' in:" - ], - "start_col": 5, - "start_line": 233 - }, - "While trying to update the implicit return value 'range_check_ptr' in:" - ], - "start_col": 67, - "start_line": 91 - } - }, - "4250": { - "accessible_scopes": [ - "__main__", - "__main__", - "__main__.mintAndSetPublic" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 15, - "end_line": 240, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "start_col": 5, - "start_line": 240 - } - }, - "4251": { - "accessible_scopes": [ - "__main__", - "__main__", - "__wrappers__", - "__wrappers__.mintAndSetPublic" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 67, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/external/mintAndSetPublic/741ea357d6336b0bed7bf0472425acd0311d543883b803388880e60a232040c7.cairo" - }, - "parent_location": [ - { - "end_col": 86, - "end_line": 217, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "parent_location": [ - { - "end_col": 24, - "end_line": 2, - "input_file": { - "filename": "autogen/starknet/arg_processor/c8edcb1cbb2b70f99346c0510efba5a82524d6fbe8558629ad05a45a84efd25b.cairo" - }, - "parent_location": [ - { - "end_col": 17, - "end_line": 220, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "start_col": 5, - "start_line": 220 - }, - "While handling calldata argument 'proof'" - ], - "start_col": 9, - "start_line": 2 - }, - "While expanding the reference 'range_check_ptr' in:" - ], - "start_col": 71, - "start_line": 217 - }, - "While constructing the external wrapper for:" - ], - "start_col": 23, - "start_line": 1 - } - }, - "4252": { - "accessible_scopes": [ - "__main__", - "__main__", - "__wrappers__", - "__wrappers__.mintAndSetPublic" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 48, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/arg_processor/991f62016c321db1ce050da1566d298118c65229306c26d6cd25e91286a63d4b.cairo" - }, - "parent_location": [ - { - "end_col": 20, - "end_line": 219, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "parent_location": [ - { - "end_col": 52, - "end_line": 2, - "input_file": { - "filename": "autogen/starknet/arg_processor/c8edcb1cbb2b70f99346c0510efba5a82524d6fbe8558629ad05a45a84efd25b.cairo" - }, - "parent_location": [ - { - "end_col": 17, - "end_line": 220, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "start_col": 5, - "start_line": 220 - }, - "While handling calldata argument 'proof'" - ], - "start_col": 28, - "start_line": 2 - }, - "While expanding the reference '__calldata_arg_proof_len' in:" - ], - "start_col": 5, - "start_line": 219 - }, - "While handling calldata argument 'proof_len'" - ], - "start_col": 32, - "start_line": 1 - } - }, - "4253": { - "accessible_scopes": [ - "__main__", - "__main__", - "__wrappers__", - "__wrappers__.mintAndSetPublic" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 53, - "end_line": 2, - "input_file": { - "filename": "autogen/starknet/arg_processor/c8edcb1cbb2b70f99346c0510efba5a82524d6fbe8558629ad05a45a84efd25b.cairo" - }, - "parent_location": [ - { - "end_col": 17, - "end_line": 220, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "start_col": 5, - "start_line": 220 - }, - "While handling calldata argument 'proof'" - ], - "start_col": 1, - "start_line": 2 - } - }, - "4254": { - "accessible_scopes": [ - "__main__", - "__main__", - "__wrappers__", - "__wrappers__.mintAndSetPublic" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 40, - "end_line": 2, - "input_file": { - "filename": "autogen/starknet/arg_processor/991f62016c321db1ce050da1566d298118c65229306c26d6cd25e91286a63d4b.cairo" - }, - "parent_location": [ - { - "end_col": 20, - "end_line": 219, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "parent_location": [ - { - "end_col": 40, - "end_line": 8, - "input_file": { - "filename": "autogen/starknet/arg_processor/c8edcb1cbb2b70f99346c0510efba5a82524d6fbe8558629ad05a45a84efd25b.cairo" - }, - "parent_location": [ - { - "end_col": 17, - "end_line": 220, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "start_col": 5, - "start_line": 220 - }, - "While handling calldata argument 'proof'" - ], - "start_col": 26, - "start_line": 8 - }, - "While expanding the reference '__calldata_ptr' in:" - ], - "start_col": 5, - "start_line": 219 - }, - "While handling calldata argument 'proof_len'" - ], - "start_col": 22, - "start_line": 2 - } - }, - "4256": { - "accessible_scopes": [ - "__main__", - "__main__", - "__wrappers__", - "__wrappers__.mintAndSetPublic" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 48, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/arg_processor/991f62016c321db1ce050da1566d298118c65229306c26d6cd25e91286a63d4b.cairo" - }, - "parent_location": [ - { - "end_col": 20, - "end_line": 219, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "parent_location": [ - { - "end_col": 67, - "end_line": 8, - "input_file": { - "filename": "autogen/starknet/arg_processor/c8edcb1cbb2b70f99346c0510efba5a82524d6fbe8558629ad05a45a84efd25b.cairo" - }, - "parent_location": [ - { - "end_col": 17, - "end_line": 220, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "start_col": 5, - "start_line": 220 - }, - "While handling calldata argument 'proof'" - ], - "start_col": 43, - "start_line": 8 - }, - "While expanding the reference '__calldata_arg_proof_len' in:" - ], - "start_col": 5, - "start_line": 219 - }, - "While handling calldata argument 'proof_len'" - ], - "start_col": 32, - "start_line": 1 - } - }, - "4257": { - "accessible_scopes": [ - "__main__", - "__main__", - "__wrappers__", - "__wrappers__.mintAndSetPublic" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 71, - "end_line": 8, - "input_file": { - "filename": "autogen/starknet/arg_processor/c8edcb1cbb2b70f99346c0510efba5a82524d6fbe8558629ad05a45a84efd25b.cairo" - }, - "parent_location": [ - { - "end_col": 17, - "end_line": 220, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "start_col": 5, - "start_line": 220 - }, - "While handling calldata argument 'proof'" - ], - "start_col": 26, - "start_line": 8 - } - }, - "4258": { - "accessible_scopes": [ - "__main__", - "__main__", - "__wrappers__", - "__wrappers__.mintAndSetPublic" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 67, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/external/mintAndSetPublic/741ea357d6336b0bed7bf0472425acd0311d543883b803388880e60a232040c7.cairo" - }, - "parent_location": [ - { - "end_col": 86, - "end_line": 217, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "parent_location": [ - { - "end_col": 38, - "end_line": 3, - "input_file": { - "filename": "autogen/starknet/arg_processor/c8edcb1cbb2b70f99346c0510efba5a82524d6fbe8558629ad05a45a84efd25b.cairo" - }, - "parent_location": [ - { - "end_col": 17, - "end_line": 220, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "parent_location": [ - { - "end_col": 24, - "end_line": 2, - "input_file": { - "filename": "autogen/starknet/arg_processor/7e8d4187d234f1ad9572c7c76c7fcab338d2159e013bdd9bfc0f771a29c04f92.cairo" - }, - "parent_location": [ - { - "end_col": 24, - "end_line": 224, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "start_col": 5, - "start_line": 224 - }, - "While handling calldata argument 'cellCalldata'" - ], - "start_col": 9, - "start_line": 2 - }, - "While expanding the reference 'range_check_ptr' in:" - ], - "start_col": 5, - "start_line": 220 - }, - "While handling calldata argument 'proof'" - ], - "start_col": 23, - "start_line": 3 - }, - "While expanding the reference 'range_check_ptr' in:" - ], - "start_col": 71, - "start_line": 217 - }, - "While constructing the external wrapper for:" - ], - "start_col": 23, - "start_line": 1 - } - }, - "4259": { - "accessible_scopes": [ - "__main__", - "__main__", - "__wrappers__", - "__wrappers__.mintAndSetPublic" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 55, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/arg_processor/7e872b5a76cfa33336e13e83d342763f36bad8be8a18be69e78776b449847f1a.cairo" - }, - "parent_location": [ - { - "end_col": 27, - "end_line": 223, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "parent_location": [ - { - "end_col": 59, - "end_line": 2, - "input_file": { - "filename": "autogen/starknet/arg_processor/7e8d4187d234f1ad9572c7c76c7fcab338d2159e013bdd9bfc0f771a29c04f92.cairo" - }, - "parent_location": [ - { - "end_col": 24, - "end_line": 224, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "start_col": 5, - "start_line": 224 - }, - "While handling calldata argument 'cellCalldata'" - ], - "start_col": 28, - "start_line": 2 - }, - "While expanding the reference '__calldata_arg_cellCalldata_len' in:" - ], - "start_col": 5, - "start_line": 223 - }, - "While handling calldata argument 'cellCalldata_len'" - ], - "start_col": 39, - "start_line": 1 - } - }, - "4260": { - "accessible_scopes": [ - "__main__", - "__main__", - "__wrappers__", - "__wrappers__.mintAndSetPublic" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 60, - "end_line": 2, - "input_file": { - "filename": "autogen/starknet/arg_processor/7e8d4187d234f1ad9572c7c76c7fcab338d2159e013bdd9bfc0f771a29c04f92.cairo" - }, - "parent_location": [ - { - "end_col": 24, - "end_line": 224, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "start_col": 5, - "start_line": 224 - }, - "While handling calldata argument 'cellCalldata'" - ], - "start_col": 1, - "start_line": 2 - } - }, - "4261": { - "accessible_scopes": [ - "__main__", - "__main__", - "__wrappers__", - "__wrappers__.mintAndSetPublic" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 40, - "end_line": 2, - "input_file": { - "filename": "autogen/starknet/arg_processor/7e872b5a76cfa33336e13e83d342763f36bad8be8a18be69e78776b449847f1a.cairo" - }, - "parent_location": [ - { - "end_col": 27, - "end_line": 223, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "parent_location": [ - { - "end_col": 40, - "end_line": 8, - "input_file": { - "filename": "autogen/starknet/arg_processor/7e8d4187d234f1ad9572c7c76c7fcab338d2159e013bdd9bfc0f771a29c04f92.cairo" - }, - "parent_location": [ - { - "end_col": 24, - "end_line": 224, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "start_col": 5, - "start_line": 224 - }, - "While handling calldata argument 'cellCalldata'" - ], - "start_col": 26, - "start_line": 8 - }, - "While expanding the reference '__calldata_ptr' in:" - ], - "start_col": 5, - "start_line": 223 - }, - "While handling calldata argument 'cellCalldata_len'" - ], - "start_col": 22, - "start_line": 2 - } - }, - "4263": { - "accessible_scopes": [ - "__main__", - "__main__", - "__wrappers__", - "__wrappers__.mintAndSetPublic" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 55, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/arg_processor/7e872b5a76cfa33336e13e83d342763f36bad8be8a18be69e78776b449847f1a.cairo" - }, - "parent_location": [ - { - "end_col": 27, - "end_line": 223, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "parent_location": [ - { - "end_col": 74, - "end_line": 8, - "input_file": { - "filename": "autogen/starknet/arg_processor/7e8d4187d234f1ad9572c7c76c7fcab338d2159e013bdd9bfc0f771a29c04f92.cairo" - }, - "parent_location": [ - { - "end_col": 24, - "end_line": 224, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "start_col": 5, - "start_line": 224 - }, - "While handling calldata argument 'cellCalldata'" - ], - "start_col": 43, - "start_line": 8 - }, - "While expanding the reference '__calldata_arg_cellCalldata_len' in:" - ], - "start_col": 5, - "start_line": 223 - }, - "While handling calldata argument 'cellCalldata_len'" - ], - "start_col": 39, - "start_line": 1 - } - }, - "4264": { - "accessible_scopes": [ - "__main__", - "__main__", - "__wrappers__", - "__wrappers__.mintAndSetPublic" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 78, - "end_line": 8, - "input_file": { - "filename": "autogen/starknet/arg_processor/7e8d4187d234f1ad9572c7c76c7fcab338d2159e013bdd9bfc0f771a29c04f92.cairo" - }, - "parent_location": [ - { - "end_col": 24, - "end_line": 224, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "start_col": 5, - "start_line": 224 - }, - "While handling calldata argument 'cellCalldata'" - ], - "start_col": 26, - "start_line": 8 - } - }, - "4265": { - "accessible_scopes": [ - "__main__", - "__main__", - "__wrappers__", - "__wrappers__.mintAndSetPublic" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 58, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/arg_processor/01cba52f8515996bb9d7070bde81ff39281d096d7024a558efcba6e1fd2402cf.cairo" - }, - "parent_location": [ - { - "end_col": 22, - "end_line": 217, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "start_col": 6, - "start_line": 217 - }, - "While handling calldata of" - ], - "start_col": 1, - "start_line": 1 - } - }, - "4266": { - "accessible_scopes": [ - "__main__", - "__main__", - "__wrappers__", - "__wrappers__.mintAndSetPublic" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 67, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/external/mintAndSetPublic/741ea357d6336b0bed7bf0472425acd0311d543883b803388880e60a232040c7.cairo" - }, - "parent_location": [ - { - "end_col": 86, - "end_line": 217, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "parent_location": [ - { - "end_col": 38, - "end_line": 3, - "input_file": { - "filename": "autogen/starknet/arg_processor/c8edcb1cbb2b70f99346c0510efba5a82524d6fbe8558629ad05a45a84efd25b.cairo" - }, - "parent_location": [ - { - "end_col": 17, - "end_line": 220, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "parent_location": [ - { - "end_col": 38, - "end_line": 3, - "input_file": { - "filename": "autogen/starknet/arg_processor/7e8d4187d234f1ad9572c7c76c7fcab338d2159e013bdd9bfc0f771a29c04f92.cairo" - }, - "parent_location": [ - { - "end_col": 24, - "end_line": 224, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "parent_location": [ - { - "end_col": 115, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/external/mintAndSetPublic/8d28e230e489bc8d7b9f205ad15790d268dd96b367ed23a515f6d462c885a511.cairo" - }, - "parent_location": [ - { - "end_col": 22, - "end_line": 217, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "start_col": 6, - "start_line": 217 - }, - "While constructing the external wrapper for:" - ], - "start_col": 100, - "start_line": 1 - }, - "While expanding the reference 'range_check_ptr' in:" - ], - "start_col": 5, - "start_line": 224 - }, - "While handling calldata argument 'cellCalldata'" - ], - "start_col": 23, - "start_line": 3 - }, - "While expanding the reference 'range_check_ptr' in:" - ], - "start_col": 5, - "start_line": 220 - }, - "While handling calldata argument 'proof'" - ], - "start_col": 23, - "start_line": 3 - }, - "While expanding the reference 'range_check_ptr' in:" - ], - "start_col": 71, - "start_line": 217 - }, - "While constructing the external wrapper for:" - ], - "start_col": 23, - "start_line": 1 - } - }, - "4267": { - "accessible_scopes": [ - "__main__", - "__main__", - "__wrappers__", - "__wrappers__.mintAndSetPublic" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 110, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/external/mintAndSetPublic/9684a85e93c782014ca14293edea4eb2502039a5a7b6538ecd39c56faaf12529.cairo" - }, - "parent_location": [ - { - "end_col": 49, - "end_line": 217, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "parent_location": [ - { - "end_col": 57, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/external/mintAndSetPublic/8d28e230e489bc8d7b9f205ad15790d268dd96b367ed23a515f6d462c885a511.cairo" - }, - "parent_location": [ - { - "end_col": 22, - "end_line": 217, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "start_col": 6, - "start_line": 217 - }, - "While constructing the external wrapper for:" - ], - "start_col": 45, - "start_line": 1 - }, - "While expanding the reference 'pedersen_ptr' in:" - ], - "start_col": 23, - "start_line": 217 - }, - "While constructing the external wrapper for:" - ], - "start_col": 20, - "start_line": 1 - } - }, - "4268": { - "accessible_scopes": [ - "__main__", - "__main__", - "__wrappers__", - "__wrappers__.mintAndSetPublic" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 64, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/external/mintAndSetPublic/b2c52ca2d2a8fc8791a983086d8716c5eacd0c3d62934914d2286f84b98ff4cb.cairo" - }, - "parent_location": [ - { - "end_col": 69, - "end_line": 217, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "parent_location": [ - { - "end_col": 82, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/external/mintAndSetPublic/8d28e230e489bc8d7b9f205ad15790d268dd96b367ed23a515f6d462c885a511.cairo" - }, - "parent_location": [ - { - "end_col": 22, - "end_line": 217, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "start_col": 6, - "start_line": 217 - }, - "While constructing the external wrapper for:" - ], - "start_col": 71, - "start_line": 1 - }, - "While expanding the reference 'syscall_ptr' in:" - ], - "start_col": 51, - "start_line": 217 - }, - "While constructing the external wrapper for:" - ], - "start_col": 19, - "start_line": 1 - } - }, - "4269": { - "accessible_scopes": [ - "__main__", - "__main__", - "__wrappers__", - "__wrappers__.mintAndSetPublic" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 42, - "end_line": 3, - "input_file": { - "filename": "autogen/starknet/arg_processor/7e8d4187d234f1ad9572c7c76c7fcab338d2159e013bdd9bfc0f771a29c04f92.cairo" - }, - "parent_location": [ - { - "end_col": 24, - "end_line": 224, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "parent_location": [ - { - "end_col": 115, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/external/mintAndSetPublic/8d28e230e489bc8d7b9f205ad15790d268dd96b367ed23a515f6d462c885a511.cairo" - }, - "parent_location": [ - { - "end_col": 22, - "end_line": 217, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "start_col": 6, - "start_line": 217 - }, - "While constructing the external wrapper for:" - ], - "start_col": 100, - "start_line": 1 - }, - "While expanding the reference 'range_check_ptr' in:" - ], - "start_col": 5, - "start_line": 224 - }, - "While handling calldata argument 'cellCalldata'" - ], - "start_col": 23, - "start_line": 3 - } - }, - "4271": { - "accessible_scopes": [ - "__main__", - "__main__", - "__wrappers__", - "__wrappers__.mintAndSetPublic" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 67, - "end_line": 2, - "input_file": { - "filename": "autogen/starknet/arg_processor/60c79ef5477686f2843e61432dcde7f4fc0f354d42095115ea9dca625a35df6e.cairo" - }, - "parent_location": [ - { - "end_col": 21, - "end_line": 218, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "parent_location": [ - { - "end_col": 147, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/external/mintAndSetPublic/8d28e230e489bc8d7b9f205ad15790d268dd96b367ed23a515f6d462c885a511.cairo" - }, - "parent_location": [ - { - "end_col": 22, - "end_line": 217, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "start_col": 6, - "start_line": 217 - }, - "While constructing the external wrapper for:" - ], - "start_col": 125, - "start_line": 1 - }, - "While expanding the reference '__calldata_arg_tokenId' in:" - ], - "start_col": 5, - "start_line": 218 - }, - "While handling calldata argument 'tokenId'" - ], - "start_col": 30, - "start_line": 1 - } - }, - "4272": { - "accessible_scopes": [ - "__main__", - "__main__", - "__wrappers__", - "__wrappers__.mintAndSetPublic" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 67, - "end_line": 2, - "input_file": { - "filename": "autogen/starknet/arg_processor/60c79ef5477686f2843e61432dcde7f4fc0f354d42095115ea9dca625a35df6e.cairo" - }, - "parent_location": [ - { - "end_col": 21, - "end_line": 218, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "parent_location": [ - { - "end_col": 147, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/external/mintAndSetPublic/8d28e230e489bc8d7b9f205ad15790d268dd96b367ed23a515f6d462c885a511.cairo" - }, - "parent_location": [ - { - "end_col": 22, - "end_line": 217, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "start_col": 6, - "start_line": 217 - }, - "While constructing the external wrapper for:" - ], - "start_col": 125, - "start_line": 1 - }, - "While expanding the reference '__calldata_arg_tokenId' in:" - ], - "start_col": 5, - "start_line": 218 - }, - "While handling calldata argument 'tokenId'" - ], - "start_col": 30, - "start_line": 1 - } - }, - "4273": { - "accessible_scopes": [ - "__main__", - "__main__", - "__wrappers__", - "__wrappers__.mintAndSetPublic" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 48, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/arg_processor/991f62016c321db1ce050da1566d298118c65229306c26d6cd25e91286a63d4b.cairo" - }, - "parent_location": [ - { - "end_col": 20, - "end_line": 219, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "parent_location": [ - { - "end_col": 183, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/external/mintAndSetPublic/8d28e230e489bc8d7b9f205ad15790d268dd96b367ed23a515f6d462c885a511.cairo" - }, - "parent_location": [ - { - "end_col": 22, - "end_line": 217, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "start_col": 6, - "start_line": 217 - }, - "While constructing the external wrapper for:" - ], - "start_col": 159, - "start_line": 1 - }, - "While expanding the reference '__calldata_arg_proof_len' in:" - ], - "start_col": 5, - "start_line": 219 - }, - "While handling calldata argument 'proof_len'" - ], - "start_col": 32, - "start_line": 1 - } - }, - "4274": { - "accessible_scopes": [ - "__main__", - "__main__", - "__wrappers__", - "__wrappers__.mintAndSetPublic" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 55, - "end_line": 5, - "input_file": { - "filename": "autogen/starknet/arg_processor/c8edcb1cbb2b70f99346c0510efba5a82524d6fbe8558629ad05a45a84efd25b.cairo" - }, - "parent_location": [ - { - "end_col": 17, - "end_line": 220, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "parent_location": [ - { - "end_col": 211, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/external/mintAndSetPublic/8d28e230e489bc8d7b9f205ad15790d268dd96b367ed23a515f6d462c885a511.cairo" - }, - "parent_location": [ - { - "end_col": 22, - "end_line": 217, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "start_col": 6, - "start_line": 217 - }, - "While constructing the external wrapper for:" - ], - "start_col": 191, - "start_line": 1 - }, - "While expanding the reference '__calldata_arg_proof' in:" - ], - "start_col": 5, - "start_line": 220 - }, - "While handling calldata argument 'proof'" - ], - "start_col": 28, - "start_line": 5 - } - }, - "4276": { - "accessible_scopes": [ - "__main__", - "__main__", - "__wrappers__", - "__wrappers__.mintAndSetPublic" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 54, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/arg_processor/138fbb2581468edec2beca8ce38fccac384aeb4b51fe6af3126d17a00f09f61e.cairo" - }, - "parent_location": [ - { - "end_col": 26, - "end_line": 221, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "parent_location": [ - { - "end_col": 259, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/external/mintAndSetPublic/8d28e230e489bc8d7b9f205ad15790d268dd96b367ed23a515f6d462c885a511.cairo" - }, - "parent_location": [ - { - "end_col": 22, - "end_line": 217, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "start_col": 6, - "start_line": 217 - }, - "While constructing the external wrapper for:" - ], - "start_col": 229, - "start_line": 1 - }, - "While expanding the reference '__calldata_arg_contractAddress' in:" - ], - "start_col": 5, - "start_line": 221 - }, - "While handling calldata argument 'contractAddress'" - ], - "start_col": 38, - "start_line": 1 - } - }, - "4277": { - "accessible_scopes": [ - "__main__", - "__main__", - "__wrappers__", - "__wrappers__.mintAndSetPublic" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 44, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/arg_processor/3e93b8906c329e7a5c33e020ce7a5a9c542c4444955be98eec5fcbef545a8662.cairo" - }, - "parent_location": [ - { - "end_col": 16, - "end_line": 222, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "parent_location": [ - { - "end_col": 287, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/external/mintAndSetPublic/8d28e230e489bc8d7b9f205ad15790d268dd96b367ed23a515f6d462c885a511.cairo" - }, - "parent_location": [ - { - "end_col": 22, - "end_line": 217, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "start_col": 6, - "start_line": 217 - }, - "While constructing the external wrapper for:" - ], - "start_col": 267, - "start_line": 1 - }, - "While expanding the reference '__calldata_arg_value' in:" - ], - "start_col": 5, - "start_line": 222 - }, - "While handling calldata argument 'value'" - ], - "start_col": 28, - "start_line": 1 - } - }, - "4278": { - "accessible_scopes": [ - "__main__", - "__main__", - "__wrappers__", - "__wrappers__.mintAndSetPublic" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 55, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/arg_processor/7e872b5a76cfa33336e13e83d342763f36bad8be8a18be69e78776b449847f1a.cairo" - }, - "parent_location": [ - { - "end_col": 27, - "end_line": 223, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "parent_location": [ - { - "end_col": 337, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/external/mintAndSetPublic/8d28e230e489bc8d7b9f205ad15790d268dd96b367ed23a515f6d462c885a511.cairo" - }, - "parent_location": [ - { - "end_col": 22, - "end_line": 217, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "start_col": 6, - "start_line": 217 - }, - "While constructing the external wrapper for:" - ], - "start_col": 306, - "start_line": 1 - }, - "While expanding the reference '__calldata_arg_cellCalldata_len' in:" - ], - "start_col": 5, - "start_line": 223 - }, - "While handling calldata argument 'cellCalldata_len'" - ], - "start_col": 39, - "start_line": 1 - } - }, - "4279": { - "accessible_scopes": [ - "__main__", - "__main__", - "__wrappers__", - "__wrappers__.mintAndSetPublic" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 62, - "end_line": 5, - "input_file": { - "filename": "autogen/starknet/arg_processor/7e8d4187d234f1ad9572c7c76c7fcab338d2159e013bdd9bfc0f771a29c04f92.cairo" - }, - "parent_location": [ - { - "end_col": 24, - "end_line": 224, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "parent_location": [ - { - "end_col": 379, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/external/mintAndSetPublic/8d28e230e489bc8d7b9f205ad15790d268dd96b367ed23a515f6d462c885a511.cairo" - }, - "parent_location": [ - { - "end_col": 22, - "end_line": 217, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "start_col": 6, - "start_line": 217 - }, - "While constructing the external wrapper for:" - ], - "start_col": 352, - "start_line": 1 - }, - "While expanding the reference '__calldata_arg_cellCalldata' in:" - ], - "start_col": 5, - "start_line": 224 - }, - "While handling calldata argument 'cellCalldata'" - ], - "start_col": 35, - "start_line": 5 - } - }, - "4281": { - "accessible_scopes": [ - "__main__", - "__main__", - "__wrappers__", - "__wrappers__.mintAndSetPublic" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 22, - "end_line": 217, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "start_col": 6, - "start_line": 217 - } - }, - "4283": { - "accessible_scopes": [ - "__main__", - "__main__", - "__wrappers__", - "__wrappers__.mintAndSetPublic" - ], - "flow_tracking_data": null, - "hints": [ - { - "location": { - "end_col": 34, - "end_line": 2, - "input_file": { - "filename": "autogen/starknet/external/mintAndSetPublic/8d28e230e489bc8d7b9f205ad15790d268dd96b367ed23a515f6d462c885a511.cairo" - }, - "parent_location": [ - { - "end_col": 22, - "end_line": 217, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "start_col": 6, - "start_line": 217 - }, - "While constructing the external wrapper for:" - ], - "start_col": 1, - "start_line": 2 - }, - "n_prefix_newlines": 0 - } - ], - "inst": { - "end_col": 24, - "end_line": 3, - "input_file": { - "filename": "autogen/starknet/external/mintAndSetPublic/8d28e230e489bc8d7b9f205ad15790d268dd96b367ed23a515f6d462c885a511.cairo" - }, - "parent_location": [ - { - "end_col": 22, - "end_line": 217, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "start_col": 6, - "start_line": 217 - }, - "While constructing the external wrapper for:" - ], - "start_col": 1, - "start_line": 3 - } - }, - "4285": { - "accessible_scopes": [ - "__main__", - "__main__", - "__wrappers__", - "__wrappers__.mintAndSetPublic" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 82, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/external/mintAndSetPublic/8d28e230e489bc8d7b9f205ad15790d268dd96b367ed23a515f6d462c885a511.cairo" - }, - "parent_location": [ - { - "end_col": 22, - "end_line": 217, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "parent_location": [ - { - "end_col": 20, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/external/mintAndSetPublic/da17921a4e81c09e730800bbf23bfdbe5e9e6bfaedc59d80fbf62087fa43c27d.cairo" - }, - "parent_location": [ - { - "end_col": 22, - "end_line": 217, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "start_col": 6, - "start_line": 217 - }, - "While constructing the external wrapper for:" - ], - "start_col": 9, - "start_line": 1 - }, - "While expanding the reference 'syscall_ptr' in:" - ], - "start_col": 6, - "start_line": 217 - }, - "While constructing the external wrapper for:" - ], - "start_col": 71, - "start_line": 1 - } - }, - "4286": { - "accessible_scopes": [ - "__main__", - "__main__", - "__wrappers__", - "__wrappers__.mintAndSetPublic" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 57, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/external/mintAndSetPublic/8d28e230e489bc8d7b9f205ad15790d268dd96b367ed23a515f6d462c885a511.cairo" - }, - "parent_location": [ - { - "end_col": 22, - "end_line": 217, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "parent_location": [ - { - "end_col": 33, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/external/mintAndSetPublic/da17921a4e81c09e730800bbf23bfdbe5e9e6bfaedc59d80fbf62087fa43c27d.cairo" - }, - "parent_location": [ - { - "end_col": 22, - "end_line": 217, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "start_col": 6, - "start_line": 217 - }, - "While constructing the external wrapper for:" - ], - "start_col": 21, - "start_line": 1 - }, - "While expanding the reference 'pedersen_ptr' in:" - ], - "start_col": 6, - "start_line": 217 - }, - "While constructing the external wrapper for:" - ], - "start_col": 45, - "start_line": 1 - } - }, - "4287": { - "accessible_scopes": [ - "__main__", - "__main__", - "__wrappers__", - "__wrappers__.mintAndSetPublic" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 115, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/external/mintAndSetPublic/8d28e230e489bc8d7b9f205ad15790d268dd96b367ed23a515f6d462c885a511.cairo" - }, - "parent_location": [ - { - "end_col": 22, - "end_line": 217, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "parent_location": [ - { - "end_col": 49, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/external/mintAndSetPublic/da17921a4e81c09e730800bbf23bfdbe5e9e6bfaedc59d80fbf62087fa43c27d.cairo" - }, - "parent_location": [ - { - "end_col": 22, - "end_line": 217, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "start_col": 6, - "start_line": 217 - }, - "While constructing the external wrapper for:" - ], - "start_col": 34, - "start_line": 1 - }, - "While expanding the reference 'range_check_ptr' in:" - ], - "start_col": 6, - "start_line": 217 - }, - "While constructing the external wrapper for:" - ], - "start_col": 100, - "start_line": 1 - } - }, - "4288": { - "accessible_scopes": [ - "__main__", - "__main__", - "__wrappers__", - "__wrappers__.mintAndSetPublic" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 21, - "end_line": 4, - "input_file": { - "filename": "autogen/starknet/external/mintAndSetPublic/8d28e230e489bc8d7b9f205ad15790d268dd96b367ed23a515f6d462c885a511.cairo" - }, - "parent_location": [ - { - "end_col": 22, - "end_line": 217, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "parent_location": [ - { - "end_col": 62, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/external/mintAndSetPublic/da17921a4e81c09e730800bbf23bfdbe5e9e6bfaedc59d80fbf62087fa43c27d.cairo" - }, - "parent_location": [ - { - "end_col": 22, - "end_line": 217, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "start_col": 6, - "start_line": 217 - }, - "While constructing the external wrapper for:" - ], - "start_col": 50, - "start_line": 1 - }, - "While expanding the reference 'retdata_size' in:" - ], - "start_col": 6, - "start_line": 217 - }, - "While constructing the external wrapper for:" - ], - "start_col": 20, - "start_line": 4 - } - }, - "4290": { - "accessible_scopes": [ - "__main__", - "__main__", - "__wrappers__", - "__wrappers__.mintAndSetPublic" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 16, - "end_line": 3, - "input_file": { - "filename": "autogen/starknet/external/mintAndSetPublic/8d28e230e489bc8d7b9f205ad15790d268dd96b367ed23a515f6d462c885a511.cairo" - }, - "parent_location": [ - { - "end_col": 22, - "end_line": 217, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "parent_location": [ - { - "end_col": 70, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/external/mintAndSetPublic/da17921a4e81c09e730800bbf23bfdbe5e9e6bfaedc59d80fbf62087fa43c27d.cairo" - }, - "parent_location": [ - { - "end_col": 22, - "end_line": 217, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "start_col": 6, - "start_line": 217 - }, - "While constructing the external wrapper for:" - ], - "start_col": 63, - "start_line": 1 - }, - "While expanding the reference 'retdata' in:" - ], - "start_col": 6, - "start_line": 217 - }, - "While constructing the external wrapper for:" - ], - "start_col": 9, - "start_line": 3 - } - }, - "4291": { - "accessible_scopes": [ - "__main__", - "__main__", - "__wrappers__", - "__wrappers__.mintAndSetPublic" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 72, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/external/mintAndSetPublic/da17921a4e81c09e730800bbf23bfdbe5e9e6bfaedc59d80fbf62087fa43c27d.cairo" - }, - "parent_location": [ - { - "end_col": 22, - "end_line": 217, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "start_col": 6, - "start_line": 217 - }, - "While constructing the external wrapper for:" - ], - "start_col": 1, - "start_line": 1 - } - }, - "4292": { - "accessible_scopes": [ - "__main__", - "__main__", - "__main__.tokenURI" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 61, - "end_line": 244, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "parent_location": [ - { - "end_col": 46, - "end_line": 179, - "input_file": { - "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" - }, - "parent_location": [ - { - "end_col": 62, - "end_line": 247, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "start_col": 38, - "start_line": 247 - }, - "While trying to retrieve the implicit argument 'pedersen_ptr' in:" - ], - "start_col": 20, - "start_line": 179 - }, - "While expanding the reference 'pedersen_ptr' in:" - ], - "start_col": 35, - "start_line": 244 - } - }, - "4293": { - "accessible_scopes": [ - "__main__", - "__main__", - "__main__.tokenURI" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 33, - "end_line": 244, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "parent_location": [ - { - "end_col": 66, - "end_line": 179, - "input_file": { - "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" - }, - "parent_location": [ - { - "end_col": 62, - "end_line": 247, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "start_col": 38, - "start_line": 247 - }, - "While trying to retrieve the implicit argument 'syscall_ptr' in:" - ], - "start_col": 48, - "start_line": 179 - }, - "While expanding the reference 'syscall_ptr' in:" - ], - "start_col": 15, - "start_line": 244 - } - }, - "4294": { - "accessible_scopes": [ - "__main__", - "__main__", - "__main__.tokenURI" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 78, - "end_line": 244, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "parent_location": [ - { - "end_col": 83, - "end_line": 179, - "input_file": { - "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" - }, - "parent_location": [ - { - "end_col": 62, - "end_line": 247, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "start_col": 38, - "start_line": 247 - }, - "While trying to retrieve the implicit argument 'range_check_ptr' in:" - ], - "start_col": 68, - "start_line": 179 - }, - "While expanding the reference 'range_check_ptr' in:" - ], - "start_col": 63, - "start_line": 244 - } - }, - "4295": { - "accessible_scopes": [ - "__main__", - "__main__", - "__main__.tokenURI" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 21, - "end_line": 245, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "parent_location": [ - { - "end_col": 61, - "end_line": 247, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "start_col": 54, - "start_line": 247 - }, - "While expanding the reference 'tokenId' in:" - ], - "start_col": 5, - "start_line": 245 - } - }, - "4296": { - "accessible_scopes": [ - "__main__", - "__main__", - "__main__.tokenURI" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 21, - "end_line": 245, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "parent_location": [ - { - "end_col": 61, - "end_line": 247, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "start_col": 54, - "start_line": 247 - }, - "While expanding the reference 'tokenId' in:" - ], - "start_col": 5, - "start_line": 245 - } - }, - "4297": { - "accessible_scopes": [ - "__main__", - "__main__", - "__main__.tokenURI" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 62, - "end_line": 247, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "start_col": 38, - "start_line": 247 - } - }, - "4299": { - "accessible_scopes": [ - "__main__", - "__main__", - "__main__.tokenURI" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 66, - "end_line": 179, - "input_file": { - "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" - }, - "parent_location": [ - { - "end_col": 62, - "end_line": 247, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "parent_location": [ - { - "end_col": 33, - "end_line": 244, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "parent_location": [ - { - "end_col": 39, - "end_line": 248, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "start_col": 5, - "start_line": 248 - }, - "While trying to retrieve the implicit argument 'syscall_ptr' in:" - ], - "start_col": 15, - "start_line": 244 - }, - "While expanding the reference 'syscall_ptr' in:" - ], - "start_col": 38, - "start_line": 247 - }, - "While trying to update the implicit return value 'syscall_ptr' in:" - ], - "start_col": 48, - "start_line": 179 - } - }, - "4300": { - "accessible_scopes": [ - "__main__", - "__main__", - "__main__.tokenURI" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 46, - "end_line": 179, - "input_file": { - "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" - }, - "parent_location": [ - { - "end_col": 62, - "end_line": 247, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "parent_location": [ - { - "end_col": 61, - "end_line": 244, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "parent_location": [ - { - "end_col": 39, - "end_line": 248, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "start_col": 5, - "start_line": 248 - }, - "While trying to retrieve the implicit argument 'pedersen_ptr' in:" - ], - "start_col": 35, - "start_line": 244 - }, - "While expanding the reference 'pedersen_ptr' in:" - ], - "start_col": 38, - "start_line": 247 - }, - "While trying to update the implicit return value 'pedersen_ptr' in:" - ], - "start_col": 20, - "start_line": 179 - } - }, - "4301": { - "accessible_scopes": [ - "__main__", - "__main__", - "__main__.tokenURI" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 83, - "end_line": 179, - "input_file": { - "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" - }, - "parent_location": [ - { - "end_col": 62, - "end_line": 247, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "parent_location": [ - { - "end_col": 78, - "end_line": 244, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "parent_location": [ - { - "end_col": 39, - "end_line": 248, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "start_col": 5, - "start_line": 248 - }, - "While trying to retrieve the implicit argument 'range_check_ptr' in:" - ], - "start_col": 63, - "start_line": 244 - }, - "While expanding the reference 'range_check_ptr' in:" - ], - "start_col": 38, - "start_line": 247 - }, - "While trying to update the implicit return value 'range_check_ptr' in:" - ], - "start_col": 68, - "start_line": 179 - } - }, - "4302": { - "accessible_scopes": [ - "__main__", - "__main__", - "__main__.tokenURI" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 23, - "end_line": 247, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "parent_location": [ - { - "end_col": 26, - "end_line": 248, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "start_col": 13, - "start_line": 248 - }, - "While expanding the reference 'token_uri_len' in:" - ], - "start_col": 10, - "start_line": 247 - } - }, - "4303": { - "accessible_scopes": [ - "__main__", - "__main__", - "__main__.tokenURI" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 34, - "end_line": 247, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "parent_location": [ - { - "end_col": 37, - "end_line": 248, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "start_col": 28, - "start_line": 248 - }, - "While expanding the reference 'token_uri' in:" - ], - "start_col": 25, - "start_line": 247 - } - }, - "4304": { - "accessible_scopes": [ - "__main__", - "__main__", - "__main__.tokenURI" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 39, - "end_line": 248, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "start_col": 5, - "start_line": 248 - } - }, - "4305": { - "accessible_scopes": [ - "__main__", - "__main__", - "__wrappers__", - "__wrappers__.tokenURI_encode_return" - ], - "flow_tracking_data": null, - "hints": [ - { - "location": { - "end_col": 38, - "end_line": 3, - "input_file": { - "filename": "autogen/starknet/external/return/tokenURI/fb2afe9383e6d6e4c510e54ea324f398df586428973a4c0745d97d759227d96c.cairo" - }, - "parent_location": [ - { - "end_col": 14, - "end_line": 244, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "start_col": 6, - "start_line": 244 - }, - "While handling return value of" - ], - "start_col": 5, - "start_line": 3 - }, - "n_prefix_newlines": 0 - } - ], - "inst": { - "end_col": 18, - "end_line": 4, - "input_file": { - "filename": "autogen/starknet/external/return/tokenURI/fb2afe9383e6d6e4c510e54ea324f398df586428973a4c0745d97d759227d96c.cairo" - }, - "parent_location": [ - { - "end_col": 14, - "end_line": 244, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "start_col": 6, - "start_line": 244 - }, - "While handling return value of" - ], - "start_col": 5, - "start_line": 4 - } - }, - "4307": { - "accessible_scopes": [ - "__main__", - "__main__", - "__wrappers__", - "__wrappers__.tokenURI_encode_return" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 55, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/arg_processor/5462c9ea522f66a6a8b3de2f37f244c7074893fe5c8d0b413046098a1ccfc2ce.cairo" - }, - "parent_location": [ - { - "end_col": 26, - "end_line": 246, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "start_col": 7, - "start_line": 246 - }, - "While handling return value 'token_uri_len'" - ], - "start_col": 1, - "start_line": 1 - } - }, - "4308": { - "accessible_scopes": [ - "__main__", - "__main__", - "__wrappers__", - "__wrappers__.tokenURI_encode_return" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 52, - "end_line": 2, - "input_file": { - "filename": "autogen/starknet/arg_processor/8d1ba44ec0b1d27c24688348db19d49f555faaa5454ce90a4e7ba33d6a63afea.cairo" - }, - "parent_location": [ - { - "end_col": 44, - "end_line": 246, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "start_col": 28, - "start_line": 246 - }, - "While handling return value 'token_uri'" - ], - "start_col": 1, - "start_line": 2 - } - }, - "4309": { - "accessible_scopes": [ - "__main__", - "__main__", - "__wrappers__", - "__wrappers__.tokenURI_encode_return" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 45, - "end_line": 5, - "input_file": { - "filename": "autogen/starknet/arg_processor/8d1ba44ec0b1d27c24688348db19d49f555faaa5454ce90a4e7ba33d6a63afea.cairo" - }, - "parent_location": [ - { - "end_col": 44, - "end_line": 246, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "start_col": 28, - "start_line": 246 - }, - "While handling return value 'token_uri'" - ], - "start_col": 1, - "start_line": 5 - } - }, - "4311": { - "accessible_scopes": [ - "__main__", - "__main__", - "__wrappers__", - "__wrappers__.tokenURI_encode_return" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 48, - "end_line": 2, - "input_file": { - "filename": "autogen/starknet/arg_processor/5462c9ea522f66a6a8b3de2f37f244c7074893fe5c8d0b413046098a1ccfc2ce.cairo" - }, - "parent_location": [ - { - "end_col": 26, - "end_line": 246, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "parent_location": [ - { - "end_col": 53, - "end_line": 10, - "input_file": { - "filename": "autogen/starknet/arg_processor/8d1ba44ec0b1d27c24688348db19d49f555faaa5454ce90a4e7ba33d6a63afea.cairo" - }, - "parent_location": [ - { - "end_col": 44, - "end_line": 246, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "start_col": 28, - "start_line": 246 - }, - "While handling return value 'token_uri'" - ], - "start_col": 35, - "start_line": 10 - }, - "While expanding the reference '__return_value_ptr' in:" - ], - "start_col": 7, - "start_line": 246 - }, - "While handling return value 'token_uri_len'" - ], - "start_col": 26, - "start_line": 2 - } - }, - "4313": { - "accessible_scopes": [ - "__main__", - "__main__", - "__wrappers__", - "__wrappers__.tokenURI_encode_return" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 84, - "end_line": 10, - "input_file": { - "filename": "autogen/starknet/arg_processor/8d1ba44ec0b1d27c24688348db19d49f555faaa5454ce90a4e7ba33d6a63afea.cairo" - }, - "parent_location": [ - { - "end_col": 44, - "end_line": 246, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "start_col": 28, - "start_line": 246 - }, - "While handling return value 'token_uri'" - ], - "start_col": 1, - "start_line": 10 - } - }, - "4314": { - "accessible_scopes": [ - "__main__", - "__main__", - "__wrappers__", - "__wrappers__.tokenURI_encode_return" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 48, - "end_line": 2, - "input_file": { - "filename": "autogen/starknet/arg_processor/5462c9ea522f66a6a8b3de2f37f244c7074893fe5c8d0b413046098a1ccfc2ce.cairo" - }, - "parent_location": [ - { - "end_col": 26, - "end_line": 246, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "parent_location": [ - { - "end_col": 49, - "end_line": 7, - "input_file": { - "filename": "autogen/starknet/arg_processor/8d1ba44ec0b1d27c24688348db19d49f555faaa5454ce90a4e7ba33d6a63afea.cairo" - }, - "parent_location": [ - { - "end_col": 44, - "end_line": 246, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "parent_location": [ - { - "end_col": 32, - "end_line": 12, - "input_file": { - "filename": "autogen/starknet/arg_processor/8d1ba44ec0b1d27c24688348db19d49f555faaa5454ce90a4e7ba33d6a63afea.cairo" - }, - "parent_location": [ - { - "end_col": 44, - "end_line": 246, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "start_col": 28, - "start_line": 246 - }, - "While handling return value 'token_uri'" - ], - "start_col": 9, - "start_line": 12 - }, - "While expanding the reference '__return_value_ptr_copy' in:" - ], - "start_col": 28, - "start_line": 246 - }, - "While handling return value 'token_uri'" - ], - "start_col": 31, - "start_line": 7 - }, - "While expanding the reference '__return_value_ptr' in:" - ], - "start_col": 7, - "start_line": 246 - }, - "While handling return value 'token_uri_len'" - ], - "start_col": 26, - "start_line": 2 - } - }, - "4316": { - "accessible_scopes": [ - "__main__", - "__main__", - "__wrappers__", - "__wrappers__.tokenURI_encode_return" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 28, - "end_line": 13, - "input_file": { - "filename": "autogen/starknet/arg_processor/8d1ba44ec0b1d27c24688348db19d49f555faaa5454ce90a4e7ba33d6a63afea.cairo" - }, - "parent_location": [ - { - "end_col": 44, - "end_line": 246, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "start_col": 28, - "start_line": 246 - }, - "While handling return value 'token_uri'" - ], - "start_col": 9, - "start_line": 13 - } - }, - "4317": { - "accessible_scopes": [ - "__main__", - "__main__", - "__wrappers__", - "__wrappers__.tokenURI_encode_return" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 32, - "end_line": 14, - "input_file": { - "filename": "autogen/starknet/arg_processor/8d1ba44ec0b1d27c24688348db19d49f555faaa5454ce90a4e7ba33d6a63afea.cairo" - }, - "parent_location": [ - { - "end_col": 44, - "end_line": 246, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "start_col": 28, - "start_line": 246 - }, - "While handling return value 'token_uri'" - ], - "start_col": 9, - "start_line": 14 - } - }, - "4318": { - "accessible_scopes": [ - "__main__", - "__main__", - "__wrappers__", - "__wrappers__.tokenURI_encode_return" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 37, - "end_line": 14, - "input_file": { - "filename": "autogen/starknet/arg_processor/8d1ba44ec0b1d27c24688348db19d49f555faaa5454ce90a4e7ba33d6a63afea.cairo" - }, - "parent_location": [ - { - "end_col": 44, - "end_line": 246, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "start_col": 28, - "start_line": 246 - }, - "While handling return value 'token_uri'" - ], - "start_col": 1, - "start_line": 11 - } - }, - "4320": { - "accessible_scopes": [ - "__main__", - "__main__", - "__wrappers__", - "__wrappers__.tokenURI_encode_return" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 22, - "end_line": 5, - "input_file": { - "filename": "autogen/starknet/arg_processor/8d1ba44ec0b1d27c24688348db19d49f555faaa5454ce90a4e7ba33d6a63afea.cairo" - }, - "parent_location": [ - { - "end_col": 44, - "end_line": 246, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "parent_location": [ - { - "end_col": 40, - "end_line": 10, - "input_file": { - "filename": "autogen/starknet/external/return/tokenURI/fb2afe9383e6d6e4c510e54ea324f398df586428973a4c0745d97d759227d96c.cairo" - }, - "parent_location": [ - { - "end_col": 14, - "end_line": 244, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "start_col": 6, - "start_line": 244 - }, - "While handling return value of" - ], - "start_col": 25, - "start_line": 10 - }, - "While expanding the reference 'range_check_ptr' in:" - ], - "start_col": 28, - "start_line": 246 - }, - "While handling return value 'token_uri'" - ], - "start_col": 7, - "start_line": 5 - } - }, - "4321": { - "accessible_scopes": [ - "__main__", - "__main__", - "__wrappers__", - "__wrappers__.tokenURI_encode_return" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 63, - "end_line": 11, - "input_file": { - "filename": "autogen/starknet/external/return/tokenURI/fb2afe9383e6d6e4c510e54ea324f398df586428973a4c0745d97d759227d96c.cairo" - }, - "parent_location": [ - { - "end_col": 14, - "end_line": 244, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "start_col": 6, - "start_line": 244 - }, - "While handling return value of" - ], - "start_col": 18, - "start_line": 11 - } - }, - "4322": { - "accessible_scopes": [ - "__main__", - "__main__", - "__wrappers__", - "__wrappers__.tokenURI_encode_return" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 35, - "end_line": 5, - "input_file": { - "filename": "autogen/starknet/external/return/tokenURI/fb2afe9383e6d6e4c510e54ea324f398df586428973a4c0745d97d759227d96c.cairo" - }, - "parent_location": [ - { - "end_col": 14, - "end_line": 244, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "parent_location": [ - { - "end_col": 38, - "end_line": 12, - "input_file": { - "filename": "autogen/starknet/external/return/tokenURI/fb2afe9383e6d6e4c510e54ea324f398df586428973a4c0745d97d759227d96c.cairo" - }, - "parent_location": [ - { - "end_col": 14, - "end_line": 244, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "start_col": 6, - "start_line": 244 - }, - "While handling return value of" - ], - "start_col": 14, - "start_line": 12 - }, - "While expanding the reference '__return_value_ptr_start' in:" - ], - "start_col": 6, - "start_line": 244 - }, - "While handling return value of" - ], - "start_col": 11, - "start_line": 5 - } - }, - "4323": { - "accessible_scopes": [ - "__main__", - "__main__", - "__wrappers__", - "__wrappers__.tokenURI_encode_return" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 40, - "end_line": 12, - "input_file": { - "filename": "autogen/starknet/external/return/tokenURI/fb2afe9383e6d6e4c510e54ea324f398df586428973a4c0745d97d759227d96c.cairo" - }, - "parent_location": [ - { - "end_col": 14, - "end_line": 244, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "start_col": 6, - "start_line": 244 - }, - "While handling return value of" - ], - "start_col": 5, - "start_line": 9 - } - }, - "4324": { - "accessible_scopes": [ - "__main__", - "__main__", - "__wrappers__", - "__wrappers__.tokenURI" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 18, - "end_line": 2, - "input_file": { - "filename": "autogen/starknet/external/tokenURI/86cf3ce3e78b1f08bd517752a6b6deed16efd89e5728b638ff9485a43d30a598.cairo" - }, - "parent_location": [ - { - "end_col": 14, - "end_line": 244, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "start_col": 6, - "start_line": 244 - }, - "While constructing the external wrapper for:" - ], - "start_col": 5, - "start_line": 2 - } - }, - "4326": { - "accessible_scopes": [ - "__main__", - "__main__", - "__wrappers__", - "__wrappers__.tokenURI" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 40, - "end_line": 3, - "input_file": { - "filename": "autogen/starknet/arg_processor/60c79ef5477686f2843e61432dcde7f4fc0f354d42095115ea9dca625a35df6e.cairo" - }, - "parent_location": [ - { - "end_col": 21, - "end_line": 245, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "parent_location": [ - { - "end_col": 45, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/arg_processor/c31620b02d4d706f0542c989b2aadc01b0981d1f6a5933a8fe4937ace3d70d92.cairo" - }, - "parent_location": [ - { - "end_col": 14, - "end_line": 244, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "parent_location": [ - { - "end_col": 57, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/arg_processor/01cba52f8515996bb9d7070bde81ff39281d096d7024a558efcba6e1fd2402cf.cairo" - }, - "parent_location": [ - { - "end_col": 14, - "end_line": 244, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "start_col": 6, - "start_line": 244 - }, - "While handling calldata of" - ], - "start_col": 35, - "start_line": 1 - }, - "While expanding the reference '__calldata_actual_size' in:" - ], - "start_col": 6, - "start_line": 244 - }, - "While handling calldata of" - ], - "start_col": 31, - "start_line": 1 - }, - "While expanding the reference '__calldata_ptr' in:" - ], - "start_col": 5, - "start_line": 245 - }, - "While handling calldata argument 'tokenId'" - ], - "start_col": 22, - "start_line": 3 - } - }, - "4328": { - "accessible_scopes": [ - "__main__", - "__main__", - "__wrappers__", - "__wrappers__.tokenURI" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 58, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/arg_processor/01cba52f8515996bb9d7070bde81ff39281d096d7024a558efcba6e1fd2402cf.cairo" - }, - "parent_location": [ - { - "end_col": 14, - "end_line": 244, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "start_col": 6, - "start_line": 244 - }, - "While handling calldata of" - ], - "start_col": 1, - "start_line": 1 - } - }, - "4329": { - "accessible_scopes": [ - "__main__", - "__main__", - "__wrappers__", - "__wrappers__.tokenURI" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 64, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/external/tokenURI/b2c52ca2d2a8fc8791a983086d8716c5eacd0c3d62934914d2286f84b98ff4cb.cairo" - }, - "parent_location": [ - { - "end_col": 33, - "end_line": 244, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "parent_location": [ - { - "end_col": 55, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/external/tokenURI/42e9e406a0e7dbd46b7b1448ce8da1ca2e3fdc14d84af0c1d0d4fdb56a52a5f4.cairo" - }, - "parent_location": [ - { - "end_col": 14, - "end_line": 244, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "start_col": 6, - "start_line": 244 - }, - "While constructing the external wrapper for:" - ], - "start_col": 44, - "start_line": 1 - }, - "While expanding the reference 'syscall_ptr' in:" - ], - "start_col": 15, - "start_line": 244 - }, - "While constructing the external wrapper for:" - ], - "start_col": 19, - "start_line": 1 - } - }, - "4330": { - "accessible_scopes": [ - "__main__", - "__main__", - "__wrappers__", - "__wrappers__.tokenURI" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 110, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/external/tokenURI/9684a85e93c782014ca14293edea4eb2502039a5a7b6538ecd39c56faaf12529.cairo" - }, - "parent_location": [ - { - "end_col": 61, - "end_line": 244, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "parent_location": [ - { - "end_col": 82, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/external/tokenURI/42e9e406a0e7dbd46b7b1448ce8da1ca2e3fdc14d84af0c1d0d4fdb56a52a5f4.cairo" - }, - "parent_location": [ - { - "end_col": 14, - "end_line": 244, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "start_col": 6, - "start_line": 244 - }, - "While constructing the external wrapper for:" - ], - "start_col": 70, - "start_line": 1 - }, - "While expanding the reference 'pedersen_ptr' in:" - ], - "start_col": 35, - "start_line": 244 - }, - "While constructing the external wrapper for:" - ], - "start_col": 20, - "start_line": 1 - } - }, - "4331": { - "accessible_scopes": [ - "__main__", - "__main__", - "__wrappers__", - "__wrappers__.tokenURI" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 67, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/external/tokenURI/741ea357d6336b0bed7bf0472425acd0311d543883b803388880e60a232040c7.cairo" - }, - "parent_location": [ - { - "end_col": 78, - "end_line": 244, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "parent_location": [ - { - "end_col": 115, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/external/tokenURI/42e9e406a0e7dbd46b7b1448ce8da1ca2e3fdc14d84af0c1d0d4fdb56a52a5f4.cairo" - }, - "parent_location": [ - { - "end_col": 14, - "end_line": 244, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "start_col": 6, - "start_line": 244 - }, - "While constructing the external wrapper for:" - ], - "start_col": 100, - "start_line": 1 - }, - "While expanding the reference 'range_check_ptr' in:" - ], - "start_col": 63, - "start_line": 244 - }, - "While constructing the external wrapper for:" - ], - "start_col": 23, - "start_line": 1 - } - }, - "4332": { - "accessible_scopes": [ - "__main__", - "__main__", - "__wrappers__", - "__wrappers__.tokenURI" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 67, - "end_line": 2, - "input_file": { - "filename": "autogen/starknet/arg_processor/60c79ef5477686f2843e61432dcde7f4fc0f354d42095115ea9dca625a35df6e.cairo" - }, - "parent_location": [ - { - "end_col": 21, - "end_line": 245, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "parent_location": [ - { - "end_col": 147, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/external/tokenURI/42e9e406a0e7dbd46b7b1448ce8da1ca2e3fdc14d84af0c1d0d4fdb56a52a5f4.cairo" - }, - "parent_location": [ - { - "end_col": 14, - "end_line": 244, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "start_col": 6, - "start_line": 244 - }, - "While constructing the external wrapper for:" - ], - "start_col": 125, - "start_line": 1 - }, - "While expanding the reference '__calldata_arg_tokenId' in:" - ], - "start_col": 5, - "start_line": 245 - }, - "While handling calldata argument 'tokenId'" - ], - "start_col": 30, - "start_line": 1 - } - }, - "4333": { - "accessible_scopes": [ - "__main__", - "__main__", - "__wrappers__", - "__wrappers__.tokenURI" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 67, - "end_line": 2, - "input_file": { - "filename": "autogen/starknet/arg_processor/60c79ef5477686f2843e61432dcde7f4fc0f354d42095115ea9dca625a35df6e.cairo" - }, - "parent_location": [ - { - "end_col": 21, - "end_line": 245, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "parent_location": [ - { - "end_col": 147, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/external/tokenURI/42e9e406a0e7dbd46b7b1448ce8da1ca2e3fdc14d84af0c1d0d4fdb56a52a5f4.cairo" - }, - "parent_location": [ - { - "end_col": 14, - "end_line": 244, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "start_col": 6, - "start_line": 244 - }, - "While constructing the external wrapper for:" - ], - "start_col": 125, - "start_line": 1 - }, - "While expanding the reference '__calldata_arg_tokenId' in:" - ], - "start_col": 5, - "start_line": 245 - }, - "While handling calldata argument 'tokenId'" - ], - "start_col": 30, - "start_line": 1 - } - }, - "4334": { - "accessible_scopes": [ - "__main__", - "__main__", - "__wrappers__", - "__wrappers__.tokenURI" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 14, - "end_line": 244, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "start_col": 6, - "start_line": 244 - } - }, - "4336": { - "accessible_scopes": [ - "__main__", - "__main__", - "__wrappers__", - "__wrappers__.tokenURI" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 55, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/external/tokenURI/42e9e406a0e7dbd46b7b1448ce8da1ca2e3fdc14d84af0c1d0d4fdb56a52a5f4.cairo" - }, - "parent_location": [ - { - "end_col": 14, - "end_line": 244, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "parent_location": [ - { - "end_col": 55, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/external/tokenURI/42e9e406a0e7dbd46b7b1448ce8da1ca2e3fdc14d84af0c1d0d4fdb56a52a5f4.cairo" - }, - "parent_location": [ - { - "end_col": 14, - "end_line": 244, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "start_col": 6, - "start_line": 244 - }, - "While constructing the external wrapper for:" - ], - "start_col": 44, - "start_line": 1 - }, - "While auto generating local variable for 'syscall_ptr'." - ], - "start_col": 6, - "start_line": 244 - }, - "While constructing the external wrapper for:" - ], - "start_col": 44, - "start_line": 1 - } - }, - "4337": { - "accessible_scopes": [ - "__main__", - "__main__", - "__wrappers__", - "__wrappers__.tokenURI" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 82, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/external/tokenURI/42e9e406a0e7dbd46b7b1448ce8da1ca2e3fdc14d84af0c1d0d4fdb56a52a5f4.cairo" - }, - "parent_location": [ - { - "end_col": 14, - "end_line": 244, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "parent_location": [ - { - "end_col": 82, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/external/tokenURI/42e9e406a0e7dbd46b7b1448ce8da1ca2e3fdc14d84af0c1d0d4fdb56a52a5f4.cairo" - }, - "parent_location": [ - { - "end_col": 14, - "end_line": 244, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "start_col": 6, - "start_line": 244 - }, - "While constructing the external wrapper for:" - ], - "start_col": 70, - "start_line": 1 - }, - "While auto generating local variable for 'pedersen_ptr'." - ], - "start_col": 6, - "start_line": 244 - }, - "While constructing the external wrapper for:" - ], - "start_col": 70, - "start_line": 1 - } - }, - "4338": { - "accessible_scopes": [ - "__main__", - "__main__", - "__wrappers__", - "__wrappers__.tokenURI" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 115, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/external/tokenURI/42e9e406a0e7dbd46b7b1448ce8da1ca2e3fdc14d84af0c1d0d4fdb56a52a5f4.cairo" - }, - "parent_location": [ - { - "end_col": 14, - "end_line": 244, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "parent_location": [ - { - "end_col": 97, - "end_line": 2, - "input_file": { - "filename": "autogen/starknet/external/tokenURI/42e9e406a0e7dbd46b7b1448ce8da1ca2e3fdc14d84af0c1d0d4fdb56a52a5f4.cairo" - }, - "parent_location": [ - { - "end_col": 14, - "end_line": 244, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "start_col": 6, - "start_line": 244 - }, - "While constructing the external wrapper for:" - ], - "start_col": 82, - "start_line": 2 - }, - "While expanding the reference 'range_check_ptr' in:" - ], - "start_col": 6, - "start_line": 244 - }, - "While constructing the external wrapper for:" - ], - "start_col": 100, - "start_line": 1 - } - }, - "4339": { - "accessible_scopes": [ - "__main__", - "__main__", - "__wrappers__", - "__wrappers__.tokenURI" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 98, - "end_line": 2, - "input_file": { - "filename": "autogen/starknet/external/tokenURI/42e9e406a0e7dbd46b7b1448ce8da1ca2e3fdc14d84af0c1d0d4fdb56a52a5f4.cairo" - }, - "parent_location": [ - { - "end_col": 14, - "end_line": 244, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "start_col": 6, - "start_line": 244 - }, - "While constructing the external wrapper for:" - ], - "start_col": 48, - "start_line": 2 - } - }, - "4341": { - "accessible_scopes": [ - "__main__", - "__main__", - "__wrappers__", - "__wrappers__.tokenURI" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 55, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/external/tokenURI/42e9e406a0e7dbd46b7b1448ce8da1ca2e3fdc14d84af0c1d0d4fdb56a52a5f4.cairo" - }, - "parent_location": [ - { - "end_col": 14, - "end_line": 244, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "parent_location": [ - { - "end_col": 55, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/external/tokenURI/42e9e406a0e7dbd46b7b1448ce8da1ca2e3fdc14d84af0c1d0d4fdb56a52a5f4.cairo" - }, - "parent_location": [ - { - "end_col": 14, - "end_line": 244, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "parent_location": [ - { - "end_col": 20, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/external/tokenURI/da17921a4e81c09e730800bbf23bfdbe5e9e6bfaedc59d80fbf62087fa43c27d.cairo" - }, - "parent_location": [ - { - "end_col": 14, - "end_line": 244, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "start_col": 6, - "start_line": 244 - }, - "While constructing the external wrapper for:" - ], - "start_col": 9, - "start_line": 1 - }, - "While expanding the reference 'syscall_ptr' in:" - ], - "start_col": 6, - "start_line": 244 - }, - "While constructing the external wrapper for:" - ], - "start_col": 44, - "start_line": 1 - }, - "While auto generating local variable for 'syscall_ptr'." - ], - "start_col": 6, - "start_line": 244 - }, - "While constructing the external wrapper for:" - ], - "start_col": 44, - "start_line": 1 - } - }, - "4342": { - "accessible_scopes": [ - "__main__", - "__main__", - "__wrappers__", - "__wrappers__.tokenURI" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 82, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/external/tokenURI/42e9e406a0e7dbd46b7b1448ce8da1ca2e3fdc14d84af0c1d0d4fdb56a52a5f4.cairo" - }, - "parent_location": [ - { - "end_col": 14, - "end_line": 244, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "parent_location": [ - { - "end_col": 82, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/external/tokenURI/42e9e406a0e7dbd46b7b1448ce8da1ca2e3fdc14d84af0c1d0d4fdb56a52a5f4.cairo" - }, - "parent_location": [ - { - "end_col": 14, - "end_line": 244, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "parent_location": [ - { - "end_col": 33, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/external/tokenURI/da17921a4e81c09e730800bbf23bfdbe5e9e6bfaedc59d80fbf62087fa43c27d.cairo" - }, - "parent_location": [ - { - "end_col": 14, - "end_line": 244, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "start_col": 6, - "start_line": 244 - }, - "While constructing the external wrapper for:" - ], - "start_col": 21, - "start_line": 1 - }, - "While expanding the reference 'pedersen_ptr' in:" - ], - "start_col": 6, - "start_line": 244 - }, - "While constructing the external wrapper for:" - ], - "start_col": 70, - "start_line": 1 - }, - "While auto generating local variable for 'pedersen_ptr'." - ], - "start_col": 6, - "start_line": 244 - }, - "While constructing the external wrapper for:" - ], - "start_col": 70, - "start_line": 1 - } - }, - "4343": { - "accessible_scopes": [ - "__main__", - "__main__", - "__wrappers__", - "__wrappers__.tokenURI" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 21, - "end_line": 2, - "input_file": { - "filename": "autogen/starknet/external/tokenURI/42e9e406a0e7dbd46b7b1448ce8da1ca2e3fdc14d84af0c1d0d4fdb56a52a5f4.cairo" - }, - "parent_location": [ - { - "end_col": 14, - "end_line": 244, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "parent_location": [ - { - "end_col": 49, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/external/tokenURI/da17921a4e81c09e730800bbf23bfdbe5e9e6bfaedc59d80fbf62087fa43c27d.cairo" - }, - "parent_location": [ - { - "end_col": 14, - "end_line": 244, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "start_col": 6, - "start_line": 244 - }, - "While constructing the external wrapper for:" - ], - "start_col": 34, - "start_line": 1 - }, - "While expanding the reference 'range_check_ptr' in:" - ], - "start_col": 6, - "start_line": 244 - }, - "While constructing the external wrapper for:" - ], - "start_col": 6, - "start_line": 2 - } - }, - "4344": { - "accessible_scopes": [ - "__main__", - "__main__", - "__wrappers__", - "__wrappers__.tokenURI" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 35, - "end_line": 2, - "input_file": { - "filename": "autogen/starknet/external/tokenURI/42e9e406a0e7dbd46b7b1448ce8da1ca2e3fdc14d84af0c1d0d4fdb56a52a5f4.cairo" - }, - "parent_location": [ - { - "end_col": 14, - "end_line": 244, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "parent_location": [ - { - "end_col": 62, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/external/tokenURI/da17921a4e81c09e730800bbf23bfdbe5e9e6bfaedc59d80fbf62087fa43c27d.cairo" - }, - "parent_location": [ - { - "end_col": 14, - "end_line": 244, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "start_col": 6, - "start_line": 244 - }, - "While constructing the external wrapper for:" - ], - "start_col": 50, - "start_line": 1 - }, - "While expanding the reference 'retdata_size' in:" - ], - "start_col": 6, - "start_line": 244 - }, - "While constructing the external wrapper for:" - ], - "start_col": 23, - "start_line": 2 - } - }, - "4345": { - "accessible_scopes": [ - "__main__", - "__main__", - "__wrappers__", - "__wrappers__.tokenURI" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 44, - "end_line": 2, - "input_file": { - "filename": "autogen/starknet/external/tokenURI/42e9e406a0e7dbd46b7b1448ce8da1ca2e3fdc14d84af0c1d0d4fdb56a52a5f4.cairo" - }, - "parent_location": [ - { - "end_col": 14, - "end_line": 244, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "parent_location": [ - { - "end_col": 70, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/external/tokenURI/da17921a4e81c09e730800bbf23bfdbe5e9e6bfaedc59d80fbf62087fa43c27d.cairo" - }, - "parent_location": [ - { - "end_col": 14, - "end_line": 244, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "start_col": 6, - "start_line": 244 - }, - "While constructing the external wrapper for:" - ], - "start_col": 63, - "start_line": 1 - }, - "While expanding the reference 'retdata' in:" - ], - "start_col": 6, - "start_line": 244 - }, - "While constructing the external wrapper for:" - ], - "start_col": 37, - "start_line": 2 - } - }, - "4346": { - "accessible_scopes": [ - "__main__", - "__main__", - "__wrappers__", - "__wrappers__.tokenURI" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 72, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/external/tokenURI/da17921a4e81c09e730800bbf23bfdbe5e9e6bfaedc59d80fbf62087fa43c27d.cairo" - }, - "parent_location": [ - { - "end_col": 14, - "end_line": 244, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "start_col": 6, - "start_line": 244 - }, - "While constructing the external wrapper for:" - ], - "start_col": 1, - "start_line": 1 - } - }, - "4347": { - "accessible_scopes": [ - "__main__", - "__main__", - "__main__.contractURI" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 60, - "end_line": 255, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "start_col": 45, - "start_line": 255 - } - }, - "4349": { - "accessible_scopes": [ - "__main__", - "__main__", - "__main__.contractURI" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 61, - "end_line": 255, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "start_col": 26, - "start_line": 255 - } - }, - "4351": { - "accessible_scopes": [ - "__main__", - "__main__", - "__main__.contractURI" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 36, - "end_line": 252, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "parent_location": [ - { - "end_col": 36, - "end_line": 252, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "parent_location": [ - { - "end_col": 32, - "end_line": 256, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "start_col": 5, - "start_line": 256 - }, - "While trying to retrieve the implicit argument 'syscall_ptr' in:" - ], - "start_col": 18, - "start_line": 252 - }, - "While expanding the reference 'syscall_ptr' in:" - ], - "start_col": 18, - "start_line": 252 - } - }, - "4352": { - "accessible_scopes": [ - "__main__", - "__main__", - "__main__.contractURI" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 64, - "end_line": 252, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "parent_location": [ - { - "end_col": 64, - "end_line": 252, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "parent_location": [ - { - "end_col": 32, - "end_line": 256, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "start_col": 5, - "start_line": 256 - }, - "While trying to retrieve the implicit argument 'pedersen_ptr' in:" - ], - "start_col": 38, - "start_line": 252 - }, - "While expanding the reference 'pedersen_ptr' in:" - ], - "start_col": 38, - "start_line": 252 - } - }, - "4353": { - "accessible_scopes": [ - "__main__", - "__main__", - "__main__.contractURI" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 81, - "end_line": 252, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "parent_location": [ - { - "end_col": 81, - "end_line": 252, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "parent_location": [ - { - "end_col": 32, - "end_line": 256, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "start_col": 5, - "start_line": 256 - }, - "While trying to retrieve the implicit argument 'range_check_ptr' in:" - ], - "start_col": 66, - "start_line": 252 - }, - "While expanding the reference 'range_check_ptr' in:" - ], - "start_col": 66, - "start_line": 252 - } - }, - "4354": { - "accessible_scopes": [ - "__main__", - "__main__", - "__main__.contractURI" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 16, - "end_line": 256, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "start_col": 13, - "start_line": 256 - } - }, - "4356": { - "accessible_scopes": [ - "__main__", - "__main__", - "__main__.contractURI" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 22, - "end_line": 255, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "parent_location": [ - { - "end_col": 30, - "end_line": 256, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "start_col": 18, - "start_line": 256 - }, - "While expanding the reference 'contract_uri' in:" - ], - "start_col": 10, - "start_line": 255 - } - }, - "4357": { - "accessible_scopes": [ - "__main__", - "__main__", - "__main__.contractURI" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 32, - "end_line": 256, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "start_col": 5, - "start_line": 256 - } - }, - "4358": { - "accessible_scopes": [ - "__main__", - "__main__", - "__main__.contractURI" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 11, - "end_line": 259, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "start_col": 5, - "start_line": 259 - } - }, - "4359": { - "accessible_scopes": [ - "__main__", - "__main__", - "__main__.contractURI" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 11, - "end_line": 260, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "start_col": 5, - "start_line": 260 - } - }, - "4360": { - "accessible_scopes": [ - "__main__", - "__main__", - "__main__.contractURI" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 11, - "end_line": 261, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "start_col": 5, - "start_line": 261 - } - }, - "4361": { - "accessible_scopes": [ - "__main__", - "__main__", - "__main__.contractURI" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 11, - "end_line": 262, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "start_col": 5, - "start_line": 262 - } - }, - "4362": { - "accessible_scopes": [ - "__main__", - "__main__", - "__main__.contractURI" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 11, - "end_line": 263, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "start_col": 5, - "start_line": 263 - } - }, - "4363": { - "accessible_scopes": [ - "__main__", - "__main__", - "__main__.contractURI" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 10, - "end_line": 264, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "start_col": 5, - "start_line": 264 - } - }, - "4364": { - "accessible_scopes": [ - "__main__", - "__main__", - "__main__.contractURI" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 10, - "end_line": 265, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "start_col": 5, - "start_line": 265 - } - }, - "4365": { - "accessible_scopes": [ - "__main__", - "__main__", - "__main__.contractURI" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 10, - "end_line": 266, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "start_col": 5, - "start_line": 266 - } - }, - "4366": { - "accessible_scopes": [ - "__main__", - "__main__", - "__main__.contractURI" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 11, - "end_line": 267, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "start_col": 5, - "start_line": 267 - } - }, - "4367": { - "accessible_scopes": [ - "__main__", - "__main__", - "__main__.contractURI" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 10, - "end_line": 268, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "start_col": 5, - "start_line": 268 - } - }, - "4368": { - "accessible_scopes": [ - "__main__", - "__main__", - "__main__.contractURI" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 11, - "end_line": 269, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "start_col": 5, - "start_line": 269 - } - }, - "4369": { - "accessible_scopes": [ - "__main__", - "__main__", - "__main__.contractURI" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 10, - "end_line": 270, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "start_col": 5, - "start_line": 270 - } - }, - "4370": { - "accessible_scopes": [ - "__main__", - "__main__", - "__main__.contractURI" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 11, - "end_line": 271, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "start_col": 5, - "start_line": 271 - } - }, - "4371": { - "accessible_scopes": [ - "__main__", - "__main__", - "__main__.contractURI" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 11, - "end_line": 272, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "start_col": 5, - "start_line": 272 - } - }, - "4372": { - "accessible_scopes": [ - "__main__", - "__main__", - "__main__.contractURI" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 11, - "end_line": 273, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "start_col": 5, - "start_line": 273 - } - }, - "4373": { - "accessible_scopes": [ - "__main__", - "__main__", - "__main__.contractURI" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 11, - "end_line": 274, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "start_col": 5, - "start_line": 274 - } - }, - "4374": { - "accessible_scopes": [ - "__main__", - "__main__", - "__main__.contractURI" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 11, - "end_line": 275, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "start_col": 5, - "start_line": 275 - } - }, - "4375": { - "accessible_scopes": [ - "__main__", - "__main__", - "__main__.contractURI" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 10, - "end_line": 276, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "start_col": 5, - "start_line": 276 - } - }, - "4376": { - "accessible_scopes": [ - "__main__", - "__main__", - "__main__.contractURI" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 11, - "end_line": 277, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "start_col": 5, - "start_line": 277 - } - }, - "4377": { - "accessible_scopes": [ - "__main__", - "__main__", - "__main__.contractURI" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 11, - "end_line": 278, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "start_col": 5, - "start_line": 278 - } - }, - "4378": { - "accessible_scopes": [ - "__main__", - "__main__", - "__main__.contractURI" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 11, - "end_line": 279, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "start_col": 5, - "start_line": 279 - } - }, - "4379": { - "accessible_scopes": [ - "__main__", - "__main__", - "__main__.contractURI" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 11, - "end_line": 280, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "start_col": 5, - "start_line": 280 - } - }, - "4380": { - "accessible_scopes": [ - "__main__", - "__main__", - "__main__.contractURI" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 10, - "end_line": 281, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "start_col": 5, - "start_line": 281 - } - }, - "4381": { - "accessible_scopes": [ - "__main__", - "__main__", - "__main__.contractURI" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 11, - "end_line": 282, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "start_col": 5, - "start_line": 282 - } - }, - "4382": { - "accessible_scopes": [ - "__main__", - "__main__", - "__main__.contractURI" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 11, - "end_line": 283, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "start_col": 5, - "start_line": 283 - } - }, - "4383": { - "accessible_scopes": [ - "__main__", - "__main__", - "__main__.contractURI" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 11, - "end_line": 284, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "start_col": 5, - "start_line": 284 - } - }, - "4384": { - "accessible_scopes": [ - "__main__", - "__main__", - "__main__.contractURI" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 11, - "end_line": 285, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "start_col": 5, - "start_line": 285 - } - }, - "4385": { - "accessible_scopes": [ - "__main__", - "__main__", - "__main__.contractURI" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 11, - "end_line": 286, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "start_col": 5, - "start_line": 286 - } - }, - "4386": { - "accessible_scopes": [ - "__main__", - "__main__", - "__main__.contractURI" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 11, - "end_line": 287, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "start_col": 5, - "start_line": 287 - } - }, - "4387": { - "accessible_scopes": [ - "__main__", - "__main__", - "__main__.contractURI" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 10, - "end_line": 288, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "start_col": 5, - "start_line": 288 - } - }, - "4388": { - "accessible_scopes": [ - "__main__", - "__main__", - "__main__.contractURI" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 10, - "end_line": 289, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "start_col": 5, - "start_line": 289 - } - }, - "4389": { - "accessible_scopes": [ - "__main__", - "__main__", - "__main__.contractURI" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 11, - "end_line": 290, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "start_col": 5, - "start_line": 290 - } - }, - "4390": { - "accessible_scopes": [ - "__main__", - "__main__", - "__main__.contractURI" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 11, - "end_line": 291, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "start_col": 5, - "start_line": 291 - } - }, - "4391": { - "accessible_scopes": [ - "__main__", - "__main__", - "__main__.contractURI" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 10, - "end_line": 292, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "start_col": 5, - "start_line": 292 - } - }, - "4392": { - "accessible_scopes": [ - "__main__", - "__main__", - "__main__.contractURI" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 11, - "end_line": 293, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "start_col": 5, - "start_line": 293 - } - }, - "4393": { - "accessible_scopes": [ - "__main__", - "__main__", - "__main__.contractURI" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 11, - "end_line": 294, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "start_col": 5, - "start_line": 294 - } - }, - "4394": { - "accessible_scopes": [ - "__main__", - "__main__", - "__main__.contractURI" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 11, - "end_line": 295, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "start_col": 5, - "start_line": 295 - } - }, - "4395": { - "accessible_scopes": [ - "__main__", - "__main__", - "__main__.contractURI" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 10, - "end_line": 296, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "start_col": 5, - "start_line": 296 - } - }, - "4396": { - "accessible_scopes": [ - "__main__", - "__main__", - "__main__.contractURI" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 10, - "end_line": 297, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "start_col": 5, - "start_line": 297 - } - }, - "4397": { - "accessible_scopes": [ - "__main__", - "__main__", - "__main__.contractURI" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 10, - "end_line": 298, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "start_col": 5, - "start_line": 298 - } - }, - "4398": { - "accessible_scopes": [ - "__main__", - "__main__", - "__main__.contractURI" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 11, - "end_line": 299, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "start_col": 5, - "start_line": 299 - } - }, - "4399": { - "accessible_scopes": [ - "__main__", - "__main__", - "__main__.contractURI" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 11, - "end_line": 300, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "start_col": 5, - "start_line": 300 - } - }, - "4400": { - "accessible_scopes": [ - "__main__", - "__main__", - "__main__.contractURI" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 11, - "end_line": 301, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "start_col": 5, - "start_line": 301 - } - }, - "4401": { - "accessible_scopes": [ - "__main__", - "__main__", - "__main__.contractURI" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 10, - "end_line": 302, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "start_col": 5, - "start_line": 302 - } - }, - "4402": { - "accessible_scopes": [ - "__main__", - "__main__", - "__main__.contractURI" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 11, - "end_line": 303, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "start_col": 5, - "start_line": 303 - } - }, - "4403": { - "accessible_scopes": [ - "__main__", - "__main__", - "__main__.contractURI" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 11, - "end_line": 304, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "start_col": 5, - "start_line": 304 - } - }, - "4404": { - "accessible_scopes": [ - "__main__", - "__main__", - "__main__.contractURI" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 11, - "end_line": 305, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "start_col": 5, - "start_line": 305 - } - }, - "4405": { - "accessible_scopes": [ - "__main__", - "__main__", - "__main__.contractURI" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 11, - "end_line": 306, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "start_col": 5, - "start_line": 306 - } - }, - "4406": { - "accessible_scopes": [ - "__main__", - "__main__", - "__main__.contractURI" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 10, - "end_line": 307, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "start_col": 5, - "start_line": 307 - } - }, - "4407": { - "accessible_scopes": [ - "__main__", - "__main__", - "__main__.contractURI" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 11, - "end_line": 308, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "start_col": 5, - "start_line": 308 - } - }, - "4408": { - "accessible_scopes": [ - "__main__", - "__main__", - "__main__.contractURI" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 11, - "end_line": 309, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "start_col": 5, - "start_line": 309 - } - }, - "4409": { - "accessible_scopes": [ - "__main__", - "__main__", - "__main__.contractURI" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 10, - "end_line": 310, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "start_col": 5, - "start_line": 310 - } - }, - "4410": { - "accessible_scopes": [ - "__main__", - "__main__", - "__main__.contractURI" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 11, - "end_line": 311, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "start_col": 5, - "start_line": 311 - } - }, - "4411": { - "accessible_scopes": [ - "__main__", - "__main__", - "__main__.contractURI" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 11, - "end_line": 312, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "start_col": 5, - "start_line": 312 - } - }, - "4412": { - "accessible_scopes": [ - "__main__", - "__main__", - "__main__.contractURI" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 11, - "end_line": 313, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "start_col": 5, - "start_line": 313 - } - }, - "4413": { - "accessible_scopes": [ - "__main__", - "__main__", - "__main__.contractURI" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 11, - "end_line": 314, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "start_col": 5, - "start_line": 314 - } - }, - "4414": { - "accessible_scopes": [ - "__main__", - "__main__", - "__main__.contractURI" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 11, - "end_line": 315, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "start_col": 5, - "start_line": 315 - } - }, - "4415": { - "accessible_scopes": [ - "__main__", - "__main__", - "__main__.contractURI" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 11, - "end_line": 316, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "start_col": 5, - "start_line": 316 - } - }, - "4416": { - "accessible_scopes": [ - "__main__", - "__main__", - "__main__.contractURI" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 11, - "end_line": 317, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "start_col": 5, - "start_line": 317 - } - }, - "4417": { - "accessible_scopes": [ - "__main__", - "__main__", - "__main__.contractURI" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 10, - "end_line": 318, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "start_col": 5, - "start_line": 318 - } - }, - "4418": { - "accessible_scopes": [ - "__main__", - "__main__", - "__main__.contractURI" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 11, - "end_line": 319, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "start_col": 5, - "start_line": 319 - } - }, - "4419": { - "accessible_scopes": [ - "__main__", - "__main__", - "__main__.contractURI" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 11, - "end_line": 320, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "start_col": 5, - "start_line": 320 - } - }, - "4420": { - "accessible_scopes": [ - "__main__", - "__main__", - "__main__.contractURI" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 11, - "end_line": 321, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "start_col": 5, - "start_line": 321 - } - }, - "4421": { - "accessible_scopes": [ - "__main__", - "__main__", - "__main__.contractURI" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 11, - "end_line": 322, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "start_col": 5, - "start_line": 322 - } - }, - "4422": { - "accessible_scopes": [ - "__main__", - "__main__", - "__main__.contractURI" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 11, - "end_line": 323, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "start_col": 5, - "start_line": 323 - } - }, - "4423": { - "accessible_scopes": [ - "__main__", - "__main__", - "__main__.contractURI" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 11, - "end_line": 324, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "start_col": 5, - "start_line": 324 - } - }, - "4424": { - "accessible_scopes": [ - "__main__", - "__main__", - "__main__.contractURI" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 11, - "end_line": 325, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "start_col": 5, - "start_line": 325 - } - }, - "4425": { - "accessible_scopes": [ - "__main__", - "__main__", - "__main__.contractURI" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 11, - "end_line": 326, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "start_col": 5, - "start_line": 326 - } - }, - "4426": { - "accessible_scopes": [ - "__main__", - "__main__", - "__main__.contractURI" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 10, - "end_line": 327, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "start_col": 5, - "start_line": 327 - } - }, - "4427": { - "accessible_scopes": [ - "__main__", - "__main__", - "__main__.contractURI" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 11, - "end_line": 328, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "start_col": 5, - "start_line": 328 - } - }, - "4428": { - "accessible_scopes": [ - "__main__", - "__main__", - "__main__.contractURI" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 10, - "end_line": 329, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "start_col": 5, - "start_line": 329 - } - }, - "4429": { - "accessible_scopes": [ - "__main__", - "__main__", - "__main__.contractURI" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 11, - "end_line": 330, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "start_col": 5, - "start_line": 330 - } - }, - "4430": { - "accessible_scopes": [ - "__main__", - "__main__", - "__main__.contractURI" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 11, - "end_line": 331, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "start_col": 5, - "start_line": 331 - } - }, - "4431": { - "accessible_scopes": [ - "__main__", - "__main__", - "__main__.contractURI" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 10, - "end_line": 332, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "start_col": 5, - "start_line": 332 - } - }, - "4432": { - "accessible_scopes": [ - "__main__", - "__main__", - "__main__.contractURI" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 11, - "end_line": 333, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "start_col": 5, - "start_line": 333 - } - }, - "4433": { - "accessible_scopes": [ - "__main__", - "__main__", - "__main__.contractURI" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 10, - "end_line": 334, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "start_col": 5, - "start_line": 334 - } - }, - "4434": { - "accessible_scopes": [ - "__main__", - "__main__", - "__main__.contractURI" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 10, - "end_line": 335, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "start_col": 5, - "start_line": 335 - } - }, - "4435": { - "accessible_scopes": [ - "__main__", - "__main__", - "__main__.contractURI" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 11, - "end_line": 336, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "start_col": 5, - "start_line": 336 - } - }, - "4436": { - "accessible_scopes": [ - "__main__", - "__main__", - "__main__.contractURI" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 10, - "end_line": 337, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "start_col": 5, - "start_line": 337 - } - }, - "4437": { - "accessible_scopes": [ - "__main__", - "__main__", - "__main__.contractURI" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 11, - "end_line": 338, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "start_col": 5, - "start_line": 338 - } - }, - "4438": { - "accessible_scopes": [ - "__main__", - "__main__", - "__main__.contractURI" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 11, - "end_line": 339, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "start_col": 5, - "start_line": 339 - } - }, - "4439": { - "accessible_scopes": [ - "__main__", - "__main__", - "__main__.contractURI" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 11, - "end_line": 340, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "start_col": 5, - "start_line": 340 - } - }, - "4440": { - "accessible_scopes": [ - "__main__", - "__main__", - "__main__.contractURI" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 10, - "end_line": 341, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "start_col": 5, - "start_line": 341 - } - }, - "4441": { - "accessible_scopes": [ - "__main__", - "__main__", - "__main__.contractURI" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 11, - "end_line": 342, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "start_col": 5, - "start_line": 342 - } - }, - "4442": { - "accessible_scopes": [ - "__main__", - "__main__", - "__main__.contractURI" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 11, - "end_line": 343, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "start_col": 5, - "start_line": 343 - } - }, - "4443": { - "accessible_scopes": [ - "__main__", - "__main__", - "__main__.contractURI" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 10, - "end_line": 344, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "start_col": 5, - "start_line": 344 - } - }, - "4444": { - "accessible_scopes": [ - "__main__", - "__main__", - "__main__.contractURI" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 11, - "end_line": 345, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "start_col": 5, - "start_line": 345 - } - }, - "4445": { - "accessible_scopes": [ - "__main__", - "__main__", - "__main__.contractURI" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 11, - "end_line": 346, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "start_col": 5, - "start_line": 346 - } - }, - "4446": { - "accessible_scopes": [ - "__main__", - "__main__", - "__main__.contractURI" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 11, - "end_line": 347, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "start_col": 5, - "start_line": 347 - } - }, - "4447": { - "accessible_scopes": [ - "__main__", - "__main__", - "__main__.contractURI" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 11, - "end_line": 348, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "start_col": 5, - "start_line": 348 - } - }, - "4448": { - "accessible_scopes": [ - "__main__", - "__main__", - "__main__.contractURI" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 11, - "end_line": 349, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "start_col": 5, - "start_line": 349 - } - }, - "4449": { - "accessible_scopes": [ - "__main__", - "__main__", - "__main__.contractURI" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 11, - "end_line": 350, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "start_col": 5, - "start_line": 350 - } - }, - "4450": { - "accessible_scopes": [ - "__main__", - "__main__", - "__main__.contractURI" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 11, - "end_line": 351, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "start_col": 5, - "start_line": 351 - } - }, - "4451": { - "accessible_scopes": [ - "__main__", - "__main__", - "__main__.contractURI" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 10, - "end_line": 352, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "start_col": 5, - "start_line": 352 - } - }, - "4452": { - "accessible_scopes": [ - "__main__", - "__main__", - "__main__.contractURI" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 10, - "end_line": 353, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "start_col": 5, - "start_line": 353 - } - }, - "4453": { - "accessible_scopes": [ - "__main__", - "__main__", - "__main__.contractURI" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 10, - "end_line": 354, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "start_col": 5, - "start_line": 354 - } - }, - "4454": { - "accessible_scopes": [ - "__main__", - "__main__", - "__main__.contractURI" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 11, - "end_line": 355, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "start_col": 5, - "start_line": 355 - } - }, - "4455": { - "accessible_scopes": [ - "__main__", - "__main__", - "__main__.contractURI" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 11, - "end_line": 356, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "start_col": 5, - "start_line": 356 - } - }, - "4456": { - "accessible_scopes": [ - "__main__", - "__main__", - "__main__.contractURI" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 11, - "end_line": 357, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "start_col": 5, - "start_line": 357 - } - }, - "4457": { - "accessible_scopes": [ - "__main__", - "__main__", - "__main__.contractURI" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 10, - "end_line": 358, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "start_col": 5, - "start_line": 358 - } - }, - "4458": { - "accessible_scopes": [ - "__main__", - "__main__", - "__main__.contractURI" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 11, - "end_line": 359, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "start_col": 5, - "start_line": 359 - } - }, - "4459": { - "accessible_scopes": [ - "__main__", - "__main__", - "__main__.contractURI" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 11, - "end_line": 360, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "start_col": 5, - "start_line": 360 - } - }, - "4460": { - "accessible_scopes": [ - "__main__", - "__main__", - "__main__.contractURI" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 11, - "end_line": 361, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "start_col": 5, - "start_line": 361 - } - }, - "4461": { - "accessible_scopes": [ - "__main__", - "__main__", - "__main__.contractURI" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 11, - "end_line": 362, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "start_col": 5, - "start_line": 362 - } - }, - "4462": { - "accessible_scopes": [ - "__main__", - "__main__", - "__main__.contractURI" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 10, - "end_line": 363, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "start_col": 5, - "start_line": 363 - } - }, - "4463": { - "accessible_scopes": [ - "__main__", - "__main__", - "__main__.contractURI" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 11, - "end_line": 364, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "start_col": 5, - "start_line": 364 - } - }, - "4464": { - "accessible_scopes": [ - "__main__", - "__main__", - "__main__.contractURI" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 11, - "end_line": 365, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "start_col": 5, - "start_line": 365 - } - }, - "4465": { - "accessible_scopes": [ - "__main__", - "__main__", - "__main__.contractURI" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 11, - "end_line": 366, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "start_col": 5, - "start_line": 366 - } - }, - "4466": { - "accessible_scopes": [ - "__main__", - "__main__", - "__main__.contractURI" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 11, - "end_line": 367, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "start_col": 5, - "start_line": 367 - } - }, - "4467": { - "accessible_scopes": [ - "__main__", - "__main__", - "__main__.contractURI" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 11, - "end_line": 368, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "start_col": 5, - "start_line": 368 - } - }, - "4468": { - "accessible_scopes": [ - "__main__", - "__main__", - "__main__.contractURI" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 11, - "end_line": 369, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "start_col": 5, - "start_line": 369 - } - }, - "4469": { - "accessible_scopes": [ - "__main__", - "__main__", - "__main__.contractURI" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 10, - "end_line": 370, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "start_col": 5, - "start_line": 370 - } - }, - "4470": { - "accessible_scopes": [ - "__main__", - "__main__", - "__main__.contractURI" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 10, - "end_line": 371, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "start_col": 5, - "start_line": 371 - } - }, - "4471": { - "accessible_scopes": [ - "__main__", - "__main__", - "__main__.contractURI" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 11, - "end_line": 372, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "start_col": 5, - "start_line": 372 - } - }, - "4472": { - "accessible_scopes": [ - "__main__", - "__main__", - "__main__.contractURI" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 11, - "end_line": 373, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "start_col": 5, - "start_line": 373 - } - }, - "4473": { - "accessible_scopes": [ - "__main__", - "__main__", - "__main__.contractURI" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 11, - "end_line": 374, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "start_col": 5, - "start_line": 374 - } - }, - "4474": { - "accessible_scopes": [ - "__main__", - "__main__", - "__main__.contractURI" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 11, - "end_line": 375, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "start_col": 5, - "start_line": 375 - } - }, - "4475": { - "accessible_scopes": [ - "__main__", - "__main__", - "__main__.contractURI" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 10, - "end_line": 376, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "start_col": 5, - "start_line": 376 - } - }, - "4476": { - "accessible_scopes": [ - "__main__", - "__main__", - "__main__.contractURI" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 10, - "end_line": 377, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "start_col": 5, - "start_line": 377 - } - }, - "4477": { - "accessible_scopes": [ - "__main__", - "__main__", - "__main__.contractURI" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 11, - "end_line": 378, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "start_col": 5, - "start_line": 378 - } - }, - "4478": { - "accessible_scopes": [ - "__main__", - "__main__", - "__main__.contractURI" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 10, - "end_line": 379, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "start_col": 5, - "start_line": 379 - } - }, - "4479": { - "accessible_scopes": [ - "__main__", - "__main__", - "__main__.contractURI" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 11, - "end_line": 380, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "start_col": 5, - "start_line": 380 - } - }, - "4480": { - "accessible_scopes": [ - "__main__", - "__main__", - "__main__.contractURI" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 11, - "end_line": 381, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "start_col": 5, - "start_line": 381 - } - }, - "4481": { - "accessible_scopes": [ - "__main__", - "__main__", - "__main__.contractURI" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 11, - "end_line": 382, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "start_col": 5, - "start_line": 382 - } - }, - "4482": { - "accessible_scopes": [ - "__main__", - "__main__", - "__main__.contractURI" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 10, - "end_line": 383, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "start_col": 5, - "start_line": 383 - } - }, - "4483": { - "accessible_scopes": [ - "__main__", - "__main__", - "__main__.contractURI" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 11, - "end_line": 384, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "start_col": 5, - "start_line": 384 - } - }, - "4484": { - "accessible_scopes": [ - "__main__", - "__main__", - "__main__.contractURI" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 11, - "end_line": 385, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "start_col": 5, - "start_line": 385 - } - }, - "4485": { - "accessible_scopes": [ - "__main__", - "__main__", - "__main__.contractURI" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 11, - "end_line": 386, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "start_col": 5, - "start_line": 386 - } - }, - "4486": { - "accessible_scopes": [ - "__main__", - "__main__", - "__main__.contractURI" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 11, - "end_line": 387, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "start_col": 5, - "start_line": 387 - } - }, - "4487": { - "accessible_scopes": [ - "__main__", - "__main__", - "__wrappers__", - "__wrappers__.contractURI_encode_return" - ], - "flow_tracking_data": null, - "hints": [ - { - "location": { - "end_col": 38, - "end_line": 3, - "input_file": { - "filename": "autogen/starknet/external/return/contractURI/b04c73e7705bedc8f1f7443e51be7624df9567d66b186004fbcf68937ec0909c.cairo" - }, - "parent_location": [ - { - "end_col": 17, - "end_line": 252, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "start_col": 6, - "start_line": 252 - }, - "While handling return value of" - ], - "start_col": 5, - "start_line": 3 - }, - "n_prefix_newlines": 0 - } - ], - "inst": { - "end_col": 18, - "end_line": 4, - "input_file": { - "filename": "autogen/starknet/external/return/contractURI/b04c73e7705bedc8f1f7443e51be7624df9567d66b186004fbcf68937ec0909c.cairo" - }, - "parent_location": [ - { - "end_col": 17, - "end_line": 252, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "start_col": 6, - "start_line": 252 - }, - "While handling return value of" - ], - "start_col": 5, - "start_line": 4 - } - }, - "4489": { - "accessible_scopes": [ - "__main__", - "__main__", - "__wrappers__", - "__wrappers__.contractURI_encode_return" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 57, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/arg_processor/39e07c9c78c5d65e4021222b6cb180405c183c5369648ce6703b11444f98e3ea.cairo" - }, - "parent_location": [ - { - "end_col": 26, - "end_line": 253, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "start_col": 5, - "start_line": 253 - }, - "While handling return value 'contractURI_len'" - ], - "start_col": 1, - "start_line": 1 - } - }, - "4490": { - "accessible_scopes": [ - "__main__", - "__main__", - "__wrappers__", - "__wrappers__.contractURI_encode_return" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 54, - "end_line": 2, - "input_file": { - "filename": "autogen/starknet/arg_processor/a98a36d6a206700a5fdb61e2bbb1beffba5cbd4bdfdab9d3af5254d2a0b5137a.cairo" - }, - "parent_location": [ - { - "end_col": 46, - "end_line": 253, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "start_col": 28, - "start_line": 253 - }, - "While handling return value 'contractURI'" - ], - "start_col": 1, - "start_line": 2 - } - }, - "4491": { - "accessible_scopes": [ - "__main__", - "__main__", - "__wrappers__", - "__wrappers__.contractURI_encode_return" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 45, - "end_line": 5, - "input_file": { - "filename": "autogen/starknet/arg_processor/a98a36d6a206700a5fdb61e2bbb1beffba5cbd4bdfdab9d3af5254d2a0b5137a.cairo" - }, - "parent_location": [ - { - "end_col": 46, - "end_line": 253, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "start_col": 28, - "start_line": 253 - }, - "While handling return value 'contractURI'" - ], - "start_col": 1, - "start_line": 5 - } - }, - "4493": { - "accessible_scopes": [ - "__main__", - "__main__", - "__wrappers__", - "__wrappers__.contractURI_encode_return" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 48, - "end_line": 2, - "input_file": { - "filename": "autogen/starknet/arg_processor/39e07c9c78c5d65e4021222b6cb180405c183c5369648ce6703b11444f98e3ea.cairo" - }, - "parent_location": [ - { - "end_col": 26, - "end_line": 253, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "parent_location": [ - { - "end_col": 53, - "end_line": 10, - "input_file": { - "filename": "autogen/starknet/arg_processor/a98a36d6a206700a5fdb61e2bbb1beffba5cbd4bdfdab9d3af5254d2a0b5137a.cairo" - }, - "parent_location": [ - { - "end_col": 46, - "end_line": 253, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "start_col": 28, - "start_line": 253 - }, - "While handling return value 'contractURI'" - ], - "start_col": 35, - "start_line": 10 - }, - "While expanding the reference '__return_value_ptr' in:" - ], - "start_col": 5, - "start_line": 253 - }, - "While handling return value 'contractURI_len'" - ], - "start_col": 26, - "start_line": 2 - } - }, - "4495": { - "accessible_scopes": [ - "__main__", - "__main__", - "__wrappers__", - "__wrappers__.contractURI_encode_return" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 86, - "end_line": 10, - "input_file": { - "filename": "autogen/starknet/arg_processor/a98a36d6a206700a5fdb61e2bbb1beffba5cbd4bdfdab9d3af5254d2a0b5137a.cairo" - }, - "parent_location": [ - { - "end_col": 46, - "end_line": 253, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "start_col": 28, - "start_line": 253 - }, - "While handling return value 'contractURI'" - ], - "start_col": 1, - "start_line": 10 - } - }, - "4496": { - "accessible_scopes": [ - "__main__", - "__main__", - "__wrappers__", - "__wrappers__.contractURI_encode_return" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 48, - "end_line": 2, - "input_file": { - "filename": "autogen/starknet/arg_processor/39e07c9c78c5d65e4021222b6cb180405c183c5369648ce6703b11444f98e3ea.cairo" - }, - "parent_location": [ - { - "end_col": 26, - "end_line": 253, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "parent_location": [ - { - "end_col": 49, - "end_line": 7, - "input_file": { - "filename": "autogen/starknet/arg_processor/a98a36d6a206700a5fdb61e2bbb1beffba5cbd4bdfdab9d3af5254d2a0b5137a.cairo" - }, - "parent_location": [ - { - "end_col": 46, - "end_line": 253, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "parent_location": [ - { - "end_col": 32, - "end_line": 12, - "input_file": { - "filename": "autogen/starknet/arg_processor/a98a36d6a206700a5fdb61e2bbb1beffba5cbd4bdfdab9d3af5254d2a0b5137a.cairo" - }, - "parent_location": [ - { - "end_col": 46, - "end_line": 253, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "start_col": 28, - "start_line": 253 - }, - "While handling return value 'contractURI'" - ], - "start_col": 9, - "start_line": 12 - }, - "While expanding the reference '__return_value_ptr_copy' in:" - ], - "start_col": 28, - "start_line": 253 - }, - "While handling return value 'contractURI'" - ], - "start_col": 31, - "start_line": 7 - }, - "While expanding the reference '__return_value_ptr' in:" - ], - "start_col": 5, - "start_line": 253 - }, - "While handling return value 'contractURI_len'" - ], - "start_col": 26, - "start_line": 2 - } - }, - "4498": { - "accessible_scopes": [ - "__main__", - "__main__", - "__wrappers__", - "__wrappers__.contractURI_encode_return" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 30, - "end_line": 13, - "input_file": { - "filename": "autogen/starknet/arg_processor/a98a36d6a206700a5fdb61e2bbb1beffba5cbd4bdfdab9d3af5254d2a0b5137a.cairo" - }, - "parent_location": [ - { - "end_col": 46, - "end_line": 253, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "start_col": 28, - "start_line": 253 - }, - "While handling return value 'contractURI'" - ], - "start_col": 9, - "start_line": 13 - } - }, - "4499": { - "accessible_scopes": [ - "__main__", - "__main__", - "__wrappers__", - "__wrappers__.contractURI_encode_return" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 34, - "end_line": 14, - "input_file": { - "filename": "autogen/starknet/arg_processor/a98a36d6a206700a5fdb61e2bbb1beffba5cbd4bdfdab9d3af5254d2a0b5137a.cairo" - }, - "parent_location": [ - { - "end_col": 46, - "end_line": 253, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "start_col": 28, - "start_line": 253 - }, - "While handling return value 'contractURI'" - ], - "start_col": 9, - "start_line": 14 - } - }, - "4500": { - "accessible_scopes": [ - "__main__", - "__main__", - "__wrappers__", - "__wrappers__.contractURI_encode_return" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 39, - "end_line": 14, - "input_file": { - "filename": "autogen/starknet/arg_processor/a98a36d6a206700a5fdb61e2bbb1beffba5cbd4bdfdab9d3af5254d2a0b5137a.cairo" - }, - "parent_location": [ - { - "end_col": 46, - "end_line": 253, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "start_col": 28, - "start_line": 253 - }, - "While handling return value 'contractURI'" - ], - "start_col": 1, - "start_line": 11 - } - }, - "4502": { - "accessible_scopes": [ - "__main__", - "__main__", - "__wrappers__", - "__wrappers__.contractURI_encode_return" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 22, - "end_line": 5, - "input_file": { - "filename": "autogen/starknet/arg_processor/a98a36d6a206700a5fdb61e2bbb1beffba5cbd4bdfdab9d3af5254d2a0b5137a.cairo" - }, - "parent_location": [ - { - "end_col": 46, - "end_line": 253, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "parent_location": [ - { - "end_col": 40, - "end_line": 10, - "input_file": { - "filename": "autogen/starknet/external/return/contractURI/b04c73e7705bedc8f1f7443e51be7624df9567d66b186004fbcf68937ec0909c.cairo" - }, - "parent_location": [ - { - "end_col": 17, - "end_line": 252, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "start_col": 6, - "start_line": 252 - }, - "While handling return value of" - ], - "start_col": 25, - "start_line": 10 - }, - "While expanding the reference 'range_check_ptr' in:" - ], - "start_col": 28, - "start_line": 253 - }, - "While handling return value 'contractURI'" - ], - "start_col": 7, - "start_line": 5 - } - }, - "4503": { - "accessible_scopes": [ - "__main__", - "__main__", - "__wrappers__", - "__wrappers__.contractURI_encode_return" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 63, - "end_line": 11, - "input_file": { - "filename": "autogen/starknet/external/return/contractURI/b04c73e7705bedc8f1f7443e51be7624df9567d66b186004fbcf68937ec0909c.cairo" - }, - "parent_location": [ - { - "end_col": 17, - "end_line": 252, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "start_col": 6, - "start_line": 252 - }, - "While handling return value of" - ], - "start_col": 18, - "start_line": 11 - } - }, - "4504": { - "accessible_scopes": [ - "__main__", - "__main__", - "__wrappers__", - "__wrappers__.contractURI_encode_return" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 35, - "end_line": 5, - "input_file": { - "filename": "autogen/starknet/external/return/contractURI/b04c73e7705bedc8f1f7443e51be7624df9567d66b186004fbcf68937ec0909c.cairo" - }, - "parent_location": [ - { - "end_col": 17, - "end_line": 252, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "parent_location": [ - { - "end_col": 38, - "end_line": 12, - "input_file": { - "filename": "autogen/starknet/external/return/contractURI/b04c73e7705bedc8f1f7443e51be7624df9567d66b186004fbcf68937ec0909c.cairo" - }, - "parent_location": [ - { - "end_col": 17, - "end_line": 252, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "start_col": 6, - "start_line": 252 - }, - "While handling return value of" - ], - "start_col": 14, - "start_line": 12 - }, - "While expanding the reference '__return_value_ptr_start' in:" - ], - "start_col": 6, - "start_line": 252 - }, - "While handling return value of" - ], - "start_col": 11, - "start_line": 5 - } - }, - "4505": { - "accessible_scopes": [ - "__main__", - "__main__", - "__wrappers__", - "__wrappers__.contractURI_encode_return" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 40, - "end_line": 12, - "input_file": { - "filename": "autogen/starknet/external/return/contractURI/b04c73e7705bedc8f1f7443e51be7624df9567d66b186004fbcf68937ec0909c.cairo" - }, - "parent_location": [ - { - "end_col": 17, - "end_line": 252, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "start_col": 6, - "start_line": 252 - }, - "While handling return value of" - ], - "start_col": 5, - "start_line": 9 - } - }, - "4506": { - "accessible_scopes": [ - "__main__", - "__main__", - "__wrappers__", - "__wrappers__.contractURI" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 18, - "end_line": 2, - "input_file": { - "filename": "autogen/starknet/external/contractURI/3c9b92c0973b74bf396b0131dcaac8f957a6f0700183164a2207ddd5fa7fe277.cairo" - }, - "parent_location": [ - { - "end_col": 17, - "end_line": 252, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "start_col": 6, - "start_line": 252 - }, - "While constructing the external wrapper for:" - ], - "start_col": 5, - "start_line": 2 - } - }, - "4508": { - "accessible_scopes": [ - "__main__", - "__main__", - "__wrappers__", - "__wrappers__.contractURI" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 58, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/arg_processor/01cba52f8515996bb9d7070bde81ff39281d096d7024a558efcba6e1fd2402cf.cairo" - }, - "parent_location": [ - { - "end_col": 17, - "end_line": 252, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "start_col": 6, - "start_line": 252 - }, - "While handling calldata of" - ], - "start_col": 1, - "start_line": 1 - } - }, - "4509": { - "accessible_scopes": [ - "__main__", - "__main__", - "__wrappers__", - "__wrappers__.contractURI" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 64, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/external/contractURI/b2c52ca2d2a8fc8791a983086d8716c5eacd0c3d62934914d2286f84b98ff4cb.cairo" - }, - "parent_location": [ - { - "end_col": 36, - "end_line": 252, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "parent_location": [ - { - "end_col": 55, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/external/contractURI/acba12aa8a66bb92372f5fdd79fc376f71f4b521ee6979ba2e3213be2ff11068.cairo" - }, - "parent_location": [ - { - "end_col": 17, - "end_line": 252, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "start_col": 6, - "start_line": 252 - }, - "While constructing the external wrapper for:" - ], - "start_col": 44, - "start_line": 1 - }, - "While expanding the reference 'syscall_ptr' in:" - ], - "start_col": 18, - "start_line": 252 - }, - "While constructing the external wrapper for:" - ], - "start_col": 19, - "start_line": 1 - } - }, - "4510": { - "accessible_scopes": [ - "__main__", - "__main__", - "__wrappers__", - "__wrappers__.contractURI" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 110, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/external/contractURI/9684a85e93c782014ca14293edea4eb2502039a5a7b6538ecd39c56faaf12529.cairo" - }, - "parent_location": [ - { - "end_col": 64, - "end_line": 252, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "parent_location": [ - { - "end_col": 82, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/external/contractURI/acba12aa8a66bb92372f5fdd79fc376f71f4b521ee6979ba2e3213be2ff11068.cairo" - }, - "parent_location": [ - { - "end_col": 17, - "end_line": 252, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "start_col": 6, - "start_line": 252 - }, - "While constructing the external wrapper for:" - ], - "start_col": 70, - "start_line": 1 - }, - "While expanding the reference 'pedersen_ptr' in:" - ], - "start_col": 38, - "start_line": 252 - }, - "While constructing the external wrapper for:" - ], - "start_col": 20, - "start_line": 1 - } - }, - "4511": { - "accessible_scopes": [ - "__main__", - "__main__", - "__wrappers__", - "__wrappers__.contractURI" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 67, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/external/contractURI/741ea357d6336b0bed7bf0472425acd0311d543883b803388880e60a232040c7.cairo" - }, - "parent_location": [ - { - "end_col": 81, - "end_line": 252, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "parent_location": [ - { - "end_col": 115, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/external/contractURI/acba12aa8a66bb92372f5fdd79fc376f71f4b521ee6979ba2e3213be2ff11068.cairo" - }, - "parent_location": [ - { - "end_col": 17, - "end_line": 252, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "start_col": 6, - "start_line": 252 - }, - "While constructing the external wrapper for:" - ], - "start_col": 100, - "start_line": 1 - }, - "While expanding the reference 'range_check_ptr' in:" - ], - "start_col": 66, - "start_line": 252 - }, - "While constructing the external wrapper for:" - ], - "start_col": 23, - "start_line": 1 - } - }, - "4512": { - "accessible_scopes": [ - "__main__", - "__main__", - "__wrappers__", - "__wrappers__.contractURI" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 17, - "end_line": 252, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "start_col": 6, - "start_line": 252 - } - }, - "4514": { - "accessible_scopes": [ - "__main__", - "__main__", - "__wrappers__", - "__wrappers__.contractURI" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 55, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/external/contractURI/acba12aa8a66bb92372f5fdd79fc376f71f4b521ee6979ba2e3213be2ff11068.cairo" - }, - "parent_location": [ - { - "end_col": 17, - "end_line": 252, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "parent_location": [ - { - "end_col": 55, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/external/contractURI/acba12aa8a66bb92372f5fdd79fc376f71f4b521ee6979ba2e3213be2ff11068.cairo" - }, - "parent_location": [ - { - "end_col": 17, - "end_line": 252, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "start_col": 6, - "start_line": 252 - }, - "While constructing the external wrapper for:" - ], - "start_col": 44, - "start_line": 1 - }, - "While auto generating local variable for 'syscall_ptr'." - ], - "start_col": 6, - "start_line": 252 - }, - "While constructing the external wrapper for:" - ], - "start_col": 44, - "start_line": 1 - } - }, - "4515": { - "accessible_scopes": [ - "__main__", - "__main__", - "__wrappers__", - "__wrappers__.contractURI" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 82, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/external/contractURI/acba12aa8a66bb92372f5fdd79fc376f71f4b521ee6979ba2e3213be2ff11068.cairo" - }, - "parent_location": [ - { - "end_col": 17, - "end_line": 252, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "parent_location": [ - { - "end_col": 82, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/external/contractURI/acba12aa8a66bb92372f5fdd79fc376f71f4b521ee6979ba2e3213be2ff11068.cairo" - }, - "parent_location": [ - { - "end_col": 17, - "end_line": 252, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "start_col": 6, - "start_line": 252 - }, - "While constructing the external wrapper for:" - ], - "start_col": 70, - "start_line": 1 - }, - "While auto generating local variable for 'pedersen_ptr'." - ], - "start_col": 6, - "start_line": 252 - }, - "While constructing the external wrapper for:" - ], - "start_col": 70, - "start_line": 1 - } - }, - "4516": { - "accessible_scopes": [ - "__main__", - "__main__", - "__wrappers__", - "__wrappers__.contractURI" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 115, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/external/contractURI/acba12aa8a66bb92372f5fdd79fc376f71f4b521ee6979ba2e3213be2ff11068.cairo" - }, - "parent_location": [ - { - "end_col": 17, - "end_line": 252, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "parent_location": [ - { - "end_col": 100, - "end_line": 2, - "input_file": { - "filename": "autogen/starknet/external/contractURI/acba12aa8a66bb92372f5fdd79fc376f71f4b521ee6979ba2e3213be2ff11068.cairo" - }, - "parent_location": [ - { - "end_col": 17, - "end_line": 252, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "start_col": 6, - "start_line": 252 - }, - "While constructing the external wrapper for:" - ], - "start_col": 85, - "start_line": 2 - }, - "While expanding the reference 'range_check_ptr' in:" - ], - "start_col": 6, - "start_line": 252 - }, - "While constructing the external wrapper for:" - ], - "start_col": 100, - "start_line": 1 - } - }, - "4517": { - "accessible_scopes": [ - "__main__", - "__main__", - "__wrappers__", - "__wrappers__.contractURI" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 101, - "end_line": 2, - "input_file": { - "filename": "autogen/starknet/external/contractURI/acba12aa8a66bb92372f5fdd79fc376f71f4b521ee6979ba2e3213be2ff11068.cairo" - }, - "parent_location": [ - { - "end_col": 17, - "end_line": 252, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "start_col": 6, - "start_line": 252 - }, - "While constructing the external wrapper for:" - ], - "start_col": 48, - "start_line": 2 - } - }, - "4519": { - "accessible_scopes": [ - "__main__", - "__main__", - "__wrappers__", - "__wrappers__.contractURI" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 55, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/external/contractURI/acba12aa8a66bb92372f5fdd79fc376f71f4b521ee6979ba2e3213be2ff11068.cairo" - }, - "parent_location": [ - { - "end_col": 17, - "end_line": 252, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "parent_location": [ - { - "end_col": 55, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/external/contractURI/acba12aa8a66bb92372f5fdd79fc376f71f4b521ee6979ba2e3213be2ff11068.cairo" - }, - "parent_location": [ - { - "end_col": 17, - "end_line": 252, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "parent_location": [ - { - "end_col": 20, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/external/contractURI/da17921a4e81c09e730800bbf23bfdbe5e9e6bfaedc59d80fbf62087fa43c27d.cairo" - }, - "parent_location": [ - { - "end_col": 17, - "end_line": 252, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "start_col": 6, - "start_line": 252 - }, - "While constructing the external wrapper for:" - ], - "start_col": 9, - "start_line": 1 - }, - "While expanding the reference 'syscall_ptr' in:" - ], - "start_col": 6, - "start_line": 252 - }, - "While constructing the external wrapper for:" - ], - "start_col": 44, - "start_line": 1 - }, - "While auto generating local variable for 'syscall_ptr'." - ], - "start_col": 6, - "start_line": 252 - }, - "While constructing the external wrapper for:" - ], - "start_col": 44, - "start_line": 1 - } - }, - "4520": { - "accessible_scopes": [ - "__main__", - "__main__", - "__wrappers__", - "__wrappers__.contractURI" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 82, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/external/contractURI/acba12aa8a66bb92372f5fdd79fc376f71f4b521ee6979ba2e3213be2ff11068.cairo" - }, - "parent_location": [ - { - "end_col": 17, - "end_line": 252, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "parent_location": [ - { - "end_col": 82, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/external/contractURI/acba12aa8a66bb92372f5fdd79fc376f71f4b521ee6979ba2e3213be2ff11068.cairo" - }, - "parent_location": [ - { - "end_col": 17, - "end_line": 252, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "parent_location": [ - { - "end_col": 33, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/external/contractURI/da17921a4e81c09e730800bbf23bfdbe5e9e6bfaedc59d80fbf62087fa43c27d.cairo" - }, - "parent_location": [ - { - "end_col": 17, - "end_line": 252, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "start_col": 6, - "start_line": 252 - }, - "While constructing the external wrapper for:" - ], - "start_col": 21, - "start_line": 1 - }, - "While expanding the reference 'pedersen_ptr' in:" - ], - "start_col": 6, - "start_line": 252 - }, - "While constructing the external wrapper for:" - ], - "start_col": 70, - "start_line": 1 - }, - "While auto generating local variable for 'pedersen_ptr'." - ], - "start_col": 6, - "start_line": 252 - }, - "While constructing the external wrapper for:" - ], - "start_col": 70, - "start_line": 1 - } - }, - "4521": { - "accessible_scopes": [ - "__main__", - "__main__", - "__wrappers__", - "__wrappers__.contractURI" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 21, - "end_line": 2, - "input_file": { - "filename": "autogen/starknet/external/contractURI/acba12aa8a66bb92372f5fdd79fc376f71f4b521ee6979ba2e3213be2ff11068.cairo" - }, - "parent_location": [ - { - "end_col": 17, - "end_line": 252, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "parent_location": [ - { - "end_col": 49, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/external/contractURI/da17921a4e81c09e730800bbf23bfdbe5e9e6bfaedc59d80fbf62087fa43c27d.cairo" - }, - "parent_location": [ - { - "end_col": 17, - "end_line": 252, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "start_col": 6, - "start_line": 252 - }, - "While constructing the external wrapper for:" - ], - "start_col": 34, - "start_line": 1 - }, - "While expanding the reference 'range_check_ptr' in:" - ], - "start_col": 6, - "start_line": 252 - }, - "While constructing the external wrapper for:" - ], - "start_col": 6, - "start_line": 2 - } - }, - "4522": { - "accessible_scopes": [ - "__main__", - "__main__", - "__wrappers__", - "__wrappers__.contractURI" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 35, - "end_line": 2, - "input_file": { - "filename": "autogen/starknet/external/contractURI/acba12aa8a66bb92372f5fdd79fc376f71f4b521ee6979ba2e3213be2ff11068.cairo" - }, - "parent_location": [ - { - "end_col": 17, - "end_line": 252, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "parent_location": [ - { - "end_col": 62, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/external/contractURI/da17921a4e81c09e730800bbf23bfdbe5e9e6bfaedc59d80fbf62087fa43c27d.cairo" - }, - "parent_location": [ - { - "end_col": 17, - "end_line": 252, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "start_col": 6, - "start_line": 252 - }, - "While constructing the external wrapper for:" - ], - "start_col": 50, - "start_line": 1 - }, - "While expanding the reference 'retdata_size' in:" - ], - "start_col": 6, - "start_line": 252 - }, - "While constructing the external wrapper for:" - ], - "start_col": 23, - "start_line": 2 - } - }, - "4523": { - "accessible_scopes": [ - "__main__", - "__main__", - "__wrappers__", - "__wrappers__.contractURI" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 44, - "end_line": 2, - "input_file": { - "filename": "autogen/starknet/external/contractURI/acba12aa8a66bb92372f5fdd79fc376f71f4b521ee6979ba2e3213be2ff11068.cairo" - }, - "parent_location": [ - { - "end_col": 17, - "end_line": 252, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "parent_location": [ - { - "end_col": 70, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/external/contractURI/da17921a4e81c09e730800bbf23bfdbe5e9e6bfaedc59d80fbf62087fa43c27d.cairo" - }, - "parent_location": [ - { - "end_col": 17, - "end_line": 252, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "start_col": 6, - "start_line": 252 - }, - "While constructing the external wrapper for:" - ], - "start_col": 63, - "start_line": 1 - }, - "While expanding the reference 'retdata' in:" - ], - "start_col": 6, - "start_line": 252 - }, - "While constructing the external wrapper for:" - ], - "start_col": 37, - "start_line": 2 - } - }, - "4524": { - "accessible_scopes": [ - "__main__", - "__main__", - "__wrappers__", - "__wrappers__.contractURI" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 72, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/external/contractURI/da17921a4e81c09e730800bbf23bfdbe5e9e6bfaedc59d80fbf62087fa43c27d.cairo" - }, - "parent_location": [ - { - "end_col": 17, - "end_line": 252, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "start_col": 6, - "start_line": 252 - }, - "While constructing the external wrapper for:" - ], - "start_col": 1, - "start_line": 1 - } - }, - "4525": { - "accessible_scopes": [ - "__main__", - "__main__", - "__main__.initialize" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 35, - "end_line": 396, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "parent_location": [ - { - "end_col": 33, - "end_line": 13, - "input_file": { - "filename": "autogen/starknet/storage_var/initialized/decl.cairo" - }, - "parent_location": [ - { - "end_col": 44, - "end_line": 404, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "start_col": 26, - "start_line": 404 - }, - "While trying to retrieve the implicit argument 'syscall_ptr' in:" - ], - "start_col": 15, - "start_line": 13 - }, - "While expanding the reference 'syscall_ptr' in:" - ], - "start_col": 17, - "start_line": 396 - } - }, - "4526": { - "accessible_scopes": [ - "__main__", - "__main__", - "__main__.initialize" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 63, - "end_line": 396, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "parent_location": [ - { - "end_col": 61, - "end_line": 13, - "input_file": { - "filename": "autogen/starknet/storage_var/initialized/decl.cairo" - }, - "parent_location": [ - { - "end_col": 44, - "end_line": 404, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "start_col": 26, - "start_line": 404 - }, - "While trying to retrieve the implicit argument 'pedersen_ptr' in:" - ], - "start_col": 35, - "start_line": 13 - }, - "While expanding the reference 'pedersen_ptr' in:" - ], - "start_col": 37, - "start_line": 396 - } - }, - "4527": { - "accessible_scopes": [ - "__main__", - "__main__", - "__main__.initialize" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 80, - "end_line": 396, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "parent_location": [ - { - "end_col": 78, - "end_line": 13, - "input_file": { - "filename": "autogen/starknet/storage_var/initialized/decl.cairo" - }, - "parent_location": [ - { - "end_col": 44, - "end_line": 404, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "start_col": 26, - "start_line": 404 - }, - "While trying to retrieve the implicit argument 'range_check_ptr' in:" - ], - "start_col": 63, - "start_line": 13 - }, - "While expanding the reference 'range_check_ptr' in:" - ], - "start_col": 65, - "start_line": 396 - } - }, - "4528": { - "accessible_scopes": [ - "__main__", - "__main__", - "__main__.initialize" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 44, - "end_line": 404, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "start_col": 26, - "start_line": 404 - } - }, - "4530": { - "accessible_scopes": [ - "__main__", - "__main__", - "__main__.initialize" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 29, - "end_line": 405, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "start_col": 5, - "start_line": 405 - } - }, - "4532": { - "accessible_scopes": [ - "__main__", - "__main__", - "__main__.initialize" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 33, - "end_line": 13, - "input_file": { - "filename": "autogen/starknet/storage_var/initialized/decl.cairo" - }, - "parent_location": [ - { - "end_col": 44, - "end_line": 404, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "parent_location": [ - { - "end_col": 40, - "end_line": 76, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" - }, - "parent_location": [ - { - "end_col": 37, - "end_line": 406, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "start_col": 5, - "start_line": 406 - }, - "While trying to retrieve the implicit argument 'syscall_ptr' in:" - ], - "start_col": 22, - "start_line": 76 - }, - "While expanding the reference 'syscall_ptr' in:" - ], - "start_col": 26, - "start_line": 404 - }, - "While trying to update the implicit return value 'syscall_ptr' in:" - ], - "start_col": 15, - "start_line": 13 - } - }, - "4533": { - "accessible_scopes": [ - "__main__", - "__main__", - "__main__.initialize" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 61, - "end_line": 13, - "input_file": { - "filename": "autogen/starknet/storage_var/initialized/decl.cairo" - }, - "parent_location": [ - { - "end_col": 44, - "end_line": 404, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "parent_location": [ - { - "end_col": 68, - "end_line": 76, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" - }, - "parent_location": [ - { - "end_col": 37, - "end_line": 406, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "start_col": 5, - "start_line": 406 - }, - "While trying to retrieve the implicit argument 'pedersen_ptr' in:" - ], - "start_col": 42, - "start_line": 76 - }, - "While expanding the reference 'pedersen_ptr' in:" - ], - "start_col": 26, - "start_line": 404 - }, - "While trying to update the implicit return value 'pedersen_ptr' in:" - ], - "start_col": 35, - "start_line": 13 - } - }, - "4534": { - "accessible_scopes": [ - "__main__", - "__main__", - "__main__.initialize" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 78, - "end_line": 13, - "input_file": { - "filename": "autogen/starknet/storage_var/initialized/decl.cairo" - }, - "parent_location": [ - { - "end_col": 44, - "end_line": 404, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "parent_location": [ - { - "end_col": 85, - "end_line": 76, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" - }, - "parent_location": [ - { - "end_col": 37, - "end_line": 406, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "start_col": 5, - "start_line": 406 - }, - "While trying to retrieve the implicit argument 'range_check_ptr' in:" - ], - "start_col": 70, - "start_line": 76 - }, - "While expanding the reference 'range_check_ptr' in:" - ], - "start_col": 26, - "start_line": 404 - }, - "While trying to update the implicit return value 'range_check_ptr' in:" - ], - "start_col": 63, - "start_line": 13 - } - }, - "4535": { - "accessible_scopes": [ - "__main__", - "__main__", - "__main__.initialize" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 15, - "end_line": 397, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "parent_location": [ - { - "end_col": 28, - "end_line": 406, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "start_col": 24, - "start_line": 406 - }, - "While expanding the reference 'name' in:" - ], - "start_col": 5, - "start_line": 397 - } - }, - "4536": { - "accessible_scopes": [ - "__main__", - "__main__", - "__main__.initialize" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 17, - "end_line": 398, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "parent_location": [ - { - "end_col": 36, - "end_line": 406, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "start_col": 30, - "start_line": 406 - }, - "While expanding the reference 'symbol' in:" - ], - "start_col": 5, - "start_line": 398 - } - }, - "4537": { - "accessible_scopes": [ - "__main__", - "__main__", - "__main__.initialize" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 37, - "end_line": 406, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "start_col": 5, - "start_line": 406 - } - }, - "4539": { - "accessible_scopes": [ - "__main__", - "__main__", - "__main__.initialize" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 35, - "end_line": 407, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "start_col": 5, - "start_line": 407 - } - }, - "4541": { - "accessible_scopes": [ - "__main__", - "__main__", - "__main__.initialize" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 16, - "end_line": 399, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "parent_location": [ - { - "end_col": 30, - "end_line": 408, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "start_col": 25, - "start_line": 408 - }, - "While expanding the reference 'owner' in:" - ], - "start_col": 5, - "start_line": 399 - } - }, - "4542": { - "accessible_scopes": [ - "__main__", - "__main__", - "__main__.initialize" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 31, - "end_line": 408, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "start_col": 5, - "start_line": 408 - } - }, - "4544": { - "accessible_scopes": [ - "__main__", - "__main__", - "__main__.initialize" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 22, - "end_line": 400, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "parent_location": [ - { - "end_col": 40, - "end_line": 409, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "start_col": 29, - "start_line": 409 - }, - "While expanding the reference 'merkle_root' in:" - ], - "start_col": 5, - "start_line": 400 - } - }, - "4545": { - "accessible_scopes": [ - "__main__", - "__main__", - "__main__.initialize" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 41, - "end_line": 409, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "start_col": 5, - "start_line": 409 - } - }, - "4547": { - "accessible_scopes": [ - "__main__", - "__main__", - "__main__.initialize" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 25, - "end_line": 401, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "parent_location": [ - { - "end_col": 46, - "end_line": 410, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "start_col": 32, - "start_line": 410 - }, - "While expanding the reference 'max_per_wallet' in:" - ], - "start_col": 5, - "start_line": 401 - } - }, - "4548": { - "accessible_scopes": [ - "__main__", - "__main__", - "__main__.initialize" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 47, - "end_line": 410, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "start_col": 5, - "start_line": 410 - } - }, - "4550": { - "accessible_scopes": [ - "__main__", - "__main__", - "__main__.initialize" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 27, - "end_line": 402, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "parent_location": [ - { - "end_col": 47, - "end_line": 411, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "start_col": 31, - "start_line": 411 - }, - "While expanding the reference 'renderer_address' in:" - ], - "start_col": 5, - "start_line": 402 - } - }, - "4551": { - "accessible_scopes": [ - "__main__", - "__main__", - "__main__.initialize" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 48, - "end_line": 411, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "start_col": 5, - "start_line": 411 - } - }, - "4553": { - "accessible_scopes": [ - "__main__", - "__main__", - "__main__.initialize" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 24, - "end_line": 412, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "start_col": 23, - "start_line": 412 - } - }, - "4555": { - "accessible_scopes": [ - "__main__", - "__main__", - "__main__.initialize" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 25, - "end_line": 412, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "start_col": 5, - "start_line": 412 - } - }, - "4557": { - "accessible_scopes": [ - "__main__", - "__main__", - "__main__.initialize" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 15, - "end_line": 413, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "start_col": 5, - "start_line": 413 - } - }, - "4558": { - "accessible_scopes": [ - "__main__", - "__main__", - "__wrappers__", - "__wrappers__.initialize" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 40, - "end_line": 2, - "input_file": { - "filename": "autogen/starknet/arg_processor/c78355ecc2754d55946f2925c4c255af62ef2b2ddba4e3e4e975bebf3d66daa1.cairo" - }, - "parent_location": [ - { - "end_col": 27, - "end_line": 402, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "parent_location": [ - { - "end_col": 45, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/arg_processor/c31620b02d4d706f0542c989b2aadc01b0981d1f6a5933a8fe4937ace3d70d92.cairo" - }, - "parent_location": [ - { - "end_col": 16, - "end_line": 396, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "parent_location": [ - { - "end_col": 57, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/arg_processor/01cba52f8515996bb9d7070bde81ff39281d096d7024a558efcba6e1fd2402cf.cairo" - }, - "parent_location": [ - { - "end_col": 16, - "end_line": 396, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "start_col": 6, - "start_line": 396 - }, - "While handling calldata of" - ], - "start_col": 35, - "start_line": 1 - }, - "While expanding the reference '__calldata_actual_size' in:" - ], - "start_col": 6, - "start_line": 396 - }, - "While handling calldata of" - ], - "start_col": 31, - "start_line": 1 - }, - "While expanding the reference '__calldata_ptr' in:" - ], - "start_col": 5, - "start_line": 402 - }, - "While handling calldata argument 'renderer_address'" - ], - "start_col": 22, - "start_line": 2 - } - }, - "4560": { - "accessible_scopes": [ - "__main__", - "__main__", - "__wrappers__", - "__wrappers__.initialize" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 58, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/arg_processor/01cba52f8515996bb9d7070bde81ff39281d096d7024a558efcba6e1fd2402cf.cairo" - }, - "parent_location": [ - { - "end_col": 16, - "end_line": 396, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "start_col": 6, - "start_line": 396 - }, - "While handling calldata of" - ], - "start_col": 1, - "start_line": 1 - } - }, - "4561": { - "accessible_scopes": [ - "__main__", - "__main__", - "__wrappers__", - "__wrappers__.initialize" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 64, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/external/initialize/b2c52ca2d2a8fc8791a983086d8716c5eacd0c3d62934914d2286f84b98ff4cb.cairo" - }, - "parent_location": [ - { - "end_col": 35, - "end_line": 396, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "parent_location": [ - { - "end_col": 55, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/external/initialize/98fffa3d7b20f8a177d79ca985c017c6105a8f832599cc3392d95ef2cfd87a05.cairo" - }, - "parent_location": [ - { - "end_col": 16, - "end_line": 396, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "start_col": 6, - "start_line": 396 - }, - "While constructing the external wrapper for:" - ], - "start_col": 44, - "start_line": 1 - }, - "While expanding the reference 'syscall_ptr' in:" - ], - "start_col": 17, - "start_line": 396 - }, - "While constructing the external wrapper for:" - ], - "start_col": 19, - "start_line": 1 - } - }, - "4562": { - "accessible_scopes": [ - "__main__", - "__main__", - "__wrappers__", - "__wrappers__.initialize" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 110, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/external/initialize/9684a85e93c782014ca14293edea4eb2502039a5a7b6538ecd39c56faaf12529.cairo" - }, - "parent_location": [ - { - "end_col": 63, - "end_line": 396, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "parent_location": [ - { - "end_col": 82, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/external/initialize/98fffa3d7b20f8a177d79ca985c017c6105a8f832599cc3392d95ef2cfd87a05.cairo" - }, - "parent_location": [ - { - "end_col": 16, - "end_line": 396, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "start_col": 6, - "start_line": 396 - }, - "While constructing the external wrapper for:" - ], - "start_col": 70, - "start_line": 1 - }, - "While expanding the reference 'pedersen_ptr' in:" - ], - "start_col": 37, - "start_line": 396 - }, - "While constructing the external wrapper for:" - ], - "start_col": 20, - "start_line": 1 - } - }, - "4563": { - "accessible_scopes": [ - "__main__", - "__main__", - "__wrappers__", - "__wrappers__.initialize" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 67, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/external/initialize/741ea357d6336b0bed7bf0472425acd0311d543883b803388880e60a232040c7.cairo" - }, - "parent_location": [ - { - "end_col": 80, - "end_line": 396, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "parent_location": [ - { - "end_col": 115, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/external/initialize/98fffa3d7b20f8a177d79ca985c017c6105a8f832599cc3392d95ef2cfd87a05.cairo" - }, - "parent_location": [ - { - "end_col": 16, - "end_line": 396, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "start_col": 6, - "start_line": 396 - }, - "While constructing the external wrapper for:" - ], - "start_col": 100, - "start_line": 1 - }, - "While expanding the reference 'range_check_ptr' in:" - ], - "start_col": 65, - "start_line": 396 - }, - "While constructing the external wrapper for:" - ], - "start_col": 23, - "start_line": 1 - } - }, - "4564": { - "accessible_scopes": [ - "__main__", - "__main__", - "__wrappers__", - "__wrappers__.initialize" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 43, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/arg_processor/e1eb73cd870ec466294c3700e77817cf3c039ac1384882ddb76383eb87a5da90.cairo" - }, - "parent_location": [ - { - "end_col": 15, - "end_line": 397, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "parent_location": [ - { - "end_col": 141, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/external/initialize/98fffa3d7b20f8a177d79ca985c017c6105a8f832599cc3392d95ef2cfd87a05.cairo" - }, - "parent_location": [ - { - "end_col": 16, - "end_line": 396, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "start_col": 6, - "start_line": 396 - }, - "While constructing the external wrapper for:" - ], - "start_col": 122, - "start_line": 1 - }, - "While expanding the reference '__calldata_arg_name' in:" - ], - "start_col": 5, - "start_line": 397 - }, - "While handling calldata argument 'name'" - ], - "start_col": 27, - "start_line": 1 - } - }, - "4565": { - "accessible_scopes": [ - "__main__", - "__main__", - "__wrappers__", - "__wrappers__.initialize" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 45, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/arg_processor/99058c0781745b3c0332799d723549974cbf489b623dde03906204304de60803.cairo" - }, - "parent_location": [ - { - "end_col": 17, - "end_line": 398, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "parent_location": [ - { - "end_col": 171, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/external/initialize/98fffa3d7b20f8a177d79ca985c017c6105a8f832599cc3392d95ef2cfd87a05.cairo" - }, - "parent_location": [ - { - "end_col": 16, - "end_line": 396, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "start_col": 6, - "start_line": 396 - }, - "While constructing the external wrapper for:" - ], - "start_col": 150, - "start_line": 1 - }, - "While expanding the reference '__calldata_arg_symbol' in:" - ], - "start_col": 5, - "start_line": 398 - }, - "While handling calldata argument 'symbol'" - ], - "start_col": 29, - "start_line": 1 - } - }, - "4566": { - "accessible_scopes": [ - "__main__", - "__main__", - "__wrappers__", - "__wrappers__.initialize" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 44, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/arg_processor/f6a4d9ae897caf37cefd18f7c8da7eee73157818279359aadee282f0fe59cdbc.cairo" - }, - "parent_location": [ - { - "end_col": 16, - "end_line": 399, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "parent_location": [ - { - "end_col": 199, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/external/initialize/98fffa3d7b20f8a177d79ca985c017c6105a8f832599cc3392d95ef2cfd87a05.cairo" - }, - "parent_location": [ - { - "end_col": 16, - "end_line": 396, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "start_col": 6, - "start_line": 396 - }, - "While constructing the external wrapper for:" - ], - "start_col": 179, - "start_line": 1 - }, - "While expanding the reference '__calldata_arg_owner' in:" - ], - "start_col": 5, - "start_line": 399 - }, - "While handling calldata argument 'owner'" - ], - "start_col": 28, - "start_line": 1 - } - }, - "4567": { - "accessible_scopes": [ - "__main__", - "__main__", - "__wrappers__", - "__wrappers__.initialize" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 50, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/arg_processor/721e180cb3ac704934655c034d4d45bf2d0ab4353d430b4f2bbda2a388c131b2.cairo" - }, - "parent_location": [ - { - "end_col": 22, - "end_line": 400, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "parent_location": [ - { - "end_col": 239, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/external/initialize/98fffa3d7b20f8a177d79ca985c017c6105a8f832599cc3392d95ef2cfd87a05.cairo" - }, - "parent_location": [ - { - "end_col": 16, - "end_line": 396, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "start_col": 6, - "start_line": 396 - }, - "While constructing the external wrapper for:" - ], - "start_col": 213, - "start_line": 1 - }, - "While expanding the reference '__calldata_arg_merkle_root' in:" - ], - "start_col": 5, - "start_line": 400 - }, - "While handling calldata argument 'merkle_root'" - ], - "start_col": 34, - "start_line": 1 - } - }, - "4568": { - "accessible_scopes": [ - "__main__", - "__main__", - "__wrappers__", - "__wrappers__.initialize" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 53, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/arg_processor/e35382e271586e2ad95e0c2b81d70c0cfb65ce154855d90ea95dcf9e76667535.cairo" - }, - "parent_location": [ - { - "end_col": 25, - "end_line": 401, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "parent_location": [ - { - "end_col": 285, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/external/initialize/98fffa3d7b20f8a177d79ca985c017c6105a8f832599cc3392d95ef2cfd87a05.cairo" - }, - "parent_location": [ - { - "end_col": 16, - "end_line": 396, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "start_col": 6, - "start_line": 396 - }, - "While constructing the external wrapper for:" - ], - "start_col": 256, - "start_line": 1 - }, - "While expanding the reference '__calldata_arg_max_per_wallet' in:" - ], - "start_col": 5, - "start_line": 401 - }, - "While handling calldata argument 'max_per_wallet'" - ], - "start_col": 37, - "start_line": 1 - } - }, - "4569": { - "accessible_scopes": [ - "__main__", - "__main__", - "__wrappers__", - "__wrappers__.initialize" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 55, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/arg_processor/c78355ecc2754d55946f2925c4c255af62ef2b2ddba4e3e4e975bebf3d66daa1.cairo" - }, - "parent_location": [ - { - "end_col": 27, - "end_line": 402, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "parent_location": [ - { - "end_col": 335, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/external/initialize/98fffa3d7b20f8a177d79ca985c017c6105a8f832599cc3392d95ef2cfd87a05.cairo" - }, - "parent_location": [ - { - "end_col": 16, - "end_line": 396, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "start_col": 6, - "start_line": 396 - }, - "While constructing the external wrapper for:" - ], - "start_col": 304, - "start_line": 1 - }, - "While expanding the reference '__calldata_arg_renderer_address' in:" - ], - "start_col": 5, - "start_line": 402 - }, - "While handling calldata argument 'renderer_address'" - ], - "start_col": 39, - "start_line": 1 - } - }, - "4570": { - "accessible_scopes": [ - "__main__", - "__main__", - "__wrappers__", - "__wrappers__.initialize" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 16, - "end_line": 396, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "start_col": 6, - "start_line": 396 - } - }, - "4572": { - "accessible_scopes": [ - "__main__", - "__main__", - "__wrappers__", - "__wrappers__.initialize" - ], - "flow_tracking_data": null, - "hints": [ - { - "location": { - "end_col": 34, - "end_line": 2, - "input_file": { - "filename": "autogen/starknet/external/initialize/98fffa3d7b20f8a177d79ca985c017c6105a8f832599cc3392d95ef2cfd87a05.cairo" - }, - "parent_location": [ - { - "end_col": 16, - "end_line": 396, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "start_col": 6, - "start_line": 396 - }, - "While constructing the external wrapper for:" - ], - "start_col": 1, - "start_line": 2 - }, - "n_prefix_newlines": 0 - } - ], - "inst": { - "end_col": 24, - "end_line": 3, - "input_file": { - "filename": "autogen/starknet/external/initialize/98fffa3d7b20f8a177d79ca985c017c6105a8f832599cc3392d95ef2cfd87a05.cairo" - }, - "parent_location": [ - { - "end_col": 16, - "end_line": 396, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "start_col": 6, - "start_line": 396 - }, - "While constructing the external wrapper for:" - ], - "start_col": 1, - "start_line": 3 - } - }, - "4574": { - "accessible_scopes": [ - "__main__", - "__main__", - "__wrappers__", - "__wrappers__.initialize" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 55, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/external/initialize/98fffa3d7b20f8a177d79ca985c017c6105a8f832599cc3392d95ef2cfd87a05.cairo" - }, - "parent_location": [ - { - "end_col": 16, - "end_line": 396, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "parent_location": [ - { - "end_col": 20, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/external/initialize/da17921a4e81c09e730800bbf23bfdbe5e9e6bfaedc59d80fbf62087fa43c27d.cairo" - }, - "parent_location": [ - { - "end_col": 16, - "end_line": 396, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "start_col": 6, - "start_line": 396 - }, - "While constructing the external wrapper for:" - ], - "start_col": 9, - "start_line": 1 - }, - "While expanding the reference 'syscall_ptr' in:" - ], - "start_col": 6, - "start_line": 396 - }, - "While constructing the external wrapper for:" - ], - "start_col": 44, - "start_line": 1 - } - }, - "4575": { - "accessible_scopes": [ - "__main__", - "__main__", - "__wrappers__", - "__wrappers__.initialize" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 82, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/external/initialize/98fffa3d7b20f8a177d79ca985c017c6105a8f832599cc3392d95ef2cfd87a05.cairo" - }, - "parent_location": [ - { - "end_col": 16, - "end_line": 396, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "parent_location": [ - { - "end_col": 33, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/external/initialize/da17921a4e81c09e730800bbf23bfdbe5e9e6bfaedc59d80fbf62087fa43c27d.cairo" - }, - "parent_location": [ - { - "end_col": 16, - "end_line": 396, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "start_col": 6, - "start_line": 396 - }, - "While constructing the external wrapper for:" - ], - "start_col": 21, - "start_line": 1 - }, - "While expanding the reference 'pedersen_ptr' in:" - ], - "start_col": 6, - "start_line": 396 - }, - "While constructing the external wrapper for:" - ], - "start_col": 70, - "start_line": 1 - } - }, - "4576": { - "accessible_scopes": [ - "__main__", - "__main__", - "__wrappers__", - "__wrappers__.initialize" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 115, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/external/initialize/98fffa3d7b20f8a177d79ca985c017c6105a8f832599cc3392d95ef2cfd87a05.cairo" - }, - "parent_location": [ - { - "end_col": 16, - "end_line": 396, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "parent_location": [ - { - "end_col": 49, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/external/initialize/da17921a4e81c09e730800bbf23bfdbe5e9e6bfaedc59d80fbf62087fa43c27d.cairo" - }, - "parent_location": [ - { - "end_col": 16, - "end_line": 396, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "start_col": 6, - "start_line": 396 - }, - "While constructing the external wrapper for:" - ], - "start_col": 34, - "start_line": 1 - }, - "While expanding the reference 'range_check_ptr' in:" - ], - "start_col": 6, - "start_line": 396 - }, - "While constructing the external wrapper for:" - ], - "start_col": 100, - "start_line": 1 - } - }, - "4577": { - "accessible_scopes": [ - "__main__", - "__main__", - "__wrappers__", - "__wrappers__.initialize" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 21, - "end_line": 4, - "input_file": { - "filename": "autogen/starknet/external/initialize/98fffa3d7b20f8a177d79ca985c017c6105a8f832599cc3392d95ef2cfd87a05.cairo" - }, - "parent_location": [ - { - "end_col": 16, - "end_line": 396, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "parent_location": [ - { - "end_col": 62, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/external/initialize/da17921a4e81c09e730800bbf23bfdbe5e9e6bfaedc59d80fbf62087fa43c27d.cairo" - }, - "parent_location": [ - { - "end_col": 16, - "end_line": 396, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "start_col": 6, - "start_line": 396 - }, - "While constructing the external wrapper for:" - ], - "start_col": 50, - "start_line": 1 - }, - "While expanding the reference 'retdata_size' in:" - ], - "start_col": 6, - "start_line": 396 - }, - "While constructing the external wrapper for:" - ], - "start_col": 20, - "start_line": 4 - } - }, - "4579": { - "accessible_scopes": [ - "__main__", - "__main__", - "__wrappers__", - "__wrappers__.initialize" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 16, - "end_line": 3, - "input_file": { - "filename": "autogen/starknet/external/initialize/98fffa3d7b20f8a177d79ca985c017c6105a8f832599cc3392d95ef2cfd87a05.cairo" - }, - "parent_location": [ - { - "end_col": 16, - "end_line": 396, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "parent_location": [ - { - "end_col": 70, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/external/initialize/da17921a4e81c09e730800bbf23bfdbe5e9e6bfaedc59d80fbf62087fa43c27d.cairo" - }, - "parent_location": [ - { - "end_col": 16, - "end_line": 396, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "start_col": 6, - "start_line": 396 - }, - "While constructing the external wrapper for:" - ], - "start_col": 63, - "start_line": 1 - }, - "While expanding the reference 'retdata' in:" - ], - "start_col": 6, - "start_line": 396 - }, - "While constructing the external wrapper for:" - ], - "start_col": 9, - "start_line": 3 - } - }, - "4580": { - "accessible_scopes": [ - "__main__", - "__main__", - "__wrappers__", - "__wrappers__.initialize" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 72, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/external/initialize/da17921a4e81c09e730800bbf23bfdbe5e9e6bfaedc59d80fbf62087fa43c27d.cairo" - }, - "parent_location": [ - { - "end_col": 16, - "end_line": 396, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "start_col": 6, - "start_line": 396 - }, - "While constructing the external wrapper for:" - ], - "start_col": 1, - "start_line": 1 - } - }, - "4581": { - "accessible_scopes": [ - "__main__", - "__main__", - "__main__.is_initialized" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 39, - "end_line": 417, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "parent_location": [ - { - "end_col": 33, - "end_line": 13, - "input_file": { - "filename": "autogen/starknet/storage_var/initialized/decl.cairo" - }, - "parent_location": [ - { - "end_col": 44, - "end_line": 420, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "start_col": 26, - "start_line": 420 - }, - "While trying to retrieve the implicit argument 'syscall_ptr' in:" - ], - "start_col": 15, - "start_line": 13 - }, - "While expanding the reference 'syscall_ptr' in:" - ], - "start_col": 21, - "start_line": 417 - } - }, - "4582": { - "accessible_scopes": [ - "__main__", - "__main__", - "__main__.is_initialized" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 67, - "end_line": 417, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "parent_location": [ - { - "end_col": 61, - "end_line": 13, - "input_file": { - "filename": "autogen/starknet/storage_var/initialized/decl.cairo" - }, - "parent_location": [ - { - "end_col": 44, - "end_line": 420, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "start_col": 26, - "start_line": 420 - }, - "While trying to retrieve the implicit argument 'pedersen_ptr' in:" - ], - "start_col": 35, - "start_line": 13 - }, - "While expanding the reference 'pedersen_ptr' in:" - ], - "start_col": 41, - "start_line": 417 - } - }, - "4583": { - "accessible_scopes": [ - "__main__", - "__main__", - "__main__.is_initialized" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 84, - "end_line": 417, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "parent_location": [ - { - "end_col": 78, - "end_line": 13, - "input_file": { - "filename": "autogen/starknet/storage_var/initialized/decl.cairo" - }, - "parent_location": [ - { - "end_col": 44, - "end_line": 420, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "start_col": 26, - "start_line": 420 - }, - "While trying to retrieve the implicit argument 'range_check_ptr' in:" - ], - "start_col": 63, - "start_line": 13 - }, - "While expanding the reference 'range_check_ptr' in:" - ], - "start_col": 69, - "start_line": 417 - } - }, - "4584": { - "accessible_scopes": [ - "__main__", - "__main__", - "__main__.is_initialized" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 44, - "end_line": 420, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "start_col": 26, - "start_line": 420 - } - }, - "4586": { - "accessible_scopes": [ - "__main__", - "__main__", - "__main__.is_initialized" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 31, - "end_line": 421, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "start_col": 5, - "start_line": 421 - } - }, - "4587": { - "accessible_scopes": [ - "__main__", - "__main__", - "__wrappers__", - "__wrappers__.is_initialized_encode_return" - ], - "flow_tracking_data": null, - "hints": [ - { - "location": { - "end_col": 38, - "end_line": 3, - "input_file": { - "filename": "autogen/starknet/external/return/is_initialized/c99ceecf6e21396d4a0ce3c69131d8c5d452cab3b90a24cd92a2105bd59d7aa7.cairo" - }, - "parent_location": [ - { - "end_col": 20, - "end_line": 417, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "start_col": 6, - "start_line": 417 - }, - "While handling return value of" - ], - "start_col": 5, - "start_line": 3 - }, - "n_prefix_newlines": 0 - } - ], - "inst": { - "end_col": 18, - "end_line": 4, - "input_file": { - "filename": "autogen/starknet/external/return/is_initialized/c99ceecf6e21396d4a0ce3c69131d8c5d452cab3b90a24cd92a2105bd59d7aa7.cairo" - }, - "parent_location": [ - { - "end_col": 20, - "end_line": 417, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "start_col": 6, - "start_line": 417 - }, - "While handling return value of" - ], - "start_col": 5, - "start_line": 4 - } - }, - "4589": { - "accessible_scopes": [ - "__main__", - "__main__", - "__wrappers__", - "__wrappers__.is_initialized_encode_return" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 45, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/arg_processor/293368f3a0e12cfcf22314a31e13b9801e95a5b8b2b71822a2fbbdf5a01ea795.cairo" - }, - "parent_location": [ - { - "end_col": 14, - "end_line": 418, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "start_col": 5, - "start_line": 418 - }, - "While handling return value 'res'" - ], - "start_col": 1, - "start_line": 1 - } - }, - "4590": { - "accessible_scopes": [ - "__main__", - "__main__", - "__wrappers__", - "__wrappers__.is_initialized_encode_return" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 48, - "end_line": 2, - "input_file": { - "filename": "autogen/starknet/arg_processor/293368f3a0e12cfcf22314a31e13b9801e95a5b8b2b71822a2fbbdf5a01ea795.cairo" - }, - "parent_location": [ - { - "end_col": 14, - "end_line": 418, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "parent_location": [ - { - "end_col": 36, - "end_line": 11, - "input_file": { - "filename": "autogen/starknet/external/return/is_initialized/c99ceecf6e21396d4a0ce3c69131d8c5d452cab3b90a24cd92a2105bd59d7aa7.cairo" - }, - "parent_location": [ - { - "end_col": 20, - "end_line": 417, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "start_col": 6, - "start_line": 417 - }, - "While handling return value of" - ], - "start_col": 18, - "start_line": 11 - }, - "While expanding the reference '__return_value_ptr' in:" - ], - "start_col": 5, - "start_line": 418 - }, - "While handling return value 'res'" - ], - "start_col": 26, - "start_line": 2 - } - }, - "4592": { - "accessible_scopes": [ - "__main__", - "__main__", - "__wrappers__", - "__wrappers__.is_initialized_encode_return" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 74, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/external/return/is_initialized/c99ceecf6e21396d4a0ce3c69131d8c5d452cab3b90a24cd92a2105bd59d7aa7.cairo" - }, - "parent_location": [ - { - "end_col": 20, - "end_line": 417, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "parent_location": [ - { - "end_col": 40, - "end_line": 10, - "input_file": { - "filename": "autogen/starknet/external/return/is_initialized/c99ceecf6e21396d4a0ce3c69131d8c5d452cab3b90a24cd92a2105bd59d7aa7.cairo" - }, - "parent_location": [ - { - "end_col": 20, - "end_line": 417, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "start_col": 6, - "start_line": 417 - }, - "While handling return value of" - ], - "start_col": 25, - "start_line": 10 - }, - "While expanding the reference 'range_check_ptr' in:" - ], - "start_col": 6, - "start_line": 417 - }, - "While handling return value of" - ], - "start_col": 59, - "start_line": 1 - } - }, - "4593": { - "accessible_scopes": [ - "__main__", - "__main__", - "__wrappers__", - "__wrappers__.is_initialized_encode_return" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 63, - "end_line": 11, - "input_file": { - "filename": "autogen/starknet/external/return/is_initialized/c99ceecf6e21396d4a0ce3c69131d8c5d452cab3b90a24cd92a2105bd59d7aa7.cairo" - }, - "parent_location": [ - { - "end_col": 20, - "end_line": 417, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "start_col": 6, - "start_line": 417 - }, - "While handling return value of" - ], - "start_col": 18, - "start_line": 11 - } - }, - "4594": { - "accessible_scopes": [ - "__main__", - "__main__", - "__wrappers__", - "__wrappers__.is_initialized_encode_return" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 35, - "end_line": 5, - "input_file": { - "filename": "autogen/starknet/external/return/is_initialized/c99ceecf6e21396d4a0ce3c69131d8c5d452cab3b90a24cd92a2105bd59d7aa7.cairo" - }, - "parent_location": [ - { - "end_col": 20, - "end_line": 417, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "parent_location": [ - { - "end_col": 38, - "end_line": 12, - "input_file": { - "filename": "autogen/starknet/external/return/is_initialized/c99ceecf6e21396d4a0ce3c69131d8c5d452cab3b90a24cd92a2105bd59d7aa7.cairo" - }, - "parent_location": [ - { - "end_col": 20, - "end_line": 417, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "start_col": 6, - "start_line": 417 - }, - "While handling return value of" - ], - "start_col": 14, - "start_line": 12 - }, - "While expanding the reference '__return_value_ptr_start' in:" - ], - "start_col": 6, - "start_line": 417 - }, - "While handling return value of" - ], - "start_col": 11, - "start_line": 5 - } - }, - "4595": { - "accessible_scopes": [ - "__main__", - "__main__", - "__wrappers__", - "__wrappers__.is_initialized_encode_return" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 40, - "end_line": 12, - "input_file": { - "filename": "autogen/starknet/external/return/is_initialized/c99ceecf6e21396d4a0ce3c69131d8c5d452cab3b90a24cd92a2105bd59d7aa7.cairo" - }, - "parent_location": [ - { - "end_col": 20, - "end_line": 417, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "start_col": 6, - "start_line": 417 - }, - "While handling return value of" - ], - "start_col": 5, - "start_line": 9 - } - }, - "4596": { - "accessible_scopes": [ - "__main__", - "__main__", - "__wrappers__", - "__wrappers__.is_initialized" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 58, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/arg_processor/01cba52f8515996bb9d7070bde81ff39281d096d7024a558efcba6e1fd2402cf.cairo" - }, - "parent_location": [ - { - "end_col": 20, - "end_line": 417, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "start_col": 6, - "start_line": 417 - }, - "While handling calldata of" - ], - "start_col": 1, - "start_line": 1 - } - }, - "4597": { - "accessible_scopes": [ - "__main__", - "__main__", - "__wrappers__", - "__wrappers__.is_initialized" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 64, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/external/is_initialized/b2c52ca2d2a8fc8791a983086d8716c5eacd0c3d62934914d2286f84b98ff4cb.cairo" - }, - "parent_location": [ - { - "end_col": 39, - "end_line": 417, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "parent_location": [ - { - "end_col": 55, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/external/is_initialized/50c3501112c017187b4c12bebdfd953af0bc789f5dc55376df4d428435913d0e.cairo" - }, - "parent_location": [ - { - "end_col": 20, - "end_line": 417, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "start_col": 6, - "start_line": 417 - }, - "While constructing the external wrapper for:" - ], - "start_col": 44, - "start_line": 1 - }, - "While expanding the reference 'syscall_ptr' in:" - ], - "start_col": 21, - "start_line": 417 - }, - "While constructing the external wrapper for:" - ], - "start_col": 19, - "start_line": 1 - } - }, - "4598": { - "accessible_scopes": [ - "__main__", - "__main__", - "__wrappers__", - "__wrappers__.is_initialized" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 110, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/external/is_initialized/9684a85e93c782014ca14293edea4eb2502039a5a7b6538ecd39c56faaf12529.cairo" - }, - "parent_location": [ - { - "end_col": 67, - "end_line": 417, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "parent_location": [ - { - "end_col": 82, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/external/is_initialized/50c3501112c017187b4c12bebdfd953af0bc789f5dc55376df4d428435913d0e.cairo" - }, - "parent_location": [ - { - "end_col": 20, - "end_line": 417, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "start_col": 6, - "start_line": 417 - }, - "While constructing the external wrapper for:" - ], - "start_col": 70, - "start_line": 1 - }, - "While expanding the reference 'pedersen_ptr' in:" - ], - "start_col": 41, - "start_line": 417 - }, - "While constructing the external wrapper for:" - ], - "start_col": 20, - "start_line": 1 - } - }, - "4599": { - "accessible_scopes": [ - "__main__", - "__main__", - "__wrappers__", - "__wrappers__.is_initialized" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 67, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/external/is_initialized/741ea357d6336b0bed7bf0472425acd0311d543883b803388880e60a232040c7.cairo" - }, - "parent_location": [ - { - "end_col": 84, - "end_line": 417, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "parent_location": [ - { - "end_col": 115, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/external/is_initialized/50c3501112c017187b4c12bebdfd953af0bc789f5dc55376df4d428435913d0e.cairo" - }, - "parent_location": [ - { - "end_col": 20, - "end_line": 417, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "start_col": 6, - "start_line": 417 - }, - "While constructing the external wrapper for:" - ], - "start_col": 100, - "start_line": 1 - }, - "While expanding the reference 'range_check_ptr' in:" - ], - "start_col": 69, - "start_line": 417 - }, - "While constructing the external wrapper for:" - ], - "start_col": 23, - "start_line": 1 - } - }, - "4600": { - "accessible_scopes": [ - "__main__", - "__main__", - "__wrappers__", - "__wrappers__.is_initialized" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 20, - "end_line": 417, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "start_col": 6, - "start_line": 417 - } - }, - "4602": { - "accessible_scopes": [ - "__main__", - "__main__", - "__wrappers__", - "__wrappers__.is_initialized" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 115, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/external/is_initialized/50c3501112c017187b4c12bebdfd953af0bc789f5dc55376df4d428435913d0e.cairo" - }, - "parent_location": [ - { - "end_col": 20, - "end_line": 417, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "parent_location": [ - { - "end_col": 103, - "end_line": 2, - "input_file": { - "filename": "autogen/starknet/external/is_initialized/50c3501112c017187b4c12bebdfd953af0bc789f5dc55376df4d428435913d0e.cairo" - }, - "parent_location": [ - { - "end_col": 20, - "end_line": 417, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "start_col": 6, - "start_line": 417 - }, - "While constructing the external wrapper for:" - ], - "start_col": 88, - "start_line": 2 - }, - "While expanding the reference 'range_check_ptr' in:" - ], - "start_col": 6, - "start_line": 417 - }, - "While constructing the external wrapper for:" - ], - "start_col": 100, - "start_line": 1 - } - }, - "4603": { - "accessible_scopes": [ - "__main__", - "__main__", - "__wrappers__", - "__wrappers__.is_initialized" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 104, - "end_line": 2, - "input_file": { - "filename": "autogen/starknet/external/is_initialized/50c3501112c017187b4c12bebdfd953af0bc789f5dc55376df4d428435913d0e.cairo" - }, - "parent_location": [ - { - "end_col": 20, - "end_line": 417, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "start_col": 6, - "start_line": 417 - }, - "While constructing the external wrapper for:" - ], - "start_col": 48, - "start_line": 2 - } - }, - "4605": { - "accessible_scopes": [ - "__main__", - "__main__", - "__wrappers__", - "__wrappers__.is_initialized" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 55, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/external/is_initialized/50c3501112c017187b4c12bebdfd953af0bc789f5dc55376df4d428435913d0e.cairo" - }, - "parent_location": [ - { - "end_col": 20, - "end_line": 417, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "parent_location": [ - { - "end_col": 20, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/external/is_initialized/da17921a4e81c09e730800bbf23bfdbe5e9e6bfaedc59d80fbf62087fa43c27d.cairo" - }, - "parent_location": [ - { - "end_col": 20, - "end_line": 417, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "start_col": 6, - "start_line": 417 - }, - "While constructing the external wrapper for:" - ], - "start_col": 9, - "start_line": 1 - }, - "While expanding the reference 'syscall_ptr' in:" - ], - "start_col": 6, - "start_line": 417 - }, - "While constructing the external wrapper for:" - ], - "start_col": 44, - "start_line": 1 - } - }, - "4606": { - "accessible_scopes": [ - "__main__", - "__main__", - "__wrappers__", - "__wrappers__.is_initialized" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 82, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/external/is_initialized/50c3501112c017187b4c12bebdfd953af0bc789f5dc55376df4d428435913d0e.cairo" - }, - "parent_location": [ - { - "end_col": 20, - "end_line": 417, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "parent_location": [ - { - "end_col": 33, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/external/is_initialized/da17921a4e81c09e730800bbf23bfdbe5e9e6bfaedc59d80fbf62087fa43c27d.cairo" - }, - "parent_location": [ - { - "end_col": 20, - "end_line": 417, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "start_col": 6, - "start_line": 417 - }, - "While constructing the external wrapper for:" - ], - "start_col": 21, - "start_line": 1 - }, - "While expanding the reference 'pedersen_ptr' in:" - ], - "start_col": 6, - "start_line": 417 - }, - "While constructing the external wrapper for:" - ], - "start_col": 70, - "start_line": 1 - } - }, - "4607": { - "accessible_scopes": [ - "__main__", - "__main__", - "__wrappers__", - "__wrappers__.is_initialized" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 21, - "end_line": 2, - "input_file": { - "filename": "autogen/starknet/external/is_initialized/50c3501112c017187b4c12bebdfd953af0bc789f5dc55376df4d428435913d0e.cairo" - }, - "parent_location": [ - { - "end_col": 20, - "end_line": 417, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "parent_location": [ - { - "end_col": 49, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/external/is_initialized/da17921a4e81c09e730800bbf23bfdbe5e9e6bfaedc59d80fbf62087fa43c27d.cairo" - }, - "parent_location": [ - { - "end_col": 20, - "end_line": 417, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "start_col": 6, - "start_line": 417 - }, - "While constructing the external wrapper for:" - ], - "start_col": 34, - "start_line": 1 - }, - "While expanding the reference 'range_check_ptr' in:" - ], - "start_col": 6, - "start_line": 417 - }, - "While constructing the external wrapper for:" - ], - "start_col": 6, - "start_line": 2 - } - }, - "4608": { - "accessible_scopes": [ - "__main__", - "__main__", - "__wrappers__", - "__wrappers__.is_initialized" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 35, - "end_line": 2, - "input_file": { - "filename": "autogen/starknet/external/is_initialized/50c3501112c017187b4c12bebdfd953af0bc789f5dc55376df4d428435913d0e.cairo" - }, - "parent_location": [ - { - "end_col": 20, - "end_line": 417, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "parent_location": [ - { - "end_col": 62, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/external/is_initialized/da17921a4e81c09e730800bbf23bfdbe5e9e6bfaedc59d80fbf62087fa43c27d.cairo" - }, - "parent_location": [ - { - "end_col": 20, - "end_line": 417, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "start_col": 6, - "start_line": 417 - }, - "While constructing the external wrapper for:" - ], - "start_col": 50, - "start_line": 1 - }, - "While expanding the reference 'retdata_size' in:" - ], - "start_col": 6, - "start_line": 417 - }, - "While constructing the external wrapper for:" - ], - "start_col": 23, - "start_line": 2 - } - }, - "4609": { - "accessible_scopes": [ - "__main__", - "__main__", - "__wrappers__", - "__wrappers__.is_initialized" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 44, - "end_line": 2, - "input_file": { - "filename": "autogen/starknet/external/is_initialized/50c3501112c017187b4c12bebdfd953af0bc789f5dc55376df4d428435913d0e.cairo" - }, - "parent_location": [ - { - "end_col": 20, - "end_line": 417, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "parent_location": [ - { - "end_col": 70, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/external/is_initialized/da17921a4e81c09e730800bbf23bfdbe5e9e6bfaedc59d80fbf62087fa43c27d.cairo" - }, - "parent_location": [ - { - "end_col": 20, - "end_line": 417, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "start_col": 6, - "start_line": 417 - }, - "While constructing the external wrapper for:" - ], - "start_col": 63, - "start_line": 1 - }, - "While expanding the reference 'retdata' in:" - ], - "start_col": 6, - "start_line": 417 - }, - "While constructing the external wrapper for:" - ], - "start_col": 37, - "start_line": 2 - } - }, - "4610": { - "accessible_scopes": [ - "__main__", - "__main__", - "__wrappers__", - "__wrappers__.is_initialized" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 72, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/external/is_initialized/da17921a4e81c09e730800bbf23bfdbe5e9e6bfaedc59d80fbf62087fa43c27d.cairo" - }, - "parent_location": [ - { - "end_col": 20, - "end_line": 417, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "start_col": 6, - "start_line": 417 - }, - "While constructing the external wrapper for:" - ], - "start_col": 1, - "start_line": 1 - } - }, - "4611": { - "accessible_scopes": [ - "__main__", - "__main__", - "__main__.totalSupply" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 64, - "end_line": 429, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "parent_location": [ - { - "end_col": 41, - "end_line": 53, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" - }, - "parent_location": [ - { - "end_col": 65, - "end_line": 432, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "start_col": 34, - "start_line": 432 - }, - "While trying to retrieve the implicit argument 'syscall_ptr' in:" - ], - "start_col": 23, - "start_line": 53 - }, - "While expanding the reference 'syscall_ptr' in:" - ], - "start_col": 46, - "start_line": 429 - } - }, - "4612": { - "accessible_scopes": [ - "__main__", - "__main__", - "__main__.totalSupply" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 44, - "end_line": 429, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "parent_location": [ - { - "end_col": 69, - "end_line": 53, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" - }, - "parent_location": [ - { - "end_col": 65, - "end_line": 432, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "start_col": 34, - "start_line": 432 - }, - "While trying to retrieve the implicit argument 'pedersen_ptr' in:" - ], - "start_col": 43, - "start_line": 53 - }, - "While expanding the reference 'pedersen_ptr' in:" - ], - "start_col": 18, - "start_line": 429 - } - }, - "4613": { - "accessible_scopes": [ - "__main__", - "__main__", - "__main__.totalSupply" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 81, - "end_line": 429, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "parent_location": [ - { - "end_col": 86, - "end_line": 53, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" - }, - "parent_location": [ - { - "end_col": 65, - "end_line": 432, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "start_col": 34, - "start_line": 432 - }, - "While trying to retrieve the implicit argument 'range_check_ptr' in:" - ], - "start_col": 71, - "start_line": 53 - }, - "While expanding the reference 'range_check_ptr' in:" - ], - "start_col": 66, - "start_line": 429 - } - }, - "4614": { - "accessible_scopes": [ - "__main__", - "__main__", - "__main__.totalSupply" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 65, - "end_line": 432, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "start_col": 34, - "start_line": 432 - } - }, - "4616": { - "accessible_scopes": [ - "__main__", - "__main__", - "__main__.totalSupply" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 69, - "end_line": 53, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" - }, - "parent_location": [ - { - "end_col": 65, - "end_line": 432, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "parent_location": [ - { - "end_col": 44, - "end_line": 429, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "parent_location": [ - { - "end_col": 27, - "end_line": 433, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "start_col": 5, - "start_line": 433 - }, - "While trying to retrieve the implicit argument 'pedersen_ptr' in:" - ], - "start_col": 18, - "start_line": 429 - }, - "While expanding the reference 'pedersen_ptr' in:" - ], - "start_col": 34, - "start_line": 432 - }, - "While trying to update the implicit return value 'pedersen_ptr' in:" - ], - "start_col": 43, - "start_line": 53 - } - }, - "4617": { - "accessible_scopes": [ - "__main__", - "__main__", - "__main__.totalSupply" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 41, - "end_line": 53, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" - }, - "parent_location": [ - { - "end_col": 65, - "end_line": 432, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "parent_location": [ - { - "end_col": 64, - "end_line": 429, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "parent_location": [ - { - "end_col": 27, - "end_line": 433, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "start_col": 5, - "start_line": 433 - }, - "While trying to retrieve the implicit argument 'syscall_ptr' in:" - ], - "start_col": 46, - "start_line": 429 - }, - "While expanding the reference 'syscall_ptr' in:" - ], - "start_col": 34, - "start_line": 432 - }, - "While trying to update the implicit return value 'syscall_ptr' in:" - ], - "start_col": 23, - "start_line": 53 - } - }, - "4618": { - "accessible_scopes": [ - "__main__", - "__main__", - "__main__.totalSupply" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 86, - "end_line": 53, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" - }, - "parent_location": [ - { - "end_col": 65, - "end_line": 432, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "parent_location": [ - { - "end_col": 81, - "end_line": 429, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "parent_location": [ - { - "end_col": 27, - "end_line": 433, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "start_col": 5, - "start_line": 433 - }, - "While trying to retrieve the implicit argument 'range_check_ptr' in:" - ], - "start_col": 66, - "start_line": 429 - }, - "While expanding the reference 'range_check_ptr' in:" - ], - "start_col": 34, - "start_line": 432 - }, - "While trying to update the implicit return value 'range_check_ptr' in:" - ], - "start_col": 71, - "start_line": 53 - } - }, - "4619": { - "accessible_scopes": [ - "__main__", - "__main__", - "__main__.totalSupply" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 30, - "end_line": 432, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "parent_location": [ - { - "end_col": 24, - "end_line": 433, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "start_col": 13, - "start_line": 433 - }, - "While expanding the reference 'totalSupply' in:" - ], - "start_col": 10, - "start_line": 432 - } - }, - "4620": { - "accessible_scopes": [ - "__main__", - "__main__", - "__main__.totalSupply" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 30, - "end_line": 432, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "parent_location": [ - { - "end_col": 24, - "end_line": 433, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "start_col": 13, - "start_line": 433 - }, - "While expanding the reference 'totalSupply' in:" - ], - "start_col": 10, - "start_line": 432 - } - }, - "4621": { - "accessible_scopes": [ - "__main__", - "__main__", - "__main__.totalSupply" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 27, - "end_line": 433, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "start_col": 5, - "start_line": 433 - } - }, - "4622": { - "accessible_scopes": [ - "__main__", - "__main__", - "__wrappers__", - "__wrappers__.totalSupply_encode_return" - ], - "flow_tracking_data": null, - "hints": [ - { - "location": { - "end_col": 38, - "end_line": 3, - "input_file": { - "filename": "autogen/starknet/external/return/totalSupply/eeeda446bdea67b39cd9f67678f4dfc35c6c1d0744df18691bf4ede77f67f604.cairo" - }, - "parent_location": [ - { - "end_col": 17, - "end_line": 429, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "start_col": 6, - "start_line": 429 - }, - "While handling return value of" - ], - "start_col": 5, - "start_line": 3 - }, - "n_prefix_newlines": 0 - } - ], - "inst": { - "end_col": 18, - "end_line": 4, - "input_file": { - "filename": "autogen/starknet/external/return/totalSupply/eeeda446bdea67b39cd9f67678f4dfc35c6c1d0744df18691bf4ede77f67f604.cairo" - }, - "parent_location": [ - { - "end_col": 17, - "end_line": 429, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "start_col": 6, - "start_line": 429 - }, - "While handling return value of" - ], - "start_col": 5, - "start_line": 4 - } - }, - "4624": { - "accessible_scopes": [ - "__main__", - "__main__", - "__wrappers__", - "__wrappers__.totalSupply_encode_return" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 60, - "end_line": 3, - "input_file": { - "filename": "autogen/starknet/arg_processor/9822619206729a9eadcae854c851238a68f93e9dbd956bc4fa147da27ae12e2e.cairo" - }, - "parent_location": [ - { - "end_col": 25, - "end_line": 430, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "start_col": 5, - "start_line": 430 - }, - "While handling return value 'totalSupply'" - ], - "start_col": 1, - "start_line": 3 - } - }, - "4625": { - "accessible_scopes": [ - "__main__", - "__main__", - "__wrappers__", - "__wrappers__.totalSupply_encode_return" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 60, - "end_line": 4, - "input_file": { - "filename": "autogen/starknet/arg_processor/9822619206729a9eadcae854c851238a68f93e9dbd956bc4fa147da27ae12e2e.cairo" - }, - "parent_location": [ - { - "end_col": 25, - "end_line": 430, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "start_col": 5, - "start_line": 430 - }, - "While handling return value 'totalSupply'" - ], - "start_col": 1, - "start_line": 4 - } - }, - "4626": { - "accessible_scopes": [ - "__main__", - "__main__", - "__wrappers__", - "__wrappers__.totalSupply_encode_return" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 48, - "end_line": 5, - "input_file": { - "filename": "autogen/starknet/arg_processor/9822619206729a9eadcae854c851238a68f93e9dbd956bc4fa147da27ae12e2e.cairo" - }, - "parent_location": [ - { - "end_col": 25, - "end_line": 430, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "parent_location": [ - { - "end_col": 36, - "end_line": 11, - "input_file": { - "filename": "autogen/starknet/external/return/totalSupply/eeeda446bdea67b39cd9f67678f4dfc35c6c1d0744df18691bf4ede77f67f604.cairo" - }, - "parent_location": [ - { - "end_col": 17, - "end_line": 429, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "start_col": 6, - "start_line": 429 - }, - "While handling return value of" - ], - "start_col": 18, - "start_line": 11 - }, - "While expanding the reference '__return_value_ptr' in:" - ], - "start_col": 5, - "start_line": 430 - }, - "While handling return value 'totalSupply'" - ], - "start_col": 26, - "start_line": 5 - } - }, - "4628": { - "accessible_scopes": [ - "__main__", - "__main__", - "__wrappers__", - "__wrappers__.totalSupply_encode_return" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 113, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/external/return/totalSupply/eeeda446bdea67b39cd9f67678f4dfc35c6c1d0744df18691bf4ede77f67f604.cairo" - }, - "parent_location": [ - { - "end_col": 17, - "end_line": 429, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "parent_location": [ - { - "end_col": 40, - "end_line": 10, - "input_file": { - "filename": "autogen/starknet/external/return/totalSupply/eeeda446bdea67b39cd9f67678f4dfc35c6c1d0744df18691bf4ede77f67f604.cairo" - }, - "parent_location": [ - { - "end_col": 17, - "end_line": 429, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "start_col": 6, - "start_line": 429 - }, - "While handling return value of" - ], - "start_col": 25, - "start_line": 10 - }, - "While expanding the reference 'range_check_ptr' in:" - ], - "start_col": 6, - "start_line": 429 - }, - "While handling return value of" - ], - "start_col": 98, - "start_line": 1 - } - }, - "4629": { - "accessible_scopes": [ - "__main__", - "__main__", - "__wrappers__", - "__wrappers__.totalSupply_encode_return" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 63, - "end_line": 11, - "input_file": { - "filename": "autogen/starknet/external/return/totalSupply/eeeda446bdea67b39cd9f67678f4dfc35c6c1d0744df18691bf4ede77f67f604.cairo" - }, - "parent_location": [ - { - "end_col": 17, - "end_line": 429, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "start_col": 6, - "start_line": 429 - }, - "While handling return value of" - ], - "start_col": 18, - "start_line": 11 - } - }, - "4630": { - "accessible_scopes": [ - "__main__", - "__main__", - "__wrappers__", - "__wrappers__.totalSupply_encode_return" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 35, - "end_line": 5, - "input_file": { - "filename": "autogen/starknet/external/return/totalSupply/eeeda446bdea67b39cd9f67678f4dfc35c6c1d0744df18691bf4ede77f67f604.cairo" - }, - "parent_location": [ - { - "end_col": 17, - "end_line": 429, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "parent_location": [ - { - "end_col": 38, - "end_line": 12, - "input_file": { - "filename": "autogen/starknet/external/return/totalSupply/eeeda446bdea67b39cd9f67678f4dfc35c6c1d0744df18691bf4ede77f67f604.cairo" - }, - "parent_location": [ - { - "end_col": 17, - "end_line": 429, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "start_col": 6, - "start_line": 429 - }, - "While handling return value of" - ], - "start_col": 14, - "start_line": 12 - }, - "While expanding the reference '__return_value_ptr_start' in:" - ], - "start_col": 6, - "start_line": 429 - }, - "While handling return value of" - ], - "start_col": 11, - "start_line": 5 - } - }, - "4631": { - "accessible_scopes": [ - "__main__", - "__main__", - "__wrappers__", - "__wrappers__.totalSupply_encode_return" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 40, - "end_line": 12, - "input_file": { - "filename": "autogen/starknet/external/return/totalSupply/eeeda446bdea67b39cd9f67678f4dfc35c6c1d0744df18691bf4ede77f67f604.cairo" - }, - "parent_location": [ - { - "end_col": 17, - "end_line": 429, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "start_col": 6, - "start_line": 429 - }, - "While handling return value of" - ], - "start_col": 5, - "start_line": 9 - } - }, - "4632": { - "accessible_scopes": [ - "__main__", - "__main__", - "__wrappers__", - "__wrappers__.totalSupply" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 58, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/arg_processor/01cba52f8515996bb9d7070bde81ff39281d096d7024a558efcba6e1fd2402cf.cairo" - }, - "parent_location": [ - { - "end_col": 17, - "end_line": 429, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "start_col": 6, - "start_line": 429 - }, - "While handling calldata of" - ], - "start_col": 1, - "start_line": 1 - } - }, - "4633": { - "accessible_scopes": [ - "__main__", - "__main__", - "__wrappers__", - "__wrappers__.totalSupply" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 110, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/external/totalSupply/9684a85e93c782014ca14293edea4eb2502039a5a7b6538ecd39c56faaf12529.cairo" - }, - "parent_location": [ - { - "end_col": 44, - "end_line": 429, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "parent_location": [ - { - "end_col": 57, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/external/totalSupply/5b54c430df10b729ecc10b3e860410c6829f116d1a34b32e8415fa1ac24c16d8.cairo" - }, - "parent_location": [ - { - "end_col": 17, - "end_line": 429, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "start_col": 6, - "start_line": 429 - }, - "While constructing the external wrapper for:" - ], - "start_col": 45, - "start_line": 1 - }, - "While expanding the reference 'pedersen_ptr' in:" - ], - "start_col": 18, - "start_line": 429 - }, - "While constructing the external wrapper for:" - ], - "start_col": 20, - "start_line": 1 - } - }, - "4634": { - "accessible_scopes": [ - "__main__", - "__main__", - "__wrappers__", - "__wrappers__.totalSupply" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 64, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/external/totalSupply/b2c52ca2d2a8fc8791a983086d8716c5eacd0c3d62934914d2286f84b98ff4cb.cairo" - }, - "parent_location": [ - { - "end_col": 64, - "end_line": 429, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "parent_location": [ - { - "end_col": 82, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/external/totalSupply/5b54c430df10b729ecc10b3e860410c6829f116d1a34b32e8415fa1ac24c16d8.cairo" - }, - "parent_location": [ - { - "end_col": 17, - "end_line": 429, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "start_col": 6, - "start_line": 429 - }, - "While constructing the external wrapper for:" - ], - "start_col": 71, - "start_line": 1 - }, - "While expanding the reference 'syscall_ptr' in:" - ], - "start_col": 46, - "start_line": 429 - }, - "While constructing the external wrapper for:" - ], - "start_col": 19, - "start_line": 1 - } - }, - "4635": { - "accessible_scopes": [ - "__main__", - "__main__", - "__wrappers__", - "__wrappers__.totalSupply" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 67, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/external/totalSupply/741ea357d6336b0bed7bf0472425acd0311d543883b803388880e60a232040c7.cairo" - }, - "parent_location": [ - { - "end_col": 81, - "end_line": 429, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "parent_location": [ - { - "end_col": 115, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/external/totalSupply/5b54c430df10b729ecc10b3e860410c6829f116d1a34b32e8415fa1ac24c16d8.cairo" - }, - "parent_location": [ - { - "end_col": 17, - "end_line": 429, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "start_col": 6, - "start_line": 429 - }, - "While constructing the external wrapper for:" - ], - "start_col": 100, - "start_line": 1 - }, - "While expanding the reference 'range_check_ptr' in:" - ], - "start_col": 66, - "start_line": 429 - }, - "While constructing the external wrapper for:" - ], - "start_col": 23, - "start_line": 1 - } - }, - "4636": { - "accessible_scopes": [ - "__main__", - "__main__", - "__wrappers__", - "__wrappers__.totalSupply" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 17, - "end_line": 429, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "start_col": 6, - "start_line": 429 - } - }, - "4638": { - "accessible_scopes": [ - "__main__", - "__main__", - "__wrappers__", - "__wrappers__.totalSupply" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 115, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/external/totalSupply/5b54c430df10b729ecc10b3e860410c6829f116d1a34b32e8415fa1ac24c16d8.cairo" - }, - "parent_location": [ - { - "end_col": 17, - "end_line": 429, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "parent_location": [ - { - "end_col": 100, - "end_line": 2, - "input_file": { - "filename": "autogen/starknet/external/totalSupply/5b54c430df10b729ecc10b3e860410c6829f116d1a34b32e8415fa1ac24c16d8.cairo" - }, - "parent_location": [ - { - "end_col": 17, - "end_line": 429, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "start_col": 6, - "start_line": 429 - }, - "While constructing the external wrapper for:" - ], - "start_col": 85, - "start_line": 2 - }, - "While expanding the reference 'range_check_ptr' in:" - ], - "start_col": 6, - "start_line": 429 - }, - "While constructing the external wrapper for:" - ], - "start_col": 100, - "start_line": 1 - } - }, - "4639": { - "accessible_scopes": [ - "__main__", - "__main__", - "__wrappers__", - "__wrappers__.totalSupply" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 101, - "end_line": 2, - "input_file": { - "filename": "autogen/starknet/external/totalSupply/5b54c430df10b729ecc10b3e860410c6829f116d1a34b32e8415fa1ac24c16d8.cairo" - }, - "parent_location": [ - { - "end_col": 17, - "end_line": 429, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "start_col": 6, - "start_line": 429 - }, - "While constructing the external wrapper for:" - ], - "start_col": 48, - "start_line": 2 - } - }, - "4641": { - "accessible_scopes": [ - "__main__", - "__main__", - "__wrappers__", - "__wrappers__.totalSupply" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 82, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/external/totalSupply/5b54c430df10b729ecc10b3e860410c6829f116d1a34b32e8415fa1ac24c16d8.cairo" - }, - "parent_location": [ - { - "end_col": 17, - "end_line": 429, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "parent_location": [ - { - "end_col": 20, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/external/totalSupply/da17921a4e81c09e730800bbf23bfdbe5e9e6bfaedc59d80fbf62087fa43c27d.cairo" - }, - "parent_location": [ - { - "end_col": 17, - "end_line": 429, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "start_col": 6, - "start_line": 429 - }, - "While constructing the external wrapper for:" - ], - "start_col": 9, - "start_line": 1 - }, - "While expanding the reference 'syscall_ptr' in:" - ], - "start_col": 6, - "start_line": 429 - }, - "While constructing the external wrapper for:" - ], - "start_col": 71, - "start_line": 1 - } - }, - "4642": { - "accessible_scopes": [ - "__main__", - "__main__", - "__wrappers__", - "__wrappers__.totalSupply" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 57, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/external/totalSupply/5b54c430df10b729ecc10b3e860410c6829f116d1a34b32e8415fa1ac24c16d8.cairo" - }, - "parent_location": [ - { - "end_col": 17, - "end_line": 429, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "parent_location": [ - { - "end_col": 33, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/external/totalSupply/da17921a4e81c09e730800bbf23bfdbe5e9e6bfaedc59d80fbf62087fa43c27d.cairo" - }, - "parent_location": [ - { - "end_col": 17, - "end_line": 429, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "start_col": 6, - "start_line": 429 - }, - "While constructing the external wrapper for:" - ], - "start_col": 21, - "start_line": 1 - }, - "While expanding the reference 'pedersen_ptr' in:" - ], - "start_col": 6, - "start_line": 429 - }, - "While constructing the external wrapper for:" - ], - "start_col": 45, - "start_line": 1 - } - }, - "4643": { - "accessible_scopes": [ - "__main__", - "__main__", - "__wrappers__", - "__wrappers__.totalSupply" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 21, - "end_line": 2, - "input_file": { - "filename": "autogen/starknet/external/totalSupply/5b54c430df10b729ecc10b3e860410c6829f116d1a34b32e8415fa1ac24c16d8.cairo" - }, - "parent_location": [ - { - "end_col": 17, - "end_line": 429, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "parent_location": [ - { - "end_col": 49, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/external/totalSupply/da17921a4e81c09e730800bbf23bfdbe5e9e6bfaedc59d80fbf62087fa43c27d.cairo" - }, - "parent_location": [ - { - "end_col": 17, - "end_line": 429, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "start_col": 6, - "start_line": 429 - }, - "While constructing the external wrapper for:" - ], - "start_col": 34, - "start_line": 1 - }, - "While expanding the reference 'range_check_ptr' in:" - ], - "start_col": 6, - "start_line": 429 - }, - "While constructing the external wrapper for:" - ], - "start_col": 6, - "start_line": 2 - } - }, - "4644": { - "accessible_scopes": [ - "__main__", - "__main__", - "__wrappers__", - "__wrappers__.totalSupply" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 35, - "end_line": 2, - "input_file": { - "filename": "autogen/starknet/external/totalSupply/5b54c430df10b729ecc10b3e860410c6829f116d1a34b32e8415fa1ac24c16d8.cairo" - }, - "parent_location": [ - { - "end_col": 17, - "end_line": 429, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "parent_location": [ - { - "end_col": 62, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/external/totalSupply/da17921a4e81c09e730800bbf23bfdbe5e9e6bfaedc59d80fbf62087fa43c27d.cairo" - }, - "parent_location": [ - { - "end_col": 17, - "end_line": 429, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "start_col": 6, - "start_line": 429 - }, - "While constructing the external wrapper for:" - ], - "start_col": 50, - "start_line": 1 - }, - "While expanding the reference 'retdata_size' in:" - ], - "start_col": 6, - "start_line": 429 - }, - "While constructing the external wrapper for:" - ], - "start_col": 23, - "start_line": 2 - } - }, - "4645": { - "accessible_scopes": [ - "__main__", - "__main__", - "__wrappers__", - "__wrappers__.totalSupply" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 44, - "end_line": 2, - "input_file": { - "filename": "autogen/starknet/external/totalSupply/5b54c430df10b729ecc10b3e860410c6829f116d1a34b32e8415fa1ac24c16d8.cairo" - }, - "parent_location": [ - { - "end_col": 17, - "end_line": 429, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "parent_location": [ - { - "end_col": 70, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/external/totalSupply/da17921a4e81c09e730800bbf23bfdbe5e9e6bfaedc59d80fbf62087fa43c27d.cairo" - }, - "parent_location": [ - { - "end_col": 17, - "end_line": 429, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "start_col": 6, - "start_line": 429 - }, - "While constructing the external wrapper for:" - ], - "start_col": 63, - "start_line": 1 - }, - "While expanding the reference 'retdata' in:" - ], - "start_col": 6, - "start_line": 429 - }, - "While constructing the external wrapper for:" - ], - "start_col": 37, - "start_line": 2 - } - }, - "4646": { - "accessible_scopes": [ - "__main__", - "__main__", - "__wrappers__", - "__wrappers__.totalSupply" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 72, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/external/totalSupply/da17921a4e81c09e730800bbf23bfdbe5e9e6bfaedc59d80fbf62087fa43c27d.cairo" - }, - "parent_location": [ - { - "end_col": 17, - "end_line": 429, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "start_col": 6, - "start_line": 429 - }, - "While constructing the external wrapper for:" - ], - "start_col": 1, - "start_line": 1 - } - }, - "4647": { - "accessible_scopes": [ - "__main__", - "__main__", - "__main__.tokenByIndex" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 65, - "end_line": 437, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "parent_location": [ - { - "end_col": 43, - "end_line": 59, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" - }, - "parent_location": [ - { - "end_col": 68, - "end_line": 440, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "start_col": 30, - "start_line": 440 - }, - "While trying to retrieve the implicit argument 'syscall_ptr' in:" - ], - "start_col": 25, - "start_line": 59 - }, - "While expanding the reference 'syscall_ptr' in:" - ], - "start_col": 47, - "start_line": 437 - } - }, - "4648": { - "accessible_scopes": [ - "__main__", - "__main__", - "__main__.tokenByIndex" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 45, - "end_line": 437, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "parent_location": [ - { - "end_col": 71, - "end_line": 59, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" - }, - "parent_location": [ - { - "end_col": 68, - "end_line": 440, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "start_col": 30, - "start_line": 440 - }, - "While trying to retrieve the implicit argument 'pedersen_ptr' in:" - ], - "start_col": 45, - "start_line": 59 - }, - "While expanding the reference 'pedersen_ptr' in:" - ], - "start_col": 19, - "start_line": 437 - } - }, - "4649": { - "accessible_scopes": [ - "__main__", - "__main__", - "__main__.tokenByIndex" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 82, - "end_line": 437, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "parent_location": [ - { - "end_col": 88, - "end_line": 59, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" - }, - "parent_location": [ - { - "end_col": 68, - "end_line": 440, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "start_col": 30, - "start_line": 440 - }, - "While trying to retrieve the implicit argument 'range_check_ptr' in:" - ], - "start_col": 73, - "start_line": 59 - }, - "While expanding the reference 'range_check_ptr' in:" - ], - "start_col": 67, - "start_line": 437 - } - }, - "4650": { - "accessible_scopes": [ - "__main__", - "__main__", - "__main__.tokenByIndex" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 19, - "end_line": 438, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "parent_location": [ - { - "end_col": 67, - "end_line": 440, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "start_col": 62, - "start_line": 440 - }, - "While expanding the reference 'index' in:" - ], - "start_col": 5, - "start_line": 438 - } - }, - "4651": { - "accessible_scopes": [ - "__main__", - "__main__", - "__main__.tokenByIndex" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 19, - "end_line": 438, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "parent_location": [ - { - "end_col": 67, - "end_line": 440, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "start_col": 62, - "start_line": 440 - }, - "While expanding the reference 'index' in:" - ], - "start_col": 5, - "start_line": 438 - } - }, - "4652": { - "accessible_scopes": [ - "__main__", - "__main__", - "__main__.tokenByIndex" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 68, - "end_line": 440, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "start_col": 30, - "start_line": 440 - } - }, - "4654": { - "accessible_scopes": [ - "__main__", - "__main__", - "__main__.tokenByIndex" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 71, - "end_line": 59, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" - }, - "parent_location": [ - { - "end_col": 68, - "end_line": 440, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "parent_location": [ - { - "end_col": 45, - "end_line": 437, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "parent_location": [ - { - "end_col": 23, - "end_line": 441, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "start_col": 5, - "start_line": 441 - }, - "While trying to retrieve the implicit argument 'pedersen_ptr' in:" - ], - "start_col": 19, - "start_line": 437 - }, - "While expanding the reference 'pedersen_ptr' in:" - ], - "start_col": 30, - "start_line": 440 - }, - "While trying to update the implicit return value 'pedersen_ptr' in:" - ], - "start_col": 45, - "start_line": 59 - } - }, - "4655": { - "accessible_scopes": [ - "__main__", - "__main__", - "__main__.tokenByIndex" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 43, - "end_line": 59, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" - }, - "parent_location": [ - { - "end_col": 68, - "end_line": 440, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "parent_location": [ - { - "end_col": 65, - "end_line": 437, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "parent_location": [ - { - "end_col": 23, - "end_line": 441, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "start_col": 5, - "start_line": 441 - }, - "While trying to retrieve the implicit argument 'syscall_ptr' in:" - ], - "start_col": 47, - "start_line": 437 - }, - "While expanding the reference 'syscall_ptr' in:" - ], - "start_col": 30, - "start_line": 440 - }, - "While trying to update the implicit return value 'syscall_ptr' in:" - ], - "start_col": 25, - "start_line": 59 - } - }, - "4656": { - "accessible_scopes": [ - "__main__", - "__main__", - "__main__.tokenByIndex" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 88, - "end_line": 59, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" - }, - "parent_location": [ - { - "end_col": 68, - "end_line": 440, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "parent_location": [ - { - "end_col": 82, - "end_line": 437, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "parent_location": [ - { - "end_col": 23, - "end_line": 441, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "start_col": 5, - "start_line": 441 - }, - "While trying to retrieve the implicit argument 'range_check_ptr' in:" - ], - "start_col": 67, - "start_line": 437 - }, - "While expanding the reference 'range_check_ptr' in:" - ], - "start_col": 30, - "start_line": 440 - }, - "While trying to update the implicit return value 'range_check_ptr' in:" - ], - "start_col": 73, - "start_line": 59 - } - }, - "4657": { - "accessible_scopes": [ - "__main__", - "__main__", - "__main__.tokenByIndex" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 26, - "end_line": 440, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "parent_location": [ - { - "end_col": 20, - "end_line": 441, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "start_col": 13, - "start_line": 441 - }, - "While expanding the reference 'tokenId' in:" - ], - "start_col": 10, - "start_line": 440 - } - }, - "4658": { - "accessible_scopes": [ - "__main__", - "__main__", - "__main__.tokenByIndex" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 26, - "end_line": 440, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "parent_location": [ - { - "end_col": 20, - "end_line": 441, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "start_col": 13, - "start_line": 441 - }, - "While expanding the reference 'tokenId' in:" - ], - "start_col": 10, - "start_line": 440 - } - }, - "4659": { - "accessible_scopes": [ - "__main__", - "__main__", - "__main__.tokenByIndex" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 23, - "end_line": 441, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "start_col": 5, - "start_line": 441 - } - }, - "4660": { - "accessible_scopes": [ - "__main__", - "__main__", - "__wrappers__", - "__wrappers__.tokenByIndex_encode_return" - ], - "flow_tracking_data": null, - "hints": [ - { - "location": { - "end_col": 38, - "end_line": 3, - "input_file": { - "filename": "autogen/starknet/external/return/tokenByIndex/6c9b4477e48860e369406084e6d163095309287e22bedb8c84c1ffe7fdaa93c9.cairo" - }, - "parent_location": [ - { - "end_col": 18, - "end_line": 437, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "start_col": 6, - "start_line": 437 - }, - "While handling return value of" - ], - "start_col": 5, - "start_line": 3 - }, - "n_prefix_newlines": 0 - } - ], - "inst": { - "end_col": 18, - "end_line": 4, - "input_file": { - "filename": "autogen/starknet/external/return/tokenByIndex/6c9b4477e48860e369406084e6d163095309287e22bedb8c84c1ffe7fdaa93c9.cairo" - }, - "parent_location": [ - { - "end_col": 18, - "end_line": 437, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "start_col": 6, - "start_line": 437 - }, - "While handling return value of" - ], - "start_col": 5, - "start_line": 4 - } - }, - "4662": { - "accessible_scopes": [ - "__main__", - "__main__", - "__wrappers__", - "__wrappers__.tokenByIndex_encode_return" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 60, - "end_line": 3, - "input_file": { - "filename": "autogen/starknet/arg_processor/0f6247d8ffdacc049a6789184a88aa3d8ff5ca077cd837063ce067f132dc586d.cairo" - }, - "parent_location": [ - { - "end_col": 23, - "end_line": 439, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "start_col": 7, - "start_line": 439 - }, - "While handling return value 'tokenId'" - ], - "start_col": 1, - "start_line": 3 - } - }, - "4663": { - "accessible_scopes": [ - "__main__", - "__main__", - "__wrappers__", - "__wrappers__.tokenByIndex_encode_return" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 60, - "end_line": 4, - "input_file": { - "filename": "autogen/starknet/arg_processor/0f6247d8ffdacc049a6789184a88aa3d8ff5ca077cd837063ce067f132dc586d.cairo" - }, - "parent_location": [ - { - "end_col": 23, - "end_line": 439, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "start_col": 7, - "start_line": 439 - }, - "While handling return value 'tokenId'" - ], - "start_col": 1, - "start_line": 4 - } - }, - "4664": { - "accessible_scopes": [ - "__main__", - "__main__", - "__wrappers__", - "__wrappers__.tokenByIndex_encode_return" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 48, - "end_line": 5, - "input_file": { - "filename": "autogen/starknet/arg_processor/0f6247d8ffdacc049a6789184a88aa3d8ff5ca077cd837063ce067f132dc586d.cairo" - }, - "parent_location": [ - { - "end_col": 23, - "end_line": 439, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "parent_location": [ - { - "end_col": 36, - "end_line": 11, - "input_file": { - "filename": "autogen/starknet/external/return/tokenByIndex/6c9b4477e48860e369406084e6d163095309287e22bedb8c84c1ffe7fdaa93c9.cairo" - }, - "parent_location": [ - { - "end_col": 18, - "end_line": 437, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "start_col": 6, - "start_line": 437 - }, - "While handling return value of" - ], - "start_col": 18, - "start_line": 11 - }, - "While expanding the reference '__return_value_ptr' in:" - ], - "start_col": 7, - "start_line": 439 - }, - "While handling return value 'tokenId'" - ], - "start_col": 26, - "start_line": 5 - } - }, - "4666": { - "accessible_scopes": [ - "__main__", - "__main__", - "__wrappers__", - "__wrappers__.tokenByIndex_encode_return" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 110, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/external/return/tokenByIndex/6c9b4477e48860e369406084e6d163095309287e22bedb8c84c1ffe7fdaa93c9.cairo" - }, - "parent_location": [ - { - "end_col": 18, - "end_line": 437, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "parent_location": [ - { - "end_col": 40, - "end_line": 10, - "input_file": { - "filename": "autogen/starknet/external/return/tokenByIndex/6c9b4477e48860e369406084e6d163095309287e22bedb8c84c1ffe7fdaa93c9.cairo" - }, - "parent_location": [ - { - "end_col": 18, - "end_line": 437, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "start_col": 6, - "start_line": 437 - }, - "While handling return value of" - ], - "start_col": 25, - "start_line": 10 - }, - "While expanding the reference 'range_check_ptr' in:" - ], - "start_col": 6, - "start_line": 437 - }, - "While handling return value of" - ], - "start_col": 95, - "start_line": 1 - } - }, - "4667": { - "accessible_scopes": [ - "__main__", - "__main__", - "__wrappers__", - "__wrappers__.tokenByIndex_encode_return" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 63, - "end_line": 11, - "input_file": { - "filename": "autogen/starknet/external/return/tokenByIndex/6c9b4477e48860e369406084e6d163095309287e22bedb8c84c1ffe7fdaa93c9.cairo" - }, - "parent_location": [ - { - "end_col": 18, - "end_line": 437, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "start_col": 6, - "start_line": 437 - }, - "While handling return value of" - ], - "start_col": 18, - "start_line": 11 - } - }, - "4668": { - "accessible_scopes": [ - "__main__", - "__main__", - "__wrappers__", - "__wrappers__.tokenByIndex_encode_return" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 35, - "end_line": 5, - "input_file": { - "filename": "autogen/starknet/external/return/tokenByIndex/6c9b4477e48860e369406084e6d163095309287e22bedb8c84c1ffe7fdaa93c9.cairo" - }, - "parent_location": [ - { - "end_col": 18, - "end_line": 437, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "parent_location": [ - { - "end_col": 38, - "end_line": 12, - "input_file": { - "filename": "autogen/starknet/external/return/tokenByIndex/6c9b4477e48860e369406084e6d163095309287e22bedb8c84c1ffe7fdaa93c9.cairo" - }, - "parent_location": [ - { - "end_col": 18, - "end_line": 437, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "start_col": 6, - "start_line": 437 - }, - "While handling return value of" - ], - "start_col": 14, - "start_line": 12 - }, - "While expanding the reference '__return_value_ptr_start' in:" - ], - "start_col": 6, - "start_line": 437 - }, - "While handling return value of" - ], - "start_col": 11, - "start_line": 5 - } - }, - "4669": { - "accessible_scopes": [ - "__main__", - "__main__", - "__wrappers__", - "__wrappers__.tokenByIndex_encode_return" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 40, - "end_line": 12, - "input_file": { - "filename": "autogen/starknet/external/return/tokenByIndex/6c9b4477e48860e369406084e6d163095309287e22bedb8c84c1ffe7fdaa93c9.cairo" - }, - "parent_location": [ - { - "end_col": 18, - "end_line": 437, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "start_col": 6, - "start_line": 437 - }, - "While handling return value of" - ], - "start_col": 5, - "start_line": 9 - } - }, - "4670": { - "accessible_scopes": [ - "__main__", - "__main__", - "__wrappers__", - "__wrappers__.tokenByIndex" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 40, - "end_line": 3, - "input_file": { - "filename": "autogen/starknet/arg_processor/d1f8dd5812766c8b9a93481fc66a39d49b601278b5c44556f4c0881f1ef1608f.cairo" - }, - "parent_location": [ - { - "end_col": 19, - "end_line": 438, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "parent_location": [ - { - "end_col": 45, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/arg_processor/c31620b02d4d706f0542c989b2aadc01b0981d1f6a5933a8fe4937ace3d70d92.cairo" - }, - "parent_location": [ - { - "end_col": 18, - "end_line": 437, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "parent_location": [ - { - "end_col": 57, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/arg_processor/01cba52f8515996bb9d7070bde81ff39281d096d7024a558efcba6e1fd2402cf.cairo" - }, - "parent_location": [ - { - "end_col": 18, - "end_line": 437, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "start_col": 6, - "start_line": 437 - }, - "While handling calldata of" - ], - "start_col": 35, - "start_line": 1 - }, - "While expanding the reference '__calldata_actual_size' in:" - ], - "start_col": 6, - "start_line": 437 - }, - "While handling calldata of" - ], - "start_col": 31, - "start_line": 1 - }, - "While expanding the reference '__calldata_ptr' in:" - ], - "start_col": 5, - "start_line": 438 - }, - "While handling calldata argument 'index'" - ], - "start_col": 22, - "start_line": 3 - } - }, - "4672": { - "accessible_scopes": [ - "__main__", - "__main__", - "__wrappers__", - "__wrappers__.tokenByIndex" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 58, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/arg_processor/01cba52f8515996bb9d7070bde81ff39281d096d7024a558efcba6e1fd2402cf.cairo" - }, - "parent_location": [ - { - "end_col": 18, - "end_line": 437, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "start_col": 6, - "start_line": 437 - }, - "While handling calldata of" - ], - "start_col": 1, - "start_line": 1 - } - }, - "4673": { - "accessible_scopes": [ - "__main__", - "__main__", - "__wrappers__", - "__wrappers__.tokenByIndex" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 110, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/external/tokenByIndex/9684a85e93c782014ca14293edea4eb2502039a5a7b6538ecd39c56faaf12529.cairo" - }, - "parent_location": [ - { - "end_col": 45, - "end_line": 437, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "parent_location": [ - { - "end_col": 57, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/external/tokenByIndex/764d32c547e6047601bca718c9c34d89ceb4a36da87d3814e62b7924e8a28eda.cairo" - }, - "parent_location": [ - { - "end_col": 18, - "end_line": 437, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "start_col": 6, - "start_line": 437 - }, - "While constructing the external wrapper for:" - ], - "start_col": 45, - "start_line": 1 - }, - "While expanding the reference 'pedersen_ptr' in:" - ], - "start_col": 19, - "start_line": 437 - }, - "While constructing the external wrapper for:" - ], - "start_col": 20, - "start_line": 1 - } - }, - "4674": { - "accessible_scopes": [ - "__main__", - "__main__", - "__wrappers__", - "__wrappers__.tokenByIndex" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 64, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/external/tokenByIndex/b2c52ca2d2a8fc8791a983086d8716c5eacd0c3d62934914d2286f84b98ff4cb.cairo" - }, - "parent_location": [ - { - "end_col": 65, - "end_line": 437, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "parent_location": [ - { - "end_col": 82, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/external/tokenByIndex/764d32c547e6047601bca718c9c34d89ceb4a36da87d3814e62b7924e8a28eda.cairo" - }, - "parent_location": [ - { - "end_col": 18, - "end_line": 437, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "start_col": 6, - "start_line": 437 - }, - "While constructing the external wrapper for:" - ], - "start_col": 71, - "start_line": 1 - }, - "While expanding the reference 'syscall_ptr' in:" - ], - "start_col": 47, - "start_line": 437 - }, - "While constructing the external wrapper for:" - ], - "start_col": 19, - "start_line": 1 - } - }, - "4675": { - "accessible_scopes": [ - "__main__", - "__main__", - "__wrappers__", - "__wrappers__.tokenByIndex" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 67, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/external/tokenByIndex/741ea357d6336b0bed7bf0472425acd0311d543883b803388880e60a232040c7.cairo" - }, - "parent_location": [ - { - "end_col": 82, - "end_line": 437, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "parent_location": [ - { - "end_col": 115, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/external/tokenByIndex/764d32c547e6047601bca718c9c34d89ceb4a36da87d3814e62b7924e8a28eda.cairo" - }, - "parent_location": [ - { - "end_col": 18, - "end_line": 437, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "start_col": 6, - "start_line": 437 - }, - "While constructing the external wrapper for:" - ], - "start_col": 100, - "start_line": 1 - }, - "While expanding the reference 'range_check_ptr' in:" - ], - "start_col": 67, - "start_line": 437 - }, - "While constructing the external wrapper for:" - ], - "start_col": 23, - "start_line": 1 - } - }, - "4676": { - "accessible_scopes": [ - "__main__", - "__main__", - "__wrappers__", - "__wrappers__.tokenByIndex" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 67, - "end_line": 2, - "input_file": { - "filename": "autogen/starknet/arg_processor/d1f8dd5812766c8b9a93481fc66a39d49b601278b5c44556f4c0881f1ef1608f.cairo" - }, - "parent_location": [ - { - "end_col": 19, - "end_line": 438, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "parent_location": [ - { - "end_col": 143, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/external/tokenByIndex/764d32c547e6047601bca718c9c34d89ceb4a36da87d3814e62b7924e8a28eda.cairo" - }, - "parent_location": [ - { - "end_col": 18, - "end_line": 437, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "start_col": 6, - "start_line": 437 - }, - "While constructing the external wrapper for:" - ], - "start_col": 123, - "start_line": 1 - }, - "While expanding the reference '__calldata_arg_index' in:" - ], - "start_col": 5, - "start_line": 438 - }, - "While handling calldata argument 'index'" - ], - "start_col": 28, - "start_line": 1 - } - }, - "4677": { - "accessible_scopes": [ - "__main__", - "__main__", - "__wrappers__", - "__wrappers__.tokenByIndex" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 67, - "end_line": 2, - "input_file": { - "filename": "autogen/starknet/arg_processor/d1f8dd5812766c8b9a93481fc66a39d49b601278b5c44556f4c0881f1ef1608f.cairo" - }, - "parent_location": [ - { - "end_col": 19, - "end_line": 438, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "parent_location": [ - { - "end_col": 143, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/external/tokenByIndex/764d32c547e6047601bca718c9c34d89ceb4a36da87d3814e62b7924e8a28eda.cairo" - }, - "parent_location": [ - { - "end_col": 18, - "end_line": 437, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "start_col": 6, - "start_line": 437 - }, - "While constructing the external wrapper for:" - ], - "start_col": 123, - "start_line": 1 - }, - "While expanding the reference '__calldata_arg_index' in:" - ], - "start_col": 5, - "start_line": 438 - }, - "While handling calldata argument 'index'" - ], - "start_col": 28, - "start_line": 1 - } - }, - "4678": { - "accessible_scopes": [ - "__main__", - "__main__", - "__wrappers__", - "__wrappers__.tokenByIndex" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 18, - "end_line": 437, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "start_col": 6, - "start_line": 437 - } - }, - "4680": { - "accessible_scopes": [ - "__main__", - "__main__", - "__wrappers__", - "__wrappers__.tokenByIndex" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 115, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/external/tokenByIndex/764d32c547e6047601bca718c9c34d89ceb4a36da87d3814e62b7924e8a28eda.cairo" - }, - "parent_location": [ - { - "end_col": 18, - "end_line": 437, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "parent_location": [ - { - "end_col": 101, - "end_line": 2, - "input_file": { - "filename": "autogen/starknet/external/tokenByIndex/764d32c547e6047601bca718c9c34d89ceb4a36da87d3814e62b7924e8a28eda.cairo" - }, - "parent_location": [ - { - "end_col": 18, - "end_line": 437, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "start_col": 6, - "start_line": 437 - }, - "While constructing the external wrapper for:" - ], - "start_col": 86, - "start_line": 2 - }, - "While expanding the reference 'range_check_ptr' in:" - ], - "start_col": 6, - "start_line": 437 - }, - "While constructing the external wrapper for:" - ], - "start_col": 100, - "start_line": 1 - } - }, - "4681": { - "accessible_scopes": [ - "__main__", - "__main__", - "__wrappers__", - "__wrappers__.tokenByIndex" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 102, - "end_line": 2, - "input_file": { - "filename": "autogen/starknet/external/tokenByIndex/764d32c547e6047601bca718c9c34d89ceb4a36da87d3814e62b7924e8a28eda.cairo" - }, - "parent_location": [ - { - "end_col": 18, - "end_line": 437, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "start_col": 6, - "start_line": 437 - }, - "While constructing the external wrapper for:" - ], - "start_col": 48, - "start_line": 2 - } - }, - "4683": { - "accessible_scopes": [ - "__main__", - "__main__", - "__wrappers__", - "__wrappers__.tokenByIndex" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 82, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/external/tokenByIndex/764d32c547e6047601bca718c9c34d89ceb4a36da87d3814e62b7924e8a28eda.cairo" - }, - "parent_location": [ - { - "end_col": 18, - "end_line": 437, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "parent_location": [ - { - "end_col": 20, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/external/tokenByIndex/da17921a4e81c09e730800bbf23bfdbe5e9e6bfaedc59d80fbf62087fa43c27d.cairo" - }, - "parent_location": [ - { - "end_col": 18, - "end_line": 437, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "start_col": 6, - "start_line": 437 - }, - "While constructing the external wrapper for:" - ], - "start_col": 9, - "start_line": 1 - }, - "While expanding the reference 'syscall_ptr' in:" - ], - "start_col": 6, - "start_line": 437 - }, - "While constructing the external wrapper for:" - ], - "start_col": 71, - "start_line": 1 - } - }, - "4684": { - "accessible_scopes": [ - "__main__", - "__main__", - "__wrappers__", - "__wrappers__.tokenByIndex" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 57, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/external/tokenByIndex/764d32c547e6047601bca718c9c34d89ceb4a36da87d3814e62b7924e8a28eda.cairo" - }, - "parent_location": [ - { - "end_col": 18, - "end_line": 437, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "parent_location": [ - { - "end_col": 33, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/external/tokenByIndex/da17921a4e81c09e730800bbf23bfdbe5e9e6bfaedc59d80fbf62087fa43c27d.cairo" - }, - "parent_location": [ - { - "end_col": 18, - "end_line": 437, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "start_col": 6, - "start_line": 437 - }, - "While constructing the external wrapper for:" - ], - "start_col": 21, - "start_line": 1 - }, - "While expanding the reference 'pedersen_ptr' in:" - ], - "start_col": 6, - "start_line": 437 - }, - "While constructing the external wrapper for:" - ], - "start_col": 45, - "start_line": 1 - } - }, - "4685": { - "accessible_scopes": [ - "__main__", - "__main__", - "__wrappers__", - "__wrappers__.tokenByIndex" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 21, - "end_line": 2, - "input_file": { - "filename": "autogen/starknet/external/tokenByIndex/764d32c547e6047601bca718c9c34d89ceb4a36da87d3814e62b7924e8a28eda.cairo" - }, - "parent_location": [ - { - "end_col": 18, - "end_line": 437, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "parent_location": [ - { - "end_col": 49, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/external/tokenByIndex/da17921a4e81c09e730800bbf23bfdbe5e9e6bfaedc59d80fbf62087fa43c27d.cairo" - }, - "parent_location": [ - { - "end_col": 18, - "end_line": 437, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "start_col": 6, - "start_line": 437 - }, - "While constructing the external wrapper for:" - ], - "start_col": 34, - "start_line": 1 - }, - "While expanding the reference 'range_check_ptr' in:" - ], - "start_col": 6, - "start_line": 437 - }, - "While constructing the external wrapper for:" - ], - "start_col": 6, - "start_line": 2 - } - }, - "4686": { - "accessible_scopes": [ - "__main__", - "__main__", - "__wrappers__", - "__wrappers__.tokenByIndex" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 35, - "end_line": 2, - "input_file": { - "filename": "autogen/starknet/external/tokenByIndex/764d32c547e6047601bca718c9c34d89ceb4a36da87d3814e62b7924e8a28eda.cairo" - }, - "parent_location": [ - { - "end_col": 18, - "end_line": 437, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "parent_location": [ - { - "end_col": 62, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/external/tokenByIndex/da17921a4e81c09e730800bbf23bfdbe5e9e6bfaedc59d80fbf62087fa43c27d.cairo" - }, - "parent_location": [ - { - "end_col": 18, - "end_line": 437, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "start_col": 6, - "start_line": 437 - }, - "While constructing the external wrapper for:" - ], - "start_col": 50, - "start_line": 1 - }, - "While expanding the reference 'retdata_size' in:" - ], - "start_col": 6, - "start_line": 437 - }, - "While constructing the external wrapper for:" - ], - "start_col": 23, - "start_line": 2 - } - }, - "4687": { - "accessible_scopes": [ - "__main__", - "__main__", - "__wrappers__", - "__wrappers__.tokenByIndex" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 44, - "end_line": 2, - "input_file": { - "filename": "autogen/starknet/external/tokenByIndex/764d32c547e6047601bca718c9c34d89ceb4a36da87d3814e62b7924e8a28eda.cairo" - }, - "parent_location": [ - { - "end_col": 18, - "end_line": 437, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "parent_location": [ - { - "end_col": 70, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/external/tokenByIndex/da17921a4e81c09e730800bbf23bfdbe5e9e6bfaedc59d80fbf62087fa43c27d.cairo" - }, - "parent_location": [ - { - "end_col": 18, - "end_line": 437, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "start_col": 6, - "start_line": 437 - }, - "While constructing the external wrapper for:" - ], - "start_col": 63, - "start_line": 1 - }, - "While expanding the reference 'retdata' in:" - ], - "start_col": 6, - "start_line": 437 - }, - "While constructing the external wrapper for:" - ], - "start_col": 37, - "start_line": 2 - } - }, - "4688": { - "accessible_scopes": [ - "__main__", - "__main__", - "__wrappers__", - "__wrappers__.tokenByIndex" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 72, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/external/tokenByIndex/da17921a4e81c09e730800bbf23bfdbe5e9e6bfaedc59d80fbf62087fa43c27d.cairo" - }, - "parent_location": [ - { - "end_col": 18, - "end_line": 437, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "start_col": 6, - "start_line": 437 - }, - "While constructing the external wrapper for:" - ], - "start_col": 1, - "start_line": 1 - } - }, - "4689": { - "accessible_scopes": [ - "__main__", - "__main__", - "__main__.tokenOfOwnerByIndex" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 72, - "end_line": 445, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "parent_location": [ - { - "end_col": 52, - "end_line": 74, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" - }, - "parent_location": [ - { - "end_col": 84, - "end_line": 448, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "start_col": 30, - "start_line": 448 - }, - "While trying to retrieve the implicit argument 'syscall_ptr' in:" - ], - "start_col": 34, - "start_line": 74 - }, - "While expanding the reference 'syscall_ptr' in:" - ], - "start_col": 54, - "start_line": 445 - } - }, - "4690": { - "accessible_scopes": [ - "__main__", - "__main__", - "__main__.tokenOfOwnerByIndex" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 52, - "end_line": 445, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "parent_location": [ - { - "end_col": 80, - "end_line": 74, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" - }, - "parent_location": [ - { - "end_col": 84, - "end_line": 448, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "start_col": 30, - "start_line": 448 - }, - "While trying to retrieve the implicit argument 'pedersen_ptr' in:" - ], - "start_col": 54, - "start_line": 74 - }, - "While expanding the reference 'pedersen_ptr' in:" - ], - "start_col": 26, - "start_line": 445 - } - }, - "4691": { - "accessible_scopes": [ - "__main__", - "__main__", - "__main__.tokenOfOwnerByIndex" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 89, - "end_line": 445, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "parent_location": [ - { - "end_col": 97, - "end_line": 74, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" - }, - "parent_location": [ - { - "end_col": 84, - "end_line": 448, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "start_col": 30, - "start_line": 448 - }, - "While trying to retrieve the implicit argument 'range_check_ptr' in:" - ], - "start_col": 82, - "start_line": 74 - }, - "While expanding the reference 'range_check_ptr' in:" - ], - "start_col": 74, - "start_line": 445 - } - }, - "4692": { - "accessible_scopes": [ - "__main__", - "__main__", - "__main__.tokenOfOwnerByIndex" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 16, - "end_line": 446, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "parent_location": [ - { - "end_col": 76, - "end_line": 448, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "start_col": 71, - "start_line": 448 - }, - "While expanding the reference 'owner' in:" - ], - "start_col": 5, - "start_line": 446 - } - }, - "4693": { - "accessible_scopes": [ - "__main__", - "__main__", - "__main__.tokenOfOwnerByIndex" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 32, - "end_line": 446, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "parent_location": [ - { - "end_col": 83, - "end_line": 448, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "start_col": 78, - "start_line": 448 - }, - "While expanding the reference 'index' in:" - ], - "start_col": 18, - "start_line": 446 - } - }, - "4694": { - "accessible_scopes": [ - "__main__", - "__main__", - "__main__.tokenOfOwnerByIndex" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 32, - "end_line": 446, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "parent_location": [ - { - "end_col": 83, - "end_line": 448, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "start_col": 78, - "start_line": 448 - }, - "While expanding the reference 'index' in:" - ], - "start_col": 18, - "start_line": 446 - } - }, - "4695": { - "accessible_scopes": [ - "__main__", - "__main__", - "__main__.tokenOfOwnerByIndex" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 84, - "end_line": 448, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "start_col": 30, - "start_line": 448 - } - }, - "4697": { - "accessible_scopes": [ - "__main__", - "__main__", - "__main__.tokenOfOwnerByIndex" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 80, - "end_line": 74, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" - }, - "parent_location": [ - { - "end_col": 84, - "end_line": 448, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "parent_location": [ - { - "end_col": 52, - "end_line": 445, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "parent_location": [ - { - "end_col": 23, - "end_line": 449, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "start_col": 5, - "start_line": 449 - }, - "While trying to retrieve the implicit argument 'pedersen_ptr' in:" - ], - "start_col": 26, - "start_line": 445 - }, - "While expanding the reference 'pedersen_ptr' in:" - ], - "start_col": 30, - "start_line": 448 - }, - "While trying to update the implicit return value 'pedersen_ptr' in:" - ], - "start_col": 54, - "start_line": 74 - } - }, - "4698": { - "accessible_scopes": [ - "__main__", - "__main__", - "__main__.tokenOfOwnerByIndex" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 52, - "end_line": 74, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" - }, - "parent_location": [ - { - "end_col": 84, - "end_line": 448, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "parent_location": [ - { - "end_col": 72, - "end_line": 445, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "parent_location": [ - { - "end_col": 23, - "end_line": 449, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "start_col": 5, - "start_line": 449 - }, - "While trying to retrieve the implicit argument 'syscall_ptr' in:" - ], - "start_col": 54, - "start_line": 445 - }, - "While expanding the reference 'syscall_ptr' in:" - ], - "start_col": 30, - "start_line": 448 - }, - "While trying to update the implicit return value 'syscall_ptr' in:" - ], - "start_col": 34, - "start_line": 74 - } - }, - "4699": { - "accessible_scopes": [ - "__main__", - "__main__", - "__main__.tokenOfOwnerByIndex" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 97, - "end_line": 74, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" - }, - "parent_location": [ - { - "end_col": 84, - "end_line": 448, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "parent_location": [ - { - "end_col": 89, - "end_line": 445, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "parent_location": [ - { - "end_col": 23, - "end_line": 449, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "start_col": 5, - "start_line": 449 - }, - "While trying to retrieve the implicit argument 'range_check_ptr' in:" - ], - "start_col": 74, - "start_line": 445 - }, - "While expanding the reference 'range_check_ptr' in:" - ], - "start_col": 30, - "start_line": 448 - }, - "While trying to update the implicit return value 'range_check_ptr' in:" - ], - "start_col": 82, - "start_line": 74 - } - }, - "4700": { - "accessible_scopes": [ - "__main__", - "__main__", - "__main__.tokenOfOwnerByIndex" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 26, - "end_line": 448, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "parent_location": [ - { - "end_col": 20, - "end_line": 449, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "start_col": 13, - "start_line": 449 - }, - "While expanding the reference 'tokenId' in:" - ], - "start_col": 10, - "start_line": 448 - } - }, - "4701": { - "accessible_scopes": [ - "__main__", - "__main__", - "__main__.tokenOfOwnerByIndex" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 26, - "end_line": 448, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "parent_location": [ - { - "end_col": 20, - "end_line": 449, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "start_col": 13, - "start_line": 449 - }, - "While expanding the reference 'tokenId' in:" - ], - "start_col": 10, - "start_line": 448 - } - }, - "4702": { - "accessible_scopes": [ - "__main__", - "__main__", - "__main__.tokenOfOwnerByIndex" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 23, - "end_line": 449, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "start_col": 5, - "start_line": 449 - } - }, - "4703": { - "accessible_scopes": [ - "__main__", - "__main__", - "__wrappers__", - "__wrappers__.tokenOfOwnerByIndex_encode_return" - ], - "flow_tracking_data": null, - "hints": [ - { - "location": { - "end_col": 38, - "end_line": 3, - "input_file": { - "filename": "autogen/starknet/external/return/tokenOfOwnerByIndex/c5cd611a0f2954a3db08f801163c417bcf50c88f70287322178f6feb818c2683.cairo" - }, - "parent_location": [ - { - "end_col": 25, - "end_line": 445, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "start_col": 6, - "start_line": 445 - }, - "While handling return value of" - ], - "start_col": 5, - "start_line": 3 - }, - "n_prefix_newlines": 0 - } - ], - "inst": { - "end_col": 18, - "end_line": 4, - "input_file": { - "filename": "autogen/starknet/external/return/tokenOfOwnerByIndex/c5cd611a0f2954a3db08f801163c417bcf50c88f70287322178f6feb818c2683.cairo" - }, - "parent_location": [ - { - "end_col": 25, - "end_line": 445, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "start_col": 6, - "start_line": 445 - }, - "While handling return value of" - ], - "start_col": 5, - "start_line": 4 - } - }, - "4705": { - "accessible_scopes": [ - "__main__", - "__main__", - "__wrappers__", - "__wrappers__.tokenOfOwnerByIndex_encode_return" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 60, - "end_line": 3, - "input_file": { - "filename": "autogen/starknet/arg_processor/0f6247d8ffdacc049a6789184a88aa3d8ff5ca077cd837063ce067f132dc586d.cairo" - }, - "parent_location": [ - { - "end_col": 23, - "end_line": 447, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "start_col": 7, - "start_line": 447 - }, - "While handling return value 'tokenId'" - ], - "start_col": 1, - "start_line": 3 - } - }, - "4706": { - "accessible_scopes": [ - "__main__", - "__main__", - "__wrappers__", - "__wrappers__.tokenOfOwnerByIndex_encode_return" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 60, - "end_line": 4, - "input_file": { - "filename": "autogen/starknet/arg_processor/0f6247d8ffdacc049a6789184a88aa3d8ff5ca077cd837063ce067f132dc586d.cairo" - }, - "parent_location": [ - { - "end_col": 23, - "end_line": 447, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "start_col": 7, - "start_line": 447 - }, - "While handling return value 'tokenId'" - ], - "start_col": 1, - "start_line": 4 - } - }, - "4707": { - "accessible_scopes": [ - "__main__", - "__main__", - "__wrappers__", - "__wrappers__.tokenOfOwnerByIndex_encode_return" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 48, - "end_line": 5, - "input_file": { - "filename": "autogen/starknet/arg_processor/0f6247d8ffdacc049a6789184a88aa3d8ff5ca077cd837063ce067f132dc586d.cairo" - }, - "parent_location": [ - { - "end_col": 23, - "end_line": 447, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "parent_location": [ - { - "end_col": 36, - "end_line": 11, - "input_file": { - "filename": "autogen/starknet/external/return/tokenOfOwnerByIndex/c5cd611a0f2954a3db08f801163c417bcf50c88f70287322178f6feb818c2683.cairo" - }, - "parent_location": [ - { - "end_col": 25, - "end_line": 445, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "start_col": 6, - "start_line": 445 - }, - "While handling return value of" - ], - "start_col": 18, - "start_line": 11 - }, - "While expanding the reference '__return_value_ptr' in:" - ], - "start_col": 7, - "start_line": 447 - }, - "While handling return value 'tokenId'" - ], - "start_col": 26, - "start_line": 5 - } - }, - "4709": { - "accessible_scopes": [ - "__main__", - "__main__", - "__wrappers__", - "__wrappers__.tokenOfOwnerByIndex_encode_return" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 117, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/external/return/tokenOfOwnerByIndex/c5cd611a0f2954a3db08f801163c417bcf50c88f70287322178f6feb818c2683.cairo" - }, - "parent_location": [ - { - "end_col": 25, - "end_line": 445, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "parent_location": [ - { - "end_col": 40, - "end_line": 10, - "input_file": { - "filename": "autogen/starknet/external/return/tokenOfOwnerByIndex/c5cd611a0f2954a3db08f801163c417bcf50c88f70287322178f6feb818c2683.cairo" - }, - "parent_location": [ - { - "end_col": 25, - "end_line": 445, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "start_col": 6, - "start_line": 445 - }, - "While handling return value of" - ], - "start_col": 25, - "start_line": 10 - }, - "While expanding the reference 'range_check_ptr' in:" - ], - "start_col": 6, - "start_line": 445 - }, - "While handling return value of" - ], - "start_col": 102, - "start_line": 1 - } - }, - "4710": { - "accessible_scopes": [ - "__main__", - "__main__", - "__wrappers__", - "__wrappers__.tokenOfOwnerByIndex_encode_return" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 63, - "end_line": 11, - "input_file": { - "filename": "autogen/starknet/external/return/tokenOfOwnerByIndex/c5cd611a0f2954a3db08f801163c417bcf50c88f70287322178f6feb818c2683.cairo" - }, - "parent_location": [ - { - "end_col": 25, - "end_line": 445, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "start_col": 6, - "start_line": 445 - }, - "While handling return value of" - ], - "start_col": 18, - "start_line": 11 - } - }, - "4711": { - "accessible_scopes": [ - "__main__", - "__main__", - "__wrappers__", - "__wrappers__.tokenOfOwnerByIndex_encode_return" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 35, - "end_line": 5, - "input_file": { - "filename": "autogen/starknet/external/return/tokenOfOwnerByIndex/c5cd611a0f2954a3db08f801163c417bcf50c88f70287322178f6feb818c2683.cairo" - }, - "parent_location": [ - { - "end_col": 25, - "end_line": 445, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "parent_location": [ - { - "end_col": 38, - "end_line": 12, - "input_file": { - "filename": "autogen/starknet/external/return/tokenOfOwnerByIndex/c5cd611a0f2954a3db08f801163c417bcf50c88f70287322178f6feb818c2683.cairo" - }, - "parent_location": [ - { - "end_col": 25, - "end_line": 445, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "start_col": 6, - "start_line": 445 - }, - "While handling return value of" - ], - "start_col": 14, - "start_line": 12 - }, - "While expanding the reference '__return_value_ptr_start' in:" - ], - "start_col": 6, - "start_line": 445 - }, - "While handling return value of" - ], - "start_col": 11, - "start_line": 5 - } - }, - "4712": { - "accessible_scopes": [ - "__main__", - "__main__", - "__wrappers__", - "__wrappers__.tokenOfOwnerByIndex_encode_return" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 40, - "end_line": 12, - "input_file": { - "filename": "autogen/starknet/external/return/tokenOfOwnerByIndex/c5cd611a0f2954a3db08f801163c417bcf50c88f70287322178f6feb818c2683.cairo" - }, - "parent_location": [ - { - "end_col": 25, - "end_line": 445, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "start_col": 6, - "start_line": 445 - }, - "While handling return value of" - ], - "start_col": 5, - "start_line": 9 - } - }, - "4713": { - "accessible_scopes": [ - "__main__", - "__main__", - "__wrappers__", - "__wrappers__.tokenOfOwnerByIndex" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 40, - "end_line": 3, - "input_file": { - "filename": "autogen/starknet/arg_processor/d1f8dd5812766c8b9a93481fc66a39d49b601278b5c44556f4c0881f1ef1608f.cairo" - }, - "parent_location": [ - { - "end_col": 32, - "end_line": 446, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "parent_location": [ - { - "end_col": 45, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/arg_processor/c31620b02d4d706f0542c989b2aadc01b0981d1f6a5933a8fe4937ace3d70d92.cairo" - }, - "parent_location": [ - { - "end_col": 25, - "end_line": 445, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "parent_location": [ - { - "end_col": 57, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/arg_processor/01cba52f8515996bb9d7070bde81ff39281d096d7024a558efcba6e1fd2402cf.cairo" - }, - "parent_location": [ - { - "end_col": 25, - "end_line": 445, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "start_col": 6, - "start_line": 445 - }, - "While handling calldata of" - ], - "start_col": 35, - "start_line": 1 - }, - "While expanding the reference '__calldata_actual_size' in:" - ], - "start_col": 6, - "start_line": 445 - }, - "While handling calldata of" - ], - "start_col": 31, - "start_line": 1 - }, - "While expanding the reference '__calldata_ptr' in:" - ], - "start_col": 18, - "start_line": 446 - }, - "While handling calldata argument 'index'" - ], - "start_col": 22, - "start_line": 3 - } - }, - "4715": { - "accessible_scopes": [ - "__main__", - "__main__", - "__wrappers__", - "__wrappers__.tokenOfOwnerByIndex" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 58, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/arg_processor/01cba52f8515996bb9d7070bde81ff39281d096d7024a558efcba6e1fd2402cf.cairo" - }, - "parent_location": [ - { - "end_col": 25, - "end_line": 445, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "start_col": 6, - "start_line": 445 - }, - "While handling calldata of" - ], - "start_col": 1, - "start_line": 1 - } - }, - "4716": { - "accessible_scopes": [ - "__main__", - "__main__", - "__wrappers__", - "__wrappers__.tokenOfOwnerByIndex" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 110, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/external/tokenOfOwnerByIndex/9684a85e93c782014ca14293edea4eb2502039a5a7b6538ecd39c56faaf12529.cairo" - }, - "parent_location": [ - { - "end_col": 52, - "end_line": 445, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "parent_location": [ - { - "end_col": 57, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/external/tokenOfOwnerByIndex/bcfb5e1fff2b0d63e3f507cf619efd30405ebe178d0663eb8b95f3e0572d1ca5.cairo" - }, - "parent_location": [ - { - "end_col": 25, - "end_line": 445, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "start_col": 6, - "start_line": 445 - }, - "While constructing the external wrapper for:" - ], - "start_col": 45, - "start_line": 1 - }, - "While expanding the reference 'pedersen_ptr' in:" - ], - "start_col": 26, - "start_line": 445 - }, - "While constructing the external wrapper for:" - ], - "start_col": 20, - "start_line": 1 - } - }, - "4717": { - "accessible_scopes": [ - "__main__", - "__main__", - "__wrappers__", - "__wrappers__.tokenOfOwnerByIndex" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 64, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/external/tokenOfOwnerByIndex/b2c52ca2d2a8fc8791a983086d8716c5eacd0c3d62934914d2286f84b98ff4cb.cairo" - }, - "parent_location": [ - { - "end_col": 72, - "end_line": 445, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "parent_location": [ - { - "end_col": 82, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/external/tokenOfOwnerByIndex/bcfb5e1fff2b0d63e3f507cf619efd30405ebe178d0663eb8b95f3e0572d1ca5.cairo" - }, - "parent_location": [ - { - "end_col": 25, - "end_line": 445, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "start_col": 6, - "start_line": 445 - }, - "While constructing the external wrapper for:" - ], - "start_col": 71, - "start_line": 1 - }, - "While expanding the reference 'syscall_ptr' in:" - ], - "start_col": 54, - "start_line": 445 - }, - "While constructing the external wrapper for:" - ], - "start_col": 19, - "start_line": 1 - } - }, - "4718": { - "accessible_scopes": [ - "__main__", - "__main__", - "__wrappers__", - "__wrappers__.tokenOfOwnerByIndex" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 67, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/external/tokenOfOwnerByIndex/741ea357d6336b0bed7bf0472425acd0311d543883b803388880e60a232040c7.cairo" - }, - "parent_location": [ - { - "end_col": 89, - "end_line": 445, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "parent_location": [ - { - "end_col": 115, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/external/tokenOfOwnerByIndex/bcfb5e1fff2b0d63e3f507cf619efd30405ebe178d0663eb8b95f3e0572d1ca5.cairo" - }, - "parent_location": [ - { - "end_col": 25, - "end_line": 445, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "start_col": 6, - "start_line": 445 - }, - "While constructing the external wrapper for:" - ], - "start_col": 100, - "start_line": 1 - }, - "While expanding the reference 'range_check_ptr' in:" - ], - "start_col": 74, - "start_line": 445 - }, - "While constructing the external wrapper for:" - ], - "start_col": 23, - "start_line": 1 - } - }, - "4719": { - "accessible_scopes": [ - "__main__", - "__main__", - "__wrappers__", - "__wrappers__.tokenOfOwnerByIndex" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 44, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/arg_processor/f6a4d9ae897caf37cefd18f7c8da7eee73157818279359aadee282f0fe59cdbc.cairo" - }, - "parent_location": [ - { - "end_col": 16, - "end_line": 446, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "parent_location": [ - { - "end_col": 143, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/external/tokenOfOwnerByIndex/bcfb5e1fff2b0d63e3f507cf619efd30405ebe178d0663eb8b95f3e0572d1ca5.cairo" - }, - "parent_location": [ - { - "end_col": 25, - "end_line": 445, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "start_col": 6, - "start_line": 445 - }, - "While constructing the external wrapper for:" - ], - "start_col": 123, - "start_line": 1 - }, - "While expanding the reference '__calldata_arg_owner' in:" - ], - "start_col": 5, - "start_line": 446 - }, - "While handling calldata argument 'owner'" - ], - "start_col": 28, - "start_line": 1 - } - }, - "4720": { - "accessible_scopes": [ - "__main__", - "__main__", - "__wrappers__", - "__wrappers__.tokenOfOwnerByIndex" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 67, - "end_line": 2, - "input_file": { - "filename": "autogen/starknet/arg_processor/d1f8dd5812766c8b9a93481fc66a39d49b601278b5c44556f4c0881f1ef1608f.cairo" - }, - "parent_location": [ - { - "end_col": 32, - "end_line": 446, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "parent_location": [ - { - "end_col": 171, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/external/tokenOfOwnerByIndex/bcfb5e1fff2b0d63e3f507cf619efd30405ebe178d0663eb8b95f3e0572d1ca5.cairo" - }, - "parent_location": [ - { - "end_col": 25, - "end_line": 445, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "start_col": 6, - "start_line": 445 - }, - "While constructing the external wrapper for:" - ], - "start_col": 151, - "start_line": 1 - }, - "While expanding the reference '__calldata_arg_index' in:" - ], - "start_col": 18, - "start_line": 446 - }, - "While handling calldata argument 'index'" - ], - "start_col": 28, - "start_line": 1 - } - }, - "4721": { - "accessible_scopes": [ - "__main__", - "__main__", - "__wrappers__", - "__wrappers__.tokenOfOwnerByIndex" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 67, - "end_line": 2, - "input_file": { - "filename": "autogen/starknet/arg_processor/d1f8dd5812766c8b9a93481fc66a39d49b601278b5c44556f4c0881f1ef1608f.cairo" - }, - "parent_location": [ - { - "end_col": 32, - "end_line": 446, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "parent_location": [ - { - "end_col": 171, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/external/tokenOfOwnerByIndex/bcfb5e1fff2b0d63e3f507cf619efd30405ebe178d0663eb8b95f3e0572d1ca5.cairo" - }, - "parent_location": [ - { - "end_col": 25, - "end_line": 445, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "start_col": 6, - "start_line": 445 - }, - "While constructing the external wrapper for:" - ], - "start_col": 151, - "start_line": 1 - }, - "While expanding the reference '__calldata_arg_index' in:" - ], - "start_col": 18, - "start_line": 446 - }, - "While handling calldata argument 'index'" - ], - "start_col": 28, - "start_line": 1 - } - }, - "4722": { - "accessible_scopes": [ - "__main__", - "__main__", - "__wrappers__", - "__wrappers__.tokenOfOwnerByIndex" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 25, - "end_line": 445, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "start_col": 6, - "start_line": 445 - } - }, - "4724": { - "accessible_scopes": [ - "__main__", - "__main__", - "__wrappers__", - "__wrappers__.tokenOfOwnerByIndex" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 115, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/external/tokenOfOwnerByIndex/bcfb5e1fff2b0d63e3f507cf619efd30405ebe178d0663eb8b95f3e0572d1ca5.cairo" - }, - "parent_location": [ - { - "end_col": 25, - "end_line": 445, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "parent_location": [ - { - "end_col": 108, - "end_line": 2, - "input_file": { - "filename": "autogen/starknet/external/tokenOfOwnerByIndex/bcfb5e1fff2b0d63e3f507cf619efd30405ebe178d0663eb8b95f3e0572d1ca5.cairo" - }, - "parent_location": [ - { - "end_col": 25, - "end_line": 445, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "start_col": 6, - "start_line": 445 - }, - "While constructing the external wrapper for:" - ], - "start_col": 93, - "start_line": 2 - }, - "While expanding the reference 'range_check_ptr' in:" - ], - "start_col": 6, - "start_line": 445 - }, - "While constructing the external wrapper for:" - ], - "start_col": 100, - "start_line": 1 - } - }, - "4725": { - "accessible_scopes": [ - "__main__", - "__main__", - "__wrappers__", - "__wrappers__.tokenOfOwnerByIndex" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 109, - "end_line": 2, - "input_file": { - "filename": "autogen/starknet/external/tokenOfOwnerByIndex/bcfb5e1fff2b0d63e3f507cf619efd30405ebe178d0663eb8b95f3e0572d1ca5.cairo" - }, - "parent_location": [ - { - "end_col": 25, - "end_line": 445, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "start_col": 6, - "start_line": 445 - }, - "While constructing the external wrapper for:" - ], - "start_col": 48, - "start_line": 2 - } - }, - "4727": { - "accessible_scopes": [ - "__main__", - "__main__", - "__wrappers__", - "__wrappers__.tokenOfOwnerByIndex" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 82, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/external/tokenOfOwnerByIndex/bcfb5e1fff2b0d63e3f507cf619efd30405ebe178d0663eb8b95f3e0572d1ca5.cairo" - }, - "parent_location": [ - { - "end_col": 25, - "end_line": 445, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "parent_location": [ - { - "end_col": 20, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/external/tokenOfOwnerByIndex/da17921a4e81c09e730800bbf23bfdbe5e9e6bfaedc59d80fbf62087fa43c27d.cairo" - }, - "parent_location": [ - { - "end_col": 25, - "end_line": 445, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "start_col": 6, - "start_line": 445 - }, - "While constructing the external wrapper for:" - ], - "start_col": 9, - "start_line": 1 - }, - "While expanding the reference 'syscall_ptr' in:" - ], - "start_col": 6, - "start_line": 445 - }, - "While constructing the external wrapper for:" - ], - "start_col": 71, - "start_line": 1 - } - }, - "4728": { - "accessible_scopes": [ - "__main__", - "__main__", - "__wrappers__", - "__wrappers__.tokenOfOwnerByIndex" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 57, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/external/tokenOfOwnerByIndex/bcfb5e1fff2b0d63e3f507cf619efd30405ebe178d0663eb8b95f3e0572d1ca5.cairo" - }, - "parent_location": [ - { - "end_col": 25, - "end_line": 445, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "parent_location": [ - { - "end_col": 33, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/external/tokenOfOwnerByIndex/da17921a4e81c09e730800bbf23bfdbe5e9e6bfaedc59d80fbf62087fa43c27d.cairo" - }, - "parent_location": [ - { - "end_col": 25, - "end_line": 445, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "start_col": 6, - "start_line": 445 - }, - "While constructing the external wrapper for:" - ], - "start_col": 21, - "start_line": 1 - }, - "While expanding the reference 'pedersen_ptr' in:" - ], - "start_col": 6, - "start_line": 445 - }, - "While constructing the external wrapper for:" - ], - "start_col": 45, - "start_line": 1 - } - }, - "4729": { - "accessible_scopes": [ - "__main__", - "__main__", - "__wrappers__", - "__wrappers__.tokenOfOwnerByIndex" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 21, - "end_line": 2, - "input_file": { - "filename": "autogen/starknet/external/tokenOfOwnerByIndex/bcfb5e1fff2b0d63e3f507cf619efd30405ebe178d0663eb8b95f3e0572d1ca5.cairo" - }, - "parent_location": [ - { - "end_col": 25, - "end_line": 445, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "parent_location": [ - { - "end_col": 49, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/external/tokenOfOwnerByIndex/da17921a4e81c09e730800bbf23bfdbe5e9e6bfaedc59d80fbf62087fa43c27d.cairo" - }, - "parent_location": [ - { - "end_col": 25, - "end_line": 445, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "start_col": 6, - "start_line": 445 - }, - "While constructing the external wrapper for:" - ], - "start_col": 34, - "start_line": 1 - }, - "While expanding the reference 'range_check_ptr' in:" - ], - "start_col": 6, - "start_line": 445 - }, - "While constructing the external wrapper for:" - ], - "start_col": 6, - "start_line": 2 - } - }, - "4730": { - "accessible_scopes": [ - "__main__", - "__main__", - "__wrappers__", - "__wrappers__.tokenOfOwnerByIndex" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 35, - "end_line": 2, - "input_file": { - "filename": "autogen/starknet/external/tokenOfOwnerByIndex/bcfb5e1fff2b0d63e3f507cf619efd30405ebe178d0663eb8b95f3e0572d1ca5.cairo" - }, - "parent_location": [ - { - "end_col": 25, - "end_line": 445, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "parent_location": [ - { - "end_col": 62, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/external/tokenOfOwnerByIndex/da17921a4e81c09e730800bbf23bfdbe5e9e6bfaedc59d80fbf62087fa43c27d.cairo" - }, - "parent_location": [ - { - "end_col": 25, - "end_line": 445, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "start_col": 6, - "start_line": 445 - }, - "While constructing the external wrapper for:" - ], - "start_col": 50, - "start_line": 1 - }, - "While expanding the reference 'retdata_size' in:" - ], - "start_col": 6, - "start_line": 445 - }, - "While constructing the external wrapper for:" - ], - "start_col": 23, - "start_line": 2 - } - }, - "4731": { - "accessible_scopes": [ - "__main__", - "__main__", - "__wrappers__", - "__wrappers__.tokenOfOwnerByIndex" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 44, - "end_line": 2, - "input_file": { - "filename": "autogen/starknet/external/tokenOfOwnerByIndex/bcfb5e1fff2b0d63e3f507cf619efd30405ebe178d0663eb8b95f3e0572d1ca5.cairo" - }, - "parent_location": [ - { - "end_col": 25, - "end_line": 445, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "parent_location": [ - { - "end_col": 70, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/external/tokenOfOwnerByIndex/da17921a4e81c09e730800bbf23bfdbe5e9e6bfaedc59d80fbf62087fa43c27d.cairo" - }, - "parent_location": [ - { - "end_col": 25, - "end_line": 445, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "start_col": 6, - "start_line": 445 - }, - "While constructing the external wrapper for:" - ], - "start_col": 63, - "start_line": 1 - }, - "While expanding the reference 'retdata' in:" - ], - "start_col": 6, - "start_line": 445 - }, - "While constructing the external wrapper for:" - ], - "start_col": 37, - "start_line": 2 - } - }, - "4732": { - "accessible_scopes": [ - "__main__", - "__main__", - "__wrappers__", - "__wrappers__.tokenOfOwnerByIndex" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 72, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/external/tokenOfOwnerByIndex/da17921a4e81c09e730800bbf23bfdbe5e9e6bfaedc59d80fbf62087fa43c27d.cairo" - }, - "parent_location": [ - { - "end_col": 25, - "end_line": 445, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "start_col": 6, - "start_line": 445 - }, - "While constructing the external wrapper for:" - ], - "start_col": 1, - "start_line": 1 - } - }, - "4733": { - "accessible_scopes": [ - "__main__", - "__main__", - "__main__.supportsInterface" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 42, - "end_line": 453, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "parent_location": [ - { - "end_col": 47, - "end_line": 17, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/introspection/erc165/library.cairo" - }, - "parent_location": [ - { - "end_col": 59, - "end_line": 456, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "start_col": 21, - "start_line": 456 - }, - "While trying to retrieve the implicit argument 'syscall_ptr' in:" - ], - "start_col": 29, - "start_line": 17 - }, - "While expanding the reference 'syscall_ptr' in:" - ], - "start_col": 24, - "start_line": 453 - } - }, - "4734": { - "accessible_scopes": [ - "__main__", - "__main__", - "__main__.supportsInterface" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 70, - "end_line": 453, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "parent_location": [ - { - "end_col": 75, - "end_line": 17, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/introspection/erc165/library.cairo" - }, - "parent_location": [ - { - "end_col": 59, - "end_line": 456, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "start_col": 21, - "start_line": 456 - }, - "While trying to retrieve the implicit argument 'pedersen_ptr' in:" - ], - "start_col": 49, - "start_line": 17 - }, - "While expanding the reference 'pedersen_ptr' in:" - ], - "start_col": 44, - "start_line": 453 - } - }, - "4735": { - "accessible_scopes": [ - "__main__", - "__main__", - "__main__.supportsInterface" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 87, - "end_line": 453, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "parent_location": [ - { - "end_col": 92, - "end_line": 17, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/introspection/erc165/library.cairo" - }, - "parent_location": [ - { - "end_col": 59, - "end_line": 456, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "start_col": 21, - "start_line": 456 - }, - "While trying to retrieve the implicit argument 'range_check_ptr' in:" - ], - "start_col": 77, - "start_line": 17 - }, - "While expanding the reference 'range_check_ptr' in:" - ], - "start_col": 72, - "start_line": 453 - } - }, - "4736": { - "accessible_scopes": [ - "__main__", - "__main__", - "__main__.supportsInterface" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 22, - "end_line": 454, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "parent_location": [ - { - "end_col": 58, - "end_line": 456, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "start_col": 47, - "start_line": 456 - }, - "While expanding the reference 'interfaceId' in:" - ], - "start_col": 5, - "start_line": 454 - } - }, - "4737": { - "accessible_scopes": [ - "__main__", - "__main__", - "__main__.supportsInterface" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 59, - "end_line": 456, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "start_col": 21, - "start_line": 456 - } - }, - "4739": { - "accessible_scopes": [ - "__main__", - "__main__", - "__main__.supportsInterface" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 23, - "end_line": 457, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "start_col": 5, - "start_line": 457 - } - }, - "4740": { - "accessible_scopes": [ - "__main__", - "__main__", - "__wrappers__", - "__wrappers__.supportsInterface_encode_return" - ], - "flow_tracking_data": null, - "hints": [ - { - "location": { - "end_col": 38, - "end_line": 3, - "input_file": { - "filename": "autogen/starknet/external/return/supportsInterface/40b33230f82887d6ee6ba7936c0fcb15006d084631250a62d0c39394fb5b7629.cairo" - }, - "parent_location": [ - { - "end_col": 23, - "end_line": 453, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "start_col": 6, - "start_line": 453 - }, - "While handling return value of" - ], - "start_col": 5, - "start_line": 3 - }, - "n_prefix_newlines": 0 - } - ], - "inst": { - "end_col": 18, - "end_line": 4, - "input_file": { - "filename": "autogen/starknet/external/return/supportsInterface/40b33230f82887d6ee6ba7936c0fcb15006d084631250a62d0c39394fb5b7629.cairo" - }, - "parent_location": [ - { - "end_col": 23, - "end_line": 453, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "start_col": 6, - "start_line": 453 - }, - "While handling return value of" - ], - "start_col": 5, - "start_line": 4 - } - }, - "4742": { - "accessible_scopes": [ - "__main__", - "__main__", - "__wrappers__", - "__wrappers__.supportsInterface_encode_return" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 49, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/arg_processor/5c10028f67364b153272aa9b4cbc0fb78920a40fab821ac7257b0069e0773b49.cairo" - }, - "parent_location": [ - { - "end_col": 20, - "end_line": 455, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "start_col": 7, - "start_line": 455 - }, - "While handling return value 'success'" - ], - "start_col": 1, - "start_line": 1 - } - }, - "4743": { - "accessible_scopes": [ - "__main__", - "__main__", - "__wrappers__", - "__wrappers__.supportsInterface_encode_return" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 48, - "end_line": 2, - "input_file": { - "filename": "autogen/starknet/arg_processor/5c10028f67364b153272aa9b4cbc0fb78920a40fab821ac7257b0069e0773b49.cairo" - }, - "parent_location": [ - { - "end_col": 20, - "end_line": 455, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "parent_location": [ - { - "end_col": 36, - "end_line": 11, - "input_file": { - "filename": "autogen/starknet/external/return/supportsInterface/40b33230f82887d6ee6ba7936c0fcb15006d084631250a62d0c39394fb5b7629.cairo" - }, - "parent_location": [ - { - "end_col": 23, - "end_line": 453, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "start_col": 6, - "start_line": 453 - }, - "While handling return value of" - ], - "start_col": 18, - "start_line": 11 - }, - "While expanding the reference '__return_value_ptr' in:" - ], - "start_col": 7, - "start_line": 455 - }, - "While handling return value 'success'" - ], - "start_col": 26, - "start_line": 2 - } - }, - "4745": { - "accessible_scopes": [ - "__main__", - "__main__", - "__wrappers__", - "__wrappers__.supportsInterface_encode_return" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 81, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/external/return/supportsInterface/40b33230f82887d6ee6ba7936c0fcb15006d084631250a62d0c39394fb5b7629.cairo" - }, - "parent_location": [ - { - "end_col": 23, - "end_line": 453, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "parent_location": [ - { - "end_col": 40, - "end_line": 10, - "input_file": { - "filename": "autogen/starknet/external/return/supportsInterface/40b33230f82887d6ee6ba7936c0fcb15006d084631250a62d0c39394fb5b7629.cairo" - }, - "parent_location": [ - { - "end_col": 23, - "end_line": 453, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "start_col": 6, - "start_line": 453 - }, - "While handling return value of" - ], - "start_col": 25, - "start_line": 10 - }, - "While expanding the reference 'range_check_ptr' in:" - ], - "start_col": 6, - "start_line": 453 - }, - "While handling return value of" - ], - "start_col": 66, - "start_line": 1 - } - }, - "4746": { - "accessible_scopes": [ - "__main__", - "__main__", - "__wrappers__", - "__wrappers__.supportsInterface_encode_return" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 63, - "end_line": 11, - "input_file": { - "filename": "autogen/starknet/external/return/supportsInterface/40b33230f82887d6ee6ba7936c0fcb15006d084631250a62d0c39394fb5b7629.cairo" - }, - "parent_location": [ - { - "end_col": 23, - "end_line": 453, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "start_col": 6, - "start_line": 453 - }, - "While handling return value of" - ], - "start_col": 18, - "start_line": 11 - } - }, - "4747": { - "accessible_scopes": [ - "__main__", - "__main__", - "__wrappers__", - "__wrappers__.supportsInterface_encode_return" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 35, - "end_line": 5, - "input_file": { - "filename": "autogen/starknet/external/return/supportsInterface/40b33230f82887d6ee6ba7936c0fcb15006d084631250a62d0c39394fb5b7629.cairo" - }, - "parent_location": [ - { - "end_col": 23, - "end_line": 453, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "parent_location": [ - { - "end_col": 38, - "end_line": 12, - "input_file": { - "filename": "autogen/starknet/external/return/supportsInterface/40b33230f82887d6ee6ba7936c0fcb15006d084631250a62d0c39394fb5b7629.cairo" - }, - "parent_location": [ - { - "end_col": 23, - "end_line": 453, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "start_col": 6, - "start_line": 453 - }, - "While handling return value of" - ], - "start_col": 14, - "start_line": 12 - }, - "While expanding the reference '__return_value_ptr_start' in:" - ], - "start_col": 6, - "start_line": 453 - }, - "While handling return value of" - ], - "start_col": 11, - "start_line": 5 - } - }, - "4748": { - "accessible_scopes": [ - "__main__", - "__main__", - "__wrappers__", - "__wrappers__.supportsInterface_encode_return" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 40, - "end_line": 12, - "input_file": { - "filename": "autogen/starknet/external/return/supportsInterface/40b33230f82887d6ee6ba7936c0fcb15006d084631250a62d0c39394fb5b7629.cairo" - }, - "parent_location": [ - { - "end_col": 23, - "end_line": 453, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "start_col": 6, - "start_line": 453 - }, - "While handling return value of" - ], - "start_col": 5, - "start_line": 9 - } - }, - "4749": { - "accessible_scopes": [ - "__main__", - "__main__", - "__wrappers__", - "__wrappers__.supportsInterface" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 40, - "end_line": 2, - "input_file": { - "filename": "autogen/starknet/arg_processor/708f2877a5fc05dca278266df4d8e2025597a78068ffd64385f0ef27ab208871.cairo" - }, - "parent_location": [ - { - "end_col": 22, - "end_line": 454, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "parent_location": [ - { - "end_col": 45, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/arg_processor/c31620b02d4d706f0542c989b2aadc01b0981d1f6a5933a8fe4937ace3d70d92.cairo" - }, - "parent_location": [ - { - "end_col": 23, - "end_line": 453, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "parent_location": [ - { - "end_col": 57, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/arg_processor/01cba52f8515996bb9d7070bde81ff39281d096d7024a558efcba6e1fd2402cf.cairo" - }, - "parent_location": [ - { - "end_col": 23, - "end_line": 453, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "start_col": 6, - "start_line": 453 - }, - "While handling calldata of" - ], - "start_col": 35, - "start_line": 1 - }, - "While expanding the reference '__calldata_actual_size' in:" - ], - "start_col": 6, - "start_line": 453 - }, - "While handling calldata of" - ], - "start_col": 31, - "start_line": 1 - }, - "While expanding the reference '__calldata_ptr' in:" - ], - "start_col": 5, - "start_line": 454 - }, - "While handling calldata argument 'interfaceId'" - ], - "start_col": 22, - "start_line": 2 - } - }, - "4751": { - "accessible_scopes": [ - "__main__", - "__main__", - "__wrappers__", - "__wrappers__.supportsInterface" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 58, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/arg_processor/01cba52f8515996bb9d7070bde81ff39281d096d7024a558efcba6e1fd2402cf.cairo" - }, - "parent_location": [ - { - "end_col": 23, - "end_line": 453, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "start_col": 6, - "start_line": 453 - }, - "While handling calldata of" - ], - "start_col": 1, - "start_line": 1 - } - }, - "4752": { - "accessible_scopes": [ - "__main__", - "__main__", - "__wrappers__", - "__wrappers__.supportsInterface" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 64, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/external/supportsInterface/b2c52ca2d2a8fc8791a983086d8716c5eacd0c3d62934914d2286f84b98ff4cb.cairo" - }, - "parent_location": [ - { - "end_col": 42, - "end_line": 453, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "parent_location": [ - { - "end_col": 55, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/external/supportsInterface/bca8209c591df9f65b13800fe22999fe396aef7f2e9ee72505ad6a9793c5916d.cairo" - }, - "parent_location": [ - { - "end_col": 23, - "end_line": 453, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "start_col": 6, - "start_line": 453 - }, - "While constructing the external wrapper for:" - ], - "start_col": 44, - "start_line": 1 - }, - "While expanding the reference 'syscall_ptr' in:" - ], - "start_col": 24, - "start_line": 453 - }, - "While constructing the external wrapper for:" - ], - "start_col": 19, - "start_line": 1 - } - }, - "4753": { - "accessible_scopes": [ - "__main__", - "__main__", - "__wrappers__", - "__wrappers__.supportsInterface" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 110, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/external/supportsInterface/9684a85e93c782014ca14293edea4eb2502039a5a7b6538ecd39c56faaf12529.cairo" - }, - "parent_location": [ - { - "end_col": 70, - "end_line": 453, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "parent_location": [ - { - "end_col": 82, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/external/supportsInterface/bca8209c591df9f65b13800fe22999fe396aef7f2e9ee72505ad6a9793c5916d.cairo" - }, - "parent_location": [ - { - "end_col": 23, - "end_line": 453, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "start_col": 6, - "start_line": 453 - }, - "While constructing the external wrapper for:" - ], - "start_col": 70, - "start_line": 1 - }, - "While expanding the reference 'pedersen_ptr' in:" - ], - "start_col": 44, - "start_line": 453 - }, - "While constructing the external wrapper for:" - ], - "start_col": 20, - "start_line": 1 - } - }, - "4754": { - "accessible_scopes": [ - "__main__", - "__main__", - "__wrappers__", - "__wrappers__.supportsInterface" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 67, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/external/supportsInterface/741ea357d6336b0bed7bf0472425acd0311d543883b803388880e60a232040c7.cairo" - }, - "parent_location": [ - { - "end_col": 87, - "end_line": 453, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "parent_location": [ - { - "end_col": 115, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/external/supportsInterface/bca8209c591df9f65b13800fe22999fe396aef7f2e9ee72505ad6a9793c5916d.cairo" - }, - "parent_location": [ - { - "end_col": 23, - "end_line": 453, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "start_col": 6, - "start_line": 453 - }, - "While constructing the external wrapper for:" - ], - "start_col": 100, - "start_line": 1 - }, - "While expanding the reference 'range_check_ptr' in:" - ], - "start_col": 72, - "start_line": 453 - }, - "While constructing the external wrapper for:" - ], - "start_col": 23, - "start_line": 1 - } - }, - "4755": { - "accessible_scopes": [ - "__main__", - "__main__", - "__wrappers__", - "__wrappers__.supportsInterface" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 50, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/arg_processor/708f2877a5fc05dca278266df4d8e2025597a78068ffd64385f0ef27ab208871.cairo" - }, - "parent_location": [ - { - "end_col": 22, - "end_line": 454, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "parent_location": [ - { - "end_col": 155, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/external/supportsInterface/bca8209c591df9f65b13800fe22999fe396aef7f2e9ee72505ad6a9793c5916d.cairo" - }, - "parent_location": [ - { - "end_col": 23, - "end_line": 453, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "start_col": 6, - "start_line": 453 - }, - "While constructing the external wrapper for:" - ], - "start_col": 129, - "start_line": 1 - }, - "While expanding the reference '__calldata_arg_interfaceId' in:" - ], - "start_col": 5, - "start_line": 454 - }, - "While handling calldata argument 'interfaceId'" - ], - "start_col": 34, - "start_line": 1 - } - }, - "4756": { - "accessible_scopes": [ - "__main__", - "__main__", - "__wrappers__", - "__wrappers__.supportsInterface" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 23, - "end_line": 453, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "start_col": 6, - "start_line": 453 - } - }, - "4758": { - "accessible_scopes": [ - "__main__", - "__main__", - "__wrappers__", - "__wrappers__.supportsInterface" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 115, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/external/supportsInterface/bca8209c591df9f65b13800fe22999fe396aef7f2e9ee72505ad6a9793c5916d.cairo" - }, - "parent_location": [ - { - "end_col": 23, - "end_line": 453, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "parent_location": [ - { - "end_col": 106, - "end_line": 2, - "input_file": { - "filename": "autogen/starknet/external/supportsInterface/bca8209c591df9f65b13800fe22999fe396aef7f2e9ee72505ad6a9793c5916d.cairo" - }, - "parent_location": [ - { - "end_col": 23, - "end_line": 453, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "start_col": 6, - "start_line": 453 - }, - "While constructing the external wrapper for:" - ], - "start_col": 91, - "start_line": 2 - }, - "While expanding the reference 'range_check_ptr' in:" - ], - "start_col": 6, - "start_line": 453 - }, - "While constructing the external wrapper for:" - ], - "start_col": 100, - "start_line": 1 - } - }, - "4759": { - "accessible_scopes": [ - "__main__", - "__main__", - "__wrappers__", - "__wrappers__.supportsInterface" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 107, - "end_line": 2, - "input_file": { - "filename": "autogen/starknet/external/supportsInterface/bca8209c591df9f65b13800fe22999fe396aef7f2e9ee72505ad6a9793c5916d.cairo" - }, - "parent_location": [ - { - "end_col": 23, - "end_line": 453, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "start_col": 6, - "start_line": 453 - }, - "While constructing the external wrapper for:" - ], - "start_col": 48, - "start_line": 2 - } - }, - "4761": { - "accessible_scopes": [ - "__main__", - "__main__", - "__wrappers__", - "__wrappers__.supportsInterface" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 55, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/external/supportsInterface/bca8209c591df9f65b13800fe22999fe396aef7f2e9ee72505ad6a9793c5916d.cairo" - }, - "parent_location": [ - { - "end_col": 23, - "end_line": 453, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "parent_location": [ - { - "end_col": 20, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/external/supportsInterface/da17921a4e81c09e730800bbf23bfdbe5e9e6bfaedc59d80fbf62087fa43c27d.cairo" - }, - "parent_location": [ - { - "end_col": 23, - "end_line": 453, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "start_col": 6, - "start_line": 453 - }, - "While constructing the external wrapper for:" - ], - "start_col": 9, - "start_line": 1 - }, - "While expanding the reference 'syscall_ptr' in:" - ], - "start_col": 6, - "start_line": 453 - }, - "While constructing the external wrapper for:" - ], - "start_col": 44, - "start_line": 1 - } - }, - "4762": { - "accessible_scopes": [ - "__main__", - "__main__", - "__wrappers__", - "__wrappers__.supportsInterface" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 82, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/external/supportsInterface/bca8209c591df9f65b13800fe22999fe396aef7f2e9ee72505ad6a9793c5916d.cairo" - }, - "parent_location": [ - { - "end_col": 23, - "end_line": 453, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "parent_location": [ - { - "end_col": 33, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/external/supportsInterface/da17921a4e81c09e730800bbf23bfdbe5e9e6bfaedc59d80fbf62087fa43c27d.cairo" - }, - "parent_location": [ - { - "end_col": 23, - "end_line": 453, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "start_col": 6, - "start_line": 453 - }, - "While constructing the external wrapper for:" - ], - "start_col": 21, - "start_line": 1 - }, - "While expanding the reference 'pedersen_ptr' in:" - ], - "start_col": 6, - "start_line": 453 - }, - "While constructing the external wrapper for:" - ], - "start_col": 70, - "start_line": 1 - } - }, - "4763": { - "accessible_scopes": [ - "__main__", - "__main__", - "__wrappers__", - "__wrappers__.supportsInterface" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 21, - "end_line": 2, - "input_file": { - "filename": "autogen/starknet/external/supportsInterface/bca8209c591df9f65b13800fe22999fe396aef7f2e9ee72505ad6a9793c5916d.cairo" - }, - "parent_location": [ - { - "end_col": 23, - "end_line": 453, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "parent_location": [ - { - "end_col": 49, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/external/supportsInterface/da17921a4e81c09e730800bbf23bfdbe5e9e6bfaedc59d80fbf62087fa43c27d.cairo" - }, - "parent_location": [ - { - "end_col": 23, - "end_line": 453, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "start_col": 6, - "start_line": 453 - }, - "While constructing the external wrapper for:" - ], - "start_col": 34, - "start_line": 1 - }, - "While expanding the reference 'range_check_ptr' in:" - ], - "start_col": 6, - "start_line": 453 - }, - "While constructing the external wrapper for:" - ], - "start_col": 6, - "start_line": 2 - } - }, - "4764": { - "accessible_scopes": [ - "__main__", - "__main__", - "__wrappers__", - "__wrappers__.supportsInterface" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 35, - "end_line": 2, - "input_file": { - "filename": "autogen/starknet/external/supportsInterface/bca8209c591df9f65b13800fe22999fe396aef7f2e9ee72505ad6a9793c5916d.cairo" - }, - "parent_location": [ - { - "end_col": 23, - "end_line": 453, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "parent_location": [ - { - "end_col": 62, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/external/supportsInterface/da17921a4e81c09e730800bbf23bfdbe5e9e6bfaedc59d80fbf62087fa43c27d.cairo" - }, - "parent_location": [ - { - "end_col": 23, - "end_line": 453, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "start_col": 6, - "start_line": 453 - }, - "While constructing the external wrapper for:" - ], - "start_col": 50, - "start_line": 1 - }, - "While expanding the reference 'retdata_size' in:" - ], - "start_col": 6, - "start_line": 453 - }, - "While constructing the external wrapper for:" - ], - "start_col": 23, - "start_line": 2 - } - }, - "4765": { - "accessible_scopes": [ - "__main__", - "__main__", - "__wrappers__", - "__wrappers__.supportsInterface" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 44, - "end_line": 2, - "input_file": { - "filename": "autogen/starknet/external/supportsInterface/bca8209c591df9f65b13800fe22999fe396aef7f2e9ee72505ad6a9793c5916d.cairo" - }, - "parent_location": [ - { - "end_col": 23, - "end_line": 453, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "parent_location": [ - { - "end_col": 70, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/external/supportsInterface/da17921a4e81c09e730800bbf23bfdbe5e9e6bfaedc59d80fbf62087fa43c27d.cairo" - }, - "parent_location": [ - { - "end_col": 23, - "end_line": 453, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "start_col": 6, - "start_line": 453 - }, - "While constructing the external wrapper for:" - ], - "start_col": 63, - "start_line": 1 - }, - "While expanding the reference 'retdata' in:" - ], - "start_col": 6, - "start_line": 453 - }, - "While constructing the external wrapper for:" - ], - "start_col": 37, - "start_line": 2 - } - }, - "4766": { - "accessible_scopes": [ - "__main__", - "__main__", - "__wrappers__", - "__wrappers__.supportsInterface" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 72, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/external/supportsInterface/da17921a4e81c09e730800bbf23bfdbe5e9e6bfaedc59d80fbf62087fa43c27d.cairo" - }, - "parent_location": [ - { - "end_col": 23, - "end_line": 453, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "start_col": 6, - "start_line": 453 - }, - "While constructing the external wrapper for:" - ], - "start_col": 1, - "start_line": 1 - } - }, - "4767": { - "accessible_scopes": [ - "__main__", - "__main__", - "__main__.name" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 29, - "end_line": 461, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "parent_location": [ - { - "end_col": 29, - "end_line": 461, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "parent_location": [ - { - "end_col": 30, - "end_line": 462, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "start_col": 5, - "start_line": 462 - }, - "While trying to retrieve the implicit argument 'syscall_ptr' in:" - ], - "start_col": 11, - "start_line": 461 - }, - "While expanding the reference 'syscall_ptr' in:" - ], - "start_col": 11, - "start_line": 461 - } - }, - "4768": { - "accessible_scopes": [ - "__main__", - "__main__", - "__main__.name" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 57, - "end_line": 461, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "parent_location": [ - { - "end_col": 57, - "end_line": 461, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "parent_location": [ - { - "end_col": 30, - "end_line": 462, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "start_col": 5, - "start_line": 462 - }, - "While trying to retrieve the implicit argument 'pedersen_ptr' in:" - ], - "start_col": 31, - "start_line": 461 - }, - "While expanding the reference 'pedersen_ptr' in:" - ], - "start_col": 31, - "start_line": 461 - } - }, - "4769": { - "accessible_scopes": [ - "__main__", - "__main__", - "__main__.name" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 74, - "end_line": 461, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "parent_location": [ - { - "end_col": 74, - "end_line": 461, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "parent_location": [ - { - "end_col": 30, - "end_line": 462, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "start_col": 5, - "start_line": 462 - }, - "While trying to retrieve the implicit argument 'range_check_ptr' in:" - ], - "start_col": 59, - "start_line": 461 - }, - "While expanding the reference 'range_check_ptr' in:" - ], - "start_col": 59, - "start_line": 461 - } - }, - "4770": { - "accessible_scopes": [ - "__main__", - "__main__", - "__main__.name" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 27, - "end_line": 462, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "start_col": 13, - "start_line": 462 - } - }, - "4772": { - "accessible_scopes": [ - "__main__", - "__main__", - "__main__.name" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 30, - "end_line": 462, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "start_col": 5, - "start_line": 462 - } - }, - "4773": { - "accessible_scopes": [ - "__main__", - "__main__", - "__wrappers__", - "__wrappers__.name_encode_return" - ], - "flow_tracking_data": null, - "hints": [ - { - "location": { - "end_col": 38, - "end_line": 3, - "input_file": { - "filename": "autogen/starknet/external/return/name/c8fcd0b2b3f24b16bed33f1349d99fe0bde24b7764fe1bdc31d37b9ddca24adc.cairo" - }, - "parent_location": [ - { - "end_col": 10, - "end_line": 461, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "start_col": 6, - "start_line": 461 - }, - "While handling return value of" - ], - "start_col": 5, - "start_line": 3 - }, - "n_prefix_newlines": 0 - } - ], - "inst": { - "end_col": 18, - "end_line": 4, - "input_file": { - "filename": "autogen/starknet/external/return/name/c8fcd0b2b3f24b16bed33f1349d99fe0bde24b7764fe1bdc31d37b9ddca24adc.cairo" - }, - "parent_location": [ - { - "end_col": 10, - "end_line": 461, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "start_col": 6, - "start_line": 461 - }, - "While handling return value of" - ], - "start_col": 5, - "start_line": 4 - } - }, - "4775": { - "accessible_scopes": [ - "__main__", - "__main__", - "__wrappers__", - "__wrappers__.name_encode_return" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 46, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/arg_processor/6f345e20daf86e05c346aa1f6a9eeaa296a59eb71a12784c017d25ed5b25ff32.cairo" - }, - "parent_location": [ - { - "end_col": 92, - "end_line": 461, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "start_col": 82, - "start_line": 461 - }, - "While handling return value 'name'" - ], - "start_col": 1, - "start_line": 1 - } - }, - "4776": { - "accessible_scopes": [ - "__main__", - "__main__", - "__wrappers__", - "__wrappers__.name_encode_return" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 48, - "end_line": 2, - "input_file": { - "filename": "autogen/starknet/arg_processor/6f345e20daf86e05c346aa1f6a9eeaa296a59eb71a12784c017d25ed5b25ff32.cairo" - }, - "parent_location": [ - { - "end_col": 92, - "end_line": 461, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "parent_location": [ - { - "end_col": 36, - "end_line": 11, - "input_file": { - "filename": "autogen/starknet/external/return/name/c8fcd0b2b3f24b16bed33f1349d99fe0bde24b7764fe1bdc31d37b9ddca24adc.cairo" - }, - "parent_location": [ - { - "end_col": 10, - "end_line": 461, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "start_col": 6, - "start_line": 461 - }, - "While handling return value of" - ], - "start_col": 18, - "start_line": 11 - }, - "While expanding the reference '__return_value_ptr' in:" - ], - "start_col": 82, - "start_line": 461 - }, - "While handling return value 'name'" - ], - "start_col": 26, - "start_line": 2 - } - }, - "4778": { - "accessible_scopes": [ - "__main__", - "__main__", - "__wrappers__", - "__wrappers__.name_encode_return" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 65, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/external/return/name/c8fcd0b2b3f24b16bed33f1349d99fe0bde24b7764fe1bdc31d37b9ddca24adc.cairo" - }, - "parent_location": [ - { - "end_col": 10, - "end_line": 461, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "parent_location": [ - { - "end_col": 40, - "end_line": 10, - "input_file": { - "filename": "autogen/starknet/external/return/name/c8fcd0b2b3f24b16bed33f1349d99fe0bde24b7764fe1bdc31d37b9ddca24adc.cairo" - }, - "parent_location": [ - { - "end_col": 10, - "end_line": 461, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "start_col": 6, - "start_line": 461 - }, - "While handling return value of" - ], - "start_col": 25, - "start_line": 10 - }, - "While expanding the reference 'range_check_ptr' in:" - ], - "start_col": 6, - "start_line": 461 - }, - "While handling return value of" - ], - "start_col": 50, - "start_line": 1 - } - }, - "4779": { - "accessible_scopes": [ - "__main__", - "__main__", - "__wrappers__", - "__wrappers__.name_encode_return" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 63, - "end_line": 11, - "input_file": { - "filename": "autogen/starknet/external/return/name/c8fcd0b2b3f24b16bed33f1349d99fe0bde24b7764fe1bdc31d37b9ddca24adc.cairo" - }, - "parent_location": [ - { - "end_col": 10, - "end_line": 461, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "start_col": 6, - "start_line": 461 - }, - "While handling return value of" - ], - "start_col": 18, - "start_line": 11 - } - }, - "4780": { - "accessible_scopes": [ - "__main__", - "__main__", - "__wrappers__", - "__wrappers__.name_encode_return" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 35, - "end_line": 5, - "input_file": { - "filename": "autogen/starknet/external/return/name/c8fcd0b2b3f24b16bed33f1349d99fe0bde24b7764fe1bdc31d37b9ddca24adc.cairo" - }, - "parent_location": [ - { - "end_col": 10, - "end_line": 461, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "parent_location": [ - { - "end_col": 38, - "end_line": 12, - "input_file": { - "filename": "autogen/starknet/external/return/name/c8fcd0b2b3f24b16bed33f1349d99fe0bde24b7764fe1bdc31d37b9ddca24adc.cairo" - }, - "parent_location": [ - { - "end_col": 10, - "end_line": 461, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "start_col": 6, - "start_line": 461 - }, - "While handling return value of" - ], - "start_col": 14, - "start_line": 12 - }, - "While expanding the reference '__return_value_ptr_start' in:" - ], - "start_col": 6, - "start_line": 461 - }, - "While handling return value of" - ], - "start_col": 11, - "start_line": 5 - } - }, - "4781": { - "accessible_scopes": [ - "__main__", - "__main__", - "__wrappers__", - "__wrappers__.name_encode_return" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 40, - "end_line": 12, - "input_file": { - "filename": "autogen/starknet/external/return/name/c8fcd0b2b3f24b16bed33f1349d99fe0bde24b7764fe1bdc31d37b9ddca24adc.cairo" - }, - "parent_location": [ - { - "end_col": 10, - "end_line": 461, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "start_col": 6, - "start_line": 461 - }, - "While handling return value of" - ], - "start_col": 5, - "start_line": 9 - } - }, - "4782": { - "accessible_scopes": [ - "__main__", - "__main__", - "__wrappers__", - "__wrappers__.name" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 58, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/arg_processor/01cba52f8515996bb9d7070bde81ff39281d096d7024a558efcba6e1fd2402cf.cairo" - }, - "parent_location": [ - { - "end_col": 10, - "end_line": 461, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "start_col": 6, - "start_line": 461 - }, - "While handling calldata of" - ], - "start_col": 1, - "start_line": 1 - } - }, - "4783": { - "accessible_scopes": [ - "__main__", - "__main__", - "__wrappers__", - "__wrappers__.name" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 64, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/external/name/b2c52ca2d2a8fc8791a983086d8716c5eacd0c3d62934914d2286f84b98ff4cb.cairo" - }, - "parent_location": [ - { - "end_col": 29, - "end_line": 461, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "parent_location": [ - { - "end_col": 55, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/external/name/3034a84ffbc2cc9a83b0bdb0bf6aadae87a5c63f8544f4bc76a18d60221f0e94.cairo" - }, - "parent_location": [ - { - "end_col": 10, - "end_line": 461, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "start_col": 6, - "start_line": 461 - }, - "While constructing the external wrapper for:" - ], - "start_col": 44, - "start_line": 1 - }, - "While expanding the reference 'syscall_ptr' in:" - ], - "start_col": 11, - "start_line": 461 - }, - "While constructing the external wrapper for:" - ], - "start_col": 19, - "start_line": 1 - } - }, - "4784": { - "accessible_scopes": [ - "__main__", - "__main__", - "__wrappers__", - "__wrappers__.name" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 110, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/external/name/9684a85e93c782014ca14293edea4eb2502039a5a7b6538ecd39c56faaf12529.cairo" - }, - "parent_location": [ - { - "end_col": 57, - "end_line": 461, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "parent_location": [ - { - "end_col": 82, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/external/name/3034a84ffbc2cc9a83b0bdb0bf6aadae87a5c63f8544f4bc76a18d60221f0e94.cairo" - }, - "parent_location": [ - { - "end_col": 10, - "end_line": 461, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "start_col": 6, - "start_line": 461 - }, - "While constructing the external wrapper for:" - ], - "start_col": 70, - "start_line": 1 - }, - "While expanding the reference 'pedersen_ptr' in:" - ], - "start_col": 31, - "start_line": 461 - }, - "While constructing the external wrapper for:" - ], - "start_col": 20, - "start_line": 1 - } - }, - "4785": { - "accessible_scopes": [ - "__main__", - "__main__", - "__wrappers__", - "__wrappers__.name" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 67, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/external/name/741ea357d6336b0bed7bf0472425acd0311d543883b803388880e60a232040c7.cairo" - }, - "parent_location": [ - { - "end_col": 74, - "end_line": 461, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "parent_location": [ - { - "end_col": 115, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/external/name/3034a84ffbc2cc9a83b0bdb0bf6aadae87a5c63f8544f4bc76a18d60221f0e94.cairo" - }, - "parent_location": [ - { - "end_col": 10, - "end_line": 461, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "start_col": 6, - "start_line": 461 - }, - "While constructing the external wrapper for:" - ], - "start_col": 100, - "start_line": 1 - }, - "While expanding the reference 'range_check_ptr' in:" - ], - "start_col": 59, - "start_line": 461 - }, - "While constructing the external wrapper for:" - ], - "start_col": 23, - "start_line": 1 - } - }, - "4786": { - "accessible_scopes": [ - "__main__", - "__main__", - "__wrappers__", - "__wrappers__.name" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 10, - "end_line": 461, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "start_col": 6, - "start_line": 461 - } - }, - "4788": { - "accessible_scopes": [ - "__main__", - "__main__", - "__wrappers__", - "__wrappers__.name" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 115, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/external/name/3034a84ffbc2cc9a83b0bdb0bf6aadae87a5c63f8544f4bc76a18d60221f0e94.cairo" - }, - "parent_location": [ - { - "end_col": 10, - "end_line": 461, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "parent_location": [ - { - "end_col": 93, - "end_line": 2, - "input_file": { - "filename": "autogen/starknet/external/name/3034a84ffbc2cc9a83b0bdb0bf6aadae87a5c63f8544f4bc76a18d60221f0e94.cairo" - }, - "parent_location": [ - { - "end_col": 10, - "end_line": 461, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "start_col": 6, - "start_line": 461 - }, - "While constructing the external wrapper for:" - ], - "start_col": 78, - "start_line": 2 - }, - "While expanding the reference 'range_check_ptr' in:" - ], - "start_col": 6, - "start_line": 461 - }, - "While constructing the external wrapper for:" - ], - "start_col": 100, - "start_line": 1 - } - }, - "4789": { - "accessible_scopes": [ - "__main__", - "__main__", - "__wrappers__", - "__wrappers__.name" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 94, - "end_line": 2, - "input_file": { - "filename": "autogen/starknet/external/name/3034a84ffbc2cc9a83b0bdb0bf6aadae87a5c63f8544f4bc76a18d60221f0e94.cairo" - }, - "parent_location": [ - { - "end_col": 10, - "end_line": 461, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "start_col": 6, - "start_line": 461 - }, - "While constructing the external wrapper for:" - ], - "start_col": 48, - "start_line": 2 - } - }, - "4791": { - "accessible_scopes": [ - "__main__", - "__main__", - "__wrappers__", - "__wrappers__.name" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 55, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/external/name/3034a84ffbc2cc9a83b0bdb0bf6aadae87a5c63f8544f4bc76a18d60221f0e94.cairo" - }, - "parent_location": [ - { - "end_col": 10, - "end_line": 461, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "parent_location": [ - { - "end_col": 20, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/external/name/da17921a4e81c09e730800bbf23bfdbe5e9e6bfaedc59d80fbf62087fa43c27d.cairo" - }, - "parent_location": [ - { - "end_col": 10, - "end_line": 461, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "start_col": 6, - "start_line": 461 - }, - "While constructing the external wrapper for:" - ], - "start_col": 9, - "start_line": 1 - }, - "While expanding the reference 'syscall_ptr' in:" - ], - "start_col": 6, - "start_line": 461 - }, - "While constructing the external wrapper for:" - ], - "start_col": 44, - "start_line": 1 - } - }, - "4792": { - "accessible_scopes": [ - "__main__", - "__main__", - "__wrappers__", - "__wrappers__.name" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 82, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/external/name/3034a84ffbc2cc9a83b0bdb0bf6aadae87a5c63f8544f4bc76a18d60221f0e94.cairo" - }, - "parent_location": [ - { - "end_col": 10, - "end_line": 461, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "parent_location": [ - { - "end_col": 33, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/external/name/da17921a4e81c09e730800bbf23bfdbe5e9e6bfaedc59d80fbf62087fa43c27d.cairo" - }, - "parent_location": [ - { - "end_col": 10, - "end_line": 461, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "start_col": 6, - "start_line": 461 - }, - "While constructing the external wrapper for:" - ], - "start_col": 21, - "start_line": 1 - }, - "While expanding the reference 'pedersen_ptr' in:" - ], - "start_col": 6, - "start_line": 461 - }, - "While constructing the external wrapper for:" - ], - "start_col": 70, - "start_line": 1 - } - }, - "4793": { - "accessible_scopes": [ - "__main__", - "__main__", - "__wrappers__", - "__wrappers__.name" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 21, - "end_line": 2, - "input_file": { - "filename": "autogen/starknet/external/name/3034a84ffbc2cc9a83b0bdb0bf6aadae87a5c63f8544f4bc76a18d60221f0e94.cairo" - }, - "parent_location": [ - { - "end_col": 10, - "end_line": 461, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "parent_location": [ - { - "end_col": 49, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/external/name/da17921a4e81c09e730800bbf23bfdbe5e9e6bfaedc59d80fbf62087fa43c27d.cairo" - }, - "parent_location": [ - { - "end_col": 10, - "end_line": 461, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "start_col": 6, - "start_line": 461 - }, - "While constructing the external wrapper for:" - ], - "start_col": 34, - "start_line": 1 - }, - "While expanding the reference 'range_check_ptr' in:" - ], - "start_col": 6, - "start_line": 461 - }, - "While constructing the external wrapper for:" - ], - "start_col": 6, - "start_line": 2 - } - }, - "4794": { - "accessible_scopes": [ - "__main__", - "__main__", - "__wrappers__", - "__wrappers__.name" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 35, - "end_line": 2, - "input_file": { - "filename": "autogen/starknet/external/name/3034a84ffbc2cc9a83b0bdb0bf6aadae87a5c63f8544f4bc76a18d60221f0e94.cairo" - }, - "parent_location": [ - { - "end_col": 10, - "end_line": 461, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "parent_location": [ - { - "end_col": 62, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/external/name/da17921a4e81c09e730800bbf23bfdbe5e9e6bfaedc59d80fbf62087fa43c27d.cairo" - }, - "parent_location": [ - { - "end_col": 10, - "end_line": 461, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "start_col": 6, - "start_line": 461 - }, - "While constructing the external wrapper for:" - ], - "start_col": 50, - "start_line": 1 - }, - "While expanding the reference 'retdata_size' in:" - ], - "start_col": 6, - "start_line": 461 - }, - "While constructing the external wrapper for:" - ], - "start_col": 23, - "start_line": 2 - } - }, - "4795": { - "accessible_scopes": [ - "__main__", - "__main__", - "__wrappers__", - "__wrappers__.name" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 44, - "end_line": 2, - "input_file": { - "filename": "autogen/starknet/external/name/3034a84ffbc2cc9a83b0bdb0bf6aadae87a5c63f8544f4bc76a18d60221f0e94.cairo" - }, - "parent_location": [ - { - "end_col": 10, - "end_line": 461, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "parent_location": [ - { - "end_col": 70, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/external/name/da17921a4e81c09e730800bbf23bfdbe5e9e6bfaedc59d80fbf62087fa43c27d.cairo" - }, - "parent_location": [ - { - "end_col": 10, - "end_line": 461, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "start_col": 6, - "start_line": 461 - }, - "While constructing the external wrapper for:" - ], - "start_col": 63, - "start_line": 1 - }, - "While expanding the reference 'retdata' in:" - ], - "start_col": 6, - "start_line": 461 - }, - "While constructing the external wrapper for:" - ], - "start_col": 37, - "start_line": 2 - } - }, - "4796": { - "accessible_scopes": [ - "__main__", - "__main__", - "__wrappers__", - "__wrappers__.name" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 72, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/external/name/da17921a4e81c09e730800bbf23bfdbe5e9e6bfaedc59d80fbf62087fa43c27d.cairo" - }, - "parent_location": [ - { - "end_col": 10, - "end_line": 461, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "start_col": 6, - "start_line": 461 - }, - "While constructing the external wrapper for:" - ], - "start_col": 1, - "start_line": 1 - } - }, - "4797": { - "accessible_scopes": [ - "__main__", - "__main__", - "__main__.symbol" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 31, - "end_line": 466, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "parent_location": [ - { - "end_col": 31, - "end_line": 466, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "parent_location": [ - { - "end_col": 22, - "end_line": 467, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "start_col": 5, - "start_line": 467 - }, - "While trying to retrieve the implicit argument 'syscall_ptr' in:" - ], - "start_col": 13, - "start_line": 466 - }, - "While expanding the reference 'syscall_ptr' in:" - ], - "start_col": 13, - "start_line": 466 - } - }, - "4798": { - "accessible_scopes": [ - "__main__", - "__main__", - "__main__.symbol" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 59, - "end_line": 466, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "parent_location": [ - { - "end_col": 59, - "end_line": 466, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "parent_location": [ - { - "end_col": 22, - "end_line": 467, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "start_col": 5, - "start_line": 467 - }, - "While trying to retrieve the implicit argument 'pedersen_ptr' in:" - ], - "start_col": 33, - "start_line": 466 - }, - "While expanding the reference 'pedersen_ptr' in:" - ], - "start_col": 33, - "start_line": 466 - } - }, - "4799": { - "accessible_scopes": [ - "__main__", - "__main__", - "__main__.symbol" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 76, - "end_line": 466, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "parent_location": [ - { - "end_col": 76, - "end_line": 466, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "parent_location": [ - { - "end_col": 22, - "end_line": 467, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "start_col": 5, - "start_line": 467 - }, - "While trying to retrieve the implicit argument 'range_check_ptr' in:" - ], - "start_col": 61, - "start_line": 466 - }, - "While expanding the reference 'range_check_ptr' in:" - ], - "start_col": 61, - "start_line": 466 - } - }, - "4800": { - "accessible_scopes": [ - "__main__", - "__main__", - "__main__.symbol" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 19, - "end_line": 467, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "start_col": 13, - "start_line": 467 - } - }, - "4802": { - "accessible_scopes": [ - "__main__", - "__main__", - "__main__.symbol" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 22, - "end_line": 467, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "start_col": 5, - "start_line": 467 - } - }, - "4803": { - "accessible_scopes": [ - "__main__", - "__main__", - "__wrappers__", - "__wrappers__.symbol_encode_return" - ], - "flow_tracking_data": null, - "hints": [ - { - "location": { - "end_col": 38, - "end_line": 3, - "input_file": { - "filename": "autogen/starknet/external/return/symbol/a0ae85480af0490479ac55aa0fb10c479d3c551bd5d0b449dafe97eed061cca1.cairo" - }, - "parent_location": [ - { - "end_col": 12, - "end_line": 466, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "start_col": 6, - "start_line": 466 - }, - "While handling return value of" - ], - "start_col": 5, - "start_line": 3 - }, - "n_prefix_newlines": 0 - } - ], - "inst": { - "end_col": 18, - "end_line": 4, - "input_file": { - "filename": "autogen/starknet/external/return/symbol/a0ae85480af0490479ac55aa0fb10c479d3c551bd5d0b449dafe97eed061cca1.cairo" - }, - "parent_location": [ - { - "end_col": 12, - "end_line": 466, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "start_col": 6, - "start_line": 466 - }, - "While handling return value of" - ], - "start_col": 5, - "start_line": 4 - } - }, - "4805": { - "accessible_scopes": [ - "__main__", - "__main__", - "__wrappers__", - "__wrappers__.symbol_encode_return" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 48, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/arg_processor/3635b1d7caa543a52376beeb37a143262ea6ffdf923d8e3676d9b27787e943c8.cairo" - }, - "parent_location": [ - { - "end_col": 96, - "end_line": 466, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "start_col": 84, - "start_line": 466 - }, - "While handling return value 'symbol'" - ], - "start_col": 1, - "start_line": 1 - } - }, - "4806": { - "accessible_scopes": [ - "__main__", - "__main__", - "__wrappers__", - "__wrappers__.symbol_encode_return" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 48, - "end_line": 2, - "input_file": { - "filename": "autogen/starknet/arg_processor/3635b1d7caa543a52376beeb37a143262ea6ffdf923d8e3676d9b27787e943c8.cairo" - }, - "parent_location": [ - { - "end_col": 96, - "end_line": 466, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "parent_location": [ - { - "end_col": 36, - "end_line": 11, - "input_file": { - "filename": "autogen/starknet/external/return/symbol/a0ae85480af0490479ac55aa0fb10c479d3c551bd5d0b449dafe97eed061cca1.cairo" - }, - "parent_location": [ - { - "end_col": 12, - "end_line": 466, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "start_col": 6, - "start_line": 466 - }, - "While handling return value of" - ], - "start_col": 18, - "start_line": 11 - }, - "While expanding the reference '__return_value_ptr' in:" - ], - "start_col": 84, - "start_line": 466 - }, - "While handling return value 'symbol'" - ], - "start_col": 26, - "start_line": 2 - } - }, - "4808": { - "accessible_scopes": [ - "__main__", - "__main__", - "__wrappers__", - "__wrappers__.symbol_encode_return" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 69, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/external/return/symbol/a0ae85480af0490479ac55aa0fb10c479d3c551bd5d0b449dafe97eed061cca1.cairo" - }, - "parent_location": [ - { - "end_col": 12, - "end_line": 466, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "parent_location": [ - { - "end_col": 40, - "end_line": 10, - "input_file": { - "filename": "autogen/starknet/external/return/symbol/a0ae85480af0490479ac55aa0fb10c479d3c551bd5d0b449dafe97eed061cca1.cairo" - }, - "parent_location": [ - { - "end_col": 12, - "end_line": 466, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "start_col": 6, - "start_line": 466 - }, - "While handling return value of" - ], - "start_col": 25, - "start_line": 10 - }, - "While expanding the reference 'range_check_ptr' in:" - ], - "start_col": 6, - "start_line": 466 - }, - "While handling return value of" - ], - "start_col": 54, - "start_line": 1 - } - }, - "4809": { - "accessible_scopes": [ - "__main__", - "__main__", - "__wrappers__", - "__wrappers__.symbol_encode_return" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 63, - "end_line": 11, - "input_file": { - "filename": "autogen/starknet/external/return/symbol/a0ae85480af0490479ac55aa0fb10c479d3c551bd5d0b449dafe97eed061cca1.cairo" - }, - "parent_location": [ - { - "end_col": 12, - "end_line": 466, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "start_col": 6, - "start_line": 466 - }, - "While handling return value of" - ], - "start_col": 18, - "start_line": 11 - } - }, - "4810": { - "accessible_scopes": [ - "__main__", - "__main__", - "__wrappers__", - "__wrappers__.symbol_encode_return" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 35, - "end_line": 5, - "input_file": { - "filename": "autogen/starknet/external/return/symbol/a0ae85480af0490479ac55aa0fb10c479d3c551bd5d0b449dafe97eed061cca1.cairo" - }, - "parent_location": [ - { - "end_col": 12, - "end_line": 466, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "parent_location": [ - { - "end_col": 38, - "end_line": 12, - "input_file": { - "filename": "autogen/starknet/external/return/symbol/a0ae85480af0490479ac55aa0fb10c479d3c551bd5d0b449dafe97eed061cca1.cairo" - }, - "parent_location": [ - { - "end_col": 12, - "end_line": 466, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "start_col": 6, - "start_line": 466 - }, - "While handling return value of" - ], - "start_col": 14, - "start_line": 12 - }, - "While expanding the reference '__return_value_ptr_start' in:" - ], - "start_col": 6, - "start_line": 466 - }, - "While handling return value of" - ], - "start_col": 11, - "start_line": 5 - } - }, - "4811": { - "accessible_scopes": [ - "__main__", - "__main__", - "__wrappers__", - "__wrappers__.symbol_encode_return" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 40, - "end_line": 12, - "input_file": { - "filename": "autogen/starknet/external/return/symbol/a0ae85480af0490479ac55aa0fb10c479d3c551bd5d0b449dafe97eed061cca1.cairo" - }, - "parent_location": [ - { - "end_col": 12, - "end_line": 466, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "start_col": 6, - "start_line": 466 - }, - "While handling return value of" - ], - "start_col": 5, - "start_line": 9 - } - }, - "4812": { - "accessible_scopes": [ - "__main__", - "__main__", - "__wrappers__", - "__wrappers__.symbol" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 58, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/arg_processor/01cba52f8515996bb9d7070bde81ff39281d096d7024a558efcba6e1fd2402cf.cairo" - }, - "parent_location": [ - { - "end_col": 12, - "end_line": 466, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "start_col": 6, - "start_line": 466 - }, - "While handling calldata of" - ], - "start_col": 1, - "start_line": 1 - } - }, - "4813": { - "accessible_scopes": [ - "__main__", - "__main__", - "__wrappers__", - "__wrappers__.symbol" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 64, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/external/symbol/b2c52ca2d2a8fc8791a983086d8716c5eacd0c3d62934914d2286f84b98ff4cb.cairo" - }, - "parent_location": [ - { - "end_col": 31, - "end_line": 466, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "parent_location": [ - { - "end_col": 55, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/external/symbol/d8aa55fbbc45562d781915a1c7930fc50b33d8bd29db7102b5c44cbfd8b54639.cairo" - }, - "parent_location": [ - { - "end_col": 12, - "end_line": 466, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "start_col": 6, - "start_line": 466 - }, - "While constructing the external wrapper for:" - ], - "start_col": 44, - "start_line": 1 - }, - "While expanding the reference 'syscall_ptr' in:" - ], - "start_col": 13, - "start_line": 466 - }, - "While constructing the external wrapper for:" - ], - "start_col": 19, - "start_line": 1 - } - }, - "4814": { - "accessible_scopes": [ - "__main__", - "__main__", - "__wrappers__", - "__wrappers__.symbol" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 110, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/external/symbol/9684a85e93c782014ca14293edea4eb2502039a5a7b6538ecd39c56faaf12529.cairo" - }, - "parent_location": [ - { - "end_col": 59, - "end_line": 466, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "parent_location": [ - { - "end_col": 82, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/external/symbol/d8aa55fbbc45562d781915a1c7930fc50b33d8bd29db7102b5c44cbfd8b54639.cairo" - }, - "parent_location": [ - { - "end_col": 12, - "end_line": 466, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "start_col": 6, - "start_line": 466 - }, - "While constructing the external wrapper for:" - ], - "start_col": 70, - "start_line": 1 - }, - "While expanding the reference 'pedersen_ptr' in:" - ], - "start_col": 33, - "start_line": 466 - }, - "While constructing the external wrapper for:" - ], - "start_col": 20, - "start_line": 1 - } - }, - "4815": { - "accessible_scopes": [ - "__main__", - "__main__", - "__wrappers__", - "__wrappers__.symbol" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 67, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/external/symbol/741ea357d6336b0bed7bf0472425acd0311d543883b803388880e60a232040c7.cairo" - }, - "parent_location": [ - { - "end_col": 76, - "end_line": 466, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "parent_location": [ - { - "end_col": 115, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/external/symbol/d8aa55fbbc45562d781915a1c7930fc50b33d8bd29db7102b5c44cbfd8b54639.cairo" - }, - "parent_location": [ - { - "end_col": 12, - "end_line": 466, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "start_col": 6, - "start_line": 466 - }, - "While constructing the external wrapper for:" - ], - "start_col": 100, - "start_line": 1 - }, - "While expanding the reference 'range_check_ptr' in:" - ], - "start_col": 61, - "start_line": 466 - }, - "While constructing the external wrapper for:" - ], - "start_col": 23, - "start_line": 1 - } - }, - "4816": { - "accessible_scopes": [ - "__main__", - "__main__", - "__wrappers__", - "__wrappers__.symbol" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 12, - "end_line": 466, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "start_col": 6, - "start_line": 466 - } - }, - "4818": { - "accessible_scopes": [ - "__main__", - "__main__", - "__wrappers__", - "__wrappers__.symbol" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 115, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/external/symbol/d8aa55fbbc45562d781915a1c7930fc50b33d8bd29db7102b5c44cbfd8b54639.cairo" - }, - "parent_location": [ - { - "end_col": 12, - "end_line": 466, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "parent_location": [ - { - "end_col": 95, - "end_line": 2, - "input_file": { - "filename": "autogen/starknet/external/symbol/d8aa55fbbc45562d781915a1c7930fc50b33d8bd29db7102b5c44cbfd8b54639.cairo" - }, - "parent_location": [ - { - "end_col": 12, - "end_line": 466, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "start_col": 6, - "start_line": 466 - }, - "While constructing the external wrapper for:" - ], - "start_col": 80, - "start_line": 2 - }, - "While expanding the reference 'range_check_ptr' in:" - ], - "start_col": 6, - "start_line": 466 - }, - "While constructing the external wrapper for:" - ], - "start_col": 100, - "start_line": 1 - } - }, - "4819": { - "accessible_scopes": [ - "__main__", - "__main__", - "__wrappers__", - "__wrappers__.symbol" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 96, - "end_line": 2, - "input_file": { - "filename": "autogen/starknet/external/symbol/d8aa55fbbc45562d781915a1c7930fc50b33d8bd29db7102b5c44cbfd8b54639.cairo" - }, - "parent_location": [ - { - "end_col": 12, - "end_line": 466, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "start_col": 6, - "start_line": 466 - }, - "While constructing the external wrapper for:" - ], - "start_col": 48, - "start_line": 2 - } - }, - "4821": { - "accessible_scopes": [ - "__main__", - "__main__", - "__wrappers__", - "__wrappers__.symbol" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 55, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/external/symbol/d8aa55fbbc45562d781915a1c7930fc50b33d8bd29db7102b5c44cbfd8b54639.cairo" - }, - "parent_location": [ - { - "end_col": 12, - "end_line": 466, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "parent_location": [ - { - "end_col": 20, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/external/symbol/da17921a4e81c09e730800bbf23bfdbe5e9e6bfaedc59d80fbf62087fa43c27d.cairo" - }, - "parent_location": [ - { - "end_col": 12, - "end_line": 466, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "start_col": 6, - "start_line": 466 - }, - "While constructing the external wrapper for:" - ], - "start_col": 9, - "start_line": 1 - }, - "While expanding the reference 'syscall_ptr' in:" - ], - "start_col": 6, - "start_line": 466 - }, - "While constructing the external wrapper for:" - ], - "start_col": 44, - "start_line": 1 - } - }, - "4822": { - "accessible_scopes": [ - "__main__", - "__main__", - "__wrappers__", - "__wrappers__.symbol" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 82, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/external/symbol/d8aa55fbbc45562d781915a1c7930fc50b33d8bd29db7102b5c44cbfd8b54639.cairo" - }, - "parent_location": [ - { - "end_col": 12, - "end_line": 466, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "parent_location": [ - { - "end_col": 33, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/external/symbol/da17921a4e81c09e730800bbf23bfdbe5e9e6bfaedc59d80fbf62087fa43c27d.cairo" - }, - "parent_location": [ - { - "end_col": 12, - "end_line": 466, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "start_col": 6, - "start_line": 466 - }, - "While constructing the external wrapper for:" - ], - "start_col": 21, - "start_line": 1 - }, - "While expanding the reference 'pedersen_ptr' in:" - ], - "start_col": 6, - "start_line": 466 - }, - "While constructing the external wrapper for:" - ], - "start_col": 70, - "start_line": 1 - } - }, - "4823": { - "accessible_scopes": [ - "__main__", - "__main__", - "__wrappers__", - "__wrappers__.symbol" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 21, - "end_line": 2, - "input_file": { - "filename": "autogen/starknet/external/symbol/d8aa55fbbc45562d781915a1c7930fc50b33d8bd29db7102b5c44cbfd8b54639.cairo" - }, - "parent_location": [ - { - "end_col": 12, - "end_line": 466, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "parent_location": [ - { - "end_col": 49, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/external/symbol/da17921a4e81c09e730800bbf23bfdbe5e9e6bfaedc59d80fbf62087fa43c27d.cairo" - }, - "parent_location": [ - { - "end_col": 12, - "end_line": 466, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "start_col": 6, - "start_line": 466 - }, - "While constructing the external wrapper for:" - ], - "start_col": 34, - "start_line": 1 - }, - "While expanding the reference 'range_check_ptr' in:" - ], - "start_col": 6, - "start_line": 466 - }, - "While constructing the external wrapper for:" - ], - "start_col": 6, - "start_line": 2 - } - }, - "4824": { - "accessible_scopes": [ - "__main__", - "__main__", - "__wrappers__", - "__wrappers__.symbol" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 35, - "end_line": 2, - "input_file": { - "filename": "autogen/starknet/external/symbol/d8aa55fbbc45562d781915a1c7930fc50b33d8bd29db7102b5c44cbfd8b54639.cairo" - }, - "parent_location": [ - { - "end_col": 12, - "end_line": 466, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "parent_location": [ - { - "end_col": 62, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/external/symbol/da17921a4e81c09e730800bbf23bfdbe5e9e6bfaedc59d80fbf62087fa43c27d.cairo" - }, - "parent_location": [ - { - "end_col": 12, - "end_line": 466, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "start_col": 6, - "start_line": 466 - }, - "While constructing the external wrapper for:" - ], - "start_col": 50, - "start_line": 1 - }, - "While expanding the reference 'retdata_size' in:" - ], - "start_col": 6, - "start_line": 466 - }, - "While constructing the external wrapper for:" - ], - "start_col": 23, - "start_line": 2 - } - }, - "4825": { - "accessible_scopes": [ - "__main__", - "__main__", - "__wrappers__", - "__wrappers__.symbol" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 44, - "end_line": 2, - "input_file": { - "filename": "autogen/starknet/external/symbol/d8aa55fbbc45562d781915a1c7930fc50b33d8bd29db7102b5c44cbfd8b54639.cairo" - }, - "parent_location": [ - { - "end_col": 12, - "end_line": 466, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "parent_location": [ - { - "end_col": 70, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/external/symbol/da17921a4e81c09e730800bbf23bfdbe5e9e6bfaedc59d80fbf62087fa43c27d.cairo" - }, - "parent_location": [ - { - "end_col": 12, - "end_line": 466, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "start_col": 6, - "start_line": 466 - }, - "While constructing the external wrapper for:" - ], - "start_col": 63, - "start_line": 1 - }, - "While expanding the reference 'retdata' in:" - ], - "start_col": 6, - "start_line": 466 - }, - "While constructing the external wrapper for:" - ], - "start_col": 37, - "start_line": 2 - } - }, - "4826": { - "accessible_scopes": [ - "__main__", - "__main__", - "__wrappers__", - "__wrappers__.symbol" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 72, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/external/symbol/da17921a4e81c09e730800bbf23bfdbe5e9e6bfaedc59d80fbf62087fa43c27d.cairo" - }, - "parent_location": [ - { - "end_col": 12, - "end_line": 466, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "start_col": 6, - "start_line": 466 - }, - "While constructing the external wrapper for:" - ], - "start_col": 1, - "start_line": 1 - } - }, - "4827": { - "accessible_scopes": [ - "__main__", - "__main__", - "__main__.balanceOf" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 34, - "end_line": 471, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "parent_location": [ - { - "end_col": 39, - "end_line": 100, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" - }, - "parent_location": [ - { - "end_col": 54, - "end_line": 474, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "start_col": 30, - "start_line": 474 - }, - "While trying to retrieve the implicit argument 'syscall_ptr' in:" - ], - "start_col": 21, - "start_line": 100 - }, - "While expanding the reference 'syscall_ptr' in:" - ], - "start_col": 16, - "start_line": 471 - } - }, - "4828": { - "accessible_scopes": [ - "__main__", - "__main__", - "__main__.balanceOf" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 62, - "end_line": 471, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "parent_location": [ - { - "end_col": 67, - "end_line": 100, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" - }, - "parent_location": [ - { - "end_col": 54, - "end_line": 474, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "start_col": 30, - "start_line": 474 - }, - "While trying to retrieve the implicit argument 'pedersen_ptr' in:" - ], - "start_col": 41, - "start_line": 100 - }, - "While expanding the reference 'pedersen_ptr' in:" - ], - "start_col": 36, - "start_line": 471 - } - }, - "4829": { - "accessible_scopes": [ - "__main__", - "__main__", - "__main__.balanceOf" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 79, - "end_line": 471, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "parent_location": [ - { - "end_col": 84, - "end_line": 100, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" - }, - "parent_location": [ - { - "end_col": 54, - "end_line": 474, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "start_col": 30, - "start_line": 474 - }, - "While trying to retrieve the implicit argument 'range_check_ptr' in:" - ], - "start_col": 69, - "start_line": 100 - }, - "While expanding the reference 'range_check_ptr' in:" - ], - "start_col": 64, - "start_line": 471 - } - }, - "4830": { - "accessible_scopes": [ - "__main__", - "__main__", - "__main__.balanceOf" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 92, - "end_line": 471, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "parent_location": [ - { - "end_col": 53, - "end_line": 474, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "start_col": 48, - "start_line": 474 - }, - "While expanding the reference 'owner' in:" - ], - "start_col": 81, - "start_line": 471 - } - }, - "4831": { - "accessible_scopes": [ - "__main__", - "__main__", - "__main__.balanceOf" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 54, - "end_line": 474, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "start_col": 30, - "start_line": 474 - } - }, - "4833": { - "accessible_scopes": [ - "__main__", - "__main__", - "__main__.balanceOf" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 23, - "end_line": 475, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "start_col": 5, - "start_line": 475 - } - }, - "4834": { - "accessible_scopes": [ - "__main__", - "__main__", - "__wrappers__", - "__wrappers__.balanceOf_encode_return" - ], - "flow_tracking_data": null, - "hints": [ - { - "location": { - "end_col": 38, - "end_line": 3, - "input_file": { - "filename": "autogen/starknet/external/return/balanceOf/6be46755be2f937558932379e9c42b1ab153e2ba499cd66beb178511b2106ad9.cairo" - }, - "parent_location": [ - { - "end_col": 15, - "end_line": 471, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "start_col": 6, - "start_line": 471 - }, - "While handling return value of" - ], - "start_col": 5, - "start_line": 3 - }, - "n_prefix_newlines": 0 - } - ], - "inst": { - "end_col": 18, - "end_line": 4, - "input_file": { - "filename": "autogen/starknet/external/return/balanceOf/6be46755be2f937558932379e9c42b1ab153e2ba499cd66beb178511b2106ad9.cairo" - }, - "parent_location": [ - { - "end_col": 15, - "end_line": 471, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "start_col": 6, - "start_line": 471 - }, - "While handling return value of" - ], - "start_col": 5, - "start_line": 4 - } - }, - "4836": { - "accessible_scopes": [ - "__main__", - "__main__", - "__wrappers__", - "__wrappers__.balanceOf_encode_return" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 60, - "end_line": 3, - "input_file": { - "filename": "autogen/starknet/arg_processor/f013cc89754bf613d36aa163a5014b518987d20a85394ebbe3c47c5cdb0a38b1.cairo" - }, - "parent_location": [ - { - "end_col": 21, - "end_line": 472, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "start_col": 5, - "start_line": 472 - }, - "While handling return value 'balance'" - ], - "start_col": 1, - "start_line": 3 - } - }, - "4837": { - "accessible_scopes": [ - "__main__", - "__main__", - "__wrappers__", - "__wrappers__.balanceOf_encode_return" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 60, - "end_line": 4, - "input_file": { - "filename": "autogen/starknet/arg_processor/f013cc89754bf613d36aa163a5014b518987d20a85394ebbe3c47c5cdb0a38b1.cairo" - }, - "parent_location": [ - { - "end_col": 21, - "end_line": 472, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "start_col": 5, - "start_line": 472 - }, - "While handling return value 'balance'" - ], - "start_col": 1, - "start_line": 4 - } - }, - "4838": { - "accessible_scopes": [ - "__main__", - "__main__", - "__wrappers__", - "__wrappers__.balanceOf_encode_return" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 48, - "end_line": 5, - "input_file": { - "filename": "autogen/starknet/arg_processor/f013cc89754bf613d36aa163a5014b518987d20a85394ebbe3c47c5cdb0a38b1.cairo" - }, - "parent_location": [ - { - "end_col": 21, - "end_line": 472, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "parent_location": [ - { - "end_col": 36, - "end_line": 11, - "input_file": { - "filename": "autogen/starknet/external/return/balanceOf/6be46755be2f937558932379e9c42b1ab153e2ba499cd66beb178511b2106ad9.cairo" - }, - "parent_location": [ - { - "end_col": 15, - "end_line": 471, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "start_col": 6, - "start_line": 471 - }, - "While handling return value of" - ], - "start_col": 18, - "start_line": 11 - }, - "While expanding the reference '__return_value_ptr' in:" - ], - "start_col": 5, - "start_line": 472 - }, - "While handling return value 'balance'" - ], - "start_col": 26, - "start_line": 5 - } - }, - "4840": { - "accessible_scopes": [ - "__main__", - "__main__", - "__wrappers__", - "__wrappers__.balanceOf_encode_return" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 107, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/external/return/balanceOf/6be46755be2f937558932379e9c42b1ab153e2ba499cd66beb178511b2106ad9.cairo" - }, - "parent_location": [ - { - "end_col": 15, - "end_line": 471, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "parent_location": [ - { - "end_col": 40, - "end_line": 10, - "input_file": { - "filename": "autogen/starknet/external/return/balanceOf/6be46755be2f937558932379e9c42b1ab153e2ba499cd66beb178511b2106ad9.cairo" - }, - "parent_location": [ - { - "end_col": 15, - "end_line": 471, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "start_col": 6, - "start_line": 471 - }, - "While handling return value of" - ], - "start_col": 25, - "start_line": 10 - }, - "While expanding the reference 'range_check_ptr' in:" - ], - "start_col": 6, - "start_line": 471 - }, - "While handling return value of" - ], - "start_col": 92, - "start_line": 1 - } - }, - "4841": { - "accessible_scopes": [ - "__main__", - "__main__", - "__wrappers__", - "__wrappers__.balanceOf_encode_return" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 63, - "end_line": 11, - "input_file": { - "filename": "autogen/starknet/external/return/balanceOf/6be46755be2f937558932379e9c42b1ab153e2ba499cd66beb178511b2106ad9.cairo" - }, - "parent_location": [ - { - "end_col": 15, - "end_line": 471, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "start_col": 6, - "start_line": 471 - }, - "While handling return value of" - ], - "start_col": 18, - "start_line": 11 - } - }, - "4842": { - "accessible_scopes": [ - "__main__", - "__main__", - "__wrappers__", - "__wrappers__.balanceOf_encode_return" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 35, - "end_line": 5, - "input_file": { - "filename": "autogen/starknet/external/return/balanceOf/6be46755be2f937558932379e9c42b1ab153e2ba499cd66beb178511b2106ad9.cairo" - }, - "parent_location": [ - { - "end_col": 15, - "end_line": 471, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "parent_location": [ - { - "end_col": 38, - "end_line": 12, - "input_file": { - "filename": "autogen/starknet/external/return/balanceOf/6be46755be2f937558932379e9c42b1ab153e2ba499cd66beb178511b2106ad9.cairo" - }, - "parent_location": [ - { - "end_col": 15, - "end_line": 471, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "start_col": 6, - "start_line": 471 - }, - "While handling return value of" - ], - "start_col": 14, - "start_line": 12 - }, - "While expanding the reference '__return_value_ptr_start' in:" - ], - "start_col": 6, - "start_line": 471 - }, - "While handling return value of" - ], - "start_col": 11, - "start_line": 5 - } - }, - "4843": { - "accessible_scopes": [ - "__main__", - "__main__", - "__wrappers__", - "__wrappers__.balanceOf_encode_return" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 40, - "end_line": 12, - "input_file": { - "filename": "autogen/starknet/external/return/balanceOf/6be46755be2f937558932379e9c42b1ab153e2ba499cd66beb178511b2106ad9.cairo" - }, - "parent_location": [ - { - "end_col": 15, - "end_line": 471, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "start_col": 6, - "start_line": 471 - }, - "While handling return value of" - ], - "start_col": 5, - "start_line": 9 - } - }, - "4844": { - "accessible_scopes": [ - "__main__", - "__main__", - "__wrappers__", - "__wrappers__.balanceOf" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 40, - "end_line": 2, - "input_file": { - "filename": "autogen/starknet/arg_processor/f6a4d9ae897caf37cefd18f7c8da7eee73157818279359aadee282f0fe59cdbc.cairo" - }, - "parent_location": [ - { - "end_col": 92, - "end_line": 471, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "parent_location": [ - { - "end_col": 45, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/arg_processor/c31620b02d4d706f0542c989b2aadc01b0981d1f6a5933a8fe4937ace3d70d92.cairo" - }, - "parent_location": [ - { - "end_col": 15, - "end_line": 471, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "parent_location": [ - { - "end_col": 57, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/arg_processor/01cba52f8515996bb9d7070bde81ff39281d096d7024a558efcba6e1fd2402cf.cairo" - }, - "parent_location": [ - { - "end_col": 15, - "end_line": 471, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "start_col": 6, - "start_line": 471 - }, - "While handling calldata of" - ], - "start_col": 35, - "start_line": 1 - }, - "While expanding the reference '__calldata_actual_size' in:" - ], - "start_col": 6, - "start_line": 471 - }, - "While handling calldata of" - ], - "start_col": 31, - "start_line": 1 - }, - "While expanding the reference '__calldata_ptr' in:" - ], - "start_col": 81, - "start_line": 471 - }, - "While handling calldata argument 'owner'" - ], - "start_col": 22, - "start_line": 2 - } - }, - "4846": { - "accessible_scopes": [ - "__main__", - "__main__", - "__wrappers__", - "__wrappers__.balanceOf" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 58, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/arg_processor/01cba52f8515996bb9d7070bde81ff39281d096d7024a558efcba6e1fd2402cf.cairo" - }, - "parent_location": [ - { - "end_col": 15, - "end_line": 471, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "start_col": 6, - "start_line": 471 - }, - "While handling calldata of" - ], - "start_col": 1, - "start_line": 1 - } - }, - "4847": { - "accessible_scopes": [ - "__main__", - "__main__", - "__wrappers__", - "__wrappers__.balanceOf" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 64, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/external/balanceOf/b2c52ca2d2a8fc8791a983086d8716c5eacd0c3d62934914d2286f84b98ff4cb.cairo" - }, - "parent_location": [ - { - "end_col": 34, - "end_line": 471, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "parent_location": [ - { - "end_col": 55, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/external/balanceOf/e284e4e5d868a363d8b6a6cb098d9657778060e55c5be38c8c67b1857b1926cc.cairo" - }, - "parent_location": [ - { - "end_col": 15, - "end_line": 471, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "start_col": 6, - "start_line": 471 - }, - "While constructing the external wrapper for:" - ], - "start_col": 44, - "start_line": 1 - }, - "While expanding the reference 'syscall_ptr' in:" - ], - "start_col": 16, - "start_line": 471 - }, - "While constructing the external wrapper for:" - ], - "start_col": 19, - "start_line": 1 - } - }, - "4848": { - "accessible_scopes": [ - "__main__", - "__main__", - "__wrappers__", - "__wrappers__.balanceOf" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 110, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/external/balanceOf/9684a85e93c782014ca14293edea4eb2502039a5a7b6538ecd39c56faaf12529.cairo" - }, - "parent_location": [ - { - "end_col": 62, - "end_line": 471, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "parent_location": [ - { - "end_col": 82, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/external/balanceOf/e284e4e5d868a363d8b6a6cb098d9657778060e55c5be38c8c67b1857b1926cc.cairo" - }, - "parent_location": [ - { - "end_col": 15, - "end_line": 471, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "start_col": 6, - "start_line": 471 - }, - "While constructing the external wrapper for:" - ], - "start_col": 70, - "start_line": 1 - }, - "While expanding the reference 'pedersen_ptr' in:" - ], - "start_col": 36, - "start_line": 471 - }, - "While constructing the external wrapper for:" - ], - "start_col": 20, - "start_line": 1 - } - }, - "4849": { - "accessible_scopes": [ - "__main__", - "__main__", - "__wrappers__", - "__wrappers__.balanceOf" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 67, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/external/balanceOf/741ea357d6336b0bed7bf0472425acd0311d543883b803388880e60a232040c7.cairo" - }, - "parent_location": [ - { - "end_col": 79, - "end_line": 471, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "parent_location": [ - { - "end_col": 115, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/external/balanceOf/e284e4e5d868a363d8b6a6cb098d9657778060e55c5be38c8c67b1857b1926cc.cairo" - }, - "parent_location": [ - { - "end_col": 15, - "end_line": 471, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "start_col": 6, - "start_line": 471 - }, - "While constructing the external wrapper for:" - ], - "start_col": 100, - "start_line": 1 - }, - "While expanding the reference 'range_check_ptr' in:" - ], - "start_col": 64, - "start_line": 471 - }, - "While constructing the external wrapper for:" - ], - "start_col": 23, - "start_line": 1 - } - }, - "4850": { - "accessible_scopes": [ - "__main__", - "__main__", - "__wrappers__", - "__wrappers__.balanceOf" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 44, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/arg_processor/f6a4d9ae897caf37cefd18f7c8da7eee73157818279359aadee282f0fe59cdbc.cairo" - }, - "parent_location": [ - { - "end_col": 92, - "end_line": 471, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "parent_location": [ - { - "end_col": 143, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/external/balanceOf/e284e4e5d868a363d8b6a6cb098d9657778060e55c5be38c8c67b1857b1926cc.cairo" - }, - "parent_location": [ - { - "end_col": 15, - "end_line": 471, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "start_col": 6, - "start_line": 471 - }, - "While constructing the external wrapper for:" - ], - "start_col": 123, - "start_line": 1 - }, - "While expanding the reference '__calldata_arg_owner' in:" - ], - "start_col": 81, - "start_line": 471 - }, - "While handling calldata argument 'owner'" - ], - "start_col": 28, - "start_line": 1 - } - }, - "4851": { - "accessible_scopes": [ - "__main__", - "__main__", - "__wrappers__", - "__wrappers__.balanceOf" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 15, - "end_line": 471, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "start_col": 6, - "start_line": 471 - } - }, - "4853": { - "accessible_scopes": [ - "__main__", - "__main__", - "__wrappers__", - "__wrappers__.balanceOf" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 115, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/external/balanceOf/e284e4e5d868a363d8b6a6cb098d9657778060e55c5be38c8c67b1857b1926cc.cairo" - }, - "parent_location": [ - { - "end_col": 15, - "end_line": 471, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "parent_location": [ - { - "end_col": 98, - "end_line": 2, - "input_file": { - "filename": "autogen/starknet/external/balanceOf/e284e4e5d868a363d8b6a6cb098d9657778060e55c5be38c8c67b1857b1926cc.cairo" - }, - "parent_location": [ - { - "end_col": 15, - "end_line": 471, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "start_col": 6, - "start_line": 471 - }, - "While constructing the external wrapper for:" - ], - "start_col": 83, - "start_line": 2 - }, - "While expanding the reference 'range_check_ptr' in:" - ], - "start_col": 6, - "start_line": 471 - }, - "While constructing the external wrapper for:" - ], - "start_col": 100, - "start_line": 1 - } - }, - "4854": { - "accessible_scopes": [ - "__main__", - "__main__", - "__wrappers__", - "__wrappers__.balanceOf" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 99, - "end_line": 2, - "input_file": { - "filename": "autogen/starknet/external/balanceOf/e284e4e5d868a363d8b6a6cb098d9657778060e55c5be38c8c67b1857b1926cc.cairo" - }, - "parent_location": [ - { - "end_col": 15, - "end_line": 471, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "start_col": 6, - "start_line": 471 - }, - "While constructing the external wrapper for:" - ], - "start_col": 48, - "start_line": 2 - } - }, - "4856": { - "accessible_scopes": [ - "__main__", - "__main__", - "__wrappers__", - "__wrappers__.balanceOf" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 55, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/external/balanceOf/e284e4e5d868a363d8b6a6cb098d9657778060e55c5be38c8c67b1857b1926cc.cairo" - }, - "parent_location": [ - { - "end_col": 15, - "end_line": 471, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "parent_location": [ - { - "end_col": 20, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/external/balanceOf/da17921a4e81c09e730800bbf23bfdbe5e9e6bfaedc59d80fbf62087fa43c27d.cairo" - }, - "parent_location": [ - { - "end_col": 15, - "end_line": 471, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "start_col": 6, - "start_line": 471 - }, - "While constructing the external wrapper for:" - ], - "start_col": 9, - "start_line": 1 - }, - "While expanding the reference 'syscall_ptr' in:" - ], - "start_col": 6, - "start_line": 471 - }, - "While constructing the external wrapper for:" - ], - "start_col": 44, - "start_line": 1 - } - }, - "4857": { - "accessible_scopes": [ - "__main__", - "__main__", - "__wrappers__", - "__wrappers__.balanceOf" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 82, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/external/balanceOf/e284e4e5d868a363d8b6a6cb098d9657778060e55c5be38c8c67b1857b1926cc.cairo" - }, - "parent_location": [ - { - "end_col": 15, - "end_line": 471, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "parent_location": [ - { - "end_col": 33, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/external/balanceOf/da17921a4e81c09e730800bbf23bfdbe5e9e6bfaedc59d80fbf62087fa43c27d.cairo" - }, - "parent_location": [ - { - "end_col": 15, - "end_line": 471, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "start_col": 6, - "start_line": 471 - }, - "While constructing the external wrapper for:" - ], - "start_col": 21, - "start_line": 1 - }, - "While expanding the reference 'pedersen_ptr' in:" - ], - "start_col": 6, - "start_line": 471 - }, - "While constructing the external wrapper for:" - ], - "start_col": 70, - "start_line": 1 - } - }, - "4858": { - "accessible_scopes": [ - "__main__", - "__main__", - "__wrappers__", - "__wrappers__.balanceOf" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 21, - "end_line": 2, - "input_file": { - "filename": "autogen/starknet/external/balanceOf/e284e4e5d868a363d8b6a6cb098d9657778060e55c5be38c8c67b1857b1926cc.cairo" - }, - "parent_location": [ - { - "end_col": 15, - "end_line": 471, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "parent_location": [ - { - "end_col": 49, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/external/balanceOf/da17921a4e81c09e730800bbf23bfdbe5e9e6bfaedc59d80fbf62087fa43c27d.cairo" - }, - "parent_location": [ - { - "end_col": 15, - "end_line": 471, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "start_col": 6, - "start_line": 471 - }, - "While constructing the external wrapper for:" - ], - "start_col": 34, - "start_line": 1 - }, - "While expanding the reference 'range_check_ptr' in:" - ], - "start_col": 6, - "start_line": 471 - }, - "While constructing the external wrapper for:" - ], - "start_col": 6, - "start_line": 2 - } - }, - "4859": { - "accessible_scopes": [ - "__main__", - "__main__", - "__wrappers__", - "__wrappers__.balanceOf" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 35, - "end_line": 2, - "input_file": { - "filename": "autogen/starknet/external/balanceOf/e284e4e5d868a363d8b6a6cb098d9657778060e55c5be38c8c67b1857b1926cc.cairo" - }, - "parent_location": [ - { - "end_col": 15, - "end_line": 471, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "parent_location": [ - { - "end_col": 62, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/external/balanceOf/da17921a4e81c09e730800bbf23bfdbe5e9e6bfaedc59d80fbf62087fa43c27d.cairo" - }, - "parent_location": [ - { - "end_col": 15, - "end_line": 471, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "start_col": 6, - "start_line": 471 - }, - "While constructing the external wrapper for:" - ], - "start_col": 50, - "start_line": 1 - }, - "While expanding the reference 'retdata_size' in:" - ], - "start_col": 6, - "start_line": 471 - }, - "While constructing the external wrapper for:" - ], - "start_col": 23, - "start_line": 2 - } - }, - "4860": { - "accessible_scopes": [ - "__main__", - "__main__", - "__wrappers__", - "__wrappers__.balanceOf" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 44, - "end_line": 2, - "input_file": { - "filename": "autogen/starknet/external/balanceOf/e284e4e5d868a363d8b6a6cb098d9657778060e55c5be38c8c67b1857b1926cc.cairo" - }, - "parent_location": [ - { - "end_col": 15, - "end_line": 471, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "parent_location": [ - { - "end_col": 70, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/external/balanceOf/da17921a4e81c09e730800bbf23bfdbe5e9e6bfaedc59d80fbf62087fa43c27d.cairo" - }, - "parent_location": [ - { - "end_col": 15, - "end_line": 471, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "start_col": 6, - "start_line": 471 - }, - "While constructing the external wrapper for:" - ], - "start_col": 63, - "start_line": 1 - }, - "While expanding the reference 'retdata' in:" - ], - "start_col": 6, - "start_line": 471 - }, - "While constructing the external wrapper for:" - ], - "start_col": 37, - "start_line": 2 - } - }, - "4861": { - "accessible_scopes": [ - "__main__", - "__main__", - "__wrappers__", - "__wrappers__.balanceOf" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 72, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/external/balanceOf/da17921a4e81c09e730800bbf23bfdbe5e9e6bfaedc59d80fbf62087fa43c27d.cairo" - }, - "parent_location": [ - { - "end_col": 15, - "end_line": 471, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "start_col": 6, - "start_line": 471 - }, - "While constructing the external wrapper for:" - ], - "start_col": 1, - "start_line": 1 - } - }, - "4862": { - "accessible_scopes": [ - "__main__", - "__main__", - "__main__.ownerOf" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 32, - "end_line": 479, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "parent_location": [ - { - "end_col": 37, - "end_line": 109, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" - }, - "parent_location": [ - { - "end_col": 49, - "end_line": 482, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "start_col": 25, - "start_line": 482 - }, - "While trying to retrieve the implicit argument 'syscall_ptr' in:" - ], - "start_col": 19, - "start_line": 109 - }, - "While expanding the reference 'syscall_ptr' in:" - ], - "start_col": 14, - "start_line": 479 - } - }, - "4863": { - "accessible_scopes": [ - "__main__", - "__main__", - "__main__.ownerOf" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 60, - "end_line": 479, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "parent_location": [ - { - "end_col": 65, - "end_line": 109, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" - }, - "parent_location": [ - { - "end_col": 49, - "end_line": 482, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "start_col": 25, - "start_line": 482 - }, - "While trying to retrieve the implicit argument 'pedersen_ptr' in:" - ], - "start_col": 39, - "start_line": 109 - }, - "While expanding the reference 'pedersen_ptr' in:" - ], - "start_col": 34, - "start_line": 479 - } - }, - "4864": { - "accessible_scopes": [ - "__main__", - "__main__", - "__main__.ownerOf" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 77, - "end_line": 479, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "parent_location": [ - { - "end_col": 82, - "end_line": 109, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" - }, - "parent_location": [ - { - "end_col": 49, - "end_line": 482, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "start_col": 25, - "start_line": 482 - }, - "While trying to retrieve the implicit argument 'range_check_ptr' in:" - ], - "start_col": 67, - "start_line": 109 - }, - "While expanding the reference 'range_check_ptr' in:" - ], - "start_col": 62, - "start_line": 479 - } - }, - "4865": { - "accessible_scopes": [ - "__main__", - "__main__", - "__main__.ownerOf" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 95, - "end_line": 479, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "parent_location": [ - { - "end_col": 48, - "end_line": 482, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "start_col": 41, - "start_line": 482 - }, - "While expanding the reference 'tokenId' in:" - ], - "start_col": 79, - "start_line": 479 - } - }, - "4866": { - "accessible_scopes": [ - "__main__", - "__main__", - "__main__.ownerOf" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 95, - "end_line": 479, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "parent_location": [ - { - "end_col": 48, - "end_line": 482, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "start_col": 41, - "start_line": 482 - }, - "While expanding the reference 'tokenId' in:" - ], - "start_col": 79, - "start_line": 479 - } - }, - "4867": { - "accessible_scopes": [ - "__main__", - "__main__", - "__main__.ownerOf" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 49, - "end_line": 482, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "start_col": 25, - "start_line": 482 - } - }, - "4869": { - "accessible_scopes": [ - "__main__", - "__main__", - "__main__.ownerOf" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 21, - "end_line": 483, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "start_col": 5, - "start_line": 483 - } - }, - "4870": { - "accessible_scopes": [ - "__main__", - "__main__", - "__wrappers__", - "__wrappers__.ownerOf_encode_return" - ], - "flow_tracking_data": null, - "hints": [ - { - "location": { - "end_col": 38, - "end_line": 3, - "input_file": { - "filename": "autogen/starknet/external/return/ownerOf/e26804beb30ff3fdad1596e68c20c0df03519fc5def143a2feb768126371681c.cairo" - }, - "parent_location": [ - { - "end_col": 13, - "end_line": 479, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "start_col": 6, - "start_line": 479 - }, - "While handling return value of" - ], - "start_col": 5, - "start_line": 3 - }, - "n_prefix_newlines": 0 - } - ], - "inst": { - "end_col": 18, - "end_line": 4, - "input_file": { - "filename": "autogen/starknet/external/return/ownerOf/e26804beb30ff3fdad1596e68c20c0df03519fc5def143a2feb768126371681c.cairo" - }, - "parent_location": [ - { - "end_col": 13, - "end_line": 479, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "start_col": 6, - "start_line": 479 - }, - "While handling return value of" - ], - "start_col": 5, - "start_line": 4 - } - }, - "4872": { - "accessible_scopes": [ - "__main__", - "__main__", - "__wrappers__", - "__wrappers__.ownerOf_encode_return" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 47, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/arg_processor/b02ddc13e06346668d980e18c0fec90f17036d195bf95d21ac18e846a0a129f3.cairo" - }, - "parent_location": [ - { - "end_col": 16, - "end_line": 480, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "start_col": 5, - "start_line": 480 - }, - "While handling return value 'owner'" - ], - "start_col": 1, - "start_line": 1 - } - }, - "4873": { - "accessible_scopes": [ - "__main__", - "__main__", - "__wrappers__", - "__wrappers__.ownerOf_encode_return" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 48, - "end_line": 2, - "input_file": { - "filename": "autogen/starknet/arg_processor/b02ddc13e06346668d980e18c0fec90f17036d195bf95d21ac18e846a0a129f3.cairo" - }, - "parent_location": [ - { - "end_col": 16, - "end_line": 480, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "parent_location": [ - { - "end_col": 36, - "end_line": 11, - "input_file": { - "filename": "autogen/starknet/external/return/ownerOf/e26804beb30ff3fdad1596e68c20c0df03519fc5def143a2feb768126371681c.cairo" - }, - "parent_location": [ - { - "end_col": 13, - "end_line": 479, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "start_col": 6, - "start_line": 479 - }, - "While handling return value of" - ], - "start_col": 18, - "start_line": 11 - }, - "While expanding the reference '__return_value_ptr' in:" - ], - "start_col": 5, - "start_line": 480 - }, - "While handling return value 'owner'" - ], - "start_col": 26, - "start_line": 2 - } - }, - "4875": { - "accessible_scopes": [ - "__main__", - "__main__", - "__wrappers__", - "__wrappers__.ownerOf_encode_return" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 69, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/external/return/ownerOf/e26804beb30ff3fdad1596e68c20c0df03519fc5def143a2feb768126371681c.cairo" - }, - "parent_location": [ - { - "end_col": 13, - "end_line": 479, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "parent_location": [ - { - "end_col": 40, - "end_line": 10, - "input_file": { - "filename": "autogen/starknet/external/return/ownerOf/e26804beb30ff3fdad1596e68c20c0df03519fc5def143a2feb768126371681c.cairo" - }, - "parent_location": [ - { - "end_col": 13, - "end_line": 479, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "start_col": 6, - "start_line": 479 - }, - "While handling return value of" - ], - "start_col": 25, - "start_line": 10 - }, - "While expanding the reference 'range_check_ptr' in:" - ], - "start_col": 6, - "start_line": 479 - }, - "While handling return value of" - ], - "start_col": 54, - "start_line": 1 - } - }, - "4876": { - "accessible_scopes": [ - "__main__", - "__main__", - "__wrappers__", - "__wrappers__.ownerOf_encode_return" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 63, - "end_line": 11, - "input_file": { - "filename": "autogen/starknet/external/return/ownerOf/e26804beb30ff3fdad1596e68c20c0df03519fc5def143a2feb768126371681c.cairo" - }, - "parent_location": [ - { - "end_col": 13, - "end_line": 479, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "start_col": 6, - "start_line": 479 - }, - "While handling return value of" - ], - "start_col": 18, - "start_line": 11 - } - }, - "4877": { - "accessible_scopes": [ - "__main__", - "__main__", - "__wrappers__", - "__wrappers__.ownerOf_encode_return" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 35, - "end_line": 5, - "input_file": { - "filename": "autogen/starknet/external/return/ownerOf/e26804beb30ff3fdad1596e68c20c0df03519fc5def143a2feb768126371681c.cairo" - }, - "parent_location": [ - { - "end_col": 13, - "end_line": 479, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "parent_location": [ - { - "end_col": 38, - "end_line": 12, - "input_file": { - "filename": "autogen/starknet/external/return/ownerOf/e26804beb30ff3fdad1596e68c20c0df03519fc5def143a2feb768126371681c.cairo" - }, - "parent_location": [ - { - "end_col": 13, - "end_line": 479, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "start_col": 6, - "start_line": 479 - }, - "While handling return value of" - ], - "start_col": 14, - "start_line": 12 - }, - "While expanding the reference '__return_value_ptr_start' in:" - ], - "start_col": 6, - "start_line": 479 - }, - "While handling return value of" - ], - "start_col": 11, - "start_line": 5 - } - }, - "4878": { - "accessible_scopes": [ - "__main__", - "__main__", - "__wrappers__", - "__wrappers__.ownerOf_encode_return" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 40, - "end_line": 12, - "input_file": { - "filename": "autogen/starknet/external/return/ownerOf/e26804beb30ff3fdad1596e68c20c0df03519fc5def143a2feb768126371681c.cairo" - }, - "parent_location": [ - { - "end_col": 13, - "end_line": 479, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "start_col": 6, - "start_line": 479 - }, - "While handling return value of" - ], - "start_col": 5, - "start_line": 9 - } - }, - "4879": { - "accessible_scopes": [ - "__main__", - "__main__", - "__wrappers__", - "__wrappers__.ownerOf" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 40, - "end_line": 3, - "input_file": { - "filename": "autogen/starknet/arg_processor/60c79ef5477686f2843e61432dcde7f4fc0f354d42095115ea9dca625a35df6e.cairo" - }, - "parent_location": [ - { - "end_col": 95, - "end_line": 479, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "parent_location": [ - { - "end_col": 45, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/arg_processor/c31620b02d4d706f0542c989b2aadc01b0981d1f6a5933a8fe4937ace3d70d92.cairo" - }, - "parent_location": [ - { - "end_col": 13, - "end_line": 479, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "parent_location": [ - { - "end_col": 57, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/arg_processor/01cba52f8515996bb9d7070bde81ff39281d096d7024a558efcba6e1fd2402cf.cairo" - }, - "parent_location": [ - { - "end_col": 13, - "end_line": 479, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "start_col": 6, - "start_line": 479 - }, - "While handling calldata of" - ], - "start_col": 35, - "start_line": 1 - }, - "While expanding the reference '__calldata_actual_size' in:" - ], - "start_col": 6, - "start_line": 479 - }, - "While handling calldata of" - ], - "start_col": 31, - "start_line": 1 - }, - "While expanding the reference '__calldata_ptr' in:" - ], - "start_col": 79, - "start_line": 479 - }, - "While handling calldata argument 'tokenId'" - ], - "start_col": 22, - "start_line": 3 - } - }, - "4881": { - "accessible_scopes": [ - "__main__", - "__main__", - "__wrappers__", - "__wrappers__.ownerOf" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 58, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/arg_processor/01cba52f8515996bb9d7070bde81ff39281d096d7024a558efcba6e1fd2402cf.cairo" - }, - "parent_location": [ - { - "end_col": 13, - "end_line": 479, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "start_col": 6, - "start_line": 479 - }, - "While handling calldata of" - ], - "start_col": 1, - "start_line": 1 - } - }, - "4882": { - "accessible_scopes": [ - "__main__", - "__main__", - "__wrappers__", - "__wrappers__.ownerOf" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 64, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/external/ownerOf/b2c52ca2d2a8fc8791a983086d8716c5eacd0c3d62934914d2286f84b98ff4cb.cairo" - }, - "parent_location": [ - { - "end_col": 32, - "end_line": 479, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "parent_location": [ - { - "end_col": 55, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/external/ownerOf/b0b45230936b2f4ec6e384bea3a984e2819816dfc8b4e03dac3539fcc1c0dc60.cairo" - }, - "parent_location": [ - { - "end_col": 13, - "end_line": 479, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "start_col": 6, - "start_line": 479 - }, - "While constructing the external wrapper for:" - ], - "start_col": 44, - "start_line": 1 - }, - "While expanding the reference 'syscall_ptr' in:" - ], - "start_col": 14, - "start_line": 479 - }, - "While constructing the external wrapper for:" - ], - "start_col": 19, - "start_line": 1 - } - }, - "4883": { - "accessible_scopes": [ - "__main__", - "__main__", - "__wrappers__", - "__wrappers__.ownerOf" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 110, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/external/ownerOf/9684a85e93c782014ca14293edea4eb2502039a5a7b6538ecd39c56faaf12529.cairo" - }, - "parent_location": [ - { - "end_col": 60, - "end_line": 479, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "parent_location": [ - { - "end_col": 82, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/external/ownerOf/b0b45230936b2f4ec6e384bea3a984e2819816dfc8b4e03dac3539fcc1c0dc60.cairo" - }, - "parent_location": [ - { - "end_col": 13, - "end_line": 479, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "start_col": 6, - "start_line": 479 - }, - "While constructing the external wrapper for:" - ], - "start_col": 70, - "start_line": 1 - }, - "While expanding the reference 'pedersen_ptr' in:" - ], - "start_col": 34, - "start_line": 479 - }, - "While constructing the external wrapper for:" - ], - "start_col": 20, - "start_line": 1 - } - }, - "4884": { - "accessible_scopes": [ - "__main__", - "__main__", - "__wrappers__", - "__wrappers__.ownerOf" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 67, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/external/ownerOf/741ea357d6336b0bed7bf0472425acd0311d543883b803388880e60a232040c7.cairo" - }, - "parent_location": [ - { - "end_col": 77, - "end_line": 479, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "parent_location": [ - { - "end_col": 115, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/external/ownerOf/b0b45230936b2f4ec6e384bea3a984e2819816dfc8b4e03dac3539fcc1c0dc60.cairo" - }, - "parent_location": [ - { - "end_col": 13, - "end_line": 479, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "start_col": 6, - "start_line": 479 - }, - "While constructing the external wrapper for:" - ], - "start_col": 100, - "start_line": 1 - }, - "While expanding the reference 'range_check_ptr' in:" - ], - "start_col": 62, - "start_line": 479 - }, - "While constructing the external wrapper for:" - ], - "start_col": 23, - "start_line": 1 - } - }, - "4885": { - "accessible_scopes": [ - "__main__", - "__main__", - "__wrappers__", - "__wrappers__.ownerOf" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 67, - "end_line": 2, - "input_file": { - "filename": "autogen/starknet/arg_processor/60c79ef5477686f2843e61432dcde7f4fc0f354d42095115ea9dca625a35df6e.cairo" - }, - "parent_location": [ - { - "end_col": 95, - "end_line": 479, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "parent_location": [ - { - "end_col": 147, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/external/ownerOf/b0b45230936b2f4ec6e384bea3a984e2819816dfc8b4e03dac3539fcc1c0dc60.cairo" - }, - "parent_location": [ - { - "end_col": 13, - "end_line": 479, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "start_col": 6, - "start_line": 479 - }, - "While constructing the external wrapper for:" - ], - "start_col": 125, - "start_line": 1 - }, - "While expanding the reference '__calldata_arg_tokenId' in:" - ], - "start_col": 79, - "start_line": 479 - }, - "While handling calldata argument 'tokenId'" - ], - "start_col": 30, - "start_line": 1 - } - }, - "4886": { - "accessible_scopes": [ - "__main__", - "__main__", - "__wrappers__", - "__wrappers__.ownerOf" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 67, - "end_line": 2, - "input_file": { - "filename": "autogen/starknet/arg_processor/60c79ef5477686f2843e61432dcde7f4fc0f354d42095115ea9dca625a35df6e.cairo" - }, - "parent_location": [ - { - "end_col": 95, - "end_line": 479, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "parent_location": [ - { - "end_col": 147, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/external/ownerOf/b0b45230936b2f4ec6e384bea3a984e2819816dfc8b4e03dac3539fcc1c0dc60.cairo" - }, - "parent_location": [ - { - "end_col": 13, - "end_line": 479, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "start_col": 6, - "start_line": 479 - }, - "While constructing the external wrapper for:" - ], - "start_col": 125, - "start_line": 1 - }, - "While expanding the reference '__calldata_arg_tokenId' in:" - ], - "start_col": 79, - "start_line": 479 - }, - "While handling calldata argument 'tokenId'" - ], - "start_col": 30, - "start_line": 1 - } - }, - "4887": { - "accessible_scopes": [ - "__main__", - "__main__", - "__wrappers__", - "__wrappers__.ownerOf" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 13, - "end_line": 479, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "start_col": 6, - "start_line": 479 - } - }, - "4889": { - "accessible_scopes": [ - "__main__", - "__main__", - "__wrappers__", - "__wrappers__.ownerOf" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 115, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/external/ownerOf/b0b45230936b2f4ec6e384bea3a984e2819816dfc8b4e03dac3539fcc1c0dc60.cairo" - }, - "parent_location": [ - { - "end_col": 13, - "end_line": 479, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "parent_location": [ - { - "end_col": 96, - "end_line": 2, - "input_file": { - "filename": "autogen/starknet/external/ownerOf/b0b45230936b2f4ec6e384bea3a984e2819816dfc8b4e03dac3539fcc1c0dc60.cairo" - }, - "parent_location": [ - { - "end_col": 13, - "end_line": 479, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "start_col": 6, - "start_line": 479 - }, - "While constructing the external wrapper for:" - ], - "start_col": 81, - "start_line": 2 - }, - "While expanding the reference 'range_check_ptr' in:" - ], - "start_col": 6, - "start_line": 479 - }, - "While constructing the external wrapper for:" - ], - "start_col": 100, - "start_line": 1 - } - }, - "4890": { - "accessible_scopes": [ - "__main__", - "__main__", - "__wrappers__", - "__wrappers__.ownerOf" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 97, - "end_line": 2, - "input_file": { - "filename": "autogen/starknet/external/ownerOf/b0b45230936b2f4ec6e384bea3a984e2819816dfc8b4e03dac3539fcc1c0dc60.cairo" - }, - "parent_location": [ - { - "end_col": 13, - "end_line": 479, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "start_col": 6, - "start_line": 479 - }, - "While constructing the external wrapper for:" - ], - "start_col": 48, - "start_line": 2 - } - }, - "4892": { - "accessible_scopes": [ - "__main__", - "__main__", - "__wrappers__", - "__wrappers__.ownerOf" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 55, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/external/ownerOf/b0b45230936b2f4ec6e384bea3a984e2819816dfc8b4e03dac3539fcc1c0dc60.cairo" - }, - "parent_location": [ - { - "end_col": 13, - "end_line": 479, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "parent_location": [ - { - "end_col": 20, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/external/ownerOf/da17921a4e81c09e730800bbf23bfdbe5e9e6bfaedc59d80fbf62087fa43c27d.cairo" - }, - "parent_location": [ - { - "end_col": 13, - "end_line": 479, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "start_col": 6, - "start_line": 479 - }, - "While constructing the external wrapper for:" - ], - "start_col": 9, - "start_line": 1 - }, - "While expanding the reference 'syscall_ptr' in:" - ], - "start_col": 6, - "start_line": 479 - }, - "While constructing the external wrapper for:" - ], - "start_col": 44, - "start_line": 1 - } - }, - "4893": { - "accessible_scopes": [ - "__main__", - "__main__", - "__wrappers__", - "__wrappers__.ownerOf" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 82, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/external/ownerOf/b0b45230936b2f4ec6e384bea3a984e2819816dfc8b4e03dac3539fcc1c0dc60.cairo" - }, - "parent_location": [ - { - "end_col": 13, - "end_line": 479, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "parent_location": [ - { - "end_col": 33, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/external/ownerOf/da17921a4e81c09e730800bbf23bfdbe5e9e6bfaedc59d80fbf62087fa43c27d.cairo" - }, - "parent_location": [ - { - "end_col": 13, - "end_line": 479, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "start_col": 6, - "start_line": 479 - }, - "While constructing the external wrapper for:" - ], - "start_col": 21, - "start_line": 1 - }, - "While expanding the reference 'pedersen_ptr' in:" - ], - "start_col": 6, - "start_line": 479 - }, - "While constructing the external wrapper for:" - ], - "start_col": 70, - "start_line": 1 - } - }, - "4894": { - "accessible_scopes": [ - "__main__", - "__main__", - "__wrappers__", - "__wrappers__.ownerOf" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 21, - "end_line": 2, - "input_file": { - "filename": "autogen/starknet/external/ownerOf/b0b45230936b2f4ec6e384bea3a984e2819816dfc8b4e03dac3539fcc1c0dc60.cairo" - }, - "parent_location": [ - { - "end_col": 13, - "end_line": 479, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "parent_location": [ - { - "end_col": 49, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/external/ownerOf/da17921a4e81c09e730800bbf23bfdbe5e9e6bfaedc59d80fbf62087fa43c27d.cairo" - }, - "parent_location": [ - { - "end_col": 13, - "end_line": 479, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "start_col": 6, - "start_line": 479 - }, - "While constructing the external wrapper for:" - ], - "start_col": 34, - "start_line": 1 - }, - "While expanding the reference 'range_check_ptr' in:" - ], - "start_col": 6, - "start_line": 479 - }, - "While constructing the external wrapper for:" - ], - "start_col": 6, - "start_line": 2 - } - }, - "4895": { - "accessible_scopes": [ - "__main__", - "__main__", - "__wrappers__", - "__wrappers__.ownerOf" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 35, - "end_line": 2, - "input_file": { - "filename": "autogen/starknet/external/ownerOf/b0b45230936b2f4ec6e384bea3a984e2819816dfc8b4e03dac3539fcc1c0dc60.cairo" - }, - "parent_location": [ - { - "end_col": 13, - "end_line": 479, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "parent_location": [ - { - "end_col": 62, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/external/ownerOf/da17921a4e81c09e730800bbf23bfdbe5e9e6bfaedc59d80fbf62087fa43c27d.cairo" - }, - "parent_location": [ - { - "end_col": 13, - "end_line": 479, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "start_col": 6, - "start_line": 479 - }, - "While constructing the external wrapper for:" - ], - "start_col": 50, - "start_line": 1 - }, - "While expanding the reference 'retdata_size' in:" - ], - "start_col": 6, - "start_line": 479 - }, - "While constructing the external wrapper for:" - ], - "start_col": 23, - "start_line": 2 - } - }, - "4896": { - "accessible_scopes": [ - "__main__", - "__main__", - "__wrappers__", - "__wrappers__.ownerOf" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 44, - "end_line": 2, - "input_file": { - "filename": "autogen/starknet/external/ownerOf/b0b45230936b2f4ec6e384bea3a984e2819816dfc8b4e03dac3539fcc1c0dc60.cairo" - }, - "parent_location": [ - { - "end_col": 13, - "end_line": 479, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "parent_location": [ - { - "end_col": 70, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/external/ownerOf/da17921a4e81c09e730800bbf23bfdbe5e9e6bfaedc59d80fbf62087fa43c27d.cairo" - }, - "parent_location": [ - { - "end_col": 13, - "end_line": 479, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "start_col": 6, - "start_line": 479 - }, - "While constructing the external wrapper for:" - ], - "start_col": 63, - "start_line": 1 - }, - "While expanding the reference 'retdata' in:" - ], - "start_col": 6, - "start_line": 479 - }, - "While constructing the external wrapper for:" - ], - "start_col": 37, - "start_line": 2 - } - }, - "4897": { - "accessible_scopes": [ - "__main__", - "__main__", - "__wrappers__", - "__wrappers__.ownerOf" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 72, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/external/ownerOf/da17921a4e81c09e730800bbf23bfdbe5e9e6bfaedc59d80fbf62087fa43c27d.cairo" - }, - "parent_location": [ - { - "end_col": 13, - "end_line": 479, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "start_col": 6, - "start_line": 479 - }, - "While constructing the external wrapper for:" - ], - "start_col": 1, - "start_line": 1 - } - }, - "4898": { - "accessible_scopes": [ - "__main__", - "__main__", - "__main__.getApproved" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 36, - "end_line": 487, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "parent_location": [ - { - "end_col": 41, - "end_line": 122, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" - }, - "parent_location": [ - { - "end_col": 56, - "end_line": 490, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "start_col": 28, - "start_line": 490 - }, - "While trying to retrieve the implicit argument 'syscall_ptr' in:" - ], - "start_col": 23, - "start_line": 122 - }, - "While expanding the reference 'syscall_ptr' in:" - ], - "start_col": 18, - "start_line": 487 - } - }, - "4899": { - "accessible_scopes": [ - "__main__", - "__main__", - "__main__.getApproved" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 64, - "end_line": 487, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "parent_location": [ - { - "end_col": 69, - "end_line": 122, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" - }, - "parent_location": [ - { - "end_col": 56, - "end_line": 490, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "start_col": 28, - "start_line": 490 - }, - "While trying to retrieve the implicit argument 'pedersen_ptr' in:" - ], - "start_col": 43, - "start_line": 122 - }, - "While expanding the reference 'pedersen_ptr' in:" - ], - "start_col": 38, - "start_line": 487 - } - }, - "4900": { - "accessible_scopes": [ - "__main__", - "__main__", - "__main__.getApproved" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 81, - "end_line": 487, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "parent_location": [ - { - "end_col": 86, - "end_line": 122, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" - }, - "parent_location": [ - { - "end_col": 56, - "end_line": 490, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "start_col": 28, - "start_line": 490 - }, - "While trying to retrieve the implicit argument 'range_check_ptr' in:" - ], - "start_col": 71, - "start_line": 122 - }, - "While expanding the reference 'range_check_ptr' in:" - ], - "start_col": 66, - "start_line": 487 - } - }, - "4901": { - "accessible_scopes": [ - "__main__", - "__main__", - "__main__.getApproved" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 21, - "end_line": 488, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "parent_location": [ - { - "end_col": 55, - "end_line": 490, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "start_col": 48, - "start_line": 490 - }, - "While expanding the reference 'tokenId' in:" - ], - "start_col": 5, - "start_line": 488 - } - }, - "4902": { - "accessible_scopes": [ - "__main__", - "__main__", - "__main__.getApproved" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 21, - "end_line": 488, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "parent_location": [ - { - "end_col": 55, - "end_line": 490, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "start_col": 48, - "start_line": 490 - }, - "While expanding the reference 'tokenId' in:" - ], - "start_col": 5, - "start_line": 488 - } - }, - "4903": { - "accessible_scopes": [ - "__main__", - "__main__", - "__main__.getApproved" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 56, - "end_line": 490, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "start_col": 28, - "start_line": 490 - } - }, - "4905": { - "accessible_scopes": [ - "__main__", - "__main__", - "__main__.getApproved" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 24, - "end_line": 491, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "start_col": 5, - "start_line": 491 - } - }, - "4906": { - "accessible_scopes": [ - "__main__", - "__main__", - "__wrappers__", - "__wrappers__.getApproved_encode_return" - ], - "flow_tracking_data": null, - "hints": [ - { - "location": { - "end_col": 38, - "end_line": 3, - "input_file": { - "filename": "autogen/starknet/external/return/getApproved/dc5d90a8417d0a28ffeb92cb7cbd7f0e5af1af69279ff1bda88fa7a837af50d3.cairo" - }, - "parent_location": [ - { - "end_col": 17, - "end_line": 487, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "start_col": 6, - "start_line": 487 - }, - "While handling return value of" - ], - "start_col": 5, - "start_line": 3 - }, - "n_prefix_newlines": 0 - } - ], - "inst": { - "end_col": 18, - "end_line": 4, - "input_file": { - "filename": "autogen/starknet/external/return/getApproved/dc5d90a8417d0a28ffeb92cb7cbd7f0e5af1af69279ff1bda88fa7a837af50d3.cairo" - }, - "parent_location": [ - { - "end_col": 17, - "end_line": 487, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "start_col": 6, - "start_line": 487 - }, - "While handling return value of" - ], - "start_col": 5, - "start_line": 4 - } - }, - "4908": { - "accessible_scopes": [ - "__main__", - "__main__", - "__wrappers__", - "__wrappers__.getApproved_encode_return" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 50, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/arg_processor/74a3369943c8d7518ff17d6d8cb3e9a3785e7db4bcf995a7ffbf3a439df0343b.cairo" - }, - "parent_location": [ - { - "end_col": 21, - "end_line": 489, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "start_col": 7, - "start_line": 489 - }, - "While handling return value 'approved'" - ], - "start_col": 1, - "start_line": 1 - } - }, - "4909": { - "accessible_scopes": [ - "__main__", - "__main__", - "__wrappers__", - "__wrappers__.getApproved_encode_return" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 48, - "end_line": 2, - "input_file": { - "filename": "autogen/starknet/arg_processor/74a3369943c8d7518ff17d6d8cb3e9a3785e7db4bcf995a7ffbf3a439df0343b.cairo" - }, - "parent_location": [ - { - "end_col": 21, - "end_line": 489, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "parent_location": [ - { - "end_col": 36, - "end_line": 11, - "input_file": { - "filename": "autogen/starknet/external/return/getApproved/dc5d90a8417d0a28ffeb92cb7cbd7f0e5af1af69279ff1bda88fa7a837af50d3.cairo" - }, - "parent_location": [ - { - "end_col": 17, - "end_line": 487, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "start_col": 6, - "start_line": 487 - }, - "While handling return value of" - ], - "start_col": 18, - "start_line": 11 - }, - "While expanding the reference '__return_value_ptr' in:" - ], - "start_col": 7, - "start_line": 489 - }, - "While handling return value 'approved'" - ], - "start_col": 26, - "start_line": 2 - } - }, - "4911": { - "accessible_scopes": [ - "__main__", - "__main__", - "__wrappers__", - "__wrappers__.getApproved_encode_return" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 76, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/external/return/getApproved/dc5d90a8417d0a28ffeb92cb7cbd7f0e5af1af69279ff1bda88fa7a837af50d3.cairo" - }, - "parent_location": [ - { - "end_col": 17, - "end_line": 487, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "parent_location": [ - { - "end_col": 40, - "end_line": 10, - "input_file": { - "filename": "autogen/starknet/external/return/getApproved/dc5d90a8417d0a28ffeb92cb7cbd7f0e5af1af69279ff1bda88fa7a837af50d3.cairo" - }, - "parent_location": [ - { - "end_col": 17, - "end_line": 487, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "start_col": 6, - "start_line": 487 - }, - "While handling return value of" - ], - "start_col": 25, - "start_line": 10 - }, - "While expanding the reference 'range_check_ptr' in:" - ], - "start_col": 6, - "start_line": 487 - }, - "While handling return value of" - ], - "start_col": 61, - "start_line": 1 - } - }, - "4912": { - "accessible_scopes": [ - "__main__", - "__main__", - "__wrappers__", - "__wrappers__.getApproved_encode_return" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 63, - "end_line": 11, - "input_file": { - "filename": "autogen/starknet/external/return/getApproved/dc5d90a8417d0a28ffeb92cb7cbd7f0e5af1af69279ff1bda88fa7a837af50d3.cairo" - }, - "parent_location": [ - { - "end_col": 17, - "end_line": 487, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "start_col": 6, - "start_line": 487 - }, - "While handling return value of" - ], - "start_col": 18, - "start_line": 11 - } - }, - "4913": { - "accessible_scopes": [ - "__main__", - "__main__", - "__wrappers__", - "__wrappers__.getApproved_encode_return" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 35, - "end_line": 5, - "input_file": { - "filename": "autogen/starknet/external/return/getApproved/dc5d90a8417d0a28ffeb92cb7cbd7f0e5af1af69279ff1bda88fa7a837af50d3.cairo" - }, - "parent_location": [ - { - "end_col": 17, - "end_line": 487, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "parent_location": [ - { - "end_col": 38, - "end_line": 12, - "input_file": { - "filename": "autogen/starknet/external/return/getApproved/dc5d90a8417d0a28ffeb92cb7cbd7f0e5af1af69279ff1bda88fa7a837af50d3.cairo" - }, - "parent_location": [ - { - "end_col": 17, - "end_line": 487, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "start_col": 6, - "start_line": 487 - }, - "While handling return value of" - ], - "start_col": 14, - "start_line": 12 - }, - "While expanding the reference '__return_value_ptr_start' in:" - ], - "start_col": 6, - "start_line": 487 - }, - "While handling return value of" - ], - "start_col": 11, - "start_line": 5 - } - }, - "4914": { - "accessible_scopes": [ - "__main__", - "__main__", - "__wrappers__", - "__wrappers__.getApproved_encode_return" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 40, - "end_line": 12, - "input_file": { - "filename": "autogen/starknet/external/return/getApproved/dc5d90a8417d0a28ffeb92cb7cbd7f0e5af1af69279ff1bda88fa7a837af50d3.cairo" - }, - "parent_location": [ - { - "end_col": 17, - "end_line": 487, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "start_col": 6, - "start_line": 487 - }, - "While handling return value of" - ], - "start_col": 5, - "start_line": 9 - } - }, - "4915": { - "accessible_scopes": [ - "__main__", - "__main__", - "__wrappers__", - "__wrappers__.getApproved" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 40, - "end_line": 3, - "input_file": { - "filename": "autogen/starknet/arg_processor/60c79ef5477686f2843e61432dcde7f4fc0f354d42095115ea9dca625a35df6e.cairo" - }, - "parent_location": [ - { - "end_col": 21, - "end_line": 488, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "parent_location": [ - { - "end_col": 45, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/arg_processor/c31620b02d4d706f0542c989b2aadc01b0981d1f6a5933a8fe4937ace3d70d92.cairo" - }, - "parent_location": [ - { - "end_col": 17, - "end_line": 487, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "parent_location": [ - { - "end_col": 57, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/arg_processor/01cba52f8515996bb9d7070bde81ff39281d096d7024a558efcba6e1fd2402cf.cairo" - }, - "parent_location": [ - { - "end_col": 17, - "end_line": 487, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "start_col": 6, - "start_line": 487 - }, - "While handling calldata of" - ], - "start_col": 35, - "start_line": 1 - }, - "While expanding the reference '__calldata_actual_size' in:" - ], - "start_col": 6, - "start_line": 487 - }, - "While handling calldata of" - ], - "start_col": 31, - "start_line": 1 - }, - "While expanding the reference '__calldata_ptr' in:" - ], - "start_col": 5, - "start_line": 488 - }, - "While handling calldata argument 'tokenId'" - ], - "start_col": 22, - "start_line": 3 - } - }, - "4917": { - "accessible_scopes": [ - "__main__", - "__main__", - "__wrappers__", - "__wrappers__.getApproved" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 58, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/arg_processor/01cba52f8515996bb9d7070bde81ff39281d096d7024a558efcba6e1fd2402cf.cairo" - }, - "parent_location": [ - { - "end_col": 17, - "end_line": 487, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "start_col": 6, - "start_line": 487 - }, - "While handling calldata of" - ], - "start_col": 1, - "start_line": 1 - } - }, - "4918": { - "accessible_scopes": [ - "__main__", - "__main__", - "__wrappers__", - "__wrappers__.getApproved" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 64, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/external/getApproved/b2c52ca2d2a8fc8791a983086d8716c5eacd0c3d62934914d2286f84b98ff4cb.cairo" - }, - "parent_location": [ - { - "end_col": 36, - "end_line": 487, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "parent_location": [ - { - "end_col": 55, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/external/getApproved/835e657df1ee968194eed5f3c9b857e397b684d36f56ec8a7b26cb299a6be11f.cairo" - }, - "parent_location": [ - { - "end_col": 17, - "end_line": 487, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "start_col": 6, - "start_line": 487 - }, - "While constructing the external wrapper for:" - ], - "start_col": 44, - "start_line": 1 - }, - "While expanding the reference 'syscall_ptr' in:" - ], - "start_col": 18, - "start_line": 487 - }, - "While constructing the external wrapper for:" - ], - "start_col": 19, - "start_line": 1 - } - }, - "4919": { - "accessible_scopes": [ - "__main__", - "__main__", - "__wrappers__", - "__wrappers__.getApproved" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 110, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/external/getApproved/9684a85e93c782014ca14293edea4eb2502039a5a7b6538ecd39c56faaf12529.cairo" - }, - "parent_location": [ - { - "end_col": 64, - "end_line": 487, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "parent_location": [ - { - "end_col": 82, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/external/getApproved/835e657df1ee968194eed5f3c9b857e397b684d36f56ec8a7b26cb299a6be11f.cairo" - }, - "parent_location": [ - { - "end_col": 17, - "end_line": 487, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "start_col": 6, - "start_line": 487 - }, - "While constructing the external wrapper for:" - ], - "start_col": 70, - "start_line": 1 - }, - "While expanding the reference 'pedersen_ptr' in:" - ], - "start_col": 38, - "start_line": 487 - }, - "While constructing the external wrapper for:" - ], - "start_col": 20, - "start_line": 1 - } - }, - "4920": { - "accessible_scopes": [ - "__main__", - "__main__", - "__wrappers__", - "__wrappers__.getApproved" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 67, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/external/getApproved/741ea357d6336b0bed7bf0472425acd0311d543883b803388880e60a232040c7.cairo" - }, - "parent_location": [ - { - "end_col": 81, - "end_line": 487, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "parent_location": [ - { - "end_col": 115, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/external/getApproved/835e657df1ee968194eed5f3c9b857e397b684d36f56ec8a7b26cb299a6be11f.cairo" - }, - "parent_location": [ - { - "end_col": 17, - "end_line": 487, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "start_col": 6, - "start_line": 487 - }, - "While constructing the external wrapper for:" - ], - "start_col": 100, - "start_line": 1 - }, - "While expanding the reference 'range_check_ptr' in:" - ], - "start_col": 66, - "start_line": 487 - }, - "While constructing the external wrapper for:" - ], - "start_col": 23, - "start_line": 1 - } - }, - "4921": { - "accessible_scopes": [ - "__main__", - "__main__", - "__wrappers__", - "__wrappers__.getApproved" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 67, - "end_line": 2, - "input_file": { - "filename": "autogen/starknet/arg_processor/60c79ef5477686f2843e61432dcde7f4fc0f354d42095115ea9dca625a35df6e.cairo" - }, - "parent_location": [ - { - "end_col": 21, - "end_line": 488, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "parent_location": [ - { - "end_col": 147, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/external/getApproved/835e657df1ee968194eed5f3c9b857e397b684d36f56ec8a7b26cb299a6be11f.cairo" - }, - "parent_location": [ - { - "end_col": 17, - "end_line": 487, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "start_col": 6, - "start_line": 487 - }, - "While constructing the external wrapper for:" - ], - "start_col": 125, - "start_line": 1 - }, - "While expanding the reference '__calldata_arg_tokenId' in:" - ], - "start_col": 5, - "start_line": 488 - }, - "While handling calldata argument 'tokenId'" - ], - "start_col": 30, - "start_line": 1 - } - }, - "4922": { - "accessible_scopes": [ - "__main__", - "__main__", - "__wrappers__", - "__wrappers__.getApproved" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 67, - "end_line": 2, - "input_file": { - "filename": "autogen/starknet/arg_processor/60c79ef5477686f2843e61432dcde7f4fc0f354d42095115ea9dca625a35df6e.cairo" - }, - "parent_location": [ - { - "end_col": 21, - "end_line": 488, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "parent_location": [ - { - "end_col": 147, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/external/getApproved/835e657df1ee968194eed5f3c9b857e397b684d36f56ec8a7b26cb299a6be11f.cairo" - }, - "parent_location": [ - { - "end_col": 17, - "end_line": 487, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "start_col": 6, - "start_line": 487 - }, - "While constructing the external wrapper for:" - ], - "start_col": 125, - "start_line": 1 - }, - "While expanding the reference '__calldata_arg_tokenId' in:" - ], - "start_col": 5, - "start_line": 488 - }, - "While handling calldata argument 'tokenId'" - ], - "start_col": 30, - "start_line": 1 - } - }, - "4923": { - "accessible_scopes": [ - "__main__", - "__main__", - "__wrappers__", - "__wrappers__.getApproved" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 17, - "end_line": 487, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "start_col": 6, - "start_line": 487 - } - }, - "4925": { - "accessible_scopes": [ - "__main__", - "__main__", - "__wrappers__", - "__wrappers__.getApproved" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 115, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/external/getApproved/835e657df1ee968194eed5f3c9b857e397b684d36f56ec8a7b26cb299a6be11f.cairo" - }, - "parent_location": [ - { - "end_col": 17, - "end_line": 487, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "parent_location": [ - { - "end_col": 100, - "end_line": 2, - "input_file": { - "filename": "autogen/starknet/external/getApproved/835e657df1ee968194eed5f3c9b857e397b684d36f56ec8a7b26cb299a6be11f.cairo" - }, - "parent_location": [ - { - "end_col": 17, - "end_line": 487, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "start_col": 6, - "start_line": 487 - }, - "While constructing the external wrapper for:" - ], - "start_col": 85, - "start_line": 2 - }, - "While expanding the reference 'range_check_ptr' in:" - ], - "start_col": 6, - "start_line": 487 - }, - "While constructing the external wrapper for:" - ], - "start_col": 100, - "start_line": 1 - } - }, - "4926": { - "accessible_scopes": [ - "__main__", - "__main__", - "__wrappers__", - "__wrappers__.getApproved" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 101, - "end_line": 2, - "input_file": { - "filename": "autogen/starknet/external/getApproved/835e657df1ee968194eed5f3c9b857e397b684d36f56ec8a7b26cb299a6be11f.cairo" - }, - "parent_location": [ - { - "end_col": 17, - "end_line": 487, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "start_col": 6, - "start_line": 487 - }, - "While constructing the external wrapper for:" - ], - "start_col": 48, - "start_line": 2 - } - }, - "4928": { - "accessible_scopes": [ - "__main__", - "__main__", - "__wrappers__", - "__wrappers__.getApproved" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 55, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/external/getApproved/835e657df1ee968194eed5f3c9b857e397b684d36f56ec8a7b26cb299a6be11f.cairo" - }, - "parent_location": [ - { - "end_col": 17, - "end_line": 487, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "parent_location": [ - { - "end_col": 20, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/external/getApproved/da17921a4e81c09e730800bbf23bfdbe5e9e6bfaedc59d80fbf62087fa43c27d.cairo" - }, - "parent_location": [ - { - "end_col": 17, - "end_line": 487, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "start_col": 6, - "start_line": 487 - }, - "While constructing the external wrapper for:" - ], - "start_col": 9, - "start_line": 1 - }, - "While expanding the reference 'syscall_ptr' in:" - ], - "start_col": 6, - "start_line": 487 - }, - "While constructing the external wrapper for:" - ], - "start_col": 44, - "start_line": 1 - } - }, - "4929": { - "accessible_scopes": [ - "__main__", - "__main__", - "__wrappers__", - "__wrappers__.getApproved" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 82, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/external/getApproved/835e657df1ee968194eed5f3c9b857e397b684d36f56ec8a7b26cb299a6be11f.cairo" - }, - "parent_location": [ - { - "end_col": 17, - "end_line": 487, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "parent_location": [ - { - "end_col": 33, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/external/getApproved/da17921a4e81c09e730800bbf23bfdbe5e9e6bfaedc59d80fbf62087fa43c27d.cairo" - }, - "parent_location": [ - { - "end_col": 17, - "end_line": 487, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "start_col": 6, - "start_line": 487 - }, - "While constructing the external wrapper for:" - ], - "start_col": 21, - "start_line": 1 - }, - "While expanding the reference 'pedersen_ptr' in:" - ], - "start_col": 6, - "start_line": 487 - }, - "While constructing the external wrapper for:" - ], - "start_col": 70, - "start_line": 1 - } - }, - "4930": { - "accessible_scopes": [ - "__main__", - "__main__", - "__wrappers__", - "__wrappers__.getApproved" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 21, - "end_line": 2, - "input_file": { - "filename": "autogen/starknet/external/getApproved/835e657df1ee968194eed5f3c9b857e397b684d36f56ec8a7b26cb299a6be11f.cairo" - }, - "parent_location": [ - { - "end_col": 17, - "end_line": 487, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "parent_location": [ - { - "end_col": 49, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/external/getApproved/da17921a4e81c09e730800bbf23bfdbe5e9e6bfaedc59d80fbf62087fa43c27d.cairo" - }, - "parent_location": [ - { - "end_col": 17, - "end_line": 487, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "start_col": 6, - "start_line": 487 - }, - "While constructing the external wrapper for:" - ], - "start_col": 34, - "start_line": 1 - }, - "While expanding the reference 'range_check_ptr' in:" - ], - "start_col": 6, - "start_line": 487 - }, - "While constructing the external wrapper for:" - ], - "start_col": 6, - "start_line": 2 - } - }, - "4931": { - "accessible_scopes": [ - "__main__", - "__main__", - "__wrappers__", - "__wrappers__.getApproved" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 35, - "end_line": 2, - "input_file": { - "filename": "autogen/starknet/external/getApproved/835e657df1ee968194eed5f3c9b857e397b684d36f56ec8a7b26cb299a6be11f.cairo" - }, - "parent_location": [ - { - "end_col": 17, - "end_line": 487, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "parent_location": [ - { - "end_col": 62, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/external/getApproved/da17921a4e81c09e730800bbf23bfdbe5e9e6bfaedc59d80fbf62087fa43c27d.cairo" - }, - "parent_location": [ - { - "end_col": 17, - "end_line": 487, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "start_col": 6, - "start_line": 487 - }, - "While constructing the external wrapper for:" - ], - "start_col": 50, - "start_line": 1 - }, - "While expanding the reference 'retdata_size' in:" - ], - "start_col": 6, - "start_line": 487 - }, - "While constructing the external wrapper for:" - ], - "start_col": 23, - "start_line": 2 - } - }, - "4932": { - "accessible_scopes": [ - "__main__", - "__main__", - "__wrappers__", - "__wrappers__.getApproved" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 44, - "end_line": 2, - "input_file": { - "filename": "autogen/starknet/external/getApproved/835e657df1ee968194eed5f3c9b857e397b684d36f56ec8a7b26cb299a6be11f.cairo" - }, - "parent_location": [ - { - "end_col": 17, - "end_line": 487, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "parent_location": [ - { - "end_col": 70, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/external/getApproved/da17921a4e81c09e730800bbf23bfdbe5e9e6bfaedc59d80fbf62087fa43c27d.cairo" - }, - "parent_location": [ - { - "end_col": 17, - "end_line": 487, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "start_col": 6, - "start_line": 487 - }, - "While constructing the external wrapper for:" - ], - "start_col": 63, - "start_line": 1 - }, - "While expanding the reference 'retdata' in:" - ], - "start_col": 6, - "start_line": 487 - }, - "While constructing the external wrapper for:" - ], - "start_col": 37, - "start_line": 2 - } - }, - "4933": { - "accessible_scopes": [ - "__main__", - "__main__", - "__wrappers__", - "__wrappers__.getApproved" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 72, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/external/getApproved/da17921a4e81c09e730800bbf23bfdbe5e9e6bfaedc59d80fbf62087fa43c27d.cairo" - }, - "parent_location": [ - { - "end_col": 17, - "end_line": 487, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "start_col": 6, - "start_line": 487 - }, - "While constructing the external wrapper for:" - ], - "start_col": 1, - "start_line": 1 - } - }, - "4934": { - "accessible_scopes": [ - "__main__", - "__main__", - "__main__.isApprovedForAll" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 41, - "end_line": 495, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "parent_location": [ - { - "end_col": 48, - "end_line": 136, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" - }, - "parent_location": [ - { - "end_col": 73, - "end_line": 498, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "start_col": 30, - "start_line": 498 - }, - "While trying to retrieve the implicit argument 'syscall_ptr' in:" - ], - "start_col": 30, - "start_line": 136 - }, - "While expanding the reference 'syscall_ptr' in:" - ], - "start_col": 23, - "start_line": 495 - } - }, - "4935": { - "accessible_scopes": [ - "__main__", - "__main__", - "__main__.isApprovedForAll" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 69, - "end_line": 495, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "parent_location": [ - { - "end_col": 76, - "end_line": 136, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" - }, - "parent_location": [ - { - "end_col": 73, - "end_line": 498, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "start_col": 30, - "start_line": 498 - }, - "While trying to retrieve the implicit argument 'pedersen_ptr' in:" - ], - "start_col": 50, - "start_line": 136 - }, - "While expanding the reference 'pedersen_ptr' in:" - ], - "start_col": 43, - "start_line": 495 - } - }, - "4936": { - "accessible_scopes": [ - "__main__", - "__main__", - "__main__.isApprovedForAll" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 86, - "end_line": 495, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "parent_location": [ - { - "end_col": 93, - "end_line": 136, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" - }, - "parent_location": [ - { - "end_col": 73, - "end_line": 498, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "start_col": 30, - "start_line": 498 - }, - "While trying to retrieve the implicit argument 'range_check_ptr' in:" - ], - "start_col": 78, - "start_line": 136 - }, - "While expanding the reference 'range_check_ptr' in:" - ], - "start_col": 71, - "start_line": 495 - } - }, - "4937": { - "accessible_scopes": [ - "__main__", - "__main__", - "__main__.isApprovedForAll" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 16, - "end_line": 496, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "parent_location": [ - { - "end_col": 62, - "end_line": 498, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "start_col": 57, - "start_line": 498 - }, - "While expanding the reference 'owner' in:" - ], - "start_col": 5, - "start_line": 496 - } - }, - "4938": { - "accessible_scopes": [ - "__main__", - "__main__", - "__main__.isApprovedForAll" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 32, - "end_line": 496, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "parent_location": [ - { - "end_col": 72, - "end_line": 498, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "start_col": 64, - "start_line": 498 - }, - "While expanding the reference 'operator' in:" - ], - "start_col": 18, - "start_line": 496 - } - }, - "4939": { - "accessible_scopes": [ - "__main__", - "__main__", - "__main__.isApprovedForAll" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 73, - "end_line": 498, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "start_col": 30, - "start_line": 498 - } - }, - "4941": { - "accessible_scopes": [ - "__main__", - "__main__", - "__main__.isApprovedForAll" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 26, - "end_line": 499, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "start_col": 5, - "start_line": 499 - } - }, - "4942": { - "accessible_scopes": [ - "__main__", - "__main__", - "__wrappers__", - "__wrappers__.isApprovedForAll_encode_return" - ], - "flow_tracking_data": null, - "hints": [ - { - "location": { - "end_col": 38, - "end_line": 3, - "input_file": { - "filename": "autogen/starknet/external/return/isApprovedForAll/38789844dce484b974dbd524d5dc5d79b5898ffc6c946c5e91ff04055990eef0.cairo" - }, - "parent_location": [ - { - "end_col": 22, - "end_line": 495, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "start_col": 6, - "start_line": 495 - }, - "While handling return value of" - ], - "start_col": 5, - "start_line": 3 - }, - "n_prefix_newlines": 0 - } - ], - "inst": { - "end_col": 18, - "end_line": 4, - "input_file": { - "filename": "autogen/starknet/external/return/isApprovedForAll/38789844dce484b974dbd524d5dc5d79b5898ffc6c946c5e91ff04055990eef0.cairo" - }, - "parent_location": [ - { - "end_col": 22, - "end_line": 495, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "start_col": 6, - "start_line": 495 - }, - "While handling return value of" - ], - "start_col": 5, - "start_line": 4 - } - }, - "4944": { - "accessible_scopes": [ - "__main__", - "__main__", - "__wrappers__", - "__wrappers__.isApprovedForAll_encode_return" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 52, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/arg_processor/6450610d0d553c149684e3d6d36a5d949ffe368d7692d99cec27ac08c51ad845.cairo" - }, - "parent_location": [ - { - "end_col": 23, - "end_line": 497, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "start_col": 7, - "start_line": 497 - }, - "While handling return value 'isApproved'" - ], - "start_col": 1, - "start_line": 1 - } - }, - "4945": { - "accessible_scopes": [ - "__main__", - "__main__", - "__wrappers__", - "__wrappers__.isApprovedForAll_encode_return" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 48, - "end_line": 2, - "input_file": { - "filename": "autogen/starknet/arg_processor/6450610d0d553c149684e3d6d36a5d949ffe368d7692d99cec27ac08c51ad845.cairo" - }, - "parent_location": [ - { - "end_col": 23, - "end_line": 497, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "parent_location": [ - { - "end_col": 36, - "end_line": 11, - "input_file": { - "filename": "autogen/starknet/external/return/isApprovedForAll/38789844dce484b974dbd524d5dc5d79b5898ffc6c946c5e91ff04055990eef0.cairo" - }, - "parent_location": [ - { - "end_col": 22, - "end_line": 495, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "start_col": 6, - "start_line": 495 - }, - "While handling return value of" - ], - "start_col": 18, - "start_line": 11 - }, - "While expanding the reference '__return_value_ptr' in:" - ], - "start_col": 7, - "start_line": 497 - }, - "While handling return value 'isApproved'" - ], - "start_col": 26, - "start_line": 2 - } - }, - "4947": { - "accessible_scopes": [ - "__main__", - "__main__", - "__wrappers__", - "__wrappers__.isApprovedForAll_encode_return" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 83, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/external/return/isApprovedForAll/38789844dce484b974dbd524d5dc5d79b5898ffc6c946c5e91ff04055990eef0.cairo" - }, - "parent_location": [ - { - "end_col": 22, - "end_line": 495, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "parent_location": [ - { - "end_col": 40, - "end_line": 10, - "input_file": { - "filename": "autogen/starknet/external/return/isApprovedForAll/38789844dce484b974dbd524d5dc5d79b5898ffc6c946c5e91ff04055990eef0.cairo" - }, - "parent_location": [ - { - "end_col": 22, - "end_line": 495, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "start_col": 6, - "start_line": 495 - }, - "While handling return value of" - ], - "start_col": 25, - "start_line": 10 - }, - "While expanding the reference 'range_check_ptr' in:" - ], - "start_col": 6, - "start_line": 495 - }, - "While handling return value of" - ], - "start_col": 68, - "start_line": 1 - } - }, - "4948": { - "accessible_scopes": [ - "__main__", - "__main__", - "__wrappers__", - "__wrappers__.isApprovedForAll_encode_return" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 63, - "end_line": 11, - "input_file": { - "filename": "autogen/starknet/external/return/isApprovedForAll/38789844dce484b974dbd524d5dc5d79b5898ffc6c946c5e91ff04055990eef0.cairo" - }, - "parent_location": [ - { - "end_col": 22, - "end_line": 495, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "start_col": 6, - "start_line": 495 - }, - "While handling return value of" - ], - "start_col": 18, - "start_line": 11 - } - }, - "4949": { - "accessible_scopes": [ - "__main__", - "__main__", - "__wrappers__", - "__wrappers__.isApprovedForAll_encode_return" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 35, - "end_line": 5, - "input_file": { - "filename": "autogen/starknet/external/return/isApprovedForAll/38789844dce484b974dbd524d5dc5d79b5898ffc6c946c5e91ff04055990eef0.cairo" - }, - "parent_location": [ - { - "end_col": 22, - "end_line": 495, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "parent_location": [ - { - "end_col": 38, - "end_line": 12, - "input_file": { - "filename": "autogen/starknet/external/return/isApprovedForAll/38789844dce484b974dbd524d5dc5d79b5898ffc6c946c5e91ff04055990eef0.cairo" - }, - "parent_location": [ - { - "end_col": 22, - "end_line": 495, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "start_col": 6, - "start_line": 495 - }, - "While handling return value of" - ], - "start_col": 14, - "start_line": 12 - }, - "While expanding the reference '__return_value_ptr_start' in:" - ], - "start_col": 6, - "start_line": 495 - }, - "While handling return value of" - ], - "start_col": 11, - "start_line": 5 - } - }, - "4950": { - "accessible_scopes": [ - "__main__", - "__main__", - "__wrappers__", - "__wrappers__.isApprovedForAll_encode_return" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 40, - "end_line": 12, - "input_file": { - "filename": "autogen/starknet/external/return/isApprovedForAll/38789844dce484b974dbd524d5dc5d79b5898ffc6c946c5e91ff04055990eef0.cairo" - }, - "parent_location": [ - { - "end_col": 22, - "end_line": 495, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "start_col": 6, - "start_line": 495 - }, - "While handling return value of" - ], - "start_col": 5, - "start_line": 9 - } - }, - "4951": { - "accessible_scopes": [ - "__main__", - "__main__", - "__wrappers__", - "__wrappers__.isApprovedForAll" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 40, - "end_line": 2, - "input_file": { - "filename": "autogen/starknet/arg_processor/c28d01f4036658535ed1f26a855ca481100f6b9fa5c266733e27ba2dce390d91.cairo" - }, - "parent_location": [ - { - "end_col": 32, - "end_line": 496, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "parent_location": [ - { - "end_col": 45, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/arg_processor/c31620b02d4d706f0542c989b2aadc01b0981d1f6a5933a8fe4937ace3d70d92.cairo" - }, - "parent_location": [ - { - "end_col": 22, - "end_line": 495, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "parent_location": [ - { - "end_col": 57, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/arg_processor/01cba52f8515996bb9d7070bde81ff39281d096d7024a558efcba6e1fd2402cf.cairo" - }, - "parent_location": [ - { - "end_col": 22, - "end_line": 495, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "start_col": 6, - "start_line": 495 - }, - "While handling calldata of" - ], - "start_col": 35, - "start_line": 1 - }, - "While expanding the reference '__calldata_actual_size' in:" - ], - "start_col": 6, - "start_line": 495 - }, - "While handling calldata of" - ], - "start_col": 31, - "start_line": 1 - }, - "While expanding the reference '__calldata_ptr' in:" - ], - "start_col": 18, - "start_line": 496 - }, - "While handling calldata argument 'operator'" - ], - "start_col": 22, - "start_line": 2 - } - }, - "4953": { - "accessible_scopes": [ - "__main__", - "__main__", - "__wrappers__", - "__wrappers__.isApprovedForAll" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 58, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/arg_processor/01cba52f8515996bb9d7070bde81ff39281d096d7024a558efcba6e1fd2402cf.cairo" - }, - "parent_location": [ - { - "end_col": 22, - "end_line": 495, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "start_col": 6, - "start_line": 495 - }, - "While handling calldata of" - ], - "start_col": 1, - "start_line": 1 - } - }, - "4954": { - "accessible_scopes": [ - "__main__", - "__main__", - "__wrappers__", - "__wrappers__.isApprovedForAll" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 64, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/external/isApprovedForAll/b2c52ca2d2a8fc8791a983086d8716c5eacd0c3d62934914d2286f84b98ff4cb.cairo" - }, - "parent_location": [ - { - "end_col": 41, - "end_line": 495, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "parent_location": [ - { - "end_col": 55, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/external/isApprovedForAll/28e6449b750a764997de3246d5af785f29a76b7b369ce53a25f4614d960a20f3.cairo" - }, - "parent_location": [ - { - "end_col": 22, - "end_line": 495, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "start_col": 6, - "start_line": 495 - }, - "While constructing the external wrapper for:" - ], - "start_col": 44, - "start_line": 1 - }, - "While expanding the reference 'syscall_ptr' in:" - ], - "start_col": 23, - "start_line": 495 - }, - "While constructing the external wrapper for:" - ], - "start_col": 19, - "start_line": 1 - } - }, - "4955": { - "accessible_scopes": [ - "__main__", - "__main__", - "__wrappers__", - "__wrappers__.isApprovedForAll" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 110, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/external/isApprovedForAll/9684a85e93c782014ca14293edea4eb2502039a5a7b6538ecd39c56faaf12529.cairo" - }, - "parent_location": [ - { - "end_col": 69, - "end_line": 495, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "parent_location": [ - { - "end_col": 82, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/external/isApprovedForAll/28e6449b750a764997de3246d5af785f29a76b7b369ce53a25f4614d960a20f3.cairo" - }, - "parent_location": [ - { - "end_col": 22, - "end_line": 495, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "start_col": 6, - "start_line": 495 - }, - "While constructing the external wrapper for:" - ], - "start_col": 70, - "start_line": 1 - }, - "While expanding the reference 'pedersen_ptr' in:" - ], - "start_col": 43, - "start_line": 495 - }, - "While constructing the external wrapper for:" - ], - "start_col": 20, - "start_line": 1 - } - }, - "4956": { - "accessible_scopes": [ - "__main__", - "__main__", - "__wrappers__", - "__wrappers__.isApprovedForAll" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 67, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/external/isApprovedForAll/741ea357d6336b0bed7bf0472425acd0311d543883b803388880e60a232040c7.cairo" - }, - "parent_location": [ - { - "end_col": 86, - "end_line": 495, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "parent_location": [ - { - "end_col": 115, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/external/isApprovedForAll/28e6449b750a764997de3246d5af785f29a76b7b369ce53a25f4614d960a20f3.cairo" - }, - "parent_location": [ - { - "end_col": 22, - "end_line": 495, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "start_col": 6, - "start_line": 495 - }, - "While constructing the external wrapper for:" - ], - "start_col": 100, - "start_line": 1 - }, - "While expanding the reference 'range_check_ptr' in:" - ], - "start_col": 71, - "start_line": 495 - }, - "While constructing the external wrapper for:" - ], - "start_col": 23, - "start_line": 1 - } - }, - "4957": { - "accessible_scopes": [ - "__main__", - "__main__", - "__wrappers__", - "__wrappers__.isApprovedForAll" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 44, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/arg_processor/f6a4d9ae897caf37cefd18f7c8da7eee73157818279359aadee282f0fe59cdbc.cairo" - }, - "parent_location": [ - { - "end_col": 16, - "end_line": 496, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "parent_location": [ - { - "end_col": 143, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/external/isApprovedForAll/28e6449b750a764997de3246d5af785f29a76b7b369ce53a25f4614d960a20f3.cairo" - }, - "parent_location": [ - { - "end_col": 22, - "end_line": 495, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "start_col": 6, - "start_line": 495 - }, - "While constructing the external wrapper for:" - ], - "start_col": 123, - "start_line": 1 - }, - "While expanding the reference '__calldata_arg_owner' in:" - ], - "start_col": 5, - "start_line": 496 - }, - "While handling calldata argument 'owner'" - ], - "start_col": 28, - "start_line": 1 - } - }, - "4958": { - "accessible_scopes": [ - "__main__", - "__main__", - "__wrappers__", - "__wrappers__.isApprovedForAll" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 47, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/arg_processor/c28d01f4036658535ed1f26a855ca481100f6b9fa5c266733e27ba2dce390d91.cairo" - }, - "parent_location": [ - { - "end_col": 32, - "end_line": 496, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "parent_location": [ - { - "end_col": 177, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/external/isApprovedForAll/28e6449b750a764997de3246d5af785f29a76b7b369ce53a25f4614d960a20f3.cairo" - }, - "parent_location": [ - { - "end_col": 22, - "end_line": 495, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "start_col": 6, - "start_line": 495 - }, - "While constructing the external wrapper for:" - ], - "start_col": 154, - "start_line": 1 - }, - "While expanding the reference '__calldata_arg_operator' in:" - ], - "start_col": 18, - "start_line": 496 - }, - "While handling calldata argument 'operator'" - ], - "start_col": 31, - "start_line": 1 - } - }, - "4959": { - "accessible_scopes": [ - "__main__", - "__main__", - "__wrappers__", - "__wrappers__.isApprovedForAll" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 22, - "end_line": 495, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "start_col": 6, - "start_line": 495 - } - }, - "4961": { - "accessible_scopes": [ - "__main__", - "__main__", - "__wrappers__", - "__wrappers__.isApprovedForAll" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 115, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/external/isApprovedForAll/28e6449b750a764997de3246d5af785f29a76b7b369ce53a25f4614d960a20f3.cairo" - }, - "parent_location": [ - { - "end_col": 22, - "end_line": 495, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "parent_location": [ - { - "end_col": 105, - "end_line": 2, - "input_file": { - "filename": "autogen/starknet/external/isApprovedForAll/28e6449b750a764997de3246d5af785f29a76b7b369ce53a25f4614d960a20f3.cairo" - }, - "parent_location": [ - { - "end_col": 22, - "end_line": 495, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "start_col": 6, - "start_line": 495 - }, - "While constructing the external wrapper for:" - ], - "start_col": 90, - "start_line": 2 - }, - "While expanding the reference 'range_check_ptr' in:" - ], - "start_col": 6, - "start_line": 495 - }, - "While constructing the external wrapper for:" - ], - "start_col": 100, - "start_line": 1 - } - }, - "4962": { - "accessible_scopes": [ - "__main__", - "__main__", - "__wrappers__", - "__wrappers__.isApprovedForAll" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 106, - "end_line": 2, - "input_file": { - "filename": "autogen/starknet/external/isApprovedForAll/28e6449b750a764997de3246d5af785f29a76b7b369ce53a25f4614d960a20f3.cairo" - }, - "parent_location": [ - { - "end_col": 22, - "end_line": 495, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "start_col": 6, - "start_line": 495 - }, - "While constructing the external wrapper for:" - ], - "start_col": 48, - "start_line": 2 - } - }, - "4964": { - "accessible_scopes": [ - "__main__", - "__main__", - "__wrappers__", - "__wrappers__.isApprovedForAll" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 55, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/external/isApprovedForAll/28e6449b750a764997de3246d5af785f29a76b7b369ce53a25f4614d960a20f3.cairo" - }, - "parent_location": [ - { - "end_col": 22, - "end_line": 495, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "parent_location": [ - { - "end_col": 20, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/external/isApprovedForAll/da17921a4e81c09e730800bbf23bfdbe5e9e6bfaedc59d80fbf62087fa43c27d.cairo" - }, - "parent_location": [ - { - "end_col": 22, - "end_line": 495, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "start_col": 6, - "start_line": 495 - }, - "While constructing the external wrapper for:" - ], - "start_col": 9, - "start_line": 1 - }, - "While expanding the reference 'syscall_ptr' in:" - ], - "start_col": 6, - "start_line": 495 - }, - "While constructing the external wrapper for:" - ], - "start_col": 44, - "start_line": 1 - } - }, - "4965": { - "accessible_scopes": [ - "__main__", - "__main__", - "__wrappers__", - "__wrappers__.isApprovedForAll" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 82, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/external/isApprovedForAll/28e6449b750a764997de3246d5af785f29a76b7b369ce53a25f4614d960a20f3.cairo" - }, - "parent_location": [ - { - "end_col": 22, - "end_line": 495, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "parent_location": [ - { - "end_col": 33, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/external/isApprovedForAll/da17921a4e81c09e730800bbf23bfdbe5e9e6bfaedc59d80fbf62087fa43c27d.cairo" - }, - "parent_location": [ - { - "end_col": 22, - "end_line": 495, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "start_col": 6, - "start_line": 495 - }, - "While constructing the external wrapper for:" - ], - "start_col": 21, - "start_line": 1 - }, - "While expanding the reference 'pedersen_ptr' in:" - ], - "start_col": 6, - "start_line": 495 - }, - "While constructing the external wrapper for:" - ], - "start_col": 70, - "start_line": 1 - } - }, - "4966": { - "accessible_scopes": [ - "__main__", - "__main__", - "__wrappers__", - "__wrappers__.isApprovedForAll" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 21, - "end_line": 2, - "input_file": { - "filename": "autogen/starknet/external/isApprovedForAll/28e6449b750a764997de3246d5af785f29a76b7b369ce53a25f4614d960a20f3.cairo" - }, - "parent_location": [ - { - "end_col": 22, - "end_line": 495, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "parent_location": [ - { - "end_col": 49, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/external/isApprovedForAll/da17921a4e81c09e730800bbf23bfdbe5e9e6bfaedc59d80fbf62087fa43c27d.cairo" - }, - "parent_location": [ - { - "end_col": 22, - "end_line": 495, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "start_col": 6, - "start_line": 495 - }, - "While constructing the external wrapper for:" - ], - "start_col": 34, - "start_line": 1 - }, - "While expanding the reference 'range_check_ptr' in:" - ], - "start_col": 6, - "start_line": 495 - }, - "While constructing the external wrapper for:" - ], - "start_col": 6, - "start_line": 2 - } - }, - "4967": { - "accessible_scopes": [ - "__main__", - "__main__", - "__wrappers__", - "__wrappers__.isApprovedForAll" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 35, - "end_line": 2, - "input_file": { - "filename": "autogen/starknet/external/isApprovedForAll/28e6449b750a764997de3246d5af785f29a76b7b369ce53a25f4614d960a20f3.cairo" - }, - "parent_location": [ - { - "end_col": 22, - "end_line": 495, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "parent_location": [ - { - "end_col": 62, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/external/isApprovedForAll/da17921a4e81c09e730800bbf23bfdbe5e9e6bfaedc59d80fbf62087fa43c27d.cairo" - }, - "parent_location": [ - { - "end_col": 22, - "end_line": 495, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "start_col": 6, - "start_line": 495 - }, - "While constructing the external wrapper for:" - ], - "start_col": 50, - "start_line": 1 - }, - "While expanding the reference 'retdata_size' in:" - ], - "start_col": 6, - "start_line": 495 - }, - "While constructing the external wrapper for:" - ], - "start_col": 23, - "start_line": 2 - } - }, - "4968": { - "accessible_scopes": [ - "__main__", - "__main__", - "__wrappers__", - "__wrappers__.isApprovedForAll" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 44, - "end_line": 2, - "input_file": { - "filename": "autogen/starknet/external/isApprovedForAll/28e6449b750a764997de3246d5af785f29a76b7b369ce53a25f4614d960a20f3.cairo" - }, - "parent_location": [ - { - "end_col": 22, - "end_line": 495, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "parent_location": [ - { - "end_col": 70, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/external/isApprovedForAll/da17921a4e81c09e730800bbf23bfdbe5e9e6bfaedc59d80fbf62087fa43c27d.cairo" - }, - "parent_location": [ - { - "end_col": 22, - "end_line": 495, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "start_col": 6, - "start_line": 495 - }, - "While constructing the external wrapper for:" - ], - "start_col": 63, - "start_line": 1 - }, - "While expanding the reference 'retdata' in:" - ], - "start_col": 6, - "start_line": 495 - }, - "While constructing the external wrapper for:" - ], - "start_col": 37, - "start_line": 2 - } - }, - "4969": { - "accessible_scopes": [ - "__main__", - "__main__", - "__wrappers__", - "__wrappers__.isApprovedForAll" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 72, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/external/isApprovedForAll/da17921a4e81c09e730800bbf23bfdbe5e9e6bfaedc59d80fbf62087fa43c27d.cairo" - }, - "parent_location": [ - { - "end_col": 22, - "end_line": 495, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "start_col": 6, - "start_line": 495 - }, - "While constructing the external wrapper for:" - ], - "start_col": 1, - "start_line": 1 - } - }, - "4970": { - "accessible_scopes": [ - "__main__", - "__main__", - "__main__.approve" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 40, - "end_line": 507, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "parent_location": [ - { - "end_col": 44, - "end_line": 158, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" - }, - "parent_location": [ - { - "end_col": 32, - "end_line": 510, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "start_col": 5, - "start_line": 510 - }, - "While trying to retrieve the implicit argument 'pedersen_ptr' in:" - ], - "start_col": 18, - "start_line": 158 - }, - "While expanding the reference 'pedersen_ptr' in:" - ], - "start_col": 14, - "start_line": 507 - } - }, - "4971": { - "accessible_scopes": [ - "__main__", - "__main__", - "__main__.approve" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 60, - "end_line": 507, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "parent_location": [ - { - "end_col": 64, - "end_line": 158, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" - }, - "parent_location": [ - { - "end_col": 32, - "end_line": 510, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "start_col": 5, - "start_line": 510 - }, - "While trying to retrieve the implicit argument 'syscall_ptr' in:" - ], - "start_col": 46, - "start_line": 158 - }, - "While expanding the reference 'syscall_ptr' in:" - ], - "start_col": 42, - "start_line": 507 - } - }, - "4972": { - "accessible_scopes": [ - "__main__", - "__main__", - "__main__.approve" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 77, - "end_line": 507, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "parent_location": [ - { - "end_col": 81, - "end_line": 158, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" - }, - "parent_location": [ - { - "end_col": 32, - "end_line": 510, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "start_col": 5, - "start_line": 510 - }, - "While trying to retrieve the implicit argument 'range_check_ptr' in:" - ], - "start_col": 66, - "start_line": 158 - }, - "While expanding the reference 'range_check_ptr' in:" - ], - "start_col": 62, - "start_line": 507 - } - }, - "4973": { - "accessible_scopes": [ - "__main__", - "__main__", - "__main__.approve" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 13, - "end_line": 508, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "parent_location": [ - { - "end_col": 22, - "end_line": 510, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "start_col": 20, - "start_line": 510 - }, - "While expanding the reference 'to' in:" - ], - "start_col": 5, - "start_line": 508 - } - }, - "4974": { - "accessible_scopes": [ - "__main__", - "__main__", - "__main__.approve" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 31, - "end_line": 508, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "parent_location": [ - { - "end_col": 31, - "end_line": 510, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "start_col": 24, - "start_line": 510 - }, - "While expanding the reference 'tokenId' in:" - ], - "start_col": 15, - "start_line": 508 - } - }, - "4975": { - "accessible_scopes": [ - "__main__", - "__main__", - "__main__.approve" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 31, - "end_line": 508, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "parent_location": [ - { - "end_col": 31, - "end_line": 510, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "start_col": 24, - "start_line": 510 - }, - "While expanding the reference 'tokenId' in:" - ], - "start_col": 15, - "start_line": 508 - } - }, - "4976": { - "accessible_scopes": [ - "__main__", - "__main__", - "__main__.approve" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 32, - "end_line": 510, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "start_col": 5, - "start_line": 510 - } - }, - "4978": { - "accessible_scopes": [ - "__main__", - "__main__", - "__main__.approve" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 15, - "end_line": 511, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "start_col": 5, - "start_line": 511 - } - }, - "4979": { - "accessible_scopes": [ - "__main__", - "__main__", - "__wrappers__", - "__wrappers__.approve" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 40, - "end_line": 3, - "input_file": { - "filename": "autogen/starknet/arg_processor/60c79ef5477686f2843e61432dcde7f4fc0f354d42095115ea9dca625a35df6e.cairo" - }, - "parent_location": [ - { - "end_col": 31, - "end_line": 508, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "parent_location": [ - { - "end_col": 45, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/arg_processor/c31620b02d4d706f0542c989b2aadc01b0981d1f6a5933a8fe4937ace3d70d92.cairo" - }, - "parent_location": [ - { - "end_col": 13, - "end_line": 507, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "parent_location": [ - { - "end_col": 57, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/arg_processor/01cba52f8515996bb9d7070bde81ff39281d096d7024a558efcba6e1fd2402cf.cairo" - }, - "parent_location": [ - { - "end_col": 13, - "end_line": 507, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "start_col": 6, - "start_line": 507 - }, - "While handling calldata of" - ], - "start_col": 35, - "start_line": 1 - }, - "While expanding the reference '__calldata_actual_size' in:" - ], - "start_col": 6, - "start_line": 507 - }, - "While handling calldata of" - ], - "start_col": 31, - "start_line": 1 - }, - "While expanding the reference '__calldata_ptr' in:" - ], - "start_col": 15, - "start_line": 508 - }, - "While handling calldata argument 'tokenId'" - ], - "start_col": 22, - "start_line": 3 - } - }, - "4981": { - "accessible_scopes": [ - "__main__", - "__main__", - "__wrappers__", - "__wrappers__.approve" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 58, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/arg_processor/01cba52f8515996bb9d7070bde81ff39281d096d7024a558efcba6e1fd2402cf.cairo" - }, - "parent_location": [ - { - "end_col": 13, - "end_line": 507, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "start_col": 6, - "start_line": 507 - }, - "While handling calldata of" - ], - "start_col": 1, - "start_line": 1 - } - }, - "4982": { - "accessible_scopes": [ - "__main__", - "__main__", - "__wrappers__", - "__wrappers__.approve" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 110, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/external/approve/9684a85e93c782014ca14293edea4eb2502039a5a7b6538ecd39c56faaf12529.cairo" - }, - "parent_location": [ - { - "end_col": 40, - "end_line": 507, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "parent_location": [ - { - "end_col": 57, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/external/approve/5388f692818f55977b2452a31ce8c0a2aaeeb5ab5c5db8c2d2f3ab50dcff739b.cairo" - }, - "parent_location": [ - { - "end_col": 13, - "end_line": 507, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "start_col": 6, - "start_line": 507 - }, - "While constructing the external wrapper for:" - ], - "start_col": 45, - "start_line": 1 - }, - "While expanding the reference 'pedersen_ptr' in:" - ], - "start_col": 14, - "start_line": 507 - }, - "While constructing the external wrapper for:" - ], - "start_col": 20, - "start_line": 1 - } - }, - "4983": { - "accessible_scopes": [ - "__main__", - "__main__", - "__wrappers__", - "__wrappers__.approve" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 64, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/external/approve/b2c52ca2d2a8fc8791a983086d8716c5eacd0c3d62934914d2286f84b98ff4cb.cairo" - }, - "parent_location": [ - { - "end_col": 60, - "end_line": 507, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "parent_location": [ - { - "end_col": 82, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/external/approve/5388f692818f55977b2452a31ce8c0a2aaeeb5ab5c5db8c2d2f3ab50dcff739b.cairo" - }, - "parent_location": [ - { - "end_col": 13, - "end_line": 507, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "start_col": 6, - "start_line": 507 - }, - "While constructing the external wrapper for:" - ], - "start_col": 71, - "start_line": 1 - }, - "While expanding the reference 'syscall_ptr' in:" - ], - "start_col": 42, - "start_line": 507 - }, - "While constructing the external wrapper for:" - ], - "start_col": 19, - "start_line": 1 - } - }, - "4984": { - "accessible_scopes": [ - "__main__", - "__main__", - "__wrappers__", - "__wrappers__.approve" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 67, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/external/approve/741ea357d6336b0bed7bf0472425acd0311d543883b803388880e60a232040c7.cairo" - }, - "parent_location": [ - { - "end_col": 77, - "end_line": 507, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "parent_location": [ - { - "end_col": 115, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/external/approve/5388f692818f55977b2452a31ce8c0a2aaeeb5ab5c5db8c2d2f3ab50dcff739b.cairo" - }, - "parent_location": [ - { - "end_col": 13, - "end_line": 507, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "start_col": 6, - "start_line": 507 - }, - "While constructing the external wrapper for:" - ], - "start_col": 100, - "start_line": 1 - }, - "While expanding the reference 'range_check_ptr' in:" - ], - "start_col": 62, - "start_line": 507 - }, - "While constructing the external wrapper for:" - ], - "start_col": 23, - "start_line": 1 - } - }, - "4985": { - "accessible_scopes": [ - "__main__", - "__main__", - "__wrappers__", - "__wrappers__.approve" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 41, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/arg_processor/dceaabc265216c0ff87c509d90446554648ec4d692c521cda952464d1fc22972.cairo" - }, - "parent_location": [ - { - "end_col": 13, - "end_line": 508, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "parent_location": [ - { - "end_col": 137, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/external/approve/5388f692818f55977b2452a31ce8c0a2aaeeb5ab5c5db8c2d2f3ab50dcff739b.cairo" - }, - "parent_location": [ - { - "end_col": 13, - "end_line": 507, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "start_col": 6, - "start_line": 507 - }, - "While constructing the external wrapper for:" - ], - "start_col": 120, - "start_line": 1 - }, - "While expanding the reference '__calldata_arg_to' in:" - ], - "start_col": 5, - "start_line": 508 - }, - "While handling calldata argument 'to'" - ], - "start_col": 25, - "start_line": 1 - } - }, - "4986": { - "accessible_scopes": [ - "__main__", - "__main__", - "__wrappers__", - "__wrappers__.approve" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 67, - "end_line": 2, - "input_file": { - "filename": "autogen/starknet/arg_processor/60c79ef5477686f2843e61432dcde7f4fc0f354d42095115ea9dca625a35df6e.cairo" - }, - "parent_location": [ - { - "end_col": 31, - "end_line": 508, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "parent_location": [ - { - "end_col": 169, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/external/approve/5388f692818f55977b2452a31ce8c0a2aaeeb5ab5c5db8c2d2f3ab50dcff739b.cairo" - }, - "parent_location": [ - { - "end_col": 13, - "end_line": 507, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "start_col": 6, - "start_line": 507 - }, - "While constructing the external wrapper for:" - ], - "start_col": 147, - "start_line": 1 - }, - "While expanding the reference '__calldata_arg_tokenId' in:" - ], - "start_col": 15, - "start_line": 508 - }, - "While handling calldata argument 'tokenId'" - ], - "start_col": 30, - "start_line": 1 - } - }, - "4987": { - "accessible_scopes": [ - "__main__", - "__main__", - "__wrappers__", - "__wrappers__.approve" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 67, - "end_line": 2, - "input_file": { - "filename": "autogen/starknet/arg_processor/60c79ef5477686f2843e61432dcde7f4fc0f354d42095115ea9dca625a35df6e.cairo" - }, - "parent_location": [ - { - "end_col": 31, - "end_line": 508, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "parent_location": [ - { - "end_col": 169, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/external/approve/5388f692818f55977b2452a31ce8c0a2aaeeb5ab5c5db8c2d2f3ab50dcff739b.cairo" - }, - "parent_location": [ - { - "end_col": 13, - "end_line": 507, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "start_col": 6, - "start_line": 507 - }, - "While constructing the external wrapper for:" - ], - "start_col": 147, - "start_line": 1 - }, - "While expanding the reference '__calldata_arg_tokenId' in:" - ], - "start_col": 15, - "start_line": 508 - }, - "While handling calldata argument 'tokenId'" - ], - "start_col": 30, - "start_line": 1 - } - }, - "4988": { - "accessible_scopes": [ - "__main__", - "__main__", - "__wrappers__", - "__wrappers__.approve" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 13, - "end_line": 507, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "start_col": 6, - "start_line": 507 - } - }, - "4990": { - "accessible_scopes": [ - "__main__", - "__main__", - "__wrappers__", - "__wrappers__.approve" - ], - "flow_tracking_data": null, - "hints": [ - { - "location": { - "end_col": 34, - "end_line": 2, - "input_file": { - "filename": "autogen/starknet/external/approve/5388f692818f55977b2452a31ce8c0a2aaeeb5ab5c5db8c2d2f3ab50dcff739b.cairo" - }, - "parent_location": [ - { - "end_col": 13, - "end_line": 507, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "start_col": 6, - "start_line": 507 - }, - "While constructing the external wrapper for:" - ], - "start_col": 1, - "start_line": 2 - }, - "n_prefix_newlines": 0 - } - ], - "inst": { - "end_col": 24, - "end_line": 3, - "input_file": { - "filename": "autogen/starknet/external/approve/5388f692818f55977b2452a31ce8c0a2aaeeb5ab5c5db8c2d2f3ab50dcff739b.cairo" - }, - "parent_location": [ - { - "end_col": 13, - "end_line": 507, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "start_col": 6, - "start_line": 507 - }, - "While constructing the external wrapper for:" - ], - "start_col": 1, - "start_line": 3 - } - }, - "4992": { - "accessible_scopes": [ - "__main__", - "__main__", - "__wrappers__", - "__wrappers__.approve" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 82, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/external/approve/5388f692818f55977b2452a31ce8c0a2aaeeb5ab5c5db8c2d2f3ab50dcff739b.cairo" - }, - "parent_location": [ - { - "end_col": 13, - "end_line": 507, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "parent_location": [ - { - "end_col": 20, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/external/approve/da17921a4e81c09e730800bbf23bfdbe5e9e6bfaedc59d80fbf62087fa43c27d.cairo" - }, - "parent_location": [ - { - "end_col": 13, - "end_line": 507, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "start_col": 6, - "start_line": 507 - }, - "While constructing the external wrapper for:" - ], - "start_col": 9, - "start_line": 1 - }, - "While expanding the reference 'syscall_ptr' in:" - ], - "start_col": 6, - "start_line": 507 - }, - "While constructing the external wrapper for:" - ], - "start_col": 71, - "start_line": 1 - } - }, - "4993": { - "accessible_scopes": [ - "__main__", - "__main__", - "__wrappers__", - "__wrappers__.approve" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 57, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/external/approve/5388f692818f55977b2452a31ce8c0a2aaeeb5ab5c5db8c2d2f3ab50dcff739b.cairo" - }, - "parent_location": [ - { - "end_col": 13, - "end_line": 507, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "parent_location": [ - { - "end_col": 33, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/external/approve/da17921a4e81c09e730800bbf23bfdbe5e9e6bfaedc59d80fbf62087fa43c27d.cairo" - }, - "parent_location": [ - { - "end_col": 13, - "end_line": 507, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "start_col": 6, - "start_line": 507 - }, - "While constructing the external wrapper for:" - ], - "start_col": 21, - "start_line": 1 - }, - "While expanding the reference 'pedersen_ptr' in:" - ], - "start_col": 6, - "start_line": 507 - }, - "While constructing the external wrapper for:" - ], - "start_col": 45, - "start_line": 1 - } - }, - "4994": { - "accessible_scopes": [ - "__main__", - "__main__", - "__wrappers__", - "__wrappers__.approve" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 115, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/external/approve/5388f692818f55977b2452a31ce8c0a2aaeeb5ab5c5db8c2d2f3ab50dcff739b.cairo" - }, - "parent_location": [ - { - "end_col": 13, - "end_line": 507, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "parent_location": [ - { - "end_col": 49, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/external/approve/da17921a4e81c09e730800bbf23bfdbe5e9e6bfaedc59d80fbf62087fa43c27d.cairo" - }, - "parent_location": [ - { - "end_col": 13, - "end_line": 507, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "start_col": 6, - "start_line": 507 - }, - "While constructing the external wrapper for:" - ], - "start_col": 34, - "start_line": 1 - }, - "While expanding the reference 'range_check_ptr' in:" - ], - "start_col": 6, - "start_line": 507 - }, - "While constructing the external wrapper for:" - ], - "start_col": 100, - "start_line": 1 - } - }, - "4995": { - "accessible_scopes": [ - "__main__", - "__main__", - "__wrappers__", - "__wrappers__.approve" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 21, - "end_line": 4, - "input_file": { - "filename": "autogen/starknet/external/approve/5388f692818f55977b2452a31ce8c0a2aaeeb5ab5c5db8c2d2f3ab50dcff739b.cairo" - }, - "parent_location": [ - { - "end_col": 13, - "end_line": 507, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "parent_location": [ - { - "end_col": 62, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/external/approve/da17921a4e81c09e730800bbf23bfdbe5e9e6bfaedc59d80fbf62087fa43c27d.cairo" - }, - "parent_location": [ - { - "end_col": 13, - "end_line": 507, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "start_col": 6, - "start_line": 507 - }, - "While constructing the external wrapper for:" - ], - "start_col": 50, - "start_line": 1 - }, - "While expanding the reference 'retdata_size' in:" - ], - "start_col": 6, - "start_line": 507 - }, - "While constructing the external wrapper for:" - ], - "start_col": 20, - "start_line": 4 - } - }, - "4997": { - "accessible_scopes": [ - "__main__", - "__main__", - "__wrappers__", - "__wrappers__.approve" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 16, - "end_line": 3, - "input_file": { - "filename": "autogen/starknet/external/approve/5388f692818f55977b2452a31ce8c0a2aaeeb5ab5c5db8c2d2f3ab50dcff739b.cairo" - }, - "parent_location": [ - { - "end_col": 13, - "end_line": 507, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "parent_location": [ - { - "end_col": 70, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/external/approve/da17921a4e81c09e730800bbf23bfdbe5e9e6bfaedc59d80fbf62087fa43c27d.cairo" - }, - "parent_location": [ - { - "end_col": 13, - "end_line": 507, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "start_col": 6, - "start_line": 507 - }, - "While constructing the external wrapper for:" - ], - "start_col": 63, - "start_line": 1 - }, - "While expanding the reference 'retdata' in:" - ], - "start_col": 6, - "start_line": 507 - }, - "While constructing the external wrapper for:" - ], - "start_col": 9, - "start_line": 3 - } - }, - "4998": { - "accessible_scopes": [ - "__main__", - "__main__", - "__wrappers__", - "__wrappers__.approve" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 72, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/external/approve/da17921a4e81c09e730800bbf23bfdbe5e9e6bfaedc59d80fbf62087fa43c27d.cairo" - }, - "parent_location": [ - { - "end_col": 13, - "end_line": 507, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "start_col": 6, - "start_line": 507 - }, - "While constructing the external wrapper for:" - ], - "start_col": 1, - "start_line": 1 - } - }, - "4999": { - "accessible_scopes": [ - "__main__", - "__main__", - "__main__.setApprovalForAll" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 42, - "end_line": 515, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "parent_location": [ - { - "end_col": 49, - "end_line": 192, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" - }, - "parent_location": [ - { - "end_col": 52, - "end_line": 518, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "start_col": 5, - "start_line": 518 - }, - "While trying to retrieve the implicit argument 'syscall_ptr' in:" - ], - "start_col": 31, - "start_line": 192 - }, - "While expanding the reference 'syscall_ptr' in:" - ], - "start_col": 24, - "start_line": 515 - } - }, - "5000": { - "accessible_scopes": [ - "__main__", - "__main__", - "__main__.setApprovalForAll" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 70, - "end_line": 515, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "parent_location": [ - { - "end_col": 77, - "end_line": 192, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" - }, - "parent_location": [ - { - "end_col": 52, - "end_line": 518, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "start_col": 5, - "start_line": 518 - }, - "While trying to retrieve the implicit argument 'pedersen_ptr' in:" - ], - "start_col": 51, - "start_line": 192 - }, - "While expanding the reference 'pedersen_ptr' in:" - ], - "start_col": 44, - "start_line": 515 - } - }, - "5001": { - "accessible_scopes": [ - "__main__", - "__main__", - "__main__.setApprovalForAll" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 87, - "end_line": 515, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "parent_location": [ - { - "end_col": 94, - "end_line": 192, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" - }, - "parent_location": [ - { - "end_col": 52, - "end_line": 518, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "start_col": 5, - "start_line": 518 - }, - "While trying to retrieve the implicit argument 'range_check_ptr' in:" - ], - "start_col": 79, - "start_line": 192 - }, - "While expanding the reference 'range_check_ptr' in:" - ], - "start_col": 72, - "start_line": 515 - } - }, - "5002": { - "accessible_scopes": [ - "__main__", - "__main__", - "__main__.setApprovalForAll" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 19, - "end_line": 516, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "parent_location": [ - { - "end_col": 41, - "end_line": 518, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "start_col": 33, - "start_line": 518 - }, - "While expanding the reference 'operator' in:" - ], - "start_col": 5, - "start_line": 516 - } - }, - "5003": { - "accessible_scopes": [ - "__main__", - "__main__", - "__main__.setApprovalForAll" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 35, - "end_line": 516, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "parent_location": [ - { - "end_col": 51, - "end_line": 518, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "start_col": 43, - "start_line": 518 - }, - "While expanding the reference 'approved' in:" - ], - "start_col": 21, - "start_line": 516 - } - }, - "5004": { - "accessible_scopes": [ - "__main__", - "__main__", - "__main__.setApprovalForAll" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 52, - "end_line": 518, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "start_col": 5, - "start_line": 518 - } - }, - "5006": { - "accessible_scopes": [ - "__main__", - "__main__", - "__main__.setApprovalForAll" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 15, - "end_line": 519, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "start_col": 5, - "start_line": 519 - } - }, - "5007": { - "accessible_scopes": [ - "__main__", - "__main__", - "__wrappers__", - "__wrappers__.setApprovalForAll" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 40, - "end_line": 2, - "input_file": { - "filename": "autogen/starknet/arg_processor/3df93897a3d5ba5292d0e14e5ec6fc5a7b4e70846d4b45d9e0d60ead1a53339e.cairo" - }, - "parent_location": [ - { - "end_col": 35, - "end_line": 516, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "parent_location": [ - { - "end_col": 45, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/arg_processor/c31620b02d4d706f0542c989b2aadc01b0981d1f6a5933a8fe4937ace3d70d92.cairo" - }, - "parent_location": [ - { - "end_col": 23, - "end_line": 515, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "parent_location": [ - { - "end_col": 57, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/arg_processor/01cba52f8515996bb9d7070bde81ff39281d096d7024a558efcba6e1fd2402cf.cairo" - }, - "parent_location": [ - { - "end_col": 23, - "end_line": 515, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "start_col": 6, - "start_line": 515 - }, - "While handling calldata of" - ], - "start_col": 35, - "start_line": 1 - }, - "While expanding the reference '__calldata_actual_size' in:" - ], - "start_col": 6, - "start_line": 515 - }, - "While handling calldata of" - ], - "start_col": 31, - "start_line": 1 - }, - "While expanding the reference '__calldata_ptr' in:" - ], - "start_col": 21, - "start_line": 516 - }, - "While handling calldata argument 'approved'" - ], - "start_col": 22, - "start_line": 2 - } - }, - "5009": { - "accessible_scopes": [ - "__main__", - "__main__", - "__wrappers__", - "__wrappers__.setApprovalForAll" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 58, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/arg_processor/01cba52f8515996bb9d7070bde81ff39281d096d7024a558efcba6e1fd2402cf.cairo" - }, - "parent_location": [ - { - "end_col": 23, - "end_line": 515, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "start_col": 6, - "start_line": 515 - }, - "While handling calldata of" - ], - "start_col": 1, - "start_line": 1 - } - }, - "5010": { - "accessible_scopes": [ - "__main__", - "__main__", - "__wrappers__", - "__wrappers__.setApprovalForAll" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 64, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/external/setApprovalForAll/b2c52ca2d2a8fc8791a983086d8716c5eacd0c3d62934914d2286f84b98ff4cb.cairo" - }, - "parent_location": [ - { - "end_col": 42, - "end_line": 515, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "parent_location": [ - { - "end_col": 55, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/external/setApprovalForAll/36d3b3d1e829d7c23b24cbbecc8b2addd27fb9b3d959fca94c45d76a0c77f32d.cairo" - }, - "parent_location": [ - { - "end_col": 23, - "end_line": 515, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "start_col": 6, - "start_line": 515 - }, - "While constructing the external wrapper for:" - ], - "start_col": 44, - "start_line": 1 - }, - "While expanding the reference 'syscall_ptr' in:" - ], - "start_col": 24, - "start_line": 515 - }, - "While constructing the external wrapper for:" - ], - "start_col": 19, - "start_line": 1 - } - }, - "5011": { - "accessible_scopes": [ - "__main__", - "__main__", - "__wrappers__", - "__wrappers__.setApprovalForAll" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 110, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/external/setApprovalForAll/9684a85e93c782014ca14293edea4eb2502039a5a7b6538ecd39c56faaf12529.cairo" - }, - "parent_location": [ - { - "end_col": 70, - "end_line": 515, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "parent_location": [ - { - "end_col": 82, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/external/setApprovalForAll/36d3b3d1e829d7c23b24cbbecc8b2addd27fb9b3d959fca94c45d76a0c77f32d.cairo" - }, - "parent_location": [ - { - "end_col": 23, - "end_line": 515, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "start_col": 6, - "start_line": 515 - }, - "While constructing the external wrapper for:" - ], - "start_col": 70, - "start_line": 1 - }, - "While expanding the reference 'pedersen_ptr' in:" - ], - "start_col": 44, - "start_line": 515 - }, - "While constructing the external wrapper for:" - ], - "start_col": 20, - "start_line": 1 - } - }, - "5012": { - "accessible_scopes": [ - "__main__", - "__main__", - "__wrappers__", - "__wrappers__.setApprovalForAll" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 67, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/external/setApprovalForAll/741ea357d6336b0bed7bf0472425acd0311d543883b803388880e60a232040c7.cairo" - }, - "parent_location": [ - { - "end_col": 87, - "end_line": 515, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "parent_location": [ - { - "end_col": 115, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/external/setApprovalForAll/36d3b3d1e829d7c23b24cbbecc8b2addd27fb9b3d959fca94c45d76a0c77f32d.cairo" - }, - "parent_location": [ - { - "end_col": 23, - "end_line": 515, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "start_col": 6, - "start_line": 515 - }, - "While constructing the external wrapper for:" - ], - "start_col": 100, - "start_line": 1 - }, - "While expanding the reference 'range_check_ptr' in:" - ], - "start_col": 72, - "start_line": 515 - }, - "While constructing the external wrapper for:" - ], - "start_col": 23, - "start_line": 1 - } - }, - "5013": { - "accessible_scopes": [ - "__main__", - "__main__", - "__wrappers__", - "__wrappers__.setApprovalForAll" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 47, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/arg_processor/c28d01f4036658535ed1f26a855ca481100f6b9fa5c266733e27ba2dce390d91.cairo" - }, - "parent_location": [ - { - "end_col": 19, - "end_line": 516, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "parent_location": [ - { - "end_col": 149, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/external/setApprovalForAll/36d3b3d1e829d7c23b24cbbecc8b2addd27fb9b3d959fca94c45d76a0c77f32d.cairo" - }, - "parent_location": [ - { - "end_col": 23, - "end_line": 515, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "start_col": 6, - "start_line": 515 - }, - "While constructing the external wrapper for:" - ], - "start_col": 126, - "start_line": 1 - }, - "While expanding the reference '__calldata_arg_operator' in:" - ], - "start_col": 5, - "start_line": 516 - }, - "While handling calldata argument 'operator'" - ], - "start_col": 31, - "start_line": 1 - } - }, - "5014": { - "accessible_scopes": [ - "__main__", - "__main__", - "__wrappers__", - "__wrappers__.setApprovalForAll" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 47, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/arg_processor/3df93897a3d5ba5292d0e14e5ec6fc5a7b4e70846d4b45d9e0d60ead1a53339e.cairo" - }, - "parent_location": [ - { - "end_col": 35, - "end_line": 516, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "parent_location": [ - { - "end_col": 183, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/external/setApprovalForAll/36d3b3d1e829d7c23b24cbbecc8b2addd27fb9b3d959fca94c45d76a0c77f32d.cairo" - }, - "parent_location": [ - { - "end_col": 23, - "end_line": 515, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "start_col": 6, - "start_line": 515 - }, - "While constructing the external wrapper for:" - ], - "start_col": 160, - "start_line": 1 - }, - "While expanding the reference '__calldata_arg_approved' in:" - ], - "start_col": 21, - "start_line": 516 - }, - "While handling calldata argument 'approved'" - ], - "start_col": 31, - "start_line": 1 - } - }, - "5015": { - "accessible_scopes": [ - "__main__", - "__main__", - "__wrappers__", - "__wrappers__.setApprovalForAll" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 23, - "end_line": 515, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "start_col": 6, - "start_line": 515 - } - }, - "5017": { - "accessible_scopes": [ - "__main__", - "__main__", - "__wrappers__", - "__wrappers__.setApprovalForAll" - ], - "flow_tracking_data": null, - "hints": [ - { - "location": { - "end_col": 34, - "end_line": 2, - "input_file": { - "filename": "autogen/starknet/external/setApprovalForAll/36d3b3d1e829d7c23b24cbbecc8b2addd27fb9b3d959fca94c45d76a0c77f32d.cairo" - }, - "parent_location": [ - { - "end_col": 23, - "end_line": 515, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "start_col": 6, - "start_line": 515 - }, - "While constructing the external wrapper for:" - ], - "start_col": 1, - "start_line": 2 - }, - "n_prefix_newlines": 0 - } - ], - "inst": { - "end_col": 24, - "end_line": 3, - "input_file": { - "filename": "autogen/starknet/external/setApprovalForAll/36d3b3d1e829d7c23b24cbbecc8b2addd27fb9b3d959fca94c45d76a0c77f32d.cairo" - }, - "parent_location": [ - { - "end_col": 23, - "end_line": 515, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "start_col": 6, - "start_line": 515 - }, - "While constructing the external wrapper for:" - ], - "start_col": 1, - "start_line": 3 - } - }, - "5019": { - "accessible_scopes": [ - "__main__", - "__main__", - "__wrappers__", - "__wrappers__.setApprovalForAll" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 55, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/external/setApprovalForAll/36d3b3d1e829d7c23b24cbbecc8b2addd27fb9b3d959fca94c45d76a0c77f32d.cairo" - }, - "parent_location": [ - { - "end_col": 23, - "end_line": 515, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "parent_location": [ - { - "end_col": 20, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/external/setApprovalForAll/da17921a4e81c09e730800bbf23bfdbe5e9e6bfaedc59d80fbf62087fa43c27d.cairo" - }, - "parent_location": [ - { - "end_col": 23, - "end_line": 515, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "start_col": 6, - "start_line": 515 - }, - "While constructing the external wrapper for:" - ], - "start_col": 9, - "start_line": 1 - }, - "While expanding the reference 'syscall_ptr' in:" - ], - "start_col": 6, - "start_line": 515 - }, - "While constructing the external wrapper for:" - ], - "start_col": 44, - "start_line": 1 - } - }, - "5020": { - "accessible_scopes": [ - "__main__", - "__main__", - "__wrappers__", - "__wrappers__.setApprovalForAll" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 82, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/external/setApprovalForAll/36d3b3d1e829d7c23b24cbbecc8b2addd27fb9b3d959fca94c45d76a0c77f32d.cairo" - }, - "parent_location": [ - { - "end_col": 23, - "end_line": 515, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "parent_location": [ - { - "end_col": 33, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/external/setApprovalForAll/da17921a4e81c09e730800bbf23bfdbe5e9e6bfaedc59d80fbf62087fa43c27d.cairo" - }, - "parent_location": [ - { - "end_col": 23, - "end_line": 515, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "start_col": 6, - "start_line": 515 - }, - "While constructing the external wrapper for:" - ], - "start_col": 21, - "start_line": 1 - }, - "While expanding the reference 'pedersen_ptr' in:" - ], - "start_col": 6, - "start_line": 515 - }, - "While constructing the external wrapper for:" - ], - "start_col": 70, - "start_line": 1 - } - }, - "5021": { - "accessible_scopes": [ - "__main__", - "__main__", - "__wrappers__", - "__wrappers__.setApprovalForAll" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 115, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/external/setApprovalForAll/36d3b3d1e829d7c23b24cbbecc8b2addd27fb9b3d959fca94c45d76a0c77f32d.cairo" - }, - "parent_location": [ - { - "end_col": 23, - "end_line": 515, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "parent_location": [ - { - "end_col": 49, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/external/setApprovalForAll/da17921a4e81c09e730800bbf23bfdbe5e9e6bfaedc59d80fbf62087fa43c27d.cairo" - }, - "parent_location": [ - { - "end_col": 23, - "end_line": 515, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "start_col": 6, - "start_line": 515 - }, - "While constructing the external wrapper for:" - ], - "start_col": 34, - "start_line": 1 - }, - "While expanding the reference 'range_check_ptr' in:" - ], - "start_col": 6, - "start_line": 515 - }, - "While constructing the external wrapper for:" - ], - "start_col": 100, - "start_line": 1 - } - }, - "5022": { - "accessible_scopes": [ - "__main__", - "__main__", - "__wrappers__", - "__wrappers__.setApprovalForAll" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 21, - "end_line": 4, - "input_file": { - "filename": "autogen/starknet/external/setApprovalForAll/36d3b3d1e829d7c23b24cbbecc8b2addd27fb9b3d959fca94c45d76a0c77f32d.cairo" - }, - "parent_location": [ - { - "end_col": 23, - "end_line": 515, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "parent_location": [ - { - "end_col": 62, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/external/setApprovalForAll/da17921a4e81c09e730800bbf23bfdbe5e9e6bfaedc59d80fbf62087fa43c27d.cairo" - }, - "parent_location": [ - { - "end_col": 23, - "end_line": 515, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "start_col": 6, - "start_line": 515 - }, - "While constructing the external wrapper for:" - ], - "start_col": 50, - "start_line": 1 - }, - "While expanding the reference 'retdata_size' in:" - ], - "start_col": 6, - "start_line": 515 - }, - "While constructing the external wrapper for:" - ], - "start_col": 20, - "start_line": 4 - } - }, - "5024": { - "accessible_scopes": [ - "__main__", - "__main__", - "__wrappers__", - "__wrappers__.setApprovalForAll" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 16, - "end_line": 3, - "input_file": { - "filename": "autogen/starknet/external/setApprovalForAll/36d3b3d1e829d7c23b24cbbecc8b2addd27fb9b3d959fca94c45d76a0c77f32d.cairo" - }, - "parent_location": [ - { - "end_col": 23, - "end_line": 515, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "parent_location": [ - { - "end_col": 70, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/external/setApprovalForAll/da17921a4e81c09e730800bbf23bfdbe5e9e6bfaedc59d80fbf62087fa43c27d.cairo" - }, - "parent_location": [ - { - "end_col": 23, - "end_line": 515, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "start_col": 6, - "start_line": 515 - }, - "While constructing the external wrapper for:" - ], - "start_col": 63, - "start_line": 1 - }, - "While expanding the reference 'retdata' in:" - ], - "start_col": 6, - "start_line": 515 - }, - "While constructing the external wrapper for:" - ], - "start_col": 9, - "start_line": 3 - } - }, - "5025": { - "accessible_scopes": [ - "__main__", - "__main__", - "__wrappers__", - "__wrappers__.setApprovalForAll" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 72, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/external/setApprovalForAll/da17921a4e81c09e730800bbf23bfdbe5e9e6bfaedc59d80fbf62087fa43c27d.cairo" - }, - "parent_location": [ - { - "end_col": 23, - "end_line": 515, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "start_col": 6, - "start_line": 515 - }, - "While constructing the external wrapper for:" - ], - "start_col": 1, - "start_line": 1 - } - }, - "5026": { - "accessible_scopes": [ - "__main__", - "__main__", - "__main__.transferFrom" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 45, - "end_line": 523, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "parent_location": [ - { - "end_col": 50, - "end_line": 92, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" - }, - "parent_location": [ - { - "end_col": 55, - "end_line": 526, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "start_col": 5, - "start_line": 526 - }, - "While trying to retrieve the implicit argument 'pedersen_ptr' in:" - ], - "start_col": 24, - "start_line": 92 - }, - "While expanding the reference 'pedersen_ptr' in:" - ], - "start_col": 19, - "start_line": 523 - } - }, - "5027": { - "accessible_scopes": [ - "__main__", - "__main__", - "__main__.transferFrom" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 65, - "end_line": 523, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "parent_location": [ - { - "end_col": 70, - "end_line": 92, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" - }, - "parent_location": [ - { - "end_col": 55, - "end_line": 526, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "start_col": 5, - "start_line": 526 - }, - "While trying to retrieve the implicit argument 'syscall_ptr' in:" - ], - "start_col": 52, - "start_line": 92 - }, - "While expanding the reference 'syscall_ptr' in:" - ], - "start_col": 47, - "start_line": 523 - } - }, - "5028": { - "accessible_scopes": [ - "__main__", - "__main__", - "__main__.transferFrom" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 82, - "end_line": 523, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "parent_location": [ - { - "end_col": 87, - "end_line": 92, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" - }, - "parent_location": [ - { - "end_col": 55, - "end_line": 526, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "start_col": 5, - "start_line": 526 - }, - "While trying to retrieve the implicit argument 'range_check_ptr' in:" - ], - "start_col": 72, - "start_line": 92 - }, - "While expanding the reference 'range_check_ptr' in:" - ], - "start_col": 67, - "start_line": 523 - } - }, - "5029": { - "accessible_scopes": [ - "__main__", - "__main__", - "__main__.transferFrom" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 16, - "end_line": 524, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "parent_location": [ - { - "end_col": 41, - "end_line": 526, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "start_col": 36, - "start_line": 526 - }, - "While expanding the reference 'from_' in:" - ], - "start_col": 5, - "start_line": 524 - } - }, - "5030": { - "accessible_scopes": [ - "__main__", - "__main__", - "__main__.transferFrom" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 26, - "end_line": 524, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "parent_location": [ - { - "end_col": 45, - "end_line": 526, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "start_col": 43, - "start_line": 526 - }, - "While expanding the reference 'to' in:" - ], - "start_col": 18, - "start_line": 524 - } - }, - "5031": { - "accessible_scopes": [ - "__main__", - "__main__", - "__main__.transferFrom" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 44, - "end_line": 524, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "parent_location": [ - { - "end_col": 54, - "end_line": 526, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "start_col": 47, - "start_line": 526 - }, - "While expanding the reference 'tokenId' in:" - ], - "start_col": 28, - "start_line": 524 - } - }, - "5032": { - "accessible_scopes": [ - "__main__", - "__main__", - "__main__.transferFrom" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 44, - "end_line": 524, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "parent_location": [ - { - "end_col": 54, - "end_line": 526, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "start_col": 47, - "start_line": 526 - }, - "While expanding the reference 'tokenId' in:" - ], - "start_col": 28, - "start_line": 524 - } - }, - "5033": { - "accessible_scopes": [ - "__main__", - "__main__", - "__main__.transferFrom" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 55, - "end_line": 526, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "start_col": 5, - "start_line": 526 - } - }, - "5035": { - "accessible_scopes": [ - "__main__", - "__main__", - "__main__.transferFrom" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 15, - "end_line": 527, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "start_col": 5, - "start_line": 527 - } - }, - "5036": { - "accessible_scopes": [ - "__main__", - "__main__", - "__wrappers__", - "__wrappers__.transferFrom" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 40, - "end_line": 3, - "input_file": { - "filename": "autogen/starknet/arg_processor/60c79ef5477686f2843e61432dcde7f4fc0f354d42095115ea9dca625a35df6e.cairo" - }, - "parent_location": [ - { - "end_col": 44, - "end_line": 524, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "parent_location": [ - { - "end_col": 45, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/arg_processor/c31620b02d4d706f0542c989b2aadc01b0981d1f6a5933a8fe4937ace3d70d92.cairo" - }, - "parent_location": [ - { - "end_col": 18, - "end_line": 523, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "parent_location": [ - { - "end_col": 57, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/arg_processor/01cba52f8515996bb9d7070bde81ff39281d096d7024a558efcba6e1fd2402cf.cairo" - }, - "parent_location": [ - { - "end_col": 18, - "end_line": 523, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "start_col": 6, - "start_line": 523 - }, - "While handling calldata of" - ], - "start_col": 35, - "start_line": 1 - }, - "While expanding the reference '__calldata_actual_size' in:" - ], - "start_col": 6, - "start_line": 523 - }, - "While handling calldata of" - ], - "start_col": 31, - "start_line": 1 - }, - "While expanding the reference '__calldata_ptr' in:" - ], - "start_col": 28, - "start_line": 524 - }, - "While handling calldata argument 'tokenId'" - ], - "start_col": 22, - "start_line": 3 - } - }, - "5038": { - "accessible_scopes": [ - "__main__", - "__main__", - "__wrappers__", - "__wrappers__.transferFrom" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 58, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/arg_processor/01cba52f8515996bb9d7070bde81ff39281d096d7024a558efcba6e1fd2402cf.cairo" - }, - "parent_location": [ - { - "end_col": 18, - "end_line": 523, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "start_col": 6, - "start_line": 523 - }, - "While handling calldata of" - ], - "start_col": 1, - "start_line": 1 - } - }, - "5039": { - "accessible_scopes": [ - "__main__", - "__main__", - "__wrappers__", - "__wrappers__.transferFrom" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 110, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/external/transferFrom/9684a85e93c782014ca14293edea4eb2502039a5a7b6538ecd39c56faaf12529.cairo" - }, - "parent_location": [ - { - "end_col": 45, - "end_line": 523, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "parent_location": [ - { - "end_col": 57, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/external/transferFrom/ebf9f2690eeffee22f3d99ab5430147a11d0a2aa047472f5b737d6d09ce13c6e.cairo" - }, - "parent_location": [ - { - "end_col": 18, - "end_line": 523, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "start_col": 6, - "start_line": 523 - }, - "While constructing the external wrapper for:" - ], - "start_col": 45, - "start_line": 1 - }, - "While expanding the reference 'pedersen_ptr' in:" - ], - "start_col": 19, - "start_line": 523 - }, - "While constructing the external wrapper for:" - ], - "start_col": 20, - "start_line": 1 - } - }, - "5040": { - "accessible_scopes": [ - "__main__", - "__main__", - "__wrappers__", - "__wrappers__.transferFrom" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 64, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/external/transferFrom/b2c52ca2d2a8fc8791a983086d8716c5eacd0c3d62934914d2286f84b98ff4cb.cairo" - }, - "parent_location": [ - { - "end_col": 65, - "end_line": 523, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "parent_location": [ - { - "end_col": 82, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/external/transferFrom/ebf9f2690eeffee22f3d99ab5430147a11d0a2aa047472f5b737d6d09ce13c6e.cairo" - }, - "parent_location": [ - { - "end_col": 18, - "end_line": 523, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "start_col": 6, - "start_line": 523 - }, - "While constructing the external wrapper for:" - ], - "start_col": 71, - "start_line": 1 - }, - "While expanding the reference 'syscall_ptr' in:" - ], - "start_col": 47, - "start_line": 523 - }, - "While constructing the external wrapper for:" - ], - "start_col": 19, - "start_line": 1 - } - }, - "5041": { - "accessible_scopes": [ - "__main__", - "__main__", - "__wrappers__", - "__wrappers__.transferFrom" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 67, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/external/transferFrom/741ea357d6336b0bed7bf0472425acd0311d543883b803388880e60a232040c7.cairo" - }, - "parent_location": [ - { - "end_col": 82, - "end_line": 523, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "parent_location": [ - { - "end_col": 115, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/external/transferFrom/ebf9f2690eeffee22f3d99ab5430147a11d0a2aa047472f5b737d6d09ce13c6e.cairo" - }, - "parent_location": [ - { - "end_col": 18, - "end_line": 523, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "start_col": 6, - "start_line": 523 - }, - "While constructing the external wrapper for:" - ], - "start_col": 100, - "start_line": 1 - }, - "While expanding the reference 'range_check_ptr' in:" - ], - "start_col": 67, - "start_line": 523 - }, - "While constructing the external wrapper for:" - ], - "start_col": 23, - "start_line": 1 - } - }, - "5042": { - "accessible_scopes": [ - "__main__", - "__main__", - "__wrappers__", - "__wrappers__.transferFrom" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 44, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/arg_processor/df39236eab78c921af48d719316dc25209f5ba97dc94936a936f353a674f3486.cairo" - }, - "parent_location": [ - { - "end_col": 16, - "end_line": 524, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "parent_location": [ - { - "end_col": 143, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/external/transferFrom/ebf9f2690eeffee22f3d99ab5430147a11d0a2aa047472f5b737d6d09ce13c6e.cairo" - }, - "parent_location": [ - { - "end_col": 18, - "end_line": 523, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "start_col": 6, - "start_line": 523 - }, - "While constructing the external wrapper for:" - ], - "start_col": 123, - "start_line": 1 - }, - "While expanding the reference '__calldata_arg_from_' in:" - ], - "start_col": 5, - "start_line": 524 - }, - "While handling calldata argument 'from_'" - ], - "start_col": 28, - "start_line": 1 - } - }, - "5043": { - "accessible_scopes": [ - "__main__", - "__main__", - "__wrappers__", - "__wrappers__.transferFrom" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 41, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/arg_processor/dceaabc265216c0ff87c509d90446554648ec4d692c521cda952464d1fc22972.cairo" - }, - "parent_location": [ - { - "end_col": 26, - "end_line": 524, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "parent_location": [ - { - "end_col": 165, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/external/transferFrom/ebf9f2690eeffee22f3d99ab5430147a11d0a2aa047472f5b737d6d09ce13c6e.cairo" - }, - "parent_location": [ - { - "end_col": 18, - "end_line": 523, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "start_col": 6, - "start_line": 523 - }, - "While constructing the external wrapper for:" - ], - "start_col": 148, - "start_line": 1 - }, - "While expanding the reference '__calldata_arg_to' in:" - ], - "start_col": 18, - "start_line": 524 - }, - "While handling calldata argument 'to'" - ], - "start_col": 25, - "start_line": 1 - } - }, - "5044": { - "accessible_scopes": [ - "__main__", - "__main__", - "__wrappers__", - "__wrappers__.transferFrom" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 67, - "end_line": 2, - "input_file": { - "filename": "autogen/starknet/arg_processor/60c79ef5477686f2843e61432dcde7f4fc0f354d42095115ea9dca625a35df6e.cairo" - }, - "parent_location": [ - { - "end_col": 44, - "end_line": 524, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "parent_location": [ - { - "end_col": 197, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/external/transferFrom/ebf9f2690eeffee22f3d99ab5430147a11d0a2aa047472f5b737d6d09ce13c6e.cairo" - }, - "parent_location": [ - { - "end_col": 18, - "end_line": 523, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "start_col": 6, - "start_line": 523 - }, - "While constructing the external wrapper for:" - ], - "start_col": 175, - "start_line": 1 - }, - "While expanding the reference '__calldata_arg_tokenId' in:" - ], - "start_col": 28, - "start_line": 524 - }, - "While handling calldata argument 'tokenId'" - ], - "start_col": 30, - "start_line": 1 - } - }, - "5045": { - "accessible_scopes": [ - "__main__", - "__main__", - "__wrappers__", - "__wrappers__.transferFrom" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 67, - "end_line": 2, - "input_file": { - "filename": "autogen/starknet/arg_processor/60c79ef5477686f2843e61432dcde7f4fc0f354d42095115ea9dca625a35df6e.cairo" - }, - "parent_location": [ - { - "end_col": 44, - "end_line": 524, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "parent_location": [ - { - "end_col": 197, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/external/transferFrom/ebf9f2690eeffee22f3d99ab5430147a11d0a2aa047472f5b737d6d09ce13c6e.cairo" - }, - "parent_location": [ - { - "end_col": 18, - "end_line": 523, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "start_col": 6, - "start_line": 523 - }, - "While constructing the external wrapper for:" - ], - "start_col": 175, - "start_line": 1 - }, - "While expanding the reference '__calldata_arg_tokenId' in:" - ], - "start_col": 28, - "start_line": 524 - }, - "While handling calldata argument 'tokenId'" - ], - "start_col": 30, - "start_line": 1 - } - }, - "5046": { - "accessible_scopes": [ - "__main__", - "__main__", - "__wrappers__", - "__wrappers__.transferFrom" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 18, - "end_line": 523, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "start_col": 6, - "start_line": 523 - } - }, - "5048": { - "accessible_scopes": [ - "__main__", - "__main__", - "__wrappers__", - "__wrappers__.transferFrom" - ], - "flow_tracking_data": null, - "hints": [ - { - "location": { - "end_col": 34, - "end_line": 2, - "input_file": { - "filename": "autogen/starknet/external/transferFrom/ebf9f2690eeffee22f3d99ab5430147a11d0a2aa047472f5b737d6d09ce13c6e.cairo" - }, - "parent_location": [ - { - "end_col": 18, - "end_line": 523, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "start_col": 6, - "start_line": 523 - }, - "While constructing the external wrapper for:" - ], - "start_col": 1, - "start_line": 2 - }, - "n_prefix_newlines": 0 - } - ], - "inst": { - "end_col": 24, - "end_line": 3, - "input_file": { - "filename": "autogen/starknet/external/transferFrom/ebf9f2690eeffee22f3d99ab5430147a11d0a2aa047472f5b737d6d09ce13c6e.cairo" - }, - "parent_location": [ - { - "end_col": 18, - "end_line": 523, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "start_col": 6, - "start_line": 523 - }, - "While constructing the external wrapper for:" - ], - "start_col": 1, - "start_line": 3 - } - }, - "5050": { - "accessible_scopes": [ - "__main__", - "__main__", - "__wrappers__", - "__wrappers__.transferFrom" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 82, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/external/transferFrom/ebf9f2690eeffee22f3d99ab5430147a11d0a2aa047472f5b737d6d09ce13c6e.cairo" - }, - "parent_location": [ - { - "end_col": 18, - "end_line": 523, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "parent_location": [ - { - "end_col": 20, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/external/transferFrom/da17921a4e81c09e730800bbf23bfdbe5e9e6bfaedc59d80fbf62087fa43c27d.cairo" - }, - "parent_location": [ - { - "end_col": 18, - "end_line": 523, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "start_col": 6, - "start_line": 523 - }, - "While constructing the external wrapper for:" - ], - "start_col": 9, - "start_line": 1 - }, - "While expanding the reference 'syscall_ptr' in:" - ], - "start_col": 6, - "start_line": 523 - }, - "While constructing the external wrapper for:" - ], - "start_col": 71, - "start_line": 1 - } - }, - "5051": { - "accessible_scopes": [ - "__main__", - "__main__", - "__wrappers__", - "__wrappers__.transferFrom" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 57, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/external/transferFrom/ebf9f2690eeffee22f3d99ab5430147a11d0a2aa047472f5b737d6d09ce13c6e.cairo" - }, - "parent_location": [ - { - "end_col": 18, - "end_line": 523, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "parent_location": [ - { - "end_col": 33, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/external/transferFrom/da17921a4e81c09e730800bbf23bfdbe5e9e6bfaedc59d80fbf62087fa43c27d.cairo" - }, - "parent_location": [ - { - "end_col": 18, - "end_line": 523, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "start_col": 6, - "start_line": 523 - }, - "While constructing the external wrapper for:" - ], - "start_col": 21, - "start_line": 1 - }, - "While expanding the reference 'pedersen_ptr' in:" - ], - "start_col": 6, - "start_line": 523 - }, - "While constructing the external wrapper for:" - ], - "start_col": 45, - "start_line": 1 - } - }, - "5052": { - "accessible_scopes": [ - "__main__", - "__main__", - "__wrappers__", - "__wrappers__.transferFrom" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 115, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/external/transferFrom/ebf9f2690eeffee22f3d99ab5430147a11d0a2aa047472f5b737d6d09ce13c6e.cairo" - }, - "parent_location": [ - { - "end_col": 18, - "end_line": 523, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "parent_location": [ - { - "end_col": 49, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/external/transferFrom/da17921a4e81c09e730800bbf23bfdbe5e9e6bfaedc59d80fbf62087fa43c27d.cairo" - }, - "parent_location": [ - { - "end_col": 18, - "end_line": 523, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "start_col": 6, - "start_line": 523 - }, - "While constructing the external wrapper for:" - ], - "start_col": 34, - "start_line": 1 - }, - "While expanding the reference 'range_check_ptr' in:" - ], - "start_col": 6, - "start_line": 523 - }, - "While constructing the external wrapper for:" - ], - "start_col": 100, - "start_line": 1 - } - }, - "5053": { - "accessible_scopes": [ - "__main__", - "__main__", - "__wrappers__", - "__wrappers__.transferFrom" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 21, - "end_line": 4, - "input_file": { - "filename": "autogen/starknet/external/transferFrom/ebf9f2690eeffee22f3d99ab5430147a11d0a2aa047472f5b737d6d09ce13c6e.cairo" - }, - "parent_location": [ - { - "end_col": 18, - "end_line": 523, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "parent_location": [ - { - "end_col": 62, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/external/transferFrom/da17921a4e81c09e730800bbf23bfdbe5e9e6bfaedc59d80fbf62087fa43c27d.cairo" - }, - "parent_location": [ - { - "end_col": 18, - "end_line": 523, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "start_col": 6, - "start_line": 523 - }, - "While constructing the external wrapper for:" - ], - "start_col": 50, - "start_line": 1 - }, - "While expanding the reference 'retdata_size' in:" - ], - "start_col": 6, - "start_line": 523 - }, - "While constructing the external wrapper for:" - ], - "start_col": 20, - "start_line": 4 - } - }, - "5055": { - "accessible_scopes": [ - "__main__", - "__main__", - "__wrappers__", - "__wrappers__.transferFrom" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 16, - "end_line": 3, - "input_file": { - "filename": "autogen/starknet/external/transferFrom/ebf9f2690eeffee22f3d99ab5430147a11d0a2aa047472f5b737d6d09ce13c6e.cairo" - }, - "parent_location": [ - { - "end_col": 18, - "end_line": 523, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "parent_location": [ - { - "end_col": 70, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/external/transferFrom/da17921a4e81c09e730800bbf23bfdbe5e9e6bfaedc59d80fbf62087fa43c27d.cairo" - }, - "parent_location": [ - { - "end_col": 18, - "end_line": 523, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "start_col": 6, - "start_line": 523 - }, - "While constructing the external wrapper for:" - ], - "start_col": 63, - "start_line": 1 - }, - "While expanding the reference 'retdata' in:" - ], - "start_col": 6, - "start_line": 523 - }, - "While constructing the external wrapper for:" - ], - "start_col": 9, - "start_line": 3 - } - }, - "5056": { - "accessible_scopes": [ - "__main__", - "__main__", - "__wrappers__", - "__wrappers__.transferFrom" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 72, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/external/transferFrom/da17921a4e81c09e730800bbf23bfdbe5e9e6bfaedc59d80fbf62087fa43c27d.cairo" - }, - "parent_location": [ - { - "end_col": 18, - "end_line": 523, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "start_col": 6, - "start_line": 523 - }, - "While constructing the external wrapper for:" - ], - "start_col": 1, - "start_line": 1 - } - }, - "5057": { - "accessible_scopes": [ - "__main__", - "__main__", - "__main__.safeTransferFrom" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 49, - "end_line": 531, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "parent_location": [ - { - "end_col": 55, - "end_line": 101, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" - }, - "parent_location": [ - { - "end_col": 76, - "end_line": 534, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "start_col": 5, - "start_line": 534 - }, - "While trying to retrieve the implicit argument 'pedersen_ptr' in:" - ], - "start_col": 29, - "start_line": 101 - }, - "While expanding the reference 'pedersen_ptr' in:" - ], - "start_col": 23, - "start_line": 531 - } - }, - "5058": { - "accessible_scopes": [ - "__main__", - "__main__", - "__main__.safeTransferFrom" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 69, - "end_line": 531, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "parent_location": [ - { - "end_col": 75, - "end_line": 101, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" - }, - "parent_location": [ - { - "end_col": 76, - "end_line": 534, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "start_col": 5, - "start_line": 534 - }, - "While trying to retrieve the implicit argument 'syscall_ptr' in:" - ], - "start_col": 57, - "start_line": 101 - }, - "While expanding the reference 'syscall_ptr' in:" - ], - "start_col": 51, - "start_line": 531 - } - }, - "5059": { - "accessible_scopes": [ - "__main__", - "__main__", - "__main__.safeTransferFrom" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 86, - "end_line": 531, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "parent_location": [ - { - "end_col": 92, - "end_line": 101, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" - }, - "parent_location": [ - { - "end_col": 76, - "end_line": 534, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "start_col": 5, - "start_line": 534 - }, - "While trying to retrieve the implicit argument 'range_check_ptr' in:" - ], - "start_col": 77, - "start_line": 101 - }, - "While expanding the reference 'range_check_ptr' in:" - ], - "start_col": 71, - "start_line": 531 - } - }, - "5060": { - "accessible_scopes": [ - "__main__", - "__main__", - "__main__.safeTransferFrom" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 16, - "end_line": 532, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "parent_location": [ - { - "end_col": 46, - "end_line": 534, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "start_col": 41, - "start_line": 534 - }, - "While expanding the reference 'from_' in:" - ], - "start_col": 5, - "start_line": 532 - } - }, - "5061": { - "accessible_scopes": [ - "__main__", - "__main__", - "__main__.safeTransferFrom" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 26, - "end_line": 532, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "parent_location": [ - { - "end_col": 50, - "end_line": 534, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "start_col": 48, - "start_line": 534 - }, - "While expanding the reference 'to' in:" - ], - "start_col": 18, - "start_line": 532 - } - }, - "5062": { - "accessible_scopes": [ - "__main__", - "__main__", - "__main__.safeTransferFrom" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 44, - "end_line": 532, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "parent_location": [ - { - "end_col": 59, - "end_line": 534, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "start_col": 52, - "start_line": 534 - }, - "While expanding the reference 'tokenId' in:" - ], - "start_col": 28, - "start_line": 532 - } - }, - "5063": { - "accessible_scopes": [ - "__main__", - "__main__", - "__main__.safeTransferFrom" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 44, - "end_line": 532, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "parent_location": [ - { - "end_col": 59, - "end_line": 534, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "start_col": 52, - "start_line": 534 - }, - "While expanding the reference 'tokenId' in:" - ], - "start_col": 28, - "start_line": 532 - } - }, - "5064": { - "accessible_scopes": [ - "__main__", - "__main__", - "__main__.safeTransferFrom" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 60, - "end_line": 532, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "parent_location": [ - { - "end_col": 69, - "end_line": 534, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "start_col": 61, - "start_line": 534 - }, - "While expanding the reference 'data_len' in:" - ], - "start_col": 46, - "start_line": 532 - } - }, - "5065": { - "accessible_scopes": [ - "__main__", - "__main__", - "__main__.safeTransferFrom" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 73, - "end_line": 532, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "parent_location": [ - { - "end_col": 75, - "end_line": 534, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "start_col": 71, - "start_line": 534 - }, - "While expanding the reference 'data' in:" - ], - "start_col": 62, - "start_line": 532 - } - }, - "5066": { - "accessible_scopes": [ - "__main__", - "__main__", - "__main__.safeTransferFrom" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 76, - "end_line": 534, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "start_col": 5, - "start_line": 534 - } - }, - "5068": { - "accessible_scopes": [ - "__main__", - "__main__", - "__main__.safeTransferFrom" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 15, - "end_line": 535, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "start_col": 5, - "start_line": 535 - } - }, - "5069": { - "accessible_scopes": [ - "__main__", - "__main__", - "__wrappers__", - "__wrappers__.safeTransferFrom" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 67, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/external/safeTransferFrom/741ea357d6336b0bed7bf0472425acd0311d543883b803388880e60a232040c7.cairo" - }, - "parent_location": [ - { - "end_col": 86, - "end_line": 531, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "parent_location": [ - { - "end_col": 24, - "end_line": 2, - "input_file": { - "filename": "autogen/starknet/arg_processor/e0af26f9fbe513562e2133164d694cbff092c47bbb4efa182711421f0c0cc5d3.cairo" - }, - "parent_location": [ - { - "end_col": 73, - "end_line": 532, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "start_col": 62, - "start_line": 532 - }, - "While handling calldata argument 'data'" - ], - "start_col": 9, - "start_line": 2 - }, - "While expanding the reference 'range_check_ptr' in:" - ], - "start_col": 71, - "start_line": 531 - }, - "While constructing the external wrapper for:" - ], - "start_col": 23, - "start_line": 1 - } - }, - "5070": { - "accessible_scopes": [ - "__main__", - "__main__", - "__wrappers__", - "__wrappers__.safeTransferFrom" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 47, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/arg_processor/4f1f3aa0a6fec21a155d7e953cd34daa7ca48450bbb80f627eb4f8df9f25922a.cairo" - }, - "parent_location": [ - { - "end_col": 60, - "end_line": 532, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "parent_location": [ - { - "end_col": 51, - "end_line": 2, - "input_file": { - "filename": "autogen/starknet/arg_processor/e0af26f9fbe513562e2133164d694cbff092c47bbb4efa182711421f0c0cc5d3.cairo" - }, - "parent_location": [ - { - "end_col": 73, - "end_line": 532, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "start_col": 62, - "start_line": 532 - }, - "While handling calldata argument 'data'" - ], - "start_col": 28, - "start_line": 2 - }, - "While expanding the reference '__calldata_arg_data_len' in:" - ], - "start_col": 46, - "start_line": 532 - }, - "While handling calldata argument 'data_len'" - ], - "start_col": 31, - "start_line": 1 - } - }, - "5071": { - "accessible_scopes": [ - "__main__", - "__main__", - "__wrappers__", - "__wrappers__.safeTransferFrom" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 52, - "end_line": 2, - "input_file": { - "filename": "autogen/starknet/arg_processor/e0af26f9fbe513562e2133164d694cbff092c47bbb4efa182711421f0c0cc5d3.cairo" - }, - "parent_location": [ - { - "end_col": 73, - "end_line": 532, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "start_col": 62, - "start_line": 532 - }, - "While handling calldata argument 'data'" - ], - "start_col": 1, - "start_line": 2 - } - }, - "5072": { - "accessible_scopes": [ - "__main__", - "__main__", - "__wrappers__", - "__wrappers__.safeTransferFrom" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 40, - "end_line": 2, - "input_file": { - "filename": "autogen/starknet/arg_processor/4f1f3aa0a6fec21a155d7e953cd34daa7ca48450bbb80f627eb4f8df9f25922a.cairo" - }, - "parent_location": [ - { - "end_col": 60, - "end_line": 532, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "parent_location": [ - { - "end_col": 40, - "end_line": 8, - "input_file": { - "filename": "autogen/starknet/arg_processor/e0af26f9fbe513562e2133164d694cbff092c47bbb4efa182711421f0c0cc5d3.cairo" - }, - "parent_location": [ - { - "end_col": 73, - "end_line": 532, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "start_col": 62, - "start_line": 532 - }, - "While handling calldata argument 'data'" - ], - "start_col": 26, - "start_line": 8 - }, - "While expanding the reference '__calldata_ptr' in:" - ], - "start_col": 46, - "start_line": 532 - }, - "While handling calldata argument 'data_len'" - ], - "start_col": 22, - "start_line": 2 - } - }, - "5074": { - "accessible_scopes": [ - "__main__", - "__main__", - "__wrappers__", - "__wrappers__.safeTransferFrom" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 47, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/arg_processor/4f1f3aa0a6fec21a155d7e953cd34daa7ca48450bbb80f627eb4f8df9f25922a.cairo" - }, - "parent_location": [ - { - "end_col": 60, - "end_line": 532, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "parent_location": [ - { - "end_col": 66, - "end_line": 8, - "input_file": { - "filename": "autogen/starknet/arg_processor/e0af26f9fbe513562e2133164d694cbff092c47bbb4efa182711421f0c0cc5d3.cairo" - }, - "parent_location": [ - { - "end_col": 73, - "end_line": 532, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "start_col": 62, - "start_line": 532 - }, - "While handling calldata argument 'data'" - ], - "start_col": 43, - "start_line": 8 - }, - "While expanding the reference '__calldata_arg_data_len' in:" - ], - "start_col": 46, - "start_line": 532 - }, - "While handling calldata argument 'data_len'" - ], - "start_col": 31, - "start_line": 1 - } - }, - "5075": { - "accessible_scopes": [ - "__main__", - "__main__", - "__wrappers__", - "__wrappers__.safeTransferFrom" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 70, - "end_line": 8, - "input_file": { - "filename": "autogen/starknet/arg_processor/e0af26f9fbe513562e2133164d694cbff092c47bbb4efa182711421f0c0cc5d3.cairo" - }, - "parent_location": [ - { - "end_col": 73, - "end_line": 532, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "start_col": 62, - "start_line": 532 - }, - "While handling calldata argument 'data'" - ], - "start_col": 26, - "start_line": 8 - } - }, - "5076": { - "accessible_scopes": [ - "__main__", - "__main__", - "__wrappers__", - "__wrappers__.safeTransferFrom" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 58, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/arg_processor/01cba52f8515996bb9d7070bde81ff39281d096d7024a558efcba6e1fd2402cf.cairo" - }, - "parent_location": [ - { - "end_col": 22, - "end_line": 531, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "start_col": 6, - "start_line": 531 - }, - "While handling calldata of" - ], - "start_col": 1, - "start_line": 1 - } - }, - "5077": { - "accessible_scopes": [ - "__main__", - "__main__", - "__wrappers__", - "__wrappers__.safeTransferFrom" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 67, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/external/safeTransferFrom/741ea357d6336b0bed7bf0472425acd0311d543883b803388880e60a232040c7.cairo" - }, - "parent_location": [ - { - "end_col": 86, - "end_line": 531, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "parent_location": [ - { - "end_col": 38, - "end_line": 3, - "input_file": { - "filename": "autogen/starknet/arg_processor/e0af26f9fbe513562e2133164d694cbff092c47bbb4efa182711421f0c0cc5d3.cairo" - }, - "parent_location": [ - { - "end_col": 73, - "end_line": 532, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "parent_location": [ - { - "end_col": 115, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/external/safeTransferFrom/2b49474f1011f9d58397f6c4fb411d470fd935a4210c29898caaad0c7ad72623.cairo" - }, - "parent_location": [ - { - "end_col": 22, - "end_line": 531, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "start_col": 6, - "start_line": 531 - }, - "While constructing the external wrapper for:" - ], - "start_col": 100, - "start_line": 1 - }, - "While expanding the reference 'range_check_ptr' in:" - ], - "start_col": 62, - "start_line": 532 - }, - "While handling calldata argument 'data'" - ], - "start_col": 23, - "start_line": 3 - }, - "While expanding the reference 'range_check_ptr' in:" - ], - "start_col": 71, - "start_line": 531 - }, - "While constructing the external wrapper for:" - ], - "start_col": 23, - "start_line": 1 - } - }, - "5078": { - "accessible_scopes": [ - "__main__", - "__main__", - "__wrappers__", - "__wrappers__.safeTransferFrom" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 110, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/external/safeTransferFrom/9684a85e93c782014ca14293edea4eb2502039a5a7b6538ecd39c56faaf12529.cairo" - }, - "parent_location": [ - { - "end_col": 49, - "end_line": 531, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "parent_location": [ - { - "end_col": 57, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/external/safeTransferFrom/2b49474f1011f9d58397f6c4fb411d470fd935a4210c29898caaad0c7ad72623.cairo" - }, - "parent_location": [ - { - "end_col": 22, - "end_line": 531, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "start_col": 6, - "start_line": 531 - }, - "While constructing the external wrapper for:" - ], - "start_col": 45, - "start_line": 1 - }, - "While expanding the reference 'pedersen_ptr' in:" - ], - "start_col": 23, - "start_line": 531 - }, - "While constructing the external wrapper for:" - ], - "start_col": 20, - "start_line": 1 - } - }, - "5079": { - "accessible_scopes": [ - "__main__", - "__main__", - "__wrappers__", - "__wrappers__.safeTransferFrom" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 64, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/external/safeTransferFrom/b2c52ca2d2a8fc8791a983086d8716c5eacd0c3d62934914d2286f84b98ff4cb.cairo" - }, - "parent_location": [ - { - "end_col": 69, - "end_line": 531, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "parent_location": [ - { - "end_col": 82, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/external/safeTransferFrom/2b49474f1011f9d58397f6c4fb411d470fd935a4210c29898caaad0c7ad72623.cairo" - }, - "parent_location": [ - { - "end_col": 22, - "end_line": 531, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "start_col": 6, - "start_line": 531 - }, - "While constructing the external wrapper for:" - ], - "start_col": 71, - "start_line": 1 - }, - "While expanding the reference 'syscall_ptr' in:" - ], - "start_col": 51, - "start_line": 531 - }, - "While constructing the external wrapper for:" - ], - "start_col": 19, - "start_line": 1 - } - }, - "5080": { - "accessible_scopes": [ - "__main__", - "__main__", - "__wrappers__", - "__wrappers__.safeTransferFrom" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 42, - "end_line": 3, - "input_file": { - "filename": "autogen/starknet/arg_processor/e0af26f9fbe513562e2133164d694cbff092c47bbb4efa182711421f0c0cc5d3.cairo" - }, - "parent_location": [ - { - "end_col": 73, - "end_line": 532, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "parent_location": [ - { - "end_col": 115, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/external/safeTransferFrom/2b49474f1011f9d58397f6c4fb411d470fd935a4210c29898caaad0c7ad72623.cairo" - }, - "parent_location": [ - { - "end_col": 22, - "end_line": 531, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "start_col": 6, - "start_line": 531 - }, - "While constructing the external wrapper for:" - ], - "start_col": 100, - "start_line": 1 - }, - "While expanding the reference 'range_check_ptr' in:" - ], - "start_col": 62, - "start_line": 532 - }, - "While handling calldata argument 'data'" - ], - "start_col": 23, - "start_line": 3 - } - }, - "5082": { - "accessible_scopes": [ - "__main__", - "__main__", - "__wrappers__", - "__wrappers__.safeTransferFrom" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 44, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/arg_processor/df39236eab78c921af48d719316dc25209f5ba97dc94936a936f353a674f3486.cairo" - }, - "parent_location": [ - { - "end_col": 16, - "end_line": 532, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "parent_location": [ - { - "end_col": 143, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/external/safeTransferFrom/2b49474f1011f9d58397f6c4fb411d470fd935a4210c29898caaad0c7ad72623.cairo" - }, - "parent_location": [ - { - "end_col": 22, - "end_line": 531, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "start_col": 6, - "start_line": 531 - }, - "While constructing the external wrapper for:" - ], - "start_col": 123, - "start_line": 1 - }, - "While expanding the reference '__calldata_arg_from_' in:" - ], - "start_col": 5, - "start_line": 532 - }, - "While handling calldata argument 'from_'" - ], - "start_col": 28, - "start_line": 1 - } - }, - "5083": { - "accessible_scopes": [ - "__main__", - "__main__", - "__wrappers__", - "__wrappers__.safeTransferFrom" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 41, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/arg_processor/dceaabc265216c0ff87c509d90446554648ec4d692c521cda952464d1fc22972.cairo" - }, - "parent_location": [ - { - "end_col": 26, - "end_line": 532, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "parent_location": [ - { - "end_col": 165, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/external/safeTransferFrom/2b49474f1011f9d58397f6c4fb411d470fd935a4210c29898caaad0c7ad72623.cairo" - }, - "parent_location": [ - { - "end_col": 22, - "end_line": 531, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "start_col": 6, - "start_line": 531 - }, - "While constructing the external wrapper for:" - ], - "start_col": 148, - "start_line": 1 - }, - "While expanding the reference '__calldata_arg_to' in:" - ], - "start_col": 18, - "start_line": 532 - }, - "While handling calldata argument 'to'" - ], - "start_col": 25, - "start_line": 1 - } - }, - "5084": { - "accessible_scopes": [ - "__main__", - "__main__", - "__wrappers__", - "__wrappers__.safeTransferFrom" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 67, - "end_line": 2, - "input_file": { - "filename": "autogen/starknet/arg_processor/60c79ef5477686f2843e61432dcde7f4fc0f354d42095115ea9dca625a35df6e.cairo" - }, - "parent_location": [ - { - "end_col": 44, - "end_line": 532, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "parent_location": [ - { - "end_col": 197, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/external/safeTransferFrom/2b49474f1011f9d58397f6c4fb411d470fd935a4210c29898caaad0c7ad72623.cairo" - }, - "parent_location": [ - { - "end_col": 22, - "end_line": 531, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "start_col": 6, - "start_line": 531 - }, - "While constructing the external wrapper for:" - ], - "start_col": 175, - "start_line": 1 - }, - "While expanding the reference '__calldata_arg_tokenId' in:" - ], - "start_col": 28, - "start_line": 532 - }, - "While handling calldata argument 'tokenId'" - ], - "start_col": 30, - "start_line": 1 - } - }, - "5085": { - "accessible_scopes": [ - "__main__", - "__main__", - "__wrappers__", - "__wrappers__.safeTransferFrom" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 67, - "end_line": 2, - "input_file": { - "filename": "autogen/starknet/arg_processor/60c79ef5477686f2843e61432dcde7f4fc0f354d42095115ea9dca625a35df6e.cairo" - }, - "parent_location": [ - { - "end_col": 44, - "end_line": 532, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "parent_location": [ - { - "end_col": 197, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/external/safeTransferFrom/2b49474f1011f9d58397f6c4fb411d470fd935a4210c29898caaad0c7ad72623.cairo" - }, - "parent_location": [ - { - "end_col": 22, - "end_line": 531, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "start_col": 6, - "start_line": 531 - }, - "While constructing the external wrapper for:" - ], - "start_col": 175, - "start_line": 1 - }, - "While expanding the reference '__calldata_arg_tokenId' in:" - ], - "start_col": 28, - "start_line": 532 - }, - "While handling calldata argument 'tokenId'" - ], - "start_col": 30, - "start_line": 1 - } - }, - "5086": { - "accessible_scopes": [ - "__main__", - "__main__", - "__wrappers__", - "__wrappers__.safeTransferFrom" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 47, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/arg_processor/4f1f3aa0a6fec21a155d7e953cd34daa7ca48450bbb80f627eb4f8df9f25922a.cairo" - }, - "parent_location": [ - { - "end_col": 60, - "end_line": 532, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "parent_location": [ - { - "end_col": 231, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/external/safeTransferFrom/2b49474f1011f9d58397f6c4fb411d470fd935a4210c29898caaad0c7ad72623.cairo" - }, - "parent_location": [ - { - "end_col": 22, - "end_line": 531, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "start_col": 6, - "start_line": 531 - }, - "While constructing the external wrapper for:" - ], - "start_col": 208, - "start_line": 1 - }, - "While expanding the reference '__calldata_arg_data_len' in:" - ], - "start_col": 46, - "start_line": 532 - }, - "While handling calldata argument 'data_len'" - ], - "start_col": 31, - "start_line": 1 - } - }, - "5087": { - "accessible_scopes": [ - "__main__", - "__main__", - "__wrappers__", - "__wrappers__.safeTransferFrom" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 54, - "end_line": 5, - "input_file": { - "filename": "autogen/starknet/arg_processor/e0af26f9fbe513562e2133164d694cbff092c47bbb4efa182711421f0c0cc5d3.cairo" - }, - "parent_location": [ - { - "end_col": 73, - "end_line": 532, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "parent_location": [ - { - "end_col": 257, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/external/safeTransferFrom/2b49474f1011f9d58397f6c4fb411d470fd935a4210c29898caaad0c7ad72623.cairo" - }, - "parent_location": [ - { - "end_col": 22, - "end_line": 531, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "start_col": 6, - "start_line": 531 - }, - "While constructing the external wrapper for:" - ], - "start_col": 238, - "start_line": 1 - }, - "While expanding the reference '__calldata_arg_data' in:" - ], - "start_col": 62, - "start_line": 532 - }, - "While handling calldata argument 'data'" - ], - "start_col": 27, - "start_line": 5 - } - }, - "5089": { - "accessible_scopes": [ - "__main__", - "__main__", - "__wrappers__", - "__wrappers__.safeTransferFrom" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 22, - "end_line": 531, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "start_col": 6, - "start_line": 531 - } - }, - "5091": { - "accessible_scopes": [ - "__main__", - "__main__", - "__wrappers__", - "__wrappers__.safeTransferFrom" - ], - "flow_tracking_data": null, - "hints": [ - { - "location": { - "end_col": 34, - "end_line": 2, - "input_file": { - "filename": "autogen/starknet/external/safeTransferFrom/2b49474f1011f9d58397f6c4fb411d470fd935a4210c29898caaad0c7ad72623.cairo" - }, - "parent_location": [ - { - "end_col": 22, - "end_line": 531, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "start_col": 6, - "start_line": 531 - }, - "While constructing the external wrapper for:" - ], - "start_col": 1, - "start_line": 2 - }, - "n_prefix_newlines": 0 - } - ], - "inst": { - "end_col": 24, - "end_line": 3, - "input_file": { - "filename": "autogen/starknet/external/safeTransferFrom/2b49474f1011f9d58397f6c4fb411d470fd935a4210c29898caaad0c7ad72623.cairo" - }, - "parent_location": [ - { - "end_col": 22, - "end_line": 531, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "start_col": 6, - "start_line": 531 - }, - "While constructing the external wrapper for:" - ], - "start_col": 1, - "start_line": 3 - } - }, - "5093": { - "accessible_scopes": [ - "__main__", - "__main__", - "__wrappers__", - "__wrappers__.safeTransferFrom" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 82, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/external/safeTransferFrom/2b49474f1011f9d58397f6c4fb411d470fd935a4210c29898caaad0c7ad72623.cairo" - }, - "parent_location": [ - { - "end_col": 22, - "end_line": 531, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "parent_location": [ - { - "end_col": 20, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/external/safeTransferFrom/da17921a4e81c09e730800bbf23bfdbe5e9e6bfaedc59d80fbf62087fa43c27d.cairo" - }, - "parent_location": [ - { - "end_col": 22, - "end_line": 531, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "start_col": 6, - "start_line": 531 - }, - "While constructing the external wrapper for:" - ], - "start_col": 9, - "start_line": 1 - }, - "While expanding the reference 'syscall_ptr' in:" - ], - "start_col": 6, - "start_line": 531 - }, - "While constructing the external wrapper for:" - ], - "start_col": 71, - "start_line": 1 - } - }, - "5094": { - "accessible_scopes": [ - "__main__", - "__main__", - "__wrappers__", - "__wrappers__.safeTransferFrom" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 57, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/external/safeTransferFrom/2b49474f1011f9d58397f6c4fb411d470fd935a4210c29898caaad0c7ad72623.cairo" - }, - "parent_location": [ - { - "end_col": 22, - "end_line": 531, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "parent_location": [ - { - "end_col": 33, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/external/safeTransferFrom/da17921a4e81c09e730800bbf23bfdbe5e9e6bfaedc59d80fbf62087fa43c27d.cairo" - }, - "parent_location": [ - { - "end_col": 22, - "end_line": 531, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "start_col": 6, - "start_line": 531 - }, - "While constructing the external wrapper for:" - ], - "start_col": 21, - "start_line": 1 - }, - "While expanding the reference 'pedersen_ptr' in:" - ], - "start_col": 6, - "start_line": 531 - }, - "While constructing the external wrapper for:" - ], - "start_col": 45, - "start_line": 1 - } - }, - "5095": { - "accessible_scopes": [ - "__main__", - "__main__", - "__wrappers__", - "__wrappers__.safeTransferFrom" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 115, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/external/safeTransferFrom/2b49474f1011f9d58397f6c4fb411d470fd935a4210c29898caaad0c7ad72623.cairo" - }, - "parent_location": [ - { - "end_col": 22, - "end_line": 531, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "parent_location": [ - { - "end_col": 49, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/external/safeTransferFrom/da17921a4e81c09e730800bbf23bfdbe5e9e6bfaedc59d80fbf62087fa43c27d.cairo" - }, - "parent_location": [ - { - "end_col": 22, - "end_line": 531, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "start_col": 6, - "start_line": 531 - }, - "While constructing the external wrapper for:" - ], - "start_col": 34, - "start_line": 1 - }, - "While expanding the reference 'range_check_ptr' in:" - ], - "start_col": 6, - "start_line": 531 - }, - "While constructing the external wrapper for:" - ], - "start_col": 100, - "start_line": 1 - } - }, - "5096": { - "accessible_scopes": [ - "__main__", - "__main__", - "__wrappers__", - "__wrappers__.safeTransferFrom" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 21, - "end_line": 4, - "input_file": { - "filename": "autogen/starknet/external/safeTransferFrom/2b49474f1011f9d58397f6c4fb411d470fd935a4210c29898caaad0c7ad72623.cairo" - }, - "parent_location": [ - { - "end_col": 22, - "end_line": 531, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "parent_location": [ - { - "end_col": 62, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/external/safeTransferFrom/da17921a4e81c09e730800bbf23bfdbe5e9e6bfaedc59d80fbf62087fa43c27d.cairo" - }, - "parent_location": [ - { - "end_col": 22, - "end_line": 531, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "start_col": 6, - "start_line": 531 - }, - "While constructing the external wrapper for:" - ], - "start_col": 50, - "start_line": 1 - }, - "While expanding the reference 'retdata_size' in:" - ], - "start_col": 6, - "start_line": 531 - }, - "While constructing the external wrapper for:" - ], - "start_col": 20, - "start_line": 4 - } - }, - "5098": { - "accessible_scopes": [ - "__main__", - "__main__", - "__wrappers__", - "__wrappers__.safeTransferFrom" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 16, - "end_line": 3, - "input_file": { - "filename": "autogen/starknet/external/safeTransferFrom/2b49474f1011f9d58397f6c4fb411d470fd935a4210c29898caaad0c7ad72623.cairo" - }, - "parent_location": [ - { - "end_col": 22, - "end_line": 531, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "parent_location": [ - { - "end_col": 70, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/external/safeTransferFrom/da17921a4e81c09e730800bbf23bfdbe5e9e6bfaedc59d80fbf62087fa43c27d.cairo" - }, - "parent_location": [ - { - "end_col": 22, - "end_line": 531, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "start_col": 6, - "start_line": 531 - }, - "While constructing the external wrapper for:" - ], - "start_col": 63, - "start_line": 1 - }, - "While expanding the reference 'retdata' in:" - ], - "start_col": 6, - "start_line": 531 - }, - "While constructing the external wrapper for:" - ], - "start_col": 9, - "start_line": 3 - } - }, - "5099": { - "accessible_scopes": [ - "__main__", - "__main__", - "__wrappers__", - "__wrappers__.safeTransferFrom" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 72, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/external/safeTransferFrom/da17921a4e81c09e730800bbf23bfdbe5e9e6bfaedc59d80fbf62087fa43c27d.cairo" - }, - "parent_location": [ - { - "end_col": 22, - "end_line": 531, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "start_col": 6, - "start_line": 531 - }, - "While constructing the external wrapper for:" - ], - "start_col": 1, - "start_line": 1 - } - }, - "5100": { - "accessible_scopes": [ - "__main__", - "__main__", - "__main__.mintOwner" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 62, - "end_line": 539, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "parent_location": [ - { - "end_col": 46, - "end_line": 40, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/access/ownable/library.cairo" - }, - "parent_location": [ - { - "end_col": 32, - "end_line": 542, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "start_col": 5, - "start_line": 542 - }, - "While trying to retrieve the implicit argument 'syscall_ptr' in:" - ], - "start_col": 28, - "start_line": 40 - }, - "While expanding the reference 'syscall_ptr' in:" - ], - "start_col": 44, - "start_line": 539 - } - }, - "5101": { - "accessible_scopes": [ - "__main__", - "__main__", - "__main__.mintOwner" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 42, - "end_line": 539, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "parent_location": [ - { - "end_col": 74, - "end_line": 40, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/access/ownable/library.cairo" - }, - "parent_location": [ - { - "end_col": 32, - "end_line": 542, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "start_col": 5, - "start_line": 542 - }, - "While trying to retrieve the implicit argument 'pedersen_ptr' in:" - ], - "start_col": 48, - "start_line": 40 - }, - "While expanding the reference 'pedersen_ptr' in:" - ], - "start_col": 16, - "start_line": 539 - } - }, - "5102": { - "accessible_scopes": [ - "__main__", - "__main__", - "__main__.mintOwner" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 79, - "end_line": 539, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "parent_location": [ - { - "end_col": 91, - "end_line": 40, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/access/ownable/library.cairo" - }, - "parent_location": [ - { - "end_col": 32, - "end_line": 542, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "start_col": 5, - "start_line": 542 - }, - "While trying to retrieve the implicit argument 'range_check_ptr' in:" - ], - "start_col": 76, - "start_line": 40 - }, - "While expanding the reference 'range_check_ptr' in:" - ], - "start_col": 64, - "start_line": 539 - } - }, - "5103": { - "accessible_scopes": [ - "__main__", - "__main__", - "__main__.mintOwner" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 32, - "end_line": 542, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "start_col": 5, - "start_line": 542 - } - }, - "5105": { - "accessible_scopes": [ - "__main__", - "__main__", - "__main__.mintOwner" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 74, - "end_line": 40, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/access/ownable/library.cairo" - }, - "parent_location": [ - { - "end_col": 32, - "end_line": 542, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "parent_location": [ - { - "end_col": 42, - "end_line": 114, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" - }, - "parent_location": [ - { - "end_col": 40, - "end_line": 543, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "start_col": 5, - "start_line": 543 - }, - "While trying to retrieve the implicit argument 'pedersen_ptr' in:" - ], - "start_col": 16, - "start_line": 114 - }, - "While expanding the reference 'pedersen_ptr' in:" - ], - "start_col": 5, - "start_line": 542 - }, - "While trying to update the implicit return value 'pedersen_ptr' in:" - ], - "start_col": 48, - "start_line": 40 - } - }, - "5106": { - "accessible_scopes": [ - "__main__", - "__main__", - "__main__.mintOwner" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 46, - "end_line": 40, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/access/ownable/library.cairo" - }, - "parent_location": [ - { - "end_col": 32, - "end_line": 542, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "parent_location": [ - { - "end_col": 62, - "end_line": 114, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" - }, - "parent_location": [ - { - "end_col": 40, - "end_line": 543, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "start_col": 5, - "start_line": 543 - }, - "While trying to retrieve the implicit argument 'syscall_ptr' in:" - ], - "start_col": 44, - "start_line": 114 - }, - "While expanding the reference 'syscall_ptr' in:" - ], - "start_col": 5, - "start_line": 542 - }, - "While trying to update the implicit return value 'syscall_ptr' in:" - ], - "start_col": 28, - "start_line": 40 - } - }, - "5107": { - "accessible_scopes": [ - "__main__", - "__main__", - "__main__.mintOwner" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 91, - "end_line": 40, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/access/ownable/library.cairo" - }, - "parent_location": [ - { - "end_col": 32, - "end_line": 542, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "parent_location": [ - { - "end_col": 79, - "end_line": 114, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" - }, - "parent_location": [ - { - "end_col": 40, - "end_line": 543, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "start_col": 5, - "start_line": 543 - }, - "While trying to retrieve the implicit argument 'range_check_ptr' in:" - ], - "start_col": 64, - "start_line": 114 - }, - "While expanding the reference 'range_check_ptr' in:" - ], - "start_col": 5, - "start_line": 542 - }, - "While trying to update the implicit return value 'range_check_ptr' in:" - ], - "start_col": 76, - "start_line": 40 - } - }, - "5108": { - "accessible_scopes": [ - "__main__", - "__main__", - "__main__.mintOwner" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 13, - "end_line": 540, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "parent_location": [ - { - "end_col": 30, - "end_line": 543, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "start_col": 28, - "start_line": 543 - }, - "While expanding the reference 'to' in:" - ], - "start_col": 5, - "start_line": 540 - } - }, - "5109": { - "accessible_scopes": [ - "__main__", - "__main__", - "__main__.mintOwner" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 31, - "end_line": 540, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "parent_location": [ - { - "end_col": 39, - "end_line": 543, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "start_col": 32, - "start_line": 543 - }, - "While expanding the reference 'tokenId' in:" - ], - "start_col": 15, - "start_line": 540 - } - }, - "5110": { - "accessible_scopes": [ - "__main__", - "__main__", - "__main__.mintOwner" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 31, - "end_line": 540, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "parent_location": [ - { - "end_col": 39, - "end_line": 543, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "start_col": 32, - "start_line": 543 - }, - "While expanding the reference 'tokenId' in:" - ], - "start_col": 15, - "start_line": 540 - } - }, - "5111": { - "accessible_scopes": [ - "__main__", - "__main__", - "__main__.mintOwner" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 40, - "end_line": 543, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "start_col": 5, - "start_line": 543 - } - }, - "5113": { - "accessible_scopes": [ - "__main__", - "__main__", - "__main__.mintOwner" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 15, - "end_line": 544, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "start_col": 5, - "start_line": 544 - } - }, - "5114": { - "accessible_scopes": [ - "__main__", - "__main__", - "__wrappers__", - "__wrappers__.mintOwner" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 40, - "end_line": 3, - "input_file": { - "filename": "autogen/starknet/arg_processor/60c79ef5477686f2843e61432dcde7f4fc0f354d42095115ea9dca625a35df6e.cairo" - }, - "parent_location": [ - { - "end_col": 31, - "end_line": 540, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "parent_location": [ - { - "end_col": 45, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/arg_processor/c31620b02d4d706f0542c989b2aadc01b0981d1f6a5933a8fe4937ace3d70d92.cairo" - }, - "parent_location": [ - { - "end_col": 15, - "end_line": 539, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "parent_location": [ - { - "end_col": 57, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/arg_processor/01cba52f8515996bb9d7070bde81ff39281d096d7024a558efcba6e1fd2402cf.cairo" - }, - "parent_location": [ - { - "end_col": 15, - "end_line": 539, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "start_col": 6, - "start_line": 539 - }, - "While handling calldata of" - ], - "start_col": 35, - "start_line": 1 - }, - "While expanding the reference '__calldata_actual_size' in:" - ], - "start_col": 6, - "start_line": 539 - }, - "While handling calldata of" - ], - "start_col": 31, - "start_line": 1 - }, - "While expanding the reference '__calldata_ptr' in:" - ], - "start_col": 15, - "start_line": 540 - }, - "While handling calldata argument 'tokenId'" - ], - "start_col": 22, - "start_line": 3 - } - }, - "5116": { - "accessible_scopes": [ - "__main__", - "__main__", - "__wrappers__", - "__wrappers__.mintOwner" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 58, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/arg_processor/01cba52f8515996bb9d7070bde81ff39281d096d7024a558efcba6e1fd2402cf.cairo" - }, - "parent_location": [ - { - "end_col": 15, - "end_line": 539, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "start_col": 6, - "start_line": 539 - }, - "While handling calldata of" - ], - "start_col": 1, - "start_line": 1 - } - }, - "5117": { - "accessible_scopes": [ - "__main__", - "__main__", - "__wrappers__", - "__wrappers__.mintOwner" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 110, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/external/mintOwner/9684a85e93c782014ca14293edea4eb2502039a5a7b6538ecd39c56faaf12529.cairo" - }, - "parent_location": [ - { - "end_col": 42, - "end_line": 539, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "parent_location": [ - { - "end_col": 57, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/external/mintOwner/5388f692818f55977b2452a31ce8c0a2aaeeb5ab5c5db8c2d2f3ab50dcff739b.cairo" - }, - "parent_location": [ - { - "end_col": 15, - "end_line": 539, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "start_col": 6, - "start_line": 539 - }, - "While constructing the external wrapper for:" - ], - "start_col": 45, - "start_line": 1 - }, - "While expanding the reference 'pedersen_ptr' in:" - ], - "start_col": 16, - "start_line": 539 - }, - "While constructing the external wrapper for:" - ], - "start_col": 20, - "start_line": 1 - } - }, - "5118": { - "accessible_scopes": [ - "__main__", - "__main__", - "__wrappers__", - "__wrappers__.mintOwner" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 64, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/external/mintOwner/b2c52ca2d2a8fc8791a983086d8716c5eacd0c3d62934914d2286f84b98ff4cb.cairo" - }, - "parent_location": [ - { - "end_col": 62, - "end_line": 539, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "parent_location": [ - { - "end_col": 82, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/external/mintOwner/5388f692818f55977b2452a31ce8c0a2aaeeb5ab5c5db8c2d2f3ab50dcff739b.cairo" - }, - "parent_location": [ - { - "end_col": 15, - "end_line": 539, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "start_col": 6, - "start_line": 539 - }, - "While constructing the external wrapper for:" - ], - "start_col": 71, - "start_line": 1 - }, - "While expanding the reference 'syscall_ptr' in:" - ], - "start_col": 44, - "start_line": 539 - }, - "While constructing the external wrapper for:" - ], - "start_col": 19, - "start_line": 1 - } - }, - "5119": { - "accessible_scopes": [ - "__main__", - "__main__", - "__wrappers__", - "__wrappers__.mintOwner" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 67, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/external/mintOwner/741ea357d6336b0bed7bf0472425acd0311d543883b803388880e60a232040c7.cairo" - }, - "parent_location": [ - { - "end_col": 79, - "end_line": 539, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "parent_location": [ - { - "end_col": 115, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/external/mintOwner/5388f692818f55977b2452a31ce8c0a2aaeeb5ab5c5db8c2d2f3ab50dcff739b.cairo" - }, - "parent_location": [ - { - "end_col": 15, - "end_line": 539, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "start_col": 6, - "start_line": 539 - }, - "While constructing the external wrapper for:" - ], - "start_col": 100, - "start_line": 1 - }, - "While expanding the reference 'range_check_ptr' in:" - ], - "start_col": 64, - "start_line": 539 - }, - "While constructing the external wrapper for:" - ], - "start_col": 23, - "start_line": 1 - } - }, - "5120": { - "accessible_scopes": [ - "__main__", - "__main__", - "__wrappers__", - "__wrappers__.mintOwner" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 41, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/arg_processor/dceaabc265216c0ff87c509d90446554648ec4d692c521cda952464d1fc22972.cairo" - }, - "parent_location": [ - { - "end_col": 13, - "end_line": 540, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "parent_location": [ - { - "end_col": 137, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/external/mintOwner/5388f692818f55977b2452a31ce8c0a2aaeeb5ab5c5db8c2d2f3ab50dcff739b.cairo" - }, - "parent_location": [ - { - "end_col": 15, - "end_line": 539, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "start_col": 6, - "start_line": 539 - }, - "While constructing the external wrapper for:" - ], - "start_col": 120, - "start_line": 1 - }, - "While expanding the reference '__calldata_arg_to' in:" - ], - "start_col": 5, - "start_line": 540 - }, - "While handling calldata argument 'to'" - ], - "start_col": 25, - "start_line": 1 - } - }, - "5121": { - "accessible_scopes": [ - "__main__", - "__main__", - "__wrappers__", - "__wrappers__.mintOwner" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 67, - "end_line": 2, - "input_file": { - "filename": "autogen/starknet/arg_processor/60c79ef5477686f2843e61432dcde7f4fc0f354d42095115ea9dca625a35df6e.cairo" - }, - "parent_location": [ - { - "end_col": 31, - "end_line": 540, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "parent_location": [ - { - "end_col": 169, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/external/mintOwner/5388f692818f55977b2452a31ce8c0a2aaeeb5ab5c5db8c2d2f3ab50dcff739b.cairo" - }, - "parent_location": [ - { - "end_col": 15, - "end_line": 539, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "start_col": 6, - "start_line": 539 - }, - "While constructing the external wrapper for:" - ], - "start_col": 147, - "start_line": 1 - }, - "While expanding the reference '__calldata_arg_tokenId' in:" - ], - "start_col": 15, - "start_line": 540 - }, - "While handling calldata argument 'tokenId'" - ], - "start_col": 30, - "start_line": 1 - } - }, - "5122": { - "accessible_scopes": [ - "__main__", - "__main__", - "__wrappers__", - "__wrappers__.mintOwner" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 67, - "end_line": 2, - "input_file": { - "filename": "autogen/starknet/arg_processor/60c79ef5477686f2843e61432dcde7f4fc0f354d42095115ea9dca625a35df6e.cairo" - }, - "parent_location": [ - { - "end_col": 31, - "end_line": 540, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "parent_location": [ - { - "end_col": 169, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/external/mintOwner/5388f692818f55977b2452a31ce8c0a2aaeeb5ab5c5db8c2d2f3ab50dcff739b.cairo" - }, - "parent_location": [ - { - "end_col": 15, - "end_line": 539, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "start_col": 6, - "start_line": 539 - }, - "While constructing the external wrapper for:" - ], - "start_col": 147, - "start_line": 1 - }, - "While expanding the reference '__calldata_arg_tokenId' in:" - ], - "start_col": 15, - "start_line": 540 - }, - "While handling calldata argument 'tokenId'" - ], - "start_col": 30, - "start_line": 1 - } - }, - "5123": { - "accessible_scopes": [ - "__main__", - "__main__", - "__wrappers__", - "__wrappers__.mintOwner" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 15, - "end_line": 539, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "start_col": 6, - "start_line": 539 - } - }, - "5125": { - "accessible_scopes": [ - "__main__", - "__main__", - "__wrappers__", - "__wrappers__.mintOwner" - ], - "flow_tracking_data": null, - "hints": [ - { - "location": { - "end_col": 34, - "end_line": 2, - "input_file": { - "filename": "autogen/starknet/external/mintOwner/5388f692818f55977b2452a31ce8c0a2aaeeb5ab5c5db8c2d2f3ab50dcff739b.cairo" - }, - "parent_location": [ - { - "end_col": 15, - "end_line": 539, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "start_col": 6, - "start_line": 539 - }, - "While constructing the external wrapper for:" - ], - "start_col": 1, - "start_line": 2 - }, - "n_prefix_newlines": 0 - } - ], - "inst": { - "end_col": 24, - "end_line": 3, - "input_file": { - "filename": "autogen/starknet/external/mintOwner/5388f692818f55977b2452a31ce8c0a2aaeeb5ab5c5db8c2d2f3ab50dcff739b.cairo" - }, - "parent_location": [ - { - "end_col": 15, - "end_line": 539, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "start_col": 6, - "start_line": 539 - }, - "While constructing the external wrapper for:" - ], - "start_col": 1, - "start_line": 3 - } - }, - "5127": { - "accessible_scopes": [ - "__main__", - "__main__", - "__wrappers__", - "__wrappers__.mintOwner" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 82, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/external/mintOwner/5388f692818f55977b2452a31ce8c0a2aaeeb5ab5c5db8c2d2f3ab50dcff739b.cairo" - }, - "parent_location": [ - { - "end_col": 15, - "end_line": 539, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "parent_location": [ - { - "end_col": 20, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/external/mintOwner/da17921a4e81c09e730800bbf23bfdbe5e9e6bfaedc59d80fbf62087fa43c27d.cairo" - }, - "parent_location": [ - { - "end_col": 15, - "end_line": 539, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "start_col": 6, - "start_line": 539 - }, - "While constructing the external wrapper for:" - ], - "start_col": 9, - "start_line": 1 - }, - "While expanding the reference 'syscall_ptr' in:" - ], - "start_col": 6, - "start_line": 539 - }, - "While constructing the external wrapper for:" - ], - "start_col": 71, - "start_line": 1 - } - }, - "5128": { - "accessible_scopes": [ - "__main__", - "__main__", - "__wrappers__", - "__wrappers__.mintOwner" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 57, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/external/mintOwner/5388f692818f55977b2452a31ce8c0a2aaeeb5ab5c5db8c2d2f3ab50dcff739b.cairo" - }, - "parent_location": [ - { - "end_col": 15, - "end_line": 539, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "parent_location": [ - { - "end_col": 33, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/external/mintOwner/da17921a4e81c09e730800bbf23bfdbe5e9e6bfaedc59d80fbf62087fa43c27d.cairo" - }, - "parent_location": [ - { - "end_col": 15, - "end_line": 539, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "start_col": 6, - "start_line": 539 - }, - "While constructing the external wrapper for:" - ], - "start_col": 21, - "start_line": 1 - }, - "While expanding the reference 'pedersen_ptr' in:" - ], - "start_col": 6, - "start_line": 539 - }, - "While constructing the external wrapper for:" - ], - "start_col": 45, - "start_line": 1 - } - }, - "5129": { - "accessible_scopes": [ - "__main__", - "__main__", - "__wrappers__", - "__wrappers__.mintOwner" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 115, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/external/mintOwner/5388f692818f55977b2452a31ce8c0a2aaeeb5ab5c5db8c2d2f3ab50dcff739b.cairo" - }, - "parent_location": [ - { - "end_col": 15, - "end_line": 539, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "parent_location": [ - { - "end_col": 49, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/external/mintOwner/da17921a4e81c09e730800bbf23bfdbe5e9e6bfaedc59d80fbf62087fa43c27d.cairo" - }, - "parent_location": [ - { - "end_col": 15, - "end_line": 539, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "start_col": 6, - "start_line": 539 - }, - "While constructing the external wrapper for:" - ], - "start_col": 34, - "start_line": 1 - }, - "While expanding the reference 'range_check_ptr' in:" - ], - "start_col": 6, - "start_line": 539 - }, - "While constructing the external wrapper for:" - ], - "start_col": 100, - "start_line": 1 - } - }, - "5130": { - "accessible_scopes": [ - "__main__", - "__main__", - "__wrappers__", - "__wrappers__.mintOwner" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 21, - "end_line": 4, - "input_file": { - "filename": "autogen/starknet/external/mintOwner/5388f692818f55977b2452a31ce8c0a2aaeeb5ab5c5db8c2d2f3ab50dcff739b.cairo" - }, - "parent_location": [ - { - "end_col": 15, - "end_line": 539, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "parent_location": [ - { - "end_col": 62, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/external/mintOwner/da17921a4e81c09e730800bbf23bfdbe5e9e6bfaedc59d80fbf62087fa43c27d.cairo" - }, - "parent_location": [ - { - "end_col": 15, - "end_line": 539, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "start_col": 6, - "start_line": 539 - }, - "While constructing the external wrapper for:" - ], - "start_col": 50, - "start_line": 1 - }, - "While expanding the reference 'retdata_size' in:" - ], - "start_col": 6, - "start_line": 539 - }, - "While constructing the external wrapper for:" - ], - "start_col": 20, - "start_line": 4 - } - }, - "5132": { - "accessible_scopes": [ - "__main__", - "__main__", - "__wrappers__", - "__wrappers__.mintOwner" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 16, - "end_line": 3, - "input_file": { - "filename": "autogen/starknet/external/mintOwner/5388f692818f55977b2452a31ce8c0a2aaeeb5ab5c5db8c2d2f3ab50dcff739b.cairo" - }, - "parent_location": [ - { - "end_col": 15, - "end_line": 539, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "parent_location": [ - { - "end_col": 70, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/external/mintOwner/da17921a4e81c09e730800bbf23bfdbe5e9e6bfaedc59d80fbf62087fa43c27d.cairo" - }, - "parent_location": [ - { - "end_col": 15, - "end_line": 539, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "start_col": 6, - "start_line": 539 - }, - "While constructing the external wrapper for:" - ], - "start_col": 63, - "start_line": 1 - }, - "While expanding the reference 'retdata' in:" - ], - "start_col": 6, - "start_line": 539 - }, - "While constructing the external wrapper for:" - ], - "start_col": 9, - "start_line": 3 - } - }, - "5133": { - "accessible_scopes": [ - "__main__", - "__main__", - "__wrappers__", - "__wrappers__.mintOwner" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 72, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/external/mintOwner/da17921a4e81c09e730800bbf23bfdbe5e9e6bfaedc59d80fbf62087fa43c27d.cairo" - }, - "parent_location": [ - { - "end_col": 15, - "end_line": 539, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "start_col": 6, - "start_line": 539 - }, - "While constructing the external wrapper for:" - ], - "start_col": 1, - "start_line": 1 - } - }, - "5134": { - "accessible_scopes": [ - "__main__", - "__main__", - "__main__.burn" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 37, - "end_line": 548, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "parent_location": [ - { - "end_col": 60, - "end_line": 270, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" - }, - "parent_location": [ - { - "end_col": 44, - "end_line": 549, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "start_col": 5, - "start_line": 549 - }, - "While trying to retrieve the implicit argument 'pedersen_ptr' in:" - ], - "start_col": 34, - "start_line": 270 - }, - "While expanding the reference 'pedersen_ptr' in:" - ], - "start_col": 11, - "start_line": 548 - } - }, - "5135": { - "accessible_scopes": [ - "__main__", - "__main__", - "__main__.burn" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 57, - "end_line": 548, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "parent_location": [ - { - "end_col": 80, - "end_line": 270, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" - }, - "parent_location": [ - { - "end_col": 44, - "end_line": 549, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "start_col": 5, - "start_line": 549 - }, - "While trying to retrieve the implicit argument 'syscall_ptr' in:" - ], - "start_col": 62, - "start_line": 270 - }, - "While expanding the reference 'syscall_ptr' in:" - ], - "start_col": 39, - "start_line": 548 - } - }, - "5136": { - "accessible_scopes": [ - "__main__", - "__main__", - "__main__.burn" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 74, - "end_line": 548, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "parent_location": [ - { - "end_col": 97, - "end_line": 270, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" - }, - "parent_location": [ - { - "end_col": 44, - "end_line": 549, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "start_col": 5, - "start_line": 549 - }, - "While trying to retrieve the implicit argument 'range_check_ptr' in:" - ], - "start_col": 82, - "start_line": 270 - }, - "While expanding the reference 'range_check_ptr' in:" - ], - "start_col": 59, - "start_line": 548 - } - }, - "5137": { - "accessible_scopes": [ - "__main__", - "__main__", - "__main__.burn" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 92, - "end_line": 548, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "parent_location": [ - { - "end_col": 43, - "end_line": 549, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "start_col": 36, - "start_line": 549 - }, - "While expanding the reference 'tokenId' in:" - ], - "start_col": 76, - "start_line": 548 - } - }, - "5138": { - "accessible_scopes": [ - "__main__", - "__main__", - "__main__.burn" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 92, - "end_line": 548, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "parent_location": [ - { - "end_col": 43, - "end_line": 549, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "start_col": 36, - "start_line": 549 - }, - "While expanding the reference 'tokenId' in:" - ], - "start_col": 76, - "start_line": 548 - } - }, - "5139": { - "accessible_scopes": [ - "__main__", - "__main__", - "__main__.burn" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 44, - "end_line": 549, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "start_col": 5, - "start_line": 549 - } - }, - "5141": { - "accessible_scopes": [ - "__main__", - "__main__", - "__main__.burn" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 92, - "end_line": 548, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "parent_location": [ - { - "end_col": 35, - "end_line": 550, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "start_col": 28, - "start_line": 550 - }, - "While expanding the reference 'tokenId' in:" - ], - "start_col": 76, - "start_line": 548 - } - }, - "5142": { - "accessible_scopes": [ - "__main__", - "__main__", - "__main__.burn" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 92, - "end_line": 548, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "parent_location": [ - { - "end_col": 35, - "end_line": 550, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "start_col": 28, - "start_line": 550 - }, - "While expanding the reference 'tokenId' in:" - ], - "start_col": 76, - "start_line": 548 - } - }, - "5143": { - "accessible_scopes": [ - "__main__", - "__main__", - "__main__.burn" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 36, - "end_line": 550, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "start_col": 5, - "start_line": 550 - } - }, - "5145": { - "accessible_scopes": [ - "__main__", - "__main__", - "__main__.burn" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 15, - "end_line": 551, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "start_col": 5, - "start_line": 551 - } - }, - "5146": { - "accessible_scopes": [ - "__main__", - "__main__", - "__wrappers__", - "__wrappers__.burn" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 40, - "end_line": 3, - "input_file": { - "filename": "autogen/starknet/arg_processor/60c79ef5477686f2843e61432dcde7f4fc0f354d42095115ea9dca625a35df6e.cairo" - }, - "parent_location": [ - { - "end_col": 92, - "end_line": 548, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "parent_location": [ - { - "end_col": 45, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/arg_processor/c31620b02d4d706f0542c989b2aadc01b0981d1f6a5933a8fe4937ace3d70d92.cairo" - }, - "parent_location": [ - { - "end_col": 10, - "end_line": 548, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "parent_location": [ - { - "end_col": 57, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/arg_processor/01cba52f8515996bb9d7070bde81ff39281d096d7024a558efcba6e1fd2402cf.cairo" - }, - "parent_location": [ - { - "end_col": 10, - "end_line": 548, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "start_col": 6, - "start_line": 548 - }, - "While handling calldata of" - ], - "start_col": 35, - "start_line": 1 - }, - "While expanding the reference '__calldata_actual_size' in:" - ], - "start_col": 6, - "start_line": 548 - }, - "While handling calldata of" - ], - "start_col": 31, - "start_line": 1 - }, - "While expanding the reference '__calldata_ptr' in:" - ], - "start_col": 76, - "start_line": 548 - }, - "While handling calldata argument 'tokenId'" - ], - "start_col": 22, - "start_line": 3 - } - }, - "5148": { - "accessible_scopes": [ - "__main__", - "__main__", - "__wrappers__", - "__wrappers__.burn" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 58, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/arg_processor/01cba52f8515996bb9d7070bde81ff39281d096d7024a558efcba6e1fd2402cf.cairo" - }, - "parent_location": [ - { - "end_col": 10, - "end_line": 548, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "start_col": 6, - "start_line": 548 - }, - "While handling calldata of" - ], - "start_col": 1, - "start_line": 1 - } - }, - "5149": { - "accessible_scopes": [ - "__main__", - "__main__", - "__wrappers__", - "__wrappers__.burn" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 110, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/external/burn/9684a85e93c782014ca14293edea4eb2502039a5a7b6538ecd39c56faaf12529.cairo" - }, - "parent_location": [ - { - "end_col": 37, - "end_line": 548, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "parent_location": [ - { - "end_col": 57, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/external/burn/eaf4d781176f2c7f8e24c490df96b0bc54d4e6b6ef7b6749ba2322b4fdcc923a.cairo" - }, - "parent_location": [ - { - "end_col": 10, - "end_line": 548, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "start_col": 6, - "start_line": 548 - }, - "While constructing the external wrapper for:" - ], - "start_col": 45, - "start_line": 1 - }, - "While expanding the reference 'pedersen_ptr' in:" - ], - "start_col": 11, - "start_line": 548 - }, - "While constructing the external wrapper for:" - ], - "start_col": 20, - "start_line": 1 - } - }, - "5150": { - "accessible_scopes": [ - "__main__", - "__main__", - "__wrappers__", - "__wrappers__.burn" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 64, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/external/burn/b2c52ca2d2a8fc8791a983086d8716c5eacd0c3d62934914d2286f84b98ff4cb.cairo" - }, - "parent_location": [ - { - "end_col": 57, - "end_line": 548, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "parent_location": [ - { - "end_col": 82, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/external/burn/eaf4d781176f2c7f8e24c490df96b0bc54d4e6b6ef7b6749ba2322b4fdcc923a.cairo" - }, - "parent_location": [ - { - "end_col": 10, - "end_line": 548, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "start_col": 6, - "start_line": 548 - }, - "While constructing the external wrapper for:" - ], - "start_col": 71, - "start_line": 1 - }, - "While expanding the reference 'syscall_ptr' in:" - ], - "start_col": 39, - "start_line": 548 - }, - "While constructing the external wrapper for:" - ], - "start_col": 19, - "start_line": 1 - } - }, - "5151": { - "accessible_scopes": [ - "__main__", - "__main__", - "__wrappers__", - "__wrappers__.burn" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 67, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/external/burn/741ea357d6336b0bed7bf0472425acd0311d543883b803388880e60a232040c7.cairo" - }, - "parent_location": [ - { - "end_col": 74, - "end_line": 548, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "parent_location": [ - { - "end_col": 115, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/external/burn/eaf4d781176f2c7f8e24c490df96b0bc54d4e6b6ef7b6749ba2322b4fdcc923a.cairo" - }, - "parent_location": [ - { - "end_col": 10, - "end_line": 548, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "start_col": 6, - "start_line": 548 - }, - "While constructing the external wrapper for:" - ], - "start_col": 100, - "start_line": 1 - }, - "While expanding the reference 'range_check_ptr' in:" - ], - "start_col": 59, - "start_line": 548 - }, - "While constructing the external wrapper for:" - ], - "start_col": 23, - "start_line": 1 - } - }, - "5152": { - "accessible_scopes": [ - "__main__", - "__main__", - "__wrappers__", - "__wrappers__.burn" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 67, - "end_line": 2, - "input_file": { - "filename": "autogen/starknet/arg_processor/60c79ef5477686f2843e61432dcde7f4fc0f354d42095115ea9dca625a35df6e.cairo" - }, - "parent_location": [ - { - "end_col": 92, - "end_line": 548, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "parent_location": [ - { - "end_col": 147, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/external/burn/eaf4d781176f2c7f8e24c490df96b0bc54d4e6b6ef7b6749ba2322b4fdcc923a.cairo" - }, - "parent_location": [ - { - "end_col": 10, - "end_line": 548, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "start_col": 6, - "start_line": 548 - }, - "While constructing the external wrapper for:" - ], - "start_col": 125, - "start_line": 1 - }, - "While expanding the reference '__calldata_arg_tokenId' in:" - ], - "start_col": 76, - "start_line": 548 - }, - "While handling calldata argument 'tokenId'" - ], - "start_col": 30, - "start_line": 1 - } - }, - "5153": { - "accessible_scopes": [ - "__main__", - "__main__", - "__wrappers__", - "__wrappers__.burn" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 67, - "end_line": 2, - "input_file": { - "filename": "autogen/starknet/arg_processor/60c79ef5477686f2843e61432dcde7f4fc0f354d42095115ea9dca625a35df6e.cairo" - }, - "parent_location": [ - { - "end_col": 92, - "end_line": 548, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "parent_location": [ - { - "end_col": 147, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/external/burn/eaf4d781176f2c7f8e24c490df96b0bc54d4e6b6ef7b6749ba2322b4fdcc923a.cairo" - }, - "parent_location": [ - { - "end_col": 10, - "end_line": 548, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "start_col": 6, - "start_line": 548 - }, - "While constructing the external wrapper for:" - ], - "start_col": 125, - "start_line": 1 - }, - "While expanding the reference '__calldata_arg_tokenId' in:" - ], - "start_col": 76, - "start_line": 548 - }, - "While handling calldata argument 'tokenId'" - ], - "start_col": 30, - "start_line": 1 - } - }, - "5154": { - "accessible_scopes": [ - "__main__", - "__main__", - "__wrappers__", - "__wrappers__.burn" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 10, - "end_line": 548, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "start_col": 6, - "start_line": 548 - } - }, - "5156": { - "accessible_scopes": [ - "__main__", - "__main__", - "__wrappers__", - "__wrappers__.burn" - ], - "flow_tracking_data": null, - "hints": [ - { - "location": { - "end_col": 34, - "end_line": 2, - "input_file": { - "filename": "autogen/starknet/external/burn/eaf4d781176f2c7f8e24c490df96b0bc54d4e6b6ef7b6749ba2322b4fdcc923a.cairo" - }, - "parent_location": [ - { - "end_col": 10, - "end_line": 548, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "start_col": 6, - "start_line": 548 - }, - "While constructing the external wrapper for:" - ], - "start_col": 1, - "start_line": 2 - }, - "n_prefix_newlines": 0 - } - ], - "inst": { - "end_col": 24, - "end_line": 3, - "input_file": { - "filename": "autogen/starknet/external/burn/eaf4d781176f2c7f8e24c490df96b0bc54d4e6b6ef7b6749ba2322b4fdcc923a.cairo" - }, - "parent_location": [ - { - "end_col": 10, - "end_line": 548, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "start_col": 6, - "start_line": 548 - }, - "While constructing the external wrapper for:" - ], - "start_col": 1, - "start_line": 3 - } - }, - "5158": { - "accessible_scopes": [ - "__main__", - "__main__", - "__wrappers__", - "__wrappers__.burn" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 82, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/external/burn/eaf4d781176f2c7f8e24c490df96b0bc54d4e6b6ef7b6749ba2322b4fdcc923a.cairo" - }, - "parent_location": [ - { - "end_col": 10, - "end_line": 548, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "parent_location": [ - { - "end_col": 20, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/external/burn/da17921a4e81c09e730800bbf23bfdbe5e9e6bfaedc59d80fbf62087fa43c27d.cairo" - }, - "parent_location": [ - { - "end_col": 10, - "end_line": 548, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "start_col": 6, - "start_line": 548 - }, - "While constructing the external wrapper for:" - ], - "start_col": 9, - "start_line": 1 - }, - "While expanding the reference 'syscall_ptr' in:" - ], - "start_col": 6, - "start_line": 548 - }, - "While constructing the external wrapper for:" - ], - "start_col": 71, - "start_line": 1 - } - }, - "5159": { - "accessible_scopes": [ - "__main__", - "__main__", - "__wrappers__", - "__wrappers__.burn" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 57, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/external/burn/eaf4d781176f2c7f8e24c490df96b0bc54d4e6b6ef7b6749ba2322b4fdcc923a.cairo" - }, - "parent_location": [ - { - "end_col": 10, - "end_line": 548, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "parent_location": [ - { - "end_col": 33, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/external/burn/da17921a4e81c09e730800bbf23bfdbe5e9e6bfaedc59d80fbf62087fa43c27d.cairo" - }, - "parent_location": [ - { - "end_col": 10, - "end_line": 548, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "start_col": 6, - "start_line": 548 - }, - "While constructing the external wrapper for:" - ], - "start_col": 21, - "start_line": 1 - }, - "While expanding the reference 'pedersen_ptr' in:" - ], - "start_col": 6, - "start_line": 548 - }, - "While constructing the external wrapper for:" - ], - "start_col": 45, - "start_line": 1 - } - }, - "5160": { - "accessible_scopes": [ - "__main__", - "__main__", - "__wrappers__", - "__wrappers__.burn" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 115, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/external/burn/eaf4d781176f2c7f8e24c490df96b0bc54d4e6b6ef7b6749ba2322b4fdcc923a.cairo" - }, - "parent_location": [ - { - "end_col": 10, - "end_line": 548, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "parent_location": [ - { - "end_col": 49, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/external/burn/da17921a4e81c09e730800bbf23bfdbe5e9e6bfaedc59d80fbf62087fa43c27d.cairo" - }, - "parent_location": [ - { - "end_col": 10, - "end_line": 548, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "start_col": 6, - "start_line": 548 - }, - "While constructing the external wrapper for:" - ], - "start_col": 34, - "start_line": 1 - }, - "While expanding the reference 'range_check_ptr' in:" - ], - "start_col": 6, - "start_line": 548 - }, - "While constructing the external wrapper for:" - ], - "start_col": 100, - "start_line": 1 - } - }, - "5161": { - "accessible_scopes": [ - "__main__", - "__main__", - "__wrappers__", - "__wrappers__.burn" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 21, - "end_line": 4, - "input_file": { - "filename": "autogen/starknet/external/burn/eaf4d781176f2c7f8e24c490df96b0bc54d4e6b6ef7b6749ba2322b4fdcc923a.cairo" - }, - "parent_location": [ - { - "end_col": 10, - "end_line": 548, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "parent_location": [ - { - "end_col": 62, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/external/burn/da17921a4e81c09e730800bbf23bfdbe5e9e6bfaedc59d80fbf62087fa43c27d.cairo" - }, - "parent_location": [ - { - "end_col": 10, - "end_line": 548, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "start_col": 6, - "start_line": 548 - }, - "While constructing the external wrapper for:" - ], - "start_col": 50, - "start_line": 1 - }, - "While expanding the reference 'retdata_size' in:" - ], - "start_col": 6, - "start_line": 548 - }, - "While constructing the external wrapper for:" - ], - "start_col": 20, - "start_line": 4 - } - }, - "5163": { - "accessible_scopes": [ - "__main__", - "__main__", - "__wrappers__", - "__wrappers__.burn" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 16, - "end_line": 3, - "input_file": { - "filename": "autogen/starknet/external/burn/eaf4d781176f2c7f8e24c490df96b0bc54d4e6b6ef7b6749ba2322b4fdcc923a.cairo" - }, - "parent_location": [ - { - "end_col": 10, - "end_line": 548, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "parent_location": [ - { - "end_col": 70, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/external/burn/da17921a4e81c09e730800bbf23bfdbe5e9e6bfaedc59d80fbf62087fa43c27d.cairo" - }, - "parent_location": [ - { - "end_col": 10, - "end_line": 548, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "start_col": 6, - "start_line": 548 - }, - "While constructing the external wrapper for:" - ], - "start_col": 63, - "start_line": 1 - }, - "While expanding the reference 'retdata' in:" - ], - "start_col": 6, - "start_line": 548 - }, - "While constructing the external wrapper for:" - ], - "start_col": 9, - "start_line": 3 - } - }, - "5164": { - "accessible_scopes": [ - "__main__", - "__main__", - "__wrappers__", - "__wrappers__.burn" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 72, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/external/burn/da17921a4e81c09e730800bbf23bfdbe5e9e6bfaedc59d80fbf62087fa43c27d.cairo" - }, - "parent_location": [ - { - "end_col": 10, - "end_line": 548, - "input_file": { - "filename": "src/sheet/DustyPilots.cairo" - }, - "start_col": 6, - "start_line": 548 - }, - "While constructing the external wrapper for:" - ], - "start_col": 1, - "start_line": 1 - } - } - } - }, - "hints": { - "0": [ - { - "accessible_scopes": [ - "starkware.cairo.common.alloc", - "starkware.cairo.common.alloc.alloc" - ], - "code": "memory[ap] = segments.add()", - "flow_tracking_data": { - "ap_tracking": { - "group": 0, - "offset": 0 - }, - "reference_ids": {} - } - } - ], - "12": [ - { - "accessible_scopes": [ - "starkware.cairo.common.memcpy", - "starkware.cairo.common.memcpy.memcpy" - ], - "code": "vm_enter_scope({'n': ids.len})", - "flow_tracking_data": { - "ap_tracking": { - "group": 2, - "offset": 0 - }, - "reference_ids": { - "starkware.cairo.common.memcpy.memcpy.len": 0 - } - } - } - ], - "20": [ - { - "accessible_scopes": [ - "starkware.cairo.common.memcpy", - "starkware.cairo.common.memcpy.memcpy" - ], - "code": "n -= 1\nids.continue_copying = 1 if n > 0 else 0", - "flow_tracking_data": { - "ap_tracking": { - "group": 2, - "offset": 5 - }, - "reference_ids": { - "starkware.cairo.common.memcpy.memcpy.continue_copying": 1 - } - } - } - ], - "23": [ - { - "accessible_scopes": [ - "starkware.cairo.common.memcpy", - "starkware.cairo.common.memcpy.memcpy" - ], - "code": "vm_exit_scope()", - "flow_tracking_data": { - "ap_tracking": { - "group": 2, - "offset": 6 - }, - "reference_ids": {} - } - } - ], - "32": [ - { - "accessible_scopes": [ - "starkware.starknet.common.syscalls", - "starkware.starknet.common.syscalls.call_contract" - ], - "code": "syscall_handler.call_contract(segments=segments, syscall_ptr=ids.syscall_ptr)", - "flow_tracking_data": { - "ap_tracking": { - "group": 4, - "offset": 1 - }, - "reference_ids": { - "starkware.starknet.common.syscalls.call_contract.syscall_ptr": 2 - } - } - } - ], - "40": [ - { - "accessible_scopes": [ - "starkware.starknet.common.syscalls", - "starkware.starknet.common.syscalls.get_caller_address" - ], - "code": "syscall_handler.get_caller_address(segments=segments, syscall_ptr=ids.syscall_ptr)", - "flow_tracking_data": { - "ap_tracking": { - "group": 5, - "offset": 1 - }, - "reference_ids": { - "starkware.starknet.common.syscalls.get_caller_address.syscall_ptr": 3 - } - } - } - ], - "48": [ - { - "accessible_scopes": [ - "starkware.starknet.common.syscalls", - "starkware.starknet.common.syscalls.storage_read" - ], - "code": "syscall_handler.storage_read(segments=segments, syscall_ptr=ids.syscall_ptr)", - "flow_tracking_data": { - "ap_tracking": { - "group": 6, - "offset": 1 - }, - "reference_ids": { - "starkware.starknet.common.syscalls.storage_read.syscall_ptr": 4 - } - } - } - ], - "57": [ - { - "accessible_scopes": [ - "starkware.starknet.common.syscalls", - "starkware.starknet.common.syscalls.storage_write" - ], - "code": "syscall_handler.storage_write(segments=segments, syscall_ptr=ids.syscall_ptr)", - "flow_tracking_data": { - "ap_tracking": { - "group": 7, - "offset": 1 - }, - "reference_ids": { - "starkware.starknet.common.syscalls.storage_write.syscall_ptr": 5 - } - } - } - ], - "67": [ - { - "accessible_scopes": [ - "starkware.starknet.common.syscalls", - "starkware.starknet.common.syscalls.emit_event" - ], - "code": "syscall_handler.emit_event(segments=segments, syscall_ptr=ids.syscall_ptr)", - "flow_tracking_data": { - "ap_tracking": { - "group": 8, - "offset": 1 - }, - "reference_ids": { - "starkware.starknet.common.syscalls.emit_event.syscall_ptr": 6 - } - } - } - ], - "70": [ - { - "accessible_scopes": [ - "starkware.cairo.common.math", - "starkware.cairo.common.math.assert_not_zero" - ], - "code": "from starkware.cairo.common.math_utils import assert_integer\nassert_integer(ids.value)\nassert ids.value % PRIME != 0, f'assert_not_zero failed: {ids.value} = 0.'", - "flow_tracking_data": { - "ap_tracking": { - "group": 9, - "offset": 0 - }, - "reference_ids": { - "starkware.cairo.common.math.assert_not_zero.value": 7 - } - } - } - ], - "75": [ - { - "accessible_scopes": [ - "starkware.cairo.common.math", - "starkware.cairo.common.math.assert_not_equal" - ], - "code": "from starkware.cairo.lang.vm.relocatable import RelocatableValue\nboth_ints = isinstance(ids.a, int) and isinstance(ids.b, int)\nboth_relocatable = (\n isinstance(ids.a, RelocatableValue) and isinstance(ids.b, RelocatableValue) and\n ids.a.segment_index == ids.b.segment_index)\nassert both_ints or both_relocatable, \\\n f'assert_not_equal failed: non-comparable values: {ids.a}, {ids.b}.'\nassert (ids.a - ids.b) % PRIME != 0, f'assert_not_equal failed: {ids.a} = {ids.b}.'", - "flow_tracking_data": { - "ap_tracking": { - "group": 10, - "offset": 0 - }, - "reference_ids": { - "starkware.cairo.common.math.assert_not_equal.a": 8, - "starkware.cairo.common.math.assert_not_equal.b": 9 - } - } - } - ], - "81": [ - { - "accessible_scopes": [ - "starkware.cairo.common.math", - "starkware.cairo.common.math.assert_nn" - ], - "code": "from starkware.cairo.common.math_utils import assert_integer\nassert_integer(ids.a)\nassert 0 <= ids.a % PRIME < range_check_builtin.bound, f'a = {ids.a} is out of range.'", - "flow_tracking_data": { - "ap_tracking": { - "group": 11, - "offset": 0 - }, - "reference_ids": { - "starkware.cairo.common.math.assert_nn.a": 10 - } - } - } - ], - "90": [ - { - "accessible_scopes": [ - "starkware.cairo.common.math", - "starkware.cairo.common.math.assert_250_bit" - ], - "code": "from starkware.cairo.common.math_utils import as_int\n\n# Correctness check.\nvalue = as_int(ids.value, PRIME) % PRIME\nassert value < ids.UPPER_BOUND, f'{value} is outside of the range [0, 2**250).'\n\n# Calculation for the assertion.\nids.high, ids.low = divmod(ids.value, ids.SHIFT)", - "flow_tracking_data": { - "ap_tracking": { - "group": 13, - "offset": 0 - }, - "reference_ids": { - "starkware.cairo.common.math.assert_250_bit.high": 13, - "starkware.cairo.common.math.assert_250_bit.low": 12, - "starkware.cairo.common.math.assert_250_bit.value": 11 - } - } - } - ], - "103": [ - { - "accessible_scopes": [ - "starkware.cairo.common.math", - "starkware.cairo.common.math.assert_le_felt" - ], - "code": "import itertools\n\nfrom starkware.cairo.common.math_utils import assert_integer\nassert_integer(ids.a)\nassert_integer(ids.b)\na = ids.a % PRIME\nb = ids.b % PRIME\nassert a <= b, f'a = {a} is not less than or equal to b = {b}.'\n\n# Find an arc less than PRIME / 3, and another less than PRIME / 2.\nlengths_and_indices = [(a, 0), (b - a, 1), (PRIME - 1 - b, 2)]\nlengths_and_indices.sort()\nassert lengths_and_indices[0][0] <= PRIME // 3 and lengths_and_indices[1][0] <= PRIME // 2\nexcluded = lengths_and_indices[2][1]\n\nmemory[ids.range_check_ptr + 1], memory[ids.range_check_ptr + 0] = (\n divmod(lengths_and_indices[0][0], ids.PRIME_OVER_3_HIGH))\nmemory[ids.range_check_ptr + 3], memory[ids.range_check_ptr + 2] = (\n divmod(lengths_and_indices[1][0], ids.PRIME_OVER_2_HIGH))", - "flow_tracking_data": { - "ap_tracking": { - "group": 14, - "offset": 0 - }, - "reference_ids": { - "starkware.cairo.common.math.assert_le_felt.a": 14, - "starkware.cairo.common.math.assert_le_felt.b": 15, - "starkware.cairo.common.math.assert_le_felt.range_check_ptr": 16 - } - } - } - ], - "113": [ - { - "accessible_scopes": [ - "starkware.cairo.common.math", - "starkware.cairo.common.math.assert_le_felt" - ], - "code": "memory[ap] = 1 if excluded != 0 else 0", - "flow_tracking_data": { - "ap_tracking": { - "group": 14, - "offset": 8 - }, - "reference_ids": {} - } - } - ], - "127": [ - { - "accessible_scopes": [ - "starkware.cairo.common.math", - "starkware.cairo.common.math.assert_le_felt" - ], - "code": "memory[ap] = 1 if excluded != 1 else 0", - "flow_tracking_data": { - "ap_tracking": { - "group": 14, - "offset": 9 - }, - "reference_ids": {} - } - } - ], - "139": [ - { - "accessible_scopes": [ - "starkware.cairo.common.math", - "starkware.cairo.common.math.assert_le_felt" - ], - "code": "assert excluded == 2", - "flow_tracking_data": { - "ap_tracking": { - "group": 14, - "offset": 10 - }, - "reference_ids": {} - } - } - ], - "148": [ - { - "accessible_scopes": [ - "starkware.cairo.common.math", - "starkware.cairo.common.math.assert_lt_felt" - ], - "code": "from starkware.cairo.common.math_utils import assert_integer\nassert_integer(ids.a)\nassert_integer(ids.b)\nassert (ids.a % PRIME) < (ids.b % PRIME), \\\n f'a = {ids.a % PRIME} is not less than b = {ids.b % PRIME}.'", - "flow_tracking_data": { - "ap_tracking": { - "group": 15, - "offset": 0 - }, - "reference_ids": { - "starkware.cairo.common.math.assert_lt_felt.a": 17, - "starkware.cairo.common.math.assert_lt_felt.b": 18 - } - } - } - ], - "159": [ - { - "accessible_scopes": [ - "starkware.cairo.common.math", - "starkware.cairo.common.math.signed_div_rem" - ], - "code": "from starkware.cairo.common.math_utils import as_int, assert_integer\n\nassert_integer(ids.div)\nassert 0 < ids.div <= PRIME // range_check_builtin.bound, \\\n f'div={hex(ids.div)} is out of the valid range.'\n\nassert_integer(ids.bound)\nassert ids.bound <= range_check_builtin.bound // 2, \\\n f'bound={hex(ids.bound)} is out of the valid range.'\n\nint_value = as_int(ids.value, PRIME)\nq, ids.r = divmod(int_value, ids.div)\n\nassert -ids.bound <= q < ids.bound, \\\n f'{int_value} / {ids.div} = {q} is out of the range [{-ids.bound}, {ids.bound}).'\n\nids.biased_q = q + ids.bound", - "flow_tracking_data": { - "ap_tracking": { - "group": 16, - "offset": 0 - }, - "reference_ids": { - "starkware.cairo.common.math.signed_div_rem.biased_q": 23, - "starkware.cairo.common.math.signed_div_rem.bound": 21, - "starkware.cairo.common.math.signed_div_rem.div": 20, - "starkware.cairo.common.math.signed_div_rem.r": 22, - "starkware.cairo.common.math.signed_div_rem.value": 19 - } - } - } - ], - "187": [ - { - "accessible_scopes": [ - "starkware.starknet.common.storage", - "starkware.starknet.common.storage.normalize_address" - ], - "code": "# Verify the assumptions on the relationship between 2**250, ADDR_BOUND and PRIME.\nADDR_BOUND = ids.ADDR_BOUND % PRIME\nassert (2**250 < ADDR_BOUND <= 2**251) and (2 * 2**250 < PRIME) and (\n ADDR_BOUND * 2 > PRIME), \\\n 'normalize_address() cannot be used with the current constants.'\nids.is_small = 1 if ids.addr < ADDR_BOUND else 0", - "flow_tracking_data": { - "ap_tracking": { - "group": 17, - "offset": 1 - }, - "reference_ids": { - "starkware.starknet.common.storage.normalize_address.addr": 24, - "starkware.starknet.common.storage.normalize_address.is_small": 25 - } - } - } - ], - "205": [ - { - "accessible_scopes": [ - "starkware.starknet.common.storage", - "starkware.starknet.common.storage.normalize_address" - ], - "code": "ids.is_250 = 1 if ids.addr < 2**250 else 0", - "flow_tracking_data": { - "ap_tracking": { - "group": 17, - "offset": 2 - }, - "reference_ids": { - "starkware.starknet.common.storage.normalize_address.addr": 24, - "starkware.starknet.common.storage.normalize_address.is_250": 26 - } - } - } - ], - "349": [ - { - "accessible_scopes": [ - "starkware.cairo.common.math_cmp", - "starkware.cairo.common.math_cmp.is_nn" - ], - "code": "memory[ap] = 0 if 0 <= (ids.a % PRIME) < range_check_builtin.bound else 1", - "flow_tracking_data": { - "ap_tracking": { - "group": 32, - "offset": 0 - }, - "reference_ids": { - "starkware.cairo.common.math_cmp.is_nn.a": 27 - } - } - } - ], - "359": [ - { - "accessible_scopes": [ - "starkware.cairo.common.math_cmp", - "starkware.cairo.common.math_cmp.is_nn" - ], - "code": "memory[ap] = 0 if 0 <= ((-ids.a - 1) % PRIME) < range_check_builtin.bound else 1", - "flow_tracking_data": { - "ap_tracking": { - "group": 32, - "offset": 1 - }, - "reference_ids": { - "starkware.cairo.common.math_cmp.is_nn.a": 27 - } - } - } - ], - "387": [ - { - "accessible_scopes": [ - "starkware.cairo.common.math_cmp", - "starkware.cairo.common.math_cmp.is_le_felt" - ], - "code": "memory[ap] = 0 if (ids.a % PRIME) <= (ids.b % PRIME) else 1", - "flow_tracking_data": { - "ap_tracking": { - "group": 34, - "offset": 0 - }, - "reference_ids": { - "starkware.cairo.common.math_cmp.is_le_felt.a": 28, - "starkware.cairo.common.math_cmp.is_le_felt.b": 29 - } - } - } - ], - "420": [ - { - "accessible_scopes": [ - "starkware.cairo.common.uint256", - "starkware.cairo.common.uint256.uint256_add" - ], - "code": "sum_low = ids.a.low + ids.b.low\nids.carry_low = 1 if sum_low >= ids.SHIFT else 0\nsum_high = ids.a.high + ids.b.high + ids.carry_low\nids.carry_high = 1 if sum_high >= ids.SHIFT else 0", - "flow_tracking_data": { - "ap_tracking": { - "group": 37, - "offset": 4 - }, - "reference_ids": { - "starkware.cairo.common.uint256.uint256_add.a": 30, - "starkware.cairo.common.uint256.uint256_add.b": 31, - "starkware.cairo.common.uint256.uint256_add.carry_high": 33, - "starkware.cairo.common.uint256.uint256_add.carry_low": 32 - } - } - } - ], - "442": [ - { - "accessible_scopes": [ - "starkware.cairo.common.uint256", - "starkware.cairo.common.uint256.split_64" - ], - "code": "ids.low = ids.a & ((1<<64) - 1)\nids.high = ids.a >> 64", - "flow_tracking_data": { - "ap_tracking": { - "group": 38, - "offset": 2 - }, - "reference_ids": { - "starkware.cairo.common.uint256.split_64.a": 34, - "starkware.cairo.common.uint256.split_64.high": 36, - "starkware.cairo.common.uint256.split_64.low": 35 - } - } - } - ], - "2358": [ - { - "accessible_scopes": [ - "starkware.cairo.common.squash_dict", - "starkware.cairo.common.squash_dict.squash_dict" - ], - "code": "vm_enter_scope()", - "flow_tracking_data": { - "ap_tracking": { - "group": 145, - "offset": 3 - }, - "reference_ids": {} - } - } - ], - "2361": [ - { - "accessible_scopes": [ - "starkware.cairo.common.squash_dict", - "starkware.cairo.common.squash_dict.squash_dict" - ], - "code": "vm_exit_scope()", - "flow_tracking_data": { - "ap_tracking": { - "group": 145, - "offset": 3 - }, - "reference_ids": {} - } - } - ], - "2366": [ - { - "accessible_scopes": [ - "starkware.cairo.common.squash_dict", - "starkware.cairo.common.squash_dict.squash_dict" - ], - "code": "dict_access_size = ids.DictAccess.SIZE\naddress = ids.dict_accesses.address_\nassert ids.ptr_diff % dict_access_size == 0, \\\n 'Accesses array size must be divisible by DictAccess.SIZE'\nn_accesses = ids.n_accesses\nif '__squash_dict_max_size' in globals():\n assert n_accesses <= __squash_dict_max_size, \\\n f'squash_dict() can only be used with n_accesses<={__squash_dict_max_size}. ' \\\n f'Got: n_accesses={n_accesses}.'\n# A map from key to the list of indices accessing it.\naccess_indices = {}\nfor i in range(n_accesses):\n key = memory[address + dict_access_size * i]\n access_indices.setdefault(key, []).append(i)\n# Descending list of keys.\nkeys = sorted(access_indices.keys(), reverse=True)\n# Are the keys used bigger than range_check bound.\nids.big_keys = 1 if keys[0] >= range_check_builtin.bound else 0\nids.first_key = key = keys.pop()", - "flow_tracking_data": { - "ap_tracking": { - "group": 145, - "offset": 4 - }, - "reference_ids": { - "starkware.cairo.common.squash_dict.squash_dict.big_keys": 40, - "starkware.cairo.common.squash_dict.squash_dict.dict_accesses": 37, - "starkware.cairo.common.squash_dict.squash_dict.first_key": 39, - "starkware.cairo.common.squash_dict.squash_dict.n_accesses": 41, - "starkware.cairo.common.squash_dict.squash_dict.ptr_diff": 38 - } - } - } - ], - "2383": [ - { - "accessible_scopes": [ - "starkware.cairo.common.squash_dict", - "starkware.cairo.common.squash_dict.squash_dict" - ], - "code": "vm_exit_scope()", - "flow_tracking_data": { - "ap_tracking": { - "group": 146, - "offset": 0 - }, - "reference_ids": {} - } - } - ], - "2386": [ - { - "accessible_scopes": [ - "starkware.cairo.common.squash_dict", - "starkware.cairo.common.squash_dict.squash_dict_inner" - ], - "code": "current_access_indices = sorted(access_indices[key])[::-1]\ncurrent_access_index = current_access_indices.pop()\nmemory[ids.range_check_ptr] = current_access_index", - "flow_tracking_data": { - "ap_tracking": { - "group": 147, - "offset": 2 - }, - "reference_ids": { - "starkware.cairo.common.squash_dict.squash_dict_inner.range_check_ptr": 42 - } - } - } - ], - "2397": [ - { - "accessible_scopes": [ - "starkware.cairo.common.squash_dict", - "starkware.cairo.common.squash_dict.squash_dict_inner" - ], - "code": "ids.should_skip_loop = 0 if current_access_indices else 1", - "flow_tracking_data": { - "ap_tracking": { - "group": 147, - "offset": 7 - }, - "reference_ids": { - "starkware.cairo.common.squash_dict.squash_dict_inner.should_skip_loop": 43 - } - } - } - ], - "2399": [ - { - "accessible_scopes": [ - "starkware.cairo.common.squash_dict", - "starkware.cairo.common.squash_dict.squash_dict_inner" - ], - "code": "new_access_index = current_access_indices.pop()\nids.loop_temps.index_delta_minus1 = new_access_index - current_access_index - 1\ncurrent_access_index = new_access_index", - "flow_tracking_data": { - "ap_tracking": { - "group": 147, - "offset": 7 - }, - "reference_ids": { - "starkware.cairo.common.squash_dict.squash_dict_inner.loop_temps": 44 - } - } - } - ], - "2410": [ - { - "accessible_scopes": [ - "starkware.cairo.common.squash_dict", - "starkware.cairo.common.squash_dict.squash_dict_inner" - ], - "code": "ids.loop_temps.should_continue = 1 if current_access_indices else 0", - "flow_tracking_data": { - "ap_tracking": { - "group": 147, - "offset": 13 - }, - "reference_ids": { - "starkware.cairo.common.squash_dict.squash_dict_inner.loop_temps": 44 - } - } - } - ], - "2412": [ - { - "accessible_scopes": [ - "starkware.cairo.common.squash_dict", - "starkware.cairo.common.squash_dict.squash_dict_inner" - ], - "code": "assert len(current_access_indices) == 0", - "flow_tracking_data": { - "ap_tracking": { - "group": 148, - "offset": 0 - }, - "reference_ids": {} - } - } - ], - "2415": [ - { - "accessible_scopes": [ - "starkware.cairo.common.squash_dict", - "starkware.cairo.common.squash_dict.squash_dict_inner" - ], - "code": "assert ids.n_used_accesses == len(access_indices[key])", - "flow_tracking_data": { - "ap_tracking": { - "group": 148, - "offset": 2 - }, - "reference_ids": { - "starkware.cairo.common.squash_dict.squash_dict_inner.n_used_accesses": 45 - } - } - } - ], - "2419": [ - { - "accessible_scopes": [ - "starkware.cairo.common.squash_dict", - "starkware.cairo.common.squash_dict.squash_dict_inner" - ], - "code": "assert len(keys) == 0", - "flow_tracking_data": { - "ap_tracking": { - "group": 148, - "offset": 3 - }, - "reference_ids": {} - } - } - ], - "2426": [ - { - "accessible_scopes": [ - "starkware.cairo.common.squash_dict", - "starkware.cairo.common.squash_dict.squash_dict_inner" - ], - "code": "assert len(keys) > 0, 'No keys left but remaining_accesses > 0.'\nids.next_key = key = keys.pop()", - "flow_tracking_data": { - "ap_tracking": { - "group": 148, - "offset": 4 - }, - "reference_ids": { - "starkware.cairo.common.squash_dict.squash_dict_inner.next_key": 46 - } - } - } - ], - "2456": [ - { - "accessible_scopes": [ - "starkware.cairo.common.dict", - "starkware.cairo.common.dict.dict_new" - ], - "code": "if '__dict_manager' not in globals():\n from starkware.cairo.common.dict import DictManager\n __dict_manager = DictManager()\n\nmemory[ap] = __dict_manager.new_dict(segments, initial_dict)\ndel initial_dict", - "flow_tracking_data": { - "ap_tracking": { - "group": 151, - "offset": 0 - }, - "reference_ids": {} - } - } - ], - "2461": [ - { - "accessible_scopes": [ - "starkware.cairo.common.dict", - "starkware.cairo.common.dict.dict_read" - ], - "code": "dict_tracker = __dict_manager.get_tracker(ids.dict_ptr)\ndict_tracker.current_ptr += ids.DictAccess.SIZE\nids.value = dict_tracker.data[ids.key]", - "flow_tracking_data": { - "ap_tracking": { - "group": 152, - "offset": 1 - }, - "reference_ids": { - "starkware.cairo.common.dict.dict_read.dict_ptr": 48, - "starkware.cairo.common.dict.dict_read.key": 47, - "starkware.cairo.common.dict.dict_read.value": 49 - } - } - } - ], - "2468": [ - { - "accessible_scopes": [ - "starkware.cairo.common.dict", - "starkware.cairo.common.dict.dict_write" - ], - "code": "dict_tracker = __dict_manager.get_tracker(ids.dict_ptr)\ndict_tracker.current_ptr += ids.DictAccess.SIZE\nids.dict_ptr.prev_value = dict_tracker.data[ids.key]\ndict_tracker.data[ids.key] = ids.new_value", - "flow_tracking_data": { - "ap_tracking": { - "group": 153, - "offset": 0 - }, - "reference_ids": { - "starkware.cairo.common.dict.dict_write.dict_ptr": 52, - "starkware.cairo.common.dict.dict_write.key": 50, - "starkware.cairo.common.dict.dict_write.new_value": 51 - } - } - } - ], - "2475": [ - { - "accessible_scopes": [ - "starkware.cairo.common.dict", - "starkware.cairo.common.dict.dict_squash" - ], - "code": "# Prepare arguments for dict_new. In particular, the same dictionary values should be copied\n# to the new (squashed) dictionary.\nvm_enter_scope({\n # Make __dict_manager accessible.\n '__dict_manager': __dict_manager,\n # Create a copy of the dict, in case it changes in the future.\n 'initial_dict': dict(__dict_manager.get_dict(ids.dict_accesses_end)),\n})", - "flow_tracking_data": { - "ap_tracking": { - "group": 154, - "offset": 1 - }, - "reference_ids": { - "starkware.cairo.common.dict.dict_squash.dict_accesses_end": 53 - } - } - } - ], - "2478": [ - { - "accessible_scopes": [ - "starkware.cairo.common.dict", - "starkware.cairo.common.dict.dict_squash" - ], - "code": "vm_exit_scope()", - "flow_tracking_data": { - "ap_tracking": { - "group": 154, - "offset": 4 - }, - "reference_ids": {} - } - } - ], - "2484": [ - { - "accessible_scopes": [ - "starkware.cairo.common.dict", - "starkware.cairo.common.dict.dict_squash" - ], - "code": "# Update the DictTracker's current_ptr to point to the end of the squashed dict.\n__dict_manager.get_tracker(ids.squashed_dict_start).current_ptr = \\\n ids.squashed_dict_end.address_", - "flow_tracking_data": { - "ap_tracking": { - "group": 155, - "offset": 0 - }, - "reference_ids": { - "starkware.cairo.common.dict.dict_squash.squashed_dict_end": 55, - "starkware.cairo.common.dict.dict_squash.squashed_dict_start": 54 - } - } - } - ], - "2488": [ - { - "accessible_scopes": [ - "starkware.cairo.common.default_dict", - "starkware.cairo.common.default_dict.default_dict_new" - ], - "code": "if '__dict_manager' not in globals():\n from starkware.cairo.common.dict import DictManager\n __dict_manager = DictManager()\n\nmemory[ap] = __dict_manager.new_default_dict(segments, ids.default_value)", - "flow_tracking_data": { - "ap_tracking": { - "group": 156, - "offset": 0 - }, - "reference_ids": { - "starkware.cairo.common.default_dict.default_dict_new.default_value": 56 - } - } - } - ], - "3518": [ - { - "accessible_scopes": [ - "__main__", - "__main__", - "__wrappers__", - "__wrappers__.owner_encode_return" - ], - "code": "memory[ap] = segments.add()", - "flow_tracking_data": { - "ap_tracking": { - "group": 228, - "offset": 0 - }, - "reference_ids": {} - } - } - ], - "3558": [ - { - "accessible_scopes": [ - "__main__", - "__main__", - "__wrappers__", - "__wrappers__.transferOwnership" - ], - "code": "memory[ap] = segments.add()", - "flow_tracking_data": { - "ap_tracking": { - "group": 233, - "offset": 0 - }, - "reference_ids": {} - } - } - ], - "3585": [ - { - "accessible_scopes": [ - "__main__", - "__main__", - "__wrappers__", - "__wrappers__.setMaxPerWallet" - ], - "code": "memory[ap] = segments.add()", - "flow_tracking_data": { - "ap_tracking": { - "group": 237, - "offset": 0 - }, - "reference_ids": {} - } - } - ], - "3600": [ - { - "accessible_scopes": [ - "__main__", - "__main__", - "__wrappers__", - "__wrappers__.getMaxPerWallet_encode_return" - ], - "code": "memory[ap] = segments.add()", - "flow_tracking_data": { - "ap_tracking": { - "group": 239, - "offset": 0 - }, - "reference_ids": {} - } - } - ], - "3642": [ - { - "accessible_scopes": [ - "__main__", - "__main__", - "__wrappers__", - "__wrappers__.setNRow" - ], - "code": "memory[ap] = segments.add()", - "flow_tracking_data": { - "ap_tracking": { - "group": 244, - "offset": 0 - }, - "reference_ids": {} - } - } - ], - "3657": [ - { - "accessible_scopes": [ - "__main__", - "__main__", - "__wrappers__", - "__wrappers__.getNRow_encode_return" - ], - "code": "memory[ap] = segments.add()", - "flow_tracking_data": { - "ap_tracking": { - "group": 246, - "offset": 0 - }, - "reference_ids": {} - } - } - ], - "3699": [ - { - "accessible_scopes": [ - "__main__", - "__main__", - "__wrappers__", - "__wrappers__.setCellRenderer" - ], - "code": "memory[ap] = segments.add()", - "flow_tracking_data": { - "ap_tracking": { - "group": 251, - "offset": 0 - }, - "reference_ids": {} - } - } - ], - "3714": [ - { - "accessible_scopes": [ - "__main__", - "__main__", - "__wrappers__", - "__wrappers__.getCellRenderer_encode_return" - ], - "code": "memory[ap] = segments.add()", - "flow_tracking_data": { - "ap_tracking": { - "group": 253, - "offset": 0 - }, - "reference_ids": {} - } - } - ], - "3756": [ - { - "accessible_scopes": [ - "__main__", - "__main__", - "__wrappers__", - "__wrappers__.setMerkleRoot" - ], - "code": "memory[ap] = segments.add()", - "flow_tracking_data": { - "ap_tracking": { - "group": 258, - "offset": 0 - }, - "reference_ids": {} - } - } - ], - "3779": [ - { - "accessible_scopes": [ - "__main__", - "__main__", - "__wrappers__", - "__wrappers__.openMint" - ], - "code": "memory[ap] = segments.add()", - "flow_tracking_data": { - "ap_tracking": { - "group": 262, - "offset": 0 - }, - "reference_ids": {} - } - } - ], - "3802": [ - { - "accessible_scopes": [ - "__main__", - "__main__", - "__wrappers__", - "__wrappers__.closeMint" - ], - "code": "memory[ap] = segments.add()", - "flow_tracking_data": { - "ap_tracking": { - "group": 266, - "offset": 0 - }, - "reference_ids": {} - } - } - ], - "3817": [ - { - "accessible_scopes": [ - "__main__", - "__main__", - "__wrappers__", - "__wrappers__.getMerkleRoot_encode_return" - ], - "code": "memory[ap] = segments.add()", - "flow_tracking_data": { - "ap_tracking": { - "group": 268, - "offset": 0 - }, - "reference_ids": {} - } - } - ], - "3899": [ - { - "accessible_scopes": [ - "__main__", - "__main__", - "__wrappers__", - "__wrappers__.setCell" - ], - "code": "memory[ap] = segments.add()", - "flow_tracking_data": { - "ap_tracking": { - "group": 273, - "offset": 0 - }, - "reference_ids": {} - } - } - ], - "3915": [ - { - "accessible_scopes": [ - "__main__", - "__main__", - "__wrappers__", - "__wrappers__.getCell_encode_return" - ], - "code": "memory[ap] = segments.add()", - "flow_tracking_data": { - "ap_tracking": { - "group": 276, - "offset": 0 - }, - "reference_ids": {} - } - } - ], - "3991": [ - { - "accessible_scopes": [ - "__main__", - "__main__", - "__wrappers__", - "__wrappers__.renderCell_encode_return" - ], - "code": "memory[ap] = segments.add()", - "flow_tracking_data": { - "ap_tracking": { - "group": 284, - "offset": 0 - }, - "reference_ids": {} - } - } - ], - "4031": [ - { - "accessible_scopes": [ - "__main__", - "__main__", - "__wrappers__", - "__wrappers__.renderCellValue_encode_return" - ], - "code": "memory[ap] = segments.add()", - "flow_tracking_data": { - "ap_tracking": { - "group": 289, - "offset": 0 - }, - "reference_ids": {} - } - } - ], - "4100": [ - { - "accessible_scopes": [ - "__main__", - "__main__", - "__wrappers__", - "__wrappers__.renderGrid_encode_return" - ], - "code": "memory[ap] = segments.add()", - "flow_tracking_data": { - "ap_tracking": { - "group": 295, - "offset": 0 - }, - "reference_ids": {} - } - } - ], - "4204": [ - { - "accessible_scopes": [ - "__main__", - "__main__", - "__wrappers__", - "__wrappers__.mintPublic" - ], - "code": "memory[ap] = segments.add()", - "flow_tracking_data": { - "ap_tracking": { - "group": 304, - "offset": 0 - }, - "reference_ids": {} - } - } - ], - "4283": [ - { - "accessible_scopes": [ - "__main__", - "__main__", - "__wrappers__", - "__wrappers__.mintAndSetPublic" - ], - "code": "memory[ap] = segments.add()", - "flow_tracking_data": { - "ap_tracking": { - "group": 309, - "offset": 0 - }, - "reference_ids": {} - } - } - ], - "4305": [ - { - "accessible_scopes": [ - "__main__", - "__main__", - "__wrappers__", - "__wrappers__.tokenURI_encode_return" - ], - "code": "memory[ap] = segments.add()", - "flow_tracking_data": { - "ap_tracking": { - "group": 312, - "offset": 0 - }, - "reference_ids": {} - } - } - ], - "4487": [ - { - "accessible_scopes": [ - "__main__", - "__main__", - "__wrappers__", - "__wrappers__.contractURI_encode_return" - ], - "code": "memory[ap] = segments.add()", - "flow_tracking_data": { - "ap_tracking": { - "group": 447, - "offset": 0 - }, - "reference_ids": {} - } - } - ], - "4572": [ - { - "accessible_scopes": [ - "__main__", - "__main__", - "__wrappers__", - "__wrappers__.initialize" - ], - "code": "memory[ap] = segments.add()", - "flow_tracking_data": { - "ap_tracking": { - "group": 454, - "offset": 0 - }, - "reference_ids": {} - } - } - ], - "4587": [ - { - "accessible_scopes": [ - "__main__", - "__main__", - "__wrappers__", - "__wrappers__.is_initialized_encode_return" - ], - "code": "memory[ap] = segments.add()", - "flow_tracking_data": { - "ap_tracking": { - "group": 456, - "offset": 0 - }, - "reference_ids": {} - } - } - ], - "4622": [ - { - "accessible_scopes": [ - "__main__", - "__main__", - "__wrappers__", - "__wrappers__.totalSupply_encode_return" - ], - "code": "memory[ap] = segments.add()", - "flow_tracking_data": { - "ap_tracking": { - "group": 459, - "offset": 0 - }, - "reference_ids": {} - } - } - ], - "4660": [ - { - "accessible_scopes": [ - "__main__", - "__main__", - "__wrappers__", - "__wrappers__.tokenByIndex_encode_return" - ], - "code": "memory[ap] = segments.add()", - "flow_tracking_data": { - "ap_tracking": { - "group": 462, - "offset": 0 - }, - "reference_ids": {} - } - } - ], - "4703": [ - { - "accessible_scopes": [ - "__main__", - "__main__", - "__wrappers__", - "__wrappers__.tokenOfOwnerByIndex_encode_return" - ], - "code": "memory[ap] = segments.add()", - "flow_tracking_data": { - "ap_tracking": { - "group": 465, - "offset": 0 - }, - "reference_ids": {} - } - } - ], - "4740": [ - { - "accessible_scopes": [ - "__main__", - "__main__", - "__wrappers__", - "__wrappers__.supportsInterface_encode_return" - ], - "code": "memory[ap] = segments.add()", - "flow_tracking_data": { - "ap_tracking": { - "group": 469, - "offset": 0 - }, - "reference_ids": {} - } - } - ], - "4773": [ - { - "accessible_scopes": [ - "__main__", - "__main__", - "__wrappers__", - "__wrappers__.name_encode_return" - ], - "code": "memory[ap] = segments.add()", - "flow_tracking_data": { - "ap_tracking": { - "group": 473, - "offset": 0 - }, - "reference_ids": {} - } - } - ], - "4803": [ - { - "accessible_scopes": [ - "__main__", - "__main__", - "__wrappers__", - "__wrappers__.symbol_encode_return" - ], - "code": "memory[ap] = segments.add()", - "flow_tracking_data": { - "ap_tracking": { - "group": 476, - "offset": 0 - }, - "reference_ids": {} - } - } - ], - "4834": [ - { - "accessible_scopes": [ - "__main__", - "__main__", - "__wrappers__", - "__wrappers__.balanceOf_encode_return" - ], - "code": "memory[ap] = segments.add()", - "flow_tracking_data": { - "ap_tracking": { - "group": 479, - "offset": 0 - }, - "reference_ids": {} - } - } - ], - "4870": [ - { - "accessible_scopes": [ - "__main__", - "__main__", - "__wrappers__", - "__wrappers__.ownerOf_encode_return" - ], - "code": "memory[ap] = segments.add()", - "flow_tracking_data": { - "ap_tracking": { - "group": 482, - "offset": 0 - }, - "reference_ids": {} - } - } - ], - "4906": [ - { - "accessible_scopes": [ - "__main__", - "__main__", - "__wrappers__", - "__wrappers__.getApproved_encode_return" - ], - "code": "memory[ap] = segments.add()", - "flow_tracking_data": { - "ap_tracking": { - "group": 486, - "offset": 0 - }, - "reference_ids": {} - } - } - ], - "4942": [ - { - "accessible_scopes": [ - "__main__", - "__main__", - "__wrappers__", - "__wrappers__.isApprovedForAll_encode_return" - ], - "code": "memory[ap] = segments.add()", - "flow_tracking_data": { - "ap_tracking": { - "group": 490, - "offset": 0 - }, - "reference_ids": {} - } - } - ], - "4990": [ - { - "accessible_scopes": [ - "__main__", - "__main__", - "__wrappers__", - "__wrappers__.approve" - ], - "code": "memory[ap] = segments.add()", - "flow_tracking_data": { - "ap_tracking": { - "group": 495, - "offset": 0 - }, - "reference_ids": {} - } - } - ], - "5017": [ - { - "accessible_scopes": [ - "__main__", - "__main__", - "__wrappers__", - "__wrappers__.setApprovalForAll" - ], - "code": "memory[ap] = segments.add()", - "flow_tracking_data": { - "ap_tracking": { - "group": 497, - "offset": 129 - }, - "reference_ids": {} - } - } - ], - "5048": [ - { - "accessible_scopes": [ - "__main__", - "__main__", - "__wrappers__", - "__wrappers__.transferFrom" - ], - "code": "memory[ap] = segments.add()", - "flow_tracking_data": { - "ap_tracking": { - "group": 501, - "offset": 0 - }, - "reference_ids": {} - } - } - ], - "5091": [ - { - "accessible_scopes": [ - "__main__", - "__main__", - "__wrappers__", - "__wrappers__.safeTransferFrom" - ], - "code": "memory[ap] = segments.add()", - "flow_tracking_data": { - "ap_tracking": { - "group": 505, - "offset": 0 - }, - "reference_ids": {} - } - } - ], - "5125": [ - { - "accessible_scopes": [ - "__main__", - "__main__", - "__wrappers__", - "__wrappers__.mintOwner" - ], - "code": "memory[ap] = segments.add()", - "flow_tracking_data": { - "ap_tracking": { - "group": 510, - "offset": 0 - }, - "reference_ids": {} - } - } - ], - "5156": [ - { - "accessible_scopes": [ - "__main__", - "__main__", - "__wrappers__", - "__wrappers__.burn" - ], - "code": "memory[ap] = segments.add()", - "flow_tracking_data": { - "ap_tracking": { - "group": 514, - "offset": 0 - }, - "reference_ids": {} - } - } - ] - }, - "identifiers": { - "__main__.CellRendered": { - "destination": "sheet.library.CellRendered", - "type": "alias" - }, - "__main__.DEFAULT_VALUE": { - "destination": "sheet.library.DEFAULT_VALUE", - "type": "alias" - }, - "__main__.DictAccess": { - "destination": "starkware.cairo.common.dict.DictAccess", - "type": "alias" - }, - "__main__.ERC165": { - "destination": "openzeppelin.introspection.erc165.library.ERC165", - "type": "alias" - }, - "__main__.ERC721": { - "destination": "openzeppelin.token.erc721.library.ERC721", - "type": "alias" - }, - "__main__.ERC721Enumerable": { - "destination": "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable", - "type": "alias" - }, - "__main__.HashBuiltin": { - "destination": "starkware.cairo.common.cairo_builtins.HashBuiltin", - "type": "alias" - }, - "__main__.Ownable": { - "destination": "openzeppelin.access.ownable.library.Ownable", - "type": "alias" - }, - "__main__.RC_BOUND": { - "destination": "starkware.cairo.common.math_cmp.RC_BOUND", - "type": "alias" - }, - "__main__.Sheet": { - "destination": "sheet.library.Sheet", - "type": "alias" - }, - "__main__.Sheet_cell_renderer": { - "destination": "sheet.library.Sheet_cell_renderer", - "type": "alias" - }, - "__main__.Sheet_max_per_wallet": { - "destination": "sheet.library.Sheet_max_per_wallet", - "type": "alias" - }, - "__main__.Sheet_merkle_root": { - "destination": "sheet.library.Sheet_merkle_root", - "type": "alias" - }, - "__main__.SignatureBuiltin": { - "destination": "starkware.cairo.common.cairo_builtins.SignatureBuiltin", - "type": "alias" - }, - "__main__.TRUE": { - "destination": "starkware.cairo.common.bool.TRUE", - "type": "alias" - }, - "__main__.Uint256": { - "destination": "starkware.cairo.common.uint256.Uint256", - "type": "alias" - }, - "__main__._n_row": { - "type": "namespace" - }, - "__main__._n_row.Args": { - "full_name": "__main__._n_row.Args", - "members": {}, - "size": 0, - "type": "struct" - }, - "__main__._n_row.HashBuiltin": { - "destination": "starkware.cairo.common.cairo_builtins.HashBuiltin", - "type": "alias" - }, - "__main__._n_row.ImplicitArgs": { - "full_name": "__main__._n_row.ImplicitArgs", - "members": {}, - "size": 0, - "type": "struct" - }, - "__main__._n_row.Return": { - "cairo_type": "()", - "type": "type_definition" - }, - "__main__._n_row.SIZEOF_LOCALS": { - "type": "const", - "value": 0 - }, - "__main__._n_row.addr": { - "decorators": [], - "pc": 3482, - "type": "function" - }, - "__main__._n_row.addr.Args": { - "full_name": "__main__._n_row.addr.Args", - "members": {}, - "size": 0, - "type": "struct" - }, - "__main__._n_row.addr.ImplicitArgs": { - "full_name": "__main__._n_row.addr.ImplicitArgs", - "members": { - "pedersen_ptr": { - "cairo_type": "starkware.cairo.common.cairo_builtins.HashBuiltin*", - "offset": 0 - }, - "range_check_ptr": { - "cairo_type": "felt", - "offset": 1 - } - }, - "size": 2, - "type": "struct" - }, - "__main__._n_row.addr.Return": { - "cairo_type": "(res: felt)", - "type": "type_definition" - }, - "__main__._n_row.addr.SIZEOF_LOCALS": { - "type": "const", - "value": 0 - }, - "__main__._n_row.hash2": { - "destination": "starkware.cairo.common.hash.hash2", - "type": "alias" - }, - "__main__._n_row.normalize_address": { - "destination": "starkware.starknet.common.storage.normalize_address", - "type": "alias" - }, - "__main__._n_row.read": { - "decorators": [], - "pc": 3487, - "type": "function" - }, - "__main__._n_row.read.Args": { - "full_name": "__main__._n_row.read.Args", - "members": {}, - "size": 0, - "type": "struct" - }, - "__main__._n_row.read.ImplicitArgs": { - "full_name": "__main__._n_row.read.ImplicitArgs", - "members": { - "pedersen_ptr": { - "cairo_type": "starkware.cairo.common.cairo_builtins.HashBuiltin*", - "offset": 1 - }, - "range_check_ptr": { - "cairo_type": "felt", - "offset": 2 - }, - "syscall_ptr": { - "cairo_type": "felt*", - "offset": 0 - } - }, - "size": 3, - "type": "struct" - }, - "__main__._n_row.read.Return": { - "cairo_type": "(n_row: felt)", - "type": "type_definition" - }, - "__main__._n_row.read.SIZEOF_LOCALS": { - "type": "const", - "value": 0 - }, - "__main__._n_row.storage_read": { - "destination": "starkware.starknet.common.syscalls.storage_read", - "type": "alias" - }, - "__main__._n_row.storage_write": { - "destination": "starkware.starknet.common.syscalls.storage_write", - "type": "alias" - }, - "__main__._n_row.write": { - "decorators": [], - "pc": 3500, - "type": "function" - }, - "__main__._n_row.write.Args": { - "full_name": "__main__._n_row.write.Args", - "members": { - "value": { - "cairo_type": "felt", - "offset": 0 - } - }, - "size": 1, - "type": "struct" - }, - "__main__._n_row.write.ImplicitArgs": { - "full_name": "__main__._n_row.write.ImplicitArgs", - "members": { - "pedersen_ptr": { - "cairo_type": "starkware.cairo.common.cairo_builtins.HashBuiltin*", - "offset": 1 - }, - "range_check_ptr": { - "cairo_type": "felt", - "offset": 2 - }, - "syscall_ptr": { - "cairo_type": "felt*", - "offset": 0 - } - }, - "size": 3, - "type": "struct" - }, - "__main__._n_row.write.Return": { - "cairo_type": "()", - "type": "type_definition" - }, - "__main__._n_row.write.SIZEOF_LOCALS": { - "type": "const", - "value": 0 - }, - "__main__.alloc": { - "destination": "starkware.cairo.common.alloc.alloc", - "type": "alias" - }, - "__main__.approve": { - "decorators": [ - "external" - ], - "pc": 4970, - "type": "function" - }, - "__main__.approve.Args": { - "full_name": "__main__.approve.Args", - "members": { - "to": { - "cairo_type": "felt", - "offset": 0 - }, - "tokenId": { - "cairo_type": "starkware.cairo.common.uint256.Uint256", - "offset": 1 - } - }, - "size": 3, - "type": "struct" - }, - "__main__.approve.ImplicitArgs": { - "full_name": "__main__.approve.ImplicitArgs", - "members": { - "pedersen_ptr": { - "cairo_type": "starkware.cairo.common.cairo_builtins.HashBuiltin*", - "offset": 0 - }, - "range_check_ptr": { - "cairo_type": "felt", - "offset": 2 - }, - "syscall_ptr": { - "cairo_type": "felt*", - "offset": 1 - } - }, - "size": 3, - "type": "struct" - }, - "__main__.approve.Return": { - "cairo_type": "()", - "type": "type_definition" - }, - "__main__.approve.SIZEOF_LOCALS": { - "type": "const", - "value": 0 - }, - "__main__.assert_le": { - "destination": "starkware.cairo.common.math.assert_le", - "type": "alias" - }, - "__main__.assert_uint256_le": { - "destination": "starkware.cairo.common.uint256.assert_uint256_le", - "type": "alias" - }, - "__main__.balanceOf": { - "decorators": [ - "view" - ], - "pc": 4827, - "type": "function" - }, - "__main__.balanceOf.Args": { - "full_name": "__main__.balanceOf.Args", - "members": { - "owner": { - "cairo_type": "felt", - "offset": 0 - } - }, - "size": 1, - "type": "struct" - }, - "__main__.balanceOf.ImplicitArgs": { - "full_name": "__main__.balanceOf.ImplicitArgs", - "members": { - "pedersen_ptr": { - "cairo_type": "starkware.cairo.common.cairo_builtins.HashBuiltin*", - "offset": 1 - }, - "range_check_ptr": { - "cairo_type": "felt", - "offset": 2 - }, - "syscall_ptr": { - "cairo_type": "felt*", - "offset": 0 - } - }, - "size": 3, - "type": "struct" - }, - "__main__.balanceOf.Return": { - "cairo_type": "(balance: starkware.cairo.common.uint256.Uint256)", - "type": "type_definition" - }, - "__main__.balanceOf.SIZEOF_LOCALS": { - "type": "const", - "value": 0 - }, - "__main__.burn": { - "decorators": [ - "external" - ], - "pc": 5134, - "type": "function" - }, - "__main__.burn.Args": { - "full_name": "__main__.burn.Args", - "members": { - "tokenId": { - "cairo_type": "starkware.cairo.common.uint256.Uint256", - "offset": 0 - } - }, - "size": 2, - "type": "struct" - }, - "__main__.burn.ImplicitArgs": { - "full_name": "__main__.burn.ImplicitArgs", - "members": { - "pedersen_ptr": { - "cairo_type": "starkware.cairo.common.cairo_builtins.HashBuiltin*", - "offset": 0 - }, - "range_check_ptr": { - "cairo_type": "felt", - "offset": 2 - }, - "syscall_ptr": { - "cairo_type": "felt*", - "offset": 1 - } - }, - "size": 3, - "type": "struct" - }, - "__main__.burn.Return": { - "cairo_type": "()", - "type": "type_definition" - }, - "__main__.burn.SIZEOF_LOCALS": { - "type": "const", - "value": 0 - }, - "__main__.closeMint": { - "decorators": [ - "external" - ], - "pc": 3788, - "type": "function" - }, - "__main__.closeMint.Args": { - "full_name": "__main__.closeMint.Args", - "members": {}, - "size": 0, - "type": "struct" - }, - "__main__.closeMint.ImplicitArgs": { - "full_name": "__main__.closeMint.ImplicitArgs", - "members": { - "pedersen_ptr": { - "cairo_type": "starkware.cairo.common.cairo_builtins.HashBuiltin*", - "offset": 1 - }, - "range_check_ptr": { - "cairo_type": "felt", - "offset": 2 - }, - "syscall_ptr": { - "cairo_type": "felt*", - "offset": 0 - } - }, - "size": 3, - "type": "struct" - }, - "__main__.closeMint.Return": { - "cairo_type": "()", - "type": "type_definition" - }, - "__main__.closeMint.SIZEOF_LOCALS": { - "type": "const", - "value": 0 - }, - "__main__.contractURI": { - "decorators": [ - "view" - ], - "pc": 4347, - "type": "function" - }, - "__main__.contractURI.Args": { - "full_name": "__main__.contractURI.Args", - "members": {}, - "size": 0, - "type": "struct" - }, - "__main__.contractURI.ImplicitArgs": { - "full_name": "__main__.contractURI.ImplicitArgs", - "members": { - "pedersen_ptr": { - "cairo_type": "starkware.cairo.common.cairo_builtins.HashBuiltin*", - "offset": 1 - }, - "range_check_ptr": { - "cairo_type": "felt", - "offset": 2 - }, - "syscall_ptr": { - "cairo_type": "felt*", - "offset": 0 - } - }, - "size": 3, - "type": "struct" - }, - "__main__.contractURI.Return": { - "cairo_type": "(contractURI_len: felt, contractURI: felt*)", - "type": "type_definition" - }, - "__main__.contractURI.SIZEOF_LOCALS": { - "type": "const", - "value": 0 - }, - "__main__.contractURI.contract_uri_dw": { - "pc": 4358, - "type": "label" - }, - "__main__.default_dict_finalize": { - "destination": "starkware.cairo.common.default_dict.default_dict_finalize", - "type": "alias" - }, - "__main__.default_dict_new": { - "destination": "starkware.cairo.common.default_dict.default_dict_new", - "type": "alias" - }, - "__main__.getApproved": { - "decorators": [ - "view" - ], - "pc": 4898, - "type": "function" - }, - "__main__.getApproved.Args": { - "full_name": "__main__.getApproved.Args", - "members": { - "tokenId": { - "cairo_type": "starkware.cairo.common.uint256.Uint256", - "offset": 0 - } - }, - "size": 2, - "type": "struct" - }, - "__main__.getApproved.ImplicitArgs": { - "full_name": "__main__.getApproved.ImplicitArgs", - "members": { - "pedersen_ptr": { - "cairo_type": "starkware.cairo.common.cairo_builtins.HashBuiltin*", - "offset": 1 - }, - "range_check_ptr": { - "cairo_type": "felt", - "offset": 2 - }, - "syscall_ptr": { - "cairo_type": "felt*", - "offset": 0 - } - }, - "size": 3, - "type": "struct" - }, - "__main__.getApproved.Return": { - "cairo_type": "(approved: felt)", - "type": "type_definition" - }, - "__main__.getApproved.SIZEOF_LOCALS": { - "type": "const", - "value": 0 - }, - "__main__.getCell": { - "decorators": [ - "view" - ], - "pc": 3908, - "type": "function" - }, - "__main__.getCell.Args": { - "full_name": "__main__.getCell.Args", - "members": { - "tokenId": { - "cairo_type": "felt", - "offset": 0 - } - }, - "size": 1, - "type": "struct" - }, - "__main__.getCell.ImplicitArgs": { - "full_name": "__main__.getCell.ImplicitArgs", - "members": { - "pedersen_ptr": { - "cairo_type": "starkware.cairo.common.cairo_builtins.HashBuiltin*", - "offset": 1 - }, - "range_check_ptr": { - "cairo_type": "felt", - "offset": 2 - }, - "syscall_ptr": { - "cairo_type": "felt*", - "offset": 0 - } - }, - "size": 3, - "type": "struct" - }, - "__main__.getCell.Return": { - "cairo_type": "(contractAddress: felt, value: felt, cell_calldata_len: felt, cell_calldata: felt*)", - "type": "type_definition" - }, - "__main__.getCell.SIZEOF_LOCALS": { - "type": "const", - "value": 0 - }, - "__main__.getCellRenderer": { - "decorators": [ - "view" - ], - "pc": 3708, - "type": "function" - }, - "__main__.getCellRenderer.Args": { - "full_name": "__main__.getCellRenderer.Args", - "members": {}, - "size": 0, - "type": "struct" - }, - "__main__.getCellRenderer.ImplicitArgs": { - "full_name": "__main__.getCellRenderer.ImplicitArgs", - "members": { - "pedersen_ptr": { - "cairo_type": "starkware.cairo.common.cairo_builtins.HashBuiltin*", - "offset": 1 - }, - "range_check_ptr": { - "cairo_type": "felt", - "offset": 2 - }, - "syscall_ptr": { - "cairo_type": "felt*", - "offset": 0 - } - }, - "size": 3, - "type": "struct" - }, - "__main__.getCellRenderer.Return": { - "cairo_type": "(address: felt)", - "type": "type_definition" - }, - "__main__.getCellRenderer.SIZEOF_LOCALS": { - "type": "const", - "value": 0 - }, - "__main__.getMaxPerWallet": { - "decorators": [ - "view" - ], - "pc": 3594, - "type": "function" - }, - "__main__.getMaxPerWallet.Args": { - "full_name": "__main__.getMaxPerWallet.Args", - "members": {}, - "size": 0, - "type": "struct" - }, - "__main__.getMaxPerWallet.ImplicitArgs": { - "full_name": "__main__.getMaxPerWallet.ImplicitArgs", - "members": { - "pedersen_ptr": { - "cairo_type": "starkware.cairo.common.cairo_builtins.HashBuiltin*", - "offset": 1 - }, - "range_check_ptr": { - "cairo_type": "felt", - "offset": 2 - }, - "syscall_ptr": { - "cairo_type": "felt*", - "offset": 0 - } - }, - "size": 3, - "type": "struct" - }, - "__main__.getMaxPerWallet.Return": { - "cairo_type": "(max: felt)", - "type": "type_definition" - }, - "__main__.getMaxPerWallet.SIZEOF_LOCALS": { - "type": "const", - "value": 0 - }, - "__main__.getMerkleRoot": { - "decorators": [ - "view" - ], - "pc": 3811, - "type": "function" - }, - "__main__.getMerkleRoot.Args": { - "full_name": "__main__.getMerkleRoot.Args", - "members": {}, - "size": 0, - "type": "struct" - }, - "__main__.getMerkleRoot.ImplicitArgs": { - "full_name": "__main__.getMerkleRoot.ImplicitArgs", - "members": { - "pedersen_ptr": { - "cairo_type": "starkware.cairo.common.cairo_builtins.HashBuiltin*", - "offset": 1 - }, - "range_check_ptr": { - "cairo_type": "felt", - "offset": 2 - }, - "syscall_ptr": { - "cairo_type": "felt*", - "offset": 0 - } - }, - "size": 3, - "type": "struct" - }, - "__main__.getMerkleRoot.Return": { - "cairo_type": "(root: felt)", - "type": "type_definition" - }, - "__main__.getMerkleRoot.SIZEOF_LOCALS": { - "type": "const", - "value": 0 - }, - "__main__.getNRow": { - "decorators": [ - "view" - ], - "pc": 3651, - "type": "function" - }, - "__main__.getNRow.Args": { - "full_name": "__main__.getNRow.Args", - "members": {}, - "size": 0, - "type": "struct" - }, - "__main__.getNRow.ImplicitArgs": { - "full_name": "__main__.getNRow.ImplicitArgs", - "members": { - "pedersen_ptr": { - "cairo_type": "starkware.cairo.common.cairo_builtins.HashBuiltin*", - "offset": 1 - }, - "range_check_ptr": { - "cairo_type": "felt", - "offset": 2 - }, - "syscall_ptr": { - "cairo_type": "felt*", - "offset": 0 - } - }, - "size": 3, - "type": "struct" - }, - "__main__.getNRow.Return": { - "cairo_type": "(n_row: felt)", - "type": "type_definition" - }, - "__main__.getNRow.SIZEOF_LOCALS": { - "type": "const", - "value": 0 - }, - "__main__.get_caller_address": { - "destination": "starkware.starknet.common.syscalls.get_caller_address", - "type": "alias" - }, - "__main__.get_label_location": { - "destination": "starkware.cairo.common.registers.get_label_location", - "type": "alias" - }, - "__main__.initialize": { - "decorators": [ - "external" - ], - "pc": 4525, - "type": "function" - }, - "__main__.initialize.Args": { - "full_name": "__main__.initialize.Args", - "members": { - "max_per_wallet": { - "cairo_type": "felt", - "offset": 4 - }, - "merkle_root": { - "cairo_type": "felt", - "offset": 3 - }, - "name": { - "cairo_type": "felt", - "offset": 0 - }, - "owner": { - "cairo_type": "felt", - "offset": 2 - }, - "renderer_address": { - "cairo_type": "felt", - "offset": 5 - }, - "symbol": { - "cairo_type": "felt", - "offset": 1 - } - }, - "size": 6, - "type": "struct" - }, - "__main__.initialize.ImplicitArgs": { - "full_name": "__main__.initialize.ImplicitArgs", - "members": { - "pedersen_ptr": { - "cairo_type": "starkware.cairo.common.cairo_builtins.HashBuiltin*", - "offset": 1 - }, - "range_check_ptr": { - "cairo_type": "felt", - "offset": 2 - }, - "syscall_ptr": { - "cairo_type": "felt*", - "offset": 0 - } - }, - "size": 3, - "type": "struct" - }, - "__main__.initialize.Return": { - "cairo_type": "()", - "type": "type_definition" - }, - "__main__.initialize.SIZEOF_LOCALS": { - "type": "const", - "value": 0 - }, - "__main__.initialized": { - "type": "namespace" - }, - "__main__.initialized.Args": { - "full_name": "__main__.initialized.Args", - "members": {}, - "size": 0, - "type": "struct" - }, - "__main__.initialized.HashBuiltin": { - "destination": "starkware.cairo.common.cairo_builtins.HashBuiltin", - "type": "alias" - }, - "__main__.initialized.ImplicitArgs": { - "full_name": "__main__.initialized.ImplicitArgs", - "members": {}, - "size": 0, - "type": "struct" - }, - "__main__.initialized.Return": { - "cairo_type": "()", - "type": "type_definition" - }, - "__main__.initialized.SIZEOF_LOCALS": { - "type": "const", - "value": 0 - }, - "__main__.initialized.addr": { - "decorators": [], - "pc": 3452, - "type": "function" - }, - "__main__.initialized.addr.Args": { - "full_name": "__main__.initialized.addr.Args", - "members": {}, - "size": 0, - "type": "struct" - }, - "__main__.initialized.addr.ImplicitArgs": { - "full_name": "__main__.initialized.addr.ImplicitArgs", - "members": { - "pedersen_ptr": { - "cairo_type": "starkware.cairo.common.cairo_builtins.HashBuiltin*", - "offset": 0 - }, - "range_check_ptr": { - "cairo_type": "felt", - "offset": 1 - } - }, - "size": 2, - "type": "struct" - }, - "__main__.initialized.addr.Return": { - "cairo_type": "(res: felt)", - "type": "type_definition" - }, - "__main__.initialized.addr.SIZEOF_LOCALS": { - "type": "const", - "value": 0 - }, - "__main__.initialized.hash2": { - "destination": "starkware.cairo.common.hash.hash2", - "type": "alias" - }, - "__main__.initialized.normalize_address": { - "destination": "starkware.starknet.common.storage.normalize_address", - "type": "alias" - }, - "__main__.initialized.read": { - "decorators": [], - "pc": 3457, - "type": "function" - }, - "__main__.initialized.read.Args": { - "full_name": "__main__.initialized.read.Args", - "members": {}, - "size": 0, - "type": "struct" - }, - "__main__.initialized.read.ImplicitArgs": { - "full_name": "__main__.initialized.read.ImplicitArgs", - "members": { - "pedersen_ptr": { - "cairo_type": "starkware.cairo.common.cairo_builtins.HashBuiltin*", - "offset": 1 - }, - "range_check_ptr": { - "cairo_type": "felt", - "offset": 2 - }, - "syscall_ptr": { - "cairo_type": "felt*", - "offset": 0 - } - }, - "size": 3, - "type": "struct" - }, - "__main__.initialized.read.Return": { - "cairo_type": "(res: felt)", - "type": "type_definition" - }, - "__main__.initialized.read.SIZEOF_LOCALS": { - "type": "const", - "value": 0 - }, - "__main__.initialized.storage_read": { - "destination": "starkware.starknet.common.syscalls.storage_read", - "type": "alias" - }, - "__main__.initialized.storage_write": { - "destination": "starkware.starknet.common.syscalls.storage_write", - "type": "alias" - }, - "__main__.initialized.write": { - "decorators": [], - "pc": 3470, - "type": "function" - }, - "__main__.initialized.write.Args": { - "full_name": "__main__.initialized.write.Args", - "members": { - "value": { - "cairo_type": "felt", - "offset": 0 - } - }, - "size": 1, - "type": "struct" - }, - "__main__.initialized.write.ImplicitArgs": { - "full_name": "__main__.initialized.write.ImplicitArgs", - "members": { - "pedersen_ptr": { - "cairo_type": "starkware.cairo.common.cairo_builtins.HashBuiltin*", - "offset": 1 - }, - "range_check_ptr": { - "cairo_type": "felt", - "offset": 2 - }, - "syscall_ptr": { - "cairo_type": "felt*", - "offset": 0 - } - }, - "size": 3, - "type": "struct" - }, - "__main__.initialized.write.Return": { - "cairo_type": "()", - "type": "type_definition" - }, - "__main__.initialized.write.SIZEOF_LOCALS": { - "type": "const", - "value": 0 - }, - "__main__.isApprovedForAll": { - "decorators": [ - "view" - ], - "pc": 4934, - "type": "function" - }, - "__main__.isApprovedForAll.Args": { - "full_name": "__main__.isApprovedForAll.Args", - "members": { - "operator": { - "cairo_type": "felt", - "offset": 1 - }, - "owner": { - "cairo_type": "felt", - "offset": 0 - } - }, - "size": 2, - "type": "struct" - }, - "__main__.isApprovedForAll.ImplicitArgs": { - "full_name": "__main__.isApprovedForAll.ImplicitArgs", - "members": { - "pedersen_ptr": { - "cairo_type": "starkware.cairo.common.cairo_builtins.HashBuiltin*", - "offset": 1 - }, - "range_check_ptr": { - "cairo_type": "felt", - "offset": 2 - }, - "syscall_ptr": { - "cairo_type": "felt*", - "offset": 0 - } - }, - "size": 3, - "type": "struct" - }, - "__main__.isApprovedForAll.Return": { - "cairo_type": "(isApproved: felt)", - "type": "type_definition" - }, - "__main__.isApprovedForAll.SIZEOF_LOCALS": { - "type": "const", - "value": 0 - }, - "__main__.is_initialized": { - "decorators": [ - "view" - ], - "pc": 4581, - "type": "function" - }, - "__main__.is_initialized.Args": { - "full_name": "__main__.is_initialized.Args", - "members": {}, - "size": 0, - "type": "struct" - }, - "__main__.is_initialized.ImplicitArgs": { - "full_name": "__main__.is_initialized.ImplicitArgs", - "members": { - "pedersen_ptr": { - "cairo_type": "starkware.cairo.common.cairo_builtins.HashBuiltin*", - "offset": 1 - }, - "range_check_ptr": { - "cairo_type": "felt", - "offset": 2 - }, - "syscall_ptr": { - "cairo_type": "felt*", - "offset": 0 - } - }, - "size": 3, - "type": "struct" - }, - "__main__.is_initialized.Return": { - "cairo_type": "(res: felt)", - "type": "type_definition" - }, - "__main__.is_initialized.SIZEOF_LOCALS": { - "type": "const", - "value": 0 - }, - "__main__.is_not_zero": { - "destination": "starkware.cairo.common.math_cmp.is_not_zero", - "type": "alias" - }, - "__main__.mintAndSetPublic": { - "decorators": [ - "external" - ], - "pc": 4213, - "type": "function" - }, - "__main__.mintAndSetPublic.Args": { - "full_name": "__main__.mintAndSetPublic.Args", - "members": { - "cellCalldata": { - "cairo_type": "felt*", - "offset": 7 - }, - "cellCalldata_len": { - "cairo_type": "felt", - "offset": 6 - }, - "contractAddress": { - "cairo_type": "felt", - "offset": 4 - }, - "proof": { - "cairo_type": "felt*", - "offset": 3 - }, - "proof_len": { - "cairo_type": "felt", - "offset": 2 - }, - "tokenId": { - "cairo_type": "starkware.cairo.common.uint256.Uint256", - "offset": 0 - }, - "value": { - "cairo_type": "felt", - "offset": 5 - } - }, - "size": 8, - "type": "struct" - }, - "__main__.mintAndSetPublic.ImplicitArgs": { - "full_name": "__main__.mintAndSetPublic.ImplicitArgs", - "members": { - "pedersen_ptr": { - "cairo_type": "starkware.cairo.common.cairo_builtins.HashBuiltin*", - "offset": 0 - }, - "range_check_ptr": { - "cairo_type": "felt", - "offset": 2 - }, - "syscall_ptr": { - "cairo_type": "felt*", - "offset": 1 - } - }, - "size": 3, - "type": "struct" - }, - "__main__.mintAndSetPublic.Return": { - "cairo_type": "()", - "type": "type_definition" - }, - "__main__.mintAndSetPublic.SIZEOF_LOCALS": { - "type": "const", - "value": 0 - }, - "__main__.mintOwner": { - "decorators": [ - "external" - ], - "pc": 5100, - "type": "function" - }, - "__main__.mintOwner.Args": { - "full_name": "__main__.mintOwner.Args", - "members": { - "to": { - "cairo_type": "felt", - "offset": 0 - }, - "tokenId": { - "cairo_type": "starkware.cairo.common.uint256.Uint256", - "offset": 1 - } - }, - "size": 3, - "type": "struct" - }, - "__main__.mintOwner.ImplicitArgs": { - "full_name": "__main__.mintOwner.ImplicitArgs", - "members": { - "pedersen_ptr": { - "cairo_type": "starkware.cairo.common.cairo_builtins.HashBuiltin*", - "offset": 0 - }, - "range_check_ptr": { - "cairo_type": "felt", - "offset": 2 - }, - "syscall_ptr": { - "cairo_type": "felt*", - "offset": 1 - } - }, - "size": 3, - "type": "struct" - }, - "__main__.mintOwner.Return": { - "cairo_type": "()", - "type": "type_definition" - }, - "__main__.mintOwner.SIZEOF_LOCALS": { - "type": "const", - "value": 0 - }, - "__main__.mintPublic": { - "decorators": [ - "external" - ], - "pc": 4141, - "type": "function" - }, - "__main__.mintPublic.Args": { - "full_name": "__main__.mintPublic.Args", - "members": { - "proof": { - "cairo_type": "felt*", - "offset": 3 - }, - "proof_len": { - "cairo_type": "felt", - "offset": 2 - }, - "tokenId": { - "cairo_type": "starkware.cairo.common.uint256.Uint256", - "offset": 0 - } - }, - "size": 4, - "type": "struct" - }, - "__main__.mintPublic.ImplicitArgs": { - "full_name": "__main__.mintPublic.ImplicitArgs", - "members": { - "pedersen_ptr": { - "cairo_type": "starkware.cairo.common.cairo_builtins.HashBuiltin*", - "offset": 0 - }, - "range_check_ptr": { - "cairo_type": "felt", - "offset": 2 - }, - "syscall_ptr": { - "cairo_type": "felt*", - "offset": 1 - } - }, - "size": 3, - "type": "struct" - }, - "__main__.mintPublic.Return": { - "cairo_type": "()", - "type": "type_definition" - }, - "__main__.mintPublic.SIZEOF_LOCALS": { - "type": "const", - "value": 0 - }, - "__main__.name": { - "decorators": [ - "view" - ], - "pc": 4767, - "type": "function" - }, - "__main__.name.Args": { - "full_name": "__main__.name.Args", - "members": {}, - "size": 0, - "type": "struct" - }, - "__main__.name.ImplicitArgs": { - "full_name": "__main__.name.ImplicitArgs", - "members": { - "pedersen_ptr": { - "cairo_type": "starkware.cairo.common.cairo_builtins.HashBuiltin*", - "offset": 1 - }, - "range_check_ptr": { - "cairo_type": "felt", - "offset": 2 - }, - "syscall_ptr": { - "cairo_type": "felt*", - "offset": 0 - } - }, - "size": 3, - "type": "struct" - }, - "__main__.name.Return": { - "cairo_type": "(name: felt)", - "type": "type_definition" - }, - "__main__.name.SIZEOF_LOCALS": { - "type": "const", - "value": 0 - }, - "__main__.openMint": { - "decorators": [ - "external" - ], - "pc": 3765, - "type": "function" - }, - "__main__.openMint.Args": { - "full_name": "__main__.openMint.Args", - "members": {}, - "size": 0, - "type": "struct" - }, - "__main__.openMint.ImplicitArgs": { - "full_name": "__main__.openMint.ImplicitArgs", - "members": { - "pedersen_ptr": { - "cairo_type": "starkware.cairo.common.cairo_builtins.HashBuiltin*", - "offset": 1 - }, - "range_check_ptr": { - "cairo_type": "felt", - "offset": 2 - }, - "syscall_ptr": { - "cairo_type": "felt*", - "offset": 0 - } - }, - "size": 3, - "type": "struct" - }, - "__main__.openMint.Return": { - "cairo_type": "()", - "type": "type_definition" - }, - "__main__.openMint.SIZEOF_LOCALS": { - "type": "const", - "value": 0 - }, - "__main__.owner": { - "decorators": [ - "view" - ], - "pc": 3512, - "type": "function" - }, - "__main__.owner.Args": { - "full_name": "__main__.owner.Args", - "members": {}, - "size": 0, - "type": "struct" - }, - "__main__.owner.ImplicitArgs": { - "full_name": "__main__.owner.ImplicitArgs", - "members": { - "pedersen_ptr": { - "cairo_type": "starkware.cairo.common.cairo_builtins.HashBuiltin*", - "offset": 1 - }, - "range_check_ptr": { - "cairo_type": "felt", - "offset": 2 - }, - "syscall_ptr": { - "cairo_type": "felt*", - "offset": 0 - } - }, - "size": 3, - "type": "struct" - }, - "__main__.owner.Return": { - "cairo_type": "(owner: felt)", - "type": "type_definition" - }, - "__main__.owner.SIZEOF_LOCALS": { - "type": "const", - "value": 0 - }, - "__main__.ownerOf": { - "decorators": [ - "view" - ], - "pc": 4862, - "type": "function" - }, - "__main__.ownerOf.Args": { - "full_name": "__main__.ownerOf.Args", - "members": { - "tokenId": { - "cairo_type": "starkware.cairo.common.uint256.Uint256", - "offset": 0 - } - }, - "size": 2, - "type": "struct" - }, - "__main__.ownerOf.ImplicitArgs": { - "full_name": "__main__.ownerOf.ImplicitArgs", - "members": { - "pedersen_ptr": { - "cairo_type": "starkware.cairo.common.cairo_builtins.HashBuiltin*", - "offset": 1 - }, - "range_check_ptr": { - "cairo_type": "felt", - "offset": 2 - }, - "syscall_ptr": { - "cairo_type": "felt*", - "offset": 0 - } - }, - "size": 3, - "type": "struct" - }, - "__main__.ownerOf.Return": { - "cairo_type": "(owner: felt)", - "type": "type_definition" - }, - "__main__.ownerOf.SIZEOF_LOCALS": { - "type": "const", - "value": 0 - }, - "__main__.renderCell": { - "decorators": [ - "view" - ], - "pc": 3958, - "type": "function" - }, - "__main__.renderCell.Args": { - "full_name": "__main__.renderCell.Args", - "members": { - "tokenId": { - "cairo_type": "felt", - "offset": 0 - } - }, - "size": 1, - "type": "struct" - }, - "__main__.renderCell.ImplicitArgs": { - "full_name": "__main__.renderCell.ImplicitArgs", - "members": { - "pedersen_ptr": { - "cairo_type": "starkware.cairo.common.cairo_builtins.HashBuiltin*", - "offset": 1 - }, - "range_check_ptr": { - "cairo_type": "felt", - "offset": 2 - }, - "syscall_ptr": { - "cairo_type": "felt*", - "offset": 0 - } - }, - "size": 3, - "type": "struct" - }, - "__main__.renderCell.Return": { - "cairo_type": "(cell: sheet.library.CellRendered)", - "type": "type_definition" - }, - "__main__.renderCell.SIZEOF_LOCALS": { - "type": "const", - "value": 6 - }, - "__main__.renderCellValue": { - "decorators": [ - "view" - ], - "pc": 4020, - "type": "function" - }, - "__main__.renderCellValue.Args": { - "full_name": "__main__.renderCellValue.Args", - "members": { - "tokenId": { - "cairo_type": "felt", - "offset": 0 - } - }, - "size": 1, - "type": "struct" - }, - "__main__.renderCellValue.ImplicitArgs": { - "full_name": "__main__.renderCellValue.ImplicitArgs", - "members": { - "pedersen_ptr": { - "cairo_type": "starkware.cairo.common.cairo_builtins.HashBuiltin*", - "offset": 1 - }, - "range_check_ptr": { - "cairo_type": "felt", - "offset": 2 - }, - "syscall_ptr": { - "cairo_type": "felt*", - "offset": 0 - } - }, - "size": 3, - "type": "struct" - }, - "__main__.renderCellValue.Return": { - "cairo_type": "(value: felt)", - "type": "type_definition" - }, - "__main__.renderCellValue.SIZEOF_LOCALS": { - "type": "const", - "value": 0 - }, - "__main__.renderGrid": { - "decorators": [ - "view" - ], - "pc": 4058, - "type": "function" - }, - "__main__.renderGrid.Args": { - "full_name": "__main__.renderGrid.Args", - "members": {}, - "size": 0, - "type": "struct" - }, - "__main__.renderGrid.ImplicitArgs": { - "full_name": "__main__.renderGrid.ImplicitArgs", - "members": { - "pedersen_ptr": { - "cairo_type": "starkware.cairo.common.cairo_builtins.HashBuiltin*", - "offset": 1 - }, - "range_check_ptr": { - "cairo_type": "felt", - "offset": 2 - }, - "syscall_ptr": { - "cairo_type": "felt*", - "offset": 0 - } - }, - "size": 3, - "type": "struct" - }, - "__main__.renderGrid.Return": { - "cairo_type": "(cells_len: felt, cells: sheet.library.CellRendered*)", - "type": "type_definition" - }, - "__main__.renderGrid.SIZEOF_LOCALS": { - "type": "const", - "value": 6 - }, - "__main__.safeTransferFrom": { - "decorators": [ - "external" - ], - "pc": 5057, - "type": "function" - }, - "__main__.safeTransferFrom.Args": { - "full_name": "__main__.safeTransferFrom.Args", - "members": { - "data": { - "cairo_type": "felt*", - "offset": 5 - }, - "data_len": { - "cairo_type": "felt", - "offset": 4 - }, - "from_": { - "cairo_type": "felt", - "offset": 0 - }, - "to": { - "cairo_type": "felt", - "offset": 1 - }, - "tokenId": { - "cairo_type": "starkware.cairo.common.uint256.Uint256", - "offset": 2 - } - }, - "size": 6, - "type": "struct" - }, - "__main__.safeTransferFrom.ImplicitArgs": { - "full_name": "__main__.safeTransferFrom.ImplicitArgs", - "members": { - "pedersen_ptr": { - "cairo_type": "starkware.cairo.common.cairo_builtins.HashBuiltin*", - "offset": 0 - }, - "range_check_ptr": { - "cairo_type": "felt", - "offset": 2 - }, - "syscall_ptr": { - "cairo_type": "felt*", - "offset": 1 - } - }, - "size": 3, - "type": "struct" - }, - "__main__.safeTransferFrom.Return": { - "cairo_type": "()", - "type": "type_definition" - }, - "__main__.safeTransferFrom.SIZEOF_LOCALS": { - "type": "const", - "value": 0 - }, - "__main__.setApprovalForAll": { - "decorators": [ - "external" - ], - "pc": 4999, - "type": "function" - }, - "__main__.setApprovalForAll.Args": { - "full_name": "__main__.setApprovalForAll.Args", - "members": { - "approved": { - "cairo_type": "felt", - "offset": 1 - }, - "operator": { - "cairo_type": "felt", - "offset": 0 - } - }, - "size": 2, - "type": "struct" - }, - "__main__.setApprovalForAll.ImplicitArgs": { - "full_name": "__main__.setApprovalForAll.ImplicitArgs", - "members": { - "pedersen_ptr": { - "cairo_type": "starkware.cairo.common.cairo_builtins.HashBuiltin*", - "offset": 1 - }, - "range_check_ptr": { - "cairo_type": "felt", - "offset": 2 - }, - "syscall_ptr": { - "cairo_type": "felt*", - "offset": 0 - } - }, - "size": 3, - "type": "struct" - }, - "__main__.setApprovalForAll.Return": { - "cairo_type": "()", - "type": "type_definition" - }, - "__main__.setApprovalForAll.SIZEOF_LOCALS": { - "type": "const", - "value": 0 - }, - "__main__.setCell": { - "decorators": [ - "external" - ], - "pc": 3841, - "type": "function" - }, - "__main__.setCell.Args": { - "full_name": "__main__.setCell.Args", - "members": { - "cell_calldata": { - "cairo_type": "felt*", - "offset": 4 - }, - "cell_calldata_len": { - "cairo_type": "felt", - "offset": 3 - }, - "contractAddress": { - "cairo_type": "felt", - "offset": 1 - }, - "tokenId": { - "cairo_type": "felt", - "offset": 0 - }, - "value": { - "cairo_type": "felt", - "offset": 2 - } - }, - "size": 5, - "type": "struct" - }, - "__main__.setCell.ImplicitArgs": { - "full_name": "__main__.setCell.ImplicitArgs", - "members": { - "pedersen_ptr": { - "cairo_type": "starkware.cairo.common.cairo_builtins.HashBuiltin*", - "offset": 1 - }, - "range_check_ptr": { - "cairo_type": "felt", - "offset": 2 - }, - "syscall_ptr": { - "cairo_type": "felt*", - "offset": 0 - } - }, - "size": 3, - "type": "struct" - }, - "__main__.setCell.Return": { - "cairo_type": "()", - "type": "type_definition" - }, - "__main__.setCell.SIZEOF_LOCALS": { - "type": "const", - "value": 0 - }, - "__main__.setCellRenderer": { - "decorators": [ - "external" - ], - "pc": 3681, - "type": "function" - }, - "__main__.setCellRenderer.Args": { - "full_name": "__main__.setCellRenderer.Args", - "members": { - "address": { - "cairo_type": "felt", - "offset": 0 - } - }, - "size": 1, - "type": "struct" - }, - "__main__.setCellRenderer.ImplicitArgs": { - "full_name": "__main__.setCellRenderer.ImplicitArgs", - "members": { - "pedersen_ptr": { - "cairo_type": "starkware.cairo.common.cairo_builtins.HashBuiltin*", - "offset": 1 - }, - "range_check_ptr": { - "cairo_type": "felt", - "offset": 2 - }, - "syscall_ptr": { - "cairo_type": "felt*", - "offset": 0 - } - }, - "size": 3, - "type": "struct" - }, - "__main__.setCellRenderer.Return": { - "cairo_type": "()", - "type": "type_definition" - }, - "__main__.setCellRenderer.SIZEOF_LOCALS": { - "type": "const", - "value": 0 - }, - "__main__.setMaxPerWallet": { - "decorators": [ - "external" - ], - "pc": 3567, - "type": "function" - }, - "__main__.setMaxPerWallet.Args": { - "full_name": "__main__.setMaxPerWallet.Args", - "members": { - "max": { - "cairo_type": "felt", - "offset": 0 - } - }, - "size": 1, - "type": "struct" - }, - "__main__.setMaxPerWallet.ImplicitArgs": { - "full_name": "__main__.setMaxPerWallet.ImplicitArgs", - "members": { - "pedersen_ptr": { - "cairo_type": "starkware.cairo.common.cairo_builtins.HashBuiltin*", - "offset": 1 - }, - "range_check_ptr": { - "cairo_type": "felt", - "offset": 2 - }, - "syscall_ptr": { - "cairo_type": "felt*", - "offset": 0 - } - }, - "size": 3, - "type": "struct" - }, - "__main__.setMaxPerWallet.Return": { - "cairo_type": "()", - "type": "type_definition" - }, - "__main__.setMaxPerWallet.SIZEOF_LOCALS": { - "type": "const", - "value": 0 - }, - "__main__.setMerkleRoot": { - "decorators": [ - "external" - ], - "pc": 3738, - "type": "function" - }, - "__main__.setMerkleRoot.Args": { - "full_name": "__main__.setMerkleRoot.Args", - "members": { - "root": { - "cairo_type": "felt", - "offset": 0 - } - }, - "size": 1, - "type": "struct" - }, - "__main__.setMerkleRoot.ImplicitArgs": { - "full_name": "__main__.setMerkleRoot.ImplicitArgs", - "members": { - "pedersen_ptr": { - "cairo_type": "starkware.cairo.common.cairo_builtins.HashBuiltin*", - "offset": 1 - }, - "range_check_ptr": { - "cairo_type": "felt", - "offset": 2 - }, - "syscall_ptr": { - "cairo_type": "felt*", - "offset": 0 - } - }, - "size": 3, - "type": "struct" - }, - "__main__.setMerkleRoot.Return": { - "cairo_type": "()", - "type": "type_definition" - }, - "__main__.setMerkleRoot.SIZEOF_LOCALS": { - "type": "const", - "value": 0 - }, - "__main__.setNRow": { - "decorators": [ - "external" - ], - "pc": 3624, - "type": "function" - }, - "__main__.setNRow.Args": { - "full_name": "__main__.setNRow.Args", - "members": { - "n_row": { - "cairo_type": "felt", - "offset": 0 - } - }, - "size": 1, - "type": "struct" - }, - "__main__.setNRow.ImplicitArgs": { - "full_name": "__main__.setNRow.ImplicitArgs", - "members": { - "pedersen_ptr": { - "cairo_type": "starkware.cairo.common.cairo_builtins.HashBuiltin*", - "offset": 1 - }, - "range_check_ptr": { - "cairo_type": "felt", - "offset": 2 - }, - "syscall_ptr": { - "cairo_type": "felt*", - "offset": 0 - } - }, - "size": 3, - "type": "struct" - }, - "__main__.setNRow.Return": { - "cairo_type": "()", - "type": "type_definition" - }, - "__main__.setNRow.SIZEOF_LOCALS": { - "type": "const", - "value": 0 - }, - "__main__.split_64": { - "destination": "starkware.cairo.common.uint256.split_64", - "type": "alias" - }, - "__main__.supportsInterface": { - "decorators": [ - "view" - ], - "pc": 4733, - "type": "function" - }, - "__main__.supportsInterface.Args": { - "full_name": "__main__.supportsInterface.Args", - "members": { - "interfaceId": { - "cairo_type": "felt", - "offset": 0 - } - }, - "size": 1, - "type": "struct" - }, - "__main__.supportsInterface.ImplicitArgs": { - "full_name": "__main__.supportsInterface.ImplicitArgs", - "members": { - "pedersen_ptr": { - "cairo_type": "starkware.cairo.common.cairo_builtins.HashBuiltin*", - "offset": 1 - }, - "range_check_ptr": { - "cairo_type": "felt", - "offset": 2 - }, - "syscall_ptr": { - "cairo_type": "felt*", - "offset": 0 - } - }, - "size": 3, - "type": "struct" - }, - "__main__.supportsInterface.Return": { - "cairo_type": "(success: felt)", - "type": "type_definition" - }, - "__main__.supportsInterface.SIZEOF_LOCALS": { - "type": "const", - "value": 0 - }, - "__main__.symbol": { - "decorators": [ - "view" - ], - "pc": 4797, - "type": "function" - }, - "__main__.symbol.Args": { - "full_name": "__main__.symbol.Args", - "members": {}, - "size": 0, - "type": "struct" - }, - "__main__.symbol.ImplicitArgs": { - "full_name": "__main__.symbol.ImplicitArgs", - "members": { - "pedersen_ptr": { - "cairo_type": "starkware.cairo.common.cairo_builtins.HashBuiltin*", - "offset": 1 - }, - "range_check_ptr": { - "cairo_type": "felt", - "offset": 2 - }, - "syscall_ptr": { - "cairo_type": "felt*", - "offset": 0 - } - }, - "size": 3, - "type": "struct" - }, - "__main__.symbol.Return": { - "cairo_type": "(symbol: felt)", - "type": "type_definition" - }, - "__main__.symbol.SIZEOF_LOCALS": { - "type": "const", - "value": 0 - }, - "__main__.tokenByIndex": { - "decorators": [ - "view" - ], - "pc": 4647, - "type": "function" - }, - "__main__.tokenByIndex.Args": { - "full_name": "__main__.tokenByIndex.Args", - "members": { - "index": { - "cairo_type": "starkware.cairo.common.uint256.Uint256", - "offset": 0 - } - }, - "size": 2, - "type": "struct" - }, - "__main__.tokenByIndex.ImplicitArgs": { - "full_name": "__main__.tokenByIndex.ImplicitArgs", - "members": { - "pedersen_ptr": { - "cairo_type": "starkware.cairo.common.cairo_builtins.HashBuiltin*", - "offset": 0 - }, - "range_check_ptr": { - "cairo_type": "felt", - "offset": 2 - }, - "syscall_ptr": { - "cairo_type": "felt*", - "offset": 1 - } - }, - "size": 3, - "type": "struct" - }, - "__main__.tokenByIndex.Return": { - "cairo_type": "(tokenId: starkware.cairo.common.uint256.Uint256)", - "type": "type_definition" - }, - "__main__.tokenByIndex.SIZEOF_LOCALS": { - "type": "const", - "value": 0 - }, - "__main__.tokenOfOwnerByIndex": { - "decorators": [ - "view" - ], - "pc": 4689, - "type": "function" - }, - "__main__.tokenOfOwnerByIndex.Args": { - "full_name": "__main__.tokenOfOwnerByIndex.Args", - "members": { - "index": { - "cairo_type": "starkware.cairo.common.uint256.Uint256", - "offset": 1 - }, - "owner": { - "cairo_type": "felt", - "offset": 0 - } - }, - "size": 3, - "type": "struct" - }, - "__main__.tokenOfOwnerByIndex.ImplicitArgs": { - "full_name": "__main__.tokenOfOwnerByIndex.ImplicitArgs", - "members": { - "pedersen_ptr": { - "cairo_type": "starkware.cairo.common.cairo_builtins.HashBuiltin*", - "offset": 0 - }, - "range_check_ptr": { - "cairo_type": "felt", - "offset": 2 - }, - "syscall_ptr": { - "cairo_type": "felt*", - "offset": 1 - } - }, - "size": 3, - "type": "struct" - }, - "__main__.tokenOfOwnerByIndex.Return": { - "cairo_type": "(tokenId: starkware.cairo.common.uint256.Uint256)", - "type": "type_definition" - }, - "__main__.tokenOfOwnerByIndex.SIZEOF_LOCALS": { - "type": "const", - "value": 0 - }, - "__main__.tokenURI": { - "decorators": [ - "view" - ], - "pc": 4292, - "type": "function" - }, - "__main__.tokenURI.Args": { - "full_name": "__main__.tokenURI.Args", - "members": { - "tokenId": { - "cairo_type": "starkware.cairo.common.uint256.Uint256", - "offset": 0 - } - }, - "size": 2, - "type": "struct" - }, - "__main__.tokenURI.ImplicitArgs": { - "full_name": "__main__.tokenURI.ImplicitArgs", - "members": { - "pedersen_ptr": { - "cairo_type": "starkware.cairo.common.cairo_builtins.HashBuiltin*", - "offset": 1 - }, - "range_check_ptr": { - "cairo_type": "felt", - "offset": 2 - }, - "syscall_ptr": { - "cairo_type": "felt*", - "offset": 0 - } - }, - "size": 3, - "type": "struct" - }, - "__main__.tokenURI.Return": { - "cairo_type": "(token_uri_len: felt, token_uri: felt*)", - "type": "type_definition" - }, - "__main__.tokenURI.SIZEOF_LOCALS": { - "type": "const", - "value": 0 - }, - "__main__.totalSupply": { - "decorators": [ - "view" - ], - "pc": 4611, - "type": "function" - }, - "__main__.totalSupply.Args": { - "full_name": "__main__.totalSupply.Args", - "members": {}, - "size": 0, - "type": "struct" - }, - "__main__.totalSupply.ImplicitArgs": { - "full_name": "__main__.totalSupply.ImplicitArgs", - "members": { - "pedersen_ptr": { - "cairo_type": "starkware.cairo.common.cairo_builtins.HashBuiltin*", - "offset": 0 - }, - "range_check_ptr": { - "cairo_type": "felt", - "offset": 2 - }, - "syscall_ptr": { - "cairo_type": "felt*", - "offset": 1 - } - }, - "size": 3, - "type": "struct" - }, - "__main__.totalSupply.Return": { - "cairo_type": "(totalSupply: starkware.cairo.common.uint256.Uint256)", - "type": "type_definition" - }, - "__main__.totalSupply.SIZEOF_LOCALS": { - "type": "const", - "value": 0 - }, - "__main__.transferFrom": { - "decorators": [ - "external" - ], - "pc": 5026, - "type": "function" - }, - "__main__.transferFrom.Args": { - "full_name": "__main__.transferFrom.Args", - "members": { - "from_": { - "cairo_type": "felt", - "offset": 0 - }, - "to": { - "cairo_type": "felt", - "offset": 1 - }, - "tokenId": { - "cairo_type": "starkware.cairo.common.uint256.Uint256", - "offset": 2 - } - }, - "size": 4, - "type": "struct" - }, - "__main__.transferFrom.ImplicitArgs": { - "full_name": "__main__.transferFrom.ImplicitArgs", - "members": { - "pedersen_ptr": { - "cairo_type": "starkware.cairo.common.cairo_builtins.HashBuiltin*", - "offset": 0 - }, - "range_check_ptr": { - "cairo_type": "felt", - "offset": 2 - }, - "syscall_ptr": { - "cairo_type": "felt*", - "offset": 1 - } - }, - "size": 3, - "type": "struct" - }, - "__main__.transferFrom.Return": { - "cairo_type": "()", - "type": "type_definition" - }, - "__main__.transferFrom.SIZEOF_LOCALS": { - "type": "const", - "value": 0 - }, - "__main__.transferOwnership": { - "decorators": [ - "external" - ], - "pc": 3542, - "type": "function" - }, - "__main__.transferOwnership.Args": { - "full_name": "__main__.transferOwnership.Args", - "members": { - "new_owner": { - "cairo_type": "felt", - "offset": 0 - } - }, - "size": 1, - "type": "struct" - }, - "__main__.transferOwnership.ImplicitArgs": { - "full_name": "__main__.transferOwnership.ImplicitArgs", - "members": { - "pedersen_ptr": { - "cairo_type": "starkware.cairo.common.cairo_builtins.HashBuiltin*", - "offset": 1 - }, - "range_check_ptr": { - "cairo_type": "felt", - "offset": 2 - }, - "syscall_ptr": { - "cairo_type": "felt*", - "offset": 0 - } - }, - "size": 3, - "type": "struct" - }, - "__main__.transferOwnership.Return": { - "cairo_type": "()", - "type": "type_definition" - }, - "__main__.transferOwnership.SIZEOF_LOCALS": { - "type": "const", - "value": 0 - }, - "__wrappers__.approve": { - "decorators": [ - "external" - ], - "pc": 4979, - "type": "function" - }, - "__wrappers__.approve.Args": { - "full_name": "__wrappers__.approve.Args", - "members": {}, - "size": 0, - "type": "struct" - }, - "__wrappers__.approve.ImplicitArgs": { - "full_name": "__wrappers__.approve.ImplicitArgs", - "members": {}, - "size": 0, - "type": "struct" - }, - "__wrappers__.approve.Return": { - "cairo_type": "(syscall_ptr: felt*, pedersen_ptr: starkware.cairo.common.cairo_builtins.HashBuiltin*, range_check_ptr: felt, size: felt, retdata: felt*)", - "type": "type_definition" - }, - "__wrappers__.approve.SIZEOF_LOCALS": { - "type": "const", - "value": 0 - }, - "__wrappers__.approve.__wrapped_func": { - "destination": "__main__.approve", - "type": "alias" - }, - "__wrappers__.approve_encode_return.memcpy": { - "destination": "starkware.cairo.common.memcpy.memcpy", - "type": "alias" - }, - "__wrappers__.balanceOf": { - "decorators": [ - "view" - ], - "pc": 4844, - "type": "function" - }, - "__wrappers__.balanceOf.Args": { - "full_name": "__wrappers__.balanceOf.Args", - "members": {}, - "size": 0, - "type": "struct" - }, - "__wrappers__.balanceOf.ImplicitArgs": { - "full_name": "__wrappers__.balanceOf.ImplicitArgs", - "members": {}, - "size": 0, - "type": "struct" - }, - "__wrappers__.balanceOf.Return": { - "cairo_type": "(syscall_ptr: felt*, pedersen_ptr: starkware.cairo.common.cairo_builtins.HashBuiltin*, range_check_ptr: felt, size: felt, retdata: felt*)", - "type": "type_definition" - }, - "__wrappers__.balanceOf.SIZEOF_LOCALS": { - "type": "const", - "value": 0 - }, - "__wrappers__.balanceOf.__wrapped_func": { - "destination": "__main__.balanceOf", - "type": "alias" - }, - "__wrappers__.balanceOf_encode_return": { - "decorators": [], - "pc": 4834, - "type": "function" - }, - "__wrappers__.balanceOf_encode_return.Args": { - "full_name": "__wrappers__.balanceOf_encode_return.Args", - "members": { - "range_check_ptr": { - "cairo_type": "felt", - "offset": 2 - }, - "ret_value": { - "cairo_type": "(balance: starkware.cairo.common.uint256.Uint256)", - "offset": 0 - } - }, - "size": 3, - "type": "struct" - }, - "__wrappers__.balanceOf_encode_return.ImplicitArgs": { - "full_name": "__wrappers__.balanceOf_encode_return.ImplicitArgs", - "members": {}, - "size": 0, - "type": "struct" - }, - "__wrappers__.balanceOf_encode_return.Return": { - "cairo_type": "(range_check_ptr: felt, data_len: felt, data: felt*)", - "type": "type_definition" - }, - "__wrappers__.balanceOf_encode_return.SIZEOF_LOCALS": { - "type": "const", - "value": 1 - }, - "__wrappers__.balanceOf_encode_return.memcpy": { - "destination": "starkware.cairo.common.memcpy.memcpy", - "type": "alias" - }, - "__wrappers__.burn": { - "decorators": [ - "external" - ], - "pc": 5146, - "type": "function" - }, - "__wrappers__.burn.Args": { - "full_name": "__wrappers__.burn.Args", - "members": {}, - "size": 0, - "type": "struct" - }, - "__wrappers__.burn.ImplicitArgs": { - "full_name": "__wrappers__.burn.ImplicitArgs", - "members": {}, - "size": 0, - "type": "struct" - }, - "__wrappers__.burn.Return": { - "cairo_type": "(syscall_ptr: felt*, pedersen_ptr: starkware.cairo.common.cairo_builtins.HashBuiltin*, range_check_ptr: felt, size: felt, retdata: felt*)", - "type": "type_definition" - }, - "__wrappers__.burn.SIZEOF_LOCALS": { - "type": "const", - "value": 0 - }, - "__wrappers__.burn.__wrapped_func": { - "destination": "__main__.burn", - "type": "alias" - }, - "__wrappers__.burn_encode_return.memcpy": { - "destination": "starkware.cairo.common.memcpy.memcpy", - "type": "alias" - }, - "__wrappers__.closeMint": { - "decorators": [ - "external" - ], - "pc": 3796, - "type": "function" - }, - "__wrappers__.closeMint.Args": { - "full_name": "__wrappers__.closeMint.Args", - "members": {}, - "size": 0, - "type": "struct" - }, - "__wrappers__.closeMint.ImplicitArgs": { - "full_name": "__wrappers__.closeMint.ImplicitArgs", - "members": {}, - "size": 0, - "type": "struct" - }, - "__wrappers__.closeMint.Return": { - "cairo_type": "(syscall_ptr: felt*, pedersen_ptr: starkware.cairo.common.cairo_builtins.HashBuiltin*, range_check_ptr: felt, size: felt, retdata: felt*)", - "type": "type_definition" - }, - "__wrappers__.closeMint.SIZEOF_LOCALS": { - "type": "const", - "value": 0 - }, - "__wrappers__.closeMint.__wrapped_func": { - "destination": "__main__.closeMint", - "type": "alias" - }, - "__wrappers__.closeMint_encode_return.memcpy": { - "destination": "starkware.cairo.common.memcpy.memcpy", - "type": "alias" - }, - "__wrappers__.contractURI": { - "decorators": [ - "view" - ], - "pc": 4506, - "type": "function" - }, - "__wrappers__.contractURI.Args": { - "full_name": "__wrappers__.contractURI.Args", - "members": {}, - "size": 0, - "type": "struct" - }, - "__wrappers__.contractURI.ImplicitArgs": { - "full_name": "__wrappers__.contractURI.ImplicitArgs", - "members": {}, - "size": 0, - "type": "struct" - }, - "__wrappers__.contractURI.Return": { - "cairo_type": "(syscall_ptr: felt*, pedersen_ptr: starkware.cairo.common.cairo_builtins.HashBuiltin*, range_check_ptr: felt, size: felt, retdata: felt*)", - "type": "type_definition" - }, - "__wrappers__.contractURI.SIZEOF_LOCALS": { - "type": "const", - "value": 2 - }, - "__wrappers__.contractURI.__wrapped_func": { - "destination": "__main__.contractURI", - "type": "alias" - }, - "__wrappers__.contractURI_encode_return": { - "decorators": [], - "pc": 4487, - "type": "function" - }, - "__wrappers__.contractURI_encode_return.Args": { - "full_name": "__wrappers__.contractURI_encode_return.Args", - "members": { - "range_check_ptr": { - "cairo_type": "felt", - "offset": 2 - }, - "ret_value": { - "cairo_type": "(contractURI_len: felt, contractURI: felt*)", - "offset": 0 - } - }, - "size": 3, - "type": "struct" - }, - "__wrappers__.contractURI_encode_return.ImplicitArgs": { - "full_name": "__wrappers__.contractURI_encode_return.ImplicitArgs", - "members": {}, - "size": 0, - "type": "struct" - }, - "__wrappers__.contractURI_encode_return.Return": { - "cairo_type": "(range_check_ptr: felt, data_len: felt, data: felt*)", - "type": "type_definition" - }, - "__wrappers__.contractURI_encode_return.SIZEOF_LOCALS": { - "type": "const", - "value": 3 - }, - "__wrappers__.contractURI_encode_return.memcpy": { - "destination": "starkware.cairo.common.memcpy.memcpy", - "type": "alias" - }, - "__wrappers__.getApproved": { - "decorators": [ - "view" - ], - "pc": 4915, - "type": "function" - }, - "__wrappers__.getApproved.Args": { - "full_name": "__wrappers__.getApproved.Args", - "members": {}, - "size": 0, - "type": "struct" - }, - "__wrappers__.getApproved.ImplicitArgs": { - "full_name": "__wrappers__.getApproved.ImplicitArgs", - "members": {}, - "size": 0, - "type": "struct" - }, - "__wrappers__.getApproved.Return": { - "cairo_type": "(syscall_ptr: felt*, pedersen_ptr: starkware.cairo.common.cairo_builtins.HashBuiltin*, range_check_ptr: felt, size: felt, retdata: felt*)", - "type": "type_definition" - }, - "__wrappers__.getApproved.SIZEOF_LOCALS": { - "type": "const", - "value": 0 - }, - "__wrappers__.getApproved.__wrapped_func": { - "destination": "__main__.getApproved", - "type": "alias" - }, - "__wrappers__.getApproved_encode_return": { - "decorators": [], - "pc": 4906, - "type": "function" - }, - "__wrappers__.getApproved_encode_return.Args": { - "full_name": "__wrappers__.getApproved_encode_return.Args", - "members": { - "range_check_ptr": { - "cairo_type": "felt", - "offset": 1 - }, - "ret_value": { - "cairo_type": "(approved: felt)", - "offset": 0 - } - }, - "size": 2, - "type": "struct" - }, - "__wrappers__.getApproved_encode_return.ImplicitArgs": { - "full_name": "__wrappers__.getApproved_encode_return.ImplicitArgs", - "members": {}, - "size": 0, - "type": "struct" - }, - "__wrappers__.getApproved_encode_return.Return": { - "cairo_type": "(range_check_ptr: felt, data_len: felt, data: felt*)", - "type": "type_definition" - }, - "__wrappers__.getApproved_encode_return.SIZEOF_LOCALS": { - "type": "const", - "value": 1 - }, - "__wrappers__.getApproved_encode_return.memcpy": { - "destination": "starkware.cairo.common.memcpy.memcpy", - "type": "alias" - }, - "__wrappers__.getCell": { - "decorators": [ - "view" - ], - "pc": 3936, - "type": "function" - }, - "__wrappers__.getCell.Args": { - "full_name": "__wrappers__.getCell.Args", - "members": {}, - "size": 0, - "type": "struct" - }, - "__wrappers__.getCell.ImplicitArgs": { - "full_name": "__wrappers__.getCell.ImplicitArgs", - "members": {}, - "size": 0, - "type": "struct" - }, - "__wrappers__.getCell.Return": { - "cairo_type": "(syscall_ptr: felt*, pedersen_ptr: starkware.cairo.common.cairo_builtins.HashBuiltin*, range_check_ptr: felt, size: felt, retdata: felt*)", - "type": "type_definition" - }, - "__wrappers__.getCell.SIZEOF_LOCALS": { - "type": "const", - "value": 2 - }, - "__wrappers__.getCell.__wrapped_func": { - "destination": "__main__.getCell", - "type": "alias" - }, - "__wrappers__.getCellRenderer": { - "decorators": [ - "view" - ], - "pc": 3723, - "type": "function" - }, - "__wrappers__.getCellRenderer.Args": { - "full_name": "__wrappers__.getCellRenderer.Args", - "members": {}, - "size": 0, - "type": "struct" - }, - "__wrappers__.getCellRenderer.ImplicitArgs": { - "full_name": "__wrappers__.getCellRenderer.ImplicitArgs", - "members": {}, - "size": 0, - "type": "struct" - }, - "__wrappers__.getCellRenderer.Return": { - "cairo_type": "(syscall_ptr: felt*, pedersen_ptr: starkware.cairo.common.cairo_builtins.HashBuiltin*, range_check_ptr: felt, size: felt, retdata: felt*)", - "type": "type_definition" - }, - "__wrappers__.getCellRenderer.SIZEOF_LOCALS": { - "type": "const", - "value": 0 - }, - "__wrappers__.getCellRenderer.__wrapped_func": { - "destination": "__main__.getCellRenderer", - "type": "alias" - }, - "__wrappers__.getCellRenderer_encode_return": { - "decorators": [], - "pc": 3714, - "type": "function" - }, - "__wrappers__.getCellRenderer_encode_return.Args": { - "full_name": "__wrappers__.getCellRenderer_encode_return.Args", - "members": { - "range_check_ptr": { - "cairo_type": "felt", - "offset": 1 - }, - "ret_value": { - "cairo_type": "(address: felt)", - "offset": 0 - } - }, - "size": 2, - "type": "struct" - }, - "__wrappers__.getCellRenderer_encode_return.ImplicitArgs": { - "full_name": "__wrappers__.getCellRenderer_encode_return.ImplicitArgs", - "members": {}, - "size": 0, - "type": "struct" - }, - "__wrappers__.getCellRenderer_encode_return.Return": { - "cairo_type": "(range_check_ptr: felt, data_len: felt, data: felt*)", - "type": "type_definition" - }, - "__wrappers__.getCellRenderer_encode_return.SIZEOF_LOCALS": { - "type": "const", - "value": 1 - }, - "__wrappers__.getCellRenderer_encode_return.memcpy": { - "destination": "starkware.cairo.common.memcpy.memcpy", - "type": "alias" - }, - "__wrappers__.getCell_encode_return": { - "decorators": [], - "pc": 3915, - "type": "function" - }, - "__wrappers__.getCell_encode_return.Args": { - "full_name": "__wrappers__.getCell_encode_return.Args", - "members": { - "range_check_ptr": { - "cairo_type": "felt", - "offset": 4 - }, - "ret_value": { - "cairo_type": "(contractAddress: felt, value: felt, cell_calldata_len: felt, cell_calldata: felt*)", - "offset": 0 - } - }, - "size": 5, - "type": "struct" - }, - "__wrappers__.getCell_encode_return.ImplicitArgs": { - "full_name": "__wrappers__.getCell_encode_return.ImplicitArgs", - "members": {}, - "size": 0, - "type": "struct" - }, - "__wrappers__.getCell_encode_return.Return": { - "cairo_type": "(range_check_ptr: felt, data_len: felt, data: felt*)", - "type": "type_definition" - }, - "__wrappers__.getCell_encode_return.SIZEOF_LOCALS": { - "type": "const", - "value": 3 - }, - "__wrappers__.getCell_encode_return.memcpy": { - "destination": "starkware.cairo.common.memcpy.memcpy", - "type": "alias" - }, - "__wrappers__.getMaxPerWallet": { - "decorators": [ - "view" - ], - "pc": 3609, - "type": "function" - }, - "__wrappers__.getMaxPerWallet.Args": { - "full_name": "__wrappers__.getMaxPerWallet.Args", - "members": {}, - "size": 0, - "type": "struct" - }, - "__wrappers__.getMaxPerWallet.ImplicitArgs": { - "full_name": "__wrappers__.getMaxPerWallet.ImplicitArgs", - "members": {}, - "size": 0, - "type": "struct" - }, - "__wrappers__.getMaxPerWallet.Return": { - "cairo_type": "(syscall_ptr: felt*, pedersen_ptr: starkware.cairo.common.cairo_builtins.HashBuiltin*, range_check_ptr: felt, size: felt, retdata: felt*)", - "type": "type_definition" - }, - "__wrappers__.getMaxPerWallet.SIZEOF_LOCALS": { - "type": "const", - "value": 0 - }, - "__wrappers__.getMaxPerWallet.__wrapped_func": { - "destination": "__main__.getMaxPerWallet", - "type": "alias" - }, - "__wrappers__.getMaxPerWallet_encode_return": { - "decorators": [], - "pc": 3600, - "type": "function" - }, - "__wrappers__.getMaxPerWallet_encode_return.Args": { - "full_name": "__wrappers__.getMaxPerWallet_encode_return.Args", - "members": { - "range_check_ptr": { - "cairo_type": "felt", - "offset": 1 - }, - "ret_value": { - "cairo_type": "(max: felt)", - "offset": 0 - } - }, - "size": 2, - "type": "struct" - }, - "__wrappers__.getMaxPerWallet_encode_return.ImplicitArgs": { - "full_name": "__wrappers__.getMaxPerWallet_encode_return.ImplicitArgs", - "members": {}, - "size": 0, - "type": "struct" - }, - "__wrappers__.getMaxPerWallet_encode_return.Return": { - "cairo_type": "(range_check_ptr: felt, data_len: felt, data: felt*)", - "type": "type_definition" - }, - "__wrappers__.getMaxPerWallet_encode_return.SIZEOF_LOCALS": { - "type": "const", - "value": 1 - }, - "__wrappers__.getMaxPerWallet_encode_return.memcpy": { - "destination": "starkware.cairo.common.memcpy.memcpy", - "type": "alias" - }, - "__wrappers__.getMerkleRoot": { - "decorators": [ - "view" - ], - "pc": 3826, - "type": "function" - }, - "__wrappers__.getMerkleRoot.Args": { - "full_name": "__wrappers__.getMerkleRoot.Args", - "members": {}, - "size": 0, - "type": "struct" - }, - "__wrappers__.getMerkleRoot.ImplicitArgs": { - "full_name": "__wrappers__.getMerkleRoot.ImplicitArgs", - "members": {}, - "size": 0, - "type": "struct" - }, - "__wrappers__.getMerkleRoot.Return": { - "cairo_type": "(syscall_ptr: felt*, pedersen_ptr: starkware.cairo.common.cairo_builtins.HashBuiltin*, range_check_ptr: felt, size: felt, retdata: felt*)", - "type": "type_definition" - }, - "__wrappers__.getMerkleRoot.SIZEOF_LOCALS": { - "type": "const", - "value": 0 - }, - "__wrappers__.getMerkleRoot.__wrapped_func": { - "destination": "__main__.getMerkleRoot", - "type": "alias" - }, - "__wrappers__.getMerkleRoot_encode_return": { - "decorators": [], - "pc": 3817, - "type": "function" - }, - "__wrappers__.getMerkleRoot_encode_return.Args": { - "full_name": "__wrappers__.getMerkleRoot_encode_return.Args", - "members": { - "range_check_ptr": { - "cairo_type": "felt", - "offset": 1 - }, - "ret_value": { - "cairo_type": "(root: felt)", - "offset": 0 - } - }, - "size": 2, - "type": "struct" - }, - "__wrappers__.getMerkleRoot_encode_return.ImplicitArgs": { - "full_name": "__wrappers__.getMerkleRoot_encode_return.ImplicitArgs", - "members": {}, - "size": 0, - "type": "struct" - }, - "__wrappers__.getMerkleRoot_encode_return.Return": { - "cairo_type": "(range_check_ptr: felt, data_len: felt, data: felt*)", - "type": "type_definition" - }, - "__wrappers__.getMerkleRoot_encode_return.SIZEOF_LOCALS": { - "type": "const", - "value": 1 - }, - "__wrappers__.getMerkleRoot_encode_return.memcpy": { - "destination": "starkware.cairo.common.memcpy.memcpy", - "type": "alias" - }, - "__wrappers__.getNRow": { - "decorators": [ - "view" - ], - "pc": 3666, - "type": "function" - }, - "__wrappers__.getNRow.Args": { - "full_name": "__wrappers__.getNRow.Args", - "members": {}, - "size": 0, - "type": "struct" - }, - "__wrappers__.getNRow.ImplicitArgs": { - "full_name": "__wrappers__.getNRow.ImplicitArgs", - "members": {}, - "size": 0, - "type": "struct" - }, - "__wrappers__.getNRow.Return": { - "cairo_type": "(syscall_ptr: felt*, pedersen_ptr: starkware.cairo.common.cairo_builtins.HashBuiltin*, range_check_ptr: felt, size: felt, retdata: felt*)", - "type": "type_definition" - }, - "__wrappers__.getNRow.SIZEOF_LOCALS": { - "type": "const", - "value": 0 - }, - "__wrappers__.getNRow.__wrapped_func": { - "destination": "__main__.getNRow", - "type": "alias" - }, - "__wrappers__.getNRow_encode_return": { - "decorators": [], - "pc": 3657, - "type": "function" - }, - "__wrappers__.getNRow_encode_return.Args": { - "full_name": "__wrappers__.getNRow_encode_return.Args", - "members": { - "range_check_ptr": { - "cairo_type": "felt", - "offset": 1 - }, - "ret_value": { - "cairo_type": "(n_row: felt)", - "offset": 0 - } - }, - "size": 2, - "type": "struct" - }, - "__wrappers__.getNRow_encode_return.ImplicitArgs": { - "full_name": "__wrappers__.getNRow_encode_return.ImplicitArgs", - "members": {}, - "size": 0, - "type": "struct" - }, - "__wrappers__.getNRow_encode_return.Return": { - "cairo_type": "(range_check_ptr: felt, data_len: felt, data: felt*)", - "type": "type_definition" - }, - "__wrappers__.getNRow_encode_return.SIZEOF_LOCALS": { - "type": "const", - "value": 1 - }, - "__wrappers__.getNRow_encode_return.memcpy": { - "destination": "starkware.cairo.common.memcpy.memcpy", - "type": "alias" - }, - "__wrappers__.initialize": { - "decorators": [ - "external" - ], - "pc": 4558, - "type": "function" - }, - "__wrappers__.initialize.Args": { - "full_name": "__wrappers__.initialize.Args", - "members": {}, - "size": 0, - "type": "struct" - }, - "__wrappers__.initialize.ImplicitArgs": { - "full_name": "__wrappers__.initialize.ImplicitArgs", - "members": {}, - "size": 0, - "type": "struct" - }, - "__wrappers__.initialize.Return": { - "cairo_type": "(syscall_ptr: felt*, pedersen_ptr: starkware.cairo.common.cairo_builtins.HashBuiltin*, range_check_ptr: felt, size: felt, retdata: felt*)", - "type": "type_definition" - }, - "__wrappers__.initialize.SIZEOF_LOCALS": { - "type": "const", - "value": 0 - }, - "__wrappers__.initialize.__wrapped_func": { - "destination": "__main__.initialize", - "type": "alias" - }, - "__wrappers__.initialize_encode_return.memcpy": { - "destination": "starkware.cairo.common.memcpy.memcpy", - "type": "alias" - }, - "__wrappers__.isApprovedForAll": { - "decorators": [ - "view" - ], - "pc": 4951, - "type": "function" - }, - "__wrappers__.isApprovedForAll.Args": { - "full_name": "__wrappers__.isApprovedForAll.Args", - "members": {}, - "size": 0, - "type": "struct" - }, - "__wrappers__.isApprovedForAll.ImplicitArgs": { - "full_name": "__wrappers__.isApprovedForAll.ImplicitArgs", - "members": {}, - "size": 0, - "type": "struct" - }, - "__wrappers__.isApprovedForAll.Return": { - "cairo_type": "(syscall_ptr: felt*, pedersen_ptr: starkware.cairo.common.cairo_builtins.HashBuiltin*, range_check_ptr: felt, size: felt, retdata: felt*)", - "type": "type_definition" - }, - "__wrappers__.isApprovedForAll.SIZEOF_LOCALS": { - "type": "const", - "value": 0 - }, - "__wrappers__.isApprovedForAll.__wrapped_func": { - "destination": "__main__.isApprovedForAll", - "type": "alias" - }, - "__wrappers__.isApprovedForAll_encode_return": { - "decorators": [], - "pc": 4942, - "type": "function" - }, - "__wrappers__.isApprovedForAll_encode_return.Args": { - "full_name": "__wrappers__.isApprovedForAll_encode_return.Args", - "members": { - "range_check_ptr": { - "cairo_type": "felt", - "offset": 1 - }, - "ret_value": { - "cairo_type": "(isApproved: felt)", - "offset": 0 - } - }, - "size": 2, - "type": "struct" - }, - "__wrappers__.isApprovedForAll_encode_return.ImplicitArgs": { - "full_name": "__wrappers__.isApprovedForAll_encode_return.ImplicitArgs", - "members": {}, - "size": 0, - "type": "struct" - }, - "__wrappers__.isApprovedForAll_encode_return.Return": { - "cairo_type": "(range_check_ptr: felt, data_len: felt, data: felt*)", - "type": "type_definition" - }, - "__wrappers__.isApprovedForAll_encode_return.SIZEOF_LOCALS": { - "type": "const", - "value": 1 - }, - "__wrappers__.isApprovedForAll_encode_return.memcpy": { - "destination": "starkware.cairo.common.memcpy.memcpy", - "type": "alias" - }, - "__wrappers__.is_initialized": { - "decorators": [ - "view" - ], - "pc": 4596, - "type": "function" - }, - "__wrappers__.is_initialized.Args": { - "full_name": "__wrappers__.is_initialized.Args", - "members": {}, - "size": 0, - "type": "struct" - }, - "__wrappers__.is_initialized.ImplicitArgs": { - "full_name": "__wrappers__.is_initialized.ImplicitArgs", - "members": {}, - "size": 0, - "type": "struct" - }, - "__wrappers__.is_initialized.Return": { - "cairo_type": "(syscall_ptr: felt*, pedersen_ptr: starkware.cairo.common.cairo_builtins.HashBuiltin*, range_check_ptr: felt, size: felt, retdata: felt*)", - "type": "type_definition" - }, - "__wrappers__.is_initialized.SIZEOF_LOCALS": { - "type": "const", - "value": 0 - }, - "__wrappers__.is_initialized.__wrapped_func": { - "destination": "__main__.is_initialized", - "type": "alias" - }, - "__wrappers__.is_initialized_encode_return": { - "decorators": [], - "pc": 4587, - "type": "function" - }, - "__wrappers__.is_initialized_encode_return.Args": { - "full_name": "__wrappers__.is_initialized_encode_return.Args", - "members": { - "range_check_ptr": { - "cairo_type": "felt", - "offset": 1 - }, - "ret_value": { - "cairo_type": "(res: felt)", - "offset": 0 - } - }, - "size": 2, - "type": "struct" - }, - "__wrappers__.is_initialized_encode_return.ImplicitArgs": { - "full_name": "__wrappers__.is_initialized_encode_return.ImplicitArgs", - "members": {}, - "size": 0, - "type": "struct" - }, - "__wrappers__.is_initialized_encode_return.Return": { - "cairo_type": "(range_check_ptr: felt, data_len: felt, data: felt*)", - "type": "type_definition" - }, - "__wrappers__.is_initialized_encode_return.SIZEOF_LOCALS": { - "type": "const", - "value": 1 - }, - "__wrappers__.is_initialized_encode_return.memcpy": { - "destination": "starkware.cairo.common.memcpy.memcpy", - "type": "alias" - }, - "__wrappers__.mintAndSetPublic": { - "decorators": [ - "external" - ], - "pc": 4251, - "type": "function" - }, - "__wrappers__.mintAndSetPublic.Args": { - "full_name": "__wrappers__.mintAndSetPublic.Args", - "members": {}, - "size": 0, - "type": "struct" - }, - "__wrappers__.mintAndSetPublic.ImplicitArgs": { - "full_name": "__wrappers__.mintAndSetPublic.ImplicitArgs", - "members": {}, - "size": 0, - "type": "struct" - }, - "__wrappers__.mintAndSetPublic.Return": { - "cairo_type": "(syscall_ptr: felt*, pedersen_ptr: starkware.cairo.common.cairo_builtins.HashBuiltin*, range_check_ptr: felt, size: felt, retdata: felt*)", - "type": "type_definition" - }, - "__wrappers__.mintAndSetPublic.SIZEOF_LOCALS": { - "type": "const", - "value": 0 - }, - "__wrappers__.mintAndSetPublic.__wrapped_func": { - "destination": "__main__.mintAndSetPublic", - "type": "alias" - }, - "__wrappers__.mintAndSetPublic_encode_return.memcpy": { - "destination": "starkware.cairo.common.memcpy.memcpy", - "type": "alias" - }, - "__wrappers__.mintOwner": { - "decorators": [ - "external" - ], - "pc": 5114, - "type": "function" - }, - "__wrappers__.mintOwner.Args": { - "full_name": "__wrappers__.mintOwner.Args", - "members": {}, - "size": 0, - "type": "struct" - }, - "__wrappers__.mintOwner.ImplicitArgs": { - "full_name": "__wrappers__.mintOwner.ImplicitArgs", - "members": {}, - "size": 0, - "type": "struct" - }, - "__wrappers__.mintOwner.Return": { - "cairo_type": "(syscall_ptr: felt*, pedersen_ptr: starkware.cairo.common.cairo_builtins.HashBuiltin*, range_check_ptr: felt, size: felt, retdata: felt*)", - "type": "type_definition" - }, - "__wrappers__.mintOwner.SIZEOF_LOCALS": { - "type": "const", - "value": 0 - }, - "__wrappers__.mintOwner.__wrapped_func": { - "destination": "__main__.mintOwner", - "type": "alias" - }, - "__wrappers__.mintOwner_encode_return.memcpy": { - "destination": "starkware.cairo.common.memcpy.memcpy", - "type": "alias" - }, - "__wrappers__.mintPublic": { - "decorators": [ - "external" - ], - "pc": 4184, - "type": "function" - }, - "__wrappers__.mintPublic.Args": { - "full_name": "__wrappers__.mintPublic.Args", - "members": {}, - "size": 0, - "type": "struct" - }, - "__wrappers__.mintPublic.ImplicitArgs": { - "full_name": "__wrappers__.mintPublic.ImplicitArgs", - "members": {}, - "size": 0, - "type": "struct" - }, - "__wrappers__.mintPublic.Return": { - "cairo_type": "(syscall_ptr: felt*, pedersen_ptr: starkware.cairo.common.cairo_builtins.HashBuiltin*, range_check_ptr: felt, size: felt, retdata: felt*)", - "type": "type_definition" - }, - "__wrappers__.mintPublic.SIZEOF_LOCALS": { - "type": "const", - "value": 0 - }, - "__wrappers__.mintPublic.__wrapped_func": { - "destination": "__main__.mintPublic", - "type": "alias" - }, - "__wrappers__.mintPublic_encode_return.memcpy": { - "destination": "starkware.cairo.common.memcpy.memcpy", - "type": "alias" - }, - "__wrappers__.name": { - "decorators": [ - "view" - ], - "pc": 4782, - "type": "function" - }, - "__wrappers__.name.Args": { - "full_name": "__wrappers__.name.Args", - "members": {}, - "size": 0, - "type": "struct" - }, - "__wrappers__.name.ImplicitArgs": { - "full_name": "__wrappers__.name.ImplicitArgs", - "members": {}, - "size": 0, - "type": "struct" - }, - "__wrappers__.name.Return": { - "cairo_type": "(syscall_ptr: felt*, pedersen_ptr: starkware.cairo.common.cairo_builtins.HashBuiltin*, range_check_ptr: felt, size: felt, retdata: felt*)", - "type": "type_definition" - }, - "__wrappers__.name.SIZEOF_LOCALS": { - "type": "const", - "value": 0 - }, - "__wrappers__.name.__wrapped_func": { - "destination": "__main__.name", - "type": "alias" - }, - "__wrappers__.name_encode_return": { - "decorators": [], - "pc": 4773, - "type": "function" - }, - "__wrappers__.name_encode_return.Args": { - "full_name": "__wrappers__.name_encode_return.Args", - "members": { - "range_check_ptr": { - "cairo_type": "felt", - "offset": 1 - }, - "ret_value": { - "cairo_type": "(name: felt)", - "offset": 0 - } - }, - "size": 2, - "type": "struct" - }, - "__wrappers__.name_encode_return.ImplicitArgs": { - "full_name": "__wrappers__.name_encode_return.ImplicitArgs", - "members": {}, - "size": 0, - "type": "struct" - }, - "__wrappers__.name_encode_return.Return": { - "cairo_type": "(range_check_ptr: felt, data_len: felt, data: felt*)", - "type": "type_definition" - }, - "__wrappers__.name_encode_return.SIZEOF_LOCALS": { - "type": "const", - "value": 1 - }, - "__wrappers__.name_encode_return.memcpy": { - "destination": "starkware.cairo.common.memcpy.memcpy", - "type": "alias" - }, - "__wrappers__.openMint": { - "decorators": [ - "external" - ], - "pc": 3773, - "type": "function" - }, - "__wrappers__.openMint.Args": { - "full_name": "__wrappers__.openMint.Args", - "members": {}, - "size": 0, - "type": "struct" - }, - "__wrappers__.openMint.ImplicitArgs": { - "full_name": "__wrappers__.openMint.ImplicitArgs", - "members": {}, - "size": 0, - "type": "struct" - }, - "__wrappers__.openMint.Return": { - "cairo_type": "(syscall_ptr: felt*, pedersen_ptr: starkware.cairo.common.cairo_builtins.HashBuiltin*, range_check_ptr: felt, size: felt, retdata: felt*)", - "type": "type_definition" - }, - "__wrappers__.openMint.SIZEOF_LOCALS": { - "type": "const", - "value": 0 - }, - "__wrappers__.openMint.__wrapped_func": { - "destination": "__main__.openMint", - "type": "alias" - }, - "__wrappers__.openMint_encode_return.memcpy": { - "destination": "starkware.cairo.common.memcpy.memcpy", - "type": "alias" - }, - "__wrappers__.owner": { - "decorators": [ - "view" - ], - "pc": 3527, - "type": "function" - }, - "__wrappers__.owner.Args": { - "full_name": "__wrappers__.owner.Args", - "members": {}, - "size": 0, - "type": "struct" - }, - "__wrappers__.owner.ImplicitArgs": { - "full_name": "__wrappers__.owner.ImplicitArgs", - "members": {}, - "size": 0, - "type": "struct" - }, - "__wrappers__.owner.Return": { - "cairo_type": "(syscall_ptr: felt*, pedersen_ptr: starkware.cairo.common.cairo_builtins.HashBuiltin*, range_check_ptr: felt, size: felt, retdata: felt*)", - "type": "type_definition" - }, - "__wrappers__.owner.SIZEOF_LOCALS": { - "type": "const", - "value": 0 - }, - "__wrappers__.owner.__wrapped_func": { - "destination": "__main__.owner", - "type": "alias" - }, - "__wrappers__.ownerOf": { - "decorators": [ - "view" - ], - "pc": 4879, - "type": "function" - }, - "__wrappers__.ownerOf.Args": { - "full_name": "__wrappers__.ownerOf.Args", - "members": {}, - "size": 0, - "type": "struct" - }, - "__wrappers__.ownerOf.ImplicitArgs": { - "full_name": "__wrappers__.ownerOf.ImplicitArgs", - "members": {}, - "size": 0, - "type": "struct" - }, - "__wrappers__.ownerOf.Return": { - "cairo_type": "(syscall_ptr: felt*, pedersen_ptr: starkware.cairo.common.cairo_builtins.HashBuiltin*, range_check_ptr: felt, size: felt, retdata: felt*)", - "type": "type_definition" - }, - "__wrappers__.ownerOf.SIZEOF_LOCALS": { - "type": "const", - "value": 0 - }, - "__wrappers__.ownerOf.__wrapped_func": { - "destination": "__main__.ownerOf", - "type": "alias" - }, - "__wrappers__.ownerOf_encode_return": { - "decorators": [], - "pc": 4870, - "type": "function" - }, - "__wrappers__.ownerOf_encode_return.Args": { - "full_name": "__wrappers__.ownerOf_encode_return.Args", - "members": { - "range_check_ptr": { - "cairo_type": "felt", - "offset": 1 - }, - "ret_value": { - "cairo_type": "(owner: felt)", - "offset": 0 - } - }, - "size": 2, - "type": "struct" - }, - "__wrappers__.ownerOf_encode_return.ImplicitArgs": { - "full_name": "__wrappers__.ownerOf_encode_return.ImplicitArgs", - "members": {}, - "size": 0, - "type": "struct" - }, - "__wrappers__.ownerOf_encode_return.Return": { - "cairo_type": "(range_check_ptr: felt, data_len: felt, data: felt*)", - "type": "type_definition" - }, - "__wrappers__.ownerOf_encode_return.SIZEOF_LOCALS": { - "type": "const", - "value": 1 - }, - "__wrappers__.ownerOf_encode_return.memcpy": { - "destination": "starkware.cairo.common.memcpy.memcpy", - "type": "alias" - }, - "__wrappers__.owner_encode_return": { - "decorators": [], - "pc": 3518, - "type": "function" - }, - "__wrappers__.owner_encode_return.Args": { - "full_name": "__wrappers__.owner_encode_return.Args", - "members": { - "range_check_ptr": { - "cairo_type": "felt", - "offset": 1 - }, - "ret_value": { - "cairo_type": "(owner: felt)", - "offset": 0 - } - }, - "size": 2, - "type": "struct" - }, - "__wrappers__.owner_encode_return.ImplicitArgs": { - "full_name": "__wrappers__.owner_encode_return.ImplicitArgs", - "members": {}, - "size": 0, - "type": "struct" - }, - "__wrappers__.owner_encode_return.Return": { - "cairo_type": "(range_check_ptr: felt, data_len: felt, data: felt*)", - "type": "type_definition" - }, - "__wrappers__.owner_encode_return.SIZEOF_LOCALS": { - "type": "const", - "value": 1 - }, - "__wrappers__.owner_encode_return.memcpy": { - "destination": "starkware.cairo.common.memcpy.memcpy", - "type": "alias" - }, - "__wrappers__.renderCell": { - "decorators": [ - "view" - ], - "pc": 4002, - "type": "function" - }, - "__wrappers__.renderCell.Args": { - "full_name": "__wrappers__.renderCell.Args", - "members": {}, - "size": 0, - "type": "struct" - }, - "__wrappers__.renderCell.ImplicitArgs": { - "full_name": "__wrappers__.renderCell.ImplicitArgs", - "members": {}, - "size": 0, - "type": "struct" - }, - "__wrappers__.renderCell.Return": { - "cairo_type": "(syscall_ptr: felt*, pedersen_ptr: starkware.cairo.common.cairo_builtins.HashBuiltin*, range_check_ptr: felt, size: felt, retdata: felt*)", - "type": "type_definition" - }, - "__wrappers__.renderCell.SIZEOF_LOCALS": { - "type": "const", - "value": 0 - }, - "__wrappers__.renderCell.__wrapped_func": { - "destination": "__main__.renderCell", - "type": "alias" - }, - "__wrappers__.renderCellValue": { - "decorators": [ - "view" - ], - "pc": 4040, - "type": "function" - }, - "__wrappers__.renderCellValue.Args": { - "full_name": "__wrappers__.renderCellValue.Args", - "members": {}, - "size": 0, - "type": "struct" - }, - "__wrappers__.renderCellValue.ImplicitArgs": { - "full_name": "__wrappers__.renderCellValue.ImplicitArgs", - "members": {}, - "size": 0, - "type": "struct" - }, - "__wrappers__.renderCellValue.Return": { - "cairo_type": "(syscall_ptr: felt*, pedersen_ptr: starkware.cairo.common.cairo_builtins.HashBuiltin*, range_check_ptr: felt, size: felt, retdata: felt*)", - "type": "type_definition" - }, - "__wrappers__.renderCellValue.SIZEOF_LOCALS": { - "type": "const", - "value": 0 - }, - "__wrappers__.renderCellValue.__wrapped_func": { - "destination": "__main__.renderCellValue", - "type": "alias" - }, - "__wrappers__.renderCellValue_encode_return": { - "decorators": [], - "pc": 4031, - "type": "function" - }, - "__wrappers__.renderCellValue_encode_return.Args": { - "full_name": "__wrappers__.renderCellValue_encode_return.Args", - "members": { - "range_check_ptr": { - "cairo_type": "felt", - "offset": 1 - }, - "ret_value": { - "cairo_type": "(value: felt)", - "offset": 0 - } - }, - "size": 2, - "type": "struct" - }, - "__wrappers__.renderCellValue_encode_return.ImplicitArgs": { - "full_name": "__wrappers__.renderCellValue_encode_return.ImplicitArgs", - "members": {}, - "size": 0, - "type": "struct" - }, - "__wrappers__.renderCellValue_encode_return.Return": { - "cairo_type": "(range_check_ptr: felt, data_len: felt, data: felt*)", - "type": "type_definition" - }, - "__wrappers__.renderCellValue_encode_return.SIZEOF_LOCALS": { - "type": "const", - "value": 1 - }, - "__wrappers__.renderCellValue_encode_return.memcpy": { - "destination": "starkware.cairo.common.memcpy.memcpy", - "type": "alias" - }, - "__wrappers__.renderCell_encode_return": { - "decorators": [], - "pc": 3991, - "type": "function" - }, - "__wrappers__.renderCell_encode_return.Args": { - "full_name": "__wrappers__.renderCell_encode_return.Args", - "members": { - "range_check_ptr": { - "cairo_type": "felt", - "offset": 3 - }, - "ret_value": { - "cairo_type": "(cell: sheet.library.CellRendered)", - "offset": 0 - } - }, - "size": 4, - "type": "struct" - }, - "__wrappers__.renderCell_encode_return.ImplicitArgs": { - "full_name": "__wrappers__.renderCell_encode_return.ImplicitArgs", - "members": {}, - "size": 0, - "type": "struct" - }, - "__wrappers__.renderCell_encode_return.Return": { - "cairo_type": "(range_check_ptr: felt, data_len: felt, data: felt*)", - "type": "type_definition" - }, - "__wrappers__.renderCell_encode_return.SIZEOF_LOCALS": { - "type": "const", - "value": 1 - }, - "__wrappers__.renderCell_encode_return.memcpy": { - "destination": "starkware.cairo.common.memcpy.memcpy", - "type": "alias" - }, - "__wrappers__.renderGrid": { - "decorators": [ - "view" - ], - "pc": 4122, - "type": "function" - }, - "__wrappers__.renderGrid.Args": { - "full_name": "__wrappers__.renderGrid.Args", - "members": {}, - "size": 0, - "type": "struct" - }, - "__wrappers__.renderGrid.ImplicitArgs": { - "full_name": "__wrappers__.renderGrid.ImplicitArgs", - "members": {}, - "size": 0, - "type": "struct" - }, - "__wrappers__.renderGrid.Return": { - "cairo_type": "(syscall_ptr: felt*, pedersen_ptr: starkware.cairo.common.cairo_builtins.HashBuiltin*, range_check_ptr: felt, size: felt, retdata: felt*)", - "type": "type_definition" - }, - "__wrappers__.renderGrid.SIZEOF_LOCALS": { - "type": "const", - "value": 2 - }, - "__wrappers__.renderGrid.__wrapped_func": { - "destination": "__main__.renderGrid", - "type": "alias" - }, - "__wrappers__.renderGrid_encode_return": { - "decorators": [], - "pc": 4100, - "type": "function" - }, - "__wrappers__.renderGrid_encode_return.Args": { - "full_name": "__wrappers__.renderGrid_encode_return.Args", - "members": { - "range_check_ptr": { - "cairo_type": "felt", - "offset": 2 - }, - "ret_value": { - "cairo_type": "(cells_len: felt, cells: sheet.library.CellRendered*)", - "offset": 0 - } - }, - "size": 3, - "type": "struct" - }, - "__wrappers__.renderGrid_encode_return.ImplicitArgs": { - "full_name": "__wrappers__.renderGrid_encode_return.ImplicitArgs", - "members": {}, - "size": 0, - "type": "struct" - }, - "__wrappers__.renderGrid_encode_return.Return": { - "cairo_type": "(range_check_ptr: felt, data_len: felt, data: felt*)", - "type": "type_definition" - }, - "__wrappers__.renderGrid_encode_return.SIZEOF_LOCALS": { - "type": "const", - "value": 3 - }, - "__wrappers__.renderGrid_encode_return.memcpy": { - "destination": "starkware.cairo.common.memcpy.memcpy", - "type": "alias" - }, - "__wrappers__.safeTransferFrom": { - "decorators": [ - "external" - ], - "pc": 5069, - "type": "function" - }, - "__wrappers__.safeTransferFrom.Args": { - "full_name": "__wrappers__.safeTransferFrom.Args", - "members": {}, - "size": 0, - "type": "struct" - }, - "__wrappers__.safeTransferFrom.ImplicitArgs": { - "full_name": "__wrappers__.safeTransferFrom.ImplicitArgs", - "members": {}, - "size": 0, - "type": "struct" - }, - "__wrappers__.safeTransferFrom.Return": { - "cairo_type": "(syscall_ptr: felt*, pedersen_ptr: starkware.cairo.common.cairo_builtins.HashBuiltin*, range_check_ptr: felt, size: felt, retdata: felt*)", - "type": "type_definition" - }, - "__wrappers__.safeTransferFrom.SIZEOF_LOCALS": { - "type": "const", - "value": 0 - }, - "__wrappers__.safeTransferFrom.__wrapped_func": { - "destination": "__main__.safeTransferFrom", - "type": "alias" - }, - "__wrappers__.safeTransferFrom_encode_return.memcpy": { - "destination": "starkware.cairo.common.memcpy.memcpy", - "type": "alias" - }, - "__wrappers__.setApprovalForAll": { - "decorators": [ - "external" - ], - "pc": 5007, - "type": "function" - }, - "__wrappers__.setApprovalForAll.Args": { - "full_name": "__wrappers__.setApprovalForAll.Args", - "members": {}, - "size": 0, - "type": "struct" - }, - "__wrappers__.setApprovalForAll.ImplicitArgs": { - "full_name": "__wrappers__.setApprovalForAll.ImplicitArgs", - "members": {}, - "size": 0, - "type": "struct" - }, - "__wrappers__.setApprovalForAll.Return": { - "cairo_type": "(syscall_ptr: felt*, pedersen_ptr: starkware.cairo.common.cairo_builtins.HashBuiltin*, range_check_ptr: felt, size: felt, retdata: felt*)", - "type": "type_definition" - }, - "__wrappers__.setApprovalForAll.SIZEOF_LOCALS": { - "type": "const", - "value": 0 - }, - "__wrappers__.setApprovalForAll.__wrapped_func": { - "destination": "__main__.setApprovalForAll", - "type": "alias" - }, - "__wrappers__.setApprovalForAll_encode_return.memcpy": { - "destination": "starkware.cairo.common.memcpy.memcpy", - "type": "alias" - }, - "__wrappers__.setCell": { - "decorators": [ - "external" - ], - "pc": 3878, - "type": "function" - }, - "__wrappers__.setCell.Args": { - "full_name": "__wrappers__.setCell.Args", - "members": {}, - "size": 0, - "type": "struct" - }, - "__wrappers__.setCell.ImplicitArgs": { - "full_name": "__wrappers__.setCell.ImplicitArgs", - "members": {}, - "size": 0, - "type": "struct" - }, - "__wrappers__.setCell.Return": { - "cairo_type": "(syscall_ptr: felt*, pedersen_ptr: starkware.cairo.common.cairo_builtins.HashBuiltin*, range_check_ptr: felt, size: felt, retdata: felt*)", - "type": "type_definition" - }, - "__wrappers__.setCell.SIZEOF_LOCALS": { - "type": "const", - "value": 0 - }, - "__wrappers__.setCell.__wrapped_func": { - "destination": "__main__.setCell", - "type": "alias" - }, - "__wrappers__.setCellRenderer": { - "decorators": [ - "external" - ], - "pc": 3690, - "type": "function" - }, - "__wrappers__.setCellRenderer.Args": { - "full_name": "__wrappers__.setCellRenderer.Args", - "members": {}, - "size": 0, - "type": "struct" - }, - "__wrappers__.setCellRenderer.ImplicitArgs": { - "full_name": "__wrappers__.setCellRenderer.ImplicitArgs", - "members": {}, - "size": 0, - "type": "struct" - }, - "__wrappers__.setCellRenderer.Return": { - "cairo_type": "(syscall_ptr: felt*, pedersen_ptr: starkware.cairo.common.cairo_builtins.HashBuiltin*, range_check_ptr: felt, size: felt, retdata: felt*)", - "type": "type_definition" - }, - "__wrappers__.setCellRenderer.SIZEOF_LOCALS": { - "type": "const", - "value": 0 - }, - "__wrappers__.setCellRenderer.__wrapped_func": { - "destination": "__main__.setCellRenderer", - "type": "alias" - }, - "__wrappers__.setCellRenderer_encode_return.memcpy": { - "destination": "starkware.cairo.common.memcpy.memcpy", - "type": "alias" - }, - "__wrappers__.setCell_encode_return.memcpy": { - "destination": "starkware.cairo.common.memcpy.memcpy", - "type": "alias" - }, - "__wrappers__.setMaxPerWallet": { - "decorators": [ - "external" - ], - "pc": 3576, - "type": "function" - }, - "__wrappers__.setMaxPerWallet.Args": { - "full_name": "__wrappers__.setMaxPerWallet.Args", - "members": {}, - "size": 0, - "type": "struct" - }, - "__wrappers__.setMaxPerWallet.ImplicitArgs": { - "full_name": "__wrappers__.setMaxPerWallet.ImplicitArgs", - "members": {}, - "size": 0, - "type": "struct" - }, - "__wrappers__.setMaxPerWallet.Return": { - "cairo_type": "(syscall_ptr: felt*, pedersen_ptr: starkware.cairo.common.cairo_builtins.HashBuiltin*, range_check_ptr: felt, size: felt, retdata: felt*)", - "type": "type_definition" - }, - "__wrappers__.setMaxPerWallet.SIZEOF_LOCALS": { - "type": "const", - "value": 0 - }, - "__wrappers__.setMaxPerWallet.__wrapped_func": { - "destination": "__main__.setMaxPerWallet", - "type": "alias" - }, - "__wrappers__.setMaxPerWallet_encode_return.memcpy": { - "destination": "starkware.cairo.common.memcpy.memcpy", - "type": "alias" - }, - "__wrappers__.setMerkleRoot": { - "decorators": [ - "external" - ], - "pc": 3747, - "type": "function" - }, - "__wrappers__.setMerkleRoot.Args": { - "full_name": "__wrappers__.setMerkleRoot.Args", - "members": {}, - "size": 0, - "type": "struct" - }, - "__wrappers__.setMerkleRoot.ImplicitArgs": { - "full_name": "__wrappers__.setMerkleRoot.ImplicitArgs", - "members": {}, - "size": 0, - "type": "struct" - }, - "__wrappers__.setMerkleRoot.Return": { - "cairo_type": "(syscall_ptr: felt*, pedersen_ptr: starkware.cairo.common.cairo_builtins.HashBuiltin*, range_check_ptr: felt, size: felt, retdata: felt*)", - "type": "type_definition" - }, - "__wrappers__.setMerkleRoot.SIZEOF_LOCALS": { - "type": "const", - "value": 0 - }, - "__wrappers__.setMerkleRoot.__wrapped_func": { - "destination": "__main__.setMerkleRoot", - "type": "alias" - }, - "__wrappers__.setMerkleRoot_encode_return.memcpy": { - "destination": "starkware.cairo.common.memcpy.memcpy", - "type": "alias" - }, - "__wrappers__.setNRow": { - "decorators": [ - "external" - ], - "pc": 3633, - "type": "function" - }, - "__wrappers__.setNRow.Args": { - "full_name": "__wrappers__.setNRow.Args", - "members": {}, - "size": 0, - "type": "struct" - }, - "__wrappers__.setNRow.ImplicitArgs": { - "full_name": "__wrappers__.setNRow.ImplicitArgs", - "members": {}, - "size": 0, - "type": "struct" - }, - "__wrappers__.setNRow.Return": { - "cairo_type": "(syscall_ptr: felt*, pedersen_ptr: starkware.cairo.common.cairo_builtins.HashBuiltin*, range_check_ptr: felt, size: felt, retdata: felt*)", - "type": "type_definition" - }, - "__wrappers__.setNRow.SIZEOF_LOCALS": { - "type": "const", - "value": 0 - }, - "__wrappers__.setNRow.__wrapped_func": { - "destination": "__main__.setNRow", - "type": "alias" - }, - "__wrappers__.setNRow_encode_return.memcpy": { - "destination": "starkware.cairo.common.memcpy.memcpy", - "type": "alias" - }, - "__wrappers__.supportsInterface": { - "decorators": [ - "view" - ], - "pc": 4749, - "type": "function" - }, - "__wrappers__.supportsInterface.Args": { - "full_name": "__wrappers__.supportsInterface.Args", - "members": {}, - "size": 0, - "type": "struct" - }, - "__wrappers__.supportsInterface.ImplicitArgs": { - "full_name": "__wrappers__.supportsInterface.ImplicitArgs", - "members": {}, - "size": 0, - "type": "struct" - }, - "__wrappers__.supportsInterface.Return": { - "cairo_type": "(syscall_ptr: felt*, pedersen_ptr: starkware.cairo.common.cairo_builtins.HashBuiltin*, range_check_ptr: felt, size: felt, retdata: felt*)", - "type": "type_definition" - }, - "__wrappers__.supportsInterface.SIZEOF_LOCALS": { - "type": "const", - "value": 0 - }, - "__wrappers__.supportsInterface.__wrapped_func": { - "destination": "__main__.supportsInterface", - "type": "alias" - }, - "__wrappers__.supportsInterface_encode_return": { - "decorators": [], - "pc": 4740, - "type": "function" - }, - "__wrappers__.supportsInterface_encode_return.Args": { - "full_name": "__wrappers__.supportsInterface_encode_return.Args", - "members": { - "range_check_ptr": { - "cairo_type": "felt", - "offset": 1 - }, - "ret_value": { - "cairo_type": "(success: felt)", - "offset": 0 - } - }, - "size": 2, - "type": "struct" - }, - "__wrappers__.supportsInterface_encode_return.ImplicitArgs": { - "full_name": "__wrappers__.supportsInterface_encode_return.ImplicitArgs", - "members": {}, - "size": 0, - "type": "struct" - }, - "__wrappers__.supportsInterface_encode_return.Return": { - "cairo_type": "(range_check_ptr: felt, data_len: felt, data: felt*)", - "type": "type_definition" - }, - "__wrappers__.supportsInterface_encode_return.SIZEOF_LOCALS": { - "type": "const", - "value": 1 - }, - "__wrappers__.supportsInterface_encode_return.memcpy": { - "destination": "starkware.cairo.common.memcpy.memcpy", - "type": "alias" - }, - "__wrappers__.symbol": { - "decorators": [ - "view" - ], - "pc": 4812, - "type": "function" - }, - "__wrappers__.symbol.Args": { - "full_name": "__wrappers__.symbol.Args", - "members": {}, - "size": 0, - "type": "struct" - }, - "__wrappers__.symbol.ImplicitArgs": { - "full_name": "__wrappers__.symbol.ImplicitArgs", - "members": {}, - "size": 0, - "type": "struct" - }, - "__wrappers__.symbol.Return": { - "cairo_type": "(syscall_ptr: felt*, pedersen_ptr: starkware.cairo.common.cairo_builtins.HashBuiltin*, range_check_ptr: felt, size: felt, retdata: felt*)", - "type": "type_definition" - }, - "__wrappers__.symbol.SIZEOF_LOCALS": { - "type": "const", - "value": 0 - }, - "__wrappers__.symbol.__wrapped_func": { - "destination": "__main__.symbol", - "type": "alias" - }, - "__wrappers__.symbol_encode_return": { - "decorators": [], - "pc": 4803, - "type": "function" - }, - "__wrappers__.symbol_encode_return.Args": { - "full_name": "__wrappers__.symbol_encode_return.Args", - "members": { - "range_check_ptr": { - "cairo_type": "felt", - "offset": 1 - }, - "ret_value": { - "cairo_type": "(symbol: felt)", - "offset": 0 - } - }, - "size": 2, - "type": "struct" - }, - "__wrappers__.symbol_encode_return.ImplicitArgs": { - "full_name": "__wrappers__.symbol_encode_return.ImplicitArgs", - "members": {}, - "size": 0, - "type": "struct" - }, - "__wrappers__.symbol_encode_return.Return": { - "cairo_type": "(range_check_ptr: felt, data_len: felt, data: felt*)", - "type": "type_definition" - }, - "__wrappers__.symbol_encode_return.SIZEOF_LOCALS": { - "type": "const", - "value": 1 - }, - "__wrappers__.symbol_encode_return.memcpy": { - "destination": "starkware.cairo.common.memcpy.memcpy", - "type": "alias" - }, - "__wrappers__.tokenByIndex": { - "decorators": [ - "view" - ], - "pc": 4670, - "type": "function" - }, - "__wrappers__.tokenByIndex.Args": { - "full_name": "__wrappers__.tokenByIndex.Args", - "members": {}, - "size": 0, - "type": "struct" - }, - "__wrappers__.tokenByIndex.ImplicitArgs": { - "full_name": "__wrappers__.tokenByIndex.ImplicitArgs", - "members": {}, - "size": 0, - "type": "struct" - }, - "__wrappers__.tokenByIndex.Return": { - "cairo_type": "(syscall_ptr: felt*, pedersen_ptr: starkware.cairo.common.cairo_builtins.HashBuiltin*, range_check_ptr: felt, size: felt, retdata: felt*)", - "type": "type_definition" - }, - "__wrappers__.tokenByIndex.SIZEOF_LOCALS": { - "type": "const", - "value": 0 - }, - "__wrappers__.tokenByIndex.__wrapped_func": { - "destination": "__main__.tokenByIndex", - "type": "alias" - }, - "__wrappers__.tokenByIndex_encode_return": { - "decorators": [], - "pc": 4660, - "type": "function" - }, - "__wrappers__.tokenByIndex_encode_return.Args": { - "full_name": "__wrappers__.tokenByIndex_encode_return.Args", - "members": { - "range_check_ptr": { - "cairo_type": "felt", - "offset": 2 - }, - "ret_value": { - "cairo_type": "(tokenId: starkware.cairo.common.uint256.Uint256)", - "offset": 0 - } - }, - "size": 3, - "type": "struct" - }, - "__wrappers__.tokenByIndex_encode_return.ImplicitArgs": { - "full_name": "__wrappers__.tokenByIndex_encode_return.ImplicitArgs", - "members": {}, - "size": 0, - "type": "struct" - }, - "__wrappers__.tokenByIndex_encode_return.Return": { - "cairo_type": "(range_check_ptr: felt, data_len: felt, data: felt*)", - "type": "type_definition" - }, - "__wrappers__.tokenByIndex_encode_return.SIZEOF_LOCALS": { - "type": "const", - "value": 1 - }, - "__wrappers__.tokenByIndex_encode_return.memcpy": { - "destination": "starkware.cairo.common.memcpy.memcpy", - "type": "alias" - }, - "__wrappers__.tokenOfOwnerByIndex": { - "decorators": [ - "view" - ], - "pc": 4713, - "type": "function" - }, - "__wrappers__.tokenOfOwnerByIndex.Args": { - "full_name": "__wrappers__.tokenOfOwnerByIndex.Args", - "members": {}, - "size": 0, - "type": "struct" - }, - "__wrappers__.tokenOfOwnerByIndex.ImplicitArgs": { - "full_name": "__wrappers__.tokenOfOwnerByIndex.ImplicitArgs", - "members": {}, - "size": 0, - "type": "struct" - }, - "__wrappers__.tokenOfOwnerByIndex.Return": { - "cairo_type": "(syscall_ptr: felt*, pedersen_ptr: starkware.cairo.common.cairo_builtins.HashBuiltin*, range_check_ptr: felt, size: felt, retdata: felt*)", - "type": "type_definition" - }, - "__wrappers__.tokenOfOwnerByIndex.SIZEOF_LOCALS": { - "type": "const", - "value": 0 - }, - "__wrappers__.tokenOfOwnerByIndex.__wrapped_func": { - "destination": "__main__.tokenOfOwnerByIndex", - "type": "alias" - }, - "__wrappers__.tokenOfOwnerByIndex_encode_return": { - "decorators": [], - "pc": 4703, - "type": "function" - }, - "__wrappers__.tokenOfOwnerByIndex_encode_return.Args": { - "full_name": "__wrappers__.tokenOfOwnerByIndex_encode_return.Args", - "members": { - "range_check_ptr": { - "cairo_type": "felt", - "offset": 2 - }, - "ret_value": { - "cairo_type": "(tokenId: starkware.cairo.common.uint256.Uint256)", - "offset": 0 - } - }, - "size": 3, - "type": "struct" - }, - "__wrappers__.tokenOfOwnerByIndex_encode_return.ImplicitArgs": { - "full_name": "__wrappers__.tokenOfOwnerByIndex_encode_return.ImplicitArgs", - "members": {}, - "size": 0, - "type": "struct" - }, - "__wrappers__.tokenOfOwnerByIndex_encode_return.Return": { - "cairo_type": "(range_check_ptr: felt, data_len: felt, data: felt*)", - "type": "type_definition" - }, - "__wrappers__.tokenOfOwnerByIndex_encode_return.SIZEOF_LOCALS": { - "type": "const", - "value": 1 - }, - "__wrappers__.tokenOfOwnerByIndex_encode_return.memcpy": { - "destination": "starkware.cairo.common.memcpy.memcpy", - "type": "alias" - }, - "__wrappers__.tokenURI": { - "decorators": [ - "view" - ], - "pc": 4324, - "type": "function" - }, - "__wrappers__.tokenURI.Args": { - "full_name": "__wrappers__.tokenURI.Args", - "members": {}, - "size": 0, - "type": "struct" - }, - "__wrappers__.tokenURI.ImplicitArgs": { - "full_name": "__wrappers__.tokenURI.ImplicitArgs", - "members": {}, - "size": 0, - "type": "struct" - }, - "__wrappers__.tokenURI.Return": { - "cairo_type": "(syscall_ptr: felt*, pedersen_ptr: starkware.cairo.common.cairo_builtins.HashBuiltin*, range_check_ptr: felt, size: felt, retdata: felt*)", - "type": "type_definition" - }, - "__wrappers__.tokenURI.SIZEOF_LOCALS": { - "type": "const", - "value": 2 - }, - "__wrappers__.tokenURI.__wrapped_func": { - "destination": "__main__.tokenURI", - "type": "alias" - }, - "__wrappers__.tokenURI_encode_return": { - "decorators": [], - "pc": 4305, - "type": "function" - }, - "__wrappers__.tokenURI_encode_return.Args": { - "full_name": "__wrappers__.tokenURI_encode_return.Args", - "members": { - "range_check_ptr": { - "cairo_type": "felt", - "offset": 2 - }, - "ret_value": { - "cairo_type": "(token_uri_len: felt, token_uri: felt*)", - "offset": 0 - } - }, - "size": 3, - "type": "struct" - }, - "__wrappers__.tokenURI_encode_return.ImplicitArgs": { - "full_name": "__wrappers__.tokenURI_encode_return.ImplicitArgs", - "members": {}, - "size": 0, - "type": "struct" - }, - "__wrappers__.tokenURI_encode_return.Return": { - "cairo_type": "(range_check_ptr: felt, data_len: felt, data: felt*)", - "type": "type_definition" - }, - "__wrappers__.tokenURI_encode_return.SIZEOF_LOCALS": { - "type": "const", - "value": 3 - }, - "__wrappers__.tokenURI_encode_return.memcpy": { - "destination": "starkware.cairo.common.memcpy.memcpy", - "type": "alias" - }, - "__wrappers__.totalSupply": { - "decorators": [ - "view" - ], - "pc": 4632, - "type": "function" - }, - "__wrappers__.totalSupply.Args": { - "full_name": "__wrappers__.totalSupply.Args", - "members": {}, - "size": 0, - "type": "struct" - }, - "__wrappers__.totalSupply.ImplicitArgs": { - "full_name": "__wrappers__.totalSupply.ImplicitArgs", - "members": {}, - "size": 0, - "type": "struct" - }, - "__wrappers__.totalSupply.Return": { - "cairo_type": "(syscall_ptr: felt*, pedersen_ptr: starkware.cairo.common.cairo_builtins.HashBuiltin*, range_check_ptr: felt, size: felt, retdata: felt*)", - "type": "type_definition" - }, - "__wrappers__.totalSupply.SIZEOF_LOCALS": { - "type": "const", - "value": 0 - }, - "__wrappers__.totalSupply.__wrapped_func": { - "destination": "__main__.totalSupply", - "type": "alias" - }, - "__wrappers__.totalSupply_encode_return": { - "decorators": [], - "pc": 4622, - "type": "function" - }, - "__wrappers__.totalSupply_encode_return.Args": { - "full_name": "__wrappers__.totalSupply_encode_return.Args", - "members": { - "range_check_ptr": { - "cairo_type": "felt", - "offset": 2 - }, - "ret_value": { - "cairo_type": "(totalSupply: starkware.cairo.common.uint256.Uint256)", - "offset": 0 - } - }, - "size": 3, - "type": "struct" - }, - "__wrappers__.totalSupply_encode_return.ImplicitArgs": { - "full_name": "__wrappers__.totalSupply_encode_return.ImplicitArgs", - "members": {}, - "size": 0, - "type": "struct" - }, - "__wrappers__.totalSupply_encode_return.Return": { - "cairo_type": "(range_check_ptr: felt, data_len: felt, data: felt*)", - "type": "type_definition" - }, - "__wrappers__.totalSupply_encode_return.SIZEOF_LOCALS": { - "type": "const", - "value": 1 - }, - "__wrappers__.totalSupply_encode_return.memcpy": { - "destination": "starkware.cairo.common.memcpy.memcpy", - "type": "alias" - }, - "__wrappers__.transferFrom": { - "decorators": [ - "external" - ], - "pc": 5036, - "type": "function" - }, - "__wrappers__.transferFrom.Args": { - "full_name": "__wrappers__.transferFrom.Args", - "members": {}, - "size": 0, - "type": "struct" - }, - "__wrappers__.transferFrom.ImplicitArgs": { - "full_name": "__wrappers__.transferFrom.ImplicitArgs", - "members": {}, - "size": 0, - "type": "struct" - }, - "__wrappers__.transferFrom.Return": { - "cairo_type": "(syscall_ptr: felt*, pedersen_ptr: starkware.cairo.common.cairo_builtins.HashBuiltin*, range_check_ptr: felt, size: felt, retdata: felt*)", - "type": "type_definition" - }, - "__wrappers__.transferFrom.SIZEOF_LOCALS": { - "type": "const", - "value": 0 - }, - "__wrappers__.transferFrom.__wrapped_func": { - "destination": "__main__.transferFrom", - "type": "alias" - }, - "__wrappers__.transferFrom_encode_return.memcpy": { - "destination": "starkware.cairo.common.memcpy.memcpy", - "type": "alias" - }, - "__wrappers__.transferOwnership": { - "decorators": [ - "external" - ], - "pc": 3549, - "type": "function" - }, - "__wrappers__.transferOwnership.Args": { - "full_name": "__wrappers__.transferOwnership.Args", - "members": {}, - "size": 0, - "type": "struct" - }, - "__wrappers__.transferOwnership.ImplicitArgs": { - "full_name": "__wrappers__.transferOwnership.ImplicitArgs", - "members": {}, - "size": 0, - "type": "struct" - }, - "__wrappers__.transferOwnership.Return": { - "cairo_type": "(syscall_ptr: felt*, pedersen_ptr: starkware.cairo.common.cairo_builtins.HashBuiltin*, range_check_ptr: felt, size: felt, retdata: felt*)", - "type": "type_definition" - }, - "__wrappers__.transferOwnership.SIZEOF_LOCALS": { - "type": "const", - "value": 0 - }, - "__wrappers__.transferOwnership.__wrapped_func": { - "destination": "__main__.transferOwnership", - "type": "alias" - }, - "__wrappers__.transferOwnership_encode_return.memcpy": { - "destination": "starkware.cairo.common.memcpy.memcpy", - "type": "alias" - }, - "interfaces.ICellRenderer": { - "type": "namespace" - }, - "interfaces.ICellRenderer.Args": { - "full_name": "interfaces.ICellRenderer.Args", - "members": {}, - "size": 0, - "type": "struct" - }, - "interfaces.ICellRenderer.ImplicitArgs": { - "full_name": "interfaces.ICellRenderer.ImplicitArgs", - "members": {}, - "size": 0, - "type": "struct" - }, - "interfaces.ICellRenderer.Return": { - "cairo_type": "()", - "type": "type_definition" - }, - "interfaces.ICellRenderer.SIZEOF_LOCALS": { - "type": "const", - "value": 0 - }, - "interfaces.ICellRenderer.TOKEN_URI_SELECTOR": { - "type": "const", - "value": 972963298680412523176499874437857470953299865468167336795334065766985940564 - }, - "interfaces.ICellRenderer.alloc": { - "destination": "starkware.cairo.common.alloc.alloc", - "type": "alias" - }, - "interfaces.ICellRenderer.call_contract": { - "destination": "starkware.starknet.common.syscalls.call_contract", - "type": "alias" - }, - "interfaces.ICellRenderer.library_call": { - "destination": "starkware.starknet.common.syscalls.library_call", - "type": "alias" - }, - "interfaces.ICellRenderer.memcpy": { - "destination": "starkware.cairo.common.memcpy.memcpy", - "type": "alias" - }, - "interfaces.ICellRenderer.token_uri": { - "decorators": [], - "pc": 2524, - "type": "function" - }, - "interfaces.ICellRenderer.token_uri.Args": { - "full_name": "interfaces.ICellRenderer.token_uri.Args", - "members": { - "contract_address": { - "cairo_type": "felt", - "offset": 0 - }, - "name": { - "cairo_type": "felt", - "offset": 3 - }, - "token_id": { - "cairo_type": "felt", - "offset": 1 - }, - "value": { - "cairo_type": "felt", - "offset": 2 - } - }, - "size": 4, - "type": "struct" - }, - "interfaces.ICellRenderer.token_uri.ImplicitArgs": { - "full_name": "interfaces.ICellRenderer.token_uri.ImplicitArgs", - "members": { - "range_check_ptr": { - "cairo_type": "felt", - "offset": 1 - }, - "syscall_ptr": { - "cairo_type": "felt*", - "offset": 0 - } - }, - "size": 2, - "type": "struct" - }, - "interfaces.ICellRenderer.token_uri.Return": { - "cairo_type": "(data_uri_len: felt, data_uri: felt*)", - "type": "type_definition" - }, - "interfaces.ICellRenderer.token_uri.SIZEOF_LOCALS": { - "type": "const", - "value": 1 - }, - "interfaces.IERC20": { - "type": "namespace" - }, - "interfaces.IERC20.Args": { - "full_name": "interfaces.IERC20.Args", - "members": {}, - "size": 0, - "type": "struct" - }, - "interfaces.IERC20.ImplicitArgs": { - "full_name": "interfaces.IERC20.ImplicitArgs", - "members": {}, - "size": 0, - "type": "struct" - }, - "interfaces.IERC20.Return": { - "cairo_type": "()", - "type": "type_definition" - }, - "interfaces.IERC20.SIZEOF_LOCALS": { - "type": "const", - "value": 0 - }, - "interfaces.IERC20.TRANSFERFROM_SELECTOR": { - "type": "const", - "value": 116061167288211781254449158074459916871457383008289084697957612485591092000 - }, - "interfaces.IERC20.alloc": { - "destination": "starkware.cairo.common.alloc.alloc", - "type": "alias" - }, - "interfaces.IERC20.call_contract": { - "destination": "starkware.starknet.common.syscalls.call_contract", - "type": "alias" - }, - "interfaces.IERC20.library_call": { - "destination": "starkware.starknet.common.syscalls.library_call", - "type": "alias" - }, - "interfaces.IERC20.memcpy": { - "destination": "starkware.cairo.common.memcpy.memcpy", - "type": "alias" - }, - "interfaces.INaming": { - "type": "namespace" - }, - "interfaces.INaming.ADDRESS_TO_DOMAIN_SELECTOR": { - "type": "const", - "value": 1603245472811392061809591067260089019426816523107069796238809492656815485546 - }, - "interfaces.INaming.Args": { - "full_name": "interfaces.INaming.Args", - "members": {}, - "size": 0, - "type": "struct" - }, - "interfaces.INaming.BOOK_DOMAIN_SELECTOR": { - "type": "const", - "value": 936186683880093131965099014648752254766233136099961890187205330811825921846 - }, - "interfaces.INaming.BUY_SELECTOR": { - "type": "const", - "value": 1287248338404847646550592163281630804549802830245792727739111870260704353484 - }, - "interfaces.INaming.DOMAIN_TO_ADDRESS_SELECTOR": { - "type": "const", - "value": 1304663672637822515145798791978169141181160723516306988875863115072156520032 - }, - "interfaces.INaming.DOMAIN_TO_EXPIRY_SELECTOR": { - "type": "const", - "value": 1688068772593240915304213064459924393639128458125446685210515793078781613139 - }, - "interfaces.INaming.DOMAIN_TO_TOKEN_ID_SELECTOR": { - "type": "const", - "value": 287203778117271963496001774582249906491145397282682300703398354179686477821 - }, - "interfaces.INaming.END_WHITELIST_SELECTOR": { - "type": "const", - "value": 430278271522566031738274479754686968816445504001052333064960814431997712491 - }, - "interfaces.INaming.ImplicitArgs": { - "full_name": "interfaces.INaming.ImplicitArgs", - "members": {}, - "size": 0, - "type": "struct" - }, - "interfaces.INaming.RENEW_SELECTOR": { - "type": "const", - "value": 930560540317825161694843407433987609535422044572966677410925679656498823082 - }, - "interfaces.INaming.RESET_SUBDOMAINS_SELECTOR": { - "type": "const", - "value": 126790722957066457440757403135463934732692534946350256483257019753141642677 - }, - "interfaces.INaming.Return": { - "cairo_type": "()", - "type": "type_definition" - }, - "interfaces.INaming.SET_ADDRESS_TO_DOMAIN_SELECTOR": { - "type": "const", - "value": 1272327425418240154350240722461747219123827088548848919054624593718880636642 - }, - "interfaces.INaming.SET_ADMIN_SELECTOR": { - "type": "const", - "value": 1643497262818327213033567936029803029001517427271096293547852372923525778830 - }, - "interfaces.INaming.SET_DOMAIN_OWNER_SELECTOR": { - "type": "const", - "value": 1657616985290299970565155922883425836620187549922238144093064068412290249085 - }, - "interfaces.INaming.SET_DOMAIN_TO_ADDRESS_SELECTOR": { - "type": "const", - "value": 1610394222013638976391106232404059096560849178173130090264042376853321601603 - }, - "interfaces.INaming.SET_L1_CONTRACT_SELECTOR": { - "type": "const", - "value": 458122530637151155520434043621120900362855539371259928133005713204644859413 - }, - "interfaces.INaming.SET_PRICING_CONTRACT_SELECTOR": { - "type": "const", - "value": 975234576296278877427218729874669435734165287699110428367360141295740789589 - }, - "interfaces.INaming.SIZEOF_LOCALS": { - "type": "const", - "value": 0 - }, - "interfaces.INaming.TRANSFER_BALANCE_SELECTOR": { - "type": "const", - "value": 1122072494608652793215368244817518736891471546633388220255683786620647808909 - }, - "interfaces.INaming.TRANSFER_DOMAIN_SELECTOR": { - "type": "const", - "value": 1278885709838921827005554121329964137868788698247768520021056154210563044448 - }, - "interfaces.INaming.UPGRADE_SELECTOR": { - "type": "const", - "value": 429286934060636239444256046255241512105662385954349596568652644383873724621 - }, - "interfaces.INaming.WHITELISTED_MINT_SELECTOR": { - "type": "const", - "value": 1539836454991056428460861901085714290318244964622763157349500142767310659373 - }, - "interfaces.INaming.alloc": { - "destination": "starkware.cairo.common.alloc.alloc", - "type": "alias" - }, - "interfaces.INaming.call_contract": { - "destination": "starkware.starknet.common.syscalls.call_contract", - "type": "alias" - }, - "interfaces.INaming.library_call": { - "destination": "starkware.starknet.common.syscalls.library_call", - "type": "alias" - }, - "interfaces.INaming.memcpy": { - "destination": "starkware.cairo.common.memcpy.memcpy", - "type": "alias" - }, - "interfaces.ISheet": { - "type": "namespace" - }, - "interfaces.ISheet.Args": { - "full_name": "interfaces.ISheet.Args", - "members": {}, - "size": 0, - "type": "struct" - }, - "interfaces.ISheet.GETCELL_SELECTOR": { - "type": "const", - "value": 443075019000274462353429320046008552588058957208244535324287878716174949881 - }, - "interfaces.ISheet.GETOWNER_SELECTOR": { - "type": "const", - "value": 1085522100484754146379177652828477906930263816537297518763855331761953103079 - }, - "interfaces.ISheet.ImplicitArgs": { - "full_name": "interfaces.ISheet.ImplicitArgs", - "members": {}, - "size": 0, - "type": "struct" - }, - "interfaces.ISheet.Return": { - "cairo_type": "()", - "type": "type_definition" - }, - "interfaces.ISheet.SIZEOF_LOCALS": { - "type": "const", - "value": 0 - }, - "interfaces.ISheet.alloc": { - "destination": "starkware.cairo.common.alloc.alloc", - "type": "alias" - }, - "interfaces.ISheet.call_contract": { - "destination": "starkware.starknet.common.syscalls.call_contract", - "type": "alias" - }, - "interfaces.ISheet.library_call": { - "destination": "starkware.starknet.common.syscalls.library_call", - "type": "alias" - }, - "interfaces.ISheet.memcpy": { - "destination": "starkware.cairo.common.memcpy.memcpy", - "type": "alias" - }, - "interfaces.IStarknetId": { - "type": "namespace" - }, - "interfaces.IStarknetId.APPROVE_SELECTOR": { - "type": "const", - "value": 949021990203918389843157787496164629863144228991510976554585288817234167820 - }, - "interfaces.IStarknetId.Args": { - "full_name": "interfaces.IStarknetId.Args", - "members": {}, - "size": 0, - "type": "struct" - }, - "interfaces.IStarknetId.BALANCEOF_SELECTOR": { - "type": "const", - "value": 1307730684388977109649524593492043083703013045633289330664425380824804018030 - }, - "interfaces.IStarknetId.GETAPPROVED_SELECTOR": { - "type": "const", - "value": 313621473760873935122783910304240840031223477451753145243382550859039628062 - }, - "interfaces.IStarknetId.GET_CONFIRMED_DATA_SELECTOR": { - "type": "const", - "value": 530322796649034839128289081374954442593577033803314989864127372531780950730 - }, - "interfaces.IStarknetId.GET_USER_DATA_SELECTOR": { - "type": "const", - "value": 1609502682165887867679853017049770109196370572340175903006230372478665206036 - }, - "interfaces.IStarknetId.GET_VERIFIER_DATA_SELECTOR": { - "type": "const", - "value": 473330094356310390713628159409004218371996502787750188278167680893156793640 - }, - "interfaces.IStarknetId.ISAPPROVEDFORALL_SELECTOR": { - "type": "const", - "value": 955640681311292084896022829531366384024621189567662336953606158378698906672 - }, - "interfaces.IStarknetId.ImplicitArgs": { - "full_name": "interfaces.IStarknetId.ImplicitArgs", - "members": {}, - "size": 0, - "type": "struct" - }, - "interfaces.IStarknetId.MINT_SELECTOR": { - "type": "const", - "value": 1329909728320632088402217562277154056711815095720684343816173432540100887380 - }, - "interfaces.IStarknetId.NAME_SELECTOR": { - "type": "const", - "value": 1528802474226268325865027367859591458315299653151958663884057507666229546336 - }, - "interfaces.IStarknetId.OWNEROF_SELECTOR": { - "type": "const", - "value": 73122117822990066614852869276021392412342625629800410280609241172256672489 - }, - "interfaces.IStarknetId.OWNER_OF_SELECTOR": { - "type": "const", - "value": 1507437626807800615315004738637144922697981204057516501649517912180529424988 - }, - "interfaces.IStarknetId.Return": { - "cairo_type": "()", - "type": "type_definition" - }, - "interfaces.IStarknetId.SAFETRANSFERFROM_SELECTOR": { - "type": "const", - "value": 730327702935662484951878015260342994925824754530470619774470754812327453764 - }, - "interfaces.IStarknetId.SETAPPROVALFORALL_SELECTOR": { - "type": "const", - "value": 1280583940859288259579061247154630474140520431395903753515491282704959909530 - }, - "interfaces.IStarknetId.SET_USER_DATA_SELECTOR": { - "type": "const", - "value": 109892487981044272116361807154779435378309404389934353731864404719549138389 - }, - "interfaces.IStarknetId.SET_VERIFIER_DATA_SELECTOR": { - "type": "const", - "value": 910948863065477691329095938083983158593751349378422102074061168548026151635 - }, - "interfaces.IStarknetId.SIZEOF_LOCALS": { - "type": "const", - "value": 0 - }, - "interfaces.IStarknetId.SYMBOL_SELECTOR": { - "type": "const", - "value": 944713526212149105522785400348068751682982210605126537021911324578866405028 - }, - "interfaces.IStarknetId.TOKENURI_SELECTOR": { - "type": "const", - "value": 527349597080429316600677333550588288293424769527062261567739596074387138637 - }, - "interfaces.IStarknetId.TRANSFERFROM_SELECTOR": { - "type": "const", - "value": 116061167288211781254449158074459916871457383008289084697957612485591092000 - }, - "interfaces.IStarknetId.alloc": { - "destination": "starkware.cairo.common.alloc.alloc", - "type": "alias" - }, - "interfaces.IStarknetId.call_contract": { - "destination": "starkware.starknet.common.syscalls.call_contract", - "type": "alias" - }, - "interfaces.IStarknetId.library_call": { - "destination": "starkware.starknet.common.syscalls.library_call", - "type": "alias" - }, - "interfaces.IStarknetId.memcpy": { - "destination": "starkware.cairo.common.memcpy.memcpy", - "type": "alias" - }, - "interfaces.Uint256": { - "destination": "starkware.cairo.common.uint256.Uint256", - "type": "alias" - }, - "openzeppelin.access.ownable.library.HashBuiltin": { - "destination": "starkware.cairo.common.cairo_builtins.HashBuiltin", - "type": "alias" - }, - "openzeppelin.access.ownable.library.Ownable": { - "type": "namespace" - }, - "openzeppelin.access.ownable.library.Ownable.Args": { - "full_name": "openzeppelin.access.ownable.library.Ownable.Args", - "members": {}, - "size": 0, - "type": "struct" - }, - "openzeppelin.access.ownable.library.Ownable.ImplicitArgs": { - "full_name": "openzeppelin.access.ownable.library.Ownable.ImplicitArgs", - "members": {}, - "size": 0, - "type": "struct" - }, - "openzeppelin.access.ownable.library.Ownable.Return": { - "cairo_type": "()", - "type": "type_definition" - }, - "openzeppelin.access.ownable.library.Ownable.SIZEOF_LOCALS": { - "type": "const", - "value": 0 - }, - "openzeppelin.access.ownable.library.Ownable._transfer_ownership": { - "decorators": [], - "pc": 320, - "type": "function" - }, - "openzeppelin.access.ownable.library.Ownable._transfer_ownership.Args": { - "full_name": "openzeppelin.access.ownable.library.Ownable._transfer_ownership.Args", - "members": { - "new_owner": { - "cairo_type": "felt", - "offset": 0 - } - }, - "size": 1, - "type": "struct" - }, - "openzeppelin.access.ownable.library.Ownable._transfer_ownership.ImplicitArgs": { - "full_name": "openzeppelin.access.ownable.library.Ownable._transfer_ownership.ImplicitArgs", - "members": { - "pedersen_ptr": { - "cairo_type": "starkware.cairo.common.cairo_builtins.HashBuiltin*", - "offset": 1 - }, - "range_check_ptr": { - "cairo_type": "felt", - "offset": 2 - }, - "syscall_ptr": { - "cairo_type": "felt*", - "offset": 0 - } - }, - "size": 3, - "type": "struct" - }, - "openzeppelin.access.ownable.library.Ownable._transfer_ownership.Return": { - "cairo_type": "()", - "type": "type_definition" - }, - "openzeppelin.access.ownable.library.Ownable._transfer_ownership.SIZEOF_LOCALS": { - "type": "const", - "value": 0 - }, - "openzeppelin.access.ownable.library.Ownable.assert_only_owner": { - "decorators": [], - "pc": 287, - "type": "function" - }, - "openzeppelin.access.ownable.library.Ownable.assert_only_owner.Args": { - "full_name": "openzeppelin.access.ownable.library.Ownable.assert_only_owner.Args", - "members": {}, - "size": 0, - "type": "struct" - }, - "openzeppelin.access.ownable.library.Ownable.assert_only_owner.ImplicitArgs": { - "full_name": "openzeppelin.access.ownable.library.Ownable.assert_only_owner.ImplicitArgs", - "members": { - "pedersen_ptr": { - "cairo_type": "starkware.cairo.common.cairo_builtins.HashBuiltin*", - "offset": 1 - }, - "range_check_ptr": { - "cairo_type": "felt", - "offset": 2 - }, - "syscall_ptr": { - "cairo_type": "felt*", - "offset": 0 - } - }, - "size": 3, - "type": "struct" - }, - "openzeppelin.access.ownable.library.Ownable.assert_only_owner.Return": { - "cairo_type": "()", - "type": "type_definition" - }, - "openzeppelin.access.ownable.library.Ownable.assert_only_owner.SIZEOF_LOCALS": { - "type": "const", - "value": 0 - }, - "openzeppelin.access.ownable.library.Ownable.initializer": { - "decorators": [], - "pc": 280, - "type": "function" - }, - "openzeppelin.access.ownable.library.Ownable.initializer.Args": { - "full_name": "openzeppelin.access.ownable.library.Ownable.initializer.Args", - "members": { - "owner": { - "cairo_type": "felt", - "offset": 0 - } - }, - "size": 1, - "type": "struct" - }, - "openzeppelin.access.ownable.library.Ownable.initializer.ImplicitArgs": { - "full_name": "openzeppelin.access.ownable.library.Ownable.initializer.ImplicitArgs", - "members": { - "pedersen_ptr": { - "cairo_type": "starkware.cairo.common.cairo_builtins.HashBuiltin*", - "offset": 1 - }, - "range_check_ptr": { - "cairo_type": "felt", - "offset": 2 - }, - "syscall_ptr": { - "cairo_type": "felt*", - "offset": 0 - } - }, - "size": 3, - "type": "struct" - }, - "openzeppelin.access.ownable.library.Ownable.initializer.Return": { - "cairo_type": "()", - "type": "type_definition" - }, - "openzeppelin.access.ownable.library.Ownable.initializer.SIZEOF_LOCALS": { - "type": "const", - "value": 0 - }, - "openzeppelin.access.ownable.library.Ownable.owner": { - "decorators": [], - "pc": 302, - "type": "function" - }, - "openzeppelin.access.ownable.library.Ownable.owner.Args": { - "full_name": "openzeppelin.access.ownable.library.Ownable.owner.Args", - "members": {}, - "size": 0, - "type": "struct" - }, - "openzeppelin.access.ownable.library.Ownable.owner.ImplicitArgs": { - "full_name": "openzeppelin.access.ownable.library.Ownable.owner.ImplicitArgs", - "members": { - "pedersen_ptr": { - "cairo_type": "starkware.cairo.common.cairo_builtins.HashBuiltin*", - "offset": 1 - }, - "range_check_ptr": { - "cairo_type": "felt", - "offset": 2 - }, - "syscall_ptr": { - "cairo_type": "felt*", - "offset": 0 - } - }, - "size": 3, - "type": "struct" - }, - "openzeppelin.access.ownable.library.Ownable.owner.Return": { - "cairo_type": "(owner: felt)", - "type": "type_definition" - }, - "openzeppelin.access.ownable.library.Ownable.owner.SIZEOF_LOCALS": { - "type": "const", - "value": 0 - }, - "openzeppelin.access.ownable.library.Ownable.transfer_ownership": { - "decorators": [], - "pc": 308, - "type": "function" - }, - "openzeppelin.access.ownable.library.Ownable.transfer_ownership.Args": { - "full_name": "openzeppelin.access.ownable.library.Ownable.transfer_ownership.Args", - "members": { - "new_owner": { - "cairo_type": "felt", - "offset": 0 - } - }, - "size": 1, - "type": "struct" - }, - "openzeppelin.access.ownable.library.Ownable.transfer_ownership.ImplicitArgs": { - "full_name": "openzeppelin.access.ownable.library.Ownable.transfer_ownership.ImplicitArgs", - "members": { - "pedersen_ptr": { - "cairo_type": "starkware.cairo.common.cairo_builtins.HashBuiltin*", - "offset": 1 - }, - "range_check_ptr": { - "cairo_type": "felt", - "offset": 2 - }, - "syscall_ptr": { - "cairo_type": "felt*", - "offset": 0 - } - }, - "size": 3, - "type": "struct" - }, - "openzeppelin.access.ownable.library.Ownable.transfer_ownership.Return": { - "cairo_type": "()", - "type": "type_definition" - }, - "openzeppelin.access.ownable.library.Ownable.transfer_ownership.SIZEOF_LOCALS": { - "type": "const", - "value": 0 - }, - "openzeppelin.access.ownable.library.Ownable_owner": { - "type": "namespace" - }, - "openzeppelin.access.ownable.library.Ownable_owner.Args": { - "full_name": "openzeppelin.access.ownable.library.Ownable_owner.Args", - "members": {}, - "size": 0, - "type": "struct" - }, - "openzeppelin.access.ownable.library.Ownable_owner.HashBuiltin": { - "destination": "starkware.cairo.common.cairo_builtins.HashBuiltin", - "type": "alias" - }, - "openzeppelin.access.ownable.library.Ownable_owner.ImplicitArgs": { - "full_name": "openzeppelin.access.ownable.library.Ownable_owner.ImplicitArgs", - "members": {}, - "size": 0, - "type": "struct" - }, - "openzeppelin.access.ownable.library.Ownable_owner.Return": { - "cairo_type": "()", - "type": "type_definition" - }, - "openzeppelin.access.ownable.library.Ownable_owner.SIZEOF_LOCALS": { - "type": "const", - "value": 0 - }, - "openzeppelin.access.ownable.library.Ownable_owner.addr": { - "decorators": [], - "pc": 250, - "type": "function" - }, - "openzeppelin.access.ownable.library.Ownable_owner.addr.Args": { - "full_name": "openzeppelin.access.ownable.library.Ownable_owner.addr.Args", - "members": {}, - "size": 0, - "type": "struct" - }, - "openzeppelin.access.ownable.library.Ownable_owner.addr.ImplicitArgs": { - "full_name": "openzeppelin.access.ownable.library.Ownable_owner.addr.ImplicitArgs", - "members": { - "pedersen_ptr": { - "cairo_type": "starkware.cairo.common.cairo_builtins.HashBuiltin*", - "offset": 0 - }, - "range_check_ptr": { - "cairo_type": "felt", - "offset": 1 - } - }, - "size": 2, - "type": "struct" - }, - "openzeppelin.access.ownable.library.Ownable_owner.addr.Return": { - "cairo_type": "(res: felt)", - "type": "type_definition" - }, - "openzeppelin.access.ownable.library.Ownable_owner.addr.SIZEOF_LOCALS": { - "type": "const", - "value": 0 - }, - "openzeppelin.access.ownable.library.Ownable_owner.hash2": { - "destination": "starkware.cairo.common.hash.hash2", - "type": "alias" - }, - "openzeppelin.access.ownable.library.Ownable_owner.normalize_address": { - "destination": "starkware.starknet.common.storage.normalize_address", - "type": "alias" - }, - "openzeppelin.access.ownable.library.Ownable_owner.read": { - "decorators": [], - "pc": 255, - "type": "function" - }, - "openzeppelin.access.ownable.library.Ownable_owner.read.Args": { - "full_name": "openzeppelin.access.ownable.library.Ownable_owner.read.Args", - "members": {}, - "size": 0, - "type": "struct" - }, - "openzeppelin.access.ownable.library.Ownable_owner.read.ImplicitArgs": { - "full_name": "openzeppelin.access.ownable.library.Ownable_owner.read.ImplicitArgs", - "members": { - "pedersen_ptr": { - "cairo_type": "starkware.cairo.common.cairo_builtins.HashBuiltin*", - "offset": 1 - }, - "range_check_ptr": { - "cairo_type": "felt", - "offset": 2 - }, - "syscall_ptr": { - "cairo_type": "felt*", - "offset": 0 - } - }, - "size": 3, - "type": "struct" - }, - "openzeppelin.access.ownable.library.Ownable_owner.read.Return": { - "cairo_type": "(owner: felt)", - "type": "type_definition" - }, - "openzeppelin.access.ownable.library.Ownable_owner.read.SIZEOF_LOCALS": { - "type": "const", - "value": 0 - }, - "openzeppelin.access.ownable.library.Ownable_owner.storage_read": { - "destination": "starkware.starknet.common.syscalls.storage_read", - "type": "alias" - }, - "openzeppelin.access.ownable.library.Ownable_owner.storage_write": { - "destination": "starkware.starknet.common.syscalls.storage_write", - "type": "alias" - }, - "openzeppelin.access.ownable.library.Ownable_owner.write": { - "decorators": [], - "pc": 268, - "type": "function" - }, - "openzeppelin.access.ownable.library.Ownable_owner.write.Args": { - "full_name": "openzeppelin.access.ownable.library.Ownable_owner.write.Args", - "members": { - "value": { - "cairo_type": "felt", - "offset": 0 - } - }, - "size": 1, - "type": "struct" - }, - "openzeppelin.access.ownable.library.Ownable_owner.write.ImplicitArgs": { - "full_name": "openzeppelin.access.ownable.library.Ownable_owner.write.ImplicitArgs", - "members": { - "pedersen_ptr": { - "cairo_type": "starkware.cairo.common.cairo_builtins.HashBuiltin*", - "offset": 1 - }, - "range_check_ptr": { - "cairo_type": "felt", - "offset": 2 - }, - "syscall_ptr": { - "cairo_type": "felt*", - "offset": 0 - } - }, - "size": 3, - "type": "struct" - }, - "openzeppelin.access.ownable.library.Ownable_owner.write.Return": { - "cairo_type": "()", - "type": "type_definition" - }, - "openzeppelin.access.ownable.library.Ownable_owner.write.SIZEOF_LOCALS": { - "type": "const", - "value": 0 - }, - "openzeppelin.access.ownable.library.OwnershipTransferred": { - "type": "namespace" - }, - "openzeppelin.access.ownable.library.OwnershipTransferred.Args": { - "full_name": "openzeppelin.access.ownable.library.OwnershipTransferred.Args", - "members": {}, - "size": 0, - "type": "struct" - }, - "openzeppelin.access.ownable.library.OwnershipTransferred.ImplicitArgs": { - "full_name": "openzeppelin.access.ownable.library.OwnershipTransferred.ImplicitArgs", - "members": {}, - "size": 0, - "type": "struct" - }, - "openzeppelin.access.ownable.library.OwnershipTransferred.Return": { - "cairo_type": "()", - "type": "type_definition" - }, - "openzeppelin.access.ownable.library.OwnershipTransferred.SELECTOR": { - "type": "const", - "value": 553132481214675521502977957974509639062080100631756862105218886163371506175 - }, - "openzeppelin.access.ownable.library.OwnershipTransferred.SIZEOF_LOCALS": { - "type": "const", - "value": 0 - }, - "openzeppelin.access.ownable.library.OwnershipTransferred.alloc": { - "destination": "starkware.cairo.common.alloc.alloc", - "type": "alias" - }, - "openzeppelin.access.ownable.library.OwnershipTransferred.emit": { - "decorators": [], - "pc": 225, - "type": "function" - }, - "openzeppelin.access.ownable.library.OwnershipTransferred.emit.Args": { - "full_name": "openzeppelin.access.ownable.library.OwnershipTransferred.emit.Args", - "members": { - "newOwner": { - "cairo_type": "felt", - "offset": 1 - }, - "previousOwner": { - "cairo_type": "felt", - "offset": 0 - } - }, - "size": 2, - "type": "struct" - }, - "openzeppelin.access.ownable.library.OwnershipTransferred.emit.ImplicitArgs": { - "full_name": "openzeppelin.access.ownable.library.OwnershipTransferred.emit.ImplicitArgs", - "members": { - "range_check_ptr": { - "cairo_type": "felt", - "offset": 1 - }, - "syscall_ptr": { - "cairo_type": "felt*", - "offset": 0 - } - }, - "size": 2, - "type": "struct" - }, - "openzeppelin.access.ownable.library.OwnershipTransferred.emit.Return": { - "cairo_type": "()", - "type": "type_definition" - }, - "openzeppelin.access.ownable.library.OwnershipTransferred.emit.SIZEOF_LOCALS": { - "type": "const", - "value": 2 - }, - "openzeppelin.access.ownable.library.OwnershipTransferred.emit_event": { - "destination": "starkware.starknet.common.syscalls.emit_event", - "type": "alias" - }, - "openzeppelin.access.ownable.library.OwnershipTransferred.memcpy": { - "destination": "starkware.cairo.common.memcpy.memcpy", - "type": "alias" - }, - "openzeppelin.access.ownable.library.assert_not_zero": { - "destination": "starkware.cairo.common.math.assert_not_zero", - "type": "alias" - }, - "openzeppelin.access.ownable.library.get_caller_address": { - "destination": "starkware.starknet.common.syscalls.get_caller_address", - "type": "alias" - }, - "openzeppelin.introspection.erc165.IERC165.IERC165": { - "type": "namespace" - }, - "openzeppelin.introspection.erc165.IERC165.IERC165.Args": { - "full_name": "openzeppelin.introspection.erc165.IERC165.IERC165.Args", - "members": {}, - "size": 0, - "type": "struct" - }, - "openzeppelin.introspection.erc165.IERC165.IERC165.ImplicitArgs": { - "full_name": "openzeppelin.introspection.erc165.IERC165.IERC165.ImplicitArgs", - "members": {}, - "size": 0, - "type": "struct" - }, - "openzeppelin.introspection.erc165.IERC165.IERC165.Return": { - "cairo_type": "()", - "type": "type_definition" - }, - "openzeppelin.introspection.erc165.IERC165.IERC165.SIZEOF_LOCALS": { - "type": "const", - "value": 0 - }, - "openzeppelin.introspection.erc165.IERC165.IERC165.SUPPORTSINTERFACE_SELECTOR": { - "type": "const", - "value": 1184015894760294494673613438913361435336722154500302038630992932234692784845 - }, - "openzeppelin.introspection.erc165.IERC165.IERC165.alloc": { - "destination": "starkware.cairo.common.alloc.alloc", - "type": "alias" - }, - "openzeppelin.introspection.erc165.IERC165.IERC165.call_contract": { - "destination": "starkware.starknet.common.syscalls.call_contract", - "type": "alias" - }, - "openzeppelin.introspection.erc165.IERC165.IERC165.library_call": { - "destination": "starkware.starknet.common.syscalls.library_call", - "type": "alias" - }, - "openzeppelin.introspection.erc165.IERC165.IERC165.memcpy": { - "destination": "starkware.cairo.common.memcpy.memcpy", - "type": "alias" - }, - "openzeppelin.introspection.erc165.IERC165.IERC165.supportsInterface": { - "decorators": [], - "pc": 629, - "type": "function" - }, - "openzeppelin.introspection.erc165.IERC165.IERC165.supportsInterface.Args": { - "full_name": "openzeppelin.introspection.erc165.IERC165.IERC165.supportsInterface.Args", - "members": { - "contract_address": { - "cairo_type": "felt", - "offset": 0 - }, - "interfaceId": { - "cairo_type": "felt", - "offset": 1 - } - }, - "size": 2, - "type": "struct" - }, - "openzeppelin.introspection.erc165.IERC165.IERC165.supportsInterface.ImplicitArgs": { - "full_name": "openzeppelin.introspection.erc165.IERC165.IERC165.supportsInterface.ImplicitArgs", - "members": { - "range_check_ptr": { - "cairo_type": "felt", - "offset": 1 - }, - "syscall_ptr": { - "cairo_type": "felt*", - "offset": 0 - } - }, - "size": 2, - "type": "struct" - }, - "openzeppelin.introspection.erc165.IERC165.IERC165.supportsInterface.Return": { - "cairo_type": "(success: felt)", - "type": "type_definition" - }, - "openzeppelin.introspection.erc165.IERC165.IERC165.supportsInterface.SIZEOF_LOCALS": { - "type": "const", - "value": 1 - }, - "openzeppelin.introspection.erc165.library.ERC165": { - "type": "namespace" - }, - "openzeppelin.introspection.erc165.library.ERC165.Args": { - "full_name": "openzeppelin.introspection.erc165.library.ERC165.Args", - "members": {}, - "size": 0, - "type": "struct" - }, - "openzeppelin.introspection.erc165.library.ERC165.ImplicitArgs": { - "full_name": "openzeppelin.introspection.erc165.library.ERC165.ImplicitArgs", - "members": {}, - "size": 0, - "type": "struct" - }, - "openzeppelin.introspection.erc165.library.ERC165.Return": { - "cairo_type": "()", - "type": "type_definition" - }, - "openzeppelin.introspection.erc165.library.ERC165.SIZEOF_LOCALS": { - "type": "const", - "value": 0 - }, - "openzeppelin.introspection.erc165.library.ERC165.register_interface": { - "decorators": [], - "pc": 615, - "type": "function" - }, - "openzeppelin.introspection.erc165.library.ERC165.register_interface.Args": { - "full_name": "openzeppelin.introspection.erc165.library.ERC165.register_interface.Args", - "members": { - "interface_id": { - "cairo_type": "felt", - "offset": 0 - } - }, - "size": 1, - "type": "struct" - }, - "openzeppelin.introspection.erc165.library.ERC165.register_interface.ImplicitArgs": { - "full_name": "openzeppelin.introspection.erc165.library.ERC165.register_interface.ImplicitArgs", - "members": { - "pedersen_ptr": { - "cairo_type": "starkware.cairo.common.cairo_builtins.HashBuiltin*", - "offset": 1 - }, - "range_check_ptr": { - "cairo_type": "felt", - "offset": 2 - }, - "syscall_ptr": { - "cairo_type": "felt*", - "offset": 0 - } - }, - "size": 3, - "type": "struct" - }, - "openzeppelin.introspection.erc165.library.ERC165.register_interface.Return": { - "cairo_type": "()", - "type": "type_definition" - }, - "openzeppelin.introspection.erc165.library.ERC165.register_interface.SIZEOF_LOCALS": { - "type": "const", - "value": 0 - }, - "openzeppelin.introspection.erc165.library.ERC165.supports_interface": { - "decorators": [], - "pc": 598, - "type": "function" - }, - "openzeppelin.introspection.erc165.library.ERC165.supports_interface.Args": { - "full_name": "openzeppelin.introspection.erc165.library.ERC165.supports_interface.Args", - "members": { - "interface_id": { - "cairo_type": "felt", - "offset": 0 - } - }, - "size": 1, - "type": "struct" - }, - "openzeppelin.introspection.erc165.library.ERC165.supports_interface.ImplicitArgs": { - "full_name": "openzeppelin.introspection.erc165.library.ERC165.supports_interface.ImplicitArgs", - "members": { - "pedersen_ptr": { - "cairo_type": "starkware.cairo.common.cairo_builtins.HashBuiltin*", - "offset": 1 - }, - "range_check_ptr": { - "cairo_type": "felt", - "offset": 2 - }, - "syscall_ptr": { - "cairo_type": "felt*", - "offset": 0 - } - }, - "size": 3, - "type": "struct" - }, - "openzeppelin.introspection.erc165.library.ERC165.supports_interface.Return": { - "cairo_type": "(success: felt)", - "type": "type_definition" - }, - "openzeppelin.introspection.erc165.library.ERC165.supports_interface.SIZEOF_LOCALS": { - "type": "const", - "value": 0 - }, - "openzeppelin.introspection.erc165.library.ERC165_supported_interfaces": { - "type": "namespace" - }, - "openzeppelin.introspection.erc165.library.ERC165_supported_interfaces.Args": { - "full_name": "openzeppelin.introspection.erc165.library.ERC165_supported_interfaces.Args", - "members": {}, - "size": 0, - "type": "struct" - }, - "openzeppelin.introspection.erc165.library.ERC165_supported_interfaces.HashBuiltin": { - "destination": "starkware.cairo.common.cairo_builtins.HashBuiltin", - "type": "alias" - }, - "openzeppelin.introspection.erc165.library.ERC165_supported_interfaces.ImplicitArgs": { - "full_name": "openzeppelin.introspection.erc165.library.ERC165_supported_interfaces.ImplicitArgs", - "members": {}, - "size": 0, - "type": "struct" - }, - "openzeppelin.introspection.erc165.library.ERC165_supported_interfaces.Return": { - "cairo_type": "()", - "type": "type_definition" - }, - "openzeppelin.introspection.erc165.library.ERC165_supported_interfaces.SIZEOF_LOCALS": { - "type": "const", - "value": 0 - }, - "openzeppelin.introspection.erc165.library.ERC165_supported_interfaces.addr": { - "decorators": [], - "pc": 557, - "type": "function" - }, - "openzeppelin.introspection.erc165.library.ERC165_supported_interfaces.addr.Args": { - "full_name": "openzeppelin.introspection.erc165.library.ERC165_supported_interfaces.addr.Args", - "members": { - "interface_id": { - "cairo_type": "felt", - "offset": 0 - } - }, - "size": 1, - "type": "struct" - }, - "openzeppelin.introspection.erc165.library.ERC165_supported_interfaces.addr.ImplicitArgs": { - "full_name": "openzeppelin.introspection.erc165.library.ERC165_supported_interfaces.addr.ImplicitArgs", - "members": { - "pedersen_ptr": { - "cairo_type": "starkware.cairo.common.cairo_builtins.HashBuiltin*", - "offset": 0 - }, - "range_check_ptr": { - "cairo_type": "felt", - "offset": 1 - } - }, - "size": 2, - "type": "struct" - }, - "openzeppelin.introspection.erc165.library.ERC165_supported_interfaces.addr.Return": { - "cairo_type": "(res: felt)", - "type": "type_definition" - }, - "openzeppelin.introspection.erc165.library.ERC165_supported_interfaces.addr.SIZEOF_LOCALS": { - "type": "const", - "value": 0 - }, - "openzeppelin.introspection.erc165.library.ERC165_supported_interfaces.hash2": { - "destination": "starkware.cairo.common.hash.hash2", - "type": "alias" - }, - "openzeppelin.introspection.erc165.library.ERC165_supported_interfaces.normalize_address": { - "destination": "starkware.starknet.common.storage.normalize_address", - "type": "alias" - }, - "openzeppelin.introspection.erc165.library.ERC165_supported_interfaces.read": { - "decorators": [], - "pc": 571, - "type": "function" - }, - "openzeppelin.introspection.erc165.library.ERC165_supported_interfaces.read.Args": { - "full_name": "openzeppelin.introspection.erc165.library.ERC165_supported_interfaces.read.Args", - "members": { - "interface_id": { - "cairo_type": "felt", - "offset": 0 - } - }, - "size": 1, - "type": "struct" - }, - "openzeppelin.introspection.erc165.library.ERC165_supported_interfaces.read.ImplicitArgs": { - "full_name": "openzeppelin.introspection.erc165.library.ERC165_supported_interfaces.read.ImplicitArgs", - "members": { - "pedersen_ptr": { - "cairo_type": "starkware.cairo.common.cairo_builtins.HashBuiltin*", - "offset": 1 - }, - "range_check_ptr": { - "cairo_type": "felt", - "offset": 2 - }, - "syscall_ptr": { - "cairo_type": "felt*", - "offset": 0 - } - }, - "size": 3, - "type": "struct" - }, - "openzeppelin.introspection.erc165.library.ERC165_supported_interfaces.read.Return": { - "cairo_type": "(is_supported: felt)", - "type": "type_definition" - }, - "openzeppelin.introspection.erc165.library.ERC165_supported_interfaces.read.SIZEOF_LOCALS": { - "type": "const", - "value": 0 - }, - "openzeppelin.introspection.erc165.library.ERC165_supported_interfaces.storage_read": { - "destination": "starkware.starknet.common.syscalls.storage_read", - "type": "alias" - }, - "openzeppelin.introspection.erc165.library.ERC165_supported_interfaces.storage_write": { - "destination": "starkware.starknet.common.syscalls.storage_write", - "type": "alias" - }, - "openzeppelin.introspection.erc165.library.ERC165_supported_interfaces.write": { - "decorators": [], - "pc": 585, - "type": "function" - }, - "openzeppelin.introspection.erc165.library.ERC165_supported_interfaces.write.Args": { - "full_name": "openzeppelin.introspection.erc165.library.ERC165_supported_interfaces.write.Args", - "members": { - "interface_id": { - "cairo_type": "felt", - "offset": 0 - }, - "value": { - "cairo_type": "felt", - "offset": 1 - } - }, - "size": 2, - "type": "struct" - }, - "openzeppelin.introspection.erc165.library.ERC165_supported_interfaces.write.ImplicitArgs": { - "full_name": "openzeppelin.introspection.erc165.library.ERC165_supported_interfaces.write.ImplicitArgs", - "members": { - "pedersen_ptr": { - "cairo_type": "starkware.cairo.common.cairo_builtins.HashBuiltin*", - "offset": 1 - }, - "range_check_ptr": { - "cairo_type": "felt", - "offset": 2 - }, - "syscall_ptr": { - "cairo_type": "felt*", - "offset": 0 - } - }, - "size": 3, - "type": "struct" - }, - "openzeppelin.introspection.erc165.library.ERC165_supported_interfaces.write.Return": { - "cairo_type": "()", - "type": "type_definition" - }, - "openzeppelin.introspection.erc165.library.ERC165_supported_interfaces.write.SIZEOF_LOCALS": { - "type": "const", - "value": 0 - }, - "openzeppelin.introspection.erc165.library.HashBuiltin": { - "destination": "starkware.cairo.common.cairo_builtins.HashBuiltin", - "type": "alias" - }, - "openzeppelin.introspection.erc165.library.IERC165_ID": { - "destination": "openzeppelin.utils.constants.library.IERC165_ID", - "type": "alias" - }, - "openzeppelin.introspection.erc165.library.INVALID_ID": { - "destination": "openzeppelin.utils.constants.library.INVALID_ID", - "type": "alias" - }, - "openzeppelin.introspection.erc165.library.TRUE": { - "destination": "starkware.cairo.common.bool.TRUE", - "type": "alias" - }, - "openzeppelin.introspection.erc165.library.assert_not_equal": { - "destination": "starkware.cairo.common.math.assert_not_equal", - "type": "alias" - }, - "openzeppelin.security.safemath.library.FALSE": { - "destination": "starkware.cairo.common.bool.FALSE", - "type": "alias" - }, - "openzeppelin.security.safemath.library.HashBuiltin": { - "destination": "starkware.cairo.common.cairo_builtins.HashBuiltin", - "type": "alias" - }, - "openzeppelin.security.safemath.library.SafeUint256": { - "type": "namespace" - }, - "openzeppelin.security.safemath.library.SafeUint256.Args": { - "full_name": "openzeppelin.security.safemath.library.SafeUint256.Args", - "members": {}, - "size": 0, - "type": "struct" - }, - "openzeppelin.security.safemath.library.SafeUint256.ImplicitArgs": { - "full_name": "openzeppelin.security.safemath.library.SafeUint256.ImplicitArgs", - "members": {}, - "size": 0, - "type": "struct" - }, - "openzeppelin.security.safemath.library.SafeUint256.Return": { - "cairo_type": "()", - "type": "type_definition" - }, - "openzeppelin.security.safemath.library.SafeUint256.SIZEOF_LOCALS": { - "type": "const", - "value": 0 - }, - "openzeppelin.security.safemath.library.SafeUint256.add": { - "decorators": [], - "pc": 652, - "type": "function" - }, - "openzeppelin.security.safemath.library.SafeUint256.add.Args": { - "full_name": "openzeppelin.security.safemath.library.SafeUint256.add.Args", - "members": { - "a": { - "cairo_type": "starkware.cairo.common.uint256.Uint256", - "offset": 0 - }, - "b": { - "cairo_type": "starkware.cairo.common.uint256.Uint256", - "offset": 2 - } - }, - "size": 4, - "type": "struct" - }, - "openzeppelin.security.safemath.library.SafeUint256.add.ImplicitArgs": { - "full_name": "openzeppelin.security.safemath.library.SafeUint256.add.ImplicitArgs", - "members": { - "pedersen_ptr": { - "cairo_type": "starkware.cairo.common.cairo_builtins.HashBuiltin*", - "offset": 1 - }, - "range_check_ptr": { - "cairo_type": "felt", - "offset": 2 - }, - "syscall_ptr": { - "cairo_type": "felt*", - "offset": 0 - } - }, - "size": 3, - "type": "struct" - }, - "openzeppelin.security.safemath.library.SafeUint256.add.Return": { - "cairo_type": "(c: starkware.cairo.common.uint256.Uint256)", - "type": "type_definition" - }, - "openzeppelin.security.safemath.library.SafeUint256.add.SIZEOF_LOCALS": { - "type": "const", - "value": 0 - }, - "openzeppelin.security.safemath.library.SafeUint256.sub_le": { - "decorators": [], - "pc": 675, - "type": "function" - }, - "openzeppelin.security.safemath.library.SafeUint256.sub_le.Args": { - "full_name": "openzeppelin.security.safemath.library.SafeUint256.sub_le.Args", - "members": { - "a": { - "cairo_type": "starkware.cairo.common.uint256.Uint256", - "offset": 0 - }, - "b": { - "cairo_type": "starkware.cairo.common.uint256.Uint256", - "offset": 2 - } - }, - "size": 4, - "type": "struct" - }, - "openzeppelin.security.safemath.library.SafeUint256.sub_le.ImplicitArgs": { - "full_name": "openzeppelin.security.safemath.library.SafeUint256.sub_le.ImplicitArgs", - "members": { - "pedersen_ptr": { - "cairo_type": "starkware.cairo.common.cairo_builtins.HashBuiltin*", - "offset": 1 - }, - "range_check_ptr": { - "cairo_type": "felt", - "offset": 2 - }, - "syscall_ptr": { - "cairo_type": "felt*", - "offset": 0 - } - }, - "size": 3, - "type": "struct" - }, - "openzeppelin.security.safemath.library.SafeUint256.sub_le.Return": { - "cairo_type": "(c: starkware.cairo.common.uint256.Uint256)", - "type": "type_definition" - }, - "openzeppelin.security.safemath.library.SafeUint256.sub_le.SIZEOF_LOCALS": { - "type": "const", - "value": 0 - }, - "openzeppelin.security.safemath.library.TRUE": { - "destination": "starkware.cairo.common.bool.TRUE", - "type": "alias" - }, - "openzeppelin.security.safemath.library.Uint256": { - "destination": "starkware.cairo.common.uint256.Uint256", - "type": "alias" - }, - "openzeppelin.security.safemath.library.uint256_add": { - "destination": "starkware.cairo.common.uint256.uint256_add", - "type": "alias" - }, - "openzeppelin.security.safemath.library.uint256_check": { - "destination": "starkware.cairo.common.uint256.uint256_check", - "type": "alias" - }, - "openzeppelin.security.safemath.library.uint256_eq": { - "destination": "starkware.cairo.common.uint256.uint256_eq", - "type": "alias" - }, - "openzeppelin.security.safemath.library.uint256_le": { - "destination": "starkware.cairo.common.uint256.uint256_le", - "type": "alias" - }, - "openzeppelin.security.safemath.library.uint256_lt": { - "destination": "starkware.cairo.common.uint256.uint256_lt", - "type": "alias" - }, - "openzeppelin.security.safemath.library.uint256_mul": { - "destination": "starkware.cairo.common.uint256.uint256_mul", - "type": "alias" - }, - "openzeppelin.security.safemath.library.uint256_sub": { - "destination": "starkware.cairo.common.uint256.uint256_sub", - "type": "alias" - }, - "openzeppelin.security.safemath.library.uint256_unsigned_div_rem": { - "destination": "starkware.cairo.common.uint256.uint256_unsigned_div_rem", - "type": "alias" - }, - "openzeppelin.token.erc721.IERC721Receiver.IERC721Receiver": { - "type": "namespace" - }, - "openzeppelin.token.erc721.IERC721Receiver.IERC721Receiver.Args": { - "full_name": "openzeppelin.token.erc721.IERC721Receiver.IERC721Receiver.Args", - "members": {}, - "size": 0, - "type": "struct" - }, - "openzeppelin.token.erc721.IERC721Receiver.IERC721Receiver.ImplicitArgs": { - "full_name": "openzeppelin.token.erc721.IERC721Receiver.IERC721Receiver.ImplicitArgs", - "members": {}, - "size": 0, - "type": "struct" - }, - "openzeppelin.token.erc721.IERC721Receiver.IERC721Receiver.ONERC721RECEIVED_SELECTOR": { - "type": "const", - "value": 441833262846246486607087847804043886170335009155803575450536462761436446875 - }, - "openzeppelin.token.erc721.IERC721Receiver.IERC721Receiver.Return": { - "cairo_type": "()", - "type": "type_definition" - }, - "openzeppelin.token.erc721.IERC721Receiver.IERC721Receiver.SIZEOF_LOCALS": { - "type": "const", - "value": 0 - }, - "openzeppelin.token.erc721.IERC721Receiver.IERC721Receiver.alloc": { - "destination": "starkware.cairo.common.alloc.alloc", - "type": "alias" - }, - "openzeppelin.token.erc721.IERC721Receiver.IERC721Receiver.call_contract": { - "destination": "starkware.starknet.common.syscalls.call_contract", - "type": "alias" - }, - "openzeppelin.token.erc721.IERC721Receiver.IERC721Receiver.library_call": { - "destination": "starkware.starknet.common.syscalls.library_call", - "type": "alias" - }, - "openzeppelin.token.erc721.IERC721Receiver.IERC721Receiver.memcpy": { - "destination": "starkware.cairo.common.memcpy.memcpy", - "type": "alias" - }, - "openzeppelin.token.erc721.IERC721Receiver.IERC721Receiver.onERC721Received": { - "decorators": [], - "pc": 707, - "type": "function" - }, - "openzeppelin.token.erc721.IERC721Receiver.IERC721Receiver.onERC721Received.Args": { - "full_name": "openzeppelin.token.erc721.IERC721Receiver.IERC721Receiver.onERC721Received.Args", - "members": { - "contract_address": { - "cairo_type": "felt", - "offset": 0 - }, - "data": { - "cairo_type": "felt*", - "offset": 6 - }, - "data_len": { - "cairo_type": "felt", - "offset": 5 - }, - "from_": { - "cairo_type": "felt", - "offset": 2 - }, - "operator": { - "cairo_type": "felt", - "offset": 1 - }, - "tokenId": { - "cairo_type": "starkware.cairo.common.uint256.Uint256", - "offset": 3 - } - }, - "size": 7, - "type": "struct" - }, - "openzeppelin.token.erc721.IERC721Receiver.IERC721Receiver.onERC721Received.ImplicitArgs": { - "full_name": "openzeppelin.token.erc721.IERC721Receiver.IERC721Receiver.onERC721Received.ImplicitArgs", - "members": { - "range_check_ptr": { - "cairo_type": "felt", - "offset": 1 - }, - "syscall_ptr": { - "cairo_type": "felt*", - "offset": 0 - } - }, - "size": 2, - "type": "struct" - }, - "openzeppelin.token.erc721.IERC721Receiver.IERC721Receiver.onERC721Received.Return": { - "cairo_type": "(selector: felt)", - "type": "type_definition" - }, - "openzeppelin.token.erc721.IERC721Receiver.IERC721Receiver.onERC721Received.SIZEOF_LOCALS": { - "type": "const", - "value": 3 - }, - "openzeppelin.token.erc721.IERC721Receiver.Uint256": { - "destination": "starkware.cairo.common.uint256.Uint256", - "type": "alias" - }, - "openzeppelin.token.erc721.enumerable.library.ERC165": { - "destination": "openzeppelin.introspection.erc165.library.ERC165", - "type": "alias" - }, - "openzeppelin.token.erc721.enumerable.library.ERC721": { - "destination": "openzeppelin.token.erc721.library.ERC721", - "type": "alias" - }, - "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable": { - "type": "namespace" - }, - "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable.Args": { - "full_name": "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable.Args", - "members": {}, - "size": 0, - "type": "struct" - }, - "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable.ImplicitArgs": { - "full_name": "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable.ImplicitArgs", - "members": {}, - "size": 0, - "type": "struct" - }, - "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable.Return": { - "cairo_type": "()", - "type": "type_definition" - }, - "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable.SIZEOF_LOCALS": { - "type": "const", - "value": 0 - }, - "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable._burn": { - "decorators": [], - "pc": 2100, - "type": "function" - }, - "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable._burn.Args": { - "full_name": "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable._burn.Args", - "members": { - "token_id": { - "cairo_type": "starkware.cairo.common.uint256.Uint256", - "offset": 0 - } - }, - "size": 2, - "type": "struct" - }, - "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable._burn.ImplicitArgs": { - "full_name": "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable._burn.ImplicitArgs", - "members": { - "pedersen_ptr": { - "cairo_type": "starkware.cairo.common.cairo_builtins.HashBuiltin*", - "offset": 0 - }, - "range_check_ptr": { - "cairo_type": "felt", - "offset": 2 - }, - "syscall_ptr": { - "cairo_type": "felt*", - "offset": 1 - } - }, - "size": 3, - "type": "struct" - }, - "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable._burn.Return": { - "cairo_type": "()", - "type": "type_definition" - }, - "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable._burn.SIZEOF_LOCALS": { - "type": "const", - "value": 0 - }, - "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable._mint": { - "decorators": [], - "pc": 2082, - "type": "function" - }, - "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable._mint.Args": { - "full_name": "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable._mint.Args", - "members": { - "to": { - "cairo_type": "felt", - "offset": 0 - }, - "token_id": { - "cairo_type": "starkware.cairo.common.uint256.Uint256", - "offset": 1 - } - }, - "size": 3, - "type": "struct" - }, - "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable._mint.ImplicitArgs": { - "full_name": "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable._mint.ImplicitArgs", - "members": { - "pedersen_ptr": { - "cairo_type": "starkware.cairo.common.cairo_builtins.HashBuiltin*", - "offset": 0 - }, - "range_check_ptr": { - "cairo_type": "felt", - "offset": 2 - }, - "syscall_ptr": { - "cairo_type": "felt*", - "offset": 1 - } - }, - "size": 3, - "type": "struct" - }, - "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable._mint.Return": { - "cairo_type": "()", - "type": "type_definition" - }, - "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable._mint.SIZEOF_LOCALS": { - "type": "const", - "value": 0 - }, - "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable.initializer": { - "decorators": [], - "pc": 1966, - "type": "function" - }, - "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable.initializer.Args": { - "full_name": "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable.initializer.Args", - "members": {}, - "size": 0, - "type": "struct" - }, - "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable.initializer.ImplicitArgs": { - "full_name": "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable.initializer.ImplicitArgs", - "members": { - "pedersen_ptr": { - "cairo_type": "starkware.cairo.common.cairo_builtins.HashBuiltin*", - "offset": 1 - }, - "range_check_ptr": { - "cairo_type": "felt", - "offset": 2 - }, - "syscall_ptr": { - "cairo_type": "felt*", - "offset": 0 - } - }, - "size": 3, - "type": "struct" - }, - "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable.initializer.Return": { - "cairo_type": "()", - "type": "type_definition" - }, - "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable.initializer.SIZEOF_LOCALS": { - "type": "const", - "value": 0 - }, - "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable.safe_transfer_from": { - "decorators": [], - "pc": 2060, - "type": "function" - }, - "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable.safe_transfer_from.Args": { - "full_name": "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable.safe_transfer_from.Args", - "members": { - "data": { - "cairo_type": "felt*", - "offset": 5 - }, - "data_len": { - "cairo_type": "felt", - "offset": 4 - }, - "from_": { - "cairo_type": "felt", - "offset": 0 - }, - "to": { - "cairo_type": "felt", - "offset": 1 - }, - "token_id": { - "cairo_type": "starkware.cairo.common.uint256.Uint256", - "offset": 2 - } - }, - "size": 6, - "type": "struct" - }, - "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable.safe_transfer_from.ImplicitArgs": { - "full_name": "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable.safe_transfer_from.ImplicitArgs", - "members": { - "pedersen_ptr": { - "cairo_type": "starkware.cairo.common.cairo_builtins.HashBuiltin*", - "offset": 0 - }, - "range_check_ptr": { - "cairo_type": "felt", - "offset": 2 - }, - "syscall_ptr": { - "cairo_type": "felt*", - "offset": 1 - } - }, - "size": 3, - "type": "struct" - }, - "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable.safe_transfer_from.Return": { - "cairo_type": "()", - "type": "type_definition" - }, - "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable.safe_transfer_from.SIZEOF_LOCALS": { - "type": "const", - "value": 0 - }, - "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable.token_by_index": { - "decorators": [], - "pc": 1980, - "type": "function" - }, - "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable.token_by_index.Args": { - "full_name": "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable.token_by_index.Args", - "members": { - "index": { - "cairo_type": "starkware.cairo.common.uint256.Uint256", - "offset": 0 - } - }, - "size": 2, - "type": "struct" - }, - "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable.token_by_index.ImplicitArgs": { - "full_name": "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable.token_by_index.ImplicitArgs", - "members": { - "pedersen_ptr": { - "cairo_type": "starkware.cairo.common.cairo_builtins.HashBuiltin*", - "offset": 1 - }, - "range_check_ptr": { - "cairo_type": "felt", - "offset": 2 - }, - "syscall_ptr": { - "cairo_type": "felt*", - "offset": 0 - } - }, - "size": 3, - "type": "struct" - }, - "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable.token_by_index.Return": { - "cairo_type": "(token_id: starkware.cairo.common.uint256.Uint256)", - "type": "type_definition" - }, - "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable.token_by_index.SIZEOF_LOCALS": { - "type": "const", - "value": 0 - }, - "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable.token_of_owner_by_index": { - "decorators": [], - "pc": 2009, - "type": "function" - }, - "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable.token_of_owner_by_index.Args": { - "full_name": "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable.token_of_owner_by_index.Args", - "members": { - "index": { - "cairo_type": "starkware.cairo.common.uint256.Uint256", - "offset": 1 - }, - "owner": { - "cairo_type": "felt", - "offset": 0 - } - }, - "size": 3, - "type": "struct" - }, - "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable.token_of_owner_by_index.ImplicitArgs": { - "full_name": "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable.token_of_owner_by_index.ImplicitArgs", - "members": { - "pedersen_ptr": { - "cairo_type": "starkware.cairo.common.cairo_builtins.HashBuiltin*", - "offset": 1 - }, - "range_check_ptr": { - "cairo_type": "felt", - "offset": 2 - }, - "syscall_ptr": { - "cairo_type": "felt*", - "offset": 0 - } - }, - "size": 3, - "type": "struct" - }, - "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable.token_of_owner_by_index.Return": { - "cairo_type": "(token_id: starkware.cairo.common.uint256.Uint256)", - "type": "type_definition" - }, - "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable.token_of_owner_by_index.SIZEOF_LOCALS": { - "type": "const", - "value": 0 - }, - "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable.total_supply": { - "decorators": [], - "pc": 1974, - "type": "function" - }, - "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable.total_supply.Args": { - "full_name": "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable.total_supply.Args", - "members": {}, - "size": 0, - "type": "struct" - }, - "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable.total_supply.ImplicitArgs": { - "full_name": "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable.total_supply.ImplicitArgs", - "members": { - "pedersen_ptr": { - "cairo_type": "starkware.cairo.common.cairo_builtins.HashBuiltin*", - "offset": 1 - }, - "range_check_ptr": { - "cairo_type": "felt", - "offset": 2 - }, - "syscall_ptr": { - "cairo_type": "felt*", - "offset": 0 - } - }, - "size": 3, - "type": "struct" - }, - "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable.total_supply.Return": { - "cairo_type": "(total_supply: starkware.cairo.common.uint256.Uint256)", - "type": "type_definition" - }, - "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable.total_supply.SIZEOF_LOCALS": { - "type": "const", - "value": 0 - }, - "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable.transfer_from": { - "decorators": [], - "pc": 2040, - "type": "function" - }, - "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable.transfer_from.Args": { - "full_name": "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable.transfer_from.Args", - "members": { - "from_": { - "cairo_type": "felt", - "offset": 0 - }, - "to": { - "cairo_type": "felt", - "offset": 1 - }, - "token_id": { - "cairo_type": "starkware.cairo.common.uint256.Uint256", - "offset": 2 - } - }, - "size": 4, - "type": "struct" - }, - "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable.transfer_from.ImplicitArgs": { - "full_name": "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable.transfer_from.ImplicitArgs", - "members": { - "pedersen_ptr": { - "cairo_type": "starkware.cairo.common.cairo_builtins.HashBuiltin*", - "offset": 0 - }, - "range_check_ptr": { - "cairo_type": "felt", - "offset": 2 - }, - "syscall_ptr": { - "cairo_type": "felt*", - "offset": 1 - } - }, - "size": 3, - "type": "struct" - }, - "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable.transfer_from.Return": { - "cairo_type": "()", - "type": "type_definition" - }, - "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable.transfer_from.SIZEOF_LOCALS": { - "type": "const", - "value": 0 - }, - "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable_all_tokens": { - "type": "namespace" - }, - "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable_all_tokens.Args": { - "full_name": "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable_all_tokens.Args", - "members": {}, - "size": 0, - "type": "struct" - }, - "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable_all_tokens.HashBuiltin": { - "destination": "starkware.cairo.common.cairo_builtins.HashBuiltin", - "type": "alias" - }, - "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable_all_tokens.ImplicitArgs": { - "full_name": "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable_all_tokens.ImplicitArgs", - "members": {}, - "size": 0, - "type": "struct" - }, - "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable_all_tokens.Return": { - "cairo_type": "()", - "type": "type_definition" - }, - "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable_all_tokens.SIZEOF_LOCALS": { - "type": "const", - "value": 0 - }, - "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable_all_tokens.addr": { - "decorators": [], - "pc": 1733, - "type": "function" - }, - "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable_all_tokens.addr.Args": { - "full_name": "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable_all_tokens.addr.Args", - "members": { - "index": { - "cairo_type": "starkware.cairo.common.uint256.Uint256", - "offset": 0 - } - }, - "size": 2, - "type": "struct" - }, - "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable_all_tokens.addr.ImplicitArgs": { - "full_name": "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable_all_tokens.addr.ImplicitArgs", - "members": { - "pedersen_ptr": { - "cairo_type": "starkware.cairo.common.cairo_builtins.HashBuiltin*", - "offset": 0 - }, - "range_check_ptr": { - "cairo_type": "felt", - "offset": 1 - } - }, - "size": 2, - "type": "struct" - }, - "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable_all_tokens.addr.Return": { - "cairo_type": "(res: felt)", - "type": "type_definition" - }, - "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable_all_tokens.addr.SIZEOF_LOCALS": { - "type": "const", - "value": 0 - }, - "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable_all_tokens.hash2": { - "destination": "starkware.cairo.common.hash.hash2", - "type": "alias" - }, - "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable_all_tokens.normalize_address": { - "destination": "starkware.starknet.common.storage.normalize_address", - "type": "alias" - }, - "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable_all_tokens.read": { - "decorators": [], - "pc": 1750, - "type": "function" - }, - "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable_all_tokens.read.Args": { - "full_name": "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable_all_tokens.read.Args", - "members": { - "index": { - "cairo_type": "starkware.cairo.common.uint256.Uint256", - "offset": 0 - } - }, - "size": 2, - "type": "struct" - }, - "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable_all_tokens.read.ImplicitArgs": { - "full_name": "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable_all_tokens.read.ImplicitArgs", - "members": { - "pedersen_ptr": { - "cairo_type": "starkware.cairo.common.cairo_builtins.HashBuiltin*", - "offset": 1 - }, - "range_check_ptr": { - "cairo_type": "felt", - "offset": 2 - }, - "syscall_ptr": { - "cairo_type": "felt*", - "offset": 0 - } - }, - "size": 3, - "type": "struct" - }, - "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable_all_tokens.read.Return": { - "cairo_type": "(token_id: starkware.cairo.common.uint256.Uint256)", - "type": "type_definition" - }, - "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable_all_tokens.read.SIZEOF_LOCALS": { - "type": "const", - "value": 0 - }, - "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable_all_tokens.storage_read": { - "destination": "starkware.starknet.common.syscalls.storage_read", - "type": "alias" - }, - "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable_all_tokens.storage_write": { - "destination": "starkware.starknet.common.syscalls.storage_write", - "type": "alias" - }, - "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable_all_tokens.write": { - "decorators": [], - "pc": 1771, - "type": "function" - }, - "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable_all_tokens.write.Args": { - "full_name": "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable_all_tokens.write.Args", - "members": { - "index": { - "cairo_type": "starkware.cairo.common.uint256.Uint256", - "offset": 0 - }, - "value": { - "cairo_type": "starkware.cairo.common.uint256.Uint256", - "offset": 2 - } - }, - "size": 4, - "type": "struct" - }, - "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable_all_tokens.write.ImplicitArgs": { - "full_name": "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable_all_tokens.write.ImplicitArgs", - "members": { - "pedersen_ptr": { - "cairo_type": "starkware.cairo.common.cairo_builtins.HashBuiltin*", - "offset": 1 - }, - "range_check_ptr": { - "cairo_type": "felt", - "offset": 2 - }, - "syscall_ptr": { - "cairo_type": "felt*", - "offset": 0 - } - }, - "size": 3, - "type": "struct" - }, - "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable_all_tokens.write.Return": { - "cairo_type": "()", - "type": "type_definition" - }, - "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable_all_tokens.write.SIZEOF_LOCALS": { - "type": "const", - "value": 0 - }, - "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable_all_tokens_index": { - "type": "namespace" - }, - "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable_all_tokens_index.Args": { - "full_name": "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable_all_tokens_index.Args", - "members": {}, - "size": 0, - "type": "struct" - }, - "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable_all_tokens_index.HashBuiltin": { - "destination": "starkware.cairo.common.cairo_builtins.HashBuiltin", - "type": "alias" - }, - "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable_all_tokens_index.ImplicitArgs": { - "full_name": "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable_all_tokens_index.ImplicitArgs", - "members": {}, - "size": 0, - "type": "struct" - }, - "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable_all_tokens_index.Return": { - "cairo_type": "()", - "type": "type_definition" - }, - "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable_all_tokens_index.SIZEOF_LOCALS": { - "type": "const", - "value": 0 - }, - "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable_all_tokens_index.addr": { - "decorators": [], - "pc": 1790, - "type": "function" - }, - "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable_all_tokens_index.addr.Args": { - "full_name": "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable_all_tokens_index.addr.Args", - "members": { - "token_id": { - "cairo_type": "starkware.cairo.common.uint256.Uint256", - "offset": 0 - } - }, - "size": 2, - "type": "struct" - }, - "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable_all_tokens_index.addr.ImplicitArgs": { - "full_name": "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable_all_tokens_index.addr.ImplicitArgs", - "members": { - "pedersen_ptr": { - "cairo_type": "starkware.cairo.common.cairo_builtins.HashBuiltin*", - "offset": 0 - }, - "range_check_ptr": { - "cairo_type": "felt", - "offset": 1 - } - }, - "size": 2, - "type": "struct" - }, - "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable_all_tokens_index.addr.Return": { - "cairo_type": "(res: felt)", - "type": "type_definition" - }, - "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable_all_tokens_index.addr.SIZEOF_LOCALS": { - "type": "const", - "value": 0 - }, - "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable_all_tokens_index.hash2": { - "destination": "starkware.cairo.common.hash.hash2", - "type": "alias" - }, - "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable_all_tokens_index.normalize_address": { - "destination": "starkware.starknet.common.storage.normalize_address", - "type": "alias" - }, - "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable_all_tokens_index.read": { - "decorators": [], - "pc": 1807, - "type": "function" - }, - "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable_all_tokens_index.read.Args": { - "full_name": "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable_all_tokens_index.read.Args", - "members": { - "token_id": { - "cairo_type": "starkware.cairo.common.uint256.Uint256", - "offset": 0 - } - }, - "size": 2, - "type": "struct" - }, - "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable_all_tokens_index.read.ImplicitArgs": { - "full_name": "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable_all_tokens_index.read.ImplicitArgs", - "members": { - "pedersen_ptr": { - "cairo_type": "starkware.cairo.common.cairo_builtins.HashBuiltin*", - "offset": 1 - }, - "range_check_ptr": { - "cairo_type": "felt", - "offset": 2 - }, - "syscall_ptr": { - "cairo_type": "felt*", - "offset": 0 - } - }, - "size": 3, - "type": "struct" - }, - "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable_all_tokens_index.read.Return": { - "cairo_type": "(index: starkware.cairo.common.uint256.Uint256)", - "type": "type_definition" - }, - "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable_all_tokens_index.read.SIZEOF_LOCALS": { - "type": "const", - "value": 0 - }, - "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable_all_tokens_index.storage_read": { - "destination": "starkware.starknet.common.syscalls.storage_read", - "type": "alias" - }, - "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable_all_tokens_index.storage_write": { - "destination": "starkware.starknet.common.syscalls.storage_write", - "type": "alias" - }, - "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable_all_tokens_index.write": { - "decorators": [], - "pc": 1828, - "type": "function" - }, - "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable_all_tokens_index.write.Args": { - "full_name": "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable_all_tokens_index.write.Args", - "members": { - "token_id": { - "cairo_type": "starkware.cairo.common.uint256.Uint256", - "offset": 0 - }, - "value": { - "cairo_type": "starkware.cairo.common.uint256.Uint256", - "offset": 2 - } - }, - "size": 4, - "type": "struct" - }, - "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable_all_tokens_index.write.ImplicitArgs": { - "full_name": "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable_all_tokens_index.write.ImplicitArgs", - "members": { - "pedersen_ptr": { - "cairo_type": "starkware.cairo.common.cairo_builtins.HashBuiltin*", - "offset": 1 - }, - "range_check_ptr": { - "cairo_type": "felt", - "offset": 2 - }, - "syscall_ptr": { - "cairo_type": "felt*", - "offset": 0 - } - }, - "size": 3, - "type": "struct" - }, - "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable_all_tokens_index.write.Return": { - "cairo_type": "()", - "type": "type_definition" - }, - "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable_all_tokens_index.write.SIZEOF_LOCALS": { - "type": "const", - "value": 0 - }, - "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable_all_tokens_len": { - "type": "namespace" - }, - "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable_all_tokens_len.Args": { - "full_name": "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable_all_tokens_len.Args", - "members": {}, - "size": 0, - "type": "struct" - }, - "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable_all_tokens_len.HashBuiltin": { - "destination": "starkware.cairo.common.cairo_builtins.HashBuiltin", - "type": "alias" - }, - "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable_all_tokens_len.ImplicitArgs": { - "full_name": "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable_all_tokens_len.ImplicitArgs", - "members": {}, - "size": 0, - "type": "struct" - }, - "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable_all_tokens_len.Return": { - "cairo_type": "()", - "type": "type_definition" - }, - "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable_all_tokens_len.SIZEOF_LOCALS": { - "type": "const", - "value": 0 - }, - "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable_all_tokens_len.addr": { - "decorators": [], - "pc": 1692, - "type": "function" - }, - "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable_all_tokens_len.addr.Args": { - "full_name": "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable_all_tokens_len.addr.Args", - "members": {}, - "size": 0, - "type": "struct" - }, - "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable_all_tokens_len.addr.ImplicitArgs": { - "full_name": "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable_all_tokens_len.addr.ImplicitArgs", - "members": { - "pedersen_ptr": { - "cairo_type": "starkware.cairo.common.cairo_builtins.HashBuiltin*", - "offset": 0 - }, - "range_check_ptr": { - "cairo_type": "felt", - "offset": 1 - } - }, - "size": 2, - "type": "struct" - }, - "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable_all_tokens_len.addr.Return": { - "cairo_type": "(res: felt)", - "type": "type_definition" - }, - "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable_all_tokens_len.addr.SIZEOF_LOCALS": { - "type": "const", - "value": 0 - }, - "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable_all_tokens_len.hash2": { - "destination": "starkware.cairo.common.hash.hash2", - "type": "alias" - }, - "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable_all_tokens_len.normalize_address": { - "destination": "starkware.starknet.common.storage.normalize_address", - "type": "alias" - }, - "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable_all_tokens_len.read": { - "decorators": [], - "pc": 1697, - "type": "function" - }, - "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable_all_tokens_len.read.Args": { - "full_name": "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable_all_tokens_len.read.Args", - "members": {}, - "size": 0, - "type": "struct" - }, - "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable_all_tokens_len.read.ImplicitArgs": { - "full_name": "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable_all_tokens_len.read.ImplicitArgs", - "members": { - "pedersen_ptr": { - "cairo_type": "starkware.cairo.common.cairo_builtins.HashBuiltin*", - "offset": 1 - }, - "range_check_ptr": { - "cairo_type": "felt", - "offset": 2 - }, - "syscall_ptr": { - "cairo_type": "felt*", - "offset": 0 - } - }, - "size": 3, - "type": "struct" - }, - "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable_all_tokens_len.read.Return": { - "cairo_type": "(total_supply: starkware.cairo.common.uint256.Uint256)", - "type": "type_definition" - }, - "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable_all_tokens_len.read.SIZEOF_LOCALS": { - "type": "const", - "value": 0 - }, - "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable_all_tokens_len.storage_read": { - "destination": "starkware.starknet.common.syscalls.storage_read", - "type": "alias" - }, - "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable_all_tokens_len.storage_write": { - "destination": "starkware.starknet.common.syscalls.storage_write", - "type": "alias" - }, - "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable_all_tokens_len.write": { - "decorators": [], - "pc": 1716, - "type": "function" - }, - "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable_all_tokens_len.write.Args": { - "full_name": "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable_all_tokens_len.write.Args", - "members": { - "value": { - "cairo_type": "starkware.cairo.common.uint256.Uint256", - "offset": 0 - } - }, - "size": 2, - "type": "struct" - }, - "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable_all_tokens_len.write.ImplicitArgs": { - "full_name": "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable_all_tokens_len.write.ImplicitArgs", - "members": { - "pedersen_ptr": { - "cairo_type": "starkware.cairo.common.cairo_builtins.HashBuiltin*", - "offset": 1 - }, - "range_check_ptr": { - "cairo_type": "felt", - "offset": 2 - }, - "syscall_ptr": { - "cairo_type": "felt*", - "offset": 0 - } - }, - "size": 3, - "type": "struct" - }, - "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable_all_tokens_len.write.Return": { - "cairo_type": "()", - "type": "type_definition" - }, - "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable_all_tokens_len.write.SIZEOF_LOCALS": { - "type": "const", - "value": 0 - }, - "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable_owned_tokens": { - "type": "namespace" - }, - "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable_owned_tokens.Args": { - "full_name": "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable_owned_tokens.Args", - "members": {}, - "size": 0, - "type": "struct" - }, - "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable_owned_tokens.HashBuiltin": { - "destination": "starkware.cairo.common.cairo_builtins.HashBuiltin", - "type": "alias" - }, - "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable_owned_tokens.ImplicitArgs": { - "full_name": "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable_owned_tokens.ImplicitArgs", - "members": {}, - "size": 0, - "type": "struct" - }, - "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable_owned_tokens.Return": { - "cairo_type": "()", - "type": "type_definition" - }, - "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable_owned_tokens.SIZEOF_LOCALS": { - "type": "const", - "value": 0 - }, - "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable_owned_tokens.addr": { - "decorators": [], - "pc": 1847, - "type": "function" - }, - "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable_owned_tokens.addr.Args": { - "full_name": "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable_owned_tokens.addr.Args", - "members": { - "index": { - "cairo_type": "starkware.cairo.common.uint256.Uint256", - "offset": 1 - }, - "owner": { - "cairo_type": "felt", - "offset": 0 - } - }, - "size": 3, - "type": "struct" - }, - "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable_owned_tokens.addr.ImplicitArgs": { - "full_name": "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable_owned_tokens.addr.ImplicitArgs", - "members": { - "pedersen_ptr": { - "cairo_type": "starkware.cairo.common.cairo_builtins.HashBuiltin*", - "offset": 0 - }, - "range_check_ptr": { - "cairo_type": "felt", - "offset": 1 - } - }, - "size": 2, - "type": "struct" - }, - "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable_owned_tokens.addr.Return": { - "cairo_type": "(res: felt)", - "type": "type_definition" - }, - "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable_owned_tokens.addr.SIZEOF_LOCALS": { - "type": "const", - "value": 0 - }, - "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable_owned_tokens.hash2": { - "destination": "starkware.cairo.common.hash.hash2", - "type": "alias" - }, - "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable_owned_tokens.normalize_address": { - "destination": "starkware.starknet.common.storage.normalize_address", - "type": "alias" - }, - "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable_owned_tokens.read": { - "decorators": [], - "pc": 1867, - "type": "function" - }, - "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable_owned_tokens.read.Args": { - "full_name": "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable_owned_tokens.read.Args", - "members": { - "index": { - "cairo_type": "starkware.cairo.common.uint256.Uint256", - "offset": 1 - }, - "owner": { - "cairo_type": "felt", - "offset": 0 - } - }, - "size": 3, - "type": "struct" - }, - "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable_owned_tokens.read.ImplicitArgs": { - "full_name": "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable_owned_tokens.read.ImplicitArgs", - "members": { - "pedersen_ptr": { - "cairo_type": "starkware.cairo.common.cairo_builtins.HashBuiltin*", - "offset": 1 - }, - "range_check_ptr": { - "cairo_type": "felt", - "offset": 2 - }, - "syscall_ptr": { - "cairo_type": "felt*", - "offset": 0 - } - }, - "size": 3, - "type": "struct" - }, - "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable_owned_tokens.read.Return": { - "cairo_type": "(token_id: starkware.cairo.common.uint256.Uint256)", - "type": "type_definition" - }, - "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable_owned_tokens.read.SIZEOF_LOCALS": { - "type": "const", - "value": 0 - }, - "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable_owned_tokens.storage_read": { - "destination": "starkware.starknet.common.syscalls.storage_read", - "type": "alias" - }, - "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable_owned_tokens.storage_write": { - "destination": "starkware.starknet.common.syscalls.storage_write", - "type": "alias" - }, - "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable_owned_tokens.write": { - "decorators": [], - "pc": 1889, - "type": "function" - }, - "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable_owned_tokens.write.Args": { - "full_name": "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable_owned_tokens.write.Args", - "members": { - "index": { - "cairo_type": "starkware.cairo.common.uint256.Uint256", - "offset": 1 - }, - "owner": { - "cairo_type": "felt", - "offset": 0 - }, - "value": { - "cairo_type": "starkware.cairo.common.uint256.Uint256", - "offset": 3 - } - }, - "size": 5, - "type": "struct" - }, - "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable_owned_tokens.write.ImplicitArgs": { - "full_name": "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable_owned_tokens.write.ImplicitArgs", - "members": { - "pedersen_ptr": { - "cairo_type": "starkware.cairo.common.cairo_builtins.HashBuiltin*", - "offset": 1 - }, - "range_check_ptr": { - "cairo_type": "felt", - "offset": 2 - }, - "syscall_ptr": { - "cairo_type": "felt*", - "offset": 0 - } - }, - "size": 3, - "type": "struct" - }, - "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable_owned_tokens.write.Return": { - "cairo_type": "()", - "type": "type_definition" - }, - "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable_owned_tokens.write.SIZEOF_LOCALS": { - "type": "const", - "value": 0 - }, - "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable_owned_tokens_index": { - "type": "namespace" - }, - "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable_owned_tokens_index.Args": { - "full_name": "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable_owned_tokens_index.Args", - "members": {}, - "size": 0, - "type": "struct" - }, - "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable_owned_tokens_index.HashBuiltin": { - "destination": "starkware.cairo.common.cairo_builtins.HashBuiltin", - "type": "alias" - }, - "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable_owned_tokens_index.ImplicitArgs": { - "full_name": "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable_owned_tokens_index.ImplicitArgs", - "members": {}, - "size": 0, - "type": "struct" - }, - "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable_owned_tokens_index.Return": { - "cairo_type": "()", - "type": "type_definition" - }, - "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable_owned_tokens_index.SIZEOF_LOCALS": { - "type": "const", - "value": 0 - }, - "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable_owned_tokens_index.addr": { - "decorators": [], - "pc": 1909, - "type": "function" - }, - "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable_owned_tokens_index.addr.Args": { - "full_name": "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable_owned_tokens_index.addr.Args", - "members": { - "token_id": { - "cairo_type": "starkware.cairo.common.uint256.Uint256", - "offset": 0 - } - }, - "size": 2, - "type": "struct" - }, - "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable_owned_tokens_index.addr.ImplicitArgs": { - "full_name": "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable_owned_tokens_index.addr.ImplicitArgs", - "members": { - "pedersen_ptr": { - "cairo_type": "starkware.cairo.common.cairo_builtins.HashBuiltin*", - "offset": 0 - }, - "range_check_ptr": { - "cairo_type": "felt", - "offset": 1 - } - }, - "size": 2, - "type": "struct" - }, - "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable_owned_tokens_index.addr.Return": { - "cairo_type": "(res: felt)", - "type": "type_definition" - }, - "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable_owned_tokens_index.addr.SIZEOF_LOCALS": { - "type": "const", - "value": 0 - }, - "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable_owned_tokens_index.hash2": { - "destination": "starkware.cairo.common.hash.hash2", - "type": "alias" - }, - "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable_owned_tokens_index.normalize_address": { - "destination": "starkware.starknet.common.storage.normalize_address", - "type": "alias" - }, - "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable_owned_tokens_index.read": { - "decorators": [], - "pc": 1926, - "type": "function" - }, - "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable_owned_tokens_index.read.Args": { - "full_name": "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable_owned_tokens_index.read.Args", - "members": { - "token_id": { - "cairo_type": "starkware.cairo.common.uint256.Uint256", - "offset": 0 - } - }, - "size": 2, - "type": "struct" - }, - "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable_owned_tokens_index.read.ImplicitArgs": { - "full_name": "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable_owned_tokens_index.read.ImplicitArgs", - "members": { - "pedersen_ptr": { - "cairo_type": "starkware.cairo.common.cairo_builtins.HashBuiltin*", - "offset": 1 - }, - "range_check_ptr": { - "cairo_type": "felt", - "offset": 2 - }, - "syscall_ptr": { - "cairo_type": "felt*", - "offset": 0 - } - }, - "size": 3, - "type": "struct" - }, - "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable_owned_tokens_index.read.Return": { - "cairo_type": "(index: starkware.cairo.common.uint256.Uint256)", - "type": "type_definition" - }, - "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable_owned_tokens_index.read.SIZEOF_LOCALS": { - "type": "const", - "value": 0 - }, - "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable_owned_tokens_index.storage_read": { - "destination": "starkware.starknet.common.syscalls.storage_read", - "type": "alias" - }, - "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable_owned_tokens_index.storage_write": { - "destination": "starkware.starknet.common.syscalls.storage_write", - "type": "alias" - }, - "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable_owned_tokens_index.write": { - "decorators": [], - "pc": 1947, - "type": "function" - }, - "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable_owned_tokens_index.write.Args": { - "full_name": "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable_owned_tokens_index.write.Args", - "members": { - "token_id": { - "cairo_type": "starkware.cairo.common.uint256.Uint256", - "offset": 0 - }, - "value": { - "cairo_type": "starkware.cairo.common.uint256.Uint256", - "offset": 2 - } - }, - "size": 4, - "type": "struct" - }, - "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable_owned_tokens_index.write.ImplicitArgs": { - "full_name": "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable_owned_tokens_index.write.ImplicitArgs", - "members": { - "pedersen_ptr": { - "cairo_type": "starkware.cairo.common.cairo_builtins.HashBuiltin*", - "offset": 1 - }, - "range_check_ptr": { - "cairo_type": "felt", - "offset": 2 - }, - "syscall_ptr": { - "cairo_type": "felt*", - "offset": 0 - } - }, - "size": 3, - "type": "struct" - }, - "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable_owned_tokens_index.write.Return": { - "cairo_type": "()", - "type": "type_definition" - }, - "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable_owned_tokens_index.write.SIZEOF_LOCALS": { - "type": "const", - "value": 0 - }, - "openzeppelin.token.erc721.enumerable.library.FALSE": { - "destination": "starkware.cairo.common.bool.FALSE", - "type": "alias" - }, - "openzeppelin.token.erc721.enumerable.library.HashBuiltin": { - "destination": "starkware.cairo.common.cairo_builtins.HashBuiltin", - "type": "alias" - }, - "openzeppelin.token.erc721.enumerable.library.IERC721_ENUMERABLE_ID": { - "destination": "openzeppelin.utils.constants.library.IERC721_ENUMERABLE_ID", - "type": "alias" - }, - "openzeppelin.token.erc721.enumerable.library.SafeUint256": { - "destination": "openzeppelin.security.safemath.library.SafeUint256", - "type": "alias" - }, - "openzeppelin.token.erc721.enumerable.library.TRUE": { - "destination": "starkware.cairo.common.bool.TRUE", - "type": "alias" - }, - "openzeppelin.token.erc721.enumerable.library.Uint256": { - "destination": "starkware.cairo.common.uint256.Uint256", - "type": "alias" - }, - "openzeppelin.token.erc721.enumerable.library._add_token_to_all_tokens_enumeration": { - "decorators": [], - "pc": 2124, - "type": "function" - }, - "openzeppelin.token.erc721.enumerable.library._add_token_to_all_tokens_enumeration.Args": { - "full_name": "openzeppelin.token.erc721.enumerable.library._add_token_to_all_tokens_enumeration.Args", - "members": { - "token_id": { - "cairo_type": "starkware.cairo.common.uint256.Uint256", - "offset": 0 - } - }, - "size": 2, - "type": "struct" - }, - "openzeppelin.token.erc721.enumerable.library._add_token_to_all_tokens_enumeration.ImplicitArgs": { - "full_name": "openzeppelin.token.erc721.enumerable.library._add_token_to_all_tokens_enumeration.ImplicitArgs", - "members": { - "pedersen_ptr": { - "cairo_type": "starkware.cairo.common.cairo_builtins.HashBuiltin*", - "offset": 0 - }, - "range_check_ptr": { - "cairo_type": "felt", - "offset": 2 - }, - "syscall_ptr": { - "cairo_type": "felt*", - "offset": 1 - } - }, - "size": 3, - "type": "struct" - }, - "openzeppelin.token.erc721.enumerable.library._add_token_to_all_tokens_enumeration.Return": { - "cairo_type": "()", - "type": "type_definition" - }, - "openzeppelin.token.erc721.enumerable.library._add_token_to_all_tokens_enumeration.SIZEOF_LOCALS": { - "type": "const", - "value": 0 - }, - "openzeppelin.token.erc721.enumerable.library._add_token_to_owner_enumeration": { - "decorators": [], - "pc": 2240, - "type": "function" - }, - "openzeppelin.token.erc721.enumerable.library._add_token_to_owner_enumeration.Args": { - "full_name": "openzeppelin.token.erc721.enumerable.library._add_token_to_owner_enumeration.Args", - "members": { - "to": { - "cairo_type": "felt", - "offset": 0 - }, - "token_id": { - "cairo_type": "starkware.cairo.common.uint256.Uint256", - "offset": 1 - } - }, - "size": 3, - "type": "struct" - }, - "openzeppelin.token.erc721.enumerable.library._add_token_to_owner_enumeration.ImplicitArgs": { - "full_name": "openzeppelin.token.erc721.enumerable.library._add_token_to_owner_enumeration.ImplicitArgs", - "members": { - "pedersen_ptr": { - "cairo_type": "starkware.cairo.common.cairo_builtins.HashBuiltin*", - "offset": 0 - }, - "range_check_ptr": { - "cairo_type": "felt", - "offset": 2 - }, - "syscall_ptr": { - "cairo_type": "felt*", - "offset": 1 - } - }, - "size": 3, - "type": "struct" - }, - "openzeppelin.token.erc721.enumerable.library._add_token_to_owner_enumeration.Return": { - "cairo_type": "()", - "type": "type_definition" - }, - "openzeppelin.token.erc721.enumerable.library._add_token_to_owner_enumeration.SIZEOF_LOCALS": { - "type": "const", - "value": 0 - }, - "openzeppelin.token.erc721.enumerable.library._remove_token_from_all_tokens_enumeration": { - "decorators": [], - "pc": 2153, - "type": "function" - }, - "openzeppelin.token.erc721.enumerable.library._remove_token_from_all_tokens_enumeration.Args": { - "full_name": "openzeppelin.token.erc721.enumerable.library._remove_token_from_all_tokens_enumeration.Args", - "members": { - "token_id": { - "cairo_type": "starkware.cairo.common.uint256.Uint256", - "offset": 0 - } - }, - "size": 2, - "type": "struct" - }, - "openzeppelin.token.erc721.enumerable.library._remove_token_from_all_tokens_enumeration.ImplicitArgs": { - "full_name": "openzeppelin.token.erc721.enumerable.library._remove_token_from_all_tokens_enumeration.ImplicitArgs", - "members": { - "pedersen_ptr": { - "cairo_type": "starkware.cairo.common.cairo_builtins.HashBuiltin*", - "offset": 0 - }, - "range_check_ptr": { - "cairo_type": "felt", - "offset": 2 - }, - "syscall_ptr": { - "cairo_type": "felt*", - "offset": 1 - } - }, - "size": 3, - "type": "struct" - }, - "openzeppelin.token.erc721.enumerable.library._remove_token_from_all_tokens_enumeration.Return": { - "cairo_type": "()", - "type": "type_definition" - }, - "openzeppelin.token.erc721.enumerable.library._remove_token_from_all_tokens_enumeration.SIZEOF_LOCALS": { - "type": "const", - "value": 6 - }, - "openzeppelin.token.erc721.enumerable.library._remove_token_from_owner_enumeration": { - "decorators": [], - "pc": 2266, - "type": "function" - }, - "openzeppelin.token.erc721.enumerable.library._remove_token_from_owner_enumeration.Args": { - "full_name": "openzeppelin.token.erc721.enumerable.library._remove_token_from_owner_enumeration.Args", - "members": { - "from_": { - "cairo_type": "felt", - "offset": 0 - }, - "token_id": { - "cairo_type": "starkware.cairo.common.uint256.Uint256", - "offset": 1 - } - }, - "size": 3, - "type": "struct" - }, - "openzeppelin.token.erc721.enumerable.library._remove_token_from_owner_enumeration.ImplicitArgs": { - "full_name": "openzeppelin.token.erc721.enumerable.library._remove_token_from_owner_enumeration.ImplicitArgs", - "members": { - "pedersen_ptr": { - "cairo_type": "starkware.cairo.common.cairo_builtins.HashBuiltin*", - "offset": 0 - }, - "range_check_ptr": { - "cairo_type": "felt", - "offset": 2 - }, - "syscall_ptr": { - "cairo_type": "felt*", - "offset": 1 - } - }, - "size": 3, - "type": "struct" - }, - "openzeppelin.token.erc721.enumerable.library._remove_token_from_owner_enumeration.Return": { - "cairo_type": "()", - "type": "type_definition" - }, - "openzeppelin.token.erc721.enumerable.library._remove_token_from_owner_enumeration.SIZEOF_LOCALS": { - "type": "const", - "value": 6 - }, - "openzeppelin.token.erc721.enumerable.library.uint256_check": { - "destination": "starkware.cairo.common.uint256.uint256_check", - "type": "alias" - }, - "openzeppelin.token.erc721.enumerable.library.uint256_eq": { - "destination": "starkware.cairo.common.uint256.uint256_eq", - "type": "alias" - }, - "openzeppelin.token.erc721.enumerable.library.uint256_lt": { - "destination": "starkware.cairo.common.uint256.uint256_lt", - "type": "alias" - }, - "openzeppelin.token.erc721.library.Approval": { - "type": "namespace" - }, - "openzeppelin.token.erc721.library.Approval.Args": { - "full_name": "openzeppelin.token.erc721.library.Approval.Args", - "members": {}, - "size": 0, - "type": "struct" - }, - "openzeppelin.token.erc721.library.Approval.ImplicitArgs": { - "full_name": "openzeppelin.token.erc721.library.Approval.ImplicitArgs", - "members": {}, - "size": 0, - "type": "struct" - }, - "openzeppelin.token.erc721.library.Approval.Return": { - "cairo_type": "()", - "type": "type_definition" - }, - "openzeppelin.token.erc721.library.Approval.SELECTOR": { - "type": "const", - "value": 544914742286571513055574265148471203182105283038408585630116262969508767999 - }, - "openzeppelin.token.erc721.library.Approval.SIZEOF_LOCALS": { - "type": "const", - "value": 0 - }, - "openzeppelin.token.erc721.library.Approval.alloc": { - "destination": "starkware.cairo.common.alloc.alloc", - "type": "alias" - }, - "openzeppelin.token.erc721.library.Approval.emit": { - "decorators": [], - "pc": 771, - "type": "function" - }, - "openzeppelin.token.erc721.library.Approval.emit.Args": { - "full_name": "openzeppelin.token.erc721.library.Approval.emit.Args", - "members": { - "approved": { - "cairo_type": "felt", - "offset": 1 - }, - "owner": { - "cairo_type": "felt", - "offset": 0 - }, - "tokenId": { - "cairo_type": "starkware.cairo.common.uint256.Uint256", - "offset": 2 - } - }, - "size": 4, - "type": "struct" - }, - "openzeppelin.token.erc721.library.Approval.emit.ImplicitArgs": { - "full_name": "openzeppelin.token.erc721.library.Approval.emit.ImplicitArgs", - "members": { - "range_check_ptr": { - "cairo_type": "felt", - "offset": 1 - }, - "syscall_ptr": { - "cairo_type": "felt*", - "offset": 0 - } - }, - "size": 2, - "type": "struct" - }, - "openzeppelin.token.erc721.library.Approval.emit.Return": { - "cairo_type": "()", - "type": "type_definition" - }, - "openzeppelin.token.erc721.library.Approval.emit.SIZEOF_LOCALS": { - "type": "const", - "value": 2 - }, - "openzeppelin.token.erc721.library.Approval.emit_event": { - "destination": "starkware.starknet.common.syscalls.emit_event", - "type": "alias" - }, - "openzeppelin.token.erc721.library.Approval.memcpy": { - "destination": "starkware.cairo.common.memcpy.memcpy", - "type": "alias" - }, - "openzeppelin.token.erc721.library.ApprovalForAll": { - "type": "namespace" - }, - "openzeppelin.token.erc721.library.ApprovalForAll.Args": { - "full_name": "openzeppelin.token.erc721.library.ApprovalForAll.Args", - "members": {}, - "size": 0, - "type": "struct" - }, - "openzeppelin.token.erc721.library.ApprovalForAll.ImplicitArgs": { - "full_name": "openzeppelin.token.erc721.library.ApprovalForAll.ImplicitArgs", - "members": {}, - "size": 0, - "type": "struct" - }, - "openzeppelin.token.erc721.library.ApprovalForAll.Return": { - "cairo_type": "()", - "type": "type_definition" - }, - "openzeppelin.token.erc721.library.ApprovalForAll.SELECTOR": { - "type": "const", - "value": 11799366895331287683400559711902461446731448035283747365813974388970843869 - }, - "openzeppelin.token.erc721.library.ApprovalForAll.SIZEOF_LOCALS": { - "type": "const", - "value": 0 - }, - "openzeppelin.token.erc721.library.ApprovalForAll.alloc": { - "destination": "starkware.cairo.common.alloc.alloc", - "type": "alias" - }, - "openzeppelin.token.erc721.library.ApprovalForAll.emit": { - "decorators": [], - "pc": 798, - "type": "function" - }, - "openzeppelin.token.erc721.library.ApprovalForAll.emit.Args": { - "full_name": "openzeppelin.token.erc721.library.ApprovalForAll.emit.Args", - "members": { - "approved": { - "cairo_type": "felt", - "offset": 2 - }, - "operator": { - "cairo_type": "felt", - "offset": 1 - }, - "owner": { - "cairo_type": "felt", - "offset": 0 - } - }, - "size": 3, - "type": "struct" - }, - "openzeppelin.token.erc721.library.ApprovalForAll.emit.ImplicitArgs": { - "full_name": "openzeppelin.token.erc721.library.ApprovalForAll.emit.ImplicitArgs", - "members": { - "range_check_ptr": { - "cairo_type": "felt", - "offset": 1 - }, - "syscall_ptr": { - "cairo_type": "felt*", - "offset": 0 - } - }, - "size": 2, - "type": "struct" - }, - "openzeppelin.token.erc721.library.ApprovalForAll.emit.Return": { - "cairo_type": "()", - "type": "type_definition" - }, - "openzeppelin.token.erc721.library.ApprovalForAll.emit.SIZEOF_LOCALS": { - "type": "const", - "value": 2 - }, - "openzeppelin.token.erc721.library.ApprovalForAll.emit_event": { - "destination": "starkware.starknet.common.syscalls.emit_event", - "type": "alias" - }, - "openzeppelin.token.erc721.library.ApprovalForAll.memcpy": { - "destination": "starkware.cairo.common.memcpy.memcpy", - "type": "alias" - }, - "openzeppelin.token.erc721.library.ERC165": { - "destination": "openzeppelin.introspection.erc165.library.ERC165", - "type": "alias" - }, - "openzeppelin.token.erc721.library.ERC721": { - "type": "namespace" - }, - "openzeppelin.token.erc721.library.ERC721.Args": { - "full_name": "openzeppelin.token.erc721.library.ERC721.Args", - "members": {}, - "size": 0, - "type": "struct" - }, - "openzeppelin.token.erc721.library.ERC721.ImplicitArgs": { - "full_name": "openzeppelin.token.erc721.library.ERC721.ImplicitArgs", - "members": {}, - "size": 0, - "type": "struct" - }, - "openzeppelin.token.erc721.library.ERC721.Return": { - "cairo_type": "()", - "type": "type_definition" - }, - "openzeppelin.token.erc721.library.ERC721.SIZEOF_LOCALS": { - "type": "const", - "value": 0 - }, - "openzeppelin.token.erc721.library.ERC721._approve": { - "decorators": [], - "pc": 1415, - "type": "function" - }, - "openzeppelin.token.erc721.library.ERC721._approve.Args": { - "full_name": "openzeppelin.token.erc721.library.ERC721._approve.Args", - "members": { - "to": { - "cairo_type": "felt", - "offset": 0 - }, - "token_id": { - "cairo_type": "starkware.cairo.common.uint256.Uint256", - "offset": 1 - } - }, - "size": 3, - "type": "struct" - }, - "openzeppelin.token.erc721.library.ERC721._approve.ImplicitArgs": { - "full_name": "openzeppelin.token.erc721.library.ERC721._approve.ImplicitArgs", - "members": { - "pedersen_ptr": { - "cairo_type": "starkware.cairo.common.cairo_builtins.HashBuiltin*", - "offset": 1 - }, - "range_check_ptr": { - "cairo_type": "felt", - "offset": 2 - }, - "syscall_ptr": { - "cairo_type": "felt*", - "offset": 0 - } - }, - "size": 3, - "type": "struct" - }, - "openzeppelin.token.erc721.library.ERC721._approve.Return": { - "cairo_type": "()", - "type": "type_definition" - }, - "openzeppelin.token.erc721.library.ERC721._approve.SIZEOF_LOCALS": { - "type": "const", - "value": 0 - }, - "openzeppelin.token.erc721.library.ERC721._burn": { - "decorators": [], - "pc": 1588, - "type": "function" - }, - "openzeppelin.token.erc721.library.ERC721._burn.Args": { - "full_name": "openzeppelin.token.erc721.library.ERC721._burn.Args", - "members": { - "token_id": { - "cairo_type": "starkware.cairo.common.uint256.Uint256", - "offset": 0 - } - }, - "size": 2, - "type": "struct" - }, - "openzeppelin.token.erc721.library.ERC721._burn.ImplicitArgs": { - "full_name": "openzeppelin.token.erc721.library.ERC721._burn.ImplicitArgs", - "members": { - "pedersen_ptr": { - "cairo_type": "starkware.cairo.common.cairo_builtins.HashBuiltin*", - "offset": 0 - }, - "range_check_ptr": { - "cairo_type": "felt", - "offset": 2 - }, - "syscall_ptr": { - "cairo_type": "felt*", - "offset": 1 - } - }, - "size": 3, - "type": "struct" - }, - "openzeppelin.token.erc721.library.ERC721._burn.Return": { - "cairo_type": "()", - "type": "type_definition" - }, - "openzeppelin.token.erc721.library.ERC721._burn.SIZEOF_LOCALS": { - "type": "const", - "value": 0 - }, - "openzeppelin.token.erc721.library.ERC721._exists": { - "decorators": [], - "pc": 1394, - "type": "function" - }, - "openzeppelin.token.erc721.library.ERC721._exists.Args": { - "full_name": "openzeppelin.token.erc721.library.ERC721._exists.Args", - "members": { - "token_id": { - "cairo_type": "starkware.cairo.common.uint256.Uint256", - "offset": 0 - } - }, - "size": 2, - "type": "struct" - }, - "openzeppelin.token.erc721.library.ERC721._exists.ImplicitArgs": { - "full_name": "openzeppelin.token.erc721.library.ERC721._exists.ImplicitArgs", - "members": { - "pedersen_ptr": { - "cairo_type": "starkware.cairo.common.cairo_builtins.HashBuiltin*", - "offset": 1 - }, - "range_check_ptr": { - "cairo_type": "felt", - "offset": 2 - }, - "syscall_ptr": { - "cairo_type": "felt*", - "offset": 0 - } - }, - "size": 3, - "type": "struct" - }, - "openzeppelin.token.erc721.library.ERC721._exists.Return": { - "cairo_type": "felt", - "type": "type_definition" - }, - "openzeppelin.token.erc721.library.ERC721._exists.SIZEOF_LOCALS": { - "type": "const", - "value": 0 - }, - "openzeppelin.token.erc721.library.ERC721._is_approved_or_owner": { - "decorators": [], - "pc": 1327, - "type": "function" - }, - "openzeppelin.token.erc721.library.ERC721._is_approved_or_owner.Args": { - "full_name": "openzeppelin.token.erc721.library.ERC721._is_approved_or_owner.Args", - "members": { - "spender": { - "cairo_type": "felt", - "offset": 0 - }, - "token_id": { - "cairo_type": "starkware.cairo.common.uint256.Uint256", - "offset": 1 - } - }, - "size": 3, - "type": "struct" - }, - "openzeppelin.token.erc721.library.ERC721._is_approved_or_owner.ImplicitArgs": { - "full_name": "openzeppelin.token.erc721.library.ERC721._is_approved_or_owner.ImplicitArgs", - "members": { - "pedersen_ptr": { - "cairo_type": "starkware.cairo.common.cairo_builtins.HashBuiltin*", - "offset": 0 - }, - "range_check_ptr": { - "cairo_type": "felt", - "offset": 2 - }, - "syscall_ptr": { - "cairo_type": "felt*", - "offset": 1 - } - }, - "size": 3, - "type": "struct" - }, - "openzeppelin.token.erc721.library.ERC721._is_approved_or_owner.Return": { - "cairo_type": "felt", - "type": "type_definition" - }, - "openzeppelin.token.erc721.library.ERC721._is_approved_or_owner.SIZEOF_LOCALS": { - "type": "const", - "value": 1 - }, - "openzeppelin.token.erc721.library.ERC721._mint": { - "decorators": [], - "pc": 1533, - "type": "function" - }, - "openzeppelin.token.erc721.library.ERC721._mint.Args": { - "full_name": "openzeppelin.token.erc721.library.ERC721._mint.Args", - "members": { - "to": { - "cairo_type": "felt", - "offset": 0 - }, - "token_id": { - "cairo_type": "starkware.cairo.common.uint256.Uint256", - "offset": 1 - } - }, - "size": 3, - "type": "struct" - }, - "openzeppelin.token.erc721.library.ERC721._mint.ImplicitArgs": { - "full_name": "openzeppelin.token.erc721.library.ERC721._mint.ImplicitArgs", - "members": { - "pedersen_ptr": { - "cairo_type": "starkware.cairo.common.cairo_builtins.HashBuiltin*", - "offset": 0 - }, - "range_check_ptr": { - "cairo_type": "felt", - "offset": 2 - }, - "syscall_ptr": { - "cairo_type": "felt*", - "offset": 1 - } - }, - "size": 3, - "type": "struct" - }, - "openzeppelin.token.erc721.library.ERC721._mint.Return": { - "cairo_type": "()", - "type": "type_definition" - }, - "openzeppelin.token.erc721.library.ERC721._mint.SIZEOF_LOCALS": { - "type": "const", - "value": 0 - }, - "openzeppelin.token.erc721.library.ERC721._safe_transfer": { - "decorators": [], - "pc": 1510, - "type": "function" - }, - "openzeppelin.token.erc721.library.ERC721._safe_transfer.Args": { - "full_name": "openzeppelin.token.erc721.library.ERC721._safe_transfer.Args", - "members": { - "data": { - "cairo_type": "felt*", - "offset": 5 - }, - "data_len": { - "cairo_type": "felt", - "offset": 4 - }, - "from_": { - "cairo_type": "felt", - "offset": 0 - }, - "to": { - "cairo_type": "felt", - "offset": 1 - }, - "token_id": { - "cairo_type": "starkware.cairo.common.uint256.Uint256", - "offset": 2 - } - }, - "size": 6, - "type": "struct" - }, - "openzeppelin.token.erc721.library.ERC721._safe_transfer.ImplicitArgs": { - "full_name": "openzeppelin.token.erc721.library.ERC721._safe_transfer.ImplicitArgs", - "members": { - "pedersen_ptr": { - "cairo_type": "starkware.cairo.common.cairo_builtins.HashBuiltin*", - "offset": 1 - }, - "range_check_ptr": { - "cairo_type": "felt", - "offset": 2 - }, - "syscall_ptr": { - "cairo_type": "felt*", - "offset": 0 - } - }, - "size": 3, - "type": "struct" - }, - "openzeppelin.token.erc721.library.ERC721._safe_transfer.Return": { - "cairo_type": "()", - "type": "type_definition" - }, - "openzeppelin.token.erc721.library.ERC721._safe_transfer.SIZEOF_LOCALS": { - "type": "const", - "value": 0 - }, - "openzeppelin.token.erc721.library.ERC721._transfer": { - "decorators": [], - "pc": 1439, - "type": "function" - }, - "openzeppelin.token.erc721.library.ERC721._transfer.Args": { - "full_name": "openzeppelin.token.erc721.library.ERC721._transfer.Args", - "members": { - "from_": { - "cairo_type": "felt", - "offset": 0 - }, - "to": { - "cairo_type": "felt", - "offset": 1 - }, - "token_id": { - "cairo_type": "starkware.cairo.common.uint256.Uint256", - "offset": 2 - } - }, - "size": 4, - "type": "struct" - }, - "openzeppelin.token.erc721.library.ERC721._transfer.ImplicitArgs": { - "full_name": "openzeppelin.token.erc721.library.ERC721._transfer.ImplicitArgs", - "members": { - "pedersen_ptr": { - "cairo_type": "starkware.cairo.common.cairo_builtins.HashBuiltin*", - "offset": 1 - }, - "range_check_ptr": { - "cairo_type": "felt", - "offset": 2 - }, - "syscall_ptr": { - "cairo_type": "felt*", - "offset": 0 - } - }, - "size": 3, - "type": "struct" - }, - "openzeppelin.token.erc721.library.ERC721._transfer.Return": { - "cairo_type": "()", - "type": "type_definition" - }, - "openzeppelin.token.erc721.library.ERC721._transfer.SIZEOF_LOCALS": { - "type": "const", - "value": 0 - }, - "openzeppelin.token.erc721.library.ERC721.approve": { - "decorators": [], - "pc": 1144, - "type": "function" - }, - "openzeppelin.token.erc721.library.ERC721.approve.Args": { - "full_name": "openzeppelin.token.erc721.library.ERC721.approve.Args", - "members": { - "to": { - "cairo_type": "felt", - "offset": 0 - }, - "token_id": { - "cairo_type": "starkware.cairo.common.uint256.Uint256", - "offset": 1 - } - }, - "size": 3, - "type": "struct" - }, - "openzeppelin.token.erc721.library.ERC721.approve.ImplicitArgs": { - "full_name": "openzeppelin.token.erc721.library.ERC721.approve.ImplicitArgs", - "members": { - "pedersen_ptr": { - "cairo_type": "starkware.cairo.common.cairo_builtins.HashBuiltin*", - "offset": 0 - }, - "range_check_ptr": { - "cairo_type": "felt", - "offset": 2 - }, - "syscall_ptr": { - "cairo_type": "felt*", - "offset": 1 - } - }, - "size": 3, - "type": "struct" - }, - "openzeppelin.token.erc721.library.ERC721.approve.Return": { - "cairo_type": "()", - "type": "type_definition" - }, - "openzeppelin.token.erc721.library.ERC721.approve.SIZEOF_LOCALS": { - "type": "const", - "value": 0 - }, - "openzeppelin.token.erc721.library.ERC721.assert_only_token_owner": { - "decorators": [], - "pc": 1307, - "type": "function" - }, - "openzeppelin.token.erc721.library.ERC721.assert_only_token_owner.Args": { - "full_name": "openzeppelin.token.erc721.library.ERC721.assert_only_token_owner.Args", - "members": { - "token_id": { - "cairo_type": "starkware.cairo.common.uint256.Uint256", - "offset": 0 - } - }, - "size": 2, - "type": "struct" - }, - "openzeppelin.token.erc721.library.ERC721.assert_only_token_owner.ImplicitArgs": { - "full_name": "openzeppelin.token.erc721.library.ERC721.assert_only_token_owner.ImplicitArgs", - "members": { - "pedersen_ptr": { - "cairo_type": "starkware.cairo.common.cairo_builtins.HashBuiltin*", - "offset": 0 - }, - "range_check_ptr": { - "cairo_type": "felt", - "offset": 2 - }, - "syscall_ptr": { - "cairo_type": "felt*", - "offset": 1 - } - }, - "size": 3, - "type": "struct" - }, - "openzeppelin.token.erc721.library.ERC721.assert_only_token_owner.Return": { - "cairo_type": "()", - "type": "type_definition" - }, - "openzeppelin.token.erc721.library.ERC721.assert_only_token_owner.SIZEOF_LOCALS": { - "type": "const", - "value": 0 - }, - "openzeppelin.token.erc721.library.ERC721.balance_of": { - "decorators": [], - "pc": 1085, - "type": "function" - }, - "openzeppelin.token.erc721.library.ERC721.balance_of.Args": { - "full_name": "openzeppelin.token.erc721.library.ERC721.balance_of.Args", - "members": { - "owner": { - "cairo_type": "felt", - "offset": 0 - } - }, - "size": 1, - "type": "struct" - }, - "openzeppelin.token.erc721.library.ERC721.balance_of.ImplicitArgs": { - "full_name": "openzeppelin.token.erc721.library.ERC721.balance_of.ImplicitArgs", - "members": { - "pedersen_ptr": { - "cairo_type": "starkware.cairo.common.cairo_builtins.HashBuiltin*", - "offset": 1 - }, - "range_check_ptr": { - "cairo_type": "felt", - "offset": 2 - }, - "syscall_ptr": { - "cairo_type": "felt*", - "offset": 0 - } - }, - "size": 3, - "type": "struct" - }, - "openzeppelin.token.erc721.library.ERC721.balance_of.Return": { - "cairo_type": "(balance: starkware.cairo.common.uint256.Uint256)", - "type": "type_definition" - }, - "openzeppelin.token.erc721.library.ERC721.balance_of.SIZEOF_LOCALS": { - "type": "const", - "value": 0 - }, - "openzeppelin.token.erc721.library.ERC721.get_approved": { - "decorators": [], - "pc": 1114, - "type": "function" - }, - "openzeppelin.token.erc721.library.ERC721.get_approved.Args": { - "full_name": "openzeppelin.token.erc721.library.ERC721.get_approved.Args", - "members": { - "token_id": { - "cairo_type": "starkware.cairo.common.uint256.Uint256", - "offset": 0 - } - }, - "size": 2, - "type": "struct" - }, - "openzeppelin.token.erc721.library.ERC721.get_approved.ImplicitArgs": { - "full_name": "openzeppelin.token.erc721.library.ERC721.get_approved.ImplicitArgs", - "members": { - "pedersen_ptr": { - "cairo_type": "starkware.cairo.common.cairo_builtins.HashBuiltin*", - "offset": 1 - }, - "range_check_ptr": { - "cairo_type": "felt", - "offset": 2 - }, - "syscall_ptr": { - "cairo_type": "felt*", - "offset": 0 - } - }, - "size": 3, - "type": "struct" - }, - "openzeppelin.token.erc721.library.ERC721.get_approved.Return": { - "cairo_type": "(approved: felt)", - "type": "type_definition" - }, - "openzeppelin.token.erc721.library.ERC721.get_approved.SIZEOF_LOCALS": { - "type": "const", - "value": 0 - }, - "openzeppelin.token.erc721.library.ERC721.initializer": { - "decorators": [], - "pc": 1061, - "type": "function" - }, - "openzeppelin.token.erc721.library.ERC721.initializer.Args": { - "full_name": "openzeppelin.token.erc721.library.ERC721.initializer.Args", - "members": { - "name": { - "cairo_type": "felt", - "offset": 0 - }, - "symbol": { - "cairo_type": "felt", - "offset": 1 - } - }, - "size": 2, - "type": "struct" - }, - "openzeppelin.token.erc721.library.ERC721.initializer.ImplicitArgs": { - "full_name": "openzeppelin.token.erc721.library.ERC721.initializer.ImplicitArgs", - "members": { - "pedersen_ptr": { - "cairo_type": "starkware.cairo.common.cairo_builtins.HashBuiltin*", - "offset": 1 - }, - "range_check_ptr": { - "cairo_type": "felt", - "offset": 2 - }, - "syscall_ptr": { - "cairo_type": "felt*", - "offset": 0 - } - }, - "size": 3, - "type": "struct" - }, - "openzeppelin.token.erc721.library.ERC721.initializer.Return": { - "cairo_type": "()", - "type": "type_definition" - }, - "openzeppelin.token.erc721.library.ERC721.initializer.SIZEOF_LOCALS": { - "type": "const", - "value": 0 - }, - "openzeppelin.token.erc721.library.ERC721.is_approved_for_all": { - "decorators": [], - "pc": 1136, - "type": "function" - }, - "openzeppelin.token.erc721.library.ERC721.is_approved_for_all.Args": { - "full_name": "openzeppelin.token.erc721.library.ERC721.is_approved_for_all.Args", - "members": { - "operator": { - "cairo_type": "felt", - "offset": 1 - }, - "owner": { - "cairo_type": "felt", - "offset": 0 - } - }, - "size": 2, - "type": "struct" - }, - "openzeppelin.token.erc721.library.ERC721.is_approved_for_all.ImplicitArgs": { - "full_name": "openzeppelin.token.erc721.library.ERC721.is_approved_for_all.ImplicitArgs", - "members": { - "pedersen_ptr": { - "cairo_type": "starkware.cairo.common.cairo_builtins.HashBuiltin*", - "offset": 1 - }, - "range_check_ptr": { - "cairo_type": "felt", - "offset": 2 - }, - "syscall_ptr": { - "cairo_type": "felt*", - "offset": 0 - } - }, - "size": 3, - "type": "struct" - }, - "openzeppelin.token.erc721.library.ERC721.is_approved_for_all.Return": { - "cairo_type": "(is_approved: felt)", - "type": "type_definition" - }, - "openzeppelin.token.erc721.library.ERC721.is_approved_for_all.SIZEOF_LOCALS": { - "type": "const", - "value": 0 - }, - "openzeppelin.token.erc721.library.ERC721.name": { - "decorators": [], - "pc": 1079, - "type": "function" - }, - "openzeppelin.token.erc721.library.ERC721.name.Args": { - "full_name": "openzeppelin.token.erc721.library.ERC721.name.Args", - "members": {}, - "size": 0, - "type": "struct" - }, - "openzeppelin.token.erc721.library.ERC721.name.ImplicitArgs": { - "full_name": "openzeppelin.token.erc721.library.ERC721.name.ImplicitArgs", - "members": { - "pedersen_ptr": { - "cairo_type": "starkware.cairo.common.cairo_builtins.HashBuiltin*", - "offset": 1 - }, - "range_check_ptr": { - "cairo_type": "felt", - "offset": 2 - }, - "syscall_ptr": { - "cairo_type": "felt*", - "offset": 0 - } - }, - "size": 3, - "type": "struct" - }, - "openzeppelin.token.erc721.library.ERC721.name.Return": { - "cairo_type": "(name: felt)", - "type": "type_definition" - }, - "openzeppelin.token.erc721.library.ERC721.name.SIZEOF_LOCALS": { - "type": "const", - "value": 0 - }, - "openzeppelin.token.erc721.library.ERC721.owner_of": { - "decorators": [], - "pc": 1095, - "type": "function" - }, - "openzeppelin.token.erc721.library.ERC721.owner_of.Args": { - "full_name": "openzeppelin.token.erc721.library.ERC721.owner_of.Args", - "members": { - "token_id": { - "cairo_type": "starkware.cairo.common.uint256.Uint256", - "offset": 0 - } - }, - "size": 2, - "type": "struct" - }, - "openzeppelin.token.erc721.library.ERC721.owner_of.ImplicitArgs": { - "full_name": "openzeppelin.token.erc721.library.ERC721.owner_of.ImplicitArgs", - "members": { - "pedersen_ptr": { - "cairo_type": "starkware.cairo.common.cairo_builtins.HashBuiltin*", - "offset": 1 - }, - "range_check_ptr": { - "cairo_type": "felt", - "offset": 2 - }, - "syscall_ptr": { - "cairo_type": "felt*", - "offset": 0 - } - }, - "size": 3, - "type": "struct" - }, - "openzeppelin.token.erc721.library.ERC721.owner_of.Return": { - "cairo_type": "(owner: felt)", - "type": "type_definition" - }, - "openzeppelin.token.erc721.library.ERC721.owner_of.SIZEOF_LOCALS": { - "type": "const", - "value": 0 - }, - "openzeppelin.token.erc721.library.ERC721.safe_transfer_from": { - "decorators": [], - "pc": 1270, - "type": "function" - }, - "openzeppelin.token.erc721.library.ERC721.safe_transfer_from.Args": { - "full_name": "openzeppelin.token.erc721.library.ERC721.safe_transfer_from.Args", - "members": { - "data": { - "cairo_type": "felt*", - "offset": 5 - }, - "data_len": { - "cairo_type": "felt", - "offset": 4 - }, - "from_": { - "cairo_type": "felt", - "offset": 0 - }, - "to": { - "cairo_type": "felt", - "offset": 1 - }, - "token_id": { - "cairo_type": "starkware.cairo.common.uint256.Uint256", - "offset": 2 - } - }, - "size": 6, - "type": "struct" - }, - "openzeppelin.token.erc721.library.ERC721.safe_transfer_from.ImplicitArgs": { - "full_name": "openzeppelin.token.erc721.library.ERC721.safe_transfer_from.ImplicitArgs", - "members": { - "pedersen_ptr": { - "cairo_type": "starkware.cairo.common.cairo_builtins.HashBuiltin*", - "offset": 0 - }, - "range_check_ptr": { - "cairo_type": "felt", - "offset": 2 - }, - "syscall_ptr": { - "cairo_type": "felt*", - "offset": 1 - } - }, - "size": 3, - "type": "struct" - }, - "openzeppelin.token.erc721.library.ERC721.safe_transfer_from.Return": { - "cairo_type": "()", - "type": "type_definition" - }, - "openzeppelin.token.erc721.library.ERC721.safe_transfer_from.SIZEOF_LOCALS": { - "type": "const", - "value": 1 - }, - "openzeppelin.token.erc721.library.ERC721.set_approval_for_all": { - "decorators": [], - "pc": 1200, - "type": "function" - }, - "openzeppelin.token.erc721.library.ERC721.set_approval_for_all.Args": { - "full_name": "openzeppelin.token.erc721.library.ERC721.set_approval_for_all.Args", - "members": { - "approved": { - "cairo_type": "felt", - "offset": 1 - }, - "operator": { - "cairo_type": "felt", - "offset": 0 - } - }, - "size": 2, - "type": "struct" - }, - "openzeppelin.token.erc721.library.ERC721.set_approval_for_all.ImplicitArgs": { - "full_name": "openzeppelin.token.erc721.library.ERC721.set_approval_for_all.ImplicitArgs", - "members": { - "pedersen_ptr": { - "cairo_type": "starkware.cairo.common.cairo_builtins.HashBuiltin*", - "offset": 1 - }, - "range_check_ptr": { - "cairo_type": "felt", - "offset": 2 - }, - "syscall_ptr": { - "cairo_type": "felt*", - "offset": 0 - } - }, - "size": 3, - "type": "struct" - }, - "openzeppelin.token.erc721.library.ERC721.set_approval_for_all.Return": { - "cairo_type": "()", - "type": "type_definition" - }, - "openzeppelin.token.erc721.library.ERC721.set_approval_for_all.SIZEOF_LOCALS": { - "type": "const", - "value": 0 - }, - "openzeppelin.token.erc721.library.ERC721.transfer_from": { - "decorators": [], - "pc": 1235, - "type": "function" - }, - "openzeppelin.token.erc721.library.ERC721.transfer_from.Args": { - "full_name": "openzeppelin.token.erc721.library.ERC721.transfer_from.Args", - "members": { - "from_": { - "cairo_type": "felt", - "offset": 0 - }, - "to": { - "cairo_type": "felt", - "offset": 1 - }, - "token_id": { - "cairo_type": "starkware.cairo.common.uint256.Uint256", - "offset": 2 - } - }, - "size": 4, - "type": "struct" - }, - "openzeppelin.token.erc721.library.ERC721.transfer_from.ImplicitArgs": { - "full_name": "openzeppelin.token.erc721.library.ERC721.transfer_from.ImplicitArgs", - "members": { - "pedersen_ptr": { - "cairo_type": "starkware.cairo.common.cairo_builtins.HashBuiltin*", - "offset": 0 - }, - "range_check_ptr": { - "cairo_type": "felt", - "offset": 2 - }, - "syscall_ptr": { - "cairo_type": "felt*", - "offset": 1 - } - }, - "size": 3, - "type": "struct" - }, - "openzeppelin.token.erc721.library.ERC721.transfer_from.Return": { - "cairo_type": "()", - "type": "type_definition" - }, - "openzeppelin.token.erc721.library.ERC721.transfer_from.SIZEOF_LOCALS": { - "type": "const", - "value": 1 - }, - "openzeppelin.token.erc721.library.ERC721_balances": { - "type": "namespace" - }, - "openzeppelin.token.erc721.library.ERC721_balances.Args": { - "full_name": "openzeppelin.token.erc721.library.ERC721_balances.Args", - "members": {}, - "size": 0, - "type": "struct" - }, - "openzeppelin.token.erc721.library.ERC721_balances.HashBuiltin": { - "destination": "starkware.cairo.common.cairo_builtins.HashBuiltin", - "type": "alias" - }, - "openzeppelin.token.erc721.library.ERC721_balances.ImplicitArgs": { - "full_name": "openzeppelin.token.erc721.library.ERC721_balances.ImplicitArgs", - "members": {}, - "size": 0, - "type": "struct" - }, - "openzeppelin.token.erc721.library.ERC721_balances.Return": { - "cairo_type": "()", - "type": "type_definition" - }, - "openzeppelin.token.erc721.library.ERC721_balances.SIZEOF_LOCALS": { - "type": "const", - "value": 0 - }, - "openzeppelin.token.erc721.library.ERC721_balances.addr": { - "decorators": [], - "pc": 917, - "type": "function" - }, - "openzeppelin.token.erc721.library.ERC721_balances.addr.Args": { - "full_name": "openzeppelin.token.erc721.library.ERC721_balances.addr.Args", - "members": { - "account": { - "cairo_type": "felt", - "offset": 0 - } - }, - "size": 1, - "type": "struct" - }, - "openzeppelin.token.erc721.library.ERC721_balances.addr.ImplicitArgs": { - "full_name": "openzeppelin.token.erc721.library.ERC721_balances.addr.ImplicitArgs", - "members": { - "pedersen_ptr": { - "cairo_type": "starkware.cairo.common.cairo_builtins.HashBuiltin*", - "offset": 0 - }, - "range_check_ptr": { - "cairo_type": "felt", - "offset": 1 - } - }, - "size": 2, - "type": "struct" - }, - "openzeppelin.token.erc721.library.ERC721_balances.addr.Return": { - "cairo_type": "(res: felt)", - "type": "type_definition" - }, - "openzeppelin.token.erc721.library.ERC721_balances.addr.SIZEOF_LOCALS": { - "type": "const", - "value": 0 - }, - "openzeppelin.token.erc721.library.ERC721_balances.hash2": { - "destination": "starkware.cairo.common.hash.hash2", - "type": "alias" - }, - "openzeppelin.token.erc721.library.ERC721_balances.normalize_address": { - "destination": "starkware.starknet.common.storage.normalize_address", - "type": "alias" - }, - "openzeppelin.token.erc721.library.ERC721_balances.read": { - "decorators": [], - "pc": 931, - "type": "function" - }, - "openzeppelin.token.erc721.library.ERC721_balances.read.Args": { - "full_name": "openzeppelin.token.erc721.library.ERC721_balances.read.Args", - "members": { - "account": { - "cairo_type": "felt", - "offset": 0 - } - }, - "size": 1, - "type": "struct" - }, - "openzeppelin.token.erc721.library.ERC721_balances.read.ImplicitArgs": { - "full_name": "openzeppelin.token.erc721.library.ERC721_balances.read.ImplicitArgs", - "members": { - "pedersen_ptr": { - "cairo_type": "starkware.cairo.common.cairo_builtins.HashBuiltin*", - "offset": 1 - }, - "range_check_ptr": { - "cairo_type": "felt", - "offset": 2 - }, - "syscall_ptr": { - "cairo_type": "felt*", - "offset": 0 - } - }, - "size": 3, - "type": "struct" - }, - "openzeppelin.token.erc721.library.ERC721_balances.read.Return": { - "cairo_type": "(balance: starkware.cairo.common.uint256.Uint256)", - "type": "type_definition" - }, - "openzeppelin.token.erc721.library.ERC721_balances.read.SIZEOF_LOCALS": { - "type": "const", - "value": 0 - }, - "openzeppelin.token.erc721.library.ERC721_balances.storage_read": { - "destination": "starkware.starknet.common.syscalls.storage_read", - "type": "alias" - }, - "openzeppelin.token.erc721.library.ERC721_balances.storage_write": { - "destination": "starkware.starknet.common.syscalls.storage_write", - "type": "alias" - }, - "openzeppelin.token.erc721.library.ERC721_balances.write": { - "decorators": [], - "pc": 951, - "type": "function" - }, - "openzeppelin.token.erc721.library.ERC721_balances.write.Args": { - "full_name": "openzeppelin.token.erc721.library.ERC721_balances.write.Args", - "members": { - "account": { - "cairo_type": "felt", - "offset": 0 - }, - "value": { - "cairo_type": "starkware.cairo.common.uint256.Uint256", - "offset": 1 - } - }, - "size": 3, - "type": "struct" - }, - "openzeppelin.token.erc721.library.ERC721_balances.write.ImplicitArgs": { - "full_name": "openzeppelin.token.erc721.library.ERC721_balances.write.ImplicitArgs", - "members": { - "pedersen_ptr": { - "cairo_type": "starkware.cairo.common.cairo_builtins.HashBuiltin*", - "offset": 1 - }, - "range_check_ptr": { - "cairo_type": "felt", - "offset": 2 - }, - "syscall_ptr": { - "cairo_type": "felt*", - "offset": 0 - } - }, - "size": 3, - "type": "struct" - }, - "openzeppelin.token.erc721.library.ERC721_balances.write.Return": { - "cairo_type": "()", - "type": "type_definition" - }, - "openzeppelin.token.erc721.library.ERC721_balances.write.SIZEOF_LOCALS": { - "type": "const", - "value": 0 - }, - "openzeppelin.token.erc721.library.ERC721_name": { - "type": "namespace" - }, - "openzeppelin.token.erc721.library.ERC721_name.Args": { - "full_name": "openzeppelin.token.erc721.library.ERC721_name.Args", - "members": {}, - "size": 0, - "type": "struct" - }, - "openzeppelin.token.erc721.library.ERC721_name.HashBuiltin": { - "destination": "starkware.cairo.common.cairo_builtins.HashBuiltin", - "type": "alias" - }, - "openzeppelin.token.erc721.library.ERC721_name.ImplicitArgs": { - "full_name": "openzeppelin.token.erc721.library.ERC721_name.ImplicitArgs", - "members": {}, - "size": 0, - "type": "struct" - }, - "openzeppelin.token.erc721.library.ERC721_name.Return": { - "cairo_type": "()", - "type": "type_definition" - }, - "openzeppelin.token.erc721.library.ERC721_name.SIZEOF_LOCALS": { - "type": "const", - "value": 0 - }, - "openzeppelin.token.erc721.library.ERC721_name.addr": { - "decorators": [], - "pc": 824, - "type": "function" - }, - "openzeppelin.token.erc721.library.ERC721_name.addr.Args": { - "full_name": "openzeppelin.token.erc721.library.ERC721_name.addr.Args", - "members": {}, - "size": 0, - "type": "struct" - }, - "openzeppelin.token.erc721.library.ERC721_name.addr.ImplicitArgs": { - "full_name": "openzeppelin.token.erc721.library.ERC721_name.addr.ImplicitArgs", - "members": { - "pedersen_ptr": { - "cairo_type": "starkware.cairo.common.cairo_builtins.HashBuiltin*", - "offset": 0 - }, - "range_check_ptr": { - "cairo_type": "felt", - "offset": 1 - } - }, - "size": 2, - "type": "struct" - }, - "openzeppelin.token.erc721.library.ERC721_name.addr.Return": { - "cairo_type": "(res: felt)", - "type": "type_definition" - }, - "openzeppelin.token.erc721.library.ERC721_name.addr.SIZEOF_LOCALS": { - "type": "const", - "value": 0 - }, - "openzeppelin.token.erc721.library.ERC721_name.hash2": { - "destination": "starkware.cairo.common.hash.hash2", - "type": "alias" - }, - "openzeppelin.token.erc721.library.ERC721_name.normalize_address": { - "destination": "starkware.starknet.common.storage.normalize_address", - "type": "alias" - }, - "openzeppelin.token.erc721.library.ERC721_name.read": { - "decorators": [], - "pc": 829, - "type": "function" - }, - "openzeppelin.token.erc721.library.ERC721_name.read.Args": { - "full_name": "openzeppelin.token.erc721.library.ERC721_name.read.Args", - "members": {}, - "size": 0, - "type": "struct" - }, - "openzeppelin.token.erc721.library.ERC721_name.read.ImplicitArgs": { - "full_name": "openzeppelin.token.erc721.library.ERC721_name.read.ImplicitArgs", - "members": { - "pedersen_ptr": { - "cairo_type": "starkware.cairo.common.cairo_builtins.HashBuiltin*", - "offset": 1 - }, - "range_check_ptr": { - "cairo_type": "felt", - "offset": 2 - }, - "syscall_ptr": { - "cairo_type": "felt*", - "offset": 0 - } - }, - "size": 3, - "type": "struct" - }, - "openzeppelin.token.erc721.library.ERC721_name.read.Return": { - "cairo_type": "(name: felt)", - "type": "type_definition" - }, - "openzeppelin.token.erc721.library.ERC721_name.read.SIZEOF_LOCALS": { - "type": "const", - "value": 0 - }, - "openzeppelin.token.erc721.library.ERC721_name.storage_read": { - "destination": "starkware.starknet.common.syscalls.storage_read", - "type": "alias" - }, - "openzeppelin.token.erc721.library.ERC721_name.storage_write": { - "destination": "starkware.starknet.common.syscalls.storage_write", - "type": "alias" - }, - "openzeppelin.token.erc721.library.ERC721_name.write": { - "decorators": [], - "pc": 842, - "type": "function" - }, - "openzeppelin.token.erc721.library.ERC721_name.write.Args": { - "full_name": "openzeppelin.token.erc721.library.ERC721_name.write.Args", - "members": { - "value": { - "cairo_type": "felt", - "offset": 0 - } - }, - "size": 1, - "type": "struct" - }, - "openzeppelin.token.erc721.library.ERC721_name.write.ImplicitArgs": { - "full_name": "openzeppelin.token.erc721.library.ERC721_name.write.ImplicitArgs", - "members": { - "pedersen_ptr": { - "cairo_type": "starkware.cairo.common.cairo_builtins.HashBuiltin*", - "offset": 1 - }, - "range_check_ptr": { - "cairo_type": "felt", - "offset": 2 - }, - "syscall_ptr": { - "cairo_type": "felt*", - "offset": 0 - } - }, - "size": 3, - "type": "struct" - }, - "openzeppelin.token.erc721.library.ERC721_name.write.Return": { - "cairo_type": "()", - "type": "type_definition" - }, - "openzeppelin.token.erc721.library.ERC721_name.write.SIZEOF_LOCALS": { - "type": "const", - "value": 0 - }, - "openzeppelin.token.erc721.library.ERC721_operator_approvals": { - "type": "namespace" - }, - "openzeppelin.token.erc721.library.ERC721_operator_approvals.Args": { - "full_name": "openzeppelin.token.erc721.library.ERC721_operator_approvals.Args", - "members": {}, - "size": 0, - "type": "struct" - }, - "openzeppelin.token.erc721.library.ERC721_operator_approvals.HashBuiltin": { - "destination": "starkware.cairo.common.cairo_builtins.HashBuiltin", - "type": "alias" - }, - "openzeppelin.token.erc721.library.ERC721_operator_approvals.ImplicitArgs": { - "full_name": "openzeppelin.token.erc721.library.ERC721_operator_approvals.ImplicitArgs", - "members": {}, - "size": 0, - "type": "struct" - }, - "openzeppelin.token.erc721.library.ERC721_operator_approvals.Return": { - "cairo_type": "()", - "type": "type_definition" - }, - "openzeppelin.token.erc721.library.ERC721_operator_approvals.SIZEOF_LOCALS": { - "type": "const", - "value": 0 - }, - "openzeppelin.token.erc721.library.ERC721_operator_approvals.addr": { - "decorators": [], - "pc": 1015, - "type": "function" - }, - "openzeppelin.token.erc721.library.ERC721_operator_approvals.addr.Args": { - "full_name": "openzeppelin.token.erc721.library.ERC721_operator_approvals.addr.Args", - "members": { - "operator": { - "cairo_type": "felt", - "offset": 1 - }, - "owner": { - "cairo_type": "felt", - "offset": 0 - } - }, - "size": 2, - "type": "struct" - }, - "openzeppelin.token.erc721.library.ERC721_operator_approvals.addr.ImplicitArgs": { - "full_name": "openzeppelin.token.erc721.library.ERC721_operator_approvals.addr.ImplicitArgs", - "members": { - "pedersen_ptr": { - "cairo_type": "starkware.cairo.common.cairo_builtins.HashBuiltin*", - "offset": 0 - }, - "range_check_ptr": { - "cairo_type": "felt", - "offset": 1 - } - }, - "size": 2, - "type": "struct" - }, - "openzeppelin.token.erc721.library.ERC721_operator_approvals.addr.Return": { - "cairo_type": "(res: felt)", - "type": "type_definition" - }, - "openzeppelin.token.erc721.library.ERC721_operator_approvals.addr.SIZEOF_LOCALS": { - "type": "const", - "value": 0 - }, - "openzeppelin.token.erc721.library.ERC721_operator_approvals.hash2": { - "destination": "starkware.cairo.common.hash.hash2", - "type": "alias" - }, - "openzeppelin.token.erc721.library.ERC721_operator_approvals.normalize_address": { - "destination": "starkware.starknet.common.storage.normalize_address", - "type": "alias" - }, - "openzeppelin.token.erc721.library.ERC721_operator_approvals.read": { - "decorators": [], - "pc": 1032, - "type": "function" - }, - "openzeppelin.token.erc721.library.ERC721_operator_approvals.read.Args": { - "full_name": "openzeppelin.token.erc721.library.ERC721_operator_approvals.read.Args", - "members": { - "operator": { - "cairo_type": "felt", - "offset": 1 - }, - "owner": { - "cairo_type": "felt", - "offset": 0 - } - }, - "size": 2, - "type": "struct" - }, - "openzeppelin.token.erc721.library.ERC721_operator_approvals.read.ImplicitArgs": { - "full_name": "openzeppelin.token.erc721.library.ERC721_operator_approvals.read.ImplicitArgs", - "members": { - "pedersen_ptr": { - "cairo_type": "starkware.cairo.common.cairo_builtins.HashBuiltin*", - "offset": 1 - }, - "range_check_ptr": { - "cairo_type": "felt", - "offset": 2 - }, - "syscall_ptr": { - "cairo_type": "felt*", - "offset": 0 - } - }, - "size": 3, - "type": "struct" - }, - "openzeppelin.token.erc721.library.ERC721_operator_approvals.read.Return": { - "cairo_type": "(is_approved: felt)", - "type": "type_definition" - }, - "openzeppelin.token.erc721.library.ERC721_operator_approvals.read.SIZEOF_LOCALS": { - "type": "const", - "value": 0 - }, - "openzeppelin.token.erc721.library.ERC721_operator_approvals.storage_read": { - "destination": "starkware.starknet.common.syscalls.storage_read", - "type": "alias" - }, - "openzeppelin.token.erc721.library.ERC721_operator_approvals.storage_write": { - "destination": "starkware.starknet.common.syscalls.storage_write", - "type": "alias" - }, - "openzeppelin.token.erc721.library.ERC721_operator_approvals.write": { - "decorators": [], - "pc": 1047, - "type": "function" - }, - "openzeppelin.token.erc721.library.ERC721_operator_approvals.write.Args": { - "full_name": "openzeppelin.token.erc721.library.ERC721_operator_approvals.write.Args", - "members": { - "operator": { - "cairo_type": "felt", - "offset": 1 - }, - "owner": { - "cairo_type": "felt", - "offset": 0 - }, - "value": { - "cairo_type": "felt", - "offset": 2 - } - }, - "size": 3, - "type": "struct" - }, - "openzeppelin.token.erc721.library.ERC721_operator_approvals.write.ImplicitArgs": { - "full_name": "openzeppelin.token.erc721.library.ERC721_operator_approvals.write.ImplicitArgs", - "members": { - "pedersen_ptr": { - "cairo_type": "starkware.cairo.common.cairo_builtins.HashBuiltin*", - "offset": 1 - }, - "range_check_ptr": { - "cairo_type": "felt", - "offset": 2 - }, - "syscall_ptr": { - "cairo_type": "felt*", - "offset": 0 - } - }, - "size": 3, - "type": "struct" - }, - "openzeppelin.token.erc721.library.ERC721_operator_approvals.write.Return": { - "cairo_type": "()", - "type": "type_definition" - }, - "openzeppelin.token.erc721.library.ERC721_operator_approvals.write.SIZEOF_LOCALS": { - "type": "const", - "value": 0 - }, - "openzeppelin.token.erc721.library.ERC721_owners": { - "type": "namespace" - }, - "openzeppelin.token.erc721.library.ERC721_owners.Args": { - "full_name": "openzeppelin.token.erc721.library.ERC721_owners.Args", - "members": {}, - "size": 0, - "type": "struct" - }, - "openzeppelin.token.erc721.library.ERC721_owners.HashBuiltin": { - "destination": "starkware.cairo.common.cairo_builtins.HashBuiltin", - "type": "alias" - }, - "openzeppelin.token.erc721.library.ERC721_owners.ImplicitArgs": { - "full_name": "openzeppelin.token.erc721.library.ERC721_owners.ImplicitArgs", - "members": {}, - "size": 0, - "type": "struct" - }, - "openzeppelin.token.erc721.library.ERC721_owners.Return": { - "cairo_type": "()", - "type": "type_definition" - }, - "openzeppelin.token.erc721.library.ERC721_owners.SIZEOF_LOCALS": { - "type": "const", - "value": 0 - }, - "openzeppelin.token.erc721.library.ERC721_owners.addr": { - "decorators": [], - "pc": 871, - "type": "function" - }, - "openzeppelin.token.erc721.library.ERC721_owners.addr.Args": { - "full_name": "openzeppelin.token.erc721.library.ERC721_owners.addr.Args", - "members": { - "token_id": { - "cairo_type": "starkware.cairo.common.uint256.Uint256", - "offset": 0 - } - }, - "size": 2, - "type": "struct" - }, - "openzeppelin.token.erc721.library.ERC721_owners.addr.ImplicitArgs": { - "full_name": "openzeppelin.token.erc721.library.ERC721_owners.addr.ImplicitArgs", - "members": { - "pedersen_ptr": { - "cairo_type": "starkware.cairo.common.cairo_builtins.HashBuiltin*", - "offset": 0 - }, - "range_check_ptr": { - "cairo_type": "felt", - "offset": 1 - } - }, - "size": 2, - "type": "struct" - }, - "openzeppelin.token.erc721.library.ERC721_owners.addr.Return": { - "cairo_type": "(res: felt)", - "type": "type_definition" - }, - "openzeppelin.token.erc721.library.ERC721_owners.addr.SIZEOF_LOCALS": { - "type": "const", - "value": 0 - }, - "openzeppelin.token.erc721.library.ERC721_owners.hash2": { - "destination": "starkware.cairo.common.hash.hash2", - "type": "alias" - }, - "openzeppelin.token.erc721.library.ERC721_owners.normalize_address": { - "destination": "starkware.starknet.common.storage.normalize_address", - "type": "alias" - }, - "openzeppelin.token.erc721.library.ERC721_owners.read": { - "decorators": [], - "pc": 888, - "type": "function" - }, - "openzeppelin.token.erc721.library.ERC721_owners.read.Args": { - "full_name": "openzeppelin.token.erc721.library.ERC721_owners.read.Args", - "members": { - "token_id": { - "cairo_type": "starkware.cairo.common.uint256.Uint256", - "offset": 0 - } - }, - "size": 2, - "type": "struct" - }, - "openzeppelin.token.erc721.library.ERC721_owners.read.ImplicitArgs": { - "full_name": "openzeppelin.token.erc721.library.ERC721_owners.read.ImplicitArgs", - "members": { - "pedersen_ptr": { - "cairo_type": "starkware.cairo.common.cairo_builtins.HashBuiltin*", - "offset": 1 - }, - "range_check_ptr": { - "cairo_type": "felt", - "offset": 2 - }, - "syscall_ptr": { - "cairo_type": "felt*", - "offset": 0 - } - }, - "size": 3, - "type": "struct" - }, - "openzeppelin.token.erc721.library.ERC721_owners.read.Return": { - "cairo_type": "(owner: felt)", - "type": "type_definition" - }, - "openzeppelin.token.erc721.library.ERC721_owners.read.SIZEOF_LOCALS": { - "type": "const", - "value": 0 - }, - "openzeppelin.token.erc721.library.ERC721_owners.storage_read": { - "destination": "starkware.starknet.common.syscalls.storage_read", - "type": "alias" - }, - "openzeppelin.token.erc721.library.ERC721_owners.storage_write": { - "destination": "starkware.starknet.common.syscalls.storage_write", - "type": "alias" - }, - "openzeppelin.token.erc721.library.ERC721_owners.write": { - "decorators": [], - "pc": 903, - "type": "function" - }, - "openzeppelin.token.erc721.library.ERC721_owners.write.Args": { - "full_name": "openzeppelin.token.erc721.library.ERC721_owners.write.Args", - "members": { - "token_id": { - "cairo_type": "starkware.cairo.common.uint256.Uint256", - "offset": 0 - }, - "value": { - "cairo_type": "felt", - "offset": 2 - } - }, - "size": 3, - "type": "struct" - }, - "openzeppelin.token.erc721.library.ERC721_owners.write.ImplicitArgs": { - "full_name": "openzeppelin.token.erc721.library.ERC721_owners.write.ImplicitArgs", - "members": { - "pedersen_ptr": { - "cairo_type": "starkware.cairo.common.cairo_builtins.HashBuiltin*", - "offset": 1 - }, - "range_check_ptr": { - "cairo_type": "felt", - "offset": 2 - }, - "syscall_ptr": { - "cairo_type": "felt*", - "offset": 0 - } - }, - "size": 3, - "type": "struct" - }, - "openzeppelin.token.erc721.library.ERC721_owners.write.Return": { - "cairo_type": "()", - "type": "type_definition" - }, - "openzeppelin.token.erc721.library.ERC721_owners.write.SIZEOF_LOCALS": { - "type": "const", - "value": 0 - }, - "openzeppelin.token.erc721.library.ERC721_symbol": { - "type": "namespace" - }, - "openzeppelin.token.erc721.library.ERC721_symbol.Args": { - "full_name": "openzeppelin.token.erc721.library.ERC721_symbol.Args", - "members": {}, - "size": 0, - "type": "struct" - }, - "openzeppelin.token.erc721.library.ERC721_symbol.HashBuiltin": { - "destination": "starkware.cairo.common.cairo_builtins.HashBuiltin", - "type": "alias" - }, - "openzeppelin.token.erc721.library.ERC721_symbol.ImplicitArgs": { - "full_name": "openzeppelin.token.erc721.library.ERC721_symbol.ImplicitArgs", - "members": {}, - "size": 0, - "type": "struct" - }, - "openzeppelin.token.erc721.library.ERC721_symbol.Return": { - "cairo_type": "()", - "type": "type_definition" - }, - "openzeppelin.token.erc721.library.ERC721_symbol.SIZEOF_LOCALS": { - "type": "const", - "value": 0 - }, - "openzeppelin.token.erc721.library.ERC721_symbol.addr": { - "decorators": [], - "pc": 854, - "type": "function" - }, - "openzeppelin.token.erc721.library.ERC721_symbol.addr.Args": { - "full_name": "openzeppelin.token.erc721.library.ERC721_symbol.addr.Args", - "members": {}, - "size": 0, - "type": "struct" - }, - "openzeppelin.token.erc721.library.ERC721_symbol.addr.ImplicitArgs": { - "full_name": "openzeppelin.token.erc721.library.ERC721_symbol.addr.ImplicitArgs", - "members": { - "pedersen_ptr": { - "cairo_type": "starkware.cairo.common.cairo_builtins.HashBuiltin*", - "offset": 0 - }, - "range_check_ptr": { - "cairo_type": "felt", - "offset": 1 - } - }, - "size": 2, - "type": "struct" - }, - "openzeppelin.token.erc721.library.ERC721_symbol.addr.Return": { - "cairo_type": "(res: felt)", - "type": "type_definition" - }, - "openzeppelin.token.erc721.library.ERC721_symbol.addr.SIZEOF_LOCALS": { - "type": "const", - "value": 0 - }, - "openzeppelin.token.erc721.library.ERC721_symbol.hash2": { - "destination": "starkware.cairo.common.hash.hash2", - "type": "alias" - }, - "openzeppelin.token.erc721.library.ERC721_symbol.normalize_address": { - "destination": "starkware.starknet.common.storage.normalize_address", - "type": "alias" - }, - "openzeppelin.token.erc721.library.ERC721_symbol.storage_read": { - "destination": "starkware.starknet.common.syscalls.storage_read", - "type": "alias" - }, - "openzeppelin.token.erc721.library.ERC721_symbol.storage_write": { - "destination": "starkware.starknet.common.syscalls.storage_write", - "type": "alias" - }, - "openzeppelin.token.erc721.library.ERC721_symbol.write": { - "decorators": [], - "pc": 859, - "type": "function" - }, - "openzeppelin.token.erc721.library.ERC721_symbol.write.Args": { - "full_name": "openzeppelin.token.erc721.library.ERC721_symbol.write.Args", - "members": { - "value": { - "cairo_type": "felt", - "offset": 0 - } - }, - "size": 1, - "type": "struct" - }, - "openzeppelin.token.erc721.library.ERC721_symbol.write.ImplicitArgs": { - "full_name": "openzeppelin.token.erc721.library.ERC721_symbol.write.ImplicitArgs", - "members": { - "pedersen_ptr": { - "cairo_type": "starkware.cairo.common.cairo_builtins.HashBuiltin*", - "offset": 1 - }, - "range_check_ptr": { - "cairo_type": "felt", - "offset": 2 - }, - "syscall_ptr": { - "cairo_type": "felt*", - "offset": 0 - } - }, - "size": 3, - "type": "struct" - }, - "openzeppelin.token.erc721.library.ERC721_symbol.write.Return": { - "cairo_type": "()", - "type": "type_definition" - }, - "openzeppelin.token.erc721.library.ERC721_symbol.write.SIZEOF_LOCALS": { - "type": "const", - "value": 0 - }, - "openzeppelin.token.erc721.library.ERC721_token_approvals": { - "type": "namespace" - }, - "openzeppelin.token.erc721.library.ERC721_token_approvals.Args": { - "full_name": "openzeppelin.token.erc721.library.ERC721_token_approvals.Args", - "members": {}, - "size": 0, - "type": "struct" - }, - "openzeppelin.token.erc721.library.ERC721_token_approvals.HashBuiltin": { - "destination": "starkware.cairo.common.cairo_builtins.HashBuiltin", - "type": "alias" - }, - "openzeppelin.token.erc721.library.ERC721_token_approvals.ImplicitArgs": { - "full_name": "openzeppelin.token.erc721.library.ERC721_token_approvals.ImplicitArgs", - "members": {}, - "size": 0, - "type": "struct" - }, - "openzeppelin.token.erc721.library.ERC721_token_approvals.Return": { - "cairo_type": "()", - "type": "type_definition" - }, - "openzeppelin.token.erc721.library.ERC721_token_approvals.SIZEOF_LOCALS": { - "type": "const", - "value": 0 - }, - "openzeppelin.token.erc721.library.ERC721_token_approvals.addr": { - "decorators": [], - "pc": 969, - "type": "function" - }, - "openzeppelin.token.erc721.library.ERC721_token_approvals.addr.Args": { - "full_name": "openzeppelin.token.erc721.library.ERC721_token_approvals.addr.Args", - "members": { - "token_id": { - "cairo_type": "starkware.cairo.common.uint256.Uint256", - "offset": 0 - } - }, - "size": 2, - "type": "struct" - }, - "openzeppelin.token.erc721.library.ERC721_token_approvals.addr.ImplicitArgs": { - "full_name": "openzeppelin.token.erc721.library.ERC721_token_approvals.addr.ImplicitArgs", - "members": { - "pedersen_ptr": { - "cairo_type": "starkware.cairo.common.cairo_builtins.HashBuiltin*", - "offset": 0 - }, - "range_check_ptr": { - "cairo_type": "felt", - "offset": 1 - } - }, - "size": 2, - "type": "struct" - }, - "openzeppelin.token.erc721.library.ERC721_token_approvals.addr.Return": { - "cairo_type": "(res: felt)", - "type": "type_definition" - }, - "openzeppelin.token.erc721.library.ERC721_token_approvals.addr.SIZEOF_LOCALS": { - "type": "const", - "value": 0 - }, - "openzeppelin.token.erc721.library.ERC721_token_approvals.hash2": { - "destination": "starkware.cairo.common.hash.hash2", - "type": "alias" - }, - "openzeppelin.token.erc721.library.ERC721_token_approvals.normalize_address": { - "destination": "starkware.starknet.common.storage.normalize_address", - "type": "alias" - }, - "openzeppelin.token.erc721.library.ERC721_token_approvals.read": { - "decorators": [], - "pc": 986, - "type": "function" - }, - "openzeppelin.token.erc721.library.ERC721_token_approvals.read.Args": { - "full_name": "openzeppelin.token.erc721.library.ERC721_token_approvals.read.Args", - "members": { - "token_id": { - "cairo_type": "starkware.cairo.common.uint256.Uint256", - "offset": 0 - } - }, - "size": 2, - "type": "struct" - }, - "openzeppelin.token.erc721.library.ERC721_token_approvals.read.ImplicitArgs": { - "full_name": "openzeppelin.token.erc721.library.ERC721_token_approvals.read.ImplicitArgs", - "members": { - "pedersen_ptr": { - "cairo_type": "starkware.cairo.common.cairo_builtins.HashBuiltin*", - "offset": 1 - }, - "range_check_ptr": { - "cairo_type": "felt", - "offset": 2 - }, - "syscall_ptr": { - "cairo_type": "felt*", - "offset": 0 - } - }, - "size": 3, - "type": "struct" - }, - "openzeppelin.token.erc721.library.ERC721_token_approvals.read.Return": { - "cairo_type": "(approved: felt)", - "type": "type_definition" - }, - "openzeppelin.token.erc721.library.ERC721_token_approvals.read.SIZEOF_LOCALS": { - "type": "const", - "value": 0 - }, - "openzeppelin.token.erc721.library.ERC721_token_approvals.storage_read": { - "destination": "starkware.starknet.common.syscalls.storage_read", - "type": "alias" - }, - "openzeppelin.token.erc721.library.ERC721_token_approvals.storage_write": { - "destination": "starkware.starknet.common.syscalls.storage_write", - "type": "alias" - }, - "openzeppelin.token.erc721.library.ERC721_token_approvals.write": { - "decorators": [], - "pc": 1001, - "type": "function" - }, - "openzeppelin.token.erc721.library.ERC721_token_approvals.write.Args": { - "full_name": "openzeppelin.token.erc721.library.ERC721_token_approvals.write.Args", - "members": { - "token_id": { - "cairo_type": "starkware.cairo.common.uint256.Uint256", - "offset": 0 - }, - "value": { - "cairo_type": "felt", - "offset": 2 - } - }, - "size": 3, - "type": "struct" - }, - "openzeppelin.token.erc721.library.ERC721_token_approvals.write.ImplicitArgs": { - "full_name": "openzeppelin.token.erc721.library.ERC721_token_approvals.write.ImplicitArgs", - "members": { - "pedersen_ptr": { - "cairo_type": "starkware.cairo.common.cairo_builtins.HashBuiltin*", - "offset": 1 - }, - "range_check_ptr": { - "cairo_type": "felt", - "offset": 2 - }, - "syscall_ptr": { - "cairo_type": "felt*", - "offset": 0 - } - }, - "size": 3, - "type": "struct" - }, - "openzeppelin.token.erc721.library.ERC721_token_approvals.write.Return": { - "cairo_type": "()", - "type": "type_definition" - }, - "openzeppelin.token.erc721.library.ERC721_token_approvals.write.SIZEOF_LOCALS": { - "type": "const", - "value": 0 - }, - "openzeppelin.token.erc721.library.ERC721_token_uri": { - "type": "namespace" - }, - "openzeppelin.token.erc721.library.ERC721_token_uri.Args": { - "full_name": "openzeppelin.token.erc721.library.ERC721_token_uri.Args", - "members": {}, - "size": 0, - "type": "struct" - }, - "openzeppelin.token.erc721.library.ERC721_token_uri.HashBuiltin": { - "destination": "starkware.cairo.common.cairo_builtins.HashBuiltin", - "type": "alias" - }, - "openzeppelin.token.erc721.library.ERC721_token_uri.ImplicitArgs": { - "full_name": "openzeppelin.token.erc721.library.ERC721_token_uri.ImplicitArgs", - "members": {}, - "size": 0, - "type": "struct" - }, - "openzeppelin.token.erc721.library.ERC721_token_uri.Return": { - "cairo_type": "()", - "type": "type_definition" - }, - "openzeppelin.token.erc721.library.ERC721_token_uri.SIZEOF_LOCALS": { - "type": "const", - "value": 0 - }, - "openzeppelin.token.erc721.library.ERC721_token_uri.hash2": { - "destination": "starkware.cairo.common.hash.hash2", - "type": "alias" - }, - "openzeppelin.token.erc721.library.ERC721_token_uri.normalize_address": { - "destination": "starkware.starknet.common.storage.normalize_address", - "type": "alias" - }, - "openzeppelin.token.erc721.library.ERC721_token_uri.storage_read": { - "destination": "starkware.starknet.common.syscalls.storage_read", - "type": "alias" - }, - "openzeppelin.token.erc721.library.ERC721_token_uri.storage_write": { - "destination": "starkware.starknet.common.syscalls.storage_write", - "type": "alias" - }, - "openzeppelin.token.erc721.library.FALSE": { - "destination": "starkware.cairo.common.bool.FALSE", - "type": "alias" - }, - "openzeppelin.token.erc721.library.HashBuiltin": { - "destination": "starkware.cairo.common.cairo_builtins.HashBuiltin", - "type": "alias" - }, - "openzeppelin.token.erc721.library.IACCOUNT_ID": { - "destination": "openzeppelin.utils.constants.library.IACCOUNT_ID", - "type": "alias" - }, - "openzeppelin.token.erc721.library.IERC165": { - "destination": "openzeppelin.introspection.erc165.IERC165.IERC165", - "type": "alias" - }, - "openzeppelin.token.erc721.library.IERC721Receiver": { - "destination": "openzeppelin.token.erc721.IERC721Receiver.IERC721Receiver", - "type": "alias" - }, - "openzeppelin.token.erc721.library.IERC721_ID": { - "destination": "openzeppelin.utils.constants.library.IERC721_ID", - "type": "alias" - }, - "openzeppelin.token.erc721.library.IERC721_METADATA_ID": { - "destination": "openzeppelin.utils.constants.library.IERC721_METADATA_ID", - "type": "alias" - }, - "openzeppelin.token.erc721.library.IERC721_RECEIVER_ID": { - "destination": "openzeppelin.utils.constants.library.IERC721_RECEIVER_ID", - "type": "alias" - }, - "openzeppelin.token.erc721.library.SafeUint256": { - "destination": "openzeppelin.security.safemath.library.SafeUint256", - "type": "alias" - }, - "openzeppelin.token.erc721.library.TRUE": { - "destination": "starkware.cairo.common.bool.TRUE", - "type": "alias" - }, - "openzeppelin.token.erc721.library.Transfer": { - "type": "namespace" - }, - "openzeppelin.token.erc721.library.Transfer.Args": { - "full_name": "openzeppelin.token.erc721.library.Transfer.Args", - "members": {}, - "size": 0, - "type": "struct" - }, - "openzeppelin.token.erc721.library.Transfer.ImplicitArgs": { - "full_name": "openzeppelin.token.erc721.library.Transfer.ImplicitArgs", - "members": {}, - "size": 0, - "type": "struct" - }, - "openzeppelin.token.erc721.library.Transfer.Return": { - "cairo_type": "()", - "type": "type_definition" - }, - "openzeppelin.token.erc721.library.Transfer.SELECTOR": { - "type": "const", - "value": 271746229759260285552388728919865295615886751538523744128730118297934206697 - }, - "openzeppelin.token.erc721.library.Transfer.SIZEOF_LOCALS": { - "type": "const", - "value": 0 - }, - "openzeppelin.token.erc721.library.Transfer.alloc": { - "destination": "starkware.cairo.common.alloc.alloc", - "type": "alias" - }, - "openzeppelin.token.erc721.library.Transfer.emit": { - "decorators": [], - "pc": 744, - "type": "function" - }, - "openzeppelin.token.erc721.library.Transfer.emit.Args": { - "full_name": "openzeppelin.token.erc721.library.Transfer.emit.Args", - "members": { - "from_": { - "cairo_type": "felt", - "offset": 0 - }, - "to": { - "cairo_type": "felt", - "offset": 1 - }, - "tokenId": { - "cairo_type": "starkware.cairo.common.uint256.Uint256", - "offset": 2 - } - }, - "size": 4, - "type": "struct" - }, - "openzeppelin.token.erc721.library.Transfer.emit.ImplicitArgs": { - "full_name": "openzeppelin.token.erc721.library.Transfer.emit.ImplicitArgs", - "members": { - "range_check_ptr": { - "cairo_type": "felt", - "offset": 1 - }, - "syscall_ptr": { - "cairo_type": "felt*", - "offset": 0 - } - }, - "size": 2, - "type": "struct" - }, - "openzeppelin.token.erc721.library.Transfer.emit.Return": { - "cairo_type": "()", - "type": "type_definition" - }, - "openzeppelin.token.erc721.library.Transfer.emit.SIZEOF_LOCALS": { - "type": "const", - "value": 2 - }, - "openzeppelin.token.erc721.library.Transfer.emit_event": { - "destination": "starkware.starknet.common.syscalls.emit_event", - "type": "alias" - }, - "openzeppelin.token.erc721.library.Transfer.memcpy": { - "destination": "starkware.cairo.common.memcpy.memcpy", - "type": "alias" - }, - "openzeppelin.token.erc721.library.Uint256": { - "destination": "starkware.cairo.common.uint256.Uint256", - "type": "alias" - }, - "openzeppelin.token.erc721.library._check_onERC721Received": { - "decorators": [], - "pc": 1647, - "type": "function" - }, - "openzeppelin.token.erc721.library._check_onERC721Received.Args": { - "full_name": "openzeppelin.token.erc721.library._check_onERC721Received.Args", - "members": { - "data": { - "cairo_type": "felt*", - "offset": 5 - }, - "data_len": { - "cairo_type": "felt", - "offset": 4 - }, - "from_": { - "cairo_type": "felt", - "offset": 0 - }, - "to": { - "cairo_type": "felt", - "offset": 1 - }, - "token_id": { - "cairo_type": "starkware.cairo.common.uint256.Uint256", - "offset": 2 - } - }, - "size": 6, - "type": "struct" - }, - "openzeppelin.token.erc721.library._check_onERC721Received.ImplicitArgs": { - "full_name": "openzeppelin.token.erc721.library._check_onERC721Received.ImplicitArgs", - "members": { - "pedersen_ptr": { - "cairo_type": "starkware.cairo.common.cairo_builtins.HashBuiltin*", - "offset": 1 - }, - "range_check_ptr": { - "cairo_type": "felt", - "offset": 2 - }, - "syscall_ptr": { - "cairo_type": "felt*", - "offset": 0 - } - }, - "size": 3, - "type": "struct" - }, - "openzeppelin.token.erc721.library._check_onERC721Received.Return": { - "cairo_type": "(success: felt)", - "type": "type_definition" - }, - "openzeppelin.token.erc721.library._check_onERC721Received.SIZEOF_LOCALS": { - "type": "const", - "value": 0 - }, - "openzeppelin.token.erc721.library.assert_not_equal": { - "destination": "starkware.cairo.common.math.assert_not_equal", - "type": "alias" - }, - "openzeppelin.token.erc721.library.assert_not_zero": { - "destination": "starkware.cairo.common.math.assert_not_zero", - "type": "alias" - }, - "openzeppelin.token.erc721.library.get_caller_address": { - "destination": "starkware.starknet.common.syscalls.get_caller_address", - "type": "alias" - }, - "openzeppelin.token.erc721.library.uint256_check": { - "destination": "starkware.cairo.common.uint256.uint256_check", - "type": "alias" - }, - "openzeppelin.utils.constants.library.DEFAULT_ADMIN_ROLE": { - "type": "const", - "value": 0 - }, - "openzeppelin.utils.constants.library.IACCESSCONTROL_ID": { - "type": "const", - "value": 2036718347 - }, - "openzeppelin.utils.constants.library.IACCOUNT_ID": { - "type": "const", - "value": 2792084853 - }, - "openzeppelin.utils.constants.library.IERC165_ID": { - "type": "const", - "value": 33540519 - }, - "openzeppelin.utils.constants.library.IERC721_ENUMERABLE_ID": { - "type": "const", - "value": 2014223715 - }, - "openzeppelin.utils.constants.library.IERC721_ID": { - "type": "const", - "value": 2158778573 - }, - "openzeppelin.utils.constants.library.IERC721_METADATA_ID": { - "type": "const", - "value": 1532892063 - }, - "openzeppelin.utils.constants.library.IERC721_RECEIVER_ID": { - "type": "const", - "value": 353073666 - }, - "openzeppelin.utils.constants.library.INVALID_ID": { - "type": "const", - "value": 4294967295 - }, - "openzeppelin.utils.constants.library.UINT8_MAX": { - "type": "const", - "value": 255 - }, - "sheet.library.CellData": { - "full_name": "sheet.library.CellData", - "members": { - "calldata_len": { - "cairo_type": "felt", - "offset": 2 - }, - "contract_address": { - "cairo_type": "felt", - "offset": 0 - }, - "value": { - "cairo_type": "felt", - "offset": 1 - } - }, - "size": 3, - "type": "struct" - }, - "sheet.library.CellRendered": { - "full_name": "sheet.library.CellRendered", - "members": { - "id": { - "cairo_type": "felt", - "offset": 0 - }, - "owner": { - "cairo_type": "felt", - "offset": 1 - }, - "value": { - "cairo_type": "felt", - "offset": 2 - } - }, - "size": 3, - "type": "struct" - }, - "sheet.library.CellUpdated": { - "type": "namespace" - }, - "sheet.library.CellUpdated.Args": { - "full_name": "sheet.library.CellUpdated.Args", - "members": {}, - "size": 0, - "type": "struct" - }, - "sheet.library.CellUpdated.ImplicitArgs": { - "full_name": "sheet.library.CellUpdated.ImplicitArgs", - "members": {}, - "size": 0, - "type": "struct" - }, - "sheet.library.CellUpdated.Return": { - "cairo_type": "()", - "type": "type_definition" - }, - "sheet.library.CellUpdated.SELECTOR": { - "type": "const", - "value": 651120005843912419706632475330342524888135200328014518337942891259910396910 - }, - "sheet.library.CellUpdated.SIZEOF_LOCALS": { - "type": "const", - "value": 0 - }, - "sheet.library.CellUpdated.alloc": { - "destination": "starkware.cairo.common.alloc.alloc", - "type": "alias" - }, - "sheet.library.CellUpdated.emit": { - "decorators": [], - "pc": 2630, - "type": "function" - }, - "sheet.library.CellUpdated.emit.Args": { - "full_name": "sheet.library.CellUpdated.emit.Args", - "members": { - "contract_address": { - "cairo_type": "felt", - "offset": 2 - }, - "id": { - "cairo_type": "felt", - "offset": 0 - }, - "value": { - "cairo_type": "felt", - "offset": 1 - } - }, - "size": 3, - "type": "struct" - }, - "sheet.library.CellUpdated.emit.ImplicitArgs": { - "full_name": "sheet.library.CellUpdated.emit.ImplicitArgs", - "members": { - "range_check_ptr": { - "cairo_type": "felt", - "offset": 1 - }, - "syscall_ptr": { - "cairo_type": "felt*", - "offset": 0 - } - }, - "size": 2, - "type": "struct" - }, - "sheet.library.CellUpdated.emit.Return": { - "cairo_type": "()", - "type": "type_definition" - }, - "sheet.library.CellUpdated.emit.SIZEOF_LOCALS": { - "type": "const", - "value": 2 - }, - "sheet.library.CellUpdated.emit_event": { - "destination": "starkware.starknet.common.syscalls.emit_event", - "type": "alias" - }, - "sheet.library.CellUpdated.memcpy": { - "destination": "starkware.cairo.common.memcpy.memcpy", - "type": "alias" - }, - "sheet.library.DEFAULT_VALUE": { - "type": "const", - "value": 340282366920938463463374607431768211455 - }, - "sheet.library.DictAccess": { - "destination": "starkware.cairo.common.dict.DictAccess", - "type": "alias" - }, - "sheet.library.ERC721": { - "destination": "openzeppelin.token.erc721.library.ERC721", - "type": "alias" - }, - "sheet.library.ERC721Enumerable": { - "destination": "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable", - "type": "alias" - }, - "sheet.library.ERC721_owners": { - "destination": "openzeppelin.token.erc721.library.ERC721_owners", - "type": "alias" - }, - "sheet.library.FALSE": { - "destination": "starkware.cairo.common.bool.FALSE", - "type": "alias" - }, - "sheet.library.HashBuiltin": { - "destination": "starkware.cairo.common.cairo_builtins.HashBuiltin", - "type": "alias" - }, - "sheet.library.ICellRenderer": { - "destination": "interfaces.ICellRenderer", - "type": "alias" - }, - "sheet.library.RC_BOUND": { - "destination": "starkware.cairo.common.math_cmp.RC_BOUND", - "type": "alias" - }, - "sheet.library.SHOULD_RENDER_FLAG": { - "type": "const", - "value": 2 - }, - "sheet.library.Sheet": { - "type": "namespace" - }, - "sheet.library.Sheet.Args": { - "full_name": "sheet.library.Sheet.Args", - "members": {}, - "size": 0, - "type": "struct" - }, - "sheet.library.Sheet.ImplicitArgs": { - "full_name": "sheet.library.Sheet.ImplicitArgs", - "members": {}, - "size": 0, - "type": "struct" - }, - "sheet.library.Sheet.Return": { - "cairo_type": "()", - "type": "type_definition" - }, - "sheet.library.Sheet.SIZEOF_LOCALS": { - "type": "const", - "value": 0 - }, - "sheet.library.Sheet.close_mint": { - "decorators": [], - "pc": 3157, - "type": "function" - }, - "sheet.library.Sheet.close_mint.Args": { - "full_name": "sheet.library.Sheet.close_mint.Args", - "members": {}, - "size": 0, - "type": "struct" - }, - "sheet.library.Sheet.close_mint.ImplicitArgs": { - "full_name": "sheet.library.Sheet.close_mint.ImplicitArgs", - "members": { - "pedersen_ptr": { - "cairo_type": "starkware.cairo.common.cairo_builtins.HashBuiltin*", - "offset": 1 - }, - "range_check_ptr": { - "cairo_type": "felt", - "offset": 2 - }, - "syscall_ptr": { - "cairo_type": "felt*", - "offset": 0 - } - }, - "size": 3, - "type": "struct" - }, - "sheet.library.Sheet.close_mint.Return": { - "cairo_type": "()", - "type": "type_definition" - }, - "sheet.library.Sheet.close_mint.SIZEOF_LOCALS": { - "type": "const", - "value": 0 - }, - "sheet.library.Sheet.get_cell": { - "decorators": [], - "pc": 2915, - "type": "function" - }, - "sheet.library.Sheet.get_cell.Args": { - "full_name": "sheet.library.Sheet.get_cell.Args", - "members": { - "token_id": { - "cairo_type": "felt", - "offset": 0 - } - }, - "size": 1, - "type": "struct" - }, - "sheet.library.Sheet.get_cell.ImplicitArgs": { - "full_name": "sheet.library.Sheet.get_cell.ImplicitArgs", - "members": { - "pedersen_ptr": { - "cairo_type": "starkware.cairo.common.cairo_builtins.HashBuiltin*", - "offset": 1 - }, - "range_check_ptr": { - "cairo_type": "felt", - "offset": 2 - }, - "syscall_ptr": { - "cairo_type": "felt*", - "offset": 0 - } - }, - "size": 3, - "type": "struct" - }, - "sheet.library.Sheet.get_cell.Return": { - "cairo_type": "(contract_address: felt, value: felt, calldata_len: felt, calldata: felt*)", - "type": "type_definition" - }, - "sheet.library.Sheet.get_cell.SIZEOF_LOCALS": { - "type": "const", - "value": 4 - }, - "sheet.library.Sheet.mint": { - "decorators": [], - "pc": 3052, - "type": "function" - }, - "sheet.library.Sheet.mint.Args": { - "full_name": "sheet.library.Sheet.mint.Args", - "members": { - "proof": { - "cairo_type": "felt*", - "offset": 3 - }, - "proof_len": { - "cairo_type": "felt", - "offset": 2 - }, - "token_id": { - "cairo_type": "starkware.cairo.common.uint256.Uint256", - "offset": 0 - } - }, - "size": 4, - "type": "struct" - }, - "sheet.library.Sheet.mint.ImplicitArgs": { - "full_name": "sheet.library.Sheet.mint.ImplicitArgs", - "members": { - "pedersen_ptr": { - "cairo_type": "starkware.cairo.common.cairo_builtins.HashBuiltin*", - "offset": 0 - }, - "range_check_ptr": { - "cairo_type": "felt", - "offset": 2 - }, - "syscall_ptr": { - "cairo_type": "felt*", - "offset": 1 - } - }, - "size": 3, - "type": "struct" - }, - "sheet.library.Sheet.mint.Return": { - "cairo_type": "()", - "type": "type_definition" - }, - "sheet.library.Sheet.mint.SIZEOF_LOCALS": { - "type": "const", - "value": 0 - }, - "sheet.library.Sheet.open_mint": { - "decorators": [], - "pc": 3149, - "type": "function" - }, - "sheet.library.Sheet.open_mint.Args": { - "full_name": "sheet.library.Sheet.open_mint.Args", - "members": {}, - "size": 0, - "type": "struct" - }, - "sheet.library.Sheet.open_mint.ImplicitArgs": { - "full_name": "sheet.library.Sheet.open_mint.ImplicitArgs", - "members": { - "pedersen_ptr": { - "cairo_type": "starkware.cairo.common.cairo_builtins.HashBuiltin*", - "offset": 1 - }, - "range_check_ptr": { - "cairo_type": "felt", - "offset": 2 - }, - "syscall_ptr": { - "cairo_type": "felt*", - "offset": 0 - } - }, - "size": 3, - "type": "struct" - }, - "sheet.library.Sheet.open_mint.Return": { - "cairo_type": "()", - "type": "type_definition" - }, - "sheet.library.Sheet.open_mint.SIZEOF_LOCALS": { - "type": "const", - "value": 0 - }, - "sheet.library.Sheet.render_cell": { - "decorators": [], - "pc": 2970, - "type": "function" - }, - "sheet.library.Sheet.render_cell.Args": { - "full_name": "sheet.library.Sheet.render_cell.Args", - "members": { - "token_id": { - "cairo_type": "felt", - "offset": 0 - } - }, - "size": 1, - "type": "struct" - }, - "sheet.library.Sheet.render_cell.ImplicitArgs": { - "full_name": "sheet.library.Sheet.render_cell.ImplicitArgs", - "members": { - "pedersen_ptr": { - "cairo_type": "starkware.cairo.common.cairo_builtins.HashBuiltin*", - "offset": 1 - }, - "range_check_ptr": { - "cairo_type": "felt", - "offset": 2 - }, - "rendered_cells": { - "cairo_type": "starkware.cairo.common.dict_access.DictAccess*", - "offset": 3 - }, - "syscall_ptr": { - "cairo_type": "felt*", - "offset": 0 - } - }, - "size": 4, - "type": "struct" - }, - "sheet.library.Sheet.render_cell.Return": { - "cairo_type": "(cell: sheet.library.CellRendered)", - "type": "type_definition" - }, - "sheet.library.Sheet.render_cell.SIZEOF_LOCALS": { - "type": "const", - "value": 0 - }, - "sheet.library.Sheet.render_grid": { - "decorators": [], - "pc": 2995, - "type": "function" - }, - "sheet.library.Sheet.render_grid.Args": { - "full_name": "sheet.library.Sheet.render_grid.Args", - "members": { - "index": { - "cairo_type": "felt", - "offset": 0 - } - }, - "size": 1, - "type": "struct" - }, - "sheet.library.Sheet.render_grid.ImplicitArgs": { - "full_name": "sheet.library.Sheet.render_grid.ImplicitArgs", - "members": { - "cells": { - "cairo_type": "sheet.library.CellRendered*", - "offset": 3 - }, - "pedersen_ptr": { - "cairo_type": "starkware.cairo.common.cairo_builtins.HashBuiltin*", - "offset": 1 - }, - "range_check_ptr": { - "cairo_type": "felt", - "offset": 2 - }, - "rendered_cells": { - "cairo_type": "starkware.cairo.common.dict_access.DictAccess*", - "offset": 4 - }, - "stop": { - "cairo_type": "felt", - "offset": 5 - }, - "syscall_ptr": { - "cairo_type": "felt*", - "offset": 0 - } - }, - "size": 6, - "type": "struct" - }, - "sheet.library.Sheet.render_grid.Return": { - "cairo_type": "()", - "type": "type_definition" - }, - "sheet.library.Sheet.render_grid.SIZEOF_LOCALS": { - "type": "const", - "value": 0 - }, - "sheet.library.Sheet.set_cell": { - "decorators": [], - "pc": 2885, - "type": "function" - }, - "sheet.library.Sheet.set_cell.Args": { - "full_name": "sheet.library.Sheet.set_cell.Args", - "members": { - "cell_calldata": { - "cairo_type": "felt*", - "offset": 4 - }, - "cell_calldata_len": { - "cairo_type": "felt", - "offset": 3 - }, - "contract_address": { - "cairo_type": "felt", - "offset": 1 - }, - "token_id": { - "cairo_type": "felt", - "offset": 0 - }, - "value": { - "cairo_type": "felt", - "offset": 2 - } - }, - "size": 5, - "type": "struct" - }, - "sheet.library.Sheet.set_cell.ImplicitArgs": { - "full_name": "sheet.library.Sheet.set_cell.ImplicitArgs", - "members": { - "pedersen_ptr": { - "cairo_type": "starkware.cairo.common.cairo_builtins.HashBuiltin*", - "offset": 1 - }, - "range_check_ptr": { - "cairo_type": "felt", - "offset": 2 - }, - "syscall_ptr": { - "cairo_type": "felt*", - "offset": 0 - } - }, - "size": 3, - "type": "struct" - }, - "sheet.library.Sheet.set_cell.Return": { - "cairo_type": "()", - "type": "type_definition" - }, - "sheet.library.Sheet.set_cell.SIZEOF_LOCALS": { - "type": "const", - "value": 1 - }, - "sheet.library.Sheet.token_uri": { - "decorators": [], - "pc": 3089, - "type": "function" - }, - "sheet.library.Sheet.token_uri.Args": { - "full_name": "sheet.library.Sheet.token_uri.Args", - "members": { - "token_id": { - "cairo_type": "starkware.cairo.common.uint256.Uint256", - "offset": 0 - } - }, - "size": 2, - "type": "struct" - }, - "sheet.library.Sheet.token_uri.ImplicitArgs": { - "full_name": "sheet.library.Sheet.token_uri.ImplicitArgs", - "members": { - "pedersen_ptr": { - "cairo_type": "starkware.cairo.common.cairo_builtins.HashBuiltin*", - "offset": 0 - }, - "range_check_ptr": { - "cairo_type": "felt", - "offset": 2 - }, - "syscall_ptr": { - "cairo_type": "felt*", - "offset": 1 - } - }, - "size": 3, - "type": "struct" - }, - "sheet.library.Sheet.token_uri.Return": { - "cairo_type": "(token_uri_len: felt, token_uri: felt*)", - "type": "type_definition" - }, - "sheet.library.Sheet.token_uri.SIZEOF_LOCALS": { - "type": "const", - "value": 4 - }, - "sheet.library.Sheet_cell": { - "type": "namespace" - }, - "sheet.library.Sheet_cell.Args": { - "full_name": "sheet.library.Sheet_cell.Args", - "members": {}, - "size": 0, - "type": "struct" - }, - "sheet.library.Sheet_cell.HashBuiltin": { - "destination": "starkware.cairo.common.cairo_builtins.HashBuiltin", - "type": "alias" - }, - "sheet.library.Sheet_cell.ImplicitArgs": { - "full_name": "sheet.library.Sheet_cell.ImplicitArgs", - "members": {}, - "size": 0, - "type": "struct" - }, - "sheet.library.Sheet_cell.Return": { - "cairo_type": "()", - "type": "type_definition" - }, - "sheet.library.Sheet_cell.SIZEOF_LOCALS": { - "type": "const", - "value": 0 - }, - "sheet.library.Sheet_cell.addr": { - "decorators": [], - "pc": 2746, - "type": "function" - }, - "sheet.library.Sheet_cell.addr.Args": { - "full_name": "sheet.library.Sheet_cell.addr.Args", - "members": { - "id": { - "cairo_type": "felt", - "offset": 0 - } - }, - "size": 1, - "type": "struct" - }, - "sheet.library.Sheet_cell.addr.ImplicitArgs": { - "full_name": "sheet.library.Sheet_cell.addr.ImplicitArgs", - "members": { - "pedersen_ptr": { - "cairo_type": "starkware.cairo.common.cairo_builtins.HashBuiltin*", - "offset": 0 - }, - "range_check_ptr": { - "cairo_type": "felt", - "offset": 1 - } - }, - "size": 2, - "type": "struct" - }, - "sheet.library.Sheet_cell.addr.Return": { - "cairo_type": "(res: felt)", - "type": "type_definition" - }, - "sheet.library.Sheet_cell.addr.SIZEOF_LOCALS": { - "type": "const", - "value": 0 - }, - "sheet.library.Sheet_cell.hash2": { - "destination": "starkware.cairo.common.hash.hash2", - "type": "alias" - }, - "sheet.library.Sheet_cell.normalize_address": { - "destination": "starkware.starknet.common.storage.normalize_address", - "type": "alias" - }, - "sheet.library.Sheet_cell.read": { - "decorators": [], - "pc": 2760, - "type": "function" - }, - "sheet.library.Sheet_cell.read.Args": { - "full_name": "sheet.library.Sheet_cell.read.Args", - "members": { - "id": { - "cairo_type": "felt", - "offset": 0 - } - }, - "size": 1, - "type": "struct" - }, - "sheet.library.Sheet_cell.read.ImplicitArgs": { - "full_name": "sheet.library.Sheet_cell.read.ImplicitArgs", - "members": { - "pedersen_ptr": { - "cairo_type": "starkware.cairo.common.cairo_builtins.HashBuiltin*", - "offset": 1 - }, - "range_check_ptr": { - "cairo_type": "felt", - "offset": 2 - }, - "syscall_ptr": { - "cairo_type": "felt*", - "offset": 0 - } - }, - "size": 3, - "type": "struct" - }, - "sheet.library.Sheet_cell.read.Return": { - "cairo_type": "(cell_data: sheet.library.CellData)", - "type": "type_definition" - }, - "sheet.library.Sheet_cell.read.SIZEOF_LOCALS": { - "type": "const", - "value": 0 - }, - "sheet.library.Sheet_cell.storage_read": { - "destination": "starkware.starknet.common.syscalls.storage_read", - "type": "alias" - }, - "sheet.library.Sheet_cell.storage_write": { - "destination": "starkware.starknet.common.syscalls.storage_write", - "type": "alias" - }, - "sheet.library.Sheet_cell.write": { - "decorators": [], - "pc": 2786, - "type": "function" - }, - "sheet.library.Sheet_cell.write.Args": { - "full_name": "sheet.library.Sheet_cell.write.Args", - "members": { - "id": { - "cairo_type": "felt", - "offset": 0 - }, - "value": { - "cairo_type": "sheet.library.CellData", - "offset": 1 - } - }, - "size": 4, - "type": "struct" - }, - "sheet.library.Sheet_cell.write.ImplicitArgs": { - "full_name": "sheet.library.Sheet_cell.write.ImplicitArgs", - "members": { - "pedersen_ptr": { - "cairo_type": "starkware.cairo.common.cairo_builtins.HashBuiltin*", - "offset": 1 - }, - "range_check_ptr": { - "cairo_type": "felt", - "offset": 2 - }, - "syscall_ptr": { - "cairo_type": "felt*", - "offset": 0 - } - }, - "size": 3, - "type": "struct" - }, - "sheet.library.Sheet_cell.write.Return": { - "cairo_type": "()", - "type": "type_definition" - }, - "sheet.library.Sheet_cell.write.SIZEOF_LOCALS": { - "type": "const", - "value": 0 - }, - "sheet.library.Sheet_cell_calldata": { - "type": "namespace" - }, - "sheet.library.Sheet_cell_calldata.Args": { - "full_name": "sheet.library.Sheet_cell_calldata.Args", - "members": {}, - "size": 0, - "type": "struct" - }, - "sheet.library.Sheet_cell_calldata.HashBuiltin": { - "destination": "starkware.cairo.common.cairo_builtins.HashBuiltin", - "type": "alias" - }, - "sheet.library.Sheet_cell_calldata.ImplicitArgs": { - "full_name": "sheet.library.Sheet_cell_calldata.ImplicitArgs", - "members": {}, - "size": 0, - "type": "struct" - }, - "sheet.library.Sheet_cell_calldata.Return": { - "cairo_type": "()", - "type": "type_definition" - }, - "sheet.library.Sheet_cell_calldata.SIZEOF_LOCALS": { - "type": "const", - "value": 0 - }, - "sheet.library.Sheet_cell_calldata.addr": { - "decorators": [], - "pc": 2809, - "type": "function" - }, - "sheet.library.Sheet_cell_calldata.addr.Args": { - "full_name": "sheet.library.Sheet_cell_calldata.addr.Args", - "members": { - "id": { - "cairo_type": "felt", - "offset": 0 - }, - "index": { - "cairo_type": "felt", - "offset": 1 - } - }, - "size": 2, - "type": "struct" - }, - "sheet.library.Sheet_cell_calldata.addr.ImplicitArgs": { - "full_name": "sheet.library.Sheet_cell_calldata.addr.ImplicitArgs", - "members": { - "pedersen_ptr": { - "cairo_type": "starkware.cairo.common.cairo_builtins.HashBuiltin*", - "offset": 0 - }, - "range_check_ptr": { - "cairo_type": "felt", - "offset": 1 - } - }, - "size": 2, - "type": "struct" - }, - "sheet.library.Sheet_cell_calldata.addr.Return": { - "cairo_type": "(res: felt)", - "type": "type_definition" - }, - "sheet.library.Sheet_cell_calldata.addr.SIZEOF_LOCALS": { - "type": "const", - "value": 0 - }, - "sheet.library.Sheet_cell_calldata.hash2": { - "destination": "starkware.cairo.common.hash.hash2", - "type": "alias" - }, - "sheet.library.Sheet_cell_calldata.normalize_address": { - "destination": "starkware.starknet.common.storage.normalize_address", - "type": "alias" - }, - "sheet.library.Sheet_cell_calldata.read": { - "decorators": [], - "pc": 2826, - "type": "function" - }, - "sheet.library.Sheet_cell_calldata.read.Args": { - "full_name": "sheet.library.Sheet_cell_calldata.read.Args", - "members": { - "id": { - "cairo_type": "felt", - "offset": 0 - }, - "index": { - "cairo_type": "felt", - "offset": 1 - } - }, - "size": 2, - "type": "struct" - }, - "sheet.library.Sheet_cell_calldata.read.ImplicitArgs": { - "full_name": "sheet.library.Sheet_cell_calldata.read.ImplicitArgs", - "members": { - "pedersen_ptr": { - "cairo_type": "starkware.cairo.common.cairo_builtins.HashBuiltin*", - "offset": 1 - }, - "range_check_ptr": { - "cairo_type": "felt", - "offset": 2 - }, - "syscall_ptr": { - "cairo_type": "felt*", - "offset": 0 - } - }, - "size": 3, - "type": "struct" - }, - "sheet.library.Sheet_cell_calldata.read.Return": { - "cairo_type": "(value: felt)", - "type": "type_definition" - }, - "sheet.library.Sheet_cell_calldata.read.SIZEOF_LOCALS": { - "type": "const", - "value": 0 - }, - "sheet.library.Sheet_cell_calldata.storage_read": { - "destination": "starkware.starknet.common.syscalls.storage_read", - "type": "alias" - }, - "sheet.library.Sheet_cell_calldata.storage_write": { - "destination": "starkware.starknet.common.syscalls.storage_write", - "type": "alias" - }, - "sheet.library.Sheet_cell_calldata.write": { - "decorators": [], - "pc": 2841, - "type": "function" - }, - "sheet.library.Sheet_cell_calldata.write.Args": { - "full_name": "sheet.library.Sheet_cell_calldata.write.Args", - "members": { - "id": { - "cairo_type": "felt", - "offset": 0 - }, - "index": { - "cairo_type": "felt", - "offset": 1 - }, - "value": { - "cairo_type": "felt", - "offset": 2 - } - }, - "size": 3, - "type": "struct" - }, - "sheet.library.Sheet_cell_calldata.write.ImplicitArgs": { - "full_name": "sheet.library.Sheet_cell_calldata.write.ImplicitArgs", - "members": { - "pedersen_ptr": { - "cairo_type": "starkware.cairo.common.cairo_builtins.HashBuiltin*", - "offset": 1 - }, - "range_check_ptr": { - "cairo_type": "felt", - "offset": 2 - }, - "syscall_ptr": { - "cairo_type": "felt*", - "offset": 0 - } - }, - "size": 3, - "type": "struct" - }, - "sheet.library.Sheet_cell_calldata.write.Return": { - "cairo_type": "()", - "type": "type_definition" - }, - "sheet.library.Sheet_cell_calldata.write.SIZEOF_LOCALS": { - "type": "const", - "value": 0 - }, - "sheet.library.Sheet_cell_price": { - "type": "namespace" - }, - "sheet.library.Sheet_cell_price.Args": { - "full_name": "sheet.library.Sheet_cell_price.Args", - "members": {}, - "size": 0, - "type": "struct" - }, - "sheet.library.Sheet_cell_price.HashBuiltin": { - "destination": "starkware.cairo.common.cairo_builtins.HashBuiltin", - "type": "alias" - }, - "sheet.library.Sheet_cell_price.ImplicitArgs": { - "full_name": "sheet.library.Sheet_cell_price.ImplicitArgs", - "members": {}, - "size": 0, - "type": "struct" - }, - "sheet.library.Sheet_cell_price.Return": { - "cairo_type": "()", - "type": "type_definition" - }, - "sheet.library.Sheet_cell_price.SIZEOF_LOCALS": { - "type": "const", - "value": 0 - }, - "sheet.library.Sheet_cell_price.hash2": { - "destination": "starkware.cairo.common.hash.hash2", - "type": "alias" - }, - "sheet.library.Sheet_cell_price.normalize_address": { - "destination": "starkware.starknet.common.storage.normalize_address", - "type": "alias" - }, - "sheet.library.Sheet_cell_price.storage_read": { - "destination": "starkware.starknet.common.syscalls.storage_read", - "type": "alias" - }, - "sheet.library.Sheet_cell_price.storage_write": { - "destination": "starkware.starknet.common.syscalls.storage_write", - "type": "alias" - }, - "sheet.library.Sheet_cell_renderer": { - "type": "namespace" - }, - "sheet.library.Sheet_cell_renderer.Args": { - "full_name": "sheet.library.Sheet_cell_renderer.Args", - "members": {}, - "size": 0, - "type": "struct" - }, - "sheet.library.Sheet_cell_renderer.HashBuiltin": { - "destination": "starkware.cairo.common.cairo_builtins.HashBuiltin", - "type": "alias" - }, - "sheet.library.Sheet_cell_renderer.ImplicitArgs": { - "full_name": "sheet.library.Sheet_cell_renderer.ImplicitArgs", - "members": {}, - "size": 0, - "type": "struct" - }, - "sheet.library.Sheet_cell_renderer.Return": { - "cairo_type": "()", - "type": "type_definition" - }, - "sheet.library.Sheet_cell_renderer.SIZEOF_LOCALS": { - "type": "const", - "value": 0 - }, - "sheet.library.Sheet_cell_renderer.addr": { - "decorators": [], - "pc": 2656, - "type": "function" - }, - "sheet.library.Sheet_cell_renderer.addr.Args": { - "full_name": "sheet.library.Sheet_cell_renderer.addr.Args", - "members": {}, - "size": 0, - "type": "struct" - }, - "sheet.library.Sheet_cell_renderer.addr.ImplicitArgs": { - "full_name": "sheet.library.Sheet_cell_renderer.addr.ImplicitArgs", - "members": { - "pedersen_ptr": { - "cairo_type": "starkware.cairo.common.cairo_builtins.HashBuiltin*", - "offset": 0 - }, - "range_check_ptr": { - "cairo_type": "felt", - "offset": 1 - } - }, - "size": 2, - "type": "struct" - }, - "sheet.library.Sheet_cell_renderer.addr.Return": { - "cairo_type": "(res: felt)", - "type": "type_definition" - }, - "sheet.library.Sheet_cell_renderer.addr.SIZEOF_LOCALS": { - "type": "const", - "value": 0 - }, - "sheet.library.Sheet_cell_renderer.hash2": { - "destination": "starkware.cairo.common.hash.hash2", - "type": "alias" - }, - "sheet.library.Sheet_cell_renderer.normalize_address": { - "destination": "starkware.starknet.common.storage.normalize_address", - "type": "alias" - }, - "sheet.library.Sheet_cell_renderer.read": { - "decorators": [], - "pc": 2661, - "type": "function" - }, - "sheet.library.Sheet_cell_renderer.read.Args": { - "full_name": "sheet.library.Sheet_cell_renderer.read.Args", - "members": {}, - "size": 0, - "type": "struct" - }, - "sheet.library.Sheet_cell_renderer.read.ImplicitArgs": { - "full_name": "sheet.library.Sheet_cell_renderer.read.ImplicitArgs", - "members": { - "pedersen_ptr": { - "cairo_type": "starkware.cairo.common.cairo_builtins.HashBuiltin*", - "offset": 1 - }, - "range_check_ptr": { - "cairo_type": "felt", - "offset": 2 - }, - "syscall_ptr": { - "cairo_type": "felt*", - "offset": 0 - } - }, - "size": 3, - "type": "struct" - }, - "sheet.library.Sheet_cell_renderer.read.Return": { - "cairo_type": "(address: felt)", - "type": "type_definition" - }, - "sheet.library.Sheet_cell_renderer.read.SIZEOF_LOCALS": { - "type": "const", - "value": 0 - }, - "sheet.library.Sheet_cell_renderer.storage_read": { - "destination": "starkware.starknet.common.syscalls.storage_read", - "type": "alias" - }, - "sheet.library.Sheet_cell_renderer.storage_write": { - "destination": "starkware.starknet.common.syscalls.storage_write", - "type": "alias" - }, - "sheet.library.Sheet_cell_renderer.write": { - "decorators": [], - "pc": 2674, - "type": "function" - }, - "sheet.library.Sheet_cell_renderer.write.Args": { - "full_name": "sheet.library.Sheet_cell_renderer.write.Args", - "members": { - "value": { - "cairo_type": "felt", - "offset": 0 - } - }, - "size": 1, - "type": "struct" - }, - "sheet.library.Sheet_cell_renderer.write.ImplicitArgs": { - "full_name": "sheet.library.Sheet_cell_renderer.write.ImplicitArgs", - "members": { - "pedersen_ptr": { - "cairo_type": "starkware.cairo.common.cairo_builtins.HashBuiltin*", - "offset": 1 - }, - "range_check_ptr": { - "cairo_type": "felt", - "offset": 2 - }, - "syscall_ptr": { - "cairo_type": "felt*", - "offset": 0 - } - }, - "size": 3, - "type": "struct" - }, - "sheet.library.Sheet_cell_renderer.write.Return": { - "cairo_type": "()", - "type": "type_definition" - }, - "sheet.library.Sheet_cell_renderer.write.SIZEOF_LOCALS": { - "type": "const", - "value": 0 - }, - "sheet.library.Sheet_contract_uri": { - "type": "namespace" - }, - "sheet.library.Sheet_contract_uri.Args": { - "full_name": "sheet.library.Sheet_contract_uri.Args", - "members": {}, - "size": 0, - "type": "struct" - }, - "sheet.library.Sheet_contract_uri.HashBuiltin": { - "destination": "starkware.cairo.common.cairo_builtins.HashBuiltin", - "type": "alias" - }, - "sheet.library.Sheet_contract_uri.ImplicitArgs": { - "full_name": "sheet.library.Sheet_contract_uri.ImplicitArgs", - "members": {}, - "size": 0, - "type": "struct" - }, - "sheet.library.Sheet_contract_uri.Return": { - "cairo_type": "()", - "type": "type_definition" - }, - "sheet.library.Sheet_contract_uri.SIZEOF_LOCALS": { - "type": "const", - "value": 0 - }, - "sheet.library.Sheet_contract_uri.hash2": { - "destination": "starkware.cairo.common.hash.hash2", - "type": "alias" - }, - "sheet.library.Sheet_contract_uri.normalize_address": { - "destination": "starkware.starknet.common.storage.normalize_address", - "type": "alias" - }, - "sheet.library.Sheet_contract_uri.storage_read": { - "destination": "starkware.starknet.common.syscalls.storage_read", - "type": "alias" - }, - "sheet.library.Sheet_contract_uri.storage_write": { - "destination": "starkware.starknet.common.syscalls.storage_write", - "type": "alias" - }, - "sheet.library.Sheet_contract_uri_len": { - "type": "namespace" - }, - "sheet.library.Sheet_contract_uri_len.Args": { - "full_name": "sheet.library.Sheet_contract_uri_len.Args", - "members": {}, - "size": 0, - "type": "struct" - }, - "sheet.library.Sheet_contract_uri_len.HashBuiltin": { - "destination": "starkware.cairo.common.cairo_builtins.HashBuiltin", - "type": "alias" - }, - "sheet.library.Sheet_contract_uri_len.ImplicitArgs": { - "full_name": "sheet.library.Sheet_contract_uri_len.ImplicitArgs", - "members": {}, - "size": 0, - "type": "struct" - }, - "sheet.library.Sheet_contract_uri_len.Return": { - "cairo_type": "()", - "type": "type_definition" - }, - "sheet.library.Sheet_contract_uri_len.SIZEOF_LOCALS": { - "type": "const", - "value": 0 - }, - "sheet.library.Sheet_contract_uri_len.hash2": { - "destination": "starkware.cairo.common.hash.hash2", - "type": "alias" - }, - "sheet.library.Sheet_contract_uri_len.normalize_address": { - "destination": "starkware.starknet.common.storage.normalize_address", - "type": "alias" - }, - "sheet.library.Sheet_contract_uri_len.storage_read": { - "destination": "starkware.starknet.common.syscalls.storage_read", - "type": "alias" - }, - "sheet.library.Sheet_contract_uri_len.storage_write": { - "destination": "starkware.starknet.common.syscalls.storage_write", - "type": "alias" - }, - "sheet.library.Sheet_is_mint_open": { - "type": "namespace" - }, - "sheet.library.Sheet_is_mint_open.Args": { - "full_name": "sheet.library.Sheet_is_mint_open.Args", - "members": {}, - "size": 0, - "type": "struct" - }, - "sheet.library.Sheet_is_mint_open.HashBuiltin": { - "destination": "starkware.cairo.common.cairo_builtins.HashBuiltin", - "type": "alias" - }, - "sheet.library.Sheet_is_mint_open.ImplicitArgs": { - "full_name": "sheet.library.Sheet_is_mint_open.ImplicitArgs", - "members": {}, - "size": 0, - "type": "struct" - }, - "sheet.library.Sheet_is_mint_open.Return": { - "cairo_type": "()", - "type": "type_definition" - }, - "sheet.library.Sheet_is_mint_open.SIZEOF_LOCALS": { - "type": "const", - "value": 0 - }, - "sheet.library.Sheet_is_mint_open.addr": { - "decorators": [], - "pc": 2855, - "type": "function" - }, - "sheet.library.Sheet_is_mint_open.addr.Args": { - "full_name": "sheet.library.Sheet_is_mint_open.addr.Args", - "members": {}, - "size": 0, - "type": "struct" - }, - "sheet.library.Sheet_is_mint_open.addr.ImplicitArgs": { - "full_name": "sheet.library.Sheet_is_mint_open.addr.ImplicitArgs", - "members": { - "pedersen_ptr": { - "cairo_type": "starkware.cairo.common.cairo_builtins.HashBuiltin*", - "offset": 0 - }, - "range_check_ptr": { - "cairo_type": "felt", - "offset": 1 - } - }, - "size": 2, - "type": "struct" - }, - "sheet.library.Sheet_is_mint_open.addr.Return": { - "cairo_type": "(res: felt)", - "type": "type_definition" - }, - "sheet.library.Sheet_is_mint_open.addr.SIZEOF_LOCALS": { - "type": "const", - "value": 0 - }, - "sheet.library.Sheet_is_mint_open.hash2": { - "destination": "starkware.cairo.common.hash.hash2", - "type": "alias" - }, - "sheet.library.Sheet_is_mint_open.normalize_address": { - "destination": "starkware.starknet.common.storage.normalize_address", - "type": "alias" - }, - "sheet.library.Sheet_is_mint_open.read": { - "decorators": [], - "pc": 2860, - "type": "function" - }, - "sheet.library.Sheet_is_mint_open.read.Args": { - "full_name": "sheet.library.Sheet_is_mint_open.read.Args", - "members": {}, - "size": 0, - "type": "struct" - }, - "sheet.library.Sheet_is_mint_open.read.ImplicitArgs": { - "full_name": "sheet.library.Sheet_is_mint_open.read.ImplicitArgs", - "members": { - "pedersen_ptr": { - "cairo_type": "starkware.cairo.common.cairo_builtins.HashBuiltin*", - "offset": 1 - }, - "range_check_ptr": { - "cairo_type": "felt", - "offset": 2 - }, - "syscall_ptr": { - "cairo_type": "felt*", - "offset": 0 - } - }, - "size": 3, - "type": "struct" - }, - "sheet.library.Sheet_is_mint_open.read.Return": { - "cairo_type": "(res: felt)", - "type": "type_definition" - }, - "sheet.library.Sheet_is_mint_open.read.SIZEOF_LOCALS": { - "type": "const", - "value": 0 - }, - "sheet.library.Sheet_is_mint_open.storage_read": { - "destination": "starkware.starknet.common.syscalls.storage_read", - "type": "alias" - }, - "sheet.library.Sheet_is_mint_open.storage_write": { - "destination": "starkware.starknet.common.syscalls.storage_write", - "type": "alias" - }, - "sheet.library.Sheet_is_mint_open.write": { - "decorators": [], - "pc": 2873, - "type": "function" - }, - "sheet.library.Sheet_is_mint_open.write.Args": { - "full_name": "sheet.library.Sheet_is_mint_open.write.Args", - "members": { - "value": { - "cairo_type": "felt", - "offset": 0 - } - }, - "size": 1, - "type": "struct" - }, - "sheet.library.Sheet_is_mint_open.write.ImplicitArgs": { - "full_name": "sheet.library.Sheet_is_mint_open.write.ImplicitArgs", - "members": { - "pedersen_ptr": { - "cairo_type": "starkware.cairo.common.cairo_builtins.HashBuiltin*", - "offset": 1 - }, - "range_check_ptr": { - "cairo_type": "felt", - "offset": 2 - }, - "syscall_ptr": { - "cairo_type": "felt*", - "offset": 0 - } - }, - "size": 3, - "type": "struct" - }, - "sheet.library.Sheet_is_mint_open.write.Return": { - "cairo_type": "()", - "type": "type_definition" - }, - "sheet.library.Sheet_is_mint_open.write.SIZEOF_LOCALS": { - "type": "const", - "value": 0 - }, - "sheet.library.Sheet_max_per_wallet": { - "type": "namespace" - }, - "sheet.library.Sheet_max_per_wallet.Args": { - "full_name": "sheet.library.Sheet_max_per_wallet.Args", - "members": {}, - "size": 0, - "type": "struct" - }, - "sheet.library.Sheet_max_per_wallet.HashBuiltin": { - "destination": "starkware.cairo.common.cairo_builtins.HashBuiltin", - "type": "alias" - }, - "sheet.library.Sheet_max_per_wallet.ImplicitArgs": { - "full_name": "sheet.library.Sheet_max_per_wallet.ImplicitArgs", - "members": {}, - "size": 0, - "type": "struct" - }, - "sheet.library.Sheet_max_per_wallet.Return": { - "cairo_type": "()", - "type": "type_definition" - }, - "sheet.library.Sheet_max_per_wallet.SIZEOF_LOCALS": { - "type": "const", - "value": 0 - }, - "sheet.library.Sheet_max_per_wallet.addr": { - "decorators": [], - "pc": 2716, - "type": "function" - }, - "sheet.library.Sheet_max_per_wallet.addr.Args": { - "full_name": "sheet.library.Sheet_max_per_wallet.addr.Args", - "members": {}, - "size": 0, - "type": "struct" - }, - "sheet.library.Sheet_max_per_wallet.addr.ImplicitArgs": { - "full_name": "sheet.library.Sheet_max_per_wallet.addr.ImplicitArgs", - "members": { - "pedersen_ptr": { - "cairo_type": "starkware.cairo.common.cairo_builtins.HashBuiltin*", - "offset": 0 - }, - "range_check_ptr": { - "cairo_type": "felt", - "offset": 1 - } - }, - "size": 2, - "type": "struct" - }, - "sheet.library.Sheet_max_per_wallet.addr.Return": { - "cairo_type": "(res: felt)", - "type": "type_definition" - }, - "sheet.library.Sheet_max_per_wallet.addr.SIZEOF_LOCALS": { - "type": "const", - "value": 0 - }, - "sheet.library.Sheet_max_per_wallet.hash2": { - "destination": "starkware.cairo.common.hash.hash2", - "type": "alias" - }, - "sheet.library.Sheet_max_per_wallet.normalize_address": { - "destination": "starkware.starknet.common.storage.normalize_address", - "type": "alias" - }, - "sheet.library.Sheet_max_per_wallet.read": { - "decorators": [], - "pc": 2721, - "type": "function" - }, - "sheet.library.Sheet_max_per_wallet.read.Args": { - "full_name": "sheet.library.Sheet_max_per_wallet.read.Args", - "members": {}, - "size": 0, - "type": "struct" - }, - "sheet.library.Sheet_max_per_wallet.read.ImplicitArgs": { - "full_name": "sheet.library.Sheet_max_per_wallet.read.ImplicitArgs", - "members": { - "pedersen_ptr": { - "cairo_type": "starkware.cairo.common.cairo_builtins.HashBuiltin*", - "offset": 1 - }, - "range_check_ptr": { - "cairo_type": "felt", - "offset": 2 - }, - "syscall_ptr": { - "cairo_type": "felt*", - "offset": 0 - } - }, - "size": 3, - "type": "struct" - }, - "sheet.library.Sheet_max_per_wallet.read.Return": { - "cairo_type": "(max: felt)", - "type": "type_definition" - }, - "sheet.library.Sheet_max_per_wallet.read.SIZEOF_LOCALS": { - "type": "const", - "value": 0 - }, - "sheet.library.Sheet_max_per_wallet.storage_read": { - "destination": "starkware.starknet.common.syscalls.storage_read", - "type": "alias" - }, - "sheet.library.Sheet_max_per_wallet.storage_write": { - "destination": "starkware.starknet.common.syscalls.storage_write", - "type": "alias" - }, - "sheet.library.Sheet_max_per_wallet.write": { - "decorators": [], - "pc": 2734, - "type": "function" - }, - "sheet.library.Sheet_max_per_wallet.write.Args": { - "full_name": "sheet.library.Sheet_max_per_wallet.write.Args", - "members": { - "value": { - "cairo_type": "felt", - "offset": 0 - } - }, - "size": 1, - "type": "struct" - }, - "sheet.library.Sheet_max_per_wallet.write.ImplicitArgs": { - "full_name": "sheet.library.Sheet_max_per_wallet.write.ImplicitArgs", - "members": { - "pedersen_ptr": { - "cairo_type": "starkware.cairo.common.cairo_builtins.HashBuiltin*", - "offset": 1 - }, - "range_check_ptr": { - "cairo_type": "felt", - "offset": 2 - }, - "syscall_ptr": { - "cairo_type": "felt*", - "offset": 0 - } - }, - "size": 3, - "type": "struct" - }, - "sheet.library.Sheet_max_per_wallet.write.Return": { - "cairo_type": "()", - "type": "type_definition" - }, - "sheet.library.Sheet_max_per_wallet.write.SIZEOF_LOCALS": { - "type": "const", - "value": 0 - }, - "sheet.library.Sheet_merkle_root": { - "type": "namespace" - }, - "sheet.library.Sheet_merkle_root.Args": { - "full_name": "sheet.library.Sheet_merkle_root.Args", - "members": {}, - "size": 0, - "type": "struct" - }, - "sheet.library.Sheet_merkle_root.HashBuiltin": { - "destination": "starkware.cairo.common.cairo_builtins.HashBuiltin", - "type": "alias" - }, - "sheet.library.Sheet_merkle_root.ImplicitArgs": { - "full_name": "sheet.library.Sheet_merkle_root.ImplicitArgs", - "members": {}, - "size": 0, - "type": "struct" - }, - "sheet.library.Sheet_merkle_root.Return": { - "cairo_type": "()", - "type": "type_definition" - }, - "sheet.library.Sheet_merkle_root.SIZEOF_LOCALS": { - "type": "const", - "value": 0 - }, - "sheet.library.Sheet_merkle_root.addr": { - "decorators": [], - "pc": 2686, - "type": "function" - }, - "sheet.library.Sheet_merkle_root.addr.Args": { - "full_name": "sheet.library.Sheet_merkle_root.addr.Args", - "members": {}, - "size": 0, - "type": "struct" - }, - "sheet.library.Sheet_merkle_root.addr.ImplicitArgs": { - "full_name": "sheet.library.Sheet_merkle_root.addr.ImplicitArgs", - "members": { - "pedersen_ptr": { - "cairo_type": "starkware.cairo.common.cairo_builtins.HashBuiltin*", - "offset": 0 - }, - "range_check_ptr": { - "cairo_type": "felt", - "offset": 1 - } - }, - "size": 2, - "type": "struct" - }, - "sheet.library.Sheet_merkle_root.addr.Return": { - "cairo_type": "(res: felt)", - "type": "type_definition" - }, - "sheet.library.Sheet_merkle_root.addr.SIZEOF_LOCALS": { - "type": "const", - "value": 0 - }, - "sheet.library.Sheet_merkle_root.hash2": { - "destination": "starkware.cairo.common.hash.hash2", - "type": "alias" - }, - "sheet.library.Sheet_merkle_root.normalize_address": { - "destination": "starkware.starknet.common.storage.normalize_address", - "type": "alias" - }, - "sheet.library.Sheet_merkle_root.read": { - "decorators": [], - "pc": 2691, - "type": "function" - }, - "sheet.library.Sheet_merkle_root.read.Args": { - "full_name": "sheet.library.Sheet_merkle_root.read.Args", - "members": {}, - "size": 0, - "type": "struct" - }, - "sheet.library.Sheet_merkle_root.read.ImplicitArgs": { - "full_name": "sheet.library.Sheet_merkle_root.read.ImplicitArgs", - "members": { - "pedersen_ptr": { - "cairo_type": "starkware.cairo.common.cairo_builtins.HashBuiltin*", - "offset": 1 - }, - "range_check_ptr": { - "cairo_type": "felt", - "offset": 2 - }, - "syscall_ptr": { - "cairo_type": "felt*", - "offset": 0 - } - }, - "size": 3, - "type": "struct" - }, - "sheet.library.Sheet_merkle_root.read.Return": { - "cairo_type": "(root: felt)", - "type": "type_definition" - }, - "sheet.library.Sheet_merkle_root.read.SIZEOF_LOCALS": { - "type": "const", - "value": 0 - }, - "sheet.library.Sheet_merkle_root.storage_read": { - "destination": "starkware.starknet.common.syscalls.storage_read", - "type": "alias" - }, - "sheet.library.Sheet_merkle_root.storage_write": { - "destination": "starkware.starknet.common.syscalls.storage_write", - "type": "alias" - }, - "sheet.library.Sheet_merkle_root.write": { - "decorators": [], - "pc": 2704, - "type": "function" - }, - "sheet.library.Sheet_merkle_root.write.Args": { - "full_name": "sheet.library.Sheet_merkle_root.write.Args", - "members": { - "value": { - "cairo_type": "felt", - "offset": 0 - } - }, - "size": 1, - "type": "struct" - }, - "sheet.library.Sheet_merkle_root.write.ImplicitArgs": { - "full_name": "sheet.library.Sheet_merkle_root.write.ImplicitArgs", - "members": { - "pedersen_ptr": { - "cairo_type": "starkware.cairo.common.cairo_builtins.HashBuiltin*", - "offset": 1 - }, - "range_check_ptr": { - "cairo_type": "felt", - "offset": 2 - }, - "syscall_ptr": { - "cairo_type": "felt*", - "offset": 0 - } - }, - "size": 3, - "type": "struct" - }, - "sheet.library.Sheet_merkle_root.write.Return": { - "cairo_type": "()", - "type": "type_definition" - }, - "sheet.library.Sheet_merkle_root.write.SIZEOF_LOCALS": { - "type": "const", - "value": 0 - }, - "sheet.library.TRUE": { - "destination": "starkware.cairo.common.bool.TRUE", - "type": "alias" - }, - "sheet.library.Uint256": { - "destination": "starkware.cairo.common.uint256.Uint256", - "type": "alias" - }, - "sheet.library._assert_does_not_exceed_allocation": { - "decorators": [], - "pc": 3411, - "type": "function" - }, - "sheet.library._assert_does_not_exceed_allocation.Args": { - "full_name": "sheet.library._assert_does_not_exceed_allocation.Args", - "members": { - "allocation": { - "cairo_type": "felt", - "offset": 0 - } - }, - "size": 1, - "type": "struct" - }, - "sheet.library._assert_does_not_exceed_allocation.ImplicitArgs": { - "full_name": "sheet.library._assert_does_not_exceed_allocation.ImplicitArgs", - "members": { - "address": { - "cairo_type": "felt", - "offset": 3 - }, - "pedersen_ptr": { - "cairo_type": "starkware.cairo.common.cairo_builtins.HashBuiltin*", - "offset": 1 - }, - "range_check_ptr": { - "cairo_type": "felt", - "offset": 2 - }, - "syscall_ptr": { - "cairo_type": "felt*", - "offset": 0 - } - }, - "size": 4, - "type": "struct" - }, - "sheet.library._assert_does_not_exceed_allocation.Return": { - "cairo_type": "()", - "type": "type_definition" - }, - "sheet.library._assert_does_not_exceed_allocation.SIZEOF_LOCALS": { - "type": "const", - "value": 1 - }, - "sheet.library._assert_does_not_exceed_allocation.address": { - "cairo_type": "felt", - "full_name": "sheet.library._assert_does_not_exceed_allocation.address", - "references": [ - { - "ap_tracking_data": { - "group": 219, - "offset": 0 - }, - "pc": 3411, - "value": "[cast(fp + (-4), felt*)]" - } - ], - "type": "reference" - }, - "sheet.library._assert_does_not_exceed_allocation.allocation": { - "cairo_type": "felt", - "full_name": "sheet.library._assert_does_not_exceed_allocation.allocation", - "references": [ - { - "ap_tracking_data": { - "group": 219, - "offset": 0 - }, - "pc": 3411, - "value": "[cast(fp + (-3), felt*)]" - } - ], - "type": "reference" - }, - "sheet.library._assert_is_allowed": { - "decorators": [], - "pc": 3372, - "type": "function" - }, - "sheet.library._assert_is_allowed.Args": { - "full_name": "sheet.library._assert_is_allowed.Args", - "members": { - "proof": { - "cairo_type": "felt*", - "offset": 1 - }, - "proof_len": { - "cairo_type": "felt", - "offset": 0 - } - }, - "size": 2, - "type": "struct" - }, - "sheet.library._assert_is_allowed.ImplicitArgs": { - "full_name": "sheet.library._assert_is_allowed.ImplicitArgs", - "members": { - "address": { - "cairo_type": "felt", - "offset": 3 - }, - "pedersen_ptr": { - "cairo_type": "starkware.cairo.common.cairo_builtins.HashBuiltin*", - "offset": 1 - }, - "range_check_ptr": { - "cairo_type": "felt", - "offset": 2 - }, - "syscall_ptr": { - "cairo_type": "felt*", - "offset": 0 - } - }, - "size": 4, - "type": "struct" - }, - "sheet.library._assert_is_allowed.Return": { - "cairo_type": "()", - "type": "type_definition" - }, - "sheet.library._assert_is_allowed.SIZEOF_LOCALS": { - "type": "const", - "value": 2 - }, - "sheet.library._assert_is_allowed.address": { - "cairo_type": "felt", - "full_name": "sheet.library._assert_is_allowed.address", - "references": [ - { - "ap_tracking_data": { - "group": 217, - "offset": 0 - }, - "pc": 3372, - "value": "[cast(fp + (-5), felt*)]" - } - ], - "type": "reference" - }, - "sheet.library._assert_is_open": { - "decorators": [], - "pc": 3441, - "type": "function" - }, - "sheet.library._assert_is_open.Args": { - "full_name": "sheet.library._assert_is_open.Args", - "members": {}, - "size": 0, - "type": "struct" - }, - "sheet.library._assert_is_open.ImplicitArgs": { - "full_name": "sheet.library._assert_is_open.ImplicitArgs", - "members": { - "pedersen_ptr": { - "cairo_type": "starkware.cairo.common.cairo_builtins.HashBuiltin*", - "offset": 1 - }, - "range_check_ptr": { - "cairo_type": "felt", - "offset": 2 - }, - "syscall_ptr": { - "cairo_type": "felt*", - "offset": 0 - } - }, - "size": 3, - "type": "struct" - }, - "sheet.library._assert_is_open.Return": { - "cairo_type": "()", - "type": "type_definition" - }, - "sheet.library._assert_is_open.SIZEOF_LOCALS": { - "type": "const", - "value": 0 - }, - "sheet.library._get_calldata": { - "decorators": [], - "pc": 3198, - "type": "function" - }, - "sheet.library._get_calldata.Args": { - "full_name": "sheet.library._get_calldata.Args", - "members": { - "index": { - "cairo_type": "felt", - "offset": 0 - } - }, - "size": 1, - "type": "struct" - }, - "sheet.library._get_calldata.ImplicitArgs": { - "full_name": "sheet.library._get_calldata.ImplicitArgs", - "members": { - "calldata": { - "cairo_type": "felt*", - "offset": 5 - }, - "calldata_len": { - "cairo_type": "felt", - "offset": 4 - }, - "pedersen_ptr": { - "cairo_type": "starkware.cairo.common.cairo_builtins.HashBuiltin*", - "offset": 1 - }, - "range_check_ptr": { - "cairo_type": "felt", - "offset": 2 - }, - "syscall_ptr": { - "cairo_type": "felt*", - "offset": 0 - }, - "token_id": { - "cairo_type": "felt", - "offset": 3 - } - }, - "size": 6, - "type": "struct" - }, - "sheet.library._get_calldata.Return": { - "cairo_type": "()", - "type": "type_definition" - }, - "sheet.library._get_calldata.SIZEOF_LOCALS": { - "type": "const", - "value": 0 - }, - "sheet.library._hash_sorted": { - "destination": "utils.merkle_tree._hash_sorted", - "type": "alias" - }, - "sheet.library._render_cell": { - "decorators": [], - "pc": 3228, - "type": "function" - }, - "sheet.library._render_cell.Args": { - "full_name": "sheet.library._render_cell.Args", - "members": { - "value": { - "cairo_type": "felt", - "offset": 0 - } - }, - "size": 1, - "type": "struct" - }, - "sheet.library._render_cell.ImplicitArgs": { - "full_name": "sheet.library._render_cell.ImplicitArgs", - "members": { - "pedersen_ptr": { - "cairo_type": "starkware.cairo.common.cairo_builtins.HashBuiltin*", - "offset": 1 - }, - "range_check_ptr": { - "cairo_type": "felt", - "offset": 2 - }, - "rendered_cells": { - "cairo_type": "starkware.cairo.common.dict_access.DictAccess*", - "offset": 3 - }, - "syscall_ptr": { - "cairo_type": "felt*", - "offset": 0 - }, - "value_is_token_id": { - "cairo_type": "felt", - "offset": 4 - } - }, - "size": 5, - "type": "struct" - }, - "sheet.library._render_cell.Return": { - "cairo_type": "(result: felt)", - "type": "type_definition" - }, - "sheet.library._render_cell.SIZEOF_LOCALS": { - "type": "const", - "value": 6 - }, - "sheet.library._render_cell_calldata": { - "decorators": [], - "pc": 3328, - "type": "function" - }, - "sheet.library._render_cell_calldata.Args": { - "full_name": "sheet.library._render_cell_calldata.Args", - "members": { - "index": { - "cairo_type": "felt", - "offset": 0 - } - }, - "size": 1, - "type": "struct" - }, - "sheet.library._render_cell_calldata.ImplicitArgs": { - "full_name": "sheet.library._render_cell_calldata.ImplicitArgs", - "members": { - "calldata_ids": { - "cairo_type": "felt*", - "offset": 3 - }, - "calldata_rendered": { - "cairo_type": "felt*", - "offset": 4 - }, - "pedersen_ptr": { - "cairo_type": "starkware.cairo.common.cairo_builtins.HashBuiltin*", - "offset": 1 - }, - "range_check_ptr": { - "cairo_type": "felt", - "offset": 2 - }, - "rendered_cells": { - "cairo_type": "starkware.cairo.common.dict_access.DictAccess*", - "offset": 5 - }, - "stop": { - "cairo_type": "felt", - "offset": 6 - }, - "syscall_ptr": { - "cairo_type": "felt*", - "offset": 0 - } - }, - "size": 7, - "type": "struct" - }, - "sheet.library._render_cell_calldata.Return": { - "cairo_type": "()", - "type": "type_definition" - }, - "sheet.library._render_cell_calldata.SIZEOF_LOCALS": { - "type": "const", - "value": 0 - }, - "sheet.library._set_calldata": { - "decorators": [], - "pc": 3165, - "type": "function" - }, - "sheet.library._set_calldata.Args": { - "full_name": "sheet.library._set_calldata.Args", - "members": { - "calldata": { - "cairo_type": "felt*", - "offset": 0 - } - }, - "size": 1, - "type": "struct" - }, - "sheet.library._set_calldata.ImplicitArgs": { - "full_name": "sheet.library._set_calldata.ImplicitArgs", - "members": { - "calldata_len": { - "cairo_type": "felt", - "offset": 5 - }, - "index": { - "cairo_type": "felt", - "offset": 4 - }, - "pedersen_ptr": { - "cairo_type": "starkware.cairo.common.cairo_builtins.HashBuiltin*", - "offset": 1 - }, - "range_check_ptr": { - "cairo_type": "felt", - "offset": 2 - }, - "syscall_ptr": { - "cairo_type": "felt*", - "offset": 0 - }, - "token_id": { - "cairo_type": "felt", - "offset": 3 - } - }, - "size": 6, - "type": "struct" - }, - "sheet.library._set_calldata.Return": { - "cairo_type": "()", - "type": "type_definition" - }, - "sheet.library._set_calldata.SIZEOF_LOCALS": { - "type": "const", - "value": 0 - }, - "sheet.library.addresses_to_leafs": { - "destination": "utils.merkle_tree.addresses_to_leafs", - "type": "alias" - }, - "sheet.library.alloc": { - "destination": "starkware.cairo.common.alloc.alloc", - "type": "alias" - }, - "sheet.library.call_contract": { - "destination": "starkware.starknet.common.syscalls.call_contract", - "type": "alias" - }, - "sheet.library.default_dict_finalize": { - "destination": "starkware.cairo.common.default_dict.default_dict_finalize", - "type": "alias" - }, - "sheet.library.default_dict_new": { - "destination": "starkware.cairo.common.default_dict.default_dict_new", - "type": "alias" - }, - "sheet.library.dict_read": { - "destination": "starkware.cairo.common.dict.dict_read", - "type": "alias" - }, - "sheet.library.dict_write": { - "destination": "starkware.cairo.common.dict.dict_write", - "type": "alias" - }, - "sheet.library.get_caller_address": { - "destination": "starkware.starknet.common.syscalls.get_caller_address", - "type": "alias" - }, - "sheet.library.is_le": { - "destination": "starkware.cairo.common.math_cmp.is_le", - "type": "alias" - }, - "sheet.library.is_nn": { - "destination": "starkware.cairo.common.math_cmp.is_nn", - "type": "alias" - }, - "sheet.library.is_not_zero": { - "destination": "starkware.cairo.common.math_cmp.is_not_zero", - "type": "alias" - }, - "sheet.library.library_call": { - "destination": "starkware.starknet.common.syscalls.library_call", - "type": "alias" - }, - "sheet.library.memcpy": { - "destination": "starkware.cairo.common.memcpy.memcpy", - "type": "alias" - }, - "sheet.library.merkle_build": { - "destination": "utils.merkle_tree.merkle_build", - "type": "alias" - }, - "sheet.library.merkle_verify": { - "destination": "utils.merkle_tree.merkle_verify", - "type": "alias" - }, - "sheet.library.signed_div_rem": { - "destination": "starkware.cairo.common.math.signed_div_rem", - "type": "alias" - }, - "sheet.library.str": { - "destination": "utils.string.str", - "type": "alias" - }, - "starkware.cairo.common.alloc.alloc": { - "decorators": [], - "pc": 0, - "type": "function" - }, - "starkware.cairo.common.alloc.alloc.Args": { - "full_name": "starkware.cairo.common.alloc.alloc.Args", - "members": {}, - "size": 0, - "type": "struct" - }, - "starkware.cairo.common.alloc.alloc.ImplicitArgs": { - "full_name": "starkware.cairo.common.alloc.alloc.ImplicitArgs", - "members": {}, - "size": 0, - "type": "struct" - }, - "starkware.cairo.common.alloc.alloc.Return": { - "cairo_type": "(ptr: felt*)", - "type": "type_definition" - }, - "starkware.cairo.common.alloc.alloc.SIZEOF_LOCALS": { - "type": "const", - "value": 0 - }, - "starkware.cairo.common.bitwise.ALL_ONES": { - "type": "const", - "value": -106710729501573572985208420194530329073740042555888586719234 - }, - "starkware.cairo.common.bitwise.BitwiseBuiltin": { - "destination": "starkware.cairo.common.cairo_builtins.BitwiseBuiltin", - "type": "alias" - }, - "starkware.cairo.common.bool.FALSE": { - "type": "const", - "value": 0 - }, - "starkware.cairo.common.bool.TRUE": { - "type": "const", - "value": 1 - }, - "starkware.cairo.common.cairo_builtins.BitwiseBuiltin": { - "full_name": "starkware.cairo.common.cairo_builtins.BitwiseBuiltin", - "members": { - "x": { - "cairo_type": "felt", - "offset": 0 - }, - "x_and_y": { - "cairo_type": "felt", - "offset": 2 - }, - "x_or_y": { - "cairo_type": "felt", - "offset": 4 - }, - "x_xor_y": { - "cairo_type": "felt", - "offset": 3 - }, - "y": { - "cairo_type": "felt", - "offset": 1 - } - }, - "size": 5, - "type": "struct" - }, - "starkware.cairo.common.cairo_builtins.EcOpBuiltin": { - "full_name": "starkware.cairo.common.cairo_builtins.EcOpBuiltin", - "members": { - "m": { - "cairo_type": "felt", - "offset": 4 - }, - "p": { - "cairo_type": "starkware.cairo.common.ec_point.EcPoint", - "offset": 0 - }, - "q": { - "cairo_type": "starkware.cairo.common.ec_point.EcPoint", - "offset": 2 - }, - "r": { - "cairo_type": "starkware.cairo.common.ec_point.EcPoint", - "offset": 5 - } - }, - "size": 7, - "type": "struct" - }, - "starkware.cairo.common.cairo_builtins.EcPoint": { - "destination": "starkware.cairo.common.ec_point.EcPoint", - "type": "alias" - }, - "starkware.cairo.common.cairo_builtins.HashBuiltin": { - "full_name": "starkware.cairo.common.cairo_builtins.HashBuiltin", - "members": { - "result": { - "cairo_type": "felt", - "offset": 2 - }, - "x": { - "cairo_type": "felt", - "offset": 0 - }, - "y": { - "cairo_type": "felt", - "offset": 1 - } - }, - "size": 3, - "type": "struct" - }, - "starkware.cairo.common.cairo_builtins.KeccakBuiltin": { - "full_name": "starkware.cairo.common.cairo_builtins.KeccakBuiltin", - "members": { - "input": { - "cairo_type": "starkware.cairo.common.keccak_state.KeccakBuiltinState", - "offset": 0 - }, - "output": { - "cairo_type": "starkware.cairo.common.keccak_state.KeccakBuiltinState", - "offset": 8 - } - }, - "size": 16, - "type": "struct" - }, - "starkware.cairo.common.cairo_builtins.KeccakBuiltinState": { - "destination": "starkware.cairo.common.keccak_state.KeccakBuiltinState", - "type": "alias" - }, - "starkware.cairo.common.cairo_builtins.PoseidonBuiltin": { - "full_name": "starkware.cairo.common.cairo_builtins.PoseidonBuiltin", - "members": { - "input": { - "cairo_type": "starkware.cairo.common.poseidon_state.PoseidonBuiltinState", - "offset": 0 - }, - "output": { - "cairo_type": "starkware.cairo.common.poseidon_state.PoseidonBuiltinState", - "offset": 3 - } - }, - "size": 6, - "type": "struct" - }, - "starkware.cairo.common.cairo_builtins.PoseidonBuiltinState": { - "destination": "starkware.cairo.common.poseidon_state.PoseidonBuiltinState", - "type": "alias" - }, - "starkware.cairo.common.cairo_builtins.SignatureBuiltin": { - "full_name": "starkware.cairo.common.cairo_builtins.SignatureBuiltin", - "members": { - "message": { - "cairo_type": "felt", - "offset": 1 - }, - "pub_key": { - "cairo_type": "felt", - "offset": 0 - } - }, - "size": 2, - "type": "struct" - }, - "starkware.cairo.common.default_dict.DictAccess": { - "destination": "starkware.cairo.common.dict_access.DictAccess", - "type": "alias" - }, - "starkware.cairo.common.default_dict.default_dict_finalize": { - "decorators": [], - "pc": 2491, - "type": "function" - }, - "starkware.cairo.common.default_dict.default_dict_finalize.Args": { - "full_name": "starkware.cairo.common.default_dict.default_dict_finalize.Args", - "members": { - "default_value": { - "cairo_type": "felt", - "offset": 2 - }, - "dict_accesses_end": { - "cairo_type": "starkware.cairo.common.dict_access.DictAccess*", - "offset": 1 - }, - "dict_accesses_start": { - "cairo_type": "starkware.cairo.common.dict_access.DictAccess*", - "offset": 0 - } - }, - "size": 3, - "type": "struct" - }, - "starkware.cairo.common.default_dict.default_dict_finalize.ImplicitArgs": { - "full_name": "starkware.cairo.common.default_dict.default_dict_finalize.ImplicitArgs", - "members": { - "range_check_ptr": { - "cairo_type": "felt", - "offset": 0 - } - }, - "size": 1, - "type": "struct" - }, - "starkware.cairo.common.default_dict.default_dict_finalize.Return": { - "cairo_type": "(squashed_dict_start: starkware.cairo.common.dict_access.DictAccess*, squashed_dict_end: starkware.cairo.common.dict_access.DictAccess*)", - "type": "type_definition" - }, - "starkware.cairo.common.default_dict.default_dict_finalize.SIZEOF_LOCALS": { - "type": "const", - "value": 3 - }, - "starkware.cairo.common.default_dict.default_dict_finalize_inner": { - "decorators": [], - "pc": 2512, - "type": "function" - }, - "starkware.cairo.common.default_dict.default_dict_finalize_inner.Args": { - "full_name": "starkware.cairo.common.default_dict.default_dict_finalize_inner.Args", - "members": { - "default_value": { - "cairo_type": "felt", - "offset": 2 - }, - "dict_accesses_start": { - "cairo_type": "starkware.cairo.common.dict_access.DictAccess*", - "offset": 0 - }, - "n_accesses": { - "cairo_type": "felt", - "offset": 1 - } - }, - "size": 3, - "type": "struct" - }, - "starkware.cairo.common.default_dict.default_dict_finalize_inner.ImplicitArgs": { - "full_name": "starkware.cairo.common.default_dict.default_dict_finalize_inner.ImplicitArgs", - "members": {}, - "size": 0, - "type": "struct" - }, - "starkware.cairo.common.default_dict.default_dict_finalize_inner.Return": { - "cairo_type": "()", - "type": "type_definition" - }, - "starkware.cairo.common.default_dict.default_dict_finalize_inner.SIZEOF_LOCALS": { - "type": "const", - "value": 0 - }, - "starkware.cairo.common.default_dict.default_dict_new": { - "decorators": [], - "pc": 2488, - "type": "function" - }, - "starkware.cairo.common.default_dict.default_dict_new.Args": { - "full_name": "starkware.cairo.common.default_dict.default_dict_new.Args", - "members": { - "default_value": { - "cairo_type": "felt", - "offset": 0 - } - }, - "size": 1, - "type": "struct" - }, - "starkware.cairo.common.default_dict.default_dict_new.ImplicitArgs": { - "full_name": "starkware.cairo.common.default_dict.default_dict_new.ImplicitArgs", - "members": {}, - "size": 0, - "type": "struct" - }, - "starkware.cairo.common.default_dict.default_dict_new.Return": { - "cairo_type": "(res: starkware.cairo.common.dict_access.DictAccess*)", - "type": "type_definition" - }, - "starkware.cairo.common.default_dict.default_dict_new.SIZEOF_LOCALS": { - "type": "const", - "value": 0 - }, - "starkware.cairo.common.default_dict.default_dict_new.default_value": { - "cairo_type": "felt", - "full_name": "starkware.cairo.common.default_dict.default_dict_new.default_value", - "references": [ - { - "ap_tracking_data": { - "group": 156, - "offset": 0 - }, - "pc": 2488, - "value": "[cast(fp + (-3), felt*)]" - } - ], - "type": "reference" - }, - "starkware.cairo.common.default_dict.dict_squash": { - "destination": "starkware.cairo.common.dict.dict_squash", - "type": "alias" - }, - "starkware.cairo.common.dict.DictAccess": { - "destination": "starkware.cairo.common.dict_access.DictAccess", - "type": "alias" - }, - "starkware.cairo.common.dict.dict_new": { - "decorators": [], - "pc": 2456, - "type": "function" - }, - "starkware.cairo.common.dict.dict_new.Args": { - "full_name": "starkware.cairo.common.dict.dict_new.Args", - "members": {}, - "size": 0, - "type": "struct" - }, - "starkware.cairo.common.dict.dict_new.ImplicitArgs": { - "full_name": "starkware.cairo.common.dict.dict_new.ImplicitArgs", - "members": {}, - "size": 0, - "type": "struct" - }, - "starkware.cairo.common.dict.dict_new.Return": { - "cairo_type": "(res: starkware.cairo.common.dict_access.DictAccess*)", - "type": "type_definition" - }, - "starkware.cairo.common.dict.dict_new.SIZEOF_LOCALS": { - "type": "const", - "value": 0 - }, - "starkware.cairo.common.dict.dict_read": { - "decorators": [], - "pc": 2459, - "type": "function" - }, - "starkware.cairo.common.dict.dict_read.Args": { - "full_name": "starkware.cairo.common.dict.dict_read.Args", - "members": { - "key": { - "cairo_type": "felt", - "offset": 0 - } - }, - "size": 1, - "type": "struct" - }, - "starkware.cairo.common.dict.dict_read.ImplicitArgs": { - "full_name": "starkware.cairo.common.dict.dict_read.ImplicitArgs", - "members": { - "dict_ptr": { - "cairo_type": "starkware.cairo.common.dict_access.DictAccess*", - "offset": 0 - } - }, - "size": 1, - "type": "struct" - }, - "starkware.cairo.common.dict.dict_read.Return": { - "cairo_type": "(value: felt)", - "type": "type_definition" - }, - "starkware.cairo.common.dict.dict_read.SIZEOF_LOCALS": { - "type": "const", - "value": 1 - }, - "starkware.cairo.common.dict.dict_read.dict_ptr": { - "cairo_type": "starkware.cairo.common.dict_access.DictAccess*", - "full_name": "starkware.cairo.common.dict.dict_read.dict_ptr", - "references": [ - { - "ap_tracking_data": { - "group": 152, - "offset": 0 - }, - "pc": 2459, - "value": "[cast(fp + (-4), starkware.cairo.common.dict_access.DictAccess**)]" - }, - { - "ap_tracking_data": { - "group": 152, - "offset": 1 - }, - "pc": 2464, - "value": "cast([fp + (-4)] + 3, starkware.cairo.common.dict_access.DictAccess*)" - } - ], - "type": "reference" - }, - "starkware.cairo.common.dict.dict_read.key": { - "cairo_type": "felt", - "full_name": "starkware.cairo.common.dict.dict_read.key", - "references": [ - { - "ap_tracking_data": { - "group": 152, - "offset": 0 - }, - "pc": 2459, - "value": "[cast(fp + (-3), felt*)]" - } - ], - "type": "reference" - }, - "starkware.cairo.common.dict.dict_read.value": { - "cairo_type": "felt", - "full_name": "starkware.cairo.common.dict.dict_read.value", - "references": [ - { - "ap_tracking_data": { - "group": 152, - "offset": 1 - }, - "pc": 2461, - "value": "[cast(fp, felt*)]" - } - ], - "type": "reference" - }, - "starkware.cairo.common.dict.dict_squash": { - "decorators": [], - "pc": 2473, - "type": "function" - }, - "starkware.cairo.common.dict.dict_squash.Args": { - "full_name": "starkware.cairo.common.dict.dict_squash.Args", - "members": { - "dict_accesses_end": { - "cairo_type": "starkware.cairo.common.dict_access.DictAccess*", - "offset": 1 - }, - "dict_accesses_start": { - "cairo_type": "starkware.cairo.common.dict_access.DictAccess*", - "offset": 0 - } - }, - "size": 2, - "type": "struct" - }, - "starkware.cairo.common.dict.dict_squash.ImplicitArgs": { - "full_name": "starkware.cairo.common.dict.dict_squash.ImplicitArgs", - "members": { - "range_check_ptr": { - "cairo_type": "felt", - "offset": 0 - } - }, - "size": 1, - "type": "struct" - }, - "starkware.cairo.common.dict.dict_squash.Return": { - "cairo_type": "(squashed_dict_start: starkware.cairo.common.dict_access.DictAccess*, squashed_dict_end: starkware.cairo.common.dict_access.DictAccess*)", - "type": "type_definition" - }, - "starkware.cairo.common.dict.dict_squash.SIZEOF_LOCALS": { - "type": "const", - "value": 1 - }, - "starkware.cairo.common.dict.dict_squash.dict_accesses_end": { - "cairo_type": "starkware.cairo.common.dict_access.DictAccess*", - "full_name": "starkware.cairo.common.dict.dict_squash.dict_accesses_end", - "references": [ - { - "ap_tracking_data": { - "group": 154, - "offset": 0 - }, - "pc": 2473, - "value": "[cast(fp + (-3), starkware.cairo.common.dict_access.DictAccess**)]" - } - ], - "type": "reference" - }, - "starkware.cairo.common.dict.dict_squash.squashed_dict_end": { - "cairo_type": "starkware.cairo.common.dict_access.DictAccess*", - "full_name": "starkware.cairo.common.dict.dict_squash.squashed_dict_end", - "references": [ - { - "ap_tracking_data": { - "group": 155, - "offset": 0 - }, - "pc": 2484, - "value": "[cast(ap + (-1), starkware.cairo.common.dict_access.DictAccess**)]" - } - ], - "type": "reference" - }, - "starkware.cairo.common.dict.dict_squash.squashed_dict_start": { - "cairo_type": "starkware.cairo.common.dict_access.DictAccess*", - "full_name": "starkware.cairo.common.dict.dict_squash.squashed_dict_start", - "references": [ - { - "ap_tracking_data": { - "group": 154, - "offset": 4 - }, - "pc": 2477, - "value": "[cast(ap + (-1), starkware.cairo.common.dict_access.DictAccess**)]" - }, - { - "ap_tracking_data": { - "group": 154, - "offset": 4 - }, - "pc": 2478, - "value": "[cast(fp, starkware.cairo.common.dict_access.DictAccess**)]" - } - ], - "type": "reference" - }, - "starkware.cairo.common.dict.dict_write": { - "decorators": [], - "pc": 2468, - "type": "function" - }, - "starkware.cairo.common.dict.dict_write.Args": { - "full_name": "starkware.cairo.common.dict.dict_write.Args", - "members": { - "key": { - "cairo_type": "felt", - "offset": 0 - }, - "new_value": { - "cairo_type": "felt", - "offset": 1 - } - }, - "size": 2, - "type": "struct" - }, - "starkware.cairo.common.dict.dict_write.ImplicitArgs": { - "full_name": "starkware.cairo.common.dict.dict_write.ImplicitArgs", - "members": { - "dict_ptr": { - "cairo_type": "starkware.cairo.common.dict_access.DictAccess*", - "offset": 0 - } - }, - "size": 1, - "type": "struct" - }, - "starkware.cairo.common.dict.dict_write.Return": { - "cairo_type": "()", - "type": "type_definition" - }, - "starkware.cairo.common.dict.dict_write.SIZEOF_LOCALS": { - "type": "const", - "value": 0 - }, - "starkware.cairo.common.dict.dict_write.dict_ptr": { - "cairo_type": "starkware.cairo.common.dict_access.DictAccess*", - "full_name": "starkware.cairo.common.dict.dict_write.dict_ptr", - "references": [ - { - "ap_tracking_data": { - "group": 153, - "offset": 0 - }, - "pc": 2468, - "value": "[cast(fp + (-5), starkware.cairo.common.dict_access.DictAccess**)]" - }, - { - "ap_tracking_data": { - "group": 153, - "offset": 0 - }, - "pc": 2470, - "value": "cast([fp + (-5)] + 3, starkware.cairo.common.dict_access.DictAccess*)" - } - ], - "type": "reference" - }, - "starkware.cairo.common.dict.dict_write.key": { - "cairo_type": "felt", - "full_name": "starkware.cairo.common.dict.dict_write.key", - "references": [ - { - "ap_tracking_data": { - "group": 153, - "offset": 0 - }, - "pc": 2468, - "value": "[cast(fp + (-4), felt*)]" - } - ], - "type": "reference" - }, - "starkware.cairo.common.dict.dict_write.new_value": { - "cairo_type": "felt", - "full_name": "starkware.cairo.common.dict.dict_write.new_value", - "references": [ - { - "ap_tracking_data": { - "group": 153, - "offset": 0 - }, - "pc": 2468, - "value": "[cast(fp + (-3), felt*)]" - } - ], - "type": "reference" - }, - "starkware.cairo.common.dict.squash_dict": { - "destination": "starkware.cairo.common.squash_dict.squash_dict", - "type": "alias" - }, - "starkware.cairo.common.dict_access.DictAccess": { - "full_name": "starkware.cairo.common.dict_access.DictAccess", - "members": { - "key": { - "cairo_type": "felt", - "offset": 0 - }, - "new_value": { - "cairo_type": "felt", - "offset": 2 - }, - "prev_value": { - "cairo_type": "felt", - "offset": 1 - } - }, - "size": 3, - "type": "struct" - }, - "starkware.cairo.common.ec_point.EcPoint": { - "full_name": "starkware.cairo.common.ec_point.EcPoint", - "members": { - "x": { - "cairo_type": "felt", - "offset": 0 - }, - "y": { - "cairo_type": "felt", - "offset": 1 - } - }, - "size": 2, - "type": "struct" - }, - "starkware.cairo.common.hash.HashBuiltin": { - "destination": "starkware.cairo.common.cairo_builtins.HashBuiltin", - "type": "alias" - }, - "starkware.cairo.common.hash.hash2": { - "decorators": [], - "pc": 3, - "type": "function" - }, - "starkware.cairo.common.hash.hash2.Args": { - "full_name": "starkware.cairo.common.hash.hash2.Args", - "members": { - "x": { - "cairo_type": "felt", - "offset": 0 - }, - "y": { - "cairo_type": "felt", - "offset": 1 - } - }, - "size": 2, - "type": "struct" - }, - "starkware.cairo.common.hash.hash2.ImplicitArgs": { - "full_name": "starkware.cairo.common.hash.hash2.ImplicitArgs", - "members": { - "hash_ptr": { - "cairo_type": "starkware.cairo.common.cairo_builtins.HashBuiltin*", - "offset": 0 - } - }, - "size": 1, - "type": "struct" - }, - "starkware.cairo.common.hash.hash2.Return": { - "cairo_type": "(result: felt)", - "type": "type_definition" - }, - "starkware.cairo.common.hash.hash2.SIZEOF_LOCALS": { - "type": "const", - "value": 0 - }, - "starkware.cairo.common.keccak_state.KeccakBuiltinState": { - "full_name": "starkware.cairo.common.keccak_state.KeccakBuiltinState", - "members": { - "s0": { - "cairo_type": "felt", - "offset": 0 - }, - "s1": { - "cairo_type": "felt", - "offset": 1 - }, - "s2": { - "cairo_type": "felt", - "offset": 2 - }, - "s3": { - "cairo_type": "felt", - "offset": 3 - }, - "s4": { - "cairo_type": "felt", - "offset": 4 - }, - "s5": { - "cairo_type": "felt", - "offset": 5 - }, - "s6": { - "cairo_type": "felt", - "offset": 6 - }, - "s7": { - "cairo_type": "felt", - "offset": 7 - } - }, - "size": 8, - "type": "struct" - }, - "starkware.cairo.common.math.FALSE": { - "destination": "starkware.cairo.common.bool.FALSE", - "type": "alias" - }, - "starkware.cairo.common.math.TRUE": { - "destination": "starkware.cairo.common.bool.TRUE", - "type": "alias" - }, - "starkware.cairo.common.math.assert_250_bit": { - "decorators": [ - "known_ap_change" - ], - "pc": 90, - "type": "function" - }, - "starkware.cairo.common.math.assert_250_bit.Args": { - "full_name": "starkware.cairo.common.math.assert_250_bit.Args", - "members": { - "value": { - "cairo_type": "felt", - "offset": 0 - } - }, - "size": 1, - "type": "struct" - }, - "starkware.cairo.common.math.assert_250_bit.HIGH_BOUND": { - "type": "const", - "value": 5316911983139663491615228241121378304 - }, - "starkware.cairo.common.math.assert_250_bit.ImplicitArgs": { - "full_name": "starkware.cairo.common.math.assert_250_bit.ImplicitArgs", - "members": { - "range_check_ptr": { - "cairo_type": "felt", - "offset": 0 - } - }, - "size": 1, - "type": "struct" - }, - "starkware.cairo.common.math.assert_250_bit.Return": { - "cairo_type": "()", - "type": "type_definition" - }, - "starkware.cairo.common.math.assert_250_bit.SHIFT": { - "type": "const", - "value": 340282366920938463463374607431768211456 - }, - "starkware.cairo.common.math.assert_250_bit.SIZEOF_LOCALS": { - "type": "const", - "value": 0 - }, - "starkware.cairo.common.math.assert_250_bit.UPPER_BOUND": { - "type": "const", - "value": 1809251394333065553493296640760748560207343510400633813116524750123642650624 - }, - "starkware.cairo.common.math.assert_250_bit.high": { - "cairo_type": "felt", - "full_name": "starkware.cairo.common.math.assert_250_bit.high", - "references": [ - { - "ap_tracking_data": { - "group": 13, - "offset": 0 - }, - "pc": 90, - "value": "[cast([fp + (-4)] + 1, felt*)]" - } - ], - "type": "reference" - }, - "starkware.cairo.common.math.assert_250_bit.low": { - "cairo_type": "felt", - "full_name": "starkware.cairo.common.math.assert_250_bit.low", - "references": [ - { - "ap_tracking_data": { - "group": 13, - "offset": 0 - }, - "pc": 90, - "value": "[cast([fp + (-4)], felt*)]" - } - ], - "type": "reference" - }, - "starkware.cairo.common.math.assert_250_bit.value": { - "cairo_type": "felt", - "full_name": "starkware.cairo.common.math.assert_250_bit.value", - "references": [ - { - "ap_tracking_data": { - "group": 13, - "offset": 0 - }, - "pc": 90, - "value": "[cast(fp + (-3), felt*)]" - } - ], - "type": "reference" - }, - "starkware.cairo.common.math.assert_le": { - "decorators": [], - "pc": 85, - "type": "function" - }, - "starkware.cairo.common.math.assert_le.Args": { - "full_name": "starkware.cairo.common.math.assert_le.Args", - "members": { - "a": { - "cairo_type": "felt", - "offset": 0 - }, - "b": { - "cairo_type": "felt", - "offset": 1 - } - }, - "size": 2, - "type": "struct" - }, - "starkware.cairo.common.math.assert_le.ImplicitArgs": { - "full_name": "starkware.cairo.common.math.assert_le.ImplicitArgs", - "members": { - "range_check_ptr": { - "cairo_type": "felt", - "offset": 0 - } - }, - "size": 1, - "type": "struct" - }, - "starkware.cairo.common.math.assert_le.Return": { - "cairo_type": "()", - "type": "type_definition" - }, - "starkware.cairo.common.math.assert_le.SIZEOF_LOCALS": { - "type": "const", - "value": 0 - }, - "starkware.cairo.common.math.assert_le_felt": { - "decorators": [ - "known_ap_change" - ], - "pc": 103, - "type": "function" - }, - "starkware.cairo.common.math.assert_le_felt.Args": { - "full_name": "starkware.cairo.common.math.assert_le_felt.Args", - "members": { - "a": { - "cairo_type": "felt", - "offset": 0 - }, - "b": { - "cairo_type": "felt", - "offset": 1 - } - }, - "size": 2, - "type": "struct" - }, - "starkware.cairo.common.math.assert_le_felt.ImplicitArgs": { - "full_name": "starkware.cairo.common.math.assert_le_felt.ImplicitArgs", - "members": { - "range_check_ptr": { - "cairo_type": "felt", - "offset": 0 - } - }, - "size": 1, - "type": "struct" - }, - "starkware.cairo.common.math.assert_le_felt.PRIME_OVER_2_HIGH": { - "type": "const", - "value": 5316911983139663648412552867652567041 - }, - "starkware.cairo.common.math.assert_le_felt.PRIME_OVER_3_HIGH": { - "type": "const", - "value": 3544607988759775765608368578435044694 - }, - "starkware.cairo.common.math.assert_le_felt.Return": { - "cairo_type": "()", - "type": "type_definition" - }, - "starkware.cairo.common.math.assert_le_felt.SIZEOF_LOCALS": { - "type": "const", - "value": 0 - }, - "starkware.cairo.common.math.assert_le_felt.a": { - "cairo_type": "felt", - "full_name": "starkware.cairo.common.math.assert_le_felt.a", - "references": [ - { - "ap_tracking_data": { - "group": 14, - "offset": 0 - }, - "pc": 103, - "value": "[cast(fp + (-4), felt*)]" - } - ], - "type": "reference" - }, - "starkware.cairo.common.math.assert_le_felt.b": { - "cairo_type": "felt", - "full_name": "starkware.cairo.common.math.assert_le_felt.b", - "references": [ - { - "ap_tracking_data": { - "group": 14, - "offset": 0 - }, - "pc": 103, - "value": "[cast(fp + (-3), felt*)]" - } - ], - "type": "reference" - }, - "starkware.cairo.common.math.assert_le_felt.range_check_ptr": { - "cairo_type": "felt", - "full_name": "starkware.cairo.common.math.assert_le_felt.range_check_ptr", - "references": [ - { - "ap_tracking_data": { - "group": 14, - "offset": 0 - }, - "pc": 103, - "value": "[cast(fp + (-5), felt*)]" - }, - { - "ap_tracking_data": { - "group": 14, - "offset": 8 - }, - "pc": 113, - "value": "cast([fp + (-5)] + 4, felt)" - } - ], - "type": "reference" - }, - "starkware.cairo.common.math.assert_le_felt.skip_exclude_a": { - "pc": 127, - "type": "label" - }, - "starkware.cairo.common.math.assert_le_felt.skip_exclude_b_minus_a": { - "pc": 139, - "type": "label" - }, - "starkware.cairo.common.math.assert_lt_felt": { - "decorators": [ - "known_ap_change" - ], - "pc": 148, - "type": "function" - }, - "starkware.cairo.common.math.assert_lt_felt.Args": { - "full_name": "starkware.cairo.common.math.assert_lt_felt.Args", - "members": { - "a": { - "cairo_type": "felt", - "offset": 0 - }, - "b": { - "cairo_type": "felt", - "offset": 1 - } - }, - "size": 2, - "type": "struct" - }, - "starkware.cairo.common.math.assert_lt_felt.ImplicitArgs": { - "full_name": "starkware.cairo.common.math.assert_lt_felt.ImplicitArgs", - "members": { - "range_check_ptr": { - "cairo_type": "felt", - "offset": 0 - } - }, - "size": 1, - "type": "struct" - }, - "starkware.cairo.common.math.assert_lt_felt.Return": { - "cairo_type": "()", - "type": "type_definition" - }, - "starkware.cairo.common.math.assert_lt_felt.SIZEOF_LOCALS": { - "type": "const", - "value": 0 - }, - "starkware.cairo.common.math.assert_lt_felt.a": { - "cairo_type": "felt", - "full_name": "starkware.cairo.common.math.assert_lt_felt.a", - "references": [ - { - "ap_tracking_data": { - "group": 15, - "offset": 0 - }, - "pc": 148, - "value": "[cast(fp + (-4), felt*)]" - } - ], - "type": "reference" - }, - "starkware.cairo.common.math.assert_lt_felt.b": { - "cairo_type": "felt", - "full_name": "starkware.cairo.common.math.assert_lt_felt.b", - "references": [ - { - "ap_tracking_data": { - "group": 15, - "offset": 0 - }, - "pc": 148, - "value": "[cast(fp + (-3), felt*)]" - } - ], - "type": "reference" - }, - "starkware.cairo.common.math.assert_nn": { - "decorators": [], - "pc": 81, - "type": "function" - }, - "starkware.cairo.common.math.assert_nn.Args": { - "full_name": "starkware.cairo.common.math.assert_nn.Args", - "members": { - "a": { - "cairo_type": "felt", - "offset": 0 - } - }, - "size": 1, - "type": "struct" - }, - "starkware.cairo.common.math.assert_nn.ImplicitArgs": { - "full_name": "starkware.cairo.common.math.assert_nn.ImplicitArgs", - "members": { - "range_check_ptr": { - "cairo_type": "felt", - "offset": 0 - } - }, - "size": 1, - "type": "struct" - }, - "starkware.cairo.common.math.assert_nn.Return": { - "cairo_type": "()", - "type": "type_definition" - }, - "starkware.cairo.common.math.assert_nn.SIZEOF_LOCALS": { - "type": "const", - "value": 0 - }, - "starkware.cairo.common.math.assert_nn.a": { - "cairo_type": "felt", - "full_name": "starkware.cairo.common.math.assert_nn.a", - "references": [ - { - "ap_tracking_data": { - "group": 11, - "offset": 0 - }, - "pc": 81, - "value": "[cast(fp + (-3), felt*)]" - } - ], - "type": "reference" - }, - "starkware.cairo.common.math.assert_not_equal": { - "decorators": [], - "pc": 75, - "type": "function" - }, - "starkware.cairo.common.math.assert_not_equal.Args": { - "full_name": "starkware.cairo.common.math.assert_not_equal.Args", - "members": { - "a": { - "cairo_type": "felt", - "offset": 0 - }, - "b": { - "cairo_type": "felt", - "offset": 1 - } - }, - "size": 2, - "type": "struct" - }, - "starkware.cairo.common.math.assert_not_equal.ImplicitArgs": { - "full_name": "starkware.cairo.common.math.assert_not_equal.ImplicitArgs", - "members": {}, - "size": 0, - "type": "struct" - }, - "starkware.cairo.common.math.assert_not_equal.Return": { - "cairo_type": "()", - "type": "type_definition" - }, - "starkware.cairo.common.math.assert_not_equal.SIZEOF_LOCALS": { - "type": "const", - "value": 0 - }, - "starkware.cairo.common.math.assert_not_equal.a": { - "cairo_type": "felt", - "full_name": "starkware.cairo.common.math.assert_not_equal.a", - "references": [ - { - "ap_tracking_data": { - "group": 10, - "offset": 0 - }, - "pc": 75, - "value": "[cast(fp + (-4), felt*)]" - } - ], - "type": "reference" - }, - "starkware.cairo.common.math.assert_not_equal.b": { - "cairo_type": "felt", - "full_name": "starkware.cairo.common.math.assert_not_equal.b", - "references": [ - { - "ap_tracking_data": { - "group": 10, - "offset": 0 - }, - "pc": 75, - "value": "[cast(fp + (-3), felt*)]" - } - ], - "type": "reference" - }, - "starkware.cairo.common.math.assert_not_zero": { - "decorators": [], - "pc": 70, - "type": "function" - }, - "starkware.cairo.common.math.assert_not_zero.Args": { - "full_name": "starkware.cairo.common.math.assert_not_zero.Args", - "members": { - "value": { - "cairo_type": "felt", - "offset": 0 - } - }, - "size": 1, - "type": "struct" - }, - "starkware.cairo.common.math.assert_not_zero.ImplicitArgs": { - "full_name": "starkware.cairo.common.math.assert_not_zero.ImplicitArgs", - "members": {}, - "size": 0, - "type": "struct" - }, - "starkware.cairo.common.math.assert_not_zero.Return": { - "cairo_type": "()", - "type": "type_definition" - }, - "starkware.cairo.common.math.assert_not_zero.SIZEOF_LOCALS": { - "type": "const", - "value": 0 - }, - "starkware.cairo.common.math.assert_not_zero.value": { - "cairo_type": "felt", - "full_name": "starkware.cairo.common.math.assert_not_zero.value", - "references": [ - { - "ap_tracking_data": { - "group": 9, - "offset": 0 - }, - "pc": 70, - "value": "[cast(fp + (-3), felt*)]" - } - ], - "type": "reference" - }, - "starkware.cairo.common.math.signed_div_rem": { - "decorators": [], - "pc": 159, - "type": "function" - }, - "starkware.cairo.common.math.signed_div_rem.Args": { - "full_name": "starkware.cairo.common.math.signed_div_rem.Args", - "members": { - "bound": { - "cairo_type": "felt", - "offset": 2 - }, - "div": { - "cairo_type": "felt", - "offset": 1 - }, - "value": { - "cairo_type": "felt", - "offset": 0 - } - }, - "size": 3, - "type": "struct" - }, - "starkware.cairo.common.math.signed_div_rem.ImplicitArgs": { - "full_name": "starkware.cairo.common.math.signed_div_rem.ImplicitArgs", - "members": { - "range_check_ptr": { - "cairo_type": "felt", - "offset": 0 - } - }, - "size": 1, - "type": "struct" - }, - "starkware.cairo.common.math.signed_div_rem.Return": { - "cairo_type": "(q: felt, r: felt)", - "type": "type_definition" - }, - "starkware.cairo.common.math.signed_div_rem.SIZEOF_LOCALS": { - "type": "const", - "value": 0 - }, - "starkware.cairo.common.math.signed_div_rem.biased_q": { - "cairo_type": "felt", - "full_name": "starkware.cairo.common.math.signed_div_rem.biased_q", - "references": [ - { - "ap_tracking_data": { - "group": 16, - "offset": 0 - }, - "pc": 159, - "value": "[cast([fp + (-6)] + 1, felt*)]" - } - ], - "type": "reference" - }, - "starkware.cairo.common.math.signed_div_rem.bound": { - "cairo_type": "felt", - "full_name": "starkware.cairo.common.math.signed_div_rem.bound", - "references": [ - { - "ap_tracking_data": { - "group": 16, - "offset": 0 - }, - "pc": 159, - "value": "[cast(fp + (-3), felt*)]" - } - ], - "type": "reference" - }, - "starkware.cairo.common.math.signed_div_rem.div": { - "cairo_type": "felt", - "full_name": "starkware.cairo.common.math.signed_div_rem.div", - "references": [ - { - "ap_tracking_data": { - "group": 16, - "offset": 0 - }, - "pc": 159, - "value": "[cast(fp + (-4), felt*)]" - } - ], - "type": "reference" - }, - "starkware.cairo.common.math.signed_div_rem.r": { - "cairo_type": "felt", - "full_name": "starkware.cairo.common.math.signed_div_rem.r", - "references": [ - { - "ap_tracking_data": { - "group": 16, - "offset": 0 - }, - "pc": 159, - "value": "[cast([fp + (-6)], felt*)]" - } - ], - "type": "reference" - }, - "starkware.cairo.common.math.signed_div_rem.value": { - "cairo_type": "felt", - "full_name": "starkware.cairo.common.math.signed_div_rem.value", - "references": [ - { - "ap_tracking_data": { - "group": 16, - "offset": 0 - }, - "pc": 159, - "value": "[cast(fp + (-5), felt*)]" - } - ], - "type": "reference" - }, - "starkware.cairo.common.math_cmp.RC_BOUND": { - "type": "const", - "value": 340282366920938463463374607431768211456 - }, - "starkware.cairo.common.math_cmp.assert_le_felt": { - "destination": "starkware.cairo.common.math.assert_le_felt", - "type": "alias" - }, - "starkware.cairo.common.math_cmp.assert_lt_felt": { - "destination": "starkware.cairo.common.math.assert_lt_felt", - "type": "alias" - }, - "starkware.cairo.common.math_cmp.is_le": { - "decorators": [ - "known_ap_change" - ], - "pc": 382, - "type": "function" - }, - "starkware.cairo.common.math_cmp.is_le.Args": { - "full_name": "starkware.cairo.common.math_cmp.is_le.Args", - "members": { - "a": { - "cairo_type": "felt", - "offset": 0 - }, - "b": { - "cairo_type": "felt", - "offset": 1 - } - }, - "size": 2, - "type": "struct" - }, - "starkware.cairo.common.math_cmp.is_le.ImplicitArgs": { - "full_name": "starkware.cairo.common.math_cmp.is_le.ImplicitArgs", - "members": { - "range_check_ptr": { - "cairo_type": "felt", - "offset": 0 - } - }, - "size": 1, - "type": "struct" - }, - "starkware.cairo.common.math_cmp.is_le.Return": { - "cairo_type": "felt", - "type": "type_definition" - }, - "starkware.cairo.common.math_cmp.is_le.SIZEOF_LOCALS": { - "type": "const", - "value": 0 - }, - "starkware.cairo.common.math_cmp.is_le_felt": { - "decorators": [ - "known_ap_change" - ], - "pc": 387, - "type": "function" - }, - "starkware.cairo.common.math_cmp.is_le_felt.Args": { - "full_name": "starkware.cairo.common.math_cmp.is_le_felt.Args", - "members": { - "a": { - "cairo_type": "felt", - "offset": 0 - }, - "b": { - "cairo_type": "felt", - "offset": 1 - } - }, - "size": 2, - "type": "struct" - }, - "starkware.cairo.common.math_cmp.is_le_felt.ImplicitArgs": { - "full_name": "starkware.cairo.common.math_cmp.is_le_felt.ImplicitArgs", - "members": { - "range_check_ptr": { - "cairo_type": "felt", - "offset": 0 - } - }, - "size": 1, - "type": "struct" - }, - "starkware.cairo.common.math_cmp.is_le_felt.Return": { - "cairo_type": "felt", - "type": "type_definition" - }, - "starkware.cairo.common.math_cmp.is_le_felt.SIZEOF_LOCALS": { - "type": "const", - "value": 0 - }, - "starkware.cairo.common.math_cmp.is_le_felt.a": { - "cairo_type": "felt", - "full_name": "starkware.cairo.common.math_cmp.is_le_felt.a", - "references": [ - { - "ap_tracking_data": { - "group": 34, - "offset": 0 - }, - "pc": 387, - "value": "[cast(fp + (-4), felt*)]" - } - ], - "type": "reference" - }, - "starkware.cairo.common.math_cmp.is_le_felt.b": { - "cairo_type": "felt", - "full_name": "starkware.cairo.common.math_cmp.is_le_felt.b", - "references": [ - { - "ap_tracking_data": { - "group": 34, - "offset": 0 - }, - "pc": 387, - "value": "[cast(fp + (-3), felt*)]" - } - ], - "type": "reference" - }, - "starkware.cairo.common.math_cmp.is_le_felt.not_le": { - "pc": 399, - "type": "label" - }, - "starkware.cairo.common.math_cmp.is_nn": { - "decorators": [ - "known_ap_change" - ], - "pc": 349, - "type": "function" - }, - "starkware.cairo.common.math_cmp.is_nn.Args": { - "full_name": "starkware.cairo.common.math_cmp.is_nn.Args", - "members": { - "a": { - "cairo_type": "felt", - "offset": 0 - } - }, - "size": 1, - "type": "struct" - }, - "starkware.cairo.common.math_cmp.is_nn.ImplicitArgs": { - "full_name": "starkware.cairo.common.math_cmp.is_nn.ImplicitArgs", - "members": { - "range_check_ptr": { - "cairo_type": "felt", - "offset": 0 - } - }, - "size": 1, - "type": "struct" - }, - "starkware.cairo.common.math_cmp.is_nn.Return": { - "cairo_type": "felt", - "type": "type_definition" - }, - "starkware.cairo.common.math_cmp.is_nn.SIZEOF_LOCALS": { - "type": "const", - "value": 0 - }, - "starkware.cairo.common.math_cmp.is_nn.a": { - "cairo_type": "felt", - "full_name": "starkware.cairo.common.math_cmp.is_nn.a", - "references": [ - { - "ap_tracking_data": { - "group": 32, - "offset": 0 - }, - "pc": 349, - "value": "[cast(fp + (-3), felt*)]" - } - ], - "type": "reference" - }, - "starkware.cairo.common.math_cmp.is_nn.need_felt_comparison": { - "pc": 373, - "type": "label" - }, - "starkware.cairo.common.math_cmp.is_nn.out_of_range": { - "pc": 359, - "type": "label" - }, - "starkware.cairo.common.math_cmp.is_not_zero": { - "decorators": [ - "known_ap_change" - ], - "pc": 341, - "type": "function" - }, - "starkware.cairo.common.math_cmp.is_not_zero.Args": { - "full_name": "starkware.cairo.common.math_cmp.is_not_zero.Args", - "members": { - "value": { - "cairo_type": "felt", - "offset": 0 - } - }, - "size": 1, - "type": "struct" - }, - "starkware.cairo.common.math_cmp.is_not_zero.ImplicitArgs": { - "full_name": "starkware.cairo.common.math_cmp.is_not_zero.ImplicitArgs", - "members": {}, - "size": 0, - "type": "struct" - }, - "starkware.cairo.common.math_cmp.is_not_zero.Return": { - "cairo_type": "felt", - "type": "type_definition" - }, - "starkware.cairo.common.math_cmp.is_not_zero.SIZEOF_LOCALS": { - "type": "const", - "value": 0 - }, - "starkware.cairo.common.memcpy.memcpy": { - "decorators": [], - "pc": 9, - "type": "function" - }, - "starkware.cairo.common.memcpy.memcpy.Args": { - "full_name": "starkware.cairo.common.memcpy.memcpy.Args", - "members": { - "dst": { - "cairo_type": "felt*", - "offset": 0 - }, - "len": { - "cairo_type": "felt", - "offset": 2 - }, - "src": { - "cairo_type": "felt*", - "offset": 1 - } - }, - "size": 3, - "type": "struct" - }, - "starkware.cairo.common.memcpy.memcpy.ImplicitArgs": { - "full_name": "starkware.cairo.common.memcpy.memcpy.ImplicitArgs", - "members": {}, - "size": 0, - "type": "struct" - }, - "starkware.cairo.common.memcpy.memcpy.LoopFrame": { - "full_name": "starkware.cairo.common.memcpy.memcpy.LoopFrame", - "members": { - "dst": { - "cairo_type": "felt*", - "offset": 0 - }, - "src": { - "cairo_type": "felt*", - "offset": 1 - } - }, - "size": 2, - "type": "struct" - }, - "starkware.cairo.common.memcpy.memcpy.Return": { - "cairo_type": "()", - "type": "type_definition" - }, - "starkware.cairo.common.memcpy.memcpy.SIZEOF_LOCALS": { - "type": "const", - "value": 0 - }, - "starkware.cairo.common.memcpy.memcpy.continue_copying": { - "cairo_type": "felt", - "full_name": "starkware.cairo.common.memcpy.memcpy.continue_copying", - "references": [ - { - "ap_tracking_data": { - "group": 2, - "offset": 3 - }, - "pc": 16, - "value": "[cast(ap, felt*)]" - } - ], - "type": "reference" - }, - "starkware.cairo.common.memcpy.memcpy.len": { - "cairo_type": "felt", - "full_name": "starkware.cairo.common.memcpy.memcpy.len", - "references": [ - { - "ap_tracking_data": { - "group": 2, - "offset": 0 - }, - "pc": 9, - "value": "[cast(fp + (-3), felt*)]" - } - ], - "type": "reference" - }, - "starkware.cairo.common.memcpy.memcpy.loop": { - "pc": 14, - "type": "label" - }, - "starkware.cairo.common.poseidon_state.PoseidonBuiltinState": { - "full_name": "starkware.cairo.common.poseidon_state.PoseidonBuiltinState", - "members": { - "s0": { - "cairo_type": "felt", - "offset": 0 - }, - "s1": { - "cairo_type": "felt", - "offset": 1 - }, - "s2": { - "cairo_type": "felt", - "offset": 2 - } - }, - "size": 3, - "type": "struct" - }, - "starkware.cairo.common.pow.assert_le": { - "destination": "starkware.cairo.common.math.assert_le", - "type": "alias" - }, - "starkware.cairo.common.pow.get_ap": { - "destination": "starkware.cairo.common.registers.get_ap", - "type": "alias" - }, - "starkware.cairo.common.pow.get_fp_and_pc": { - "destination": "starkware.cairo.common.registers.get_fp_and_pc", - "type": "alias" - }, - "starkware.cairo.common.registers.get_ap": { - "destination": "starkware.cairo.lang.compiler.lib.registers.get_ap", - "type": "alias" - }, - "starkware.cairo.common.registers.get_fp_and_pc": { - "destination": "starkware.cairo.lang.compiler.lib.registers.get_fp_and_pc", - "type": "alias" - }, - "starkware.cairo.common.registers.get_label_location": { - "decorators": [], - "pc": 407, - "type": "function" - }, - "starkware.cairo.common.registers.get_label_location.Args": { - "full_name": "starkware.cairo.common.registers.get_label_location.Args", - "members": { - "label_value": { - "cairo_type": "codeoffset", - "offset": 0 - } - }, - "size": 1, - "type": "struct" - }, - "starkware.cairo.common.registers.get_label_location.ImplicitArgs": { - "full_name": "starkware.cairo.common.registers.get_label_location.ImplicitArgs", - "members": {}, - "size": 0, - "type": "struct" - }, - "starkware.cairo.common.registers.get_label_location.Return": { - "cairo_type": "(res: felt*)", - "type": "type_definition" - }, - "starkware.cairo.common.registers.get_label_location.SIZEOF_LOCALS": { - "type": "const", - "value": 0 - }, - "starkware.cairo.common.registers.get_label_location.ret_pc_label": { - "pc": 409, - "type": "label" - }, - "starkware.cairo.common.squash_dict.DictAccess": { - "destination": "starkware.cairo.common.dict_access.DictAccess", - "type": "alias" - }, - "starkware.cairo.common.squash_dict.assert_lt_felt": { - "destination": "starkware.cairo.common.math.assert_lt_felt", - "type": "alias" - }, - "starkware.cairo.common.squash_dict.squash_dict": { - "decorators": [], - "pc": 2356, - "type": "function" - }, - "starkware.cairo.common.squash_dict.squash_dict.Args": { - "full_name": "starkware.cairo.common.squash_dict.squash_dict.Args", - "members": { - "dict_accesses": { - "cairo_type": "starkware.cairo.common.dict_access.DictAccess*", - "offset": 0 - }, - "dict_accesses_end": { - "cairo_type": "starkware.cairo.common.dict_access.DictAccess*", - "offset": 1 - }, - "squashed_dict": { - "cairo_type": "starkware.cairo.common.dict_access.DictAccess*", - "offset": 2 - } - }, - "size": 3, - "type": "struct" - }, - "starkware.cairo.common.squash_dict.squash_dict.ImplicitArgs": { - "full_name": "starkware.cairo.common.squash_dict.squash_dict.ImplicitArgs", - "members": { - "range_check_ptr": { - "cairo_type": "felt", - "offset": 0 - } - }, - "size": 1, - "type": "struct" - }, - "starkware.cairo.common.squash_dict.squash_dict.Return": { - "cairo_type": "(squashed_dict: starkware.cairo.common.dict_access.DictAccess*)", - "type": "type_definition" - }, - "starkware.cairo.common.squash_dict.squash_dict.SIZEOF_LOCALS": { - "type": "const", - "value": 3 - }, - "starkware.cairo.common.squash_dict.squash_dict.big_keys": { - "cairo_type": "felt", - "full_name": "starkware.cairo.common.squash_dict.squash_dict.big_keys", - "references": [ - { - "ap_tracking_data": { - "group": 145, - "offset": 3 - }, - "pc": 2364, - "value": "[cast(fp + 2, felt*)]" - } - ], - "type": "reference" - }, - "starkware.cairo.common.squash_dict.squash_dict.dict_accesses": { - "cairo_type": "starkware.cairo.common.dict_access.DictAccess*", - "full_name": "starkware.cairo.common.squash_dict.squash_dict.dict_accesses", - "references": [ - { - "ap_tracking_data": { - "group": 145, - "offset": 0 - }, - "pc": 2356, - "value": "[cast(fp + (-5), starkware.cairo.common.dict_access.DictAccess**)]" - } - ], - "type": "reference" - }, - "starkware.cairo.common.squash_dict.squash_dict.first_key": { - "cairo_type": "felt", - "full_name": "starkware.cairo.common.squash_dict.squash_dict.first_key", - "references": [ - { - "ap_tracking_data": { - "group": 145, - "offset": 3 - }, - "pc": 2364, - "value": "[cast(fp + 1, felt*)]" - } - ], - "type": "reference" - }, - "starkware.cairo.common.squash_dict.squash_dict.n_accesses": { - "cairo_type": "felt", - "full_name": "starkware.cairo.common.squash_dict.squash_dict.n_accesses", - "references": [ - { - "ap_tracking_data": { - "group": 145, - "offset": 4 - }, - "pc": 2366, - "value": "[cast(ap + (-1), felt*)]" - } - ], - "type": "reference" - }, - "starkware.cairo.common.squash_dict.squash_dict.ptr_diff": { - "cairo_type": "felt", - "full_name": "starkware.cairo.common.squash_dict.squash_dict.ptr_diff", - "references": [ - { - "ap_tracking_data": { - "group": 145, - "offset": 3 - }, - "pc": 2359, - "value": "[cast(fp, felt*)]" - } - ], - "type": "reference" - }, - "starkware.cairo.common.squash_dict.squash_dict_inner": { - "decorators": [], - "pc": 2384, - "type": "function" - }, - "starkware.cairo.common.squash_dict.squash_dict_inner.Args": { - "full_name": "starkware.cairo.common.squash_dict.squash_dict_inner.Args", - "members": { - "big_keys": { - "cairo_type": "felt", - "offset": 6 - }, - "dict_accesses": { - "cairo_type": "starkware.cairo.common.dict_access.DictAccess*", - "offset": 1 - }, - "dict_accesses_end_minus1": { - "cairo_type": "felt*", - "offset": 2 - }, - "key": { - "cairo_type": "felt", - "offset": 3 - }, - "range_check_ptr": { - "cairo_type": "felt", - "offset": 0 - }, - "remaining_accesses": { - "cairo_type": "felt", - "offset": 4 - }, - "squashed_dict": { - "cairo_type": "starkware.cairo.common.dict_access.DictAccess*", - "offset": 5 - } - }, - "size": 7, - "type": "struct" - }, - "starkware.cairo.common.squash_dict.squash_dict_inner.ImplicitArgs": { - "full_name": "starkware.cairo.common.squash_dict.squash_dict_inner.ImplicitArgs", - "members": {}, - "size": 0, - "type": "struct" - }, - "starkware.cairo.common.squash_dict.squash_dict_inner.LoopLocals": { - "full_name": "starkware.cairo.common.squash_dict.squash_dict_inner.LoopLocals", - "members": { - "access_ptr": { - "cairo_type": "starkware.cairo.common.dict_access.DictAccess*", - "offset": 1 - }, - "range_check_ptr": { - "cairo_type": "felt", - "offset": 2 - }, - "value": { - "cairo_type": "felt", - "offset": 0 - } - }, - "size": 3, - "type": "struct" - }, - "starkware.cairo.common.squash_dict.squash_dict_inner.LoopTemps": { - "full_name": "starkware.cairo.common.squash_dict.squash_dict_inner.LoopTemps", - "members": { - "index_delta": { - "cairo_type": "felt", - "offset": 1 - }, - "index_delta_minus1": { - "cairo_type": "felt", - "offset": 0 - }, - "ptr_delta": { - "cairo_type": "felt", - "offset": 2 - }, - "should_continue": { - "cairo_type": "felt", - "offset": 3 - } - }, - "size": 4, - "type": "struct" - }, - "starkware.cairo.common.squash_dict.squash_dict_inner.Return": { - "cairo_type": "(range_check_ptr: felt, squashed_dict: starkware.cairo.common.dict_access.DictAccess*)", - "type": "type_definition" - }, - "starkware.cairo.common.squash_dict.squash_dict_inner.SIZEOF_LOCALS": { - "type": "const", - "value": 2 - }, - "starkware.cairo.common.squash_dict.squash_dict_inner.loop": { - "pc": 2399, - "type": "label" - }, - "starkware.cairo.common.squash_dict.squash_dict_inner.loop_temps": { - "cairo_type": "starkware.cairo.common.squash_dict.squash_dict_inner.LoopTemps*", - "full_name": "starkware.cairo.common.squash_dict.squash_dict_inner.loop_temps", - "references": [ - { - "ap_tracking_data": { - "group": 147, - "offset": 7 - }, - "pc": 2399, - "value": "cast(ap, starkware.cairo.common.squash_dict.squash_dict_inner.LoopTemps*)" - } - ], - "type": "reference" - }, - "starkware.cairo.common.squash_dict.squash_dict_inner.n_used_accesses": { - "cairo_type": "felt", - "full_name": "starkware.cairo.common.squash_dict.squash_dict_inner.n_used_accesses", - "references": [ - { - "ap_tracking_data": { - "group": 148, - "offset": 2 - }, - "pc": 2415, - "value": "[cast(ap + (-1), felt*)]" - } - ], - "type": "reference" - }, - "starkware.cairo.common.squash_dict.squash_dict_inner.next_key": { - "cairo_type": "felt", - "full_name": "starkware.cairo.common.squash_dict.squash_dict_inner.next_key", - "references": [ - { - "ap_tracking_data": { - "group": 148, - "offset": 3 - }, - "pc": 2424, - "value": "[cast(ap, felt*)]" - }, - { - "ap_tracking_data": { - "group": 148, - "offset": 10 - }, - "pc": 2437, - "value": "[cast(ap + (-1), felt*)]" - }, - { - "ap_tracking_data": { - "group": 148, - "offset": 33 - }, - "pc": 2449, - "value": "[cast(ap + (-1), felt*)]" - } - ], - "type": "reference" - }, - "starkware.cairo.common.squash_dict.squash_dict_inner.range_check_ptr": { - "cairo_type": "felt", - "full_name": "starkware.cairo.common.squash_dict.squash_dict_inner.range_check_ptr", - "references": [ - { - "ap_tracking_data": { - "group": 147, - "offset": 0 - }, - "pc": 2384, - "value": "[cast(fp + (-9), felt*)]" - }, - { - "ap_tracking_data": { - "group": 148, - "offset": 2 - }, - "pc": 2416, - "value": "cast([ap + (-3)] + 1, felt)" - }, - { - "ap_tracking_data": { - "group": 148, - "offset": 7 - }, - "pc": 2434, - "value": "[cast(ap + (-1), felt*)]" - }, - { - "ap_tracking_data": { - "group": 148, - "offset": 30 - }, - "pc": 2446, - "value": "[cast(ap + (-1), felt*)]" - } - ], - "type": "reference" - }, - "starkware.cairo.common.squash_dict.squash_dict_inner.should_skip_loop": { - "cairo_type": "felt", - "full_name": "starkware.cairo.common.squash_dict.squash_dict_inner.should_skip_loop", - "references": [ - { - "ap_tracking_data": { - "group": 147, - "offset": 7 - }, - "pc": 2397, - "value": "[cast(fp + 1, felt*)]" - } - ], - "type": "reference" - }, - "starkware.cairo.common.squash_dict.squash_dict_inner.skip_loop": { - "pc": 2412, - "type": "label" - }, - "starkware.cairo.common.uint256.ALL_ONES": { - "type": "const", - "value": 340282366920938463463374607431768211455 - }, - "starkware.cairo.common.uint256.BitwiseBuiltin": { - "destination": "starkware.cairo.common.cairo_builtins.BitwiseBuiltin", - "type": "alias" - }, - "starkware.cairo.common.uint256.HALF_SHIFT": { - "type": "const", - "value": 18446744073709551616 - }, - "starkware.cairo.common.uint256.SHIFT": { - "type": "const", - "value": 340282366920938463463374607431768211456 - }, - "starkware.cairo.common.uint256.Uint256": { - "full_name": "starkware.cairo.common.uint256.Uint256", - "members": { - "high": { - "cairo_type": "felt", - "offset": 1 - }, - "low": { - "cairo_type": "felt", - "offset": 0 - } - }, - "size": 2, - "type": "struct" - }, - "starkware.cairo.common.uint256.assert_in_range": { - "destination": "starkware.cairo.common.math.assert_in_range", - "type": "alias" - }, - "starkware.cairo.common.uint256.assert_le": { - "destination": "starkware.cairo.common.math.assert_le", - "type": "alias" - }, - "starkware.cairo.common.uint256.assert_nn_le": { - "destination": "starkware.cairo.common.math.assert_nn_le", - "type": "alias" - }, - "starkware.cairo.common.uint256.assert_not_zero": { - "destination": "starkware.cairo.common.math.assert_not_zero", - "type": "alias" - }, - "starkware.cairo.common.uint256.assert_uint256_le": { - "decorators": [], - "pc": 546, - "type": "function" - }, - "starkware.cairo.common.uint256.assert_uint256_le.Args": { - "full_name": "starkware.cairo.common.uint256.assert_uint256_le.Args", - "members": { - "a": { - "cairo_type": "starkware.cairo.common.uint256.Uint256", - "offset": 0 - }, - "b": { - "cairo_type": "starkware.cairo.common.uint256.Uint256", - "offset": 2 - } - }, - "size": 4, - "type": "struct" - }, - "starkware.cairo.common.uint256.assert_uint256_le.ImplicitArgs": { - "full_name": "starkware.cairo.common.uint256.assert_uint256_le.ImplicitArgs", - "members": { - "range_check_ptr": { - "cairo_type": "felt", - "offset": 0 - } - }, - "size": 1, - "type": "struct" - }, - "starkware.cairo.common.uint256.assert_uint256_le.Return": { - "cairo_type": "()", - "type": "type_definition" - }, - "starkware.cairo.common.uint256.assert_uint256_le.SIZEOF_LOCALS": { - "type": "const", - "value": 0 - }, - "starkware.cairo.common.uint256.bitwise_and": { - "destination": "starkware.cairo.common.bitwise.bitwise_and", - "type": "alias" - }, - "starkware.cairo.common.uint256.bitwise_or": { - "destination": "starkware.cairo.common.bitwise.bitwise_or", - "type": "alias" - }, - "starkware.cairo.common.uint256.bitwise_xor": { - "destination": "starkware.cairo.common.bitwise.bitwise_xor", - "type": "alias" - }, - "starkware.cairo.common.uint256.get_ap": { - "destination": "starkware.cairo.common.registers.get_ap", - "type": "alias" - }, - "starkware.cairo.common.uint256.get_fp_and_pc": { - "destination": "starkware.cairo.common.registers.get_fp_and_pc", - "type": "alias" - }, - "starkware.cairo.common.uint256.is_le": { - "destination": "starkware.cairo.common.math_cmp.is_le", - "type": "alias" - }, - "starkware.cairo.common.uint256.pow": { - "destination": "starkware.cairo.common.pow.pow", - "type": "alias" - }, - "starkware.cairo.common.uint256.split_64": { - "decorators": [], - "pc": 440, - "type": "function" - }, - "starkware.cairo.common.uint256.split_64.Args": { - "full_name": "starkware.cairo.common.uint256.split_64.Args", - "members": { - "a": { - "cairo_type": "felt", - "offset": 0 - } - }, - "size": 1, - "type": "struct" - }, - "starkware.cairo.common.uint256.split_64.ImplicitArgs": { - "full_name": "starkware.cairo.common.uint256.split_64.ImplicitArgs", - "members": { - "range_check_ptr": { - "cairo_type": "felt", - "offset": 0 - } - }, - "size": 1, - "type": "struct" - }, - "starkware.cairo.common.uint256.split_64.Return": { - "cairo_type": "(low: felt, high: felt)", - "type": "type_definition" - }, - "starkware.cairo.common.uint256.split_64.SIZEOF_LOCALS": { - "type": "const", - "value": 2 - }, - "starkware.cairo.common.uint256.split_64.a": { - "cairo_type": "felt", - "full_name": "starkware.cairo.common.uint256.split_64.a", - "references": [ - { - "ap_tracking_data": { - "group": 38, - "offset": 0 - }, - "pc": 440, - "value": "[cast(fp + (-3), felt*)]" - } - ], - "type": "reference" - }, - "starkware.cairo.common.uint256.split_64.high": { - "cairo_type": "felt", - "full_name": "starkware.cairo.common.uint256.split_64.high", - "references": [ - { - "ap_tracking_data": { - "group": 38, - "offset": 2 - }, - "pc": 442, - "value": "[cast(fp + 1, felt*)]" - } - ], - "type": "reference" - }, - "starkware.cairo.common.uint256.split_64.low": { - "cairo_type": "felt", - "full_name": "starkware.cairo.common.uint256.split_64.low", - "references": [ - { - "ap_tracking_data": { - "group": 38, - "offset": 2 - }, - "pc": 442, - "value": "[cast(fp, felt*)]" - } - ], - "type": "reference" - }, - "starkware.cairo.common.uint256.uint256_add": { - "decorators": [], - "pc": 418, - "type": "function" - }, - "starkware.cairo.common.uint256.uint256_add.Args": { - "full_name": "starkware.cairo.common.uint256.uint256_add.Args", - "members": { - "a": { - "cairo_type": "starkware.cairo.common.uint256.Uint256", - "offset": 0 - }, - "b": { - "cairo_type": "starkware.cairo.common.uint256.Uint256", - "offset": 2 - } - }, - "size": 4, - "type": "struct" - }, - "starkware.cairo.common.uint256.uint256_add.ImplicitArgs": { - "full_name": "starkware.cairo.common.uint256.uint256_add.ImplicitArgs", - "members": { - "range_check_ptr": { - "cairo_type": "felt", - "offset": 0 - } - }, - "size": 1, - "type": "struct" - }, - "starkware.cairo.common.uint256.uint256_add.Return": { - "cairo_type": "(res: starkware.cairo.common.uint256.Uint256, carry: felt)", - "type": "type_definition" - }, - "starkware.cairo.common.uint256.uint256_add.SIZEOF_LOCALS": { - "type": "const", - "value": 4 - }, - "starkware.cairo.common.uint256.uint256_add.a": { - "cairo_type": "starkware.cairo.common.uint256.Uint256", - "full_name": "starkware.cairo.common.uint256.uint256_add.a", - "references": [ - { - "ap_tracking_data": { - "group": 37, - "offset": 0 - }, - "pc": 418, - "value": "[cast(fp + (-6), starkware.cairo.common.uint256.Uint256*)]" - } - ], - "type": "reference" - }, - "starkware.cairo.common.uint256.uint256_add.b": { - "cairo_type": "starkware.cairo.common.uint256.Uint256", - "full_name": "starkware.cairo.common.uint256.uint256_add.b", - "references": [ - { - "ap_tracking_data": { - "group": 37, - "offset": 0 - }, - "pc": 418, - "value": "[cast(fp + (-4), starkware.cairo.common.uint256.Uint256*)]" - } - ], - "type": "reference" - }, - "starkware.cairo.common.uint256.uint256_add.carry_high": { - "cairo_type": "felt", - "full_name": "starkware.cairo.common.uint256.uint256_add.carry_high", - "references": [ - { - "ap_tracking_data": { - "group": 37, - "offset": 4 - }, - "pc": 420, - "value": "[cast(fp + 3, felt*)]" - } - ], - "type": "reference" - }, - "starkware.cairo.common.uint256.uint256_add.carry_low": { - "cairo_type": "felt", - "full_name": "starkware.cairo.common.uint256.uint256_add.carry_low", - "references": [ - { - "ap_tracking_data": { - "group": 37, - "offset": 4 - }, - "pc": 420, - "value": "[cast(fp + 2, felt*)]" - } - ], - "type": "reference" - }, - "starkware.cairo.common.uint256.uint256_check": { - "decorators": [], - "pc": 413, - "type": "function" - }, - "starkware.cairo.common.uint256.uint256_check.Args": { - "full_name": "starkware.cairo.common.uint256.uint256_check.Args", - "members": { - "a": { - "cairo_type": "starkware.cairo.common.uint256.Uint256", - "offset": 0 - } - }, - "size": 2, - "type": "struct" - }, - "starkware.cairo.common.uint256.uint256_check.ImplicitArgs": { - "full_name": "starkware.cairo.common.uint256.uint256_check.ImplicitArgs", - "members": { - "range_check_ptr": { - "cairo_type": "felt", - "offset": 0 - } - }, - "size": 1, - "type": "struct" - }, - "starkware.cairo.common.uint256.uint256_check.Return": { - "cairo_type": "()", - "type": "type_definition" - }, - "starkware.cairo.common.uint256.uint256_check.SIZEOF_LOCALS": { - "type": "const", - "value": 0 - }, - "starkware.cairo.common.uint256.uint256_eq": { - "decorators": [], - "pc": 524, - "type": "function" - }, - "starkware.cairo.common.uint256.uint256_eq.Args": { - "full_name": "starkware.cairo.common.uint256.uint256_eq.Args", - "members": { - "a": { - "cairo_type": "starkware.cairo.common.uint256.Uint256", - "offset": 0 - }, - "b": { - "cairo_type": "starkware.cairo.common.uint256.Uint256", - "offset": 2 - } - }, - "size": 4, - "type": "struct" - }, - "starkware.cairo.common.uint256.uint256_eq.ImplicitArgs": { - "full_name": "starkware.cairo.common.uint256.uint256_eq.ImplicitArgs", - "members": { - "range_check_ptr": { - "cairo_type": "felt", - "offset": 0 - } - }, - "size": 1, - "type": "struct" - }, - "starkware.cairo.common.uint256.uint256_eq.Return": { - "cairo_type": "(res: felt)", - "type": "type_definition" - }, - "starkware.cairo.common.uint256.uint256_eq.SIZEOF_LOCALS": { - "type": "const", - "value": 0 - }, - "starkware.cairo.common.uint256.uint256_le": { - "decorators": [], - "pc": 473, - "type": "function" - }, - "starkware.cairo.common.uint256.uint256_le.Args": { - "full_name": "starkware.cairo.common.uint256.uint256_le.Args", - "members": { - "a": { - "cairo_type": "starkware.cairo.common.uint256.Uint256", - "offset": 0 - }, - "b": { - "cairo_type": "starkware.cairo.common.uint256.Uint256", - "offset": 2 - } - }, - "size": 4, - "type": "struct" - }, - "starkware.cairo.common.uint256.uint256_le.ImplicitArgs": { - "full_name": "starkware.cairo.common.uint256.uint256_le.ImplicitArgs", - "members": { - "range_check_ptr": { - "cairo_type": "felt", - "offset": 0 - } - }, - "size": 1, - "type": "struct" - }, - "starkware.cairo.common.uint256.uint256_le.Return": { - "cairo_type": "(res: felt)", - "type": "type_definition" - }, - "starkware.cairo.common.uint256.uint256_le.SIZEOF_LOCALS": { - "type": "const", - "value": 0 - }, - "starkware.cairo.common.uint256.uint256_lt": { - "decorators": [], - "pc": 456, - "type": "function" - }, - "starkware.cairo.common.uint256.uint256_lt.Args": { - "full_name": "starkware.cairo.common.uint256.uint256_lt.Args", - "members": { - "a": { - "cairo_type": "starkware.cairo.common.uint256.Uint256", - "offset": 0 - }, - "b": { - "cairo_type": "starkware.cairo.common.uint256.Uint256", - "offset": 2 - } - }, - "size": 4, - "type": "struct" - }, - "starkware.cairo.common.uint256.uint256_lt.ImplicitArgs": { - "full_name": "starkware.cairo.common.uint256.uint256_lt.ImplicitArgs", - "members": { - "range_check_ptr": { - "cairo_type": "felt", - "offset": 0 - } - }, - "size": 1, - "type": "struct" - }, - "starkware.cairo.common.uint256.uint256_lt.Return": { - "cairo_type": "(res: felt)", - "type": "type_definition" - }, - "starkware.cairo.common.uint256.uint256_lt.SIZEOF_LOCALS": { - "type": "const", - "value": 0 - }, - "starkware.cairo.common.uint256.uint256_neg": { - "decorators": [], - "pc": 493, - "type": "function" - }, - "starkware.cairo.common.uint256.uint256_neg.Args": { - "full_name": "starkware.cairo.common.uint256.uint256_neg.Args", - "members": { - "a": { - "cairo_type": "starkware.cairo.common.uint256.Uint256", - "offset": 0 - } - }, - "size": 2, - "type": "struct" - }, - "starkware.cairo.common.uint256.uint256_neg.ImplicitArgs": { - "full_name": "starkware.cairo.common.uint256.uint256_neg.ImplicitArgs", - "members": { - "range_check_ptr": { - "cairo_type": "felt", - "offset": 0 - } - }, - "size": 1, - "type": "struct" - }, - "starkware.cairo.common.uint256.uint256_neg.Return": { - "cairo_type": "(res: starkware.cairo.common.uint256.Uint256)", - "type": "type_definition" - }, - "starkware.cairo.common.uint256.uint256_neg.SIZEOF_LOCALS": { - "type": "const", - "value": 0 - }, - "starkware.cairo.common.uint256.uint256_not": { - "decorators": [], - "pc": 485, - "type": "function" - }, - "starkware.cairo.common.uint256.uint256_not.Args": { - "full_name": "starkware.cairo.common.uint256.uint256_not.Args", - "members": { - "a": { - "cairo_type": "starkware.cairo.common.uint256.Uint256", - "offset": 0 - } - }, - "size": 2, - "type": "struct" - }, - "starkware.cairo.common.uint256.uint256_not.ImplicitArgs": { - "full_name": "starkware.cairo.common.uint256.uint256_not.ImplicitArgs", - "members": { - "range_check_ptr": { - "cairo_type": "felt", - "offset": 0 - } - }, - "size": 1, - "type": "struct" - }, - "starkware.cairo.common.uint256.uint256_not.Return": { - "cairo_type": "(res: starkware.cairo.common.uint256.Uint256)", - "type": "type_definition" - }, - "starkware.cairo.common.uint256.uint256_not.SIZEOF_LOCALS": { - "type": "const", - "value": 0 - }, - "starkware.cairo.common.uint256.uint256_sub": { - "decorators": [], - "pc": 508, - "type": "function" - }, - "starkware.cairo.common.uint256.uint256_sub.Args": { - "full_name": "starkware.cairo.common.uint256.uint256_sub.Args", - "members": { - "a": { - "cairo_type": "starkware.cairo.common.uint256.Uint256", - "offset": 0 - }, - "b": { - "cairo_type": "starkware.cairo.common.uint256.Uint256", - "offset": 2 - } - }, - "size": 4, - "type": "struct" - }, - "starkware.cairo.common.uint256.uint256_sub.ImplicitArgs": { - "full_name": "starkware.cairo.common.uint256.uint256_sub.ImplicitArgs", - "members": { - "range_check_ptr": { - "cairo_type": "felt", - "offset": 0 - } - }, - "size": 1, - "type": "struct" - }, - "starkware.cairo.common.uint256.uint256_sub.Return": { - "cairo_type": "(res: starkware.cairo.common.uint256.Uint256)", - "type": "type_definition" - }, - "starkware.cairo.common.uint256.uint256_sub.SIZEOF_LOCALS": { - "type": "const", - "value": 0 - }, - "starkware.cairo.lang.compiler.lib.registers.get_fp_and_pc": { - "decorators": [], - "pc": 24, - "type": "function" - }, - "starkware.cairo.lang.compiler.lib.registers.get_fp_and_pc.Args": { - "full_name": "starkware.cairo.lang.compiler.lib.registers.get_fp_and_pc.Args", - "members": {}, - "size": 0, - "type": "struct" - }, - "starkware.cairo.lang.compiler.lib.registers.get_fp_and_pc.ImplicitArgs": { - "full_name": "starkware.cairo.lang.compiler.lib.registers.get_fp_and_pc.ImplicitArgs", - "members": {}, - "size": 0, - "type": "struct" - }, - "starkware.cairo.lang.compiler.lib.registers.get_fp_and_pc.Return": { - "cairo_type": "(fp_val: felt*, pc_val: felt*)", - "type": "type_definition" - }, - "starkware.cairo.lang.compiler.lib.registers.get_fp_and_pc.SIZEOF_LOCALS": { - "type": "const", - "value": 0 - }, - "starkware.starknet.common.storage.ADDR_BOUND": { - "type": "const", - "value": -106710729501573572985208420194530329073740042555888586719489 - }, - "starkware.starknet.common.storage.MAX_STORAGE_ITEM_SIZE": { - "type": "const", - "value": 256 - }, - "starkware.starknet.common.storage.assert_250_bit": { - "destination": "starkware.cairo.common.math.assert_250_bit", - "type": "alias" - }, - "starkware.starknet.common.storage.normalize_address": { - "decorators": [ - "known_ap_change" - ], - "pc": 185, - "type": "function" - }, - "starkware.starknet.common.storage.normalize_address.Args": { - "full_name": "starkware.starknet.common.storage.normalize_address.Args", - "members": { - "addr": { - "cairo_type": "felt", - "offset": 0 - } - }, - "size": 1, - "type": "struct" - }, - "starkware.starknet.common.storage.normalize_address.ImplicitArgs": { - "full_name": "starkware.starknet.common.storage.normalize_address.ImplicitArgs", - "members": { - "range_check_ptr": { - "cairo_type": "felt", - "offset": 0 - } - }, - "size": 1, - "type": "struct" - }, - "starkware.starknet.common.storage.normalize_address.Return": { - "cairo_type": "(res: felt)", - "type": "type_definition" - }, - "starkware.starknet.common.storage.normalize_address.SIZEOF_LOCALS": { - "type": "const", - "value": 0 - }, - "starkware.starknet.common.storage.normalize_address.addr": { - "cairo_type": "felt", - "full_name": "starkware.starknet.common.storage.normalize_address.addr", - "references": [ - { - "ap_tracking_data": { - "group": 17, - "offset": 0 - }, - "pc": 185, - "value": "[cast(fp + (-3), felt*)]" - } - ], - "type": "reference" - }, - "starkware.starknet.common.storage.normalize_address.is_250": { - "cairo_type": "felt", - "full_name": "starkware.starknet.common.storage.normalize_address.is_250", - "references": [ - { - "ap_tracking_data": { - "group": 17, - "offset": 2 - }, - "pc": 205, - "value": "[cast(ap + (-1), felt*)]" - } - ], - "type": "reference" - }, - "starkware.starknet.common.storage.normalize_address.is_small": { - "cairo_type": "felt", - "full_name": "starkware.starknet.common.storage.normalize_address.is_small", - "references": [ - { - "ap_tracking_data": { - "group": 17, - "offset": 1 - }, - "pc": 187, - "value": "[cast(ap + (-1), felt*)]" - } - ], - "type": "reference" - }, - "starkware.starknet.common.syscalls.CALL_CONTRACT_SELECTOR": { - "type": "const", - "value": 20853273475220472486191784820 - }, - "starkware.starknet.common.syscalls.CallContract": { - "full_name": "starkware.starknet.common.syscalls.CallContract", - "members": { - "request": { - "cairo_type": "starkware.starknet.common.syscalls.CallContractRequest", - "offset": 0 - }, - "response": { - "cairo_type": "starkware.starknet.common.syscalls.CallContractResponse", - "offset": 5 - } - }, - "size": 7, - "type": "struct" - }, - "starkware.starknet.common.syscalls.CallContractRequest": { - "full_name": "starkware.starknet.common.syscalls.CallContractRequest", - "members": { - "calldata": { - "cairo_type": "felt*", - "offset": 4 - }, - "calldata_size": { - "cairo_type": "felt", - "offset": 3 - }, - "contract_address": { - "cairo_type": "felt", - "offset": 1 - }, - "function_selector": { - "cairo_type": "felt", - "offset": 2 - }, - "selector": { - "cairo_type": "felt", - "offset": 0 - } - }, - "size": 5, - "type": "struct" - }, - "starkware.starknet.common.syscalls.CallContractResponse": { - "full_name": "starkware.starknet.common.syscalls.CallContractResponse", - "members": { - "retdata": { - "cairo_type": "felt*", - "offset": 1 - }, - "retdata_size": { - "cairo_type": "felt", - "offset": 0 - } - }, - "size": 2, - "type": "struct" - }, - "starkware.starknet.common.syscalls.DELEGATE_CALL_SELECTOR": { - "type": "const", - "value": 21167594061783206823196716140 - }, - "starkware.starknet.common.syscalls.DELEGATE_L1_HANDLER_SELECTOR": { - "type": "const", - "value": 23274015802972845247556842986379118667122 - }, - "starkware.starknet.common.syscalls.DEPLOY_SELECTOR": { - "type": "const", - "value": 75202468540281 - }, - "starkware.starknet.common.syscalls.Deploy": { - "full_name": "starkware.starknet.common.syscalls.Deploy", - "members": { - "request": { - "cairo_type": "starkware.starknet.common.syscalls.DeployRequest", - "offset": 0 - }, - "response": { - "cairo_type": "starkware.starknet.common.syscalls.DeployResponse", - "offset": 6 - } - }, - "size": 9, - "type": "struct" - }, - "starkware.starknet.common.syscalls.DeployRequest": { - "full_name": "starkware.starknet.common.syscalls.DeployRequest", - "members": { - "class_hash": { - "cairo_type": "felt", - "offset": 1 - }, - "constructor_calldata": { - "cairo_type": "felt*", - "offset": 4 - }, - "constructor_calldata_size": { - "cairo_type": "felt", - "offset": 3 - }, - "contract_address_salt": { - "cairo_type": "felt", - "offset": 2 - }, - "deploy_from_zero": { - "cairo_type": "felt", - "offset": 5 - }, - "selector": { - "cairo_type": "felt", - "offset": 0 - } - }, - "size": 6, - "type": "struct" - }, - "starkware.starknet.common.syscalls.DeployResponse": { - "full_name": "starkware.starknet.common.syscalls.DeployResponse", - "members": { - "constructor_retdata": { - "cairo_type": "felt*", - "offset": 2 - }, - "constructor_retdata_size": { - "cairo_type": "felt", - "offset": 1 - }, - "contract_address": { - "cairo_type": "felt", - "offset": 0 - } - }, - "size": 3, - "type": "struct" - }, - "starkware.starknet.common.syscalls.DictAccess": { - "destination": "starkware.cairo.common.dict_access.DictAccess", - "type": "alias" - }, - "starkware.starknet.common.syscalls.EMIT_EVENT_SELECTOR": { - "type": "const", - "value": 1280709301550335749748 - }, - "starkware.starknet.common.syscalls.EmitEvent": { - "full_name": "starkware.starknet.common.syscalls.EmitEvent", - "members": { - "data": { - "cairo_type": "felt*", - "offset": 4 - }, - "data_len": { - "cairo_type": "felt", - "offset": 3 - }, - "keys": { - "cairo_type": "felt*", - "offset": 2 - }, - "keys_len": { - "cairo_type": "felt", - "offset": 1 - }, - "selector": { - "cairo_type": "felt", - "offset": 0 - } - }, - "size": 5, - "type": "struct" - }, - "starkware.starknet.common.syscalls.GET_BLOCK_NUMBER_SELECTOR": { - "type": "const", - "value": 1448089106835523001438702345020786 - }, - "starkware.starknet.common.syscalls.GET_BLOCK_TIMESTAMP_SELECTOR": { - "type": "const", - "value": 24294903732626645868215235778792757751152 - }, - "starkware.starknet.common.syscalls.GET_CALLER_ADDRESS_SELECTOR": { - "type": "const", - "value": 94901967781393078444254803017658102643 - }, - "starkware.starknet.common.syscalls.GET_CONTRACT_ADDRESS_SELECTOR": { - "type": "const", - "value": 6219495360805491471215297013070624192820083 - }, - "starkware.starknet.common.syscalls.GET_SEQUENCER_ADDRESS_SELECTOR": { - "type": "const", - "value": 1592190833581991703053805829594610833820054387 - }, - "starkware.starknet.common.syscalls.GET_TX_INFO_SELECTOR": { - "type": "const", - "value": 1317029390204112103023 - }, - "starkware.starknet.common.syscalls.GET_TX_SIGNATURE_SELECTOR": { - "type": "const", - "value": 1448089128652340074717162277007973 - }, - "starkware.starknet.common.syscalls.GetBlockNumber": { - "full_name": "starkware.starknet.common.syscalls.GetBlockNumber", - "members": { - "request": { - "cairo_type": "starkware.starknet.common.syscalls.GetBlockNumberRequest", - "offset": 0 - }, - "response": { - "cairo_type": "starkware.starknet.common.syscalls.GetBlockNumberResponse", - "offset": 1 - } - }, - "size": 2, - "type": "struct" - }, - "starkware.starknet.common.syscalls.GetBlockNumberRequest": { - "full_name": "starkware.starknet.common.syscalls.GetBlockNumberRequest", - "members": { - "selector": { - "cairo_type": "felt", - "offset": 0 - } - }, - "size": 1, - "type": "struct" - }, - "starkware.starknet.common.syscalls.GetBlockNumberResponse": { - "full_name": "starkware.starknet.common.syscalls.GetBlockNumberResponse", - "members": { - "block_number": { - "cairo_type": "felt", - "offset": 0 - } - }, - "size": 1, - "type": "struct" - }, - "starkware.starknet.common.syscalls.GetBlockTimestamp": { - "full_name": "starkware.starknet.common.syscalls.GetBlockTimestamp", - "members": { - "request": { - "cairo_type": "starkware.starknet.common.syscalls.GetBlockTimestampRequest", - "offset": 0 - }, - "response": { - "cairo_type": "starkware.starknet.common.syscalls.GetBlockTimestampResponse", - "offset": 1 - } - }, - "size": 2, - "type": "struct" - }, - "starkware.starknet.common.syscalls.GetBlockTimestampRequest": { - "full_name": "starkware.starknet.common.syscalls.GetBlockTimestampRequest", - "members": { - "selector": { - "cairo_type": "felt", - "offset": 0 - } - }, - "size": 1, - "type": "struct" - }, - "starkware.starknet.common.syscalls.GetBlockTimestampResponse": { - "full_name": "starkware.starknet.common.syscalls.GetBlockTimestampResponse", - "members": { - "block_timestamp": { - "cairo_type": "felt", - "offset": 0 - } - }, - "size": 1, - "type": "struct" - }, - "starkware.starknet.common.syscalls.GetCallerAddress": { - "full_name": "starkware.starknet.common.syscalls.GetCallerAddress", - "members": { - "request": { - "cairo_type": "starkware.starknet.common.syscalls.GetCallerAddressRequest", - "offset": 0 - }, - "response": { - "cairo_type": "starkware.starknet.common.syscalls.GetCallerAddressResponse", - "offset": 1 - } - }, - "size": 2, - "type": "struct" - }, - "starkware.starknet.common.syscalls.GetCallerAddressRequest": { - "full_name": "starkware.starknet.common.syscalls.GetCallerAddressRequest", - "members": { - "selector": { - "cairo_type": "felt", - "offset": 0 - } - }, - "size": 1, - "type": "struct" - }, - "starkware.starknet.common.syscalls.GetCallerAddressResponse": { - "full_name": "starkware.starknet.common.syscalls.GetCallerAddressResponse", - "members": { - "caller_address": { - "cairo_type": "felt", - "offset": 0 - } - }, - "size": 1, - "type": "struct" - }, - "starkware.starknet.common.syscalls.GetContractAddress": { - "full_name": "starkware.starknet.common.syscalls.GetContractAddress", - "members": { - "request": { - "cairo_type": "starkware.starknet.common.syscalls.GetContractAddressRequest", - "offset": 0 - }, - "response": { - "cairo_type": "starkware.starknet.common.syscalls.GetContractAddressResponse", - "offset": 1 - } - }, - "size": 2, - "type": "struct" - }, - "starkware.starknet.common.syscalls.GetContractAddressRequest": { - "full_name": "starkware.starknet.common.syscalls.GetContractAddressRequest", - "members": { - "selector": { - "cairo_type": "felt", - "offset": 0 - } - }, - "size": 1, - "type": "struct" - }, - "starkware.starknet.common.syscalls.GetContractAddressResponse": { - "full_name": "starkware.starknet.common.syscalls.GetContractAddressResponse", - "members": { - "contract_address": { - "cairo_type": "felt", - "offset": 0 - } - }, - "size": 1, - "type": "struct" - }, - "starkware.starknet.common.syscalls.GetSequencerAddress": { - "full_name": "starkware.starknet.common.syscalls.GetSequencerAddress", - "members": { - "request": { - "cairo_type": "starkware.starknet.common.syscalls.GetSequencerAddressRequest", - "offset": 0 - }, - "response": { - "cairo_type": "starkware.starknet.common.syscalls.GetSequencerAddressResponse", - "offset": 1 - } - }, - "size": 2, - "type": "struct" - }, - "starkware.starknet.common.syscalls.GetSequencerAddressRequest": { - "full_name": "starkware.starknet.common.syscalls.GetSequencerAddressRequest", - "members": { - "selector": { - "cairo_type": "felt", - "offset": 0 - } - }, - "size": 1, - "type": "struct" - }, - "starkware.starknet.common.syscalls.GetSequencerAddressResponse": { - "full_name": "starkware.starknet.common.syscalls.GetSequencerAddressResponse", - "members": { - "sequencer_address": { - "cairo_type": "felt", - "offset": 0 - } - }, - "size": 1, - "type": "struct" - }, - "starkware.starknet.common.syscalls.GetTxInfo": { - "full_name": "starkware.starknet.common.syscalls.GetTxInfo", - "members": { - "request": { - "cairo_type": "starkware.starknet.common.syscalls.GetTxInfoRequest", - "offset": 0 - }, - "response": { - "cairo_type": "starkware.starknet.common.syscalls.GetTxInfoResponse", - "offset": 1 - } - }, - "size": 2, - "type": "struct" - }, - "starkware.starknet.common.syscalls.GetTxInfoRequest": { - "full_name": "starkware.starknet.common.syscalls.GetTxInfoRequest", - "members": { - "selector": { - "cairo_type": "felt", - "offset": 0 - } - }, - "size": 1, - "type": "struct" - }, - "starkware.starknet.common.syscalls.GetTxInfoResponse": { - "full_name": "starkware.starknet.common.syscalls.GetTxInfoResponse", - "members": { - "tx_info": { - "cairo_type": "starkware.starknet.common.syscalls.TxInfo*", - "offset": 0 - } - }, - "size": 1, - "type": "struct" - }, - "starkware.starknet.common.syscalls.GetTxSignature": { - "full_name": "starkware.starknet.common.syscalls.GetTxSignature", - "members": { - "request": { - "cairo_type": "starkware.starknet.common.syscalls.GetTxSignatureRequest", - "offset": 0 - }, - "response": { - "cairo_type": "starkware.starknet.common.syscalls.GetTxSignatureResponse", - "offset": 1 - } - }, - "size": 3, - "type": "struct" - }, - "starkware.starknet.common.syscalls.GetTxSignatureRequest": { - "full_name": "starkware.starknet.common.syscalls.GetTxSignatureRequest", - "members": { - "selector": { - "cairo_type": "felt", - "offset": 0 - } - }, - "size": 1, - "type": "struct" - }, - "starkware.starknet.common.syscalls.GetTxSignatureResponse": { - "full_name": "starkware.starknet.common.syscalls.GetTxSignatureResponse", - "members": { - "signature": { - "cairo_type": "felt*", - "offset": 1 - }, - "signature_len": { - "cairo_type": "felt", - "offset": 0 - } - }, - "size": 2, - "type": "struct" - }, - "starkware.starknet.common.syscalls.LIBRARY_CALL_L1_HANDLER_SELECTOR": { - "type": "const", - "value": 436233452754198157705746250789557519228244616562 - }, - "starkware.starknet.common.syscalls.LIBRARY_CALL_SELECTOR": { - "type": "const", - "value": 92376026794327011772951660 - }, - "starkware.starknet.common.syscalls.LibraryCall": { - "full_name": "starkware.starknet.common.syscalls.LibraryCall", - "members": { - "request": { - "cairo_type": "starkware.starknet.common.syscalls.LibraryCallRequest", - "offset": 0 - }, - "response": { - "cairo_type": "starkware.starknet.common.syscalls.CallContractResponse", - "offset": 5 - } - }, - "size": 7, - "type": "struct" - }, - "starkware.starknet.common.syscalls.LibraryCallRequest": { - "full_name": "starkware.starknet.common.syscalls.LibraryCallRequest", - "members": { - "calldata": { - "cairo_type": "felt*", - "offset": 4 - }, - "calldata_size": { - "cairo_type": "felt", - "offset": 3 - }, - "class_hash": { - "cairo_type": "felt", - "offset": 1 - }, - "function_selector": { - "cairo_type": "felt", - "offset": 2 - }, - "selector": { - "cairo_type": "felt", - "offset": 0 - } - }, - "size": 5, - "type": "struct" - }, - "starkware.starknet.common.syscalls.REPLACE_CLASS_SELECTOR": { - "type": "const", - "value": 25500403217443378527601783667 - }, - "starkware.starknet.common.syscalls.ReplaceClass": { - "full_name": "starkware.starknet.common.syscalls.ReplaceClass", - "members": { - "class_hash": { - "cairo_type": "felt", - "offset": 1 - }, - "selector": { - "cairo_type": "felt", - "offset": 0 - } - }, - "size": 2, - "type": "struct" - }, - "starkware.starknet.common.syscalls.SEND_MESSAGE_TO_L1_SELECTOR": { - "type": "const", - "value": 433017908768303439907196859243777073 - }, - "starkware.starknet.common.syscalls.STORAGE_READ_SELECTOR": { - "type": "const", - "value": 100890693370601760042082660 - }, - "starkware.starknet.common.syscalls.STORAGE_WRITE_SELECTOR": { - "type": "const", - "value": 25828017502874050592466629733 - }, - "starkware.starknet.common.syscalls.SendMessageToL1SysCall": { - "full_name": "starkware.starknet.common.syscalls.SendMessageToL1SysCall", - "members": { - "payload_ptr": { - "cairo_type": "felt*", - "offset": 3 - }, - "payload_size": { - "cairo_type": "felt", - "offset": 2 - }, - "selector": { - "cairo_type": "felt", - "offset": 0 - }, - "to_address": { - "cairo_type": "felt", - "offset": 1 - } - }, - "size": 4, - "type": "struct" - }, - "starkware.starknet.common.syscalls.StorageRead": { - "full_name": "starkware.starknet.common.syscalls.StorageRead", - "members": { - "request": { - "cairo_type": "starkware.starknet.common.syscalls.StorageReadRequest", - "offset": 0 - }, - "response": { - "cairo_type": "starkware.starknet.common.syscalls.StorageReadResponse", - "offset": 2 - } - }, - "size": 3, - "type": "struct" - }, - "starkware.starknet.common.syscalls.StorageReadRequest": { - "full_name": "starkware.starknet.common.syscalls.StorageReadRequest", - "members": { - "address": { - "cairo_type": "felt", - "offset": 1 - }, - "selector": { - "cairo_type": "felt", - "offset": 0 - } - }, - "size": 2, - "type": "struct" - }, - "starkware.starknet.common.syscalls.StorageReadResponse": { - "full_name": "starkware.starknet.common.syscalls.StorageReadResponse", - "members": { - "value": { - "cairo_type": "felt", - "offset": 0 - } - }, - "size": 1, - "type": "struct" - }, - "starkware.starknet.common.syscalls.StorageWrite": { - "full_name": "starkware.starknet.common.syscalls.StorageWrite", - "members": { - "address": { - "cairo_type": "felt", - "offset": 1 - }, - "selector": { - "cairo_type": "felt", - "offset": 0 - }, - "value": { - "cairo_type": "felt", - "offset": 2 - } - }, - "size": 3, - "type": "struct" - }, - "starkware.starknet.common.syscalls.TxInfo": { - "full_name": "starkware.starknet.common.syscalls.TxInfo", - "members": { - "account_contract_address": { - "cairo_type": "felt", - "offset": 1 - }, - "chain_id": { - "cairo_type": "felt", - "offset": 6 - }, - "max_fee": { - "cairo_type": "felt", - "offset": 2 - }, - "nonce": { - "cairo_type": "felt", - "offset": 7 - }, - "signature": { - "cairo_type": "felt*", - "offset": 4 - }, - "signature_len": { - "cairo_type": "felt", - "offset": 3 - }, - "transaction_hash": { - "cairo_type": "felt", - "offset": 5 - }, - "version": { - "cairo_type": "felt", - "offset": 0 - } - }, - "size": 8, - "type": "struct" - }, - "starkware.starknet.common.syscalls.call_contract": { - "decorators": [], - "pc": 25, - "type": "function" - }, - "starkware.starknet.common.syscalls.call_contract.Args": { - "full_name": "starkware.starknet.common.syscalls.call_contract.Args", - "members": { - "calldata": { - "cairo_type": "felt*", - "offset": 3 - }, - "calldata_size": { - "cairo_type": "felt", - "offset": 2 - }, - "contract_address": { - "cairo_type": "felt", - "offset": 0 - }, - "function_selector": { - "cairo_type": "felt", - "offset": 1 - } - }, - "size": 4, - "type": "struct" - }, - "starkware.starknet.common.syscalls.call_contract.ImplicitArgs": { - "full_name": "starkware.starknet.common.syscalls.call_contract.ImplicitArgs", - "members": { - "syscall_ptr": { - "cairo_type": "felt*", - "offset": 0 - } - }, - "size": 1, - "type": "struct" - }, - "starkware.starknet.common.syscalls.call_contract.Return": { - "cairo_type": "(retdata_size: felt, retdata: felt*)", - "type": "type_definition" - }, - "starkware.starknet.common.syscalls.call_contract.SIZEOF_LOCALS": { - "type": "const", - "value": 0 - }, - "starkware.starknet.common.syscalls.call_contract.syscall_ptr": { - "cairo_type": "felt*", - "full_name": "starkware.starknet.common.syscalls.call_contract.syscall_ptr", - "references": [ - { - "ap_tracking_data": { - "group": 4, - "offset": 0 - }, - "pc": 25, - "value": "[cast(fp + (-7), felt**)]" - }, - { - "ap_tracking_data": { - "group": 4, - "offset": 1 - }, - "pc": 32, - "value": "cast([fp + (-7)] + 7, felt*)" - } - ], - "type": "reference" - }, - "starkware.starknet.common.syscalls.emit_event": { - "decorators": [], - "pc": 60, - "type": "function" - }, - "starkware.starknet.common.syscalls.emit_event.Args": { - "full_name": "starkware.starknet.common.syscalls.emit_event.Args", - "members": { - "data": { - "cairo_type": "felt*", - "offset": 3 - }, - "data_len": { - "cairo_type": "felt", - "offset": 2 - }, - "keys": { - "cairo_type": "felt*", - "offset": 1 - }, - "keys_len": { - "cairo_type": "felt", - "offset": 0 - } - }, - "size": 4, - "type": "struct" - }, - "starkware.starknet.common.syscalls.emit_event.ImplicitArgs": { - "full_name": "starkware.starknet.common.syscalls.emit_event.ImplicitArgs", - "members": { - "syscall_ptr": { - "cairo_type": "felt*", - "offset": 0 - } - }, - "size": 1, - "type": "struct" - }, - "starkware.starknet.common.syscalls.emit_event.Return": { - "cairo_type": "()", - "type": "type_definition" - }, - "starkware.starknet.common.syscalls.emit_event.SIZEOF_LOCALS": { - "type": "const", - "value": 0 - }, - "starkware.starknet.common.syscalls.emit_event.syscall_ptr": { - "cairo_type": "felt*", - "full_name": "starkware.starknet.common.syscalls.emit_event.syscall_ptr", - "references": [ - { - "ap_tracking_data": { - "group": 8, - "offset": 0 - }, - "pc": 60, - "value": "[cast(fp + (-7), felt**)]" - }, - { - "ap_tracking_data": { - "group": 8, - "offset": 1 - }, - "pc": 67, - "value": "cast([fp + (-7)] + 5, felt*)" - } - ], - "type": "reference" - }, - "starkware.starknet.common.syscalls.get_caller_address": { - "decorators": [], - "pc": 37, - "type": "function" - }, - "starkware.starknet.common.syscalls.get_caller_address.Args": { - "full_name": "starkware.starknet.common.syscalls.get_caller_address.Args", - "members": {}, - "size": 0, - "type": "struct" - }, - "starkware.starknet.common.syscalls.get_caller_address.ImplicitArgs": { - "full_name": "starkware.starknet.common.syscalls.get_caller_address.ImplicitArgs", - "members": { - "syscall_ptr": { - "cairo_type": "felt*", - "offset": 0 - } - }, - "size": 1, - "type": "struct" - }, - "starkware.starknet.common.syscalls.get_caller_address.Return": { - "cairo_type": "(caller_address: felt)", - "type": "type_definition" - }, - "starkware.starknet.common.syscalls.get_caller_address.SIZEOF_LOCALS": { - "type": "const", - "value": 0 - }, - "starkware.starknet.common.syscalls.get_caller_address.syscall_ptr": { - "cairo_type": "felt*", - "full_name": "starkware.starknet.common.syscalls.get_caller_address.syscall_ptr", - "references": [ - { - "ap_tracking_data": { - "group": 5, - "offset": 0 - }, - "pc": 37, - "value": "[cast(fp + (-3), felt**)]" - }, - { - "ap_tracking_data": { - "group": 5, - "offset": 1 - }, - "pc": 40, - "value": "cast([fp + (-3)] + 2, felt*)" - } - ], - "type": "reference" - }, - "starkware.starknet.common.syscalls.storage_read": { - "decorators": [], - "pc": 44, - "type": "function" - }, - "starkware.starknet.common.syscalls.storage_read.Args": { - "full_name": "starkware.starknet.common.syscalls.storage_read.Args", - "members": { - "address": { - "cairo_type": "felt", - "offset": 0 - } - }, - "size": 1, - "type": "struct" - }, - "starkware.starknet.common.syscalls.storage_read.ImplicitArgs": { - "full_name": "starkware.starknet.common.syscalls.storage_read.ImplicitArgs", - "members": { - "syscall_ptr": { - "cairo_type": "felt*", - "offset": 0 - } - }, - "size": 1, - "type": "struct" - }, - "starkware.starknet.common.syscalls.storage_read.Return": { - "cairo_type": "(value: felt)", - "type": "type_definition" - }, - "starkware.starknet.common.syscalls.storage_read.SIZEOF_LOCALS": { - "type": "const", - "value": 0 - }, - "starkware.starknet.common.syscalls.storage_read.syscall_ptr": { - "cairo_type": "felt*", - "full_name": "starkware.starknet.common.syscalls.storage_read.syscall_ptr", - "references": [ - { - "ap_tracking_data": { - "group": 6, - "offset": 0 - }, - "pc": 44, - "value": "[cast(fp + (-4), felt**)]" - }, - { - "ap_tracking_data": { - "group": 6, - "offset": 1 - }, - "pc": 48, - "value": "cast([fp + (-4)] + 3, felt*)" - } - ], - "type": "reference" - }, - "starkware.starknet.common.syscalls.storage_write": { - "decorators": [], - "pc": 52, - "type": "function" - }, - "starkware.starknet.common.syscalls.storage_write.Args": { - "full_name": "starkware.starknet.common.syscalls.storage_write.Args", - "members": { - "address": { - "cairo_type": "felt", - "offset": 0 - }, - "value": { - "cairo_type": "felt", - "offset": 1 - } - }, - "size": 2, - "type": "struct" - }, - "starkware.starknet.common.syscalls.storage_write.ImplicitArgs": { - "full_name": "starkware.starknet.common.syscalls.storage_write.ImplicitArgs", - "members": { - "syscall_ptr": { - "cairo_type": "felt*", - "offset": 0 - } - }, - "size": 1, - "type": "struct" - }, - "starkware.starknet.common.syscalls.storage_write.Return": { - "cairo_type": "()", - "type": "type_definition" - }, - "starkware.starknet.common.syscalls.storage_write.SIZEOF_LOCALS": { - "type": "const", - "value": 0 - }, - "starkware.starknet.common.syscalls.storage_write.syscall_ptr": { - "cairo_type": "felt*", - "full_name": "starkware.starknet.common.syscalls.storage_write.syscall_ptr", - "references": [ - { - "ap_tracking_data": { - "group": 7, - "offset": 0 - }, - "pc": 52, - "value": "[cast(fp + (-5), felt**)]" - }, - { - "ap_tracking_data": { - "group": 7, - "offset": 1 - }, - "pc": 57, - "value": "cast([fp + (-5)] + 3, felt*)" - } - ], - "type": "reference" - }, - "utils.merkle_tree.HashBuiltin": { - "destination": "starkware.cairo.common.cairo_builtins.HashBuiltin", - "type": "alias" - }, - "utils.merkle_tree.TRUE": { - "destination": "starkware.cairo.common.bool.TRUE", - "type": "alias" - }, - "utils.merkle_tree.Uint256": { - "destination": "starkware.cairo.common.uint256.Uint256", - "type": "alias" - }, - "utils.merkle_tree._hash_sorted": { - "decorators": [], - "pc": 2579, - "type": "function" - }, - "utils.merkle_tree._hash_sorted.Args": { - "full_name": "utils.merkle_tree._hash_sorted.Args", - "members": { - "a": { - "cairo_type": "felt", - "offset": 0 - }, - "b": { - "cairo_type": "felt", - "offset": 1 - } - }, - "size": 2, - "type": "struct" - }, - "utils.merkle_tree._hash_sorted.ImplicitArgs": { - "full_name": "utils.merkle_tree._hash_sorted.ImplicitArgs", - "members": { - "hash_ptr": { - "cairo_type": "starkware.cairo.common.cairo_builtins.HashBuiltin*", - "offset": 0 - }, - "range_check_ptr": { - "cairo_type": "felt", - "offset": 1 - } - }, - "size": 2, - "type": "struct" - }, - "utils.merkle_tree._hash_sorted.Return": { - "cairo_type": "(res: felt)", - "type": "type_definition" - }, - "utils.merkle_tree._hash_sorted.SIZEOF_LOCALS": { - "type": "const", - "value": 0 - }, - "utils.merkle_tree._merkle_verify_body": { - "decorators": [], - "pc": 2604, - "type": "function" - }, - "utils.merkle_tree._merkle_verify_body.Args": { - "full_name": "utils.merkle_tree._merkle_verify_body.Args", - "members": { - "curr": { - "cairo_type": "felt", - "offset": 0 - }, - "proof": { - "cairo_type": "felt*", - "offset": 2 - }, - "proof_len": { - "cairo_type": "felt", - "offset": 1 - } - }, - "size": 3, - "type": "struct" - }, - "utils.merkle_tree._merkle_verify_body.ImplicitArgs": { - "full_name": "utils.merkle_tree._merkle_verify_body.ImplicitArgs", - "members": { - "pedersen_ptr": { - "cairo_type": "starkware.cairo.common.cairo_builtins.HashBuiltin*", - "offset": 1 - }, - "range_check_ptr": { - "cairo_type": "felt", - "offset": 2 - }, - "syscall_ptr": { - "cairo_type": "felt*", - "offset": 0 - } - }, - "size": 3, - "type": "struct" - }, - "utils.merkle_tree._merkle_verify_body.Return": { - "cairo_type": "(res: felt)", - "type": "type_definition" - }, - "utils.merkle_tree._merkle_verify_body.SIZEOF_LOCALS": { - "type": "const", - "value": 0 - }, - "utils.merkle_tree.alloc": { - "destination": "starkware.cairo.common.alloc.alloc", - "type": "alias" - }, - "utils.merkle_tree.hash2": { - "destination": "starkware.cairo.common.hash.hash2", - "type": "alias" - }, - "utils.merkle_tree.is_le_felt": { - "destination": "starkware.cairo.common.math_cmp.is_le_felt", - "type": "alias" - }, - "utils.merkle_tree.merkle_verify": { - "decorators": [], - "pc": 2556, - "type": "function" - }, - "utils.merkle_tree.merkle_verify.Args": { - "full_name": "utils.merkle_tree.merkle_verify.Args", - "members": { - "leaf": { - "cairo_type": "felt", - "offset": 0 - }, - "proof": { - "cairo_type": "felt*", - "offset": 3 - }, - "proof_len": { - "cairo_type": "felt", - "offset": 2 - }, - "root": { - "cairo_type": "felt", - "offset": 1 - } - }, - "size": 4, - "type": "struct" - }, - "utils.merkle_tree.merkle_verify.ImplicitArgs": { - "full_name": "utils.merkle_tree.merkle_verify.ImplicitArgs", - "members": { - "pedersen_ptr": { - "cairo_type": "starkware.cairo.common.cairo_builtins.HashBuiltin*", - "offset": 1 - }, - "range_check_ptr": { - "cairo_type": "felt", - "offset": 2 - }, - "syscall_ptr": { - "cairo_type": "felt*", - "offset": 0 - } - }, - "size": 3, - "type": "struct" - }, - "utils.merkle_tree.merkle_verify.Return": { - "cairo_type": "(res: felt)", - "type": "type_definition" - }, - "utils.merkle_tree.merkle_verify.SIZEOF_LOCALS": { - "type": "const", - "value": 0 - }, - "utils.merkle_tree.unsigned_div_rem": { - "destination": "starkware.cairo.common.math.unsigned_div_rem", - "type": "alias" - }, - "utils.string.HashBuiltin": { - "destination": "starkware.cairo.common.cairo_builtins.HashBuiltin", - "type": "alias" - }, - "utils.string.abs_value": { - "destination": "starkware.cairo.common.math.abs_value", - "type": "alias" - }, - "utils.string.alloc": { - "destination": "starkware.cairo.common.alloc.alloc", - "type": "alias" - }, - "utils.string.is_le": { - "destination": "starkware.cairo.common.math_cmp.is_le", - "type": "alias" - }, - "utils.string.sign": { - "destination": "starkware.cairo.common.math.sign", - "type": "alias" - }, - "utils.string.unsigned_div_rem": { - "destination": "starkware.cairo.common.math.unsigned_div_rem", - "type": "alias" - } - }, - "main_scope": "__main__", - "prime": "0x800000000000011000000000000000000000000000000000000000000000001", - "reference_manager": { - "references": [ - { - "ap_tracking_data": { - "group": 2, - "offset": 0 - }, - "pc": 9, - "value": "[cast(fp + (-3), felt*)]" - }, - { - "ap_tracking_data": { - "group": 2, - "offset": 3 - }, - "pc": 16, - "value": "[cast(ap, felt*)]" - }, - { - "ap_tracking_data": { - "group": 4, - "offset": 0 - }, - "pc": 25, - "value": "[cast(fp + (-7), felt**)]" - }, - { - "ap_tracking_data": { - "group": 5, - "offset": 0 - }, - "pc": 37, - "value": "[cast(fp + (-3), felt**)]" - }, - { - "ap_tracking_data": { - "group": 6, - "offset": 0 - }, - "pc": 44, - "value": "[cast(fp + (-4), felt**)]" - }, - { - "ap_tracking_data": { - "group": 7, - "offset": 0 - }, - "pc": 52, - "value": "[cast(fp + (-5), felt**)]" - }, - { - "ap_tracking_data": { - "group": 8, - "offset": 0 - }, - "pc": 60, - "value": "[cast(fp + (-7), felt**)]" - }, - { - "ap_tracking_data": { - "group": 9, - "offset": 0 - }, - "pc": 70, - "value": "[cast(fp + (-3), felt*)]" - }, - { - "ap_tracking_data": { - "group": 10, - "offset": 0 - }, - "pc": 75, - "value": "[cast(fp + (-4), felt*)]" - }, - { - "ap_tracking_data": { - "group": 10, - "offset": 0 - }, - "pc": 75, - "value": "[cast(fp + (-3), felt*)]" - }, - { - "ap_tracking_data": { - "group": 11, - "offset": 0 - }, - "pc": 81, - "value": "[cast(fp + (-3), felt*)]" - }, - { - "ap_tracking_data": { - "group": 13, - "offset": 0 - }, - "pc": 90, - "value": "[cast(fp + (-3), felt*)]" - }, - { - "ap_tracking_data": { - "group": 13, - "offset": 0 - }, - "pc": 90, - "value": "[cast([fp + (-4)], felt*)]" - }, - { - "ap_tracking_data": { - "group": 13, - "offset": 0 - }, - "pc": 90, - "value": "[cast([fp + (-4)] + 1, felt*)]" - }, - { - "ap_tracking_data": { - "group": 14, - "offset": 0 - }, - "pc": 103, - "value": "[cast(fp + (-4), felt*)]" - }, - { - "ap_tracking_data": { - "group": 14, - "offset": 0 - }, - "pc": 103, - "value": "[cast(fp + (-3), felt*)]" - }, - { - "ap_tracking_data": { - "group": 14, - "offset": 0 - }, - "pc": 103, - "value": "[cast(fp + (-5), felt*)]" - }, - { - "ap_tracking_data": { - "group": 15, - "offset": 0 - }, - "pc": 148, - "value": "[cast(fp + (-4), felt*)]" - }, - { - "ap_tracking_data": { - "group": 15, - "offset": 0 - }, - "pc": 148, - "value": "[cast(fp + (-3), felt*)]" - }, - { - "ap_tracking_data": { - "group": 16, - "offset": 0 - }, - "pc": 159, - "value": "[cast(fp + (-5), felt*)]" - }, - { - "ap_tracking_data": { - "group": 16, - "offset": 0 - }, - "pc": 159, - "value": "[cast(fp + (-4), felt*)]" - }, - { - "ap_tracking_data": { - "group": 16, - "offset": 0 - }, - "pc": 159, - "value": "[cast(fp + (-3), felt*)]" - }, - { - "ap_tracking_data": { - "group": 16, - "offset": 0 - }, - "pc": 159, - "value": "[cast([fp + (-6)], felt*)]" - }, - { - "ap_tracking_data": { - "group": 16, - "offset": 0 - }, - "pc": 159, - "value": "[cast([fp + (-6)] + 1, felt*)]" - }, - { - "ap_tracking_data": { - "group": 17, - "offset": 0 - }, - "pc": 185, - "value": "[cast(fp + (-3), felt*)]" - }, - { - "ap_tracking_data": { - "group": 17, - "offset": 1 - }, - "pc": 187, - "value": "[cast(ap + (-1), felt*)]" - }, - { - "ap_tracking_data": { - "group": 17, - "offset": 2 - }, - "pc": 205, - "value": "[cast(ap + (-1), felt*)]" - }, - { - "ap_tracking_data": { - "group": 32, - "offset": 0 - }, - "pc": 349, - "value": "[cast(fp + (-3), felt*)]" - }, - { - "ap_tracking_data": { - "group": 34, - "offset": 0 - }, - "pc": 387, - "value": "[cast(fp + (-4), felt*)]" - }, - { - "ap_tracking_data": { - "group": 34, - "offset": 0 - }, - "pc": 387, - "value": "[cast(fp + (-3), felt*)]" - }, - { - "ap_tracking_data": { - "group": 37, - "offset": 0 - }, - "pc": 418, - "value": "[cast(fp + (-6), starkware.cairo.common.uint256.Uint256*)]" - }, - { - "ap_tracking_data": { - "group": 37, - "offset": 0 - }, - "pc": 418, - "value": "[cast(fp + (-4), starkware.cairo.common.uint256.Uint256*)]" - }, - { - "ap_tracking_data": { - "group": 37, - "offset": 4 - }, - "pc": 420, - "value": "[cast(fp + 2, felt*)]" - }, - { - "ap_tracking_data": { - "group": 37, - "offset": 4 - }, - "pc": 420, - "value": "[cast(fp + 3, felt*)]" - }, - { - "ap_tracking_data": { - "group": 38, - "offset": 0 - }, - "pc": 440, - "value": "[cast(fp + (-3), felt*)]" - }, - { - "ap_tracking_data": { - "group": 38, - "offset": 2 - }, - "pc": 442, - "value": "[cast(fp, felt*)]" - }, - { - "ap_tracking_data": { - "group": 38, - "offset": 2 - }, - "pc": 442, - "value": "[cast(fp + 1, felt*)]" - }, - { - "ap_tracking_data": { - "group": 145, - "offset": 0 - }, - "pc": 2356, - "value": "[cast(fp + (-5), starkware.cairo.common.dict_access.DictAccess**)]" - }, - { - "ap_tracking_data": { - "group": 145, - "offset": 3 - }, - "pc": 2359, - "value": "[cast(fp, felt*)]" - }, - { - "ap_tracking_data": { - "group": 145, - "offset": 3 - }, - "pc": 2364, - "value": "[cast(fp + 1, felt*)]" - }, - { - "ap_tracking_data": { - "group": 145, - "offset": 3 - }, - "pc": 2364, - "value": "[cast(fp + 2, felt*)]" - }, - { - "ap_tracking_data": { - "group": 145, - "offset": 4 - }, - "pc": 2366, - "value": "[cast(ap + (-1), felt*)]" - }, - { - "ap_tracking_data": { - "group": 147, - "offset": 0 - }, - "pc": 2384, - "value": "[cast(fp + (-9), felt*)]" - }, - { - "ap_tracking_data": { - "group": 147, - "offset": 7 - }, - "pc": 2397, - "value": "[cast(fp + 1, felt*)]" - }, - { - "ap_tracking_data": { - "group": 147, - "offset": 7 - }, - "pc": 2399, - "value": "cast(ap, starkware.cairo.common.squash_dict.squash_dict_inner.LoopTemps*)" - }, - { - "ap_tracking_data": { - "group": 148, - "offset": 2 - }, - "pc": 2415, - "value": "[cast(ap + (-1), felt*)]" - }, - { - "ap_tracking_data": { - "group": 148, - "offset": 3 - }, - "pc": 2424, - "value": "[cast(ap, felt*)]" - }, - { - "ap_tracking_data": { - "group": 152, - "offset": 0 - }, - "pc": 2459, - "value": "[cast(fp + (-3), felt*)]" - }, - { - "ap_tracking_data": { - "group": 152, - "offset": 0 - }, - "pc": 2459, - "value": "[cast(fp + (-4), starkware.cairo.common.dict_access.DictAccess**)]" - }, - { - "ap_tracking_data": { - "group": 152, - "offset": 1 - }, - "pc": 2461, - "value": "[cast(fp, felt*)]" - }, - { - "ap_tracking_data": { - "group": 153, - "offset": 0 - }, - "pc": 2468, - "value": "[cast(fp + (-4), felt*)]" - }, - { - "ap_tracking_data": { - "group": 153, - "offset": 0 - }, - "pc": 2468, - "value": "[cast(fp + (-3), felt*)]" - }, - { - "ap_tracking_data": { - "group": 153, - "offset": 0 - }, - "pc": 2468, - "value": "[cast(fp + (-5), starkware.cairo.common.dict_access.DictAccess**)]" - }, - { - "ap_tracking_data": { - "group": 154, - "offset": 0 - }, - "pc": 2473, - "value": "[cast(fp + (-3), starkware.cairo.common.dict_access.DictAccess**)]" - }, - { - "ap_tracking_data": { - "group": 154, - "offset": 4 - }, - "pc": 2478, - "value": "[cast(fp, starkware.cairo.common.dict_access.DictAccess**)]" - }, - { - "ap_tracking_data": { - "group": 155, - "offset": 0 - }, - "pc": 2484, - "value": "[cast(ap + (-1), starkware.cairo.common.dict_access.DictAccess**)]" - }, - { - "ap_tracking_data": { - "group": 156, - "offset": 0 - }, - "pc": 2488, - "value": "[cast(fp + (-3), felt*)]" - }, - { - "ap_tracking_data": { - "group": 217, - "offset": 0 - }, - "pc": 3372, - "value": "[cast(fp + (-5), felt*)]" - }, - { - "ap_tracking_data": { - "group": 219, - "offset": 0 - }, - "pc": 3411, - "value": "[cast(fp + (-3), felt*)]" - }, - { - "ap_tracking_data": { - "group": 219, - "offset": 0 - }, - "pc": 3411, - "value": "[cast(fp + (-4), felt*)]" - } - ] - } - } -} diff --git a/packages/starksheet-cairo/build/DustyPilots_abi.json b/packages/starksheet-cairo/build/DustyPilots_abi.json deleted file mode 100644 index a37d3360..00000000 --- a/packages/starksheet-cairo/build/DustyPilots_abi.json +++ /dev/null @@ -1,764 +0,0 @@ -[ - { - "members": [ - { - "name": "low", - "offset": 0, - "type": "felt" - }, - { - "name": "high", - "offset": 1, - "type": "felt" - } - ], - "name": "Uint256", - "size": 2, - "type": "struct" - }, - { - "members": [ - { - "name": "id", - "offset": 0, - "type": "felt" - }, - { - "name": "owner", - "offset": 1, - "type": "felt" - }, - { - "name": "value", - "offset": 2, - "type": "felt" - } - ], - "name": "CellRendered", - "size": 3, - "type": "struct" - }, - { - "data": [ - { - "name": "previousOwner", - "type": "felt" - }, - { - "name": "newOwner", - "type": "felt" - } - ], - "keys": [], - "name": "OwnershipTransferred", - "type": "event" - }, - { - "data": [ - { - "name": "from_", - "type": "felt" - }, - { - "name": "to", - "type": "felt" - }, - { - "name": "tokenId", - "type": "Uint256" - } - ], - "keys": [], - "name": "Transfer", - "type": "event" - }, - { - "data": [ - { - "name": "owner", - "type": "felt" - }, - { - "name": "approved", - "type": "felt" - }, - { - "name": "tokenId", - "type": "Uint256" - } - ], - "keys": [], - "name": "Approval", - "type": "event" - }, - { - "data": [ - { - "name": "owner", - "type": "felt" - }, - { - "name": "operator", - "type": "felt" - }, - { - "name": "approved", - "type": "felt" - } - ], - "keys": [], - "name": "ApprovalForAll", - "type": "event" - }, - { - "data": [ - { - "name": "id", - "type": "felt" - }, - { - "name": "value", - "type": "felt" - }, - { - "name": "contract_address", - "type": "felt" - } - ], - "keys": [], - "name": "CellUpdated", - "type": "event" - }, - { - "inputs": [], - "name": "owner", - "outputs": [ - { - "name": "owner", - "type": "felt" - } - ], - "stateMutability": "view", - "type": "function" - }, - { - "inputs": [ - { - "name": "new_owner", - "type": "felt" - } - ], - "name": "transferOwnership", - "outputs": [], - "type": "function" - }, - { - "inputs": [ - { - "name": "max", - "type": "felt" - } - ], - "name": "setMaxPerWallet", - "outputs": [], - "type": "function" - }, - { - "inputs": [], - "name": "getMaxPerWallet", - "outputs": [ - { - "name": "max", - "type": "felt" - } - ], - "stateMutability": "view", - "type": "function" - }, - { - "inputs": [ - { - "name": "n_row", - "type": "felt" - } - ], - "name": "setNRow", - "outputs": [], - "type": "function" - }, - { - "inputs": [], - "name": "getNRow", - "outputs": [ - { - "name": "n_row", - "type": "felt" - } - ], - "stateMutability": "view", - "type": "function" - }, - { - "inputs": [ - { - "name": "address", - "type": "felt" - } - ], - "name": "setCellRenderer", - "outputs": [], - "type": "function" - }, - { - "inputs": [], - "name": "getCellRenderer", - "outputs": [ - { - "name": "address", - "type": "felt" - } - ], - "stateMutability": "view", - "type": "function" - }, - { - "inputs": [ - { - "name": "root", - "type": "felt" - } - ], - "name": "setMerkleRoot", - "outputs": [], - "type": "function" - }, - { - "inputs": [], - "name": "openMint", - "outputs": [], - "type": "function" - }, - { - "inputs": [], - "name": "closeMint", - "outputs": [], - "type": "function" - }, - { - "inputs": [], - "name": "getMerkleRoot", - "outputs": [ - { - "name": "root", - "type": "felt" - } - ], - "stateMutability": "view", - "type": "function" - }, - { - "inputs": [ - { - "name": "tokenId", - "type": "felt" - }, - { - "name": "contractAddress", - "type": "felt" - }, - { - "name": "value", - "type": "felt" - }, - { - "name": "cell_calldata_len", - "type": "felt" - }, - { - "name": "cell_calldata", - "type": "felt*" - } - ], - "name": "setCell", - "outputs": [], - "type": "function" - }, - { - "inputs": [ - { - "name": "tokenId", - "type": "felt" - } - ], - "name": "getCell", - "outputs": [ - { - "name": "contractAddress", - "type": "felt" - }, - { - "name": "value", - "type": "felt" - }, - { - "name": "cell_calldata_len", - "type": "felt" - }, - { - "name": "cell_calldata", - "type": "felt*" - } - ], - "stateMutability": "view", - "type": "function" - }, - { - "inputs": [ - { - "name": "tokenId", - "type": "felt" - } - ], - "name": "renderCell", - "outputs": [ - { - "name": "cell", - "type": "CellRendered" - } - ], - "stateMutability": "view", - "type": "function" - }, - { - "inputs": [ - { - "name": "tokenId", - "type": "felt" - } - ], - "name": "renderCellValue", - "outputs": [ - { - "name": "value", - "type": "felt" - } - ], - "stateMutability": "view", - "type": "function" - }, - { - "inputs": [], - "name": "renderGrid", - "outputs": [ - { - "name": "cells_len", - "type": "felt" - }, - { - "name": "cells", - "type": "CellRendered*" - } - ], - "stateMutability": "view", - "type": "function" - }, - { - "inputs": [ - { - "name": "tokenId", - "type": "Uint256" - }, - { - "name": "proof_len", - "type": "felt" - }, - { - "name": "proof", - "type": "felt*" - } - ], - "name": "mintPublic", - "outputs": [], - "type": "function" - }, - { - "inputs": [ - { - "name": "tokenId", - "type": "Uint256" - }, - { - "name": "proof_len", - "type": "felt" - }, - { - "name": "proof", - "type": "felt*" - }, - { - "name": "contractAddress", - "type": "felt" - }, - { - "name": "value", - "type": "felt" - }, - { - "name": "cellCalldata_len", - "type": "felt" - }, - { - "name": "cellCalldata", - "type": "felt*" - } - ], - "name": "mintAndSetPublic", - "outputs": [], - "type": "function" - }, - { - "inputs": [ - { - "name": "tokenId", - "type": "Uint256" - } - ], - "name": "tokenURI", - "outputs": [ - { - "name": "token_uri_len", - "type": "felt" - }, - { - "name": "token_uri", - "type": "felt*" - } - ], - "stateMutability": "view", - "type": "function" - }, - { - "inputs": [], - "name": "contractURI", - "outputs": [ - { - "name": "contractURI_len", - "type": "felt" - }, - { - "name": "contractURI", - "type": "felt*" - } - ], - "stateMutability": "view", - "type": "function" - }, - { - "inputs": [ - { - "name": "name", - "type": "felt" - }, - { - "name": "symbol", - "type": "felt" - }, - { - "name": "owner", - "type": "felt" - }, - { - "name": "merkle_root", - "type": "felt" - }, - { - "name": "max_per_wallet", - "type": "felt" - }, - { - "name": "renderer_address", - "type": "felt" - } - ], - "name": "initialize", - "outputs": [], - "type": "function" - }, - { - "inputs": [], - "name": "is_initialized", - "outputs": [ - { - "name": "res", - "type": "felt" - } - ], - "stateMutability": "view", - "type": "function" - }, - { - "inputs": [], - "name": "totalSupply", - "outputs": [ - { - "name": "totalSupply", - "type": "Uint256" - } - ], - "stateMutability": "view", - "type": "function" - }, - { - "inputs": [ - { - "name": "index", - "type": "Uint256" - } - ], - "name": "tokenByIndex", - "outputs": [ - { - "name": "tokenId", - "type": "Uint256" - } - ], - "stateMutability": "view", - "type": "function" - }, - { - "inputs": [ - { - "name": "owner", - "type": "felt" - }, - { - "name": "index", - "type": "Uint256" - } - ], - "name": "tokenOfOwnerByIndex", - "outputs": [ - { - "name": "tokenId", - "type": "Uint256" - } - ], - "stateMutability": "view", - "type": "function" - }, - { - "inputs": [ - { - "name": "interfaceId", - "type": "felt" - } - ], - "name": "supportsInterface", - "outputs": [ - { - "name": "success", - "type": "felt" - } - ], - "stateMutability": "view", - "type": "function" - }, - { - "inputs": [], - "name": "name", - "outputs": [ - { - "name": "name", - "type": "felt" - } - ], - "stateMutability": "view", - "type": "function" - }, - { - "inputs": [], - "name": "symbol", - "outputs": [ - { - "name": "symbol", - "type": "felt" - } - ], - "stateMutability": "view", - "type": "function" - }, - { - "inputs": [ - { - "name": "owner", - "type": "felt" - } - ], - "name": "balanceOf", - "outputs": [ - { - "name": "balance", - "type": "Uint256" - } - ], - "stateMutability": "view", - "type": "function" - }, - { - "inputs": [ - { - "name": "tokenId", - "type": "Uint256" - } - ], - "name": "ownerOf", - "outputs": [ - { - "name": "owner", - "type": "felt" - } - ], - "stateMutability": "view", - "type": "function" - }, - { - "inputs": [ - { - "name": "tokenId", - "type": "Uint256" - } - ], - "name": "getApproved", - "outputs": [ - { - "name": "approved", - "type": "felt" - } - ], - "stateMutability": "view", - "type": "function" - }, - { - "inputs": [ - { - "name": "owner", - "type": "felt" - }, - { - "name": "operator", - "type": "felt" - } - ], - "name": "isApprovedForAll", - "outputs": [ - { - "name": "isApproved", - "type": "felt" - } - ], - "stateMutability": "view", - "type": "function" - }, - { - "inputs": [ - { - "name": "to", - "type": "felt" - }, - { - "name": "tokenId", - "type": "Uint256" - } - ], - "name": "approve", - "outputs": [], - "type": "function" - }, - { - "inputs": [ - { - "name": "operator", - "type": "felt" - }, - { - "name": "approved", - "type": "felt" - } - ], - "name": "setApprovalForAll", - "outputs": [], - "type": "function" - }, - { - "inputs": [ - { - "name": "from_", - "type": "felt" - }, - { - "name": "to", - "type": "felt" - }, - { - "name": "tokenId", - "type": "Uint256" - } - ], - "name": "transferFrom", - "outputs": [], - "type": "function" - }, - { - "inputs": [ - { - "name": "from_", - "type": "felt" - }, - { - "name": "to", - "type": "felt" - }, - { - "name": "tokenId", - "type": "Uint256" - }, - { - "name": "data_len", - "type": "felt" - }, - { - "name": "data", - "type": "felt*" - } - ], - "name": "safeTransferFrom", - "outputs": [], - "type": "function" - }, - { - "inputs": [ - { - "name": "to", - "type": "felt" - }, - { - "name": "tokenId", - "type": "Uint256" - } - ], - "name": "mintOwner", - "outputs": [], - "type": "function" - }, - { - "inputs": [ - { - "name": "tokenId", - "type": "Uint256" - } - ], - "name": "burn", - "outputs": [], - "type": "function" - } -] diff --git a/packages/starksheet-cairo/build/ERC20.json b/packages/starksheet-cairo/build/ERC20.json index 125f9c98..5eec3e47 100644 --- a/packages/starksheet-cairo/build/ERC20.json +++ b/packages/starksheet-cairo/build/ERC20.json @@ -2529,7 +2529,48293 @@ "0x48127ffb7fff8000", "0x208b7fff7fff7ffe" ], - "debug_info": null, + "debug_info": { + "file_contents": { + "autogen/starknet/arg_processor/01cba52f8515996bb9d7070bde81ff39281d096d7024a558efcba6e1fd2402cf.cairo": "assert [cast(fp + (-4), felt*)] = __calldata_actual_size;\n", + "autogen/starknet/arg_processor/088fc10f121c4edf0412d2bc1088f20f4b09fa1a3902dfc21b754224dcfd427e.cairo": "let __calldata_arg_subtracted_value = [\n cast(__calldata_ptr, starkware.cairo.common.uint256.Uint256*)];\nlet __calldata_ptr = __calldata_ptr + 2;\n", + "autogen/starknet/arg_processor/0c7c9c2f4e4121548e141b583c9a2f54b79c720fd16f884e916a04be7c6f9fa3.cairo": "let __calldata_arg_spender_address = [__calldata_ptr];\nlet __calldata_ptr = __calldata_ptr + 1;\n", + "autogen/starknet/arg_processor/0f412f121f4d99c455cd9caefc2f5203633f41332d4df4e5f8fdc3b70e62b4ba.cairo": "let __calldata_arg_initial_supply = [\n cast(__calldata_ptr, starkware.cairo.common.uint256.Uint256*)];\nlet __calldata_ptr = __calldata_ptr + 2;\n", + "autogen/starknet/arg_processor/1c4d1192a5b09976e03426fcf40799a7b0ddd1b139ead4adf9bf9c135a89991d.cairo": "let __calldata_arg_owner_address = [__calldata_ptr];\nlet __calldata_ptr = __calldata_ptr + 1;\n", + "autogen/starknet/arg_processor/2670bb539ede27446c75876e41bcf9ef5cab09b9eec143f3986635a545b089ab.cairo": "assert [__calldata_ptr] = to;\nlet __calldata_ptr = __calldata_ptr + 1;\n", + "autogen/starknet/arg_processor/337080d905c9efc14cc5ce3f3b9c28c0d295ba39991cbc57efa047b488a4c4c4.cairo": "let __calldata_arg_sender_address = [__calldata_ptr];\nlet __calldata_ptr = __calldata_ptr + 1;\n", + "autogen/starknet/arg_processor/34abfa5ae20e974d1ec6ec69725107153df53319dc907839ee17a8c237840f4b.cairo": "assert [__return_value_ptr] = ret_value.owner_address;\nlet __return_value_ptr = __return_value_ptr + 1;\n", + "autogen/starknet/arg_processor/3635b1d7caa543a52376beeb37a143262ea6ffdf923d8e3676d9b27787e943c8.cairo": "assert [__return_value_ptr] = ret_value.symbol;\nlet __return_value_ptr = __return_value_ptr + 1;\n", + "autogen/starknet/arg_processor/445d818b0524d35ae3e73b7abec41731d1445f0ce6866ec5a3a8a871521799a0.cairo": "assert [__calldata_ptr] = newOwner;\nlet __calldata_ptr = __calldata_ptr + 1;\n", + "autogen/starknet/arg_processor/4ea8e9956f949bdcf8a2402f5fbdc50c902b2a9cd6640c5bec657657d079f916.cairo": "let __calldata_arg_added_value = [\n cast(__calldata_ptr, starkware.cairo.common.uint256.Uint256*)];\nlet __calldata_ptr = __calldata_ptr + 2;\n", + "autogen/starknet/arg_processor/5c10028f67364b153272aa9b4cbc0fb78920a40fab821ac7257b0069e0773b49.cairo": "assert [__return_value_ptr] = ret_value.success;\nlet __return_value_ptr = __return_value_ptr + 1;\n", + "autogen/starknet/arg_processor/60c69a163626e9792b65ac718de13317af07c632659ab487d41ad9d7c1eb401a.cairo": "assert [__return_value_ptr] = ret_value.new_owner_address;\nlet __return_value_ptr = __return_value_ptr + 1;\n", + "autogen/starknet/arg_processor/6f345e20daf86e05c346aa1f6a9eeaa296a59eb71a12784c017d25ed5b25ff32.cairo": "assert [__return_value_ptr] = ret_value.name;\nlet __return_value_ptr = __return_value_ptr + 1;\n", + "autogen/starknet/arg_processor/7e247556a8b9bc505c1e503bda1dbcb424caa8925f45ae18cdde008e8b84b376.cairo": "assert [__calldata_ptr] = owner;\nlet __calldata_ptr = __calldata_ptr + 1;\n", + "autogen/starknet/arg_processor/7f5020813ab1b343debcc3300c737c940210993d2fe101134705622a3d36fb93.cairo": "// Create a reference to ret_value.remaining as felt*.\nlet __return_value_tmp: felt* = cast(&ret_value.remaining, felt*);\nassert [__return_value_ptr + 0] = [__return_value_tmp + 0];\nassert [__return_value_ptr + 1] = [__return_value_tmp + 1];\nlet __return_value_ptr = __return_value_ptr + 2;\n", + "autogen/starknet/arg_processor/86b8ce991898641b73ad3eb5d907f86c73139c426526138c35901b17a2d6334d.cairo": "assert [__calldata_ptr] = spender;\nlet __calldata_ptr = __calldata_ptr + 1;\n", + "autogen/starknet/arg_processor/969c7e319d46ceb58852dd3a77ddee2803f411e321ab446a930b3d3df7862483.cairo": "// Create a reference to value as felt*.\nlet __calldata_tmp: felt* = cast(&value, felt*);\nassert [__calldata_ptr + 0] = [__calldata_tmp + 0];\nassert [__calldata_ptr + 1] = [__calldata_tmp + 1];\nlet __calldata_ptr = __calldata_ptr + 2;\n", + "autogen/starknet/arg_processor/9822619206729a9eadcae854c851238a68f93e9dbd956bc4fa147da27ae12e2e.cairo": "// Create a reference to ret_value.totalSupply as felt*.\nlet __return_value_tmp: felt* = cast(&ret_value.totalSupply, felt*);\nassert [__return_value_ptr + 0] = [__return_value_tmp + 0];\nassert [__return_value_ptr + 1] = [__return_value_tmp + 1];\nlet __return_value_ptr = __return_value_ptr + 2;\n", + "autogen/starknet/arg_processor/98feb0f4c88833fb7f82ddd66d06f84d8ffb64f877c6f94e214b61af32d58c29.cairo": "let __calldata_arg_amount = [\n cast(__calldata_ptr, starkware.cairo.common.uint256.Uint256*)];\nlet __calldata_ptr = __calldata_ptr + 2;\n", + "autogen/starknet/arg_processor/99058c0781745b3c0332799d723549974cbf489b623dde03906204304de60803.cairo": "let __calldata_arg_symbol = [__calldata_ptr];\nlet __calldata_ptr = __calldata_ptr + 1;\n", + "autogen/starknet/arg_processor/a81bcec621a2ff03486299e6a77ac9e0b035697b74f8a9b599dbb1c25229a3e2.cairo": "assert [__return_value_ptr] = ret_value.decimals;\nlet __return_value_ptr = __return_value_ptr + 1;\n", + "autogen/starknet/arg_processor/ad6bf90c88bb84c90b568cfe0e89ce22c3213011f6c9cc8bf0b75066ae521c26.cairo": "assert [__calldata_ptr] = from_;\nlet __calldata_ptr = __calldata_ptr + 1;\n", + "autogen/starknet/arg_processor/b2f0827cd25add06ce9417e15e8fde387220730394f6414d9d2c12394040ee99.cairo": "let __calldata_arg_recipient_address = [__calldata_ptr];\nlet __calldata_ptr = __calldata_ptr + 1;\n", + "autogen/starknet/arg_processor/c073ecb54e8cd61ad84824b949b230f6fabf217dd2f7219b88501cc9d2cf7faa.cairo": "let __calldata_arg_account_address = [__calldata_ptr];\nlet __calldata_ptr = __calldata_ptr + 1;\n", + "autogen/starknet/arg_processor/c31620b02d4d706f0542c989b2aadc01b0981d1f6a5933a8fe4937ace3d70d92.cairo": "let __calldata_actual_size = __calldata_ptr - cast([cast(fp + (-3), felt**)], felt*);\n", + "autogen/starknet/arg_processor/dace1a2a18c1ab268e3b2a3b06933197d98c993b19a5f7c57eb5f6b12583601d.cairo": "let __calldata_arg_new_owner_address = [__calldata_ptr];\nlet __calldata_ptr = __calldata_ptr + 1;\n", + "autogen/starknet/arg_processor/e1eb73cd870ec466294c3700e77817cf3c039ac1384882ddb76383eb87a5da90.cairo": "let __calldata_arg_name = [__calldata_ptr];\nlet __calldata_ptr = __calldata_ptr + 1;\n", + "autogen/starknet/arg_processor/e2129a0023ce5f9e4c3de1d6fb100b2688dccff4a2ed2082db4a311f35c53e21.cairo": "assert [__calldata_ptr] = previousOwner;\nlet __calldata_ptr = __calldata_ptr + 1;\n", + "autogen/starknet/arg_processor/f013cc89754bf613d36aa163a5014b518987d20a85394ebbe3c47c5cdb0a38b1.cairo": "// Create a reference to ret_value.balance as felt*.\nlet __return_value_tmp: felt* = cast(&ret_value.balance, felt*);\nassert [__return_value_ptr + 0] = [__return_value_tmp + 0];\nassert [__return_value_ptr + 1] = [__return_value_tmp + 1];\nlet __return_value_ptr = __return_value_ptr + 2;\n", + "autogen/starknet/event/Approval/6150feec30bd48bfd0f446ed8c155a6d911a2c3fb3ec7a980733900416819259.cairo": "emit_event(keys_len=1, keys=__keys_ptr, data_len=__calldata_ptr - __data_ptr, data=__data_ptr);\nreturn ();\n", + "autogen/starknet/event/Approval/8220fde17ca5479f12ae71a8036f4d354fe722f2c036da610b53511924e4ee84.cairo": "alloc_locals;\nlet (local __keys_ptr: felt*) = alloc();\nassert [__keys_ptr] = SELECTOR;\nlet (local __data_ptr: felt*) = alloc();\nlet __calldata_ptr = __data_ptr;\n", + "autogen/starknet/event/Approval/a7a8ae41be29ac9f4f6c3b7837c448d787ca051dd1ade98f409e54d33d112504.cairo": "func emit{syscall_ptr: felt*, range_check_ptr}() {\n}\n", + "autogen/starknet/event/OwnershipTransferred/6150feec30bd48bfd0f446ed8c155a6d911a2c3fb3ec7a980733900416819259.cairo": "emit_event(keys_len=1, keys=__keys_ptr, data_len=__calldata_ptr - __data_ptr, data=__data_ptr);\nreturn ();\n", + "autogen/starknet/event/OwnershipTransferred/8220fde17ca5479f12ae71a8036f4d354fe722f2c036da610b53511924e4ee84.cairo": "alloc_locals;\nlet (local __keys_ptr: felt*) = alloc();\nassert [__keys_ptr] = SELECTOR;\nlet (local __data_ptr: felt*) = alloc();\nlet __calldata_ptr = __data_ptr;\n", + "autogen/starknet/event/OwnershipTransferred/a7a8ae41be29ac9f4f6c3b7837c448d787ca051dd1ade98f409e54d33d112504.cairo": "func emit{syscall_ptr: felt*, range_check_ptr}() {\n}\n", + "autogen/starknet/event/Transfer/6150feec30bd48bfd0f446ed8c155a6d911a2c3fb3ec7a980733900416819259.cairo": "emit_event(keys_len=1, keys=__keys_ptr, data_len=__calldata_ptr - __data_ptr, data=__data_ptr);\nreturn ();\n", + "autogen/starknet/event/Transfer/8220fde17ca5479f12ae71a8036f4d354fe722f2c036da610b53511924e4ee84.cairo": "alloc_locals;\nlet (local __keys_ptr: felt*) = alloc();\nassert [__keys_ptr] = SELECTOR;\nlet (local __data_ptr: felt*) = alloc();\nlet __calldata_ptr = __data_ptr;\n", + "autogen/starknet/event/Transfer/a7a8ae41be29ac9f4f6c3b7837c448d787ca051dd1ade98f409e54d33d112504.cairo": "func emit{syscall_ptr: felt*, range_check_ptr}() {\n}\n", + "autogen/starknet/external/allowance/741ea357d6336b0bed7bf0472425acd0311d543883b803388880e60a232040c7.cairo": "let range_check_ptr = [cast([cast(fp + (-5), felt**)] + 2, felt*)];\n", + "autogen/starknet/external/allowance/9684a85e93c782014ca14293edea4eb2502039a5a7b6538ecd39c56faaf12529.cairo": "let pedersen_ptr = [cast([cast(fp + (-5), felt**)] + 1, starkware.cairo.common.cairo_builtins.HashBuiltin**)];\n", + "autogen/starknet/external/allowance/b2c52ca2d2a8fc8791a983086d8716c5eacd0c3d62934914d2286f84b98ff4cb.cairo": "let syscall_ptr = [cast([cast(fp + (-5), felt**)] + 0, felt**)];\n", + "autogen/starknet/external/allowance/da17921a4e81c09e730800bbf23bfdbe5e9e6bfaedc59d80fbf62087fa43c27d.cairo": "return (syscall_ptr,pedersen_ptr,range_check_ptr,retdata_size,retdata);\n", + "autogen/starknet/external/allowance/e7d92c3f4358ceca344e6ac17d1042d1e15117fe8c65aeb7c99d3db20b4e41c1.cairo": "let ret_value = __wrapped_func{syscall_ptr=syscall_ptr, pedersen_ptr=pedersen_ptr, range_check_ptr=range_check_ptr}(owner_address=__calldata_arg_owner_address, spender_address=__calldata_arg_spender_address,);\nlet (range_check_ptr, retdata_size, retdata) = allowance_encode_return(ret_value, range_check_ptr);\n", + "autogen/starknet/external/approve/741ea357d6336b0bed7bf0472425acd0311d543883b803388880e60a232040c7.cairo": "let range_check_ptr = [cast([cast(fp + (-5), felt**)] + 2, felt*)];\n", + "autogen/starknet/external/approve/9684a85e93c782014ca14293edea4eb2502039a5a7b6538ecd39c56faaf12529.cairo": "let pedersen_ptr = [cast([cast(fp + (-5), felt**)] + 1, starkware.cairo.common.cairo_builtins.HashBuiltin**)];\n", + "autogen/starknet/external/approve/b2c52ca2d2a8fc8791a983086d8716c5eacd0c3d62934914d2286f84b98ff4cb.cairo": "let syscall_ptr = [cast([cast(fp + (-5), felt**)] + 0, felt**)];\n", + "autogen/starknet/external/approve/da17921a4e81c09e730800bbf23bfdbe5e9e6bfaedc59d80fbf62087fa43c27d.cairo": "return (syscall_ptr,pedersen_ptr,range_check_ptr,retdata_size,retdata);\n", + "autogen/starknet/external/approve/f3536ac5ad61f737004e432be52bde56b286aecbaabdf3bc9dff7f11da327290.cairo": "let ret_value = __wrapped_func{syscall_ptr=syscall_ptr, pedersen_ptr=pedersen_ptr, range_check_ptr=range_check_ptr}(spender_address=__calldata_arg_spender_address, amount=__calldata_arg_amount,);\nlet (range_check_ptr, retdata_size, retdata) = approve_encode_return(ret_value, range_check_ptr);\n", + "autogen/starknet/external/balanceOf/741ea357d6336b0bed7bf0472425acd0311d543883b803388880e60a232040c7.cairo": "let range_check_ptr = [cast([cast(fp + (-5), felt**)] + 2, felt*)];\n", + "autogen/starknet/external/balanceOf/75544b4f16a88daff736222254a5ab8f1afc548c179254f09031e0971523639f.cairo": "let ret_value = __wrapped_func{syscall_ptr=syscall_ptr, pedersen_ptr=pedersen_ptr, range_check_ptr=range_check_ptr}(account_address=__calldata_arg_account_address,);\nlet (range_check_ptr, retdata_size, retdata) = balanceOf_encode_return(ret_value, range_check_ptr);\n", + "autogen/starknet/external/balanceOf/9684a85e93c782014ca14293edea4eb2502039a5a7b6538ecd39c56faaf12529.cairo": "let pedersen_ptr = [cast([cast(fp + (-5), felt**)] + 1, starkware.cairo.common.cairo_builtins.HashBuiltin**)];\n", + "autogen/starknet/external/balanceOf/b2c52ca2d2a8fc8791a983086d8716c5eacd0c3d62934914d2286f84b98ff4cb.cairo": "let syscall_ptr = [cast([cast(fp + (-5), felt**)] + 0, felt**)];\n", + "autogen/starknet/external/balanceOf/da17921a4e81c09e730800bbf23bfdbe5e9e6bfaedc59d80fbf62087fa43c27d.cairo": "return (syscall_ptr,pedersen_ptr,range_check_ptr,retdata_size,retdata);\n", + "autogen/starknet/external/constructor/2b70f7db32ebd92a9a04d419e09f1a4cef92c0788ebe6dae9fb09ed1ddb2b66d.cairo": "let ret_value = __wrapped_func{syscall_ptr=syscall_ptr, pedersen_ptr=pedersen_ptr, range_check_ptr=range_check_ptr}(name=__calldata_arg_name, symbol=__calldata_arg_symbol, initial_supply=__calldata_arg_initial_supply, owner_address=__calldata_arg_owner_address,);\n%{ memory[ap] = segments.add() %} // Allocate memory for return value.\ntempvar retdata: felt*;\nlet retdata_size = 0;\n", + "autogen/starknet/external/constructor/741ea357d6336b0bed7bf0472425acd0311d543883b803388880e60a232040c7.cairo": "let range_check_ptr = [cast([cast(fp + (-5), felt**)] + 2, felt*)];\n", + "autogen/starknet/external/constructor/9684a85e93c782014ca14293edea4eb2502039a5a7b6538ecd39c56faaf12529.cairo": "let pedersen_ptr = [cast([cast(fp + (-5), felt**)] + 1, starkware.cairo.common.cairo_builtins.HashBuiltin**)];\n", + "autogen/starknet/external/constructor/b2c52ca2d2a8fc8791a983086d8716c5eacd0c3d62934914d2286f84b98ff4cb.cairo": "let syscall_ptr = [cast([cast(fp + (-5), felt**)] + 0, felt**)];\n", + "autogen/starknet/external/constructor/da17921a4e81c09e730800bbf23bfdbe5e9e6bfaedc59d80fbf62087fa43c27d.cairo": "return (syscall_ptr,pedersen_ptr,range_check_ptr,retdata_size,retdata);\n", + "autogen/starknet/external/decimals/741ea357d6336b0bed7bf0472425acd0311d543883b803388880e60a232040c7.cairo": "let range_check_ptr = [cast([cast(fp + (-5), felt**)] + 2, felt*)];\n", + "autogen/starknet/external/decimals/9684a85e93c782014ca14293edea4eb2502039a5a7b6538ecd39c56faaf12529.cairo": "let pedersen_ptr = [cast([cast(fp + (-5), felt**)] + 1, starkware.cairo.common.cairo_builtins.HashBuiltin**)];\n", + "autogen/starknet/external/decimals/b2c52ca2d2a8fc8791a983086d8716c5eacd0c3d62934914d2286f84b98ff4cb.cairo": "let syscall_ptr = [cast([cast(fp + (-5), felt**)] + 0, felt**)];\n", + "autogen/starknet/external/decimals/b895732858337deae88cb0106f94dcac8575befa3b4c84c0fc6c096df9053938.cairo": "let ret_value = __wrapped_func{syscall_ptr=syscall_ptr, pedersen_ptr=pedersen_ptr, range_check_ptr=range_check_ptr}();\nlet (range_check_ptr, retdata_size, retdata) = decimals_encode_return(ret_value, range_check_ptr);\n", + "autogen/starknet/external/decimals/da17921a4e81c09e730800bbf23bfdbe5e9e6bfaedc59d80fbf62087fa43c27d.cairo": "return (syscall_ptr,pedersen_ptr,range_check_ptr,retdata_size,retdata);\n", + "autogen/starknet/external/decreaseAllowance/741ea357d6336b0bed7bf0472425acd0311d543883b803388880e60a232040c7.cairo": "let range_check_ptr = [cast([cast(fp + (-5), felt**)] + 2, felt*)];\n", + "autogen/starknet/external/decreaseAllowance/9684a85e93c782014ca14293edea4eb2502039a5a7b6538ecd39c56faaf12529.cairo": "let pedersen_ptr = [cast([cast(fp + (-5), felt**)] + 1, starkware.cairo.common.cairo_builtins.HashBuiltin**)];\n", + "autogen/starknet/external/decreaseAllowance/a29580488d615dcce031b9fef4e7c380801d14611a6a383cf002b8e98946c96d.cairo": "let ret_value = __wrapped_func{syscall_ptr=syscall_ptr, pedersen_ptr=pedersen_ptr, range_check_ptr=range_check_ptr}(spender_address=__calldata_arg_spender_address, subtracted_value=__calldata_arg_subtracted_value,);\nlet (range_check_ptr, retdata_size, retdata) = decreaseAllowance_encode_return(ret_value, range_check_ptr);\n", + "autogen/starknet/external/decreaseAllowance/b2c52ca2d2a8fc8791a983086d8716c5eacd0c3d62934914d2286f84b98ff4cb.cairo": "let syscall_ptr = [cast([cast(fp + (-5), felt**)] + 0, felt**)];\n", + "autogen/starknet/external/decreaseAllowance/da17921a4e81c09e730800bbf23bfdbe5e9e6bfaedc59d80fbf62087fa43c27d.cairo": "return (syscall_ptr,pedersen_ptr,range_check_ptr,retdata_size,retdata);\n", + "autogen/starknet/external/freeMint/741ea357d6336b0bed7bf0472425acd0311d543883b803388880e60a232040c7.cairo": "let range_check_ptr = [cast([cast(fp + (-5), felt**)] + 2, felt*)];\n", + "autogen/starknet/external/freeMint/9684a85e93c782014ca14293edea4eb2502039a5a7b6538ecd39c56faaf12529.cairo": "let pedersen_ptr = [cast([cast(fp + (-5), felt**)] + 1, starkware.cairo.common.cairo_builtins.HashBuiltin**)];\n", + "autogen/starknet/external/freeMint/b2c52ca2d2a8fc8791a983086d8716c5eacd0c3d62934914d2286f84b98ff4cb.cairo": "let syscall_ptr = [cast([cast(fp + (-5), felt**)] + 0, felt**)];\n", + "autogen/starknet/external/freeMint/d62db4e7f9d1eaa3d08bfb862789bde6b2d81ca9c072e09df3fd0374a85a31d8.cairo": "let ret_value = __wrapped_func{syscall_ptr=syscall_ptr, pedersen_ptr=pedersen_ptr, range_check_ptr=range_check_ptr}(amount=__calldata_arg_amount,);\nlet (range_check_ptr, retdata_size, retdata) = freeMint_encode_return(ret_value, range_check_ptr);\n", + "autogen/starknet/external/freeMint/da17921a4e81c09e730800bbf23bfdbe5e9e6bfaedc59d80fbf62087fa43c27d.cairo": "return (syscall_ptr,pedersen_ptr,range_check_ptr,retdata_size,retdata);\n", + "autogen/starknet/external/get_owner/145a752dd57c7b3d95eb7d5ff54b849561a155a54eb2444504d6ebd871cec0c0.cairo": "let ret_value = __wrapped_func{syscall_ptr=syscall_ptr, pedersen_ptr=pedersen_ptr, range_check_ptr=range_check_ptr}();\nlet (range_check_ptr, retdata_size, retdata) = get_owner_encode_return(ret_value, range_check_ptr);\n", + "autogen/starknet/external/get_owner/741ea357d6336b0bed7bf0472425acd0311d543883b803388880e60a232040c7.cairo": "let range_check_ptr = [cast([cast(fp + (-5), felt**)] + 2, felt*)];\n", + "autogen/starknet/external/get_owner/9684a85e93c782014ca14293edea4eb2502039a5a7b6538ecd39c56faaf12529.cairo": "let pedersen_ptr = [cast([cast(fp + (-5), felt**)] + 1, starkware.cairo.common.cairo_builtins.HashBuiltin**)];\n", + "autogen/starknet/external/get_owner/b2c52ca2d2a8fc8791a983086d8716c5eacd0c3d62934914d2286f84b98ff4cb.cairo": "let syscall_ptr = [cast([cast(fp + (-5), felt**)] + 0, felt**)];\n", + "autogen/starknet/external/get_owner/da17921a4e81c09e730800bbf23bfdbe5e9e6bfaedc59d80fbf62087fa43c27d.cairo": "return (syscall_ptr,pedersen_ptr,range_check_ptr,retdata_size,retdata);\n", + "autogen/starknet/external/increaseAllowance/741ea357d6336b0bed7bf0472425acd0311d543883b803388880e60a232040c7.cairo": "let range_check_ptr = [cast([cast(fp + (-5), felt**)] + 2, felt*)];\n", + "autogen/starknet/external/increaseAllowance/91df08984917b151369abc8e9e5ada5240e60eb9fcee0c777928387d015b56d5.cairo": "let ret_value = __wrapped_func{syscall_ptr=syscall_ptr, pedersen_ptr=pedersen_ptr, range_check_ptr=range_check_ptr}(spender_address=__calldata_arg_spender_address, added_value=__calldata_arg_added_value,);\nlet (range_check_ptr, retdata_size, retdata) = increaseAllowance_encode_return(ret_value, range_check_ptr);\n", + "autogen/starknet/external/increaseAllowance/9684a85e93c782014ca14293edea4eb2502039a5a7b6538ecd39c56faaf12529.cairo": "let pedersen_ptr = [cast([cast(fp + (-5), felt**)] + 1, starkware.cairo.common.cairo_builtins.HashBuiltin**)];\n", + "autogen/starknet/external/increaseAllowance/b2c52ca2d2a8fc8791a983086d8716c5eacd0c3d62934914d2286f84b98ff4cb.cairo": "let syscall_ptr = [cast([cast(fp + (-5), felt**)] + 0, felt**)];\n", + "autogen/starknet/external/increaseAllowance/da17921a4e81c09e730800bbf23bfdbe5e9e6bfaedc59d80fbf62087fa43c27d.cairo": "return (syscall_ptr,pedersen_ptr,range_check_ptr,retdata_size,retdata);\n", + "autogen/starknet/external/name/3034a84ffbc2cc9a83b0bdb0bf6aadae87a5c63f8544f4bc76a18d60221f0e94.cairo": "let ret_value = __wrapped_func{syscall_ptr=syscall_ptr, pedersen_ptr=pedersen_ptr, range_check_ptr=range_check_ptr}();\nlet (range_check_ptr, retdata_size, retdata) = name_encode_return(ret_value, range_check_ptr);\n", + "autogen/starknet/external/name/741ea357d6336b0bed7bf0472425acd0311d543883b803388880e60a232040c7.cairo": "let range_check_ptr = [cast([cast(fp + (-5), felt**)] + 2, felt*)];\n", + "autogen/starknet/external/name/9684a85e93c782014ca14293edea4eb2502039a5a7b6538ecd39c56faaf12529.cairo": "let pedersen_ptr = [cast([cast(fp + (-5), felt**)] + 1, starkware.cairo.common.cairo_builtins.HashBuiltin**)];\n", + "autogen/starknet/external/name/b2c52ca2d2a8fc8791a983086d8716c5eacd0c3d62934914d2286f84b98ff4cb.cairo": "let syscall_ptr = [cast([cast(fp + (-5), felt**)] + 0, felt**)];\n", + "autogen/starknet/external/name/da17921a4e81c09e730800bbf23bfdbe5e9e6bfaedc59d80fbf62087fa43c27d.cairo": "return (syscall_ptr,pedersen_ptr,range_check_ptr,retdata_size,retdata);\n", + "autogen/starknet/external/return/allowance/1cb7294a6f22e622b9ef012b5a4d2faa6b7630d9f34fee6abcca00d90029b02c.cairo": "func allowance_encode_return(ret_value: (remaining: starkware.cairo.common.uint256.Uint256), range_check_ptr) -> (\n range_check_ptr: felt, data_len: felt, data: felt*) {\n %{ memory[ap] = segments.add() %}\n alloc_locals;\n local __return_value_ptr_start: felt*;\n let __return_value_ptr = __return_value_ptr_start;\n with range_check_ptr {\n }\n return (\n range_check_ptr=range_check_ptr,\n data_len=__return_value_ptr - __return_value_ptr_start,\n data=__return_value_ptr_start);\n}\n", + "autogen/starknet/external/return/approve/3bfbf1e209a2919256f756d0aba26a37c16e14592de6048b15605ba53b428eb5.cairo": "func approve_encode_return(ret_value: (success: felt), range_check_ptr) -> (\n range_check_ptr: felt, data_len: felt, data: felt*) {\n %{ memory[ap] = segments.add() %}\n alloc_locals;\n local __return_value_ptr_start: felt*;\n let __return_value_ptr = __return_value_ptr_start;\n with range_check_ptr {\n }\n return (\n range_check_ptr=range_check_ptr,\n data_len=__return_value_ptr - __return_value_ptr_start,\n data=__return_value_ptr_start);\n}\n", + "autogen/starknet/external/return/balanceOf/6be46755be2f937558932379e9c42b1ab153e2ba499cd66beb178511b2106ad9.cairo": "func balanceOf_encode_return(ret_value: (balance: starkware.cairo.common.uint256.Uint256), range_check_ptr) -> (\n range_check_ptr: felt, data_len: felt, data: felt*) {\n %{ memory[ap] = segments.add() %}\n alloc_locals;\n local __return_value_ptr_start: felt*;\n let __return_value_ptr = __return_value_ptr_start;\n with range_check_ptr {\n }\n return (\n range_check_ptr=range_check_ptr,\n data_len=__return_value_ptr - __return_value_ptr_start,\n data=__return_value_ptr_start);\n}\n", + "autogen/starknet/external/return/decimals/a97d2b6786c76802562faf3a37a632fd604ff18dde35a5c92ee6960b683ee2dd.cairo": "func decimals_encode_return(ret_value: (decimals: felt), range_check_ptr) -> (\n range_check_ptr: felt, data_len: felt, data: felt*) {\n %{ memory[ap] = segments.add() %}\n alloc_locals;\n local __return_value_ptr_start: felt*;\n let __return_value_ptr = __return_value_ptr_start;\n with range_check_ptr {\n }\n return (\n range_check_ptr=range_check_ptr,\n data_len=__return_value_ptr - __return_value_ptr_start,\n data=__return_value_ptr_start);\n}\n", + "autogen/starknet/external/return/decreaseAllowance/fa23cad4bedb82a75f6cde39bb37d0da695f0c4ce70ab41f6b2240cbbdb1c250.cairo": "func decreaseAllowance_encode_return(ret_value: (success: felt), range_check_ptr) -> (\n range_check_ptr: felt, data_len: felt, data: felt*) {\n %{ memory[ap] = segments.add() %}\n alloc_locals;\n local __return_value_ptr_start: felt*;\n let __return_value_ptr = __return_value_ptr_start;\n with range_check_ptr {\n }\n return (\n range_check_ptr=range_check_ptr,\n data_len=__return_value_ptr - __return_value_ptr_start,\n data=__return_value_ptr_start);\n}\n", + "autogen/starknet/external/return/freeMint/8ee68f055606a9115829b1f258ce8ace261225f75ed3521ade3f12ef91fff6be.cairo": "func freeMint_encode_return(ret_value: (success: felt), range_check_ptr) -> (\n range_check_ptr: felt, data_len: felt, data: felt*) {\n %{ memory[ap] = segments.add() %}\n alloc_locals;\n local __return_value_ptr_start: felt*;\n let __return_value_ptr = __return_value_ptr_start;\n with range_check_ptr {\n }\n return (\n range_check_ptr=range_check_ptr,\n data_len=__return_value_ptr - __return_value_ptr_start,\n data=__return_value_ptr_start);\n}\n", + "autogen/starknet/external/return/get_owner/ea89ef518640d4b3e2dae3f51b0396aba7443bc8d3cb4836085f6ecdce4e4b17.cairo": "func get_owner_encode_return(ret_value: (owner_address: felt), range_check_ptr) -> (\n range_check_ptr: felt, data_len: felt, data: felt*) {\n %{ memory[ap] = segments.add() %}\n alloc_locals;\n local __return_value_ptr_start: felt*;\n let __return_value_ptr = __return_value_ptr_start;\n with range_check_ptr {\n }\n return (\n range_check_ptr=range_check_ptr,\n data_len=__return_value_ptr - __return_value_ptr_start,\n data=__return_value_ptr_start);\n}\n", + "autogen/starknet/external/return/increaseAllowance/78c2ccee093b5589a139bd81b558b403837f815524d6dfc3d4af5f60c03fbc80.cairo": "func increaseAllowance_encode_return(ret_value: (success: felt), range_check_ptr) -> (\n range_check_ptr: felt, data_len: felt, data: felt*) {\n %{ memory[ap] = segments.add() %}\n alloc_locals;\n local __return_value_ptr_start: felt*;\n let __return_value_ptr = __return_value_ptr_start;\n with range_check_ptr {\n }\n return (\n range_check_ptr=range_check_ptr,\n data_len=__return_value_ptr - __return_value_ptr_start,\n data=__return_value_ptr_start);\n}\n", + "autogen/starknet/external/return/name/c8fcd0b2b3f24b16bed33f1349d99fe0bde24b7764fe1bdc31d37b9ddca24adc.cairo": "func name_encode_return(ret_value: (name: felt), range_check_ptr) -> (\n range_check_ptr: felt, data_len: felt, data: felt*) {\n %{ memory[ap] = segments.add() %}\n alloc_locals;\n local __return_value_ptr_start: felt*;\n let __return_value_ptr = __return_value_ptr_start;\n with range_check_ptr {\n }\n return (\n range_check_ptr=range_check_ptr,\n data_len=__return_value_ptr - __return_value_ptr_start,\n data=__return_value_ptr_start);\n}\n", + "autogen/starknet/external/return/symbol/a0ae85480af0490479ac55aa0fb10c479d3c551bd5d0b449dafe97eed061cca1.cairo": "func symbol_encode_return(ret_value: (symbol: felt), range_check_ptr) -> (\n range_check_ptr: felt, data_len: felt, data: felt*) {\n %{ memory[ap] = segments.add() %}\n alloc_locals;\n local __return_value_ptr_start: felt*;\n let __return_value_ptr = __return_value_ptr_start;\n with range_check_ptr {\n }\n return (\n range_check_ptr=range_check_ptr,\n data_len=__return_value_ptr - __return_value_ptr_start,\n data=__return_value_ptr_start);\n}\n", + "autogen/starknet/external/return/totalSupply/eeeda446bdea67b39cd9f67678f4dfc35c6c1d0744df18691bf4ede77f67f604.cairo": "func totalSupply_encode_return(ret_value: (totalSupply: starkware.cairo.common.uint256.Uint256), range_check_ptr) -> (\n range_check_ptr: felt, data_len: felt, data: felt*) {\n %{ memory[ap] = segments.add() %}\n alloc_locals;\n local __return_value_ptr_start: felt*;\n let __return_value_ptr = __return_value_ptr_start;\n with range_check_ptr {\n }\n return (\n range_check_ptr=range_check_ptr,\n data_len=__return_value_ptr - __return_value_ptr_start,\n data=__return_value_ptr_start);\n}\n", + "autogen/starknet/external/return/transfer/63591275573bc8b26ecb0c55e4fb63e8afcdbb2de92a6d653dea4d28256a7673.cairo": "func transfer_encode_return(ret_value: (success: felt), range_check_ptr) -> (\n range_check_ptr: felt, data_len: felt, data: felt*) {\n %{ memory[ap] = segments.add() %}\n alloc_locals;\n local __return_value_ptr_start: felt*;\n let __return_value_ptr = __return_value_ptr_start;\n with range_check_ptr {\n }\n return (\n range_check_ptr=range_check_ptr,\n data_len=__return_value_ptr - __return_value_ptr_start,\n data=__return_value_ptr_start);\n}\n", + "autogen/starknet/external/return/transferFrom/5b2c37cd8026aa4af7cd3c9f7917d8ea869eaee537bea84bfb17d9a4e9947d8f.cairo": "func transferFrom_encode_return(ret_value: (success: felt), range_check_ptr) -> (\n range_check_ptr: felt, data_len: felt, data: felt*) {\n %{ memory[ap] = segments.add() %}\n alloc_locals;\n local __return_value_ptr_start: felt*;\n let __return_value_ptr = __return_value_ptr_start;\n with range_check_ptr {\n }\n return (\n range_check_ptr=range_check_ptr,\n data_len=__return_value_ptr - __return_value_ptr_start,\n data=__return_value_ptr_start);\n}\n", + "autogen/starknet/external/return/transfer_ownership/ad83953993fbf79c4dfc73d4886046be3d79ef0e730f6bb37c333a995df0de1a.cairo": "func transfer_ownership_encode_return(ret_value: (new_owner_address: felt), range_check_ptr) -> (\n range_check_ptr: felt, data_len: felt, data: felt*) {\n %{ memory[ap] = segments.add() %}\n alloc_locals;\n local __return_value_ptr_start: felt*;\n let __return_value_ptr = __return_value_ptr_start;\n with range_check_ptr {\n }\n return (\n range_check_ptr=range_check_ptr,\n data_len=__return_value_ptr - __return_value_ptr_start,\n data=__return_value_ptr_start);\n}\n", + "autogen/starknet/external/symbol/741ea357d6336b0bed7bf0472425acd0311d543883b803388880e60a232040c7.cairo": "let range_check_ptr = [cast([cast(fp + (-5), felt**)] + 2, felt*)];\n", + "autogen/starknet/external/symbol/9684a85e93c782014ca14293edea4eb2502039a5a7b6538ecd39c56faaf12529.cairo": "let pedersen_ptr = [cast([cast(fp + (-5), felt**)] + 1, starkware.cairo.common.cairo_builtins.HashBuiltin**)];\n", + "autogen/starknet/external/symbol/b2c52ca2d2a8fc8791a983086d8716c5eacd0c3d62934914d2286f84b98ff4cb.cairo": "let syscall_ptr = [cast([cast(fp + (-5), felt**)] + 0, felt**)];\n", + "autogen/starknet/external/symbol/d8aa55fbbc45562d781915a1c7930fc50b33d8bd29db7102b5c44cbfd8b54639.cairo": "let ret_value = __wrapped_func{syscall_ptr=syscall_ptr, pedersen_ptr=pedersen_ptr, range_check_ptr=range_check_ptr}();\nlet (range_check_ptr, retdata_size, retdata) = symbol_encode_return(ret_value, range_check_ptr);\n", + "autogen/starknet/external/symbol/da17921a4e81c09e730800bbf23bfdbe5e9e6bfaedc59d80fbf62087fa43c27d.cairo": "return (syscall_ptr,pedersen_ptr,range_check_ptr,retdata_size,retdata);\n", + "autogen/starknet/external/totalSupply/741ea357d6336b0bed7bf0472425acd0311d543883b803388880e60a232040c7.cairo": "let range_check_ptr = [cast([cast(fp + (-5), felt**)] + 2, felt*)];\n", + "autogen/starknet/external/totalSupply/9684a85e93c782014ca14293edea4eb2502039a5a7b6538ecd39c56faaf12529.cairo": "let pedersen_ptr = [cast([cast(fp + (-5), felt**)] + 1, starkware.cairo.common.cairo_builtins.HashBuiltin**)];\n", + "autogen/starknet/external/totalSupply/b2c52ca2d2a8fc8791a983086d8716c5eacd0c3d62934914d2286f84b98ff4cb.cairo": "let syscall_ptr = [cast([cast(fp + (-5), felt**)] + 0, felt**)];\n", + "autogen/starknet/external/totalSupply/da17921a4e81c09e730800bbf23bfdbe5e9e6bfaedc59d80fbf62087fa43c27d.cairo": "return (syscall_ptr,pedersen_ptr,range_check_ptr,retdata_size,retdata);\n", + "autogen/starknet/external/totalSupply/f9521ee04dab7f503e72addd131262b31983f1e13ea962eb0b121959d1008326.cairo": "let ret_value = __wrapped_func{syscall_ptr=syscall_ptr, pedersen_ptr=pedersen_ptr, range_check_ptr=range_check_ptr}();\nlet (range_check_ptr, retdata_size, retdata) = totalSupply_encode_return(ret_value, range_check_ptr);\n", + "autogen/starknet/external/transfer/2da85ae0239cf78b51e06096105fe4d643954f67ecdb81df1971fc55b42b7a53.cairo": "let ret_value = __wrapped_func{syscall_ptr=syscall_ptr, pedersen_ptr=pedersen_ptr, range_check_ptr=range_check_ptr}(recipient_address=__calldata_arg_recipient_address, amount=__calldata_arg_amount,);\nlet (range_check_ptr, retdata_size, retdata) = transfer_encode_return(ret_value, range_check_ptr);\n", + "autogen/starknet/external/transfer/741ea357d6336b0bed7bf0472425acd0311d543883b803388880e60a232040c7.cairo": "let range_check_ptr = [cast([cast(fp + (-5), felt**)] + 2, felt*)];\n", + "autogen/starknet/external/transfer/9684a85e93c782014ca14293edea4eb2502039a5a7b6538ecd39c56faaf12529.cairo": "let pedersen_ptr = [cast([cast(fp + (-5), felt**)] + 1, starkware.cairo.common.cairo_builtins.HashBuiltin**)];\n", + "autogen/starknet/external/transfer/b2c52ca2d2a8fc8791a983086d8716c5eacd0c3d62934914d2286f84b98ff4cb.cairo": "let syscall_ptr = [cast([cast(fp + (-5), felt**)] + 0, felt**)];\n", + "autogen/starknet/external/transfer/da17921a4e81c09e730800bbf23bfdbe5e9e6bfaedc59d80fbf62087fa43c27d.cairo": "return (syscall_ptr,pedersen_ptr,range_check_ptr,retdata_size,retdata);\n", + "autogen/starknet/external/transferFrom/502c16cd564f5e92665ea78c30f9a67dad3fe2b2780e31028f690b0fdb9c7e85.cairo": "let ret_value = __wrapped_func{syscall_ptr=syscall_ptr, pedersen_ptr=pedersen_ptr, range_check_ptr=range_check_ptr}(sender_address=__calldata_arg_sender_address, recipient_address=__calldata_arg_recipient_address, amount=__calldata_arg_amount,);\nlet (range_check_ptr, retdata_size, retdata) = transferFrom_encode_return(ret_value, range_check_ptr);\n", + "autogen/starknet/external/transferFrom/741ea357d6336b0bed7bf0472425acd0311d543883b803388880e60a232040c7.cairo": "let range_check_ptr = [cast([cast(fp + (-5), felt**)] + 2, felt*)];\n", + "autogen/starknet/external/transferFrom/9684a85e93c782014ca14293edea4eb2502039a5a7b6538ecd39c56faaf12529.cairo": "let pedersen_ptr = [cast([cast(fp + (-5), felt**)] + 1, starkware.cairo.common.cairo_builtins.HashBuiltin**)];\n", + "autogen/starknet/external/transferFrom/b2c52ca2d2a8fc8791a983086d8716c5eacd0c3d62934914d2286f84b98ff4cb.cairo": "let syscall_ptr = [cast([cast(fp + (-5), felt**)] + 0, felt**)];\n", + "autogen/starknet/external/transferFrom/da17921a4e81c09e730800bbf23bfdbe5e9e6bfaedc59d80fbf62087fa43c27d.cairo": "return (syscall_ptr,pedersen_ptr,range_check_ptr,retdata_size,retdata);\n", + "autogen/starknet/external/transfer_ownership/62f61be6c719f8c3811a7dcfc9f654360da606f36b1f1c83a12f7b344b4fec42.cairo": "let ret_value = __wrapped_func{syscall_ptr=syscall_ptr, pedersen_ptr=pedersen_ptr, range_check_ptr=range_check_ptr}(new_owner_address=__calldata_arg_new_owner_address,);\nlet (range_check_ptr, retdata_size, retdata) = transfer_ownership_encode_return(ret_value, range_check_ptr);\n", + "autogen/starknet/external/transfer_ownership/741ea357d6336b0bed7bf0472425acd0311d543883b803388880e60a232040c7.cairo": "let range_check_ptr = [cast([cast(fp + (-5), felt**)] + 2, felt*)];\n", + "autogen/starknet/external/transfer_ownership/9684a85e93c782014ca14293edea4eb2502039a5a7b6538ecd39c56faaf12529.cairo": "let pedersen_ptr = [cast([cast(fp + (-5), felt**)] + 1, starkware.cairo.common.cairo_builtins.HashBuiltin**)];\n", + "autogen/starknet/external/transfer_ownership/b2c52ca2d2a8fc8791a983086d8716c5eacd0c3d62934914d2286f84b98ff4cb.cairo": "let syscall_ptr = [cast([cast(fp + (-5), felt**)] + 0, felt**)];\n", + "autogen/starknet/external/transfer_ownership/da17921a4e81c09e730800bbf23bfdbe5e9e6bfaedc59d80fbf62087fa43c27d.cairo": "return (syscall_ptr,pedersen_ptr,range_check_ptr,retdata_size,retdata);\n", + "autogen/starknet/storage_var/ERC20_allowances/decl.cairo": "namespace ERC20_allowances {\n from starkware.starknet.common.storage import normalize_address\n from starkware.starknet.common.syscalls import storage_read, storage_write\n from starkware.cairo.common.cairo_builtins import HashBuiltin\n from starkware.cairo.common.hash import hash2\n\n func addr{pedersen_ptr: HashBuiltin*, range_check_ptr}(owner: felt, spender: felt) -> (\n res: felt\n ) {\n let res = 0;\n call hash2;\n call normalize_address;\n }\n\n func read{syscall_ptr: felt*, pedersen_ptr: HashBuiltin*, range_check_ptr}(\n owner: felt, spender: felt\n ) -> (remaining: Uint256) {\n let storage_addr = 0;\n call addr;\n call storage_read;\n }\n\n func write{syscall_ptr: felt*, pedersen_ptr: HashBuiltin*, range_check_ptr}(\n owner: felt, spender: felt, value: Uint256\n ) {\n let storage_addr = 0;\n call addr;\n call storage_write;\n }\n}", + "autogen/starknet/storage_var/ERC20_allowances/impl.cairo": "namespace ERC20_allowances {\n from starkware.starknet.common.storage import normalize_address\n from starkware.starknet.common.syscalls import storage_read, storage_write\n from starkware.cairo.common.cairo_builtins import HashBuiltin\n from starkware.cairo.common.hash import hash2\n\n func addr{pedersen_ptr: HashBuiltin*, range_check_ptr}(owner: felt, spender: felt) -> (\n res: felt\n ) {\n let res = 1711163456665081073580914249687599371093043615922190105609691201034487595172;\n let (res) = hash2{hash_ptr=pedersen_ptr}(res, cast(&owner, felt*)[0]);\n let (res) = hash2{hash_ptr=pedersen_ptr}(res, cast(&spender, felt*)[0]);\n let (res) = normalize_address(addr=res);\n return (res=res);\n }\n\n func read{syscall_ptr: felt*, pedersen_ptr: HashBuiltin*, range_check_ptr}(\n owner: felt, spender: felt\n ) -> (remaining: Uint256) {\n let (storage_addr) = addr(owner, spender);\n let (__storage_var_temp0) = storage_read(address=storage_addr + 0);\n let (__storage_var_temp1) = storage_read(address=storage_addr + 1);\n\n tempvar syscall_ptr = syscall_ptr;\n tempvar pedersen_ptr = pedersen_ptr;\n tempvar range_check_ptr = range_check_ptr;\n tempvar __storage_var_temp0: felt = __storage_var_temp0;\n tempvar __storage_var_temp1: felt = __storage_var_temp1;\n return ([cast(&__storage_var_temp0, Uint256*)],);\n }\n\n func write{syscall_ptr: felt*, pedersen_ptr: HashBuiltin*, range_check_ptr}(\n owner: felt, spender: felt, value: Uint256\n ) {\n let (storage_addr) = addr(owner, spender);\n storage_write(address=storage_addr + 0, value=[cast(&value, felt) + 0]);\n storage_write(address=storage_addr + 1, value=[cast(&value, felt) + 1]);\n return ();\n }\n}", + "autogen/starknet/storage_var/ERC20_balances/decl.cairo": "namespace ERC20_balances {\n from starkware.starknet.common.storage import normalize_address\n from starkware.starknet.common.syscalls import storage_read, storage_write\n from starkware.cairo.common.cairo_builtins import HashBuiltin\n from starkware.cairo.common.hash import hash2\n\n func addr{pedersen_ptr: HashBuiltin*, range_check_ptr}(account: felt) -> (res: felt) {\n let res = 0;\n call hash2;\n call normalize_address;\n }\n\n func read{syscall_ptr: felt*, pedersen_ptr: HashBuiltin*, range_check_ptr}(account: felt) -> (\n balance: Uint256\n ) {\n let storage_addr = 0;\n call addr;\n call storage_read;\n }\n\n func write{syscall_ptr: felt*, pedersen_ptr: HashBuiltin*, range_check_ptr}(\n account: felt, value: Uint256\n ) {\n let storage_addr = 0;\n call addr;\n call storage_write;\n }\n}", + "autogen/starknet/storage_var/ERC20_balances/impl.cairo": "namespace ERC20_balances {\n from starkware.starknet.common.storage import normalize_address\n from starkware.starknet.common.syscalls import storage_read, storage_write\n from starkware.cairo.common.cairo_builtins import HashBuiltin\n from starkware.cairo.common.hash import hash2\n\n func addr{pedersen_ptr: HashBuiltin*, range_check_ptr}(account: felt) -> (res: felt) {\n let res = 1648309034483306940318020057553480881073352647889682838905012914068126451082;\n let (res) = hash2{hash_ptr=pedersen_ptr}(res, cast(&account, felt*)[0]);\n let (res) = normalize_address(addr=res);\n return (res=res);\n }\n\n func read{syscall_ptr: felt*, pedersen_ptr: HashBuiltin*, range_check_ptr}(account: felt) -> (\n balance: Uint256\n ) {\n let (storage_addr) = addr(account);\n let (__storage_var_temp0) = storage_read(address=storage_addr + 0);\n let (__storage_var_temp1) = storage_read(address=storage_addr + 1);\n\n tempvar syscall_ptr = syscall_ptr;\n tempvar pedersen_ptr = pedersen_ptr;\n tempvar range_check_ptr = range_check_ptr;\n tempvar __storage_var_temp0: felt = __storage_var_temp0;\n tempvar __storage_var_temp1: felt = __storage_var_temp1;\n return ([cast(&__storage_var_temp0, Uint256*)],);\n }\n\n func write{syscall_ptr: felt*, pedersen_ptr: HashBuiltin*, range_check_ptr}(\n account: felt, value: Uint256\n ) {\n let (storage_addr) = addr(account);\n storage_write(address=storage_addr + 0, value=[cast(&value, felt) + 0]);\n storage_write(address=storage_addr + 1, value=[cast(&value, felt) + 1]);\n return ();\n }\n}", + "autogen/starknet/storage_var/ERC20_decimals/decl.cairo": "namespace ERC20_decimals {\n from starkware.starknet.common.storage import normalize_address\n from starkware.starknet.common.syscalls import storage_read, storage_write\n from starkware.cairo.common.cairo_builtins import HashBuiltin\n from starkware.cairo.common.hash import hash2\n\n func addr{pedersen_ptr: HashBuiltin*, range_check_ptr}() -> (res: felt) {\n let res = 0;\n call hash2;\n call normalize_address;\n }\n\n func read{syscall_ptr: felt*, pedersen_ptr: HashBuiltin*, range_check_ptr}() -> (\n decimals: felt\n ) {\n let storage_addr = 0;\n call addr;\n call storage_read;\n }\n\n func write{syscall_ptr: felt*, pedersen_ptr: HashBuiltin*, range_check_ptr}(value: felt) {\n let storage_addr = 0;\n call addr;\n call storage_write;\n }\n}", + "autogen/starknet/storage_var/ERC20_decimals/impl.cairo": "namespace ERC20_decimals {\n from starkware.starknet.common.storage import normalize_address\n from starkware.starknet.common.syscalls import storage_read, storage_write\n from starkware.cairo.common.cairo_builtins import HashBuiltin\n from starkware.cairo.common.hash import hash2\n\n func addr{pedersen_ptr: HashBuiltin*, range_check_ptr}() -> (res: felt) {\n let res = 877823913686921299048507465990220541161247202424540097559864758276037605753;\n return (res=res);\n }\n\n func read{syscall_ptr: felt*, pedersen_ptr: HashBuiltin*, range_check_ptr}() -> (\n decimals: felt\n ) {\n let (storage_addr) = addr();\n let (__storage_var_temp0) = storage_read(address=storage_addr + 0);\n\n tempvar syscall_ptr = syscall_ptr;\n tempvar pedersen_ptr = pedersen_ptr;\n tempvar range_check_ptr = range_check_ptr;\n tempvar __storage_var_temp0: felt = __storage_var_temp0;\n return ([cast(&__storage_var_temp0, felt*)],);\n }\n\n func write{syscall_ptr: felt*, pedersen_ptr: HashBuiltin*, range_check_ptr}(value: felt) {\n let (storage_addr) = addr();\n storage_write(address=storage_addr + 0, value=[cast(&value, felt) + 0]);\n return ();\n }\n}", + "autogen/starknet/storage_var/ERC20_name/decl.cairo": "namespace ERC20_name {\n from starkware.starknet.common.storage import normalize_address\n from starkware.starknet.common.syscalls import storage_read, storage_write\n from starkware.cairo.common.cairo_builtins import HashBuiltin\n from starkware.cairo.common.hash import hash2\n\n func addr{pedersen_ptr: HashBuiltin*, range_check_ptr}() -> (res: felt) {\n let res = 0;\n call hash2;\n call normalize_address;\n }\n\n func read{syscall_ptr: felt*, pedersen_ptr: HashBuiltin*, range_check_ptr}() -> (name: felt) {\n let storage_addr = 0;\n call addr;\n call storage_read;\n }\n\n func write{syscall_ptr: felt*, pedersen_ptr: HashBuiltin*, range_check_ptr}(value: felt) {\n let storage_addr = 0;\n call addr;\n call storage_write;\n }\n}", + "autogen/starknet/storage_var/ERC20_name/impl.cairo": "namespace ERC20_name {\n from starkware.starknet.common.storage import normalize_address\n from starkware.starknet.common.syscalls import storage_read, storage_write\n from starkware.cairo.common.cairo_builtins import HashBuiltin\n from starkware.cairo.common.hash import hash2\n\n func addr{pedersen_ptr: HashBuiltin*, range_check_ptr}() -> (res: felt) {\n let res = 1473120764136009396440970107973971969419251478021578277222806501183556393953;\n return (res=res);\n }\n\n func read{syscall_ptr: felt*, pedersen_ptr: HashBuiltin*, range_check_ptr}() -> (name: felt) {\n let (storage_addr) = addr();\n let (__storage_var_temp0) = storage_read(address=storage_addr + 0);\n\n tempvar syscall_ptr = syscall_ptr;\n tempvar pedersen_ptr = pedersen_ptr;\n tempvar range_check_ptr = range_check_ptr;\n tempvar __storage_var_temp0: felt = __storage_var_temp0;\n return ([cast(&__storage_var_temp0, felt*)],);\n }\n\n func write{syscall_ptr: felt*, pedersen_ptr: HashBuiltin*, range_check_ptr}(value: felt) {\n let (storage_addr) = addr();\n storage_write(address=storage_addr + 0, value=[cast(&value, felt) + 0]);\n return ();\n }\n}", + "autogen/starknet/storage_var/ERC20_symbol/decl.cairo": "namespace ERC20_symbol {\n from starkware.starknet.common.storage import normalize_address\n from starkware.starknet.common.syscalls import storage_read, storage_write\n from starkware.cairo.common.cairo_builtins import HashBuiltin\n from starkware.cairo.common.hash import hash2\n\n func addr{pedersen_ptr: HashBuiltin*, range_check_ptr}() -> (res: felt) {\n let res = 0;\n call hash2;\n call normalize_address;\n }\n\n func read{syscall_ptr: felt*, pedersen_ptr: HashBuiltin*, range_check_ptr}() -> (symbol: felt) {\n let storage_addr = 0;\n call addr;\n call storage_read;\n }\n\n func write{syscall_ptr: felt*, pedersen_ptr: HashBuiltin*, range_check_ptr}(value: felt) {\n let storage_addr = 0;\n call addr;\n call storage_write;\n }\n}", + "autogen/starknet/storage_var/ERC20_symbol/impl.cairo": "namespace ERC20_symbol {\n from starkware.starknet.common.storage import normalize_address\n from starkware.starknet.common.syscalls import storage_read, storage_write\n from starkware.cairo.common.cairo_builtins import HashBuiltin\n from starkware.cairo.common.hash import hash2\n\n func addr{pedersen_ptr: HashBuiltin*, range_check_ptr}() -> (res: felt) {\n let res = 322990191961554429053868449035526014412279677330895387449703561219527453810;\n return (res=res);\n }\n\n func read{syscall_ptr: felt*, pedersen_ptr: HashBuiltin*, range_check_ptr}() -> (symbol: felt) {\n let (storage_addr) = addr();\n let (__storage_var_temp0) = storage_read(address=storage_addr + 0);\n\n tempvar syscall_ptr = syscall_ptr;\n tempvar pedersen_ptr = pedersen_ptr;\n tempvar range_check_ptr = range_check_ptr;\n tempvar __storage_var_temp0: felt = __storage_var_temp0;\n return ([cast(&__storage_var_temp0, felt*)],);\n }\n\n func write{syscall_ptr: felt*, pedersen_ptr: HashBuiltin*, range_check_ptr}(value: felt) {\n let (storage_addr) = addr();\n storage_write(address=storage_addr + 0, value=[cast(&value, felt) + 0]);\n return ();\n }\n}", + "autogen/starknet/storage_var/ERC20_total_supply/decl.cairo": "namespace ERC20_total_supply {\n from starkware.starknet.common.storage import normalize_address\n from starkware.starknet.common.syscalls import storage_read, storage_write\n from starkware.cairo.common.cairo_builtins import HashBuiltin\n from starkware.cairo.common.hash import hash2\n\n func addr{pedersen_ptr: HashBuiltin*, range_check_ptr}() -> (res: felt) {\n let res = 0;\n call hash2;\n call normalize_address;\n }\n\n func read{syscall_ptr: felt*, pedersen_ptr: HashBuiltin*, range_check_ptr}() -> (\n total_supply: Uint256\n ) {\n let storage_addr = 0;\n call addr;\n call storage_read;\n }\n\n func write{syscall_ptr: felt*, pedersen_ptr: HashBuiltin*, range_check_ptr}(value: Uint256) {\n let storage_addr = 0;\n call addr;\n call storage_write;\n }\n}", + "autogen/starknet/storage_var/ERC20_total_supply/impl.cairo": "namespace ERC20_total_supply {\n from starkware.starknet.common.storage import normalize_address\n from starkware.starknet.common.syscalls import storage_read, storage_write\n from starkware.cairo.common.cairo_builtins import HashBuiltin\n from starkware.cairo.common.hash import hash2\n\n func addr{pedersen_ptr: HashBuiltin*, range_check_ptr}() -> (res: felt) {\n let res = 482148859801725464274198147480840119334382080162606228723774290742111978842;\n return (res=res);\n }\n\n func read{syscall_ptr: felt*, pedersen_ptr: HashBuiltin*, range_check_ptr}() -> (\n total_supply: Uint256\n ) {\n let (storage_addr) = addr();\n let (__storage_var_temp0) = storage_read(address=storage_addr + 0);\n let (__storage_var_temp1) = storage_read(address=storage_addr + 1);\n\n tempvar syscall_ptr = syscall_ptr;\n tempvar pedersen_ptr = pedersen_ptr;\n tempvar range_check_ptr = range_check_ptr;\n tempvar __storage_var_temp0: felt = __storage_var_temp0;\n tempvar __storage_var_temp1: felt = __storage_var_temp1;\n return ([cast(&__storage_var_temp0, Uint256*)],);\n }\n\n func write{syscall_ptr: felt*, pedersen_ptr: HashBuiltin*, range_check_ptr}(value: Uint256) {\n let (storage_addr) = addr();\n storage_write(address=storage_addr + 0, value=[cast(&value, felt) + 0]);\n storage_write(address=storage_addr + 1, value=[cast(&value, felt) + 1]);\n return ();\n }\n}", + "autogen/starknet/storage_var/Ownable_owner/decl.cairo": "namespace Ownable_owner {\n from starkware.starknet.common.storage import normalize_address\n from starkware.starknet.common.syscalls import storage_read, storage_write\n from starkware.cairo.common.cairo_builtins import HashBuiltin\n from starkware.cairo.common.hash import hash2\n\n func addr{pedersen_ptr: HashBuiltin*, range_check_ptr}() -> (res: felt) {\n let res = 0;\n call hash2;\n call normalize_address;\n }\n\n func read{syscall_ptr: felt*, pedersen_ptr: HashBuiltin*, range_check_ptr}() -> (owner: felt) {\n let storage_addr = 0;\n call addr;\n call storage_read;\n }\n\n func write{syscall_ptr: felt*, pedersen_ptr: HashBuiltin*, range_check_ptr}(value: felt) {\n let storage_addr = 0;\n call addr;\n call storage_write;\n }\n}", + "autogen/starknet/storage_var/Ownable_owner/impl.cairo": "namespace Ownable_owner {\n from starkware.starknet.common.storage import normalize_address\n from starkware.starknet.common.syscalls import storage_read, storage_write\n from starkware.cairo.common.cairo_builtins import HashBuiltin\n from starkware.cairo.common.hash import hash2\n\n func addr{pedersen_ptr: HashBuiltin*, range_check_ptr}() -> (res: felt) {\n let res = 1239149872729906871793169171313897310809028090219849129902089947133222824240;\n return (res=res);\n }\n\n func read{syscall_ptr: felt*, pedersen_ptr: HashBuiltin*, range_check_ptr}() -> (owner: felt) {\n let (storage_addr) = addr();\n let (__storage_var_temp0) = storage_read(address=storage_addr + 0);\n\n tempvar syscall_ptr = syscall_ptr;\n tempvar pedersen_ptr = pedersen_ptr;\n tempvar range_check_ptr = range_check_ptr;\n tempvar __storage_var_temp0: felt = __storage_var_temp0;\n return ([cast(&__storage_var_temp0, felt*)],);\n }\n\n func write{syscall_ptr: felt*, pedersen_ptr: HashBuiltin*, range_check_ptr}(value: felt) {\n let (storage_addr) = addr();\n storage_write(address=storage_addr + 0, value=[cast(&value, felt) + 0]);\n return ();\n }\n}" + }, + "instruction_locations": { + "0": { + "accessible_scopes": [ + "starkware.cairo.common.alloc", + "starkware.cairo.common.alloc.alloc" + ], + "flow_tracking_data": null, + "hints": [ + { + "location": { + "end_col": 38, + "end_line": 3, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/alloc.cairo" + }, + "start_col": 5, + "start_line": 3 + }, + "n_prefix_newlines": 0 + } + ], + "inst": { + "end_col": 12, + "end_line": 4, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/alloc.cairo" + }, + "start_col": 5, + "start_line": 4 + } + }, + "2": { + "accessible_scopes": [ + "starkware.cairo.common.alloc", + "starkware.cairo.common.alloc.alloc" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 40, + "end_line": 5, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/alloc.cairo" + }, + "start_col": 5, + "start_line": 5 + } + }, + "3": { + "accessible_scopes": [ + "starkware.cairo.common.hash", + "starkware.cairo.common.hash.hash2" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 19, + "end_line": 14, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/hash.cairo" + }, + "start_col": 5, + "start_line": 14 + } + }, + "4": { + "accessible_scopes": [ + "starkware.cairo.common.hash", + "starkware.cairo.common.hash.hash2" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 19, + "end_line": 15, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/hash.cairo" + }, + "start_col": 5, + "start_line": 15 + } + }, + "5": { + "accessible_scopes": [ + "starkware.cairo.common.hash", + "starkware.cairo.common.hash.hash2" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 47, + "end_line": 17, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/hash.cairo" + }, + "parent_location": [ + { + "end_col": 34, + "end_line": 13, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/hash.cairo" + }, + "parent_location": [ + { + "end_col": 28, + "end_line": 18, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/hash.cairo" + }, + "start_col": 5, + "start_line": 18 + }, + "While trying to retrieve the implicit argument 'hash_ptr' in:" + ], + "start_col": 12, + "start_line": 13 + }, + "While expanding the reference 'hash_ptr' in:" + ], + "start_col": 20, + "start_line": 17 + } + }, + "7": { + "accessible_scopes": [ + "starkware.cairo.common.hash", + "starkware.cairo.common.hash.hash2" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 33, + "end_line": 16, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/hash.cairo" + }, + "parent_location": [ + { + "end_col": 26, + "end_line": 18, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/hash.cairo" + }, + "start_col": 20, + "start_line": 18 + }, + "While expanding the reference 'result' in:" + ], + "start_col": 18, + "start_line": 16 + } + }, + "8": { + "accessible_scopes": [ + "starkware.cairo.common.hash", + "starkware.cairo.common.hash.hash2" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 28, + "end_line": 18, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/hash.cairo" + }, + "start_col": 5, + "start_line": 18 + } + }, + "9": { + "accessible_scopes": [ + "starkware.starknet.common.syscalls", + "starkware.starknet.common.syscalls.get_caller_address" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 90, + "end_line": 202, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/starknet/common/syscalls.cairo" + }, + "start_col": 63, + "start_line": 202 + } + }, + "11": { + "accessible_scopes": [ + "starkware.starknet.common.syscalls", + "starkware.starknet.common.syscalls.get_caller_address" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 92, + "end_line": 202, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/starknet/common/syscalls.cairo" + }, + "start_col": 5, + "start_line": 202 + } + }, + "12": { + "accessible_scopes": [ + "starkware.starknet.common.syscalls", + "starkware.starknet.common.syscalls.get_caller_address" + ], + "flow_tracking_data": null, + "hints": [ + { + "location": { + "end_col": 93, + "end_line": 203, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/starknet/common/syscalls.cairo" + }, + "start_col": 5, + "start_line": 203 + }, + "n_prefix_newlines": 0 + } + ], + "inst": { + "end_col": 58, + "end_line": 204, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/starknet/common/syscalls.cairo" + }, + "parent_location": [ + { + "end_col": 43, + "end_line": 200, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/starknet/common/syscalls.cairo" + }, + "parent_location": [ + { + "end_col": 61, + "end_line": 205, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/starknet/common/syscalls.cairo" + }, + "start_col": 5, + "start_line": 205 + }, + "While trying to retrieve the implicit argument 'syscall_ptr' in:" + ], + "start_col": 25, + "start_line": 200 + }, + "While expanding the reference 'syscall_ptr' in:" + ], + "start_col": 23, + "start_line": 204 + } + }, + "14": { + "accessible_scopes": [ + "starkware.starknet.common.syscalls", + "starkware.starknet.common.syscalls.get_caller_address" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 59, + "end_line": 205, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/starknet/common/syscalls.cairo" + }, + "start_col": 28, + "start_line": 205 + } + }, + "15": { + "accessible_scopes": [ + "starkware.starknet.common.syscalls", + "starkware.starknet.common.syscalls.get_caller_address" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 61, + "end_line": 205, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/starknet/common/syscalls.cairo" + }, + "start_col": 5, + "start_line": 205 + } + }, + "16": { + "accessible_scopes": [ + "starkware.starknet.common.syscalls", + "starkware.starknet.common.syscalls.storage_read" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 79, + "end_line": 354, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/starknet/common/syscalls.cairo" + }, + "start_col": 58, + "start_line": 354 + } + }, + "18": { + "accessible_scopes": [ + "starkware.starknet.common.syscalls", + "starkware.starknet.common.syscalls.storage_read" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 98, + "end_line": 354, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/starknet/common/syscalls.cairo" + }, + "start_col": 5, + "start_line": 354 + } + }, + "19": { + "accessible_scopes": [ + "starkware.starknet.common.syscalls", + "starkware.starknet.common.syscalls.storage_read" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 98, + "end_line": 354, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/starknet/common/syscalls.cairo" + }, + "start_col": 5, + "start_line": 354 + } + }, + "20": { + "accessible_scopes": [ + "starkware.starknet.common.syscalls", + "starkware.starknet.common.syscalls.storage_read" + ], + "flow_tracking_data": null, + "hints": [ + { + "location": { + "end_col": 87, + "end_line": 355, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/starknet/common/syscalls.cairo" + }, + "start_col": 5, + "start_line": 355 + }, + "n_prefix_newlines": 0 + } + ], + "inst": { + "end_col": 53, + "end_line": 357, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/starknet/common/syscalls.cairo" + }, + "parent_location": [ + { + "end_col": 37, + "end_line": 352, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/starknet/common/syscalls.cairo" + }, + "parent_location": [ + { + "end_col": 35, + "end_line": 358, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/starknet/common/syscalls.cairo" + }, + "start_col": 5, + "start_line": 358 + }, + "While trying to retrieve the implicit argument 'syscall_ptr' in:" + ], + "start_col": 19, + "start_line": 352 + }, + "While expanding the reference 'syscall_ptr' in:" + ], + "start_col": 23, + "start_line": 357 + } + }, + "22": { + "accessible_scopes": [ + "starkware.starknet.common.syscalls", + "starkware.starknet.common.syscalls.storage_read" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 33, + "end_line": 358, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/starknet/common/syscalls.cairo" + }, + "start_col": 19, + "start_line": 358 + } + }, + "23": { + "accessible_scopes": [ + "starkware.starknet.common.syscalls", + "starkware.starknet.common.syscalls.storage_read" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 35, + "end_line": 358, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/starknet/common/syscalls.cairo" + }, + "start_col": 5, + "start_line": 358 + } + }, + "24": { + "accessible_scopes": [ + "starkware.starknet.common.syscalls", + "starkware.starknet.common.syscalls.storage_write" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 40, + "end_line": 372, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/starknet/common/syscalls.cairo" + }, + "start_col": 18, + "start_line": 372 + } + }, + "26": { + "accessible_scopes": [ + "starkware.starknet.common.syscalls", + "starkware.starknet.common.syscalls.storage_write" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 7, + "end_line": 373, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/starknet/common/syscalls.cairo" + }, + "start_col": 5, + "start_line": 371 + } + }, + "27": { + "accessible_scopes": [ + "starkware.starknet.common.syscalls", + "starkware.starknet.common.syscalls.storage_write" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 7, + "end_line": 373, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/starknet/common/syscalls.cairo" + }, + "start_col": 5, + "start_line": 371 + } + }, + "28": { + "accessible_scopes": [ + "starkware.starknet.common.syscalls", + "starkware.starknet.common.syscalls.storage_write" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 7, + "end_line": 373, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/starknet/common/syscalls.cairo" + }, + "start_col": 5, + "start_line": 371 + } + }, + "29": { + "accessible_scopes": [ + "starkware.starknet.common.syscalls", + "starkware.starknet.common.syscalls.storage_write" + ], + "flow_tracking_data": null, + "hints": [ + { + "location": { + "end_col": 88, + "end_line": 374, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/starknet/common/syscalls.cairo" + }, + "start_col": 5, + "start_line": 374 + }, + "n_prefix_newlines": 0 + } + ], + "inst": { + "end_col": 54, + "end_line": 375, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/starknet/common/syscalls.cairo" + }, + "parent_location": [ + { + "end_col": 38, + "end_line": 370, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/starknet/common/syscalls.cairo" + }, + "parent_location": [ + { + "end_col": 15, + "end_line": 376, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/starknet/common/syscalls.cairo" + }, + "start_col": 5, + "start_line": 376 + }, + "While trying to retrieve the implicit argument 'syscall_ptr' in:" + ], + "start_col": 20, + "start_line": 370 + }, + "While expanding the reference 'syscall_ptr' in:" + ], + "start_col": 23, + "start_line": 375 + } + }, + "31": { + "accessible_scopes": [ + "starkware.starknet.common.syscalls", + "starkware.starknet.common.syscalls.storage_write" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 15, + "end_line": 376, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/starknet/common/syscalls.cairo" + }, + "start_col": 5, + "start_line": 376 + } + }, + "32": { + "accessible_scopes": [ + "starkware.starknet.common.syscalls", + "starkware.starknet.common.syscalls.emit_event" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 37, + "end_line": 392, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/starknet/common/syscalls.cairo" + }, + "start_col": 18, + "start_line": 392 + } + }, + "34": { + "accessible_scopes": [ + "starkware.starknet.common.syscalls", + "starkware.starknet.common.syscalls.emit_event" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 7, + "end_line": 393, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/starknet/common/syscalls.cairo" + }, + "start_col": 5, + "start_line": 391 + } + }, + "35": { + "accessible_scopes": [ + "starkware.starknet.common.syscalls", + "starkware.starknet.common.syscalls.emit_event" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 7, + "end_line": 393, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/starknet/common/syscalls.cairo" + }, + "start_col": 5, + "start_line": 391 + } + }, + "36": { + "accessible_scopes": [ + "starkware.starknet.common.syscalls", + "starkware.starknet.common.syscalls.emit_event" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 7, + "end_line": 393, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/starknet/common/syscalls.cairo" + }, + "start_col": 5, + "start_line": 391 + } + }, + "37": { + "accessible_scopes": [ + "starkware.starknet.common.syscalls", + "starkware.starknet.common.syscalls.emit_event" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 7, + "end_line": 393, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/starknet/common/syscalls.cairo" + }, + "start_col": 5, + "start_line": 391 + } + }, + "38": { + "accessible_scopes": [ + "starkware.starknet.common.syscalls", + "starkware.starknet.common.syscalls.emit_event" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 7, + "end_line": 393, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/starknet/common/syscalls.cairo" + }, + "start_col": 5, + "start_line": 391 + } + }, + "39": { + "accessible_scopes": [ + "starkware.starknet.common.syscalls", + "starkware.starknet.common.syscalls.emit_event" + ], + "flow_tracking_data": null, + "hints": [ + { + "location": { + "end_col": 85, + "end_line": 394, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/starknet/common/syscalls.cairo" + }, + "start_col": 5, + "start_line": 394 + }, + "n_prefix_newlines": 0 + } + ], + "inst": { + "end_col": 51, + "end_line": 395, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/starknet/common/syscalls.cairo" + }, + "parent_location": [ + { + "end_col": 35, + "end_line": 390, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/starknet/common/syscalls.cairo" + }, + "parent_location": [ + { + "end_col": 15, + "end_line": 396, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/starknet/common/syscalls.cairo" + }, + "start_col": 5, + "start_line": 396 + }, + "While trying to retrieve the implicit argument 'syscall_ptr' in:" + ], + "start_col": 17, + "start_line": 390 + }, + "While expanding the reference 'syscall_ptr' in:" + ], + "start_col": 23, + "start_line": 395 + } + }, + "41": { + "accessible_scopes": [ + "starkware.starknet.common.syscalls", + "starkware.starknet.common.syscalls.emit_event" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 15, + "end_line": 396, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/starknet/common/syscalls.cairo" + }, + "start_col": 5, + "start_line": 396 + } + }, + "42": { + "accessible_scopes": [ + "starkware.cairo.common.math", + "starkware.cairo.common.math.assert_not_zero" + ], + "flow_tracking_data": null, + "hints": [ + { + "location": { + "end_col": 7, + "end_line": 11, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/math.cairo" + }, + "start_col": 5, + "start_line": 7 + }, + "n_prefix_newlines": 1 + } + ], + "inst": { + "end_col": 7, + "end_line": 12, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/math.cairo" + }, + "start_col": 5, + "start_line": 12 + } + }, + "44": { + "accessible_scopes": [ + "starkware.cairo.common.math", + "starkware.cairo.common.math.assert_not_zero" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 18, + "end_line": 14, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/math.cairo" + }, + "start_col": 9, + "start_line": 14 + } + }, + "46": { + "accessible_scopes": [ + "starkware.cairo.common.math", + "starkware.cairo.common.math.assert_not_zero" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 15, + "end_line": 17, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/math.cairo" + }, + "start_col": 5, + "start_line": 17 + } + }, + "47": { + "accessible_scopes": [ + "starkware.cairo.common.math", + "starkware.cairo.common.math.assert_nn" + ], + "flow_tracking_data": null, + "hints": [ + { + "location": { + "end_col": 7, + "end_line": 46, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/math.cairo" + }, + "start_col": 5, + "start_line": 42 + }, + "n_prefix_newlines": 1 + } + ], + "inst": { + "end_col": 26, + "end_line": 47, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/math.cairo" + }, + "start_col": 5, + "start_line": 47 + } + }, + "48": { + "accessible_scopes": [ + "starkware.cairo.common.math", + "starkware.cairo.common.math.assert_nn" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 46, + "end_line": 48, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/math.cairo" + }, + "parent_location": [ + { + "end_col": 31, + "end_line": 41, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/math.cairo" + }, + "parent_location": [ + { + "end_col": 15, + "end_line": 49, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/math.cairo" + }, + "start_col": 5, + "start_line": 49 + }, + "While trying to retrieve the implicit argument 'range_check_ptr' in:" + ], + "start_col": 16, + "start_line": 41 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 27, + "start_line": 48 + } + }, + "50": { + "accessible_scopes": [ + "starkware.cairo.common.math", + "starkware.cairo.common.math.assert_nn" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 15, + "end_line": 49, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/math.cairo" + }, + "start_col": 5, + "start_line": 49 + } + }, + "51": { + "accessible_scopes": [ + "starkware.cairo.common.math", + "starkware.cairo.common.math.assert_le" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 31, + "end_line": 53, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/math.cairo" + }, + "parent_location": [ + { + "end_col": 31, + "end_line": 41, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/math.cairo" + }, + "parent_location": [ + { + "end_col": 21, + "end_line": 54, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/math.cairo" + }, + "start_col": 5, + "start_line": 54 + }, + "While trying to retrieve the implicit argument 'range_check_ptr' in:" + ], + "start_col": 16, + "start_line": 41 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 16, + "start_line": 53 + } + }, + "52": { + "accessible_scopes": [ + "starkware.cairo.common.math", + "starkware.cairo.common.math.assert_le" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 20, + "end_line": 54, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/math.cairo" + }, + "start_col": 15, + "start_line": 54 + } + }, + "53": { + "accessible_scopes": [ + "starkware.cairo.common.math", + "starkware.cairo.common.math.assert_le" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 21, + "end_line": 54, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/math.cairo" + }, + "start_col": 5, + "start_line": 54 + } + }, + "55": { + "accessible_scopes": [ + "starkware.cairo.common.math", + "starkware.cairo.common.math.assert_le" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 15, + "end_line": 55, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/math.cairo" + }, + "start_col": 5, + "start_line": 55 + } + }, + "56": { + "accessible_scopes": [ + "starkware.cairo.common.math", + "starkware.cairo.common.math.assert_250_bit" + ], + "flow_tracking_data": null, + "hints": [ + { + "location": { + "end_col": 7, + "end_line": 106, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/math.cairo" + }, + "start_col": 5, + "start_line": 97 + }, + "n_prefix_newlines": 1 + } + ], + "inst": { + "end_col": 50, + "end_line": 108, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/math.cairo" + }, + "start_col": 36, + "start_line": 108 + } + }, + "58": { + "accessible_scopes": [ + "starkware.cairo.common.math", + "starkware.cairo.common.math.assert_250_bit" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 37, + "end_line": 95, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/math.cairo" + }, + "parent_location": [ + { + "end_col": 57, + "end_line": 108, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/math.cairo" + }, + "start_col": 53, + "start_line": 108 + }, + "While expanding the reference 'high' in:" + ], + "start_col": 16, + "start_line": 95 + } + }, + "59": { + "accessible_scopes": [ + "starkware.cairo.common.math", + "starkware.cairo.common.math.assert_250_bit" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 57, + "end_line": 108, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/math.cairo" + }, + "start_col": 36, + "start_line": 108 + } + }, + "60": { + "accessible_scopes": [ + "starkware.cairo.common.math", + "starkware.cairo.common.math.assert_250_bit" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 58, + "end_line": 108, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/math.cairo" + }, + "start_col": 5, + "start_line": 108 + } + }, + "61": { + "accessible_scopes": [ + "starkware.cairo.common.math", + "starkware.cairo.common.math.assert_250_bit" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 37, + "end_line": 95, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/math.cairo" + }, + "parent_location": [ + { + "end_col": 24, + "end_line": 113, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/math.cairo" + }, + "start_col": 20, + "start_line": 113 + }, + "While expanding the reference 'high' in:" + ], + "start_col": 16, + "start_line": 95 + } + }, + "62": { + "accessible_scopes": [ + "starkware.cairo.common.math", + "starkware.cairo.common.math.assert_250_bit" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 32, + "end_line": 113, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/math.cairo" + }, + "start_col": 20, + "start_line": 113 + } + }, + "64": { + "accessible_scopes": [ + "starkware.cairo.common.math", + "starkware.cairo.common.math.assert_250_bit" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 32, + "end_line": 94, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/math.cairo" + }, + "parent_location": [ + { + "end_col": 38, + "end_line": 113, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/math.cairo" + }, + "start_col": 35, + "start_line": 113 + }, + "While expanding the reference 'low' in:" + ], + "start_col": 15, + "start_line": 94 + } + }, + "65": { + "accessible_scopes": [ + "starkware.cairo.common.math", + "starkware.cairo.common.math.assert_250_bit" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 39, + "end_line": 113, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/math.cairo" + }, + "start_col": 5, + "start_line": 113 + } + }, + "66": { + "accessible_scopes": [ + "starkware.cairo.common.math", + "starkware.cairo.common.math.assert_250_bit" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 46, + "end_line": 115, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/math.cairo" + }, + "parent_location": [ + { + "end_col": 36, + "end_line": 89, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/math.cairo" + }, + "parent_location": [ + { + "end_col": 15, + "end_line": 116, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/math.cairo" + }, + "start_col": 5, + "start_line": 116 + }, + "While trying to retrieve the implicit argument 'range_check_ptr' in:" + ], + "start_col": 21, + "start_line": 89 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 27, + "start_line": 115 + } + }, + "68": { + "accessible_scopes": [ + "starkware.cairo.common.math", + "starkware.cairo.common.math.assert_250_bit" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 15, + "end_line": 116, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/math.cairo" + }, + "start_col": 5, + "start_line": 116 + } + }, + "69": { + "accessible_scopes": [ + "starkware.cairo.common.math", + "starkware.cairo.common.math.assert_le_felt" + ], + "flow_tracking_data": null, + "hints": [ + { + "location": { + "end_col": 7, + "end_line": 184, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/math.cairo" + }, + "start_col": 5, + "start_line": 164 + }, + "n_prefix_newlines": 1 + } + ], + "inst": { + "end_col": 42, + "end_line": 186, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/math.cairo" + }, + "start_col": 25, + "start_line": 186 + } + }, + "70": { + "accessible_scopes": [ + "starkware.cairo.common.math", + "starkware.cairo.common.math.assert_le_felt" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 66, + "end_line": 186, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/math.cairo" + }, + "start_col": 45, + "start_line": 186 + } + }, + "71": { + "accessible_scopes": [ + "starkware.cairo.common.math", + "starkware.cairo.common.math.assert_le_felt" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 86, + "end_line": 186, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/math.cairo" + }, + "start_col": 45, + "start_line": 186 + } + }, + "73": { + "accessible_scopes": [ + "starkware.cairo.common.math", + "starkware.cairo.common.math.assert_le_felt" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 86, + "end_line": 186, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/math.cairo" + }, + "start_col": 25, + "start_line": 186 + } + }, + "74": { + "accessible_scopes": [ + "starkware.cairo.common.math", + "starkware.cairo.common.math.assert_le_felt" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 45, + "end_line": 187, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/math.cairo" + }, + "start_col": 24, + "start_line": 187 + } + }, + "75": { + "accessible_scopes": [ + "starkware.cairo.common.math", + "starkware.cairo.common.math.assert_le_felt" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 69, + "end_line": 187, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/math.cairo" + }, + "start_col": 48, + "start_line": 187 + } + }, + "76": { + "accessible_scopes": [ + "starkware.cairo.common.math", + "starkware.cairo.common.math.assert_le_felt" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 89, + "end_line": 187, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/math.cairo" + }, + "start_col": 48, + "start_line": 187 + } + }, + "78": { + "accessible_scopes": [ + "starkware.cairo.common.math", + "starkware.cairo.common.math.assert_le_felt" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 89, + "end_line": 187, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/math.cairo" + }, + "start_col": 24, + "start_line": 187 + } + }, + "79": { + "accessible_scopes": [ + "starkware.cairo.common.math", + "starkware.cairo.common.math.assert_le_felt" + ], + "flow_tracking_data": null, + "hints": [ + { + "location": { + "end_col": 49, + "end_line": 196, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/math.cairo" + }, + "start_col": 5, + "start_line": 196 + }, + "n_prefix_newlines": 0 + } + ], + "inst": { + "end_col": 42, + "end_line": 197, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/math.cairo" + }, + "start_col": 5, + "start_line": 197 + } + }, + "81": { + "accessible_scopes": [ + "starkware.cairo.common.math", + "starkware.cairo.common.math.assert_le_felt" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 25, + "end_line": 198, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/math.cairo" + }, + "start_col": 23, + "start_line": 198 + } + }, + "83": { + "accessible_scopes": [ + "starkware.cairo.common.math", + "starkware.cairo.common.math.assert_le_felt" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 30, + "end_line": 198, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/math.cairo" + }, + "start_col": 22, + "start_line": 198 + } + }, + "84": { + "accessible_scopes": [ + "starkware.cairo.common.math", + "starkware.cairo.common.math.assert_le_felt" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 31, + "end_line": 198, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/math.cairo" + }, + "start_col": 5, + "start_line": 198 + } + }, + "85": { + "accessible_scopes": [ + "starkware.cairo.common.math", + "starkware.cairo.common.math.assert_le_felt" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 29, + "end_line": 199, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/math.cairo" + }, + "start_col": 24, + "start_line": 199 + } + }, + "86": { + "accessible_scopes": [ + "starkware.cairo.common.math", + "starkware.cairo.common.math.assert_le_felt" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 39, + "end_line": 199, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/math.cairo" + }, + "start_col": 34, + "start_line": 199 + } + }, + "88": { + "accessible_scopes": [ + "starkware.cairo.common.math", + "starkware.cairo.common.math.assert_le_felt" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 40, + "end_line": 199, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/math.cairo" + }, + "start_col": 23, + "start_line": 199 + } + }, + "89": { + "accessible_scopes": [ + "starkware.cairo.common.math", + "starkware.cairo.common.math.assert_le_felt" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 41, + "end_line": 199, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/math.cairo" + }, + "start_col": 5, + "start_line": 199 + } + }, + "90": { + "accessible_scopes": [ + "starkware.cairo.common.math", + "starkware.cairo.common.math.assert_le_felt" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 46, + "end_line": 188, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/math.cairo" + }, + "parent_location": [ + { + "end_col": 36, + "end_line": 154, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/math.cairo" + }, + "parent_location": [ + { + "end_col": 15, + "end_line": 200, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/math.cairo" + }, + "start_col": 5, + "start_line": 200 + }, + "While trying to retrieve the implicit argument 'range_check_ptr' in:" + ], + "start_col": 21, + "start_line": 154 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 27, + "start_line": 188 + } + }, + "92": { + "accessible_scopes": [ + "starkware.cairo.common.math", + "starkware.cairo.common.math.assert_le_felt" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 15, + "end_line": 200, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/math.cairo" + }, + "start_col": 5, + "start_line": 200 + } + }, + "93": { + "accessible_scopes": [ + "starkware.cairo.common.math", + "starkware.cairo.common.math.assert_le_felt" + ], + "flow_tracking_data": null, + "hints": [ + { + "location": { + "end_col": 49, + "end_line": 204, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/math.cairo" + }, + "start_col": 5, + "start_line": 204 + }, + "n_prefix_newlines": 0 + } + ], + "inst": { + "end_col": 50, + "end_line": 205, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/math.cairo" + }, + "start_col": 5, + "start_line": 205 + } + }, + "95": { + "accessible_scopes": [ + "starkware.cairo.common.math", + "starkware.cairo.common.math.assert_le_felt" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 23, + "end_line": 206, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/math.cairo" + }, + "start_col": 21, + "start_line": 206 + } + }, + "97": { + "accessible_scopes": [ + "starkware.cairo.common.math", + "starkware.cairo.common.math.assert_le_felt" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 28, + "end_line": 206, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/math.cairo" + }, + "start_col": 20, + "start_line": 206 + } + }, + "98": { + "accessible_scopes": [ + "starkware.cairo.common.math", + "starkware.cairo.common.math.assert_le_felt" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 30, + "end_line": 207, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/math.cairo" + }, + "start_col": 22, + "start_line": 207 + } + }, + "99": { + "accessible_scopes": [ + "starkware.cairo.common.math", + "starkware.cairo.common.math.assert_le_felt" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 31, + "end_line": 207, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/math.cairo" + }, + "start_col": 5, + "start_line": 207 + } + }, + "100": { + "accessible_scopes": [ + "starkware.cairo.common.math", + "starkware.cairo.common.math.assert_le_felt" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 31, + "end_line": 208, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/math.cairo" + }, + "start_col": 23, + "start_line": 208 + } + }, + "101": { + "accessible_scopes": [ + "starkware.cairo.common.math", + "starkware.cairo.common.math.assert_le_felt" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 32, + "end_line": 208, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/math.cairo" + }, + "start_col": 5, + "start_line": 208 + } + }, + "102": { + "accessible_scopes": [ + "starkware.cairo.common.math", + "starkware.cairo.common.math.assert_le_felt" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 46, + "end_line": 188, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/math.cairo" + }, + "parent_location": [ + { + "end_col": 36, + "end_line": 154, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/math.cairo" + }, + "parent_location": [ + { + "end_col": 15, + "end_line": 209, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/math.cairo" + }, + "start_col": 5, + "start_line": 209 + }, + "While trying to retrieve the implicit argument 'range_check_ptr' in:" + ], + "start_col": 21, + "start_line": 154 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 27, + "start_line": 188 + } + }, + "104": { + "accessible_scopes": [ + "starkware.cairo.common.math", + "starkware.cairo.common.math.assert_le_felt" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 15, + "end_line": 209, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/math.cairo" + }, + "start_col": 5, + "start_line": 209 + } + }, + "105": { + "accessible_scopes": [ + "starkware.cairo.common.math", + "starkware.cairo.common.math.assert_le_felt" + ], + "flow_tracking_data": null, + "hints": [ + { + "location": { + "end_col": 31, + "end_line": 213, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/math.cairo" + }, + "start_col": 5, + "start_line": 213 + }, + "n_prefix_newlines": 0 + } + ], + "inst": { + "end_col": 24, + "end_line": 214, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/math.cairo" + }, + "start_col": 5, + "start_line": 214 + } + }, + "106": { + "accessible_scopes": [ + "starkware.cairo.common.math", + "starkware.cairo.common.math.assert_le_felt" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 33, + "end_line": 215, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/math.cairo" + }, + "start_col": 28, + "start_line": 215 + } + }, + "107": { + "accessible_scopes": [ + "starkware.cairo.common.math", + "starkware.cairo.common.math.assert_le_felt" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 34, + "end_line": 215, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/math.cairo" + }, + "start_col": 23, + "start_line": 215 + } + }, + "108": { + "accessible_scopes": [ + "starkware.cairo.common.math", + "starkware.cairo.common.math.assert_le_felt" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 35, + "end_line": 215, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/math.cairo" + }, + "start_col": 5, + "start_line": 215 + } + }, + "109": { + "accessible_scopes": [ + "starkware.cairo.common.math", + "starkware.cairo.common.math.assert_le_felt" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 12, + "end_line": 216, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/math.cairo" + }, + "start_col": 5, + "start_line": 216 + } + }, + "111": { + "accessible_scopes": [ + "starkware.cairo.common.math", + "starkware.cairo.common.math.assert_le_felt" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 46, + "end_line": 188, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/math.cairo" + }, + "parent_location": [ + { + "end_col": 36, + "end_line": 154, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/math.cairo" + }, + "parent_location": [ + { + "end_col": 15, + "end_line": 217, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/math.cairo" + }, + "start_col": 5, + "start_line": 217 + }, + "While trying to retrieve the implicit argument 'range_check_ptr' in:" + ], + "start_col": 21, + "start_line": 154 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 27, + "start_line": 188 + } + }, + "113": { + "accessible_scopes": [ + "starkware.cairo.common.math", + "starkware.cairo.common.math.assert_le_felt" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 15, + "end_line": 217, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/math.cairo" + }, + "start_col": 5, + "start_line": 217 + } + }, + "114": { + "accessible_scopes": [ + "starkware.starknet.common.storage", + "starkware.starknet.common.storage.normalize_address" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 22, + "end_line": 13, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/starknet/common/storage.cairo" + }, + "start_col": 5, + "start_line": 13 + } + }, + "116": { + "accessible_scopes": [ + "starkware.starknet.common.storage", + "starkware.starknet.common.storage.normalize_address" + ], + "flow_tracking_data": null, + "hints": [ + { + "location": { + "end_col": 7, + "end_line": 21, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/starknet/common/storage.cairo" + }, + "start_col": 5, + "start_line": 14 + }, + "n_prefix_newlines": 1 + } + ], + "inst": { + "end_col": 7, + "end_line": 22, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/starknet/common/storage.cairo" + }, + "start_col": 5, + "start_line": 22 + } + }, + "118": { + "accessible_scopes": [ + "starkware.starknet.common.storage", + "starkware.starknet.common.storage.normalize_address" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 39, + "end_line": 12, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/starknet/common/storage.cairo" + }, + "parent_location": [ + { + "end_col": 36, + "end_line": 89, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/math.cairo" + }, + "parent_location": [ + { + "end_col": 26, + "end_line": 50, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/starknet/common/storage.cairo" + }, + "start_col": 9, + "start_line": 50 + }, + "While trying to retrieve the implicit argument 'range_check_ptr' in:" + ], + "start_col": 21, + "start_line": 89 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 24, + "start_line": 12 + } + }, + "119": { + "accessible_scopes": [ + "starkware.starknet.common.storage", + "starkware.starknet.common.storage.normalize_address" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 34, + "end_line": 48, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/starknet/common/storage.cairo" + }, + "parent_location": [ + { + "end_col": 25, + "end_line": 50, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/starknet/common/storage.cairo" + }, + "start_col": 24, + "start_line": 50 + }, + "While expanding the reference 'x' in:" + ], + "start_col": 17, + "start_line": 48 + } + }, + "121": { + "accessible_scopes": [ + "starkware.starknet.common.storage", + "starkware.starknet.common.storage.normalize_address" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 26, + "end_line": 50, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/starknet/common/storage.cairo" + }, + "start_col": 9, + "start_line": 50 + } + }, + "123": { + "accessible_scopes": [ + "starkware.starknet.common.storage", + "starkware.starknet.common.storage.normalize_address" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 20, + "end_line": 49, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/starknet/common/storage.cairo" + }, + "parent_location": [ + { + "end_col": 25, + "end_line": 51, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/starknet/common/storage.cairo" + }, + "start_col": 24, + "start_line": 51 + }, + "While expanding the reference 'y' in:" + ], + "start_col": 18, + "start_line": 49 + } + }, + "125": { + "accessible_scopes": [ + "starkware.starknet.common.storage", + "starkware.starknet.common.storage.normalize_address" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 36, + "end_line": 89, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/math.cairo" + }, + "parent_location": [ + { + "end_col": 26, + "end_line": 50, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/starknet/common/storage.cairo" + }, + "parent_location": [ + { + "end_col": 36, + "end_line": 89, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/math.cairo" + }, + "parent_location": [ + { + "end_col": 26, + "end_line": 51, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/starknet/common/storage.cairo" + }, + "start_col": 9, + "start_line": 51 + }, + "While trying to retrieve the implicit argument 'range_check_ptr' in:" + ], + "start_col": 21, + "start_line": 89 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 9, + "start_line": 50 + }, + "While trying to update the implicit return value 'range_check_ptr' in:" + ], + "start_col": 21, + "start_line": 89 + } + }, + "126": { + "accessible_scopes": [ + "starkware.starknet.common.storage", + "starkware.starknet.common.storage.normalize_address" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 28, + "end_line": 49, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/starknet/common/storage.cairo" + }, + "parent_location": [ + { + "end_col": 25, + "end_line": 51, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/starknet/common/storage.cairo" + }, + "start_col": 24, + "start_line": 51 + }, + "While expanding the reference 'y' in:" + ], + "start_col": 17, + "start_line": 49 + } + }, + "127": { + "accessible_scopes": [ + "starkware.starknet.common.storage", + "starkware.starknet.common.storage.normalize_address" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 26, + "end_line": 51, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/starknet/common/storage.cairo" + }, + "start_col": 9, + "start_line": 51 + } + }, + "129": { + "accessible_scopes": [ + "starkware.starknet.common.storage", + "starkware.starknet.common.storage.normalize_address" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 38, + "end_line": 52, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/starknet/common/storage.cairo" + }, + "start_col": 21, + "start_line": 52 + } + }, + "131": { + "accessible_scopes": [ + "starkware.starknet.common.storage", + "starkware.starknet.common.storage.normalize_address" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 40, + "end_line": 52, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/starknet/common/storage.cairo" + }, + "start_col": 9, + "start_line": 52 + } + }, + "132": { + "accessible_scopes": [ + "starkware.starknet.common.storage", + "starkware.starknet.common.storage.normalize_address" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 24, + "end_line": 23, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/starknet/common/storage.cairo" + }, + "start_col": 9, + "start_line": 23 + } + }, + "134": { + "accessible_scopes": [ + "starkware.starknet.common.storage", + "starkware.starknet.common.storage.normalize_address" + ], + "flow_tracking_data": null, + "hints": [ + { + "location": { + "end_col": 57, + "end_line": 24, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/starknet/common/storage.cairo" + }, + "start_col": 9, + "start_line": 24 + }, + "n_prefix_newlines": 0 + } + ], + "inst": { + "end_col": 11, + "end_line": 25, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/starknet/common/storage.cairo" + }, + "start_col": 9, + "start_line": 25 + } + }, + "136": { + "accessible_scopes": [ + "starkware.starknet.common.storage", + "starkware.starknet.common.storage.normalize_address" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 21, + "end_line": 30, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/starknet/common/storage.cairo" + }, + "start_col": 13, + "start_line": 30 + } + }, + "138": { + "accessible_scopes": [ + "starkware.starknet.common.storage", + "starkware.starknet.common.storage.normalize_address" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 42, + "end_line": 32, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/starknet/common/storage.cairo" + }, + "start_col": 28, + "start_line": 32 + } + }, + "140": { + "accessible_scopes": [ + "starkware.starknet.common.storage", + "starkware.starknet.common.storage.normalize_address" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 39, + "end_line": 12, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/starknet/common/storage.cairo" + }, + "parent_location": [ + { + "end_col": 36, + "end_line": 89, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/math.cairo" + }, + "parent_location": [ + { + "end_col": 50, + "end_line": 32, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/starknet/common/storage.cairo" + }, + "start_col": 13, + "start_line": 32 + }, + "While trying to retrieve the implicit argument 'range_check_ptr' in:" + ], + "start_col": 21, + "start_line": 89 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 24, + "start_line": 12 + } + }, + "141": { + "accessible_scopes": [ + "starkware.starknet.common.storage", + "starkware.starknet.common.storage.normalize_address" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 49, + "end_line": 32, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/starknet/common/storage.cairo" + }, + "start_col": 28, + "start_line": 32 + } + }, + "142": { + "accessible_scopes": [ + "starkware.starknet.common.storage", + "starkware.starknet.common.storage.normalize_address" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 50, + "end_line": 32, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/starknet/common/storage.cairo" + }, + "start_col": 13, + "start_line": 32 + } + }, + "144": { + "accessible_scopes": [ + "starkware.starknet.common.storage", + "starkware.starknet.common.storage.normalize_address" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 11, + "end_line": 25, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/starknet/common/storage.cairo" + }, + "start_col": 9, + "start_line": 25 + } + }, + "146": { + "accessible_scopes": [ + "starkware.starknet.common.storage", + "starkware.starknet.common.storage.normalize_address" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 21, + "end_line": 26, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/starknet/common/storage.cairo" + }, + "start_col": 13, + "start_line": 26 + } + }, + "148": { + "accessible_scopes": [ + "starkware.starknet.common.storage", + "starkware.starknet.common.storage.normalize_address" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 39, + "end_line": 12, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/starknet/common/storage.cairo" + }, + "parent_location": [ + { + "end_col": 36, + "end_line": 89, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/math.cairo" + }, + "parent_location": [ + { + "end_col": 33, + "end_line": 28, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/starknet/common/storage.cairo" + }, + "start_col": 13, + "start_line": 28 + }, + "While trying to retrieve the implicit argument 'range_check_ptr' in:" + ], + "start_col": 21, + "start_line": 89 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 24, + "start_line": 12 + } + }, + "149": { + "accessible_scopes": [ + "starkware.starknet.common.storage", + "starkware.starknet.common.storage.normalize_address" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 51, + "end_line": 12, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/starknet/common/storage.cairo" + }, + "parent_location": [ + { + "end_col": 32, + "end_line": 28, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/starknet/common/storage.cairo" + }, + "start_col": 28, + "start_line": 28 + }, + "While expanding the reference 'addr' in:" + ], + "start_col": 41, + "start_line": 12 + } + }, + "150": { + "accessible_scopes": [ + "starkware.starknet.common.storage", + "starkware.starknet.common.storage.normalize_address" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 33, + "end_line": 28, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/starknet/common/storage.cairo" + }, + "start_col": 13, + "start_line": 28 + } + }, + "152": { + "accessible_scopes": [ + "starkware.starknet.common.storage", + "starkware.starknet.common.storage.normalize_address" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 51, + "end_line": 12, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/starknet/common/storage.cairo" + }, + "parent_location": [ + { + "end_col": 25, + "end_line": 34, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/starknet/common/storage.cairo" + }, + "start_col": 21, + "start_line": 34 + }, + "While expanding the reference 'addr' in:" + ], + "start_col": 41, + "start_line": 12 + } + }, + "153": { + "accessible_scopes": [ + "starkware.starknet.common.storage", + "starkware.starknet.common.storage.normalize_address" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 27, + "end_line": 34, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/starknet/common/storage.cairo" + }, + "start_col": 9, + "start_line": 34 + } + }, + "154": { + "accessible_scopes": [ + "starkware.cairo.common.math_cmp", + "starkware.cairo.common.math_cmp.is_nn" + ], + "flow_tracking_data": null, + "hints": [ + { + "location": { + "end_col": 84, + "end_line": 19, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/math_cmp.cairo" + }, + "start_col": 5, + "start_line": 19 + }, + "n_prefix_newlines": 0 + } + ], + "inst": { + "end_col": 40, + "end_line": 20, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/math_cmp.cairo" + }, + "start_col": 5, + "start_line": 20 + } + }, + "156": { + "accessible_scopes": [ + "starkware.cairo.common.math_cmp", + "starkware.cairo.common.math_cmp.is_nn" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 26, + "end_line": 21, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/math_cmp.cairo" + }, + "start_col": 5, + "start_line": 21 + } + }, + "157": { + "accessible_scopes": [ + "starkware.cairo.common.math_cmp", + "starkware.cairo.common.math_cmp.is_nn" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 13, + "end_line": 22, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/math_cmp.cairo" + }, + "start_col": 5, + "start_line": 22 + } + }, + "159": { + "accessible_scopes": [ + "starkware.cairo.common.math_cmp", + "starkware.cairo.common.math_cmp.is_nn" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 46, + "end_line": 23, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/math_cmp.cairo" + }, + "parent_location": [ + { + "end_col": 27, + "end_line": 18, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/math_cmp.cairo" + }, + "parent_location": [ + { + "end_col": 14, + "end_line": 24, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/math_cmp.cairo" + }, + "start_col": 5, + "start_line": 24 + }, + "While trying to retrieve the implicit argument 'range_check_ptr' in:" + ], + "start_col": 12, + "start_line": 18 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 27, + "start_line": 23 + } + }, + "161": { + "accessible_scopes": [ + "starkware.cairo.common.math_cmp", + "starkware.cairo.common.math_cmp.is_nn" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 13, + "end_line": 24, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/math_cmp.cairo" + }, + "start_col": 12, + "start_line": 24 + } + }, + "163": { + "accessible_scopes": [ + "starkware.cairo.common.math_cmp", + "starkware.cairo.common.math_cmp.is_nn" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 14, + "end_line": 24, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/math_cmp.cairo" + }, + "start_col": 5, + "start_line": 24 + } + }, + "164": { + "accessible_scopes": [ + "starkware.cairo.common.math_cmp", + "starkware.cairo.common.math_cmp.is_nn" + ], + "flow_tracking_data": null, + "hints": [ + { + "location": { + "end_col": 91, + "end_line": 27, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/math_cmp.cairo" + }, + "start_col": 5, + "start_line": 27 + }, + "n_prefix_newlines": 0 + } + ], + "inst": { + "end_col": 48, + "end_line": 28, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/math_cmp.cairo" + }, + "start_col": 5, + "start_line": 28 + } + }, + "166": { + "accessible_scopes": [ + "starkware.cairo.common.math_cmp", + "starkware.cairo.common.math_cmp.is_nn" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 35, + "end_line": 29, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/math_cmp.cairo" + }, + "start_col": 33, + "start_line": 29 + } + }, + "168": { + "accessible_scopes": [ + "starkware.cairo.common.math_cmp", + "starkware.cairo.common.math_cmp.is_nn" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 40, + "end_line": 29, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/math_cmp.cairo" + }, + "start_col": 32, + "start_line": 29 + } + }, + "170": { + "accessible_scopes": [ + "starkware.cairo.common.math_cmp", + "starkware.cairo.common.math_cmp.is_nn" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 41, + "end_line": 29, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/math_cmp.cairo" + }, + "start_col": 5, + "start_line": 29 + } + }, + "171": { + "accessible_scopes": [ + "starkware.cairo.common.math_cmp", + "starkware.cairo.common.math_cmp.is_nn" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 13, + "end_line": 30, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/math_cmp.cairo" + }, + "start_col": 5, + "start_line": 30 + } + }, + "173": { + "accessible_scopes": [ + "starkware.cairo.common.math_cmp", + "starkware.cairo.common.math_cmp.is_nn" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 46, + "end_line": 31, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/math_cmp.cairo" + }, + "parent_location": [ + { + "end_col": 27, + "end_line": 18, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/math_cmp.cairo" + }, + "parent_location": [ + { + "end_col": 14, + "end_line": 32, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/math_cmp.cairo" + }, + "start_col": 5, + "start_line": 32 + }, + "While trying to retrieve the implicit argument 'range_check_ptr' in:" + ], + "start_col": 12, + "start_line": 18 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 27, + "start_line": 31 + } + }, + "175": { + "accessible_scopes": [ + "starkware.cairo.common.math_cmp", + "starkware.cairo.common.math_cmp.is_nn" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 13, + "end_line": 32, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/math_cmp.cairo" + }, + "start_col": 12, + "start_line": 32 + } + }, + "177": { + "accessible_scopes": [ + "starkware.cairo.common.math_cmp", + "starkware.cairo.common.math_cmp.is_nn" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 14, + "end_line": 32, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/math_cmp.cairo" + }, + "start_col": 5, + "start_line": 32 + } + }, + "178": { + "accessible_scopes": [ + "starkware.cairo.common.math_cmp", + "starkware.cairo.common.math_cmp.is_nn" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 27, + "end_line": 18, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/math_cmp.cairo" + }, + "parent_location": [ + { + "end_col": 36, + "end_line": 154, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/math.cairo" + }, + "parent_location": [ + { + "end_col": 32, + "end_line": 35, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/math_cmp.cairo" + }, + "start_col": 5, + "start_line": 35 + }, + "While trying to retrieve the implicit argument 'range_check_ptr' in:" + ], + "start_col": 21, + "start_line": 154 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 12, + "start_line": 18 + } + }, + "179": { + "accessible_scopes": [ + "starkware.cairo.common.math_cmp", + "starkware.cairo.common.math_cmp.is_nn" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 28, + "end_line": 35, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/math_cmp.cairo" + }, + "start_col": 20, + "start_line": 35 + } + }, + "181": { + "accessible_scopes": [ + "starkware.cairo.common.math_cmp", + "starkware.cairo.common.math_cmp.is_nn" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 30, + "end_line": 18, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/math_cmp.cairo" + }, + "parent_location": [ + { + "end_col": 31, + "end_line": 35, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/math_cmp.cairo" + }, + "start_col": 30, + "start_line": 35 + }, + "While expanding the reference 'a' in:" + ], + "start_col": 29, + "start_line": 18 + } + }, + "182": { + "accessible_scopes": [ + "starkware.cairo.common.math_cmp", + "starkware.cairo.common.math_cmp.is_nn" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 32, + "end_line": 35, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/math_cmp.cairo" + }, + "start_col": 5, + "start_line": 35 + } + }, + "184": { + "accessible_scopes": [ + "starkware.cairo.common.math_cmp", + "starkware.cairo.common.math_cmp.is_nn" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 13, + "end_line": 36, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/math_cmp.cairo" + }, + "start_col": 12, + "start_line": 36 + } + }, + "186": { + "accessible_scopes": [ + "starkware.cairo.common.math_cmp", + "starkware.cairo.common.math_cmp.is_nn" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 14, + "end_line": 36, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/math_cmp.cairo" + }, + "start_col": 5, + "start_line": 36 + } + }, + "187": { + "accessible_scopes": [ + "starkware.cairo.common.math_cmp", + "starkware.cairo.common.math_cmp.is_le" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 27, + "end_line": 42, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/math_cmp.cairo" + }, + "parent_location": [ + { + "end_col": 27, + "end_line": 18, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/math_cmp.cairo" + }, + "parent_location": [ + { + "end_col": 24, + "end_line": 43, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/math_cmp.cairo" + }, + "start_col": 12, + "start_line": 43 + }, + "While trying to retrieve the implicit argument 'range_check_ptr' in:" + ], + "start_col": 12, + "start_line": 18 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 12, + "start_line": 42 + } + }, + "188": { + "accessible_scopes": [ + "starkware.cairo.common.math_cmp", + "starkware.cairo.common.math_cmp.is_le" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 23, + "end_line": 43, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/math_cmp.cairo" + }, + "start_col": 18, + "start_line": 43 + } + }, + "189": { + "accessible_scopes": [ + "starkware.cairo.common.math_cmp", + "starkware.cairo.common.math_cmp.is_le" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 24, + "end_line": 43, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/math_cmp.cairo" + }, + "start_col": 12, + "start_line": 43 + } + }, + "191": { + "accessible_scopes": [ + "starkware.cairo.common.math_cmp", + "starkware.cairo.common.math_cmp.is_le" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 25, + "end_line": 43, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/math_cmp.cairo" + }, + "start_col": 5, + "start_line": 43 + } + }, + "192": { + "accessible_scopes": [ + "starkware.cairo.common.uint256", + "starkware.cairo.common.uint256.uint256_check" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 30, + "end_line": 22, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/uint256.cairo" + }, + "start_col": 5, + "start_line": 22 + } + }, + "193": { + "accessible_scopes": [ + "starkware.cairo.common.uint256", + "starkware.cairo.common.uint256.uint256_check" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 35, + "end_line": 23, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/uint256.cairo" + }, + "start_col": 5, + "start_line": 23 + } + }, + "194": { + "accessible_scopes": [ + "starkware.cairo.common.uint256", + "starkware.cairo.common.uint256.uint256_check" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 46, + "end_line": 24, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/uint256.cairo" + }, + "parent_location": [ + { + "end_col": 35, + "end_line": 21, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/uint256.cairo" + }, + "parent_location": [ + { + "end_col": 15, + "end_line": 25, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/uint256.cairo" + }, + "start_col": 5, + "start_line": 25 + }, + "While trying to retrieve the implicit argument 'range_check_ptr' in:" + ], + "start_col": 20, + "start_line": 21 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 27, + "start_line": 24 + } + }, + "196": { + "accessible_scopes": [ + "starkware.cairo.common.uint256", + "starkware.cairo.common.uint256.uint256_check" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 15, + "end_line": 25, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/uint256.cairo" + }, + "start_col": 5, + "start_line": 25 + } + }, + "197": { + "accessible_scopes": [ + "starkware.cairo.common.uint256", + "starkware.cairo.common.uint256.uint256_add" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 18, + "end_line": 32, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/uint256.cairo" + }, + "start_col": 5, + "start_line": 32 + } + }, + "199": { + "accessible_scopes": [ + "starkware.cairo.common.uint256", + "starkware.cairo.common.uint256.uint256_add" + ], + "flow_tracking_data": null, + "hints": [ + { + "location": { + "end_col": 7, + "end_line": 41, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/uint256.cairo" + }, + "start_col": 5, + "start_line": 36 + }, + "n_prefix_newlines": 1 + } + ], + "inst": { + "end_col": 46, + "end_line": 43, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/uint256.cairo" + }, + "start_col": 5, + "start_line": 43 + } + }, + "200": { + "accessible_scopes": [ + "starkware.cairo.common.uint256", + "starkware.cairo.common.uint256.uint256_add" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 49, + "end_line": 44, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/uint256.cairo" + }, + "start_col": 5, + "start_line": 44 + } + }, + "201": { + "accessible_scopes": [ + "starkware.cairo.common.uint256", + "starkware.cairo.common.uint256.uint256_add" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 35, + "end_line": 46, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/uint256.cairo" + }, + "start_col": 22, + "start_line": 46 + } + }, + "202": { + "accessible_scopes": [ + "starkware.cairo.common.uint256", + "starkware.cairo.common.uint256.uint256_add" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 55, + "end_line": 46, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/uint256.cairo" + }, + "start_col": 38, + "start_line": 46 + } + }, + "204": { + "accessible_scopes": [ + "starkware.cairo.common.uint256", + "starkware.cairo.common.uint256.uint256_add" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 56, + "end_line": 46, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/uint256.cairo" + }, + "start_col": 5, + "start_line": 46 + } + }, + "205": { + "accessible_scopes": [ + "starkware.cairo.common.uint256", + "starkware.cairo.common.uint256.uint256_add" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 38, + "end_line": 47, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/uint256.cairo" + }, + "start_col": 23, + "start_line": 47 + } + }, + "206": { + "accessible_scopes": [ + "starkware.cairo.common.uint256", + "starkware.cairo.common.uint256.uint256_add" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 50, + "end_line": 47, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/uint256.cairo" + }, + "start_col": 23, + "start_line": 47 + } + }, + "207": { + "accessible_scopes": [ + "starkware.cairo.common.uint256", + "starkware.cairo.common.uint256.uint256_add" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 71, + "end_line": 47, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/uint256.cairo" + }, + "start_col": 53, + "start_line": 47 + } + }, + "209": { + "accessible_scopes": [ + "starkware.cairo.common.uint256", + "starkware.cairo.common.uint256.uint256_add" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 72, + "end_line": 47, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/uint256.cairo" + }, + "start_col": 5, + "start_line": 47 + } + }, + "210": { + "accessible_scopes": [ + "starkware.cairo.common.uint256", + "starkware.cairo.common.uint256.uint256_add" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 33, + "end_line": 31, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/uint256.cairo" + }, + "parent_location": [ + { + "end_col": 35, + "end_line": 21, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/uint256.cairo" + }, + "parent_location": [ + { + "end_col": 23, + "end_line": 48, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/uint256.cairo" + }, + "start_col": 5, + "start_line": 48 + }, + "While trying to retrieve the implicit argument 'range_check_ptr' in:" + ], + "start_col": 20, + "start_line": 21 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 18, + "start_line": 31 + } + }, + "211": { + "accessible_scopes": [ + "starkware.cairo.common.uint256", + "starkware.cairo.common.uint256.uint256_add" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 14, + "end_line": 33, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/uint256.cairo" + }, + "parent_location": [ + { + "end_col": 22, + "end_line": 48, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/uint256.cairo" + }, + "start_col": 19, + "start_line": 48 + }, + "While expanding the reference 'res' in:" + ], + "start_col": 11, + "start_line": 33 + } + }, + "212": { + "accessible_scopes": [ + "starkware.cairo.common.uint256", + "starkware.cairo.common.uint256.uint256_add" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 14, + "end_line": 33, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/uint256.cairo" + }, + "parent_location": [ + { + "end_col": 22, + "end_line": 48, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/uint256.cairo" + }, + "start_col": 19, + "start_line": 48 + }, + "While expanding the reference 'res' in:" + ], + "start_col": 11, + "start_line": 33 + } + }, + "213": { + "accessible_scopes": [ + "starkware.cairo.common.uint256", + "starkware.cairo.common.uint256.uint256_add" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 23, + "end_line": 48, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/uint256.cairo" + }, + "start_col": 5, + "start_line": 48 + } + }, + "215": { + "accessible_scopes": [ + "starkware.cairo.common.uint256", + "starkware.cairo.common.uint256.uint256_add" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 14, + "end_line": 33, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/uint256.cairo" + }, + "parent_location": [ + { + "end_col": 16, + "end_line": 50, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/uint256.cairo" + }, + "start_col": 13, + "start_line": 50 + }, + "While expanding the reference 'res' in:" + ], + "start_col": 11, + "start_line": 33 + } + }, + "216": { + "accessible_scopes": [ + "starkware.cairo.common.uint256", + "starkware.cairo.common.uint256.uint256_add" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 14, + "end_line": 33, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/uint256.cairo" + }, + "parent_location": [ + { + "end_col": 16, + "end_line": 50, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/uint256.cairo" + }, + "start_col": 13, + "start_line": 50 + }, + "While expanding the reference 'res' in:" + ], + "start_col": 11, + "start_line": 33 + } + }, + "217": { + "accessible_scopes": [ + "starkware.cairo.common.uint256", + "starkware.cairo.common.uint256.uint256_add" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 21, + "end_line": 35, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/uint256.cairo" + }, + "parent_location": [ + { + "end_col": 28, + "end_line": 50, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/uint256.cairo" + }, + "start_col": 18, + "start_line": 50 + }, + "While expanding the reference 'carry_high' in:" + ], + "start_col": 11, + "start_line": 35 + } + }, + "218": { + "accessible_scopes": [ + "starkware.cairo.common.uint256", + "starkware.cairo.common.uint256.uint256_add" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 30, + "end_line": 50, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/uint256.cairo" + }, + "start_col": 5, + "start_line": 50 + } + }, + "219": { + "accessible_scopes": [ + "starkware.cairo.common.uint256", + "starkware.cairo.common.uint256.uint256_lt" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 25, + "end_line": 134, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/uint256.cairo" + }, + "start_col": 9, + "start_line": 134 + } + }, + "220": { + "accessible_scopes": [ + "starkware.cairo.common.uint256", + "starkware.cairo.common.uint256.uint256_lt" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 7, + "end_line": 134, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/uint256.cairo" + }, + "start_col": 5, + "start_line": 134 + } + }, + "222": { + "accessible_scopes": [ + "starkware.cairo.common.uint256", + "starkware.cairo.common.uint256.uint256_lt" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 32, + "end_line": 133, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/uint256.cairo" + }, + "parent_location": [ + { + "end_col": 27, + "end_line": 42, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/math_cmp.cairo" + }, + "parent_location": [ + { + "end_col": 40, + "end_line": 135, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/uint256.cairo" + }, + "start_col": 17, + "start_line": 135 + }, + "While trying to retrieve the implicit argument 'range_check_ptr' in:" + ], + "start_col": 12, + "start_line": 42 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 17, + "start_line": 133 + } + }, + "223": { + "accessible_scopes": [ + "starkware.cairo.common.uint256", + "starkware.cairo.common.uint256.uint256_lt" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 32, + "end_line": 135, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/uint256.cairo" + }, + "start_col": 23, + "start_line": 135 + } + }, + "225": { + "accessible_scopes": [ + "starkware.cairo.common.uint256", + "starkware.cairo.common.uint256.uint256_lt" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 39, + "end_line": 135, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/uint256.cairo" + }, + "start_col": 34, + "start_line": 135 + } + }, + "226": { + "accessible_scopes": [ + "starkware.cairo.common.uint256", + "starkware.cairo.common.uint256.uint256_lt" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 40, + "end_line": 135, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/uint256.cairo" + }, + "start_col": 17, + "start_line": 135 + } + }, + "228": { + "accessible_scopes": [ + "starkware.cairo.common.uint256", + "starkware.cairo.common.uint256.uint256_lt" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 43, + "end_line": 135, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/uint256.cairo" + }, + "start_col": 9, + "start_line": 135 + } + }, + "229": { + "accessible_scopes": [ + "starkware.cairo.common.uint256", + "starkware.cairo.common.uint256.uint256_lt" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 32, + "end_line": 133, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/uint256.cairo" + }, + "parent_location": [ + { + "end_col": 27, + "end_line": 42, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/math_cmp.cairo" + }, + "parent_location": [ + { + "end_col": 38, + "end_line": 137, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/uint256.cairo" + }, + "start_col": 13, + "start_line": 137 + }, + "While trying to retrieve the implicit argument 'range_check_ptr' in:" + ], + "start_col": 12, + "start_line": 42 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 17, + "start_line": 133 + } + }, + "230": { + "accessible_scopes": [ + "starkware.cairo.common.uint256", + "starkware.cairo.common.uint256.uint256_lt" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 29, + "end_line": 137, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/uint256.cairo" + }, + "start_col": 19, + "start_line": 137 + } + }, + "232": { + "accessible_scopes": [ + "starkware.cairo.common.uint256", + "starkware.cairo.common.uint256.uint256_lt" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 37, + "end_line": 137, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/uint256.cairo" + }, + "start_col": 31, + "start_line": 137 + } + }, + "233": { + "accessible_scopes": [ + "starkware.cairo.common.uint256", + "starkware.cairo.common.uint256.uint256_lt" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 38, + "end_line": 137, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/uint256.cairo" + }, + "start_col": 13, + "start_line": 137 + } + }, + "235": { + "accessible_scopes": [ + "starkware.cairo.common.uint256", + "starkware.cairo.common.uint256.uint256_lt" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 41, + "end_line": 137, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/uint256.cairo" + }, + "start_col": 5, + "start_line": 137 + } + }, + "236": { + "accessible_scopes": [ + "starkware.cairo.common.uint256", + "starkware.cairo.common.uint256.uint256_le" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 32, + "end_line": 148, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/uint256.cairo" + }, + "parent_location": [ + { + "end_col": 32, + "end_line": 133, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/uint256.cairo" + }, + "parent_location": [ + { + "end_col": 40, + "end_line": 149, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/uint256.cairo" + }, + "start_col": 20, + "start_line": 149 + }, + "While trying to retrieve the implicit argument 'range_check_ptr' in:" + ], + "start_col": 17, + "start_line": 133 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 17, + "start_line": 148 + } + }, + "237": { + "accessible_scopes": [ + "starkware.cairo.common.uint256", + "starkware.cairo.common.uint256.uint256_le" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 56, + "end_line": 148, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/uint256.cairo" + }, + "parent_location": [ + { + "end_col": 34, + "end_line": 149, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/uint256.cairo" + }, + "start_col": 33, + "start_line": 149 + }, + "While expanding the reference 'b' in:" + ], + "start_col": 46, + "start_line": 148 + } + }, + "238": { + "accessible_scopes": [ + "starkware.cairo.common.uint256", + "starkware.cairo.common.uint256.uint256_le" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 56, + "end_line": 148, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/uint256.cairo" + }, + "parent_location": [ + { + "end_col": 34, + "end_line": 149, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/uint256.cairo" + }, + "start_col": 33, + "start_line": 149 + }, + "While expanding the reference 'b' in:" + ], + "start_col": 46, + "start_line": 148 + } + }, + "239": { + "accessible_scopes": [ + "starkware.cairo.common.uint256", + "starkware.cairo.common.uint256.uint256_le" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 44, + "end_line": 148, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/uint256.cairo" + }, + "parent_location": [ + { + "end_col": 39, + "end_line": 149, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/uint256.cairo" + }, + "start_col": 38, + "start_line": 149 + }, + "While expanding the reference 'a' in:" + ], + "start_col": 34, + "start_line": 148 + } + }, + "240": { + "accessible_scopes": [ + "starkware.cairo.common.uint256", + "starkware.cairo.common.uint256.uint256_le" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 44, + "end_line": 148, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/uint256.cairo" + }, + "parent_location": [ + { + "end_col": 39, + "end_line": 149, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/uint256.cairo" + }, + "start_col": 38, + "start_line": 149 + }, + "While expanding the reference 'a' in:" + ], + "start_col": 34, + "start_line": 148 + } + }, + "241": { + "accessible_scopes": [ + "starkware.cairo.common.uint256", + "starkware.cairo.common.uint256.uint256_le" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 40, + "end_line": 149, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/uint256.cairo" + }, + "start_col": 20, + "start_line": 149 + } + }, + "243": { + "accessible_scopes": [ + "starkware.cairo.common.uint256", + "starkware.cairo.common.uint256.uint256_le" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 18, + "end_line": 150, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/uint256.cairo" + }, + "start_col": 17, + "start_line": 150 + } + }, + "245": { + "accessible_scopes": [ + "starkware.cairo.common.uint256", + "starkware.cairo.common.uint256.uint256_le" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 32, + "end_line": 133, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/uint256.cairo" + }, + "parent_location": [ + { + "end_col": 40, + "end_line": 149, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/uint256.cairo" + }, + "parent_location": [ + { + "end_col": 32, + "end_line": 148, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/uint256.cairo" + }, + "parent_location": [ + { + "end_col": 29, + "end_line": 150, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/uint256.cairo" + }, + "start_col": 5, + "start_line": 150 + }, + "While trying to retrieve the implicit argument 'range_check_ptr' in:" + ], + "start_col": 17, + "start_line": 148 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 20, + "start_line": 149 + }, + "While trying to update the implicit return value 'range_check_ptr' in:" + ], + "start_col": 17, + "start_line": 133 + } + }, + "246": { + "accessible_scopes": [ + "starkware.cairo.common.uint256", + "starkware.cairo.common.uint256.uint256_le" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 27, + "end_line": 150, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/uint256.cairo" + }, + "start_col": 17, + "start_line": 150 + } + }, + "247": { + "accessible_scopes": [ + "starkware.cairo.common.uint256", + "starkware.cairo.common.uint256.uint256_le" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 29, + "end_line": 150, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/uint256.cairo" + }, + "start_col": 5, + "start_line": 150 + } + }, + "248": { + "accessible_scopes": [ + "starkware.cairo.common.uint256", + "starkware.cairo.common.uint256.uint256_not" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 37, + "end_line": 285, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/uint256.cairo" + }, + "start_col": 29, + "start_line": 285 + } + }, + "250": { + "accessible_scopes": [ + "starkware.cairo.common.uint256", + "starkware.cairo.common.uint256.uint256_not" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 60, + "end_line": 285, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/uint256.cairo" + }, + "start_col": 52, + "start_line": 285 + } + }, + "252": { + "accessible_scopes": [ + "starkware.cairo.common.uint256", + "starkware.cairo.common.uint256.uint256_not" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 33, + "end_line": 284, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/uint256.cairo" + }, + "parent_location": [ + { + "end_col": 33, + "end_line": 284, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/uint256.cairo" + }, + "parent_location": [ + { + "end_col": 72, + "end_line": 285, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/uint256.cairo" + }, + "start_col": 5, + "start_line": 285 + }, + "While trying to retrieve the implicit argument 'range_check_ptr' in:" + ], + "start_col": 18, + "start_line": 284 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 18, + "start_line": 284 + } + }, + "253": { + "accessible_scopes": [ + "starkware.cairo.common.uint256", + "starkware.cairo.common.uint256.uint256_not" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 45, + "end_line": 285, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/uint256.cairo" + }, + "start_col": 29, + "start_line": 285 + } + }, + "254": { + "accessible_scopes": [ + "starkware.cairo.common.uint256", + "starkware.cairo.common.uint256.uint256_not" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 69, + "end_line": 285, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/uint256.cairo" + }, + "start_col": 52, + "start_line": 285 + } + }, + "255": { + "accessible_scopes": [ + "starkware.cairo.common.uint256", + "starkware.cairo.common.uint256.uint256_not" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 72, + "end_line": 285, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/uint256.cairo" + }, + "start_col": 5, + "start_line": 285 + } + }, + "256": { + "accessible_scopes": [ + "starkware.cairo.common.uint256", + "starkware.cairo.common.uint256.uint256_neg" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 33, + "end_line": 290, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/uint256.cairo" + }, + "parent_location": [ + { + "end_col": 33, + "end_line": 284, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/uint256.cairo" + }, + "parent_location": [ + { + "end_col": 35, + "end_line": 291, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/uint256.cairo" + }, + "start_col": 21, + "start_line": 291 + }, + "While trying to retrieve the implicit argument 'range_check_ptr' in:" + ], + "start_col": 18, + "start_line": 284 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 18, + "start_line": 290 + } + }, + "257": { + "accessible_scopes": [ + "starkware.cairo.common.uint256", + "starkware.cairo.common.uint256.uint256_neg" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 45, + "end_line": 290, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/uint256.cairo" + }, + "parent_location": [ + { + "end_col": 34, + "end_line": 291, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/uint256.cairo" + }, + "start_col": 33, + "start_line": 291 + }, + "While expanding the reference 'a' in:" + ], + "start_col": 35, + "start_line": 290 + } + }, + "258": { + "accessible_scopes": [ + "starkware.cairo.common.uint256", + "starkware.cairo.common.uint256.uint256_neg" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 45, + "end_line": 290, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/uint256.cairo" + }, + "parent_location": [ + { + "end_col": 34, + "end_line": 291, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/uint256.cairo" + }, + "start_col": 33, + "start_line": 291 + }, + "While expanding the reference 'a' in:" + ], + "start_col": 35, + "start_line": 290 + } + }, + "259": { + "accessible_scopes": [ + "starkware.cairo.common.uint256", + "starkware.cairo.common.uint256.uint256_neg" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 35, + "end_line": 291, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/uint256.cairo" + }, + "start_col": 21, + "start_line": 291 + } + }, + "261": { + "accessible_scopes": [ + "starkware.cairo.common.uint256", + "starkware.cairo.common.uint256.uint256_neg" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 54, + "end_line": 292, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/uint256.cairo" + }, + "start_col": 53, + "start_line": 292 + } + }, + "263": { + "accessible_scopes": [ + "starkware.cairo.common.uint256", + "starkware.cairo.common.uint256.uint256_neg" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 62, + "end_line": 292, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/uint256.cairo" + }, + "start_col": 61, + "start_line": 292 + } + }, + "265": { + "accessible_scopes": [ + "starkware.cairo.common.uint256", + "starkware.cairo.common.uint256.uint256_neg" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 64, + "end_line": 292, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/uint256.cairo" + }, + "start_col": 20, + "start_line": 292 + } + }, + "267": { + "accessible_scopes": [ + "starkware.cairo.common.uint256", + "starkware.cairo.common.uint256.uint256_neg" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 33, + "end_line": 31, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/uint256.cairo" + }, + "parent_location": [ + { + "end_col": 64, + "end_line": 292, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/uint256.cairo" + }, + "parent_location": [ + { + "end_col": 33, + "end_line": 290, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/uint256.cairo" + }, + "parent_location": [ + { + "end_col": 22, + "end_line": 293, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/uint256.cairo" + }, + "start_col": 5, + "start_line": 293 + }, + "While trying to retrieve the implicit argument 'range_check_ptr' in:" + ], + "start_col": 18, + "start_line": 290 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 20, + "start_line": 292 + }, + "While trying to update the implicit return value 'range_check_ptr' in:" + ], + "start_col": 18, + "start_line": 31 + } + }, + "268": { + "accessible_scopes": [ + "starkware.cairo.common.uint256", + "starkware.cairo.common.uint256.uint256_neg" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 13, + "end_line": 292, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/uint256.cairo" + }, + "parent_location": [ + { + "end_col": 20, + "end_line": 293, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/uint256.cairo" + }, + "start_col": 17, + "start_line": 293 + }, + "While expanding the reference 'res' in:" + ], + "start_col": 10, + "start_line": 292 + } + }, + "269": { + "accessible_scopes": [ + "starkware.cairo.common.uint256", + "starkware.cairo.common.uint256.uint256_neg" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 13, + "end_line": 292, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/uint256.cairo" + }, + "parent_location": [ + { + "end_col": 20, + "end_line": 293, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/uint256.cairo" + }, + "start_col": 17, + "start_line": 293 + }, + "While expanding the reference 'res' in:" + ], + "start_col": 10, + "start_line": 292 + } + }, + "270": { + "accessible_scopes": [ + "starkware.cairo.common.uint256", + "starkware.cairo.common.uint256.uint256_neg" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 22, + "end_line": 293, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/uint256.cairo" + }, + "start_col": 5, + "start_line": 293 + } + }, + "271": { + "accessible_scopes": [ + "starkware.cairo.common.uint256", + "starkware.cairo.common.uint256.uint256_sub" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 33, + "end_line": 348, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/uint256.cairo" + }, + "parent_location": [ + { + "end_col": 33, + "end_line": 290, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/uint256.cairo" + }, + "parent_location": [ + { + "end_col": 33, + "end_line": 349, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/uint256.cairo" + }, + "start_col": 19, + "start_line": 349 + }, + "While trying to retrieve the implicit argument 'range_check_ptr' in:" + ], + "start_col": 18, + "start_line": 290 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 18, + "start_line": 348 + } + }, + "272": { + "accessible_scopes": [ + "starkware.cairo.common.uint256", + "starkware.cairo.common.uint256.uint256_sub" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 57, + "end_line": 348, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/uint256.cairo" + }, + "parent_location": [ + { + "end_col": 32, + "end_line": 349, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/uint256.cairo" + }, + "start_col": 31, + "start_line": 349 + }, + "While expanding the reference 'b' in:" + ], + "start_col": 47, + "start_line": 348 + } + }, + "273": { + "accessible_scopes": [ + "starkware.cairo.common.uint256", + "starkware.cairo.common.uint256.uint256_sub" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 57, + "end_line": 348, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/uint256.cairo" + }, + "parent_location": [ + { + "end_col": 32, + "end_line": 349, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/uint256.cairo" + }, + "start_col": 31, + "start_line": 349 + }, + "While expanding the reference 'b' in:" + ], + "start_col": 47, + "start_line": 348 + } + }, + "274": { + "accessible_scopes": [ + "starkware.cairo.common.uint256", + "starkware.cairo.common.uint256.uint256_sub" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 33, + "end_line": 349, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/uint256.cairo" + }, + "start_col": 19, + "start_line": 349 + } + }, + "276": { + "accessible_scopes": [ + "starkware.cairo.common.uint256", + "starkware.cairo.common.uint256.uint256_sub" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 33, + "end_line": 290, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/uint256.cairo" + }, + "parent_location": [ + { + "end_col": 33, + "end_line": 349, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/uint256.cairo" + }, + "parent_location": [ + { + "end_col": 33, + "end_line": 31, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/uint256.cairo" + }, + "parent_location": [ + { + "end_col": 41, + "end_line": 350, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/uint256.cairo" + }, + "start_col": 20, + "start_line": 350 + }, + "While trying to retrieve the implicit argument 'range_check_ptr' in:" + ], + "start_col": 18, + "start_line": 31 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 19, + "start_line": 349 + }, + "While trying to update the implicit return value 'range_check_ptr' in:" + ], + "start_col": 18, + "start_line": 290 + } + }, + "277": { + "accessible_scopes": [ + "starkware.cairo.common.uint256", + "starkware.cairo.common.uint256.uint256_sub" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 45, + "end_line": 348, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/uint256.cairo" + }, + "parent_location": [ + { + "end_col": 33, + "end_line": 350, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/uint256.cairo" + }, + "start_col": 32, + "start_line": 350 + }, + "While expanding the reference 'a' in:" + ], + "start_col": 35, + "start_line": 348 + } + }, + "278": { + "accessible_scopes": [ + "starkware.cairo.common.uint256", + "starkware.cairo.common.uint256.uint256_sub" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 45, + "end_line": 348, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/uint256.cairo" + }, + "parent_location": [ + { + "end_col": 33, + "end_line": 350, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/uint256.cairo" + }, + "start_col": 32, + "start_line": 350 + }, + "While expanding the reference 'a' in:" + ], + "start_col": 35, + "start_line": 348 + } + }, + "279": { + "accessible_scopes": [ + "starkware.cairo.common.uint256", + "starkware.cairo.common.uint256.uint256_sub" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 15, + "end_line": 349, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/uint256.cairo" + }, + "parent_location": [ + { + "end_col": 40, + "end_line": 350, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/uint256.cairo" + }, + "start_col": 35, + "start_line": 350 + }, + "While expanding the reference 'b_neg' in:" + ], + "start_col": 10, + "start_line": 349 + } + }, + "280": { + "accessible_scopes": [ + "starkware.cairo.common.uint256", + "starkware.cairo.common.uint256.uint256_sub" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 15, + "end_line": 349, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/uint256.cairo" + }, + "parent_location": [ + { + "end_col": 40, + "end_line": 350, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/uint256.cairo" + }, + "start_col": 35, + "start_line": 350 + }, + "While expanding the reference 'b_neg' in:" + ], + "start_col": 10, + "start_line": 349 + } + }, + "281": { + "accessible_scopes": [ + "starkware.cairo.common.uint256", + "starkware.cairo.common.uint256.uint256_sub" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 41, + "end_line": 350, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/uint256.cairo" + }, + "start_col": 20, + "start_line": 350 + } + }, + "283": { + "accessible_scopes": [ + "starkware.cairo.common.uint256", + "starkware.cairo.common.uint256.uint256_sub" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 33, + "end_line": 31, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/uint256.cairo" + }, + "parent_location": [ + { + "end_col": 41, + "end_line": 350, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/uint256.cairo" + }, + "parent_location": [ + { + "end_col": 33, + "end_line": 348, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/uint256.cairo" + }, + "parent_location": [ + { + "end_col": 22, + "end_line": 351, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/uint256.cairo" + }, + "start_col": 5, + "start_line": 351 + }, + "While trying to retrieve the implicit argument 'range_check_ptr' in:" + ], + "start_col": 18, + "start_line": 348 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 20, + "start_line": 350 + }, + "While trying to update the implicit return value 'range_check_ptr' in:" + ], + "start_col": 18, + "start_line": 31 + } + }, + "284": { + "accessible_scopes": [ + "starkware.cairo.common.uint256", + "starkware.cairo.common.uint256.uint256_sub" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 13, + "end_line": 350, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/uint256.cairo" + }, + "parent_location": [ + { + "end_col": 20, + "end_line": 351, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/uint256.cairo" + }, + "start_col": 17, + "start_line": 351 + }, + "While expanding the reference 'res' in:" + ], + "start_col": 10, + "start_line": 350 + } + }, + "285": { + "accessible_scopes": [ + "starkware.cairo.common.uint256", + "starkware.cairo.common.uint256.uint256_sub" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 13, + "end_line": 350, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/uint256.cairo" + }, + "parent_location": [ + { + "end_col": 20, + "end_line": 351, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/uint256.cairo" + }, + "start_col": 17, + "start_line": 351 + }, + "While expanding the reference 'res' in:" + ], + "start_col": 10, + "start_line": 350 + } + }, + "286": { + "accessible_scopes": [ + "starkware.cairo.common.uint256", + "starkware.cairo.common.uint256.uint256_sub" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 22, + "end_line": 351, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/uint256.cairo" + }, + "start_col": 5, + "start_line": 351 + } + }, + "287": { + "accessible_scopes": [ + "starkware.cairo.common.uint256", + "starkware.cairo.common.uint256.uint256_eq" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 25, + "end_line": 358, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/uint256.cairo" + }, + "start_col": 9, + "start_line": 358 + } + }, + "288": { + "accessible_scopes": [ + "starkware.cairo.common.uint256", + "starkware.cairo.common.uint256.uint256_eq" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 7, + "end_line": 358, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/uint256.cairo" + }, + "start_col": 5, + "start_line": 358 + } + }, + "290": { + "accessible_scopes": [ + "starkware.cairo.common.uint256", + "starkware.cairo.common.uint256.uint256_eq" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 7, + "end_line": 358, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/uint256.cairo" + }, + "start_col": 5, + "start_line": 358 + } + }, + "292": { + "accessible_scopes": [ + "starkware.cairo.common.uint256", + "starkware.cairo.common.uint256.uint256_eq" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 32, + "end_line": 357, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/uint256.cairo" + }, + "parent_location": [ + { + "end_col": 32, + "end_line": 357, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/uint256.cairo" + }, + "parent_location": [ + { + "end_col": 24, + "end_line": 359, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/uint256.cairo" + }, + "start_col": 9, + "start_line": 359 + }, + "While trying to retrieve the implicit argument 'range_check_ptr' in:" + ], + "start_col": 17, + "start_line": 357 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 17, + "start_line": 357 + } + }, + "293": { + "accessible_scopes": [ + "starkware.cairo.common.uint256", + "starkware.cairo.common.uint256.uint256_eq" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 22, + "end_line": 359, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/uint256.cairo" + }, + "start_col": 21, + "start_line": 359 + } + }, + "295": { + "accessible_scopes": [ + "starkware.cairo.common.uint256", + "starkware.cairo.common.uint256.uint256_eq" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 24, + "end_line": 359, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/uint256.cairo" + }, + "start_col": 9, + "start_line": 359 + } + }, + "296": { + "accessible_scopes": [ + "starkware.cairo.common.uint256", + "starkware.cairo.common.uint256.uint256_eq" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 23, + "end_line": 361, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/uint256.cairo" + }, + "start_col": 9, + "start_line": 361 + } + }, + "297": { + "accessible_scopes": [ + "starkware.cairo.common.uint256", + "starkware.cairo.common.uint256.uint256_eq" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 7, + "end_line": 361, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/uint256.cairo" + }, + "start_col": 5, + "start_line": 361 + } + }, + "299": { + "accessible_scopes": [ + "starkware.cairo.common.uint256", + "starkware.cairo.common.uint256.uint256_eq" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 7, + "end_line": 361, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/uint256.cairo" + }, + "start_col": 5, + "start_line": 361 + } + }, + "301": { + "accessible_scopes": [ + "starkware.cairo.common.uint256", + "starkware.cairo.common.uint256.uint256_eq" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 32, + "end_line": 357, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/uint256.cairo" + }, + "parent_location": [ + { + "end_col": 32, + "end_line": 357, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/uint256.cairo" + }, + "parent_location": [ + { + "end_col": 24, + "end_line": 362, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/uint256.cairo" + }, + "start_col": 9, + "start_line": 362 + }, + "While trying to retrieve the implicit argument 'range_check_ptr' in:" + ], + "start_col": 17, + "start_line": 357 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 17, + "start_line": 357 + } + }, + "302": { + "accessible_scopes": [ + "starkware.cairo.common.uint256", + "starkware.cairo.common.uint256.uint256_eq" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 22, + "end_line": 362, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/uint256.cairo" + }, + "start_col": 21, + "start_line": 362 + } + }, + "304": { + "accessible_scopes": [ + "starkware.cairo.common.uint256", + "starkware.cairo.common.uint256.uint256_eq" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 24, + "end_line": 362, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/uint256.cairo" + }, + "start_col": 9, + "start_line": 362 + } + }, + "305": { + "accessible_scopes": [ + "starkware.cairo.common.uint256", + "starkware.cairo.common.uint256.uint256_eq" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 32, + "end_line": 357, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/uint256.cairo" + }, + "parent_location": [ + { + "end_col": 32, + "end_line": 357, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/uint256.cairo" + }, + "parent_location": [ + { + "end_col": 20, + "end_line": 364, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/uint256.cairo" + }, + "start_col": 5, + "start_line": 364 + }, + "While trying to retrieve the implicit argument 'range_check_ptr' in:" + ], + "start_col": 17, + "start_line": 357 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 17, + "start_line": 357 + } + }, + "306": { + "accessible_scopes": [ + "starkware.cairo.common.uint256", + "starkware.cairo.common.uint256.uint256_eq" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 18, + "end_line": 364, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/uint256.cairo" + }, + "start_col": 17, + "start_line": 364 + } + }, + "308": { + "accessible_scopes": [ + "starkware.cairo.common.uint256", + "starkware.cairo.common.uint256.uint256_eq" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 20, + "end_line": 364, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/uint256.cairo" + }, + "start_col": 5, + "start_line": 364 + } + }, + "309": { + "accessible_scopes": [ + "openzeppelin.security.safemath.library", + "openzeppelin.security.safemath.library.SafeUint256", + "openzeppelin.security.safemath.library.SafeUint256.add" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 29, + "end_line": 23, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/security/safemath/library.cairo" + }, + "parent_location": [ + { + "end_col": 35, + "end_line": 21, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/uint256.cairo" + }, + "parent_location": [ + { + "end_col": 25, + "end_line": 24, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/security/safemath/library.cairo" + }, + "start_col": 9, + "start_line": 24 + }, + "While trying to retrieve the implicit argument 'range_check_ptr' in:" + ], + "start_col": 20, + "start_line": 21 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 14, + "start_line": 23 + } + }, + "310": { + "accessible_scopes": [ + "openzeppelin.security.safemath.library", + "openzeppelin.security.safemath.library.SafeUint256", + "openzeppelin.security.safemath.library.SafeUint256.add" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 41, + "end_line": 23, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/security/safemath/library.cairo" + }, + "parent_location": [ + { + "end_col": 24, + "end_line": 24, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/security/safemath/library.cairo" + }, + "start_col": 23, + "start_line": 24 + }, + "While expanding the reference 'a' in:" + ], + "start_col": 31, + "start_line": 23 + } + }, + "311": { + "accessible_scopes": [ + "openzeppelin.security.safemath.library", + "openzeppelin.security.safemath.library.SafeUint256", + "openzeppelin.security.safemath.library.SafeUint256.add" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 41, + "end_line": 23, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/security/safemath/library.cairo" + }, + "parent_location": [ + { + "end_col": 24, + "end_line": 24, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/security/safemath/library.cairo" + }, + "start_col": 23, + "start_line": 24 + }, + "While expanding the reference 'a' in:" + ], + "start_col": 31, + "start_line": 23 + } + }, + "312": { + "accessible_scopes": [ + "openzeppelin.security.safemath.library", + "openzeppelin.security.safemath.library.SafeUint256", + "openzeppelin.security.safemath.library.SafeUint256.add" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 25, + "end_line": 24, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/security/safemath/library.cairo" + }, + "start_col": 9, + "start_line": 24 + } + }, + "314": { + "accessible_scopes": [ + "openzeppelin.security.safemath.library", + "openzeppelin.security.safemath.library.SafeUint256", + "openzeppelin.security.safemath.library.SafeUint256.add" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 53, + "end_line": 23, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/security/safemath/library.cairo" + }, + "parent_location": [ + { + "end_col": 24, + "end_line": 25, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/security/safemath/library.cairo" + }, + "start_col": 23, + "start_line": 25 + }, + "While expanding the reference 'b' in:" + ], + "start_col": 43, + "start_line": 23 + } + }, + "315": { + "accessible_scopes": [ + "openzeppelin.security.safemath.library", + "openzeppelin.security.safemath.library.SafeUint256", + "openzeppelin.security.safemath.library.SafeUint256.add" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 53, + "end_line": 23, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/security/safemath/library.cairo" + }, + "parent_location": [ + { + "end_col": 24, + "end_line": 25, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/security/safemath/library.cairo" + }, + "start_col": 23, + "start_line": 25 + }, + "While expanding the reference 'b' in:" + ], + "start_col": 43, + "start_line": 23 + } + }, + "316": { + "accessible_scopes": [ + "openzeppelin.security.safemath.library", + "openzeppelin.security.safemath.library.SafeUint256", + "openzeppelin.security.safemath.library.SafeUint256.add" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 25, + "end_line": 25, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/security/safemath/library.cairo" + }, + "start_col": 9, + "start_line": 25 + } + }, + "318": { + "accessible_scopes": [ + "openzeppelin.security.safemath.library", + "openzeppelin.security.safemath.library.SafeUint256", + "openzeppelin.security.safemath.library.SafeUint256.add" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 41, + "end_line": 23, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/security/safemath/library.cairo" + }, + "parent_location": [ + { + "end_col": 54, + "end_line": 26, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/security/safemath/library.cairo" + }, + "start_col": 53, + "start_line": 26 + }, + "While expanding the reference 'a' in:" + ], + "start_col": 31, + "start_line": 23 + } + }, + "319": { + "accessible_scopes": [ + "openzeppelin.security.safemath.library", + "openzeppelin.security.safemath.library.SafeUint256", + "openzeppelin.security.safemath.library.SafeUint256.add" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 41, + "end_line": 23, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/security/safemath/library.cairo" + }, + "parent_location": [ + { + "end_col": 54, + "end_line": 26, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/security/safemath/library.cairo" + }, + "start_col": 53, + "start_line": 26 + }, + "While expanding the reference 'a' in:" + ], + "start_col": 31, + "start_line": 23 + } + }, + "320": { + "accessible_scopes": [ + "openzeppelin.security.safemath.library", + "openzeppelin.security.safemath.library.SafeUint256", + "openzeppelin.security.safemath.library.SafeUint256.add" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 53, + "end_line": 23, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/security/safemath/library.cairo" + }, + "parent_location": [ + { + "end_col": 57, + "end_line": 26, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/security/safemath/library.cairo" + }, + "start_col": 56, + "start_line": 26 + }, + "While expanding the reference 'b' in:" + ], + "start_col": 43, + "start_line": 23 + } + }, + "321": { + "accessible_scopes": [ + "openzeppelin.security.safemath.library", + "openzeppelin.security.safemath.library.SafeUint256", + "openzeppelin.security.safemath.library.SafeUint256.add" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 53, + "end_line": 23, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/security/safemath/library.cairo" + }, + "parent_location": [ + { + "end_col": 57, + "end_line": 26, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/security/safemath/library.cairo" + }, + "start_col": 56, + "start_line": 26 + }, + "While expanding the reference 'b' in:" + ], + "start_col": 43, + "start_line": 23 + } + }, + "322": { + "accessible_scopes": [ + "openzeppelin.security.safemath.library", + "openzeppelin.security.safemath.library.SafeUint256", + "openzeppelin.security.safemath.library.SafeUint256.add" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 58, + "end_line": 26, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/security/safemath/library.cairo" + }, + "start_col": 41, + "start_line": 26 + } + }, + "324": { + "accessible_scopes": [ + "openzeppelin.security.safemath.library", + "openzeppelin.security.safemath.library.SafeUint256", + "openzeppelin.security.safemath.library.SafeUint256.add" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 40, + "end_line": 28, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/security/safemath/library.cairo" + }, + "start_col": 13, + "start_line": 28 + } + }, + "326": { + "accessible_scopes": [ + "openzeppelin.security.safemath.library", + "openzeppelin.security.safemath.library.SafeUint256", + "openzeppelin.security.safemath.library.SafeUint256.add" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 33, + "end_line": 31, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/uint256.cairo" + }, + "parent_location": [ + { + "end_col": 58, + "end_line": 26, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/security/safemath/library.cairo" + }, + "parent_location": [ + { + "end_col": 29, + "end_line": 23, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/security/safemath/library.cairo" + }, + "parent_location": [ + { + "end_col": 22, + "end_line": 30, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/security/safemath/library.cairo" + }, + "start_col": 9, + "start_line": 30 + }, + "While trying to retrieve the implicit argument 'range_check_ptr' in:" + ], + "start_col": 14, + "start_line": 23 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 41, + "start_line": 26 + }, + "While trying to update the implicit return value 'range_check_ptr' in:" + ], + "start_col": 18, + "start_line": 31 + } + }, + "327": { + "accessible_scopes": [ + "openzeppelin.security.safemath.library", + "openzeppelin.security.safemath.library.SafeUint256", + "openzeppelin.security.safemath.library.SafeUint256.add" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 24, + "end_line": 26, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/security/safemath/library.cairo" + }, + "parent_location": [ + { + "end_col": 20, + "end_line": 30, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/security/safemath/library.cairo" + }, + "start_col": 19, + "start_line": 30 + }, + "While expanding the reference 'c' in:" + ], + "start_col": 14, + "start_line": 26 + } + }, + "328": { + "accessible_scopes": [ + "openzeppelin.security.safemath.library", + "openzeppelin.security.safemath.library.SafeUint256", + "openzeppelin.security.safemath.library.SafeUint256.add" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 24, + "end_line": 26, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/security/safemath/library.cairo" + }, + "parent_location": [ + { + "end_col": 20, + "end_line": 30, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/security/safemath/library.cairo" + }, + "start_col": 19, + "start_line": 30 + }, + "While expanding the reference 'c' in:" + ], + "start_col": 14, + "start_line": 26 + } + }, + "329": { + "accessible_scopes": [ + "openzeppelin.security.safemath.library", + "openzeppelin.security.safemath.library.SafeUint256", + "openzeppelin.security.safemath.library.SafeUint256.add" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 22, + "end_line": 30, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/security/safemath/library.cairo" + }, + "start_col": 9, + "start_line": 30 + } + }, + "330": { + "accessible_scopes": [ + "openzeppelin.security.safemath.library", + "openzeppelin.security.safemath.library.SafeUint256", + "openzeppelin.security.safemath.library.SafeUint256.sub_le" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 22, + "end_line": 36, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/security/safemath/library.cairo" + }, + "start_col": 9, + "start_line": 36 + } + }, + "332": { + "accessible_scopes": [ + "openzeppelin.security.safemath.library", + "openzeppelin.security.safemath.library.SafeUint256", + "openzeppelin.security.safemath.library.SafeUint256.sub_le" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 32, + "end_line": 35, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/security/safemath/library.cairo" + }, + "parent_location": [ + { + "end_col": 35, + "end_line": 21, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/uint256.cairo" + }, + "parent_location": [ + { + "end_col": 25, + "end_line": 37, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/security/safemath/library.cairo" + }, + "start_col": 9, + "start_line": 37 + }, + "While trying to retrieve the implicit argument 'range_check_ptr' in:" + ], + "start_col": 20, + "start_line": 21 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 17, + "start_line": 35 + } + }, + "333": { + "accessible_scopes": [ + "openzeppelin.security.safemath.library", + "openzeppelin.security.safemath.library.SafeUint256", + "openzeppelin.security.safemath.library.SafeUint256.sub_le" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 44, + "end_line": 35, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/security/safemath/library.cairo" + }, + "parent_location": [ + { + "end_col": 24, + "end_line": 37, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/security/safemath/library.cairo" + }, + "start_col": 23, + "start_line": 37 + }, + "While expanding the reference 'a' in:" + ], + "start_col": 34, + "start_line": 35 + } + }, + "334": { + "accessible_scopes": [ + "openzeppelin.security.safemath.library", + "openzeppelin.security.safemath.library.SafeUint256", + "openzeppelin.security.safemath.library.SafeUint256.sub_le" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 44, + "end_line": 35, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/security/safemath/library.cairo" + }, + "parent_location": [ + { + "end_col": 24, + "end_line": 37, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/security/safemath/library.cairo" + }, + "start_col": 23, + "start_line": 37 + }, + "While expanding the reference 'a' in:" + ], + "start_col": 34, + "start_line": 35 + } + }, + "335": { + "accessible_scopes": [ + "openzeppelin.security.safemath.library", + "openzeppelin.security.safemath.library.SafeUint256", + "openzeppelin.security.safemath.library.SafeUint256.sub_le" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 25, + "end_line": 37, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/security/safemath/library.cairo" + }, + "start_col": 9, + "start_line": 37 + } + }, + "337": { + "accessible_scopes": [ + "openzeppelin.security.safemath.library", + "openzeppelin.security.safemath.library.SafeUint256", + "openzeppelin.security.safemath.library.SafeUint256.sub_le" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 56, + "end_line": 35, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/security/safemath/library.cairo" + }, + "parent_location": [ + { + "end_col": 24, + "end_line": 38, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/security/safemath/library.cairo" + }, + "start_col": 23, + "start_line": 38 + }, + "While expanding the reference 'b' in:" + ], + "start_col": 46, + "start_line": 35 + } + }, + "338": { + "accessible_scopes": [ + "openzeppelin.security.safemath.library", + "openzeppelin.security.safemath.library.SafeUint256", + "openzeppelin.security.safemath.library.SafeUint256.sub_le" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 56, + "end_line": 35, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/security/safemath/library.cairo" + }, + "parent_location": [ + { + "end_col": 24, + "end_line": 38, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/security/safemath/library.cairo" + }, + "start_col": 23, + "start_line": 38 + }, + "While expanding the reference 'b' in:" + ], + "start_col": 46, + "start_line": 35 + } + }, + "339": { + "accessible_scopes": [ + "openzeppelin.security.safemath.library", + "openzeppelin.security.safemath.library.SafeUint256", + "openzeppelin.security.safemath.library.SafeUint256.sub_le" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 25, + "end_line": 38, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/security/safemath/library.cairo" + }, + "start_col": 9, + "start_line": 38 + } + }, + "341": { + "accessible_scopes": [ + "openzeppelin.security.safemath.library", + "openzeppelin.security.safemath.library.SafeUint256", + "openzeppelin.security.safemath.library.SafeUint256.sub_le" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 56, + "end_line": 35, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/security/safemath/library.cairo" + }, + "parent_location": [ + { + "end_col": 35, + "end_line": 39, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/security/safemath/library.cairo" + }, + "start_col": 34, + "start_line": 39 + }, + "While expanding the reference 'b' in:" + ], + "start_col": 46, + "start_line": 35 + } + }, + "342": { + "accessible_scopes": [ + "openzeppelin.security.safemath.library", + "openzeppelin.security.safemath.library.SafeUint256", + "openzeppelin.security.safemath.library.SafeUint256.sub_le" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 56, + "end_line": 35, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/security/safemath/library.cairo" + }, + "parent_location": [ + { + "end_col": 35, + "end_line": 39, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/security/safemath/library.cairo" + }, + "start_col": 34, + "start_line": 39 + }, + "While expanding the reference 'b' in:" + ], + "start_col": 46, + "start_line": 35 + } + }, + "343": { + "accessible_scopes": [ + "openzeppelin.security.safemath.library", + "openzeppelin.security.safemath.library.SafeUint256", + "openzeppelin.security.safemath.library.SafeUint256.sub_le" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 44, + "end_line": 35, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/security/safemath/library.cairo" + }, + "parent_location": [ + { + "end_col": 38, + "end_line": 39, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/security/safemath/library.cairo" + }, + "start_col": 37, + "start_line": 39 + }, + "While expanding the reference 'a' in:" + ], + "start_col": 34, + "start_line": 35 + } + }, + "344": { + "accessible_scopes": [ + "openzeppelin.security.safemath.library", + "openzeppelin.security.safemath.library.SafeUint256", + "openzeppelin.security.safemath.library.SafeUint256.sub_le" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 44, + "end_line": 35, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/security/safemath/library.cairo" + }, + "parent_location": [ + { + "end_col": 38, + "end_line": 39, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/security/safemath/library.cairo" + }, + "start_col": 37, + "start_line": 39 + }, + "While expanding the reference 'a' in:" + ], + "start_col": 34, + "start_line": 35 + } + }, + "345": { + "accessible_scopes": [ + "openzeppelin.security.safemath.library", + "openzeppelin.security.safemath.library.SafeUint256", + "openzeppelin.security.safemath.library.SafeUint256.sub_le" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 39, + "end_line": 39, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/security/safemath/library.cairo" + }, + "start_col": 23, + "start_line": 39 + } + }, + "347": { + "accessible_scopes": [ + "openzeppelin.security.safemath.library", + "openzeppelin.security.safemath.library.SafeUint256", + "openzeppelin.security.safemath.library.SafeUint256.sub_le" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 33, + "end_line": 41, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/security/safemath/library.cairo" + }, + "start_col": 13, + "start_line": 41 + } + }, + "349": { + "accessible_scopes": [ + "openzeppelin.security.safemath.library", + "openzeppelin.security.safemath.library.SafeUint256", + "openzeppelin.security.safemath.library.SafeUint256.sub_le" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 32, + "end_line": 148, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/uint256.cairo" + }, + "parent_location": [ + { + "end_col": 39, + "end_line": 39, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/security/safemath/library.cairo" + }, + "parent_location": [ + { + "end_col": 33, + "end_line": 348, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/uint256.cairo" + }, + "parent_location": [ + { + "end_col": 45, + "end_line": 43, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/security/safemath/library.cairo" + }, + "start_col": 28, + "start_line": 43 + }, + "While trying to retrieve the implicit argument 'range_check_ptr' in:" + ], + "start_col": 18, + "start_line": 348 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 23, + "start_line": 39 + }, + "While trying to update the implicit return value 'range_check_ptr' in:" + ], + "start_col": 17, + "start_line": 148 + } + }, + "350": { + "accessible_scopes": [ + "openzeppelin.security.safemath.library", + "openzeppelin.security.safemath.library.SafeUint256", + "openzeppelin.security.safemath.library.SafeUint256.sub_le" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 44, + "end_line": 35, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/security/safemath/library.cairo" + }, + "parent_location": [ + { + "end_col": 41, + "end_line": 43, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/security/safemath/library.cairo" + }, + "start_col": 40, + "start_line": 43 + }, + "While expanding the reference 'a' in:" + ], + "start_col": 34, + "start_line": 35 + } + }, + "351": { + "accessible_scopes": [ + "openzeppelin.security.safemath.library", + "openzeppelin.security.safemath.library.SafeUint256", + "openzeppelin.security.safemath.library.SafeUint256.sub_le" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 44, + "end_line": 35, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/security/safemath/library.cairo" + }, + "parent_location": [ + { + "end_col": 41, + "end_line": 43, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/security/safemath/library.cairo" + }, + "start_col": 40, + "start_line": 43 + }, + "While expanding the reference 'a' in:" + ], + "start_col": 34, + "start_line": 35 + } + }, + "352": { + "accessible_scopes": [ + "openzeppelin.security.safemath.library", + "openzeppelin.security.safemath.library.SafeUint256", + "openzeppelin.security.safemath.library.SafeUint256.sub_le" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 56, + "end_line": 35, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/security/safemath/library.cairo" + }, + "parent_location": [ + { + "end_col": 44, + "end_line": 43, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/security/safemath/library.cairo" + }, + "start_col": 43, + "start_line": 43 + }, + "While expanding the reference 'b' in:" + ], + "start_col": 46, + "start_line": 35 + } + }, + "353": { + "accessible_scopes": [ + "openzeppelin.security.safemath.library", + "openzeppelin.security.safemath.library.SafeUint256", + "openzeppelin.security.safemath.library.SafeUint256.sub_le" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 56, + "end_line": 35, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/security/safemath/library.cairo" + }, + "parent_location": [ + { + "end_col": 44, + "end_line": 43, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/security/safemath/library.cairo" + }, + "start_col": 43, + "start_line": 43 + }, + "While expanding the reference 'b' in:" + ], + "start_col": 46, + "start_line": 35 + } + }, + "354": { + "accessible_scopes": [ + "openzeppelin.security.safemath.library", + "openzeppelin.security.safemath.library.SafeUint256", + "openzeppelin.security.safemath.library.SafeUint256.sub_le" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 45, + "end_line": 43, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/security/safemath/library.cairo" + }, + "start_col": 28, + "start_line": 43 + } + }, + "356": { + "accessible_scopes": [ + "openzeppelin.security.safemath.library", + "openzeppelin.security.safemath.library.SafeUint256", + "openzeppelin.security.safemath.library.SafeUint256.sub_le" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 22, + "end_line": 44, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/security/safemath/library.cairo" + }, + "start_col": 9, + "start_line": 44 + } + }, + "357": { + "accessible_scopes": [ + "openzeppelin.token.erc20.library", + "openzeppelin.token.erc20.library.Transfer", + "openzeppelin.token.erc20.library.Transfer.emit" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 14, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/event/Transfer/8220fde17ca5479f12ae71a8036f4d354fe722f2c036da610b53511924e4ee84.cairo" + }, + "parent_location": [ + { + "end_col": 14, + "end_line": 20, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc20/library.cairo" + }, + "start_col": 6, + "start_line": 20 + }, + "While handling event:" + ], + "start_col": 1, + "start_line": 1 + } + }, + "359": { + "accessible_scopes": [ + "openzeppelin.token.erc20.library", + "openzeppelin.token.erc20.library.Transfer", + "openzeppelin.token.erc20.library.Transfer.emit" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 40, + "end_line": 2, + "input_file": { + "filename": "autogen/starknet/event/Transfer/8220fde17ca5479f12ae71a8036f4d354fe722f2c036da610b53511924e4ee84.cairo" + }, + "parent_location": [ + { + "end_col": 14, + "end_line": 20, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc20/library.cairo" + }, + "start_col": 6, + "start_line": 20 + }, + "While handling event:" + ], + "start_col": 33, + "start_line": 2 + } + }, + "361": { + "accessible_scopes": [ + "openzeppelin.token.erc20.library", + "openzeppelin.token.erc20.library.Transfer", + "openzeppelin.token.erc20.library.Transfer.emit" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 29, + "end_line": 2, + "input_file": { + "filename": "autogen/starknet/event/Transfer/8220fde17ca5479f12ae71a8036f4d354fe722f2c036da610b53511924e4ee84.cairo" + }, + "parent_location": [ + { + "end_col": 14, + "end_line": 20, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc20/library.cairo" + }, + "start_col": 6, + "start_line": 20 + }, + "While handling event:" + ], + "start_col": 6, + "start_line": 2 + } + }, + "362": { + "accessible_scopes": [ + "openzeppelin.token.erc20.library", + "openzeppelin.token.erc20.library.Transfer", + "openzeppelin.token.erc20.library.Transfer.emit" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 31, + "end_line": 3, + "input_file": { + "filename": "autogen/starknet/event/Transfer/8220fde17ca5479f12ae71a8036f4d354fe722f2c036da610b53511924e4ee84.cairo" + }, + "parent_location": [ + { + "end_col": 14, + "end_line": 20, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc20/library.cairo" + }, + "start_col": 6, + "start_line": 20 + }, + "While handling event:" + ], + "start_col": 23, + "start_line": 3 + } + }, + "364": { + "accessible_scopes": [ + "openzeppelin.token.erc20.library", + "openzeppelin.token.erc20.library.Transfer", + "openzeppelin.token.erc20.library.Transfer.emit" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 32, + "end_line": 3, + "input_file": { + "filename": "autogen/starknet/event/Transfer/8220fde17ca5479f12ae71a8036f4d354fe722f2c036da610b53511924e4ee84.cairo" + }, + "parent_location": [ + { + "end_col": 14, + "end_line": 20, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc20/library.cairo" + }, + "start_col": 6, + "start_line": 20 + }, + "While handling event:" + ], + "start_col": 1, + "start_line": 3 + } + }, + "365": { + "accessible_scopes": [ + "openzeppelin.token.erc20.library", + "openzeppelin.token.erc20.library.Transfer", + "openzeppelin.token.erc20.library.Transfer.emit" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 40, + "end_line": 4, + "input_file": { + "filename": "autogen/starknet/event/Transfer/8220fde17ca5479f12ae71a8036f4d354fe722f2c036da610b53511924e4ee84.cairo" + }, + "parent_location": [ + { + "end_col": 14, + "end_line": 20, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc20/library.cairo" + }, + "start_col": 6, + "start_line": 20 + }, + "While handling event:" + ], + "start_col": 33, + "start_line": 4 + } + }, + "367": { + "accessible_scopes": [ + "openzeppelin.token.erc20.library", + "openzeppelin.token.erc20.library.Transfer", + "openzeppelin.token.erc20.library.Transfer.emit" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 29, + "end_line": 4, + "input_file": { + "filename": "autogen/starknet/event/Transfer/8220fde17ca5479f12ae71a8036f4d354fe722f2c036da610b53511924e4ee84.cairo" + }, + "parent_location": [ + { + "end_col": 14, + "end_line": 20, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc20/library.cairo" + }, + "start_col": 6, + "start_line": 20 + }, + "While handling event:" + ], + "start_col": 6, + "start_line": 4 + } + }, + "368": { + "accessible_scopes": [ + "openzeppelin.token.erc20.library", + "openzeppelin.token.erc20.library.Transfer", + "openzeppelin.token.erc20.library.Transfer.emit" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 33, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/arg_processor/ad6bf90c88bb84c90b568cfe0e89ce22c3213011f6c9cc8bf0b75066ae521c26.cairo" + }, + "parent_location": [ + { + "end_col": 20, + "end_line": 20, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc20/library.cairo" + }, + "start_col": 15, + "start_line": 20 + }, + "While handling calldata argument 'from_'" + ], + "start_col": 1, + "start_line": 1 + } + }, + "369": { + "accessible_scopes": [ + "openzeppelin.token.erc20.library", + "openzeppelin.token.erc20.library.Transfer", + "openzeppelin.token.erc20.library.Transfer.emit" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 30, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/arg_processor/2670bb539ede27446c75876e41bcf9ef5cab09b9eec143f3986635a545b089ab.cairo" + }, + "parent_location": [ + { + "end_col": 30, + "end_line": 20, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc20/library.cairo" + }, + "start_col": 28, + "start_line": 20 + }, + "While handling calldata argument 'to'" + ], + "start_col": 1, + "start_line": 1 + } + }, + "370": { + "accessible_scopes": [ + "openzeppelin.token.erc20.library", + "openzeppelin.token.erc20.library.Transfer", + "openzeppelin.token.erc20.library.Transfer.emit" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 52, + "end_line": 3, + "input_file": { + "filename": "autogen/starknet/arg_processor/969c7e319d46ceb58852dd3a77ddee2803f411e321ab446a930b3d3df7862483.cairo" + }, + "parent_location": [ + { + "end_col": 43, + "end_line": 20, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc20/library.cairo" + }, + "start_col": 38, + "start_line": 20 + }, + "While handling calldata argument 'value'" + ], + "start_col": 1, + "start_line": 3 + } + }, + "371": { + "accessible_scopes": [ + "openzeppelin.token.erc20.library", + "openzeppelin.token.erc20.library.Transfer", + "openzeppelin.token.erc20.library.Transfer.emit" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 52, + "end_line": 4, + "input_file": { + "filename": "autogen/starknet/arg_processor/969c7e319d46ceb58852dd3a77ddee2803f411e321ab446a930b3d3df7862483.cairo" + }, + "parent_location": [ + { + "end_col": 43, + "end_line": 20, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc20/library.cairo" + }, + "start_col": 38, + "start_line": 20 + }, + "While handling calldata argument 'value'" + ], + "start_col": 1, + "start_line": 4 + } + }, + "372": { + "accessible_scopes": [ + "openzeppelin.token.erc20.library", + "openzeppelin.token.erc20.library.Transfer", + "openzeppelin.token.erc20.library.Transfer.emit" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 40, + "end_line": 5, + "input_file": { + "filename": "autogen/starknet/arg_processor/969c7e319d46ceb58852dd3a77ddee2803f411e321ab446a930b3d3df7862483.cairo" + }, + "parent_location": [ + { + "end_col": 43, + "end_line": 20, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc20/library.cairo" + }, + "parent_location": [ + { + "end_col": 64, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/event/Transfer/6150feec30bd48bfd0f446ed8c155a6d911a2c3fb3ec7a980733900416819259.cairo" + }, + "parent_location": [ + { + "end_col": 14, + "end_line": 20, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc20/library.cairo" + }, + "start_col": 6, + "start_line": 20 + }, + "While handling event:" + ], + "start_col": 50, + "start_line": 1 + }, + "While expanding the reference '__calldata_ptr' in:" + ], + "start_col": 38, + "start_line": 20 + }, + "While handling calldata argument 'value'" + ], + "start_col": 22, + "start_line": 5 + } + }, + "374": { + "accessible_scopes": [ + "openzeppelin.token.erc20.library", + "openzeppelin.token.erc20.library.Transfer", + "openzeppelin.token.erc20.library.Transfer.emit" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 29, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/event/Transfer/a7a8ae41be29ac9f4f6c3b7837c448d787ca051dd1ade98f409e54d33d112504.cairo" + }, + "parent_location": [ + { + "end_col": 14, + "end_line": 20, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc20/library.cairo" + }, + "parent_location": [ + { + "end_col": 35, + "end_line": 390, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/starknet/common/syscalls.cairo" + }, + "parent_location": [ + { + "end_col": 95, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/event/Transfer/6150feec30bd48bfd0f446ed8c155a6d911a2c3fb3ec7a980733900416819259.cairo" + }, + "parent_location": [ + { + "end_col": 14, + "end_line": 20, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc20/library.cairo" + }, + "start_col": 6, + "start_line": 20 + }, + "While handling event:" + ], + "start_col": 1, + "start_line": 1 + }, + "While trying to retrieve the implicit argument 'syscall_ptr' in:" + ], + "start_col": 17, + "start_line": 390 + }, + "While expanding the reference 'syscall_ptr' in:" + ], + "start_col": 6, + "start_line": 20 + }, + "While handling event:" + ], + "start_col": 11, + "start_line": 1 + } + }, + "375": { + "accessible_scopes": [ + "openzeppelin.token.erc20.library", + "openzeppelin.token.erc20.library.Transfer", + "openzeppelin.token.erc20.library.Transfer.emit" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 22, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/event/Transfer/6150feec30bd48bfd0f446ed8c155a6d911a2c3fb3ec7a980733900416819259.cairo" + }, + "parent_location": [ + { + "end_col": 14, + "end_line": 20, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc20/library.cairo" + }, + "start_col": 6, + "start_line": 20 + }, + "While handling event:" + ], + "start_col": 21, + "start_line": 1 + } + }, + "377": { + "accessible_scopes": [ + "openzeppelin.token.erc20.library", + "openzeppelin.token.erc20.library.Transfer", + "openzeppelin.token.erc20.library.Transfer.emit" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 22, + "end_line": 2, + "input_file": { + "filename": "autogen/starknet/event/Transfer/8220fde17ca5479f12ae71a8036f4d354fe722f2c036da610b53511924e4ee84.cairo" + }, + "parent_location": [ + { + "end_col": 14, + "end_line": 20, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc20/library.cairo" + }, + "parent_location": [ + { + "end_col": 39, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/event/Transfer/6150feec30bd48bfd0f446ed8c155a6d911a2c3fb3ec7a980733900416819259.cairo" + }, + "parent_location": [ + { + "end_col": 14, + "end_line": 20, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc20/library.cairo" + }, + "start_col": 6, + "start_line": 20 + }, + "While handling event:" + ], + "start_col": 29, + "start_line": 1 + }, + "While expanding the reference '__keys_ptr' in:" + ], + "start_col": 6, + "start_line": 20 + }, + "While handling event:" + ], + "start_col": 12, + "start_line": 2 + } + }, + "378": { + "accessible_scopes": [ + "openzeppelin.token.erc20.library", + "openzeppelin.token.erc20.library.Transfer", + "openzeppelin.token.erc20.library.Transfer.emit" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 77, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/event/Transfer/6150feec30bd48bfd0f446ed8c155a6d911a2c3fb3ec7a980733900416819259.cairo" + }, + "parent_location": [ + { + "end_col": 14, + "end_line": 20, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc20/library.cairo" + }, + "start_col": 6, + "start_line": 20 + }, + "While handling event:" + ], + "start_col": 50, + "start_line": 1 + } + }, + "379": { + "accessible_scopes": [ + "openzeppelin.token.erc20.library", + "openzeppelin.token.erc20.library.Transfer", + "openzeppelin.token.erc20.library.Transfer.emit" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 22, + "end_line": 4, + "input_file": { + "filename": "autogen/starknet/event/Transfer/8220fde17ca5479f12ae71a8036f4d354fe722f2c036da610b53511924e4ee84.cairo" + }, + "parent_location": [ + { + "end_col": 14, + "end_line": 20, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc20/library.cairo" + }, + "parent_location": [ + { + "end_col": 94, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/event/Transfer/6150feec30bd48bfd0f446ed8c155a6d911a2c3fb3ec7a980733900416819259.cairo" + }, + "parent_location": [ + { + "end_col": 14, + "end_line": 20, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc20/library.cairo" + }, + "start_col": 6, + "start_line": 20 + }, + "While handling event:" + ], + "start_col": 84, + "start_line": 1 + }, + "While expanding the reference '__data_ptr' in:" + ], + "start_col": 6, + "start_line": 20 + }, + "While handling event:" + ], + "start_col": 12, + "start_line": 4 + } + }, + "380": { + "accessible_scopes": [ + "openzeppelin.token.erc20.library", + "openzeppelin.token.erc20.library.Transfer", + "openzeppelin.token.erc20.library.Transfer.emit" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 95, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/event/Transfer/6150feec30bd48bfd0f446ed8c155a6d911a2c3fb3ec7a980733900416819259.cairo" + }, + "parent_location": [ + { + "end_col": 14, + "end_line": 20, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc20/library.cairo" + }, + "start_col": 6, + "start_line": 20 + }, + "While handling event:" + ], + "start_col": 1, + "start_line": 1 + } + }, + "382": { + "accessible_scopes": [ + "openzeppelin.token.erc20.library", + "openzeppelin.token.erc20.library.Transfer", + "openzeppelin.token.erc20.library.Transfer.emit" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 46, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/event/Transfer/a7a8ae41be29ac9f4f6c3b7837c448d787ca051dd1ade98f409e54d33d112504.cairo" + }, + "parent_location": [ + { + "end_col": 14, + "end_line": 20, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc20/library.cairo" + }, + "parent_location": [ + { + "end_col": 46, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/event/Transfer/a7a8ae41be29ac9f4f6c3b7837c448d787ca051dd1ade98f409e54d33d112504.cairo" + }, + "parent_location": [ + { + "end_col": 14, + "end_line": 20, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc20/library.cairo" + }, + "parent_location": [ + { + "end_col": 11, + "end_line": 2, + "input_file": { + "filename": "autogen/starknet/event/Transfer/6150feec30bd48bfd0f446ed8c155a6d911a2c3fb3ec7a980733900416819259.cairo" + }, + "parent_location": [ + { + "end_col": 14, + "end_line": 20, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc20/library.cairo" + }, + "start_col": 6, + "start_line": 20 + }, + "While handling event:" + ], + "start_col": 1, + "start_line": 2 + }, + "While trying to retrieve the implicit argument 'range_check_ptr' in:" + ], + "start_col": 6, + "start_line": 20 + }, + "While handling event:" + ], + "start_col": 31, + "start_line": 1 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 6, + "start_line": 20 + }, + "While handling event:" + ], + "start_col": 31, + "start_line": 1 + } + }, + "383": { + "accessible_scopes": [ + "openzeppelin.token.erc20.library", + "openzeppelin.token.erc20.library.Transfer", + "openzeppelin.token.erc20.library.Transfer.emit" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 11, + "end_line": 2, + "input_file": { + "filename": "autogen/starknet/event/Transfer/6150feec30bd48bfd0f446ed8c155a6d911a2c3fb3ec7a980733900416819259.cairo" + }, + "parent_location": [ + { + "end_col": 14, + "end_line": 20, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc20/library.cairo" + }, + "start_col": 6, + "start_line": 20 + }, + "While handling event:" + ], + "start_col": 1, + "start_line": 2 + } + }, + "384": { + "accessible_scopes": [ + "openzeppelin.token.erc20.library", + "openzeppelin.token.erc20.library.Approval", + "openzeppelin.token.erc20.library.Approval.emit" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 14, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/event/Approval/8220fde17ca5479f12ae71a8036f4d354fe722f2c036da610b53511924e4ee84.cairo" + }, + "parent_location": [ + { + "end_col": 14, + "end_line": 24, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc20/library.cairo" + }, + "start_col": 6, + "start_line": 24 + }, + "While handling event:" + ], + "start_col": 1, + "start_line": 1 + } + }, + "386": { + "accessible_scopes": [ + "openzeppelin.token.erc20.library", + "openzeppelin.token.erc20.library.Approval", + "openzeppelin.token.erc20.library.Approval.emit" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 40, + "end_line": 2, + "input_file": { + "filename": "autogen/starknet/event/Approval/8220fde17ca5479f12ae71a8036f4d354fe722f2c036da610b53511924e4ee84.cairo" + }, + "parent_location": [ + { + "end_col": 14, + "end_line": 24, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc20/library.cairo" + }, + "start_col": 6, + "start_line": 24 + }, + "While handling event:" + ], + "start_col": 33, + "start_line": 2 + } + }, + "388": { + "accessible_scopes": [ + "openzeppelin.token.erc20.library", + "openzeppelin.token.erc20.library.Approval", + "openzeppelin.token.erc20.library.Approval.emit" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 29, + "end_line": 2, + "input_file": { + "filename": "autogen/starknet/event/Approval/8220fde17ca5479f12ae71a8036f4d354fe722f2c036da610b53511924e4ee84.cairo" + }, + "parent_location": [ + { + "end_col": 14, + "end_line": 24, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc20/library.cairo" + }, + "start_col": 6, + "start_line": 24 + }, + "While handling event:" + ], + "start_col": 6, + "start_line": 2 + } + }, + "389": { + "accessible_scopes": [ + "openzeppelin.token.erc20.library", + "openzeppelin.token.erc20.library.Approval", + "openzeppelin.token.erc20.library.Approval.emit" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 31, + "end_line": 3, + "input_file": { + "filename": "autogen/starknet/event/Approval/8220fde17ca5479f12ae71a8036f4d354fe722f2c036da610b53511924e4ee84.cairo" + }, + "parent_location": [ + { + "end_col": 14, + "end_line": 24, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc20/library.cairo" + }, + "start_col": 6, + "start_line": 24 + }, + "While handling event:" + ], + "start_col": 23, + "start_line": 3 + } + }, + "391": { + "accessible_scopes": [ + "openzeppelin.token.erc20.library", + "openzeppelin.token.erc20.library.Approval", + "openzeppelin.token.erc20.library.Approval.emit" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 32, + "end_line": 3, + "input_file": { + "filename": "autogen/starknet/event/Approval/8220fde17ca5479f12ae71a8036f4d354fe722f2c036da610b53511924e4ee84.cairo" + }, + "parent_location": [ + { + "end_col": 14, + "end_line": 24, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc20/library.cairo" + }, + "start_col": 6, + "start_line": 24 + }, + "While handling event:" + ], + "start_col": 1, + "start_line": 3 + } + }, + "392": { + "accessible_scopes": [ + "openzeppelin.token.erc20.library", + "openzeppelin.token.erc20.library.Approval", + "openzeppelin.token.erc20.library.Approval.emit" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 40, + "end_line": 4, + "input_file": { + "filename": "autogen/starknet/event/Approval/8220fde17ca5479f12ae71a8036f4d354fe722f2c036da610b53511924e4ee84.cairo" + }, + "parent_location": [ + { + "end_col": 14, + "end_line": 24, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc20/library.cairo" + }, + "start_col": 6, + "start_line": 24 + }, + "While handling event:" + ], + "start_col": 33, + "start_line": 4 + } + }, + "394": { + "accessible_scopes": [ + "openzeppelin.token.erc20.library", + "openzeppelin.token.erc20.library.Approval", + "openzeppelin.token.erc20.library.Approval.emit" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 29, + "end_line": 4, + "input_file": { + "filename": "autogen/starknet/event/Approval/8220fde17ca5479f12ae71a8036f4d354fe722f2c036da610b53511924e4ee84.cairo" + }, + "parent_location": [ + { + "end_col": 14, + "end_line": 24, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc20/library.cairo" + }, + "start_col": 6, + "start_line": 24 + }, + "While handling event:" + ], + "start_col": 6, + "start_line": 4 + } + }, + "395": { + "accessible_scopes": [ + "openzeppelin.token.erc20.library", + "openzeppelin.token.erc20.library.Approval", + "openzeppelin.token.erc20.library.Approval.emit" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 33, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/arg_processor/7e247556a8b9bc505c1e503bda1dbcb424caa8925f45ae18cdde008e8b84b376.cairo" + }, + "parent_location": [ + { + "end_col": 20, + "end_line": 24, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc20/library.cairo" + }, + "start_col": 15, + "start_line": 24 + }, + "While handling calldata argument 'owner'" + ], + "start_col": 1, + "start_line": 1 + } + }, + "396": { + "accessible_scopes": [ + "openzeppelin.token.erc20.library", + "openzeppelin.token.erc20.library.Approval", + "openzeppelin.token.erc20.library.Approval.emit" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 35, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/arg_processor/86b8ce991898641b73ad3eb5d907f86c73139c426526138c35901b17a2d6334d.cairo" + }, + "parent_location": [ + { + "end_col": 35, + "end_line": 24, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc20/library.cairo" + }, + "start_col": 28, + "start_line": 24 + }, + "While handling calldata argument 'spender'" + ], + "start_col": 1, + "start_line": 1 + } + }, + "397": { + "accessible_scopes": [ + "openzeppelin.token.erc20.library", + "openzeppelin.token.erc20.library.Approval", + "openzeppelin.token.erc20.library.Approval.emit" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 52, + "end_line": 3, + "input_file": { + "filename": "autogen/starknet/arg_processor/969c7e319d46ceb58852dd3a77ddee2803f411e321ab446a930b3d3df7862483.cairo" + }, + "parent_location": [ + { + "end_col": 48, + "end_line": 24, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc20/library.cairo" + }, + "start_col": 43, + "start_line": 24 + }, + "While handling calldata argument 'value'" + ], + "start_col": 1, + "start_line": 3 + } + }, + "398": { + "accessible_scopes": [ + "openzeppelin.token.erc20.library", + "openzeppelin.token.erc20.library.Approval", + "openzeppelin.token.erc20.library.Approval.emit" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 52, + "end_line": 4, + "input_file": { + "filename": "autogen/starknet/arg_processor/969c7e319d46ceb58852dd3a77ddee2803f411e321ab446a930b3d3df7862483.cairo" + }, + "parent_location": [ + { + "end_col": 48, + "end_line": 24, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc20/library.cairo" + }, + "start_col": 43, + "start_line": 24 + }, + "While handling calldata argument 'value'" + ], + "start_col": 1, + "start_line": 4 + } + }, + "399": { + "accessible_scopes": [ + "openzeppelin.token.erc20.library", + "openzeppelin.token.erc20.library.Approval", + "openzeppelin.token.erc20.library.Approval.emit" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 40, + "end_line": 5, + "input_file": { + "filename": "autogen/starknet/arg_processor/969c7e319d46ceb58852dd3a77ddee2803f411e321ab446a930b3d3df7862483.cairo" + }, + "parent_location": [ + { + "end_col": 48, + "end_line": 24, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc20/library.cairo" + }, + "parent_location": [ + { + "end_col": 64, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/event/Approval/6150feec30bd48bfd0f446ed8c155a6d911a2c3fb3ec7a980733900416819259.cairo" + }, + "parent_location": [ + { + "end_col": 14, + "end_line": 24, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc20/library.cairo" + }, + "start_col": 6, + "start_line": 24 + }, + "While handling event:" + ], + "start_col": 50, + "start_line": 1 + }, + "While expanding the reference '__calldata_ptr' in:" + ], + "start_col": 43, + "start_line": 24 + }, + "While handling calldata argument 'value'" + ], + "start_col": 22, + "start_line": 5 + } + }, + "401": { + "accessible_scopes": [ + "openzeppelin.token.erc20.library", + "openzeppelin.token.erc20.library.Approval", + "openzeppelin.token.erc20.library.Approval.emit" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 29, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/event/Approval/a7a8ae41be29ac9f4f6c3b7837c448d787ca051dd1ade98f409e54d33d112504.cairo" + }, + "parent_location": [ + { + "end_col": 14, + "end_line": 24, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc20/library.cairo" + }, + "parent_location": [ + { + "end_col": 35, + "end_line": 390, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/starknet/common/syscalls.cairo" + }, + "parent_location": [ + { + "end_col": 95, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/event/Approval/6150feec30bd48bfd0f446ed8c155a6d911a2c3fb3ec7a980733900416819259.cairo" + }, + "parent_location": [ + { + "end_col": 14, + "end_line": 24, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc20/library.cairo" + }, + "start_col": 6, + "start_line": 24 + }, + "While handling event:" + ], + "start_col": 1, + "start_line": 1 + }, + "While trying to retrieve the implicit argument 'syscall_ptr' in:" + ], + "start_col": 17, + "start_line": 390 + }, + "While expanding the reference 'syscall_ptr' in:" + ], + "start_col": 6, + "start_line": 24 + }, + "While handling event:" + ], + "start_col": 11, + "start_line": 1 + } + }, + "402": { + "accessible_scopes": [ + "openzeppelin.token.erc20.library", + "openzeppelin.token.erc20.library.Approval", + "openzeppelin.token.erc20.library.Approval.emit" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 22, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/event/Approval/6150feec30bd48bfd0f446ed8c155a6d911a2c3fb3ec7a980733900416819259.cairo" + }, + "parent_location": [ + { + "end_col": 14, + "end_line": 24, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc20/library.cairo" + }, + "start_col": 6, + "start_line": 24 + }, + "While handling event:" + ], + "start_col": 21, + "start_line": 1 + } + }, + "404": { + "accessible_scopes": [ + "openzeppelin.token.erc20.library", + "openzeppelin.token.erc20.library.Approval", + "openzeppelin.token.erc20.library.Approval.emit" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 22, + "end_line": 2, + "input_file": { + "filename": "autogen/starknet/event/Approval/8220fde17ca5479f12ae71a8036f4d354fe722f2c036da610b53511924e4ee84.cairo" + }, + "parent_location": [ + { + "end_col": 14, + "end_line": 24, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc20/library.cairo" + }, + "parent_location": [ + { + "end_col": 39, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/event/Approval/6150feec30bd48bfd0f446ed8c155a6d911a2c3fb3ec7a980733900416819259.cairo" + }, + "parent_location": [ + { + "end_col": 14, + "end_line": 24, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc20/library.cairo" + }, + "start_col": 6, + "start_line": 24 + }, + "While handling event:" + ], + "start_col": 29, + "start_line": 1 + }, + "While expanding the reference '__keys_ptr' in:" + ], + "start_col": 6, + "start_line": 24 + }, + "While handling event:" + ], + "start_col": 12, + "start_line": 2 + } + }, + "405": { + "accessible_scopes": [ + "openzeppelin.token.erc20.library", + "openzeppelin.token.erc20.library.Approval", + "openzeppelin.token.erc20.library.Approval.emit" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 77, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/event/Approval/6150feec30bd48bfd0f446ed8c155a6d911a2c3fb3ec7a980733900416819259.cairo" + }, + "parent_location": [ + { + "end_col": 14, + "end_line": 24, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc20/library.cairo" + }, + "start_col": 6, + "start_line": 24 + }, + "While handling event:" + ], + "start_col": 50, + "start_line": 1 + } + }, + "406": { + "accessible_scopes": [ + "openzeppelin.token.erc20.library", + "openzeppelin.token.erc20.library.Approval", + "openzeppelin.token.erc20.library.Approval.emit" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 22, + "end_line": 4, + "input_file": { + "filename": "autogen/starknet/event/Approval/8220fde17ca5479f12ae71a8036f4d354fe722f2c036da610b53511924e4ee84.cairo" + }, + "parent_location": [ + { + "end_col": 14, + "end_line": 24, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc20/library.cairo" + }, + "parent_location": [ + { + "end_col": 94, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/event/Approval/6150feec30bd48bfd0f446ed8c155a6d911a2c3fb3ec7a980733900416819259.cairo" + }, + "parent_location": [ + { + "end_col": 14, + "end_line": 24, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc20/library.cairo" + }, + "start_col": 6, + "start_line": 24 + }, + "While handling event:" + ], + "start_col": 84, + "start_line": 1 + }, + "While expanding the reference '__data_ptr' in:" + ], + "start_col": 6, + "start_line": 24 + }, + "While handling event:" + ], + "start_col": 12, + "start_line": 4 + } + }, + "407": { + "accessible_scopes": [ + "openzeppelin.token.erc20.library", + "openzeppelin.token.erc20.library.Approval", + "openzeppelin.token.erc20.library.Approval.emit" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 95, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/event/Approval/6150feec30bd48bfd0f446ed8c155a6d911a2c3fb3ec7a980733900416819259.cairo" + }, + "parent_location": [ + { + "end_col": 14, + "end_line": 24, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc20/library.cairo" + }, + "start_col": 6, + "start_line": 24 + }, + "While handling event:" + ], + "start_col": 1, + "start_line": 1 + } + }, + "409": { + "accessible_scopes": [ + "openzeppelin.token.erc20.library", + "openzeppelin.token.erc20.library.Approval", + "openzeppelin.token.erc20.library.Approval.emit" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 46, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/event/Approval/a7a8ae41be29ac9f4f6c3b7837c448d787ca051dd1ade98f409e54d33d112504.cairo" + }, + "parent_location": [ + { + "end_col": 14, + "end_line": 24, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc20/library.cairo" + }, + "parent_location": [ + { + "end_col": 46, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/event/Approval/a7a8ae41be29ac9f4f6c3b7837c448d787ca051dd1ade98f409e54d33d112504.cairo" + }, + "parent_location": [ + { + "end_col": 14, + "end_line": 24, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc20/library.cairo" + }, + "parent_location": [ + { + "end_col": 11, + "end_line": 2, + "input_file": { + "filename": "autogen/starknet/event/Approval/6150feec30bd48bfd0f446ed8c155a6d911a2c3fb3ec7a980733900416819259.cairo" + }, + "parent_location": [ + { + "end_col": 14, + "end_line": 24, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc20/library.cairo" + }, + "start_col": 6, + "start_line": 24 + }, + "While handling event:" + ], + "start_col": 1, + "start_line": 2 + }, + "While trying to retrieve the implicit argument 'range_check_ptr' in:" + ], + "start_col": 6, + "start_line": 24 + }, + "While handling event:" + ], + "start_col": 31, + "start_line": 1 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 6, + "start_line": 24 + }, + "While handling event:" + ], + "start_col": 31, + "start_line": 1 + } + }, + "410": { + "accessible_scopes": [ + "openzeppelin.token.erc20.library", + "openzeppelin.token.erc20.library.Approval", + "openzeppelin.token.erc20.library.Approval.emit" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 11, + "end_line": 2, + "input_file": { + "filename": "autogen/starknet/event/Approval/6150feec30bd48bfd0f446ed8c155a6d911a2c3fb3ec7a980733900416819259.cairo" + }, + "parent_location": [ + { + "end_col": 14, + "end_line": 24, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc20/library.cairo" + }, + "start_col": 6, + "start_line": 24 + }, + "While handling event:" + ], + "start_col": 1, + "start_line": 2 + } + }, + "411": { + "accessible_scopes": [ + "openzeppelin.token.erc20.library", + "openzeppelin.token.erc20.library.ERC20_name", + "openzeppelin.token.erc20.library.ERC20_name.addr" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 41, + "end_line": 7, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC20_name/impl.cairo" + }, + "parent_location": [ + { + "end_col": 41, + "end_line": 7, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC20_name/decl.cairo" + }, + "parent_location": [ + { + "end_col": 26, + "end_line": 9, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC20_name/impl.cairo" + }, + "start_col": 9, + "start_line": 9 + }, + "While trying to retrieve the implicit argument 'pedersen_ptr' in:" + ], + "start_col": 15, + "start_line": 7 + }, + "While expanding the reference 'pedersen_ptr' in:" + ], + "start_col": 15, + "start_line": 7 + } + }, + "412": { + "accessible_scopes": [ + "openzeppelin.token.erc20.library", + "openzeppelin.token.erc20.library.ERC20_name", + "openzeppelin.token.erc20.library.ERC20_name.addr" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 58, + "end_line": 7, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC20_name/impl.cairo" + }, + "parent_location": [ + { + "end_col": 58, + "end_line": 7, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC20_name/decl.cairo" + }, + "parent_location": [ + { + "end_col": 26, + "end_line": 9, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC20_name/impl.cairo" + }, + "start_col": 9, + "start_line": 9 + }, + "While trying to retrieve the implicit argument 'range_check_ptr' in:" + ], + "start_col": 43, + "start_line": 7 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 43, + "start_line": 7 + } + }, + "413": { + "accessible_scopes": [ + "openzeppelin.token.erc20.library", + "openzeppelin.token.erc20.library.ERC20_name", + "openzeppelin.token.erc20.library.ERC20_name.addr" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 95, + "end_line": 8, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC20_name/impl.cairo" + }, + "parent_location": [ + { + "end_col": 24, + "end_line": 9, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC20_name/impl.cairo" + }, + "start_col": 21, + "start_line": 9 + }, + "While expanding the reference 'res' in:" + ], + "start_col": 19, + "start_line": 8 + } + }, + "415": { + "accessible_scopes": [ + "openzeppelin.token.erc20.library", + "openzeppelin.token.erc20.library.ERC20_name", + "openzeppelin.token.erc20.library.ERC20_name.addr" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 26, + "end_line": 9, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC20_name/impl.cairo" + }, + "start_col": 9, + "start_line": 9 + } + }, + "416": { + "accessible_scopes": [ + "openzeppelin.token.erc20.library", + "openzeppelin.token.erc20.library.ERC20_name", + "openzeppelin.token.erc20.library.ERC20_name.read" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 61, + "end_line": 12, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC20_name/impl.cairo" + }, + "parent_location": [ + { + "end_col": 41, + "end_line": 7, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC20_name/decl.cairo" + }, + "parent_location": [ + { + "end_col": 36, + "end_line": 13, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC20_name/impl.cairo" + }, + "start_col": 30, + "start_line": 13 + }, + "While trying to retrieve the implicit argument 'pedersen_ptr' in:" + ], + "start_col": 15, + "start_line": 7 + }, + "While expanding the reference 'pedersen_ptr' in:" + ], + "start_col": 35, + "start_line": 12 + } + }, + "417": { + "accessible_scopes": [ + "openzeppelin.token.erc20.library", + "openzeppelin.token.erc20.library.ERC20_name", + "openzeppelin.token.erc20.library.ERC20_name.read" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 78, + "end_line": 12, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC20_name/impl.cairo" + }, + "parent_location": [ + { + "end_col": 58, + "end_line": 7, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC20_name/decl.cairo" + }, + "parent_location": [ + { + "end_col": 36, + "end_line": 13, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC20_name/impl.cairo" + }, + "start_col": 30, + "start_line": 13 + }, + "While trying to retrieve the implicit argument 'range_check_ptr' in:" + ], + "start_col": 43, + "start_line": 7 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 63, + "start_line": 12 + } + }, + "418": { + "accessible_scopes": [ + "openzeppelin.token.erc20.library", + "openzeppelin.token.erc20.library.ERC20_name", + "openzeppelin.token.erc20.library.ERC20_name.read" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 36, + "end_line": 13, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC20_name/impl.cairo" + }, + "start_col": 30, + "start_line": 13 + } + }, + "420": { + "accessible_scopes": [ + "openzeppelin.token.erc20.library", + "openzeppelin.token.erc20.library.ERC20_name", + "openzeppelin.token.erc20.library.ERC20_name.read" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 33, + "end_line": 12, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC20_name/impl.cairo" + }, + "parent_location": [ + { + "end_col": 37, + "end_line": 352, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/starknet/common/syscalls.cairo" + }, + "parent_location": [ + { + "end_col": 75, + "end_line": 14, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC20_name/impl.cairo" + }, + "start_col": 37, + "start_line": 14 + }, + "While trying to retrieve the implicit argument 'syscall_ptr' in:" + ], + "start_col": 19, + "start_line": 352 + }, + "While expanding the reference 'syscall_ptr' in:" + ], + "start_col": 15, + "start_line": 12 + } + }, + "421": { + "accessible_scopes": [ + "openzeppelin.token.erc20.library", + "openzeppelin.token.erc20.library.ERC20_name", + "openzeppelin.token.erc20.library.ERC20_name.read" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 26, + "end_line": 13, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC20_name/impl.cairo" + }, + "parent_location": [ + { + "end_col": 70, + "end_line": 14, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC20_name/impl.cairo" + }, + "start_col": 58, + "start_line": 14 + }, + "While expanding the reference 'storage_addr' in:" + ], + "start_col": 14, + "start_line": 13 + } + }, + "422": { + "accessible_scopes": [ + "openzeppelin.token.erc20.library", + "openzeppelin.token.erc20.library.ERC20_name", + "openzeppelin.token.erc20.library.ERC20_name.read" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 75, + "end_line": 14, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC20_name/impl.cairo" + }, + "start_col": 37, + "start_line": 14 + } + }, + "424": { + "accessible_scopes": [ + "openzeppelin.token.erc20.library", + "openzeppelin.token.erc20.library.ERC20_name", + "openzeppelin.token.erc20.library.ERC20_name.read" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 37, + "end_line": 352, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/starknet/common/syscalls.cairo" + }, + "parent_location": [ + { + "end_col": 75, + "end_line": 14, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC20_name/impl.cairo" + }, + "parent_location": [ + { + "end_col": 42, + "end_line": 16, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC20_name/impl.cairo" + }, + "start_col": 31, + "start_line": 16 + }, + "While expanding the reference 'syscall_ptr' in:" + ], + "start_col": 37, + "start_line": 14 + }, + "While trying to update the implicit return value 'syscall_ptr' in:" + ], + "start_col": 19, + "start_line": 352 + } + }, + "425": { + "accessible_scopes": [ + "openzeppelin.token.erc20.library", + "openzeppelin.token.erc20.library.ERC20_name", + "openzeppelin.token.erc20.library.ERC20_name.read" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 41, + "end_line": 7, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC20_name/decl.cairo" + }, + "parent_location": [ + { + "end_col": 36, + "end_line": 13, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC20_name/impl.cairo" + }, + "parent_location": [ + { + "end_col": 44, + "end_line": 17, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC20_name/impl.cairo" + }, + "start_col": 32, + "start_line": 17 + }, + "While expanding the reference 'pedersen_ptr' in:" + ], + "start_col": 30, + "start_line": 13 + }, + "While trying to update the implicit return value 'pedersen_ptr' in:" + ], + "start_col": 15, + "start_line": 7 + } + }, + "426": { + "accessible_scopes": [ + "openzeppelin.token.erc20.library", + "openzeppelin.token.erc20.library.ERC20_name", + "openzeppelin.token.erc20.library.ERC20_name.read" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 58, + "end_line": 7, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC20_name/decl.cairo" + }, + "parent_location": [ + { + "end_col": 36, + "end_line": 13, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC20_name/impl.cairo" + }, + "parent_location": [ + { + "end_col": 50, + "end_line": 18, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC20_name/impl.cairo" + }, + "start_col": 35, + "start_line": 18 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 30, + "start_line": 13 + }, + "While trying to update the implicit return value 'range_check_ptr' in:" + ], + "start_col": 43, + "start_line": 7 + } + }, + "427": { + "accessible_scopes": [ + "openzeppelin.token.erc20.library", + "openzeppelin.token.erc20.library.ERC20_name", + "openzeppelin.token.erc20.library.ERC20_name.read" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 33, + "end_line": 14, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC20_name/impl.cairo" + }, + "parent_location": [ + { + "end_col": 64, + "end_line": 19, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC20_name/impl.cairo" + }, + "start_col": 45, + "start_line": 19 + }, + "While expanding the reference '__storage_var_temp0' in:" + ], + "start_col": 14, + "start_line": 14 + } + }, + "428": { + "accessible_scopes": [ + "openzeppelin.token.erc20.library", + "openzeppelin.token.erc20.library.ERC20_name", + "openzeppelin.token.erc20.library.ERC20_name.read" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 55, + "end_line": 20, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC20_name/impl.cairo" + }, + "start_col": 9, + "start_line": 20 + } + }, + "429": { + "accessible_scopes": [ + "openzeppelin.token.erc20.library", + "openzeppelin.token.erc20.library.ERC20_name", + "openzeppelin.token.erc20.library.ERC20_name.write" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 62, + "end_line": 23, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC20_name/impl.cairo" + }, + "parent_location": [ + { + "end_col": 41, + "end_line": 7, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC20_name/decl.cairo" + }, + "parent_location": [ + { + "end_col": 36, + "end_line": 24, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC20_name/impl.cairo" + }, + "start_col": 30, + "start_line": 24 + }, + "While trying to retrieve the implicit argument 'pedersen_ptr' in:" + ], + "start_col": 15, + "start_line": 7 + }, + "While expanding the reference 'pedersen_ptr' in:" + ], + "start_col": 36, + "start_line": 23 + } + }, + "430": { + "accessible_scopes": [ + "openzeppelin.token.erc20.library", + "openzeppelin.token.erc20.library.ERC20_name", + "openzeppelin.token.erc20.library.ERC20_name.write" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 79, + "end_line": 23, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC20_name/impl.cairo" + }, + "parent_location": [ + { + "end_col": 58, + "end_line": 7, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC20_name/decl.cairo" + }, + "parent_location": [ + { + "end_col": 36, + "end_line": 24, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC20_name/impl.cairo" + }, + "start_col": 30, + "start_line": 24 + }, + "While trying to retrieve the implicit argument 'range_check_ptr' in:" + ], + "start_col": 43, + "start_line": 7 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 64, + "start_line": 23 + } + }, + "431": { + "accessible_scopes": [ + "openzeppelin.token.erc20.library", + "openzeppelin.token.erc20.library.ERC20_name", + "openzeppelin.token.erc20.library.ERC20_name.write" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 36, + "end_line": 24, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC20_name/impl.cairo" + }, + "start_col": 30, + "start_line": 24 + } + }, + "433": { + "accessible_scopes": [ + "openzeppelin.token.erc20.library", + "openzeppelin.token.erc20.library.ERC20_name", + "openzeppelin.token.erc20.library.ERC20_name.write" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 34, + "end_line": 23, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC20_name/impl.cairo" + }, + "parent_location": [ + { + "end_col": 38, + "end_line": 370, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/starknet/common/syscalls.cairo" + }, + "parent_location": [ + { + "end_col": 80, + "end_line": 25, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC20_name/impl.cairo" + }, + "start_col": 9, + "start_line": 25 + }, + "While trying to retrieve the implicit argument 'syscall_ptr' in:" + ], + "start_col": 20, + "start_line": 370 + }, + "While expanding the reference 'syscall_ptr' in:" + ], + "start_col": 16, + "start_line": 23 + } + }, + "434": { + "accessible_scopes": [ + "openzeppelin.token.erc20.library", + "openzeppelin.token.erc20.library.ERC20_name", + "openzeppelin.token.erc20.library.ERC20_name.write" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 26, + "end_line": 24, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC20_name/impl.cairo" + }, + "parent_location": [ + { + "end_col": 43, + "end_line": 25, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC20_name/impl.cairo" + }, + "start_col": 31, + "start_line": 25 + }, + "While expanding the reference 'storage_addr' in:" + ], + "start_col": 14, + "start_line": 24 + } + }, + "435": { + "accessible_scopes": [ + "openzeppelin.token.erc20.library", + "openzeppelin.token.erc20.library.ERC20_name", + "openzeppelin.token.erc20.library.ERC20_name.write" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 79, + "end_line": 25, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC20_name/impl.cairo" + }, + "start_col": 55, + "start_line": 25 + } + }, + "436": { + "accessible_scopes": [ + "openzeppelin.token.erc20.library", + "openzeppelin.token.erc20.library.ERC20_name", + "openzeppelin.token.erc20.library.ERC20_name.write" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 80, + "end_line": 25, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC20_name/impl.cairo" + }, + "start_col": 9, + "start_line": 25 + } + }, + "438": { + "accessible_scopes": [ + "openzeppelin.token.erc20.library", + "openzeppelin.token.erc20.library.ERC20_name", + "openzeppelin.token.erc20.library.ERC20_name.write" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 41, + "end_line": 7, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC20_name/decl.cairo" + }, + "parent_location": [ + { + "end_col": 36, + "end_line": 24, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC20_name/impl.cairo" + }, + "parent_location": [ + { + "end_col": 62, + "end_line": 19, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC20_name/decl.cairo" + }, + "parent_location": [ + { + "end_col": 19, + "end_line": 26, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC20_name/impl.cairo" + }, + "start_col": 9, + "start_line": 26 + }, + "While trying to retrieve the implicit argument 'pedersen_ptr' in:" + ], + "start_col": 36, + "start_line": 19 + }, + "While expanding the reference 'pedersen_ptr' in:" + ], + "start_col": 30, + "start_line": 24 + }, + "While trying to update the implicit return value 'pedersen_ptr' in:" + ], + "start_col": 15, + "start_line": 7 + } + }, + "439": { + "accessible_scopes": [ + "openzeppelin.token.erc20.library", + "openzeppelin.token.erc20.library.ERC20_name", + "openzeppelin.token.erc20.library.ERC20_name.write" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 58, + "end_line": 7, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC20_name/decl.cairo" + }, + "parent_location": [ + { + "end_col": 36, + "end_line": 24, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC20_name/impl.cairo" + }, + "parent_location": [ + { + "end_col": 79, + "end_line": 19, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC20_name/decl.cairo" + }, + "parent_location": [ + { + "end_col": 19, + "end_line": 26, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC20_name/impl.cairo" + }, + "start_col": 9, + "start_line": 26 + }, + "While trying to retrieve the implicit argument 'range_check_ptr' in:" + ], + "start_col": 64, + "start_line": 19 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 30, + "start_line": 24 + }, + "While trying to update the implicit return value 'range_check_ptr' in:" + ], + "start_col": 43, + "start_line": 7 + } + }, + "440": { + "accessible_scopes": [ + "openzeppelin.token.erc20.library", + "openzeppelin.token.erc20.library.ERC20_name", + "openzeppelin.token.erc20.library.ERC20_name.write" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 19, + "end_line": 26, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC20_name/impl.cairo" + }, + "start_col": 9, + "start_line": 26 + } + }, + "441": { + "accessible_scopes": [ + "openzeppelin.token.erc20.library", + "openzeppelin.token.erc20.library.ERC20_symbol", + "openzeppelin.token.erc20.library.ERC20_symbol.addr" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 41, + "end_line": 7, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC20_symbol/impl.cairo" + }, + "parent_location": [ + { + "end_col": 41, + "end_line": 7, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC20_symbol/decl.cairo" + }, + "parent_location": [ + { + "end_col": 26, + "end_line": 9, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC20_symbol/impl.cairo" + }, + "start_col": 9, + "start_line": 9 + }, + "While trying to retrieve the implicit argument 'pedersen_ptr' in:" + ], + "start_col": 15, + "start_line": 7 + }, + "While expanding the reference 'pedersen_ptr' in:" + ], + "start_col": 15, + "start_line": 7 + } + }, + "442": { + "accessible_scopes": [ + "openzeppelin.token.erc20.library", + "openzeppelin.token.erc20.library.ERC20_symbol", + "openzeppelin.token.erc20.library.ERC20_symbol.addr" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 58, + "end_line": 7, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC20_symbol/impl.cairo" + }, + "parent_location": [ + { + "end_col": 58, + "end_line": 7, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC20_symbol/decl.cairo" + }, + "parent_location": [ + { + "end_col": 26, + "end_line": 9, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC20_symbol/impl.cairo" + }, + "start_col": 9, + "start_line": 9 + }, + "While trying to retrieve the implicit argument 'range_check_ptr' in:" + ], + "start_col": 43, + "start_line": 7 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 43, + "start_line": 7 + } + }, + "443": { + "accessible_scopes": [ + "openzeppelin.token.erc20.library", + "openzeppelin.token.erc20.library.ERC20_symbol", + "openzeppelin.token.erc20.library.ERC20_symbol.addr" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 94, + "end_line": 8, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC20_symbol/impl.cairo" + }, + "parent_location": [ + { + "end_col": 24, + "end_line": 9, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC20_symbol/impl.cairo" + }, + "start_col": 21, + "start_line": 9 + }, + "While expanding the reference 'res' in:" + ], + "start_col": 19, + "start_line": 8 + } + }, + "445": { + "accessible_scopes": [ + "openzeppelin.token.erc20.library", + "openzeppelin.token.erc20.library.ERC20_symbol", + "openzeppelin.token.erc20.library.ERC20_symbol.addr" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 26, + "end_line": 9, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC20_symbol/impl.cairo" + }, + "start_col": 9, + "start_line": 9 + } + }, + "446": { + "accessible_scopes": [ + "openzeppelin.token.erc20.library", + "openzeppelin.token.erc20.library.ERC20_symbol", + "openzeppelin.token.erc20.library.ERC20_symbol.read" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 61, + "end_line": 12, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC20_symbol/impl.cairo" + }, + "parent_location": [ + { + "end_col": 41, + "end_line": 7, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC20_symbol/decl.cairo" + }, + "parent_location": [ + { + "end_col": 36, + "end_line": 13, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC20_symbol/impl.cairo" + }, + "start_col": 30, + "start_line": 13 + }, + "While trying to retrieve the implicit argument 'pedersen_ptr' in:" + ], + "start_col": 15, + "start_line": 7 + }, + "While expanding the reference 'pedersen_ptr' in:" + ], + "start_col": 35, + "start_line": 12 + } + }, + "447": { + "accessible_scopes": [ + "openzeppelin.token.erc20.library", + "openzeppelin.token.erc20.library.ERC20_symbol", + "openzeppelin.token.erc20.library.ERC20_symbol.read" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 78, + "end_line": 12, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC20_symbol/impl.cairo" + }, + "parent_location": [ + { + "end_col": 58, + "end_line": 7, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC20_symbol/decl.cairo" + }, + "parent_location": [ + { + "end_col": 36, + "end_line": 13, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC20_symbol/impl.cairo" + }, + "start_col": 30, + "start_line": 13 + }, + "While trying to retrieve the implicit argument 'range_check_ptr' in:" + ], + "start_col": 43, + "start_line": 7 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 63, + "start_line": 12 + } + }, + "448": { + "accessible_scopes": [ + "openzeppelin.token.erc20.library", + "openzeppelin.token.erc20.library.ERC20_symbol", + "openzeppelin.token.erc20.library.ERC20_symbol.read" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 36, + "end_line": 13, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC20_symbol/impl.cairo" + }, + "start_col": 30, + "start_line": 13 + } + }, + "450": { + "accessible_scopes": [ + "openzeppelin.token.erc20.library", + "openzeppelin.token.erc20.library.ERC20_symbol", + "openzeppelin.token.erc20.library.ERC20_symbol.read" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 33, + "end_line": 12, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC20_symbol/impl.cairo" + }, + "parent_location": [ + { + "end_col": 37, + "end_line": 352, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/starknet/common/syscalls.cairo" + }, + "parent_location": [ + { + "end_col": 75, + "end_line": 14, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC20_symbol/impl.cairo" + }, + "start_col": 37, + "start_line": 14 + }, + "While trying to retrieve the implicit argument 'syscall_ptr' in:" + ], + "start_col": 19, + "start_line": 352 + }, + "While expanding the reference 'syscall_ptr' in:" + ], + "start_col": 15, + "start_line": 12 + } + }, + "451": { + "accessible_scopes": [ + "openzeppelin.token.erc20.library", + "openzeppelin.token.erc20.library.ERC20_symbol", + "openzeppelin.token.erc20.library.ERC20_symbol.read" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 26, + "end_line": 13, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC20_symbol/impl.cairo" + }, + "parent_location": [ + { + "end_col": 70, + "end_line": 14, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC20_symbol/impl.cairo" + }, + "start_col": 58, + "start_line": 14 + }, + "While expanding the reference 'storage_addr' in:" + ], + "start_col": 14, + "start_line": 13 + } + }, + "452": { + "accessible_scopes": [ + "openzeppelin.token.erc20.library", + "openzeppelin.token.erc20.library.ERC20_symbol", + "openzeppelin.token.erc20.library.ERC20_symbol.read" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 75, + "end_line": 14, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC20_symbol/impl.cairo" + }, + "start_col": 37, + "start_line": 14 + } + }, + "454": { + "accessible_scopes": [ + "openzeppelin.token.erc20.library", + "openzeppelin.token.erc20.library.ERC20_symbol", + "openzeppelin.token.erc20.library.ERC20_symbol.read" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 37, + "end_line": 352, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/starknet/common/syscalls.cairo" + }, + "parent_location": [ + { + "end_col": 75, + "end_line": 14, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC20_symbol/impl.cairo" + }, + "parent_location": [ + { + "end_col": 42, + "end_line": 16, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC20_symbol/impl.cairo" + }, + "start_col": 31, + "start_line": 16 + }, + "While expanding the reference 'syscall_ptr' in:" + ], + "start_col": 37, + "start_line": 14 + }, + "While trying to update the implicit return value 'syscall_ptr' in:" + ], + "start_col": 19, + "start_line": 352 + } + }, + "455": { + "accessible_scopes": [ + "openzeppelin.token.erc20.library", + "openzeppelin.token.erc20.library.ERC20_symbol", + "openzeppelin.token.erc20.library.ERC20_symbol.read" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 41, + "end_line": 7, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC20_symbol/decl.cairo" + }, + "parent_location": [ + { + "end_col": 36, + "end_line": 13, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC20_symbol/impl.cairo" + }, + "parent_location": [ + { + "end_col": 44, + "end_line": 17, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC20_symbol/impl.cairo" + }, + "start_col": 32, + "start_line": 17 + }, + "While expanding the reference 'pedersen_ptr' in:" + ], + "start_col": 30, + "start_line": 13 + }, + "While trying to update the implicit return value 'pedersen_ptr' in:" + ], + "start_col": 15, + "start_line": 7 + } + }, + "456": { + "accessible_scopes": [ + "openzeppelin.token.erc20.library", + "openzeppelin.token.erc20.library.ERC20_symbol", + "openzeppelin.token.erc20.library.ERC20_symbol.read" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 58, + "end_line": 7, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC20_symbol/decl.cairo" + }, + "parent_location": [ + { + "end_col": 36, + "end_line": 13, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC20_symbol/impl.cairo" + }, + "parent_location": [ + { + "end_col": 50, + "end_line": 18, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC20_symbol/impl.cairo" + }, + "start_col": 35, + "start_line": 18 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 30, + "start_line": 13 + }, + "While trying to update the implicit return value 'range_check_ptr' in:" + ], + "start_col": 43, + "start_line": 7 + } + }, + "457": { + "accessible_scopes": [ + "openzeppelin.token.erc20.library", + "openzeppelin.token.erc20.library.ERC20_symbol", + "openzeppelin.token.erc20.library.ERC20_symbol.read" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 33, + "end_line": 14, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC20_symbol/impl.cairo" + }, + "parent_location": [ + { + "end_col": 64, + "end_line": 19, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC20_symbol/impl.cairo" + }, + "start_col": 45, + "start_line": 19 + }, + "While expanding the reference '__storage_var_temp0' in:" + ], + "start_col": 14, + "start_line": 14 + } + }, + "458": { + "accessible_scopes": [ + "openzeppelin.token.erc20.library", + "openzeppelin.token.erc20.library.ERC20_symbol", + "openzeppelin.token.erc20.library.ERC20_symbol.read" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 55, + "end_line": 20, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC20_symbol/impl.cairo" + }, + "start_col": 9, + "start_line": 20 + } + }, + "459": { + "accessible_scopes": [ + "openzeppelin.token.erc20.library", + "openzeppelin.token.erc20.library.ERC20_symbol", + "openzeppelin.token.erc20.library.ERC20_symbol.write" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 62, + "end_line": 23, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC20_symbol/impl.cairo" + }, + "parent_location": [ + { + "end_col": 41, + "end_line": 7, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC20_symbol/decl.cairo" + }, + "parent_location": [ + { + "end_col": 36, + "end_line": 24, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC20_symbol/impl.cairo" + }, + "start_col": 30, + "start_line": 24 + }, + "While trying to retrieve the implicit argument 'pedersen_ptr' in:" + ], + "start_col": 15, + "start_line": 7 + }, + "While expanding the reference 'pedersen_ptr' in:" + ], + "start_col": 36, + "start_line": 23 + } + }, + "460": { + "accessible_scopes": [ + "openzeppelin.token.erc20.library", + "openzeppelin.token.erc20.library.ERC20_symbol", + "openzeppelin.token.erc20.library.ERC20_symbol.write" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 79, + "end_line": 23, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC20_symbol/impl.cairo" + }, + "parent_location": [ + { + "end_col": 58, + "end_line": 7, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC20_symbol/decl.cairo" + }, + "parent_location": [ + { + "end_col": 36, + "end_line": 24, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC20_symbol/impl.cairo" + }, + "start_col": 30, + "start_line": 24 + }, + "While trying to retrieve the implicit argument 'range_check_ptr' in:" + ], + "start_col": 43, + "start_line": 7 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 64, + "start_line": 23 + } + }, + "461": { + "accessible_scopes": [ + "openzeppelin.token.erc20.library", + "openzeppelin.token.erc20.library.ERC20_symbol", + "openzeppelin.token.erc20.library.ERC20_symbol.write" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 36, + "end_line": 24, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC20_symbol/impl.cairo" + }, + "start_col": 30, + "start_line": 24 + } + }, + "463": { + "accessible_scopes": [ + "openzeppelin.token.erc20.library", + "openzeppelin.token.erc20.library.ERC20_symbol", + "openzeppelin.token.erc20.library.ERC20_symbol.write" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 34, + "end_line": 23, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC20_symbol/impl.cairo" + }, + "parent_location": [ + { + "end_col": 38, + "end_line": 370, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/starknet/common/syscalls.cairo" + }, + "parent_location": [ + { + "end_col": 80, + "end_line": 25, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC20_symbol/impl.cairo" + }, + "start_col": 9, + "start_line": 25 + }, + "While trying to retrieve the implicit argument 'syscall_ptr' in:" + ], + "start_col": 20, + "start_line": 370 + }, + "While expanding the reference 'syscall_ptr' in:" + ], + "start_col": 16, + "start_line": 23 + } + }, + "464": { + "accessible_scopes": [ + "openzeppelin.token.erc20.library", + "openzeppelin.token.erc20.library.ERC20_symbol", + "openzeppelin.token.erc20.library.ERC20_symbol.write" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 26, + "end_line": 24, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC20_symbol/impl.cairo" + }, + "parent_location": [ + { + "end_col": 43, + "end_line": 25, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC20_symbol/impl.cairo" + }, + "start_col": 31, + "start_line": 25 + }, + "While expanding the reference 'storage_addr' in:" + ], + "start_col": 14, + "start_line": 24 + } + }, + "465": { + "accessible_scopes": [ + "openzeppelin.token.erc20.library", + "openzeppelin.token.erc20.library.ERC20_symbol", + "openzeppelin.token.erc20.library.ERC20_symbol.write" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 79, + "end_line": 25, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC20_symbol/impl.cairo" + }, + "start_col": 55, + "start_line": 25 + } + }, + "466": { + "accessible_scopes": [ + "openzeppelin.token.erc20.library", + "openzeppelin.token.erc20.library.ERC20_symbol", + "openzeppelin.token.erc20.library.ERC20_symbol.write" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 80, + "end_line": 25, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC20_symbol/impl.cairo" + }, + "start_col": 9, + "start_line": 25 + } + }, + "468": { + "accessible_scopes": [ + "openzeppelin.token.erc20.library", + "openzeppelin.token.erc20.library.ERC20_symbol", + "openzeppelin.token.erc20.library.ERC20_symbol.write" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 41, + "end_line": 7, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC20_symbol/decl.cairo" + }, + "parent_location": [ + { + "end_col": 36, + "end_line": 24, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC20_symbol/impl.cairo" + }, + "parent_location": [ + { + "end_col": 62, + "end_line": 19, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC20_symbol/decl.cairo" + }, + "parent_location": [ + { + "end_col": 19, + "end_line": 26, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC20_symbol/impl.cairo" + }, + "start_col": 9, + "start_line": 26 + }, + "While trying to retrieve the implicit argument 'pedersen_ptr' in:" + ], + "start_col": 36, + "start_line": 19 + }, + "While expanding the reference 'pedersen_ptr' in:" + ], + "start_col": 30, + "start_line": 24 + }, + "While trying to update the implicit return value 'pedersen_ptr' in:" + ], + "start_col": 15, + "start_line": 7 + } + }, + "469": { + "accessible_scopes": [ + "openzeppelin.token.erc20.library", + "openzeppelin.token.erc20.library.ERC20_symbol", + "openzeppelin.token.erc20.library.ERC20_symbol.write" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 58, + "end_line": 7, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC20_symbol/decl.cairo" + }, + "parent_location": [ + { + "end_col": 36, + "end_line": 24, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC20_symbol/impl.cairo" + }, + "parent_location": [ + { + "end_col": 79, + "end_line": 19, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC20_symbol/decl.cairo" + }, + "parent_location": [ + { + "end_col": 19, + "end_line": 26, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC20_symbol/impl.cairo" + }, + "start_col": 9, + "start_line": 26 + }, + "While trying to retrieve the implicit argument 'range_check_ptr' in:" + ], + "start_col": 64, + "start_line": 19 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 30, + "start_line": 24 + }, + "While trying to update the implicit return value 'range_check_ptr' in:" + ], + "start_col": 43, + "start_line": 7 + } + }, + "470": { + "accessible_scopes": [ + "openzeppelin.token.erc20.library", + "openzeppelin.token.erc20.library.ERC20_symbol", + "openzeppelin.token.erc20.library.ERC20_symbol.write" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 19, + "end_line": 26, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC20_symbol/impl.cairo" + }, + "start_col": 9, + "start_line": 26 + } + }, + "471": { + "accessible_scopes": [ + "openzeppelin.token.erc20.library", + "openzeppelin.token.erc20.library.ERC20_decimals", + "openzeppelin.token.erc20.library.ERC20_decimals.addr" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 41, + "end_line": 7, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC20_decimals/impl.cairo" + }, + "parent_location": [ + { + "end_col": 41, + "end_line": 7, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC20_decimals/decl.cairo" + }, + "parent_location": [ + { + "end_col": 26, + "end_line": 9, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC20_decimals/impl.cairo" + }, + "start_col": 9, + "start_line": 9 + }, + "While trying to retrieve the implicit argument 'pedersen_ptr' in:" + ], + "start_col": 15, + "start_line": 7 + }, + "While expanding the reference 'pedersen_ptr' in:" + ], + "start_col": 15, + "start_line": 7 + } + }, + "472": { + "accessible_scopes": [ + "openzeppelin.token.erc20.library", + "openzeppelin.token.erc20.library.ERC20_decimals", + "openzeppelin.token.erc20.library.ERC20_decimals.addr" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 58, + "end_line": 7, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC20_decimals/impl.cairo" + }, + "parent_location": [ + { + "end_col": 58, + "end_line": 7, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC20_decimals/decl.cairo" + }, + "parent_location": [ + { + "end_col": 26, + "end_line": 9, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC20_decimals/impl.cairo" + }, + "start_col": 9, + "start_line": 9 + }, + "While trying to retrieve the implicit argument 'range_check_ptr' in:" + ], + "start_col": 43, + "start_line": 7 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 43, + "start_line": 7 + } + }, + "473": { + "accessible_scopes": [ + "openzeppelin.token.erc20.library", + "openzeppelin.token.erc20.library.ERC20_decimals", + "openzeppelin.token.erc20.library.ERC20_decimals.addr" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 94, + "end_line": 8, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC20_decimals/impl.cairo" + }, + "parent_location": [ + { + "end_col": 24, + "end_line": 9, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC20_decimals/impl.cairo" + }, + "start_col": 21, + "start_line": 9 + }, + "While expanding the reference 'res' in:" + ], + "start_col": 19, + "start_line": 8 + } + }, + "475": { + "accessible_scopes": [ + "openzeppelin.token.erc20.library", + "openzeppelin.token.erc20.library.ERC20_decimals", + "openzeppelin.token.erc20.library.ERC20_decimals.addr" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 26, + "end_line": 9, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC20_decimals/impl.cairo" + }, + "start_col": 9, + "start_line": 9 + } + }, + "476": { + "accessible_scopes": [ + "openzeppelin.token.erc20.library", + "openzeppelin.token.erc20.library.ERC20_decimals", + "openzeppelin.token.erc20.library.ERC20_decimals.read" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 61, + "end_line": 12, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC20_decimals/impl.cairo" + }, + "parent_location": [ + { + "end_col": 41, + "end_line": 7, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC20_decimals/decl.cairo" + }, + "parent_location": [ + { + "end_col": 36, + "end_line": 15, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC20_decimals/impl.cairo" + }, + "start_col": 30, + "start_line": 15 + }, + "While trying to retrieve the implicit argument 'pedersen_ptr' in:" + ], + "start_col": 15, + "start_line": 7 + }, + "While expanding the reference 'pedersen_ptr' in:" + ], + "start_col": 35, + "start_line": 12 + } + }, + "477": { + "accessible_scopes": [ + "openzeppelin.token.erc20.library", + "openzeppelin.token.erc20.library.ERC20_decimals", + "openzeppelin.token.erc20.library.ERC20_decimals.read" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 78, + "end_line": 12, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC20_decimals/impl.cairo" + }, + "parent_location": [ + { + "end_col": 58, + "end_line": 7, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC20_decimals/decl.cairo" + }, + "parent_location": [ + { + "end_col": 36, + "end_line": 15, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC20_decimals/impl.cairo" + }, + "start_col": 30, + "start_line": 15 + }, + "While trying to retrieve the implicit argument 'range_check_ptr' in:" + ], + "start_col": 43, + "start_line": 7 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 63, + "start_line": 12 + } + }, + "478": { + "accessible_scopes": [ + "openzeppelin.token.erc20.library", + "openzeppelin.token.erc20.library.ERC20_decimals", + "openzeppelin.token.erc20.library.ERC20_decimals.read" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 36, + "end_line": 15, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC20_decimals/impl.cairo" + }, + "start_col": 30, + "start_line": 15 + } + }, + "480": { + "accessible_scopes": [ + "openzeppelin.token.erc20.library", + "openzeppelin.token.erc20.library.ERC20_decimals", + "openzeppelin.token.erc20.library.ERC20_decimals.read" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 33, + "end_line": 12, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC20_decimals/impl.cairo" + }, + "parent_location": [ + { + "end_col": 37, + "end_line": 352, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/starknet/common/syscalls.cairo" + }, + "parent_location": [ + { + "end_col": 75, + "end_line": 16, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC20_decimals/impl.cairo" + }, + "start_col": 37, + "start_line": 16 + }, + "While trying to retrieve the implicit argument 'syscall_ptr' in:" + ], + "start_col": 19, + "start_line": 352 + }, + "While expanding the reference 'syscall_ptr' in:" + ], + "start_col": 15, + "start_line": 12 + } + }, + "481": { + "accessible_scopes": [ + "openzeppelin.token.erc20.library", + "openzeppelin.token.erc20.library.ERC20_decimals", + "openzeppelin.token.erc20.library.ERC20_decimals.read" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 26, + "end_line": 15, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC20_decimals/impl.cairo" + }, + "parent_location": [ + { + "end_col": 70, + "end_line": 16, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC20_decimals/impl.cairo" + }, + "start_col": 58, + "start_line": 16 + }, + "While expanding the reference 'storage_addr' in:" + ], + "start_col": 14, + "start_line": 15 + } + }, + "482": { + "accessible_scopes": [ + "openzeppelin.token.erc20.library", + "openzeppelin.token.erc20.library.ERC20_decimals", + "openzeppelin.token.erc20.library.ERC20_decimals.read" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 75, + "end_line": 16, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC20_decimals/impl.cairo" + }, + "start_col": 37, + "start_line": 16 + } + }, + "484": { + "accessible_scopes": [ + "openzeppelin.token.erc20.library", + "openzeppelin.token.erc20.library.ERC20_decimals", + "openzeppelin.token.erc20.library.ERC20_decimals.read" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 37, + "end_line": 352, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/starknet/common/syscalls.cairo" + }, + "parent_location": [ + { + "end_col": 75, + "end_line": 16, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC20_decimals/impl.cairo" + }, + "parent_location": [ + { + "end_col": 42, + "end_line": 18, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC20_decimals/impl.cairo" + }, + "start_col": 31, + "start_line": 18 + }, + "While expanding the reference 'syscall_ptr' in:" + ], + "start_col": 37, + "start_line": 16 + }, + "While trying to update the implicit return value 'syscall_ptr' in:" + ], + "start_col": 19, + "start_line": 352 + } + }, + "485": { + "accessible_scopes": [ + "openzeppelin.token.erc20.library", + "openzeppelin.token.erc20.library.ERC20_decimals", + "openzeppelin.token.erc20.library.ERC20_decimals.read" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 41, + "end_line": 7, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC20_decimals/decl.cairo" + }, + "parent_location": [ + { + "end_col": 36, + "end_line": 15, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC20_decimals/impl.cairo" + }, + "parent_location": [ + { + "end_col": 44, + "end_line": 19, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC20_decimals/impl.cairo" + }, + "start_col": 32, + "start_line": 19 + }, + "While expanding the reference 'pedersen_ptr' in:" + ], + "start_col": 30, + "start_line": 15 + }, + "While trying to update the implicit return value 'pedersen_ptr' in:" + ], + "start_col": 15, + "start_line": 7 + } + }, + "486": { + "accessible_scopes": [ + "openzeppelin.token.erc20.library", + "openzeppelin.token.erc20.library.ERC20_decimals", + "openzeppelin.token.erc20.library.ERC20_decimals.read" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 58, + "end_line": 7, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC20_decimals/decl.cairo" + }, + "parent_location": [ + { + "end_col": 36, + "end_line": 15, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC20_decimals/impl.cairo" + }, + "parent_location": [ + { + "end_col": 50, + "end_line": 20, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC20_decimals/impl.cairo" + }, + "start_col": 35, + "start_line": 20 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 30, + "start_line": 15 + }, + "While trying to update the implicit return value 'range_check_ptr' in:" + ], + "start_col": 43, + "start_line": 7 + } + }, + "487": { + "accessible_scopes": [ + "openzeppelin.token.erc20.library", + "openzeppelin.token.erc20.library.ERC20_decimals", + "openzeppelin.token.erc20.library.ERC20_decimals.read" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 33, + "end_line": 16, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC20_decimals/impl.cairo" + }, + "parent_location": [ + { + "end_col": 64, + "end_line": 21, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC20_decimals/impl.cairo" + }, + "start_col": 45, + "start_line": 21 + }, + "While expanding the reference '__storage_var_temp0' in:" + ], + "start_col": 14, + "start_line": 16 + } + }, + "488": { + "accessible_scopes": [ + "openzeppelin.token.erc20.library", + "openzeppelin.token.erc20.library.ERC20_decimals", + "openzeppelin.token.erc20.library.ERC20_decimals.read" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 55, + "end_line": 22, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC20_decimals/impl.cairo" + }, + "start_col": 9, + "start_line": 22 + } + }, + "489": { + "accessible_scopes": [ + "openzeppelin.token.erc20.library", + "openzeppelin.token.erc20.library.ERC20_decimals", + "openzeppelin.token.erc20.library.ERC20_decimals.write" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 62, + "end_line": 25, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC20_decimals/impl.cairo" + }, + "parent_location": [ + { + "end_col": 41, + "end_line": 7, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC20_decimals/decl.cairo" + }, + "parent_location": [ + { + "end_col": 36, + "end_line": 26, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC20_decimals/impl.cairo" + }, + "start_col": 30, + "start_line": 26 + }, + "While trying to retrieve the implicit argument 'pedersen_ptr' in:" + ], + "start_col": 15, + "start_line": 7 + }, + "While expanding the reference 'pedersen_ptr' in:" + ], + "start_col": 36, + "start_line": 25 + } + }, + "490": { + "accessible_scopes": [ + "openzeppelin.token.erc20.library", + "openzeppelin.token.erc20.library.ERC20_decimals", + "openzeppelin.token.erc20.library.ERC20_decimals.write" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 79, + "end_line": 25, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC20_decimals/impl.cairo" + }, + "parent_location": [ + { + "end_col": 58, + "end_line": 7, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC20_decimals/decl.cairo" + }, + "parent_location": [ + { + "end_col": 36, + "end_line": 26, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC20_decimals/impl.cairo" + }, + "start_col": 30, + "start_line": 26 + }, + "While trying to retrieve the implicit argument 'range_check_ptr' in:" + ], + "start_col": 43, + "start_line": 7 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 64, + "start_line": 25 + } + }, + "491": { + "accessible_scopes": [ + "openzeppelin.token.erc20.library", + "openzeppelin.token.erc20.library.ERC20_decimals", + "openzeppelin.token.erc20.library.ERC20_decimals.write" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 36, + "end_line": 26, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC20_decimals/impl.cairo" + }, + "start_col": 30, + "start_line": 26 + } + }, + "493": { + "accessible_scopes": [ + "openzeppelin.token.erc20.library", + "openzeppelin.token.erc20.library.ERC20_decimals", + "openzeppelin.token.erc20.library.ERC20_decimals.write" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 34, + "end_line": 25, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC20_decimals/impl.cairo" + }, + "parent_location": [ + { + "end_col": 38, + "end_line": 370, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/starknet/common/syscalls.cairo" + }, + "parent_location": [ + { + "end_col": 80, + "end_line": 27, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC20_decimals/impl.cairo" + }, + "start_col": 9, + "start_line": 27 + }, + "While trying to retrieve the implicit argument 'syscall_ptr' in:" + ], + "start_col": 20, + "start_line": 370 + }, + "While expanding the reference 'syscall_ptr' in:" + ], + "start_col": 16, + "start_line": 25 + } + }, + "494": { + "accessible_scopes": [ + "openzeppelin.token.erc20.library", + "openzeppelin.token.erc20.library.ERC20_decimals", + "openzeppelin.token.erc20.library.ERC20_decimals.write" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 26, + "end_line": 26, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC20_decimals/impl.cairo" + }, + "parent_location": [ + { + "end_col": 43, + "end_line": 27, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC20_decimals/impl.cairo" + }, + "start_col": 31, + "start_line": 27 + }, + "While expanding the reference 'storage_addr' in:" + ], + "start_col": 14, + "start_line": 26 + } + }, + "495": { + "accessible_scopes": [ + "openzeppelin.token.erc20.library", + "openzeppelin.token.erc20.library.ERC20_decimals", + "openzeppelin.token.erc20.library.ERC20_decimals.write" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 79, + "end_line": 27, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC20_decimals/impl.cairo" + }, + "start_col": 55, + "start_line": 27 + } + }, + "496": { + "accessible_scopes": [ + "openzeppelin.token.erc20.library", + "openzeppelin.token.erc20.library.ERC20_decimals", + "openzeppelin.token.erc20.library.ERC20_decimals.write" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 80, + "end_line": 27, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC20_decimals/impl.cairo" + }, + "start_col": 9, + "start_line": 27 + } + }, + "498": { + "accessible_scopes": [ + "openzeppelin.token.erc20.library", + "openzeppelin.token.erc20.library.ERC20_decimals", + "openzeppelin.token.erc20.library.ERC20_decimals.write" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 41, + "end_line": 7, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC20_decimals/decl.cairo" + }, + "parent_location": [ + { + "end_col": 36, + "end_line": 26, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC20_decimals/impl.cairo" + }, + "parent_location": [ + { + "end_col": 62, + "end_line": 21, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC20_decimals/decl.cairo" + }, + "parent_location": [ + { + "end_col": 19, + "end_line": 28, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC20_decimals/impl.cairo" + }, + "start_col": 9, + "start_line": 28 + }, + "While trying to retrieve the implicit argument 'pedersen_ptr' in:" + ], + "start_col": 36, + "start_line": 21 + }, + "While expanding the reference 'pedersen_ptr' in:" + ], + "start_col": 30, + "start_line": 26 + }, + "While trying to update the implicit return value 'pedersen_ptr' in:" + ], + "start_col": 15, + "start_line": 7 + } + }, + "499": { + "accessible_scopes": [ + "openzeppelin.token.erc20.library", + "openzeppelin.token.erc20.library.ERC20_decimals", + "openzeppelin.token.erc20.library.ERC20_decimals.write" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 58, + "end_line": 7, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC20_decimals/decl.cairo" + }, + "parent_location": [ + { + "end_col": 36, + "end_line": 26, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC20_decimals/impl.cairo" + }, + "parent_location": [ + { + "end_col": 79, + "end_line": 21, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC20_decimals/decl.cairo" + }, + "parent_location": [ + { + "end_col": 19, + "end_line": 28, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC20_decimals/impl.cairo" + }, + "start_col": 9, + "start_line": 28 + }, + "While trying to retrieve the implicit argument 'range_check_ptr' in:" + ], + "start_col": 64, + "start_line": 21 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 30, + "start_line": 26 + }, + "While trying to update the implicit return value 'range_check_ptr' in:" + ], + "start_col": 43, + "start_line": 7 + } + }, + "500": { + "accessible_scopes": [ + "openzeppelin.token.erc20.library", + "openzeppelin.token.erc20.library.ERC20_decimals", + "openzeppelin.token.erc20.library.ERC20_decimals.write" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 19, + "end_line": 28, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC20_decimals/impl.cairo" + }, + "start_col": 9, + "start_line": 28 + } + }, + "501": { + "accessible_scopes": [ + "openzeppelin.token.erc20.library", + "openzeppelin.token.erc20.library.ERC20_total_supply", + "openzeppelin.token.erc20.library.ERC20_total_supply.addr" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 41, + "end_line": 7, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC20_total_supply/impl.cairo" + }, + "parent_location": [ + { + "end_col": 41, + "end_line": 7, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC20_total_supply/decl.cairo" + }, + "parent_location": [ + { + "end_col": 26, + "end_line": 9, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC20_total_supply/impl.cairo" + }, + "start_col": 9, + "start_line": 9 + }, + "While trying to retrieve the implicit argument 'pedersen_ptr' in:" + ], + "start_col": 15, + "start_line": 7 + }, + "While expanding the reference 'pedersen_ptr' in:" + ], + "start_col": 15, + "start_line": 7 + } + }, + "502": { + "accessible_scopes": [ + "openzeppelin.token.erc20.library", + "openzeppelin.token.erc20.library.ERC20_total_supply", + "openzeppelin.token.erc20.library.ERC20_total_supply.addr" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 58, + "end_line": 7, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC20_total_supply/impl.cairo" + }, + "parent_location": [ + { + "end_col": 58, + "end_line": 7, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC20_total_supply/decl.cairo" + }, + "parent_location": [ + { + "end_col": 26, + "end_line": 9, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC20_total_supply/impl.cairo" + }, + "start_col": 9, + "start_line": 9 + }, + "While trying to retrieve the implicit argument 'range_check_ptr' in:" + ], + "start_col": 43, + "start_line": 7 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 43, + "start_line": 7 + } + }, + "503": { + "accessible_scopes": [ + "openzeppelin.token.erc20.library", + "openzeppelin.token.erc20.library.ERC20_total_supply", + "openzeppelin.token.erc20.library.ERC20_total_supply.addr" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 94, + "end_line": 8, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC20_total_supply/impl.cairo" + }, + "parent_location": [ + { + "end_col": 24, + "end_line": 9, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC20_total_supply/impl.cairo" + }, + "start_col": 21, + "start_line": 9 + }, + "While expanding the reference 'res' in:" + ], + "start_col": 19, + "start_line": 8 + } + }, + "505": { + "accessible_scopes": [ + "openzeppelin.token.erc20.library", + "openzeppelin.token.erc20.library.ERC20_total_supply", + "openzeppelin.token.erc20.library.ERC20_total_supply.addr" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 26, + "end_line": 9, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC20_total_supply/impl.cairo" + }, + "start_col": 9, + "start_line": 9 + } + }, + "506": { + "accessible_scopes": [ + "openzeppelin.token.erc20.library", + "openzeppelin.token.erc20.library.ERC20_total_supply", + "openzeppelin.token.erc20.library.ERC20_total_supply.read" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 61, + "end_line": 12, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC20_total_supply/impl.cairo" + }, + "parent_location": [ + { + "end_col": 41, + "end_line": 7, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC20_total_supply/decl.cairo" + }, + "parent_location": [ + { + "end_col": 36, + "end_line": 15, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC20_total_supply/impl.cairo" + }, + "start_col": 30, + "start_line": 15 + }, + "While trying to retrieve the implicit argument 'pedersen_ptr' in:" + ], + "start_col": 15, + "start_line": 7 + }, + "While expanding the reference 'pedersen_ptr' in:" + ], + "start_col": 35, + "start_line": 12 + } + }, + "507": { + "accessible_scopes": [ + "openzeppelin.token.erc20.library", + "openzeppelin.token.erc20.library.ERC20_total_supply", + "openzeppelin.token.erc20.library.ERC20_total_supply.read" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 78, + "end_line": 12, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC20_total_supply/impl.cairo" + }, + "parent_location": [ + { + "end_col": 58, + "end_line": 7, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC20_total_supply/decl.cairo" + }, + "parent_location": [ + { + "end_col": 36, + "end_line": 15, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC20_total_supply/impl.cairo" + }, + "start_col": 30, + "start_line": 15 + }, + "While trying to retrieve the implicit argument 'range_check_ptr' in:" + ], + "start_col": 43, + "start_line": 7 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 63, + "start_line": 12 + } + }, + "508": { + "accessible_scopes": [ + "openzeppelin.token.erc20.library", + "openzeppelin.token.erc20.library.ERC20_total_supply", + "openzeppelin.token.erc20.library.ERC20_total_supply.read" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 36, + "end_line": 15, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC20_total_supply/impl.cairo" + }, + "start_col": 30, + "start_line": 15 + } + }, + "510": { + "accessible_scopes": [ + "openzeppelin.token.erc20.library", + "openzeppelin.token.erc20.library.ERC20_total_supply", + "openzeppelin.token.erc20.library.ERC20_total_supply.read" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 33, + "end_line": 12, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC20_total_supply/impl.cairo" + }, + "parent_location": [ + { + "end_col": 37, + "end_line": 352, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/starknet/common/syscalls.cairo" + }, + "parent_location": [ + { + "end_col": 75, + "end_line": 16, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC20_total_supply/impl.cairo" + }, + "start_col": 37, + "start_line": 16 + }, + "While trying to retrieve the implicit argument 'syscall_ptr' in:" + ], + "start_col": 19, + "start_line": 352 + }, + "While expanding the reference 'syscall_ptr' in:" + ], + "start_col": 15, + "start_line": 12 + } + }, + "511": { + "accessible_scopes": [ + "openzeppelin.token.erc20.library", + "openzeppelin.token.erc20.library.ERC20_total_supply", + "openzeppelin.token.erc20.library.ERC20_total_supply.read" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 26, + "end_line": 15, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC20_total_supply/impl.cairo" + }, + "parent_location": [ + { + "end_col": 70, + "end_line": 16, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC20_total_supply/impl.cairo" + }, + "start_col": 58, + "start_line": 16 + }, + "While expanding the reference 'storage_addr' in:" + ], + "start_col": 14, + "start_line": 15 + } + }, + "512": { + "accessible_scopes": [ + "openzeppelin.token.erc20.library", + "openzeppelin.token.erc20.library.ERC20_total_supply", + "openzeppelin.token.erc20.library.ERC20_total_supply.read" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 75, + "end_line": 16, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC20_total_supply/impl.cairo" + }, + "start_col": 37, + "start_line": 16 + } + }, + "514": { + "accessible_scopes": [ + "openzeppelin.token.erc20.library", + "openzeppelin.token.erc20.library.ERC20_total_supply", + "openzeppelin.token.erc20.library.ERC20_total_supply.read" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 37, + "end_line": 352, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/starknet/common/syscalls.cairo" + }, + "parent_location": [ + { + "end_col": 75, + "end_line": 16, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC20_total_supply/impl.cairo" + }, + "parent_location": [ + { + "end_col": 37, + "end_line": 352, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/starknet/common/syscalls.cairo" + }, + "parent_location": [ + { + "end_col": 75, + "end_line": 17, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC20_total_supply/impl.cairo" + }, + "start_col": 37, + "start_line": 17 + }, + "While trying to retrieve the implicit argument 'syscall_ptr' in:" + ], + "start_col": 19, + "start_line": 352 + }, + "While expanding the reference 'syscall_ptr' in:" + ], + "start_col": 37, + "start_line": 16 + }, + "While trying to update the implicit return value 'syscall_ptr' in:" + ], + "start_col": 19, + "start_line": 352 + } + }, + "515": { + "accessible_scopes": [ + "openzeppelin.token.erc20.library", + "openzeppelin.token.erc20.library.ERC20_total_supply", + "openzeppelin.token.erc20.library.ERC20_total_supply.read" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 74, + "end_line": 17, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC20_total_supply/impl.cairo" + }, + "start_col": 58, + "start_line": 17 + } + }, + "517": { + "accessible_scopes": [ + "openzeppelin.token.erc20.library", + "openzeppelin.token.erc20.library.ERC20_total_supply", + "openzeppelin.token.erc20.library.ERC20_total_supply.read" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 75, + "end_line": 17, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC20_total_supply/impl.cairo" + }, + "start_col": 37, + "start_line": 17 + } + }, + "519": { + "accessible_scopes": [ + "openzeppelin.token.erc20.library", + "openzeppelin.token.erc20.library.ERC20_total_supply", + "openzeppelin.token.erc20.library.ERC20_total_supply.read" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 37, + "end_line": 352, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/starknet/common/syscalls.cairo" + }, + "parent_location": [ + { + "end_col": 75, + "end_line": 17, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC20_total_supply/impl.cairo" + }, + "parent_location": [ + { + "end_col": 42, + "end_line": 19, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC20_total_supply/impl.cairo" + }, + "start_col": 31, + "start_line": 19 + }, + "While expanding the reference 'syscall_ptr' in:" + ], + "start_col": 37, + "start_line": 17 + }, + "While trying to update the implicit return value 'syscall_ptr' in:" + ], + "start_col": 19, + "start_line": 352 + } + }, + "520": { + "accessible_scopes": [ + "openzeppelin.token.erc20.library", + "openzeppelin.token.erc20.library.ERC20_total_supply", + "openzeppelin.token.erc20.library.ERC20_total_supply.read" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 41, + "end_line": 7, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC20_total_supply/decl.cairo" + }, + "parent_location": [ + { + "end_col": 36, + "end_line": 15, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC20_total_supply/impl.cairo" + }, + "parent_location": [ + { + "end_col": 44, + "end_line": 20, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC20_total_supply/impl.cairo" + }, + "start_col": 32, + "start_line": 20 + }, + "While expanding the reference 'pedersen_ptr' in:" + ], + "start_col": 30, + "start_line": 15 + }, + "While trying to update the implicit return value 'pedersen_ptr' in:" + ], + "start_col": 15, + "start_line": 7 + } + }, + "521": { + "accessible_scopes": [ + "openzeppelin.token.erc20.library", + "openzeppelin.token.erc20.library.ERC20_total_supply", + "openzeppelin.token.erc20.library.ERC20_total_supply.read" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 58, + "end_line": 7, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC20_total_supply/decl.cairo" + }, + "parent_location": [ + { + "end_col": 36, + "end_line": 15, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC20_total_supply/impl.cairo" + }, + "parent_location": [ + { + "end_col": 50, + "end_line": 21, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC20_total_supply/impl.cairo" + }, + "start_col": 35, + "start_line": 21 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 30, + "start_line": 15 + }, + "While trying to update the implicit return value 'range_check_ptr' in:" + ], + "start_col": 43, + "start_line": 7 + } + }, + "522": { + "accessible_scopes": [ + "openzeppelin.token.erc20.library", + "openzeppelin.token.erc20.library.ERC20_total_supply", + "openzeppelin.token.erc20.library.ERC20_total_supply.read" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 33, + "end_line": 16, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC20_total_supply/impl.cairo" + }, + "parent_location": [ + { + "end_col": 64, + "end_line": 22, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC20_total_supply/impl.cairo" + }, + "start_col": 45, + "start_line": 22 + }, + "While expanding the reference '__storage_var_temp0' in:" + ], + "start_col": 14, + "start_line": 16 + } + }, + "523": { + "accessible_scopes": [ + "openzeppelin.token.erc20.library", + "openzeppelin.token.erc20.library.ERC20_total_supply", + "openzeppelin.token.erc20.library.ERC20_total_supply.read" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 33, + "end_line": 17, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC20_total_supply/impl.cairo" + }, + "parent_location": [ + { + "end_col": 64, + "end_line": 23, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC20_total_supply/impl.cairo" + }, + "start_col": 45, + "start_line": 23 + }, + "While expanding the reference '__storage_var_temp1' in:" + ], + "start_col": 14, + "start_line": 17 + } + }, + "524": { + "accessible_scopes": [ + "openzeppelin.token.erc20.library", + "openzeppelin.token.erc20.library.ERC20_total_supply", + "openzeppelin.token.erc20.library.ERC20_total_supply.read" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 58, + "end_line": 24, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC20_total_supply/impl.cairo" + }, + "start_col": 9, + "start_line": 24 + } + }, + "525": { + "accessible_scopes": [ + "openzeppelin.token.erc20.library", + "openzeppelin.token.erc20.library.ERC20_total_supply", + "openzeppelin.token.erc20.library.ERC20_total_supply.write" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 62, + "end_line": 27, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC20_total_supply/impl.cairo" + }, + "parent_location": [ + { + "end_col": 41, + "end_line": 7, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC20_total_supply/decl.cairo" + }, + "parent_location": [ + { + "end_col": 36, + "end_line": 28, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC20_total_supply/impl.cairo" + }, + "start_col": 30, + "start_line": 28 + }, + "While trying to retrieve the implicit argument 'pedersen_ptr' in:" + ], + "start_col": 15, + "start_line": 7 + }, + "While expanding the reference 'pedersen_ptr' in:" + ], + "start_col": 36, + "start_line": 27 + } + }, + "526": { + "accessible_scopes": [ + "openzeppelin.token.erc20.library", + "openzeppelin.token.erc20.library.ERC20_total_supply", + "openzeppelin.token.erc20.library.ERC20_total_supply.write" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 79, + "end_line": 27, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC20_total_supply/impl.cairo" + }, + "parent_location": [ + { + "end_col": 58, + "end_line": 7, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC20_total_supply/decl.cairo" + }, + "parent_location": [ + { + "end_col": 36, + "end_line": 28, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC20_total_supply/impl.cairo" + }, + "start_col": 30, + "start_line": 28 + }, + "While trying to retrieve the implicit argument 'range_check_ptr' in:" + ], + "start_col": 43, + "start_line": 7 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 64, + "start_line": 27 + } + }, + "527": { + "accessible_scopes": [ + "openzeppelin.token.erc20.library", + "openzeppelin.token.erc20.library.ERC20_total_supply", + "openzeppelin.token.erc20.library.ERC20_total_supply.write" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 36, + "end_line": 28, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC20_total_supply/impl.cairo" + }, + "start_col": 30, + "start_line": 28 + } + }, + "529": { + "accessible_scopes": [ + "openzeppelin.token.erc20.library", + "openzeppelin.token.erc20.library.ERC20_total_supply", + "openzeppelin.token.erc20.library.ERC20_total_supply.write" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 34, + "end_line": 27, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC20_total_supply/impl.cairo" + }, + "parent_location": [ + { + "end_col": 38, + "end_line": 370, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/starknet/common/syscalls.cairo" + }, + "parent_location": [ + { + "end_col": 80, + "end_line": 29, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC20_total_supply/impl.cairo" + }, + "start_col": 9, + "start_line": 29 + }, + "While trying to retrieve the implicit argument 'syscall_ptr' in:" + ], + "start_col": 20, + "start_line": 370 + }, + "While expanding the reference 'syscall_ptr' in:" + ], + "start_col": 16, + "start_line": 27 + } + }, + "530": { + "accessible_scopes": [ + "openzeppelin.token.erc20.library", + "openzeppelin.token.erc20.library.ERC20_total_supply", + "openzeppelin.token.erc20.library.ERC20_total_supply.write" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 26, + "end_line": 28, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC20_total_supply/impl.cairo" + }, + "parent_location": [ + { + "end_col": 43, + "end_line": 29, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC20_total_supply/impl.cairo" + }, + "start_col": 31, + "start_line": 29 + }, + "While expanding the reference 'storage_addr' in:" + ], + "start_col": 14, + "start_line": 28 + } + }, + "531": { + "accessible_scopes": [ + "openzeppelin.token.erc20.library", + "openzeppelin.token.erc20.library.ERC20_total_supply", + "openzeppelin.token.erc20.library.ERC20_total_supply.write" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 79, + "end_line": 29, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC20_total_supply/impl.cairo" + }, + "start_col": 55, + "start_line": 29 + } + }, + "532": { + "accessible_scopes": [ + "openzeppelin.token.erc20.library", + "openzeppelin.token.erc20.library.ERC20_total_supply", + "openzeppelin.token.erc20.library.ERC20_total_supply.write" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 80, + "end_line": 29, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC20_total_supply/impl.cairo" + }, + "start_col": 9, + "start_line": 29 + } + }, + "534": { + "accessible_scopes": [ + "openzeppelin.token.erc20.library", + "openzeppelin.token.erc20.library.ERC20_total_supply", + "openzeppelin.token.erc20.library.ERC20_total_supply.write" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 47, + "end_line": 30, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC20_total_supply/impl.cairo" + }, + "start_col": 31, + "start_line": 30 + } + }, + "536": { + "accessible_scopes": [ + "openzeppelin.token.erc20.library", + "openzeppelin.token.erc20.library.ERC20_total_supply", + "openzeppelin.token.erc20.library.ERC20_total_supply.write" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 79, + "end_line": 30, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC20_total_supply/impl.cairo" + }, + "start_col": 55, + "start_line": 30 + } + }, + "537": { + "accessible_scopes": [ + "openzeppelin.token.erc20.library", + "openzeppelin.token.erc20.library.ERC20_total_supply", + "openzeppelin.token.erc20.library.ERC20_total_supply.write" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 80, + "end_line": 30, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC20_total_supply/impl.cairo" + }, + "start_col": 9, + "start_line": 30 + } + }, + "539": { + "accessible_scopes": [ + "openzeppelin.token.erc20.library", + "openzeppelin.token.erc20.library.ERC20_total_supply", + "openzeppelin.token.erc20.library.ERC20_total_supply.write" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 41, + "end_line": 7, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC20_total_supply/decl.cairo" + }, + "parent_location": [ + { + "end_col": 36, + "end_line": 28, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC20_total_supply/impl.cairo" + }, + "parent_location": [ + { + "end_col": 62, + "end_line": 21, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC20_total_supply/decl.cairo" + }, + "parent_location": [ + { + "end_col": 19, + "end_line": 31, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC20_total_supply/impl.cairo" + }, + "start_col": 9, + "start_line": 31 + }, + "While trying to retrieve the implicit argument 'pedersen_ptr' in:" + ], + "start_col": 36, + "start_line": 21 + }, + "While expanding the reference 'pedersen_ptr' in:" + ], + "start_col": 30, + "start_line": 28 + }, + "While trying to update the implicit return value 'pedersen_ptr' in:" + ], + "start_col": 15, + "start_line": 7 + } + }, + "540": { + "accessible_scopes": [ + "openzeppelin.token.erc20.library", + "openzeppelin.token.erc20.library.ERC20_total_supply", + "openzeppelin.token.erc20.library.ERC20_total_supply.write" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 58, + "end_line": 7, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC20_total_supply/decl.cairo" + }, + "parent_location": [ + { + "end_col": 36, + "end_line": 28, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC20_total_supply/impl.cairo" + }, + "parent_location": [ + { + "end_col": 79, + "end_line": 21, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC20_total_supply/decl.cairo" + }, + "parent_location": [ + { + "end_col": 19, + "end_line": 31, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC20_total_supply/impl.cairo" + }, + "start_col": 9, + "start_line": 31 + }, + "While trying to retrieve the implicit argument 'range_check_ptr' in:" + ], + "start_col": 64, + "start_line": 21 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 30, + "start_line": 28 + }, + "While trying to update the implicit return value 'range_check_ptr' in:" + ], + "start_col": 43, + "start_line": 7 + } + }, + "541": { + "accessible_scopes": [ + "openzeppelin.token.erc20.library", + "openzeppelin.token.erc20.library.ERC20_total_supply", + "openzeppelin.token.erc20.library.ERC20_total_supply.write" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 19, + "end_line": 31, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC20_total_supply/impl.cairo" + }, + "start_col": 9, + "start_line": 31 + } + }, + "542": { + "accessible_scopes": [ + "openzeppelin.token.erc20.library", + "openzeppelin.token.erc20.library.ERC20_balances", + "openzeppelin.token.erc20.library.ERC20_balances.addr" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 41, + "end_line": 7, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC20_balances/impl.cairo" + }, + "parent_location": [ + { + "end_col": 48, + "end_line": 9, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC20_balances/impl.cairo" + }, + "start_col": 36, + "start_line": 9 + }, + "While expanding the reference 'pedersen_ptr' in:" + ], + "start_col": 15, + "start_line": 7 + } + }, + "543": { + "accessible_scopes": [ + "openzeppelin.token.erc20.library", + "openzeppelin.token.erc20.library.ERC20_balances", + "openzeppelin.token.erc20.library.ERC20_balances.addr" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 95, + "end_line": 8, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC20_balances/impl.cairo" + }, + "parent_location": [ + { + "end_col": 53, + "end_line": 9, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC20_balances/impl.cairo" + }, + "start_col": 50, + "start_line": 9 + }, + "While expanding the reference 'res' in:" + ], + "start_col": 19, + "start_line": 8 + } + }, + "545": { + "accessible_scopes": [ + "openzeppelin.token.erc20.library", + "openzeppelin.token.erc20.library.ERC20_balances", + "openzeppelin.token.erc20.library.ERC20_balances.addr" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 79, + "end_line": 9, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC20_balances/impl.cairo" + }, + "start_col": 55, + "start_line": 9 + } + }, + "546": { + "accessible_scopes": [ + "openzeppelin.token.erc20.library", + "openzeppelin.token.erc20.library.ERC20_balances", + "openzeppelin.token.erc20.library.ERC20_balances.addr" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 80, + "end_line": 9, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC20_balances/impl.cairo" + }, + "start_col": 21, + "start_line": 9 + } + }, + "548": { + "accessible_scopes": [ + "openzeppelin.token.erc20.library", + "openzeppelin.token.erc20.library.ERC20_balances", + "openzeppelin.token.erc20.library.ERC20_balances.addr" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 58, + "end_line": 7, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC20_balances/impl.cairo" + }, + "parent_location": [ + { + "end_col": 39, + "end_line": 12, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/starknet/common/storage.cairo" + }, + "parent_location": [ + { + "end_col": 48, + "end_line": 10, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC20_balances/impl.cairo" + }, + "start_col": 21, + "start_line": 10 + }, + "While trying to retrieve the implicit argument 'range_check_ptr' in:" + ], + "start_col": 24, + "start_line": 12 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 43, + "start_line": 7 + } + }, + "549": { + "accessible_scopes": [ + "openzeppelin.token.erc20.library", + "openzeppelin.token.erc20.library.ERC20_balances", + "openzeppelin.token.erc20.library.ERC20_balances.addr" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 17, + "end_line": 9, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC20_balances/impl.cairo" + }, + "parent_location": [ + { + "end_col": 47, + "end_line": 10, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC20_balances/impl.cairo" + }, + "start_col": 44, + "start_line": 10 + }, + "While expanding the reference 'res' in:" + ], + "start_col": 14, + "start_line": 9 + } + }, + "550": { + "accessible_scopes": [ + "openzeppelin.token.erc20.library", + "openzeppelin.token.erc20.library.ERC20_balances", + "openzeppelin.token.erc20.library.ERC20_balances.addr" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 48, + "end_line": 10, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC20_balances/impl.cairo" + }, + "start_col": 21, + "start_line": 10 + } + }, + "552": { + "accessible_scopes": [ + "openzeppelin.token.erc20.library", + "openzeppelin.token.erc20.library.ERC20_balances", + "openzeppelin.token.erc20.library.ERC20_balances.addr" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 48, + "end_line": 9, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC20_balances/impl.cairo" + }, + "parent_location": [ + { + "end_col": 41, + "end_line": 7, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC20_balances/decl.cairo" + }, + "parent_location": [ + { + "end_col": 26, + "end_line": 11, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC20_balances/impl.cairo" + }, + "start_col": 9, + "start_line": 11 + }, + "While trying to retrieve the implicit argument 'pedersen_ptr' in:" + ], + "start_col": 15, + "start_line": 7 + }, + "While expanding the reference 'pedersen_ptr' in:" + ], + "start_col": 36, + "start_line": 9 + } + }, + "553": { + "accessible_scopes": [ + "openzeppelin.token.erc20.library", + "openzeppelin.token.erc20.library.ERC20_balances", + "openzeppelin.token.erc20.library.ERC20_balances.addr" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 39, + "end_line": 12, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/starknet/common/storage.cairo" + }, + "parent_location": [ + { + "end_col": 48, + "end_line": 10, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC20_balances/impl.cairo" + }, + "parent_location": [ + { + "end_col": 58, + "end_line": 7, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC20_balances/decl.cairo" + }, + "parent_location": [ + { + "end_col": 26, + "end_line": 11, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC20_balances/impl.cairo" + }, + "start_col": 9, + "start_line": 11 + }, + "While trying to retrieve the implicit argument 'range_check_ptr' in:" + ], + "start_col": 43, + "start_line": 7 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 21, + "start_line": 10 + }, + "While trying to update the implicit return value 'range_check_ptr' in:" + ], + "start_col": 24, + "start_line": 12 + } + }, + "554": { + "accessible_scopes": [ + "openzeppelin.token.erc20.library", + "openzeppelin.token.erc20.library.ERC20_balances", + "openzeppelin.token.erc20.library.ERC20_balances.addr" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 17, + "end_line": 10, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC20_balances/impl.cairo" + }, + "parent_location": [ + { + "end_col": 24, + "end_line": 11, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC20_balances/impl.cairo" + }, + "start_col": 21, + "start_line": 11 + }, + "While expanding the reference 'res' in:" + ], + "start_col": 14, + "start_line": 10 + } + }, + "555": { + "accessible_scopes": [ + "openzeppelin.token.erc20.library", + "openzeppelin.token.erc20.library.ERC20_balances", + "openzeppelin.token.erc20.library.ERC20_balances.addr" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 26, + "end_line": 11, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC20_balances/impl.cairo" + }, + "start_col": 9, + "start_line": 11 + } + }, + "556": { + "accessible_scopes": [ + "openzeppelin.token.erc20.library", + "openzeppelin.token.erc20.library.ERC20_balances", + "openzeppelin.token.erc20.library.ERC20_balances.read" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 61, + "end_line": 14, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC20_balances/impl.cairo" + }, + "parent_location": [ + { + "end_col": 41, + "end_line": 7, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC20_balances/decl.cairo" + }, + "parent_location": [ + { + "end_col": 43, + "end_line": 17, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC20_balances/impl.cairo" + }, + "start_col": 30, + "start_line": 17 + }, + "While trying to retrieve the implicit argument 'pedersen_ptr' in:" + ], + "start_col": 15, + "start_line": 7 + }, + "While expanding the reference 'pedersen_ptr' in:" + ], + "start_col": 35, + "start_line": 14 + } + }, + "557": { + "accessible_scopes": [ + "openzeppelin.token.erc20.library", + "openzeppelin.token.erc20.library.ERC20_balances", + "openzeppelin.token.erc20.library.ERC20_balances.read" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 78, + "end_line": 14, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC20_balances/impl.cairo" + }, + "parent_location": [ + { + "end_col": 58, + "end_line": 7, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC20_balances/decl.cairo" + }, + "parent_location": [ + { + "end_col": 43, + "end_line": 17, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC20_balances/impl.cairo" + }, + "start_col": 30, + "start_line": 17 + }, + "While trying to retrieve the implicit argument 'range_check_ptr' in:" + ], + "start_col": 43, + "start_line": 7 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 63, + "start_line": 14 + } + }, + "558": { + "accessible_scopes": [ + "openzeppelin.token.erc20.library", + "openzeppelin.token.erc20.library.ERC20_balances", + "openzeppelin.token.erc20.library.ERC20_balances.read" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 93, + "end_line": 14, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC20_balances/impl.cairo" + }, + "parent_location": [ + { + "end_col": 42, + "end_line": 17, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC20_balances/impl.cairo" + }, + "start_col": 35, + "start_line": 17 + }, + "While expanding the reference 'account' in:" + ], + "start_col": 80, + "start_line": 14 + } + }, + "559": { + "accessible_scopes": [ + "openzeppelin.token.erc20.library", + "openzeppelin.token.erc20.library.ERC20_balances", + "openzeppelin.token.erc20.library.ERC20_balances.read" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 43, + "end_line": 17, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC20_balances/impl.cairo" + }, + "start_col": 30, + "start_line": 17 + } + }, + "561": { + "accessible_scopes": [ + "openzeppelin.token.erc20.library", + "openzeppelin.token.erc20.library.ERC20_balances", + "openzeppelin.token.erc20.library.ERC20_balances.read" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 33, + "end_line": 14, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC20_balances/impl.cairo" + }, + "parent_location": [ + { + "end_col": 37, + "end_line": 352, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/starknet/common/syscalls.cairo" + }, + "parent_location": [ + { + "end_col": 75, + "end_line": 18, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC20_balances/impl.cairo" + }, + "start_col": 37, + "start_line": 18 + }, + "While trying to retrieve the implicit argument 'syscall_ptr' in:" + ], + "start_col": 19, + "start_line": 352 + }, + "While expanding the reference 'syscall_ptr' in:" + ], + "start_col": 15, + "start_line": 14 + } + }, + "562": { + "accessible_scopes": [ + "openzeppelin.token.erc20.library", + "openzeppelin.token.erc20.library.ERC20_balances", + "openzeppelin.token.erc20.library.ERC20_balances.read" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 26, + "end_line": 17, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC20_balances/impl.cairo" + }, + "parent_location": [ + { + "end_col": 70, + "end_line": 18, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC20_balances/impl.cairo" + }, + "start_col": 58, + "start_line": 18 + }, + "While expanding the reference 'storage_addr' in:" + ], + "start_col": 14, + "start_line": 17 + } + }, + "563": { + "accessible_scopes": [ + "openzeppelin.token.erc20.library", + "openzeppelin.token.erc20.library.ERC20_balances", + "openzeppelin.token.erc20.library.ERC20_balances.read" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 75, + "end_line": 18, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC20_balances/impl.cairo" + }, + "start_col": 37, + "start_line": 18 + } + }, + "565": { + "accessible_scopes": [ + "openzeppelin.token.erc20.library", + "openzeppelin.token.erc20.library.ERC20_balances", + "openzeppelin.token.erc20.library.ERC20_balances.read" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 37, + "end_line": 352, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/starknet/common/syscalls.cairo" + }, + "parent_location": [ + { + "end_col": 75, + "end_line": 18, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC20_balances/impl.cairo" + }, + "parent_location": [ + { + "end_col": 37, + "end_line": 352, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/starknet/common/syscalls.cairo" + }, + "parent_location": [ + { + "end_col": 75, + "end_line": 19, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC20_balances/impl.cairo" + }, + "start_col": 37, + "start_line": 19 + }, + "While trying to retrieve the implicit argument 'syscall_ptr' in:" + ], + "start_col": 19, + "start_line": 352 + }, + "While expanding the reference 'syscall_ptr' in:" + ], + "start_col": 37, + "start_line": 18 + }, + "While trying to update the implicit return value 'syscall_ptr' in:" + ], + "start_col": 19, + "start_line": 352 + } + }, + "566": { + "accessible_scopes": [ + "openzeppelin.token.erc20.library", + "openzeppelin.token.erc20.library.ERC20_balances", + "openzeppelin.token.erc20.library.ERC20_balances.read" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 74, + "end_line": 19, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC20_balances/impl.cairo" + }, + "start_col": 58, + "start_line": 19 + } + }, + "568": { + "accessible_scopes": [ + "openzeppelin.token.erc20.library", + "openzeppelin.token.erc20.library.ERC20_balances", + "openzeppelin.token.erc20.library.ERC20_balances.read" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 75, + "end_line": 19, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC20_balances/impl.cairo" + }, + "start_col": 37, + "start_line": 19 + } + }, + "570": { + "accessible_scopes": [ + "openzeppelin.token.erc20.library", + "openzeppelin.token.erc20.library.ERC20_balances", + "openzeppelin.token.erc20.library.ERC20_balances.read" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 37, + "end_line": 352, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/starknet/common/syscalls.cairo" + }, + "parent_location": [ + { + "end_col": 75, + "end_line": 19, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC20_balances/impl.cairo" + }, + "parent_location": [ + { + "end_col": 42, + "end_line": 21, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC20_balances/impl.cairo" + }, + "start_col": 31, + "start_line": 21 + }, + "While expanding the reference 'syscall_ptr' in:" + ], + "start_col": 37, + "start_line": 19 + }, + "While trying to update the implicit return value 'syscall_ptr' in:" + ], + "start_col": 19, + "start_line": 352 + } + }, + "571": { + "accessible_scopes": [ + "openzeppelin.token.erc20.library", + "openzeppelin.token.erc20.library.ERC20_balances", + "openzeppelin.token.erc20.library.ERC20_balances.read" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 41, + "end_line": 7, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC20_balances/decl.cairo" + }, + "parent_location": [ + { + "end_col": 43, + "end_line": 17, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC20_balances/impl.cairo" + }, + "parent_location": [ + { + "end_col": 44, + "end_line": 22, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC20_balances/impl.cairo" + }, + "start_col": 32, + "start_line": 22 + }, + "While expanding the reference 'pedersen_ptr' in:" + ], + "start_col": 30, + "start_line": 17 + }, + "While trying to update the implicit return value 'pedersen_ptr' in:" + ], + "start_col": 15, + "start_line": 7 + } + }, + "572": { + "accessible_scopes": [ + "openzeppelin.token.erc20.library", + "openzeppelin.token.erc20.library.ERC20_balances", + "openzeppelin.token.erc20.library.ERC20_balances.read" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 58, + "end_line": 7, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC20_balances/decl.cairo" + }, + "parent_location": [ + { + "end_col": 43, + "end_line": 17, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC20_balances/impl.cairo" + }, + "parent_location": [ + { + "end_col": 50, + "end_line": 23, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC20_balances/impl.cairo" + }, + "start_col": 35, + "start_line": 23 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 30, + "start_line": 17 + }, + "While trying to update the implicit return value 'range_check_ptr' in:" + ], + "start_col": 43, + "start_line": 7 + } + }, + "573": { + "accessible_scopes": [ + "openzeppelin.token.erc20.library", + "openzeppelin.token.erc20.library.ERC20_balances", + "openzeppelin.token.erc20.library.ERC20_balances.read" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 33, + "end_line": 18, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC20_balances/impl.cairo" + }, + "parent_location": [ + { + "end_col": 64, + "end_line": 24, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC20_balances/impl.cairo" + }, + "start_col": 45, + "start_line": 24 + }, + "While expanding the reference '__storage_var_temp0' in:" + ], + "start_col": 14, + "start_line": 18 + } + }, + "574": { + "accessible_scopes": [ + "openzeppelin.token.erc20.library", + "openzeppelin.token.erc20.library.ERC20_balances", + "openzeppelin.token.erc20.library.ERC20_balances.read" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 33, + "end_line": 19, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC20_balances/impl.cairo" + }, + "parent_location": [ + { + "end_col": 64, + "end_line": 25, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC20_balances/impl.cairo" + }, + "start_col": 45, + "start_line": 25 + }, + "While expanding the reference '__storage_var_temp1' in:" + ], + "start_col": 14, + "start_line": 19 + } + }, + "575": { + "accessible_scopes": [ + "openzeppelin.token.erc20.library", + "openzeppelin.token.erc20.library.ERC20_balances", + "openzeppelin.token.erc20.library.ERC20_balances.read" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 58, + "end_line": 26, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC20_balances/impl.cairo" + }, + "start_col": 9, + "start_line": 26 + } + }, + "576": { + "accessible_scopes": [ + "openzeppelin.token.erc20.library", + "openzeppelin.token.erc20.library.ERC20_balances", + "openzeppelin.token.erc20.library.ERC20_balances.write" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 62, + "end_line": 29, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC20_balances/impl.cairo" + }, + "parent_location": [ + { + "end_col": 41, + "end_line": 7, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC20_balances/decl.cairo" + }, + "parent_location": [ + { + "end_col": 43, + "end_line": 32, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC20_balances/impl.cairo" + }, + "start_col": 30, + "start_line": 32 + }, + "While trying to retrieve the implicit argument 'pedersen_ptr' in:" + ], + "start_col": 15, + "start_line": 7 + }, + "While expanding the reference 'pedersen_ptr' in:" + ], + "start_col": 36, + "start_line": 29 + } + }, + "577": { + "accessible_scopes": [ + "openzeppelin.token.erc20.library", + "openzeppelin.token.erc20.library.ERC20_balances", + "openzeppelin.token.erc20.library.ERC20_balances.write" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 79, + "end_line": 29, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC20_balances/impl.cairo" + }, + "parent_location": [ + { + "end_col": 58, + "end_line": 7, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC20_balances/decl.cairo" + }, + "parent_location": [ + { + "end_col": 43, + "end_line": 32, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC20_balances/impl.cairo" + }, + "start_col": 30, + "start_line": 32 + }, + "While trying to retrieve the implicit argument 'range_check_ptr' in:" + ], + "start_col": 43, + "start_line": 7 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 64, + "start_line": 29 + } + }, + "578": { + "accessible_scopes": [ + "openzeppelin.token.erc20.library", + "openzeppelin.token.erc20.library.ERC20_balances", + "openzeppelin.token.erc20.library.ERC20_balances.write" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 22, + "end_line": 30, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC20_balances/impl.cairo" + }, + "parent_location": [ + { + "end_col": 42, + "end_line": 32, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC20_balances/impl.cairo" + }, + "start_col": 35, + "start_line": 32 + }, + "While expanding the reference 'account' in:" + ], + "start_col": 9, + "start_line": 30 + } + }, + "579": { + "accessible_scopes": [ + "openzeppelin.token.erc20.library", + "openzeppelin.token.erc20.library.ERC20_balances", + "openzeppelin.token.erc20.library.ERC20_balances.write" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 43, + "end_line": 32, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC20_balances/impl.cairo" + }, + "start_col": 30, + "start_line": 32 + } + }, + "581": { + "accessible_scopes": [ + "openzeppelin.token.erc20.library", + "openzeppelin.token.erc20.library.ERC20_balances", + "openzeppelin.token.erc20.library.ERC20_balances.write" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 34, + "end_line": 29, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC20_balances/impl.cairo" + }, + "parent_location": [ + { + "end_col": 38, + "end_line": 370, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/starknet/common/syscalls.cairo" + }, + "parent_location": [ + { + "end_col": 80, + "end_line": 33, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC20_balances/impl.cairo" + }, + "start_col": 9, + "start_line": 33 + }, + "While trying to retrieve the implicit argument 'syscall_ptr' in:" + ], + "start_col": 20, + "start_line": 370 + }, + "While expanding the reference 'syscall_ptr' in:" + ], + "start_col": 16, + "start_line": 29 + } + }, + "582": { + "accessible_scopes": [ + "openzeppelin.token.erc20.library", + "openzeppelin.token.erc20.library.ERC20_balances", + "openzeppelin.token.erc20.library.ERC20_balances.write" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 26, + "end_line": 32, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC20_balances/impl.cairo" + }, + "parent_location": [ + { + "end_col": 43, + "end_line": 33, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC20_balances/impl.cairo" + }, + "start_col": 31, + "start_line": 33 + }, + "While expanding the reference 'storage_addr' in:" + ], + "start_col": 14, + "start_line": 32 + } + }, + "583": { + "accessible_scopes": [ + "openzeppelin.token.erc20.library", + "openzeppelin.token.erc20.library.ERC20_balances", + "openzeppelin.token.erc20.library.ERC20_balances.write" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 79, + "end_line": 33, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC20_balances/impl.cairo" + }, + "start_col": 55, + "start_line": 33 + } + }, + "584": { + "accessible_scopes": [ + "openzeppelin.token.erc20.library", + "openzeppelin.token.erc20.library.ERC20_balances", + "openzeppelin.token.erc20.library.ERC20_balances.write" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 80, + "end_line": 33, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC20_balances/impl.cairo" + }, + "start_col": 9, + "start_line": 33 + } + }, + "586": { + "accessible_scopes": [ + "openzeppelin.token.erc20.library", + "openzeppelin.token.erc20.library.ERC20_balances", + "openzeppelin.token.erc20.library.ERC20_balances.write" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 47, + "end_line": 34, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC20_balances/impl.cairo" + }, + "start_col": 31, + "start_line": 34 + } + }, + "588": { + "accessible_scopes": [ + "openzeppelin.token.erc20.library", + "openzeppelin.token.erc20.library.ERC20_balances", + "openzeppelin.token.erc20.library.ERC20_balances.write" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 79, + "end_line": 34, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC20_balances/impl.cairo" + }, + "start_col": 55, + "start_line": 34 + } + }, + "589": { + "accessible_scopes": [ + "openzeppelin.token.erc20.library", + "openzeppelin.token.erc20.library.ERC20_balances", + "openzeppelin.token.erc20.library.ERC20_balances.write" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 80, + "end_line": 34, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC20_balances/impl.cairo" + }, + "start_col": 9, + "start_line": 34 + } + }, + "591": { + "accessible_scopes": [ + "openzeppelin.token.erc20.library", + "openzeppelin.token.erc20.library.ERC20_balances", + "openzeppelin.token.erc20.library.ERC20_balances.write" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 41, + "end_line": 7, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC20_balances/decl.cairo" + }, + "parent_location": [ + { + "end_col": 43, + "end_line": 32, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC20_balances/impl.cairo" + }, + "parent_location": [ + { + "end_col": 62, + "end_line": 21, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC20_balances/decl.cairo" + }, + "parent_location": [ + { + "end_col": 19, + "end_line": 35, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC20_balances/impl.cairo" + }, + "start_col": 9, + "start_line": 35 + }, + "While trying to retrieve the implicit argument 'pedersen_ptr' in:" + ], + "start_col": 36, + "start_line": 21 + }, + "While expanding the reference 'pedersen_ptr' in:" + ], + "start_col": 30, + "start_line": 32 + }, + "While trying to update the implicit return value 'pedersen_ptr' in:" + ], + "start_col": 15, + "start_line": 7 + } + }, + "592": { + "accessible_scopes": [ + "openzeppelin.token.erc20.library", + "openzeppelin.token.erc20.library.ERC20_balances", + "openzeppelin.token.erc20.library.ERC20_balances.write" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 58, + "end_line": 7, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC20_balances/decl.cairo" + }, + "parent_location": [ + { + "end_col": 43, + "end_line": 32, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC20_balances/impl.cairo" + }, + "parent_location": [ + { + "end_col": 79, + "end_line": 21, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC20_balances/decl.cairo" + }, + "parent_location": [ + { + "end_col": 19, + "end_line": 35, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC20_balances/impl.cairo" + }, + "start_col": 9, + "start_line": 35 + }, + "While trying to retrieve the implicit argument 'range_check_ptr' in:" + ], + "start_col": 64, + "start_line": 21 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 30, + "start_line": 32 + }, + "While trying to update the implicit return value 'range_check_ptr' in:" + ], + "start_col": 43, + "start_line": 7 + } + }, + "593": { + "accessible_scopes": [ + "openzeppelin.token.erc20.library", + "openzeppelin.token.erc20.library.ERC20_balances", + "openzeppelin.token.erc20.library.ERC20_balances.write" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 19, + "end_line": 35, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC20_balances/impl.cairo" + }, + "start_col": 9, + "start_line": 35 + } + }, + "594": { + "accessible_scopes": [ + "openzeppelin.token.erc20.library", + "openzeppelin.token.erc20.library.ERC20_allowances", + "openzeppelin.token.erc20.library.ERC20_allowances.addr" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 41, + "end_line": 7, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC20_allowances/impl.cairo" + }, + "parent_location": [ + { + "end_col": 48, + "end_line": 11, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC20_allowances/impl.cairo" + }, + "start_col": 36, + "start_line": 11 + }, + "While expanding the reference 'pedersen_ptr' in:" + ], + "start_col": 15, + "start_line": 7 + } + }, + "595": { + "accessible_scopes": [ + "openzeppelin.token.erc20.library", + "openzeppelin.token.erc20.library.ERC20_allowances", + "openzeppelin.token.erc20.library.ERC20_allowances.addr" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 95, + "end_line": 10, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC20_allowances/impl.cairo" + }, + "parent_location": [ + { + "end_col": 53, + "end_line": 11, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC20_allowances/impl.cairo" + }, + "start_col": 50, + "start_line": 11 + }, + "While expanding the reference 'res' in:" + ], + "start_col": 19, + "start_line": 10 + } + }, + "597": { + "accessible_scopes": [ + "openzeppelin.token.erc20.library", + "openzeppelin.token.erc20.library.ERC20_allowances", + "openzeppelin.token.erc20.library.ERC20_allowances.addr" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 77, + "end_line": 11, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC20_allowances/impl.cairo" + }, + "start_col": 55, + "start_line": 11 + } + }, + "598": { + "accessible_scopes": [ + "openzeppelin.token.erc20.library", + "openzeppelin.token.erc20.library.ERC20_allowances", + "openzeppelin.token.erc20.library.ERC20_allowances.addr" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 78, + "end_line": 11, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC20_allowances/impl.cairo" + }, + "start_col": 21, + "start_line": 11 + } + }, + "600": { + "accessible_scopes": [ + "openzeppelin.token.erc20.library", + "openzeppelin.token.erc20.library.ERC20_allowances", + "openzeppelin.token.erc20.library.ERC20_allowances.addr" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 79, + "end_line": 12, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC20_allowances/impl.cairo" + }, + "start_col": 55, + "start_line": 12 + } + }, + "601": { + "accessible_scopes": [ + "openzeppelin.token.erc20.library", + "openzeppelin.token.erc20.library.ERC20_allowances", + "openzeppelin.token.erc20.library.ERC20_allowances.addr" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 80, + "end_line": 12, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC20_allowances/impl.cairo" + }, + "start_col": 21, + "start_line": 12 + } + }, + "603": { + "accessible_scopes": [ + "openzeppelin.token.erc20.library", + "openzeppelin.token.erc20.library.ERC20_allowances", + "openzeppelin.token.erc20.library.ERC20_allowances.addr" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 58, + "end_line": 7, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC20_allowances/impl.cairo" + }, + "parent_location": [ + { + "end_col": 39, + "end_line": 12, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/starknet/common/storage.cairo" + }, + "parent_location": [ + { + "end_col": 48, + "end_line": 13, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC20_allowances/impl.cairo" + }, + "start_col": 21, + "start_line": 13 + }, + "While trying to retrieve the implicit argument 'range_check_ptr' in:" + ], + "start_col": 24, + "start_line": 12 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 43, + "start_line": 7 + } + }, + "604": { + "accessible_scopes": [ + "openzeppelin.token.erc20.library", + "openzeppelin.token.erc20.library.ERC20_allowances", + "openzeppelin.token.erc20.library.ERC20_allowances.addr" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 17, + "end_line": 12, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC20_allowances/impl.cairo" + }, + "parent_location": [ + { + "end_col": 47, + "end_line": 13, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC20_allowances/impl.cairo" + }, + "start_col": 44, + "start_line": 13 + }, + "While expanding the reference 'res' in:" + ], + "start_col": 14, + "start_line": 12 + } + }, + "605": { + "accessible_scopes": [ + "openzeppelin.token.erc20.library", + "openzeppelin.token.erc20.library.ERC20_allowances", + "openzeppelin.token.erc20.library.ERC20_allowances.addr" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 48, + "end_line": 13, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC20_allowances/impl.cairo" + }, + "start_col": 21, + "start_line": 13 + } + }, + "607": { + "accessible_scopes": [ + "openzeppelin.token.erc20.library", + "openzeppelin.token.erc20.library.ERC20_allowances", + "openzeppelin.token.erc20.library.ERC20_allowances.addr" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 48, + "end_line": 12, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC20_allowances/impl.cairo" + }, + "parent_location": [ + { + "end_col": 41, + "end_line": 7, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC20_allowances/decl.cairo" + }, + "parent_location": [ + { + "end_col": 26, + "end_line": 14, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC20_allowances/impl.cairo" + }, + "start_col": 9, + "start_line": 14 + }, + "While trying to retrieve the implicit argument 'pedersen_ptr' in:" + ], + "start_col": 15, + "start_line": 7 + }, + "While expanding the reference 'pedersen_ptr' in:" + ], + "start_col": 36, + "start_line": 12 + } + }, + "608": { + "accessible_scopes": [ + "openzeppelin.token.erc20.library", + "openzeppelin.token.erc20.library.ERC20_allowances", + "openzeppelin.token.erc20.library.ERC20_allowances.addr" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 39, + "end_line": 12, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/starknet/common/storage.cairo" + }, + "parent_location": [ + { + "end_col": 48, + "end_line": 13, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC20_allowances/impl.cairo" + }, + "parent_location": [ + { + "end_col": 58, + "end_line": 7, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC20_allowances/decl.cairo" + }, + "parent_location": [ + { + "end_col": 26, + "end_line": 14, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC20_allowances/impl.cairo" + }, + "start_col": 9, + "start_line": 14 + }, + "While trying to retrieve the implicit argument 'range_check_ptr' in:" + ], + "start_col": 43, + "start_line": 7 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 21, + "start_line": 13 + }, + "While trying to update the implicit return value 'range_check_ptr' in:" + ], + "start_col": 24, + "start_line": 12 + } + }, + "609": { + "accessible_scopes": [ + "openzeppelin.token.erc20.library", + "openzeppelin.token.erc20.library.ERC20_allowances", + "openzeppelin.token.erc20.library.ERC20_allowances.addr" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 17, + "end_line": 13, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC20_allowances/impl.cairo" + }, + "parent_location": [ + { + "end_col": 24, + "end_line": 14, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC20_allowances/impl.cairo" + }, + "start_col": 21, + "start_line": 14 + }, + "While expanding the reference 'res' in:" + ], + "start_col": 14, + "start_line": 13 + } + }, + "610": { + "accessible_scopes": [ + "openzeppelin.token.erc20.library", + "openzeppelin.token.erc20.library.ERC20_allowances", + "openzeppelin.token.erc20.library.ERC20_allowances.addr" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 26, + "end_line": 14, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC20_allowances/impl.cairo" + }, + "start_col": 9, + "start_line": 14 + } + }, + "611": { + "accessible_scopes": [ + "openzeppelin.token.erc20.library", + "openzeppelin.token.erc20.library.ERC20_allowances", + "openzeppelin.token.erc20.library.ERC20_allowances.read" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 61, + "end_line": 17, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC20_allowances/impl.cairo" + }, + "parent_location": [ + { + "end_col": 41, + "end_line": 7, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC20_allowances/decl.cairo" + }, + "parent_location": [ + { + "end_col": 50, + "end_line": 20, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC20_allowances/impl.cairo" + }, + "start_col": 30, + "start_line": 20 + }, + "While trying to retrieve the implicit argument 'pedersen_ptr' in:" + ], + "start_col": 15, + "start_line": 7 + }, + "While expanding the reference 'pedersen_ptr' in:" + ], + "start_col": 35, + "start_line": 17 + } + }, + "612": { + "accessible_scopes": [ + "openzeppelin.token.erc20.library", + "openzeppelin.token.erc20.library.ERC20_allowances", + "openzeppelin.token.erc20.library.ERC20_allowances.read" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 78, + "end_line": 17, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC20_allowances/impl.cairo" + }, + "parent_location": [ + { + "end_col": 58, + "end_line": 7, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC20_allowances/decl.cairo" + }, + "parent_location": [ + { + "end_col": 50, + "end_line": 20, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC20_allowances/impl.cairo" + }, + "start_col": 30, + "start_line": 20 + }, + "While trying to retrieve the implicit argument 'range_check_ptr' in:" + ], + "start_col": 43, + "start_line": 7 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 63, + "start_line": 17 + } + }, + "613": { + "accessible_scopes": [ + "openzeppelin.token.erc20.library", + "openzeppelin.token.erc20.library.ERC20_allowances", + "openzeppelin.token.erc20.library.ERC20_allowances.read" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 20, + "end_line": 18, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC20_allowances/impl.cairo" + }, + "parent_location": [ + { + "end_col": 40, + "end_line": 20, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC20_allowances/impl.cairo" + }, + "start_col": 35, + "start_line": 20 + }, + "While expanding the reference 'owner' in:" + ], + "start_col": 9, + "start_line": 18 + } + }, + "614": { + "accessible_scopes": [ + "openzeppelin.token.erc20.library", + "openzeppelin.token.erc20.library.ERC20_allowances", + "openzeppelin.token.erc20.library.ERC20_allowances.read" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 35, + "end_line": 18, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC20_allowances/impl.cairo" + }, + "parent_location": [ + { + "end_col": 49, + "end_line": 20, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC20_allowances/impl.cairo" + }, + "start_col": 42, + "start_line": 20 + }, + "While expanding the reference 'spender' in:" + ], + "start_col": 22, + "start_line": 18 + } + }, + "615": { + "accessible_scopes": [ + "openzeppelin.token.erc20.library", + "openzeppelin.token.erc20.library.ERC20_allowances", + "openzeppelin.token.erc20.library.ERC20_allowances.read" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 50, + "end_line": 20, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC20_allowances/impl.cairo" + }, + "start_col": 30, + "start_line": 20 + } + }, + "617": { + "accessible_scopes": [ + "openzeppelin.token.erc20.library", + "openzeppelin.token.erc20.library.ERC20_allowances", + "openzeppelin.token.erc20.library.ERC20_allowances.read" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 33, + "end_line": 17, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC20_allowances/impl.cairo" + }, + "parent_location": [ + { + "end_col": 37, + "end_line": 352, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/starknet/common/syscalls.cairo" + }, + "parent_location": [ + { + "end_col": 75, + "end_line": 21, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC20_allowances/impl.cairo" + }, + "start_col": 37, + "start_line": 21 + }, + "While trying to retrieve the implicit argument 'syscall_ptr' in:" + ], + "start_col": 19, + "start_line": 352 + }, + "While expanding the reference 'syscall_ptr' in:" + ], + "start_col": 15, + "start_line": 17 + } + }, + "618": { + "accessible_scopes": [ + "openzeppelin.token.erc20.library", + "openzeppelin.token.erc20.library.ERC20_allowances", + "openzeppelin.token.erc20.library.ERC20_allowances.read" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 26, + "end_line": 20, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC20_allowances/impl.cairo" + }, + "parent_location": [ + { + "end_col": 70, + "end_line": 21, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC20_allowances/impl.cairo" + }, + "start_col": 58, + "start_line": 21 + }, + "While expanding the reference 'storage_addr' in:" + ], + "start_col": 14, + "start_line": 20 + } + }, + "619": { + "accessible_scopes": [ + "openzeppelin.token.erc20.library", + "openzeppelin.token.erc20.library.ERC20_allowances", + "openzeppelin.token.erc20.library.ERC20_allowances.read" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 75, + "end_line": 21, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC20_allowances/impl.cairo" + }, + "start_col": 37, + "start_line": 21 + } + }, + "621": { + "accessible_scopes": [ + "openzeppelin.token.erc20.library", + "openzeppelin.token.erc20.library.ERC20_allowances", + "openzeppelin.token.erc20.library.ERC20_allowances.read" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 37, + "end_line": 352, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/starknet/common/syscalls.cairo" + }, + "parent_location": [ + { + "end_col": 75, + "end_line": 21, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC20_allowances/impl.cairo" + }, + "parent_location": [ + { + "end_col": 37, + "end_line": 352, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/starknet/common/syscalls.cairo" + }, + "parent_location": [ + { + "end_col": 75, + "end_line": 22, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC20_allowances/impl.cairo" + }, + "start_col": 37, + "start_line": 22 + }, + "While trying to retrieve the implicit argument 'syscall_ptr' in:" + ], + "start_col": 19, + "start_line": 352 + }, + "While expanding the reference 'syscall_ptr' in:" + ], + "start_col": 37, + "start_line": 21 + }, + "While trying to update the implicit return value 'syscall_ptr' in:" + ], + "start_col": 19, + "start_line": 352 + } + }, + "622": { + "accessible_scopes": [ + "openzeppelin.token.erc20.library", + "openzeppelin.token.erc20.library.ERC20_allowances", + "openzeppelin.token.erc20.library.ERC20_allowances.read" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 74, + "end_line": 22, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC20_allowances/impl.cairo" + }, + "start_col": 58, + "start_line": 22 + } + }, + "624": { + "accessible_scopes": [ + "openzeppelin.token.erc20.library", + "openzeppelin.token.erc20.library.ERC20_allowances", + "openzeppelin.token.erc20.library.ERC20_allowances.read" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 75, + "end_line": 22, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC20_allowances/impl.cairo" + }, + "start_col": 37, + "start_line": 22 + } + }, + "626": { + "accessible_scopes": [ + "openzeppelin.token.erc20.library", + "openzeppelin.token.erc20.library.ERC20_allowances", + "openzeppelin.token.erc20.library.ERC20_allowances.read" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 37, + "end_line": 352, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/starknet/common/syscalls.cairo" + }, + "parent_location": [ + { + "end_col": 75, + "end_line": 22, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC20_allowances/impl.cairo" + }, + "parent_location": [ + { + "end_col": 42, + "end_line": 24, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC20_allowances/impl.cairo" + }, + "start_col": 31, + "start_line": 24 + }, + "While expanding the reference 'syscall_ptr' in:" + ], + "start_col": 37, + "start_line": 22 + }, + "While trying to update the implicit return value 'syscall_ptr' in:" + ], + "start_col": 19, + "start_line": 352 + } + }, + "627": { + "accessible_scopes": [ + "openzeppelin.token.erc20.library", + "openzeppelin.token.erc20.library.ERC20_allowances", + "openzeppelin.token.erc20.library.ERC20_allowances.read" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 41, + "end_line": 7, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC20_allowances/decl.cairo" + }, + "parent_location": [ + { + "end_col": 50, + "end_line": 20, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC20_allowances/impl.cairo" + }, + "parent_location": [ + { + "end_col": 44, + "end_line": 25, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC20_allowances/impl.cairo" + }, + "start_col": 32, + "start_line": 25 + }, + "While expanding the reference 'pedersen_ptr' in:" + ], + "start_col": 30, + "start_line": 20 + }, + "While trying to update the implicit return value 'pedersen_ptr' in:" + ], + "start_col": 15, + "start_line": 7 + } + }, + "628": { + "accessible_scopes": [ + "openzeppelin.token.erc20.library", + "openzeppelin.token.erc20.library.ERC20_allowances", + "openzeppelin.token.erc20.library.ERC20_allowances.read" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 58, + "end_line": 7, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC20_allowances/decl.cairo" + }, + "parent_location": [ + { + "end_col": 50, + "end_line": 20, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC20_allowances/impl.cairo" + }, + "parent_location": [ + { + "end_col": 50, + "end_line": 26, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC20_allowances/impl.cairo" + }, + "start_col": 35, + "start_line": 26 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 30, + "start_line": 20 + }, + "While trying to update the implicit return value 'range_check_ptr' in:" + ], + "start_col": 43, + "start_line": 7 + } + }, + "629": { + "accessible_scopes": [ + "openzeppelin.token.erc20.library", + "openzeppelin.token.erc20.library.ERC20_allowances", + "openzeppelin.token.erc20.library.ERC20_allowances.read" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 33, + "end_line": 21, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC20_allowances/impl.cairo" + }, + "parent_location": [ + { + "end_col": 64, + "end_line": 27, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC20_allowances/impl.cairo" + }, + "start_col": 45, + "start_line": 27 + }, + "While expanding the reference '__storage_var_temp0' in:" + ], + "start_col": 14, + "start_line": 21 + } + }, + "630": { + "accessible_scopes": [ + "openzeppelin.token.erc20.library", + "openzeppelin.token.erc20.library.ERC20_allowances", + "openzeppelin.token.erc20.library.ERC20_allowances.read" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 33, + "end_line": 22, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC20_allowances/impl.cairo" + }, + "parent_location": [ + { + "end_col": 64, + "end_line": 28, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC20_allowances/impl.cairo" + }, + "start_col": 45, + "start_line": 28 + }, + "While expanding the reference '__storage_var_temp1' in:" + ], + "start_col": 14, + "start_line": 22 + } + }, + "631": { + "accessible_scopes": [ + "openzeppelin.token.erc20.library", + "openzeppelin.token.erc20.library.ERC20_allowances", + "openzeppelin.token.erc20.library.ERC20_allowances.read" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 58, + "end_line": 29, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC20_allowances/impl.cairo" + }, + "start_col": 9, + "start_line": 29 + } + }, + "632": { + "accessible_scopes": [ + "openzeppelin.token.erc20.library", + "openzeppelin.token.erc20.library.ERC20_allowances", + "openzeppelin.token.erc20.library.ERC20_allowances.write" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 62, + "end_line": 32, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC20_allowances/impl.cairo" + }, + "parent_location": [ + { + "end_col": 41, + "end_line": 7, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC20_allowances/decl.cairo" + }, + "parent_location": [ + { + "end_col": 50, + "end_line": 35, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC20_allowances/impl.cairo" + }, + "start_col": 30, + "start_line": 35 + }, + "While trying to retrieve the implicit argument 'pedersen_ptr' in:" + ], + "start_col": 15, + "start_line": 7 + }, + "While expanding the reference 'pedersen_ptr' in:" + ], + "start_col": 36, + "start_line": 32 + } + }, + "633": { + "accessible_scopes": [ + "openzeppelin.token.erc20.library", + "openzeppelin.token.erc20.library.ERC20_allowances", + "openzeppelin.token.erc20.library.ERC20_allowances.write" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 79, + "end_line": 32, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC20_allowances/impl.cairo" + }, + "parent_location": [ + { + "end_col": 58, + "end_line": 7, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC20_allowances/decl.cairo" + }, + "parent_location": [ + { + "end_col": 50, + "end_line": 35, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC20_allowances/impl.cairo" + }, + "start_col": 30, + "start_line": 35 + }, + "While trying to retrieve the implicit argument 'range_check_ptr' in:" + ], + "start_col": 43, + "start_line": 7 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 64, + "start_line": 32 + } + }, + "634": { + "accessible_scopes": [ + "openzeppelin.token.erc20.library", + "openzeppelin.token.erc20.library.ERC20_allowances", + "openzeppelin.token.erc20.library.ERC20_allowances.write" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 20, + "end_line": 33, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC20_allowances/impl.cairo" + }, + "parent_location": [ + { + "end_col": 40, + "end_line": 35, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC20_allowances/impl.cairo" + }, + "start_col": 35, + "start_line": 35 + }, + "While expanding the reference 'owner' in:" + ], + "start_col": 9, + "start_line": 33 + } + }, + "635": { + "accessible_scopes": [ + "openzeppelin.token.erc20.library", + "openzeppelin.token.erc20.library.ERC20_allowances", + "openzeppelin.token.erc20.library.ERC20_allowances.write" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 35, + "end_line": 33, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC20_allowances/impl.cairo" + }, + "parent_location": [ + { + "end_col": 49, + "end_line": 35, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC20_allowances/impl.cairo" + }, + "start_col": 42, + "start_line": 35 + }, + "While expanding the reference 'spender' in:" + ], + "start_col": 22, + "start_line": 33 + } + }, + "636": { + "accessible_scopes": [ + "openzeppelin.token.erc20.library", + "openzeppelin.token.erc20.library.ERC20_allowances", + "openzeppelin.token.erc20.library.ERC20_allowances.write" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 50, + "end_line": 35, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC20_allowances/impl.cairo" + }, + "start_col": 30, + "start_line": 35 + } + }, + "638": { + "accessible_scopes": [ + "openzeppelin.token.erc20.library", + "openzeppelin.token.erc20.library.ERC20_allowances", + "openzeppelin.token.erc20.library.ERC20_allowances.write" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 34, + "end_line": 32, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC20_allowances/impl.cairo" + }, + "parent_location": [ + { + "end_col": 38, + "end_line": 370, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/starknet/common/syscalls.cairo" + }, + "parent_location": [ + { + "end_col": 80, + "end_line": 36, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC20_allowances/impl.cairo" + }, + "start_col": 9, + "start_line": 36 + }, + "While trying to retrieve the implicit argument 'syscall_ptr' in:" + ], + "start_col": 20, + "start_line": 370 + }, + "While expanding the reference 'syscall_ptr' in:" + ], + "start_col": 16, + "start_line": 32 + } + }, + "639": { + "accessible_scopes": [ + "openzeppelin.token.erc20.library", + "openzeppelin.token.erc20.library.ERC20_allowances", + "openzeppelin.token.erc20.library.ERC20_allowances.write" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 26, + "end_line": 35, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC20_allowances/impl.cairo" + }, + "parent_location": [ + { + "end_col": 43, + "end_line": 36, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC20_allowances/impl.cairo" + }, + "start_col": 31, + "start_line": 36 + }, + "While expanding the reference 'storage_addr' in:" + ], + "start_col": 14, + "start_line": 35 + } + }, + "640": { + "accessible_scopes": [ + "openzeppelin.token.erc20.library", + "openzeppelin.token.erc20.library.ERC20_allowances", + "openzeppelin.token.erc20.library.ERC20_allowances.write" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 79, + "end_line": 36, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC20_allowances/impl.cairo" + }, + "start_col": 55, + "start_line": 36 + } + }, + "641": { + "accessible_scopes": [ + "openzeppelin.token.erc20.library", + "openzeppelin.token.erc20.library.ERC20_allowances", + "openzeppelin.token.erc20.library.ERC20_allowances.write" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 80, + "end_line": 36, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC20_allowances/impl.cairo" + }, + "start_col": 9, + "start_line": 36 + } + }, + "643": { + "accessible_scopes": [ + "openzeppelin.token.erc20.library", + "openzeppelin.token.erc20.library.ERC20_allowances", + "openzeppelin.token.erc20.library.ERC20_allowances.write" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 47, + "end_line": 37, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC20_allowances/impl.cairo" + }, + "start_col": 31, + "start_line": 37 + } + }, + "645": { + "accessible_scopes": [ + "openzeppelin.token.erc20.library", + "openzeppelin.token.erc20.library.ERC20_allowances", + "openzeppelin.token.erc20.library.ERC20_allowances.write" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 79, + "end_line": 37, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC20_allowances/impl.cairo" + }, + "start_col": 55, + "start_line": 37 + } + }, + "646": { + "accessible_scopes": [ + "openzeppelin.token.erc20.library", + "openzeppelin.token.erc20.library.ERC20_allowances", + "openzeppelin.token.erc20.library.ERC20_allowances.write" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 80, + "end_line": 37, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC20_allowances/impl.cairo" + }, + "start_col": 9, + "start_line": 37 + } + }, + "648": { + "accessible_scopes": [ + "openzeppelin.token.erc20.library", + "openzeppelin.token.erc20.library.ERC20_allowances", + "openzeppelin.token.erc20.library.ERC20_allowances.write" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 41, + "end_line": 7, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC20_allowances/decl.cairo" + }, + "parent_location": [ + { + "end_col": 50, + "end_line": 35, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC20_allowances/impl.cairo" + }, + "parent_location": [ + { + "end_col": 62, + "end_line": 23, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC20_allowances/decl.cairo" + }, + "parent_location": [ + { + "end_col": 19, + "end_line": 38, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC20_allowances/impl.cairo" + }, + "start_col": 9, + "start_line": 38 + }, + "While trying to retrieve the implicit argument 'pedersen_ptr' in:" + ], + "start_col": 36, + "start_line": 23 + }, + "While expanding the reference 'pedersen_ptr' in:" + ], + "start_col": 30, + "start_line": 35 + }, + "While trying to update the implicit return value 'pedersen_ptr' in:" + ], + "start_col": 15, + "start_line": 7 + } + }, + "649": { + "accessible_scopes": [ + "openzeppelin.token.erc20.library", + "openzeppelin.token.erc20.library.ERC20_allowances", + "openzeppelin.token.erc20.library.ERC20_allowances.write" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 58, + "end_line": 7, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC20_allowances/decl.cairo" + }, + "parent_location": [ + { + "end_col": 50, + "end_line": 35, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC20_allowances/impl.cairo" + }, + "parent_location": [ + { + "end_col": 79, + "end_line": 23, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC20_allowances/decl.cairo" + }, + "parent_location": [ + { + "end_col": 19, + "end_line": 38, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC20_allowances/impl.cairo" + }, + "start_col": 9, + "start_line": 38 + }, + "While trying to retrieve the implicit argument 'range_check_ptr' in:" + ], + "start_col": 64, + "start_line": 23 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 30, + "start_line": 35 + }, + "While trying to update the implicit return value 'range_check_ptr' in:" + ], + "start_col": 43, + "start_line": 7 + } + }, + "650": { + "accessible_scopes": [ + "openzeppelin.token.erc20.library", + "openzeppelin.token.erc20.library.ERC20_allowances", + "openzeppelin.token.erc20.library.ERC20_allowances.write" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 19, + "end_line": 38, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC20_allowances/impl.cairo" + }, + "start_col": 9, + "start_line": 38 + } + }, + "651": { + "accessible_scopes": [ + "openzeppelin.token.erc20.library", + "openzeppelin.token.erc20.library.ERC20", + "openzeppelin.token.erc20.library.ERC20.initializer" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 40, + "end_line": 60, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc20/library.cairo" + }, + "parent_location": [ + { + "end_col": 34, + "end_line": 19, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC20_name/decl.cairo" + }, + "parent_location": [ + { + "end_col": 31, + "end_line": 63, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc20/library.cairo" + }, + "start_col": 9, + "start_line": 63 + }, + "While trying to retrieve the implicit argument 'syscall_ptr' in:" + ], + "start_col": 16, + "start_line": 19 + }, + "While expanding the reference 'syscall_ptr' in:" + ], + "start_col": 22, + "start_line": 60 + } + }, + "652": { + "accessible_scopes": [ + "openzeppelin.token.erc20.library", + "openzeppelin.token.erc20.library.ERC20", + "openzeppelin.token.erc20.library.ERC20.initializer" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 68, + "end_line": 60, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc20/library.cairo" + }, + "parent_location": [ + { + "end_col": 62, + "end_line": 19, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC20_name/decl.cairo" + }, + "parent_location": [ + { + "end_col": 31, + "end_line": 63, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc20/library.cairo" + }, + "start_col": 9, + "start_line": 63 + }, + "While trying to retrieve the implicit argument 'pedersen_ptr' in:" + ], + "start_col": 36, + "start_line": 19 + }, + "While expanding the reference 'pedersen_ptr' in:" + ], + "start_col": 42, + "start_line": 60 + } + }, + "653": { + "accessible_scopes": [ + "openzeppelin.token.erc20.library", + "openzeppelin.token.erc20.library.ERC20", + "openzeppelin.token.erc20.library.ERC20.initializer" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 85, + "end_line": 60, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc20/library.cairo" + }, + "parent_location": [ + { + "end_col": 79, + "end_line": 19, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC20_name/decl.cairo" + }, + "parent_location": [ + { + "end_col": 31, + "end_line": 63, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc20/library.cairo" + }, + "start_col": 9, + "start_line": 63 + }, + "While trying to retrieve the implicit argument 'range_check_ptr' in:" + ], + "start_col": 64, + "start_line": 19 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 70, + "start_line": 60 + } + }, + "654": { + "accessible_scopes": [ + "openzeppelin.token.erc20.library", + "openzeppelin.token.erc20.library.ERC20", + "openzeppelin.token.erc20.library.ERC20.initializer" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 19, + "end_line": 61, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc20/library.cairo" + }, + "parent_location": [ + { + "end_col": 30, + "end_line": 63, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc20/library.cairo" + }, + "start_col": 26, + "start_line": 63 + }, + "While expanding the reference 'name' in:" + ], + "start_col": 9, + "start_line": 61 + } + }, + "655": { + "accessible_scopes": [ + "openzeppelin.token.erc20.library", + "openzeppelin.token.erc20.library.ERC20", + "openzeppelin.token.erc20.library.ERC20.initializer" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 31, + "end_line": 63, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc20/library.cairo" + }, + "start_col": 9, + "start_line": 63 + } + }, + "657": { + "accessible_scopes": [ + "openzeppelin.token.erc20.library", + "openzeppelin.token.erc20.library.ERC20", + "openzeppelin.token.erc20.library.ERC20.initializer" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 33, + "end_line": 61, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc20/library.cairo" + }, + "parent_location": [ + { + "end_col": 34, + "end_line": 64, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc20/library.cairo" + }, + "start_col": 28, + "start_line": 64 + }, + "While expanding the reference 'symbol' in:" + ], + "start_col": 21, + "start_line": 61 + } + }, + "658": { + "accessible_scopes": [ + "openzeppelin.token.erc20.library", + "openzeppelin.token.erc20.library.ERC20", + "openzeppelin.token.erc20.library.ERC20.initializer" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 35, + "end_line": 64, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc20/library.cairo" + }, + "start_col": 9, + "start_line": 64 + } + }, + "660": { + "accessible_scopes": [ + "openzeppelin.token.erc20.library", + "openzeppelin.token.erc20.library.ERC20", + "openzeppelin.token.erc20.library.ERC20.initializer" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 49, + "end_line": 61, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc20/library.cairo" + }, + "parent_location": [ + { + "end_col": 31, + "end_line": 66, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc20/library.cairo" + }, + "start_col": 23, + "start_line": 66 + }, + "While expanding the reference 'decimals' in:" + ], + "start_col": 35, + "start_line": 61 + } + }, + "661": { + "accessible_scopes": [ + "openzeppelin.token.erc20.library", + "openzeppelin.token.erc20.library.ERC20", + "openzeppelin.token.erc20.library.ERC20.initializer" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 42, + "end_line": 66, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc20/library.cairo" + }, + "start_col": 33, + "start_line": 66 + } + }, + "663": { + "accessible_scopes": [ + "openzeppelin.token.erc20.library", + "openzeppelin.token.erc20.library.ERC20", + "openzeppelin.token.erc20.library.ERC20.initializer" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 43, + "end_line": 66, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc20/library.cairo" + }, + "start_col": 13, + "start_line": 66 + } + }, + "665": { + "accessible_scopes": [ + "openzeppelin.token.erc20.library", + "openzeppelin.token.erc20.library.ERC20", + "openzeppelin.token.erc20.library.ERC20.initializer" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 34, + "end_line": 19, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC20_symbol/decl.cairo" + }, + "parent_location": [ + { + "end_col": 35, + "end_line": 64, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc20/library.cairo" + }, + "parent_location": [ + { + "end_col": 34, + "end_line": 21, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC20_decimals/decl.cairo" + }, + "parent_location": [ + { + "end_col": 39, + "end_line": 68, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc20/library.cairo" + }, + "start_col": 9, + "start_line": 68 + }, + "While trying to retrieve the implicit argument 'syscall_ptr' in:" + ], + "start_col": 16, + "start_line": 21 + }, + "While expanding the reference 'syscall_ptr' in:" + ], + "start_col": 9, + "start_line": 64 + }, + "While trying to update the implicit return value 'syscall_ptr' in:" + ], + "start_col": 16, + "start_line": 19 + } + }, + "666": { + "accessible_scopes": [ + "openzeppelin.token.erc20.library", + "openzeppelin.token.erc20.library.ERC20", + "openzeppelin.token.erc20.library.ERC20.initializer" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 62, + "end_line": 19, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC20_symbol/decl.cairo" + }, + "parent_location": [ + { + "end_col": 35, + "end_line": 64, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc20/library.cairo" + }, + "parent_location": [ + { + "end_col": 62, + "end_line": 21, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC20_decimals/decl.cairo" + }, + "parent_location": [ + { + "end_col": 39, + "end_line": 68, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc20/library.cairo" + }, + "start_col": 9, + "start_line": 68 + }, + "While trying to retrieve the implicit argument 'pedersen_ptr' in:" + ], + "start_col": 36, + "start_line": 21 + }, + "While expanding the reference 'pedersen_ptr' in:" + ], + "start_col": 9, + "start_line": 64 + }, + "While trying to update the implicit return value 'pedersen_ptr' in:" + ], + "start_col": 36, + "start_line": 19 + } + }, + "667": { + "accessible_scopes": [ + "openzeppelin.token.erc20.library", + "openzeppelin.token.erc20.library.ERC20", + "openzeppelin.token.erc20.library.ERC20.initializer" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 31, + "end_line": 53, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/math.cairo" + }, + "parent_location": [ + { + "end_col": 43, + "end_line": 66, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc20/library.cairo" + }, + "parent_location": [ + { + "end_col": 79, + "end_line": 21, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC20_decimals/decl.cairo" + }, + "parent_location": [ + { + "end_col": 39, + "end_line": 68, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc20/library.cairo" + }, + "start_col": 9, + "start_line": 68 + }, + "While trying to retrieve the implicit argument 'range_check_ptr' in:" + ], + "start_col": 64, + "start_line": 21 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 13, + "start_line": 66 + }, + "While trying to update the implicit return value 'range_check_ptr' in:" + ], + "start_col": 16, + "start_line": 53 + } + }, + "668": { + "accessible_scopes": [ + "openzeppelin.token.erc20.library", + "openzeppelin.token.erc20.library.ERC20", + "openzeppelin.token.erc20.library.ERC20.initializer" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 49, + "end_line": 61, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc20/library.cairo" + }, + "parent_location": [ + { + "end_col": 38, + "end_line": 68, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc20/library.cairo" + }, + "start_col": 30, + "start_line": 68 + }, + "While expanding the reference 'decimals' in:" + ], + "start_col": 35, + "start_line": 61 + } + }, + "669": { + "accessible_scopes": [ + "openzeppelin.token.erc20.library", + "openzeppelin.token.erc20.library.ERC20", + "openzeppelin.token.erc20.library.ERC20.initializer" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 39, + "end_line": 68, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc20/library.cairo" + }, + "start_col": 9, + "start_line": 68 + } + }, + "671": { + "accessible_scopes": [ + "openzeppelin.token.erc20.library", + "openzeppelin.token.erc20.library.ERC20", + "openzeppelin.token.erc20.library.ERC20.initializer" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 19, + "end_line": 69, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc20/library.cairo" + }, + "start_col": 9, + "start_line": 69 + } + }, + "672": { + "accessible_scopes": [ + "openzeppelin.token.erc20.library", + "openzeppelin.token.erc20.library.ERC20", + "openzeppelin.token.erc20.library.ERC20.name" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 33, + "end_line": 76, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc20/library.cairo" + }, + "parent_location": [ + { + "end_col": 33, + "end_line": 13, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC20_name/decl.cairo" + }, + "parent_location": [ + { + "end_col": 33, + "end_line": 77, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc20/library.cairo" + }, + "start_col": 16, + "start_line": 77 + }, + "While trying to retrieve the implicit argument 'syscall_ptr' in:" + ], + "start_col": 15, + "start_line": 13 + }, + "While expanding the reference 'syscall_ptr' in:" + ], + "start_col": 15, + "start_line": 76 + } + }, + "673": { + "accessible_scopes": [ + "openzeppelin.token.erc20.library", + "openzeppelin.token.erc20.library.ERC20", + "openzeppelin.token.erc20.library.ERC20.name" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 61, + "end_line": 76, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc20/library.cairo" + }, + "parent_location": [ + { + "end_col": 61, + "end_line": 13, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC20_name/decl.cairo" + }, + "parent_location": [ + { + "end_col": 33, + "end_line": 77, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc20/library.cairo" + }, + "start_col": 16, + "start_line": 77 + }, + "While trying to retrieve the implicit argument 'pedersen_ptr' in:" + ], + "start_col": 35, + "start_line": 13 + }, + "While expanding the reference 'pedersen_ptr' in:" + ], + "start_col": 35, + "start_line": 76 + } + }, + "674": { + "accessible_scopes": [ + "openzeppelin.token.erc20.library", + "openzeppelin.token.erc20.library.ERC20", + "openzeppelin.token.erc20.library.ERC20.name" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 78, + "end_line": 76, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc20/library.cairo" + }, + "parent_location": [ + { + "end_col": 78, + "end_line": 13, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC20_name/decl.cairo" + }, + "parent_location": [ + { + "end_col": 33, + "end_line": 77, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc20/library.cairo" + }, + "start_col": 16, + "start_line": 77 + }, + "While trying to retrieve the implicit argument 'range_check_ptr' in:" + ], + "start_col": 63, + "start_line": 13 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 63, + "start_line": 76 + } + }, + "675": { + "accessible_scopes": [ + "openzeppelin.token.erc20.library", + "openzeppelin.token.erc20.library.ERC20", + "openzeppelin.token.erc20.library.ERC20.name" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 33, + "end_line": 77, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc20/library.cairo" + }, + "start_col": 16, + "start_line": 77 + } + }, + "677": { + "accessible_scopes": [ + "openzeppelin.token.erc20.library", + "openzeppelin.token.erc20.library.ERC20", + "openzeppelin.token.erc20.library.ERC20.name" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 34, + "end_line": 77, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc20/library.cairo" + }, + "start_col": 9, + "start_line": 77 + } + }, + "678": { + "accessible_scopes": [ + "openzeppelin.token.erc20.library", + "openzeppelin.token.erc20.library.ERC20", + "openzeppelin.token.erc20.library.ERC20.symbol" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 35, + "end_line": 80, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc20/library.cairo" + }, + "parent_location": [ + { + "end_col": 33, + "end_line": 13, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC20_symbol/decl.cairo" + }, + "parent_location": [ + { + "end_col": 35, + "end_line": 83, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc20/library.cairo" + }, + "start_col": 16, + "start_line": 83 + }, + "While trying to retrieve the implicit argument 'syscall_ptr' in:" + ], + "start_col": 15, + "start_line": 13 + }, + "While expanding the reference 'syscall_ptr' in:" + ], + "start_col": 17, + "start_line": 80 + } + }, + "679": { + "accessible_scopes": [ + "openzeppelin.token.erc20.library", + "openzeppelin.token.erc20.library.ERC20", + "openzeppelin.token.erc20.library.ERC20.symbol" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 63, + "end_line": 80, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc20/library.cairo" + }, + "parent_location": [ + { + "end_col": 61, + "end_line": 13, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC20_symbol/decl.cairo" + }, + "parent_location": [ + { + "end_col": 35, + "end_line": 83, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc20/library.cairo" + }, + "start_col": 16, + "start_line": 83 + }, + "While trying to retrieve the implicit argument 'pedersen_ptr' in:" + ], + "start_col": 35, + "start_line": 13 + }, + "While expanding the reference 'pedersen_ptr' in:" + ], + "start_col": 37, + "start_line": 80 + } + }, + "680": { + "accessible_scopes": [ + "openzeppelin.token.erc20.library", + "openzeppelin.token.erc20.library.ERC20", + "openzeppelin.token.erc20.library.ERC20.symbol" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 80, + "end_line": 80, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc20/library.cairo" + }, + "parent_location": [ + { + "end_col": 78, + "end_line": 13, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC20_symbol/decl.cairo" + }, + "parent_location": [ + { + "end_col": 35, + "end_line": 83, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc20/library.cairo" + }, + "start_col": 16, + "start_line": 83 + }, + "While trying to retrieve the implicit argument 'range_check_ptr' in:" + ], + "start_col": 63, + "start_line": 13 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 65, + "start_line": 80 + } + }, + "681": { + "accessible_scopes": [ + "openzeppelin.token.erc20.library", + "openzeppelin.token.erc20.library.ERC20", + "openzeppelin.token.erc20.library.ERC20.symbol" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 35, + "end_line": 83, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc20/library.cairo" + }, + "start_col": 16, + "start_line": 83 + } + }, + "683": { + "accessible_scopes": [ + "openzeppelin.token.erc20.library", + "openzeppelin.token.erc20.library.ERC20", + "openzeppelin.token.erc20.library.ERC20.symbol" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 36, + "end_line": 83, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc20/library.cairo" + }, + "start_col": 9, + "start_line": 83 + } + }, + "684": { + "accessible_scopes": [ + "openzeppelin.token.erc20.library", + "openzeppelin.token.erc20.library.ERC20", + "openzeppelin.token.erc20.library.ERC20.total_supply" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 41, + "end_line": 86, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc20/library.cairo" + }, + "parent_location": [ + { + "end_col": 33, + "end_line": 13, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC20_total_supply/decl.cairo" + }, + "parent_location": [ + { + "end_col": 41, + "end_line": 89, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc20/library.cairo" + }, + "start_col": 16, + "start_line": 89 + }, + "While trying to retrieve the implicit argument 'syscall_ptr' in:" + ], + "start_col": 15, + "start_line": 13 + }, + "While expanding the reference 'syscall_ptr' in:" + ], + "start_col": 23, + "start_line": 86 + } + }, + "685": { + "accessible_scopes": [ + "openzeppelin.token.erc20.library", + "openzeppelin.token.erc20.library.ERC20", + "openzeppelin.token.erc20.library.ERC20.total_supply" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 69, + "end_line": 86, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc20/library.cairo" + }, + "parent_location": [ + { + "end_col": 61, + "end_line": 13, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC20_total_supply/decl.cairo" + }, + "parent_location": [ + { + "end_col": 41, + "end_line": 89, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc20/library.cairo" + }, + "start_col": 16, + "start_line": 89 + }, + "While trying to retrieve the implicit argument 'pedersen_ptr' in:" + ], + "start_col": 35, + "start_line": 13 + }, + "While expanding the reference 'pedersen_ptr' in:" + ], + "start_col": 43, + "start_line": 86 + } + }, + "686": { + "accessible_scopes": [ + "openzeppelin.token.erc20.library", + "openzeppelin.token.erc20.library.ERC20", + "openzeppelin.token.erc20.library.ERC20.total_supply" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 86, + "end_line": 86, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc20/library.cairo" + }, + "parent_location": [ + { + "end_col": 78, + "end_line": 13, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC20_total_supply/decl.cairo" + }, + "parent_location": [ + { + "end_col": 41, + "end_line": 89, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc20/library.cairo" + }, + "start_col": 16, + "start_line": 89 + }, + "While trying to retrieve the implicit argument 'range_check_ptr' in:" + ], + "start_col": 63, + "start_line": 13 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 71, + "start_line": 86 + } + }, + "687": { + "accessible_scopes": [ + "openzeppelin.token.erc20.library", + "openzeppelin.token.erc20.library.ERC20", + "openzeppelin.token.erc20.library.ERC20.total_supply" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 41, + "end_line": 89, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc20/library.cairo" + }, + "start_col": 16, + "start_line": 89 + } + }, + "689": { + "accessible_scopes": [ + "openzeppelin.token.erc20.library", + "openzeppelin.token.erc20.library.ERC20", + "openzeppelin.token.erc20.library.ERC20.total_supply" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 42, + "end_line": 89, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc20/library.cairo" + }, + "start_col": 9, + "start_line": 89 + } + }, + "690": { + "accessible_scopes": [ + "openzeppelin.token.erc20.library", + "openzeppelin.token.erc20.library.ERC20", + "openzeppelin.token.erc20.library.ERC20.decimals" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 37, + "end_line": 92, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc20/library.cairo" + }, + "parent_location": [ + { + "end_col": 33, + "end_line": 13, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC20_decimals/decl.cairo" + }, + "parent_location": [ + { + "end_col": 37, + "end_line": 95, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc20/library.cairo" + }, + "start_col": 16, + "start_line": 95 + }, + "While trying to retrieve the implicit argument 'syscall_ptr' in:" + ], + "start_col": 15, + "start_line": 13 + }, + "While expanding the reference 'syscall_ptr' in:" + ], + "start_col": 19, + "start_line": 92 + } + }, + "691": { + "accessible_scopes": [ + "openzeppelin.token.erc20.library", + "openzeppelin.token.erc20.library.ERC20", + "openzeppelin.token.erc20.library.ERC20.decimals" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 65, + "end_line": 92, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc20/library.cairo" + }, + "parent_location": [ + { + "end_col": 61, + "end_line": 13, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC20_decimals/decl.cairo" + }, + "parent_location": [ + { + "end_col": 37, + "end_line": 95, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc20/library.cairo" + }, + "start_col": 16, + "start_line": 95 + }, + "While trying to retrieve the implicit argument 'pedersen_ptr' in:" + ], + "start_col": 35, + "start_line": 13 + }, + "While expanding the reference 'pedersen_ptr' in:" + ], + "start_col": 39, + "start_line": 92 + } + }, + "692": { + "accessible_scopes": [ + "openzeppelin.token.erc20.library", + "openzeppelin.token.erc20.library.ERC20", + "openzeppelin.token.erc20.library.ERC20.decimals" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 82, + "end_line": 92, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc20/library.cairo" + }, + "parent_location": [ + { + "end_col": 78, + "end_line": 13, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC20_decimals/decl.cairo" + }, + "parent_location": [ + { + "end_col": 37, + "end_line": 95, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc20/library.cairo" + }, + "start_col": 16, + "start_line": 95 + }, + "While trying to retrieve the implicit argument 'range_check_ptr' in:" + ], + "start_col": 63, + "start_line": 13 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 67, + "start_line": 92 + } + }, + "693": { + "accessible_scopes": [ + "openzeppelin.token.erc20.library", + "openzeppelin.token.erc20.library.ERC20", + "openzeppelin.token.erc20.library.ERC20.decimals" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 37, + "end_line": 95, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc20/library.cairo" + }, + "start_col": 16, + "start_line": 95 + } + }, + "695": { + "accessible_scopes": [ + "openzeppelin.token.erc20.library", + "openzeppelin.token.erc20.library.ERC20", + "openzeppelin.token.erc20.library.ERC20.decimals" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 38, + "end_line": 95, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc20/library.cairo" + }, + "start_col": 9, + "start_line": 95 + } + }, + "696": { + "accessible_scopes": [ + "openzeppelin.token.erc20.library", + "openzeppelin.token.erc20.library.ERC20", + "openzeppelin.token.erc20.library.ERC20.balance_of" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 39, + "end_line": 98, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc20/library.cairo" + }, + "parent_location": [ + { + "end_col": 33, + "end_line": 13, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC20_balances/decl.cairo" + }, + "parent_location": [ + { + "end_col": 44, + "end_line": 101, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc20/library.cairo" + }, + "start_col": 16, + "start_line": 101 + }, + "While trying to retrieve the implicit argument 'syscall_ptr' in:" + ], + "start_col": 15, + "start_line": 13 + }, + "While expanding the reference 'syscall_ptr' in:" + ], + "start_col": 21, + "start_line": 98 + } + }, + "697": { + "accessible_scopes": [ + "openzeppelin.token.erc20.library", + "openzeppelin.token.erc20.library.ERC20", + "openzeppelin.token.erc20.library.ERC20.balance_of" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 67, + "end_line": 98, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc20/library.cairo" + }, + "parent_location": [ + { + "end_col": 61, + "end_line": 13, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC20_balances/decl.cairo" + }, + "parent_location": [ + { + "end_col": 44, + "end_line": 101, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc20/library.cairo" + }, + "start_col": 16, + "start_line": 101 + }, + "While trying to retrieve the implicit argument 'pedersen_ptr' in:" + ], + "start_col": 35, + "start_line": 13 + }, + "While expanding the reference 'pedersen_ptr' in:" + ], + "start_col": 41, + "start_line": 98 + } + }, + "698": { + "accessible_scopes": [ + "openzeppelin.token.erc20.library", + "openzeppelin.token.erc20.library.ERC20", + "openzeppelin.token.erc20.library.ERC20.balance_of" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 84, + "end_line": 98, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc20/library.cairo" + }, + "parent_location": [ + { + "end_col": 78, + "end_line": 13, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC20_balances/decl.cairo" + }, + "parent_location": [ + { + "end_col": 44, + "end_line": 101, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc20/library.cairo" + }, + "start_col": 16, + "start_line": 101 + }, + "While trying to retrieve the implicit argument 'range_check_ptr' in:" + ], + "start_col": 63, + "start_line": 13 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 69, + "start_line": 98 + } + }, + "699": { + "accessible_scopes": [ + "openzeppelin.token.erc20.library", + "openzeppelin.token.erc20.library.ERC20", + "openzeppelin.token.erc20.library.ERC20.balance_of" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 22, + "end_line": 99, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc20/library.cairo" + }, + "parent_location": [ + { + "end_col": 43, + "end_line": 101, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc20/library.cairo" + }, + "start_col": 36, + "start_line": 101 + }, + "While expanding the reference 'account' in:" + ], + "start_col": 9, + "start_line": 99 + } + }, + "700": { + "accessible_scopes": [ + "openzeppelin.token.erc20.library", + "openzeppelin.token.erc20.library.ERC20", + "openzeppelin.token.erc20.library.ERC20.balance_of" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 44, + "end_line": 101, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc20/library.cairo" + }, + "start_col": 16, + "start_line": 101 + } + }, + "702": { + "accessible_scopes": [ + "openzeppelin.token.erc20.library", + "openzeppelin.token.erc20.library.ERC20", + "openzeppelin.token.erc20.library.ERC20.balance_of" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 45, + "end_line": 101, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc20/library.cairo" + }, + "start_col": 9, + "start_line": 101 + } + }, + "703": { + "accessible_scopes": [ + "openzeppelin.token.erc20.library", + "openzeppelin.token.erc20.library.ERC20", + "openzeppelin.token.erc20.library.ERC20.allowance" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 38, + "end_line": 104, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc20/library.cairo" + }, + "parent_location": [ + { + "end_col": 33, + "end_line": 15, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC20_allowances/decl.cairo" + }, + "parent_location": [ + { + "end_col": 53, + "end_line": 107, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc20/library.cairo" + }, + "start_col": 16, + "start_line": 107 + }, + "While trying to retrieve the implicit argument 'syscall_ptr' in:" + ], + "start_col": 15, + "start_line": 15 + }, + "While expanding the reference 'syscall_ptr' in:" + ], + "start_col": 20, + "start_line": 104 + } + }, + "704": { + "accessible_scopes": [ + "openzeppelin.token.erc20.library", + "openzeppelin.token.erc20.library.ERC20", + "openzeppelin.token.erc20.library.ERC20.allowance" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 66, + "end_line": 104, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc20/library.cairo" + }, + "parent_location": [ + { + "end_col": 61, + "end_line": 15, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC20_allowances/decl.cairo" + }, + "parent_location": [ + { + "end_col": 53, + "end_line": 107, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc20/library.cairo" + }, + "start_col": 16, + "start_line": 107 + }, + "While trying to retrieve the implicit argument 'pedersen_ptr' in:" + ], + "start_col": 35, + "start_line": 15 + }, + "While expanding the reference 'pedersen_ptr' in:" + ], + "start_col": 40, + "start_line": 104 + } + }, + "705": { + "accessible_scopes": [ + "openzeppelin.token.erc20.library", + "openzeppelin.token.erc20.library.ERC20", + "openzeppelin.token.erc20.library.ERC20.allowance" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 83, + "end_line": 104, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc20/library.cairo" + }, + "parent_location": [ + { + "end_col": 78, + "end_line": 15, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC20_allowances/decl.cairo" + }, + "parent_location": [ + { + "end_col": 53, + "end_line": 107, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc20/library.cairo" + }, + "start_col": 16, + "start_line": 107 + }, + "While trying to retrieve the implicit argument 'range_check_ptr' in:" + ], + "start_col": 63, + "start_line": 15 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 68, + "start_line": 104 + } + }, + "706": { + "accessible_scopes": [ + "openzeppelin.token.erc20.library", + "openzeppelin.token.erc20.library.ERC20", + "openzeppelin.token.erc20.library.ERC20.allowance" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 20, + "end_line": 105, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc20/library.cairo" + }, + "parent_location": [ + { + "end_col": 43, + "end_line": 107, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc20/library.cairo" + }, + "start_col": 38, + "start_line": 107 + }, + "While expanding the reference 'owner' in:" + ], + "start_col": 9, + "start_line": 105 + } + }, + "707": { + "accessible_scopes": [ + "openzeppelin.token.erc20.library", + "openzeppelin.token.erc20.library.ERC20", + "openzeppelin.token.erc20.library.ERC20.allowance" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 35, + "end_line": 105, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc20/library.cairo" + }, + "parent_location": [ + { + "end_col": 52, + "end_line": 107, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc20/library.cairo" + }, + "start_col": 45, + "start_line": 107 + }, + "While expanding the reference 'spender' in:" + ], + "start_col": 22, + "start_line": 105 + } + }, + "708": { + "accessible_scopes": [ + "openzeppelin.token.erc20.library", + "openzeppelin.token.erc20.library.ERC20", + "openzeppelin.token.erc20.library.ERC20.allowance" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 53, + "end_line": 107, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc20/library.cairo" + }, + "start_col": 16, + "start_line": 107 + } + }, + "710": { + "accessible_scopes": [ + "openzeppelin.token.erc20.library", + "openzeppelin.token.erc20.library.ERC20", + "openzeppelin.token.erc20.library.ERC20.allowance" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 54, + "end_line": 107, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc20/library.cairo" + }, + "start_col": 9, + "start_line": 107 + } + }, + "711": { + "accessible_scopes": [ + "openzeppelin.token.erc20.library", + "openzeppelin.token.erc20.library.ERC20", + "openzeppelin.token.erc20.library.ERC20.transfer" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 37, + "end_line": 110, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc20/library.cairo" + }, + "parent_location": [ + { + "end_col": 43, + "end_line": 200, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/starknet/common/syscalls.cairo" + }, + "parent_location": [ + { + "end_col": 44, + "end_line": 113, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc20/library.cairo" + }, + "start_col": 24, + "start_line": 113 + }, + "While trying to retrieve the implicit argument 'syscall_ptr' in:" + ], + "start_col": 25, + "start_line": 200 + }, + "While expanding the reference 'syscall_ptr' in:" + ], + "start_col": 19, + "start_line": 110 + } + }, + "712": { + "accessible_scopes": [ + "openzeppelin.token.erc20.library", + "openzeppelin.token.erc20.library.ERC20", + "openzeppelin.token.erc20.library.ERC20.transfer" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 44, + "end_line": 113, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc20/library.cairo" + }, + "start_col": 24, + "start_line": 113 + } + }, + "714": { + "accessible_scopes": [ + "openzeppelin.token.erc20.library", + "openzeppelin.token.erc20.library.ERC20", + "openzeppelin.token.erc20.library.ERC20.transfer" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 43, + "end_line": 200, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/starknet/common/syscalls.cairo" + }, + "parent_location": [ + { + "end_col": 44, + "end_line": 113, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc20/library.cairo" + }, + "parent_location": [ + { + "end_col": 38, + "end_line": 233, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc20/library.cairo" + }, + "parent_location": [ + { + "end_col": 45, + "end_line": 114, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc20/library.cairo" + }, + "start_col": 9, + "start_line": 114 + }, + "While trying to retrieve the implicit argument 'syscall_ptr' in:" + ], + "start_col": 20, + "start_line": 233 + }, + "While expanding the reference 'syscall_ptr' in:" + ], + "start_col": 24, + "start_line": 113 + }, + "While trying to update the implicit return value 'syscall_ptr' in:" + ], + "start_col": 25, + "start_line": 200 + } + }, + "715": { + "accessible_scopes": [ + "openzeppelin.token.erc20.library", + "openzeppelin.token.erc20.library.ERC20", + "openzeppelin.token.erc20.library.ERC20.transfer" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 65, + "end_line": 110, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc20/library.cairo" + }, + "parent_location": [ + { + "end_col": 66, + "end_line": 233, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc20/library.cairo" + }, + "parent_location": [ + { + "end_col": 45, + "end_line": 114, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc20/library.cairo" + }, + "start_col": 9, + "start_line": 114 + }, + "While trying to retrieve the implicit argument 'pedersen_ptr' in:" + ], + "start_col": 40, + "start_line": 233 + }, + "While expanding the reference 'pedersen_ptr' in:" + ], + "start_col": 39, + "start_line": 110 + } + }, + "716": { + "accessible_scopes": [ + "openzeppelin.token.erc20.library", + "openzeppelin.token.erc20.library.ERC20", + "openzeppelin.token.erc20.library.ERC20.transfer" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 82, + "end_line": 110, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc20/library.cairo" + }, + "parent_location": [ + { + "end_col": 83, + "end_line": 233, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc20/library.cairo" + }, + "parent_location": [ + { + "end_col": 45, + "end_line": 114, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc20/library.cairo" + }, + "start_col": 9, + "start_line": 114 + }, + "While trying to retrieve the implicit argument 'range_check_ptr' in:" + ], + "start_col": 68, + "start_line": 233 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 67, + "start_line": 110 + } + }, + "717": { + "accessible_scopes": [ + "openzeppelin.token.erc20.library", + "openzeppelin.token.erc20.library.ERC20", + "openzeppelin.token.erc20.library.ERC20.transfer" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 20, + "end_line": 113, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc20/library.cairo" + }, + "parent_location": [ + { + "end_col": 25, + "end_line": 114, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc20/library.cairo" + }, + "start_col": 19, + "start_line": 114 + }, + "While expanding the reference 'sender' in:" + ], + "start_col": 14, + "start_line": 113 + } + }, + "718": { + "accessible_scopes": [ + "openzeppelin.token.erc20.library", + "openzeppelin.token.erc20.library.ERC20", + "openzeppelin.token.erc20.library.ERC20.transfer" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 24, + "end_line": 111, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc20/library.cairo" + }, + "parent_location": [ + { + "end_col": 36, + "end_line": 114, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc20/library.cairo" + }, + "start_col": 27, + "start_line": 114 + }, + "While expanding the reference 'recipient' in:" + ], + "start_col": 9, + "start_line": 111 + } + }, + "719": { + "accessible_scopes": [ + "openzeppelin.token.erc20.library", + "openzeppelin.token.erc20.library.ERC20", + "openzeppelin.token.erc20.library.ERC20.transfer" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 41, + "end_line": 111, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc20/library.cairo" + }, + "parent_location": [ + { + "end_col": 44, + "end_line": 114, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc20/library.cairo" + }, + "start_col": 38, + "start_line": 114 + }, + "While expanding the reference 'amount' in:" + ], + "start_col": 26, + "start_line": 111 + } + }, + "720": { + "accessible_scopes": [ + "openzeppelin.token.erc20.library", + "openzeppelin.token.erc20.library.ERC20", + "openzeppelin.token.erc20.library.ERC20.transfer" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 41, + "end_line": 111, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc20/library.cairo" + }, + "parent_location": [ + { + "end_col": 44, + "end_line": 114, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc20/library.cairo" + }, + "start_col": 38, + "start_line": 114 + }, + "While expanding the reference 'amount' in:" + ], + "start_col": 26, + "start_line": 111 + } + }, + "721": { + "accessible_scopes": [ + "openzeppelin.token.erc20.library", + "openzeppelin.token.erc20.library.ERC20", + "openzeppelin.token.erc20.library.ERC20.transfer" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 45, + "end_line": 114, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc20/library.cairo" + }, + "start_col": 9, + "start_line": 114 + } + }, + "723": { + "accessible_scopes": [ + "openzeppelin.token.erc20.library", + "openzeppelin.token.erc20.library.ERC20", + "openzeppelin.token.erc20.library.ERC20.transfer" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 29, + "end_line": 115, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc20/library.cairo" + }, + "start_col": 25, + "start_line": 115 + } + }, + "725": { + "accessible_scopes": [ + "openzeppelin.token.erc20.library", + "openzeppelin.token.erc20.library.ERC20", + "openzeppelin.token.erc20.library.ERC20.transfer" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 31, + "end_line": 115, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc20/library.cairo" + }, + "start_col": 9, + "start_line": 115 + } + }, + "726": { + "accessible_scopes": [ + "openzeppelin.token.erc20.library", + "openzeppelin.token.erc20.library.ERC20", + "openzeppelin.token.erc20.library.ERC20.transfer_from" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 42, + "end_line": 118, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc20/library.cairo" + }, + "parent_location": [ + { + "end_col": 43, + "end_line": 200, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/starknet/common/syscalls.cairo" + }, + "parent_location": [ + { + "end_col": 44, + "end_line": 121, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc20/library.cairo" + }, + "start_col": 24, + "start_line": 121 + }, + "While trying to retrieve the implicit argument 'syscall_ptr' in:" + ], + "start_col": 25, + "start_line": 200 + }, + "While expanding the reference 'syscall_ptr' in:" + ], + "start_col": 24, + "start_line": 118 + } + }, + "727": { + "accessible_scopes": [ + "openzeppelin.token.erc20.library", + "openzeppelin.token.erc20.library.ERC20", + "openzeppelin.token.erc20.library.ERC20.transfer_from" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 44, + "end_line": 121, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc20/library.cairo" + }, + "start_col": 24, + "start_line": 121 + } + }, + "729": { + "accessible_scopes": [ + "openzeppelin.token.erc20.library", + "openzeppelin.token.erc20.library.ERC20", + "openzeppelin.token.erc20.library.ERC20.transfer_from" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 43, + "end_line": 200, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/starknet/common/syscalls.cairo" + }, + "parent_location": [ + { + "end_col": 44, + "end_line": 121, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc20/library.cairo" + }, + "parent_location": [ + { + "end_col": 45, + "end_line": 284, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc20/library.cairo" + }, + "parent_location": [ + { + "end_col": 49, + "end_line": 122, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc20/library.cairo" + }, + "start_col": 9, + "start_line": 122 + }, + "While trying to retrieve the implicit argument 'syscall_ptr' in:" + ], + "start_col": 27, + "start_line": 284 + }, + "While expanding the reference 'syscall_ptr' in:" + ], + "start_col": 24, + "start_line": 121 + }, + "While trying to update the implicit return value 'syscall_ptr' in:" + ], + "start_col": 25, + "start_line": 200 + } + }, + "730": { + "accessible_scopes": [ + "openzeppelin.token.erc20.library", + "openzeppelin.token.erc20.library.ERC20", + "openzeppelin.token.erc20.library.ERC20.transfer_from" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 70, + "end_line": 118, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc20/library.cairo" + }, + "parent_location": [ + { + "end_col": 73, + "end_line": 284, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc20/library.cairo" + }, + "parent_location": [ + { + "end_col": 49, + "end_line": 122, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc20/library.cairo" + }, + "start_col": 9, + "start_line": 122 + }, + "While trying to retrieve the implicit argument 'pedersen_ptr' in:" + ], + "start_col": 47, + "start_line": 284 + }, + "While expanding the reference 'pedersen_ptr' in:" + ], + "start_col": 44, + "start_line": 118 + } + }, + "731": { + "accessible_scopes": [ + "openzeppelin.token.erc20.library", + "openzeppelin.token.erc20.library.ERC20", + "openzeppelin.token.erc20.library.ERC20.transfer_from" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 87, + "end_line": 118, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc20/library.cairo" + }, + "parent_location": [ + { + "end_col": 90, + "end_line": 284, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc20/library.cairo" + }, + "parent_location": [ + { + "end_col": 49, + "end_line": 122, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc20/library.cairo" + }, + "start_col": 9, + "start_line": 122 + }, + "While trying to retrieve the implicit argument 'range_check_ptr' in:" + ], + "start_col": 75, + "start_line": 284 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 72, + "start_line": 118 + } + }, + "732": { + "accessible_scopes": [ + "openzeppelin.token.erc20.library", + "openzeppelin.token.erc20.library.ERC20", + "openzeppelin.token.erc20.library.ERC20.transfer_from" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 21, + "end_line": 119, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc20/library.cairo" + }, + "parent_location": [ + { + "end_col": 32, + "end_line": 122, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc20/library.cairo" + }, + "start_col": 26, + "start_line": 122 + }, + "While expanding the reference 'sender' in:" + ], + "start_col": 9, + "start_line": 119 + } + }, + "733": { + "accessible_scopes": [ + "openzeppelin.token.erc20.library", + "openzeppelin.token.erc20.library.ERC20", + "openzeppelin.token.erc20.library.ERC20.transfer_from" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 20, + "end_line": 121, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc20/library.cairo" + }, + "parent_location": [ + { + "end_col": 40, + "end_line": 122, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc20/library.cairo" + }, + "start_col": 34, + "start_line": 122 + }, + "While expanding the reference 'caller' in:" + ], + "start_col": 14, + "start_line": 121 + } + }, + "734": { + "accessible_scopes": [ + "openzeppelin.token.erc20.library", + "openzeppelin.token.erc20.library.ERC20", + "openzeppelin.token.erc20.library.ERC20.transfer_from" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 55, + "end_line": 119, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc20/library.cairo" + }, + "parent_location": [ + { + "end_col": 48, + "end_line": 122, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc20/library.cairo" + }, + "start_col": 42, + "start_line": 122 + }, + "While expanding the reference 'amount' in:" + ], + "start_col": 40, + "start_line": 119 + } + }, + "735": { + "accessible_scopes": [ + "openzeppelin.token.erc20.library", + "openzeppelin.token.erc20.library.ERC20", + "openzeppelin.token.erc20.library.ERC20.transfer_from" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 55, + "end_line": 119, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc20/library.cairo" + }, + "parent_location": [ + { + "end_col": 48, + "end_line": 122, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc20/library.cairo" + }, + "start_col": 42, + "start_line": 122 + }, + "While expanding the reference 'amount' in:" + ], + "start_col": 40, + "start_line": 119 + } + }, + "736": { + "accessible_scopes": [ + "openzeppelin.token.erc20.library", + "openzeppelin.token.erc20.library.ERC20", + "openzeppelin.token.erc20.library.ERC20.transfer_from" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 49, + "end_line": 122, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc20/library.cairo" + }, + "start_col": 9, + "start_line": 122 + } + }, + "738": { + "accessible_scopes": [ + "openzeppelin.token.erc20.library", + "openzeppelin.token.erc20.library.ERC20", + "openzeppelin.token.erc20.library.ERC20.transfer_from" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 21, + "end_line": 119, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc20/library.cairo" + }, + "parent_location": [ + { + "end_col": 25, + "end_line": 123, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc20/library.cairo" + }, + "start_col": 19, + "start_line": 123 + }, + "While expanding the reference 'sender' in:" + ], + "start_col": 9, + "start_line": 119 + } + }, + "739": { + "accessible_scopes": [ + "openzeppelin.token.erc20.library", + "openzeppelin.token.erc20.library.ERC20", + "openzeppelin.token.erc20.library.ERC20.transfer_from" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 38, + "end_line": 119, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc20/library.cairo" + }, + "parent_location": [ + { + "end_col": 36, + "end_line": 123, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc20/library.cairo" + }, + "start_col": 27, + "start_line": 123 + }, + "While expanding the reference 'recipient' in:" + ], + "start_col": 23, + "start_line": 119 + } + }, + "740": { + "accessible_scopes": [ + "openzeppelin.token.erc20.library", + "openzeppelin.token.erc20.library.ERC20", + "openzeppelin.token.erc20.library.ERC20.transfer_from" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 55, + "end_line": 119, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc20/library.cairo" + }, + "parent_location": [ + { + "end_col": 44, + "end_line": 123, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc20/library.cairo" + }, + "start_col": 38, + "start_line": 123 + }, + "While expanding the reference 'amount' in:" + ], + "start_col": 40, + "start_line": 119 + } + }, + "741": { + "accessible_scopes": [ + "openzeppelin.token.erc20.library", + "openzeppelin.token.erc20.library.ERC20", + "openzeppelin.token.erc20.library.ERC20.transfer_from" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 55, + "end_line": 119, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc20/library.cairo" + }, + "parent_location": [ + { + "end_col": 44, + "end_line": 123, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc20/library.cairo" + }, + "start_col": 38, + "start_line": 123 + }, + "While expanding the reference 'amount' in:" + ], + "start_col": 40, + "start_line": 119 + } + }, + "742": { + "accessible_scopes": [ + "openzeppelin.token.erc20.library", + "openzeppelin.token.erc20.library.ERC20", + "openzeppelin.token.erc20.library.ERC20.transfer_from" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 45, + "end_line": 123, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc20/library.cairo" + }, + "start_col": 9, + "start_line": 123 + } + }, + "744": { + "accessible_scopes": [ + "openzeppelin.token.erc20.library", + "openzeppelin.token.erc20.library.ERC20", + "openzeppelin.token.erc20.library.ERC20.transfer_from" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 29, + "end_line": 124, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc20/library.cairo" + }, + "start_col": 25, + "start_line": 124 + } + }, + "746": { + "accessible_scopes": [ + "openzeppelin.token.erc20.library", + "openzeppelin.token.erc20.library.ERC20", + "openzeppelin.token.erc20.library.ERC20.transfer_from" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 31, + "end_line": 124, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc20/library.cairo" + }, + "start_col": 9, + "start_line": 124 + } + }, + "747": { + "accessible_scopes": [ + "openzeppelin.token.erc20.library", + "openzeppelin.token.erc20.library.ERC20", + "openzeppelin.token.erc20.library.ERC20.approve" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 81, + "end_line": 127, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc20/library.cairo" + }, + "parent_location": [ + { + "end_col": 35, + "end_line": 21, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/uint256.cairo" + }, + "parent_location": [ + { + "end_col": 34, + "end_line": 131, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc20/library.cairo" + }, + "start_col": 13, + "start_line": 131 + }, + "While trying to retrieve the implicit argument 'range_check_ptr' in:" + ], + "start_col": 20, + "start_line": 21 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 66, + "start_line": 127 + } + }, + "748": { + "accessible_scopes": [ + "openzeppelin.token.erc20.library", + "openzeppelin.token.erc20.library.ERC20", + "openzeppelin.token.erc20.library.ERC20.approve" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 39, + "end_line": 128, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc20/library.cairo" + }, + "parent_location": [ + { + "end_col": 33, + "end_line": 131, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc20/library.cairo" + }, + "start_col": 27, + "start_line": 131 + }, + "While expanding the reference 'amount' in:" + ], + "start_col": 24, + "start_line": 128 + } + }, + "749": { + "accessible_scopes": [ + "openzeppelin.token.erc20.library", + "openzeppelin.token.erc20.library.ERC20", + "openzeppelin.token.erc20.library.ERC20.approve" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 39, + "end_line": 128, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc20/library.cairo" + }, + "parent_location": [ + { + "end_col": 33, + "end_line": 131, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc20/library.cairo" + }, + "start_col": 27, + "start_line": 131 + }, + "While expanding the reference 'amount' in:" + ], + "start_col": 24, + "start_line": 128 + } + }, + "750": { + "accessible_scopes": [ + "openzeppelin.token.erc20.library", + "openzeppelin.token.erc20.library.ERC20", + "openzeppelin.token.erc20.library.ERC20.approve" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 34, + "end_line": 131, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc20/library.cairo" + }, + "start_col": 13, + "start_line": 131 + } + }, + "752": { + "accessible_scopes": [ + "openzeppelin.token.erc20.library", + "openzeppelin.token.erc20.library.ERC20", + "openzeppelin.token.erc20.library.ERC20.approve" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 36, + "end_line": 127, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc20/library.cairo" + }, + "parent_location": [ + { + "end_col": 43, + "end_line": 200, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/starknet/common/syscalls.cairo" + }, + "parent_location": [ + { + "end_col": 44, + "end_line": 134, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc20/library.cairo" + }, + "start_col": 24, + "start_line": 134 + }, + "While trying to retrieve the implicit argument 'syscall_ptr' in:" + ], + "start_col": 25, + "start_line": 200 + }, + "While expanding the reference 'syscall_ptr' in:" + ], + "start_col": 18, + "start_line": 127 + } + }, + "753": { + "accessible_scopes": [ + "openzeppelin.token.erc20.library", + "openzeppelin.token.erc20.library.ERC20", + "openzeppelin.token.erc20.library.ERC20.approve" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 44, + "end_line": 134, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc20/library.cairo" + }, + "start_col": 24, + "start_line": 134 + } + }, + "755": { + "accessible_scopes": [ + "openzeppelin.token.erc20.library", + "openzeppelin.token.erc20.library.ERC20", + "openzeppelin.token.erc20.library.ERC20.approve" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 43, + "end_line": 200, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/starknet/common/syscalls.cairo" + }, + "parent_location": [ + { + "end_col": 44, + "end_line": 134, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc20/library.cairo" + }, + "parent_location": [ + { + "end_col": 37, + "end_line": 264, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc20/library.cairo" + }, + "parent_location": [ + { + "end_col": 42, + "end_line": 135, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc20/library.cairo" + }, + "start_col": 9, + "start_line": 135 + }, + "While trying to retrieve the implicit argument 'syscall_ptr' in:" + ], + "start_col": 19, + "start_line": 264 + }, + "While expanding the reference 'syscall_ptr' in:" + ], + "start_col": 24, + "start_line": 134 + }, + "While trying to update the implicit return value 'syscall_ptr' in:" + ], + "start_col": 25, + "start_line": 200 + } + }, + "756": { + "accessible_scopes": [ + "openzeppelin.token.erc20.library", + "openzeppelin.token.erc20.library.ERC20", + "openzeppelin.token.erc20.library.ERC20.approve" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 64, + "end_line": 127, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc20/library.cairo" + }, + "parent_location": [ + { + "end_col": 65, + "end_line": 264, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc20/library.cairo" + }, + "parent_location": [ + { + "end_col": 42, + "end_line": 135, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc20/library.cairo" + }, + "start_col": 9, + "start_line": 135 + }, + "While trying to retrieve the implicit argument 'pedersen_ptr' in:" + ], + "start_col": 39, + "start_line": 264 + }, + "While expanding the reference 'pedersen_ptr' in:" + ], + "start_col": 38, + "start_line": 127 + } + }, + "757": { + "accessible_scopes": [ + "openzeppelin.token.erc20.library", + "openzeppelin.token.erc20.library.ERC20", + "openzeppelin.token.erc20.library.ERC20.approve" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 35, + "end_line": 21, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/uint256.cairo" + }, + "parent_location": [ + { + "end_col": 34, + "end_line": 131, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc20/library.cairo" + }, + "parent_location": [ + { + "end_col": 82, + "end_line": 264, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc20/library.cairo" + }, + "parent_location": [ + { + "end_col": 42, + "end_line": 135, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc20/library.cairo" + }, + "start_col": 9, + "start_line": 135 + }, + "While trying to retrieve the implicit argument 'range_check_ptr' in:" + ], + "start_col": 67, + "start_line": 264 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 13, + "start_line": 131 + }, + "While trying to update the implicit return value 'range_check_ptr' in:" + ], + "start_col": 20, + "start_line": 21 + } + }, + "758": { + "accessible_scopes": [ + "openzeppelin.token.erc20.library", + "openzeppelin.token.erc20.library.ERC20", + "openzeppelin.token.erc20.library.ERC20.approve" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 20, + "end_line": 134, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc20/library.cairo" + }, + "parent_location": [ + { + "end_col": 24, + "end_line": 135, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc20/library.cairo" + }, + "start_col": 18, + "start_line": 135 + }, + "While expanding the reference 'caller' in:" + ], + "start_col": 14, + "start_line": 134 + } + }, + "759": { + "accessible_scopes": [ + "openzeppelin.token.erc20.library", + "openzeppelin.token.erc20.library.ERC20", + "openzeppelin.token.erc20.library.ERC20.approve" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 22, + "end_line": 128, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc20/library.cairo" + }, + "parent_location": [ + { + "end_col": 33, + "end_line": 135, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc20/library.cairo" + }, + "start_col": 26, + "start_line": 135 + }, + "While expanding the reference 'spender' in:" + ], + "start_col": 9, + "start_line": 128 + } + }, + "760": { + "accessible_scopes": [ + "openzeppelin.token.erc20.library", + "openzeppelin.token.erc20.library.ERC20", + "openzeppelin.token.erc20.library.ERC20.approve" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 39, + "end_line": 128, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc20/library.cairo" + }, + "parent_location": [ + { + "end_col": 41, + "end_line": 135, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc20/library.cairo" + }, + "start_col": 35, + "start_line": 135 + }, + "While expanding the reference 'amount' in:" + ], + "start_col": 24, + "start_line": 128 + } + }, + "761": { + "accessible_scopes": [ + "openzeppelin.token.erc20.library", + "openzeppelin.token.erc20.library.ERC20", + "openzeppelin.token.erc20.library.ERC20.approve" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 39, + "end_line": 128, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc20/library.cairo" + }, + "parent_location": [ + { + "end_col": 41, + "end_line": 135, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc20/library.cairo" + }, + "start_col": 35, + "start_line": 135 + }, + "While expanding the reference 'amount' in:" + ], + "start_col": 24, + "start_line": 128 + } + }, + "762": { + "accessible_scopes": [ + "openzeppelin.token.erc20.library", + "openzeppelin.token.erc20.library.ERC20", + "openzeppelin.token.erc20.library.ERC20.approve" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 42, + "end_line": 135, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc20/library.cairo" + }, + "start_col": 9, + "start_line": 135 + } + }, + "764": { + "accessible_scopes": [ + "openzeppelin.token.erc20.library", + "openzeppelin.token.erc20.library.ERC20", + "openzeppelin.token.erc20.library.ERC20.approve" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 29, + "end_line": 136, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc20/library.cairo" + }, + "start_col": 25, + "start_line": 136 + } + }, + "766": { + "accessible_scopes": [ + "openzeppelin.token.erc20.library", + "openzeppelin.token.erc20.library.ERC20", + "openzeppelin.token.erc20.library.ERC20.approve" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 31, + "end_line": 136, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc20/library.cairo" + }, + "start_col": 9, + "start_line": 136 + } + }, + "767": { + "accessible_scopes": [ + "openzeppelin.token.erc20.library", + "openzeppelin.token.erc20.library.ERC20", + "openzeppelin.token.erc20.library.ERC20.increase_allowance" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 92, + "end_line": 139, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc20/library.cairo" + }, + "parent_location": [ + { + "end_col": 35, + "end_line": 21, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/uint256.cairo" + }, + "parent_location": [ + { + "end_col": 39, + "end_line": 143, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc20/library.cairo" + }, + "start_col": 13, + "start_line": 143 + }, + "While trying to retrieve the implicit argument 'range_check_ptr' in:" + ], + "start_col": 20, + "start_line": 21 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 77, + "start_line": 139 + } + }, + "768": { + "accessible_scopes": [ + "openzeppelin.token.erc20.library", + "openzeppelin.token.erc20.library.ERC20", + "openzeppelin.token.erc20.library.ERC20.increase_allowance" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 44, + "end_line": 140, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc20/library.cairo" + }, + "parent_location": [ + { + "end_col": 38, + "end_line": 143, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc20/library.cairo" + }, + "start_col": 27, + "start_line": 143 + }, + "While expanding the reference 'added_value' in:" + ], + "start_col": 24, + "start_line": 140 + } + }, + "769": { + "accessible_scopes": [ + "openzeppelin.token.erc20.library", + "openzeppelin.token.erc20.library.ERC20", + "openzeppelin.token.erc20.library.ERC20.increase_allowance" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 44, + "end_line": 140, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc20/library.cairo" + }, + "parent_location": [ + { + "end_col": 38, + "end_line": 143, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc20/library.cairo" + }, + "start_col": 27, + "start_line": 143 + }, + "While expanding the reference 'added_value' in:" + ], + "start_col": 24, + "start_line": 140 + } + }, + "770": { + "accessible_scopes": [ + "openzeppelin.token.erc20.library", + "openzeppelin.token.erc20.library.ERC20", + "openzeppelin.token.erc20.library.ERC20.increase_allowance" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 39, + "end_line": 143, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc20/library.cairo" + }, + "start_col": 13, + "start_line": 143 + } + }, + "772": { + "accessible_scopes": [ + "openzeppelin.token.erc20.library", + "openzeppelin.token.erc20.library.ERC20", + "openzeppelin.token.erc20.library.ERC20.increase_allowance" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 47, + "end_line": 139, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc20/library.cairo" + }, + "parent_location": [ + { + "end_col": 43, + "end_line": 200, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/starknet/common/syscalls.cairo" + }, + "parent_location": [ + { + "end_col": 44, + "end_line": 146, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc20/library.cairo" + }, + "start_col": 24, + "start_line": 146 + }, + "While trying to retrieve the implicit argument 'syscall_ptr' in:" + ], + "start_col": 25, + "start_line": 200 + }, + "While expanding the reference 'syscall_ptr' in:" + ], + "start_col": 29, + "start_line": 139 + } + }, + "773": { + "accessible_scopes": [ + "openzeppelin.token.erc20.library", + "openzeppelin.token.erc20.library.ERC20", + "openzeppelin.token.erc20.library.ERC20.increase_allowance" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 44, + "end_line": 146, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc20/library.cairo" + }, + "start_col": 24, + "start_line": 146 + } + }, + "775": { + "accessible_scopes": [ + "openzeppelin.token.erc20.library", + "openzeppelin.token.erc20.library.ERC20", + "openzeppelin.token.erc20.library.ERC20.increase_allowance" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 43, + "end_line": 200, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/starknet/common/syscalls.cairo" + }, + "parent_location": [ + { + "end_col": 44, + "end_line": 146, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc20/library.cairo" + }, + "parent_location": [ + { + "end_col": 33, + "end_line": 15, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC20_allowances/decl.cairo" + }, + "parent_location": [ + { + "end_col": 82, + "end_line": 147, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc20/library.cairo" + }, + "start_col": 44, + "start_line": 147 + }, + "While trying to retrieve the implicit argument 'syscall_ptr' in:" + ], + "start_col": 15, + "start_line": 15 + }, + "While expanding the reference 'syscall_ptr' in:" + ], + "start_col": 24, + "start_line": 146 + }, + "While trying to update the implicit return value 'syscall_ptr' in:" + ], + "start_col": 25, + "start_line": 200 + } + }, + "776": { + "accessible_scopes": [ + "openzeppelin.token.erc20.library", + "openzeppelin.token.erc20.library.ERC20", + "openzeppelin.token.erc20.library.ERC20.increase_allowance" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 75, + "end_line": 139, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc20/library.cairo" + }, + "parent_location": [ + { + "end_col": 61, + "end_line": 15, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC20_allowances/decl.cairo" + }, + "parent_location": [ + { + "end_col": 82, + "end_line": 147, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc20/library.cairo" + }, + "start_col": 44, + "start_line": 147 + }, + "While trying to retrieve the implicit argument 'pedersen_ptr' in:" + ], + "start_col": 35, + "start_line": 15 + }, + "While expanding the reference 'pedersen_ptr' in:" + ], + "start_col": 49, + "start_line": 139 + } + }, + "777": { + "accessible_scopes": [ + "openzeppelin.token.erc20.library", + "openzeppelin.token.erc20.library.ERC20", + "openzeppelin.token.erc20.library.ERC20.increase_allowance" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 35, + "end_line": 21, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/uint256.cairo" + }, + "parent_location": [ + { + "end_col": 39, + "end_line": 143, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc20/library.cairo" + }, + "parent_location": [ + { + "end_col": 78, + "end_line": 15, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC20_allowances/decl.cairo" + }, + "parent_location": [ + { + "end_col": 82, + "end_line": 147, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc20/library.cairo" + }, + "start_col": 44, + "start_line": 147 + }, + "While trying to retrieve the implicit argument 'range_check_ptr' in:" + ], + "start_col": 63, + "start_line": 15 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 13, + "start_line": 143 + }, + "While trying to update the implicit return value 'range_check_ptr' in:" + ], + "start_col": 20, + "start_line": 21 + } + }, + "778": { + "accessible_scopes": [ + "openzeppelin.token.erc20.library", + "openzeppelin.token.erc20.library.ERC20", + "openzeppelin.token.erc20.library.ERC20.increase_allowance" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 20, + "end_line": 146, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc20/library.cairo" + }, + "parent_location": [ + { + "end_col": 72, + "end_line": 147, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc20/library.cairo" + }, + "start_col": 66, + "start_line": 147 + }, + "While expanding the reference 'caller' in:" + ], + "start_col": 14, + "start_line": 146 + } + }, + "779": { + "accessible_scopes": [ + "openzeppelin.token.erc20.library", + "openzeppelin.token.erc20.library.ERC20", + "openzeppelin.token.erc20.library.ERC20.increase_allowance" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 22, + "end_line": 140, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc20/library.cairo" + }, + "parent_location": [ + { + "end_col": 81, + "end_line": 147, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc20/library.cairo" + }, + "start_col": 74, + "start_line": 147 + }, + "While expanding the reference 'spender' in:" + ], + "start_col": 9, + "start_line": 140 + } + }, + "780": { + "accessible_scopes": [ + "openzeppelin.token.erc20.library", + "openzeppelin.token.erc20.library.ERC20", + "openzeppelin.token.erc20.library.ERC20.increase_allowance" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 82, + "end_line": 147, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc20/library.cairo" + }, + "start_col": 44, + "start_line": 147 + } + }, + "782": { + "accessible_scopes": [ + "openzeppelin.token.erc20.library", + "openzeppelin.token.erc20.library.ERC20", + "openzeppelin.token.erc20.library.ERC20.increase_allowance" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 44, + "end_line": 140, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc20/library.cairo" + }, + "parent_location": [ + { + "end_col": 90, + "end_line": 151, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc20/library.cairo" + }, + "start_col": 79, + "start_line": 151 + }, + "While expanding the reference 'added_value' in:" + ], + "start_col": 24, + "start_line": 140 + } + }, + "783": { + "accessible_scopes": [ + "openzeppelin.token.erc20.library", + "openzeppelin.token.erc20.library.ERC20", + "openzeppelin.token.erc20.library.ERC20.increase_allowance" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 44, + "end_line": 140, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc20/library.cairo" + }, + "parent_location": [ + { + "end_col": 90, + "end_line": 151, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc20/library.cairo" + }, + "start_col": 79, + "start_line": 151 + }, + "While expanding the reference 'added_value' in:" + ], + "start_col": 24, + "start_line": 140 + } + }, + "784": { + "accessible_scopes": [ + "openzeppelin.token.erc20.library", + "openzeppelin.token.erc20.library.ERC20", + "openzeppelin.token.erc20.library.ERC20.increase_allowance" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 91, + "end_line": 151, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc20/library.cairo" + }, + "start_col": 44, + "start_line": 151 + } + }, + "786": { + "accessible_scopes": [ + "openzeppelin.token.erc20.library", + "openzeppelin.token.erc20.library.ERC20", + "openzeppelin.token.erc20.library.ERC20.increase_allowance" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 33, + "end_line": 15, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC20_allowances/decl.cairo" + }, + "parent_location": [ + { + "end_col": 82, + "end_line": 147, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc20/library.cairo" + }, + "parent_location": [ + { + "end_col": 37, + "end_line": 264, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc20/library.cairo" + }, + "parent_location": [ + { + "end_col": 49, + "end_line": 154, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc20/library.cairo" + }, + "start_col": 9, + "start_line": 154 + }, + "While trying to retrieve the implicit argument 'syscall_ptr' in:" + ], + "start_col": 19, + "start_line": 264 + }, + "While expanding the reference 'syscall_ptr' in:" + ], + "start_col": 44, + "start_line": 147 + }, + "While trying to update the implicit return value 'syscall_ptr' in:" + ], + "start_col": 15, + "start_line": 15 + } + }, + "787": { + "accessible_scopes": [ + "openzeppelin.token.erc20.library", + "openzeppelin.token.erc20.library.ERC20", + "openzeppelin.token.erc20.library.ERC20.increase_allowance" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 61, + "end_line": 15, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC20_allowances/decl.cairo" + }, + "parent_location": [ + { + "end_col": 82, + "end_line": 147, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc20/library.cairo" + }, + "parent_location": [ + { + "end_col": 65, + "end_line": 264, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc20/library.cairo" + }, + "parent_location": [ + { + "end_col": 49, + "end_line": 154, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc20/library.cairo" + }, + "start_col": 9, + "start_line": 154 + }, + "While trying to retrieve the implicit argument 'pedersen_ptr' in:" + ], + "start_col": 39, + "start_line": 264 + }, + "While expanding the reference 'pedersen_ptr' in:" + ], + "start_col": 44, + "start_line": 147 + }, + "While trying to update the implicit return value 'pedersen_ptr' in:" + ], + "start_col": 35, + "start_line": 15 + } + }, + "788": { + "accessible_scopes": [ + "openzeppelin.token.erc20.library", + "openzeppelin.token.erc20.library.ERC20", + "openzeppelin.token.erc20.library.ERC20.increase_allowance" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 29, + "end_line": 23, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/security/safemath/library.cairo" + }, + "parent_location": [ + { + "end_col": 91, + "end_line": 151, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc20/library.cairo" + }, + "parent_location": [ + { + "end_col": 82, + "end_line": 264, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc20/library.cairo" + }, + "parent_location": [ + { + "end_col": 49, + "end_line": 154, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc20/library.cairo" + }, + "start_col": 9, + "start_line": 154 + }, + "While trying to retrieve the implicit argument 'range_check_ptr' in:" + ], + "start_col": 67, + "start_line": 264 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 44, + "start_line": 151 + }, + "While trying to update the implicit return value 'range_check_ptr' in:" + ], + "start_col": 14, + "start_line": 23 + } + }, + "789": { + "accessible_scopes": [ + "openzeppelin.token.erc20.library", + "openzeppelin.token.erc20.library.ERC20", + "openzeppelin.token.erc20.library.ERC20.increase_allowance" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 20, + "end_line": 146, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc20/library.cairo" + }, + "parent_location": [ + { + "end_col": 24, + "end_line": 154, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc20/library.cairo" + }, + "start_col": 18, + "start_line": 154 + }, + "While expanding the reference 'caller' in:" + ], + "start_col": 14, + "start_line": 146 + } + }, + "790": { + "accessible_scopes": [ + "openzeppelin.token.erc20.library", + "openzeppelin.token.erc20.library.ERC20", + "openzeppelin.token.erc20.library.ERC20.increase_allowance" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 22, + "end_line": 140, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc20/library.cairo" + }, + "parent_location": [ + { + "end_col": 33, + "end_line": 154, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc20/library.cairo" + }, + "start_col": 26, + "start_line": 154 + }, + "While expanding the reference 'spender' in:" + ], + "start_col": 9, + "start_line": 140 + } + }, + "791": { + "accessible_scopes": [ + "openzeppelin.token.erc20.library", + "openzeppelin.token.erc20.library.ERC20", + "openzeppelin.token.erc20.library.ERC20.increase_allowance" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 40, + "end_line": 151, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc20/library.cairo" + }, + "parent_location": [ + { + "end_col": 48, + "end_line": 154, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc20/library.cairo" + }, + "start_col": 35, + "start_line": 154 + }, + "While expanding the reference 'new_allowance' in:" + ], + "start_col": 18, + "start_line": 151 + } + }, + "792": { + "accessible_scopes": [ + "openzeppelin.token.erc20.library", + "openzeppelin.token.erc20.library.ERC20", + "openzeppelin.token.erc20.library.ERC20.increase_allowance" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 40, + "end_line": 151, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc20/library.cairo" + }, + "parent_location": [ + { + "end_col": 48, + "end_line": 154, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc20/library.cairo" + }, + "start_col": 35, + "start_line": 154 + }, + "While expanding the reference 'new_allowance' in:" + ], + "start_col": 18, + "start_line": 151 + } + }, + "793": { + "accessible_scopes": [ + "openzeppelin.token.erc20.library", + "openzeppelin.token.erc20.library.ERC20", + "openzeppelin.token.erc20.library.ERC20.increase_allowance" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 49, + "end_line": 154, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc20/library.cairo" + }, + "start_col": 9, + "start_line": 154 + } + }, + "795": { + "accessible_scopes": [ + "openzeppelin.token.erc20.library", + "openzeppelin.token.erc20.library.ERC20", + "openzeppelin.token.erc20.library.ERC20.increase_allowance" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 29, + "end_line": 155, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc20/library.cairo" + }, + "start_col": 25, + "start_line": 155 + } + }, + "797": { + "accessible_scopes": [ + "openzeppelin.token.erc20.library", + "openzeppelin.token.erc20.library.ERC20", + "openzeppelin.token.erc20.library.ERC20.increase_allowance" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 31, + "end_line": 155, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc20/library.cairo" + }, + "start_col": 9, + "start_line": 155 + } + }, + "798": { + "accessible_scopes": [ + "openzeppelin.token.erc20.library", + "openzeppelin.token.erc20.library.ERC20", + "openzeppelin.token.erc20.library.ERC20.decrease_allowance" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 22, + "end_line": 161, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc20/library.cairo" + }, + "start_col": 9, + "start_line": 161 + } + }, + "800": { + "accessible_scopes": [ + "openzeppelin.token.erc20.library", + "openzeppelin.token.erc20.library.ERC20", + "openzeppelin.token.erc20.library.ERC20.decrease_allowance" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 92, + "end_line": 158, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc20/library.cairo" + }, + "parent_location": [ + { + "end_col": 35, + "end_line": 21, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/uint256.cairo" + }, + "parent_location": [ + { + "end_col": 44, + "end_line": 163, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc20/library.cairo" + }, + "start_col": 13, + "start_line": 163 + }, + "While trying to retrieve the implicit argument 'range_check_ptr' in:" + ], + "start_col": 20, + "start_line": 21 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 77, + "start_line": 158 + } + }, + "801": { + "accessible_scopes": [ + "openzeppelin.token.erc20.library", + "openzeppelin.token.erc20.library.ERC20", + "openzeppelin.token.erc20.library.ERC20.decrease_allowance" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 49, + "end_line": 159, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc20/library.cairo" + }, + "parent_location": [ + { + "end_col": 43, + "end_line": 163, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc20/library.cairo" + }, + "start_col": 27, + "start_line": 163 + }, + "While expanding the reference 'subtracted_value' in:" + ], + "start_col": 24, + "start_line": 159 + } + }, + "802": { + "accessible_scopes": [ + "openzeppelin.token.erc20.library", + "openzeppelin.token.erc20.library.ERC20", + "openzeppelin.token.erc20.library.ERC20.decrease_allowance" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 49, + "end_line": 159, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc20/library.cairo" + }, + "parent_location": [ + { + "end_col": 43, + "end_line": 163, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc20/library.cairo" + }, + "start_col": 27, + "start_line": 163 + }, + "While expanding the reference 'subtracted_value' in:" + ], + "start_col": 24, + "start_line": 159 + } + }, + "803": { + "accessible_scopes": [ + "openzeppelin.token.erc20.library", + "openzeppelin.token.erc20.library.ERC20", + "openzeppelin.token.erc20.library.ERC20.decrease_allowance" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 44, + "end_line": 163, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc20/library.cairo" + }, + "start_col": 13, + "start_line": 163 + } + }, + "805": { + "accessible_scopes": [ + "openzeppelin.token.erc20.library", + "openzeppelin.token.erc20.library.ERC20", + "openzeppelin.token.erc20.library.ERC20.decrease_allowance" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 47, + "end_line": 158, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc20/library.cairo" + }, + "parent_location": [ + { + "end_col": 43, + "end_line": 200, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/starknet/common/syscalls.cairo" + }, + "parent_location": [ + { + "end_col": 44, + "end_line": 166, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc20/library.cairo" + }, + "start_col": 24, + "start_line": 166 + }, + "While trying to retrieve the implicit argument 'syscall_ptr' in:" + ], + "start_col": 25, + "start_line": 200 + }, + "While expanding the reference 'syscall_ptr' in:" + ], + "start_col": 29, + "start_line": 158 + } + }, + "806": { + "accessible_scopes": [ + "openzeppelin.token.erc20.library", + "openzeppelin.token.erc20.library.ERC20", + "openzeppelin.token.erc20.library.ERC20.decrease_allowance" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 44, + "end_line": 166, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc20/library.cairo" + }, + "start_col": 24, + "start_line": 166 + } + }, + "808": { + "accessible_scopes": [ + "openzeppelin.token.erc20.library", + "openzeppelin.token.erc20.library.ERC20", + "openzeppelin.token.erc20.library.ERC20.decrease_allowance" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 43, + "end_line": 200, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/starknet/common/syscalls.cairo" + }, + "parent_location": [ + { + "end_col": 44, + "end_line": 166, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc20/library.cairo" + }, + "parent_location": [ + { + "end_col": 33, + "end_line": 15, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC20_allowances/decl.cairo" + }, + "parent_location": [ + { + "end_col": 96, + "end_line": 167, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc20/library.cairo" + }, + "start_col": 44, + "start_line": 167 + }, + "While trying to retrieve the implicit argument 'syscall_ptr' in:" + ], + "start_col": 15, + "start_line": 15 + }, + "While expanding the reference 'syscall_ptr' in:" + ], + "start_col": 24, + "start_line": 166 + }, + "While trying to update the implicit return value 'syscall_ptr' in:" + ], + "start_col": 25, + "start_line": 200 + } + }, + "809": { + "accessible_scopes": [ + "openzeppelin.token.erc20.library", + "openzeppelin.token.erc20.library.ERC20", + "openzeppelin.token.erc20.library.ERC20.decrease_allowance" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 75, + "end_line": 158, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc20/library.cairo" + }, + "parent_location": [ + { + "end_col": 61, + "end_line": 15, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC20_allowances/decl.cairo" + }, + "parent_location": [ + { + "end_col": 96, + "end_line": 167, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc20/library.cairo" + }, + "start_col": 44, + "start_line": 167 + }, + "While trying to retrieve the implicit argument 'pedersen_ptr' in:" + ], + "start_col": 35, + "start_line": 15 + }, + "While expanding the reference 'pedersen_ptr' in:" + ], + "start_col": 49, + "start_line": 158 + } + }, + "810": { + "accessible_scopes": [ + "openzeppelin.token.erc20.library", + "openzeppelin.token.erc20.library.ERC20", + "openzeppelin.token.erc20.library.ERC20.decrease_allowance" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 35, + "end_line": 21, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/uint256.cairo" + }, + "parent_location": [ + { + "end_col": 44, + "end_line": 163, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc20/library.cairo" + }, + "parent_location": [ + { + "end_col": 78, + "end_line": 15, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC20_allowances/decl.cairo" + }, + "parent_location": [ + { + "end_col": 96, + "end_line": 167, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc20/library.cairo" + }, + "start_col": 44, + "start_line": 167 + }, + "While trying to retrieve the implicit argument 'range_check_ptr' in:" + ], + "start_col": 63, + "start_line": 15 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 13, + "start_line": 163 + }, + "While trying to update the implicit return value 'range_check_ptr' in:" + ], + "start_col": 20, + "start_line": 21 + } + }, + "811": { + "accessible_scopes": [ + "openzeppelin.token.erc20.library", + "openzeppelin.token.erc20.library.ERC20", + "openzeppelin.token.erc20.library.ERC20.decrease_allowance" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 20, + "end_line": 166, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc20/library.cairo" + }, + "parent_location": [ + { + "end_col": 78, + "end_line": 167, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc20/library.cairo" + }, + "start_col": 72, + "start_line": 167 + }, + "While expanding the reference 'caller' in:" + ], + "start_col": 14, + "start_line": 166 + } + }, + "812": { + "accessible_scopes": [ + "openzeppelin.token.erc20.library", + "openzeppelin.token.erc20.library.ERC20", + "openzeppelin.token.erc20.library.ERC20.decrease_allowance" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 22, + "end_line": 159, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc20/library.cairo" + }, + "parent_location": [ + { + "end_col": 95, + "end_line": 167, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc20/library.cairo" + }, + "start_col": 88, + "start_line": 167 + }, + "While expanding the reference 'spender' in:" + ], + "start_col": 9, + "start_line": 159 + } + }, + "813": { + "accessible_scopes": [ + "openzeppelin.token.erc20.library", + "openzeppelin.token.erc20.library.ERC20", + "openzeppelin.token.erc20.library.ERC20.decrease_allowance" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 96, + "end_line": 167, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc20/library.cairo" + }, + "start_col": 44, + "start_line": 167 + } + }, + "815": { + "accessible_scopes": [ + "openzeppelin.token.erc20.library", + "openzeppelin.token.erc20.library.ERC20", + "openzeppelin.token.erc20.library.ERC20.decrease_allowance" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 49, + "end_line": 159, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc20/library.cairo" + }, + "parent_location": [ + { + "end_col": 98, + "end_line": 170, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc20/library.cairo" + }, + "start_col": 82, + "start_line": 170 + }, + "While expanding the reference 'subtracted_value' in:" + ], + "start_col": 24, + "start_line": 159 + } + }, + "816": { + "accessible_scopes": [ + "openzeppelin.token.erc20.library", + "openzeppelin.token.erc20.library.ERC20", + "openzeppelin.token.erc20.library.ERC20.decrease_allowance" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 49, + "end_line": 159, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc20/library.cairo" + }, + "parent_location": [ + { + "end_col": 98, + "end_line": 170, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc20/library.cairo" + }, + "start_col": 82, + "start_line": 170 + }, + "While expanding the reference 'subtracted_value' in:" + ], + "start_col": 24, + "start_line": 159 + } + }, + "817": { + "accessible_scopes": [ + "openzeppelin.token.erc20.library", + "openzeppelin.token.erc20.library.ERC20", + "openzeppelin.token.erc20.library.ERC20.decrease_allowance" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 99, + "end_line": 170, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc20/library.cairo" + }, + "start_col": 44, + "start_line": 170 + } + }, + "819": { + "accessible_scopes": [ + "openzeppelin.token.erc20.library", + "openzeppelin.token.erc20.library.ERC20", + "openzeppelin.token.erc20.library.ERC20.decrease_allowance" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 33, + "end_line": 15, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC20_allowances/decl.cairo" + }, + "parent_location": [ + { + "end_col": 96, + "end_line": 167, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc20/library.cairo" + }, + "parent_location": [ + { + "end_col": 37, + "end_line": 264, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc20/library.cairo" + }, + "parent_location": [ + { + "end_col": 49, + "end_line": 173, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc20/library.cairo" + }, + "start_col": 9, + "start_line": 173 + }, + "While trying to retrieve the implicit argument 'syscall_ptr' in:" + ], + "start_col": 19, + "start_line": 264 + }, + "While expanding the reference 'syscall_ptr' in:" + ], + "start_col": 44, + "start_line": 167 + }, + "While trying to update the implicit return value 'syscall_ptr' in:" + ], + "start_col": 15, + "start_line": 15 + } + }, + "820": { + "accessible_scopes": [ + "openzeppelin.token.erc20.library", + "openzeppelin.token.erc20.library.ERC20", + "openzeppelin.token.erc20.library.ERC20.decrease_allowance" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 61, + "end_line": 15, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC20_allowances/decl.cairo" + }, + "parent_location": [ + { + "end_col": 96, + "end_line": 167, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc20/library.cairo" + }, + "parent_location": [ + { + "end_col": 65, + "end_line": 264, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc20/library.cairo" + }, + "parent_location": [ + { + "end_col": 49, + "end_line": 173, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc20/library.cairo" + }, + "start_col": 9, + "start_line": 173 + }, + "While trying to retrieve the implicit argument 'pedersen_ptr' in:" + ], + "start_col": 39, + "start_line": 264 + }, + "While expanding the reference 'pedersen_ptr' in:" + ], + "start_col": 44, + "start_line": 167 + }, + "While trying to update the implicit return value 'pedersen_ptr' in:" + ], + "start_col": 35, + "start_line": 15 + } + }, + "821": { + "accessible_scopes": [ + "openzeppelin.token.erc20.library", + "openzeppelin.token.erc20.library.ERC20", + "openzeppelin.token.erc20.library.ERC20.decrease_allowance" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 32, + "end_line": 35, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/security/safemath/library.cairo" + }, + "parent_location": [ + { + "end_col": 99, + "end_line": 170, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc20/library.cairo" + }, + "parent_location": [ + { + "end_col": 82, + "end_line": 264, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc20/library.cairo" + }, + "parent_location": [ + { + "end_col": 49, + "end_line": 173, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc20/library.cairo" + }, + "start_col": 9, + "start_line": 173 + }, + "While trying to retrieve the implicit argument 'range_check_ptr' in:" + ], + "start_col": 67, + "start_line": 264 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 44, + "start_line": 170 + }, + "While trying to update the implicit return value 'range_check_ptr' in:" + ], + "start_col": 17, + "start_line": 35 + } + }, + "822": { + "accessible_scopes": [ + "openzeppelin.token.erc20.library", + "openzeppelin.token.erc20.library.ERC20", + "openzeppelin.token.erc20.library.ERC20.decrease_allowance" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 20, + "end_line": 166, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc20/library.cairo" + }, + "parent_location": [ + { + "end_col": 24, + "end_line": 173, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc20/library.cairo" + }, + "start_col": 18, + "start_line": 173 + }, + "While expanding the reference 'caller' in:" + ], + "start_col": 14, + "start_line": 166 + } + }, + "823": { + "accessible_scopes": [ + "openzeppelin.token.erc20.library", + "openzeppelin.token.erc20.library.ERC20", + "openzeppelin.token.erc20.library.ERC20.decrease_allowance" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 22, + "end_line": 159, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc20/library.cairo" + }, + "parent_location": [ + { + "end_col": 33, + "end_line": 173, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc20/library.cairo" + }, + "start_col": 26, + "start_line": 173 + }, + "While expanding the reference 'spender' in:" + ], + "start_col": 9, + "start_line": 159 + } + }, + "824": { + "accessible_scopes": [ + "openzeppelin.token.erc20.library", + "openzeppelin.token.erc20.library.ERC20", + "openzeppelin.token.erc20.library.ERC20.decrease_allowance" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 40, + "end_line": 170, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc20/library.cairo" + }, + "parent_location": [ + { + "end_col": 48, + "end_line": 173, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc20/library.cairo" + }, + "start_col": 35, + "start_line": 173 + }, + "While expanding the reference 'new_allowance' in:" + ], + "start_col": 18, + "start_line": 170 + } + }, + "825": { + "accessible_scopes": [ + "openzeppelin.token.erc20.library", + "openzeppelin.token.erc20.library.ERC20", + "openzeppelin.token.erc20.library.ERC20.decrease_allowance" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 40, + "end_line": 170, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc20/library.cairo" + }, + "parent_location": [ + { + "end_col": 48, + "end_line": 173, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc20/library.cairo" + }, + "start_col": 35, + "start_line": 173 + }, + "While expanding the reference 'new_allowance' in:" + ], + "start_col": 18, + "start_line": 170 + } + }, + "826": { + "accessible_scopes": [ + "openzeppelin.token.erc20.library", + "openzeppelin.token.erc20.library.ERC20", + "openzeppelin.token.erc20.library.ERC20.decrease_allowance" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 49, + "end_line": 173, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc20/library.cairo" + }, + "start_col": 9, + "start_line": 173 + } + }, + "828": { + "accessible_scopes": [ + "openzeppelin.token.erc20.library", + "openzeppelin.token.erc20.library.ERC20", + "openzeppelin.token.erc20.library.ERC20.decrease_allowance" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 29, + "end_line": 174, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc20/library.cairo" + }, + "start_col": 25, + "start_line": 174 + } + }, + "830": { + "accessible_scopes": [ + "openzeppelin.token.erc20.library", + "openzeppelin.token.erc20.library.ERC20", + "openzeppelin.token.erc20.library.ERC20.decrease_allowance" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 31, + "end_line": 174, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc20/library.cairo" + }, + "start_col": 9, + "start_line": 174 + } + }, + "831": { + "accessible_scopes": [ + "openzeppelin.token.erc20.library", + "openzeppelin.token.erc20.library.ERC20", + "openzeppelin.token.erc20.library.ERC20._mint" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 79, + "end_line": 181, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc20/library.cairo" + }, + "parent_location": [ + { + "end_col": 35, + "end_line": 21, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/uint256.cairo" + }, + "parent_location": [ + { + "end_col": 34, + "end_line": 185, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc20/library.cairo" + }, + "start_col": 13, + "start_line": 185 + }, + "While trying to retrieve the implicit argument 'range_check_ptr' in:" + ], + "start_col": 20, + "start_line": 21 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 64, + "start_line": 181 + } + }, + "832": { + "accessible_scopes": [ + "openzeppelin.token.erc20.library", + "openzeppelin.token.erc20.library.ERC20", + "openzeppelin.token.erc20.library.ERC20._mint" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 41, + "end_line": 182, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc20/library.cairo" + }, + "parent_location": [ + { + "end_col": 33, + "end_line": 185, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc20/library.cairo" + }, + "start_col": 27, + "start_line": 185 + }, + "While expanding the reference 'amount' in:" + ], + "start_col": 26, + "start_line": 182 + } + }, + "833": { + "accessible_scopes": [ + "openzeppelin.token.erc20.library", + "openzeppelin.token.erc20.library.ERC20", + "openzeppelin.token.erc20.library.ERC20._mint" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 41, + "end_line": 182, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc20/library.cairo" + }, + "parent_location": [ + { + "end_col": 33, + "end_line": 185, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc20/library.cairo" + }, + "start_col": 27, + "start_line": 185 + }, + "While expanding the reference 'amount' in:" + ], + "start_col": 26, + "start_line": 182 + } + }, + "834": { + "accessible_scopes": [ + "openzeppelin.token.erc20.library", + "openzeppelin.token.erc20.library.ERC20", + "openzeppelin.token.erc20.library.ERC20._mint" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 34, + "end_line": 185, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc20/library.cairo" + }, + "start_col": 13, + "start_line": 185 + } + }, + "836": { + "accessible_scopes": [ + "openzeppelin.token.erc20.library", + "openzeppelin.token.erc20.library.ERC20", + "openzeppelin.token.erc20.library.ERC20._mint" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 24, + "end_line": 182, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc20/library.cairo" + }, + "parent_location": [ + { + "end_col": 38, + "end_line": 189, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc20/library.cairo" + }, + "start_col": 29, + "start_line": 189 + }, + "While expanding the reference 'recipient' in:" + ], + "start_col": 9, + "start_line": 182 + } + }, + "837": { + "accessible_scopes": [ + "openzeppelin.token.erc20.library", + "openzeppelin.token.erc20.library.ERC20", + "openzeppelin.token.erc20.library.ERC20._mint" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 39, + "end_line": 189, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc20/library.cairo" + }, + "start_col": 13, + "start_line": 189 + } + }, + "839": { + "accessible_scopes": [ + "openzeppelin.token.erc20.library", + "openzeppelin.token.erc20.library.ERC20", + "openzeppelin.token.erc20.library.ERC20._mint" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 34, + "end_line": 181, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc20/library.cairo" + }, + "parent_location": [ + { + "end_col": 33, + "end_line": 13, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC20_total_supply/decl.cairo" + }, + "parent_location": [ + { + "end_col": 58, + "end_line": 192, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc20/library.cairo" + }, + "start_col": 33, + "start_line": 192 + }, + "While trying to retrieve the implicit argument 'syscall_ptr' in:" + ], + "start_col": 15, + "start_line": 13 + }, + "While expanding the reference 'syscall_ptr' in:" + ], + "start_col": 16, + "start_line": 181 + } + }, + "840": { + "accessible_scopes": [ + "openzeppelin.token.erc20.library", + "openzeppelin.token.erc20.library.ERC20", + "openzeppelin.token.erc20.library.ERC20._mint" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 62, + "end_line": 181, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc20/library.cairo" + }, + "parent_location": [ + { + "end_col": 61, + "end_line": 13, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC20_total_supply/decl.cairo" + }, + "parent_location": [ + { + "end_col": 58, + "end_line": 192, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc20/library.cairo" + }, + "start_col": 33, + "start_line": 192 + }, + "While trying to retrieve the implicit argument 'pedersen_ptr' in:" + ], + "start_col": 35, + "start_line": 13 + }, + "While expanding the reference 'pedersen_ptr' in:" + ], + "start_col": 36, + "start_line": 181 + } + }, + "841": { + "accessible_scopes": [ + "openzeppelin.token.erc20.library", + "openzeppelin.token.erc20.library.ERC20", + "openzeppelin.token.erc20.library.ERC20._mint" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 35, + "end_line": 21, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/uint256.cairo" + }, + "parent_location": [ + { + "end_col": 34, + "end_line": 185, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc20/library.cairo" + }, + "parent_location": [ + { + "end_col": 78, + "end_line": 13, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC20_total_supply/decl.cairo" + }, + "parent_location": [ + { + "end_col": 58, + "end_line": 192, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc20/library.cairo" + }, + "start_col": 33, + "start_line": 192 + }, + "While trying to retrieve the implicit argument 'range_check_ptr' in:" + ], + "start_col": 63, + "start_line": 13 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 13, + "start_line": 185 + }, + "While trying to update the implicit return value 'range_check_ptr' in:" + ], + "start_col": 20, + "start_line": 21 + } + }, + "842": { + "accessible_scopes": [ + "openzeppelin.token.erc20.library", + "openzeppelin.token.erc20.library.ERC20", + "openzeppelin.token.erc20.library.ERC20._mint" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 58, + "end_line": 192, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc20/library.cairo" + }, + "start_col": 33, + "start_line": 192 + } + }, + "844": { + "accessible_scopes": [ + "openzeppelin.token.erc20.library", + "openzeppelin.token.erc20.library.ERC20", + "openzeppelin.token.erc20.library.ERC20._mint" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 41, + "end_line": 182, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc20/library.cairo" + }, + "parent_location": [ + { + "end_col": 71, + "end_line": 194, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc20/library.cairo" + }, + "start_col": 65, + "start_line": 194 + }, + "While expanding the reference 'amount' in:" + ], + "start_col": 26, + "start_line": 182 + } + }, + "845": { + "accessible_scopes": [ + "openzeppelin.token.erc20.library", + "openzeppelin.token.erc20.library.ERC20", + "openzeppelin.token.erc20.library.ERC20._mint" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 41, + "end_line": 182, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc20/library.cairo" + }, + "parent_location": [ + { + "end_col": 71, + "end_line": 194, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc20/library.cairo" + }, + "start_col": 65, + "start_line": 194 + }, + "While expanding the reference 'amount' in:" + ], + "start_col": 26, + "start_line": 182 + } + }, + "846": { + "accessible_scopes": [ + "openzeppelin.token.erc20.library", + "openzeppelin.token.erc20.library.ERC20", + "openzeppelin.token.erc20.library.ERC20._mint" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 72, + "end_line": 194, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc20/library.cairo" + }, + "start_col": 41, + "start_line": 194 + } + }, + "848": { + "accessible_scopes": [ + "openzeppelin.token.erc20.library", + "openzeppelin.token.erc20.library.ERC20", + "openzeppelin.token.erc20.library.ERC20._mint" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 33, + "end_line": 13, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC20_total_supply/decl.cairo" + }, + "parent_location": [ + { + "end_col": 58, + "end_line": 192, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc20/library.cairo" + }, + "parent_location": [ + { + "end_col": 34, + "end_line": 21, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC20_total_supply/decl.cairo" + }, + "parent_location": [ + { + "end_col": 45, + "end_line": 196, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc20/library.cairo" + }, + "start_col": 9, + "start_line": 196 + }, + "While trying to retrieve the implicit argument 'syscall_ptr' in:" + ], + "start_col": 16, + "start_line": 21 + }, + "While expanding the reference 'syscall_ptr' in:" + ], + "start_col": 33, + "start_line": 192 + }, + "While trying to update the implicit return value 'syscall_ptr' in:" + ], + "start_col": 15, + "start_line": 13 + } + }, + "849": { + "accessible_scopes": [ + "openzeppelin.token.erc20.library", + "openzeppelin.token.erc20.library.ERC20", + "openzeppelin.token.erc20.library.ERC20._mint" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 61, + "end_line": 13, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC20_total_supply/decl.cairo" + }, + "parent_location": [ + { + "end_col": 58, + "end_line": 192, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc20/library.cairo" + }, + "parent_location": [ + { + "end_col": 62, + "end_line": 21, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC20_total_supply/decl.cairo" + }, + "parent_location": [ + { + "end_col": 45, + "end_line": 196, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc20/library.cairo" + }, + "start_col": 9, + "start_line": 196 + }, + "While trying to retrieve the implicit argument 'pedersen_ptr' in:" + ], + "start_col": 36, + "start_line": 21 + }, + "While expanding the reference 'pedersen_ptr' in:" + ], + "start_col": 33, + "start_line": 192 + }, + "While trying to update the implicit return value 'pedersen_ptr' in:" + ], + "start_col": 35, + "start_line": 13 + } + }, + "850": { + "accessible_scopes": [ + "openzeppelin.token.erc20.library", + "openzeppelin.token.erc20.library.ERC20", + "openzeppelin.token.erc20.library.ERC20._mint" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 29, + "end_line": 23, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/security/safemath/library.cairo" + }, + "parent_location": [ + { + "end_col": 72, + "end_line": 194, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc20/library.cairo" + }, + "parent_location": [ + { + "end_col": 79, + "end_line": 21, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC20_total_supply/decl.cairo" + }, + "parent_location": [ + { + "end_col": 45, + "end_line": 196, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc20/library.cairo" + }, + "start_col": 9, + "start_line": 196 + }, + "While trying to retrieve the implicit argument 'range_check_ptr' in:" + ], + "start_col": 64, + "start_line": 21 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 41, + "start_line": 194 + }, + "While trying to update the implicit return value 'range_check_ptr' in:" + ], + "start_col": 14, + "start_line": 23 + } + }, + "851": { + "accessible_scopes": [ + "openzeppelin.token.erc20.library", + "openzeppelin.token.erc20.library.ERC20", + "openzeppelin.token.erc20.library.ERC20._mint" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 37, + "end_line": 194, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc20/library.cairo" + }, + "parent_location": [ + { + "end_col": 44, + "end_line": 196, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc20/library.cairo" + }, + "start_col": 34, + "start_line": 196 + }, + "While expanding the reference 'new_supply' in:" + ], + "start_col": 18, + "start_line": 194 + } + }, + "852": { + "accessible_scopes": [ + "openzeppelin.token.erc20.library", + "openzeppelin.token.erc20.library.ERC20", + "openzeppelin.token.erc20.library.ERC20._mint" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 37, + "end_line": 194, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc20/library.cairo" + }, + "parent_location": [ + { + "end_col": 44, + "end_line": 196, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc20/library.cairo" + }, + "start_col": 34, + "start_line": 196 + }, + "While expanding the reference 'new_supply' in:" + ], + "start_col": 18, + "start_line": 194 + } + }, + "853": { + "accessible_scopes": [ + "openzeppelin.token.erc20.library", + "openzeppelin.token.erc20.library.ERC20", + "openzeppelin.token.erc20.library.ERC20._mint" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 45, + "end_line": 196, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc20/library.cairo" + }, + "start_col": 9, + "start_line": 196 + } + }, + "855": { + "accessible_scopes": [ + "openzeppelin.token.erc20.library", + "openzeppelin.token.erc20.library.ERC20", + "openzeppelin.token.erc20.library.ERC20._mint" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 24, + "end_line": 182, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc20/library.cairo" + }, + "parent_location": [ + { + "end_col": 71, + "end_line": 198, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc20/library.cairo" + }, + "start_col": 62, + "start_line": 198 + }, + "While expanding the reference 'recipient' in:" + ], + "start_col": 9, + "start_line": 182 + } + }, + "856": { + "accessible_scopes": [ + "openzeppelin.token.erc20.library", + "openzeppelin.token.erc20.library.ERC20", + "openzeppelin.token.erc20.library.ERC20._mint" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 72, + "end_line": 198, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc20/library.cairo" + }, + "start_col": 34, + "start_line": 198 + } + }, + "858": { + "accessible_scopes": [ + "openzeppelin.token.erc20.library", + "openzeppelin.token.erc20.library.ERC20", + "openzeppelin.token.erc20.library.ERC20._mint" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 41, + "end_line": 182, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc20/library.cairo" + }, + "parent_location": [ + { + "end_col": 69, + "end_line": 201, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc20/library.cairo" + }, + "start_col": 63, + "start_line": 201 + }, + "While expanding the reference 'amount' in:" + ], + "start_col": 26, + "start_line": 182 + } + }, + "859": { + "accessible_scopes": [ + "openzeppelin.token.erc20.library", + "openzeppelin.token.erc20.library.ERC20", + "openzeppelin.token.erc20.library.ERC20._mint" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 41, + "end_line": 182, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc20/library.cairo" + }, + "parent_location": [ + { + "end_col": 69, + "end_line": 201, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc20/library.cairo" + }, + "start_col": 63, + "start_line": 201 + }, + "While expanding the reference 'amount' in:" + ], + "start_col": 26, + "start_line": 182 + } + }, + "860": { + "accessible_scopes": [ + "openzeppelin.token.erc20.library", + "openzeppelin.token.erc20.library.ERC20", + "openzeppelin.token.erc20.library.ERC20._mint" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 70, + "end_line": 201, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc20/library.cairo" + }, + "start_col": 38, + "start_line": 201 + } + }, + "862": { + "accessible_scopes": [ + "openzeppelin.token.erc20.library", + "openzeppelin.token.erc20.library.ERC20", + "openzeppelin.token.erc20.library.ERC20._mint" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 33, + "end_line": 13, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC20_balances/decl.cairo" + }, + "parent_location": [ + { + "end_col": 72, + "end_line": 198, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc20/library.cairo" + }, + "parent_location": [ + { + "end_col": 34, + "end_line": 21, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC20_balances/decl.cairo" + }, + "parent_location": [ + { + "end_col": 53, + "end_line": 202, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc20/library.cairo" + }, + "start_col": 9, + "start_line": 202 + }, + "While trying to retrieve the implicit argument 'syscall_ptr' in:" + ], + "start_col": 16, + "start_line": 21 + }, + "While expanding the reference 'syscall_ptr' in:" + ], + "start_col": 34, + "start_line": 198 + }, + "While trying to update the implicit return value 'syscall_ptr' in:" + ], + "start_col": 15, + "start_line": 13 + } + }, + "863": { + "accessible_scopes": [ + "openzeppelin.token.erc20.library", + "openzeppelin.token.erc20.library.ERC20", + "openzeppelin.token.erc20.library.ERC20._mint" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 61, + "end_line": 13, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC20_balances/decl.cairo" + }, + "parent_location": [ + { + "end_col": 72, + "end_line": 198, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc20/library.cairo" + }, + "parent_location": [ + { + "end_col": 62, + "end_line": 21, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC20_balances/decl.cairo" + }, + "parent_location": [ + { + "end_col": 53, + "end_line": 202, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc20/library.cairo" + }, + "start_col": 9, + "start_line": 202 + }, + "While trying to retrieve the implicit argument 'pedersen_ptr' in:" + ], + "start_col": 36, + "start_line": 21 + }, + "While expanding the reference 'pedersen_ptr' in:" + ], + "start_col": 34, + "start_line": 198 + }, + "While trying to update the implicit return value 'pedersen_ptr' in:" + ], + "start_col": 35, + "start_line": 13 + } + }, + "864": { + "accessible_scopes": [ + "openzeppelin.token.erc20.library", + "openzeppelin.token.erc20.library.ERC20", + "openzeppelin.token.erc20.library.ERC20._mint" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 29, + "end_line": 23, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/security/safemath/library.cairo" + }, + "parent_location": [ + { + "end_col": 70, + "end_line": 201, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc20/library.cairo" + }, + "parent_location": [ + { + "end_col": 79, + "end_line": 21, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC20_balances/decl.cairo" + }, + "parent_location": [ + { + "end_col": 53, + "end_line": 202, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc20/library.cairo" + }, + "start_col": 9, + "start_line": 202 + }, + "While trying to retrieve the implicit argument 'range_check_ptr' in:" + ], + "start_col": 64, + "start_line": 21 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 38, + "start_line": 201 + }, + "While trying to update the implicit return value 'range_check_ptr' in:" + ], + "start_col": 14, + "start_line": 23 + } + }, + "865": { + "accessible_scopes": [ + "openzeppelin.token.erc20.library", + "openzeppelin.token.erc20.library.ERC20", + "openzeppelin.token.erc20.library.ERC20._mint" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 24, + "end_line": 182, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc20/library.cairo" + }, + "parent_location": [ + { + "end_col": 39, + "end_line": 202, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc20/library.cairo" + }, + "start_col": 30, + "start_line": 202 + }, + "While expanding the reference 'recipient' in:" + ], + "start_col": 9, + "start_line": 182 + } + }, + "866": { + "accessible_scopes": [ + "openzeppelin.token.erc20.library", + "openzeppelin.token.erc20.library.ERC20", + "openzeppelin.token.erc20.library.ERC20._mint" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 34, + "end_line": 201, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc20/library.cairo" + }, + "parent_location": [ + { + "end_col": 52, + "end_line": 202, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc20/library.cairo" + }, + "start_col": 41, + "start_line": 202 + }, + "While expanding the reference 'new_balance' in:" + ], + "start_col": 14, + "start_line": 201 + } + }, + "867": { + "accessible_scopes": [ + "openzeppelin.token.erc20.library", + "openzeppelin.token.erc20.library.ERC20", + "openzeppelin.token.erc20.library.ERC20._mint" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 34, + "end_line": 201, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc20/library.cairo" + }, + "parent_location": [ + { + "end_col": 52, + "end_line": 202, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc20/library.cairo" + }, + "start_col": 41, + "start_line": 202 + }, + "While expanding the reference 'new_balance' in:" + ], + "start_col": 14, + "start_line": 201 + } + }, + "868": { + "accessible_scopes": [ + "openzeppelin.token.erc20.library", + "openzeppelin.token.erc20.library.ERC20", + "openzeppelin.token.erc20.library.ERC20._mint" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 53, + "end_line": 202, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc20/library.cairo" + }, + "start_col": 9, + "start_line": 202 + } + }, + "870": { + "accessible_scopes": [ + "openzeppelin.token.erc20.library", + "openzeppelin.token.erc20.library.ERC20", + "openzeppelin.token.erc20.library.ERC20._mint" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 34, + "end_line": 21, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC20_balances/decl.cairo" + }, + "parent_location": [ + { + "end_col": 53, + "end_line": 202, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc20/library.cairo" + }, + "parent_location": [ + { + "end_col": 29, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/event/Transfer/a7a8ae41be29ac9f4f6c3b7837c448d787ca051dd1ade98f409e54d33d112504.cairo" + }, + "parent_location": [ + { + "end_col": 14, + "end_line": 20, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc20/library.cairo" + }, + "parent_location": [ + { + "end_col": 44, + "end_line": 204, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc20/library.cairo" + }, + "start_col": 9, + "start_line": 204 + }, + "While trying to retrieve the implicit argument 'syscall_ptr' in:" + ], + "start_col": 6, + "start_line": 20 + }, + "While handling event:" + ], + "start_col": 11, + "start_line": 1 + }, + "While expanding the reference 'syscall_ptr' in:" + ], + "start_col": 9, + "start_line": 202 + }, + "While trying to update the implicit return value 'syscall_ptr' in:" + ], + "start_col": 16, + "start_line": 21 + } + }, + "871": { + "accessible_scopes": [ + "openzeppelin.token.erc20.library", + "openzeppelin.token.erc20.library.ERC20", + "openzeppelin.token.erc20.library.ERC20._mint" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 79, + "end_line": 21, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC20_balances/decl.cairo" + }, + "parent_location": [ + { + "end_col": 53, + "end_line": 202, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc20/library.cairo" + }, + "parent_location": [ + { + "end_col": 46, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/event/Transfer/a7a8ae41be29ac9f4f6c3b7837c448d787ca051dd1ade98f409e54d33d112504.cairo" + }, + "parent_location": [ + { + "end_col": 14, + "end_line": 20, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc20/library.cairo" + }, + "parent_location": [ + { + "end_col": 44, + "end_line": 204, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc20/library.cairo" + }, + "start_col": 9, + "start_line": 204 + }, + "While trying to retrieve the implicit argument 'range_check_ptr' in:" + ], + "start_col": 6, + "start_line": 20 + }, + "While handling event:" + ], + "start_col": 31, + "start_line": 1 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 9, + "start_line": 202 + }, + "While trying to update the implicit return value 'range_check_ptr' in:" + ], + "start_col": 64, + "start_line": 21 + } + }, + "872": { + "accessible_scopes": [ + "openzeppelin.token.erc20.library", + "openzeppelin.token.erc20.library.ERC20", + "openzeppelin.token.erc20.library.ERC20._mint" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 24, + "end_line": 204, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc20/library.cairo" + }, + "start_col": 23, + "start_line": 204 + } + }, + "874": { + "accessible_scopes": [ + "openzeppelin.token.erc20.library", + "openzeppelin.token.erc20.library.ERC20", + "openzeppelin.token.erc20.library.ERC20._mint" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 24, + "end_line": 182, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc20/library.cairo" + }, + "parent_location": [ + { + "end_col": 35, + "end_line": 204, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc20/library.cairo" + }, + "start_col": 26, + "start_line": 204 + }, + "While expanding the reference 'recipient' in:" + ], + "start_col": 9, + "start_line": 182 + } + }, + "875": { + "accessible_scopes": [ + "openzeppelin.token.erc20.library", + "openzeppelin.token.erc20.library.ERC20", + "openzeppelin.token.erc20.library.ERC20._mint" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 41, + "end_line": 182, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc20/library.cairo" + }, + "parent_location": [ + { + "end_col": 43, + "end_line": 204, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc20/library.cairo" + }, + "start_col": 37, + "start_line": 204 + }, + "While expanding the reference 'amount' in:" + ], + "start_col": 26, + "start_line": 182 + } + }, + "876": { + "accessible_scopes": [ + "openzeppelin.token.erc20.library", + "openzeppelin.token.erc20.library.ERC20", + "openzeppelin.token.erc20.library.ERC20._mint" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 41, + "end_line": 182, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc20/library.cairo" + }, + "parent_location": [ + { + "end_col": 43, + "end_line": 204, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc20/library.cairo" + }, + "start_col": 37, + "start_line": 204 + }, + "While expanding the reference 'amount' in:" + ], + "start_col": 26, + "start_line": 182 + } + }, + "877": { + "accessible_scopes": [ + "openzeppelin.token.erc20.library", + "openzeppelin.token.erc20.library.ERC20", + "openzeppelin.token.erc20.library.ERC20._mint" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 44, + "end_line": 204, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc20/library.cairo" + }, + "start_col": 9, + "start_line": 204 + } + }, + "879": { + "accessible_scopes": [ + "openzeppelin.token.erc20.library", + "openzeppelin.token.erc20.library.ERC20", + "openzeppelin.token.erc20.library.ERC20._mint" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 29, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/event/Transfer/a7a8ae41be29ac9f4f6c3b7837c448d787ca051dd1ade98f409e54d33d112504.cairo" + }, + "parent_location": [ + { + "end_col": 14, + "end_line": 20, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc20/library.cairo" + }, + "parent_location": [ + { + "end_col": 44, + "end_line": 204, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc20/library.cairo" + }, + "parent_location": [ + { + "end_col": 34, + "end_line": 181, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc20/library.cairo" + }, + "parent_location": [ + { + "end_col": 19, + "end_line": 205, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc20/library.cairo" + }, + "start_col": 9, + "start_line": 205 + }, + "While trying to retrieve the implicit argument 'syscall_ptr' in:" + ], + "start_col": 16, + "start_line": 181 + }, + "While expanding the reference 'syscall_ptr' in:" + ], + "start_col": 9, + "start_line": 204 + }, + "While trying to update the implicit return value 'syscall_ptr' in:" + ], + "start_col": 6, + "start_line": 20 + }, + "While handling event:" + ], + "start_col": 11, + "start_line": 1 + } + }, + "880": { + "accessible_scopes": [ + "openzeppelin.token.erc20.library", + "openzeppelin.token.erc20.library.ERC20", + "openzeppelin.token.erc20.library.ERC20._mint" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 62, + "end_line": 21, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC20_balances/decl.cairo" + }, + "parent_location": [ + { + "end_col": 53, + "end_line": 202, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc20/library.cairo" + }, + "parent_location": [ + { + "end_col": 62, + "end_line": 181, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc20/library.cairo" + }, + "parent_location": [ + { + "end_col": 19, + "end_line": 205, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc20/library.cairo" + }, + "start_col": 9, + "start_line": 205 + }, + "While trying to retrieve the implicit argument 'pedersen_ptr' in:" + ], + "start_col": 36, + "start_line": 181 + }, + "While expanding the reference 'pedersen_ptr' in:" + ], + "start_col": 9, + "start_line": 202 + }, + "While trying to update the implicit return value 'pedersen_ptr' in:" + ], + "start_col": 36, + "start_line": 21 + } + }, + "881": { + "accessible_scopes": [ + "openzeppelin.token.erc20.library", + "openzeppelin.token.erc20.library.ERC20", + "openzeppelin.token.erc20.library.ERC20._mint" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 46, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/event/Transfer/a7a8ae41be29ac9f4f6c3b7837c448d787ca051dd1ade98f409e54d33d112504.cairo" + }, + "parent_location": [ + { + "end_col": 14, + "end_line": 20, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc20/library.cairo" + }, + "parent_location": [ + { + "end_col": 44, + "end_line": 204, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc20/library.cairo" + }, + "parent_location": [ + { + "end_col": 79, + "end_line": 181, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc20/library.cairo" + }, + "parent_location": [ + { + "end_col": 19, + "end_line": 205, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc20/library.cairo" + }, + "start_col": 9, + "start_line": 205 + }, + "While trying to retrieve the implicit argument 'range_check_ptr' in:" + ], + "start_col": 64, + "start_line": 181 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 9, + "start_line": 204 + }, + "While trying to update the implicit return value 'range_check_ptr' in:" + ], + "start_col": 6, + "start_line": 20 + }, + "While handling event:" + ], + "start_col": 31, + "start_line": 1 + } + }, + "882": { + "accessible_scopes": [ + "openzeppelin.token.erc20.library", + "openzeppelin.token.erc20.library.ERC20", + "openzeppelin.token.erc20.library.ERC20._mint" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 19, + "end_line": 205, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc20/library.cairo" + }, + "start_col": 9, + "start_line": 205 + } + }, + "883": { + "accessible_scopes": [ + "openzeppelin.token.erc20.library", + "openzeppelin.token.erc20.library.ERC20", + "openzeppelin.token.erc20.library.ERC20._transfer" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 83, + "end_line": 233, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc20/library.cairo" + }, + "parent_location": [ + { + "end_col": 35, + "end_line": 21, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/uint256.cairo" + }, + "parent_location": [ + { + "end_col": 34, + "end_line": 237, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc20/library.cairo" + }, + "start_col": 13, + "start_line": 237 + }, + "While trying to retrieve the implicit argument 'range_check_ptr' in:" + ], + "start_col": 20, + "start_line": 21 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 68, + "start_line": 233 + } + }, + "884": { + "accessible_scopes": [ + "openzeppelin.token.erc20.library", + "openzeppelin.token.erc20.library.ERC20", + "openzeppelin.token.erc20.library.ERC20._transfer" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 55, + "end_line": 234, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc20/library.cairo" + }, + "parent_location": [ + { + "end_col": 33, + "end_line": 237, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc20/library.cairo" + }, + "start_col": 27, + "start_line": 237 + }, + "While expanding the reference 'amount' in:" + ], + "start_col": 40, + "start_line": 234 + } + }, + "885": { + "accessible_scopes": [ + "openzeppelin.token.erc20.library", + "openzeppelin.token.erc20.library.ERC20", + "openzeppelin.token.erc20.library.ERC20._transfer" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 55, + "end_line": 234, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc20/library.cairo" + }, + "parent_location": [ + { + "end_col": 33, + "end_line": 237, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc20/library.cairo" + }, + "start_col": 27, + "start_line": 237 + }, + "While expanding the reference 'amount' in:" + ], + "start_col": 40, + "start_line": 234 + } + }, + "886": { + "accessible_scopes": [ + "openzeppelin.token.erc20.library", + "openzeppelin.token.erc20.library.ERC20", + "openzeppelin.token.erc20.library.ERC20._transfer" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 34, + "end_line": 237, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc20/library.cairo" + }, + "start_col": 13, + "start_line": 237 + } + }, + "888": { + "accessible_scopes": [ + "openzeppelin.token.erc20.library", + "openzeppelin.token.erc20.library.ERC20", + "openzeppelin.token.erc20.library.ERC20._transfer" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 21, + "end_line": 234, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc20/library.cairo" + }, + "parent_location": [ + { + "end_col": 35, + "end_line": 241, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc20/library.cairo" + }, + "start_col": 29, + "start_line": 241 + }, + "While expanding the reference 'sender' in:" + ], + "start_col": 9, + "start_line": 234 + } + }, + "889": { + "accessible_scopes": [ + "openzeppelin.token.erc20.library", + "openzeppelin.token.erc20.library.ERC20", + "openzeppelin.token.erc20.library.ERC20._transfer" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 36, + "end_line": 241, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc20/library.cairo" + }, + "start_col": 13, + "start_line": 241 + } + }, + "891": { + "accessible_scopes": [ + "openzeppelin.token.erc20.library", + "openzeppelin.token.erc20.library.ERC20", + "openzeppelin.token.erc20.library.ERC20._transfer" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 38, + "end_line": 234, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc20/library.cairo" + }, + "parent_location": [ + { + "end_col": 38, + "end_line": 245, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc20/library.cairo" + }, + "start_col": 29, + "start_line": 245 + }, + "While expanding the reference 'recipient' in:" + ], + "start_col": 23, + "start_line": 234 + } + }, + "892": { + "accessible_scopes": [ + "openzeppelin.token.erc20.library", + "openzeppelin.token.erc20.library.ERC20", + "openzeppelin.token.erc20.library.ERC20._transfer" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 39, + "end_line": 245, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc20/library.cairo" + }, + "start_col": 13, + "start_line": 245 + } + }, + "894": { + "accessible_scopes": [ + "openzeppelin.token.erc20.library", + "openzeppelin.token.erc20.library.ERC20", + "openzeppelin.token.erc20.library.ERC20._transfer" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 38, + "end_line": 233, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc20/library.cairo" + }, + "parent_location": [ + { + "end_col": 33, + "end_line": 13, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC20_balances/decl.cairo" + }, + "parent_location": [ + { + "end_col": 76, + "end_line": 248, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc20/library.cairo" + }, + "start_col": 41, + "start_line": 248 + }, + "While trying to retrieve the implicit argument 'syscall_ptr' in:" + ], + "start_col": 15, + "start_line": 13 + }, + "While expanding the reference 'syscall_ptr' in:" + ], + "start_col": 20, + "start_line": 233 + } + }, + "895": { + "accessible_scopes": [ + "openzeppelin.token.erc20.library", + "openzeppelin.token.erc20.library.ERC20", + "openzeppelin.token.erc20.library.ERC20._transfer" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 66, + "end_line": 233, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc20/library.cairo" + }, + "parent_location": [ + { + "end_col": 61, + "end_line": 13, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC20_balances/decl.cairo" + }, + "parent_location": [ + { + "end_col": 76, + "end_line": 248, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc20/library.cairo" + }, + "start_col": 41, + "start_line": 248 + }, + "While trying to retrieve the implicit argument 'pedersen_ptr' in:" + ], + "start_col": 35, + "start_line": 13 + }, + "While expanding the reference 'pedersen_ptr' in:" + ], + "start_col": 40, + "start_line": 233 + } + }, + "896": { + "accessible_scopes": [ + "openzeppelin.token.erc20.library", + "openzeppelin.token.erc20.library.ERC20", + "openzeppelin.token.erc20.library.ERC20._transfer" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 35, + "end_line": 21, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/uint256.cairo" + }, + "parent_location": [ + { + "end_col": 34, + "end_line": 237, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc20/library.cairo" + }, + "parent_location": [ + { + "end_col": 78, + "end_line": 13, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC20_balances/decl.cairo" + }, + "parent_location": [ + { + "end_col": 76, + "end_line": 248, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc20/library.cairo" + }, + "start_col": 41, + "start_line": 248 + }, + "While trying to retrieve the implicit argument 'range_check_ptr' in:" + ], + "start_col": 63, + "start_line": 13 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 13, + "start_line": 237 + }, + "While trying to update the implicit return value 'range_check_ptr' in:" + ], + "start_col": 20, + "start_line": 21 + } + }, + "897": { + "accessible_scopes": [ + "openzeppelin.token.erc20.library", + "openzeppelin.token.erc20.library.ERC20", + "openzeppelin.token.erc20.library.ERC20._transfer" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 21, + "end_line": 234, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc20/library.cairo" + }, + "parent_location": [ + { + "end_col": 75, + "end_line": 248, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc20/library.cairo" + }, + "start_col": 69, + "start_line": 248 + }, + "While expanding the reference 'sender' in:" + ], + "start_col": 9, + "start_line": 234 + } + }, + "898": { + "accessible_scopes": [ + "openzeppelin.token.erc20.library", + "openzeppelin.token.erc20.library.ERC20", + "openzeppelin.token.erc20.library.ERC20._transfer" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 76, + "end_line": 248, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc20/library.cairo" + }, + "start_col": 41, + "start_line": 248 + } + }, + "900": { + "accessible_scopes": [ + "openzeppelin.token.erc20.library", + "openzeppelin.token.erc20.library.ERC20", + "openzeppelin.token.erc20.library.ERC20._transfer" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 55, + "end_line": 234, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc20/library.cairo" + }, + "parent_location": [ + { + "end_col": 90, + "end_line": 250, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc20/library.cairo" + }, + "start_col": 84, + "start_line": 250 + }, + "While expanding the reference 'amount' in:" + ], + "start_col": 40, + "start_line": 234 + } + }, + "901": { + "accessible_scopes": [ + "openzeppelin.token.erc20.library", + "openzeppelin.token.erc20.library.ERC20", + "openzeppelin.token.erc20.library.ERC20._transfer" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 55, + "end_line": 234, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc20/library.cairo" + }, + "parent_location": [ + { + "end_col": 90, + "end_line": 250, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc20/library.cairo" + }, + "start_col": 84, + "start_line": 250 + }, + "While expanding the reference 'amount' in:" + ], + "start_col": 40, + "start_line": 234 + } + }, + "902": { + "accessible_scopes": [ + "openzeppelin.token.erc20.library", + "openzeppelin.token.erc20.library.ERC20", + "openzeppelin.token.erc20.library.ERC20._transfer" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 91, + "end_line": 250, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc20/library.cairo" + }, + "start_col": 49, + "start_line": 250 + } + }, + "904": { + "accessible_scopes": [ + "openzeppelin.token.erc20.library", + "openzeppelin.token.erc20.library.ERC20", + "openzeppelin.token.erc20.library.ERC20._transfer" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 33, + "end_line": 13, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC20_balances/decl.cairo" + }, + "parent_location": [ + { + "end_col": 76, + "end_line": 248, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc20/library.cairo" + }, + "parent_location": [ + { + "end_col": 34, + "end_line": 21, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC20_balances/decl.cairo" + }, + "parent_location": [ + { + "end_col": 57, + "end_line": 253, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc20/library.cairo" + }, + "start_col": 9, + "start_line": 253 + }, + "While trying to retrieve the implicit argument 'syscall_ptr' in:" + ], + "start_col": 16, + "start_line": 21 + }, + "While expanding the reference 'syscall_ptr' in:" + ], + "start_col": 41, + "start_line": 248 + }, + "While trying to update the implicit return value 'syscall_ptr' in:" + ], + "start_col": 15, + "start_line": 13 + } + }, + "905": { + "accessible_scopes": [ + "openzeppelin.token.erc20.library", + "openzeppelin.token.erc20.library.ERC20", + "openzeppelin.token.erc20.library.ERC20._transfer" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 61, + "end_line": 13, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC20_balances/decl.cairo" + }, + "parent_location": [ + { + "end_col": 76, + "end_line": 248, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc20/library.cairo" + }, + "parent_location": [ + { + "end_col": 62, + "end_line": 21, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC20_balances/decl.cairo" + }, + "parent_location": [ + { + "end_col": 57, + "end_line": 253, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc20/library.cairo" + }, + "start_col": 9, + "start_line": 253 + }, + "While trying to retrieve the implicit argument 'pedersen_ptr' in:" + ], + "start_col": 36, + "start_line": 21 + }, + "While expanding the reference 'pedersen_ptr' in:" + ], + "start_col": 41, + "start_line": 248 + }, + "While trying to update the implicit return value 'pedersen_ptr' in:" + ], + "start_col": 35, + "start_line": 13 + } + }, + "906": { + "accessible_scopes": [ + "openzeppelin.token.erc20.library", + "openzeppelin.token.erc20.library.ERC20", + "openzeppelin.token.erc20.library.ERC20._transfer" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 32, + "end_line": 35, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/security/safemath/library.cairo" + }, + "parent_location": [ + { + "end_col": 91, + "end_line": 250, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc20/library.cairo" + }, + "parent_location": [ + { + "end_col": 79, + "end_line": 21, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC20_balances/decl.cairo" + }, + "parent_location": [ + { + "end_col": 57, + "end_line": 253, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc20/library.cairo" + }, + "start_col": 9, + "start_line": 253 + }, + "While trying to retrieve the implicit argument 'range_check_ptr' in:" + ], + "start_col": 64, + "start_line": 21 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 49, + "start_line": 250 + }, + "While trying to update the implicit return value 'range_check_ptr' in:" + ], + "start_col": 17, + "start_line": 35 + } + }, + "907": { + "accessible_scopes": [ + "openzeppelin.token.erc20.library", + "openzeppelin.token.erc20.library.ERC20", + "openzeppelin.token.erc20.library.ERC20._transfer" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 21, + "end_line": 234, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc20/library.cairo" + }, + "parent_location": [ + { + "end_col": 36, + "end_line": 253, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc20/library.cairo" + }, + "start_col": 30, + "start_line": 253 + }, + "While expanding the reference 'sender' in:" + ], + "start_col": 9, + "start_line": 234 + } + }, + "908": { + "accessible_scopes": [ + "openzeppelin.token.erc20.library", + "openzeppelin.token.erc20.library.ERC20", + "openzeppelin.token.erc20.library.ERC20._transfer" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 45, + "end_line": 250, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc20/library.cairo" + }, + "parent_location": [ + { + "end_col": 56, + "end_line": 253, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc20/library.cairo" + }, + "start_col": 38, + "start_line": 253 + }, + "While expanding the reference 'new_sender_balance' in:" + ], + "start_col": 18, + "start_line": 250 + } + }, + "909": { + "accessible_scopes": [ + "openzeppelin.token.erc20.library", + "openzeppelin.token.erc20.library.ERC20", + "openzeppelin.token.erc20.library.ERC20._transfer" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 45, + "end_line": 250, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc20/library.cairo" + }, + "parent_location": [ + { + "end_col": 56, + "end_line": 253, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc20/library.cairo" + }, + "start_col": 38, + "start_line": 253 + }, + "While expanding the reference 'new_sender_balance' in:" + ], + "start_col": 18, + "start_line": 250 + } + }, + "910": { + "accessible_scopes": [ + "openzeppelin.token.erc20.library", + "openzeppelin.token.erc20.library.ERC20", + "openzeppelin.token.erc20.library.ERC20._transfer" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 57, + "end_line": 253, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc20/library.cairo" + }, + "start_col": 9, + "start_line": 253 + } + }, + "912": { + "accessible_scopes": [ + "openzeppelin.token.erc20.library", + "openzeppelin.token.erc20.library.ERC20", + "openzeppelin.token.erc20.library.ERC20._transfer" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 38, + "end_line": 234, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc20/library.cairo" + }, + "parent_location": [ + { + "end_col": 81, + "end_line": 256, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc20/library.cairo" + }, + "start_col": 72, + "start_line": 256 + }, + "While expanding the reference 'recipient' in:" + ], + "start_col": 23, + "start_line": 234 + } + }, + "913": { + "accessible_scopes": [ + "openzeppelin.token.erc20.library", + "openzeppelin.token.erc20.library.ERC20", + "openzeppelin.token.erc20.library.ERC20._transfer" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 82, + "end_line": 256, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc20/library.cairo" + }, + "start_col": 44, + "start_line": 256 + } + }, + "915": { + "accessible_scopes": [ + "openzeppelin.token.erc20.library", + "openzeppelin.token.erc20.library.ERC20", + "openzeppelin.token.erc20.library.ERC20._transfer" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 55, + "end_line": 234, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc20/library.cairo" + }, + "parent_location": [ + { + "end_col": 89, + "end_line": 258, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc20/library.cairo" + }, + "start_col": 83, + "start_line": 258 + }, + "While expanding the reference 'amount' in:" + ], + "start_col": 40, + "start_line": 234 + } + }, + "916": { + "accessible_scopes": [ + "openzeppelin.token.erc20.library", + "openzeppelin.token.erc20.library.ERC20", + "openzeppelin.token.erc20.library.ERC20._transfer" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 55, + "end_line": 234, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc20/library.cairo" + }, + "parent_location": [ + { + "end_col": 89, + "end_line": 258, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc20/library.cairo" + }, + "start_col": 83, + "start_line": 258 + }, + "While expanding the reference 'amount' in:" + ], + "start_col": 40, + "start_line": 234 + } + }, + "917": { + "accessible_scopes": [ + "openzeppelin.token.erc20.library", + "openzeppelin.token.erc20.library.ERC20", + "openzeppelin.token.erc20.library.ERC20._transfer" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 90, + "end_line": 258, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc20/library.cairo" + }, + "start_col": 48, + "start_line": 258 + } + }, + "919": { + "accessible_scopes": [ + "openzeppelin.token.erc20.library", + "openzeppelin.token.erc20.library.ERC20", + "openzeppelin.token.erc20.library.ERC20._transfer" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 33, + "end_line": 13, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC20_balances/decl.cairo" + }, + "parent_location": [ + { + "end_col": 82, + "end_line": 256, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc20/library.cairo" + }, + "parent_location": [ + { + "end_col": 34, + "end_line": 21, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC20_balances/decl.cairo" + }, + "parent_location": [ + { + "end_col": 63, + "end_line": 259, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc20/library.cairo" + }, + "start_col": 9, + "start_line": 259 + }, + "While trying to retrieve the implicit argument 'syscall_ptr' in:" + ], + "start_col": 16, + "start_line": 21 + }, + "While expanding the reference 'syscall_ptr' in:" + ], + "start_col": 44, + "start_line": 256 + }, + "While trying to update the implicit return value 'syscall_ptr' in:" + ], + "start_col": 15, + "start_line": 13 + } + }, + "920": { + "accessible_scopes": [ + "openzeppelin.token.erc20.library", + "openzeppelin.token.erc20.library.ERC20", + "openzeppelin.token.erc20.library.ERC20._transfer" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 61, + "end_line": 13, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC20_balances/decl.cairo" + }, + "parent_location": [ + { + "end_col": 82, + "end_line": 256, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc20/library.cairo" + }, + "parent_location": [ + { + "end_col": 62, + "end_line": 21, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC20_balances/decl.cairo" + }, + "parent_location": [ + { + "end_col": 63, + "end_line": 259, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc20/library.cairo" + }, + "start_col": 9, + "start_line": 259 + }, + "While trying to retrieve the implicit argument 'pedersen_ptr' in:" + ], + "start_col": 36, + "start_line": 21 + }, + "While expanding the reference 'pedersen_ptr' in:" + ], + "start_col": 44, + "start_line": 256 + }, + "While trying to update the implicit return value 'pedersen_ptr' in:" + ], + "start_col": 35, + "start_line": 13 + } + }, + "921": { + "accessible_scopes": [ + "openzeppelin.token.erc20.library", + "openzeppelin.token.erc20.library.ERC20", + "openzeppelin.token.erc20.library.ERC20._transfer" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 29, + "end_line": 23, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/security/safemath/library.cairo" + }, + "parent_location": [ + { + "end_col": 90, + "end_line": 258, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc20/library.cairo" + }, + "parent_location": [ + { + "end_col": 79, + "end_line": 21, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC20_balances/decl.cairo" + }, + "parent_location": [ + { + "end_col": 63, + "end_line": 259, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc20/library.cairo" + }, + "start_col": 9, + "start_line": 259 + }, + "While trying to retrieve the implicit argument 'range_check_ptr' in:" + ], + "start_col": 64, + "start_line": 21 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 48, + "start_line": 258 + }, + "While trying to update the implicit return value 'range_check_ptr' in:" + ], + "start_col": 14, + "start_line": 23 + } + }, + "922": { + "accessible_scopes": [ + "openzeppelin.token.erc20.library", + "openzeppelin.token.erc20.library.ERC20", + "openzeppelin.token.erc20.library.ERC20._transfer" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 38, + "end_line": 234, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc20/library.cairo" + }, + "parent_location": [ + { + "end_col": 39, + "end_line": 259, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc20/library.cairo" + }, + "start_col": 30, + "start_line": 259 + }, + "While expanding the reference 'recipient' in:" + ], + "start_col": 23, + "start_line": 234 + } + }, + "923": { + "accessible_scopes": [ + "openzeppelin.token.erc20.library", + "openzeppelin.token.erc20.library.ERC20", + "openzeppelin.token.erc20.library.ERC20._transfer" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 44, + "end_line": 258, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc20/library.cairo" + }, + "parent_location": [ + { + "end_col": 62, + "end_line": 259, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc20/library.cairo" + }, + "start_col": 41, + "start_line": 259 + }, + "While expanding the reference 'new_recipient_balance' in:" + ], + "start_col": 14, + "start_line": 258 + } + }, + "924": { + "accessible_scopes": [ + "openzeppelin.token.erc20.library", + "openzeppelin.token.erc20.library.ERC20", + "openzeppelin.token.erc20.library.ERC20._transfer" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 44, + "end_line": 258, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc20/library.cairo" + }, + "parent_location": [ + { + "end_col": 62, + "end_line": 259, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc20/library.cairo" + }, + "start_col": 41, + "start_line": 259 + }, + "While expanding the reference 'new_recipient_balance' in:" + ], + "start_col": 14, + "start_line": 258 + } + }, + "925": { + "accessible_scopes": [ + "openzeppelin.token.erc20.library", + "openzeppelin.token.erc20.library.ERC20", + "openzeppelin.token.erc20.library.ERC20._transfer" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 63, + "end_line": 259, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc20/library.cairo" + }, + "start_col": 9, + "start_line": 259 + } + }, + "927": { + "accessible_scopes": [ + "openzeppelin.token.erc20.library", + "openzeppelin.token.erc20.library.ERC20", + "openzeppelin.token.erc20.library.ERC20._transfer" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 34, + "end_line": 21, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC20_balances/decl.cairo" + }, + "parent_location": [ + { + "end_col": 63, + "end_line": 259, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc20/library.cairo" + }, + "parent_location": [ + { + "end_col": 29, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/event/Transfer/a7a8ae41be29ac9f4f6c3b7837c448d787ca051dd1ade98f409e54d33d112504.cairo" + }, + "parent_location": [ + { + "end_col": 14, + "end_line": 20, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc20/library.cairo" + }, + "parent_location": [ + { + "end_col": 49, + "end_line": 260, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc20/library.cairo" + }, + "start_col": 9, + "start_line": 260 + }, + "While trying to retrieve the implicit argument 'syscall_ptr' in:" + ], + "start_col": 6, + "start_line": 20 + }, + "While handling event:" + ], + "start_col": 11, + "start_line": 1 + }, + "While expanding the reference 'syscall_ptr' in:" + ], + "start_col": 9, + "start_line": 259 + }, + "While trying to update the implicit return value 'syscall_ptr' in:" + ], + "start_col": 16, + "start_line": 21 + } + }, + "928": { + "accessible_scopes": [ + "openzeppelin.token.erc20.library", + "openzeppelin.token.erc20.library.ERC20", + "openzeppelin.token.erc20.library.ERC20._transfer" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 79, + "end_line": 21, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC20_balances/decl.cairo" + }, + "parent_location": [ + { + "end_col": 63, + "end_line": 259, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc20/library.cairo" + }, + "parent_location": [ + { + "end_col": 46, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/event/Transfer/a7a8ae41be29ac9f4f6c3b7837c448d787ca051dd1ade98f409e54d33d112504.cairo" + }, + "parent_location": [ + { + "end_col": 14, + "end_line": 20, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc20/library.cairo" + }, + "parent_location": [ + { + "end_col": 49, + "end_line": 260, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc20/library.cairo" + }, + "start_col": 9, + "start_line": 260 + }, + "While trying to retrieve the implicit argument 'range_check_ptr' in:" + ], + "start_col": 6, + "start_line": 20 + }, + "While handling event:" + ], + "start_col": 31, + "start_line": 1 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 9, + "start_line": 259 + }, + "While trying to update the implicit return value 'range_check_ptr' in:" + ], + "start_col": 64, + "start_line": 21 + } + }, + "929": { + "accessible_scopes": [ + "openzeppelin.token.erc20.library", + "openzeppelin.token.erc20.library.ERC20", + "openzeppelin.token.erc20.library.ERC20._transfer" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 21, + "end_line": 234, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc20/library.cairo" + }, + "parent_location": [ + { + "end_col": 29, + "end_line": 260, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc20/library.cairo" + }, + "start_col": 23, + "start_line": 260 + }, + "While expanding the reference 'sender' in:" + ], + "start_col": 9, + "start_line": 234 + } + }, + "930": { + "accessible_scopes": [ + "openzeppelin.token.erc20.library", + "openzeppelin.token.erc20.library.ERC20", + "openzeppelin.token.erc20.library.ERC20._transfer" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 38, + "end_line": 234, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc20/library.cairo" + }, + "parent_location": [ + { + "end_col": 40, + "end_line": 260, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc20/library.cairo" + }, + "start_col": 31, + "start_line": 260 + }, + "While expanding the reference 'recipient' in:" + ], + "start_col": 23, + "start_line": 234 + } + }, + "931": { + "accessible_scopes": [ + "openzeppelin.token.erc20.library", + "openzeppelin.token.erc20.library.ERC20", + "openzeppelin.token.erc20.library.ERC20._transfer" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 55, + "end_line": 234, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc20/library.cairo" + }, + "parent_location": [ + { + "end_col": 48, + "end_line": 260, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc20/library.cairo" + }, + "start_col": 42, + "start_line": 260 + }, + "While expanding the reference 'amount' in:" + ], + "start_col": 40, + "start_line": 234 + } + }, + "932": { + "accessible_scopes": [ + "openzeppelin.token.erc20.library", + "openzeppelin.token.erc20.library.ERC20", + "openzeppelin.token.erc20.library.ERC20._transfer" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 55, + "end_line": 234, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc20/library.cairo" + }, + "parent_location": [ + { + "end_col": 48, + "end_line": 260, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc20/library.cairo" + }, + "start_col": 42, + "start_line": 260 + }, + "While expanding the reference 'amount' in:" + ], + "start_col": 40, + "start_line": 234 + } + }, + "933": { + "accessible_scopes": [ + "openzeppelin.token.erc20.library", + "openzeppelin.token.erc20.library.ERC20", + "openzeppelin.token.erc20.library.ERC20._transfer" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 49, + "end_line": 260, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc20/library.cairo" + }, + "start_col": 9, + "start_line": 260 + } + }, + "935": { + "accessible_scopes": [ + "openzeppelin.token.erc20.library", + "openzeppelin.token.erc20.library.ERC20", + "openzeppelin.token.erc20.library.ERC20._transfer" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 29, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/event/Transfer/a7a8ae41be29ac9f4f6c3b7837c448d787ca051dd1ade98f409e54d33d112504.cairo" + }, + "parent_location": [ + { + "end_col": 14, + "end_line": 20, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc20/library.cairo" + }, + "parent_location": [ + { + "end_col": 49, + "end_line": 260, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc20/library.cairo" + }, + "parent_location": [ + { + "end_col": 38, + "end_line": 233, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc20/library.cairo" + }, + "parent_location": [ + { + "end_col": 19, + "end_line": 261, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc20/library.cairo" + }, + "start_col": 9, + "start_line": 261 + }, + "While trying to retrieve the implicit argument 'syscall_ptr' in:" + ], + "start_col": 20, + "start_line": 233 + }, + "While expanding the reference 'syscall_ptr' in:" + ], + "start_col": 9, + "start_line": 260 + }, + "While trying to update the implicit return value 'syscall_ptr' in:" + ], + "start_col": 6, + "start_line": 20 + }, + "While handling event:" + ], + "start_col": 11, + "start_line": 1 + } + }, + "936": { + "accessible_scopes": [ + "openzeppelin.token.erc20.library", + "openzeppelin.token.erc20.library.ERC20", + "openzeppelin.token.erc20.library.ERC20._transfer" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 62, + "end_line": 21, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC20_balances/decl.cairo" + }, + "parent_location": [ + { + "end_col": 63, + "end_line": 259, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc20/library.cairo" + }, + "parent_location": [ + { + "end_col": 66, + "end_line": 233, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc20/library.cairo" + }, + "parent_location": [ + { + "end_col": 19, + "end_line": 261, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc20/library.cairo" + }, + "start_col": 9, + "start_line": 261 + }, + "While trying to retrieve the implicit argument 'pedersen_ptr' in:" + ], + "start_col": 40, + "start_line": 233 + }, + "While expanding the reference 'pedersen_ptr' in:" + ], + "start_col": 9, + "start_line": 259 + }, + "While trying to update the implicit return value 'pedersen_ptr' in:" + ], + "start_col": 36, + "start_line": 21 + } + }, + "937": { + "accessible_scopes": [ + "openzeppelin.token.erc20.library", + "openzeppelin.token.erc20.library.ERC20", + "openzeppelin.token.erc20.library.ERC20._transfer" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 46, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/event/Transfer/a7a8ae41be29ac9f4f6c3b7837c448d787ca051dd1ade98f409e54d33d112504.cairo" + }, + "parent_location": [ + { + "end_col": 14, + "end_line": 20, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc20/library.cairo" + }, + "parent_location": [ + { + "end_col": 49, + "end_line": 260, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc20/library.cairo" + }, + "parent_location": [ + { + "end_col": 83, + "end_line": 233, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc20/library.cairo" + }, + "parent_location": [ + { + "end_col": 19, + "end_line": 261, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc20/library.cairo" + }, + "start_col": 9, + "start_line": 261 + }, + "While trying to retrieve the implicit argument 'range_check_ptr' in:" + ], + "start_col": 68, + "start_line": 233 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 9, + "start_line": 260 + }, + "While trying to update the implicit return value 'range_check_ptr' in:" + ], + "start_col": 6, + "start_line": 20 + }, + "While handling event:" + ], + "start_col": 31, + "start_line": 1 + } + }, + "938": { + "accessible_scopes": [ + "openzeppelin.token.erc20.library", + "openzeppelin.token.erc20.library.ERC20", + "openzeppelin.token.erc20.library.ERC20._transfer" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 19, + "end_line": 261, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc20/library.cairo" + }, + "start_col": 9, + "start_line": 261 + } + }, + "939": { + "accessible_scopes": [ + "openzeppelin.token.erc20.library", + "openzeppelin.token.erc20.library.ERC20", + "openzeppelin.token.erc20.library.ERC20._approve" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 82, + "end_line": 264, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc20/library.cairo" + }, + "parent_location": [ + { + "end_col": 35, + "end_line": 21, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/uint256.cairo" + }, + "parent_location": [ + { + "end_col": 34, + "end_line": 268, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc20/library.cairo" + }, + "start_col": 13, + "start_line": 268 + }, + "While trying to retrieve the implicit argument 'range_check_ptr' in:" + ], + "start_col": 20, + "start_line": 21 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 67, + "start_line": 264 + } + }, + "940": { + "accessible_scopes": [ + "openzeppelin.token.erc20.library", + "openzeppelin.token.erc20.library.ERC20", + "openzeppelin.token.erc20.library.ERC20._approve" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 52, + "end_line": 265, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc20/library.cairo" + }, + "parent_location": [ + { + "end_col": 33, + "end_line": 268, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc20/library.cairo" + }, + "start_col": 27, + "start_line": 268 + }, + "While expanding the reference 'amount' in:" + ], + "start_col": 37, + "start_line": 265 + } + }, + "941": { + "accessible_scopes": [ + "openzeppelin.token.erc20.library", + "openzeppelin.token.erc20.library.ERC20", + "openzeppelin.token.erc20.library.ERC20._approve" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 52, + "end_line": 265, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc20/library.cairo" + }, + "parent_location": [ + { + "end_col": 33, + "end_line": 268, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc20/library.cairo" + }, + "start_col": 27, + "start_line": 268 + }, + "While expanding the reference 'amount' in:" + ], + "start_col": 37, + "start_line": 265 + } + }, + "942": { + "accessible_scopes": [ + "openzeppelin.token.erc20.library", + "openzeppelin.token.erc20.library.ERC20", + "openzeppelin.token.erc20.library.ERC20._approve" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 34, + "end_line": 268, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc20/library.cairo" + }, + "start_col": 13, + "start_line": 268 + } + }, + "944": { + "accessible_scopes": [ + "openzeppelin.token.erc20.library", + "openzeppelin.token.erc20.library.ERC20", + "openzeppelin.token.erc20.library.ERC20._approve" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 20, + "end_line": 265, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc20/library.cairo" + }, + "parent_location": [ + { + "end_col": 34, + "end_line": 272, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc20/library.cairo" + }, + "start_col": 29, + "start_line": 272 + }, + "While expanding the reference 'owner' in:" + ], + "start_col": 9, + "start_line": 265 + } + }, + "945": { + "accessible_scopes": [ + "openzeppelin.token.erc20.library", + "openzeppelin.token.erc20.library.ERC20", + "openzeppelin.token.erc20.library.ERC20._approve" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 35, + "end_line": 272, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc20/library.cairo" + }, + "start_col": 13, + "start_line": 272 + } + }, + "947": { + "accessible_scopes": [ + "openzeppelin.token.erc20.library", + "openzeppelin.token.erc20.library.ERC20", + "openzeppelin.token.erc20.library.ERC20._approve" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 35, + "end_line": 265, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc20/library.cairo" + }, + "parent_location": [ + { + "end_col": 36, + "end_line": 276, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc20/library.cairo" + }, + "start_col": 29, + "start_line": 276 + }, + "While expanding the reference 'spender' in:" + ], + "start_col": 22, + "start_line": 265 + } + }, + "948": { + "accessible_scopes": [ + "openzeppelin.token.erc20.library", + "openzeppelin.token.erc20.library.ERC20", + "openzeppelin.token.erc20.library.ERC20._approve" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 37, + "end_line": 276, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc20/library.cairo" + }, + "start_col": 13, + "start_line": 276 + } + }, + "950": { + "accessible_scopes": [ + "openzeppelin.token.erc20.library", + "openzeppelin.token.erc20.library.ERC20", + "openzeppelin.token.erc20.library.ERC20._approve" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 37, + "end_line": 264, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc20/library.cairo" + }, + "parent_location": [ + { + "end_col": 34, + "end_line": 23, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC20_allowances/decl.cairo" + }, + "parent_location": [ + { + "end_col": 55, + "end_line": 279, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc20/library.cairo" + }, + "start_col": 9, + "start_line": 279 + }, + "While trying to retrieve the implicit argument 'syscall_ptr' in:" + ], + "start_col": 16, + "start_line": 23 + }, + "While expanding the reference 'syscall_ptr' in:" + ], + "start_col": 19, + "start_line": 264 + } + }, + "951": { + "accessible_scopes": [ + "openzeppelin.token.erc20.library", + "openzeppelin.token.erc20.library.ERC20", + "openzeppelin.token.erc20.library.ERC20._approve" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 65, + "end_line": 264, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc20/library.cairo" + }, + "parent_location": [ + { + "end_col": 62, + "end_line": 23, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC20_allowances/decl.cairo" + }, + "parent_location": [ + { + "end_col": 55, + "end_line": 279, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc20/library.cairo" + }, + "start_col": 9, + "start_line": 279 + }, + "While trying to retrieve the implicit argument 'pedersen_ptr' in:" + ], + "start_col": 36, + "start_line": 23 + }, + "While expanding the reference 'pedersen_ptr' in:" + ], + "start_col": 39, + "start_line": 264 + } + }, + "952": { + "accessible_scopes": [ + "openzeppelin.token.erc20.library", + "openzeppelin.token.erc20.library.ERC20", + "openzeppelin.token.erc20.library.ERC20._approve" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 35, + "end_line": 21, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/uint256.cairo" + }, + "parent_location": [ + { + "end_col": 34, + "end_line": 268, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc20/library.cairo" + }, + "parent_location": [ + { + "end_col": 79, + "end_line": 23, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC20_allowances/decl.cairo" + }, + "parent_location": [ + { + "end_col": 55, + "end_line": 279, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc20/library.cairo" + }, + "start_col": 9, + "start_line": 279 + }, + "While trying to retrieve the implicit argument 'range_check_ptr' in:" + ], + "start_col": 64, + "start_line": 23 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 13, + "start_line": 268 + }, + "While trying to update the implicit return value 'range_check_ptr' in:" + ], + "start_col": 20, + "start_line": 21 + } + }, + "953": { + "accessible_scopes": [ + "openzeppelin.token.erc20.library", + "openzeppelin.token.erc20.library.ERC20", + "openzeppelin.token.erc20.library.ERC20._approve" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 20, + "end_line": 265, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc20/library.cairo" + }, + "parent_location": [ + { + "end_col": 37, + "end_line": 279, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc20/library.cairo" + }, + "start_col": 32, + "start_line": 279 + }, + "While expanding the reference 'owner' in:" + ], + "start_col": 9, + "start_line": 265 + } + }, + "954": { + "accessible_scopes": [ + "openzeppelin.token.erc20.library", + "openzeppelin.token.erc20.library.ERC20", + "openzeppelin.token.erc20.library.ERC20._approve" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 35, + "end_line": 265, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc20/library.cairo" + }, + "parent_location": [ + { + "end_col": 46, + "end_line": 279, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc20/library.cairo" + }, + "start_col": 39, + "start_line": 279 + }, + "While expanding the reference 'spender' in:" + ], + "start_col": 22, + "start_line": 265 + } + }, + "955": { + "accessible_scopes": [ + "openzeppelin.token.erc20.library", + "openzeppelin.token.erc20.library.ERC20", + "openzeppelin.token.erc20.library.ERC20._approve" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 52, + "end_line": 265, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc20/library.cairo" + }, + "parent_location": [ + { + "end_col": 54, + "end_line": 279, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc20/library.cairo" + }, + "start_col": 48, + "start_line": 279 + }, + "While expanding the reference 'amount' in:" + ], + "start_col": 37, + "start_line": 265 + } + }, + "956": { + "accessible_scopes": [ + "openzeppelin.token.erc20.library", + "openzeppelin.token.erc20.library.ERC20", + "openzeppelin.token.erc20.library.ERC20._approve" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 52, + "end_line": 265, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc20/library.cairo" + }, + "parent_location": [ + { + "end_col": 54, + "end_line": 279, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc20/library.cairo" + }, + "start_col": 48, + "start_line": 279 + }, + "While expanding the reference 'amount' in:" + ], + "start_col": 37, + "start_line": 265 + } + }, + "957": { + "accessible_scopes": [ + "openzeppelin.token.erc20.library", + "openzeppelin.token.erc20.library.ERC20", + "openzeppelin.token.erc20.library.ERC20._approve" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 55, + "end_line": 279, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc20/library.cairo" + }, + "start_col": 9, + "start_line": 279 + } + }, + "959": { + "accessible_scopes": [ + "openzeppelin.token.erc20.library", + "openzeppelin.token.erc20.library.ERC20", + "openzeppelin.token.erc20.library.ERC20._approve" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 34, + "end_line": 23, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC20_allowances/decl.cairo" + }, + "parent_location": [ + { + "end_col": 55, + "end_line": 279, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc20/library.cairo" + }, + "parent_location": [ + { + "end_col": 29, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/event/Approval/a7a8ae41be29ac9f4f6c3b7837c448d787ca051dd1ade98f409e54d33d112504.cairo" + }, + "parent_location": [ + { + "end_col": 14, + "end_line": 24, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc20/library.cairo" + }, + "parent_location": [ + { + "end_col": 46, + "end_line": 280, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc20/library.cairo" + }, + "start_col": 9, + "start_line": 280 + }, + "While trying to retrieve the implicit argument 'syscall_ptr' in:" + ], + "start_col": 6, + "start_line": 24 + }, + "While handling event:" + ], + "start_col": 11, + "start_line": 1 + }, + "While expanding the reference 'syscall_ptr' in:" + ], + "start_col": 9, + "start_line": 279 + }, + "While trying to update the implicit return value 'syscall_ptr' in:" + ], + "start_col": 16, + "start_line": 23 + } + }, + "960": { + "accessible_scopes": [ + "openzeppelin.token.erc20.library", + "openzeppelin.token.erc20.library.ERC20", + "openzeppelin.token.erc20.library.ERC20._approve" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 79, + "end_line": 23, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC20_allowances/decl.cairo" + }, + "parent_location": [ + { + "end_col": 55, + "end_line": 279, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc20/library.cairo" + }, + "parent_location": [ + { + "end_col": 46, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/event/Approval/a7a8ae41be29ac9f4f6c3b7837c448d787ca051dd1ade98f409e54d33d112504.cairo" + }, + "parent_location": [ + { + "end_col": 14, + "end_line": 24, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc20/library.cairo" + }, + "parent_location": [ + { + "end_col": 46, + "end_line": 280, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc20/library.cairo" + }, + "start_col": 9, + "start_line": 280 + }, + "While trying to retrieve the implicit argument 'range_check_ptr' in:" + ], + "start_col": 6, + "start_line": 24 + }, + "While handling event:" + ], + "start_col": 31, + "start_line": 1 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 9, + "start_line": 279 + }, + "While trying to update the implicit return value 'range_check_ptr' in:" + ], + "start_col": 64, + "start_line": 23 + } + }, + "961": { + "accessible_scopes": [ + "openzeppelin.token.erc20.library", + "openzeppelin.token.erc20.library.ERC20", + "openzeppelin.token.erc20.library.ERC20._approve" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 20, + "end_line": 265, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc20/library.cairo" + }, + "parent_location": [ + { + "end_col": 28, + "end_line": 280, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc20/library.cairo" + }, + "start_col": 23, + "start_line": 280 + }, + "While expanding the reference 'owner' in:" + ], + "start_col": 9, + "start_line": 265 + } + }, + "962": { + "accessible_scopes": [ + "openzeppelin.token.erc20.library", + "openzeppelin.token.erc20.library.ERC20", + "openzeppelin.token.erc20.library.ERC20._approve" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 35, + "end_line": 265, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc20/library.cairo" + }, + "parent_location": [ + { + "end_col": 37, + "end_line": 280, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc20/library.cairo" + }, + "start_col": 30, + "start_line": 280 + }, + "While expanding the reference 'spender' in:" + ], + "start_col": 22, + "start_line": 265 + } + }, + "963": { + "accessible_scopes": [ + "openzeppelin.token.erc20.library", + "openzeppelin.token.erc20.library.ERC20", + "openzeppelin.token.erc20.library.ERC20._approve" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 52, + "end_line": 265, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc20/library.cairo" + }, + "parent_location": [ + { + "end_col": 45, + "end_line": 280, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc20/library.cairo" + }, + "start_col": 39, + "start_line": 280 + }, + "While expanding the reference 'amount' in:" + ], + "start_col": 37, + "start_line": 265 + } + }, + "964": { + "accessible_scopes": [ + "openzeppelin.token.erc20.library", + "openzeppelin.token.erc20.library.ERC20", + "openzeppelin.token.erc20.library.ERC20._approve" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 52, + "end_line": 265, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc20/library.cairo" + }, + "parent_location": [ + { + "end_col": 45, + "end_line": 280, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc20/library.cairo" + }, + "start_col": 39, + "start_line": 280 + }, + "While expanding the reference 'amount' in:" + ], + "start_col": 37, + "start_line": 265 + } + }, + "965": { + "accessible_scopes": [ + "openzeppelin.token.erc20.library", + "openzeppelin.token.erc20.library.ERC20", + "openzeppelin.token.erc20.library.ERC20._approve" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 46, + "end_line": 280, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc20/library.cairo" + }, + "start_col": 9, + "start_line": 280 + } + }, + "967": { + "accessible_scopes": [ + "openzeppelin.token.erc20.library", + "openzeppelin.token.erc20.library.ERC20", + "openzeppelin.token.erc20.library.ERC20._approve" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 29, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/event/Approval/a7a8ae41be29ac9f4f6c3b7837c448d787ca051dd1ade98f409e54d33d112504.cairo" + }, + "parent_location": [ + { + "end_col": 14, + "end_line": 24, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc20/library.cairo" + }, + "parent_location": [ + { + "end_col": 46, + "end_line": 280, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc20/library.cairo" + }, + "parent_location": [ + { + "end_col": 37, + "end_line": 264, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc20/library.cairo" + }, + "parent_location": [ + { + "end_col": 19, + "end_line": 281, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc20/library.cairo" + }, + "start_col": 9, + "start_line": 281 + }, + "While trying to retrieve the implicit argument 'syscall_ptr' in:" + ], + "start_col": 19, + "start_line": 264 + }, + "While expanding the reference 'syscall_ptr' in:" + ], + "start_col": 9, + "start_line": 280 + }, + "While trying to update the implicit return value 'syscall_ptr' in:" + ], + "start_col": 6, + "start_line": 24 + }, + "While handling event:" + ], + "start_col": 11, + "start_line": 1 + } + }, + "968": { + "accessible_scopes": [ + "openzeppelin.token.erc20.library", + "openzeppelin.token.erc20.library.ERC20", + "openzeppelin.token.erc20.library.ERC20._approve" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 62, + "end_line": 23, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC20_allowances/decl.cairo" + }, + "parent_location": [ + { + "end_col": 55, + "end_line": 279, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc20/library.cairo" + }, + "parent_location": [ + { + "end_col": 65, + "end_line": 264, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc20/library.cairo" + }, + "parent_location": [ + { + "end_col": 19, + "end_line": 281, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc20/library.cairo" + }, + "start_col": 9, + "start_line": 281 + }, + "While trying to retrieve the implicit argument 'pedersen_ptr' in:" + ], + "start_col": 39, + "start_line": 264 + }, + "While expanding the reference 'pedersen_ptr' in:" + ], + "start_col": 9, + "start_line": 279 + }, + "While trying to update the implicit return value 'pedersen_ptr' in:" + ], + "start_col": 36, + "start_line": 23 + } + }, + "969": { + "accessible_scopes": [ + "openzeppelin.token.erc20.library", + "openzeppelin.token.erc20.library.ERC20", + "openzeppelin.token.erc20.library.ERC20._approve" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 46, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/event/Approval/a7a8ae41be29ac9f4f6c3b7837c448d787ca051dd1ade98f409e54d33d112504.cairo" + }, + "parent_location": [ + { + "end_col": 14, + "end_line": 24, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc20/library.cairo" + }, + "parent_location": [ + { + "end_col": 46, + "end_line": 280, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc20/library.cairo" + }, + "parent_location": [ + { + "end_col": 82, + "end_line": 264, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc20/library.cairo" + }, + "parent_location": [ + { + "end_col": 19, + "end_line": 281, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc20/library.cairo" + }, + "start_col": 9, + "start_line": 281 + }, + "While trying to retrieve the implicit argument 'range_check_ptr' in:" + ], + "start_col": 67, + "start_line": 264 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 9, + "start_line": 280 + }, + "While trying to update the implicit return value 'range_check_ptr' in:" + ], + "start_col": 6, + "start_line": 24 + }, + "While handling event:" + ], + "start_col": 31, + "start_line": 1 + } + }, + "970": { + "accessible_scopes": [ + "openzeppelin.token.erc20.library", + "openzeppelin.token.erc20.library.ERC20", + "openzeppelin.token.erc20.library.ERC20._approve" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 19, + "end_line": 281, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc20/library.cairo" + }, + "start_col": 9, + "start_line": 281 + } + }, + "971": { + "accessible_scopes": [ + "openzeppelin.token.erc20.library", + "openzeppelin.token.erc20.library.ERC20", + "openzeppelin.token.erc20.library.ERC20._spend_allowance" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 22, + "end_line": 287, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc20/library.cairo" + }, + "start_col": 9, + "start_line": 287 + } + }, + "973": { + "accessible_scopes": [ + "openzeppelin.token.erc20.library", + "openzeppelin.token.erc20.library.ERC20", + "openzeppelin.token.erc20.library.ERC20._spend_allowance" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 90, + "end_line": 284, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc20/library.cairo" + }, + "parent_location": [ + { + "end_col": 35, + "end_line": 21, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/uint256.cairo" + }, + "parent_location": [ + { + "end_col": 34, + "end_line": 289, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc20/library.cairo" + }, + "start_col": 13, + "start_line": 289 + }, + "While trying to retrieve the implicit argument 'range_check_ptr' in:" + ], + "start_col": 20, + "start_line": 21 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 75, + "start_line": 284 + } + }, + "974": { + "accessible_scopes": [ + "openzeppelin.token.erc20.library", + "openzeppelin.token.erc20.library.ERC20", + "openzeppelin.token.erc20.library.ERC20._spend_allowance" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 52, + "end_line": 285, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc20/library.cairo" + }, + "parent_location": [ + { + "end_col": 33, + "end_line": 289, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc20/library.cairo" + }, + "start_col": 27, + "start_line": 289 + }, + "While expanding the reference 'amount' in:" + ], + "start_col": 37, + "start_line": 285 + } + }, + "975": { + "accessible_scopes": [ + "openzeppelin.token.erc20.library", + "openzeppelin.token.erc20.library.ERC20", + "openzeppelin.token.erc20.library.ERC20._spend_allowance" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 52, + "end_line": 285, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc20/library.cairo" + }, + "parent_location": [ + { + "end_col": 33, + "end_line": 289, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc20/library.cairo" + }, + "start_col": 27, + "start_line": 289 + }, + "While expanding the reference 'amount' in:" + ], + "start_col": 37, + "start_line": 285 + } + }, + "976": { + "accessible_scopes": [ + "openzeppelin.token.erc20.library", + "openzeppelin.token.erc20.library.ERC20", + "openzeppelin.token.erc20.library.ERC20._spend_allowance" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 34, + "end_line": 289, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc20/library.cairo" + }, + "start_col": 13, + "start_line": 289 + } + }, + "978": { + "accessible_scopes": [ + "openzeppelin.token.erc20.library", + "openzeppelin.token.erc20.library.ERC20", + "openzeppelin.token.erc20.library.ERC20._spend_allowance" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 45, + "end_line": 284, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc20/library.cairo" + }, + "parent_location": [ + { + "end_col": 33, + "end_line": 15, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC20_allowances/decl.cairo" + }, + "parent_location": [ + { + "end_col": 81, + "end_line": 292, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc20/library.cairo" + }, + "start_col": 44, + "start_line": 292 + }, + "While trying to retrieve the implicit argument 'syscall_ptr' in:" + ], + "start_col": 15, + "start_line": 15 + }, + "While expanding the reference 'syscall_ptr' in:" + ], + "start_col": 27, + "start_line": 284 + } + }, + "979": { + "accessible_scopes": [ + "openzeppelin.token.erc20.library", + "openzeppelin.token.erc20.library.ERC20", + "openzeppelin.token.erc20.library.ERC20._spend_allowance" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 73, + "end_line": 284, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc20/library.cairo" + }, + "parent_location": [ + { + "end_col": 61, + "end_line": 15, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC20_allowances/decl.cairo" + }, + "parent_location": [ + { + "end_col": 81, + "end_line": 292, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc20/library.cairo" + }, + "start_col": 44, + "start_line": 292 + }, + "While trying to retrieve the implicit argument 'pedersen_ptr' in:" + ], + "start_col": 35, + "start_line": 15 + }, + "While expanding the reference 'pedersen_ptr' in:" + ], + "start_col": 47, + "start_line": 284 + } + }, + "980": { + "accessible_scopes": [ + "openzeppelin.token.erc20.library", + "openzeppelin.token.erc20.library.ERC20", + "openzeppelin.token.erc20.library.ERC20._spend_allowance" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 35, + "end_line": 21, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/uint256.cairo" + }, + "parent_location": [ + { + "end_col": 34, + "end_line": 289, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc20/library.cairo" + }, + "parent_location": [ + { + "end_col": 78, + "end_line": 15, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC20_allowances/decl.cairo" + }, + "parent_location": [ + { + "end_col": 81, + "end_line": 292, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc20/library.cairo" + }, + "start_col": 44, + "start_line": 292 + }, + "While trying to retrieve the implicit argument 'range_check_ptr' in:" + ], + "start_col": 63, + "start_line": 15 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 13, + "start_line": 289 + }, + "While trying to update the implicit return value 'range_check_ptr' in:" + ], + "start_col": 20, + "start_line": 21 + } + }, + "981": { + "accessible_scopes": [ + "openzeppelin.token.erc20.library", + "openzeppelin.token.erc20.library.ERC20", + "openzeppelin.token.erc20.library.ERC20._spend_allowance" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 20, + "end_line": 285, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc20/library.cairo" + }, + "parent_location": [ + { + "end_col": 71, + "end_line": 292, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc20/library.cairo" + }, + "start_col": 66, + "start_line": 292 + }, + "While expanding the reference 'owner' in:" + ], + "start_col": 9, + "start_line": 285 + } + }, + "982": { + "accessible_scopes": [ + "openzeppelin.token.erc20.library", + "openzeppelin.token.erc20.library.ERC20", + "openzeppelin.token.erc20.library.ERC20._spend_allowance" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 35, + "end_line": 285, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc20/library.cairo" + }, + "parent_location": [ + { + "end_col": 80, + "end_line": 292, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc20/library.cairo" + }, + "start_col": 73, + "start_line": 292 + }, + "While expanding the reference 'spender' in:" + ], + "start_col": 22, + "start_line": 285 + } + }, + "983": { + "accessible_scopes": [ + "openzeppelin.token.erc20.library", + "openzeppelin.token.erc20.library.ERC20", + "openzeppelin.token.erc20.library.ERC20._spend_allowance" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 81, + "end_line": 292, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc20/library.cairo" + }, + "start_col": 44, + "start_line": 292 + } + }, + "985": { + "accessible_scopes": [ + "openzeppelin.token.erc20.library", + "openzeppelin.token.erc20.library.ERC20", + "openzeppelin.token.erc20.library.ERC20._spend_allowance" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 40, + "end_line": 292, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc20/library.cairo" + }, + "parent_location": [ + { + "end_col": 40, + "end_line": 292, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc20/library.cairo" + }, + "start_col": 14, + "start_line": 292 + }, + "While auto generating local variable for 'current_allowance'." + ], + "start_col": 14, + "start_line": 292 + } + }, + "986": { + "accessible_scopes": [ + "openzeppelin.token.erc20.library", + "openzeppelin.token.erc20.library.ERC20", + "openzeppelin.token.erc20.library.ERC20._spend_allowance" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 40, + "end_line": 292, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc20/library.cairo" + }, + "parent_location": [ + { + "end_col": 40, + "end_line": 292, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc20/library.cairo" + }, + "start_col": 14, + "start_line": 292 + }, + "While auto generating local variable for 'current_allowance'." + ], + "start_col": 14, + "start_line": 292 + } + }, + "987": { + "accessible_scopes": [ + "openzeppelin.token.erc20.library", + "openzeppelin.token.erc20.library.ERC20", + "openzeppelin.token.erc20.library.ERC20._spend_allowance" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 33, + "end_line": 15, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC20_allowances/decl.cairo" + }, + "parent_location": [ + { + "end_col": 81, + "end_line": 292, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc20/library.cairo" + }, + "parent_location": [ + { + "end_col": 33, + "end_line": 15, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC20_allowances/decl.cairo" + }, + "parent_location": [ + { + "end_col": 81, + "end_line": 292, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc20/library.cairo" + }, + "start_col": 44, + "start_line": 292 + }, + "While trying to update the implicit return value 'syscall_ptr' in:" + ], + "start_col": 15, + "start_line": 15 + }, + "While auto generating local variable for 'syscall_ptr'." + ], + "start_col": 44, + "start_line": 292 + }, + "While trying to update the implicit return value 'syscall_ptr' in:" + ], + "start_col": 15, + "start_line": 15 + } + }, + "988": { + "accessible_scopes": [ + "openzeppelin.token.erc20.library", + "openzeppelin.token.erc20.library.ERC20", + "openzeppelin.token.erc20.library.ERC20._spend_allowance" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 61, + "end_line": 15, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC20_allowances/decl.cairo" + }, + "parent_location": [ + { + "end_col": 81, + "end_line": 292, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc20/library.cairo" + }, + "parent_location": [ + { + "end_col": 61, + "end_line": 15, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC20_allowances/decl.cairo" + }, + "parent_location": [ + { + "end_col": 81, + "end_line": 292, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc20/library.cairo" + }, + "start_col": 44, + "start_line": 292 + }, + "While trying to update the implicit return value 'pedersen_ptr' in:" + ], + "start_col": 35, + "start_line": 15 + }, + "While auto generating local variable for 'pedersen_ptr'." + ], + "start_col": 44, + "start_line": 292 + }, + "While trying to update the implicit return value 'pedersen_ptr' in:" + ], + "start_col": 35, + "start_line": 15 + } + }, + "989": { + "accessible_scopes": [ + "openzeppelin.token.erc20.library", + "openzeppelin.token.erc20.library.ERC20", + "openzeppelin.token.erc20.library.ERC20._spend_allowance" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 78, + "end_line": 15, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC20_allowances/decl.cairo" + }, + "parent_location": [ + { + "end_col": 81, + "end_line": 292, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc20/library.cairo" + }, + "parent_location": [ + { + "end_col": 33, + "end_line": 284, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/uint256.cairo" + }, + "parent_location": [ + { + "end_col": 61, + "end_line": 293, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc20/library.cairo" + }, + "start_col": 35, + "start_line": 293 + }, + "While trying to retrieve the implicit argument 'range_check_ptr' in:" + ], + "start_col": 18, + "start_line": 284 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 44, + "start_line": 292 + }, + "While trying to update the implicit return value 'range_check_ptr' in:" + ], + "start_col": 63, + "start_line": 15 + } + }, + "990": { + "accessible_scopes": [ + "openzeppelin.token.erc20.library", + "openzeppelin.token.erc20.library.ERC20", + "openzeppelin.token.erc20.library.ERC20._spend_allowance" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 56, + "end_line": 293, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc20/library.cairo" + }, + "start_col": 55, + "start_line": 293 + } + }, + "992": { + "accessible_scopes": [ + "openzeppelin.token.erc20.library", + "openzeppelin.token.erc20.library.ERC20", + "openzeppelin.token.erc20.library.ERC20._spend_allowance" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 59, + "end_line": 293, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc20/library.cairo" + }, + "start_col": 58, + "start_line": 293 + } + }, + "994": { + "accessible_scopes": [ + "openzeppelin.token.erc20.library", + "openzeppelin.token.erc20.library.ERC20", + "openzeppelin.token.erc20.library.ERC20._spend_allowance" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 61, + "end_line": 293, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc20/library.cairo" + }, + "start_col": 35, + "start_line": 293 + } + }, + "996": { + "accessible_scopes": [ + "openzeppelin.token.erc20.library", + "openzeppelin.token.erc20.library.ERC20", + "openzeppelin.token.erc20.library.ERC20._spend_allowance" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 33, + "end_line": 284, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/uint256.cairo" + }, + "parent_location": [ + { + "end_col": 61, + "end_line": 293, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc20/library.cairo" + }, + "parent_location": [ + { + "end_col": 32, + "end_line": 357, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/uint256.cairo" + }, + "parent_location": [ + { + "end_col": 74, + "end_line": 294, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc20/library.cairo" + }, + "start_col": 35, + "start_line": 294 + }, + "While trying to retrieve the implicit argument 'range_check_ptr' in:" + ], + "start_col": 17, + "start_line": 357 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 35, + "start_line": 293 + }, + "While trying to update the implicit return value 'range_check_ptr' in:" + ], + "start_col": 18, + "start_line": 284 + } + }, + "997": { + "accessible_scopes": [ + "openzeppelin.token.erc20.library", + "openzeppelin.token.erc20.library.ERC20", + "openzeppelin.token.erc20.library.ERC20._spend_allowance" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 40, + "end_line": 292, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc20/library.cairo" + }, + "parent_location": [ + { + "end_col": 40, + "end_line": 292, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc20/library.cairo" + }, + "parent_location": [ + { + "end_col": 63, + "end_line": 294, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc20/library.cairo" + }, + "start_col": 46, + "start_line": 294 + }, + "While expanding the reference 'current_allowance' in:" + ], + "start_col": 14, + "start_line": 292 + }, + "While auto generating local variable for 'current_allowance'." + ], + "start_col": 14, + "start_line": 292 + } + }, + "998": { + "accessible_scopes": [ + "openzeppelin.token.erc20.library", + "openzeppelin.token.erc20.library.ERC20", + "openzeppelin.token.erc20.library.ERC20._spend_allowance" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 40, + "end_line": 292, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc20/library.cairo" + }, + "parent_location": [ + { + "end_col": 40, + "end_line": 292, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc20/library.cairo" + }, + "parent_location": [ + { + "end_col": 63, + "end_line": 294, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc20/library.cairo" + }, + "start_col": 46, + "start_line": 294 + }, + "While expanding the reference 'current_allowance' in:" + ], + "start_col": 14, + "start_line": 292 + }, + "While auto generating local variable for 'current_allowance'." + ], + "start_col": 14, + "start_line": 292 + } + }, + "999": { + "accessible_scopes": [ + "openzeppelin.token.erc20.library", + "openzeppelin.token.erc20.library.ERC20", + "openzeppelin.token.erc20.library.ERC20._spend_allowance" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 31, + "end_line": 293, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc20/library.cairo" + }, + "parent_location": [ + { + "end_col": 73, + "end_line": 294, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc20/library.cairo" + }, + "start_col": 65, + "start_line": 294 + }, + "While expanding the reference 'infinite' in:" + ], + "start_col": 14, + "start_line": 293 + } + }, + "1000": { + "accessible_scopes": [ + "openzeppelin.token.erc20.library", + "openzeppelin.token.erc20.library.ERC20", + "openzeppelin.token.erc20.library.ERC20._spend_allowance" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 31, + "end_line": 293, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc20/library.cairo" + }, + "parent_location": [ + { + "end_col": 73, + "end_line": 294, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc20/library.cairo" + }, + "start_col": 65, + "start_line": 294 + }, + "While expanding the reference 'infinite' in:" + ], + "start_col": 14, + "start_line": 293 + } + }, + "1001": { + "accessible_scopes": [ + "openzeppelin.token.erc20.library", + "openzeppelin.token.erc20.library.ERC20", + "openzeppelin.token.erc20.library.ERC20._spend_allowance" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 74, + "end_line": 294, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc20/library.cairo" + }, + "start_col": 35, + "start_line": 294 + } + }, + "1003": { + "accessible_scopes": [ + "openzeppelin.token.erc20.library", + "openzeppelin.token.erc20.library.ERC20", + "openzeppelin.token.erc20.library.ERC20._spend_allowance" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 11, + "end_line": 296, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc20/library.cairo" + }, + "start_col": 9, + "start_line": 296 + } + }, + "1005": { + "accessible_scopes": [ + "openzeppelin.token.erc20.library", + "openzeppelin.token.erc20.library.ERC20", + "openzeppelin.token.erc20.library.ERC20._spend_allowance" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 32, + "end_line": 357, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/uint256.cairo" + }, + "parent_location": [ + { + "end_col": 74, + "end_line": 294, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc20/library.cairo" + }, + "parent_location": [ + { + "end_col": 32, + "end_line": 35, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/security/safemath/library.cairo" + }, + "parent_location": [ + { + "end_col": 93, + "end_line": 298, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc20/library.cairo" + }, + "start_col": 48, + "start_line": 298 + }, + "While trying to retrieve the implicit argument 'range_check_ptr' in:" + ], + "start_col": 17, + "start_line": 35 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 35, + "start_line": 294 + }, + "While trying to update the implicit return value 'range_check_ptr' in:" + ], + "start_col": 17, + "start_line": 357 + } + }, + "1006": { + "accessible_scopes": [ + "openzeppelin.token.erc20.library", + "openzeppelin.token.erc20.library.ERC20", + "openzeppelin.token.erc20.library.ERC20._spend_allowance" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 40, + "end_line": 292, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc20/library.cairo" + }, + "parent_location": [ + { + "end_col": 40, + "end_line": 292, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc20/library.cairo" + }, + "parent_location": [ + { + "end_col": 84, + "end_line": 298, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc20/library.cairo" + }, + "start_col": 67, + "start_line": 298 + }, + "While expanding the reference 'current_allowance' in:" + ], + "start_col": 14, + "start_line": 292 + }, + "While auto generating local variable for 'current_allowance'." + ], + "start_col": 14, + "start_line": 292 + } + }, + "1007": { + "accessible_scopes": [ + "openzeppelin.token.erc20.library", + "openzeppelin.token.erc20.library.ERC20", + "openzeppelin.token.erc20.library.ERC20._spend_allowance" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 40, + "end_line": 292, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc20/library.cairo" + }, + "parent_location": [ + { + "end_col": 40, + "end_line": 292, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc20/library.cairo" + }, + "parent_location": [ + { + "end_col": 84, + "end_line": 298, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc20/library.cairo" + }, + "start_col": 67, + "start_line": 298 + }, + "While expanding the reference 'current_allowance' in:" + ], + "start_col": 14, + "start_line": 292 + }, + "While auto generating local variable for 'current_allowance'." + ], + "start_col": 14, + "start_line": 292 + } + }, + "1008": { + "accessible_scopes": [ + "openzeppelin.token.erc20.library", + "openzeppelin.token.erc20.library.ERC20", + "openzeppelin.token.erc20.library.ERC20._spend_allowance" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 52, + "end_line": 285, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc20/library.cairo" + }, + "parent_location": [ + { + "end_col": 92, + "end_line": 298, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc20/library.cairo" + }, + "start_col": 86, + "start_line": 298 + }, + "While expanding the reference 'amount' in:" + ], + "start_col": 37, + "start_line": 285 + } + }, + "1009": { + "accessible_scopes": [ + "openzeppelin.token.erc20.library", + "openzeppelin.token.erc20.library.ERC20", + "openzeppelin.token.erc20.library.ERC20._spend_allowance" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 52, + "end_line": 285, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc20/library.cairo" + }, + "parent_location": [ + { + "end_col": 92, + "end_line": 298, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc20/library.cairo" + }, + "start_col": 86, + "start_line": 298 + }, + "While expanding the reference 'amount' in:" + ], + "start_col": 37, + "start_line": 285 + } + }, + "1010": { + "accessible_scopes": [ + "openzeppelin.token.erc20.library", + "openzeppelin.token.erc20.library.ERC20", + "openzeppelin.token.erc20.library.ERC20._spend_allowance" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 93, + "end_line": 298, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc20/library.cairo" + }, + "start_col": 48, + "start_line": 298 + } + }, + "1012": { + "accessible_scopes": [ + "openzeppelin.token.erc20.library", + "openzeppelin.token.erc20.library.ERC20", + "openzeppelin.token.erc20.library.ERC20._spend_allowance" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 33, + "end_line": 15, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC20_allowances/decl.cairo" + }, + "parent_location": [ + { + "end_col": 81, + "end_line": 292, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc20/library.cairo" + }, + "parent_location": [ + { + "end_col": 33, + "end_line": 15, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC20_allowances/decl.cairo" + }, + "parent_location": [ + { + "end_col": 81, + "end_line": 292, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc20/library.cairo" + }, + "parent_location": [ + { + "end_col": 37, + "end_line": 264, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc20/library.cairo" + }, + "parent_location": [ + { + "end_col": 52, + "end_line": 301, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc20/library.cairo" + }, + "start_col": 13, + "start_line": 301 + }, + "While trying to retrieve the implicit argument 'syscall_ptr' in:" + ], + "start_col": 19, + "start_line": 264 + }, + "While expanding the reference 'syscall_ptr' in:" + ], + "start_col": 44, + "start_line": 292 + }, + "While trying to update the implicit return value 'syscall_ptr' in:" + ], + "start_col": 15, + "start_line": 15 + }, + "While auto generating local variable for 'syscall_ptr'." + ], + "start_col": 44, + "start_line": 292 + }, + "While trying to update the implicit return value 'syscall_ptr' in:" + ], + "start_col": 15, + "start_line": 15 + } + }, + "1013": { + "accessible_scopes": [ + "openzeppelin.token.erc20.library", + "openzeppelin.token.erc20.library.ERC20", + "openzeppelin.token.erc20.library.ERC20._spend_allowance" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 61, + "end_line": 15, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC20_allowances/decl.cairo" + }, + "parent_location": [ + { + "end_col": 81, + "end_line": 292, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc20/library.cairo" + }, + "parent_location": [ + { + "end_col": 61, + "end_line": 15, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC20_allowances/decl.cairo" + }, + "parent_location": [ + { + "end_col": 81, + "end_line": 292, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc20/library.cairo" + }, + "parent_location": [ + { + "end_col": 65, + "end_line": 264, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc20/library.cairo" + }, + "parent_location": [ + { + "end_col": 52, + "end_line": 301, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc20/library.cairo" + }, + "start_col": 13, + "start_line": 301 + }, + "While trying to retrieve the implicit argument 'pedersen_ptr' in:" + ], + "start_col": 39, + "start_line": 264 + }, + "While expanding the reference 'pedersen_ptr' in:" + ], + "start_col": 44, + "start_line": 292 + }, + "While trying to update the implicit return value 'pedersen_ptr' in:" + ], + "start_col": 35, + "start_line": 15 + }, + "While auto generating local variable for 'pedersen_ptr'." + ], + "start_col": 44, + "start_line": 292 + }, + "While trying to update the implicit return value 'pedersen_ptr' in:" + ], + "start_col": 35, + "start_line": 15 + } + }, + "1014": { + "accessible_scopes": [ + "openzeppelin.token.erc20.library", + "openzeppelin.token.erc20.library.ERC20", + "openzeppelin.token.erc20.library.ERC20._spend_allowance" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 32, + "end_line": 35, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/security/safemath/library.cairo" + }, + "parent_location": [ + { + "end_col": 93, + "end_line": 298, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc20/library.cairo" + }, + "parent_location": [ + { + "end_col": 82, + "end_line": 264, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc20/library.cairo" + }, + "parent_location": [ + { + "end_col": 52, + "end_line": 301, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc20/library.cairo" + }, + "start_col": 13, + "start_line": 301 + }, + "While trying to retrieve the implicit argument 'range_check_ptr' in:" + ], + "start_col": 67, + "start_line": 264 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 48, + "start_line": 298 + }, + "While trying to update the implicit return value 'range_check_ptr' in:" + ], + "start_col": 17, + "start_line": 35 + } + }, + "1015": { + "accessible_scopes": [ + "openzeppelin.token.erc20.library", + "openzeppelin.token.erc20.library.ERC20", + "openzeppelin.token.erc20.library.ERC20._spend_allowance" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 20, + "end_line": 285, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc20/library.cairo" + }, + "parent_location": [ + { + "end_col": 27, + "end_line": 301, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc20/library.cairo" + }, + "start_col": 22, + "start_line": 301 + }, + "While expanding the reference 'owner' in:" + ], + "start_col": 9, + "start_line": 285 + } + }, + "1016": { + "accessible_scopes": [ + "openzeppelin.token.erc20.library", + "openzeppelin.token.erc20.library.ERC20", + "openzeppelin.token.erc20.library.ERC20._spend_allowance" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 35, + "end_line": 285, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc20/library.cairo" + }, + "parent_location": [ + { + "end_col": 36, + "end_line": 301, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc20/library.cairo" + }, + "start_col": 29, + "start_line": 301 + }, + "While expanding the reference 'spender' in:" + ], + "start_col": 22, + "start_line": 285 + } + }, + "1017": { + "accessible_scopes": [ + "openzeppelin.token.erc20.library", + "openzeppelin.token.erc20.library.ERC20", + "openzeppelin.token.erc20.library.ERC20._spend_allowance" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 44, + "end_line": 298, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc20/library.cairo" + }, + "parent_location": [ + { + "end_col": 51, + "end_line": 301, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc20/library.cairo" + }, + "start_col": 38, + "start_line": 301 + }, + "While expanding the reference 'new_allowance' in:" + ], + "start_col": 22, + "start_line": 298 + } + }, + "1018": { + "accessible_scopes": [ + "openzeppelin.token.erc20.library", + "openzeppelin.token.erc20.library.ERC20", + "openzeppelin.token.erc20.library.ERC20._spend_allowance" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 44, + "end_line": 298, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc20/library.cairo" + }, + "parent_location": [ + { + "end_col": 51, + "end_line": 301, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc20/library.cairo" + }, + "start_col": 38, + "start_line": 301 + }, + "While expanding the reference 'new_allowance' in:" + ], + "start_col": 22, + "start_line": 298 + } + }, + "1019": { + "accessible_scopes": [ + "openzeppelin.token.erc20.library", + "openzeppelin.token.erc20.library.ERC20", + "openzeppelin.token.erc20.library.ERC20._spend_allowance" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 52, + "end_line": 301, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc20/library.cairo" + }, + "start_col": 13, + "start_line": 301 + } + }, + "1021": { + "accessible_scopes": [ + "openzeppelin.token.erc20.library", + "openzeppelin.token.erc20.library.ERC20", + "openzeppelin.token.erc20.library.ERC20._spend_allowance" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 23, + "end_line": 302, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc20/library.cairo" + }, + "start_col": 13, + "start_line": 302 + } + }, + "1022": { + "accessible_scopes": [ + "openzeppelin.token.erc20.library", + "openzeppelin.token.erc20.library.ERC20", + "openzeppelin.token.erc20.library.ERC20._spend_allowance" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 33, + "end_line": 15, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC20_allowances/decl.cairo" + }, + "parent_location": [ + { + "end_col": 81, + "end_line": 292, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc20/library.cairo" + }, + "parent_location": [ + { + "end_col": 33, + "end_line": 15, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC20_allowances/decl.cairo" + }, + "parent_location": [ + { + "end_col": 81, + "end_line": 292, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc20/library.cairo" + }, + "parent_location": [ + { + "end_col": 45, + "end_line": 284, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc20/library.cairo" + }, + "parent_location": [ + { + "end_col": 19, + "end_line": 304, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc20/library.cairo" + }, + "start_col": 9, + "start_line": 304 + }, + "While trying to retrieve the implicit argument 'syscall_ptr' in:" + ], + "start_col": 27, + "start_line": 284 + }, + "While expanding the reference 'syscall_ptr' in:" + ], + "start_col": 44, + "start_line": 292 + }, + "While trying to update the implicit return value 'syscall_ptr' in:" + ], + "start_col": 15, + "start_line": 15 + }, + "While auto generating local variable for 'syscall_ptr'." + ], + "start_col": 44, + "start_line": 292 + }, + "While trying to update the implicit return value 'syscall_ptr' in:" + ], + "start_col": 15, + "start_line": 15 + } + }, + "1023": { + "accessible_scopes": [ + "openzeppelin.token.erc20.library", + "openzeppelin.token.erc20.library.ERC20", + "openzeppelin.token.erc20.library.ERC20._spend_allowance" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 61, + "end_line": 15, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC20_allowances/decl.cairo" + }, + "parent_location": [ + { + "end_col": 81, + "end_line": 292, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc20/library.cairo" + }, + "parent_location": [ + { + "end_col": 61, + "end_line": 15, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC20_allowances/decl.cairo" + }, + "parent_location": [ + { + "end_col": 81, + "end_line": 292, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc20/library.cairo" + }, + "parent_location": [ + { + "end_col": 73, + "end_line": 284, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc20/library.cairo" + }, + "parent_location": [ + { + "end_col": 19, + "end_line": 304, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc20/library.cairo" + }, + "start_col": 9, + "start_line": 304 + }, + "While trying to retrieve the implicit argument 'pedersen_ptr' in:" + ], + "start_col": 47, + "start_line": 284 + }, + "While expanding the reference 'pedersen_ptr' in:" + ], + "start_col": 44, + "start_line": 292 + }, + "While trying to update the implicit return value 'pedersen_ptr' in:" + ], + "start_col": 35, + "start_line": 15 + }, + "While auto generating local variable for 'pedersen_ptr'." + ], + "start_col": 44, + "start_line": 292 + }, + "While trying to update the implicit return value 'pedersen_ptr' in:" + ], + "start_col": 35, + "start_line": 15 + } + }, + "1024": { + "accessible_scopes": [ + "openzeppelin.token.erc20.library", + "openzeppelin.token.erc20.library.ERC20", + "openzeppelin.token.erc20.library.ERC20._spend_allowance" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 32, + "end_line": 357, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/uint256.cairo" + }, + "parent_location": [ + { + "end_col": 74, + "end_line": 294, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc20/library.cairo" + }, + "parent_location": [ + { + "end_col": 90, + "end_line": 284, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc20/library.cairo" + }, + "parent_location": [ + { + "end_col": 19, + "end_line": 304, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc20/library.cairo" + }, + "start_col": 9, + "start_line": 304 + }, + "While trying to retrieve the implicit argument 'range_check_ptr' in:" + ], + "start_col": 75, + "start_line": 284 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 35, + "start_line": 294 + }, + "While trying to update the implicit return value 'range_check_ptr' in:" + ], + "start_col": 17, + "start_line": 357 + } + }, + "1025": { + "accessible_scopes": [ + "openzeppelin.token.erc20.library", + "openzeppelin.token.erc20.library.ERC20", + "openzeppelin.token.erc20.library.ERC20._spend_allowance" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 19, + "end_line": 304, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc20/library.cairo" + }, + "start_col": 9, + "start_line": 304 + } + }, + "1026": { + "accessible_scopes": [ + "openzeppelin.access.ownable.library", + "openzeppelin.access.ownable.library.OwnershipTransferred", + "openzeppelin.access.ownable.library.OwnershipTransferred.emit" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 14, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/event/OwnershipTransferred/8220fde17ca5479f12ae71a8036f4d354fe722f2c036da610b53511924e4ee84.cairo" + }, + "parent_location": [ + { + "end_col": 26, + "end_line": 15, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/access/ownable/library.cairo" + }, + "start_col": 6, + "start_line": 15 + }, + "While handling event:" + ], + "start_col": 1, + "start_line": 1 + } + }, + "1028": { + "accessible_scopes": [ + "openzeppelin.access.ownable.library", + "openzeppelin.access.ownable.library.OwnershipTransferred", + "openzeppelin.access.ownable.library.OwnershipTransferred.emit" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 40, + "end_line": 2, + "input_file": { + "filename": "autogen/starknet/event/OwnershipTransferred/8220fde17ca5479f12ae71a8036f4d354fe722f2c036da610b53511924e4ee84.cairo" + }, + "parent_location": [ + { + "end_col": 26, + "end_line": 15, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/access/ownable/library.cairo" + }, + "start_col": 6, + "start_line": 15 + }, + "While handling event:" + ], + "start_col": 33, + "start_line": 2 + } + }, + "1030": { + "accessible_scopes": [ + "openzeppelin.access.ownable.library", + "openzeppelin.access.ownable.library.OwnershipTransferred", + "openzeppelin.access.ownable.library.OwnershipTransferred.emit" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 29, + "end_line": 2, + "input_file": { + "filename": "autogen/starknet/event/OwnershipTransferred/8220fde17ca5479f12ae71a8036f4d354fe722f2c036da610b53511924e4ee84.cairo" + }, + "parent_location": [ + { + "end_col": 26, + "end_line": 15, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/access/ownable/library.cairo" + }, + "start_col": 6, + "start_line": 15 + }, + "While handling event:" + ], + "start_col": 6, + "start_line": 2 + } + }, + "1031": { + "accessible_scopes": [ + "openzeppelin.access.ownable.library", + "openzeppelin.access.ownable.library.OwnershipTransferred", + "openzeppelin.access.ownable.library.OwnershipTransferred.emit" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 31, + "end_line": 3, + "input_file": { + "filename": "autogen/starknet/event/OwnershipTransferred/8220fde17ca5479f12ae71a8036f4d354fe722f2c036da610b53511924e4ee84.cairo" + }, + "parent_location": [ + { + "end_col": 26, + "end_line": 15, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/access/ownable/library.cairo" + }, + "start_col": 6, + "start_line": 15 + }, + "While handling event:" + ], + "start_col": 23, + "start_line": 3 + } + }, + "1033": { + "accessible_scopes": [ + "openzeppelin.access.ownable.library", + "openzeppelin.access.ownable.library.OwnershipTransferred", + "openzeppelin.access.ownable.library.OwnershipTransferred.emit" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 32, + "end_line": 3, + "input_file": { + "filename": "autogen/starknet/event/OwnershipTransferred/8220fde17ca5479f12ae71a8036f4d354fe722f2c036da610b53511924e4ee84.cairo" + }, + "parent_location": [ + { + "end_col": 26, + "end_line": 15, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/access/ownable/library.cairo" + }, + "start_col": 6, + "start_line": 15 + }, + "While handling event:" + ], + "start_col": 1, + "start_line": 3 + } + }, + "1034": { + "accessible_scopes": [ + "openzeppelin.access.ownable.library", + "openzeppelin.access.ownable.library.OwnershipTransferred", + "openzeppelin.access.ownable.library.OwnershipTransferred.emit" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 40, + "end_line": 4, + "input_file": { + "filename": "autogen/starknet/event/OwnershipTransferred/8220fde17ca5479f12ae71a8036f4d354fe722f2c036da610b53511924e4ee84.cairo" + }, + "parent_location": [ + { + "end_col": 26, + "end_line": 15, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/access/ownable/library.cairo" + }, + "start_col": 6, + "start_line": 15 + }, + "While handling event:" + ], + "start_col": 33, + "start_line": 4 + } + }, + "1036": { + "accessible_scopes": [ + "openzeppelin.access.ownable.library", + "openzeppelin.access.ownable.library.OwnershipTransferred", + "openzeppelin.access.ownable.library.OwnershipTransferred.emit" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 29, + "end_line": 4, + "input_file": { + "filename": "autogen/starknet/event/OwnershipTransferred/8220fde17ca5479f12ae71a8036f4d354fe722f2c036da610b53511924e4ee84.cairo" + }, + "parent_location": [ + { + "end_col": 26, + "end_line": 15, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/access/ownable/library.cairo" + }, + "start_col": 6, + "start_line": 15 + }, + "While handling event:" + ], + "start_col": 6, + "start_line": 4 + } + }, + "1037": { + "accessible_scopes": [ + "openzeppelin.access.ownable.library", + "openzeppelin.access.ownable.library.OwnershipTransferred", + "openzeppelin.access.ownable.library.OwnershipTransferred.emit" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 41, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/arg_processor/e2129a0023ce5f9e4c3de1d6fb100b2688dccff4a2ed2082db4a311f35c53e21.cairo" + }, + "parent_location": [ + { + "end_col": 40, + "end_line": 15, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/access/ownable/library.cairo" + }, + "start_col": 27, + "start_line": 15 + }, + "While handling calldata argument 'previousOwner'" + ], + "start_col": 1, + "start_line": 1 + } + }, + "1038": { + "accessible_scopes": [ + "openzeppelin.access.ownable.library", + "openzeppelin.access.ownable.library.OwnershipTransferred", + "openzeppelin.access.ownable.library.OwnershipTransferred.emit" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 36, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/arg_processor/445d818b0524d35ae3e73b7abec41731d1445f0ce6866ec5a3a8a871521799a0.cairo" + }, + "parent_location": [ + { + "end_col": 56, + "end_line": 15, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/access/ownable/library.cairo" + }, + "start_col": 48, + "start_line": 15 + }, + "While handling calldata argument 'newOwner'" + ], + "start_col": 1, + "start_line": 1 + } + }, + "1039": { + "accessible_scopes": [ + "openzeppelin.access.ownable.library", + "openzeppelin.access.ownable.library.OwnershipTransferred", + "openzeppelin.access.ownable.library.OwnershipTransferred.emit" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 40, + "end_line": 2, + "input_file": { + "filename": "autogen/starknet/arg_processor/445d818b0524d35ae3e73b7abec41731d1445f0ce6866ec5a3a8a871521799a0.cairo" + }, + "parent_location": [ + { + "end_col": 56, + "end_line": 15, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/access/ownable/library.cairo" + }, + "parent_location": [ + { + "end_col": 64, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/event/OwnershipTransferred/6150feec30bd48bfd0f446ed8c155a6d911a2c3fb3ec7a980733900416819259.cairo" + }, + "parent_location": [ + { + "end_col": 26, + "end_line": 15, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/access/ownable/library.cairo" + }, + "start_col": 6, + "start_line": 15 + }, + "While handling event:" + ], + "start_col": 50, + "start_line": 1 + }, + "While expanding the reference '__calldata_ptr' in:" + ], + "start_col": 48, + "start_line": 15 + }, + "While handling calldata argument 'newOwner'" + ], + "start_col": 22, + "start_line": 2 + } + }, + "1041": { + "accessible_scopes": [ + "openzeppelin.access.ownable.library", + "openzeppelin.access.ownable.library.OwnershipTransferred", + "openzeppelin.access.ownable.library.OwnershipTransferred.emit" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 29, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/event/OwnershipTransferred/a7a8ae41be29ac9f4f6c3b7837c448d787ca051dd1ade98f409e54d33d112504.cairo" + }, + "parent_location": [ + { + "end_col": 26, + "end_line": 15, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/access/ownable/library.cairo" + }, + "parent_location": [ + { + "end_col": 35, + "end_line": 390, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/starknet/common/syscalls.cairo" + }, + "parent_location": [ + { + "end_col": 95, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/event/OwnershipTransferred/6150feec30bd48bfd0f446ed8c155a6d911a2c3fb3ec7a980733900416819259.cairo" + }, + "parent_location": [ + { + "end_col": 26, + "end_line": 15, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/access/ownable/library.cairo" + }, + "start_col": 6, + "start_line": 15 + }, + "While handling event:" + ], + "start_col": 1, + "start_line": 1 + }, + "While trying to retrieve the implicit argument 'syscall_ptr' in:" + ], + "start_col": 17, + "start_line": 390 + }, + "While expanding the reference 'syscall_ptr' in:" + ], + "start_col": 6, + "start_line": 15 + }, + "While handling event:" + ], + "start_col": 11, + "start_line": 1 + } + }, + "1042": { + "accessible_scopes": [ + "openzeppelin.access.ownable.library", + "openzeppelin.access.ownable.library.OwnershipTransferred", + "openzeppelin.access.ownable.library.OwnershipTransferred.emit" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 22, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/event/OwnershipTransferred/6150feec30bd48bfd0f446ed8c155a6d911a2c3fb3ec7a980733900416819259.cairo" + }, + "parent_location": [ + { + "end_col": 26, + "end_line": 15, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/access/ownable/library.cairo" + }, + "start_col": 6, + "start_line": 15 + }, + "While handling event:" + ], + "start_col": 21, + "start_line": 1 + } + }, + "1044": { + "accessible_scopes": [ + "openzeppelin.access.ownable.library", + "openzeppelin.access.ownable.library.OwnershipTransferred", + "openzeppelin.access.ownable.library.OwnershipTransferred.emit" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 22, + "end_line": 2, + "input_file": { + "filename": "autogen/starknet/event/OwnershipTransferred/8220fde17ca5479f12ae71a8036f4d354fe722f2c036da610b53511924e4ee84.cairo" + }, + "parent_location": [ + { + "end_col": 26, + "end_line": 15, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/access/ownable/library.cairo" + }, + "parent_location": [ + { + "end_col": 39, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/event/OwnershipTransferred/6150feec30bd48bfd0f446ed8c155a6d911a2c3fb3ec7a980733900416819259.cairo" + }, + "parent_location": [ + { + "end_col": 26, + "end_line": 15, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/access/ownable/library.cairo" + }, + "start_col": 6, + "start_line": 15 + }, + "While handling event:" + ], + "start_col": 29, + "start_line": 1 + }, + "While expanding the reference '__keys_ptr' in:" + ], + "start_col": 6, + "start_line": 15 + }, + "While handling event:" + ], + "start_col": 12, + "start_line": 2 + } + }, + "1045": { + "accessible_scopes": [ + "openzeppelin.access.ownable.library", + "openzeppelin.access.ownable.library.OwnershipTransferred", + "openzeppelin.access.ownable.library.OwnershipTransferred.emit" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 77, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/event/OwnershipTransferred/6150feec30bd48bfd0f446ed8c155a6d911a2c3fb3ec7a980733900416819259.cairo" + }, + "parent_location": [ + { + "end_col": 26, + "end_line": 15, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/access/ownable/library.cairo" + }, + "start_col": 6, + "start_line": 15 + }, + "While handling event:" + ], + "start_col": 50, + "start_line": 1 + } + }, + "1046": { + "accessible_scopes": [ + "openzeppelin.access.ownable.library", + "openzeppelin.access.ownable.library.OwnershipTransferred", + "openzeppelin.access.ownable.library.OwnershipTransferred.emit" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 22, + "end_line": 4, + "input_file": { + "filename": "autogen/starknet/event/OwnershipTransferred/8220fde17ca5479f12ae71a8036f4d354fe722f2c036da610b53511924e4ee84.cairo" + }, + "parent_location": [ + { + "end_col": 26, + "end_line": 15, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/access/ownable/library.cairo" + }, + "parent_location": [ + { + "end_col": 94, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/event/OwnershipTransferred/6150feec30bd48bfd0f446ed8c155a6d911a2c3fb3ec7a980733900416819259.cairo" + }, + "parent_location": [ + { + "end_col": 26, + "end_line": 15, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/access/ownable/library.cairo" + }, + "start_col": 6, + "start_line": 15 + }, + "While handling event:" + ], + "start_col": 84, + "start_line": 1 + }, + "While expanding the reference '__data_ptr' in:" + ], + "start_col": 6, + "start_line": 15 + }, + "While handling event:" + ], + "start_col": 12, + "start_line": 4 + } + }, + "1047": { + "accessible_scopes": [ + "openzeppelin.access.ownable.library", + "openzeppelin.access.ownable.library.OwnershipTransferred", + "openzeppelin.access.ownable.library.OwnershipTransferred.emit" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 95, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/event/OwnershipTransferred/6150feec30bd48bfd0f446ed8c155a6d911a2c3fb3ec7a980733900416819259.cairo" + }, + "parent_location": [ + { + "end_col": 26, + "end_line": 15, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/access/ownable/library.cairo" + }, + "start_col": 6, + "start_line": 15 + }, + "While handling event:" + ], + "start_col": 1, + "start_line": 1 + } + }, + "1049": { + "accessible_scopes": [ + "openzeppelin.access.ownable.library", + "openzeppelin.access.ownable.library.OwnershipTransferred", + "openzeppelin.access.ownable.library.OwnershipTransferred.emit" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 46, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/event/OwnershipTransferred/a7a8ae41be29ac9f4f6c3b7837c448d787ca051dd1ade98f409e54d33d112504.cairo" + }, + "parent_location": [ + { + "end_col": 26, + "end_line": 15, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/access/ownable/library.cairo" + }, + "parent_location": [ + { + "end_col": 46, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/event/OwnershipTransferred/a7a8ae41be29ac9f4f6c3b7837c448d787ca051dd1ade98f409e54d33d112504.cairo" + }, + "parent_location": [ + { + "end_col": 26, + "end_line": 15, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/access/ownable/library.cairo" + }, + "parent_location": [ + { + "end_col": 11, + "end_line": 2, + "input_file": { + "filename": "autogen/starknet/event/OwnershipTransferred/6150feec30bd48bfd0f446ed8c155a6d911a2c3fb3ec7a980733900416819259.cairo" + }, + "parent_location": [ + { + "end_col": 26, + "end_line": 15, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/access/ownable/library.cairo" + }, + "start_col": 6, + "start_line": 15 + }, + "While handling event:" + ], + "start_col": 1, + "start_line": 2 + }, + "While trying to retrieve the implicit argument 'range_check_ptr' in:" + ], + "start_col": 6, + "start_line": 15 + }, + "While handling event:" + ], + "start_col": 31, + "start_line": 1 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 6, + "start_line": 15 + }, + "While handling event:" + ], + "start_col": 31, + "start_line": 1 + } + }, + "1050": { + "accessible_scopes": [ + "openzeppelin.access.ownable.library", + "openzeppelin.access.ownable.library.OwnershipTransferred", + "openzeppelin.access.ownable.library.OwnershipTransferred.emit" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 11, + "end_line": 2, + "input_file": { + "filename": "autogen/starknet/event/OwnershipTransferred/6150feec30bd48bfd0f446ed8c155a6d911a2c3fb3ec7a980733900416819259.cairo" + }, + "parent_location": [ + { + "end_col": 26, + "end_line": 15, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/access/ownable/library.cairo" + }, + "start_col": 6, + "start_line": 15 + }, + "While handling event:" + ], + "start_col": 1, + "start_line": 2 + } + }, + "1051": { + "accessible_scopes": [ + "openzeppelin.access.ownable.library", + "openzeppelin.access.ownable.library.Ownable_owner", + "openzeppelin.access.ownable.library.Ownable_owner.addr" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 41, + "end_line": 7, + "input_file": { + "filename": "autogen/starknet/storage_var/Ownable_owner/impl.cairo" + }, + "parent_location": [ + { + "end_col": 41, + "end_line": 7, + "input_file": { + "filename": "autogen/starknet/storage_var/Ownable_owner/decl.cairo" + }, + "parent_location": [ + { + "end_col": 26, + "end_line": 9, + "input_file": { + "filename": "autogen/starknet/storage_var/Ownable_owner/impl.cairo" + }, + "start_col": 9, + "start_line": 9 + }, + "While trying to retrieve the implicit argument 'pedersen_ptr' in:" + ], + "start_col": 15, + "start_line": 7 + }, + "While expanding the reference 'pedersen_ptr' in:" + ], + "start_col": 15, + "start_line": 7 + } + }, + "1052": { + "accessible_scopes": [ + "openzeppelin.access.ownable.library", + "openzeppelin.access.ownable.library.Ownable_owner", + "openzeppelin.access.ownable.library.Ownable_owner.addr" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 58, + "end_line": 7, + "input_file": { + "filename": "autogen/starknet/storage_var/Ownable_owner/impl.cairo" + }, + "parent_location": [ + { + "end_col": 58, + "end_line": 7, + "input_file": { + "filename": "autogen/starknet/storage_var/Ownable_owner/decl.cairo" + }, + "parent_location": [ + { + "end_col": 26, + "end_line": 9, + "input_file": { + "filename": "autogen/starknet/storage_var/Ownable_owner/impl.cairo" + }, + "start_col": 9, + "start_line": 9 + }, + "While trying to retrieve the implicit argument 'range_check_ptr' in:" + ], + "start_col": 43, + "start_line": 7 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 43, + "start_line": 7 + } + }, + "1053": { + "accessible_scopes": [ + "openzeppelin.access.ownable.library", + "openzeppelin.access.ownable.library.Ownable_owner", + "openzeppelin.access.ownable.library.Ownable_owner.addr" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 95, + "end_line": 8, + "input_file": { + "filename": "autogen/starknet/storage_var/Ownable_owner/impl.cairo" + }, + "parent_location": [ + { + "end_col": 24, + "end_line": 9, + "input_file": { + "filename": "autogen/starknet/storage_var/Ownable_owner/impl.cairo" + }, + "start_col": 21, + "start_line": 9 + }, + "While expanding the reference 'res' in:" + ], + "start_col": 19, + "start_line": 8 + } + }, + "1055": { + "accessible_scopes": [ + "openzeppelin.access.ownable.library", + "openzeppelin.access.ownable.library.Ownable_owner", + "openzeppelin.access.ownable.library.Ownable_owner.addr" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 26, + "end_line": 9, + "input_file": { + "filename": "autogen/starknet/storage_var/Ownable_owner/impl.cairo" + }, + "start_col": 9, + "start_line": 9 + } + }, + "1056": { + "accessible_scopes": [ + "openzeppelin.access.ownable.library", + "openzeppelin.access.ownable.library.Ownable_owner", + "openzeppelin.access.ownable.library.Ownable_owner.read" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 61, + "end_line": 12, + "input_file": { + "filename": "autogen/starknet/storage_var/Ownable_owner/impl.cairo" + }, + "parent_location": [ + { + "end_col": 41, + "end_line": 7, + "input_file": { + "filename": "autogen/starknet/storage_var/Ownable_owner/decl.cairo" + }, + "parent_location": [ + { + "end_col": 36, + "end_line": 13, + "input_file": { + "filename": "autogen/starknet/storage_var/Ownable_owner/impl.cairo" + }, + "start_col": 30, + "start_line": 13 + }, + "While trying to retrieve the implicit argument 'pedersen_ptr' in:" + ], + "start_col": 15, + "start_line": 7 + }, + "While expanding the reference 'pedersen_ptr' in:" + ], + "start_col": 35, + "start_line": 12 + } + }, + "1057": { + "accessible_scopes": [ + "openzeppelin.access.ownable.library", + "openzeppelin.access.ownable.library.Ownable_owner", + "openzeppelin.access.ownable.library.Ownable_owner.read" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 78, + "end_line": 12, + "input_file": { + "filename": "autogen/starknet/storage_var/Ownable_owner/impl.cairo" + }, + "parent_location": [ + { + "end_col": 58, + "end_line": 7, + "input_file": { + "filename": "autogen/starknet/storage_var/Ownable_owner/decl.cairo" + }, + "parent_location": [ + { + "end_col": 36, + "end_line": 13, + "input_file": { + "filename": "autogen/starknet/storage_var/Ownable_owner/impl.cairo" + }, + "start_col": 30, + "start_line": 13 + }, + "While trying to retrieve the implicit argument 'range_check_ptr' in:" + ], + "start_col": 43, + "start_line": 7 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 63, + "start_line": 12 + } + }, + "1058": { + "accessible_scopes": [ + "openzeppelin.access.ownable.library", + "openzeppelin.access.ownable.library.Ownable_owner", + "openzeppelin.access.ownable.library.Ownable_owner.read" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 36, + "end_line": 13, + "input_file": { + "filename": "autogen/starknet/storage_var/Ownable_owner/impl.cairo" + }, + "start_col": 30, + "start_line": 13 + } + }, + "1060": { + "accessible_scopes": [ + "openzeppelin.access.ownable.library", + "openzeppelin.access.ownable.library.Ownable_owner", + "openzeppelin.access.ownable.library.Ownable_owner.read" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 33, + "end_line": 12, + "input_file": { + "filename": "autogen/starknet/storage_var/Ownable_owner/impl.cairo" + }, + "parent_location": [ + { + "end_col": 37, + "end_line": 352, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/starknet/common/syscalls.cairo" + }, + "parent_location": [ + { + "end_col": 75, + "end_line": 14, + "input_file": { + "filename": "autogen/starknet/storage_var/Ownable_owner/impl.cairo" + }, + "start_col": 37, + "start_line": 14 + }, + "While trying to retrieve the implicit argument 'syscall_ptr' in:" + ], + "start_col": 19, + "start_line": 352 + }, + "While expanding the reference 'syscall_ptr' in:" + ], + "start_col": 15, + "start_line": 12 + } + }, + "1061": { + "accessible_scopes": [ + "openzeppelin.access.ownable.library", + "openzeppelin.access.ownable.library.Ownable_owner", + "openzeppelin.access.ownable.library.Ownable_owner.read" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 26, + "end_line": 13, + "input_file": { + "filename": "autogen/starknet/storage_var/Ownable_owner/impl.cairo" + }, + "parent_location": [ + { + "end_col": 70, + "end_line": 14, + "input_file": { + "filename": "autogen/starknet/storage_var/Ownable_owner/impl.cairo" + }, + "start_col": 58, + "start_line": 14 + }, + "While expanding the reference 'storage_addr' in:" + ], + "start_col": 14, + "start_line": 13 + } + }, + "1062": { + "accessible_scopes": [ + "openzeppelin.access.ownable.library", + "openzeppelin.access.ownable.library.Ownable_owner", + "openzeppelin.access.ownable.library.Ownable_owner.read" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 75, + "end_line": 14, + "input_file": { + "filename": "autogen/starknet/storage_var/Ownable_owner/impl.cairo" + }, + "start_col": 37, + "start_line": 14 + } + }, + "1064": { + "accessible_scopes": [ + "openzeppelin.access.ownable.library", + "openzeppelin.access.ownable.library.Ownable_owner", + "openzeppelin.access.ownable.library.Ownable_owner.read" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 37, + "end_line": 352, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/starknet/common/syscalls.cairo" + }, + "parent_location": [ + { + "end_col": 75, + "end_line": 14, + "input_file": { + "filename": "autogen/starknet/storage_var/Ownable_owner/impl.cairo" + }, + "parent_location": [ + { + "end_col": 42, + "end_line": 16, + "input_file": { + "filename": "autogen/starknet/storage_var/Ownable_owner/impl.cairo" + }, + "start_col": 31, + "start_line": 16 + }, + "While expanding the reference 'syscall_ptr' in:" + ], + "start_col": 37, + "start_line": 14 + }, + "While trying to update the implicit return value 'syscall_ptr' in:" + ], + "start_col": 19, + "start_line": 352 + } + }, + "1065": { + "accessible_scopes": [ + "openzeppelin.access.ownable.library", + "openzeppelin.access.ownable.library.Ownable_owner", + "openzeppelin.access.ownable.library.Ownable_owner.read" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 41, + "end_line": 7, + "input_file": { + "filename": "autogen/starknet/storage_var/Ownable_owner/decl.cairo" + }, + "parent_location": [ + { + "end_col": 36, + "end_line": 13, + "input_file": { + "filename": "autogen/starknet/storage_var/Ownable_owner/impl.cairo" + }, + "parent_location": [ + { + "end_col": 44, + "end_line": 17, + "input_file": { + "filename": "autogen/starknet/storage_var/Ownable_owner/impl.cairo" + }, + "start_col": 32, + "start_line": 17 + }, + "While expanding the reference 'pedersen_ptr' in:" + ], + "start_col": 30, + "start_line": 13 + }, + "While trying to update the implicit return value 'pedersen_ptr' in:" + ], + "start_col": 15, + "start_line": 7 + } + }, + "1066": { + "accessible_scopes": [ + "openzeppelin.access.ownable.library", + "openzeppelin.access.ownable.library.Ownable_owner", + "openzeppelin.access.ownable.library.Ownable_owner.read" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 58, + "end_line": 7, + "input_file": { + "filename": "autogen/starknet/storage_var/Ownable_owner/decl.cairo" + }, + "parent_location": [ + { + "end_col": 36, + "end_line": 13, + "input_file": { + "filename": "autogen/starknet/storage_var/Ownable_owner/impl.cairo" + }, + "parent_location": [ + { + "end_col": 50, + "end_line": 18, + "input_file": { + "filename": "autogen/starknet/storage_var/Ownable_owner/impl.cairo" + }, + "start_col": 35, + "start_line": 18 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 30, + "start_line": 13 + }, + "While trying to update the implicit return value 'range_check_ptr' in:" + ], + "start_col": 43, + "start_line": 7 + } + }, + "1067": { + "accessible_scopes": [ + "openzeppelin.access.ownable.library", + "openzeppelin.access.ownable.library.Ownable_owner", + "openzeppelin.access.ownable.library.Ownable_owner.read" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 33, + "end_line": 14, + "input_file": { + "filename": "autogen/starknet/storage_var/Ownable_owner/impl.cairo" + }, + "parent_location": [ + { + "end_col": 64, + "end_line": 19, + "input_file": { + "filename": "autogen/starknet/storage_var/Ownable_owner/impl.cairo" + }, + "start_col": 45, + "start_line": 19 + }, + "While expanding the reference '__storage_var_temp0' in:" + ], + "start_col": 14, + "start_line": 14 + } + }, + "1068": { + "accessible_scopes": [ + "openzeppelin.access.ownable.library", + "openzeppelin.access.ownable.library.Ownable_owner", + "openzeppelin.access.ownable.library.Ownable_owner.read" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 55, + "end_line": 20, + "input_file": { + "filename": "autogen/starknet/storage_var/Ownable_owner/impl.cairo" + }, + "start_col": 9, + "start_line": 20 + } + }, + "1069": { + "accessible_scopes": [ + "openzeppelin.access.ownable.library", + "openzeppelin.access.ownable.library.Ownable_owner", + "openzeppelin.access.ownable.library.Ownable_owner.write" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 62, + "end_line": 23, + "input_file": { + "filename": "autogen/starknet/storage_var/Ownable_owner/impl.cairo" + }, + "parent_location": [ + { + "end_col": 41, + "end_line": 7, + "input_file": { + "filename": "autogen/starknet/storage_var/Ownable_owner/decl.cairo" + }, + "parent_location": [ + { + "end_col": 36, + "end_line": 24, + "input_file": { + "filename": "autogen/starknet/storage_var/Ownable_owner/impl.cairo" + }, + "start_col": 30, + "start_line": 24 + }, + "While trying to retrieve the implicit argument 'pedersen_ptr' in:" + ], + "start_col": 15, + "start_line": 7 + }, + "While expanding the reference 'pedersen_ptr' in:" + ], + "start_col": 36, + "start_line": 23 + } + }, + "1070": { + "accessible_scopes": [ + "openzeppelin.access.ownable.library", + "openzeppelin.access.ownable.library.Ownable_owner", + "openzeppelin.access.ownable.library.Ownable_owner.write" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 79, + "end_line": 23, + "input_file": { + "filename": "autogen/starknet/storage_var/Ownable_owner/impl.cairo" + }, + "parent_location": [ + { + "end_col": 58, + "end_line": 7, + "input_file": { + "filename": "autogen/starknet/storage_var/Ownable_owner/decl.cairo" + }, + "parent_location": [ + { + "end_col": 36, + "end_line": 24, + "input_file": { + "filename": "autogen/starknet/storage_var/Ownable_owner/impl.cairo" + }, + "start_col": 30, + "start_line": 24 + }, + "While trying to retrieve the implicit argument 'range_check_ptr' in:" + ], + "start_col": 43, + "start_line": 7 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 64, + "start_line": 23 + } + }, + "1071": { + "accessible_scopes": [ + "openzeppelin.access.ownable.library", + "openzeppelin.access.ownable.library.Ownable_owner", + "openzeppelin.access.ownable.library.Ownable_owner.write" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 36, + "end_line": 24, + "input_file": { + "filename": "autogen/starknet/storage_var/Ownable_owner/impl.cairo" + }, + "start_col": 30, + "start_line": 24 + } + }, + "1073": { + "accessible_scopes": [ + "openzeppelin.access.ownable.library", + "openzeppelin.access.ownable.library.Ownable_owner", + "openzeppelin.access.ownable.library.Ownable_owner.write" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 34, + "end_line": 23, + "input_file": { + "filename": "autogen/starknet/storage_var/Ownable_owner/impl.cairo" + }, + "parent_location": [ + { + "end_col": 38, + "end_line": 370, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/starknet/common/syscalls.cairo" + }, + "parent_location": [ + { + "end_col": 80, + "end_line": 25, + "input_file": { + "filename": "autogen/starknet/storage_var/Ownable_owner/impl.cairo" + }, + "start_col": 9, + "start_line": 25 + }, + "While trying to retrieve the implicit argument 'syscall_ptr' in:" + ], + "start_col": 20, + "start_line": 370 + }, + "While expanding the reference 'syscall_ptr' in:" + ], + "start_col": 16, + "start_line": 23 + } + }, + "1074": { + "accessible_scopes": [ + "openzeppelin.access.ownable.library", + "openzeppelin.access.ownable.library.Ownable_owner", + "openzeppelin.access.ownable.library.Ownable_owner.write" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 26, + "end_line": 24, + "input_file": { + "filename": "autogen/starknet/storage_var/Ownable_owner/impl.cairo" + }, + "parent_location": [ + { + "end_col": 43, + "end_line": 25, + "input_file": { + "filename": "autogen/starknet/storage_var/Ownable_owner/impl.cairo" + }, + "start_col": 31, + "start_line": 25 + }, + "While expanding the reference 'storage_addr' in:" + ], + "start_col": 14, + "start_line": 24 + } + }, + "1075": { + "accessible_scopes": [ + "openzeppelin.access.ownable.library", + "openzeppelin.access.ownable.library.Ownable_owner", + "openzeppelin.access.ownable.library.Ownable_owner.write" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 79, + "end_line": 25, + "input_file": { + "filename": "autogen/starknet/storage_var/Ownable_owner/impl.cairo" + }, + "start_col": 55, + "start_line": 25 + } + }, + "1076": { + "accessible_scopes": [ + "openzeppelin.access.ownable.library", + "openzeppelin.access.ownable.library.Ownable_owner", + "openzeppelin.access.ownable.library.Ownable_owner.write" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 80, + "end_line": 25, + "input_file": { + "filename": "autogen/starknet/storage_var/Ownable_owner/impl.cairo" + }, + "start_col": 9, + "start_line": 25 + } + }, + "1078": { + "accessible_scopes": [ + "openzeppelin.access.ownable.library", + "openzeppelin.access.ownable.library.Ownable_owner", + "openzeppelin.access.ownable.library.Ownable_owner.write" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 41, + "end_line": 7, + "input_file": { + "filename": "autogen/starknet/storage_var/Ownable_owner/decl.cairo" + }, + "parent_location": [ + { + "end_col": 36, + "end_line": 24, + "input_file": { + "filename": "autogen/starknet/storage_var/Ownable_owner/impl.cairo" + }, + "parent_location": [ + { + "end_col": 62, + "end_line": 19, + "input_file": { + "filename": "autogen/starknet/storage_var/Ownable_owner/decl.cairo" + }, + "parent_location": [ + { + "end_col": 19, + "end_line": 26, + "input_file": { + "filename": "autogen/starknet/storage_var/Ownable_owner/impl.cairo" + }, + "start_col": 9, + "start_line": 26 + }, + "While trying to retrieve the implicit argument 'pedersen_ptr' in:" + ], + "start_col": 36, + "start_line": 19 + }, + "While expanding the reference 'pedersen_ptr' in:" + ], + "start_col": 30, + "start_line": 24 + }, + "While trying to update the implicit return value 'pedersen_ptr' in:" + ], + "start_col": 15, + "start_line": 7 + } + }, + "1079": { + "accessible_scopes": [ + "openzeppelin.access.ownable.library", + "openzeppelin.access.ownable.library.Ownable_owner", + "openzeppelin.access.ownable.library.Ownable_owner.write" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 58, + "end_line": 7, + "input_file": { + "filename": "autogen/starknet/storage_var/Ownable_owner/decl.cairo" + }, + "parent_location": [ + { + "end_col": 36, + "end_line": 24, + "input_file": { + "filename": "autogen/starknet/storage_var/Ownable_owner/impl.cairo" + }, + "parent_location": [ + { + "end_col": 79, + "end_line": 19, + "input_file": { + "filename": "autogen/starknet/storage_var/Ownable_owner/decl.cairo" + }, + "parent_location": [ + { + "end_col": 19, + "end_line": 26, + "input_file": { + "filename": "autogen/starknet/storage_var/Ownable_owner/impl.cairo" + }, + "start_col": 9, + "start_line": 26 + }, + "While trying to retrieve the implicit argument 'range_check_ptr' in:" + ], + "start_col": 64, + "start_line": 19 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 30, + "start_line": 24 + }, + "While trying to update the implicit return value 'range_check_ptr' in:" + ], + "start_col": 43, + "start_line": 7 + } + }, + "1080": { + "accessible_scopes": [ + "openzeppelin.access.ownable.library", + "openzeppelin.access.ownable.library.Ownable_owner", + "openzeppelin.access.ownable.library.Ownable_owner.write" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 19, + "end_line": 26, + "input_file": { + "filename": "autogen/starknet/storage_var/Ownable_owner/impl.cairo" + }, + "start_col": 9, + "start_line": 26 + } + }, + "1081": { + "accessible_scopes": [ + "openzeppelin.access.ownable.library", + "openzeppelin.access.ownable.library.Ownable", + "openzeppelin.access.ownable.library.Ownable.initializer" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 40, + "end_line": 31, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/access/ownable/library.cairo" + }, + "parent_location": [ + { + "end_col": 48, + "end_line": 81, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/access/ownable/library.cairo" + }, + "parent_location": [ + { + "end_col": 35, + "end_line": 32, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/access/ownable/library.cairo" + }, + "start_col": 9, + "start_line": 32 + }, + "While trying to retrieve the implicit argument 'syscall_ptr' in:" + ], + "start_col": 30, + "start_line": 81 + }, + "While expanding the reference 'syscall_ptr' in:" + ], + "start_col": 22, + "start_line": 31 + } + }, + "1082": { + "accessible_scopes": [ + "openzeppelin.access.ownable.library", + "openzeppelin.access.ownable.library.Ownable", + "openzeppelin.access.ownable.library.Ownable.initializer" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 68, + "end_line": 31, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/access/ownable/library.cairo" + }, + "parent_location": [ + { + "end_col": 76, + "end_line": 81, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/access/ownable/library.cairo" + }, + "parent_location": [ + { + "end_col": 35, + "end_line": 32, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/access/ownable/library.cairo" + }, + "start_col": 9, + "start_line": 32 + }, + "While trying to retrieve the implicit argument 'pedersen_ptr' in:" + ], + "start_col": 50, + "start_line": 81 + }, + "While expanding the reference 'pedersen_ptr' in:" + ], + "start_col": 42, + "start_line": 31 + } + }, + "1083": { + "accessible_scopes": [ + "openzeppelin.access.ownable.library", + "openzeppelin.access.ownable.library.Ownable", + "openzeppelin.access.ownable.library.Ownable.initializer" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 85, + "end_line": 31, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/access/ownable/library.cairo" + }, + "parent_location": [ + { + "end_col": 93, + "end_line": 81, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/access/ownable/library.cairo" + }, + "parent_location": [ + { + "end_col": 35, + "end_line": 32, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/access/ownable/library.cairo" + }, + "start_col": 9, + "start_line": 32 + }, + "While trying to retrieve the implicit argument 'range_check_ptr' in:" + ], + "start_col": 78, + "start_line": 81 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 70, + "start_line": 31 + } + }, + "1084": { + "accessible_scopes": [ + "openzeppelin.access.ownable.library", + "openzeppelin.access.ownable.library.Ownable", + "openzeppelin.access.ownable.library.Ownable.initializer" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 98, + "end_line": 31, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/access/ownable/library.cairo" + }, + "parent_location": [ + { + "end_col": 34, + "end_line": 32, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/access/ownable/library.cairo" + }, + "start_col": 29, + "start_line": 32 + }, + "While expanding the reference 'owner' in:" + ], + "start_col": 87, + "start_line": 31 + } + }, + "1085": { + "accessible_scopes": [ + "openzeppelin.access.ownable.library", + "openzeppelin.access.ownable.library.Ownable", + "openzeppelin.access.ownable.library.Ownable.initializer" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 35, + "end_line": 32, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/access/ownable/library.cairo" + }, + "start_col": 9, + "start_line": 32 + } + }, + "1087": { + "accessible_scopes": [ + "openzeppelin.access.ownable.library", + "openzeppelin.access.ownable.library.Ownable", + "openzeppelin.access.ownable.library.Ownable.initializer" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 19, + "end_line": 33, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/access/ownable/library.cairo" + }, + "start_col": 9, + "start_line": 33 + } + }, + "1088": { + "accessible_scopes": [ + "openzeppelin.access.ownable.library", + "openzeppelin.access.ownable.library.Ownable", + "openzeppelin.access.ownable.library.Ownable.assert_only_owner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 46, + "end_line": 40, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/access/ownable/library.cairo" + }, + "parent_location": [ + { + "end_col": 34, + "end_line": 56, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/access/ownable/library.cairo" + }, + "parent_location": [ + { + "end_col": 38, + "end_line": 41, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/access/ownable/library.cairo" + }, + "start_col": 23, + "start_line": 41 + }, + "While trying to retrieve the implicit argument 'syscall_ptr' in:" + ], + "start_col": 16, + "start_line": 56 + }, + "While expanding the reference 'syscall_ptr' in:" + ], + "start_col": 28, + "start_line": 40 + } + }, + "1089": { + "accessible_scopes": [ + "openzeppelin.access.ownable.library", + "openzeppelin.access.ownable.library.Ownable", + "openzeppelin.access.ownable.library.Ownable.assert_only_owner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 74, + "end_line": 40, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/access/ownable/library.cairo" + }, + "parent_location": [ + { + "end_col": 62, + "end_line": 56, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/access/ownable/library.cairo" + }, + "parent_location": [ + { + "end_col": 38, + "end_line": 41, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/access/ownable/library.cairo" + }, + "start_col": 23, + "start_line": 41 + }, + "While trying to retrieve the implicit argument 'pedersen_ptr' in:" + ], + "start_col": 36, + "start_line": 56 + }, + "While expanding the reference 'pedersen_ptr' in:" + ], + "start_col": 48, + "start_line": 40 + } + }, + "1090": { + "accessible_scopes": [ + "openzeppelin.access.ownable.library", + "openzeppelin.access.ownable.library.Ownable", + "openzeppelin.access.ownable.library.Ownable.assert_only_owner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 91, + "end_line": 40, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/access/ownable/library.cairo" + }, + "parent_location": [ + { + "end_col": 79, + "end_line": 56, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/access/ownable/library.cairo" + }, + "parent_location": [ + { + "end_col": 38, + "end_line": 41, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/access/ownable/library.cairo" + }, + "start_col": 23, + "start_line": 41 + }, + "While trying to retrieve the implicit argument 'range_check_ptr' in:" + ], + "start_col": 64, + "start_line": 56 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 76, + "start_line": 40 + } + }, + "1091": { + "accessible_scopes": [ + "openzeppelin.access.ownable.library", + "openzeppelin.access.ownable.library.Ownable", + "openzeppelin.access.ownable.library.Ownable.assert_only_owner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 38, + "end_line": 41, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/access/ownable/library.cairo" + }, + "start_col": 23, + "start_line": 41 + } + }, + "1093": { + "accessible_scopes": [ + "openzeppelin.access.ownable.library", + "openzeppelin.access.ownable.library.Ownable", + "openzeppelin.access.ownable.library.Ownable.assert_only_owner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 34, + "end_line": 56, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/access/ownable/library.cairo" + }, + "parent_location": [ + { + "end_col": 38, + "end_line": 41, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/access/ownable/library.cairo" + }, + "parent_location": [ + { + "end_col": 43, + "end_line": 200, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/starknet/common/syscalls.cairo" + }, + "parent_location": [ + { + "end_col": 44, + "end_line": 42, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/access/ownable/library.cairo" + }, + "start_col": 24, + "start_line": 42 + }, + "While trying to retrieve the implicit argument 'syscall_ptr' in:" + ], + "start_col": 25, + "start_line": 200 + }, + "While expanding the reference 'syscall_ptr' in:" + ], + "start_col": 23, + "start_line": 41 + }, + "While trying to update the implicit return value 'syscall_ptr' in:" + ], + "start_col": 16, + "start_line": 56 + } + }, + "1094": { + "accessible_scopes": [ + "openzeppelin.access.ownable.library", + "openzeppelin.access.ownable.library.Ownable", + "openzeppelin.access.ownable.library.Ownable.assert_only_owner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 44, + "end_line": 42, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/access/ownable/library.cairo" + }, + "start_col": 24, + "start_line": 42 + } + }, + "1096": { + "accessible_scopes": [ + "openzeppelin.access.ownable.library", + "openzeppelin.access.ownable.library.Ownable", + "openzeppelin.access.ownable.library.Ownable.assert_only_owner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 36, + "end_line": 44, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/access/ownable/library.cairo" + }, + "start_col": 13, + "start_line": 44 + } + }, + "1098": { + "accessible_scopes": [ + "openzeppelin.access.ownable.library", + "openzeppelin.access.ownable.library.Ownable", + "openzeppelin.access.ownable.library.Ownable.assert_only_owner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 35, + "end_line": 47, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/access/ownable/library.cairo" + }, + "start_col": 13, + "start_line": 47 + } + }, + "1099": { + "accessible_scopes": [ + "openzeppelin.access.ownable.library", + "openzeppelin.access.ownable.library.Ownable", + "openzeppelin.access.ownable.library.Ownable.assert_only_owner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 43, + "end_line": 200, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/starknet/common/syscalls.cairo" + }, + "parent_location": [ + { + "end_col": 44, + "end_line": 42, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/access/ownable/library.cairo" + }, + "parent_location": [ + { + "end_col": 46, + "end_line": 40, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/access/ownable/library.cairo" + }, + "parent_location": [ + { + "end_col": 19, + "end_line": 49, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/access/ownable/library.cairo" + }, + "start_col": 9, + "start_line": 49 + }, + "While trying to retrieve the implicit argument 'syscall_ptr' in:" + ], + "start_col": 28, + "start_line": 40 + }, + "While expanding the reference 'syscall_ptr' in:" + ], + "start_col": 24, + "start_line": 42 + }, + "While trying to update the implicit return value 'syscall_ptr' in:" + ], + "start_col": 25, + "start_line": 200 + } + }, + "1100": { + "accessible_scopes": [ + "openzeppelin.access.ownable.library", + "openzeppelin.access.ownable.library.Ownable", + "openzeppelin.access.ownable.library.Ownable.assert_only_owner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 62, + "end_line": 56, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/access/ownable/library.cairo" + }, + "parent_location": [ + { + "end_col": 38, + "end_line": 41, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/access/ownable/library.cairo" + }, + "parent_location": [ + { + "end_col": 74, + "end_line": 40, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/access/ownable/library.cairo" + }, + "parent_location": [ + { + "end_col": 19, + "end_line": 49, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/access/ownable/library.cairo" + }, + "start_col": 9, + "start_line": 49 + }, + "While trying to retrieve the implicit argument 'pedersen_ptr' in:" + ], + "start_col": 48, + "start_line": 40 + }, + "While expanding the reference 'pedersen_ptr' in:" + ], + "start_col": 23, + "start_line": 41 + }, + "While trying to update the implicit return value 'pedersen_ptr' in:" + ], + "start_col": 36, + "start_line": 56 + } + }, + "1101": { + "accessible_scopes": [ + "openzeppelin.access.ownable.library", + "openzeppelin.access.ownable.library.Ownable", + "openzeppelin.access.ownable.library.Ownable.assert_only_owner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 79, + "end_line": 56, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/access/ownable/library.cairo" + }, + "parent_location": [ + { + "end_col": 38, + "end_line": 41, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/access/ownable/library.cairo" + }, + "parent_location": [ + { + "end_col": 91, + "end_line": 40, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/access/ownable/library.cairo" + }, + "parent_location": [ + { + "end_col": 19, + "end_line": 49, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/access/ownable/library.cairo" + }, + "start_col": 9, + "start_line": 49 + }, + "While trying to retrieve the implicit argument 'range_check_ptr' in:" + ], + "start_col": 76, + "start_line": 40 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 23, + "start_line": 41 + }, + "While trying to update the implicit return value 'range_check_ptr' in:" + ], + "start_col": 64, + "start_line": 56 + } + }, + "1102": { + "accessible_scopes": [ + "openzeppelin.access.ownable.library", + "openzeppelin.access.ownable.library.Ownable", + "openzeppelin.access.ownable.library.Ownable.assert_only_owner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 19, + "end_line": 49, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/access/ownable/library.cairo" + }, + "start_col": 9, + "start_line": 49 + } + }, + "1103": { + "accessible_scopes": [ + "openzeppelin.access.ownable.library", + "openzeppelin.access.ownable.library.Ownable", + "openzeppelin.access.ownable.library.Ownable.owner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 34, + "end_line": 56, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/access/ownable/library.cairo" + }, + "parent_location": [ + { + "end_col": 33, + "end_line": 13, + "input_file": { + "filename": "autogen/starknet/storage_var/Ownable_owner/decl.cairo" + }, + "parent_location": [ + { + "end_col": 36, + "end_line": 57, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/access/ownable/library.cairo" + }, + "start_col": 16, + "start_line": 57 + }, + "While trying to retrieve the implicit argument 'syscall_ptr' in:" + ], + "start_col": 15, + "start_line": 13 + }, + "While expanding the reference 'syscall_ptr' in:" + ], + "start_col": 16, + "start_line": 56 + } + }, + "1104": { + "accessible_scopes": [ + "openzeppelin.access.ownable.library", + "openzeppelin.access.ownable.library.Ownable", + "openzeppelin.access.ownable.library.Ownable.owner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 62, + "end_line": 56, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/access/ownable/library.cairo" + }, + "parent_location": [ + { + "end_col": 61, + "end_line": 13, + "input_file": { + "filename": "autogen/starknet/storage_var/Ownable_owner/decl.cairo" + }, + "parent_location": [ + { + "end_col": 36, + "end_line": 57, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/access/ownable/library.cairo" + }, + "start_col": 16, + "start_line": 57 + }, + "While trying to retrieve the implicit argument 'pedersen_ptr' in:" + ], + "start_col": 35, + "start_line": 13 + }, + "While expanding the reference 'pedersen_ptr' in:" + ], + "start_col": 36, + "start_line": 56 + } + }, + "1105": { + "accessible_scopes": [ + "openzeppelin.access.ownable.library", + "openzeppelin.access.ownable.library.Ownable", + "openzeppelin.access.ownable.library.Ownable.owner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 79, + "end_line": 56, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/access/ownable/library.cairo" + }, + "parent_location": [ + { + "end_col": 78, + "end_line": 13, + "input_file": { + "filename": "autogen/starknet/storage_var/Ownable_owner/decl.cairo" + }, + "parent_location": [ + { + "end_col": 36, + "end_line": 57, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/access/ownable/library.cairo" + }, + "start_col": 16, + "start_line": 57 + }, + "While trying to retrieve the implicit argument 'range_check_ptr' in:" + ], + "start_col": 63, + "start_line": 13 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 64, + "start_line": 56 + } + }, + "1106": { + "accessible_scopes": [ + "openzeppelin.access.ownable.library", + "openzeppelin.access.ownable.library.Ownable", + "openzeppelin.access.ownable.library.Ownable.owner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 36, + "end_line": 57, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/access/ownable/library.cairo" + }, + "start_col": 16, + "start_line": 57 + } + }, + "1108": { + "accessible_scopes": [ + "openzeppelin.access.ownable.library", + "openzeppelin.access.ownable.library.Ownable", + "openzeppelin.access.ownable.library.Ownable.owner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 37, + "end_line": 57, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/access/ownable/library.cairo" + }, + "start_col": 9, + "start_line": 57 + } + }, + "1109": { + "accessible_scopes": [ + "openzeppelin.access.ownable.library", + "openzeppelin.access.ownable.library.Ownable", + "openzeppelin.access.ownable.library.Ownable.transfer_ownership" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 24, + "end_line": 61, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/access/ownable/library.cairo" + }, + "parent_location": [ + { + "end_col": 38, + "end_line": 64, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/access/ownable/library.cairo" + }, + "start_col": 29, + "start_line": 64 + }, + "While expanding the reference 'new_owner' in:" + ], + "start_col": 9, + "start_line": 61 + } + }, + "1110": { + "accessible_scopes": [ + "openzeppelin.access.ownable.library", + "openzeppelin.access.ownable.library.Ownable", + "openzeppelin.access.ownable.library.Ownable.transfer_ownership" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 39, + "end_line": 64, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/access/ownable/library.cairo" + }, + "start_col": 13, + "start_line": 64 + } + }, + "1112": { + "accessible_scopes": [ + "openzeppelin.access.ownable.library", + "openzeppelin.access.ownable.library.Ownable", + "openzeppelin.access.ownable.library.Ownable.transfer_ownership" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 47, + "end_line": 60, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/access/ownable/library.cairo" + }, + "parent_location": [ + { + "end_col": 46, + "end_line": 40, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/access/ownable/library.cairo" + }, + "parent_location": [ + { + "end_col": 28, + "end_line": 66, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/access/ownable/library.cairo" + }, + "start_col": 9, + "start_line": 66 + }, + "While trying to retrieve the implicit argument 'syscall_ptr' in:" + ], + "start_col": 28, + "start_line": 40 + }, + "While expanding the reference 'syscall_ptr' in:" + ], + "start_col": 29, + "start_line": 60 + } + }, + "1113": { + "accessible_scopes": [ + "openzeppelin.access.ownable.library", + "openzeppelin.access.ownable.library.Ownable", + "openzeppelin.access.ownable.library.Ownable.transfer_ownership" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 75, + "end_line": 60, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/access/ownable/library.cairo" + }, + "parent_location": [ + { + "end_col": 74, + "end_line": 40, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/access/ownable/library.cairo" + }, + "parent_location": [ + { + "end_col": 28, + "end_line": 66, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/access/ownable/library.cairo" + }, + "start_col": 9, + "start_line": 66 + }, + "While trying to retrieve the implicit argument 'pedersen_ptr' in:" + ], + "start_col": 48, + "start_line": 40 + }, + "While expanding the reference 'pedersen_ptr' in:" + ], + "start_col": 49, + "start_line": 60 + } + }, + "1114": { + "accessible_scopes": [ + "openzeppelin.access.ownable.library", + "openzeppelin.access.ownable.library.Ownable", + "openzeppelin.access.ownable.library.Ownable.transfer_ownership" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 92, + "end_line": 60, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/access/ownable/library.cairo" + }, + "parent_location": [ + { + "end_col": 91, + "end_line": 40, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/access/ownable/library.cairo" + }, + "parent_location": [ + { + "end_col": 28, + "end_line": 66, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/access/ownable/library.cairo" + }, + "start_col": 9, + "start_line": 66 + }, + "While trying to retrieve the implicit argument 'range_check_ptr' in:" + ], + "start_col": 76, + "start_line": 40 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 77, + "start_line": 60 + } + }, + "1115": { + "accessible_scopes": [ + "openzeppelin.access.ownable.library", + "openzeppelin.access.ownable.library.Ownable", + "openzeppelin.access.ownable.library.Ownable.transfer_ownership" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 28, + "end_line": 66, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/access/ownable/library.cairo" + }, + "start_col": 9, + "start_line": 66 + } + }, + "1117": { + "accessible_scopes": [ + "openzeppelin.access.ownable.library", + "openzeppelin.access.ownable.library.Ownable", + "openzeppelin.access.ownable.library.Ownable.transfer_ownership" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 24, + "end_line": 61, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/access/ownable/library.cairo" + }, + "parent_location": [ + { + "end_col": 38, + "end_line": 67, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/access/ownable/library.cairo" + }, + "start_col": 29, + "start_line": 67 + }, + "While expanding the reference 'new_owner' in:" + ], + "start_col": 9, + "start_line": 61 + } + }, + "1118": { + "accessible_scopes": [ + "openzeppelin.access.ownable.library", + "openzeppelin.access.ownable.library.Ownable", + "openzeppelin.access.ownable.library.Ownable.transfer_ownership" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 39, + "end_line": 67, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/access/ownable/library.cairo" + }, + "start_col": 9, + "start_line": 67 + } + }, + "1120": { + "accessible_scopes": [ + "openzeppelin.access.ownable.library", + "openzeppelin.access.ownable.library.Ownable", + "openzeppelin.access.ownable.library.Ownable.transfer_ownership" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 19, + "end_line": 68, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/access/ownable/library.cairo" + }, + "start_col": 9, + "start_line": 68 + } + }, + "1121": { + "accessible_scopes": [ + "openzeppelin.access.ownable.library", + "openzeppelin.access.ownable.library.Ownable", + "openzeppelin.access.ownable.library.Ownable._transfer_ownership" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 48, + "end_line": 81, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/access/ownable/library.cairo" + }, + "parent_location": [ + { + "end_col": 34, + "end_line": 56, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/access/ownable/library.cairo" + }, + "parent_location": [ + { + "end_col": 53, + "end_line": 84, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/access/ownable/library.cairo" + }, + "start_col": 38, + "start_line": 84 + }, + "While trying to retrieve the implicit argument 'syscall_ptr' in:" + ], + "start_col": 16, + "start_line": 56 + }, + "While expanding the reference 'syscall_ptr' in:" + ], + "start_col": 30, + "start_line": 81 + } + }, + "1122": { + "accessible_scopes": [ + "openzeppelin.access.ownable.library", + "openzeppelin.access.ownable.library.Ownable", + "openzeppelin.access.ownable.library.Ownable._transfer_ownership" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 76, + "end_line": 81, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/access/ownable/library.cairo" + }, + "parent_location": [ + { + "end_col": 62, + "end_line": 56, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/access/ownable/library.cairo" + }, + "parent_location": [ + { + "end_col": 53, + "end_line": 84, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/access/ownable/library.cairo" + }, + "start_col": 38, + "start_line": 84 + }, + "While trying to retrieve the implicit argument 'pedersen_ptr' in:" + ], + "start_col": 36, + "start_line": 56 + }, + "While expanding the reference 'pedersen_ptr' in:" + ], + "start_col": 50, + "start_line": 81 + } + }, + "1123": { + "accessible_scopes": [ + "openzeppelin.access.ownable.library", + "openzeppelin.access.ownable.library.Ownable", + "openzeppelin.access.ownable.library.Ownable._transfer_ownership" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 93, + "end_line": 81, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/access/ownable/library.cairo" + }, + "parent_location": [ + { + "end_col": 79, + "end_line": 56, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/access/ownable/library.cairo" + }, + "parent_location": [ + { + "end_col": 53, + "end_line": 84, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/access/ownable/library.cairo" + }, + "start_col": 38, + "start_line": 84 + }, + "While trying to retrieve the implicit argument 'range_check_ptr' in:" + ], + "start_col": 64, + "start_line": 56 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 78, + "start_line": 81 + } + }, + "1124": { + "accessible_scopes": [ + "openzeppelin.access.ownable.library", + "openzeppelin.access.ownable.library.Ownable", + "openzeppelin.access.ownable.library.Ownable._transfer_ownership" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 53, + "end_line": 84, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/access/ownable/library.cairo" + }, + "start_col": 38, + "start_line": 84 + } + }, + "1126": { + "accessible_scopes": [ + "openzeppelin.access.ownable.library", + "openzeppelin.access.ownable.library.Ownable", + "openzeppelin.access.ownable.library.Ownable._transfer_ownership" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 34, + "end_line": 56, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/access/ownable/library.cairo" + }, + "parent_location": [ + { + "end_col": 53, + "end_line": 84, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/access/ownable/library.cairo" + }, + "parent_location": [ + { + "end_col": 34, + "end_line": 19, + "input_file": { + "filename": "autogen/starknet/storage_var/Ownable_owner/decl.cairo" + }, + "parent_location": [ + { + "end_col": 39, + "end_line": 85, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/access/ownable/library.cairo" + }, + "start_col": 9, + "start_line": 85 + }, + "While trying to retrieve the implicit argument 'syscall_ptr' in:" + ], + "start_col": 16, + "start_line": 19 + }, + "While expanding the reference 'syscall_ptr' in:" + ], + "start_col": 38, + "start_line": 84 + }, + "While trying to update the implicit return value 'syscall_ptr' in:" + ], + "start_col": 16, + "start_line": 56 + } + }, + "1127": { + "accessible_scopes": [ + "openzeppelin.access.ownable.library", + "openzeppelin.access.ownable.library.Ownable", + "openzeppelin.access.ownable.library.Ownable._transfer_ownership" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 62, + "end_line": 56, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/access/ownable/library.cairo" + }, + "parent_location": [ + { + "end_col": 53, + "end_line": 84, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/access/ownable/library.cairo" + }, + "parent_location": [ + { + "end_col": 62, + "end_line": 19, + "input_file": { + "filename": "autogen/starknet/storage_var/Ownable_owner/decl.cairo" + }, + "parent_location": [ + { + "end_col": 39, + "end_line": 85, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/access/ownable/library.cairo" + }, + "start_col": 9, + "start_line": 85 + }, + "While trying to retrieve the implicit argument 'pedersen_ptr' in:" + ], + "start_col": 36, + "start_line": 19 + }, + "While expanding the reference 'pedersen_ptr' in:" + ], + "start_col": 38, + "start_line": 84 + }, + "While trying to update the implicit return value 'pedersen_ptr' in:" + ], + "start_col": 36, + "start_line": 56 + } + }, + "1128": { + "accessible_scopes": [ + "openzeppelin.access.ownable.library", + "openzeppelin.access.ownable.library.Ownable", + "openzeppelin.access.ownable.library.Ownable._transfer_ownership" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 79, + "end_line": 56, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/access/ownable/library.cairo" + }, + "parent_location": [ + { + "end_col": 53, + "end_line": 84, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/access/ownable/library.cairo" + }, + "parent_location": [ + { + "end_col": 79, + "end_line": 19, + "input_file": { + "filename": "autogen/starknet/storage_var/Ownable_owner/decl.cairo" + }, + "parent_location": [ + { + "end_col": 39, + "end_line": 85, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/access/ownable/library.cairo" + }, + "start_col": 9, + "start_line": 85 + }, + "While trying to retrieve the implicit argument 'range_check_ptr' in:" + ], + "start_col": 64, + "start_line": 19 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 38, + "start_line": 84 + }, + "While trying to update the implicit return value 'range_check_ptr' in:" + ], + "start_col": 64, + "start_line": 56 + } + }, + "1129": { + "accessible_scopes": [ + "openzeppelin.access.ownable.library", + "openzeppelin.access.ownable.library.Ownable", + "openzeppelin.access.ownable.library.Ownable._transfer_ownership" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 24, + "end_line": 82, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/access/ownable/library.cairo" + }, + "parent_location": [ + { + "end_col": 38, + "end_line": 85, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/access/ownable/library.cairo" + }, + "start_col": 29, + "start_line": 85 + }, + "While expanding the reference 'new_owner' in:" + ], + "start_col": 9, + "start_line": 82 + } + }, + "1130": { + "accessible_scopes": [ + "openzeppelin.access.ownable.library", + "openzeppelin.access.ownable.library.Ownable", + "openzeppelin.access.ownable.library.Ownable._transfer_ownership" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 39, + "end_line": 85, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/access/ownable/library.cairo" + }, + "start_col": 9, + "start_line": 85 + } + }, + "1132": { + "accessible_scopes": [ + "openzeppelin.access.ownable.library", + "openzeppelin.access.ownable.library.Ownable", + "openzeppelin.access.ownable.library.Ownable._transfer_ownership" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 34, + "end_line": 19, + "input_file": { + "filename": "autogen/starknet/storage_var/Ownable_owner/decl.cairo" + }, + "parent_location": [ + { + "end_col": 39, + "end_line": 85, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/access/ownable/library.cairo" + }, + "parent_location": [ + { + "end_col": 29, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/event/OwnershipTransferred/a7a8ae41be29ac9f4f6c3b7837c448d787ca051dd1ade98f409e54d33d112504.cairo" + }, + "parent_location": [ + { + "end_col": 26, + "end_line": 15, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/access/ownable/library.cairo" + }, + "parent_location": [ + { + "end_col": 61, + "end_line": 86, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/access/ownable/library.cairo" + }, + "start_col": 9, + "start_line": 86 + }, + "While trying to retrieve the implicit argument 'syscall_ptr' in:" + ], + "start_col": 6, + "start_line": 15 + }, + "While handling event:" + ], + "start_col": 11, + "start_line": 1 + }, + "While expanding the reference 'syscall_ptr' in:" + ], + "start_col": 9, + "start_line": 85 + }, + "While trying to update the implicit return value 'syscall_ptr' in:" + ], + "start_col": 16, + "start_line": 19 + } + }, + "1133": { + "accessible_scopes": [ + "openzeppelin.access.ownable.library", + "openzeppelin.access.ownable.library.Ownable", + "openzeppelin.access.ownable.library.Ownable._transfer_ownership" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 79, + "end_line": 19, + "input_file": { + "filename": "autogen/starknet/storage_var/Ownable_owner/decl.cairo" + }, + "parent_location": [ + { + "end_col": 39, + "end_line": 85, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/access/ownable/library.cairo" + }, + "parent_location": [ + { + "end_col": 46, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/event/OwnershipTransferred/a7a8ae41be29ac9f4f6c3b7837c448d787ca051dd1ade98f409e54d33d112504.cairo" + }, + "parent_location": [ + { + "end_col": 26, + "end_line": 15, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/access/ownable/library.cairo" + }, + "parent_location": [ + { + "end_col": 61, + "end_line": 86, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/access/ownable/library.cairo" + }, + "start_col": 9, + "start_line": 86 + }, + "While trying to retrieve the implicit argument 'range_check_ptr' in:" + ], + "start_col": 6, + "start_line": 15 + }, + "While handling event:" + ], + "start_col": 31, + "start_line": 1 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 9, + "start_line": 85 + }, + "While trying to update the implicit return value 'range_check_ptr' in:" + ], + "start_col": 64, + "start_line": 19 + } + }, + "1134": { + "accessible_scopes": [ + "openzeppelin.access.ownable.library", + "openzeppelin.access.ownable.library.Ownable", + "openzeppelin.access.ownable.library.Ownable._transfer_ownership" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 34, + "end_line": 84, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/access/ownable/library.cairo" + }, + "parent_location": [ + { + "end_col": 49, + "end_line": 86, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/access/ownable/library.cairo" + }, + "start_col": 35, + "start_line": 86 + }, + "While expanding the reference 'previous_owner' in:" + ], + "start_col": 14, + "start_line": 84 + } + }, + "1135": { + "accessible_scopes": [ + "openzeppelin.access.ownable.library", + "openzeppelin.access.ownable.library.Ownable", + "openzeppelin.access.ownable.library.Ownable._transfer_ownership" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 24, + "end_line": 82, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/access/ownable/library.cairo" + }, + "parent_location": [ + { + "end_col": 60, + "end_line": 86, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/access/ownable/library.cairo" + }, + "start_col": 51, + "start_line": 86 + }, + "While expanding the reference 'new_owner' in:" + ], + "start_col": 9, + "start_line": 82 + } + }, + "1136": { + "accessible_scopes": [ + "openzeppelin.access.ownable.library", + "openzeppelin.access.ownable.library.Ownable", + "openzeppelin.access.ownable.library.Ownable._transfer_ownership" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 61, + "end_line": 86, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/access/ownable/library.cairo" + }, + "start_col": 9, + "start_line": 86 + } + }, + "1138": { + "accessible_scopes": [ + "openzeppelin.access.ownable.library", + "openzeppelin.access.ownable.library.Ownable", + "openzeppelin.access.ownable.library.Ownable._transfer_ownership" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 29, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/event/OwnershipTransferred/a7a8ae41be29ac9f4f6c3b7837c448d787ca051dd1ade98f409e54d33d112504.cairo" + }, + "parent_location": [ + { + "end_col": 26, + "end_line": 15, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/access/ownable/library.cairo" + }, + "parent_location": [ + { + "end_col": 61, + "end_line": 86, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/access/ownable/library.cairo" + }, + "parent_location": [ + { + "end_col": 48, + "end_line": 81, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/access/ownable/library.cairo" + }, + "parent_location": [ + { + "end_col": 19, + "end_line": 87, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/access/ownable/library.cairo" + }, + "start_col": 9, + "start_line": 87 + }, + "While trying to retrieve the implicit argument 'syscall_ptr' in:" + ], + "start_col": 30, + "start_line": 81 + }, + "While expanding the reference 'syscall_ptr' in:" + ], + "start_col": 9, + "start_line": 86 + }, + "While trying to update the implicit return value 'syscall_ptr' in:" + ], + "start_col": 6, + "start_line": 15 + }, + "While handling event:" + ], + "start_col": 11, + "start_line": 1 + } + }, + "1139": { + "accessible_scopes": [ + "openzeppelin.access.ownable.library", + "openzeppelin.access.ownable.library.Ownable", + "openzeppelin.access.ownable.library.Ownable._transfer_ownership" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 62, + "end_line": 19, + "input_file": { + "filename": "autogen/starknet/storage_var/Ownable_owner/decl.cairo" + }, + "parent_location": [ + { + "end_col": 39, + "end_line": 85, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/access/ownable/library.cairo" + }, + "parent_location": [ + { + "end_col": 76, + "end_line": 81, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/access/ownable/library.cairo" + }, + "parent_location": [ + { + "end_col": 19, + "end_line": 87, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/access/ownable/library.cairo" + }, + "start_col": 9, + "start_line": 87 + }, + "While trying to retrieve the implicit argument 'pedersen_ptr' in:" + ], + "start_col": 50, + "start_line": 81 + }, + "While expanding the reference 'pedersen_ptr' in:" + ], + "start_col": 9, + "start_line": 85 + }, + "While trying to update the implicit return value 'pedersen_ptr' in:" + ], + "start_col": 36, + "start_line": 19 + } + }, + "1140": { + "accessible_scopes": [ + "openzeppelin.access.ownable.library", + "openzeppelin.access.ownable.library.Ownable", + "openzeppelin.access.ownable.library.Ownable._transfer_ownership" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 46, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/event/OwnershipTransferred/a7a8ae41be29ac9f4f6c3b7837c448d787ca051dd1ade98f409e54d33d112504.cairo" + }, + "parent_location": [ + { + "end_col": 26, + "end_line": 15, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/access/ownable/library.cairo" + }, + "parent_location": [ + { + "end_col": 61, + "end_line": 86, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/access/ownable/library.cairo" + }, + "parent_location": [ + { + "end_col": 93, + "end_line": 81, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/access/ownable/library.cairo" + }, + "parent_location": [ + { + "end_col": 19, + "end_line": 87, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/access/ownable/library.cairo" + }, + "start_col": 9, + "start_line": 87 + }, + "While trying to retrieve the implicit argument 'range_check_ptr' in:" + ], + "start_col": 78, + "start_line": 81 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 9, + "start_line": 86 + }, + "While trying to update the implicit return value 'range_check_ptr' in:" + ], + "start_col": 6, + "start_line": 15 + }, + "While handling event:" + ], + "start_col": 31, + "start_line": 1 + } + }, + "1141": { + "accessible_scopes": [ + "openzeppelin.access.ownable.library", + "openzeppelin.access.ownable.library.Ownable", + "openzeppelin.access.ownable.library.Ownable._transfer_ownership" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 19, + "end_line": 87, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/access/ownable/library.cairo" + }, + "start_col": 9, + "start_line": 87 + } + }, + "1142": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.constructor" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 36, + "end_line": 13, + "input_file": { + "filename": "src/utils/ERC20.cairo" + }, + "parent_location": [ + { + "end_col": 40, + "end_line": 60, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc20/library.cairo" + }, + "parent_location": [ + { + "end_col": 40, + "end_line": 16, + "input_file": { + "filename": "src/utils/ERC20.cairo" + }, + "start_col": 5, + "start_line": 16 + }, + "While trying to retrieve the implicit argument 'syscall_ptr' in:" + ], + "start_col": 22, + "start_line": 60 + }, + "While expanding the reference 'syscall_ptr' in:" + ], + "start_col": 18, + "start_line": 13 + } + }, + "1143": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.constructor" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 64, + "end_line": 13, + "input_file": { + "filename": "src/utils/ERC20.cairo" + }, + "parent_location": [ + { + "end_col": 68, + "end_line": 60, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc20/library.cairo" + }, + "parent_location": [ + { + "end_col": 40, + "end_line": 16, + "input_file": { + "filename": "src/utils/ERC20.cairo" + }, + "start_col": 5, + "start_line": 16 + }, + "While trying to retrieve the implicit argument 'pedersen_ptr' in:" + ], + "start_col": 42, + "start_line": 60 + }, + "While expanding the reference 'pedersen_ptr' in:" + ], + "start_col": 38, + "start_line": 13 + } + }, + "1144": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.constructor" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 81, + "end_line": 13, + "input_file": { + "filename": "src/utils/ERC20.cairo" + }, + "parent_location": [ + { + "end_col": 85, + "end_line": 60, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc20/library.cairo" + }, + "parent_location": [ + { + "end_col": 40, + "end_line": 16, + "input_file": { + "filename": "src/utils/ERC20.cairo" + }, + "start_col": 5, + "start_line": 16 + }, + "While trying to retrieve the implicit argument 'range_check_ptr' in:" + ], + "start_col": 70, + "start_line": 60 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 66, + "start_line": 13 + } + }, + "1145": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.constructor" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 15, + "end_line": 14, + "input_file": { + "filename": "src/utils/ERC20.cairo" + }, + "parent_location": [ + { + "end_col": 27, + "end_line": 16, + "input_file": { + "filename": "src/utils/ERC20.cairo" + }, + "start_col": 23, + "start_line": 16 + }, + "While expanding the reference 'name' in:" + ], + "start_col": 5, + "start_line": 14 + } + }, + "1146": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.constructor" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 29, + "end_line": 14, + "input_file": { + "filename": "src/utils/ERC20.cairo" + }, + "parent_location": [ + { + "end_col": 35, + "end_line": 16, + "input_file": { + "filename": "src/utils/ERC20.cairo" + }, + "start_col": 29, + "start_line": 16 + }, + "While expanding the reference 'symbol' in:" + ], + "start_col": 17, + "start_line": 14 + } + }, + "1147": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.constructor" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 39, + "end_line": 16, + "input_file": { + "filename": "src/utils/ERC20.cairo" + }, + "start_col": 37, + "start_line": 16 + } + }, + "1149": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.constructor" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 40, + "end_line": 16, + "input_file": { + "filename": "src/utils/ERC20.cairo" + }, + "start_col": 5, + "start_line": 16 + } + }, + "1151": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.constructor" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 75, + "end_line": 14, + "input_file": { + "filename": "src/utils/ERC20.cairo" + }, + "parent_location": [ + { + "end_col": 30, + "end_line": 17, + "input_file": { + "filename": "src/utils/ERC20.cairo" + }, + "start_col": 17, + "start_line": 17 + }, + "While expanding the reference 'owner_address' in:" + ], + "start_col": 56, + "start_line": 14 + } + }, + "1152": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.constructor" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 54, + "end_line": 14, + "input_file": { + "filename": "src/utils/ERC20.cairo" + }, + "parent_location": [ + { + "end_col": 46, + "end_line": 17, + "input_file": { + "filename": "src/utils/ERC20.cairo" + }, + "start_col": 32, + "start_line": 17 + }, + "While expanding the reference 'initial_supply' in:" + ], + "start_col": 31, + "start_line": 14 + } + }, + "1153": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.constructor" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 54, + "end_line": 14, + "input_file": { + "filename": "src/utils/ERC20.cairo" + }, + "parent_location": [ + { + "end_col": 46, + "end_line": 17, + "input_file": { + "filename": "src/utils/ERC20.cairo" + }, + "start_col": 32, + "start_line": 17 + }, + "While expanding the reference 'initial_supply' in:" + ], + "start_col": 31, + "start_line": 14 + } + }, + "1154": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.constructor" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 47, + "end_line": 17, + "input_file": { + "filename": "src/utils/ERC20.cairo" + }, + "start_col": 5, + "start_line": 17 + } + }, + "1156": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.constructor" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 75, + "end_line": 14, + "input_file": { + "filename": "src/utils/ERC20.cairo" + }, + "parent_location": [ + { + "end_col": 38, + "end_line": 18, + "input_file": { + "filename": "src/utils/ERC20.cairo" + }, + "start_col": 25, + "start_line": 18 + }, + "While expanding the reference 'owner_address' in:" + ], + "start_col": 56, + "start_line": 14 + } + }, + "1157": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.constructor" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 39, + "end_line": 18, + "input_file": { + "filename": "src/utils/ERC20.cairo" + }, + "start_col": 5, + "start_line": 18 + } + }, + "1159": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.constructor" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 15, + "end_line": 20, + "input_file": { + "filename": "src/utils/ERC20.cairo" + }, + "start_col": 5, + "start_line": 20 + } + }, + "1160": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.constructor" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 40, + "end_line": 2, + "input_file": { + "filename": "autogen/starknet/arg_processor/1c4d1192a5b09976e03426fcf40799a7b0ddd1b139ead4adf9bf9c135a89991d.cairo" + }, + "parent_location": [ + { + "end_col": 75, + "end_line": 14, + "input_file": { + "filename": "src/utils/ERC20.cairo" + }, + "parent_location": [ + { + "end_col": 45, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/arg_processor/c31620b02d4d706f0542c989b2aadc01b0981d1f6a5933a8fe4937ace3d70d92.cairo" + }, + "parent_location": [ + { + "end_col": 17, + "end_line": 13, + "input_file": { + "filename": "src/utils/ERC20.cairo" + }, + "parent_location": [ + { + "end_col": 57, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/arg_processor/01cba52f8515996bb9d7070bde81ff39281d096d7024a558efcba6e1fd2402cf.cairo" + }, + "parent_location": [ + { + "end_col": 17, + "end_line": 13, + "input_file": { + "filename": "src/utils/ERC20.cairo" + }, + "start_col": 6, + "start_line": 13 + }, + "While handling calldata of" + ], + "start_col": 35, + "start_line": 1 + }, + "While expanding the reference '__calldata_actual_size' in:" + ], + "start_col": 6, + "start_line": 13 + }, + "While handling calldata of" + ], + "start_col": 31, + "start_line": 1 + }, + "While expanding the reference '__calldata_ptr' in:" + ], + "start_col": 56, + "start_line": 14 + }, + "While handling calldata argument 'owner_address'" + ], + "start_col": 22, + "start_line": 2 + } + }, + "1162": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.constructor" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 58, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/arg_processor/01cba52f8515996bb9d7070bde81ff39281d096d7024a558efcba6e1fd2402cf.cairo" + }, + "parent_location": [ + { + "end_col": 17, + "end_line": 13, + "input_file": { + "filename": "src/utils/ERC20.cairo" + }, + "start_col": 6, + "start_line": 13 + }, + "While handling calldata of" + ], + "start_col": 1, + "start_line": 1 + } + }, + "1163": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.constructor" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 64, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/constructor/b2c52ca2d2a8fc8791a983086d8716c5eacd0c3d62934914d2286f84b98ff4cb.cairo" + }, + "parent_location": [ + { + "end_col": 36, + "end_line": 13, + "input_file": { + "filename": "src/utils/ERC20.cairo" + }, + "parent_location": [ + { + "end_col": 55, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/constructor/2b70f7db32ebd92a9a04d419e09f1a4cef92c0788ebe6dae9fb09ed1ddb2b66d.cairo" + }, + "parent_location": [ + { + "end_col": 17, + "end_line": 13, + "input_file": { + "filename": "src/utils/ERC20.cairo" + }, + "start_col": 6, + "start_line": 13 + }, + "While constructing the external wrapper for:" + ], + "start_col": 44, + "start_line": 1 + }, + "While expanding the reference 'syscall_ptr' in:" + ], + "start_col": 18, + "start_line": 13 + }, + "While constructing the external wrapper for:" + ], + "start_col": 19, + "start_line": 1 + } + }, + "1164": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.constructor" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 110, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/constructor/9684a85e93c782014ca14293edea4eb2502039a5a7b6538ecd39c56faaf12529.cairo" + }, + "parent_location": [ + { + "end_col": 64, + "end_line": 13, + "input_file": { + "filename": "src/utils/ERC20.cairo" + }, + "parent_location": [ + { + "end_col": 82, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/constructor/2b70f7db32ebd92a9a04d419e09f1a4cef92c0788ebe6dae9fb09ed1ddb2b66d.cairo" + }, + "parent_location": [ + { + "end_col": 17, + "end_line": 13, + "input_file": { + "filename": "src/utils/ERC20.cairo" + }, + "start_col": 6, + "start_line": 13 + }, + "While constructing the external wrapper for:" + ], + "start_col": 70, + "start_line": 1 + }, + "While expanding the reference 'pedersen_ptr' in:" + ], + "start_col": 38, + "start_line": 13 + }, + "While constructing the external wrapper for:" + ], + "start_col": 20, + "start_line": 1 + } + }, + "1165": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.constructor" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 67, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/constructor/741ea357d6336b0bed7bf0472425acd0311d543883b803388880e60a232040c7.cairo" + }, + "parent_location": [ + { + "end_col": 81, + "end_line": 13, + "input_file": { + "filename": "src/utils/ERC20.cairo" + }, + "parent_location": [ + { + "end_col": 115, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/constructor/2b70f7db32ebd92a9a04d419e09f1a4cef92c0788ebe6dae9fb09ed1ddb2b66d.cairo" + }, + "parent_location": [ + { + "end_col": 17, + "end_line": 13, + "input_file": { + "filename": "src/utils/ERC20.cairo" + }, + "start_col": 6, + "start_line": 13 + }, + "While constructing the external wrapper for:" + ], + "start_col": 100, + "start_line": 1 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 66, + "start_line": 13 + }, + "While constructing the external wrapper for:" + ], + "start_col": 23, + "start_line": 1 + } + }, + "1166": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.constructor" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 43, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/arg_processor/e1eb73cd870ec466294c3700e77817cf3c039ac1384882ddb76383eb87a5da90.cairo" + }, + "parent_location": [ + { + "end_col": 15, + "end_line": 14, + "input_file": { + "filename": "src/utils/ERC20.cairo" + }, + "parent_location": [ + { + "end_col": 141, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/constructor/2b70f7db32ebd92a9a04d419e09f1a4cef92c0788ebe6dae9fb09ed1ddb2b66d.cairo" + }, + "parent_location": [ + { + "end_col": 17, + "end_line": 13, + "input_file": { + "filename": "src/utils/ERC20.cairo" + }, + "start_col": 6, + "start_line": 13 + }, + "While constructing the external wrapper for:" + ], + "start_col": 122, + "start_line": 1 + }, + "While expanding the reference '__calldata_arg_name' in:" + ], + "start_col": 5, + "start_line": 14 + }, + "While handling calldata argument 'name'" + ], + "start_col": 27, + "start_line": 1 + } + }, + "1167": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.constructor" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 45, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/arg_processor/99058c0781745b3c0332799d723549974cbf489b623dde03906204304de60803.cairo" + }, + "parent_location": [ + { + "end_col": 29, + "end_line": 14, + "input_file": { + "filename": "src/utils/ERC20.cairo" + }, + "parent_location": [ + { + "end_col": 171, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/constructor/2b70f7db32ebd92a9a04d419e09f1a4cef92c0788ebe6dae9fb09ed1ddb2b66d.cairo" + }, + "parent_location": [ + { + "end_col": 17, + "end_line": 13, + "input_file": { + "filename": "src/utils/ERC20.cairo" + }, + "start_col": 6, + "start_line": 13 + }, + "While constructing the external wrapper for:" + ], + "start_col": 150, + "start_line": 1 + }, + "While expanding the reference '__calldata_arg_symbol' in:" + ], + "start_col": 17, + "start_line": 14 + }, + "While handling calldata argument 'symbol'" + ], + "start_col": 29, + "start_line": 1 + } + }, + "1168": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.constructor" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 67, + "end_line": 2, + "input_file": { + "filename": "autogen/starknet/arg_processor/0f412f121f4d99c455cd9caefc2f5203633f41332d4df4e5f8fdc3b70e62b4ba.cairo" + }, + "parent_location": [ + { + "end_col": 54, + "end_line": 14, + "input_file": { + "filename": "src/utils/ERC20.cairo" + }, + "parent_location": [ + { + "end_col": 217, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/constructor/2b70f7db32ebd92a9a04d419e09f1a4cef92c0788ebe6dae9fb09ed1ddb2b66d.cairo" + }, + "parent_location": [ + { + "end_col": 17, + "end_line": 13, + "input_file": { + "filename": "src/utils/ERC20.cairo" + }, + "start_col": 6, + "start_line": 13 + }, + "While constructing the external wrapper for:" + ], + "start_col": 188, + "start_line": 1 + }, + "While expanding the reference '__calldata_arg_initial_supply' in:" + ], + "start_col": 31, + "start_line": 14 + }, + "While handling calldata argument 'initial_supply'" + ], + "start_col": 37, + "start_line": 1 + } + }, + "1169": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.constructor" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 67, + "end_line": 2, + "input_file": { + "filename": "autogen/starknet/arg_processor/0f412f121f4d99c455cd9caefc2f5203633f41332d4df4e5f8fdc3b70e62b4ba.cairo" + }, + "parent_location": [ + { + "end_col": 54, + "end_line": 14, + "input_file": { + "filename": "src/utils/ERC20.cairo" + }, + "parent_location": [ + { + "end_col": 217, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/constructor/2b70f7db32ebd92a9a04d419e09f1a4cef92c0788ebe6dae9fb09ed1ddb2b66d.cairo" + }, + "parent_location": [ + { + "end_col": 17, + "end_line": 13, + "input_file": { + "filename": "src/utils/ERC20.cairo" + }, + "start_col": 6, + "start_line": 13 + }, + "While constructing the external wrapper for:" + ], + "start_col": 188, + "start_line": 1 + }, + "While expanding the reference '__calldata_arg_initial_supply' in:" + ], + "start_col": 31, + "start_line": 14 + }, + "While handling calldata argument 'initial_supply'" + ], + "start_col": 37, + "start_line": 1 + } + }, + "1170": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.constructor" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 52, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/arg_processor/1c4d1192a5b09976e03426fcf40799a7b0ddd1b139ead4adf9bf9c135a89991d.cairo" + }, + "parent_location": [ + { + "end_col": 75, + "end_line": 14, + "input_file": { + "filename": "src/utils/ERC20.cairo" + }, + "parent_location": [ + { + "end_col": 261, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/constructor/2b70f7db32ebd92a9a04d419e09f1a4cef92c0788ebe6dae9fb09ed1ddb2b66d.cairo" + }, + "parent_location": [ + { + "end_col": 17, + "end_line": 13, + "input_file": { + "filename": "src/utils/ERC20.cairo" + }, + "start_col": 6, + "start_line": 13 + }, + "While constructing the external wrapper for:" + ], + "start_col": 233, + "start_line": 1 + }, + "While expanding the reference '__calldata_arg_owner_address' in:" + ], + "start_col": 56, + "start_line": 14 + }, + "While handling calldata argument 'owner_address'" + ], + "start_col": 36, + "start_line": 1 + } + }, + "1171": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.constructor" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 17, + "end_line": 13, + "input_file": { + "filename": "src/utils/ERC20.cairo" + }, + "start_col": 6, + "start_line": 13 + } + }, + "1173": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.constructor" + ], + "flow_tracking_data": null, + "hints": [ + { + "location": { + "end_col": 34, + "end_line": 2, + "input_file": { + "filename": "autogen/starknet/external/constructor/2b70f7db32ebd92a9a04d419e09f1a4cef92c0788ebe6dae9fb09ed1ddb2b66d.cairo" + }, + "parent_location": [ + { + "end_col": 17, + "end_line": 13, + "input_file": { + "filename": "src/utils/ERC20.cairo" + }, + "start_col": 6, + "start_line": 13 + }, + "While constructing the external wrapper for:" + ], + "start_col": 1, + "start_line": 2 + }, + "n_prefix_newlines": 0 + } + ], + "inst": { + "end_col": 24, + "end_line": 3, + "input_file": { + "filename": "autogen/starknet/external/constructor/2b70f7db32ebd92a9a04d419e09f1a4cef92c0788ebe6dae9fb09ed1ddb2b66d.cairo" + }, + "parent_location": [ + { + "end_col": 17, + "end_line": 13, + "input_file": { + "filename": "src/utils/ERC20.cairo" + }, + "start_col": 6, + "start_line": 13 + }, + "While constructing the external wrapper for:" + ], + "start_col": 1, + "start_line": 3 + } + }, + "1175": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.constructor" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 55, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/constructor/2b70f7db32ebd92a9a04d419e09f1a4cef92c0788ebe6dae9fb09ed1ddb2b66d.cairo" + }, + "parent_location": [ + { + "end_col": 17, + "end_line": 13, + "input_file": { + "filename": "src/utils/ERC20.cairo" + }, + "parent_location": [ + { + "end_col": 20, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/constructor/da17921a4e81c09e730800bbf23bfdbe5e9e6bfaedc59d80fbf62087fa43c27d.cairo" + }, + "parent_location": [ + { + "end_col": 17, + "end_line": 13, + "input_file": { + "filename": "src/utils/ERC20.cairo" + }, + "start_col": 6, + "start_line": 13 + }, + "While constructing the external wrapper for:" + ], + "start_col": 9, + "start_line": 1 + }, + "While expanding the reference 'syscall_ptr' in:" + ], + "start_col": 6, + "start_line": 13 + }, + "While constructing the external wrapper for:" + ], + "start_col": 44, + "start_line": 1 + } + }, + "1176": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.constructor" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 82, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/constructor/2b70f7db32ebd92a9a04d419e09f1a4cef92c0788ebe6dae9fb09ed1ddb2b66d.cairo" + }, + "parent_location": [ + { + "end_col": 17, + "end_line": 13, + "input_file": { + "filename": "src/utils/ERC20.cairo" + }, + "parent_location": [ + { + "end_col": 33, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/constructor/da17921a4e81c09e730800bbf23bfdbe5e9e6bfaedc59d80fbf62087fa43c27d.cairo" + }, + "parent_location": [ + { + "end_col": 17, + "end_line": 13, + "input_file": { + "filename": "src/utils/ERC20.cairo" + }, + "start_col": 6, + "start_line": 13 + }, + "While constructing the external wrapper for:" + ], + "start_col": 21, + "start_line": 1 + }, + "While expanding the reference 'pedersen_ptr' in:" + ], + "start_col": 6, + "start_line": 13 + }, + "While constructing the external wrapper for:" + ], + "start_col": 70, + "start_line": 1 + } + }, + "1177": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.constructor" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 115, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/constructor/2b70f7db32ebd92a9a04d419e09f1a4cef92c0788ebe6dae9fb09ed1ddb2b66d.cairo" + }, + "parent_location": [ + { + "end_col": 17, + "end_line": 13, + "input_file": { + "filename": "src/utils/ERC20.cairo" + }, + "parent_location": [ + { + "end_col": 49, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/constructor/da17921a4e81c09e730800bbf23bfdbe5e9e6bfaedc59d80fbf62087fa43c27d.cairo" + }, + "parent_location": [ + { + "end_col": 17, + "end_line": 13, + "input_file": { + "filename": "src/utils/ERC20.cairo" + }, + "start_col": 6, + "start_line": 13 + }, + "While constructing the external wrapper for:" + ], + "start_col": 34, + "start_line": 1 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 6, + "start_line": 13 + }, + "While constructing the external wrapper for:" + ], + "start_col": 100, + "start_line": 1 + } + }, + "1178": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.constructor" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 21, + "end_line": 4, + "input_file": { + "filename": "autogen/starknet/external/constructor/2b70f7db32ebd92a9a04d419e09f1a4cef92c0788ebe6dae9fb09ed1ddb2b66d.cairo" + }, + "parent_location": [ + { + "end_col": 17, + "end_line": 13, + "input_file": { + "filename": "src/utils/ERC20.cairo" + }, + "parent_location": [ + { + "end_col": 62, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/constructor/da17921a4e81c09e730800bbf23bfdbe5e9e6bfaedc59d80fbf62087fa43c27d.cairo" + }, + "parent_location": [ + { + "end_col": 17, + "end_line": 13, + "input_file": { + "filename": "src/utils/ERC20.cairo" + }, + "start_col": 6, + "start_line": 13 + }, + "While constructing the external wrapper for:" + ], + "start_col": 50, + "start_line": 1 + }, + "While expanding the reference 'retdata_size' in:" + ], + "start_col": 6, + "start_line": 13 + }, + "While constructing the external wrapper for:" + ], + "start_col": 20, + "start_line": 4 + } + }, + "1180": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.constructor" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 16, + "end_line": 3, + "input_file": { + "filename": "autogen/starknet/external/constructor/2b70f7db32ebd92a9a04d419e09f1a4cef92c0788ebe6dae9fb09ed1ddb2b66d.cairo" + }, + "parent_location": [ + { + "end_col": 17, + "end_line": 13, + "input_file": { + "filename": "src/utils/ERC20.cairo" + }, + "parent_location": [ + { + "end_col": 70, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/constructor/da17921a4e81c09e730800bbf23bfdbe5e9e6bfaedc59d80fbf62087fa43c27d.cairo" + }, + "parent_location": [ + { + "end_col": 17, + "end_line": 13, + "input_file": { + "filename": "src/utils/ERC20.cairo" + }, + "start_col": 6, + "start_line": 13 + }, + "While constructing the external wrapper for:" + ], + "start_col": 63, + "start_line": 1 + }, + "While expanding the reference 'retdata' in:" + ], + "start_col": 6, + "start_line": 13 + }, + "While constructing the external wrapper for:" + ], + "start_col": 9, + "start_line": 3 + } + }, + "1181": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.constructor" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 72, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/constructor/da17921a4e81c09e730800bbf23bfdbe5e9e6bfaedc59d80fbf62087fa43c27d.cairo" + }, + "parent_location": [ + { + "end_col": 17, + "end_line": 13, + "input_file": { + "filename": "src/utils/ERC20.cairo" + }, + "start_col": 6, + "start_line": 13 + }, + "While constructing the external wrapper for:" + ], + "start_col": 1, + "start_line": 1 + } + }, + "1182": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.name" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 29, + "end_line": 28, + "input_file": { + "filename": "src/utils/ERC20.cairo" + }, + "parent_location": [ + { + "end_col": 33, + "end_line": 76, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc20/library.cairo" + }, + "parent_location": [ + { + "end_col": 30, + "end_line": 29, + "input_file": { + "filename": "src/utils/ERC20.cairo" + }, + "start_col": 18, + "start_line": 29 + }, + "While trying to retrieve the implicit argument 'syscall_ptr' in:" + ], + "start_col": 15, + "start_line": 76 + }, + "While expanding the reference 'syscall_ptr' in:" + ], + "start_col": 11, + "start_line": 28 + } + }, + "1183": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.name" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 57, + "end_line": 28, + "input_file": { + "filename": "src/utils/ERC20.cairo" + }, + "parent_location": [ + { + "end_col": 61, + "end_line": 76, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc20/library.cairo" + }, + "parent_location": [ + { + "end_col": 30, + "end_line": 29, + "input_file": { + "filename": "src/utils/ERC20.cairo" + }, + "start_col": 18, + "start_line": 29 + }, + "While trying to retrieve the implicit argument 'pedersen_ptr' in:" + ], + "start_col": 35, + "start_line": 76 + }, + "While expanding the reference 'pedersen_ptr' in:" + ], + "start_col": 31, + "start_line": 28 + } + }, + "1184": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.name" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 74, + "end_line": 28, + "input_file": { + "filename": "src/utils/ERC20.cairo" + }, + "parent_location": [ + { + "end_col": 78, + "end_line": 76, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc20/library.cairo" + }, + "parent_location": [ + { + "end_col": 30, + "end_line": 29, + "input_file": { + "filename": "src/utils/ERC20.cairo" + }, + "start_col": 18, + "start_line": 29 + }, + "While trying to retrieve the implicit argument 'range_check_ptr' in:" + ], + "start_col": 63, + "start_line": 76 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 59, + "start_line": 28 + } + }, + "1185": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.name" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 30, + "end_line": 29, + "input_file": { + "filename": "src/utils/ERC20.cairo" + }, + "start_col": 18, + "start_line": 29 + } + }, + "1187": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.name" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 20, + "end_line": 31, + "input_file": { + "filename": "src/utils/ERC20.cairo" + }, + "start_col": 5, + "start_line": 31 + } + }, + "1188": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.name_encode_return" + ], + "flow_tracking_data": null, + "hints": [ + { + "location": { + "end_col": 38, + "end_line": 3, + "input_file": { + "filename": "autogen/starknet/external/return/name/c8fcd0b2b3f24b16bed33f1349d99fe0bde24b7764fe1bdc31d37b9ddca24adc.cairo" + }, + "parent_location": [ + { + "end_col": 10, + "end_line": 28, + "input_file": { + "filename": "src/utils/ERC20.cairo" + }, + "start_col": 6, + "start_line": 28 + }, + "While handling return value of" + ], + "start_col": 5, + "start_line": 3 + }, + "n_prefix_newlines": 0 + } + ], + "inst": { + "end_col": 18, + "end_line": 4, + "input_file": { + "filename": "autogen/starknet/external/return/name/c8fcd0b2b3f24b16bed33f1349d99fe0bde24b7764fe1bdc31d37b9ddca24adc.cairo" + }, + "parent_location": [ + { + "end_col": 10, + "end_line": 28, + "input_file": { + "filename": "src/utils/ERC20.cairo" + }, + "start_col": 6, + "start_line": 28 + }, + "While handling return value of" + ], + "start_col": 5, + "start_line": 4 + } + }, + "1190": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.name_encode_return" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 46, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/arg_processor/6f345e20daf86e05c346aa1f6a9eeaa296a59eb71a12784c017d25ed5b25ff32.cairo" + }, + "parent_location": [ + { + "end_col": 92, + "end_line": 28, + "input_file": { + "filename": "src/utils/ERC20.cairo" + }, + "start_col": 82, + "start_line": 28 + }, + "While handling return value 'name'" + ], + "start_col": 1, + "start_line": 1 + } + }, + "1191": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.name_encode_return" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 48, + "end_line": 2, + "input_file": { + "filename": "autogen/starknet/arg_processor/6f345e20daf86e05c346aa1f6a9eeaa296a59eb71a12784c017d25ed5b25ff32.cairo" + }, + "parent_location": [ + { + "end_col": 92, + "end_line": 28, + "input_file": { + "filename": "src/utils/ERC20.cairo" + }, + "parent_location": [ + { + "end_col": 36, + "end_line": 11, + "input_file": { + "filename": "autogen/starknet/external/return/name/c8fcd0b2b3f24b16bed33f1349d99fe0bde24b7764fe1bdc31d37b9ddca24adc.cairo" + }, + "parent_location": [ + { + "end_col": 10, + "end_line": 28, + "input_file": { + "filename": "src/utils/ERC20.cairo" + }, + "start_col": 6, + "start_line": 28 + }, + "While handling return value of" + ], + "start_col": 18, + "start_line": 11 + }, + "While expanding the reference '__return_value_ptr' in:" + ], + "start_col": 82, + "start_line": 28 + }, + "While handling return value 'name'" + ], + "start_col": 26, + "start_line": 2 + } + }, + "1193": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.name_encode_return" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 65, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/return/name/c8fcd0b2b3f24b16bed33f1349d99fe0bde24b7764fe1bdc31d37b9ddca24adc.cairo" + }, + "parent_location": [ + { + "end_col": 10, + "end_line": 28, + "input_file": { + "filename": "src/utils/ERC20.cairo" + }, + "parent_location": [ + { + "end_col": 40, + "end_line": 10, + "input_file": { + "filename": "autogen/starknet/external/return/name/c8fcd0b2b3f24b16bed33f1349d99fe0bde24b7764fe1bdc31d37b9ddca24adc.cairo" + }, + "parent_location": [ + { + "end_col": 10, + "end_line": 28, + "input_file": { + "filename": "src/utils/ERC20.cairo" + }, + "start_col": 6, + "start_line": 28 + }, + "While handling return value of" + ], + "start_col": 25, + "start_line": 10 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 6, + "start_line": 28 + }, + "While handling return value of" + ], + "start_col": 50, + "start_line": 1 + } + }, + "1194": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.name_encode_return" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 63, + "end_line": 11, + "input_file": { + "filename": "autogen/starknet/external/return/name/c8fcd0b2b3f24b16bed33f1349d99fe0bde24b7764fe1bdc31d37b9ddca24adc.cairo" + }, + "parent_location": [ + { + "end_col": 10, + "end_line": 28, + "input_file": { + "filename": "src/utils/ERC20.cairo" + }, + "start_col": 6, + "start_line": 28 + }, + "While handling return value of" + ], + "start_col": 18, + "start_line": 11 + } + }, + "1195": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.name_encode_return" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 35, + "end_line": 5, + "input_file": { + "filename": "autogen/starknet/external/return/name/c8fcd0b2b3f24b16bed33f1349d99fe0bde24b7764fe1bdc31d37b9ddca24adc.cairo" + }, + "parent_location": [ + { + "end_col": 10, + "end_line": 28, + "input_file": { + "filename": "src/utils/ERC20.cairo" + }, + "parent_location": [ + { + "end_col": 38, + "end_line": 12, + "input_file": { + "filename": "autogen/starknet/external/return/name/c8fcd0b2b3f24b16bed33f1349d99fe0bde24b7764fe1bdc31d37b9ddca24adc.cairo" + }, + "parent_location": [ + { + "end_col": 10, + "end_line": 28, + "input_file": { + "filename": "src/utils/ERC20.cairo" + }, + "start_col": 6, + "start_line": 28 + }, + "While handling return value of" + ], + "start_col": 14, + "start_line": 12 + }, + "While expanding the reference '__return_value_ptr_start' in:" + ], + "start_col": 6, + "start_line": 28 + }, + "While handling return value of" + ], + "start_col": 11, + "start_line": 5 + } + }, + "1196": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.name_encode_return" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 40, + "end_line": 12, + "input_file": { + "filename": "autogen/starknet/external/return/name/c8fcd0b2b3f24b16bed33f1349d99fe0bde24b7764fe1bdc31d37b9ddca24adc.cairo" + }, + "parent_location": [ + { + "end_col": 10, + "end_line": 28, + "input_file": { + "filename": "src/utils/ERC20.cairo" + }, + "start_col": 6, + "start_line": 28 + }, + "While handling return value of" + ], + "start_col": 5, + "start_line": 9 + } + }, + "1197": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.name" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 58, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/arg_processor/01cba52f8515996bb9d7070bde81ff39281d096d7024a558efcba6e1fd2402cf.cairo" + }, + "parent_location": [ + { + "end_col": 10, + "end_line": 28, + "input_file": { + "filename": "src/utils/ERC20.cairo" + }, + "start_col": 6, + "start_line": 28 + }, + "While handling calldata of" + ], + "start_col": 1, + "start_line": 1 + } + }, + "1198": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.name" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 64, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/name/b2c52ca2d2a8fc8791a983086d8716c5eacd0c3d62934914d2286f84b98ff4cb.cairo" + }, + "parent_location": [ + { + "end_col": 29, + "end_line": 28, + "input_file": { + "filename": "src/utils/ERC20.cairo" + }, + "parent_location": [ + { + "end_col": 55, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/name/3034a84ffbc2cc9a83b0bdb0bf6aadae87a5c63f8544f4bc76a18d60221f0e94.cairo" + }, + "parent_location": [ + { + "end_col": 10, + "end_line": 28, + "input_file": { + "filename": "src/utils/ERC20.cairo" + }, + "start_col": 6, + "start_line": 28 + }, + "While constructing the external wrapper for:" + ], + "start_col": 44, + "start_line": 1 + }, + "While expanding the reference 'syscall_ptr' in:" + ], + "start_col": 11, + "start_line": 28 + }, + "While constructing the external wrapper for:" + ], + "start_col": 19, + "start_line": 1 + } + }, + "1199": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.name" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 110, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/name/9684a85e93c782014ca14293edea4eb2502039a5a7b6538ecd39c56faaf12529.cairo" + }, + "parent_location": [ + { + "end_col": 57, + "end_line": 28, + "input_file": { + "filename": "src/utils/ERC20.cairo" + }, + "parent_location": [ + { + "end_col": 82, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/name/3034a84ffbc2cc9a83b0bdb0bf6aadae87a5c63f8544f4bc76a18d60221f0e94.cairo" + }, + "parent_location": [ + { + "end_col": 10, + "end_line": 28, + "input_file": { + "filename": "src/utils/ERC20.cairo" + }, + "start_col": 6, + "start_line": 28 + }, + "While constructing the external wrapper for:" + ], + "start_col": 70, + "start_line": 1 + }, + "While expanding the reference 'pedersen_ptr' in:" + ], + "start_col": 31, + "start_line": 28 + }, + "While constructing the external wrapper for:" + ], + "start_col": 20, + "start_line": 1 + } + }, + "1200": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.name" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 67, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/name/741ea357d6336b0bed7bf0472425acd0311d543883b803388880e60a232040c7.cairo" + }, + "parent_location": [ + { + "end_col": 74, + "end_line": 28, + "input_file": { + "filename": "src/utils/ERC20.cairo" + }, + "parent_location": [ + { + "end_col": 115, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/name/3034a84ffbc2cc9a83b0bdb0bf6aadae87a5c63f8544f4bc76a18d60221f0e94.cairo" + }, + "parent_location": [ + { + "end_col": 10, + "end_line": 28, + "input_file": { + "filename": "src/utils/ERC20.cairo" + }, + "start_col": 6, + "start_line": 28 + }, + "While constructing the external wrapper for:" + ], + "start_col": 100, + "start_line": 1 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 59, + "start_line": 28 + }, + "While constructing the external wrapper for:" + ], + "start_col": 23, + "start_line": 1 + } + }, + "1201": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.name" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 10, + "end_line": 28, + "input_file": { + "filename": "src/utils/ERC20.cairo" + }, + "start_col": 6, + "start_line": 28 + } + }, + "1203": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.name" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 115, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/name/3034a84ffbc2cc9a83b0bdb0bf6aadae87a5c63f8544f4bc76a18d60221f0e94.cairo" + }, + "parent_location": [ + { + "end_col": 10, + "end_line": 28, + "input_file": { + "filename": "src/utils/ERC20.cairo" + }, + "parent_location": [ + { + "end_col": 93, + "end_line": 2, + "input_file": { + "filename": "autogen/starknet/external/name/3034a84ffbc2cc9a83b0bdb0bf6aadae87a5c63f8544f4bc76a18d60221f0e94.cairo" + }, + "parent_location": [ + { + "end_col": 10, + "end_line": 28, + "input_file": { + "filename": "src/utils/ERC20.cairo" + }, + "start_col": 6, + "start_line": 28 + }, + "While constructing the external wrapper for:" + ], + "start_col": 78, + "start_line": 2 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 6, + "start_line": 28 + }, + "While constructing the external wrapper for:" + ], + "start_col": 100, + "start_line": 1 + } + }, + "1204": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.name" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 94, + "end_line": 2, + "input_file": { + "filename": "autogen/starknet/external/name/3034a84ffbc2cc9a83b0bdb0bf6aadae87a5c63f8544f4bc76a18d60221f0e94.cairo" + }, + "parent_location": [ + { + "end_col": 10, + "end_line": 28, + "input_file": { + "filename": "src/utils/ERC20.cairo" + }, + "start_col": 6, + "start_line": 28 + }, + "While constructing the external wrapper for:" + ], + "start_col": 48, + "start_line": 2 + } + }, + "1206": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.name" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 55, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/name/3034a84ffbc2cc9a83b0bdb0bf6aadae87a5c63f8544f4bc76a18d60221f0e94.cairo" + }, + "parent_location": [ + { + "end_col": 10, + "end_line": 28, + "input_file": { + "filename": "src/utils/ERC20.cairo" + }, + "parent_location": [ + { + "end_col": 20, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/name/da17921a4e81c09e730800bbf23bfdbe5e9e6bfaedc59d80fbf62087fa43c27d.cairo" + }, + "parent_location": [ + { + "end_col": 10, + "end_line": 28, + "input_file": { + "filename": "src/utils/ERC20.cairo" + }, + "start_col": 6, + "start_line": 28 + }, + "While constructing the external wrapper for:" + ], + "start_col": 9, + "start_line": 1 + }, + "While expanding the reference 'syscall_ptr' in:" + ], + "start_col": 6, + "start_line": 28 + }, + "While constructing the external wrapper for:" + ], + "start_col": 44, + "start_line": 1 + } + }, + "1207": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.name" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 82, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/name/3034a84ffbc2cc9a83b0bdb0bf6aadae87a5c63f8544f4bc76a18d60221f0e94.cairo" + }, + "parent_location": [ + { + "end_col": 10, + "end_line": 28, + "input_file": { + "filename": "src/utils/ERC20.cairo" + }, + "parent_location": [ + { + "end_col": 33, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/name/da17921a4e81c09e730800bbf23bfdbe5e9e6bfaedc59d80fbf62087fa43c27d.cairo" + }, + "parent_location": [ + { + "end_col": 10, + "end_line": 28, + "input_file": { + "filename": "src/utils/ERC20.cairo" + }, + "start_col": 6, + "start_line": 28 + }, + "While constructing the external wrapper for:" + ], + "start_col": 21, + "start_line": 1 + }, + "While expanding the reference 'pedersen_ptr' in:" + ], + "start_col": 6, + "start_line": 28 + }, + "While constructing the external wrapper for:" + ], + "start_col": 70, + "start_line": 1 + } + }, + "1208": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.name" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 21, + "end_line": 2, + "input_file": { + "filename": "autogen/starknet/external/name/3034a84ffbc2cc9a83b0bdb0bf6aadae87a5c63f8544f4bc76a18d60221f0e94.cairo" + }, + "parent_location": [ + { + "end_col": 10, + "end_line": 28, + "input_file": { + "filename": "src/utils/ERC20.cairo" + }, + "parent_location": [ + { + "end_col": 49, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/name/da17921a4e81c09e730800bbf23bfdbe5e9e6bfaedc59d80fbf62087fa43c27d.cairo" + }, + "parent_location": [ + { + "end_col": 10, + "end_line": 28, + "input_file": { + "filename": "src/utils/ERC20.cairo" + }, + "start_col": 6, + "start_line": 28 + }, + "While constructing the external wrapper for:" + ], + "start_col": 34, + "start_line": 1 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 6, + "start_line": 28 + }, + "While constructing the external wrapper for:" + ], + "start_col": 6, + "start_line": 2 + } + }, + "1209": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.name" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 35, + "end_line": 2, + "input_file": { + "filename": "autogen/starknet/external/name/3034a84ffbc2cc9a83b0bdb0bf6aadae87a5c63f8544f4bc76a18d60221f0e94.cairo" + }, + "parent_location": [ + { + "end_col": 10, + "end_line": 28, + "input_file": { + "filename": "src/utils/ERC20.cairo" + }, + "parent_location": [ + { + "end_col": 62, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/name/da17921a4e81c09e730800bbf23bfdbe5e9e6bfaedc59d80fbf62087fa43c27d.cairo" + }, + "parent_location": [ + { + "end_col": 10, + "end_line": 28, + "input_file": { + "filename": "src/utils/ERC20.cairo" + }, + "start_col": 6, + "start_line": 28 + }, + "While constructing the external wrapper for:" + ], + "start_col": 50, + "start_line": 1 + }, + "While expanding the reference 'retdata_size' in:" + ], + "start_col": 6, + "start_line": 28 + }, + "While constructing the external wrapper for:" + ], + "start_col": 23, + "start_line": 2 + } + }, + "1210": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.name" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 44, + "end_line": 2, + "input_file": { + "filename": "autogen/starknet/external/name/3034a84ffbc2cc9a83b0bdb0bf6aadae87a5c63f8544f4bc76a18d60221f0e94.cairo" + }, + "parent_location": [ + { + "end_col": 10, + "end_line": 28, + "input_file": { + "filename": "src/utils/ERC20.cairo" + }, + "parent_location": [ + { + "end_col": 70, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/name/da17921a4e81c09e730800bbf23bfdbe5e9e6bfaedc59d80fbf62087fa43c27d.cairo" + }, + "parent_location": [ + { + "end_col": 10, + "end_line": 28, + "input_file": { + "filename": "src/utils/ERC20.cairo" + }, + "start_col": 6, + "start_line": 28 + }, + "While constructing the external wrapper for:" + ], + "start_col": 63, + "start_line": 1 + }, + "While expanding the reference 'retdata' in:" + ], + "start_col": 6, + "start_line": 28 + }, + "While constructing the external wrapper for:" + ], + "start_col": 37, + "start_line": 2 + } + }, + "1211": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.name" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 72, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/name/da17921a4e81c09e730800bbf23bfdbe5e9e6bfaedc59d80fbf62087fa43c27d.cairo" + }, + "parent_location": [ + { + "end_col": 10, + "end_line": 28, + "input_file": { + "filename": "src/utils/ERC20.cairo" + }, + "start_col": 6, + "start_line": 28 + }, + "While constructing the external wrapper for:" + ], + "start_col": 1, + "start_line": 1 + } + }, + "1212": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.symbol" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 31, + "end_line": 35, + "input_file": { + "filename": "src/utils/ERC20.cairo" + }, + "parent_location": [ + { + "end_col": 35, + "end_line": 80, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc20/library.cairo" + }, + "parent_location": [ + { + "end_col": 34, + "end_line": 36, + "input_file": { + "filename": "src/utils/ERC20.cairo" + }, + "start_col": 20, + "start_line": 36 + }, + "While trying to retrieve the implicit argument 'syscall_ptr' in:" + ], + "start_col": 17, + "start_line": 80 + }, + "While expanding the reference 'syscall_ptr' in:" + ], + "start_col": 13, + "start_line": 35 + } + }, + "1213": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.symbol" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 59, + "end_line": 35, + "input_file": { + "filename": "src/utils/ERC20.cairo" + }, + "parent_location": [ + { + "end_col": 63, + "end_line": 80, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc20/library.cairo" + }, + "parent_location": [ + { + "end_col": 34, + "end_line": 36, + "input_file": { + "filename": "src/utils/ERC20.cairo" + }, + "start_col": 20, + "start_line": 36 + }, + "While trying to retrieve the implicit argument 'pedersen_ptr' in:" + ], + "start_col": 37, + "start_line": 80 + }, + "While expanding the reference 'pedersen_ptr' in:" + ], + "start_col": 33, + "start_line": 35 + } + }, + "1214": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.symbol" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 76, + "end_line": 35, + "input_file": { + "filename": "src/utils/ERC20.cairo" + }, + "parent_location": [ + { + "end_col": 80, + "end_line": 80, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc20/library.cairo" + }, + "parent_location": [ + { + "end_col": 34, + "end_line": 36, + "input_file": { + "filename": "src/utils/ERC20.cairo" + }, + "start_col": 20, + "start_line": 36 + }, + "While trying to retrieve the implicit argument 'range_check_ptr' in:" + ], + "start_col": 65, + "start_line": 80 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 61, + "start_line": 35 + } + }, + "1215": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.symbol" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 34, + "end_line": 36, + "input_file": { + "filename": "src/utils/ERC20.cairo" + }, + "start_col": 20, + "start_line": 36 + } + }, + "1217": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.symbol" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 22, + "end_line": 38, + "input_file": { + "filename": "src/utils/ERC20.cairo" + }, + "start_col": 5, + "start_line": 38 + } + }, + "1218": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.symbol_encode_return" + ], + "flow_tracking_data": null, + "hints": [ + { + "location": { + "end_col": 38, + "end_line": 3, + "input_file": { + "filename": "autogen/starknet/external/return/symbol/a0ae85480af0490479ac55aa0fb10c479d3c551bd5d0b449dafe97eed061cca1.cairo" + }, + "parent_location": [ + { + "end_col": 12, + "end_line": 35, + "input_file": { + "filename": "src/utils/ERC20.cairo" + }, + "start_col": 6, + "start_line": 35 + }, + "While handling return value of" + ], + "start_col": 5, + "start_line": 3 + }, + "n_prefix_newlines": 0 + } + ], + "inst": { + "end_col": 18, + "end_line": 4, + "input_file": { + "filename": "autogen/starknet/external/return/symbol/a0ae85480af0490479ac55aa0fb10c479d3c551bd5d0b449dafe97eed061cca1.cairo" + }, + "parent_location": [ + { + "end_col": 12, + "end_line": 35, + "input_file": { + "filename": "src/utils/ERC20.cairo" + }, + "start_col": 6, + "start_line": 35 + }, + "While handling return value of" + ], + "start_col": 5, + "start_line": 4 + } + }, + "1220": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.symbol_encode_return" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 48, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/arg_processor/3635b1d7caa543a52376beeb37a143262ea6ffdf923d8e3676d9b27787e943c8.cairo" + }, + "parent_location": [ + { + "end_col": 96, + "end_line": 35, + "input_file": { + "filename": "src/utils/ERC20.cairo" + }, + "start_col": 84, + "start_line": 35 + }, + "While handling return value 'symbol'" + ], + "start_col": 1, + "start_line": 1 + } + }, + "1221": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.symbol_encode_return" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 48, + "end_line": 2, + "input_file": { + "filename": "autogen/starknet/arg_processor/3635b1d7caa543a52376beeb37a143262ea6ffdf923d8e3676d9b27787e943c8.cairo" + }, + "parent_location": [ + { + "end_col": 96, + "end_line": 35, + "input_file": { + "filename": "src/utils/ERC20.cairo" + }, + "parent_location": [ + { + "end_col": 36, + "end_line": 11, + "input_file": { + "filename": "autogen/starknet/external/return/symbol/a0ae85480af0490479ac55aa0fb10c479d3c551bd5d0b449dafe97eed061cca1.cairo" + }, + "parent_location": [ + { + "end_col": 12, + "end_line": 35, + "input_file": { + "filename": "src/utils/ERC20.cairo" + }, + "start_col": 6, + "start_line": 35 + }, + "While handling return value of" + ], + "start_col": 18, + "start_line": 11 + }, + "While expanding the reference '__return_value_ptr' in:" + ], + "start_col": 84, + "start_line": 35 + }, + "While handling return value 'symbol'" + ], + "start_col": 26, + "start_line": 2 + } + }, + "1223": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.symbol_encode_return" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 69, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/return/symbol/a0ae85480af0490479ac55aa0fb10c479d3c551bd5d0b449dafe97eed061cca1.cairo" + }, + "parent_location": [ + { + "end_col": 12, + "end_line": 35, + "input_file": { + "filename": "src/utils/ERC20.cairo" + }, + "parent_location": [ + { + "end_col": 40, + "end_line": 10, + "input_file": { + "filename": "autogen/starknet/external/return/symbol/a0ae85480af0490479ac55aa0fb10c479d3c551bd5d0b449dafe97eed061cca1.cairo" + }, + "parent_location": [ + { + "end_col": 12, + "end_line": 35, + "input_file": { + "filename": "src/utils/ERC20.cairo" + }, + "start_col": 6, + "start_line": 35 + }, + "While handling return value of" + ], + "start_col": 25, + "start_line": 10 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 6, + "start_line": 35 + }, + "While handling return value of" + ], + "start_col": 54, + "start_line": 1 + } + }, + "1224": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.symbol_encode_return" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 63, + "end_line": 11, + "input_file": { + "filename": "autogen/starknet/external/return/symbol/a0ae85480af0490479ac55aa0fb10c479d3c551bd5d0b449dafe97eed061cca1.cairo" + }, + "parent_location": [ + { + "end_col": 12, + "end_line": 35, + "input_file": { + "filename": "src/utils/ERC20.cairo" + }, + "start_col": 6, + "start_line": 35 + }, + "While handling return value of" + ], + "start_col": 18, + "start_line": 11 + } + }, + "1225": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.symbol_encode_return" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 35, + "end_line": 5, + "input_file": { + "filename": "autogen/starknet/external/return/symbol/a0ae85480af0490479ac55aa0fb10c479d3c551bd5d0b449dafe97eed061cca1.cairo" + }, + "parent_location": [ + { + "end_col": 12, + "end_line": 35, + "input_file": { + "filename": "src/utils/ERC20.cairo" + }, + "parent_location": [ + { + "end_col": 38, + "end_line": 12, + "input_file": { + "filename": "autogen/starknet/external/return/symbol/a0ae85480af0490479ac55aa0fb10c479d3c551bd5d0b449dafe97eed061cca1.cairo" + }, + "parent_location": [ + { + "end_col": 12, + "end_line": 35, + "input_file": { + "filename": "src/utils/ERC20.cairo" + }, + "start_col": 6, + "start_line": 35 + }, + "While handling return value of" + ], + "start_col": 14, + "start_line": 12 + }, + "While expanding the reference '__return_value_ptr_start' in:" + ], + "start_col": 6, + "start_line": 35 + }, + "While handling return value of" + ], + "start_col": 11, + "start_line": 5 + } + }, + "1226": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.symbol_encode_return" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 40, + "end_line": 12, + "input_file": { + "filename": "autogen/starknet/external/return/symbol/a0ae85480af0490479ac55aa0fb10c479d3c551bd5d0b449dafe97eed061cca1.cairo" + }, + "parent_location": [ + { + "end_col": 12, + "end_line": 35, + "input_file": { + "filename": "src/utils/ERC20.cairo" + }, + "start_col": 6, + "start_line": 35 + }, + "While handling return value of" + ], + "start_col": 5, + "start_line": 9 + } + }, + "1227": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.symbol" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 58, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/arg_processor/01cba52f8515996bb9d7070bde81ff39281d096d7024a558efcba6e1fd2402cf.cairo" + }, + "parent_location": [ + { + "end_col": 12, + "end_line": 35, + "input_file": { + "filename": "src/utils/ERC20.cairo" + }, + "start_col": 6, + "start_line": 35 + }, + "While handling calldata of" + ], + "start_col": 1, + "start_line": 1 + } + }, + "1228": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.symbol" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 64, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/symbol/b2c52ca2d2a8fc8791a983086d8716c5eacd0c3d62934914d2286f84b98ff4cb.cairo" + }, + "parent_location": [ + { + "end_col": 31, + "end_line": 35, + "input_file": { + "filename": "src/utils/ERC20.cairo" + }, + "parent_location": [ + { + "end_col": 55, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/symbol/d8aa55fbbc45562d781915a1c7930fc50b33d8bd29db7102b5c44cbfd8b54639.cairo" + }, + "parent_location": [ + { + "end_col": 12, + "end_line": 35, + "input_file": { + "filename": "src/utils/ERC20.cairo" + }, + "start_col": 6, + "start_line": 35 + }, + "While constructing the external wrapper for:" + ], + "start_col": 44, + "start_line": 1 + }, + "While expanding the reference 'syscall_ptr' in:" + ], + "start_col": 13, + "start_line": 35 + }, + "While constructing the external wrapper for:" + ], + "start_col": 19, + "start_line": 1 + } + }, + "1229": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.symbol" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 110, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/symbol/9684a85e93c782014ca14293edea4eb2502039a5a7b6538ecd39c56faaf12529.cairo" + }, + "parent_location": [ + { + "end_col": 59, + "end_line": 35, + "input_file": { + "filename": "src/utils/ERC20.cairo" + }, + "parent_location": [ + { + "end_col": 82, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/symbol/d8aa55fbbc45562d781915a1c7930fc50b33d8bd29db7102b5c44cbfd8b54639.cairo" + }, + "parent_location": [ + { + "end_col": 12, + "end_line": 35, + "input_file": { + "filename": "src/utils/ERC20.cairo" + }, + "start_col": 6, + "start_line": 35 + }, + "While constructing the external wrapper for:" + ], + "start_col": 70, + "start_line": 1 + }, + "While expanding the reference 'pedersen_ptr' in:" + ], + "start_col": 33, + "start_line": 35 + }, + "While constructing the external wrapper for:" + ], + "start_col": 20, + "start_line": 1 + } + }, + "1230": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.symbol" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 67, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/symbol/741ea357d6336b0bed7bf0472425acd0311d543883b803388880e60a232040c7.cairo" + }, + "parent_location": [ + { + "end_col": 76, + "end_line": 35, + "input_file": { + "filename": "src/utils/ERC20.cairo" + }, + "parent_location": [ + { + "end_col": 115, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/symbol/d8aa55fbbc45562d781915a1c7930fc50b33d8bd29db7102b5c44cbfd8b54639.cairo" + }, + "parent_location": [ + { + "end_col": 12, + "end_line": 35, + "input_file": { + "filename": "src/utils/ERC20.cairo" + }, + "start_col": 6, + "start_line": 35 + }, + "While constructing the external wrapper for:" + ], + "start_col": 100, + "start_line": 1 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 61, + "start_line": 35 + }, + "While constructing the external wrapper for:" + ], + "start_col": 23, + "start_line": 1 + } + }, + "1231": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.symbol" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 12, + "end_line": 35, + "input_file": { + "filename": "src/utils/ERC20.cairo" + }, + "start_col": 6, + "start_line": 35 + } + }, + "1233": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.symbol" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 115, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/symbol/d8aa55fbbc45562d781915a1c7930fc50b33d8bd29db7102b5c44cbfd8b54639.cairo" + }, + "parent_location": [ + { + "end_col": 12, + "end_line": 35, + "input_file": { + "filename": "src/utils/ERC20.cairo" + }, + "parent_location": [ + { + "end_col": 95, + "end_line": 2, + "input_file": { + "filename": "autogen/starknet/external/symbol/d8aa55fbbc45562d781915a1c7930fc50b33d8bd29db7102b5c44cbfd8b54639.cairo" + }, + "parent_location": [ + { + "end_col": 12, + "end_line": 35, + "input_file": { + "filename": "src/utils/ERC20.cairo" + }, + "start_col": 6, + "start_line": 35 + }, + "While constructing the external wrapper for:" + ], + "start_col": 80, + "start_line": 2 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 6, + "start_line": 35 + }, + "While constructing the external wrapper for:" + ], + "start_col": 100, + "start_line": 1 + } + }, + "1234": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.symbol" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 96, + "end_line": 2, + "input_file": { + "filename": "autogen/starknet/external/symbol/d8aa55fbbc45562d781915a1c7930fc50b33d8bd29db7102b5c44cbfd8b54639.cairo" + }, + "parent_location": [ + { + "end_col": 12, + "end_line": 35, + "input_file": { + "filename": "src/utils/ERC20.cairo" + }, + "start_col": 6, + "start_line": 35 + }, + "While constructing the external wrapper for:" + ], + "start_col": 48, + "start_line": 2 + } + }, + "1236": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.symbol" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 55, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/symbol/d8aa55fbbc45562d781915a1c7930fc50b33d8bd29db7102b5c44cbfd8b54639.cairo" + }, + "parent_location": [ + { + "end_col": 12, + "end_line": 35, + "input_file": { + "filename": "src/utils/ERC20.cairo" + }, + "parent_location": [ + { + "end_col": 20, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/symbol/da17921a4e81c09e730800bbf23bfdbe5e9e6bfaedc59d80fbf62087fa43c27d.cairo" + }, + "parent_location": [ + { + "end_col": 12, + "end_line": 35, + "input_file": { + "filename": "src/utils/ERC20.cairo" + }, + "start_col": 6, + "start_line": 35 + }, + "While constructing the external wrapper for:" + ], + "start_col": 9, + "start_line": 1 + }, + "While expanding the reference 'syscall_ptr' in:" + ], + "start_col": 6, + "start_line": 35 + }, + "While constructing the external wrapper for:" + ], + "start_col": 44, + "start_line": 1 + } + }, + "1237": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.symbol" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 82, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/symbol/d8aa55fbbc45562d781915a1c7930fc50b33d8bd29db7102b5c44cbfd8b54639.cairo" + }, + "parent_location": [ + { + "end_col": 12, + "end_line": 35, + "input_file": { + "filename": "src/utils/ERC20.cairo" + }, + "parent_location": [ + { + "end_col": 33, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/symbol/da17921a4e81c09e730800bbf23bfdbe5e9e6bfaedc59d80fbf62087fa43c27d.cairo" + }, + "parent_location": [ + { + "end_col": 12, + "end_line": 35, + "input_file": { + "filename": "src/utils/ERC20.cairo" + }, + "start_col": 6, + "start_line": 35 + }, + "While constructing the external wrapper for:" + ], + "start_col": 21, + "start_line": 1 + }, + "While expanding the reference 'pedersen_ptr' in:" + ], + "start_col": 6, + "start_line": 35 + }, + "While constructing the external wrapper for:" + ], + "start_col": 70, + "start_line": 1 + } + }, + "1238": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.symbol" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 21, + "end_line": 2, + "input_file": { + "filename": "autogen/starknet/external/symbol/d8aa55fbbc45562d781915a1c7930fc50b33d8bd29db7102b5c44cbfd8b54639.cairo" + }, + "parent_location": [ + { + "end_col": 12, + "end_line": 35, + "input_file": { + "filename": "src/utils/ERC20.cairo" + }, + "parent_location": [ + { + "end_col": 49, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/symbol/da17921a4e81c09e730800bbf23bfdbe5e9e6bfaedc59d80fbf62087fa43c27d.cairo" + }, + "parent_location": [ + { + "end_col": 12, + "end_line": 35, + "input_file": { + "filename": "src/utils/ERC20.cairo" + }, + "start_col": 6, + "start_line": 35 + }, + "While constructing the external wrapper for:" + ], + "start_col": 34, + "start_line": 1 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 6, + "start_line": 35 + }, + "While constructing the external wrapper for:" + ], + "start_col": 6, + "start_line": 2 + } + }, + "1239": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.symbol" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 35, + "end_line": 2, + "input_file": { + "filename": "autogen/starknet/external/symbol/d8aa55fbbc45562d781915a1c7930fc50b33d8bd29db7102b5c44cbfd8b54639.cairo" + }, + "parent_location": [ + { + "end_col": 12, + "end_line": 35, + "input_file": { + "filename": "src/utils/ERC20.cairo" + }, + "parent_location": [ + { + "end_col": 62, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/symbol/da17921a4e81c09e730800bbf23bfdbe5e9e6bfaedc59d80fbf62087fa43c27d.cairo" + }, + "parent_location": [ + { + "end_col": 12, + "end_line": 35, + "input_file": { + "filename": "src/utils/ERC20.cairo" + }, + "start_col": 6, + "start_line": 35 + }, + "While constructing the external wrapper for:" + ], + "start_col": 50, + "start_line": 1 + }, + "While expanding the reference 'retdata_size' in:" + ], + "start_col": 6, + "start_line": 35 + }, + "While constructing the external wrapper for:" + ], + "start_col": 23, + "start_line": 2 + } + }, + "1240": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.symbol" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 44, + "end_line": 2, + "input_file": { + "filename": "autogen/starknet/external/symbol/d8aa55fbbc45562d781915a1c7930fc50b33d8bd29db7102b5c44cbfd8b54639.cairo" + }, + "parent_location": [ + { + "end_col": 12, + "end_line": 35, + "input_file": { + "filename": "src/utils/ERC20.cairo" + }, + "parent_location": [ + { + "end_col": 70, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/symbol/da17921a4e81c09e730800bbf23bfdbe5e9e6bfaedc59d80fbf62087fa43c27d.cairo" + }, + "parent_location": [ + { + "end_col": 12, + "end_line": 35, + "input_file": { + "filename": "src/utils/ERC20.cairo" + }, + "start_col": 6, + "start_line": 35 + }, + "While constructing the external wrapper for:" + ], + "start_col": 63, + "start_line": 1 + }, + "While expanding the reference 'retdata' in:" + ], + "start_col": 6, + "start_line": 35 + }, + "While constructing the external wrapper for:" + ], + "start_col": 37, + "start_line": 2 + } + }, + "1241": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.symbol" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 72, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/symbol/da17921a4e81c09e730800bbf23bfdbe5e9e6bfaedc59d80fbf62087fa43c27d.cairo" + }, + "parent_location": [ + { + "end_col": 12, + "end_line": 35, + "input_file": { + "filename": "src/utils/ERC20.cairo" + }, + "start_col": 6, + "start_line": 35 + }, + "While constructing the external wrapper for:" + ], + "start_col": 1, + "start_line": 1 + } + }, + "1242": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.totalSupply" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 36, + "end_line": 42, + "input_file": { + "filename": "src/utils/ERC20.cairo" + }, + "parent_location": [ + { + "end_col": 41, + "end_line": 86, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc20/library.cairo" + }, + "parent_location": [ + { + "end_col": 54, + "end_line": 45, + "input_file": { + "filename": "src/utils/ERC20.cairo" + }, + "start_col": 34, + "start_line": 45 + }, + "While trying to retrieve the implicit argument 'syscall_ptr' in:" + ], + "start_col": 23, + "start_line": 86 + }, + "While expanding the reference 'syscall_ptr' in:" + ], + "start_col": 18, + "start_line": 42 + } + }, + "1243": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.totalSupply" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 64, + "end_line": 42, + "input_file": { + "filename": "src/utils/ERC20.cairo" + }, + "parent_location": [ + { + "end_col": 69, + "end_line": 86, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc20/library.cairo" + }, + "parent_location": [ + { + "end_col": 54, + "end_line": 45, + "input_file": { + "filename": "src/utils/ERC20.cairo" + }, + "start_col": 34, + "start_line": 45 + }, + "While trying to retrieve the implicit argument 'pedersen_ptr' in:" + ], + "start_col": 43, + "start_line": 86 + }, + "While expanding the reference 'pedersen_ptr' in:" + ], + "start_col": 38, + "start_line": 42 + } + }, + "1244": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.totalSupply" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 81, + "end_line": 42, + "input_file": { + "filename": "src/utils/ERC20.cairo" + }, + "parent_location": [ + { + "end_col": 86, + "end_line": 86, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc20/library.cairo" + }, + "parent_location": [ + { + "end_col": 54, + "end_line": 45, + "input_file": { + "filename": "src/utils/ERC20.cairo" + }, + "start_col": 34, + "start_line": 45 + }, + "While trying to retrieve the implicit argument 'range_check_ptr' in:" + ], + "start_col": 71, + "start_line": 86 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 66, + "start_line": 42 + } + }, + "1245": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.totalSupply" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 54, + "end_line": 45, + "input_file": { + "filename": "src/utils/ERC20.cairo" + }, + "start_col": 34, + "start_line": 45 + } + }, + "1247": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.totalSupply" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 27, + "end_line": 47, + "input_file": { + "filename": "src/utils/ERC20.cairo" + }, + "start_col": 5, + "start_line": 47 + } + }, + "1248": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.totalSupply_encode_return" + ], + "flow_tracking_data": null, + "hints": [ + { + "location": { + "end_col": 38, + "end_line": 3, + "input_file": { + "filename": "autogen/starknet/external/return/totalSupply/eeeda446bdea67b39cd9f67678f4dfc35c6c1d0744df18691bf4ede77f67f604.cairo" + }, + "parent_location": [ + { + "end_col": 17, + "end_line": 42, + "input_file": { + "filename": "src/utils/ERC20.cairo" + }, + "start_col": 6, + "start_line": 42 + }, + "While handling return value of" + ], + "start_col": 5, + "start_line": 3 + }, + "n_prefix_newlines": 0 + } + ], + "inst": { + "end_col": 18, + "end_line": 4, + "input_file": { + "filename": "autogen/starknet/external/return/totalSupply/eeeda446bdea67b39cd9f67678f4dfc35c6c1d0744df18691bf4ede77f67f604.cairo" + }, + "parent_location": [ + { + "end_col": 17, + "end_line": 42, + "input_file": { + "filename": "src/utils/ERC20.cairo" + }, + "start_col": 6, + "start_line": 42 + }, + "While handling return value of" + ], + "start_col": 5, + "start_line": 4 + } + }, + "1250": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.totalSupply_encode_return" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 60, + "end_line": 3, + "input_file": { + "filename": "autogen/starknet/arg_processor/9822619206729a9eadcae854c851238a68f93e9dbd956bc4fa147da27ae12e2e.cairo" + }, + "parent_location": [ + { + "end_col": 25, + "end_line": 43, + "input_file": { + "filename": "src/utils/ERC20.cairo" + }, + "start_col": 5, + "start_line": 43 + }, + "While handling return value 'totalSupply'" + ], + "start_col": 1, + "start_line": 3 + } + }, + "1251": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.totalSupply_encode_return" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 60, + "end_line": 4, + "input_file": { + "filename": "autogen/starknet/arg_processor/9822619206729a9eadcae854c851238a68f93e9dbd956bc4fa147da27ae12e2e.cairo" + }, + "parent_location": [ + { + "end_col": 25, + "end_line": 43, + "input_file": { + "filename": "src/utils/ERC20.cairo" + }, + "start_col": 5, + "start_line": 43 + }, + "While handling return value 'totalSupply'" + ], + "start_col": 1, + "start_line": 4 + } + }, + "1252": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.totalSupply_encode_return" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 48, + "end_line": 5, + "input_file": { + "filename": "autogen/starknet/arg_processor/9822619206729a9eadcae854c851238a68f93e9dbd956bc4fa147da27ae12e2e.cairo" + }, + "parent_location": [ + { + "end_col": 25, + "end_line": 43, + "input_file": { + "filename": "src/utils/ERC20.cairo" + }, + "parent_location": [ + { + "end_col": 36, + "end_line": 11, + "input_file": { + "filename": "autogen/starknet/external/return/totalSupply/eeeda446bdea67b39cd9f67678f4dfc35c6c1d0744df18691bf4ede77f67f604.cairo" + }, + "parent_location": [ + { + "end_col": 17, + "end_line": 42, + "input_file": { + "filename": "src/utils/ERC20.cairo" + }, + "start_col": 6, + "start_line": 42 + }, + "While handling return value of" + ], + "start_col": 18, + "start_line": 11 + }, + "While expanding the reference '__return_value_ptr' in:" + ], + "start_col": 5, + "start_line": 43 + }, + "While handling return value 'totalSupply'" + ], + "start_col": 26, + "start_line": 5 + } + }, + "1254": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.totalSupply_encode_return" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 113, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/return/totalSupply/eeeda446bdea67b39cd9f67678f4dfc35c6c1d0744df18691bf4ede77f67f604.cairo" + }, + "parent_location": [ + { + "end_col": 17, + "end_line": 42, + "input_file": { + "filename": "src/utils/ERC20.cairo" + }, + "parent_location": [ + { + "end_col": 40, + "end_line": 10, + "input_file": { + "filename": "autogen/starknet/external/return/totalSupply/eeeda446bdea67b39cd9f67678f4dfc35c6c1d0744df18691bf4ede77f67f604.cairo" + }, + "parent_location": [ + { + "end_col": 17, + "end_line": 42, + "input_file": { + "filename": "src/utils/ERC20.cairo" + }, + "start_col": 6, + "start_line": 42 + }, + "While handling return value of" + ], + "start_col": 25, + "start_line": 10 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 6, + "start_line": 42 + }, + "While handling return value of" + ], + "start_col": 98, + "start_line": 1 + } + }, + "1255": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.totalSupply_encode_return" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 63, + "end_line": 11, + "input_file": { + "filename": "autogen/starknet/external/return/totalSupply/eeeda446bdea67b39cd9f67678f4dfc35c6c1d0744df18691bf4ede77f67f604.cairo" + }, + "parent_location": [ + { + "end_col": 17, + "end_line": 42, + "input_file": { + "filename": "src/utils/ERC20.cairo" + }, + "start_col": 6, + "start_line": 42 + }, + "While handling return value of" + ], + "start_col": 18, + "start_line": 11 + } + }, + "1256": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.totalSupply_encode_return" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 35, + "end_line": 5, + "input_file": { + "filename": "autogen/starknet/external/return/totalSupply/eeeda446bdea67b39cd9f67678f4dfc35c6c1d0744df18691bf4ede77f67f604.cairo" + }, + "parent_location": [ + { + "end_col": 17, + "end_line": 42, + "input_file": { + "filename": "src/utils/ERC20.cairo" + }, + "parent_location": [ + { + "end_col": 38, + "end_line": 12, + "input_file": { + "filename": "autogen/starknet/external/return/totalSupply/eeeda446bdea67b39cd9f67678f4dfc35c6c1d0744df18691bf4ede77f67f604.cairo" + }, + "parent_location": [ + { + "end_col": 17, + "end_line": 42, + "input_file": { + "filename": "src/utils/ERC20.cairo" + }, + "start_col": 6, + "start_line": 42 + }, + "While handling return value of" + ], + "start_col": 14, + "start_line": 12 + }, + "While expanding the reference '__return_value_ptr_start' in:" + ], + "start_col": 6, + "start_line": 42 + }, + "While handling return value of" + ], + "start_col": 11, + "start_line": 5 + } + }, + "1257": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.totalSupply_encode_return" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 40, + "end_line": 12, + "input_file": { + "filename": "autogen/starknet/external/return/totalSupply/eeeda446bdea67b39cd9f67678f4dfc35c6c1d0744df18691bf4ede77f67f604.cairo" + }, + "parent_location": [ + { + "end_col": 17, + "end_line": 42, + "input_file": { + "filename": "src/utils/ERC20.cairo" + }, + "start_col": 6, + "start_line": 42 + }, + "While handling return value of" + ], + "start_col": 5, + "start_line": 9 + } + }, + "1258": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.totalSupply" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 58, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/arg_processor/01cba52f8515996bb9d7070bde81ff39281d096d7024a558efcba6e1fd2402cf.cairo" + }, + "parent_location": [ + { + "end_col": 17, + "end_line": 42, + "input_file": { + "filename": "src/utils/ERC20.cairo" + }, + "start_col": 6, + "start_line": 42 + }, + "While handling calldata of" + ], + "start_col": 1, + "start_line": 1 + } + }, + "1259": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.totalSupply" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 64, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/totalSupply/b2c52ca2d2a8fc8791a983086d8716c5eacd0c3d62934914d2286f84b98ff4cb.cairo" + }, + "parent_location": [ + { + "end_col": 36, + "end_line": 42, + "input_file": { + "filename": "src/utils/ERC20.cairo" + }, + "parent_location": [ + { + "end_col": 55, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/totalSupply/f9521ee04dab7f503e72addd131262b31983f1e13ea962eb0b121959d1008326.cairo" + }, + "parent_location": [ + { + "end_col": 17, + "end_line": 42, + "input_file": { + "filename": "src/utils/ERC20.cairo" + }, + "start_col": 6, + "start_line": 42 + }, + "While constructing the external wrapper for:" + ], + "start_col": 44, + "start_line": 1 + }, + "While expanding the reference 'syscall_ptr' in:" + ], + "start_col": 18, + "start_line": 42 + }, + "While constructing the external wrapper for:" + ], + "start_col": 19, + "start_line": 1 + } + }, + "1260": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.totalSupply" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 110, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/totalSupply/9684a85e93c782014ca14293edea4eb2502039a5a7b6538ecd39c56faaf12529.cairo" + }, + "parent_location": [ + { + "end_col": 64, + "end_line": 42, + "input_file": { + "filename": "src/utils/ERC20.cairo" + }, + "parent_location": [ + { + "end_col": 82, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/totalSupply/f9521ee04dab7f503e72addd131262b31983f1e13ea962eb0b121959d1008326.cairo" + }, + "parent_location": [ + { + "end_col": 17, + "end_line": 42, + "input_file": { + "filename": "src/utils/ERC20.cairo" + }, + "start_col": 6, + "start_line": 42 + }, + "While constructing the external wrapper for:" + ], + "start_col": 70, + "start_line": 1 + }, + "While expanding the reference 'pedersen_ptr' in:" + ], + "start_col": 38, + "start_line": 42 + }, + "While constructing the external wrapper for:" + ], + "start_col": 20, + "start_line": 1 + } + }, + "1261": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.totalSupply" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 67, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/totalSupply/741ea357d6336b0bed7bf0472425acd0311d543883b803388880e60a232040c7.cairo" + }, + "parent_location": [ + { + "end_col": 81, + "end_line": 42, + "input_file": { + "filename": "src/utils/ERC20.cairo" + }, + "parent_location": [ + { + "end_col": 115, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/totalSupply/f9521ee04dab7f503e72addd131262b31983f1e13ea962eb0b121959d1008326.cairo" + }, + "parent_location": [ + { + "end_col": 17, + "end_line": 42, + "input_file": { + "filename": "src/utils/ERC20.cairo" + }, + "start_col": 6, + "start_line": 42 + }, + "While constructing the external wrapper for:" + ], + "start_col": 100, + "start_line": 1 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 66, + "start_line": 42 + }, + "While constructing the external wrapper for:" + ], + "start_col": 23, + "start_line": 1 + } + }, + "1262": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.totalSupply" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 17, + "end_line": 42, + "input_file": { + "filename": "src/utils/ERC20.cairo" + }, + "start_col": 6, + "start_line": 42 + } + }, + "1264": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.totalSupply" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 115, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/totalSupply/f9521ee04dab7f503e72addd131262b31983f1e13ea962eb0b121959d1008326.cairo" + }, + "parent_location": [ + { + "end_col": 17, + "end_line": 42, + "input_file": { + "filename": "src/utils/ERC20.cairo" + }, + "parent_location": [ + { + "end_col": 100, + "end_line": 2, + "input_file": { + "filename": "autogen/starknet/external/totalSupply/f9521ee04dab7f503e72addd131262b31983f1e13ea962eb0b121959d1008326.cairo" + }, + "parent_location": [ + { + "end_col": 17, + "end_line": 42, + "input_file": { + "filename": "src/utils/ERC20.cairo" + }, + "start_col": 6, + "start_line": 42 + }, + "While constructing the external wrapper for:" + ], + "start_col": 85, + "start_line": 2 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 6, + "start_line": 42 + }, + "While constructing the external wrapper for:" + ], + "start_col": 100, + "start_line": 1 + } + }, + "1265": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.totalSupply" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 101, + "end_line": 2, + "input_file": { + "filename": "autogen/starknet/external/totalSupply/f9521ee04dab7f503e72addd131262b31983f1e13ea962eb0b121959d1008326.cairo" + }, + "parent_location": [ + { + "end_col": 17, + "end_line": 42, + "input_file": { + "filename": "src/utils/ERC20.cairo" + }, + "start_col": 6, + "start_line": 42 + }, + "While constructing the external wrapper for:" + ], + "start_col": 48, + "start_line": 2 + } + }, + "1267": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.totalSupply" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 55, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/totalSupply/f9521ee04dab7f503e72addd131262b31983f1e13ea962eb0b121959d1008326.cairo" + }, + "parent_location": [ + { + "end_col": 17, + "end_line": 42, + "input_file": { + "filename": "src/utils/ERC20.cairo" + }, + "parent_location": [ + { + "end_col": 20, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/totalSupply/da17921a4e81c09e730800bbf23bfdbe5e9e6bfaedc59d80fbf62087fa43c27d.cairo" + }, + "parent_location": [ + { + "end_col": 17, + "end_line": 42, + "input_file": { + "filename": "src/utils/ERC20.cairo" + }, + "start_col": 6, + "start_line": 42 + }, + "While constructing the external wrapper for:" + ], + "start_col": 9, + "start_line": 1 + }, + "While expanding the reference 'syscall_ptr' in:" + ], + "start_col": 6, + "start_line": 42 + }, + "While constructing the external wrapper for:" + ], + "start_col": 44, + "start_line": 1 + } + }, + "1268": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.totalSupply" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 82, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/totalSupply/f9521ee04dab7f503e72addd131262b31983f1e13ea962eb0b121959d1008326.cairo" + }, + "parent_location": [ + { + "end_col": 17, + "end_line": 42, + "input_file": { + "filename": "src/utils/ERC20.cairo" + }, + "parent_location": [ + { + "end_col": 33, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/totalSupply/da17921a4e81c09e730800bbf23bfdbe5e9e6bfaedc59d80fbf62087fa43c27d.cairo" + }, + "parent_location": [ + { + "end_col": 17, + "end_line": 42, + "input_file": { + "filename": "src/utils/ERC20.cairo" + }, + "start_col": 6, + "start_line": 42 + }, + "While constructing the external wrapper for:" + ], + "start_col": 21, + "start_line": 1 + }, + "While expanding the reference 'pedersen_ptr' in:" + ], + "start_col": 6, + "start_line": 42 + }, + "While constructing the external wrapper for:" + ], + "start_col": 70, + "start_line": 1 + } + }, + "1269": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.totalSupply" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 21, + "end_line": 2, + "input_file": { + "filename": "autogen/starknet/external/totalSupply/f9521ee04dab7f503e72addd131262b31983f1e13ea962eb0b121959d1008326.cairo" + }, + "parent_location": [ + { + "end_col": 17, + "end_line": 42, + "input_file": { + "filename": "src/utils/ERC20.cairo" + }, + "parent_location": [ + { + "end_col": 49, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/totalSupply/da17921a4e81c09e730800bbf23bfdbe5e9e6bfaedc59d80fbf62087fa43c27d.cairo" + }, + "parent_location": [ + { + "end_col": 17, + "end_line": 42, + "input_file": { + "filename": "src/utils/ERC20.cairo" + }, + "start_col": 6, + "start_line": 42 + }, + "While constructing the external wrapper for:" + ], + "start_col": 34, + "start_line": 1 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 6, + "start_line": 42 + }, + "While constructing the external wrapper for:" + ], + "start_col": 6, + "start_line": 2 + } + }, + "1270": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.totalSupply" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 35, + "end_line": 2, + "input_file": { + "filename": "autogen/starknet/external/totalSupply/f9521ee04dab7f503e72addd131262b31983f1e13ea962eb0b121959d1008326.cairo" + }, + "parent_location": [ + { + "end_col": 17, + "end_line": 42, + "input_file": { + "filename": "src/utils/ERC20.cairo" + }, + "parent_location": [ + { + "end_col": 62, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/totalSupply/da17921a4e81c09e730800bbf23bfdbe5e9e6bfaedc59d80fbf62087fa43c27d.cairo" + }, + "parent_location": [ + { + "end_col": 17, + "end_line": 42, + "input_file": { + "filename": "src/utils/ERC20.cairo" + }, + "start_col": 6, + "start_line": 42 + }, + "While constructing the external wrapper for:" + ], + "start_col": 50, + "start_line": 1 + }, + "While expanding the reference 'retdata_size' in:" + ], + "start_col": 6, + "start_line": 42 + }, + "While constructing the external wrapper for:" + ], + "start_col": 23, + "start_line": 2 + } + }, + "1271": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.totalSupply" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 44, + "end_line": 2, + "input_file": { + "filename": "autogen/starknet/external/totalSupply/f9521ee04dab7f503e72addd131262b31983f1e13ea962eb0b121959d1008326.cairo" + }, + "parent_location": [ + { + "end_col": 17, + "end_line": 42, + "input_file": { + "filename": "src/utils/ERC20.cairo" + }, + "parent_location": [ + { + "end_col": 70, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/totalSupply/da17921a4e81c09e730800bbf23bfdbe5e9e6bfaedc59d80fbf62087fa43c27d.cairo" + }, + "parent_location": [ + { + "end_col": 17, + "end_line": 42, + "input_file": { + "filename": "src/utils/ERC20.cairo" + }, + "start_col": 6, + "start_line": 42 + }, + "While constructing the external wrapper for:" + ], + "start_col": 63, + "start_line": 1 + }, + "While expanding the reference 'retdata' in:" + ], + "start_col": 6, + "start_line": 42 + }, + "While constructing the external wrapper for:" + ], + "start_col": 37, + "start_line": 2 + } + }, + "1272": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.totalSupply" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 72, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/totalSupply/da17921a4e81c09e730800bbf23bfdbe5e9e6bfaedc59d80fbf62087fa43c27d.cairo" + }, + "parent_location": [ + { + "end_col": 17, + "end_line": 42, + "input_file": { + "filename": "src/utils/ERC20.cairo" + }, + "start_col": 6, + "start_line": 42 + }, + "While constructing the external wrapper for:" + ], + "start_col": 1, + "start_line": 1 + } + }, + "1273": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.decimals" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 33, + "end_line": 51, + "input_file": { + "filename": "src/utils/ERC20.cairo" + }, + "parent_location": [ + { + "end_col": 37, + "end_line": 92, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc20/library.cairo" + }, + "parent_location": [ + { + "end_col": 38, + "end_line": 54, + "input_file": { + "filename": "src/utils/ERC20.cairo" + }, + "start_col": 22, + "start_line": 54 + }, + "While trying to retrieve the implicit argument 'syscall_ptr' in:" + ], + "start_col": 19, + "start_line": 92 + }, + "While expanding the reference 'syscall_ptr' in:" + ], + "start_col": 15, + "start_line": 51 + } + }, + "1274": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.decimals" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 61, + "end_line": 51, + "input_file": { + "filename": "src/utils/ERC20.cairo" + }, + "parent_location": [ + { + "end_col": 65, + "end_line": 92, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc20/library.cairo" + }, + "parent_location": [ + { + "end_col": 38, + "end_line": 54, + "input_file": { + "filename": "src/utils/ERC20.cairo" + }, + "start_col": 22, + "start_line": 54 + }, + "While trying to retrieve the implicit argument 'pedersen_ptr' in:" + ], + "start_col": 39, + "start_line": 92 + }, + "While expanding the reference 'pedersen_ptr' in:" + ], + "start_col": 35, + "start_line": 51 + } + }, + "1275": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.decimals" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 78, + "end_line": 51, + "input_file": { + "filename": "src/utils/ERC20.cairo" + }, + "parent_location": [ + { + "end_col": 82, + "end_line": 92, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc20/library.cairo" + }, + "parent_location": [ + { + "end_col": 38, + "end_line": 54, + "input_file": { + "filename": "src/utils/ERC20.cairo" + }, + "start_col": 22, + "start_line": 54 + }, + "While trying to retrieve the implicit argument 'range_check_ptr' in:" + ], + "start_col": 67, + "start_line": 92 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 63, + "start_line": 51 + } + }, + "1276": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.decimals" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 38, + "end_line": 54, + "input_file": { + "filename": "src/utils/ERC20.cairo" + }, + "start_col": 22, + "start_line": 54 + } + }, + "1278": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.decimals" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 24, + "end_line": 56, + "input_file": { + "filename": "src/utils/ERC20.cairo" + }, + "start_col": 5, + "start_line": 56 + } + }, + "1279": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.decimals_encode_return" + ], + "flow_tracking_data": null, + "hints": [ + { + "location": { + "end_col": 38, + "end_line": 3, + "input_file": { + "filename": "autogen/starknet/external/return/decimals/a97d2b6786c76802562faf3a37a632fd604ff18dde35a5c92ee6960b683ee2dd.cairo" + }, + "parent_location": [ + { + "end_col": 14, + "end_line": 51, + "input_file": { + "filename": "src/utils/ERC20.cairo" + }, + "start_col": 6, + "start_line": 51 + }, + "While handling return value of" + ], + "start_col": 5, + "start_line": 3 + }, + "n_prefix_newlines": 0 + } + ], + "inst": { + "end_col": 18, + "end_line": 4, + "input_file": { + "filename": "autogen/starknet/external/return/decimals/a97d2b6786c76802562faf3a37a632fd604ff18dde35a5c92ee6960b683ee2dd.cairo" + }, + "parent_location": [ + { + "end_col": 14, + "end_line": 51, + "input_file": { + "filename": "src/utils/ERC20.cairo" + }, + "start_col": 6, + "start_line": 51 + }, + "While handling return value of" + ], + "start_col": 5, + "start_line": 4 + } + }, + "1281": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.decimals_encode_return" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 50, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/arg_processor/a81bcec621a2ff03486299e6a77ac9e0b035697b74f8a9b599dbb1c25229a3e2.cairo" + }, + "parent_location": [ + { + "end_col": 19, + "end_line": 52, + "input_file": { + "filename": "src/utils/ERC20.cairo" + }, + "start_col": 5, + "start_line": 52 + }, + "While handling return value 'decimals'" + ], + "start_col": 1, + "start_line": 1 + } + }, + "1282": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.decimals_encode_return" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 48, + "end_line": 2, + "input_file": { + "filename": "autogen/starknet/arg_processor/a81bcec621a2ff03486299e6a77ac9e0b035697b74f8a9b599dbb1c25229a3e2.cairo" + }, + "parent_location": [ + { + "end_col": 19, + "end_line": 52, + "input_file": { + "filename": "src/utils/ERC20.cairo" + }, + "parent_location": [ + { + "end_col": 36, + "end_line": 11, + "input_file": { + "filename": "autogen/starknet/external/return/decimals/a97d2b6786c76802562faf3a37a632fd604ff18dde35a5c92ee6960b683ee2dd.cairo" + }, + "parent_location": [ + { + "end_col": 14, + "end_line": 51, + "input_file": { + "filename": "src/utils/ERC20.cairo" + }, + "start_col": 6, + "start_line": 51 + }, + "While handling return value of" + ], + "start_col": 18, + "start_line": 11 + }, + "While expanding the reference '__return_value_ptr' in:" + ], + "start_col": 5, + "start_line": 52 + }, + "While handling return value 'decimals'" + ], + "start_col": 26, + "start_line": 2 + } + }, + "1284": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.decimals_encode_return" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 73, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/return/decimals/a97d2b6786c76802562faf3a37a632fd604ff18dde35a5c92ee6960b683ee2dd.cairo" + }, + "parent_location": [ + { + "end_col": 14, + "end_line": 51, + "input_file": { + "filename": "src/utils/ERC20.cairo" + }, + "parent_location": [ + { + "end_col": 40, + "end_line": 10, + "input_file": { + "filename": "autogen/starknet/external/return/decimals/a97d2b6786c76802562faf3a37a632fd604ff18dde35a5c92ee6960b683ee2dd.cairo" + }, + "parent_location": [ + { + "end_col": 14, + "end_line": 51, + "input_file": { + "filename": "src/utils/ERC20.cairo" + }, + "start_col": 6, + "start_line": 51 + }, + "While handling return value of" + ], + "start_col": 25, + "start_line": 10 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 6, + "start_line": 51 + }, + "While handling return value of" + ], + "start_col": 58, + "start_line": 1 + } + }, + "1285": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.decimals_encode_return" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 63, + "end_line": 11, + "input_file": { + "filename": "autogen/starknet/external/return/decimals/a97d2b6786c76802562faf3a37a632fd604ff18dde35a5c92ee6960b683ee2dd.cairo" + }, + "parent_location": [ + { + "end_col": 14, + "end_line": 51, + "input_file": { + "filename": "src/utils/ERC20.cairo" + }, + "start_col": 6, + "start_line": 51 + }, + "While handling return value of" + ], + "start_col": 18, + "start_line": 11 + } + }, + "1286": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.decimals_encode_return" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 35, + "end_line": 5, + "input_file": { + "filename": "autogen/starknet/external/return/decimals/a97d2b6786c76802562faf3a37a632fd604ff18dde35a5c92ee6960b683ee2dd.cairo" + }, + "parent_location": [ + { + "end_col": 14, + "end_line": 51, + "input_file": { + "filename": "src/utils/ERC20.cairo" + }, + "parent_location": [ + { + "end_col": 38, + "end_line": 12, + "input_file": { + "filename": "autogen/starknet/external/return/decimals/a97d2b6786c76802562faf3a37a632fd604ff18dde35a5c92ee6960b683ee2dd.cairo" + }, + "parent_location": [ + { + "end_col": 14, + "end_line": 51, + "input_file": { + "filename": "src/utils/ERC20.cairo" + }, + "start_col": 6, + "start_line": 51 + }, + "While handling return value of" + ], + "start_col": 14, + "start_line": 12 + }, + "While expanding the reference '__return_value_ptr_start' in:" + ], + "start_col": 6, + "start_line": 51 + }, + "While handling return value of" + ], + "start_col": 11, + "start_line": 5 + } + }, + "1287": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.decimals_encode_return" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 40, + "end_line": 12, + "input_file": { + "filename": "autogen/starknet/external/return/decimals/a97d2b6786c76802562faf3a37a632fd604ff18dde35a5c92ee6960b683ee2dd.cairo" + }, + "parent_location": [ + { + "end_col": 14, + "end_line": 51, + "input_file": { + "filename": "src/utils/ERC20.cairo" + }, + "start_col": 6, + "start_line": 51 + }, + "While handling return value of" + ], + "start_col": 5, + "start_line": 9 + } + }, + "1288": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.decimals" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 58, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/arg_processor/01cba52f8515996bb9d7070bde81ff39281d096d7024a558efcba6e1fd2402cf.cairo" + }, + "parent_location": [ + { + "end_col": 14, + "end_line": 51, + "input_file": { + "filename": "src/utils/ERC20.cairo" + }, + "start_col": 6, + "start_line": 51 + }, + "While handling calldata of" + ], + "start_col": 1, + "start_line": 1 + } + }, + "1289": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.decimals" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 64, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/decimals/b2c52ca2d2a8fc8791a983086d8716c5eacd0c3d62934914d2286f84b98ff4cb.cairo" + }, + "parent_location": [ + { + "end_col": 33, + "end_line": 51, + "input_file": { + "filename": "src/utils/ERC20.cairo" + }, + "parent_location": [ + { + "end_col": 55, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/decimals/b895732858337deae88cb0106f94dcac8575befa3b4c84c0fc6c096df9053938.cairo" + }, + "parent_location": [ + { + "end_col": 14, + "end_line": 51, + "input_file": { + "filename": "src/utils/ERC20.cairo" + }, + "start_col": 6, + "start_line": 51 + }, + "While constructing the external wrapper for:" + ], + "start_col": 44, + "start_line": 1 + }, + "While expanding the reference 'syscall_ptr' in:" + ], + "start_col": 15, + "start_line": 51 + }, + "While constructing the external wrapper for:" + ], + "start_col": 19, + "start_line": 1 + } + }, + "1290": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.decimals" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 110, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/decimals/9684a85e93c782014ca14293edea4eb2502039a5a7b6538ecd39c56faaf12529.cairo" + }, + "parent_location": [ + { + "end_col": 61, + "end_line": 51, + "input_file": { + "filename": "src/utils/ERC20.cairo" + }, + "parent_location": [ + { + "end_col": 82, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/decimals/b895732858337deae88cb0106f94dcac8575befa3b4c84c0fc6c096df9053938.cairo" + }, + "parent_location": [ + { + "end_col": 14, + "end_line": 51, + "input_file": { + "filename": "src/utils/ERC20.cairo" + }, + "start_col": 6, + "start_line": 51 + }, + "While constructing the external wrapper for:" + ], + "start_col": 70, + "start_line": 1 + }, + "While expanding the reference 'pedersen_ptr' in:" + ], + "start_col": 35, + "start_line": 51 + }, + "While constructing the external wrapper for:" + ], + "start_col": 20, + "start_line": 1 + } + }, + "1291": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.decimals" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 67, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/decimals/741ea357d6336b0bed7bf0472425acd0311d543883b803388880e60a232040c7.cairo" + }, + "parent_location": [ + { + "end_col": 78, + "end_line": 51, + "input_file": { + "filename": "src/utils/ERC20.cairo" + }, + "parent_location": [ + { + "end_col": 115, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/decimals/b895732858337deae88cb0106f94dcac8575befa3b4c84c0fc6c096df9053938.cairo" + }, + "parent_location": [ + { + "end_col": 14, + "end_line": 51, + "input_file": { + "filename": "src/utils/ERC20.cairo" + }, + "start_col": 6, + "start_line": 51 + }, + "While constructing the external wrapper for:" + ], + "start_col": 100, + "start_line": 1 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 63, + "start_line": 51 + }, + "While constructing the external wrapper for:" + ], + "start_col": 23, + "start_line": 1 + } + }, + "1292": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.decimals" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 14, + "end_line": 51, + "input_file": { + "filename": "src/utils/ERC20.cairo" + }, + "start_col": 6, + "start_line": 51 + } + }, + "1294": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.decimals" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 115, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/decimals/b895732858337deae88cb0106f94dcac8575befa3b4c84c0fc6c096df9053938.cairo" + }, + "parent_location": [ + { + "end_col": 14, + "end_line": 51, + "input_file": { + "filename": "src/utils/ERC20.cairo" + }, + "parent_location": [ + { + "end_col": 97, + "end_line": 2, + "input_file": { + "filename": "autogen/starknet/external/decimals/b895732858337deae88cb0106f94dcac8575befa3b4c84c0fc6c096df9053938.cairo" + }, + "parent_location": [ + { + "end_col": 14, + "end_line": 51, + "input_file": { + "filename": "src/utils/ERC20.cairo" + }, + "start_col": 6, + "start_line": 51 + }, + "While constructing the external wrapper for:" + ], + "start_col": 82, + "start_line": 2 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 6, + "start_line": 51 + }, + "While constructing the external wrapper for:" + ], + "start_col": 100, + "start_line": 1 + } + }, + "1295": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.decimals" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 98, + "end_line": 2, + "input_file": { + "filename": "autogen/starknet/external/decimals/b895732858337deae88cb0106f94dcac8575befa3b4c84c0fc6c096df9053938.cairo" + }, + "parent_location": [ + { + "end_col": 14, + "end_line": 51, + "input_file": { + "filename": "src/utils/ERC20.cairo" + }, + "start_col": 6, + "start_line": 51 + }, + "While constructing the external wrapper for:" + ], + "start_col": 48, + "start_line": 2 + } + }, + "1297": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.decimals" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 55, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/decimals/b895732858337deae88cb0106f94dcac8575befa3b4c84c0fc6c096df9053938.cairo" + }, + "parent_location": [ + { + "end_col": 14, + "end_line": 51, + "input_file": { + "filename": "src/utils/ERC20.cairo" + }, + "parent_location": [ + { + "end_col": 20, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/decimals/da17921a4e81c09e730800bbf23bfdbe5e9e6bfaedc59d80fbf62087fa43c27d.cairo" + }, + "parent_location": [ + { + "end_col": 14, + "end_line": 51, + "input_file": { + "filename": "src/utils/ERC20.cairo" + }, + "start_col": 6, + "start_line": 51 + }, + "While constructing the external wrapper for:" + ], + "start_col": 9, + "start_line": 1 + }, + "While expanding the reference 'syscall_ptr' in:" + ], + "start_col": 6, + "start_line": 51 + }, + "While constructing the external wrapper for:" + ], + "start_col": 44, + "start_line": 1 + } + }, + "1298": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.decimals" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 82, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/decimals/b895732858337deae88cb0106f94dcac8575befa3b4c84c0fc6c096df9053938.cairo" + }, + "parent_location": [ + { + "end_col": 14, + "end_line": 51, + "input_file": { + "filename": "src/utils/ERC20.cairo" + }, + "parent_location": [ + { + "end_col": 33, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/decimals/da17921a4e81c09e730800bbf23bfdbe5e9e6bfaedc59d80fbf62087fa43c27d.cairo" + }, + "parent_location": [ + { + "end_col": 14, + "end_line": 51, + "input_file": { + "filename": "src/utils/ERC20.cairo" + }, + "start_col": 6, + "start_line": 51 + }, + "While constructing the external wrapper for:" + ], + "start_col": 21, + "start_line": 1 + }, + "While expanding the reference 'pedersen_ptr' in:" + ], + "start_col": 6, + "start_line": 51 + }, + "While constructing the external wrapper for:" + ], + "start_col": 70, + "start_line": 1 + } + }, + "1299": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.decimals" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 21, + "end_line": 2, + "input_file": { + "filename": "autogen/starknet/external/decimals/b895732858337deae88cb0106f94dcac8575befa3b4c84c0fc6c096df9053938.cairo" + }, + "parent_location": [ + { + "end_col": 14, + "end_line": 51, + "input_file": { + "filename": "src/utils/ERC20.cairo" + }, + "parent_location": [ + { + "end_col": 49, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/decimals/da17921a4e81c09e730800bbf23bfdbe5e9e6bfaedc59d80fbf62087fa43c27d.cairo" + }, + "parent_location": [ + { + "end_col": 14, + "end_line": 51, + "input_file": { + "filename": "src/utils/ERC20.cairo" + }, + "start_col": 6, + "start_line": 51 + }, + "While constructing the external wrapper for:" + ], + "start_col": 34, + "start_line": 1 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 6, + "start_line": 51 + }, + "While constructing the external wrapper for:" + ], + "start_col": 6, + "start_line": 2 + } + }, + "1300": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.decimals" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 35, + "end_line": 2, + "input_file": { + "filename": "autogen/starknet/external/decimals/b895732858337deae88cb0106f94dcac8575befa3b4c84c0fc6c096df9053938.cairo" + }, + "parent_location": [ + { + "end_col": 14, + "end_line": 51, + "input_file": { + "filename": "src/utils/ERC20.cairo" + }, + "parent_location": [ + { + "end_col": 62, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/decimals/da17921a4e81c09e730800bbf23bfdbe5e9e6bfaedc59d80fbf62087fa43c27d.cairo" + }, + "parent_location": [ + { + "end_col": 14, + "end_line": 51, + "input_file": { + "filename": "src/utils/ERC20.cairo" + }, + "start_col": 6, + "start_line": 51 + }, + "While constructing the external wrapper for:" + ], + "start_col": 50, + "start_line": 1 + }, + "While expanding the reference 'retdata_size' in:" + ], + "start_col": 6, + "start_line": 51 + }, + "While constructing the external wrapper for:" + ], + "start_col": 23, + "start_line": 2 + } + }, + "1301": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.decimals" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 44, + "end_line": 2, + "input_file": { + "filename": "autogen/starknet/external/decimals/b895732858337deae88cb0106f94dcac8575befa3b4c84c0fc6c096df9053938.cairo" + }, + "parent_location": [ + { + "end_col": 14, + "end_line": 51, + "input_file": { + "filename": "src/utils/ERC20.cairo" + }, + "parent_location": [ + { + "end_col": 70, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/decimals/da17921a4e81c09e730800bbf23bfdbe5e9e6bfaedc59d80fbf62087fa43c27d.cairo" + }, + "parent_location": [ + { + "end_col": 14, + "end_line": 51, + "input_file": { + "filename": "src/utils/ERC20.cairo" + }, + "start_col": 6, + "start_line": 51 + }, + "While constructing the external wrapper for:" + ], + "start_col": 63, + "start_line": 1 + }, + "While expanding the reference 'retdata' in:" + ], + "start_col": 6, + "start_line": 51 + }, + "While constructing the external wrapper for:" + ], + "start_col": 37, + "start_line": 2 + } + }, + "1302": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.decimals" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 72, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/decimals/da17921a4e81c09e730800bbf23bfdbe5e9e6bfaedc59d80fbf62087fa43c27d.cairo" + }, + "parent_location": [ + { + "end_col": 14, + "end_line": 51, + "input_file": { + "filename": "src/utils/ERC20.cairo" + }, + "start_col": 6, + "start_line": 51 + }, + "While constructing the external wrapper for:" + ], + "start_col": 1, + "start_line": 1 + } + }, + "1303": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.balanceOf" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 34, + "end_line": 60, + "input_file": { + "filename": "src/utils/ERC20.cairo" + }, + "parent_location": [ + { + "end_col": 39, + "end_line": 98, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc20/library.cairo" + }, + "parent_location": [ + { + "end_col": 63, + "end_line": 63, + "input_file": { + "filename": "src/utils/ERC20.cairo" + }, + "start_col": 30, + "start_line": 63 + }, + "While trying to retrieve the implicit argument 'syscall_ptr' in:" + ], + "start_col": 21, + "start_line": 98 + }, + "While expanding the reference 'syscall_ptr' in:" + ], + "start_col": 16, + "start_line": 60 + } + }, + "1304": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.balanceOf" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 62, + "end_line": 60, + "input_file": { + "filename": "src/utils/ERC20.cairo" + }, + "parent_location": [ + { + "end_col": 67, + "end_line": 98, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc20/library.cairo" + }, + "parent_location": [ + { + "end_col": 63, + "end_line": 63, + "input_file": { + "filename": "src/utils/ERC20.cairo" + }, + "start_col": 30, + "start_line": 63 + }, + "While trying to retrieve the implicit argument 'pedersen_ptr' in:" + ], + "start_col": 41, + "start_line": 98 + }, + "While expanding the reference 'pedersen_ptr' in:" + ], + "start_col": 36, + "start_line": 60 + } + }, + "1305": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.balanceOf" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 79, + "end_line": 60, + "input_file": { + "filename": "src/utils/ERC20.cairo" + }, + "parent_location": [ + { + "end_col": 84, + "end_line": 98, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc20/library.cairo" + }, + "parent_location": [ + { + "end_col": 63, + "end_line": 63, + "input_file": { + "filename": "src/utils/ERC20.cairo" + }, + "start_col": 30, + "start_line": 63 + }, + "While trying to retrieve the implicit argument 'range_check_ptr' in:" + ], + "start_col": 69, + "start_line": 98 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 64, + "start_line": 60 + } + }, + "1306": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.balanceOf" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 26, + "end_line": 61, + "input_file": { + "filename": "src/utils/ERC20.cairo" + }, + "parent_location": [ + { + "end_col": 62, + "end_line": 63, + "input_file": { + "filename": "src/utils/ERC20.cairo" + }, + "start_col": 47, + "start_line": 63 + }, + "While expanding the reference 'account_address' in:" + ], + "start_col": 5, + "start_line": 61 + } + }, + "1307": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.balanceOf" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 63, + "end_line": 63, + "input_file": { + "filename": "src/utils/ERC20.cairo" + }, + "start_col": 30, + "start_line": 63 + } + }, + "1309": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.balanceOf" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 23, + "end_line": 65, + "input_file": { + "filename": "src/utils/ERC20.cairo" + }, + "start_col": 5, + "start_line": 65 + } + }, + "1310": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.balanceOf_encode_return" + ], + "flow_tracking_data": null, + "hints": [ + { + "location": { + "end_col": 38, + "end_line": 3, + "input_file": { + "filename": "autogen/starknet/external/return/balanceOf/6be46755be2f937558932379e9c42b1ab153e2ba499cd66beb178511b2106ad9.cairo" + }, + "parent_location": [ + { + "end_col": 15, + "end_line": 60, + "input_file": { + "filename": "src/utils/ERC20.cairo" + }, + "start_col": 6, + "start_line": 60 + }, + "While handling return value of" + ], + "start_col": 5, + "start_line": 3 + }, + "n_prefix_newlines": 0 + } + ], + "inst": { + "end_col": 18, + "end_line": 4, + "input_file": { + "filename": "autogen/starknet/external/return/balanceOf/6be46755be2f937558932379e9c42b1ab153e2ba499cd66beb178511b2106ad9.cairo" + }, + "parent_location": [ + { + "end_col": 15, + "end_line": 60, + "input_file": { + "filename": "src/utils/ERC20.cairo" + }, + "start_col": 6, + "start_line": 60 + }, + "While handling return value of" + ], + "start_col": 5, + "start_line": 4 + } + }, + "1312": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.balanceOf_encode_return" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 60, + "end_line": 3, + "input_file": { + "filename": "autogen/starknet/arg_processor/f013cc89754bf613d36aa163a5014b518987d20a85394ebbe3c47c5cdb0a38b1.cairo" + }, + "parent_location": [ + { + "end_col": 23, + "end_line": 62, + "input_file": { + "filename": "src/utils/ERC20.cairo" + }, + "start_col": 7, + "start_line": 62 + }, + "While handling return value 'balance'" + ], + "start_col": 1, + "start_line": 3 + } + }, + "1313": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.balanceOf_encode_return" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 60, + "end_line": 4, + "input_file": { + "filename": "autogen/starknet/arg_processor/f013cc89754bf613d36aa163a5014b518987d20a85394ebbe3c47c5cdb0a38b1.cairo" + }, + "parent_location": [ + { + "end_col": 23, + "end_line": 62, + "input_file": { + "filename": "src/utils/ERC20.cairo" + }, + "start_col": 7, + "start_line": 62 + }, + "While handling return value 'balance'" + ], + "start_col": 1, + "start_line": 4 + } + }, + "1314": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.balanceOf_encode_return" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 48, + "end_line": 5, + "input_file": { + "filename": "autogen/starknet/arg_processor/f013cc89754bf613d36aa163a5014b518987d20a85394ebbe3c47c5cdb0a38b1.cairo" + }, + "parent_location": [ + { + "end_col": 23, + "end_line": 62, + "input_file": { + "filename": "src/utils/ERC20.cairo" + }, + "parent_location": [ + { + "end_col": 36, + "end_line": 11, + "input_file": { + "filename": "autogen/starknet/external/return/balanceOf/6be46755be2f937558932379e9c42b1ab153e2ba499cd66beb178511b2106ad9.cairo" + }, + "parent_location": [ + { + "end_col": 15, + "end_line": 60, + "input_file": { + "filename": "src/utils/ERC20.cairo" + }, + "start_col": 6, + "start_line": 60 + }, + "While handling return value of" + ], + "start_col": 18, + "start_line": 11 + }, + "While expanding the reference '__return_value_ptr' in:" + ], + "start_col": 7, + "start_line": 62 + }, + "While handling return value 'balance'" + ], + "start_col": 26, + "start_line": 5 + } + }, + "1316": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.balanceOf_encode_return" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 107, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/return/balanceOf/6be46755be2f937558932379e9c42b1ab153e2ba499cd66beb178511b2106ad9.cairo" + }, + "parent_location": [ + { + "end_col": 15, + "end_line": 60, + "input_file": { + "filename": "src/utils/ERC20.cairo" + }, + "parent_location": [ + { + "end_col": 40, + "end_line": 10, + "input_file": { + "filename": "autogen/starknet/external/return/balanceOf/6be46755be2f937558932379e9c42b1ab153e2ba499cd66beb178511b2106ad9.cairo" + }, + "parent_location": [ + { + "end_col": 15, + "end_line": 60, + "input_file": { + "filename": "src/utils/ERC20.cairo" + }, + "start_col": 6, + "start_line": 60 + }, + "While handling return value of" + ], + "start_col": 25, + "start_line": 10 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 6, + "start_line": 60 + }, + "While handling return value of" + ], + "start_col": 92, + "start_line": 1 + } + }, + "1317": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.balanceOf_encode_return" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 63, + "end_line": 11, + "input_file": { + "filename": "autogen/starknet/external/return/balanceOf/6be46755be2f937558932379e9c42b1ab153e2ba499cd66beb178511b2106ad9.cairo" + }, + "parent_location": [ + { + "end_col": 15, + "end_line": 60, + "input_file": { + "filename": "src/utils/ERC20.cairo" + }, + "start_col": 6, + "start_line": 60 + }, + "While handling return value of" + ], + "start_col": 18, + "start_line": 11 + } + }, + "1318": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.balanceOf_encode_return" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 35, + "end_line": 5, + "input_file": { + "filename": "autogen/starknet/external/return/balanceOf/6be46755be2f937558932379e9c42b1ab153e2ba499cd66beb178511b2106ad9.cairo" + }, + "parent_location": [ + { + "end_col": 15, + "end_line": 60, + "input_file": { + "filename": "src/utils/ERC20.cairo" + }, + "parent_location": [ + { + "end_col": 38, + "end_line": 12, + "input_file": { + "filename": "autogen/starknet/external/return/balanceOf/6be46755be2f937558932379e9c42b1ab153e2ba499cd66beb178511b2106ad9.cairo" + }, + "parent_location": [ + { + "end_col": 15, + "end_line": 60, + "input_file": { + "filename": "src/utils/ERC20.cairo" + }, + "start_col": 6, + "start_line": 60 + }, + "While handling return value of" + ], + "start_col": 14, + "start_line": 12 + }, + "While expanding the reference '__return_value_ptr_start' in:" + ], + "start_col": 6, + "start_line": 60 + }, + "While handling return value of" + ], + "start_col": 11, + "start_line": 5 + } + }, + "1319": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.balanceOf_encode_return" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 40, + "end_line": 12, + "input_file": { + "filename": "autogen/starknet/external/return/balanceOf/6be46755be2f937558932379e9c42b1ab153e2ba499cd66beb178511b2106ad9.cairo" + }, + "parent_location": [ + { + "end_col": 15, + "end_line": 60, + "input_file": { + "filename": "src/utils/ERC20.cairo" + }, + "start_col": 6, + "start_line": 60 + }, + "While handling return value of" + ], + "start_col": 5, + "start_line": 9 + } + }, + "1320": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.balanceOf" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 40, + "end_line": 2, + "input_file": { + "filename": "autogen/starknet/arg_processor/c073ecb54e8cd61ad84824b949b230f6fabf217dd2f7219b88501cc9d2cf7faa.cairo" + }, + "parent_location": [ + { + "end_col": 26, + "end_line": 61, + "input_file": { + "filename": "src/utils/ERC20.cairo" + }, + "parent_location": [ + { + "end_col": 45, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/arg_processor/c31620b02d4d706f0542c989b2aadc01b0981d1f6a5933a8fe4937ace3d70d92.cairo" + }, + "parent_location": [ + { + "end_col": 15, + "end_line": 60, + "input_file": { + "filename": "src/utils/ERC20.cairo" + }, + "parent_location": [ + { + "end_col": 57, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/arg_processor/01cba52f8515996bb9d7070bde81ff39281d096d7024a558efcba6e1fd2402cf.cairo" + }, + "parent_location": [ + { + "end_col": 15, + "end_line": 60, + "input_file": { + "filename": "src/utils/ERC20.cairo" + }, + "start_col": 6, + "start_line": 60 + }, + "While handling calldata of" + ], + "start_col": 35, + "start_line": 1 + }, + "While expanding the reference '__calldata_actual_size' in:" + ], + "start_col": 6, + "start_line": 60 + }, + "While handling calldata of" + ], + "start_col": 31, + "start_line": 1 + }, + "While expanding the reference '__calldata_ptr' in:" + ], + "start_col": 5, + "start_line": 61 + }, + "While handling calldata argument 'account_address'" + ], + "start_col": 22, + "start_line": 2 + } + }, + "1322": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.balanceOf" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 58, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/arg_processor/01cba52f8515996bb9d7070bde81ff39281d096d7024a558efcba6e1fd2402cf.cairo" + }, + "parent_location": [ + { + "end_col": 15, + "end_line": 60, + "input_file": { + "filename": "src/utils/ERC20.cairo" + }, + "start_col": 6, + "start_line": 60 + }, + "While handling calldata of" + ], + "start_col": 1, + "start_line": 1 + } + }, + "1323": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.balanceOf" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 64, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/balanceOf/b2c52ca2d2a8fc8791a983086d8716c5eacd0c3d62934914d2286f84b98ff4cb.cairo" + }, + "parent_location": [ + { + "end_col": 34, + "end_line": 60, + "input_file": { + "filename": "src/utils/ERC20.cairo" + }, + "parent_location": [ + { + "end_col": 55, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/balanceOf/75544b4f16a88daff736222254a5ab8f1afc548c179254f09031e0971523639f.cairo" + }, + "parent_location": [ + { + "end_col": 15, + "end_line": 60, + "input_file": { + "filename": "src/utils/ERC20.cairo" + }, + "start_col": 6, + "start_line": 60 + }, + "While constructing the external wrapper for:" + ], + "start_col": 44, + "start_line": 1 + }, + "While expanding the reference 'syscall_ptr' in:" + ], + "start_col": 16, + "start_line": 60 + }, + "While constructing the external wrapper for:" + ], + "start_col": 19, + "start_line": 1 + } + }, + "1324": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.balanceOf" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 110, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/balanceOf/9684a85e93c782014ca14293edea4eb2502039a5a7b6538ecd39c56faaf12529.cairo" + }, + "parent_location": [ + { + "end_col": 62, + "end_line": 60, + "input_file": { + "filename": "src/utils/ERC20.cairo" + }, + "parent_location": [ + { + "end_col": 82, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/balanceOf/75544b4f16a88daff736222254a5ab8f1afc548c179254f09031e0971523639f.cairo" + }, + "parent_location": [ + { + "end_col": 15, + "end_line": 60, + "input_file": { + "filename": "src/utils/ERC20.cairo" + }, + "start_col": 6, + "start_line": 60 + }, + "While constructing the external wrapper for:" + ], + "start_col": 70, + "start_line": 1 + }, + "While expanding the reference 'pedersen_ptr' in:" + ], + "start_col": 36, + "start_line": 60 + }, + "While constructing the external wrapper for:" + ], + "start_col": 20, + "start_line": 1 + } + }, + "1325": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.balanceOf" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 67, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/balanceOf/741ea357d6336b0bed7bf0472425acd0311d543883b803388880e60a232040c7.cairo" + }, + "parent_location": [ + { + "end_col": 79, + "end_line": 60, + "input_file": { + "filename": "src/utils/ERC20.cairo" + }, + "parent_location": [ + { + "end_col": 115, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/balanceOf/75544b4f16a88daff736222254a5ab8f1afc548c179254f09031e0971523639f.cairo" + }, + "parent_location": [ + { + "end_col": 15, + "end_line": 60, + "input_file": { + "filename": "src/utils/ERC20.cairo" + }, + "start_col": 6, + "start_line": 60 + }, + "While constructing the external wrapper for:" + ], + "start_col": 100, + "start_line": 1 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 64, + "start_line": 60 + }, + "While constructing the external wrapper for:" + ], + "start_col": 23, + "start_line": 1 + } + }, + "1326": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.balanceOf" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 54, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/arg_processor/c073ecb54e8cd61ad84824b949b230f6fabf217dd2f7219b88501cc9d2cf7faa.cairo" + }, + "parent_location": [ + { + "end_col": 26, + "end_line": 61, + "input_file": { + "filename": "src/utils/ERC20.cairo" + }, + "parent_location": [ + { + "end_col": 163, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/balanceOf/75544b4f16a88daff736222254a5ab8f1afc548c179254f09031e0971523639f.cairo" + }, + "parent_location": [ + { + "end_col": 15, + "end_line": 60, + "input_file": { + "filename": "src/utils/ERC20.cairo" + }, + "start_col": 6, + "start_line": 60 + }, + "While constructing the external wrapper for:" + ], + "start_col": 133, + "start_line": 1 + }, + "While expanding the reference '__calldata_arg_account_address' in:" + ], + "start_col": 5, + "start_line": 61 + }, + "While handling calldata argument 'account_address'" + ], + "start_col": 38, + "start_line": 1 + } + }, + "1327": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.balanceOf" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 15, + "end_line": 60, + "input_file": { + "filename": "src/utils/ERC20.cairo" + }, + "start_col": 6, + "start_line": 60 + } + }, + "1329": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.balanceOf" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 115, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/balanceOf/75544b4f16a88daff736222254a5ab8f1afc548c179254f09031e0971523639f.cairo" + }, + "parent_location": [ + { + "end_col": 15, + "end_line": 60, + "input_file": { + "filename": "src/utils/ERC20.cairo" + }, + "parent_location": [ + { + "end_col": 98, + "end_line": 2, + "input_file": { + "filename": "autogen/starknet/external/balanceOf/75544b4f16a88daff736222254a5ab8f1afc548c179254f09031e0971523639f.cairo" + }, + "parent_location": [ + { + "end_col": 15, + "end_line": 60, + "input_file": { + "filename": "src/utils/ERC20.cairo" + }, + "start_col": 6, + "start_line": 60 + }, + "While constructing the external wrapper for:" + ], + "start_col": 83, + "start_line": 2 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 6, + "start_line": 60 + }, + "While constructing the external wrapper for:" + ], + "start_col": 100, + "start_line": 1 + } + }, + "1330": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.balanceOf" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 99, + "end_line": 2, + "input_file": { + "filename": "autogen/starknet/external/balanceOf/75544b4f16a88daff736222254a5ab8f1afc548c179254f09031e0971523639f.cairo" + }, + "parent_location": [ + { + "end_col": 15, + "end_line": 60, + "input_file": { + "filename": "src/utils/ERC20.cairo" + }, + "start_col": 6, + "start_line": 60 + }, + "While constructing the external wrapper for:" + ], + "start_col": 48, + "start_line": 2 + } + }, + "1332": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.balanceOf" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 55, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/balanceOf/75544b4f16a88daff736222254a5ab8f1afc548c179254f09031e0971523639f.cairo" + }, + "parent_location": [ + { + "end_col": 15, + "end_line": 60, + "input_file": { + "filename": "src/utils/ERC20.cairo" + }, + "parent_location": [ + { + "end_col": 20, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/balanceOf/da17921a4e81c09e730800bbf23bfdbe5e9e6bfaedc59d80fbf62087fa43c27d.cairo" + }, + "parent_location": [ + { + "end_col": 15, + "end_line": 60, + "input_file": { + "filename": "src/utils/ERC20.cairo" + }, + "start_col": 6, + "start_line": 60 + }, + "While constructing the external wrapper for:" + ], + "start_col": 9, + "start_line": 1 + }, + "While expanding the reference 'syscall_ptr' in:" + ], + "start_col": 6, + "start_line": 60 + }, + "While constructing the external wrapper for:" + ], + "start_col": 44, + "start_line": 1 + } + }, + "1333": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.balanceOf" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 82, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/balanceOf/75544b4f16a88daff736222254a5ab8f1afc548c179254f09031e0971523639f.cairo" + }, + "parent_location": [ + { + "end_col": 15, + "end_line": 60, + "input_file": { + "filename": "src/utils/ERC20.cairo" + }, + "parent_location": [ + { + "end_col": 33, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/balanceOf/da17921a4e81c09e730800bbf23bfdbe5e9e6bfaedc59d80fbf62087fa43c27d.cairo" + }, + "parent_location": [ + { + "end_col": 15, + "end_line": 60, + "input_file": { + "filename": "src/utils/ERC20.cairo" + }, + "start_col": 6, + "start_line": 60 + }, + "While constructing the external wrapper for:" + ], + "start_col": 21, + "start_line": 1 + }, + "While expanding the reference 'pedersen_ptr' in:" + ], + "start_col": 6, + "start_line": 60 + }, + "While constructing the external wrapper for:" + ], + "start_col": 70, + "start_line": 1 + } + }, + "1334": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.balanceOf" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 21, + "end_line": 2, + "input_file": { + "filename": "autogen/starknet/external/balanceOf/75544b4f16a88daff736222254a5ab8f1afc548c179254f09031e0971523639f.cairo" + }, + "parent_location": [ + { + "end_col": 15, + "end_line": 60, + "input_file": { + "filename": "src/utils/ERC20.cairo" + }, + "parent_location": [ + { + "end_col": 49, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/balanceOf/da17921a4e81c09e730800bbf23bfdbe5e9e6bfaedc59d80fbf62087fa43c27d.cairo" + }, + "parent_location": [ + { + "end_col": 15, + "end_line": 60, + "input_file": { + "filename": "src/utils/ERC20.cairo" + }, + "start_col": 6, + "start_line": 60 + }, + "While constructing the external wrapper for:" + ], + "start_col": 34, + "start_line": 1 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 6, + "start_line": 60 + }, + "While constructing the external wrapper for:" + ], + "start_col": 6, + "start_line": 2 + } + }, + "1335": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.balanceOf" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 35, + "end_line": 2, + "input_file": { + "filename": "autogen/starknet/external/balanceOf/75544b4f16a88daff736222254a5ab8f1afc548c179254f09031e0971523639f.cairo" + }, + "parent_location": [ + { + "end_col": 15, + "end_line": 60, + "input_file": { + "filename": "src/utils/ERC20.cairo" + }, + "parent_location": [ + { + "end_col": 62, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/balanceOf/da17921a4e81c09e730800bbf23bfdbe5e9e6bfaedc59d80fbf62087fa43c27d.cairo" + }, + "parent_location": [ + { + "end_col": 15, + "end_line": 60, + "input_file": { + "filename": "src/utils/ERC20.cairo" + }, + "start_col": 6, + "start_line": 60 + }, + "While constructing the external wrapper for:" + ], + "start_col": 50, + "start_line": 1 + }, + "While expanding the reference 'retdata_size' in:" + ], + "start_col": 6, + "start_line": 60 + }, + "While constructing the external wrapper for:" + ], + "start_col": 23, + "start_line": 2 + } + }, + "1336": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.balanceOf" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 44, + "end_line": 2, + "input_file": { + "filename": "autogen/starknet/external/balanceOf/75544b4f16a88daff736222254a5ab8f1afc548c179254f09031e0971523639f.cairo" + }, + "parent_location": [ + { + "end_col": 15, + "end_line": 60, + "input_file": { + "filename": "src/utils/ERC20.cairo" + }, + "parent_location": [ + { + "end_col": 70, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/balanceOf/da17921a4e81c09e730800bbf23bfdbe5e9e6bfaedc59d80fbf62087fa43c27d.cairo" + }, + "parent_location": [ + { + "end_col": 15, + "end_line": 60, + "input_file": { + "filename": "src/utils/ERC20.cairo" + }, + "start_col": 6, + "start_line": 60 + }, + "While constructing the external wrapper for:" + ], + "start_col": 63, + "start_line": 1 + }, + "While expanding the reference 'retdata' in:" + ], + "start_col": 6, + "start_line": 60 + }, + "While constructing the external wrapper for:" + ], + "start_col": 37, + "start_line": 2 + } + }, + "1337": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.balanceOf" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 72, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/balanceOf/da17921a4e81c09e730800bbf23bfdbe5e9e6bfaedc59d80fbf62087fa43c27d.cairo" + }, + "parent_location": [ + { + "end_col": 15, + "end_line": 60, + "input_file": { + "filename": "src/utils/ERC20.cairo" + }, + "start_col": 6, + "start_line": 60 + }, + "While constructing the external wrapper for:" + ], + "start_col": 1, + "start_line": 1 + } + }, + "1338": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.allowance" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 34, + "end_line": 69, + "input_file": { + "filename": "src/utils/ERC20.cairo" + }, + "parent_location": [ + { + "end_col": 38, + "end_line": 104, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc20/library.cairo" + }, + "parent_location": [ + { + "end_col": 79, + "end_line": 72, + "input_file": { + "filename": "src/utils/ERC20.cairo" + }, + "start_col": 32, + "start_line": 72 + }, + "While trying to retrieve the implicit argument 'syscall_ptr' in:" + ], + "start_col": 20, + "start_line": 104 + }, + "While expanding the reference 'syscall_ptr' in:" + ], + "start_col": 16, + "start_line": 69 + } + }, + "1339": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.allowance" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 62, + "end_line": 69, + "input_file": { + "filename": "src/utils/ERC20.cairo" + }, + "parent_location": [ + { + "end_col": 66, + "end_line": 104, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc20/library.cairo" + }, + "parent_location": [ + { + "end_col": 79, + "end_line": 72, + "input_file": { + "filename": "src/utils/ERC20.cairo" + }, + "start_col": 32, + "start_line": 72 + }, + "While trying to retrieve the implicit argument 'pedersen_ptr' in:" + ], + "start_col": 40, + "start_line": 104 + }, + "While expanding the reference 'pedersen_ptr' in:" + ], + "start_col": 36, + "start_line": 69 + } + }, + "1340": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.allowance" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 79, + "end_line": 69, + "input_file": { + "filename": "src/utils/ERC20.cairo" + }, + "parent_location": [ + { + "end_col": 83, + "end_line": 104, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc20/library.cairo" + }, + "parent_location": [ + { + "end_col": 79, + "end_line": 72, + "input_file": { + "filename": "src/utils/ERC20.cairo" + }, + "start_col": 32, + "start_line": 72 + }, + "While trying to retrieve the implicit argument 'range_check_ptr' in:" + ], + "start_col": 68, + "start_line": 104 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 64, + "start_line": 69 + } + }, + "1341": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.allowance" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 24, + "end_line": 70, + "input_file": { + "filename": "src/utils/ERC20.cairo" + }, + "parent_location": [ + { + "end_col": 61, + "end_line": 72, + "input_file": { + "filename": "src/utils/ERC20.cairo" + }, + "start_col": 48, + "start_line": 72 + }, + "While expanding the reference 'owner_address' in:" + ], + "start_col": 5, + "start_line": 70 + } + }, + "1342": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.allowance" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 47, + "end_line": 70, + "input_file": { + "filename": "src/utils/ERC20.cairo" + }, + "parent_location": [ + { + "end_col": 78, + "end_line": 72, + "input_file": { + "filename": "src/utils/ERC20.cairo" + }, + "start_col": 63, + "start_line": 72 + }, + "While expanding the reference 'spender_address' in:" + ], + "start_col": 26, + "start_line": 70 + } + }, + "1343": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.allowance" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 79, + "end_line": 72, + "input_file": { + "filename": "src/utils/ERC20.cairo" + }, + "start_col": 32, + "start_line": 72 + } + }, + "1345": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.allowance" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 25, + "end_line": 74, + "input_file": { + "filename": "src/utils/ERC20.cairo" + }, + "start_col": 5, + "start_line": 74 + } + }, + "1346": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.allowance_encode_return" + ], + "flow_tracking_data": null, + "hints": [ + { + "location": { + "end_col": 38, + "end_line": 3, + "input_file": { + "filename": "autogen/starknet/external/return/allowance/1cb7294a6f22e622b9ef012b5a4d2faa6b7630d9f34fee6abcca00d90029b02c.cairo" + }, + "parent_location": [ + { + "end_col": 15, + "end_line": 69, + "input_file": { + "filename": "src/utils/ERC20.cairo" + }, + "start_col": 6, + "start_line": 69 + }, + "While handling return value of" + ], + "start_col": 5, + "start_line": 3 + }, + "n_prefix_newlines": 0 + } + ], + "inst": { + "end_col": 18, + "end_line": 4, + "input_file": { + "filename": "autogen/starknet/external/return/allowance/1cb7294a6f22e622b9ef012b5a4d2faa6b7630d9f34fee6abcca00d90029b02c.cairo" + }, + "parent_location": [ + { + "end_col": 15, + "end_line": 69, + "input_file": { + "filename": "src/utils/ERC20.cairo" + }, + "start_col": 6, + "start_line": 69 + }, + "While handling return value of" + ], + "start_col": 5, + "start_line": 4 + } + }, + "1348": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.allowance_encode_return" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 60, + "end_line": 3, + "input_file": { + "filename": "autogen/starknet/arg_processor/7f5020813ab1b343debcc3300c737c940210993d2fe101134705622a3d36fb93.cairo" + }, + "parent_location": [ + { + "end_col": 25, + "end_line": 71, + "input_file": { + "filename": "src/utils/ERC20.cairo" + }, + "start_col": 7, + "start_line": 71 + }, + "While handling return value 'remaining'" + ], + "start_col": 1, + "start_line": 3 + } + }, + "1349": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.allowance_encode_return" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 60, + "end_line": 4, + "input_file": { + "filename": "autogen/starknet/arg_processor/7f5020813ab1b343debcc3300c737c940210993d2fe101134705622a3d36fb93.cairo" + }, + "parent_location": [ + { + "end_col": 25, + "end_line": 71, + "input_file": { + "filename": "src/utils/ERC20.cairo" + }, + "start_col": 7, + "start_line": 71 + }, + "While handling return value 'remaining'" + ], + "start_col": 1, + "start_line": 4 + } + }, + "1350": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.allowance_encode_return" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 48, + "end_line": 5, + "input_file": { + "filename": "autogen/starknet/arg_processor/7f5020813ab1b343debcc3300c737c940210993d2fe101134705622a3d36fb93.cairo" + }, + "parent_location": [ + { + "end_col": 25, + "end_line": 71, + "input_file": { + "filename": "src/utils/ERC20.cairo" + }, + "parent_location": [ + { + "end_col": 36, + "end_line": 11, + "input_file": { + "filename": "autogen/starknet/external/return/allowance/1cb7294a6f22e622b9ef012b5a4d2faa6b7630d9f34fee6abcca00d90029b02c.cairo" + }, + "parent_location": [ + { + "end_col": 15, + "end_line": 69, + "input_file": { + "filename": "src/utils/ERC20.cairo" + }, + "start_col": 6, + "start_line": 69 + }, + "While handling return value of" + ], + "start_col": 18, + "start_line": 11 + }, + "While expanding the reference '__return_value_ptr' in:" + ], + "start_col": 7, + "start_line": 71 + }, + "While handling return value 'remaining'" + ], + "start_col": 26, + "start_line": 5 + } + }, + "1352": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.allowance_encode_return" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 109, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/return/allowance/1cb7294a6f22e622b9ef012b5a4d2faa6b7630d9f34fee6abcca00d90029b02c.cairo" + }, + "parent_location": [ + { + "end_col": 15, + "end_line": 69, + "input_file": { + "filename": "src/utils/ERC20.cairo" + }, + "parent_location": [ + { + "end_col": 40, + "end_line": 10, + "input_file": { + "filename": "autogen/starknet/external/return/allowance/1cb7294a6f22e622b9ef012b5a4d2faa6b7630d9f34fee6abcca00d90029b02c.cairo" + }, + "parent_location": [ + { + "end_col": 15, + "end_line": 69, + "input_file": { + "filename": "src/utils/ERC20.cairo" + }, + "start_col": 6, + "start_line": 69 + }, + "While handling return value of" + ], + "start_col": 25, + "start_line": 10 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 6, + "start_line": 69 + }, + "While handling return value of" + ], + "start_col": 94, + "start_line": 1 + } + }, + "1353": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.allowance_encode_return" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 63, + "end_line": 11, + "input_file": { + "filename": "autogen/starknet/external/return/allowance/1cb7294a6f22e622b9ef012b5a4d2faa6b7630d9f34fee6abcca00d90029b02c.cairo" + }, + "parent_location": [ + { + "end_col": 15, + "end_line": 69, + "input_file": { + "filename": "src/utils/ERC20.cairo" + }, + "start_col": 6, + "start_line": 69 + }, + "While handling return value of" + ], + "start_col": 18, + "start_line": 11 + } + }, + "1354": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.allowance_encode_return" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 35, + "end_line": 5, + "input_file": { + "filename": "autogen/starknet/external/return/allowance/1cb7294a6f22e622b9ef012b5a4d2faa6b7630d9f34fee6abcca00d90029b02c.cairo" + }, + "parent_location": [ + { + "end_col": 15, + "end_line": 69, + "input_file": { + "filename": "src/utils/ERC20.cairo" + }, + "parent_location": [ + { + "end_col": 38, + "end_line": 12, + "input_file": { + "filename": "autogen/starknet/external/return/allowance/1cb7294a6f22e622b9ef012b5a4d2faa6b7630d9f34fee6abcca00d90029b02c.cairo" + }, + "parent_location": [ + { + "end_col": 15, + "end_line": 69, + "input_file": { + "filename": "src/utils/ERC20.cairo" + }, + "start_col": 6, + "start_line": 69 + }, + "While handling return value of" + ], + "start_col": 14, + "start_line": 12 + }, + "While expanding the reference '__return_value_ptr_start' in:" + ], + "start_col": 6, + "start_line": 69 + }, + "While handling return value of" + ], + "start_col": 11, + "start_line": 5 + } + }, + "1355": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.allowance_encode_return" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 40, + "end_line": 12, + "input_file": { + "filename": "autogen/starknet/external/return/allowance/1cb7294a6f22e622b9ef012b5a4d2faa6b7630d9f34fee6abcca00d90029b02c.cairo" + }, + "parent_location": [ + { + "end_col": 15, + "end_line": 69, + "input_file": { + "filename": "src/utils/ERC20.cairo" + }, + "start_col": 6, + "start_line": 69 + }, + "While handling return value of" + ], + "start_col": 5, + "start_line": 9 + } + }, + "1356": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.allowance" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 40, + "end_line": 2, + "input_file": { + "filename": "autogen/starknet/arg_processor/0c7c9c2f4e4121548e141b583c9a2f54b79c720fd16f884e916a04be7c6f9fa3.cairo" + }, + "parent_location": [ + { + "end_col": 47, + "end_line": 70, + "input_file": { + "filename": "src/utils/ERC20.cairo" + }, + "parent_location": [ + { + "end_col": 45, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/arg_processor/c31620b02d4d706f0542c989b2aadc01b0981d1f6a5933a8fe4937ace3d70d92.cairo" + }, + "parent_location": [ + { + "end_col": 15, + "end_line": 69, + "input_file": { + "filename": "src/utils/ERC20.cairo" + }, + "parent_location": [ + { + "end_col": 57, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/arg_processor/01cba52f8515996bb9d7070bde81ff39281d096d7024a558efcba6e1fd2402cf.cairo" + }, + "parent_location": [ + { + "end_col": 15, + "end_line": 69, + "input_file": { + "filename": "src/utils/ERC20.cairo" + }, + "start_col": 6, + "start_line": 69 + }, + "While handling calldata of" + ], + "start_col": 35, + "start_line": 1 + }, + "While expanding the reference '__calldata_actual_size' in:" + ], + "start_col": 6, + "start_line": 69 + }, + "While handling calldata of" + ], + "start_col": 31, + "start_line": 1 + }, + "While expanding the reference '__calldata_ptr' in:" + ], + "start_col": 26, + "start_line": 70 + }, + "While handling calldata argument 'spender_address'" + ], + "start_col": 22, + "start_line": 2 + } + }, + "1358": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.allowance" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 58, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/arg_processor/01cba52f8515996bb9d7070bde81ff39281d096d7024a558efcba6e1fd2402cf.cairo" + }, + "parent_location": [ + { + "end_col": 15, + "end_line": 69, + "input_file": { + "filename": "src/utils/ERC20.cairo" + }, + "start_col": 6, + "start_line": 69 + }, + "While handling calldata of" + ], + "start_col": 1, + "start_line": 1 + } + }, + "1359": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.allowance" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 64, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/allowance/b2c52ca2d2a8fc8791a983086d8716c5eacd0c3d62934914d2286f84b98ff4cb.cairo" + }, + "parent_location": [ + { + "end_col": 34, + "end_line": 69, + "input_file": { + "filename": "src/utils/ERC20.cairo" + }, + "parent_location": [ + { + "end_col": 55, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/allowance/e7d92c3f4358ceca344e6ac17d1042d1e15117fe8c65aeb7c99d3db20b4e41c1.cairo" + }, + "parent_location": [ + { + "end_col": 15, + "end_line": 69, + "input_file": { + "filename": "src/utils/ERC20.cairo" + }, + "start_col": 6, + "start_line": 69 + }, + "While constructing the external wrapper for:" + ], + "start_col": 44, + "start_line": 1 + }, + "While expanding the reference 'syscall_ptr' in:" + ], + "start_col": 16, + "start_line": 69 + }, + "While constructing the external wrapper for:" + ], + "start_col": 19, + "start_line": 1 + } + }, + "1360": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.allowance" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 110, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/allowance/9684a85e93c782014ca14293edea4eb2502039a5a7b6538ecd39c56faaf12529.cairo" + }, + "parent_location": [ + { + "end_col": 62, + "end_line": 69, + "input_file": { + "filename": "src/utils/ERC20.cairo" + }, + "parent_location": [ + { + "end_col": 82, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/allowance/e7d92c3f4358ceca344e6ac17d1042d1e15117fe8c65aeb7c99d3db20b4e41c1.cairo" + }, + "parent_location": [ + { + "end_col": 15, + "end_line": 69, + "input_file": { + "filename": "src/utils/ERC20.cairo" + }, + "start_col": 6, + "start_line": 69 + }, + "While constructing the external wrapper for:" + ], + "start_col": 70, + "start_line": 1 + }, + "While expanding the reference 'pedersen_ptr' in:" + ], + "start_col": 36, + "start_line": 69 + }, + "While constructing the external wrapper for:" + ], + "start_col": 20, + "start_line": 1 + } + }, + "1361": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.allowance" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 67, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/allowance/741ea357d6336b0bed7bf0472425acd0311d543883b803388880e60a232040c7.cairo" + }, + "parent_location": [ + { + "end_col": 79, + "end_line": 69, + "input_file": { + "filename": "src/utils/ERC20.cairo" + }, + "parent_location": [ + { + "end_col": 115, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/allowance/e7d92c3f4358ceca344e6ac17d1042d1e15117fe8c65aeb7c99d3db20b4e41c1.cairo" + }, + "parent_location": [ + { + "end_col": 15, + "end_line": 69, + "input_file": { + "filename": "src/utils/ERC20.cairo" + }, + "start_col": 6, + "start_line": 69 + }, + "While constructing the external wrapper for:" + ], + "start_col": 100, + "start_line": 1 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 64, + "start_line": 69 + }, + "While constructing the external wrapper for:" + ], + "start_col": 23, + "start_line": 1 + } + }, + "1362": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.allowance" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 52, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/arg_processor/1c4d1192a5b09976e03426fcf40799a7b0ddd1b139ead4adf9bf9c135a89991d.cairo" + }, + "parent_location": [ + { + "end_col": 24, + "end_line": 70, + "input_file": { + "filename": "src/utils/ERC20.cairo" + }, + "parent_location": [ + { + "end_col": 159, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/allowance/e7d92c3f4358ceca344e6ac17d1042d1e15117fe8c65aeb7c99d3db20b4e41c1.cairo" + }, + "parent_location": [ + { + "end_col": 15, + "end_line": 69, + "input_file": { + "filename": "src/utils/ERC20.cairo" + }, + "start_col": 6, + "start_line": 69 + }, + "While constructing the external wrapper for:" + ], + "start_col": 131, + "start_line": 1 + }, + "While expanding the reference '__calldata_arg_owner_address' in:" + ], + "start_col": 5, + "start_line": 70 + }, + "While handling calldata argument 'owner_address'" + ], + "start_col": 36, + "start_line": 1 + } + }, + "1363": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.allowance" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 54, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/arg_processor/0c7c9c2f4e4121548e141b583c9a2f54b79c720fd16f884e916a04be7c6f9fa3.cairo" + }, + "parent_location": [ + { + "end_col": 47, + "end_line": 70, + "input_file": { + "filename": "src/utils/ERC20.cairo" + }, + "parent_location": [ + { + "end_col": 207, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/allowance/e7d92c3f4358ceca344e6ac17d1042d1e15117fe8c65aeb7c99d3db20b4e41c1.cairo" + }, + "parent_location": [ + { + "end_col": 15, + "end_line": 69, + "input_file": { + "filename": "src/utils/ERC20.cairo" + }, + "start_col": 6, + "start_line": 69 + }, + "While constructing the external wrapper for:" + ], + "start_col": 177, + "start_line": 1 + }, + "While expanding the reference '__calldata_arg_spender_address' in:" + ], + "start_col": 26, + "start_line": 70 + }, + "While handling calldata argument 'spender_address'" + ], + "start_col": 38, + "start_line": 1 + } + }, + "1364": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.allowance" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 15, + "end_line": 69, + "input_file": { + "filename": "src/utils/ERC20.cairo" + }, + "start_col": 6, + "start_line": 69 + } + }, + "1366": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.allowance" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 115, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/allowance/e7d92c3f4358ceca344e6ac17d1042d1e15117fe8c65aeb7c99d3db20b4e41c1.cairo" + }, + "parent_location": [ + { + "end_col": 15, + "end_line": 69, + "input_file": { + "filename": "src/utils/ERC20.cairo" + }, + "parent_location": [ + { + "end_col": 98, + "end_line": 2, + "input_file": { + "filename": "autogen/starknet/external/allowance/e7d92c3f4358ceca344e6ac17d1042d1e15117fe8c65aeb7c99d3db20b4e41c1.cairo" + }, + "parent_location": [ + { + "end_col": 15, + "end_line": 69, + "input_file": { + "filename": "src/utils/ERC20.cairo" + }, + "start_col": 6, + "start_line": 69 + }, + "While constructing the external wrapper for:" + ], + "start_col": 83, + "start_line": 2 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 6, + "start_line": 69 + }, + "While constructing the external wrapper for:" + ], + "start_col": 100, + "start_line": 1 + } + }, + "1367": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.allowance" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 99, + "end_line": 2, + "input_file": { + "filename": "autogen/starknet/external/allowance/e7d92c3f4358ceca344e6ac17d1042d1e15117fe8c65aeb7c99d3db20b4e41c1.cairo" + }, + "parent_location": [ + { + "end_col": 15, + "end_line": 69, + "input_file": { + "filename": "src/utils/ERC20.cairo" + }, + "start_col": 6, + "start_line": 69 + }, + "While constructing the external wrapper for:" + ], + "start_col": 48, + "start_line": 2 + } + }, + "1369": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.allowance" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 55, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/allowance/e7d92c3f4358ceca344e6ac17d1042d1e15117fe8c65aeb7c99d3db20b4e41c1.cairo" + }, + "parent_location": [ + { + "end_col": 15, + "end_line": 69, + "input_file": { + "filename": "src/utils/ERC20.cairo" + }, + "parent_location": [ + { + "end_col": 20, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/allowance/da17921a4e81c09e730800bbf23bfdbe5e9e6bfaedc59d80fbf62087fa43c27d.cairo" + }, + "parent_location": [ + { + "end_col": 15, + "end_line": 69, + "input_file": { + "filename": "src/utils/ERC20.cairo" + }, + "start_col": 6, + "start_line": 69 + }, + "While constructing the external wrapper for:" + ], + "start_col": 9, + "start_line": 1 + }, + "While expanding the reference 'syscall_ptr' in:" + ], + "start_col": 6, + "start_line": 69 + }, + "While constructing the external wrapper for:" + ], + "start_col": 44, + "start_line": 1 + } + }, + "1370": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.allowance" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 82, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/allowance/e7d92c3f4358ceca344e6ac17d1042d1e15117fe8c65aeb7c99d3db20b4e41c1.cairo" + }, + "parent_location": [ + { + "end_col": 15, + "end_line": 69, + "input_file": { + "filename": "src/utils/ERC20.cairo" + }, + "parent_location": [ + { + "end_col": 33, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/allowance/da17921a4e81c09e730800bbf23bfdbe5e9e6bfaedc59d80fbf62087fa43c27d.cairo" + }, + "parent_location": [ + { + "end_col": 15, + "end_line": 69, + "input_file": { + "filename": "src/utils/ERC20.cairo" + }, + "start_col": 6, + "start_line": 69 + }, + "While constructing the external wrapper for:" + ], + "start_col": 21, + "start_line": 1 + }, + "While expanding the reference 'pedersen_ptr' in:" + ], + "start_col": 6, + "start_line": 69 + }, + "While constructing the external wrapper for:" + ], + "start_col": 70, + "start_line": 1 + } + }, + "1371": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.allowance" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 21, + "end_line": 2, + "input_file": { + "filename": "autogen/starknet/external/allowance/e7d92c3f4358ceca344e6ac17d1042d1e15117fe8c65aeb7c99d3db20b4e41c1.cairo" + }, + "parent_location": [ + { + "end_col": 15, + "end_line": 69, + "input_file": { + "filename": "src/utils/ERC20.cairo" + }, + "parent_location": [ + { + "end_col": 49, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/allowance/da17921a4e81c09e730800bbf23bfdbe5e9e6bfaedc59d80fbf62087fa43c27d.cairo" + }, + "parent_location": [ + { + "end_col": 15, + "end_line": 69, + "input_file": { + "filename": "src/utils/ERC20.cairo" + }, + "start_col": 6, + "start_line": 69 + }, + "While constructing the external wrapper for:" + ], + "start_col": 34, + "start_line": 1 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 6, + "start_line": 69 + }, + "While constructing the external wrapper for:" + ], + "start_col": 6, + "start_line": 2 + } + }, + "1372": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.allowance" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 35, + "end_line": 2, + "input_file": { + "filename": "autogen/starknet/external/allowance/e7d92c3f4358ceca344e6ac17d1042d1e15117fe8c65aeb7c99d3db20b4e41c1.cairo" + }, + "parent_location": [ + { + "end_col": 15, + "end_line": 69, + "input_file": { + "filename": "src/utils/ERC20.cairo" + }, + "parent_location": [ + { + "end_col": 62, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/allowance/da17921a4e81c09e730800bbf23bfdbe5e9e6bfaedc59d80fbf62087fa43c27d.cairo" + }, + "parent_location": [ + { + "end_col": 15, + "end_line": 69, + "input_file": { + "filename": "src/utils/ERC20.cairo" + }, + "start_col": 6, + "start_line": 69 + }, + "While constructing the external wrapper for:" + ], + "start_col": 50, + "start_line": 1 + }, + "While expanding the reference 'retdata_size' in:" + ], + "start_col": 6, + "start_line": 69 + }, + "While constructing the external wrapper for:" + ], + "start_col": 23, + "start_line": 2 + } + }, + "1373": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.allowance" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 44, + "end_line": 2, + "input_file": { + "filename": "autogen/starknet/external/allowance/e7d92c3f4358ceca344e6ac17d1042d1e15117fe8c65aeb7c99d3db20b4e41c1.cairo" + }, + "parent_location": [ + { + "end_col": 15, + "end_line": 69, + "input_file": { + "filename": "src/utils/ERC20.cairo" + }, + "parent_location": [ + { + "end_col": 70, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/allowance/da17921a4e81c09e730800bbf23bfdbe5e9e6bfaedc59d80fbf62087fa43c27d.cairo" + }, + "parent_location": [ + { + "end_col": 15, + "end_line": 69, + "input_file": { + "filename": "src/utils/ERC20.cairo" + }, + "start_col": 6, + "start_line": 69 + }, + "While constructing the external wrapper for:" + ], + "start_col": 63, + "start_line": 1 + }, + "While expanding the reference 'retdata' in:" + ], + "start_col": 6, + "start_line": 69 + }, + "While constructing the external wrapper for:" + ], + "start_col": 37, + "start_line": 2 + } + }, + "1374": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.allowance" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 72, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/allowance/da17921a4e81c09e730800bbf23bfdbe5e9e6bfaedc59d80fbf62087fa43c27d.cairo" + }, + "parent_location": [ + { + "end_col": 15, + "end_line": 69, + "input_file": { + "filename": "src/utils/ERC20.cairo" + }, + "start_col": 6, + "start_line": 69 + }, + "While constructing the external wrapper for:" + ], + "start_col": 1, + "start_line": 1 + } + }, + "1375": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.get_owner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 34, + "end_line": 78, + "input_file": { + "filename": "src/utils/ERC20.cairo" + }, + "parent_location": [ + { + "end_col": 34, + "end_line": 56, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/access/ownable/library.cairo" + }, + "parent_location": [ + { + "end_col": 42, + "end_line": 81, + "input_file": { + "filename": "src/utils/ERC20.cairo" + }, + "start_col": 27, + "start_line": 81 + }, + "While trying to retrieve the implicit argument 'syscall_ptr' in:" + ], + "start_col": 16, + "start_line": 56 + }, + "While expanding the reference 'syscall_ptr' in:" + ], + "start_col": 16, + "start_line": 78 + } + }, + "1376": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.get_owner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 62, + "end_line": 78, + "input_file": { + "filename": "src/utils/ERC20.cairo" + }, + "parent_location": [ + { + "end_col": 62, + "end_line": 56, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/access/ownable/library.cairo" + }, + "parent_location": [ + { + "end_col": 42, + "end_line": 81, + "input_file": { + "filename": "src/utils/ERC20.cairo" + }, + "start_col": 27, + "start_line": 81 + }, + "While trying to retrieve the implicit argument 'pedersen_ptr' in:" + ], + "start_col": 36, + "start_line": 56 + }, + "While expanding the reference 'pedersen_ptr' in:" + ], + "start_col": 36, + "start_line": 78 + } + }, + "1377": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.get_owner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 79, + "end_line": 78, + "input_file": { + "filename": "src/utils/ERC20.cairo" + }, + "parent_location": [ + { + "end_col": 79, + "end_line": 56, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/access/ownable/library.cairo" + }, + "parent_location": [ + { + "end_col": 42, + "end_line": 81, + "input_file": { + "filename": "src/utils/ERC20.cairo" + }, + "start_col": 27, + "start_line": 81 + }, + "While trying to retrieve the implicit argument 'range_check_ptr' in:" + ], + "start_col": 64, + "start_line": 56 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 64, + "start_line": 78 + } + }, + "1378": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.get_owner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 42, + "end_line": 81, + "input_file": { + "filename": "src/utils/ERC20.cairo" + }, + "start_col": 27, + "start_line": 81 + } + }, + "1380": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.get_owner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 29, + "end_line": 83, + "input_file": { + "filename": "src/utils/ERC20.cairo" + }, + "start_col": 5, + "start_line": 83 + } + }, + "1381": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.get_owner_encode_return" + ], + "flow_tracking_data": null, + "hints": [ + { + "location": { + "end_col": 38, + "end_line": 3, + "input_file": { + "filename": "autogen/starknet/external/return/get_owner/ea89ef518640d4b3e2dae3f51b0396aba7443bc8d3cb4836085f6ecdce4e4b17.cairo" + }, + "parent_location": [ + { + "end_col": 15, + "end_line": 78, + "input_file": { + "filename": "src/utils/ERC20.cairo" + }, + "start_col": 6, + "start_line": 78 + }, + "While handling return value of" + ], + "start_col": 5, + "start_line": 3 + }, + "n_prefix_newlines": 0 + } + ], + "inst": { + "end_col": 18, + "end_line": 4, + "input_file": { + "filename": "autogen/starknet/external/return/get_owner/ea89ef518640d4b3e2dae3f51b0396aba7443bc8d3cb4836085f6ecdce4e4b17.cairo" + }, + "parent_location": [ + { + "end_col": 15, + "end_line": 78, + "input_file": { + "filename": "src/utils/ERC20.cairo" + }, + "start_col": 6, + "start_line": 78 + }, + "While handling return value of" + ], + "start_col": 5, + "start_line": 4 + } + }, + "1383": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.get_owner_encode_return" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 55, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/arg_processor/34abfa5ae20e974d1ec6ec69725107153df53319dc907839ee17a8c237840f4b.cairo" + }, + "parent_location": [ + { + "end_col": 24, + "end_line": 79, + "input_file": { + "filename": "src/utils/ERC20.cairo" + }, + "start_col": 5, + "start_line": 79 + }, + "While handling return value 'owner_address'" + ], + "start_col": 1, + "start_line": 1 + } + }, + "1384": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.get_owner_encode_return" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 48, + "end_line": 2, + "input_file": { + "filename": "autogen/starknet/arg_processor/34abfa5ae20e974d1ec6ec69725107153df53319dc907839ee17a8c237840f4b.cairo" + }, + "parent_location": [ + { + "end_col": 24, + "end_line": 79, + "input_file": { + "filename": "src/utils/ERC20.cairo" + }, + "parent_location": [ + { + "end_col": 36, + "end_line": 11, + "input_file": { + "filename": "autogen/starknet/external/return/get_owner/ea89ef518640d4b3e2dae3f51b0396aba7443bc8d3cb4836085f6ecdce4e4b17.cairo" + }, + "parent_location": [ + { + "end_col": 15, + "end_line": 78, + "input_file": { + "filename": "src/utils/ERC20.cairo" + }, + "start_col": 6, + "start_line": 78 + }, + "While handling return value of" + ], + "start_col": 18, + "start_line": 11 + }, + "While expanding the reference '__return_value_ptr' in:" + ], + "start_col": 5, + "start_line": 79 + }, + "While handling return value 'owner_address'" + ], + "start_col": 26, + "start_line": 2 + } + }, + "1386": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.get_owner_encode_return" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 79, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/return/get_owner/ea89ef518640d4b3e2dae3f51b0396aba7443bc8d3cb4836085f6ecdce4e4b17.cairo" + }, + "parent_location": [ + { + "end_col": 15, + "end_line": 78, + "input_file": { + "filename": "src/utils/ERC20.cairo" + }, + "parent_location": [ + { + "end_col": 40, + "end_line": 10, + "input_file": { + "filename": "autogen/starknet/external/return/get_owner/ea89ef518640d4b3e2dae3f51b0396aba7443bc8d3cb4836085f6ecdce4e4b17.cairo" + }, + "parent_location": [ + { + "end_col": 15, + "end_line": 78, + "input_file": { + "filename": "src/utils/ERC20.cairo" + }, + "start_col": 6, + "start_line": 78 + }, + "While handling return value of" + ], + "start_col": 25, + "start_line": 10 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 6, + "start_line": 78 + }, + "While handling return value of" + ], + "start_col": 64, + "start_line": 1 + } + }, + "1387": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.get_owner_encode_return" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 63, + "end_line": 11, + "input_file": { + "filename": "autogen/starknet/external/return/get_owner/ea89ef518640d4b3e2dae3f51b0396aba7443bc8d3cb4836085f6ecdce4e4b17.cairo" + }, + "parent_location": [ + { + "end_col": 15, + "end_line": 78, + "input_file": { + "filename": "src/utils/ERC20.cairo" + }, + "start_col": 6, + "start_line": 78 + }, + "While handling return value of" + ], + "start_col": 18, + "start_line": 11 + } + }, + "1388": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.get_owner_encode_return" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 35, + "end_line": 5, + "input_file": { + "filename": "autogen/starknet/external/return/get_owner/ea89ef518640d4b3e2dae3f51b0396aba7443bc8d3cb4836085f6ecdce4e4b17.cairo" + }, + "parent_location": [ + { + "end_col": 15, + "end_line": 78, + "input_file": { + "filename": "src/utils/ERC20.cairo" + }, + "parent_location": [ + { + "end_col": 38, + "end_line": 12, + "input_file": { + "filename": "autogen/starknet/external/return/get_owner/ea89ef518640d4b3e2dae3f51b0396aba7443bc8d3cb4836085f6ecdce4e4b17.cairo" + }, + "parent_location": [ + { + "end_col": 15, + "end_line": 78, + "input_file": { + "filename": "src/utils/ERC20.cairo" + }, + "start_col": 6, + "start_line": 78 + }, + "While handling return value of" + ], + "start_col": 14, + "start_line": 12 + }, + "While expanding the reference '__return_value_ptr_start' in:" + ], + "start_col": 6, + "start_line": 78 + }, + "While handling return value of" + ], + "start_col": 11, + "start_line": 5 + } + }, + "1389": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.get_owner_encode_return" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 40, + "end_line": 12, + "input_file": { + "filename": "autogen/starknet/external/return/get_owner/ea89ef518640d4b3e2dae3f51b0396aba7443bc8d3cb4836085f6ecdce4e4b17.cairo" + }, + "parent_location": [ + { + "end_col": 15, + "end_line": 78, + "input_file": { + "filename": "src/utils/ERC20.cairo" + }, + "start_col": 6, + "start_line": 78 + }, + "While handling return value of" + ], + "start_col": 5, + "start_line": 9 + } + }, + "1390": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.get_owner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 58, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/arg_processor/01cba52f8515996bb9d7070bde81ff39281d096d7024a558efcba6e1fd2402cf.cairo" + }, + "parent_location": [ + { + "end_col": 15, + "end_line": 78, + "input_file": { + "filename": "src/utils/ERC20.cairo" + }, + "start_col": 6, + "start_line": 78 + }, + "While handling calldata of" + ], + "start_col": 1, + "start_line": 1 + } + }, + "1391": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.get_owner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 64, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/get_owner/b2c52ca2d2a8fc8791a983086d8716c5eacd0c3d62934914d2286f84b98ff4cb.cairo" + }, + "parent_location": [ + { + "end_col": 34, + "end_line": 78, + "input_file": { + "filename": "src/utils/ERC20.cairo" + }, + "parent_location": [ + { + "end_col": 55, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/get_owner/145a752dd57c7b3d95eb7d5ff54b849561a155a54eb2444504d6ebd871cec0c0.cairo" + }, + "parent_location": [ + { + "end_col": 15, + "end_line": 78, + "input_file": { + "filename": "src/utils/ERC20.cairo" + }, + "start_col": 6, + "start_line": 78 + }, + "While constructing the external wrapper for:" + ], + "start_col": 44, + "start_line": 1 + }, + "While expanding the reference 'syscall_ptr' in:" + ], + "start_col": 16, + "start_line": 78 + }, + "While constructing the external wrapper for:" + ], + "start_col": 19, + "start_line": 1 + } + }, + "1392": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.get_owner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 110, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/get_owner/9684a85e93c782014ca14293edea4eb2502039a5a7b6538ecd39c56faaf12529.cairo" + }, + "parent_location": [ + { + "end_col": 62, + "end_line": 78, + "input_file": { + "filename": "src/utils/ERC20.cairo" + }, + "parent_location": [ + { + "end_col": 82, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/get_owner/145a752dd57c7b3d95eb7d5ff54b849561a155a54eb2444504d6ebd871cec0c0.cairo" + }, + "parent_location": [ + { + "end_col": 15, + "end_line": 78, + "input_file": { + "filename": "src/utils/ERC20.cairo" + }, + "start_col": 6, + "start_line": 78 + }, + "While constructing the external wrapper for:" + ], + "start_col": 70, + "start_line": 1 + }, + "While expanding the reference 'pedersen_ptr' in:" + ], + "start_col": 36, + "start_line": 78 + }, + "While constructing the external wrapper for:" + ], + "start_col": 20, + "start_line": 1 + } + }, + "1393": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.get_owner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 67, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/get_owner/741ea357d6336b0bed7bf0472425acd0311d543883b803388880e60a232040c7.cairo" + }, + "parent_location": [ + { + "end_col": 79, + "end_line": 78, + "input_file": { + "filename": "src/utils/ERC20.cairo" + }, + "parent_location": [ + { + "end_col": 115, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/get_owner/145a752dd57c7b3d95eb7d5ff54b849561a155a54eb2444504d6ebd871cec0c0.cairo" + }, + "parent_location": [ + { + "end_col": 15, + "end_line": 78, + "input_file": { + "filename": "src/utils/ERC20.cairo" + }, + "start_col": 6, + "start_line": 78 + }, + "While constructing the external wrapper for:" + ], + "start_col": 100, + "start_line": 1 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 64, + "start_line": 78 + }, + "While constructing the external wrapper for:" + ], + "start_col": 23, + "start_line": 1 + } + }, + "1394": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.get_owner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 15, + "end_line": 78, + "input_file": { + "filename": "src/utils/ERC20.cairo" + }, + "start_col": 6, + "start_line": 78 + } + }, + "1396": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.get_owner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 115, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/get_owner/145a752dd57c7b3d95eb7d5ff54b849561a155a54eb2444504d6ebd871cec0c0.cairo" + }, + "parent_location": [ + { + "end_col": 15, + "end_line": 78, + "input_file": { + "filename": "src/utils/ERC20.cairo" + }, + "parent_location": [ + { + "end_col": 98, + "end_line": 2, + "input_file": { + "filename": "autogen/starknet/external/get_owner/145a752dd57c7b3d95eb7d5ff54b849561a155a54eb2444504d6ebd871cec0c0.cairo" + }, + "parent_location": [ + { + "end_col": 15, + "end_line": 78, + "input_file": { + "filename": "src/utils/ERC20.cairo" + }, + "start_col": 6, + "start_line": 78 + }, + "While constructing the external wrapper for:" + ], + "start_col": 83, + "start_line": 2 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 6, + "start_line": 78 + }, + "While constructing the external wrapper for:" + ], + "start_col": 100, + "start_line": 1 + } + }, + "1397": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.get_owner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 99, + "end_line": 2, + "input_file": { + "filename": "autogen/starknet/external/get_owner/145a752dd57c7b3d95eb7d5ff54b849561a155a54eb2444504d6ebd871cec0c0.cairo" + }, + "parent_location": [ + { + "end_col": 15, + "end_line": 78, + "input_file": { + "filename": "src/utils/ERC20.cairo" + }, + "start_col": 6, + "start_line": 78 + }, + "While constructing the external wrapper for:" + ], + "start_col": 48, + "start_line": 2 + } + }, + "1399": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.get_owner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 55, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/get_owner/145a752dd57c7b3d95eb7d5ff54b849561a155a54eb2444504d6ebd871cec0c0.cairo" + }, + "parent_location": [ + { + "end_col": 15, + "end_line": 78, + "input_file": { + "filename": "src/utils/ERC20.cairo" + }, + "parent_location": [ + { + "end_col": 20, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/get_owner/da17921a4e81c09e730800bbf23bfdbe5e9e6bfaedc59d80fbf62087fa43c27d.cairo" + }, + "parent_location": [ + { + "end_col": 15, + "end_line": 78, + "input_file": { + "filename": "src/utils/ERC20.cairo" + }, + "start_col": 6, + "start_line": 78 + }, + "While constructing the external wrapper for:" + ], + "start_col": 9, + "start_line": 1 + }, + "While expanding the reference 'syscall_ptr' in:" + ], + "start_col": 6, + "start_line": 78 + }, + "While constructing the external wrapper for:" + ], + "start_col": 44, + "start_line": 1 + } + }, + "1400": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.get_owner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 82, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/get_owner/145a752dd57c7b3d95eb7d5ff54b849561a155a54eb2444504d6ebd871cec0c0.cairo" + }, + "parent_location": [ + { + "end_col": 15, + "end_line": 78, + "input_file": { + "filename": "src/utils/ERC20.cairo" + }, + "parent_location": [ + { + "end_col": 33, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/get_owner/da17921a4e81c09e730800bbf23bfdbe5e9e6bfaedc59d80fbf62087fa43c27d.cairo" + }, + "parent_location": [ + { + "end_col": 15, + "end_line": 78, + "input_file": { + "filename": "src/utils/ERC20.cairo" + }, + "start_col": 6, + "start_line": 78 + }, + "While constructing the external wrapper for:" + ], + "start_col": 21, + "start_line": 1 + }, + "While expanding the reference 'pedersen_ptr' in:" + ], + "start_col": 6, + "start_line": 78 + }, + "While constructing the external wrapper for:" + ], + "start_col": 70, + "start_line": 1 + } + }, + "1401": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.get_owner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 21, + "end_line": 2, + "input_file": { + "filename": "autogen/starknet/external/get_owner/145a752dd57c7b3d95eb7d5ff54b849561a155a54eb2444504d6ebd871cec0c0.cairo" + }, + "parent_location": [ + { + "end_col": 15, + "end_line": 78, + "input_file": { + "filename": "src/utils/ERC20.cairo" + }, + "parent_location": [ + { + "end_col": 49, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/get_owner/da17921a4e81c09e730800bbf23bfdbe5e9e6bfaedc59d80fbf62087fa43c27d.cairo" + }, + "parent_location": [ + { + "end_col": 15, + "end_line": 78, + "input_file": { + "filename": "src/utils/ERC20.cairo" + }, + "start_col": 6, + "start_line": 78 + }, + "While constructing the external wrapper for:" + ], + "start_col": 34, + "start_line": 1 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 6, + "start_line": 78 + }, + "While constructing the external wrapper for:" + ], + "start_col": 6, + "start_line": 2 + } + }, + "1402": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.get_owner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 35, + "end_line": 2, + "input_file": { + "filename": "autogen/starknet/external/get_owner/145a752dd57c7b3d95eb7d5ff54b849561a155a54eb2444504d6ebd871cec0c0.cairo" + }, + "parent_location": [ + { + "end_col": 15, + "end_line": 78, + "input_file": { + "filename": "src/utils/ERC20.cairo" + }, + "parent_location": [ + { + "end_col": 62, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/get_owner/da17921a4e81c09e730800bbf23bfdbe5e9e6bfaedc59d80fbf62087fa43c27d.cairo" + }, + "parent_location": [ + { + "end_col": 15, + "end_line": 78, + "input_file": { + "filename": "src/utils/ERC20.cairo" + }, + "start_col": 6, + "start_line": 78 + }, + "While constructing the external wrapper for:" + ], + "start_col": 50, + "start_line": 1 + }, + "While expanding the reference 'retdata_size' in:" + ], + "start_col": 6, + "start_line": 78 + }, + "While constructing the external wrapper for:" + ], + "start_col": 23, + "start_line": 2 + } + }, + "1403": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.get_owner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 44, + "end_line": 2, + "input_file": { + "filename": "autogen/starknet/external/get_owner/145a752dd57c7b3d95eb7d5ff54b849561a155a54eb2444504d6ebd871cec0c0.cairo" + }, + "parent_location": [ + { + "end_col": 15, + "end_line": 78, + "input_file": { + "filename": "src/utils/ERC20.cairo" + }, + "parent_location": [ + { + "end_col": 70, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/get_owner/da17921a4e81c09e730800bbf23bfdbe5e9e6bfaedc59d80fbf62087fa43c27d.cairo" + }, + "parent_location": [ + { + "end_col": 15, + "end_line": 78, + "input_file": { + "filename": "src/utils/ERC20.cairo" + }, + "start_col": 6, + "start_line": 78 + }, + "While constructing the external wrapper for:" + ], + "start_col": 63, + "start_line": 1 + }, + "While expanding the reference 'retdata' in:" + ], + "start_col": 6, + "start_line": 78 + }, + "While constructing the external wrapper for:" + ], + "start_col": 37, + "start_line": 2 + } + }, + "1404": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.get_owner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 72, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/get_owner/da17921a4e81c09e730800bbf23bfdbe5e9e6bfaedc59d80fbf62087fa43c27d.cairo" + }, + "parent_location": [ + { + "end_col": 15, + "end_line": 78, + "input_file": { + "filename": "src/utils/ERC20.cairo" + }, + "start_col": 6, + "start_line": 78 + }, + "While constructing the external wrapper for:" + ], + "start_col": 1, + "start_line": 1 + } + }, + "1405": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.transfer" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 33, + "end_line": 91, + "input_file": { + "filename": "src/utils/ERC20.cairo" + }, + "parent_location": [ + { + "end_col": 37, + "end_line": 110, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc20/library.cairo" + }, + "parent_location": [ + { + "end_col": 46, + "end_line": 94, + "input_file": { + "filename": "src/utils/ERC20.cairo" + }, + "start_col": 5, + "start_line": 94 + }, + "While trying to retrieve the implicit argument 'syscall_ptr' in:" + ], + "start_col": 19, + "start_line": 110 + }, + "While expanding the reference 'syscall_ptr' in:" + ], + "start_col": 15, + "start_line": 91 + } + }, + "1406": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.transfer" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 61, + "end_line": 91, + "input_file": { + "filename": "src/utils/ERC20.cairo" + }, + "parent_location": [ + { + "end_col": 65, + "end_line": 110, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc20/library.cairo" + }, + "parent_location": [ + { + "end_col": 46, + "end_line": 94, + "input_file": { + "filename": "src/utils/ERC20.cairo" + }, + "start_col": 5, + "start_line": 94 + }, + "While trying to retrieve the implicit argument 'pedersen_ptr' in:" + ], + "start_col": 39, + "start_line": 110 + }, + "While expanding the reference 'pedersen_ptr' in:" + ], + "start_col": 35, + "start_line": 91 + } + }, + "1407": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.transfer" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 78, + "end_line": 91, + "input_file": { + "filename": "src/utils/ERC20.cairo" + }, + "parent_location": [ + { + "end_col": 82, + "end_line": 110, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc20/library.cairo" + }, + "parent_location": [ + { + "end_col": 46, + "end_line": 94, + "input_file": { + "filename": "src/utils/ERC20.cairo" + }, + "start_col": 5, + "start_line": 94 + }, + "While trying to retrieve the implicit argument 'range_check_ptr' in:" + ], + "start_col": 67, + "start_line": 110 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 63, + "start_line": 91 + } + }, + "1408": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.transfer" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 28, + "end_line": 92, + "input_file": { + "filename": "src/utils/ERC20.cairo" + }, + "parent_location": [ + { + "end_col": 37, + "end_line": 94, + "input_file": { + "filename": "src/utils/ERC20.cairo" + }, + "start_col": 20, + "start_line": 94 + }, + "While expanding the reference 'recipient_address' in:" + ], + "start_col": 5, + "start_line": 92 + } + }, + "1409": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.transfer" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 45, + "end_line": 92, + "input_file": { + "filename": "src/utils/ERC20.cairo" + }, + "parent_location": [ + { + "end_col": 45, + "end_line": 94, + "input_file": { + "filename": "src/utils/ERC20.cairo" + }, + "start_col": 39, + "start_line": 94 + }, + "While expanding the reference 'amount' in:" + ], + "start_col": 30, + "start_line": 92 + } + }, + "1410": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.transfer" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 45, + "end_line": 92, + "input_file": { + "filename": "src/utils/ERC20.cairo" + }, + "parent_location": [ + { + "end_col": 45, + "end_line": 94, + "input_file": { + "filename": "src/utils/ERC20.cairo" + }, + "start_col": 39, + "start_line": 94 + }, + "While expanding the reference 'amount' in:" + ], + "start_col": 30, + "start_line": 92 + } + }, + "1411": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.transfer" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 46, + "end_line": 94, + "input_file": { + "filename": "src/utils/ERC20.cairo" + }, + "start_col": 5, + "start_line": 94 + } + }, + "1413": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.transfer" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 37, + "end_line": 110, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc20/library.cairo" + }, + "parent_location": [ + { + "end_col": 46, + "end_line": 94, + "input_file": { + "filename": "src/utils/ERC20.cairo" + }, + "parent_location": [ + { + "end_col": 33, + "end_line": 91, + "input_file": { + "filename": "src/utils/ERC20.cairo" + }, + "parent_location": [ + { + "end_col": 20, + "end_line": 96, + "input_file": { + "filename": "src/utils/ERC20.cairo" + }, + "start_col": 5, + "start_line": 96 + }, + "While trying to retrieve the implicit argument 'syscall_ptr' in:" + ], + "start_col": 15, + "start_line": 91 + }, + "While expanding the reference 'syscall_ptr' in:" + ], + "start_col": 5, + "start_line": 94 + }, + "While trying to update the implicit return value 'syscall_ptr' in:" + ], + "start_col": 19, + "start_line": 110 + } + }, + "1414": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.transfer" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 65, + "end_line": 110, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc20/library.cairo" + }, + "parent_location": [ + { + "end_col": 46, + "end_line": 94, + "input_file": { + "filename": "src/utils/ERC20.cairo" + }, + "parent_location": [ + { + "end_col": 61, + "end_line": 91, + "input_file": { + "filename": "src/utils/ERC20.cairo" + }, + "parent_location": [ + { + "end_col": 20, + "end_line": 96, + "input_file": { + "filename": "src/utils/ERC20.cairo" + }, + "start_col": 5, + "start_line": 96 + }, + "While trying to retrieve the implicit argument 'pedersen_ptr' in:" + ], + "start_col": 35, + "start_line": 91 + }, + "While expanding the reference 'pedersen_ptr' in:" + ], + "start_col": 5, + "start_line": 94 + }, + "While trying to update the implicit return value 'pedersen_ptr' in:" + ], + "start_col": 39, + "start_line": 110 + } + }, + "1415": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.transfer" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 82, + "end_line": 110, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc20/library.cairo" + }, + "parent_location": [ + { + "end_col": 46, + "end_line": 94, + "input_file": { + "filename": "src/utils/ERC20.cairo" + }, + "parent_location": [ + { + "end_col": 78, + "end_line": 91, + "input_file": { + "filename": "src/utils/ERC20.cairo" + }, + "parent_location": [ + { + "end_col": 20, + "end_line": 96, + "input_file": { + "filename": "src/utils/ERC20.cairo" + }, + "start_col": 5, + "start_line": 96 + }, + "While trying to retrieve the implicit argument 'range_check_ptr' in:" + ], + "start_col": 63, + "start_line": 91 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 5, + "start_line": 94 + }, + "While trying to update the implicit return value 'range_check_ptr' in:" + ], + "start_col": 67, + "start_line": 110 + } + }, + "1416": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.transfer" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 17, + "end_line": 96, + "input_file": { + "filename": "src/utils/ERC20.cairo" + }, + "start_col": 13, + "start_line": 96 + } + }, + "1418": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.transfer" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 20, + "end_line": 96, + "input_file": { + "filename": "src/utils/ERC20.cairo" + }, + "start_col": 5, + "start_line": 96 + } + }, + "1419": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.transfer_encode_return" + ], + "flow_tracking_data": null, + "hints": [ + { + "location": { + "end_col": 38, + "end_line": 3, + "input_file": { + "filename": "autogen/starknet/external/return/transfer/63591275573bc8b26ecb0c55e4fb63e8afcdbb2de92a6d653dea4d28256a7673.cairo" + }, + "parent_location": [ + { + "end_col": 14, + "end_line": 91, + "input_file": { + "filename": "src/utils/ERC20.cairo" + }, + "start_col": 6, + "start_line": 91 + }, + "While handling return value of" + ], + "start_col": 5, + "start_line": 3 + }, + "n_prefix_newlines": 0 + } + ], + "inst": { + "end_col": 18, + "end_line": 4, + "input_file": { + "filename": "autogen/starknet/external/return/transfer/63591275573bc8b26ecb0c55e4fb63e8afcdbb2de92a6d653dea4d28256a7673.cairo" + }, + "parent_location": [ + { + "end_col": 14, + "end_line": 91, + "input_file": { + "filename": "src/utils/ERC20.cairo" + }, + "start_col": 6, + "start_line": 91 + }, + "While handling return value of" + ], + "start_col": 5, + "start_line": 4 + } + }, + "1421": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.transfer_encode_return" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 49, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/arg_processor/5c10028f67364b153272aa9b4cbc0fb78920a40fab821ac7257b0069e0773b49.cairo" + }, + "parent_location": [ + { + "end_col": 20, + "end_line": 93, + "input_file": { + "filename": "src/utils/ERC20.cairo" + }, + "start_col": 7, + "start_line": 93 + }, + "While handling return value 'success'" + ], + "start_col": 1, + "start_line": 1 + } + }, + "1422": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.transfer_encode_return" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 48, + "end_line": 2, + "input_file": { + "filename": "autogen/starknet/arg_processor/5c10028f67364b153272aa9b4cbc0fb78920a40fab821ac7257b0069e0773b49.cairo" + }, + "parent_location": [ + { + "end_col": 20, + "end_line": 93, + "input_file": { + "filename": "src/utils/ERC20.cairo" + }, + "parent_location": [ + { + "end_col": 36, + "end_line": 11, + "input_file": { + "filename": "autogen/starknet/external/return/transfer/63591275573bc8b26ecb0c55e4fb63e8afcdbb2de92a6d653dea4d28256a7673.cairo" + }, + "parent_location": [ + { + "end_col": 14, + "end_line": 91, + "input_file": { + "filename": "src/utils/ERC20.cairo" + }, + "start_col": 6, + "start_line": 91 + }, + "While handling return value of" + ], + "start_col": 18, + "start_line": 11 + }, + "While expanding the reference '__return_value_ptr' in:" + ], + "start_col": 7, + "start_line": 93 + }, + "While handling return value 'success'" + ], + "start_col": 26, + "start_line": 2 + } + }, + "1424": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.transfer_encode_return" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 72, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/return/transfer/63591275573bc8b26ecb0c55e4fb63e8afcdbb2de92a6d653dea4d28256a7673.cairo" + }, + "parent_location": [ + { + "end_col": 14, + "end_line": 91, + "input_file": { + "filename": "src/utils/ERC20.cairo" + }, + "parent_location": [ + { + "end_col": 40, + "end_line": 10, + "input_file": { + "filename": "autogen/starknet/external/return/transfer/63591275573bc8b26ecb0c55e4fb63e8afcdbb2de92a6d653dea4d28256a7673.cairo" + }, + "parent_location": [ + { + "end_col": 14, + "end_line": 91, + "input_file": { + "filename": "src/utils/ERC20.cairo" + }, + "start_col": 6, + "start_line": 91 + }, + "While handling return value of" + ], + "start_col": 25, + "start_line": 10 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 6, + "start_line": 91 + }, + "While handling return value of" + ], + "start_col": 57, + "start_line": 1 + } + }, + "1425": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.transfer_encode_return" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 63, + "end_line": 11, + "input_file": { + "filename": "autogen/starknet/external/return/transfer/63591275573bc8b26ecb0c55e4fb63e8afcdbb2de92a6d653dea4d28256a7673.cairo" + }, + "parent_location": [ + { + "end_col": 14, + "end_line": 91, + "input_file": { + "filename": "src/utils/ERC20.cairo" + }, + "start_col": 6, + "start_line": 91 + }, + "While handling return value of" + ], + "start_col": 18, + "start_line": 11 + } + }, + "1426": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.transfer_encode_return" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 35, + "end_line": 5, + "input_file": { + "filename": "autogen/starknet/external/return/transfer/63591275573bc8b26ecb0c55e4fb63e8afcdbb2de92a6d653dea4d28256a7673.cairo" + }, + "parent_location": [ + { + "end_col": 14, + "end_line": 91, + "input_file": { + "filename": "src/utils/ERC20.cairo" + }, + "parent_location": [ + { + "end_col": 38, + "end_line": 12, + "input_file": { + "filename": "autogen/starknet/external/return/transfer/63591275573bc8b26ecb0c55e4fb63e8afcdbb2de92a6d653dea4d28256a7673.cairo" + }, + "parent_location": [ + { + "end_col": 14, + "end_line": 91, + "input_file": { + "filename": "src/utils/ERC20.cairo" + }, + "start_col": 6, + "start_line": 91 + }, + "While handling return value of" + ], + "start_col": 14, + "start_line": 12 + }, + "While expanding the reference '__return_value_ptr_start' in:" + ], + "start_col": 6, + "start_line": 91 + }, + "While handling return value of" + ], + "start_col": 11, + "start_line": 5 + } + }, + "1427": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.transfer_encode_return" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 40, + "end_line": 12, + "input_file": { + "filename": "autogen/starknet/external/return/transfer/63591275573bc8b26ecb0c55e4fb63e8afcdbb2de92a6d653dea4d28256a7673.cairo" + }, + "parent_location": [ + { + "end_col": 14, + "end_line": 91, + "input_file": { + "filename": "src/utils/ERC20.cairo" + }, + "start_col": 6, + "start_line": 91 + }, + "While handling return value of" + ], + "start_col": 5, + "start_line": 9 + } + }, + "1428": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.transfer" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 40, + "end_line": 3, + "input_file": { + "filename": "autogen/starknet/arg_processor/98feb0f4c88833fb7f82ddd66d06f84d8ffb64f877c6f94e214b61af32d58c29.cairo" + }, + "parent_location": [ + { + "end_col": 45, + "end_line": 92, + "input_file": { + "filename": "src/utils/ERC20.cairo" + }, + "parent_location": [ + { + "end_col": 45, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/arg_processor/c31620b02d4d706f0542c989b2aadc01b0981d1f6a5933a8fe4937ace3d70d92.cairo" + }, + "parent_location": [ + { + "end_col": 14, + "end_line": 91, + "input_file": { + "filename": "src/utils/ERC20.cairo" + }, + "parent_location": [ + { + "end_col": 57, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/arg_processor/01cba52f8515996bb9d7070bde81ff39281d096d7024a558efcba6e1fd2402cf.cairo" + }, + "parent_location": [ + { + "end_col": 14, + "end_line": 91, + "input_file": { + "filename": "src/utils/ERC20.cairo" + }, + "start_col": 6, + "start_line": 91 + }, + "While handling calldata of" + ], + "start_col": 35, + "start_line": 1 + }, + "While expanding the reference '__calldata_actual_size' in:" + ], + "start_col": 6, + "start_line": 91 + }, + "While handling calldata of" + ], + "start_col": 31, + "start_line": 1 + }, + "While expanding the reference '__calldata_ptr' in:" + ], + "start_col": 30, + "start_line": 92 + }, + "While handling calldata argument 'amount'" + ], + "start_col": 22, + "start_line": 3 + } + }, + "1430": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.transfer" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 58, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/arg_processor/01cba52f8515996bb9d7070bde81ff39281d096d7024a558efcba6e1fd2402cf.cairo" + }, + "parent_location": [ + { + "end_col": 14, + "end_line": 91, + "input_file": { + "filename": "src/utils/ERC20.cairo" + }, + "start_col": 6, + "start_line": 91 + }, + "While handling calldata of" + ], + "start_col": 1, + "start_line": 1 + } + }, + "1431": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.transfer" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 64, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/transfer/b2c52ca2d2a8fc8791a983086d8716c5eacd0c3d62934914d2286f84b98ff4cb.cairo" + }, + "parent_location": [ + { + "end_col": 33, + "end_line": 91, + "input_file": { + "filename": "src/utils/ERC20.cairo" + }, + "parent_location": [ + { + "end_col": 55, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/transfer/2da85ae0239cf78b51e06096105fe4d643954f67ecdb81df1971fc55b42b7a53.cairo" + }, + "parent_location": [ + { + "end_col": 14, + "end_line": 91, + "input_file": { + "filename": "src/utils/ERC20.cairo" + }, + "start_col": 6, + "start_line": 91 + }, + "While constructing the external wrapper for:" + ], + "start_col": 44, + "start_line": 1 + }, + "While expanding the reference 'syscall_ptr' in:" + ], + "start_col": 15, + "start_line": 91 + }, + "While constructing the external wrapper for:" + ], + "start_col": 19, + "start_line": 1 + } + }, + "1432": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.transfer" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 110, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/transfer/9684a85e93c782014ca14293edea4eb2502039a5a7b6538ecd39c56faaf12529.cairo" + }, + "parent_location": [ + { + "end_col": 61, + "end_line": 91, + "input_file": { + "filename": "src/utils/ERC20.cairo" + }, + "parent_location": [ + { + "end_col": 82, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/transfer/2da85ae0239cf78b51e06096105fe4d643954f67ecdb81df1971fc55b42b7a53.cairo" + }, + "parent_location": [ + { + "end_col": 14, + "end_line": 91, + "input_file": { + "filename": "src/utils/ERC20.cairo" + }, + "start_col": 6, + "start_line": 91 + }, + "While constructing the external wrapper for:" + ], + "start_col": 70, + "start_line": 1 + }, + "While expanding the reference 'pedersen_ptr' in:" + ], + "start_col": 35, + "start_line": 91 + }, + "While constructing the external wrapper for:" + ], + "start_col": 20, + "start_line": 1 + } + }, + "1433": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.transfer" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 67, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/transfer/741ea357d6336b0bed7bf0472425acd0311d543883b803388880e60a232040c7.cairo" + }, + "parent_location": [ + { + "end_col": 78, + "end_line": 91, + "input_file": { + "filename": "src/utils/ERC20.cairo" + }, + "parent_location": [ + { + "end_col": 115, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/transfer/2da85ae0239cf78b51e06096105fe4d643954f67ecdb81df1971fc55b42b7a53.cairo" + }, + "parent_location": [ + { + "end_col": 14, + "end_line": 91, + "input_file": { + "filename": "src/utils/ERC20.cairo" + }, + "start_col": 6, + "start_line": 91 + }, + "While constructing the external wrapper for:" + ], + "start_col": 100, + "start_line": 1 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 63, + "start_line": 91 + }, + "While constructing the external wrapper for:" + ], + "start_col": 23, + "start_line": 1 + } + }, + "1434": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.transfer" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 56, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/arg_processor/b2f0827cd25add06ce9417e15e8fde387220730394f6414d9d2c12394040ee99.cairo" + }, + "parent_location": [ + { + "end_col": 28, + "end_line": 92, + "input_file": { + "filename": "src/utils/ERC20.cairo" + }, + "parent_location": [ + { + "end_col": 167, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/transfer/2da85ae0239cf78b51e06096105fe4d643954f67ecdb81df1971fc55b42b7a53.cairo" + }, + "parent_location": [ + { + "end_col": 14, + "end_line": 91, + "input_file": { + "filename": "src/utils/ERC20.cairo" + }, + "start_col": 6, + "start_line": 91 + }, + "While constructing the external wrapper for:" + ], + "start_col": 135, + "start_line": 1 + }, + "While expanding the reference '__calldata_arg_recipient_address' in:" + ], + "start_col": 5, + "start_line": 92 + }, + "While handling calldata argument 'recipient_address'" + ], + "start_col": 40, + "start_line": 1 + } + }, + "1435": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.transfer" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 67, + "end_line": 2, + "input_file": { + "filename": "autogen/starknet/arg_processor/98feb0f4c88833fb7f82ddd66d06f84d8ffb64f877c6f94e214b61af32d58c29.cairo" + }, + "parent_location": [ + { + "end_col": 45, + "end_line": 92, + "input_file": { + "filename": "src/utils/ERC20.cairo" + }, + "parent_location": [ + { + "end_col": 197, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/transfer/2da85ae0239cf78b51e06096105fe4d643954f67ecdb81df1971fc55b42b7a53.cairo" + }, + "parent_location": [ + { + "end_col": 14, + "end_line": 91, + "input_file": { + "filename": "src/utils/ERC20.cairo" + }, + "start_col": 6, + "start_line": 91 + }, + "While constructing the external wrapper for:" + ], + "start_col": 176, + "start_line": 1 + }, + "While expanding the reference '__calldata_arg_amount' in:" + ], + "start_col": 30, + "start_line": 92 + }, + "While handling calldata argument 'amount'" + ], + "start_col": 29, + "start_line": 1 + } + }, + "1436": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.transfer" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 67, + "end_line": 2, + "input_file": { + "filename": "autogen/starknet/arg_processor/98feb0f4c88833fb7f82ddd66d06f84d8ffb64f877c6f94e214b61af32d58c29.cairo" + }, + "parent_location": [ + { + "end_col": 45, + "end_line": 92, + "input_file": { + "filename": "src/utils/ERC20.cairo" + }, + "parent_location": [ + { + "end_col": 197, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/transfer/2da85ae0239cf78b51e06096105fe4d643954f67ecdb81df1971fc55b42b7a53.cairo" + }, + "parent_location": [ + { + "end_col": 14, + "end_line": 91, + "input_file": { + "filename": "src/utils/ERC20.cairo" + }, + "start_col": 6, + "start_line": 91 + }, + "While constructing the external wrapper for:" + ], + "start_col": 176, + "start_line": 1 + }, + "While expanding the reference '__calldata_arg_amount' in:" + ], + "start_col": 30, + "start_line": 92 + }, + "While handling calldata argument 'amount'" + ], + "start_col": 29, + "start_line": 1 + } + }, + "1437": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.transfer" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 14, + "end_line": 91, + "input_file": { + "filename": "src/utils/ERC20.cairo" + }, + "start_col": 6, + "start_line": 91 + } + }, + "1439": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.transfer" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 115, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/transfer/2da85ae0239cf78b51e06096105fe4d643954f67ecdb81df1971fc55b42b7a53.cairo" + }, + "parent_location": [ + { + "end_col": 14, + "end_line": 91, + "input_file": { + "filename": "src/utils/ERC20.cairo" + }, + "parent_location": [ + { + "end_col": 97, + "end_line": 2, + "input_file": { + "filename": "autogen/starknet/external/transfer/2da85ae0239cf78b51e06096105fe4d643954f67ecdb81df1971fc55b42b7a53.cairo" + }, + "parent_location": [ + { + "end_col": 14, + "end_line": 91, + "input_file": { + "filename": "src/utils/ERC20.cairo" + }, + "start_col": 6, + "start_line": 91 + }, + "While constructing the external wrapper for:" + ], + "start_col": 82, + "start_line": 2 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 6, + "start_line": 91 + }, + "While constructing the external wrapper for:" + ], + "start_col": 100, + "start_line": 1 + } + }, + "1440": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.transfer" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 98, + "end_line": 2, + "input_file": { + "filename": "autogen/starknet/external/transfer/2da85ae0239cf78b51e06096105fe4d643954f67ecdb81df1971fc55b42b7a53.cairo" + }, + "parent_location": [ + { + "end_col": 14, + "end_line": 91, + "input_file": { + "filename": "src/utils/ERC20.cairo" + }, + "start_col": 6, + "start_line": 91 + }, + "While constructing the external wrapper for:" + ], + "start_col": 48, + "start_line": 2 + } + }, + "1442": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.transfer" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 55, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/transfer/2da85ae0239cf78b51e06096105fe4d643954f67ecdb81df1971fc55b42b7a53.cairo" + }, + "parent_location": [ + { + "end_col": 14, + "end_line": 91, + "input_file": { + "filename": "src/utils/ERC20.cairo" + }, + "parent_location": [ + { + "end_col": 20, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/transfer/da17921a4e81c09e730800bbf23bfdbe5e9e6bfaedc59d80fbf62087fa43c27d.cairo" + }, + "parent_location": [ + { + "end_col": 14, + "end_line": 91, + "input_file": { + "filename": "src/utils/ERC20.cairo" + }, + "start_col": 6, + "start_line": 91 + }, + "While constructing the external wrapper for:" + ], + "start_col": 9, + "start_line": 1 + }, + "While expanding the reference 'syscall_ptr' in:" + ], + "start_col": 6, + "start_line": 91 + }, + "While constructing the external wrapper for:" + ], + "start_col": 44, + "start_line": 1 + } + }, + "1443": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.transfer" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 82, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/transfer/2da85ae0239cf78b51e06096105fe4d643954f67ecdb81df1971fc55b42b7a53.cairo" + }, + "parent_location": [ + { + "end_col": 14, + "end_line": 91, + "input_file": { + "filename": "src/utils/ERC20.cairo" + }, + "parent_location": [ + { + "end_col": 33, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/transfer/da17921a4e81c09e730800bbf23bfdbe5e9e6bfaedc59d80fbf62087fa43c27d.cairo" + }, + "parent_location": [ + { + "end_col": 14, + "end_line": 91, + "input_file": { + "filename": "src/utils/ERC20.cairo" + }, + "start_col": 6, + "start_line": 91 + }, + "While constructing the external wrapper for:" + ], + "start_col": 21, + "start_line": 1 + }, + "While expanding the reference 'pedersen_ptr' in:" + ], + "start_col": 6, + "start_line": 91 + }, + "While constructing the external wrapper for:" + ], + "start_col": 70, + "start_line": 1 + } + }, + "1444": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.transfer" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 21, + "end_line": 2, + "input_file": { + "filename": "autogen/starknet/external/transfer/2da85ae0239cf78b51e06096105fe4d643954f67ecdb81df1971fc55b42b7a53.cairo" + }, + "parent_location": [ + { + "end_col": 14, + "end_line": 91, + "input_file": { + "filename": "src/utils/ERC20.cairo" + }, + "parent_location": [ + { + "end_col": 49, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/transfer/da17921a4e81c09e730800bbf23bfdbe5e9e6bfaedc59d80fbf62087fa43c27d.cairo" + }, + "parent_location": [ + { + "end_col": 14, + "end_line": 91, + "input_file": { + "filename": "src/utils/ERC20.cairo" + }, + "start_col": 6, + "start_line": 91 + }, + "While constructing the external wrapper for:" + ], + "start_col": 34, + "start_line": 1 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 6, + "start_line": 91 + }, + "While constructing the external wrapper for:" + ], + "start_col": 6, + "start_line": 2 + } + }, + "1445": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.transfer" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 35, + "end_line": 2, + "input_file": { + "filename": "autogen/starknet/external/transfer/2da85ae0239cf78b51e06096105fe4d643954f67ecdb81df1971fc55b42b7a53.cairo" + }, + "parent_location": [ + { + "end_col": 14, + "end_line": 91, + "input_file": { + "filename": "src/utils/ERC20.cairo" + }, + "parent_location": [ + { + "end_col": 62, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/transfer/da17921a4e81c09e730800bbf23bfdbe5e9e6bfaedc59d80fbf62087fa43c27d.cairo" + }, + "parent_location": [ + { + "end_col": 14, + "end_line": 91, + "input_file": { + "filename": "src/utils/ERC20.cairo" + }, + "start_col": 6, + "start_line": 91 + }, + "While constructing the external wrapper for:" + ], + "start_col": 50, + "start_line": 1 + }, + "While expanding the reference 'retdata_size' in:" + ], + "start_col": 6, + "start_line": 91 + }, + "While constructing the external wrapper for:" + ], + "start_col": 23, + "start_line": 2 + } + }, + "1446": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.transfer" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 44, + "end_line": 2, + "input_file": { + "filename": "autogen/starknet/external/transfer/2da85ae0239cf78b51e06096105fe4d643954f67ecdb81df1971fc55b42b7a53.cairo" + }, + "parent_location": [ + { + "end_col": 14, + "end_line": 91, + "input_file": { + "filename": "src/utils/ERC20.cairo" + }, + "parent_location": [ + { + "end_col": 70, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/transfer/da17921a4e81c09e730800bbf23bfdbe5e9e6bfaedc59d80fbf62087fa43c27d.cairo" + }, + "parent_location": [ + { + "end_col": 14, + "end_line": 91, + "input_file": { + "filename": "src/utils/ERC20.cairo" + }, + "start_col": 6, + "start_line": 91 + }, + "While constructing the external wrapper for:" + ], + "start_col": 63, + "start_line": 1 + }, + "While expanding the reference 'retdata' in:" + ], + "start_col": 6, + "start_line": 91 + }, + "While constructing the external wrapper for:" + ], + "start_col": 37, + "start_line": 2 + } + }, + "1447": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.transfer" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 72, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/transfer/da17921a4e81c09e730800bbf23bfdbe5e9e6bfaedc59d80fbf62087fa43c27d.cairo" + }, + "parent_location": [ + { + "end_col": 14, + "end_line": 91, + "input_file": { + "filename": "src/utils/ERC20.cairo" + }, + "start_col": 6, + "start_line": 91 + }, + "While constructing the external wrapper for:" + ], + "start_col": 1, + "start_line": 1 + } + }, + "1448": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.transferFrom" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 37, + "end_line": 100, + "input_file": { + "filename": "src/utils/ERC20.cairo" + }, + "parent_location": [ + { + "end_col": 42, + "end_line": 118, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc20/library.cairo" + }, + "parent_location": [ + { + "end_col": 67, + "end_line": 103, + "input_file": { + "filename": "src/utils/ERC20.cairo" + }, + "start_col": 5, + "start_line": 103 + }, + "While trying to retrieve the implicit argument 'syscall_ptr' in:" + ], + "start_col": 24, + "start_line": 118 + }, + "While expanding the reference 'syscall_ptr' in:" + ], + "start_col": 19, + "start_line": 100 + } + }, + "1449": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.transferFrom" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 65, + "end_line": 100, + "input_file": { + "filename": "src/utils/ERC20.cairo" + }, + "parent_location": [ + { + "end_col": 70, + "end_line": 118, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc20/library.cairo" + }, + "parent_location": [ + { + "end_col": 67, + "end_line": 103, + "input_file": { + "filename": "src/utils/ERC20.cairo" + }, + "start_col": 5, + "start_line": 103 + }, + "While trying to retrieve the implicit argument 'pedersen_ptr' in:" + ], + "start_col": 44, + "start_line": 118 + }, + "While expanding the reference 'pedersen_ptr' in:" + ], + "start_col": 39, + "start_line": 100 + } + }, + "1450": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.transferFrom" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 82, + "end_line": 100, + "input_file": { + "filename": "src/utils/ERC20.cairo" + }, + "parent_location": [ + { + "end_col": 87, + "end_line": 118, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc20/library.cairo" + }, + "parent_location": [ + { + "end_col": 67, + "end_line": 103, + "input_file": { + "filename": "src/utils/ERC20.cairo" + }, + "start_col": 5, + "start_line": 103 + }, + "While trying to retrieve the implicit argument 'range_check_ptr' in:" + ], + "start_col": 72, + "start_line": 118 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 67, + "start_line": 100 + } + }, + "1451": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.transferFrom" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 25, + "end_line": 101, + "input_file": { + "filename": "src/utils/ERC20.cairo" + }, + "parent_location": [ + { + "end_col": 39, + "end_line": 103, + "input_file": { + "filename": "src/utils/ERC20.cairo" + }, + "start_col": 25, + "start_line": 103 + }, + "While expanding the reference 'sender_address' in:" + ], + "start_col": 5, + "start_line": 101 + } + }, + "1452": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.transferFrom" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 50, + "end_line": 101, + "input_file": { + "filename": "src/utils/ERC20.cairo" + }, + "parent_location": [ + { + "end_col": 58, + "end_line": 103, + "input_file": { + "filename": "src/utils/ERC20.cairo" + }, + "start_col": 41, + "start_line": 103 + }, + "While expanding the reference 'recipient_address' in:" + ], + "start_col": 27, + "start_line": 101 + } + }, + "1453": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.transferFrom" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 67, + "end_line": 101, + "input_file": { + "filename": "src/utils/ERC20.cairo" + }, + "parent_location": [ + { + "end_col": 66, + "end_line": 103, + "input_file": { + "filename": "src/utils/ERC20.cairo" + }, + "start_col": 60, + "start_line": 103 + }, + "While expanding the reference 'amount' in:" + ], + "start_col": 52, + "start_line": 101 + } + }, + "1454": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.transferFrom" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 67, + "end_line": 101, + "input_file": { + "filename": "src/utils/ERC20.cairo" + }, + "parent_location": [ + { + "end_col": 66, + "end_line": 103, + "input_file": { + "filename": "src/utils/ERC20.cairo" + }, + "start_col": 60, + "start_line": 103 + }, + "While expanding the reference 'amount' in:" + ], + "start_col": 52, + "start_line": 101 + } + }, + "1455": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.transferFrom" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 67, + "end_line": 103, + "input_file": { + "filename": "src/utils/ERC20.cairo" + }, + "start_col": 5, + "start_line": 103 + } + }, + "1457": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.transferFrom" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 42, + "end_line": 118, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc20/library.cairo" + }, + "parent_location": [ + { + "end_col": 67, + "end_line": 103, + "input_file": { + "filename": "src/utils/ERC20.cairo" + }, + "parent_location": [ + { + "end_col": 37, + "end_line": 100, + "input_file": { + "filename": "src/utils/ERC20.cairo" + }, + "parent_location": [ + { + "end_col": 20, + "end_line": 105, + "input_file": { + "filename": "src/utils/ERC20.cairo" + }, + "start_col": 5, + "start_line": 105 + }, + "While trying to retrieve the implicit argument 'syscall_ptr' in:" + ], + "start_col": 19, + "start_line": 100 + }, + "While expanding the reference 'syscall_ptr' in:" + ], + "start_col": 5, + "start_line": 103 + }, + "While trying to update the implicit return value 'syscall_ptr' in:" + ], + "start_col": 24, + "start_line": 118 + } + }, + "1458": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.transferFrom" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 70, + "end_line": 118, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc20/library.cairo" + }, + "parent_location": [ + { + "end_col": 67, + "end_line": 103, + "input_file": { + "filename": "src/utils/ERC20.cairo" + }, + "parent_location": [ + { + "end_col": 65, + "end_line": 100, + "input_file": { + "filename": "src/utils/ERC20.cairo" + }, + "parent_location": [ + { + "end_col": 20, + "end_line": 105, + "input_file": { + "filename": "src/utils/ERC20.cairo" + }, + "start_col": 5, + "start_line": 105 + }, + "While trying to retrieve the implicit argument 'pedersen_ptr' in:" + ], + "start_col": 39, + "start_line": 100 + }, + "While expanding the reference 'pedersen_ptr' in:" + ], + "start_col": 5, + "start_line": 103 + }, + "While trying to update the implicit return value 'pedersen_ptr' in:" + ], + "start_col": 44, + "start_line": 118 + } + }, + "1459": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.transferFrom" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 87, + "end_line": 118, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc20/library.cairo" + }, + "parent_location": [ + { + "end_col": 67, + "end_line": 103, + "input_file": { + "filename": "src/utils/ERC20.cairo" + }, + "parent_location": [ + { + "end_col": 82, + "end_line": 100, + "input_file": { + "filename": "src/utils/ERC20.cairo" + }, + "parent_location": [ + { + "end_col": 20, + "end_line": 105, + "input_file": { + "filename": "src/utils/ERC20.cairo" + }, + "start_col": 5, + "start_line": 105 + }, + "While trying to retrieve the implicit argument 'range_check_ptr' in:" + ], + "start_col": 67, + "start_line": 100 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 5, + "start_line": 103 + }, + "While trying to update the implicit return value 'range_check_ptr' in:" + ], + "start_col": 72, + "start_line": 118 + } + }, + "1460": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.transferFrom" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 17, + "end_line": 105, + "input_file": { + "filename": "src/utils/ERC20.cairo" + }, + "start_col": 13, + "start_line": 105 + } + }, + "1462": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.transferFrom" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 20, + "end_line": 105, + "input_file": { + "filename": "src/utils/ERC20.cairo" + }, + "start_col": 5, + "start_line": 105 + } + }, + "1463": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.transferFrom_encode_return" + ], + "flow_tracking_data": null, + "hints": [ + { + "location": { + "end_col": 38, + "end_line": 3, + "input_file": { + "filename": "autogen/starknet/external/return/transferFrom/5b2c37cd8026aa4af7cd3c9f7917d8ea869eaee537bea84bfb17d9a4e9947d8f.cairo" + }, + "parent_location": [ + { + "end_col": 18, + "end_line": 100, + "input_file": { + "filename": "src/utils/ERC20.cairo" + }, + "start_col": 6, + "start_line": 100 + }, + "While handling return value of" + ], + "start_col": 5, + "start_line": 3 + }, + "n_prefix_newlines": 0 + } + ], + "inst": { + "end_col": 18, + "end_line": 4, + "input_file": { + "filename": "autogen/starknet/external/return/transferFrom/5b2c37cd8026aa4af7cd3c9f7917d8ea869eaee537bea84bfb17d9a4e9947d8f.cairo" + }, + "parent_location": [ + { + "end_col": 18, + "end_line": 100, + "input_file": { + "filename": "src/utils/ERC20.cairo" + }, + "start_col": 6, + "start_line": 100 + }, + "While handling return value of" + ], + "start_col": 5, + "start_line": 4 + } + }, + "1465": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.transferFrom_encode_return" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 49, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/arg_processor/5c10028f67364b153272aa9b4cbc0fb78920a40fab821ac7257b0069e0773b49.cairo" + }, + "parent_location": [ + { + "end_col": 20, + "end_line": 102, + "input_file": { + "filename": "src/utils/ERC20.cairo" + }, + "start_col": 7, + "start_line": 102 + }, + "While handling return value 'success'" + ], + "start_col": 1, + "start_line": 1 + } + }, + "1466": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.transferFrom_encode_return" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 48, + "end_line": 2, + "input_file": { + "filename": "autogen/starknet/arg_processor/5c10028f67364b153272aa9b4cbc0fb78920a40fab821ac7257b0069e0773b49.cairo" + }, + "parent_location": [ + { + "end_col": 20, + "end_line": 102, + "input_file": { + "filename": "src/utils/ERC20.cairo" + }, + "parent_location": [ + { + "end_col": 36, + "end_line": 11, + "input_file": { + "filename": "autogen/starknet/external/return/transferFrom/5b2c37cd8026aa4af7cd3c9f7917d8ea869eaee537bea84bfb17d9a4e9947d8f.cairo" + }, + "parent_location": [ + { + "end_col": 18, + "end_line": 100, + "input_file": { + "filename": "src/utils/ERC20.cairo" + }, + "start_col": 6, + "start_line": 100 + }, + "While handling return value of" + ], + "start_col": 18, + "start_line": 11 + }, + "While expanding the reference '__return_value_ptr' in:" + ], + "start_col": 7, + "start_line": 102 + }, + "While handling return value 'success'" + ], + "start_col": 26, + "start_line": 2 + } + }, + "1468": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.transferFrom_encode_return" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 76, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/return/transferFrom/5b2c37cd8026aa4af7cd3c9f7917d8ea869eaee537bea84bfb17d9a4e9947d8f.cairo" + }, + "parent_location": [ + { + "end_col": 18, + "end_line": 100, + "input_file": { + "filename": "src/utils/ERC20.cairo" + }, + "parent_location": [ + { + "end_col": 40, + "end_line": 10, + "input_file": { + "filename": "autogen/starknet/external/return/transferFrom/5b2c37cd8026aa4af7cd3c9f7917d8ea869eaee537bea84bfb17d9a4e9947d8f.cairo" + }, + "parent_location": [ + { + "end_col": 18, + "end_line": 100, + "input_file": { + "filename": "src/utils/ERC20.cairo" + }, + "start_col": 6, + "start_line": 100 + }, + "While handling return value of" + ], + "start_col": 25, + "start_line": 10 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 6, + "start_line": 100 + }, + "While handling return value of" + ], + "start_col": 61, + "start_line": 1 + } + }, + "1469": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.transferFrom_encode_return" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 63, + "end_line": 11, + "input_file": { + "filename": "autogen/starknet/external/return/transferFrom/5b2c37cd8026aa4af7cd3c9f7917d8ea869eaee537bea84bfb17d9a4e9947d8f.cairo" + }, + "parent_location": [ + { + "end_col": 18, + "end_line": 100, + "input_file": { + "filename": "src/utils/ERC20.cairo" + }, + "start_col": 6, + "start_line": 100 + }, + "While handling return value of" + ], + "start_col": 18, + "start_line": 11 + } + }, + "1470": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.transferFrom_encode_return" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 35, + "end_line": 5, + "input_file": { + "filename": "autogen/starknet/external/return/transferFrom/5b2c37cd8026aa4af7cd3c9f7917d8ea869eaee537bea84bfb17d9a4e9947d8f.cairo" + }, + "parent_location": [ + { + "end_col": 18, + "end_line": 100, + "input_file": { + "filename": "src/utils/ERC20.cairo" + }, + "parent_location": [ + { + "end_col": 38, + "end_line": 12, + "input_file": { + "filename": "autogen/starknet/external/return/transferFrom/5b2c37cd8026aa4af7cd3c9f7917d8ea869eaee537bea84bfb17d9a4e9947d8f.cairo" + }, + "parent_location": [ + { + "end_col": 18, + "end_line": 100, + "input_file": { + "filename": "src/utils/ERC20.cairo" + }, + "start_col": 6, + "start_line": 100 + }, + "While handling return value of" + ], + "start_col": 14, + "start_line": 12 + }, + "While expanding the reference '__return_value_ptr_start' in:" + ], + "start_col": 6, + "start_line": 100 + }, + "While handling return value of" + ], + "start_col": 11, + "start_line": 5 + } + }, + "1471": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.transferFrom_encode_return" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 40, + "end_line": 12, + "input_file": { + "filename": "autogen/starknet/external/return/transferFrom/5b2c37cd8026aa4af7cd3c9f7917d8ea869eaee537bea84bfb17d9a4e9947d8f.cairo" + }, + "parent_location": [ + { + "end_col": 18, + "end_line": 100, + "input_file": { + "filename": "src/utils/ERC20.cairo" + }, + "start_col": 6, + "start_line": 100 + }, + "While handling return value of" + ], + "start_col": 5, + "start_line": 9 + } + }, + "1472": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.transferFrom" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 40, + "end_line": 3, + "input_file": { + "filename": "autogen/starknet/arg_processor/98feb0f4c88833fb7f82ddd66d06f84d8ffb64f877c6f94e214b61af32d58c29.cairo" + }, + "parent_location": [ + { + "end_col": 67, + "end_line": 101, + "input_file": { + "filename": "src/utils/ERC20.cairo" + }, + "parent_location": [ + { + "end_col": 45, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/arg_processor/c31620b02d4d706f0542c989b2aadc01b0981d1f6a5933a8fe4937ace3d70d92.cairo" + }, + "parent_location": [ + { + "end_col": 18, + "end_line": 100, + "input_file": { + "filename": "src/utils/ERC20.cairo" + }, + "parent_location": [ + { + "end_col": 57, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/arg_processor/01cba52f8515996bb9d7070bde81ff39281d096d7024a558efcba6e1fd2402cf.cairo" + }, + "parent_location": [ + { + "end_col": 18, + "end_line": 100, + "input_file": { + "filename": "src/utils/ERC20.cairo" + }, + "start_col": 6, + "start_line": 100 + }, + "While handling calldata of" + ], + "start_col": 35, + "start_line": 1 + }, + "While expanding the reference '__calldata_actual_size' in:" + ], + "start_col": 6, + "start_line": 100 + }, + "While handling calldata of" + ], + "start_col": 31, + "start_line": 1 + }, + "While expanding the reference '__calldata_ptr' in:" + ], + "start_col": 52, + "start_line": 101 + }, + "While handling calldata argument 'amount'" + ], + "start_col": 22, + "start_line": 3 + } + }, + "1474": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.transferFrom" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 58, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/arg_processor/01cba52f8515996bb9d7070bde81ff39281d096d7024a558efcba6e1fd2402cf.cairo" + }, + "parent_location": [ + { + "end_col": 18, + "end_line": 100, + "input_file": { + "filename": "src/utils/ERC20.cairo" + }, + "start_col": 6, + "start_line": 100 + }, + "While handling calldata of" + ], + "start_col": 1, + "start_line": 1 + } + }, + "1475": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.transferFrom" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 64, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/transferFrom/b2c52ca2d2a8fc8791a983086d8716c5eacd0c3d62934914d2286f84b98ff4cb.cairo" + }, + "parent_location": [ + { + "end_col": 37, + "end_line": 100, + "input_file": { + "filename": "src/utils/ERC20.cairo" + }, + "parent_location": [ + { + "end_col": 55, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/transferFrom/502c16cd564f5e92665ea78c30f9a67dad3fe2b2780e31028f690b0fdb9c7e85.cairo" + }, + "parent_location": [ + { + "end_col": 18, + "end_line": 100, + "input_file": { + "filename": "src/utils/ERC20.cairo" + }, + "start_col": 6, + "start_line": 100 + }, + "While constructing the external wrapper for:" + ], + "start_col": 44, + "start_line": 1 + }, + "While expanding the reference 'syscall_ptr' in:" + ], + "start_col": 19, + "start_line": 100 + }, + "While constructing the external wrapper for:" + ], + "start_col": 19, + "start_line": 1 + } + }, + "1476": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.transferFrom" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 110, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/transferFrom/9684a85e93c782014ca14293edea4eb2502039a5a7b6538ecd39c56faaf12529.cairo" + }, + "parent_location": [ + { + "end_col": 65, + "end_line": 100, + "input_file": { + "filename": "src/utils/ERC20.cairo" + }, + "parent_location": [ + { + "end_col": 82, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/transferFrom/502c16cd564f5e92665ea78c30f9a67dad3fe2b2780e31028f690b0fdb9c7e85.cairo" + }, + "parent_location": [ + { + "end_col": 18, + "end_line": 100, + "input_file": { + "filename": "src/utils/ERC20.cairo" + }, + "start_col": 6, + "start_line": 100 + }, + "While constructing the external wrapper for:" + ], + "start_col": 70, + "start_line": 1 + }, + "While expanding the reference 'pedersen_ptr' in:" + ], + "start_col": 39, + "start_line": 100 + }, + "While constructing the external wrapper for:" + ], + "start_col": 20, + "start_line": 1 + } + }, + "1477": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.transferFrom" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 67, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/transferFrom/741ea357d6336b0bed7bf0472425acd0311d543883b803388880e60a232040c7.cairo" + }, + "parent_location": [ + { + "end_col": 82, + "end_line": 100, + "input_file": { + "filename": "src/utils/ERC20.cairo" + }, + "parent_location": [ + { + "end_col": 115, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/transferFrom/502c16cd564f5e92665ea78c30f9a67dad3fe2b2780e31028f690b0fdb9c7e85.cairo" + }, + "parent_location": [ + { + "end_col": 18, + "end_line": 100, + "input_file": { + "filename": "src/utils/ERC20.cairo" + }, + "start_col": 6, + "start_line": 100 + }, + "While constructing the external wrapper for:" + ], + "start_col": 100, + "start_line": 1 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 67, + "start_line": 100 + }, + "While constructing the external wrapper for:" + ], + "start_col": 23, + "start_line": 1 + } + }, + "1478": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.transferFrom" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 53, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/arg_processor/337080d905c9efc14cc5ce3f3b9c28c0d295ba39991cbc57efa047b488a4c4c4.cairo" + }, + "parent_location": [ + { + "end_col": 25, + "end_line": 101, + "input_file": { + "filename": "src/utils/ERC20.cairo" + }, + "parent_location": [ + { + "end_col": 161, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/transferFrom/502c16cd564f5e92665ea78c30f9a67dad3fe2b2780e31028f690b0fdb9c7e85.cairo" + }, + "parent_location": [ + { + "end_col": 18, + "end_line": 100, + "input_file": { + "filename": "src/utils/ERC20.cairo" + }, + "start_col": 6, + "start_line": 100 + }, + "While constructing the external wrapper for:" + ], + "start_col": 132, + "start_line": 1 + }, + "While expanding the reference '__calldata_arg_sender_address' in:" + ], + "start_col": 5, + "start_line": 101 + }, + "While handling calldata argument 'sender_address'" + ], + "start_col": 37, + "start_line": 1 + } + }, + "1479": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.transferFrom" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 56, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/arg_processor/b2f0827cd25add06ce9417e15e8fde387220730394f6414d9d2c12394040ee99.cairo" + }, + "parent_location": [ + { + "end_col": 50, + "end_line": 101, + "input_file": { + "filename": "src/utils/ERC20.cairo" + }, + "parent_location": [ + { + "end_col": 213, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/transferFrom/502c16cd564f5e92665ea78c30f9a67dad3fe2b2780e31028f690b0fdb9c7e85.cairo" + }, + "parent_location": [ + { + "end_col": 18, + "end_line": 100, + "input_file": { + "filename": "src/utils/ERC20.cairo" + }, + "start_col": 6, + "start_line": 100 + }, + "While constructing the external wrapper for:" + ], + "start_col": 181, + "start_line": 1 + }, + "While expanding the reference '__calldata_arg_recipient_address' in:" + ], + "start_col": 27, + "start_line": 101 + }, + "While handling calldata argument 'recipient_address'" + ], + "start_col": 40, + "start_line": 1 + } + }, + "1480": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.transferFrom" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 67, + "end_line": 2, + "input_file": { + "filename": "autogen/starknet/arg_processor/98feb0f4c88833fb7f82ddd66d06f84d8ffb64f877c6f94e214b61af32d58c29.cairo" + }, + "parent_location": [ + { + "end_col": 67, + "end_line": 101, + "input_file": { + "filename": "src/utils/ERC20.cairo" + }, + "parent_location": [ + { + "end_col": 243, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/transferFrom/502c16cd564f5e92665ea78c30f9a67dad3fe2b2780e31028f690b0fdb9c7e85.cairo" + }, + "parent_location": [ + { + "end_col": 18, + "end_line": 100, + "input_file": { + "filename": "src/utils/ERC20.cairo" + }, + "start_col": 6, + "start_line": 100 + }, + "While constructing the external wrapper for:" + ], + "start_col": 222, + "start_line": 1 + }, + "While expanding the reference '__calldata_arg_amount' in:" + ], + "start_col": 52, + "start_line": 101 + }, + "While handling calldata argument 'amount'" + ], + "start_col": 29, + "start_line": 1 + } + }, + "1481": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.transferFrom" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 67, + "end_line": 2, + "input_file": { + "filename": "autogen/starknet/arg_processor/98feb0f4c88833fb7f82ddd66d06f84d8ffb64f877c6f94e214b61af32d58c29.cairo" + }, + "parent_location": [ + { + "end_col": 67, + "end_line": 101, + "input_file": { + "filename": "src/utils/ERC20.cairo" + }, + "parent_location": [ + { + "end_col": 243, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/transferFrom/502c16cd564f5e92665ea78c30f9a67dad3fe2b2780e31028f690b0fdb9c7e85.cairo" + }, + "parent_location": [ + { + "end_col": 18, + "end_line": 100, + "input_file": { + "filename": "src/utils/ERC20.cairo" + }, + "start_col": 6, + "start_line": 100 + }, + "While constructing the external wrapper for:" + ], + "start_col": 222, + "start_line": 1 + }, + "While expanding the reference '__calldata_arg_amount' in:" + ], + "start_col": 52, + "start_line": 101 + }, + "While handling calldata argument 'amount'" + ], + "start_col": 29, + "start_line": 1 + } + }, + "1482": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.transferFrom" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 18, + "end_line": 100, + "input_file": { + "filename": "src/utils/ERC20.cairo" + }, + "start_col": 6, + "start_line": 100 + } + }, + "1484": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.transferFrom" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 115, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/transferFrom/502c16cd564f5e92665ea78c30f9a67dad3fe2b2780e31028f690b0fdb9c7e85.cairo" + }, + "parent_location": [ + { + "end_col": 18, + "end_line": 100, + "input_file": { + "filename": "src/utils/ERC20.cairo" + }, + "parent_location": [ + { + "end_col": 101, + "end_line": 2, + "input_file": { + "filename": "autogen/starknet/external/transferFrom/502c16cd564f5e92665ea78c30f9a67dad3fe2b2780e31028f690b0fdb9c7e85.cairo" + }, + "parent_location": [ + { + "end_col": 18, + "end_line": 100, + "input_file": { + "filename": "src/utils/ERC20.cairo" + }, + "start_col": 6, + "start_line": 100 + }, + "While constructing the external wrapper for:" + ], + "start_col": 86, + "start_line": 2 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 6, + "start_line": 100 + }, + "While constructing the external wrapper for:" + ], + "start_col": 100, + "start_line": 1 + } + }, + "1485": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.transferFrom" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 102, + "end_line": 2, + "input_file": { + "filename": "autogen/starknet/external/transferFrom/502c16cd564f5e92665ea78c30f9a67dad3fe2b2780e31028f690b0fdb9c7e85.cairo" + }, + "parent_location": [ + { + "end_col": 18, + "end_line": 100, + "input_file": { + "filename": "src/utils/ERC20.cairo" + }, + "start_col": 6, + "start_line": 100 + }, + "While constructing the external wrapper for:" + ], + "start_col": 48, + "start_line": 2 + } + }, + "1487": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.transferFrom" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 55, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/transferFrom/502c16cd564f5e92665ea78c30f9a67dad3fe2b2780e31028f690b0fdb9c7e85.cairo" + }, + "parent_location": [ + { + "end_col": 18, + "end_line": 100, + "input_file": { + "filename": "src/utils/ERC20.cairo" + }, + "parent_location": [ + { + "end_col": 20, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/transferFrom/da17921a4e81c09e730800bbf23bfdbe5e9e6bfaedc59d80fbf62087fa43c27d.cairo" + }, + "parent_location": [ + { + "end_col": 18, + "end_line": 100, + "input_file": { + "filename": "src/utils/ERC20.cairo" + }, + "start_col": 6, + "start_line": 100 + }, + "While constructing the external wrapper for:" + ], + "start_col": 9, + "start_line": 1 + }, + "While expanding the reference 'syscall_ptr' in:" + ], + "start_col": 6, + "start_line": 100 + }, + "While constructing the external wrapper for:" + ], + "start_col": 44, + "start_line": 1 + } + }, + "1488": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.transferFrom" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 82, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/transferFrom/502c16cd564f5e92665ea78c30f9a67dad3fe2b2780e31028f690b0fdb9c7e85.cairo" + }, + "parent_location": [ + { + "end_col": 18, + "end_line": 100, + "input_file": { + "filename": "src/utils/ERC20.cairo" + }, + "parent_location": [ + { + "end_col": 33, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/transferFrom/da17921a4e81c09e730800bbf23bfdbe5e9e6bfaedc59d80fbf62087fa43c27d.cairo" + }, + "parent_location": [ + { + "end_col": 18, + "end_line": 100, + "input_file": { + "filename": "src/utils/ERC20.cairo" + }, + "start_col": 6, + "start_line": 100 + }, + "While constructing the external wrapper for:" + ], + "start_col": 21, + "start_line": 1 + }, + "While expanding the reference 'pedersen_ptr' in:" + ], + "start_col": 6, + "start_line": 100 + }, + "While constructing the external wrapper for:" + ], + "start_col": 70, + "start_line": 1 + } + }, + "1489": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.transferFrom" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 21, + "end_line": 2, + "input_file": { + "filename": "autogen/starknet/external/transferFrom/502c16cd564f5e92665ea78c30f9a67dad3fe2b2780e31028f690b0fdb9c7e85.cairo" + }, + "parent_location": [ + { + "end_col": 18, + "end_line": 100, + "input_file": { + "filename": "src/utils/ERC20.cairo" + }, + "parent_location": [ + { + "end_col": 49, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/transferFrom/da17921a4e81c09e730800bbf23bfdbe5e9e6bfaedc59d80fbf62087fa43c27d.cairo" + }, + "parent_location": [ + { + "end_col": 18, + "end_line": 100, + "input_file": { + "filename": "src/utils/ERC20.cairo" + }, + "start_col": 6, + "start_line": 100 + }, + "While constructing the external wrapper for:" + ], + "start_col": 34, + "start_line": 1 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 6, + "start_line": 100 + }, + "While constructing the external wrapper for:" + ], + "start_col": 6, + "start_line": 2 + } + }, + "1490": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.transferFrom" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 35, + "end_line": 2, + "input_file": { + "filename": "autogen/starknet/external/transferFrom/502c16cd564f5e92665ea78c30f9a67dad3fe2b2780e31028f690b0fdb9c7e85.cairo" + }, + "parent_location": [ + { + "end_col": 18, + "end_line": 100, + "input_file": { + "filename": "src/utils/ERC20.cairo" + }, + "parent_location": [ + { + "end_col": 62, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/transferFrom/da17921a4e81c09e730800bbf23bfdbe5e9e6bfaedc59d80fbf62087fa43c27d.cairo" + }, + "parent_location": [ + { + "end_col": 18, + "end_line": 100, + "input_file": { + "filename": "src/utils/ERC20.cairo" + }, + "start_col": 6, + "start_line": 100 + }, + "While constructing the external wrapper for:" + ], + "start_col": 50, + "start_line": 1 + }, + "While expanding the reference 'retdata_size' in:" + ], + "start_col": 6, + "start_line": 100 + }, + "While constructing the external wrapper for:" + ], + "start_col": 23, + "start_line": 2 + } + }, + "1491": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.transferFrom" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 44, + "end_line": 2, + "input_file": { + "filename": "autogen/starknet/external/transferFrom/502c16cd564f5e92665ea78c30f9a67dad3fe2b2780e31028f690b0fdb9c7e85.cairo" + }, + "parent_location": [ + { + "end_col": 18, + "end_line": 100, + "input_file": { + "filename": "src/utils/ERC20.cairo" + }, + "parent_location": [ + { + "end_col": 70, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/transferFrom/da17921a4e81c09e730800bbf23bfdbe5e9e6bfaedc59d80fbf62087fa43c27d.cairo" + }, + "parent_location": [ + { + "end_col": 18, + "end_line": 100, + "input_file": { + "filename": "src/utils/ERC20.cairo" + }, + "start_col": 6, + "start_line": 100 + }, + "While constructing the external wrapper for:" + ], + "start_col": 63, + "start_line": 1 + }, + "While expanding the reference 'retdata' in:" + ], + "start_col": 6, + "start_line": 100 + }, + "While constructing the external wrapper for:" + ], + "start_col": 37, + "start_line": 2 + } + }, + "1492": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.transferFrom" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 72, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/transferFrom/da17921a4e81c09e730800bbf23bfdbe5e9e6bfaedc59d80fbf62087fa43c27d.cairo" + }, + "parent_location": [ + { + "end_col": 18, + "end_line": 100, + "input_file": { + "filename": "src/utils/ERC20.cairo" + }, + "start_col": 6, + "start_line": 100 + }, + "While constructing the external wrapper for:" + ], + "start_col": 1, + "start_line": 1 + } + }, + "1493": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.approve" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 32, + "end_line": 109, + "input_file": { + "filename": "src/utils/ERC20.cairo" + }, + "parent_location": [ + { + "end_col": 36, + "end_line": 127, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc20/library.cairo" + }, + "parent_location": [ + { + "end_col": 43, + "end_line": 112, + "input_file": { + "filename": "src/utils/ERC20.cairo" + }, + "start_col": 5, + "start_line": 112 + }, + "While trying to retrieve the implicit argument 'syscall_ptr' in:" + ], + "start_col": 18, + "start_line": 127 + }, + "While expanding the reference 'syscall_ptr' in:" + ], + "start_col": 14, + "start_line": 109 + } + }, + "1494": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.approve" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 60, + "end_line": 109, + "input_file": { + "filename": "src/utils/ERC20.cairo" + }, + "parent_location": [ + { + "end_col": 64, + "end_line": 127, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc20/library.cairo" + }, + "parent_location": [ + { + "end_col": 43, + "end_line": 112, + "input_file": { + "filename": "src/utils/ERC20.cairo" + }, + "start_col": 5, + "start_line": 112 + }, + "While trying to retrieve the implicit argument 'pedersen_ptr' in:" + ], + "start_col": 38, + "start_line": 127 + }, + "While expanding the reference 'pedersen_ptr' in:" + ], + "start_col": 34, + "start_line": 109 + } + }, + "1495": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.approve" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 77, + "end_line": 109, + "input_file": { + "filename": "src/utils/ERC20.cairo" + }, + "parent_location": [ + { + "end_col": 81, + "end_line": 127, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc20/library.cairo" + }, + "parent_location": [ + { + "end_col": 43, + "end_line": 112, + "input_file": { + "filename": "src/utils/ERC20.cairo" + }, + "start_col": 5, + "start_line": 112 + }, + "While trying to retrieve the implicit argument 'range_check_ptr' in:" + ], + "start_col": 66, + "start_line": 127 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 62, + "start_line": 109 + } + }, + "1496": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.approve" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 26, + "end_line": 110, + "input_file": { + "filename": "src/utils/ERC20.cairo" + }, + "parent_location": [ + { + "end_col": 34, + "end_line": 112, + "input_file": { + "filename": "src/utils/ERC20.cairo" + }, + "start_col": 19, + "start_line": 112 + }, + "While expanding the reference 'spender_address' in:" + ], + "start_col": 5, + "start_line": 110 + } + }, + "1497": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.approve" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 43, + "end_line": 110, + "input_file": { + "filename": "src/utils/ERC20.cairo" + }, + "parent_location": [ + { + "end_col": 42, + "end_line": 112, + "input_file": { + "filename": "src/utils/ERC20.cairo" + }, + "start_col": 36, + "start_line": 112 + }, + "While expanding the reference 'amount' in:" + ], + "start_col": 28, + "start_line": 110 + } + }, + "1498": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.approve" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 43, + "end_line": 110, + "input_file": { + "filename": "src/utils/ERC20.cairo" + }, + "parent_location": [ + { + "end_col": 42, + "end_line": 112, + "input_file": { + "filename": "src/utils/ERC20.cairo" + }, + "start_col": 36, + "start_line": 112 + }, + "While expanding the reference 'amount' in:" + ], + "start_col": 28, + "start_line": 110 + } + }, + "1499": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.approve" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 43, + "end_line": 112, + "input_file": { + "filename": "src/utils/ERC20.cairo" + }, + "start_col": 5, + "start_line": 112 + } + }, + "1501": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.approve" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 36, + "end_line": 127, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc20/library.cairo" + }, + "parent_location": [ + { + "end_col": 43, + "end_line": 112, + "input_file": { + "filename": "src/utils/ERC20.cairo" + }, + "parent_location": [ + { + "end_col": 32, + "end_line": 109, + "input_file": { + "filename": "src/utils/ERC20.cairo" + }, + "parent_location": [ + { + "end_col": 20, + "end_line": 114, + "input_file": { + "filename": "src/utils/ERC20.cairo" + }, + "start_col": 5, + "start_line": 114 + }, + "While trying to retrieve the implicit argument 'syscall_ptr' in:" + ], + "start_col": 14, + "start_line": 109 + }, + "While expanding the reference 'syscall_ptr' in:" + ], + "start_col": 5, + "start_line": 112 + }, + "While trying to update the implicit return value 'syscall_ptr' in:" + ], + "start_col": 18, + "start_line": 127 + } + }, + "1502": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.approve" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 64, + "end_line": 127, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc20/library.cairo" + }, + "parent_location": [ + { + "end_col": 43, + "end_line": 112, + "input_file": { + "filename": "src/utils/ERC20.cairo" + }, + "parent_location": [ + { + "end_col": 60, + "end_line": 109, + "input_file": { + "filename": "src/utils/ERC20.cairo" + }, + "parent_location": [ + { + "end_col": 20, + "end_line": 114, + "input_file": { + "filename": "src/utils/ERC20.cairo" + }, + "start_col": 5, + "start_line": 114 + }, + "While trying to retrieve the implicit argument 'pedersen_ptr' in:" + ], + "start_col": 34, + "start_line": 109 + }, + "While expanding the reference 'pedersen_ptr' in:" + ], + "start_col": 5, + "start_line": 112 + }, + "While trying to update the implicit return value 'pedersen_ptr' in:" + ], + "start_col": 38, + "start_line": 127 + } + }, + "1503": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.approve" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 81, + "end_line": 127, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc20/library.cairo" + }, + "parent_location": [ + { + "end_col": 43, + "end_line": 112, + "input_file": { + "filename": "src/utils/ERC20.cairo" + }, + "parent_location": [ + { + "end_col": 77, + "end_line": 109, + "input_file": { + "filename": "src/utils/ERC20.cairo" + }, + "parent_location": [ + { + "end_col": 20, + "end_line": 114, + "input_file": { + "filename": "src/utils/ERC20.cairo" + }, + "start_col": 5, + "start_line": 114 + }, + "While trying to retrieve the implicit argument 'range_check_ptr' in:" + ], + "start_col": 62, + "start_line": 109 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 5, + "start_line": 112 + }, + "While trying to update the implicit return value 'range_check_ptr' in:" + ], + "start_col": 66, + "start_line": 127 + } + }, + "1504": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.approve" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 17, + "end_line": 114, + "input_file": { + "filename": "src/utils/ERC20.cairo" + }, + "start_col": 13, + "start_line": 114 + } + }, + "1506": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.approve" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 20, + "end_line": 114, + "input_file": { + "filename": "src/utils/ERC20.cairo" + }, + "start_col": 5, + "start_line": 114 + } + }, + "1507": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.approve_encode_return" + ], + "flow_tracking_data": null, + "hints": [ + { + "location": { + "end_col": 38, + "end_line": 3, + "input_file": { + "filename": "autogen/starknet/external/return/approve/3bfbf1e209a2919256f756d0aba26a37c16e14592de6048b15605ba53b428eb5.cairo" + }, + "parent_location": [ + { + "end_col": 13, + "end_line": 109, + "input_file": { + "filename": "src/utils/ERC20.cairo" + }, + "start_col": 6, + "start_line": 109 + }, + "While handling return value of" + ], + "start_col": 5, + "start_line": 3 + }, + "n_prefix_newlines": 0 + } + ], + "inst": { + "end_col": 18, + "end_line": 4, + "input_file": { + "filename": "autogen/starknet/external/return/approve/3bfbf1e209a2919256f756d0aba26a37c16e14592de6048b15605ba53b428eb5.cairo" + }, + "parent_location": [ + { + "end_col": 13, + "end_line": 109, + "input_file": { + "filename": "src/utils/ERC20.cairo" + }, + "start_col": 6, + "start_line": 109 + }, + "While handling return value of" + ], + "start_col": 5, + "start_line": 4 + } + }, + "1509": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.approve_encode_return" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 49, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/arg_processor/5c10028f67364b153272aa9b4cbc0fb78920a40fab821ac7257b0069e0773b49.cairo" + }, + "parent_location": [ + { + "end_col": 20, + "end_line": 111, + "input_file": { + "filename": "src/utils/ERC20.cairo" + }, + "start_col": 7, + "start_line": 111 + }, + "While handling return value 'success'" + ], + "start_col": 1, + "start_line": 1 + } + }, + "1510": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.approve_encode_return" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 48, + "end_line": 2, + "input_file": { + "filename": "autogen/starknet/arg_processor/5c10028f67364b153272aa9b4cbc0fb78920a40fab821ac7257b0069e0773b49.cairo" + }, + "parent_location": [ + { + "end_col": 20, + "end_line": 111, + "input_file": { + "filename": "src/utils/ERC20.cairo" + }, + "parent_location": [ + { + "end_col": 36, + "end_line": 11, + "input_file": { + "filename": "autogen/starknet/external/return/approve/3bfbf1e209a2919256f756d0aba26a37c16e14592de6048b15605ba53b428eb5.cairo" + }, + "parent_location": [ + { + "end_col": 13, + "end_line": 109, + "input_file": { + "filename": "src/utils/ERC20.cairo" + }, + "start_col": 6, + "start_line": 109 + }, + "While handling return value of" + ], + "start_col": 18, + "start_line": 11 + }, + "While expanding the reference '__return_value_ptr' in:" + ], + "start_col": 7, + "start_line": 111 + }, + "While handling return value 'success'" + ], + "start_col": 26, + "start_line": 2 + } + }, + "1512": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.approve_encode_return" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 71, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/return/approve/3bfbf1e209a2919256f756d0aba26a37c16e14592de6048b15605ba53b428eb5.cairo" + }, + "parent_location": [ + { + "end_col": 13, + "end_line": 109, + "input_file": { + "filename": "src/utils/ERC20.cairo" + }, + "parent_location": [ + { + "end_col": 40, + "end_line": 10, + "input_file": { + "filename": "autogen/starknet/external/return/approve/3bfbf1e209a2919256f756d0aba26a37c16e14592de6048b15605ba53b428eb5.cairo" + }, + "parent_location": [ + { + "end_col": 13, + "end_line": 109, + "input_file": { + "filename": "src/utils/ERC20.cairo" + }, + "start_col": 6, + "start_line": 109 + }, + "While handling return value of" + ], + "start_col": 25, + "start_line": 10 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 6, + "start_line": 109 + }, + "While handling return value of" + ], + "start_col": 56, + "start_line": 1 + } + }, + "1513": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.approve_encode_return" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 63, + "end_line": 11, + "input_file": { + "filename": "autogen/starknet/external/return/approve/3bfbf1e209a2919256f756d0aba26a37c16e14592de6048b15605ba53b428eb5.cairo" + }, + "parent_location": [ + { + "end_col": 13, + "end_line": 109, + "input_file": { + "filename": "src/utils/ERC20.cairo" + }, + "start_col": 6, + "start_line": 109 + }, + "While handling return value of" + ], + "start_col": 18, + "start_line": 11 + } + }, + "1514": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.approve_encode_return" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 35, + "end_line": 5, + "input_file": { + "filename": "autogen/starknet/external/return/approve/3bfbf1e209a2919256f756d0aba26a37c16e14592de6048b15605ba53b428eb5.cairo" + }, + "parent_location": [ + { + "end_col": 13, + "end_line": 109, + "input_file": { + "filename": "src/utils/ERC20.cairo" + }, + "parent_location": [ + { + "end_col": 38, + "end_line": 12, + "input_file": { + "filename": "autogen/starknet/external/return/approve/3bfbf1e209a2919256f756d0aba26a37c16e14592de6048b15605ba53b428eb5.cairo" + }, + "parent_location": [ + { + "end_col": 13, + "end_line": 109, + "input_file": { + "filename": "src/utils/ERC20.cairo" + }, + "start_col": 6, + "start_line": 109 + }, + "While handling return value of" + ], + "start_col": 14, + "start_line": 12 + }, + "While expanding the reference '__return_value_ptr_start' in:" + ], + "start_col": 6, + "start_line": 109 + }, + "While handling return value of" + ], + "start_col": 11, + "start_line": 5 + } + }, + "1515": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.approve_encode_return" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 40, + "end_line": 12, + "input_file": { + "filename": "autogen/starknet/external/return/approve/3bfbf1e209a2919256f756d0aba26a37c16e14592de6048b15605ba53b428eb5.cairo" + }, + "parent_location": [ + { + "end_col": 13, + "end_line": 109, + "input_file": { + "filename": "src/utils/ERC20.cairo" + }, + "start_col": 6, + "start_line": 109 + }, + "While handling return value of" + ], + "start_col": 5, + "start_line": 9 + } + }, + "1516": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.approve" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 40, + "end_line": 3, + "input_file": { + "filename": "autogen/starknet/arg_processor/98feb0f4c88833fb7f82ddd66d06f84d8ffb64f877c6f94e214b61af32d58c29.cairo" + }, + "parent_location": [ + { + "end_col": 43, + "end_line": 110, + "input_file": { + "filename": "src/utils/ERC20.cairo" + }, + "parent_location": [ + { + "end_col": 45, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/arg_processor/c31620b02d4d706f0542c989b2aadc01b0981d1f6a5933a8fe4937ace3d70d92.cairo" + }, + "parent_location": [ + { + "end_col": 13, + "end_line": 109, + "input_file": { + "filename": "src/utils/ERC20.cairo" + }, + "parent_location": [ + { + "end_col": 57, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/arg_processor/01cba52f8515996bb9d7070bde81ff39281d096d7024a558efcba6e1fd2402cf.cairo" + }, + "parent_location": [ + { + "end_col": 13, + "end_line": 109, + "input_file": { + "filename": "src/utils/ERC20.cairo" + }, + "start_col": 6, + "start_line": 109 + }, + "While handling calldata of" + ], + "start_col": 35, + "start_line": 1 + }, + "While expanding the reference '__calldata_actual_size' in:" + ], + "start_col": 6, + "start_line": 109 + }, + "While handling calldata of" + ], + "start_col": 31, + "start_line": 1 + }, + "While expanding the reference '__calldata_ptr' in:" + ], + "start_col": 28, + "start_line": 110 + }, + "While handling calldata argument 'amount'" + ], + "start_col": 22, + "start_line": 3 + } + }, + "1518": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.approve" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 58, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/arg_processor/01cba52f8515996bb9d7070bde81ff39281d096d7024a558efcba6e1fd2402cf.cairo" + }, + "parent_location": [ + { + "end_col": 13, + "end_line": 109, + "input_file": { + "filename": "src/utils/ERC20.cairo" + }, + "start_col": 6, + "start_line": 109 + }, + "While handling calldata of" + ], + "start_col": 1, + "start_line": 1 + } + }, + "1519": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.approve" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 64, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/approve/b2c52ca2d2a8fc8791a983086d8716c5eacd0c3d62934914d2286f84b98ff4cb.cairo" + }, + "parent_location": [ + { + "end_col": 32, + "end_line": 109, + "input_file": { + "filename": "src/utils/ERC20.cairo" + }, + "parent_location": [ + { + "end_col": 55, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/approve/f3536ac5ad61f737004e432be52bde56b286aecbaabdf3bc9dff7f11da327290.cairo" + }, + "parent_location": [ + { + "end_col": 13, + "end_line": 109, + "input_file": { + "filename": "src/utils/ERC20.cairo" + }, + "start_col": 6, + "start_line": 109 + }, + "While constructing the external wrapper for:" + ], + "start_col": 44, + "start_line": 1 + }, + "While expanding the reference 'syscall_ptr' in:" + ], + "start_col": 14, + "start_line": 109 + }, + "While constructing the external wrapper for:" + ], + "start_col": 19, + "start_line": 1 + } + }, + "1520": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.approve" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 110, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/approve/9684a85e93c782014ca14293edea4eb2502039a5a7b6538ecd39c56faaf12529.cairo" + }, + "parent_location": [ + { + "end_col": 60, + "end_line": 109, + "input_file": { + "filename": "src/utils/ERC20.cairo" + }, + "parent_location": [ + { + "end_col": 82, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/approve/f3536ac5ad61f737004e432be52bde56b286aecbaabdf3bc9dff7f11da327290.cairo" + }, + "parent_location": [ + { + "end_col": 13, + "end_line": 109, + "input_file": { + "filename": "src/utils/ERC20.cairo" + }, + "start_col": 6, + "start_line": 109 + }, + "While constructing the external wrapper for:" + ], + "start_col": 70, + "start_line": 1 + }, + "While expanding the reference 'pedersen_ptr' in:" + ], + "start_col": 34, + "start_line": 109 + }, + "While constructing the external wrapper for:" + ], + "start_col": 20, + "start_line": 1 + } + }, + "1521": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.approve" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 67, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/approve/741ea357d6336b0bed7bf0472425acd0311d543883b803388880e60a232040c7.cairo" + }, + "parent_location": [ + { + "end_col": 77, + "end_line": 109, + "input_file": { + "filename": "src/utils/ERC20.cairo" + }, + "parent_location": [ + { + "end_col": 115, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/approve/f3536ac5ad61f737004e432be52bde56b286aecbaabdf3bc9dff7f11da327290.cairo" + }, + "parent_location": [ + { + "end_col": 13, + "end_line": 109, + "input_file": { + "filename": "src/utils/ERC20.cairo" + }, + "start_col": 6, + "start_line": 109 + }, + "While constructing the external wrapper for:" + ], + "start_col": 100, + "start_line": 1 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 62, + "start_line": 109 + }, + "While constructing the external wrapper for:" + ], + "start_col": 23, + "start_line": 1 + } + }, + "1522": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.approve" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 54, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/arg_processor/0c7c9c2f4e4121548e141b583c9a2f54b79c720fd16f884e916a04be7c6f9fa3.cairo" + }, + "parent_location": [ + { + "end_col": 26, + "end_line": 110, + "input_file": { + "filename": "src/utils/ERC20.cairo" + }, + "parent_location": [ + { + "end_col": 163, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/approve/f3536ac5ad61f737004e432be52bde56b286aecbaabdf3bc9dff7f11da327290.cairo" + }, + "parent_location": [ + { + "end_col": 13, + "end_line": 109, + "input_file": { + "filename": "src/utils/ERC20.cairo" + }, + "start_col": 6, + "start_line": 109 + }, + "While constructing the external wrapper for:" + ], + "start_col": 133, + "start_line": 1 + }, + "While expanding the reference '__calldata_arg_spender_address' in:" + ], + "start_col": 5, + "start_line": 110 + }, + "While handling calldata argument 'spender_address'" + ], + "start_col": 38, + "start_line": 1 + } + }, + "1523": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.approve" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 67, + "end_line": 2, + "input_file": { + "filename": "autogen/starknet/arg_processor/98feb0f4c88833fb7f82ddd66d06f84d8ffb64f877c6f94e214b61af32d58c29.cairo" + }, + "parent_location": [ + { + "end_col": 43, + "end_line": 110, + "input_file": { + "filename": "src/utils/ERC20.cairo" + }, + "parent_location": [ + { + "end_col": 193, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/approve/f3536ac5ad61f737004e432be52bde56b286aecbaabdf3bc9dff7f11da327290.cairo" + }, + "parent_location": [ + { + "end_col": 13, + "end_line": 109, + "input_file": { + "filename": "src/utils/ERC20.cairo" + }, + "start_col": 6, + "start_line": 109 + }, + "While constructing the external wrapper for:" + ], + "start_col": 172, + "start_line": 1 + }, + "While expanding the reference '__calldata_arg_amount' in:" + ], + "start_col": 28, + "start_line": 110 + }, + "While handling calldata argument 'amount'" + ], + "start_col": 29, + "start_line": 1 + } + }, + "1524": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.approve" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 67, + "end_line": 2, + "input_file": { + "filename": "autogen/starknet/arg_processor/98feb0f4c88833fb7f82ddd66d06f84d8ffb64f877c6f94e214b61af32d58c29.cairo" + }, + "parent_location": [ + { + "end_col": 43, + "end_line": 110, + "input_file": { + "filename": "src/utils/ERC20.cairo" + }, + "parent_location": [ + { + "end_col": 193, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/approve/f3536ac5ad61f737004e432be52bde56b286aecbaabdf3bc9dff7f11da327290.cairo" + }, + "parent_location": [ + { + "end_col": 13, + "end_line": 109, + "input_file": { + "filename": "src/utils/ERC20.cairo" + }, + "start_col": 6, + "start_line": 109 + }, + "While constructing the external wrapper for:" + ], + "start_col": 172, + "start_line": 1 + }, + "While expanding the reference '__calldata_arg_amount' in:" + ], + "start_col": 28, + "start_line": 110 + }, + "While handling calldata argument 'amount'" + ], + "start_col": 29, + "start_line": 1 + } + }, + "1525": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.approve" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 13, + "end_line": 109, + "input_file": { + "filename": "src/utils/ERC20.cairo" + }, + "start_col": 6, + "start_line": 109 + } + }, + "1527": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.approve" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 115, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/approve/f3536ac5ad61f737004e432be52bde56b286aecbaabdf3bc9dff7f11da327290.cairo" + }, + "parent_location": [ + { + "end_col": 13, + "end_line": 109, + "input_file": { + "filename": "src/utils/ERC20.cairo" + }, + "parent_location": [ + { + "end_col": 96, + "end_line": 2, + "input_file": { + "filename": "autogen/starknet/external/approve/f3536ac5ad61f737004e432be52bde56b286aecbaabdf3bc9dff7f11da327290.cairo" + }, + "parent_location": [ + { + "end_col": 13, + "end_line": 109, + "input_file": { + "filename": "src/utils/ERC20.cairo" + }, + "start_col": 6, + "start_line": 109 + }, + "While constructing the external wrapper for:" + ], + "start_col": 81, + "start_line": 2 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 6, + "start_line": 109 + }, + "While constructing the external wrapper for:" + ], + "start_col": 100, + "start_line": 1 + } + }, + "1528": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.approve" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 97, + "end_line": 2, + "input_file": { + "filename": "autogen/starknet/external/approve/f3536ac5ad61f737004e432be52bde56b286aecbaabdf3bc9dff7f11da327290.cairo" + }, + "parent_location": [ + { + "end_col": 13, + "end_line": 109, + "input_file": { + "filename": "src/utils/ERC20.cairo" + }, + "start_col": 6, + "start_line": 109 + }, + "While constructing the external wrapper for:" + ], + "start_col": 48, + "start_line": 2 + } + }, + "1530": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.approve" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 55, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/approve/f3536ac5ad61f737004e432be52bde56b286aecbaabdf3bc9dff7f11da327290.cairo" + }, + "parent_location": [ + { + "end_col": 13, + "end_line": 109, + "input_file": { + "filename": "src/utils/ERC20.cairo" + }, + "parent_location": [ + { + "end_col": 20, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/approve/da17921a4e81c09e730800bbf23bfdbe5e9e6bfaedc59d80fbf62087fa43c27d.cairo" + }, + "parent_location": [ + { + "end_col": 13, + "end_line": 109, + "input_file": { + "filename": "src/utils/ERC20.cairo" + }, + "start_col": 6, + "start_line": 109 + }, + "While constructing the external wrapper for:" + ], + "start_col": 9, + "start_line": 1 + }, + "While expanding the reference 'syscall_ptr' in:" + ], + "start_col": 6, + "start_line": 109 + }, + "While constructing the external wrapper for:" + ], + "start_col": 44, + "start_line": 1 + } + }, + "1531": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.approve" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 82, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/approve/f3536ac5ad61f737004e432be52bde56b286aecbaabdf3bc9dff7f11da327290.cairo" + }, + "parent_location": [ + { + "end_col": 13, + "end_line": 109, + "input_file": { + "filename": "src/utils/ERC20.cairo" + }, + "parent_location": [ + { + "end_col": 33, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/approve/da17921a4e81c09e730800bbf23bfdbe5e9e6bfaedc59d80fbf62087fa43c27d.cairo" + }, + "parent_location": [ + { + "end_col": 13, + "end_line": 109, + "input_file": { + "filename": "src/utils/ERC20.cairo" + }, + "start_col": 6, + "start_line": 109 + }, + "While constructing the external wrapper for:" + ], + "start_col": 21, + "start_line": 1 + }, + "While expanding the reference 'pedersen_ptr' in:" + ], + "start_col": 6, + "start_line": 109 + }, + "While constructing the external wrapper for:" + ], + "start_col": 70, + "start_line": 1 + } + }, + "1532": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.approve" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 21, + "end_line": 2, + "input_file": { + "filename": "autogen/starknet/external/approve/f3536ac5ad61f737004e432be52bde56b286aecbaabdf3bc9dff7f11da327290.cairo" + }, + "parent_location": [ + { + "end_col": 13, + "end_line": 109, + "input_file": { + "filename": "src/utils/ERC20.cairo" + }, + "parent_location": [ + { + "end_col": 49, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/approve/da17921a4e81c09e730800bbf23bfdbe5e9e6bfaedc59d80fbf62087fa43c27d.cairo" + }, + "parent_location": [ + { + "end_col": 13, + "end_line": 109, + "input_file": { + "filename": "src/utils/ERC20.cairo" + }, + "start_col": 6, + "start_line": 109 + }, + "While constructing the external wrapper for:" + ], + "start_col": 34, + "start_line": 1 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 6, + "start_line": 109 + }, + "While constructing the external wrapper for:" + ], + "start_col": 6, + "start_line": 2 + } + }, + "1533": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.approve" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 35, + "end_line": 2, + "input_file": { + "filename": "autogen/starknet/external/approve/f3536ac5ad61f737004e432be52bde56b286aecbaabdf3bc9dff7f11da327290.cairo" + }, + "parent_location": [ + { + "end_col": 13, + "end_line": 109, + "input_file": { + "filename": "src/utils/ERC20.cairo" + }, + "parent_location": [ + { + "end_col": 62, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/approve/da17921a4e81c09e730800bbf23bfdbe5e9e6bfaedc59d80fbf62087fa43c27d.cairo" + }, + "parent_location": [ + { + "end_col": 13, + "end_line": 109, + "input_file": { + "filename": "src/utils/ERC20.cairo" + }, + "start_col": 6, + "start_line": 109 + }, + "While constructing the external wrapper for:" + ], + "start_col": 50, + "start_line": 1 + }, + "While expanding the reference 'retdata_size' in:" + ], + "start_col": 6, + "start_line": 109 + }, + "While constructing the external wrapper for:" + ], + "start_col": 23, + "start_line": 2 + } + }, + "1534": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.approve" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 44, + "end_line": 2, + "input_file": { + "filename": "autogen/starknet/external/approve/f3536ac5ad61f737004e432be52bde56b286aecbaabdf3bc9dff7f11da327290.cairo" + }, + "parent_location": [ + { + "end_col": 13, + "end_line": 109, + "input_file": { + "filename": "src/utils/ERC20.cairo" + }, + "parent_location": [ + { + "end_col": 70, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/approve/da17921a4e81c09e730800bbf23bfdbe5e9e6bfaedc59d80fbf62087fa43c27d.cairo" + }, + "parent_location": [ + { + "end_col": 13, + "end_line": 109, + "input_file": { + "filename": "src/utils/ERC20.cairo" + }, + "start_col": 6, + "start_line": 109 + }, + "While constructing the external wrapper for:" + ], + "start_col": 63, + "start_line": 1 + }, + "While expanding the reference 'retdata' in:" + ], + "start_col": 6, + "start_line": 109 + }, + "While constructing the external wrapper for:" + ], + "start_col": 37, + "start_line": 2 + } + }, + "1535": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.approve" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 72, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/approve/da17921a4e81c09e730800bbf23bfdbe5e9e6bfaedc59d80fbf62087fa43c27d.cairo" + }, + "parent_location": [ + { + "end_col": 13, + "end_line": 109, + "input_file": { + "filename": "src/utils/ERC20.cairo" + }, + "start_col": 6, + "start_line": 109 + }, + "While constructing the external wrapper for:" + ], + "start_col": 1, + "start_line": 1 + } + }, + "1536": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.increaseAllowance" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 42, + "end_line": 118, + "input_file": { + "filename": "src/utils/ERC20.cairo" + }, + "parent_location": [ + { + "end_col": 47, + "end_line": 139, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc20/library.cairo" + }, + "parent_location": [ + { + "end_col": 59, + "end_line": 121, + "input_file": { + "filename": "src/utils/ERC20.cairo" + }, + "start_col": 5, + "start_line": 121 + }, + "While trying to retrieve the implicit argument 'syscall_ptr' in:" + ], + "start_col": 29, + "start_line": 139 + }, + "While expanding the reference 'syscall_ptr' in:" + ], + "start_col": 24, + "start_line": 118 + } + }, + "1537": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.increaseAllowance" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 70, + "end_line": 118, + "input_file": { + "filename": "src/utils/ERC20.cairo" + }, + "parent_location": [ + { + "end_col": 75, + "end_line": 139, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc20/library.cairo" + }, + "parent_location": [ + { + "end_col": 59, + "end_line": 121, + "input_file": { + "filename": "src/utils/ERC20.cairo" + }, + "start_col": 5, + "start_line": 121 + }, + "While trying to retrieve the implicit argument 'pedersen_ptr' in:" + ], + "start_col": 49, + "start_line": 139 + }, + "While expanding the reference 'pedersen_ptr' in:" + ], + "start_col": 44, + "start_line": 118 + } + }, + "1538": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.increaseAllowance" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 87, + "end_line": 118, + "input_file": { + "filename": "src/utils/ERC20.cairo" + }, + "parent_location": [ + { + "end_col": 92, + "end_line": 139, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc20/library.cairo" + }, + "parent_location": [ + { + "end_col": 59, + "end_line": 121, + "input_file": { + "filename": "src/utils/ERC20.cairo" + }, + "start_col": 5, + "start_line": 121 + }, + "While trying to retrieve the implicit argument 'range_check_ptr' in:" + ], + "start_col": 77, + "start_line": 139 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 72, + "start_line": 118 + } + }, + "1539": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.increaseAllowance" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 26, + "end_line": 119, + "input_file": { + "filename": "src/utils/ERC20.cairo" + }, + "parent_location": [ + { + "end_col": 45, + "end_line": 121, + "input_file": { + "filename": "src/utils/ERC20.cairo" + }, + "start_col": 30, + "start_line": 121 + }, + "While expanding the reference 'spender_address' in:" + ], + "start_col": 5, + "start_line": 119 + } + }, + "1540": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.increaseAllowance" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 48, + "end_line": 119, + "input_file": { + "filename": "src/utils/ERC20.cairo" + }, + "parent_location": [ + { + "end_col": 58, + "end_line": 121, + "input_file": { + "filename": "src/utils/ERC20.cairo" + }, + "start_col": 47, + "start_line": 121 + }, + "While expanding the reference 'added_value' in:" + ], + "start_col": 28, + "start_line": 119 + } + }, + "1541": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.increaseAllowance" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 48, + "end_line": 119, + "input_file": { + "filename": "src/utils/ERC20.cairo" + }, + "parent_location": [ + { + "end_col": 58, + "end_line": 121, + "input_file": { + "filename": "src/utils/ERC20.cairo" + }, + "start_col": 47, + "start_line": 121 + }, + "While expanding the reference 'added_value' in:" + ], + "start_col": 28, + "start_line": 119 + } + }, + "1542": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.increaseAllowance" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 59, + "end_line": 121, + "input_file": { + "filename": "src/utils/ERC20.cairo" + }, + "start_col": 5, + "start_line": 121 + } + }, + "1544": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.increaseAllowance" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 47, + "end_line": 139, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc20/library.cairo" + }, + "parent_location": [ + { + "end_col": 59, + "end_line": 121, + "input_file": { + "filename": "src/utils/ERC20.cairo" + }, + "parent_location": [ + { + "end_col": 42, + "end_line": 118, + "input_file": { + "filename": "src/utils/ERC20.cairo" + }, + "parent_location": [ + { + "end_col": 20, + "end_line": 123, + "input_file": { + "filename": "src/utils/ERC20.cairo" + }, + "start_col": 5, + "start_line": 123 + }, + "While trying to retrieve the implicit argument 'syscall_ptr' in:" + ], + "start_col": 24, + "start_line": 118 + }, + "While expanding the reference 'syscall_ptr' in:" + ], + "start_col": 5, + "start_line": 121 + }, + "While trying to update the implicit return value 'syscall_ptr' in:" + ], + "start_col": 29, + "start_line": 139 + } + }, + "1545": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.increaseAllowance" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 75, + "end_line": 139, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc20/library.cairo" + }, + "parent_location": [ + { + "end_col": 59, + "end_line": 121, + "input_file": { + "filename": "src/utils/ERC20.cairo" + }, + "parent_location": [ + { + "end_col": 70, + "end_line": 118, + "input_file": { + "filename": "src/utils/ERC20.cairo" + }, + "parent_location": [ + { + "end_col": 20, + "end_line": 123, + "input_file": { + "filename": "src/utils/ERC20.cairo" + }, + "start_col": 5, + "start_line": 123 + }, + "While trying to retrieve the implicit argument 'pedersen_ptr' in:" + ], + "start_col": 44, + "start_line": 118 + }, + "While expanding the reference 'pedersen_ptr' in:" + ], + "start_col": 5, + "start_line": 121 + }, + "While trying to update the implicit return value 'pedersen_ptr' in:" + ], + "start_col": 49, + "start_line": 139 + } + }, + "1546": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.increaseAllowance" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 92, + "end_line": 139, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc20/library.cairo" + }, + "parent_location": [ + { + "end_col": 59, + "end_line": 121, + "input_file": { + "filename": "src/utils/ERC20.cairo" + }, + "parent_location": [ + { + "end_col": 87, + "end_line": 118, + "input_file": { + "filename": "src/utils/ERC20.cairo" + }, + "parent_location": [ + { + "end_col": 20, + "end_line": 123, + "input_file": { + "filename": "src/utils/ERC20.cairo" + }, + "start_col": 5, + "start_line": 123 + }, + "While trying to retrieve the implicit argument 'range_check_ptr' in:" + ], + "start_col": 72, + "start_line": 118 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 5, + "start_line": 121 + }, + "While trying to update the implicit return value 'range_check_ptr' in:" + ], + "start_col": 77, + "start_line": 139 + } + }, + "1547": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.increaseAllowance" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 17, + "end_line": 123, + "input_file": { + "filename": "src/utils/ERC20.cairo" + }, + "start_col": 13, + "start_line": 123 + } + }, + "1549": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.increaseAllowance" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 20, + "end_line": 123, + "input_file": { + "filename": "src/utils/ERC20.cairo" + }, + "start_col": 5, + "start_line": 123 + } + }, + "1550": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.increaseAllowance_encode_return" + ], + "flow_tracking_data": null, + "hints": [ + { + "location": { + "end_col": 38, + "end_line": 3, + "input_file": { + "filename": "autogen/starknet/external/return/increaseAllowance/78c2ccee093b5589a139bd81b558b403837f815524d6dfc3d4af5f60c03fbc80.cairo" + }, + "parent_location": [ + { + "end_col": 23, + "end_line": 118, + "input_file": { + "filename": "src/utils/ERC20.cairo" + }, + "start_col": 6, + "start_line": 118 + }, + "While handling return value of" + ], + "start_col": 5, + "start_line": 3 + }, + "n_prefix_newlines": 0 + } + ], + "inst": { + "end_col": 18, + "end_line": 4, + "input_file": { + "filename": "autogen/starknet/external/return/increaseAllowance/78c2ccee093b5589a139bd81b558b403837f815524d6dfc3d4af5f60c03fbc80.cairo" + }, + "parent_location": [ + { + "end_col": 23, + "end_line": 118, + "input_file": { + "filename": "src/utils/ERC20.cairo" + }, + "start_col": 6, + "start_line": 118 + }, + "While handling return value of" + ], + "start_col": 5, + "start_line": 4 + } + }, + "1552": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.increaseAllowance_encode_return" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 49, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/arg_processor/5c10028f67364b153272aa9b4cbc0fb78920a40fab821ac7257b0069e0773b49.cairo" + }, + "parent_location": [ + { + "end_col": 20, + "end_line": 120, + "input_file": { + "filename": "src/utils/ERC20.cairo" + }, + "start_col": 7, + "start_line": 120 + }, + "While handling return value 'success'" + ], + "start_col": 1, + "start_line": 1 + } + }, + "1553": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.increaseAllowance_encode_return" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 48, + "end_line": 2, + "input_file": { + "filename": "autogen/starknet/arg_processor/5c10028f67364b153272aa9b4cbc0fb78920a40fab821ac7257b0069e0773b49.cairo" + }, + "parent_location": [ + { + "end_col": 20, + "end_line": 120, + "input_file": { + "filename": "src/utils/ERC20.cairo" + }, + "parent_location": [ + { + "end_col": 36, + "end_line": 11, + "input_file": { + "filename": "autogen/starknet/external/return/increaseAllowance/78c2ccee093b5589a139bd81b558b403837f815524d6dfc3d4af5f60c03fbc80.cairo" + }, + "parent_location": [ + { + "end_col": 23, + "end_line": 118, + "input_file": { + "filename": "src/utils/ERC20.cairo" + }, + "start_col": 6, + "start_line": 118 + }, + "While handling return value of" + ], + "start_col": 18, + "start_line": 11 + }, + "While expanding the reference '__return_value_ptr' in:" + ], + "start_col": 7, + "start_line": 120 + }, + "While handling return value 'success'" + ], + "start_col": 26, + "start_line": 2 + } + }, + "1555": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.increaseAllowance_encode_return" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 81, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/return/increaseAllowance/78c2ccee093b5589a139bd81b558b403837f815524d6dfc3d4af5f60c03fbc80.cairo" + }, + "parent_location": [ + { + "end_col": 23, + "end_line": 118, + "input_file": { + "filename": "src/utils/ERC20.cairo" + }, + "parent_location": [ + { + "end_col": 40, + "end_line": 10, + "input_file": { + "filename": "autogen/starknet/external/return/increaseAllowance/78c2ccee093b5589a139bd81b558b403837f815524d6dfc3d4af5f60c03fbc80.cairo" + }, + "parent_location": [ + { + "end_col": 23, + "end_line": 118, + "input_file": { + "filename": "src/utils/ERC20.cairo" + }, + "start_col": 6, + "start_line": 118 + }, + "While handling return value of" + ], + "start_col": 25, + "start_line": 10 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 6, + "start_line": 118 + }, + "While handling return value of" + ], + "start_col": 66, + "start_line": 1 + } + }, + "1556": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.increaseAllowance_encode_return" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 63, + "end_line": 11, + "input_file": { + "filename": "autogen/starknet/external/return/increaseAllowance/78c2ccee093b5589a139bd81b558b403837f815524d6dfc3d4af5f60c03fbc80.cairo" + }, + "parent_location": [ + { + "end_col": 23, + "end_line": 118, + "input_file": { + "filename": "src/utils/ERC20.cairo" + }, + "start_col": 6, + "start_line": 118 + }, + "While handling return value of" + ], + "start_col": 18, + "start_line": 11 + } + }, + "1557": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.increaseAllowance_encode_return" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 35, + "end_line": 5, + "input_file": { + "filename": "autogen/starknet/external/return/increaseAllowance/78c2ccee093b5589a139bd81b558b403837f815524d6dfc3d4af5f60c03fbc80.cairo" + }, + "parent_location": [ + { + "end_col": 23, + "end_line": 118, + "input_file": { + "filename": "src/utils/ERC20.cairo" + }, + "parent_location": [ + { + "end_col": 38, + "end_line": 12, + "input_file": { + "filename": "autogen/starknet/external/return/increaseAllowance/78c2ccee093b5589a139bd81b558b403837f815524d6dfc3d4af5f60c03fbc80.cairo" + }, + "parent_location": [ + { + "end_col": 23, + "end_line": 118, + "input_file": { + "filename": "src/utils/ERC20.cairo" + }, + "start_col": 6, + "start_line": 118 + }, + "While handling return value of" + ], + "start_col": 14, + "start_line": 12 + }, + "While expanding the reference '__return_value_ptr_start' in:" + ], + "start_col": 6, + "start_line": 118 + }, + "While handling return value of" + ], + "start_col": 11, + "start_line": 5 + } + }, + "1558": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.increaseAllowance_encode_return" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 40, + "end_line": 12, + "input_file": { + "filename": "autogen/starknet/external/return/increaseAllowance/78c2ccee093b5589a139bd81b558b403837f815524d6dfc3d4af5f60c03fbc80.cairo" + }, + "parent_location": [ + { + "end_col": 23, + "end_line": 118, + "input_file": { + "filename": "src/utils/ERC20.cairo" + }, + "start_col": 6, + "start_line": 118 + }, + "While handling return value of" + ], + "start_col": 5, + "start_line": 9 + } + }, + "1559": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.increaseAllowance" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 40, + "end_line": 3, + "input_file": { + "filename": "autogen/starknet/arg_processor/4ea8e9956f949bdcf8a2402f5fbdc50c902b2a9cd6640c5bec657657d079f916.cairo" + }, + "parent_location": [ + { + "end_col": 48, + "end_line": 119, + "input_file": { + "filename": "src/utils/ERC20.cairo" + }, + "parent_location": [ + { + "end_col": 45, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/arg_processor/c31620b02d4d706f0542c989b2aadc01b0981d1f6a5933a8fe4937ace3d70d92.cairo" + }, + "parent_location": [ + { + "end_col": 23, + "end_line": 118, + "input_file": { + "filename": "src/utils/ERC20.cairo" + }, + "parent_location": [ + { + "end_col": 57, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/arg_processor/01cba52f8515996bb9d7070bde81ff39281d096d7024a558efcba6e1fd2402cf.cairo" + }, + "parent_location": [ + { + "end_col": 23, + "end_line": 118, + "input_file": { + "filename": "src/utils/ERC20.cairo" + }, + "start_col": 6, + "start_line": 118 + }, + "While handling calldata of" + ], + "start_col": 35, + "start_line": 1 + }, + "While expanding the reference '__calldata_actual_size' in:" + ], + "start_col": 6, + "start_line": 118 + }, + "While handling calldata of" + ], + "start_col": 31, + "start_line": 1 + }, + "While expanding the reference '__calldata_ptr' in:" + ], + "start_col": 28, + "start_line": 119 + }, + "While handling calldata argument 'added_value'" + ], + "start_col": 22, + "start_line": 3 + } + }, + "1561": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.increaseAllowance" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 58, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/arg_processor/01cba52f8515996bb9d7070bde81ff39281d096d7024a558efcba6e1fd2402cf.cairo" + }, + "parent_location": [ + { + "end_col": 23, + "end_line": 118, + "input_file": { + "filename": "src/utils/ERC20.cairo" + }, + "start_col": 6, + "start_line": 118 + }, + "While handling calldata of" + ], + "start_col": 1, + "start_line": 1 + } + }, + "1562": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.increaseAllowance" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 64, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/increaseAllowance/b2c52ca2d2a8fc8791a983086d8716c5eacd0c3d62934914d2286f84b98ff4cb.cairo" + }, + "parent_location": [ + { + "end_col": 42, + "end_line": 118, + "input_file": { + "filename": "src/utils/ERC20.cairo" + }, + "parent_location": [ + { + "end_col": 55, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/increaseAllowance/91df08984917b151369abc8e9e5ada5240e60eb9fcee0c777928387d015b56d5.cairo" + }, + "parent_location": [ + { + "end_col": 23, + "end_line": 118, + "input_file": { + "filename": "src/utils/ERC20.cairo" + }, + "start_col": 6, + "start_line": 118 + }, + "While constructing the external wrapper for:" + ], + "start_col": 44, + "start_line": 1 + }, + "While expanding the reference 'syscall_ptr' in:" + ], + "start_col": 24, + "start_line": 118 + }, + "While constructing the external wrapper for:" + ], + "start_col": 19, + "start_line": 1 + } + }, + "1563": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.increaseAllowance" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 110, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/increaseAllowance/9684a85e93c782014ca14293edea4eb2502039a5a7b6538ecd39c56faaf12529.cairo" + }, + "parent_location": [ + { + "end_col": 70, + "end_line": 118, + "input_file": { + "filename": "src/utils/ERC20.cairo" + }, + "parent_location": [ + { + "end_col": 82, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/increaseAllowance/91df08984917b151369abc8e9e5ada5240e60eb9fcee0c777928387d015b56d5.cairo" + }, + "parent_location": [ + { + "end_col": 23, + "end_line": 118, + "input_file": { + "filename": "src/utils/ERC20.cairo" + }, + "start_col": 6, + "start_line": 118 + }, + "While constructing the external wrapper for:" + ], + "start_col": 70, + "start_line": 1 + }, + "While expanding the reference 'pedersen_ptr' in:" + ], + "start_col": 44, + "start_line": 118 + }, + "While constructing the external wrapper for:" + ], + "start_col": 20, + "start_line": 1 + } + }, + "1564": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.increaseAllowance" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 67, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/increaseAllowance/741ea357d6336b0bed7bf0472425acd0311d543883b803388880e60a232040c7.cairo" + }, + "parent_location": [ + { + "end_col": 87, + "end_line": 118, + "input_file": { + "filename": "src/utils/ERC20.cairo" + }, + "parent_location": [ + { + "end_col": 115, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/increaseAllowance/91df08984917b151369abc8e9e5ada5240e60eb9fcee0c777928387d015b56d5.cairo" + }, + "parent_location": [ + { + "end_col": 23, + "end_line": 118, + "input_file": { + "filename": "src/utils/ERC20.cairo" + }, + "start_col": 6, + "start_line": 118 + }, + "While constructing the external wrapper for:" + ], + "start_col": 100, + "start_line": 1 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 72, + "start_line": 118 + }, + "While constructing the external wrapper for:" + ], + "start_col": 23, + "start_line": 1 + } + }, + "1565": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.increaseAllowance" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 54, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/arg_processor/0c7c9c2f4e4121548e141b583c9a2f54b79c720fd16f884e916a04be7c6f9fa3.cairo" + }, + "parent_location": [ + { + "end_col": 26, + "end_line": 119, + "input_file": { + "filename": "src/utils/ERC20.cairo" + }, + "parent_location": [ + { + "end_col": 163, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/increaseAllowance/91df08984917b151369abc8e9e5ada5240e60eb9fcee0c777928387d015b56d5.cairo" + }, + "parent_location": [ + { + "end_col": 23, + "end_line": 118, + "input_file": { + "filename": "src/utils/ERC20.cairo" + }, + "start_col": 6, + "start_line": 118 + }, + "While constructing the external wrapper for:" + ], + "start_col": 133, + "start_line": 1 + }, + "While expanding the reference '__calldata_arg_spender_address' in:" + ], + "start_col": 5, + "start_line": 119 + }, + "While handling calldata argument 'spender_address'" + ], + "start_col": 38, + "start_line": 1 + } + }, + "1566": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.increaseAllowance" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 67, + "end_line": 2, + "input_file": { + "filename": "autogen/starknet/arg_processor/4ea8e9956f949bdcf8a2402f5fbdc50c902b2a9cd6640c5bec657657d079f916.cairo" + }, + "parent_location": [ + { + "end_col": 48, + "end_line": 119, + "input_file": { + "filename": "src/utils/ERC20.cairo" + }, + "parent_location": [ + { + "end_col": 203, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/increaseAllowance/91df08984917b151369abc8e9e5ada5240e60eb9fcee0c777928387d015b56d5.cairo" + }, + "parent_location": [ + { + "end_col": 23, + "end_line": 118, + "input_file": { + "filename": "src/utils/ERC20.cairo" + }, + "start_col": 6, + "start_line": 118 + }, + "While constructing the external wrapper for:" + ], + "start_col": 177, + "start_line": 1 + }, + "While expanding the reference '__calldata_arg_added_value' in:" + ], + "start_col": 28, + "start_line": 119 + }, + "While handling calldata argument 'added_value'" + ], + "start_col": 34, + "start_line": 1 + } + }, + "1567": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.increaseAllowance" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 67, + "end_line": 2, + "input_file": { + "filename": "autogen/starknet/arg_processor/4ea8e9956f949bdcf8a2402f5fbdc50c902b2a9cd6640c5bec657657d079f916.cairo" + }, + "parent_location": [ + { + "end_col": 48, + "end_line": 119, + "input_file": { + "filename": "src/utils/ERC20.cairo" + }, + "parent_location": [ + { + "end_col": 203, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/increaseAllowance/91df08984917b151369abc8e9e5ada5240e60eb9fcee0c777928387d015b56d5.cairo" + }, + "parent_location": [ + { + "end_col": 23, + "end_line": 118, + "input_file": { + "filename": "src/utils/ERC20.cairo" + }, + "start_col": 6, + "start_line": 118 + }, + "While constructing the external wrapper for:" + ], + "start_col": 177, + "start_line": 1 + }, + "While expanding the reference '__calldata_arg_added_value' in:" + ], + "start_col": 28, + "start_line": 119 + }, + "While handling calldata argument 'added_value'" + ], + "start_col": 34, + "start_line": 1 + } + }, + "1568": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.increaseAllowance" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 23, + "end_line": 118, + "input_file": { + "filename": "src/utils/ERC20.cairo" + }, + "start_col": 6, + "start_line": 118 + } + }, + "1570": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.increaseAllowance" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 115, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/increaseAllowance/91df08984917b151369abc8e9e5ada5240e60eb9fcee0c777928387d015b56d5.cairo" + }, + "parent_location": [ + { + "end_col": 23, + "end_line": 118, + "input_file": { + "filename": "src/utils/ERC20.cairo" + }, + "parent_location": [ + { + "end_col": 106, + "end_line": 2, + "input_file": { + "filename": "autogen/starknet/external/increaseAllowance/91df08984917b151369abc8e9e5ada5240e60eb9fcee0c777928387d015b56d5.cairo" + }, + "parent_location": [ + { + "end_col": 23, + "end_line": 118, + "input_file": { + "filename": "src/utils/ERC20.cairo" + }, + "start_col": 6, + "start_line": 118 + }, + "While constructing the external wrapper for:" + ], + "start_col": 91, + "start_line": 2 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 6, + "start_line": 118 + }, + "While constructing the external wrapper for:" + ], + "start_col": 100, + "start_line": 1 + } + }, + "1571": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.increaseAllowance" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 107, + "end_line": 2, + "input_file": { + "filename": "autogen/starknet/external/increaseAllowance/91df08984917b151369abc8e9e5ada5240e60eb9fcee0c777928387d015b56d5.cairo" + }, + "parent_location": [ + { + "end_col": 23, + "end_line": 118, + "input_file": { + "filename": "src/utils/ERC20.cairo" + }, + "start_col": 6, + "start_line": 118 + }, + "While constructing the external wrapper for:" + ], + "start_col": 48, + "start_line": 2 + } + }, + "1573": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.increaseAllowance" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 55, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/increaseAllowance/91df08984917b151369abc8e9e5ada5240e60eb9fcee0c777928387d015b56d5.cairo" + }, + "parent_location": [ + { + "end_col": 23, + "end_line": 118, + "input_file": { + "filename": "src/utils/ERC20.cairo" + }, + "parent_location": [ + { + "end_col": 20, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/increaseAllowance/da17921a4e81c09e730800bbf23bfdbe5e9e6bfaedc59d80fbf62087fa43c27d.cairo" + }, + "parent_location": [ + { + "end_col": 23, + "end_line": 118, + "input_file": { + "filename": "src/utils/ERC20.cairo" + }, + "start_col": 6, + "start_line": 118 + }, + "While constructing the external wrapper for:" + ], + "start_col": 9, + "start_line": 1 + }, + "While expanding the reference 'syscall_ptr' in:" + ], + "start_col": 6, + "start_line": 118 + }, + "While constructing the external wrapper for:" + ], + "start_col": 44, + "start_line": 1 + } + }, + "1574": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.increaseAllowance" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 82, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/increaseAllowance/91df08984917b151369abc8e9e5ada5240e60eb9fcee0c777928387d015b56d5.cairo" + }, + "parent_location": [ + { + "end_col": 23, + "end_line": 118, + "input_file": { + "filename": "src/utils/ERC20.cairo" + }, + "parent_location": [ + { + "end_col": 33, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/increaseAllowance/da17921a4e81c09e730800bbf23bfdbe5e9e6bfaedc59d80fbf62087fa43c27d.cairo" + }, + "parent_location": [ + { + "end_col": 23, + "end_line": 118, + "input_file": { + "filename": "src/utils/ERC20.cairo" + }, + "start_col": 6, + "start_line": 118 + }, + "While constructing the external wrapper for:" + ], + "start_col": 21, + "start_line": 1 + }, + "While expanding the reference 'pedersen_ptr' in:" + ], + "start_col": 6, + "start_line": 118 + }, + "While constructing the external wrapper for:" + ], + "start_col": 70, + "start_line": 1 + } + }, + "1575": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.increaseAllowance" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 21, + "end_line": 2, + "input_file": { + "filename": "autogen/starknet/external/increaseAllowance/91df08984917b151369abc8e9e5ada5240e60eb9fcee0c777928387d015b56d5.cairo" + }, + "parent_location": [ + { + "end_col": 23, + "end_line": 118, + "input_file": { + "filename": "src/utils/ERC20.cairo" + }, + "parent_location": [ + { + "end_col": 49, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/increaseAllowance/da17921a4e81c09e730800bbf23bfdbe5e9e6bfaedc59d80fbf62087fa43c27d.cairo" + }, + "parent_location": [ + { + "end_col": 23, + "end_line": 118, + "input_file": { + "filename": "src/utils/ERC20.cairo" + }, + "start_col": 6, + "start_line": 118 + }, + "While constructing the external wrapper for:" + ], + "start_col": 34, + "start_line": 1 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 6, + "start_line": 118 + }, + "While constructing the external wrapper for:" + ], + "start_col": 6, + "start_line": 2 + } + }, + "1576": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.increaseAllowance" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 35, + "end_line": 2, + "input_file": { + "filename": "autogen/starknet/external/increaseAllowance/91df08984917b151369abc8e9e5ada5240e60eb9fcee0c777928387d015b56d5.cairo" + }, + "parent_location": [ + { + "end_col": 23, + "end_line": 118, + "input_file": { + "filename": "src/utils/ERC20.cairo" + }, + "parent_location": [ + { + "end_col": 62, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/increaseAllowance/da17921a4e81c09e730800bbf23bfdbe5e9e6bfaedc59d80fbf62087fa43c27d.cairo" + }, + "parent_location": [ + { + "end_col": 23, + "end_line": 118, + "input_file": { + "filename": "src/utils/ERC20.cairo" + }, + "start_col": 6, + "start_line": 118 + }, + "While constructing the external wrapper for:" + ], + "start_col": 50, + "start_line": 1 + }, + "While expanding the reference 'retdata_size' in:" + ], + "start_col": 6, + "start_line": 118 + }, + "While constructing the external wrapper for:" + ], + "start_col": 23, + "start_line": 2 + } + }, + "1577": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.increaseAllowance" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 44, + "end_line": 2, + "input_file": { + "filename": "autogen/starknet/external/increaseAllowance/91df08984917b151369abc8e9e5ada5240e60eb9fcee0c777928387d015b56d5.cairo" + }, + "parent_location": [ + { + "end_col": 23, + "end_line": 118, + "input_file": { + "filename": "src/utils/ERC20.cairo" + }, + "parent_location": [ + { + "end_col": 70, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/increaseAllowance/da17921a4e81c09e730800bbf23bfdbe5e9e6bfaedc59d80fbf62087fa43c27d.cairo" + }, + "parent_location": [ + { + "end_col": 23, + "end_line": 118, + "input_file": { + "filename": "src/utils/ERC20.cairo" + }, + "start_col": 6, + "start_line": 118 + }, + "While constructing the external wrapper for:" + ], + "start_col": 63, + "start_line": 1 + }, + "While expanding the reference 'retdata' in:" + ], + "start_col": 6, + "start_line": 118 + }, + "While constructing the external wrapper for:" + ], + "start_col": 37, + "start_line": 2 + } + }, + "1578": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.increaseAllowance" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 72, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/increaseAllowance/da17921a4e81c09e730800bbf23bfdbe5e9e6bfaedc59d80fbf62087fa43c27d.cairo" + }, + "parent_location": [ + { + "end_col": 23, + "end_line": 118, + "input_file": { + "filename": "src/utils/ERC20.cairo" + }, + "start_col": 6, + "start_line": 118 + }, + "While constructing the external wrapper for:" + ], + "start_col": 1, + "start_line": 1 + } + }, + "1579": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.decreaseAllowance" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 42, + "end_line": 127, + "input_file": { + "filename": "src/utils/ERC20.cairo" + }, + "parent_location": [ + { + "end_col": 47, + "end_line": 158, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc20/library.cairo" + }, + "parent_location": [ + { + "end_col": 64, + "end_line": 130, + "input_file": { + "filename": "src/utils/ERC20.cairo" + }, + "start_col": 5, + "start_line": 130 + }, + "While trying to retrieve the implicit argument 'syscall_ptr' in:" + ], + "start_col": 29, + "start_line": 158 + }, + "While expanding the reference 'syscall_ptr' in:" + ], + "start_col": 24, + "start_line": 127 + } + }, + "1580": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.decreaseAllowance" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 70, + "end_line": 127, + "input_file": { + "filename": "src/utils/ERC20.cairo" + }, + "parent_location": [ + { + "end_col": 75, + "end_line": 158, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc20/library.cairo" + }, + "parent_location": [ + { + "end_col": 64, + "end_line": 130, + "input_file": { + "filename": "src/utils/ERC20.cairo" + }, + "start_col": 5, + "start_line": 130 + }, + "While trying to retrieve the implicit argument 'pedersen_ptr' in:" + ], + "start_col": 49, + "start_line": 158 + }, + "While expanding the reference 'pedersen_ptr' in:" + ], + "start_col": 44, + "start_line": 127 + } + }, + "1581": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.decreaseAllowance" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 87, + "end_line": 127, + "input_file": { + "filename": "src/utils/ERC20.cairo" + }, + "parent_location": [ + { + "end_col": 92, + "end_line": 158, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc20/library.cairo" + }, + "parent_location": [ + { + "end_col": 64, + "end_line": 130, + "input_file": { + "filename": "src/utils/ERC20.cairo" + }, + "start_col": 5, + "start_line": 130 + }, + "While trying to retrieve the implicit argument 'range_check_ptr' in:" + ], + "start_col": 77, + "start_line": 158 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 72, + "start_line": 127 + } + }, + "1582": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.decreaseAllowance" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 26, + "end_line": 128, + "input_file": { + "filename": "src/utils/ERC20.cairo" + }, + "parent_location": [ + { + "end_col": 45, + "end_line": 130, + "input_file": { + "filename": "src/utils/ERC20.cairo" + }, + "start_col": 30, + "start_line": 130 + }, + "While expanding the reference 'spender_address' in:" + ], + "start_col": 5, + "start_line": 128 + } + }, + "1583": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.decreaseAllowance" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 53, + "end_line": 128, + "input_file": { + "filename": "src/utils/ERC20.cairo" + }, + "parent_location": [ + { + "end_col": 63, + "end_line": 130, + "input_file": { + "filename": "src/utils/ERC20.cairo" + }, + "start_col": 47, + "start_line": 130 + }, + "While expanding the reference 'subtracted_value' in:" + ], + "start_col": 28, + "start_line": 128 + } + }, + "1584": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.decreaseAllowance" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 53, + "end_line": 128, + "input_file": { + "filename": "src/utils/ERC20.cairo" + }, + "parent_location": [ + { + "end_col": 63, + "end_line": 130, + "input_file": { + "filename": "src/utils/ERC20.cairo" + }, + "start_col": 47, + "start_line": 130 + }, + "While expanding the reference 'subtracted_value' in:" + ], + "start_col": 28, + "start_line": 128 + } + }, + "1585": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.decreaseAllowance" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 64, + "end_line": 130, + "input_file": { + "filename": "src/utils/ERC20.cairo" + }, + "start_col": 5, + "start_line": 130 + } + }, + "1587": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.decreaseAllowance" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 47, + "end_line": 158, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc20/library.cairo" + }, + "parent_location": [ + { + "end_col": 64, + "end_line": 130, + "input_file": { + "filename": "src/utils/ERC20.cairo" + }, + "parent_location": [ + { + "end_col": 42, + "end_line": 127, + "input_file": { + "filename": "src/utils/ERC20.cairo" + }, + "parent_location": [ + { + "end_col": 20, + "end_line": 132, + "input_file": { + "filename": "src/utils/ERC20.cairo" + }, + "start_col": 5, + "start_line": 132 + }, + "While trying to retrieve the implicit argument 'syscall_ptr' in:" + ], + "start_col": 24, + "start_line": 127 + }, + "While expanding the reference 'syscall_ptr' in:" + ], + "start_col": 5, + "start_line": 130 + }, + "While trying to update the implicit return value 'syscall_ptr' in:" + ], + "start_col": 29, + "start_line": 158 + } + }, + "1588": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.decreaseAllowance" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 75, + "end_line": 158, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc20/library.cairo" + }, + "parent_location": [ + { + "end_col": 64, + "end_line": 130, + "input_file": { + "filename": "src/utils/ERC20.cairo" + }, + "parent_location": [ + { + "end_col": 70, + "end_line": 127, + "input_file": { + "filename": "src/utils/ERC20.cairo" + }, + "parent_location": [ + { + "end_col": 20, + "end_line": 132, + "input_file": { + "filename": "src/utils/ERC20.cairo" + }, + "start_col": 5, + "start_line": 132 + }, + "While trying to retrieve the implicit argument 'pedersen_ptr' in:" + ], + "start_col": 44, + "start_line": 127 + }, + "While expanding the reference 'pedersen_ptr' in:" + ], + "start_col": 5, + "start_line": 130 + }, + "While trying to update the implicit return value 'pedersen_ptr' in:" + ], + "start_col": 49, + "start_line": 158 + } + }, + "1589": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.decreaseAllowance" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 92, + "end_line": 158, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc20/library.cairo" + }, + "parent_location": [ + { + "end_col": 64, + "end_line": 130, + "input_file": { + "filename": "src/utils/ERC20.cairo" + }, + "parent_location": [ + { + "end_col": 87, + "end_line": 127, + "input_file": { + "filename": "src/utils/ERC20.cairo" + }, + "parent_location": [ + { + "end_col": 20, + "end_line": 132, + "input_file": { + "filename": "src/utils/ERC20.cairo" + }, + "start_col": 5, + "start_line": 132 + }, + "While trying to retrieve the implicit argument 'range_check_ptr' in:" + ], + "start_col": 72, + "start_line": 127 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 5, + "start_line": 130 + }, + "While trying to update the implicit return value 'range_check_ptr' in:" + ], + "start_col": 77, + "start_line": 158 + } + }, + "1590": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.decreaseAllowance" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 17, + "end_line": 132, + "input_file": { + "filename": "src/utils/ERC20.cairo" + }, + "start_col": 13, + "start_line": 132 + } + }, + "1592": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.decreaseAllowance" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 20, + "end_line": 132, + "input_file": { + "filename": "src/utils/ERC20.cairo" + }, + "start_col": 5, + "start_line": 132 + } + }, + "1593": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.decreaseAllowance_encode_return" + ], + "flow_tracking_data": null, + "hints": [ + { + "location": { + "end_col": 38, + "end_line": 3, + "input_file": { + "filename": "autogen/starknet/external/return/decreaseAllowance/fa23cad4bedb82a75f6cde39bb37d0da695f0c4ce70ab41f6b2240cbbdb1c250.cairo" + }, + "parent_location": [ + { + "end_col": 23, + "end_line": 127, + "input_file": { + "filename": "src/utils/ERC20.cairo" + }, + "start_col": 6, + "start_line": 127 + }, + "While handling return value of" + ], + "start_col": 5, + "start_line": 3 + }, + "n_prefix_newlines": 0 + } + ], + "inst": { + "end_col": 18, + "end_line": 4, + "input_file": { + "filename": "autogen/starknet/external/return/decreaseAllowance/fa23cad4bedb82a75f6cde39bb37d0da695f0c4ce70ab41f6b2240cbbdb1c250.cairo" + }, + "parent_location": [ + { + "end_col": 23, + "end_line": 127, + "input_file": { + "filename": "src/utils/ERC20.cairo" + }, + "start_col": 6, + "start_line": 127 + }, + "While handling return value of" + ], + "start_col": 5, + "start_line": 4 + } + }, + "1595": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.decreaseAllowance_encode_return" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 49, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/arg_processor/5c10028f67364b153272aa9b4cbc0fb78920a40fab821ac7257b0069e0773b49.cairo" + }, + "parent_location": [ + { + "end_col": 20, + "end_line": 129, + "input_file": { + "filename": "src/utils/ERC20.cairo" + }, + "start_col": 7, + "start_line": 129 + }, + "While handling return value 'success'" + ], + "start_col": 1, + "start_line": 1 + } + }, + "1596": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.decreaseAllowance_encode_return" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 48, + "end_line": 2, + "input_file": { + "filename": "autogen/starknet/arg_processor/5c10028f67364b153272aa9b4cbc0fb78920a40fab821ac7257b0069e0773b49.cairo" + }, + "parent_location": [ + { + "end_col": 20, + "end_line": 129, + "input_file": { + "filename": "src/utils/ERC20.cairo" + }, + "parent_location": [ + { + "end_col": 36, + "end_line": 11, + "input_file": { + "filename": "autogen/starknet/external/return/decreaseAllowance/fa23cad4bedb82a75f6cde39bb37d0da695f0c4ce70ab41f6b2240cbbdb1c250.cairo" + }, + "parent_location": [ + { + "end_col": 23, + "end_line": 127, + "input_file": { + "filename": "src/utils/ERC20.cairo" + }, + "start_col": 6, + "start_line": 127 + }, + "While handling return value of" + ], + "start_col": 18, + "start_line": 11 + }, + "While expanding the reference '__return_value_ptr' in:" + ], + "start_col": 7, + "start_line": 129 + }, + "While handling return value 'success'" + ], + "start_col": 26, + "start_line": 2 + } + }, + "1598": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.decreaseAllowance_encode_return" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 81, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/return/decreaseAllowance/fa23cad4bedb82a75f6cde39bb37d0da695f0c4ce70ab41f6b2240cbbdb1c250.cairo" + }, + "parent_location": [ + { + "end_col": 23, + "end_line": 127, + "input_file": { + "filename": "src/utils/ERC20.cairo" + }, + "parent_location": [ + { + "end_col": 40, + "end_line": 10, + "input_file": { + "filename": "autogen/starknet/external/return/decreaseAllowance/fa23cad4bedb82a75f6cde39bb37d0da695f0c4ce70ab41f6b2240cbbdb1c250.cairo" + }, + "parent_location": [ + { + "end_col": 23, + "end_line": 127, + "input_file": { + "filename": "src/utils/ERC20.cairo" + }, + "start_col": 6, + "start_line": 127 + }, + "While handling return value of" + ], + "start_col": 25, + "start_line": 10 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 6, + "start_line": 127 + }, + "While handling return value of" + ], + "start_col": 66, + "start_line": 1 + } + }, + "1599": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.decreaseAllowance_encode_return" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 63, + "end_line": 11, + "input_file": { + "filename": "autogen/starknet/external/return/decreaseAllowance/fa23cad4bedb82a75f6cde39bb37d0da695f0c4ce70ab41f6b2240cbbdb1c250.cairo" + }, + "parent_location": [ + { + "end_col": 23, + "end_line": 127, + "input_file": { + "filename": "src/utils/ERC20.cairo" + }, + "start_col": 6, + "start_line": 127 + }, + "While handling return value of" + ], + "start_col": 18, + "start_line": 11 + } + }, + "1600": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.decreaseAllowance_encode_return" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 35, + "end_line": 5, + "input_file": { + "filename": "autogen/starknet/external/return/decreaseAllowance/fa23cad4bedb82a75f6cde39bb37d0da695f0c4ce70ab41f6b2240cbbdb1c250.cairo" + }, + "parent_location": [ + { + "end_col": 23, + "end_line": 127, + "input_file": { + "filename": "src/utils/ERC20.cairo" + }, + "parent_location": [ + { + "end_col": 38, + "end_line": 12, + "input_file": { + "filename": "autogen/starknet/external/return/decreaseAllowance/fa23cad4bedb82a75f6cde39bb37d0da695f0c4ce70ab41f6b2240cbbdb1c250.cairo" + }, + "parent_location": [ + { + "end_col": 23, + "end_line": 127, + "input_file": { + "filename": "src/utils/ERC20.cairo" + }, + "start_col": 6, + "start_line": 127 + }, + "While handling return value of" + ], + "start_col": 14, + "start_line": 12 + }, + "While expanding the reference '__return_value_ptr_start' in:" + ], + "start_col": 6, + "start_line": 127 + }, + "While handling return value of" + ], + "start_col": 11, + "start_line": 5 + } + }, + "1601": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.decreaseAllowance_encode_return" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 40, + "end_line": 12, + "input_file": { + "filename": "autogen/starknet/external/return/decreaseAllowance/fa23cad4bedb82a75f6cde39bb37d0da695f0c4ce70ab41f6b2240cbbdb1c250.cairo" + }, + "parent_location": [ + { + "end_col": 23, + "end_line": 127, + "input_file": { + "filename": "src/utils/ERC20.cairo" + }, + "start_col": 6, + "start_line": 127 + }, + "While handling return value of" + ], + "start_col": 5, + "start_line": 9 + } + }, + "1602": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.decreaseAllowance" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 40, + "end_line": 3, + "input_file": { + "filename": "autogen/starknet/arg_processor/088fc10f121c4edf0412d2bc1088f20f4b09fa1a3902dfc21b754224dcfd427e.cairo" + }, + "parent_location": [ + { + "end_col": 53, + "end_line": 128, + "input_file": { + "filename": "src/utils/ERC20.cairo" + }, + "parent_location": [ + { + "end_col": 45, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/arg_processor/c31620b02d4d706f0542c989b2aadc01b0981d1f6a5933a8fe4937ace3d70d92.cairo" + }, + "parent_location": [ + { + "end_col": 23, + "end_line": 127, + "input_file": { + "filename": "src/utils/ERC20.cairo" + }, + "parent_location": [ + { + "end_col": 57, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/arg_processor/01cba52f8515996bb9d7070bde81ff39281d096d7024a558efcba6e1fd2402cf.cairo" + }, + "parent_location": [ + { + "end_col": 23, + "end_line": 127, + "input_file": { + "filename": "src/utils/ERC20.cairo" + }, + "start_col": 6, + "start_line": 127 + }, + "While handling calldata of" + ], + "start_col": 35, + "start_line": 1 + }, + "While expanding the reference '__calldata_actual_size' in:" + ], + "start_col": 6, + "start_line": 127 + }, + "While handling calldata of" + ], + "start_col": 31, + "start_line": 1 + }, + "While expanding the reference '__calldata_ptr' in:" + ], + "start_col": 28, + "start_line": 128 + }, + "While handling calldata argument 'subtracted_value'" + ], + "start_col": 22, + "start_line": 3 + } + }, + "1604": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.decreaseAllowance" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 58, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/arg_processor/01cba52f8515996bb9d7070bde81ff39281d096d7024a558efcba6e1fd2402cf.cairo" + }, + "parent_location": [ + { + "end_col": 23, + "end_line": 127, + "input_file": { + "filename": "src/utils/ERC20.cairo" + }, + "start_col": 6, + "start_line": 127 + }, + "While handling calldata of" + ], + "start_col": 1, + "start_line": 1 + } + }, + "1605": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.decreaseAllowance" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 64, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/decreaseAllowance/b2c52ca2d2a8fc8791a983086d8716c5eacd0c3d62934914d2286f84b98ff4cb.cairo" + }, + "parent_location": [ + { + "end_col": 42, + "end_line": 127, + "input_file": { + "filename": "src/utils/ERC20.cairo" + }, + "parent_location": [ + { + "end_col": 55, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/decreaseAllowance/a29580488d615dcce031b9fef4e7c380801d14611a6a383cf002b8e98946c96d.cairo" + }, + "parent_location": [ + { + "end_col": 23, + "end_line": 127, + "input_file": { + "filename": "src/utils/ERC20.cairo" + }, + "start_col": 6, + "start_line": 127 + }, + "While constructing the external wrapper for:" + ], + "start_col": 44, + "start_line": 1 + }, + "While expanding the reference 'syscall_ptr' in:" + ], + "start_col": 24, + "start_line": 127 + }, + "While constructing the external wrapper for:" + ], + "start_col": 19, + "start_line": 1 + } + }, + "1606": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.decreaseAllowance" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 110, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/decreaseAllowance/9684a85e93c782014ca14293edea4eb2502039a5a7b6538ecd39c56faaf12529.cairo" + }, + "parent_location": [ + { + "end_col": 70, + "end_line": 127, + "input_file": { + "filename": "src/utils/ERC20.cairo" + }, + "parent_location": [ + { + "end_col": 82, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/decreaseAllowance/a29580488d615dcce031b9fef4e7c380801d14611a6a383cf002b8e98946c96d.cairo" + }, + "parent_location": [ + { + "end_col": 23, + "end_line": 127, + "input_file": { + "filename": "src/utils/ERC20.cairo" + }, + "start_col": 6, + "start_line": 127 + }, + "While constructing the external wrapper for:" + ], + "start_col": 70, + "start_line": 1 + }, + "While expanding the reference 'pedersen_ptr' in:" + ], + "start_col": 44, + "start_line": 127 + }, + "While constructing the external wrapper for:" + ], + "start_col": 20, + "start_line": 1 + } + }, + "1607": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.decreaseAllowance" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 67, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/decreaseAllowance/741ea357d6336b0bed7bf0472425acd0311d543883b803388880e60a232040c7.cairo" + }, + "parent_location": [ + { + "end_col": 87, + "end_line": 127, + "input_file": { + "filename": "src/utils/ERC20.cairo" + }, + "parent_location": [ + { + "end_col": 115, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/decreaseAllowance/a29580488d615dcce031b9fef4e7c380801d14611a6a383cf002b8e98946c96d.cairo" + }, + "parent_location": [ + { + "end_col": 23, + "end_line": 127, + "input_file": { + "filename": "src/utils/ERC20.cairo" + }, + "start_col": 6, + "start_line": 127 + }, + "While constructing the external wrapper for:" + ], + "start_col": 100, + "start_line": 1 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 72, + "start_line": 127 + }, + "While constructing the external wrapper for:" + ], + "start_col": 23, + "start_line": 1 + } + }, + "1608": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.decreaseAllowance" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 54, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/arg_processor/0c7c9c2f4e4121548e141b583c9a2f54b79c720fd16f884e916a04be7c6f9fa3.cairo" + }, + "parent_location": [ + { + "end_col": 26, + "end_line": 128, + "input_file": { + "filename": "src/utils/ERC20.cairo" + }, + "parent_location": [ + { + "end_col": 163, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/decreaseAllowance/a29580488d615dcce031b9fef4e7c380801d14611a6a383cf002b8e98946c96d.cairo" + }, + "parent_location": [ + { + "end_col": 23, + "end_line": 127, + "input_file": { + "filename": "src/utils/ERC20.cairo" + }, + "start_col": 6, + "start_line": 127 + }, + "While constructing the external wrapper for:" + ], + "start_col": 133, + "start_line": 1 + }, + "While expanding the reference '__calldata_arg_spender_address' in:" + ], + "start_col": 5, + "start_line": 128 + }, + "While handling calldata argument 'spender_address'" + ], + "start_col": 38, + "start_line": 1 + } + }, + "1609": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.decreaseAllowance" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 67, + "end_line": 2, + "input_file": { + "filename": "autogen/starknet/arg_processor/088fc10f121c4edf0412d2bc1088f20f4b09fa1a3902dfc21b754224dcfd427e.cairo" + }, + "parent_location": [ + { + "end_col": 53, + "end_line": 128, + "input_file": { + "filename": "src/utils/ERC20.cairo" + }, + "parent_location": [ + { + "end_col": 213, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/decreaseAllowance/a29580488d615dcce031b9fef4e7c380801d14611a6a383cf002b8e98946c96d.cairo" + }, + "parent_location": [ + { + "end_col": 23, + "end_line": 127, + "input_file": { + "filename": "src/utils/ERC20.cairo" + }, + "start_col": 6, + "start_line": 127 + }, + "While constructing the external wrapper for:" + ], + "start_col": 182, + "start_line": 1 + }, + "While expanding the reference '__calldata_arg_subtracted_value' in:" + ], + "start_col": 28, + "start_line": 128 + }, + "While handling calldata argument 'subtracted_value'" + ], + "start_col": 39, + "start_line": 1 + } + }, + "1610": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.decreaseAllowance" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 67, + "end_line": 2, + "input_file": { + "filename": "autogen/starknet/arg_processor/088fc10f121c4edf0412d2bc1088f20f4b09fa1a3902dfc21b754224dcfd427e.cairo" + }, + "parent_location": [ + { + "end_col": 53, + "end_line": 128, + "input_file": { + "filename": "src/utils/ERC20.cairo" + }, + "parent_location": [ + { + "end_col": 213, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/decreaseAllowance/a29580488d615dcce031b9fef4e7c380801d14611a6a383cf002b8e98946c96d.cairo" + }, + "parent_location": [ + { + "end_col": 23, + "end_line": 127, + "input_file": { + "filename": "src/utils/ERC20.cairo" + }, + "start_col": 6, + "start_line": 127 + }, + "While constructing the external wrapper for:" + ], + "start_col": 182, + "start_line": 1 + }, + "While expanding the reference '__calldata_arg_subtracted_value' in:" + ], + "start_col": 28, + "start_line": 128 + }, + "While handling calldata argument 'subtracted_value'" + ], + "start_col": 39, + "start_line": 1 + } + }, + "1611": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.decreaseAllowance" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 23, + "end_line": 127, + "input_file": { + "filename": "src/utils/ERC20.cairo" + }, + "start_col": 6, + "start_line": 127 + } + }, + "1613": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.decreaseAllowance" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 115, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/decreaseAllowance/a29580488d615dcce031b9fef4e7c380801d14611a6a383cf002b8e98946c96d.cairo" + }, + "parent_location": [ + { + "end_col": 23, + "end_line": 127, + "input_file": { + "filename": "src/utils/ERC20.cairo" + }, + "parent_location": [ + { + "end_col": 106, + "end_line": 2, + "input_file": { + "filename": "autogen/starknet/external/decreaseAllowance/a29580488d615dcce031b9fef4e7c380801d14611a6a383cf002b8e98946c96d.cairo" + }, + "parent_location": [ + { + "end_col": 23, + "end_line": 127, + "input_file": { + "filename": "src/utils/ERC20.cairo" + }, + "start_col": 6, + "start_line": 127 + }, + "While constructing the external wrapper for:" + ], + "start_col": 91, + "start_line": 2 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 6, + "start_line": 127 + }, + "While constructing the external wrapper for:" + ], + "start_col": 100, + "start_line": 1 + } + }, + "1614": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.decreaseAllowance" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 107, + "end_line": 2, + "input_file": { + "filename": "autogen/starknet/external/decreaseAllowance/a29580488d615dcce031b9fef4e7c380801d14611a6a383cf002b8e98946c96d.cairo" + }, + "parent_location": [ + { + "end_col": 23, + "end_line": 127, + "input_file": { + "filename": "src/utils/ERC20.cairo" + }, + "start_col": 6, + "start_line": 127 + }, + "While constructing the external wrapper for:" + ], + "start_col": 48, + "start_line": 2 + } + }, + "1616": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.decreaseAllowance" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 55, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/decreaseAllowance/a29580488d615dcce031b9fef4e7c380801d14611a6a383cf002b8e98946c96d.cairo" + }, + "parent_location": [ + { + "end_col": 23, + "end_line": 127, + "input_file": { + "filename": "src/utils/ERC20.cairo" + }, + "parent_location": [ + { + "end_col": 20, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/decreaseAllowance/da17921a4e81c09e730800bbf23bfdbe5e9e6bfaedc59d80fbf62087fa43c27d.cairo" + }, + "parent_location": [ + { + "end_col": 23, + "end_line": 127, + "input_file": { + "filename": "src/utils/ERC20.cairo" + }, + "start_col": 6, + "start_line": 127 + }, + "While constructing the external wrapper for:" + ], + "start_col": 9, + "start_line": 1 + }, + "While expanding the reference 'syscall_ptr' in:" + ], + "start_col": 6, + "start_line": 127 + }, + "While constructing the external wrapper for:" + ], + "start_col": 44, + "start_line": 1 + } + }, + "1617": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.decreaseAllowance" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 82, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/decreaseAllowance/a29580488d615dcce031b9fef4e7c380801d14611a6a383cf002b8e98946c96d.cairo" + }, + "parent_location": [ + { + "end_col": 23, + "end_line": 127, + "input_file": { + "filename": "src/utils/ERC20.cairo" + }, + "parent_location": [ + { + "end_col": 33, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/decreaseAllowance/da17921a4e81c09e730800bbf23bfdbe5e9e6bfaedc59d80fbf62087fa43c27d.cairo" + }, + "parent_location": [ + { + "end_col": 23, + "end_line": 127, + "input_file": { + "filename": "src/utils/ERC20.cairo" + }, + "start_col": 6, + "start_line": 127 + }, + "While constructing the external wrapper for:" + ], + "start_col": 21, + "start_line": 1 + }, + "While expanding the reference 'pedersen_ptr' in:" + ], + "start_col": 6, + "start_line": 127 + }, + "While constructing the external wrapper for:" + ], + "start_col": 70, + "start_line": 1 + } + }, + "1618": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.decreaseAllowance" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 21, + "end_line": 2, + "input_file": { + "filename": "autogen/starknet/external/decreaseAllowance/a29580488d615dcce031b9fef4e7c380801d14611a6a383cf002b8e98946c96d.cairo" + }, + "parent_location": [ + { + "end_col": 23, + "end_line": 127, + "input_file": { + "filename": "src/utils/ERC20.cairo" + }, + "parent_location": [ + { + "end_col": 49, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/decreaseAllowance/da17921a4e81c09e730800bbf23bfdbe5e9e6bfaedc59d80fbf62087fa43c27d.cairo" + }, + "parent_location": [ + { + "end_col": 23, + "end_line": 127, + "input_file": { + "filename": "src/utils/ERC20.cairo" + }, + "start_col": 6, + "start_line": 127 + }, + "While constructing the external wrapper for:" + ], + "start_col": 34, + "start_line": 1 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 6, + "start_line": 127 + }, + "While constructing the external wrapper for:" + ], + "start_col": 6, + "start_line": 2 + } + }, + "1619": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.decreaseAllowance" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 35, + "end_line": 2, + "input_file": { + "filename": "autogen/starknet/external/decreaseAllowance/a29580488d615dcce031b9fef4e7c380801d14611a6a383cf002b8e98946c96d.cairo" + }, + "parent_location": [ + { + "end_col": 23, + "end_line": 127, + "input_file": { + "filename": "src/utils/ERC20.cairo" + }, + "parent_location": [ + { + "end_col": 62, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/decreaseAllowance/da17921a4e81c09e730800bbf23bfdbe5e9e6bfaedc59d80fbf62087fa43c27d.cairo" + }, + "parent_location": [ + { + "end_col": 23, + "end_line": 127, + "input_file": { + "filename": "src/utils/ERC20.cairo" + }, + "start_col": 6, + "start_line": 127 + }, + "While constructing the external wrapper for:" + ], + "start_col": 50, + "start_line": 1 + }, + "While expanding the reference 'retdata_size' in:" + ], + "start_col": 6, + "start_line": 127 + }, + "While constructing the external wrapper for:" + ], + "start_col": 23, + "start_line": 2 + } + }, + "1620": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.decreaseAllowance" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 44, + "end_line": 2, + "input_file": { + "filename": "autogen/starknet/external/decreaseAllowance/a29580488d615dcce031b9fef4e7c380801d14611a6a383cf002b8e98946c96d.cairo" + }, + "parent_location": [ + { + "end_col": 23, + "end_line": 127, + "input_file": { + "filename": "src/utils/ERC20.cairo" + }, + "parent_location": [ + { + "end_col": 70, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/decreaseAllowance/da17921a4e81c09e730800bbf23bfdbe5e9e6bfaedc59d80fbf62087fa43c27d.cairo" + }, + "parent_location": [ + { + "end_col": 23, + "end_line": 127, + "input_file": { + "filename": "src/utils/ERC20.cairo" + }, + "start_col": 6, + "start_line": 127 + }, + "While constructing the external wrapper for:" + ], + "start_col": 63, + "start_line": 1 + }, + "While expanding the reference 'retdata' in:" + ], + "start_col": 6, + "start_line": 127 + }, + "While constructing the external wrapper for:" + ], + "start_col": 37, + "start_line": 2 + } + }, + "1621": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.decreaseAllowance" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 72, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/decreaseAllowance/da17921a4e81c09e730800bbf23bfdbe5e9e6bfaedc59d80fbf62087fa43c27d.cairo" + }, + "parent_location": [ + { + "end_col": 23, + "end_line": 127, + "input_file": { + "filename": "src/utils/ERC20.cairo" + }, + "start_col": 6, + "start_line": 127 + }, + "While constructing the external wrapper for:" + ], + "start_col": 1, + "start_line": 1 + } + }, + "1622": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.transfer_ownership" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 43, + "end_line": 136, + "input_file": { + "filename": "src/utils/ERC20.cairo" + }, + "parent_location": [ + { + "end_col": 47, + "end_line": 60, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/access/ownable/library.cairo" + }, + "parent_location": [ + { + "end_col": 50, + "end_line": 139, + "input_file": { + "filename": "src/utils/ERC20.cairo" + }, + "start_col": 5, + "start_line": 139 + }, + "While trying to retrieve the implicit argument 'syscall_ptr' in:" + ], + "start_col": 29, + "start_line": 60 + }, + "While expanding the reference 'syscall_ptr' in:" + ], + "start_col": 25, + "start_line": 136 + } + }, + "1623": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.transfer_ownership" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 71, + "end_line": 136, + "input_file": { + "filename": "src/utils/ERC20.cairo" + }, + "parent_location": [ + { + "end_col": 75, + "end_line": 60, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/access/ownable/library.cairo" + }, + "parent_location": [ + { + "end_col": 50, + "end_line": 139, + "input_file": { + "filename": "src/utils/ERC20.cairo" + }, + "start_col": 5, + "start_line": 139 + }, + "While trying to retrieve the implicit argument 'pedersen_ptr' in:" + ], + "start_col": 49, + "start_line": 60 + }, + "While expanding the reference 'pedersen_ptr' in:" + ], + "start_col": 45, + "start_line": 136 + } + }, + "1624": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.transfer_ownership" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 88, + "end_line": 136, + "input_file": { + "filename": "src/utils/ERC20.cairo" + }, + "parent_location": [ + { + "end_col": 92, + "end_line": 60, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/access/ownable/library.cairo" + }, + "parent_location": [ + { + "end_col": 50, + "end_line": 139, + "input_file": { + "filename": "src/utils/ERC20.cairo" + }, + "start_col": 5, + "start_line": 139 + }, + "While trying to retrieve the implicit argument 'range_check_ptr' in:" + ], + "start_col": 77, + "start_line": 60 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 73, + "start_line": 136 + } + }, + "1625": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.transfer_ownership" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 28, + "end_line": 137, + "input_file": { + "filename": "src/utils/ERC20.cairo" + }, + "parent_location": [ + { + "end_col": 49, + "end_line": 139, + "input_file": { + "filename": "src/utils/ERC20.cairo" + }, + "start_col": 32, + "start_line": 139 + }, + "While expanding the reference 'new_owner_address' in:" + ], + "start_col": 5, + "start_line": 137 + } + }, + "1626": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.transfer_ownership" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 50, + "end_line": 139, + "input_file": { + "filename": "src/utils/ERC20.cairo" + }, + "start_col": 5, + "start_line": 139 + } + }, + "1628": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.transfer_ownership" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 28, + "end_line": 137, + "input_file": { + "filename": "src/utils/ERC20.cairo" + }, + "parent_location": [ + { + "end_col": 30, + "end_line": 141, + "input_file": { + "filename": "src/utils/ERC20.cairo" + }, + "start_col": 13, + "start_line": 141 + }, + "While expanding the reference 'new_owner_address' in:" + ], + "start_col": 5, + "start_line": 137 + } + }, + "1629": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.transfer_ownership" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 33, + "end_line": 141, + "input_file": { + "filename": "src/utils/ERC20.cairo" + }, + "start_col": 5, + "start_line": 141 + } + }, + "1630": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.transfer_ownership_encode_return" + ], + "flow_tracking_data": null, + "hints": [ + { + "location": { + "end_col": 38, + "end_line": 3, + "input_file": { + "filename": "autogen/starknet/external/return/transfer_ownership/ad83953993fbf79c4dfc73d4886046be3d79ef0e730f6bb37c333a995df0de1a.cairo" + }, + "parent_location": [ + { + "end_col": 24, + "end_line": 136, + "input_file": { + "filename": "src/utils/ERC20.cairo" + }, + "start_col": 6, + "start_line": 136 + }, + "While handling return value of" + ], + "start_col": 5, + "start_line": 3 + }, + "n_prefix_newlines": 0 + } + ], + "inst": { + "end_col": 18, + "end_line": 4, + "input_file": { + "filename": "autogen/starknet/external/return/transfer_ownership/ad83953993fbf79c4dfc73d4886046be3d79ef0e730f6bb37c333a995df0de1a.cairo" + }, + "parent_location": [ + { + "end_col": 24, + "end_line": 136, + "input_file": { + "filename": "src/utils/ERC20.cairo" + }, + "start_col": 6, + "start_line": 136 + }, + "While handling return value of" + ], + "start_col": 5, + "start_line": 4 + } + }, + "1632": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.transfer_ownership_encode_return" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 59, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/arg_processor/60c69a163626e9792b65ac718de13317af07c632659ab487d41ad9d7c1eb401a.cairo" + }, + "parent_location": [ + { + "end_col": 30, + "end_line": 138, + "input_file": { + "filename": "src/utils/ERC20.cairo" + }, + "start_col": 7, + "start_line": 138 + }, + "While handling return value 'new_owner_address'" + ], + "start_col": 1, + "start_line": 1 + } + }, + "1633": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.transfer_ownership_encode_return" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 48, + "end_line": 2, + "input_file": { + "filename": "autogen/starknet/arg_processor/60c69a163626e9792b65ac718de13317af07c632659ab487d41ad9d7c1eb401a.cairo" + }, + "parent_location": [ + { + "end_col": 30, + "end_line": 138, + "input_file": { + "filename": "src/utils/ERC20.cairo" + }, + "parent_location": [ + { + "end_col": 36, + "end_line": 11, + "input_file": { + "filename": "autogen/starknet/external/return/transfer_ownership/ad83953993fbf79c4dfc73d4886046be3d79ef0e730f6bb37c333a995df0de1a.cairo" + }, + "parent_location": [ + { + "end_col": 24, + "end_line": 136, + "input_file": { + "filename": "src/utils/ERC20.cairo" + }, + "start_col": 6, + "start_line": 136 + }, + "While handling return value of" + ], + "start_col": 18, + "start_line": 11 + }, + "While expanding the reference '__return_value_ptr' in:" + ], + "start_col": 7, + "start_line": 138 + }, + "While handling return value 'new_owner_address'" + ], + "start_col": 26, + "start_line": 2 + } + }, + "1635": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.transfer_ownership_encode_return" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 92, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/return/transfer_ownership/ad83953993fbf79c4dfc73d4886046be3d79ef0e730f6bb37c333a995df0de1a.cairo" + }, + "parent_location": [ + { + "end_col": 24, + "end_line": 136, + "input_file": { + "filename": "src/utils/ERC20.cairo" + }, + "parent_location": [ + { + "end_col": 40, + "end_line": 10, + "input_file": { + "filename": "autogen/starknet/external/return/transfer_ownership/ad83953993fbf79c4dfc73d4886046be3d79ef0e730f6bb37c333a995df0de1a.cairo" + }, + "parent_location": [ + { + "end_col": 24, + "end_line": 136, + "input_file": { + "filename": "src/utils/ERC20.cairo" + }, + "start_col": 6, + "start_line": 136 + }, + "While handling return value of" + ], + "start_col": 25, + "start_line": 10 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 6, + "start_line": 136 + }, + "While handling return value of" + ], + "start_col": 77, + "start_line": 1 + } + }, + "1636": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.transfer_ownership_encode_return" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 63, + "end_line": 11, + "input_file": { + "filename": "autogen/starknet/external/return/transfer_ownership/ad83953993fbf79c4dfc73d4886046be3d79ef0e730f6bb37c333a995df0de1a.cairo" + }, + "parent_location": [ + { + "end_col": 24, + "end_line": 136, + "input_file": { + "filename": "src/utils/ERC20.cairo" + }, + "start_col": 6, + "start_line": 136 + }, + "While handling return value of" + ], + "start_col": 18, + "start_line": 11 + } + }, + "1637": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.transfer_ownership_encode_return" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 35, + "end_line": 5, + "input_file": { + "filename": "autogen/starknet/external/return/transfer_ownership/ad83953993fbf79c4dfc73d4886046be3d79ef0e730f6bb37c333a995df0de1a.cairo" + }, + "parent_location": [ + { + "end_col": 24, + "end_line": 136, + "input_file": { + "filename": "src/utils/ERC20.cairo" + }, + "parent_location": [ + { + "end_col": 38, + "end_line": 12, + "input_file": { + "filename": "autogen/starknet/external/return/transfer_ownership/ad83953993fbf79c4dfc73d4886046be3d79ef0e730f6bb37c333a995df0de1a.cairo" + }, + "parent_location": [ + { + "end_col": 24, + "end_line": 136, + "input_file": { + "filename": "src/utils/ERC20.cairo" + }, + "start_col": 6, + "start_line": 136 + }, + "While handling return value of" + ], + "start_col": 14, + "start_line": 12 + }, + "While expanding the reference '__return_value_ptr_start' in:" + ], + "start_col": 6, + "start_line": 136 + }, + "While handling return value of" + ], + "start_col": 11, + "start_line": 5 + } + }, + "1638": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.transfer_ownership_encode_return" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 40, + "end_line": 12, + "input_file": { + "filename": "autogen/starknet/external/return/transfer_ownership/ad83953993fbf79c4dfc73d4886046be3d79ef0e730f6bb37c333a995df0de1a.cairo" + }, + "parent_location": [ + { + "end_col": 24, + "end_line": 136, + "input_file": { + "filename": "src/utils/ERC20.cairo" + }, + "start_col": 6, + "start_line": 136 + }, + "While handling return value of" + ], + "start_col": 5, + "start_line": 9 + } + }, + "1639": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.transfer_ownership" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 40, + "end_line": 2, + "input_file": { + "filename": "autogen/starknet/arg_processor/dace1a2a18c1ab268e3b2a3b06933197d98c993b19a5f7c57eb5f6b12583601d.cairo" + }, + "parent_location": [ + { + "end_col": 28, + "end_line": 137, + "input_file": { + "filename": "src/utils/ERC20.cairo" + }, + "parent_location": [ + { + "end_col": 45, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/arg_processor/c31620b02d4d706f0542c989b2aadc01b0981d1f6a5933a8fe4937ace3d70d92.cairo" + }, + "parent_location": [ + { + "end_col": 24, + "end_line": 136, + "input_file": { + "filename": "src/utils/ERC20.cairo" + }, + "parent_location": [ + { + "end_col": 57, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/arg_processor/01cba52f8515996bb9d7070bde81ff39281d096d7024a558efcba6e1fd2402cf.cairo" + }, + "parent_location": [ + { + "end_col": 24, + "end_line": 136, + "input_file": { + "filename": "src/utils/ERC20.cairo" + }, + "start_col": 6, + "start_line": 136 + }, + "While handling calldata of" + ], + "start_col": 35, + "start_line": 1 + }, + "While expanding the reference '__calldata_actual_size' in:" + ], + "start_col": 6, + "start_line": 136 + }, + "While handling calldata of" + ], + "start_col": 31, + "start_line": 1 + }, + "While expanding the reference '__calldata_ptr' in:" + ], + "start_col": 5, + "start_line": 137 + }, + "While handling calldata argument 'new_owner_address'" + ], + "start_col": 22, + "start_line": 2 + } + }, + "1641": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.transfer_ownership" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 58, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/arg_processor/01cba52f8515996bb9d7070bde81ff39281d096d7024a558efcba6e1fd2402cf.cairo" + }, + "parent_location": [ + { + "end_col": 24, + "end_line": 136, + "input_file": { + "filename": "src/utils/ERC20.cairo" + }, + "start_col": 6, + "start_line": 136 + }, + "While handling calldata of" + ], + "start_col": 1, + "start_line": 1 + } + }, + "1642": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.transfer_ownership" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 64, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/transfer_ownership/b2c52ca2d2a8fc8791a983086d8716c5eacd0c3d62934914d2286f84b98ff4cb.cairo" + }, + "parent_location": [ + { + "end_col": 43, + "end_line": 136, + "input_file": { + "filename": "src/utils/ERC20.cairo" + }, + "parent_location": [ + { + "end_col": 55, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/transfer_ownership/62f61be6c719f8c3811a7dcfc9f654360da606f36b1f1c83a12f7b344b4fec42.cairo" + }, + "parent_location": [ + { + "end_col": 24, + "end_line": 136, + "input_file": { + "filename": "src/utils/ERC20.cairo" + }, + "start_col": 6, + "start_line": 136 + }, + "While constructing the external wrapper for:" + ], + "start_col": 44, + "start_line": 1 + }, + "While expanding the reference 'syscall_ptr' in:" + ], + "start_col": 25, + "start_line": 136 + }, + "While constructing the external wrapper for:" + ], + "start_col": 19, + "start_line": 1 + } + }, + "1643": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.transfer_ownership" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 110, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/transfer_ownership/9684a85e93c782014ca14293edea4eb2502039a5a7b6538ecd39c56faaf12529.cairo" + }, + "parent_location": [ + { + "end_col": 71, + "end_line": 136, + "input_file": { + "filename": "src/utils/ERC20.cairo" + }, + "parent_location": [ + { + "end_col": 82, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/transfer_ownership/62f61be6c719f8c3811a7dcfc9f654360da606f36b1f1c83a12f7b344b4fec42.cairo" + }, + "parent_location": [ + { + "end_col": 24, + "end_line": 136, + "input_file": { + "filename": "src/utils/ERC20.cairo" + }, + "start_col": 6, + "start_line": 136 + }, + "While constructing the external wrapper for:" + ], + "start_col": 70, + "start_line": 1 + }, + "While expanding the reference 'pedersen_ptr' in:" + ], + "start_col": 45, + "start_line": 136 + }, + "While constructing the external wrapper for:" + ], + "start_col": 20, + "start_line": 1 + } + }, + "1644": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.transfer_ownership" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 67, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/transfer_ownership/741ea357d6336b0bed7bf0472425acd0311d543883b803388880e60a232040c7.cairo" + }, + "parent_location": [ + { + "end_col": 88, + "end_line": 136, + "input_file": { + "filename": "src/utils/ERC20.cairo" + }, + "parent_location": [ + { + "end_col": 115, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/transfer_ownership/62f61be6c719f8c3811a7dcfc9f654360da606f36b1f1c83a12f7b344b4fec42.cairo" + }, + "parent_location": [ + { + "end_col": 24, + "end_line": 136, + "input_file": { + "filename": "src/utils/ERC20.cairo" + }, + "start_col": 6, + "start_line": 136 + }, + "While constructing the external wrapper for:" + ], + "start_col": 100, + "start_line": 1 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 73, + "start_line": 136 + }, + "While constructing the external wrapper for:" + ], + "start_col": 23, + "start_line": 1 + } + }, + "1645": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.transfer_ownership" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 56, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/arg_processor/dace1a2a18c1ab268e3b2a3b06933197d98c993b19a5f7c57eb5f6b12583601d.cairo" + }, + "parent_location": [ + { + "end_col": 28, + "end_line": 137, + "input_file": { + "filename": "src/utils/ERC20.cairo" + }, + "parent_location": [ + { + "end_col": 167, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/transfer_ownership/62f61be6c719f8c3811a7dcfc9f654360da606f36b1f1c83a12f7b344b4fec42.cairo" + }, + "parent_location": [ + { + "end_col": 24, + "end_line": 136, + "input_file": { + "filename": "src/utils/ERC20.cairo" + }, + "start_col": 6, + "start_line": 136 + }, + "While constructing the external wrapper for:" + ], + "start_col": 135, + "start_line": 1 + }, + "While expanding the reference '__calldata_arg_new_owner_address' in:" + ], + "start_col": 5, + "start_line": 137 + }, + "While handling calldata argument 'new_owner_address'" + ], + "start_col": 40, + "start_line": 1 + } + }, + "1646": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.transfer_ownership" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 24, + "end_line": 136, + "input_file": { + "filename": "src/utils/ERC20.cairo" + }, + "start_col": 6, + "start_line": 136 + } + }, + "1648": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.transfer_ownership" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 115, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/transfer_ownership/62f61be6c719f8c3811a7dcfc9f654360da606f36b1f1c83a12f7b344b4fec42.cairo" + }, + "parent_location": [ + { + "end_col": 24, + "end_line": 136, + "input_file": { + "filename": "src/utils/ERC20.cairo" + }, + "parent_location": [ + { + "end_col": 107, + "end_line": 2, + "input_file": { + "filename": "autogen/starknet/external/transfer_ownership/62f61be6c719f8c3811a7dcfc9f654360da606f36b1f1c83a12f7b344b4fec42.cairo" + }, + "parent_location": [ + { + "end_col": 24, + "end_line": 136, + "input_file": { + "filename": "src/utils/ERC20.cairo" + }, + "start_col": 6, + "start_line": 136 + }, + "While constructing the external wrapper for:" + ], + "start_col": 92, + "start_line": 2 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 6, + "start_line": 136 + }, + "While constructing the external wrapper for:" + ], + "start_col": 100, + "start_line": 1 + } + }, + "1649": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.transfer_ownership" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 108, + "end_line": 2, + "input_file": { + "filename": "autogen/starknet/external/transfer_ownership/62f61be6c719f8c3811a7dcfc9f654360da606f36b1f1c83a12f7b344b4fec42.cairo" + }, + "parent_location": [ + { + "end_col": 24, + "end_line": 136, + "input_file": { + "filename": "src/utils/ERC20.cairo" + }, + "start_col": 6, + "start_line": 136 + }, + "While constructing the external wrapper for:" + ], + "start_col": 48, + "start_line": 2 + } + }, + "1651": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.transfer_ownership" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 55, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/transfer_ownership/62f61be6c719f8c3811a7dcfc9f654360da606f36b1f1c83a12f7b344b4fec42.cairo" + }, + "parent_location": [ + { + "end_col": 24, + "end_line": 136, + "input_file": { + "filename": "src/utils/ERC20.cairo" + }, + "parent_location": [ + { + "end_col": 20, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/transfer_ownership/da17921a4e81c09e730800bbf23bfdbe5e9e6bfaedc59d80fbf62087fa43c27d.cairo" + }, + "parent_location": [ + { + "end_col": 24, + "end_line": 136, + "input_file": { + "filename": "src/utils/ERC20.cairo" + }, + "start_col": 6, + "start_line": 136 + }, + "While constructing the external wrapper for:" + ], + "start_col": 9, + "start_line": 1 + }, + "While expanding the reference 'syscall_ptr' in:" + ], + "start_col": 6, + "start_line": 136 + }, + "While constructing the external wrapper for:" + ], + "start_col": 44, + "start_line": 1 + } + }, + "1652": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.transfer_ownership" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 82, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/transfer_ownership/62f61be6c719f8c3811a7dcfc9f654360da606f36b1f1c83a12f7b344b4fec42.cairo" + }, + "parent_location": [ + { + "end_col": 24, + "end_line": 136, + "input_file": { + "filename": "src/utils/ERC20.cairo" + }, + "parent_location": [ + { + "end_col": 33, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/transfer_ownership/da17921a4e81c09e730800bbf23bfdbe5e9e6bfaedc59d80fbf62087fa43c27d.cairo" + }, + "parent_location": [ + { + "end_col": 24, + "end_line": 136, + "input_file": { + "filename": "src/utils/ERC20.cairo" + }, + "start_col": 6, + "start_line": 136 + }, + "While constructing the external wrapper for:" + ], + "start_col": 21, + "start_line": 1 + }, + "While expanding the reference 'pedersen_ptr' in:" + ], + "start_col": 6, + "start_line": 136 + }, + "While constructing the external wrapper for:" + ], + "start_col": 70, + "start_line": 1 + } + }, + "1653": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.transfer_ownership" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 21, + "end_line": 2, + "input_file": { + "filename": "autogen/starknet/external/transfer_ownership/62f61be6c719f8c3811a7dcfc9f654360da606f36b1f1c83a12f7b344b4fec42.cairo" + }, + "parent_location": [ + { + "end_col": 24, + "end_line": 136, + "input_file": { + "filename": "src/utils/ERC20.cairo" + }, + "parent_location": [ + { + "end_col": 49, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/transfer_ownership/da17921a4e81c09e730800bbf23bfdbe5e9e6bfaedc59d80fbf62087fa43c27d.cairo" + }, + "parent_location": [ + { + "end_col": 24, + "end_line": 136, + "input_file": { + "filename": "src/utils/ERC20.cairo" + }, + "start_col": 6, + "start_line": 136 + }, + "While constructing the external wrapper for:" + ], + "start_col": 34, + "start_line": 1 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 6, + "start_line": 136 + }, + "While constructing the external wrapper for:" + ], + "start_col": 6, + "start_line": 2 + } + }, + "1654": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.transfer_ownership" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 35, + "end_line": 2, + "input_file": { + "filename": "autogen/starknet/external/transfer_ownership/62f61be6c719f8c3811a7dcfc9f654360da606f36b1f1c83a12f7b344b4fec42.cairo" + }, + "parent_location": [ + { + "end_col": 24, + "end_line": 136, + "input_file": { + "filename": "src/utils/ERC20.cairo" + }, + "parent_location": [ + { + "end_col": 62, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/transfer_ownership/da17921a4e81c09e730800bbf23bfdbe5e9e6bfaedc59d80fbf62087fa43c27d.cairo" + }, + "parent_location": [ + { + "end_col": 24, + "end_line": 136, + "input_file": { + "filename": "src/utils/ERC20.cairo" + }, + "start_col": 6, + "start_line": 136 + }, + "While constructing the external wrapper for:" + ], + "start_col": 50, + "start_line": 1 + }, + "While expanding the reference 'retdata_size' in:" + ], + "start_col": 6, + "start_line": 136 + }, + "While constructing the external wrapper for:" + ], + "start_col": 23, + "start_line": 2 + } + }, + "1655": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.transfer_ownership" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 44, + "end_line": 2, + "input_file": { + "filename": "autogen/starknet/external/transfer_ownership/62f61be6c719f8c3811a7dcfc9f654360da606f36b1f1c83a12f7b344b4fec42.cairo" + }, + "parent_location": [ + { + "end_col": 24, + "end_line": 136, + "input_file": { + "filename": "src/utils/ERC20.cairo" + }, + "parent_location": [ + { + "end_col": 70, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/transfer_ownership/da17921a4e81c09e730800bbf23bfdbe5e9e6bfaedc59d80fbf62087fa43c27d.cairo" + }, + "parent_location": [ + { + "end_col": 24, + "end_line": 136, + "input_file": { + "filename": "src/utils/ERC20.cairo" + }, + "start_col": 6, + "start_line": 136 + }, + "While constructing the external wrapper for:" + ], + "start_col": 63, + "start_line": 1 + }, + "While expanding the reference 'retdata' in:" + ], + "start_col": 6, + "start_line": 136 + }, + "While constructing the external wrapper for:" + ], + "start_col": 37, + "start_line": 2 + } + }, + "1656": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.transfer_ownership" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 72, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/transfer_ownership/da17921a4e81c09e730800bbf23bfdbe5e9e6bfaedc59d80fbf62087fa43c27d.cairo" + }, + "parent_location": [ + { + "end_col": 24, + "end_line": 136, + "input_file": { + "filename": "src/utils/ERC20.cairo" + }, + "start_col": 6, + "start_line": 136 + }, + "While constructing the external wrapper for:" + ], + "start_col": 1, + "start_line": 1 + } + }, + "1657": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.freeMint" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 78, + "end_line": 147, + "input_file": { + "filename": "src/utils/ERC20.cairo" + }, + "parent_location": [ + { + "end_col": 32, + "end_line": 148, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/uint256.cairo" + }, + "parent_location": [ + { + "end_col": 85, + "end_line": 151, + "input_file": { + "filename": "src/utils/ERC20.cairo" + }, + "start_col": 38, + "start_line": 151 + }, + "While trying to retrieve the implicit argument 'range_check_ptr' in:" + ], + "start_col": 17, + "start_line": 148 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 63, + "start_line": 147 + } + }, + "1658": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.freeMint" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 95, + "end_line": 147, + "input_file": { + "filename": "src/utils/ERC20.cairo" + }, + "parent_location": [ + { + "end_col": 55, + "end_line": 151, + "input_file": { + "filename": "src/utils/ERC20.cairo" + }, + "start_col": 49, + "start_line": 151 + }, + "While expanding the reference 'amount' in:" + ], + "start_col": 80, + "start_line": 147 + } + }, + "1659": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.freeMint" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 95, + "end_line": 147, + "input_file": { + "filename": "src/utils/ERC20.cairo" + }, + "parent_location": [ + { + "end_col": 55, + "end_line": 151, + "input_file": { + "filename": "src/utils/ERC20.cairo" + }, + "start_col": 49, + "start_line": 151 + }, + "While expanding the reference 'amount' in:" + ], + "start_col": 80, + "start_line": 147 + } + }, + "1660": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.freeMint" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 80, + "end_line": 151, + "input_file": { + "filename": "src/utils/ERC20.cairo" + }, + "start_col": 65, + "start_line": 151 + } + }, + "1662": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.freeMint" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 83, + "end_line": 151, + "input_file": { + "filename": "src/utils/ERC20.cairo" + }, + "start_col": 82, + "start_line": 151 + } + }, + "1664": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.freeMint" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 85, + "end_line": 151, + "input_file": { + "filename": "src/utils/ERC20.cairo" + }, + "start_col": 38, + "start_line": 151 + } + }, + "1666": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.freeMint" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 44, + "end_line": 152, + "input_file": { + "filename": "src/utils/ERC20.cairo" + }, + "start_col": 5, + "start_line": 152 + } + }, + "1668": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.freeMint" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 33, + "end_line": 147, + "input_file": { + "filename": "src/utils/ERC20.cairo" + }, + "parent_location": [ + { + "end_col": 43, + "end_line": 200, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/starknet/common/syscalls.cairo" + }, + "parent_location": [ + { + "end_col": 48, + "end_line": 155, + "input_file": { + "filename": "src/utils/ERC20.cairo" + }, + "start_col": 28, + "start_line": 155 + }, + "While trying to retrieve the implicit argument 'syscall_ptr' in:" + ], + "start_col": 25, + "start_line": 200 + }, + "While expanding the reference 'syscall_ptr' in:" + ], + "start_col": 15, + "start_line": 147 + } + }, + "1669": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.freeMint" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 48, + "end_line": 155, + "input_file": { + "filename": "src/utils/ERC20.cairo" + }, + "start_col": 28, + "start_line": 155 + } + }, + "1671": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.freeMint" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 43, + "end_line": 200, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/starknet/common/syscalls.cairo" + }, + "parent_location": [ + { + "end_col": 48, + "end_line": 155, + "input_file": { + "filename": "src/utils/ERC20.cairo" + }, + "parent_location": [ + { + "end_col": 34, + "end_line": 181, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc20/library.cairo" + }, + "parent_location": [ + { + "end_col": 40, + "end_line": 156, + "input_file": { + "filename": "src/utils/ERC20.cairo" + }, + "start_col": 5, + "start_line": 156 + }, + "While trying to retrieve the implicit argument 'syscall_ptr' in:" + ], + "start_col": 16, + "start_line": 181 + }, + "While expanding the reference 'syscall_ptr' in:" + ], + "start_col": 28, + "start_line": 155 + }, + "While trying to update the implicit return value 'syscall_ptr' in:" + ], + "start_col": 25, + "start_line": 200 + } + }, + "1672": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.freeMint" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 61, + "end_line": 147, + "input_file": { + "filename": "src/utils/ERC20.cairo" + }, + "parent_location": [ + { + "end_col": 62, + "end_line": 181, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc20/library.cairo" + }, + "parent_location": [ + { + "end_col": 40, + "end_line": 156, + "input_file": { + "filename": "src/utils/ERC20.cairo" + }, + "start_col": 5, + "start_line": 156 + }, + "While trying to retrieve the implicit argument 'pedersen_ptr' in:" + ], + "start_col": 36, + "start_line": 181 + }, + "While expanding the reference 'pedersen_ptr' in:" + ], + "start_col": 35, + "start_line": 147 + } + }, + "1673": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.freeMint" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 32, + "end_line": 148, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/uint256.cairo" + }, + "parent_location": [ + { + "end_col": 85, + "end_line": 151, + "input_file": { + "filename": "src/utils/ERC20.cairo" + }, + "parent_location": [ + { + "end_col": 79, + "end_line": 181, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc20/library.cairo" + }, + "parent_location": [ + { + "end_col": 40, + "end_line": 156, + "input_file": { + "filename": "src/utils/ERC20.cairo" + }, + "start_col": 5, + "start_line": 156 + }, + "While trying to retrieve the implicit argument 'range_check_ptr' in:" + ], + "start_col": 64, + "start_line": 181 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 38, + "start_line": 151 + }, + "While trying to update the implicit return value 'range_check_ptr' in:" + ], + "start_col": 17, + "start_line": 148 + } + }, + "1674": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.freeMint" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 24, + "end_line": 155, + "input_file": { + "filename": "src/utils/ERC20.cairo" + }, + "parent_location": [ + { + "end_col": 31, + "end_line": 156, + "input_file": { + "filename": "src/utils/ERC20.cairo" + }, + "start_col": 17, + "start_line": 156 + }, + "While expanding the reference 'caller_address' in:" + ], + "start_col": 10, + "start_line": 155 + } + }, + "1675": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.freeMint" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 95, + "end_line": 147, + "input_file": { + "filename": "src/utils/ERC20.cairo" + }, + "parent_location": [ + { + "end_col": 39, + "end_line": 156, + "input_file": { + "filename": "src/utils/ERC20.cairo" + }, + "start_col": 33, + "start_line": 156 + }, + "While expanding the reference 'amount' in:" + ], + "start_col": 80, + "start_line": 147 + } + }, + "1676": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.freeMint" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 95, + "end_line": 147, + "input_file": { + "filename": "src/utils/ERC20.cairo" + }, + "parent_location": [ + { + "end_col": 39, + "end_line": 156, + "input_file": { + "filename": "src/utils/ERC20.cairo" + }, + "start_col": 33, + "start_line": 156 + }, + "While expanding the reference 'amount' in:" + ], + "start_col": 80, + "start_line": 147 + } + }, + "1677": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.freeMint" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 40, + "end_line": 156, + "input_file": { + "filename": "src/utils/ERC20.cairo" + }, + "start_col": 5, + "start_line": 156 + } + }, + "1679": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.freeMint" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 17, + "end_line": 158, + "input_file": { + "filename": "src/utils/ERC20.cairo" + }, + "start_col": 13, + "start_line": 158 + } + }, + "1681": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.freeMint" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 20, + "end_line": 158, + "input_file": { + "filename": "src/utils/ERC20.cairo" + }, + "start_col": 5, + "start_line": 158 + } + }, + "1682": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.freeMint_encode_return" + ], + "flow_tracking_data": null, + "hints": [ + { + "location": { + "end_col": 38, + "end_line": 3, + "input_file": { + "filename": "autogen/starknet/external/return/freeMint/8ee68f055606a9115829b1f258ce8ace261225f75ed3521ade3f12ef91fff6be.cairo" + }, + "parent_location": [ + { + "end_col": 14, + "end_line": 147, + "input_file": { + "filename": "src/utils/ERC20.cairo" + }, + "start_col": 6, + "start_line": 147 + }, + "While handling return value of" + ], + "start_col": 5, + "start_line": 3 + }, + "n_prefix_newlines": 0 + } + ], + "inst": { + "end_col": 18, + "end_line": 4, + "input_file": { + "filename": "autogen/starknet/external/return/freeMint/8ee68f055606a9115829b1f258ce8ace261225f75ed3521ade3f12ef91fff6be.cairo" + }, + "parent_location": [ + { + "end_col": 14, + "end_line": 147, + "input_file": { + "filename": "src/utils/ERC20.cairo" + }, + "start_col": 6, + "start_line": 147 + }, + "While handling return value of" + ], + "start_col": 5, + "start_line": 4 + } + }, + "1684": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.freeMint_encode_return" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 49, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/arg_processor/5c10028f67364b153272aa9b4cbc0fb78920a40fab821ac7257b0069e0773b49.cairo" + }, + "parent_location": [ + { + "end_col": 18, + "end_line": 148, + "input_file": { + "filename": "src/utils/ERC20.cairo" + }, + "start_col": 5, + "start_line": 148 + }, + "While handling return value 'success'" + ], + "start_col": 1, + "start_line": 1 + } + }, + "1685": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.freeMint_encode_return" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 48, + "end_line": 2, + "input_file": { + "filename": "autogen/starknet/arg_processor/5c10028f67364b153272aa9b4cbc0fb78920a40fab821ac7257b0069e0773b49.cairo" + }, + "parent_location": [ + { + "end_col": 18, + "end_line": 148, + "input_file": { + "filename": "src/utils/ERC20.cairo" + }, + "parent_location": [ + { + "end_col": 36, + "end_line": 11, + "input_file": { + "filename": "autogen/starknet/external/return/freeMint/8ee68f055606a9115829b1f258ce8ace261225f75ed3521ade3f12ef91fff6be.cairo" + }, + "parent_location": [ + { + "end_col": 14, + "end_line": 147, + "input_file": { + "filename": "src/utils/ERC20.cairo" + }, + "start_col": 6, + "start_line": 147 + }, + "While handling return value of" + ], + "start_col": 18, + "start_line": 11 + }, + "While expanding the reference '__return_value_ptr' in:" + ], + "start_col": 5, + "start_line": 148 + }, + "While handling return value 'success'" + ], + "start_col": 26, + "start_line": 2 + } + }, + "1687": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.freeMint_encode_return" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 72, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/return/freeMint/8ee68f055606a9115829b1f258ce8ace261225f75ed3521ade3f12ef91fff6be.cairo" + }, + "parent_location": [ + { + "end_col": 14, + "end_line": 147, + "input_file": { + "filename": "src/utils/ERC20.cairo" + }, + "parent_location": [ + { + "end_col": 40, + "end_line": 10, + "input_file": { + "filename": "autogen/starknet/external/return/freeMint/8ee68f055606a9115829b1f258ce8ace261225f75ed3521ade3f12ef91fff6be.cairo" + }, + "parent_location": [ + { + "end_col": 14, + "end_line": 147, + "input_file": { + "filename": "src/utils/ERC20.cairo" + }, + "start_col": 6, + "start_line": 147 + }, + "While handling return value of" + ], + "start_col": 25, + "start_line": 10 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 6, + "start_line": 147 + }, + "While handling return value of" + ], + "start_col": 57, + "start_line": 1 + } + }, + "1688": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.freeMint_encode_return" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 63, + "end_line": 11, + "input_file": { + "filename": "autogen/starknet/external/return/freeMint/8ee68f055606a9115829b1f258ce8ace261225f75ed3521ade3f12ef91fff6be.cairo" + }, + "parent_location": [ + { + "end_col": 14, + "end_line": 147, + "input_file": { + "filename": "src/utils/ERC20.cairo" + }, + "start_col": 6, + "start_line": 147 + }, + "While handling return value of" + ], + "start_col": 18, + "start_line": 11 + } + }, + "1689": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.freeMint_encode_return" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 35, + "end_line": 5, + "input_file": { + "filename": "autogen/starknet/external/return/freeMint/8ee68f055606a9115829b1f258ce8ace261225f75ed3521ade3f12ef91fff6be.cairo" + }, + "parent_location": [ + { + "end_col": 14, + "end_line": 147, + "input_file": { + "filename": "src/utils/ERC20.cairo" + }, + "parent_location": [ + { + "end_col": 38, + "end_line": 12, + "input_file": { + "filename": "autogen/starknet/external/return/freeMint/8ee68f055606a9115829b1f258ce8ace261225f75ed3521ade3f12ef91fff6be.cairo" + }, + "parent_location": [ + { + "end_col": 14, + "end_line": 147, + "input_file": { + "filename": "src/utils/ERC20.cairo" + }, + "start_col": 6, + "start_line": 147 + }, + "While handling return value of" + ], + "start_col": 14, + "start_line": 12 + }, + "While expanding the reference '__return_value_ptr_start' in:" + ], + "start_col": 6, + "start_line": 147 + }, + "While handling return value of" + ], + "start_col": 11, + "start_line": 5 + } + }, + "1690": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.freeMint_encode_return" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 40, + "end_line": 12, + "input_file": { + "filename": "autogen/starknet/external/return/freeMint/8ee68f055606a9115829b1f258ce8ace261225f75ed3521ade3f12ef91fff6be.cairo" + }, + "parent_location": [ + { + "end_col": 14, + "end_line": 147, + "input_file": { + "filename": "src/utils/ERC20.cairo" + }, + "start_col": 6, + "start_line": 147 + }, + "While handling return value of" + ], + "start_col": 5, + "start_line": 9 + } + }, + "1691": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.freeMint" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 40, + "end_line": 3, + "input_file": { + "filename": "autogen/starknet/arg_processor/98feb0f4c88833fb7f82ddd66d06f84d8ffb64f877c6f94e214b61af32d58c29.cairo" + }, + "parent_location": [ + { + "end_col": 95, + "end_line": 147, + "input_file": { + "filename": "src/utils/ERC20.cairo" + }, + "parent_location": [ + { + "end_col": 45, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/arg_processor/c31620b02d4d706f0542c989b2aadc01b0981d1f6a5933a8fe4937ace3d70d92.cairo" + }, + "parent_location": [ + { + "end_col": 14, + "end_line": 147, + "input_file": { + "filename": "src/utils/ERC20.cairo" + }, + "parent_location": [ + { + "end_col": 57, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/arg_processor/01cba52f8515996bb9d7070bde81ff39281d096d7024a558efcba6e1fd2402cf.cairo" + }, + "parent_location": [ + { + "end_col": 14, + "end_line": 147, + "input_file": { + "filename": "src/utils/ERC20.cairo" + }, + "start_col": 6, + "start_line": 147 + }, + "While handling calldata of" + ], + "start_col": 35, + "start_line": 1 + }, + "While expanding the reference '__calldata_actual_size' in:" + ], + "start_col": 6, + "start_line": 147 + }, + "While handling calldata of" + ], + "start_col": 31, + "start_line": 1 + }, + "While expanding the reference '__calldata_ptr' in:" + ], + "start_col": 80, + "start_line": 147 + }, + "While handling calldata argument 'amount'" + ], + "start_col": 22, + "start_line": 3 + } + }, + "1693": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.freeMint" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 58, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/arg_processor/01cba52f8515996bb9d7070bde81ff39281d096d7024a558efcba6e1fd2402cf.cairo" + }, + "parent_location": [ + { + "end_col": 14, + "end_line": 147, + "input_file": { + "filename": "src/utils/ERC20.cairo" + }, + "start_col": 6, + "start_line": 147 + }, + "While handling calldata of" + ], + "start_col": 1, + "start_line": 1 + } + }, + "1694": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.freeMint" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 64, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/freeMint/b2c52ca2d2a8fc8791a983086d8716c5eacd0c3d62934914d2286f84b98ff4cb.cairo" + }, + "parent_location": [ + { + "end_col": 33, + "end_line": 147, + "input_file": { + "filename": "src/utils/ERC20.cairo" + }, + "parent_location": [ + { + "end_col": 55, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/freeMint/d62db4e7f9d1eaa3d08bfb862789bde6b2d81ca9c072e09df3fd0374a85a31d8.cairo" + }, + "parent_location": [ + { + "end_col": 14, + "end_line": 147, + "input_file": { + "filename": "src/utils/ERC20.cairo" + }, + "start_col": 6, + "start_line": 147 + }, + "While constructing the external wrapper for:" + ], + "start_col": 44, + "start_line": 1 + }, + "While expanding the reference 'syscall_ptr' in:" + ], + "start_col": 15, + "start_line": 147 + }, + "While constructing the external wrapper for:" + ], + "start_col": 19, + "start_line": 1 + } + }, + "1695": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.freeMint" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 110, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/freeMint/9684a85e93c782014ca14293edea4eb2502039a5a7b6538ecd39c56faaf12529.cairo" + }, + "parent_location": [ + { + "end_col": 61, + "end_line": 147, + "input_file": { + "filename": "src/utils/ERC20.cairo" + }, + "parent_location": [ + { + "end_col": 82, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/freeMint/d62db4e7f9d1eaa3d08bfb862789bde6b2d81ca9c072e09df3fd0374a85a31d8.cairo" + }, + "parent_location": [ + { + "end_col": 14, + "end_line": 147, + "input_file": { + "filename": "src/utils/ERC20.cairo" + }, + "start_col": 6, + "start_line": 147 + }, + "While constructing the external wrapper for:" + ], + "start_col": 70, + "start_line": 1 + }, + "While expanding the reference 'pedersen_ptr' in:" + ], + "start_col": 35, + "start_line": 147 + }, + "While constructing the external wrapper for:" + ], + "start_col": 20, + "start_line": 1 + } + }, + "1696": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.freeMint" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 67, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/freeMint/741ea357d6336b0bed7bf0472425acd0311d543883b803388880e60a232040c7.cairo" + }, + "parent_location": [ + { + "end_col": 78, + "end_line": 147, + "input_file": { + "filename": "src/utils/ERC20.cairo" + }, + "parent_location": [ + { + "end_col": 115, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/freeMint/d62db4e7f9d1eaa3d08bfb862789bde6b2d81ca9c072e09df3fd0374a85a31d8.cairo" + }, + "parent_location": [ + { + "end_col": 14, + "end_line": 147, + "input_file": { + "filename": "src/utils/ERC20.cairo" + }, + "start_col": 6, + "start_line": 147 + }, + "While constructing the external wrapper for:" + ], + "start_col": 100, + "start_line": 1 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 63, + "start_line": 147 + }, + "While constructing the external wrapper for:" + ], + "start_col": 23, + "start_line": 1 + } + }, + "1697": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.freeMint" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 67, + "end_line": 2, + "input_file": { + "filename": "autogen/starknet/arg_processor/98feb0f4c88833fb7f82ddd66d06f84d8ffb64f877c6f94e214b61af32d58c29.cairo" + }, + "parent_location": [ + { + "end_col": 95, + "end_line": 147, + "input_file": { + "filename": "src/utils/ERC20.cairo" + }, + "parent_location": [ + { + "end_col": 145, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/freeMint/d62db4e7f9d1eaa3d08bfb862789bde6b2d81ca9c072e09df3fd0374a85a31d8.cairo" + }, + "parent_location": [ + { + "end_col": 14, + "end_line": 147, + "input_file": { + "filename": "src/utils/ERC20.cairo" + }, + "start_col": 6, + "start_line": 147 + }, + "While constructing the external wrapper for:" + ], + "start_col": 124, + "start_line": 1 + }, + "While expanding the reference '__calldata_arg_amount' in:" + ], + "start_col": 80, + "start_line": 147 + }, + "While handling calldata argument 'amount'" + ], + "start_col": 29, + "start_line": 1 + } + }, + "1698": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.freeMint" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 67, + "end_line": 2, + "input_file": { + "filename": "autogen/starknet/arg_processor/98feb0f4c88833fb7f82ddd66d06f84d8ffb64f877c6f94e214b61af32d58c29.cairo" + }, + "parent_location": [ + { + "end_col": 95, + "end_line": 147, + "input_file": { + "filename": "src/utils/ERC20.cairo" + }, + "parent_location": [ + { + "end_col": 145, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/freeMint/d62db4e7f9d1eaa3d08bfb862789bde6b2d81ca9c072e09df3fd0374a85a31d8.cairo" + }, + "parent_location": [ + { + "end_col": 14, + "end_line": 147, + "input_file": { + "filename": "src/utils/ERC20.cairo" + }, + "start_col": 6, + "start_line": 147 + }, + "While constructing the external wrapper for:" + ], + "start_col": 124, + "start_line": 1 + }, + "While expanding the reference '__calldata_arg_amount' in:" + ], + "start_col": 80, + "start_line": 147 + }, + "While handling calldata argument 'amount'" + ], + "start_col": 29, + "start_line": 1 + } + }, + "1699": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.freeMint" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 14, + "end_line": 147, + "input_file": { + "filename": "src/utils/ERC20.cairo" + }, + "start_col": 6, + "start_line": 147 + } + }, + "1701": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.freeMint" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 115, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/freeMint/d62db4e7f9d1eaa3d08bfb862789bde6b2d81ca9c072e09df3fd0374a85a31d8.cairo" + }, + "parent_location": [ + { + "end_col": 14, + "end_line": 147, + "input_file": { + "filename": "src/utils/ERC20.cairo" + }, + "parent_location": [ + { + "end_col": 97, + "end_line": 2, + "input_file": { + "filename": "autogen/starknet/external/freeMint/d62db4e7f9d1eaa3d08bfb862789bde6b2d81ca9c072e09df3fd0374a85a31d8.cairo" + }, + "parent_location": [ + { + "end_col": 14, + "end_line": 147, + "input_file": { + "filename": "src/utils/ERC20.cairo" + }, + "start_col": 6, + "start_line": 147 + }, + "While constructing the external wrapper for:" + ], + "start_col": 82, + "start_line": 2 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 6, + "start_line": 147 + }, + "While constructing the external wrapper for:" + ], + "start_col": 100, + "start_line": 1 + } + }, + "1702": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.freeMint" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 98, + "end_line": 2, + "input_file": { + "filename": "autogen/starknet/external/freeMint/d62db4e7f9d1eaa3d08bfb862789bde6b2d81ca9c072e09df3fd0374a85a31d8.cairo" + }, + "parent_location": [ + { + "end_col": 14, + "end_line": 147, + "input_file": { + "filename": "src/utils/ERC20.cairo" + }, + "start_col": 6, + "start_line": 147 + }, + "While constructing the external wrapper for:" + ], + "start_col": 48, + "start_line": 2 + } + }, + "1704": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.freeMint" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 55, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/freeMint/d62db4e7f9d1eaa3d08bfb862789bde6b2d81ca9c072e09df3fd0374a85a31d8.cairo" + }, + "parent_location": [ + { + "end_col": 14, + "end_line": 147, + "input_file": { + "filename": "src/utils/ERC20.cairo" + }, + "parent_location": [ + { + "end_col": 20, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/freeMint/da17921a4e81c09e730800bbf23bfdbe5e9e6bfaedc59d80fbf62087fa43c27d.cairo" + }, + "parent_location": [ + { + "end_col": 14, + "end_line": 147, + "input_file": { + "filename": "src/utils/ERC20.cairo" + }, + "start_col": 6, + "start_line": 147 + }, + "While constructing the external wrapper for:" + ], + "start_col": 9, + "start_line": 1 + }, + "While expanding the reference 'syscall_ptr' in:" + ], + "start_col": 6, + "start_line": 147 + }, + "While constructing the external wrapper for:" + ], + "start_col": 44, + "start_line": 1 + } + }, + "1705": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.freeMint" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 82, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/freeMint/d62db4e7f9d1eaa3d08bfb862789bde6b2d81ca9c072e09df3fd0374a85a31d8.cairo" + }, + "parent_location": [ + { + "end_col": 14, + "end_line": 147, + "input_file": { + "filename": "src/utils/ERC20.cairo" + }, + "parent_location": [ + { + "end_col": 33, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/freeMint/da17921a4e81c09e730800bbf23bfdbe5e9e6bfaedc59d80fbf62087fa43c27d.cairo" + }, + "parent_location": [ + { + "end_col": 14, + "end_line": 147, + "input_file": { + "filename": "src/utils/ERC20.cairo" + }, + "start_col": 6, + "start_line": 147 + }, + "While constructing the external wrapper for:" + ], + "start_col": 21, + "start_line": 1 + }, + "While expanding the reference 'pedersen_ptr' in:" + ], + "start_col": 6, + "start_line": 147 + }, + "While constructing the external wrapper for:" + ], + "start_col": 70, + "start_line": 1 + } + }, + "1706": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.freeMint" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 21, + "end_line": 2, + "input_file": { + "filename": "autogen/starknet/external/freeMint/d62db4e7f9d1eaa3d08bfb862789bde6b2d81ca9c072e09df3fd0374a85a31d8.cairo" + }, + "parent_location": [ + { + "end_col": 14, + "end_line": 147, + "input_file": { + "filename": "src/utils/ERC20.cairo" + }, + "parent_location": [ + { + "end_col": 49, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/freeMint/da17921a4e81c09e730800bbf23bfdbe5e9e6bfaedc59d80fbf62087fa43c27d.cairo" + }, + "parent_location": [ + { + "end_col": 14, + "end_line": 147, + "input_file": { + "filename": "src/utils/ERC20.cairo" + }, + "start_col": 6, + "start_line": 147 + }, + "While constructing the external wrapper for:" + ], + "start_col": 34, + "start_line": 1 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 6, + "start_line": 147 + }, + "While constructing the external wrapper for:" + ], + "start_col": 6, + "start_line": 2 + } + }, + "1707": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.freeMint" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 35, + "end_line": 2, + "input_file": { + "filename": "autogen/starknet/external/freeMint/d62db4e7f9d1eaa3d08bfb862789bde6b2d81ca9c072e09df3fd0374a85a31d8.cairo" + }, + "parent_location": [ + { + "end_col": 14, + "end_line": 147, + "input_file": { + "filename": "src/utils/ERC20.cairo" + }, + "parent_location": [ + { + "end_col": 62, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/freeMint/da17921a4e81c09e730800bbf23bfdbe5e9e6bfaedc59d80fbf62087fa43c27d.cairo" + }, + "parent_location": [ + { + "end_col": 14, + "end_line": 147, + "input_file": { + "filename": "src/utils/ERC20.cairo" + }, + "start_col": 6, + "start_line": 147 + }, + "While constructing the external wrapper for:" + ], + "start_col": 50, + "start_line": 1 + }, + "While expanding the reference 'retdata_size' in:" + ], + "start_col": 6, + "start_line": 147 + }, + "While constructing the external wrapper for:" + ], + "start_col": 23, + "start_line": 2 + } + }, + "1708": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.freeMint" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 44, + "end_line": 2, + "input_file": { + "filename": "autogen/starknet/external/freeMint/d62db4e7f9d1eaa3d08bfb862789bde6b2d81ca9c072e09df3fd0374a85a31d8.cairo" + }, + "parent_location": [ + { + "end_col": 14, + "end_line": 147, + "input_file": { + "filename": "src/utils/ERC20.cairo" + }, + "parent_location": [ + { + "end_col": 70, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/freeMint/da17921a4e81c09e730800bbf23bfdbe5e9e6bfaedc59d80fbf62087fa43c27d.cairo" + }, + "parent_location": [ + { + "end_col": 14, + "end_line": 147, + "input_file": { + "filename": "src/utils/ERC20.cairo" + }, + "start_col": 6, + "start_line": 147 + }, + "While constructing the external wrapper for:" + ], + "start_col": 63, + "start_line": 1 + }, + "While expanding the reference 'retdata' in:" + ], + "start_col": 6, + "start_line": 147 + }, + "While constructing the external wrapper for:" + ], + "start_col": 37, + "start_line": 2 + } + }, + "1709": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.freeMint" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 72, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/freeMint/da17921a4e81c09e730800bbf23bfdbe5e9e6bfaedc59d80fbf62087fa43c27d.cairo" + }, + "parent_location": [ + { + "end_col": 14, + "end_line": 147, + "input_file": { + "filename": "src/utils/ERC20.cairo" + }, + "start_col": 6, + "start_line": 147 + }, + "While constructing the external wrapper for:" + ], + "start_col": 1, + "start_line": 1 + } + } + } + }, "hints": { "0": [ { diff --git a/packages/starksheet-cairo/build/IpfsRenderer.json b/packages/starksheet-cairo/build/IpfsRenderer.json deleted file mode 100644 index 73af0156..00000000 --- a/packages/starksheet-cairo/build/IpfsRenderer.json +++ /dev/null @@ -1,3754 +0,0 @@ -{ - "abi": [ - { - "data": [ - { - "name": "previousOwner", - "type": "felt" - }, - { - "name": "newOwner", - "type": "felt" - } - ], - "keys": [], - "name": "OwnershipTransferred", - "type": "event" - }, - { - "inputs": [ - { - "name": "token_id", - "type": "felt" - }, - { - "name": "value", - "type": "felt" - }, - { - "name": "name", - "type": "felt" - } - ], - "name": "token_uri", - "outputs": [ - { - "name": "token_uri_len", - "type": "felt" - }, - { - "name": "token_uri", - "type": "felt*" - } - ], - "stateMutability": "view", - "type": "function" - } - ], - "entry_points_by_type": { - "CONSTRUCTOR": [], - "EXTERNAL": [ - { - "offset": "0x34", - "selector": "0x226ad7e84c1fe08eb4c525ed93cccadf9517670341304571e66f7c4f95cbe54" - } - ], - "L1_HANDLER": [] - }, - "program": { - "attributes": [], - "builtins": [ - "pedersen", - "range_check" - ], - "compiler_version": "0.10.0", - "data": [ - "0x40780017fff7fff", - "0x1", - "0x208b7fff7fff7ffe", - "0x20780017fff7ffd", - "0x3", - "0x208b7fff7fff7ffe", - "0x480a7ffb7fff8000", - "0x480a7ffc7fff8000", - "0x480080007fff8000", - "0x400080007ffd7fff", - "0x482480017ffd8001", - "0x1", - "0x482480017ffd8001", - "0x1", - "0xa0680017fff7ffe", - "0x800000000000010fffffffffffffffffffffffffffffffffffffffffffffffb", - "0x402a7ffc7ffd7fff", - "0x208b7fff7fff7ffe", - "0x40780017fff7fff", - "0x0", - "0x1104800180018000", - "0x800000000000010ffffffffffffffffffffffffffffffffffffffffffffffed", - "0x480680017fff8000", - "0x697066733a2f2f", - "0x400080007ffe7fff", - "0x400180017ffe7ffc", - "0x480a7ff87fff8000", - "0x480a7ff97fff8000", - "0x480a7ffa7fff8000", - "0x480680017fff8000", - "0x2", - "0x48127ffa7fff8000", - "0x208b7fff7fff7ffe", - "0x40780017fff7fff", - "0x3", - "0x4003800080007ffb", - "0x400380007ffd7ffb", - "0x402780017ffd8001", - "0x1", - "0x4826800180008000", - "0x1", - "0x40297ffb7fff8002", - "0x4826800180008000", - "0x1", - "0x480a7ffc7fff8000", - "0x480a7ffb7fff8000", - "0x1104800180018000", - "0x800000000000010ffffffffffffffffffffffffffffffffffffffffffffffd6", - "0x480a80017fff8000", - "0x4829800080008002", - "0x480a80007fff8000", - "0x208b7fff7fff7ffe", - "0x40780017fff7fff", - "0x2", - "0x482680017ffd8000", - "0x3", - "0x402a7ffd7ffc7fff", - "0x480280017ffb8000", - "0x480280007ffb8000", - "0x480280027ffb8000", - "0x480280007ffd8000", - "0x480280017ffd8000", - "0x480280027ffd8000", - "0x1104800180018000", - "0x800000000000010ffffffffffffffffffffffffffffffffffffffffffffffd4", - "0x40137ffc7fff8000", - "0x40137ffb7fff8001", - "0x48127ffd7fff8000", - "0x1104800180018000", - "0x800000000000010ffffffffffffffffffffffffffffffffffffffffffffffde", - "0x480a80007fff8000", - "0x480a80017fff8000", - "0x48127ffb7fff8000", - "0x48127ffb7fff8000", - "0x48127ffb7fff8000", - "0x208b7fff7fff7ffe" - ], - "debug_info": { - "file_contents": { - "autogen/starknet/arg_processor/01cba52f8515996bb9d7070bde81ff39281d096d7024a558efcba6e1fd2402cf.cairo": "assert [cast(fp + (-4), felt*)] = __calldata_actual_size;\n", - "autogen/starknet/arg_processor/3e93b8906c329e7a5c33e020ce7a5a9c542c4444955be98eec5fcbef545a8662.cairo": "let __calldata_arg_value = [__calldata_ptr];\nlet __calldata_ptr = __calldata_ptr + 1;\n", - "autogen/starknet/arg_processor/5462c9ea522f66a6a8b3de2f37f244c7074893fe5c8d0b413046098a1ccfc2ce.cairo": "assert [__return_value_ptr] = ret_value.token_uri_len;\nlet __return_value_ptr = __return_value_ptr + 1;\n", - "autogen/starknet/arg_processor/8d1ba44ec0b1d27c24688348db19d49f555faaa5454ce90a4e7ba33d6a63afea.cairo": "// Check that the length is non-negative.\nassert [range_check_ptr] = ret_value.token_uri_len;\n// Store the updated range_check_ptr as a local variable to keep it available after\n// the memcpy.\nlocal range_check_ptr = range_check_ptr + 1;\n// Keep a reference to __return_value_ptr.\nlet __return_value_ptr_copy = __return_value_ptr;\n// Store the updated __return_value_ptr as a local variable to keep it available after\n// the memcpy.\nlocal __return_value_ptr: felt* = __return_value_ptr + ret_value.token_uri_len * 1;\nmemcpy(\n dst=__return_value_ptr_copy,\n src=ret_value.token_uri,\n len=ret_value.token_uri_len * 1);\n", - "autogen/starknet/arg_processor/92bae94c430cca894eac466fa5be50d176f1f62e79244db218577fbac5e84220.cairo": "let __calldata_arg_token_id = [__calldata_ptr];\nlet __calldata_ptr = __calldata_ptr + 1;\n", - "autogen/starknet/arg_processor/c31620b02d4d706f0542c989b2aadc01b0981d1f6a5933a8fe4937ace3d70d92.cairo": "let __calldata_actual_size = __calldata_ptr - cast([cast(fp + (-3), felt**)], felt*);\n", - "autogen/starknet/arg_processor/e1eb73cd870ec466294c3700e77817cf3c039ac1384882ddb76383eb87a5da90.cairo": "let __calldata_arg_name = [__calldata_ptr];\nlet __calldata_ptr = __calldata_ptr + 1;\n", - "autogen/starknet/external/return/token_uri/f48cf5085ac07908983bbc364b0ba70d64fa7f2a9b8dc38e9d6fe3783bd626a8.cairo": "func token_uri_encode_return(ret_value: (token_uri_len: felt, token_uri: felt*), range_check_ptr) -> (\n range_check_ptr: felt, data_len: felt, data: felt*) {\n %{ memory[ap] = segments.add() %}\n alloc_locals;\n local __return_value_ptr_start: felt*;\n let __return_value_ptr = __return_value_ptr_start;\n with range_check_ptr {\n }\n return (\n range_check_ptr=range_check_ptr,\n data_len=__return_value_ptr - __return_value_ptr_start,\n data=__return_value_ptr_start);\n}\n", - "autogen/starknet/external/token_uri/0e46c67014b1932c61618de0923cda1cd086d4d13ccfc96398cf52540cb66251.cairo": "func token_uri() -> (syscall_ptr: felt*, pedersen_ptr: starkware.cairo.common.cairo_builtins.HashBuiltin*, range_check_ptr: felt, size: felt, retdata: felt*) {\n alloc_locals;\n}\n", - "autogen/starknet/external/token_uri/3c45a718d5dec5c07bc4698665154ce6a53892dd6482470bafad1a3c27838e5e.cairo": "let ret_value = __wrapped_func{pedersen_ptr=pedersen_ptr, syscall_ptr=syscall_ptr, range_check_ptr=range_check_ptr}(token_id=__calldata_arg_token_id, value=__calldata_arg_value, name=__calldata_arg_name,);\nlet (range_check_ptr, retdata_size, retdata) = token_uri_encode_return(ret_value, range_check_ptr);\n", - "autogen/starknet/external/token_uri/741ea357d6336b0bed7bf0472425acd0311d543883b803388880e60a232040c7.cairo": "let range_check_ptr = [cast([cast(fp + (-5), felt**)] + 2, felt*)];\n", - "autogen/starknet/external/token_uri/9684a85e93c782014ca14293edea4eb2502039a5a7b6538ecd39c56faaf12529.cairo": "let pedersen_ptr = [cast([cast(fp + (-5), felt**)] + 1, starkware.cairo.common.cairo_builtins.HashBuiltin**)];\n", - "autogen/starknet/external/token_uri/b2c52ca2d2a8fc8791a983086d8716c5eacd0c3d62934914d2286f84b98ff4cb.cairo": "let syscall_ptr = [cast([cast(fp + (-5), felt**)] + 0, felt**)];\n", - "autogen/starknet/external/token_uri/da17921a4e81c09e730800bbf23bfdbe5e9e6bfaedc59d80fbf62087fa43c27d.cairo": "return (syscall_ptr,pedersen_ptr,range_check_ptr,retdata_size,retdata);\n" - }, - "instruction_locations": { - "0": { - "accessible_scopes": [ - "starkware.cairo.common.alloc", - "starkware.cairo.common.alloc.alloc" - ], - "flow_tracking_data": null, - "hints": [ - { - "location": { - "end_col": 38, - "end_line": 3, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/alloc.cairo" - }, - "start_col": 5, - "start_line": 3 - }, - "n_prefix_newlines": 0 - } - ], - "inst": { - "end_col": 12, - "end_line": 4, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/alloc.cairo" - }, - "start_col": 5, - "start_line": 4 - } - }, - "2": { - "accessible_scopes": [ - "starkware.cairo.common.alloc", - "starkware.cairo.common.alloc.alloc" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 40, - "end_line": 5, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/alloc.cairo" - }, - "start_col": 5, - "start_line": 5 - } - }, - "3": { - "accessible_scopes": [ - "starkware.cairo.common.memcpy", - "starkware.cairo.common.memcpy.memcpy" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 7, - "end_line": 8, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/memcpy.cairo" - }, - "start_col": 5, - "start_line": 8 - } - }, - "5": { - "accessible_scopes": [ - "starkware.cairo.common.memcpy", - "starkware.cairo.common.memcpy.memcpy" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 19, - "end_line": 9, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/memcpy.cairo" - }, - "start_col": 9, - "start_line": 9 - } - }, - "6": { - "accessible_scopes": [ - "starkware.cairo.common.memcpy", - "starkware.cairo.common.memcpy.memcpy" - ], - "flow_tracking_data": null, - "hints": [ - { - "location": { - "end_col": 41, - "end_line": 12, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/memcpy.cairo" - }, - "start_col": 5, - "start_line": 12 - }, - "n_prefix_newlines": 0 - } - ], - "inst": { - "end_col": 23, - "end_line": 2, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/memcpy.cairo" - }, - "parent_location": [ - { - "end_col": 38, - "end_line": 13, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/memcpy.cairo" - }, - "start_col": 35, - "start_line": 13 - }, - "While expanding the reference 'dst' in:" - ], - "start_col": 13, - "start_line": 2 - } - }, - "7": { - "accessible_scopes": [ - "starkware.cairo.common.memcpy", - "starkware.cairo.common.memcpy.memcpy" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 35, - "end_line": 2, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/memcpy.cairo" - }, - "parent_location": [ - { - "end_col": 47, - "end_line": 13, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/memcpy.cairo" - }, - "start_col": 44, - "start_line": 13 - }, - "While expanding the reference 'src' in:" - ], - "start_col": 25, - "start_line": 2 - } - }, - "8": { - "accessible_scopes": [ - "starkware.cairo.common.memcpy", - "starkware.cairo.common.memcpy.memcpy" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 37, - "end_line": 17, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/memcpy.cairo" - }, - "start_col": 26, - "start_line": 17 - } - }, - "9": { - "accessible_scopes": [ - "starkware.cairo.common.memcpy", - "starkware.cairo.common.memcpy.memcpy" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 38, - "end_line": 17, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/memcpy.cairo" - }, - "start_col": 5, - "start_line": 17 - } - }, - "10": { - "accessible_scopes": [ - "starkware.cairo.common.memcpy", - "starkware.cairo.common.memcpy.memcpy" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 41, - "end_line": 22, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/memcpy.cairo" - }, - "start_col": 5, - "start_line": 22 - } - }, - "12": { - "accessible_scopes": [ - "starkware.cairo.common.memcpy", - "starkware.cairo.common.memcpy.memcpy" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 41, - "end_line": 23, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/memcpy.cairo" - }, - "start_col": 5, - "start_line": 23 - } - }, - "14": { - "accessible_scopes": [ - "starkware.cairo.common.memcpy", - "starkware.cairo.common.memcpy.memcpy" - ], - "flow_tracking_data": null, - "hints": [ - { - "location": { - "end_col": 7, - "end_line": 27, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/memcpy.cairo" - }, - "start_col": 5, - "start_line": 24 - }, - "n_prefix_newlines": 1 - } - ], - "inst": { - "end_col": 44, - "end_line": 29, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/memcpy.cairo" - }, - "start_col": 5, - "start_line": 29 - } - }, - "16": { - "accessible_scopes": [ - "starkware.cairo.common.memcpy", - "starkware.cairo.common.memcpy.memcpy" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 55, - "end_line": 31, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/memcpy.cairo" - }, - "start_col": 5, - "start_line": 31 - } - }, - "17": { - "accessible_scopes": [ - "starkware.cairo.common.memcpy", - "starkware.cairo.common.memcpy.memcpy" - ], - "flow_tracking_data": null, - "hints": [ - { - "location": { - "end_col": 26, - "end_line": 33, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/memcpy.cairo" - }, - "start_col": 5, - "start_line": 33 - }, - "n_prefix_newlines": 0 - } - ], - "inst": { - "end_col": 15, - "end_line": 34, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/memcpy.cairo" - }, - "start_col": 5, - "start_line": 34 - } - }, - "18": { - "accessible_scopes": [ - "__main__", - "__main__", - "__main__.token_uri" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 18, - "end_line": 10, - "input_file": { - "filename": "src/renderers/IpfsRenderer.cairo" - }, - "start_col": 5, - "start_line": 10 - } - }, - "20": { - "accessible_scopes": [ - "__main__", - "__main__", - "__main__.token_uri" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 30, - "end_line": 11, - "input_file": { - "filename": "src/renderers/IpfsRenderer.cairo" - }, - "start_col": 23, - "start_line": 11 - } - }, - "22": { - "accessible_scopes": [ - "__main__", - "__main__", - "__main__.token_uri" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 35, - "end_line": 12, - "input_file": { - "filename": "src/renderers/IpfsRenderer.cairo" - }, - "start_col": 26, - "start_line": 12 - } - }, - "24": { - "accessible_scopes": [ - "__main__", - "__main__", - "__main__.token_uri" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 36, - "end_line": 12, - "input_file": { - "filename": "src/renderers/IpfsRenderer.cairo" - }, - "start_col": 5, - "start_line": 12 - } - }, - "25": { - "accessible_scopes": [ - "__main__", - "__main__", - "__main__.token_uri" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 36, - "end_line": 13, - "input_file": { - "filename": "src/renderers/IpfsRenderer.cairo" - }, - "start_col": 5, - "start_line": 13 - } - }, - "26": { - "accessible_scopes": [ - "__main__", - "__main__", - "__main__.token_uri" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 42, - "end_line": 7, - "input_file": { - "filename": "src/renderers/IpfsRenderer.cairo" - }, - "parent_location": [ - { - "end_col": 42, - "end_line": 7, - "input_file": { - "filename": "src/renderers/IpfsRenderer.cairo" - }, - "parent_location": [ - { - "end_col": 27, - "end_line": 14, - "input_file": { - "filename": "src/renderers/IpfsRenderer.cairo" - }, - "start_col": 5, - "start_line": 14 - }, - "While trying to retrieve the implicit argument 'pedersen_ptr' in:" - ], - "start_col": 16, - "start_line": 7 - }, - "While expanding the reference 'pedersen_ptr' in:" - ], - "start_col": 16, - "start_line": 7 - } - }, - "27": { - "accessible_scopes": [ - "__main__", - "__main__", - "__main__.token_uri" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 62, - "end_line": 7, - "input_file": { - "filename": "src/renderers/IpfsRenderer.cairo" - }, - "parent_location": [ - { - "end_col": 62, - "end_line": 7, - "input_file": { - "filename": "src/renderers/IpfsRenderer.cairo" - }, - "parent_location": [ - { - "end_col": 27, - "end_line": 14, - "input_file": { - "filename": "src/renderers/IpfsRenderer.cairo" - }, - "start_col": 5, - "start_line": 14 - }, - "While trying to retrieve the implicit argument 'syscall_ptr' in:" - ], - "start_col": 44, - "start_line": 7 - }, - "While expanding the reference 'syscall_ptr' in:" - ], - "start_col": 44, - "start_line": 7 - } - }, - "28": { - "accessible_scopes": [ - "__main__", - "__main__", - "__main__.token_uri" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 79, - "end_line": 7, - "input_file": { - "filename": "src/renderers/IpfsRenderer.cairo" - }, - "parent_location": [ - { - "end_col": 79, - "end_line": 7, - "input_file": { - "filename": "src/renderers/IpfsRenderer.cairo" - }, - "parent_location": [ - { - "end_col": 27, - "end_line": 14, - "input_file": { - "filename": "src/renderers/IpfsRenderer.cairo" - }, - "start_col": 5, - "start_line": 14 - }, - "While trying to retrieve the implicit argument 'range_check_ptr' in:" - ], - "start_col": 64, - "start_line": 7 - }, - "While expanding the reference 'range_check_ptr' in:" - ], - "start_col": 64, - "start_line": 7 - } - }, - "29": { - "accessible_scopes": [ - "__main__", - "__main__", - "__main__.token_uri" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 14, - "end_line": 14, - "input_file": { - "filename": "src/renderers/IpfsRenderer.cairo" - }, - "start_col": 13, - "start_line": 14 - } - }, - "31": { - "accessible_scopes": [ - "__main__", - "__main__", - "__main__.token_uri" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 19, - "end_line": 11, - "input_file": { - "filename": "src/renderers/IpfsRenderer.cairo" - }, - "parent_location": [ - { - "end_col": 25, - "end_line": 14, - "input_file": { - "filename": "src/renderers/IpfsRenderer.cairo" - }, - "start_col": 16, - "start_line": 14 - }, - "While expanding the reference 'token_uri' in:" - ], - "start_col": 10, - "start_line": 11 - } - }, - "32": { - "accessible_scopes": [ - "__main__", - "__main__", - "__main__.token_uri" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 27, - "end_line": 14, - "input_file": { - "filename": "src/renderers/IpfsRenderer.cairo" - }, - "start_col": 5, - "start_line": 14 - } - }, - "33": { - "accessible_scopes": [ - "__main__", - "__main__", - "__wrappers__", - "__wrappers__.token_uri_encode_return" - ], - "flow_tracking_data": null, - "hints": [ - { - "location": { - "end_col": 38, - "end_line": 3, - "input_file": { - "filename": "autogen/starknet/external/return/token_uri/f48cf5085ac07908983bbc364b0ba70d64fa7f2a9b8dc38e9d6fe3783bd626a8.cairo" - }, - "parent_location": [ - { - "end_col": 15, - "end_line": 7, - "input_file": { - "filename": "src/renderers/IpfsRenderer.cairo" - }, - "start_col": 6, - "start_line": 7 - }, - "While handling return value of" - ], - "start_col": 5, - "start_line": 3 - }, - "n_prefix_newlines": 0 - } - ], - "inst": { - "end_col": 18, - "end_line": 4, - "input_file": { - "filename": "autogen/starknet/external/return/token_uri/f48cf5085ac07908983bbc364b0ba70d64fa7f2a9b8dc38e9d6fe3783bd626a8.cairo" - }, - "parent_location": [ - { - "end_col": 15, - "end_line": 7, - "input_file": { - "filename": "src/renderers/IpfsRenderer.cairo" - }, - "start_col": 6, - "start_line": 7 - }, - "While handling return value of" - ], - "start_col": 5, - "start_line": 4 - } - }, - "35": { - "accessible_scopes": [ - "__main__", - "__main__", - "__wrappers__", - "__wrappers__.token_uri_encode_return" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 55, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/arg_processor/5462c9ea522f66a6a8b3de2f37f244c7074893fe5c8d0b413046098a1ccfc2ce.cairo" - }, - "parent_location": [ - { - "end_col": 26, - "end_line": 9, - "input_file": { - "filename": "src/renderers/IpfsRenderer.cairo" - }, - "start_col": 7, - "start_line": 9 - }, - "While handling return value 'token_uri_len'" - ], - "start_col": 1, - "start_line": 1 - } - }, - "36": { - "accessible_scopes": [ - "__main__", - "__main__", - "__wrappers__", - "__wrappers__.token_uri_encode_return" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 52, - "end_line": 2, - "input_file": { - "filename": "autogen/starknet/arg_processor/8d1ba44ec0b1d27c24688348db19d49f555faaa5454ce90a4e7ba33d6a63afea.cairo" - }, - "parent_location": [ - { - "end_col": 44, - "end_line": 9, - "input_file": { - "filename": "src/renderers/IpfsRenderer.cairo" - }, - "start_col": 28, - "start_line": 9 - }, - "While handling return value 'token_uri'" - ], - "start_col": 1, - "start_line": 2 - } - }, - "37": { - "accessible_scopes": [ - "__main__", - "__main__", - "__wrappers__", - "__wrappers__.token_uri_encode_return" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 45, - "end_line": 5, - "input_file": { - "filename": "autogen/starknet/arg_processor/8d1ba44ec0b1d27c24688348db19d49f555faaa5454ce90a4e7ba33d6a63afea.cairo" - }, - "parent_location": [ - { - "end_col": 44, - "end_line": 9, - "input_file": { - "filename": "src/renderers/IpfsRenderer.cairo" - }, - "start_col": 28, - "start_line": 9 - }, - "While handling return value 'token_uri'" - ], - "start_col": 1, - "start_line": 5 - } - }, - "39": { - "accessible_scopes": [ - "__main__", - "__main__", - "__wrappers__", - "__wrappers__.token_uri_encode_return" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 48, - "end_line": 2, - "input_file": { - "filename": "autogen/starknet/arg_processor/5462c9ea522f66a6a8b3de2f37f244c7074893fe5c8d0b413046098a1ccfc2ce.cairo" - }, - "parent_location": [ - { - "end_col": 26, - "end_line": 9, - "input_file": { - "filename": "src/renderers/IpfsRenderer.cairo" - }, - "parent_location": [ - { - "end_col": 53, - "end_line": 10, - "input_file": { - "filename": "autogen/starknet/arg_processor/8d1ba44ec0b1d27c24688348db19d49f555faaa5454ce90a4e7ba33d6a63afea.cairo" - }, - "parent_location": [ - { - "end_col": 44, - "end_line": 9, - "input_file": { - "filename": "src/renderers/IpfsRenderer.cairo" - }, - "start_col": 28, - "start_line": 9 - }, - "While handling return value 'token_uri'" - ], - "start_col": 35, - "start_line": 10 - }, - "While expanding the reference '__return_value_ptr' in:" - ], - "start_col": 7, - "start_line": 9 - }, - "While handling return value 'token_uri_len'" - ], - "start_col": 26, - "start_line": 2 - } - }, - "41": { - "accessible_scopes": [ - "__main__", - "__main__", - "__wrappers__", - "__wrappers__.token_uri_encode_return" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 84, - "end_line": 10, - "input_file": { - "filename": "autogen/starknet/arg_processor/8d1ba44ec0b1d27c24688348db19d49f555faaa5454ce90a4e7ba33d6a63afea.cairo" - }, - "parent_location": [ - { - "end_col": 44, - "end_line": 9, - "input_file": { - "filename": "src/renderers/IpfsRenderer.cairo" - }, - "start_col": 28, - "start_line": 9 - }, - "While handling return value 'token_uri'" - ], - "start_col": 1, - "start_line": 10 - } - }, - "42": { - "accessible_scopes": [ - "__main__", - "__main__", - "__wrappers__", - "__wrappers__.token_uri_encode_return" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 48, - "end_line": 2, - "input_file": { - "filename": "autogen/starknet/arg_processor/5462c9ea522f66a6a8b3de2f37f244c7074893fe5c8d0b413046098a1ccfc2ce.cairo" - }, - "parent_location": [ - { - "end_col": 26, - "end_line": 9, - "input_file": { - "filename": "src/renderers/IpfsRenderer.cairo" - }, - "parent_location": [ - { - "end_col": 49, - "end_line": 7, - "input_file": { - "filename": "autogen/starknet/arg_processor/8d1ba44ec0b1d27c24688348db19d49f555faaa5454ce90a4e7ba33d6a63afea.cairo" - }, - "parent_location": [ - { - "end_col": 44, - "end_line": 9, - "input_file": { - "filename": "src/renderers/IpfsRenderer.cairo" - }, - "parent_location": [ - { - "end_col": 32, - "end_line": 12, - "input_file": { - "filename": "autogen/starknet/arg_processor/8d1ba44ec0b1d27c24688348db19d49f555faaa5454ce90a4e7ba33d6a63afea.cairo" - }, - "parent_location": [ - { - "end_col": 44, - "end_line": 9, - "input_file": { - "filename": "src/renderers/IpfsRenderer.cairo" - }, - "start_col": 28, - "start_line": 9 - }, - "While handling return value 'token_uri'" - ], - "start_col": 9, - "start_line": 12 - }, - "While expanding the reference '__return_value_ptr_copy' in:" - ], - "start_col": 28, - "start_line": 9 - }, - "While handling return value 'token_uri'" - ], - "start_col": 31, - "start_line": 7 - }, - "While expanding the reference '__return_value_ptr' in:" - ], - "start_col": 7, - "start_line": 9 - }, - "While handling return value 'token_uri_len'" - ], - "start_col": 26, - "start_line": 2 - } - }, - "44": { - "accessible_scopes": [ - "__main__", - "__main__", - "__wrappers__", - "__wrappers__.token_uri_encode_return" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 28, - "end_line": 13, - "input_file": { - "filename": "autogen/starknet/arg_processor/8d1ba44ec0b1d27c24688348db19d49f555faaa5454ce90a4e7ba33d6a63afea.cairo" - }, - "parent_location": [ - { - "end_col": 44, - "end_line": 9, - "input_file": { - "filename": "src/renderers/IpfsRenderer.cairo" - }, - "start_col": 28, - "start_line": 9 - }, - "While handling return value 'token_uri'" - ], - "start_col": 9, - "start_line": 13 - } - }, - "45": { - "accessible_scopes": [ - "__main__", - "__main__", - "__wrappers__", - "__wrappers__.token_uri_encode_return" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 32, - "end_line": 14, - "input_file": { - "filename": "autogen/starknet/arg_processor/8d1ba44ec0b1d27c24688348db19d49f555faaa5454ce90a4e7ba33d6a63afea.cairo" - }, - "parent_location": [ - { - "end_col": 44, - "end_line": 9, - "input_file": { - "filename": "src/renderers/IpfsRenderer.cairo" - }, - "start_col": 28, - "start_line": 9 - }, - "While handling return value 'token_uri'" - ], - "start_col": 9, - "start_line": 14 - } - }, - "46": { - "accessible_scopes": [ - "__main__", - "__main__", - "__wrappers__", - "__wrappers__.token_uri_encode_return" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 37, - "end_line": 14, - "input_file": { - "filename": "autogen/starknet/arg_processor/8d1ba44ec0b1d27c24688348db19d49f555faaa5454ce90a4e7ba33d6a63afea.cairo" - }, - "parent_location": [ - { - "end_col": 44, - "end_line": 9, - "input_file": { - "filename": "src/renderers/IpfsRenderer.cairo" - }, - "start_col": 28, - "start_line": 9 - }, - "While handling return value 'token_uri'" - ], - "start_col": 1, - "start_line": 11 - } - }, - "48": { - "accessible_scopes": [ - "__main__", - "__main__", - "__wrappers__", - "__wrappers__.token_uri_encode_return" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 22, - "end_line": 5, - "input_file": { - "filename": "autogen/starknet/arg_processor/8d1ba44ec0b1d27c24688348db19d49f555faaa5454ce90a4e7ba33d6a63afea.cairo" - }, - "parent_location": [ - { - "end_col": 44, - "end_line": 9, - "input_file": { - "filename": "src/renderers/IpfsRenderer.cairo" - }, - "parent_location": [ - { - "end_col": 40, - "end_line": 10, - "input_file": { - "filename": "autogen/starknet/external/return/token_uri/f48cf5085ac07908983bbc364b0ba70d64fa7f2a9b8dc38e9d6fe3783bd626a8.cairo" - }, - "parent_location": [ - { - "end_col": 15, - "end_line": 7, - "input_file": { - "filename": "src/renderers/IpfsRenderer.cairo" - }, - "start_col": 6, - "start_line": 7 - }, - "While handling return value of" - ], - "start_col": 25, - "start_line": 10 - }, - "While expanding the reference 'range_check_ptr' in:" - ], - "start_col": 28, - "start_line": 9 - }, - "While handling return value 'token_uri'" - ], - "start_col": 7, - "start_line": 5 - } - }, - "49": { - "accessible_scopes": [ - "__main__", - "__main__", - "__wrappers__", - "__wrappers__.token_uri_encode_return" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 63, - "end_line": 11, - "input_file": { - "filename": "autogen/starknet/external/return/token_uri/f48cf5085ac07908983bbc364b0ba70d64fa7f2a9b8dc38e9d6fe3783bd626a8.cairo" - }, - "parent_location": [ - { - "end_col": 15, - "end_line": 7, - "input_file": { - "filename": "src/renderers/IpfsRenderer.cairo" - }, - "start_col": 6, - "start_line": 7 - }, - "While handling return value of" - ], - "start_col": 18, - "start_line": 11 - } - }, - "50": { - "accessible_scopes": [ - "__main__", - "__main__", - "__wrappers__", - "__wrappers__.token_uri_encode_return" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 35, - "end_line": 5, - "input_file": { - "filename": "autogen/starknet/external/return/token_uri/f48cf5085ac07908983bbc364b0ba70d64fa7f2a9b8dc38e9d6fe3783bd626a8.cairo" - }, - "parent_location": [ - { - "end_col": 15, - "end_line": 7, - "input_file": { - "filename": "src/renderers/IpfsRenderer.cairo" - }, - "parent_location": [ - { - "end_col": 38, - "end_line": 12, - "input_file": { - "filename": "autogen/starknet/external/return/token_uri/f48cf5085ac07908983bbc364b0ba70d64fa7f2a9b8dc38e9d6fe3783bd626a8.cairo" - }, - "parent_location": [ - { - "end_col": 15, - "end_line": 7, - "input_file": { - "filename": "src/renderers/IpfsRenderer.cairo" - }, - "start_col": 6, - "start_line": 7 - }, - "While handling return value of" - ], - "start_col": 14, - "start_line": 12 - }, - "While expanding the reference '__return_value_ptr_start' in:" - ], - "start_col": 6, - "start_line": 7 - }, - "While handling return value of" - ], - "start_col": 11, - "start_line": 5 - } - }, - "51": { - "accessible_scopes": [ - "__main__", - "__main__", - "__wrappers__", - "__wrappers__.token_uri_encode_return" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 40, - "end_line": 12, - "input_file": { - "filename": "autogen/starknet/external/return/token_uri/f48cf5085ac07908983bbc364b0ba70d64fa7f2a9b8dc38e9d6fe3783bd626a8.cairo" - }, - "parent_location": [ - { - "end_col": 15, - "end_line": 7, - "input_file": { - "filename": "src/renderers/IpfsRenderer.cairo" - }, - "start_col": 6, - "start_line": 7 - }, - "While handling return value of" - ], - "start_col": 5, - "start_line": 9 - } - }, - "52": { - "accessible_scopes": [ - "__main__", - "__main__", - "__wrappers__", - "__wrappers__.token_uri" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 18, - "end_line": 2, - "input_file": { - "filename": "autogen/starknet/external/token_uri/0e46c67014b1932c61618de0923cda1cd086d4d13ccfc96398cf52540cb66251.cairo" - }, - "parent_location": [ - { - "end_col": 15, - "end_line": 7, - "input_file": { - "filename": "src/renderers/IpfsRenderer.cairo" - }, - "start_col": 6, - "start_line": 7 - }, - "While constructing the external wrapper for:" - ], - "start_col": 5, - "start_line": 2 - } - }, - "54": { - "accessible_scopes": [ - "__main__", - "__main__", - "__wrappers__", - "__wrappers__.token_uri" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 40, - "end_line": 2, - "input_file": { - "filename": "autogen/starknet/arg_processor/e1eb73cd870ec466294c3700e77817cf3c039ac1384882ddb76383eb87a5da90.cairo" - }, - "parent_location": [ - { - "end_col": 44, - "end_line": 8, - "input_file": { - "filename": "src/renderers/IpfsRenderer.cairo" - }, - "parent_location": [ - { - "end_col": 45, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/arg_processor/c31620b02d4d706f0542c989b2aadc01b0981d1f6a5933a8fe4937ace3d70d92.cairo" - }, - "parent_location": [ - { - "end_col": 15, - "end_line": 7, - "input_file": { - "filename": "src/renderers/IpfsRenderer.cairo" - }, - "parent_location": [ - { - "end_col": 57, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/arg_processor/01cba52f8515996bb9d7070bde81ff39281d096d7024a558efcba6e1fd2402cf.cairo" - }, - "parent_location": [ - { - "end_col": 15, - "end_line": 7, - "input_file": { - "filename": "src/renderers/IpfsRenderer.cairo" - }, - "start_col": 6, - "start_line": 7 - }, - "While handling calldata of" - ], - "start_col": 35, - "start_line": 1 - }, - "While expanding the reference '__calldata_actual_size' in:" - ], - "start_col": 6, - "start_line": 7 - }, - "While handling calldata of" - ], - "start_col": 31, - "start_line": 1 - }, - "While expanding the reference '__calldata_ptr' in:" - ], - "start_col": 34, - "start_line": 8 - }, - "While handling calldata argument 'name'" - ], - "start_col": 22, - "start_line": 2 - } - }, - "56": { - "accessible_scopes": [ - "__main__", - "__main__", - "__wrappers__", - "__wrappers__.token_uri" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 58, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/arg_processor/01cba52f8515996bb9d7070bde81ff39281d096d7024a558efcba6e1fd2402cf.cairo" - }, - "parent_location": [ - { - "end_col": 15, - "end_line": 7, - "input_file": { - "filename": "src/renderers/IpfsRenderer.cairo" - }, - "start_col": 6, - "start_line": 7 - }, - "While handling calldata of" - ], - "start_col": 1, - "start_line": 1 - } - }, - "57": { - "accessible_scopes": [ - "__main__", - "__main__", - "__wrappers__", - "__wrappers__.token_uri" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 110, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/external/token_uri/9684a85e93c782014ca14293edea4eb2502039a5a7b6538ecd39c56faaf12529.cairo" - }, - "parent_location": [ - { - "end_col": 42, - "end_line": 7, - "input_file": { - "filename": "src/renderers/IpfsRenderer.cairo" - }, - "parent_location": [ - { - "end_col": 57, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/external/token_uri/3c45a718d5dec5c07bc4698665154ce6a53892dd6482470bafad1a3c27838e5e.cairo" - }, - "parent_location": [ - { - "end_col": 15, - "end_line": 7, - "input_file": { - "filename": "src/renderers/IpfsRenderer.cairo" - }, - "start_col": 6, - "start_line": 7 - }, - "While constructing the external wrapper for:" - ], - "start_col": 45, - "start_line": 1 - }, - "While expanding the reference 'pedersen_ptr' in:" - ], - "start_col": 16, - "start_line": 7 - }, - "While constructing the external wrapper for:" - ], - "start_col": 20, - "start_line": 1 - } - }, - "58": { - "accessible_scopes": [ - "__main__", - "__main__", - "__wrappers__", - "__wrappers__.token_uri" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 64, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/external/token_uri/b2c52ca2d2a8fc8791a983086d8716c5eacd0c3d62934914d2286f84b98ff4cb.cairo" - }, - "parent_location": [ - { - "end_col": 62, - "end_line": 7, - "input_file": { - "filename": "src/renderers/IpfsRenderer.cairo" - }, - "parent_location": [ - { - "end_col": 82, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/external/token_uri/3c45a718d5dec5c07bc4698665154ce6a53892dd6482470bafad1a3c27838e5e.cairo" - }, - "parent_location": [ - { - "end_col": 15, - "end_line": 7, - "input_file": { - "filename": "src/renderers/IpfsRenderer.cairo" - }, - "start_col": 6, - "start_line": 7 - }, - "While constructing the external wrapper for:" - ], - "start_col": 71, - "start_line": 1 - }, - "While expanding the reference 'syscall_ptr' in:" - ], - "start_col": 44, - "start_line": 7 - }, - "While constructing the external wrapper for:" - ], - "start_col": 19, - "start_line": 1 - } - }, - "59": { - "accessible_scopes": [ - "__main__", - "__main__", - "__wrappers__", - "__wrappers__.token_uri" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 67, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/external/token_uri/741ea357d6336b0bed7bf0472425acd0311d543883b803388880e60a232040c7.cairo" - }, - "parent_location": [ - { - "end_col": 79, - "end_line": 7, - "input_file": { - "filename": "src/renderers/IpfsRenderer.cairo" - }, - "parent_location": [ - { - "end_col": 115, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/external/token_uri/3c45a718d5dec5c07bc4698665154ce6a53892dd6482470bafad1a3c27838e5e.cairo" - }, - "parent_location": [ - { - "end_col": 15, - "end_line": 7, - "input_file": { - "filename": "src/renderers/IpfsRenderer.cairo" - }, - "start_col": 6, - "start_line": 7 - }, - "While constructing the external wrapper for:" - ], - "start_col": 100, - "start_line": 1 - }, - "While expanding the reference 'range_check_ptr' in:" - ], - "start_col": 64, - "start_line": 7 - }, - "While constructing the external wrapper for:" - ], - "start_col": 23, - "start_line": 1 - } - }, - "60": { - "accessible_scopes": [ - "__main__", - "__main__", - "__wrappers__", - "__wrappers__.token_uri" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 47, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/arg_processor/92bae94c430cca894eac466fa5be50d176f1f62e79244db218577fbac5e84220.cairo" - }, - "parent_location": [ - { - "end_col": 19, - "end_line": 8, - "input_file": { - "filename": "src/renderers/IpfsRenderer.cairo" - }, - "parent_location": [ - { - "end_col": 149, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/external/token_uri/3c45a718d5dec5c07bc4698665154ce6a53892dd6482470bafad1a3c27838e5e.cairo" - }, - "parent_location": [ - { - "end_col": 15, - "end_line": 7, - "input_file": { - "filename": "src/renderers/IpfsRenderer.cairo" - }, - "start_col": 6, - "start_line": 7 - }, - "While constructing the external wrapper for:" - ], - "start_col": 126, - "start_line": 1 - }, - "While expanding the reference '__calldata_arg_token_id' in:" - ], - "start_col": 5, - "start_line": 8 - }, - "While handling calldata argument 'token_id'" - ], - "start_col": 31, - "start_line": 1 - } - }, - "61": { - "accessible_scopes": [ - "__main__", - "__main__", - "__wrappers__", - "__wrappers__.token_uri" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 44, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/arg_processor/3e93b8906c329e7a5c33e020ce7a5a9c542c4444955be98eec5fcbef545a8662.cairo" - }, - "parent_location": [ - { - "end_col": 32, - "end_line": 8, - "input_file": { - "filename": "src/renderers/IpfsRenderer.cairo" - }, - "parent_location": [ - { - "end_col": 177, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/external/token_uri/3c45a718d5dec5c07bc4698665154ce6a53892dd6482470bafad1a3c27838e5e.cairo" - }, - "parent_location": [ - { - "end_col": 15, - "end_line": 7, - "input_file": { - "filename": "src/renderers/IpfsRenderer.cairo" - }, - "start_col": 6, - "start_line": 7 - }, - "While constructing the external wrapper for:" - ], - "start_col": 157, - "start_line": 1 - }, - "While expanding the reference '__calldata_arg_value' in:" - ], - "start_col": 21, - "start_line": 8 - }, - "While handling calldata argument 'value'" - ], - "start_col": 28, - "start_line": 1 - } - }, - "62": { - "accessible_scopes": [ - "__main__", - "__main__", - "__wrappers__", - "__wrappers__.token_uri" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 43, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/arg_processor/e1eb73cd870ec466294c3700e77817cf3c039ac1384882ddb76383eb87a5da90.cairo" - }, - "parent_location": [ - { - "end_col": 44, - "end_line": 8, - "input_file": { - "filename": "src/renderers/IpfsRenderer.cairo" - }, - "parent_location": [ - { - "end_col": 203, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/external/token_uri/3c45a718d5dec5c07bc4698665154ce6a53892dd6482470bafad1a3c27838e5e.cairo" - }, - "parent_location": [ - { - "end_col": 15, - "end_line": 7, - "input_file": { - "filename": "src/renderers/IpfsRenderer.cairo" - }, - "start_col": 6, - "start_line": 7 - }, - "While constructing the external wrapper for:" - ], - "start_col": 184, - "start_line": 1 - }, - "While expanding the reference '__calldata_arg_name' in:" - ], - "start_col": 34, - "start_line": 8 - }, - "While handling calldata argument 'name'" - ], - "start_col": 27, - "start_line": 1 - } - }, - "63": { - "accessible_scopes": [ - "__main__", - "__main__", - "__wrappers__", - "__wrappers__.token_uri" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 15, - "end_line": 7, - "input_file": { - "filename": "src/renderers/IpfsRenderer.cairo" - }, - "start_col": 6, - "start_line": 7 - } - }, - "65": { - "accessible_scopes": [ - "__main__", - "__main__", - "__wrappers__", - "__wrappers__.token_uri" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 82, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/external/token_uri/3c45a718d5dec5c07bc4698665154ce6a53892dd6482470bafad1a3c27838e5e.cairo" - }, - "parent_location": [ - { - "end_col": 15, - "end_line": 7, - "input_file": { - "filename": "src/renderers/IpfsRenderer.cairo" - }, - "parent_location": [ - { - "end_col": 82, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/external/token_uri/3c45a718d5dec5c07bc4698665154ce6a53892dd6482470bafad1a3c27838e5e.cairo" - }, - "parent_location": [ - { - "end_col": 15, - "end_line": 7, - "input_file": { - "filename": "src/renderers/IpfsRenderer.cairo" - }, - "start_col": 6, - "start_line": 7 - }, - "While constructing the external wrapper for:" - ], - "start_col": 71, - "start_line": 1 - }, - "While auto generating local variable for 'syscall_ptr'." - ], - "start_col": 6, - "start_line": 7 - }, - "While constructing the external wrapper for:" - ], - "start_col": 71, - "start_line": 1 - } - }, - "66": { - "accessible_scopes": [ - "__main__", - "__main__", - "__wrappers__", - "__wrappers__.token_uri" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 57, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/external/token_uri/3c45a718d5dec5c07bc4698665154ce6a53892dd6482470bafad1a3c27838e5e.cairo" - }, - "parent_location": [ - { - "end_col": 15, - "end_line": 7, - "input_file": { - "filename": "src/renderers/IpfsRenderer.cairo" - }, - "parent_location": [ - { - "end_col": 57, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/external/token_uri/3c45a718d5dec5c07bc4698665154ce6a53892dd6482470bafad1a3c27838e5e.cairo" - }, - "parent_location": [ - { - "end_col": 15, - "end_line": 7, - "input_file": { - "filename": "src/renderers/IpfsRenderer.cairo" - }, - "start_col": 6, - "start_line": 7 - }, - "While constructing the external wrapper for:" - ], - "start_col": 45, - "start_line": 1 - }, - "While auto generating local variable for 'pedersen_ptr'." - ], - "start_col": 6, - "start_line": 7 - }, - "While constructing the external wrapper for:" - ], - "start_col": 45, - "start_line": 1 - } - }, - "67": { - "accessible_scopes": [ - "__main__", - "__main__", - "__wrappers__", - "__wrappers__.token_uri" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 115, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/external/token_uri/3c45a718d5dec5c07bc4698665154ce6a53892dd6482470bafad1a3c27838e5e.cairo" - }, - "parent_location": [ - { - "end_col": 15, - "end_line": 7, - "input_file": { - "filename": "src/renderers/IpfsRenderer.cairo" - }, - "parent_location": [ - { - "end_col": 98, - "end_line": 2, - "input_file": { - "filename": "autogen/starknet/external/token_uri/3c45a718d5dec5c07bc4698665154ce6a53892dd6482470bafad1a3c27838e5e.cairo" - }, - "parent_location": [ - { - "end_col": 15, - "end_line": 7, - "input_file": { - "filename": "src/renderers/IpfsRenderer.cairo" - }, - "start_col": 6, - "start_line": 7 - }, - "While constructing the external wrapper for:" - ], - "start_col": 83, - "start_line": 2 - }, - "While expanding the reference 'range_check_ptr' in:" - ], - "start_col": 6, - "start_line": 7 - }, - "While constructing the external wrapper for:" - ], - "start_col": 100, - "start_line": 1 - } - }, - "68": { - "accessible_scopes": [ - "__main__", - "__main__", - "__wrappers__", - "__wrappers__.token_uri" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 99, - "end_line": 2, - "input_file": { - "filename": "autogen/starknet/external/token_uri/3c45a718d5dec5c07bc4698665154ce6a53892dd6482470bafad1a3c27838e5e.cairo" - }, - "parent_location": [ - { - "end_col": 15, - "end_line": 7, - "input_file": { - "filename": "src/renderers/IpfsRenderer.cairo" - }, - "start_col": 6, - "start_line": 7 - }, - "While constructing the external wrapper for:" - ], - "start_col": 48, - "start_line": 2 - } - }, - "70": { - "accessible_scopes": [ - "__main__", - "__main__", - "__wrappers__", - "__wrappers__.token_uri" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 82, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/external/token_uri/3c45a718d5dec5c07bc4698665154ce6a53892dd6482470bafad1a3c27838e5e.cairo" - }, - "parent_location": [ - { - "end_col": 15, - "end_line": 7, - "input_file": { - "filename": "src/renderers/IpfsRenderer.cairo" - }, - "parent_location": [ - { - "end_col": 82, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/external/token_uri/3c45a718d5dec5c07bc4698665154ce6a53892dd6482470bafad1a3c27838e5e.cairo" - }, - "parent_location": [ - { - "end_col": 15, - "end_line": 7, - "input_file": { - "filename": "src/renderers/IpfsRenderer.cairo" - }, - "parent_location": [ - { - "end_col": 20, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/external/token_uri/da17921a4e81c09e730800bbf23bfdbe5e9e6bfaedc59d80fbf62087fa43c27d.cairo" - }, - "parent_location": [ - { - "end_col": 15, - "end_line": 7, - "input_file": { - "filename": "src/renderers/IpfsRenderer.cairo" - }, - "start_col": 6, - "start_line": 7 - }, - "While constructing the external wrapper for:" - ], - "start_col": 9, - "start_line": 1 - }, - "While expanding the reference 'syscall_ptr' in:" - ], - "start_col": 6, - "start_line": 7 - }, - "While constructing the external wrapper for:" - ], - "start_col": 71, - "start_line": 1 - }, - "While auto generating local variable for 'syscall_ptr'." - ], - "start_col": 6, - "start_line": 7 - }, - "While constructing the external wrapper for:" - ], - "start_col": 71, - "start_line": 1 - } - }, - "71": { - "accessible_scopes": [ - "__main__", - "__main__", - "__wrappers__", - "__wrappers__.token_uri" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 57, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/external/token_uri/3c45a718d5dec5c07bc4698665154ce6a53892dd6482470bafad1a3c27838e5e.cairo" - }, - "parent_location": [ - { - "end_col": 15, - "end_line": 7, - "input_file": { - "filename": "src/renderers/IpfsRenderer.cairo" - }, - "parent_location": [ - { - "end_col": 57, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/external/token_uri/3c45a718d5dec5c07bc4698665154ce6a53892dd6482470bafad1a3c27838e5e.cairo" - }, - "parent_location": [ - { - "end_col": 15, - "end_line": 7, - "input_file": { - "filename": "src/renderers/IpfsRenderer.cairo" - }, - "parent_location": [ - { - "end_col": 33, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/external/token_uri/da17921a4e81c09e730800bbf23bfdbe5e9e6bfaedc59d80fbf62087fa43c27d.cairo" - }, - "parent_location": [ - { - "end_col": 15, - "end_line": 7, - "input_file": { - "filename": "src/renderers/IpfsRenderer.cairo" - }, - "start_col": 6, - "start_line": 7 - }, - "While constructing the external wrapper for:" - ], - "start_col": 21, - "start_line": 1 - }, - "While expanding the reference 'pedersen_ptr' in:" - ], - "start_col": 6, - "start_line": 7 - }, - "While constructing the external wrapper for:" - ], - "start_col": 45, - "start_line": 1 - }, - "While auto generating local variable for 'pedersen_ptr'." - ], - "start_col": 6, - "start_line": 7 - }, - "While constructing the external wrapper for:" - ], - "start_col": 45, - "start_line": 1 - } - }, - "72": { - "accessible_scopes": [ - "__main__", - "__main__", - "__wrappers__", - "__wrappers__.token_uri" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 21, - "end_line": 2, - "input_file": { - "filename": "autogen/starknet/external/token_uri/3c45a718d5dec5c07bc4698665154ce6a53892dd6482470bafad1a3c27838e5e.cairo" - }, - "parent_location": [ - { - "end_col": 15, - "end_line": 7, - "input_file": { - "filename": "src/renderers/IpfsRenderer.cairo" - }, - "parent_location": [ - { - "end_col": 49, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/external/token_uri/da17921a4e81c09e730800bbf23bfdbe5e9e6bfaedc59d80fbf62087fa43c27d.cairo" - }, - "parent_location": [ - { - "end_col": 15, - "end_line": 7, - "input_file": { - "filename": "src/renderers/IpfsRenderer.cairo" - }, - "start_col": 6, - "start_line": 7 - }, - "While constructing the external wrapper for:" - ], - "start_col": 34, - "start_line": 1 - }, - "While expanding the reference 'range_check_ptr' in:" - ], - "start_col": 6, - "start_line": 7 - }, - "While constructing the external wrapper for:" - ], - "start_col": 6, - "start_line": 2 - } - }, - "73": { - "accessible_scopes": [ - "__main__", - "__main__", - "__wrappers__", - "__wrappers__.token_uri" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 35, - "end_line": 2, - "input_file": { - "filename": "autogen/starknet/external/token_uri/3c45a718d5dec5c07bc4698665154ce6a53892dd6482470bafad1a3c27838e5e.cairo" - }, - "parent_location": [ - { - "end_col": 15, - "end_line": 7, - "input_file": { - "filename": "src/renderers/IpfsRenderer.cairo" - }, - "parent_location": [ - { - "end_col": 62, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/external/token_uri/da17921a4e81c09e730800bbf23bfdbe5e9e6bfaedc59d80fbf62087fa43c27d.cairo" - }, - "parent_location": [ - { - "end_col": 15, - "end_line": 7, - "input_file": { - "filename": "src/renderers/IpfsRenderer.cairo" - }, - "start_col": 6, - "start_line": 7 - }, - "While constructing the external wrapper for:" - ], - "start_col": 50, - "start_line": 1 - }, - "While expanding the reference 'retdata_size' in:" - ], - "start_col": 6, - "start_line": 7 - }, - "While constructing the external wrapper for:" - ], - "start_col": 23, - "start_line": 2 - } - }, - "74": { - "accessible_scopes": [ - "__main__", - "__main__", - "__wrappers__", - "__wrappers__.token_uri" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 44, - "end_line": 2, - "input_file": { - "filename": "autogen/starknet/external/token_uri/3c45a718d5dec5c07bc4698665154ce6a53892dd6482470bafad1a3c27838e5e.cairo" - }, - "parent_location": [ - { - "end_col": 15, - "end_line": 7, - "input_file": { - "filename": "src/renderers/IpfsRenderer.cairo" - }, - "parent_location": [ - { - "end_col": 70, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/external/token_uri/da17921a4e81c09e730800bbf23bfdbe5e9e6bfaedc59d80fbf62087fa43c27d.cairo" - }, - "parent_location": [ - { - "end_col": 15, - "end_line": 7, - "input_file": { - "filename": "src/renderers/IpfsRenderer.cairo" - }, - "start_col": 6, - "start_line": 7 - }, - "While constructing the external wrapper for:" - ], - "start_col": 63, - "start_line": 1 - }, - "While expanding the reference 'retdata' in:" - ], - "start_col": 6, - "start_line": 7 - }, - "While constructing the external wrapper for:" - ], - "start_col": 37, - "start_line": 2 - } - }, - "75": { - "accessible_scopes": [ - "__main__", - "__main__", - "__wrappers__", - "__wrappers__.token_uri" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 72, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/external/token_uri/da17921a4e81c09e730800bbf23bfdbe5e9e6bfaedc59d80fbf62087fa43c27d.cairo" - }, - "parent_location": [ - { - "end_col": 15, - "end_line": 7, - "input_file": { - "filename": "src/renderers/IpfsRenderer.cairo" - }, - "start_col": 6, - "start_line": 7 - }, - "While constructing the external wrapper for:" - ], - "start_col": 1, - "start_line": 1 - } - } - } - }, - "hints": { - "0": [ - { - "accessible_scopes": [ - "starkware.cairo.common.alloc", - "starkware.cairo.common.alloc.alloc" - ], - "code": "memory[ap] = segments.add()", - "flow_tracking_data": { - "ap_tracking": { - "group": 0, - "offset": 0 - }, - "reference_ids": {} - } - } - ], - "6": [ - { - "accessible_scopes": [ - "starkware.cairo.common.memcpy", - "starkware.cairo.common.memcpy.memcpy" - ], - "code": "vm_enter_scope({'n': ids.len})", - "flow_tracking_data": { - "ap_tracking": { - "group": 1, - "offset": 0 - }, - "reference_ids": { - "starkware.cairo.common.memcpy.memcpy.len": 0 - } - } - } - ], - "14": [ - { - "accessible_scopes": [ - "starkware.cairo.common.memcpy", - "starkware.cairo.common.memcpy.memcpy" - ], - "code": "n -= 1\nids.continue_copying = 1 if n > 0 else 0", - "flow_tracking_data": { - "ap_tracking": { - "group": 1, - "offset": 5 - }, - "reference_ids": { - "starkware.cairo.common.memcpy.memcpy.continue_copying": 1 - } - } - } - ], - "17": [ - { - "accessible_scopes": [ - "starkware.cairo.common.memcpy", - "starkware.cairo.common.memcpy.memcpy" - ], - "code": "vm_exit_scope()", - "flow_tracking_data": { - "ap_tracking": { - "group": 1, - "offset": 6 - }, - "reference_ids": {} - } - } - ], - "33": [ - { - "accessible_scopes": [ - "__main__", - "__main__", - "__wrappers__", - "__wrappers__.token_uri_encode_return" - ], - "code": "memory[ap] = segments.add()", - "flow_tracking_data": { - "ap_tracking": { - "group": 3, - "offset": 0 - }, - "reference_ids": {} - } - } - ] - }, - "identifiers": { - "__main__.HashBuiltin": { - "destination": "starkware.cairo.common.cairo_builtins.HashBuiltin", - "type": "alias" - }, - "__main__.Ownable": { - "destination": "openzeppelin.access.ownable.library.Ownable", - "type": "alias" - }, - "__main__.alloc": { - "destination": "starkware.cairo.common.alloc.alloc", - "type": "alias" - }, - "__main__.token_uri": { - "decorators": [ - "view" - ], - "pc": 18, - "type": "function" - }, - "__main__.token_uri.Args": { - "full_name": "__main__.token_uri.Args", - "members": { - "name": { - "cairo_type": "felt", - "offset": 2 - }, - "token_id": { - "cairo_type": "felt", - "offset": 0 - }, - "value": { - "cairo_type": "felt", - "offset": 1 - } - }, - "size": 3, - "type": "struct" - }, - "__main__.token_uri.ImplicitArgs": { - "full_name": "__main__.token_uri.ImplicitArgs", - "members": { - "pedersen_ptr": { - "cairo_type": "starkware.cairo.common.cairo_builtins.HashBuiltin*", - "offset": 0 - }, - "range_check_ptr": { - "cairo_type": "felt", - "offset": 2 - }, - "syscall_ptr": { - "cairo_type": "felt*", - "offset": 1 - } - }, - "size": 3, - "type": "struct" - }, - "__main__.token_uri.Return": { - "cairo_type": "(token_uri_len: felt, token_uri: felt*)", - "type": "type_definition" - }, - "__main__.token_uri.SIZEOF_LOCALS": { - "type": "const", - "value": 0 - }, - "__wrappers__.token_uri": { - "decorators": [ - "view" - ], - "pc": 52, - "type": "function" - }, - "__wrappers__.token_uri.Args": { - "full_name": "__wrappers__.token_uri.Args", - "members": {}, - "size": 0, - "type": "struct" - }, - "__wrappers__.token_uri.ImplicitArgs": { - "full_name": "__wrappers__.token_uri.ImplicitArgs", - "members": {}, - "size": 0, - "type": "struct" - }, - "__wrappers__.token_uri.Return": { - "cairo_type": "(syscall_ptr: felt*, pedersen_ptr: starkware.cairo.common.cairo_builtins.HashBuiltin*, range_check_ptr: felt, size: felt, retdata: felt*)", - "type": "type_definition" - }, - "__wrappers__.token_uri.SIZEOF_LOCALS": { - "type": "const", - "value": 2 - }, - "__wrappers__.token_uri.__wrapped_func": { - "destination": "__main__.token_uri", - "type": "alias" - }, - "__wrappers__.token_uri_encode_return": { - "decorators": [], - "pc": 33, - "type": "function" - }, - "__wrappers__.token_uri_encode_return.Args": { - "full_name": "__wrappers__.token_uri_encode_return.Args", - "members": { - "range_check_ptr": { - "cairo_type": "felt", - "offset": 2 - }, - "ret_value": { - "cairo_type": "(token_uri_len: felt, token_uri: felt*)", - "offset": 0 - } - }, - "size": 3, - "type": "struct" - }, - "__wrappers__.token_uri_encode_return.ImplicitArgs": { - "full_name": "__wrappers__.token_uri_encode_return.ImplicitArgs", - "members": {}, - "size": 0, - "type": "struct" - }, - "__wrappers__.token_uri_encode_return.Return": { - "cairo_type": "(range_check_ptr: felt, data_len: felt, data: felt*)", - "type": "type_definition" - }, - "__wrappers__.token_uri_encode_return.SIZEOF_LOCALS": { - "type": "const", - "value": 3 - }, - "__wrappers__.token_uri_encode_return.memcpy": { - "destination": "starkware.cairo.common.memcpy.memcpy", - "type": "alias" - }, - "openzeppelin.access.ownable.library.HashBuiltin": { - "destination": "starkware.cairo.common.cairo_builtins.HashBuiltin", - "type": "alias" - }, - "openzeppelin.access.ownable.library.Ownable": { - "type": "namespace" - }, - "openzeppelin.access.ownable.library.Ownable.Args": { - "full_name": "openzeppelin.access.ownable.library.Ownable.Args", - "members": {}, - "size": 0, - "type": "struct" - }, - "openzeppelin.access.ownable.library.Ownable.ImplicitArgs": { - "full_name": "openzeppelin.access.ownable.library.Ownable.ImplicitArgs", - "members": {}, - "size": 0, - "type": "struct" - }, - "openzeppelin.access.ownable.library.Ownable.Return": { - "cairo_type": "()", - "type": "type_definition" - }, - "openzeppelin.access.ownable.library.Ownable.SIZEOF_LOCALS": { - "type": "const", - "value": 0 - }, - "openzeppelin.access.ownable.library.Ownable_owner": { - "type": "namespace" - }, - "openzeppelin.access.ownable.library.Ownable_owner.Args": { - "full_name": "openzeppelin.access.ownable.library.Ownable_owner.Args", - "members": {}, - "size": 0, - "type": "struct" - }, - "openzeppelin.access.ownable.library.Ownable_owner.HashBuiltin": { - "destination": "starkware.cairo.common.cairo_builtins.HashBuiltin", - "type": "alias" - }, - "openzeppelin.access.ownable.library.Ownable_owner.ImplicitArgs": { - "full_name": "openzeppelin.access.ownable.library.Ownable_owner.ImplicitArgs", - "members": {}, - "size": 0, - "type": "struct" - }, - "openzeppelin.access.ownable.library.Ownable_owner.Return": { - "cairo_type": "()", - "type": "type_definition" - }, - "openzeppelin.access.ownable.library.Ownable_owner.SIZEOF_LOCALS": { - "type": "const", - "value": 0 - }, - "openzeppelin.access.ownable.library.Ownable_owner.hash2": { - "destination": "starkware.cairo.common.hash.hash2", - "type": "alias" - }, - "openzeppelin.access.ownable.library.Ownable_owner.normalize_address": { - "destination": "starkware.starknet.common.storage.normalize_address", - "type": "alias" - }, - "openzeppelin.access.ownable.library.Ownable_owner.storage_read": { - "destination": "starkware.starknet.common.syscalls.storage_read", - "type": "alias" - }, - "openzeppelin.access.ownable.library.Ownable_owner.storage_write": { - "destination": "starkware.starknet.common.syscalls.storage_write", - "type": "alias" - }, - "openzeppelin.access.ownable.library.OwnershipTransferred": { - "type": "namespace" - }, - "openzeppelin.access.ownable.library.OwnershipTransferred.Args": { - "full_name": "openzeppelin.access.ownable.library.OwnershipTransferred.Args", - "members": {}, - "size": 0, - "type": "struct" - }, - "openzeppelin.access.ownable.library.OwnershipTransferred.ImplicitArgs": { - "full_name": "openzeppelin.access.ownable.library.OwnershipTransferred.ImplicitArgs", - "members": {}, - "size": 0, - "type": "struct" - }, - "openzeppelin.access.ownable.library.OwnershipTransferred.Return": { - "cairo_type": "()", - "type": "type_definition" - }, - "openzeppelin.access.ownable.library.OwnershipTransferred.SELECTOR": { - "type": "const", - "value": 553132481214675521502977957974509639062080100631756862105218886163371506175 - }, - "openzeppelin.access.ownable.library.OwnershipTransferred.SIZEOF_LOCALS": { - "type": "const", - "value": 0 - }, - "openzeppelin.access.ownable.library.OwnershipTransferred.alloc": { - "destination": "starkware.cairo.common.alloc.alloc", - "type": "alias" - }, - "openzeppelin.access.ownable.library.OwnershipTransferred.emit_event": { - "destination": "starkware.starknet.common.syscalls.emit_event", - "type": "alias" - }, - "openzeppelin.access.ownable.library.OwnershipTransferred.memcpy": { - "destination": "starkware.cairo.common.memcpy.memcpy", - "type": "alias" - }, - "openzeppelin.access.ownable.library.assert_not_zero": { - "destination": "starkware.cairo.common.math.assert_not_zero", - "type": "alias" - }, - "openzeppelin.access.ownable.library.get_caller_address": { - "destination": "starkware.starknet.common.syscalls.get_caller_address", - "type": "alias" - }, - "starkware.cairo.common.alloc.alloc": { - "decorators": [], - "pc": 0, - "type": "function" - }, - "starkware.cairo.common.alloc.alloc.Args": { - "full_name": "starkware.cairo.common.alloc.alloc.Args", - "members": {}, - "size": 0, - "type": "struct" - }, - "starkware.cairo.common.alloc.alloc.ImplicitArgs": { - "full_name": "starkware.cairo.common.alloc.alloc.ImplicitArgs", - "members": {}, - "size": 0, - "type": "struct" - }, - "starkware.cairo.common.alloc.alloc.Return": { - "cairo_type": "(ptr: felt*)", - "type": "type_definition" - }, - "starkware.cairo.common.alloc.alloc.SIZEOF_LOCALS": { - "type": "const", - "value": 0 - }, - "starkware.cairo.common.bool.FALSE": { - "type": "const", - "value": 0 - }, - "starkware.cairo.common.bool.TRUE": { - "type": "const", - "value": 1 - }, - "starkware.cairo.common.cairo_builtins.BitwiseBuiltin": { - "full_name": "starkware.cairo.common.cairo_builtins.BitwiseBuiltin", - "members": { - "x": { - "cairo_type": "felt", - "offset": 0 - }, - "x_and_y": { - "cairo_type": "felt", - "offset": 2 - }, - "x_or_y": { - "cairo_type": "felt", - "offset": 4 - }, - "x_xor_y": { - "cairo_type": "felt", - "offset": 3 - }, - "y": { - "cairo_type": "felt", - "offset": 1 - } - }, - "size": 5, - "type": "struct" - }, - "starkware.cairo.common.cairo_builtins.EcOpBuiltin": { - "full_name": "starkware.cairo.common.cairo_builtins.EcOpBuiltin", - "members": { - "m": { - "cairo_type": "felt", - "offset": 4 - }, - "p": { - "cairo_type": "starkware.cairo.common.ec_point.EcPoint", - "offset": 0 - }, - "q": { - "cairo_type": "starkware.cairo.common.ec_point.EcPoint", - "offset": 2 - }, - "r": { - "cairo_type": "starkware.cairo.common.ec_point.EcPoint", - "offset": 5 - } - }, - "size": 7, - "type": "struct" - }, - "starkware.cairo.common.cairo_builtins.EcPoint": { - "destination": "starkware.cairo.common.ec_point.EcPoint", - "type": "alias" - }, - "starkware.cairo.common.cairo_builtins.HashBuiltin": { - "full_name": "starkware.cairo.common.cairo_builtins.HashBuiltin", - "members": { - "result": { - "cairo_type": "felt", - "offset": 2 - }, - "x": { - "cairo_type": "felt", - "offset": 0 - }, - "y": { - "cairo_type": "felt", - "offset": 1 - } - }, - "size": 3, - "type": "struct" - }, - "starkware.cairo.common.cairo_builtins.KeccakBuiltin": { - "full_name": "starkware.cairo.common.cairo_builtins.KeccakBuiltin", - "members": { - "input": { - "cairo_type": "starkware.cairo.common.keccak_state.KeccakBuiltinState", - "offset": 0 - }, - "output": { - "cairo_type": "starkware.cairo.common.keccak_state.KeccakBuiltinState", - "offset": 8 - } - }, - "size": 16, - "type": "struct" - }, - "starkware.cairo.common.cairo_builtins.KeccakBuiltinState": { - "destination": "starkware.cairo.common.keccak_state.KeccakBuiltinState", - "type": "alias" - }, - "starkware.cairo.common.cairo_builtins.PoseidonBuiltin": { - "full_name": "starkware.cairo.common.cairo_builtins.PoseidonBuiltin", - "members": { - "input": { - "cairo_type": "starkware.cairo.common.poseidon_state.PoseidonBuiltinState", - "offset": 0 - }, - "output": { - "cairo_type": "starkware.cairo.common.poseidon_state.PoseidonBuiltinState", - "offset": 3 - } - }, - "size": 6, - "type": "struct" - }, - "starkware.cairo.common.cairo_builtins.PoseidonBuiltinState": { - "destination": "starkware.cairo.common.poseidon_state.PoseidonBuiltinState", - "type": "alias" - }, - "starkware.cairo.common.cairo_builtins.SignatureBuiltin": { - "full_name": "starkware.cairo.common.cairo_builtins.SignatureBuiltin", - "members": { - "message": { - "cairo_type": "felt", - "offset": 1 - }, - "pub_key": { - "cairo_type": "felt", - "offset": 0 - } - }, - "size": 2, - "type": "struct" - }, - "starkware.cairo.common.dict_access.DictAccess": { - "full_name": "starkware.cairo.common.dict_access.DictAccess", - "members": { - "key": { - "cairo_type": "felt", - "offset": 0 - }, - "new_value": { - "cairo_type": "felt", - "offset": 2 - }, - "prev_value": { - "cairo_type": "felt", - "offset": 1 - } - }, - "size": 3, - "type": "struct" - }, - "starkware.cairo.common.ec_point.EcPoint": { - "full_name": "starkware.cairo.common.ec_point.EcPoint", - "members": { - "x": { - "cairo_type": "felt", - "offset": 0 - }, - "y": { - "cairo_type": "felt", - "offset": 1 - } - }, - "size": 2, - "type": "struct" - }, - "starkware.cairo.common.hash.HashBuiltin": { - "destination": "starkware.cairo.common.cairo_builtins.HashBuiltin", - "type": "alias" - }, - "starkware.cairo.common.keccak_state.KeccakBuiltinState": { - "full_name": "starkware.cairo.common.keccak_state.KeccakBuiltinState", - "members": { - "s0": { - "cairo_type": "felt", - "offset": 0 - }, - "s1": { - "cairo_type": "felt", - "offset": 1 - }, - "s2": { - "cairo_type": "felt", - "offset": 2 - }, - "s3": { - "cairo_type": "felt", - "offset": 3 - }, - "s4": { - "cairo_type": "felt", - "offset": 4 - }, - "s5": { - "cairo_type": "felt", - "offset": 5 - }, - "s6": { - "cairo_type": "felt", - "offset": 6 - }, - "s7": { - "cairo_type": "felt", - "offset": 7 - } - }, - "size": 8, - "type": "struct" - }, - "starkware.cairo.common.math.FALSE": { - "destination": "starkware.cairo.common.bool.FALSE", - "type": "alias" - }, - "starkware.cairo.common.math.TRUE": { - "destination": "starkware.cairo.common.bool.TRUE", - "type": "alias" - }, - "starkware.cairo.common.memcpy.memcpy": { - "decorators": [], - "pc": 3, - "type": "function" - }, - "starkware.cairo.common.memcpy.memcpy.Args": { - "full_name": "starkware.cairo.common.memcpy.memcpy.Args", - "members": { - "dst": { - "cairo_type": "felt*", - "offset": 0 - }, - "len": { - "cairo_type": "felt", - "offset": 2 - }, - "src": { - "cairo_type": "felt*", - "offset": 1 - } - }, - "size": 3, - "type": "struct" - }, - "starkware.cairo.common.memcpy.memcpy.ImplicitArgs": { - "full_name": "starkware.cairo.common.memcpy.memcpy.ImplicitArgs", - "members": {}, - "size": 0, - "type": "struct" - }, - "starkware.cairo.common.memcpy.memcpy.LoopFrame": { - "full_name": "starkware.cairo.common.memcpy.memcpy.LoopFrame", - "members": { - "dst": { - "cairo_type": "felt*", - "offset": 0 - }, - "src": { - "cairo_type": "felt*", - "offset": 1 - } - }, - "size": 2, - "type": "struct" - }, - "starkware.cairo.common.memcpy.memcpy.Return": { - "cairo_type": "()", - "type": "type_definition" - }, - "starkware.cairo.common.memcpy.memcpy.SIZEOF_LOCALS": { - "type": "const", - "value": 0 - }, - "starkware.cairo.common.memcpy.memcpy.continue_copying": { - "cairo_type": "felt", - "full_name": "starkware.cairo.common.memcpy.memcpy.continue_copying", - "references": [ - { - "ap_tracking_data": { - "group": 1, - "offset": 3 - }, - "pc": 10, - "value": "[cast(ap, felt*)]" - } - ], - "type": "reference" - }, - "starkware.cairo.common.memcpy.memcpy.len": { - "cairo_type": "felt", - "full_name": "starkware.cairo.common.memcpy.memcpy.len", - "references": [ - { - "ap_tracking_data": { - "group": 1, - "offset": 0 - }, - "pc": 3, - "value": "[cast(fp + (-3), felt*)]" - } - ], - "type": "reference" - }, - "starkware.cairo.common.memcpy.memcpy.loop": { - "pc": 8, - "type": "label" - }, - "starkware.cairo.common.poseidon_state.PoseidonBuiltinState": { - "full_name": "starkware.cairo.common.poseidon_state.PoseidonBuiltinState", - "members": { - "s0": { - "cairo_type": "felt", - "offset": 0 - }, - "s1": { - "cairo_type": "felt", - "offset": 1 - }, - "s2": { - "cairo_type": "felt", - "offset": 2 - } - }, - "size": 3, - "type": "struct" - }, - "starkware.starknet.common.storage.ADDR_BOUND": { - "type": "const", - "value": -106710729501573572985208420194530329073740042555888586719489 - }, - "starkware.starknet.common.storage.MAX_STORAGE_ITEM_SIZE": { - "type": "const", - "value": 256 - }, - "starkware.starknet.common.storage.assert_250_bit": { - "destination": "starkware.cairo.common.math.assert_250_bit", - "type": "alias" - }, - "starkware.starknet.common.syscalls.CALL_CONTRACT_SELECTOR": { - "type": "const", - "value": 20853273475220472486191784820 - }, - "starkware.starknet.common.syscalls.CallContract": { - "full_name": "starkware.starknet.common.syscalls.CallContract", - "members": { - "request": { - "cairo_type": "starkware.starknet.common.syscalls.CallContractRequest", - "offset": 0 - }, - "response": { - "cairo_type": "starkware.starknet.common.syscalls.CallContractResponse", - "offset": 5 - } - }, - "size": 7, - "type": "struct" - }, - "starkware.starknet.common.syscalls.CallContractRequest": { - "full_name": "starkware.starknet.common.syscalls.CallContractRequest", - "members": { - "calldata": { - "cairo_type": "felt*", - "offset": 4 - }, - "calldata_size": { - "cairo_type": "felt", - "offset": 3 - }, - "contract_address": { - "cairo_type": "felt", - "offset": 1 - }, - "function_selector": { - "cairo_type": "felt", - "offset": 2 - }, - "selector": { - "cairo_type": "felt", - "offset": 0 - } - }, - "size": 5, - "type": "struct" - }, - "starkware.starknet.common.syscalls.CallContractResponse": { - "full_name": "starkware.starknet.common.syscalls.CallContractResponse", - "members": { - "retdata": { - "cairo_type": "felt*", - "offset": 1 - }, - "retdata_size": { - "cairo_type": "felt", - "offset": 0 - } - }, - "size": 2, - "type": "struct" - }, - "starkware.starknet.common.syscalls.DELEGATE_CALL_SELECTOR": { - "type": "const", - "value": 21167594061783206823196716140 - }, - "starkware.starknet.common.syscalls.DELEGATE_L1_HANDLER_SELECTOR": { - "type": "const", - "value": 23274015802972845247556842986379118667122 - }, - "starkware.starknet.common.syscalls.DEPLOY_SELECTOR": { - "type": "const", - "value": 75202468540281 - }, - "starkware.starknet.common.syscalls.Deploy": { - "full_name": "starkware.starknet.common.syscalls.Deploy", - "members": { - "request": { - "cairo_type": "starkware.starknet.common.syscalls.DeployRequest", - "offset": 0 - }, - "response": { - "cairo_type": "starkware.starknet.common.syscalls.DeployResponse", - "offset": 6 - } - }, - "size": 9, - "type": "struct" - }, - "starkware.starknet.common.syscalls.DeployRequest": { - "full_name": "starkware.starknet.common.syscalls.DeployRequest", - "members": { - "class_hash": { - "cairo_type": "felt", - "offset": 1 - }, - "constructor_calldata": { - "cairo_type": "felt*", - "offset": 4 - }, - "constructor_calldata_size": { - "cairo_type": "felt", - "offset": 3 - }, - "contract_address_salt": { - "cairo_type": "felt", - "offset": 2 - }, - "deploy_from_zero": { - "cairo_type": "felt", - "offset": 5 - }, - "selector": { - "cairo_type": "felt", - "offset": 0 - } - }, - "size": 6, - "type": "struct" - }, - "starkware.starknet.common.syscalls.DeployResponse": { - "full_name": "starkware.starknet.common.syscalls.DeployResponse", - "members": { - "constructor_retdata": { - "cairo_type": "felt*", - "offset": 2 - }, - "constructor_retdata_size": { - "cairo_type": "felt", - "offset": 1 - }, - "contract_address": { - "cairo_type": "felt", - "offset": 0 - } - }, - "size": 3, - "type": "struct" - }, - "starkware.starknet.common.syscalls.DictAccess": { - "destination": "starkware.cairo.common.dict_access.DictAccess", - "type": "alias" - }, - "starkware.starknet.common.syscalls.EMIT_EVENT_SELECTOR": { - "type": "const", - "value": 1280709301550335749748 - }, - "starkware.starknet.common.syscalls.EmitEvent": { - "full_name": "starkware.starknet.common.syscalls.EmitEvent", - "members": { - "data": { - "cairo_type": "felt*", - "offset": 4 - }, - "data_len": { - "cairo_type": "felt", - "offset": 3 - }, - "keys": { - "cairo_type": "felt*", - "offset": 2 - }, - "keys_len": { - "cairo_type": "felt", - "offset": 1 - }, - "selector": { - "cairo_type": "felt", - "offset": 0 - } - }, - "size": 5, - "type": "struct" - }, - "starkware.starknet.common.syscalls.GET_BLOCK_NUMBER_SELECTOR": { - "type": "const", - "value": 1448089106835523001438702345020786 - }, - "starkware.starknet.common.syscalls.GET_BLOCK_TIMESTAMP_SELECTOR": { - "type": "const", - "value": 24294903732626645868215235778792757751152 - }, - "starkware.starknet.common.syscalls.GET_CALLER_ADDRESS_SELECTOR": { - "type": "const", - "value": 94901967781393078444254803017658102643 - }, - "starkware.starknet.common.syscalls.GET_CONTRACT_ADDRESS_SELECTOR": { - "type": "const", - "value": 6219495360805491471215297013070624192820083 - }, - "starkware.starknet.common.syscalls.GET_SEQUENCER_ADDRESS_SELECTOR": { - "type": "const", - "value": 1592190833581991703053805829594610833820054387 - }, - "starkware.starknet.common.syscalls.GET_TX_INFO_SELECTOR": { - "type": "const", - "value": 1317029390204112103023 - }, - "starkware.starknet.common.syscalls.GET_TX_SIGNATURE_SELECTOR": { - "type": "const", - "value": 1448089128652340074717162277007973 - }, - "starkware.starknet.common.syscalls.GetBlockNumber": { - "full_name": "starkware.starknet.common.syscalls.GetBlockNumber", - "members": { - "request": { - "cairo_type": "starkware.starknet.common.syscalls.GetBlockNumberRequest", - "offset": 0 - }, - "response": { - "cairo_type": "starkware.starknet.common.syscalls.GetBlockNumberResponse", - "offset": 1 - } - }, - "size": 2, - "type": "struct" - }, - "starkware.starknet.common.syscalls.GetBlockNumberRequest": { - "full_name": "starkware.starknet.common.syscalls.GetBlockNumberRequest", - "members": { - "selector": { - "cairo_type": "felt", - "offset": 0 - } - }, - "size": 1, - "type": "struct" - }, - "starkware.starknet.common.syscalls.GetBlockNumberResponse": { - "full_name": "starkware.starknet.common.syscalls.GetBlockNumberResponse", - "members": { - "block_number": { - "cairo_type": "felt", - "offset": 0 - } - }, - "size": 1, - "type": "struct" - }, - "starkware.starknet.common.syscalls.GetBlockTimestamp": { - "full_name": "starkware.starknet.common.syscalls.GetBlockTimestamp", - "members": { - "request": { - "cairo_type": "starkware.starknet.common.syscalls.GetBlockTimestampRequest", - "offset": 0 - }, - "response": { - "cairo_type": "starkware.starknet.common.syscalls.GetBlockTimestampResponse", - "offset": 1 - } - }, - "size": 2, - "type": "struct" - }, - "starkware.starknet.common.syscalls.GetBlockTimestampRequest": { - "full_name": "starkware.starknet.common.syscalls.GetBlockTimestampRequest", - "members": { - "selector": { - "cairo_type": "felt", - "offset": 0 - } - }, - "size": 1, - "type": "struct" - }, - "starkware.starknet.common.syscalls.GetBlockTimestampResponse": { - "full_name": "starkware.starknet.common.syscalls.GetBlockTimestampResponse", - "members": { - "block_timestamp": { - "cairo_type": "felt", - "offset": 0 - } - }, - "size": 1, - "type": "struct" - }, - "starkware.starknet.common.syscalls.GetCallerAddress": { - "full_name": "starkware.starknet.common.syscalls.GetCallerAddress", - "members": { - "request": { - "cairo_type": "starkware.starknet.common.syscalls.GetCallerAddressRequest", - "offset": 0 - }, - "response": { - "cairo_type": "starkware.starknet.common.syscalls.GetCallerAddressResponse", - "offset": 1 - } - }, - "size": 2, - "type": "struct" - }, - "starkware.starknet.common.syscalls.GetCallerAddressRequest": { - "full_name": "starkware.starknet.common.syscalls.GetCallerAddressRequest", - "members": { - "selector": { - "cairo_type": "felt", - "offset": 0 - } - }, - "size": 1, - "type": "struct" - }, - "starkware.starknet.common.syscalls.GetCallerAddressResponse": { - "full_name": "starkware.starknet.common.syscalls.GetCallerAddressResponse", - "members": { - "caller_address": { - "cairo_type": "felt", - "offset": 0 - } - }, - "size": 1, - "type": "struct" - }, - "starkware.starknet.common.syscalls.GetContractAddress": { - "full_name": "starkware.starknet.common.syscalls.GetContractAddress", - "members": { - "request": { - "cairo_type": "starkware.starknet.common.syscalls.GetContractAddressRequest", - "offset": 0 - }, - "response": { - "cairo_type": "starkware.starknet.common.syscalls.GetContractAddressResponse", - "offset": 1 - } - }, - "size": 2, - "type": "struct" - }, - "starkware.starknet.common.syscalls.GetContractAddressRequest": { - "full_name": "starkware.starknet.common.syscalls.GetContractAddressRequest", - "members": { - "selector": { - "cairo_type": "felt", - "offset": 0 - } - }, - "size": 1, - "type": "struct" - }, - "starkware.starknet.common.syscalls.GetContractAddressResponse": { - "full_name": "starkware.starknet.common.syscalls.GetContractAddressResponse", - "members": { - "contract_address": { - "cairo_type": "felt", - "offset": 0 - } - }, - "size": 1, - "type": "struct" - }, - "starkware.starknet.common.syscalls.GetSequencerAddress": { - "full_name": "starkware.starknet.common.syscalls.GetSequencerAddress", - "members": { - "request": { - "cairo_type": "starkware.starknet.common.syscalls.GetSequencerAddressRequest", - "offset": 0 - }, - "response": { - "cairo_type": "starkware.starknet.common.syscalls.GetSequencerAddressResponse", - "offset": 1 - } - }, - "size": 2, - "type": "struct" - }, - "starkware.starknet.common.syscalls.GetSequencerAddressRequest": { - "full_name": "starkware.starknet.common.syscalls.GetSequencerAddressRequest", - "members": { - "selector": { - "cairo_type": "felt", - "offset": 0 - } - }, - "size": 1, - "type": "struct" - }, - "starkware.starknet.common.syscalls.GetSequencerAddressResponse": { - "full_name": "starkware.starknet.common.syscalls.GetSequencerAddressResponse", - "members": { - "sequencer_address": { - "cairo_type": "felt", - "offset": 0 - } - }, - "size": 1, - "type": "struct" - }, - "starkware.starknet.common.syscalls.GetTxInfo": { - "full_name": "starkware.starknet.common.syscalls.GetTxInfo", - "members": { - "request": { - "cairo_type": "starkware.starknet.common.syscalls.GetTxInfoRequest", - "offset": 0 - }, - "response": { - "cairo_type": "starkware.starknet.common.syscalls.GetTxInfoResponse", - "offset": 1 - } - }, - "size": 2, - "type": "struct" - }, - "starkware.starknet.common.syscalls.GetTxInfoRequest": { - "full_name": "starkware.starknet.common.syscalls.GetTxInfoRequest", - "members": { - "selector": { - "cairo_type": "felt", - "offset": 0 - } - }, - "size": 1, - "type": "struct" - }, - "starkware.starknet.common.syscalls.GetTxInfoResponse": { - "full_name": "starkware.starknet.common.syscalls.GetTxInfoResponse", - "members": { - "tx_info": { - "cairo_type": "starkware.starknet.common.syscalls.TxInfo*", - "offset": 0 - } - }, - "size": 1, - "type": "struct" - }, - "starkware.starknet.common.syscalls.GetTxSignature": { - "full_name": "starkware.starknet.common.syscalls.GetTxSignature", - "members": { - "request": { - "cairo_type": "starkware.starknet.common.syscalls.GetTxSignatureRequest", - "offset": 0 - }, - "response": { - "cairo_type": "starkware.starknet.common.syscalls.GetTxSignatureResponse", - "offset": 1 - } - }, - "size": 3, - "type": "struct" - }, - "starkware.starknet.common.syscalls.GetTxSignatureRequest": { - "full_name": "starkware.starknet.common.syscalls.GetTxSignatureRequest", - "members": { - "selector": { - "cairo_type": "felt", - "offset": 0 - } - }, - "size": 1, - "type": "struct" - }, - "starkware.starknet.common.syscalls.GetTxSignatureResponse": { - "full_name": "starkware.starknet.common.syscalls.GetTxSignatureResponse", - "members": { - "signature": { - "cairo_type": "felt*", - "offset": 1 - }, - "signature_len": { - "cairo_type": "felt", - "offset": 0 - } - }, - "size": 2, - "type": "struct" - }, - "starkware.starknet.common.syscalls.LIBRARY_CALL_L1_HANDLER_SELECTOR": { - "type": "const", - "value": 436233452754198157705746250789557519228244616562 - }, - "starkware.starknet.common.syscalls.LIBRARY_CALL_SELECTOR": { - "type": "const", - "value": 92376026794327011772951660 - }, - "starkware.starknet.common.syscalls.LibraryCall": { - "full_name": "starkware.starknet.common.syscalls.LibraryCall", - "members": { - "request": { - "cairo_type": "starkware.starknet.common.syscalls.LibraryCallRequest", - "offset": 0 - }, - "response": { - "cairo_type": "starkware.starknet.common.syscalls.CallContractResponse", - "offset": 5 - } - }, - "size": 7, - "type": "struct" - }, - "starkware.starknet.common.syscalls.LibraryCallRequest": { - "full_name": "starkware.starknet.common.syscalls.LibraryCallRequest", - "members": { - "calldata": { - "cairo_type": "felt*", - "offset": 4 - }, - "calldata_size": { - "cairo_type": "felt", - "offset": 3 - }, - "class_hash": { - "cairo_type": "felt", - "offset": 1 - }, - "function_selector": { - "cairo_type": "felt", - "offset": 2 - }, - "selector": { - "cairo_type": "felt", - "offset": 0 - } - }, - "size": 5, - "type": "struct" - }, - "starkware.starknet.common.syscalls.REPLACE_CLASS_SELECTOR": { - "type": "const", - "value": 25500403217443378527601783667 - }, - "starkware.starknet.common.syscalls.ReplaceClass": { - "full_name": "starkware.starknet.common.syscalls.ReplaceClass", - "members": { - "class_hash": { - "cairo_type": "felt", - "offset": 1 - }, - "selector": { - "cairo_type": "felt", - "offset": 0 - } - }, - "size": 2, - "type": "struct" - }, - "starkware.starknet.common.syscalls.SEND_MESSAGE_TO_L1_SELECTOR": { - "type": "const", - "value": 433017908768303439907196859243777073 - }, - "starkware.starknet.common.syscalls.STORAGE_READ_SELECTOR": { - "type": "const", - "value": 100890693370601760042082660 - }, - "starkware.starknet.common.syscalls.STORAGE_WRITE_SELECTOR": { - "type": "const", - "value": 25828017502874050592466629733 - }, - "starkware.starknet.common.syscalls.SendMessageToL1SysCall": { - "full_name": "starkware.starknet.common.syscalls.SendMessageToL1SysCall", - "members": { - "payload_ptr": { - "cairo_type": "felt*", - "offset": 3 - }, - "payload_size": { - "cairo_type": "felt", - "offset": 2 - }, - "selector": { - "cairo_type": "felt", - "offset": 0 - }, - "to_address": { - "cairo_type": "felt", - "offset": 1 - } - }, - "size": 4, - "type": "struct" - }, - "starkware.starknet.common.syscalls.StorageRead": { - "full_name": "starkware.starknet.common.syscalls.StorageRead", - "members": { - "request": { - "cairo_type": "starkware.starknet.common.syscalls.StorageReadRequest", - "offset": 0 - }, - "response": { - "cairo_type": "starkware.starknet.common.syscalls.StorageReadResponse", - "offset": 2 - } - }, - "size": 3, - "type": "struct" - }, - "starkware.starknet.common.syscalls.StorageReadRequest": { - "full_name": "starkware.starknet.common.syscalls.StorageReadRequest", - "members": { - "address": { - "cairo_type": "felt", - "offset": 1 - }, - "selector": { - "cairo_type": "felt", - "offset": 0 - } - }, - "size": 2, - "type": "struct" - }, - "starkware.starknet.common.syscalls.StorageReadResponse": { - "full_name": "starkware.starknet.common.syscalls.StorageReadResponse", - "members": { - "value": { - "cairo_type": "felt", - "offset": 0 - } - }, - "size": 1, - "type": "struct" - }, - "starkware.starknet.common.syscalls.StorageWrite": { - "full_name": "starkware.starknet.common.syscalls.StorageWrite", - "members": { - "address": { - "cairo_type": "felt", - "offset": 1 - }, - "selector": { - "cairo_type": "felt", - "offset": 0 - }, - "value": { - "cairo_type": "felt", - "offset": 2 - } - }, - "size": 3, - "type": "struct" - }, - "starkware.starknet.common.syscalls.TxInfo": { - "full_name": "starkware.starknet.common.syscalls.TxInfo", - "members": { - "account_contract_address": { - "cairo_type": "felt", - "offset": 1 - }, - "chain_id": { - "cairo_type": "felt", - "offset": 6 - }, - "max_fee": { - "cairo_type": "felt", - "offset": 2 - }, - "nonce": { - "cairo_type": "felt", - "offset": 7 - }, - "signature": { - "cairo_type": "felt*", - "offset": 4 - }, - "signature_len": { - "cairo_type": "felt", - "offset": 3 - }, - "transaction_hash": { - "cairo_type": "felt", - "offset": 5 - }, - "version": { - "cairo_type": "felt", - "offset": 0 - } - }, - "size": 8, - "type": "struct" - } - }, - "main_scope": "__main__", - "prime": "0x800000000000011000000000000000000000000000000000000000000000001", - "reference_manager": { - "references": [ - { - "ap_tracking_data": { - "group": 1, - "offset": 0 - }, - "pc": 3, - "value": "[cast(fp + (-3), felt*)]" - }, - { - "ap_tracking_data": { - "group": 1, - "offset": 3 - }, - "pc": 10, - "value": "[cast(ap, felt*)]" - } - ] - } - } -} diff --git a/packages/starksheet-cairo/build/IpfsRenderer_abi.json b/packages/starksheet-cairo/build/IpfsRenderer_abi.json deleted file mode 100644 index 74dc02ad..00000000 --- a/packages/starksheet-cairo/build/IpfsRenderer_abi.json +++ /dev/null @@ -1,46 +0,0 @@ -[ - { - "data": [ - { - "name": "previousOwner", - "type": "felt" - }, - { - "name": "newOwner", - "type": "felt" - } - ], - "keys": [], - "name": "OwnershipTransferred", - "type": "event" - }, - { - "inputs": [ - { - "name": "token_id", - "type": "felt" - }, - { - "name": "value", - "type": "felt" - }, - { - "name": "name", - "type": "felt" - } - ], - "name": "token_uri", - "outputs": [ - { - "name": "token_uri_len", - "type": "felt" - }, - { - "name": "token_uri", - "type": "felt*" - } - ], - "stateMutability": "view", - "type": "function" - } -] diff --git a/packages/starksheet-cairo/build/RandomRenderer.json b/packages/starksheet-cairo/build/RandomRenderer.json deleted file mode 100644 index 3687fab8..00000000 --- a/packages/starksheet-cairo/build/RandomRenderer.json +++ /dev/null @@ -1,34459 +0,0 @@ -{ - "abi": [ - { - "data": [ - { - "name": "previousOwner", - "type": "felt" - }, - { - "name": "newOwner", - "type": "felt" - } - ], - "keys": [], - "name": "OwnershipTransferred", - "type": "event" - }, - { - "inputs": [], - "name": "getOwner", - "outputs": [ - { - "name": "owner", - "type": "felt" - } - ], - "stateMutability": "view", - "type": "function" - }, - { - "inputs": [], - "name": "getUris", - "outputs": [ - { - "name": "uris_len", - "type": "felt" - }, - { - "name": "uris", - "type": "felt*" - } - ], - "stateMutability": "view", - "type": "function" - }, - { - "inputs": [ - { - "name": "index", - "type": "felt" - } - ], - "name": "getUri", - "outputs": [ - { - "name": "uri_len", - "type": "felt" - }, - { - "name": "uri", - "type": "felt*" - } - ], - "stateMutability": "view", - "type": "function" - }, - { - "inputs": [ - { - "name": "encoded_uris_len", - "type": "felt" - }, - { - "name": "encoded_uris", - "type": "felt*" - }, - { - "name": "index", - "type": "felt" - } - ], - "name": "testUris", - "outputs": [ - { - "name": "uri_len", - "type": "felt" - }, - { - "name": "uri", - "type": "felt*" - } - ], - "stateMutability": "view", - "type": "function" - }, - { - "inputs": [ - { - "name": "uris_len", - "type": "felt" - }, - { - "name": "uris", - "type": "felt*" - } - ], - "name": "setUris", - "outputs": [], - "type": "function" - }, - { - "inputs": [ - { - "name": "new_owner", - "type": "felt" - } - ], - "name": "transferOwnership", - "outputs": [], - "type": "function" - }, - { - "inputs": [ - { - "name": "owner", - "type": "felt" - }, - { - "name": "uris_len", - "type": "felt" - }, - { - "name": "uris", - "type": "felt*" - } - ], - "name": "constructor", - "outputs": [], - "type": "constructor" - }, - { - "inputs": [ - { - "name": "token_id", - "type": "felt" - }, - { - "name": "value", - "type": "felt" - }, - { - "name": "name", - "type": "felt" - } - ], - "name": "token_uri", - "outputs": [ - { - "name": "token_uri_len", - "type": "felt" - }, - { - "name": "token_uri", - "type": "felt*" - } - ], - "stateMutability": "view", - "type": "function" - } - ], - "entry_points_by_type": { - "CONSTRUCTOR": [ - { - "offset": "0x36f", - "selector": "0x28ffe4ff0f226a9107253e17a904099aa4f63a02a5621de0576e5aa71bc5194" - } - ], - "EXTERNAL": [ - { - "offset": "0x2b7", - "selector": "0x1333f490cca7d58dc2bd4adb0f0995df1189a6a6631d999fdf45a480603b32d" - }, - { - "offset": "0x34d", - "selector": "0x14a390f291e2e1f29874769efdef47ddad94d76f77ff516fad206a385e8995f" - }, - { - "offset": "0x3bc", - "selector": "0x226ad7e84c1fe08eb4c525ed93cccadf9517670341304571e66f7c4f95cbe54" - }, - { - "offset": "0x254", - "selector": "0x266623c84ac264056e7e0926e35de090cc02e13da956962ff63d60d7c1edce7" - }, - { - "offset": "0x32b", - "selector": "0x267a8ed2a901c910e89060a043c35dda12e1c1259a956b7c06d320291da9f96" - }, - { - "offset": "0x2fa", - "selector": "0x33b91033fd43f60cc00477c7fd4022ed4ab66b6b97283def60fcfd1f043ca6f" - }, - { - "offset": "0x28a", - "selector": "0x3d634eb8680ef57bcff2b266518bbe5d3b3a8739cec321d67ffdf86bbccf2ec" - } - ], - "L1_HANDLER": [] - }, - "program": { - "attributes": [ - { - "accessible_scopes": [ - "openzeppelin.access.ownable.library", - "openzeppelin.access.ownable.library.Ownable", - "openzeppelin.access.ownable.library.Ownable.assert_only_owner" - ], - "end_pc": 329, - "flow_tracking_data": { - "ap_tracking": { - "group": 25, - "offset": 6 - }, - "reference_ids": {} - }, - "name": "error_message", - "start_pc": 327, - "value": "Ownable: caller is the zero address" - }, - { - "accessible_scopes": [ - "openzeppelin.access.ownable.library", - "openzeppelin.access.ownable.library.Ownable", - "openzeppelin.access.ownable.library.Ownable.assert_only_owner" - ], - "end_pc": 330, - "flow_tracking_data": { - "ap_tracking": { - "group": 25, - "offset": 8 - }, - "reference_ids": {} - }, - "name": "error_message", - "start_pc": 329, - "value": "Ownable: caller is not the owner" - }, - { - "accessible_scopes": [ - "openzeppelin.access.ownable.library", - "openzeppelin.access.ownable.library.Ownable", - "openzeppelin.access.ownable.library.Ownable.transfer_ownership" - ], - "end_pc": 343, - "flow_tracking_data": { - "ap_tracking": { - "group": 27, - "offset": 0 - }, - "reference_ids": {} - }, - "name": "error_message", - "start_pc": 340, - "value": "Ownable: new owner is the zero address" - } - ], - "builtins": [ - "pedersen", - "range_check" - ], - "compiler_version": "0.10.0", - "data": [ - "0x40780017fff7fff", - "0x1", - "0x208b7fff7fff7ffe", - "0x400380007ffb7ffc", - "0x400380017ffb7ffd", - "0x482680017ffb8000", - "0x3", - "0x480280027ffb8000", - "0x208b7fff7fff7ffe", - "0x20780017fff7ffd", - "0x3", - "0x208b7fff7fff7ffe", - "0x480a7ffb7fff8000", - "0x480a7ffc7fff8000", - "0x480080007fff8000", - "0x400080007ffd7fff", - "0x482480017ffd8001", - "0x1", - "0x482480017ffd8001", - "0x1", - "0xa0680017fff7ffe", - "0x800000000000010fffffffffffffffffffffffffffffffffffffffffffffffb", - "0x402a7ffc7ffd7fff", - "0x208b7fff7fff7ffe", - "0x208b7fff7fff7ffe", - "0x20780017fff7ffd", - "0x4", - "0x400780017fff7ffd", - "0x1", - "0x208b7fff7fff7ffe", - "0x400380007ffc7ffd", - "0x482680017ffc8000", - "0x1", - "0x208b7fff7fff7ffe", - "0x480a7ffb7fff8000", - "0x48297ffc80007ffd", - "0x1104800180018000", - "0x800000000000010fffffffffffffffffffffffffffffffffffffffffffffffb", - "0x208b7fff7fff7ffe", - "0x480680017fff8000", - "0x3ffffffffffffffffffffffffffffff", - "0x480280017ffc8000", - "0x48307fff80007ffe", - "0x400280027ffc7fff", - "0x480280017ffc8000", - "0x484480017fff8000", - "0x100000000000000000000000000000000", - "0x480280007ffc8000", - "0x40317fff7ffe7ffd", - "0x482680017ffc8000", - "0x3", - "0x208b7fff7fff7ffe", - "0x480280017ffc8000", - "0x484480017fff8000", - "0x100000000000000000000000000000000", - "0x480280007ffc8000", - "0x40317fff7ffe7ffd", - "0x480280017ffc8000", - "0x482480017fff8000", - "0x800000000000010fffffffffffffffff7ffffffffffffef0000000000000001", - "0x20680017fff7fff", - "0xb", - "0x482680017ffc8000", - "0x2", - "0x480280007ffc8000", - "0x480680017fff8000", - "0x0", - "0x1104800180018000", - "0x800000000000010ffffffffffffffffffffffffffffffffffffffffffffffe0", - "0x10780017fff7fff", - "0x9", - "0x482680017ffc8000", - "0x2", - "0x480280017ffc8000", - "0x480680017fff8000", - "0x800000000000010ffffffffffffffff", - "0x1104800180018000", - "0x800000000000010ffffffffffffffffffffffffffffffffffffffffffffffd7", - "0x480280017ffc8000", - "0x480280007ffc8000", - "0x208b7fff7fff7ffe", - "0x480280007ffb8000", - "0x480280017ffb8000", - "0x484480017fff8000", - "0x2aaaaaaaaaaaab05555555555555556", - "0x48307fff7ffd8000", - "0x480280027ffb8000", - "0x480280037ffb8000", - "0x484480017fff8000", - "0x4000000000000088000000000000001", - "0x48307fff7ffd8000", - "0xa0680017fff8000", - "0xe", - "0x480680017fff8000", - "0x800000000000011000000000000000000000000000000000000000000000000", - "0x48287ffc80007fff", - "0x40307ffc7ff87fff", - "0x48297ffd80007ffc", - "0x482680017ffd8000", - "0x1", - "0x48507fff7ffe8000", - "0x40507ff97ff57fff", - "0x482680017ffb8000", - "0x4", - "0x208b7fff7fff7ffe", - "0xa0680017fff8000", - "0xc", - "0x480680017fff8000", - "0x800000000000011000000000000000000000000000000000000000000000000", - "0x48287ffd80007fff", - "0x48327fff7ffc8000", - "0x40307ffa7ff67fff", - "0x48527ffe7ffc8000", - "0x40507ff97ff57fff", - "0x482680017ffb8000", - "0x4", - "0x208b7fff7fff7ffe", - "0x40317ffd7ff97ffd", - "0x48297ffc80007ffd", - "0x48527fff7ffc8000", - "0x40507ffb7ff77fff", - "0x40780017fff7fff", - "0x2", - "0x482680017ffb8000", - "0x4", - "0x208b7fff7fff7ffe", - "0x40780017fff7fff", - "0x1", - "0x20680017fff7fff", - "0x8", - "0x482680017ffc8000", - "0x1", - "0x484680017ffd8000", - "0x800000000000011000000000000000000000000000000000000000000000000", - "0x400280007ffc7fff", - "0x208b7fff7fff7ffe", - "0x400380007ffc7ffd", - "0x482680017ffc8000", - "0x1", - "0x480a7ffd7fff8000", - "0x208b7fff7fff7ffe", - "0x20780017fff7ffd", - "0x8", - "0x40780017fff7fff", - "0x2", - "0x480a7ffc7fff8000", - "0x480680017fff8000", - "0x0", - "0x208b7fff7fff7ffe", - "0x40780017fff7fff", - "0x1", - "0x20680017fff7fff", - "0xa", - "0x484680017ffd8000", - "0x800000000000011000000000000000000000000000000000000000000000000", - "0x400280007ffc7fff", - "0x482680017ffc8000", - "0x1", - "0x480680017fff8000", - "0x800000000000011000000000000000000000000000000000000000000000000", - "0x208b7fff7fff7ffe", - "0x40780017fff7fff", - "0x1", - "0x400380007ffc7ffd", - "0x482680017ffc8000", - "0x1", - "0x480680017fff8000", - "0x1", - "0x208b7fff7fff7ffe", - "0x482680017ffb8000", - "0x2", - "0x480280007ffb8000", - "0x482680017ffd8000", - "0x800000000000011000000000000000000000000000000000000000000000000", - "0x1104800180018000", - "0x800000000000010ffffffffffffffffffffffffffffffffffffffffffffff75", - "0x480280017ffb8000", - "0x48487ffd7fff8000", - "0x480280007ffb8000", - "0x40317fff7ffe7ffc", - "0x48127ffc7fff8000", - "0x480280017ffb8000", - "0x480280007ffb8000", - "0x208b7fff7fff7ffe", - "0x40780017fff7fff", - "0x1", - "0x20680017fff7fff", - "0x10", - "0x480a7ffc7fff8000", - "0x482680017ffd8000", - "0x11000000000000000000000000000000000000000000000101", - "0x1104800180018000", - "0x800000000000010ffffffffffffffffffffffffffffffffffffffffffffff69", - "0x480680017fff8000", - "0x800000000000011000000000000000000000000000000000000000000000000", - "0x48127ffe7fff8000", - "0x48287ffd80007ffe", - "0x1104800180018000", - "0x800000000000010ffffffffffffffffffffffffffffffffffffffffffffff63", - "0x482680017ffd8000", - "0x11000000000000000000000000000000000000000000000101", - "0x208b7fff7fff7ffe", - "0x40780017fff7fff", - "0x1", - "0x20680017fff7fff", - "0xc", - "0x40780017fff7fff", - "0xa", - "0x480680017fff8000", - "0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffeff", - "0x480a7ffc7fff8000", - "0x48287ffd80007ffe", - "0x1104800180018000", - "0x800000000000010ffffffffffffffffffffffffffffffffffffffffffffff54", - "0x10780017fff7fff", - "0x8", - "0x40780017fff7fff", - "0xb", - "0x480a7ffc7fff8000", - "0x480a7ffd7fff8000", - "0x1104800180018000", - "0x800000000000010ffffffffffffffffffffffffffffffffffffffffffffff4c", - "0x480a7ffd7fff8000", - "0x208b7fff7fff7ffe", - "0x480680017fff8000", - "0x47657443616c6c657241646472657373", - "0x400280007ffd7fff", - "0x482680017ffd8000", - "0x2", - "0x480280017ffd8000", - "0x208b7fff7fff7ffe", - "0x480680017fff8000", - "0x53746f7261676552656164", - "0x400280007ffc7fff", - "0x400380017ffc7ffd", - "0x482680017ffc8000", - "0x3", - "0x480280027ffc8000", - "0x208b7fff7fff7ffe", - "0x480680017fff8000", - "0x53746f726167655772697465", - "0x400280007ffb7fff", - "0x400380017ffb7ffc", - "0x400380027ffb7ffd", - "0x482680017ffb8000", - "0x3", - "0x208b7fff7fff7ffe", - "0x480680017fff8000", - "0x456d69744576656e74", - "0x400280007ff97fff", - "0x400380017ff97ffa", - "0x400380027ff97ffb", - "0x400380037ff97ffc", - "0x400380047ff97ffd", - "0x482680017ff98000", - "0x5", - "0x208b7fff7fff7ffe", - "0x40780017fff7fff", - "0x2", - "0x1104800180018000", - "0x800000000000010fffffffffffffffffffffffffffffffffffffffffffffefe", - "0x40137fff7fff8000", - "0x480680017fff8000", - "0x1390fd803c110ac71730ece1decfc34eb1d0088e295d4f1b125dda1e0c5b9ff", - "0x4002800080007fff", - "0x1104800180018000", - "0x800000000000010fffffffffffffffffffffffffffffffffffffffffffffef8", - "0x40137fff7fff8001", - "0x4003800080017ffc", - "0x4003800180017ffd", - "0x4826800180018000", - "0x2", - "0x480a7ffa7fff8000", - "0x480680017fff8000", - "0x1", - "0x480a80007fff8000", - "0x4828800180007ffc", - "0x480a80017fff8000", - "0x1104800180018000", - "0x800000000000010ffffffffffffffffffffffffffffffffffffffffffffffe2", - "0x480a7ffb7fff8000", - "0x208b7fff7fff7ffe", - "0x480a7ffc7fff8000", - "0x480a7ffd7fff8000", - "0x480680017fff8000", - "0x2bd557f4ba80dfabefabe45e9b2dd35db1b9a78e96c72bc2b69b655ce47a930", - "0x208b7fff7fff7ffe", - "0x480a7ffc7fff8000", - "0x480a7ffd7fff8000", - "0x1104800180018000", - "0x800000000000010fffffffffffffffffffffffffffffffffffffffffffffffa", - "0x480a7ffb7fff8000", - "0x48127ffe7fff8000", - "0x1104800180018000", - "0x800000000000010ffffffffffffffffffffffffffffffffffffffffffffffc3", - "0x48127ffe7fff8000", - "0x48127ff57fff8000", - "0x48127ff57fff8000", - "0x48127ffc7fff8000", - "0x208b7fff7fff7ffe", - "0x480a7ffb7fff8000", - "0x480a7ffc7fff8000", - "0x1104800180018000", - "0x800000000000010ffffffffffffffffffffffffffffffffffffffffffffffed", - "0x480a7ffa7fff8000", - "0x48127ffe7fff8000", - "0x480a7ffd7fff8000", - "0x1104800180018000", - "0x800000000000010ffffffffffffffffffffffffffffffffffffffffffffffbd", - "0x48127ff67fff8000", - "0x48127ff67fff8000", - "0x208b7fff7fff7ffe", - "0x480a7ffa7fff8000", - "0x480a7ffb7fff8000", - "0x480a7ffc7fff8000", - "0x480a7ffd7fff8000", - "0x1104800180018000", - "0x24", - "0x208b7fff7fff7ffe", - "0x480a7ffb7fff8000", - "0x480a7ffc7fff8000", - "0x480a7ffd7fff8000", - "0x1104800180018000", - "0xc", - "0x48127ffc7fff8000", - "0x1104800180018000", - "0x800000000000010ffffffffffffffffffffffffffffffffffffffffffffff9c", - "0x1104800180018000", - "0x800000000000010fffffffffffffffffffffffffffffffffffffffffffffed3", - "0x40127ffd7fff7ff7", - "0x48127ffc7fff8000", - "0x48127ff47fff8000", - "0x48127ff47fff8000", - "0x208b7fff7fff7ffe", - "0x480a7ffb7fff8000", - "0x480a7ffc7fff8000", - "0x480a7ffd7fff8000", - "0x1104800180018000", - "0x800000000000010ffffffffffffffffffffffffffffffffffffffffffffffcf", - "0x208b7fff7fff7ffe", - "0x480a7ffd7fff8000", - "0x1104800180018000", - "0x800000000000010fffffffffffffffffffffffffffffffffffffffffffffec5", - "0x480a7ffa7fff8000", - "0x480a7ffb7fff8000", - "0x480a7ffc7fff8000", - "0x1104800180018000", - "0x800000000000010ffffffffffffffffffffffffffffffffffffffffffffffe6", - "0x480a7ffd7fff8000", - "0x1104800180018000", - "0x3", - "0x208b7fff7fff7ffe", - "0x480a7ffa7fff8000", - "0x480a7ffb7fff8000", - "0x480a7ffc7fff8000", - "0x1104800180018000", - "0x800000000000010ffffffffffffffffffffffffffffffffffffffffffffffec", - "0x48127ffc7fff8000", - "0x48127ffc7fff8000", - "0x48127ffc7fff8000", - "0x480a7ffd7fff8000", - "0x1104800180018000", - "0x800000000000010ffffffffffffffffffffffffffffffffffffffffffffffc4", - "0x48127ffd7fff8000", - "0x48127ffe7fff8000", - "0x48127fe77fff8000", - "0x480a7ffd7fff8000", - "0x1104800180018000", - "0x800000000000010ffffffffffffffffffffffffffffffffffffffffffffff93", - "0x48127ffe7fff8000", - "0x48127fe37fff8000", - "0x48127ffd7fff8000", - "0x208b7fff7fff7ffe", - "0xa0680017fff8000", - "0xa", - "0x400380007ffc7ffd", - "0x40780017fff7fff", - "0x14", - "0x482680017ffc8000", - "0x1", - "0x480680017fff8000", - "0x1", - "0x208b7fff7fff7ffe", - "0xa0680017fff8000", - "0xe", - "0x484680017ffd8000", - "0x800000000000011000000000000000000000000000000000000000000000000", - "0x482480017fff8000", - "0x800000000000011000000000000000000000000000000000000000000000000", - "0x400280007ffc7fff", - "0x40780017fff7fff", - "0x11", - "0x482680017ffc8000", - "0x1", - "0x480680017fff8000", - "0x0", - "0x208b7fff7fff7ffe", - "0x480a7ffc7fff8000", - "0x480680017fff8000", - "0x100000000000000000000000000000000", - "0x480a7ffd7fff8000", - "0x1104800180018000", - "0x800000000000010fffffffffffffffffffffffffffffffffffffffffffffec1", - "0x480680017fff8000", - "0x0", - "0x208b7fff7fff7ffe", - "0x480a7ffb7fff8000", - "0x48297ffc80007ffd", - "0x1104800180018000", - "0x800000000000010ffffffffffffffffffffffffffffffffffffffffffffffde", - "0x208b7fff7fff7ffe", - "0x40780017fff7fff", - "0x2", - "0x20780017fff7ffd", - "0x6", - "0x480a7ffc7fff8000", - "0x480680017fff8000", - "0x30", - "0x208b7fff7fff7ffe", - "0x1104800180018000", - "0x800000000000010fffffffffffffffffffffffffffffffffffffffffffffe5e", - "0x40137fff7fff8000", - "0x480a7ffc7fff8000", - "0x480a7ffd7fff8000", - "0x1104800180018000", - "0x800000000000010fffffffffffffffffffffffffffffffffffffffffffffed7", - "0x480680017fff8000", - "0x0", - "0x480a80007fff8000", - "0x1104800180018000", - "0x1c", - "0x48127ffe7fff8000", - "0x480a7ffd7fff8000", - "0x1104800180018000", - "0x800000000000010fffffffffffffffffffffffffffffffffffffffffffffedd", - "0x482480017fff8000", - "0x1", - "0x20680017fff7fff", - "0x6", - "0x400780017fff8001", - "0x2d", - "0x10780017fff7fff", - "0x4", - "0x400780017fff8001", - "0x0", - "0x48127ffd7fff8000", - "0x480a80017fff8000", - "0x48127ff47fff8000", - "0x480a80007fff8000", - "0x480680017fff8000", - "0x0", - "0x1104800180018000", - "0x1f", - "0x208b7fff7fff7ffe", - "0x482680017ffd8000", - "0x30", - "0x208b7fff7fff7ffe", - "0x40780017fff7fff", - "0x0", - "0x20780017fff7ffb", - "0x5", - "0x480a7ffa7fff8000", - "0x480a7ffc7fff8000", - "0x208b7fff7fff7ffe", - "0x480a7ffa7fff8000", - "0x480a7ffb7fff8000", - "0x480680017fff8000", - "0xa", - "0x1104800180018000", - "0x800000000000010fffffffffffffffffffffffffffffffffffffffffffffed6", - "0x1104800180018000", - "0x800000000000010fffffffffffffffffffffffffffffffffffffffffffffff1", - "0x482a7ffc7ffd8000", - "0x400080007fff7ffe", - "0x48127ff97fff8000", - "0x48127ff97fff8000", - "0x482680017ffc8000", - "0x1", - "0x480a7ffd7fff8000", - "0x1104800180018000", - "0x800000000000010ffffffffffffffffffffffffffffffffffffffffffffffeb", - "0x208b7fff7fff7ffe", - "0x48297ffb80007ffd", - "0x20680017fff7fff", - "0x5", - "0x480a7ff97fff8000", - "0x480a7ffa7fff8000", - "0x208b7fff7fff7ffe", - "0x484680017ffa8000", - "0x100", - "0x482680017ffd8000", - "0x1", - "0x48317fff80007ffb", - "0x48327fff7ffc8000", - "0x480080007fff8000", - "0x480a7ff97fff8000", - "0x48307ffe7ffa8000", - "0x480a7ffb7fff8000", - "0x480a7ffc7fff8000", - "0x482680017ffd8000", - "0x1", - "0x1104800180018000", - "0x800000000000010ffffffffffffffffffffffffffffffffffffffffffffffee", - "0x208b7fff7fff7ffe", - "0x1104800180018000", - "0x800000000000010fffffffffffffffffffffffffffffffffffffffffffffe21", - "0x482680017ffd8000", - "0x800000000000010fffffffffffffffffffffffffffffffffffffffffffffe07", - "0x48307fff7ffe8000", - "0x208b7fff7fff7ffe", - "0x480a7ffc7fff8000", - "0x480a7ffd7fff8000", - "0x480680017fff8000", - "0x81a27a8322d1a6f0328b55aa6722bcb3d7c61fe559fdd342832d7631a8c6d4", - "0x208b7fff7fff7ffe", - "0x480a7ffc7fff8000", - "0x480a7ffd7fff8000", - "0x1104800180018000", - "0x800000000000010fffffffffffffffffffffffffffffffffffffffffffffffa", - "0x480a7ffb7fff8000", - "0x48127ffe7fff8000", - "0x1104800180018000", - "0x800000000000010fffffffffffffffffffffffffffffffffffffffffffffedf", - "0x48127ffe7fff8000", - "0x48127ff57fff8000", - "0x48127ff57fff8000", - "0x48127ffc7fff8000", - "0x208b7fff7fff7ffe", - "0x480a7ffb7fff8000", - "0x480a7ffc7fff8000", - "0x1104800180018000", - "0x800000000000010ffffffffffffffffffffffffffffffffffffffffffffffed", - "0x480a7ffa7fff8000", - "0x48127ffe7fff8000", - "0x480a7ffd7fff8000", - "0x1104800180018000", - "0x800000000000010fffffffffffffffffffffffffffffffffffffffffffffed9", - "0x48127ff67fff8000", - "0x48127ff67fff8000", - "0x208b7fff7fff7ffe", - "0x480a7ffb7fff8000", - "0x480680017fff8000", - "0x27d7acd0ad15808107cd50305d063e2aadc3a070b73d49d054507c3c1b2e191", - "0x480a7ffd7fff8000", - "0x1104800180018000", - "0x800000000000010fffffffffffffffffffffffffffffffffffffffffffffde4", - "0x480a7ffc7fff8000", - "0x48127ffe7fff8000", - "0x1104800180018000", - "0x800000000000010fffffffffffffffffffffffffffffffffffffffffffffe95", - "0x48127fe17fff8000", - "0x48127ffd7fff8000", - "0x48127ffd7fff8000", - "0x208b7fff7fff7ffe", - "0x480a7ffb7fff8000", - "0x480a7ffc7fff8000", - "0x480a7ffd7fff8000", - "0x1104800180018000", - "0x800000000000010fffffffffffffffffffffffffffffffffffffffffffffff0", - "0x480a7ffa7fff8000", - "0x48127ffe7fff8000", - "0x1104800180018000", - "0x800000000000010fffffffffffffffffffffffffffffffffffffffffffffeb7", - "0x48127ffe7fff8000", - "0x48127ff57fff8000", - "0x48127ff57fff8000", - "0x48127ffc7fff8000", - "0x208b7fff7fff7ffe", - "0x480a7ffa7fff8000", - "0x480a7ffb7fff8000", - "0x480a7ffc7fff8000", - "0x1104800180018000", - "0x800000000000010ffffffffffffffffffffffffffffffffffffffffffffffe2", - "0x480a7ff97fff8000", - "0x48127ffe7fff8000", - "0x480a7ffd7fff8000", - "0x1104800180018000", - "0x800000000000010fffffffffffffffffffffffffffffffffffffffffffffeb0", - "0x48127ff67fff8000", - "0x48127ff67fff8000", - "0x208b7fff7fff7ffe", - "0x480a7ffb7fff8000", - "0x480a7ffc7fff8000", - "0x480a7ffd7fff8000", - "0x1104800180018000", - "0x800000000000010ffffffffffffffffffffffffffffffffffffffffffffff07", - "0x208b7fff7fff7ffe", - "0x40780017fff7fff", - "0x1", - "0x4003800080007ffc", - "0x4826800180008000", - "0x1", - "0x480a7ffd7fff8000", - "0x4828800080007ffe", - "0x480a80007fff8000", - "0x208b7fff7fff7ffe", - "0x402b7ffd7ffc7ffd", - "0x480280007ffb8000", - "0x480280017ffb8000", - "0x480280027ffb8000", - "0x1104800180018000", - "0x800000000000010ffffffffffffffffffffffffffffffffffffffffffffffee", - "0x48127ffe7fff8000", - "0x1104800180018000", - "0x800000000000010fffffffffffffffffffffffffffffffffffffffffffffff1", - "0x48127ff47fff8000", - "0x48127ff47fff8000", - "0x48127ffb7fff8000", - "0x48127ffb7fff8000", - "0x48127ffb7fff8000", - "0x208b7fff7fff7ffe", - "0x40780017fff7fff", - "0x1", - "0x1104800180018000", - "0x800000000000010fffffffffffffffffffffffffffffffffffffffffffffd9c", - "0x40137fff7fff8000", - "0x480a7ffb7fff8000", - "0x480a7ffc7fff8000", - "0x480a7ffd7fff8000", - "0x480680017fff8000", - "0x0", - "0x480a80007fff8000", - "0x1104800180018000", - "0x17c", - "0x48127ffc7fff8000", - "0x48127ffc7fff8000", - "0x48127ffc7fff8000", - "0x1104800180018000", - "0x800000000000010ffffffffffffffffffffffffffffffffffffffffffffff91", - "0x480a80007fff8000", - "0x208b7fff7fff7ffe", - "0x40780017fff7fff", - "0x3", - "0x4003800080007ffb", - "0x400380007ffd7ffb", - "0x402780017ffd8001", - "0x1", - "0x4826800180008000", - "0x1", - "0x40297ffb7fff8002", - "0x4826800180008000", - "0x1", - "0x480a7ffc7fff8000", - "0x480a7ffb7fff8000", - "0x1104800180018000", - "0x800000000000010fffffffffffffffffffffffffffffffffffffffffffffd86", - "0x480a80017fff8000", - "0x4829800080008002", - "0x480a80007fff8000", - "0x208b7fff7fff7ffe", - "0x40780017fff7fff", - "0x2", - "0x402b7ffd7ffc7ffd", - "0x480280007ffb8000", - "0x480280017ffb8000", - "0x480280027ffb8000", - "0x1104800180018000", - "0x800000000000010ffffffffffffffffffffffffffffffffffffffffffffffd4", - "0x40137ffb7fff8000", - "0x40137ffc7fff8001", - "0x48127ffd7fff8000", - "0x1104800180018000", - "0x800000000000010ffffffffffffffffffffffffffffffffffffffffffffffe3", - "0x480a80007fff8000", - "0x480a80017fff8000", - "0x48127ffb7fff8000", - "0x48127ffb7fff8000", - "0x48127ffb7fff8000", - "0x208b7fff7fff7ffe", - "0x480a7ffa7fff8000", - "0x480a7ffb7fff8000", - "0x480a7ffc7fff8000", - "0x480a7ffd7fff8000", - "0x1104800180018000", - "0x167", - "0x208b7fff7fff7ffe", - "0x40780017fff7fff", - "0x3", - "0x4003800080007ffb", - "0x400380007ffd7ffb", - "0x402780017ffd8001", - "0x1", - "0x4826800180008000", - "0x1", - "0x40297ffb7fff8002", - "0x4826800180008000", - "0x1", - "0x480a7ffc7fff8000", - "0x480a7ffb7fff8000", - "0x1104800180018000", - "0x800000000000010fffffffffffffffffffffffffffffffffffffffffffffd59", - "0x480a80017fff8000", - "0x4829800080008002", - "0x480a80007fff8000", - "0x208b7fff7fff7ffe", - "0x40780017fff7fff", - "0x2", - "0x482680017ffd8000", - "0x1", - "0x402a7ffd7ffc7fff", - "0x480280007ffb8000", - "0x480280017ffb8000", - "0x480280027ffb8000", - "0x480280007ffd8000", - "0x1104800180018000", - "0x800000000000010ffffffffffffffffffffffffffffffffffffffffffffffde", - "0x40137ffb7fff8000", - "0x40137ffc7fff8001", - "0x48127ffd7fff8000", - "0x1104800180018000", - "0x800000000000010ffffffffffffffffffffffffffffffffffffffffffffffe0", - "0x480a80007fff8000", - "0x480a80017fff8000", - "0x48127ffb7fff8000", - "0x48127ffb7fff8000", - "0x48127ffb7fff8000", - "0x208b7fff7fff7ffe", - "0x40780017fff7fff", - "0x1", - "0x1104800180018000", - "0x800000000000010fffffffffffffffffffffffffffffffffffffffffffffd32", - "0x40137fff7fff8000", - "0x482a7ffd7ffc8000", - "0x480080007fff8000", - "0x482480017fff8000", - "0x1", - "0x482a7ffd7ffc8000", - "0x480080007fff8000", - "0x48327fff7ffc8000", - "0x480a80007fff8000", - "0x48327ffb7ffc8000", - "0x480080007ffd8000", - "0x1104800180018000", - "0x800000000000010fffffffffffffffffffffffffffffffffffffffffffffd2e", - "0x482a7ffd7ffc8000", - "0x480080007fff8000", - "0x48327fff7ffc8000", - "0x480a7ff87fff8000", - "0x480a7ff97fff8000", - "0x480a7ffa7fff8000", - "0x480080007ffc8000", - "0x480a80007fff8000", - "0x208b7fff7fff7ffe", - "0x40780017fff7fff", - "0x3", - "0x4003800080007ffb", - "0x400380007ffd7ffb", - "0x402780017ffd8001", - "0x1", - "0x4826800180008000", - "0x1", - "0x40297ffb7fff8002", - "0x4826800180008000", - "0x1", - "0x480a7ffc7fff8000", - "0x480a7ffb7fff8000", - "0x1104800180018000", - "0x800000000000010fffffffffffffffffffffffffffffffffffffffffffffd16", - "0x480a80017fff8000", - "0x4829800080008002", - "0x480a80007fff8000", - "0x208b7fff7fff7ffe", - "0x40780017fff7fff", - "0x2", - "0x480280027ffb8000", - "0x480280007ffd8000", - "0x400080007ffe7fff", - "0x482680017ffd8000", - "0x1", - "0x480280007ffd8000", - "0x48307fff7ffe8000", - "0x482480017fff8000", - "0x1", - "0x402a7ffd7ffc7fff", - "0x480280027ffb8000", - "0x480280007ffb8000", - "0x480280017ffb8000", - "0x482480017ffd8000", - "0x1", - "0x480280007ffd8000", - "0x482680017ffd8000", - "0x1", - "0x480080007ff88000", - "0x1104800180018000", - "0x800000000000010ffffffffffffffffffffffffffffffffffffffffffffffbf", - "0x40137ffb7fff8000", - "0x40137ffc7fff8001", - "0x48127ffd7fff8000", - "0x1104800180018000", - "0x800000000000010ffffffffffffffffffffffffffffffffffffffffffffffd4", - "0x480a80007fff8000", - "0x480a80017fff8000", - "0x48127ffb7fff8000", - "0x48127ffb7fff8000", - "0x48127ffb7fff8000", - "0x208b7fff7fff7ffe", - "0x480a7ff97fff8000", - "0x480a7ffa7fff8000", - "0x480a7ffb7fff8000", - "0x1104800180018000", - "0x800000000000010fffffffffffffffffffffffffffffffffffffffffffffe21", - "0x480a7ffc7fff8000", - "0x1104800180018000", - "0x800000000000010fffffffffffffffffffffffffffffffffffffffffffffeef", - "0x480680017fff8000", - "0x0", - "0x480a7ffc7fff8000", - "0x480a7ffd7fff8000", - "0x1104800180018000", - "0xac", - "0x208b7fff7fff7ffe", - "0x480280027ffb8000", - "0x480280007ffd8000", - "0x400080007ffe7fff", - "0x482680017ffd8000", - "0x1", - "0x480280007ffd8000", - "0x48307fff7ffe8000", - "0x402a7ffd7ffc7fff", - "0x480280027ffb8000", - "0x480280007ffb8000", - "0x480280017ffb8000", - "0x482480017ffd8000", - "0x1", - "0x480280007ffd8000", - "0x482680017ffd8000", - "0x1", - "0x1104800180018000", - "0x800000000000010ffffffffffffffffffffffffffffffffffffffffffffffe2", - "0x40780017fff7fff", - "0x1", - "0x48127ffc7fff8000", - "0x48127ffc7fff8000", - "0x48127ffc7fff8000", - "0x480680017fff8000", - "0x0", - "0x48127ffb7fff8000", - "0x208b7fff7fff7ffe", - "0x480a7ffa7fff8000", - "0x480a7ffb7fff8000", - "0x480a7ffc7fff8000", - "0x480a7ffd7fff8000", - "0x1104800180018000", - "0x800000000000010fffffffffffffffffffffffffffffffffffffffffffffe0b", - "0x208b7fff7fff7ffe", - "0x482680017ffd8000", - "0x1", - "0x402a7ffd7ffc7fff", - "0x480280007ffb8000", - "0x480280017ffb8000", - "0x480280027ffb8000", - "0x480280007ffd8000", - "0x1104800180018000", - "0x800000000000010fffffffffffffffffffffffffffffffffffffffffffffff3", - "0x40780017fff7fff", - "0x1", - "0x48127ffc7fff8000", - "0x48127ffc7fff8000", - "0x48127ffc7fff8000", - "0x480680017fff8000", - "0x0", - "0x48127ffb7fff8000", - "0x208b7fff7fff7ffe", - "0x480a7ff87fff8000", - "0x480a7ff97fff8000", - "0x480a7ffa7fff8000", - "0x480a7ffb7fff8000", - "0x1104800180018000", - "0x800000000000010fffffffffffffffffffffffffffffffffffffffffffffdd6", - "0x480a7ffc7fff8000", - "0x1104800180018000", - "0x800000000000010fffffffffffffffffffffffffffffffffffffffffffffeab", - "0x480680017fff8000", - "0x0", - "0x480a7ffc7fff8000", - "0x480a7ffd7fff8000", - "0x1104800180018000", - "0x68", - "0x208b7fff7fff7ffe", - "0x480280027ffb8000", - "0x480280017ffd8000", - "0x400080007ffe7fff", - "0x482680017ffd8000", - "0x2", - "0x480280017ffd8000", - "0x48307fff7ffe8000", - "0x402a7ffd7ffc7fff", - "0x480280027ffb8000", - "0x480280007ffb8000", - "0x480280017ffb8000", - "0x482480017ffd8000", - "0x1", - "0x480280007ffd8000", - "0x480280017ffd8000", - "0x482680017ffd8000", - "0x2", - "0x1104800180018000", - "0x800000000000010ffffffffffffffffffffffffffffffffffffffffffffffe0", - "0x40780017fff7fff", - "0x1", - "0x48127ffc7fff8000", - "0x48127ffc7fff8000", - "0x48127ffc7fff8000", - "0x480680017fff8000", - "0x0", - "0x48127ffb7fff8000", - "0x208b7fff7fff7ffe", - "0x40780017fff7fff", - "0x0", - "0x480a7ff97fff8000", - "0x480a7ffb7fff8000", - "0x480a7ffc7fff8000", - "0x1104800180018000", - "0x800000000000010fffffffffffffffffffffffffffffffffffffffffffffc74", - "0x480a7ffa7fff8000", - "0x48127ffe7fff8000", - "0x1104800180018000", - "0x800000000000010fffffffffffffffffffffffffffffffffffffffffffffca1", - "0x480a7ff87fff8000", - "0x48127fe87fff8000", - "0x48127ffb7fff8000", - "0x480680017fff8000", - "0x0", - "0x1104800180018000", - "0x800000000000010fffffffffffffffffffffffffffffffffffffffffffffe90", - "0x48127ffe7fff8000", - "0x48127fc17fff8000", - "0x48127ffd7fff8000", - "0x1104800180018000", - "0x800000000000010fffffffffffffffffffffffffffffffffffffffffffffd0a", - "0x48127fe77fff8000", - "0x48127fe77fff8000", - "0x48127ffb7fff8000", - "0x48127ffc7fff8000", - "0x1104800180018000", - "0x62", - "0x208b7fff7fff7ffe", - "0x40780017fff7fff", - "0x3", - "0x4003800080007ffb", - "0x400380007ffd7ffb", - "0x402780017ffd8001", - "0x1", - "0x4826800180008000", - "0x1", - "0x40297ffb7fff8002", - "0x4826800180008000", - "0x1", - "0x480a7ffc7fff8000", - "0x480a7ffb7fff8000", - "0x1104800180018000", - "0x800000000000010fffffffffffffffffffffffffffffffffffffffffffffc54", - "0x480a80017fff8000", - "0x4829800080008002", - "0x480a80007fff8000", - "0x208b7fff7fff7ffe", - "0x40780017fff7fff", - "0x2", - "0x482680017ffd8000", - "0x3", - "0x402a7ffd7ffc7fff", - "0x480280007ffb8000", - "0x480280017ffb8000", - "0x480280027ffb8000", - "0x480280007ffd8000", - "0x480280017ffd8000", - "0x480280027ffd8000", - "0x1104800180018000", - "0x800000000000010ffffffffffffffffffffffffffffffffffffffffffffffc5", - "0x40137ffb7fff8000", - "0x40137ffc7fff8001", - "0x48127ffd7fff8000", - "0x1104800180018000", - "0x800000000000010ffffffffffffffffffffffffffffffffffffffffffffffde", - "0x480a80007fff8000", - "0x480a80017fff8000", - "0x48127ffb7fff8000", - "0x48127ffb7fff8000", - "0x48127ffb7fff8000", - "0x208b7fff7fff7ffe", - "0x48297ffc80007ffb", - "0x20680017fff7fff", - "0x6", - "0x480a7ff87fff8000", - "0x480a7ff97fff8000", - "0x480a7ffa7fff8000", - "0x208b7fff7fff7ffe", - "0x482a7ffb7ffd8000", - "0x480a7ff87fff8000", - "0x480a7ff97fff8000", - "0x480a7ffa7fff8000", - "0x480a7ffb7fff8000", - "0x480080007ffb8000", - "0x1104800180018000", - "0x800000000000010fffffffffffffffffffffffffffffffffffffffffffffe58", - "0x482680017ffb8000", - "0x1", - "0x480a7ffc7fff8000", - "0x480a7ffd7fff8000", - "0x1104800180018000", - "0x800000000000010ffffffffffffffffffffffffffffffffffffffffffffffee", - "0x208b7fff7fff7ffe", - "0x480a7ff97fff8000", - "0x480a7ffa7fff8000", - "0x480a7ffb7fff8000", - "0x1104800180018000", - "0x800000000000010fffffffffffffffffffffffffffffffffffffffffffffe17", - "0x48317fff80007ffc", - "0x20680017fff7fff", - "0x7", - "0x48127ffb7fff8000", - "0x48127ffb7fff8000", - "0x48127ffb7fff8000", - "0x480a7ffd7fff8000", - "0x208b7fff7fff7ffe", - "0x48127ffb7fff8000", - "0x48127ffb7fff8000", - "0x48127ffb7fff8000", - "0x480a7ffc7fff8000", - "0x1104800180018000", - "0x800000000000010fffffffffffffffffffffffffffffffffffffffffffffe30", - "0x400280007ffd7fff", - "0x48127ffc7fff8000", - "0x48127ffc7fff8000", - "0x48127ffc7fff8000", - "0x482680017ffc8000", - "0x1", - "0x482680017ffd8000", - "0x1", - "0x1104800180018000", - "0x800000000000010ffffffffffffffffffffffffffffffffffffffffffffffe6", - "0x208b7fff7fff7ffe", - "0x40780017fff7fff", - "0x2", - "0x480a7ffa7fff8000", - "0x480a7ffb7fff8000", - "0x480a7ffc7fff8000", - "0x480a7ffd7fff8000", - "0x1104800180018000", - "0x800000000000010fffffffffffffffffffffffffffffffffffffffffffffe1d", - "0x1104800180018000", - "0x800000000000010fffffffffffffffffffffffffffffffffffffffffffffe1b", - "0x40137fff7fff8000", - "0x1104800180018000", - "0x800000000000010fffffffffffffffffffffffffffffffffffffffffffffbee", - "0x40137fff7fff8001", - "0x482480017fc38000", - "0x1", - "0x48127ff87fff8000", - "0x48127ff87fff8000", - "0x48127ff87fff8000", - "0x482480017fbf8000", - "0x1", - "0x482880007ffb8000", - "0x480a80017fff8000", - "0x1104800180018000", - "0x5", - "0x480a80007fff8000", - "0x480a80017fff8000", - "0x208b7fff7fff7ffe", - "0x480a7ffa7fff8000", - "0x480a7ffc7fff8000", - "0x480a7ffb7fff8000", - "0x1104800180018000", - "0x800000000000010fffffffffffffffffffffffffffffffffffffffffffffd70", - "0x482480017fff8000", - "0x800000000000011000000000000000000000000000000000000000000000000", - "0x20680017fff7fff", - "0x6", - "0x480a7ff87fff8000", - "0x480a7ff97fff8000", - "0x48127ffb7fff8000", - "0x208b7fff7fff7ffe", - "0x480a7ff87fff8000", - "0x480a7ff97fff8000", - "0x48127ffb7fff8000", - "0x480a7ffb7fff8000", - "0x1104800180018000", - "0x800000000000010fffffffffffffffffffffffffffffffffffffffffffffdf6", - "0x400280007ffd7fff", - "0x48127ffc7fff8000", - "0x48127ffc7fff8000", - "0x48127ffc7fff8000", - "0x482680017ffb8000", - "0x1", - "0x480a7ffc7fff8000", - "0x482680017ffd8000", - "0x1", - "0x1104800180018000", - "0x800000000000010ffffffffffffffffffffffffffffffffffffffffffffffe5", - "0x208b7fff7fff7ffe" - ], - "debug_info": { - "file_contents": { - "autogen/starknet/arg_processor/01cba52f8515996bb9d7070bde81ff39281d096d7024a558efcba6e1fd2402cf.cairo": "assert [cast(fp + (-4), felt*)] = __calldata_actual_size;\n", - "autogen/starknet/arg_processor/073ad342b04c4113aad0e4fcc310e3b998c1ae0103c8f54e93d61ae6e4766e81.cairo": "let __calldata_arg_encoded_uris_len = [__calldata_ptr];\nlet __calldata_ptr = __calldata_ptr + 1;\n", - "autogen/starknet/arg_processor/0e2692b9b5b0d1050bfa0e270aad02e1a4dd5194eace4357b14efae5cfb7ff33.cairo": "// Check that the length is non-negative.\nassert [range_check_ptr] = ret_value.uri_len;\n// Store the updated range_check_ptr as a local variable to keep it available after\n// the memcpy.\nlocal range_check_ptr = range_check_ptr + 1;\n// Keep a reference to __return_value_ptr.\nlet __return_value_ptr_copy = __return_value_ptr;\n// Store the updated __return_value_ptr as a local variable to keep it available after\n// the memcpy.\nlocal __return_value_ptr: felt* = __return_value_ptr + ret_value.uri_len * 1;\nmemcpy(\n dst=__return_value_ptr_copy,\n src=ret_value.uri,\n len=ret_value.uri_len * 1);\n", - "autogen/starknet/arg_processor/302a0e7f223f7f95d8ec699c8e1fa2628283de74616337c794098be1f39f0256.cairo": "let __calldata_arg_index = [__calldata_ptr];\nlet __calldata_ptr = __calldata_ptr + 1;\n", - "autogen/starknet/arg_processor/3e93b8906c329e7a5c33e020ce7a5a9c542c4444955be98eec5fcbef545a8662.cairo": "let __calldata_arg_value = [__calldata_ptr];\nlet __calldata_ptr = __calldata_ptr + 1;\n", - "autogen/starknet/arg_processor/3e997d9761388a58baa7b454b348a99f2985b55f99cf1ea7b31f5954242f81a7.cairo": "// Check that the length is non-negative.\nassert [range_check_ptr] = ret_value.uris_len;\n// Store the updated range_check_ptr as a local variable to keep it available after\n// the memcpy.\nlocal range_check_ptr = range_check_ptr + 1;\n// Keep a reference to __return_value_ptr.\nlet __return_value_ptr_copy = __return_value_ptr;\n// Store the updated __return_value_ptr as a local variable to keep it available after\n// the memcpy.\nlocal __return_value_ptr: felt* = __return_value_ptr + ret_value.uris_len * 1;\nmemcpy(\n dst=__return_value_ptr_copy,\n src=ret_value.uris,\n len=ret_value.uris_len * 1);\n", - "autogen/starknet/arg_processor/445d818b0524d35ae3e73b7abec41731d1445f0ce6866ec5a3a8a871521799a0.cairo": "assert [__calldata_ptr] = newOwner;\nlet __calldata_ptr = __calldata_ptr + 1;\n", - "autogen/starknet/arg_processor/450f0509800d3afb78e5f375ff7b17115e6b5d0fd7e2bff94c78fdb15f5f2d10.cairo": "let __calldata_arg_new_owner = [__calldata_ptr];\nlet __calldata_ptr = __calldata_ptr + 1;\n", - "autogen/starknet/arg_processor/4d3c3312cf28c6aaaca9e6272964446e12daddba3759882910a365c0efed08b3.cairo": "// Check that the length is non-negative.\nassert [range_check_ptr] = __calldata_arg_uris_len;\nlet range_check_ptr = range_check_ptr + 1;\n// Create the reference.\nlet __calldata_arg_uris = cast(__calldata_ptr, felt*);\n// Use 'tempvar' instead of 'let' to avoid repeating this computation for the\n// following arguments.\ntempvar __calldata_ptr = __calldata_ptr + __calldata_arg_uris_len * 1;\n", - "autogen/starknet/arg_processor/5462c9ea522f66a6a8b3de2f37f244c7074893fe5c8d0b413046098a1ccfc2ce.cairo": "assert [__return_value_ptr] = ret_value.token_uri_len;\nlet __return_value_ptr = __return_value_ptr + 1;\n", - "autogen/starknet/arg_processor/860925ba0e84404f570d0f727a5bc2dbe9f339c324eb0fc9b3b7324b211ad7e9.cairo": "let __calldata_arg_uris_len = [__calldata_ptr];\nlet __calldata_ptr = __calldata_ptr + 1;\n", - "autogen/starknet/arg_processor/8d1ba44ec0b1d27c24688348db19d49f555faaa5454ce90a4e7ba33d6a63afea.cairo": "// Check that the length is non-negative.\nassert [range_check_ptr] = ret_value.token_uri_len;\n// Store the updated range_check_ptr as a local variable to keep it available after\n// the memcpy.\nlocal range_check_ptr = range_check_ptr + 1;\n// Keep a reference to __return_value_ptr.\nlet __return_value_ptr_copy = __return_value_ptr;\n// Store the updated __return_value_ptr as a local variable to keep it available after\n// the memcpy.\nlocal __return_value_ptr: felt* = __return_value_ptr + ret_value.token_uri_len * 1;\nmemcpy(\n dst=__return_value_ptr_copy,\n src=ret_value.token_uri,\n len=ret_value.token_uri_len * 1);\n", - "autogen/starknet/arg_processor/92bae94c430cca894eac466fa5be50d176f1f62e79244db218577fbac5e84220.cairo": "let __calldata_arg_token_id = [__calldata_ptr];\nlet __calldata_ptr = __calldata_ptr + 1;\n", - "autogen/starknet/arg_processor/b02ddc13e06346668d980e18c0fec90f17036d195bf95d21ac18e846a0a129f3.cairo": "assert [__return_value_ptr] = ret_value.owner;\nlet __return_value_ptr = __return_value_ptr + 1;\n", - "autogen/starknet/arg_processor/c31620b02d4d706f0542c989b2aadc01b0981d1f6a5933a8fe4937ace3d70d92.cairo": "let __calldata_actual_size = __calldata_ptr - cast([cast(fp + (-3), felt**)], felt*);\n", - "autogen/starknet/arg_processor/de9cdb15e04bbb23c0fa9a69d99b361b8fcc49113f31e26360d3d1d38ad316c9.cairo": "assert [__return_value_ptr] = ret_value.uris_len;\nlet __return_value_ptr = __return_value_ptr + 1;\n", - "autogen/starknet/arg_processor/e1eb73cd870ec466294c3700e77817cf3c039ac1384882ddb76383eb87a5da90.cairo": "let __calldata_arg_name = [__calldata_ptr];\nlet __calldata_ptr = __calldata_ptr + 1;\n", - "autogen/starknet/arg_processor/e2129a0023ce5f9e4c3de1d6fb100b2688dccff4a2ed2082db4a311f35c53e21.cairo": "assert [__calldata_ptr] = previousOwner;\nlet __calldata_ptr = __calldata_ptr + 1;\n", - "autogen/starknet/arg_processor/e5c63607fcbdbe90af3e646b038ed92cbbfbdda49041f6d47804f4a9e0551fe2.cairo": "assert [__return_value_ptr] = ret_value.uri_len;\nlet __return_value_ptr = __return_value_ptr + 1;\n", - "autogen/starknet/arg_processor/ebfe7743ee2a7d26a243da33d07168cae9419b48d861bde75986fc65feb11420.cairo": "// Check that the length is non-negative.\nassert [range_check_ptr] = __calldata_arg_encoded_uris_len;\nlet range_check_ptr = range_check_ptr + 1;\n// Create the reference.\nlet __calldata_arg_encoded_uris = cast(__calldata_ptr, felt*);\n// Use 'tempvar' instead of 'let' to avoid repeating this computation for the\n// following arguments.\ntempvar __calldata_ptr = __calldata_ptr + __calldata_arg_encoded_uris_len * 1;\n", - "autogen/starknet/arg_processor/f6a4d9ae897caf37cefd18f7c8da7eee73157818279359aadee282f0fe59cdbc.cairo": "let __calldata_arg_owner = [__calldata_ptr];\nlet __calldata_ptr = __calldata_ptr + 1;\n", - "autogen/starknet/event/OwnershipTransferred/6150feec30bd48bfd0f446ed8c155a6d911a2c3fb3ec7a980733900416819259.cairo": "emit_event(keys_len=1, keys=__keys_ptr, data_len=__calldata_ptr - __data_ptr, data=__data_ptr);\nreturn ();\n", - "autogen/starknet/event/OwnershipTransferred/8220fde17ca5479f12ae71a8036f4d354fe722f2c036da610b53511924e4ee84.cairo": "alloc_locals;\nlet (local __keys_ptr: felt*) = alloc();\nassert [__keys_ptr] = SELECTOR;\nlet (local __data_ptr: felt*) = alloc();\nlet __calldata_ptr = __data_ptr;\n", - "autogen/starknet/event/OwnershipTransferred/a7a8ae41be29ac9f4f6c3b7837c448d787ca051dd1ade98f409e54d33d112504.cairo": "func emit{syscall_ptr: felt*, range_check_ptr}() {\n}\n", - "autogen/starknet/external/constructor/741ea357d6336b0bed7bf0472425acd0311d543883b803388880e60a232040c7.cairo": "let range_check_ptr = [cast([cast(fp + (-5), felt**)] + 2, felt*)];\n", - "autogen/starknet/external/constructor/8682a073fe3cc70bab3d539eb66aed8590e5785f411e73a386699f142b9a4b35.cairo": "let ret_value = __wrapped_func{syscall_ptr=syscall_ptr, pedersen_ptr=pedersen_ptr, range_check_ptr=range_check_ptr}(owner=__calldata_arg_owner, uris_len=__calldata_arg_uris_len, uris=__calldata_arg_uris,);\n%{ memory[ap] = segments.add() %} // Allocate memory for return value.\ntempvar retdata: felt*;\nlet retdata_size = 0;\n", - "autogen/starknet/external/constructor/9684a85e93c782014ca14293edea4eb2502039a5a7b6538ecd39c56faaf12529.cairo": "let pedersen_ptr = [cast([cast(fp + (-5), felt**)] + 1, starkware.cairo.common.cairo_builtins.HashBuiltin**)];\n", - "autogen/starknet/external/constructor/b2c52ca2d2a8fc8791a983086d8716c5eacd0c3d62934914d2286f84b98ff4cb.cairo": "let syscall_ptr = [cast([cast(fp + (-5), felt**)] + 0, felt**)];\n", - "autogen/starknet/external/constructor/da17921a4e81c09e730800bbf23bfdbe5e9e6bfaedc59d80fbf62087fa43c27d.cairo": "return (syscall_ptr,pedersen_ptr,range_check_ptr,retdata_size,retdata);\n", - "autogen/starknet/external/getOwner/50eef2d703602d24c42df800878bfabc425ad0069960e1dc159c4d3bf27e35f6.cairo": "let ret_value = __wrapped_func{syscall_ptr=syscall_ptr, pedersen_ptr=pedersen_ptr, range_check_ptr=range_check_ptr}();\nlet (range_check_ptr, retdata_size, retdata) = getOwner_encode_return(ret_value, range_check_ptr);\n", - "autogen/starknet/external/getOwner/741ea357d6336b0bed7bf0472425acd0311d543883b803388880e60a232040c7.cairo": "let range_check_ptr = [cast([cast(fp + (-5), felt**)] + 2, felt*)];\n", - "autogen/starknet/external/getOwner/9684a85e93c782014ca14293edea4eb2502039a5a7b6538ecd39c56faaf12529.cairo": "let pedersen_ptr = [cast([cast(fp + (-5), felt**)] + 1, starkware.cairo.common.cairo_builtins.HashBuiltin**)];\n", - "autogen/starknet/external/getOwner/b2c52ca2d2a8fc8791a983086d8716c5eacd0c3d62934914d2286f84b98ff4cb.cairo": "let syscall_ptr = [cast([cast(fp + (-5), felt**)] + 0, felt**)];\n", - "autogen/starknet/external/getOwner/da17921a4e81c09e730800bbf23bfdbe5e9e6bfaedc59d80fbf62087fa43c27d.cairo": "return (syscall_ptr,pedersen_ptr,range_check_ptr,retdata_size,retdata);\n", - "autogen/starknet/external/getUri/168ea02ff2f5e1e0110befc18d858a5c0702d764020c5064bab1b76e9e1bf31a.cairo": "func getUri() -> (syscall_ptr: felt*, pedersen_ptr: starkware.cairo.common.cairo_builtins.HashBuiltin*, range_check_ptr: felt, size: felt, retdata: felt*) {\n alloc_locals;\n}\n", - "autogen/starknet/external/getUri/741ea357d6336b0bed7bf0472425acd0311d543883b803388880e60a232040c7.cairo": "let range_check_ptr = [cast([cast(fp + (-5), felt**)] + 2, felt*)];\n", - "autogen/starknet/external/getUri/9684a85e93c782014ca14293edea4eb2502039a5a7b6538ecd39c56faaf12529.cairo": "let pedersen_ptr = [cast([cast(fp + (-5), felt**)] + 1, starkware.cairo.common.cairo_builtins.HashBuiltin**)];\n", - "autogen/starknet/external/getUri/98a5f295af3a2d780151029647c3dade14bea546bcd187607b899389a63ebe1e.cairo": "let ret_value = __wrapped_func{syscall_ptr=syscall_ptr, pedersen_ptr=pedersen_ptr, range_check_ptr=range_check_ptr}(index=__calldata_arg_index,);\nlet (range_check_ptr, retdata_size, retdata) = getUri_encode_return(ret_value, range_check_ptr);\n", - "autogen/starknet/external/getUri/b2c52ca2d2a8fc8791a983086d8716c5eacd0c3d62934914d2286f84b98ff4cb.cairo": "let syscall_ptr = [cast([cast(fp + (-5), felt**)] + 0, felt**)];\n", - "autogen/starknet/external/getUri/da17921a4e81c09e730800bbf23bfdbe5e9e6bfaedc59d80fbf62087fa43c27d.cairo": "return (syscall_ptr,pedersen_ptr,range_check_ptr,retdata_size,retdata);\n", - "autogen/starknet/external/getUris/16b14650f8f77c5b220f7ec13673aa41c3b93f27e60acb61812cf0ca621ce336.cairo": "func getUris() -> (syscall_ptr: felt*, pedersen_ptr: starkware.cairo.common.cairo_builtins.HashBuiltin*, range_check_ptr: felt, size: felt, retdata: felt*) {\n alloc_locals;\n}\n", - "autogen/starknet/external/getUris/741ea357d6336b0bed7bf0472425acd0311d543883b803388880e60a232040c7.cairo": "let range_check_ptr = [cast([cast(fp + (-5), felt**)] + 2, felt*)];\n", - "autogen/starknet/external/getUris/949b182ecec4fb81f2183f1cefa71a20c084e771152261dbf56ff153c13f4d6d.cairo": "let ret_value = __wrapped_func{syscall_ptr=syscall_ptr, pedersen_ptr=pedersen_ptr, range_check_ptr=range_check_ptr}();\nlet (range_check_ptr, retdata_size, retdata) = getUris_encode_return(ret_value, range_check_ptr);\n", - "autogen/starknet/external/getUris/9684a85e93c782014ca14293edea4eb2502039a5a7b6538ecd39c56faaf12529.cairo": "let pedersen_ptr = [cast([cast(fp + (-5), felt**)] + 1, starkware.cairo.common.cairo_builtins.HashBuiltin**)];\n", - "autogen/starknet/external/getUris/b2c52ca2d2a8fc8791a983086d8716c5eacd0c3d62934914d2286f84b98ff4cb.cairo": "let syscall_ptr = [cast([cast(fp + (-5), felt**)] + 0, felt**)];\n", - "autogen/starknet/external/getUris/da17921a4e81c09e730800bbf23bfdbe5e9e6bfaedc59d80fbf62087fa43c27d.cairo": "return (syscall_ptr,pedersen_ptr,range_check_ptr,retdata_size,retdata);\n", - "autogen/starknet/external/return/getOwner/b6df8dec790559c2c5b7a358af946adc3119f253addccded3beb4074a973d539.cairo": "func getOwner_encode_return(ret_value: (owner: felt), range_check_ptr) -> (\n range_check_ptr: felt, data_len: felt, data: felt*) {\n %{ memory[ap] = segments.add() %}\n alloc_locals;\n local __return_value_ptr_start: felt*;\n let __return_value_ptr = __return_value_ptr_start;\n with range_check_ptr {\n }\n return (\n range_check_ptr=range_check_ptr,\n data_len=__return_value_ptr - __return_value_ptr_start,\n data=__return_value_ptr_start);\n}\n", - "autogen/starknet/external/return/getUri/ffe1c155873c36f06d097dd655593fa13135320e7512bcc3125b3b0fdf2414c8.cairo": "func getUri_encode_return(ret_value: (uri_len: felt, uri: felt*), range_check_ptr) -> (\n range_check_ptr: felt, data_len: felt, data: felt*) {\n %{ memory[ap] = segments.add() %}\n alloc_locals;\n local __return_value_ptr_start: felt*;\n let __return_value_ptr = __return_value_ptr_start;\n with range_check_ptr {\n }\n return (\n range_check_ptr=range_check_ptr,\n data_len=__return_value_ptr - __return_value_ptr_start,\n data=__return_value_ptr_start);\n}\n", - "autogen/starknet/external/return/getUris/27bbe6e2811d5a6060091641fe546a465f4875f175231c16ca76298d6ad4834d.cairo": "func getUris_encode_return(ret_value: (uris_len: felt, uris: felt*), range_check_ptr) -> (\n range_check_ptr: felt, data_len: felt, data: felt*) {\n %{ memory[ap] = segments.add() %}\n alloc_locals;\n local __return_value_ptr_start: felt*;\n let __return_value_ptr = __return_value_ptr_start;\n with range_check_ptr {\n }\n return (\n range_check_ptr=range_check_ptr,\n data_len=__return_value_ptr - __return_value_ptr_start,\n data=__return_value_ptr_start);\n}\n", - "autogen/starknet/external/return/testUris/93186184cb71ae2c7031ae11a0eb8708449a93a7b0214b026750101d50310eff.cairo": "func testUris_encode_return(ret_value: (uri_len: felt, uri: felt*), range_check_ptr) -> (\n range_check_ptr: felt, data_len: felt, data: felt*) {\n %{ memory[ap] = segments.add() %}\n alloc_locals;\n local __return_value_ptr_start: felt*;\n let __return_value_ptr = __return_value_ptr_start;\n with range_check_ptr {\n }\n return (\n range_check_ptr=range_check_ptr,\n data_len=__return_value_ptr - __return_value_ptr_start,\n data=__return_value_ptr_start);\n}\n", - "autogen/starknet/external/return/token_uri/f48cf5085ac07908983bbc364b0ba70d64fa7f2a9b8dc38e9d6fe3783bd626a8.cairo": "func token_uri_encode_return(ret_value: (token_uri_len: felt, token_uri: felt*), range_check_ptr) -> (\n range_check_ptr: felt, data_len: felt, data: felt*) {\n %{ memory[ap] = segments.add() %}\n alloc_locals;\n local __return_value_ptr_start: felt*;\n let __return_value_ptr = __return_value_ptr_start;\n with range_check_ptr {\n }\n return (\n range_check_ptr=range_check_ptr,\n data_len=__return_value_ptr - __return_value_ptr_start,\n data=__return_value_ptr_start);\n}\n", - "autogen/starknet/external/setUris/741ea357d6336b0bed7bf0472425acd0311d543883b803388880e60a232040c7.cairo": "let range_check_ptr = [cast([cast(fp + (-5), felt**)] + 2, felt*)];\n", - "autogen/starknet/external/setUris/77b2e0c8d6c3be67c8b2ebdac4e543e9663cde85b9a9088f620d8d3fb9704f3f.cairo": "let ret_value = __wrapped_func{syscall_ptr=syscall_ptr, pedersen_ptr=pedersen_ptr, range_check_ptr=range_check_ptr}(uris_len=__calldata_arg_uris_len, uris=__calldata_arg_uris,);\n%{ memory[ap] = segments.add() %} // Allocate memory for return value.\ntempvar retdata: felt*;\nlet retdata_size = 0;\n", - "autogen/starknet/external/setUris/9684a85e93c782014ca14293edea4eb2502039a5a7b6538ecd39c56faaf12529.cairo": "let pedersen_ptr = [cast([cast(fp + (-5), felt**)] + 1, starkware.cairo.common.cairo_builtins.HashBuiltin**)];\n", - "autogen/starknet/external/setUris/b2c52ca2d2a8fc8791a983086d8716c5eacd0c3d62934914d2286f84b98ff4cb.cairo": "let syscall_ptr = [cast([cast(fp + (-5), felt**)] + 0, felt**)];\n", - "autogen/starknet/external/setUris/da17921a4e81c09e730800bbf23bfdbe5e9e6bfaedc59d80fbf62087fa43c27d.cairo": "return (syscall_ptr,pedersen_ptr,range_check_ptr,retdata_size,retdata);\n", - "autogen/starknet/external/testUris/5fa0e26a7047774b90cdb3007fc92aad94a8347fffeb6fff9cdc9d7c17b713e3.cairo": "func testUris() -> (syscall_ptr: felt*, pedersen_ptr: starkware.cairo.common.cairo_builtins.HashBuiltin*, range_check_ptr: felt, size: felt, retdata: felt*) {\n alloc_locals;\n}\n", - "autogen/starknet/external/testUris/741ea357d6336b0bed7bf0472425acd0311d543883b803388880e60a232040c7.cairo": "let range_check_ptr = [cast([cast(fp + (-5), felt**)] + 2, felt*)];\n", - "autogen/starknet/external/testUris/9684a85e93c782014ca14293edea4eb2502039a5a7b6538ecd39c56faaf12529.cairo": "let pedersen_ptr = [cast([cast(fp + (-5), felt**)] + 1, starkware.cairo.common.cairo_builtins.HashBuiltin**)];\n", - "autogen/starknet/external/testUris/a10454f81fc641c3a6624a8376b2c503ea06e3d0ff8d190d60bb846b87a3927a.cairo": "let ret_value = __wrapped_func{syscall_ptr=syscall_ptr, pedersen_ptr=pedersen_ptr, range_check_ptr=range_check_ptr}(encoded_uris_len=__calldata_arg_encoded_uris_len, encoded_uris=__calldata_arg_encoded_uris, index=__calldata_arg_index,);\nlet (range_check_ptr, retdata_size, retdata) = testUris_encode_return(ret_value, range_check_ptr);\n", - "autogen/starknet/external/testUris/b2c52ca2d2a8fc8791a983086d8716c5eacd0c3d62934914d2286f84b98ff4cb.cairo": "let syscall_ptr = [cast([cast(fp + (-5), felt**)] + 0, felt**)];\n", - "autogen/starknet/external/testUris/da17921a4e81c09e730800bbf23bfdbe5e9e6bfaedc59d80fbf62087fa43c27d.cairo": "return (syscall_ptr,pedersen_ptr,range_check_ptr,retdata_size,retdata);\n", - "autogen/starknet/external/token_uri/0e46c67014b1932c61618de0923cda1cd086d4d13ccfc96398cf52540cb66251.cairo": "func token_uri() -> (syscall_ptr: felt*, pedersen_ptr: starkware.cairo.common.cairo_builtins.HashBuiltin*, range_check_ptr: felt, size: felt, retdata: felt*) {\n alloc_locals;\n}\n", - "autogen/starknet/external/token_uri/741ea357d6336b0bed7bf0472425acd0311d543883b803388880e60a232040c7.cairo": "let range_check_ptr = [cast([cast(fp + (-5), felt**)] + 2, felt*)];\n", - "autogen/starknet/external/token_uri/9684a85e93c782014ca14293edea4eb2502039a5a7b6538ecd39c56faaf12529.cairo": "let pedersen_ptr = [cast([cast(fp + (-5), felt**)] + 1, starkware.cairo.common.cairo_builtins.HashBuiltin**)];\n", - "autogen/starknet/external/token_uri/9d05eaea81d1f118198de7fbeb87299791e5ee5607b9eeaa2f7214ab7ab8249b.cairo": "let ret_value = __wrapped_func{syscall_ptr=syscall_ptr, pedersen_ptr=pedersen_ptr, range_check_ptr=range_check_ptr}(token_id=__calldata_arg_token_id, value=__calldata_arg_value, name=__calldata_arg_name,);\nlet (range_check_ptr, retdata_size, retdata) = token_uri_encode_return(ret_value, range_check_ptr);\n", - "autogen/starknet/external/token_uri/b2c52ca2d2a8fc8791a983086d8716c5eacd0c3d62934914d2286f84b98ff4cb.cairo": "let syscall_ptr = [cast([cast(fp + (-5), felt**)] + 0, felt**)];\n", - "autogen/starknet/external/token_uri/da17921a4e81c09e730800bbf23bfdbe5e9e6bfaedc59d80fbf62087fa43c27d.cairo": "return (syscall_ptr,pedersen_ptr,range_check_ptr,retdata_size,retdata);\n", - "autogen/starknet/external/transferOwnership/741ea357d6336b0bed7bf0472425acd0311d543883b803388880e60a232040c7.cairo": "let range_check_ptr = [cast([cast(fp + (-5), felt**)] + 2, felt*)];\n", - "autogen/starknet/external/transferOwnership/9684a85e93c782014ca14293edea4eb2502039a5a7b6538ecd39c56faaf12529.cairo": "let pedersen_ptr = [cast([cast(fp + (-5), felt**)] + 1, starkware.cairo.common.cairo_builtins.HashBuiltin**)];\n", - "autogen/starknet/external/transferOwnership/b2c52ca2d2a8fc8791a983086d8716c5eacd0c3d62934914d2286f84b98ff4cb.cairo": "let syscall_ptr = [cast([cast(fp + (-5), felt**)] + 0, felt**)];\n", - "autogen/starknet/external/transferOwnership/c2abbdf6d40d1d1b0441e88eb8846ba0c3d55e5f282e3d3f8d0a35a43a9b3e33.cairo": "let ret_value = __wrapped_func{syscall_ptr=syscall_ptr, pedersen_ptr=pedersen_ptr, range_check_ptr=range_check_ptr}(new_owner=__calldata_arg_new_owner,);\n%{ memory[ap] = segments.add() %} // Allocate memory for return value.\ntempvar retdata: felt*;\nlet retdata_size = 0;\n", - "autogen/starknet/external/transferOwnership/da17921a4e81c09e730800bbf23bfdbe5e9e6bfaedc59d80fbf62087fa43c27d.cairo": "return (syscall_ptr,pedersen_ptr,range_check_ptr,retdata_size,retdata);\n", - "autogen/starknet/storage_var/Ownable_owner/decl.cairo": "namespace Ownable_owner {\n from starkware.starknet.common.storage import normalize_address\n from starkware.starknet.common.syscalls import storage_read, storage_write\n from starkware.cairo.common.cairo_builtins import HashBuiltin\n from starkware.cairo.common.hash import hash2\n\n func addr{pedersen_ptr: HashBuiltin*, range_check_ptr}() -> (res: felt) {\n let res = 0;\n call hash2;\n call normalize_address;\n }\n\n func read{syscall_ptr: felt*, pedersen_ptr: HashBuiltin*, range_check_ptr}() -> (owner: felt) {\n let storage_addr = 0;\n call addr;\n call storage_read;\n }\n\n func write{syscall_ptr: felt*, pedersen_ptr: HashBuiltin*, range_check_ptr}(value: felt) {\n let storage_addr = 0;\n call addr;\n call storage_write;\n }\n}", - "autogen/starknet/storage_var/Ownable_owner/impl.cairo": "namespace Ownable_owner {\n from starkware.starknet.common.storage import normalize_address\n from starkware.starknet.common.syscalls import storage_read, storage_write\n from starkware.cairo.common.cairo_builtins import HashBuiltin\n from starkware.cairo.common.hash import hash2\n\n func addr{pedersen_ptr: HashBuiltin*, range_check_ptr}() -> (res: felt) {\n let res = 1239149872729906871793169171313897310809028090219849129902089947133222824240;\n return (res=res);\n }\n\n func read{syscall_ptr: felt*, pedersen_ptr: HashBuiltin*, range_check_ptr}() -> (owner: felt) {\n let (storage_addr) = addr();\n let (__storage_var_temp0) = storage_read(address=storage_addr + 0);\n\n tempvar syscall_ptr = syscall_ptr;\n tempvar pedersen_ptr = pedersen_ptr;\n tempvar range_check_ptr = range_check_ptr;\n tempvar __storage_var_temp0: felt = __storage_var_temp0;\n return ([cast(&__storage_var_temp0, felt*)],);\n }\n\n func write{syscall_ptr: felt*, pedersen_ptr: HashBuiltin*, range_check_ptr}(value: felt) {\n let (storage_addr) = addr();\n storage_write(address=storage_addr + 0, value=[cast(&value, felt) + 0]);\n return ();\n }\n}", - "autogen/starknet/storage_var/_uris/decl.cairo": "namespace _uris {\n from starkware.starknet.common.storage import normalize_address\n from starkware.starknet.common.syscalls import storage_read, storage_write\n from starkware.cairo.common.cairo_builtins import HashBuiltin\n from starkware.cairo.common.hash import hash2\n\n func addr{pedersen_ptr: HashBuiltin*, range_check_ptr}(index: felt) -> (res: felt) {\n let res = 0;\n call hash2;\n call normalize_address;\n }\n\n func read{syscall_ptr: felt*, pedersen_ptr: HashBuiltin*, range_check_ptr}(index: felt) -> (\n value: felt\n ) {\n let storage_addr = 0;\n call addr;\n call storage_read;\n }\n\n func write{syscall_ptr: felt*, pedersen_ptr: HashBuiltin*, range_check_ptr}(\n index: felt, value: felt\n ) {\n let storage_addr = 0;\n call addr;\n call storage_write;\n }\n}", - "autogen/starknet/storage_var/_uris/impl.cairo": "namespace _uris {\n from starkware.starknet.common.storage import normalize_address\n from starkware.starknet.common.syscalls import storage_read, storage_write\n from starkware.cairo.common.cairo_builtins import HashBuiltin\n from starkware.cairo.common.hash import hash2\n\n func addr{pedersen_ptr: HashBuiltin*, range_check_ptr}(index: felt) -> (res: felt) {\n let res = 1126329121246448023582374407928356638649056238973467551539056045535802876305;\n let (res) = hash2{hash_ptr=pedersen_ptr}(res, cast(&index, felt*)[0]);\n let (res) = normalize_address(addr=res);\n return (res=res);\n }\n\n func read{syscall_ptr: felt*, pedersen_ptr: HashBuiltin*, range_check_ptr}(index: felt) -> (\n value: felt\n ) {\n let (storage_addr) = addr(index);\n let (__storage_var_temp0) = storage_read(address=storage_addr + 0);\n\n tempvar syscall_ptr = syscall_ptr;\n tempvar pedersen_ptr = pedersen_ptr;\n tempvar range_check_ptr = range_check_ptr;\n tempvar __storage_var_temp0: felt = __storage_var_temp0;\n return ([cast(&__storage_var_temp0, felt*)],);\n }\n\n func write{syscall_ptr: felt*, pedersen_ptr: HashBuiltin*, range_check_ptr}(\n index: felt, value: felt\n ) {\n let (storage_addr) = addr(index);\n storage_write(address=storage_addr + 0, value=[cast(&value, felt) + 0]);\n return ();\n }\n}", - "autogen/starknet/storage_var/_uris_len/decl.cairo": "namespace _uris_len {\n from starkware.starknet.common.storage import normalize_address\n from starkware.starknet.common.syscalls import storage_read, storage_write\n from starkware.cairo.common.cairo_builtins import HashBuiltin\n from starkware.cairo.common.hash import hash2\n\n func addr{pedersen_ptr: HashBuiltin*, range_check_ptr}() -> (res: felt) {\n let res = 0;\n call hash2;\n call normalize_address;\n }\n\n func read{syscall_ptr: felt*, pedersen_ptr: HashBuiltin*, range_check_ptr}() -> (res: felt) {\n let storage_addr = 0;\n call addr;\n call storage_read;\n }\n\n func write{syscall_ptr: felt*, pedersen_ptr: HashBuiltin*, range_check_ptr}(value: felt) {\n let storage_addr = 0;\n call addr;\n call storage_write;\n }\n}", - "autogen/starknet/storage_var/_uris_len/impl.cairo": "namespace _uris_len {\n from starkware.starknet.common.storage import normalize_address\n from starkware.starknet.common.syscalls import storage_read, storage_write\n from starkware.cairo.common.cairo_builtins import HashBuiltin\n from starkware.cairo.common.hash import hash2\n\n func addr{pedersen_ptr: HashBuiltin*, range_check_ptr}() -> (res: felt) {\n let res = 229044657188318937485848726128489423070864388359829207310196805253187815124;\n return (res=res);\n }\n\n func read{syscall_ptr: felt*, pedersen_ptr: HashBuiltin*, range_check_ptr}() -> (res: felt) {\n let (storage_addr) = addr();\n let (__storage_var_temp0) = storage_read(address=storage_addr + 0);\n\n tempvar syscall_ptr = syscall_ptr;\n tempvar pedersen_ptr = pedersen_ptr;\n tempvar range_check_ptr = range_check_ptr;\n tempvar __storage_var_temp0: felt = __storage_var_temp0;\n return ([cast(&__storage_var_temp0, felt*)],);\n }\n\n func write{syscall_ptr: felt*, pedersen_ptr: HashBuiltin*, range_check_ptr}(value: felt) {\n let (storage_addr) = addr();\n storage_write(address=storage_addr + 0, value=[cast(&value, felt) + 0]);\n return ();\n }\n}" - }, - "instruction_locations": { - "0": { - "accessible_scopes": [ - "starkware.cairo.common.alloc", - "starkware.cairo.common.alloc.alloc" - ], - "flow_tracking_data": null, - "hints": [ - { - "location": { - "end_col": 38, - "end_line": 3, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/alloc.cairo" - }, - "start_col": 5, - "start_line": 3 - }, - "n_prefix_newlines": 0 - } - ], - "inst": { - "end_col": 12, - "end_line": 4, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/alloc.cairo" - }, - "start_col": 5, - "start_line": 4 - } - }, - "2": { - "accessible_scopes": [ - "starkware.cairo.common.alloc", - "starkware.cairo.common.alloc.alloc" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 40, - "end_line": 5, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/alloc.cairo" - }, - "start_col": 5, - "start_line": 5 - } - }, - "3": { - "accessible_scopes": [ - "starkware.cairo.common.hash", - "starkware.cairo.common.hash.hash2" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 19, - "end_line": 14, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/hash.cairo" - }, - "start_col": 5, - "start_line": 14 - } - }, - "4": { - "accessible_scopes": [ - "starkware.cairo.common.hash", - "starkware.cairo.common.hash.hash2" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 19, - "end_line": 15, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/hash.cairo" - }, - "start_col": 5, - "start_line": 15 - } - }, - "5": { - "accessible_scopes": [ - "starkware.cairo.common.hash", - "starkware.cairo.common.hash.hash2" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 47, - "end_line": 17, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/hash.cairo" - }, - "parent_location": [ - { - "end_col": 34, - "end_line": 13, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/hash.cairo" - }, - "parent_location": [ - { - "end_col": 28, - "end_line": 18, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/hash.cairo" - }, - "start_col": 5, - "start_line": 18 - }, - "While trying to retrieve the implicit argument 'hash_ptr' in:" - ], - "start_col": 12, - "start_line": 13 - }, - "While expanding the reference 'hash_ptr' in:" - ], - "start_col": 20, - "start_line": 17 - } - }, - "7": { - "accessible_scopes": [ - "starkware.cairo.common.hash", - "starkware.cairo.common.hash.hash2" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 33, - "end_line": 16, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/hash.cairo" - }, - "parent_location": [ - { - "end_col": 26, - "end_line": 18, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/hash.cairo" - }, - "start_col": 20, - "start_line": 18 - }, - "While expanding the reference 'result' in:" - ], - "start_col": 18, - "start_line": 16 - } - }, - "8": { - "accessible_scopes": [ - "starkware.cairo.common.hash", - "starkware.cairo.common.hash.hash2" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 28, - "end_line": 18, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/hash.cairo" - }, - "start_col": 5, - "start_line": 18 - } - }, - "9": { - "accessible_scopes": [ - "starkware.cairo.common.memcpy", - "starkware.cairo.common.memcpy.memcpy" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 7, - "end_line": 8, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/memcpy.cairo" - }, - "start_col": 5, - "start_line": 8 - } - }, - "11": { - "accessible_scopes": [ - "starkware.cairo.common.memcpy", - "starkware.cairo.common.memcpy.memcpy" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 19, - "end_line": 9, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/memcpy.cairo" - }, - "start_col": 9, - "start_line": 9 - } - }, - "12": { - "accessible_scopes": [ - "starkware.cairo.common.memcpy", - "starkware.cairo.common.memcpy.memcpy" - ], - "flow_tracking_data": null, - "hints": [ - { - "location": { - "end_col": 41, - "end_line": 12, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/memcpy.cairo" - }, - "start_col": 5, - "start_line": 12 - }, - "n_prefix_newlines": 0 - } - ], - "inst": { - "end_col": 23, - "end_line": 2, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/memcpy.cairo" - }, - "parent_location": [ - { - "end_col": 38, - "end_line": 13, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/memcpy.cairo" - }, - "start_col": 35, - "start_line": 13 - }, - "While expanding the reference 'dst' in:" - ], - "start_col": 13, - "start_line": 2 - } - }, - "13": { - "accessible_scopes": [ - "starkware.cairo.common.memcpy", - "starkware.cairo.common.memcpy.memcpy" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 35, - "end_line": 2, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/memcpy.cairo" - }, - "parent_location": [ - { - "end_col": 47, - "end_line": 13, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/memcpy.cairo" - }, - "start_col": 44, - "start_line": 13 - }, - "While expanding the reference 'src' in:" - ], - "start_col": 25, - "start_line": 2 - } - }, - "14": { - "accessible_scopes": [ - "starkware.cairo.common.memcpy", - "starkware.cairo.common.memcpy.memcpy" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 37, - "end_line": 17, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/memcpy.cairo" - }, - "start_col": 26, - "start_line": 17 - } - }, - "15": { - "accessible_scopes": [ - "starkware.cairo.common.memcpy", - "starkware.cairo.common.memcpy.memcpy" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 38, - "end_line": 17, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/memcpy.cairo" - }, - "start_col": 5, - "start_line": 17 - } - }, - "16": { - "accessible_scopes": [ - "starkware.cairo.common.memcpy", - "starkware.cairo.common.memcpy.memcpy" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 41, - "end_line": 22, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/memcpy.cairo" - }, - "start_col": 5, - "start_line": 22 - } - }, - "18": { - "accessible_scopes": [ - "starkware.cairo.common.memcpy", - "starkware.cairo.common.memcpy.memcpy" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 41, - "end_line": 23, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/memcpy.cairo" - }, - "start_col": 5, - "start_line": 23 - } - }, - "20": { - "accessible_scopes": [ - "starkware.cairo.common.memcpy", - "starkware.cairo.common.memcpy.memcpy" - ], - "flow_tracking_data": null, - "hints": [ - { - "location": { - "end_col": 7, - "end_line": 27, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/memcpy.cairo" - }, - "start_col": 5, - "start_line": 24 - }, - "n_prefix_newlines": 1 - } - ], - "inst": { - "end_col": 44, - "end_line": 29, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/memcpy.cairo" - }, - "start_col": 5, - "start_line": 29 - } - }, - "22": { - "accessible_scopes": [ - "starkware.cairo.common.memcpy", - "starkware.cairo.common.memcpy.memcpy" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 55, - "end_line": 31, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/memcpy.cairo" - }, - "start_col": 5, - "start_line": 31 - } - }, - "23": { - "accessible_scopes": [ - "starkware.cairo.common.memcpy", - "starkware.cairo.common.memcpy.memcpy" - ], - "flow_tracking_data": null, - "hints": [ - { - "location": { - "end_col": 26, - "end_line": 33, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/memcpy.cairo" - }, - "start_col": 5, - "start_line": 33 - }, - "n_prefix_newlines": 0 - } - ], - "inst": { - "end_col": 15, - "end_line": 34, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/memcpy.cairo" - }, - "start_col": 5, - "start_line": 34 - } - }, - "24": { - "accessible_scopes": [ - "starkware.cairo.lang.compiler.lib.registers", - "starkware.cairo.lang.compiler.lib.registers.get_fp_and_pc" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 73, - "end_line": 7, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/lang/compiler/lib/registers.cairo" - }, - "start_col": 5, - "start_line": 7 - } - }, - "25": { - "accessible_scopes": [ - "starkware.cairo.common.math", - "starkware.cairo.common.math.assert_not_zero" - ], - "flow_tracking_data": null, - "hints": [ - { - "location": { - "end_col": 7, - "end_line": 11, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/math.cairo" - }, - "start_col": 5, - "start_line": 7 - }, - "n_prefix_newlines": 1 - } - ], - "inst": { - "end_col": 7, - "end_line": 12, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/math.cairo" - }, - "start_col": 5, - "start_line": 12 - } - }, - "27": { - "accessible_scopes": [ - "starkware.cairo.common.math", - "starkware.cairo.common.math.assert_not_zero" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 18, - "end_line": 14, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/math.cairo" - }, - "start_col": 9, - "start_line": 14 - } - }, - "29": { - "accessible_scopes": [ - "starkware.cairo.common.math", - "starkware.cairo.common.math.assert_not_zero" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 15, - "end_line": 17, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/math.cairo" - }, - "start_col": 5, - "start_line": 17 - } - }, - "30": { - "accessible_scopes": [ - "starkware.cairo.common.math", - "starkware.cairo.common.math.assert_nn" - ], - "flow_tracking_data": null, - "hints": [ - { - "location": { - "end_col": 7, - "end_line": 46, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/math.cairo" - }, - "start_col": 5, - "start_line": 42 - }, - "n_prefix_newlines": 1 - } - ], - "inst": { - "end_col": 26, - "end_line": 47, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/math.cairo" - }, - "start_col": 5, - "start_line": 47 - } - }, - "31": { - "accessible_scopes": [ - "starkware.cairo.common.math", - "starkware.cairo.common.math.assert_nn" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 46, - "end_line": 48, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/math.cairo" - }, - "parent_location": [ - { - "end_col": 31, - "end_line": 41, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/math.cairo" - }, - "parent_location": [ - { - "end_col": 15, - "end_line": 49, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/math.cairo" - }, - "start_col": 5, - "start_line": 49 - }, - "While trying to retrieve the implicit argument 'range_check_ptr' in:" - ], - "start_col": 16, - "start_line": 41 - }, - "While expanding the reference 'range_check_ptr' in:" - ], - "start_col": 27, - "start_line": 48 - } - }, - "33": { - "accessible_scopes": [ - "starkware.cairo.common.math", - "starkware.cairo.common.math.assert_nn" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 15, - "end_line": 49, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/math.cairo" - }, - "start_col": 5, - "start_line": 49 - } - }, - "34": { - "accessible_scopes": [ - "starkware.cairo.common.math", - "starkware.cairo.common.math.assert_le" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 31, - "end_line": 53, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/math.cairo" - }, - "parent_location": [ - { - "end_col": 31, - "end_line": 41, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/math.cairo" - }, - "parent_location": [ - { - "end_col": 21, - "end_line": 54, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/math.cairo" - }, - "start_col": 5, - "start_line": 54 - }, - "While trying to retrieve the implicit argument 'range_check_ptr' in:" - ], - "start_col": 16, - "start_line": 41 - }, - "While expanding the reference 'range_check_ptr' in:" - ], - "start_col": 16, - "start_line": 53 - } - }, - "35": { - "accessible_scopes": [ - "starkware.cairo.common.math", - "starkware.cairo.common.math.assert_le" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 20, - "end_line": 54, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/math.cairo" - }, - "start_col": 15, - "start_line": 54 - } - }, - "36": { - "accessible_scopes": [ - "starkware.cairo.common.math", - "starkware.cairo.common.math.assert_le" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 21, - "end_line": 54, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/math.cairo" - }, - "start_col": 5, - "start_line": 54 - } - }, - "38": { - "accessible_scopes": [ - "starkware.cairo.common.math", - "starkware.cairo.common.math.assert_le" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 15, - "end_line": 55, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/math.cairo" - }, - "start_col": 5, - "start_line": 55 - } - }, - "39": { - "accessible_scopes": [ - "starkware.cairo.common.math", - "starkware.cairo.common.math.assert_250_bit" - ], - "flow_tracking_data": null, - "hints": [ - { - "location": { - "end_col": 7, - "end_line": 106, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/math.cairo" - }, - "start_col": 5, - "start_line": 97 - }, - "n_prefix_newlines": 1 - } - ], - "inst": { - "end_col": 50, - "end_line": 108, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/math.cairo" - }, - "start_col": 36, - "start_line": 108 - } - }, - "41": { - "accessible_scopes": [ - "starkware.cairo.common.math", - "starkware.cairo.common.math.assert_250_bit" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 37, - "end_line": 95, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/math.cairo" - }, - "parent_location": [ - { - "end_col": 57, - "end_line": 108, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/math.cairo" - }, - "start_col": 53, - "start_line": 108 - }, - "While expanding the reference 'high' in:" - ], - "start_col": 16, - "start_line": 95 - } - }, - "42": { - "accessible_scopes": [ - "starkware.cairo.common.math", - "starkware.cairo.common.math.assert_250_bit" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 57, - "end_line": 108, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/math.cairo" - }, - "start_col": 36, - "start_line": 108 - } - }, - "43": { - "accessible_scopes": [ - "starkware.cairo.common.math", - "starkware.cairo.common.math.assert_250_bit" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 58, - "end_line": 108, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/math.cairo" - }, - "start_col": 5, - "start_line": 108 - } - }, - "44": { - "accessible_scopes": [ - "starkware.cairo.common.math", - "starkware.cairo.common.math.assert_250_bit" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 37, - "end_line": 95, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/math.cairo" - }, - "parent_location": [ - { - "end_col": 24, - "end_line": 113, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/math.cairo" - }, - "start_col": 20, - "start_line": 113 - }, - "While expanding the reference 'high' in:" - ], - "start_col": 16, - "start_line": 95 - } - }, - "45": { - "accessible_scopes": [ - "starkware.cairo.common.math", - "starkware.cairo.common.math.assert_250_bit" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 32, - "end_line": 113, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/math.cairo" - }, - "start_col": 20, - "start_line": 113 - } - }, - "47": { - "accessible_scopes": [ - "starkware.cairo.common.math", - "starkware.cairo.common.math.assert_250_bit" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 32, - "end_line": 94, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/math.cairo" - }, - "parent_location": [ - { - "end_col": 38, - "end_line": 113, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/math.cairo" - }, - "start_col": 35, - "start_line": 113 - }, - "While expanding the reference 'low' in:" - ], - "start_col": 15, - "start_line": 94 - } - }, - "48": { - "accessible_scopes": [ - "starkware.cairo.common.math", - "starkware.cairo.common.math.assert_250_bit" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 39, - "end_line": 113, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/math.cairo" - }, - "start_col": 5, - "start_line": 113 - } - }, - "49": { - "accessible_scopes": [ - "starkware.cairo.common.math", - "starkware.cairo.common.math.assert_250_bit" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 46, - "end_line": 115, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/math.cairo" - }, - "parent_location": [ - { - "end_col": 36, - "end_line": 89, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/math.cairo" - }, - "parent_location": [ - { - "end_col": 15, - "end_line": 116, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/math.cairo" - }, - "start_col": 5, - "start_line": 116 - }, - "While trying to retrieve the implicit argument 'range_check_ptr' in:" - ], - "start_col": 21, - "start_line": 89 - }, - "While expanding the reference 'range_check_ptr' in:" - ], - "start_col": 27, - "start_line": 115 - } - }, - "51": { - "accessible_scopes": [ - "starkware.cairo.common.math", - "starkware.cairo.common.math.assert_250_bit" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 15, - "end_line": 116, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/math.cairo" - }, - "start_col": 5, - "start_line": 116 - } - }, - "52": { - "accessible_scopes": [ - "starkware.cairo.common.math", - "starkware.cairo.common.math.split_felt" - ], - "flow_tracking_data": null, - "hints": [ - { - "location": { - "end_col": 7, - "end_line": 141, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/math.cairo" - }, - "start_col": 5, - "start_line": 134 - }, - "n_prefix_newlines": 1 - } - ], - "inst": { - "end_col": 37, - "end_line": 131, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/math.cairo" - }, - "parent_location": [ - { - "end_col": 24, - "end_line": 142, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/math.cairo" - }, - "start_col": 20, - "start_line": 142 - }, - "While expanding the reference 'high' in:" - ], - "start_col": 16, - "start_line": 131 - } - }, - "53": { - "accessible_scopes": [ - "starkware.cairo.common.math", - "starkware.cairo.common.math.split_felt" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 37, - "end_line": 142, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/math.cairo" - }, - "start_col": 20, - "start_line": 142 - } - }, - "55": { - "accessible_scopes": [ - "starkware.cairo.common.math", - "starkware.cairo.common.math.split_felt" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 32, - "end_line": 130, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/math.cairo" - }, - "parent_location": [ - { - "end_col": 43, - "end_line": 142, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/math.cairo" - }, - "start_col": 40, - "start_line": 142 - }, - "While expanding the reference 'low' in:" - ], - "start_col": 15, - "start_line": 130 - } - }, - "56": { - "accessible_scopes": [ - "starkware.cairo.common.math", - "starkware.cairo.common.math.split_felt" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 44, - "end_line": 142, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/math.cairo" - }, - "start_col": 5, - "start_line": 142 - } - }, - "57": { - "accessible_scopes": [ - "starkware.cairo.common.math", - "starkware.cairo.common.math.split_felt" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 37, - "end_line": 131, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/math.cairo" - }, - "parent_location": [ - { - "end_col": 13, - "end_line": 143, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/math.cairo" - }, - "start_col": 9, - "start_line": 143 - }, - "While expanding the reference 'high' in:" - ], - "start_col": 16, - "start_line": 131 - } - }, - "58": { - "accessible_scopes": [ - "starkware.cairo.common.math", - "starkware.cairo.common.math.split_felt" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 25, - "end_line": 143, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/math.cairo" - }, - "start_col": 9, - "start_line": 143 - } - }, - "60": { - "accessible_scopes": [ - "starkware.cairo.common.math", - "starkware.cairo.common.math.split_felt" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 7, - "end_line": 143, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/math.cairo" - }, - "start_col": 5, - "start_line": 143 - } - }, - "62": { - "accessible_scopes": [ - "starkware.cairo.common.math", - "starkware.cairo.common.math.split_felt" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 46, - "end_line": 132, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/math.cairo" - }, - "parent_location": [ - { - "end_col": 31, - "end_line": 53, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/math.cairo" - }, - "parent_location": [ - { - "end_col": 32, - "end_line": 144, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/math.cairo" - }, - "start_col": 9, - "start_line": 144 - }, - "While trying to retrieve the implicit argument 'range_check_ptr' in:" - ], - "start_col": 16, - "start_line": 53 - }, - "While expanding the reference 'range_check_ptr' in:" - ], - "start_col": 27, - "start_line": 132 - } - }, - "64": { - "accessible_scopes": [ - "starkware.cairo.common.math", - "starkware.cairo.common.math.split_felt" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 32, - "end_line": 130, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/math.cairo" - }, - "parent_location": [ - { - "end_col": 22, - "end_line": 144, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/math.cairo" - }, - "start_col": 19, - "start_line": 144 - }, - "While expanding the reference 'low' in:" - ], - "start_col": 15, - "start_line": 130 - } - }, - "65": { - "accessible_scopes": [ - "starkware.cairo.common.math", - "starkware.cairo.common.math.split_felt" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 31, - "end_line": 144, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/math.cairo" - }, - "start_col": 24, - "start_line": 144 - } - }, - "67": { - "accessible_scopes": [ - "starkware.cairo.common.math", - "starkware.cairo.common.math.split_felt" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 32, - "end_line": 144, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/math.cairo" - }, - "start_col": 9, - "start_line": 144 - } - }, - "69": { - "accessible_scopes": [ - "starkware.cairo.common.math", - "starkware.cairo.common.math.split_felt" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 7, - "end_line": 143, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/math.cairo" - }, - "start_col": 5, - "start_line": 143 - } - }, - "71": { - "accessible_scopes": [ - "starkware.cairo.common.math", - "starkware.cairo.common.math.split_felt" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 46, - "end_line": 132, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/math.cairo" - }, - "parent_location": [ - { - "end_col": 31, - "end_line": 53, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/math.cairo" - }, - "parent_location": [ - { - "end_col": 38, - "end_line": 146, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/math.cairo" - }, - "start_col": 9, - "start_line": 146 - }, - "While trying to retrieve the implicit argument 'range_check_ptr' in:" - ], - "start_col": 16, - "start_line": 53 - }, - "While expanding the reference 'range_check_ptr' in:" - ], - "start_col": 27, - "start_line": 132 - } - }, - "73": { - "accessible_scopes": [ - "starkware.cairo.common.math", - "starkware.cairo.common.math.split_felt" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 37, - "end_line": 131, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/math.cairo" - }, - "parent_location": [ - { - "end_col": 23, - "end_line": 146, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/math.cairo" - }, - "start_col": 19, - "start_line": 146 - }, - "While expanding the reference 'high' in:" - ], - "start_col": 16, - "start_line": 131 - } - }, - "74": { - "accessible_scopes": [ - "starkware.cairo.common.math", - "starkware.cairo.common.math.split_felt" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 37, - "end_line": 146, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/math.cairo" - }, - "start_col": 25, - "start_line": 146 - } - }, - "76": { - "accessible_scopes": [ - "starkware.cairo.common.math", - "starkware.cairo.common.math.split_felt" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 38, - "end_line": 146, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/math.cairo" - }, - "start_col": 9, - "start_line": 146 - } - }, - "78": { - "accessible_scopes": [ - "starkware.cairo.common.math", - "starkware.cairo.common.math.split_felt" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 37, - "end_line": 131, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/math.cairo" - }, - "parent_location": [ - { - "end_col": 22, - "end_line": 148, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/math.cairo" - }, - "start_col": 18, - "start_line": 148 - }, - "While expanding the reference 'high' in:" - ], - "start_col": 16, - "start_line": 131 - } - }, - "79": { - "accessible_scopes": [ - "starkware.cairo.common.math", - "starkware.cairo.common.math.split_felt" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 32, - "end_line": 130, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/math.cairo" - }, - "parent_location": [ - { - "end_col": 31, - "end_line": 148, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/math.cairo" - }, - "start_col": 28, - "start_line": 148 - }, - "While expanding the reference 'low' in:" - ], - "start_col": 15, - "start_line": 130 - } - }, - "80": { - "accessible_scopes": [ - "starkware.cairo.common.math", - "starkware.cairo.common.math.split_felt" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 33, - "end_line": 148, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/math.cairo" - }, - "start_col": 5, - "start_line": 148 - } - }, - "81": { - "accessible_scopes": [ - "starkware.cairo.common.math", - "starkware.cairo.common.math.assert_le_felt" - ], - "flow_tracking_data": null, - "hints": [ - { - "location": { - "end_col": 7, - "end_line": 184, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/math.cairo" - }, - "start_col": 5, - "start_line": 164 - }, - "n_prefix_newlines": 1 - } - ], - "inst": { - "end_col": 42, - "end_line": 186, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/math.cairo" - }, - "start_col": 25, - "start_line": 186 - } - }, - "82": { - "accessible_scopes": [ - "starkware.cairo.common.math", - "starkware.cairo.common.math.assert_le_felt" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 66, - "end_line": 186, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/math.cairo" - }, - "start_col": 45, - "start_line": 186 - } - }, - "83": { - "accessible_scopes": [ - "starkware.cairo.common.math", - "starkware.cairo.common.math.assert_le_felt" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 86, - "end_line": 186, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/math.cairo" - }, - "start_col": 45, - "start_line": 186 - } - }, - "85": { - "accessible_scopes": [ - "starkware.cairo.common.math", - "starkware.cairo.common.math.assert_le_felt" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 86, - "end_line": 186, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/math.cairo" - }, - "start_col": 25, - "start_line": 186 - } - }, - "86": { - "accessible_scopes": [ - "starkware.cairo.common.math", - "starkware.cairo.common.math.assert_le_felt" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 45, - "end_line": 187, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/math.cairo" - }, - "start_col": 24, - "start_line": 187 - } - }, - "87": { - "accessible_scopes": [ - "starkware.cairo.common.math", - "starkware.cairo.common.math.assert_le_felt" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 69, - "end_line": 187, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/math.cairo" - }, - "start_col": 48, - "start_line": 187 - } - }, - "88": { - "accessible_scopes": [ - "starkware.cairo.common.math", - "starkware.cairo.common.math.assert_le_felt" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 89, - "end_line": 187, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/math.cairo" - }, - "start_col": 48, - "start_line": 187 - } - }, - "90": { - "accessible_scopes": [ - "starkware.cairo.common.math", - "starkware.cairo.common.math.assert_le_felt" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 89, - "end_line": 187, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/math.cairo" - }, - "start_col": 24, - "start_line": 187 - } - }, - "91": { - "accessible_scopes": [ - "starkware.cairo.common.math", - "starkware.cairo.common.math.assert_le_felt" - ], - "flow_tracking_data": null, - "hints": [ - { - "location": { - "end_col": 49, - "end_line": 196, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/math.cairo" - }, - "start_col": 5, - "start_line": 196 - }, - "n_prefix_newlines": 0 - } - ], - "inst": { - "end_col": 42, - "end_line": 197, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/math.cairo" - }, - "start_col": 5, - "start_line": 197 - } - }, - "93": { - "accessible_scopes": [ - "starkware.cairo.common.math", - "starkware.cairo.common.math.assert_le_felt" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 25, - "end_line": 198, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/math.cairo" - }, - "start_col": 23, - "start_line": 198 - } - }, - "95": { - "accessible_scopes": [ - "starkware.cairo.common.math", - "starkware.cairo.common.math.assert_le_felt" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 30, - "end_line": 198, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/math.cairo" - }, - "start_col": 22, - "start_line": 198 - } - }, - "96": { - "accessible_scopes": [ - "starkware.cairo.common.math", - "starkware.cairo.common.math.assert_le_felt" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 31, - "end_line": 198, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/math.cairo" - }, - "start_col": 5, - "start_line": 198 - } - }, - "97": { - "accessible_scopes": [ - "starkware.cairo.common.math", - "starkware.cairo.common.math.assert_le_felt" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 29, - "end_line": 199, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/math.cairo" - }, - "start_col": 24, - "start_line": 199 - } - }, - "98": { - "accessible_scopes": [ - "starkware.cairo.common.math", - "starkware.cairo.common.math.assert_le_felt" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 39, - "end_line": 199, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/math.cairo" - }, - "start_col": 34, - "start_line": 199 - } - }, - "100": { - "accessible_scopes": [ - "starkware.cairo.common.math", - "starkware.cairo.common.math.assert_le_felt" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 40, - "end_line": 199, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/math.cairo" - }, - "start_col": 23, - "start_line": 199 - } - }, - "101": { - "accessible_scopes": [ - "starkware.cairo.common.math", - "starkware.cairo.common.math.assert_le_felt" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 41, - "end_line": 199, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/math.cairo" - }, - "start_col": 5, - "start_line": 199 - } - }, - "102": { - "accessible_scopes": [ - "starkware.cairo.common.math", - "starkware.cairo.common.math.assert_le_felt" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 46, - "end_line": 188, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/math.cairo" - }, - "parent_location": [ - { - "end_col": 36, - "end_line": 154, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/math.cairo" - }, - "parent_location": [ - { - "end_col": 15, - "end_line": 200, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/math.cairo" - }, - "start_col": 5, - "start_line": 200 - }, - "While trying to retrieve the implicit argument 'range_check_ptr' in:" - ], - "start_col": 21, - "start_line": 154 - }, - "While expanding the reference 'range_check_ptr' in:" - ], - "start_col": 27, - "start_line": 188 - } - }, - "104": { - "accessible_scopes": [ - "starkware.cairo.common.math", - "starkware.cairo.common.math.assert_le_felt" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 15, - "end_line": 200, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/math.cairo" - }, - "start_col": 5, - "start_line": 200 - } - }, - "105": { - "accessible_scopes": [ - "starkware.cairo.common.math", - "starkware.cairo.common.math.assert_le_felt" - ], - "flow_tracking_data": null, - "hints": [ - { - "location": { - "end_col": 49, - "end_line": 204, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/math.cairo" - }, - "start_col": 5, - "start_line": 204 - }, - "n_prefix_newlines": 0 - } - ], - "inst": { - "end_col": 50, - "end_line": 205, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/math.cairo" - }, - "start_col": 5, - "start_line": 205 - } - }, - "107": { - "accessible_scopes": [ - "starkware.cairo.common.math", - "starkware.cairo.common.math.assert_le_felt" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 23, - "end_line": 206, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/math.cairo" - }, - "start_col": 21, - "start_line": 206 - } - }, - "109": { - "accessible_scopes": [ - "starkware.cairo.common.math", - "starkware.cairo.common.math.assert_le_felt" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 28, - "end_line": 206, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/math.cairo" - }, - "start_col": 20, - "start_line": 206 - } - }, - "110": { - "accessible_scopes": [ - "starkware.cairo.common.math", - "starkware.cairo.common.math.assert_le_felt" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 30, - "end_line": 207, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/math.cairo" - }, - "start_col": 22, - "start_line": 207 - } - }, - "111": { - "accessible_scopes": [ - "starkware.cairo.common.math", - "starkware.cairo.common.math.assert_le_felt" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 31, - "end_line": 207, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/math.cairo" - }, - "start_col": 5, - "start_line": 207 - } - }, - "112": { - "accessible_scopes": [ - "starkware.cairo.common.math", - "starkware.cairo.common.math.assert_le_felt" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 31, - "end_line": 208, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/math.cairo" - }, - "start_col": 23, - "start_line": 208 - } - }, - "113": { - "accessible_scopes": [ - "starkware.cairo.common.math", - "starkware.cairo.common.math.assert_le_felt" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 32, - "end_line": 208, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/math.cairo" - }, - "start_col": 5, - "start_line": 208 - } - }, - "114": { - "accessible_scopes": [ - "starkware.cairo.common.math", - "starkware.cairo.common.math.assert_le_felt" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 46, - "end_line": 188, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/math.cairo" - }, - "parent_location": [ - { - "end_col": 36, - "end_line": 154, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/math.cairo" - }, - "parent_location": [ - { - "end_col": 15, - "end_line": 209, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/math.cairo" - }, - "start_col": 5, - "start_line": 209 - }, - "While trying to retrieve the implicit argument 'range_check_ptr' in:" - ], - "start_col": 21, - "start_line": 154 - }, - "While expanding the reference 'range_check_ptr' in:" - ], - "start_col": 27, - "start_line": 188 - } - }, - "116": { - "accessible_scopes": [ - "starkware.cairo.common.math", - "starkware.cairo.common.math.assert_le_felt" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 15, - "end_line": 209, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/math.cairo" - }, - "start_col": 5, - "start_line": 209 - } - }, - "117": { - "accessible_scopes": [ - "starkware.cairo.common.math", - "starkware.cairo.common.math.assert_le_felt" - ], - "flow_tracking_data": null, - "hints": [ - { - "location": { - "end_col": 31, - "end_line": 213, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/math.cairo" - }, - "start_col": 5, - "start_line": 213 - }, - "n_prefix_newlines": 0 - } - ], - "inst": { - "end_col": 24, - "end_line": 214, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/math.cairo" - }, - "start_col": 5, - "start_line": 214 - } - }, - "118": { - "accessible_scopes": [ - "starkware.cairo.common.math", - "starkware.cairo.common.math.assert_le_felt" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 33, - "end_line": 215, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/math.cairo" - }, - "start_col": 28, - "start_line": 215 - } - }, - "119": { - "accessible_scopes": [ - "starkware.cairo.common.math", - "starkware.cairo.common.math.assert_le_felt" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 34, - "end_line": 215, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/math.cairo" - }, - "start_col": 23, - "start_line": 215 - } - }, - "120": { - "accessible_scopes": [ - "starkware.cairo.common.math", - "starkware.cairo.common.math.assert_le_felt" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 35, - "end_line": 215, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/math.cairo" - }, - "start_col": 5, - "start_line": 215 - } - }, - "121": { - "accessible_scopes": [ - "starkware.cairo.common.math", - "starkware.cairo.common.math.assert_le_felt" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 12, - "end_line": 216, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/math.cairo" - }, - "start_col": 5, - "start_line": 216 - } - }, - "123": { - "accessible_scopes": [ - "starkware.cairo.common.math", - "starkware.cairo.common.math.assert_le_felt" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 46, - "end_line": 188, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/math.cairo" - }, - "parent_location": [ - { - "end_col": 36, - "end_line": 154, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/math.cairo" - }, - "parent_location": [ - { - "end_col": 15, - "end_line": 217, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/math.cairo" - }, - "start_col": 5, - "start_line": 217 - }, - "While trying to retrieve the implicit argument 'range_check_ptr' in:" - ], - "start_col": 21, - "start_line": 154 - }, - "While expanding the reference 'range_check_ptr' in:" - ], - "start_col": 27, - "start_line": 188 - } - }, - "125": { - "accessible_scopes": [ - "starkware.cairo.common.math", - "starkware.cairo.common.math.assert_le_felt" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 15, - "end_line": 217, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/math.cairo" - }, - "start_col": 5, - "start_line": 217 - } - }, - "126": { - "accessible_scopes": [ - "starkware.cairo.common.math", - "starkware.cairo.common.math.abs_value" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 31, - "end_line": 243, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/math.cairo" - }, - "start_col": 5, - "start_line": 243 - } - }, - "128": { - "accessible_scopes": [ - "starkware.cairo.common.math", - "starkware.cairo.common.math.abs_value" - ], - "flow_tracking_data": null, - "hints": [ - { - "location": { - "end_col": 7, - "end_line": 248, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/math.cairo" - }, - "start_col": 5, - "start_line": 244 - }, - "n_prefix_newlines": 1 - } - ], - "inst": { - "end_col": 7, - "end_line": 249, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/math.cairo" - }, - "start_col": 5, - "start_line": 249 - } - }, - "130": { - "accessible_scopes": [ - "starkware.cairo.common.math", - "starkware.cairo.common.math.abs_value" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 58, - "end_line": 250, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/math.cairo" - }, - "start_col": 39, - "start_line": 250 - } - }, - "132": { - "accessible_scopes": [ - "starkware.cairo.common.math", - "starkware.cairo.common.math.abs_value" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 41, - "end_line": 251, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/math.cairo" - }, - "start_col": 29, - "start_line": 251 - } - }, - "134": { - "accessible_scopes": [ - "starkware.cairo.common.math", - "starkware.cairo.common.math.abs_value" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 38, - "end_line": 252, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/math.cairo" - }, - "start_col": 9, - "start_line": 252 - } - }, - "135": { - "accessible_scopes": [ - "starkware.cairo.common.math", - "starkware.cairo.common.math.abs_value" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 26, - "end_line": 254, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/math.cairo" - }, - "start_col": 9, - "start_line": 254 - } - }, - "136": { - "accessible_scopes": [ - "starkware.cairo.common.math", - "starkware.cairo.common.math.abs_value" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 34, - "end_line": 256, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/math.cairo" - }, - "start_col": 9, - "start_line": 256 - } - }, - "137": { - "accessible_scopes": [ - "starkware.cairo.common.math", - "starkware.cairo.common.math.abs_value" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 50, - "end_line": 257, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/math.cairo" - }, - "parent_location": [ - { - "end_col": 31, - "end_line": 242, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/math.cairo" - }, - "parent_location": [ - { - "end_col": 22, - "end_line": 258, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/math.cairo" - }, - "start_col": 9, - "start_line": 258 - }, - "While trying to retrieve the implicit argument 'range_check_ptr' in:" - ], - "start_col": 16, - "start_line": 242 - }, - "While expanding the reference 'range_check_ptr' in:" - ], - "start_col": 31, - "start_line": 257 - } - }, - "139": { - "accessible_scopes": [ - "starkware.cairo.common.math", - "starkware.cairo.common.math.abs_value" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 38, - "end_line": 242, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/math.cairo" - }, - "parent_location": [ - { - "end_col": 21, - "end_line": 258, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/math.cairo" - }, - "start_col": 16, - "start_line": 258 - }, - "While expanding the reference 'value' in:" - ], - "start_col": 33, - "start_line": 242 - } - }, - "140": { - "accessible_scopes": [ - "starkware.cairo.common.math", - "starkware.cairo.common.math.abs_value" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 22, - "end_line": 258, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/math.cairo" - }, - "start_col": 9, - "start_line": 258 - } - }, - "141": { - "accessible_scopes": [ - "starkware.cairo.common.math", - "starkware.cairo.common.math.sign" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 7, - "end_line": 266, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/math.cairo" - }, - "start_col": 5, - "start_line": 266 - } - }, - "143": { - "accessible_scopes": [ - "starkware.cairo.common.math", - "starkware.cairo.common.math.sign" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 16, - "end_line": 267, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/math.cairo" - }, - "start_col": 9, - "start_line": 267 - } - }, - "145": { - "accessible_scopes": [ - "starkware.cairo.common.math", - "starkware.cairo.common.math.sign" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 26, - "end_line": 265, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/math.cairo" - }, - "parent_location": [ - { - "end_col": 26, - "end_line": 265, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/math.cairo" - }, - "parent_location": [ - { - "end_col": 18, - "end_line": 268, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/math.cairo" - }, - "start_col": 9, - "start_line": 268 - }, - "While trying to retrieve the implicit argument 'range_check_ptr' in:" - ], - "start_col": 11, - "start_line": 265 - }, - "While expanding the reference 'range_check_ptr' in:" - ], - "start_col": 11, - "start_line": 265 - } - }, - "146": { - "accessible_scopes": [ - "starkware.cairo.common.math", - "starkware.cairo.common.math.sign" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 17, - "end_line": 268, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/math.cairo" - }, - "start_col": 16, - "start_line": 268 - } - }, - "148": { - "accessible_scopes": [ - "starkware.cairo.common.math", - "starkware.cairo.common.math.sign" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 18, - "end_line": 268, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/math.cairo" - }, - "start_col": 9, - "start_line": 268 - } - }, - "149": { - "accessible_scopes": [ - "starkware.cairo.common.math", - "starkware.cairo.common.math.sign" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 31, - "end_line": 271, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/math.cairo" - }, - "start_col": 5, - "start_line": 271 - } - }, - "151": { - "accessible_scopes": [ - "starkware.cairo.common.math", - "starkware.cairo.common.math.sign" - ], - "flow_tracking_data": null, - "hints": [ - { - "location": { - "end_col": 7, - "end_line": 276, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/math.cairo" - }, - "start_col": 5, - "start_line": 272 - }, - "n_prefix_newlines": 1 - } - ], - "inst": { - "end_col": 7, - "end_line": 277, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/math.cairo" - }, - "start_col": 5, - "start_line": 277 - } - }, - "153": { - "accessible_scopes": [ - "starkware.cairo.common.math", - "starkware.cairo.common.math.sign" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 48, - "end_line": 278, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/math.cairo" - }, - "start_col": 36, - "start_line": 278 - } - }, - "155": { - "accessible_scopes": [ - "starkware.cairo.common.math", - "starkware.cairo.common.math.sign" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 49, - "end_line": 278, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/math.cairo" - }, - "start_col": 9, - "start_line": 278 - } - }, - "156": { - "accessible_scopes": [ - "starkware.cairo.common.math", - "starkware.cairo.common.math.sign" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 50, - "end_line": 279, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/math.cairo" - }, - "parent_location": [ - { - "end_col": 26, - "end_line": 265, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/math.cairo" - }, - "parent_location": [ - { - "end_col": 19, - "end_line": 280, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/math.cairo" - }, - "start_col": 9, - "start_line": 280 - }, - "While trying to retrieve the implicit argument 'range_check_ptr' in:" - ], - "start_col": 11, - "start_line": 265 - }, - "While expanding the reference 'range_check_ptr' in:" - ], - "start_col": 31, - "start_line": 279 - } - }, - "158": { - "accessible_scopes": [ - "starkware.cairo.common.math", - "starkware.cairo.common.math.sign" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 18, - "end_line": 280, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/math.cairo" - }, - "start_col": 16, - "start_line": 280 - } - }, - "160": { - "accessible_scopes": [ - "starkware.cairo.common.math", - "starkware.cairo.common.math.sign" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 19, - "end_line": 280, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/math.cairo" - }, - "start_col": 9, - "start_line": 280 - } - }, - "161": { - "accessible_scopes": [ - "starkware.cairo.common.math", - "starkware.cairo.common.math.sign" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 16, - "end_line": 282, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/math.cairo" - }, - "start_col": 9, - "start_line": 282 - } - }, - "163": { - "accessible_scopes": [ - "starkware.cairo.common.math", - "starkware.cairo.common.math.sign" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 34, - "end_line": 283, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/math.cairo" - }, - "start_col": 9, - "start_line": 283 - } - }, - "164": { - "accessible_scopes": [ - "starkware.cairo.common.math", - "starkware.cairo.common.math.sign" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 50, - "end_line": 284, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/math.cairo" - }, - "parent_location": [ - { - "end_col": 26, - "end_line": 265, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/math.cairo" - }, - "parent_location": [ - { - "end_col": 18, - "end_line": 285, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/math.cairo" - }, - "start_col": 9, - "start_line": 285 - }, - "While trying to retrieve the implicit argument 'range_check_ptr' in:" - ], - "start_col": 11, - "start_line": 265 - }, - "While expanding the reference 'range_check_ptr' in:" - ], - "start_col": 31, - "start_line": 284 - } - }, - "166": { - "accessible_scopes": [ - "starkware.cairo.common.math", - "starkware.cairo.common.math.sign" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 17, - "end_line": 285, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/math.cairo" - }, - "start_col": 16, - "start_line": 285 - } - }, - "168": { - "accessible_scopes": [ - "starkware.cairo.common.math", - "starkware.cairo.common.math.sign" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 18, - "end_line": 285, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/math.cairo" - }, - "start_col": 9, - "start_line": 285 - } - }, - "169": { - "accessible_scopes": [ - "starkware.cairo.common.math", - "starkware.cairo.common.math.unsigned_div_rem" - ], - "flow_tracking_data": null, - "hints": [ - { - "location": { - "end_col": 7, - "end_line": 307, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/math.cairo" - }, - "start_col": 5, - "start_line": 301 - }, - "n_prefix_newlines": 1 - } - ], - "inst": { - "end_col": 46, - "end_line": 300, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/math.cairo" - }, - "parent_location": [ - { - "end_col": 31, - "end_line": 53, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/math.cairo" - }, - "parent_location": [ - { - "end_col": 26, - "end_line": 308, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/math.cairo" - }, - "start_col": 5, - "start_line": 308 - }, - "While trying to retrieve the implicit argument 'range_check_ptr' in:" - ], - "start_col": 16, - "start_line": 53 - }, - "While expanding the reference 'range_check_ptr' in:" - ], - "start_col": 27, - "start_line": 300 - } - }, - "171": { - "accessible_scopes": [ - "starkware.cairo.common.math", - "starkware.cairo.common.math.unsigned_div_rem" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 30, - "end_line": 298, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/math.cairo" - }, - "parent_location": [ - { - "end_col": 16, - "end_line": 308, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/math.cairo" - }, - "start_col": 15, - "start_line": 308 - }, - "While expanding the reference 'r' in:" - ], - "start_col": 13, - "start_line": 298 - } - }, - "172": { - "accessible_scopes": [ - "starkware.cairo.common.math", - "starkware.cairo.common.math.unsigned_div_rem" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 25, - "end_line": 308, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/math.cairo" - }, - "start_col": 18, - "start_line": 308 - } - }, - "174": { - "accessible_scopes": [ - "starkware.cairo.common.math", - "starkware.cairo.common.math.unsigned_div_rem" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 26, - "end_line": 308, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/math.cairo" - }, - "start_col": 5, - "start_line": 308 - } - }, - "176": { - "accessible_scopes": [ - "starkware.cairo.common.math", - "starkware.cairo.common.math.unsigned_div_rem" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 34, - "end_line": 299, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/math.cairo" - }, - "parent_location": [ - { - "end_col": 21, - "end_line": 310, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/math.cairo" - }, - "start_col": 20, - "start_line": 310 - }, - "While expanding the reference 'q' in:" - ], - "start_col": 13, - "start_line": 299 - } - }, - "177": { - "accessible_scopes": [ - "starkware.cairo.common.math", - "starkware.cairo.common.math.unsigned_div_rem" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 27, - "end_line": 310, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/math.cairo" - }, - "start_col": 20, - "start_line": 310 - } - }, - "178": { - "accessible_scopes": [ - "starkware.cairo.common.math", - "starkware.cairo.common.math.unsigned_div_rem" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 30, - "end_line": 298, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/math.cairo" - }, - "parent_location": [ - { - "end_col": 31, - "end_line": 310, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/math.cairo" - }, - "start_col": 30, - "start_line": 310 - }, - "While expanding the reference 'r' in:" - ], - "start_col": 13, - "start_line": 298 - } - }, - "179": { - "accessible_scopes": [ - "starkware.cairo.common.math", - "starkware.cairo.common.math.unsigned_div_rem" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 32, - "end_line": 310, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/math.cairo" - }, - "start_col": 5, - "start_line": 310 - } - }, - "180": { - "accessible_scopes": [ - "starkware.cairo.common.math", - "starkware.cairo.common.math.unsigned_div_rem" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 31, - "end_line": 53, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/math.cairo" - }, - "parent_location": [ - { - "end_col": 26, - "end_line": 308, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/math.cairo" - }, - "parent_location": [ - { - "end_col": 38, - "end_line": 297, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/math.cairo" - }, - "parent_location": [ - { - "end_col": 19, - "end_line": 311, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/math.cairo" - }, - "start_col": 5, - "start_line": 311 - }, - "While trying to retrieve the implicit argument 'range_check_ptr' in:" - ], - "start_col": 23, - "start_line": 297 - }, - "While expanding the reference 'range_check_ptr' in:" - ], - "start_col": 5, - "start_line": 308 - }, - "While trying to update the implicit return value 'range_check_ptr' in:" - ], - "start_col": 16, - "start_line": 53 - } - }, - "181": { - "accessible_scopes": [ - "starkware.cairo.common.math", - "starkware.cairo.common.math.unsigned_div_rem" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 34, - "end_line": 299, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/math.cairo" - }, - "parent_location": [ - { - "end_col": 14, - "end_line": 311, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/math.cairo" - }, - "start_col": 13, - "start_line": 311 - }, - "While expanding the reference 'q' in:" - ], - "start_col": 13, - "start_line": 299 - } - }, - "182": { - "accessible_scopes": [ - "starkware.cairo.common.math", - "starkware.cairo.common.math.unsigned_div_rem" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 30, - "end_line": 298, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/math.cairo" - }, - "parent_location": [ - { - "end_col": 17, - "end_line": 311, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/math.cairo" - }, - "start_col": 16, - "start_line": 311 - }, - "While expanding the reference 'r' in:" - ], - "start_col": 13, - "start_line": 298 - } - }, - "183": { - "accessible_scopes": [ - "starkware.cairo.common.math", - "starkware.cairo.common.math.unsigned_div_rem" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 19, - "end_line": 311, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/math.cairo" - }, - "start_col": 5, - "start_line": 311 - } - }, - "184": { - "accessible_scopes": [ - "starkware.starknet.common.storage", - "starkware.starknet.common.storage.normalize_address" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 22, - "end_line": 13, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/starknet/common/storage.cairo" - }, - "start_col": 5, - "start_line": 13 - } - }, - "186": { - "accessible_scopes": [ - "starkware.starknet.common.storage", - "starkware.starknet.common.storage.normalize_address" - ], - "flow_tracking_data": null, - "hints": [ - { - "location": { - "end_col": 7, - "end_line": 21, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/starknet/common/storage.cairo" - }, - "start_col": 5, - "start_line": 14 - }, - "n_prefix_newlines": 1 - } - ], - "inst": { - "end_col": 7, - "end_line": 22, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/starknet/common/storage.cairo" - }, - "start_col": 5, - "start_line": 22 - } - }, - "188": { - "accessible_scopes": [ - "starkware.starknet.common.storage", - "starkware.starknet.common.storage.normalize_address" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 39, - "end_line": 12, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/starknet/common/storage.cairo" - }, - "parent_location": [ - { - "end_col": 36, - "end_line": 89, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/math.cairo" - }, - "parent_location": [ - { - "end_col": 26, - "end_line": 50, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/starknet/common/storage.cairo" - }, - "start_col": 9, - "start_line": 50 - }, - "While trying to retrieve the implicit argument 'range_check_ptr' in:" - ], - "start_col": 21, - "start_line": 89 - }, - "While expanding the reference 'range_check_ptr' in:" - ], - "start_col": 24, - "start_line": 12 - } - }, - "189": { - "accessible_scopes": [ - "starkware.starknet.common.storage", - "starkware.starknet.common.storage.normalize_address" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 34, - "end_line": 48, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/starknet/common/storage.cairo" - }, - "parent_location": [ - { - "end_col": 25, - "end_line": 50, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/starknet/common/storage.cairo" - }, - "start_col": 24, - "start_line": 50 - }, - "While expanding the reference 'x' in:" - ], - "start_col": 17, - "start_line": 48 - } - }, - "191": { - "accessible_scopes": [ - "starkware.starknet.common.storage", - "starkware.starknet.common.storage.normalize_address" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 26, - "end_line": 50, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/starknet/common/storage.cairo" - }, - "start_col": 9, - "start_line": 50 - } - }, - "193": { - "accessible_scopes": [ - "starkware.starknet.common.storage", - "starkware.starknet.common.storage.normalize_address" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 20, - "end_line": 49, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/starknet/common/storage.cairo" - }, - "parent_location": [ - { - "end_col": 25, - "end_line": 51, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/starknet/common/storage.cairo" - }, - "start_col": 24, - "start_line": 51 - }, - "While expanding the reference 'y' in:" - ], - "start_col": 18, - "start_line": 49 - } - }, - "195": { - "accessible_scopes": [ - "starkware.starknet.common.storage", - "starkware.starknet.common.storage.normalize_address" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 36, - "end_line": 89, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/math.cairo" - }, - "parent_location": [ - { - "end_col": 26, - "end_line": 50, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/starknet/common/storage.cairo" - }, - "parent_location": [ - { - "end_col": 36, - "end_line": 89, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/math.cairo" - }, - "parent_location": [ - { - "end_col": 26, - "end_line": 51, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/starknet/common/storage.cairo" - }, - "start_col": 9, - "start_line": 51 - }, - "While trying to retrieve the implicit argument 'range_check_ptr' in:" - ], - "start_col": 21, - "start_line": 89 - }, - "While expanding the reference 'range_check_ptr' in:" - ], - "start_col": 9, - "start_line": 50 - }, - "While trying to update the implicit return value 'range_check_ptr' in:" - ], - "start_col": 21, - "start_line": 89 - } - }, - "196": { - "accessible_scopes": [ - "starkware.starknet.common.storage", - "starkware.starknet.common.storage.normalize_address" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 28, - "end_line": 49, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/starknet/common/storage.cairo" - }, - "parent_location": [ - { - "end_col": 25, - "end_line": 51, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/starknet/common/storage.cairo" - }, - "start_col": 24, - "start_line": 51 - }, - "While expanding the reference 'y' in:" - ], - "start_col": 17, - "start_line": 49 - } - }, - "197": { - "accessible_scopes": [ - "starkware.starknet.common.storage", - "starkware.starknet.common.storage.normalize_address" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 26, - "end_line": 51, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/starknet/common/storage.cairo" - }, - "start_col": 9, - "start_line": 51 - } - }, - "199": { - "accessible_scopes": [ - "starkware.starknet.common.storage", - "starkware.starknet.common.storage.normalize_address" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 38, - "end_line": 52, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/starknet/common/storage.cairo" - }, - "start_col": 21, - "start_line": 52 - } - }, - "201": { - "accessible_scopes": [ - "starkware.starknet.common.storage", - "starkware.starknet.common.storage.normalize_address" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 40, - "end_line": 52, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/starknet/common/storage.cairo" - }, - "start_col": 9, - "start_line": 52 - } - }, - "202": { - "accessible_scopes": [ - "starkware.starknet.common.storage", - "starkware.starknet.common.storage.normalize_address" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 24, - "end_line": 23, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/starknet/common/storage.cairo" - }, - "start_col": 9, - "start_line": 23 - } - }, - "204": { - "accessible_scopes": [ - "starkware.starknet.common.storage", - "starkware.starknet.common.storage.normalize_address" - ], - "flow_tracking_data": null, - "hints": [ - { - "location": { - "end_col": 57, - "end_line": 24, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/starknet/common/storage.cairo" - }, - "start_col": 9, - "start_line": 24 - }, - "n_prefix_newlines": 0 - } - ], - "inst": { - "end_col": 11, - "end_line": 25, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/starknet/common/storage.cairo" - }, - "start_col": 9, - "start_line": 25 - } - }, - "206": { - "accessible_scopes": [ - "starkware.starknet.common.storage", - "starkware.starknet.common.storage.normalize_address" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 21, - "end_line": 30, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/starknet/common/storage.cairo" - }, - "start_col": 13, - "start_line": 30 - } - }, - "208": { - "accessible_scopes": [ - "starkware.starknet.common.storage", - "starkware.starknet.common.storage.normalize_address" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 42, - "end_line": 32, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/starknet/common/storage.cairo" - }, - "start_col": 28, - "start_line": 32 - } - }, - "210": { - "accessible_scopes": [ - "starkware.starknet.common.storage", - "starkware.starknet.common.storage.normalize_address" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 39, - "end_line": 12, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/starknet/common/storage.cairo" - }, - "parent_location": [ - { - "end_col": 36, - "end_line": 89, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/math.cairo" - }, - "parent_location": [ - { - "end_col": 50, - "end_line": 32, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/starknet/common/storage.cairo" - }, - "start_col": 13, - "start_line": 32 - }, - "While trying to retrieve the implicit argument 'range_check_ptr' in:" - ], - "start_col": 21, - "start_line": 89 - }, - "While expanding the reference 'range_check_ptr' in:" - ], - "start_col": 24, - "start_line": 12 - } - }, - "211": { - "accessible_scopes": [ - "starkware.starknet.common.storage", - "starkware.starknet.common.storage.normalize_address" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 49, - "end_line": 32, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/starknet/common/storage.cairo" - }, - "start_col": 28, - "start_line": 32 - } - }, - "212": { - "accessible_scopes": [ - "starkware.starknet.common.storage", - "starkware.starknet.common.storage.normalize_address" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 50, - "end_line": 32, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/starknet/common/storage.cairo" - }, - "start_col": 13, - "start_line": 32 - } - }, - "214": { - "accessible_scopes": [ - "starkware.starknet.common.storage", - "starkware.starknet.common.storage.normalize_address" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 11, - "end_line": 25, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/starknet/common/storage.cairo" - }, - "start_col": 9, - "start_line": 25 - } - }, - "216": { - "accessible_scopes": [ - "starkware.starknet.common.storage", - "starkware.starknet.common.storage.normalize_address" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 21, - "end_line": 26, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/starknet/common/storage.cairo" - }, - "start_col": 13, - "start_line": 26 - } - }, - "218": { - "accessible_scopes": [ - "starkware.starknet.common.storage", - "starkware.starknet.common.storage.normalize_address" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 39, - "end_line": 12, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/starknet/common/storage.cairo" - }, - "parent_location": [ - { - "end_col": 36, - "end_line": 89, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/math.cairo" - }, - "parent_location": [ - { - "end_col": 33, - "end_line": 28, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/starknet/common/storage.cairo" - }, - "start_col": 13, - "start_line": 28 - }, - "While trying to retrieve the implicit argument 'range_check_ptr' in:" - ], - "start_col": 21, - "start_line": 89 - }, - "While expanding the reference 'range_check_ptr' in:" - ], - "start_col": 24, - "start_line": 12 - } - }, - "219": { - "accessible_scopes": [ - "starkware.starknet.common.storage", - "starkware.starknet.common.storage.normalize_address" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 51, - "end_line": 12, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/starknet/common/storage.cairo" - }, - "parent_location": [ - { - "end_col": 32, - "end_line": 28, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/starknet/common/storage.cairo" - }, - "start_col": 28, - "start_line": 28 - }, - "While expanding the reference 'addr' in:" - ], - "start_col": 41, - "start_line": 12 - } - }, - "220": { - "accessible_scopes": [ - "starkware.starknet.common.storage", - "starkware.starknet.common.storage.normalize_address" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 33, - "end_line": 28, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/starknet/common/storage.cairo" - }, - "start_col": 13, - "start_line": 28 - } - }, - "222": { - "accessible_scopes": [ - "starkware.starknet.common.storage", - "starkware.starknet.common.storage.normalize_address" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 51, - "end_line": 12, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/starknet/common/storage.cairo" - }, - "parent_location": [ - { - "end_col": 25, - "end_line": 34, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/starknet/common/storage.cairo" - }, - "start_col": 21, - "start_line": 34 - }, - "While expanding the reference 'addr' in:" - ], - "start_col": 41, - "start_line": 12 - } - }, - "223": { - "accessible_scopes": [ - "starkware.starknet.common.storage", - "starkware.starknet.common.storage.normalize_address" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 27, - "end_line": 34, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/starknet/common/storage.cairo" - }, - "start_col": 9, - "start_line": 34 - } - }, - "224": { - "accessible_scopes": [ - "starkware.starknet.common.syscalls", - "starkware.starknet.common.syscalls.get_caller_address" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 90, - "end_line": 202, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/starknet/common/syscalls.cairo" - }, - "start_col": 63, - "start_line": 202 - } - }, - "226": { - "accessible_scopes": [ - "starkware.starknet.common.syscalls", - "starkware.starknet.common.syscalls.get_caller_address" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 92, - "end_line": 202, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/starknet/common/syscalls.cairo" - }, - "start_col": 5, - "start_line": 202 - } - }, - "227": { - "accessible_scopes": [ - "starkware.starknet.common.syscalls", - "starkware.starknet.common.syscalls.get_caller_address" - ], - "flow_tracking_data": null, - "hints": [ - { - "location": { - "end_col": 93, - "end_line": 203, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/starknet/common/syscalls.cairo" - }, - "start_col": 5, - "start_line": 203 - }, - "n_prefix_newlines": 0 - } - ], - "inst": { - "end_col": 58, - "end_line": 204, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/starknet/common/syscalls.cairo" - }, - "parent_location": [ - { - "end_col": 43, - "end_line": 200, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/starknet/common/syscalls.cairo" - }, - "parent_location": [ - { - "end_col": 61, - "end_line": 205, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/starknet/common/syscalls.cairo" - }, - "start_col": 5, - "start_line": 205 - }, - "While trying to retrieve the implicit argument 'syscall_ptr' in:" - ], - "start_col": 25, - "start_line": 200 - }, - "While expanding the reference 'syscall_ptr' in:" - ], - "start_col": 23, - "start_line": 204 - } - }, - "229": { - "accessible_scopes": [ - "starkware.starknet.common.syscalls", - "starkware.starknet.common.syscalls.get_caller_address" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 59, - "end_line": 205, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/starknet/common/syscalls.cairo" - }, - "start_col": 28, - "start_line": 205 - } - }, - "230": { - "accessible_scopes": [ - "starkware.starknet.common.syscalls", - "starkware.starknet.common.syscalls.get_caller_address" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 61, - "end_line": 205, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/starknet/common/syscalls.cairo" - }, - "start_col": 5, - "start_line": 205 - } - }, - "231": { - "accessible_scopes": [ - "starkware.starknet.common.syscalls", - "starkware.starknet.common.syscalls.storage_read" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 79, - "end_line": 354, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/starknet/common/syscalls.cairo" - }, - "start_col": 58, - "start_line": 354 - } - }, - "233": { - "accessible_scopes": [ - "starkware.starknet.common.syscalls", - "starkware.starknet.common.syscalls.storage_read" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 98, - "end_line": 354, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/starknet/common/syscalls.cairo" - }, - "start_col": 5, - "start_line": 354 - } - }, - "234": { - "accessible_scopes": [ - "starkware.starknet.common.syscalls", - "starkware.starknet.common.syscalls.storage_read" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 98, - "end_line": 354, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/starknet/common/syscalls.cairo" - }, - "start_col": 5, - "start_line": 354 - } - }, - "235": { - "accessible_scopes": [ - "starkware.starknet.common.syscalls", - "starkware.starknet.common.syscalls.storage_read" - ], - "flow_tracking_data": null, - "hints": [ - { - "location": { - "end_col": 87, - "end_line": 355, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/starknet/common/syscalls.cairo" - }, - "start_col": 5, - "start_line": 355 - }, - "n_prefix_newlines": 0 - } - ], - "inst": { - "end_col": 53, - "end_line": 357, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/starknet/common/syscalls.cairo" - }, - "parent_location": [ - { - "end_col": 37, - "end_line": 352, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/starknet/common/syscalls.cairo" - }, - "parent_location": [ - { - "end_col": 35, - "end_line": 358, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/starknet/common/syscalls.cairo" - }, - "start_col": 5, - "start_line": 358 - }, - "While trying to retrieve the implicit argument 'syscall_ptr' in:" - ], - "start_col": 19, - "start_line": 352 - }, - "While expanding the reference 'syscall_ptr' in:" - ], - "start_col": 23, - "start_line": 357 - } - }, - "237": { - "accessible_scopes": [ - "starkware.starknet.common.syscalls", - "starkware.starknet.common.syscalls.storage_read" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 33, - "end_line": 358, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/starknet/common/syscalls.cairo" - }, - "start_col": 19, - "start_line": 358 - } - }, - "238": { - "accessible_scopes": [ - "starkware.starknet.common.syscalls", - "starkware.starknet.common.syscalls.storage_read" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 35, - "end_line": 358, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/starknet/common/syscalls.cairo" - }, - "start_col": 5, - "start_line": 358 - } - }, - "239": { - "accessible_scopes": [ - "starkware.starknet.common.syscalls", - "starkware.starknet.common.syscalls.storage_write" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 40, - "end_line": 372, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/starknet/common/syscalls.cairo" - }, - "start_col": 18, - "start_line": 372 - } - }, - "241": { - "accessible_scopes": [ - "starkware.starknet.common.syscalls", - "starkware.starknet.common.syscalls.storage_write" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 7, - "end_line": 373, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/starknet/common/syscalls.cairo" - }, - "start_col": 5, - "start_line": 371 - } - }, - "242": { - "accessible_scopes": [ - "starkware.starknet.common.syscalls", - "starkware.starknet.common.syscalls.storage_write" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 7, - "end_line": 373, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/starknet/common/syscalls.cairo" - }, - "start_col": 5, - "start_line": 371 - } - }, - "243": { - "accessible_scopes": [ - "starkware.starknet.common.syscalls", - "starkware.starknet.common.syscalls.storage_write" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 7, - "end_line": 373, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/starknet/common/syscalls.cairo" - }, - "start_col": 5, - "start_line": 371 - } - }, - "244": { - "accessible_scopes": [ - "starkware.starknet.common.syscalls", - "starkware.starknet.common.syscalls.storage_write" - ], - "flow_tracking_data": null, - "hints": [ - { - "location": { - "end_col": 88, - "end_line": 374, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/starknet/common/syscalls.cairo" - }, - "start_col": 5, - "start_line": 374 - }, - "n_prefix_newlines": 0 - } - ], - "inst": { - "end_col": 54, - "end_line": 375, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/starknet/common/syscalls.cairo" - }, - "parent_location": [ - { - "end_col": 38, - "end_line": 370, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/starknet/common/syscalls.cairo" - }, - "parent_location": [ - { - "end_col": 15, - "end_line": 376, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/starknet/common/syscalls.cairo" - }, - "start_col": 5, - "start_line": 376 - }, - "While trying to retrieve the implicit argument 'syscall_ptr' in:" - ], - "start_col": 20, - "start_line": 370 - }, - "While expanding the reference 'syscall_ptr' in:" - ], - "start_col": 23, - "start_line": 375 - } - }, - "246": { - "accessible_scopes": [ - "starkware.starknet.common.syscalls", - "starkware.starknet.common.syscalls.storage_write" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 15, - "end_line": 376, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/starknet/common/syscalls.cairo" - }, - "start_col": 5, - "start_line": 376 - } - }, - "247": { - "accessible_scopes": [ - "starkware.starknet.common.syscalls", - "starkware.starknet.common.syscalls.emit_event" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 37, - "end_line": 392, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/starknet/common/syscalls.cairo" - }, - "start_col": 18, - "start_line": 392 - } - }, - "249": { - "accessible_scopes": [ - "starkware.starknet.common.syscalls", - "starkware.starknet.common.syscalls.emit_event" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 7, - "end_line": 393, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/starknet/common/syscalls.cairo" - }, - "start_col": 5, - "start_line": 391 - } - }, - "250": { - "accessible_scopes": [ - "starkware.starknet.common.syscalls", - "starkware.starknet.common.syscalls.emit_event" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 7, - "end_line": 393, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/starknet/common/syscalls.cairo" - }, - "start_col": 5, - "start_line": 391 - } - }, - "251": { - "accessible_scopes": [ - "starkware.starknet.common.syscalls", - "starkware.starknet.common.syscalls.emit_event" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 7, - "end_line": 393, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/starknet/common/syscalls.cairo" - }, - "start_col": 5, - "start_line": 391 - } - }, - "252": { - "accessible_scopes": [ - "starkware.starknet.common.syscalls", - "starkware.starknet.common.syscalls.emit_event" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 7, - "end_line": 393, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/starknet/common/syscalls.cairo" - }, - "start_col": 5, - "start_line": 391 - } - }, - "253": { - "accessible_scopes": [ - "starkware.starknet.common.syscalls", - "starkware.starknet.common.syscalls.emit_event" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 7, - "end_line": 393, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/starknet/common/syscalls.cairo" - }, - "start_col": 5, - "start_line": 391 - } - }, - "254": { - "accessible_scopes": [ - "starkware.starknet.common.syscalls", - "starkware.starknet.common.syscalls.emit_event" - ], - "flow_tracking_data": null, - "hints": [ - { - "location": { - "end_col": 85, - "end_line": 394, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/starknet/common/syscalls.cairo" - }, - "start_col": 5, - "start_line": 394 - }, - "n_prefix_newlines": 0 - } - ], - "inst": { - "end_col": 51, - "end_line": 395, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/starknet/common/syscalls.cairo" - }, - "parent_location": [ - { - "end_col": 35, - "end_line": 390, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/starknet/common/syscalls.cairo" - }, - "parent_location": [ - { - "end_col": 15, - "end_line": 396, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/starknet/common/syscalls.cairo" - }, - "start_col": 5, - "start_line": 396 - }, - "While trying to retrieve the implicit argument 'syscall_ptr' in:" - ], - "start_col": 17, - "start_line": 390 - }, - "While expanding the reference 'syscall_ptr' in:" - ], - "start_col": 23, - "start_line": 395 - } - }, - "256": { - "accessible_scopes": [ - "starkware.starknet.common.syscalls", - "starkware.starknet.common.syscalls.emit_event" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 15, - "end_line": 396, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/starknet/common/syscalls.cairo" - }, - "start_col": 5, - "start_line": 396 - } - }, - "257": { - "accessible_scopes": [ - "openzeppelin.access.ownable.library", - "openzeppelin.access.ownable.library.OwnershipTransferred", - "openzeppelin.access.ownable.library.OwnershipTransferred.emit" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 14, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/event/OwnershipTransferred/8220fde17ca5479f12ae71a8036f4d354fe722f2c036da610b53511924e4ee84.cairo" - }, - "parent_location": [ - { - "end_col": 26, - "end_line": 15, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/access/ownable/library.cairo" - }, - "start_col": 6, - "start_line": 15 - }, - "While handling event:" - ], - "start_col": 1, - "start_line": 1 - } - }, - "259": { - "accessible_scopes": [ - "openzeppelin.access.ownable.library", - "openzeppelin.access.ownable.library.OwnershipTransferred", - "openzeppelin.access.ownable.library.OwnershipTransferred.emit" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 40, - "end_line": 2, - "input_file": { - "filename": "autogen/starknet/event/OwnershipTransferred/8220fde17ca5479f12ae71a8036f4d354fe722f2c036da610b53511924e4ee84.cairo" - }, - "parent_location": [ - { - "end_col": 26, - "end_line": 15, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/access/ownable/library.cairo" - }, - "start_col": 6, - "start_line": 15 - }, - "While handling event:" - ], - "start_col": 33, - "start_line": 2 - } - }, - "261": { - "accessible_scopes": [ - "openzeppelin.access.ownable.library", - "openzeppelin.access.ownable.library.OwnershipTransferred", - "openzeppelin.access.ownable.library.OwnershipTransferred.emit" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 29, - "end_line": 2, - "input_file": { - "filename": "autogen/starknet/event/OwnershipTransferred/8220fde17ca5479f12ae71a8036f4d354fe722f2c036da610b53511924e4ee84.cairo" - }, - "parent_location": [ - { - "end_col": 26, - "end_line": 15, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/access/ownable/library.cairo" - }, - "start_col": 6, - "start_line": 15 - }, - "While handling event:" - ], - "start_col": 6, - "start_line": 2 - } - }, - "262": { - "accessible_scopes": [ - "openzeppelin.access.ownable.library", - "openzeppelin.access.ownable.library.OwnershipTransferred", - "openzeppelin.access.ownable.library.OwnershipTransferred.emit" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 31, - "end_line": 3, - "input_file": { - "filename": "autogen/starknet/event/OwnershipTransferred/8220fde17ca5479f12ae71a8036f4d354fe722f2c036da610b53511924e4ee84.cairo" - }, - "parent_location": [ - { - "end_col": 26, - "end_line": 15, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/access/ownable/library.cairo" - }, - "start_col": 6, - "start_line": 15 - }, - "While handling event:" - ], - "start_col": 23, - "start_line": 3 - } - }, - "264": { - "accessible_scopes": [ - "openzeppelin.access.ownable.library", - "openzeppelin.access.ownable.library.OwnershipTransferred", - "openzeppelin.access.ownable.library.OwnershipTransferred.emit" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 32, - "end_line": 3, - "input_file": { - "filename": "autogen/starknet/event/OwnershipTransferred/8220fde17ca5479f12ae71a8036f4d354fe722f2c036da610b53511924e4ee84.cairo" - }, - "parent_location": [ - { - "end_col": 26, - "end_line": 15, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/access/ownable/library.cairo" - }, - "start_col": 6, - "start_line": 15 - }, - "While handling event:" - ], - "start_col": 1, - "start_line": 3 - } - }, - "265": { - "accessible_scopes": [ - "openzeppelin.access.ownable.library", - "openzeppelin.access.ownable.library.OwnershipTransferred", - "openzeppelin.access.ownable.library.OwnershipTransferred.emit" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 40, - "end_line": 4, - "input_file": { - "filename": "autogen/starknet/event/OwnershipTransferred/8220fde17ca5479f12ae71a8036f4d354fe722f2c036da610b53511924e4ee84.cairo" - }, - "parent_location": [ - { - "end_col": 26, - "end_line": 15, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/access/ownable/library.cairo" - }, - "start_col": 6, - "start_line": 15 - }, - "While handling event:" - ], - "start_col": 33, - "start_line": 4 - } - }, - "267": { - "accessible_scopes": [ - "openzeppelin.access.ownable.library", - "openzeppelin.access.ownable.library.OwnershipTransferred", - "openzeppelin.access.ownable.library.OwnershipTransferred.emit" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 29, - "end_line": 4, - "input_file": { - "filename": "autogen/starknet/event/OwnershipTransferred/8220fde17ca5479f12ae71a8036f4d354fe722f2c036da610b53511924e4ee84.cairo" - }, - "parent_location": [ - { - "end_col": 26, - "end_line": 15, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/access/ownable/library.cairo" - }, - "start_col": 6, - "start_line": 15 - }, - "While handling event:" - ], - "start_col": 6, - "start_line": 4 - } - }, - "268": { - "accessible_scopes": [ - "openzeppelin.access.ownable.library", - "openzeppelin.access.ownable.library.OwnershipTransferred", - "openzeppelin.access.ownable.library.OwnershipTransferred.emit" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 41, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/arg_processor/e2129a0023ce5f9e4c3de1d6fb100b2688dccff4a2ed2082db4a311f35c53e21.cairo" - }, - "parent_location": [ - { - "end_col": 40, - "end_line": 15, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/access/ownable/library.cairo" - }, - "start_col": 27, - "start_line": 15 - }, - "While handling calldata argument 'previousOwner'" - ], - "start_col": 1, - "start_line": 1 - } - }, - "269": { - "accessible_scopes": [ - "openzeppelin.access.ownable.library", - "openzeppelin.access.ownable.library.OwnershipTransferred", - "openzeppelin.access.ownable.library.OwnershipTransferred.emit" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 36, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/arg_processor/445d818b0524d35ae3e73b7abec41731d1445f0ce6866ec5a3a8a871521799a0.cairo" - }, - "parent_location": [ - { - "end_col": 56, - "end_line": 15, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/access/ownable/library.cairo" - }, - "start_col": 48, - "start_line": 15 - }, - "While handling calldata argument 'newOwner'" - ], - "start_col": 1, - "start_line": 1 - } - }, - "270": { - "accessible_scopes": [ - "openzeppelin.access.ownable.library", - "openzeppelin.access.ownable.library.OwnershipTransferred", - "openzeppelin.access.ownable.library.OwnershipTransferred.emit" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 40, - "end_line": 2, - "input_file": { - "filename": "autogen/starknet/arg_processor/445d818b0524d35ae3e73b7abec41731d1445f0ce6866ec5a3a8a871521799a0.cairo" - }, - "parent_location": [ - { - "end_col": 56, - "end_line": 15, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/access/ownable/library.cairo" - }, - "parent_location": [ - { - "end_col": 64, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/event/OwnershipTransferred/6150feec30bd48bfd0f446ed8c155a6d911a2c3fb3ec7a980733900416819259.cairo" - }, - "parent_location": [ - { - "end_col": 26, - "end_line": 15, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/access/ownable/library.cairo" - }, - "start_col": 6, - "start_line": 15 - }, - "While handling event:" - ], - "start_col": 50, - "start_line": 1 - }, - "While expanding the reference '__calldata_ptr' in:" - ], - "start_col": 48, - "start_line": 15 - }, - "While handling calldata argument 'newOwner'" - ], - "start_col": 22, - "start_line": 2 - } - }, - "272": { - "accessible_scopes": [ - "openzeppelin.access.ownable.library", - "openzeppelin.access.ownable.library.OwnershipTransferred", - "openzeppelin.access.ownable.library.OwnershipTransferred.emit" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 29, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/event/OwnershipTransferred/a7a8ae41be29ac9f4f6c3b7837c448d787ca051dd1ade98f409e54d33d112504.cairo" - }, - "parent_location": [ - { - "end_col": 26, - "end_line": 15, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/access/ownable/library.cairo" - }, - "parent_location": [ - { - "end_col": 35, - "end_line": 390, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/starknet/common/syscalls.cairo" - }, - "parent_location": [ - { - "end_col": 95, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/event/OwnershipTransferred/6150feec30bd48bfd0f446ed8c155a6d911a2c3fb3ec7a980733900416819259.cairo" - }, - "parent_location": [ - { - "end_col": 26, - "end_line": 15, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/access/ownable/library.cairo" - }, - "start_col": 6, - "start_line": 15 - }, - "While handling event:" - ], - "start_col": 1, - "start_line": 1 - }, - "While trying to retrieve the implicit argument 'syscall_ptr' in:" - ], - "start_col": 17, - "start_line": 390 - }, - "While expanding the reference 'syscall_ptr' in:" - ], - "start_col": 6, - "start_line": 15 - }, - "While handling event:" - ], - "start_col": 11, - "start_line": 1 - } - }, - "273": { - "accessible_scopes": [ - "openzeppelin.access.ownable.library", - "openzeppelin.access.ownable.library.OwnershipTransferred", - "openzeppelin.access.ownable.library.OwnershipTransferred.emit" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 22, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/event/OwnershipTransferred/6150feec30bd48bfd0f446ed8c155a6d911a2c3fb3ec7a980733900416819259.cairo" - }, - "parent_location": [ - { - "end_col": 26, - "end_line": 15, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/access/ownable/library.cairo" - }, - "start_col": 6, - "start_line": 15 - }, - "While handling event:" - ], - "start_col": 21, - "start_line": 1 - } - }, - "275": { - "accessible_scopes": [ - "openzeppelin.access.ownable.library", - "openzeppelin.access.ownable.library.OwnershipTransferred", - "openzeppelin.access.ownable.library.OwnershipTransferred.emit" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 22, - "end_line": 2, - "input_file": { - "filename": "autogen/starknet/event/OwnershipTransferred/8220fde17ca5479f12ae71a8036f4d354fe722f2c036da610b53511924e4ee84.cairo" - }, - "parent_location": [ - { - "end_col": 26, - "end_line": 15, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/access/ownable/library.cairo" - }, - "parent_location": [ - { - "end_col": 39, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/event/OwnershipTransferred/6150feec30bd48bfd0f446ed8c155a6d911a2c3fb3ec7a980733900416819259.cairo" - }, - "parent_location": [ - { - "end_col": 26, - "end_line": 15, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/access/ownable/library.cairo" - }, - "start_col": 6, - "start_line": 15 - }, - "While handling event:" - ], - "start_col": 29, - "start_line": 1 - }, - "While expanding the reference '__keys_ptr' in:" - ], - "start_col": 6, - "start_line": 15 - }, - "While handling event:" - ], - "start_col": 12, - "start_line": 2 - } - }, - "276": { - "accessible_scopes": [ - "openzeppelin.access.ownable.library", - "openzeppelin.access.ownable.library.OwnershipTransferred", - "openzeppelin.access.ownable.library.OwnershipTransferred.emit" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 77, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/event/OwnershipTransferred/6150feec30bd48bfd0f446ed8c155a6d911a2c3fb3ec7a980733900416819259.cairo" - }, - "parent_location": [ - { - "end_col": 26, - "end_line": 15, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/access/ownable/library.cairo" - }, - "start_col": 6, - "start_line": 15 - }, - "While handling event:" - ], - "start_col": 50, - "start_line": 1 - } - }, - "277": { - "accessible_scopes": [ - "openzeppelin.access.ownable.library", - "openzeppelin.access.ownable.library.OwnershipTransferred", - "openzeppelin.access.ownable.library.OwnershipTransferred.emit" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 22, - "end_line": 4, - "input_file": { - "filename": "autogen/starknet/event/OwnershipTransferred/8220fde17ca5479f12ae71a8036f4d354fe722f2c036da610b53511924e4ee84.cairo" - }, - "parent_location": [ - { - "end_col": 26, - "end_line": 15, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/access/ownable/library.cairo" - }, - "parent_location": [ - { - "end_col": 94, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/event/OwnershipTransferred/6150feec30bd48bfd0f446ed8c155a6d911a2c3fb3ec7a980733900416819259.cairo" - }, - "parent_location": [ - { - "end_col": 26, - "end_line": 15, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/access/ownable/library.cairo" - }, - "start_col": 6, - "start_line": 15 - }, - "While handling event:" - ], - "start_col": 84, - "start_line": 1 - }, - "While expanding the reference '__data_ptr' in:" - ], - "start_col": 6, - "start_line": 15 - }, - "While handling event:" - ], - "start_col": 12, - "start_line": 4 - } - }, - "278": { - "accessible_scopes": [ - "openzeppelin.access.ownable.library", - "openzeppelin.access.ownable.library.OwnershipTransferred", - "openzeppelin.access.ownable.library.OwnershipTransferred.emit" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 95, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/event/OwnershipTransferred/6150feec30bd48bfd0f446ed8c155a6d911a2c3fb3ec7a980733900416819259.cairo" - }, - "parent_location": [ - { - "end_col": 26, - "end_line": 15, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/access/ownable/library.cairo" - }, - "start_col": 6, - "start_line": 15 - }, - "While handling event:" - ], - "start_col": 1, - "start_line": 1 - } - }, - "280": { - "accessible_scopes": [ - "openzeppelin.access.ownable.library", - "openzeppelin.access.ownable.library.OwnershipTransferred", - "openzeppelin.access.ownable.library.OwnershipTransferred.emit" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 46, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/event/OwnershipTransferred/a7a8ae41be29ac9f4f6c3b7837c448d787ca051dd1ade98f409e54d33d112504.cairo" - }, - "parent_location": [ - { - "end_col": 26, - "end_line": 15, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/access/ownable/library.cairo" - }, - "parent_location": [ - { - "end_col": 46, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/event/OwnershipTransferred/a7a8ae41be29ac9f4f6c3b7837c448d787ca051dd1ade98f409e54d33d112504.cairo" - }, - "parent_location": [ - { - "end_col": 26, - "end_line": 15, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/access/ownable/library.cairo" - }, - "parent_location": [ - { - "end_col": 11, - "end_line": 2, - "input_file": { - "filename": "autogen/starknet/event/OwnershipTransferred/6150feec30bd48bfd0f446ed8c155a6d911a2c3fb3ec7a980733900416819259.cairo" - }, - "parent_location": [ - { - "end_col": 26, - "end_line": 15, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/access/ownable/library.cairo" - }, - "start_col": 6, - "start_line": 15 - }, - "While handling event:" - ], - "start_col": 1, - "start_line": 2 - }, - "While trying to retrieve the implicit argument 'range_check_ptr' in:" - ], - "start_col": 6, - "start_line": 15 - }, - "While handling event:" - ], - "start_col": 31, - "start_line": 1 - }, - "While expanding the reference 'range_check_ptr' in:" - ], - "start_col": 6, - "start_line": 15 - }, - "While handling event:" - ], - "start_col": 31, - "start_line": 1 - } - }, - "281": { - "accessible_scopes": [ - "openzeppelin.access.ownable.library", - "openzeppelin.access.ownable.library.OwnershipTransferred", - "openzeppelin.access.ownable.library.OwnershipTransferred.emit" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 11, - "end_line": 2, - "input_file": { - "filename": "autogen/starknet/event/OwnershipTransferred/6150feec30bd48bfd0f446ed8c155a6d911a2c3fb3ec7a980733900416819259.cairo" - }, - "parent_location": [ - { - "end_col": 26, - "end_line": 15, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/access/ownable/library.cairo" - }, - "start_col": 6, - "start_line": 15 - }, - "While handling event:" - ], - "start_col": 1, - "start_line": 2 - } - }, - "282": { - "accessible_scopes": [ - "openzeppelin.access.ownable.library", - "openzeppelin.access.ownable.library.Ownable_owner", - "openzeppelin.access.ownable.library.Ownable_owner.addr" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 41, - "end_line": 7, - "input_file": { - "filename": "autogen/starknet/storage_var/Ownable_owner/impl.cairo" - }, - "parent_location": [ - { - "end_col": 41, - "end_line": 7, - "input_file": { - "filename": "autogen/starknet/storage_var/Ownable_owner/decl.cairo" - }, - "parent_location": [ - { - "end_col": 26, - "end_line": 9, - "input_file": { - "filename": "autogen/starknet/storage_var/Ownable_owner/impl.cairo" - }, - "start_col": 9, - "start_line": 9 - }, - "While trying to retrieve the implicit argument 'pedersen_ptr' in:" - ], - "start_col": 15, - "start_line": 7 - }, - "While expanding the reference 'pedersen_ptr' in:" - ], - "start_col": 15, - "start_line": 7 - } - }, - "283": { - "accessible_scopes": [ - "openzeppelin.access.ownable.library", - "openzeppelin.access.ownable.library.Ownable_owner", - "openzeppelin.access.ownable.library.Ownable_owner.addr" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 58, - "end_line": 7, - "input_file": { - "filename": "autogen/starknet/storage_var/Ownable_owner/impl.cairo" - }, - "parent_location": [ - { - "end_col": 58, - "end_line": 7, - "input_file": { - "filename": "autogen/starknet/storage_var/Ownable_owner/decl.cairo" - }, - "parent_location": [ - { - "end_col": 26, - "end_line": 9, - "input_file": { - "filename": "autogen/starknet/storage_var/Ownable_owner/impl.cairo" - }, - "start_col": 9, - "start_line": 9 - }, - "While trying to retrieve the implicit argument 'range_check_ptr' in:" - ], - "start_col": 43, - "start_line": 7 - }, - "While expanding the reference 'range_check_ptr' in:" - ], - "start_col": 43, - "start_line": 7 - } - }, - "284": { - "accessible_scopes": [ - "openzeppelin.access.ownable.library", - "openzeppelin.access.ownable.library.Ownable_owner", - "openzeppelin.access.ownable.library.Ownable_owner.addr" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 95, - "end_line": 8, - "input_file": { - "filename": "autogen/starknet/storage_var/Ownable_owner/impl.cairo" - }, - "parent_location": [ - { - "end_col": 24, - "end_line": 9, - "input_file": { - "filename": "autogen/starknet/storage_var/Ownable_owner/impl.cairo" - }, - "start_col": 21, - "start_line": 9 - }, - "While expanding the reference 'res' in:" - ], - "start_col": 19, - "start_line": 8 - } - }, - "286": { - "accessible_scopes": [ - "openzeppelin.access.ownable.library", - "openzeppelin.access.ownable.library.Ownable_owner", - "openzeppelin.access.ownable.library.Ownable_owner.addr" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 26, - "end_line": 9, - "input_file": { - "filename": "autogen/starknet/storage_var/Ownable_owner/impl.cairo" - }, - "start_col": 9, - "start_line": 9 - } - }, - "287": { - "accessible_scopes": [ - "openzeppelin.access.ownable.library", - "openzeppelin.access.ownable.library.Ownable_owner", - "openzeppelin.access.ownable.library.Ownable_owner.read" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 61, - "end_line": 12, - "input_file": { - "filename": "autogen/starknet/storage_var/Ownable_owner/impl.cairo" - }, - "parent_location": [ - { - "end_col": 41, - "end_line": 7, - "input_file": { - "filename": "autogen/starknet/storage_var/Ownable_owner/decl.cairo" - }, - "parent_location": [ - { - "end_col": 36, - "end_line": 13, - "input_file": { - "filename": "autogen/starknet/storage_var/Ownable_owner/impl.cairo" - }, - "start_col": 30, - "start_line": 13 - }, - "While trying to retrieve the implicit argument 'pedersen_ptr' in:" - ], - "start_col": 15, - "start_line": 7 - }, - "While expanding the reference 'pedersen_ptr' in:" - ], - "start_col": 35, - "start_line": 12 - } - }, - "288": { - "accessible_scopes": [ - "openzeppelin.access.ownable.library", - "openzeppelin.access.ownable.library.Ownable_owner", - "openzeppelin.access.ownable.library.Ownable_owner.read" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 78, - "end_line": 12, - "input_file": { - "filename": "autogen/starknet/storage_var/Ownable_owner/impl.cairo" - }, - "parent_location": [ - { - "end_col": 58, - "end_line": 7, - "input_file": { - "filename": "autogen/starknet/storage_var/Ownable_owner/decl.cairo" - }, - "parent_location": [ - { - "end_col": 36, - "end_line": 13, - "input_file": { - "filename": "autogen/starknet/storage_var/Ownable_owner/impl.cairo" - }, - "start_col": 30, - "start_line": 13 - }, - "While trying to retrieve the implicit argument 'range_check_ptr' in:" - ], - "start_col": 43, - "start_line": 7 - }, - "While expanding the reference 'range_check_ptr' in:" - ], - "start_col": 63, - "start_line": 12 - } - }, - "289": { - "accessible_scopes": [ - "openzeppelin.access.ownable.library", - "openzeppelin.access.ownable.library.Ownable_owner", - "openzeppelin.access.ownable.library.Ownable_owner.read" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 36, - "end_line": 13, - "input_file": { - "filename": "autogen/starknet/storage_var/Ownable_owner/impl.cairo" - }, - "start_col": 30, - "start_line": 13 - } - }, - "291": { - "accessible_scopes": [ - "openzeppelin.access.ownable.library", - "openzeppelin.access.ownable.library.Ownable_owner", - "openzeppelin.access.ownable.library.Ownable_owner.read" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 33, - "end_line": 12, - "input_file": { - "filename": "autogen/starknet/storage_var/Ownable_owner/impl.cairo" - }, - "parent_location": [ - { - "end_col": 37, - "end_line": 352, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/starknet/common/syscalls.cairo" - }, - "parent_location": [ - { - "end_col": 75, - "end_line": 14, - "input_file": { - "filename": "autogen/starknet/storage_var/Ownable_owner/impl.cairo" - }, - "start_col": 37, - "start_line": 14 - }, - "While trying to retrieve the implicit argument 'syscall_ptr' in:" - ], - "start_col": 19, - "start_line": 352 - }, - "While expanding the reference 'syscall_ptr' in:" - ], - "start_col": 15, - "start_line": 12 - } - }, - "292": { - "accessible_scopes": [ - "openzeppelin.access.ownable.library", - "openzeppelin.access.ownable.library.Ownable_owner", - "openzeppelin.access.ownable.library.Ownable_owner.read" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 26, - "end_line": 13, - "input_file": { - "filename": "autogen/starknet/storage_var/Ownable_owner/impl.cairo" - }, - "parent_location": [ - { - "end_col": 70, - "end_line": 14, - "input_file": { - "filename": "autogen/starknet/storage_var/Ownable_owner/impl.cairo" - }, - "start_col": 58, - "start_line": 14 - }, - "While expanding the reference 'storage_addr' in:" - ], - "start_col": 14, - "start_line": 13 - } - }, - "293": { - "accessible_scopes": [ - "openzeppelin.access.ownable.library", - "openzeppelin.access.ownable.library.Ownable_owner", - "openzeppelin.access.ownable.library.Ownable_owner.read" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 75, - "end_line": 14, - "input_file": { - "filename": "autogen/starknet/storage_var/Ownable_owner/impl.cairo" - }, - "start_col": 37, - "start_line": 14 - } - }, - "295": { - "accessible_scopes": [ - "openzeppelin.access.ownable.library", - "openzeppelin.access.ownable.library.Ownable_owner", - "openzeppelin.access.ownable.library.Ownable_owner.read" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 37, - "end_line": 352, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/starknet/common/syscalls.cairo" - }, - "parent_location": [ - { - "end_col": 75, - "end_line": 14, - "input_file": { - "filename": "autogen/starknet/storage_var/Ownable_owner/impl.cairo" - }, - "parent_location": [ - { - "end_col": 42, - "end_line": 16, - "input_file": { - "filename": "autogen/starknet/storage_var/Ownable_owner/impl.cairo" - }, - "start_col": 31, - "start_line": 16 - }, - "While expanding the reference 'syscall_ptr' in:" - ], - "start_col": 37, - "start_line": 14 - }, - "While trying to update the implicit return value 'syscall_ptr' in:" - ], - "start_col": 19, - "start_line": 352 - } - }, - "296": { - "accessible_scopes": [ - "openzeppelin.access.ownable.library", - "openzeppelin.access.ownable.library.Ownable_owner", - "openzeppelin.access.ownable.library.Ownable_owner.read" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 41, - "end_line": 7, - "input_file": { - "filename": "autogen/starknet/storage_var/Ownable_owner/decl.cairo" - }, - "parent_location": [ - { - "end_col": 36, - "end_line": 13, - "input_file": { - "filename": "autogen/starknet/storage_var/Ownable_owner/impl.cairo" - }, - "parent_location": [ - { - "end_col": 44, - "end_line": 17, - "input_file": { - "filename": "autogen/starknet/storage_var/Ownable_owner/impl.cairo" - }, - "start_col": 32, - "start_line": 17 - }, - "While expanding the reference 'pedersen_ptr' in:" - ], - "start_col": 30, - "start_line": 13 - }, - "While trying to update the implicit return value 'pedersen_ptr' in:" - ], - "start_col": 15, - "start_line": 7 - } - }, - "297": { - "accessible_scopes": [ - "openzeppelin.access.ownable.library", - "openzeppelin.access.ownable.library.Ownable_owner", - "openzeppelin.access.ownable.library.Ownable_owner.read" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 58, - "end_line": 7, - "input_file": { - "filename": "autogen/starknet/storage_var/Ownable_owner/decl.cairo" - }, - "parent_location": [ - { - "end_col": 36, - "end_line": 13, - "input_file": { - "filename": "autogen/starknet/storage_var/Ownable_owner/impl.cairo" - }, - "parent_location": [ - { - "end_col": 50, - "end_line": 18, - "input_file": { - "filename": "autogen/starknet/storage_var/Ownable_owner/impl.cairo" - }, - "start_col": 35, - "start_line": 18 - }, - "While expanding the reference 'range_check_ptr' in:" - ], - "start_col": 30, - "start_line": 13 - }, - "While trying to update the implicit return value 'range_check_ptr' in:" - ], - "start_col": 43, - "start_line": 7 - } - }, - "298": { - "accessible_scopes": [ - "openzeppelin.access.ownable.library", - "openzeppelin.access.ownable.library.Ownable_owner", - "openzeppelin.access.ownable.library.Ownable_owner.read" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 33, - "end_line": 14, - "input_file": { - "filename": "autogen/starknet/storage_var/Ownable_owner/impl.cairo" - }, - "parent_location": [ - { - "end_col": 64, - "end_line": 19, - "input_file": { - "filename": "autogen/starknet/storage_var/Ownable_owner/impl.cairo" - }, - "start_col": 45, - "start_line": 19 - }, - "While expanding the reference '__storage_var_temp0' in:" - ], - "start_col": 14, - "start_line": 14 - } - }, - "299": { - "accessible_scopes": [ - "openzeppelin.access.ownable.library", - "openzeppelin.access.ownable.library.Ownable_owner", - "openzeppelin.access.ownable.library.Ownable_owner.read" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 55, - "end_line": 20, - "input_file": { - "filename": "autogen/starknet/storage_var/Ownable_owner/impl.cairo" - }, - "start_col": 9, - "start_line": 20 - } - }, - "300": { - "accessible_scopes": [ - "openzeppelin.access.ownable.library", - "openzeppelin.access.ownable.library.Ownable_owner", - "openzeppelin.access.ownable.library.Ownable_owner.write" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 62, - "end_line": 23, - "input_file": { - "filename": "autogen/starknet/storage_var/Ownable_owner/impl.cairo" - }, - "parent_location": [ - { - "end_col": 41, - "end_line": 7, - "input_file": { - "filename": "autogen/starknet/storage_var/Ownable_owner/decl.cairo" - }, - "parent_location": [ - { - "end_col": 36, - "end_line": 24, - "input_file": { - "filename": "autogen/starknet/storage_var/Ownable_owner/impl.cairo" - }, - "start_col": 30, - "start_line": 24 - }, - "While trying to retrieve the implicit argument 'pedersen_ptr' in:" - ], - "start_col": 15, - "start_line": 7 - }, - "While expanding the reference 'pedersen_ptr' in:" - ], - "start_col": 36, - "start_line": 23 - } - }, - "301": { - "accessible_scopes": [ - "openzeppelin.access.ownable.library", - "openzeppelin.access.ownable.library.Ownable_owner", - "openzeppelin.access.ownable.library.Ownable_owner.write" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 79, - "end_line": 23, - "input_file": { - "filename": "autogen/starknet/storage_var/Ownable_owner/impl.cairo" - }, - "parent_location": [ - { - "end_col": 58, - "end_line": 7, - "input_file": { - "filename": "autogen/starknet/storage_var/Ownable_owner/decl.cairo" - }, - "parent_location": [ - { - "end_col": 36, - "end_line": 24, - "input_file": { - "filename": "autogen/starknet/storage_var/Ownable_owner/impl.cairo" - }, - "start_col": 30, - "start_line": 24 - }, - "While trying to retrieve the implicit argument 'range_check_ptr' in:" - ], - "start_col": 43, - "start_line": 7 - }, - "While expanding the reference 'range_check_ptr' in:" - ], - "start_col": 64, - "start_line": 23 - } - }, - "302": { - "accessible_scopes": [ - "openzeppelin.access.ownable.library", - "openzeppelin.access.ownable.library.Ownable_owner", - "openzeppelin.access.ownable.library.Ownable_owner.write" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 36, - "end_line": 24, - "input_file": { - "filename": "autogen/starknet/storage_var/Ownable_owner/impl.cairo" - }, - "start_col": 30, - "start_line": 24 - } - }, - "304": { - "accessible_scopes": [ - "openzeppelin.access.ownable.library", - "openzeppelin.access.ownable.library.Ownable_owner", - "openzeppelin.access.ownable.library.Ownable_owner.write" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 34, - "end_line": 23, - "input_file": { - "filename": "autogen/starknet/storage_var/Ownable_owner/impl.cairo" - }, - "parent_location": [ - { - "end_col": 38, - "end_line": 370, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/starknet/common/syscalls.cairo" - }, - "parent_location": [ - { - "end_col": 80, - "end_line": 25, - "input_file": { - "filename": "autogen/starknet/storage_var/Ownable_owner/impl.cairo" - }, - "start_col": 9, - "start_line": 25 - }, - "While trying to retrieve the implicit argument 'syscall_ptr' in:" - ], - "start_col": 20, - "start_line": 370 - }, - "While expanding the reference 'syscall_ptr' in:" - ], - "start_col": 16, - "start_line": 23 - } - }, - "305": { - "accessible_scopes": [ - "openzeppelin.access.ownable.library", - "openzeppelin.access.ownable.library.Ownable_owner", - "openzeppelin.access.ownable.library.Ownable_owner.write" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 26, - "end_line": 24, - "input_file": { - "filename": "autogen/starknet/storage_var/Ownable_owner/impl.cairo" - }, - "parent_location": [ - { - "end_col": 43, - "end_line": 25, - "input_file": { - "filename": "autogen/starknet/storage_var/Ownable_owner/impl.cairo" - }, - "start_col": 31, - "start_line": 25 - }, - "While expanding the reference 'storage_addr' in:" - ], - "start_col": 14, - "start_line": 24 - } - }, - "306": { - "accessible_scopes": [ - "openzeppelin.access.ownable.library", - "openzeppelin.access.ownable.library.Ownable_owner", - "openzeppelin.access.ownable.library.Ownable_owner.write" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 79, - "end_line": 25, - "input_file": { - "filename": "autogen/starknet/storage_var/Ownable_owner/impl.cairo" - }, - "start_col": 55, - "start_line": 25 - } - }, - "307": { - "accessible_scopes": [ - "openzeppelin.access.ownable.library", - "openzeppelin.access.ownable.library.Ownable_owner", - "openzeppelin.access.ownable.library.Ownable_owner.write" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 80, - "end_line": 25, - "input_file": { - "filename": "autogen/starknet/storage_var/Ownable_owner/impl.cairo" - }, - "start_col": 9, - "start_line": 25 - } - }, - "309": { - "accessible_scopes": [ - "openzeppelin.access.ownable.library", - "openzeppelin.access.ownable.library.Ownable_owner", - "openzeppelin.access.ownable.library.Ownable_owner.write" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 41, - "end_line": 7, - "input_file": { - "filename": "autogen/starknet/storage_var/Ownable_owner/decl.cairo" - }, - "parent_location": [ - { - "end_col": 36, - "end_line": 24, - "input_file": { - "filename": "autogen/starknet/storage_var/Ownable_owner/impl.cairo" - }, - "parent_location": [ - { - "end_col": 62, - "end_line": 19, - "input_file": { - "filename": "autogen/starknet/storage_var/Ownable_owner/decl.cairo" - }, - "parent_location": [ - { - "end_col": 19, - "end_line": 26, - "input_file": { - "filename": "autogen/starknet/storage_var/Ownable_owner/impl.cairo" - }, - "start_col": 9, - "start_line": 26 - }, - "While trying to retrieve the implicit argument 'pedersen_ptr' in:" - ], - "start_col": 36, - "start_line": 19 - }, - "While expanding the reference 'pedersen_ptr' in:" - ], - "start_col": 30, - "start_line": 24 - }, - "While trying to update the implicit return value 'pedersen_ptr' in:" - ], - "start_col": 15, - "start_line": 7 - } - }, - "310": { - "accessible_scopes": [ - "openzeppelin.access.ownable.library", - "openzeppelin.access.ownable.library.Ownable_owner", - "openzeppelin.access.ownable.library.Ownable_owner.write" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 58, - "end_line": 7, - "input_file": { - "filename": "autogen/starknet/storage_var/Ownable_owner/decl.cairo" - }, - "parent_location": [ - { - "end_col": 36, - "end_line": 24, - "input_file": { - "filename": "autogen/starknet/storage_var/Ownable_owner/impl.cairo" - }, - "parent_location": [ - { - "end_col": 79, - "end_line": 19, - "input_file": { - "filename": "autogen/starknet/storage_var/Ownable_owner/decl.cairo" - }, - "parent_location": [ - { - "end_col": 19, - "end_line": 26, - "input_file": { - "filename": "autogen/starknet/storage_var/Ownable_owner/impl.cairo" - }, - "start_col": 9, - "start_line": 26 - }, - "While trying to retrieve the implicit argument 'range_check_ptr' in:" - ], - "start_col": 64, - "start_line": 19 - }, - "While expanding the reference 'range_check_ptr' in:" - ], - "start_col": 30, - "start_line": 24 - }, - "While trying to update the implicit return value 'range_check_ptr' in:" - ], - "start_col": 43, - "start_line": 7 - } - }, - "311": { - "accessible_scopes": [ - "openzeppelin.access.ownable.library", - "openzeppelin.access.ownable.library.Ownable_owner", - "openzeppelin.access.ownable.library.Ownable_owner.write" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 19, - "end_line": 26, - "input_file": { - "filename": "autogen/starknet/storage_var/Ownable_owner/impl.cairo" - }, - "start_col": 9, - "start_line": 26 - } - }, - "312": { - "accessible_scopes": [ - "openzeppelin.access.ownable.library", - "openzeppelin.access.ownable.library.Ownable", - "openzeppelin.access.ownable.library.Ownable.initializer" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 40, - "end_line": 31, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/access/ownable/library.cairo" - }, - "parent_location": [ - { - "end_col": 48, - "end_line": 81, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/access/ownable/library.cairo" - }, - "parent_location": [ - { - "end_col": 35, - "end_line": 32, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/access/ownable/library.cairo" - }, - "start_col": 9, - "start_line": 32 - }, - "While trying to retrieve the implicit argument 'syscall_ptr' in:" - ], - "start_col": 30, - "start_line": 81 - }, - "While expanding the reference 'syscall_ptr' in:" - ], - "start_col": 22, - "start_line": 31 - } - }, - "313": { - "accessible_scopes": [ - "openzeppelin.access.ownable.library", - "openzeppelin.access.ownable.library.Ownable", - "openzeppelin.access.ownable.library.Ownable.initializer" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 68, - "end_line": 31, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/access/ownable/library.cairo" - }, - "parent_location": [ - { - "end_col": 76, - "end_line": 81, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/access/ownable/library.cairo" - }, - "parent_location": [ - { - "end_col": 35, - "end_line": 32, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/access/ownable/library.cairo" - }, - "start_col": 9, - "start_line": 32 - }, - "While trying to retrieve the implicit argument 'pedersen_ptr' in:" - ], - "start_col": 50, - "start_line": 81 - }, - "While expanding the reference 'pedersen_ptr' in:" - ], - "start_col": 42, - "start_line": 31 - } - }, - "314": { - "accessible_scopes": [ - "openzeppelin.access.ownable.library", - "openzeppelin.access.ownable.library.Ownable", - "openzeppelin.access.ownable.library.Ownable.initializer" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 85, - "end_line": 31, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/access/ownable/library.cairo" - }, - "parent_location": [ - { - "end_col": 93, - "end_line": 81, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/access/ownable/library.cairo" - }, - "parent_location": [ - { - "end_col": 35, - "end_line": 32, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/access/ownable/library.cairo" - }, - "start_col": 9, - "start_line": 32 - }, - "While trying to retrieve the implicit argument 'range_check_ptr' in:" - ], - "start_col": 78, - "start_line": 81 - }, - "While expanding the reference 'range_check_ptr' in:" - ], - "start_col": 70, - "start_line": 31 - } - }, - "315": { - "accessible_scopes": [ - "openzeppelin.access.ownable.library", - "openzeppelin.access.ownable.library.Ownable", - "openzeppelin.access.ownable.library.Ownable.initializer" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 98, - "end_line": 31, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/access/ownable/library.cairo" - }, - "parent_location": [ - { - "end_col": 34, - "end_line": 32, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/access/ownable/library.cairo" - }, - "start_col": 29, - "start_line": 32 - }, - "While expanding the reference 'owner' in:" - ], - "start_col": 87, - "start_line": 31 - } - }, - "316": { - "accessible_scopes": [ - "openzeppelin.access.ownable.library", - "openzeppelin.access.ownable.library.Ownable", - "openzeppelin.access.ownable.library.Ownable.initializer" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 35, - "end_line": 32, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/access/ownable/library.cairo" - }, - "start_col": 9, - "start_line": 32 - } - }, - "318": { - "accessible_scopes": [ - "openzeppelin.access.ownable.library", - "openzeppelin.access.ownable.library.Ownable", - "openzeppelin.access.ownable.library.Ownable.initializer" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 19, - "end_line": 33, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/access/ownable/library.cairo" - }, - "start_col": 9, - "start_line": 33 - } - }, - "319": { - "accessible_scopes": [ - "openzeppelin.access.ownable.library", - "openzeppelin.access.ownable.library.Ownable", - "openzeppelin.access.ownable.library.Ownable.assert_only_owner" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 46, - "end_line": 40, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/access/ownable/library.cairo" - }, - "parent_location": [ - { - "end_col": 34, - "end_line": 56, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/access/ownable/library.cairo" - }, - "parent_location": [ - { - "end_col": 38, - "end_line": 41, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/access/ownable/library.cairo" - }, - "start_col": 23, - "start_line": 41 - }, - "While trying to retrieve the implicit argument 'syscall_ptr' in:" - ], - "start_col": 16, - "start_line": 56 - }, - "While expanding the reference 'syscall_ptr' in:" - ], - "start_col": 28, - "start_line": 40 - } - }, - "320": { - "accessible_scopes": [ - "openzeppelin.access.ownable.library", - "openzeppelin.access.ownable.library.Ownable", - "openzeppelin.access.ownable.library.Ownable.assert_only_owner" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 74, - "end_line": 40, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/access/ownable/library.cairo" - }, - "parent_location": [ - { - "end_col": 62, - "end_line": 56, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/access/ownable/library.cairo" - }, - "parent_location": [ - { - "end_col": 38, - "end_line": 41, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/access/ownable/library.cairo" - }, - "start_col": 23, - "start_line": 41 - }, - "While trying to retrieve the implicit argument 'pedersen_ptr' in:" - ], - "start_col": 36, - "start_line": 56 - }, - "While expanding the reference 'pedersen_ptr' in:" - ], - "start_col": 48, - "start_line": 40 - } - }, - "321": { - "accessible_scopes": [ - "openzeppelin.access.ownable.library", - "openzeppelin.access.ownable.library.Ownable", - "openzeppelin.access.ownable.library.Ownable.assert_only_owner" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 91, - "end_line": 40, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/access/ownable/library.cairo" - }, - "parent_location": [ - { - "end_col": 79, - "end_line": 56, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/access/ownable/library.cairo" - }, - "parent_location": [ - { - "end_col": 38, - "end_line": 41, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/access/ownable/library.cairo" - }, - "start_col": 23, - "start_line": 41 - }, - "While trying to retrieve the implicit argument 'range_check_ptr' in:" - ], - "start_col": 64, - "start_line": 56 - }, - "While expanding the reference 'range_check_ptr' in:" - ], - "start_col": 76, - "start_line": 40 - } - }, - "322": { - "accessible_scopes": [ - "openzeppelin.access.ownable.library", - "openzeppelin.access.ownable.library.Ownable", - "openzeppelin.access.ownable.library.Ownable.assert_only_owner" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 38, - "end_line": 41, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/access/ownable/library.cairo" - }, - "start_col": 23, - "start_line": 41 - } - }, - "324": { - "accessible_scopes": [ - "openzeppelin.access.ownable.library", - "openzeppelin.access.ownable.library.Ownable", - "openzeppelin.access.ownable.library.Ownable.assert_only_owner" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 34, - "end_line": 56, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/access/ownable/library.cairo" - }, - "parent_location": [ - { - "end_col": 38, - "end_line": 41, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/access/ownable/library.cairo" - }, - "parent_location": [ - { - "end_col": 43, - "end_line": 200, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/starknet/common/syscalls.cairo" - }, - "parent_location": [ - { - "end_col": 44, - "end_line": 42, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/access/ownable/library.cairo" - }, - "start_col": 24, - "start_line": 42 - }, - "While trying to retrieve the implicit argument 'syscall_ptr' in:" - ], - "start_col": 25, - "start_line": 200 - }, - "While expanding the reference 'syscall_ptr' in:" - ], - "start_col": 23, - "start_line": 41 - }, - "While trying to update the implicit return value 'syscall_ptr' in:" - ], - "start_col": 16, - "start_line": 56 - } - }, - "325": { - "accessible_scopes": [ - "openzeppelin.access.ownable.library", - "openzeppelin.access.ownable.library.Ownable", - "openzeppelin.access.ownable.library.Ownable.assert_only_owner" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 44, - "end_line": 42, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/access/ownable/library.cairo" - }, - "start_col": 24, - "start_line": 42 - } - }, - "327": { - "accessible_scopes": [ - "openzeppelin.access.ownable.library", - "openzeppelin.access.ownable.library.Ownable", - "openzeppelin.access.ownable.library.Ownable.assert_only_owner" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 36, - "end_line": 44, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/access/ownable/library.cairo" - }, - "start_col": 13, - "start_line": 44 - } - }, - "329": { - "accessible_scopes": [ - "openzeppelin.access.ownable.library", - "openzeppelin.access.ownable.library.Ownable", - "openzeppelin.access.ownable.library.Ownable.assert_only_owner" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 35, - "end_line": 47, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/access/ownable/library.cairo" - }, - "start_col": 13, - "start_line": 47 - } - }, - "330": { - "accessible_scopes": [ - "openzeppelin.access.ownable.library", - "openzeppelin.access.ownable.library.Ownable", - "openzeppelin.access.ownable.library.Ownable.assert_only_owner" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 43, - "end_line": 200, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/starknet/common/syscalls.cairo" - }, - "parent_location": [ - { - "end_col": 44, - "end_line": 42, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/access/ownable/library.cairo" - }, - "parent_location": [ - { - "end_col": 46, - "end_line": 40, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/access/ownable/library.cairo" - }, - "parent_location": [ - { - "end_col": 19, - "end_line": 49, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/access/ownable/library.cairo" - }, - "start_col": 9, - "start_line": 49 - }, - "While trying to retrieve the implicit argument 'syscall_ptr' in:" - ], - "start_col": 28, - "start_line": 40 - }, - "While expanding the reference 'syscall_ptr' in:" - ], - "start_col": 24, - "start_line": 42 - }, - "While trying to update the implicit return value 'syscall_ptr' in:" - ], - "start_col": 25, - "start_line": 200 - } - }, - "331": { - "accessible_scopes": [ - "openzeppelin.access.ownable.library", - "openzeppelin.access.ownable.library.Ownable", - "openzeppelin.access.ownable.library.Ownable.assert_only_owner" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 62, - "end_line": 56, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/access/ownable/library.cairo" - }, - "parent_location": [ - { - "end_col": 38, - "end_line": 41, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/access/ownable/library.cairo" - }, - "parent_location": [ - { - "end_col": 74, - "end_line": 40, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/access/ownable/library.cairo" - }, - "parent_location": [ - { - "end_col": 19, - "end_line": 49, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/access/ownable/library.cairo" - }, - "start_col": 9, - "start_line": 49 - }, - "While trying to retrieve the implicit argument 'pedersen_ptr' in:" - ], - "start_col": 48, - "start_line": 40 - }, - "While expanding the reference 'pedersen_ptr' in:" - ], - "start_col": 23, - "start_line": 41 - }, - "While trying to update the implicit return value 'pedersen_ptr' in:" - ], - "start_col": 36, - "start_line": 56 - } - }, - "332": { - "accessible_scopes": [ - "openzeppelin.access.ownable.library", - "openzeppelin.access.ownable.library.Ownable", - "openzeppelin.access.ownable.library.Ownable.assert_only_owner" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 79, - "end_line": 56, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/access/ownable/library.cairo" - }, - "parent_location": [ - { - "end_col": 38, - "end_line": 41, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/access/ownable/library.cairo" - }, - "parent_location": [ - { - "end_col": 91, - "end_line": 40, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/access/ownable/library.cairo" - }, - "parent_location": [ - { - "end_col": 19, - "end_line": 49, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/access/ownable/library.cairo" - }, - "start_col": 9, - "start_line": 49 - }, - "While trying to retrieve the implicit argument 'range_check_ptr' in:" - ], - "start_col": 76, - "start_line": 40 - }, - "While expanding the reference 'range_check_ptr' in:" - ], - "start_col": 23, - "start_line": 41 - }, - "While trying to update the implicit return value 'range_check_ptr' in:" - ], - "start_col": 64, - "start_line": 56 - } - }, - "333": { - "accessible_scopes": [ - "openzeppelin.access.ownable.library", - "openzeppelin.access.ownable.library.Ownable", - "openzeppelin.access.ownable.library.Ownable.assert_only_owner" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 19, - "end_line": 49, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/access/ownable/library.cairo" - }, - "start_col": 9, - "start_line": 49 - } - }, - "334": { - "accessible_scopes": [ - "openzeppelin.access.ownable.library", - "openzeppelin.access.ownable.library.Ownable", - "openzeppelin.access.ownable.library.Ownable.owner" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 34, - "end_line": 56, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/access/ownable/library.cairo" - }, - "parent_location": [ - { - "end_col": 33, - "end_line": 13, - "input_file": { - "filename": "autogen/starknet/storage_var/Ownable_owner/decl.cairo" - }, - "parent_location": [ - { - "end_col": 36, - "end_line": 57, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/access/ownable/library.cairo" - }, - "start_col": 16, - "start_line": 57 - }, - "While trying to retrieve the implicit argument 'syscall_ptr' in:" - ], - "start_col": 15, - "start_line": 13 - }, - "While expanding the reference 'syscall_ptr' in:" - ], - "start_col": 16, - "start_line": 56 - } - }, - "335": { - "accessible_scopes": [ - "openzeppelin.access.ownable.library", - "openzeppelin.access.ownable.library.Ownable", - "openzeppelin.access.ownable.library.Ownable.owner" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 62, - "end_line": 56, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/access/ownable/library.cairo" - }, - "parent_location": [ - { - "end_col": 61, - "end_line": 13, - "input_file": { - "filename": "autogen/starknet/storage_var/Ownable_owner/decl.cairo" - }, - "parent_location": [ - { - "end_col": 36, - "end_line": 57, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/access/ownable/library.cairo" - }, - "start_col": 16, - "start_line": 57 - }, - "While trying to retrieve the implicit argument 'pedersen_ptr' in:" - ], - "start_col": 35, - "start_line": 13 - }, - "While expanding the reference 'pedersen_ptr' in:" - ], - "start_col": 36, - "start_line": 56 - } - }, - "336": { - "accessible_scopes": [ - "openzeppelin.access.ownable.library", - "openzeppelin.access.ownable.library.Ownable", - "openzeppelin.access.ownable.library.Ownable.owner" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 79, - "end_line": 56, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/access/ownable/library.cairo" - }, - "parent_location": [ - { - "end_col": 78, - "end_line": 13, - "input_file": { - "filename": "autogen/starknet/storage_var/Ownable_owner/decl.cairo" - }, - "parent_location": [ - { - "end_col": 36, - "end_line": 57, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/access/ownable/library.cairo" - }, - "start_col": 16, - "start_line": 57 - }, - "While trying to retrieve the implicit argument 'range_check_ptr' in:" - ], - "start_col": 63, - "start_line": 13 - }, - "While expanding the reference 'range_check_ptr' in:" - ], - "start_col": 64, - "start_line": 56 - } - }, - "337": { - "accessible_scopes": [ - "openzeppelin.access.ownable.library", - "openzeppelin.access.ownable.library.Ownable", - "openzeppelin.access.ownable.library.Ownable.owner" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 36, - "end_line": 57, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/access/ownable/library.cairo" - }, - "start_col": 16, - "start_line": 57 - } - }, - "339": { - "accessible_scopes": [ - "openzeppelin.access.ownable.library", - "openzeppelin.access.ownable.library.Ownable", - "openzeppelin.access.ownable.library.Ownable.owner" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 37, - "end_line": 57, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/access/ownable/library.cairo" - }, - "start_col": 9, - "start_line": 57 - } - }, - "340": { - "accessible_scopes": [ - "openzeppelin.access.ownable.library", - "openzeppelin.access.ownable.library.Ownable", - "openzeppelin.access.ownable.library.Ownable.transfer_ownership" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 24, - "end_line": 61, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/access/ownable/library.cairo" - }, - "parent_location": [ - { - "end_col": 38, - "end_line": 64, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/access/ownable/library.cairo" - }, - "start_col": 29, - "start_line": 64 - }, - "While expanding the reference 'new_owner' in:" - ], - "start_col": 9, - "start_line": 61 - } - }, - "341": { - "accessible_scopes": [ - "openzeppelin.access.ownable.library", - "openzeppelin.access.ownable.library.Ownable", - "openzeppelin.access.ownable.library.Ownable.transfer_ownership" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 39, - "end_line": 64, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/access/ownable/library.cairo" - }, - "start_col": 13, - "start_line": 64 - } - }, - "343": { - "accessible_scopes": [ - "openzeppelin.access.ownable.library", - "openzeppelin.access.ownable.library.Ownable", - "openzeppelin.access.ownable.library.Ownable.transfer_ownership" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 47, - "end_line": 60, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/access/ownable/library.cairo" - }, - "parent_location": [ - { - "end_col": 46, - "end_line": 40, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/access/ownable/library.cairo" - }, - "parent_location": [ - { - "end_col": 28, - "end_line": 66, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/access/ownable/library.cairo" - }, - "start_col": 9, - "start_line": 66 - }, - "While trying to retrieve the implicit argument 'syscall_ptr' in:" - ], - "start_col": 28, - "start_line": 40 - }, - "While expanding the reference 'syscall_ptr' in:" - ], - "start_col": 29, - "start_line": 60 - } - }, - "344": { - "accessible_scopes": [ - "openzeppelin.access.ownable.library", - "openzeppelin.access.ownable.library.Ownable", - "openzeppelin.access.ownable.library.Ownable.transfer_ownership" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 75, - "end_line": 60, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/access/ownable/library.cairo" - }, - "parent_location": [ - { - "end_col": 74, - "end_line": 40, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/access/ownable/library.cairo" - }, - "parent_location": [ - { - "end_col": 28, - "end_line": 66, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/access/ownable/library.cairo" - }, - "start_col": 9, - "start_line": 66 - }, - "While trying to retrieve the implicit argument 'pedersen_ptr' in:" - ], - "start_col": 48, - "start_line": 40 - }, - "While expanding the reference 'pedersen_ptr' in:" - ], - "start_col": 49, - "start_line": 60 - } - }, - "345": { - "accessible_scopes": [ - "openzeppelin.access.ownable.library", - "openzeppelin.access.ownable.library.Ownable", - "openzeppelin.access.ownable.library.Ownable.transfer_ownership" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 92, - "end_line": 60, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/access/ownable/library.cairo" - }, - "parent_location": [ - { - "end_col": 91, - "end_line": 40, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/access/ownable/library.cairo" - }, - "parent_location": [ - { - "end_col": 28, - "end_line": 66, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/access/ownable/library.cairo" - }, - "start_col": 9, - "start_line": 66 - }, - "While trying to retrieve the implicit argument 'range_check_ptr' in:" - ], - "start_col": 76, - "start_line": 40 - }, - "While expanding the reference 'range_check_ptr' in:" - ], - "start_col": 77, - "start_line": 60 - } - }, - "346": { - "accessible_scopes": [ - "openzeppelin.access.ownable.library", - "openzeppelin.access.ownable.library.Ownable", - "openzeppelin.access.ownable.library.Ownable.transfer_ownership" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 28, - "end_line": 66, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/access/ownable/library.cairo" - }, - "start_col": 9, - "start_line": 66 - } - }, - "348": { - "accessible_scopes": [ - "openzeppelin.access.ownable.library", - "openzeppelin.access.ownable.library.Ownable", - "openzeppelin.access.ownable.library.Ownable.transfer_ownership" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 24, - "end_line": 61, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/access/ownable/library.cairo" - }, - "parent_location": [ - { - "end_col": 38, - "end_line": 67, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/access/ownable/library.cairo" - }, - "start_col": 29, - "start_line": 67 - }, - "While expanding the reference 'new_owner' in:" - ], - "start_col": 9, - "start_line": 61 - } - }, - "349": { - "accessible_scopes": [ - "openzeppelin.access.ownable.library", - "openzeppelin.access.ownable.library.Ownable", - "openzeppelin.access.ownable.library.Ownable.transfer_ownership" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 39, - "end_line": 67, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/access/ownable/library.cairo" - }, - "start_col": 9, - "start_line": 67 - } - }, - "351": { - "accessible_scopes": [ - "openzeppelin.access.ownable.library", - "openzeppelin.access.ownable.library.Ownable", - "openzeppelin.access.ownable.library.Ownable.transfer_ownership" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 19, - "end_line": 68, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/access/ownable/library.cairo" - }, - "start_col": 9, - "start_line": 68 - } - }, - "352": { - "accessible_scopes": [ - "openzeppelin.access.ownable.library", - "openzeppelin.access.ownable.library.Ownable", - "openzeppelin.access.ownable.library.Ownable._transfer_ownership" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 48, - "end_line": 81, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/access/ownable/library.cairo" - }, - "parent_location": [ - { - "end_col": 34, - "end_line": 56, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/access/ownable/library.cairo" - }, - "parent_location": [ - { - "end_col": 53, - "end_line": 84, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/access/ownable/library.cairo" - }, - "start_col": 38, - "start_line": 84 - }, - "While trying to retrieve the implicit argument 'syscall_ptr' in:" - ], - "start_col": 16, - "start_line": 56 - }, - "While expanding the reference 'syscall_ptr' in:" - ], - "start_col": 30, - "start_line": 81 - } - }, - "353": { - "accessible_scopes": [ - "openzeppelin.access.ownable.library", - "openzeppelin.access.ownable.library.Ownable", - "openzeppelin.access.ownable.library.Ownable._transfer_ownership" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 76, - "end_line": 81, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/access/ownable/library.cairo" - }, - "parent_location": [ - { - "end_col": 62, - "end_line": 56, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/access/ownable/library.cairo" - }, - "parent_location": [ - { - "end_col": 53, - "end_line": 84, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/access/ownable/library.cairo" - }, - "start_col": 38, - "start_line": 84 - }, - "While trying to retrieve the implicit argument 'pedersen_ptr' in:" - ], - "start_col": 36, - "start_line": 56 - }, - "While expanding the reference 'pedersen_ptr' in:" - ], - "start_col": 50, - "start_line": 81 - } - }, - "354": { - "accessible_scopes": [ - "openzeppelin.access.ownable.library", - "openzeppelin.access.ownable.library.Ownable", - "openzeppelin.access.ownable.library.Ownable._transfer_ownership" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 93, - "end_line": 81, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/access/ownable/library.cairo" - }, - "parent_location": [ - { - "end_col": 79, - "end_line": 56, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/access/ownable/library.cairo" - }, - "parent_location": [ - { - "end_col": 53, - "end_line": 84, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/access/ownable/library.cairo" - }, - "start_col": 38, - "start_line": 84 - }, - "While trying to retrieve the implicit argument 'range_check_ptr' in:" - ], - "start_col": 64, - "start_line": 56 - }, - "While expanding the reference 'range_check_ptr' in:" - ], - "start_col": 78, - "start_line": 81 - } - }, - "355": { - "accessible_scopes": [ - "openzeppelin.access.ownable.library", - "openzeppelin.access.ownable.library.Ownable", - "openzeppelin.access.ownable.library.Ownable._transfer_ownership" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 53, - "end_line": 84, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/access/ownable/library.cairo" - }, - "start_col": 38, - "start_line": 84 - } - }, - "357": { - "accessible_scopes": [ - "openzeppelin.access.ownable.library", - "openzeppelin.access.ownable.library.Ownable", - "openzeppelin.access.ownable.library.Ownable._transfer_ownership" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 34, - "end_line": 56, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/access/ownable/library.cairo" - }, - "parent_location": [ - { - "end_col": 53, - "end_line": 84, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/access/ownable/library.cairo" - }, - "parent_location": [ - { - "end_col": 34, - "end_line": 19, - "input_file": { - "filename": "autogen/starknet/storage_var/Ownable_owner/decl.cairo" - }, - "parent_location": [ - { - "end_col": 39, - "end_line": 85, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/access/ownable/library.cairo" - }, - "start_col": 9, - "start_line": 85 - }, - "While trying to retrieve the implicit argument 'syscall_ptr' in:" - ], - "start_col": 16, - "start_line": 19 - }, - "While expanding the reference 'syscall_ptr' in:" - ], - "start_col": 38, - "start_line": 84 - }, - "While trying to update the implicit return value 'syscall_ptr' in:" - ], - "start_col": 16, - "start_line": 56 - } - }, - "358": { - "accessible_scopes": [ - "openzeppelin.access.ownable.library", - "openzeppelin.access.ownable.library.Ownable", - "openzeppelin.access.ownable.library.Ownable._transfer_ownership" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 62, - "end_line": 56, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/access/ownable/library.cairo" - }, - "parent_location": [ - { - "end_col": 53, - "end_line": 84, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/access/ownable/library.cairo" - }, - "parent_location": [ - { - "end_col": 62, - "end_line": 19, - "input_file": { - "filename": "autogen/starknet/storage_var/Ownable_owner/decl.cairo" - }, - "parent_location": [ - { - "end_col": 39, - "end_line": 85, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/access/ownable/library.cairo" - }, - "start_col": 9, - "start_line": 85 - }, - "While trying to retrieve the implicit argument 'pedersen_ptr' in:" - ], - "start_col": 36, - "start_line": 19 - }, - "While expanding the reference 'pedersen_ptr' in:" - ], - "start_col": 38, - "start_line": 84 - }, - "While trying to update the implicit return value 'pedersen_ptr' in:" - ], - "start_col": 36, - "start_line": 56 - } - }, - "359": { - "accessible_scopes": [ - "openzeppelin.access.ownable.library", - "openzeppelin.access.ownable.library.Ownable", - "openzeppelin.access.ownable.library.Ownable._transfer_ownership" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 79, - "end_line": 56, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/access/ownable/library.cairo" - }, - "parent_location": [ - { - "end_col": 53, - "end_line": 84, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/access/ownable/library.cairo" - }, - "parent_location": [ - { - "end_col": 79, - "end_line": 19, - "input_file": { - "filename": "autogen/starknet/storage_var/Ownable_owner/decl.cairo" - }, - "parent_location": [ - { - "end_col": 39, - "end_line": 85, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/access/ownable/library.cairo" - }, - "start_col": 9, - "start_line": 85 - }, - "While trying to retrieve the implicit argument 'range_check_ptr' in:" - ], - "start_col": 64, - "start_line": 19 - }, - "While expanding the reference 'range_check_ptr' in:" - ], - "start_col": 38, - "start_line": 84 - }, - "While trying to update the implicit return value 'range_check_ptr' in:" - ], - "start_col": 64, - "start_line": 56 - } - }, - "360": { - "accessible_scopes": [ - "openzeppelin.access.ownable.library", - "openzeppelin.access.ownable.library.Ownable", - "openzeppelin.access.ownable.library.Ownable._transfer_ownership" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 24, - "end_line": 82, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/access/ownable/library.cairo" - }, - "parent_location": [ - { - "end_col": 38, - "end_line": 85, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/access/ownable/library.cairo" - }, - "start_col": 29, - "start_line": 85 - }, - "While expanding the reference 'new_owner' in:" - ], - "start_col": 9, - "start_line": 82 - } - }, - "361": { - "accessible_scopes": [ - "openzeppelin.access.ownable.library", - "openzeppelin.access.ownable.library.Ownable", - "openzeppelin.access.ownable.library.Ownable._transfer_ownership" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 39, - "end_line": 85, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/access/ownable/library.cairo" - }, - "start_col": 9, - "start_line": 85 - } - }, - "363": { - "accessible_scopes": [ - "openzeppelin.access.ownable.library", - "openzeppelin.access.ownable.library.Ownable", - "openzeppelin.access.ownable.library.Ownable._transfer_ownership" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 34, - "end_line": 19, - "input_file": { - "filename": "autogen/starknet/storage_var/Ownable_owner/decl.cairo" - }, - "parent_location": [ - { - "end_col": 39, - "end_line": 85, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/access/ownable/library.cairo" - }, - "parent_location": [ - { - "end_col": 29, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/event/OwnershipTransferred/a7a8ae41be29ac9f4f6c3b7837c448d787ca051dd1ade98f409e54d33d112504.cairo" - }, - "parent_location": [ - { - "end_col": 26, - "end_line": 15, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/access/ownable/library.cairo" - }, - "parent_location": [ - { - "end_col": 61, - "end_line": 86, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/access/ownable/library.cairo" - }, - "start_col": 9, - "start_line": 86 - }, - "While trying to retrieve the implicit argument 'syscall_ptr' in:" - ], - "start_col": 6, - "start_line": 15 - }, - "While handling event:" - ], - "start_col": 11, - "start_line": 1 - }, - "While expanding the reference 'syscall_ptr' in:" - ], - "start_col": 9, - "start_line": 85 - }, - "While trying to update the implicit return value 'syscall_ptr' in:" - ], - "start_col": 16, - "start_line": 19 - } - }, - "364": { - "accessible_scopes": [ - "openzeppelin.access.ownable.library", - "openzeppelin.access.ownable.library.Ownable", - "openzeppelin.access.ownable.library.Ownable._transfer_ownership" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 79, - "end_line": 19, - "input_file": { - "filename": "autogen/starknet/storage_var/Ownable_owner/decl.cairo" - }, - "parent_location": [ - { - "end_col": 39, - "end_line": 85, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/access/ownable/library.cairo" - }, - "parent_location": [ - { - "end_col": 46, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/event/OwnershipTransferred/a7a8ae41be29ac9f4f6c3b7837c448d787ca051dd1ade98f409e54d33d112504.cairo" - }, - "parent_location": [ - { - "end_col": 26, - "end_line": 15, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/access/ownable/library.cairo" - }, - "parent_location": [ - { - "end_col": 61, - "end_line": 86, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/access/ownable/library.cairo" - }, - "start_col": 9, - "start_line": 86 - }, - "While trying to retrieve the implicit argument 'range_check_ptr' in:" - ], - "start_col": 6, - "start_line": 15 - }, - "While handling event:" - ], - "start_col": 31, - "start_line": 1 - }, - "While expanding the reference 'range_check_ptr' in:" - ], - "start_col": 9, - "start_line": 85 - }, - "While trying to update the implicit return value 'range_check_ptr' in:" - ], - "start_col": 64, - "start_line": 19 - } - }, - "365": { - "accessible_scopes": [ - "openzeppelin.access.ownable.library", - "openzeppelin.access.ownable.library.Ownable", - "openzeppelin.access.ownable.library.Ownable._transfer_ownership" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 34, - "end_line": 84, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/access/ownable/library.cairo" - }, - "parent_location": [ - { - "end_col": 49, - "end_line": 86, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/access/ownable/library.cairo" - }, - "start_col": 35, - "start_line": 86 - }, - "While expanding the reference 'previous_owner' in:" - ], - "start_col": 14, - "start_line": 84 - } - }, - "366": { - "accessible_scopes": [ - "openzeppelin.access.ownable.library", - "openzeppelin.access.ownable.library.Ownable", - "openzeppelin.access.ownable.library.Ownable._transfer_ownership" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 24, - "end_line": 82, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/access/ownable/library.cairo" - }, - "parent_location": [ - { - "end_col": 60, - "end_line": 86, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/access/ownable/library.cairo" - }, - "start_col": 51, - "start_line": 86 - }, - "While expanding the reference 'new_owner' in:" - ], - "start_col": 9, - "start_line": 82 - } - }, - "367": { - "accessible_scopes": [ - "openzeppelin.access.ownable.library", - "openzeppelin.access.ownable.library.Ownable", - "openzeppelin.access.ownable.library.Ownable._transfer_ownership" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 61, - "end_line": 86, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/access/ownable/library.cairo" - }, - "start_col": 9, - "start_line": 86 - } - }, - "369": { - "accessible_scopes": [ - "openzeppelin.access.ownable.library", - "openzeppelin.access.ownable.library.Ownable", - "openzeppelin.access.ownable.library.Ownable._transfer_ownership" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 29, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/event/OwnershipTransferred/a7a8ae41be29ac9f4f6c3b7837c448d787ca051dd1ade98f409e54d33d112504.cairo" - }, - "parent_location": [ - { - "end_col": 26, - "end_line": 15, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/access/ownable/library.cairo" - }, - "parent_location": [ - { - "end_col": 61, - "end_line": 86, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/access/ownable/library.cairo" - }, - "parent_location": [ - { - "end_col": 48, - "end_line": 81, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/access/ownable/library.cairo" - }, - "parent_location": [ - { - "end_col": 19, - "end_line": 87, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/access/ownable/library.cairo" - }, - "start_col": 9, - "start_line": 87 - }, - "While trying to retrieve the implicit argument 'syscall_ptr' in:" - ], - "start_col": 30, - "start_line": 81 - }, - "While expanding the reference 'syscall_ptr' in:" - ], - "start_col": 9, - "start_line": 86 - }, - "While trying to update the implicit return value 'syscall_ptr' in:" - ], - "start_col": 6, - "start_line": 15 - }, - "While handling event:" - ], - "start_col": 11, - "start_line": 1 - } - }, - "370": { - "accessible_scopes": [ - "openzeppelin.access.ownable.library", - "openzeppelin.access.ownable.library.Ownable", - "openzeppelin.access.ownable.library.Ownable._transfer_ownership" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 62, - "end_line": 19, - "input_file": { - "filename": "autogen/starknet/storage_var/Ownable_owner/decl.cairo" - }, - "parent_location": [ - { - "end_col": 39, - "end_line": 85, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/access/ownable/library.cairo" - }, - "parent_location": [ - { - "end_col": 76, - "end_line": 81, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/access/ownable/library.cairo" - }, - "parent_location": [ - { - "end_col": 19, - "end_line": 87, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/access/ownable/library.cairo" - }, - "start_col": 9, - "start_line": 87 - }, - "While trying to retrieve the implicit argument 'pedersen_ptr' in:" - ], - "start_col": 50, - "start_line": 81 - }, - "While expanding the reference 'pedersen_ptr' in:" - ], - "start_col": 9, - "start_line": 85 - }, - "While trying to update the implicit return value 'pedersen_ptr' in:" - ], - "start_col": 36, - "start_line": 19 - } - }, - "371": { - "accessible_scopes": [ - "openzeppelin.access.ownable.library", - "openzeppelin.access.ownable.library.Ownable", - "openzeppelin.access.ownable.library.Ownable._transfer_ownership" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 46, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/event/OwnershipTransferred/a7a8ae41be29ac9f4f6c3b7837c448d787ca051dd1ade98f409e54d33d112504.cairo" - }, - "parent_location": [ - { - "end_col": 26, - "end_line": 15, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/access/ownable/library.cairo" - }, - "parent_location": [ - { - "end_col": 61, - "end_line": 86, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/access/ownable/library.cairo" - }, - "parent_location": [ - { - "end_col": 93, - "end_line": 81, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/access/ownable/library.cairo" - }, - "parent_location": [ - { - "end_col": 19, - "end_line": 87, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/access/ownable/library.cairo" - }, - "start_col": 9, - "start_line": 87 - }, - "While trying to retrieve the implicit argument 'range_check_ptr' in:" - ], - "start_col": 78, - "start_line": 81 - }, - "While expanding the reference 'range_check_ptr' in:" - ], - "start_col": 9, - "start_line": 86 - }, - "While trying to update the implicit return value 'range_check_ptr' in:" - ], - "start_col": 6, - "start_line": 15 - }, - "While handling event:" - ], - "start_col": 31, - "start_line": 1 - } - }, - "372": { - "accessible_scopes": [ - "openzeppelin.access.ownable.library", - "openzeppelin.access.ownable.library.Ownable", - "openzeppelin.access.ownable.library.Ownable._transfer_ownership" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 19, - "end_line": 87, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/access/ownable/library.cairo" - }, - "start_col": 9, - "start_line": 87 - } - }, - "373": { - "accessible_scopes": [ - "starkware.cairo.common.math_cmp", - "starkware.cairo.common.math_cmp.is_nn" - ], - "flow_tracking_data": null, - "hints": [ - { - "location": { - "end_col": 84, - "end_line": 19, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/math_cmp.cairo" - }, - "start_col": 5, - "start_line": 19 - }, - "n_prefix_newlines": 0 - } - ], - "inst": { - "end_col": 40, - "end_line": 20, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/math_cmp.cairo" - }, - "start_col": 5, - "start_line": 20 - } - }, - "375": { - "accessible_scopes": [ - "starkware.cairo.common.math_cmp", - "starkware.cairo.common.math_cmp.is_nn" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 26, - "end_line": 21, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/math_cmp.cairo" - }, - "start_col": 5, - "start_line": 21 - } - }, - "376": { - "accessible_scopes": [ - "starkware.cairo.common.math_cmp", - "starkware.cairo.common.math_cmp.is_nn" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 13, - "end_line": 22, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/math_cmp.cairo" - }, - "start_col": 5, - "start_line": 22 - } - }, - "378": { - "accessible_scopes": [ - "starkware.cairo.common.math_cmp", - "starkware.cairo.common.math_cmp.is_nn" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 46, - "end_line": 23, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/math_cmp.cairo" - }, - "parent_location": [ - { - "end_col": 27, - "end_line": 18, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/math_cmp.cairo" - }, - "parent_location": [ - { - "end_col": 14, - "end_line": 24, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/math_cmp.cairo" - }, - "start_col": 5, - "start_line": 24 - }, - "While trying to retrieve the implicit argument 'range_check_ptr' in:" - ], - "start_col": 12, - "start_line": 18 - }, - "While expanding the reference 'range_check_ptr' in:" - ], - "start_col": 27, - "start_line": 23 - } - }, - "380": { - "accessible_scopes": [ - "starkware.cairo.common.math_cmp", - "starkware.cairo.common.math_cmp.is_nn" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 13, - "end_line": 24, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/math_cmp.cairo" - }, - "start_col": 12, - "start_line": 24 - } - }, - "382": { - "accessible_scopes": [ - "starkware.cairo.common.math_cmp", - "starkware.cairo.common.math_cmp.is_nn" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 14, - "end_line": 24, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/math_cmp.cairo" - }, - "start_col": 5, - "start_line": 24 - } - }, - "383": { - "accessible_scopes": [ - "starkware.cairo.common.math_cmp", - "starkware.cairo.common.math_cmp.is_nn" - ], - "flow_tracking_data": null, - "hints": [ - { - "location": { - "end_col": 91, - "end_line": 27, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/math_cmp.cairo" - }, - "start_col": 5, - "start_line": 27 - }, - "n_prefix_newlines": 0 - } - ], - "inst": { - "end_col": 48, - "end_line": 28, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/math_cmp.cairo" - }, - "start_col": 5, - "start_line": 28 - } - }, - "385": { - "accessible_scopes": [ - "starkware.cairo.common.math_cmp", - "starkware.cairo.common.math_cmp.is_nn" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 35, - "end_line": 29, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/math_cmp.cairo" - }, - "start_col": 33, - "start_line": 29 - } - }, - "387": { - "accessible_scopes": [ - "starkware.cairo.common.math_cmp", - "starkware.cairo.common.math_cmp.is_nn" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 40, - "end_line": 29, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/math_cmp.cairo" - }, - "start_col": 32, - "start_line": 29 - } - }, - "389": { - "accessible_scopes": [ - "starkware.cairo.common.math_cmp", - "starkware.cairo.common.math_cmp.is_nn" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 41, - "end_line": 29, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/math_cmp.cairo" - }, - "start_col": 5, - "start_line": 29 - } - }, - "390": { - "accessible_scopes": [ - "starkware.cairo.common.math_cmp", - "starkware.cairo.common.math_cmp.is_nn" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 13, - "end_line": 30, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/math_cmp.cairo" - }, - "start_col": 5, - "start_line": 30 - } - }, - "392": { - "accessible_scopes": [ - "starkware.cairo.common.math_cmp", - "starkware.cairo.common.math_cmp.is_nn" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 46, - "end_line": 31, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/math_cmp.cairo" - }, - "parent_location": [ - { - "end_col": 27, - "end_line": 18, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/math_cmp.cairo" - }, - "parent_location": [ - { - "end_col": 14, - "end_line": 32, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/math_cmp.cairo" - }, - "start_col": 5, - "start_line": 32 - }, - "While trying to retrieve the implicit argument 'range_check_ptr' in:" - ], - "start_col": 12, - "start_line": 18 - }, - "While expanding the reference 'range_check_ptr' in:" - ], - "start_col": 27, - "start_line": 31 - } - }, - "394": { - "accessible_scopes": [ - "starkware.cairo.common.math_cmp", - "starkware.cairo.common.math_cmp.is_nn" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 13, - "end_line": 32, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/math_cmp.cairo" - }, - "start_col": 12, - "start_line": 32 - } - }, - "396": { - "accessible_scopes": [ - "starkware.cairo.common.math_cmp", - "starkware.cairo.common.math_cmp.is_nn" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 14, - "end_line": 32, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/math_cmp.cairo" - }, - "start_col": 5, - "start_line": 32 - } - }, - "397": { - "accessible_scopes": [ - "starkware.cairo.common.math_cmp", - "starkware.cairo.common.math_cmp.is_nn" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 27, - "end_line": 18, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/math_cmp.cairo" - }, - "parent_location": [ - { - "end_col": 36, - "end_line": 154, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/math.cairo" - }, - "parent_location": [ - { - "end_col": 32, - "end_line": 35, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/math_cmp.cairo" - }, - "start_col": 5, - "start_line": 35 - }, - "While trying to retrieve the implicit argument 'range_check_ptr' in:" - ], - "start_col": 21, - "start_line": 154 - }, - "While expanding the reference 'range_check_ptr' in:" - ], - "start_col": 12, - "start_line": 18 - } - }, - "398": { - "accessible_scopes": [ - "starkware.cairo.common.math_cmp", - "starkware.cairo.common.math_cmp.is_nn" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 28, - "end_line": 35, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/math_cmp.cairo" - }, - "start_col": 20, - "start_line": 35 - } - }, - "400": { - "accessible_scopes": [ - "starkware.cairo.common.math_cmp", - "starkware.cairo.common.math_cmp.is_nn" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 30, - "end_line": 18, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/math_cmp.cairo" - }, - "parent_location": [ - { - "end_col": 31, - "end_line": 35, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/math_cmp.cairo" - }, - "start_col": 30, - "start_line": 35 - }, - "While expanding the reference 'a' in:" - ], - "start_col": 29, - "start_line": 18 - } - }, - "401": { - "accessible_scopes": [ - "starkware.cairo.common.math_cmp", - "starkware.cairo.common.math_cmp.is_nn" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 32, - "end_line": 35, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/math_cmp.cairo" - }, - "start_col": 5, - "start_line": 35 - } - }, - "403": { - "accessible_scopes": [ - "starkware.cairo.common.math_cmp", - "starkware.cairo.common.math_cmp.is_nn" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 13, - "end_line": 36, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/math_cmp.cairo" - }, - "start_col": 12, - "start_line": 36 - } - }, - "405": { - "accessible_scopes": [ - "starkware.cairo.common.math_cmp", - "starkware.cairo.common.math_cmp.is_nn" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 14, - "end_line": 36, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/math_cmp.cairo" - }, - "start_col": 5, - "start_line": 36 - } - }, - "406": { - "accessible_scopes": [ - "starkware.cairo.common.math_cmp", - "starkware.cairo.common.math_cmp.is_le" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 27, - "end_line": 42, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/math_cmp.cairo" - }, - "parent_location": [ - { - "end_col": 27, - "end_line": 18, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/math_cmp.cairo" - }, - "parent_location": [ - { - "end_col": 24, - "end_line": 43, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/math_cmp.cairo" - }, - "start_col": 12, - "start_line": 43 - }, - "While trying to retrieve the implicit argument 'range_check_ptr' in:" - ], - "start_col": 12, - "start_line": 18 - }, - "While expanding the reference 'range_check_ptr' in:" - ], - "start_col": 12, - "start_line": 42 - } - }, - "407": { - "accessible_scopes": [ - "starkware.cairo.common.math_cmp", - "starkware.cairo.common.math_cmp.is_le" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 23, - "end_line": 43, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/math_cmp.cairo" - }, - "start_col": 18, - "start_line": 43 - } - }, - "408": { - "accessible_scopes": [ - "starkware.cairo.common.math_cmp", - "starkware.cairo.common.math_cmp.is_le" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 24, - "end_line": 43, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/math_cmp.cairo" - }, - "start_col": 12, - "start_line": 43 - } - }, - "410": { - "accessible_scopes": [ - "starkware.cairo.common.math_cmp", - "starkware.cairo.common.math_cmp.is_le" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 25, - "end_line": 43, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/math_cmp.cairo" - }, - "start_col": 5, - "start_line": 43 - } - }, - "411": { - "accessible_scopes": [ - "utils.string", - "utils.string.str" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 18, - "end_line": 14, - "input_file": { - "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/utils/string.cairo" - }, - "start_col": 5, - "start_line": 14 - } - }, - "413": { - "accessible_scopes": [ - "utils.string", - "utils.string.str" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 7, - "end_line": 16, - "input_file": { - "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/utils/string.cairo" - }, - "start_col": 5, - "start_line": 16 - } - }, - "415": { - "accessible_scopes": [ - "utils.string", - "utils.string.str" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 25, - "end_line": 13, - "input_file": { - "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/utils/string.cairo" - }, - "parent_location": [ - { - "end_col": 25, - "end_line": 13, - "input_file": { - "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/utils/string.cairo" - }, - "parent_location": [ - { - "end_col": 23, - "end_line": 17, - "input_file": { - "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/utils/string.cairo" - }, - "start_col": 9, - "start_line": 17 - }, - "While trying to retrieve the implicit argument 'range_check_ptr' in:" - ], - "start_col": 10, - "start_line": 13 - }, - "While expanding the reference 'range_check_ptr' in:" - ], - "start_col": 10, - "start_line": 13 - } - }, - "416": { - "accessible_scopes": [ - "utils.string", - "utils.string.str" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 20, - "end_line": 17, - "input_file": { - "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/utils/string.cairo" - }, - "start_col": 17, - "start_line": 17 - } - }, - "418": { - "accessible_scopes": [ - "utils.string", - "utils.string.str" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 23, - "end_line": 17, - "input_file": { - "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/utils/string.cairo" - }, - "start_col": 9, - "start_line": 17 - } - }, - "419": { - "accessible_scopes": [ - "utils.string", - "utils.string.str" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 30, - "end_line": 20, - "input_file": { - "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/utils/string.cairo" - }, - "start_col": 23, - "start_line": 20 - } - }, - "421": { - "accessible_scopes": [ - "utils.string", - "utils.string.str" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 19, - "end_line": 20, - "input_file": { - "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/utils/string.cairo" - }, - "parent_location": [ - { - "end_col": 19, - "end_line": 20, - "input_file": { - "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/utils/string.cairo" - }, - "start_col": 10, - "start_line": 20 - }, - "While auto generating local variable for 'arr_ascii'." - ], - "start_col": 10, - "start_line": 20 - } - }, - "422": { - "accessible_scopes": [ - "utils.string", - "utils.string.str" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 25, - "end_line": 13, - "input_file": { - "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/utils/string.cairo" - }, - "parent_location": [ - { - "end_col": 31, - "end_line": 242, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/math.cairo" - }, - "parent_location": [ - { - "end_col": 33, - "end_line": 21, - "input_file": { - "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/utils/string.cairo" - }, - "start_col": 19, - "start_line": 21 - }, - "While trying to retrieve the implicit argument 'range_check_ptr' in:" - ], - "start_col": 16, - "start_line": 242 - }, - "While expanding the reference 'range_check_ptr' in:" - ], - "start_col": 10, - "start_line": 13 - } - }, - "423": { - "accessible_scopes": [ - "utils.string", - "utils.string.str" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 36, - "end_line": 13, - "input_file": { - "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/utils/string.cairo" - }, - "parent_location": [ - { - "end_col": 32, - "end_line": 21, - "input_file": { - "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/utils/string.cairo" - }, - "start_col": 29, - "start_line": 21 - }, - "While expanding the reference 'num' in:" - ], - "start_col": 27, - "start_line": 13 - } - }, - "424": { - "accessible_scopes": [ - "utils.string", - "utils.string.str" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 33, - "end_line": 21, - "input_file": { - "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/utils/string.cairo" - }, - "start_col": 19, - "start_line": 21 - } - }, - "426": { - "accessible_scopes": [ - "utils.string", - "utils.string.str" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 40, - "end_line": 23, - "input_file": { - "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/utils/string.cairo" - }, - "start_col": 39, - "start_line": 23 - } - }, - "428": { - "accessible_scopes": [ - "utils.string", - "utils.string.str" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 19, - "end_line": 20, - "input_file": { - "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/utils/string.cairo" - }, - "parent_location": [ - { - "end_col": 19, - "end_line": 20, - "input_file": { - "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/utils/string.cairo" - }, - "parent_location": [ - { - "end_col": 61, - "end_line": 23, - "input_file": { - "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/utils/string.cairo" - }, - "start_col": 52, - "start_line": 23 - }, - "While expanding the reference 'arr_ascii' in:" - ], - "start_col": 10, - "start_line": 20 - }, - "While auto generating local variable for 'arr_ascii'." - ], - "start_col": 10, - "start_line": 20 - } - }, - "429": { - "accessible_scopes": [ - "utils.string", - "utils.string.str" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 6, - "end_line": 24, - "input_file": { - "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/utils/string.cairo" - }, - "start_col": 33, - "start_line": 22 - } - }, - "431": { - "accessible_scopes": [ - "utils.string", - "utils.string.str" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 54, - "end_line": 49, - "input_file": { - "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/utils/string.cairo" - }, - "parent_location": [ - { - "end_col": 6, - "end_line": 24, - "input_file": { - "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/utils/string.cairo" - }, - "parent_location": [ - { - "end_col": 26, - "end_line": 265, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/math.cairo" - }, - "parent_location": [ - { - "end_col": 22, - "end_line": 26, - "input_file": { - "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/utils/string.cairo" - }, - "start_col": 13, - "start_line": 26 - }, - "While trying to retrieve the implicit argument 'range_check_ptr' in:" - ], - "start_col": 11, - "start_line": 265 - }, - "While expanding the reference 'range_check_ptr' in:" - ], - "start_col": 33, - "start_line": 22 - }, - "While trying to update the implicit return value 'range_check_ptr' in:" - ], - "start_col": 39, - "start_line": 49 - } - }, - "432": { - "accessible_scopes": [ - "utils.string", - "utils.string.str" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 36, - "end_line": 13, - "input_file": { - "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/utils/string.cairo" - }, - "parent_location": [ - { - "end_col": 21, - "end_line": 26, - "input_file": { - "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/utils/string.cairo" - }, - "start_col": 18, - "start_line": 26 - }, - "While expanding the reference 'num' in:" - ], - "start_col": 27, - "start_line": 13 - } - }, - "433": { - "accessible_scopes": [ - "utils.string", - "utils.string.str" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 22, - "end_line": 26, - "input_file": { - "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/utils/string.cairo" - }, - "start_col": 13, - "start_line": 26 - } - }, - "435": { - "accessible_scopes": [ - "utils.string", - "utils.string.str" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 16, - "end_line": 28, - "input_file": { - "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/utils/string.cairo" - }, - "start_col": 9, - "start_line": 28 - } - }, - "437": { - "accessible_scopes": [ - "utils.string", - "utils.string.str" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 7, - "end_line": 28, - "input_file": { - "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/utils/string.cairo" - }, - "start_col": 5, - "start_line": 28 - } - }, - "439": { - "accessible_scopes": [ - "utils.string", - "utils.string.str" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 19, - "end_line": 29, - "input_file": { - "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/utils/string.cairo" - }, - "start_col": 9, - "start_line": 29 - } - }, - "441": { - "accessible_scopes": [ - "utils.string", - "utils.string.str" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 7, - "end_line": 28, - "input_file": { - "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/utils/string.cairo" - }, - "start_col": 5, - "start_line": 28 - } - }, - "443": { - "accessible_scopes": [ - "utils.string", - "utils.string.str" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 18, - "end_line": 31, - "input_file": { - "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/utils/string.cairo" - }, - "start_col": 9, - "start_line": 31 - } - }, - "445": { - "accessible_scopes": [ - "utils.string", - "utils.string.str" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 26, - "end_line": 265, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/math.cairo" - }, - "parent_location": [ - { - "end_col": 22, - "end_line": 26, - "input_file": { - "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/utils/string.cairo" - }, - "parent_location": [ - { - "end_col": 61, - "end_line": 71, - "input_file": { - "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/utils/string.cairo" - }, - "parent_location": [ - { - "end_col": 6, - "end_line": 36, - "input_file": { - "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/utils/string.cairo" - }, - "start_col": 19, - "start_line": 34 - }, - "While trying to retrieve the implicit argument 'range_check_ptr' in:" - ], - "start_col": 46, - "start_line": 71 - }, - "While expanding the reference 'range_check_ptr' in:" - ], - "start_col": 13, - "start_line": 26 - }, - "While trying to update the implicit return value 'range_check_ptr' in:" - ], - "start_col": 11, - "start_line": 265 - } - }, - "446": { - "accessible_scopes": [ - "utils.string", - "utils.string.str" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 15, - "end_line": 27, - "input_file": { - "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/utils/string.cairo" - }, - "parent_location": [ - { - "end_col": 19, - "end_line": 35, - "input_file": { - "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/utils/string.cairo" - }, - "start_col": 15, - "start_line": 35 - }, - "While expanding the reference 'init' in:" - ], - "start_col": 11, - "start_line": 27 - } - }, - "447": { - "accessible_scopes": [ - "utils.string", - "utils.string.str" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 29, - "end_line": 22, - "input_file": { - "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/utils/string.cairo" - }, - "parent_location": [ - { - "end_col": 38, - "end_line": 35, - "input_file": { - "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/utils/string.cairo" - }, - "start_col": 25, - "start_line": 35 - }, - "While expanding the reference 'arr_ascii_len' in:" - ], - "start_col": 10, - "start_line": 22 - } - }, - "448": { - "accessible_scopes": [ - "utils.string", - "utils.string.str" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 19, - "end_line": 20, - "input_file": { - "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/utils/string.cairo" - }, - "parent_location": [ - { - "end_col": 19, - "end_line": 20, - "input_file": { - "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/utils/string.cairo" - }, - "parent_location": [ - { - "end_col": 53, - "end_line": 35, - "input_file": { - "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/utils/string.cairo" - }, - "start_col": 44, - "start_line": 35 - }, - "While expanding the reference 'arr_ascii' in:" - ], - "start_col": 10, - "start_line": 20 - }, - "While auto generating local variable for 'arr_ascii'." - ], - "start_col": 10, - "start_line": 20 - } - }, - "449": { - "accessible_scopes": [ - "utils.string", - "utils.string.str" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 60, - "end_line": 35, - "input_file": { - "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/utils/string.cairo" - }, - "start_col": 59, - "start_line": 35 - } - }, - "451": { - "accessible_scopes": [ - "utils.string", - "utils.string.str" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 6, - "end_line": 36, - "input_file": { - "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/utils/string.cairo" - }, - "start_col": 19, - "start_line": 34 - } - }, - "453": { - "accessible_scopes": [ - "utils.string", - "utils.string.str" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 21, - "end_line": 38, - "input_file": { - "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/utils/string.cairo" - }, - "start_col": 5, - "start_line": 38 - } - }, - "454": { - "accessible_scopes": [ - "utils.string", - "utils.string._ascii_from_digit" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 24, - "end_line": 46, - "input_file": { - "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/utils/string.cairo" - }, - "start_col": 13, - "start_line": 46 - } - }, - "456": { - "accessible_scopes": [ - "utils.string", - "utils.string._ascii_from_digit" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 27, - "end_line": 46, - "input_file": { - "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/utils/string.cairo" - }, - "start_col": 5, - "start_line": 46 - } - }, - "457": { - "accessible_scopes": [ - "utils.string", - "utils.string._recurse_ascii_array_from_number" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 18, - "end_line": 52, - "input_file": { - "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/utils/string.cairo" - }, - "start_col": 5, - "start_line": 52 - } - }, - "459": { - "accessible_scopes": [ - "utils.string", - "utils.string._recurse_ascii_array_from_number" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 7, - "end_line": 54, - "input_file": { - "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/utils/string.cairo" - }, - "start_col": 5, - "start_line": 54 - } - }, - "461": { - "accessible_scopes": [ - "utils.string", - "utils.string._recurse_ascii_array_from_number" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 54, - "end_line": 49, - "input_file": { - "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/utils/string.cairo" - }, - "parent_location": [ - { - "end_col": 54, - "end_line": 49, - "input_file": { - "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/utils/string.cairo" - }, - "parent_location": [ - { - "end_col": 33, - "end_line": 55, - "input_file": { - "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/utils/string.cairo" - }, - "start_col": 9, - "start_line": 55 - }, - "While trying to retrieve the implicit argument 'range_check_ptr' in:" - ], - "start_col": 39, - "start_line": 49 - }, - "While expanding the reference 'range_check_ptr' in:" - ], - "start_col": 39, - "start_line": 49 - } - }, - "462": { - "accessible_scopes": [ - "utils.string", - "utils.string._recurse_ascii_array_from_number" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 38, - "end_line": 50, - "input_file": { - "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/utils/string.cairo" - }, - "parent_location": [ - { - "end_col": 30, - "end_line": 55, - "input_file": { - "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/utils/string.cairo" - }, - "start_col": 17, - "start_line": 55 - }, - "While expanding the reference 'arr_ascii_len' in:" - ], - "start_col": 19, - "start_line": 50 - } - }, - "463": { - "accessible_scopes": [ - "utils.string", - "utils.string._recurse_ascii_array_from_number" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 33, - "end_line": 55, - "input_file": { - "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/utils/string.cairo" - }, - "start_col": 9, - "start_line": 55 - } - }, - "464": { - "accessible_scopes": [ - "utils.string", - "utils.string._recurse_ascii_array_from_number" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 54, - "end_line": 49, - "input_file": { - "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/utils/string.cairo" - }, - "parent_location": [ - { - "end_col": 38, - "end_line": 297, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/math.cairo" - }, - "parent_location": [ - { - "end_col": 59, - "end_line": 58, - "input_file": { - "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/utils/string.cairo" - }, - "start_col": 31, - "start_line": 58 - }, - "While trying to retrieve the implicit argument 'range_check_ptr' in:" - ], - "start_col": 23, - "start_line": 297 - }, - "While expanding the reference 'range_check_ptr' in:" - ], - "start_col": 39, - "start_line": 49 - } - }, - "465": { - "accessible_scopes": [ - "utils.string", - "utils.string._recurse_ascii_array_from_number" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 17, - "end_line": 50, - "input_file": { - "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/utils/string.cairo" - }, - "parent_location": [ - { - "end_col": 54, - "end_line": 58, - "input_file": { - "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/utils/string.cairo" - }, - "start_col": 48, - "start_line": 58 - }, - "While expanding the reference 'remain' in:" - ], - "start_col": 5, - "start_line": 50 - } - }, - "466": { - "accessible_scopes": [ - "utils.string", - "utils.string._recurse_ascii_array_from_number" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 58, - "end_line": 58, - "input_file": { - "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/utils/string.cairo" - }, - "start_col": 56, - "start_line": 58 - } - }, - "468": { - "accessible_scopes": [ - "utils.string", - "utils.string._recurse_ascii_array_from_number" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 59, - "end_line": 58, - "input_file": { - "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/utils/string.cairo" - }, - "start_col": 31, - "start_line": 58 - } - }, - "470": { - "accessible_scopes": [ - "utils.string", - "utils.string._recurse_ascii_array_from_number" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 43, - "end_line": 59, - "input_file": { - "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/utils/string.cairo" - }, - "start_col": 19, - "start_line": 59 - } - }, - "472": { - "accessible_scopes": [ - "utils.string", - "utils.string._recurse_ascii_array_from_number" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 36, - "end_line": 60, - "input_file": { - "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/utils/string.cairo" - }, - "start_col": 12, - "start_line": 60 - } - }, - "473": { - "accessible_scopes": [ - "utils.string", - "utils.string._recurse_ascii_array_from_number" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 45, - "end_line": 60, - "input_file": { - "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/utils/string.cairo" - }, - "start_col": 5, - "start_line": 60 - } - }, - "474": { - "accessible_scopes": [ - "utils.string", - "utils.string._recurse_ascii_array_from_number" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 38, - "end_line": 297, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/math.cairo" - }, - "parent_location": [ - { - "end_col": 59, - "end_line": 58, - "input_file": { - "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/utils/string.cairo" - }, - "parent_location": [ - { - "end_col": 54, - "end_line": 49, - "input_file": { - "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/utils/string.cairo" - }, - "parent_location": [ - { - "end_col": 6, - "end_line": 67, - "input_file": { - "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/utils/string.cairo" - }, - "start_col": 33, - "start_line": 65 - }, - "While trying to retrieve the implicit argument 'range_check_ptr' in:" - ], - "start_col": 39, - "start_line": 49 - }, - "While expanding the reference 'range_check_ptr' in:" - ], - "start_col": 31, - "start_line": 58 - }, - "While trying to update the implicit return value 'range_check_ptr' in:" - ], - "start_col": 23, - "start_line": 297 - } - }, - "475": { - "accessible_scopes": [ - "utils.string", - "utils.string._recurse_ascii_array_from_number" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 20, - "end_line": 58, - "input_file": { - "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/utils/string.cairo" - }, - "parent_location": [ - { - "end_col": 26, - "end_line": 66, - "input_file": { - "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/utils/string.cairo" - }, - "start_col": 16, - "start_line": 66 - }, - "While expanding the reference 'remain_nxt' in:" - ], - "start_col": 10, - "start_line": 58 - } - }, - "476": { - "accessible_scopes": [ - "utils.string", - "utils.string._recurse_ascii_array_from_number" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 59, - "end_line": 66, - "input_file": { - "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/utils/string.cairo" - }, - "start_col": 42, - "start_line": 66 - } - }, - "478": { - "accessible_scopes": [ - "utils.string", - "utils.string._recurse_ascii_array_from_number" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 56, - "end_line": 50, - "input_file": { - "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/utils/string.cairo" - }, - "parent_location": [ - { - "end_col": 80, - "end_line": 66, - "input_file": { - "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/utils/string.cairo" - }, - "start_col": 71, - "start_line": 66 - }, - "While expanding the reference 'arr_ascii' in:" - ], - "start_col": 40, - "start_line": 50 - } - }, - "479": { - "accessible_scopes": [ - "utils.string", - "utils.string._recurse_ascii_array_from_number" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 6, - "end_line": 67, - "input_file": { - "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/utils/string.cairo" - }, - "start_col": 33, - "start_line": 65 - } - }, - "481": { - "accessible_scopes": [ - "utils.string", - "utils.string._recurse_ascii_array_from_number" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 35, - "end_line": 68, - "input_file": { - "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/utils/string.cairo" - }, - "start_col": 5, - "start_line": 68 - } - }, - "482": { - "accessible_scopes": [ - "utils.string", - "utils.string._recurse_ascii_from_ascii_array_inverse" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 19, - "end_line": 74, - "input_file": { - "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/utils/string.cairo" - }, - "start_col": 9, - "start_line": 74 - } - }, - "483": { - "accessible_scopes": [ - "utils.string", - "utils.string._recurse_ascii_from_ascii_array_inverse" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 7, - "end_line": 74, - "input_file": { - "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/utils/string.cairo" - }, - "start_col": 5, - "start_line": 74 - } - }, - "485": { - "accessible_scopes": [ - "utils.string", - "utils.string._recurse_ascii_from_ascii_array_inverse" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 61, - "end_line": 71, - "input_file": { - "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/utils/string.cairo" - }, - "parent_location": [ - { - "end_col": 61, - "end_line": 71, - "input_file": { - "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/utils/string.cairo" - }, - "parent_location": [ - { - "end_col": 25, - "end_line": 75, - "input_file": { - "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/utils/string.cairo" - }, - "start_col": 9, - "start_line": 75 - }, - "While trying to retrieve the implicit argument 'range_check_ptr' in:" - ], - "start_col": 46, - "start_line": 71 - }, - "While expanding the reference 'range_check_ptr' in:" - ], - "start_col": 46, - "start_line": 71 - } - }, - "486": { - "accessible_scopes": [ - "utils.string", - "utils.string._recurse_ascii_from_ascii_array_inverse" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 16, - "end_line": 72, - "input_file": { - "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/utils/string.cairo" - }, - "parent_location": [ - { - "end_col": 22, - "end_line": 75, - "input_file": { - "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/utils/string.cairo" - }, - "start_col": 17, - "start_line": 75 - }, - "While expanding the reference 'ascii' in:" - ], - "start_col": 5, - "start_line": 72 - } - }, - "487": { - "accessible_scopes": [ - "utils.string", - "utils.string._recurse_ascii_from_ascii_array_inverse" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 25, - "end_line": 75, - "input_file": { - "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/utils/string.cairo" - }, - "start_col": 9, - "start_line": 75 - } - }, - "488": { - "accessible_scopes": [ - "utils.string", - "utils.string._recurse_ascii_from_ascii_array_inverse" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 32, - "end_line": 78, - "input_file": { - "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/utils/string.cairo" - }, - "parent_location": [ - { - "end_col": 24, - "end_line": 84, - "input_file": { - "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/utils/string.cairo" - }, - "start_col": 15, - "start_line": 84 - }, - "While expanding the reference 'ascii_nxt' in:" - ], - "start_col": 21, - "start_line": 78 - } - }, - "490": { - "accessible_scopes": [ - "utils.string", - "utils.string._recurse_ascii_from_ascii_array_inverse" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 52, - "end_line": 78, - "input_file": { - "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/utils/string.cairo" - }, - "parent_location": [ - { - "end_col": 24, - "end_line": 84, - "input_file": { - "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/utils/string.cairo" - }, - "start_col": 15, - "start_line": 84 - }, - "While expanding the reference 'ascii_nxt' in:" - ], - "start_col": 39, - "start_line": 78 - } - }, - "492": { - "accessible_scopes": [ - "utils.string", - "utils.string._recurse_ascii_from_ascii_array_inverse" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 52, - "end_line": 78, - "input_file": { - "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/utils/string.cairo" - }, - "parent_location": [ - { - "end_col": 24, - "end_line": 84, - "input_file": { - "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/utils/string.cairo" - }, - "start_col": 15, - "start_line": 84 - }, - "While expanding the reference 'ascii_nxt' in:" - ], - "start_col": 39, - "start_line": 78 - } - }, - "493": { - "accessible_scopes": [ - "utils.string", - "utils.string._recurse_ascii_from_ascii_array_inverse" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 53, - "end_line": 78, - "input_file": { - "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/utils/string.cairo" - }, - "parent_location": [ - { - "end_col": 24, - "end_line": 84, - "input_file": { - "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/utils/string.cairo" - }, - "start_col": 15, - "start_line": 84 - }, - "While expanding the reference 'ascii_nxt' in:" - ], - "start_col": 35, - "start_line": 78 - } - }, - "494": { - "accessible_scopes": [ - "utils.string", - "utils.string._recurse_ascii_from_ascii_array_inverse" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 53, - "end_line": 78, - "input_file": { - "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/utils/string.cairo" - }, - "parent_location": [ - { - "end_col": 24, - "end_line": 84, - "input_file": { - "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/utils/string.cairo" - }, - "start_col": 15, - "start_line": 84 - }, - "While expanding the reference 'ascii_nxt' in:" - ], - "start_col": 35, - "start_line": 78 - } - }, - "495": { - "accessible_scopes": [ - "utils.string", - "utils.string._recurse_ascii_from_ascii_array_inverse" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 61, - "end_line": 71, - "input_file": { - "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/utils/string.cairo" - }, - "parent_location": [ - { - "end_col": 61, - "end_line": 71, - "input_file": { - "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/utils/string.cairo" - }, - "parent_location": [ - { - "end_col": 6, - "end_line": 85, - "input_file": { - "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/utils/string.cairo" - }, - "start_col": 25, - "start_line": 83 - }, - "While trying to retrieve the implicit argument 'range_check_ptr' in:" - ], - "start_col": 46, - "start_line": 71 - }, - "While expanding the reference 'range_check_ptr' in:" - ], - "start_col": 46, - "start_line": 71 - } - }, - "496": { - "accessible_scopes": [ - "utils.string", - "utils.string._recurse_ascii_from_ascii_array_inverse" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 53, - "end_line": 78, - "input_file": { - "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/utils/string.cairo" - }, - "parent_location": [ - { - "end_col": 24, - "end_line": 84, - "input_file": { - "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/utils/string.cairo" - }, - "start_col": 15, - "start_line": 84 - }, - "While expanding the reference 'ascii_nxt' in:" - ], - "start_col": 21, - "start_line": 78 - } - }, - "497": { - "accessible_scopes": [ - "utils.string", - "utils.string._recurse_ascii_from_ascii_array_inverse" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 27, - "end_line": 72, - "input_file": { - "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/utils/string.cairo" - }, - "parent_location": [ - { - "end_col": 33, - "end_line": 84, - "input_file": { - "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/utils/string.cairo" - }, - "start_col": 30, - "start_line": 84 - }, - "While expanding the reference 'len' in:" - ], - "start_col": 18, - "start_line": 72 - } - }, - "498": { - "accessible_scopes": [ - "utils.string", - "utils.string._recurse_ascii_from_ascii_array_inverse" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 39, - "end_line": 72, - "input_file": { - "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/utils/string.cairo" - }, - "parent_location": [ - { - "end_col": 42, - "end_line": 84, - "input_file": { - "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/utils/string.cairo" - }, - "start_col": 39, - "start_line": 84 - }, - "While expanding the reference 'arr' in:" - ], - "start_col": 29, - "start_line": 72 - } - }, - "499": { - "accessible_scopes": [ - "utils.string", - "utils.string._recurse_ascii_from_ascii_array_inverse" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 55, - "end_line": 84, - "input_file": { - "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/utils/string.cairo" - }, - "start_col": 48, - "start_line": 84 - } - }, - "501": { - "accessible_scopes": [ - "utils.string", - "utils.string._recurse_ascii_from_ascii_array_inverse" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 6, - "end_line": 85, - "input_file": { - "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/utils/string.cairo" - }, - "start_col": 25, - "start_line": 83 - } - }, - "503": { - "accessible_scopes": [ - "utils.string", - "utils.string._recurse_ascii_from_ascii_array_inverse" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 27, - "end_line": 86, - "input_file": { - "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/utils/string.cairo" - }, - "start_col": 5, - "start_line": 86 - } - }, - "504": { - "accessible_scopes": [ - "starkware.cairo.common.registers", - "starkware.cairo.common.registers.get_label_location" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 38, - "end_line": 22, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/registers.cairo" - }, - "start_col": 23, - "start_line": 22 - } - }, - "506": { - "accessible_scopes": [ - "starkware.cairo.common.registers", - "starkware.cairo.common.registers.get_label_location" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 53, - "end_line": 25, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/registers.cairo" - }, - "start_col": 27, - "start_line": 25 - } - }, - "508": { - "accessible_scopes": [ - "starkware.cairo.common.registers", - "starkware.cairo.common.registers.get_label_location" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 54, - "end_line": 25, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/registers.cairo" - }, - "start_col": 17, - "start_line": 25 - } - }, - "509": { - "accessible_scopes": [ - "starkware.cairo.common.registers", - "starkware.cairo.common.registers.get_label_location" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 56, - "end_line": 25, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/registers.cairo" - }, - "start_col": 5, - "start_line": 25 - } - }, - "510": { - "accessible_scopes": [ - "__main__", - "__main__._uris_len", - "__main__._uris_len.addr" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 41, - "end_line": 7, - "input_file": { - "filename": "autogen/starknet/storage_var/_uris_len/impl.cairo" - }, - "parent_location": [ - { - "end_col": 41, - "end_line": 7, - "input_file": { - "filename": "autogen/starknet/storage_var/_uris_len/decl.cairo" - }, - "parent_location": [ - { - "end_col": 26, - "end_line": 9, - "input_file": { - "filename": "autogen/starknet/storage_var/_uris_len/impl.cairo" - }, - "start_col": 9, - "start_line": 9 - }, - "While trying to retrieve the implicit argument 'pedersen_ptr' in:" - ], - "start_col": 15, - "start_line": 7 - }, - "While expanding the reference 'pedersen_ptr' in:" - ], - "start_col": 15, - "start_line": 7 - } - }, - "511": { - "accessible_scopes": [ - "__main__", - "__main__._uris_len", - "__main__._uris_len.addr" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 58, - "end_line": 7, - "input_file": { - "filename": "autogen/starknet/storage_var/_uris_len/impl.cairo" - }, - "parent_location": [ - { - "end_col": 58, - "end_line": 7, - "input_file": { - "filename": "autogen/starknet/storage_var/_uris_len/decl.cairo" - }, - "parent_location": [ - { - "end_col": 26, - "end_line": 9, - "input_file": { - "filename": "autogen/starknet/storage_var/_uris_len/impl.cairo" - }, - "start_col": 9, - "start_line": 9 - }, - "While trying to retrieve the implicit argument 'range_check_ptr' in:" - ], - "start_col": 43, - "start_line": 7 - }, - "While expanding the reference 'range_check_ptr' in:" - ], - "start_col": 43, - "start_line": 7 - } - }, - "512": { - "accessible_scopes": [ - "__main__", - "__main__._uris_len", - "__main__._uris_len.addr" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 94, - "end_line": 8, - "input_file": { - "filename": "autogen/starknet/storage_var/_uris_len/impl.cairo" - }, - "parent_location": [ - { - "end_col": 24, - "end_line": 9, - "input_file": { - "filename": "autogen/starknet/storage_var/_uris_len/impl.cairo" - }, - "start_col": 21, - "start_line": 9 - }, - "While expanding the reference 'res' in:" - ], - "start_col": 19, - "start_line": 8 - } - }, - "514": { - "accessible_scopes": [ - "__main__", - "__main__._uris_len", - "__main__._uris_len.addr" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 26, - "end_line": 9, - "input_file": { - "filename": "autogen/starknet/storage_var/_uris_len/impl.cairo" - }, - "start_col": 9, - "start_line": 9 - } - }, - "515": { - "accessible_scopes": [ - "__main__", - "__main__._uris_len", - "__main__._uris_len.read" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 61, - "end_line": 12, - "input_file": { - "filename": "autogen/starknet/storage_var/_uris_len/impl.cairo" - }, - "parent_location": [ - { - "end_col": 41, - "end_line": 7, - "input_file": { - "filename": "autogen/starknet/storage_var/_uris_len/decl.cairo" - }, - "parent_location": [ - { - "end_col": 36, - "end_line": 13, - "input_file": { - "filename": "autogen/starknet/storage_var/_uris_len/impl.cairo" - }, - "start_col": 30, - "start_line": 13 - }, - "While trying to retrieve the implicit argument 'pedersen_ptr' in:" - ], - "start_col": 15, - "start_line": 7 - }, - "While expanding the reference 'pedersen_ptr' in:" - ], - "start_col": 35, - "start_line": 12 - } - }, - "516": { - "accessible_scopes": [ - "__main__", - "__main__._uris_len", - "__main__._uris_len.read" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 78, - "end_line": 12, - "input_file": { - "filename": "autogen/starknet/storage_var/_uris_len/impl.cairo" - }, - "parent_location": [ - { - "end_col": 58, - "end_line": 7, - "input_file": { - "filename": "autogen/starknet/storage_var/_uris_len/decl.cairo" - }, - "parent_location": [ - { - "end_col": 36, - "end_line": 13, - "input_file": { - "filename": "autogen/starknet/storage_var/_uris_len/impl.cairo" - }, - "start_col": 30, - "start_line": 13 - }, - "While trying to retrieve the implicit argument 'range_check_ptr' in:" - ], - "start_col": 43, - "start_line": 7 - }, - "While expanding the reference 'range_check_ptr' in:" - ], - "start_col": 63, - "start_line": 12 - } - }, - "517": { - "accessible_scopes": [ - "__main__", - "__main__._uris_len", - "__main__._uris_len.read" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 36, - "end_line": 13, - "input_file": { - "filename": "autogen/starknet/storage_var/_uris_len/impl.cairo" - }, - "start_col": 30, - "start_line": 13 - } - }, - "519": { - "accessible_scopes": [ - "__main__", - "__main__._uris_len", - "__main__._uris_len.read" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 33, - "end_line": 12, - "input_file": { - "filename": "autogen/starknet/storage_var/_uris_len/impl.cairo" - }, - "parent_location": [ - { - "end_col": 37, - "end_line": 352, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/starknet/common/syscalls.cairo" - }, - "parent_location": [ - { - "end_col": 75, - "end_line": 14, - "input_file": { - "filename": "autogen/starknet/storage_var/_uris_len/impl.cairo" - }, - "start_col": 37, - "start_line": 14 - }, - "While trying to retrieve the implicit argument 'syscall_ptr' in:" - ], - "start_col": 19, - "start_line": 352 - }, - "While expanding the reference 'syscall_ptr' in:" - ], - "start_col": 15, - "start_line": 12 - } - }, - "520": { - "accessible_scopes": [ - "__main__", - "__main__._uris_len", - "__main__._uris_len.read" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 26, - "end_line": 13, - "input_file": { - "filename": "autogen/starknet/storage_var/_uris_len/impl.cairo" - }, - "parent_location": [ - { - "end_col": 70, - "end_line": 14, - "input_file": { - "filename": "autogen/starknet/storage_var/_uris_len/impl.cairo" - }, - "start_col": 58, - "start_line": 14 - }, - "While expanding the reference 'storage_addr' in:" - ], - "start_col": 14, - "start_line": 13 - } - }, - "521": { - "accessible_scopes": [ - "__main__", - "__main__._uris_len", - "__main__._uris_len.read" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 75, - "end_line": 14, - "input_file": { - "filename": "autogen/starknet/storage_var/_uris_len/impl.cairo" - }, - "start_col": 37, - "start_line": 14 - } - }, - "523": { - "accessible_scopes": [ - "__main__", - "__main__._uris_len", - "__main__._uris_len.read" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 37, - "end_line": 352, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/starknet/common/syscalls.cairo" - }, - "parent_location": [ - { - "end_col": 75, - "end_line": 14, - "input_file": { - "filename": "autogen/starknet/storage_var/_uris_len/impl.cairo" - }, - "parent_location": [ - { - "end_col": 42, - "end_line": 16, - "input_file": { - "filename": "autogen/starknet/storage_var/_uris_len/impl.cairo" - }, - "start_col": 31, - "start_line": 16 - }, - "While expanding the reference 'syscall_ptr' in:" - ], - "start_col": 37, - "start_line": 14 - }, - "While trying to update the implicit return value 'syscall_ptr' in:" - ], - "start_col": 19, - "start_line": 352 - } - }, - "524": { - "accessible_scopes": [ - "__main__", - "__main__._uris_len", - "__main__._uris_len.read" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 41, - "end_line": 7, - "input_file": { - "filename": "autogen/starknet/storage_var/_uris_len/decl.cairo" - }, - "parent_location": [ - { - "end_col": 36, - "end_line": 13, - "input_file": { - "filename": "autogen/starknet/storage_var/_uris_len/impl.cairo" - }, - "parent_location": [ - { - "end_col": 44, - "end_line": 17, - "input_file": { - "filename": "autogen/starknet/storage_var/_uris_len/impl.cairo" - }, - "start_col": 32, - "start_line": 17 - }, - "While expanding the reference 'pedersen_ptr' in:" - ], - "start_col": 30, - "start_line": 13 - }, - "While trying to update the implicit return value 'pedersen_ptr' in:" - ], - "start_col": 15, - "start_line": 7 - } - }, - "525": { - "accessible_scopes": [ - "__main__", - "__main__._uris_len", - "__main__._uris_len.read" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 58, - "end_line": 7, - "input_file": { - "filename": "autogen/starknet/storage_var/_uris_len/decl.cairo" - }, - "parent_location": [ - { - "end_col": 36, - "end_line": 13, - "input_file": { - "filename": "autogen/starknet/storage_var/_uris_len/impl.cairo" - }, - "parent_location": [ - { - "end_col": 50, - "end_line": 18, - "input_file": { - "filename": "autogen/starknet/storage_var/_uris_len/impl.cairo" - }, - "start_col": 35, - "start_line": 18 - }, - "While expanding the reference 'range_check_ptr' in:" - ], - "start_col": 30, - "start_line": 13 - }, - "While trying to update the implicit return value 'range_check_ptr' in:" - ], - "start_col": 43, - "start_line": 7 - } - }, - "526": { - "accessible_scopes": [ - "__main__", - "__main__._uris_len", - "__main__._uris_len.read" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 33, - "end_line": 14, - "input_file": { - "filename": "autogen/starknet/storage_var/_uris_len/impl.cairo" - }, - "parent_location": [ - { - "end_col": 64, - "end_line": 19, - "input_file": { - "filename": "autogen/starknet/storage_var/_uris_len/impl.cairo" - }, - "start_col": 45, - "start_line": 19 - }, - "While expanding the reference '__storage_var_temp0' in:" - ], - "start_col": 14, - "start_line": 14 - } - }, - "527": { - "accessible_scopes": [ - "__main__", - "__main__._uris_len", - "__main__._uris_len.read" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 55, - "end_line": 20, - "input_file": { - "filename": "autogen/starknet/storage_var/_uris_len/impl.cairo" - }, - "start_col": 9, - "start_line": 20 - } - }, - "528": { - "accessible_scopes": [ - "__main__", - "__main__._uris_len", - "__main__._uris_len.write" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 62, - "end_line": 23, - "input_file": { - "filename": "autogen/starknet/storage_var/_uris_len/impl.cairo" - }, - "parent_location": [ - { - "end_col": 41, - "end_line": 7, - "input_file": { - "filename": "autogen/starknet/storage_var/_uris_len/decl.cairo" - }, - "parent_location": [ - { - "end_col": 36, - "end_line": 24, - "input_file": { - "filename": "autogen/starknet/storage_var/_uris_len/impl.cairo" - }, - "start_col": 30, - "start_line": 24 - }, - "While trying to retrieve the implicit argument 'pedersen_ptr' in:" - ], - "start_col": 15, - "start_line": 7 - }, - "While expanding the reference 'pedersen_ptr' in:" - ], - "start_col": 36, - "start_line": 23 - } - }, - "529": { - "accessible_scopes": [ - "__main__", - "__main__._uris_len", - "__main__._uris_len.write" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 79, - "end_line": 23, - "input_file": { - "filename": "autogen/starknet/storage_var/_uris_len/impl.cairo" - }, - "parent_location": [ - { - "end_col": 58, - "end_line": 7, - "input_file": { - "filename": "autogen/starknet/storage_var/_uris_len/decl.cairo" - }, - "parent_location": [ - { - "end_col": 36, - "end_line": 24, - "input_file": { - "filename": "autogen/starknet/storage_var/_uris_len/impl.cairo" - }, - "start_col": 30, - "start_line": 24 - }, - "While trying to retrieve the implicit argument 'range_check_ptr' in:" - ], - "start_col": 43, - "start_line": 7 - }, - "While expanding the reference 'range_check_ptr' in:" - ], - "start_col": 64, - "start_line": 23 - } - }, - "530": { - "accessible_scopes": [ - "__main__", - "__main__._uris_len", - "__main__._uris_len.write" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 36, - "end_line": 24, - "input_file": { - "filename": "autogen/starknet/storage_var/_uris_len/impl.cairo" - }, - "start_col": 30, - "start_line": 24 - } - }, - "532": { - "accessible_scopes": [ - "__main__", - "__main__._uris_len", - "__main__._uris_len.write" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 34, - "end_line": 23, - "input_file": { - "filename": "autogen/starknet/storage_var/_uris_len/impl.cairo" - }, - "parent_location": [ - { - "end_col": 38, - "end_line": 370, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/starknet/common/syscalls.cairo" - }, - "parent_location": [ - { - "end_col": 80, - "end_line": 25, - "input_file": { - "filename": "autogen/starknet/storage_var/_uris_len/impl.cairo" - }, - "start_col": 9, - "start_line": 25 - }, - "While trying to retrieve the implicit argument 'syscall_ptr' in:" - ], - "start_col": 20, - "start_line": 370 - }, - "While expanding the reference 'syscall_ptr' in:" - ], - "start_col": 16, - "start_line": 23 - } - }, - "533": { - "accessible_scopes": [ - "__main__", - "__main__._uris_len", - "__main__._uris_len.write" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 26, - "end_line": 24, - "input_file": { - "filename": "autogen/starknet/storage_var/_uris_len/impl.cairo" - }, - "parent_location": [ - { - "end_col": 43, - "end_line": 25, - "input_file": { - "filename": "autogen/starknet/storage_var/_uris_len/impl.cairo" - }, - "start_col": 31, - "start_line": 25 - }, - "While expanding the reference 'storage_addr' in:" - ], - "start_col": 14, - "start_line": 24 - } - }, - "534": { - "accessible_scopes": [ - "__main__", - "__main__._uris_len", - "__main__._uris_len.write" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 79, - "end_line": 25, - "input_file": { - "filename": "autogen/starknet/storage_var/_uris_len/impl.cairo" - }, - "start_col": 55, - "start_line": 25 - } - }, - "535": { - "accessible_scopes": [ - "__main__", - "__main__._uris_len", - "__main__._uris_len.write" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 80, - "end_line": 25, - "input_file": { - "filename": "autogen/starknet/storage_var/_uris_len/impl.cairo" - }, - "start_col": 9, - "start_line": 25 - } - }, - "537": { - "accessible_scopes": [ - "__main__", - "__main__._uris_len", - "__main__._uris_len.write" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 41, - "end_line": 7, - "input_file": { - "filename": "autogen/starknet/storage_var/_uris_len/decl.cairo" - }, - "parent_location": [ - { - "end_col": 36, - "end_line": 24, - "input_file": { - "filename": "autogen/starknet/storage_var/_uris_len/impl.cairo" - }, - "parent_location": [ - { - "end_col": 62, - "end_line": 19, - "input_file": { - "filename": "autogen/starknet/storage_var/_uris_len/decl.cairo" - }, - "parent_location": [ - { - "end_col": 19, - "end_line": 26, - "input_file": { - "filename": "autogen/starknet/storage_var/_uris_len/impl.cairo" - }, - "start_col": 9, - "start_line": 26 - }, - "While trying to retrieve the implicit argument 'pedersen_ptr' in:" - ], - "start_col": 36, - "start_line": 19 - }, - "While expanding the reference 'pedersen_ptr' in:" - ], - "start_col": 30, - "start_line": 24 - }, - "While trying to update the implicit return value 'pedersen_ptr' in:" - ], - "start_col": 15, - "start_line": 7 - } - }, - "538": { - "accessible_scopes": [ - "__main__", - "__main__._uris_len", - "__main__._uris_len.write" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 58, - "end_line": 7, - "input_file": { - "filename": "autogen/starknet/storage_var/_uris_len/decl.cairo" - }, - "parent_location": [ - { - "end_col": 36, - "end_line": 24, - "input_file": { - "filename": "autogen/starknet/storage_var/_uris_len/impl.cairo" - }, - "parent_location": [ - { - "end_col": 79, - "end_line": 19, - "input_file": { - "filename": "autogen/starknet/storage_var/_uris_len/decl.cairo" - }, - "parent_location": [ - { - "end_col": 19, - "end_line": 26, - "input_file": { - "filename": "autogen/starknet/storage_var/_uris_len/impl.cairo" - }, - "start_col": 9, - "start_line": 26 - }, - "While trying to retrieve the implicit argument 'range_check_ptr' in:" - ], - "start_col": 64, - "start_line": 19 - }, - "While expanding the reference 'range_check_ptr' in:" - ], - "start_col": 30, - "start_line": 24 - }, - "While trying to update the implicit return value 'range_check_ptr' in:" - ], - "start_col": 43, - "start_line": 7 - } - }, - "539": { - "accessible_scopes": [ - "__main__", - "__main__._uris_len", - "__main__._uris_len.write" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 19, - "end_line": 26, - "input_file": { - "filename": "autogen/starknet/storage_var/_uris_len/impl.cairo" - }, - "start_col": 9, - "start_line": 26 - } - }, - "540": { - "accessible_scopes": [ - "__main__", - "__main__._uris", - "__main__._uris.addr" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 41, - "end_line": 7, - "input_file": { - "filename": "autogen/starknet/storage_var/_uris/impl.cairo" - }, - "parent_location": [ - { - "end_col": 48, - "end_line": 9, - "input_file": { - "filename": "autogen/starknet/storage_var/_uris/impl.cairo" - }, - "start_col": 36, - "start_line": 9 - }, - "While expanding the reference 'pedersen_ptr' in:" - ], - "start_col": 15, - "start_line": 7 - } - }, - "541": { - "accessible_scopes": [ - "__main__", - "__main__._uris", - "__main__._uris.addr" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 95, - "end_line": 8, - "input_file": { - "filename": "autogen/starknet/storage_var/_uris/impl.cairo" - }, - "parent_location": [ - { - "end_col": 53, - "end_line": 9, - "input_file": { - "filename": "autogen/starknet/storage_var/_uris/impl.cairo" - }, - "start_col": 50, - "start_line": 9 - }, - "While expanding the reference 'res' in:" - ], - "start_col": 19, - "start_line": 8 - } - }, - "543": { - "accessible_scopes": [ - "__main__", - "__main__._uris", - "__main__._uris.addr" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 77, - "end_line": 9, - "input_file": { - "filename": "autogen/starknet/storage_var/_uris/impl.cairo" - }, - "start_col": 55, - "start_line": 9 - } - }, - "544": { - "accessible_scopes": [ - "__main__", - "__main__._uris", - "__main__._uris.addr" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 78, - "end_line": 9, - "input_file": { - "filename": "autogen/starknet/storage_var/_uris/impl.cairo" - }, - "start_col": 21, - "start_line": 9 - } - }, - "546": { - "accessible_scopes": [ - "__main__", - "__main__._uris", - "__main__._uris.addr" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 58, - "end_line": 7, - "input_file": { - "filename": "autogen/starknet/storage_var/_uris/impl.cairo" - }, - "parent_location": [ - { - "end_col": 39, - "end_line": 12, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/starknet/common/storage.cairo" - }, - "parent_location": [ - { - "end_col": 48, - "end_line": 10, - "input_file": { - "filename": "autogen/starknet/storage_var/_uris/impl.cairo" - }, - "start_col": 21, - "start_line": 10 - }, - "While trying to retrieve the implicit argument 'range_check_ptr' in:" - ], - "start_col": 24, - "start_line": 12 - }, - "While expanding the reference 'range_check_ptr' in:" - ], - "start_col": 43, - "start_line": 7 - } - }, - "547": { - "accessible_scopes": [ - "__main__", - "__main__._uris", - "__main__._uris.addr" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 17, - "end_line": 9, - "input_file": { - "filename": "autogen/starknet/storage_var/_uris/impl.cairo" - }, - "parent_location": [ - { - "end_col": 47, - "end_line": 10, - "input_file": { - "filename": "autogen/starknet/storage_var/_uris/impl.cairo" - }, - "start_col": 44, - "start_line": 10 - }, - "While expanding the reference 'res' in:" - ], - "start_col": 14, - "start_line": 9 - } - }, - "548": { - "accessible_scopes": [ - "__main__", - "__main__._uris", - "__main__._uris.addr" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 48, - "end_line": 10, - "input_file": { - "filename": "autogen/starknet/storage_var/_uris/impl.cairo" - }, - "start_col": 21, - "start_line": 10 - } - }, - "550": { - "accessible_scopes": [ - "__main__", - "__main__._uris", - "__main__._uris.addr" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 48, - "end_line": 9, - "input_file": { - "filename": "autogen/starknet/storage_var/_uris/impl.cairo" - }, - "parent_location": [ - { - "end_col": 41, - "end_line": 7, - "input_file": { - "filename": "autogen/starknet/storage_var/_uris/decl.cairo" - }, - "parent_location": [ - { - "end_col": 26, - "end_line": 11, - "input_file": { - "filename": "autogen/starknet/storage_var/_uris/impl.cairo" - }, - "start_col": 9, - "start_line": 11 - }, - "While trying to retrieve the implicit argument 'pedersen_ptr' in:" - ], - "start_col": 15, - "start_line": 7 - }, - "While expanding the reference 'pedersen_ptr' in:" - ], - "start_col": 36, - "start_line": 9 - } - }, - "551": { - "accessible_scopes": [ - "__main__", - "__main__._uris", - "__main__._uris.addr" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 39, - "end_line": 12, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/starknet/common/storage.cairo" - }, - "parent_location": [ - { - "end_col": 48, - "end_line": 10, - "input_file": { - "filename": "autogen/starknet/storage_var/_uris/impl.cairo" - }, - "parent_location": [ - { - "end_col": 58, - "end_line": 7, - "input_file": { - "filename": "autogen/starknet/storage_var/_uris/decl.cairo" - }, - "parent_location": [ - { - "end_col": 26, - "end_line": 11, - "input_file": { - "filename": "autogen/starknet/storage_var/_uris/impl.cairo" - }, - "start_col": 9, - "start_line": 11 - }, - "While trying to retrieve the implicit argument 'range_check_ptr' in:" - ], - "start_col": 43, - "start_line": 7 - }, - "While expanding the reference 'range_check_ptr' in:" - ], - "start_col": 21, - "start_line": 10 - }, - "While trying to update the implicit return value 'range_check_ptr' in:" - ], - "start_col": 24, - "start_line": 12 - } - }, - "552": { - "accessible_scopes": [ - "__main__", - "__main__._uris", - "__main__._uris.addr" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 17, - "end_line": 10, - "input_file": { - "filename": "autogen/starknet/storage_var/_uris/impl.cairo" - }, - "parent_location": [ - { - "end_col": 24, - "end_line": 11, - "input_file": { - "filename": "autogen/starknet/storage_var/_uris/impl.cairo" - }, - "start_col": 21, - "start_line": 11 - }, - "While expanding the reference 'res' in:" - ], - "start_col": 14, - "start_line": 10 - } - }, - "553": { - "accessible_scopes": [ - "__main__", - "__main__._uris", - "__main__._uris.addr" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 26, - "end_line": 11, - "input_file": { - "filename": "autogen/starknet/storage_var/_uris/impl.cairo" - }, - "start_col": 9, - "start_line": 11 - } - }, - "554": { - "accessible_scopes": [ - "__main__", - "__main__._uris", - "__main__._uris.read" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 61, - "end_line": 14, - "input_file": { - "filename": "autogen/starknet/storage_var/_uris/impl.cairo" - }, - "parent_location": [ - { - "end_col": 41, - "end_line": 7, - "input_file": { - "filename": "autogen/starknet/storage_var/_uris/decl.cairo" - }, - "parent_location": [ - { - "end_col": 41, - "end_line": 17, - "input_file": { - "filename": "autogen/starknet/storage_var/_uris/impl.cairo" - }, - "start_col": 30, - "start_line": 17 - }, - "While trying to retrieve the implicit argument 'pedersen_ptr' in:" - ], - "start_col": 15, - "start_line": 7 - }, - "While expanding the reference 'pedersen_ptr' in:" - ], - "start_col": 35, - "start_line": 14 - } - }, - "555": { - "accessible_scopes": [ - "__main__", - "__main__._uris", - "__main__._uris.read" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 78, - "end_line": 14, - "input_file": { - "filename": "autogen/starknet/storage_var/_uris/impl.cairo" - }, - "parent_location": [ - { - "end_col": 58, - "end_line": 7, - "input_file": { - "filename": "autogen/starknet/storage_var/_uris/decl.cairo" - }, - "parent_location": [ - { - "end_col": 41, - "end_line": 17, - "input_file": { - "filename": "autogen/starknet/storage_var/_uris/impl.cairo" - }, - "start_col": 30, - "start_line": 17 - }, - "While trying to retrieve the implicit argument 'range_check_ptr' in:" - ], - "start_col": 43, - "start_line": 7 - }, - "While expanding the reference 'range_check_ptr' in:" - ], - "start_col": 63, - "start_line": 14 - } - }, - "556": { - "accessible_scopes": [ - "__main__", - "__main__._uris", - "__main__._uris.read" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 91, - "end_line": 14, - "input_file": { - "filename": "autogen/starknet/storage_var/_uris/impl.cairo" - }, - "parent_location": [ - { - "end_col": 40, - "end_line": 17, - "input_file": { - "filename": "autogen/starknet/storage_var/_uris/impl.cairo" - }, - "start_col": 35, - "start_line": 17 - }, - "While expanding the reference 'index' in:" - ], - "start_col": 80, - "start_line": 14 - } - }, - "557": { - "accessible_scopes": [ - "__main__", - "__main__._uris", - "__main__._uris.read" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 41, - "end_line": 17, - "input_file": { - "filename": "autogen/starknet/storage_var/_uris/impl.cairo" - }, - "start_col": 30, - "start_line": 17 - } - }, - "559": { - "accessible_scopes": [ - "__main__", - "__main__._uris", - "__main__._uris.read" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 33, - "end_line": 14, - "input_file": { - "filename": "autogen/starknet/storage_var/_uris/impl.cairo" - }, - "parent_location": [ - { - "end_col": 37, - "end_line": 352, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/starknet/common/syscalls.cairo" - }, - "parent_location": [ - { - "end_col": 75, - "end_line": 18, - "input_file": { - "filename": "autogen/starknet/storage_var/_uris/impl.cairo" - }, - "start_col": 37, - "start_line": 18 - }, - "While trying to retrieve the implicit argument 'syscall_ptr' in:" - ], - "start_col": 19, - "start_line": 352 - }, - "While expanding the reference 'syscall_ptr' in:" - ], - "start_col": 15, - "start_line": 14 - } - }, - "560": { - "accessible_scopes": [ - "__main__", - "__main__._uris", - "__main__._uris.read" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 26, - "end_line": 17, - "input_file": { - "filename": "autogen/starknet/storage_var/_uris/impl.cairo" - }, - "parent_location": [ - { - "end_col": 70, - "end_line": 18, - "input_file": { - "filename": "autogen/starknet/storage_var/_uris/impl.cairo" - }, - "start_col": 58, - "start_line": 18 - }, - "While expanding the reference 'storage_addr' in:" - ], - "start_col": 14, - "start_line": 17 - } - }, - "561": { - "accessible_scopes": [ - "__main__", - "__main__._uris", - "__main__._uris.read" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 75, - "end_line": 18, - "input_file": { - "filename": "autogen/starknet/storage_var/_uris/impl.cairo" - }, - "start_col": 37, - "start_line": 18 - } - }, - "563": { - "accessible_scopes": [ - "__main__", - "__main__._uris", - "__main__._uris.read" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 37, - "end_line": 352, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/starknet/common/syscalls.cairo" - }, - "parent_location": [ - { - "end_col": 75, - "end_line": 18, - "input_file": { - "filename": "autogen/starknet/storage_var/_uris/impl.cairo" - }, - "parent_location": [ - { - "end_col": 42, - "end_line": 20, - "input_file": { - "filename": "autogen/starknet/storage_var/_uris/impl.cairo" - }, - "start_col": 31, - "start_line": 20 - }, - "While expanding the reference 'syscall_ptr' in:" - ], - "start_col": 37, - "start_line": 18 - }, - "While trying to update the implicit return value 'syscall_ptr' in:" - ], - "start_col": 19, - "start_line": 352 - } - }, - "564": { - "accessible_scopes": [ - "__main__", - "__main__._uris", - "__main__._uris.read" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 41, - "end_line": 7, - "input_file": { - "filename": "autogen/starknet/storage_var/_uris/decl.cairo" - }, - "parent_location": [ - { - "end_col": 41, - "end_line": 17, - "input_file": { - "filename": "autogen/starknet/storage_var/_uris/impl.cairo" - }, - "parent_location": [ - { - "end_col": 44, - "end_line": 21, - "input_file": { - "filename": "autogen/starknet/storage_var/_uris/impl.cairo" - }, - "start_col": 32, - "start_line": 21 - }, - "While expanding the reference 'pedersen_ptr' in:" - ], - "start_col": 30, - "start_line": 17 - }, - "While trying to update the implicit return value 'pedersen_ptr' in:" - ], - "start_col": 15, - "start_line": 7 - } - }, - "565": { - "accessible_scopes": [ - "__main__", - "__main__._uris", - "__main__._uris.read" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 58, - "end_line": 7, - "input_file": { - "filename": "autogen/starknet/storage_var/_uris/decl.cairo" - }, - "parent_location": [ - { - "end_col": 41, - "end_line": 17, - "input_file": { - "filename": "autogen/starknet/storage_var/_uris/impl.cairo" - }, - "parent_location": [ - { - "end_col": 50, - "end_line": 22, - "input_file": { - "filename": "autogen/starknet/storage_var/_uris/impl.cairo" - }, - "start_col": 35, - "start_line": 22 - }, - "While expanding the reference 'range_check_ptr' in:" - ], - "start_col": 30, - "start_line": 17 - }, - "While trying to update the implicit return value 'range_check_ptr' in:" - ], - "start_col": 43, - "start_line": 7 - } - }, - "566": { - "accessible_scopes": [ - "__main__", - "__main__._uris", - "__main__._uris.read" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 33, - "end_line": 18, - "input_file": { - "filename": "autogen/starknet/storage_var/_uris/impl.cairo" - }, - "parent_location": [ - { - "end_col": 64, - "end_line": 23, - "input_file": { - "filename": "autogen/starknet/storage_var/_uris/impl.cairo" - }, - "start_col": 45, - "start_line": 23 - }, - "While expanding the reference '__storage_var_temp0' in:" - ], - "start_col": 14, - "start_line": 18 - } - }, - "567": { - "accessible_scopes": [ - "__main__", - "__main__._uris", - "__main__._uris.read" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 55, - "end_line": 24, - "input_file": { - "filename": "autogen/starknet/storage_var/_uris/impl.cairo" - }, - "start_col": 9, - "start_line": 24 - } - }, - "568": { - "accessible_scopes": [ - "__main__", - "__main__._uris", - "__main__._uris.write" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 62, - "end_line": 27, - "input_file": { - "filename": "autogen/starknet/storage_var/_uris/impl.cairo" - }, - "parent_location": [ - { - "end_col": 41, - "end_line": 7, - "input_file": { - "filename": "autogen/starknet/storage_var/_uris/decl.cairo" - }, - "parent_location": [ - { - "end_col": 41, - "end_line": 30, - "input_file": { - "filename": "autogen/starknet/storage_var/_uris/impl.cairo" - }, - "start_col": 30, - "start_line": 30 - }, - "While trying to retrieve the implicit argument 'pedersen_ptr' in:" - ], - "start_col": 15, - "start_line": 7 - }, - "While expanding the reference 'pedersen_ptr' in:" - ], - "start_col": 36, - "start_line": 27 - } - }, - "569": { - "accessible_scopes": [ - "__main__", - "__main__._uris", - "__main__._uris.write" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 79, - "end_line": 27, - "input_file": { - "filename": "autogen/starknet/storage_var/_uris/impl.cairo" - }, - "parent_location": [ - { - "end_col": 58, - "end_line": 7, - "input_file": { - "filename": "autogen/starknet/storage_var/_uris/decl.cairo" - }, - "parent_location": [ - { - "end_col": 41, - "end_line": 30, - "input_file": { - "filename": "autogen/starknet/storage_var/_uris/impl.cairo" - }, - "start_col": 30, - "start_line": 30 - }, - "While trying to retrieve the implicit argument 'range_check_ptr' in:" - ], - "start_col": 43, - "start_line": 7 - }, - "While expanding the reference 'range_check_ptr' in:" - ], - "start_col": 64, - "start_line": 27 - } - }, - "570": { - "accessible_scopes": [ - "__main__", - "__main__._uris", - "__main__._uris.write" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 20, - "end_line": 28, - "input_file": { - "filename": "autogen/starknet/storage_var/_uris/impl.cairo" - }, - "parent_location": [ - { - "end_col": 40, - "end_line": 30, - "input_file": { - "filename": "autogen/starknet/storage_var/_uris/impl.cairo" - }, - "start_col": 35, - "start_line": 30 - }, - "While expanding the reference 'index' in:" - ], - "start_col": 9, - "start_line": 28 - } - }, - "571": { - "accessible_scopes": [ - "__main__", - "__main__._uris", - "__main__._uris.write" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 41, - "end_line": 30, - "input_file": { - "filename": "autogen/starknet/storage_var/_uris/impl.cairo" - }, - "start_col": 30, - "start_line": 30 - } - }, - "573": { - "accessible_scopes": [ - "__main__", - "__main__._uris", - "__main__._uris.write" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 34, - "end_line": 27, - "input_file": { - "filename": "autogen/starknet/storage_var/_uris/impl.cairo" - }, - "parent_location": [ - { - "end_col": 38, - "end_line": 370, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/starknet/common/syscalls.cairo" - }, - "parent_location": [ - { - "end_col": 80, - "end_line": 31, - "input_file": { - "filename": "autogen/starknet/storage_var/_uris/impl.cairo" - }, - "start_col": 9, - "start_line": 31 - }, - "While trying to retrieve the implicit argument 'syscall_ptr' in:" - ], - "start_col": 20, - "start_line": 370 - }, - "While expanding the reference 'syscall_ptr' in:" - ], - "start_col": 16, - "start_line": 27 - } - }, - "574": { - "accessible_scopes": [ - "__main__", - "__main__._uris", - "__main__._uris.write" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 26, - "end_line": 30, - "input_file": { - "filename": "autogen/starknet/storage_var/_uris/impl.cairo" - }, - "parent_location": [ - { - "end_col": 43, - "end_line": 31, - "input_file": { - "filename": "autogen/starknet/storage_var/_uris/impl.cairo" - }, - "start_col": 31, - "start_line": 31 - }, - "While expanding the reference 'storage_addr' in:" - ], - "start_col": 14, - "start_line": 30 - } - }, - "575": { - "accessible_scopes": [ - "__main__", - "__main__._uris", - "__main__._uris.write" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 79, - "end_line": 31, - "input_file": { - "filename": "autogen/starknet/storage_var/_uris/impl.cairo" - }, - "start_col": 55, - "start_line": 31 - } - }, - "576": { - "accessible_scopes": [ - "__main__", - "__main__._uris", - "__main__._uris.write" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 80, - "end_line": 31, - "input_file": { - "filename": "autogen/starknet/storage_var/_uris/impl.cairo" - }, - "start_col": 9, - "start_line": 31 - } - }, - "578": { - "accessible_scopes": [ - "__main__", - "__main__._uris", - "__main__._uris.write" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 41, - "end_line": 7, - "input_file": { - "filename": "autogen/starknet/storage_var/_uris/decl.cairo" - }, - "parent_location": [ - { - "end_col": 41, - "end_line": 30, - "input_file": { - "filename": "autogen/starknet/storage_var/_uris/impl.cairo" - }, - "parent_location": [ - { - "end_col": 62, - "end_line": 21, - "input_file": { - "filename": "autogen/starknet/storage_var/_uris/decl.cairo" - }, - "parent_location": [ - { - "end_col": 19, - "end_line": 32, - "input_file": { - "filename": "autogen/starknet/storage_var/_uris/impl.cairo" - }, - "start_col": 9, - "start_line": 32 - }, - "While trying to retrieve the implicit argument 'pedersen_ptr' in:" - ], - "start_col": 36, - "start_line": 21 - }, - "While expanding the reference 'pedersen_ptr' in:" - ], - "start_col": 30, - "start_line": 30 - }, - "While trying to update the implicit return value 'pedersen_ptr' in:" - ], - "start_col": 15, - "start_line": 7 - } - }, - "579": { - "accessible_scopes": [ - "__main__", - "__main__._uris", - "__main__._uris.write" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 58, - "end_line": 7, - "input_file": { - "filename": "autogen/starknet/storage_var/_uris/decl.cairo" - }, - "parent_location": [ - { - "end_col": 41, - "end_line": 30, - "input_file": { - "filename": "autogen/starknet/storage_var/_uris/impl.cairo" - }, - "parent_location": [ - { - "end_col": 79, - "end_line": 21, - "input_file": { - "filename": "autogen/starknet/storage_var/_uris/decl.cairo" - }, - "parent_location": [ - { - "end_col": 19, - "end_line": 32, - "input_file": { - "filename": "autogen/starknet/storage_var/_uris/impl.cairo" - }, - "start_col": 9, - "start_line": 32 - }, - "While trying to retrieve the implicit argument 'range_check_ptr' in:" - ], - "start_col": 64, - "start_line": 21 - }, - "While expanding the reference 'range_check_ptr' in:" - ], - "start_col": 30, - "start_line": 30 - }, - "While trying to update the implicit return value 'range_check_ptr' in:" - ], - "start_col": 43, - "start_line": 7 - } - }, - "580": { - "accessible_scopes": [ - "__main__", - "__main__._uris", - "__main__._uris.write" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 19, - "end_line": 32, - "input_file": { - "filename": "autogen/starknet/storage_var/_uris/impl.cairo" - }, - "start_col": 9, - "start_line": 32 - } - }, - "581": { - "accessible_scopes": [ - "__main__", - "__main__", - "__main__.getOwner" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 33, - "end_line": 21, - "input_file": { - "filename": "src/renderers/RandomRenderer.cairo" - }, - "parent_location": [ - { - "end_col": 34, - "end_line": 56, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/access/ownable/library.cairo" - }, - "parent_location": [ - { - "end_col": 27, - "end_line": 22, - "input_file": { - "filename": "src/renderers/RandomRenderer.cairo" - }, - "start_col": 12, - "start_line": 22 - }, - "While trying to retrieve the implicit argument 'syscall_ptr' in:" - ], - "start_col": 16, - "start_line": 56 - }, - "While expanding the reference 'syscall_ptr' in:" - ], - "start_col": 15, - "start_line": 21 - } - }, - "582": { - "accessible_scopes": [ - "__main__", - "__main__", - "__main__.getOwner" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 61, - "end_line": 21, - "input_file": { - "filename": "src/renderers/RandomRenderer.cairo" - }, - "parent_location": [ - { - "end_col": 62, - "end_line": 56, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/access/ownable/library.cairo" - }, - "parent_location": [ - { - "end_col": 27, - "end_line": 22, - "input_file": { - "filename": "src/renderers/RandomRenderer.cairo" - }, - "start_col": 12, - "start_line": 22 - }, - "While trying to retrieve the implicit argument 'pedersen_ptr' in:" - ], - "start_col": 36, - "start_line": 56 - }, - "While expanding the reference 'pedersen_ptr' in:" - ], - "start_col": 35, - "start_line": 21 - } - }, - "583": { - "accessible_scopes": [ - "__main__", - "__main__", - "__main__.getOwner" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 78, - "end_line": 21, - "input_file": { - "filename": "src/renderers/RandomRenderer.cairo" - }, - "parent_location": [ - { - "end_col": 79, - "end_line": 56, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/access/ownable/library.cairo" - }, - "parent_location": [ - { - "end_col": 27, - "end_line": 22, - "input_file": { - "filename": "src/renderers/RandomRenderer.cairo" - }, - "start_col": 12, - "start_line": 22 - }, - "While trying to retrieve the implicit argument 'range_check_ptr' in:" - ], - "start_col": 64, - "start_line": 56 - }, - "While expanding the reference 'range_check_ptr' in:" - ], - "start_col": 63, - "start_line": 21 - } - }, - "584": { - "accessible_scopes": [ - "__main__", - "__main__", - "__main__.getOwner" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 27, - "end_line": 22, - "input_file": { - "filename": "src/renderers/RandomRenderer.cairo" - }, - "start_col": 12, - "start_line": 22 - } - }, - "586": { - "accessible_scopes": [ - "__main__", - "__main__", - "__main__.getOwner" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 28, - "end_line": 22, - "input_file": { - "filename": "src/renderers/RandomRenderer.cairo" - }, - "start_col": 5, - "start_line": 22 - } - }, - "587": { - "accessible_scopes": [ - "__main__", - "__main__", - "__wrappers__", - "__wrappers__.getOwner_encode_return" - ], - "flow_tracking_data": null, - "hints": [ - { - "location": { - "end_col": 38, - "end_line": 3, - "input_file": { - "filename": "autogen/starknet/external/return/getOwner/b6df8dec790559c2c5b7a358af946adc3119f253addccded3beb4074a973d539.cairo" - }, - "parent_location": [ - { - "end_col": 14, - "end_line": 21, - "input_file": { - "filename": "src/renderers/RandomRenderer.cairo" - }, - "start_col": 6, - "start_line": 21 - }, - "While handling return value of" - ], - "start_col": 5, - "start_line": 3 - }, - "n_prefix_newlines": 0 - } - ], - "inst": { - "end_col": 18, - "end_line": 4, - "input_file": { - "filename": "autogen/starknet/external/return/getOwner/b6df8dec790559c2c5b7a358af946adc3119f253addccded3beb4074a973d539.cairo" - }, - "parent_location": [ - { - "end_col": 14, - "end_line": 21, - "input_file": { - "filename": "src/renderers/RandomRenderer.cairo" - }, - "start_col": 6, - "start_line": 21 - }, - "While handling return value of" - ], - "start_col": 5, - "start_line": 4 - } - }, - "589": { - "accessible_scopes": [ - "__main__", - "__main__", - "__wrappers__", - "__wrappers__.getOwner_encode_return" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 47, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/arg_processor/b02ddc13e06346668d980e18c0fec90f17036d195bf95d21ac18e846a0a129f3.cairo" - }, - "parent_location": [ - { - "end_col": 97, - "end_line": 21, - "input_file": { - "filename": "src/renderers/RandomRenderer.cairo" - }, - "start_col": 86, - "start_line": 21 - }, - "While handling return value 'owner'" - ], - "start_col": 1, - "start_line": 1 - } - }, - "590": { - "accessible_scopes": [ - "__main__", - "__main__", - "__wrappers__", - "__wrappers__.getOwner_encode_return" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 48, - "end_line": 2, - "input_file": { - "filename": "autogen/starknet/arg_processor/b02ddc13e06346668d980e18c0fec90f17036d195bf95d21ac18e846a0a129f3.cairo" - }, - "parent_location": [ - { - "end_col": 97, - "end_line": 21, - "input_file": { - "filename": "src/renderers/RandomRenderer.cairo" - }, - "parent_location": [ - { - "end_col": 36, - "end_line": 11, - "input_file": { - "filename": "autogen/starknet/external/return/getOwner/b6df8dec790559c2c5b7a358af946adc3119f253addccded3beb4074a973d539.cairo" - }, - "parent_location": [ - { - "end_col": 14, - "end_line": 21, - "input_file": { - "filename": "src/renderers/RandomRenderer.cairo" - }, - "start_col": 6, - "start_line": 21 - }, - "While handling return value of" - ], - "start_col": 18, - "start_line": 11 - }, - "While expanding the reference '__return_value_ptr' in:" - ], - "start_col": 86, - "start_line": 21 - }, - "While handling return value 'owner'" - ], - "start_col": 26, - "start_line": 2 - } - }, - "592": { - "accessible_scopes": [ - "__main__", - "__main__", - "__wrappers__", - "__wrappers__.getOwner_encode_return" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 70, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/external/return/getOwner/b6df8dec790559c2c5b7a358af946adc3119f253addccded3beb4074a973d539.cairo" - }, - "parent_location": [ - { - "end_col": 14, - "end_line": 21, - "input_file": { - "filename": "src/renderers/RandomRenderer.cairo" - }, - "parent_location": [ - { - "end_col": 40, - "end_line": 10, - "input_file": { - "filename": "autogen/starknet/external/return/getOwner/b6df8dec790559c2c5b7a358af946adc3119f253addccded3beb4074a973d539.cairo" - }, - "parent_location": [ - { - "end_col": 14, - "end_line": 21, - "input_file": { - "filename": "src/renderers/RandomRenderer.cairo" - }, - "start_col": 6, - "start_line": 21 - }, - "While handling return value of" - ], - "start_col": 25, - "start_line": 10 - }, - "While expanding the reference 'range_check_ptr' in:" - ], - "start_col": 6, - "start_line": 21 - }, - "While handling return value of" - ], - "start_col": 55, - "start_line": 1 - } - }, - "593": { - "accessible_scopes": [ - "__main__", - "__main__", - "__wrappers__", - "__wrappers__.getOwner_encode_return" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 63, - "end_line": 11, - "input_file": { - "filename": "autogen/starknet/external/return/getOwner/b6df8dec790559c2c5b7a358af946adc3119f253addccded3beb4074a973d539.cairo" - }, - "parent_location": [ - { - "end_col": 14, - "end_line": 21, - "input_file": { - "filename": "src/renderers/RandomRenderer.cairo" - }, - "start_col": 6, - "start_line": 21 - }, - "While handling return value of" - ], - "start_col": 18, - "start_line": 11 - } - }, - "594": { - "accessible_scopes": [ - "__main__", - "__main__", - "__wrappers__", - "__wrappers__.getOwner_encode_return" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 35, - "end_line": 5, - "input_file": { - "filename": "autogen/starknet/external/return/getOwner/b6df8dec790559c2c5b7a358af946adc3119f253addccded3beb4074a973d539.cairo" - }, - "parent_location": [ - { - "end_col": 14, - "end_line": 21, - "input_file": { - "filename": "src/renderers/RandomRenderer.cairo" - }, - "parent_location": [ - { - "end_col": 38, - "end_line": 12, - "input_file": { - "filename": "autogen/starknet/external/return/getOwner/b6df8dec790559c2c5b7a358af946adc3119f253addccded3beb4074a973d539.cairo" - }, - "parent_location": [ - { - "end_col": 14, - "end_line": 21, - "input_file": { - "filename": "src/renderers/RandomRenderer.cairo" - }, - "start_col": 6, - "start_line": 21 - }, - "While handling return value of" - ], - "start_col": 14, - "start_line": 12 - }, - "While expanding the reference '__return_value_ptr_start' in:" - ], - "start_col": 6, - "start_line": 21 - }, - "While handling return value of" - ], - "start_col": 11, - "start_line": 5 - } - }, - "595": { - "accessible_scopes": [ - "__main__", - "__main__", - "__wrappers__", - "__wrappers__.getOwner_encode_return" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 40, - "end_line": 12, - "input_file": { - "filename": "autogen/starknet/external/return/getOwner/b6df8dec790559c2c5b7a358af946adc3119f253addccded3beb4074a973d539.cairo" - }, - "parent_location": [ - { - "end_col": 14, - "end_line": 21, - "input_file": { - "filename": "src/renderers/RandomRenderer.cairo" - }, - "start_col": 6, - "start_line": 21 - }, - "While handling return value of" - ], - "start_col": 5, - "start_line": 9 - } - }, - "596": { - "accessible_scopes": [ - "__main__", - "__main__", - "__wrappers__", - "__wrappers__.getOwner" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 58, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/arg_processor/01cba52f8515996bb9d7070bde81ff39281d096d7024a558efcba6e1fd2402cf.cairo" - }, - "parent_location": [ - { - "end_col": 14, - "end_line": 21, - "input_file": { - "filename": "src/renderers/RandomRenderer.cairo" - }, - "start_col": 6, - "start_line": 21 - }, - "While handling calldata of" - ], - "start_col": 1, - "start_line": 1 - } - }, - "597": { - "accessible_scopes": [ - "__main__", - "__main__", - "__wrappers__", - "__wrappers__.getOwner" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 64, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/external/getOwner/b2c52ca2d2a8fc8791a983086d8716c5eacd0c3d62934914d2286f84b98ff4cb.cairo" - }, - "parent_location": [ - { - "end_col": 33, - "end_line": 21, - "input_file": { - "filename": "src/renderers/RandomRenderer.cairo" - }, - "parent_location": [ - { - "end_col": 55, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/external/getOwner/50eef2d703602d24c42df800878bfabc425ad0069960e1dc159c4d3bf27e35f6.cairo" - }, - "parent_location": [ - { - "end_col": 14, - "end_line": 21, - "input_file": { - "filename": "src/renderers/RandomRenderer.cairo" - }, - "start_col": 6, - "start_line": 21 - }, - "While constructing the external wrapper for:" - ], - "start_col": 44, - "start_line": 1 - }, - "While expanding the reference 'syscall_ptr' in:" - ], - "start_col": 15, - "start_line": 21 - }, - "While constructing the external wrapper for:" - ], - "start_col": 19, - "start_line": 1 - } - }, - "598": { - "accessible_scopes": [ - "__main__", - "__main__", - "__wrappers__", - "__wrappers__.getOwner" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 110, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/external/getOwner/9684a85e93c782014ca14293edea4eb2502039a5a7b6538ecd39c56faaf12529.cairo" - }, - "parent_location": [ - { - "end_col": 61, - "end_line": 21, - "input_file": { - "filename": "src/renderers/RandomRenderer.cairo" - }, - "parent_location": [ - { - "end_col": 82, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/external/getOwner/50eef2d703602d24c42df800878bfabc425ad0069960e1dc159c4d3bf27e35f6.cairo" - }, - "parent_location": [ - { - "end_col": 14, - "end_line": 21, - "input_file": { - "filename": "src/renderers/RandomRenderer.cairo" - }, - "start_col": 6, - "start_line": 21 - }, - "While constructing the external wrapper for:" - ], - "start_col": 70, - "start_line": 1 - }, - "While expanding the reference 'pedersen_ptr' in:" - ], - "start_col": 35, - "start_line": 21 - }, - "While constructing the external wrapper for:" - ], - "start_col": 20, - "start_line": 1 - } - }, - "599": { - "accessible_scopes": [ - "__main__", - "__main__", - "__wrappers__", - "__wrappers__.getOwner" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 67, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/external/getOwner/741ea357d6336b0bed7bf0472425acd0311d543883b803388880e60a232040c7.cairo" - }, - "parent_location": [ - { - "end_col": 78, - "end_line": 21, - "input_file": { - "filename": "src/renderers/RandomRenderer.cairo" - }, - "parent_location": [ - { - "end_col": 115, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/external/getOwner/50eef2d703602d24c42df800878bfabc425ad0069960e1dc159c4d3bf27e35f6.cairo" - }, - "parent_location": [ - { - "end_col": 14, - "end_line": 21, - "input_file": { - "filename": "src/renderers/RandomRenderer.cairo" - }, - "start_col": 6, - "start_line": 21 - }, - "While constructing the external wrapper for:" - ], - "start_col": 100, - "start_line": 1 - }, - "While expanding the reference 'range_check_ptr' in:" - ], - "start_col": 63, - "start_line": 21 - }, - "While constructing the external wrapper for:" - ], - "start_col": 23, - "start_line": 1 - } - }, - "600": { - "accessible_scopes": [ - "__main__", - "__main__", - "__wrappers__", - "__wrappers__.getOwner" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 14, - "end_line": 21, - "input_file": { - "filename": "src/renderers/RandomRenderer.cairo" - }, - "start_col": 6, - "start_line": 21 - } - }, - "602": { - "accessible_scopes": [ - "__main__", - "__main__", - "__wrappers__", - "__wrappers__.getOwner" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 115, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/external/getOwner/50eef2d703602d24c42df800878bfabc425ad0069960e1dc159c4d3bf27e35f6.cairo" - }, - "parent_location": [ - { - "end_col": 14, - "end_line": 21, - "input_file": { - "filename": "src/renderers/RandomRenderer.cairo" - }, - "parent_location": [ - { - "end_col": 97, - "end_line": 2, - "input_file": { - "filename": "autogen/starknet/external/getOwner/50eef2d703602d24c42df800878bfabc425ad0069960e1dc159c4d3bf27e35f6.cairo" - }, - "parent_location": [ - { - "end_col": 14, - "end_line": 21, - "input_file": { - "filename": "src/renderers/RandomRenderer.cairo" - }, - "start_col": 6, - "start_line": 21 - }, - "While constructing the external wrapper for:" - ], - "start_col": 82, - "start_line": 2 - }, - "While expanding the reference 'range_check_ptr' in:" - ], - "start_col": 6, - "start_line": 21 - }, - "While constructing the external wrapper for:" - ], - "start_col": 100, - "start_line": 1 - } - }, - "603": { - "accessible_scopes": [ - "__main__", - "__main__", - "__wrappers__", - "__wrappers__.getOwner" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 98, - "end_line": 2, - "input_file": { - "filename": "autogen/starknet/external/getOwner/50eef2d703602d24c42df800878bfabc425ad0069960e1dc159c4d3bf27e35f6.cairo" - }, - "parent_location": [ - { - "end_col": 14, - "end_line": 21, - "input_file": { - "filename": "src/renderers/RandomRenderer.cairo" - }, - "start_col": 6, - "start_line": 21 - }, - "While constructing the external wrapper for:" - ], - "start_col": 48, - "start_line": 2 - } - }, - "605": { - "accessible_scopes": [ - "__main__", - "__main__", - "__wrappers__", - "__wrappers__.getOwner" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 55, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/external/getOwner/50eef2d703602d24c42df800878bfabc425ad0069960e1dc159c4d3bf27e35f6.cairo" - }, - "parent_location": [ - { - "end_col": 14, - "end_line": 21, - "input_file": { - "filename": "src/renderers/RandomRenderer.cairo" - }, - "parent_location": [ - { - "end_col": 20, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/external/getOwner/da17921a4e81c09e730800bbf23bfdbe5e9e6bfaedc59d80fbf62087fa43c27d.cairo" - }, - "parent_location": [ - { - "end_col": 14, - "end_line": 21, - "input_file": { - "filename": "src/renderers/RandomRenderer.cairo" - }, - "start_col": 6, - "start_line": 21 - }, - "While constructing the external wrapper for:" - ], - "start_col": 9, - "start_line": 1 - }, - "While expanding the reference 'syscall_ptr' in:" - ], - "start_col": 6, - "start_line": 21 - }, - "While constructing the external wrapper for:" - ], - "start_col": 44, - "start_line": 1 - } - }, - "606": { - "accessible_scopes": [ - "__main__", - "__main__", - "__wrappers__", - "__wrappers__.getOwner" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 82, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/external/getOwner/50eef2d703602d24c42df800878bfabc425ad0069960e1dc159c4d3bf27e35f6.cairo" - }, - "parent_location": [ - { - "end_col": 14, - "end_line": 21, - "input_file": { - "filename": "src/renderers/RandomRenderer.cairo" - }, - "parent_location": [ - { - "end_col": 33, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/external/getOwner/da17921a4e81c09e730800bbf23bfdbe5e9e6bfaedc59d80fbf62087fa43c27d.cairo" - }, - "parent_location": [ - { - "end_col": 14, - "end_line": 21, - "input_file": { - "filename": "src/renderers/RandomRenderer.cairo" - }, - "start_col": 6, - "start_line": 21 - }, - "While constructing the external wrapper for:" - ], - "start_col": 21, - "start_line": 1 - }, - "While expanding the reference 'pedersen_ptr' in:" - ], - "start_col": 6, - "start_line": 21 - }, - "While constructing the external wrapper for:" - ], - "start_col": 70, - "start_line": 1 - } - }, - "607": { - "accessible_scopes": [ - "__main__", - "__main__", - "__wrappers__", - "__wrappers__.getOwner" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 21, - "end_line": 2, - "input_file": { - "filename": "autogen/starknet/external/getOwner/50eef2d703602d24c42df800878bfabc425ad0069960e1dc159c4d3bf27e35f6.cairo" - }, - "parent_location": [ - { - "end_col": 14, - "end_line": 21, - "input_file": { - "filename": "src/renderers/RandomRenderer.cairo" - }, - "parent_location": [ - { - "end_col": 49, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/external/getOwner/da17921a4e81c09e730800bbf23bfdbe5e9e6bfaedc59d80fbf62087fa43c27d.cairo" - }, - "parent_location": [ - { - "end_col": 14, - "end_line": 21, - "input_file": { - "filename": "src/renderers/RandomRenderer.cairo" - }, - "start_col": 6, - "start_line": 21 - }, - "While constructing the external wrapper for:" - ], - "start_col": 34, - "start_line": 1 - }, - "While expanding the reference 'range_check_ptr' in:" - ], - "start_col": 6, - "start_line": 21 - }, - "While constructing the external wrapper for:" - ], - "start_col": 6, - "start_line": 2 - } - }, - "608": { - "accessible_scopes": [ - "__main__", - "__main__", - "__wrappers__", - "__wrappers__.getOwner" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 35, - "end_line": 2, - "input_file": { - "filename": "autogen/starknet/external/getOwner/50eef2d703602d24c42df800878bfabc425ad0069960e1dc159c4d3bf27e35f6.cairo" - }, - "parent_location": [ - { - "end_col": 14, - "end_line": 21, - "input_file": { - "filename": "src/renderers/RandomRenderer.cairo" - }, - "parent_location": [ - { - "end_col": 62, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/external/getOwner/da17921a4e81c09e730800bbf23bfdbe5e9e6bfaedc59d80fbf62087fa43c27d.cairo" - }, - "parent_location": [ - { - "end_col": 14, - "end_line": 21, - "input_file": { - "filename": "src/renderers/RandomRenderer.cairo" - }, - "start_col": 6, - "start_line": 21 - }, - "While constructing the external wrapper for:" - ], - "start_col": 50, - "start_line": 1 - }, - "While expanding the reference 'retdata_size' in:" - ], - "start_col": 6, - "start_line": 21 - }, - "While constructing the external wrapper for:" - ], - "start_col": 23, - "start_line": 2 - } - }, - "609": { - "accessible_scopes": [ - "__main__", - "__main__", - "__wrappers__", - "__wrappers__.getOwner" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 44, - "end_line": 2, - "input_file": { - "filename": "autogen/starknet/external/getOwner/50eef2d703602d24c42df800878bfabc425ad0069960e1dc159c4d3bf27e35f6.cairo" - }, - "parent_location": [ - { - "end_col": 14, - "end_line": 21, - "input_file": { - "filename": "src/renderers/RandomRenderer.cairo" - }, - "parent_location": [ - { - "end_col": 70, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/external/getOwner/da17921a4e81c09e730800bbf23bfdbe5e9e6bfaedc59d80fbf62087fa43c27d.cairo" - }, - "parent_location": [ - { - "end_col": 14, - "end_line": 21, - "input_file": { - "filename": "src/renderers/RandomRenderer.cairo" - }, - "start_col": 6, - "start_line": 21 - }, - "While constructing the external wrapper for:" - ], - "start_col": 63, - "start_line": 1 - }, - "While expanding the reference 'retdata' in:" - ], - "start_col": 6, - "start_line": 21 - }, - "While constructing the external wrapper for:" - ], - "start_col": 37, - "start_line": 2 - } - }, - "610": { - "accessible_scopes": [ - "__main__", - "__main__", - "__wrappers__", - "__wrappers__.getOwner" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 72, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/external/getOwner/da17921a4e81c09e730800bbf23bfdbe5e9e6bfaedc59d80fbf62087fa43c27d.cairo" - }, - "parent_location": [ - { - "end_col": 14, - "end_line": 21, - "input_file": { - "filename": "src/renderers/RandomRenderer.cairo" - }, - "start_col": 6, - "start_line": 21 - }, - "While constructing the external wrapper for:" - ], - "start_col": 1, - "start_line": 1 - } - }, - "611": { - "accessible_scopes": [ - "__main__", - "__main__", - "__main__.getUris" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 18, - "end_line": 29, - "input_file": { - "filename": "src/renderers/RandomRenderer.cairo" - }, - "start_col": 5, - "start_line": 29 - } - }, - "613": { - "accessible_scopes": [ - "__main__", - "__main__", - "__main__.getUris" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 25, - "end_line": 30, - "input_file": { - "filename": "src/renderers/RandomRenderer.cairo" - }, - "start_col": 18, - "start_line": 30 - } - }, - "615": { - "accessible_scopes": [ - "__main__", - "__main__", - "__main__.getUris" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 14, - "end_line": 30, - "input_file": { - "filename": "src/renderers/RandomRenderer.cairo" - }, - "parent_location": [ - { - "end_col": 14, - "end_line": 30, - "input_file": { - "filename": "src/renderers/RandomRenderer.cairo" - }, - "start_col": 10, - "start_line": 30 - }, - "While auto generating local variable for 'uris'." - ], - "start_col": 10, - "start_line": 30 - } - }, - "616": { - "accessible_scopes": [ - "__main__", - "__main__", - "__main__.getUris" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 32, - "end_line": 26, - "input_file": { - "filename": "src/renderers/RandomRenderer.cairo" - }, - "parent_location": [ - { - "end_col": 35, - "end_line": 108, - "input_file": { - "filename": "src/renderers/RandomRenderer.cairo" - }, - "parent_location": [ - { - "end_col": 35, - "end_line": 31, - "input_file": { - "filename": "src/renderers/RandomRenderer.cairo" - }, - "start_col": 5, - "start_line": 31 - }, - "While trying to retrieve the implicit argument 'syscall_ptr' in:" - ], - "start_col": 17, - "start_line": 108 - }, - "While expanding the reference 'syscall_ptr' in:" - ], - "start_col": 14, - "start_line": 26 - } - }, - "617": { - "accessible_scopes": [ - "__main__", - "__main__", - "__main__.getUris" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 60, - "end_line": 26, - "input_file": { - "filename": "src/renderers/RandomRenderer.cairo" - }, - "parent_location": [ - { - "end_col": 63, - "end_line": 108, - "input_file": { - "filename": "src/renderers/RandomRenderer.cairo" - }, - "parent_location": [ - { - "end_col": 35, - "end_line": 31, - "input_file": { - "filename": "src/renderers/RandomRenderer.cairo" - }, - "start_col": 5, - "start_line": 31 - }, - "While trying to retrieve the implicit argument 'pedersen_ptr' in:" - ], - "start_col": 37, - "start_line": 108 - }, - "While expanding the reference 'pedersen_ptr' in:" - ], - "start_col": 34, - "start_line": 26 - } - }, - "618": { - "accessible_scopes": [ - "__main__", - "__main__", - "__main__.getUris" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 77, - "end_line": 26, - "input_file": { - "filename": "src/renderers/RandomRenderer.cairo" - }, - "parent_location": [ - { - "end_col": 80, - "end_line": 108, - "input_file": { - "filename": "src/renderers/RandomRenderer.cairo" - }, - "parent_location": [ - { - "end_col": 35, - "end_line": 31, - "input_file": { - "filename": "src/renderers/RandomRenderer.cairo" - }, - "start_col": 5, - "start_line": 31 - }, - "While trying to retrieve the implicit argument 'range_check_ptr' in:" - ], - "start_col": 65, - "start_line": 108 - }, - "While expanding the reference 'range_check_ptr' in:" - ], - "start_col": 62, - "start_line": 26 - } - }, - "619": { - "accessible_scopes": [ - "__main__", - "__main__", - "__main__.getUris" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 23, - "end_line": 31, - "input_file": { - "filename": "src/renderers/RandomRenderer.cairo" - }, - "start_col": 22, - "start_line": 31 - } - }, - "621": { - "accessible_scopes": [ - "__main__", - "__main__", - "__main__.getUris" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 14, - "end_line": 30, - "input_file": { - "filename": "src/renderers/RandomRenderer.cairo" - }, - "parent_location": [ - { - "end_col": 14, - "end_line": 30, - "input_file": { - "filename": "src/renderers/RandomRenderer.cairo" - }, - "parent_location": [ - { - "end_col": 34, - "end_line": 31, - "input_file": { - "filename": "src/renderers/RandomRenderer.cairo" - }, - "start_col": 30, - "start_line": 31 - }, - "While expanding the reference 'uris' in:" - ], - "start_col": 10, - "start_line": 30 - }, - "While auto generating local variable for 'uris'." - ], - "start_col": 10, - "start_line": 30 - } - }, - "622": { - "accessible_scopes": [ - "__main__", - "__main__", - "__main__.getUris" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 35, - "end_line": 31, - "input_file": { - "filename": "src/renderers/RandomRenderer.cairo" - }, - "start_col": 5, - "start_line": 31 - } - }, - "624": { - "accessible_scopes": [ - "__main__", - "__main__", - "__main__.getUris" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 35, - "end_line": 108, - "input_file": { - "filename": "src/renderers/RandomRenderer.cairo" - }, - "parent_location": [ - { - "end_col": 35, - "end_line": 31, - "input_file": { - "filename": "src/renderers/RandomRenderer.cairo" - }, - "parent_location": [ - { - "end_col": 33, - "end_line": 13, - "input_file": { - "filename": "autogen/starknet/storage_var/_uris_len/decl.cairo" - }, - "parent_location": [ - { - "end_col": 38, - "end_line": 32, - "input_file": { - "filename": "src/renderers/RandomRenderer.cairo" - }, - "start_col": 22, - "start_line": 32 - }, - "While trying to retrieve the implicit argument 'syscall_ptr' in:" - ], - "start_col": 15, - "start_line": 13 - }, - "While expanding the reference 'syscall_ptr' in:" - ], - "start_col": 5, - "start_line": 31 - }, - "While trying to update the implicit return value 'syscall_ptr' in:" - ], - "start_col": 17, - "start_line": 108 - } - }, - "625": { - "accessible_scopes": [ - "__main__", - "__main__", - "__main__.getUris" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 63, - "end_line": 108, - "input_file": { - "filename": "src/renderers/RandomRenderer.cairo" - }, - "parent_location": [ - { - "end_col": 35, - "end_line": 31, - "input_file": { - "filename": "src/renderers/RandomRenderer.cairo" - }, - "parent_location": [ - { - "end_col": 61, - "end_line": 13, - "input_file": { - "filename": "autogen/starknet/storage_var/_uris_len/decl.cairo" - }, - "parent_location": [ - { - "end_col": 38, - "end_line": 32, - "input_file": { - "filename": "src/renderers/RandomRenderer.cairo" - }, - "start_col": 22, - "start_line": 32 - }, - "While trying to retrieve the implicit argument 'pedersen_ptr' in:" - ], - "start_col": 35, - "start_line": 13 - }, - "While expanding the reference 'pedersen_ptr' in:" - ], - "start_col": 5, - "start_line": 31 - }, - "While trying to update the implicit return value 'pedersen_ptr' in:" - ], - "start_col": 37, - "start_line": 108 - } - }, - "626": { - "accessible_scopes": [ - "__main__", - "__main__", - "__main__.getUris" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 80, - "end_line": 108, - "input_file": { - "filename": "src/renderers/RandomRenderer.cairo" - }, - "parent_location": [ - { - "end_col": 35, - "end_line": 31, - "input_file": { - "filename": "src/renderers/RandomRenderer.cairo" - }, - "parent_location": [ - { - "end_col": 78, - "end_line": 13, - "input_file": { - "filename": "autogen/starknet/storage_var/_uris_len/decl.cairo" - }, - "parent_location": [ - { - "end_col": 38, - "end_line": 32, - "input_file": { - "filename": "src/renderers/RandomRenderer.cairo" - }, - "start_col": 22, - "start_line": 32 - }, - "While trying to retrieve the implicit argument 'range_check_ptr' in:" - ], - "start_col": 63, - "start_line": 13 - }, - "While expanding the reference 'range_check_ptr' in:" - ], - "start_col": 5, - "start_line": 31 - }, - "While trying to update the implicit return value 'range_check_ptr' in:" - ], - "start_col": 65, - "start_line": 108 - } - }, - "627": { - "accessible_scopes": [ - "__main__", - "__main__", - "__main__.getUris" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 38, - "end_line": 32, - "input_file": { - "filename": "src/renderers/RandomRenderer.cairo" - }, - "start_col": 22, - "start_line": 32 - } - }, - "629": { - "accessible_scopes": [ - "__main__", - "__main__", - "__main__.getUris" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 14, - "end_line": 30, - "input_file": { - "filename": "src/renderers/RandomRenderer.cairo" - }, - "parent_location": [ - { - "end_col": 14, - "end_line": 30, - "input_file": { - "filename": "src/renderers/RandomRenderer.cairo" - }, - "parent_location": [ - { - "end_col": 27, - "end_line": 33, - "input_file": { - "filename": "src/renderers/RandomRenderer.cairo" - }, - "start_col": 23, - "start_line": 33 - }, - "While expanding the reference 'uris' in:" - ], - "start_col": 10, - "start_line": 30 - }, - "While auto generating local variable for 'uris'." - ], - "start_col": 10, - "start_line": 30 - } - }, - "630": { - "accessible_scopes": [ - "__main__", - "__main__", - "__main__.getUris" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 29, - "end_line": 33, - "input_file": { - "filename": "src/renderers/RandomRenderer.cairo" - }, - "start_col": 5, - "start_line": 33 - } - }, - "631": { - "accessible_scopes": [ - "__main__", - "__main__", - "__wrappers__", - "__wrappers__.getUris_encode_return" - ], - "flow_tracking_data": null, - "hints": [ - { - "location": { - "end_col": 38, - "end_line": 3, - "input_file": { - "filename": "autogen/starknet/external/return/getUris/27bbe6e2811d5a6060091641fe546a465f4875f175231c16ca76298d6ad4834d.cairo" - }, - "parent_location": [ - { - "end_col": 13, - "end_line": 26, - "input_file": { - "filename": "src/renderers/RandomRenderer.cairo" - }, - "start_col": 6, - "start_line": 26 - }, - "While handling return value of" - ], - "start_col": 5, - "start_line": 3 - }, - "n_prefix_newlines": 0 - } - ], - "inst": { - "end_col": 18, - "end_line": 4, - "input_file": { - "filename": "autogen/starknet/external/return/getUris/27bbe6e2811d5a6060091641fe546a465f4875f175231c16ca76298d6ad4834d.cairo" - }, - "parent_location": [ - { - "end_col": 13, - "end_line": 26, - "input_file": { - "filename": "src/renderers/RandomRenderer.cairo" - }, - "start_col": 6, - "start_line": 26 - }, - "While handling return value of" - ], - "start_col": 5, - "start_line": 4 - } - }, - "633": { - "accessible_scopes": [ - "__main__", - "__main__", - "__wrappers__", - "__wrappers__.getUris_encode_return" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 50, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/arg_processor/de9cdb15e04bbb23c0fa9a69d99b361b8fcc49113f31e26360d3d1d38ad316c9.cairo" - }, - "parent_location": [ - { - "end_col": 19, - "end_line": 27, - "input_file": { - "filename": "src/renderers/RandomRenderer.cairo" - }, - "start_col": 5, - "start_line": 27 - }, - "While handling return value 'uris_len'" - ], - "start_col": 1, - "start_line": 1 - } - }, - "634": { - "accessible_scopes": [ - "__main__", - "__main__", - "__wrappers__", - "__wrappers__.getUris_encode_return" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 47, - "end_line": 2, - "input_file": { - "filename": "autogen/starknet/arg_processor/3e997d9761388a58baa7b454b348a99f2985b55f99cf1ea7b31f5954242f81a7.cairo" - }, - "parent_location": [ - { - "end_col": 32, - "end_line": 27, - "input_file": { - "filename": "src/renderers/RandomRenderer.cairo" - }, - "start_col": 21, - "start_line": 27 - }, - "While handling return value 'uris'" - ], - "start_col": 1, - "start_line": 2 - } - }, - "635": { - "accessible_scopes": [ - "__main__", - "__main__", - "__wrappers__", - "__wrappers__.getUris_encode_return" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 45, - "end_line": 5, - "input_file": { - "filename": "autogen/starknet/arg_processor/3e997d9761388a58baa7b454b348a99f2985b55f99cf1ea7b31f5954242f81a7.cairo" - }, - "parent_location": [ - { - "end_col": 32, - "end_line": 27, - "input_file": { - "filename": "src/renderers/RandomRenderer.cairo" - }, - "start_col": 21, - "start_line": 27 - }, - "While handling return value 'uris'" - ], - "start_col": 1, - "start_line": 5 - } - }, - "637": { - "accessible_scopes": [ - "__main__", - "__main__", - "__wrappers__", - "__wrappers__.getUris_encode_return" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 48, - "end_line": 2, - "input_file": { - "filename": "autogen/starknet/arg_processor/de9cdb15e04bbb23c0fa9a69d99b361b8fcc49113f31e26360d3d1d38ad316c9.cairo" - }, - "parent_location": [ - { - "end_col": 19, - "end_line": 27, - "input_file": { - "filename": "src/renderers/RandomRenderer.cairo" - }, - "parent_location": [ - { - "end_col": 53, - "end_line": 10, - "input_file": { - "filename": "autogen/starknet/arg_processor/3e997d9761388a58baa7b454b348a99f2985b55f99cf1ea7b31f5954242f81a7.cairo" - }, - "parent_location": [ - { - "end_col": 32, - "end_line": 27, - "input_file": { - "filename": "src/renderers/RandomRenderer.cairo" - }, - "start_col": 21, - "start_line": 27 - }, - "While handling return value 'uris'" - ], - "start_col": 35, - "start_line": 10 - }, - "While expanding the reference '__return_value_ptr' in:" - ], - "start_col": 5, - "start_line": 27 - }, - "While handling return value 'uris_len'" - ], - "start_col": 26, - "start_line": 2 - } - }, - "639": { - "accessible_scopes": [ - "__main__", - "__main__", - "__wrappers__", - "__wrappers__.getUris_encode_return" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 79, - "end_line": 10, - "input_file": { - "filename": "autogen/starknet/arg_processor/3e997d9761388a58baa7b454b348a99f2985b55f99cf1ea7b31f5954242f81a7.cairo" - }, - "parent_location": [ - { - "end_col": 32, - "end_line": 27, - "input_file": { - "filename": "src/renderers/RandomRenderer.cairo" - }, - "start_col": 21, - "start_line": 27 - }, - "While handling return value 'uris'" - ], - "start_col": 1, - "start_line": 10 - } - }, - "640": { - "accessible_scopes": [ - "__main__", - "__main__", - "__wrappers__", - "__wrappers__.getUris_encode_return" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 48, - "end_line": 2, - "input_file": { - "filename": "autogen/starknet/arg_processor/de9cdb15e04bbb23c0fa9a69d99b361b8fcc49113f31e26360d3d1d38ad316c9.cairo" - }, - "parent_location": [ - { - "end_col": 19, - "end_line": 27, - "input_file": { - "filename": "src/renderers/RandomRenderer.cairo" - }, - "parent_location": [ - { - "end_col": 49, - "end_line": 7, - "input_file": { - "filename": "autogen/starknet/arg_processor/3e997d9761388a58baa7b454b348a99f2985b55f99cf1ea7b31f5954242f81a7.cairo" - }, - "parent_location": [ - { - "end_col": 32, - "end_line": 27, - "input_file": { - "filename": "src/renderers/RandomRenderer.cairo" - }, - "parent_location": [ - { - "end_col": 32, - "end_line": 12, - "input_file": { - "filename": "autogen/starknet/arg_processor/3e997d9761388a58baa7b454b348a99f2985b55f99cf1ea7b31f5954242f81a7.cairo" - }, - "parent_location": [ - { - "end_col": 32, - "end_line": 27, - "input_file": { - "filename": "src/renderers/RandomRenderer.cairo" - }, - "start_col": 21, - "start_line": 27 - }, - "While handling return value 'uris'" - ], - "start_col": 9, - "start_line": 12 - }, - "While expanding the reference '__return_value_ptr_copy' in:" - ], - "start_col": 21, - "start_line": 27 - }, - "While handling return value 'uris'" - ], - "start_col": 31, - "start_line": 7 - }, - "While expanding the reference '__return_value_ptr' in:" - ], - "start_col": 5, - "start_line": 27 - }, - "While handling return value 'uris_len'" - ], - "start_col": 26, - "start_line": 2 - } - }, - "642": { - "accessible_scopes": [ - "__main__", - "__main__", - "__wrappers__", - "__wrappers__.getUris_encode_return" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 23, - "end_line": 13, - "input_file": { - "filename": "autogen/starknet/arg_processor/3e997d9761388a58baa7b454b348a99f2985b55f99cf1ea7b31f5954242f81a7.cairo" - }, - "parent_location": [ - { - "end_col": 32, - "end_line": 27, - "input_file": { - "filename": "src/renderers/RandomRenderer.cairo" - }, - "start_col": 21, - "start_line": 27 - }, - "While handling return value 'uris'" - ], - "start_col": 9, - "start_line": 13 - } - }, - "643": { - "accessible_scopes": [ - "__main__", - "__main__", - "__wrappers__", - "__wrappers__.getUris_encode_return" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 27, - "end_line": 14, - "input_file": { - "filename": "autogen/starknet/arg_processor/3e997d9761388a58baa7b454b348a99f2985b55f99cf1ea7b31f5954242f81a7.cairo" - }, - "parent_location": [ - { - "end_col": 32, - "end_line": 27, - "input_file": { - "filename": "src/renderers/RandomRenderer.cairo" - }, - "start_col": 21, - "start_line": 27 - }, - "While handling return value 'uris'" - ], - "start_col": 9, - "start_line": 14 - } - }, - "644": { - "accessible_scopes": [ - "__main__", - "__main__", - "__wrappers__", - "__wrappers__.getUris_encode_return" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 32, - "end_line": 14, - "input_file": { - "filename": "autogen/starknet/arg_processor/3e997d9761388a58baa7b454b348a99f2985b55f99cf1ea7b31f5954242f81a7.cairo" - }, - "parent_location": [ - { - "end_col": 32, - "end_line": 27, - "input_file": { - "filename": "src/renderers/RandomRenderer.cairo" - }, - "start_col": 21, - "start_line": 27 - }, - "While handling return value 'uris'" - ], - "start_col": 1, - "start_line": 11 - } - }, - "646": { - "accessible_scopes": [ - "__main__", - "__main__", - "__wrappers__", - "__wrappers__.getUris_encode_return" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 22, - "end_line": 5, - "input_file": { - "filename": "autogen/starknet/arg_processor/3e997d9761388a58baa7b454b348a99f2985b55f99cf1ea7b31f5954242f81a7.cairo" - }, - "parent_location": [ - { - "end_col": 32, - "end_line": 27, - "input_file": { - "filename": "src/renderers/RandomRenderer.cairo" - }, - "parent_location": [ - { - "end_col": 40, - "end_line": 10, - "input_file": { - "filename": "autogen/starknet/external/return/getUris/27bbe6e2811d5a6060091641fe546a465f4875f175231c16ca76298d6ad4834d.cairo" - }, - "parent_location": [ - { - "end_col": 13, - "end_line": 26, - "input_file": { - "filename": "src/renderers/RandomRenderer.cairo" - }, - "start_col": 6, - "start_line": 26 - }, - "While handling return value of" - ], - "start_col": 25, - "start_line": 10 - }, - "While expanding the reference 'range_check_ptr' in:" - ], - "start_col": 21, - "start_line": 27 - }, - "While handling return value 'uris'" - ], - "start_col": 7, - "start_line": 5 - } - }, - "647": { - "accessible_scopes": [ - "__main__", - "__main__", - "__wrappers__", - "__wrappers__.getUris_encode_return" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 63, - "end_line": 11, - "input_file": { - "filename": "autogen/starknet/external/return/getUris/27bbe6e2811d5a6060091641fe546a465f4875f175231c16ca76298d6ad4834d.cairo" - }, - "parent_location": [ - { - "end_col": 13, - "end_line": 26, - "input_file": { - "filename": "src/renderers/RandomRenderer.cairo" - }, - "start_col": 6, - "start_line": 26 - }, - "While handling return value of" - ], - "start_col": 18, - "start_line": 11 - } - }, - "648": { - "accessible_scopes": [ - "__main__", - "__main__", - "__wrappers__", - "__wrappers__.getUris_encode_return" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 35, - "end_line": 5, - "input_file": { - "filename": "autogen/starknet/external/return/getUris/27bbe6e2811d5a6060091641fe546a465f4875f175231c16ca76298d6ad4834d.cairo" - }, - "parent_location": [ - { - "end_col": 13, - "end_line": 26, - "input_file": { - "filename": "src/renderers/RandomRenderer.cairo" - }, - "parent_location": [ - { - "end_col": 38, - "end_line": 12, - "input_file": { - "filename": "autogen/starknet/external/return/getUris/27bbe6e2811d5a6060091641fe546a465f4875f175231c16ca76298d6ad4834d.cairo" - }, - "parent_location": [ - { - "end_col": 13, - "end_line": 26, - "input_file": { - "filename": "src/renderers/RandomRenderer.cairo" - }, - "start_col": 6, - "start_line": 26 - }, - "While handling return value of" - ], - "start_col": 14, - "start_line": 12 - }, - "While expanding the reference '__return_value_ptr_start' in:" - ], - "start_col": 6, - "start_line": 26 - }, - "While handling return value of" - ], - "start_col": 11, - "start_line": 5 - } - }, - "649": { - "accessible_scopes": [ - "__main__", - "__main__", - "__wrappers__", - "__wrappers__.getUris_encode_return" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 40, - "end_line": 12, - "input_file": { - "filename": "autogen/starknet/external/return/getUris/27bbe6e2811d5a6060091641fe546a465f4875f175231c16ca76298d6ad4834d.cairo" - }, - "parent_location": [ - { - "end_col": 13, - "end_line": 26, - "input_file": { - "filename": "src/renderers/RandomRenderer.cairo" - }, - "start_col": 6, - "start_line": 26 - }, - "While handling return value of" - ], - "start_col": 5, - "start_line": 9 - } - }, - "650": { - "accessible_scopes": [ - "__main__", - "__main__", - "__wrappers__", - "__wrappers__.getUris" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 18, - "end_line": 2, - "input_file": { - "filename": "autogen/starknet/external/getUris/16b14650f8f77c5b220f7ec13673aa41c3b93f27e60acb61812cf0ca621ce336.cairo" - }, - "parent_location": [ - { - "end_col": 13, - "end_line": 26, - "input_file": { - "filename": "src/renderers/RandomRenderer.cairo" - }, - "start_col": 6, - "start_line": 26 - }, - "While constructing the external wrapper for:" - ], - "start_col": 5, - "start_line": 2 - } - }, - "652": { - "accessible_scopes": [ - "__main__", - "__main__", - "__wrappers__", - "__wrappers__.getUris" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 58, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/arg_processor/01cba52f8515996bb9d7070bde81ff39281d096d7024a558efcba6e1fd2402cf.cairo" - }, - "parent_location": [ - { - "end_col": 13, - "end_line": 26, - "input_file": { - "filename": "src/renderers/RandomRenderer.cairo" - }, - "start_col": 6, - "start_line": 26 - }, - "While handling calldata of" - ], - "start_col": 1, - "start_line": 1 - } - }, - "653": { - "accessible_scopes": [ - "__main__", - "__main__", - "__wrappers__", - "__wrappers__.getUris" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 64, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/external/getUris/b2c52ca2d2a8fc8791a983086d8716c5eacd0c3d62934914d2286f84b98ff4cb.cairo" - }, - "parent_location": [ - { - "end_col": 32, - "end_line": 26, - "input_file": { - "filename": "src/renderers/RandomRenderer.cairo" - }, - "parent_location": [ - { - "end_col": 55, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/external/getUris/949b182ecec4fb81f2183f1cefa71a20c084e771152261dbf56ff153c13f4d6d.cairo" - }, - "parent_location": [ - { - "end_col": 13, - "end_line": 26, - "input_file": { - "filename": "src/renderers/RandomRenderer.cairo" - }, - "start_col": 6, - "start_line": 26 - }, - "While constructing the external wrapper for:" - ], - "start_col": 44, - "start_line": 1 - }, - "While expanding the reference 'syscall_ptr' in:" - ], - "start_col": 14, - "start_line": 26 - }, - "While constructing the external wrapper for:" - ], - "start_col": 19, - "start_line": 1 - } - }, - "654": { - "accessible_scopes": [ - "__main__", - "__main__", - "__wrappers__", - "__wrappers__.getUris" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 110, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/external/getUris/9684a85e93c782014ca14293edea4eb2502039a5a7b6538ecd39c56faaf12529.cairo" - }, - "parent_location": [ - { - "end_col": 60, - "end_line": 26, - "input_file": { - "filename": "src/renderers/RandomRenderer.cairo" - }, - "parent_location": [ - { - "end_col": 82, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/external/getUris/949b182ecec4fb81f2183f1cefa71a20c084e771152261dbf56ff153c13f4d6d.cairo" - }, - "parent_location": [ - { - "end_col": 13, - "end_line": 26, - "input_file": { - "filename": "src/renderers/RandomRenderer.cairo" - }, - "start_col": 6, - "start_line": 26 - }, - "While constructing the external wrapper for:" - ], - "start_col": 70, - "start_line": 1 - }, - "While expanding the reference 'pedersen_ptr' in:" - ], - "start_col": 34, - "start_line": 26 - }, - "While constructing the external wrapper for:" - ], - "start_col": 20, - "start_line": 1 - } - }, - "655": { - "accessible_scopes": [ - "__main__", - "__main__", - "__wrappers__", - "__wrappers__.getUris" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 67, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/external/getUris/741ea357d6336b0bed7bf0472425acd0311d543883b803388880e60a232040c7.cairo" - }, - "parent_location": [ - { - "end_col": 77, - "end_line": 26, - "input_file": { - "filename": "src/renderers/RandomRenderer.cairo" - }, - "parent_location": [ - { - "end_col": 115, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/external/getUris/949b182ecec4fb81f2183f1cefa71a20c084e771152261dbf56ff153c13f4d6d.cairo" - }, - "parent_location": [ - { - "end_col": 13, - "end_line": 26, - "input_file": { - "filename": "src/renderers/RandomRenderer.cairo" - }, - "start_col": 6, - "start_line": 26 - }, - "While constructing the external wrapper for:" - ], - "start_col": 100, - "start_line": 1 - }, - "While expanding the reference 'range_check_ptr' in:" - ], - "start_col": 62, - "start_line": 26 - }, - "While constructing the external wrapper for:" - ], - "start_col": 23, - "start_line": 1 - } - }, - "656": { - "accessible_scopes": [ - "__main__", - "__main__", - "__wrappers__", - "__wrappers__.getUris" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 13, - "end_line": 26, - "input_file": { - "filename": "src/renderers/RandomRenderer.cairo" - }, - "start_col": 6, - "start_line": 26 - } - }, - "658": { - "accessible_scopes": [ - "__main__", - "__main__", - "__wrappers__", - "__wrappers__.getUris" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 55, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/external/getUris/949b182ecec4fb81f2183f1cefa71a20c084e771152261dbf56ff153c13f4d6d.cairo" - }, - "parent_location": [ - { - "end_col": 13, - "end_line": 26, - "input_file": { - "filename": "src/renderers/RandomRenderer.cairo" - }, - "parent_location": [ - { - "end_col": 55, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/external/getUris/949b182ecec4fb81f2183f1cefa71a20c084e771152261dbf56ff153c13f4d6d.cairo" - }, - "parent_location": [ - { - "end_col": 13, - "end_line": 26, - "input_file": { - "filename": "src/renderers/RandomRenderer.cairo" - }, - "start_col": 6, - "start_line": 26 - }, - "While constructing the external wrapper for:" - ], - "start_col": 44, - "start_line": 1 - }, - "While auto generating local variable for 'syscall_ptr'." - ], - "start_col": 6, - "start_line": 26 - }, - "While constructing the external wrapper for:" - ], - "start_col": 44, - "start_line": 1 - } - }, - "659": { - "accessible_scopes": [ - "__main__", - "__main__", - "__wrappers__", - "__wrappers__.getUris" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 82, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/external/getUris/949b182ecec4fb81f2183f1cefa71a20c084e771152261dbf56ff153c13f4d6d.cairo" - }, - "parent_location": [ - { - "end_col": 13, - "end_line": 26, - "input_file": { - "filename": "src/renderers/RandomRenderer.cairo" - }, - "parent_location": [ - { - "end_col": 82, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/external/getUris/949b182ecec4fb81f2183f1cefa71a20c084e771152261dbf56ff153c13f4d6d.cairo" - }, - "parent_location": [ - { - "end_col": 13, - "end_line": 26, - "input_file": { - "filename": "src/renderers/RandomRenderer.cairo" - }, - "start_col": 6, - "start_line": 26 - }, - "While constructing the external wrapper for:" - ], - "start_col": 70, - "start_line": 1 - }, - "While auto generating local variable for 'pedersen_ptr'." - ], - "start_col": 6, - "start_line": 26 - }, - "While constructing the external wrapper for:" - ], - "start_col": 70, - "start_line": 1 - } - }, - "660": { - "accessible_scopes": [ - "__main__", - "__main__", - "__wrappers__", - "__wrappers__.getUris" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 115, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/external/getUris/949b182ecec4fb81f2183f1cefa71a20c084e771152261dbf56ff153c13f4d6d.cairo" - }, - "parent_location": [ - { - "end_col": 13, - "end_line": 26, - "input_file": { - "filename": "src/renderers/RandomRenderer.cairo" - }, - "parent_location": [ - { - "end_col": 96, - "end_line": 2, - "input_file": { - "filename": "autogen/starknet/external/getUris/949b182ecec4fb81f2183f1cefa71a20c084e771152261dbf56ff153c13f4d6d.cairo" - }, - "parent_location": [ - { - "end_col": 13, - "end_line": 26, - "input_file": { - "filename": "src/renderers/RandomRenderer.cairo" - }, - "start_col": 6, - "start_line": 26 - }, - "While constructing the external wrapper for:" - ], - "start_col": 81, - "start_line": 2 - }, - "While expanding the reference 'range_check_ptr' in:" - ], - "start_col": 6, - "start_line": 26 - }, - "While constructing the external wrapper for:" - ], - "start_col": 100, - "start_line": 1 - } - }, - "661": { - "accessible_scopes": [ - "__main__", - "__main__", - "__wrappers__", - "__wrappers__.getUris" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 97, - "end_line": 2, - "input_file": { - "filename": "autogen/starknet/external/getUris/949b182ecec4fb81f2183f1cefa71a20c084e771152261dbf56ff153c13f4d6d.cairo" - }, - "parent_location": [ - { - "end_col": 13, - "end_line": 26, - "input_file": { - "filename": "src/renderers/RandomRenderer.cairo" - }, - "start_col": 6, - "start_line": 26 - }, - "While constructing the external wrapper for:" - ], - "start_col": 48, - "start_line": 2 - } - }, - "663": { - "accessible_scopes": [ - "__main__", - "__main__", - "__wrappers__", - "__wrappers__.getUris" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 55, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/external/getUris/949b182ecec4fb81f2183f1cefa71a20c084e771152261dbf56ff153c13f4d6d.cairo" - }, - "parent_location": [ - { - "end_col": 13, - "end_line": 26, - "input_file": { - "filename": "src/renderers/RandomRenderer.cairo" - }, - "parent_location": [ - { - "end_col": 55, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/external/getUris/949b182ecec4fb81f2183f1cefa71a20c084e771152261dbf56ff153c13f4d6d.cairo" - }, - "parent_location": [ - { - "end_col": 13, - "end_line": 26, - "input_file": { - "filename": "src/renderers/RandomRenderer.cairo" - }, - "parent_location": [ - { - "end_col": 20, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/external/getUris/da17921a4e81c09e730800bbf23bfdbe5e9e6bfaedc59d80fbf62087fa43c27d.cairo" - }, - "parent_location": [ - { - "end_col": 13, - "end_line": 26, - "input_file": { - "filename": "src/renderers/RandomRenderer.cairo" - }, - "start_col": 6, - "start_line": 26 - }, - "While constructing the external wrapper for:" - ], - "start_col": 9, - "start_line": 1 - }, - "While expanding the reference 'syscall_ptr' in:" - ], - "start_col": 6, - "start_line": 26 - }, - "While constructing the external wrapper for:" - ], - "start_col": 44, - "start_line": 1 - }, - "While auto generating local variable for 'syscall_ptr'." - ], - "start_col": 6, - "start_line": 26 - }, - "While constructing the external wrapper for:" - ], - "start_col": 44, - "start_line": 1 - } - }, - "664": { - "accessible_scopes": [ - "__main__", - "__main__", - "__wrappers__", - "__wrappers__.getUris" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 82, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/external/getUris/949b182ecec4fb81f2183f1cefa71a20c084e771152261dbf56ff153c13f4d6d.cairo" - }, - "parent_location": [ - { - "end_col": 13, - "end_line": 26, - "input_file": { - "filename": "src/renderers/RandomRenderer.cairo" - }, - "parent_location": [ - { - "end_col": 82, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/external/getUris/949b182ecec4fb81f2183f1cefa71a20c084e771152261dbf56ff153c13f4d6d.cairo" - }, - "parent_location": [ - { - "end_col": 13, - "end_line": 26, - "input_file": { - "filename": "src/renderers/RandomRenderer.cairo" - }, - "parent_location": [ - { - "end_col": 33, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/external/getUris/da17921a4e81c09e730800bbf23bfdbe5e9e6bfaedc59d80fbf62087fa43c27d.cairo" - }, - "parent_location": [ - { - "end_col": 13, - "end_line": 26, - "input_file": { - "filename": "src/renderers/RandomRenderer.cairo" - }, - "start_col": 6, - "start_line": 26 - }, - "While constructing the external wrapper for:" - ], - "start_col": 21, - "start_line": 1 - }, - "While expanding the reference 'pedersen_ptr' in:" - ], - "start_col": 6, - "start_line": 26 - }, - "While constructing the external wrapper for:" - ], - "start_col": 70, - "start_line": 1 - }, - "While auto generating local variable for 'pedersen_ptr'." - ], - "start_col": 6, - "start_line": 26 - }, - "While constructing the external wrapper for:" - ], - "start_col": 70, - "start_line": 1 - } - }, - "665": { - "accessible_scopes": [ - "__main__", - "__main__", - "__wrappers__", - "__wrappers__.getUris" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 21, - "end_line": 2, - "input_file": { - "filename": "autogen/starknet/external/getUris/949b182ecec4fb81f2183f1cefa71a20c084e771152261dbf56ff153c13f4d6d.cairo" - }, - "parent_location": [ - { - "end_col": 13, - "end_line": 26, - "input_file": { - "filename": "src/renderers/RandomRenderer.cairo" - }, - "parent_location": [ - { - "end_col": 49, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/external/getUris/da17921a4e81c09e730800bbf23bfdbe5e9e6bfaedc59d80fbf62087fa43c27d.cairo" - }, - "parent_location": [ - { - "end_col": 13, - "end_line": 26, - "input_file": { - "filename": "src/renderers/RandomRenderer.cairo" - }, - "start_col": 6, - "start_line": 26 - }, - "While constructing the external wrapper for:" - ], - "start_col": 34, - "start_line": 1 - }, - "While expanding the reference 'range_check_ptr' in:" - ], - "start_col": 6, - "start_line": 26 - }, - "While constructing the external wrapper for:" - ], - "start_col": 6, - "start_line": 2 - } - }, - "666": { - "accessible_scopes": [ - "__main__", - "__main__", - "__wrappers__", - "__wrappers__.getUris" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 35, - "end_line": 2, - "input_file": { - "filename": "autogen/starknet/external/getUris/949b182ecec4fb81f2183f1cefa71a20c084e771152261dbf56ff153c13f4d6d.cairo" - }, - "parent_location": [ - { - "end_col": 13, - "end_line": 26, - "input_file": { - "filename": "src/renderers/RandomRenderer.cairo" - }, - "parent_location": [ - { - "end_col": 62, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/external/getUris/da17921a4e81c09e730800bbf23bfdbe5e9e6bfaedc59d80fbf62087fa43c27d.cairo" - }, - "parent_location": [ - { - "end_col": 13, - "end_line": 26, - "input_file": { - "filename": "src/renderers/RandomRenderer.cairo" - }, - "start_col": 6, - "start_line": 26 - }, - "While constructing the external wrapper for:" - ], - "start_col": 50, - "start_line": 1 - }, - "While expanding the reference 'retdata_size' in:" - ], - "start_col": 6, - "start_line": 26 - }, - "While constructing the external wrapper for:" - ], - "start_col": 23, - "start_line": 2 - } - }, - "667": { - "accessible_scopes": [ - "__main__", - "__main__", - "__wrappers__", - "__wrappers__.getUris" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 44, - "end_line": 2, - "input_file": { - "filename": "autogen/starknet/external/getUris/949b182ecec4fb81f2183f1cefa71a20c084e771152261dbf56ff153c13f4d6d.cairo" - }, - "parent_location": [ - { - "end_col": 13, - "end_line": 26, - "input_file": { - "filename": "src/renderers/RandomRenderer.cairo" - }, - "parent_location": [ - { - "end_col": 70, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/external/getUris/da17921a4e81c09e730800bbf23bfdbe5e9e6bfaedc59d80fbf62087fa43c27d.cairo" - }, - "parent_location": [ - { - "end_col": 13, - "end_line": 26, - "input_file": { - "filename": "src/renderers/RandomRenderer.cairo" - }, - "start_col": 6, - "start_line": 26 - }, - "While constructing the external wrapper for:" - ], - "start_col": 63, - "start_line": 1 - }, - "While expanding the reference 'retdata' in:" - ], - "start_col": 6, - "start_line": 26 - }, - "While constructing the external wrapper for:" - ], - "start_col": 37, - "start_line": 2 - } - }, - "668": { - "accessible_scopes": [ - "__main__", - "__main__", - "__wrappers__", - "__wrappers__.getUris" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 72, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/external/getUris/da17921a4e81c09e730800bbf23bfdbe5e9e6bfaedc59d80fbf62087fa43c27d.cairo" - }, - "parent_location": [ - { - "end_col": 13, - "end_line": 26, - "input_file": { - "filename": "src/renderers/RandomRenderer.cairo" - }, - "start_col": 6, - "start_line": 26 - }, - "While constructing the external wrapper for:" - ], - "start_col": 1, - "start_line": 1 - } - }, - "669": { - "accessible_scopes": [ - "__main__", - "__main__", - "__main__.getUri" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 31, - "end_line": 37, - "input_file": { - "filename": "src/renderers/RandomRenderer.cairo" - }, - "parent_location": [ - { - "end_col": 33, - "end_line": 120, - "input_file": { - "filename": "src/renderers/RandomRenderer.cairo" - }, - "parent_location": [ - { - "end_col": 27, - "end_line": 40, - "input_file": { - "filename": "src/renderers/RandomRenderer.cairo" - }, - "start_col": 12, - "start_line": 40 - }, - "While trying to retrieve the implicit argument 'syscall_ptr' in:" - ], - "start_col": 15, - "start_line": 120 - }, - "While expanding the reference 'syscall_ptr' in:" - ], - "start_col": 13, - "start_line": 37 - } - }, - "670": { - "accessible_scopes": [ - "__main__", - "__main__", - "__main__.getUri" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 59, - "end_line": 37, - "input_file": { - "filename": "src/renderers/RandomRenderer.cairo" - }, - "parent_location": [ - { - "end_col": 61, - "end_line": 120, - "input_file": { - "filename": "src/renderers/RandomRenderer.cairo" - }, - "parent_location": [ - { - "end_col": 27, - "end_line": 40, - "input_file": { - "filename": "src/renderers/RandomRenderer.cairo" - }, - "start_col": 12, - "start_line": 40 - }, - "While trying to retrieve the implicit argument 'pedersen_ptr' in:" - ], - "start_col": 35, - "start_line": 120 - }, - "While expanding the reference 'pedersen_ptr' in:" - ], - "start_col": 33, - "start_line": 37 - } - }, - "671": { - "accessible_scopes": [ - "__main__", - "__main__", - "__main__.getUri" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 76, - "end_line": 37, - "input_file": { - "filename": "src/renderers/RandomRenderer.cairo" - }, - "parent_location": [ - { - "end_col": 78, - "end_line": 120, - "input_file": { - "filename": "src/renderers/RandomRenderer.cairo" - }, - "parent_location": [ - { - "end_col": 27, - "end_line": 40, - "input_file": { - "filename": "src/renderers/RandomRenderer.cairo" - }, - "start_col": 12, - "start_line": 40 - }, - "While trying to retrieve the implicit argument 'range_check_ptr' in:" - ], - "start_col": 63, - "start_line": 120 - }, - "While expanding the reference 'range_check_ptr' in:" - ], - "start_col": 61, - "start_line": 37 - } - }, - "672": { - "accessible_scopes": [ - "__main__", - "__main__", - "__main__.getUri" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 89, - "end_line": 37, - "input_file": { - "filename": "src/renderers/RandomRenderer.cairo" - }, - "parent_location": [ - { - "end_col": 26, - "end_line": 40, - "input_file": { - "filename": "src/renderers/RandomRenderer.cairo" - }, - "start_col": 21, - "start_line": 40 - }, - "While expanding the reference 'index' in:" - ], - "start_col": 78, - "start_line": 37 - } - }, - "673": { - "accessible_scopes": [ - "__main__", - "__main__", - "__main__.getUri" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 27, - "end_line": 40, - "input_file": { - "filename": "src/renderers/RandomRenderer.cairo" - }, - "start_col": 12, - "start_line": 40 - } - }, - "675": { - "accessible_scopes": [ - "__main__", - "__main__", - "__main__.getUri" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 28, - "end_line": 40, - "input_file": { - "filename": "src/renderers/RandomRenderer.cairo" - }, - "start_col": 5, - "start_line": 40 - } - }, - "676": { - "accessible_scopes": [ - "__main__", - "__main__", - "__wrappers__", - "__wrappers__.getUri_encode_return" - ], - "flow_tracking_data": null, - "hints": [ - { - "location": { - "end_col": 38, - "end_line": 3, - "input_file": { - "filename": "autogen/starknet/external/return/getUri/ffe1c155873c36f06d097dd655593fa13135320e7512bcc3125b3b0fdf2414c8.cairo" - }, - "parent_location": [ - { - "end_col": 12, - "end_line": 37, - "input_file": { - "filename": "src/renderers/RandomRenderer.cairo" - }, - "start_col": 6, - "start_line": 37 - }, - "While handling return value of" - ], - "start_col": 5, - "start_line": 3 - }, - "n_prefix_newlines": 0 - } - ], - "inst": { - "end_col": 18, - "end_line": 4, - "input_file": { - "filename": "autogen/starknet/external/return/getUri/ffe1c155873c36f06d097dd655593fa13135320e7512bcc3125b3b0fdf2414c8.cairo" - }, - "parent_location": [ - { - "end_col": 12, - "end_line": 37, - "input_file": { - "filename": "src/renderers/RandomRenderer.cairo" - }, - "start_col": 6, - "start_line": 37 - }, - "While handling return value of" - ], - "start_col": 5, - "start_line": 4 - } - }, - "678": { - "accessible_scopes": [ - "__main__", - "__main__", - "__wrappers__", - "__wrappers__.getUri_encode_return" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 49, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/arg_processor/e5c63607fcbdbe90af3e646b038ed92cbbfbdda49041f6d47804f4a9e0551fe2.cairo" - }, - "parent_location": [ - { - "end_col": 18, - "end_line": 38, - "input_file": { - "filename": "src/renderers/RandomRenderer.cairo" - }, - "start_col": 5, - "start_line": 38 - }, - "While handling return value 'uri_len'" - ], - "start_col": 1, - "start_line": 1 - } - }, - "679": { - "accessible_scopes": [ - "__main__", - "__main__", - "__wrappers__", - "__wrappers__.getUri_encode_return" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 46, - "end_line": 2, - "input_file": { - "filename": "autogen/starknet/arg_processor/0e2692b9b5b0d1050bfa0e270aad02e1a4dd5194eace4357b14efae5cfb7ff33.cairo" - }, - "parent_location": [ - { - "end_col": 30, - "end_line": 38, - "input_file": { - "filename": "src/renderers/RandomRenderer.cairo" - }, - "start_col": 20, - "start_line": 38 - }, - "While handling return value 'uri'" - ], - "start_col": 1, - "start_line": 2 - } - }, - "680": { - "accessible_scopes": [ - "__main__", - "__main__", - "__wrappers__", - "__wrappers__.getUri_encode_return" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 45, - "end_line": 5, - "input_file": { - "filename": "autogen/starknet/arg_processor/0e2692b9b5b0d1050bfa0e270aad02e1a4dd5194eace4357b14efae5cfb7ff33.cairo" - }, - "parent_location": [ - { - "end_col": 30, - "end_line": 38, - "input_file": { - "filename": "src/renderers/RandomRenderer.cairo" - }, - "start_col": 20, - "start_line": 38 - }, - "While handling return value 'uri'" - ], - "start_col": 1, - "start_line": 5 - } - }, - "682": { - "accessible_scopes": [ - "__main__", - "__main__", - "__wrappers__", - "__wrappers__.getUri_encode_return" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 48, - "end_line": 2, - "input_file": { - "filename": "autogen/starknet/arg_processor/e5c63607fcbdbe90af3e646b038ed92cbbfbdda49041f6d47804f4a9e0551fe2.cairo" - }, - "parent_location": [ - { - "end_col": 18, - "end_line": 38, - "input_file": { - "filename": "src/renderers/RandomRenderer.cairo" - }, - "parent_location": [ - { - "end_col": 53, - "end_line": 10, - "input_file": { - "filename": "autogen/starknet/arg_processor/0e2692b9b5b0d1050bfa0e270aad02e1a4dd5194eace4357b14efae5cfb7ff33.cairo" - }, - "parent_location": [ - { - "end_col": 30, - "end_line": 38, - "input_file": { - "filename": "src/renderers/RandomRenderer.cairo" - }, - "start_col": 20, - "start_line": 38 - }, - "While handling return value 'uri'" - ], - "start_col": 35, - "start_line": 10 - }, - "While expanding the reference '__return_value_ptr' in:" - ], - "start_col": 5, - "start_line": 38 - }, - "While handling return value 'uri_len'" - ], - "start_col": 26, - "start_line": 2 - } - }, - "684": { - "accessible_scopes": [ - "__main__", - "__main__", - "__wrappers__", - "__wrappers__.getUri_encode_return" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 78, - "end_line": 10, - "input_file": { - "filename": "autogen/starknet/arg_processor/0e2692b9b5b0d1050bfa0e270aad02e1a4dd5194eace4357b14efae5cfb7ff33.cairo" - }, - "parent_location": [ - { - "end_col": 30, - "end_line": 38, - "input_file": { - "filename": "src/renderers/RandomRenderer.cairo" - }, - "start_col": 20, - "start_line": 38 - }, - "While handling return value 'uri'" - ], - "start_col": 1, - "start_line": 10 - } - }, - "685": { - "accessible_scopes": [ - "__main__", - "__main__", - "__wrappers__", - "__wrappers__.getUri_encode_return" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 48, - "end_line": 2, - "input_file": { - "filename": "autogen/starknet/arg_processor/e5c63607fcbdbe90af3e646b038ed92cbbfbdda49041f6d47804f4a9e0551fe2.cairo" - }, - "parent_location": [ - { - "end_col": 18, - "end_line": 38, - "input_file": { - "filename": "src/renderers/RandomRenderer.cairo" - }, - "parent_location": [ - { - "end_col": 49, - "end_line": 7, - "input_file": { - "filename": "autogen/starknet/arg_processor/0e2692b9b5b0d1050bfa0e270aad02e1a4dd5194eace4357b14efae5cfb7ff33.cairo" - }, - "parent_location": [ - { - "end_col": 30, - "end_line": 38, - "input_file": { - "filename": "src/renderers/RandomRenderer.cairo" - }, - "parent_location": [ - { - "end_col": 32, - "end_line": 12, - "input_file": { - "filename": "autogen/starknet/arg_processor/0e2692b9b5b0d1050bfa0e270aad02e1a4dd5194eace4357b14efae5cfb7ff33.cairo" - }, - "parent_location": [ - { - "end_col": 30, - "end_line": 38, - "input_file": { - "filename": "src/renderers/RandomRenderer.cairo" - }, - "start_col": 20, - "start_line": 38 - }, - "While handling return value 'uri'" - ], - "start_col": 9, - "start_line": 12 - }, - "While expanding the reference '__return_value_ptr_copy' in:" - ], - "start_col": 20, - "start_line": 38 - }, - "While handling return value 'uri'" - ], - "start_col": 31, - "start_line": 7 - }, - "While expanding the reference '__return_value_ptr' in:" - ], - "start_col": 5, - "start_line": 38 - }, - "While handling return value 'uri_len'" - ], - "start_col": 26, - "start_line": 2 - } - }, - "687": { - "accessible_scopes": [ - "__main__", - "__main__", - "__wrappers__", - "__wrappers__.getUri_encode_return" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 22, - "end_line": 13, - "input_file": { - "filename": "autogen/starknet/arg_processor/0e2692b9b5b0d1050bfa0e270aad02e1a4dd5194eace4357b14efae5cfb7ff33.cairo" - }, - "parent_location": [ - { - "end_col": 30, - "end_line": 38, - "input_file": { - "filename": "src/renderers/RandomRenderer.cairo" - }, - "start_col": 20, - "start_line": 38 - }, - "While handling return value 'uri'" - ], - "start_col": 9, - "start_line": 13 - } - }, - "688": { - "accessible_scopes": [ - "__main__", - "__main__", - "__wrappers__", - "__wrappers__.getUri_encode_return" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 26, - "end_line": 14, - "input_file": { - "filename": "autogen/starknet/arg_processor/0e2692b9b5b0d1050bfa0e270aad02e1a4dd5194eace4357b14efae5cfb7ff33.cairo" - }, - "parent_location": [ - { - "end_col": 30, - "end_line": 38, - "input_file": { - "filename": "src/renderers/RandomRenderer.cairo" - }, - "start_col": 20, - "start_line": 38 - }, - "While handling return value 'uri'" - ], - "start_col": 9, - "start_line": 14 - } - }, - "689": { - "accessible_scopes": [ - "__main__", - "__main__", - "__wrappers__", - "__wrappers__.getUri_encode_return" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 31, - "end_line": 14, - "input_file": { - "filename": "autogen/starknet/arg_processor/0e2692b9b5b0d1050bfa0e270aad02e1a4dd5194eace4357b14efae5cfb7ff33.cairo" - }, - "parent_location": [ - { - "end_col": 30, - "end_line": 38, - "input_file": { - "filename": "src/renderers/RandomRenderer.cairo" - }, - "start_col": 20, - "start_line": 38 - }, - "While handling return value 'uri'" - ], - "start_col": 1, - "start_line": 11 - } - }, - "691": { - "accessible_scopes": [ - "__main__", - "__main__", - "__wrappers__", - "__wrappers__.getUri_encode_return" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 22, - "end_line": 5, - "input_file": { - "filename": "autogen/starknet/arg_processor/0e2692b9b5b0d1050bfa0e270aad02e1a4dd5194eace4357b14efae5cfb7ff33.cairo" - }, - "parent_location": [ - { - "end_col": 30, - "end_line": 38, - "input_file": { - "filename": "src/renderers/RandomRenderer.cairo" - }, - "parent_location": [ - { - "end_col": 40, - "end_line": 10, - "input_file": { - "filename": "autogen/starknet/external/return/getUri/ffe1c155873c36f06d097dd655593fa13135320e7512bcc3125b3b0fdf2414c8.cairo" - }, - "parent_location": [ - { - "end_col": 12, - "end_line": 37, - "input_file": { - "filename": "src/renderers/RandomRenderer.cairo" - }, - "start_col": 6, - "start_line": 37 - }, - "While handling return value of" - ], - "start_col": 25, - "start_line": 10 - }, - "While expanding the reference 'range_check_ptr' in:" - ], - "start_col": 20, - "start_line": 38 - }, - "While handling return value 'uri'" - ], - "start_col": 7, - "start_line": 5 - } - }, - "692": { - "accessible_scopes": [ - "__main__", - "__main__", - "__wrappers__", - "__wrappers__.getUri_encode_return" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 63, - "end_line": 11, - "input_file": { - "filename": "autogen/starknet/external/return/getUri/ffe1c155873c36f06d097dd655593fa13135320e7512bcc3125b3b0fdf2414c8.cairo" - }, - "parent_location": [ - { - "end_col": 12, - "end_line": 37, - "input_file": { - "filename": "src/renderers/RandomRenderer.cairo" - }, - "start_col": 6, - "start_line": 37 - }, - "While handling return value of" - ], - "start_col": 18, - "start_line": 11 - } - }, - "693": { - "accessible_scopes": [ - "__main__", - "__main__", - "__wrappers__", - "__wrappers__.getUri_encode_return" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 35, - "end_line": 5, - "input_file": { - "filename": "autogen/starknet/external/return/getUri/ffe1c155873c36f06d097dd655593fa13135320e7512bcc3125b3b0fdf2414c8.cairo" - }, - "parent_location": [ - { - "end_col": 12, - "end_line": 37, - "input_file": { - "filename": "src/renderers/RandomRenderer.cairo" - }, - "parent_location": [ - { - "end_col": 38, - "end_line": 12, - "input_file": { - "filename": "autogen/starknet/external/return/getUri/ffe1c155873c36f06d097dd655593fa13135320e7512bcc3125b3b0fdf2414c8.cairo" - }, - "parent_location": [ - { - "end_col": 12, - "end_line": 37, - "input_file": { - "filename": "src/renderers/RandomRenderer.cairo" - }, - "start_col": 6, - "start_line": 37 - }, - "While handling return value of" - ], - "start_col": 14, - "start_line": 12 - }, - "While expanding the reference '__return_value_ptr_start' in:" - ], - "start_col": 6, - "start_line": 37 - }, - "While handling return value of" - ], - "start_col": 11, - "start_line": 5 - } - }, - "694": { - "accessible_scopes": [ - "__main__", - "__main__", - "__wrappers__", - "__wrappers__.getUri_encode_return" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 40, - "end_line": 12, - "input_file": { - "filename": "autogen/starknet/external/return/getUri/ffe1c155873c36f06d097dd655593fa13135320e7512bcc3125b3b0fdf2414c8.cairo" - }, - "parent_location": [ - { - "end_col": 12, - "end_line": 37, - "input_file": { - "filename": "src/renderers/RandomRenderer.cairo" - }, - "start_col": 6, - "start_line": 37 - }, - "While handling return value of" - ], - "start_col": 5, - "start_line": 9 - } - }, - "695": { - "accessible_scopes": [ - "__main__", - "__main__", - "__wrappers__", - "__wrappers__.getUri" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 18, - "end_line": 2, - "input_file": { - "filename": "autogen/starknet/external/getUri/168ea02ff2f5e1e0110befc18d858a5c0702d764020c5064bab1b76e9e1bf31a.cairo" - }, - "parent_location": [ - { - "end_col": 12, - "end_line": 37, - "input_file": { - "filename": "src/renderers/RandomRenderer.cairo" - }, - "start_col": 6, - "start_line": 37 - }, - "While constructing the external wrapper for:" - ], - "start_col": 5, - "start_line": 2 - } - }, - "697": { - "accessible_scopes": [ - "__main__", - "__main__", - "__wrappers__", - "__wrappers__.getUri" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 40, - "end_line": 2, - "input_file": { - "filename": "autogen/starknet/arg_processor/302a0e7f223f7f95d8ec699c8e1fa2628283de74616337c794098be1f39f0256.cairo" - }, - "parent_location": [ - { - "end_col": 89, - "end_line": 37, - "input_file": { - "filename": "src/renderers/RandomRenderer.cairo" - }, - "parent_location": [ - { - "end_col": 45, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/arg_processor/c31620b02d4d706f0542c989b2aadc01b0981d1f6a5933a8fe4937ace3d70d92.cairo" - }, - "parent_location": [ - { - "end_col": 12, - "end_line": 37, - "input_file": { - "filename": "src/renderers/RandomRenderer.cairo" - }, - "parent_location": [ - { - "end_col": 57, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/arg_processor/01cba52f8515996bb9d7070bde81ff39281d096d7024a558efcba6e1fd2402cf.cairo" - }, - "parent_location": [ - { - "end_col": 12, - "end_line": 37, - "input_file": { - "filename": "src/renderers/RandomRenderer.cairo" - }, - "start_col": 6, - "start_line": 37 - }, - "While handling calldata of" - ], - "start_col": 35, - "start_line": 1 - }, - "While expanding the reference '__calldata_actual_size' in:" - ], - "start_col": 6, - "start_line": 37 - }, - "While handling calldata of" - ], - "start_col": 31, - "start_line": 1 - }, - "While expanding the reference '__calldata_ptr' in:" - ], - "start_col": 78, - "start_line": 37 - }, - "While handling calldata argument 'index'" - ], - "start_col": 22, - "start_line": 2 - } - }, - "699": { - "accessible_scopes": [ - "__main__", - "__main__", - "__wrappers__", - "__wrappers__.getUri" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 58, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/arg_processor/01cba52f8515996bb9d7070bde81ff39281d096d7024a558efcba6e1fd2402cf.cairo" - }, - "parent_location": [ - { - "end_col": 12, - "end_line": 37, - "input_file": { - "filename": "src/renderers/RandomRenderer.cairo" - }, - "start_col": 6, - "start_line": 37 - }, - "While handling calldata of" - ], - "start_col": 1, - "start_line": 1 - } - }, - "700": { - "accessible_scopes": [ - "__main__", - "__main__", - "__wrappers__", - "__wrappers__.getUri" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 64, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/external/getUri/b2c52ca2d2a8fc8791a983086d8716c5eacd0c3d62934914d2286f84b98ff4cb.cairo" - }, - "parent_location": [ - { - "end_col": 31, - "end_line": 37, - "input_file": { - "filename": "src/renderers/RandomRenderer.cairo" - }, - "parent_location": [ - { - "end_col": 55, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/external/getUri/98a5f295af3a2d780151029647c3dade14bea546bcd187607b899389a63ebe1e.cairo" - }, - "parent_location": [ - { - "end_col": 12, - "end_line": 37, - "input_file": { - "filename": "src/renderers/RandomRenderer.cairo" - }, - "start_col": 6, - "start_line": 37 - }, - "While constructing the external wrapper for:" - ], - "start_col": 44, - "start_line": 1 - }, - "While expanding the reference 'syscall_ptr' in:" - ], - "start_col": 13, - "start_line": 37 - }, - "While constructing the external wrapper for:" - ], - "start_col": 19, - "start_line": 1 - } - }, - "701": { - "accessible_scopes": [ - "__main__", - "__main__", - "__wrappers__", - "__wrappers__.getUri" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 110, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/external/getUri/9684a85e93c782014ca14293edea4eb2502039a5a7b6538ecd39c56faaf12529.cairo" - }, - "parent_location": [ - { - "end_col": 59, - "end_line": 37, - "input_file": { - "filename": "src/renderers/RandomRenderer.cairo" - }, - "parent_location": [ - { - "end_col": 82, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/external/getUri/98a5f295af3a2d780151029647c3dade14bea546bcd187607b899389a63ebe1e.cairo" - }, - "parent_location": [ - { - "end_col": 12, - "end_line": 37, - "input_file": { - "filename": "src/renderers/RandomRenderer.cairo" - }, - "start_col": 6, - "start_line": 37 - }, - "While constructing the external wrapper for:" - ], - "start_col": 70, - "start_line": 1 - }, - "While expanding the reference 'pedersen_ptr' in:" - ], - "start_col": 33, - "start_line": 37 - }, - "While constructing the external wrapper for:" - ], - "start_col": 20, - "start_line": 1 - } - }, - "702": { - "accessible_scopes": [ - "__main__", - "__main__", - "__wrappers__", - "__wrappers__.getUri" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 67, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/external/getUri/741ea357d6336b0bed7bf0472425acd0311d543883b803388880e60a232040c7.cairo" - }, - "parent_location": [ - { - "end_col": 76, - "end_line": 37, - "input_file": { - "filename": "src/renderers/RandomRenderer.cairo" - }, - "parent_location": [ - { - "end_col": 115, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/external/getUri/98a5f295af3a2d780151029647c3dade14bea546bcd187607b899389a63ebe1e.cairo" - }, - "parent_location": [ - { - "end_col": 12, - "end_line": 37, - "input_file": { - "filename": "src/renderers/RandomRenderer.cairo" - }, - "start_col": 6, - "start_line": 37 - }, - "While constructing the external wrapper for:" - ], - "start_col": 100, - "start_line": 1 - }, - "While expanding the reference 'range_check_ptr' in:" - ], - "start_col": 61, - "start_line": 37 - }, - "While constructing the external wrapper for:" - ], - "start_col": 23, - "start_line": 1 - } - }, - "703": { - "accessible_scopes": [ - "__main__", - "__main__", - "__wrappers__", - "__wrappers__.getUri" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 44, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/arg_processor/302a0e7f223f7f95d8ec699c8e1fa2628283de74616337c794098be1f39f0256.cairo" - }, - "parent_location": [ - { - "end_col": 89, - "end_line": 37, - "input_file": { - "filename": "src/renderers/RandomRenderer.cairo" - }, - "parent_location": [ - { - "end_col": 143, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/external/getUri/98a5f295af3a2d780151029647c3dade14bea546bcd187607b899389a63ebe1e.cairo" - }, - "parent_location": [ - { - "end_col": 12, - "end_line": 37, - "input_file": { - "filename": "src/renderers/RandomRenderer.cairo" - }, - "start_col": 6, - "start_line": 37 - }, - "While constructing the external wrapper for:" - ], - "start_col": 123, - "start_line": 1 - }, - "While expanding the reference '__calldata_arg_index' in:" - ], - "start_col": 78, - "start_line": 37 - }, - "While handling calldata argument 'index'" - ], - "start_col": 28, - "start_line": 1 - } - }, - "704": { - "accessible_scopes": [ - "__main__", - "__main__", - "__wrappers__", - "__wrappers__.getUri" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 12, - "end_line": 37, - "input_file": { - "filename": "src/renderers/RandomRenderer.cairo" - }, - "start_col": 6, - "start_line": 37 - } - }, - "706": { - "accessible_scopes": [ - "__main__", - "__main__", - "__wrappers__", - "__wrappers__.getUri" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 55, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/external/getUri/98a5f295af3a2d780151029647c3dade14bea546bcd187607b899389a63ebe1e.cairo" - }, - "parent_location": [ - { - "end_col": 12, - "end_line": 37, - "input_file": { - "filename": "src/renderers/RandomRenderer.cairo" - }, - "parent_location": [ - { - "end_col": 55, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/external/getUri/98a5f295af3a2d780151029647c3dade14bea546bcd187607b899389a63ebe1e.cairo" - }, - "parent_location": [ - { - "end_col": 12, - "end_line": 37, - "input_file": { - "filename": "src/renderers/RandomRenderer.cairo" - }, - "start_col": 6, - "start_line": 37 - }, - "While constructing the external wrapper for:" - ], - "start_col": 44, - "start_line": 1 - }, - "While auto generating local variable for 'syscall_ptr'." - ], - "start_col": 6, - "start_line": 37 - }, - "While constructing the external wrapper for:" - ], - "start_col": 44, - "start_line": 1 - } - }, - "707": { - "accessible_scopes": [ - "__main__", - "__main__", - "__wrappers__", - "__wrappers__.getUri" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 82, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/external/getUri/98a5f295af3a2d780151029647c3dade14bea546bcd187607b899389a63ebe1e.cairo" - }, - "parent_location": [ - { - "end_col": 12, - "end_line": 37, - "input_file": { - "filename": "src/renderers/RandomRenderer.cairo" - }, - "parent_location": [ - { - "end_col": 82, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/external/getUri/98a5f295af3a2d780151029647c3dade14bea546bcd187607b899389a63ebe1e.cairo" - }, - "parent_location": [ - { - "end_col": 12, - "end_line": 37, - "input_file": { - "filename": "src/renderers/RandomRenderer.cairo" - }, - "start_col": 6, - "start_line": 37 - }, - "While constructing the external wrapper for:" - ], - "start_col": 70, - "start_line": 1 - }, - "While auto generating local variable for 'pedersen_ptr'." - ], - "start_col": 6, - "start_line": 37 - }, - "While constructing the external wrapper for:" - ], - "start_col": 70, - "start_line": 1 - } - }, - "708": { - "accessible_scopes": [ - "__main__", - "__main__", - "__wrappers__", - "__wrappers__.getUri" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 115, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/external/getUri/98a5f295af3a2d780151029647c3dade14bea546bcd187607b899389a63ebe1e.cairo" - }, - "parent_location": [ - { - "end_col": 12, - "end_line": 37, - "input_file": { - "filename": "src/renderers/RandomRenderer.cairo" - }, - "parent_location": [ - { - "end_col": 95, - "end_line": 2, - "input_file": { - "filename": "autogen/starknet/external/getUri/98a5f295af3a2d780151029647c3dade14bea546bcd187607b899389a63ebe1e.cairo" - }, - "parent_location": [ - { - "end_col": 12, - "end_line": 37, - "input_file": { - "filename": "src/renderers/RandomRenderer.cairo" - }, - "start_col": 6, - "start_line": 37 - }, - "While constructing the external wrapper for:" - ], - "start_col": 80, - "start_line": 2 - }, - "While expanding the reference 'range_check_ptr' in:" - ], - "start_col": 6, - "start_line": 37 - }, - "While constructing the external wrapper for:" - ], - "start_col": 100, - "start_line": 1 - } - }, - "709": { - "accessible_scopes": [ - "__main__", - "__main__", - "__wrappers__", - "__wrappers__.getUri" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 96, - "end_line": 2, - "input_file": { - "filename": "autogen/starknet/external/getUri/98a5f295af3a2d780151029647c3dade14bea546bcd187607b899389a63ebe1e.cairo" - }, - "parent_location": [ - { - "end_col": 12, - "end_line": 37, - "input_file": { - "filename": "src/renderers/RandomRenderer.cairo" - }, - "start_col": 6, - "start_line": 37 - }, - "While constructing the external wrapper for:" - ], - "start_col": 48, - "start_line": 2 - } - }, - "711": { - "accessible_scopes": [ - "__main__", - "__main__", - "__wrappers__", - "__wrappers__.getUri" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 55, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/external/getUri/98a5f295af3a2d780151029647c3dade14bea546bcd187607b899389a63ebe1e.cairo" - }, - "parent_location": [ - { - "end_col": 12, - "end_line": 37, - "input_file": { - "filename": "src/renderers/RandomRenderer.cairo" - }, - "parent_location": [ - { - "end_col": 55, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/external/getUri/98a5f295af3a2d780151029647c3dade14bea546bcd187607b899389a63ebe1e.cairo" - }, - "parent_location": [ - { - "end_col": 12, - "end_line": 37, - "input_file": { - "filename": "src/renderers/RandomRenderer.cairo" - }, - "parent_location": [ - { - "end_col": 20, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/external/getUri/da17921a4e81c09e730800bbf23bfdbe5e9e6bfaedc59d80fbf62087fa43c27d.cairo" - }, - "parent_location": [ - { - "end_col": 12, - "end_line": 37, - "input_file": { - "filename": "src/renderers/RandomRenderer.cairo" - }, - "start_col": 6, - "start_line": 37 - }, - "While constructing the external wrapper for:" - ], - "start_col": 9, - "start_line": 1 - }, - "While expanding the reference 'syscall_ptr' in:" - ], - "start_col": 6, - "start_line": 37 - }, - "While constructing the external wrapper for:" - ], - "start_col": 44, - "start_line": 1 - }, - "While auto generating local variable for 'syscall_ptr'." - ], - "start_col": 6, - "start_line": 37 - }, - "While constructing the external wrapper for:" - ], - "start_col": 44, - "start_line": 1 - } - }, - "712": { - "accessible_scopes": [ - "__main__", - "__main__", - "__wrappers__", - "__wrappers__.getUri" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 82, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/external/getUri/98a5f295af3a2d780151029647c3dade14bea546bcd187607b899389a63ebe1e.cairo" - }, - "parent_location": [ - { - "end_col": 12, - "end_line": 37, - "input_file": { - "filename": "src/renderers/RandomRenderer.cairo" - }, - "parent_location": [ - { - "end_col": 82, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/external/getUri/98a5f295af3a2d780151029647c3dade14bea546bcd187607b899389a63ebe1e.cairo" - }, - "parent_location": [ - { - "end_col": 12, - "end_line": 37, - "input_file": { - "filename": "src/renderers/RandomRenderer.cairo" - }, - "parent_location": [ - { - "end_col": 33, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/external/getUri/da17921a4e81c09e730800bbf23bfdbe5e9e6bfaedc59d80fbf62087fa43c27d.cairo" - }, - "parent_location": [ - { - "end_col": 12, - "end_line": 37, - "input_file": { - "filename": "src/renderers/RandomRenderer.cairo" - }, - "start_col": 6, - "start_line": 37 - }, - "While constructing the external wrapper for:" - ], - "start_col": 21, - "start_line": 1 - }, - "While expanding the reference 'pedersen_ptr' in:" - ], - "start_col": 6, - "start_line": 37 - }, - "While constructing the external wrapper for:" - ], - "start_col": 70, - "start_line": 1 - }, - "While auto generating local variable for 'pedersen_ptr'." - ], - "start_col": 6, - "start_line": 37 - }, - "While constructing the external wrapper for:" - ], - "start_col": 70, - "start_line": 1 - } - }, - "713": { - "accessible_scopes": [ - "__main__", - "__main__", - "__wrappers__", - "__wrappers__.getUri" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 21, - "end_line": 2, - "input_file": { - "filename": "autogen/starknet/external/getUri/98a5f295af3a2d780151029647c3dade14bea546bcd187607b899389a63ebe1e.cairo" - }, - "parent_location": [ - { - "end_col": 12, - "end_line": 37, - "input_file": { - "filename": "src/renderers/RandomRenderer.cairo" - }, - "parent_location": [ - { - "end_col": 49, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/external/getUri/da17921a4e81c09e730800bbf23bfdbe5e9e6bfaedc59d80fbf62087fa43c27d.cairo" - }, - "parent_location": [ - { - "end_col": 12, - "end_line": 37, - "input_file": { - "filename": "src/renderers/RandomRenderer.cairo" - }, - "start_col": 6, - "start_line": 37 - }, - "While constructing the external wrapper for:" - ], - "start_col": 34, - "start_line": 1 - }, - "While expanding the reference 'range_check_ptr' in:" - ], - "start_col": 6, - "start_line": 37 - }, - "While constructing the external wrapper for:" - ], - "start_col": 6, - "start_line": 2 - } - }, - "714": { - "accessible_scopes": [ - "__main__", - "__main__", - "__wrappers__", - "__wrappers__.getUri" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 35, - "end_line": 2, - "input_file": { - "filename": "autogen/starknet/external/getUri/98a5f295af3a2d780151029647c3dade14bea546bcd187607b899389a63ebe1e.cairo" - }, - "parent_location": [ - { - "end_col": 12, - "end_line": 37, - "input_file": { - "filename": "src/renderers/RandomRenderer.cairo" - }, - "parent_location": [ - { - "end_col": 62, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/external/getUri/da17921a4e81c09e730800bbf23bfdbe5e9e6bfaedc59d80fbf62087fa43c27d.cairo" - }, - "parent_location": [ - { - "end_col": 12, - "end_line": 37, - "input_file": { - "filename": "src/renderers/RandomRenderer.cairo" - }, - "start_col": 6, - "start_line": 37 - }, - "While constructing the external wrapper for:" - ], - "start_col": 50, - "start_line": 1 - }, - "While expanding the reference 'retdata_size' in:" - ], - "start_col": 6, - "start_line": 37 - }, - "While constructing the external wrapper for:" - ], - "start_col": 23, - "start_line": 2 - } - }, - "715": { - "accessible_scopes": [ - "__main__", - "__main__", - "__wrappers__", - "__wrappers__.getUri" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 44, - "end_line": 2, - "input_file": { - "filename": "autogen/starknet/external/getUri/98a5f295af3a2d780151029647c3dade14bea546bcd187607b899389a63ebe1e.cairo" - }, - "parent_location": [ - { - "end_col": 12, - "end_line": 37, - "input_file": { - "filename": "src/renderers/RandomRenderer.cairo" - }, - "parent_location": [ - { - "end_col": 70, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/external/getUri/da17921a4e81c09e730800bbf23bfdbe5e9e6bfaedc59d80fbf62087fa43c27d.cairo" - }, - "parent_location": [ - { - "end_col": 12, - "end_line": 37, - "input_file": { - "filename": "src/renderers/RandomRenderer.cairo" - }, - "start_col": 6, - "start_line": 37 - }, - "While constructing the external wrapper for:" - ], - "start_col": 63, - "start_line": 1 - }, - "While expanding the reference 'retdata' in:" - ], - "start_col": 6, - "start_line": 37 - }, - "While constructing the external wrapper for:" - ], - "start_col": 37, - "start_line": 2 - } - }, - "716": { - "accessible_scopes": [ - "__main__", - "__main__", - "__wrappers__", - "__wrappers__.getUri" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 72, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/external/getUri/da17921a4e81c09e730800bbf23bfdbe5e9e6bfaedc59d80fbf62087fa43c27d.cairo" - }, - "parent_location": [ - { - "end_col": 12, - "end_line": 37, - "input_file": { - "filename": "src/renderers/RandomRenderer.cairo" - }, - "start_col": 6, - "start_line": 37 - }, - "While constructing the external wrapper for:" - ], - "start_col": 1, - "start_line": 1 - } - }, - "717": { - "accessible_scopes": [ - "__main__", - "__main__", - "__main__.testUris" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 18, - "end_line": 47, - "input_file": { - "filename": "src/renderers/RandomRenderer.cairo" - }, - "start_col": 5, - "start_line": 47 - } - }, - "719": { - "accessible_scopes": [ - "__main__", - "__main__", - "__main__.testUris" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 31, - "end_line": 51, - "input_file": { - "filename": "src/renderers/RandomRenderer.cairo" - }, - "start_col": 24, - "start_line": 51 - } - }, - "721": { - "accessible_scopes": [ - "__main__", - "__main__", - "__main__.testUris" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 20, - "end_line": 51, - "input_file": { - "filename": "src/renderers/RandomRenderer.cairo" - }, - "parent_location": [ - { - "end_col": 20, - "end_line": 51, - "input_file": { - "filename": "src/renderers/RandomRenderer.cairo" - }, - "start_col": 10, - "start_line": 51 - }, - "While auto generating local variable for 'uri'." - ], - "start_col": 10, - "start_line": 51 - } - }, - "722": { - "accessible_scopes": [ - "__main__", - "__main__", - "__main__.testUris" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 36, - "end_line": 48, - "input_file": { - "filename": "src/renderers/RandomRenderer.cairo" - }, - "parent_location": [ - { - "end_col": 20, - "end_line": 50, - "input_file": { - "filename": "src/renderers/RandomRenderer.cairo" - }, - "parent_location": [ - { - "end_col": 37, - "end_line": 52, - "input_file": { - "filename": "src/renderers/RandomRenderer.cairo" - }, - "start_col": 32, - "start_line": 52 - }, - "While expanding the reference 'start' in:" - ], - "start_col": 17, - "start_line": 50 - }, - "While expanding the reference 'pos' in:" - ], - "start_col": 16, - "start_line": 48 - } - }, - "723": { - "accessible_scopes": [ - "__main__", - "__main__", - "__main__.testUris" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 37, - "end_line": 48, - "input_file": { - "filename": "src/renderers/RandomRenderer.cairo" - }, - "parent_location": [ - { - "end_col": 20, - "end_line": 50, - "input_file": { - "filename": "src/renderers/RandomRenderer.cairo" - }, - "parent_location": [ - { - "end_col": 37, - "end_line": 52, - "input_file": { - "filename": "src/renderers/RandomRenderer.cairo" - }, - "start_col": 32, - "start_line": 52 - }, - "While expanding the reference 'start' in:" - ], - "start_col": 17, - "start_line": 50 - }, - "While expanding the reference 'pos' in:" - ], - "start_col": 15, - "start_line": 48 - } - }, - "724": { - "accessible_scopes": [ - "__main__", - "__main__", - "__main__.testUris" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 24, - "end_line": 50, - "input_file": { - "filename": "src/renderers/RandomRenderer.cairo" - }, - "parent_location": [ - { - "end_col": 37, - "end_line": 52, - "input_file": { - "filename": "src/renderers/RandomRenderer.cairo" - }, - "start_col": 32, - "start_line": 52 - }, - "While expanding the reference 'start' in:" - ], - "start_col": 17, - "start_line": 50 - } - }, - "726": { - "accessible_scopes": [ - "__main__", - "__main__", - "__main__.testUris" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 36, - "end_line": 48, - "input_file": { - "filename": "src/renderers/RandomRenderer.cairo" - }, - "parent_location": [ - { - "end_col": 38, - "end_line": 49, - "input_file": { - "filename": "src/renderers/RandomRenderer.cairo" - }, - "parent_location": [ - { - "end_col": 46, - "end_line": 52, - "input_file": { - "filename": "src/renderers/RandomRenderer.cairo" - }, - "start_col": 39, - "start_line": 52 - }, - "While expanding the reference 'uri_len' in:" - ], - "start_col": 35, - "start_line": 49 - }, - "While expanding the reference 'pos' in:" - ], - "start_col": 16, - "start_line": 48 - } - }, - "727": { - "accessible_scopes": [ - "__main__", - "__main__", - "__main__.testUris" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 37, - "end_line": 48, - "input_file": { - "filename": "src/renderers/RandomRenderer.cairo" - }, - "parent_location": [ - { - "end_col": 38, - "end_line": 49, - "input_file": { - "filename": "src/renderers/RandomRenderer.cairo" - }, - "parent_location": [ - { - "end_col": 46, - "end_line": 52, - "input_file": { - "filename": "src/renderers/RandomRenderer.cairo" - }, - "start_col": 39, - "start_line": 52 - }, - "While expanding the reference 'uri_len' in:" - ], - "start_col": 35, - "start_line": 49 - }, - "While expanding the reference 'pos' in:" - ], - "start_col": 15, - "start_line": 48 - } - }, - "728": { - "accessible_scopes": [ - "__main__", - "__main__", - "__main__.testUris" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 38, - "end_line": 49, - "input_file": { - "filename": "src/renderers/RandomRenderer.cairo" - }, - "parent_location": [ - { - "end_col": 46, - "end_line": 52, - "input_file": { - "filename": "src/renderers/RandomRenderer.cairo" - }, - "start_col": 39, - "start_line": 52 - }, - "While expanding the reference 'uri_len' in:" - ], - "start_col": 20, - "start_line": 49 - } - }, - "729": { - "accessible_scopes": [ - "__main__", - "__main__", - "__main__.testUris" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 20, - "end_line": 51, - "input_file": { - "filename": "src/renderers/RandomRenderer.cairo" - }, - "parent_location": [ - { - "end_col": 20, - "end_line": 51, - "input_file": { - "filename": "src/renderers/RandomRenderer.cairo" - }, - "parent_location": [ - { - "end_col": 15, - "end_line": 52, - "input_file": { - "filename": "src/renderers/RandomRenderer.cairo" - }, - "start_col": 12, - "start_line": 52 - }, - "While expanding the reference 'uri' in:" - ], - "start_col": 10, - "start_line": 51 - }, - "While auto generating local variable for 'uri'." - ], - "start_col": 10, - "start_line": 51 - } - }, - "730": { - "accessible_scopes": [ - "__main__", - "__main__", - "__main__.testUris" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 37, - "end_line": 52, - "input_file": { - "filename": "src/renderers/RandomRenderer.cairo" - }, - "start_col": 17, - "start_line": 52 - } - }, - "731": { - "accessible_scopes": [ - "__main__", - "__main__", - "__main__.testUris" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 39, - "end_line": 49, - "input_file": { - "filename": "src/renderers/RandomRenderer.cairo" - }, - "parent_location": [ - { - "end_col": 46, - "end_line": 52, - "input_file": { - "filename": "src/renderers/RandomRenderer.cairo" - }, - "start_col": 39, - "start_line": 52 - }, - "While expanding the reference 'uri_len' in:" - ], - "start_col": 19, - "start_line": 49 - } - }, - "732": { - "accessible_scopes": [ - "__main__", - "__main__", - "__main__.testUris" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 47, - "end_line": 52, - "input_file": { - "filename": "src/renderers/RandomRenderer.cairo" - }, - "start_col": 5, - "start_line": 52 - } - }, - "734": { - "accessible_scopes": [ - "__main__", - "__main__", - "__main__.testUris" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 36, - "end_line": 48, - "input_file": { - "filename": "src/renderers/RandomRenderer.cairo" - }, - "parent_location": [ - { - "end_col": 38, - "end_line": 49, - "input_file": { - "filename": "src/renderers/RandomRenderer.cairo" - }, - "parent_location": [ - { - "end_col": 20, - "end_line": 53, - "input_file": { - "filename": "src/renderers/RandomRenderer.cairo" - }, - "start_col": 13, - "start_line": 53 - }, - "While expanding the reference 'uri_len' in:" - ], - "start_col": 35, - "start_line": 49 - }, - "While expanding the reference 'pos' in:" - ], - "start_col": 16, - "start_line": 48 - } - }, - "735": { - "accessible_scopes": [ - "__main__", - "__main__", - "__main__.testUris" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 37, - "end_line": 48, - "input_file": { - "filename": "src/renderers/RandomRenderer.cairo" - }, - "parent_location": [ - { - "end_col": 38, - "end_line": 49, - "input_file": { - "filename": "src/renderers/RandomRenderer.cairo" - }, - "parent_location": [ - { - "end_col": 20, - "end_line": 53, - "input_file": { - "filename": "src/renderers/RandomRenderer.cairo" - }, - "start_col": 13, - "start_line": 53 - }, - "While expanding the reference 'uri_len' in:" - ], - "start_col": 35, - "start_line": 49 - }, - "While expanding the reference 'pos' in:" - ], - "start_col": 15, - "start_line": 48 - } - }, - "736": { - "accessible_scopes": [ - "__main__", - "__main__", - "__main__.testUris" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 38, - "end_line": 49, - "input_file": { - "filename": "src/renderers/RandomRenderer.cairo" - }, - "parent_location": [ - { - "end_col": 20, - "end_line": 53, - "input_file": { - "filename": "src/renderers/RandomRenderer.cairo" - }, - "start_col": 13, - "start_line": 53 - }, - "While expanding the reference 'uri_len' in:" - ], - "start_col": 20, - "start_line": 49 - } - }, - "737": { - "accessible_scopes": [ - "__main__", - "__main__", - "__main__.testUris" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 33, - "end_line": 44, - "input_file": { - "filename": "src/renderers/RandomRenderer.cairo" - }, - "parent_location": [ - { - "end_col": 33, - "end_line": 44, - "input_file": { - "filename": "src/renderers/RandomRenderer.cairo" - }, - "parent_location": [ - { - "end_col": 27, - "end_line": 53, - "input_file": { - "filename": "src/renderers/RandomRenderer.cairo" - }, - "start_col": 5, - "start_line": 53 - }, - "While trying to retrieve the implicit argument 'syscall_ptr' in:" - ], - "start_col": 15, - "start_line": 44 - }, - "While expanding the reference 'syscall_ptr' in:" - ], - "start_col": 15, - "start_line": 44 - } - }, - "738": { - "accessible_scopes": [ - "__main__", - "__main__", - "__main__.testUris" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 61, - "end_line": 44, - "input_file": { - "filename": "src/renderers/RandomRenderer.cairo" - }, - "parent_location": [ - { - "end_col": 61, - "end_line": 44, - "input_file": { - "filename": "src/renderers/RandomRenderer.cairo" - }, - "parent_location": [ - { - "end_col": 27, - "end_line": 53, - "input_file": { - "filename": "src/renderers/RandomRenderer.cairo" - }, - "start_col": 5, - "start_line": 53 - }, - "While trying to retrieve the implicit argument 'pedersen_ptr' in:" - ], - "start_col": 35, - "start_line": 44 - }, - "While expanding the reference 'pedersen_ptr' in:" - ], - "start_col": 35, - "start_line": 44 - } - }, - "739": { - "accessible_scopes": [ - "__main__", - "__main__", - "__main__.testUris" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 78, - "end_line": 44, - "input_file": { - "filename": "src/renderers/RandomRenderer.cairo" - }, - "parent_location": [ - { - "end_col": 78, - "end_line": 44, - "input_file": { - "filename": "src/renderers/RandomRenderer.cairo" - }, - "parent_location": [ - { - "end_col": 27, - "end_line": 53, - "input_file": { - "filename": "src/renderers/RandomRenderer.cairo" - }, - "start_col": 5, - "start_line": 53 - }, - "While trying to retrieve the implicit argument 'range_check_ptr' in:" - ], - "start_col": 63, - "start_line": 44 - }, - "While expanding the reference 'range_check_ptr' in:" - ], - "start_col": 63, - "start_line": 44 - } - }, - "740": { - "accessible_scopes": [ - "__main__", - "__main__", - "__main__.testUris" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 39, - "end_line": 49, - "input_file": { - "filename": "src/renderers/RandomRenderer.cairo" - }, - "parent_location": [ - { - "end_col": 20, - "end_line": 53, - "input_file": { - "filename": "src/renderers/RandomRenderer.cairo" - }, - "start_col": 13, - "start_line": 53 - }, - "While expanding the reference 'uri_len' in:" - ], - "start_col": 19, - "start_line": 49 - } - }, - "741": { - "accessible_scopes": [ - "__main__", - "__main__", - "__main__.testUris" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 20, - "end_line": 51, - "input_file": { - "filename": "src/renderers/RandomRenderer.cairo" - }, - "parent_location": [ - { - "end_col": 20, - "end_line": 51, - "input_file": { - "filename": "src/renderers/RandomRenderer.cairo" - }, - "parent_location": [ - { - "end_col": 25, - "end_line": 53, - "input_file": { - "filename": "src/renderers/RandomRenderer.cairo" - }, - "start_col": 22, - "start_line": 53 - }, - "While expanding the reference 'uri' in:" - ], - "start_col": 10, - "start_line": 51 - }, - "While auto generating local variable for 'uri'." - ], - "start_col": 10, - "start_line": 51 - } - }, - "742": { - "accessible_scopes": [ - "__main__", - "__main__", - "__main__.testUris" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 27, - "end_line": 53, - "input_file": { - "filename": "src/renderers/RandomRenderer.cairo" - }, - "start_col": 5, - "start_line": 53 - } - }, - "743": { - "accessible_scopes": [ - "__main__", - "__main__", - "__wrappers__", - "__wrappers__.testUris_encode_return" - ], - "flow_tracking_data": null, - "hints": [ - { - "location": { - "end_col": 38, - "end_line": 3, - "input_file": { - "filename": "autogen/starknet/external/return/testUris/93186184cb71ae2c7031ae11a0eb8708449a93a7b0214b026750101d50310eff.cairo" - }, - "parent_location": [ - { - "end_col": 14, - "end_line": 44, - "input_file": { - "filename": "src/renderers/RandomRenderer.cairo" - }, - "start_col": 6, - "start_line": 44 - }, - "While handling return value of" - ], - "start_col": 5, - "start_line": 3 - }, - "n_prefix_newlines": 0 - } - ], - "inst": { - "end_col": 18, - "end_line": 4, - "input_file": { - "filename": "autogen/starknet/external/return/testUris/93186184cb71ae2c7031ae11a0eb8708449a93a7b0214b026750101d50310eff.cairo" - }, - "parent_location": [ - { - "end_col": 14, - "end_line": 44, - "input_file": { - "filename": "src/renderers/RandomRenderer.cairo" - }, - "start_col": 6, - "start_line": 44 - }, - "While handling return value of" - ], - "start_col": 5, - "start_line": 4 - } - }, - "745": { - "accessible_scopes": [ - "__main__", - "__main__", - "__wrappers__", - "__wrappers__.testUris_encode_return" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 49, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/arg_processor/e5c63607fcbdbe90af3e646b038ed92cbbfbdda49041f6d47804f4a9e0551fe2.cairo" - }, - "parent_location": [ - { - "end_col": 20, - "end_line": 46, - "input_file": { - "filename": "src/renderers/RandomRenderer.cairo" - }, - "start_col": 7, - "start_line": 46 - }, - "While handling return value 'uri_len'" - ], - "start_col": 1, - "start_line": 1 - } - }, - "746": { - "accessible_scopes": [ - "__main__", - "__main__", - "__wrappers__", - "__wrappers__.testUris_encode_return" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 46, - "end_line": 2, - "input_file": { - "filename": "autogen/starknet/arg_processor/0e2692b9b5b0d1050bfa0e270aad02e1a4dd5194eace4357b14efae5cfb7ff33.cairo" - }, - "parent_location": [ - { - "end_col": 32, - "end_line": 46, - "input_file": { - "filename": "src/renderers/RandomRenderer.cairo" - }, - "start_col": 22, - "start_line": 46 - }, - "While handling return value 'uri'" - ], - "start_col": 1, - "start_line": 2 - } - }, - "747": { - "accessible_scopes": [ - "__main__", - "__main__", - "__wrappers__", - "__wrappers__.testUris_encode_return" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 45, - "end_line": 5, - "input_file": { - "filename": "autogen/starknet/arg_processor/0e2692b9b5b0d1050bfa0e270aad02e1a4dd5194eace4357b14efae5cfb7ff33.cairo" - }, - "parent_location": [ - { - "end_col": 32, - "end_line": 46, - "input_file": { - "filename": "src/renderers/RandomRenderer.cairo" - }, - "start_col": 22, - "start_line": 46 - }, - "While handling return value 'uri'" - ], - "start_col": 1, - "start_line": 5 - } - }, - "749": { - "accessible_scopes": [ - "__main__", - "__main__", - "__wrappers__", - "__wrappers__.testUris_encode_return" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 48, - "end_line": 2, - "input_file": { - "filename": "autogen/starknet/arg_processor/e5c63607fcbdbe90af3e646b038ed92cbbfbdda49041f6d47804f4a9e0551fe2.cairo" - }, - "parent_location": [ - { - "end_col": 20, - "end_line": 46, - "input_file": { - "filename": "src/renderers/RandomRenderer.cairo" - }, - "parent_location": [ - { - "end_col": 53, - "end_line": 10, - "input_file": { - "filename": "autogen/starknet/arg_processor/0e2692b9b5b0d1050bfa0e270aad02e1a4dd5194eace4357b14efae5cfb7ff33.cairo" - }, - "parent_location": [ - { - "end_col": 32, - "end_line": 46, - "input_file": { - "filename": "src/renderers/RandomRenderer.cairo" - }, - "start_col": 22, - "start_line": 46 - }, - "While handling return value 'uri'" - ], - "start_col": 35, - "start_line": 10 - }, - "While expanding the reference '__return_value_ptr' in:" - ], - "start_col": 7, - "start_line": 46 - }, - "While handling return value 'uri_len'" - ], - "start_col": 26, - "start_line": 2 - } - }, - "751": { - "accessible_scopes": [ - "__main__", - "__main__", - "__wrappers__", - "__wrappers__.testUris_encode_return" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 78, - "end_line": 10, - "input_file": { - "filename": "autogen/starknet/arg_processor/0e2692b9b5b0d1050bfa0e270aad02e1a4dd5194eace4357b14efae5cfb7ff33.cairo" - }, - "parent_location": [ - { - "end_col": 32, - "end_line": 46, - "input_file": { - "filename": "src/renderers/RandomRenderer.cairo" - }, - "start_col": 22, - "start_line": 46 - }, - "While handling return value 'uri'" - ], - "start_col": 1, - "start_line": 10 - } - }, - "752": { - "accessible_scopes": [ - "__main__", - "__main__", - "__wrappers__", - "__wrappers__.testUris_encode_return" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 48, - "end_line": 2, - "input_file": { - "filename": "autogen/starknet/arg_processor/e5c63607fcbdbe90af3e646b038ed92cbbfbdda49041f6d47804f4a9e0551fe2.cairo" - }, - "parent_location": [ - { - "end_col": 20, - "end_line": 46, - "input_file": { - "filename": "src/renderers/RandomRenderer.cairo" - }, - "parent_location": [ - { - "end_col": 49, - "end_line": 7, - "input_file": { - "filename": "autogen/starknet/arg_processor/0e2692b9b5b0d1050bfa0e270aad02e1a4dd5194eace4357b14efae5cfb7ff33.cairo" - }, - "parent_location": [ - { - "end_col": 32, - "end_line": 46, - "input_file": { - "filename": "src/renderers/RandomRenderer.cairo" - }, - "parent_location": [ - { - "end_col": 32, - "end_line": 12, - "input_file": { - "filename": "autogen/starknet/arg_processor/0e2692b9b5b0d1050bfa0e270aad02e1a4dd5194eace4357b14efae5cfb7ff33.cairo" - }, - "parent_location": [ - { - "end_col": 32, - "end_line": 46, - "input_file": { - "filename": "src/renderers/RandomRenderer.cairo" - }, - "start_col": 22, - "start_line": 46 - }, - "While handling return value 'uri'" - ], - "start_col": 9, - "start_line": 12 - }, - "While expanding the reference '__return_value_ptr_copy' in:" - ], - "start_col": 22, - "start_line": 46 - }, - "While handling return value 'uri'" - ], - "start_col": 31, - "start_line": 7 - }, - "While expanding the reference '__return_value_ptr' in:" - ], - "start_col": 7, - "start_line": 46 - }, - "While handling return value 'uri_len'" - ], - "start_col": 26, - "start_line": 2 - } - }, - "754": { - "accessible_scopes": [ - "__main__", - "__main__", - "__wrappers__", - "__wrappers__.testUris_encode_return" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 22, - "end_line": 13, - "input_file": { - "filename": "autogen/starknet/arg_processor/0e2692b9b5b0d1050bfa0e270aad02e1a4dd5194eace4357b14efae5cfb7ff33.cairo" - }, - "parent_location": [ - { - "end_col": 32, - "end_line": 46, - "input_file": { - "filename": "src/renderers/RandomRenderer.cairo" - }, - "start_col": 22, - "start_line": 46 - }, - "While handling return value 'uri'" - ], - "start_col": 9, - "start_line": 13 - } - }, - "755": { - "accessible_scopes": [ - "__main__", - "__main__", - "__wrappers__", - "__wrappers__.testUris_encode_return" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 26, - "end_line": 14, - "input_file": { - "filename": "autogen/starknet/arg_processor/0e2692b9b5b0d1050bfa0e270aad02e1a4dd5194eace4357b14efae5cfb7ff33.cairo" - }, - "parent_location": [ - { - "end_col": 32, - "end_line": 46, - "input_file": { - "filename": "src/renderers/RandomRenderer.cairo" - }, - "start_col": 22, - "start_line": 46 - }, - "While handling return value 'uri'" - ], - "start_col": 9, - "start_line": 14 - } - }, - "756": { - "accessible_scopes": [ - "__main__", - "__main__", - "__wrappers__", - "__wrappers__.testUris_encode_return" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 31, - "end_line": 14, - "input_file": { - "filename": "autogen/starknet/arg_processor/0e2692b9b5b0d1050bfa0e270aad02e1a4dd5194eace4357b14efae5cfb7ff33.cairo" - }, - "parent_location": [ - { - "end_col": 32, - "end_line": 46, - "input_file": { - "filename": "src/renderers/RandomRenderer.cairo" - }, - "start_col": 22, - "start_line": 46 - }, - "While handling return value 'uri'" - ], - "start_col": 1, - "start_line": 11 - } - }, - "758": { - "accessible_scopes": [ - "__main__", - "__main__", - "__wrappers__", - "__wrappers__.testUris_encode_return" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 22, - "end_line": 5, - "input_file": { - "filename": "autogen/starknet/arg_processor/0e2692b9b5b0d1050bfa0e270aad02e1a4dd5194eace4357b14efae5cfb7ff33.cairo" - }, - "parent_location": [ - { - "end_col": 32, - "end_line": 46, - "input_file": { - "filename": "src/renderers/RandomRenderer.cairo" - }, - "parent_location": [ - { - "end_col": 40, - "end_line": 10, - "input_file": { - "filename": "autogen/starknet/external/return/testUris/93186184cb71ae2c7031ae11a0eb8708449a93a7b0214b026750101d50310eff.cairo" - }, - "parent_location": [ - { - "end_col": 14, - "end_line": 44, - "input_file": { - "filename": "src/renderers/RandomRenderer.cairo" - }, - "start_col": 6, - "start_line": 44 - }, - "While handling return value of" - ], - "start_col": 25, - "start_line": 10 - }, - "While expanding the reference 'range_check_ptr' in:" - ], - "start_col": 22, - "start_line": 46 - }, - "While handling return value 'uri'" - ], - "start_col": 7, - "start_line": 5 - } - }, - "759": { - "accessible_scopes": [ - "__main__", - "__main__", - "__wrappers__", - "__wrappers__.testUris_encode_return" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 63, - "end_line": 11, - "input_file": { - "filename": "autogen/starknet/external/return/testUris/93186184cb71ae2c7031ae11a0eb8708449a93a7b0214b026750101d50310eff.cairo" - }, - "parent_location": [ - { - "end_col": 14, - "end_line": 44, - "input_file": { - "filename": "src/renderers/RandomRenderer.cairo" - }, - "start_col": 6, - "start_line": 44 - }, - "While handling return value of" - ], - "start_col": 18, - "start_line": 11 - } - }, - "760": { - "accessible_scopes": [ - "__main__", - "__main__", - "__wrappers__", - "__wrappers__.testUris_encode_return" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 35, - "end_line": 5, - "input_file": { - "filename": "autogen/starknet/external/return/testUris/93186184cb71ae2c7031ae11a0eb8708449a93a7b0214b026750101d50310eff.cairo" - }, - "parent_location": [ - { - "end_col": 14, - "end_line": 44, - "input_file": { - "filename": "src/renderers/RandomRenderer.cairo" - }, - "parent_location": [ - { - "end_col": 38, - "end_line": 12, - "input_file": { - "filename": "autogen/starknet/external/return/testUris/93186184cb71ae2c7031ae11a0eb8708449a93a7b0214b026750101d50310eff.cairo" - }, - "parent_location": [ - { - "end_col": 14, - "end_line": 44, - "input_file": { - "filename": "src/renderers/RandomRenderer.cairo" - }, - "start_col": 6, - "start_line": 44 - }, - "While handling return value of" - ], - "start_col": 14, - "start_line": 12 - }, - "While expanding the reference '__return_value_ptr_start' in:" - ], - "start_col": 6, - "start_line": 44 - }, - "While handling return value of" - ], - "start_col": 11, - "start_line": 5 - } - }, - "761": { - "accessible_scopes": [ - "__main__", - "__main__", - "__wrappers__", - "__wrappers__.testUris_encode_return" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 40, - "end_line": 12, - "input_file": { - "filename": "autogen/starknet/external/return/testUris/93186184cb71ae2c7031ae11a0eb8708449a93a7b0214b026750101d50310eff.cairo" - }, - "parent_location": [ - { - "end_col": 14, - "end_line": 44, - "input_file": { - "filename": "src/renderers/RandomRenderer.cairo" - }, - "start_col": 6, - "start_line": 44 - }, - "While handling return value of" - ], - "start_col": 5, - "start_line": 9 - } - }, - "762": { - "accessible_scopes": [ - "__main__", - "__main__", - "__wrappers__", - "__wrappers__.testUris" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 18, - "end_line": 2, - "input_file": { - "filename": "autogen/starknet/external/testUris/5fa0e26a7047774b90cdb3007fc92aad94a8347fffeb6fff9cdc9d7c17b713e3.cairo" - }, - "parent_location": [ - { - "end_col": 14, - "end_line": 44, - "input_file": { - "filename": "src/renderers/RandomRenderer.cairo" - }, - "start_col": 6, - "start_line": 44 - }, - "While constructing the external wrapper for:" - ], - "start_col": 5, - "start_line": 2 - } - }, - "764": { - "accessible_scopes": [ - "__main__", - "__main__", - "__wrappers__", - "__wrappers__.testUris" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 67, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/external/testUris/741ea357d6336b0bed7bf0472425acd0311d543883b803388880e60a232040c7.cairo" - }, - "parent_location": [ - { - "end_col": 78, - "end_line": 44, - "input_file": { - "filename": "src/renderers/RandomRenderer.cairo" - }, - "parent_location": [ - { - "end_col": 24, - "end_line": 2, - "input_file": { - "filename": "autogen/starknet/arg_processor/ebfe7743ee2a7d26a243da33d07168cae9419b48d861bde75986fc65feb11420.cairo" - }, - "parent_location": [ - { - "end_col": 48, - "end_line": 45, - "input_file": { - "filename": "src/renderers/RandomRenderer.cairo" - }, - "start_col": 29, - "start_line": 45 - }, - "While handling calldata argument 'encoded_uris'" - ], - "start_col": 9, - "start_line": 2 - }, - "While expanding the reference 'range_check_ptr' in:" - ], - "start_col": 63, - "start_line": 44 - }, - "While constructing the external wrapper for:" - ], - "start_col": 23, - "start_line": 1 - } - }, - "765": { - "accessible_scopes": [ - "__main__", - "__main__", - "__wrappers__", - "__wrappers__.testUris" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 55, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/arg_processor/073ad342b04c4113aad0e4fcc310e3b998c1ae0103c8f54e93d61ae6e4766e81.cairo" - }, - "parent_location": [ - { - "end_col": 27, - "end_line": 45, - "input_file": { - "filename": "src/renderers/RandomRenderer.cairo" - }, - "parent_location": [ - { - "end_col": 59, - "end_line": 2, - "input_file": { - "filename": "autogen/starknet/arg_processor/ebfe7743ee2a7d26a243da33d07168cae9419b48d861bde75986fc65feb11420.cairo" - }, - "parent_location": [ - { - "end_col": 48, - "end_line": 45, - "input_file": { - "filename": "src/renderers/RandomRenderer.cairo" - }, - "start_col": 29, - "start_line": 45 - }, - "While handling calldata argument 'encoded_uris'" - ], - "start_col": 28, - "start_line": 2 - }, - "While expanding the reference '__calldata_arg_encoded_uris_len' in:" - ], - "start_col": 5, - "start_line": 45 - }, - "While handling calldata argument 'encoded_uris_len'" - ], - "start_col": 39, - "start_line": 1 - } - }, - "766": { - "accessible_scopes": [ - "__main__", - "__main__", - "__wrappers__", - "__wrappers__.testUris" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 60, - "end_line": 2, - "input_file": { - "filename": "autogen/starknet/arg_processor/ebfe7743ee2a7d26a243da33d07168cae9419b48d861bde75986fc65feb11420.cairo" - }, - "parent_location": [ - { - "end_col": 48, - "end_line": 45, - "input_file": { - "filename": "src/renderers/RandomRenderer.cairo" - }, - "start_col": 29, - "start_line": 45 - }, - "While handling calldata argument 'encoded_uris'" - ], - "start_col": 1, - "start_line": 2 - } - }, - "767": { - "accessible_scopes": [ - "__main__", - "__main__", - "__wrappers__", - "__wrappers__.testUris" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 40, - "end_line": 2, - "input_file": { - "filename": "autogen/starknet/arg_processor/073ad342b04c4113aad0e4fcc310e3b998c1ae0103c8f54e93d61ae6e4766e81.cairo" - }, - "parent_location": [ - { - "end_col": 27, - "end_line": 45, - "input_file": { - "filename": "src/renderers/RandomRenderer.cairo" - }, - "parent_location": [ - { - "end_col": 40, - "end_line": 8, - "input_file": { - "filename": "autogen/starknet/arg_processor/ebfe7743ee2a7d26a243da33d07168cae9419b48d861bde75986fc65feb11420.cairo" - }, - "parent_location": [ - { - "end_col": 48, - "end_line": 45, - "input_file": { - "filename": "src/renderers/RandomRenderer.cairo" - }, - "start_col": 29, - "start_line": 45 - }, - "While handling calldata argument 'encoded_uris'" - ], - "start_col": 26, - "start_line": 8 - }, - "While expanding the reference '__calldata_ptr' in:" - ], - "start_col": 5, - "start_line": 45 - }, - "While handling calldata argument 'encoded_uris_len'" - ], - "start_col": 22, - "start_line": 2 - } - }, - "769": { - "accessible_scopes": [ - "__main__", - "__main__", - "__wrappers__", - "__wrappers__.testUris" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 55, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/arg_processor/073ad342b04c4113aad0e4fcc310e3b998c1ae0103c8f54e93d61ae6e4766e81.cairo" - }, - "parent_location": [ - { - "end_col": 27, - "end_line": 45, - "input_file": { - "filename": "src/renderers/RandomRenderer.cairo" - }, - "parent_location": [ - { - "end_col": 74, - "end_line": 8, - "input_file": { - "filename": "autogen/starknet/arg_processor/ebfe7743ee2a7d26a243da33d07168cae9419b48d861bde75986fc65feb11420.cairo" - }, - "parent_location": [ - { - "end_col": 48, - "end_line": 45, - "input_file": { - "filename": "src/renderers/RandomRenderer.cairo" - }, - "start_col": 29, - "start_line": 45 - }, - "While handling calldata argument 'encoded_uris'" - ], - "start_col": 43, - "start_line": 8 - }, - "While expanding the reference '__calldata_arg_encoded_uris_len' in:" - ], - "start_col": 5, - "start_line": 45 - }, - "While handling calldata argument 'encoded_uris_len'" - ], - "start_col": 39, - "start_line": 1 - } - }, - "770": { - "accessible_scopes": [ - "__main__", - "__main__", - "__wrappers__", - "__wrappers__.testUris" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 78, - "end_line": 8, - "input_file": { - "filename": "autogen/starknet/arg_processor/ebfe7743ee2a7d26a243da33d07168cae9419b48d861bde75986fc65feb11420.cairo" - }, - "parent_location": [ - { - "end_col": 48, - "end_line": 45, - "input_file": { - "filename": "src/renderers/RandomRenderer.cairo" - }, - "start_col": 29, - "start_line": 45 - }, - "While handling calldata argument 'encoded_uris'" - ], - "start_col": 26, - "start_line": 8 - } - }, - "771": { - "accessible_scopes": [ - "__main__", - "__main__", - "__wrappers__", - "__wrappers__.testUris" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 40, - "end_line": 2, - "input_file": { - "filename": "autogen/starknet/arg_processor/302a0e7f223f7f95d8ec699c8e1fa2628283de74616337c794098be1f39f0256.cairo" - }, - "parent_location": [ - { - "end_col": 61, - "end_line": 45, - "input_file": { - "filename": "src/renderers/RandomRenderer.cairo" - }, - "parent_location": [ - { - "end_col": 45, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/arg_processor/c31620b02d4d706f0542c989b2aadc01b0981d1f6a5933a8fe4937ace3d70d92.cairo" - }, - "parent_location": [ - { - "end_col": 14, - "end_line": 44, - "input_file": { - "filename": "src/renderers/RandomRenderer.cairo" - }, - "parent_location": [ - { - "end_col": 57, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/arg_processor/01cba52f8515996bb9d7070bde81ff39281d096d7024a558efcba6e1fd2402cf.cairo" - }, - "parent_location": [ - { - "end_col": 14, - "end_line": 44, - "input_file": { - "filename": "src/renderers/RandomRenderer.cairo" - }, - "start_col": 6, - "start_line": 44 - }, - "While handling calldata of" - ], - "start_col": 35, - "start_line": 1 - }, - "While expanding the reference '__calldata_actual_size' in:" - ], - "start_col": 6, - "start_line": 44 - }, - "While handling calldata of" - ], - "start_col": 31, - "start_line": 1 - }, - "While expanding the reference '__calldata_ptr' in:" - ], - "start_col": 50, - "start_line": 45 - }, - "While handling calldata argument 'index'" - ], - "start_col": 22, - "start_line": 2 - } - }, - "773": { - "accessible_scopes": [ - "__main__", - "__main__", - "__wrappers__", - "__wrappers__.testUris" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 58, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/arg_processor/01cba52f8515996bb9d7070bde81ff39281d096d7024a558efcba6e1fd2402cf.cairo" - }, - "parent_location": [ - { - "end_col": 14, - "end_line": 44, - "input_file": { - "filename": "src/renderers/RandomRenderer.cairo" - }, - "start_col": 6, - "start_line": 44 - }, - "While handling calldata of" - ], - "start_col": 1, - "start_line": 1 - } - }, - "774": { - "accessible_scopes": [ - "__main__", - "__main__", - "__wrappers__", - "__wrappers__.testUris" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 67, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/external/testUris/741ea357d6336b0bed7bf0472425acd0311d543883b803388880e60a232040c7.cairo" - }, - "parent_location": [ - { - "end_col": 78, - "end_line": 44, - "input_file": { - "filename": "src/renderers/RandomRenderer.cairo" - }, - "parent_location": [ - { - "end_col": 38, - "end_line": 3, - "input_file": { - "filename": "autogen/starknet/arg_processor/ebfe7743ee2a7d26a243da33d07168cae9419b48d861bde75986fc65feb11420.cairo" - }, - "parent_location": [ - { - "end_col": 48, - "end_line": 45, - "input_file": { - "filename": "src/renderers/RandomRenderer.cairo" - }, - "parent_location": [ - { - "end_col": 115, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/external/testUris/a10454f81fc641c3a6624a8376b2c503ea06e3d0ff8d190d60bb846b87a3927a.cairo" - }, - "parent_location": [ - { - "end_col": 14, - "end_line": 44, - "input_file": { - "filename": "src/renderers/RandomRenderer.cairo" - }, - "start_col": 6, - "start_line": 44 - }, - "While constructing the external wrapper for:" - ], - "start_col": 100, - "start_line": 1 - }, - "While expanding the reference 'range_check_ptr' in:" - ], - "start_col": 29, - "start_line": 45 - }, - "While handling calldata argument 'encoded_uris'" - ], - "start_col": 23, - "start_line": 3 - }, - "While expanding the reference 'range_check_ptr' in:" - ], - "start_col": 63, - "start_line": 44 - }, - "While constructing the external wrapper for:" - ], - "start_col": 23, - "start_line": 1 - } - }, - "775": { - "accessible_scopes": [ - "__main__", - "__main__", - "__wrappers__", - "__wrappers__.testUris" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 64, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/external/testUris/b2c52ca2d2a8fc8791a983086d8716c5eacd0c3d62934914d2286f84b98ff4cb.cairo" - }, - "parent_location": [ - { - "end_col": 33, - "end_line": 44, - "input_file": { - "filename": "src/renderers/RandomRenderer.cairo" - }, - "parent_location": [ - { - "end_col": 55, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/external/testUris/a10454f81fc641c3a6624a8376b2c503ea06e3d0ff8d190d60bb846b87a3927a.cairo" - }, - "parent_location": [ - { - "end_col": 14, - "end_line": 44, - "input_file": { - "filename": "src/renderers/RandomRenderer.cairo" - }, - "start_col": 6, - "start_line": 44 - }, - "While constructing the external wrapper for:" - ], - "start_col": 44, - "start_line": 1 - }, - "While expanding the reference 'syscall_ptr' in:" - ], - "start_col": 15, - "start_line": 44 - }, - "While constructing the external wrapper for:" - ], - "start_col": 19, - "start_line": 1 - } - }, - "776": { - "accessible_scopes": [ - "__main__", - "__main__", - "__wrappers__", - "__wrappers__.testUris" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 110, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/external/testUris/9684a85e93c782014ca14293edea4eb2502039a5a7b6538ecd39c56faaf12529.cairo" - }, - "parent_location": [ - { - "end_col": 61, - "end_line": 44, - "input_file": { - "filename": "src/renderers/RandomRenderer.cairo" - }, - "parent_location": [ - { - "end_col": 82, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/external/testUris/a10454f81fc641c3a6624a8376b2c503ea06e3d0ff8d190d60bb846b87a3927a.cairo" - }, - "parent_location": [ - { - "end_col": 14, - "end_line": 44, - "input_file": { - "filename": "src/renderers/RandomRenderer.cairo" - }, - "start_col": 6, - "start_line": 44 - }, - "While constructing the external wrapper for:" - ], - "start_col": 70, - "start_line": 1 - }, - "While expanding the reference 'pedersen_ptr' in:" - ], - "start_col": 35, - "start_line": 44 - }, - "While constructing the external wrapper for:" - ], - "start_col": 20, - "start_line": 1 - } - }, - "777": { - "accessible_scopes": [ - "__main__", - "__main__", - "__wrappers__", - "__wrappers__.testUris" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 42, - "end_line": 3, - "input_file": { - "filename": "autogen/starknet/arg_processor/ebfe7743ee2a7d26a243da33d07168cae9419b48d861bde75986fc65feb11420.cairo" - }, - "parent_location": [ - { - "end_col": 48, - "end_line": 45, - "input_file": { - "filename": "src/renderers/RandomRenderer.cairo" - }, - "parent_location": [ - { - "end_col": 115, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/external/testUris/a10454f81fc641c3a6624a8376b2c503ea06e3d0ff8d190d60bb846b87a3927a.cairo" - }, - "parent_location": [ - { - "end_col": 14, - "end_line": 44, - "input_file": { - "filename": "src/renderers/RandomRenderer.cairo" - }, - "start_col": 6, - "start_line": 44 - }, - "While constructing the external wrapper for:" - ], - "start_col": 100, - "start_line": 1 - }, - "While expanding the reference 'range_check_ptr' in:" - ], - "start_col": 29, - "start_line": 45 - }, - "While handling calldata argument 'encoded_uris'" - ], - "start_col": 23, - "start_line": 3 - } - }, - "779": { - "accessible_scopes": [ - "__main__", - "__main__", - "__wrappers__", - "__wrappers__.testUris" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 55, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/arg_processor/073ad342b04c4113aad0e4fcc310e3b998c1ae0103c8f54e93d61ae6e4766e81.cairo" - }, - "parent_location": [ - { - "end_col": 27, - "end_line": 45, - "input_file": { - "filename": "src/renderers/RandomRenderer.cairo" - }, - "parent_location": [ - { - "end_col": 165, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/external/testUris/a10454f81fc641c3a6624a8376b2c503ea06e3d0ff8d190d60bb846b87a3927a.cairo" - }, - "parent_location": [ - { - "end_col": 14, - "end_line": 44, - "input_file": { - "filename": "src/renderers/RandomRenderer.cairo" - }, - "start_col": 6, - "start_line": 44 - }, - "While constructing the external wrapper for:" - ], - "start_col": 134, - "start_line": 1 - }, - "While expanding the reference '__calldata_arg_encoded_uris_len' in:" - ], - "start_col": 5, - "start_line": 45 - }, - "While handling calldata argument 'encoded_uris_len'" - ], - "start_col": 39, - "start_line": 1 - } - }, - "780": { - "accessible_scopes": [ - "__main__", - "__main__", - "__wrappers__", - "__wrappers__.testUris" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 62, - "end_line": 5, - "input_file": { - "filename": "autogen/starknet/arg_processor/ebfe7743ee2a7d26a243da33d07168cae9419b48d861bde75986fc65feb11420.cairo" - }, - "parent_location": [ - { - "end_col": 48, - "end_line": 45, - "input_file": { - "filename": "src/renderers/RandomRenderer.cairo" - }, - "parent_location": [ - { - "end_col": 207, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/external/testUris/a10454f81fc641c3a6624a8376b2c503ea06e3d0ff8d190d60bb846b87a3927a.cairo" - }, - "parent_location": [ - { - "end_col": 14, - "end_line": 44, - "input_file": { - "filename": "src/renderers/RandomRenderer.cairo" - }, - "start_col": 6, - "start_line": 44 - }, - "While constructing the external wrapper for:" - ], - "start_col": 180, - "start_line": 1 - }, - "While expanding the reference '__calldata_arg_encoded_uris' in:" - ], - "start_col": 29, - "start_line": 45 - }, - "While handling calldata argument 'encoded_uris'" - ], - "start_col": 35, - "start_line": 5 - } - }, - "782": { - "accessible_scopes": [ - "__main__", - "__main__", - "__wrappers__", - "__wrappers__.testUris" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 44, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/arg_processor/302a0e7f223f7f95d8ec699c8e1fa2628283de74616337c794098be1f39f0256.cairo" - }, - "parent_location": [ - { - "end_col": 61, - "end_line": 45, - "input_file": { - "filename": "src/renderers/RandomRenderer.cairo" - }, - "parent_location": [ - { - "end_col": 235, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/external/testUris/a10454f81fc641c3a6624a8376b2c503ea06e3d0ff8d190d60bb846b87a3927a.cairo" - }, - "parent_location": [ - { - "end_col": 14, - "end_line": 44, - "input_file": { - "filename": "src/renderers/RandomRenderer.cairo" - }, - "start_col": 6, - "start_line": 44 - }, - "While constructing the external wrapper for:" - ], - "start_col": 215, - "start_line": 1 - }, - "While expanding the reference '__calldata_arg_index' in:" - ], - "start_col": 50, - "start_line": 45 - }, - "While handling calldata argument 'index'" - ], - "start_col": 28, - "start_line": 1 - } - }, - "783": { - "accessible_scopes": [ - "__main__", - "__main__", - "__wrappers__", - "__wrappers__.testUris" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 14, - "end_line": 44, - "input_file": { - "filename": "src/renderers/RandomRenderer.cairo" - }, - "start_col": 6, - "start_line": 44 - } - }, - "785": { - "accessible_scopes": [ - "__main__", - "__main__", - "__wrappers__", - "__wrappers__.testUris" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 55, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/external/testUris/a10454f81fc641c3a6624a8376b2c503ea06e3d0ff8d190d60bb846b87a3927a.cairo" - }, - "parent_location": [ - { - "end_col": 14, - "end_line": 44, - "input_file": { - "filename": "src/renderers/RandomRenderer.cairo" - }, - "parent_location": [ - { - "end_col": 55, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/external/testUris/a10454f81fc641c3a6624a8376b2c503ea06e3d0ff8d190d60bb846b87a3927a.cairo" - }, - "parent_location": [ - { - "end_col": 14, - "end_line": 44, - "input_file": { - "filename": "src/renderers/RandomRenderer.cairo" - }, - "start_col": 6, - "start_line": 44 - }, - "While constructing the external wrapper for:" - ], - "start_col": 44, - "start_line": 1 - }, - "While auto generating local variable for 'syscall_ptr'." - ], - "start_col": 6, - "start_line": 44 - }, - "While constructing the external wrapper for:" - ], - "start_col": 44, - "start_line": 1 - } - }, - "786": { - "accessible_scopes": [ - "__main__", - "__main__", - "__wrappers__", - "__wrappers__.testUris" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 82, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/external/testUris/a10454f81fc641c3a6624a8376b2c503ea06e3d0ff8d190d60bb846b87a3927a.cairo" - }, - "parent_location": [ - { - "end_col": 14, - "end_line": 44, - "input_file": { - "filename": "src/renderers/RandomRenderer.cairo" - }, - "parent_location": [ - { - "end_col": 82, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/external/testUris/a10454f81fc641c3a6624a8376b2c503ea06e3d0ff8d190d60bb846b87a3927a.cairo" - }, - "parent_location": [ - { - "end_col": 14, - "end_line": 44, - "input_file": { - "filename": "src/renderers/RandomRenderer.cairo" - }, - "start_col": 6, - "start_line": 44 - }, - "While constructing the external wrapper for:" - ], - "start_col": 70, - "start_line": 1 - }, - "While auto generating local variable for 'pedersen_ptr'." - ], - "start_col": 6, - "start_line": 44 - }, - "While constructing the external wrapper for:" - ], - "start_col": 70, - "start_line": 1 - } - }, - "787": { - "accessible_scopes": [ - "__main__", - "__main__", - "__wrappers__", - "__wrappers__.testUris" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 115, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/external/testUris/a10454f81fc641c3a6624a8376b2c503ea06e3d0ff8d190d60bb846b87a3927a.cairo" - }, - "parent_location": [ - { - "end_col": 14, - "end_line": 44, - "input_file": { - "filename": "src/renderers/RandomRenderer.cairo" - }, - "parent_location": [ - { - "end_col": 97, - "end_line": 2, - "input_file": { - "filename": "autogen/starknet/external/testUris/a10454f81fc641c3a6624a8376b2c503ea06e3d0ff8d190d60bb846b87a3927a.cairo" - }, - "parent_location": [ - { - "end_col": 14, - "end_line": 44, - "input_file": { - "filename": "src/renderers/RandomRenderer.cairo" - }, - "start_col": 6, - "start_line": 44 - }, - "While constructing the external wrapper for:" - ], - "start_col": 82, - "start_line": 2 - }, - "While expanding the reference 'range_check_ptr' in:" - ], - "start_col": 6, - "start_line": 44 - }, - "While constructing the external wrapper for:" - ], - "start_col": 100, - "start_line": 1 - } - }, - "788": { - "accessible_scopes": [ - "__main__", - "__main__", - "__wrappers__", - "__wrappers__.testUris" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 98, - "end_line": 2, - "input_file": { - "filename": "autogen/starknet/external/testUris/a10454f81fc641c3a6624a8376b2c503ea06e3d0ff8d190d60bb846b87a3927a.cairo" - }, - "parent_location": [ - { - "end_col": 14, - "end_line": 44, - "input_file": { - "filename": "src/renderers/RandomRenderer.cairo" - }, - "start_col": 6, - "start_line": 44 - }, - "While constructing the external wrapper for:" - ], - "start_col": 48, - "start_line": 2 - } - }, - "790": { - "accessible_scopes": [ - "__main__", - "__main__", - "__wrappers__", - "__wrappers__.testUris" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 55, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/external/testUris/a10454f81fc641c3a6624a8376b2c503ea06e3d0ff8d190d60bb846b87a3927a.cairo" - }, - "parent_location": [ - { - "end_col": 14, - "end_line": 44, - "input_file": { - "filename": "src/renderers/RandomRenderer.cairo" - }, - "parent_location": [ - { - "end_col": 55, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/external/testUris/a10454f81fc641c3a6624a8376b2c503ea06e3d0ff8d190d60bb846b87a3927a.cairo" - }, - "parent_location": [ - { - "end_col": 14, - "end_line": 44, - "input_file": { - "filename": "src/renderers/RandomRenderer.cairo" - }, - "parent_location": [ - { - "end_col": 20, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/external/testUris/da17921a4e81c09e730800bbf23bfdbe5e9e6bfaedc59d80fbf62087fa43c27d.cairo" - }, - "parent_location": [ - { - "end_col": 14, - "end_line": 44, - "input_file": { - "filename": "src/renderers/RandomRenderer.cairo" - }, - "start_col": 6, - "start_line": 44 - }, - "While constructing the external wrapper for:" - ], - "start_col": 9, - "start_line": 1 - }, - "While expanding the reference 'syscall_ptr' in:" - ], - "start_col": 6, - "start_line": 44 - }, - "While constructing the external wrapper for:" - ], - "start_col": 44, - "start_line": 1 - }, - "While auto generating local variable for 'syscall_ptr'." - ], - "start_col": 6, - "start_line": 44 - }, - "While constructing the external wrapper for:" - ], - "start_col": 44, - "start_line": 1 - } - }, - "791": { - "accessible_scopes": [ - "__main__", - "__main__", - "__wrappers__", - "__wrappers__.testUris" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 82, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/external/testUris/a10454f81fc641c3a6624a8376b2c503ea06e3d0ff8d190d60bb846b87a3927a.cairo" - }, - "parent_location": [ - { - "end_col": 14, - "end_line": 44, - "input_file": { - "filename": "src/renderers/RandomRenderer.cairo" - }, - "parent_location": [ - { - "end_col": 82, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/external/testUris/a10454f81fc641c3a6624a8376b2c503ea06e3d0ff8d190d60bb846b87a3927a.cairo" - }, - "parent_location": [ - { - "end_col": 14, - "end_line": 44, - "input_file": { - "filename": "src/renderers/RandomRenderer.cairo" - }, - "parent_location": [ - { - "end_col": 33, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/external/testUris/da17921a4e81c09e730800bbf23bfdbe5e9e6bfaedc59d80fbf62087fa43c27d.cairo" - }, - "parent_location": [ - { - "end_col": 14, - "end_line": 44, - "input_file": { - "filename": "src/renderers/RandomRenderer.cairo" - }, - "start_col": 6, - "start_line": 44 - }, - "While constructing the external wrapper for:" - ], - "start_col": 21, - "start_line": 1 - }, - "While expanding the reference 'pedersen_ptr' in:" - ], - "start_col": 6, - "start_line": 44 - }, - "While constructing the external wrapper for:" - ], - "start_col": 70, - "start_line": 1 - }, - "While auto generating local variable for 'pedersen_ptr'." - ], - "start_col": 6, - "start_line": 44 - }, - "While constructing the external wrapper for:" - ], - "start_col": 70, - "start_line": 1 - } - }, - "792": { - "accessible_scopes": [ - "__main__", - "__main__", - "__wrappers__", - "__wrappers__.testUris" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 21, - "end_line": 2, - "input_file": { - "filename": "autogen/starknet/external/testUris/a10454f81fc641c3a6624a8376b2c503ea06e3d0ff8d190d60bb846b87a3927a.cairo" - }, - "parent_location": [ - { - "end_col": 14, - "end_line": 44, - "input_file": { - "filename": "src/renderers/RandomRenderer.cairo" - }, - "parent_location": [ - { - "end_col": 49, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/external/testUris/da17921a4e81c09e730800bbf23bfdbe5e9e6bfaedc59d80fbf62087fa43c27d.cairo" - }, - "parent_location": [ - { - "end_col": 14, - "end_line": 44, - "input_file": { - "filename": "src/renderers/RandomRenderer.cairo" - }, - "start_col": 6, - "start_line": 44 - }, - "While constructing the external wrapper for:" - ], - "start_col": 34, - "start_line": 1 - }, - "While expanding the reference 'range_check_ptr' in:" - ], - "start_col": 6, - "start_line": 44 - }, - "While constructing the external wrapper for:" - ], - "start_col": 6, - "start_line": 2 - } - }, - "793": { - "accessible_scopes": [ - "__main__", - "__main__", - "__wrappers__", - "__wrappers__.testUris" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 35, - "end_line": 2, - "input_file": { - "filename": "autogen/starknet/external/testUris/a10454f81fc641c3a6624a8376b2c503ea06e3d0ff8d190d60bb846b87a3927a.cairo" - }, - "parent_location": [ - { - "end_col": 14, - "end_line": 44, - "input_file": { - "filename": "src/renderers/RandomRenderer.cairo" - }, - "parent_location": [ - { - "end_col": 62, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/external/testUris/da17921a4e81c09e730800bbf23bfdbe5e9e6bfaedc59d80fbf62087fa43c27d.cairo" - }, - "parent_location": [ - { - "end_col": 14, - "end_line": 44, - "input_file": { - "filename": "src/renderers/RandomRenderer.cairo" - }, - "start_col": 6, - "start_line": 44 - }, - "While constructing the external wrapper for:" - ], - "start_col": 50, - "start_line": 1 - }, - "While expanding the reference 'retdata_size' in:" - ], - "start_col": 6, - "start_line": 44 - }, - "While constructing the external wrapper for:" - ], - "start_col": 23, - "start_line": 2 - } - }, - "794": { - "accessible_scopes": [ - "__main__", - "__main__", - "__wrappers__", - "__wrappers__.testUris" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 44, - "end_line": 2, - "input_file": { - "filename": "autogen/starknet/external/testUris/a10454f81fc641c3a6624a8376b2c503ea06e3d0ff8d190d60bb846b87a3927a.cairo" - }, - "parent_location": [ - { - "end_col": 14, - "end_line": 44, - "input_file": { - "filename": "src/renderers/RandomRenderer.cairo" - }, - "parent_location": [ - { - "end_col": 70, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/external/testUris/da17921a4e81c09e730800bbf23bfdbe5e9e6bfaedc59d80fbf62087fa43c27d.cairo" - }, - "parent_location": [ - { - "end_col": 14, - "end_line": 44, - "input_file": { - "filename": "src/renderers/RandomRenderer.cairo" - }, - "start_col": 6, - "start_line": 44 - }, - "While constructing the external wrapper for:" - ], - "start_col": 63, - "start_line": 1 - }, - "While expanding the reference 'retdata' in:" - ], - "start_col": 6, - "start_line": 44 - }, - "While constructing the external wrapper for:" - ], - "start_col": 37, - "start_line": 2 - } - }, - "795": { - "accessible_scopes": [ - "__main__", - "__main__", - "__wrappers__", - "__wrappers__.testUris" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 72, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/external/testUris/da17921a4e81c09e730800bbf23bfdbe5e9e6bfaedc59d80fbf62087fa43c27d.cairo" - }, - "parent_location": [ - { - "end_col": 14, - "end_line": 44, - "input_file": { - "filename": "src/renderers/RandomRenderer.cairo" - }, - "start_col": 6, - "start_line": 44 - }, - "While constructing the external wrapper for:" - ], - "start_col": 1, - "start_line": 1 - } - }, - "796": { - "accessible_scopes": [ - "__main__", - "__main__", - "__main__.setUris" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 32, - "end_line": 57, - "input_file": { - "filename": "src/renderers/RandomRenderer.cairo" - }, - "parent_location": [ - { - "end_col": 46, - "end_line": 40, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/access/ownable/library.cairo" - }, - "parent_location": [ - { - "end_col": 32, - "end_line": 60, - "input_file": { - "filename": "src/renderers/RandomRenderer.cairo" - }, - "start_col": 5, - "start_line": 60 - }, - "While trying to retrieve the implicit argument 'syscall_ptr' in:" - ], - "start_col": 28, - "start_line": 40 - }, - "While expanding the reference 'syscall_ptr' in:" - ], - "start_col": 14, - "start_line": 57 - } - }, - "797": { - "accessible_scopes": [ - "__main__", - "__main__", - "__main__.setUris" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 60, - "end_line": 57, - "input_file": { - "filename": "src/renderers/RandomRenderer.cairo" - }, - "parent_location": [ - { - "end_col": 74, - "end_line": 40, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/access/ownable/library.cairo" - }, - "parent_location": [ - { - "end_col": 32, - "end_line": 60, - "input_file": { - "filename": "src/renderers/RandomRenderer.cairo" - }, - "start_col": 5, - "start_line": 60 - }, - "While trying to retrieve the implicit argument 'pedersen_ptr' in:" - ], - "start_col": 48, - "start_line": 40 - }, - "While expanding the reference 'pedersen_ptr' in:" - ], - "start_col": 34, - "start_line": 57 - } - }, - "798": { - "accessible_scopes": [ - "__main__", - "__main__", - "__main__.setUris" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 77, - "end_line": 57, - "input_file": { - "filename": "src/renderers/RandomRenderer.cairo" - }, - "parent_location": [ - { - "end_col": 91, - "end_line": 40, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/access/ownable/library.cairo" - }, - "parent_location": [ - { - "end_col": 32, - "end_line": 60, - "input_file": { - "filename": "src/renderers/RandomRenderer.cairo" - }, - "start_col": 5, - "start_line": 60 - }, - "While trying to retrieve the implicit argument 'range_check_ptr' in:" - ], - "start_col": 76, - "start_line": 40 - }, - "While expanding the reference 'range_check_ptr' in:" - ], - "start_col": 62, - "start_line": 57 - } - }, - "799": { - "accessible_scopes": [ - "__main__", - "__main__", - "__main__.setUris" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 32, - "end_line": 60, - "input_file": { - "filename": "src/renderers/RandomRenderer.cairo" - }, - "start_col": 5, - "start_line": 60 - } - }, - "801": { - "accessible_scopes": [ - "__main__", - "__main__", - "__main__.setUris" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 19, - "end_line": 58, - "input_file": { - "filename": "src/renderers/RandomRenderer.cairo" - }, - "parent_location": [ - { - "end_col": 29, - "end_line": 61, - "input_file": { - "filename": "src/renderers/RandomRenderer.cairo" - }, - "start_col": 21, - "start_line": 61 - }, - "While expanding the reference 'uris_len' in:" - ], - "start_col": 5, - "start_line": 58 - } - }, - "802": { - "accessible_scopes": [ - "__main__", - "__main__", - "__main__.setUris" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 30, - "end_line": 61, - "input_file": { - "filename": "src/renderers/RandomRenderer.cairo" - }, - "start_col": 5, - "start_line": 61 - } - }, - "804": { - "accessible_scopes": [ - "__main__", - "__main__", - "__main__.setUris" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 24, - "end_line": 62, - "input_file": { - "filename": "src/renderers/RandomRenderer.cairo" - }, - "start_col": 23, - "start_line": 62 - } - }, - "806": { - "accessible_scopes": [ - "__main__", - "__main__", - "__main__.setUris" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 19, - "end_line": 58, - "input_file": { - "filename": "src/renderers/RandomRenderer.cairo" - }, - "parent_location": [ - { - "end_col": 43, - "end_line": 62, - "input_file": { - "filename": "src/renderers/RandomRenderer.cairo" - }, - "start_col": 35, - "start_line": 62 - }, - "While expanding the reference 'uris_len' in:" - ], - "start_col": 5, - "start_line": 58 - } - }, - "807": { - "accessible_scopes": [ - "__main__", - "__main__", - "__main__.setUris" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 32, - "end_line": 58, - "input_file": { - "filename": "src/renderers/RandomRenderer.cairo" - }, - "parent_location": [ - { - "end_col": 54, - "end_line": 62, - "input_file": { - "filename": "src/renderers/RandomRenderer.cairo" - }, - "start_col": 50, - "start_line": 62 - }, - "While expanding the reference 'uris' in:" - ], - "start_col": 21, - "start_line": 58 - } - }, - "808": { - "accessible_scopes": [ - "__main__", - "__main__", - "__main__.setUris" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 55, - "end_line": 62, - "input_file": { - "filename": "src/renderers/RandomRenderer.cairo" - }, - "start_col": 5, - "start_line": 62 - } - }, - "810": { - "accessible_scopes": [ - "__main__", - "__main__", - "__main__.setUris" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 15, - "end_line": 63, - "input_file": { - "filename": "src/renderers/RandomRenderer.cairo" - }, - "start_col": 5, - "start_line": 63 - } - }, - "811": { - "accessible_scopes": [ - "__main__", - "__main__", - "__wrappers__", - "__wrappers__.setUris" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 67, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/external/setUris/741ea357d6336b0bed7bf0472425acd0311d543883b803388880e60a232040c7.cairo" - }, - "parent_location": [ - { - "end_col": 77, - "end_line": 57, - "input_file": { - "filename": "src/renderers/RandomRenderer.cairo" - }, - "parent_location": [ - { - "end_col": 24, - "end_line": 2, - "input_file": { - "filename": "autogen/starknet/arg_processor/4d3c3312cf28c6aaaca9e6272964446e12daddba3759882910a365c0efed08b3.cairo" - }, - "parent_location": [ - { - "end_col": 32, - "end_line": 58, - "input_file": { - "filename": "src/renderers/RandomRenderer.cairo" - }, - "start_col": 21, - "start_line": 58 - }, - "While handling calldata argument 'uris'" - ], - "start_col": 9, - "start_line": 2 - }, - "While expanding the reference 'range_check_ptr' in:" - ], - "start_col": 62, - "start_line": 57 - }, - "While constructing the external wrapper for:" - ], - "start_col": 23, - "start_line": 1 - } - }, - "812": { - "accessible_scopes": [ - "__main__", - "__main__", - "__wrappers__", - "__wrappers__.setUris" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 47, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/arg_processor/860925ba0e84404f570d0f727a5bc2dbe9f339c324eb0fc9b3b7324b211ad7e9.cairo" - }, - "parent_location": [ - { - "end_col": 19, - "end_line": 58, - "input_file": { - "filename": "src/renderers/RandomRenderer.cairo" - }, - "parent_location": [ - { - "end_col": 51, - "end_line": 2, - "input_file": { - "filename": "autogen/starknet/arg_processor/4d3c3312cf28c6aaaca9e6272964446e12daddba3759882910a365c0efed08b3.cairo" - }, - "parent_location": [ - { - "end_col": 32, - "end_line": 58, - "input_file": { - "filename": "src/renderers/RandomRenderer.cairo" - }, - "start_col": 21, - "start_line": 58 - }, - "While handling calldata argument 'uris'" - ], - "start_col": 28, - "start_line": 2 - }, - "While expanding the reference '__calldata_arg_uris_len' in:" - ], - "start_col": 5, - "start_line": 58 - }, - "While handling calldata argument 'uris_len'" - ], - "start_col": 31, - "start_line": 1 - } - }, - "813": { - "accessible_scopes": [ - "__main__", - "__main__", - "__wrappers__", - "__wrappers__.setUris" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 52, - "end_line": 2, - "input_file": { - "filename": "autogen/starknet/arg_processor/4d3c3312cf28c6aaaca9e6272964446e12daddba3759882910a365c0efed08b3.cairo" - }, - "parent_location": [ - { - "end_col": 32, - "end_line": 58, - "input_file": { - "filename": "src/renderers/RandomRenderer.cairo" - }, - "start_col": 21, - "start_line": 58 - }, - "While handling calldata argument 'uris'" - ], - "start_col": 1, - "start_line": 2 - } - }, - "814": { - "accessible_scopes": [ - "__main__", - "__main__", - "__wrappers__", - "__wrappers__.setUris" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 40, - "end_line": 2, - "input_file": { - "filename": "autogen/starknet/arg_processor/860925ba0e84404f570d0f727a5bc2dbe9f339c324eb0fc9b3b7324b211ad7e9.cairo" - }, - "parent_location": [ - { - "end_col": 19, - "end_line": 58, - "input_file": { - "filename": "src/renderers/RandomRenderer.cairo" - }, - "parent_location": [ - { - "end_col": 40, - "end_line": 8, - "input_file": { - "filename": "autogen/starknet/arg_processor/4d3c3312cf28c6aaaca9e6272964446e12daddba3759882910a365c0efed08b3.cairo" - }, - "parent_location": [ - { - "end_col": 32, - "end_line": 58, - "input_file": { - "filename": "src/renderers/RandomRenderer.cairo" - }, - "start_col": 21, - "start_line": 58 - }, - "While handling calldata argument 'uris'" - ], - "start_col": 26, - "start_line": 8 - }, - "While expanding the reference '__calldata_ptr' in:" - ], - "start_col": 5, - "start_line": 58 - }, - "While handling calldata argument 'uris_len'" - ], - "start_col": 22, - "start_line": 2 - } - }, - "816": { - "accessible_scopes": [ - "__main__", - "__main__", - "__wrappers__", - "__wrappers__.setUris" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 47, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/arg_processor/860925ba0e84404f570d0f727a5bc2dbe9f339c324eb0fc9b3b7324b211ad7e9.cairo" - }, - "parent_location": [ - { - "end_col": 19, - "end_line": 58, - "input_file": { - "filename": "src/renderers/RandomRenderer.cairo" - }, - "parent_location": [ - { - "end_col": 66, - "end_line": 8, - "input_file": { - "filename": "autogen/starknet/arg_processor/4d3c3312cf28c6aaaca9e6272964446e12daddba3759882910a365c0efed08b3.cairo" - }, - "parent_location": [ - { - "end_col": 32, - "end_line": 58, - "input_file": { - "filename": "src/renderers/RandomRenderer.cairo" - }, - "start_col": 21, - "start_line": 58 - }, - "While handling calldata argument 'uris'" - ], - "start_col": 43, - "start_line": 8 - }, - "While expanding the reference '__calldata_arg_uris_len' in:" - ], - "start_col": 5, - "start_line": 58 - }, - "While handling calldata argument 'uris_len'" - ], - "start_col": 31, - "start_line": 1 - } - }, - "817": { - "accessible_scopes": [ - "__main__", - "__main__", - "__wrappers__", - "__wrappers__.setUris" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 70, - "end_line": 8, - "input_file": { - "filename": "autogen/starknet/arg_processor/4d3c3312cf28c6aaaca9e6272964446e12daddba3759882910a365c0efed08b3.cairo" - }, - "parent_location": [ - { - "end_col": 32, - "end_line": 58, - "input_file": { - "filename": "src/renderers/RandomRenderer.cairo" - }, - "start_col": 21, - "start_line": 58 - }, - "While handling calldata argument 'uris'" - ], - "start_col": 26, - "start_line": 8 - } - }, - "818": { - "accessible_scopes": [ - "__main__", - "__main__", - "__wrappers__", - "__wrappers__.setUris" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 58, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/arg_processor/01cba52f8515996bb9d7070bde81ff39281d096d7024a558efcba6e1fd2402cf.cairo" - }, - "parent_location": [ - { - "end_col": 13, - "end_line": 57, - "input_file": { - "filename": "src/renderers/RandomRenderer.cairo" - }, - "start_col": 6, - "start_line": 57 - }, - "While handling calldata of" - ], - "start_col": 1, - "start_line": 1 - } - }, - "819": { - "accessible_scopes": [ - "__main__", - "__main__", - "__wrappers__", - "__wrappers__.setUris" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 67, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/external/setUris/741ea357d6336b0bed7bf0472425acd0311d543883b803388880e60a232040c7.cairo" - }, - "parent_location": [ - { - "end_col": 77, - "end_line": 57, - "input_file": { - "filename": "src/renderers/RandomRenderer.cairo" - }, - "parent_location": [ - { - "end_col": 38, - "end_line": 3, - "input_file": { - "filename": "autogen/starknet/arg_processor/4d3c3312cf28c6aaaca9e6272964446e12daddba3759882910a365c0efed08b3.cairo" - }, - "parent_location": [ - { - "end_col": 32, - "end_line": 58, - "input_file": { - "filename": "src/renderers/RandomRenderer.cairo" - }, - "parent_location": [ - { - "end_col": 115, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/external/setUris/77b2e0c8d6c3be67c8b2ebdac4e543e9663cde85b9a9088f620d8d3fb9704f3f.cairo" - }, - "parent_location": [ - { - "end_col": 13, - "end_line": 57, - "input_file": { - "filename": "src/renderers/RandomRenderer.cairo" - }, - "start_col": 6, - "start_line": 57 - }, - "While constructing the external wrapper for:" - ], - "start_col": 100, - "start_line": 1 - }, - "While expanding the reference 'range_check_ptr' in:" - ], - "start_col": 21, - "start_line": 58 - }, - "While handling calldata argument 'uris'" - ], - "start_col": 23, - "start_line": 3 - }, - "While expanding the reference 'range_check_ptr' in:" - ], - "start_col": 62, - "start_line": 57 - }, - "While constructing the external wrapper for:" - ], - "start_col": 23, - "start_line": 1 - } - }, - "820": { - "accessible_scopes": [ - "__main__", - "__main__", - "__wrappers__", - "__wrappers__.setUris" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 64, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/external/setUris/b2c52ca2d2a8fc8791a983086d8716c5eacd0c3d62934914d2286f84b98ff4cb.cairo" - }, - "parent_location": [ - { - "end_col": 32, - "end_line": 57, - "input_file": { - "filename": "src/renderers/RandomRenderer.cairo" - }, - "parent_location": [ - { - "end_col": 55, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/external/setUris/77b2e0c8d6c3be67c8b2ebdac4e543e9663cde85b9a9088f620d8d3fb9704f3f.cairo" - }, - "parent_location": [ - { - "end_col": 13, - "end_line": 57, - "input_file": { - "filename": "src/renderers/RandomRenderer.cairo" - }, - "start_col": 6, - "start_line": 57 - }, - "While constructing the external wrapper for:" - ], - "start_col": 44, - "start_line": 1 - }, - "While expanding the reference 'syscall_ptr' in:" - ], - "start_col": 14, - "start_line": 57 - }, - "While constructing the external wrapper for:" - ], - "start_col": 19, - "start_line": 1 - } - }, - "821": { - "accessible_scopes": [ - "__main__", - "__main__", - "__wrappers__", - "__wrappers__.setUris" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 110, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/external/setUris/9684a85e93c782014ca14293edea4eb2502039a5a7b6538ecd39c56faaf12529.cairo" - }, - "parent_location": [ - { - "end_col": 60, - "end_line": 57, - "input_file": { - "filename": "src/renderers/RandomRenderer.cairo" - }, - "parent_location": [ - { - "end_col": 82, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/external/setUris/77b2e0c8d6c3be67c8b2ebdac4e543e9663cde85b9a9088f620d8d3fb9704f3f.cairo" - }, - "parent_location": [ - { - "end_col": 13, - "end_line": 57, - "input_file": { - "filename": "src/renderers/RandomRenderer.cairo" - }, - "start_col": 6, - "start_line": 57 - }, - "While constructing the external wrapper for:" - ], - "start_col": 70, - "start_line": 1 - }, - "While expanding the reference 'pedersen_ptr' in:" - ], - "start_col": 34, - "start_line": 57 - }, - "While constructing the external wrapper for:" - ], - "start_col": 20, - "start_line": 1 - } - }, - "822": { - "accessible_scopes": [ - "__main__", - "__main__", - "__wrappers__", - "__wrappers__.setUris" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 42, - "end_line": 3, - "input_file": { - "filename": "autogen/starknet/arg_processor/4d3c3312cf28c6aaaca9e6272964446e12daddba3759882910a365c0efed08b3.cairo" - }, - "parent_location": [ - { - "end_col": 32, - "end_line": 58, - "input_file": { - "filename": "src/renderers/RandomRenderer.cairo" - }, - "parent_location": [ - { - "end_col": 115, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/external/setUris/77b2e0c8d6c3be67c8b2ebdac4e543e9663cde85b9a9088f620d8d3fb9704f3f.cairo" - }, - "parent_location": [ - { - "end_col": 13, - "end_line": 57, - "input_file": { - "filename": "src/renderers/RandomRenderer.cairo" - }, - "start_col": 6, - "start_line": 57 - }, - "While constructing the external wrapper for:" - ], - "start_col": 100, - "start_line": 1 - }, - "While expanding the reference 'range_check_ptr' in:" - ], - "start_col": 21, - "start_line": 58 - }, - "While handling calldata argument 'uris'" - ], - "start_col": 23, - "start_line": 3 - } - }, - "824": { - "accessible_scopes": [ - "__main__", - "__main__", - "__wrappers__", - "__wrappers__.setUris" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 47, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/arg_processor/860925ba0e84404f570d0f727a5bc2dbe9f339c324eb0fc9b3b7324b211ad7e9.cairo" - }, - "parent_location": [ - { - "end_col": 19, - "end_line": 58, - "input_file": { - "filename": "src/renderers/RandomRenderer.cairo" - }, - "parent_location": [ - { - "end_col": 149, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/external/setUris/77b2e0c8d6c3be67c8b2ebdac4e543e9663cde85b9a9088f620d8d3fb9704f3f.cairo" - }, - "parent_location": [ - { - "end_col": 13, - "end_line": 57, - "input_file": { - "filename": "src/renderers/RandomRenderer.cairo" - }, - "start_col": 6, - "start_line": 57 - }, - "While constructing the external wrapper for:" - ], - "start_col": 126, - "start_line": 1 - }, - "While expanding the reference '__calldata_arg_uris_len' in:" - ], - "start_col": 5, - "start_line": 58 - }, - "While handling calldata argument 'uris_len'" - ], - "start_col": 31, - "start_line": 1 - } - }, - "825": { - "accessible_scopes": [ - "__main__", - "__main__", - "__wrappers__", - "__wrappers__.setUris" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 54, - "end_line": 5, - "input_file": { - "filename": "autogen/starknet/arg_processor/4d3c3312cf28c6aaaca9e6272964446e12daddba3759882910a365c0efed08b3.cairo" - }, - "parent_location": [ - { - "end_col": 32, - "end_line": 58, - "input_file": { - "filename": "src/renderers/RandomRenderer.cairo" - }, - "parent_location": [ - { - "end_col": 175, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/external/setUris/77b2e0c8d6c3be67c8b2ebdac4e543e9663cde85b9a9088f620d8d3fb9704f3f.cairo" - }, - "parent_location": [ - { - "end_col": 13, - "end_line": 57, - "input_file": { - "filename": "src/renderers/RandomRenderer.cairo" - }, - "start_col": 6, - "start_line": 57 - }, - "While constructing the external wrapper for:" - ], - "start_col": 156, - "start_line": 1 - }, - "While expanding the reference '__calldata_arg_uris' in:" - ], - "start_col": 21, - "start_line": 58 - }, - "While handling calldata argument 'uris'" - ], - "start_col": 27, - "start_line": 5 - } - }, - "827": { - "accessible_scopes": [ - "__main__", - "__main__", - "__wrappers__", - "__wrappers__.setUris" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 13, - "end_line": 57, - "input_file": { - "filename": "src/renderers/RandomRenderer.cairo" - }, - "start_col": 6, - "start_line": 57 - } - }, - "829": { - "accessible_scopes": [ - "__main__", - "__main__", - "__wrappers__", - "__wrappers__.setUris" - ], - "flow_tracking_data": null, - "hints": [ - { - "location": { - "end_col": 34, - "end_line": 2, - "input_file": { - "filename": "autogen/starknet/external/setUris/77b2e0c8d6c3be67c8b2ebdac4e543e9663cde85b9a9088f620d8d3fb9704f3f.cairo" - }, - "parent_location": [ - { - "end_col": 13, - "end_line": 57, - "input_file": { - "filename": "src/renderers/RandomRenderer.cairo" - }, - "start_col": 6, - "start_line": 57 - }, - "While constructing the external wrapper for:" - ], - "start_col": 1, - "start_line": 2 - }, - "n_prefix_newlines": 0 - } - ], - "inst": { - "end_col": 24, - "end_line": 3, - "input_file": { - "filename": "autogen/starknet/external/setUris/77b2e0c8d6c3be67c8b2ebdac4e543e9663cde85b9a9088f620d8d3fb9704f3f.cairo" - }, - "parent_location": [ - { - "end_col": 13, - "end_line": 57, - "input_file": { - "filename": "src/renderers/RandomRenderer.cairo" - }, - "start_col": 6, - "start_line": 57 - }, - "While constructing the external wrapper for:" - ], - "start_col": 1, - "start_line": 3 - } - }, - "831": { - "accessible_scopes": [ - "__main__", - "__main__", - "__wrappers__", - "__wrappers__.setUris" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 55, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/external/setUris/77b2e0c8d6c3be67c8b2ebdac4e543e9663cde85b9a9088f620d8d3fb9704f3f.cairo" - }, - "parent_location": [ - { - "end_col": 13, - "end_line": 57, - "input_file": { - "filename": "src/renderers/RandomRenderer.cairo" - }, - "parent_location": [ - { - "end_col": 20, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/external/setUris/da17921a4e81c09e730800bbf23bfdbe5e9e6bfaedc59d80fbf62087fa43c27d.cairo" - }, - "parent_location": [ - { - "end_col": 13, - "end_line": 57, - "input_file": { - "filename": "src/renderers/RandomRenderer.cairo" - }, - "start_col": 6, - "start_line": 57 - }, - "While constructing the external wrapper for:" - ], - "start_col": 9, - "start_line": 1 - }, - "While expanding the reference 'syscall_ptr' in:" - ], - "start_col": 6, - "start_line": 57 - }, - "While constructing the external wrapper for:" - ], - "start_col": 44, - "start_line": 1 - } - }, - "832": { - "accessible_scopes": [ - "__main__", - "__main__", - "__wrappers__", - "__wrappers__.setUris" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 82, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/external/setUris/77b2e0c8d6c3be67c8b2ebdac4e543e9663cde85b9a9088f620d8d3fb9704f3f.cairo" - }, - "parent_location": [ - { - "end_col": 13, - "end_line": 57, - "input_file": { - "filename": "src/renderers/RandomRenderer.cairo" - }, - "parent_location": [ - { - "end_col": 33, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/external/setUris/da17921a4e81c09e730800bbf23bfdbe5e9e6bfaedc59d80fbf62087fa43c27d.cairo" - }, - "parent_location": [ - { - "end_col": 13, - "end_line": 57, - "input_file": { - "filename": "src/renderers/RandomRenderer.cairo" - }, - "start_col": 6, - "start_line": 57 - }, - "While constructing the external wrapper for:" - ], - "start_col": 21, - "start_line": 1 - }, - "While expanding the reference 'pedersen_ptr' in:" - ], - "start_col": 6, - "start_line": 57 - }, - "While constructing the external wrapper for:" - ], - "start_col": 70, - "start_line": 1 - } - }, - "833": { - "accessible_scopes": [ - "__main__", - "__main__", - "__wrappers__", - "__wrappers__.setUris" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 115, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/external/setUris/77b2e0c8d6c3be67c8b2ebdac4e543e9663cde85b9a9088f620d8d3fb9704f3f.cairo" - }, - "parent_location": [ - { - "end_col": 13, - "end_line": 57, - "input_file": { - "filename": "src/renderers/RandomRenderer.cairo" - }, - "parent_location": [ - { - "end_col": 49, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/external/setUris/da17921a4e81c09e730800bbf23bfdbe5e9e6bfaedc59d80fbf62087fa43c27d.cairo" - }, - "parent_location": [ - { - "end_col": 13, - "end_line": 57, - "input_file": { - "filename": "src/renderers/RandomRenderer.cairo" - }, - "start_col": 6, - "start_line": 57 - }, - "While constructing the external wrapper for:" - ], - "start_col": 34, - "start_line": 1 - }, - "While expanding the reference 'range_check_ptr' in:" - ], - "start_col": 6, - "start_line": 57 - }, - "While constructing the external wrapper for:" - ], - "start_col": 100, - "start_line": 1 - } - }, - "834": { - "accessible_scopes": [ - "__main__", - "__main__", - "__wrappers__", - "__wrappers__.setUris" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 21, - "end_line": 4, - "input_file": { - "filename": "autogen/starknet/external/setUris/77b2e0c8d6c3be67c8b2ebdac4e543e9663cde85b9a9088f620d8d3fb9704f3f.cairo" - }, - "parent_location": [ - { - "end_col": 13, - "end_line": 57, - "input_file": { - "filename": "src/renderers/RandomRenderer.cairo" - }, - "parent_location": [ - { - "end_col": 62, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/external/setUris/da17921a4e81c09e730800bbf23bfdbe5e9e6bfaedc59d80fbf62087fa43c27d.cairo" - }, - "parent_location": [ - { - "end_col": 13, - "end_line": 57, - "input_file": { - "filename": "src/renderers/RandomRenderer.cairo" - }, - "start_col": 6, - "start_line": 57 - }, - "While constructing the external wrapper for:" - ], - "start_col": 50, - "start_line": 1 - }, - "While expanding the reference 'retdata_size' in:" - ], - "start_col": 6, - "start_line": 57 - }, - "While constructing the external wrapper for:" - ], - "start_col": 20, - "start_line": 4 - } - }, - "836": { - "accessible_scopes": [ - "__main__", - "__main__", - "__wrappers__", - "__wrappers__.setUris" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 16, - "end_line": 3, - "input_file": { - "filename": "autogen/starknet/external/setUris/77b2e0c8d6c3be67c8b2ebdac4e543e9663cde85b9a9088f620d8d3fb9704f3f.cairo" - }, - "parent_location": [ - { - "end_col": 13, - "end_line": 57, - "input_file": { - "filename": "src/renderers/RandomRenderer.cairo" - }, - "parent_location": [ - { - "end_col": 70, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/external/setUris/da17921a4e81c09e730800bbf23bfdbe5e9e6bfaedc59d80fbf62087fa43c27d.cairo" - }, - "parent_location": [ - { - "end_col": 13, - "end_line": 57, - "input_file": { - "filename": "src/renderers/RandomRenderer.cairo" - }, - "start_col": 6, - "start_line": 57 - }, - "While constructing the external wrapper for:" - ], - "start_col": 63, - "start_line": 1 - }, - "While expanding the reference 'retdata' in:" - ], - "start_col": 6, - "start_line": 57 - }, - "While constructing the external wrapper for:" - ], - "start_col": 9, - "start_line": 3 - } - }, - "837": { - "accessible_scopes": [ - "__main__", - "__main__", - "__wrappers__", - "__wrappers__.setUris" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 72, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/external/setUris/da17921a4e81c09e730800bbf23bfdbe5e9e6bfaedc59d80fbf62087fa43c27d.cairo" - }, - "parent_location": [ - { - "end_col": 13, - "end_line": 57, - "input_file": { - "filename": "src/renderers/RandomRenderer.cairo" - }, - "start_col": 6, - "start_line": 57 - }, - "While constructing the external wrapper for:" - ], - "start_col": 1, - "start_line": 1 - } - }, - "838": { - "accessible_scopes": [ - "__main__", - "__main__", - "__main__.transferOwnership" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 42, - "end_line": 67, - "input_file": { - "filename": "src/renderers/RandomRenderer.cairo" - }, - "parent_location": [ - { - "end_col": 47, - "end_line": 60, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/access/ownable/library.cairo" - }, - "parent_location": [ - { - "end_col": 42, - "end_line": 70, - "input_file": { - "filename": "src/renderers/RandomRenderer.cairo" - }, - "start_col": 5, - "start_line": 70 - }, - "While trying to retrieve the implicit argument 'syscall_ptr' in:" - ], - "start_col": 29, - "start_line": 60 - }, - "While expanding the reference 'syscall_ptr' in:" - ], - "start_col": 24, - "start_line": 67 - } - }, - "839": { - "accessible_scopes": [ - "__main__", - "__main__", - "__main__.transferOwnership" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 70, - "end_line": 67, - "input_file": { - "filename": "src/renderers/RandomRenderer.cairo" - }, - "parent_location": [ - { - "end_col": 75, - "end_line": 60, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/access/ownable/library.cairo" - }, - "parent_location": [ - { - "end_col": 42, - "end_line": 70, - "input_file": { - "filename": "src/renderers/RandomRenderer.cairo" - }, - "start_col": 5, - "start_line": 70 - }, - "While trying to retrieve the implicit argument 'pedersen_ptr' in:" - ], - "start_col": 49, - "start_line": 60 - }, - "While expanding the reference 'pedersen_ptr' in:" - ], - "start_col": 44, - "start_line": 67 - } - }, - "840": { - "accessible_scopes": [ - "__main__", - "__main__", - "__main__.transferOwnership" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 87, - "end_line": 67, - "input_file": { - "filename": "src/renderers/RandomRenderer.cairo" - }, - "parent_location": [ - { - "end_col": 92, - "end_line": 60, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/access/ownable/library.cairo" - }, - "parent_location": [ - { - "end_col": 42, - "end_line": 70, - "input_file": { - "filename": "src/renderers/RandomRenderer.cairo" - }, - "start_col": 5, - "start_line": 70 - }, - "While trying to retrieve the implicit argument 'range_check_ptr' in:" - ], - "start_col": 77, - "start_line": 60 - }, - "While expanding the reference 'range_check_ptr' in:" - ], - "start_col": 72, - "start_line": 67 - } - }, - "841": { - "accessible_scopes": [ - "__main__", - "__main__", - "__main__.transferOwnership" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 20, - "end_line": 68, - "input_file": { - "filename": "src/renderers/RandomRenderer.cairo" - }, - "parent_location": [ - { - "end_col": 41, - "end_line": 70, - "input_file": { - "filename": "src/renderers/RandomRenderer.cairo" - }, - "start_col": 32, - "start_line": 70 - }, - "While expanding the reference 'new_owner' in:" - ], - "start_col": 5, - "start_line": 68 - } - }, - "842": { - "accessible_scopes": [ - "__main__", - "__main__", - "__main__.transferOwnership" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 42, - "end_line": 70, - "input_file": { - "filename": "src/renderers/RandomRenderer.cairo" - }, - "start_col": 5, - "start_line": 70 - } - }, - "844": { - "accessible_scopes": [ - "__main__", - "__main__", - "__main__.transferOwnership" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 15, - "end_line": 71, - "input_file": { - "filename": "src/renderers/RandomRenderer.cairo" - }, - "start_col": 5, - "start_line": 71 - } - }, - "845": { - "accessible_scopes": [ - "__main__", - "__main__", - "__wrappers__", - "__wrappers__.transferOwnership" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 40, - "end_line": 2, - "input_file": { - "filename": "autogen/starknet/arg_processor/450f0509800d3afb78e5f375ff7b17115e6b5d0fd7e2bff94c78fdb15f5f2d10.cairo" - }, - "parent_location": [ - { - "end_col": 20, - "end_line": 68, - "input_file": { - "filename": "src/renderers/RandomRenderer.cairo" - }, - "parent_location": [ - { - "end_col": 45, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/arg_processor/c31620b02d4d706f0542c989b2aadc01b0981d1f6a5933a8fe4937ace3d70d92.cairo" - }, - "parent_location": [ - { - "end_col": 23, - "end_line": 67, - "input_file": { - "filename": "src/renderers/RandomRenderer.cairo" - }, - "parent_location": [ - { - "end_col": 57, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/arg_processor/01cba52f8515996bb9d7070bde81ff39281d096d7024a558efcba6e1fd2402cf.cairo" - }, - "parent_location": [ - { - "end_col": 23, - "end_line": 67, - "input_file": { - "filename": "src/renderers/RandomRenderer.cairo" - }, - "start_col": 6, - "start_line": 67 - }, - "While handling calldata of" - ], - "start_col": 35, - "start_line": 1 - }, - "While expanding the reference '__calldata_actual_size' in:" - ], - "start_col": 6, - "start_line": 67 - }, - "While handling calldata of" - ], - "start_col": 31, - "start_line": 1 - }, - "While expanding the reference '__calldata_ptr' in:" - ], - "start_col": 5, - "start_line": 68 - }, - "While handling calldata argument 'new_owner'" - ], - "start_col": 22, - "start_line": 2 - } - }, - "847": { - "accessible_scopes": [ - "__main__", - "__main__", - "__wrappers__", - "__wrappers__.transferOwnership" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 58, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/arg_processor/01cba52f8515996bb9d7070bde81ff39281d096d7024a558efcba6e1fd2402cf.cairo" - }, - "parent_location": [ - { - "end_col": 23, - "end_line": 67, - "input_file": { - "filename": "src/renderers/RandomRenderer.cairo" - }, - "start_col": 6, - "start_line": 67 - }, - "While handling calldata of" - ], - "start_col": 1, - "start_line": 1 - } - }, - "848": { - "accessible_scopes": [ - "__main__", - "__main__", - "__wrappers__", - "__wrappers__.transferOwnership" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 64, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/external/transferOwnership/b2c52ca2d2a8fc8791a983086d8716c5eacd0c3d62934914d2286f84b98ff4cb.cairo" - }, - "parent_location": [ - { - "end_col": 42, - "end_line": 67, - "input_file": { - "filename": "src/renderers/RandomRenderer.cairo" - }, - "parent_location": [ - { - "end_col": 55, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/external/transferOwnership/c2abbdf6d40d1d1b0441e88eb8846ba0c3d55e5f282e3d3f8d0a35a43a9b3e33.cairo" - }, - "parent_location": [ - { - "end_col": 23, - "end_line": 67, - "input_file": { - "filename": "src/renderers/RandomRenderer.cairo" - }, - "start_col": 6, - "start_line": 67 - }, - "While constructing the external wrapper for:" - ], - "start_col": 44, - "start_line": 1 - }, - "While expanding the reference 'syscall_ptr' in:" - ], - "start_col": 24, - "start_line": 67 - }, - "While constructing the external wrapper for:" - ], - "start_col": 19, - "start_line": 1 - } - }, - "849": { - "accessible_scopes": [ - "__main__", - "__main__", - "__wrappers__", - "__wrappers__.transferOwnership" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 110, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/external/transferOwnership/9684a85e93c782014ca14293edea4eb2502039a5a7b6538ecd39c56faaf12529.cairo" - }, - "parent_location": [ - { - "end_col": 70, - "end_line": 67, - "input_file": { - "filename": "src/renderers/RandomRenderer.cairo" - }, - "parent_location": [ - { - "end_col": 82, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/external/transferOwnership/c2abbdf6d40d1d1b0441e88eb8846ba0c3d55e5f282e3d3f8d0a35a43a9b3e33.cairo" - }, - "parent_location": [ - { - "end_col": 23, - "end_line": 67, - "input_file": { - "filename": "src/renderers/RandomRenderer.cairo" - }, - "start_col": 6, - "start_line": 67 - }, - "While constructing the external wrapper for:" - ], - "start_col": 70, - "start_line": 1 - }, - "While expanding the reference 'pedersen_ptr' in:" - ], - "start_col": 44, - "start_line": 67 - }, - "While constructing the external wrapper for:" - ], - "start_col": 20, - "start_line": 1 - } - }, - "850": { - "accessible_scopes": [ - "__main__", - "__main__", - "__wrappers__", - "__wrappers__.transferOwnership" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 67, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/external/transferOwnership/741ea357d6336b0bed7bf0472425acd0311d543883b803388880e60a232040c7.cairo" - }, - "parent_location": [ - { - "end_col": 87, - "end_line": 67, - "input_file": { - "filename": "src/renderers/RandomRenderer.cairo" - }, - "parent_location": [ - { - "end_col": 115, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/external/transferOwnership/c2abbdf6d40d1d1b0441e88eb8846ba0c3d55e5f282e3d3f8d0a35a43a9b3e33.cairo" - }, - "parent_location": [ - { - "end_col": 23, - "end_line": 67, - "input_file": { - "filename": "src/renderers/RandomRenderer.cairo" - }, - "start_col": 6, - "start_line": 67 - }, - "While constructing the external wrapper for:" - ], - "start_col": 100, - "start_line": 1 - }, - "While expanding the reference 'range_check_ptr' in:" - ], - "start_col": 72, - "start_line": 67 - }, - "While constructing the external wrapper for:" - ], - "start_col": 23, - "start_line": 1 - } - }, - "851": { - "accessible_scopes": [ - "__main__", - "__main__", - "__wrappers__", - "__wrappers__.transferOwnership" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 48, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/arg_processor/450f0509800d3afb78e5f375ff7b17115e6b5d0fd7e2bff94c78fdb15f5f2d10.cairo" - }, - "parent_location": [ - { - "end_col": 20, - "end_line": 68, - "input_file": { - "filename": "src/renderers/RandomRenderer.cairo" - }, - "parent_location": [ - { - "end_col": 151, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/external/transferOwnership/c2abbdf6d40d1d1b0441e88eb8846ba0c3d55e5f282e3d3f8d0a35a43a9b3e33.cairo" - }, - "parent_location": [ - { - "end_col": 23, - "end_line": 67, - "input_file": { - "filename": "src/renderers/RandomRenderer.cairo" - }, - "start_col": 6, - "start_line": 67 - }, - "While constructing the external wrapper for:" - ], - "start_col": 127, - "start_line": 1 - }, - "While expanding the reference '__calldata_arg_new_owner' in:" - ], - "start_col": 5, - "start_line": 68 - }, - "While handling calldata argument 'new_owner'" - ], - "start_col": 32, - "start_line": 1 - } - }, - "852": { - "accessible_scopes": [ - "__main__", - "__main__", - "__wrappers__", - "__wrappers__.transferOwnership" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 23, - "end_line": 67, - "input_file": { - "filename": "src/renderers/RandomRenderer.cairo" - }, - "start_col": 6, - "start_line": 67 - } - }, - "854": { - "accessible_scopes": [ - "__main__", - "__main__", - "__wrappers__", - "__wrappers__.transferOwnership" - ], - "flow_tracking_data": null, - "hints": [ - { - "location": { - "end_col": 34, - "end_line": 2, - "input_file": { - "filename": "autogen/starknet/external/transferOwnership/c2abbdf6d40d1d1b0441e88eb8846ba0c3d55e5f282e3d3f8d0a35a43a9b3e33.cairo" - }, - "parent_location": [ - { - "end_col": 23, - "end_line": 67, - "input_file": { - "filename": "src/renderers/RandomRenderer.cairo" - }, - "start_col": 6, - "start_line": 67 - }, - "While constructing the external wrapper for:" - ], - "start_col": 1, - "start_line": 2 - }, - "n_prefix_newlines": 0 - } - ], - "inst": { - "end_col": 24, - "end_line": 3, - "input_file": { - "filename": "autogen/starknet/external/transferOwnership/c2abbdf6d40d1d1b0441e88eb8846ba0c3d55e5f282e3d3f8d0a35a43a9b3e33.cairo" - }, - "parent_location": [ - { - "end_col": 23, - "end_line": 67, - "input_file": { - "filename": "src/renderers/RandomRenderer.cairo" - }, - "start_col": 6, - "start_line": 67 - }, - "While constructing the external wrapper for:" - ], - "start_col": 1, - "start_line": 3 - } - }, - "856": { - "accessible_scopes": [ - "__main__", - "__main__", - "__wrappers__", - "__wrappers__.transferOwnership" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 55, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/external/transferOwnership/c2abbdf6d40d1d1b0441e88eb8846ba0c3d55e5f282e3d3f8d0a35a43a9b3e33.cairo" - }, - "parent_location": [ - { - "end_col": 23, - "end_line": 67, - "input_file": { - "filename": "src/renderers/RandomRenderer.cairo" - }, - "parent_location": [ - { - "end_col": 20, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/external/transferOwnership/da17921a4e81c09e730800bbf23bfdbe5e9e6bfaedc59d80fbf62087fa43c27d.cairo" - }, - "parent_location": [ - { - "end_col": 23, - "end_line": 67, - "input_file": { - "filename": "src/renderers/RandomRenderer.cairo" - }, - "start_col": 6, - "start_line": 67 - }, - "While constructing the external wrapper for:" - ], - "start_col": 9, - "start_line": 1 - }, - "While expanding the reference 'syscall_ptr' in:" - ], - "start_col": 6, - "start_line": 67 - }, - "While constructing the external wrapper for:" - ], - "start_col": 44, - "start_line": 1 - } - }, - "857": { - "accessible_scopes": [ - "__main__", - "__main__", - "__wrappers__", - "__wrappers__.transferOwnership" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 82, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/external/transferOwnership/c2abbdf6d40d1d1b0441e88eb8846ba0c3d55e5f282e3d3f8d0a35a43a9b3e33.cairo" - }, - "parent_location": [ - { - "end_col": 23, - "end_line": 67, - "input_file": { - "filename": "src/renderers/RandomRenderer.cairo" - }, - "parent_location": [ - { - "end_col": 33, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/external/transferOwnership/da17921a4e81c09e730800bbf23bfdbe5e9e6bfaedc59d80fbf62087fa43c27d.cairo" - }, - "parent_location": [ - { - "end_col": 23, - "end_line": 67, - "input_file": { - "filename": "src/renderers/RandomRenderer.cairo" - }, - "start_col": 6, - "start_line": 67 - }, - "While constructing the external wrapper for:" - ], - "start_col": 21, - "start_line": 1 - }, - "While expanding the reference 'pedersen_ptr' in:" - ], - "start_col": 6, - "start_line": 67 - }, - "While constructing the external wrapper for:" - ], - "start_col": 70, - "start_line": 1 - } - }, - "858": { - "accessible_scopes": [ - "__main__", - "__main__", - "__wrappers__", - "__wrappers__.transferOwnership" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 115, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/external/transferOwnership/c2abbdf6d40d1d1b0441e88eb8846ba0c3d55e5f282e3d3f8d0a35a43a9b3e33.cairo" - }, - "parent_location": [ - { - "end_col": 23, - "end_line": 67, - "input_file": { - "filename": "src/renderers/RandomRenderer.cairo" - }, - "parent_location": [ - { - "end_col": 49, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/external/transferOwnership/da17921a4e81c09e730800bbf23bfdbe5e9e6bfaedc59d80fbf62087fa43c27d.cairo" - }, - "parent_location": [ - { - "end_col": 23, - "end_line": 67, - "input_file": { - "filename": "src/renderers/RandomRenderer.cairo" - }, - "start_col": 6, - "start_line": 67 - }, - "While constructing the external wrapper for:" - ], - "start_col": 34, - "start_line": 1 - }, - "While expanding the reference 'range_check_ptr' in:" - ], - "start_col": 6, - "start_line": 67 - }, - "While constructing the external wrapper for:" - ], - "start_col": 100, - "start_line": 1 - } - }, - "859": { - "accessible_scopes": [ - "__main__", - "__main__", - "__wrappers__", - "__wrappers__.transferOwnership" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 21, - "end_line": 4, - "input_file": { - "filename": "autogen/starknet/external/transferOwnership/c2abbdf6d40d1d1b0441e88eb8846ba0c3d55e5f282e3d3f8d0a35a43a9b3e33.cairo" - }, - "parent_location": [ - { - "end_col": 23, - "end_line": 67, - "input_file": { - "filename": "src/renderers/RandomRenderer.cairo" - }, - "parent_location": [ - { - "end_col": 62, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/external/transferOwnership/da17921a4e81c09e730800bbf23bfdbe5e9e6bfaedc59d80fbf62087fa43c27d.cairo" - }, - "parent_location": [ - { - "end_col": 23, - "end_line": 67, - "input_file": { - "filename": "src/renderers/RandomRenderer.cairo" - }, - "start_col": 6, - "start_line": 67 - }, - "While constructing the external wrapper for:" - ], - "start_col": 50, - "start_line": 1 - }, - "While expanding the reference 'retdata_size' in:" - ], - "start_col": 6, - "start_line": 67 - }, - "While constructing the external wrapper for:" - ], - "start_col": 20, - "start_line": 4 - } - }, - "861": { - "accessible_scopes": [ - "__main__", - "__main__", - "__wrappers__", - "__wrappers__.transferOwnership" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 16, - "end_line": 3, - "input_file": { - "filename": "autogen/starknet/external/transferOwnership/c2abbdf6d40d1d1b0441e88eb8846ba0c3d55e5f282e3d3f8d0a35a43a9b3e33.cairo" - }, - "parent_location": [ - { - "end_col": 23, - "end_line": 67, - "input_file": { - "filename": "src/renderers/RandomRenderer.cairo" - }, - "parent_location": [ - { - "end_col": 70, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/external/transferOwnership/da17921a4e81c09e730800bbf23bfdbe5e9e6bfaedc59d80fbf62087fa43c27d.cairo" - }, - "parent_location": [ - { - "end_col": 23, - "end_line": 67, - "input_file": { - "filename": "src/renderers/RandomRenderer.cairo" - }, - "start_col": 6, - "start_line": 67 - }, - "While constructing the external wrapper for:" - ], - "start_col": 63, - "start_line": 1 - }, - "While expanding the reference 'retdata' in:" - ], - "start_col": 6, - "start_line": 67 - }, - "While constructing the external wrapper for:" - ], - "start_col": 9, - "start_line": 3 - } - }, - "862": { - "accessible_scopes": [ - "__main__", - "__main__", - "__wrappers__", - "__wrappers__.transferOwnership" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 72, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/external/transferOwnership/da17921a4e81c09e730800bbf23bfdbe5e9e6bfaedc59d80fbf62087fa43c27d.cairo" - }, - "parent_location": [ - { - "end_col": 23, - "end_line": 67, - "input_file": { - "filename": "src/renderers/RandomRenderer.cairo" - }, - "start_col": 6, - "start_line": 67 - }, - "While constructing the external wrapper for:" - ], - "start_col": 1, - "start_line": 1 - } - }, - "863": { - "accessible_scopes": [ - "__main__", - "__main__", - "__main__.constructor" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 36, - "end_line": 75, - "input_file": { - "filename": "src/renderers/RandomRenderer.cairo" - }, - "parent_location": [ - { - "end_col": 40, - "end_line": 31, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/access/ownable/library.cairo" - }, - "parent_location": [ - { - "end_col": 31, - "end_line": 78, - "input_file": { - "filename": "src/renderers/RandomRenderer.cairo" - }, - "start_col": 5, - "start_line": 78 - }, - "While trying to retrieve the implicit argument 'syscall_ptr' in:" - ], - "start_col": 22, - "start_line": 31 - }, - "While expanding the reference 'syscall_ptr' in:" - ], - "start_col": 18, - "start_line": 75 - } - }, - "864": { - "accessible_scopes": [ - "__main__", - "__main__", - "__main__.constructor" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 64, - "end_line": 75, - "input_file": { - "filename": "src/renderers/RandomRenderer.cairo" - }, - "parent_location": [ - { - "end_col": 68, - "end_line": 31, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/access/ownable/library.cairo" - }, - "parent_location": [ - { - "end_col": 31, - "end_line": 78, - "input_file": { - "filename": "src/renderers/RandomRenderer.cairo" - }, - "start_col": 5, - "start_line": 78 - }, - "While trying to retrieve the implicit argument 'pedersen_ptr' in:" - ], - "start_col": 42, - "start_line": 31 - }, - "While expanding the reference 'pedersen_ptr' in:" - ], - "start_col": 38, - "start_line": 75 - } - }, - "865": { - "accessible_scopes": [ - "__main__", - "__main__", - "__main__.constructor" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 81, - "end_line": 75, - "input_file": { - "filename": "src/renderers/RandomRenderer.cairo" - }, - "parent_location": [ - { - "end_col": 85, - "end_line": 31, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/access/ownable/library.cairo" - }, - "parent_location": [ - { - "end_col": 31, - "end_line": 78, - "input_file": { - "filename": "src/renderers/RandomRenderer.cairo" - }, - "start_col": 5, - "start_line": 78 - }, - "While trying to retrieve the implicit argument 'range_check_ptr' in:" - ], - "start_col": 70, - "start_line": 31 - }, - "While expanding the reference 'range_check_ptr' in:" - ], - "start_col": 66, - "start_line": 75 - } - }, - "866": { - "accessible_scopes": [ - "__main__", - "__main__", - "__main__.constructor" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 16, - "end_line": 76, - "input_file": { - "filename": "src/renderers/RandomRenderer.cairo" - }, - "parent_location": [ - { - "end_col": 30, - "end_line": 78, - "input_file": { - "filename": "src/renderers/RandomRenderer.cairo" - }, - "start_col": 25, - "start_line": 78 - }, - "While expanding the reference 'owner' in:" - ], - "start_col": 5, - "start_line": 76 - } - }, - "867": { - "accessible_scopes": [ - "__main__", - "__main__", - "__main__.constructor" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 31, - "end_line": 78, - "input_file": { - "filename": "src/renderers/RandomRenderer.cairo" - }, - "start_col": 5, - "start_line": 78 - } - }, - "869": { - "accessible_scopes": [ - "__main__", - "__main__", - "__main__.constructor" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 32, - "end_line": 76, - "input_file": { - "filename": "src/renderers/RandomRenderer.cairo" - }, - "parent_location": [ - { - "end_col": 29, - "end_line": 79, - "input_file": { - "filename": "src/renderers/RandomRenderer.cairo" - }, - "start_col": 21, - "start_line": 79 - }, - "While expanding the reference 'uris_len' in:" - ], - "start_col": 18, - "start_line": 76 - } - }, - "870": { - "accessible_scopes": [ - "__main__", - "__main__", - "__main__.constructor" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 30, - "end_line": 79, - "input_file": { - "filename": "src/renderers/RandomRenderer.cairo" - }, - "start_col": 5, - "start_line": 79 - } - }, - "872": { - "accessible_scopes": [ - "__main__", - "__main__", - "__main__.constructor" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 24, - "end_line": 80, - "input_file": { - "filename": "src/renderers/RandomRenderer.cairo" - }, - "start_col": 23, - "start_line": 80 - } - }, - "874": { - "accessible_scopes": [ - "__main__", - "__main__", - "__main__.constructor" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 32, - "end_line": 76, - "input_file": { - "filename": "src/renderers/RandomRenderer.cairo" - }, - "parent_location": [ - { - "end_col": 43, - "end_line": 80, - "input_file": { - "filename": "src/renderers/RandomRenderer.cairo" - }, - "start_col": 35, - "start_line": 80 - }, - "While expanding the reference 'uris_len' in:" - ], - "start_col": 18, - "start_line": 76 - } - }, - "875": { - "accessible_scopes": [ - "__main__", - "__main__", - "__main__.constructor" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 45, - "end_line": 76, - "input_file": { - "filename": "src/renderers/RandomRenderer.cairo" - }, - "parent_location": [ - { - "end_col": 54, - "end_line": 80, - "input_file": { - "filename": "src/renderers/RandomRenderer.cairo" - }, - "start_col": 50, - "start_line": 80 - }, - "While expanding the reference 'uris' in:" - ], - "start_col": 34, - "start_line": 76 - } - }, - "876": { - "accessible_scopes": [ - "__main__", - "__main__", - "__main__.constructor" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 55, - "end_line": 80, - "input_file": { - "filename": "src/renderers/RandomRenderer.cairo" - }, - "start_col": 5, - "start_line": 80 - } - }, - "878": { - "accessible_scopes": [ - "__main__", - "__main__", - "__main__.constructor" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 15, - "end_line": 81, - "input_file": { - "filename": "src/renderers/RandomRenderer.cairo" - }, - "start_col": 5, - "start_line": 81 - } - }, - "879": { - "accessible_scopes": [ - "__main__", - "__main__", - "__wrappers__", - "__wrappers__.constructor" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 67, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/external/constructor/741ea357d6336b0bed7bf0472425acd0311d543883b803388880e60a232040c7.cairo" - }, - "parent_location": [ - { - "end_col": 81, - "end_line": 75, - "input_file": { - "filename": "src/renderers/RandomRenderer.cairo" - }, - "parent_location": [ - { - "end_col": 24, - "end_line": 2, - "input_file": { - "filename": "autogen/starknet/arg_processor/4d3c3312cf28c6aaaca9e6272964446e12daddba3759882910a365c0efed08b3.cairo" - }, - "parent_location": [ - { - "end_col": 45, - "end_line": 76, - "input_file": { - "filename": "src/renderers/RandomRenderer.cairo" - }, - "start_col": 34, - "start_line": 76 - }, - "While handling calldata argument 'uris'" - ], - "start_col": 9, - "start_line": 2 - }, - "While expanding the reference 'range_check_ptr' in:" - ], - "start_col": 66, - "start_line": 75 - }, - "While constructing the external wrapper for:" - ], - "start_col": 23, - "start_line": 1 - } - }, - "880": { - "accessible_scopes": [ - "__main__", - "__main__", - "__wrappers__", - "__wrappers__.constructor" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 47, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/arg_processor/860925ba0e84404f570d0f727a5bc2dbe9f339c324eb0fc9b3b7324b211ad7e9.cairo" - }, - "parent_location": [ - { - "end_col": 32, - "end_line": 76, - "input_file": { - "filename": "src/renderers/RandomRenderer.cairo" - }, - "parent_location": [ - { - "end_col": 51, - "end_line": 2, - "input_file": { - "filename": "autogen/starknet/arg_processor/4d3c3312cf28c6aaaca9e6272964446e12daddba3759882910a365c0efed08b3.cairo" - }, - "parent_location": [ - { - "end_col": 45, - "end_line": 76, - "input_file": { - "filename": "src/renderers/RandomRenderer.cairo" - }, - "start_col": 34, - "start_line": 76 - }, - "While handling calldata argument 'uris'" - ], - "start_col": 28, - "start_line": 2 - }, - "While expanding the reference '__calldata_arg_uris_len' in:" - ], - "start_col": 18, - "start_line": 76 - }, - "While handling calldata argument 'uris_len'" - ], - "start_col": 31, - "start_line": 1 - } - }, - "881": { - "accessible_scopes": [ - "__main__", - "__main__", - "__wrappers__", - "__wrappers__.constructor" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 52, - "end_line": 2, - "input_file": { - "filename": "autogen/starknet/arg_processor/4d3c3312cf28c6aaaca9e6272964446e12daddba3759882910a365c0efed08b3.cairo" - }, - "parent_location": [ - { - "end_col": 45, - "end_line": 76, - "input_file": { - "filename": "src/renderers/RandomRenderer.cairo" - }, - "start_col": 34, - "start_line": 76 - }, - "While handling calldata argument 'uris'" - ], - "start_col": 1, - "start_line": 2 - } - }, - "882": { - "accessible_scopes": [ - "__main__", - "__main__", - "__wrappers__", - "__wrappers__.constructor" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 40, - "end_line": 2, - "input_file": { - "filename": "autogen/starknet/arg_processor/860925ba0e84404f570d0f727a5bc2dbe9f339c324eb0fc9b3b7324b211ad7e9.cairo" - }, - "parent_location": [ - { - "end_col": 32, - "end_line": 76, - "input_file": { - "filename": "src/renderers/RandomRenderer.cairo" - }, - "parent_location": [ - { - "end_col": 40, - "end_line": 8, - "input_file": { - "filename": "autogen/starknet/arg_processor/4d3c3312cf28c6aaaca9e6272964446e12daddba3759882910a365c0efed08b3.cairo" - }, - "parent_location": [ - { - "end_col": 45, - "end_line": 76, - "input_file": { - "filename": "src/renderers/RandomRenderer.cairo" - }, - "start_col": 34, - "start_line": 76 - }, - "While handling calldata argument 'uris'" - ], - "start_col": 26, - "start_line": 8 - }, - "While expanding the reference '__calldata_ptr' in:" - ], - "start_col": 18, - "start_line": 76 - }, - "While handling calldata argument 'uris_len'" - ], - "start_col": 22, - "start_line": 2 - } - }, - "884": { - "accessible_scopes": [ - "__main__", - "__main__", - "__wrappers__", - "__wrappers__.constructor" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 47, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/arg_processor/860925ba0e84404f570d0f727a5bc2dbe9f339c324eb0fc9b3b7324b211ad7e9.cairo" - }, - "parent_location": [ - { - "end_col": 32, - "end_line": 76, - "input_file": { - "filename": "src/renderers/RandomRenderer.cairo" - }, - "parent_location": [ - { - "end_col": 66, - "end_line": 8, - "input_file": { - "filename": "autogen/starknet/arg_processor/4d3c3312cf28c6aaaca9e6272964446e12daddba3759882910a365c0efed08b3.cairo" - }, - "parent_location": [ - { - "end_col": 45, - "end_line": 76, - "input_file": { - "filename": "src/renderers/RandomRenderer.cairo" - }, - "start_col": 34, - "start_line": 76 - }, - "While handling calldata argument 'uris'" - ], - "start_col": 43, - "start_line": 8 - }, - "While expanding the reference '__calldata_arg_uris_len' in:" - ], - "start_col": 18, - "start_line": 76 - }, - "While handling calldata argument 'uris_len'" - ], - "start_col": 31, - "start_line": 1 - } - }, - "885": { - "accessible_scopes": [ - "__main__", - "__main__", - "__wrappers__", - "__wrappers__.constructor" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 70, - "end_line": 8, - "input_file": { - "filename": "autogen/starknet/arg_processor/4d3c3312cf28c6aaaca9e6272964446e12daddba3759882910a365c0efed08b3.cairo" - }, - "parent_location": [ - { - "end_col": 45, - "end_line": 76, - "input_file": { - "filename": "src/renderers/RandomRenderer.cairo" - }, - "start_col": 34, - "start_line": 76 - }, - "While handling calldata argument 'uris'" - ], - "start_col": 26, - "start_line": 8 - } - }, - "886": { - "accessible_scopes": [ - "__main__", - "__main__", - "__wrappers__", - "__wrappers__.constructor" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 58, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/arg_processor/01cba52f8515996bb9d7070bde81ff39281d096d7024a558efcba6e1fd2402cf.cairo" - }, - "parent_location": [ - { - "end_col": 17, - "end_line": 75, - "input_file": { - "filename": "src/renderers/RandomRenderer.cairo" - }, - "start_col": 6, - "start_line": 75 - }, - "While handling calldata of" - ], - "start_col": 1, - "start_line": 1 - } - }, - "887": { - "accessible_scopes": [ - "__main__", - "__main__", - "__wrappers__", - "__wrappers__.constructor" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 67, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/external/constructor/741ea357d6336b0bed7bf0472425acd0311d543883b803388880e60a232040c7.cairo" - }, - "parent_location": [ - { - "end_col": 81, - "end_line": 75, - "input_file": { - "filename": "src/renderers/RandomRenderer.cairo" - }, - "parent_location": [ - { - "end_col": 38, - "end_line": 3, - "input_file": { - "filename": "autogen/starknet/arg_processor/4d3c3312cf28c6aaaca9e6272964446e12daddba3759882910a365c0efed08b3.cairo" - }, - "parent_location": [ - { - "end_col": 45, - "end_line": 76, - "input_file": { - "filename": "src/renderers/RandomRenderer.cairo" - }, - "parent_location": [ - { - "end_col": 115, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/external/constructor/8682a073fe3cc70bab3d539eb66aed8590e5785f411e73a386699f142b9a4b35.cairo" - }, - "parent_location": [ - { - "end_col": 17, - "end_line": 75, - "input_file": { - "filename": "src/renderers/RandomRenderer.cairo" - }, - "start_col": 6, - "start_line": 75 - }, - "While constructing the external wrapper for:" - ], - "start_col": 100, - "start_line": 1 - }, - "While expanding the reference 'range_check_ptr' in:" - ], - "start_col": 34, - "start_line": 76 - }, - "While handling calldata argument 'uris'" - ], - "start_col": 23, - "start_line": 3 - }, - "While expanding the reference 'range_check_ptr' in:" - ], - "start_col": 66, - "start_line": 75 - }, - "While constructing the external wrapper for:" - ], - "start_col": 23, - "start_line": 1 - } - }, - "888": { - "accessible_scopes": [ - "__main__", - "__main__", - "__wrappers__", - "__wrappers__.constructor" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 64, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/external/constructor/b2c52ca2d2a8fc8791a983086d8716c5eacd0c3d62934914d2286f84b98ff4cb.cairo" - }, - "parent_location": [ - { - "end_col": 36, - "end_line": 75, - "input_file": { - "filename": "src/renderers/RandomRenderer.cairo" - }, - "parent_location": [ - { - "end_col": 55, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/external/constructor/8682a073fe3cc70bab3d539eb66aed8590e5785f411e73a386699f142b9a4b35.cairo" - }, - "parent_location": [ - { - "end_col": 17, - "end_line": 75, - "input_file": { - "filename": "src/renderers/RandomRenderer.cairo" - }, - "start_col": 6, - "start_line": 75 - }, - "While constructing the external wrapper for:" - ], - "start_col": 44, - "start_line": 1 - }, - "While expanding the reference 'syscall_ptr' in:" - ], - "start_col": 18, - "start_line": 75 - }, - "While constructing the external wrapper for:" - ], - "start_col": 19, - "start_line": 1 - } - }, - "889": { - "accessible_scopes": [ - "__main__", - "__main__", - "__wrappers__", - "__wrappers__.constructor" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 110, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/external/constructor/9684a85e93c782014ca14293edea4eb2502039a5a7b6538ecd39c56faaf12529.cairo" - }, - "parent_location": [ - { - "end_col": 64, - "end_line": 75, - "input_file": { - "filename": "src/renderers/RandomRenderer.cairo" - }, - "parent_location": [ - { - "end_col": 82, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/external/constructor/8682a073fe3cc70bab3d539eb66aed8590e5785f411e73a386699f142b9a4b35.cairo" - }, - "parent_location": [ - { - "end_col": 17, - "end_line": 75, - "input_file": { - "filename": "src/renderers/RandomRenderer.cairo" - }, - "start_col": 6, - "start_line": 75 - }, - "While constructing the external wrapper for:" - ], - "start_col": 70, - "start_line": 1 - }, - "While expanding the reference 'pedersen_ptr' in:" - ], - "start_col": 38, - "start_line": 75 - }, - "While constructing the external wrapper for:" - ], - "start_col": 20, - "start_line": 1 - } - }, - "890": { - "accessible_scopes": [ - "__main__", - "__main__", - "__wrappers__", - "__wrappers__.constructor" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 42, - "end_line": 3, - "input_file": { - "filename": "autogen/starknet/arg_processor/4d3c3312cf28c6aaaca9e6272964446e12daddba3759882910a365c0efed08b3.cairo" - }, - "parent_location": [ - { - "end_col": 45, - "end_line": 76, - "input_file": { - "filename": "src/renderers/RandomRenderer.cairo" - }, - "parent_location": [ - { - "end_col": 115, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/external/constructor/8682a073fe3cc70bab3d539eb66aed8590e5785f411e73a386699f142b9a4b35.cairo" - }, - "parent_location": [ - { - "end_col": 17, - "end_line": 75, - "input_file": { - "filename": "src/renderers/RandomRenderer.cairo" - }, - "start_col": 6, - "start_line": 75 - }, - "While constructing the external wrapper for:" - ], - "start_col": 100, - "start_line": 1 - }, - "While expanding the reference 'range_check_ptr' in:" - ], - "start_col": 34, - "start_line": 76 - }, - "While handling calldata argument 'uris'" - ], - "start_col": 23, - "start_line": 3 - } - }, - "892": { - "accessible_scopes": [ - "__main__", - "__main__", - "__wrappers__", - "__wrappers__.constructor" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 44, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/arg_processor/f6a4d9ae897caf37cefd18f7c8da7eee73157818279359aadee282f0fe59cdbc.cairo" - }, - "parent_location": [ - { - "end_col": 16, - "end_line": 76, - "input_file": { - "filename": "src/renderers/RandomRenderer.cairo" - }, - "parent_location": [ - { - "end_col": 143, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/external/constructor/8682a073fe3cc70bab3d539eb66aed8590e5785f411e73a386699f142b9a4b35.cairo" - }, - "parent_location": [ - { - "end_col": 17, - "end_line": 75, - "input_file": { - "filename": "src/renderers/RandomRenderer.cairo" - }, - "start_col": 6, - "start_line": 75 - }, - "While constructing the external wrapper for:" - ], - "start_col": 123, - "start_line": 1 - }, - "While expanding the reference '__calldata_arg_owner' in:" - ], - "start_col": 5, - "start_line": 76 - }, - "While handling calldata argument 'owner'" - ], - "start_col": 28, - "start_line": 1 - } - }, - "893": { - "accessible_scopes": [ - "__main__", - "__main__", - "__wrappers__", - "__wrappers__.constructor" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 47, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/arg_processor/860925ba0e84404f570d0f727a5bc2dbe9f339c324eb0fc9b3b7324b211ad7e9.cairo" - }, - "parent_location": [ - { - "end_col": 32, - "end_line": 76, - "input_file": { - "filename": "src/renderers/RandomRenderer.cairo" - }, - "parent_location": [ - { - "end_col": 177, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/external/constructor/8682a073fe3cc70bab3d539eb66aed8590e5785f411e73a386699f142b9a4b35.cairo" - }, - "parent_location": [ - { - "end_col": 17, - "end_line": 75, - "input_file": { - "filename": "src/renderers/RandomRenderer.cairo" - }, - "start_col": 6, - "start_line": 75 - }, - "While constructing the external wrapper for:" - ], - "start_col": 154, - "start_line": 1 - }, - "While expanding the reference '__calldata_arg_uris_len' in:" - ], - "start_col": 18, - "start_line": 76 - }, - "While handling calldata argument 'uris_len'" - ], - "start_col": 31, - "start_line": 1 - } - }, - "894": { - "accessible_scopes": [ - "__main__", - "__main__", - "__wrappers__", - "__wrappers__.constructor" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 54, - "end_line": 5, - "input_file": { - "filename": "autogen/starknet/arg_processor/4d3c3312cf28c6aaaca9e6272964446e12daddba3759882910a365c0efed08b3.cairo" - }, - "parent_location": [ - { - "end_col": 45, - "end_line": 76, - "input_file": { - "filename": "src/renderers/RandomRenderer.cairo" - }, - "parent_location": [ - { - "end_col": 203, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/external/constructor/8682a073fe3cc70bab3d539eb66aed8590e5785f411e73a386699f142b9a4b35.cairo" - }, - "parent_location": [ - { - "end_col": 17, - "end_line": 75, - "input_file": { - "filename": "src/renderers/RandomRenderer.cairo" - }, - "start_col": 6, - "start_line": 75 - }, - "While constructing the external wrapper for:" - ], - "start_col": 184, - "start_line": 1 - }, - "While expanding the reference '__calldata_arg_uris' in:" - ], - "start_col": 34, - "start_line": 76 - }, - "While handling calldata argument 'uris'" - ], - "start_col": 27, - "start_line": 5 - } - }, - "896": { - "accessible_scopes": [ - "__main__", - "__main__", - "__wrappers__", - "__wrappers__.constructor" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 17, - "end_line": 75, - "input_file": { - "filename": "src/renderers/RandomRenderer.cairo" - }, - "start_col": 6, - "start_line": 75 - } - }, - "898": { - "accessible_scopes": [ - "__main__", - "__main__", - "__wrappers__", - "__wrappers__.constructor" - ], - "flow_tracking_data": null, - "hints": [ - { - "location": { - "end_col": 34, - "end_line": 2, - "input_file": { - "filename": "autogen/starknet/external/constructor/8682a073fe3cc70bab3d539eb66aed8590e5785f411e73a386699f142b9a4b35.cairo" - }, - "parent_location": [ - { - "end_col": 17, - "end_line": 75, - "input_file": { - "filename": "src/renderers/RandomRenderer.cairo" - }, - "start_col": 6, - "start_line": 75 - }, - "While constructing the external wrapper for:" - ], - "start_col": 1, - "start_line": 2 - }, - "n_prefix_newlines": 0 - } - ], - "inst": { - "end_col": 24, - "end_line": 3, - "input_file": { - "filename": "autogen/starknet/external/constructor/8682a073fe3cc70bab3d539eb66aed8590e5785f411e73a386699f142b9a4b35.cairo" - }, - "parent_location": [ - { - "end_col": 17, - "end_line": 75, - "input_file": { - "filename": "src/renderers/RandomRenderer.cairo" - }, - "start_col": 6, - "start_line": 75 - }, - "While constructing the external wrapper for:" - ], - "start_col": 1, - "start_line": 3 - } - }, - "900": { - "accessible_scopes": [ - "__main__", - "__main__", - "__wrappers__", - "__wrappers__.constructor" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 55, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/external/constructor/8682a073fe3cc70bab3d539eb66aed8590e5785f411e73a386699f142b9a4b35.cairo" - }, - "parent_location": [ - { - "end_col": 17, - "end_line": 75, - "input_file": { - "filename": "src/renderers/RandomRenderer.cairo" - }, - "parent_location": [ - { - "end_col": 20, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/external/constructor/da17921a4e81c09e730800bbf23bfdbe5e9e6bfaedc59d80fbf62087fa43c27d.cairo" - }, - "parent_location": [ - { - "end_col": 17, - "end_line": 75, - "input_file": { - "filename": "src/renderers/RandomRenderer.cairo" - }, - "start_col": 6, - "start_line": 75 - }, - "While constructing the external wrapper for:" - ], - "start_col": 9, - "start_line": 1 - }, - "While expanding the reference 'syscall_ptr' in:" - ], - "start_col": 6, - "start_line": 75 - }, - "While constructing the external wrapper for:" - ], - "start_col": 44, - "start_line": 1 - } - }, - "901": { - "accessible_scopes": [ - "__main__", - "__main__", - "__wrappers__", - "__wrappers__.constructor" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 82, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/external/constructor/8682a073fe3cc70bab3d539eb66aed8590e5785f411e73a386699f142b9a4b35.cairo" - }, - "parent_location": [ - { - "end_col": 17, - "end_line": 75, - "input_file": { - "filename": "src/renderers/RandomRenderer.cairo" - }, - "parent_location": [ - { - "end_col": 33, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/external/constructor/da17921a4e81c09e730800bbf23bfdbe5e9e6bfaedc59d80fbf62087fa43c27d.cairo" - }, - "parent_location": [ - { - "end_col": 17, - "end_line": 75, - "input_file": { - "filename": "src/renderers/RandomRenderer.cairo" - }, - "start_col": 6, - "start_line": 75 - }, - "While constructing the external wrapper for:" - ], - "start_col": 21, - "start_line": 1 - }, - "While expanding the reference 'pedersen_ptr' in:" - ], - "start_col": 6, - "start_line": 75 - }, - "While constructing the external wrapper for:" - ], - "start_col": 70, - "start_line": 1 - } - }, - "902": { - "accessible_scopes": [ - "__main__", - "__main__", - "__wrappers__", - "__wrappers__.constructor" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 115, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/external/constructor/8682a073fe3cc70bab3d539eb66aed8590e5785f411e73a386699f142b9a4b35.cairo" - }, - "parent_location": [ - { - "end_col": 17, - "end_line": 75, - "input_file": { - "filename": "src/renderers/RandomRenderer.cairo" - }, - "parent_location": [ - { - "end_col": 49, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/external/constructor/da17921a4e81c09e730800bbf23bfdbe5e9e6bfaedc59d80fbf62087fa43c27d.cairo" - }, - "parent_location": [ - { - "end_col": 17, - "end_line": 75, - "input_file": { - "filename": "src/renderers/RandomRenderer.cairo" - }, - "start_col": 6, - "start_line": 75 - }, - "While constructing the external wrapper for:" - ], - "start_col": 34, - "start_line": 1 - }, - "While expanding the reference 'range_check_ptr' in:" - ], - "start_col": 6, - "start_line": 75 - }, - "While constructing the external wrapper for:" - ], - "start_col": 100, - "start_line": 1 - } - }, - "903": { - "accessible_scopes": [ - "__main__", - "__main__", - "__wrappers__", - "__wrappers__.constructor" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 21, - "end_line": 4, - "input_file": { - "filename": "autogen/starknet/external/constructor/8682a073fe3cc70bab3d539eb66aed8590e5785f411e73a386699f142b9a4b35.cairo" - }, - "parent_location": [ - { - "end_col": 17, - "end_line": 75, - "input_file": { - "filename": "src/renderers/RandomRenderer.cairo" - }, - "parent_location": [ - { - "end_col": 62, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/external/constructor/da17921a4e81c09e730800bbf23bfdbe5e9e6bfaedc59d80fbf62087fa43c27d.cairo" - }, - "parent_location": [ - { - "end_col": 17, - "end_line": 75, - "input_file": { - "filename": "src/renderers/RandomRenderer.cairo" - }, - "start_col": 6, - "start_line": 75 - }, - "While constructing the external wrapper for:" - ], - "start_col": 50, - "start_line": 1 - }, - "While expanding the reference 'retdata_size' in:" - ], - "start_col": 6, - "start_line": 75 - }, - "While constructing the external wrapper for:" - ], - "start_col": 20, - "start_line": 4 - } - }, - "905": { - "accessible_scopes": [ - "__main__", - "__main__", - "__wrappers__", - "__wrappers__.constructor" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 16, - "end_line": 3, - "input_file": { - "filename": "autogen/starknet/external/constructor/8682a073fe3cc70bab3d539eb66aed8590e5785f411e73a386699f142b9a4b35.cairo" - }, - "parent_location": [ - { - "end_col": 17, - "end_line": 75, - "input_file": { - "filename": "src/renderers/RandomRenderer.cairo" - }, - "parent_location": [ - { - "end_col": 70, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/external/constructor/da17921a4e81c09e730800bbf23bfdbe5e9e6bfaedc59d80fbf62087fa43c27d.cairo" - }, - "parent_location": [ - { - "end_col": 17, - "end_line": 75, - "input_file": { - "filename": "src/renderers/RandomRenderer.cairo" - }, - "start_col": 6, - "start_line": 75 - }, - "While constructing the external wrapper for:" - ], - "start_col": 63, - "start_line": 1 - }, - "While expanding the reference 'retdata' in:" - ], - "start_col": 6, - "start_line": 75 - }, - "While constructing the external wrapper for:" - ], - "start_col": 9, - "start_line": 3 - } - }, - "906": { - "accessible_scopes": [ - "__main__", - "__main__", - "__wrappers__", - "__wrappers__.constructor" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 72, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/external/constructor/da17921a4e81c09e730800bbf23bfdbe5e9e6bfaedc59d80fbf62087fa43c27d.cairo" - }, - "parent_location": [ - { - "end_col": 17, - "end_line": 75, - "input_file": { - "filename": "src/renderers/RandomRenderer.cairo" - }, - "start_col": 6, - "start_line": 75 - }, - "While constructing the external wrapper for:" - ], - "start_col": 1, - "start_line": 1 - } - }, - "907": { - "accessible_scopes": [ - "__main__", - "__main__", - "__main__.token_uri" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 18, - "end_line": 88, - "input_file": { - "filename": "src/renderers/RandomRenderer.cairo" - }, - "start_col": 5, - "start_line": 88 - } - }, - "909": { - "accessible_scopes": [ - "__main__", - "__main__", - "__main__.token_uri" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 62, - "end_line": 85, - "input_file": { - "filename": "src/renderers/RandomRenderer.cairo" - }, - "parent_location": [ - { - "end_col": 47, - "end_line": 89, - "input_file": { - "filename": "src/renderers/RandomRenderer.cairo" - }, - "start_col": 35, - "start_line": 89 - }, - "While expanding the reference 'pedersen_ptr' in:" - ], - "start_col": 36, - "start_line": 85 - } - }, - "910": { - "accessible_scopes": [ - "__main__", - "__main__", - "__main__.token_uri" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 19, - "end_line": 86, - "input_file": { - "filename": "src/renderers/RandomRenderer.cairo" - }, - "parent_location": [ - { - "end_col": 57, - "end_line": 89, - "input_file": { - "filename": "src/renderers/RandomRenderer.cairo" - }, - "start_col": 49, - "start_line": 89 - }, - "While expanding the reference 'token_id' in:" - ], - "start_col": 5, - "start_line": 86 - } - }, - "911": { - "accessible_scopes": [ - "__main__", - "__main__", - "__main__.token_uri" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 32, - "end_line": 86, - "input_file": { - "filename": "src/renderers/RandomRenderer.cairo" - }, - "parent_location": [ - { - "end_col": 64, - "end_line": 89, - "input_file": { - "filename": "src/renderers/RandomRenderer.cairo" - }, - "start_col": 59, - "start_line": 89 - }, - "While expanding the reference 'value' in:" - ], - "start_col": 21, - "start_line": 86 - } - }, - "912": { - "accessible_scopes": [ - "__main__", - "__main__", - "__main__.token_uri" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 65, - "end_line": 89, - "input_file": { - "filename": "src/renderers/RandomRenderer.cairo" - }, - "start_col": 20, - "start_line": 89 - } - }, - "914": { - "accessible_scopes": [ - "__main__", - "__main__", - "__main__.token_uri" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 79, - "end_line": 85, - "input_file": { - "filename": "src/renderers/RandomRenderer.cairo" - }, - "parent_location": [ - { - "end_col": 32, - "end_line": 124, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/math.cairo" - }, - "parent_location": [ - { - "end_col": 41, - "end_line": 90, - "input_file": { - "filename": "src/renderers/RandomRenderer.cairo" - }, - "start_col": 23, - "start_line": 90 - }, - "While trying to retrieve the implicit argument 'range_check_ptr' in:" - ], - "start_col": 17, - "start_line": 124 - }, - "While expanding the reference 'range_check_ptr' in:" - ], - "start_col": 64, - "start_line": 85 - } - }, - "915": { - "accessible_scopes": [ - "__main__", - "__main__", - "__main__.token_uri" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 16, - "end_line": 89, - "input_file": { - "filename": "src/renderers/RandomRenderer.cairo" - }, - "parent_location": [ - { - "end_col": 40, - "end_line": 90, - "input_file": { - "filename": "src/renderers/RandomRenderer.cairo" - }, - "start_col": 34, - "start_line": 90 - }, - "While expanding the reference 'rarity' in:" - ], - "start_col": 10, - "start_line": 89 - } - }, - "916": { - "accessible_scopes": [ - "__main__", - "__main__", - "__main__.token_uri" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 41, - "end_line": 90, - "input_file": { - "filename": "src/renderers/RandomRenderer.cairo" - }, - "start_col": 23, - "start_line": 90 - } - }, - "918": { - "accessible_scopes": [ - "__main__", - "__main__", - "__main__.token_uri" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 34, - "end_line": 85, - "input_file": { - "filename": "src/renderers/RandomRenderer.cairo" - }, - "parent_location": [ - { - "end_col": 33, - "end_line": 13, - "input_file": { - "filename": "autogen/starknet/storage_var/_uris/decl.cairo" - }, - "parent_location": [ - { - "end_col": 36, - "end_line": 91, - "input_file": { - "filename": "src/renderers/RandomRenderer.cairo" - }, - "start_col": 23, - "start_line": 91 - }, - "While trying to retrieve the implicit argument 'syscall_ptr' in:" - ], - "start_col": 15, - "start_line": 13 - }, - "While expanding the reference 'syscall_ptr' in:" - ], - "start_col": 16, - "start_line": 85 - } - }, - "919": { - "accessible_scopes": [ - "__main__", - "__main__", - "__main__.token_uri" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 47, - "end_line": 89, - "input_file": { - "filename": "src/renderers/RandomRenderer.cairo" - }, - "parent_location": [ - { - "end_col": 61, - "end_line": 13, - "input_file": { - "filename": "autogen/starknet/storage_var/_uris/decl.cairo" - }, - "parent_location": [ - { - "end_col": 36, - "end_line": 91, - "input_file": { - "filename": "src/renderers/RandomRenderer.cairo" - }, - "start_col": 23, - "start_line": 91 - }, - "While trying to retrieve the implicit argument 'pedersen_ptr' in:" - ], - "start_col": 35, - "start_line": 13 - }, - "While expanding the reference 'pedersen_ptr' in:" - ], - "start_col": 35, - "start_line": 89 - } - }, - "920": { - "accessible_scopes": [ - "__main__", - "__main__", - "__main__.token_uri" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 32, - "end_line": 124, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/math.cairo" - }, - "parent_location": [ - { - "end_col": 41, - "end_line": 90, - "input_file": { - "filename": "src/renderers/RandomRenderer.cairo" - }, - "parent_location": [ - { - "end_col": 78, - "end_line": 13, - "input_file": { - "filename": "autogen/starknet/storage_var/_uris/decl.cairo" - }, - "parent_location": [ - { - "end_col": 36, - "end_line": 91, - "input_file": { - "filename": "src/renderers/RandomRenderer.cairo" - }, - "start_col": 23, - "start_line": 91 - }, - "While trying to retrieve the implicit argument 'range_check_ptr' in:" - ], - "start_col": 63, - "start_line": 13 - }, - "While expanding the reference 'range_check_ptr' in:" - ], - "start_col": 23, - "start_line": 90 - }, - "While trying to update the implicit return value 'range_check_ptr' in:" - ], - "start_col": 17, - "start_line": 124 - } - }, - "921": { - "accessible_scopes": [ - "__main__", - "__main__", - "__main__.token_uri" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 35, - "end_line": 91, - "input_file": { - "filename": "src/renderers/RandomRenderer.cairo" - }, - "start_col": 34, - "start_line": 91 - } - }, - "923": { - "accessible_scopes": [ - "__main__", - "__main__", - "__main__.token_uri" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 36, - "end_line": 91, - "input_file": { - "filename": "src/renderers/RandomRenderer.cairo" - }, - "start_col": 23, - "start_line": 91 - } - }, - "925": { - "accessible_scopes": [ - "__main__", - "__main__", - "__main__.token_uri" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 78, - "end_line": 13, - "input_file": { - "filename": "autogen/starknet/storage_var/_uris/decl.cairo" - }, - "parent_location": [ - { - "end_col": 36, - "end_line": 91, - "input_file": { - "filename": "src/renderers/RandomRenderer.cairo" - }, - "parent_location": [ - { - "end_col": 38, - "end_line": 297, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/math.cairo" - }, - "parent_location": [ - { - "end_col": 57, - "end_line": 92, - "input_file": { - "filename": "src/renderers/RandomRenderer.cairo" - }, - "start_col": 22, - "start_line": 92 - }, - "While trying to retrieve the implicit argument 'range_check_ptr' in:" - ], - "start_col": 23, - "start_line": 297 - }, - "While expanding the reference 'range_check_ptr' in:" - ], - "start_col": 23, - "start_line": 91 - }, - "While trying to update the implicit return value 'range_check_ptr' in:" - ], - "start_col": 63, - "start_line": 13 - } - }, - "926": { - "accessible_scopes": [ - "__main__", - "__main__", - "__main__.token_uri" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 19, - "end_line": 90, - "input_file": { - "filename": "src/renderers/RandomRenderer.cairo" - }, - "parent_location": [ - { - "end_col": 45, - "end_line": 92, - "input_file": { - "filename": "src/renderers/RandomRenderer.cairo" - }, - "start_col": 39, - "start_line": 92 - }, - "While expanding the reference 'rarity' in:" - ], - "start_col": 13, - "start_line": 90 - } - }, - "927": { - "accessible_scopes": [ - "__main__", - "__main__", - "__main__.token_uri" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 19, - "end_line": 91, - "input_file": { - "filename": "src/renderers/RandomRenderer.cairo" - }, - "parent_location": [ - { - "end_col": 56, - "end_line": 92, - "input_file": { - "filename": "src/renderers/RandomRenderer.cairo" - }, - "start_col": 47, - "start_line": 92 - }, - "While expanding the reference 'uri_count' in:" - ], - "start_col": 10, - "start_line": 91 - } - }, - "928": { - "accessible_scopes": [ - "__main__", - "__main__", - "__main__.token_uri" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 57, - "end_line": 92, - "input_file": { - "filename": "src/renderers/RandomRenderer.cairo" - }, - "start_col": 22, - "start_line": 92 - } - }, - "930": { - "accessible_scopes": [ - "__main__", - "__main__", - "__main__.token_uri" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 33, - "end_line": 13, - "input_file": { - "filename": "autogen/starknet/storage_var/_uris/decl.cairo" - }, - "parent_location": [ - { - "end_col": 36, - "end_line": 91, - "input_file": { - "filename": "src/renderers/RandomRenderer.cairo" - }, - "parent_location": [ - { - "end_col": 33, - "end_line": 120, - "input_file": { - "filename": "src/renderers/RandomRenderer.cairo" - }, - "parent_location": [ - { - "end_col": 53, - "end_line": 93, - "input_file": { - "filename": "src/renderers/RandomRenderer.cairo" - }, - "start_col": 38, - "start_line": 93 - }, - "While trying to retrieve the implicit argument 'syscall_ptr' in:" - ], - "start_col": 15, - "start_line": 120 - }, - "While expanding the reference 'syscall_ptr' in:" - ], - "start_col": 23, - "start_line": 91 - }, - "While trying to update the implicit return value 'syscall_ptr' in:" - ], - "start_col": 15, - "start_line": 13 - } - }, - "931": { - "accessible_scopes": [ - "__main__", - "__main__", - "__main__.token_uri" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 61, - "end_line": 13, - "input_file": { - "filename": "autogen/starknet/storage_var/_uris/decl.cairo" - }, - "parent_location": [ - { - "end_col": 36, - "end_line": 91, - "input_file": { - "filename": "src/renderers/RandomRenderer.cairo" - }, - "parent_location": [ - { - "end_col": 61, - "end_line": 120, - "input_file": { - "filename": "src/renderers/RandomRenderer.cairo" - }, - "parent_location": [ - { - "end_col": 53, - "end_line": 93, - "input_file": { - "filename": "src/renderers/RandomRenderer.cairo" - }, - "start_col": 38, - "start_line": 93 - }, - "While trying to retrieve the implicit argument 'pedersen_ptr' in:" - ], - "start_col": 35, - "start_line": 120 - }, - "While expanding the reference 'pedersen_ptr' in:" - ], - "start_col": 23, - "start_line": 91 - }, - "While trying to update the implicit return value 'pedersen_ptr' in:" - ], - "start_col": 35, - "start_line": 13 - } - }, - "932": { - "accessible_scopes": [ - "__main__", - "__main__", - "__main__.token_uri" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 38, - "end_line": 297, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/math.cairo" - }, - "parent_location": [ - { - "end_col": 57, - "end_line": 92, - "input_file": { - "filename": "src/renderers/RandomRenderer.cairo" - }, - "parent_location": [ - { - "end_col": 78, - "end_line": 120, - "input_file": { - "filename": "src/renderers/RandomRenderer.cairo" - }, - "parent_location": [ - { - "end_col": 53, - "end_line": 93, - "input_file": { - "filename": "src/renderers/RandomRenderer.cairo" - }, - "start_col": 38, - "start_line": 93 - }, - "While trying to retrieve the implicit argument 'range_check_ptr' in:" - ], - "start_col": 63, - "start_line": 120 - }, - "While expanding the reference 'range_check_ptr' in:" - ], - "start_col": 22, - "start_line": 92 - }, - "While trying to update the implicit return value 'range_check_ptr' in:" - ], - "start_col": 23, - "start_line": 297 - } - }, - "933": { - "accessible_scopes": [ - "__main__", - "__main__", - "__main__.token_uri" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 18, - "end_line": 92, - "input_file": { - "filename": "src/renderers/RandomRenderer.cairo" - }, - "parent_location": [ - { - "end_col": 52, - "end_line": 93, - "input_file": { - "filename": "src/renderers/RandomRenderer.cairo" - }, - "start_col": 47, - "start_line": 93 - }, - "While expanding the reference 'index' in:" - ], - "start_col": 13, - "start_line": 92 - } - }, - "934": { - "accessible_scopes": [ - "__main__", - "__main__", - "__main__.token_uri" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 53, - "end_line": 93, - "input_file": { - "filename": "src/renderers/RandomRenderer.cairo" - }, - "start_col": 38, - "start_line": 93 - } - }, - "936": { - "accessible_scopes": [ - "__main__", - "__main__", - "__main__.token_uri" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 39, - "end_line": 94, - "input_file": { - "filename": "src/renderers/RandomRenderer.cairo" - }, - "start_col": 5, - "start_line": 94 - } - }, - "937": { - "accessible_scopes": [ - "__main__", - "__main__", - "__wrappers__", - "__wrappers__.token_uri_encode_return" - ], - "flow_tracking_data": null, - "hints": [ - { - "location": { - "end_col": 38, - "end_line": 3, - "input_file": { - "filename": "autogen/starknet/external/return/token_uri/f48cf5085ac07908983bbc364b0ba70d64fa7f2a9b8dc38e9d6fe3783bd626a8.cairo" - }, - "parent_location": [ - { - "end_col": 15, - "end_line": 85, - "input_file": { - "filename": "src/renderers/RandomRenderer.cairo" - }, - "start_col": 6, - "start_line": 85 - }, - "While handling return value of" - ], - "start_col": 5, - "start_line": 3 - }, - "n_prefix_newlines": 0 - } - ], - "inst": { - "end_col": 18, - "end_line": 4, - "input_file": { - "filename": "autogen/starknet/external/return/token_uri/f48cf5085ac07908983bbc364b0ba70d64fa7f2a9b8dc38e9d6fe3783bd626a8.cairo" - }, - "parent_location": [ - { - "end_col": 15, - "end_line": 85, - "input_file": { - "filename": "src/renderers/RandomRenderer.cairo" - }, - "start_col": 6, - "start_line": 85 - }, - "While handling return value of" - ], - "start_col": 5, - "start_line": 4 - } - }, - "939": { - "accessible_scopes": [ - "__main__", - "__main__", - "__wrappers__", - "__wrappers__.token_uri_encode_return" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 55, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/arg_processor/5462c9ea522f66a6a8b3de2f37f244c7074893fe5c8d0b413046098a1ccfc2ce.cairo" - }, - "parent_location": [ - { - "end_col": 26, - "end_line": 87, - "input_file": { - "filename": "src/renderers/RandomRenderer.cairo" - }, - "start_col": 7, - "start_line": 87 - }, - "While handling return value 'token_uri_len'" - ], - "start_col": 1, - "start_line": 1 - } - }, - "940": { - "accessible_scopes": [ - "__main__", - "__main__", - "__wrappers__", - "__wrappers__.token_uri_encode_return" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 52, - "end_line": 2, - "input_file": { - "filename": "autogen/starknet/arg_processor/8d1ba44ec0b1d27c24688348db19d49f555faaa5454ce90a4e7ba33d6a63afea.cairo" - }, - "parent_location": [ - { - "end_col": 44, - "end_line": 87, - "input_file": { - "filename": "src/renderers/RandomRenderer.cairo" - }, - "start_col": 28, - "start_line": 87 - }, - "While handling return value 'token_uri'" - ], - "start_col": 1, - "start_line": 2 - } - }, - "941": { - "accessible_scopes": [ - "__main__", - "__main__", - "__wrappers__", - "__wrappers__.token_uri_encode_return" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 45, - "end_line": 5, - "input_file": { - "filename": "autogen/starknet/arg_processor/8d1ba44ec0b1d27c24688348db19d49f555faaa5454ce90a4e7ba33d6a63afea.cairo" - }, - "parent_location": [ - { - "end_col": 44, - "end_line": 87, - "input_file": { - "filename": "src/renderers/RandomRenderer.cairo" - }, - "start_col": 28, - "start_line": 87 - }, - "While handling return value 'token_uri'" - ], - "start_col": 1, - "start_line": 5 - } - }, - "943": { - "accessible_scopes": [ - "__main__", - "__main__", - "__wrappers__", - "__wrappers__.token_uri_encode_return" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 48, - "end_line": 2, - "input_file": { - "filename": "autogen/starknet/arg_processor/5462c9ea522f66a6a8b3de2f37f244c7074893fe5c8d0b413046098a1ccfc2ce.cairo" - }, - "parent_location": [ - { - "end_col": 26, - "end_line": 87, - "input_file": { - "filename": "src/renderers/RandomRenderer.cairo" - }, - "parent_location": [ - { - "end_col": 53, - "end_line": 10, - "input_file": { - "filename": "autogen/starknet/arg_processor/8d1ba44ec0b1d27c24688348db19d49f555faaa5454ce90a4e7ba33d6a63afea.cairo" - }, - "parent_location": [ - { - "end_col": 44, - "end_line": 87, - "input_file": { - "filename": "src/renderers/RandomRenderer.cairo" - }, - "start_col": 28, - "start_line": 87 - }, - "While handling return value 'token_uri'" - ], - "start_col": 35, - "start_line": 10 - }, - "While expanding the reference '__return_value_ptr' in:" - ], - "start_col": 7, - "start_line": 87 - }, - "While handling return value 'token_uri_len'" - ], - "start_col": 26, - "start_line": 2 - } - }, - "945": { - "accessible_scopes": [ - "__main__", - "__main__", - "__wrappers__", - "__wrappers__.token_uri_encode_return" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 84, - "end_line": 10, - "input_file": { - "filename": "autogen/starknet/arg_processor/8d1ba44ec0b1d27c24688348db19d49f555faaa5454ce90a4e7ba33d6a63afea.cairo" - }, - "parent_location": [ - { - "end_col": 44, - "end_line": 87, - "input_file": { - "filename": "src/renderers/RandomRenderer.cairo" - }, - "start_col": 28, - "start_line": 87 - }, - "While handling return value 'token_uri'" - ], - "start_col": 1, - "start_line": 10 - } - }, - "946": { - "accessible_scopes": [ - "__main__", - "__main__", - "__wrappers__", - "__wrappers__.token_uri_encode_return" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 48, - "end_line": 2, - "input_file": { - "filename": "autogen/starknet/arg_processor/5462c9ea522f66a6a8b3de2f37f244c7074893fe5c8d0b413046098a1ccfc2ce.cairo" - }, - "parent_location": [ - { - "end_col": 26, - "end_line": 87, - "input_file": { - "filename": "src/renderers/RandomRenderer.cairo" - }, - "parent_location": [ - { - "end_col": 49, - "end_line": 7, - "input_file": { - "filename": "autogen/starknet/arg_processor/8d1ba44ec0b1d27c24688348db19d49f555faaa5454ce90a4e7ba33d6a63afea.cairo" - }, - "parent_location": [ - { - "end_col": 44, - "end_line": 87, - "input_file": { - "filename": "src/renderers/RandomRenderer.cairo" - }, - "parent_location": [ - { - "end_col": 32, - "end_line": 12, - "input_file": { - "filename": "autogen/starknet/arg_processor/8d1ba44ec0b1d27c24688348db19d49f555faaa5454ce90a4e7ba33d6a63afea.cairo" - }, - "parent_location": [ - { - "end_col": 44, - "end_line": 87, - "input_file": { - "filename": "src/renderers/RandomRenderer.cairo" - }, - "start_col": 28, - "start_line": 87 - }, - "While handling return value 'token_uri'" - ], - "start_col": 9, - "start_line": 12 - }, - "While expanding the reference '__return_value_ptr_copy' in:" - ], - "start_col": 28, - "start_line": 87 - }, - "While handling return value 'token_uri'" - ], - "start_col": 31, - "start_line": 7 - }, - "While expanding the reference '__return_value_ptr' in:" - ], - "start_col": 7, - "start_line": 87 - }, - "While handling return value 'token_uri_len'" - ], - "start_col": 26, - "start_line": 2 - } - }, - "948": { - "accessible_scopes": [ - "__main__", - "__main__", - "__wrappers__", - "__wrappers__.token_uri_encode_return" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 28, - "end_line": 13, - "input_file": { - "filename": "autogen/starknet/arg_processor/8d1ba44ec0b1d27c24688348db19d49f555faaa5454ce90a4e7ba33d6a63afea.cairo" - }, - "parent_location": [ - { - "end_col": 44, - "end_line": 87, - "input_file": { - "filename": "src/renderers/RandomRenderer.cairo" - }, - "start_col": 28, - "start_line": 87 - }, - "While handling return value 'token_uri'" - ], - "start_col": 9, - "start_line": 13 - } - }, - "949": { - "accessible_scopes": [ - "__main__", - "__main__", - "__wrappers__", - "__wrappers__.token_uri_encode_return" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 32, - "end_line": 14, - "input_file": { - "filename": "autogen/starknet/arg_processor/8d1ba44ec0b1d27c24688348db19d49f555faaa5454ce90a4e7ba33d6a63afea.cairo" - }, - "parent_location": [ - { - "end_col": 44, - "end_line": 87, - "input_file": { - "filename": "src/renderers/RandomRenderer.cairo" - }, - "start_col": 28, - "start_line": 87 - }, - "While handling return value 'token_uri'" - ], - "start_col": 9, - "start_line": 14 - } - }, - "950": { - "accessible_scopes": [ - "__main__", - "__main__", - "__wrappers__", - "__wrappers__.token_uri_encode_return" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 37, - "end_line": 14, - "input_file": { - "filename": "autogen/starknet/arg_processor/8d1ba44ec0b1d27c24688348db19d49f555faaa5454ce90a4e7ba33d6a63afea.cairo" - }, - "parent_location": [ - { - "end_col": 44, - "end_line": 87, - "input_file": { - "filename": "src/renderers/RandomRenderer.cairo" - }, - "start_col": 28, - "start_line": 87 - }, - "While handling return value 'token_uri'" - ], - "start_col": 1, - "start_line": 11 - } - }, - "952": { - "accessible_scopes": [ - "__main__", - "__main__", - "__wrappers__", - "__wrappers__.token_uri_encode_return" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 22, - "end_line": 5, - "input_file": { - "filename": "autogen/starknet/arg_processor/8d1ba44ec0b1d27c24688348db19d49f555faaa5454ce90a4e7ba33d6a63afea.cairo" - }, - "parent_location": [ - { - "end_col": 44, - "end_line": 87, - "input_file": { - "filename": "src/renderers/RandomRenderer.cairo" - }, - "parent_location": [ - { - "end_col": 40, - "end_line": 10, - "input_file": { - "filename": "autogen/starknet/external/return/token_uri/f48cf5085ac07908983bbc364b0ba70d64fa7f2a9b8dc38e9d6fe3783bd626a8.cairo" - }, - "parent_location": [ - { - "end_col": 15, - "end_line": 85, - "input_file": { - "filename": "src/renderers/RandomRenderer.cairo" - }, - "start_col": 6, - "start_line": 85 - }, - "While handling return value of" - ], - "start_col": 25, - "start_line": 10 - }, - "While expanding the reference 'range_check_ptr' in:" - ], - "start_col": 28, - "start_line": 87 - }, - "While handling return value 'token_uri'" - ], - "start_col": 7, - "start_line": 5 - } - }, - "953": { - "accessible_scopes": [ - "__main__", - "__main__", - "__wrappers__", - "__wrappers__.token_uri_encode_return" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 63, - "end_line": 11, - "input_file": { - "filename": "autogen/starknet/external/return/token_uri/f48cf5085ac07908983bbc364b0ba70d64fa7f2a9b8dc38e9d6fe3783bd626a8.cairo" - }, - "parent_location": [ - { - "end_col": 15, - "end_line": 85, - "input_file": { - "filename": "src/renderers/RandomRenderer.cairo" - }, - "start_col": 6, - "start_line": 85 - }, - "While handling return value of" - ], - "start_col": 18, - "start_line": 11 - } - }, - "954": { - "accessible_scopes": [ - "__main__", - "__main__", - "__wrappers__", - "__wrappers__.token_uri_encode_return" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 35, - "end_line": 5, - "input_file": { - "filename": "autogen/starknet/external/return/token_uri/f48cf5085ac07908983bbc364b0ba70d64fa7f2a9b8dc38e9d6fe3783bd626a8.cairo" - }, - "parent_location": [ - { - "end_col": 15, - "end_line": 85, - "input_file": { - "filename": "src/renderers/RandomRenderer.cairo" - }, - "parent_location": [ - { - "end_col": 38, - "end_line": 12, - "input_file": { - "filename": "autogen/starknet/external/return/token_uri/f48cf5085ac07908983bbc364b0ba70d64fa7f2a9b8dc38e9d6fe3783bd626a8.cairo" - }, - "parent_location": [ - { - "end_col": 15, - "end_line": 85, - "input_file": { - "filename": "src/renderers/RandomRenderer.cairo" - }, - "start_col": 6, - "start_line": 85 - }, - "While handling return value of" - ], - "start_col": 14, - "start_line": 12 - }, - "While expanding the reference '__return_value_ptr_start' in:" - ], - "start_col": 6, - "start_line": 85 - }, - "While handling return value of" - ], - "start_col": 11, - "start_line": 5 - } - }, - "955": { - "accessible_scopes": [ - "__main__", - "__main__", - "__wrappers__", - "__wrappers__.token_uri_encode_return" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 40, - "end_line": 12, - "input_file": { - "filename": "autogen/starknet/external/return/token_uri/f48cf5085ac07908983bbc364b0ba70d64fa7f2a9b8dc38e9d6fe3783bd626a8.cairo" - }, - "parent_location": [ - { - "end_col": 15, - "end_line": 85, - "input_file": { - "filename": "src/renderers/RandomRenderer.cairo" - }, - "start_col": 6, - "start_line": 85 - }, - "While handling return value of" - ], - "start_col": 5, - "start_line": 9 - } - }, - "956": { - "accessible_scopes": [ - "__main__", - "__main__", - "__wrappers__", - "__wrappers__.token_uri" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 18, - "end_line": 2, - "input_file": { - "filename": "autogen/starknet/external/token_uri/0e46c67014b1932c61618de0923cda1cd086d4d13ccfc96398cf52540cb66251.cairo" - }, - "parent_location": [ - { - "end_col": 15, - "end_line": 85, - "input_file": { - "filename": "src/renderers/RandomRenderer.cairo" - }, - "start_col": 6, - "start_line": 85 - }, - "While constructing the external wrapper for:" - ], - "start_col": 5, - "start_line": 2 - } - }, - "958": { - "accessible_scopes": [ - "__main__", - "__main__", - "__wrappers__", - "__wrappers__.token_uri" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 40, - "end_line": 2, - "input_file": { - "filename": "autogen/starknet/arg_processor/e1eb73cd870ec466294c3700e77817cf3c039ac1384882ddb76383eb87a5da90.cairo" - }, - "parent_location": [ - { - "end_col": 44, - "end_line": 86, - "input_file": { - "filename": "src/renderers/RandomRenderer.cairo" - }, - "parent_location": [ - { - "end_col": 45, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/arg_processor/c31620b02d4d706f0542c989b2aadc01b0981d1f6a5933a8fe4937ace3d70d92.cairo" - }, - "parent_location": [ - { - "end_col": 15, - "end_line": 85, - "input_file": { - "filename": "src/renderers/RandomRenderer.cairo" - }, - "parent_location": [ - { - "end_col": 57, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/arg_processor/01cba52f8515996bb9d7070bde81ff39281d096d7024a558efcba6e1fd2402cf.cairo" - }, - "parent_location": [ - { - "end_col": 15, - "end_line": 85, - "input_file": { - "filename": "src/renderers/RandomRenderer.cairo" - }, - "start_col": 6, - "start_line": 85 - }, - "While handling calldata of" - ], - "start_col": 35, - "start_line": 1 - }, - "While expanding the reference '__calldata_actual_size' in:" - ], - "start_col": 6, - "start_line": 85 - }, - "While handling calldata of" - ], - "start_col": 31, - "start_line": 1 - }, - "While expanding the reference '__calldata_ptr' in:" - ], - "start_col": 34, - "start_line": 86 - }, - "While handling calldata argument 'name'" - ], - "start_col": 22, - "start_line": 2 - } - }, - "960": { - "accessible_scopes": [ - "__main__", - "__main__", - "__wrappers__", - "__wrappers__.token_uri" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 58, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/arg_processor/01cba52f8515996bb9d7070bde81ff39281d096d7024a558efcba6e1fd2402cf.cairo" - }, - "parent_location": [ - { - "end_col": 15, - "end_line": 85, - "input_file": { - "filename": "src/renderers/RandomRenderer.cairo" - }, - "start_col": 6, - "start_line": 85 - }, - "While handling calldata of" - ], - "start_col": 1, - "start_line": 1 - } - }, - "961": { - "accessible_scopes": [ - "__main__", - "__main__", - "__wrappers__", - "__wrappers__.token_uri" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 64, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/external/token_uri/b2c52ca2d2a8fc8791a983086d8716c5eacd0c3d62934914d2286f84b98ff4cb.cairo" - }, - "parent_location": [ - { - "end_col": 34, - "end_line": 85, - "input_file": { - "filename": "src/renderers/RandomRenderer.cairo" - }, - "parent_location": [ - { - "end_col": 55, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/external/token_uri/9d05eaea81d1f118198de7fbeb87299791e5ee5607b9eeaa2f7214ab7ab8249b.cairo" - }, - "parent_location": [ - { - "end_col": 15, - "end_line": 85, - "input_file": { - "filename": "src/renderers/RandomRenderer.cairo" - }, - "start_col": 6, - "start_line": 85 - }, - "While constructing the external wrapper for:" - ], - "start_col": 44, - "start_line": 1 - }, - "While expanding the reference 'syscall_ptr' in:" - ], - "start_col": 16, - "start_line": 85 - }, - "While constructing the external wrapper for:" - ], - "start_col": 19, - "start_line": 1 - } - }, - "962": { - "accessible_scopes": [ - "__main__", - "__main__", - "__wrappers__", - "__wrappers__.token_uri" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 110, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/external/token_uri/9684a85e93c782014ca14293edea4eb2502039a5a7b6538ecd39c56faaf12529.cairo" - }, - "parent_location": [ - { - "end_col": 62, - "end_line": 85, - "input_file": { - "filename": "src/renderers/RandomRenderer.cairo" - }, - "parent_location": [ - { - "end_col": 82, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/external/token_uri/9d05eaea81d1f118198de7fbeb87299791e5ee5607b9eeaa2f7214ab7ab8249b.cairo" - }, - "parent_location": [ - { - "end_col": 15, - "end_line": 85, - "input_file": { - "filename": "src/renderers/RandomRenderer.cairo" - }, - "start_col": 6, - "start_line": 85 - }, - "While constructing the external wrapper for:" - ], - "start_col": 70, - "start_line": 1 - }, - "While expanding the reference 'pedersen_ptr' in:" - ], - "start_col": 36, - "start_line": 85 - }, - "While constructing the external wrapper for:" - ], - "start_col": 20, - "start_line": 1 - } - }, - "963": { - "accessible_scopes": [ - "__main__", - "__main__", - "__wrappers__", - "__wrappers__.token_uri" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 67, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/external/token_uri/741ea357d6336b0bed7bf0472425acd0311d543883b803388880e60a232040c7.cairo" - }, - "parent_location": [ - { - "end_col": 79, - "end_line": 85, - "input_file": { - "filename": "src/renderers/RandomRenderer.cairo" - }, - "parent_location": [ - { - "end_col": 115, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/external/token_uri/9d05eaea81d1f118198de7fbeb87299791e5ee5607b9eeaa2f7214ab7ab8249b.cairo" - }, - "parent_location": [ - { - "end_col": 15, - "end_line": 85, - "input_file": { - "filename": "src/renderers/RandomRenderer.cairo" - }, - "start_col": 6, - "start_line": 85 - }, - "While constructing the external wrapper for:" - ], - "start_col": 100, - "start_line": 1 - }, - "While expanding the reference 'range_check_ptr' in:" - ], - "start_col": 64, - "start_line": 85 - }, - "While constructing the external wrapper for:" - ], - "start_col": 23, - "start_line": 1 - } - }, - "964": { - "accessible_scopes": [ - "__main__", - "__main__", - "__wrappers__", - "__wrappers__.token_uri" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 47, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/arg_processor/92bae94c430cca894eac466fa5be50d176f1f62e79244db218577fbac5e84220.cairo" - }, - "parent_location": [ - { - "end_col": 19, - "end_line": 86, - "input_file": { - "filename": "src/renderers/RandomRenderer.cairo" - }, - "parent_location": [ - { - "end_col": 149, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/external/token_uri/9d05eaea81d1f118198de7fbeb87299791e5ee5607b9eeaa2f7214ab7ab8249b.cairo" - }, - "parent_location": [ - { - "end_col": 15, - "end_line": 85, - "input_file": { - "filename": "src/renderers/RandomRenderer.cairo" - }, - "start_col": 6, - "start_line": 85 - }, - "While constructing the external wrapper for:" - ], - "start_col": 126, - "start_line": 1 - }, - "While expanding the reference '__calldata_arg_token_id' in:" - ], - "start_col": 5, - "start_line": 86 - }, - "While handling calldata argument 'token_id'" - ], - "start_col": 31, - "start_line": 1 - } - }, - "965": { - "accessible_scopes": [ - "__main__", - "__main__", - "__wrappers__", - "__wrappers__.token_uri" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 44, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/arg_processor/3e93b8906c329e7a5c33e020ce7a5a9c542c4444955be98eec5fcbef545a8662.cairo" - }, - "parent_location": [ - { - "end_col": 32, - "end_line": 86, - "input_file": { - "filename": "src/renderers/RandomRenderer.cairo" - }, - "parent_location": [ - { - "end_col": 177, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/external/token_uri/9d05eaea81d1f118198de7fbeb87299791e5ee5607b9eeaa2f7214ab7ab8249b.cairo" - }, - "parent_location": [ - { - "end_col": 15, - "end_line": 85, - "input_file": { - "filename": "src/renderers/RandomRenderer.cairo" - }, - "start_col": 6, - "start_line": 85 - }, - "While constructing the external wrapper for:" - ], - "start_col": 157, - "start_line": 1 - }, - "While expanding the reference '__calldata_arg_value' in:" - ], - "start_col": 21, - "start_line": 86 - }, - "While handling calldata argument 'value'" - ], - "start_col": 28, - "start_line": 1 - } - }, - "966": { - "accessible_scopes": [ - "__main__", - "__main__", - "__wrappers__", - "__wrappers__.token_uri" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 43, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/arg_processor/e1eb73cd870ec466294c3700e77817cf3c039ac1384882ddb76383eb87a5da90.cairo" - }, - "parent_location": [ - { - "end_col": 44, - "end_line": 86, - "input_file": { - "filename": "src/renderers/RandomRenderer.cairo" - }, - "parent_location": [ - { - "end_col": 203, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/external/token_uri/9d05eaea81d1f118198de7fbeb87299791e5ee5607b9eeaa2f7214ab7ab8249b.cairo" - }, - "parent_location": [ - { - "end_col": 15, - "end_line": 85, - "input_file": { - "filename": "src/renderers/RandomRenderer.cairo" - }, - "start_col": 6, - "start_line": 85 - }, - "While constructing the external wrapper for:" - ], - "start_col": 184, - "start_line": 1 - }, - "While expanding the reference '__calldata_arg_name' in:" - ], - "start_col": 34, - "start_line": 86 - }, - "While handling calldata argument 'name'" - ], - "start_col": 27, - "start_line": 1 - } - }, - "967": { - "accessible_scopes": [ - "__main__", - "__main__", - "__wrappers__", - "__wrappers__.token_uri" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 15, - "end_line": 85, - "input_file": { - "filename": "src/renderers/RandomRenderer.cairo" - }, - "start_col": 6, - "start_line": 85 - } - }, - "969": { - "accessible_scopes": [ - "__main__", - "__main__", - "__wrappers__", - "__wrappers__.token_uri" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 55, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/external/token_uri/9d05eaea81d1f118198de7fbeb87299791e5ee5607b9eeaa2f7214ab7ab8249b.cairo" - }, - "parent_location": [ - { - "end_col": 15, - "end_line": 85, - "input_file": { - "filename": "src/renderers/RandomRenderer.cairo" - }, - "parent_location": [ - { - "end_col": 55, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/external/token_uri/9d05eaea81d1f118198de7fbeb87299791e5ee5607b9eeaa2f7214ab7ab8249b.cairo" - }, - "parent_location": [ - { - "end_col": 15, - "end_line": 85, - "input_file": { - "filename": "src/renderers/RandomRenderer.cairo" - }, - "start_col": 6, - "start_line": 85 - }, - "While constructing the external wrapper for:" - ], - "start_col": 44, - "start_line": 1 - }, - "While auto generating local variable for 'syscall_ptr'." - ], - "start_col": 6, - "start_line": 85 - }, - "While constructing the external wrapper for:" - ], - "start_col": 44, - "start_line": 1 - } - }, - "970": { - "accessible_scopes": [ - "__main__", - "__main__", - "__wrappers__", - "__wrappers__.token_uri" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 82, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/external/token_uri/9d05eaea81d1f118198de7fbeb87299791e5ee5607b9eeaa2f7214ab7ab8249b.cairo" - }, - "parent_location": [ - { - "end_col": 15, - "end_line": 85, - "input_file": { - "filename": "src/renderers/RandomRenderer.cairo" - }, - "parent_location": [ - { - "end_col": 82, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/external/token_uri/9d05eaea81d1f118198de7fbeb87299791e5ee5607b9eeaa2f7214ab7ab8249b.cairo" - }, - "parent_location": [ - { - "end_col": 15, - "end_line": 85, - "input_file": { - "filename": "src/renderers/RandomRenderer.cairo" - }, - "start_col": 6, - "start_line": 85 - }, - "While constructing the external wrapper for:" - ], - "start_col": 70, - "start_line": 1 - }, - "While auto generating local variable for 'pedersen_ptr'." - ], - "start_col": 6, - "start_line": 85 - }, - "While constructing the external wrapper for:" - ], - "start_col": 70, - "start_line": 1 - } - }, - "971": { - "accessible_scopes": [ - "__main__", - "__main__", - "__wrappers__", - "__wrappers__.token_uri" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 115, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/external/token_uri/9d05eaea81d1f118198de7fbeb87299791e5ee5607b9eeaa2f7214ab7ab8249b.cairo" - }, - "parent_location": [ - { - "end_col": 15, - "end_line": 85, - "input_file": { - "filename": "src/renderers/RandomRenderer.cairo" - }, - "parent_location": [ - { - "end_col": 98, - "end_line": 2, - "input_file": { - "filename": "autogen/starknet/external/token_uri/9d05eaea81d1f118198de7fbeb87299791e5ee5607b9eeaa2f7214ab7ab8249b.cairo" - }, - "parent_location": [ - { - "end_col": 15, - "end_line": 85, - "input_file": { - "filename": "src/renderers/RandomRenderer.cairo" - }, - "start_col": 6, - "start_line": 85 - }, - "While constructing the external wrapper for:" - ], - "start_col": 83, - "start_line": 2 - }, - "While expanding the reference 'range_check_ptr' in:" - ], - "start_col": 6, - "start_line": 85 - }, - "While constructing the external wrapper for:" - ], - "start_col": 100, - "start_line": 1 - } - }, - "972": { - "accessible_scopes": [ - "__main__", - "__main__", - "__wrappers__", - "__wrappers__.token_uri" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 99, - "end_line": 2, - "input_file": { - "filename": "autogen/starknet/external/token_uri/9d05eaea81d1f118198de7fbeb87299791e5ee5607b9eeaa2f7214ab7ab8249b.cairo" - }, - "parent_location": [ - { - "end_col": 15, - "end_line": 85, - "input_file": { - "filename": "src/renderers/RandomRenderer.cairo" - }, - "start_col": 6, - "start_line": 85 - }, - "While constructing the external wrapper for:" - ], - "start_col": 48, - "start_line": 2 - } - }, - "974": { - "accessible_scopes": [ - "__main__", - "__main__", - "__wrappers__", - "__wrappers__.token_uri" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 55, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/external/token_uri/9d05eaea81d1f118198de7fbeb87299791e5ee5607b9eeaa2f7214ab7ab8249b.cairo" - }, - "parent_location": [ - { - "end_col": 15, - "end_line": 85, - "input_file": { - "filename": "src/renderers/RandomRenderer.cairo" - }, - "parent_location": [ - { - "end_col": 55, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/external/token_uri/9d05eaea81d1f118198de7fbeb87299791e5ee5607b9eeaa2f7214ab7ab8249b.cairo" - }, - "parent_location": [ - { - "end_col": 15, - "end_line": 85, - "input_file": { - "filename": "src/renderers/RandomRenderer.cairo" - }, - "parent_location": [ - { - "end_col": 20, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/external/token_uri/da17921a4e81c09e730800bbf23bfdbe5e9e6bfaedc59d80fbf62087fa43c27d.cairo" - }, - "parent_location": [ - { - "end_col": 15, - "end_line": 85, - "input_file": { - "filename": "src/renderers/RandomRenderer.cairo" - }, - "start_col": 6, - "start_line": 85 - }, - "While constructing the external wrapper for:" - ], - "start_col": 9, - "start_line": 1 - }, - "While expanding the reference 'syscall_ptr' in:" - ], - "start_col": 6, - "start_line": 85 - }, - "While constructing the external wrapper for:" - ], - "start_col": 44, - "start_line": 1 - }, - "While auto generating local variable for 'syscall_ptr'." - ], - "start_col": 6, - "start_line": 85 - }, - "While constructing the external wrapper for:" - ], - "start_col": 44, - "start_line": 1 - } - }, - "975": { - "accessible_scopes": [ - "__main__", - "__main__", - "__wrappers__", - "__wrappers__.token_uri" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 82, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/external/token_uri/9d05eaea81d1f118198de7fbeb87299791e5ee5607b9eeaa2f7214ab7ab8249b.cairo" - }, - "parent_location": [ - { - "end_col": 15, - "end_line": 85, - "input_file": { - "filename": "src/renderers/RandomRenderer.cairo" - }, - "parent_location": [ - { - "end_col": 82, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/external/token_uri/9d05eaea81d1f118198de7fbeb87299791e5ee5607b9eeaa2f7214ab7ab8249b.cairo" - }, - "parent_location": [ - { - "end_col": 15, - "end_line": 85, - "input_file": { - "filename": "src/renderers/RandomRenderer.cairo" - }, - "parent_location": [ - { - "end_col": 33, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/external/token_uri/da17921a4e81c09e730800bbf23bfdbe5e9e6bfaedc59d80fbf62087fa43c27d.cairo" - }, - "parent_location": [ - { - "end_col": 15, - "end_line": 85, - "input_file": { - "filename": "src/renderers/RandomRenderer.cairo" - }, - "start_col": 6, - "start_line": 85 - }, - "While constructing the external wrapper for:" - ], - "start_col": 21, - "start_line": 1 - }, - "While expanding the reference 'pedersen_ptr' in:" - ], - "start_col": 6, - "start_line": 85 - }, - "While constructing the external wrapper for:" - ], - "start_col": 70, - "start_line": 1 - }, - "While auto generating local variable for 'pedersen_ptr'." - ], - "start_col": 6, - "start_line": 85 - }, - "While constructing the external wrapper for:" - ], - "start_col": 70, - "start_line": 1 - } - }, - "976": { - "accessible_scopes": [ - "__main__", - "__main__", - "__wrappers__", - "__wrappers__.token_uri" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 21, - "end_line": 2, - "input_file": { - "filename": "autogen/starknet/external/token_uri/9d05eaea81d1f118198de7fbeb87299791e5ee5607b9eeaa2f7214ab7ab8249b.cairo" - }, - "parent_location": [ - { - "end_col": 15, - "end_line": 85, - "input_file": { - "filename": "src/renderers/RandomRenderer.cairo" - }, - "parent_location": [ - { - "end_col": 49, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/external/token_uri/da17921a4e81c09e730800bbf23bfdbe5e9e6bfaedc59d80fbf62087fa43c27d.cairo" - }, - "parent_location": [ - { - "end_col": 15, - "end_line": 85, - "input_file": { - "filename": "src/renderers/RandomRenderer.cairo" - }, - "start_col": 6, - "start_line": 85 - }, - "While constructing the external wrapper for:" - ], - "start_col": 34, - "start_line": 1 - }, - "While expanding the reference 'range_check_ptr' in:" - ], - "start_col": 6, - "start_line": 85 - }, - "While constructing the external wrapper for:" - ], - "start_col": 6, - "start_line": 2 - } - }, - "977": { - "accessible_scopes": [ - "__main__", - "__main__", - "__wrappers__", - "__wrappers__.token_uri" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 35, - "end_line": 2, - "input_file": { - "filename": "autogen/starknet/external/token_uri/9d05eaea81d1f118198de7fbeb87299791e5ee5607b9eeaa2f7214ab7ab8249b.cairo" - }, - "parent_location": [ - { - "end_col": 15, - "end_line": 85, - "input_file": { - "filename": "src/renderers/RandomRenderer.cairo" - }, - "parent_location": [ - { - "end_col": 62, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/external/token_uri/da17921a4e81c09e730800bbf23bfdbe5e9e6bfaedc59d80fbf62087fa43c27d.cairo" - }, - "parent_location": [ - { - "end_col": 15, - "end_line": 85, - "input_file": { - "filename": "src/renderers/RandomRenderer.cairo" - }, - "start_col": 6, - "start_line": 85 - }, - "While constructing the external wrapper for:" - ], - "start_col": 50, - "start_line": 1 - }, - "While expanding the reference 'retdata_size' in:" - ], - "start_col": 6, - "start_line": 85 - }, - "While constructing the external wrapper for:" - ], - "start_col": 23, - "start_line": 2 - } - }, - "978": { - "accessible_scopes": [ - "__main__", - "__main__", - "__wrappers__", - "__wrappers__.token_uri" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 44, - "end_line": 2, - "input_file": { - "filename": "autogen/starknet/external/token_uri/9d05eaea81d1f118198de7fbeb87299791e5ee5607b9eeaa2f7214ab7ab8249b.cairo" - }, - "parent_location": [ - { - "end_col": 15, - "end_line": 85, - "input_file": { - "filename": "src/renderers/RandomRenderer.cairo" - }, - "parent_location": [ - { - "end_col": 70, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/external/token_uri/da17921a4e81c09e730800bbf23bfdbe5e9e6bfaedc59d80fbf62087fa43c27d.cairo" - }, - "parent_location": [ - { - "end_col": 15, - "end_line": 85, - "input_file": { - "filename": "src/renderers/RandomRenderer.cairo" - }, - "start_col": 6, - "start_line": 85 - }, - "While constructing the external wrapper for:" - ], - "start_col": 63, - "start_line": 1 - }, - "While expanding the reference 'retdata' in:" - ], - "start_col": 6, - "start_line": 85 - }, - "While constructing the external wrapper for:" - ], - "start_col": 37, - "start_line": 2 - } - }, - "979": { - "accessible_scopes": [ - "__main__", - "__main__", - "__wrappers__", - "__wrappers__.token_uri" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 72, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/external/token_uri/da17921a4e81c09e730800bbf23bfdbe5e9e6bfaedc59d80fbf62087fa43c27d.cairo" - }, - "parent_location": [ - { - "end_col": 15, - "end_line": 85, - "input_file": { - "filename": "src/renderers/RandomRenderer.cairo" - }, - "start_col": 6, - "start_line": 85 - }, - "While constructing the external wrapper for:" - ], - "start_col": 1, - "start_line": 1 - } - }, - "980": { - "accessible_scopes": [ - "__main__", - "__main__._uris_write" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 26, - "end_line": 100, - "input_file": { - "filename": "src/renderers/RandomRenderer.cairo" - }, - "start_col": 9, - "start_line": 100 - } - }, - "981": { - "accessible_scopes": [ - "__main__", - "__main__._uris_write" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 7, - "end_line": 100, - "input_file": { - "filename": "src/renderers/RandomRenderer.cairo" - }, - "start_col": 5, - "start_line": 100 - } - }, - "983": { - "accessible_scopes": [ - "__main__", - "__main__._uris_write" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 36, - "end_line": 97, - "input_file": { - "filename": "src/renderers/RandomRenderer.cairo" - }, - "parent_location": [ - { - "end_col": 36, - "end_line": 97, - "input_file": { - "filename": "src/renderers/RandomRenderer.cairo" - }, - "parent_location": [ - { - "end_col": 19, - "end_line": 101, - "input_file": { - "filename": "src/renderers/RandomRenderer.cairo" - }, - "start_col": 9, - "start_line": 101 - }, - "While trying to retrieve the implicit argument 'syscall_ptr' in:" - ], - "start_col": 18, - "start_line": 97 - }, - "While expanding the reference 'syscall_ptr' in:" - ], - "start_col": 18, - "start_line": 97 - } - }, - "984": { - "accessible_scopes": [ - "__main__", - "__main__._uris_write" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 64, - "end_line": 97, - "input_file": { - "filename": "src/renderers/RandomRenderer.cairo" - }, - "parent_location": [ - { - "end_col": 64, - "end_line": 97, - "input_file": { - "filename": "src/renderers/RandomRenderer.cairo" - }, - "parent_location": [ - { - "end_col": 19, - "end_line": 101, - "input_file": { - "filename": "src/renderers/RandomRenderer.cairo" - }, - "start_col": 9, - "start_line": 101 - }, - "While trying to retrieve the implicit argument 'pedersen_ptr' in:" - ], - "start_col": 38, - "start_line": 97 - }, - "While expanding the reference 'pedersen_ptr' in:" - ], - "start_col": 38, - "start_line": 97 - } - }, - "985": { - "accessible_scopes": [ - "__main__", - "__main__._uris_write" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 81, - "end_line": 97, - "input_file": { - "filename": "src/renderers/RandomRenderer.cairo" - }, - "parent_location": [ - { - "end_col": 81, - "end_line": 97, - "input_file": { - "filename": "src/renderers/RandomRenderer.cairo" - }, - "parent_location": [ - { - "end_col": 19, - "end_line": 101, - "input_file": { - "filename": "src/renderers/RandomRenderer.cairo" - }, - "start_col": 9, - "start_line": 101 - }, - "While trying to retrieve the implicit argument 'range_check_ptr' in:" - ], - "start_col": 66, - "start_line": 97 - }, - "While expanding the reference 'range_check_ptr' in:" - ], - "start_col": 66, - "start_line": 97 - } - }, - "986": { - "accessible_scopes": [ - "__main__", - "__main__._uris_write" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 19, - "end_line": 101, - "input_file": { - "filename": "src/renderers/RandomRenderer.cairo" - }, - "start_col": 9, - "start_line": 101 - } - }, - "987": { - "accessible_scopes": [ - "__main__", - "__main__._uris_write" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 30, - "end_line": 103, - "input_file": { - "filename": "src/renderers/RandomRenderer.cairo" - }, - "parent_location": [ - { - "end_col": 31, - "end_line": 104, - "input_file": { - "filename": "src/renderers/RandomRenderer.cairo" - }, - "start_col": 24, - "start_line": 104 - }, - "While expanding the reference 'current' in:" - ], - "start_col": 19, - "start_line": 103 - } - }, - "988": { - "accessible_scopes": [ - "__main__", - "__main__._uris_write" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 36, - "end_line": 97, - "input_file": { - "filename": "src/renderers/RandomRenderer.cairo" - }, - "parent_location": [ - { - "end_col": 34, - "end_line": 21, - "input_file": { - "filename": "autogen/starknet/storage_var/_uris/decl.cairo" - }, - "parent_location": [ - { - "end_col": 32, - "end_line": 104, - "input_file": { - "filename": "src/renderers/RandomRenderer.cairo" - }, - "start_col": 5, - "start_line": 104 - }, - "While trying to retrieve the implicit argument 'syscall_ptr' in:" - ], - "start_col": 16, - "start_line": 21 - }, - "While expanding the reference 'syscall_ptr' in:" - ], - "start_col": 18, - "start_line": 97 - } - }, - "989": { - "accessible_scopes": [ - "__main__", - "__main__._uris_write" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 64, - "end_line": 97, - "input_file": { - "filename": "src/renderers/RandomRenderer.cairo" - }, - "parent_location": [ - { - "end_col": 62, - "end_line": 21, - "input_file": { - "filename": "autogen/starknet/storage_var/_uris/decl.cairo" - }, - "parent_location": [ - { - "end_col": 32, - "end_line": 104, - "input_file": { - "filename": "src/renderers/RandomRenderer.cairo" - }, - "start_col": 5, - "start_line": 104 - }, - "While trying to retrieve the implicit argument 'pedersen_ptr' in:" - ], - "start_col": 36, - "start_line": 21 - }, - "While expanding the reference 'pedersen_ptr' in:" - ], - "start_col": 38, - "start_line": 97 - } - }, - "990": { - "accessible_scopes": [ - "__main__", - "__main__._uris_write" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 81, - "end_line": 97, - "input_file": { - "filename": "src/renderers/RandomRenderer.cairo" - }, - "parent_location": [ - { - "end_col": 79, - "end_line": 21, - "input_file": { - "filename": "autogen/starknet/storage_var/_uris/decl.cairo" - }, - "parent_location": [ - { - "end_col": 32, - "end_line": 104, - "input_file": { - "filename": "src/renderers/RandomRenderer.cairo" - }, - "start_col": 5, - "start_line": 104 - }, - "While trying to retrieve the implicit argument 'range_check_ptr' in:" - ], - "start_col": 64, - "start_line": 21 - }, - "While expanding the reference 'range_check_ptr' in:" - ], - "start_col": 66, - "start_line": 97 - } - }, - "991": { - "accessible_scopes": [ - "__main__", - "__main__._uris_write" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 16, - "end_line": 98, - "input_file": { - "filename": "src/renderers/RandomRenderer.cairo" - }, - "parent_location": [ - { - "end_col": 22, - "end_line": 104, - "input_file": { - "filename": "src/renderers/RandomRenderer.cairo" - }, - "start_col": 17, - "start_line": 104 - }, - "While expanding the reference 'index' in:" - ], - "start_col": 5, - "start_line": 98 - } - }, - "992": { - "accessible_scopes": [ - "__main__", - "__main__._uris_write" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 30, - "end_line": 103, - "input_file": { - "filename": "src/renderers/RandomRenderer.cairo" - }, - "parent_location": [ - { - "end_col": 31, - "end_line": 104, - "input_file": { - "filename": "src/renderers/RandomRenderer.cairo" - }, - "start_col": 24, - "start_line": 104 - }, - "While expanding the reference 'current' in:" - ], - "start_col": 19, - "start_line": 103 - } - }, - "993": { - "accessible_scopes": [ - "__main__", - "__main__._uris_write" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 32, - "end_line": 104, - "input_file": { - "filename": "src/renderers/RandomRenderer.cairo" - }, - "start_col": 5, - "start_line": 104 - } - }, - "995": { - "accessible_scopes": [ - "__main__", - "__main__._uris_write" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 33, - "end_line": 105, - "input_file": { - "filename": "src/renderers/RandomRenderer.cairo" - }, - "start_col": 24, - "start_line": 105 - } - }, - "997": { - "accessible_scopes": [ - "__main__", - "__main__._uris_write" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 32, - "end_line": 98, - "input_file": { - "filename": "src/renderers/RandomRenderer.cairo" - }, - "parent_location": [ - { - "end_col": 43, - "end_line": 105, - "input_file": { - "filename": "src/renderers/RandomRenderer.cairo" - }, - "start_col": 35, - "start_line": 105 - }, - "While expanding the reference 'uris_len' in:" - ], - "start_col": 18, - "start_line": 98 - } - }, - "998": { - "accessible_scopes": [ - "__main__", - "__main__._uris_write" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 45, - "end_line": 98, - "input_file": { - "filename": "src/renderers/RandomRenderer.cairo" - }, - "parent_location": [ - { - "end_col": 49, - "end_line": 105, - "input_file": { - "filename": "src/renderers/RandomRenderer.cairo" - }, - "start_col": 45, - "start_line": 105 - }, - "While expanding the reference 'uris' in:" - ], - "start_col": 34, - "start_line": 98 - } - }, - "999": { - "accessible_scopes": [ - "__main__", - "__main__._uris_write" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 50, - "end_line": 105, - "input_file": { - "filename": "src/renderers/RandomRenderer.cairo" - }, - "start_col": 12, - "start_line": 105 - } - }, - "1001": { - "accessible_scopes": [ - "__main__", - "__main__._uris_write" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 51, - "end_line": 105, - "input_file": { - "filename": "src/renderers/RandomRenderer.cairo" - }, - "start_col": 5, - "start_line": 105 - } - }, - "1002": { - "accessible_scopes": [ - "__main__", - "__main__._uris_read" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 35, - "end_line": 108, - "input_file": { - "filename": "src/renderers/RandomRenderer.cairo" - }, - "parent_location": [ - { - "end_col": 33, - "end_line": 13, - "input_file": { - "filename": "autogen/starknet/storage_var/_uris_len/decl.cairo" - }, - "parent_location": [ - { - "end_col": 37, - "end_line": 111, - "input_file": { - "filename": "src/renderers/RandomRenderer.cairo" - }, - "start_col": 21, - "start_line": 111 - }, - "While trying to retrieve the implicit argument 'syscall_ptr' in:" - ], - "start_col": 15, - "start_line": 13 - }, - "While expanding the reference 'syscall_ptr' in:" - ], - "start_col": 17, - "start_line": 108 - } - }, - "1003": { - "accessible_scopes": [ - "__main__", - "__main__._uris_read" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 63, - "end_line": 108, - "input_file": { - "filename": "src/renderers/RandomRenderer.cairo" - }, - "parent_location": [ - { - "end_col": 61, - "end_line": 13, - "input_file": { - "filename": "autogen/starknet/storage_var/_uris_len/decl.cairo" - }, - "parent_location": [ - { - "end_col": 37, - "end_line": 111, - "input_file": { - "filename": "src/renderers/RandomRenderer.cairo" - }, - "start_col": 21, - "start_line": 111 - }, - "While trying to retrieve the implicit argument 'pedersen_ptr' in:" - ], - "start_col": 35, - "start_line": 13 - }, - "While expanding the reference 'pedersen_ptr' in:" - ], - "start_col": 37, - "start_line": 108 - } - }, - "1004": { - "accessible_scopes": [ - "__main__", - "__main__._uris_read" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 80, - "end_line": 108, - "input_file": { - "filename": "src/renderers/RandomRenderer.cairo" - }, - "parent_location": [ - { - "end_col": 78, - "end_line": 13, - "input_file": { - "filename": "autogen/starknet/storage_var/_uris_len/decl.cairo" - }, - "parent_location": [ - { - "end_col": 37, - "end_line": 111, - "input_file": { - "filename": "src/renderers/RandomRenderer.cairo" - }, - "start_col": 21, - "start_line": 111 - }, - "While trying to retrieve the implicit argument 'range_check_ptr' in:" - ], - "start_col": 63, - "start_line": 13 - }, - "While expanding the reference 'range_check_ptr' in:" - ], - "start_col": 65, - "start_line": 108 - } - }, - "1005": { - "accessible_scopes": [ - "__main__", - "__main__._uris_read" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 37, - "end_line": 111, - "input_file": { - "filename": "src/renderers/RandomRenderer.cairo" - }, - "start_col": 21, - "start_line": 111 - } - }, - "1007": { - "accessible_scopes": [ - "__main__", - "__main__._uris_read" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 25, - "end_line": 112, - "input_file": { - "filename": "src/renderers/RandomRenderer.cairo" - }, - "start_col": 9, - "start_line": 112 - } - }, - "1008": { - "accessible_scopes": [ - "__main__", - "__main__._uris_read" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 7, - "end_line": 112, - "input_file": { - "filename": "src/renderers/RandomRenderer.cairo" - }, - "start_col": 5, - "start_line": 112 - } - }, - "1010": { - "accessible_scopes": [ - "__main__", - "__main__._uris_read" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 33, - "end_line": 13, - "input_file": { - "filename": "autogen/starknet/storage_var/_uris_len/decl.cairo" - }, - "parent_location": [ - { - "end_col": 37, - "end_line": 111, - "input_file": { - "filename": "src/renderers/RandomRenderer.cairo" - }, - "parent_location": [ - { - "end_col": 35, - "end_line": 108, - "input_file": { - "filename": "src/renderers/RandomRenderer.cairo" - }, - "parent_location": [ - { - "end_col": 28, - "end_line": 113, - "input_file": { - "filename": "src/renderers/RandomRenderer.cairo" - }, - "start_col": 9, - "start_line": 113 - }, - "While trying to retrieve the implicit argument 'syscall_ptr' in:" - ], - "start_col": 17, - "start_line": 108 - }, - "While expanding the reference 'syscall_ptr' in:" - ], - "start_col": 21, - "start_line": 111 - }, - "While trying to update the implicit return value 'syscall_ptr' in:" - ], - "start_col": 15, - "start_line": 13 - } - }, - "1011": { - "accessible_scopes": [ - "__main__", - "__main__._uris_read" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 61, - "end_line": 13, - "input_file": { - "filename": "autogen/starknet/storage_var/_uris_len/decl.cairo" - }, - "parent_location": [ - { - "end_col": 37, - "end_line": 111, - "input_file": { - "filename": "src/renderers/RandomRenderer.cairo" - }, - "parent_location": [ - { - "end_col": 63, - "end_line": 108, - "input_file": { - "filename": "src/renderers/RandomRenderer.cairo" - }, - "parent_location": [ - { - "end_col": 28, - "end_line": 113, - "input_file": { - "filename": "src/renderers/RandomRenderer.cairo" - }, - "start_col": 9, - "start_line": 113 - }, - "While trying to retrieve the implicit argument 'pedersen_ptr' in:" - ], - "start_col": 37, - "start_line": 108 - }, - "While expanding the reference 'pedersen_ptr' in:" - ], - "start_col": 21, - "start_line": 111 - }, - "While trying to update the implicit return value 'pedersen_ptr' in:" - ], - "start_col": 35, - "start_line": 13 - } - }, - "1012": { - "accessible_scopes": [ - "__main__", - "__main__._uris_read" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 78, - "end_line": 13, - "input_file": { - "filename": "autogen/starknet/storage_var/_uris_len/decl.cairo" - }, - "parent_location": [ - { - "end_col": 37, - "end_line": 111, - "input_file": { - "filename": "src/renderers/RandomRenderer.cairo" - }, - "parent_location": [ - { - "end_col": 80, - "end_line": 108, - "input_file": { - "filename": "src/renderers/RandomRenderer.cairo" - }, - "parent_location": [ - { - "end_col": 28, - "end_line": 113, - "input_file": { - "filename": "src/renderers/RandomRenderer.cairo" - }, - "start_col": 9, - "start_line": 113 - }, - "While trying to retrieve the implicit argument 'range_check_ptr' in:" - ], - "start_col": 65, - "start_line": 108 - }, - "While expanding the reference 'range_check_ptr' in:" - ], - "start_col": 21, - "start_line": 111 - }, - "While trying to update the implicit return value 'range_check_ptr' in:" - ], - "start_col": 63, - "start_line": 13 - } - }, - "1013": { - "accessible_scopes": [ - "__main__", - "__main__._uris_read" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 29, - "end_line": 109, - "input_file": { - "filename": "src/renderers/RandomRenderer.cairo" - }, - "parent_location": [ - { - "end_col": 26, - "end_line": 113, - "input_file": { - "filename": "src/renderers/RandomRenderer.cairo" - }, - "start_col": 22, - "start_line": 113 - }, - "While expanding the reference 'uris' in:" - ], - "start_col": 18, - "start_line": 109 - } - }, - "1014": { - "accessible_scopes": [ - "__main__", - "__main__._uris_read" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 28, - "end_line": 113, - "input_file": { - "filename": "src/renderers/RandomRenderer.cairo" - }, - "start_col": 9, - "start_line": 113 - } - }, - "1015": { - "accessible_scopes": [ - "__main__", - "__main__._uris_read" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 33, - "end_line": 13, - "input_file": { - "filename": "autogen/starknet/storage_var/_uris_len/decl.cairo" - }, - "parent_location": [ - { - "end_col": 37, - "end_line": 111, - "input_file": { - "filename": "src/renderers/RandomRenderer.cairo" - }, - "parent_location": [ - { - "end_col": 33, - "end_line": 13, - "input_file": { - "filename": "autogen/starknet/storage_var/_uris/decl.cairo" - }, - "parent_location": [ - { - "end_col": 38, - "end_line": 115, - "input_file": { - "filename": "src/renderers/RandomRenderer.cairo" - }, - "start_col": 21, - "start_line": 115 - }, - "While trying to retrieve the implicit argument 'syscall_ptr' in:" - ], - "start_col": 15, - "start_line": 13 - }, - "While expanding the reference 'syscall_ptr' in:" - ], - "start_col": 21, - "start_line": 111 - }, - "While trying to update the implicit return value 'syscall_ptr' in:" - ], - "start_col": 15, - "start_line": 13 - } - }, - "1016": { - "accessible_scopes": [ - "__main__", - "__main__._uris_read" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 61, - "end_line": 13, - "input_file": { - "filename": "autogen/starknet/storage_var/_uris_len/decl.cairo" - }, - "parent_location": [ - { - "end_col": 37, - "end_line": 111, - "input_file": { - "filename": "src/renderers/RandomRenderer.cairo" - }, - "parent_location": [ - { - "end_col": 61, - "end_line": 13, - "input_file": { - "filename": "autogen/starknet/storage_var/_uris/decl.cairo" - }, - "parent_location": [ - { - "end_col": 38, - "end_line": 115, - "input_file": { - "filename": "src/renderers/RandomRenderer.cairo" - }, - "start_col": 21, - "start_line": 115 - }, - "While trying to retrieve the implicit argument 'pedersen_ptr' in:" - ], - "start_col": 35, - "start_line": 13 - }, - "While expanding the reference 'pedersen_ptr' in:" - ], - "start_col": 21, - "start_line": 111 - }, - "While trying to update the implicit return value 'pedersen_ptr' in:" - ], - "start_col": 35, - "start_line": 13 - } - }, - "1017": { - "accessible_scopes": [ - "__main__", - "__main__._uris_read" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 78, - "end_line": 13, - "input_file": { - "filename": "autogen/starknet/storage_var/_uris_len/decl.cairo" - }, - "parent_location": [ - { - "end_col": 37, - "end_line": 111, - "input_file": { - "filename": "src/renderers/RandomRenderer.cairo" - }, - "parent_location": [ - { - "end_col": 78, - "end_line": 13, - "input_file": { - "filename": "autogen/starknet/storage_var/_uris/decl.cairo" - }, - "parent_location": [ - { - "end_col": 38, - "end_line": 115, - "input_file": { - "filename": "src/renderers/RandomRenderer.cairo" - }, - "start_col": 21, - "start_line": 115 - }, - "While trying to retrieve the implicit argument 'range_check_ptr' in:" - ], - "start_col": 63, - "start_line": 13 - }, - "While expanding the reference 'range_check_ptr' in:" - ], - "start_col": 21, - "start_line": 111 - }, - "While trying to update the implicit return value 'range_check_ptr' in:" - ], - "start_col": 63, - "start_line": 13 - } - }, - "1018": { - "accessible_scopes": [ - "__main__", - "__main__._uris_read" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 16, - "end_line": 109, - "input_file": { - "filename": "src/renderers/RandomRenderer.cairo" - }, - "parent_location": [ - { - "end_col": 37, - "end_line": 115, - "input_file": { - "filename": "src/renderers/RandomRenderer.cairo" - }, - "start_col": 32, - "start_line": 115 - }, - "While expanding the reference 'index' in:" - ], - "start_col": 5, - "start_line": 109 - } - }, - "1019": { - "accessible_scopes": [ - "__main__", - "__main__._uris_read" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 38, - "end_line": 115, - "input_file": { - "filename": "src/renderers/RandomRenderer.cairo" - }, - "start_col": 21, - "start_line": 115 - } - }, - "1021": { - "accessible_scopes": [ - "__main__", - "__main__._uris_read" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 29, - "end_line": 116, - "input_file": { - "filename": "src/renderers/RandomRenderer.cairo" - }, - "start_col": 5, - "start_line": 116 - } - }, - "1022": { - "accessible_scopes": [ - "__main__", - "__main__._uris_read" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 33, - "end_line": 13, - "input_file": { - "filename": "autogen/starknet/storage_var/_uris/decl.cairo" - }, - "parent_location": [ - { - "end_col": 38, - "end_line": 115, - "input_file": { - "filename": "src/renderers/RandomRenderer.cairo" - }, - "parent_location": [ - { - "end_col": 35, - "end_line": 108, - "input_file": { - "filename": "src/renderers/RandomRenderer.cairo" - }, - "parent_location": [ - { - "end_col": 43, - "end_line": 117, - "input_file": { - "filename": "src/renderers/RandomRenderer.cairo" - }, - "start_col": 12, - "start_line": 117 - }, - "While trying to retrieve the implicit argument 'syscall_ptr' in:" - ], - "start_col": 17, - "start_line": 108 - }, - "While expanding the reference 'syscall_ptr' in:" - ], - "start_col": 21, - "start_line": 115 - }, - "While trying to update the implicit return value 'syscall_ptr' in:" - ], - "start_col": 15, - "start_line": 13 - } - }, - "1023": { - "accessible_scopes": [ - "__main__", - "__main__._uris_read" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 61, - "end_line": 13, - "input_file": { - "filename": "autogen/starknet/storage_var/_uris/decl.cairo" - }, - "parent_location": [ - { - "end_col": 38, - "end_line": 115, - "input_file": { - "filename": "src/renderers/RandomRenderer.cairo" - }, - "parent_location": [ - { - "end_col": 63, - "end_line": 108, - "input_file": { - "filename": "src/renderers/RandomRenderer.cairo" - }, - "parent_location": [ - { - "end_col": 43, - "end_line": 117, - "input_file": { - "filename": "src/renderers/RandomRenderer.cairo" - }, - "start_col": 12, - "start_line": 117 - }, - "While trying to retrieve the implicit argument 'pedersen_ptr' in:" - ], - "start_col": 37, - "start_line": 108 - }, - "While expanding the reference 'pedersen_ptr' in:" - ], - "start_col": 21, - "start_line": 115 - }, - "While trying to update the implicit return value 'pedersen_ptr' in:" - ], - "start_col": 35, - "start_line": 13 - } - }, - "1024": { - "accessible_scopes": [ - "__main__", - "__main__._uris_read" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 78, - "end_line": 13, - "input_file": { - "filename": "autogen/starknet/storage_var/_uris/decl.cairo" - }, - "parent_location": [ - { - "end_col": 38, - "end_line": 115, - "input_file": { - "filename": "src/renderers/RandomRenderer.cairo" - }, - "parent_location": [ - { - "end_col": 80, - "end_line": 108, - "input_file": { - "filename": "src/renderers/RandomRenderer.cairo" - }, - "parent_location": [ - { - "end_col": 43, - "end_line": 117, - "input_file": { - "filename": "src/renderers/RandomRenderer.cairo" - }, - "start_col": 12, - "start_line": 117 - }, - "While trying to retrieve the implicit argument 'range_check_ptr' in:" - ], - "start_col": 65, - "start_line": 108 - }, - "While expanding the reference 'range_check_ptr' in:" - ], - "start_col": 21, - "start_line": 115 - }, - "While trying to update the implicit return value 'range_check_ptr' in:" - ], - "start_col": 63, - "start_line": 13 - } - }, - "1025": { - "accessible_scopes": [ - "__main__", - "__main__._uris_read" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 32, - "end_line": 117, - "input_file": { - "filename": "src/renderers/RandomRenderer.cairo" - }, - "start_col": 23, - "start_line": 117 - } - }, - "1027": { - "accessible_scopes": [ - "__main__", - "__main__._uris_read" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 42, - "end_line": 117, - "input_file": { - "filename": "src/renderers/RandomRenderer.cairo" - }, - "start_col": 34, - "start_line": 117 - } - }, - "1029": { - "accessible_scopes": [ - "__main__", - "__main__._uris_read" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 43, - "end_line": 117, - "input_file": { - "filename": "src/renderers/RandomRenderer.cairo" - }, - "start_col": 12, - "start_line": 117 - } - }, - "1031": { - "accessible_scopes": [ - "__main__", - "__main__._uris_read" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 44, - "end_line": 117, - "input_file": { - "filename": "src/renderers/RandomRenderer.cairo" - }, - "start_col": 5, - "start_line": 117 - } - }, - "1032": { - "accessible_scopes": [ - "__main__", - "__main__._get_uri" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 18, - "end_line": 123, - "input_file": { - "filename": "src/renderers/RandomRenderer.cairo" - }, - "start_col": 5, - "start_line": 123 - } - }, - "1034": { - "accessible_scopes": [ - "__main__", - "__main__._get_uri" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 33, - "end_line": 120, - "input_file": { - "filename": "src/renderers/RandomRenderer.cairo" - }, - "parent_location": [ - { - "end_col": 33, - "end_line": 13, - "input_file": { - "filename": "autogen/starknet/storage_var/_uris/decl.cairo" - }, - "parent_location": [ - { - "end_col": 34, - "end_line": 124, - "input_file": { - "filename": "src/renderers/RandomRenderer.cairo" - }, - "start_col": 17, - "start_line": 124 - }, - "While trying to retrieve the implicit argument 'syscall_ptr' in:" - ], - "start_col": 15, - "start_line": 13 - }, - "While expanding the reference 'syscall_ptr' in:" - ], - "start_col": 15, - "start_line": 120 - } - }, - "1035": { - "accessible_scopes": [ - "__main__", - "__main__._get_uri" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 61, - "end_line": 120, - "input_file": { - "filename": "src/renderers/RandomRenderer.cairo" - }, - "parent_location": [ - { - "end_col": 61, - "end_line": 13, - "input_file": { - "filename": "autogen/starknet/storage_var/_uris/decl.cairo" - }, - "parent_location": [ - { - "end_col": 34, - "end_line": 124, - "input_file": { - "filename": "src/renderers/RandomRenderer.cairo" - }, - "start_col": 17, - "start_line": 124 - }, - "While trying to retrieve the implicit argument 'pedersen_ptr' in:" - ], - "start_col": 35, - "start_line": 13 - }, - "While expanding the reference 'pedersen_ptr' in:" - ], - "start_col": 35, - "start_line": 120 - } - }, - "1036": { - "accessible_scopes": [ - "__main__", - "__main__._get_uri" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 78, - "end_line": 120, - "input_file": { - "filename": "src/renderers/RandomRenderer.cairo" - }, - "parent_location": [ - { - "end_col": 78, - "end_line": 13, - "input_file": { - "filename": "autogen/starknet/storage_var/_uris/decl.cairo" - }, - "parent_location": [ - { - "end_col": 34, - "end_line": 124, - "input_file": { - "filename": "src/renderers/RandomRenderer.cairo" - }, - "start_col": 17, - "start_line": 124 - }, - "While trying to retrieve the implicit argument 'range_check_ptr' in:" - ], - "start_col": 63, - "start_line": 13 - }, - "While expanding the reference 'range_check_ptr' in:" - ], - "start_col": 63, - "start_line": 120 - } - }, - "1037": { - "accessible_scopes": [ - "__main__", - "__main__._get_uri" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 91, - "end_line": 120, - "input_file": { - "filename": "src/renderers/RandomRenderer.cairo" - }, - "parent_location": [ - { - "end_col": 33, - "end_line": 124, - "input_file": { - "filename": "src/renderers/RandomRenderer.cairo" - }, - "start_col": 28, - "start_line": 124 - }, - "While expanding the reference 'index' in:" - ], - "start_col": 80, - "start_line": 120 - } - }, - "1038": { - "accessible_scopes": [ - "__main__", - "__main__._get_uri" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 34, - "end_line": 124, - "input_file": { - "filename": "src/renderers/RandomRenderer.cairo" - }, - "start_col": 17, - "start_line": 124 - } - }, - "1040": { - "accessible_scopes": [ - "__main__", - "__main__._get_uri" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 36, - "end_line": 125, - "input_file": { - "filename": "src/renderers/RandomRenderer.cairo" - }, - "start_col": 21, - "start_line": 125 - } - }, - "1042": { - "accessible_scopes": [ - "__main__", - "__main__._get_uri" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 17, - "end_line": 125, - "input_file": { - "filename": "src/renderers/RandomRenderer.cairo" - }, - "parent_location": [ - { - "end_col": 17, - "end_line": 125, - "input_file": { - "filename": "src/renderers/RandomRenderer.cairo" - }, - "start_col": 10, - "start_line": 125 - }, - "While auto generating local variable for 'uri_len'." - ], - "start_col": 10, - "start_line": 125 - } - }, - "1043": { - "accessible_scopes": [ - "__main__", - "__main__._get_uri" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 31, - "end_line": 127, - "input_file": { - "filename": "src/renderers/RandomRenderer.cairo" - }, - "start_col": 24, - "start_line": 127 - } - }, - "1045": { - "accessible_scopes": [ - "__main__", - "__main__._get_uri" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 20, - "end_line": 127, - "input_file": { - "filename": "src/renderers/RandomRenderer.cairo" - }, - "parent_location": [ - { - "end_col": 20, - "end_line": 127, - "input_file": { - "filename": "src/renderers/RandomRenderer.cairo" - }, - "start_col": 10, - "start_line": 127 - }, - "While auto generating local variable for 'uri'." - ], - "start_col": 10, - "start_line": 127 - } - }, - "1046": { - "accessible_scopes": [ - "__main__", - "__main__._get_uri" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 24, - "end_line": 126, - "input_file": { - "filename": "src/renderers/RandomRenderer.cairo" - }, - "parent_location": [ - { - "end_col": 34, - "end_line": 128, - "input_file": { - "filename": "src/renderers/RandomRenderer.cairo" - }, - "start_col": 29, - "start_line": 128 - }, - "While expanding the reference 'start' in:" - ], - "start_col": 17, - "start_line": 126 - } - }, - "1048": { - "accessible_scopes": [ - "__main__", - "__main__._get_uri" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 33, - "end_line": 13, - "input_file": { - "filename": "autogen/starknet/storage_var/_uris/decl.cairo" - }, - "parent_location": [ - { - "end_col": 36, - "end_line": 125, - "input_file": { - "filename": "src/renderers/RandomRenderer.cairo" - }, - "parent_location": [ - { - "end_col": 41, - "end_line": 132, - "input_file": { - "filename": "src/renderers/RandomRenderer.cairo" - }, - "parent_location": [ - { - "end_col": 50, - "end_line": 128, - "input_file": { - "filename": "src/renderers/RandomRenderer.cairo" - }, - "start_col": 5, - "start_line": 128 - }, - "While trying to retrieve the implicit argument 'syscall_ptr' in:" - ], - "start_col": 23, - "start_line": 132 - }, - "While expanding the reference 'syscall_ptr' in:" - ], - "start_col": 21, - "start_line": 125 - }, - "While trying to update the implicit return value 'syscall_ptr' in:" - ], - "start_col": 15, - "start_line": 13 - } - }, - "1049": { - "accessible_scopes": [ - "__main__", - "__main__._get_uri" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 61, - "end_line": 13, - "input_file": { - "filename": "autogen/starknet/storage_var/_uris/decl.cairo" - }, - "parent_location": [ - { - "end_col": 36, - "end_line": 125, - "input_file": { - "filename": "src/renderers/RandomRenderer.cairo" - }, - "parent_location": [ - { - "end_col": 69, - "end_line": 132, - "input_file": { - "filename": "src/renderers/RandomRenderer.cairo" - }, - "parent_location": [ - { - "end_col": 50, - "end_line": 128, - "input_file": { - "filename": "src/renderers/RandomRenderer.cairo" - }, - "start_col": 5, - "start_line": 128 - }, - "While trying to retrieve the implicit argument 'pedersen_ptr' in:" - ], - "start_col": 43, - "start_line": 132 - }, - "While expanding the reference 'pedersen_ptr' in:" - ], - "start_col": 21, - "start_line": 125 - }, - "While trying to update the implicit return value 'pedersen_ptr' in:" - ], - "start_col": 35, - "start_line": 13 - } - }, - "1050": { - "accessible_scopes": [ - "__main__", - "__main__._get_uri" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 78, - "end_line": 13, - "input_file": { - "filename": "autogen/starknet/storage_var/_uris/decl.cairo" - }, - "parent_location": [ - { - "end_col": 36, - "end_line": 125, - "input_file": { - "filename": "src/renderers/RandomRenderer.cairo" - }, - "parent_location": [ - { - "end_col": 86, - "end_line": 132, - "input_file": { - "filename": "src/renderers/RandomRenderer.cairo" - }, - "parent_location": [ - { - "end_col": 50, - "end_line": 128, - "input_file": { - "filename": "src/renderers/RandomRenderer.cairo" - }, - "start_col": 5, - "start_line": 128 - }, - "While trying to retrieve the implicit argument 'range_check_ptr' in:" - ], - "start_col": 71, - "start_line": 132 - }, - "While expanding the reference 'range_check_ptr' in:" - ], - "start_col": 21, - "start_line": 125 - }, - "While trying to update the implicit return value 'range_check_ptr' in:" - ], - "start_col": 63, - "start_line": 13 - } - }, - "1051": { - "accessible_scopes": [ - "__main__", - "__main__._get_uri" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 24, - "end_line": 126, - "input_file": { - "filename": "src/renderers/RandomRenderer.cairo" - }, - "parent_location": [ - { - "end_col": 27, - "end_line": 128, - "input_file": { - "filename": "src/renderers/RandomRenderer.cairo" - }, - "start_col": 22, - "start_line": 128 - }, - "While expanding the reference 'start' in:" - ], - "start_col": 17, - "start_line": 126 - } - }, - "1053": { - "accessible_scopes": [ - "__main__", - "__main__._get_uri" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 44, - "end_line": 128, - "input_file": { - "filename": "src/renderers/RandomRenderer.cairo" - }, - "start_col": 29, - "start_line": 128 - } - }, - "1054": { - "accessible_scopes": [ - "__main__", - "__main__._get_uri" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 20, - "end_line": 127, - "input_file": { - "filename": "src/renderers/RandomRenderer.cairo" - }, - "parent_location": [ - { - "end_col": 20, - "end_line": 127, - "input_file": { - "filename": "src/renderers/RandomRenderer.cairo" - }, - "parent_location": [ - { - "end_col": 49, - "end_line": 128, - "input_file": { - "filename": "src/renderers/RandomRenderer.cairo" - }, - "start_col": 46, - "start_line": 128 - }, - "While expanding the reference 'uri' in:" - ], - "start_col": 10, - "start_line": 127 - }, - "While auto generating local variable for 'uri'." - ], - "start_col": 10, - "start_line": 127 - } - }, - "1055": { - "accessible_scopes": [ - "__main__", - "__main__._get_uri" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 50, - "end_line": 128, - "input_file": { - "filename": "src/renderers/RandomRenderer.cairo" - }, - "start_col": 5, - "start_line": 128 - } - }, - "1057": { - "accessible_scopes": [ - "__main__", - "__main__._get_uri" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 17, - "end_line": 125, - "input_file": { - "filename": "src/renderers/RandomRenderer.cairo" - }, - "parent_location": [ - { - "end_col": 17, - "end_line": 125, - "input_file": { - "filename": "src/renderers/RandomRenderer.cairo" - }, - "parent_location": [ - { - "end_col": 20, - "end_line": 129, - "input_file": { - "filename": "src/renderers/RandomRenderer.cairo" - }, - "start_col": 13, - "start_line": 129 - }, - "While expanding the reference 'uri_len' in:" - ], - "start_col": 10, - "start_line": 125 - }, - "While auto generating local variable for 'uri_len'." - ], - "start_col": 10, - "start_line": 125 - } - }, - "1058": { - "accessible_scopes": [ - "__main__", - "__main__._get_uri" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 20, - "end_line": 127, - "input_file": { - "filename": "src/renderers/RandomRenderer.cairo" - }, - "parent_location": [ - { - "end_col": 20, - "end_line": 127, - "input_file": { - "filename": "src/renderers/RandomRenderer.cairo" - }, - "parent_location": [ - { - "end_col": 25, - "end_line": 129, - "input_file": { - "filename": "src/renderers/RandomRenderer.cairo" - }, - "start_col": 22, - "start_line": 129 - }, - "While expanding the reference 'uri' in:" - ], - "start_col": 10, - "start_line": 127 - }, - "While auto generating local variable for 'uri'." - ], - "start_col": 10, - "start_line": 127 - } - }, - "1059": { - "accessible_scopes": [ - "__main__", - "__main__._get_uri" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 27, - "end_line": 129, - "input_file": { - "filename": "src/renderers/RandomRenderer.cairo" - }, - "start_col": 5, - "start_line": 129 - } - }, - "1060": { - "accessible_scopes": [ - "__main__", - "__main__._read_into_array" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 86, - "end_line": 132, - "input_file": { - "filename": "src/renderers/RandomRenderer.cairo" - }, - "parent_location": [ - { - "end_col": 27, - "end_line": 42, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/math_cmp.cairo" - }, - "parent_location": [ - { - "end_col": 36, - "end_line": 135, - "input_file": { - "filename": "src/renderers/RandomRenderer.cairo" - }, - "start_col": 18, - "start_line": 135 - }, - "While trying to retrieve the implicit argument 'range_check_ptr' in:" - ], - "start_col": 12, - "start_line": 42 - }, - "While expanding the reference 'range_check_ptr' in:" - ], - "start_col": 71, - "start_line": 132 - } - }, - "1061": { - "accessible_scopes": [ - "__main__", - "__main__._read_into_array" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 28, - "end_line": 133, - "input_file": { - "filename": "src/renderers/RandomRenderer.cairo" - }, - "parent_location": [ - { - "end_col": 28, - "end_line": 135, - "input_file": { - "filename": "src/renderers/RandomRenderer.cairo" - }, - "start_col": 24, - "start_line": 135 - }, - "While expanding the reference 'stop' in:" - ], - "start_col": 18, - "start_line": 133 - } - }, - "1062": { - "accessible_scopes": [ - "__main__", - "__main__._read_into_array" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 16, - "end_line": 133, - "input_file": { - "filename": "src/renderers/RandomRenderer.cairo" - }, - "parent_location": [ - { - "end_col": 35, - "end_line": 135, - "input_file": { - "filename": "src/renderers/RandomRenderer.cairo" - }, - "start_col": 30, - "start_line": 135 - }, - "While expanding the reference 'start' in:" - ], - "start_col": 5, - "start_line": 133 - } - }, - "1063": { - "accessible_scopes": [ - "__main__", - "__main__._read_into_array" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 36, - "end_line": 135, - "input_file": { - "filename": "src/renderers/RandomRenderer.cairo" - }, - "start_col": 18, - "start_line": 135 - } - }, - "1065": { - "accessible_scopes": [ - "__main__", - "__main__._read_into_array" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 20, - "end_line": 136, - "input_file": { - "filename": "src/renderers/RandomRenderer.cairo" - }, - "start_col": 9, - "start_line": 136 - } - }, - "1067": { - "accessible_scopes": [ - "__main__", - "__main__._read_into_array" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 7, - "end_line": 136, - "input_file": { - "filename": "src/renderers/RandomRenderer.cairo" - }, - "start_col": 5, - "start_line": 136 - } - }, - "1069": { - "accessible_scopes": [ - "__main__", - "__main__._read_into_array" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 41, - "end_line": 132, - "input_file": { - "filename": "src/renderers/RandomRenderer.cairo" - }, - "parent_location": [ - { - "end_col": 41, - "end_line": 132, - "input_file": { - "filename": "src/renderers/RandomRenderer.cairo" - }, - "parent_location": [ - { - "end_col": 19, - "end_line": 137, - "input_file": { - "filename": "src/renderers/RandomRenderer.cairo" - }, - "start_col": 9, - "start_line": 137 - }, - "While trying to retrieve the implicit argument 'syscall_ptr' in:" - ], - "start_col": 23, - "start_line": 132 - }, - "While expanding the reference 'syscall_ptr' in:" - ], - "start_col": 23, - "start_line": 132 - } - }, - "1070": { - "accessible_scopes": [ - "__main__", - "__main__._read_into_array" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 69, - "end_line": 132, - "input_file": { - "filename": "src/renderers/RandomRenderer.cairo" - }, - "parent_location": [ - { - "end_col": 69, - "end_line": 132, - "input_file": { - "filename": "src/renderers/RandomRenderer.cairo" - }, - "parent_location": [ - { - "end_col": 19, - "end_line": 137, - "input_file": { - "filename": "src/renderers/RandomRenderer.cairo" - }, - "start_col": 9, - "start_line": 137 - }, - "While trying to retrieve the implicit argument 'pedersen_ptr' in:" - ], - "start_col": 43, - "start_line": 132 - }, - "While expanding the reference 'pedersen_ptr' in:" - ], - "start_col": 43, - "start_line": 132 - } - }, - "1071": { - "accessible_scopes": [ - "__main__", - "__main__._read_into_array" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 27, - "end_line": 42, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/math_cmp.cairo" - }, - "parent_location": [ - { - "end_col": 36, - "end_line": 135, - "input_file": { - "filename": "src/renderers/RandomRenderer.cairo" - }, - "parent_location": [ - { - "end_col": 86, - "end_line": 132, - "input_file": { - "filename": "src/renderers/RandomRenderer.cairo" - }, - "parent_location": [ - { - "end_col": 19, - "end_line": 137, - "input_file": { - "filename": "src/renderers/RandomRenderer.cairo" - }, - "start_col": 9, - "start_line": 137 - }, - "While trying to retrieve the implicit argument 'range_check_ptr' in:" - ], - "start_col": 71, - "start_line": 132 - }, - "While expanding the reference 'range_check_ptr' in:" - ], - "start_col": 18, - "start_line": 135 - }, - "While trying to update the implicit return value 'range_check_ptr' in:" - ], - "start_col": 12, - "start_line": 42 - } - }, - "1072": { - "accessible_scopes": [ - "__main__", - "__main__._read_into_array" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 19, - "end_line": 137, - "input_file": { - "filename": "src/renderers/RandomRenderer.cairo" - }, - "start_col": 9, - "start_line": 137 - } - }, - "1073": { - "accessible_scopes": [ - "__main__", - "__main__._read_into_array" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 41, - "end_line": 132, - "input_file": { - "filename": "src/renderers/RandomRenderer.cairo" - }, - "parent_location": [ - { - "end_col": 33, - "end_line": 13, - "input_file": { - "filename": "autogen/starknet/storage_var/_uris/decl.cairo" - }, - "parent_location": [ - { - "end_col": 38, - "end_line": 139, - "input_file": { - "filename": "src/renderers/RandomRenderer.cairo" - }, - "start_col": 21, - "start_line": 139 - }, - "While trying to retrieve the implicit argument 'syscall_ptr' in:" - ], - "start_col": 15, - "start_line": 13 - }, - "While expanding the reference 'syscall_ptr' in:" - ], - "start_col": 23, - "start_line": 132 - } - }, - "1074": { - "accessible_scopes": [ - "__main__", - "__main__._read_into_array" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 69, - "end_line": 132, - "input_file": { - "filename": "src/renderers/RandomRenderer.cairo" - }, - "parent_location": [ - { - "end_col": 61, - "end_line": 13, - "input_file": { - "filename": "autogen/starknet/storage_var/_uris/decl.cairo" - }, - "parent_location": [ - { - "end_col": 38, - "end_line": 139, - "input_file": { - "filename": "src/renderers/RandomRenderer.cairo" - }, - "start_col": 21, - "start_line": 139 - }, - "While trying to retrieve the implicit argument 'pedersen_ptr' in:" - ], - "start_col": 35, - "start_line": 13 - }, - "While expanding the reference 'pedersen_ptr' in:" - ], - "start_col": 43, - "start_line": 132 - } - }, - "1075": { - "accessible_scopes": [ - "__main__", - "__main__._read_into_array" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 27, - "end_line": 42, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/math_cmp.cairo" - }, - "parent_location": [ - { - "end_col": 36, - "end_line": 135, - "input_file": { - "filename": "src/renderers/RandomRenderer.cairo" - }, - "parent_location": [ - { - "end_col": 78, - "end_line": 13, - "input_file": { - "filename": "autogen/starknet/storage_var/_uris/decl.cairo" - }, - "parent_location": [ - { - "end_col": 38, - "end_line": 139, - "input_file": { - "filename": "src/renderers/RandomRenderer.cairo" - }, - "start_col": 21, - "start_line": 139 - }, - "While trying to retrieve the implicit argument 'range_check_ptr' in:" - ], - "start_col": 63, - "start_line": 13 - }, - "While expanding the reference 'range_check_ptr' in:" - ], - "start_col": 18, - "start_line": 135 - }, - "While trying to update the implicit return value 'range_check_ptr' in:" - ], - "start_col": 12, - "start_line": 42 - } - }, - "1076": { - "accessible_scopes": [ - "__main__", - "__main__._read_into_array" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 16, - "end_line": 133, - "input_file": { - "filename": "src/renderers/RandomRenderer.cairo" - }, - "parent_location": [ - { - "end_col": 37, - "end_line": 139, - "input_file": { - "filename": "src/renderers/RandomRenderer.cairo" - }, - "start_col": 32, - "start_line": 139 - }, - "While expanding the reference 'start' in:" - ], - "start_col": 5, - "start_line": 133 - } - }, - "1077": { - "accessible_scopes": [ - "__main__", - "__main__._read_into_array" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 38, - "end_line": 139, - "input_file": { - "filename": "src/renderers/RandomRenderer.cairo" - }, - "start_col": 21, - "start_line": 139 - } - }, - "1079": { - "accessible_scopes": [ - "__main__", - "__main__._read_into_array" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 28, - "end_line": 140, - "input_file": { - "filename": "src/renderers/RandomRenderer.cairo" - }, - "start_col": 5, - "start_line": 140 - } - }, - "1080": { - "accessible_scopes": [ - "__main__", - "__main__._read_into_array" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 33, - "end_line": 13, - "input_file": { - "filename": "autogen/starknet/storage_var/_uris/decl.cairo" - }, - "parent_location": [ - { - "end_col": 38, - "end_line": 139, - "input_file": { - "filename": "src/renderers/RandomRenderer.cairo" - }, - "parent_location": [ - { - "end_col": 41, - "end_line": 132, - "input_file": { - "filename": "src/renderers/RandomRenderer.cairo" - }, - "parent_location": [ - { - "end_col": 54, - "end_line": 141, - "input_file": { - "filename": "src/renderers/RandomRenderer.cairo" - }, - "start_col": 12, - "start_line": 141 - }, - "While trying to retrieve the implicit argument 'syscall_ptr' in:" - ], - "start_col": 23, - "start_line": 132 - }, - "While expanding the reference 'syscall_ptr' in:" - ], - "start_col": 21, - "start_line": 139 - }, - "While trying to update the implicit return value 'syscall_ptr' in:" - ], - "start_col": 15, - "start_line": 13 - } - }, - "1081": { - "accessible_scopes": [ - "__main__", - "__main__._read_into_array" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 61, - "end_line": 13, - "input_file": { - "filename": "autogen/starknet/storage_var/_uris/decl.cairo" - }, - "parent_location": [ - { - "end_col": 38, - "end_line": 139, - "input_file": { - "filename": "src/renderers/RandomRenderer.cairo" - }, - "parent_location": [ - { - "end_col": 69, - "end_line": 132, - "input_file": { - "filename": "src/renderers/RandomRenderer.cairo" - }, - "parent_location": [ - { - "end_col": 54, - "end_line": 141, - "input_file": { - "filename": "src/renderers/RandomRenderer.cairo" - }, - "start_col": 12, - "start_line": 141 - }, - "While trying to retrieve the implicit argument 'pedersen_ptr' in:" - ], - "start_col": 43, - "start_line": 132 - }, - "While expanding the reference 'pedersen_ptr' in:" - ], - "start_col": 21, - "start_line": 139 - }, - "While trying to update the implicit return value 'pedersen_ptr' in:" - ], - "start_col": 35, - "start_line": 13 - } - }, - "1082": { - "accessible_scopes": [ - "__main__", - "__main__._read_into_array" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 78, - "end_line": 13, - "input_file": { - "filename": "autogen/starknet/storage_var/_uris/decl.cairo" - }, - "parent_location": [ - { - "end_col": 38, - "end_line": 139, - "input_file": { - "filename": "src/renderers/RandomRenderer.cairo" - }, - "parent_location": [ - { - "end_col": 86, - "end_line": 132, - "input_file": { - "filename": "src/renderers/RandomRenderer.cairo" - }, - "parent_location": [ - { - "end_col": 54, - "end_line": 141, - "input_file": { - "filename": "src/renderers/RandomRenderer.cairo" - }, - "start_col": 12, - "start_line": 141 - }, - "While trying to retrieve the implicit argument 'range_check_ptr' in:" - ], - "start_col": 71, - "start_line": 132 - }, - "While expanding the reference 'range_check_ptr' in:" - ], - "start_col": 21, - "start_line": 139 - }, - "While trying to update the implicit return value 'range_check_ptr' in:" - ], - "start_col": 63, - "start_line": 13 - } - }, - "1083": { - "accessible_scopes": [ - "__main__", - "__main__._read_into_array" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 38, - "end_line": 141, - "input_file": { - "filename": "src/renderers/RandomRenderer.cairo" - }, - "start_col": 29, - "start_line": 141 - } - }, - "1085": { - "accessible_scopes": [ - "__main__", - "__main__._read_into_array" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 28, - "end_line": 133, - "input_file": { - "filename": "src/renderers/RandomRenderer.cairo" - }, - "parent_location": [ - { - "end_col": 44, - "end_line": 141, - "input_file": { - "filename": "src/renderers/RandomRenderer.cairo" - }, - "start_col": 40, - "start_line": 141 - }, - "While expanding the reference 'stop' in:" - ], - "start_col": 18, - "start_line": 133 - } - }, - "1086": { - "accessible_scopes": [ - "__main__", - "__main__._read_into_array" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 53, - "end_line": 141, - "input_file": { - "filename": "src/renderers/RandomRenderer.cairo" - }, - "start_col": 46, - "start_line": 141 - } - }, - "1088": { - "accessible_scopes": [ - "__main__", - "__main__._read_into_array" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 54, - "end_line": 141, - "input_file": { - "filename": "src/renderers/RandomRenderer.cairo" - }, - "start_col": 12, - "start_line": 141 - } - }, - "1090": { - "accessible_scopes": [ - "__main__", - "__main__._read_into_array" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 55, - "end_line": 141, - "input_file": { - "filename": "src/renderers/RandomRenderer.cairo" - }, - "start_col": 5, - "start_line": 141 - } - } - } - }, - "hints": { - "0": [ - { - "accessible_scopes": [ - "starkware.cairo.common.alloc", - "starkware.cairo.common.alloc.alloc" - ], - "code": "memory[ap] = segments.add()", - "flow_tracking_data": { - "ap_tracking": { - "group": 0, - "offset": 0 - }, - "reference_ids": {} - } - } - ], - "12": [ - { - "accessible_scopes": [ - "starkware.cairo.common.memcpy", - "starkware.cairo.common.memcpy.memcpy" - ], - "code": "vm_enter_scope({'n': ids.len})", - "flow_tracking_data": { - "ap_tracking": { - "group": 2, - "offset": 0 - }, - "reference_ids": { - "starkware.cairo.common.memcpy.memcpy.len": 0 - } - } - } - ], - "20": [ - { - "accessible_scopes": [ - "starkware.cairo.common.memcpy", - "starkware.cairo.common.memcpy.memcpy" - ], - "code": "n -= 1\nids.continue_copying = 1 if n > 0 else 0", - "flow_tracking_data": { - "ap_tracking": { - "group": 2, - "offset": 5 - }, - "reference_ids": { - "starkware.cairo.common.memcpy.memcpy.continue_copying": 1 - } - } - } - ], - "23": [ - { - "accessible_scopes": [ - "starkware.cairo.common.memcpy", - "starkware.cairo.common.memcpy.memcpy" - ], - "code": "vm_exit_scope()", - "flow_tracking_data": { - "ap_tracking": { - "group": 2, - "offset": 6 - }, - "reference_ids": {} - } - } - ], - "25": [ - { - "accessible_scopes": [ - "starkware.cairo.common.math", - "starkware.cairo.common.math.assert_not_zero" - ], - "code": "from starkware.cairo.common.math_utils import assert_integer\nassert_integer(ids.value)\nassert ids.value % PRIME != 0, f'assert_not_zero failed: {ids.value} = 0.'", - "flow_tracking_data": { - "ap_tracking": { - "group": 4, - "offset": 0 - }, - "reference_ids": { - "starkware.cairo.common.math.assert_not_zero.value": 2 - } - } - } - ], - "30": [ - { - "accessible_scopes": [ - "starkware.cairo.common.math", - "starkware.cairo.common.math.assert_nn" - ], - "code": "from starkware.cairo.common.math_utils import assert_integer\nassert_integer(ids.a)\nassert 0 <= ids.a % PRIME < range_check_builtin.bound, f'a = {ids.a} is out of range.'", - "flow_tracking_data": { - "ap_tracking": { - "group": 5, - "offset": 0 - }, - "reference_ids": { - "starkware.cairo.common.math.assert_nn.a": 3 - } - } - } - ], - "39": [ - { - "accessible_scopes": [ - "starkware.cairo.common.math", - "starkware.cairo.common.math.assert_250_bit" - ], - "code": "from starkware.cairo.common.math_utils import as_int\n\n# Correctness check.\nvalue = as_int(ids.value, PRIME) % PRIME\nassert value < ids.UPPER_BOUND, f'{value} is outside of the range [0, 2**250).'\n\n# Calculation for the assertion.\nids.high, ids.low = divmod(ids.value, ids.SHIFT)", - "flow_tracking_data": { - "ap_tracking": { - "group": 7, - "offset": 0 - }, - "reference_ids": { - "starkware.cairo.common.math.assert_250_bit.high": 6, - "starkware.cairo.common.math.assert_250_bit.low": 5, - "starkware.cairo.common.math.assert_250_bit.value": 4 - } - } - } - ], - "52": [ - { - "accessible_scopes": [ - "starkware.cairo.common.math", - "starkware.cairo.common.math.split_felt" - ], - "code": "from starkware.cairo.common.math_utils import assert_integer\nassert ids.MAX_HIGH < 2**128 and ids.MAX_LOW < 2**128\nassert PRIME - 1 == ids.MAX_HIGH * 2**128 + ids.MAX_LOW\nassert_integer(ids.value)\nids.low = ids.value & ((1 << 128) - 1)\nids.high = ids.value >> 128", - "flow_tracking_data": { - "ap_tracking": { - "group": 8, - "offset": 0 - }, - "reference_ids": { - "starkware.cairo.common.math.split_felt.high": 9, - "starkware.cairo.common.math.split_felt.low": 8, - "starkware.cairo.common.math.split_felt.value": 7 - } - } - } - ], - "81": [ - { - "accessible_scopes": [ - "starkware.cairo.common.math", - "starkware.cairo.common.math.assert_le_felt" - ], - "code": "import itertools\n\nfrom starkware.cairo.common.math_utils import assert_integer\nassert_integer(ids.a)\nassert_integer(ids.b)\na = ids.a % PRIME\nb = ids.b % PRIME\nassert a <= b, f'a = {a} is not less than or equal to b = {b}.'\n\n# Find an arc less than PRIME / 3, and another less than PRIME / 2.\nlengths_and_indices = [(a, 0), (b - a, 1), (PRIME - 1 - b, 2)]\nlengths_and_indices.sort()\nassert lengths_and_indices[0][0] <= PRIME // 3 and lengths_and_indices[1][0] <= PRIME // 2\nexcluded = lengths_and_indices[2][1]\n\nmemory[ids.range_check_ptr + 1], memory[ids.range_check_ptr + 0] = (\n divmod(lengths_and_indices[0][0], ids.PRIME_OVER_3_HIGH))\nmemory[ids.range_check_ptr + 3], memory[ids.range_check_ptr + 2] = (\n divmod(lengths_and_indices[1][0], ids.PRIME_OVER_2_HIGH))", - "flow_tracking_data": { - "ap_tracking": { - "group": 9, - "offset": 0 - }, - "reference_ids": { - "starkware.cairo.common.math.assert_le_felt.a": 10, - "starkware.cairo.common.math.assert_le_felt.b": 11, - "starkware.cairo.common.math.assert_le_felt.range_check_ptr": 12 - } - } - } - ], - "91": [ - { - "accessible_scopes": [ - "starkware.cairo.common.math", - "starkware.cairo.common.math.assert_le_felt" - ], - "code": "memory[ap] = 1 if excluded != 0 else 0", - "flow_tracking_data": { - "ap_tracking": { - "group": 9, - "offset": 8 - }, - "reference_ids": {} - } - } - ], - "105": [ - { - "accessible_scopes": [ - "starkware.cairo.common.math", - "starkware.cairo.common.math.assert_le_felt" - ], - "code": "memory[ap] = 1 if excluded != 1 else 0", - "flow_tracking_data": { - "ap_tracking": { - "group": 9, - "offset": 9 - }, - "reference_ids": {} - } - } - ], - "117": [ - { - "accessible_scopes": [ - "starkware.cairo.common.math", - "starkware.cairo.common.math.assert_le_felt" - ], - "code": "assert excluded == 2", - "flow_tracking_data": { - "ap_tracking": { - "group": 9, - "offset": 10 - }, - "reference_ids": {} - } - } - ], - "128": [ - { - "accessible_scopes": [ - "starkware.cairo.common.math", - "starkware.cairo.common.math.abs_value" - ], - "code": "from starkware.cairo.common.math_utils import is_positive\nids.is_positive = 1 if is_positive(\n value=ids.value, prime=PRIME, rc_bound=range_check_builtin.bound) else 0", - "flow_tracking_data": { - "ap_tracking": { - "group": 10, - "offset": 1 - }, - "reference_ids": { - "starkware.cairo.common.math.abs_value.is_positive": 14, - "starkware.cairo.common.math.abs_value.value": 13 - } - } - } - ], - "151": [ - { - "accessible_scopes": [ - "starkware.cairo.common.math", - "starkware.cairo.common.math.sign" - ], - "code": "from starkware.cairo.common.math_utils import is_positive\nids.is_positive = 1 if is_positive(\n value=ids.value, prime=PRIME, rc_bound=range_check_builtin.bound) else 0", - "flow_tracking_data": { - "ap_tracking": { - "group": 11, - "offset": 1 - }, - "reference_ids": { - "starkware.cairo.common.math.sign.is_positive": 16, - "starkware.cairo.common.math.sign.value": 15 - } - } - } - ], - "169": [ - { - "accessible_scopes": [ - "starkware.cairo.common.math", - "starkware.cairo.common.math.unsigned_div_rem" - ], - "code": "from starkware.cairo.common.math_utils import assert_integer\nassert_integer(ids.div)\nassert 0 < ids.div <= PRIME // range_check_builtin.bound, \\\n f'div={hex(ids.div)} is out of the valid range.'\nids.q, ids.r = divmod(ids.value, ids.div)", - "flow_tracking_data": { - "ap_tracking": { - "group": 12, - "offset": 0 - }, - "reference_ids": { - "starkware.cairo.common.math.unsigned_div_rem.div": 18, - "starkware.cairo.common.math.unsigned_div_rem.q": 20, - "starkware.cairo.common.math.unsigned_div_rem.r": 19, - "starkware.cairo.common.math.unsigned_div_rem.value": 17 - } - } - } - ], - "186": [ - { - "accessible_scopes": [ - "starkware.starknet.common.storage", - "starkware.starknet.common.storage.normalize_address" - ], - "code": "# Verify the assumptions on the relationship between 2**250, ADDR_BOUND and PRIME.\nADDR_BOUND = ids.ADDR_BOUND % PRIME\nassert (2**250 < ADDR_BOUND <= 2**251) and (2 * 2**250 < PRIME) and (\n ADDR_BOUND * 2 > PRIME), \\\n 'normalize_address() cannot be used with the current constants.'\nids.is_small = 1 if ids.addr < ADDR_BOUND else 0", - "flow_tracking_data": { - "ap_tracking": { - "group": 13, - "offset": 1 - }, - "reference_ids": { - "starkware.starknet.common.storage.normalize_address.addr": 21, - "starkware.starknet.common.storage.normalize_address.is_small": 22 - } - } - } - ], - "204": [ - { - "accessible_scopes": [ - "starkware.starknet.common.storage", - "starkware.starknet.common.storage.normalize_address" - ], - "code": "ids.is_250 = 1 if ids.addr < 2**250 else 0", - "flow_tracking_data": { - "ap_tracking": { - "group": 13, - "offset": 2 - }, - "reference_ids": { - "starkware.starknet.common.storage.normalize_address.addr": 21, - "starkware.starknet.common.storage.normalize_address.is_250": 23 - } - } - } - ], - "227": [ - { - "accessible_scopes": [ - "starkware.starknet.common.syscalls", - "starkware.starknet.common.syscalls.get_caller_address" - ], - "code": "syscall_handler.get_caller_address(segments=segments, syscall_ptr=ids.syscall_ptr)", - "flow_tracking_data": { - "ap_tracking": { - "group": 14, - "offset": 1 - }, - "reference_ids": { - "starkware.starknet.common.syscalls.get_caller_address.syscall_ptr": 24 - } - } - } - ], - "235": [ - { - "accessible_scopes": [ - "starkware.starknet.common.syscalls", - "starkware.starknet.common.syscalls.storage_read" - ], - "code": "syscall_handler.storage_read(segments=segments, syscall_ptr=ids.syscall_ptr)", - "flow_tracking_data": { - "ap_tracking": { - "group": 15, - "offset": 1 - }, - "reference_ids": { - "starkware.starknet.common.syscalls.storage_read.syscall_ptr": 25 - } - } - } - ], - "244": [ - { - "accessible_scopes": [ - "starkware.starknet.common.syscalls", - "starkware.starknet.common.syscalls.storage_write" - ], - "code": "syscall_handler.storage_write(segments=segments, syscall_ptr=ids.syscall_ptr)", - "flow_tracking_data": { - "ap_tracking": { - "group": 16, - "offset": 1 - }, - "reference_ids": { - "starkware.starknet.common.syscalls.storage_write.syscall_ptr": 26 - } - } - } - ], - "254": [ - { - "accessible_scopes": [ - "starkware.starknet.common.syscalls", - "starkware.starknet.common.syscalls.emit_event" - ], - "code": "syscall_handler.emit_event(segments=segments, syscall_ptr=ids.syscall_ptr)", - "flow_tracking_data": { - "ap_tracking": { - "group": 17, - "offset": 1 - }, - "reference_ids": { - "starkware.starknet.common.syscalls.emit_event.syscall_ptr": 27 - } - } - } - ], - "373": [ - { - "accessible_scopes": [ - "starkware.cairo.common.math_cmp", - "starkware.cairo.common.math_cmp.is_nn" - ], - "code": "memory[ap] = 0 if 0 <= (ids.a % PRIME) < range_check_builtin.bound else 1", - "flow_tracking_data": { - "ap_tracking": { - "group": 31, - "offset": 0 - }, - "reference_ids": { - "starkware.cairo.common.math_cmp.is_nn.a": 28 - } - } - } - ], - "383": [ - { - "accessible_scopes": [ - "starkware.cairo.common.math_cmp", - "starkware.cairo.common.math_cmp.is_nn" - ], - "code": "memory[ap] = 0 if 0 <= ((-ids.a - 1) % PRIME) < range_check_builtin.bound else 1", - "flow_tracking_data": { - "ap_tracking": { - "group": 31, - "offset": 1 - }, - "reference_ids": { - "starkware.cairo.common.math_cmp.is_nn.a": 28 - } - } - } - ], - "587": [ - { - "accessible_scopes": [ - "__main__", - "__main__", - "__wrappers__", - "__wrappers__.getOwner_encode_return" - ], - "code": "memory[ap] = segments.add()", - "flow_tracking_data": { - "ap_tracking": { - "group": 49, - "offset": 0 - }, - "reference_ids": {} - } - } - ], - "631": [ - { - "accessible_scopes": [ - "__main__", - "__main__", - "__wrappers__", - "__wrappers__.getUris_encode_return" - ], - "code": "memory[ap] = segments.add()", - "flow_tracking_data": { - "ap_tracking": { - "group": 53, - "offset": 0 - }, - "reference_ids": {} - } - } - ], - "676": [ - { - "accessible_scopes": [ - "__main__", - "__main__", - "__wrappers__", - "__wrappers__.getUri_encode_return" - ], - "code": "memory[ap] = segments.add()", - "flow_tracking_data": { - "ap_tracking": { - "group": 60, - "offset": 0 - }, - "reference_ids": {} - } - } - ], - "743": [ - { - "accessible_scopes": [ - "__main__", - "__main__", - "__wrappers__", - "__wrappers__.testUris_encode_return" - ], - "code": "memory[ap] = segments.add()", - "flow_tracking_data": { - "ap_tracking": { - "group": 67, - "offset": 0 - }, - "reference_ids": {} - } - } - ], - "829": [ - { - "accessible_scopes": [ - "__main__", - "__main__", - "__wrappers__", - "__wrappers__.setUris" - ], - "code": "memory[ap] = segments.add()", - "flow_tracking_data": { - "ap_tracking": { - "group": 76, - "offset": 0 - }, - "reference_ids": {} - } - } - ], - "854": [ - { - "accessible_scopes": [ - "__main__", - "__main__", - "__wrappers__", - "__wrappers__.transferOwnership" - ], - "code": "memory[ap] = segments.add()", - "flow_tracking_data": { - "ap_tracking": { - "group": 80, - "offset": 0 - }, - "reference_ids": {} - } - } - ], - "898": [ - { - "accessible_scopes": [ - "__main__", - "__main__", - "__wrappers__", - "__wrappers__.constructor" - ], - "code": "memory[ap] = segments.add()", - "flow_tracking_data": { - "ap_tracking": { - "group": 85, - "offset": 0 - }, - "reference_ids": {} - } - } - ], - "937": [ - { - "accessible_scopes": [ - "__main__", - "__main__", - "__wrappers__", - "__wrappers__.token_uri_encode_return" - ], - "code": "memory[ap] = segments.add()", - "flow_tracking_data": { - "ap_tracking": { - "group": 88, - "offset": 0 - }, - "reference_ids": {} - } - } - ] - }, - "identifiers": { - "__main__.HashBuiltin": { - "destination": "starkware.cairo.common.cairo_builtins.HashBuiltin", - "type": "alias" - }, - "__main__.Ownable": { - "destination": "openzeppelin.access.ownable.library.Ownable", - "type": "alias" - }, - "__main__._get_uri": { - "decorators": [], - "pc": 1032, - "type": "function" - }, - "__main__._get_uri.Args": { - "full_name": "__main__._get_uri.Args", - "members": { - "index": { - "cairo_type": "felt", - "offset": 0 - } - }, - "size": 1, - "type": "struct" - }, - "__main__._get_uri.ImplicitArgs": { - "full_name": "__main__._get_uri.ImplicitArgs", - "members": { - "pedersen_ptr": { - "cairo_type": "starkware.cairo.common.cairo_builtins.HashBuiltin*", - "offset": 1 - }, - "range_check_ptr": { - "cairo_type": "felt", - "offset": 2 - }, - "syscall_ptr": { - "cairo_type": "felt*", - "offset": 0 - } - }, - "size": 3, - "type": "struct" - }, - "__main__._get_uri.Return": { - "cairo_type": "(uri_len: felt, uri: felt*)", - "type": "type_definition" - }, - "__main__._get_uri.SIZEOF_LOCALS": { - "type": "const", - "value": 2 - }, - "__main__._read_into_array": { - "decorators": [], - "pc": 1060, - "type": "function" - }, - "__main__._read_into_array.Args": { - "full_name": "__main__._read_into_array.Args", - "members": { - "arr": { - "cairo_type": "felt*", - "offset": 2 - }, - "start": { - "cairo_type": "felt", - "offset": 0 - }, - "stop": { - "cairo_type": "felt", - "offset": 1 - } - }, - "size": 3, - "type": "struct" - }, - "__main__._read_into_array.ImplicitArgs": { - "full_name": "__main__._read_into_array.ImplicitArgs", - "members": { - "pedersen_ptr": { - "cairo_type": "starkware.cairo.common.cairo_builtins.HashBuiltin*", - "offset": 1 - }, - "range_check_ptr": { - "cairo_type": "felt", - "offset": 2 - }, - "syscall_ptr": { - "cairo_type": "felt*", - "offset": 0 - } - }, - "size": 3, - "type": "struct" - }, - "__main__._read_into_array.Return": { - "cairo_type": "()", - "type": "type_definition" - }, - "__main__._read_into_array.SIZEOF_LOCALS": { - "type": "const", - "value": 0 - }, - "__main__._uris": { - "type": "namespace" - }, - "__main__._uris.Args": { - "full_name": "__main__._uris.Args", - "members": {}, - "size": 0, - "type": "struct" - }, - "__main__._uris.HashBuiltin": { - "destination": "starkware.cairo.common.cairo_builtins.HashBuiltin", - "type": "alias" - }, - "__main__._uris.ImplicitArgs": { - "full_name": "__main__._uris.ImplicitArgs", - "members": {}, - "size": 0, - "type": "struct" - }, - "__main__._uris.Return": { - "cairo_type": "()", - "type": "type_definition" - }, - "__main__._uris.SIZEOF_LOCALS": { - "type": "const", - "value": 0 - }, - "__main__._uris.addr": { - "decorators": [], - "pc": 540, - "type": "function" - }, - "__main__._uris.addr.Args": { - "full_name": "__main__._uris.addr.Args", - "members": { - "index": { - "cairo_type": "felt", - "offset": 0 - } - }, - "size": 1, - "type": "struct" - }, - "__main__._uris.addr.ImplicitArgs": { - "full_name": "__main__._uris.addr.ImplicitArgs", - "members": { - "pedersen_ptr": { - "cairo_type": "starkware.cairo.common.cairo_builtins.HashBuiltin*", - "offset": 0 - }, - "range_check_ptr": { - "cairo_type": "felt", - "offset": 1 - } - }, - "size": 2, - "type": "struct" - }, - "__main__._uris.addr.Return": { - "cairo_type": "(res: felt)", - "type": "type_definition" - }, - "__main__._uris.addr.SIZEOF_LOCALS": { - "type": "const", - "value": 0 - }, - "__main__._uris.hash2": { - "destination": "starkware.cairo.common.hash.hash2", - "type": "alias" - }, - "__main__._uris.normalize_address": { - "destination": "starkware.starknet.common.storage.normalize_address", - "type": "alias" - }, - "__main__._uris.read": { - "decorators": [], - "pc": 554, - "type": "function" - }, - "__main__._uris.read.Args": { - "full_name": "__main__._uris.read.Args", - "members": { - "index": { - "cairo_type": "felt", - "offset": 0 - } - }, - "size": 1, - "type": "struct" - }, - "__main__._uris.read.ImplicitArgs": { - "full_name": "__main__._uris.read.ImplicitArgs", - "members": { - "pedersen_ptr": { - "cairo_type": "starkware.cairo.common.cairo_builtins.HashBuiltin*", - "offset": 1 - }, - "range_check_ptr": { - "cairo_type": "felt", - "offset": 2 - }, - "syscall_ptr": { - "cairo_type": "felt*", - "offset": 0 - } - }, - "size": 3, - "type": "struct" - }, - "__main__._uris.read.Return": { - "cairo_type": "(value: felt)", - "type": "type_definition" - }, - "__main__._uris.read.SIZEOF_LOCALS": { - "type": "const", - "value": 0 - }, - "__main__._uris.storage_read": { - "destination": "starkware.starknet.common.syscalls.storage_read", - "type": "alias" - }, - "__main__._uris.storage_write": { - "destination": "starkware.starknet.common.syscalls.storage_write", - "type": "alias" - }, - "__main__._uris.write": { - "decorators": [], - "pc": 568, - "type": "function" - }, - "__main__._uris.write.Args": { - "full_name": "__main__._uris.write.Args", - "members": { - "index": { - "cairo_type": "felt", - "offset": 0 - }, - "value": { - "cairo_type": "felt", - "offset": 1 - } - }, - "size": 2, - "type": "struct" - }, - "__main__._uris.write.ImplicitArgs": { - "full_name": "__main__._uris.write.ImplicitArgs", - "members": { - "pedersen_ptr": { - "cairo_type": "starkware.cairo.common.cairo_builtins.HashBuiltin*", - "offset": 1 - }, - "range_check_ptr": { - "cairo_type": "felt", - "offset": 2 - }, - "syscall_ptr": { - "cairo_type": "felt*", - "offset": 0 - } - }, - "size": 3, - "type": "struct" - }, - "__main__._uris.write.Return": { - "cairo_type": "()", - "type": "type_definition" - }, - "__main__._uris.write.SIZEOF_LOCALS": { - "type": "const", - "value": 0 - }, - "__main__._uris_len": { - "type": "namespace" - }, - "__main__._uris_len.Args": { - "full_name": "__main__._uris_len.Args", - "members": {}, - "size": 0, - "type": "struct" - }, - "__main__._uris_len.HashBuiltin": { - "destination": "starkware.cairo.common.cairo_builtins.HashBuiltin", - "type": "alias" - }, - "__main__._uris_len.ImplicitArgs": { - "full_name": "__main__._uris_len.ImplicitArgs", - "members": {}, - "size": 0, - "type": "struct" - }, - "__main__._uris_len.Return": { - "cairo_type": "()", - "type": "type_definition" - }, - "__main__._uris_len.SIZEOF_LOCALS": { - "type": "const", - "value": 0 - }, - "__main__._uris_len.addr": { - "decorators": [], - "pc": 510, - "type": "function" - }, - "__main__._uris_len.addr.Args": { - "full_name": "__main__._uris_len.addr.Args", - "members": {}, - "size": 0, - "type": "struct" - }, - "__main__._uris_len.addr.ImplicitArgs": { - "full_name": "__main__._uris_len.addr.ImplicitArgs", - "members": { - "pedersen_ptr": { - "cairo_type": "starkware.cairo.common.cairo_builtins.HashBuiltin*", - "offset": 0 - }, - "range_check_ptr": { - "cairo_type": "felt", - "offset": 1 - } - }, - "size": 2, - "type": "struct" - }, - "__main__._uris_len.addr.Return": { - "cairo_type": "(res: felt)", - "type": "type_definition" - }, - "__main__._uris_len.addr.SIZEOF_LOCALS": { - "type": "const", - "value": 0 - }, - "__main__._uris_len.hash2": { - "destination": "starkware.cairo.common.hash.hash2", - "type": "alias" - }, - "__main__._uris_len.normalize_address": { - "destination": "starkware.starknet.common.storage.normalize_address", - "type": "alias" - }, - "__main__._uris_len.read": { - "decorators": [], - "pc": 515, - "type": "function" - }, - "__main__._uris_len.read.Args": { - "full_name": "__main__._uris_len.read.Args", - "members": {}, - "size": 0, - "type": "struct" - }, - "__main__._uris_len.read.ImplicitArgs": { - "full_name": "__main__._uris_len.read.ImplicitArgs", - "members": { - "pedersen_ptr": { - "cairo_type": "starkware.cairo.common.cairo_builtins.HashBuiltin*", - "offset": 1 - }, - "range_check_ptr": { - "cairo_type": "felt", - "offset": 2 - }, - "syscall_ptr": { - "cairo_type": "felt*", - "offset": 0 - } - }, - "size": 3, - "type": "struct" - }, - "__main__._uris_len.read.Return": { - "cairo_type": "(res: felt)", - "type": "type_definition" - }, - "__main__._uris_len.read.SIZEOF_LOCALS": { - "type": "const", - "value": 0 - }, - "__main__._uris_len.storage_read": { - "destination": "starkware.starknet.common.syscalls.storage_read", - "type": "alias" - }, - "__main__._uris_len.storage_write": { - "destination": "starkware.starknet.common.syscalls.storage_write", - "type": "alias" - }, - "__main__._uris_len.write": { - "decorators": [], - "pc": 528, - "type": "function" - }, - "__main__._uris_len.write.Args": { - "full_name": "__main__._uris_len.write.Args", - "members": { - "value": { - "cairo_type": "felt", - "offset": 0 - } - }, - "size": 1, - "type": "struct" - }, - "__main__._uris_len.write.ImplicitArgs": { - "full_name": "__main__._uris_len.write.ImplicitArgs", - "members": { - "pedersen_ptr": { - "cairo_type": "starkware.cairo.common.cairo_builtins.HashBuiltin*", - "offset": 1 - }, - "range_check_ptr": { - "cairo_type": "felt", - "offset": 2 - }, - "syscall_ptr": { - "cairo_type": "felt*", - "offset": 0 - } - }, - "size": 3, - "type": "struct" - }, - "__main__._uris_len.write.Return": { - "cairo_type": "()", - "type": "type_definition" - }, - "__main__._uris_len.write.SIZEOF_LOCALS": { - "type": "const", - "value": 0 - }, - "__main__._uris_read": { - "decorators": [], - "pc": 1002, - "type": "function" - }, - "__main__._uris_read.Args": { - "full_name": "__main__._uris_read.Args", - "members": { - "index": { - "cairo_type": "felt", - "offset": 0 - }, - "uris": { - "cairo_type": "felt*", - "offset": 1 - } - }, - "size": 2, - "type": "struct" - }, - "__main__._uris_read.ImplicitArgs": { - "full_name": "__main__._uris_read.ImplicitArgs", - "members": { - "pedersen_ptr": { - "cairo_type": "starkware.cairo.common.cairo_builtins.HashBuiltin*", - "offset": 1 - }, - "range_check_ptr": { - "cairo_type": "felt", - "offset": 2 - }, - "syscall_ptr": { - "cairo_type": "felt*", - "offset": 0 - } - }, - "size": 3, - "type": "struct" - }, - "__main__._uris_read.Return": { - "cairo_type": "(uris: felt*)", - "type": "type_definition" - }, - "__main__._uris_read.SIZEOF_LOCALS": { - "type": "const", - "value": 0 - }, - "__main__._uris_write": { - "decorators": [], - "pc": 980, - "type": "function" - }, - "__main__._uris_write.Args": { - "full_name": "__main__._uris_write.Args", - "members": { - "index": { - "cairo_type": "felt", - "offset": 0 - }, - "uris": { - "cairo_type": "felt*", - "offset": 2 - }, - "uris_len": { - "cairo_type": "felt", - "offset": 1 - } - }, - "size": 3, - "type": "struct" - }, - "__main__._uris_write.ImplicitArgs": { - "full_name": "__main__._uris_write.ImplicitArgs", - "members": { - "pedersen_ptr": { - "cairo_type": "starkware.cairo.common.cairo_builtins.HashBuiltin*", - "offset": 1 - }, - "range_check_ptr": { - "cairo_type": "felt", - "offset": 2 - }, - "syscall_ptr": { - "cairo_type": "felt*", - "offset": 0 - } - }, - "size": 3, - "type": "struct" - }, - "__main__._uris_write.Return": { - "cairo_type": "()", - "type": "type_definition" - }, - "__main__._uris_write.SIZEOF_LOCALS": { - "type": "const", - "value": 0 - }, - "__main__.alloc": { - "destination": "starkware.cairo.common.alloc.alloc", - "type": "alias" - }, - "__main__.constructor": { - "decorators": [ - "constructor" - ], - "pc": 863, - "type": "function" - }, - "__main__.constructor.Args": { - "full_name": "__main__.constructor.Args", - "members": { - "owner": { - "cairo_type": "felt", - "offset": 0 - }, - "uris": { - "cairo_type": "felt*", - "offset": 2 - }, - "uris_len": { - "cairo_type": "felt", - "offset": 1 - } - }, - "size": 3, - "type": "struct" - }, - "__main__.constructor.ImplicitArgs": { - "full_name": "__main__.constructor.ImplicitArgs", - "members": { - "pedersen_ptr": { - "cairo_type": "starkware.cairo.common.cairo_builtins.HashBuiltin*", - "offset": 1 - }, - "range_check_ptr": { - "cairo_type": "felt", - "offset": 2 - }, - "syscall_ptr": { - "cairo_type": "felt*", - "offset": 0 - } - }, - "size": 3, - "type": "struct" - }, - "__main__.constructor.Return": { - "cairo_type": "()", - "type": "type_definition" - }, - "__main__.constructor.SIZEOF_LOCALS": { - "type": "const", - "value": 0 - }, - "__main__.getOwner": { - "decorators": [ - "view" - ], - "pc": 581, - "type": "function" - }, - "__main__.getOwner.Args": { - "full_name": "__main__.getOwner.Args", - "members": {}, - "size": 0, - "type": "struct" - }, - "__main__.getOwner.ImplicitArgs": { - "full_name": "__main__.getOwner.ImplicitArgs", - "members": { - "pedersen_ptr": { - "cairo_type": "starkware.cairo.common.cairo_builtins.HashBuiltin*", - "offset": 1 - }, - "range_check_ptr": { - "cairo_type": "felt", - "offset": 2 - }, - "syscall_ptr": { - "cairo_type": "felt*", - "offset": 0 - } - }, - "size": 3, - "type": "struct" - }, - "__main__.getOwner.Return": { - "cairo_type": "(owner: felt)", - "type": "type_definition" - }, - "__main__.getOwner.SIZEOF_LOCALS": { - "type": "const", - "value": 0 - }, - "__main__.getUri": { - "decorators": [ - "view" - ], - "pc": 669, - "type": "function" - }, - "__main__.getUri.Args": { - "full_name": "__main__.getUri.Args", - "members": { - "index": { - "cairo_type": "felt", - "offset": 0 - } - }, - "size": 1, - "type": "struct" - }, - "__main__.getUri.ImplicitArgs": { - "full_name": "__main__.getUri.ImplicitArgs", - "members": { - "pedersen_ptr": { - "cairo_type": "starkware.cairo.common.cairo_builtins.HashBuiltin*", - "offset": 1 - }, - "range_check_ptr": { - "cairo_type": "felt", - "offset": 2 - }, - "syscall_ptr": { - "cairo_type": "felt*", - "offset": 0 - } - }, - "size": 3, - "type": "struct" - }, - "__main__.getUri.Return": { - "cairo_type": "(uri_len: felt, uri: felt*)", - "type": "type_definition" - }, - "__main__.getUri.SIZEOF_LOCALS": { - "type": "const", - "value": 0 - }, - "__main__.getUris": { - "decorators": [ - "view" - ], - "pc": 611, - "type": "function" - }, - "__main__.getUris.Args": { - "full_name": "__main__.getUris.Args", - "members": {}, - "size": 0, - "type": "struct" - }, - "__main__.getUris.ImplicitArgs": { - "full_name": "__main__.getUris.ImplicitArgs", - "members": { - "pedersen_ptr": { - "cairo_type": "starkware.cairo.common.cairo_builtins.HashBuiltin*", - "offset": 1 - }, - "range_check_ptr": { - "cairo_type": "felt", - "offset": 2 - }, - "syscall_ptr": { - "cairo_type": "felt*", - "offset": 0 - } - }, - "size": 3, - "type": "struct" - }, - "__main__.getUris.Return": { - "cairo_type": "(uris_len: felt, uris: felt*)", - "type": "type_definition" - }, - "__main__.getUris.SIZEOF_LOCALS": { - "type": "const", - "value": 1 - }, - "__main__.get_label_location": { - "destination": "starkware.cairo.common.registers.get_label_location", - "type": "alias" - }, - "__main__.hash2": { - "destination": "starkware.cairo.common.hash.hash2", - "type": "alias" - }, - "__main__.is_le": { - "destination": "starkware.cairo.common.math_cmp.is_le", - "type": "alias" - }, - "__main__.memcpy": { - "destination": "starkware.cairo.common.memcpy.memcpy", - "type": "alias" - }, - "__main__.setUris": { - "decorators": [ - "external" - ], - "pc": 796, - "type": "function" - }, - "__main__.setUris.Args": { - "full_name": "__main__.setUris.Args", - "members": { - "uris": { - "cairo_type": "felt*", - "offset": 1 - }, - "uris_len": { - "cairo_type": "felt", - "offset": 0 - } - }, - "size": 2, - "type": "struct" - }, - "__main__.setUris.ImplicitArgs": { - "full_name": "__main__.setUris.ImplicitArgs", - "members": { - "pedersen_ptr": { - "cairo_type": "starkware.cairo.common.cairo_builtins.HashBuiltin*", - "offset": 1 - }, - "range_check_ptr": { - "cairo_type": "felt", - "offset": 2 - }, - "syscall_ptr": { - "cairo_type": "felt*", - "offset": 0 - } - }, - "size": 3, - "type": "struct" - }, - "__main__.setUris.Return": { - "cairo_type": "()", - "type": "type_definition" - }, - "__main__.setUris.SIZEOF_LOCALS": { - "type": "const", - "value": 0 - }, - "__main__.split_felt": { - "destination": "starkware.cairo.common.math.split_felt", - "type": "alias" - }, - "__main__.str": { - "destination": "utils.string.str", - "type": "alias" - }, - "__main__.testUris": { - "decorators": [ - "view" - ], - "pc": 717, - "type": "function" - }, - "__main__.testUris.Args": { - "full_name": "__main__.testUris.Args", - "members": { - "encoded_uris": { - "cairo_type": "felt*", - "offset": 1 - }, - "encoded_uris_len": { - "cairo_type": "felt", - "offset": 0 - }, - "index": { - "cairo_type": "felt", - "offset": 2 - } - }, - "size": 3, - "type": "struct" - }, - "__main__.testUris.ImplicitArgs": { - "full_name": "__main__.testUris.ImplicitArgs", - "members": { - "pedersen_ptr": { - "cairo_type": "starkware.cairo.common.cairo_builtins.HashBuiltin*", - "offset": 1 - }, - "range_check_ptr": { - "cairo_type": "felt", - "offset": 2 - }, - "syscall_ptr": { - "cairo_type": "felt*", - "offset": 0 - } - }, - "size": 3, - "type": "struct" - }, - "__main__.testUris.Return": { - "cairo_type": "(uri_len: felt, uri: felt*)", - "type": "type_definition" - }, - "__main__.testUris.SIZEOF_LOCALS": { - "type": "const", - "value": 1 - }, - "__main__.token_uri": { - "decorators": [ - "view" - ], - "pc": 907, - "type": "function" - }, - "__main__.token_uri.Args": { - "full_name": "__main__.token_uri.Args", - "members": { - "name": { - "cairo_type": "felt", - "offset": 2 - }, - "token_id": { - "cairo_type": "felt", - "offset": 0 - }, - "value": { - "cairo_type": "felt", - "offset": 1 - } - }, - "size": 3, - "type": "struct" - }, - "__main__.token_uri.ImplicitArgs": { - "full_name": "__main__.token_uri.ImplicitArgs", - "members": { - "pedersen_ptr": { - "cairo_type": "starkware.cairo.common.cairo_builtins.HashBuiltin*", - "offset": 1 - }, - "range_check_ptr": { - "cairo_type": "felt", - "offset": 2 - }, - "syscall_ptr": { - "cairo_type": "felt*", - "offset": 0 - } - }, - "size": 3, - "type": "struct" - }, - "__main__.token_uri.Return": { - "cairo_type": "(token_uri_len: felt, token_uri: felt*)", - "type": "type_definition" - }, - "__main__.token_uri.SIZEOF_LOCALS": { - "type": "const", - "value": 0 - }, - "__main__.transferOwnership": { - "decorators": [ - "external" - ], - "pc": 838, - "type": "function" - }, - "__main__.transferOwnership.Args": { - "full_name": "__main__.transferOwnership.Args", - "members": { - "new_owner": { - "cairo_type": "felt", - "offset": 0 - } - }, - "size": 1, - "type": "struct" - }, - "__main__.transferOwnership.ImplicitArgs": { - "full_name": "__main__.transferOwnership.ImplicitArgs", - "members": { - "pedersen_ptr": { - "cairo_type": "starkware.cairo.common.cairo_builtins.HashBuiltin*", - "offset": 1 - }, - "range_check_ptr": { - "cairo_type": "felt", - "offset": 2 - }, - "syscall_ptr": { - "cairo_type": "felt*", - "offset": 0 - } - }, - "size": 3, - "type": "struct" - }, - "__main__.transferOwnership.Return": { - "cairo_type": "()", - "type": "type_definition" - }, - "__main__.transferOwnership.SIZEOF_LOCALS": { - "type": "const", - "value": 0 - }, - "__main__.unsigned_div_rem": { - "destination": "starkware.cairo.common.math.unsigned_div_rem", - "type": "alias" - }, - "__wrappers__.constructor": { - "decorators": [ - "constructor" - ], - "pc": 879, - "type": "function" - }, - "__wrappers__.constructor.Args": { - "full_name": "__wrappers__.constructor.Args", - "members": {}, - "size": 0, - "type": "struct" - }, - "__wrappers__.constructor.ImplicitArgs": { - "full_name": "__wrappers__.constructor.ImplicitArgs", - "members": {}, - "size": 0, - "type": "struct" - }, - "__wrappers__.constructor.Return": { - "cairo_type": "(syscall_ptr: felt*, pedersen_ptr: starkware.cairo.common.cairo_builtins.HashBuiltin*, range_check_ptr: felt, size: felt, retdata: felt*)", - "type": "type_definition" - }, - "__wrappers__.constructor.SIZEOF_LOCALS": { - "type": "const", - "value": 0 - }, - "__wrappers__.constructor.__wrapped_func": { - "destination": "__main__.constructor", - "type": "alias" - }, - "__wrappers__.constructor_encode_return.memcpy": { - "destination": "starkware.cairo.common.memcpy.memcpy", - "type": "alias" - }, - "__wrappers__.getOwner": { - "decorators": [ - "view" - ], - "pc": 596, - "type": "function" - }, - "__wrappers__.getOwner.Args": { - "full_name": "__wrappers__.getOwner.Args", - "members": {}, - "size": 0, - "type": "struct" - }, - "__wrappers__.getOwner.ImplicitArgs": { - "full_name": "__wrappers__.getOwner.ImplicitArgs", - "members": {}, - "size": 0, - "type": "struct" - }, - "__wrappers__.getOwner.Return": { - "cairo_type": "(syscall_ptr: felt*, pedersen_ptr: starkware.cairo.common.cairo_builtins.HashBuiltin*, range_check_ptr: felt, size: felt, retdata: felt*)", - "type": "type_definition" - }, - "__wrappers__.getOwner.SIZEOF_LOCALS": { - "type": "const", - "value": 0 - }, - "__wrappers__.getOwner.__wrapped_func": { - "destination": "__main__.getOwner", - "type": "alias" - }, - "__wrappers__.getOwner_encode_return": { - "decorators": [], - "pc": 587, - "type": "function" - }, - "__wrappers__.getOwner_encode_return.Args": { - "full_name": "__wrappers__.getOwner_encode_return.Args", - "members": { - "range_check_ptr": { - "cairo_type": "felt", - "offset": 1 - }, - "ret_value": { - "cairo_type": "(owner: felt)", - "offset": 0 - } - }, - "size": 2, - "type": "struct" - }, - "__wrappers__.getOwner_encode_return.ImplicitArgs": { - "full_name": "__wrappers__.getOwner_encode_return.ImplicitArgs", - "members": {}, - "size": 0, - "type": "struct" - }, - "__wrappers__.getOwner_encode_return.Return": { - "cairo_type": "(range_check_ptr: felt, data_len: felt, data: felt*)", - "type": "type_definition" - }, - "__wrappers__.getOwner_encode_return.SIZEOF_LOCALS": { - "type": "const", - "value": 1 - }, - "__wrappers__.getOwner_encode_return.memcpy": { - "destination": "starkware.cairo.common.memcpy.memcpy", - "type": "alias" - }, - "__wrappers__.getUri": { - "decorators": [ - "view" - ], - "pc": 695, - "type": "function" - }, - "__wrappers__.getUri.Args": { - "full_name": "__wrappers__.getUri.Args", - "members": {}, - "size": 0, - "type": "struct" - }, - "__wrappers__.getUri.ImplicitArgs": { - "full_name": "__wrappers__.getUri.ImplicitArgs", - "members": {}, - "size": 0, - "type": "struct" - }, - "__wrappers__.getUri.Return": { - "cairo_type": "(syscall_ptr: felt*, pedersen_ptr: starkware.cairo.common.cairo_builtins.HashBuiltin*, range_check_ptr: felt, size: felt, retdata: felt*)", - "type": "type_definition" - }, - "__wrappers__.getUri.SIZEOF_LOCALS": { - "type": "const", - "value": 2 - }, - "__wrappers__.getUri.__wrapped_func": { - "destination": "__main__.getUri", - "type": "alias" - }, - "__wrappers__.getUri_encode_return": { - "decorators": [], - "pc": 676, - "type": "function" - }, - "__wrappers__.getUri_encode_return.Args": { - "full_name": "__wrappers__.getUri_encode_return.Args", - "members": { - "range_check_ptr": { - "cairo_type": "felt", - "offset": 2 - }, - "ret_value": { - "cairo_type": "(uri_len: felt, uri: felt*)", - "offset": 0 - } - }, - "size": 3, - "type": "struct" - }, - "__wrappers__.getUri_encode_return.ImplicitArgs": { - "full_name": "__wrappers__.getUri_encode_return.ImplicitArgs", - "members": {}, - "size": 0, - "type": "struct" - }, - "__wrappers__.getUri_encode_return.Return": { - "cairo_type": "(range_check_ptr: felt, data_len: felt, data: felt*)", - "type": "type_definition" - }, - "__wrappers__.getUri_encode_return.SIZEOF_LOCALS": { - "type": "const", - "value": 3 - }, - "__wrappers__.getUri_encode_return.memcpy": { - "destination": "starkware.cairo.common.memcpy.memcpy", - "type": "alias" - }, - "__wrappers__.getUris": { - "decorators": [ - "view" - ], - "pc": 650, - "type": "function" - }, - "__wrappers__.getUris.Args": { - "full_name": "__wrappers__.getUris.Args", - "members": {}, - "size": 0, - "type": "struct" - }, - "__wrappers__.getUris.ImplicitArgs": { - "full_name": "__wrappers__.getUris.ImplicitArgs", - "members": {}, - "size": 0, - "type": "struct" - }, - "__wrappers__.getUris.Return": { - "cairo_type": "(syscall_ptr: felt*, pedersen_ptr: starkware.cairo.common.cairo_builtins.HashBuiltin*, range_check_ptr: felt, size: felt, retdata: felt*)", - "type": "type_definition" - }, - "__wrappers__.getUris.SIZEOF_LOCALS": { - "type": "const", - "value": 2 - }, - "__wrappers__.getUris.__wrapped_func": { - "destination": "__main__.getUris", - "type": "alias" - }, - "__wrappers__.getUris_encode_return": { - "decorators": [], - "pc": 631, - "type": "function" - }, - "__wrappers__.getUris_encode_return.Args": { - "full_name": "__wrappers__.getUris_encode_return.Args", - "members": { - "range_check_ptr": { - "cairo_type": "felt", - "offset": 2 - }, - "ret_value": { - "cairo_type": "(uris_len: felt, uris: felt*)", - "offset": 0 - } - }, - "size": 3, - "type": "struct" - }, - "__wrappers__.getUris_encode_return.ImplicitArgs": { - "full_name": "__wrappers__.getUris_encode_return.ImplicitArgs", - "members": {}, - "size": 0, - "type": "struct" - }, - "__wrappers__.getUris_encode_return.Return": { - "cairo_type": "(range_check_ptr: felt, data_len: felt, data: felt*)", - "type": "type_definition" - }, - "__wrappers__.getUris_encode_return.SIZEOF_LOCALS": { - "type": "const", - "value": 3 - }, - "__wrappers__.getUris_encode_return.memcpy": { - "destination": "starkware.cairo.common.memcpy.memcpy", - "type": "alias" - }, - "__wrappers__.setUris": { - "decorators": [ - "external" - ], - "pc": 811, - "type": "function" - }, - "__wrappers__.setUris.Args": { - "full_name": "__wrappers__.setUris.Args", - "members": {}, - "size": 0, - "type": "struct" - }, - "__wrappers__.setUris.ImplicitArgs": { - "full_name": "__wrappers__.setUris.ImplicitArgs", - "members": {}, - "size": 0, - "type": "struct" - }, - "__wrappers__.setUris.Return": { - "cairo_type": "(syscall_ptr: felt*, pedersen_ptr: starkware.cairo.common.cairo_builtins.HashBuiltin*, range_check_ptr: felt, size: felt, retdata: felt*)", - "type": "type_definition" - }, - "__wrappers__.setUris.SIZEOF_LOCALS": { - "type": "const", - "value": 0 - }, - "__wrappers__.setUris.__wrapped_func": { - "destination": "__main__.setUris", - "type": "alias" - }, - "__wrappers__.setUris_encode_return.memcpy": { - "destination": "starkware.cairo.common.memcpy.memcpy", - "type": "alias" - }, - "__wrappers__.testUris": { - "decorators": [ - "view" - ], - "pc": 762, - "type": "function" - }, - "__wrappers__.testUris.Args": { - "full_name": "__wrappers__.testUris.Args", - "members": {}, - "size": 0, - "type": "struct" - }, - "__wrappers__.testUris.ImplicitArgs": { - "full_name": "__wrappers__.testUris.ImplicitArgs", - "members": {}, - "size": 0, - "type": "struct" - }, - "__wrappers__.testUris.Return": { - "cairo_type": "(syscall_ptr: felt*, pedersen_ptr: starkware.cairo.common.cairo_builtins.HashBuiltin*, range_check_ptr: felt, size: felt, retdata: felt*)", - "type": "type_definition" - }, - "__wrappers__.testUris.SIZEOF_LOCALS": { - "type": "const", - "value": 2 - }, - "__wrappers__.testUris.__wrapped_func": { - "destination": "__main__.testUris", - "type": "alias" - }, - "__wrappers__.testUris_encode_return": { - "decorators": [], - "pc": 743, - "type": "function" - }, - "__wrappers__.testUris_encode_return.Args": { - "full_name": "__wrappers__.testUris_encode_return.Args", - "members": { - "range_check_ptr": { - "cairo_type": "felt", - "offset": 2 - }, - "ret_value": { - "cairo_type": "(uri_len: felt, uri: felt*)", - "offset": 0 - } - }, - "size": 3, - "type": "struct" - }, - "__wrappers__.testUris_encode_return.ImplicitArgs": { - "full_name": "__wrappers__.testUris_encode_return.ImplicitArgs", - "members": {}, - "size": 0, - "type": "struct" - }, - "__wrappers__.testUris_encode_return.Return": { - "cairo_type": "(range_check_ptr: felt, data_len: felt, data: felt*)", - "type": "type_definition" - }, - "__wrappers__.testUris_encode_return.SIZEOF_LOCALS": { - "type": "const", - "value": 3 - }, - "__wrappers__.testUris_encode_return.memcpy": { - "destination": "starkware.cairo.common.memcpy.memcpy", - "type": "alias" - }, - "__wrappers__.token_uri": { - "decorators": [ - "view" - ], - "pc": 956, - "type": "function" - }, - "__wrappers__.token_uri.Args": { - "full_name": "__wrappers__.token_uri.Args", - "members": {}, - "size": 0, - "type": "struct" - }, - "__wrappers__.token_uri.ImplicitArgs": { - "full_name": "__wrappers__.token_uri.ImplicitArgs", - "members": {}, - "size": 0, - "type": "struct" - }, - "__wrappers__.token_uri.Return": { - "cairo_type": "(syscall_ptr: felt*, pedersen_ptr: starkware.cairo.common.cairo_builtins.HashBuiltin*, range_check_ptr: felt, size: felt, retdata: felt*)", - "type": "type_definition" - }, - "__wrappers__.token_uri.SIZEOF_LOCALS": { - "type": "const", - "value": 2 - }, - "__wrappers__.token_uri.__wrapped_func": { - "destination": "__main__.token_uri", - "type": "alias" - }, - "__wrappers__.token_uri_encode_return": { - "decorators": [], - "pc": 937, - "type": "function" - }, - "__wrappers__.token_uri_encode_return.Args": { - "full_name": "__wrappers__.token_uri_encode_return.Args", - "members": { - "range_check_ptr": { - "cairo_type": "felt", - "offset": 2 - }, - "ret_value": { - "cairo_type": "(token_uri_len: felt, token_uri: felt*)", - "offset": 0 - } - }, - "size": 3, - "type": "struct" - }, - "__wrappers__.token_uri_encode_return.ImplicitArgs": { - "full_name": "__wrappers__.token_uri_encode_return.ImplicitArgs", - "members": {}, - "size": 0, - "type": "struct" - }, - "__wrappers__.token_uri_encode_return.Return": { - "cairo_type": "(range_check_ptr: felt, data_len: felt, data: felt*)", - "type": "type_definition" - }, - "__wrappers__.token_uri_encode_return.SIZEOF_LOCALS": { - "type": "const", - "value": 3 - }, - "__wrappers__.token_uri_encode_return.memcpy": { - "destination": "starkware.cairo.common.memcpy.memcpy", - "type": "alias" - }, - "__wrappers__.transferOwnership": { - "decorators": [ - "external" - ], - "pc": 845, - "type": "function" - }, - "__wrappers__.transferOwnership.Args": { - "full_name": "__wrappers__.transferOwnership.Args", - "members": {}, - "size": 0, - "type": "struct" - }, - "__wrappers__.transferOwnership.ImplicitArgs": { - "full_name": "__wrappers__.transferOwnership.ImplicitArgs", - "members": {}, - "size": 0, - "type": "struct" - }, - "__wrappers__.transferOwnership.Return": { - "cairo_type": "(syscall_ptr: felt*, pedersen_ptr: starkware.cairo.common.cairo_builtins.HashBuiltin*, range_check_ptr: felt, size: felt, retdata: felt*)", - "type": "type_definition" - }, - "__wrappers__.transferOwnership.SIZEOF_LOCALS": { - "type": "const", - "value": 0 - }, - "__wrappers__.transferOwnership.__wrapped_func": { - "destination": "__main__.transferOwnership", - "type": "alias" - }, - "__wrappers__.transferOwnership_encode_return.memcpy": { - "destination": "starkware.cairo.common.memcpy.memcpy", - "type": "alias" - }, - "openzeppelin.access.ownable.library.HashBuiltin": { - "destination": "starkware.cairo.common.cairo_builtins.HashBuiltin", - "type": "alias" - }, - "openzeppelin.access.ownable.library.Ownable": { - "type": "namespace" - }, - "openzeppelin.access.ownable.library.Ownable.Args": { - "full_name": "openzeppelin.access.ownable.library.Ownable.Args", - "members": {}, - "size": 0, - "type": "struct" - }, - "openzeppelin.access.ownable.library.Ownable.ImplicitArgs": { - "full_name": "openzeppelin.access.ownable.library.Ownable.ImplicitArgs", - "members": {}, - "size": 0, - "type": "struct" - }, - "openzeppelin.access.ownable.library.Ownable.Return": { - "cairo_type": "()", - "type": "type_definition" - }, - "openzeppelin.access.ownable.library.Ownable.SIZEOF_LOCALS": { - "type": "const", - "value": 0 - }, - "openzeppelin.access.ownable.library.Ownable._transfer_ownership": { - "decorators": [], - "pc": 352, - "type": "function" - }, - "openzeppelin.access.ownable.library.Ownable._transfer_ownership.Args": { - "full_name": "openzeppelin.access.ownable.library.Ownable._transfer_ownership.Args", - "members": { - "new_owner": { - "cairo_type": "felt", - "offset": 0 - } - }, - "size": 1, - "type": "struct" - }, - "openzeppelin.access.ownable.library.Ownable._transfer_ownership.ImplicitArgs": { - "full_name": "openzeppelin.access.ownable.library.Ownable._transfer_ownership.ImplicitArgs", - "members": { - "pedersen_ptr": { - "cairo_type": "starkware.cairo.common.cairo_builtins.HashBuiltin*", - "offset": 1 - }, - "range_check_ptr": { - "cairo_type": "felt", - "offset": 2 - }, - "syscall_ptr": { - "cairo_type": "felt*", - "offset": 0 - } - }, - "size": 3, - "type": "struct" - }, - "openzeppelin.access.ownable.library.Ownable._transfer_ownership.Return": { - "cairo_type": "()", - "type": "type_definition" - }, - "openzeppelin.access.ownable.library.Ownable._transfer_ownership.SIZEOF_LOCALS": { - "type": "const", - "value": 0 - }, - "openzeppelin.access.ownable.library.Ownable.assert_only_owner": { - "decorators": [], - "pc": 319, - "type": "function" - }, - "openzeppelin.access.ownable.library.Ownable.assert_only_owner.Args": { - "full_name": "openzeppelin.access.ownable.library.Ownable.assert_only_owner.Args", - "members": {}, - "size": 0, - "type": "struct" - }, - "openzeppelin.access.ownable.library.Ownable.assert_only_owner.ImplicitArgs": { - "full_name": "openzeppelin.access.ownable.library.Ownable.assert_only_owner.ImplicitArgs", - "members": { - "pedersen_ptr": { - "cairo_type": "starkware.cairo.common.cairo_builtins.HashBuiltin*", - "offset": 1 - }, - "range_check_ptr": { - "cairo_type": "felt", - "offset": 2 - }, - "syscall_ptr": { - "cairo_type": "felt*", - "offset": 0 - } - }, - "size": 3, - "type": "struct" - }, - "openzeppelin.access.ownable.library.Ownable.assert_only_owner.Return": { - "cairo_type": "()", - "type": "type_definition" - }, - "openzeppelin.access.ownable.library.Ownable.assert_only_owner.SIZEOF_LOCALS": { - "type": "const", - "value": 0 - }, - "openzeppelin.access.ownable.library.Ownable.initializer": { - "decorators": [], - "pc": 312, - "type": "function" - }, - "openzeppelin.access.ownable.library.Ownable.initializer.Args": { - "full_name": "openzeppelin.access.ownable.library.Ownable.initializer.Args", - "members": { - "owner": { - "cairo_type": "felt", - "offset": 0 - } - }, - "size": 1, - "type": "struct" - }, - "openzeppelin.access.ownable.library.Ownable.initializer.ImplicitArgs": { - "full_name": "openzeppelin.access.ownable.library.Ownable.initializer.ImplicitArgs", - "members": { - "pedersen_ptr": { - "cairo_type": "starkware.cairo.common.cairo_builtins.HashBuiltin*", - "offset": 1 - }, - "range_check_ptr": { - "cairo_type": "felt", - "offset": 2 - }, - "syscall_ptr": { - "cairo_type": "felt*", - "offset": 0 - } - }, - "size": 3, - "type": "struct" - }, - "openzeppelin.access.ownable.library.Ownable.initializer.Return": { - "cairo_type": "()", - "type": "type_definition" - }, - "openzeppelin.access.ownable.library.Ownable.initializer.SIZEOF_LOCALS": { - "type": "const", - "value": 0 - }, - "openzeppelin.access.ownable.library.Ownable.owner": { - "decorators": [], - "pc": 334, - "type": "function" - }, - "openzeppelin.access.ownable.library.Ownable.owner.Args": { - "full_name": "openzeppelin.access.ownable.library.Ownable.owner.Args", - "members": {}, - "size": 0, - "type": "struct" - }, - "openzeppelin.access.ownable.library.Ownable.owner.ImplicitArgs": { - "full_name": "openzeppelin.access.ownable.library.Ownable.owner.ImplicitArgs", - "members": { - "pedersen_ptr": { - "cairo_type": "starkware.cairo.common.cairo_builtins.HashBuiltin*", - "offset": 1 - }, - "range_check_ptr": { - "cairo_type": "felt", - "offset": 2 - }, - "syscall_ptr": { - "cairo_type": "felt*", - "offset": 0 - } - }, - "size": 3, - "type": "struct" - }, - "openzeppelin.access.ownable.library.Ownable.owner.Return": { - "cairo_type": "(owner: felt)", - "type": "type_definition" - }, - "openzeppelin.access.ownable.library.Ownable.owner.SIZEOF_LOCALS": { - "type": "const", - "value": 0 - }, - "openzeppelin.access.ownable.library.Ownable.transfer_ownership": { - "decorators": [], - "pc": 340, - "type": "function" - }, - "openzeppelin.access.ownable.library.Ownable.transfer_ownership.Args": { - "full_name": "openzeppelin.access.ownable.library.Ownable.transfer_ownership.Args", - "members": { - "new_owner": { - "cairo_type": "felt", - "offset": 0 - } - }, - "size": 1, - "type": "struct" - }, - "openzeppelin.access.ownable.library.Ownable.transfer_ownership.ImplicitArgs": { - "full_name": "openzeppelin.access.ownable.library.Ownable.transfer_ownership.ImplicitArgs", - "members": { - "pedersen_ptr": { - "cairo_type": "starkware.cairo.common.cairo_builtins.HashBuiltin*", - "offset": 1 - }, - "range_check_ptr": { - "cairo_type": "felt", - "offset": 2 - }, - "syscall_ptr": { - "cairo_type": "felt*", - "offset": 0 - } - }, - "size": 3, - "type": "struct" - }, - "openzeppelin.access.ownable.library.Ownable.transfer_ownership.Return": { - "cairo_type": "()", - "type": "type_definition" - }, - "openzeppelin.access.ownable.library.Ownable.transfer_ownership.SIZEOF_LOCALS": { - "type": "const", - "value": 0 - }, - "openzeppelin.access.ownable.library.Ownable_owner": { - "type": "namespace" - }, - "openzeppelin.access.ownable.library.Ownable_owner.Args": { - "full_name": "openzeppelin.access.ownable.library.Ownable_owner.Args", - "members": {}, - "size": 0, - "type": "struct" - }, - "openzeppelin.access.ownable.library.Ownable_owner.HashBuiltin": { - "destination": "starkware.cairo.common.cairo_builtins.HashBuiltin", - "type": "alias" - }, - "openzeppelin.access.ownable.library.Ownable_owner.ImplicitArgs": { - "full_name": "openzeppelin.access.ownable.library.Ownable_owner.ImplicitArgs", - "members": {}, - "size": 0, - "type": "struct" - }, - "openzeppelin.access.ownable.library.Ownable_owner.Return": { - "cairo_type": "()", - "type": "type_definition" - }, - "openzeppelin.access.ownable.library.Ownable_owner.SIZEOF_LOCALS": { - "type": "const", - "value": 0 - }, - "openzeppelin.access.ownable.library.Ownable_owner.addr": { - "decorators": [], - "pc": 282, - "type": "function" - }, - "openzeppelin.access.ownable.library.Ownable_owner.addr.Args": { - "full_name": "openzeppelin.access.ownable.library.Ownable_owner.addr.Args", - "members": {}, - "size": 0, - "type": "struct" - }, - "openzeppelin.access.ownable.library.Ownable_owner.addr.ImplicitArgs": { - "full_name": "openzeppelin.access.ownable.library.Ownable_owner.addr.ImplicitArgs", - "members": { - "pedersen_ptr": { - "cairo_type": "starkware.cairo.common.cairo_builtins.HashBuiltin*", - "offset": 0 - }, - "range_check_ptr": { - "cairo_type": "felt", - "offset": 1 - } - }, - "size": 2, - "type": "struct" - }, - "openzeppelin.access.ownable.library.Ownable_owner.addr.Return": { - "cairo_type": "(res: felt)", - "type": "type_definition" - }, - "openzeppelin.access.ownable.library.Ownable_owner.addr.SIZEOF_LOCALS": { - "type": "const", - "value": 0 - }, - "openzeppelin.access.ownable.library.Ownable_owner.hash2": { - "destination": "starkware.cairo.common.hash.hash2", - "type": "alias" - }, - "openzeppelin.access.ownable.library.Ownable_owner.normalize_address": { - "destination": "starkware.starknet.common.storage.normalize_address", - "type": "alias" - }, - "openzeppelin.access.ownable.library.Ownable_owner.read": { - "decorators": [], - "pc": 287, - "type": "function" - }, - "openzeppelin.access.ownable.library.Ownable_owner.read.Args": { - "full_name": "openzeppelin.access.ownable.library.Ownable_owner.read.Args", - "members": {}, - "size": 0, - "type": "struct" - }, - "openzeppelin.access.ownable.library.Ownable_owner.read.ImplicitArgs": { - "full_name": "openzeppelin.access.ownable.library.Ownable_owner.read.ImplicitArgs", - "members": { - "pedersen_ptr": { - "cairo_type": "starkware.cairo.common.cairo_builtins.HashBuiltin*", - "offset": 1 - }, - "range_check_ptr": { - "cairo_type": "felt", - "offset": 2 - }, - "syscall_ptr": { - "cairo_type": "felt*", - "offset": 0 - } - }, - "size": 3, - "type": "struct" - }, - "openzeppelin.access.ownable.library.Ownable_owner.read.Return": { - "cairo_type": "(owner: felt)", - "type": "type_definition" - }, - "openzeppelin.access.ownable.library.Ownable_owner.read.SIZEOF_LOCALS": { - "type": "const", - "value": 0 - }, - "openzeppelin.access.ownable.library.Ownable_owner.storage_read": { - "destination": "starkware.starknet.common.syscalls.storage_read", - "type": "alias" - }, - "openzeppelin.access.ownable.library.Ownable_owner.storage_write": { - "destination": "starkware.starknet.common.syscalls.storage_write", - "type": "alias" - }, - "openzeppelin.access.ownable.library.Ownable_owner.write": { - "decorators": [], - "pc": 300, - "type": "function" - }, - "openzeppelin.access.ownable.library.Ownable_owner.write.Args": { - "full_name": "openzeppelin.access.ownable.library.Ownable_owner.write.Args", - "members": { - "value": { - "cairo_type": "felt", - "offset": 0 - } - }, - "size": 1, - "type": "struct" - }, - "openzeppelin.access.ownable.library.Ownable_owner.write.ImplicitArgs": { - "full_name": "openzeppelin.access.ownable.library.Ownable_owner.write.ImplicitArgs", - "members": { - "pedersen_ptr": { - "cairo_type": "starkware.cairo.common.cairo_builtins.HashBuiltin*", - "offset": 1 - }, - "range_check_ptr": { - "cairo_type": "felt", - "offset": 2 - }, - "syscall_ptr": { - "cairo_type": "felt*", - "offset": 0 - } - }, - "size": 3, - "type": "struct" - }, - "openzeppelin.access.ownable.library.Ownable_owner.write.Return": { - "cairo_type": "()", - "type": "type_definition" - }, - "openzeppelin.access.ownable.library.Ownable_owner.write.SIZEOF_LOCALS": { - "type": "const", - "value": 0 - }, - "openzeppelin.access.ownable.library.OwnershipTransferred": { - "type": "namespace" - }, - "openzeppelin.access.ownable.library.OwnershipTransferred.Args": { - "full_name": "openzeppelin.access.ownable.library.OwnershipTransferred.Args", - "members": {}, - "size": 0, - "type": "struct" - }, - "openzeppelin.access.ownable.library.OwnershipTransferred.ImplicitArgs": { - "full_name": "openzeppelin.access.ownable.library.OwnershipTransferred.ImplicitArgs", - "members": {}, - "size": 0, - "type": "struct" - }, - "openzeppelin.access.ownable.library.OwnershipTransferred.Return": { - "cairo_type": "()", - "type": "type_definition" - }, - "openzeppelin.access.ownable.library.OwnershipTransferred.SELECTOR": { - "type": "const", - "value": 553132481214675521502977957974509639062080100631756862105218886163371506175 - }, - "openzeppelin.access.ownable.library.OwnershipTransferred.SIZEOF_LOCALS": { - "type": "const", - "value": 0 - }, - "openzeppelin.access.ownable.library.OwnershipTransferred.alloc": { - "destination": "starkware.cairo.common.alloc.alloc", - "type": "alias" - }, - "openzeppelin.access.ownable.library.OwnershipTransferred.emit": { - "decorators": [], - "pc": 257, - "type": "function" - }, - "openzeppelin.access.ownable.library.OwnershipTransferred.emit.Args": { - "full_name": "openzeppelin.access.ownable.library.OwnershipTransferred.emit.Args", - "members": { - "newOwner": { - "cairo_type": "felt", - "offset": 1 - }, - "previousOwner": { - "cairo_type": "felt", - "offset": 0 - } - }, - "size": 2, - "type": "struct" - }, - "openzeppelin.access.ownable.library.OwnershipTransferred.emit.ImplicitArgs": { - "full_name": "openzeppelin.access.ownable.library.OwnershipTransferred.emit.ImplicitArgs", - "members": { - "range_check_ptr": { - "cairo_type": "felt", - "offset": 1 - }, - "syscall_ptr": { - "cairo_type": "felt*", - "offset": 0 - } - }, - "size": 2, - "type": "struct" - }, - "openzeppelin.access.ownable.library.OwnershipTransferred.emit.Return": { - "cairo_type": "()", - "type": "type_definition" - }, - "openzeppelin.access.ownable.library.OwnershipTransferred.emit.SIZEOF_LOCALS": { - "type": "const", - "value": 2 - }, - "openzeppelin.access.ownable.library.OwnershipTransferred.emit_event": { - "destination": "starkware.starknet.common.syscalls.emit_event", - "type": "alias" - }, - "openzeppelin.access.ownable.library.OwnershipTransferred.memcpy": { - "destination": "starkware.cairo.common.memcpy.memcpy", - "type": "alias" - }, - "openzeppelin.access.ownable.library.assert_not_zero": { - "destination": "starkware.cairo.common.math.assert_not_zero", - "type": "alias" - }, - "openzeppelin.access.ownable.library.get_caller_address": { - "destination": "starkware.starknet.common.syscalls.get_caller_address", - "type": "alias" - }, - "starkware.cairo.common.alloc.alloc": { - "decorators": [], - "pc": 0, - "type": "function" - }, - "starkware.cairo.common.alloc.alloc.Args": { - "full_name": "starkware.cairo.common.alloc.alloc.Args", - "members": {}, - "size": 0, - "type": "struct" - }, - "starkware.cairo.common.alloc.alloc.ImplicitArgs": { - "full_name": "starkware.cairo.common.alloc.alloc.ImplicitArgs", - "members": {}, - "size": 0, - "type": "struct" - }, - "starkware.cairo.common.alloc.alloc.Return": { - "cairo_type": "(ptr: felt*)", - "type": "type_definition" - }, - "starkware.cairo.common.alloc.alloc.SIZEOF_LOCALS": { - "type": "const", - "value": 0 - }, - "starkware.cairo.common.bool.FALSE": { - "type": "const", - "value": 0 - }, - "starkware.cairo.common.bool.TRUE": { - "type": "const", - "value": 1 - }, - "starkware.cairo.common.cairo_builtins.BitwiseBuiltin": { - "full_name": "starkware.cairo.common.cairo_builtins.BitwiseBuiltin", - "members": { - "x": { - "cairo_type": "felt", - "offset": 0 - }, - "x_and_y": { - "cairo_type": "felt", - "offset": 2 - }, - "x_or_y": { - "cairo_type": "felt", - "offset": 4 - }, - "x_xor_y": { - "cairo_type": "felt", - "offset": 3 - }, - "y": { - "cairo_type": "felt", - "offset": 1 - } - }, - "size": 5, - "type": "struct" - }, - "starkware.cairo.common.cairo_builtins.EcOpBuiltin": { - "full_name": "starkware.cairo.common.cairo_builtins.EcOpBuiltin", - "members": { - "m": { - "cairo_type": "felt", - "offset": 4 - }, - "p": { - "cairo_type": "starkware.cairo.common.ec_point.EcPoint", - "offset": 0 - }, - "q": { - "cairo_type": "starkware.cairo.common.ec_point.EcPoint", - "offset": 2 - }, - "r": { - "cairo_type": "starkware.cairo.common.ec_point.EcPoint", - "offset": 5 - } - }, - "size": 7, - "type": "struct" - }, - "starkware.cairo.common.cairo_builtins.EcPoint": { - "destination": "starkware.cairo.common.ec_point.EcPoint", - "type": "alias" - }, - "starkware.cairo.common.cairo_builtins.HashBuiltin": { - "full_name": "starkware.cairo.common.cairo_builtins.HashBuiltin", - "members": { - "result": { - "cairo_type": "felt", - "offset": 2 - }, - "x": { - "cairo_type": "felt", - "offset": 0 - }, - "y": { - "cairo_type": "felt", - "offset": 1 - } - }, - "size": 3, - "type": "struct" - }, - "starkware.cairo.common.cairo_builtins.KeccakBuiltin": { - "full_name": "starkware.cairo.common.cairo_builtins.KeccakBuiltin", - "members": { - "input": { - "cairo_type": "starkware.cairo.common.keccak_state.KeccakBuiltinState", - "offset": 0 - }, - "output": { - "cairo_type": "starkware.cairo.common.keccak_state.KeccakBuiltinState", - "offset": 8 - } - }, - "size": 16, - "type": "struct" - }, - "starkware.cairo.common.cairo_builtins.KeccakBuiltinState": { - "destination": "starkware.cairo.common.keccak_state.KeccakBuiltinState", - "type": "alias" - }, - "starkware.cairo.common.cairo_builtins.PoseidonBuiltin": { - "full_name": "starkware.cairo.common.cairo_builtins.PoseidonBuiltin", - "members": { - "input": { - "cairo_type": "starkware.cairo.common.poseidon_state.PoseidonBuiltinState", - "offset": 0 - }, - "output": { - "cairo_type": "starkware.cairo.common.poseidon_state.PoseidonBuiltinState", - "offset": 3 - } - }, - "size": 6, - "type": "struct" - }, - "starkware.cairo.common.cairo_builtins.PoseidonBuiltinState": { - "destination": "starkware.cairo.common.poseidon_state.PoseidonBuiltinState", - "type": "alias" - }, - "starkware.cairo.common.cairo_builtins.SignatureBuiltin": { - "full_name": "starkware.cairo.common.cairo_builtins.SignatureBuiltin", - "members": { - "message": { - "cairo_type": "felt", - "offset": 1 - }, - "pub_key": { - "cairo_type": "felt", - "offset": 0 - } - }, - "size": 2, - "type": "struct" - }, - "starkware.cairo.common.dict_access.DictAccess": { - "full_name": "starkware.cairo.common.dict_access.DictAccess", - "members": { - "key": { - "cairo_type": "felt", - "offset": 0 - }, - "new_value": { - "cairo_type": "felt", - "offset": 2 - }, - "prev_value": { - "cairo_type": "felt", - "offset": 1 - } - }, - "size": 3, - "type": "struct" - }, - "starkware.cairo.common.ec_point.EcPoint": { - "full_name": "starkware.cairo.common.ec_point.EcPoint", - "members": { - "x": { - "cairo_type": "felt", - "offset": 0 - }, - "y": { - "cairo_type": "felt", - "offset": 1 - } - }, - "size": 2, - "type": "struct" - }, - "starkware.cairo.common.hash.HashBuiltin": { - "destination": "starkware.cairo.common.cairo_builtins.HashBuiltin", - "type": "alias" - }, - "starkware.cairo.common.hash.hash2": { - "decorators": [], - "pc": 3, - "type": "function" - }, - "starkware.cairo.common.hash.hash2.Args": { - "full_name": "starkware.cairo.common.hash.hash2.Args", - "members": { - "x": { - "cairo_type": "felt", - "offset": 0 - }, - "y": { - "cairo_type": "felt", - "offset": 1 - } - }, - "size": 2, - "type": "struct" - }, - "starkware.cairo.common.hash.hash2.ImplicitArgs": { - "full_name": "starkware.cairo.common.hash.hash2.ImplicitArgs", - "members": { - "hash_ptr": { - "cairo_type": "starkware.cairo.common.cairo_builtins.HashBuiltin*", - "offset": 0 - } - }, - "size": 1, - "type": "struct" - }, - "starkware.cairo.common.hash.hash2.Return": { - "cairo_type": "(result: felt)", - "type": "type_definition" - }, - "starkware.cairo.common.hash.hash2.SIZEOF_LOCALS": { - "type": "const", - "value": 0 - }, - "starkware.cairo.common.keccak_state.KeccakBuiltinState": { - "full_name": "starkware.cairo.common.keccak_state.KeccakBuiltinState", - "members": { - "s0": { - "cairo_type": "felt", - "offset": 0 - }, - "s1": { - "cairo_type": "felt", - "offset": 1 - }, - "s2": { - "cairo_type": "felt", - "offset": 2 - }, - "s3": { - "cairo_type": "felt", - "offset": 3 - }, - "s4": { - "cairo_type": "felt", - "offset": 4 - }, - "s5": { - "cairo_type": "felt", - "offset": 5 - }, - "s6": { - "cairo_type": "felt", - "offset": 6 - }, - "s7": { - "cairo_type": "felt", - "offset": 7 - } - }, - "size": 8, - "type": "struct" - }, - "starkware.cairo.common.math.FALSE": { - "destination": "starkware.cairo.common.bool.FALSE", - "type": "alias" - }, - "starkware.cairo.common.math.TRUE": { - "destination": "starkware.cairo.common.bool.TRUE", - "type": "alias" - }, - "starkware.cairo.common.math.abs_value": { - "decorators": [ - "known_ap_change" - ], - "pc": 126, - "type": "function" - }, - "starkware.cairo.common.math.abs_value.Args": { - "full_name": "starkware.cairo.common.math.abs_value.Args", - "members": { - "value": { - "cairo_type": "felt", - "offset": 0 - } - }, - "size": 1, - "type": "struct" - }, - "starkware.cairo.common.math.abs_value.ImplicitArgs": { - "full_name": "starkware.cairo.common.math.abs_value.ImplicitArgs", - "members": { - "range_check_ptr": { - "cairo_type": "felt", - "offset": 0 - } - }, - "size": 1, - "type": "struct" - }, - "starkware.cairo.common.math.abs_value.Return": { - "cairo_type": "felt", - "type": "type_definition" - }, - "starkware.cairo.common.math.abs_value.SIZEOF_LOCALS": { - "type": "const", - "value": 0 - }, - "starkware.cairo.common.math.abs_value.is_positive": { - "cairo_type": "felt", - "full_name": "starkware.cairo.common.math.abs_value.is_positive", - "references": [ - { - "ap_tracking_data": { - "group": 10, - "offset": 1 - }, - "pc": 128, - "value": "[cast(ap + (-1), felt*)]" - } - ], - "type": "reference" - }, - "starkware.cairo.common.math.abs_value.value": { - "cairo_type": "felt", - "full_name": "starkware.cairo.common.math.abs_value.value", - "references": [ - { - "ap_tracking_data": { - "group": 10, - "offset": 0 - }, - "pc": 126, - "value": "[cast(fp + (-3), felt*)]" - } - ], - "type": "reference" - }, - "starkware.cairo.common.math.assert_250_bit": { - "decorators": [ - "known_ap_change" - ], - "pc": 39, - "type": "function" - }, - "starkware.cairo.common.math.assert_250_bit.Args": { - "full_name": "starkware.cairo.common.math.assert_250_bit.Args", - "members": { - "value": { - "cairo_type": "felt", - "offset": 0 - } - }, - "size": 1, - "type": "struct" - }, - "starkware.cairo.common.math.assert_250_bit.HIGH_BOUND": { - "type": "const", - "value": 5316911983139663491615228241121378304 - }, - "starkware.cairo.common.math.assert_250_bit.ImplicitArgs": { - "full_name": "starkware.cairo.common.math.assert_250_bit.ImplicitArgs", - "members": { - "range_check_ptr": { - "cairo_type": "felt", - "offset": 0 - } - }, - "size": 1, - "type": "struct" - }, - "starkware.cairo.common.math.assert_250_bit.Return": { - "cairo_type": "()", - "type": "type_definition" - }, - "starkware.cairo.common.math.assert_250_bit.SHIFT": { - "type": "const", - "value": 340282366920938463463374607431768211456 - }, - "starkware.cairo.common.math.assert_250_bit.SIZEOF_LOCALS": { - "type": "const", - "value": 0 - }, - "starkware.cairo.common.math.assert_250_bit.UPPER_BOUND": { - "type": "const", - "value": 1809251394333065553493296640760748560207343510400633813116524750123642650624 - }, - "starkware.cairo.common.math.assert_250_bit.high": { - "cairo_type": "felt", - "full_name": "starkware.cairo.common.math.assert_250_bit.high", - "references": [ - { - "ap_tracking_data": { - "group": 7, - "offset": 0 - }, - "pc": 39, - "value": "[cast([fp + (-4)] + 1, felt*)]" - } - ], - "type": "reference" - }, - "starkware.cairo.common.math.assert_250_bit.low": { - "cairo_type": "felt", - "full_name": "starkware.cairo.common.math.assert_250_bit.low", - "references": [ - { - "ap_tracking_data": { - "group": 7, - "offset": 0 - }, - "pc": 39, - "value": "[cast([fp + (-4)], felt*)]" - } - ], - "type": "reference" - }, - "starkware.cairo.common.math.assert_250_bit.value": { - "cairo_type": "felt", - "full_name": "starkware.cairo.common.math.assert_250_bit.value", - "references": [ - { - "ap_tracking_data": { - "group": 7, - "offset": 0 - }, - "pc": 39, - "value": "[cast(fp + (-3), felt*)]" - } - ], - "type": "reference" - }, - "starkware.cairo.common.math.assert_le": { - "decorators": [], - "pc": 34, - "type": "function" - }, - "starkware.cairo.common.math.assert_le.Args": { - "full_name": "starkware.cairo.common.math.assert_le.Args", - "members": { - "a": { - "cairo_type": "felt", - "offset": 0 - }, - "b": { - "cairo_type": "felt", - "offset": 1 - } - }, - "size": 2, - "type": "struct" - }, - "starkware.cairo.common.math.assert_le.ImplicitArgs": { - "full_name": "starkware.cairo.common.math.assert_le.ImplicitArgs", - "members": { - "range_check_ptr": { - "cairo_type": "felt", - "offset": 0 - } - }, - "size": 1, - "type": "struct" - }, - "starkware.cairo.common.math.assert_le.Return": { - "cairo_type": "()", - "type": "type_definition" - }, - "starkware.cairo.common.math.assert_le.SIZEOF_LOCALS": { - "type": "const", - "value": 0 - }, - "starkware.cairo.common.math.assert_le_felt": { - "decorators": [ - "known_ap_change" - ], - "pc": 81, - "type": "function" - }, - "starkware.cairo.common.math.assert_le_felt.Args": { - "full_name": "starkware.cairo.common.math.assert_le_felt.Args", - "members": { - "a": { - "cairo_type": "felt", - "offset": 0 - }, - "b": { - "cairo_type": "felt", - "offset": 1 - } - }, - "size": 2, - "type": "struct" - }, - "starkware.cairo.common.math.assert_le_felt.ImplicitArgs": { - "full_name": "starkware.cairo.common.math.assert_le_felt.ImplicitArgs", - "members": { - "range_check_ptr": { - "cairo_type": "felt", - "offset": 0 - } - }, - "size": 1, - "type": "struct" - }, - "starkware.cairo.common.math.assert_le_felt.PRIME_OVER_2_HIGH": { - "type": "const", - "value": 5316911983139663648412552867652567041 - }, - "starkware.cairo.common.math.assert_le_felt.PRIME_OVER_3_HIGH": { - "type": "const", - "value": 3544607988759775765608368578435044694 - }, - "starkware.cairo.common.math.assert_le_felt.Return": { - "cairo_type": "()", - "type": "type_definition" - }, - "starkware.cairo.common.math.assert_le_felt.SIZEOF_LOCALS": { - "type": "const", - "value": 0 - }, - "starkware.cairo.common.math.assert_le_felt.a": { - "cairo_type": "felt", - "full_name": "starkware.cairo.common.math.assert_le_felt.a", - "references": [ - { - "ap_tracking_data": { - "group": 9, - "offset": 0 - }, - "pc": 81, - "value": "[cast(fp + (-4), felt*)]" - } - ], - "type": "reference" - }, - "starkware.cairo.common.math.assert_le_felt.b": { - "cairo_type": "felt", - "full_name": "starkware.cairo.common.math.assert_le_felt.b", - "references": [ - { - "ap_tracking_data": { - "group": 9, - "offset": 0 - }, - "pc": 81, - "value": "[cast(fp + (-3), felt*)]" - } - ], - "type": "reference" - }, - "starkware.cairo.common.math.assert_le_felt.range_check_ptr": { - "cairo_type": "felt", - "full_name": "starkware.cairo.common.math.assert_le_felt.range_check_ptr", - "references": [ - { - "ap_tracking_data": { - "group": 9, - "offset": 0 - }, - "pc": 81, - "value": "[cast(fp + (-5), felt*)]" - }, - { - "ap_tracking_data": { - "group": 9, - "offset": 8 - }, - "pc": 91, - "value": "cast([fp + (-5)] + 4, felt)" - } - ], - "type": "reference" - }, - "starkware.cairo.common.math.assert_le_felt.skip_exclude_a": { - "pc": 105, - "type": "label" - }, - "starkware.cairo.common.math.assert_le_felt.skip_exclude_b_minus_a": { - "pc": 117, - "type": "label" - }, - "starkware.cairo.common.math.assert_nn": { - "decorators": [], - "pc": 30, - "type": "function" - }, - "starkware.cairo.common.math.assert_nn.Args": { - "full_name": "starkware.cairo.common.math.assert_nn.Args", - "members": { - "a": { - "cairo_type": "felt", - "offset": 0 - } - }, - "size": 1, - "type": "struct" - }, - "starkware.cairo.common.math.assert_nn.ImplicitArgs": { - "full_name": "starkware.cairo.common.math.assert_nn.ImplicitArgs", - "members": { - "range_check_ptr": { - "cairo_type": "felt", - "offset": 0 - } - }, - "size": 1, - "type": "struct" - }, - "starkware.cairo.common.math.assert_nn.Return": { - "cairo_type": "()", - "type": "type_definition" - }, - "starkware.cairo.common.math.assert_nn.SIZEOF_LOCALS": { - "type": "const", - "value": 0 - }, - "starkware.cairo.common.math.assert_nn.a": { - "cairo_type": "felt", - "full_name": "starkware.cairo.common.math.assert_nn.a", - "references": [ - { - "ap_tracking_data": { - "group": 5, - "offset": 0 - }, - "pc": 30, - "value": "[cast(fp + (-3), felt*)]" - } - ], - "type": "reference" - }, - "starkware.cairo.common.math.assert_not_zero": { - "decorators": [], - "pc": 25, - "type": "function" - }, - "starkware.cairo.common.math.assert_not_zero.Args": { - "full_name": "starkware.cairo.common.math.assert_not_zero.Args", - "members": { - "value": { - "cairo_type": "felt", - "offset": 0 - } - }, - "size": 1, - "type": "struct" - }, - "starkware.cairo.common.math.assert_not_zero.ImplicitArgs": { - "full_name": "starkware.cairo.common.math.assert_not_zero.ImplicitArgs", - "members": {}, - "size": 0, - "type": "struct" - }, - "starkware.cairo.common.math.assert_not_zero.Return": { - "cairo_type": "()", - "type": "type_definition" - }, - "starkware.cairo.common.math.assert_not_zero.SIZEOF_LOCALS": { - "type": "const", - "value": 0 - }, - "starkware.cairo.common.math.assert_not_zero.value": { - "cairo_type": "felt", - "full_name": "starkware.cairo.common.math.assert_not_zero.value", - "references": [ - { - "ap_tracking_data": { - "group": 4, - "offset": 0 - }, - "pc": 25, - "value": "[cast(fp + (-3), felt*)]" - } - ], - "type": "reference" - }, - "starkware.cairo.common.math.sign": { - "decorators": [ - "known_ap_change" - ], - "pc": 141, - "type": "function" - }, - "starkware.cairo.common.math.sign.Args": { - "full_name": "starkware.cairo.common.math.sign.Args", - "members": { - "value": { - "cairo_type": "felt", - "offset": 0 - } - }, - "size": 1, - "type": "struct" - }, - "starkware.cairo.common.math.sign.ImplicitArgs": { - "full_name": "starkware.cairo.common.math.sign.ImplicitArgs", - "members": { - "range_check_ptr": { - "cairo_type": "felt", - "offset": 0 - } - }, - "size": 1, - "type": "struct" - }, - "starkware.cairo.common.math.sign.Return": { - "cairo_type": "felt", - "type": "type_definition" - }, - "starkware.cairo.common.math.sign.SIZEOF_LOCALS": { - "type": "const", - "value": 0 - }, - "starkware.cairo.common.math.sign.is_positive": { - "cairo_type": "felt", - "full_name": "starkware.cairo.common.math.sign.is_positive", - "references": [ - { - "ap_tracking_data": { - "group": 11, - "offset": 1 - }, - "pc": 151, - "value": "[cast(ap + (-1), felt*)]" - } - ], - "type": "reference" - }, - "starkware.cairo.common.math.sign.value": { - "cairo_type": "felt", - "full_name": "starkware.cairo.common.math.sign.value", - "references": [ - { - "ap_tracking_data": { - "group": 11, - "offset": 0 - }, - "pc": 141, - "value": "[cast(fp + (-3), felt*)]" - } - ], - "type": "reference" - }, - "starkware.cairo.common.math.split_felt": { - "decorators": [ - "known_ap_change" - ], - "pc": 52, - "type": "function" - }, - "starkware.cairo.common.math.split_felt.Args": { - "full_name": "starkware.cairo.common.math.split_felt.Args", - "members": { - "value": { - "cairo_type": "felt", - "offset": 0 - } - }, - "size": 1, - "type": "struct" - }, - "starkware.cairo.common.math.split_felt.ImplicitArgs": { - "full_name": "starkware.cairo.common.math.split_felt.ImplicitArgs", - "members": { - "range_check_ptr": { - "cairo_type": "felt", - "offset": 0 - } - }, - "size": 1, - "type": "struct" - }, - "starkware.cairo.common.math.split_felt.MAX_HIGH": { - "type": "const", - "value": 10633823966279327296825105735305134080 - }, - "starkware.cairo.common.math.split_felt.MAX_LOW": { - "type": "const", - "value": 0 - }, - "starkware.cairo.common.math.split_felt.Return": { - "cairo_type": "(high: felt, low: felt)", - "type": "type_definition" - }, - "starkware.cairo.common.math.split_felt.SIZEOF_LOCALS": { - "type": "const", - "value": 0 - }, - "starkware.cairo.common.math.split_felt.high": { - "cairo_type": "felt", - "full_name": "starkware.cairo.common.math.split_felt.high", - "references": [ - { - "ap_tracking_data": { - "group": 8, - "offset": 0 - }, - "pc": 52, - "value": "[cast([fp + (-4)] + 1, felt*)]" - } - ], - "type": "reference" - }, - "starkware.cairo.common.math.split_felt.low": { - "cairo_type": "felt", - "full_name": "starkware.cairo.common.math.split_felt.low", - "references": [ - { - "ap_tracking_data": { - "group": 8, - "offset": 0 - }, - "pc": 52, - "value": "[cast([fp + (-4)], felt*)]" - } - ], - "type": "reference" - }, - "starkware.cairo.common.math.split_felt.value": { - "cairo_type": "felt", - "full_name": "starkware.cairo.common.math.split_felt.value", - "references": [ - { - "ap_tracking_data": { - "group": 8, - "offset": 0 - }, - "pc": 52, - "value": "[cast(fp + (-3), felt*)]" - } - ], - "type": "reference" - }, - "starkware.cairo.common.math.unsigned_div_rem": { - "decorators": [], - "pc": 169, - "type": "function" - }, - "starkware.cairo.common.math.unsigned_div_rem.Args": { - "full_name": "starkware.cairo.common.math.unsigned_div_rem.Args", - "members": { - "div": { - "cairo_type": "felt", - "offset": 1 - }, - "value": { - "cairo_type": "felt", - "offset": 0 - } - }, - "size": 2, - "type": "struct" - }, - "starkware.cairo.common.math.unsigned_div_rem.ImplicitArgs": { - "full_name": "starkware.cairo.common.math.unsigned_div_rem.ImplicitArgs", - "members": { - "range_check_ptr": { - "cairo_type": "felt", - "offset": 0 - } - }, - "size": 1, - "type": "struct" - }, - "starkware.cairo.common.math.unsigned_div_rem.Return": { - "cairo_type": "(q: felt, r: felt)", - "type": "type_definition" - }, - "starkware.cairo.common.math.unsigned_div_rem.SIZEOF_LOCALS": { - "type": "const", - "value": 0 - }, - "starkware.cairo.common.math.unsigned_div_rem.div": { - "cairo_type": "felt", - "full_name": "starkware.cairo.common.math.unsigned_div_rem.div", - "references": [ - { - "ap_tracking_data": { - "group": 12, - "offset": 0 - }, - "pc": 169, - "value": "[cast(fp + (-3), felt*)]" - } - ], - "type": "reference" - }, - "starkware.cairo.common.math.unsigned_div_rem.q": { - "cairo_type": "felt", - "full_name": "starkware.cairo.common.math.unsigned_div_rem.q", - "references": [ - { - "ap_tracking_data": { - "group": 12, - "offset": 0 - }, - "pc": 169, - "value": "[cast([fp + (-5)] + 1, felt*)]" - } - ], - "type": "reference" - }, - "starkware.cairo.common.math.unsigned_div_rem.r": { - "cairo_type": "felt", - "full_name": "starkware.cairo.common.math.unsigned_div_rem.r", - "references": [ - { - "ap_tracking_data": { - "group": 12, - "offset": 0 - }, - "pc": 169, - "value": "[cast([fp + (-5)], felt*)]" - } - ], - "type": "reference" - }, - "starkware.cairo.common.math.unsigned_div_rem.value": { - "cairo_type": "felt", - "full_name": "starkware.cairo.common.math.unsigned_div_rem.value", - "references": [ - { - "ap_tracking_data": { - "group": 12, - "offset": 0 - }, - "pc": 169, - "value": "[cast(fp + (-4), felt*)]" - } - ], - "type": "reference" - }, - "starkware.cairo.common.math_cmp.RC_BOUND": { - "type": "const", - "value": 340282366920938463463374607431768211456 - }, - "starkware.cairo.common.math_cmp.assert_le_felt": { - "destination": "starkware.cairo.common.math.assert_le_felt", - "type": "alias" - }, - "starkware.cairo.common.math_cmp.assert_lt_felt": { - "destination": "starkware.cairo.common.math.assert_lt_felt", - "type": "alias" - }, - "starkware.cairo.common.math_cmp.is_le": { - "decorators": [ - "known_ap_change" - ], - "pc": 406, - "type": "function" - }, - "starkware.cairo.common.math_cmp.is_le.Args": { - "full_name": "starkware.cairo.common.math_cmp.is_le.Args", - "members": { - "a": { - "cairo_type": "felt", - "offset": 0 - }, - "b": { - "cairo_type": "felt", - "offset": 1 - } - }, - "size": 2, - "type": "struct" - }, - "starkware.cairo.common.math_cmp.is_le.ImplicitArgs": { - "full_name": "starkware.cairo.common.math_cmp.is_le.ImplicitArgs", - "members": { - "range_check_ptr": { - "cairo_type": "felt", - "offset": 0 - } - }, - "size": 1, - "type": "struct" - }, - "starkware.cairo.common.math_cmp.is_le.Return": { - "cairo_type": "felt", - "type": "type_definition" - }, - "starkware.cairo.common.math_cmp.is_le.SIZEOF_LOCALS": { - "type": "const", - "value": 0 - }, - "starkware.cairo.common.math_cmp.is_nn": { - "decorators": [ - "known_ap_change" - ], - "pc": 373, - "type": "function" - }, - "starkware.cairo.common.math_cmp.is_nn.Args": { - "full_name": "starkware.cairo.common.math_cmp.is_nn.Args", - "members": { - "a": { - "cairo_type": "felt", - "offset": 0 - } - }, - "size": 1, - "type": "struct" - }, - "starkware.cairo.common.math_cmp.is_nn.ImplicitArgs": { - "full_name": "starkware.cairo.common.math_cmp.is_nn.ImplicitArgs", - "members": { - "range_check_ptr": { - "cairo_type": "felt", - "offset": 0 - } - }, - "size": 1, - "type": "struct" - }, - "starkware.cairo.common.math_cmp.is_nn.Return": { - "cairo_type": "felt", - "type": "type_definition" - }, - "starkware.cairo.common.math_cmp.is_nn.SIZEOF_LOCALS": { - "type": "const", - "value": 0 - }, - "starkware.cairo.common.math_cmp.is_nn.a": { - "cairo_type": "felt", - "full_name": "starkware.cairo.common.math_cmp.is_nn.a", - "references": [ - { - "ap_tracking_data": { - "group": 31, - "offset": 0 - }, - "pc": 373, - "value": "[cast(fp + (-3), felt*)]" - } - ], - "type": "reference" - }, - "starkware.cairo.common.math_cmp.is_nn.need_felt_comparison": { - "pc": 397, - "type": "label" - }, - "starkware.cairo.common.math_cmp.is_nn.out_of_range": { - "pc": 383, - "type": "label" - }, - "starkware.cairo.common.memcpy.memcpy": { - "decorators": [], - "pc": 9, - "type": "function" - }, - "starkware.cairo.common.memcpy.memcpy.Args": { - "full_name": "starkware.cairo.common.memcpy.memcpy.Args", - "members": { - "dst": { - "cairo_type": "felt*", - "offset": 0 - }, - "len": { - "cairo_type": "felt", - "offset": 2 - }, - "src": { - "cairo_type": "felt*", - "offset": 1 - } - }, - "size": 3, - "type": "struct" - }, - "starkware.cairo.common.memcpy.memcpy.ImplicitArgs": { - "full_name": "starkware.cairo.common.memcpy.memcpy.ImplicitArgs", - "members": {}, - "size": 0, - "type": "struct" - }, - "starkware.cairo.common.memcpy.memcpy.LoopFrame": { - "full_name": "starkware.cairo.common.memcpy.memcpy.LoopFrame", - "members": { - "dst": { - "cairo_type": "felt*", - "offset": 0 - }, - "src": { - "cairo_type": "felt*", - "offset": 1 - } - }, - "size": 2, - "type": "struct" - }, - "starkware.cairo.common.memcpy.memcpy.Return": { - "cairo_type": "()", - "type": "type_definition" - }, - "starkware.cairo.common.memcpy.memcpy.SIZEOF_LOCALS": { - "type": "const", - "value": 0 - }, - "starkware.cairo.common.memcpy.memcpy.continue_copying": { - "cairo_type": "felt", - "full_name": "starkware.cairo.common.memcpy.memcpy.continue_copying", - "references": [ - { - "ap_tracking_data": { - "group": 2, - "offset": 3 - }, - "pc": 16, - "value": "[cast(ap, felt*)]" - } - ], - "type": "reference" - }, - "starkware.cairo.common.memcpy.memcpy.len": { - "cairo_type": "felt", - "full_name": "starkware.cairo.common.memcpy.memcpy.len", - "references": [ - { - "ap_tracking_data": { - "group": 2, - "offset": 0 - }, - "pc": 9, - "value": "[cast(fp + (-3), felt*)]" - } - ], - "type": "reference" - }, - "starkware.cairo.common.memcpy.memcpy.loop": { - "pc": 14, - "type": "label" - }, - "starkware.cairo.common.poseidon_state.PoseidonBuiltinState": { - "full_name": "starkware.cairo.common.poseidon_state.PoseidonBuiltinState", - "members": { - "s0": { - "cairo_type": "felt", - "offset": 0 - }, - "s1": { - "cairo_type": "felt", - "offset": 1 - }, - "s2": { - "cairo_type": "felt", - "offset": 2 - } - }, - "size": 3, - "type": "struct" - }, - "starkware.cairo.common.registers.get_ap": { - "destination": "starkware.cairo.lang.compiler.lib.registers.get_ap", - "type": "alias" - }, - "starkware.cairo.common.registers.get_fp_and_pc": { - "destination": "starkware.cairo.lang.compiler.lib.registers.get_fp_and_pc", - "type": "alias" - }, - "starkware.cairo.common.registers.get_label_location": { - "decorators": [], - "pc": 504, - "type": "function" - }, - "starkware.cairo.common.registers.get_label_location.Args": { - "full_name": "starkware.cairo.common.registers.get_label_location.Args", - "members": { - "label_value": { - "cairo_type": "codeoffset", - "offset": 0 - } - }, - "size": 1, - "type": "struct" - }, - "starkware.cairo.common.registers.get_label_location.ImplicitArgs": { - "full_name": "starkware.cairo.common.registers.get_label_location.ImplicitArgs", - "members": {}, - "size": 0, - "type": "struct" - }, - "starkware.cairo.common.registers.get_label_location.Return": { - "cairo_type": "(res: felt*)", - "type": "type_definition" - }, - "starkware.cairo.common.registers.get_label_location.SIZEOF_LOCALS": { - "type": "const", - "value": 0 - }, - "starkware.cairo.common.registers.get_label_location.ret_pc_label": { - "pc": 506, - "type": "label" - }, - "starkware.cairo.lang.compiler.lib.registers.get_fp_and_pc": { - "decorators": [], - "pc": 24, - "type": "function" - }, - "starkware.cairo.lang.compiler.lib.registers.get_fp_and_pc.Args": { - "full_name": "starkware.cairo.lang.compiler.lib.registers.get_fp_and_pc.Args", - "members": {}, - "size": 0, - "type": "struct" - }, - "starkware.cairo.lang.compiler.lib.registers.get_fp_and_pc.ImplicitArgs": { - "full_name": "starkware.cairo.lang.compiler.lib.registers.get_fp_and_pc.ImplicitArgs", - "members": {}, - "size": 0, - "type": "struct" - }, - "starkware.cairo.lang.compiler.lib.registers.get_fp_and_pc.Return": { - "cairo_type": "(fp_val: felt*, pc_val: felt*)", - "type": "type_definition" - }, - "starkware.cairo.lang.compiler.lib.registers.get_fp_and_pc.SIZEOF_LOCALS": { - "type": "const", - "value": 0 - }, - "starkware.starknet.common.storage.ADDR_BOUND": { - "type": "const", - "value": -106710729501573572985208420194530329073740042555888586719489 - }, - "starkware.starknet.common.storage.MAX_STORAGE_ITEM_SIZE": { - "type": "const", - "value": 256 - }, - "starkware.starknet.common.storage.assert_250_bit": { - "destination": "starkware.cairo.common.math.assert_250_bit", - "type": "alias" - }, - "starkware.starknet.common.storage.normalize_address": { - "decorators": [ - "known_ap_change" - ], - "pc": 184, - "type": "function" - }, - "starkware.starknet.common.storage.normalize_address.Args": { - "full_name": "starkware.starknet.common.storage.normalize_address.Args", - "members": { - "addr": { - "cairo_type": "felt", - "offset": 0 - } - }, - "size": 1, - "type": "struct" - }, - "starkware.starknet.common.storage.normalize_address.ImplicitArgs": { - "full_name": "starkware.starknet.common.storage.normalize_address.ImplicitArgs", - "members": { - "range_check_ptr": { - "cairo_type": "felt", - "offset": 0 - } - }, - "size": 1, - "type": "struct" - }, - "starkware.starknet.common.storage.normalize_address.Return": { - "cairo_type": "(res: felt)", - "type": "type_definition" - }, - "starkware.starknet.common.storage.normalize_address.SIZEOF_LOCALS": { - "type": "const", - "value": 0 - }, - "starkware.starknet.common.storage.normalize_address.addr": { - "cairo_type": "felt", - "full_name": "starkware.starknet.common.storage.normalize_address.addr", - "references": [ - { - "ap_tracking_data": { - "group": 13, - "offset": 0 - }, - "pc": 184, - "value": "[cast(fp + (-3), felt*)]" - } - ], - "type": "reference" - }, - "starkware.starknet.common.storage.normalize_address.is_250": { - "cairo_type": "felt", - "full_name": "starkware.starknet.common.storage.normalize_address.is_250", - "references": [ - { - "ap_tracking_data": { - "group": 13, - "offset": 2 - }, - "pc": 204, - "value": "[cast(ap + (-1), felt*)]" - } - ], - "type": "reference" - }, - "starkware.starknet.common.storage.normalize_address.is_small": { - "cairo_type": "felt", - "full_name": "starkware.starknet.common.storage.normalize_address.is_small", - "references": [ - { - "ap_tracking_data": { - "group": 13, - "offset": 1 - }, - "pc": 186, - "value": "[cast(ap + (-1), felt*)]" - } - ], - "type": "reference" - }, - "starkware.starknet.common.syscalls.CALL_CONTRACT_SELECTOR": { - "type": "const", - "value": 20853273475220472486191784820 - }, - "starkware.starknet.common.syscalls.CallContract": { - "full_name": "starkware.starknet.common.syscalls.CallContract", - "members": { - "request": { - "cairo_type": "starkware.starknet.common.syscalls.CallContractRequest", - "offset": 0 - }, - "response": { - "cairo_type": "starkware.starknet.common.syscalls.CallContractResponse", - "offset": 5 - } - }, - "size": 7, - "type": "struct" - }, - "starkware.starknet.common.syscalls.CallContractRequest": { - "full_name": "starkware.starknet.common.syscalls.CallContractRequest", - "members": { - "calldata": { - "cairo_type": "felt*", - "offset": 4 - }, - "calldata_size": { - "cairo_type": "felt", - "offset": 3 - }, - "contract_address": { - "cairo_type": "felt", - "offset": 1 - }, - "function_selector": { - "cairo_type": "felt", - "offset": 2 - }, - "selector": { - "cairo_type": "felt", - "offset": 0 - } - }, - "size": 5, - "type": "struct" - }, - "starkware.starknet.common.syscalls.CallContractResponse": { - "full_name": "starkware.starknet.common.syscalls.CallContractResponse", - "members": { - "retdata": { - "cairo_type": "felt*", - "offset": 1 - }, - "retdata_size": { - "cairo_type": "felt", - "offset": 0 - } - }, - "size": 2, - "type": "struct" - }, - "starkware.starknet.common.syscalls.DELEGATE_CALL_SELECTOR": { - "type": "const", - "value": 21167594061783206823196716140 - }, - "starkware.starknet.common.syscalls.DELEGATE_L1_HANDLER_SELECTOR": { - "type": "const", - "value": 23274015802972845247556842986379118667122 - }, - "starkware.starknet.common.syscalls.DEPLOY_SELECTOR": { - "type": "const", - "value": 75202468540281 - }, - "starkware.starknet.common.syscalls.Deploy": { - "full_name": "starkware.starknet.common.syscalls.Deploy", - "members": { - "request": { - "cairo_type": "starkware.starknet.common.syscalls.DeployRequest", - "offset": 0 - }, - "response": { - "cairo_type": "starkware.starknet.common.syscalls.DeployResponse", - "offset": 6 - } - }, - "size": 9, - "type": "struct" - }, - "starkware.starknet.common.syscalls.DeployRequest": { - "full_name": "starkware.starknet.common.syscalls.DeployRequest", - "members": { - "class_hash": { - "cairo_type": "felt", - "offset": 1 - }, - "constructor_calldata": { - "cairo_type": "felt*", - "offset": 4 - }, - "constructor_calldata_size": { - "cairo_type": "felt", - "offset": 3 - }, - "contract_address_salt": { - "cairo_type": "felt", - "offset": 2 - }, - "deploy_from_zero": { - "cairo_type": "felt", - "offset": 5 - }, - "selector": { - "cairo_type": "felt", - "offset": 0 - } - }, - "size": 6, - "type": "struct" - }, - "starkware.starknet.common.syscalls.DeployResponse": { - "full_name": "starkware.starknet.common.syscalls.DeployResponse", - "members": { - "constructor_retdata": { - "cairo_type": "felt*", - "offset": 2 - }, - "constructor_retdata_size": { - "cairo_type": "felt", - "offset": 1 - }, - "contract_address": { - "cairo_type": "felt", - "offset": 0 - } - }, - "size": 3, - "type": "struct" - }, - "starkware.starknet.common.syscalls.DictAccess": { - "destination": "starkware.cairo.common.dict_access.DictAccess", - "type": "alias" - }, - "starkware.starknet.common.syscalls.EMIT_EVENT_SELECTOR": { - "type": "const", - "value": 1280709301550335749748 - }, - "starkware.starknet.common.syscalls.EmitEvent": { - "full_name": "starkware.starknet.common.syscalls.EmitEvent", - "members": { - "data": { - "cairo_type": "felt*", - "offset": 4 - }, - "data_len": { - "cairo_type": "felt", - "offset": 3 - }, - "keys": { - "cairo_type": "felt*", - "offset": 2 - }, - "keys_len": { - "cairo_type": "felt", - "offset": 1 - }, - "selector": { - "cairo_type": "felt", - "offset": 0 - } - }, - "size": 5, - "type": "struct" - }, - "starkware.starknet.common.syscalls.GET_BLOCK_NUMBER_SELECTOR": { - "type": "const", - "value": 1448089106835523001438702345020786 - }, - "starkware.starknet.common.syscalls.GET_BLOCK_TIMESTAMP_SELECTOR": { - "type": "const", - "value": 24294903732626645868215235778792757751152 - }, - "starkware.starknet.common.syscalls.GET_CALLER_ADDRESS_SELECTOR": { - "type": "const", - "value": 94901967781393078444254803017658102643 - }, - "starkware.starknet.common.syscalls.GET_CONTRACT_ADDRESS_SELECTOR": { - "type": "const", - "value": 6219495360805491471215297013070624192820083 - }, - "starkware.starknet.common.syscalls.GET_SEQUENCER_ADDRESS_SELECTOR": { - "type": "const", - "value": 1592190833581991703053805829594610833820054387 - }, - "starkware.starknet.common.syscalls.GET_TX_INFO_SELECTOR": { - "type": "const", - "value": 1317029390204112103023 - }, - "starkware.starknet.common.syscalls.GET_TX_SIGNATURE_SELECTOR": { - "type": "const", - "value": 1448089128652340074717162277007973 - }, - "starkware.starknet.common.syscalls.GetBlockNumber": { - "full_name": "starkware.starknet.common.syscalls.GetBlockNumber", - "members": { - "request": { - "cairo_type": "starkware.starknet.common.syscalls.GetBlockNumberRequest", - "offset": 0 - }, - "response": { - "cairo_type": "starkware.starknet.common.syscalls.GetBlockNumberResponse", - "offset": 1 - } - }, - "size": 2, - "type": "struct" - }, - "starkware.starknet.common.syscalls.GetBlockNumberRequest": { - "full_name": "starkware.starknet.common.syscalls.GetBlockNumberRequest", - "members": { - "selector": { - "cairo_type": "felt", - "offset": 0 - } - }, - "size": 1, - "type": "struct" - }, - "starkware.starknet.common.syscalls.GetBlockNumberResponse": { - "full_name": "starkware.starknet.common.syscalls.GetBlockNumberResponse", - "members": { - "block_number": { - "cairo_type": "felt", - "offset": 0 - } - }, - "size": 1, - "type": "struct" - }, - "starkware.starknet.common.syscalls.GetBlockTimestamp": { - "full_name": "starkware.starknet.common.syscalls.GetBlockTimestamp", - "members": { - "request": { - "cairo_type": "starkware.starknet.common.syscalls.GetBlockTimestampRequest", - "offset": 0 - }, - "response": { - "cairo_type": "starkware.starknet.common.syscalls.GetBlockTimestampResponse", - "offset": 1 - } - }, - "size": 2, - "type": "struct" - }, - "starkware.starknet.common.syscalls.GetBlockTimestampRequest": { - "full_name": "starkware.starknet.common.syscalls.GetBlockTimestampRequest", - "members": { - "selector": { - "cairo_type": "felt", - "offset": 0 - } - }, - "size": 1, - "type": "struct" - }, - "starkware.starknet.common.syscalls.GetBlockTimestampResponse": { - "full_name": "starkware.starknet.common.syscalls.GetBlockTimestampResponse", - "members": { - "block_timestamp": { - "cairo_type": "felt", - "offset": 0 - } - }, - "size": 1, - "type": "struct" - }, - "starkware.starknet.common.syscalls.GetCallerAddress": { - "full_name": "starkware.starknet.common.syscalls.GetCallerAddress", - "members": { - "request": { - "cairo_type": "starkware.starknet.common.syscalls.GetCallerAddressRequest", - "offset": 0 - }, - "response": { - "cairo_type": "starkware.starknet.common.syscalls.GetCallerAddressResponse", - "offset": 1 - } - }, - "size": 2, - "type": "struct" - }, - "starkware.starknet.common.syscalls.GetCallerAddressRequest": { - "full_name": "starkware.starknet.common.syscalls.GetCallerAddressRequest", - "members": { - "selector": { - "cairo_type": "felt", - "offset": 0 - } - }, - "size": 1, - "type": "struct" - }, - "starkware.starknet.common.syscalls.GetCallerAddressResponse": { - "full_name": "starkware.starknet.common.syscalls.GetCallerAddressResponse", - "members": { - "caller_address": { - "cairo_type": "felt", - "offset": 0 - } - }, - "size": 1, - "type": "struct" - }, - "starkware.starknet.common.syscalls.GetContractAddress": { - "full_name": "starkware.starknet.common.syscalls.GetContractAddress", - "members": { - "request": { - "cairo_type": "starkware.starknet.common.syscalls.GetContractAddressRequest", - "offset": 0 - }, - "response": { - "cairo_type": "starkware.starknet.common.syscalls.GetContractAddressResponse", - "offset": 1 - } - }, - "size": 2, - "type": "struct" - }, - "starkware.starknet.common.syscalls.GetContractAddressRequest": { - "full_name": "starkware.starknet.common.syscalls.GetContractAddressRequest", - "members": { - "selector": { - "cairo_type": "felt", - "offset": 0 - } - }, - "size": 1, - "type": "struct" - }, - "starkware.starknet.common.syscalls.GetContractAddressResponse": { - "full_name": "starkware.starknet.common.syscalls.GetContractAddressResponse", - "members": { - "contract_address": { - "cairo_type": "felt", - "offset": 0 - } - }, - "size": 1, - "type": "struct" - }, - "starkware.starknet.common.syscalls.GetSequencerAddress": { - "full_name": "starkware.starknet.common.syscalls.GetSequencerAddress", - "members": { - "request": { - "cairo_type": "starkware.starknet.common.syscalls.GetSequencerAddressRequest", - "offset": 0 - }, - "response": { - "cairo_type": "starkware.starknet.common.syscalls.GetSequencerAddressResponse", - "offset": 1 - } - }, - "size": 2, - "type": "struct" - }, - "starkware.starknet.common.syscalls.GetSequencerAddressRequest": { - "full_name": "starkware.starknet.common.syscalls.GetSequencerAddressRequest", - "members": { - "selector": { - "cairo_type": "felt", - "offset": 0 - } - }, - "size": 1, - "type": "struct" - }, - "starkware.starknet.common.syscalls.GetSequencerAddressResponse": { - "full_name": "starkware.starknet.common.syscalls.GetSequencerAddressResponse", - "members": { - "sequencer_address": { - "cairo_type": "felt", - "offset": 0 - } - }, - "size": 1, - "type": "struct" - }, - "starkware.starknet.common.syscalls.GetTxInfo": { - "full_name": "starkware.starknet.common.syscalls.GetTxInfo", - "members": { - "request": { - "cairo_type": "starkware.starknet.common.syscalls.GetTxInfoRequest", - "offset": 0 - }, - "response": { - "cairo_type": "starkware.starknet.common.syscalls.GetTxInfoResponse", - "offset": 1 - } - }, - "size": 2, - "type": "struct" - }, - "starkware.starknet.common.syscalls.GetTxInfoRequest": { - "full_name": "starkware.starknet.common.syscalls.GetTxInfoRequest", - "members": { - "selector": { - "cairo_type": "felt", - "offset": 0 - } - }, - "size": 1, - "type": "struct" - }, - "starkware.starknet.common.syscalls.GetTxInfoResponse": { - "full_name": "starkware.starknet.common.syscalls.GetTxInfoResponse", - "members": { - "tx_info": { - "cairo_type": "starkware.starknet.common.syscalls.TxInfo*", - "offset": 0 - } - }, - "size": 1, - "type": "struct" - }, - "starkware.starknet.common.syscalls.GetTxSignature": { - "full_name": "starkware.starknet.common.syscalls.GetTxSignature", - "members": { - "request": { - "cairo_type": "starkware.starknet.common.syscalls.GetTxSignatureRequest", - "offset": 0 - }, - "response": { - "cairo_type": "starkware.starknet.common.syscalls.GetTxSignatureResponse", - "offset": 1 - } - }, - "size": 3, - "type": "struct" - }, - "starkware.starknet.common.syscalls.GetTxSignatureRequest": { - "full_name": "starkware.starknet.common.syscalls.GetTxSignatureRequest", - "members": { - "selector": { - "cairo_type": "felt", - "offset": 0 - } - }, - "size": 1, - "type": "struct" - }, - "starkware.starknet.common.syscalls.GetTxSignatureResponse": { - "full_name": "starkware.starknet.common.syscalls.GetTxSignatureResponse", - "members": { - "signature": { - "cairo_type": "felt*", - "offset": 1 - }, - "signature_len": { - "cairo_type": "felt", - "offset": 0 - } - }, - "size": 2, - "type": "struct" - }, - "starkware.starknet.common.syscalls.LIBRARY_CALL_L1_HANDLER_SELECTOR": { - "type": "const", - "value": 436233452754198157705746250789557519228244616562 - }, - "starkware.starknet.common.syscalls.LIBRARY_CALL_SELECTOR": { - "type": "const", - "value": 92376026794327011772951660 - }, - "starkware.starknet.common.syscalls.LibraryCall": { - "full_name": "starkware.starknet.common.syscalls.LibraryCall", - "members": { - "request": { - "cairo_type": "starkware.starknet.common.syscalls.LibraryCallRequest", - "offset": 0 - }, - "response": { - "cairo_type": "starkware.starknet.common.syscalls.CallContractResponse", - "offset": 5 - } - }, - "size": 7, - "type": "struct" - }, - "starkware.starknet.common.syscalls.LibraryCallRequest": { - "full_name": "starkware.starknet.common.syscalls.LibraryCallRequest", - "members": { - "calldata": { - "cairo_type": "felt*", - "offset": 4 - }, - "calldata_size": { - "cairo_type": "felt", - "offset": 3 - }, - "class_hash": { - "cairo_type": "felt", - "offset": 1 - }, - "function_selector": { - "cairo_type": "felt", - "offset": 2 - }, - "selector": { - "cairo_type": "felt", - "offset": 0 - } - }, - "size": 5, - "type": "struct" - }, - "starkware.starknet.common.syscalls.REPLACE_CLASS_SELECTOR": { - "type": "const", - "value": 25500403217443378527601783667 - }, - "starkware.starknet.common.syscalls.ReplaceClass": { - "full_name": "starkware.starknet.common.syscalls.ReplaceClass", - "members": { - "class_hash": { - "cairo_type": "felt", - "offset": 1 - }, - "selector": { - "cairo_type": "felt", - "offset": 0 - } - }, - "size": 2, - "type": "struct" - }, - "starkware.starknet.common.syscalls.SEND_MESSAGE_TO_L1_SELECTOR": { - "type": "const", - "value": 433017908768303439907196859243777073 - }, - "starkware.starknet.common.syscalls.STORAGE_READ_SELECTOR": { - "type": "const", - "value": 100890693370601760042082660 - }, - "starkware.starknet.common.syscalls.STORAGE_WRITE_SELECTOR": { - "type": "const", - "value": 25828017502874050592466629733 - }, - "starkware.starknet.common.syscalls.SendMessageToL1SysCall": { - "full_name": "starkware.starknet.common.syscalls.SendMessageToL1SysCall", - "members": { - "payload_ptr": { - "cairo_type": "felt*", - "offset": 3 - }, - "payload_size": { - "cairo_type": "felt", - "offset": 2 - }, - "selector": { - "cairo_type": "felt", - "offset": 0 - }, - "to_address": { - "cairo_type": "felt", - "offset": 1 - } - }, - "size": 4, - "type": "struct" - }, - "starkware.starknet.common.syscalls.StorageRead": { - "full_name": "starkware.starknet.common.syscalls.StorageRead", - "members": { - "request": { - "cairo_type": "starkware.starknet.common.syscalls.StorageReadRequest", - "offset": 0 - }, - "response": { - "cairo_type": "starkware.starknet.common.syscalls.StorageReadResponse", - "offset": 2 - } - }, - "size": 3, - "type": "struct" - }, - "starkware.starknet.common.syscalls.StorageReadRequest": { - "full_name": "starkware.starknet.common.syscalls.StorageReadRequest", - "members": { - "address": { - "cairo_type": "felt", - "offset": 1 - }, - "selector": { - "cairo_type": "felt", - "offset": 0 - } - }, - "size": 2, - "type": "struct" - }, - "starkware.starknet.common.syscalls.StorageReadResponse": { - "full_name": "starkware.starknet.common.syscalls.StorageReadResponse", - "members": { - "value": { - "cairo_type": "felt", - "offset": 0 - } - }, - "size": 1, - "type": "struct" - }, - "starkware.starknet.common.syscalls.StorageWrite": { - "full_name": "starkware.starknet.common.syscalls.StorageWrite", - "members": { - "address": { - "cairo_type": "felt", - "offset": 1 - }, - "selector": { - "cairo_type": "felt", - "offset": 0 - }, - "value": { - "cairo_type": "felt", - "offset": 2 - } - }, - "size": 3, - "type": "struct" - }, - "starkware.starknet.common.syscalls.TxInfo": { - "full_name": "starkware.starknet.common.syscalls.TxInfo", - "members": { - "account_contract_address": { - "cairo_type": "felt", - "offset": 1 - }, - "chain_id": { - "cairo_type": "felt", - "offset": 6 - }, - "max_fee": { - "cairo_type": "felt", - "offset": 2 - }, - "nonce": { - "cairo_type": "felt", - "offset": 7 - }, - "signature": { - "cairo_type": "felt*", - "offset": 4 - }, - "signature_len": { - "cairo_type": "felt", - "offset": 3 - }, - "transaction_hash": { - "cairo_type": "felt", - "offset": 5 - }, - "version": { - "cairo_type": "felt", - "offset": 0 - } - }, - "size": 8, - "type": "struct" - }, - "starkware.starknet.common.syscalls.emit_event": { - "decorators": [], - "pc": 247, - "type": "function" - }, - "starkware.starknet.common.syscalls.emit_event.Args": { - "full_name": "starkware.starknet.common.syscalls.emit_event.Args", - "members": { - "data": { - "cairo_type": "felt*", - "offset": 3 - }, - "data_len": { - "cairo_type": "felt", - "offset": 2 - }, - "keys": { - "cairo_type": "felt*", - "offset": 1 - }, - "keys_len": { - "cairo_type": "felt", - "offset": 0 - } - }, - "size": 4, - "type": "struct" - }, - "starkware.starknet.common.syscalls.emit_event.ImplicitArgs": { - "full_name": "starkware.starknet.common.syscalls.emit_event.ImplicitArgs", - "members": { - "syscall_ptr": { - "cairo_type": "felt*", - "offset": 0 - } - }, - "size": 1, - "type": "struct" - }, - "starkware.starknet.common.syscalls.emit_event.Return": { - "cairo_type": "()", - "type": "type_definition" - }, - "starkware.starknet.common.syscalls.emit_event.SIZEOF_LOCALS": { - "type": "const", - "value": 0 - }, - "starkware.starknet.common.syscalls.emit_event.syscall_ptr": { - "cairo_type": "felt*", - "full_name": "starkware.starknet.common.syscalls.emit_event.syscall_ptr", - "references": [ - { - "ap_tracking_data": { - "group": 17, - "offset": 0 - }, - "pc": 247, - "value": "[cast(fp + (-7), felt**)]" - }, - { - "ap_tracking_data": { - "group": 17, - "offset": 1 - }, - "pc": 254, - "value": "cast([fp + (-7)] + 5, felt*)" - } - ], - "type": "reference" - }, - "starkware.starknet.common.syscalls.get_caller_address": { - "decorators": [], - "pc": 224, - "type": "function" - }, - "starkware.starknet.common.syscalls.get_caller_address.Args": { - "full_name": "starkware.starknet.common.syscalls.get_caller_address.Args", - "members": {}, - "size": 0, - "type": "struct" - }, - "starkware.starknet.common.syscalls.get_caller_address.ImplicitArgs": { - "full_name": "starkware.starknet.common.syscalls.get_caller_address.ImplicitArgs", - "members": { - "syscall_ptr": { - "cairo_type": "felt*", - "offset": 0 - } - }, - "size": 1, - "type": "struct" - }, - "starkware.starknet.common.syscalls.get_caller_address.Return": { - "cairo_type": "(caller_address: felt)", - "type": "type_definition" - }, - "starkware.starknet.common.syscalls.get_caller_address.SIZEOF_LOCALS": { - "type": "const", - "value": 0 - }, - "starkware.starknet.common.syscalls.get_caller_address.syscall_ptr": { - "cairo_type": "felt*", - "full_name": "starkware.starknet.common.syscalls.get_caller_address.syscall_ptr", - "references": [ - { - "ap_tracking_data": { - "group": 14, - "offset": 0 - }, - "pc": 224, - "value": "[cast(fp + (-3), felt**)]" - }, - { - "ap_tracking_data": { - "group": 14, - "offset": 1 - }, - "pc": 227, - "value": "cast([fp + (-3)] + 2, felt*)" - } - ], - "type": "reference" - }, - "starkware.starknet.common.syscalls.storage_read": { - "decorators": [], - "pc": 231, - "type": "function" - }, - "starkware.starknet.common.syscalls.storage_read.Args": { - "full_name": "starkware.starknet.common.syscalls.storage_read.Args", - "members": { - "address": { - "cairo_type": "felt", - "offset": 0 - } - }, - "size": 1, - "type": "struct" - }, - "starkware.starknet.common.syscalls.storage_read.ImplicitArgs": { - "full_name": "starkware.starknet.common.syscalls.storage_read.ImplicitArgs", - "members": { - "syscall_ptr": { - "cairo_type": "felt*", - "offset": 0 - } - }, - "size": 1, - "type": "struct" - }, - "starkware.starknet.common.syscalls.storage_read.Return": { - "cairo_type": "(value: felt)", - "type": "type_definition" - }, - "starkware.starknet.common.syscalls.storage_read.SIZEOF_LOCALS": { - "type": "const", - "value": 0 - }, - "starkware.starknet.common.syscalls.storage_read.syscall_ptr": { - "cairo_type": "felt*", - "full_name": "starkware.starknet.common.syscalls.storage_read.syscall_ptr", - "references": [ - { - "ap_tracking_data": { - "group": 15, - "offset": 0 - }, - "pc": 231, - "value": "[cast(fp + (-4), felt**)]" - }, - { - "ap_tracking_data": { - "group": 15, - "offset": 1 - }, - "pc": 235, - "value": "cast([fp + (-4)] + 3, felt*)" - } - ], - "type": "reference" - }, - "starkware.starknet.common.syscalls.storage_write": { - "decorators": [], - "pc": 239, - "type": "function" - }, - "starkware.starknet.common.syscalls.storage_write.Args": { - "full_name": "starkware.starknet.common.syscalls.storage_write.Args", - "members": { - "address": { - "cairo_type": "felt", - "offset": 0 - }, - "value": { - "cairo_type": "felt", - "offset": 1 - } - }, - "size": 2, - "type": "struct" - }, - "starkware.starknet.common.syscalls.storage_write.ImplicitArgs": { - "full_name": "starkware.starknet.common.syscalls.storage_write.ImplicitArgs", - "members": { - "syscall_ptr": { - "cairo_type": "felt*", - "offset": 0 - } - }, - "size": 1, - "type": "struct" - }, - "starkware.starknet.common.syscalls.storage_write.Return": { - "cairo_type": "()", - "type": "type_definition" - }, - "starkware.starknet.common.syscalls.storage_write.SIZEOF_LOCALS": { - "type": "const", - "value": 0 - }, - "starkware.starknet.common.syscalls.storage_write.syscall_ptr": { - "cairo_type": "felt*", - "full_name": "starkware.starknet.common.syscalls.storage_write.syscall_ptr", - "references": [ - { - "ap_tracking_data": { - "group": 16, - "offset": 0 - }, - "pc": 239, - "value": "[cast(fp + (-5), felt**)]" - }, - { - "ap_tracking_data": { - "group": 16, - "offset": 1 - }, - "pc": 244, - "value": "cast([fp + (-5)] + 3, felt*)" - } - ], - "type": "reference" - }, - "utils.string.HashBuiltin": { - "destination": "starkware.cairo.common.cairo_builtins.HashBuiltin", - "type": "alias" - }, - "utils.string._ascii_from_digit": { - "decorators": [], - "pc": 454, - "type": "function" - }, - "utils.string._ascii_from_digit.Args": { - "full_name": "utils.string._ascii_from_digit.Args", - "members": { - "digit": { - "cairo_type": "felt", - "offset": 0 - } - }, - "size": 1, - "type": "struct" - }, - "utils.string._ascii_from_digit.ImplicitArgs": { - "full_name": "utils.string._ascii_from_digit.ImplicitArgs", - "members": {}, - "size": 0, - "type": "struct" - }, - "utils.string._ascii_from_digit.Return": { - "cairo_type": "(ascii: felt)", - "type": "type_definition" - }, - "utils.string._ascii_from_digit.SIZEOF_LOCALS": { - "type": "const", - "value": 0 - }, - "utils.string._recurse_ascii_array_from_number": { - "decorators": [], - "pc": 457, - "type": "function" - }, - "utils.string._recurse_ascii_array_from_number.Args": { - "full_name": "utils.string._recurse_ascii_array_from_number.Args", - "members": { - "arr_ascii": { - "cairo_type": "felt*", - "offset": 2 - }, - "arr_ascii_len": { - "cairo_type": "felt", - "offset": 1 - }, - "remain": { - "cairo_type": "felt", - "offset": 0 - } - }, - "size": 3, - "type": "struct" - }, - "utils.string._recurse_ascii_array_from_number.ImplicitArgs": { - "full_name": "utils.string._recurse_ascii_array_from_number.ImplicitArgs", - "members": { - "range_check_ptr": { - "cairo_type": "felt", - "offset": 0 - } - }, - "size": 1, - "type": "struct" - }, - "utils.string._recurse_ascii_array_from_number.Return": { - "cairo_type": "(arr_ascii_final_len: felt)", - "type": "type_definition" - }, - "utils.string._recurse_ascii_array_from_number.SIZEOF_LOCALS": { - "type": "const", - "value": 0 - }, - "utils.string._recurse_ascii_from_ascii_array_inverse": { - "decorators": [], - "pc": 482, - "type": "function" - }, - "utils.string._recurse_ascii_from_ascii_array_inverse.Args": { - "full_name": "utils.string._recurse_ascii_from_ascii_array_inverse.Args", - "members": { - "arr": { - "cairo_type": "felt*", - "offset": 2 - }, - "ascii": { - "cairo_type": "felt", - "offset": 0 - }, - "idx": { - "cairo_type": "felt", - "offset": 3 - }, - "len": { - "cairo_type": "felt", - "offset": 1 - } - }, - "size": 4, - "type": "struct" - }, - "utils.string._recurse_ascii_from_ascii_array_inverse.ImplicitArgs": { - "full_name": "utils.string._recurse_ascii_from_ascii_array_inverse.ImplicitArgs", - "members": { - "range_check_ptr": { - "cairo_type": "felt", - "offset": 0 - } - }, - "size": 1, - "type": "struct" - }, - "utils.string._recurse_ascii_from_ascii_array_inverse.Return": { - "cairo_type": "(ascii_final: felt)", - "type": "type_definition" - }, - "utils.string._recurse_ascii_from_ascii_array_inverse.SIZEOF_LOCALS": { - "type": "const", - "value": 0 - }, - "utils.string.abs_value": { - "destination": "starkware.cairo.common.math.abs_value", - "type": "alias" - }, - "utils.string.alloc": { - "destination": "starkware.cairo.common.alloc.alloc", - "type": "alias" - }, - "utils.string.is_le": { - "destination": "starkware.cairo.common.math_cmp.is_le", - "type": "alias" - }, - "utils.string.sign": { - "destination": "starkware.cairo.common.math.sign", - "type": "alias" - }, - "utils.string.str": { - "decorators": [], - "pc": 411, - "type": "function" - }, - "utils.string.str.Args": { - "full_name": "utils.string.str.Args", - "members": { - "num": { - "cairo_type": "felt", - "offset": 0 - } - }, - "size": 1, - "type": "struct" - }, - "utils.string.str.ImplicitArgs": { - "full_name": "utils.string.str.ImplicitArgs", - "members": { - "range_check_ptr": { - "cairo_type": "felt", - "offset": 0 - } - }, - "size": 1, - "type": "struct" - }, - "utils.string.str.Return": { - "cairo_type": "(literal: felt)", - "type": "type_definition" - }, - "utils.string.str.SIZEOF_LOCALS": { - "type": "const", - "value": 2 - }, - "utils.string.unsigned_div_rem": { - "destination": "starkware.cairo.common.math.unsigned_div_rem", - "type": "alias" - } - }, - "main_scope": "__main__", - "prime": "0x800000000000011000000000000000000000000000000000000000000000001", - "reference_manager": { - "references": [ - { - "ap_tracking_data": { - "group": 2, - "offset": 0 - }, - "pc": 9, - "value": "[cast(fp + (-3), felt*)]" - }, - { - "ap_tracking_data": { - "group": 2, - "offset": 3 - }, - "pc": 16, - "value": "[cast(ap, felt*)]" - }, - { - "ap_tracking_data": { - "group": 4, - "offset": 0 - }, - "pc": 25, - "value": "[cast(fp + (-3), felt*)]" - }, - { - "ap_tracking_data": { - "group": 5, - "offset": 0 - }, - "pc": 30, - "value": "[cast(fp + (-3), felt*)]" - }, - { - "ap_tracking_data": { - "group": 7, - "offset": 0 - }, - "pc": 39, - "value": "[cast(fp + (-3), felt*)]" - }, - { - "ap_tracking_data": { - "group": 7, - "offset": 0 - }, - "pc": 39, - "value": "[cast([fp + (-4)], felt*)]" - }, - { - "ap_tracking_data": { - "group": 7, - "offset": 0 - }, - "pc": 39, - "value": "[cast([fp + (-4)] + 1, felt*)]" - }, - { - "ap_tracking_data": { - "group": 8, - "offset": 0 - }, - "pc": 52, - "value": "[cast(fp + (-3), felt*)]" - }, - { - "ap_tracking_data": { - "group": 8, - "offset": 0 - }, - "pc": 52, - "value": "[cast([fp + (-4)], felt*)]" - }, - { - "ap_tracking_data": { - "group": 8, - "offset": 0 - }, - "pc": 52, - "value": "[cast([fp + (-4)] + 1, felt*)]" - }, - { - "ap_tracking_data": { - "group": 9, - "offset": 0 - }, - "pc": 81, - "value": "[cast(fp + (-4), felt*)]" - }, - { - "ap_tracking_data": { - "group": 9, - "offset": 0 - }, - "pc": 81, - "value": "[cast(fp + (-3), felt*)]" - }, - { - "ap_tracking_data": { - "group": 9, - "offset": 0 - }, - "pc": 81, - "value": "[cast(fp + (-5), felt*)]" - }, - { - "ap_tracking_data": { - "group": 10, - "offset": 0 - }, - "pc": 126, - "value": "[cast(fp + (-3), felt*)]" - }, - { - "ap_tracking_data": { - "group": 10, - "offset": 1 - }, - "pc": 128, - "value": "[cast(ap + (-1), felt*)]" - }, - { - "ap_tracking_data": { - "group": 11, - "offset": 0 - }, - "pc": 141, - "value": "[cast(fp + (-3), felt*)]" - }, - { - "ap_tracking_data": { - "group": 11, - "offset": 1 - }, - "pc": 151, - "value": "[cast(ap + (-1), felt*)]" - }, - { - "ap_tracking_data": { - "group": 12, - "offset": 0 - }, - "pc": 169, - "value": "[cast(fp + (-4), felt*)]" - }, - { - "ap_tracking_data": { - "group": 12, - "offset": 0 - }, - "pc": 169, - "value": "[cast(fp + (-3), felt*)]" - }, - { - "ap_tracking_data": { - "group": 12, - "offset": 0 - }, - "pc": 169, - "value": "[cast([fp + (-5)], felt*)]" - }, - { - "ap_tracking_data": { - "group": 12, - "offset": 0 - }, - "pc": 169, - "value": "[cast([fp + (-5)] + 1, felt*)]" - }, - { - "ap_tracking_data": { - "group": 13, - "offset": 0 - }, - "pc": 184, - "value": "[cast(fp + (-3), felt*)]" - }, - { - "ap_tracking_data": { - "group": 13, - "offset": 1 - }, - "pc": 186, - "value": "[cast(ap + (-1), felt*)]" - }, - { - "ap_tracking_data": { - "group": 13, - "offset": 2 - }, - "pc": 204, - "value": "[cast(ap + (-1), felt*)]" - }, - { - "ap_tracking_data": { - "group": 14, - "offset": 0 - }, - "pc": 224, - "value": "[cast(fp + (-3), felt**)]" - }, - { - "ap_tracking_data": { - "group": 15, - "offset": 0 - }, - "pc": 231, - "value": "[cast(fp + (-4), felt**)]" - }, - { - "ap_tracking_data": { - "group": 16, - "offset": 0 - }, - "pc": 239, - "value": "[cast(fp + (-5), felt**)]" - }, - { - "ap_tracking_data": { - "group": 17, - "offset": 0 - }, - "pc": 247, - "value": "[cast(fp + (-7), felt**)]" - }, - { - "ap_tracking_data": { - "group": 31, - "offset": 0 - }, - "pc": 373, - "value": "[cast(fp + (-3), felt*)]" - } - ] - } - } -} diff --git a/packages/starksheet-cairo/build/RandomRenderer_abi.json b/packages/starksheet-cairo/build/RandomRenderer_abi.json deleted file mode 100644 index 28e21f1c..00000000 --- a/packages/starksheet-cairo/build/RandomRenderer_abi.json +++ /dev/null @@ -1,169 +0,0 @@ -[ - { - "data": [ - { - "name": "previousOwner", - "type": "felt" - }, - { - "name": "newOwner", - "type": "felt" - } - ], - "keys": [], - "name": "OwnershipTransferred", - "type": "event" - }, - { - "inputs": [], - "name": "getOwner", - "outputs": [ - { - "name": "owner", - "type": "felt" - } - ], - "stateMutability": "view", - "type": "function" - }, - { - "inputs": [], - "name": "getUris", - "outputs": [ - { - "name": "uris_len", - "type": "felt" - }, - { - "name": "uris", - "type": "felt*" - } - ], - "stateMutability": "view", - "type": "function" - }, - { - "inputs": [ - { - "name": "index", - "type": "felt" - } - ], - "name": "getUri", - "outputs": [ - { - "name": "uri_len", - "type": "felt" - }, - { - "name": "uri", - "type": "felt*" - } - ], - "stateMutability": "view", - "type": "function" - }, - { - "inputs": [ - { - "name": "encoded_uris_len", - "type": "felt" - }, - { - "name": "encoded_uris", - "type": "felt*" - }, - { - "name": "index", - "type": "felt" - } - ], - "name": "testUris", - "outputs": [ - { - "name": "uri_len", - "type": "felt" - }, - { - "name": "uri", - "type": "felt*" - } - ], - "stateMutability": "view", - "type": "function" - }, - { - "inputs": [ - { - "name": "uris_len", - "type": "felt" - }, - { - "name": "uris", - "type": "felt*" - } - ], - "name": "setUris", - "outputs": [], - "type": "function" - }, - { - "inputs": [ - { - "name": "new_owner", - "type": "felt" - } - ], - "name": "transferOwnership", - "outputs": [], - "type": "function" - }, - { - "inputs": [ - { - "name": "owner", - "type": "felt" - }, - { - "name": "uris_len", - "type": "felt" - }, - { - "name": "uris", - "type": "felt*" - } - ], - "name": "constructor", - "outputs": [], - "type": "constructor" - }, - { - "inputs": [ - { - "name": "token_id", - "type": "felt" - }, - { - "name": "value", - "type": "felt" - }, - { - "name": "name", - "type": "felt" - } - ], - "name": "token_uri", - "outputs": [ - { - "name": "token_uri_len", - "type": "felt" - }, - { - "name": "token_uri", - "type": "felt*" - } - ], - "stateMutability": "view", - "type": "function" - } -] diff --git a/packages/starksheet-cairo/build/Sheet.json b/packages/starksheet-cairo/build/Sheet.json index ace7a855..daba6138 100644 --- a/packages/starksheet-cairo/build/Sheet.json +++ b/packages/starksheet-cairo/build/Sheet.json @@ -7322,7 +7322,158967 @@ "0x48127ffb7fff8000", "0x208b7fff7fff7ffe" ], - "debug_info": null, + "debug_info": { + "file_contents": { + "autogen/starknet/arg_processor/001e7e7ada5970d5cd7e7b9fbe70b3d18a0e22c2451b74c773c532e003bf9599.cairo": "// Create a reference to tokenId as felt*.\nlet __calldata_tmp: felt* = cast(&tokenId, felt*);\nassert [__calldata_ptr + 0] = [__calldata_tmp + 0];\nassert [__calldata_ptr + 1] = [__calldata_tmp + 1];\nlet __calldata_ptr = __calldata_ptr + 2;\n", + "autogen/starknet/arg_processor/01cba52f8515996bb9d7070bde81ff39281d096d7024a558efcba6e1fd2402cf.cairo": "assert [cast(fp + (-4), felt*)] = __calldata_actual_size;\n", + "autogen/starknet/arg_processor/02677acf8be142f2ecf23f676098f6768a373515b7cfdd7cde8beebf7195b0dc.cairo": "// Check that the length is non-negative.\nassert [range_check_ptr] = __calldata_arg_contract_uri_len;\nlet range_check_ptr = range_check_ptr + 1;\n// Create the reference.\nlet __calldata_arg_contract_uri = cast(__calldata_ptr, felt*);\n// Use 'tempvar' instead of 'let' to avoid repeating this computation for the\n// following arguments.\ntempvar __calldata_ptr = __calldata_ptr + __calldata_arg_contract_uri_len * 1;\n", + "autogen/starknet/arg_processor/038c0cb4ed8fb3662b2204f7a3dad52bb6fd1aceaf040c7093bf2d59c5e90d2e.cairo": "let __calldata_arg_root = [__calldata_ptr];\nlet __calldata_ptr = __calldata_ptr + 1;\n", + "autogen/starknet/arg_processor/06e5a14f93bc3fcb38f775bb6be32ec075a9ef033df7521d51e3a5a3fb688ccb.cairo": "let __calldata_arg_max = [__calldata_ptr];\nlet __calldata_ptr = __calldata_ptr + 1;\n", + "autogen/starknet/arg_processor/075e4ad17c5c33f2000b89f716344a0dc5939a8c778eaecf5d50aad0b8c8f6a4.cairo": "assert [__calldata_ptr] = id;\nlet __calldata_ptr = __calldata_ptr + 1;\n", + "autogen/starknet/arg_processor/0b050fa727994261d8cf65daf308742256295d24dddf94130e6ee23500b3cb52.cairo": "assert [__return_value_ptr] = ret_value.receiver;\nlet __return_value_ptr = __return_value_ptr + 1;\n", + "autogen/starknet/arg_processor/0f6247d8ffdacc049a6789184a88aa3d8ff5ca077cd837063ce067f132dc586d.cairo": "// Create a reference to ret_value.tokenId as felt*.\nlet __return_value_tmp: felt* = cast(&ret_value.tokenId, felt*);\nassert [__return_value_ptr + 0] = [__return_value_tmp + 0];\nassert [__return_value_ptr + 1] = [__return_value_tmp + 1];\nlet __return_value_ptr = __return_value_ptr + 2;\n", + "autogen/starknet/arg_processor/10f4ffaf96982a2fff2ff72dc2d3b1a8878257148aab4051a8f2ef7f16687f01.cairo": "assert [__return_value_ptr] = ret_value.address;\nlet __return_value_ptr = __return_value_ptr + 1;\n", + "autogen/starknet/arg_processor/128c2321f9070588a8d11dc60a4b2c6a3b0b1a97919597936f0847381384bd91.cairo": "let __calldata_arg_tokenId = [__calldata_ptr];\nlet __calldata_ptr = __calldata_ptr + 1;\n", + "autogen/starknet/arg_processor/138fbb2581468edec2beca8ce38fccac384aeb4b51fe6af3126d17a00f09f61e.cairo": "let __calldata_arg_contractAddress = [__calldata_ptr];\nlet __calldata_ptr = __calldata_ptr + 1;\n", + "autogen/starknet/arg_processor/1921cf80c34685bda7c52d95e53497e74d914798938b1491cfcf9359bff14cc8.cairo": "assert [__return_value_ptr] = ret_value.cells_len;\nlet __return_value_ptr = __return_value_ptr + 1;\n", + "autogen/starknet/arg_processor/1bbc33231ead392f3a08d02f40babade53c6aa934a03fd2567a7873343dbb650.cairo": "let __calldata_arg_price = [__calldata_ptr];\nlet __calldata_ptr = __calldata_ptr + 1;\n", + "autogen/starknet/arg_processor/1c69c7efe008948007bb96a7ffcf593eef2281114be5664acdb2aab9fdcaff9f.cairo": "let __return_value_arg_data_uri_len = [__return_value_ptr];\nlet __return_value_ptr = __return_value_ptr + 1;\n", + "autogen/starknet/arg_processor/211305a4982e84dee745bdcf06176fa172dde0d5d206f753a2e0d4a223d668e4.cairo": "// Check that the length is non-negative.\nassert [range_check_ptr] = ret_value.cells_len;\n// Store the updated range_check_ptr as a local variable to keep it available after\n// the memcpy.\nlocal range_check_ptr = range_check_ptr + 1;\n// Keep a reference to __return_value_ptr.\nlet __return_value_ptr_copy = __return_value_ptr;\n// Store the updated __return_value_ptr as a local variable to keep it available after\n// the memcpy.\nlocal __return_value_ptr: felt* = __return_value_ptr + ret_value.cells_len * 3;\nmemcpy(\n dst=__return_value_ptr_copy,\n src=ret_value.cells,\n len=ret_value.cells_len * 3);\n", + "autogen/starknet/arg_processor/2670bb539ede27446c75876e41bcf9ef5cab09b9eec143f3986635a545b089ab.cairo": "assert [__calldata_ptr] = to;\nlet __calldata_ptr = __calldata_ptr + 1;\n", + "autogen/starknet/arg_processor/280c0a864fa1758c1c68a2dbf7db54c26c78c0212241fc0ab68100cf9886a85a.cairo": "assert [__calldata_ptr] = interfaceId;\nlet __calldata_ptr = __calldata_ptr + 1;\n", + "autogen/starknet/arg_processor/293368f3a0e12cfcf22314a31e13b9801e95a5b8b2b71822a2fbbdf5a01ea795.cairo": "assert [__return_value_ptr] = ret_value.res;\nlet __return_value_ptr = __return_value_ptr + 1;\n", + "autogen/starknet/arg_processor/2d2a59588c2058016ad4194dc37ffe15f61d7d7faa733af03df5d625b7049362.cairo": "let __return_value_arg_selector = [__return_value_ptr];\nlet __return_value_ptr = __return_value_ptr + 1;\n", + "autogen/starknet/arg_processor/32dd5497db578c846b634f25154d0ffb622256766f5d2360a53f46e9c348ed3e.cairo": "assert [__calldata_ptr] = recipient;\nlet __calldata_ptr = __calldata_ptr + 1;\n", + "autogen/starknet/arg_processor/33df6e1bcfab0c2b721012401630ed459af24510751c21dc2cea42d959db9ca9.cairo": "assert [__return_value_ptr] = ret_value.contractAddress;\nlet __return_value_ptr = __return_value_ptr + 1;\n", + "autogen/starknet/arg_processor/361efcca75a31f4c299c46d8d625210e368f481380cc3fa32a6d87e5dbe7e45c.cairo": "assert [__return_value_ptr] = ret_value.value;\nlet __return_value_ptr = __return_value_ptr + 1;\n", + "autogen/starknet/arg_processor/3635b1d7caa543a52376beeb37a143262ea6ffdf923d8e3676d9b27787e943c8.cairo": "assert [__return_value_ptr] = ret_value.symbol;\nlet __return_value_ptr = __return_value_ptr + 1;\n", + "autogen/starknet/arg_processor/36bb2f0e50d9623bedb46d800f874e3225ca779427bfe225ce6bc8586f2087bd.cairo": "// Check that the length is non-negative.\nassert [range_check_ptr] = ret_value.cell_calldata_len;\n// Store the updated range_check_ptr as a local variable to keep it available after\n// the memcpy.\nlocal range_check_ptr = range_check_ptr + 1;\n// Keep a reference to __return_value_ptr.\nlet __return_value_ptr_copy = __return_value_ptr;\n// Store the updated __return_value_ptr as a local variable to keep it available after\n// the memcpy.\nlocal __return_value_ptr: felt* = __return_value_ptr + ret_value.cell_calldata_len * 1;\nmemcpy(\n dst=__return_value_ptr_copy,\n src=ret_value.cell_calldata,\n len=ret_value.cell_calldata_len * 1);\n", + "autogen/starknet/arg_processor/3766ca78b7221666e5286be6b1bea607d51c54e82b2b7db68735ed38d00f7732.cairo": "assert [__calldata_ptr] = approved;\nlet __calldata_ptr = __calldata_ptr + 1;\n", + "autogen/starknet/arg_processor/39e07c9c78c5d65e4021222b6cb180405c183c5369648ce6703b11444f98e3ea.cairo": "assert [__return_value_ptr] = ret_value.contractURI_len;\nlet __return_value_ptr = __return_value_ptr + 1;\n", + "autogen/starknet/arg_processor/3df93897a3d5ba5292d0e14e5ec6fc5a7b4e70846d4b45d9e0d60ead1a53339e.cairo": "let __calldata_arg_approved = [__calldata_ptr];\nlet __calldata_ptr = __calldata_ptr + 1;\n", + "autogen/starknet/arg_processor/3e93b8906c329e7a5c33e020ce7a5a9c542c4444955be98eec5fcbef545a8662.cairo": "let __calldata_arg_value = [__calldata_ptr];\nlet __calldata_ptr = __calldata_ptr + 1;\n", + "autogen/starknet/arg_processor/3fa00a8d2ef4ad5733642f8c5f3a225f5ee5fd306a52e47a3de0f3e4a53969e9.cairo": "assert [__return_value_ptr] = ret_value.root;\nlet __return_value_ptr = __return_value_ptr + 1;\n", + "autogen/starknet/arg_processor/445d818b0524d35ae3e73b7abec41731d1445f0ce6866ec5a3a8a871521799a0.cairo": "assert [__calldata_ptr] = newOwner;\nlet __calldata_ptr = __calldata_ptr + 1;\n", + "autogen/starknet/arg_processor/450f0509800d3afb78e5f375ff7b17115e6b5d0fd7e2bff94c78fdb15f5f2d10.cairo": "let __calldata_arg_new_owner = [__calldata_ptr];\nlet __calldata_ptr = __calldata_ptr + 1;\n", + "autogen/starknet/arg_processor/46897e8d1eeb70f43de97768fc576e67eb909a92fef3afcd8593de4462cb359f.cairo": "assert [__calldata_ptr] = contract_address;\nlet __calldata_ptr = __calldata_ptr + 1;\n", + "autogen/starknet/arg_processor/47b7b627c54c3831609963cbafd0e72d89902af04652dab0edd44a32c16fc000.cairo": "// Create a reference to ret_value.royaltyAmount as felt*.\nlet __return_value_tmp: felt* = cast(&ret_value.royaltyAmount, felt*);\nassert [__return_value_ptr + 0] = [__return_value_tmp + 0];\nassert [__return_value_ptr + 1] = [__return_value_tmp + 1];\nlet __return_value_ptr = __return_value_ptr + 2;\n", + "autogen/starknet/arg_processor/4f1f3aa0a6fec21a155d7e953cd34daa7ca48450bbb80f627eb4f8df9f25922a.cairo": "let __calldata_arg_data_len = [__calldata_ptr];\nlet __calldata_ptr = __calldata_ptr + 1;\n", + "autogen/starknet/arg_processor/502707e41b9f24cc24d98a88f76cd4304e8e77c4465a6a9402a5f1a76177b453.cairo": "// Create a reference to amount as felt*.\nlet __calldata_tmp: felt* = cast(&amount, felt*);\nassert [__calldata_ptr + 0] = [__calldata_tmp + 0];\nassert [__calldata_ptr + 1] = [__calldata_tmp + 1];\nlet __calldata_ptr = __calldata_ptr + 2;\n", + "autogen/starknet/arg_processor/5462c9ea522f66a6a8b3de2f37f244c7074893fe5c8d0b413046098a1ccfc2ce.cairo": "assert [__return_value_ptr] = ret_value.token_uri_len;\nlet __return_value_ptr = __return_value_ptr + 1;\n", + "autogen/starknet/arg_processor/5acfd8e875f992ccc9524eb75bc3cf4970bff0987c9ed04b83bdbe0bdb94c8b5.cairo": "assert [__calldata_ptr] = data_len;\nlet __calldata_ptr = __calldata_ptr + 1;\n", + "autogen/starknet/arg_processor/5c10028f67364b153272aa9b4cbc0fb78920a40fab821ac7257b0069e0773b49.cairo": "assert [__return_value_ptr] = ret_value.success;\nlet __return_value_ptr = __return_value_ptr + 1;\n", + "autogen/starknet/arg_processor/5f6f38b703e229f570e2da89310885489d239999dac5c644617b668e9f79038b.cairo": "// Create a reference to ret_value.cell as felt*.\nlet __return_value_tmp: felt* = cast(&ret_value.cell, felt*);\nassert [__return_value_ptr + 0] = [__return_value_tmp + 0];\nassert [__return_value_ptr + 1] = [__return_value_tmp + 1];\nassert [__return_value_ptr + 2] = [__return_value_tmp + 2];\nlet __return_value_ptr = __return_value_ptr + 3;\n", + "autogen/starknet/arg_processor/5f7cff0f0869183ab81c52dd23cebe852fdd2ffd08dec74a7e76d81c9d544ed2.cairo": "// Check that the length is non-negative.\nassert [range_check_ptr] = data_len;\n// Store the updated range_check_ptr as a local variable to keep it available after\n// the memcpy.\nlocal range_check_ptr = range_check_ptr + 1;\n// Keep a reference to __calldata_ptr.\nlet __calldata_ptr_copy = __calldata_ptr;\n// Store the updated __calldata_ptr as a local variable to keep it available after\n// the memcpy.\nlocal __calldata_ptr: felt* = __calldata_ptr + data_len * 1;\nmemcpy(\n dst=__calldata_ptr_copy,\n src=data,\n len=data_len * 1);\n", + "autogen/starknet/arg_processor/60c79ef5477686f2843e61432dcde7f4fc0f354d42095115ea9dca625a35df6e.cairo": "let __calldata_arg_tokenId = [\n cast(__calldata_ptr, starkware.cairo.common.uint256.Uint256*)];\nlet __calldata_ptr = __calldata_ptr + 2;\n", + "autogen/starknet/arg_processor/6450610d0d553c149684e3d6d36a5d949ffe368d7692d99cec27ac08c51ad845.cairo": "assert [__return_value_ptr] = ret_value.isApproved;\nlet __return_value_ptr = __return_value_ptr + 1;\n", + "autogen/starknet/arg_processor/69c38ae89347c58701f80650a7a4247285d4c5189ca2c34fd58e2c7cf6b09a9e.cairo": "let __calldata_arg_rate = [__calldata_ptr];\nlet __calldata_ptr = __calldata_ptr + 1;\n", + "autogen/starknet/arg_processor/6f345e20daf86e05c346aa1f6a9eeaa296a59eb71a12784c017d25ed5b25ff32.cairo": "assert [__return_value_ptr] = ret_value.name;\nlet __return_value_ptr = __return_value_ptr + 1;\n", + "autogen/starknet/arg_processor/708f2877a5fc05dca278266df4d8e2025597a78068ffd64385f0ef27ab208871.cairo": "let __calldata_arg_interfaceId = [__calldata_ptr];\nlet __calldata_ptr = __calldata_ptr + 1;\n", + "autogen/starknet/arg_processor/712c2a95dbae039e77112e72178da3f83d21edfc1285b387ccfa43e0f878d990.cairo": "assert [__calldata_ptr] = sender;\nlet __calldata_ptr = __calldata_ptr + 1;\n", + "autogen/starknet/arg_processor/718aa2ac933a14995b4c0da5118692224afa83ebc1cf2b531694a3e835400de0.cairo": "assert [__calldata_ptr] = name;\nlet __calldata_ptr = __calldata_ptr + 1;\n", + "autogen/starknet/arg_processor/721e180cb3ac704934655c034d4d45bf2d0ab4353d430b4f2bbda2a388c131b2.cairo": "let __calldata_arg_merkle_root = [__calldata_ptr];\nlet __calldata_ptr = __calldata_ptr + 1;\n", + "autogen/starknet/arg_processor/74a3369943c8d7518ff17d6d8cb3e9a3785e7db4bcf995a7ffbf3a439df0343b.cairo": "assert [__return_value_ptr] = ret_value.approved;\nlet __return_value_ptr = __return_value_ptr + 1;\n", + "autogen/starknet/arg_processor/7e247556a8b9bc505c1e503bda1dbcb424caa8925f45ae18cdde008e8b84b376.cairo": "assert [__calldata_ptr] = owner;\nlet __calldata_ptr = __calldata_ptr + 1;\n", + "autogen/starknet/arg_processor/7e872b5a76cfa33336e13e83d342763f36bad8be8a18be69e78776b449847f1a.cairo": "let __calldata_arg_cellCalldata_len = [__calldata_ptr];\nlet __calldata_ptr = __calldata_ptr + 1;\n", + "autogen/starknet/arg_processor/7e8d4187d234f1ad9572c7c76c7fcab338d2159e013bdd9bfc0f771a29c04f92.cairo": "// Check that the length is non-negative.\nassert [range_check_ptr] = __calldata_arg_cellCalldata_len;\nlet range_check_ptr = range_check_ptr + 1;\n// Create the reference.\nlet __calldata_arg_cellCalldata = cast(__calldata_ptr, felt*);\n// Use 'tempvar' instead of 'let' to avoid repeating this computation for the\n// following arguments.\ntempvar __calldata_ptr = __calldata_ptr + __calldata_arg_cellCalldata_len * 1;\n", + "autogen/starknet/arg_processor/84a24514c1fc47c938055c9b8b555ae76e193c3fe4f1a6a3391748432a916688.cairo": "assert [__calldata_ptr] = value;\nlet __calldata_ptr = __calldata_ptr + 1;\n", + "autogen/starknet/arg_processor/8ca78f1082aaedcf62c13aff4dffe5943aa04164c60cb6d9f03916c0319201df.cairo": "let __return_value_arg_success = [__return_value_ptr];\nlet __return_value_ptr = __return_value_ptr + 1;\n", + "autogen/starknet/arg_processor/8d1ba44ec0b1d27c24688348db19d49f555faaa5454ce90a4e7ba33d6a63afea.cairo": "// Check that the length is non-negative.\nassert [range_check_ptr] = ret_value.token_uri_len;\n// Store the updated range_check_ptr as a local variable to keep it available after\n// the memcpy.\nlocal range_check_ptr = range_check_ptr + 1;\n// Keep a reference to __return_value_ptr.\nlet __return_value_ptr_copy = __return_value_ptr;\n// Store the updated __return_value_ptr as a local variable to keep it available after\n// the memcpy.\nlocal __return_value_ptr: felt* = __return_value_ptr + ret_value.token_uri_len * 1;\nmemcpy(\n dst=__return_value_ptr_copy,\n src=ret_value.token_uri,\n len=ret_value.token_uri_len * 1);\n", + "autogen/starknet/arg_processor/90d39885368c3e7097e50bfd1ab7069fc16a5b7a0aacb507eaa76c5ff838c93e.cairo": "// Check that the length is non-negative.\nassert [range_check_ptr] = __return_value_arg_data_uri_len;\nlet range_check_ptr = range_check_ptr + 1;\n// Create the reference.\nlet __return_value_arg_data_uri = cast(__return_value_ptr, felt*);\n// Use 'tempvar' instead of 'let' to avoid repeating this computation for the\n// following arguments.\ntempvar __return_value_ptr = __return_value_ptr + __return_value_arg_data_uri_len * 1;\n", + "autogen/starknet/arg_processor/96447016176d161dae83f414c4d3e33e78856e0ef69bc33f8d419f1c9b90f9c5.cairo": "assert retdata_size = __return_value_actual_size;\n", + "autogen/starknet/arg_processor/9822619206729a9eadcae854c851238a68f93e9dbd956bc4fa147da27ae12e2e.cairo": "// Create a reference to ret_value.totalSupply as felt*.\nlet __return_value_tmp: felt* = cast(&ret_value.totalSupply, felt*);\nassert [__return_value_ptr + 0] = [__return_value_tmp + 0];\nassert [__return_value_ptr + 1] = [__return_value_tmp + 1];\nlet __return_value_ptr = __return_value_ptr + 2;\n", + "autogen/starknet/arg_processor/99058c0781745b3c0332799d723549974cbf489b623dde03906204304de60803.cairo": "let __calldata_arg_symbol = [__calldata_ptr];\nlet __calldata_ptr = __calldata_ptr + 1;\n", + "autogen/starknet/arg_processor/991401e96db1ccc9a6c9f0069889197ed7b328e3f6872d8dee8bfbdb51297f3a.cairo": "assert [__return_value_ptr] = ret_value.rate;\nlet __return_value_ptr = __return_value_ptr + 1;\n", + "autogen/starknet/arg_processor/991f62016c321db1ce050da1566d298118c65229306c26d6cd25e91286a63d4b.cairo": "let __calldata_arg_proof_len = [__calldata_ptr];\nlet __calldata_ptr = __calldata_ptr + 1;\n", + "autogen/starknet/arg_processor/a98a36d6a206700a5fdb61e2bbb1beffba5cbd4bdfdab9d3af5254d2a0b5137a.cairo": "// Check that the length is non-negative.\nassert [range_check_ptr] = ret_value.contractURI_len;\n// Store the updated range_check_ptr as a local variable to keep it available after\n// the memcpy.\nlocal range_check_ptr = range_check_ptr + 1;\n// Keep a reference to __return_value_ptr.\nlet __return_value_ptr_copy = __return_value_ptr;\n// Store the updated __return_value_ptr as a local variable to keep it available after\n// the memcpy.\nlocal __return_value_ptr: felt* = __return_value_ptr + ret_value.contractURI_len * 1;\nmemcpy(\n dst=__return_value_ptr_copy,\n src=ret_value.contractURI,\n len=ret_value.contractURI_len * 1);\n", + "autogen/starknet/arg_processor/accb388bcbbace5b6218198851efaad2a781c1339e305a37fab51afe90a3194a.cairo": "let __return_value_actual_size = __return_value_ptr - cast(retdata, felt*);\n", + "autogen/starknet/arg_processor/ad6bf90c88bb84c90b568cfe0e89ce22c3213011f6c9cc8bf0b75066ae521c26.cairo": "assert [__calldata_ptr] = from_;\nlet __calldata_ptr = __calldata_ptr + 1;\n", + "autogen/starknet/arg_processor/af6d4cd453be88aedf419d25f7fffbf79059d69e2bbdbfe82d950dd20863c7c6.cairo": "let __calldata_arg_contract_uri_len = [__calldata_ptr];\nlet __calldata_ptr = __calldata_ptr + 1;\n", + "autogen/starknet/arg_processor/b02ddc13e06346668d980e18c0fec90f17036d195bf95d21ac18e846a0a129f3.cairo": "assert [__return_value_ptr] = ret_value.owner;\nlet __return_value_ptr = __return_value_ptr + 1;\n", + "autogen/starknet/arg_processor/b19b7bf952f10d75c6d6d48c16be4d0aa794947e7c7409b4e5d1fff596b961ac.cairo": "let __calldata_arg_cell_calldata_len = [__calldata_ptr];\nlet __calldata_ptr = __calldata_ptr + 1;\n", + "autogen/starknet/arg_processor/b2cf08f23bd6d74eeb872bed49d06f4a7518757c8955198bd7ce9a52a9cf0046.cairo": "assert [__calldata_ptr] = token_id;\nlet __calldata_ptr = __calldata_ptr + 1;\n", + "autogen/starknet/arg_processor/c28d01f4036658535ed1f26a855ca481100f6b9fa5c266733e27ba2dce390d91.cairo": "let __calldata_arg_operator = [__calldata_ptr];\nlet __calldata_ptr = __calldata_ptr + 1;\n", + "autogen/starknet/arg_processor/c31620b02d4d706f0542c989b2aadc01b0981d1f6a5933a8fe4937ace3d70d92.cairo": "let __calldata_actual_size = __calldata_ptr - cast([cast(fp + (-3), felt**)], felt*);\n", + "autogen/starknet/arg_processor/c78355ecc2754d55946f2925c4c255af62ef2b2ddba4e3e4e975bebf3d66daa1.cairo": "let __calldata_arg_renderer_address = [__calldata_ptr];\nlet __calldata_ptr = __calldata_ptr + 1;\n", + "autogen/starknet/arg_processor/c8edcb1cbb2b70f99346c0510efba5a82524d6fbe8558629ad05a45a84efd25b.cairo": "// Check that the length is non-negative.\nassert [range_check_ptr] = __calldata_arg_proof_len;\nlet range_check_ptr = range_check_ptr + 1;\n// Create the reference.\nlet __calldata_arg_proof = cast(__calldata_ptr, felt*);\n// Use 'tempvar' instead of 'let' to avoid repeating this computation for the\n// following arguments.\ntempvar __calldata_ptr = __calldata_ptr + __calldata_arg_proof_len * 1;\n", + "autogen/starknet/arg_processor/cee22ce33150260a0bc7aaad2ed2e39f7a6797138ea5a730329defaab1944291.cairo": "assert [__return_value_ptr] = ret_value.price;\nlet __return_value_ptr = __return_value_ptr + 1;\n", + "autogen/starknet/arg_processor/cf9d155a82359872fd6c3831de72477dc112f8fe156e1c50035a0d8fc012189b.cairo": "// Check that the length is non-negative.\nassert [range_check_ptr] = __calldata_arg_cell_calldata_len;\nlet range_check_ptr = range_check_ptr + 1;\n// Create the reference.\nlet __calldata_arg_cell_calldata = cast(__calldata_ptr, felt*);\n// Use 'tempvar' instead of 'let' to avoid repeating this computation for the\n// following arguments.\ntempvar __calldata_ptr = __calldata_ptr + __calldata_arg_cell_calldata_len * 1;\n", + "autogen/starknet/arg_processor/d1f8dd5812766c8b9a93481fc66a39d49b601278b5c44556f4c0881f1ef1608f.cairo": "let __calldata_arg_index = [\n cast(__calldata_ptr, starkware.cairo.common.uint256.Uint256*)];\nlet __calldata_ptr = __calldata_ptr + 2;\n", + "autogen/starknet/arg_processor/d68c2b8787e4e85a0788ba04df9230f6e6b1f9240af8998fd1d7acac9fe8e6db.cairo": "assert [__calldata_ptr] = operator;\nlet __calldata_ptr = __calldata_ptr + 1;\n", + "autogen/starknet/arg_processor/d7daa544e246461a936b5ac82f5344c08a96429550ee8026ea086c8d8ed93006.cairo": "let __calldata_arg_address = [__calldata_ptr];\nlet __calldata_ptr = __calldata_ptr + 1;\n", + "autogen/starknet/arg_processor/dceaabc265216c0ff87c509d90446554648ec4d692c521cda952464d1fc22972.cairo": "let __calldata_arg_to = [__calldata_ptr];\nlet __calldata_ptr = __calldata_ptr + 1;\n", + "autogen/starknet/arg_processor/df39236eab78c921af48d719316dc25209f5ba97dc94936a936f353a674f3486.cairo": "let __calldata_arg_from_ = [__calldata_ptr];\nlet __calldata_ptr = __calldata_ptr + 1;\n", + "autogen/starknet/arg_processor/df6558fb624ff95b391487d89cf1d15202347277ab6f09ea4641de6f8bec1e9e.cairo": "let __calldata_arg_salePrice = [\n cast(__calldata_ptr, starkware.cairo.common.uint256.Uint256*)];\nlet __calldata_ptr = __calldata_ptr + 2;\n", + "autogen/starknet/arg_processor/e0af26f9fbe513562e2133164d694cbff092c47bbb4efa182711421f0c0cc5d3.cairo": "// Check that the length is non-negative.\nassert [range_check_ptr] = __calldata_arg_data_len;\nlet range_check_ptr = range_check_ptr + 1;\n// Create the reference.\nlet __calldata_arg_data = cast(__calldata_ptr, felt*);\n// Use 'tempvar' instead of 'let' to avoid repeating this computation for the\n// following arguments.\ntempvar __calldata_ptr = __calldata_ptr + __calldata_arg_data_len * 1;\n", + "autogen/starknet/arg_processor/e1eb73cd870ec466294c3700e77817cf3c039ac1384882ddb76383eb87a5da90.cairo": "let __calldata_arg_name = [__calldata_ptr];\nlet __calldata_ptr = __calldata_ptr + 1;\n", + "autogen/starknet/arg_processor/e2129a0023ce5f9e4c3de1d6fb100b2688dccff4a2ed2082db4a311f35c53e21.cairo": "assert [__calldata_ptr] = previousOwner;\nlet __calldata_ptr = __calldata_ptr + 1;\n", + "autogen/starknet/arg_processor/e276a8bfa422a700d63781b00d1ac04d0496d9b70b1f051710b53e01fffe130c.cairo": "assert [__return_value_ptr] = ret_value.max;\nlet __return_value_ptr = __return_value_ptr + 1;\n", + "autogen/starknet/arg_processor/e35382e271586e2ad95e0c2b81d70c0cfb65ce154855d90ea95dcf9e76667535.cairo": "let __calldata_arg_max_per_wallet = [__calldata_ptr];\nlet __calldata_ptr = __calldata_ptr + 1;\n", + "autogen/starknet/arg_processor/f013cc89754bf613d36aa163a5014b518987d20a85394ebbe3c47c5cdb0a38b1.cairo": "// Create a reference to ret_value.balance as felt*.\nlet __return_value_tmp: felt* = cast(&ret_value.balance, felt*);\nassert [__return_value_ptr + 0] = [__return_value_tmp + 0];\nassert [__return_value_ptr + 1] = [__return_value_tmp + 1];\nlet __return_value_ptr = __return_value_ptr + 2;\n", + "autogen/starknet/arg_processor/f204bba64347870893c4affbf57c4cff6fc02af3b0ac400d4d3ba5c273c8059c.cairo": "assert [__return_value_ptr] = ret_value.cell_calldata_len;\nlet __return_value_ptr = __return_value_ptr + 1;\n", + "autogen/starknet/arg_processor/f6a4d9ae897caf37cefd18f7c8da7eee73157818279359aadee282f0fe59cdbc.cairo": "let __calldata_arg_owner = [__calldata_ptr];\nlet __calldata_ptr = __calldata_ptr + 1;\n", + "autogen/starknet/contract_interface/ICellRenderer/token_uri/41262dba046518ea626ceadddf9bdd89ee1cb488a62fdf8cc47232b6ce4027bb.cairo": "func token_uri{syscall_ptr: felt*, range_check_ptr}(\n contract_address: felt) {\n}\n", + "autogen/starknet/contract_interface/ICellRenderer/token_uri/63dec979b849c8d317c85f20bf92c57762e3a959db375d2edb42d111867dcba1.cairo": "\nreturn (data_uri_len=__return_value_arg_data_uri_len, data_uri=__return_value_arg_data_uri,);\n", + "autogen/starknet/contract_interface/ICellRenderer/token_uri/64f7842b108e76706927b78270ac73c789c558c54431b3359e4441e63ec2a868.cairo": "\nalloc_locals;\nlet (local calldata_ptr_start: felt*) = alloc();\nlet __calldata_ptr = calldata_ptr_start;\n", + "autogen/starknet/contract_interface/ICellRenderer/token_uri/e1e41e9022bda39c4617b9e4e338140cde71000402172e9b2b9c9fdc807617dc.cairo": "\nlet (retdata_size, retdata) = call_contract(\n contract_address=contract_address,\n function_selector=TOKEN_URI_SELECTOR,\n calldata_size=__calldata_ptr - calldata_ptr_start,\n calldata=calldata_ptr_start);\n", + "autogen/starknet/contract_interface/IERC165/supportsInterface/18abb29d0a089e1c243e4bd2b316687e6162b3321c14733ee37389da5d8b074f.cairo": "\nreturn (success=__return_value_arg_success,);\n", + "autogen/starknet/contract_interface/IERC165/supportsInterface/2a1791e6eb36480300e6de9be3cf0c73e2bf0096fbe6995a9e4600da5d0240a4.cairo": "func supportsInterface{syscall_ptr: felt*, range_check_ptr}(\n contract_address: felt) {\n}\n", + "autogen/starknet/contract_interface/IERC165/supportsInterface/64f7842b108e76706927b78270ac73c789c558c54431b3359e4441e63ec2a868.cairo": "\nalloc_locals;\nlet (local calldata_ptr_start: felt*) = alloc();\nlet __calldata_ptr = calldata_ptr_start;\n", + "autogen/starknet/contract_interface/IERC165/supportsInterface/f50ea4a37616147e889ba1b747383d1afbdef44f9e4713bc1859b7607cc3c796.cairo": "\nlet (retdata_size, retdata) = call_contract(\n contract_address=contract_address,\n function_selector=SUPPORTSINTERFACE_SELECTOR,\n calldata_size=__calldata_ptr - calldata_ptr_start,\n calldata=calldata_ptr_start);\n", + "autogen/starknet/contract_interface/IERC20/transferFrom/18abb29d0a089e1c243e4bd2b316687e6162b3321c14733ee37389da5d8b074f.cairo": "\nreturn (success=__return_value_arg_success,);\n", + "autogen/starknet/contract_interface/IERC20/transferFrom/64f7842b108e76706927b78270ac73c789c558c54431b3359e4441e63ec2a868.cairo": "\nalloc_locals;\nlet (local calldata_ptr_start: felt*) = alloc();\nlet __calldata_ptr = calldata_ptr_start;\n", + "autogen/starknet/contract_interface/IERC20/transferFrom/b016d077f46f58d4cffabd707b4d3495a859d0f543f418223b1ea57e409144f2.cairo": "\nlet (retdata_size, retdata) = call_contract(\n contract_address=contract_address,\n function_selector=TRANSFERFROM_SELECTOR,\n calldata_size=__calldata_ptr - calldata_ptr_start,\n calldata=calldata_ptr_start);\n", + "autogen/starknet/contract_interface/IERC20/transferFrom/f8c7980cd46ed6d764c999318b5692736b724dc08c1bf96e92d1b77ddf37af10.cairo": "func transferFrom{syscall_ptr: felt*, range_check_ptr}(\n contract_address: felt) {\n}\n", + "autogen/starknet/contract_interface/IERC721Receiver/onERC721Received/15cc68dcffa081f990a115434ffe958c4bde04186a7f9f51e10c68f8fafad966.cairo": "\nlet (retdata_size, retdata) = call_contract(\n contract_address=contract_address,\n function_selector=ONERC721RECEIVED_SELECTOR,\n calldata_size=__calldata_ptr - calldata_ptr_start,\n calldata=calldata_ptr_start);\n", + "autogen/starknet/contract_interface/IERC721Receiver/onERC721Received/64f7842b108e76706927b78270ac73c789c558c54431b3359e4441e63ec2a868.cairo": "\nalloc_locals;\nlet (local calldata_ptr_start: felt*) = alloc();\nlet __calldata_ptr = calldata_ptr_start;\n", + "autogen/starknet/contract_interface/IERC721Receiver/onERC721Received/7867481925aec1465158cbaa62d2d4fc603e34734d22c5e07da7379a4d0d3f0e.cairo": "func onERC721Received{syscall_ptr: felt*, range_check_ptr}(\n contract_address: felt) {\n}\n", + "autogen/starknet/contract_interface/IERC721Receiver/onERC721Received/eacb58a12700a3c997996f81c85f24b3de75e21f5c5811cc3b2470465a1aa212.cairo": "\nreturn (selector=__return_value_arg_selector,);\n", + "autogen/starknet/event/Approval/6150feec30bd48bfd0f446ed8c155a6d911a2c3fb3ec7a980733900416819259.cairo": "emit_event(keys_len=1, keys=__keys_ptr, data_len=__calldata_ptr - __data_ptr, data=__data_ptr);\nreturn ();\n", + "autogen/starknet/event/Approval/8220fde17ca5479f12ae71a8036f4d354fe722f2c036da610b53511924e4ee84.cairo": "alloc_locals;\nlet (local __keys_ptr: felt*) = alloc();\nassert [__keys_ptr] = SELECTOR;\nlet (local __data_ptr: felt*) = alloc();\nlet __calldata_ptr = __data_ptr;\n", + "autogen/starknet/event/Approval/a7a8ae41be29ac9f4f6c3b7837c448d787ca051dd1ade98f409e54d33d112504.cairo": "func emit{syscall_ptr: felt*, range_check_ptr}() {\n}\n", + "autogen/starknet/event/ApprovalForAll/6150feec30bd48bfd0f446ed8c155a6d911a2c3fb3ec7a980733900416819259.cairo": "emit_event(keys_len=1, keys=__keys_ptr, data_len=__calldata_ptr - __data_ptr, data=__data_ptr);\nreturn ();\n", + "autogen/starknet/event/ApprovalForAll/8220fde17ca5479f12ae71a8036f4d354fe722f2c036da610b53511924e4ee84.cairo": "alloc_locals;\nlet (local __keys_ptr: felt*) = alloc();\nassert [__keys_ptr] = SELECTOR;\nlet (local __data_ptr: felt*) = alloc();\nlet __calldata_ptr = __data_ptr;\n", + "autogen/starknet/event/ApprovalForAll/a7a8ae41be29ac9f4f6c3b7837c448d787ca051dd1ade98f409e54d33d112504.cairo": "func emit{syscall_ptr: felt*, range_check_ptr}() {\n}\n", + "autogen/starknet/event/CellUpdated/6150feec30bd48bfd0f446ed8c155a6d911a2c3fb3ec7a980733900416819259.cairo": "emit_event(keys_len=1, keys=__keys_ptr, data_len=__calldata_ptr - __data_ptr, data=__data_ptr);\nreturn ();\n", + "autogen/starknet/event/CellUpdated/8220fde17ca5479f12ae71a8036f4d354fe722f2c036da610b53511924e4ee84.cairo": "alloc_locals;\nlet (local __keys_ptr: felt*) = alloc();\nassert [__keys_ptr] = SELECTOR;\nlet (local __data_ptr: felt*) = alloc();\nlet __calldata_ptr = __data_ptr;\n", + "autogen/starknet/event/CellUpdated/a7a8ae41be29ac9f4f6c3b7837c448d787ca051dd1ade98f409e54d33d112504.cairo": "func emit{syscall_ptr: felt*, range_check_ptr}() {\n}\n", + "autogen/starknet/event/OwnershipTransferred/6150feec30bd48bfd0f446ed8c155a6d911a2c3fb3ec7a980733900416819259.cairo": "emit_event(keys_len=1, keys=__keys_ptr, data_len=__calldata_ptr - __data_ptr, data=__data_ptr);\nreturn ();\n", + "autogen/starknet/event/OwnershipTransferred/8220fde17ca5479f12ae71a8036f4d354fe722f2c036da610b53511924e4ee84.cairo": "alloc_locals;\nlet (local __keys_ptr: felt*) = alloc();\nassert [__keys_ptr] = SELECTOR;\nlet (local __data_ptr: felt*) = alloc();\nlet __calldata_ptr = __data_ptr;\n", + "autogen/starknet/event/OwnershipTransferred/a7a8ae41be29ac9f4f6c3b7837c448d787ca051dd1ade98f409e54d33d112504.cairo": "func emit{syscall_ptr: felt*, range_check_ptr}() {\n}\n", + "autogen/starknet/event/Transfer/6150feec30bd48bfd0f446ed8c155a6d911a2c3fb3ec7a980733900416819259.cairo": "emit_event(keys_len=1, keys=__keys_ptr, data_len=__calldata_ptr - __data_ptr, data=__data_ptr);\nreturn ();\n", + "autogen/starknet/event/Transfer/8220fde17ca5479f12ae71a8036f4d354fe722f2c036da610b53511924e4ee84.cairo": "alloc_locals;\nlet (local __keys_ptr: felt*) = alloc();\nassert [__keys_ptr] = SELECTOR;\nlet (local __data_ptr: felt*) = alloc();\nlet __calldata_ptr = __data_ptr;\n", + "autogen/starknet/event/Transfer/a7a8ae41be29ac9f4f6c3b7837c448d787ca051dd1ade98f409e54d33d112504.cairo": "func emit{syscall_ptr: felt*, range_check_ptr}() {\n}\n", + "autogen/starknet/external/approve/5388f692818f55977b2452a31ce8c0a2aaeeb5ab5c5db8c2d2f3ab50dcff739b.cairo": "let ret_value = __wrapped_func{pedersen_ptr=pedersen_ptr, syscall_ptr=syscall_ptr, range_check_ptr=range_check_ptr}(to=__calldata_arg_to, tokenId=__calldata_arg_tokenId,);\n%{ memory[ap] = segments.add() %} // Allocate memory for return value.\ntempvar retdata: felt*;\nlet retdata_size = 0;\n", + "autogen/starknet/external/approve/741ea357d6336b0bed7bf0472425acd0311d543883b803388880e60a232040c7.cairo": "let range_check_ptr = [cast([cast(fp + (-5), felt**)] + 2, felt*)];\n", + "autogen/starknet/external/approve/9684a85e93c782014ca14293edea4eb2502039a5a7b6538ecd39c56faaf12529.cairo": "let pedersen_ptr = [cast([cast(fp + (-5), felt**)] + 1, starkware.cairo.common.cairo_builtins.HashBuiltin**)];\n", + "autogen/starknet/external/approve/b2c52ca2d2a8fc8791a983086d8716c5eacd0c3d62934914d2286f84b98ff4cb.cairo": "let syscall_ptr = [cast([cast(fp + (-5), felt**)] + 0, felt**)];\n", + "autogen/starknet/external/approve/da17921a4e81c09e730800bbf23bfdbe5e9e6bfaedc59d80fbf62087fa43c27d.cairo": "return (syscall_ptr,pedersen_ptr,range_check_ptr,retdata_size,retdata);\n", + "autogen/starknet/external/balanceOf/741ea357d6336b0bed7bf0472425acd0311d543883b803388880e60a232040c7.cairo": "let range_check_ptr = [cast([cast(fp + (-5), felt**)] + 2, felt*)];\n", + "autogen/starknet/external/balanceOf/9684a85e93c782014ca14293edea4eb2502039a5a7b6538ecd39c56faaf12529.cairo": "let pedersen_ptr = [cast([cast(fp + (-5), felt**)] + 1, starkware.cairo.common.cairo_builtins.HashBuiltin**)];\n", + "autogen/starknet/external/balanceOf/b2c52ca2d2a8fc8791a983086d8716c5eacd0c3d62934914d2286f84b98ff4cb.cairo": "let syscall_ptr = [cast([cast(fp + (-5), felt**)] + 0, felt**)];\n", + "autogen/starknet/external/balanceOf/da17921a4e81c09e730800bbf23bfdbe5e9e6bfaedc59d80fbf62087fa43c27d.cairo": "return (syscall_ptr,pedersen_ptr,range_check_ptr,retdata_size,retdata);\n", + "autogen/starknet/external/balanceOf/e284e4e5d868a363d8b6a6cb098d9657778060e55c5be38c8c67b1857b1926cc.cairo": "let ret_value = __wrapped_func{syscall_ptr=syscall_ptr, pedersen_ptr=pedersen_ptr, range_check_ptr=range_check_ptr}(owner=__calldata_arg_owner,);\nlet (range_check_ptr, retdata_size, retdata) = balanceOf_encode_return(ret_value, range_check_ptr);\n", + "autogen/starknet/external/burn/741ea357d6336b0bed7bf0472425acd0311d543883b803388880e60a232040c7.cairo": "let range_check_ptr = [cast([cast(fp + (-5), felt**)] + 2, felt*)];\n", + "autogen/starknet/external/burn/9684a85e93c782014ca14293edea4eb2502039a5a7b6538ecd39c56faaf12529.cairo": "let pedersen_ptr = [cast([cast(fp + (-5), felt**)] + 1, starkware.cairo.common.cairo_builtins.HashBuiltin**)];\n", + "autogen/starknet/external/burn/b2c52ca2d2a8fc8791a983086d8716c5eacd0c3d62934914d2286f84b98ff4cb.cairo": "let syscall_ptr = [cast([cast(fp + (-5), felt**)] + 0, felt**)];\n", + "autogen/starknet/external/burn/da17921a4e81c09e730800bbf23bfdbe5e9e6bfaedc59d80fbf62087fa43c27d.cairo": "return (syscall_ptr,pedersen_ptr,range_check_ptr,retdata_size,retdata);\n", + "autogen/starknet/external/burn/eaf4d781176f2c7f8e24c490df96b0bc54d4e6b6ef7b6749ba2322b4fdcc923a.cairo": "let ret_value = __wrapped_func{pedersen_ptr=pedersen_ptr, syscall_ptr=syscall_ptr, range_check_ptr=range_check_ptr}(tokenId=__calldata_arg_tokenId,);\n%{ memory[ap] = segments.add() %} // Allocate memory for return value.\ntempvar retdata: felt*;\nlet retdata_size = 0;\n", + "autogen/starknet/external/closeMint/741ea357d6336b0bed7bf0472425acd0311d543883b803388880e60a232040c7.cairo": "let range_check_ptr = [cast([cast(fp + (-5), felt**)] + 2, felt*)];\n", + "autogen/starknet/external/closeMint/8f83d060e7e088c358526f8859eb82973ba2c094c7d9223df6230b744dfa211c.cairo": "let ret_value = __wrapped_func{syscall_ptr=syscall_ptr, pedersen_ptr=pedersen_ptr, range_check_ptr=range_check_ptr}();\n%{ memory[ap] = segments.add() %} // Allocate memory for return value.\ntempvar retdata: felt*;\nlet retdata_size = 0;\n", + "autogen/starknet/external/closeMint/9684a85e93c782014ca14293edea4eb2502039a5a7b6538ecd39c56faaf12529.cairo": "let pedersen_ptr = [cast([cast(fp + (-5), felt**)] + 1, starkware.cairo.common.cairo_builtins.HashBuiltin**)];\n", + "autogen/starknet/external/closeMint/b2c52ca2d2a8fc8791a983086d8716c5eacd0c3d62934914d2286f84b98ff4cb.cairo": "let syscall_ptr = [cast([cast(fp + (-5), felt**)] + 0, felt**)];\n", + "autogen/starknet/external/closeMint/da17921a4e81c09e730800bbf23bfdbe5e9e6bfaedc59d80fbf62087fa43c27d.cairo": "return (syscall_ptr,pedersen_ptr,range_check_ptr,retdata_size,retdata);\n", + "autogen/starknet/external/contractURI/3c9b92c0973b74bf396b0131dcaac8f957a6f0700183164a2207ddd5fa7fe277.cairo": "func contractURI() -> (syscall_ptr: felt*, pedersen_ptr: starkware.cairo.common.cairo_builtins.HashBuiltin*, range_check_ptr: felt, size: felt, retdata: felt*) {\n alloc_locals;\n}\n", + "autogen/starknet/external/contractURI/741ea357d6336b0bed7bf0472425acd0311d543883b803388880e60a232040c7.cairo": "let range_check_ptr = [cast([cast(fp + (-5), felt**)] + 2, felt*)];\n", + "autogen/starknet/external/contractURI/9684a85e93c782014ca14293edea4eb2502039a5a7b6538ecd39c56faaf12529.cairo": "let pedersen_ptr = [cast([cast(fp + (-5), felt**)] + 1, starkware.cairo.common.cairo_builtins.HashBuiltin**)];\n", + "autogen/starknet/external/contractURI/acba12aa8a66bb92372f5fdd79fc376f71f4b521ee6979ba2e3213be2ff11068.cairo": "let ret_value = __wrapped_func{syscall_ptr=syscall_ptr, pedersen_ptr=pedersen_ptr, range_check_ptr=range_check_ptr}();\nlet (range_check_ptr, retdata_size, retdata) = contractURI_encode_return(ret_value, range_check_ptr);\n", + "autogen/starknet/external/contractURI/b2c52ca2d2a8fc8791a983086d8716c5eacd0c3d62934914d2286f84b98ff4cb.cairo": "let syscall_ptr = [cast([cast(fp + (-5), felt**)] + 0, felt**)];\n", + "autogen/starknet/external/contractURI/da17921a4e81c09e730800bbf23bfdbe5e9e6bfaedc59d80fbf62087fa43c27d.cairo": "return (syscall_ptr,pedersen_ptr,range_check_ptr,retdata_size,retdata);\n", + "autogen/starknet/external/getApproved/741ea357d6336b0bed7bf0472425acd0311d543883b803388880e60a232040c7.cairo": "let range_check_ptr = [cast([cast(fp + (-5), felt**)] + 2, felt*)];\n", + "autogen/starknet/external/getApproved/835e657df1ee968194eed5f3c9b857e397b684d36f56ec8a7b26cb299a6be11f.cairo": "let ret_value = __wrapped_func{syscall_ptr=syscall_ptr, pedersen_ptr=pedersen_ptr, range_check_ptr=range_check_ptr}(tokenId=__calldata_arg_tokenId,);\nlet (range_check_ptr, retdata_size, retdata) = getApproved_encode_return(ret_value, range_check_ptr);\n", + "autogen/starknet/external/getApproved/9684a85e93c782014ca14293edea4eb2502039a5a7b6538ecd39c56faaf12529.cairo": "let pedersen_ptr = [cast([cast(fp + (-5), felt**)] + 1, starkware.cairo.common.cairo_builtins.HashBuiltin**)];\n", + "autogen/starknet/external/getApproved/b2c52ca2d2a8fc8791a983086d8716c5eacd0c3d62934914d2286f84b98ff4cb.cairo": "let syscall_ptr = [cast([cast(fp + (-5), felt**)] + 0, felt**)];\n", + "autogen/starknet/external/getApproved/da17921a4e81c09e730800bbf23bfdbe5e9e6bfaedc59d80fbf62087fa43c27d.cairo": "return (syscall_ptr,pedersen_ptr,range_check_ptr,retdata_size,retdata);\n", + "autogen/starknet/external/getCell/741ea357d6336b0bed7bf0472425acd0311d543883b803388880e60a232040c7.cairo": "let range_check_ptr = [cast([cast(fp + (-5), felt**)] + 2, felt*)];\n", + "autogen/starknet/external/getCell/9684a85e93c782014ca14293edea4eb2502039a5a7b6538ecd39c56faaf12529.cairo": "let pedersen_ptr = [cast([cast(fp + (-5), felt**)] + 1, starkware.cairo.common.cairo_builtins.HashBuiltin**)];\n", + "autogen/starknet/external/getCell/b2c52ca2d2a8fc8791a983086d8716c5eacd0c3d62934914d2286f84b98ff4cb.cairo": "let syscall_ptr = [cast([cast(fp + (-5), felt**)] + 0, felt**)];\n", + "autogen/starknet/external/getCell/b9f082c9f793d6f80f66b8a110e326ab27269a523c2aa107129eed9fa07085f2.cairo": "let ret_value = __wrapped_func{syscall_ptr=syscall_ptr, pedersen_ptr=pedersen_ptr, range_check_ptr=range_check_ptr}(tokenId=__calldata_arg_tokenId,);\nlet (range_check_ptr, retdata_size, retdata) = getCell_encode_return(ret_value, range_check_ptr);\n", + "autogen/starknet/external/getCell/da17921a4e81c09e730800bbf23bfdbe5e9e6bfaedc59d80fbf62087fa43c27d.cairo": "return (syscall_ptr,pedersen_ptr,range_check_ptr,retdata_size,retdata);\n", + "autogen/starknet/external/getCell/fc5657cf51bd050c7a3c8729ca7f6e7cfabf2530b3ff0492dd4d28b5d2976ebb.cairo": "func getCell() -> (syscall_ptr: felt*, pedersen_ptr: starkware.cairo.common.cairo_builtins.HashBuiltin*, range_check_ptr: felt, size: felt, retdata: felt*) {\n alloc_locals;\n}\n", + "autogen/starknet/external/getCellPrice/741ea357d6336b0bed7bf0472425acd0311d543883b803388880e60a232040c7.cairo": "let range_check_ptr = [cast([cast(fp + (-5), felt**)] + 2, felt*)];\n", + "autogen/starknet/external/getCellPrice/9684a85e93c782014ca14293edea4eb2502039a5a7b6538ecd39c56faaf12529.cairo": "let pedersen_ptr = [cast([cast(fp + (-5), felt**)] + 1, starkware.cairo.common.cairo_builtins.HashBuiltin**)];\n", + "autogen/starknet/external/getCellPrice/b2c52ca2d2a8fc8791a983086d8716c5eacd0c3d62934914d2286f84b98ff4cb.cairo": "let syscall_ptr = [cast([cast(fp + (-5), felt**)] + 0, felt**)];\n", + "autogen/starknet/external/getCellPrice/da17921a4e81c09e730800bbf23bfdbe5e9e6bfaedc59d80fbf62087fa43c27d.cairo": "return (syscall_ptr,pedersen_ptr,range_check_ptr,retdata_size,retdata);\n", + "autogen/starknet/external/getCellPrice/fccc5dd1e67f7c3e045b0fc99e1ae1a3e5970a12c35705ec24c4da7fe2712e87.cairo": "let ret_value = __wrapped_func{syscall_ptr=syscall_ptr, pedersen_ptr=pedersen_ptr, range_check_ptr=range_check_ptr}();\nlet (range_check_ptr, retdata_size, retdata) = getCellPrice_encode_return(ret_value, range_check_ptr);\n", + "autogen/starknet/external/getCellRenderer/741ea357d6336b0bed7bf0472425acd0311d543883b803388880e60a232040c7.cairo": "let range_check_ptr = [cast([cast(fp + (-5), felt**)] + 2, felt*)];\n", + "autogen/starknet/external/getCellRenderer/9684a85e93c782014ca14293edea4eb2502039a5a7b6538ecd39c56faaf12529.cairo": "let pedersen_ptr = [cast([cast(fp + (-5), felt**)] + 1, starkware.cairo.common.cairo_builtins.HashBuiltin**)];\n", + "autogen/starknet/external/getCellRenderer/ad0970b7c612f5c2245a4fd1a68988d1dca7e1deee86e0b02cc4780b6294c9d7.cairo": "let ret_value = __wrapped_func{syscall_ptr=syscall_ptr, pedersen_ptr=pedersen_ptr, range_check_ptr=range_check_ptr}();\nlet (range_check_ptr, retdata_size, retdata) = getCellRenderer_encode_return(ret_value, range_check_ptr);\n", + "autogen/starknet/external/getCellRenderer/b2c52ca2d2a8fc8791a983086d8716c5eacd0c3d62934914d2286f84b98ff4cb.cairo": "let syscall_ptr = [cast([cast(fp + (-5), felt**)] + 0, felt**)];\n", + "autogen/starknet/external/getCellRenderer/da17921a4e81c09e730800bbf23bfdbe5e9e6bfaedc59d80fbf62087fa43c27d.cairo": "return (syscall_ptr,pedersen_ptr,range_check_ptr,retdata_size,retdata);\n", + "autogen/starknet/external/getMaxPerWallet/741ea357d6336b0bed7bf0472425acd0311d543883b803388880e60a232040c7.cairo": "let range_check_ptr = [cast([cast(fp + (-5), felt**)] + 2, felt*)];\n", + "autogen/starknet/external/getMaxPerWallet/9684a85e93c782014ca14293edea4eb2502039a5a7b6538ecd39c56faaf12529.cairo": "let pedersen_ptr = [cast([cast(fp + (-5), felt**)] + 1, starkware.cairo.common.cairo_builtins.HashBuiltin**)];\n", + "autogen/starknet/external/getMaxPerWallet/b2c52ca2d2a8fc8791a983086d8716c5eacd0c3d62934914d2286f84b98ff4cb.cairo": "let syscall_ptr = [cast([cast(fp + (-5), felt**)] + 0, felt**)];\n", + "autogen/starknet/external/getMaxPerWallet/ceb6999ac1e0d9e3ce90cae3d8b161ded5f8cd083d4cb07d602d4d0dfb9793ea.cairo": "let ret_value = __wrapped_func{syscall_ptr=syscall_ptr, pedersen_ptr=pedersen_ptr, range_check_ptr=range_check_ptr}();\nlet (range_check_ptr, retdata_size, retdata) = getMaxPerWallet_encode_return(ret_value, range_check_ptr);\n", + "autogen/starknet/external/getMaxPerWallet/da17921a4e81c09e730800bbf23bfdbe5e9e6bfaedc59d80fbf62087fa43c27d.cairo": "return (syscall_ptr,pedersen_ptr,range_check_ptr,retdata_size,retdata);\n", + "autogen/starknet/external/getMerkleRoot/741ea357d6336b0bed7bf0472425acd0311d543883b803388880e60a232040c7.cairo": "let range_check_ptr = [cast([cast(fp + (-5), felt**)] + 2, felt*)];\n", + "autogen/starknet/external/getMerkleRoot/9684a85e93c782014ca14293edea4eb2502039a5a7b6538ecd39c56faaf12529.cairo": "let pedersen_ptr = [cast([cast(fp + (-5), felt**)] + 1, starkware.cairo.common.cairo_builtins.HashBuiltin**)];\n", + "autogen/starknet/external/getMerkleRoot/9ec40c6ab1532b67d6b3241da7f0fc2a824d63002b85dbc8e7b345e400aebd93.cairo": "let ret_value = __wrapped_func{syscall_ptr=syscall_ptr, pedersen_ptr=pedersen_ptr, range_check_ptr=range_check_ptr}();\nlet (range_check_ptr, retdata_size, retdata) = getMerkleRoot_encode_return(ret_value, range_check_ptr);\n", + "autogen/starknet/external/getMerkleRoot/b2c52ca2d2a8fc8791a983086d8716c5eacd0c3d62934914d2286f84b98ff4cb.cairo": "let syscall_ptr = [cast([cast(fp + (-5), felt**)] + 0, felt**)];\n", + "autogen/starknet/external/getMerkleRoot/da17921a4e81c09e730800bbf23bfdbe5e9e6bfaedc59d80fbf62087fa43c27d.cairo": "return (syscall_ptr,pedersen_ptr,range_check_ptr,retdata_size,retdata);\n", + "autogen/starknet/external/getRoyaltyRate/0fb46582c6c7a8596e57a36d17bae923c1f3f67df504ae10a80ba55ba16a97cb.cairo": "let ret_value = __wrapped_func{syscall_ptr=syscall_ptr, pedersen_ptr=pedersen_ptr, range_check_ptr=range_check_ptr}();\nlet (range_check_ptr, retdata_size, retdata) = getRoyaltyRate_encode_return(ret_value, range_check_ptr);\n", + "autogen/starknet/external/getRoyaltyRate/741ea357d6336b0bed7bf0472425acd0311d543883b803388880e60a232040c7.cairo": "let range_check_ptr = [cast([cast(fp + (-5), felt**)] + 2, felt*)];\n", + "autogen/starknet/external/getRoyaltyRate/9684a85e93c782014ca14293edea4eb2502039a5a7b6538ecd39c56faaf12529.cairo": "let pedersen_ptr = [cast([cast(fp + (-5), felt**)] + 1, starkware.cairo.common.cairo_builtins.HashBuiltin**)];\n", + "autogen/starknet/external/getRoyaltyRate/b2c52ca2d2a8fc8791a983086d8716c5eacd0c3d62934914d2286f84b98ff4cb.cairo": "let syscall_ptr = [cast([cast(fp + (-5), felt**)] + 0, felt**)];\n", + "autogen/starknet/external/getRoyaltyRate/da17921a4e81c09e730800bbf23bfdbe5e9e6bfaedc59d80fbf62087fa43c27d.cairo": "return (syscall_ptr,pedersen_ptr,range_check_ptr,retdata_size,retdata);\n", + "autogen/starknet/external/initialize/741ea357d6336b0bed7bf0472425acd0311d543883b803388880e60a232040c7.cairo": "let range_check_ptr = [cast([cast(fp + (-5), felt**)] + 2, felt*)];\n", + "autogen/starknet/external/initialize/9684a85e93c782014ca14293edea4eb2502039a5a7b6538ecd39c56faaf12529.cairo": "let pedersen_ptr = [cast([cast(fp + (-5), felt**)] + 1, starkware.cairo.common.cairo_builtins.HashBuiltin**)];\n", + "autogen/starknet/external/initialize/98fffa3d7b20f8a177d79ca985c017c6105a8f832599cc3392d95ef2cfd87a05.cairo": "let ret_value = __wrapped_func{syscall_ptr=syscall_ptr, pedersen_ptr=pedersen_ptr, range_check_ptr=range_check_ptr}(name=__calldata_arg_name, symbol=__calldata_arg_symbol, owner=__calldata_arg_owner, merkle_root=__calldata_arg_merkle_root, max_per_wallet=__calldata_arg_max_per_wallet, renderer_address=__calldata_arg_renderer_address,);\n%{ memory[ap] = segments.add() %} // Allocate memory for return value.\ntempvar retdata: felt*;\nlet retdata_size = 0;\n", + "autogen/starknet/external/initialize/b2c52ca2d2a8fc8791a983086d8716c5eacd0c3d62934914d2286f84b98ff4cb.cairo": "let syscall_ptr = [cast([cast(fp + (-5), felt**)] + 0, felt**)];\n", + "autogen/starknet/external/initialize/da17921a4e81c09e730800bbf23bfdbe5e9e6bfaedc59d80fbf62087fa43c27d.cairo": "return (syscall_ptr,pedersen_ptr,range_check_ptr,retdata_size,retdata);\n", + "autogen/starknet/external/isApprovedForAll/28e6449b750a764997de3246d5af785f29a76b7b369ce53a25f4614d960a20f3.cairo": "let ret_value = __wrapped_func{syscall_ptr=syscall_ptr, pedersen_ptr=pedersen_ptr, range_check_ptr=range_check_ptr}(owner=__calldata_arg_owner, operator=__calldata_arg_operator,);\nlet (range_check_ptr, retdata_size, retdata) = isApprovedForAll_encode_return(ret_value, range_check_ptr);\n", + "autogen/starknet/external/isApprovedForAll/741ea357d6336b0bed7bf0472425acd0311d543883b803388880e60a232040c7.cairo": "let range_check_ptr = [cast([cast(fp + (-5), felt**)] + 2, felt*)];\n", + "autogen/starknet/external/isApprovedForAll/9684a85e93c782014ca14293edea4eb2502039a5a7b6538ecd39c56faaf12529.cairo": "let pedersen_ptr = [cast([cast(fp + (-5), felt**)] + 1, starkware.cairo.common.cairo_builtins.HashBuiltin**)];\n", + "autogen/starknet/external/isApprovedForAll/b2c52ca2d2a8fc8791a983086d8716c5eacd0c3d62934914d2286f84b98ff4cb.cairo": "let syscall_ptr = [cast([cast(fp + (-5), felt**)] + 0, felt**)];\n", + "autogen/starknet/external/isApprovedForAll/da17921a4e81c09e730800bbf23bfdbe5e9e6bfaedc59d80fbf62087fa43c27d.cairo": "return (syscall_ptr,pedersen_ptr,range_check_ptr,retdata_size,retdata);\n", + "autogen/starknet/external/is_initialized/50c3501112c017187b4c12bebdfd953af0bc789f5dc55376df4d428435913d0e.cairo": "let ret_value = __wrapped_func{syscall_ptr=syscall_ptr, pedersen_ptr=pedersen_ptr, range_check_ptr=range_check_ptr}();\nlet (range_check_ptr, retdata_size, retdata) = is_initialized_encode_return(ret_value, range_check_ptr);\n", + "autogen/starknet/external/is_initialized/741ea357d6336b0bed7bf0472425acd0311d543883b803388880e60a232040c7.cairo": "let range_check_ptr = [cast([cast(fp + (-5), felt**)] + 2, felt*)];\n", + "autogen/starknet/external/is_initialized/9684a85e93c782014ca14293edea4eb2502039a5a7b6538ecd39c56faaf12529.cairo": "let pedersen_ptr = [cast([cast(fp + (-5), felt**)] + 1, starkware.cairo.common.cairo_builtins.HashBuiltin**)];\n", + "autogen/starknet/external/is_initialized/b2c52ca2d2a8fc8791a983086d8716c5eacd0c3d62934914d2286f84b98ff4cb.cairo": "let syscall_ptr = [cast([cast(fp + (-5), felt**)] + 0, felt**)];\n", + "autogen/starknet/external/is_initialized/da17921a4e81c09e730800bbf23bfdbe5e9e6bfaedc59d80fbf62087fa43c27d.cairo": "return (syscall_ptr,pedersen_ptr,range_check_ptr,retdata_size,retdata);\n", + "autogen/starknet/external/mintAndSetPublic/741ea357d6336b0bed7bf0472425acd0311d543883b803388880e60a232040c7.cairo": "let range_check_ptr = [cast([cast(fp + (-5), felt**)] + 2, felt*)];\n", + "autogen/starknet/external/mintAndSetPublic/8d28e230e489bc8d7b9f205ad15790d268dd96b367ed23a515f6d462c885a511.cairo": "let ret_value = __wrapped_func{pedersen_ptr=pedersen_ptr, syscall_ptr=syscall_ptr, range_check_ptr=range_check_ptr}(tokenId=__calldata_arg_tokenId, proof_len=__calldata_arg_proof_len, proof=__calldata_arg_proof, contractAddress=__calldata_arg_contractAddress, value=__calldata_arg_value, cellCalldata_len=__calldata_arg_cellCalldata_len, cellCalldata=__calldata_arg_cellCalldata,);\n%{ memory[ap] = segments.add() %} // Allocate memory for return value.\ntempvar retdata: felt*;\nlet retdata_size = 0;\n", + "autogen/starknet/external/mintAndSetPublic/9684a85e93c782014ca14293edea4eb2502039a5a7b6538ecd39c56faaf12529.cairo": "let pedersen_ptr = [cast([cast(fp + (-5), felt**)] + 1, starkware.cairo.common.cairo_builtins.HashBuiltin**)];\n", + "autogen/starknet/external/mintAndSetPublic/b2c52ca2d2a8fc8791a983086d8716c5eacd0c3d62934914d2286f84b98ff4cb.cairo": "let syscall_ptr = [cast([cast(fp + (-5), felt**)] + 0, felt**)];\n", + "autogen/starknet/external/mintAndSetPublic/da17921a4e81c09e730800bbf23bfdbe5e9e6bfaedc59d80fbf62087fa43c27d.cairo": "return (syscall_ptr,pedersen_ptr,range_check_ptr,retdata_size,retdata);\n", + "autogen/starknet/external/mintOwner/5388f692818f55977b2452a31ce8c0a2aaeeb5ab5c5db8c2d2f3ab50dcff739b.cairo": "let ret_value = __wrapped_func{pedersen_ptr=pedersen_ptr, syscall_ptr=syscall_ptr, range_check_ptr=range_check_ptr}(to=__calldata_arg_to, tokenId=__calldata_arg_tokenId,);\n%{ memory[ap] = segments.add() %} // Allocate memory for return value.\ntempvar retdata: felt*;\nlet retdata_size = 0;\n", + "autogen/starknet/external/mintOwner/741ea357d6336b0bed7bf0472425acd0311d543883b803388880e60a232040c7.cairo": "let range_check_ptr = [cast([cast(fp + (-5), felt**)] + 2, felt*)];\n", + "autogen/starknet/external/mintOwner/9684a85e93c782014ca14293edea4eb2502039a5a7b6538ecd39c56faaf12529.cairo": "let pedersen_ptr = [cast([cast(fp + (-5), felt**)] + 1, starkware.cairo.common.cairo_builtins.HashBuiltin**)];\n", + "autogen/starknet/external/mintOwner/b2c52ca2d2a8fc8791a983086d8716c5eacd0c3d62934914d2286f84b98ff4cb.cairo": "let syscall_ptr = [cast([cast(fp + (-5), felt**)] + 0, felt**)];\n", + "autogen/starknet/external/mintOwner/da17921a4e81c09e730800bbf23bfdbe5e9e6bfaedc59d80fbf62087fa43c27d.cairo": "return (syscall_ptr,pedersen_ptr,range_check_ptr,retdata_size,retdata);\n", + "autogen/starknet/external/mintPublic/03792f53710bdf1b4f13130505d4195b48cad96eb41b093c9596524ebfb1aea6.cairo": "let ret_value = __wrapped_func{pedersen_ptr=pedersen_ptr, syscall_ptr=syscall_ptr, range_check_ptr=range_check_ptr}(tokenId=__calldata_arg_tokenId, proof_len=__calldata_arg_proof_len, proof=__calldata_arg_proof,);\n%{ memory[ap] = segments.add() %} // Allocate memory for return value.\ntempvar retdata: felt*;\nlet retdata_size = 0;\n", + "autogen/starknet/external/mintPublic/741ea357d6336b0bed7bf0472425acd0311d543883b803388880e60a232040c7.cairo": "let range_check_ptr = [cast([cast(fp + (-5), felt**)] + 2, felt*)];\n", + "autogen/starknet/external/mintPublic/9684a85e93c782014ca14293edea4eb2502039a5a7b6538ecd39c56faaf12529.cairo": "let pedersen_ptr = [cast([cast(fp + (-5), felt**)] + 1, starkware.cairo.common.cairo_builtins.HashBuiltin**)];\n", + "autogen/starknet/external/mintPublic/b2c52ca2d2a8fc8791a983086d8716c5eacd0c3d62934914d2286f84b98ff4cb.cairo": "let syscall_ptr = [cast([cast(fp + (-5), felt**)] + 0, felt**)];\n", + "autogen/starknet/external/mintPublic/da17921a4e81c09e730800bbf23bfdbe5e9e6bfaedc59d80fbf62087fa43c27d.cairo": "return (syscall_ptr,pedersen_ptr,range_check_ptr,retdata_size,retdata);\n", + "autogen/starknet/external/name/3034a84ffbc2cc9a83b0bdb0bf6aadae87a5c63f8544f4bc76a18d60221f0e94.cairo": "let ret_value = __wrapped_func{syscall_ptr=syscall_ptr, pedersen_ptr=pedersen_ptr, range_check_ptr=range_check_ptr}();\nlet (range_check_ptr, retdata_size, retdata) = name_encode_return(ret_value, range_check_ptr);\n", + "autogen/starknet/external/name/741ea357d6336b0bed7bf0472425acd0311d543883b803388880e60a232040c7.cairo": "let range_check_ptr = [cast([cast(fp + (-5), felt**)] + 2, felt*)];\n", + "autogen/starknet/external/name/9684a85e93c782014ca14293edea4eb2502039a5a7b6538ecd39c56faaf12529.cairo": "let pedersen_ptr = [cast([cast(fp + (-5), felt**)] + 1, starkware.cairo.common.cairo_builtins.HashBuiltin**)];\n", + "autogen/starknet/external/name/b2c52ca2d2a8fc8791a983086d8716c5eacd0c3d62934914d2286f84b98ff4cb.cairo": "let syscall_ptr = [cast([cast(fp + (-5), felt**)] + 0, felt**)];\n", + "autogen/starknet/external/name/da17921a4e81c09e730800bbf23bfdbe5e9e6bfaedc59d80fbf62087fa43c27d.cairo": "return (syscall_ptr,pedersen_ptr,range_check_ptr,retdata_size,retdata);\n", + "autogen/starknet/external/openMint/741ea357d6336b0bed7bf0472425acd0311d543883b803388880e60a232040c7.cairo": "let range_check_ptr = [cast([cast(fp + (-5), felt**)] + 2, felt*)];\n", + "autogen/starknet/external/openMint/8f83d060e7e088c358526f8859eb82973ba2c094c7d9223df6230b744dfa211c.cairo": "let ret_value = __wrapped_func{syscall_ptr=syscall_ptr, pedersen_ptr=pedersen_ptr, range_check_ptr=range_check_ptr}();\n%{ memory[ap] = segments.add() %} // Allocate memory for return value.\ntempvar retdata: felt*;\nlet retdata_size = 0;\n", + "autogen/starknet/external/openMint/9684a85e93c782014ca14293edea4eb2502039a5a7b6538ecd39c56faaf12529.cairo": "let pedersen_ptr = [cast([cast(fp + (-5), felt**)] + 1, starkware.cairo.common.cairo_builtins.HashBuiltin**)];\n", + "autogen/starknet/external/openMint/b2c52ca2d2a8fc8791a983086d8716c5eacd0c3d62934914d2286f84b98ff4cb.cairo": "let syscall_ptr = [cast([cast(fp + (-5), felt**)] + 0, felt**)];\n", + "autogen/starknet/external/openMint/da17921a4e81c09e730800bbf23bfdbe5e9e6bfaedc59d80fbf62087fa43c27d.cairo": "return (syscall_ptr,pedersen_ptr,range_check_ptr,retdata_size,retdata);\n", + "autogen/starknet/external/owner/613a24dd6fa1e6c043f44c3b480cfa5d629bfe6891f43b0ff9ba79b40a6c8e9e.cairo": "let ret_value = __wrapped_func{syscall_ptr=syscall_ptr, pedersen_ptr=pedersen_ptr, range_check_ptr=range_check_ptr}();\nlet (range_check_ptr, retdata_size, retdata) = owner_encode_return(ret_value, range_check_ptr);\n", + "autogen/starknet/external/owner/741ea357d6336b0bed7bf0472425acd0311d543883b803388880e60a232040c7.cairo": "let range_check_ptr = [cast([cast(fp + (-5), felt**)] + 2, felt*)];\n", + "autogen/starknet/external/owner/9684a85e93c782014ca14293edea4eb2502039a5a7b6538ecd39c56faaf12529.cairo": "let pedersen_ptr = [cast([cast(fp + (-5), felt**)] + 1, starkware.cairo.common.cairo_builtins.HashBuiltin**)];\n", + "autogen/starknet/external/owner/b2c52ca2d2a8fc8791a983086d8716c5eacd0c3d62934914d2286f84b98ff4cb.cairo": "let syscall_ptr = [cast([cast(fp + (-5), felt**)] + 0, felt**)];\n", + "autogen/starknet/external/owner/da17921a4e81c09e730800bbf23bfdbe5e9e6bfaedc59d80fbf62087fa43c27d.cairo": "return (syscall_ptr,pedersen_ptr,range_check_ptr,retdata_size,retdata);\n", + "autogen/starknet/external/ownerOf/741ea357d6336b0bed7bf0472425acd0311d543883b803388880e60a232040c7.cairo": "let range_check_ptr = [cast([cast(fp + (-5), felt**)] + 2, felt*)];\n", + "autogen/starknet/external/ownerOf/9684a85e93c782014ca14293edea4eb2502039a5a7b6538ecd39c56faaf12529.cairo": "let pedersen_ptr = [cast([cast(fp + (-5), felt**)] + 1, starkware.cairo.common.cairo_builtins.HashBuiltin**)];\n", + "autogen/starknet/external/ownerOf/b0b45230936b2f4ec6e384bea3a984e2819816dfc8b4e03dac3539fcc1c0dc60.cairo": "let ret_value = __wrapped_func{syscall_ptr=syscall_ptr, pedersen_ptr=pedersen_ptr, range_check_ptr=range_check_ptr}(tokenId=__calldata_arg_tokenId,);\nlet (range_check_ptr, retdata_size, retdata) = ownerOf_encode_return(ret_value, range_check_ptr);\n", + "autogen/starknet/external/ownerOf/b2c52ca2d2a8fc8791a983086d8716c5eacd0c3d62934914d2286f84b98ff4cb.cairo": "let syscall_ptr = [cast([cast(fp + (-5), felt**)] + 0, felt**)];\n", + "autogen/starknet/external/ownerOf/da17921a4e81c09e730800bbf23bfdbe5e9e6bfaedc59d80fbf62087fa43c27d.cairo": "return (syscall_ptr,pedersen_ptr,range_check_ptr,retdata_size,retdata);\n", + "autogen/starknet/external/renderCell/146e356956f1b5b1ec5d9c2427e96b5918bf0557e0b6f7ad743096649056d836.cairo": "let ret_value = __wrapped_func{syscall_ptr=syscall_ptr, pedersen_ptr=pedersen_ptr, range_check_ptr=range_check_ptr}(tokenId=__calldata_arg_tokenId,);\nlet (range_check_ptr, retdata_size, retdata) = renderCell_encode_return(ret_value, range_check_ptr);\n", + "autogen/starknet/external/renderCell/741ea357d6336b0bed7bf0472425acd0311d543883b803388880e60a232040c7.cairo": "let range_check_ptr = [cast([cast(fp + (-5), felt**)] + 2, felt*)];\n", + "autogen/starknet/external/renderCell/9684a85e93c782014ca14293edea4eb2502039a5a7b6538ecd39c56faaf12529.cairo": "let pedersen_ptr = [cast([cast(fp + (-5), felt**)] + 1, starkware.cairo.common.cairo_builtins.HashBuiltin**)];\n", + "autogen/starknet/external/renderCell/b2c52ca2d2a8fc8791a983086d8716c5eacd0c3d62934914d2286f84b98ff4cb.cairo": "let syscall_ptr = [cast([cast(fp + (-5), felt**)] + 0, felt**)];\n", + "autogen/starknet/external/renderCell/da17921a4e81c09e730800bbf23bfdbe5e9e6bfaedc59d80fbf62087fa43c27d.cairo": "return (syscall_ptr,pedersen_ptr,range_check_ptr,retdata_size,retdata);\n", + "autogen/starknet/external/renderCellValue/741ea357d6336b0bed7bf0472425acd0311d543883b803388880e60a232040c7.cairo": "let range_check_ptr = [cast([cast(fp + (-5), felt**)] + 2, felt*)];\n", + "autogen/starknet/external/renderCellValue/9684a85e93c782014ca14293edea4eb2502039a5a7b6538ecd39c56faaf12529.cairo": "let pedersen_ptr = [cast([cast(fp + (-5), felt**)] + 1, starkware.cairo.common.cairo_builtins.HashBuiltin**)];\n", + "autogen/starknet/external/renderCellValue/b2c52ca2d2a8fc8791a983086d8716c5eacd0c3d62934914d2286f84b98ff4cb.cairo": "let syscall_ptr = [cast([cast(fp + (-5), felt**)] + 0, felt**)];\n", + "autogen/starknet/external/renderCellValue/da17921a4e81c09e730800bbf23bfdbe5e9e6bfaedc59d80fbf62087fa43c27d.cairo": "return (syscall_ptr,pedersen_ptr,range_check_ptr,retdata_size,retdata);\n", + "autogen/starknet/external/renderCellValue/f5e623291f93f5721b4e366de1f2f5345d268b1d1b1dd5b6b0411cd83a1a1988.cairo": "let ret_value = __wrapped_func{syscall_ptr=syscall_ptr, pedersen_ptr=pedersen_ptr, range_check_ptr=range_check_ptr}(tokenId=__calldata_arg_tokenId,);\nlet (range_check_ptr, retdata_size, retdata) = renderCellValue_encode_return(ret_value, range_check_ptr);\n", + "autogen/starknet/external/renderGrid/2ea9c7f0441b228ee60fde547a6f592088d6be14cedb6f979f2f4e15977f79ea.cairo": "func renderGrid() -> (syscall_ptr: felt*, pedersen_ptr: starkware.cairo.common.cairo_builtins.HashBuiltin*, range_check_ptr: felt, size: felt, retdata: felt*) {\n alloc_locals;\n}\n", + "autogen/starknet/external/renderGrid/741ea357d6336b0bed7bf0472425acd0311d543883b803388880e60a232040c7.cairo": "let range_check_ptr = [cast([cast(fp + (-5), felt**)] + 2, felt*)];\n", + "autogen/starknet/external/renderGrid/9684a85e93c782014ca14293edea4eb2502039a5a7b6538ecd39c56faaf12529.cairo": "let pedersen_ptr = [cast([cast(fp + (-5), felt**)] + 1, starkware.cairo.common.cairo_builtins.HashBuiltin**)];\n", + "autogen/starknet/external/renderGrid/b2c52ca2d2a8fc8791a983086d8716c5eacd0c3d62934914d2286f84b98ff4cb.cairo": "let syscall_ptr = [cast([cast(fp + (-5), felt**)] + 0, felt**)];\n", + "autogen/starknet/external/renderGrid/da17921a4e81c09e730800bbf23bfdbe5e9e6bfaedc59d80fbf62087fa43c27d.cairo": "return (syscall_ptr,pedersen_ptr,range_check_ptr,retdata_size,retdata);\n", + "autogen/starknet/external/renderGrid/e893877178a8e3e6a487467e13267cb6540bc108f9ef40dde6e8760c2ce03e6d.cairo": "let ret_value = __wrapped_func{syscall_ptr=syscall_ptr, pedersen_ptr=pedersen_ptr, range_check_ptr=range_check_ptr}();\nlet (range_check_ptr, retdata_size, retdata) = renderGrid_encode_return(ret_value, range_check_ptr);\n", + "autogen/starknet/external/return/balanceOf/6be46755be2f937558932379e9c42b1ab153e2ba499cd66beb178511b2106ad9.cairo": "func balanceOf_encode_return(ret_value: (balance: starkware.cairo.common.uint256.Uint256), range_check_ptr) -> (\n range_check_ptr: felt, data_len: felt, data: felt*) {\n %{ memory[ap] = segments.add() %}\n alloc_locals;\n local __return_value_ptr_start: felt*;\n let __return_value_ptr = __return_value_ptr_start;\n with range_check_ptr {\n }\n return (\n range_check_ptr=range_check_ptr,\n data_len=__return_value_ptr - __return_value_ptr_start,\n data=__return_value_ptr_start);\n}\n", + "autogen/starknet/external/return/contractURI/b04c73e7705bedc8f1f7443e51be7624df9567d66b186004fbcf68937ec0909c.cairo": "func contractURI_encode_return(ret_value: (contractURI_len: felt, contractURI: felt*), range_check_ptr) -> (\n range_check_ptr: felt, data_len: felt, data: felt*) {\n %{ memory[ap] = segments.add() %}\n alloc_locals;\n local __return_value_ptr_start: felt*;\n let __return_value_ptr = __return_value_ptr_start;\n with range_check_ptr {\n }\n return (\n range_check_ptr=range_check_ptr,\n data_len=__return_value_ptr - __return_value_ptr_start,\n data=__return_value_ptr_start);\n}\n", + "autogen/starknet/external/return/getApproved/dc5d90a8417d0a28ffeb92cb7cbd7f0e5af1af69279ff1bda88fa7a837af50d3.cairo": "func getApproved_encode_return(ret_value: (approved: felt), range_check_ptr) -> (\n range_check_ptr: felt, data_len: felt, data: felt*) {\n %{ memory[ap] = segments.add() %}\n alloc_locals;\n local __return_value_ptr_start: felt*;\n let __return_value_ptr = __return_value_ptr_start;\n with range_check_ptr {\n }\n return (\n range_check_ptr=range_check_ptr,\n data_len=__return_value_ptr - __return_value_ptr_start,\n data=__return_value_ptr_start);\n}\n", + "autogen/starknet/external/return/getCell/45b3c8aa5973e07cb910131aed3aef1456e8199a31086ed15bad4bcb607a4d71.cairo": "func getCell_encode_return(ret_value: (contractAddress: felt, value: felt, cell_calldata_len: felt, cell_calldata: felt*), range_check_ptr) -> (\n range_check_ptr: felt, data_len: felt, data: felt*) {\n %{ memory[ap] = segments.add() %}\n alloc_locals;\n local __return_value_ptr_start: felt*;\n let __return_value_ptr = __return_value_ptr_start;\n with range_check_ptr {\n }\n return (\n range_check_ptr=range_check_ptr,\n data_len=__return_value_ptr - __return_value_ptr_start,\n data=__return_value_ptr_start);\n}\n", + "autogen/starknet/external/return/getCellPrice/bd75f11e3bc8e8b852ace70d1e9ce1ae3b11781af78d5bdddcbbe1a966b85f69.cairo": "func getCellPrice_encode_return(ret_value: (price: felt), range_check_ptr) -> (\n range_check_ptr: felt, data_len: felt, data: felt*) {\n %{ memory[ap] = segments.add() %}\n alloc_locals;\n local __return_value_ptr_start: felt*;\n let __return_value_ptr = __return_value_ptr_start;\n with range_check_ptr {\n }\n return (\n range_check_ptr=range_check_ptr,\n data_len=__return_value_ptr - __return_value_ptr_start,\n data=__return_value_ptr_start);\n}\n", + "autogen/starknet/external/return/getCellRenderer/32ed84cc62db75f1e784f477fb8a01720540a0a2f04e442b873ca26adef8a14d.cairo": "func getCellRenderer_encode_return(ret_value: (address: felt), range_check_ptr) -> (\n range_check_ptr: felt, data_len: felt, data: felt*) {\n %{ memory[ap] = segments.add() %}\n alloc_locals;\n local __return_value_ptr_start: felt*;\n let __return_value_ptr = __return_value_ptr_start;\n with range_check_ptr {\n }\n return (\n range_check_ptr=range_check_ptr,\n data_len=__return_value_ptr - __return_value_ptr_start,\n data=__return_value_ptr_start);\n}\n", + "autogen/starknet/external/return/getMaxPerWallet/d2ee4d3b1583586a9c7911079b8ad0e4c03e4dff239e0bd34696827d233e32ba.cairo": "func getMaxPerWallet_encode_return(ret_value: (max: felt), range_check_ptr) -> (\n range_check_ptr: felt, data_len: felt, data: felt*) {\n %{ memory[ap] = segments.add() %}\n alloc_locals;\n local __return_value_ptr_start: felt*;\n let __return_value_ptr = __return_value_ptr_start;\n with range_check_ptr {\n }\n return (\n range_check_ptr=range_check_ptr,\n data_len=__return_value_ptr - __return_value_ptr_start,\n data=__return_value_ptr_start);\n}\n", + "autogen/starknet/external/return/getMerkleRoot/495cd1b94c09dee8983a036b9556d859b3656107157b2238179ca9efde6ed739.cairo": "func getMerkleRoot_encode_return(ret_value: (root: felt), range_check_ptr) -> (\n range_check_ptr: felt, data_len: felt, data: felt*) {\n %{ memory[ap] = segments.add() %}\n alloc_locals;\n local __return_value_ptr_start: felt*;\n let __return_value_ptr = __return_value_ptr_start;\n with range_check_ptr {\n }\n return (\n range_check_ptr=range_check_ptr,\n data_len=__return_value_ptr - __return_value_ptr_start,\n data=__return_value_ptr_start);\n}\n", + "autogen/starknet/external/return/getRoyaltyRate/0f99d5930a76fbc9bab0940e7d43c08681df0ba015512b5d7757c7f5e7ec654a.cairo": "func getRoyaltyRate_encode_return(ret_value: (rate: felt), range_check_ptr) -> (\n range_check_ptr: felt, data_len: felt, data: felt*) {\n %{ memory[ap] = segments.add() %}\n alloc_locals;\n local __return_value_ptr_start: felt*;\n let __return_value_ptr = __return_value_ptr_start;\n with range_check_ptr {\n }\n return (\n range_check_ptr=range_check_ptr,\n data_len=__return_value_ptr - __return_value_ptr_start,\n data=__return_value_ptr_start);\n}\n", + "autogen/starknet/external/return/isApprovedForAll/38789844dce484b974dbd524d5dc5d79b5898ffc6c946c5e91ff04055990eef0.cairo": "func isApprovedForAll_encode_return(ret_value: (isApproved: felt), range_check_ptr) -> (\n range_check_ptr: felt, data_len: felt, data: felt*) {\n %{ memory[ap] = segments.add() %}\n alloc_locals;\n local __return_value_ptr_start: felt*;\n let __return_value_ptr = __return_value_ptr_start;\n with range_check_ptr {\n }\n return (\n range_check_ptr=range_check_ptr,\n data_len=__return_value_ptr - __return_value_ptr_start,\n data=__return_value_ptr_start);\n}\n", + "autogen/starknet/external/return/is_initialized/c99ceecf6e21396d4a0ce3c69131d8c5d452cab3b90a24cd92a2105bd59d7aa7.cairo": "func is_initialized_encode_return(ret_value: (res: felt), range_check_ptr) -> (\n range_check_ptr: felt, data_len: felt, data: felt*) {\n %{ memory[ap] = segments.add() %}\n alloc_locals;\n local __return_value_ptr_start: felt*;\n let __return_value_ptr = __return_value_ptr_start;\n with range_check_ptr {\n }\n return (\n range_check_ptr=range_check_ptr,\n data_len=__return_value_ptr - __return_value_ptr_start,\n data=__return_value_ptr_start);\n}\n", + "autogen/starknet/external/return/name/c8fcd0b2b3f24b16bed33f1349d99fe0bde24b7764fe1bdc31d37b9ddca24adc.cairo": "func name_encode_return(ret_value: (name: felt), range_check_ptr) -> (\n range_check_ptr: felt, data_len: felt, data: felt*) {\n %{ memory[ap] = segments.add() %}\n alloc_locals;\n local __return_value_ptr_start: felt*;\n let __return_value_ptr = __return_value_ptr_start;\n with range_check_ptr {\n }\n return (\n range_check_ptr=range_check_ptr,\n data_len=__return_value_ptr - __return_value_ptr_start,\n data=__return_value_ptr_start);\n}\n", + "autogen/starknet/external/return/owner/c1ea7b1e827d8c158fe70e5d717faa1b8c13dd7db70cc1edeadb514de355a1bc.cairo": "func owner_encode_return(ret_value: (owner: felt), range_check_ptr) -> (\n range_check_ptr: felt, data_len: felt, data: felt*) {\n %{ memory[ap] = segments.add() %}\n alloc_locals;\n local __return_value_ptr_start: felt*;\n let __return_value_ptr = __return_value_ptr_start;\n with range_check_ptr {\n }\n return (\n range_check_ptr=range_check_ptr,\n data_len=__return_value_ptr - __return_value_ptr_start,\n data=__return_value_ptr_start);\n}\n", + "autogen/starknet/external/return/ownerOf/e26804beb30ff3fdad1596e68c20c0df03519fc5def143a2feb768126371681c.cairo": "func ownerOf_encode_return(ret_value: (owner: felt), range_check_ptr) -> (\n range_check_ptr: felt, data_len: felt, data: felt*) {\n %{ memory[ap] = segments.add() %}\n alloc_locals;\n local __return_value_ptr_start: felt*;\n let __return_value_ptr = __return_value_ptr_start;\n with range_check_ptr {\n }\n return (\n range_check_ptr=range_check_ptr,\n data_len=__return_value_ptr - __return_value_ptr_start,\n data=__return_value_ptr_start);\n}\n", + "autogen/starknet/external/return/renderCell/519b9d1185b56b8b78dd1f832f4829e22be687880e347646a4023068e141c8d6.cairo": "func renderCell_encode_return(ret_value: (cell: sheet.library.CellRendered), range_check_ptr) -> (\n range_check_ptr: felt, data_len: felt, data: felt*) {\n %{ memory[ap] = segments.add() %}\n alloc_locals;\n local __return_value_ptr_start: felt*;\n let __return_value_ptr = __return_value_ptr_start;\n with range_check_ptr {\n }\n return (\n range_check_ptr=range_check_ptr,\n data_len=__return_value_ptr - __return_value_ptr_start,\n data=__return_value_ptr_start);\n}\n", + "autogen/starknet/external/return/renderCellValue/5178822e53bcca72dafc5ab7de86f8a9c6086d257f9e71100782acd0b5bff53e.cairo": "func renderCellValue_encode_return(ret_value: (value: felt), range_check_ptr) -> (\n range_check_ptr: felt, data_len: felt, data: felt*) {\n %{ memory[ap] = segments.add() %}\n alloc_locals;\n local __return_value_ptr_start: felt*;\n let __return_value_ptr = __return_value_ptr_start;\n with range_check_ptr {\n }\n return (\n range_check_ptr=range_check_ptr,\n data_len=__return_value_ptr - __return_value_ptr_start,\n data=__return_value_ptr_start);\n}\n", + "autogen/starknet/external/return/renderGrid/fe9a6a1bcaa57ee30a381bd9a108817459a6bd115cb6e4fe27d4c45a53d5294c.cairo": "func renderGrid_encode_return(ret_value: (cells_len: felt, cells: sheet.library.CellRendered*), range_check_ptr) -> (\n range_check_ptr: felt, data_len: felt, data: felt*) {\n %{ memory[ap] = segments.add() %}\n alloc_locals;\n local __return_value_ptr_start: felt*;\n let __return_value_ptr = __return_value_ptr_start;\n with range_check_ptr {\n }\n return (\n range_check_ptr=range_check_ptr,\n data_len=__return_value_ptr - __return_value_ptr_start,\n data=__return_value_ptr_start);\n}\n", + "autogen/starknet/external/return/royaltyInfo/41ca8085795d3d348e874467bc7dcb7de6e2cf927f816241ae0f1e0c257c5e6f.cairo": "func royaltyInfo_encode_return(ret_value: (receiver: felt, royaltyAmount: starkware.cairo.common.uint256.Uint256), range_check_ptr) -> (\n range_check_ptr: felt, data_len: felt, data: felt*) {\n %{ memory[ap] = segments.add() %}\n alloc_locals;\n local __return_value_ptr_start: felt*;\n let __return_value_ptr = __return_value_ptr_start;\n with range_check_ptr {\n }\n return (\n range_check_ptr=range_check_ptr,\n data_len=__return_value_ptr - __return_value_ptr_start,\n data=__return_value_ptr_start);\n}\n", + "autogen/starknet/external/return/supportsInterface/40b33230f82887d6ee6ba7936c0fcb15006d084631250a62d0c39394fb5b7629.cairo": "func supportsInterface_encode_return(ret_value: (success: felt), range_check_ptr) -> (\n range_check_ptr: felt, data_len: felt, data: felt*) {\n %{ memory[ap] = segments.add() %}\n alloc_locals;\n local __return_value_ptr_start: felt*;\n let __return_value_ptr = __return_value_ptr_start;\n with range_check_ptr {\n }\n return (\n range_check_ptr=range_check_ptr,\n data_len=__return_value_ptr - __return_value_ptr_start,\n data=__return_value_ptr_start);\n}\n", + "autogen/starknet/external/return/symbol/a0ae85480af0490479ac55aa0fb10c479d3c551bd5d0b449dafe97eed061cca1.cairo": "func symbol_encode_return(ret_value: (symbol: felt), range_check_ptr) -> (\n range_check_ptr: felt, data_len: felt, data: felt*) {\n %{ memory[ap] = segments.add() %}\n alloc_locals;\n local __return_value_ptr_start: felt*;\n let __return_value_ptr = __return_value_ptr_start;\n with range_check_ptr {\n }\n return (\n range_check_ptr=range_check_ptr,\n data_len=__return_value_ptr - __return_value_ptr_start,\n data=__return_value_ptr_start);\n}\n", + "autogen/starknet/external/return/tokenByIndex/6c9b4477e48860e369406084e6d163095309287e22bedb8c84c1ffe7fdaa93c9.cairo": "func tokenByIndex_encode_return(ret_value: (tokenId: starkware.cairo.common.uint256.Uint256), range_check_ptr) -> (\n range_check_ptr: felt, data_len: felt, data: felt*) {\n %{ memory[ap] = segments.add() %}\n alloc_locals;\n local __return_value_ptr_start: felt*;\n let __return_value_ptr = __return_value_ptr_start;\n with range_check_ptr {\n }\n return (\n range_check_ptr=range_check_ptr,\n data_len=__return_value_ptr - __return_value_ptr_start,\n data=__return_value_ptr_start);\n}\n", + "autogen/starknet/external/return/tokenOfOwnerByIndex/c5cd611a0f2954a3db08f801163c417bcf50c88f70287322178f6feb818c2683.cairo": "func tokenOfOwnerByIndex_encode_return(ret_value: (tokenId: starkware.cairo.common.uint256.Uint256), range_check_ptr) -> (\n range_check_ptr: felt, data_len: felt, data: felt*) {\n %{ memory[ap] = segments.add() %}\n alloc_locals;\n local __return_value_ptr_start: felt*;\n let __return_value_ptr = __return_value_ptr_start;\n with range_check_ptr {\n }\n return (\n range_check_ptr=range_check_ptr,\n data_len=__return_value_ptr - __return_value_ptr_start,\n data=__return_value_ptr_start);\n}\n", + "autogen/starknet/external/return/tokenURI/fb2afe9383e6d6e4c510e54ea324f398df586428973a4c0745d97d759227d96c.cairo": "func tokenURI_encode_return(ret_value: (token_uri_len: felt, token_uri: felt*), range_check_ptr) -> (\n range_check_ptr: felt, data_len: felt, data: felt*) {\n %{ memory[ap] = segments.add() %}\n alloc_locals;\n local __return_value_ptr_start: felt*;\n let __return_value_ptr = __return_value_ptr_start;\n with range_check_ptr {\n }\n return (\n range_check_ptr=range_check_ptr,\n data_len=__return_value_ptr - __return_value_ptr_start,\n data=__return_value_ptr_start);\n}\n", + "autogen/starknet/external/return/totalSupply/eeeda446bdea67b39cd9f67678f4dfc35c6c1d0744df18691bf4ede77f67f604.cairo": "func totalSupply_encode_return(ret_value: (totalSupply: starkware.cairo.common.uint256.Uint256), range_check_ptr) -> (\n range_check_ptr: felt, data_len: felt, data: felt*) {\n %{ memory[ap] = segments.add() %}\n alloc_locals;\n local __return_value_ptr_start: felt*;\n let __return_value_ptr = __return_value_ptr_start;\n with range_check_ptr {\n }\n return (\n range_check_ptr=range_check_ptr,\n data_len=__return_value_ptr - __return_value_ptr_start,\n data=__return_value_ptr_start);\n}\n", + "autogen/starknet/external/royaltyInfo/0d6449151d6388e110b83c279c8306195b0d0aebee46edf16ab8eea3d5287152.cairo": "let ret_value = __wrapped_func{syscall_ptr=syscall_ptr, pedersen_ptr=pedersen_ptr, range_check_ptr=range_check_ptr}(tokenId=__calldata_arg_tokenId, salePrice=__calldata_arg_salePrice,);\nlet (range_check_ptr, retdata_size, retdata) = royaltyInfo_encode_return(ret_value, range_check_ptr);\n", + "autogen/starknet/external/royaltyInfo/741ea357d6336b0bed7bf0472425acd0311d543883b803388880e60a232040c7.cairo": "let range_check_ptr = [cast([cast(fp + (-5), felt**)] + 2, felt*)];\n", + "autogen/starknet/external/royaltyInfo/9684a85e93c782014ca14293edea4eb2502039a5a7b6538ecd39c56faaf12529.cairo": "let pedersen_ptr = [cast([cast(fp + (-5), felt**)] + 1, starkware.cairo.common.cairo_builtins.HashBuiltin**)];\n", + "autogen/starknet/external/royaltyInfo/b2c52ca2d2a8fc8791a983086d8716c5eacd0c3d62934914d2286f84b98ff4cb.cairo": "let syscall_ptr = [cast([cast(fp + (-5), felt**)] + 0, felt**)];\n", + "autogen/starknet/external/royaltyInfo/da17921a4e81c09e730800bbf23bfdbe5e9e6bfaedc59d80fbf62087fa43c27d.cairo": "return (syscall_ptr,pedersen_ptr,range_check_ptr,retdata_size,retdata);\n", + "autogen/starknet/external/safeTransferFrom/2b49474f1011f9d58397f6c4fb411d470fd935a4210c29898caaad0c7ad72623.cairo": "let ret_value = __wrapped_func{pedersen_ptr=pedersen_ptr, syscall_ptr=syscall_ptr, range_check_ptr=range_check_ptr}(from_=__calldata_arg_from_, to=__calldata_arg_to, tokenId=__calldata_arg_tokenId, data_len=__calldata_arg_data_len, data=__calldata_arg_data,);\n%{ memory[ap] = segments.add() %} // Allocate memory for return value.\ntempvar retdata: felt*;\nlet retdata_size = 0;\n", + "autogen/starknet/external/safeTransferFrom/741ea357d6336b0bed7bf0472425acd0311d543883b803388880e60a232040c7.cairo": "let range_check_ptr = [cast([cast(fp + (-5), felt**)] + 2, felt*)];\n", + "autogen/starknet/external/safeTransferFrom/9684a85e93c782014ca14293edea4eb2502039a5a7b6538ecd39c56faaf12529.cairo": "let pedersen_ptr = [cast([cast(fp + (-5), felt**)] + 1, starkware.cairo.common.cairo_builtins.HashBuiltin**)];\n", + "autogen/starknet/external/safeTransferFrom/b2c52ca2d2a8fc8791a983086d8716c5eacd0c3d62934914d2286f84b98ff4cb.cairo": "let syscall_ptr = [cast([cast(fp + (-5), felt**)] + 0, felt**)];\n", + "autogen/starknet/external/safeTransferFrom/da17921a4e81c09e730800bbf23bfdbe5e9e6bfaedc59d80fbf62087fa43c27d.cairo": "return (syscall_ptr,pedersen_ptr,range_check_ptr,retdata_size,retdata);\n", + "autogen/starknet/external/setApprovalForAll/36d3b3d1e829d7c23b24cbbecc8b2addd27fb9b3d959fca94c45d76a0c77f32d.cairo": "let ret_value = __wrapped_func{syscall_ptr=syscall_ptr, pedersen_ptr=pedersen_ptr, range_check_ptr=range_check_ptr}(operator=__calldata_arg_operator, approved=__calldata_arg_approved,);\n%{ memory[ap] = segments.add() %} // Allocate memory for return value.\ntempvar retdata: felt*;\nlet retdata_size = 0;\n", + "autogen/starknet/external/setApprovalForAll/741ea357d6336b0bed7bf0472425acd0311d543883b803388880e60a232040c7.cairo": "let range_check_ptr = [cast([cast(fp + (-5), felt**)] + 2, felt*)];\n", + "autogen/starknet/external/setApprovalForAll/9684a85e93c782014ca14293edea4eb2502039a5a7b6538ecd39c56faaf12529.cairo": "let pedersen_ptr = [cast([cast(fp + (-5), felt**)] + 1, starkware.cairo.common.cairo_builtins.HashBuiltin**)];\n", + "autogen/starknet/external/setApprovalForAll/b2c52ca2d2a8fc8791a983086d8716c5eacd0c3d62934914d2286f84b98ff4cb.cairo": "let syscall_ptr = [cast([cast(fp + (-5), felt**)] + 0, felt**)];\n", + "autogen/starknet/external/setApprovalForAll/da17921a4e81c09e730800bbf23bfdbe5e9e6bfaedc59d80fbf62087fa43c27d.cairo": "return (syscall_ptr,pedersen_ptr,range_check_ptr,retdata_size,retdata);\n", + "autogen/starknet/external/setCell/4283afad5f046e779f9086ab343c3867291282e0a5a6a5743aa6762671e022a9.cairo": "let ret_value = __wrapped_func{syscall_ptr=syscall_ptr, pedersen_ptr=pedersen_ptr, range_check_ptr=range_check_ptr}(tokenId=__calldata_arg_tokenId, contractAddress=__calldata_arg_contractAddress, value=__calldata_arg_value, cell_calldata_len=__calldata_arg_cell_calldata_len, cell_calldata=__calldata_arg_cell_calldata,);\n%{ memory[ap] = segments.add() %} // Allocate memory for return value.\ntempvar retdata: felt*;\nlet retdata_size = 0;\n", + "autogen/starknet/external/setCell/741ea357d6336b0bed7bf0472425acd0311d543883b803388880e60a232040c7.cairo": "let range_check_ptr = [cast([cast(fp + (-5), felt**)] + 2, felt*)];\n", + "autogen/starknet/external/setCell/9684a85e93c782014ca14293edea4eb2502039a5a7b6538ecd39c56faaf12529.cairo": "let pedersen_ptr = [cast([cast(fp + (-5), felt**)] + 1, starkware.cairo.common.cairo_builtins.HashBuiltin**)];\n", + "autogen/starknet/external/setCell/b2c52ca2d2a8fc8791a983086d8716c5eacd0c3d62934914d2286f84b98ff4cb.cairo": "let syscall_ptr = [cast([cast(fp + (-5), felt**)] + 0, felt**)];\n", + "autogen/starknet/external/setCell/da17921a4e81c09e730800bbf23bfdbe5e9e6bfaedc59d80fbf62087fa43c27d.cairo": "return (syscall_ptr,pedersen_ptr,range_check_ptr,retdata_size,retdata);\n", + "autogen/starknet/external/setCellPrice/6d5d29de66493f79f0601f83ef38e1c0e00eceeff32f74d3139213305d328ede.cairo": "let ret_value = __wrapped_func{syscall_ptr=syscall_ptr, pedersen_ptr=pedersen_ptr, range_check_ptr=range_check_ptr}(price=__calldata_arg_price,);\n%{ memory[ap] = segments.add() %} // Allocate memory for return value.\ntempvar retdata: felt*;\nlet retdata_size = 0;\n", + "autogen/starknet/external/setCellPrice/741ea357d6336b0bed7bf0472425acd0311d543883b803388880e60a232040c7.cairo": "let range_check_ptr = [cast([cast(fp + (-5), felt**)] + 2, felt*)];\n", + "autogen/starknet/external/setCellPrice/9684a85e93c782014ca14293edea4eb2502039a5a7b6538ecd39c56faaf12529.cairo": "let pedersen_ptr = [cast([cast(fp + (-5), felt**)] + 1, starkware.cairo.common.cairo_builtins.HashBuiltin**)];\n", + "autogen/starknet/external/setCellPrice/b2c52ca2d2a8fc8791a983086d8716c5eacd0c3d62934914d2286f84b98ff4cb.cairo": "let syscall_ptr = [cast([cast(fp + (-5), felt**)] + 0, felt**)];\n", + "autogen/starknet/external/setCellPrice/da17921a4e81c09e730800bbf23bfdbe5e9e6bfaedc59d80fbf62087fa43c27d.cairo": "return (syscall_ptr,pedersen_ptr,range_check_ptr,retdata_size,retdata);\n", + "autogen/starknet/external/setCellRenderer/0659a254e8c454b3c657c5278489e4243b32c053e1167867ca4c539b977e7a36.cairo": "let ret_value = __wrapped_func{syscall_ptr=syscall_ptr, pedersen_ptr=pedersen_ptr, range_check_ptr=range_check_ptr}(address=__calldata_arg_address,);\n%{ memory[ap] = segments.add() %} // Allocate memory for return value.\ntempvar retdata: felt*;\nlet retdata_size = 0;\n", + "autogen/starknet/external/setCellRenderer/741ea357d6336b0bed7bf0472425acd0311d543883b803388880e60a232040c7.cairo": "let range_check_ptr = [cast([cast(fp + (-5), felt**)] + 2, felt*)];\n", + "autogen/starknet/external/setCellRenderer/9684a85e93c782014ca14293edea4eb2502039a5a7b6538ecd39c56faaf12529.cairo": "let pedersen_ptr = [cast([cast(fp + (-5), felt**)] + 1, starkware.cairo.common.cairo_builtins.HashBuiltin**)];\n", + "autogen/starknet/external/setCellRenderer/b2c52ca2d2a8fc8791a983086d8716c5eacd0c3d62934914d2286f84b98ff4cb.cairo": "let syscall_ptr = [cast([cast(fp + (-5), felt**)] + 0, felt**)];\n", + "autogen/starknet/external/setCellRenderer/da17921a4e81c09e730800bbf23bfdbe5e9e6bfaedc59d80fbf62087fa43c27d.cairo": "return (syscall_ptr,pedersen_ptr,range_check_ptr,retdata_size,retdata);\n", + "autogen/starknet/external/setContractUri/741ea357d6336b0bed7bf0472425acd0311d543883b803388880e60a232040c7.cairo": "let range_check_ptr = [cast([cast(fp + (-5), felt**)] + 2, felt*)];\n", + "autogen/starknet/external/setContractUri/9684a85e93c782014ca14293edea4eb2502039a5a7b6538ecd39c56faaf12529.cairo": "let pedersen_ptr = [cast([cast(fp + (-5), felt**)] + 1, starkware.cairo.common.cairo_builtins.HashBuiltin**)];\n", + "autogen/starknet/external/setContractUri/b2c52ca2d2a8fc8791a983086d8716c5eacd0c3d62934914d2286f84b98ff4cb.cairo": "let syscall_ptr = [cast([cast(fp + (-5), felt**)] + 0, felt**)];\n", + "autogen/starknet/external/setContractUri/bc1973a34f92efff3cf7802dd0e4dc2f445a6018eef2a0772089ae368edb536b.cairo": "let ret_value = __wrapped_func{syscall_ptr=syscall_ptr, pedersen_ptr=pedersen_ptr, range_check_ptr=range_check_ptr}(contract_uri_len=__calldata_arg_contract_uri_len, contract_uri=__calldata_arg_contract_uri,);\n%{ memory[ap] = segments.add() %} // Allocate memory for return value.\ntempvar retdata: felt*;\nlet retdata_size = 0;\n", + "autogen/starknet/external/setContractUri/da17921a4e81c09e730800bbf23bfdbe5e9e6bfaedc59d80fbf62087fa43c27d.cairo": "return (syscall_ptr,pedersen_ptr,range_check_ptr,retdata_size,retdata);\n", + "autogen/starknet/external/setMaxPerWallet/741ea357d6336b0bed7bf0472425acd0311d543883b803388880e60a232040c7.cairo": "let range_check_ptr = [cast([cast(fp + (-5), felt**)] + 2, felt*)];\n", + "autogen/starknet/external/setMaxPerWallet/9684a85e93c782014ca14293edea4eb2502039a5a7b6538ecd39c56faaf12529.cairo": "let pedersen_ptr = [cast([cast(fp + (-5), felt**)] + 1, starkware.cairo.common.cairo_builtins.HashBuiltin**)];\n", + "autogen/starknet/external/setMaxPerWallet/b2c52ca2d2a8fc8791a983086d8716c5eacd0c3d62934914d2286f84b98ff4cb.cairo": "let syscall_ptr = [cast([cast(fp + (-5), felt**)] + 0, felt**)];\n", + "autogen/starknet/external/setMaxPerWallet/da17921a4e81c09e730800bbf23bfdbe5e9e6bfaedc59d80fbf62087fa43c27d.cairo": "return (syscall_ptr,pedersen_ptr,range_check_ptr,retdata_size,retdata);\n", + "autogen/starknet/external/setMaxPerWallet/e308d249203f5705a190f059b56eb14752af6a01867f138740d0ff96dacabd43.cairo": "let ret_value = __wrapped_func{syscall_ptr=syscall_ptr, pedersen_ptr=pedersen_ptr, range_check_ptr=range_check_ptr}(max=__calldata_arg_max,);\n%{ memory[ap] = segments.add() %} // Allocate memory for return value.\ntempvar retdata: felt*;\nlet retdata_size = 0;\n", + "autogen/starknet/external/setMerkleRoot/161aaf3a5af5c303dbefacf522ccca3916f71a0b81c07d23f94176863241c379.cairo": "let ret_value = __wrapped_func{syscall_ptr=syscall_ptr, pedersen_ptr=pedersen_ptr, range_check_ptr=range_check_ptr}(root=__calldata_arg_root,);\n%{ memory[ap] = segments.add() %} // Allocate memory for return value.\ntempvar retdata: felt*;\nlet retdata_size = 0;\n", + "autogen/starknet/external/setMerkleRoot/741ea357d6336b0bed7bf0472425acd0311d543883b803388880e60a232040c7.cairo": "let range_check_ptr = [cast([cast(fp + (-5), felt**)] + 2, felt*)];\n", + "autogen/starknet/external/setMerkleRoot/9684a85e93c782014ca14293edea4eb2502039a5a7b6538ecd39c56faaf12529.cairo": "let pedersen_ptr = [cast([cast(fp + (-5), felt**)] + 1, starkware.cairo.common.cairo_builtins.HashBuiltin**)];\n", + "autogen/starknet/external/setMerkleRoot/b2c52ca2d2a8fc8791a983086d8716c5eacd0c3d62934914d2286f84b98ff4cb.cairo": "let syscall_ptr = [cast([cast(fp + (-5), felt**)] + 0, felt**)];\n", + "autogen/starknet/external/setMerkleRoot/da17921a4e81c09e730800bbf23bfdbe5e9e6bfaedc59d80fbf62087fa43c27d.cairo": "return (syscall_ptr,pedersen_ptr,range_check_ptr,retdata_size,retdata);\n", + "autogen/starknet/external/setName/741ea357d6336b0bed7bf0472425acd0311d543883b803388880e60a232040c7.cairo": "let range_check_ptr = [cast([cast(fp + (-5), felt**)] + 2, felt*)];\n", + "autogen/starknet/external/setName/9684a85e93c782014ca14293edea4eb2502039a5a7b6538ecd39c56faaf12529.cairo": "let pedersen_ptr = [cast([cast(fp + (-5), felt**)] + 1, starkware.cairo.common.cairo_builtins.HashBuiltin**)];\n", + "autogen/starknet/external/setName/b2c52ca2d2a8fc8791a983086d8716c5eacd0c3d62934914d2286f84b98ff4cb.cairo": "let syscall_ptr = [cast([cast(fp + (-5), felt**)] + 0, felt**)];\n", + "autogen/starknet/external/setName/bb24fb091d0ea7be1f9e920b53e594d823ce500753fa71551cd0c2bbaeec9dc6.cairo": "let ret_value = __wrapped_func{syscall_ptr=syscall_ptr, pedersen_ptr=pedersen_ptr, range_check_ptr=range_check_ptr}(name=__calldata_arg_name,);\n%{ memory[ap] = segments.add() %} // Allocate memory for return value.\ntempvar retdata: felt*;\nlet retdata_size = 0;\n", + "autogen/starknet/external/setName/da17921a4e81c09e730800bbf23bfdbe5e9e6bfaedc59d80fbf62087fa43c27d.cairo": "return (syscall_ptr,pedersen_ptr,range_check_ptr,retdata_size,retdata);\n", + "autogen/starknet/external/setRoyaltyRate/083507ab80db46b8d907e812b7919f83e5836bf7fe04d255e574f242d9782cfb.cairo": "let ret_value = __wrapped_func{syscall_ptr=syscall_ptr, pedersen_ptr=pedersen_ptr, range_check_ptr=range_check_ptr}(rate=__calldata_arg_rate,);\n%{ memory[ap] = segments.add() %} // Allocate memory for return value.\ntempvar retdata: felt*;\nlet retdata_size = 0;\n", + "autogen/starknet/external/setRoyaltyRate/741ea357d6336b0bed7bf0472425acd0311d543883b803388880e60a232040c7.cairo": "let range_check_ptr = [cast([cast(fp + (-5), felt**)] + 2, felt*)];\n", + "autogen/starknet/external/setRoyaltyRate/9684a85e93c782014ca14293edea4eb2502039a5a7b6538ecd39c56faaf12529.cairo": "let pedersen_ptr = [cast([cast(fp + (-5), felt**)] + 1, starkware.cairo.common.cairo_builtins.HashBuiltin**)];\n", + "autogen/starknet/external/setRoyaltyRate/b2c52ca2d2a8fc8791a983086d8716c5eacd0c3d62934914d2286f84b98ff4cb.cairo": "let syscall_ptr = [cast([cast(fp + (-5), felt**)] + 0, felt**)];\n", + "autogen/starknet/external/setRoyaltyRate/da17921a4e81c09e730800bbf23bfdbe5e9e6bfaedc59d80fbf62087fa43c27d.cairo": "return (syscall_ptr,pedersen_ptr,range_check_ptr,retdata_size,retdata);\n", + "autogen/starknet/external/setSymbol/3c4c33a42220d05bff4a95649dc588c572ac2ba07f46c350bc8b16ee54c763af.cairo": "let ret_value = __wrapped_func{syscall_ptr=syscall_ptr, pedersen_ptr=pedersen_ptr, range_check_ptr=range_check_ptr}(symbol=__calldata_arg_symbol,);\n%{ memory[ap] = segments.add() %} // Allocate memory for return value.\ntempvar retdata: felt*;\nlet retdata_size = 0;\n", + "autogen/starknet/external/setSymbol/741ea357d6336b0bed7bf0472425acd0311d543883b803388880e60a232040c7.cairo": "let range_check_ptr = [cast([cast(fp + (-5), felt**)] + 2, felt*)];\n", + "autogen/starknet/external/setSymbol/9684a85e93c782014ca14293edea4eb2502039a5a7b6538ecd39c56faaf12529.cairo": "let pedersen_ptr = [cast([cast(fp + (-5), felt**)] + 1, starkware.cairo.common.cairo_builtins.HashBuiltin**)];\n", + "autogen/starknet/external/setSymbol/b2c52ca2d2a8fc8791a983086d8716c5eacd0c3d62934914d2286f84b98ff4cb.cairo": "let syscall_ptr = [cast([cast(fp + (-5), felt**)] + 0, felt**)];\n", + "autogen/starknet/external/setSymbol/da17921a4e81c09e730800bbf23bfdbe5e9e6bfaedc59d80fbf62087fa43c27d.cairo": "return (syscall_ptr,pedersen_ptr,range_check_ptr,retdata_size,retdata);\n", + "autogen/starknet/external/supportsInterface/741ea357d6336b0bed7bf0472425acd0311d543883b803388880e60a232040c7.cairo": "let range_check_ptr = [cast([cast(fp + (-5), felt**)] + 2, felt*)];\n", + "autogen/starknet/external/supportsInterface/9684a85e93c782014ca14293edea4eb2502039a5a7b6538ecd39c56faaf12529.cairo": "let pedersen_ptr = [cast([cast(fp + (-5), felt**)] + 1, starkware.cairo.common.cairo_builtins.HashBuiltin**)];\n", + "autogen/starknet/external/supportsInterface/b2c52ca2d2a8fc8791a983086d8716c5eacd0c3d62934914d2286f84b98ff4cb.cairo": "let syscall_ptr = [cast([cast(fp + (-5), felt**)] + 0, felt**)];\n", + "autogen/starknet/external/supportsInterface/bca8209c591df9f65b13800fe22999fe396aef7f2e9ee72505ad6a9793c5916d.cairo": "let ret_value = __wrapped_func{syscall_ptr=syscall_ptr, pedersen_ptr=pedersen_ptr, range_check_ptr=range_check_ptr}(interfaceId=__calldata_arg_interfaceId,);\nlet (range_check_ptr, retdata_size, retdata) = supportsInterface_encode_return(ret_value, range_check_ptr);\n", + "autogen/starknet/external/supportsInterface/da17921a4e81c09e730800bbf23bfdbe5e9e6bfaedc59d80fbf62087fa43c27d.cairo": "return (syscall_ptr,pedersen_ptr,range_check_ptr,retdata_size,retdata);\n", + "autogen/starknet/external/symbol/741ea357d6336b0bed7bf0472425acd0311d543883b803388880e60a232040c7.cairo": "let range_check_ptr = [cast([cast(fp + (-5), felt**)] + 2, felt*)];\n", + "autogen/starknet/external/symbol/9684a85e93c782014ca14293edea4eb2502039a5a7b6538ecd39c56faaf12529.cairo": "let pedersen_ptr = [cast([cast(fp + (-5), felt**)] + 1, starkware.cairo.common.cairo_builtins.HashBuiltin**)];\n", + "autogen/starknet/external/symbol/b2c52ca2d2a8fc8791a983086d8716c5eacd0c3d62934914d2286f84b98ff4cb.cairo": "let syscall_ptr = [cast([cast(fp + (-5), felt**)] + 0, felt**)];\n", + "autogen/starknet/external/symbol/d8aa55fbbc45562d781915a1c7930fc50b33d8bd29db7102b5c44cbfd8b54639.cairo": "let ret_value = __wrapped_func{syscall_ptr=syscall_ptr, pedersen_ptr=pedersen_ptr, range_check_ptr=range_check_ptr}();\nlet (range_check_ptr, retdata_size, retdata) = symbol_encode_return(ret_value, range_check_ptr);\n", + "autogen/starknet/external/symbol/da17921a4e81c09e730800bbf23bfdbe5e9e6bfaedc59d80fbf62087fa43c27d.cairo": "return (syscall_ptr,pedersen_ptr,range_check_ptr,retdata_size,retdata);\n", + "autogen/starknet/external/tokenByIndex/741ea357d6336b0bed7bf0472425acd0311d543883b803388880e60a232040c7.cairo": "let range_check_ptr = [cast([cast(fp + (-5), felt**)] + 2, felt*)];\n", + "autogen/starknet/external/tokenByIndex/764d32c547e6047601bca718c9c34d89ceb4a36da87d3814e62b7924e8a28eda.cairo": "let ret_value = __wrapped_func{pedersen_ptr=pedersen_ptr, syscall_ptr=syscall_ptr, range_check_ptr=range_check_ptr}(index=__calldata_arg_index,);\nlet (range_check_ptr, retdata_size, retdata) = tokenByIndex_encode_return(ret_value, range_check_ptr);\n", + "autogen/starknet/external/tokenByIndex/9684a85e93c782014ca14293edea4eb2502039a5a7b6538ecd39c56faaf12529.cairo": "let pedersen_ptr = [cast([cast(fp + (-5), felt**)] + 1, starkware.cairo.common.cairo_builtins.HashBuiltin**)];\n", + "autogen/starknet/external/tokenByIndex/b2c52ca2d2a8fc8791a983086d8716c5eacd0c3d62934914d2286f84b98ff4cb.cairo": "let syscall_ptr = [cast([cast(fp + (-5), felt**)] + 0, felt**)];\n", + "autogen/starknet/external/tokenByIndex/da17921a4e81c09e730800bbf23bfdbe5e9e6bfaedc59d80fbf62087fa43c27d.cairo": "return (syscall_ptr,pedersen_ptr,range_check_ptr,retdata_size,retdata);\n", + "autogen/starknet/external/tokenOfOwnerByIndex/741ea357d6336b0bed7bf0472425acd0311d543883b803388880e60a232040c7.cairo": "let range_check_ptr = [cast([cast(fp + (-5), felt**)] + 2, felt*)];\n", + "autogen/starknet/external/tokenOfOwnerByIndex/9684a85e93c782014ca14293edea4eb2502039a5a7b6538ecd39c56faaf12529.cairo": "let pedersen_ptr = [cast([cast(fp + (-5), felt**)] + 1, starkware.cairo.common.cairo_builtins.HashBuiltin**)];\n", + "autogen/starknet/external/tokenOfOwnerByIndex/b2c52ca2d2a8fc8791a983086d8716c5eacd0c3d62934914d2286f84b98ff4cb.cairo": "let syscall_ptr = [cast([cast(fp + (-5), felt**)] + 0, felt**)];\n", + "autogen/starknet/external/tokenOfOwnerByIndex/bcfb5e1fff2b0d63e3f507cf619efd30405ebe178d0663eb8b95f3e0572d1ca5.cairo": "let ret_value = __wrapped_func{pedersen_ptr=pedersen_ptr, syscall_ptr=syscall_ptr, range_check_ptr=range_check_ptr}(owner=__calldata_arg_owner, index=__calldata_arg_index,);\nlet (range_check_ptr, retdata_size, retdata) = tokenOfOwnerByIndex_encode_return(ret_value, range_check_ptr);\n", + "autogen/starknet/external/tokenOfOwnerByIndex/da17921a4e81c09e730800bbf23bfdbe5e9e6bfaedc59d80fbf62087fa43c27d.cairo": "return (syscall_ptr,pedersen_ptr,range_check_ptr,retdata_size,retdata);\n", + "autogen/starknet/external/tokenURI/42e9e406a0e7dbd46b7b1448ce8da1ca2e3fdc14d84af0c1d0d4fdb56a52a5f4.cairo": "let ret_value = __wrapped_func{syscall_ptr=syscall_ptr, pedersen_ptr=pedersen_ptr, range_check_ptr=range_check_ptr}(tokenId=__calldata_arg_tokenId,);\nlet (range_check_ptr, retdata_size, retdata) = tokenURI_encode_return(ret_value, range_check_ptr);\n", + "autogen/starknet/external/tokenURI/741ea357d6336b0bed7bf0472425acd0311d543883b803388880e60a232040c7.cairo": "let range_check_ptr = [cast([cast(fp + (-5), felt**)] + 2, felt*)];\n", + "autogen/starknet/external/tokenURI/86cf3ce3e78b1f08bd517752a6b6deed16efd89e5728b638ff9485a43d30a598.cairo": "func tokenURI() -> (syscall_ptr: felt*, pedersen_ptr: starkware.cairo.common.cairo_builtins.HashBuiltin*, range_check_ptr: felt, size: felt, retdata: felt*) {\n alloc_locals;\n}\n", + "autogen/starknet/external/tokenURI/9684a85e93c782014ca14293edea4eb2502039a5a7b6538ecd39c56faaf12529.cairo": "let pedersen_ptr = [cast([cast(fp + (-5), felt**)] + 1, starkware.cairo.common.cairo_builtins.HashBuiltin**)];\n", + "autogen/starknet/external/tokenURI/b2c52ca2d2a8fc8791a983086d8716c5eacd0c3d62934914d2286f84b98ff4cb.cairo": "let syscall_ptr = [cast([cast(fp + (-5), felt**)] + 0, felt**)];\n", + "autogen/starknet/external/tokenURI/da17921a4e81c09e730800bbf23bfdbe5e9e6bfaedc59d80fbf62087fa43c27d.cairo": "return (syscall_ptr,pedersen_ptr,range_check_ptr,retdata_size,retdata);\n", + "autogen/starknet/external/totalSupply/5b54c430df10b729ecc10b3e860410c6829f116d1a34b32e8415fa1ac24c16d8.cairo": "let ret_value = __wrapped_func{pedersen_ptr=pedersen_ptr, syscall_ptr=syscall_ptr, range_check_ptr=range_check_ptr}();\nlet (range_check_ptr, retdata_size, retdata) = totalSupply_encode_return(ret_value, range_check_ptr);\n", + "autogen/starknet/external/totalSupply/741ea357d6336b0bed7bf0472425acd0311d543883b803388880e60a232040c7.cairo": "let range_check_ptr = [cast([cast(fp + (-5), felt**)] + 2, felt*)];\n", + "autogen/starknet/external/totalSupply/9684a85e93c782014ca14293edea4eb2502039a5a7b6538ecd39c56faaf12529.cairo": "let pedersen_ptr = [cast([cast(fp + (-5), felt**)] + 1, starkware.cairo.common.cairo_builtins.HashBuiltin**)];\n", + "autogen/starknet/external/totalSupply/b2c52ca2d2a8fc8791a983086d8716c5eacd0c3d62934914d2286f84b98ff4cb.cairo": "let syscall_ptr = [cast([cast(fp + (-5), felt**)] + 0, felt**)];\n", + "autogen/starknet/external/totalSupply/da17921a4e81c09e730800bbf23bfdbe5e9e6bfaedc59d80fbf62087fa43c27d.cairo": "return (syscall_ptr,pedersen_ptr,range_check_ptr,retdata_size,retdata);\n", + "autogen/starknet/external/transferFrom/741ea357d6336b0bed7bf0472425acd0311d543883b803388880e60a232040c7.cairo": "let range_check_ptr = [cast([cast(fp + (-5), felt**)] + 2, felt*)];\n", + "autogen/starknet/external/transferFrom/9684a85e93c782014ca14293edea4eb2502039a5a7b6538ecd39c56faaf12529.cairo": "let pedersen_ptr = [cast([cast(fp + (-5), felt**)] + 1, starkware.cairo.common.cairo_builtins.HashBuiltin**)];\n", + "autogen/starknet/external/transferFrom/b2c52ca2d2a8fc8791a983086d8716c5eacd0c3d62934914d2286f84b98ff4cb.cairo": "let syscall_ptr = [cast([cast(fp + (-5), felt**)] + 0, felt**)];\n", + "autogen/starknet/external/transferFrom/da17921a4e81c09e730800bbf23bfdbe5e9e6bfaedc59d80fbf62087fa43c27d.cairo": "return (syscall_ptr,pedersen_ptr,range_check_ptr,retdata_size,retdata);\n", + "autogen/starknet/external/transferFrom/ebf9f2690eeffee22f3d99ab5430147a11d0a2aa047472f5b737d6d09ce13c6e.cairo": "let ret_value = __wrapped_func{pedersen_ptr=pedersen_ptr, syscall_ptr=syscall_ptr, range_check_ptr=range_check_ptr}(from_=__calldata_arg_from_, to=__calldata_arg_to, tokenId=__calldata_arg_tokenId,);\n%{ memory[ap] = segments.add() %} // Allocate memory for return value.\ntempvar retdata: felt*;\nlet retdata_size = 0;\n", + "autogen/starknet/external/transferOwnership/741ea357d6336b0bed7bf0472425acd0311d543883b803388880e60a232040c7.cairo": "let range_check_ptr = [cast([cast(fp + (-5), felt**)] + 2, felt*)];\n", + "autogen/starknet/external/transferOwnership/9684a85e93c782014ca14293edea4eb2502039a5a7b6538ecd39c56faaf12529.cairo": "let pedersen_ptr = [cast([cast(fp + (-5), felt**)] + 1, starkware.cairo.common.cairo_builtins.HashBuiltin**)];\n", + "autogen/starknet/external/transferOwnership/b2c52ca2d2a8fc8791a983086d8716c5eacd0c3d62934914d2286f84b98ff4cb.cairo": "let syscall_ptr = [cast([cast(fp + (-5), felt**)] + 0, felt**)];\n", + "autogen/starknet/external/transferOwnership/c2abbdf6d40d1d1b0441e88eb8846ba0c3d55e5f282e3d3f8d0a35a43a9b3e33.cairo": "let ret_value = __wrapped_func{syscall_ptr=syscall_ptr, pedersen_ptr=pedersen_ptr, range_check_ptr=range_check_ptr}(new_owner=__calldata_arg_new_owner,);\n%{ memory[ap] = segments.add() %} // Allocate memory for return value.\ntempvar retdata: felt*;\nlet retdata_size = 0;\n", + "autogen/starknet/external/transferOwnership/da17921a4e81c09e730800bbf23bfdbe5e9e6bfaedc59d80fbf62087fa43c27d.cairo": "return (syscall_ptr,pedersen_ptr,range_check_ptr,retdata_size,retdata);\n", + "autogen/starknet/storage_var/ERC165_supported_interfaces/decl.cairo": "namespace ERC165_supported_interfaces {\n from starkware.starknet.common.storage import normalize_address\n from starkware.starknet.common.syscalls import storage_read, storage_write\n from starkware.cairo.common.cairo_builtins import HashBuiltin\n from starkware.cairo.common.hash import hash2\n\n func addr{pedersen_ptr: HashBuiltin*, range_check_ptr}(interface_id: felt) -> (res: felt) {\n let res = 0;\n call hash2;\n call normalize_address;\n }\n\n func read{syscall_ptr: felt*, pedersen_ptr: HashBuiltin*, range_check_ptr}(\n interface_id: felt\n ) -> (is_supported: felt) {\n let storage_addr = 0;\n call addr;\n call storage_read;\n }\n\n func write{syscall_ptr: felt*, pedersen_ptr: HashBuiltin*, range_check_ptr}(\n interface_id: felt, value: felt\n ) {\n let storage_addr = 0;\n call addr;\n call storage_write;\n }\n}", + "autogen/starknet/storage_var/ERC165_supported_interfaces/impl.cairo": "namespace ERC165_supported_interfaces {\n from starkware.starknet.common.storage import normalize_address\n from starkware.starknet.common.syscalls import storage_read, storage_write\n from starkware.cairo.common.cairo_builtins import HashBuiltin\n from starkware.cairo.common.hash import hash2\n\n func addr{pedersen_ptr: HashBuiltin*, range_check_ptr}(interface_id: felt) -> (res: felt) {\n let res = 479559987705328862372362947504386080106579713470203672197513890426980061174;\n let (res) = hash2{hash_ptr=pedersen_ptr}(res, cast(&interface_id, felt*)[0]);\n let (res) = normalize_address(addr=res);\n return (res=res);\n }\n\n func read{syscall_ptr: felt*, pedersen_ptr: HashBuiltin*, range_check_ptr}(\n interface_id: felt\n ) -> (is_supported: felt) {\n let (storage_addr) = addr(interface_id);\n let (__storage_var_temp0) = storage_read(address=storage_addr + 0);\n\n tempvar syscall_ptr = syscall_ptr;\n tempvar pedersen_ptr = pedersen_ptr;\n tempvar range_check_ptr = range_check_ptr;\n tempvar __storage_var_temp0: felt = __storage_var_temp0;\n return ([cast(&__storage_var_temp0, felt*)],);\n }\n\n func write{syscall_ptr: felt*, pedersen_ptr: HashBuiltin*, range_check_ptr}(\n interface_id: felt, value: felt\n ) {\n let (storage_addr) = addr(interface_id);\n storage_write(address=storage_addr + 0, value=[cast(&value, felt) + 0]);\n return ();\n }\n}", + "autogen/starknet/storage_var/ERC721Enumerable_all_tokens/decl.cairo": "namespace ERC721Enumerable_all_tokens {\n from starkware.starknet.common.storage import normalize_address\n from starkware.starknet.common.syscalls import storage_read, storage_write\n from starkware.cairo.common.cairo_builtins import HashBuiltin\n from starkware.cairo.common.hash import hash2\n\n func addr{pedersen_ptr: HashBuiltin*, range_check_ptr}(index: Uint256) -> (res: felt) {\n let res = 0;\n call hash2;\n call normalize_address;\n }\n\n func read{syscall_ptr: felt*, pedersen_ptr: HashBuiltin*, range_check_ptr}(index: Uint256) -> (\n token_id: Uint256\n ) {\n let storage_addr = 0;\n call addr;\n call storage_read;\n }\n\n func write{syscall_ptr: felt*, pedersen_ptr: HashBuiltin*, range_check_ptr}(\n index: Uint256, value: Uint256\n ) {\n let storage_addr = 0;\n call addr;\n call storage_write;\n }\n}", + "autogen/starknet/storage_var/ERC721Enumerable_all_tokens/impl.cairo": "namespace ERC721Enumerable_all_tokens {\n from starkware.starknet.common.storage import normalize_address\n from starkware.starknet.common.syscalls import storage_read, storage_write\n from starkware.cairo.common.cairo_builtins import HashBuiltin\n from starkware.cairo.common.hash import hash2\n\n func addr{pedersen_ptr: HashBuiltin*, range_check_ptr}(index: Uint256) -> (res: felt) {\n let res = 425948655246834951023382595567403326392147733879151049994459729835523809558;\n let (res) = hash2{hash_ptr=pedersen_ptr}(res, cast(&index, felt*)[0]);\n let (res) = hash2{hash_ptr=pedersen_ptr}(res, cast(&index, felt*)[1]);\n let (res) = normalize_address(addr=res);\n return (res=res);\n }\n\n func read{syscall_ptr: felt*, pedersen_ptr: HashBuiltin*, range_check_ptr}(index: Uint256) -> (\n token_id: Uint256\n ) {\n let (storage_addr) = addr(index);\n let (__storage_var_temp0) = storage_read(address=storage_addr + 0);\n let (__storage_var_temp1) = storage_read(address=storage_addr + 1);\n\n tempvar syscall_ptr = syscall_ptr;\n tempvar pedersen_ptr = pedersen_ptr;\n tempvar range_check_ptr = range_check_ptr;\n tempvar __storage_var_temp0: felt = __storage_var_temp0;\n tempvar __storage_var_temp1: felt = __storage_var_temp1;\n return ([cast(&__storage_var_temp0, Uint256*)],);\n }\n\n func write{syscall_ptr: felt*, pedersen_ptr: HashBuiltin*, range_check_ptr}(\n index: Uint256, value: Uint256\n ) {\n let (storage_addr) = addr(index);\n storage_write(address=storage_addr + 0, value=[cast(&value, felt) + 0]);\n storage_write(address=storage_addr + 1, value=[cast(&value, felt) + 1]);\n return ();\n }\n}", + "autogen/starknet/storage_var/ERC721Enumerable_all_tokens_index/decl.cairo": "namespace ERC721Enumerable_all_tokens_index {\n from starkware.starknet.common.storage import normalize_address\n from starkware.starknet.common.syscalls import storage_read, storage_write\n from starkware.cairo.common.cairo_builtins import HashBuiltin\n from starkware.cairo.common.hash import hash2\n\n func addr{pedersen_ptr: HashBuiltin*, range_check_ptr}(token_id: Uint256) -> (res: felt) {\n let res = 0;\n call hash2;\n call normalize_address;\n }\n\n func read{syscall_ptr: felt*, pedersen_ptr: HashBuiltin*, range_check_ptr}(\n token_id: Uint256\n ) -> (index: Uint256) {\n let storage_addr = 0;\n call addr;\n call storage_read;\n }\n\n func write{syscall_ptr: felt*, pedersen_ptr: HashBuiltin*, range_check_ptr}(\n token_id: Uint256, value: Uint256\n ) {\n let storage_addr = 0;\n call addr;\n call storage_write;\n }\n}", + "autogen/starknet/storage_var/ERC721Enumerable_all_tokens_index/impl.cairo": "namespace ERC721Enumerable_all_tokens_index {\n from starkware.starknet.common.storage import normalize_address\n from starkware.starknet.common.syscalls import storage_read, storage_write\n from starkware.cairo.common.cairo_builtins import HashBuiltin\n from starkware.cairo.common.hash import hash2\n\n func addr{pedersen_ptr: HashBuiltin*, range_check_ptr}(token_id: Uint256) -> (res: felt) {\n let res = 1216948699083389372761620393074310578140236810850808160611125698991729580099;\n let (res) = hash2{hash_ptr=pedersen_ptr}(res, cast(&token_id, felt*)[0]);\n let (res) = hash2{hash_ptr=pedersen_ptr}(res, cast(&token_id, felt*)[1]);\n let (res) = normalize_address(addr=res);\n return (res=res);\n }\n\n func read{syscall_ptr: felt*, pedersen_ptr: HashBuiltin*, range_check_ptr}(\n token_id: Uint256\n ) -> (index: Uint256) {\n let (storage_addr) = addr(token_id);\n let (__storage_var_temp0) = storage_read(address=storage_addr + 0);\n let (__storage_var_temp1) = storage_read(address=storage_addr + 1);\n\n tempvar syscall_ptr = syscall_ptr;\n tempvar pedersen_ptr = pedersen_ptr;\n tempvar range_check_ptr = range_check_ptr;\n tempvar __storage_var_temp0: felt = __storage_var_temp0;\n tempvar __storage_var_temp1: felt = __storage_var_temp1;\n return ([cast(&__storage_var_temp0, Uint256*)],);\n }\n\n func write{syscall_ptr: felt*, pedersen_ptr: HashBuiltin*, range_check_ptr}(\n token_id: Uint256, value: Uint256\n ) {\n let (storage_addr) = addr(token_id);\n storage_write(address=storage_addr + 0, value=[cast(&value, felt) + 0]);\n storage_write(address=storage_addr + 1, value=[cast(&value, felt) + 1]);\n return ();\n }\n}", + "autogen/starknet/storage_var/ERC721Enumerable_all_tokens_len/decl.cairo": "namespace ERC721Enumerable_all_tokens_len {\n from starkware.starknet.common.storage import normalize_address\n from starkware.starknet.common.syscalls import storage_read, storage_write\n from starkware.cairo.common.cairo_builtins import HashBuiltin\n from starkware.cairo.common.hash import hash2\n\n func addr{pedersen_ptr: HashBuiltin*, range_check_ptr}() -> (res: felt) {\n let res = 0;\n call hash2;\n call normalize_address;\n }\n\n func read{syscall_ptr: felt*, pedersen_ptr: HashBuiltin*, range_check_ptr}() -> (\n total_supply: Uint256\n ) {\n let storage_addr = 0;\n call addr;\n call storage_read;\n }\n\n func write{syscall_ptr: felt*, pedersen_ptr: HashBuiltin*, range_check_ptr}(value: Uint256) {\n let storage_addr = 0;\n call addr;\n call storage_write;\n }\n}", + "autogen/starknet/storage_var/ERC721Enumerable_all_tokens_len/impl.cairo": "namespace ERC721Enumerable_all_tokens_len {\n from starkware.starknet.common.storage import normalize_address\n from starkware.starknet.common.syscalls import storage_read, storage_write\n from starkware.cairo.common.cairo_builtins import HashBuiltin\n from starkware.cairo.common.hash import hash2\n\n func addr{pedersen_ptr: HashBuiltin*, range_check_ptr}() -> (res: felt) {\n let res = 1079213035913931897056332105495109524451856058442083615283114591834346453995;\n return (res=res);\n }\n\n func read{syscall_ptr: felt*, pedersen_ptr: HashBuiltin*, range_check_ptr}() -> (\n total_supply: Uint256\n ) {\n let (storage_addr) = addr();\n let (__storage_var_temp0) = storage_read(address=storage_addr + 0);\n let (__storage_var_temp1) = storage_read(address=storage_addr + 1);\n\n tempvar syscall_ptr = syscall_ptr;\n tempvar pedersen_ptr = pedersen_ptr;\n tempvar range_check_ptr = range_check_ptr;\n tempvar __storage_var_temp0: felt = __storage_var_temp0;\n tempvar __storage_var_temp1: felt = __storage_var_temp1;\n return ([cast(&__storage_var_temp0, Uint256*)],);\n }\n\n func write{syscall_ptr: felt*, pedersen_ptr: HashBuiltin*, range_check_ptr}(value: Uint256) {\n let (storage_addr) = addr();\n storage_write(address=storage_addr + 0, value=[cast(&value, felt) + 0]);\n storage_write(address=storage_addr + 1, value=[cast(&value, felt) + 1]);\n return ();\n }\n}", + "autogen/starknet/storage_var/ERC721Enumerable_owned_tokens/decl.cairo": "namespace ERC721Enumerable_owned_tokens {\n from starkware.starknet.common.storage import normalize_address\n from starkware.starknet.common.syscalls import storage_read, storage_write\n from starkware.cairo.common.cairo_builtins import HashBuiltin\n from starkware.cairo.common.hash import hash2\n\n func addr{pedersen_ptr: HashBuiltin*, range_check_ptr}(owner: felt, index: Uint256) -> (\n res: felt\n ) {\n let res = 0;\n call hash2;\n call normalize_address;\n }\n\n func read{syscall_ptr: felt*, pedersen_ptr: HashBuiltin*, range_check_ptr}(\n owner: felt, index: Uint256\n ) -> (token_id: Uint256) {\n let storage_addr = 0;\n call addr;\n call storage_read;\n }\n\n func write{syscall_ptr: felt*, pedersen_ptr: HashBuiltin*, range_check_ptr}(\n owner: felt, index: Uint256, value: Uint256\n ) {\n let storage_addr = 0;\n call addr;\n call storage_write;\n }\n}", + "autogen/starknet/storage_var/ERC721Enumerable_owned_tokens/impl.cairo": "namespace ERC721Enumerable_owned_tokens {\n from starkware.starknet.common.storage import normalize_address\n from starkware.starknet.common.syscalls import storage_read, storage_write\n from starkware.cairo.common.cairo_builtins import HashBuiltin\n from starkware.cairo.common.hash import hash2\n\n func addr{pedersen_ptr: HashBuiltin*, range_check_ptr}(owner: felt, index: Uint256) -> (\n res: felt\n ) {\n let res = 61604307129196780118296711543584917649281122988081132028062811618121784164;\n let (res) = hash2{hash_ptr=pedersen_ptr}(res, cast(&owner, felt*)[0]);\n let (res) = hash2{hash_ptr=pedersen_ptr}(res, cast(&index, felt*)[0]);\n let (res) = hash2{hash_ptr=pedersen_ptr}(res, cast(&index, felt*)[1]);\n let (res) = normalize_address(addr=res);\n return (res=res);\n }\n\n func read{syscall_ptr: felt*, pedersen_ptr: HashBuiltin*, range_check_ptr}(\n owner: felt, index: Uint256\n ) -> (token_id: Uint256) {\n let (storage_addr) = addr(owner, index);\n let (__storage_var_temp0) = storage_read(address=storage_addr + 0);\n let (__storage_var_temp1) = storage_read(address=storage_addr + 1);\n\n tempvar syscall_ptr = syscall_ptr;\n tempvar pedersen_ptr = pedersen_ptr;\n tempvar range_check_ptr = range_check_ptr;\n tempvar __storage_var_temp0: felt = __storage_var_temp0;\n tempvar __storage_var_temp1: felt = __storage_var_temp1;\n return ([cast(&__storage_var_temp0, Uint256*)],);\n }\n\n func write{syscall_ptr: felt*, pedersen_ptr: HashBuiltin*, range_check_ptr}(\n owner: felt, index: Uint256, value: Uint256\n ) {\n let (storage_addr) = addr(owner, index);\n storage_write(address=storage_addr + 0, value=[cast(&value, felt) + 0]);\n storage_write(address=storage_addr + 1, value=[cast(&value, felt) + 1]);\n return ();\n }\n}", + "autogen/starknet/storage_var/ERC721Enumerable_owned_tokens_index/decl.cairo": "namespace ERC721Enumerable_owned_tokens_index {\n from starkware.starknet.common.storage import normalize_address\n from starkware.starknet.common.syscalls import storage_read, storage_write\n from starkware.cairo.common.cairo_builtins import HashBuiltin\n from starkware.cairo.common.hash import hash2\n\n func addr{pedersen_ptr: HashBuiltin*, range_check_ptr}(token_id: Uint256) -> (res: felt) {\n let res = 0;\n call hash2;\n call normalize_address;\n }\n\n func read{syscall_ptr: felt*, pedersen_ptr: HashBuiltin*, range_check_ptr}(\n token_id: Uint256\n ) -> (index: Uint256) {\n let storage_addr = 0;\n call addr;\n call storage_read;\n }\n\n func write{syscall_ptr: felt*, pedersen_ptr: HashBuiltin*, range_check_ptr}(\n token_id: Uint256, value: Uint256\n ) {\n let storage_addr = 0;\n call addr;\n call storage_write;\n }\n}", + "autogen/starknet/storage_var/ERC721Enumerable_owned_tokens_index/impl.cairo": "namespace ERC721Enumerable_owned_tokens_index {\n from starkware.starknet.common.storage import normalize_address\n from starkware.starknet.common.syscalls import storage_read, storage_write\n from starkware.cairo.common.cairo_builtins import HashBuiltin\n from starkware.cairo.common.hash import hash2\n\n func addr{pedersen_ptr: HashBuiltin*, range_check_ptr}(token_id: Uint256) -> (res: felt) {\n let res = 311796791401713537503427708838646807392281481788909959602639719990132509779;\n let (res) = hash2{hash_ptr=pedersen_ptr}(res, cast(&token_id, felt*)[0]);\n let (res) = hash2{hash_ptr=pedersen_ptr}(res, cast(&token_id, felt*)[1]);\n let (res) = normalize_address(addr=res);\n return (res=res);\n }\n\n func read{syscall_ptr: felt*, pedersen_ptr: HashBuiltin*, range_check_ptr}(\n token_id: Uint256\n ) -> (index: Uint256) {\n let (storage_addr) = addr(token_id);\n let (__storage_var_temp0) = storage_read(address=storage_addr + 0);\n let (__storage_var_temp1) = storage_read(address=storage_addr + 1);\n\n tempvar syscall_ptr = syscall_ptr;\n tempvar pedersen_ptr = pedersen_ptr;\n tempvar range_check_ptr = range_check_ptr;\n tempvar __storage_var_temp0: felt = __storage_var_temp0;\n tempvar __storage_var_temp1: felt = __storage_var_temp1;\n return ([cast(&__storage_var_temp0, Uint256*)],);\n }\n\n func write{syscall_ptr: felt*, pedersen_ptr: HashBuiltin*, range_check_ptr}(\n token_id: Uint256, value: Uint256\n ) {\n let (storage_addr) = addr(token_id);\n storage_write(address=storage_addr + 0, value=[cast(&value, felt) + 0]);\n storage_write(address=storage_addr + 1, value=[cast(&value, felt) + 1]);\n return ();\n }\n}", + "autogen/starknet/storage_var/ERC721_balances/decl.cairo": "namespace ERC721_balances {\n from starkware.starknet.common.storage import normalize_address\n from starkware.starknet.common.syscalls import storage_read, storage_write\n from starkware.cairo.common.cairo_builtins import HashBuiltin\n from starkware.cairo.common.hash import hash2\n\n func addr{pedersen_ptr: HashBuiltin*, range_check_ptr}(account: felt) -> (res: felt) {\n let res = 0;\n call hash2;\n call normalize_address;\n }\n\n func read{syscall_ptr: felt*, pedersen_ptr: HashBuiltin*, range_check_ptr}(account: felt) -> (\n balance: Uint256\n ) {\n let storage_addr = 0;\n call addr;\n call storage_read;\n }\n\n func write{syscall_ptr: felt*, pedersen_ptr: HashBuiltin*, range_check_ptr}(\n account: felt, value: Uint256\n ) {\n let storage_addr = 0;\n call addr;\n call storage_write;\n }\n}", + "autogen/starknet/storage_var/ERC721_balances/impl.cairo": "namespace ERC721_balances {\n from starkware.starknet.common.storage import normalize_address\n from starkware.starknet.common.syscalls import storage_read, storage_write\n from starkware.cairo.common.cairo_builtins import HashBuiltin\n from starkware.cairo.common.hash import hash2\n\n func addr{pedersen_ptr: HashBuiltin*, range_check_ptr}(account: felt) -> (res: felt) {\n let res = 1689070751711682002574449661976975431205580400605311704759272493176844520313;\n let (res) = hash2{hash_ptr=pedersen_ptr}(res, cast(&account, felt*)[0]);\n let (res) = normalize_address(addr=res);\n return (res=res);\n }\n\n func read{syscall_ptr: felt*, pedersen_ptr: HashBuiltin*, range_check_ptr}(account: felt) -> (\n balance: Uint256\n ) {\n let (storage_addr) = addr(account);\n let (__storage_var_temp0) = storage_read(address=storage_addr + 0);\n let (__storage_var_temp1) = storage_read(address=storage_addr + 1);\n\n tempvar syscall_ptr = syscall_ptr;\n tempvar pedersen_ptr = pedersen_ptr;\n tempvar range_check_ptr = range_check_ptr;\n tempvar __storage_var_temp0: felt = __storage_var_temp0;\n tempvar __storage_var_temp1: felt = __storage_var_temp1;\n return ([cast(&__storage_var_temp0, Uint256*)],);\n }\n\n func write{syscall_ptr: felt*, pedersen_ptr: HashBuiltin*, range_check_ptr}(\n account: felt, value: Uint256\n ) {\n let (storage_addr) = addr(account);\n storage_write(address=storage_addr + 0, value=[cast(&value, felt) + 0]);\n storage_write(address=storage_addr + 1, value=[cast(&value, felt) + 1]);\n return ();\n }\n}", + "autogen/starknet/storage_var/ERC721_name/decl.cairo": "namespace ERC721_name {\n from starkware.starknet.common.storage import normalize_address\n from starkware.starknet.common.syscalls import storage_read, storage_write\n from starkware.cairo.common.cairo_builtins import HashBuiltin\n from starkware.cairo.common.hash import hash2\n\n func addr{pedersen_ptr: HashBuiltin*, range_check_ptr}() -> (res: felt) {\n let res = 0;\n call hash2;\n call normalize_address;\n }\n\n func read{syscall_ptr: felt*, pedersen_ptr: HashBuiltin*, range_check_ptr}() -> (name: felt) {\n let storage_addr = 0;\n call addr;\n call storage_read;\n }\n\n func write{syscall_ptr: felt*, pedersen_ptr: HashBuiltin*, range_check_ptr}(value: felt) {\n let storage_addr = 0;\n call addr;\n call storage_write;\n }\n}", + "autogen/starknet/storage_var/ERC721_name/impl.cairo": "namespace ERC721_name {\n from starkware.starknet.common.storage import normalize_address\n from starkware.starknet.common.syscalls import storage_read, storage_write\n from starkware.cairo.common.cairo_builtins import HashBuiltin\n from starkware.cairo.common.hash import hash2\n\n func addr{pedersen_ptr: HashBuiltin*, range_check_ptr}() -> (res: felt) {\n let res = 1652684853864905172544337095254754697509410599464472831863256033323469373663;\n return (res=res);\n }\n\n func read{syscall_ptr: felt*, pedersen_ptr: HashBuiltin*, range_check_ptr}() -> (name: felt) {\n let (storage_addr) = addr();\n let (__storage_var_temp0) = storage_read(address=storage_addr + 0);\n\n tempvar syscall_ptr = syscall_ptr;\n tempvar pedersen_ptr = pedersen_ptr;\n tempvar range_check_ptr = range_check_ptr;\n tempvar __storage_var_temp0: felt = __storage_var_temp0;\n return ([cast(&__storage_var_temp0, felt*)],);\n }\n\n func write{syscall_ptr: felt*, pedersen_ptr: HashBuiltin*, range_check_ptr}(value: felt) {\n let (storage_addr) = addr();\n storage_write(address=storage_addr + 0, value=[cast(&value, felt) + 0]);\n return ();\n }\n}", + "autogen/starknet/storage_var/ERC721_operator_approvals/decl.cairo": "namespace ERC721_operator_approvals {\n from starkware.starknet.common.storage import normalize_address\n from starkware.starknet.common.syscalls import storage_read, storage_write\n from starkware.cairo.common.cairo_builtins import HashBuiltin\n from starkware.cairo.common.hash import hash2\n\n func addr{pedersen_ptr: HashBuiltin*, range_check_ptr}(owner: felt, operator: felt) -> (\n res: felt\n ) {\n let res = 0;\n call hash2;\n call normalize_address;\n }\n\n func read{syscall_ptr: felt*, pedersen_ptr: HashBuiltin*, range_check_ptr}(\n owner: felt, operator: felt\n ) -> (approved: felt) {\n let storage_addr = 0;\n call addr;\n call storage_read;\n }\n\n func write{syscall_ptr: felt*, pedersen_ptr: HashBuiltin*, range_check_ptr}(\n owner: felt, operator: felt, value: felt\n ) {\n let storage_addr = 0;\n call addr;\n call storage_write;\n }\n}", + "autogen/starknet/storage_var/ERC721_operator_approvals/impl.cairo": "namespace ERC721_operator_approvals {\n from starkware.starknet.common.storage import normalize_address\n from starkware.starknet.common.syscalls import storage_read, storage_write\n from starkware.cairo.common.cairo_builtins import HashBuiltin\n from starkware.cairo.common.hash import hash2\n\n func addr{pedersen_ptr: HashBuiltin*, range_check_ptr}(owner: felt, operator: felt) -> (\n res: felt\n ) {\n let res = 1499941398251932938145434100423974784112539485970179630262769564930032724035;\n let (res) = hash2{hash_ptr=pedersen_ptr}(res, cast(&owner, felt*)[0]);\n let (res) = hash2{hash_ptr=pedersen_ptr}(res, cast(&operator, felt*)[0]);\n let (res) = normalize_address(addr=res);\n return (res=res);\n }\n\n func read{syscall_ptr: felt*, pedersen_ptr: HashBuiltin*, range_check_ptr}(\n owner: felt, operator: felt\n ) -> (approved: felt) {\n let (storage_addr) = addr(owner, operator);\n let (__storage_var_temp0) = storage_read(address=storage_addr + 0);\n\n tempvar syscall_ptr = syscall_ptr;\n tempvar pedersen_ptr = pedersen_ptr;\n tempvar range_check_ptr = range_check_ptr;\n tempvar __storage_var_temp0: felt = __storage_var_temp0;\n return ([cast(&__storage_var_temp0, felt*)],);\n }\n\n func write{syscall_ptr: felt*, pedersen_ptr: HashBuiltin*, range_check_ptr}(\n owner: felt, operator: felt, value: felt\n ) {\n let (storage_addr) = addr(owner, operator);\n storage_write(address=storage_addr + 0, value=[cast(&value, felt) + 0]);\n return ();\n }\n}", + "autogen/starknet/storage_var/ERC721_owners/decl.cairo": "namespace ERC721_owners {\n from starkware.starknet.common.storage import normalize_address\n from starkware.starknet.common.syscalls import storage_read, storage_write\n from starkware.cairo.common.cairo_builtins import HashBuiltin\n from starkware.cairo.common.hash import hash2\n\n func addr{pedersen_ptr: HashBuiltin*, range_check_ptr}(token_id: Uint256) -> (res: felt) {\n let res = 0;\n call hash2;\n call normalize_address;\n }\n\n func read{syscall_ptr: felt*, pedersen_ptr: HashBuiltin*, range_check_ptr}(\n token_id: Uint256\n ) -> (owner: felt) {\n let storage_addr = 0;\n call addr;\n call storage_read;\n }\n\n func write{syscall_ptr: felt*, pedersen_ptr: HashBuiltin*, range_check_ptr}(\n token_id: Uint256, value: felt\n ) {\n let storage_addr = 0;\n call addr;\n call storage_write;\n }\n}", + "autogen/starknet/storage_var/ERC721_owners/impl.cairo": "namespace ERC721_owners {\n from starkware.starknet.common.storage import normalize_address\n from starkware.starknet.common.syscalls import storage_read, storage_write\n from starkware.cairo.common.cairo_builtins import HashBuiltin\n from starkware.cairo.common.hash import hash2\n\n func addr{pedersen_ptr: HashBuiltin*, range_check_ptr}(token_id: Uint256) -> (res: felt) {\n let res = 732758942413505530596855626420601171651165063220406830197835351730705261312;\n let (res) = hash2{hash_ptr=pedersen_ptr}(res, cast(&token_id, felt*)[0]);\n let (res) = hash2{hash_ptr=pedersen_ptr}(res, cast(&token_id, felt*)[1]);\n let (res) = normalize_address(addr=res);\n return (res=res);\n }\n\n func read{syscall_ptr: felt*, pedersen_ptr: HashBuiltin*, range_check_ptr}(\n token_id: Uint256\n ) -> (owner: felt) {\n let (storage_addr) = addr(token_id);\n let (__storage_var_temp0) = storage_read(address=storage_addr + 0);\n\n tempvar syscall_ptr = syscall_ptr;\n tempvar pedersen_ptr = pedersen_ptr;\n tempvar range_check_ptr = range_check_ptr;\n tempvar __storage_var_temp0: felt = __storage_var_temp0;\n return ([cast(&__storage_var_temp0, felt*)],);\n }\n\n func write{syscall_ptr: felt*, pedersen_ptr: HashBuiltin*, range_check_ptr}(\n token_id: Uint256, value: felt\n ) {\n let (storage_addr) = addr(token_id);\n storage_write(address=storage_addr + 0, value=[cast(&value, felt) + 0]);\n return ();\n }\n}", + "autogen/starknet/storage_var/ERC721_symbol/decl.cairo": "namespace ERC721_symbol {\n from starkware.starknet.common.storage import normalize_address\n from starkware.starknet.common.syscalls import storage_read, storage_write\n from starkware.cairo.common.cairo_builtins import HashBuiltin\n from starkware.cairo.common.hash import hash2\n\n func addr{pedersen_ptr: HashBuiltin*, range_check_ptr}() -> (res: felt) {\n let res = 0;\n call hash2;\n call normalize_address;\n }\n\n func read{syscall_ptr: felt*, pedersen_ptr: HashBuiltin*, range_check_ptr}() -> (symbol: felt) {\n let storage_addr = 0;\n call addr;\n call storage_read;\n }\n\n func write{syscall_ptr: felt*, pedersen_ptr: HashBuiltin*, range_check_ptr}(value: felt) {\n let storage_addr = 0;\n call addr;\n call storage_write;\n }\n}", + "autogen/starknet/storage_var/ERC721_symbol/impl.cairo": "namespace ERC721_symbol {\n from starkware.starknet.common.storage import normalize_address\n from starkware.starknet.common.syscalls import storage_read, storage_write\n from starkware.cairo.common.cairo_builtins import HashBuiltin\n from starkware.cairo.common.hash import hash2\n\n func addr{pedersen_ptr: HashBuiltin*, range_check_ptr}() -> (res: felt) {\n let res = 573923459913003082056231149040220796427044997268401212428888364214688518306;\n return (res=res);\n }\n\n func read{syscall_ptr: felt*, pedersen_ptr: HashBuiltin*, range_check_ptr}() -> (symbol: felt) {\n let (storage_addr) = addr();\n let (__storage_var_temp0) = storage_read(address=storage_addr + 0);\n\n tempvar syscall_ptr = syscall_ptr;\n tempvar pedersen_ptr = pedersen_ptr;\n tempvar range_check_ptr = range_check_ptr;\n tempvar __storage_var_temp0: felt = __storage_var_temp0;\n return ([cast(&__storage_var_temp0, felt*)],);\n }\n\n func write{syscall_ptr: felt*, pedersen_ptr: HashBuiltin*, range_check_ptr}(value: felt) {\n let (storage_addr) = addr();\n storage_write(address=storage_addr + 0, value=[cast(&value, felt) + 0]);\n return ();\n }\n}", + "autogen/starknet/storage_var/ERC721_token_approvals/decl.cairo": "namespace ERC721_token_approvals {\n from starkware.starknet.common.storage import normalize_address\n from starkware.starknet.common.syscalls import storage_read, storage_write\n from starkware.cairo.common.cairo_builtins import HashBuiltin\n from starkware.cairo.common.hash import hash2\n\n func addr{pedersen_ptr: HashBuiltin*, range_check_ptr}(token_id: Uint256) -> (res: felt) {\n let res = 0;\n call hash2;\n call normalize_address;\n }\n\n func read{syscall_ptr: felt*, pedersen_ptr: HashBuiltin*, range_check_ptr}(\n token_id: Uint256\n ) -> (approved: felt) {\n let storage_addr = 0;\n call addr;\n call storage_read;\n }\n\n func write{syscall_ptr: felt*, pedersen_ptr: HashBuiltin*, range_check_ptr}(\n token_id: Uint256, value: felt\n ) {\n let storage_addr = 0;\n call addr;\n call storage_write;\n }\n}", + "autogen/starknet/storage_var/ERC721_token_approvals/impl.cairo": "namespace ERC721_token_approvals {\n from starkware.starknet.common.storage import normalize_address\n from starkware.starknet.common.syscalls import storage_read, storage_write\n from starkware.cairo.common.cairo_builtins import HashBuiltin\n from starkware.cairo.common.hash import hash2\n\n func addr{pedersen_ptr: HashBuiltin*, range_check_ptr}(token_id: Uint256) -> (res: felt) {\n let res = 1076908112970844878973126643644898770413526557587041289723434576783586254781;\n let (res) = hash2{hash_ptr=pedersen_ptr}(res, cast(&token_id, felt*)[0]);\n let (res) = hash2{hash_ptr=pedersen_ptr}(res, cast(&token_id, felt*)[1]);\n let (res) = normalize_address(addr=res);\n return (res=res);\n }\n\n func read{syscall_ptr: felt*, pedersen_ptr: HashBuiltin*, range_check_ptr}(\n token_id: Uint256\n ) -> (approved: felt) {\n let (storage_addr) = addr(token_id);\n let (__storage_var_temp0) = storage_read(address=storage_addr + 0);\n\n tempvar syscall_ptr = syscall_ptr;\n tempvar pedersen_ptr = pedersen_ptr;\n tempvar range_check_ptr = range_check_ptr;\n tempvar __storage_var_temp0: felt = __storage_var_temp0;\n return ([cast(&__storage_var_temp0, felt*)],);\n }\n\n func write{syscall_ptr: felt*, pedersen_ptr: HashBuiltin*, range_check_ptr}(\n token_id: Uint256, value: felt\n ) {\n let (storage_addr) = addr(token_id);\n storage_write(address=storage_addr + 0, value=[cast(&value, felt) + 0]);\n return ();\n }\n}", + "autogen/starknet/storage_var/Ownable_owner/decl.cairo": "namespace Ownable_owner {\n from starkware.starknet.common.storage import normalize_address\n from starkware.starknet.common.syscalls import storage_read, storage_write\n from starkware.cairo.common.cairo_builtins import HashBuiltin\n from starkware.cairo.common.hash import hash2\n\n func addr{pedersen_ptr: HashBuiltin*, range_check_ptr}() -> (res: felt) {\n let res = 0;\n call hash2;\n call normalize_address;\n }\n\n func read{syscall_ptr: felt*, pedersen_ptr: HashBuiltin*, range_check_ptr}() -> (owner: felt) {\n let storage_addr = 0;\n call addr;\n call storage_read;\n }\n\n func write{syscall_ptr: felt*, pedersen_ptr: HashBuiltin*, range_check_ptr}(value: felt) {\n let storage_addr = 0;\n call addr;\n call storage_write;\n }\n}", + "autogen/starknet/storage_var/Ownable_owner/impl.cairo": "namespace Ownable_owner {\n from starkware.starknet.common.storage import normalize_address\n from starkware.starknet.common.syscalls import storage_read, storage_write\n from starkware.cairo.common.cairo_builtins import HashBuiltin\n from starkware.cairo.common.hash import hash2\n\n func addr{pedersen_ptr: HashBuiltin*, range_check_ptr}() -> (res: felt) {\n let res = 1239149872729906871793169171313897310809028090219849129902089947133222824240;\n return (res=res);\n }\n\n func read{syscall_ptr: felt*, pedersen_ptr: HashBuiltin*, range_check_ptr}() -> (owner: felt) {\n let (storage_addr) = addr();\n let (__storage_var_temp0) = storage_read(address=storage_addr + 0);\n\n tempvar syscall_ptr = syscall_ptr;\n tempvar pedersen_ptr = pedersen_ptr;\n tempvar range_check_ptr = range_check_ptr;\n tempvar __storage_var_temp0: felt = __storage_var_temp0;\n return ([cast(&__storage_var_temp0, felt*)],);\n }\n\n func write{syscall_ptr: felt*, pedersen_ptr: HashBuiltin*, range_check_ptr}(value: felt) {\n let (storage_addr) = addr();\n storage_write(address=storage_addr + 0, value=[cast(&value, felt) + 0]);\n return ();\n }\n}", + "autogen/starknet/storage_var/Sheet_cell/decl.cairo": "namespace Sheet_cell {\n from starkware.starknet.common.storage import normalize_address\n from starkware.starknet.common.syscalls import storage_read, storage_write\n from starkware.cairo.common.cairo_builtins import HashBuiltin\n from starkware.cairo.common.hash import hash2\n\n func addr{pedersen_ptr: HashBuiltin*, range_check_ptr}(id: felt) -> (res: felt) {\n let res = 0;\n call hash2;\n call normalize_address;\n }\n\n func read{syscall_ptr: felt*, pedersen_ptr: HashBuiltin*, range_check_ptr}(id: felt) -> (\n cell_data: CellData\n ) {\n let storage_addr = 0;\n call addr;\n call storage_read;\n }\n\n func write{syscall_ptr: felt*, pedersen_ptr: HashBuiltin*, range_check_ptr}(\n id: felt, value: CellData\n ) {\n let storage_addr = 0;\n call addr;\n call storage_write;\n }\n}", + "autogen/starknet/storage_var/Sheet_cell/impl.cairo": "namespace Sheet_cell {\n from starkware.starknet.common.storage import normalize_address\n from starkware.starknet.common.syscalls import storage_read, storage_write\n from starkware.cairo.common.cairo_builtins import HashBuiltin\n from starkware.cairo.common.hash import hash2\n\n func addr{pedersen_ptr: HashBuiltin*, range_check_ptr}(id: felt) -> (res: felt) {\n let res = 531485239653522858590374929777261088186370096163524664202939382659265864159;\n let (res) = hash2{hash_ptr=pedersen_ptr}(res, cast(&id, felt*)[0]);\n let (res) = normalize_address(addr=res);\n return (res=res);\n }\n\n func read{syscall_ptr: felt*, pedersen_ptr: HashBuiltin*, range_check_ptr}(id: felt) -> (\n cell_data: CellData\n ) {\n let (storage_addr) = addr(id);\n let (__storage_var_temp0) = storage_read(address=storage_addr + 0);\n let (__storage_var_temp1) = storage_read(address=storage_addr + 1);\n let (__storage_var_temp2) = storage_read(address=storage_addr + 2);\n\n tempvar syscall_ptr = syscall_ptr;\n tempvar pedersen_ptr = pedersen_ptr;\n tempvar range_check_ptr = range_check_ptr;\n tempvar __storage_var_temp0: felt = __storage_var_temp0;\n tempvar __storage_var_temp1: felt = __storage_var_temp1;\n tempvar __storage_var_temp2: felt = __storage_var_temp2;\n return ([cast(&__storage_var_temp0, CellData*)],);\n }\n\n func write{syscall_ptr: felt*, pedersen_ptr: HashBuiltin*, range_check_ptr}(\n id: felt, value: CellData\n ) {\n let (storage_addr) = addr(id);\n storage_write(address=storage_addr + 0, value=[cast(&value, felt) + 0]);\n storage_write(address=storage_addr + 1, value=[cast(&value, felt) + 1]);\n storage_write(address=storage_addr + 2, value=[cast(&value, felt) + 2]);\n return ();\n }\n}", + "autogen/starknet/storage_var/Sheet_cell_calldata/decl.cairo": "namespace Sheet_cell_calldata {\n from starkware.starknet.common.storage import normalize_address\n from starkware.starknet.common.syscalls import storage_read, storage_write\n from starkware.cairo.common.cairo_builtins import HashBuiltin\n from starkware.cairo.common.hash import hash2\n\n func addr{pedersen_ptr: HashBuiltin*, range_check_ptr}(id: felt, index: felt) -> (res: felt) {\n let res = 0;\n call hash2;\n call normalize_address;\n }\n\n func read{syscall_ptr: felt*, pedersen_ptr: HashBuiltin*, range_check_ptr}(\n id: felt, index: felt\n ) -> (value: felt) {\n let storage_addr = 0;\n call addr;\n call storage_read;\n }\n\n func write{syscall_ptr: felt*, pedersen_ptr: HashBuiltin*, range_check_ptr}(\n id: felt, index: felt, value: felt\n ) {\n let storage_addr = 0;\n call addr;\n call storage_write;\n }\n}", + "autogen/starknet/storage_var/Sheet_cell_calldata/impl.cairo": "namespace Sheet_cell_calldata {\n from starkware.starknet.common.storage import normalize_address\n from starkware.starknet.common.syscalls import storage_read, storage_write\n from starkware.cairo.common.cairo_builtins import HashBuiltin\n from starkware.cairo.common.hash import hash2\n\n func addr{pedersen_ptr: HashBuiltin*, range_check_ptr}(id: felt, index: felt) -> (res: felt) {\n let res = 1538968984242064233142751984656641889085841840397100448476378201159432133852;\n let (res) = hash2{hash_ptr=pedersen_ptr}(res, cast(&id, felt*)[0]);\n let (res) = hash2{hash_ptr=pedersen_ptr}(res, cast(&index, felt*)[0]);\n let (res) = normalize_address(addr=res);\n return (res=res);\n }\n\n func read{syscall_ptr: felt*, pedersen_ptr: HashBuiltin*, range_check_ptr}(\n id: felt, index: felt\n ) -> (value: felt) {\n let (storage_addr) = addr(id, index);\n let (__storage_var_temp0) = storage_read(address=storage_addr + 0);\n\n tempvar syscall_ptr = syscall_ptr;\n tempvar pedersen_ptr = pedersen_ptr;\n tempvar range_check_ptr = range_check_ptr;\n tempvar __storage_var_temp0: felt = __storage_var_temp0;\n return ([cast(&__storage_var_temp0, felt*)],);\n }\n\n func write{syscall_ptr: felt*, pedersen_ptr: HashBuiltin*, range_check_ptr}(\n id: felt, index: felt, value: felt\n ) {\n let (storage_addr) = addr(id, index);\n storage_write(address=storage_addr + 0, value=[cast(&value, felt) + 0]);\n return ();\n }\n}", + "autogen/starknet/storage_var/Sheet_cell_price/decl.cairo": "namespace Sheet_cell_price {\n from starkware.starknet.common.storage import normalize_address\n from starkware.starknet.common.syscalls import storage_read, storage_write\n from starkware.cairo.common.cairo_builtins import HashBuiltin\n from starkware.cairo.common.hash import hash2\n\n func addr{pedersen_ptr: HashBuiltin*, range_check_ptr}() -> (res: felt) {\n let res = 0;\n call hash2;\n call normalize_address;\n }\n\n func read{syscall_ptr: felt*, pedersen_ptr: HashBuiltin*, range_check_ptr}() -> (price: felt) {\n let storage_addr = 0;\n call addr;\n call storage_read;\n }\n\n func write{syscall_ptr: felt*, pedersen_ptr: HashBuiltin*, range_check_ptr}(value: felt) {\n let storage_addr = 0;\n call addr;\n call storage_write;\n }\n}", + "autogen/starknet/storage_var/Sheet_cell_price/impl.cairo": "namespace Sheet_cell_price {\n from starkware.starknet.common.storage import normalize_address\n from starkware.starknet.common.syscalls import storage_read, storage_write\n from starkware.cairo.common.cairo_builtins import HashBuiltin\n from starkware.cairo.common.hash import hash2\n\n func addr{pedersen_ptr: HashBuiltin*, range_check_ptr}() -> (res: felt) {\n let res = 439491742977824298696237580639702228686681000131175606985079631333408997298;\n return (res=res);\n }\n\n func read{syscall_ptr: felt*, pedersen_ptr: HashBuiltin*, range_check_ptr}() -> (price: felt) {\n let (storage_addr) = addr();\n let (__storage_var_temp0) = storage_read(address=storage_addr + 0);\n\n tempvar syscall_ptr = syscall_ptr;\n tempvar pedersen_ptr = pedersen_ptr;\n tempvar range_check_ptr = range_check_ptr;\n tempvar __storage_var_temp0: felt = __storage_var_temp0;\n return ([cast(&__storage_var_temp0, felt*)],);\n }\n\n func write{syscall_ptr: felt*, pedersen_ptr: HashBuiltin*, range_check_ptr}(value: felt) {\n let (storage_addr) = addr();\n storage_write(address=storage_addr + 0, value=[cast(&value, felt) + 0]);\n return ();\n }\n}", + "autogen/starknet/storage_var/Sheet_cell_renderer/decl.cairo": "namespace Sheet_cell_renderer {\n from starkware.starknet.common.storage import normalize_address\n from starkware.starknet.common.syscalls import storage_read, storage_write\n from starkware.cairo.common.cairo_builtins import HashBuiltin\n from starkware.cairo.common.hash import hash2\n\n func addr{pedersen_ptr: HashBuiltin*, range_check_ptr}() -> (res: felt) {\n let res = 0;\n call hash2;\n call normalize_address;\n }\n\n func read{syscall_ptr: felt*, pedersen_ptr: HashBuiltin*, range_check_ptr}() -> (\n address: felt\n ) {\n let storage_addr = 0;\n call addr;\n call storage_read;\n }\n\n func write{syscall_ptr: felt*, pedersen_ptr: HashBuiltin*, range_check_ptr}(value: felt) {\n let storage_addr = 0;\n call addr;\n call storage_write;\n }\n}", + "autogen/starknet/storage_var/Sheet_cell_renderer/impl.cairo": "namespace Sheet_cell_renderer {\n from starkware.starknet.common.storage import normalize_address\n from starkware.starknet.common.syscalls import storage_read, storage_write\n from starkware.cairo.common.cairo_builtins import HashBuiltin\n from starkware.cairo.common.hash import hash2\n\n func addr{pedersen_ptr: HashBuiltin*, range_check_ptr}() -> (res: felt) {\n let res = 1744932361213995496184783512748924600834631307981846227036945661186302785888;\n return (res=res);\n }\n\n func read{syscall_ptr: felt*, pedersen_ptr: HashBuiltin*, range_check_ptr}() -> (\n address: felt\n ) {\n let (storage_addr) = addr();\n let (__storage_var_temp0) = storage_read(address=storage_addr + 0);\n\n tempvar syscall_ptr = syscall_ptr;\n tempvar pedersen_ptr = pedersen_ptr;\n tempvar range_check_ptr = range_check_ptr;\n tempvar __storage_var_temp0: felt = __storage_var_temp0;\n return ([cast(&__storage_var_temp0, felt*)],);\n }\n\n func write{syscall_ptr: felt*, pedersen_ptr: HashBuiltin*, range_check_ptr}(value: felt) {\n let (storage_addr) = addr();\n storage_write(address=storage_addr + 0, value=[cast(&value, felt) + 0]);\n return ();\n }\n}", + "autogen/starknet/storage_var/Sheet_contract_uri/decl.cairo": "namespace Sheet_contract_uri {\n from starkware.starknet.common.storage import normalize_address\n from starkware.starknet.common.syscalls import storage_read, storage_write\n from starkware.cairo.common.cairo_builtins import HashBuiltin\n from starkware.cairo.common.hash import hash2\n\n func addr{pedersen_ptr: HashBuiltin*, range_check_ptr}(index: felt) -> (res: felt) {\n let res = 0;\n call hash2;\n call normalize_address;\n }\n\n func read{syscall_ptr: felt*, pedersen_ptr: HashBuiltin*, range_check_ptr}(index: felt) -> (\n res: felt\n ) {\n let storage_addr = 0;\n call addr;\n call storage_read;\n }\n\n func write{syscall_ptr: felt*, pedersen_ptr: HashBuiltin*, range_check_ptr}(\n index: felt, value: felt\n ) {\n let storage_addr = 0;\n call addr;\n call storage_write;\n }\n}", + "autogen/starknet/storage_var/Sheet_contract_uri/impl.cairo": "namespace Sheet_contract_uri {\n from starkware.starknet.common.storage import normalize_address\n from starkware.starknet.common.syscalls import storage_read, storage_write\n from starkware.cairo.common.cairo_builtins import HashBuiltin\n from starkware.cairo.common.hash import hash2\n\n func addr{pedersen_ptr: HashBuiltin*, range_check_ptr}(index: felt) -> (res: felt) {\n let res = 102491605568795664363507024055124773067340737828183400317351376281032987144;\n let (res) = hash2{hash_ptr=pedersen_ptr}(res, cast(&index, felt*)[0]);\n let (res) = normalize_address(addr=res);\n return (res=res);\n }\n\n func read{syscall_ptr: felt*, pedersen_ptr: HashBuiltin*, range_check_ptr}(index: felt) -> (\n res: felt\n ) {\n let (storage_addr) = addr(index);\n let (__storage_var_temp0) = storage_read(address=storage_addr + 0);\n\n tempvar syscall_ptr = syscall_ptr;\n tempvar pedersen_ptr = pedersen_ptr;\n tempvar range_check_ptr = range_check_ptr;\n tempvar __storage_var_temp0: felt = __storage_var_temp0;\n return ([cast(&__storage_var_temp0, felt*)],);\n }\n\n func write{syscall_ptr: felt*, pedersen_ptr: HashBuiltin*, range_check_ptr}(\n index: felt, value: felt\n ) {\n let (storage_addr) = addr(index);\n storage_write(address=storage_addr + 0, value=[cast(&value, felt) + 0]);\n return ();\n }\n}", + "autogen/starknet/storage_var/Sheet_contract_uri_len/decl.cairo": "namespace Sheet_contract_uri_len {\n from starkware.starknet.common.storage import normalize_address\n from starkware.starknet.common.syscalls import storage_read, storage_write\n from starkware.cairo.common.cairo_builtins import HashBuiltin\n from starkware.cairo.common.hash import hash2\n\n func addr{pedersen_ptr: HashBuiltin*, range_check_ptr}() -> (res: felt) {\n let res = 0;\n call hash2;\n call normalize_address;\n }\n\n func read{syscall_ptr: felt*, pedersen_ptr: HashBuiltin*, range_check_ptr}() -> (res: felt) {\n let storage_addr = 0;\n call addr;\n call storage_read;\n }\n\n func write{syscall_ptr: felt*, pedersen_ptr: HashBuiltin*, range_check_ptr}(value: felt) {\n let storage_addr = 0;\n call addr;\n call storage_write;\n }\n}", + "autogen/starknet/storage_var/Sheet_contract_uri_len/impl.cairo": "namespace Sheet_contract_uri_len {\n from starkware.starknet.common.storage import normalize_address\n from starkware.starknet.common.syscalls import storage_read, storage_write\n from starkware.cairo.common.cairo_builtins import HashBuiltin\n from starkware.cairo.common.hash import hash2\n\n func addr{pedersen_ptr: HashBuiltin*, range_check_ptr}() -> (res: felt) {\n let res = 1322342574778559056648602816583575426333943830867005428168709800697644325563;\n return (res=res);\n }\n\n func read{syscall_ptr: felt*, pedersen_ptr: HashBuiltin*, range_check_ptr}() -> (res: felt) {\n let (storage_addr) = addr();\n let (__storage_var_temp0) = storage_read(address=storage_addr + 0);\n\n tempvar syscall_ptr = syscall_ptr;\n tempvar pedersen_ptr = pedersen_ptr;\n tempvar range_check_ptr = range_check_ptr;\n tempvar __storage_var_temp0: felt = __storage_var_temp0;\n return ([cast(&__storage_var_temp0, felt*)],);\n }\n\n func write{syscall_ptr: felt*, pedersen_ptr: HashBuiltin*, range_check_ptr}(value: felt) {\n let (storage_addr) = addr();\n storage_write(address=storage_addr + 0, value=[cast(&value, felt) + 0]);\n return ();\n }\n}", + "autogen/starknet/storage_var/Sheet_is_mint_open/decl.cairo": "namespace Sheet_is_mint_open {\n from starkware.starknet.common.storage import normalize_address\n from starkware.starknet.common.syscalls import storage_read, storage_write\n from starkware.cairo.common.cairo_builtins import HashBuiltin\n from starkware.cairo.common.hash import hash2\n\n func addr{pedersen_ptr: HashBuiltin*, range_check_ptr}() -> (res: felt) {\n let res = 0;\n call hash2;\n call normalize_address;\n }\n\n func read{syscall_ptr: felt*, pedersen_ptr: HashBuiltin*, range_check_ptr}() -> (res: felt) {\n let storage_addr = 0;\n call addr;\n call storage_read;\n }\n\n func write{syscall_ptr: felt*, pedersen_ptr: HashBuiltin*, range_check_ptr}(value: felt) {\n let storage_addr = 0;\n call addr;\n call storage_write;\n }\n}", + "autogen/starknet/storage_var/Sheet_is_mint_open/impl.cairo": "namespace Sheet_is_mint_open {\n from starkware.starknet.common.storage import normalize_address\n from starkware.starknet.common.syscalls import storage_read, storage_write\n from starkware.cairo.common.cairo_builtins import HashBuiltin\n from starkware.cairo.common.hash import hash2\n\n func addr{pedersen_ptr: HashBuiltin*, range_check_ptr}() -> (res: felt) {\n let res = 1443954384954672340063016508770740888865139325238685197512734853477845003052;\n return (res=res);\n }\n\n func read{syscall_ptr: felt*, pedersen_ptr: HashBuiltin*, range_check_ptr}() -> (res: felt) {\n let (storage_addr) = addr();\n let (__storage_var_temp0) = storage_read(address=storage_addr + 0);\n\n tempvar syscall_ptr = syscall_ptr;\n tempvar pedersen_ptr = pedersen_ptr;\n tempvar range_check_ptr = range_check_ptr;\n tempvar __storage_var_temp0: felt = __storage_var_temp0;\n return ([cast(&__storage_var_temp0, felt*)],);\n }\n\n func write{syscall_ptr: felt*, pedersen_ptr: HashBuiltin*, range_check_ptr}(value: felt) {\n let (storage_addr) = addr();\n storage_write(address=storage_addr + 0, value=[cast(&value, felt) + 0]);\n return ();\n }\n}", + "autogen/starknet/storage_var/Sheet_max_per_wallet/decl.cairo": "namespace Sheet_max_per_wallet {\n from starkware.starknet.common.storage import normalize_address\n from starkware.starknet.common.syscalls import storage_read, storage_write\n from starkware.cairo.common.cairo_builtins import HashBuiltin\n from starkware.cairo.common.hash import hash2\n\n func addr{pedersen_ptr: HashBuiltin*, range_check_ptr}() -> (res: felt) {\n let res = 0;\n call hash2;\n call normalize_address;\n }\n\n func read{syscall_ptr: felt*, pedersen_ptr: HashBuiltin*, range_check_ptr}() -> (max: felt) {\n let storage_addr = 0;\n call addr;\n call storage_read;\n }\n\n func write{syscall_ptr: felt*, pedersen_ptr: HashBuiltin*, range_check_ptr}(value: felt) {\n let storage_addr = 0;\n call addr;\n call storage_write;\n }\n}", + "autogen/starknet/storage_var/Sheet_max_per_wallet/impl.cairo": "namespace Sheet_max_per_wallet {\n from starkware.starknet.common.storage import normalize_address\n from starkware.starknet.common.syscalls import storage_read, storage_write\n from starkware.cairo.common.cairo_builtins import HashBuiltin\n from starkware.cairo.common.hash import hash2\n\n func addr{pedersen_ptr: HashBuiltin*, range_check_ptr}() -> (res: felt) {\n let res = 1524004894486671999300417239700726541524143124141885038369930069964419646199;\n return (res=res);\n }\n\n func read{syscall_ptr: felt*, pedersen_ptr: HashBuiltin*, range_check_ptr}() -> (max: felt) {\n let (storage_addr) = addr();\n let (__storage_var_temp0) = storage_read(address=storage_addr + 0);\n\n tempvar syscall_ptr = syscall_ptr;\n tempvar pedersen_ptr = pedersen_ptr;\n tempvar range_check_ptr = range_check_ptr;\n tempvar __storage_var_temp0: felt = __storage_var_temp0;\n return ([cast(&__storage_var_temp0, felt*)],);\n }\n\n func write{syscall_ptr: felt*, pedersen_ptr: HashBuiltin*, range_check_ptr}(value: felt) {\n let (storage_addr) = addr();\n storage_write(address=storage_addr + 0, value=[cast(&value, felt) + 0]);\n return ();\n }\n}", + "autogen/starknet/storage_var/Sheet_merkle_root/decl.cairo": "namespace Sheet_merkle_root {\n from starkware.starknet.common.storage import normalize_address\n from starkware.starknet.common.syscalls import storage_read, storage_write\n from starkware.cairo.common.cairo_builtins import HashBuiltin\n from starkware.cairo.common.hash import hash2\n\n func addr{pedersen_ptr: HashBuiltin*, range_check_ptr}() -> (res: felt) {\n let res = 0;\n call hash2;\n call normalize_address;\n }\n\n func read{syscall_ptr: felt*, pedersen_ptr: HashBuiltin*, range_check_ptr}() -> (root: felt) {\n let storage_addr = 0;\n call addr;\n call storage_read;\n }\n\n func write{syscall_ptr: felt*, pedersen_ptr: HashBuiltin*, range_check_ptr}(value: felt) {\n let storage_addr = 0;\n call addr;\n call storage_write;\n }\n}", + "autogen/starknet/storage_var/Sheet_merkle_root/impl.cairo": "namespace Sheet_merkle_root {\n from starkware.starknet.common.storage import normalize_address\n from starkware.starknet.common.syscalls import storage_read, storage_write\n from starkware.cairo.common.cairo_builtins import HashBuiltin\n from starkware.cairo.common.hash import hash2\n\n func addr{pedersen_ptr: HashBuiltin*, range_check_ptr}() -> (res: felt) {\n let res = 121535090929030722653266216788291698371285888970737918297740923934734904263;\n return (res=res);\n }\n\n func read{syscall_ptr: felt*, pedersen_ptr: HashBuiltin*, range_check_ptr}() -> (root: felt) {\n let (storage_addr) = addr();\n let (__storage_var_temp0) = storage_read(address=storage_addr + 0);\n\n tempvar syscall_ptr = syscall_ptr;\n tempvar pedersen_ptr = pedersen_ptr;\n tempvar range_check_ptr = range_check_ptr;\n tempvar __storage_var_temp0: felt = __storage_var_temp0;\n return ([cast(&__storage_var_temp0, felt*)],);\n }\n\n func write{syscall_ptr: felt*, pedersen_ptr: HashBuiltin*, range_check_ptr}(value: felt) {\n let (storage_addr) = addr();\n storage_write(address=storage_addr + 0, value=[cast(&value, felt) + 0]);\n return ();\n }\n}", + "autogen/starknet/storage_var/Sheet_royalty_rate/decl.cairo": "namespace Sheet_royalty_rate {\n from starkware.starknet.common.storage import normalize_address\n from starkware.starknet.common.syscalls import storage_read, storage_write\n from starkware.cairo.common.cairo_builtins import HashBuiltin\n from starkware.cairo.common.hash import hash2\n\n func addr{pedersen_ptr: HashBuiltin*, range_check_ptr}() -> (res: felt) {\n let res = 0;\n call hash2;\n call normalize_address;\n }\n\n func read{syscall_ptr: felt*, pedersen_ptr: HashBuiltin*, range_check_ptr}() -> (rate: felt) {\n let storage_addr = 0;\n call addr;\n call storage_read;\n }\n\n func write{syscall_ptr: felt*, pedersen_ptr: HashBuiltin*, range_check_ptr}(value: felt) {\n let storage_addr = 0;\n call addr;\n call storage_write;\n }\n}", + "autogen/starknet/storage_var/Sheet_royalty_rate/impl.cairo": "namespace Sheet_royalty_rate {\n from starkware.starknet.common.storage import normalize_address\n from starkware.starknet.common.syscalls import storage_read, storage_write\n from starkware.cairo.common.cairo_builtins import HashBuiltin\n from starkware.cairo.common.hash import hash2\n\n func addr{pedersen_ptr: HashBuiltin*, range_check_ptr}() -> (res: felt) {\n let res = 232800163325297641213013617200180547936625762979464067785773918764891622658;\n return (res=res);\n }\n\n func read{syscall_ptr: felt*, pedersen_ptr: HashBuiltin*, range_check_ptr}() -> (rate: felt) {\n let (storage_addr) = addr();\n let (__storage_var_temp0) = storage_read(address=storage_addr + 0);\n\n tempvar syscall_ptr = syscall_ptr;\n tempvar pedersen_ptr = pedersen_ptr;\n tempvar range_check_ptr = range_check_ptr;\n tempvar __storage_var_temp0: felt = __storage_var_temp0;\n return ([cast(&__storage_var_temp0, felt*)],);\n }\n\n func write{syscall_ptr: felt*, pedersen_ptr: HashBuiltin*, range_check_ptr}(value: felt) {\n let (storage_addr) = addr();\n storage_write(address=storage_addr + 0, value=[cast(&value, felt) + 0]);\n return ();\n }\n}", + "autogen/starknet/storage_var/initialized/decl.cairo": "namespace initialized {\n from starkware.starknet.common.storage import normalize_address\n from starkware.starknet.common.syscalls import storage_read, storage_write\n from starkware.cairo.common.cairo_builtins import HashBuiltin\n from starkware.cairo.common.hash import hash2\n\n func addr{pedersen_ptr: HashBuiltin*, range_check_ptr}() -> (res: felt) {\n let res = 0;\n call hash2;\n call normalize_address;\n }\n\n func read{syscall_ptr: felt*, pedersen_ptr: HashBuiltin*, range_check_ptr}() -> (res: felt) {\n let storage_addr = 0;\n call addr;\n call storage_read;\n }\n\n func write{syscall_ptr: felt*, pedersen_ptr: HashBuiltin*, range_check_ptr}(value: felt) {\n let storage_addr = 0;\n call addr;\n call storage_write;\n }\n}", + "autogen/starknet/storage_var/initialized/impl.cairo": "namespace initialized {\n from starkware.starknet.common.storage import normalize_address\n from starkware.starknet.common.syscalls import storage_read, storage_write\n from starkware.cairo.common.cairo_builtins import HashBuiltin\n from starkware.cairo.common.hash import hash2\n\n func addr{pedersen_ptr: HashBuiltin*, range_check_ptr}() -> (res: felt) {\n let res = 1697461057326310581967816530165551571743938660869987744467005324703617544296;\n return (res=res);\n }\n\n func read{syscall_ptr: felt*, pedersen_ptr: HashBuiltin*, range_check_ptr}() -> (res: felt) {\n let (storage_addr) = addr();\n let (__storage_var_temp0) = storage_read(address=storage_addr + 0);\n\n tempvar syscall_ptr = syscall_ptr;\n tempvar pedersen_ptr = pedersen_ptr;\n tempvar range_check_ptr = range_check_ptr;\n tempvar __storage_var_temp0: felt = __storage_var_temp0;\n return ([cast(&__storage_var_temp0, felt*)],);\n }\n\n func write{syscall_ptr: felt*, pedersen_ptr: HashBuiltin*, range_check_ptr}(value: felt) {\n let (storage_addr) = addr();\n storage_write(address=storage_addr + 0, value=[cast(&value, felt) + 0]);\n return ();\n }\n}" + }, + "instruction_locations": { + "0": { + "accessible_scopes": [ + "starkware.cairo.common.alloc", + "starkware.cairo.common.alloc.alloc" + ], + "flow_tracking_data": null, + "hints": [ + { + "location": { + "end_col": 38, + "end_line": 3, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/alloc.cairo" + }, + "start_col": 5, + "start_line": 3 + }, + "n_prefix_newlines": 0 + } + ], + "inst": { + "end_col": 12, + "end_line": 4, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/alloc.cairo" + }, + "start_col": 5, + "start_line": 4 + } + }, + "2": { + "accessible_scopes": [ + "starkware.cairo.common.alloc", + "starkware.cairo.common.alloc.alloc" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 40, + "end_line": 5, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/alloc.cairo" + }, + "start_col": 5, + "start_line": 5 + } + }, + "3": { + "accessible_scopes": [ + "starkware.cairo.common.hash", + "starkware.cairo.common.hash.hash2" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 19, + "end_line": 14, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/hash.cairo" + }, + "start_col": 5, + "start_line": 14 + } + }, + "4": { + "accessible_scopes": [ + "starkware.cairo.common.hash", + "starkware.cairo.common.hash.hash2" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 19, + "end_line": 15, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/hash.cairo" + }, + "start_col": 5, + "start_line": 15 + } + }, + "5": { + "accessible_scopes": [ + "starkware.cairo.common.hash", + "starkware.cairo.common.hash.hash2" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 47, + "end_line": 17, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/hash.cairo" + }, + "parent_location": [ + { + "end_col": 34, + "end_line": 13, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/hash.cairo" + }, + "parent_location": [ + { + "end_col": 28, + "end_line": 18, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/hash.cairo" + }, + "start_col": 5, + "start_line": 18 + }, + "While trying to retrieve the implicit argument 'hash_ptr' in:" + ], + "start_col": 12, + "start_line": 13 + }, + "While expanding the reference 'hash_ptr' in:" + ], + "start_col": 20, + "start_line": 17 + } + }, + "7": { + "accessible_scopes": [ + "starkware.cairo.common.hash", + "starkware.cairo.common.hash.hash2" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 33, + "end_line": 16, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/hash.cairo" + }, + "parent_location": [ + { + "end_col": 26, + "end_line": 18, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/hash.cairo" + }, + "start_col": 20, + "start_line": 18 + }, + "While expanding the reference 'result' in:" + ], + "start_col": 18, + "start_line": 16 + } + }, + "8": { + "accessible_scopes": [ + "starkware.cairo.common.hash", + "starkware.cairo.common.hash.hash2" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 28, + "end_line": 18, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/hash.cairo" + }, + "start_col": 5, + "start_line": 18 + } + }, + "9": { + "accessible_scopes": [ + "starkware.cairo.common.memcpy", + "starkware.cairo.common.memcpy.memcpy" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 7, + "end_line": 8, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/memcpy.cairo" + }, + "start_col": 5, + "start_line": 8 + } + }, + "11": { + "accessible_scopes": [ + "starkware.cairo.common.memcpy", + "starkware.cairo.common.memcpy.memcpy" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 19, + "end_line": 9, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/memcpy.cairo" + }, + "start_col": 9, + "start_line": 9 + } + }, + "12": { + "accessible_scopes": [ + "starkware.cairo.common.memcpy", + "starkware.cairo.common.memcpy.memcpy" + ], + "flow_tracking_data": null, + "hints": [ + { + "location": { + "end_col": 41, + "end_line": 12, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/memcpy.cairo" + }, + "start_col": 5, + "start_line": 12 + }, + "n_prefix_newlines": 0 + } + ], + "inst": { + "end_col": 23, + "end_line": 2, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/memcpy.cairo" + }, + "parent_location": [ + { + "end_col": 38, + "end_line": 13, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/memcpy.cairo" + }, + "start_col": 35, + "start_line": 13 + }, + "While expanding the reference 'dst' in:" + ], + "start_col": 13, + "start_line": 2 + } + }, + "13": { + "accessible_scopes": [ + "starkware.cairo.common.memcpy", + "starkware.cairo.common.memcpy.memcpy" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 35, + "end_line": 2, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/memcpy.cairo" + }, + "parent_location": [ + { + "end_col": 47, + "end_line": 13, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/memcpy.cairo" + }, + "start_col": 44, + "start_line": 13 + }, + "While expanding the reference 'src' in:" + ], + "start_col": 25, + "start_line": 2 + } + }, + "14": { + "accessible_scopes": [ + "starkware.cairo.common.memcpy", + "starkware.cairo.common.memcpy.memcpy" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 37, + "end_line": 17, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/memcpy.cairo" + }, + "start_col": 26, + "start_line": 17 + } + }, + "15": { + "accessible_scopes": [ + "starkware.cairo.common.memcpy", + "starkware.cairo.common.memcpy.memcpy" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 38, + "end_line": 17, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/memcpy.cairo" + }, + "start_col": 5, + "start_line": 17 + } + }, + "16": { + "accessible_scopes": [ + "starkware.cairo.common.memcpy", + "starkware.cairo.common.memcpy.memcpy" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 41, + "end_line": 22, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/memcpy.cairo" + }, + "start_col": 5, + "start_line": 22 + } + }, + "18": { + "accessible_scopes": [ + "starkware.cairo.common.memcpy", + "starkware.cairo.common.memcpy.memcpy" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 41, + "end_line": 23, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/memcpy.cairo" + }, + "start_col": 5, + "start_line": 23 + } + }, + "20": { + "accessible_scopes": [ + "starkware.cairo.common.memcpy", + "starkware.cairo.common.memcpy.memcpy" + ], + "flow_tracking_data": null, + "hints": [ + { + "location": { + "end_col": 7, + "end_line": 27, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/memcpy.cairo" + }, + "start_col": 5, + "start_line": 24 + }, + "n_prefix_newlines": 1 + } + ], + "inst": { + "end_col": 44, + "end_line": 29, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/memcpy.cairo" + }, + "start_col": 5, + "start_line": 29 + } + }, + "22": { + "accessible_scopes": [ + "starkware.cairo.common.memcpy", + "starkware.cairo.common.memcpy.memcpy" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 55, + "end_line": 31, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/memcpy.cairo" + }, + "start_col": 5, + "start_line": 31 + } + }, + "23": { + "accessible_scopes": [ + "starkware.cairo.common.memcpy", + "starkware.cairo.common.memcpy.memcpy" + ], + "flow_tracking_data": null, + "hints": [ + { + "location": { + "end_col": 26, + "end_line": 33, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/memcpy.cairo" + }, + "start_col": 5, + "start_line": 33 + }, + "n_prefix_newlines": 0 + } + ], + "inst": { + "end_col": 15, + "end_line": 34, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/memcpy.cairo" + }, + "start_col": 5, + "start_line": 34 + } + }, + "24": { + "accessible_scopes": [ + "starkware.starknet.common.syscalls", + "starkware.starknet.common.syscalls.call_contract" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 40, + "end_line": 47, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/starknet/common/syscalls.cairo" + }, + "start_col": 18, + "start_line": 47 + } + }, + "26": { + "accessible_scopes": [ + "starkware.starknet.common.syscalls", + "starkware.starknet.common.syscalls.call_contract" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 7, + "end_line": 52, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/starknet/common/syscalls.cairo" + }, + "start_col": 5, + "start_line": 46 + } + }, + "27": { + "accessible_scopes": [ + "starkware.starknet.common.syscalls", + "starkware.starknet.common.syscalls.call_contract" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 7, + "end_line": 52, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/starknet/common/syscalls.cairo" + }, + "start_col": 5, + "start_line": 46 + } + }, + "28": { + "accessible_scopes": [ + "starkware.starknet.common.syscalls", + "starkware.starknet.common.syscalls.call_contract" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 7, + "end_line": 52, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/starknet/common/syscalls.cairo" + }, + "start_col": 5, + "start_line": 46 + } + }, + "29": { + "accessible_scopes": [ + "starkware.starknet.common.syscalls", + "starkware.starknet.common.syscalls.call_contract" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 7, + "end_line": 52, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/starknet/common/syscalls.cairo" + }, + "start_col": 5, + "start_line": 46 + } + }, + "30": { + "accessible_scopes": [ + "starkware.starknet.common.syscalls", + "starkware.starknet.common.syscalls.call_contract" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 7, + "end_line": 52, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/starknet/common/syscalls.cairo" + }, + "start_col": 5, + "start_line": 46 + } + }, + "31": { + "accessible_scopes": [ + "starkware.starknet.common.syscalls", + "starkware.starknet.common.syscalls.call_contract" + ], + "flow_tracking_data": null, + "hints": [ + { + "location": { + "end_col": 88, + "end_line": 53, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/starknet/common/syscalls.cairo" + }, + "start_col": 5, + "start_line": 53 + }, + "n_prefix_newlines": 0 + } + ], + "inst": { + "end_col": 54, + "end_line": 56, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/starknet/common/syscalls.cairo" + }, + "parent_location": [ + { + "end_col": 38, + "end_line": 42, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/starknet/common/syscalls.cairo" + }, + "parent_location": [ + { + "end_col": 75, + "end_line": 57, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/starknet/common/syscalls.cairo" + }, + "start_col": 5, + "start_line": 57 + }, + "While trying to retrieve the implicit argument 'syscall_ptr' in:" + ], + "start_col": 20, + "start_line": 42 + }, + "While expanding the reference 'syscall_ptr' in:" + ], + "start_col": 23, + "start_line": 56 + } + }, + "33": { + "accessible_scopes": [ + "starkware.starknet.common.syscalls", + "starkware.starknet.common.syscalls.call_contract" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 47, + "end_line": 57, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/starknet/common/syscalls.cairo" + }, + "start_col": 26, + "start_line": 57 + } + }, + "34": { + "accessible_scopes": [ + "starkware.starknet.common.syscalls", + "starkware.starknet.common.syscalls.call_contract" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 73, + "end_line": 57, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/starknet/common/syscalls.cairo" + }, + "start_col": 57, + "start_line": 57 + } + }, + "35": { + "accessible_scopes": [ + "starkware.starknet.common.syscalls", + "starkware.starknet.common.syscalls.call_contract" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 75, + "end_line": 57, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/starknet/common/syscalls.cairo" + }, + "start_col": 5, + "start_line": 57 + } + }, + "36": { + "accessible_scopes": [ + "starkware.starknet.common.syscalls", + "starkware.starknet.common.syscalls.get_caller_address" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 90, + "end_line": 202, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/starknet/common/syscalls.cairo" + }, + "start_col": 63, + "start_line": 202 + } + }, + "38": { + "accessible_scopes": [ + "starkware.starknet.common.syscalls", + "starkware.starknet.common.syscalls.get_caller_address" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 92, + "end_line": 202, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/starknet/common/syscalls.cairo" + }, + "start_col": 5, + "start_line": 202 + } + }, + "39": { + "accessible_scopes": [ + "starkware.starknet.common.syscalls", + "starkware.starknet.common.syscalls.get_caller_address" + ], + "flow_tracking_data": null, + "hints": [ + { + "location": { + "end_col": 93, + "end_line": 203, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/starknet/common/syscalls.cairo" + }, + "start_col": 5, + "start_line": 203 + }, + "n_prefix_newlines": 0 + } + ], + "inst": { + "end_col": 58, + "end_line": 204, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/starknet/common/syscalls.cairo" + }, + "parent_location": [ + { + "end_col": 43, + "end_line": 200, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/starknet/common/syscalls.cairo" + }, + "parent_location": [ + { + "end_col": 61, + "end_line": 205, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/starknet/common/syscalls.cairo" + }, + "start_col": 5, + "start_line": 205 + }, + "While trying to retrieve the implicit argument 'syscall_ptr' in:" + ], + "start_col": 25, + "start_line": 200 + }, + "While expanding the reference 'syscall_ptr' in:" + ], + "start_col": 23, + "start_line": 204 + } + }, + "41": { + "accessible_scopes": [ + "starkware.starknet.common.syscalls", + "starkware.starknet.common.syscalls.get_caller_address" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 59, + "end_line": 205, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/starknet/common/syscalls.cairo" + }, + "start_col": 28, + "start_line": 205 + } + }, + "42": { + "accessible_scopes": [ + "starkware.starknet.common.syscalls", + "starkware.starknet.common.syscalls.get_caller_address" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 61, + "end_line": 205, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/starknet/common/syscalls.cairo" + }, + "start_col": 5, + "start_line": 205 + } + }, + "43": { + "accessible_scopes": [ + "starkware.starknet.common.syscalls", + "starkware.starknet.common.syscalls.get_contract_address" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 94, + "end_line": 276, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/starknet/common/syscalls.cairo" + }, + "start_col": 65, + "start_line": 276 + } + }, + "45": { + "accessible_scopes": [ + "starkware.starknet.common.syscalls", + "starkware.starknet.common.syscalls.get_contract_address" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 96, + "end_line": 276, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/starknet/common/syscalls.cairo" + }, + "start_col": 5, + "start_line": 276 + } + }, + "46": { + "accessible_scopes": [ + "starkware.starknet.common.syscalls", + "starkware.starknet.common.syscalls.get_contract_address" + ], + "flow_tracking_data": null, + "hints": [ + { + "location": { + "end_col": 95, + "end_line": 277, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/starknet/common/syscalls.cairo" + }, + "start_col": 5, + "start_line": 277 + }, + "n_prefix_newlines": 0 + } + ], + "inst": { + "end_col": 60, + "end_line": 278, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/starknet/common/syscalls.cairo" + }, + "parent_location": [ + { + "end_col": 45, + "end_line": 274, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/starknet/common/syscalls.cairo" + }, + "parent_location": [ + { + "end_col": 65, + "end_line": 279, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/starknet/common/syscalls.cairo" + }, + "start_col": 5, + "start_line": 279 + }, + "While trying to retrieve the implicit argument 'syscall_ptr' in:" + ], + "start_col": 27, + "start_line": 274 + }, + "While expanding the reference 'syscall_ptr' in:" + ], + "start_col": 23, + "start_line": 278 + } + }, + "48": { + "accessible_scopes": [ + "starkware.starknet.common.syscalls", + "starkware.starknet.common.syscalls.get_contract_address" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 63, + "end_line": 279, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/starknet/common/syscalls.cairo" + }, + "start_col": 30, + "start_line": 279 + } + }, + "49": { + "accessible_scopes": [ + "starkware.starknet.common.syscalls", + "starkware.starknet.common.syscalls.get_contract_address" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 65, + "end_line": 279, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/starknet/common/syscalls.cairo" + }, + "start_col": 5, + "start_line": 279 + } + }, + "50": { + "accessible_scopes": [ + "starkware.starknet.common.syscalls", + "starkware.starknet.common.syscalls.storage_read" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 79, + "end_line": 354, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/starknet/common/syscalls.cairo" + }, + "start_col": 58, + "start_line": 354 + } + }, + "52": { + "accessible_scopes": [ + "starkware.starknet.common.syscalls", + "starkware.starknet.common.syscalls.storage_read" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 98, + "end_line": 354, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/starknet/common/syscalls.cairo" + }, + "start_col": 5, + "start_line": 354 + } + }, + "53": { + "accessible_scopes": [ + "starkware.starknet.common.syscalls", + "starkware.starknet.common.syscalls.storage_read" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 98, + "end_line": 354, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/starknet/common/syscalls.cairo" + }, + "start_col": 5, + "start_line": 354 + } + }, + "54": { + "accessible_scopes": [ + "starkware.starknet.common.syscalls", + "starkware.starknet.common.syscalls.storage_read" + ], + "flow_tracking_data": null, + "hints": [ + { + "location": { + "end_col": 87, + "end_line": 355, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/starknet/common/syscalls.cairo" + }, + "start_col": 5, + "start_line": 355 + }, + "n_prefix_newlines": 0 + } + ], + "inst": { + "end_col": 53, + "end_line": 357, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/starknet/common/syscalls.cairo" + }, + "parent_location": [ + { + "end_col": 37, + "end_line": 352, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/starknet/common/syscalls.cairo" + }, + "parent_location": [ + { + "end_col": 35, + "end_line": 358, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/starknet/common/syscalls.cairo" + }, + "start_col": 5, + "start_line": 358 + }, + "While trying to retrieve the implicit argument 'syscall_ptr' in:" + ], + "start_col": 19, + "start_line": 352 + }, + "While expanding the reference 'syscall_ptr' in:" + ], + "start_col": 23, + "start_line": 357 + } + }, + "56": { + "accessible_scopes": [ + "starkware.starknet.common.syscalls", + "starkware.starknet.common.syscalls.storage_read" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 33, + "end_line": 358, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/starknet/common/syscalls.cairo" + }, + "start_col": 19, + "start_line": 358 + } + }, + "57": { + "accessible_scopes": [ + "starkware.starknet.common.syscalls", + "starkware.starknet.common.syscalls.storage_read" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 35, + "end_line": 358, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/starknet/common/syscalls.cairo" + }, + "start_col": 5, + "start_line": 358 + } + }, + "58": { + "accessible_scopes": [ + "starkware.starknet.common.syscalls", + "starkware.starknet.common.syscalls.storage_write" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 40, + "end_line": 372, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/starknet/common/syscalls.cairo" + }, + "start_col": 18, + "start_line": 372 + } + }, + "60": { + "accessible_scopes": [ + "starkware.starknet.common.syscalls", + "starkware.starknet.common.syscalls.storage_write" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 7, + "end_line": 373, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/starknet/common/syscalls.cairo" + }, + "start_col": 5, + "start_line": 371 + } + }, + "61": { + "accessible_scopes": [ + "starkware.starknet.common.syscalls", + "starkware.starknet.common.syscalls.storage_write" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 7, + "end_line": 373, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/starknet/common/syscalls.cairo" + }, + "start_col": 5, + "start_line": 371 + } + }, + "62": { + "accessible_scopes": [ + "starkware.starknet.common.syscalls", + "starkware.starknet.common.syscalls.storage_write" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 7, + "end_line": 373, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/starknet/common/syscalls.cairo" + }, + "start_col": 5, + "start_line": 371 + } + }, + "63": { + "accessible_scopes": [ + "starkware.starknet.common.syscalls", + "starkware.starknet.common.syscalls.storage_write" + ], + "flow_tracking_data": null, + "hints": [ + { + "location": { + "end_col": 88, + "end_line": 374, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/starknet/common/syscalls.cairo" + }, + "start_col": 5, + "start_line": 374 + }, + "n_prefix_newlines": 0 + } + ], + "inst": { + "end_col": 54, + "end_line": 375, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/starknet/common/syscalls.cairo" + }, + "parent_location": [ + { + "end_col": 38, + "end_line": 370, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/starknet/common/syscalls.cairo" + }, + "parent_location": [ + { + "end_col": 15, + "end_line": 376, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/starknet/common/syscalls.cairo" + }, + "start_col": 5, + "start_line": 376 + }, + "While trying to retrieve the implicit argument 'syscall_ptr' in:" + ], + "start_col": 20, + "start_line": 370 + }, + "While expanding the reference 'syscall_ptr' in:" + ], + "start_col": 23, + "start_line": 375 + } + }, + "65": { + "accessible_scopes": [ + "starkware.starknet.common.syscalls", + "starkware.starknet.common.syscalls.storage_write" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 15, + "end_line": 376, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/starknet/common/syscalls.cairo" + }, + "start_col": 5, + "start_line": 376 + } + }, + "66": { + "accessible_scopes": [ + "starkware.starknet.common.syscalls", + "starkware.starknet.common.syscalls.emit_event" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 37, + "end_line": 392, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/starknet/common/syscalls.cairo" + }, + "start_col": 18, + "start_line": 392 + } + }, + "68": { + "accessible_scopes": [ + "starkware.starknet.common.syscalls", + "starkware.starknet.common.syscalls.emit_event" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 7, + "end_line": 393, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/starknet/common/syscalls.cairo" + }, + "start_col": 5, + "start_line": 391 + } + }, + "69": { + "accessible_scopes": [ + "starkware.starknet.common.syscalls", + "starkware.starknet.common.syscalls.emit_event" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 7, + "end_line": 393, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/starknet/common/syscalls.cairo" + }, + "start_col": 5, + "start_line": 391 + } + }, + "70": { + "accessible_scopes": [ + "starkware.starknet.common.syscalls", + "starkware.starknet.common.syscalls.emit_event" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 7, + "end_line": 393, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/starknet/common/syscalls.cairo" + }, + "start_col": 5, + "start_line": 391 + } + }, + "71": { + "accessible_scopes": [ + "starkware.starknet.common.syscalls", + "starkware.starknet.common.syscalls.emit_event" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 7, + "end_line": 393, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/starknet/common/syscalls.cairo" + }, + "start_col": 5, + "start_line": 391 + } + }, + "72": { + "accessible_scopes": [ + "starkware.starknet.common.syscalls", + "starkware.starknet.common.syscalls.emit_event" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 7, + "end_line": 393, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/starknet/common/syscalls.cairo" + }, + "start_col": 5, + "start_line": 391 + } + }, + "73": { + "accessible_scopes": [ + "starkware.starknet.common.syscalls", + "starkware.starknet.common.syscalls.emit_event" + ], + "flow_tracking_data": null, + "hints": [ + { + "location": { + "end_col": 85, + "end_line": 394, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/starknet/common/syscalls.cairo" + }, + "start_col": 5, + "start_line": 394 + }, + "n_prefix_newlines": 0 + } + ], + "inst": { + "end_col": 51, + "end_line": 395, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/starknet/common/syscalls.cairo" + }, + "parent_location": [ + { + "end_col": 35, + "end_line": 390, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/starknet/common/syscalls.cairo" + }, + "parent_location": [ + { + "end_col": 15, + "end_line": 396, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/starknet/common/syscalls.cairo" + }, + "start_col": 5, + "start_line": 396 + }, + "While trying to retrieve the implicit argument 'syscall_ptr' in:" + ], + "start_col": 17, + "start_line": 390 + }, + "While expanding the reference 'syscall_ptr' in:" + ], + "start_col": 23, + "start_line": 395 + } + }, + "75": { + "accessible_scopes": [ + "starkware.starknet.common.syscalls", + "starkware.starknet.common.syscalls.emit_event" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 15, + "end_line": 396, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/starknet/common/syscalls.cairo" + }, + "start_col": 5, + "start_line": 396 + } + }, + "76": { + "accessible_scopes": [ + "starkware.cairo.common.math", + "starkware.cairo.common.math.assert_not_zero" + ], + "flow_tracking_data": null, + "hints": [ + { + "location": { + "end_col": 7, + "end_line": 11, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/math.cairo" + }, + "start_col": 5, + "start_line": 7 + }, + "n_prefix_newlines": 1 + } + ], + "inst": { + "end_col": 7, + "end_line": 12, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/math.cairo" + }, + "start_col": 5, + "start_line": 12 + } + }, + "78": { + "accessible_scopes": [ + "starkware.cairo.common.math", + "starkware.cairo.common.math.assert_not_zero" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 18, + "end_line": 14, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/math.cairo" + }, + "start_col": 9, + "start_line": 14 + } + }, + "80": { + "accessible_scopes": [ + "starkware.cairo.common.math", + "starkware.cairo.common.math.assert_not_zero" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 15, + "end_line": 17, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/math.cairo" + }, + "start_col": 5, + "start_line": 17 + } + }, + "81": { + "accessible_scopes": [ + "starkware.cairo.common.math", + "starkware.cairo.common.math.assert_not_equal" + ], + "flow_tracking_data": null, + "hints": [ + { + "location": { + "end_col": 7, + "end_line": 31, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/math.cairo" + }, + "start_col": 5, + "start_line": 22 + }, + "n_prefix_newlines": 1 + } + ], + "inst": { + "end_col": 15, + "end_line": 32, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/math.cairo" + }, + "start_col": 9, + "start_line": 32 + } + }, + "82": { + "accessible_scopes": [ + "starkware.cairo.common.math", + "starkware.cairo.common.math.assert_not_equal" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 7, + "end_line": 32, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/math.cairo" + }, + "start_col": 5, + "start_line": 32 + } + }, + "84": { + "accessible_scopes": [ + "starkware.cairo.common.math", + "starkware.cairo.common.math.assert_not_equal" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 18, + "end_line": 34, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/math.cairo" + }, + "start_col": 9, + "start_line": 34 + } + }, + "86": { + "accessible_scopes": [ + "starkware.cairo.common.math", + "starkware.cairo.common.math.assert_not_equal" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 15, + "end_line": 37, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/math.cairo" + }, + "start_col": 5, + "start_line": 37 + } + }, + "87": { + "accessible_scopes": [ + "starkware.cairo.common.math", + "starkware.cairo.common.math.assert_nn" + ], + "flow_tracking_data": null, + "hints": [ + { + "location": { + "end_col": 7, + "end_line": 46, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/math.cairo" + }, + "start_col": 5, + "start_line": 42 + }, + "n_prefix_newlines": 1 + } + ], + "inst": { + "end_col": 26, + "end_line": 47, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/math.cairo" + }, + "start_col": 5, + "start_line": 47 + } + }, + "88": { + "accessible_scopes": [ + "starkware.cairo.common.math", + "starkware.cairo.common.math.assert_nn" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 46, + "end_line": 48, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/math.cairo" + }, + "parent_location": [ + { + "end_col": 31, + "end_line": 41, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/math.cairo" + }, + "parent_location": [ + { + "end_col": 15, + "end_line": 49, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/math.cairo" + }, + "start_col": 5, + "start_line": 49 + }, + "While trying to retrieve the implicit argument 'range_check_ptr' in:" + ], + "start_col": 16, + "start_line": 41 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 27, + "start_line": 48 + } + }, + "90": { + "accessible_scopes": [ + "starkware.cairo.common.math", + "starkware.cairo.common.math.assert_nn" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 15, + "end_line": 49, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/math.cairo" + }, + "start_col": 5, + "start_line": 49 + } + }, + "91": { + "accessible_scopes": [ + "starkware.cairo.common.math", + "starkware.cairo.common.math.assert_le" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 31, + "end_line": 53, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/math.cairo" + }, + "parent_location": [ + { + "end_col": 31, + "end_line": 41, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/math.cairo" + }, + "parent_location": [ + { + "end_col": 21, + "end_line": 54, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/math.cairo" + }, + "start_col": 5, + "start_line": 54 + }, + "While trying to retrieve the implicit argument 'range_check_ptr' in:" + ], + "start_col": 16, + "start_line": 41 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 16, + "start_line": 53 + } + }, + "92": { + "accessible_scopes": [ + "starkware.cairo.common.math", + "starkware.cairo.common.math.assert_le" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 20, + "end_line": 54, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/math.cairo" + }, + "start_col": 15, + "start_line": 54 + } + }, + "93": { + "accessible_scopes": [ + "starkware.cairo.common.math", + "starkware.cairo.common.math.assert_le" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 21, + "end_line": 54, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/math.cairo" + }, + "start_col": 5, + "start_line": 54 + } + }, + "95": { + "accessible_scopes": [ + "starkware.cairo.common.math", + "starkware.cairo.common.math.assert_le" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 15, + "end_line": 55, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/math.cairo" + }, + "start_col": 5, + "start_line": 55 + } + }, + "96": { + "accessible_scopes": [ + "starkware.cairo.common.math", + "starkware.cairo.common.math.assert_250_bit" + ], + "flow_tracking_data": null, + "hints": [ + { + "location": { + "end_col": 7, + "end_line": 106, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/math.cairo" + }, + "start_col": 5, + "start_line": 97 + }, + "n_prefix_newlines": 1 + } + ], + "inst": { + "end_col": 50, + "end_line": 108, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/math.cairo" + }, + "start_col": 36, + "start_line": 108 + } + }, + "98": { + "accessible_scopes": [ + "starkware.cairo.common.math", + "starkware.cairo.common.math.assert_250_bit" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 37, + "end_line": 95, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/math.cairo" + }, + "parent_location": [ + { + "end_col": 57, + "end_line": 108, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/math.cairo" + }, + "start_col": 53, + "start_line": 108 + }, + "While expanding the reference 'high' in:" + ], + "start_col": 16, + "start_line": 95 + } + }, + "99": { + "accessible_scopes": [ + "starkware.cairo.common.math", + "starkware.cairo.common.math.assert_250_bit" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 57, + "end_line": 108, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/math.cairo" + }, + "start_col": 36, + "start_line": 108 + } + }, + "100": { + "accessible_scopes": [ + "starkware.cairo.common.math", + "starkware.cairo.common.math.assert_250_bit" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 58, + "end_line": 108, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/math.cairo" + }, + "start_col": 5, + "start_line": 108 + } + }, + "101": { + "accessible_scopes": [ + "starkware.cairo.common.math", + "starkware.cairo.common.math.assert_250_bit" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 37, + "end_line": 95, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/math.cairo" + }, + "parent_location": [ + { + "end_col": 24, + "end_line": 113, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/math.cairo" + }, + "start_col": 20, + "start_line": 113 + }, + "While expanding the reference 'high' in:" + ], + "start_col": 16, + "start_line": 95 + } + }, + "102": { + "accessible_scopes": [ + "starkware.cairo.common.math", + "starkware.cairo.common.math.assert_250_bit" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 32, + "end_line": 113, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/math.cairo" + }, + "start_col": 20, + "start_line": 113 + } + }, + "104": { + "accessible_scopes": [ + "starkware.cairo.common.math", + "starkware.cairo.common.math.assert_250_bit" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 32, + "end_line": 94, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/math.cairo" + }, + "parent_location": [ + { + "end_col": 38, + "end_line": 113, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/math.cairo" + }, + "start_col": 35, + "start_line": 113 + }, + "While expanding the reference 'low' in:" + ], + "start_col": 15, + "start_line": 94 + } + }, + "105": { + "accessible_scopes": [ + "starkware.cairo.common.math", + "starkware.cairo.common.math.assert_250_bit" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 39, + "end_line": 113, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/math.cairo" + }, + "start_col": 5, + "start_line": 113 + } + }, + "106": { + "accessible_scopes": [ + "starkware.cairo.common.math", + "starkware.cairo.common.math.assert_250_bit" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 46, + "end_line": 115, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/math.cairo" + }, + "parent_location": [ + { + "end_col": 36, + "end_line": 89, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/math.cairo" + }, + "parent_location": [ + { + "end_col": 15, + "end_line": 116, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/math.cairo" + }, + "start_col": 5, + "start_line": 116 + }, + "While trying to retrieve the implicit argument 'range_check_ptr' in:" + ], + "start_col": 21, + "start_line": 89 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 27, + "start_line": 115 + } + }, + "108": { + "accessible_scopes": [ + "starkware.cairo.common.math", + "starkware.cairo.common.math.assert_250_bit" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 15, + "end_line": 116, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/math.cairo" + }, + "start_col": 5, + "start_line": 116 + } + }, + "109": { + "accessible_scopes": [ + "starkware.cairo.common.math", + "starkware.cairo.common.math.assert_le_felt" + ], + "flow_tracking_data": null, + "hints": [ + { + "location": { + "end_col": 7, + "end_line": 184, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/math.cairo" + }, + "start_col": 5, + "start_line": 164 + }, + "n_prefix_newlines": 1 + } + ], + "inst": { + "end_col": 42, + "end_line": 186, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/math.cairo" + }, + "start_col": 25, + "start_line": 186 + } + }, + "110": { + "accessible_scopes": [ + "starkware.cairo.common.math", + "starkware.cairo.common.math.assert_le_felt" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 66, + "end_line": 186, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/math.cairo" + }, + "start_col": 45, + "start_line": 186 + } + }, + "111": { + "accessible_scopes": [ + "starkware.cairo.common.math", + "starkware.cairo.common.math.assert_le_felt" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 86, + "end_line": 186, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/math.cairo" + }, + "start_col": 45, + "start_line": 186 + } + }, + "113": { + "accessible_scopes": [ + "starkware.cairo.common.math", + "starkware.cairo.common.math.assert_le_felt" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 86, + "end_line": 186, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/math.cairo" + }, + "start_col": 25, + "start_line": 186 + } + }, + "114": { + "accessible_scopes": [ + "starkware.cairo.common.math", + "starkware.cairo.common.math.assert_le_felt" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 45, + "end_line": 187, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/math.cairo" + }, + "start_col": 24, + "start_line": 187 + } + }, + "115": { + "accessible_scopes": [ + "starkware.cairo.common.math", + "starkware.cairo.common.math.assert_le_felt" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 69, + "end_line": 187, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/math.cairo" + }, + "start_col": 48, + "start_line": 187 + } + }, + "116": { + "accessible_scopes": [ + "starkware.cairo.common.math", + "starkware.cairo.common.math.assert_le_felt" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 89, + "end_line": 187, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/math.cairo" + }, + "start_col": 48, + "start_line": 187 + } + }, + "118": { + "accessible_scopes": [ + "starkware.cairo.common.math", + "starkware.cairo.common.math.assert_le_felt" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 89, + "end_line": 187, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/math.cairo" + }, + "start_col": 24, + "start_line": 187 + } + }, + "119": { + "accessible_scopes": [ + "starkware.cairo.common.math", + "starkware.cairo.common.math.assert_le_felt" + ], + "flow_tracking_data": null, + "hints": [ + { + "location": { + "end_col": 49, + "end_line": 196, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/math.cairo" + }, + "start_col": 5, + "start_line": 196 + }, + "n_prefix_newlines": 0 + } + ], + "inst": { + "end_col": 42, + "end_line": 197, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/math.cairo" + }, + "start_col": 5, + "start_line": 197 + } + }, + "121": { + "accessible_scopes": [ + "starkware.cairo.common.math", + "starkware.cairo.common.math.assert_le_felt" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 25, + "end_line": 198, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/math.cairo" + }, + "start_col": 23, + "start_line": 198 + } + }, + "123": { + "accessible_scopes": [ + "starkware.cairo.common.math", + "starkware.cairo.common.math.assert_le_felt" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 30, + "end_line": 198, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/math.cairo" + }, + "start_col": 22, + "start_line": 198 + } + }, + "124": { + "accessible_scopes": [ + "starkware.cairo.common.math", + "starkware.cairo.common.math.assert_le_felt" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 31, + "end_line": 198, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/math.cairo" + }, + "start_col": 5, + "start_line": 198 + } + }, + "125": { + "accessible_scopes": [ + "starkware.cairo.common.math", + "starkware.cairo.common.math.assert_le_felt" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 29, + "end_line": 199, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/math.cairo" + }, + "start_col": 24, + "start_line": 199 + } + }, + "126": { + "accessible_scopes": [ + "starkware.cairo.common.math", + "starkware.cairo.common.math.assert_le_felt" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 39, + "end_line": 199, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/math.cairo" + }, + "start_col": 34, + "start_line": 199 + } + }, + "128": { + "accessible_scopes": [ + "starkware.cairo.common.math", + "starkware.cairo.common.math.assert_le_felt" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 40, + "end_line": 199, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/math.cairo" + }, + "start_col": 23, + "start_line": 199 + } + }, + "129": { + "accessible_scopes": [ + "starkware.cairo.common.math", + "starkware.cairo.common.math.assert_le_felt" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 41, + "end_line": 199, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/math.cairo" + }, + "start_col": 5, + "start_line": 199 + } + }, + "130": { + "accessible_scopes": [ + "starkware.cairo.common.math", + "starkware.cairo.common.math.assert_le_felt" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 46, + "end_line": 188, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/math.cairo" + }, + "parent_location": [ + { + "end_col": 36, + "end_line": 154, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/math.cairo" + }, + "parent_location": [ + { + "end_col": 15, + "end_line": 200, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/math.cairo" + }, + "start_col": 5, + "start_line": 200 + }, + "While trying to retrieve the implicit argument 'range_check_ptr' in:" + ], + "start_col": 21, + "start_line": 154 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 27, + "start_line": 188 + } + }, + "132": { + "accessible_scopes": [ + "starkware.cairo.common.math", + "starkware.cairo.common.math.assert_le_felt" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 15, + "end_line": 200, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/math.cairo" + }, + "start_col": 5, + "start_line": 200 + } + }, + "133": { + "accessible_scopes": [ + "starkware.cairo.common.math", + "starkware.cairo.common.math.assert_le_felt" + ], + "flow_tracking_data": null, + "hints": [ + { + "location": { + "end_col": 49, + "end_line": 204, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/math.cairo" + }, + "start_col": 5, + "start_line": 204 + }, + "n_prefix_newlines": 0 + } + ], + "inst": { + "end_col": 50, + "end_line": 205, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/math.cairo" + }, + "start_col": 5, + "start_line": 205 + } + }, + "135": { + "accessible_scopes": [ + "starkware.cairo.common.math", + "starkware.cairo.common.math.assert_le_felt" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 23, + "end_line": 206, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/math.cairo" + }, + "start_col": 21, + "start_line": 206 + } + }, + "137": { + "accessible_scopes": [ + "starkware.cairo.common.math", + "starkware.cairo.common.math.assert_le_felt" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 28, + "end_line": 206, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/math.cairo" + }, + "start_col": 20, + "start_line": 206 + } + }, + "138": { + "accessible_scopes": [ + "starkware.cairo.common.math", + "starkware.cairo.common.math.assert_le_felt" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 30, + "end_line": 207, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/math.cairo" + }, + "start_col": 22, + "start_line": 207 + } + }, + "139": { + "accessible_scopes": [ + "starkware.cairo.common.math", + "starkware.cairo.common.math.assert_le_felt" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 31, + "end_line": 207, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/math.cairo" + }, + "start_col": 5, + "start_line": 207 + } + }, + "140": { + "accessible_scopes": [ + "starkware.cairo.common.math", + "starkware.cairo.common.math.assert_le_felt" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 31, + "end_line": 208, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/math.cairo" + }, + "start_col": 23, + "start_line": 208 + } + }, + "141": { + "accessible_scopes": [ + "starkware.cairo.common.math", + "starkware.cairo.common.math.assert_le_felt" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 32, + "end_line": 208, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/math.cairo" + }, + "start_col": 5, + "start_line": 208 + } + }, + "142": { + "accessible_scopes": [ + "starkware.cairo.common.math", + "starkware.cairo.common.math.assert_le_felt" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 46, + "end_line": 188, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/math.cairo" + }, + "parent_location": [ + { + "end_col": 36, + "end_line": 154, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/math.cairo" + }, + "parent_location": [ + { + "end_col": 15, + "end_line": 209, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/math.cairo" + }, + "start_col": 5, + "start_line": 209 + }, + "While trying to retrieve the implicit argument 'range_check_ptr' in:" + ], + "start_col": 21, + "start_line": 154 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 27, + "start_line": 188 + } + }, + "144": { + "accessible_scopes": [ + "starkware.cairo.common.math", + "starkware.cairo.common.math.assert_le_felt" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 15, + "end_line": 209, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/math.cairo" + }, + "start_col": 5, + "start_line": 209 + } + }, + "145": { + "accessible_scopes": [ + "starkware.cairo.common.math", + "starkware.cairo.common.math.assert_le_felt" + ], + "flow_tracking_data": null, + "hints": [ + { + "location": { + "end_col": 31, + "end_line": 213, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/math.cairo" + }, + "start_col": 5, + "start_line": 213 + }, + "n_prefix_newlines": 0 + } + ], + "inst": { + "end_col": 24, + "end_line": 214, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/math.cairo" + }, + "start_col": 5, + "start_line": 214 + } + }, + "146": { + "accessible_scopes": [ + "starkware.cairo.common.math", + "starkware.cairo.common.math.assert_le_felt" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 33, + "end_line": 215, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/math.cairo" + }, + "start_col": 28, + "start_line": 215 + } + }, + "147": { + "accessible_scopes": [ + "starkware.cairo.common.math", + "starkware.cairo.common.math.assert_le_felt" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 34, + "end_line": 215, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/math.cairo" + }, + "start_col": 23, + "start_line": 215 + } + }, + "148": { + "accessible_scopes": [ + "starkware.cairo.common.math", + "starkware.cairo.common.math.assert_le_felt" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 35, + "end_line": 215, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/math.cairo" + }, + "start_col": 5, + "start_line": 215 + } + }, + "149": { + "accessible_scopes": [ + "starkware.cairo.common.math", + "starkware.cairo.common.math.assert_le_felt" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 12, + "end_line": 216, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/math.cairo" + }, + "start_col": 5, + "start_line": 216 + } + }, + "151": { + "accessible_scopes": [ + "starkware.cairo.common.math", + "starkware.cairo.common.math.assert_le_felt" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 46, + "end_line": 188, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/math.cairo" + }, + "parent_location": [ + { + "end_col": 36, + "end_line": 154, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/math.cairo" + }, + "parent_location": [ + { + "end_col": 15, + "end_line": 217, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/math.cairo" + }, + "start_col": 5, + "start_line": 217 + }, + "While trying to retrieve the implicit argument 'range_check_ptr' in:" + ], + "start_col": 21, + "start_line": 154 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 27, + "start_line": 188 + } + }, + "153": { + "accessible_scopes": [ + "starkware.cairo.common.math", + "starkware.cairo.common.math.assert_le_felt" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 15, + "end_line": 217, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/math.cairo" + }, + "start_col": 5, + "start_line": 217 + } + }, + "154": { + "accessible_scopes": [ + "starkware.cairo.common.math", + "starkware.cairo.common.math.assert_lt_felt" + ], + "flow_tracking_data": null, + "hints": [ + { + "location": { + "end_col": 7, + "end_line": 230, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/math.cairo" + }, + "start_col": 5, + "start_line": 224 + }, + "n_prefix_newlines": 1 + } + ], + "inst": { + "end_col": 15, + "end_line": 231, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/math.cairo" + }, + "start_col": 9, + "start_line": 231 + } + }, + "155": { + "accessible_scopes": [ + "starkware.cairo.common.math", + "starkware.cairo.common.math.assert_lt_felt" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 7, + "end_line": 231, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/math.cairo" + }, + "start_col": 5, + "start_line": 231 + } + }, + "157": { + "accessible_scopes": [ + "starkware.cairo.common.math", + "starkware.cairo.common.math.assert_lt_felt" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 18, + "end_line": 233, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/math.cairo" + }, + "start_col": 9, + "start_line": 233 + } + }, + "159": { + "accessible_scopes": [ + "starkware.cairo.common.math", + "starkware.cairo.common.math.assert_lt_felt" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 36, + "end_line": 223, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/math.cairo" + }, + "parent_location": [ + { + "end_col": 36, + "end_line": 154, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/math.cairo" + }, + "parent_location": [ + { + "end_col": 25, + "end_line": 235, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/math.cairo" + }, + "start_col": 5, + "start_line": 235 + }, + "While trying to retrieve the implicit argument 'range_check_ptr' in:" + ], + "start_col": 21, + "start_line": 154 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 21, + "start_line": 223 + } + }, + "160": { + "accessible_scopes": [ + "starkware.cairo.common.math", + "starkware.cairo.common.math.assert_lt_felt" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 39, + "end_line": 223, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/math.cairo" + }, + "parent_location": [ + { + "end_col": 21, + "end_line": 235, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/math.cairo" + }, + "start_col": 20, + "start_line": 235 + }, + "While expanding the reference 'a' in:" + ], + "start_col": 38, + "start_line": 223 + } + }, + "161": { + "accessible_scopes": [ + "starkware.cairo.common.math", + "starkware.cairo.common.math.assert_lt_felt" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 42, + "end_line": 223, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/math.cairo" + }, + "parent_location": [ + { + "end_col": 24, + "end_line": 235, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/math.cairo" + }, + "start_col": 23, + "start_line": 235 + }, + "While expanding the reference 'b' in:" + ], + "start_col": 41, + "start_line": 223 + } + }, + "162": { + "accessible_scopes": [ + "starkware.cairo.common.math", + "starkware.cairo.common.math.assert_lt_felt" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 25, + "end_line": 235, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/math.cairo" + }, + "start_col": 5, + "start_line": 235 + } + }, + "164": { + "accessible_scopes": [ + "starkware.cairo.common.math", + "starkware.cairo.common.math.assert_lt_felt" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 15, + "end_line": 236, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/math.cairo" + }, + "start_col": 5, + "start_line": 236 + } + }, + "165": { + "accessible_scopes": [ + "starkware.cairo.common.math", + "starkware.cairo.common.math.unsigned_div_rem" + ], + "flow_tracking_data": null, + "hints": [ + { + "location": { + "end_col": 7, + "end_line": 307, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/math.cairo" + }, + "start_col": 5, + "start_line": 301 + }, + "n_prefix_newlines": 1 + } + ], + "inst": { + "end_col": 46, + "end_line": 300, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/math.cairo" + }, + "parent_location": [ + { + "end_col": 31, + "end_line": 53, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/math.cairo" + }, + "parent_location": [ + { + "end_col": 26, + "end_line": 308, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/math.cairo" + }, + "start_col": 5, + "start_line": 308 + }, + "While trying to retrieve the implicit argument 'range_check_ptr' in:" + ], + "start_col": 16, + "start_line": 53 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 27, + "start_line": 300 + } + }, + "167": { + "accessible_scopes": [ + "starkware.cairo.common.math", + "starkware.cairo.common.math.unsigned_div_rem" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 30, + "end_line": 298, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/math.cairo" + }, + "parent_location": [ + { + "end_col": 16, + "end_line": 308, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/math.cairo" + }, + "start_col": 15, + "start_line": 308 + }, + "While expanding the reference 'r' in:" + ], + "start_col": 13, + "start_line": 298 + } + }, + "168": { + "accessible_scopes": [ + "starkware.cairo.common.math", + "starkware.cairo.common.math.unsigned_div_rem" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 25, + "end_line": 308, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/math.cairo" + }, + "start_col": 18, + "start_line": 308 + } + }, + "170": { + "accessible_scopes": [ + "starkware.cairo.common.math", + "starkware.cairo.common.math.unsigned_div_rem" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 26, + "end_line": 308, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/math.cairo" + }, + "start_col": 5, + "start_line": 308 + } + }, + "172": { + "accessible_scopes": [ + "starkware.cairo.common.math", + "starkware.cairo.common.math.unsigned_div_rem" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 34, + "end_line": 299, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/math.cairo" + }, + "parent_location": [ + { + "end_col": 21, + "end_line": 310, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/math.cairo" + }, + "start_col": 20, + "start_line": 310 + }, + "While expanding the reference 'q' in:" + ], + "start_col": 13, + "start_line": 299 + } + }, + "173": { + "accessible_scopes": [ + "starkware.cairo.common.math", + "starkware.cairo.common.math.unsigned_div_rem" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 27, + "end_line": 310, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/math.cairo" + }, + "start_col": 20, + "start_line": 310 + } + }, + "174": { + "accessible_scopes": [ + "starkware.cairo.common.math", + "starkware.cairo.common.math.unsigned_div_rem" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 30, + "end_line": 298, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/math.cairo" + }, + "parent_location": [ + { + "end_col": 31, + "end_line": 310, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/math.cairo" + }, + "start_col": 30, + "start_line": 310 + }, + "While expanding the reference 'r' in:" + ], + "start_col": 13, + "start_line": 298 + } + }, + "175": { + "accessible_scopes": [ + "starkware.cairo.common.math", + "starkware.cairo.common.math.unsigned_div_rem" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 32, + "end_line": 310, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/math.cairo" + }, + "start_col": 5, + "start_line": 310 + } + }, + "176": { + "accessible_scopes": [ + "starkware.cairo.common.math", + "starkware.cairo.common.math.unsigned_div_rem" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 31, + "end_line": 53, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/math.cairo" + }, + "parent_location": [ + { + "end_col": 26, + "end_line": 308, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/math.cairo" + }, + "parent_location": [ + { + "end_col": 38, + "end_line": 297, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/math.cairo" + }, + "parent_location": [ + { + "end_col": 19, + "end_line": 311, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/math.cairo" + }, + "start_col": 5, + "start_line": 311 + }, + "While trying to retrieve the implicit argument 'range_check_ptr' in:" + ], + "start_col": 23, + "start_line": 297 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 5, + "start_line": 308 + }, + "While trying to update the implicit return value 'range_check_ptr' in:" + ], + "start_col": 16, + "start_line": 53 + } + }, + "177": { + "accessible_scopes": [ + "starkware.cairo.common.math", + "starkware.cairo.common.math.unsigned_div_rem" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 34, + "end_line": 299, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/math.cairo" + }, + "parent_location": [ + { + "end_col": 14, + "end_line": 311, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/math.cairo" + }, + "start_col": 13, + "start_line": 311 + }, + "While expanding the reference 'q' in:" + ], + "start_col": 13, + "start_line": 299 + } + }, + "178": { + "accessible_scopes": [ + "starkware.cairo.common.math", + "starkware.cairo.common.math.unsigned_div_rem" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 30, + "end_line": 298, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/math.cairo" + }, + "parent_location": [ + { + "end_col": 17, + "end_line": 311, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/math.cairo" + }, + "start_col": 16, + "start_line": 311 + }, + "While expanding the reference 'r' in:" + ], + "start_col": 13, + "start_line": 298 + } + }, + "179": { + "accessible_scopes": [ + "starkware.cairo.common.math", + "starkware.cairo.common.math.unsigned_div_rem" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 19, + "end_line": 311, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/math.cairo" + }, + "start_col": 5, + "start_line": 311 + } + }, + "180": { + "accessible_scopes": [ + "starkware.cairo.common.math", + "starkware.cairo.common.math.signed_div_rem" + ], + "flow_tracking_data": null, + "hints": [ + { + "location": { + "end_col": 7, + "end_line": 347, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/math.cairo" + }, + "start_col": 5, + "start_line": 329 + }, + "n_prefix_newlines": 1 + } + ], + "inst": { + "end_col": 41, + "end_line": 327, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/math.cairo" + }, + "parent_location": [ + { + "end_col": 21, + "end_line": 348, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/math.cairo" + }, + "parent_location": [ + { + "end_col": 21, + "end_line": 349, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/math.cairo" + }, + "start_col": 20, + "start_line": 349 + }, + "While expanding the reference 'q' in:" + ], + "start_col": 13, + "start_line": 348 + }, + "While expanding the reference 'biased_q' in:" + ], + "start_col": 20, + "start_line": 327 + } + }, + "181": { + "accessible_scopes": [ + "starkware.cairo.common.math", + "starkware.cairo.common.math.signed_div_rem" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 29, + "end_line": 348, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/math.cairo" + }, + "parent_location": [ + { + "end_col": 21, + "end_line": 349, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/math.cairo" + }, + "start_col": 20, + "start_line": 349 + }, + "While expanding the reference 'q' in:" + ], + "start_col": 13, + "start_line": 348 + } + }, + "182": { + "accessible_scopes": [ + "starkware.cairo.common.math", + "starkware.cairo.common.math.signed_div_rem" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 27, + "end_line": 349, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/math.cairo" + }, + "start_col": 20, + "start_line": 349 + } + }, + "183": { + "accessible_scopes": [ + "starkware.cairo.common.math", + "starkware.cairo.common.math.signed_div_rem" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 30, + "end_line": 326, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/math.cairo" + }, + "parent_location": [ + { + "end_col": 31, + "end_line": 349, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/math.cairo" + }, + "start_col": 30, + "start_line": 349 + }, + "While expanding the reference 'r' in:" + ], + "start_col": 13, + "start_line": 326 + } + }, + "184": { + "accessible_scopes": [ + "starkware.cairo.common.math", + "starkware.cairo.common.math.signed_div_rem" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 32, + "end_line": 349, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/math.cairo" + }, + "start_col": 5, + "start_line": 349 + } + }, + "185": { + "accessible_scopes": [ + "starkware.cairo.common.math", + "starkware.cairo.common.math.signed_div_rem" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 46, + "end_line": 328, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/math.cairo" + }, + "parent_location": [ + { + "end_col": 31, + "end_line": 53, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/math.cairo" + }, + "parent_location": [ + { + "end_col": 26, + "end_line": 350, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/math.cairo" + }, + "start_col": 5, + "start_line": 350 + }, + "While trying to retrieve the implicit argument 'range_check_ptr' in:" + ], + "start_col": 16, + "start_line": 53 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 27, + "start_line": 328 + } + }, + "187": { + "accessible_scopes": [ + "starkware.cairo.common.math", + "starkware.cairo.common.math.signed_div_rem" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 30, + "end_line": 326, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/math.cairo" + }, + "parent_location": [ + { + "end_col": 16, + "end_line": 350, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/math.cairo" + }, + "start_col": 15, + "start_line": 350 + }, + "While expanding the reference 'r' in:" + ], + "start_col": 13, + "start_line": 326 + } + }, + "188": { + "accessible_scopes": [ + "starkware.cairo.common.math", + "starkware.cairo.common.math.signed_div_rem" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 25, + "end_line": 350, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/math.cairo" + }, + "start_col": 18, + "start_line": 350 + } + }, + "190": { + "accessible_scopes": [ + "starkware.cairo.common.math", + "starkware.cairo.common.math.signed_div_rem" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 26, + "end_line": 350, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/math.cairo" + }, + "start_col": 5, + "start_line": 350 + } + }, + "192": { + "accessible_scopes": [ + "starkware.cairo.common.math", + "starkware.cairo.common.math.signed_div_rem" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 26, + "end_line": 351, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/math.cairo" + }, + "start_col": 25, + "start_line": 351 + } + }, + "194": { + "accessible_scopes": [ + "starkware.cairo.common.math", + "starkware.cairo.common.math.signed_div_rem" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 34, + "end_line": 351, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/math.cairo" + }, + "start_col": 25, + "start_line": 351 + } + }, + "195": { + "accessible_scopes": [ + "starkware.cairo.common.math", + "starkware.cairo.common.math.signed_div_rem" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 31, + "end_line": 53, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/math.cairo" + }, + "parent_location": [ + { + "end_col": 26, + "end_line": 350, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/math.cairo" + }, + "parent_location": [ + { + "end_col": 31, + "end_line": 53, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/math.cairo" + }, + "parent_location": [ + { + "end_col": 39, + "end_line": 351, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/math.cairo" + }, + "start_col": 5, + "start_line": 351 + }, + "While trying to retrieve the implicit argument 'range_check_ptr' in:" + ], + "start_col": 16, + "start_line": 53 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 5, + "start_line": 350 + }, + "While trying to update the implicit return value 'range_check_ptr' in:" + ], + "start_col": 16, + "start_line": 53 + } + }, + "196": { + "accessible_scopes": [ + "starkware.cairo.common.math", + "starkware.cairo.common.math.signed_div_rem" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 41, + "end_line": 327, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/math.cairo" + }, + "parent_location": [ + { + "end_col": 23, + "end_line": 351, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/math.cairo" + }, + "start_col": 15, + "start_line": 351 + }, + "While expanding the reference 'biased_q' in:" + ], + "start_col": 20, + "start_line": 327 + } + }, + "197": { + "accessible_scopes": [ + "starkware.cairo.common.math", + "starkware.cairo.common.math.signed_div_rem" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 38, + "end_line": 351, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/math.cairo" + }, + "start_col": 25, + "start_line": 351 + } + }, + "199": { + "accessible_scopes": [ + "starkware.cairo.common.math", + "starkware.cairo.common.math.signed_div_rem" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 39, + "end_line": 351, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/math.cairo" + }, + "start_col": 5, + "start_line": 351 + } + }, + "201": { + "accessible_scopes": [ + "starkware.cairo.common.math", + "starkware.cairo.common.math.signed_div_rem" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 41, + "end_line": 327, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/math.cairo" + }, + "parent_location": [ + { + "end_col": 21, + "end_line": 348, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/math.cairo" + }, + "parent_location": [ + { + "end_col": 14, + "end_line": 352, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/math.cairo" + }, + "start_col": 13, + "start_line": 352 + }, + "While expanding the reference 'q' in:" + ], + "start_col": 13, + "start_line": 348 + }, + "While expanding the reference 'biased_q' in:" + ], + "start_col": 20, + "start_line": 327 + } + }, + "202": { + "accessible_scopes": [ + "starkware.cairo.common.math", + "starkware.cairo.common.math.signed_div_rem" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 31, + "end_line": 53, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/math.cairo" + }, + "parent_location": [ + { + "end_col": 39, + "end_line": 351, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/math.cairo" + }, + "parent_location": [ + { + "end_col": 36, + "end_line": 325, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/math.cairo" + }, + "parent_location": [ + { + "end_col": 19, + "end_line": 352, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/math.cairo" + }, + "start_col": 5, + "start_line": 352 + }, + "While trying to retrieve the implicit argument 'range_check_ptr' in:" + ], + "start_col": 21, + "start_line": 325 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 5, + "start_line": 351 + }, + "While trying to update the implicit return value 'range_check_ptr' in:" + ], + "start_col": 16, + "start_line": 53 + } + }, + "203": { + "accessible_scopes": [ + "starkware.cairo.common.math", + "starkware.cairo.common.math.signed_div_rem" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 29, + "end_line": 348, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/math.cairo" + }, + "parent_location": [ + { + "end_col": 14, + "end_line": 352, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/math.cairo" + }, + "start_col": 13, + "start_line": 352 + }, + "While expanding the reference 'q' in:" + ], + "start_col": 13, + "start_line": 348 + } + }, + "204": { + "accessible_scopes": [ + "starkware.cairo.common.math", + "starkware.cairo.common.math.signed_div_rem" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 30, + "end_line": 326, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/math.cairo" + }, + "parent_location": [ + { + "end_col": 17, + "end_line": 352, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/math.cairo" + }, + "start_col": 16, + "start_line": 352 + }, + "While expanding the reference 'r' in:" + ], + "start_col": 13, + "start_line": 326 + } + }, + "205": { + "accessible_scopes": [ + "starkware.cairo.common.math", + "starkware.cairo.common.math.signed_div_rem" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 19, + "end_line": 352, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/math.cairo" + }, + "start_col": 5, + "start_line": 352 + } + }, + "206": { + "accessible_scopes": [ + "starkware.starknet.common.storage", + "starkware.starknet.common.storage.normalize_address" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 22, + "end_line": 13, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/starknet/common/storage.cairo" + }, + "start_col": 5, + "start_line": 13 + } + }, + "208": { + "accessible_scopes": [ + "starkware.starknet.common.storage", + "starkware.starknet.common.storage.normalize_address" + ], + "flow_tracking_data": null, + "hints": [ + { + "location": { + "end_col": 7, + "end_line": 21, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/starknet/common/storage.cairo" + }, + "start_col": 5, + "start_line": 14 + }, + "n_prefix_newlines": 1 + } + ], + "inst": { + "end_col": 7, + "end_line": 22, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/starknet/common/storage.cairo" + }, + "start_col": 5, + "start_line": 22 + } + }, + "210": { + "accessible_scopes": [ + "starkware.starknet.common.storage", + "starkware.starknet.common.storage.normalize_address" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 39, + "end_line": 12, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/starknet/common/storage.cairo" + }, + "parent_location": [ + { + "end_col": 36, + "end_line": 89, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/math.cairo" + }, + "parent_location": [ + { + "end_col": 26, + "end_line": 50, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/starknet/common/storage.cairo" + }, + "start_col": 9, + "start_line": 50 + }, + "While trying to retrieve the implicit argument 'range_check_ptr' in:" + ], + "start_col": 21, + "start_line": 89 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 24, + "start_line": 12 + } + }, + "211": { + "accessible_scopes": [ + "starkware.starknet.common.storage", + "starkware.starknet.common.storage.normalize_address" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 34, + "end_line": 48, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/starknet/common/storage.cairo" + }, + "parent_location": [ + { + "end_col": 25, + "end_line": 50, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/starknet/common/storage.cairo" + }, + "start_col": 24, + "start_line": 50 + }, + "While expanding the reference 'x' in:" + ], + "start_col": 17, + "start_line": 48 + } + }, + "213": { + "accessible_scopes": [ + "starkware.starknet.common.storage", + "starkware.starknet.common.storage.normalize_address" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 26, + "end_line": 50, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/starknet/common/storage.cairo" + }, + "start_col": 9, + "start_line": 50 + } + }, + "215": { + "accessible_scopes": [ + "starkware.starknet.common.storage", + "starkware.starknet.common.storage.normalize_address" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 20, + "end_line": 49, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/starknet/common/storage.cairo" + }, + "parent_location": [ + { + "end_col": 25, + "end_line": 51, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/starknet/common/storage.cairo" + }, + "start_col": 24, + "start_line": 51 + }, + "While expanding the reference 'y' in:" + ], + "start_col": 18, + "start_line": 49 + } + }, + "217": { + "accessible_scopes": [ + "starkware.starknet.common.storage", + "starkware.starknet.common.storage.normalize_address" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 36, + "end_line": 89, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/math.cairo" + }, + "parent_location": [ + { + "end_col": 26, + "end_line": 50, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/starknet/common/storage.cairo" + }, + "parent_location": [ + { + "end_col": 36, + "end_line": 89, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/math.cairo" + }, + "parent_location": [ + { + "end_col": 26, + "end_line": 51, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/starknet/common/storage.cairo" + }, + "start_col": 9, + "start_line": 51 + }, + "While trying to retrieve the implicit argument 'range_check_ptr' in:" + ], + "start_col": 21, + "start_line": 89 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 9, + "start_line": 50 + }, + "While trying to update the implicit return value 'range_check_ptr' in:" + ], + "start_col": 21, + "start_line": 89 + } + }, + "218": { + "accessible_scopes": [ + "starkware.starknet.common.storage", + "starkware.starknet.common.storage.normalize_address" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 28, + "end_line": 49, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/starknet/common/storage.cairo" + }, + "parent_location": [ + { + "end_col": 25, + "end_line": 51, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/starknet/common/storage.cairo" + }, + "start_col": 24, + "start_line": 51 + }, + "While expanding the reference 'y' in:" + ], + "start_col": 17, + "start_line": 49 + } + }, + "219": { + "accessible_scopes": [ + "starkware.starknet.common.storage", + "starkware.starknet.common.storage.normalize_address" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 26, + "end_line": 51, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/starknet/common/storage.cairo" + }, + "start_col": 9, + "start_line": 51 + } + }, + "221": { + "accessible_scopes": [ + "starkware.starknet.common.storage", + "starkware.starknet.common.storage.normalize_address" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 38, + "end_line": 52, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/starknet/common/storage.cairo" + }, + "start_col": 21, + "start_line": 52 + } + }, + "223": { + "accessible_scopes": [ + "starkware.starknet.common.storage", + "starkware.starknet.common.storage.normalize_address" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 40, + "end_line": 52, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/starknet/common/storage.cairo" + }, + "start_col": 9, + "start_line": 52 + } + }, + "224": { + "accessible_scopes": [ + "starkware.starknet.common.storage", + "starkware.starknet.common.storage.normalize_address" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 24, + "end_line": 23, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/starknet/common/storage.cairo" + }, + "start_col": 9, + "start_line": 23 + } + }, + "226": { + "accessible_scopes": [ + "starkware.starknet.common.storage", + "starkware.starknet.common.storage.normalize_address" + ], + "flow_tracking_data": null, + "hints": [ + { + "location": { + "end_col": 57, + "end_line": 24, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/starknet/common/storage.cairo" + }, + "start_col": 9, + "start_line": 24 + }, + "n_prefix_newlines": 0 + } + ], + "inst": { + "end_col": 11, + "end_line": 25, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/starknet/common/storage.cairo" + }, + "start_col": 9, + "start_line": 25 + } + }, + "228": { + "accessible_scopes": [ + "starkware.starknet.common.storage", + "starkware.starknet.common.storage.normalize_address" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 21, + "end_line": 30, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/starknet/common/storage.cairo" + }, + "start_col": 13, + "start_line": 30 + } + }, + "230": { + "accessible_scopes": [ + "starkware.starknet.common.storage", + "starkware.starknet.common.storage.normalize_address" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 42, + "end_line": 32, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/starknet/common/storage.cairo" + }, + "start_col": 28, + "start_line": 32 + } + }, + "232": { + "accessible_scopes": [ + "starkware.starknet.common.storage", + "starkware.starknet.common.storage.normalize_address" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 39, + "end_line": 12, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/starknet/common/storage.cairo" + }, + "parent_location": [ + { + "end_col": 36, + "end_line": 89, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/math.cairo" + }, + "parent_location": [ + { + "end_col": 50, + "end_line": 32, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/starknet/common/storage.cairo" + }, + "start_col": 13, + "start_line": 32 + }, + "While trying to retrieve the implicit argument 'range_check_ptr' in:" + ], + "start_col": 21, + "start_line": 89 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 24, + "start_line": 12 + } + }, + "233": { + "accessible_scopes": [ + "starkware.starknet.common.storage", + "starkware.starknet.common.storage.normalize_address" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 49, + "end_line": 32, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/starknet/common/storage.cairo" + }, + "start_col": 28, + "start_line": 32 + } + }, + "234": { + "accessible_scopes": [ + "starkware.starknet.common.storage", + "starkware.starknet.common.storage.normalize_address" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 50, + "end_line": 32, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/starknet/common/storage.cairo" + }, + "start_col": 13, + "start_line": 32 + } + }, + "236": { + "accessible_scopes": [ + "starkware.starknet.common.storage", + "starkware.starknet.common.storage.normalize_address" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 11, + "end_line": 25, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/starknet/common/storage.cairo" + }, + "start_col": 9, + "start_line": 25 + } + }, + "238": { + "accessible_scopes": [ + "starkware.starknet.common.storage", + "starkware.starknet.common.storage.normalize_address" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 21, + "end_line": 26, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/starknet/common/storage.cairo" + }, + "start_col": 13, + "start_line": 26 + } + }, + "240": { + "accessible_scopes": [ + "starkware.starknet.common.storage", + "starkware.starknet.common.storage.normalize_address" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 39, + "end_line": 12, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/starknet/common/storage.cairo" + }, + "parent_location": [ + { + "end_col": 36, + "end_line": 89, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/math.cairo" + }, + "parent_location": [ + { + "end_col": 33, + "end_line": 28, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/starknet/common/storage.cairo" + }, + "start_col": 13, + "start_line": 28 + }, + "While trying to retrieve the implicit argument 'range_check_ptr' in:" + ], + "start_col": 21, + "start_line": 89 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 24, + "start_line": 12 + } + }, + "241": { + "accessible_scopes": [ + "starkware.starknet.common.storage", + "starkware.starknet.common.storage.normalize_address" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 51, + "end_line": 12, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/starknet/common/storage.cairo" + }, + "parent_location": [ + { + "end_col": 32, + "end_line": 28, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/starknet/common/storage.cairo" + }, + "start_col": 28, + "start_line": 28 + }, + "While expanding the reference 'addr' in:" + ], + "start_col": 41, + "start_line": 12 + } + }, + "242": { + "accessible_scopes": [ + "starkware.starknet.common.storage", + "starkware.starknet.common.storage.normalize_address" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 33, + "end_line": 28, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/starknet/common/storage.cairo" + }, + "start_col": 13, + "start_line": 28 + } + }, + "244": { + "accessible_scopes": [ + "starkware.starknet.common.storage", + "starkware.starknet.common.storage.normalize_address" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 51, + "end_line": 12, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/starknet/common/storage.cairo" + }, + "parent_location": [ + { + "end_col": 25, + "end_line": 34, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/starknet/common/storage.cairo" + }, + "start_col": 21, + "start_line": 34 + }, + "While expanding the reference 'addr' in:" + ], + "start_col": 41, + "start_line": 12 + } + }, + "245": { + "accessible_scopes": [ + "starkware.starknet.common.storage", + "starkware.starknet.common.storage.normalize_address" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 27, + "end_line": 34, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/starknet/common/storage.cairo" + }, + "start_col": 9, + "start_line": 34 + } + }, + "246": { + "accessible_scopes": [ + "openzeppelin.access.ownable.library", + "openzeppelin.access.ownable.library.OwnershipTransferred", + "openzeppelin.access.ownable.library.OwnershipTransferred.emit" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 14, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/event/OwnershipTransferred/8220fde17ca5479f12ae71a8036f4d354fe722f2c036da610b53511924e4ee84.cairo" + }, + "parent_location": [ + { + "end_col": 26, + "end_line": 15, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/access/ownable/library.cairo" + }, + "start_col": 6, + "start_line": 15 + }, + "While handling event:" + ], + "start_col": 1, + "start_line": 1 + } + }, + "248": { + "accessible_scopes": [ + "openzeppelin.access.ownable.library", + "openzeppelin.access.ownable.library.OwnershipTransferred", + "openzeppelin.access.ownable.library.OwnershipTransferred.emit" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 40, + "end_line": 2, + "input_file": { + "filename": "autogen/starknet/event/OwnershipTransferred/8220fde17ca5479f12ae71a8036f4d354fe722f2c036da610b53511924e4ee84.cairo" + }, + "parent_location": [ + { + "end_col": 26, + "end_line": 15, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/access/ownable/library.cairo" + }, + "start_col": 6, + "start_line": 15 + }, + "While handling event:" + ], + "start_col": 33, + "start_line": 2 + } + }, + "250": { + "accessible_scopes": [ + "openzeppelin.access.ownable.library", + "openzeppelin.access.ownable.library.OwnershipTransferred", + "openzeppelin.access.ownable.library.OwnershipTransferred.emit" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 29, + "end_line": 2, + "input_file": { + "filename": "autogen/starknet/event/OwnershipTransferred/8220fde17ca5479f12ae71a8036f4d354fe722f2c036da610b53511924e4ee84.cairo" + }, + "parent_location": [ + { + "end_col": 26, + "end_line": 15, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/access/ownable/library.cairo" + }, + "start_col": 6, + "start_line": 15 + }, + "While handling event:" + ], + "start_col": 6, + "start_line": 2 + } + }, + "251": { + "accessible_scopes": [ + "openzeppelin.access.ownable.library", + "openzeppelin.access.ownable.library.OwnershipTransferred", + "openzeppelin.access.ownable.library.OwnershipTransferred.emit" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 31, + "end_line": 3, + "input_file": { + "filename": "autogen/starknet/event/OwnershipTransferred/8220fde17ca5479f12ae71a8036f4d354fe722f2c036da610b53511924e4ee84.cairo" + }, + "parent_location": [ + { + "end_col": 26, + "end_line": 15, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/access/ownable/library.cairo" + }, + "start_col": 6, + "start_line": 15 + }, + "While handling event:" + ], + "start_col": 23, + "start_line": 3 + } + }, + "253": { + "accessible_scopes": [ + "openzeppelin.access.ownable.library", + "openzeppelin.access.ownable.library.OwnershipTransferred", + "openzeppelin.access.ownable.library.OwnershipTransferred.emit" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 32, + "end_line": 3, + "input_file": { + "filename": "autogen/starknet/event/OwnershipTransferred/8220fde17ca5479f12ae71a8036f4d354fe722f2c036da610b53511924e4ee84.cairo" + }, + "parent_location": [ + { + "end_col": 26, + "end_line": 15, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/access/ownable/library.cairo" + }, + "start_col": 6, + "start_line": 15 + }, + "While handling event:" + ], + "start_col": 1, + "start_line": 3 + } + }, + "254": { + "accessible_scopes": [ + "openzeppelin.access.ownable.library", + "openzeppelin.access.ownable.library.OwnershipTransferred", + "openzeppelin.access.ownable.library.OwnershipTransferred.emit" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 40, + "end_line": 4, + "input_file": { + "filename": "autogen/starknet/event/OwnershipTransferred/8220fde17ca5479f12ae71a8036f4d354fe722f2c036da610b53511924e4ee84.cairo" + }, + "parent_location": [ + { + "end_col": 26, + "end_line": 15, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/access/ownable/library.cairo" + }, + "start_col": 6, + "start_line": 15 + }, + "While handling event:" + ], + "start_col": 33, + "start_line": 4 + } + }, + "256": { + "accessible_scopes": [ + "openzeppelin.access.ownable.library", + "openzeppelin.access.ownable.library.OwnershipTransferred", + "openzeppelin.access.ownable.library.OwnershipTransferred.emit" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 29, + "end_line": 4, + "input_file": { + "filename": "autogen/starknet/event/OwnershipTransferred/8220fde17ca5479f12ae71a8036f4d354fe722f2c036da610b53511924e4ee84.cairo" + }, + "parent_location": [ + { + "end_col": 26, + "end_line": 15, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/access/ownable/library.cairo" + }, + "start_col": 6, + "start_line": 15 + }, + "While handling event:" + ], + "start_col": 6, + "start_line": 4 + } + }, + "257": { + "accessible_scopes": [ + "openzeppelin.access.ownable.library", + "openzeppelin.access.ownable.library.OwnershipTransferred", + "openzeppelin.access.ownable.library.OwnershipTransferred.emit" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 41, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/arg_processor/e2129a0023ce5f9e4c3de1d6fb100b2688dccff4a2ed2082db4a311f35c53e21.cairo" + }, + "parent_location": [ + { + "end_col": 40, + "end_line": 15, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/access/ownable/library.cairo" + }, + "start_col": 27, + "start_line": 15 + }, + "While handling calldata argument 'previousOwner'" + ], + "start_col": 1, + "start_line": 1 + } + }, + "258": { + "accessible_scopes": [ + "openzeppelin.access.ownable.library", + "openzeppelin.access.ownable.library.OwnershipTransferred", + "openzeppelin.access.ownable.library.OwnershipTransferred.emit" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 36, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/arg_processor/445d818b0524d35ae3e73b7abec41731d1445f0ce6866ec5a3a8a871521799a0.cairo" + }, + "parent_location": [ + { + "end_col": 56, + "end_line": 15, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/access/ownable/library.cairo" + }, + "start_col": 48, + "start_line": 15 + }, + "While handling calldata argument 'newOwner'" + ], + "start_col": 1, + "start_line": 1 + } + }, + "259": { + "accessible_scopes": [ + "openzeppelin.access.ownable.library", + "openzeppelin.access.ownable.library.OwnershipTransferred", + "openzeppelin.access.ownable.library.OwnershipTransferred.emit" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 40, + "end_line": 2, + "input_file": { + "filename": "autogen/starknet/arg_processor/445d818b0524d35ae3e73b7abec41731d1445f0ce6866ec5a3a8a871521799a0.cairo" + }, + "parent_location": [ + { + "end_col": 56, + "end_line": 15, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/access/ownable/library.cairo" + }, + "parent_location": [ + { + "end_col": 64, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/event/OwnershipTransferred/6150feec30bd48bfd0f446ed8c155a6d911a2c3fb3ec7a980733900416819259.cairo" + }, + "parent_location": [ + { + "end_col": 26, + "end_line": 15, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/access/ownable/library.cairo" + }, + "start_col": 6, + "start_line": 15 + }, + "While handling event:" + ], + "start_col": 50, + "start_line": 1 + }, + "While expanding the reference '__calldata_ptr' in:" + ], + "start_col": 48, + "start_line": 15 + }, + "While handling calldata argument 'newOwner'" + ], + "start_col": 22, + "start_line": 2 + } + }, + "261": { + "accessible_scopes": [ + "openzeppelin.access.ownable.library", + "openzeppelin.access.ownable.library.OwnershipTransferred", + "openzeppelin.access.ownable.library.OwnershipTransferred.emit" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 29, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/event/OwnershipTransferred/a7a8ae41be29ac9f4f6c3b7837c448d787ca051dd1ade98f409e54d33d112504.cairo" + }, + "parent_location": [ + { + "end_col": 26, + "end_line": 15, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/access/ownable/library.cairo" + }, + "parent_location": [ + { + "end_col": 35, + "end_line": 390, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/starknet/common/syscalls.cairo" + }, + "parent_location": [ + { + "end_col": 95, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/event/OwnershipTransferred/6150feec30bd48bfd0f446ed8c155a6d911a2c3fb3ec7a980733900416819259.cairo" + }, + "parent_location": [ + { + "end_col": 26, + "end_line": 15, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/access/ownable/library.cairo" + }, + "start_col": 6, + "start_line": 15 + }, + "While handling event:" + ], + "start_col": 1, + "start_line": 1 + }, + "While trying to retrieve the implicit argument 'syscall_ptr' in:" + ], + "start_col": 17, + "start_line": 390 + }, + "While expanding the reference 'syscall_ptr' in:" + ], + "start_col": 6, + "start_line": 15 + }, + "While handling event:" + ], + "start_col": 11, + "start_line": 1 + } + }, + "262": { + "accessible_scopes": [ + "openzeppelin.access.ownable.library", + "openzeppelin.access.ownable.library.OwnershipTransferred", + "openzeppelin.access.ownable.library.OwnershipTransferred.emit" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 22, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/event/OwnershipTransferred/6150feec30bd48bfd0f446ed8c155a6d911a2c3fb3ec7a980733900416819259.cairo" + }, + "parent_location": [ + { + "end_col": 26, + "end_line": 15, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/access/ownable/library.cairo" + }, + "start_col": 6, + "start_line": 15 + }, + "While handling event:" + ], + "start_col": 21, + "start_line": 1 + } + }, + "264": { + "accessible_scopes": [ + "openzeppelin.access.ownable.library", + "openzeppelin.access.ownable.library.OwnershipTransferred", + "openzeppelin.access.ownable.library.OwnershipTransferred.emit" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 22, + "end_line": 2, + "input_file": { + "filename": "autogen/starknet/event/OwnershipTransferred/8220fde17ca5479f12ae71a8036f4d354fe722f2c036da610b53511924e4ee84.cairo" + }, + "parent_location": [ + { + "end_col": 26, + "end_line": 15, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/access/ownable/library.cairo" + }, + "parent_location": [ + { + "end_col": 39, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/event/OwnershipTransferred/6150feec30bd48bfd0f446ed8c155a6d911a2c3fb3ec7a980733900416819259.cairo" + }, + "parent_location": [ + { + "end_col": 26, + "end_line": 15, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/access/ownable/library.cairo" + }, + "start_col": 6, + "start_line": 15 + }, + "While handling event:" + ], + "start_col": 29, + "start_line": 1 + }, + "While expanding the reference '__keys_ptr' in:" + ], + "start_col": 6, + "start_line": 15 + }, + "While handling event:" + ], + "start_col": 12, + "start_line": 2 + } + }, + "265": { + "accessible_scopes": [ + "openzeppelin.access.ownable.library", + "openzeppelin.access.ownable.library.OwnershipTransferred", + "openzeppelin.access.ownable.library.OwnershipTransferred.emit" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 77, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/event/OwnershipTransferred/6150feec30bd48bfd0f446ed8c155a6d911a2c3fb3ec7a980733900416819259.cairo" + }, + "parent_location": [ + { + "end_col": 26, + "end_line": 15, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/access/ownable/library.cairo" + }, + "start_col": 6, + "start_line": 15 + }, + "While handling event:" + ], + "start_col": 50, + "start_line": 1 + } + }, + "266": { + "accessible_scopes": [ + "openzeppelin.access.ownable.library", + "openzeppelin.access.ownable.library.OwnershipTransferred", + "openzeppelin.access.ownable.library.OwnershipTransferred.emit" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 22, + "end_line": 4, + "input_file": { + "filename": "autogen/starknet/event/OwnershipTransferred/8220fde17ca5479f12ae71a8036f4d354fe722f2c036da610b53511924e4ee84.cairo" + }, + "parent_location": [ + { + "end_col": 26, + "end_line": 15, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/access/ownable/library.cairo" + }, + "parent_location": [ + { + "end_col": 94, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/event/OwnershipTransferred/6150feec30bd48bfd0f446ed8c155a6d911a2c3fb3ec7a980733900416819259.cairo" + }, + "parent_location": [ + { + "end_col": 26, + "end_line": 15, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/access/ownable/library.cairo" + }, + "start_col": 6, + "start_line": 15 + }, + "While handling event:" + ], + "start_col": 84, + "start_line": 1 + }, + "While expanding the reference '__data_ptr' in:" + ], + "start_col": 6, + "start_line": 15 + }, + "While handling event:" + ], + "start_col": 12, + "start_line": 4 + } + }, + "267": { + "accessible_scopes": [ + "openzeppelin.access.ownable.library", + "openzeppelin.access.ownable.library.OwnershipTransferred", + "openzeppelin.access.ownable.library.OwnershipTransferred.emit" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 95, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/event/OwnershipTransferred/6150feec30bd48bfd0f446ed8c155a6d911a2c3fb3ec7a980733900416819259.cairo" + }, + "parent_location": [ + { + "end_col": 26, + "end_line": 15, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/access/ownable/library.cairo" + }, + "start_col": 6, + "start_line": 15 + }, + "While handling event:" + ], + "start_col": 1, + "start_line": 1 + } + }, + "269": { + "accessible_scopes": [ + "openzeppelin.access.ownable.library", + "openzeppelin.access.ownable.library.OwnershipTransferred", + "openzeppelin.access.ownable.library.OwnershipTransferred.emit" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 46, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/event/OwnershipTransferred/a7a8ae41be29ac9f4f6c3b7837c448d787ca051dd1ade98f409e54d33d112504.cairo" + }, + "parent_location": [ + { + "end_col": 26, + "end_line": 15, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/access/ownable/library.cairo" + }, + "parent_location": [ + { + "end_col": 46, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/event/OwnershipTransferred/a7a8ae41be29ac9f4f6c3b7837c448d787ca051dd1ade98f409e54d33d112504.cairo" + }, + "parent_location": [ + { + "end_col": 26, + "end_line": 15, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/access/ownable/library.cairo" + }, + "parent_location": [ + { + "end_col": 11, + "end_line": 2, + "input_file": { + "filename": "autogen/starknet/event/OwnershipTransferred/6150feec30bd48bfd0f446ed8c155a6d911a2c3fb3ec7a980733900416819259.cairo" + }, + "parent_location": [ + { + "end_col": 26, + "end_line": 15, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/access/ownable/library.cairo" + }, + "start_col": 6, + "start_line": 15 + }, + "While handling event:" + ], + "start_col": 1, + "start_line": 2 + }, + "While trying to retrieve the implicit argument 'range_check_ptr' in:" + ], + "start_col": 6, + "start_line": 15 + }, + "While handling event:" + ], + "start_col": 31, + "start_line": 1 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 6, + "start_line": 15 + }, + "While handling event:" + ], + "start_col": 31, + "start_line": 1 + } + }, + "270": { + "accessible_scopes": [ + "openzeppelin.access.ownable.library", + "openzeppelin.access.ownable.library.OwnershipTransferred", + "openzeppelin.access.ownable.library.OwnershipTransferred.emit" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 11, + "end_line": 2, + "input_file": { + "filename": "autogen/starknet/event/OwnershipTransferred/6150feec30bd48bfd0f446ed8c155a6d911a2c3fb3ec7a980733900416819259.cairo" + }, + "parent_location": [ + { + "end_col": 26, + "end_line": 15, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/access/ownable/library.cairo" + }, + "start_col": 6, + "start_line": 15 + }, + "While handling event:" + ], + "start_col": 1, + "start_line": 2 + } + }, + "271": { + "accessible_scopes": [ + "openzeppelin.access.ownable.library", + "openzeppelin.access.ownable.library.Ownable_owner", + "openzeppelin.access.ownable.library.Ownable_owner.addr" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 41, + "end_line": 7, + "input_file": { + "filename": "autogen/starknet/storage_var/Ownable_owner/impl.cairo" + }, + "parent_location": [ + { + "end_col": 41, + "end_line": 7, + "input_file": { + "filename": "autogen/starknet/storage_var/Ownable_owner/decl.cairo" + }, + "parent_location": [ + { + "end_col": 26, + "end_line": 9, + "input_file": { + "filename": "autogen/starknet/storage_var/Ownable_owner/impl.cairo" + }, + "start_col": 9, + "start_line": 9 + }, + "While trying to retrieve the implicit argument 'pedersen_ptr' in:" + ], + "start_col": 15, + "start_line": 7 + }, + "While expanding the reference 'pedersen_ptr' in:" + ], + "start_col": 15, + "start_line": 7 + } + }, + "272": { + "accessible_scopes": [ + "openzeppelin.access.ownable.library", + "openzeppelin.access.ownable.library.Ownable_owner", + "openzeppelin.access.ownable.library.Ownable_owner.addr" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 58, + "end_line": 7, + "input_file": { + "filename": "autogen/starknet/storage_var/Ownable_owner/impl.cairo" + }, + "parent_location": [ + { + "end_col": 58, + "end_line": 7, + "input_file": { + "filename": "autogen/starknet/storage_var/Ownable_owner/decl.cairo" + }, + "parent_location": [ + { + "end_col": 26, + "end_line": 9, + "input_file": { + "filename": "autogen/starknet/storage_var/Ownable_owner/impl.cairo" + }, + "start_col": 9, + "start_line": 9 + }, + "While trying to retrieve the implicit argument 'range_check_ptr' in:" + ], + "start_col": 43, + "start_line": 7 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 43, + "start_line": 7 + } + }, + "273": { + "accessible_scopes": [ + "openzeppelin.access.ownable.library", + "openzeppelin.access.ownable.library.Ownable_owner", + "openzeppelin.access.ownable.library.Ownable_owner.addr" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 95, + "end_line": 8, + "input_file": { + "filename": "autogen/starknet/storage_var/Ownable_owner/impl.cairo" + }, + "parent_location": [ + { + "end_col": 24, + "end_line": 9, + "input_file": { + "filename": "autogen/starknet/storage_var/Ownable_owner/impl.cairo" + }, + "start_col": 21, + "start_line": 9 + }, + "While expanding the reference 'res' in:" + ], + "start_col": 19, + "start_line": 8 + } + }, + "275": { + "accessible_scopes": [ + "openzeppelin.access.ownable.library", + "openzeppelin.access.ownable.library.Ownable_owner", + "openzeppelin.access.ownable.library.Ownable_owner.addr" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 26, + "end_line": 9, + "input_file": { + "filename": "autogen/starknet/storage_var/Ownable_owner/impl.cairo" + }, + "start_col": 9, + "start_line": 9 + } + }, + "276": { + "accessible_scopes": [ + "openzeppelin.access.ownable.library", + "openzeppelin.access.ownable.library.Ownable_owner", + "openzeppelin.access.ownable.library.Ownable_owner.read" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 61, + "end_line": 12, + "input_file": { + "filename": "autogen/starknet/storage_var/Ownable_owner/impl.cairo" + }, + "parent_location": [ + { + "end_col": 41, + "end_line": 7, + "input_file": { + "filename": "autogen/starknet/storage_var/Ownable_owner/decl.cairo" + }, + "parent_location": [ + { + "end_col": 36, + "end_line": 13, + "input_file": { + "filename": "autogen/starknet/storage_var/Ownable_owner/impl.cairo" + }, + "start_col": 30, + "start_line": 13 + }, + "While trying to retrieve the implicit argument 'pedersen_ptr' in:" + ], + "start_col": 15, + "start_line": 7 + }, + "While expanding the reference 'pedersen_ptr' in:" + ], + "start_col": 35, + "start_line": 12 + } + }, + "277": { + "accessible_scopes": [ + "openzeppelin.access.ownable.library", + "openzeppelin.access.ownable.library.Ownable_owner", + "openzeppelin.access.ownable.library.Ownable_owner.read" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 78, + "end_line": 12, + "input_file": { + "filename": "autogen/starknet/storage_var/Ownable_owner/impl.cairo" + }, + "parent_location": [ + { + "end_col": 58, + "end_line": 7, + "input_file": { + "filename": "autogen/starknet/storage_var/Ownable_owner/decl.cairo" + }, + "parent_location": [ + { + "end_col": 36, + "end_line": 13, + "input_file": { + "filename": "autogen/starknet/storage_var/Ownable_owner/impl.cairo" + }, + "start_col": 30, + "start_line": 13 + }, + "While trying to retrieve the implicit argument 'range_check_ptr' in:" + ], + "start_col": 43, + "start_line": 7 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 63, + "start_line": 12 + } + }, + "278": { + "accessible_scopes": [ + "openzeppelin.access.ownable.library", + "openzeppelin.access.ownable.library.Ownable_owner", + "openzeppelin.access.ownable.library.Ownable_owner.read" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 36, + "end_line": 13, + "input_file": { + "filename": "autogen/starknet/storage_var/Ownable_owner/impl.cairo" + }, + "start_col": 30, + "start_line": 13 + } + }, + "280": { + "accessible_scopes": [ + "openzeppelin.access.ownable.library", + "openzeppelin.access.ownable.library.Ownable_owner", + "openzeppelin.access.ownable.library.Ownable_owner.read" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 33, + "end_line": 12, + "input_file": { + "filename": "autogen/starknet/storage_var/Ownable_owner/impl.cairo" + }, + "parent_location": [ + { + "end_col": 37, + "end_line": 352, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/starknet/common/syscalls.cairo" + }, + "parent_location": [ + { + "end_col": 75, + "end_line": 14, + "input_file": { + "filename": "autogen/starknet/storage_var/Ownable_owner/impl.cairo" + }, + "start_col": 37, + "start_line": 14 + }, + "While trying to retrieve the implicit argument 'syscall_ptr' in:" + ], + "start_col": 19, + "start_line": 352 + }, + "While expanding the reference 'syscall_ptr' in:" + ], + "start_col": 15, + "start_line": 12 + } + }, + "281": { + "accessible_scopes": [ + "openzeppelin.access.ownable.library", + "openzeppelin.access.ownable.library.Ownable_owner", + "openzeppelin.access.ownable.library.Ownable_owner.read" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 26, + "end_line": 13, + "input_file": { + "filename": "autogen/starknet/storage_var/Ownable_owner/impl.cairo" + }, + "parent_location": [ + { + "end_col": 70, + "end_line": 14, + "input_file": { + "filename": "autogen/starknet/storage_var/Ownable_owner/impl.cairo" + }, + "start_col": 58, + "start_line": 14 + }, + "While expanding the reference 'storage_addr' in:" + ], + "start_col": 14, + "start_line": 13 + } + }, + "282": { + "accessible_scopes": [ + "openzeppelin.access.ownable.library", + "openzeppelin.access.ownable.library.Ownable_owner", + "openzeppelin.access.ownable.library.Ownable_owner.read" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 75, + "end_line": 14, + "input_file": { + "filename": "autogen/starknet/storage_var/Ownable_owner/impl.cairo" + }, + "start_col": 37, + "start_line": 14 + } + }, + "284": { + "accessible_scopes": [ + "openzeppelin.access.ownable.library", + "openzeppelin.access.ownable.library.Ownable_owner", + "openzeppelin.access.ownable.library.Ownable_owner.read" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 37, + "end_line": 352, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/starknet/common/syscalls.cairo" + }, + "parent_location": [ + { + "end_col": 75, + "end_line": 14, + "input_file": { + "filename": "autogen/starknet/storage_var/Ownable_owner/impl.cairo" + }, + "parent_location": [ + { + "end_col": 42, + "end_line": 16, + "input_file": { + "filename": "autogen/starknet/storage_var/Ownable_owner/impl.cairo" + }, + "start_col": 31, + "start_line": 16 + }, + "While expanding the reference 'syscall_ptr' in:" + ], + "start_col": 37, + "start_line": 14 + }, + "While trying to update the implicit return value 'syscall_ptr' in:" + ], + "start_col": 19, + "start_line": 352 + } + }, + "285": { + "accessible_scopes": [ + "openzeppelin.access.ownable.library", + "openzeppelin.access.ownable.library.Ownable_owner", + "openzeppelin.access.ownable.library.Ownable_owner.read" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 41, + "end_line": 7, + "input_file": { + "filename": "autogen/starknet/storage_var/Ownable_owner/decl.cairo" + }, + "parent_location": [ + { + "end_col": 36, + "end_line": 13, + "input_file": { + "filename": "autogen/starknet/storage_var/Ownable_owner/impl.cairo" + }, + "parent_location": [ + { + "end_col": 44, + "end_line": 17, + "input_file": { + "filename": "autogen/starknet/storage_var/Ownable_owner/impl.cairo" + }, + "start_col": 32, + "start_line": 17 + }, + "While expanding the reference 'pedersen_ptr' in:" + ], + "start_col": 30, + "start_line": 13 + }, + "While trying to update the implicit return value 'pedersen_ptr' in:" + ], + "start_col": 15, + "start_line": 7 + } + }, + "286": { + "accessible_scopes": [ + "openzeppelin.access.ownable.library", + "openzeppelin.access.ownable.library.Ownable_owner", + "openzeppelin.access.ownable.library.Ownable_owner.read" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 58, + "end_line": 7, + "input_file": { + "filename": "autogen/starknet/storage_var/Ownable_owner/decl.cairo" + }, + "parent_location": [ + { + "end_col": 36, + "end_line": 13, + "input_file": { + "filename": "autogen/starknet/storage_var/Ownable_owner/impl.cairo" + }, + "parent_location": [ + { + "end_col": 50, + "end_line": 18, + "input_file": { + "filename": "autogen/starknet/storage_var/Ownable_owner/impl.cairo" + }, + "start_col": 35, + "start_line": 18 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 30, + "start_line": 13 + }, + "While trying to update the implicit return value 'range_check_ptr' in:" + ], + "start_col": 43, + "start_line": 7 + } + }, + "287": { + "accessible_scopes": [ + "openzeppelin.access.ownable.library", + "openzeppelin.access.ownable.library.Ownable_owner", + "openzeppelin.access.ownable.library.Ownable_owner.read" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 33, + "end_line": 14, + "input_file": { + "filename": "autogen/starknet/storage_var/Ownable_owner/impl.cairo" + }, + "parent_location": [ + { + "end_col": 64, + "end_line": 19, + "input_file": { + "filename": "autogen/starknet/storage_var/Ownable_owner/impl.cairo" + }, + "start_col": 45, + "start_line": 19 + }, + "While expanding the reference '__storage_var_temp0' in:" + ], + "start_col": 14, + "start_line": 14 + } + }, + "288": { + "accessible_scopes": [ + "openzeppelin.access.ownable.library", + "openzeppelin.access.ownable.library.Ownable_owner", + "openzeppelin.access.ownable.library.Ownable_owner.read" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 55, + "end_line": 20, + "input_file": { + "filename": "autogen/starknet/storage_var/Ownable_owner/impl.cairo" + }, + "start_col": 9, + "start_line": 20 + } + }, + "289": { + "accessible_scopes": [ + "openzeppelin.access.ownable.library", + "openzeppelin.access.ownable.library.Ownable_owner", + "openzeppelin.access.ownable.library.Ownable_owner.write" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 62, + "end_line": 23, + "input_file": { + "filename": "autogen/starknet/storage_var/Ownable_owner/impl.cairo" + }, + "parent_location": [ + { + "end_col": 41, + "end_line": 7, + "input_file": { + "filename": "autogen/starknet/storage_var/Ownable_owner/decl.cairo" + }, + "parent_location": [ + { + "end_col": 36, + "end_line": 24, + "input_file": { + "filename": "autogen/starknet/storage_var/Ownable_owner/impl.cairo" + }, + "start_col": 30, + "start_line": 24 + }, + "While trying to retrieve the implicit argument 'pedersen_ptr' in:" + ], + "start_col": 15, + "start_line": 7 + }, + "While expanding the reference 'pedersen_ptr' in:" + ], + "start_col": 36, + "start_line": 23 + } + }, + "290": { + "accessible_scopes": [ + "openzeppelin.access.ownable.library", + "openzeppelin.access.ownable.library.Ownable_owner", + "openzeppelin.access.ownable.library.Ownable_owner.write" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 79, + "end_line": 23, + "input_file": { + "filename": "autogen/starknet/storage_var/Ownable_owner/impl.cairo" + }, + "parent_location": [ + { + "end_col": 58, + "end_line": 7, + "input_file": { + "filename": "autogen/starknet/storage_var/Ownable_owner/decl.cairo" + }, + "parent_location": [ + { + "end_col": 36, + "end_line": 24, + "input_file": { + "filename": "autogen/starknet/storage_var/Ownable_owner/impl.cairo" + }, + "start_col": 30, + "start_line": 24 + }, + "While trying to retrieve the implicit argument 'range_check_ptr' in:" + ], + "start_col": 43, + "start_line": 7 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 64, + "start_line": 23 + } + }, + "291": { + "accessible_scopes": [ + "openzeppelin.access.ownable.library", + "openzeppelin.access.ownable.library.Ownable_owner", + "openzeppelin.access.ownable.library.Ownable_owner.write" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 36, + "end_line": 24, + "input_file": { + "filename": "autogen/starknet/storage_var/Ownable_owner/impl.cairo" + }, + "start_col": 30, + "start_line": 24 + } + }, + "293": { + "accessible_scopes": [ + "openzeppelin.access.ownable.library", + "openzeppelin.access.ownable.library.Ownable_owner", + "openzeppelin.access.ownable.library.Ownable_owner.write" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 34, + "end_line": 23, + "input_file": { + "filename": "autogen/starknet/storage_var/Ownable_owner/impl.cairo" + }, + "parent_location": [ + { + "end_col": 38, + "end_line": 370, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/starknet/common/syscalls.cairo" + }, + "parent_location": [ + { + "end_col": 80, + "end_line": 25, + "input_file": { + "filename": "autogen/starknet/storage_var/Ownable_owner/impl.cairo" + }, + "start_col": 9, + "start_line": 25 + }, + "While trying to retrieve the implicit argument 'syscall_ptr' in:" + ], + "start_col": 20, + "start_line": 370 + }, + "While expanding the reference 'syscall_ptr' in:" + ], + "start_col": 16, + "start_line": 23 + } + }, + "294": { + "accessible_scopes": [ + "openzeppelin.access.ownable.library", + "openzeppelin.access.ownable.library.Ownable_owner", + "openzeppelin.access.ownable.library.Ownable_owner.write" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 26, + "end_line": 24, + "input_file": { + "filename": "autogen/starknet/storage_var/Ownable_owner/impl.cairo" + }, + "parent_location": [ + { + "end_col": 43, + "end_line": 25, + "input_file": { + "filename": "autogen/starknet/storage_var/Ownable_owner/impl.cairo" + }, + "start_col": 31, + "start_line": 25 + }, + "While expanding the reference 'storage_addr' in:" + ], + "start_col": 14, + "start_line": 24 + } + }, + "295": { + "accessible_scopes": [ + "openzeppelin.access.ownable.library", + "openzeppelin.access.ownable.library.Ownable_owner", + "openzeppelin.access.ownable.library.Ownable_owner.write" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 79, + "end_line": 25, + "input_file": { + "filename": "autogen/starknet/storage_var/Ownable_owner/impl.cairo" + }, + "start_col": 55, + "start_line": 25 + } + }, + "296": { + "accessible_scopes": [ + "openzeppelin.access.ownable.library", + "openzeppelin.access.ownable.library.Ownable_owner", + "openzeppelin.access.ownable.library.Ownable_owner.write" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 80, + "end_line": 25, + "input_file": { + "filename": "autogen/starknet/storage_var/Ownable_owner/impl.cairo" + }, + "start_col": 9, + "start_line": 25 + } + }, + "298": { + "accessible_scopes": [ + "openzeppelin.access.ownable.library", + "openzeppelin.access.ownable.library.Ownable_owner", + "openzeppelin.access.ownable.library.Ownable_owner.write" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 41, + "end_line": 7, + "input_file": { + "filename": "autogen/starknet/storage_var/Ownable_owner/decl.cairo" + }, + "parent_location": [ + { + "end_col": 36, + "end_line": 24, + "input_file": { + "filename": "autogen/starknet/storage_var/Ownable_owner/impl.cairo" + }, + "parent_location": [ + { + "end_col": 62, + "end_line": 19, + "input_file": { + "filename": "autogen/starknet/storage_var/Ownable_owner/decl.cairo" + }, + "parent_location": [ + { + "end_col": 19, + "end_line": 26, + "input_file": { + "filename": "autogen/starknet/storage_var/Ownable_owner/impl.cairo" + }, + "start_col": 9, + "start_line": 26 + }, + "While trying to retrieve the implicit argument 'pedersen_ptr' in:" + ], + "start_col": 36, + "start_line": 19 + }, + "While expanding the reference 'pedersen_ptr' in:" + ], + "start_col": 30, + "start_line": 24 + }, + "While trying to update the implicit return value 'pedersen_ptr' in:" + ], + "start_col": 15, + "start_line": 7 + } + }, + "299": { + "accessible_scopes": [ + "openzeppelin.access.ownable.library", + "openzeppelin.access.ownable.library.Ownable_owner", + "openzeppelin.access.ownable.library.Ownable_owner.write" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 58, + "end_line": 7, + "input_file": { + "filename": "autogen/starknet/storage_var/Ownable_owner/decl.cairo" + }, + "parent_location": [ + { + "end_col": 36, + "end_line": 24, + "input_file": { + "filename": "autogen/starknet/storage_var/Ownable_owner/impl.cairo" + }, + "parent_location": [ + { + "end_col": 79, + "end_line": 19, + "input_file": { + "filename": "autogen/starknet/storage_var/Ownable_owner/decl.cairo" + }, + "parent_location": [ + { + "end_col": 19, + "end_line": 26, + "input_file": { + "filename": "autogen/starknet/storage_var/Ownable_owner/impl.cairo" + }, + "start_col": 9, + "start_line": 26 + }, + "While trying to retrieve the implicit argument 'range_check_ptr' in:" + ], + "start_col": 64, + "start_line": 19 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 30, + "start_line": 24 + }, + "While trying to update the implicit return value 'range_check_ptr' in:" + ], + "start_col": 43, + "start_line": 7 + } + }, + "300": { + "accessible_scopes": [ + "openzeppelin.access.ownable.library", + "openzeppelin.access.ownable.library.Ownable_owner", + "openzeppelin.access.ownable.library.Ownable_owner.write" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 19, + "end_line": 26, + "input_file": { + "filename": "autogen/starknet/storage_var/Ownable_owner/impl.cairo" + }, + "start_col": 9, + "start_line": 26 + } + }, + "301": { + "accessible_scopes": [ + "openzeppelin.access.ownable.library", + "openzeppelin.access.ownable.library.Ownable", + "openzeppelin.access.ownable.library.Ownable.initializer" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 40, + "end_line": 31, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/access/ownable/library.cairo" + }, + "parent_location": [ + { + "end_col": 48, + "end_line": 81, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/access/ownable/library.cairo" + }, + "parent_location": [ + { + "end_col": 35, + "end_line": 32, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/access/ownable/library.cairo" + }, + "start_col": 9, + "start_line": 32 + }, + "While trying to retrieve the implicit argument 'syscall_ptr' in:" + ], + "start_col": 30, + "start_line": 81 + }, + "While expanding the reference 'syscall_ptr' in:" + ], + "start_col": 22, + "start_line": 31 + } + }, + "302": { + "accessible_scopes": [ + "openzeppelin.access.ownable.library", + "openzeppelin.access.ownable.library.Ownable", + "openzeppelin.access.ownable.library.Ownable.initializer" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 68, + "end_line": 31, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/access/ownable/library.cairo" + }, + "parent_location": [ + { + "end_col": 76, + "end_line": 81, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/access/ownable/library.cairo" + }, + "parent_location": [ + { + "end_col": 35, + "end_line": 32, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/access/ownable/library.cairo" + }, + "start_col": 9, + "start_line": 32 + }, + "While trying to retrieve the implicit argument 'pedersen_ptr' in:" + ], + "start_col": 50, + "start_line": 81 + }, + "While expanding the reference 'pedersen_ptr' in:" + ], + "start_col": 42, + "start_line": 31 + } + }, + "303": { + "accessible_scopes": [ + "openzeppelin.access.ownable.library", + "openzeppelin.access.ownable.library.Ownable", + "openzeppelin.access.ownable.library.Ownable.initializer" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 85, + "end_line": 31, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/access/ownable/library.cairo" + }, + "parent_location": [ + { + "end_col": 93, + "end_line": 81, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/access/ownable/library.cairo" + }, + "parent_location": [ + { + "end_col": 35, + "end_line": 32, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/access/ownable/library.cairo" + }, + "start_col": 9, + "start_line": 32 + }, + "While trying to retrieve the implicit argument 'range_check_ptr' in:" + ], + "start_col": 78, + "start_line": 81 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 70, + "start_line": 31 + } + }, + "304": { + "accessible_scopes": [ + "openzeppelin.access.ownable.library", + "openzeppelin.access.ownable.library.Ownable", + "openzeppelin.access.ownable.library.Ownable.initializer" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 98, + "end_line": 31, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/access/ownable/library.cairo" + }, + "parent_location": [ + { + "end_col": 34, + "end_line": 32, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/access/ownable/library.cairo" + }, + "start_col": 29, + "start_line": 32 + }, + "While expanding the reference 'owner' in:" + ], + "start_col": 87, + "start_line": 31 + } + }, + "305": { + "accessible_scopes": [ + "openzeppelin.access.ownable.library", + "openzeppelin.access.ownable.library.Ownable", + "openzeppelin.access.ownable.library.Ownable.initializer" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 35, + "end_line": 32, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/access/ownable/library.cairo" + }, + "start_col": 9, + "start_line": 32 + } + }, + "307": { + "accessible_scopes": [ + "openzeppelin.access.ownable.library", + "openzeppelin.access.ownable.library.Ownable", + "openzeppelin.access.ownable.library.Ownable.initializer" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 19, + "end_line": 33, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/access/ownable/library.cairo" + }, + "start_col": 9, + "start_line": 33 + } + }, + "308": { + "accessible_scopes": [ + "openzeppelin.access.ownable.library", + "openzeppelin.access.ownable.library.Ownable", + "openzeppelin.access.ownable.library.Ownable.assert_only_owner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 46, + "end_line": 40, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/access/ownable/library.cairo" + }, + "parent_location": [ + { + "end_col": 34, + "end_line": 56, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/access/ownable/library.cairo" + }, + "parent_location": [ + { + "end_col": 38, + "end_line": 41, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/access/ownable/library.cairo" + }, + "start_col": 23, + "start_line": 41 + }, + "While trying to retrieve the implicit argument 'syscall_ptr' in:" + ], + "start_col": 16, + "start_line": 56 + }, + "While expanding the reference 'syscall_ptr' in:" + ], + "start_col": 28, + "start_line": 40 + } + }, + "309": { + "accessible_scopes": [ + "openzeppelin.access.ownable.library", + "openzeppelin.access.ownable.library.Ownable", + "openzeppelin.access.ownable.library.Ownable.assert_only_owner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 74, + "end_line": 40, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/access/ownable/library.cairo" + }, + "parent_location": [ + { + "end_col": 62, + "end_line": 56, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/access/ownable/library.cairo" + }, + "parent_location": [ + { + "end_col": 38, + "end_line": 41, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/access/ownable/library.cairo" + }, + "start_col": 23, + "start_line": 41 + }, + "While trying to retrieve the implicit argument 'pedersen_ptr' in:" + ], + "start_col": 36, + "start_line": 56 + }, + "While expanding the reference 'pedersen_ptr' in:" + ], + "start_col": 48, + "start_line": 40 + } + }, + "310": { + "accessible_scopes": [ + "openzeppelin.access.ownable.library", + "openzeppelin.access.ownable.library.Ownable", + "openzeppelin.access.ownable.library.Ownable.assert_only_owner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 91, + "end_line": 40, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/access/ownable/library.cairo" + }, + "parent_location": [ + { + "end_col": 79, + "end_line": 56, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/access/ownable/library.cairo" + }, + "parent_location": [ + { + "end_col": 38, + "end_line": 41, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/access/ownable/library.cairo" + }, + "start_col": 23, + "start_line": 41 + }, + "While trying to retrieve the implicit argument 'range_check_ptr' in:" + ], + "start_col": 64, + "start_line": 56 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 76, + "start_line": 40 + } + }, + "311": { + "accessible_scopes": [ + "openzeppelin.access.ownable.library", + "openzeppelin.access.ownable.library.Ownable", + "openzeppelin.access.ownable.library.Ownable.assert_only_owner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 38, + "end_line": 41, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/access/ownable/library.cairo" + }, + "start_col": 23, + "start_line": 41 + } + }, + "313": { + "accessible_scopes": [ + "openzeppelin.access.ownable.library", + "openzeppelin.access.ownable.library.Ownable", + "openzeppelin.access.ownable.library.Ownable.assert_only_owner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 34, + "end_line": 56, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/access/ownable/library.cairo" + }, + "parent_location": [ + { + "end_col": 38, + "end_line": 41, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/access/ownable/library.cairo" + }, + "parent_location": [ + { + "end_col": 43, + "end_line": 200, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/starknet/common/syscalls.cairo" + }, + "parent_location": [ + { + "end_col": 44, + "end_line": 42, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/access/ownable/library.cairo" + }, + "start_col": 24, + "start_line": 42 + }, + "While trying to retrieve the implicit argument 'syscall_ptr' in:" + ], + "start_col": 25, + "start_line": 200 + }, + "While expanding the reference 'syscall_ptr' in:" + ], + "start_col": 23, + "start_line": 41 + }, + "While trying to update the implicit return value 'syscall_ptr' in:" + ], + "start_col": 16, + "start_line": 56 + } + }, + "314": { + "accessible_scopes": [ + "openzeppelin.access.ownable.library", + "openzeppelin.access.ownable.library.Ownable", + "openzeppelin.access.ownable.library.Ownable.assert_only_owner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 44, + "end_line": 42, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/access/ownable/library.cairo" + }, + "start_col": 24, + "start_line": 42 + } + }, + "316": { + "accessible_scopes": [ + "openzeppelin.access.ownable.library", + "openzeppelin.access.ownable.library.Ownable", + "openzeppelin.access.ownable.library.Ownable.assert_only_owner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 36, + "end_line": 44, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/access/ownable/library.cairo" + }, + "start_col": 13, + "start_line": 44 + } + }, + "318": { + "accessible_scopes": [ + "openzeppelin.access.ownable.library", + "openzeppelin.access.ownable.library.Ownable", + "openzeppelin.access.ownable.library.Ownable.assert_only_owner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 35, + "end_line": 47, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/access/ownable/library.cairo" + }, + "start_col": 13, + "start_line": 47 + } + }, + "319": { + "accessible_scopes": [ + "openzeppelin.access.ownable.library", + "openzeppelin.access.ownable.library.Ownable", + "openzeppelin.access.ownable.library.Ownable.assert_only_owner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 43, + "end_line": 200, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/starknet/common/syscalls.cairo" + }, + "parent_location": [ + { + "end_col": 44, + "end_line": 42, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/access/ownable/library.cairo" + }, + "parent_location": [ + { + "end_col": 46, + "end_line": 40, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/access/ownable/library.cairo" + }, + "parent_location": [ + { + "end_col": 19, + "end_line": 49, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/access/ownable/library.cairo" + }, + "start_col": 9, + "start_line": 49 + }, + "While trying to retrieve the implicit argument 'syscall_ptr' in:" + ], + "start_col": 28, + "start_line": 40 + }, + "While expanding the reference 'syscall_ptr' in:" + ], + "start_col": 24, + "start_line": 42 + }, + "While trying to update the implicit return value 'syscall_ptr' in:" + ], + "start_col": 25, + "start_line": 200 + } + }, + "320": { + "accessible_scopes": [ + "openzeppelin.access.ownable.library", + "openzeppelin.access.ownable.library.Ownable", + "openzeppelin.access.ownable.library.Ownable.assert_only_owner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 62, + "end_line": 56, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/access/ownable/library.cairo" + }, + "parent_location": [ + { + "end_col": 38, + "end_line": 41, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/access/ownable/library.cairo" + }, + "parent_location": [ + { + "end_col": 74, + "end_line": 40, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/access/ownable/library.cairo" + }, + "parent_location": [ + { + "end_col": 19, + "end_line": 49, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/access/ownable/library.cairo" + }, + "start_col": 9, + "start_line": 49 + }, + "While trying to retrieve the implicit argument 'pedersen_ptr' in:" + ], + "start_col": 48, + "start_line": 40 + }, + "While expanding the reference 'pedersen_ptr' in:" + ], + "start_col": 23, + "start_line": 41 + }, + "While trying to update the implicit return value 'pedersen_ptr' in:" + ], + "start_col": 36, + "start_line": 56 + } + }, + "321": { + "accessible_scopes": [ + "openzeppelin.access.ownable.library", + "openzeppelin.access.ownable.library.Ownable", + "openzeppelin.access.ownable.library.Ownable.assert_only_owner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 79, + "end_line": 56, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/access/ownable/library.cairo" + }, + "parent_location": [ + { + "end_col": 38, + "end_line": 41, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/access/ownable/library.cairo" + }, + "parent_location": [ + { + "end_col": 91, + "end_line": 40, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/access/ownable/library.cairo" + }, + "parent_location": [ + { + "end_col": 19, + "end_line": 49, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/access/ownable/library.cairo" + }, + "start_col": 9, + "start_line": 49 + }, + "While trying to retrieve the implicit argument 'range_check_ptr' in:" + ], + "start_col": 76, + "start_line": 40 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 23, + "start_line": 41 + }, + "While trying to update the implicit return value 'range_check_ptr' in:" + ], + "start_col": 64, + "start_line": 56 + } + }, + "322": { + "accessible_scopes": [ + "openzeppelin.access.ownable.library", + "openzeppelin.access.ownable.library.Ownable", + "openzeppelin.access.ownable.library.Ownable.assert_only_owner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 19, + "end_line": 49, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/access/ownable/library.cairo" + }, + "start_col": 9, + "start_line": 49 + } + }, + "323": { + "accessible_scopes": [ + "openzeppelin.access.ownable.library", + "openzeppelin.access.ownable.library.Ownable", + "openzeppelin.access.ownable.library.Ownable.owner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 34, + "end_line": 56, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/access/ownable/library.cairo" + }, + "parent_location": [ + { + "end_col": 33, + "end_line": 13, + "input_file": { + "filename": "autogen/starknet/storage_var/Ownable_owner/decl.cairo" + }, + "parent_location": [ + { + "end_col": 36, + "end_line": 57, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/access/ownable/library.cairo" + }, + "start_col": 16, + "start_line": 57 + }, + "While trying to retrieve the implicit argument 'syscall_ptr' in:" + ], + "start_col": 15, + "start_line": 13 + }, + "While expanding the reference 'syscall_ptr' in:" + ], + "start_col": 16, + "start_line": 56 + } + }, + "324": { + "accessible_scopes": [ + "openzeppelin.access.ownable.library", + "openzeppelin.access.ownable.library.Ownable", + "openzeppelin.access.ownable.library.Ownable.owner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 62, + "end_line": 56, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/access/ownable/library.cairo" + }, + "parent_location": [ + { + "end_col": 61, + "end_line": 13, + "input_file": { + "filename": "autogen/starknet/storage_var/Ownable_owner/decl.cairo" + }, + "parent_location": [ + { + "end_col": 36, + "end_line": 57, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/access/ownable/library.cairo" + }, + "start_col": 16, + "start_line": 57 + }, + "While trying to retrieve the implicit argument 'pedersen_ptr' in:" + ], + "start_col": 35, + "start_line": 13 + }, + "While expanding the reference 'pedersen_ptr' in:" + ], + "start_col": 36, + "start_line": 56 + } + }, + "325": { + "accessible_scopes": [ + "openzeppelin.access.ownable.library", + "openzeppelin.access.ownable.library.Ownable", + "openzeppelin.access.ownable.library.Ownable.owner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 79, + "end_line": 56, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/access/ownable/library.cairo" + }, + "parent_location": [ + { + "end_col": 78, + "end_line": 13, + "input_file": { + "filename": "autogen/starknet/storage_var/Ownable_owner/decl.cairo" + }, + "parent_location": [ + { + "end_col": 36, + "end_line": 57, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/access/ownable/library.cairo" + }, + "start_col": 16, + "start_line": 57 + }, + "While trying to retrieve the implicit argument 'range_check_ptr' in:" + ], + "start_col": 63, + "start_line": 13 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 64, + "start_line": 56 + } + }, + "326": { + "accessible_scopes": [ + "openzeppelin.access.ownable.library", + "openzeppelin.access.ownable.library.Ownable", + "openzeppelin.access.ownable.library.Ownable.owner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 36, + "end_line": 57, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/access/ownable/library.cairo" + }, + "start_col": 16, + "start_line": 57 + } + }, + "328": { + "accessible_scopes": [ + "openzeppelin.access.ownable.library", + "openzeppelin.access.ownable.library.Ownable", + "openzeppelin.access.ownable.library.Ownable.owner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 37, + "end_line": 57, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/access/ownable/library.cairo" + }, + "start_col": 9, + "start_line": 57 + } + }, + "329": { + "accessible_scopes": [ + "openzeppelin.access.ownable.library", + "openzeppelin.access.ownable.library.Ownable", + "openzeppelin.access.ownable.library.Ownable.transfer_ownership" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 24, + "end_line": 61, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/access/ownable/library.cairo" + }, + "parent_location": [ + { + "end_col": 38, + "end_line": 64, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/access/ownable/library.cairo" + }, + "start_col": 29, + "start_line": 64 + }, + "While expanding the reference 'new_owner' in:" + ], + "start_col": 9, + "start_line": 61 + } + }, + "330": { + "accessible_scopes": [ + "openzeppelin.access.ownable.library", + "openzeppelin.access.ownable.library.Ownable", + "openzeppelin.access.ownable.library.Ownable.transfer_ownership" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 39, + "end_line": 64, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/access/ownable/library.cairo" + }, + "start_col": 13, + "start_line": 64 + } + }, + "332": { + "accessible_scopes": [ + "openzeppelin.access.ownable.library", + "openzeppelin.access.ownable.library.Ownable", + "openzeppelin.access.ownable.library.Ownable.transfer_ownership" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 47, + "end_line": 60, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/access/ownable/library.cairo" + }, + "parent_location": [ + { + "end_col": 46, + "end_line": 40, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/access/ownable/library.cairo" + }, + "parent_location": [ + { + "end_col": 28, + "end_line": 66, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/access/ownable/library.cairo" + }, + "start_col": 9, + "start_line": 66 + }, + "While trying to retrieve the implicit argument 'syscall_ptr' in:" + ], + "start_col": 28, + "start_line": 40 + }, + "While expanding the reference 'syscall_ptr' in:" + ], + "start_col": 29, + "start_line": 60 + } + }, + "333": { + "accessible_scopes": [ + "openzeppelin.access.ownable.library", + "openzeppelin.access.ownable.library.Ownable", + "openzeppelin.access.ownable.library.Ownable.transfer_ownership" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 75, + "end_line": 60, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/access/ownable/library.cairo" + }, + "parent_location": [ + { + "end_col": 74, + "end_line": 40, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/access/ownable/library.cairo" + }, + "parent_location": [ + { + "end_col": 28, + "end_line": 66, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/access/ownable/library.cairo" + }, + "start_col": 9, + "start_line": 66 + }, + "While trying to retrieve the implicit argument 'pedersen_ptr' in:" + ], + "start_col": 48, + "start_line": 40 + }, + "While expanding the reference 'pedersen_ptr' in:" + ], + "start_col": 49, + "start_line": 60 + } + }, + "334": { + "accessible_scopes": [ + "openzeppelin.access.ownable.library", + "openzeppelin.access.ownable.library.Ownable", + "openzeppelin.access.ownable.library.Ownable.transfer_ownership" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 92, + "end_line": 60, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/access/ownable/library.cairo" + }, + "parent_location": [ + { + "end_col": 91, + "end_line": 40, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/access/ownable/library.cairo" + }, + "parent_location": [ + { + "end_col": 28, + "end_line": 66, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/access/ownable/library.cairo" + }, + "start_col": 9, + "start_line": 66 + }, + "While trying to retrieve the implicit argument 'range_check_ptr' in:" + ], + "start_col": 76, + "start_line": 40 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 77, + "start_line": 60 + } + }, + "335": { + "accessible_scopes": [ + "openzeppelin.access.ownable.library", + "openzeppelin.access.ownable.library.Ownable", + "openzeppelin.access.ownable.library.Ownable.transfer_ownership" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 28, + "end_line": 66, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/access/ownable/library.cairo" + }, + "start_col": 9, + "start_line": 66 + } + }, + "337": { + "accessible_scopes": [ + "openzeppelin.access.ownable.library", + "openzeppelin.access.ownable.library.Ownable", + "openzeppelin.access.ownable.library.Ownable.transfer_ownership" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 24, + "end_line": 61, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/access/ownable/library.cairo" + }, + "parent_location": [ + { + "end_col": 38, + "end_line": 67, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/access/ownable/library.cairo" + }, + "start_col": 29, + "start_line": 67 + }, + "While expanding the reference 'new_owner' in:" + ], + "start_col": 9, + "start_line": 61 + } + }, + "338": { + "accessible_scopes": [ + "openzeppelin.access.ownable.library", + "openzeppelin.access.ownable.library.Ownable", + "openzeppelin.access.ownable.library.Ownable.transfer_ownership" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 39, + "end_line": 67, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/access/ownable/library.cairo" + }, + "start_col": 9, + "start_line": 67 + } + }, + "340": { + "accessible_scopes": [ + "openzeppelin.access.ownable.library", + "openzeppelin.access.ownable.library.Ownable", + "openzeppelin.access.ownable.library.Ownable.transfer_ownership" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 19, + "end_line": 68, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/access/ownable/library.cairo" + }, + "start_col": 9, + "start_line": 68 + } + }, + "341": { + "accessible_scopes": [ + "openzeppelin.access.ownable.library", + "openzeppelin.access.ownable.library.Ownable", + "openzeppelin.access.ownable.library.Ownable._transfer_ownership" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 48, + "end_line": 81, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/access/ownable/library.cairo" + }, + "parent_location": [ + { + "end_col": 34, + "end_line": 56, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/access/ownable/library.cairo" + }, + "parent_location": [ + { + "end_col": 53, + "end_line": 84, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/access/ownable/library.cairo" + }, + "start_col": 38, + "start_line": 84 + }, + "While trying to retrieve the implicit argument 'syscall_ptr' in:" + ], + "start_col": 16, + "start_line": 56 + }, + "While expanding the reference 'syscall_ptr' in:" + ], + "start_col": 30, + "start_line": 81 + } + }, + "342": { + "accessible_scopes": [ + "openzeppelin.access.ownable.library", + "openzeppelin.access.ownable.library.Ownable", + "openzeppelin.access.ownable.library.Ownable._transfer_ownership" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 76, + "end_line": 81, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/access/ownable/library.cairo" + }, + "parent_location": [ + { + "end_col": 62, + "end_line": 56, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/access/ownable/library.cairo" + }, + "parent_location": [ + { + "end_col": 53, + "end_line": 84, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/access/ownable/library.cairo" + }, + "start_col": 38, + "start_line": 84 + }, + "While trying to retrieve the implicit argument 'pedersen_ptr' in:" + ], + "start_col": 36, + "start_line": 56 + }, + "While expanding the reference 'pedersen_ptr' in:" + ], + "start_col": 50, + "start_line": 81 + } + }, + "343": { + "accessible_scopes": [ + "openzeppelin.access.ownable.library", + "openzeppelin.access.ownable.library.Ownable", + "openzeppelin.access.ownable.library.Ownable._transfer_ownership" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 93, + "end_line": 81, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/access/ownable/library.cairo" + }, + "parent_location": [ + { + "end_col": 79, + "end_line": 56, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/access/ownable/library.cairo" + }, + "parent_location": [ + { + "end_col": 53, + "end_line": 84, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/access/ownable/library.cairo" + }, + "start_col": 38, + "start_line": 84 + }, + "While trying to retrieve the implicit argument 'range_check_ptr' in:" + ], + "start_col": 64, + "start_line": 56 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 78, + "start_line": 81 + } + }, + "344": { + "accessible_scopes": [ + "openzeppelin.access.ownable.library", + "openzeppelin.access.ownable.library.Ownable", + "openzeppelin.access.ownable.library.Ownable._transfer_ownership" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 53, + "end_line": 84, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/access/ownable/library.cairo" + }, + "start_col": 38, + "start_line": 84 + } + }, + "346": { + "accessible_scopes": [ + "openzeppelin.access.ownable.library", + "openzeppelin.access.ownable.library.Ownable", + "openzeppelin.access.ownable.library.Ownable._transfer_ownership" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 34, + "end_line": 56, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/access/ownable/library.cairo" + }, + "parent_location": [ + { + "end_col": 53, + "end_line": 84, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/access/ownable/library.cairo" + }, + "parent_location": [ + { + "end_col": 34, + "end_line": 19, + "input_file": { + "filename": "autogen/starknet/storage_var/Ownable_owner/decl.cairo" + }, + "parent_location": [ + { + "end_col": 39, + "end_line": 85, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/access/ownable/library.cairo" + }, + "start_col": 9, + "start_line": 85 + }, + "While trying to retrieve the implicit argument 'syscall_ptr' in:" + ], + "start_col": 16, + "start_line": 19 + }, + "While expanding the reference 'syscall_ptr' in:" + ], + "start_col": 38, + "start_line": 84 + }, + "While trying to update the implicit return value 'syscall_ptr' in:" + ], + "start_col": 16, + "start_line": 56 + } + }, + "347": { + "accessible_scopes": [ + "openzeppelin.access.ownable.library", + "openzeppelin.access.ownable.library.Ownable", + "openzeppelin.access.ownable.library.Ownable._transfer_ownership" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 62, + "end_line": 56, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/access/ownable/library.cairo" + }, + "parent_location": [ + { + "end_col": 53, + "end_line": 84, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/access/ownable/library.cairo" + }, + "parent_location": [ + { + "end_col": 62, + "end_line": 19, + "input_file": { + "filename": "autogen/starknet/storage_var/Ownable_owner/decl.cairo" + }, + "parent_location": [ + { + "end_col": 39, + "end_line": 85, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/access/ownable/library.cairo" + }, + "start_col": 9, + "start_line": 85 + }, + "While trying to retrieve the implicit argument 'pedersen_ptr' in:" + ], + "start_col": 36, + "start_line": 19 + }, + "While expanding the reference 'pedersen_ptr' in:" + ], + "start_col": 38, + "start_line": 84 + }, + "While trying to update the implicit return value 'pedersen_ptr' in:" + ], + "start_col": 36, + "start_line": 56 + } + }, + "348": { + "accessible_scopes": [ + "openzeppelin.access.ownable.library", + "openzeppelin.access.ownable.library.Ownable", + "openzeppelin.access.ownable.library.Ownable._transfer_ownership" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 79, + "end_line": 56, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/access/ownable/library.cairo" + }, + "parent_location": [ + { + "end_col": 53, + "end_line": 84, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/access/ownable/library.cairo" + }, + "parent_location": [ + { + "end_col": 79, + "end_line": 19, + "input_file": { + "filename": "autogen/starknet/storage_var/Ownable_owner/decl.cairo" + }, + "parent_location": [ + { + "end_col": 39, + "end_line": 85, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/access/ownable/library.cairo" + }, + "start_col": 9, + "start_line": 85 + }, + "While trying to retrieve the implicit argument 'range_check_ptr' in:" + ], + "start_col": 64, + "start_line": 19 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 38, + "start_line": 84 + }, + "While trying to update the implicit return value 'range_check_ptr' in:" + ], + "start_col": 64, + "start_line": 56 + } + }, + "349": { + "accessible_scopes": [ + "openzeppelin.access.ownable.library", + "openzeppelin.access.ownable.library.Ownable", + "openzeppelin.access.ownable.library.Ownable._transfer_ownership" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 24, + "end_line": 82, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/access/ownable/library.cairo" + }, + "parent_location": [ + { + "end_col": 38, + "end_line": 85, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/access/ownable/library.cairo" + }, + "start_col": 29, + "start_line": 85 + }, + "While expanding the reference 'new_owner' in:" + ], + "start_col": 9, + "start_line": 82 + } + }, + "350": { + "accessible_scopes": [ + "openzeppelin.access.ownable.library", + "openzeppelin.access.ownable.library.Ownable", + "openzeppelin.access.ownable.library.Ownable._transfer_ownership" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 39, + "end_line": 85, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/access/ownable/library.cairo" + }, + "start_col": 9, + "start_line": 85 + } + }, + "352": { + "accessible_scopes": [ + "openzeppelin.access.ownable.library", + "openzeppelin.access.ownable.library.Ownable", + "openzeppelin.access.ownable.library.Ownable._transfer_ownership" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 34, + "end_line": 19, + "input_file": { + "filename": "autogen/starknet/storage_var/Ownable_owner/decl.cairo" + }, + "parent_location": [ + { + "end_col": 39, + "end_line": 85, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/access/ownable/library.cairo" + }, + "parent_location": [ + { + "end_col": 29, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/event/OwnershipTransferred/a7a8ae41be29ac9f4f6c3b7837c448d787ca051dd1ade98f409e54d33d112504.cairo" + }, + "parent_location": [ + { + "end_col": 26, + "end_line": 15, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/access/ownable/library.cairo" + }, + "parent_location": [ + { + "end_col": 61, + "end_line": 86, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/access/ownable/library.cairo" + }, + "start_col": 9, + "start_line": 86 + }, + "While trying to retrieve the implicit argument 'syscall_ptr' in:" + ], + "start_col": 6, + "start_line": 15 + }, + "While handling event:" + ], + "start_col": 11, + "start_line": 1 + }, + "While expanding the reference 'syscall_ptr' in:" + ], + "start_col": 9, + "start_line": 85 + }, + "While trying to update the implicit return value 'syscall_ptr' in:" + ], + "start_col": 16, + "start_line": 19 + } + }, + "353": { + "accessible_scopes": [ + "openzeppelin.access.ownable.library", + "openzeppelin.access.ownable.library.Ownable", + "openzeppelin.access.ownable.library.Ownable._transfer_ownership" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 79, + "end_line": 19, + "input_file": { + "filename": "autogen/starknet/storage_var/Ownable_owner/decl.cairo" + }, + "parent_location": [ + { + "end_col": 39, + "end_line": 85, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/access/ownable/library.cairo" + }, + "parent_location": [ + { + "end_col": 46, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/event/OwnershipTransferred/a7a8ae41be29ac9f4f6c3b7837c448d787ca051dd1ade98f409e54d33d112504.cairo" + }, + "parent_location": [ + { + "end_col": 26, + "end_line": 15, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/access/ownable/library.cairo" + }, + "parent_location": [ + { + "end_col": 61, + "end_line": 86, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/access/ownable/library.cairo" + }, + "start_col": 9, + "start_line": 86 + }, + "While trying to retrieve the implicit argument 'range_check_ptr' in:" + ], + "start_col": 6, + "start_line": 15 + }, + "While handling event:" + ], + "start_col": 31, + "start_line": 1 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 9, + "start_line": 85 + }, + "While trying to update the implicit return value 'range_check_ptr' in:" + ], + "start_col": 64, + "start_line": 19 + } + }, + "354": { + "accessible_scopes": [ + "openzeppelin.access.ownable.library", + "openzeppelin.access.ownable.library.Ownable", + "openzeppelin.access.ownable.library.Ownable._transfer_ownership" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 34, + "end_line": 84, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/access/ownable/library.cairo" + }, + "parent_location": [ + { + "end_col": 49, + "end_line": 86, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/access/ownable/library.cairo" + }, + "start_col": 35, + "start_line": 86 + }, + "While expanding the reference 'previous_owner' in:" + ], + "start_col": 14, + "start_line": 84 + } + }, + "355": { + "accessible_scopes": [ + "openzeppelin.access.ownable.library", + "openzeppelin.access.ownable.library.Ownable", + "openzeppelin.access.ownable.library.Ownable._transfer_ownership" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 24, + "end_line": 82, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/access/ownable/library.cairo" + }, + "parent_location": [ + { + "end_col": 60, + "end_line": 86, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/access/ownable/library.cairo" + }, + "start_col": 51, + "start_line": 86 + }, + "While expanding the reference 'new_owner' in:" + ], + "start_col": 9, + "start_line": 82 + } + }, + "356": { + "accessible_scopes": [ + "openzeppelin.access.ownable.library", + "openzeppelin.access.ownable.library.Ownable", + "openzeppelin.access.ownable.library.Ownable._transfer_ownership" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 61, + "end_line": 86, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/access/ownable/library.cairo" + }, + "start_col": 9, + "start_line": 86 + } + }, + "358": { + "accessible_scopes": [ + "openzeppelin.access.ownable.library", + "openzeppelin.access.ownable.library.Ownable", + "openzeppelin.access.ownable.library.Ownable._transfer_ownership" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 29, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/event/OwnershipTransferred/a7a8ae41be29ac9f4f6c3b7837c448d787ca051dd1ade98f409e54d33d112504.cairo" + }, + "parent_location": [ + { + "end_col": 26, + "end_line": 15, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/access/ownable/library.cairo" + }, + "parent_location": [ + { + "end_col": 61, + "end_line": 86, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/access/ownable/library.cairo" + }, + "parent_location": [ + { + "end_col": 48, + "end_line": 81, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/access/ownable/library.cairo" + }, + "parent_location": [ + { + "end_col": 19, + "end_line": 87, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/access/ownable/library.cairo" + }, + "start_col": 9, + "start_line": 87 + }, + "While trying to retrieve the implicit argument 'syscall_ptr' in:" + ], + "start_col": 30, + "start_line": 81 + }, + "While expanding the reference 'syscall_ptr' in:" + ], + "start_col": 9, + "start_line": 86 + }, + "While trying to update the implicit return value 'syscall_ptr' in:" + ], + "start_col": 6, + "start_line": 15 + }, + "While handling event:" + ], + "start_col": 11, + "start_line": 1 + } + }, + "359": { + "accessible_scopes": [ + "openzeppelin.access.ownable.library", + "openzeppelin.access.ownable.library.Ownable", + "openzeppelin.access.ownable.library.Ownable._transfer_ownership" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 62, + "end_line": 19, + "input_file": { + "filename": "autogen/starknet/storage_var/Ownable_owner/decl.cairo" + }, + "parent_location": [ + { + "end_col": 39, + "end_line": 85, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/access/ownable/library.cairo" + }, + "parent_location": [ + { + "end_col": 76, + "end_line": 81, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/access/ownable/library.cairo" + }, + "parent_location": [ + { + "end_col": 19, + "end_line": 87, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/access/ownable/library.cairo" + }, + "start_col": 9, + "start_line": 87 + }, + "While trying to retrieve the implicit argument 'pedersen_ptr' in:" + ], + "start_col": 50, + "start_line": 81 + }, + "While expanding the reference 'pedersen_ptr' in:" + ], + "start_col": 9, + "start_line": 85 + }, + "While trying to update the implicit return value 'pedersen_ptr' in:" + ], + "start_col": 36, + "start_line": 19 + } + }, + "360": { + "accessible_scopes": [ + "openzeppelin.access.ownable.library", + "openzeppelin.access.ownable.library.Ownable", + "openzeppelin.access.ownable.library.Ownable._transfer_ownership" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 46, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/event/OwnershipTransferred/a7a8ae41be29ac9f4f6c3b7837c448d787ca051dd1ade98f409e54d33d112504.cairo" + }, + "parent_location": [ + { + "end_col": 26, + "end_line": 15, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/access/ownable/library.cairo" + }, + "parent_location": [ + { + "end_col": 61, + "end_line": 86, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/access/ownable/library.cairo" + }, + "parent_location": [ + { + "end_col": 93, + "end_line": 81, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/access/ownable/library.cairo" + }, + "parent_location": [ + { + "end_col": 19, + "end_line": 87, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/access/ownable/library.cairo" + }, + "start_col": 9, + "start_line": 87 + }, + "While trying to retrieve the implicit argument 'range_check_ptr' in:" + ], + "start_col": 78, + "start_line": 81 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 9, + "start_line": 86 + }, + "While trying to update the implicit return value 'range_check_ptr' in:" + ], + "start_col": 6, + "start_line": 15 + }, + "While handling event:" + ], + "start_col": 31, + "start_line": 1 + } + }, + "361": { + "accessible_scopes": [ + "openzeppelin.access.ownable.library", + "openzeppelin.access.ownable.library.Ownable", + "openzeppelin.access.ownable.library.Ownable._transfer_ownership" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 19, + "end_line": 87, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/access/ownable/library.cairo" + }, + "start_col": 9, + "start_line": 87 + } + }, + "362": { + "accessible_scopes": [ + "openzeppelin.introspection.erc165.library", + "openzeppelin.introspection.erc165.library.ERC165_supported_interfaces", + "openzeppelin.introspection.erc165.library.ERC165_supported_interfaces.addr" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 41, + "end_line": 7, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC165_supported_interfaces/impl.cairo" + }, + "parent_location": [ + { + "end_col": 48, + "end_line": 9, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC165_supported_interfaces/impl.cairo" + }, + "start_col": 36, + "start_line": 9 + }, + "While expanding the reference 'pedersen_ptr' in:" + ], + "start_col": 15, + "start_line": 7 + } + }, + "363": { + "accessible_scopes": [ + "openzeppelin.introspection.erc165.library", + "openzeppelin.introspection.erc165.library.ERC165_supported_interfaces", + "openzeppelin.introspection.erc165.library.ERC165_supported_interfaces.addr" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 94, + "end_line": 8, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC165_supported_interfaces/impl.cairo" + }, + "parent_location": [ + { + "end_col": 53, + "end_line": 9, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC165_supported_interfaces/impl.cairo" + }, + "start_col": 50, + "start_line": 9 + }, + "While expanding the reference 'res' in:" + ], + "start_col": 19, + "start_line": 8 + } + }, + "365": { + "accessible_scopes": [ + "openzeppelin.introspection.erc165.library", + "openzeppelin.introspection.erc165.library.ERC165_supported_interfaces", + "openzeppelin.introspection.erc165.library.ERC165_supported_interfaces.addr" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 84, + "end_line": 9, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC165_supported_interfaces/impl.cairo" + }, + "start_col": 55, + "start_line": 9 + } + }, + "366": { + "accessible_scopes": [ + "openzeppelin.introspection.erc165.library", + "openzeppelin.introspection.erc165.library.ERC165_supported_interfaces", + "openzeppelin.introspection.erc165.library.ERC165_supported_interfaces.addr" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 85, + "end_line": 9, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC165_supported_interfaces/impl.cairo" + }, + "start_col": 21, + "start_line": 9 + } + }, + "368": { + "accessible_scopes": [ + "openzeppelin.introspection.erc165.library", + "openzeppelin.introspection.erc165.library.ERC165_supported_interfaces", + "openzeppelin.introspection.erc165.library.ERC165_supported_interfaces.addr" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 58, + "end_line": 7, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC165_supported_interfaces/impl.cairo" + }, + "parent_location": [ + { + "end_col": 39, + "end_line": 12, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/starknet/common/storage.cairo" + }, + "parent_location": [ + { + "end_col": 48, + "end_line": 10, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC165_supported_interfaces/impl.cairo" + }, + "start_col": 21, + "start_line": 10 + }, + "While trying to retrieve the implicit argument 'range_check_ptr' in:" + ], + "start_col": 24, + "start_line": 12 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 43, + "start_line": 7 + } + }, + "369": { + "accessible_scopes": [ + "openzeppelin.introspection.erc165.library", + "openzeppelin.introspection.erc165.library.ERC165_supported_interfaces", + "openzeppelin.introspection.erc165.library.ERC165_supported_interfaces.addr" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 17, + "end_line": 9, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC165_supported_interfaces/impl.cairo" + }, + "parent_location": [ + { + "end_col": 47, + "end_line": 10, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC165_supported_interfaces/impl.cairo" + }, + "start_col": 44, + "start_line": 10 + }, + "While expanding the reference 'res' in:" + ], + "start_col": 14, + "start_line": 9 + } + }, + "370": { + "accessible_scopes": [ + "openzeppelin.introspection.erc165.library", + "openzeppelin.introspection.erc165.library.ERC165_supported_interfaces", + "openzeppelin.introspection.erc165.library.ERC165_supported_interfaces.addr" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 48, + "end_line": 10, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC165_supported_interfaces/impl.cairo" + }, + "start_col": 21, + "start_line": 10 + } + }, + "372": { + "accessible_scopes": [ + "openzeppelin.introspection.erc165.library", + "openzeppelin.introspection.erc165.library.ERC165_supported_interfaces", + "openzeppelin.introspection.erc165.library.ERC165_supported_interfaces.addr" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 48, + "end_line": 9, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC165_supported_interfaces/impl.cairo" + }, + "parent_location": [ + { + "end_col": 41, + "end_line": 7, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC165_supported_interfaces/decl.cairo" + }, + "parent_location": [ + { + "end_col": 26, + "end_line": 11, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC165_supported_interfaces/impl.cairo" + }, + "start_col": 9, + "start_line": 11 + }, + "While trying to retrieve the implicit argument 'pedersen_ptr' in:" + ], + "start_col": 15, + "start_line": 7 + }, + "While expanding the reference 'pedersen_ptr' in:" + ], + "start_col": 36, + "start_line": 9 + } + }, + "373": { + "accessible_scopes": [ + "openzeppelin.introspection.erc165.library", + "openzeppelin.introspection.erc165.library.ERC165_supported_interfaces", + "openzeppelin.introspection.erc165.library.ERC165_supported_interfaces.addr" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 39, + "end_line": 12, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/starknet/common/storage.cairo" + }, + "parent_location": [ + { + "end_col": 48, + "end_line": 10, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC165_supported_interfaces/impl.cairo" + }, + "parent_location": [ + { + "end_col": 58, + "end_line": 7, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC165_supported_interfaces/decl.cairo" + }, + "parent_location": [ + { + "end_col": 26, + "end_line": 11, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC165_supported_interfaces/impl.cairo" + }, + "start_col": 9, + "start_line": 11 + }, + "While trying to retrieve the implicit argument 'range_check_ptr' in:" + ], + "start_col": 43, + "start_line": 7 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 21, + "start_line": 10 + }, + "While trying to update the implicit return value 'range_check_ptr' in:" + ], + "start_col": 24, + "start_line": 12 + } + }, + "374": { + "accessible_scopes": [ + "openzeppelin.introspection.erc165.library", + "openzeppelin.introspection.erc165.library.ERC165_supported_interfaces", + "openzeppelin.introspection.erc165.library.ERC165_supported_interfaces.addr" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 17, + "end_line": 10, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC165_supported_interfaces/impl.cairo" + }, + "parent_location": [ + { + "end_col": 24, + "end_line": 11, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC165_supported_interfaces/impl.cairo" + }, + "start_col": 21, + "start_line": 11 + }, + "While expanding the reference 'res' in:" + ], + "start_col": 14, + "start_line": 10 + } + }, + "375": { + "accessible_scopes": [ + "openzeppelin.introspection.erc165.library", + "openzeppelin.introspection.erc165.library.ERC165_supported_interfaces", + "openzeppelin.introspection.erc165.library.ERC165_supported_interfaces.addr" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 26, + "end_line": 11, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC165_supported_interfaces/impl.cairo" + }, + "start_col": 9, + "start_line": 11 + } + }, + "376": { + "accessible_scopes": [ + "openzeppelin.introspection.erc165.library", + "openzeppelin.introspection.erc165.library.ERC165_supported_interfaces", + "openzeppelin.introspection.erc165.library.ERC165_supported_interfaces.read" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 61, + "end_line": 14, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC165_supported_interfaces/impl.cairo" + }, + "parent_location": [ + { + "end_col": 41, + "end_line": 7, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC165_supported_interfaces/decl.cairo" + }, + "parent_location": [ + { + "end_col": 48, + "end_line": 17, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC165_supported_interfaces/impl.cairo" + }, + "start_col": 30, + "start_line": 17 + }, + "While trying to retrieve the implicit argument 'pedersen_ptr' in:" + ], + "start_col": 15, + "start_line": 7 + }, + "While expanding the reference 'pedersen_ptr' in:" + ], + "start_col": 35, + "start_line": 14 + } + }, + "377": { + "accessible_scopes": [ + "openzeppelin.introspection.erc165.library", + "openzeppelin.introspection.erc165.library.ERC165_supported_interfaces", + "openzeppelin.introspection.erc165.library.ERC165_supported_interfaces.read" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 78, + "end_line": 14, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC165_supported_interfaces/impl.cairo" + }, + "parent_location": [ + { + "end_col": 58, + "end_line": 7, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC165_supported_interfaces/decl.cairo" + }, + "parent_location": [ + { + "end_col": 48, + "end_line": 17, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC165_supported_interfaces/impl.cairo" + }, + "start_col": 30, + "start_line": 17 + }, + "While trying to retrieve the implicit argument 'range_check_ptr' in:" + ], + "start_col": 43, + "start_line": 7 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 63, + "start_line": 14 + } + }, + "378": { + "accessible_scopes": [ + "openzeppelin.introspection.erc165.library", + "openzeppelin.introspection.erc165.library.ERC165_supported_interfaces", + "openzeppelin.introspection.erc165.library.ERC165_supported_interfaces.read" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 27, + "end_line": 15, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC165_supported_interfaces/impl.cairo" + }, + "parent_location": [ + { + "end_col": 47, + "end_line": 17, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC165_supported_interfaces/impl.cairo" + }, + "start_col": 35, + "start_line": 17 + }, + "While expanding the reference 'interface_id' in:" + ], + "start_col": 9, + "start_line": 15 + } + }, + "379": { + "accessible_scopes": [ + "openzeppelin.introspection.erc165.library", + "openzeppelin.introspection.erc165.library.ERC165_supported_interfaces", + "openzeppelin.introspection.erc165.library.ERC165_supported_interfaces.read" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 48, + "end_line": 17, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC165_supported_interfaces/impl.cairo" + }, + "start_col": 30, + "start_line": 17 + } + }, + "381": { + "accessible_scopes": [ + "openzeppelin.introspection.erc165.library", + "openzeppelin.introspection.erc165.library.ERC165_supported_interfaces", + "openzeppelin.introspection.erc165.library.ERC165_supported_interfaces.read" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 33, + "end_line": 14, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC165_supported_interfaces/impl.cairo" + }, + "parent_location": [ + { + "end_col": 37, + "end_line": 352, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/starknet/common/syscalls.cairo" + }, + "parent_location": [ + { + "end_col": 75, + "end_line": 18, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC165_supported_interfaces/impl.cairo" + }, + "start_col": 37, + "start_line": 18 + }, + "While trying to retrieve the implicit argument 'syscall_ptr' in:" + ], + "start_col": 19, + "start_line": 352 + }, + "While expanding the reference 'syscall_ptr' in:" + ], + "start_col": 15, + "start_line": 14 + } + }, + "382": { + "accessible_scopes": [ + "openzeppelin.introspection.erc165.library", + "openzeppelin.introspection.erc165.library.ERC165_supported_interfaces", + "openzeppelin.introspection.erc165.library.ERC165_supported_interfaces.read" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 26, + "end_line": 17, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC165_supported_interfaces/impl.cairo" + }, + "parent_location": [ + { + "end_col": 70, + "end_line": 18, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC165_supported_interfaces/impl.cairo" + }, + "start_col": 58, + "start_line": 18 + }, + "While expanding the reference 'storage_addr' in:" + ], + "start_col": 14, + "start_line": 17 + } + }, + "383": { + "accessible_scopes": [ + "openzeppelin.introspection.erc165.library", + "openzeppelin.introspection.erc165.library.ERC165_supported_interfaces", + "openzeppelin.introspection.erc165.library.ERC165_supported_interfaces.read" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 75, + "end_line": 18, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC165_supported_interfaces/impl.cairo" + }, + "start_col": 37, + "start_line": 18 + } + }, + "385": { + "accessible_scopes": [ + "openzeppelin.introspection.erc165.library", + "openzeppelin.introspection.erc165.library.ERC165_supported_interfaces", + "openzeppelin.introspection.erc165.library.ERC165_supported_interfaces.read" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 37, + "end_line": 352, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/starknet/common/syscalls.cairo" + }, + "parent_location": [ + { + "end_col": 75, + "end_line": 18, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC165_supported_interfaces/impl.cairo" + }, + "parent_location": [ + { + "end_col": 42, + "end_line": 20, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC165_supported_interfaces/impl.cairo" + }, + "start_col": 31, + "start_line": 20 + }, + "While expanding the reference 'syscall_ptr' in:" + ], + "start_col": 37, + "start_line": 18 + }, + "While trying to update the implicit return value 'syscall_ptr' in:" + ], + "start_col": 19, + "start_line": 352 + } + }, + "386": { + "accessible_scopes": [ + "openzeppelin.introspection.erc165.library", + "openzeppelin.introspection.erc165.library.ERC165_supported_interfaces", + "openzeppelin.introspection.erc165.library.ERC165_supported_interfaces.read" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 41, + "end_line": 7, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC165_supported_interfaces/decl.cairo" + }, + "parent_location": [ + { + "end_col": 48, + "end_line": 17, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC165_supported_interfaces/impl.cairo" + }, + "parent_location": [ + { + "end_col": 44, + "end_line": 21, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC165_supported_interfaces/impl.cairo" + }, + "start_col": 32, + "start_line": 21 + }, + "While expanding the reference 'pedersen_ptr' in:" + ], + "start_col": 30, + "start_line": 17 + }, + "While trying to update the implicit return value 'pedersen_ptr' in:" + ], + "start_col": 15, + "start_line": 7 + } + }, + "387": { + "accessible_scopes": [ + "openzeppelin.introspection.erc165.library", + "openzeppelin.introspection.erc165.library.ERC165_supported_interfaces", + "openzeppelin.introspection.erc165.library.ERC165_supported_interfaces.read" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 58, + "end_line": 7, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC165_supported_interfaces/decl.cairo" + }, + "parent_location": [ + { + "end_col": 48, + "end_line": 17, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC165_supported_interfaces/impl.cairo" + }, + "parent_location": [ + { + "end_col": 50, + "end_line": 22, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC165_supported_interfaces/impl.cairo" + }, + "start_col": 35, + "start_line": 22 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 30, + "start_line": 17 + }, + "While trying to update the implicit return value 'range_check_ptr' in:" + ], + "start_col": 43, + "start_line": 7 + } + }, + "388": { + "accessible_scopes": [ + "openzeppelin.introspection.erc165.library", + "openzeppelin.introspection.erc165.library.ERC165_supported_interfaces", + "openzeppelin.introspection.erc165.library.ERC165_supported_interfaces.read" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 33, + "end_line": 18, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC165_supported_interfaces/impl.cairo" + }, + "parent_location": [ + { + "end_col": 64, + "end_line": 23, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC165_supported_interfaces/impl.cairo" + }, + "start_col": 45, + "start_line": 23 + }, + "While expanding the reference '__storage_var_temp0' in:" + ], + "start_col": 14, + "start_line": 18 + } + }, + "389": { + "accessible_scopes": [ + "openzeppelin.introspection.erc165.library", + "openzeppelin.introspection.erc165.library.ERC165_supported_interfaces", + "openzeppelin.introspection.erc165.library.ERC165_supported_interfaces.read" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 55, + "end_line": 24, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC165_supported_interfaces/impl.cairo" + }, + "start_col": 9, + "start_line": 24 + } + }, + "390": { + "accessible_scopes": [ + "openzeppelin.introspection.erc165.library", + "openzeppelin.introspection.erc165.library.ERC165_supported_interfaces", + "openzeppelin.introspection.erc165.library.ERC165_supported_interfaces.write" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 62, + "end_line": 27, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC165_supported_interfaces/impl.cairo" + }, + "parent_location": [ + { + "end_col": 41, + "end_line": 7, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC165_supported_interfaces/decl.cairo" + }, + "parent_location": [ + { + "end_col": 48, + "end_line": 30, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC165_supported_interfaces/impl.cairo" + }, + "start_col": 30, + "start_line": 30 + }, + "While trying to retrieve the implicit argument 'pedersen_ptr' in:" + ], + "start_col": 15, + "start_line": 7 + }, + "While expanding the reference 'pedersen_ptr' in:" + ], + "start_col": 36, + "start_line": 27 + } + }, + "391": { + "accessible_scopes": [ + "openzeppelin.introspection.erc165.library", + "openzeppelin.introspection.erc165.library.ERC165_supported_interfaces", + "openzeppelin.introspection.erc165.library.ERC165_supported_interfaces.write" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 79, + "end_line": 27, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC165_supported_interfaces/impl.cairo" + }, + "parent_location": [ + { + "end_col": 58, + "end_line": 7, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC165_supported_interfaces/decl.cairo" + }, + "parent_location": [ + { + "end_col": 48, + "end_line": 30, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC165_supported_interfaces/impl.cairo" + }, + "start_col": 30, + "start_line": 30 + }, + "While trying to retrieve the implicit argument 'range_check_ptr' in:" + ], + "start_col": 43, + "start_line": 7 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 64, + "start_line": 27 + } + }, + "392": { + "accessible_scopes": [ + "openzeppelin.introspection.erc165.library", + "openzeppelin.introspection.erc165.library.ERC165_supported_interfaces", + "openzeppelin.introspection.erc165.library.ERC165_supported_interfaces.write" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 27, + "end_line": 28, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC165_supported_interfaces/impl.cairo" + }, + "parent_location": [ + { + "end_col": 47, + "end_line": 30, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC165_supported_interfaces/impl.cairo" + }, + "start_col": 35, + "start_line": 30 + }, + "While expanding the reference 'interface_id' in:" + ], + "start_col": 9, + "start_line": 28 + } + }, + "393": { + "accessible_scopes": [ + "openzeppelin.introspection.erc165.library", + "openzeppelin.introspection.erc165.library.ERC165_supported_interfaces", + "openzeppelin.introspection.erc165.library.ERC165_supported_interfaces.write" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 48, + "end_line": 30, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC165_supported_interfaces/impl.cairo" + }, + "start_col": 30, + "start_line": 30 + } + }, + "395": { + "accessible_scopes": [ + "openzeppelin.introspection.erc165.library", + "openzeppelin.introspection.erc165.library.ERC165_supported_interfaces", + "openzeppelin.introspection.erc165.library.ERC165_supported_interfaces.write" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 34, + "end_line": 27, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC165_supported_interfaces/impl.cairo" + }, + "parent_location": [ + { + "end_col": 38, + "end_line": 370, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/starknet/common/syscalls.cairo" + }, + "parent_location": [ + { + "end_col": 80, + "end_line": 31, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC165_supported_interfaces/impl.cairo" + }, + "start_col": 9, + "start_line": 31 + }, + "While trying to retrieve the implicit argument 'syscall_ptr' in:" + ], + "start_col": 20, + "start_line": 370 + }, + "While expanding the reference 'syscall_ptr' in:" + ], + "start_col": 16, + "start_line": 27 + } + }, + "396": { + "accessible_scopes": [ + "openzeppelin.introspection.erc165.library", + "openzeppelin.introspection.erc165.library.ERC165_supported_interfaces", + "openzeppelin.introspection.erc165.library.ERC165_supported_interfaces.write" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 26, + "end_line": 30, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC165_supported_interfaces/impl.cairo" + }, + "parent_location": [ + { + "end_col": 43, + "end_line": 31, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC165_supported_interfaces/impl.cairo" + }, + "start_col": 31, + "start_line": 31 + }, + "While expanding the reference 'storage_addr' in:" + ], + "start_col": 14, + "start_line": 30 + } + }, + "397": { + "accessible_scopes": [ + "openzeppelin.introspection.erc165.library", + "openzeppelin.introspection.erc165.library.ERC165_supported_interfaces", + "openzeppelin.introspection.erc165.library.ERC165_supported_interfaces.write" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 79, + "end_line": 31, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC165_supported_interfaces/impl.cairo" + }, + "start_col": 55, + "start_line": 31 + } + }, + "398": { + "accessible_scopes": [ + "openzeppelin.introspection.erc165.library", + "openzeppelin.introspection.erc165.library.ERC165_supported_interfaces", + "openzeppelin.introspection.erc165.library.ERC165_supported_interfaces.write" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 80, + "end_line": 31, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC165_supported_interfaces/impl.cairo" + }, + "start_col": 9, + "start_line": 31 + } + }, + "400": { + "accessible_scopes": [ + "openzeppelin.introspection.erc165.library", + "openzeppelin.introspection.erc165.library.ERC165_supported_interfaces", + "openzeppelin.introspection.erc165.library.ERC165_supported_interfaces.write" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 41, + "end_line": 7, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC165_supported_interfaces/decl.cairo" + }, + "parent_location": [ + { + "end_col": 48, + "end_line": 30, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC165_supported_interfaces/impl.cairo" + }, + "parent_location": [ + { + "end_col": 62, + "end_line": 21, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC165_supported_interfaces/decl.cairo" + }, + "parent_location": [ + { + "end_col": 19, + "end_line": 32, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC165_supported_interfaces/impl.cairo" + }, + "start_col": 9, + "start_line": 32 + }, + "While trying to retrieve the implicit argument 'pedersen_ptr' in:" + ], + "start_col": 36, + "start_line": 21 + }, + "While expanding the reference 'pedersen_ptr' in:" + ], + "start_col": 30, + "start_line": 30 + }, + "While trying to update the implicit return value 'pedersen_ptr' in:" + ], + "start_col": 15, + "start_line": 7 + } + }, + "401": { + "accessible_scopes": [ + "openzeppelin.introspection.erc165.library", + "openzeppelin.introspection.erc165.library.ERC165_supported_interfaces", + "openzeppelin.introspection.erc165.library.ERC165_supported_interfaces.write" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 58, + "end_line": 7, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC165_supported_interfaces/decl.cairo" + }, + "parent_location": [ + { + "end_col": 48, + "end_line": 30, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC165_supported_interfaces/impl.cairo" + }, + "parent_location": [ + { + "end_col": 79, + "end_line": 21, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC165_supported_interfaces/decl.cairo" + }, + "parent_location": [ + { + "end_col": 19, + "end_line": 32, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC165_supported_interfaces/impl.cairo" + }, + "start_col": 9, + "start_line": 32 + }, + "While trying to retrieve the implicit argument 'range_check_ptr' in:" + ], + "start_col": 64, + "start_line": 21 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 30, + "start_line": 30 + }, + "While trying to update the implicit return value 'range_check_ptr' in:" + ], + "start_col": 43, + "start_line": 7 + } + }, + "402": { + "accessible_scopes": [ + "openzeppelin.introspection.erc165.library", + "openzeppelin.introspection.erc165.library.ERC165_supported_interfaces", + "openzeppelin.introspection.erc165.library.ERC165_supported_interfaces.write" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 19, + "end_line": 32, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC165_supported_interfaces/impl.cairo" + }, + "start_col": 9, + "start_line": 32 + } + }, + "403": { + "accessible_scopes": [ + "openzeppelin.introspection.erc165.library", + "openzeppelin.introspection.erc165.library.ERC165", + "openzeppelin.introspection.erc165.library.ERC165.supports_interface" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 39, + "end_line": 20, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/introspection/erc165/library.cairo" + }, + "start_col": 13, + "start_line": 20 + } + }, + "405": { + "accessible_scopes": [ + "openzeppelin.introspection.erc165.library", + "openzeppelin.introspection.erc165.library.ERC165", + "openzeppelin.introspection.erc165.library.ERC165.supports_interface" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 11, + "end_line": 20, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/introspection/erc165/library.cairo" + }, + "start_col": 9, + "start_line": 20 + } + }, + "407": { + "accessible_scopes": [ + "openzeppelin.introspection.erc165.library", + "openzeppelin.introspection.erc165.library.ERC165", + "openzeppelin.introspection.erc165.library.ERC165.supports_interface" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 47, + "end_line": 17, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/introspection/erc165/library.cairo" + }, + "parent_location": [ + { + "end_col": 47, + "end_line": 17, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/introspection/erc165/library.cairo" + }, + "parent_location": [ + { + "end_col": 35, + "end_line": 21, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/introspection/erc165/library.cairo" + }, + "start_col": 13, + "start_line": 21 + }, + "While trying to retrieve the implicit argument 'syscall_ptr' in:" + ], + "start_col": 29, + "start_line": 17 + }, + "While expanding the reference 'syscall_ptr' in:" + ], + "start_col": 29, + "start_line": 17 + } + }, + "408": { + "accessible_scopes": [ + "openzeppelin.introspection.erc165.library", + "openzeppelin.introspection.erc165.library.ERC165", + "openzeppelin.introspection.erc165.library.ERC165.supports_interface" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 75, + "end_line": 17, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/introspection/erc165/library.cairo" + }, + "parent_location": [ + { + "end_col": 75, + "end_line": 17, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/introspection/erc165/library.cairo" + }, + "parent_location": [ + { + "end_col": 35, + "end_line": 21, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/introspection/erc165/library.cairo" + }, + "start_col": 13, + "start_line": 21 + }, + "While trying to retrieve the implicit argument 'pedersen_ptr' in:" + ], + "start_col": 49, + "start_line": 17 + }, + "While expanding the reference 'pedersen_ptr' in:" + ], + "start_col": 49, + "start_line": 17 + } + }, + "409": { + "accessible_scopes": [ + "openzeppelin.introspection.erc165.library", + "openzeppelin.introspection.erc165.library.ERC165", + "openzeppelin.introspection.erc165.library.ERC165.supports_interface" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 92, + "end_line": 17, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/introspection/erc165/library.cairo" + }, + "parent_location": [ + { + "end_col": 92, + "end_line": 17, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/introspection/erc165/library.cairo" + }, + "parent_location": [ + { + "end_col": 35, + "end_line": 21, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/introspection/erc165/library.cairo" + }, + "start_col": 13, + "start_line": 21 + }, + "While trying to retrieve the implicit argument 'range_check_ptr' in:" + ], + "start_col": 77, + "start_line": 17 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 77, + "start_line": 17 + } + }, + "410": { + "accessible_scopes": [ + "openzeppelin.introspection.erc165.library", + "openzeppelin.introspection.erc165.library.ERC165", + "openzeppelin.introspection.erc165.library.ERC165.supports_interface" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 33, + "end_line": 21, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/introspection/erc165/library.cairo" + }, + "start_col": 29, + "start_line": 21 + } + }, + "412": { + "accessible_scopes": [ + "openzeppelin.introspection.erc165.library", + "openzeppelin.introspection.erc165.library.ERC165", + "openzeppelin.introspection.erc165.library.ERC165.supports_interface" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 35, + "end_line": 21, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/introspection/erc165/library.cairo" + }, + "start_col": 13, + "start_line": 21 + } + }, + "413": { + "accessible_scopes": [ + "openzeppelin.introspection.erc165.library", + "openzeppelin.introspection.erc165.library.ERC165", + "openzeppelin.introspection.erc165.library.ERC165.supports_interface" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 47, + "end_line": 17, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/introspection/erc165/library.cairo" + }, + "parent_location": [ + { + "end_col": 33, + "end_line": 13, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC165_supported_interfaces/decl.cairo" + }, + "parent_location": [ + { + "end_col": 76, + "end_line": 25, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/introspection/erc165/library.cairo" + }, + "start_col": 30, + "start_line": 25 + }, + "While trying to retrieve the implicit argument 'syscall_ptr' in:" + ], + "start_col": 15, + "start_line": 13 + }, + "While expanding the reference 'syscall_ptr' in:" + ], + "start_col": 29, + "start_line": 17 + } + }, + "414": { + "accessible_scopes": [ + "openzeppelin.introspection.erc165.library", + "openzeppelin.introspection.erc165.library.ERC165", + "openzeppelin.introspection.erc165.library.ERC165.supports_interface" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 75, + "end_line": 17, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/introspection/erc165/library.cairo" + }, + "parent_location": [ + { + "end_col": 61, + "end_line": 13, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC165_supported_interfaces/decl.cairo" + }, + "parent_location": [ + { + "end_col": 76, + "end_line": 25, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/introspection/erc165/library.cairo" + }, + "start_col": 30, + "start_line": 25 + }, + "While trying to retrieve the implicit argument 'pedersen_ptr' in:" + ], + "start_col": 35, + "start_line": 13 + }, + "While expanding the reference 'pedersen_ptr' in:" + ], + "start_col": 49, + "start_line": 17 + } + }, + "415": { + "accessible_scopes": [ + "openzeppelin.introspection.erc165.library", + "openzeppelin.introspection.erc165.library.ERC165", + "openzeppelin.introspection.erc165.library.ERC165.supports_interface" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 92, + "end_line": 17, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/introspection/erc165/library.cairo" + }, + "parent_location": [ + { + "end_col": 78, + "end_line": 13, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC165_supported_interfaces/decl.cairo" + }, + "parent_location": [ + { + "end_col": 76, + "end_line": 25, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/introspection/erc165/library.cairo" + }, + "start_col": 30, + "start_line": 25 + }, + "While trying to retrieve the implicit argument 'range_check_ptr' in:" + ], + "start_col": 63, + "start_line": 13 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 77, + "start_line": 17 + } + }, + "416": { + "accessible_scopes": [ + "openzeppelin.introspection.erc165.library", + "openzeppelin.introspection.erc165.library.ERC165", + "openzeppelin.introspection.erc165.library.ERC165.supports_interface" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 27, + "end_line": 18, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/introspection/erc165/library.cairo" + }, + "parent_location": [ + { + "end_col": 75, + "end_line": 25, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/introspection/erc165/library.cairo" + }, + "start_col": 63, + "start_line": 25 + }, + "While expanding the reference 'interface_id' in:" + ], + "start_col": 9, + "start_line": 18 + } + }, + "417": { + "accessible_scopes": [ + "openzeppelin.introspection.erc165.library", + "openzeppelin.introspection.erc165.library.ERC165", + "openzeppelin.introspection.erc165.library.ERC165.supports_interface" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 76, + "end_line": 25, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/introspection/erc165/library.cairo" + }, + "start_col": 30, + "start_line": 25 + } + }, + "419": { + "accessible_scopes": [ + "openzeppelin.introspection.erc165.library", + "openzeppelin.introspection.erc165.library.ERC165", + "openzeppelin.introspection.erc165.library.ERC165.supports_interface" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 39, + "end_line": 26, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/introspection/erc165/library.cairo" + }, + "start_col": 9, + "start_line": 26 + } + }, + "420": { + "accessible_scopes": [ + "openzeppelin.introspection.erc165.library", + "openzeppelin.introspection.erc165.library.ERC165", + "openzeppelin.introspection.erc165.library.ERC165.register_interface" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 27, + "end_line": 30, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/introspection/erc165/library.cairo" + }, + "parent_location": [ + { + "end_col": 42, + "end_line": 33, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/introspection/erc165/library.cairo" + }, + "start_col": 30, + "start_line": 33 + }, + "While expanding the reference 'interface_id' in:" + ], + "start_col": 9, + "start_line": 30 + } + }, + "421": { + "accessible_scopes": [ + "openzeppelin.introspection.erc165.library", + "openzeppelin.introspection.erc165.library.ERC165", + "openzeppelin.introspection.erc165.library.ERC165.register_interface" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 54, + "end_line": 33, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/introspection/erc165/library.cairo" + }, + "start_col": 44, + "start_line": 33 + } + }, + "423": { + "accessible_scopes": [ + "openzeppelin.introspection.erc165.library", + "openzeppelin.introspection.erc165.library.ERC165", + "openzeppelin.introspection.erc165.library.ERC165.register_interface" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 55, + "end_line": 33, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/introspection/erc165/library.cairo" + }, + "start_col": 13, + "start_line": 33 + } + }, + "425": { + "accessible_scopes": [ + "openzeppelin.introspection.erc165.library", + "openzeppelin.introspection.erc165.library.ERC165", + "openzeppelin.introspection.erc165.library.ERC165.register_interface" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 47, + "end_line": 29, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/introspection/erc165/library.cairo" + }, + "parent_location": [ + { + "end_col": 34, + "end_line": 21, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC165_supported_interfaces/decl.cairo" + }, + "parent_location": [ + { + "end_col": 62, + "end_line": 35, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/introspection/erc165/library.cairo" + }, + "start_col": 9, + "start_line": 35 + }, + "While trying to retrieve the implicit argument 'syscall_ptr' in:" + ], + "start_col": 16, + "start_line": 21 + }, + "While expanding the reference 'syscall_ptr' in:" + ], + "start_col": 29, + "start_line": 29 + } + }, + "426": { + "accessible_scopes": [ + "openzeppelin.introspection.erc165.library", + "openzeppelin.introspection.erc165.library.ERC165", + "openzeppelin.introspection.erc165.library.ERC165.register_interface" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 75, + "end_line": 29, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/introspection/erc165/library.cairo" + }, + "parent_location": [ + { + "end_col": 62, + "end_line": 21, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC165_supported_interfaces/decl.cairo" + }, + "parent_location": [ + { + "end_col": 62, + "end_line": 35, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/introspection/erc165/library.cairo" + }, + "start_col": 9, + "start_line": 35 + }, + "While trying to retrieve the implicit argument 'pedersen_ptr' in:" + ], + "start_col": 36, + "start_line": 21 + }, + "While expanding the reference 'pedersen_ptr' in:" + ], + "start_col": 49, + "start_line": 29 + } + }, + "427": { + "accessible_scopes": [ + "openzeppelin.introspection.erc165.library", + "openzeppelin.introspection.erc165.library.ERC165", + "openzeppelin.introspection.erc165.library.ERC165.register_interface" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 92, + "end_line": 29, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/introspection/erc165/library.cairo" + }, + "parent_location": [ + { + "end_col": 79, + "end_line": 21, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC165_supported_interfaces/decl.cairo" + }, + "parent_location": [ + { + "end_col": 62, + "end_line": 35, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/introspection/erc165/library.cairo" + }, + "start_col": 9, + "start_line": 35 + }, + "While trying to retrieve the implicit argument 'range_check_ptr' in:" + ], + "start_col": 64, + "start_line": 21 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 77, + "start_line": 29 + } + }, + "428": { + "accessible_scopes": [ + "openzeppelin.introspection.erc165.library", + "openzeppelin.introspection.erc165.library.ERC165", + "openzeppelin.introspection.erc165.library.ERC165.register_interface" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 27, + "end_line": 30, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/introspection/erc165/library.cairo" + }, + "parent_location": [ + { + "end_col": 55, + "end_line": 35, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/introspection/erc165/library.cairo" + }, + "start_col": 43, + "start_line": 35 + }, + "While expanding the reference 'interface_id' in:" + ], + "start_col": 9, + "start_line": 30 + } + }, + "429": { + "accessible_scopes": [ + "openzeppelin.introspection.erc165.library", + "openzeppelin.introspection.erc165.library.ERC165", + "openzeppelin.introspection.erc165.library.ERC165.register_interface" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 61, + "end_line": 35, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/introspection/erc165/library.cairo" + }, + "start_col": 57, + "start_line": 35 + } + }, + "431": { + "accessible_scopes": [ + "openzeppelin.introspection.erc165.library", + "openzeppelin.introspection.erc165.library.ERC165", + "openzeppelin.introspection.erc165.library.ERC165.register_interface" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 62, + "end_line": 35, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/introspection/erc165/library.cairo" + }, + "start_col": 9, + "start_line": 35 + } + }, + "433": { + "accessible_scopes": [ + "openzeppelin.introspection.erc165.library", + "openzeppelin.introspection.erc165.library.ERC165", + "openzeppelin.introspection.erc165.library.ERC165.register_interface" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 19, + "end_line": 36, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/introspection/erc165/library.cairo" + }, + "start_col": 9, + "start_line": 36 + } + }, + "434": { + "accessible_scopes": [ + "starkware.cairo.common.math_cmp", + "starkware.cairo.common.math_cmp.is_not_zero" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 7, + "end_line": 8, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/math_cmp.cairo" + }, + "start_col": 5, + "start_line": 8 + } + }, + "436": { + "accessible_scopes": [ + "starkware.cairo.common.math_cmp", + "starkware.cairo.common.math_cmp.is_not_zero" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 17, + "end_line": 9, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/math_cmp.cairo" + }, + "start_col": 16, + "start_line": 9 + } + }, + "438": { + "accessible_scopes": [ + "starkware.cairo.common.math_cmp", + "starkware.cairo.common.math_cmp.is_not_zero" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 18, + "end_line": 9, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/math_cmp.cairo" + }, + "start_col": 9, + "start_line": 9 + } + }, + "439": { + "accessible_scopes": [ + "starkware.cairo.common.math_cmp", + "starkware.cairo.common.math_cmp.is_not_zero" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 13, + "end_line": 12, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/math_cmp.cairo" + }, + "start_col": 12, + "start_line": 12 + } + }, + "441": { + "accessible_scopes": [ + "starkware.cairo.common.math_cmp", + "starkware.cairo.common.math_cmp.is_not_zero" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 14, + "end_line": 12, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/math_cmp.cairo" + }, + "start_col": 5, + "start_line": 12 + } + }, + "442": { + "accessible_scopes": [ + "starkware.cairo.common.math_cmp", + "starkware.cairo.common.math_cmp.is_nn" + ], + "flow_tracking_data": null, + "hints": [ + { + "location": { + "end_col": 84, + "end_line": 19, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/math_cmp.cairo" + }, + "start_col": 5, + "start_line": 19 + }, + "n_prefix_newlines": 0 + } + ], + "inst": { + "end_col": 40, + "end_line": 20, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/math_cmp.cairo" + }, + "start_col": 5, + "start_line": 20 + } + }, + "444": { + "accessible_scopes": [ + "starkware.cairo.common.math_cmp", + "starkware.cairo.common.math_cmp.is_nn" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 26, + "end_line": 21, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/math_cmp.cairo" + }, + "start_col": 5, + "start_line": 21 + } + }, + "445": { + "accessible_scopes": [ + "starkware.cairo.common.math_cmp", + "starkware.cairo.common.math_cmp.is_nn" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 13, + "end_line": 22, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/math_cmp.cairo" + }, + "start_col": 5, + "start_line": 22 + } + }, + "447": { + "accessible_scopes": [ + "starkware.cairo.common.math_cmp", + "starkware.cairo.common.math_cmp.is_nn" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 46, + "end_line": 23, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/math_cmp.cairo" + }, + "parent_location": [ + { + "end_col": 27, + "end_line": 18, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/math_cmp.cairo" + }, + "parent_location": [ + { + "end_col": 14, + "end_line": 24, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/math_cmp.cairo" + }, + "start_col": 5, + "start_line": 24 + }, + "While trying to retrieve the implicit argument 'range_check_ptr' in:" + ], + "start_col": 12, + "start_line": 18 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 27, + "start_line": 23 + } + }, + "449": { + "accessible_scopes": [ + "starkware.cairo.common.math_cmp", + "starkware.cairo.common.math_cmp.is_nn" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 13, + "end_line": 24, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/math_cmp.cairo" + }, + "start_col": 12, + "start_line": 24 + } + }, + "451": { + "accessible_scopes": [ + "starkware.cairo.common.math_cmp", + "starkware.cairo.common.math_cmp.is_nn" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 14, + "end_line": 24, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/math_cmp.cairo" + }, + "start_col": 5, + "start_line": 24 + } + }, + "452": { + "accessible_scopes": [ + "starkware.cairo.common.math_cmp", + "starkware.cairo.common.math_cmp.is_nn" + ], + "flow_tracking_data": null, + "hints": [ + { + "location": { + "end_col": 91, + "end_line": 27, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/math_cmp.cairo" + }, + "start_col": 5, + "start_line": 27 + }, + "n_prefix_newlines": 0 + } + ], + "inst": { + "end_col": 48, + "end_line": 28, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/math_cmp.cairo" + }, + "start_col": 5, + "start_line": 28 + } + }, + "454": { + "accessible_scopes": [ + "starkware.cairo.common.math_cmp", + "starkware.cairo.common.math_cmp.is_nn" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 35, + "end_line": 29, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/math_cmp.cairo" + }, + "start_col": 33, + "start_line": 29 + } + }, + "456": { + "accessible_scopes": [ + "starkware.cairo.common.math_cmp", + "starkware.cairo.common.math_cmp.is_nn" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 40, + "end_line": 29, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/math_cmp.cairo" + }, + "start_col": 32, + "start_line": 29 + } + }, + "458": { + "accessible_scopes": [ + "starkware.cairo.common.math_cmp", + "starkware.cairo.common.math_cmp.is_nn" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 41, + "end_line": 29, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/math_cmp.cairo" + }, + "start_col": 5, + "start_line": 29 + } + }, + "459": { + "accessible_scopes": [ + "starkware.cairo.common.math_cmp", + "starkware.cairo.common.math_cmp.is_nn" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 13, + "end_line": 30, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/math_cmp.cairo" + }, + "start_col": 5, + "start_line": 30 + } + }, + "461": { + "accessible_scopes": [ + "starkware.cairo.common.math_cmp", + "starkware.cairo.common.math_cmp.is_nn" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 46, + "end_line": 31, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/math_cmp.cairo" + }, + "parent_location": [ + { + "end_col": 27, + "end_line": 18, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/math_cmp.cairo" + }, + "parent_location": [ + { + "end_col": 14, + "end_line": 32, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/math_cmp.cairo" + }, + "start_col": 5, + "start_line": 32 + }, + "While trying to retrieve the implicit argument 'range_check_ptr' in:" + ], + "start_col": 12, + "start_line": 18 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 27, + "start_line": 31 + } + }, + "463": { + "accessible_scopes": [ + "starkware.cairo.common.math_cmp", + "starkware.cairo.common.math_cmp.is_nn" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 13, + "end_line": 32, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/math_cmp.cairo" + }, + "start_col": 12, + "start_line": 32 + } + }, + "465": { + "accessible_scopes": [ + "starkware.cairo.common.math_cmp", + "starkware.cairo.common.math_cmp.is_nn" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 14, + "end_line": 32, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/math_cmp.cairo" + }, + "start_col": 5, + "start_line": 32 + } + }, + "466": { + "accessible_scopes": [ + "starkware.cairo.common.math_cmp", + "starkware.cairo.common.math_cmp.is_nn" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 27, + "end_line": 18, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/math_cmp.cairo" + }, + "parent_location": [ + { + "end_col": 36, + "end_line": 154, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/math.cairo" + }, + "parent_location": [ + { + "end_col": 32, + "end_line": 35, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/math_cmp.cairo" + }, + "start_col": 5, + "start_line": 35 + }, + "While trying to retrieve the implicit argument 'range_check_ptr' in:" + ], + "start_col": 21, + "start_line": 154 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 12, + "start_line": 18 + } + }, + "467": { + "accessible_scopes": [ + "starkware.cairo.common.math_cmp", + "starkware.cairo.common.math_cmp.is_nn" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 28, + "end_line": 35, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/math_cmp.cairo" + }, + "start_col": 20, + "start_line": 35 + } + }, + "469": { + "accessible_scopes": [ + "starkware.cairo.common.math_cmp", + "starkware.cairo.common.math_cmp.is_nn" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 30, + "end_line": 18, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/math_cmp.cairo" + }, + "parent_location": [ + { + "end_col": 31, + "end_line": 35, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/math_cmp.cairo" + }, + "start_col": 30, + "start_line": 35 + }, + "While expanding the reference 'a' in:" + ], + "start_col": 29, + "start_line": 18 + } + }, + "470": { + "accessible_scopes": [ + "starkware.cairo.common.math_cmp", + "starkware.cairo.common.math_cmp.is_nn" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 32, + "end_line": 35, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/math_cmp.cairo" + }, + "start_col": 5, + "start_line": 35 + } + }, + "472": { + "accessible_scopes": [ + "starkware.cairo.common.math_cmp", + "starkware.cairo.common.math_cmp.is_nn" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 13, + "end_line": 36, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/math_cmp.cairo" + }, + "start_col": 12, + "start_line": 36 + } + }, + "474": { + "accessible_scopes": [ + "starkware.cairo.common.math_cmp", + "starkware.cairo.common.math_cmp.is_nn" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 14, + "end_line": 36, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/math_cmp.cairo" + }, + "start_col": 5, + "start_line": 36 + } + }, + "475": { + "accessible_scopes": [ + "starkware.cairo.common.math_cmp", + "starkware.cairo.common.math_cmp.is_le" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 27, + "end_line": 42, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/math_cmp.cairo" + }, + "parent_location": [ + { + "end_col": 27, + "end_line": 18, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/math_cmp.cairo" + }, + "parent_location": [ + { + "end_col": 24, + "end_line": 43, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/math_cmp.cairo" + }, + "start_col": 12, + "start_line": 43 + }, + "While trying to retrieve the implicit argument 'range_check_ptr' in:" + ], + "start_col": 12, + "start_line": 18 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 12, + "start_line": 42 + } + }, + "476": { + "accessible_scopes": [ + "starkware.cairo.common.math_cmp", + "starkware.cairo.common.math_cmp.is_le" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 23, + "end_line": 43, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/math_cmp.cairo" + }, + "start_col": 18, + "start_line": 43 + } + }, + "477": { + "accessible_scopes": [ + "starkware.cairo.common.math_cmp", + "starkware.cairo.common.math_cmp.is_le" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 24, + "end_line": 43, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/math_cmp.cairo" + }, + "start_col": 12, + "start_line": 43 + } + }, + "479": { + "accessible_scopes": [ + "starkware.cairo.common.math_cmp", + "starkware.cairo.common.math_cmp.is_le" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 25, + "end_line": 43, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/math_cmp.cairo" + }, + "start_col": 5, + "start_line": 43 + } + }, + "480": { + "accessible_scopes": [ + "starkware.cairo.common.math_cmp", + "starkware.cairo.common.math_cmp.is_le_felt" + ], + "flow_tracking_data": null, + "hints": [ + { + "location": { + "end_col": 70, + "end_line": 80, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/math_cmp.cairo" + }, + "start_col": 5, + "start_line": 80 + }, + "n_prefix_newlines": 0 + } + ], + "inst": { + "end_col": 34, + "end_line": 81, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/math_cmp.cairo" + }, + "start_col": 5, + "start_line": 81 + } + }, + "482": { + "accessible_scopes": [ + "starkware.cairo.common.math_cmp", + "starkware.cairo.common.math_cmp.is_le_felt" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 12, + "end_line": 82, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/math_cmp.cairo" + }, + "start_col": 5, + "start_line": 82 + } + }, + "484": { + "accessible_scopes": [ + "starkware.cairo.common.math_cmp", + "starkware.cairo.common.math_cmp.is_le_felt" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 32, + "end_line": 79, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/math_cmp.cairo" + }, + "parent_location": [ + { + "end_col": 36, + "end_line": 154, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/math.cairo" + }, + "parent_location": [ + { + "end_col": 25, + "end_line": 83, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/math_cmp.cairo" + }, + "start_col": 5, + "start_line": 83 + }, + "While trying to retrieve the implicit argument 'range_check_ptr' in:" + ], + "start_col": 21, + "start_line": 154 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 17, + "start_line": 79 + } + }, + "485": { + "accessible_scopes": [ + "starkware.cairo.common.math_cmp", + "starkware.cairo.common.math_cmp.is_le_felt" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 35, + "end_line": 79, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/math_cmp.cairo" + }, + "parent_location": [ + { + "end_col": 21, + "end_line": 83, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/math_cmp.cairo" + }, + "start_col": 20, + "start_line": 83 + }, + "While expanding the reference 'a' in:" + ], + "start_col": 34, + "start_line": 79 + } + }, + "486": { + "accessible_scopes": [ + "starkware.cairo.common.math_cmp", + "starkware.cairo.common.math_cmp.is_le_felt" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 38, + "end_line": 79, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/math_cmp.cairo" + }, + "parent_location": [ + { + "end_col": 24, + "end_line": 83, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/math_cmp.cairo" + }, + "start_col": 23, + "start_line": 83 + }, + "While expanding the reference 'b' in:" + ], + "start_col": 37, + "start_line": 79 + } + }, + "487": { + "accessible_scopes": [ + "starkware.cairo.common.math_cmp", + "starkware.cairo.common.math_cmp.is_le_felt" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 25, + "end_line": 83, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/math_cmp.cairo" + }, + "start_col": 5, + "start_line": 83 + } + }, + "489": { + "accessible_scopes": [ + "starkware.cairo.common.math_cmp", + "starkware.cairo.common.math_cmp.is_le_felt" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 13, + "end_line": 84, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/math_cmp.cairo" + }, + "start_col": 12, + "start_line": 84 + } + }, + "491": { + "accessible_scopes": [ + "starkware.cairo.common.math_cmp", + "starkware.cairo.common.math_cmp.is_le_felt" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 14, + "end_line": 84, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/math_cmp.cairo" + }, + "start_col": 5, + "start_line": 84 + } + }, + "492": { + "accessible_scopes": [ + "starkware.cairo.common.math_cmp", + "starkware.cairo.common.math_cmp.is_le_felt" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 32, + "end_line": 79, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/math_cmp.cairo" + }, + "parent_location": [ + { + "end_col": 36, + "end_line": 223, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/math.cairo" + }, + "parent_location": [ + { + "end_col": 25, + "end_line": 87, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/math_cmp.cairo" + }, + "start_col": 5, + "start_line": 87 + }, + "While trying to retrieve the implicit argument 'range_check_ptr' in:" + ], + "start_col": 21, + "start_line": 223 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 17, + "start_line": 79 + } + }, + "493": { + "accessible_scopes": [ + "starkware.cairo.common.math_cmp", + "starkware.cairo.common.math_cmp.is_le_felt" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 38, + "end_line": 79, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/math_cmp.cairo" + }, + "parent_location": [ + { + "end_col": 21, + "end_line": 87, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/math_cmp.cairo" + }, + "start_col": 20, + "start_line": 87 + }, + "While expanding the reference 'b' in:" + ], + "start_col": 37, + "start_line": 79 + } + }, + "494": { + "accessible_scopes": [ + "starkware.cairo.common.math_cmp", + "starkware.cairo.common.math_cmp.is_le_felt" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 35, + "end_line": 79, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/math_cmp.cairo" + }, + "parent_location": [ + { + "end_col": 24, + "end_line": 87, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/math_cmp.cairo" + }, + "start_col": 23, + "start_line": 87 + }, + "While expanding the reference 'a' in:" + ], + "start_col": 34, + "start_line": 79 + } + }, + "495": { + "accessible_scopes": [ + "starkware.cairo.common.math_cmp", + "starkware.cairo.common.math_cmp.is_le_felt" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 25, + "end_line": 87, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/math_cmp.cairo" + }, + "start_col": 5, + "start_line": 87 + } + }, + "497": { + "accessible_scopes": [ + "starkware.cairo.common.math_cmp", + "starkware.cairo.common.math_cmp.is_le_felt" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 13, + "end_line": 88, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/math_cmp.cairo" + }, + "start_col": 12, + "start_line": 88 + } + }, + "499": { + "accessible_scopes": [ + "starkware.cairo.common.math_cmp", + "starkware.cairo.common.math_cmp.is_le_felt" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 14, + "end_line": 88, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/math_cmp.cairo" + }, + "start_col": 5, + "start_line": 88 + } + }, + "500": { + "accessible_scopes": [ + "starkware.cairo.common.uint256", + "starkware.cairo.common.uint256.uint256_check" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 30, + "end_line": 22, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/uint256.cairo" + }, + "start_col": 5, + "start_line": 22 + } + }, + "501": { + "accessible_scopes": [ + "starkware.cairo.common.uint256", + "starkware.cairo.common.uint256.uint256_check" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 35, + "end_line": 23, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/uint256.cairo" + }, + "start_col": 5, + "start_line": 23 + } + }, + "502": { + "accessible_scopes": [ + "starkware.cairo.common.uint256", + "starkware.cairo.common.uint256.uint256_check" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 46, + "end_line": 24, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/uint256.cairo" + }, + "parent_location": [ + { + "end_col": 35, + "end_line": 21, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/uint256.cairo" + }, + "parent_location": [ + { + "end_col": 15, + "end_line": 25, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/uint256.cairo" + }, + "start_col": 5, + "start_line": 25 + }, + "While trying to retrieve the implicit argument 'range_check_ptr' in:" + ], + "start_col": 20, + "start_line": 21 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 27, + "start_line": 24 + } + }, + "504": { + "accessible_scopes": [ + "starkware.cairo.common.uint256", + "starkware.cairo.common.uint256.uint256_check" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 15, + "end_line": 25, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/uint256.cairo" + }, + "start_col": 5, + "start_line": 25 + } + }, + "505": { + "accessible_scopes": [ + "starkware.cairo.common.uint256", + "starkware.cairo.common.uint256.uint256_add" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 18, + "end_line": 32, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/uint256.cairo" + }, + "start_col": 5, + "start_line": 32 + } + }, + "507": { + "accessible_scopes": [ + "starkware.cairo.common.uint256", + "starkware.cairo.common.uint256.uint256_add" + ], + "flow_tracking_data": null, + "hints": [ + { + "location": { + "end_col": 7, + "end_line": 41, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/uint256.cairo" + }, + "start_col": 5, + "start_line": 36 + }, + "n_prefix_newlines": 1 + } + ], + "inst": { + "end_col": 46, + "end_line": 43, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/uint256.cairo" + }, + "start_col": 5, + "start_line": 43 + } + }, + "508": { + "accessible_scopes": [ + "starkware.cairo.common.uint256", + "starkware.cairo.common.uint256.uint256_add" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 49, + "end_line": 44, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/uint256.cairo" + }, + "start_col": 5, + "start_line": 44 + } + }, + "509": { + "accessible_scopes": [ + "starkware.cairo.common.uint256", + "starkware.cairo.common.uint256.uint256_add" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 35, + "end_line": 46, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/uint256.cairo" + }, + "start_col": 22, + "start_line": 46 + } + }, + "510": { + "accessible_scopes": [ + "starkware.cairo.common.uint256", + "starkware.cairo.common.uint256.uint256_add" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 55, + "end_line": 46, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/uint256.cairo" + }, + "start_col": 38, + "start_line": 46 + } + }, + "512": { + "accessible_scopes": [ + "starkware.cairo.common.uint256", + "starkware.cairo.common.uint256.uint256_add" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 56, + "end_line": 46, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/uint256.cairo" + }, + "start_col": 5, + "start_line": 46 + } + }, + "513": { + "accessible_scopes": [ + "starkware.cairo.common.uint256", + "starkware.cairo.common.uint256.uint256_add" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 38, + "end_line": 47, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/uint256.cairo" + }, + "start_col": 23, + "start_line": 47 + } + }, + "514": { + "accessible_scopes": [ + "starkware.cairo.common.uint256", + "starkware.cairo.common.uint256.uint256_add" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 50, + "end_line": 47, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/uint256.cairo" + }, + "start_col": 23, + "start_line": 47 + } + }, + "515": { + "accessible_scopes": [ + "starkware.cairo.common.uint256", + "starkware.cairo.common.uint256.uint256_add" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 71, + "end_line": 47, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/uint256.cairo" + }, + "start_col": 53, + "start_line": 47 + } + }, + "517": { + "accessible_scopes": [ + "starkware.cairo.common.uint256", + "starkware.cairo.common.uint256.uint256_add" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 72, + "end_line": 47, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/uint256.cairo" + }, + "start_col": 5, + "start_line": 47 + } + }, + "518": { + "accessible_scopes": [ + "starkware.cairo.common.uint256", + "starkware.cairo.common.uint256.uint256_add" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 33, + "end_line": 31, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/uint256.cairo" + }, + "parent_location": [ + { + "end_col": 35, + "end_line": 21, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/uint256.cairo" + }, + "parent_location": [ + { + "end_col": 23, + "end_line": 48, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/uint256.cairo" + }, + "start_col": 5, + "start_line": 48 + }, + "While trying to retrieve the implicit argument 'range_check_ptr' in:" + ], + "start_col": 20, + "start_line": 21 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 18, + "start_line": 31 + } + }, + "519": { + "accessible_scopes": [ + "starkware.cairo.common.uint256", + "starkware.cairo.common.uint256.uint256_add" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 14, + "end_line": 33, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/uint256.cairo" + }, + "parent_location": [ + { + "end_col": 22, + "end_line": 48, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/uint256.cairo" + }, + "start_col": 19, + "start_line": 48 + }, + "While expanding the reference 'res' in:" + ], + "start_col": 11, + "start_line": 33 + } + }, + "520": { + "accessible_scopes": [ + "starkware.cairo.common.uint256", + "starkware.cairo.common.uint256.uint256_add" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 14, + "end_line": 33, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/uint256.cairo" + }, + "parent_location": [ + { + "end_col": 22, + "end_line": 48, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/uint256.cairo" + }, + "start_col": 19, + "start_line": 48 + }, + "While expanding the reference 'res' in:" + ], + "start_col": 11, + "start_line": 33 + } + }, + "521": { + "accessible_scopes": [ + "starkware.cairo.common.uint256", + "starkware.cairo.common.uint256.uint256_add" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 23, + "end_line": 48, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/uint256.cairo" + }, + "start_col": 5, + "start_line": 48 + } + }, + "523": { + "accessible_scopes": [ + "starkware.cairo.common.uint256", + "starkware.cairo.common.uint256.uint256_add" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 14, + "end_line": 33, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/uint256.cairo" + }, + "parent_location": [ + { + "end_col": 16, + "end_line": 50, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/uint256.cairo" + }, + "start_col": 13, + "start_line": 50 + }, + "While expanding the reference 'res' in:" + ], + "start_col": 11, + "start_line": 33 + } + }, + "524": { + "accessible_scopes": [ + "starkware.cairo.common.uint256", + "starkware.cairo.common.uint256.uint256_add" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 14, + "end_line": 33, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/uint256.cairo" + }, + "parent_location": [ + { + "end_col": 16, + "end_line": 50, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/uint256.cairo" + }, + "start_col": 13, + "start_line": 50 + }, + "While expanding the reference 'res' in:" + ], + "start_col": 11, + "start_line": 33 + } + }, + "525": { + "accessible_scopes": [ + "starkware.cairo.common.uint256", + "starkware.cairo.common.uint256.uint256_add" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 21, + "end_line": 35, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/uint256.cairo" + }, + "parent_location": [ + { + "end_col": 28, + "end_line": 50, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/uint256.cairo" + }, + "start_col": 18, + "start_line": 50 + }, + "While expanding the reference 'carry_high' in:" + ], + "start_col": 11, + "start_line": 35 + } + }, + "526": { + "accessible_scopes": [ + "starkware.cairo.common.uint256", + "starkware.cairo.common.uint256.uint256_add" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 30, + "end_line": 50, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/uint256.cairo" + }, + "start_col": 5, + "start_line": 50 + } + }, + "527": { + "accessible_scopes": [ + "starkware.cairo.common.uint256", + "starkware.cairo.common.uint256.split_64" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 18, + "end_line": 56, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/uint256.cairo" + }, + "start_col": 5, + "start_line": 56 + } + }, + "529": { + "accessible_scopes": [ + "starkware.cairo.common.uint256", + "starkware.cairo.common.uint256.split_64" + ], + "flow_tracking_data": null, + "hints": [ + { + "location": { + "end_col": 7, + "end_line": 63, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/uint256.cairo" + }, + "start_col": 5, + "start_line": 60 + }, + "n_prefix_newlines": 1 + } + ], + "inst": { + "end_col": 39, + "end_line": 64, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/uint256.cairo" + }, + "start_col": 22, + "start_line": 64 + } + }, + "531": { + "accessible_scopes": [ + "starkware.cairo.common.uint256", + "starkware.cairo.common.uint256.split_64" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 40, + "end_line": 64, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/uint256.cairo" + }, + "start_col": 5, + "start_line": 64 + } + }, + "532": { + "accessible_scopes": [ + "starkware.cairo.common.uint256", + "starkware.cairo.common.uint256.split_64" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 40, + "end_line": 65, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/uint256.cairo" + }, + "start_col": 5, + "start_line": 65 + } + }, + "533": { + "accessible_scopes": [ + "starkware.cairo.common.uint256", + "starkware.cairo.common.uint256.split_64" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 50, + "end_line": 66, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/uint256.cairo" + }, + "start_col": 36, + "start_line": 66 + } + }, + "535": { + "accessible_scopes": [ + "starkware.cairo.common.uint256", + "starkware.cairo.common.uint256.split_64" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 56, + "end_line": 66, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/uint256.cairo" + }, + "start_col": 36, + "start_line": 66 + } + }, + "536": { + "accessible_scopes": [ + "starkware.cairo.common.uint256", + "starkware.cairo.common.uint256.split_64" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 57, + "end_line": 66, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/uint256.cairo" + }, + "start_col": 5, + "start_line": 66 + } + }, + "537": { + "accessible_scopes": [ + "starkware.cairo.common.uint256", + "starkware.cairo.common.uint256.split_64" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 41, + "end_line": 67, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/uint256.cairo" + }, + "start_col": 5, + "start_line": 67 + } + }, + "538": { + "accessible_scopes": [ + "starkware.cairo.common.uint256", + "starkware.cairo.common.uint256.split_64" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 46, + "end_line": 68, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/uint256.cairo" + }, + "parent_location": [ + { + "end_col": 30, + "end_line": 55, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/uint256.cairo" + }, + "parent_location": [ + { + "end_col": 24, + "end_line": 69, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/uint256.cairo" + }, + "start_col": 5, + "start_line": 69 + }, + "While trying to retrieve the implicit argument 'range_check_ptr' in:" + ], + "start_col": 15, + "start_line": 55 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 27, + "start_line": 68 + } + }, + "540": { + "accessible_scopes": [ + "starkware.cairo.common.uint256", + "starkware.cairo.common.uint256.split_64" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 14, + "end_line": 57, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/uint256.cairo" + }, + "parent_location": [ + { + "end_col": 16, + "end_line": 69, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/uint256.cairo" + }, + "start_col": 13, + "start_line": 69 + }, + "While expanding the reference 'low' in:" + ], + "start_col": 11, + "start_line": 57 + } + }, + "541": { + "accessible_scopes": [ + "starkware.cairo.common.uint256", + "starkware.cairo.common.uint256.split_64" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 15, + "end_line": 58, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/uint256.cairo" + }, + "parent_location": [ + { + "end_col": 22, + "end_line": 69, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/uint256.cairo" + }, + "start_col": 18, + "start_line": 69 + }, + "While expanding the reference 'high' in:" + ], + "start_col": 11, + "start_line": 58 + } + }, + "542": { + "accessible_scopes": [ + "starkware.cairo.common.uint256", + "starkware.cairo.common.uint256.split_64" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 24, + "end_line": 69, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/uint256.cairo" + }, + "start_col": 5, + "start_line": 69 + } + }, + "543": { + "accessible_scopes": [ + "starkware.cairo.common.uint256", + "starkware.cairo.common.uint256.uint256_lt" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 25, + "end_line": 134, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/uint256.cairo" + }, + "start_col": 9, + "start_line": 134 + } + }, + "544": { + "accessible_scopes": [ + "starkware.cairo.common.uint256", + "starkware.cairo.common.uint256.uint256_lt" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 7, + "end_line": 134, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/uint256.cairo" + }, + "start_col": 5, + "start_line": 134 + } + }, + "546": { + "accessible_scopes": [ + "starkware.cairo.common.uint256", + "starkware.cairo.common.uint256.uint256_lt" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 32, + "end_line": 133, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/uint256.cairo" + }, + "parent_location": [ + { + "end_col": 27, + "end_line": 42, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/math_cmp.cairo" + }, + "parent_location": [ + { + "end_col": 40, + "end_line": 135, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/uint256.cairo" + }, + "start_col": 17, + "start_line": 135 + }, + "While trying to retrieve the implicit argument 'range_check_ptr' in:" + ], + "start_col": 12, + "start_line": 42 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 17, + "start_line": 133 + } + }, + "547": { + "accessible_scopes": [ + "starkware.cairo.common.uint256", + "starkware.cairo.common.uint256.uint256_lt" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 32, + "end_line": 135, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/uint256.cairo" + }, + "start_col": 23, + "start_line": 135 + } + }, + "549": { + "accessible_scopes": [ + "starkware.cairo.common.uint256", + "starkware.cairo.common.uint256.uint256_lt" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 39, + "end_line": 135, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/uint256.cairo" + }, + "start_col": 34, + "start_line": 135 + } + }, + "550": { + "accessible_scopes": [ + "starkware.cairo.common.uint256", + "starkware.cairo.common.uint256.uint256_lt" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 40, + "end_line": 135, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/uint256.cairo" + }, + "start_col": 17, + "start_line": 135 + } + }, + "552": { + "accessible_scopes": [ + "starkware.cairo.common.uint256", + "starkware.cairo.common.uint256.uint256_lt" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 43, + "end_line": 135, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/uint256.cairo" + }, + "start_col": 9, + "start_line": 135 + } + }, + "553": { + "accessible_scopes": [ + "starkware.cairo.common.uint256", + "starkware.cairo.common.uint256.uint256_lt" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 32, + "end_line": 133, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/uint256.cairo" + }, + "parent_location": [ + { + "end_col": 27, + "end_line": 42, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/math_cmp.cairo" + }, + "parent_location": [ + { + "end_col": 38, + "end_line": 137, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/uint256.cairo" + }, + "start_col": 13, + "start_line": 137 + }, + "While trying to retrieve the implicit argument 'range_check_ptr' in:" + ], + "start_col": 12, + "start_line": 42 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 17, + "start_line": 133 + } + }, + "554": { + "accessible_scopes": [ + "starkware.cairo.common.uint256", + "starkware.cairo.common.uint256.uint256_lt" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 29, + "end_line": 137, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/uint256.cairo" + }, + "start_col": 19, + "start_line": 137 + } + }, + "556": { + "accessible_scopes": [ + "starkware.cairo.common.uint256", + "starkware.cairo.common.uint256.uint256_lt" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 37, + "end_line": 137, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/uint256.cairo" + }, + "start_col": 31, + "start_line": 137 + } + }, + "557": { + "accessible_scopes": [ + "starkware.cairo.common.uint256", + "starkware.cairo.common.uint256.uint256_lt" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 38, + "end_line": 137, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/uint256.cairo" + }, + "start_col": 13, + "start_line": 137 + } + }, + "559": { + "accessible_scopes": [ + "starkware.cairo.common.uint256", + "starkware.cairo.common.uint256.uint256_lt" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 41, + "end_line": 137, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/uint256.cairo" + }, + "start_col": 5, + "start_line": 137 + } + }, + "560": { + "accessible_scopes": [ + "starkware.cairo.common.uint256", + "starkware.cairo.common.uint256.uint256_le" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 32, + "end_line": 148, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/uint256.cairo" + }, + "parent_location": [ + { + "end_col": 32, + "end_line": 133, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/uint256.cairo" + }, + "parent_location": [ + { + "end_col": 40, + "end_line": 149, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/uint256.cairo" + }, + "start_col": 20, + "start_line": 149 + }, + "While trying to retrieve the implicit argument 'range_check_ptr' in:" + ], + "start_col": 17, + "start_line": 133 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 17, + "start_line": 148 + } + }, + "561": { + "accessible_scopes": [ + "starkware.cairo.common.uint256", + "starkware.cairo.common.uint256.uint256_le" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 56, + "end_line": 148, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/uint256.cairo" + }, + "parent_location": [ + { + "end_col": 34, + "end_line": 149, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/uint256.cairo" + }, + "start_col": 33, + "start_line": 149 + }, + "While expanding the reference 'b' in:" + ], + "start_col": 46, + "start_line": 148 + } + }, + "562": { + "accessible_scopes": [ + "starkware.cairo.common.uint256", + "starkware.cairo.common.uint256.uint256_le" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 56, + "end_line": 148, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/uint256.cairo" + }, + "parent_location": [ + { + "end_col": 34, + "end_line": 149, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/uint256.cairo" + }, + "start_col": 33, + "start_line": 149 + }, + "While expanding the reference 'b' in:" + ], + "start_col": 46, + "start_line": 148 + } + }, + "563": { + "accessible_scopes": [ + "starkware.cairo.common.uint256", + "starkware.cairo.common.uint256.uint256_le" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 44, + "end_line": 148, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/uint256.cairo" + }, + "parent_location": [ + { + "end_col": 39, + "end_line": 149, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/uint256.cairo" + }, + "start_col": 38, + "start_line": 149 + }, + "While expanding the reference 'a' in:" + ], + "start_col": 34, + "start_line": 148 + } + }, + "564": { + "accessible_scopes": [ + "starkware.cairo.common.uint256", + "starkware.cairo.common.uint256.uint256_le" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 44, + "end_line": 148, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/uint256.cairo" + }, + "parent_location": [ + { + "end_col": 39, + "end_line": 149, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/uint256.cairo" + }, + "start_col": 38, + "start_line": 149 + }, + "While expanding the reference 'a' in:" + ], + "start_col": 34, + "start_line": 148 + } + }, + "565": { + "accessible_scopes": [ + "starkware.cairo.common.uint256", + "starkware.cairo.common.uint256.uint256_le" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 40, + "end_line": 149, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/uint256.cairo" + }, + "start_col": 20, + "start_line": 149 + } + }, + "567": { + "accessible_scopes": [ + "starkware.cairo.common.uint256", + "starkware.cairo.common.uint256.uint256_le" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 18, + "end_line": 150, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/uint256.cairo" + }, + "start_col": 17, + "start_line": 150 + } + }, + "569": { + "accessible_scopes": [ + "starkware.cairo.common.uint256", + "starkware.cairo.common.uint256.uint256_le" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 32, + "end_line": 133, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/uint256.cairo" + }, + "parent_location": [ + { + "end_col": 40, + "end_line": 149, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/uint256.cairo" + }, + "parent_location": [ + { + "end_col": 32, + "end_line": 148, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/uint256.cairo" + }, + "parent_location": [ + { + "end_col": 29, + "end_line": 150, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/uint256.cairo" + }, + "start_col": 5, + "start_line": 150 + }, + "While trying to retrieve the implicit argument 'range_check_ptr' in:" + ], + "start_col": 17, + "start_line": 148 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 20, + "start_line": 149 + }, + "While trying to update the implicit return value 'range_check_ptr' in:" + ], + "start_col": 17, + "start_line": 133 + } + }, + "570": { + "accessible_scopes": [ + "starkware.cairo.common.uint256", + "starkware.cairo.common.uint256.uint256_le" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 27, + "end_line": 150, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/uint256.cairo" + }, + "start_col": 17, + "start_line": 150 + } + }, + "571": { + "accessible_scopes": [ + "starkware.cairo.common.uint256", + "starkware.cairo.common.uint256.uint256_le" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 29, + "end_line": 150, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/uint256.cairo" + }, + "start_col": 5, + "start_line": 150 + } + }, + "572": { + "accessible_scopes": [ + "starkware.cairo.common.uint256", + "starkware.cairo.common.uint256.uint256_not" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 37, + "end_line": 285, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/uint256.cairo" + }, + "start_col": 29, + "start_line": 285 + } + }, + "574": { + "accessible_scopes": [ + "starkware.cairo.common.uint256", + "starkware.cairo.common.uint256.uint256_not" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 60, + "end_line": 285, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/uint256.cairo" + }, + "start_col": 52, + "start_line": 285 + } + }, + "576": { + "accessible_scopes": [ + "starkware.cairo.common.uint256", + "starkware.cairo.common.uint256.uint256_not" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 33, + "end_line": 284, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/uint256.cairo" + }, + "parent_location": [ + { + "end_col": 33, + "end_line": 284, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/uint256.cairo" + }, + "parent_location": [ + { + "end_col": 72, + "end_line": 285, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/uint256.cairo" + }, + "start_col": 5, + "start_line": 285 + }, + "While trying to retrieve the implicit argument 'range_check_ptr' in:" + ], + "start_col": 18, + "start_line": 284 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 18, + "start_line": 284 + } + }, + "577": { + "accessible_scopes": [ + "starkware.cairo.common.uint256", + "starkware.cairo.common.uint256.uint256_not" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 45, + "end_line": 285, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/uint256.cairo" + }, + "start_col": 29, + "start_line": 285 + } + }, + "578": { + "accessible_scopes": [ + "starkware.cairo.common.uint256", + "starkware.cairo.common.uint256.uint256_not" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 69, + "end_line": 285, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/uint256.cairo" + }, + "start_col": 52, + "start_line": 285 + } + }, + "579": { + "accessible_scopes": [ + "starkware.cairo.common.uint256", + "starkware.cairo.common.uint256.uint256_not" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 72, + "end_line": 285, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/uint256.cairo" + }, + "start_col": 5, + "start_line": 285 + } + }, + "580": { + "accessible_scopes": [ + "starkware.cairo.common.uint256", + "starkware.cairo.common.uint256.uint256_neg" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 33, + "end_line": 290, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/uint256.cairo" + }, + "parent_location": [ + { + "end_col": 33, + "end_line": 284, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/uint256.cairo" + }, + "parent_location": [ + { + "end_col": 35, + "end_line": 291, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/uint256.cairo" + }, + "start_col": 21, + "start_line": 291 + }, + "While trying to retrieve the implicit argument 'range_check_ptr' in:" + ], + "start_col": 18, + "start_line": 284 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 18, + "start_line": 290 + } + }, + "581": { + "accessible_scopes": [ + "starkware.cairo.common.uint256", + "starkware.cairo.common.uint256.uint256_neg" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 45, + "end_line": 290, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/uint256.cairo" + }, + "parent_location": [ + { + "end_col": 34, + "end_line": 291, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/uint256.cairo" + }, + "start_col": 33, + "start_line": 291 + }, + "While expanding the reference 'a' in:" + ], + "start_col": 35, + "start_line": 290 + } + }, + "582": { + "accessible_scopes": [ + "starkware.cairo.common.uint256", + "starkware.cairo.common.uint256.uint256_neg" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 45, + "end_line": 290, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/uint256.cairo" + }, + "parent_location": [ + { + "end_col": 34, + "end_line": 291, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/uint256.cairo" + }, + "start_col": 33, + "start_line": 291 + }, + "While expanding the reference 'a' in:" + ], + "start_col": 35, + "start_line": 290 + } + }, + "583": { + "accessible_scopes": [ + "starkware.cairo.common.uint256", + "starkware.cairo.common.uint256.uint256_neg" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 35, + "end_line": 291, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/uint256.cairo" + }, + "start_col": 21, + "start_line": 291 + } + }, + "585": { + "accessible_scopes": [ + "starkware.cairo.common.uint256", + "starkware.cairo.common.uint256.uint256_neg" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 54, + "end_line": 292, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/uint256.cairo" + }, + "start_col": 53, + "start_line": 292 + } + }, + "587": { + "accessible_scopes": [ + "starkware.cairo.common.uint256", + "starkware.cairo.common.uint256.uint256_neg" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 62, + "end_line": 292, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/uint256.cairo" + }, + "start_col": 61, + "start_line": 292 + } + }, + "589": { + "accessible_scopes": [ + "starkware.cairo.common.uint256", + "starkware.cairo.common.uint256.uint256_neg" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 64, + "end_line": 292, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/uint256.cairo" + }, + "start_col": 20, + "start_line": 292 + } + }, + "591": { + "accessible_scopes": [ + "starkware.cairo.common.uint256", + "starkware.cairo.common.uint256.uint256_neg" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 33, + "end_line": 31, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/uint256.cairo" + }, + "parent_location": [ + { + "end_col": 64, + "end_line": 292, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/uint256.cairo" + }, + "parent_location": [ + { + "end_col": 33, + "end_line": 290, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/uint256.cairo" + }, + "parent_location": [ + { + "end_col": 22, + "end_line": 293, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/uint256.cairo" + }, + "start_col": 5, + "start_line": 293 + }, + "While trying to retrieve the implicit argument 'range_check_ptr' in:" + ], + "start_col": 18, + "start_line": 290 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 20, + "start_line": 292 + }, + "While trying to update the implicit return value 'range_check_ptr' in:" + ], + "start_col": 18, + "start_line": 31 + } + }, + "592": { + "accessible_scopes": [ + "starkware.cairo.common.uint256", + "starkware.cairo.common.uint256.uint256_neg" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 13, + "end_line": 292, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/uint256.cairo" + }, + "parent_location": [ + { + "end_col": 20, + "end_line": 293, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/uint256.cairo" + }, + "start_col": 17, + "start_line": 293 + }, + "While expanding the reference 'res' in:" + ], + "start_col": 10, + "start_line": 292 + } + }, + "593": { + "accessible_scopes": [ + "starkware.cairo.common.uint256", + "starkware.cairo.common.uint256.uint256_neg" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 13, + "end_line": 292, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/uint256.cairo" + }, + "parent_location": [ + { + "end_col": 20, + "end_line": 293, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/uint256.cairo" + }, + "start_col": 17, + "start_line": 293 + }, + "While expanding the reference 'res' in:" + ], + "start_col": 10, + "start_line": 292 + } + }, + "594": { + "accessible_scopes": [ + "starkware.cairo.common.uint256", + "starkware.cairo.common.uint256.uint256_neg" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 22, + "end_line": 293, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/uint256.cairo" + }, + "start_col": 5, + "start_line": 293 + } + }, + "595": { + "accessible_scopes": [ + "starkware.cairo.common.uint256", + "starkware.cairo.common.uint256.uint256_sub" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 33, + "end_line": 348, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/uint256.cairo" + }, + "parent_location": [ + { + "end_col": 33, + "end_line": 290, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/uint256.cairo" + }, + "parent_location": [ + { + "end_col": 33, + "end_line": 349, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/uint256.cairo" + }, + "start_col": 19, + "start_line": 349 + }, + "While trying to retrieve the implicit argument 'range_check_ptr' in:" + ], + "start_col": 18, + "start_line": 290 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 18, + "start_line": 348 + } + }, + "596": { + "accessible_scopes": [ + "starkware.cairo.common.uint256", + "starkware.cairo.common.uint256.uint256_sub" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 57, + "end_line": 348, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/uint256.cairo" + }, + "parent_location": [ + { + "end_col": 32, + "end_line": 349, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/uint256.cairo" + }, + "start_col": 31, + "start_line": 349 + }, + "While expanding the reference 'b' in:" + ], + "start_col": 47, + "start_line": 348 + } + }, + "597": { + "accessible_scopes": [ + "starkware.cairo.common.uint256", + "starkware.cairo.common.uint256.uint256_sub" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 57, + "end_line": 348, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/uint256.cairo" + }, + "parent_location": [ + { + "end_col": 32, + "end_line": 349, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/uint256.cairo" + }, + "start_col": 31, + "start_line": 349 + }, + "While expanding the reference 'b' in:" + ], + "start_col": 47, + "start_line": 348 + } + }, + "598": { + "accessible_scopes": [ + "starkware.cairo.common.uint256", + "starkware.cairo.common.uint256.uint256_sub" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 33, + "end_line": 349, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/uint256.cairo" + }, + "start_col": 19, + "start_line": 349 + } + }, + "600": { + "accessible_scopes": [ + "starkware.cairo.common.uint256", + "starkware.cairo.common.uint256.uint256_sub" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 33, + "end_line": 290, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/uint256.cairo" + }, + "parent_location": [ + { + "end_col": 33, + "end_line": 349, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/uint256.cairo" + }, + "parent_location": [ + { + "end_col": 33, + "end_line": 31, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/uint256.cairo" + }, + "parent_location": [ + { + "end_col": 41, + "end_line": 350, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/uint256.cairo" + }, + "start_col": 20, + "start_line": 350 + }, + "While trying to retrieve the implicit argument 'range_check_ptr' in:" + ], + "start_col": 18, + "start_line": 31 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 19, + "start_line": 349 + }, + "While trying to update the implicit return value 'range_check_ptr' in:" + ], + "start_col": 18, + "start_line": 290 + } + }, + "601": { + "accessible_scopes": [ + "starkware.cairo.common.uint256", + "starkware.cairo.common.uint256.uint256_sub" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 45, + "end_line": 348, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/uint256.cairo" + }, + "parent_location": [ + { + "end_col": 33, + "end_line": 350, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/uint256.cairo" + }, + "start_col": 32, + "start_line": 350 + }, + "While expanding the reference 'a' in:" + ], + "start_col": 35, + "start_line": 348 + } + }, + "602": { + "accessible_scopes": [ + "starkware.cairo.common.uint256", + "starkware.cairo.common.uint256.uint256_sub" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 45, + "end_line": 348, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/uint256.cairo" + }, + "parent_location": [ + { + "end_col": 33, + "end_line": 350, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/uint256.cairo" + }, + "start_col": 32, + "start_line": 350 + }, + "While expanding the reference 'a' in:" + ], + "start_col": 35, + "start_line": 348 + } + }, + "603": { + "accessible_scopes": [ + "starkware.cairo.common.uint256", + "starkware.cairo.common.uint256.uint256_sub" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 15, + "end_line": 349, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/uint256.cairo" + }, + "parent_location": [ + { + "end_col": 40, + "end_line": 350, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/uint256.cairo" + }, + "start_col": 35, + "start_line": 350 + }, + "While expanding the reference 'b_neg' in:" + ], + "start_col": 10, + "start_line": 349 + } + }, + "604": { + "accessible_scopes": [ + "starkware.cairo.common.uint256", + "starkware.cairo.common.uint256.uint256_sub" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 15, + "end_line": 349, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/uint256.cairo" + }, + "parent_location": [ + { + "end_col": 40, + "end_line": 350, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/uint256.cairo" + }, + "start_col": 35, + "start_line": 350 + }, + "While expanding the reference 'b_neg' in:" + ], + "start_col": 10, + "start_line": 349 + } + }, + "605": { + "accessible_scopes": [ + "starkware.cairo.common.uint256", + "starkware.cairo.common.uint256.uint256_sub" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 41, + "end_line": 350, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/uint256.cairo" + }, + "start_col": 20, + "start_line": 350 + } + }, + "607": { + "accessible_scopes": [ + "starkware.cairo.common.uint256", + "starkware.cairo.common.uint256.uint256_sub" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 33, + "end_line": 31, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/uint256.cairo" + }, + "parent_location": [ + { + "end_col": 41, + "end_line": 350, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/uint256.cairo" + }, + "parent_location": [ + { + "end_col": 33, + "end_line": 348, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/uint256.cairo" + }, + "parent_location": [ + { + "end_col": 22, + "end_line": 351, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/uint256.cairo" + }, + "start_col": 5, + "start_line": 351 + }, + "While trying to retrieve the implicit argument 'range_check_ptr' in:" + ], + "start_col": 18, + "start_line": 348 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 20, + "start_line": 350 + }, + "While trying to update the implicit return value 'range_check_ptr' in:" + ], + "start_col": 18, + "start_line": 31 + } + }, + "608": { + "accessible_scopes": [ + "starkware.cairo.common.uint256", + "starkware.cairo.common.uint256.uint256_sub" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 13, + "end_line": 350, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/uint256.cairo" + }, + "parent_location": [ + { + "end_col": 20, + "end_line": 351, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/uint256.cairo" + }, + "start_col": 17, + "start_line": 351 + }, + "While expanding the reference 'res' in:" + ], + "start_col": 10, + "start_line": 350 + } + }, + "609": { + "accessible_scopes": [ + "starkware.cairo.common.uint256", + "starkware.cairo.common.uint256.uint256_sub" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 13, + "end_line": 350, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/uint256.cairo" + }, + "parent_location": [ + { + "end_col": 20, + "end_line": 351, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/uint256.cairo" + }, + "start_col": 17, + "start_line": 351 + }, + "While expanding the reference 'res' in:" + ], + "start_col": 10, + "start_line": 350 + } + }, + "610": { + "accessible_scopes": [ + "starkware.cairo.common.uint256", + "starkware.cairo.common.uint256.uint256_sub" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 22, + "end_line": 351, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/uint256.cairo" + }, + "start_col": 5, + "start_line": 351 + } + }, + "611": { + "accessible_scopes": [ + "starkware.cairo.common.uint256", + "starkware.cairo.common.uint256.uint256_eq" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 25, + "end_line": 358, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/uint256.cairo" + }, + "start_col": 9, + "start_line": 358 + } + }, + "612": { + "accessible_scopes": [ + "starkware.cairo.common.uint256", + "starkware.cairo.common.uint256.uint256_eq" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 7, + "end_line": 358, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/uint256.cairo" + }, + "start_col": 5, + "start_line": 358 + } + }, + "614": { + "accessible_scopes": [ + "starkware.cairo.common.uint256", + "starkware.cairo.common.uint256.uint256_eq" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 7, + "end_line": 358, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/uint256.cairo" + }, + "start_col": 5, + "start_line": 358 + } + }, + "616": { + "accessible_scopes": [ + "starkware.cairo.common.uint256", + "starkware.cairo.common.uint256.uint256_eq" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 32, + "end_line": 357, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/uint256.cairo" + }, + "parent_location": [ + { + "end_col": 32, + "end_line": 357, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/uint256.cairo" + }, + "parent_location": [ + { + "end_col": 24, + "end_line": 359, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/uint256.cairo" + }, + "start_col": 9, + "start_line": 359 + }, + "While trying to retrieve the implicit argument 'range_check_ptr' in:" + ], + "start_col": 17, + "start_line": 357 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 17, + "start_line": 357 + } + }, + "617": { + "accessible_scopes": [ + "starkware.cairo.common.uint256", + "starkware.cairo.common.uint256.uint256_eq" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 22, + "end_line": 359, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/uint256.cairo" + }, + "start_col": 21, + "start_line": 359 + } + }, + "619": { + "accessible_scopes": [ + "starkware.cairo.common.uint256", + "starkware.cairo.common.uint256.uint256_eq" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 24, + "end_line": 359, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/uint256.cairo" + }, + "start_col": 9, + "start_line": 359 + } + }, + "620": { + "accessible_scopes": [ + "starkware.cairo.common.uint256", + "starkware.cairo.common.uint256.uint256_eq" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 23, + "end_line": 361, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/uint256.cairo" + }, + "start_col": 9, + "start_line": 361 + } + }, + "621": { + "accessible_scopes": [ + "starkware.cairo.common.uint256", + "starkware.cairo.common.uint256.uint256_eq" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 7, + "end_line": 361, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/uint256.cairo" + }, + "start_col": 5, + "start_line": 361 + } + }, + "623": { + "accessible_scopes": [ + "starkware.cairo.common.uint256", + "starkware.cairo.common.uint256.uint256_eq" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 7, + "end_line": 361, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/uint256.cairo" + }, + "start_col": 5, + "start_line": 361 + } + }, + "625": { + "accessible_scopes": [ + "starkware.cairo.common.uint256", + "starkware.cairo.common.uint256.uint256_eq" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 32, + "end_line": 357, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/uint256.cairo" + }, + "parent_location": [ + { + "end_col": 32, + "end_line": 357, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/uint256.cairo" + }, + "parent_location": [ + { + "end_col": 24, + "end_line": 362, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/uint256.cairo" + }, + "start_col": 9, + "start_line": 362 + }, + "While trying to retrieve the implicit argument 'range_check_ptr' in:" + ], + "start_col": 17, + "start_line": 357 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 17, + "start_line": 357 + } + }, + "626": { + "accessible_scopes": [ + "starkware.cairo.common.uint256", + "starkware.cairo.common.uint256.uint256_eq" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 22, + "end_line": 362, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/uint256.cairo" + }, + "start_col": 21, + "start_line": 362 + } + }, + "628": { + "accessible_scopes": [ + "starkware.cairo.common.uint256", + "starkware.cairo.common.uint256.uint256_eq" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 24, + "end_line": 362, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/uint256.cairo" + }, + "start_col": 9, + "start_line": 362 + } + }, + "629": { + "accessible_scopes": [ + "starkware.cairo.common.uint256", + "starkware.cairo.common.uint256.uint256_eq" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 32, + "end_line": 357, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/uint256.cairo" + }, + "parent_location": [ + { + "end_col": 32, + "end_line": 357, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/uint256.cairo" + }, + "parent_location": [ + { + "end_col": 20, + "end_line": 364, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/uint256.cairo" + }, + "start_col": 5, + "start_line": 364 + }, + "While trying to retrieve the implicit argument 'range_check_ptr' in:" + ], + "start_col": 17, + "start_line": 357 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 17, + "start_line": 357 + } + }, + "630": { + "accessible_scopes": [ + "starkware.cairo.common.uint256", + "starkware.cairo.common.uint256.uint256_eq" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 18, + "end_line": 364, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/uint256.cairo" + }, + "start_col": 17, + "start_line": 364 + } + }, + "632": { + "accessible_scopes": [ + "starkware.cairo.common.uint256", + "starkware.cairo.common.uint256.uint256_eq" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 20, + "end_line": 364, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/uint256.cairo" + }, + "start_col": 5, + "start_line": 364 + } + }, + "633": { + "accessible_scopes": [ + "openzeppelin.token.erc20.IERC20", + "openzeppelin.token.erc20.IERC20.IERC20", + "openzeppelin.token.erc20.IERC20.IERC20.transferFrom" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 14, + "end_line": 2, + "input_file": { + "filename": "autogen/starknet/contract_interface/IERC20/transferFrom/64f7842b108e76706927b78270ac73c789c558c54431b3359e4441e63ec2a868.cairo" + }, + "parent_location": [ + { + "end_col": 22, + "end_line": 31, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc20/IERC20.cairo" + }, + "start_col": 10, + "start_line": 31 + }, + "While handling contract interface function:" + ], + "start_col": 1, + "start_line": 2 + } + }, + "635": { + "accessible_scopes": [ + "openzeppelin.token.erc20.IERC20", + "openzeppelin.token.erc20.IERC20.IERC20", + "openzeppelin.token.erc20.IERC20.IERC20.transferFrom" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 48, + "end_line": 3, + "input_file": { + "filename": "autogen/starknet/contract_interface/IERC20/transferFrom/64f7842b108e76706927b78270ac73c789c558c54431b3359e4441e63ec2a868.cairo" + }, + "parent_location": [ + { + "end_col": 22, + "end_line": 31, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc20/IERC20.cairo" + }, + "start_col": 10, + "start_line": 31 + }, + "While handling contract interface function:" + ], + "start_col": 41, + "start_line": 3 + } + }, + "637": { + "accessible_scopes": [ + "openzeppelin.token.erc20.IERC20", + "openzeppelin.token.erc20.IERC20.IERC20", + "openzeppelin.token.erc20.IERC20.IERC20.transferFrom" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 37, + "end_line": 3, + "input_file": { + "filename": "autogen/starknet/contract_interface/IERC20/transferFrom/64f7842b108e76706927b78270ac73c789c558c54431b3359e4441e63ec2a868.cairo" + }, + "parent_location": [ + { + "end_col": 22, + "end_line": 31, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc20/IERC20.cairo" + }, + "start_col": 10, + "start_line": 31 + }, + "While handling contract interface function:" + ], + "start_col": 6, + "start_line": 3 + } + }, + "638": { + "accessible_scopes": [ + "openzeppelin.token.erc20.IERC20", + "openzeppelin.token.erc20.IERC20.IERC20", + "openzeppelin.token.erc20.IERC20.IERC20.transferFrom" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 34, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/arg_processor/712c2a95dbae039e77112e72178da3f83d21edfc1285b387ccfa43e0f878d990.cairo" + }, + "parent_location": [ + { + "end_col": 29, + "end_line": 31, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc20/IERC20.cairo" + }, + "start_col": 23, + "start_line": 31 + }, + "While handling calldata argument 'sender'" + ], + "start_col": 1, + "start_line": 1 + } + }, + "639": { + "accessible_scopes": [ + "openzeppelin.token.erc20.IERC20", + "openzeppelin.token.erc20.IERC20.IERC20", + "openzeppelin.token.erc20.IERC20.IERC20.transferFrom" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 37, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/arg_processor/32dd5497db578c846b634f25154d0ffb622256766f5d2360a53f46e9c348ed3e.cairo" + }, + "parent_location": [ + { + "end_col": 46, + "end_line": 31, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc20/IERC20.cairo" + }, + "start_col": 37, + "start_line": 31 + }, + "While handling calldata argument 'recipient'" + ], + "start_col": 1, + "start_line": 1 + } + }, + "640": { + "accessible_scopes": [ + "openzeppelin.token.erc20.IERC20", + "openzeppelin.token.erc20.IERC20.IERC20", + "openzeppelin.token.erc20.IERC20.IERC20.transferFrom" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 52, + "end_line": 3, + "input_file": { + "filename": "autogen/starknet/arg_processor/502707e41b9f24cc24d98a88f76cd4304e8e77c4465a6a9402a5f1a76177b453.cairo" + }, + "parent_location": [ + { + "end_col": 60, + "end_line": 31, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc20/IERC20.cairo" + }, + "start_col": 54, + "start_line": 31 + }, + "While handling calldata argument 'amount'" + ], + "start_col": 1, + "start_line": 3 + } + }, + "641": { + "accessible_scopes": [ + "openzeppelin.token.erc20.IERC20", + "openzeppelin.token.erc20.IERC20.IERC20", + "openzeppelin.token.erc20.IERC20.IERC20.transferFrom" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 52, + "end_line": 4, + "input_file": { + "filename": "autogen/starknet/arg_processor/502707e41b9f24cc24d98a88f76cd4304e8e77c4465a6a9402a5f1a76177b453.cairo" + }, + "parent_location": [ + { + "end_col": 60, + "end_line": 31, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc20/IERC20.cairo" + }, + "start_col": 54, + "start_line": 31 + }, + "While handling calldata argument 'amount'" + ], + "start_col": 1, + "start_line": 4 + } + }, + "642": { + "accessible_scopes": [ + "openzeppelin.token.erc20.IERC20", + "openzeppelin.token.erc20.IERC20.IERC20", + "openzeppelin.token.erc20.IERC20.IERC20.transferFrom" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 40, + "end_line": 5, + "input_file": { + "filename": "autogen/starknet/arg_processor/502707e41b9f24cc24d98a88f76cd4304e8e77c4465a6a9402a5f1a76177b453.cairo" + }, + "parent_location": [ + { + "end_col": 60, + "end_line": 31, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc20/IERC20.cairo" + }, + "parent_location": [ + { + "end_col": 33, + "end_line": 5, + "input_file": { + "filename": "autogen/starknet/contract_interface/IERC20/transferFrom/b016d077f46f58d4cffabd707b4d3495a859d0f543f418223b1ea57e409144f2.cairo" + }, + "parent_location": [ + { + "end_col": 22, + "end_line": 31, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc20/IERC20.cairo" + }, + "start_col": 10, + "start_line": 31 + }, + "While handling contract interface function:" + ], + "start_col": 19, + "start_line": 5 + }, + "While expanding the reference '__calldata_ptr' in:" + ], + "start_col": 54, + "start_line": 31 + }, + "While handling calldata argument 'amount'" + ], + "start_col": 22, + "start_line": 5 + } + }, + "644": { + "accessible_scopes": [ + "openzeppelin.token.erc20.IERC20", + "openzeppelin.token.erc20.IERC20.IERC20", + "openzeppelin.token.erc20.IERC20.IERC20.transferFrom" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 37, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/contract_interface/IERC20/transferFrom/f8c7980cd46ed6d764c999318b5692736b724dc08c1bf96e92d1b77ddf37af10.cairo" + }, + "parent_location": [ + { + "end_col": 22, + "end_line": 31, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc20/IERC20.cairo" + }, + "parent_location": [ + { + "end_col": 38, + "end_line": 42, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/starknet/common/syscalls.cairo" + }, + "parent_location": [ + { + "end_col": 33, + "end_line": 6, + "input_file": { + "filename": "autogen/starknet/contract_interface/IERC20/transferFrom/b016d077f46f58d4cffabd707b4d3495a859d0f543f418223b1ea57e409144f2.cairo" + }, + "parent_location": [ + { + "end_col": 22, + "end_line": 31, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc20/IERC20.cairo" + }, + "start_col": 10, + "start_line": 31 + }, + "While handling contract interface function:" + ], + "start_col": 31, + "start_line": 2 + }, + "While trying to retrieve the implicit argument 'syscall_ptr' in:" + ], + "start_col": 20, + "start_line": 42 + }, + "While expanding the reference 'syscall_ptr' in:" + ], + "start_col": 10, + "start_line": 31 + }, + "While handling contract interface function:" + ], + "start_col": 19, + "start_line": 1 + } + }, + "645": { + "accessible_scopes": [ + "openzeppelin.token.erc20.IERC20", + "openzeppelin.token.erc20.IERC20.IERC20", + "openzeppelin.token.erc20.IERC20.IERC20.transferFrom" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 27, + "end_line": 2, + "input_file": { + "filename": "autogen/starknet/contract_interface/IERC20/transferFrom/f8c7980cd46ed6d764c999318b5692736b724dc08c1bf96e92d1b77ddf37af10.cairo" + }, + "parent_location": [ + { + "end_col": 22, + "end_line": 31, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc20/IERC20.cairo" + }, + "parent_location": [ + { + "end_col": 38, + "end_line": 3, + "input_file": { + "filename": "autogen/starknet/contract_interface/IERC20/transferFrom/b016d077f46f58d4cffabd707b4d3495a859d0f543f418223b1ea57e409144f2.cairo" + }, + "parent_location": [ + { + "end_col": 22, + "end_line": 31, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc20/IERC20.cairo" + }, + "start_col": 10, + "start_line": 31 + }, + "While handling contract interface function:" + ], + "start_col": 22, + "start_line": 3 + }, + "While expanding the reference 'contract_address' in:" + ], + "start_col": 10, + "start_line": 31 + }, + "While handling contract interface function:" + ], + "start_col": 5, + "start_line": 2 + } + }, + "646": { + "accessible_scopes": [ + "openzeppelin.token.erc20.IERC20", + "openzeppelin.token.erc20.IERC20.IERC20", + "openzeppelin.token.erc20.IERC20.IERC20.transferFrom" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 44, + "end_line": 4, + "input_file": { + "filename": "autogen/starknet/contract_interface/IERC20/transferFrom/b016d077f46f58d4cffabd707b4d3495a859d0f543f418223b1ea57e409144f2.cairo" + }, + "parent_location": [ + { + "end_col": 22, + "end_line": 31, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc20/IERC20.cairo" + }, + "start_col": 10, + "start_line": 31 + }, + "While handling contract interface function:" + ], + "start_col": 23, + "start_line": 4 + } + }, + "648": { + "accessible_scopes": [ + "openzeppelin.token.erc20.IERC20", + "openzeppelin.token.erc20.IERC20.IERC20", + "openzeppelin.token.erc20.IERC20.IERC20.transferFrom" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 54, + "end_line": 5, + "input_file": { + "filename": "autogen/starknet/contract_interface/IERC20/transferFrom/b016d077f46f58d4cffabd707b4d3495a859d0f543f418223b1ea57e409144f2.cairo" + }, + "parent_location": [ + { + "end_col": 22, + "end_line": 31, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc20/IERC20.cairo" + }, + "start_col": 10, + "start_line": 31 + }, + "While handling contract interface function:" + ], + "start_col": 19, + "start_line": 5 + } + }, + "649": { + "accessible_scopes": [ + "openzeppelin.token.erc20.IERC20", + "openzeppelin.token.erc20.IERC20.IERC20", + "openzeppelin.token.erc20.IERC20.IERC20.transferFrom" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 30, + "end_line": 3, + "input_file": { + "filename": "autogen/starknet/contract_interface/IERC20/transferFrom/64f7842b108e76706927b78270ac73c789c558c54431b3359e4441e63ec2a868.cairo" + }, + "parent_location": [ + { + "end_col": 22, + "end_line": 31, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc20/IERC20.cairo" + }, + "parent_location": [ + { + "end_col": 32, + "end_line": 6, + "input_file": { + "filename": "autogen/starknet/contract_interface/IERC20/transferFrom/b016d077f46f58d4cffabd707b4d3495a859d0f543f418223b1ea57e409144f2.cairo" + }, + "parent_location": [ + { + "end_col": 22, + "end_line": 31, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc20/IERC20.cairo" + }, + "start_col": 10, + "start_line": 31 + }, + "While handling contract interface function:" + ], + "start_col": 14, + "start_line": 6 + }, + "While expanding the reference 'calldata_ptr_start' in:" + ], + "start_col": 10, + "start_line": 31 + }, + "While handling contract interface function:" + ], + "start_col": 12, + "start_line": 3 + } + }, + "650": { + "accessible_scopes": [ + "openzeppelin.token.erc20.IERC20", + "openzeppelin.token.erc20.IERC20.IERC20", + "openzeppelin.token.erc20.IERC20.IERC20.transferFrom" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 33, + "end_line": 6, + "input_file": { + "filename": "autogen/starknet/contract_interface/IERC20/transferFrom/b016d077f46f58d4cffabd707b4d3495a859d0f543f418223b1ea57e409144f2.cairo" + }, + "parent_location": [ + { + "end_col": 22, + "end_line": 31, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc20/IERC20.cairo" + }, + "start_col": 10, + "start_line": 31 + }, + "While handling contract interface function:" + ], + "start_col": 31, + "start_line": 2 + } + }, + "652": { + "accessible_scopes": [ + "openzeppelin.token.erc20.IERC20", + "openzeppelin.token.erc20.IERC20.IERC20", + "openzeppelin.token.erc20.IERC20.IERC20.transferFrom" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 48, + "end_line": 2, + "input_file": { + "filename": "autogen/starknet/arg_processor/8ca78f1082aaedcf62c13aff4dffe5943aa04164c60cb6d9f03916c0319201df.cairo" + }, + "parent_location": [ + { + "end_col": 88, + "end_line": 31, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc20/IERC20.cairo" + }, + "parent_location": [ + { + "end_col": 53, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/arg_processor/accb388bcbbace5b6218198851efaad2a781c1339e305a37fab51afe90a3194a.cairo" + }, + "parent_location": [ + { + "end_col": 22, + "end_line": 31, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc20/IERC20.cairo" + }, + "parent_location": [ + { + "end_col": 49, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/arg_processor/96447016176d161dae83f414c4d3e33e78856e0ef69bc33f8d419f1c9b90f9c5.cairo" + }, + "parent_location": [ + { + "end_col": 22, + "end_line": 31, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc20/IERC20.cairo" + }, + "start_col": 10, + "start_line": 31 + }, + "While handling return values of" + ], + "start_col": 23, + "start_line": 1 + }, + "While expanding the reference '__return_value_actual_size' in:" + ], + "start_col": 10, + "start_line": 31 + }, + "While handling return values of" + ], + "start_col": 35, + "start_line": 1 + }, + "While expanding the reference '__return_value_ptr' in:" + ], + "start_col": 75, + "start_line": 31 + }, + "While handling return value 'success'" + ], + "start_col": 26, + "start_line": 2 + } + }, + "654": { + "accessible_scopes": [ + "openzeppelin.token.erc20.IERC20", + "openzeppelin.token.erc20.IERC20.IERC20", + "openzeppelin.token.erc20.IERC20.IERC20.transferFrom" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 50, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/arg_processor/96447016176d161dae83f414c4d3e33e78856e0ef69bc33f8d419f1c9b90f9c5.cairo" + }, + "parent_location": [ + { + "end_col": 22, + "end_line": 31, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc20/IERC20.cairo" + }, + "start_col": 10, + "start_line": 31 + }, + "While handling return values of" + ], + "start_col": 1, + "start_line": 1 + } + }, + "655": { + "accessible_scopes": [ + "openzeppelin.token.erc20.IERC20", + "openzeppelin.token.erc20.IERC20.IERC20", + "openzeppelin.token.erc20.IERC20.IERC20.transferFrom" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 38, + "end_line": 42, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/starknet/common/syscalls.cairo" + }, + "parent_location": [ + { + "end_col": 33, + "end_line": 6, + "input_file": { + "filename": "autogen/starknet/contract_interface/IERC20/transferFrom/b016d077f46f58d4cffabd707b4d3495a859d0f543f418223b1ea57e409144f2.cairo" + }, + "parent_location": [ + { + "end_col": 22, + "end_line": 31, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc20/IERC20.cairo" + }, + "parent_location": [ + { + "end_col": 37, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/contract_interface/IERC20/transferFrom/f8c7980cd46ed6d764c999318b5692736b724dc08c1bf96e92d1b77ddf37af10.cairo" + }, + "parent_location": [ + { + "end_col": 22, + "end_line": 31, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc20/IERC20.cairo" + }, + "parent_location": [ + { + "end_col": 46, + "end_line": 2, + "input_file": { + "filename": "autogen/starknet/contract_interface/IERC20/transferFrom/18abb29d0a089e1c243e4bd2b316687e6162b3321c14733ee37389da5d8b074f.cairo" + }, + "parent_location": [ + { + "end_col": 22, + "end_line": 31, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc20/IERC20.cairo" + }, + "start_col": 10, + "start_line": 31 + }, + "While handling contract interface function:" + ], + "start_col": 1, + "start_line": 2 + }, + "While trying to retrieve the implicit argument 'syscall_ptr' in:" + ], + "start_col": 10, + "start_line": 31 + }, + "While handling contract interface function:" + ], + "start_col": 19, + "start_line": 1 + }, + "While expanding the reference 'syscall_ptr' in:" + ], + "start_col": 10, + "start_line": 31 + }, + "While handling contract interface function:" + ], + "start_col": 31, + "start_line": 2 + }, + "While trying to update the implicit return value 'syscall_ptr' in:" + ], + "start_col": 20, + "start_line": 42 + } + }, + "656": { + "accessible_scopes": [ + "openzeppelin.token.erc20.IERC20", + "openzeppelin.token.erc20.IERC20.IERC20", + "openzeppelin.token.erc20.IERC20.IERC20.transferFrom" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 54, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/contract_interface/IERC20/transferFrom/f8c7980cd46ed6d764c999318b5692736b724dc08c1bf96e92d1b77ddf37af10.cairo" + }, + "parent_location": [ + { + "end_col": 22, + "end_line": 31, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc20/IERC20.cairo" + }, + "parent_location": [ + { + "end_col": 54, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/contract_interface/IERC20/transferFrom/f8c7980cd46ed6d764c999318b5692736b724dc08c1bf96e92d1b77ddf37af10.cairo" + }, + "parent_location": [ + { + "end_col": 22, + "end_line": 31, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc20/IERC20.cairo" + }, + "parent_location": [ + { + "end_col": 46, + "end_line": 2, + "input_file": { + "filename": "autogen/starknet/contract_interface/IERC20/transferFrom/18abb29d0a089e1c243e4bd2b316687e6162b3321c14733ee37389da5d8b074f.cairo" + }, + "parent_location": [ + { + "end_col": 22, + "end_line": 31, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc20/IERC20.cairo" + }, + "start_col": 10, + "start_line": 31 + }, + "While handling contract interface function:" + ], + "start_col": 1, + "start_line": 2 + }, + "While trying to retrieve the implicit argument 'range_check_ptr' in:" + ], + "start_col": 10, + "start_line": 31 + }, + "While handling contract interface function:" + ], + "start_col": 39, + "start_line": 1 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 10, + "start_line": 31 + }, + "While handling contract interface function:" + ], + "start_col": 39, + "start_line": 1 + } + }, + "657": { + "accessible_scopes": [ + "openzeppelin.token.erc20.IERC20", + "openzeppelin.token.erc20.IERC20.IERC20", + "openzeppelin.token.erc20.IERC20.IERC20.transferFrom" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 54, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/arg_processor/8ca78f1082aaedcf62c13aff4dffe5943aa04164c60cb6d9f03916c0319201df.cairo" + }, + "parent_location": [ + { + "end_col": 88, + "end_line": 31, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc20/IERC20.cairo" + }, + "parent_location": [ + { + "end_col": 43, + "end_line": 2, + "input_file": { + "filename": "autogen/starknet/contract_interface/IERC20/transferFrom/18abb29d0a089e1c243e4bd2b316687e6162b3321c14733ee37389da5d8b074f.cairo" + }, + "parent_location": [ + { + "end_col": 22, + "end_line": 31, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc20/IERC20.cairo" + }, + "start_col": 10, + "start_line": 31 + }, + "While handling contract interface function:" + ], + "start_col": 17, + "start_line": 2 + }, + "While expanding the reference '__return_value_arg_success' in:" + ], + "start_col": 75, + "start_line": 31 + }, + "While handling return value 'success'" + ], + "start_col": 34, + "start_line": 1 + } + }, + "658": { + "accessible_scopes": [ + "openzeppelin.token.erc20.IERC20", + "openzeppelin.token.erc20.IERC20.IERC20", + "openzeppelin.token.erc20.IERC20.IERC20.transferFrom" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 46, + "end_line": 2, + "input_file": { + "filename": "autogen/starknet/contract_interface/IERC20/transferFrom/18abb29d0a089e1c243e4bd2b316687e6162b3321c14733ee37389da5d8b074f.cairo" + }, + "parent_location": [ + { + "end_col": 22, + "end_line": 31, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc20/IERC20.cairo" + }, + "start_col": 10, + "start_line": 31 + }, + "While handling contract interface function:" + ], + "start_col": 1, + "start_line": 2 + } + }, + "659": { + "accessible_scopes": [ + "openzeppelin.security.safemath.library", + "openzeppelin.security.safemath.library.SafeUint256", + "openzeppelin.security.safemath.library.SafeUint256.add" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 29, + "end_line": 23, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/security/safemath/library.cairo" + }, + "parent_location": [ + { + "end_col": 35, + "end_line": 21, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/uint256.cairo" + }, + "parent_location": [ + { + "end_col": 25, + "end_line": 24, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/security/safemath/library.cairo" + }, + "start_col": 9, + "start_line": 24 + }, + "While trying to retrieve the implicit argument 'range_check_ptr' in:" + ], + "start_col": 20, + "start_line": 21 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 14, + "start_line": 23 + } + }, + "660": { + "accessible_scopes": [ + "openzeppelin.security.safemath.library", + "openzeppelin.security.safemath.library.SafeUint256", + "openzeppelin.security.safemath.library.SafeUint256.add" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 41, + "end_line": 23, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/security/safemath/library.cairo" + }, + "parent_location": [ + { + "end_col": 24, + "end_line": 24, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/security/safemath/library.cairo" + }, + "start_col": 23, + "start_line": 24 + }, + "While expanding the reference 'a' in:" + ], + "start_col": 31, + "start_line": 23 + } + }, + "661": { + "accessible_scopes": [ + "openzeppelin.security.safemath.library", + "openzeppelin.security.safemath.library.SafeUint256", + "openzeppelin.security.safemath.library.SafeUint256.add" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 41, + "end_line": 23, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/security/safemath/library.cairo" + }, + "parent_location": [ + { + "end_col": 24, + "end_line": 24, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/security/safemath/library.cairo" + }, + "start_col": 23, + "start_line": 24 + }, + "While expanding the reference 'a' in:" + ], + "start_col": 31, + "start_line": 23 + } + }, + "662": { + "accessible_scopes": [ + "openzeppelin.security.safemath.library", + "openzeppelin.security.safemath.library.SafeUint256", + "openzeppelin.security.safemath.library.SafeUint256.add" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 25, + "end_line": 24, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/security/safemath/library.cairo" + }, + "start_col": 9, + "start_line": 24 + } + }, + "664": { + "accessible_scopes": [ + "openzeppelin.security.safemath.library", + "openzeppelin.security.safemath.library.SafeUint256", + "openzeppelin.security.safemath.library.SafeUint256.add" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 53, + "end_line": 23, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/security/safemath/library.cairo" + }, + "parent_location": [ + { + "end_col": 24, + "end_line": 25, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/security/safemath/library.cairo" + }, + "start_col": 23, + "start_line": 25 + }, + "While expanding the reference 'b' in:" + ], + "start_col": 43, + "start_line": 23 + } + }, + "665": { + "accessible_scopes": [ + "openzeppelin.security.safemath.library", + "openzeppelin.security.safemath.library.SafeUint256", + "openzeppelin.security.safemath.library.SafeUint256.add" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 53, + "end_line": 23, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/security/safemath/library.cairo" + }, + "parent_location": [ + { + "end_col": 24, + "end_line": 25, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/security/safemath/library.cairo" + }, + "start_col": 23, + "start_line": 25 + }, + "While expanding the reference 'b' in:" + ], + "start_col": 43, + "start_line": 23 + } + }, + "666": { + "accessible_scopes": [ + "openzeppelin.security.safemath.library", + "openzeppelin.security.safemath.library.SafeUint256", + "openzeppelin.security.safemath.library.SafeUint256.add" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 25, + "end_line": 25, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/security/safemath/library.cairo" + }, + "start_col": 9, + "start_line": 25 + } + }, + "668": { + "accessible_scopes": [ + "openzeppelin.security.safemath.library", + "openzeppelin.security.safemath.library.SafeUint256", + "openzeppelin.security.safemath.library.SafeUint256.add" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 41, + "end_line": 23, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/security/safemath/library.cairo" + }, + "parent_location": [ + { + "end_col": 54, + "end_line": 26, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/security/safemath/library.cairo" + }, + "start_col": 53, + "start_line": 26 + }, + "While expanding the reference 'a' in:" + ], + "start_col": 31, + "start_line": 23 + } + }, + "669": { + "accessible_scopes": [ + "openzeppelin.security.safemath.library", + "openzeppelin.security.safemath.library.SafeUint256", + "openzeppelin.security.safemath.library.SafeUint256.add" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 41, + "end_line": 23, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/security/safemath/library.cairo" + }, + "parent_location": [ + { + "end_col": 54, + "end_line": 26, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/security/safemath/library.cairo" + }, + "start_col": 53, + "start_line": 26 + }, + "While expanding the reference 'a' in:" + ], + "start_col": 31, + "start_line": 23 + } + }, + "670": { + "accessible_scopes": [ + "openzeppelin.security.safemath.library", + "openzeppelin.security.safemath.library.SafeUint256", + "openzeppelin.security.safemath.library.SafeUint256.add" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 53, + "end_line": 23, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/security/safemath/library.cairo" + }, + "parent_location": [ + { + "end_col": 57, + "end_line": 26, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/security/safemath/library.cairo" + }, + "start_col": 56, + "start_line": 26 + }, + "While expanding the reference 'b' in:" + ], + "start_col": 43, + "start_line": 23 + } + }, + "671": { + "accessible_scopes": [ + "openzeppelin.security.safemath.library", + "openzeppelin.security.safemath.library.SafeUint256", + "openzeppelin.security.safemath.library.SafeUint256.add" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 53, + "end_line": 23, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/security/safemath/library.cairo" + }, + "parent_location": [ + { + "end_col": 57, + "end_line": 26, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/security/safemath/library.cairo" + }, + "start_col": 56, + "start_line": 26 + }, + "While expanding the reference 'b' in:" + ], + "start_col": 43, + "start_line": 23 + } + }, + "672": { + "accessible_scopes": [ + "openzeppelin.security.safemath.library", + "openzeppelin.security.safemath.library.SafeUint256", + "openzeppelin.security.safemath.library.SafeUint256.add" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 58, + "end_line": 26, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/security/safemath/library.cairo" + }, + "start_col": 41, + "start_line": 26 + } + }, + "674": { + "accessible_scopes": [ + "openzeppelin.security.safemath.library", + "openzeppelin.security.safemath.library.SafeUint256", + "openzeppelin.security.safemath.library.SafeUint256.add" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 40, + "end_line": 28, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/security/safemath/library.cairo" + }, + "start_col": 13, + "start_line": 28 + } + }, + "676": { + "accessible_scopes": [ + "openzeppelin.security.safemath.library", + "openzeppelin.security.safemath.library.SafeUint256", + "openzeppelin.security.safemath.library.SafeUint256.add" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 33, + "end_line": 31, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/uint256.cairo" + }, + "parent_location": [ + { + "end_col": 58, + "end_line": 26, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/security/safemath/library.cairo" + }, + "parent_location": [ + { + "end_col": 29, + "end_line": 23, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/security/safemath/library.cairo" + }, + "parent_location": [ + { + "end_col": 22, + "end_line": 30, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/security/safemath/library.cairo" + }, + "start_col": 9, + "start_line": 30 + }, + "While trying to retrieve the implicit argument 'range_check_ptr' in:" + ], + "start_col": 14, + "start_line": 23 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 41, + "start_line": 26 + }, + "While trying to update the implicit return value 'range_check_ptr' in:" + ], + "start_col": 18, + "start_line": 31 + } + }, + "677": { + "accessible_scopes": [ + "openzeppelin.security.safemath.library", + "openzeppelin.security.safemath.library.SafeUint256", + "openzeppelin.security.safemath.library.SafeUint256.add" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 24, + "end_line": 26, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/security/safemath/library.cairo" + }, + "parent_location": [ + { + "end_col": 20, + "end_line": 30, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/security/safemath/library.cairo" + }, + "start_col": 19, + "start_line": 30 + }, + "While expanding the reference 'c' in:" + ], + "start_col": 14, + "start_line": 26 + } + }, + "678": { + "accessible_scopes": [ + "openzeppelin.security.safemath.library", + "openzeppelin.security.safemath.library.SafeUint256", + "openzeppelin.security.safemath.library.SafeUint256.add" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 24, + "end_line": 26, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/security/safemath/library.cairo" + }, + "parent_location": [ + { + "end_col": 20, + "end_line": 30, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/security/safemath/library.cairo" + }, + "start_col": 19, + "start_line": 30 + }, + "While expanding the reference 'c' in:" + ], + "start_col": 14, + "start_line": 26 + } + }, + "679": { + "accessible_scopes": [ + "openzeppelin.security.safemath.library", + "openzeppelin.security.safemath.library.SafeUint256", + "openzeppelin.security.safemath.library.SafeUint256.add" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 22, + "end_line": 30, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/security/safemath/library.cairo" + }, + "start_col": 9, + "start_line": 30 + } + }, + "680": { + "accessible_scopes": [ + "openzeppelin.security.safemath.library", + "openzeppelin.security.safemath.library.SafeUint256", + "openzeppelin.security.safemath.library.SafeUint256.sub_le" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 22, + "end_line": 36, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/security/safemath/library.cairo" + }, + "start_col": 9, + "start_line": 36 + } + }, + "682": { + "accessible_scopes": [ + "openzeppelin.security.safemath.library", + "openzeppelin.security.safemath.library.SafeUint256", + "openzeppelin.security.safemath.library.SafeUint256.sub_le" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 32, + "end_line": 35, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/security/safemath/library.cairo" + }, + "parent_location": [ + { + "end_col": 35, + "end_line": 21, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/uint256.cairo" + }, + "parent_location": [ + { + "end_col": 25, + "end_line": 37, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/security/safemath/library.cairo" + }, + "start_col": 9, + "start_line": 37 + }, + "While trying to retrieve the implicit argument 'range_check_ptr' in:" + ], + "start_col": 20, + "start_line": 21 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 17, + "start_line": 35 + } + }, + "683": { + "accessible_scopes": [ + "openzeppelin.security.safemath.library", + "openzeppelin.security.safemath.library.SafeUint256", + "openzeppelin.security.safemath.library.SafeUint256.sub_le" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 44, + "end_line": 35, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/security/safemath/library.cairo" + }, + "parent_location": [ + { + "end_col": 24, + "end_line": 37, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/security/safemath/library.cairo" + }, + "start_col": 23, + "start_line": 37 + }, + "While expanding the reference 'a' in:" + ], + "start_col": 34, + "start_line": 35 + } + }, + "684": { + "accessible_scopes": [ + "openzeppelin.security.safemath.library", + "openzeppelin.security.safemath.library.SafeUint256", + "openzeppelin.security.safemath.library.SafeUint256.sub_le" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 44, + "end_line": 35, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/security/safemath/library.cairo" + }, + "parent_location": [ + { + "end_col": 24, + "end_line": 37, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/security/safemath/library.cairo" + }, + "start_col": 23, + "start_line": 37 + }, + "While expanding the reference 'a' in:" + ], + "start_col": 34, + "start_line": 35 + } + }, + "685": { + "accessible_scopes": [ + "openzeppelin.security.safemath.library", + "openzeppelin.security.safemath.library.SafeUint256", + "openzeppelin.security.safemath.library.SafeUint256.sub_le" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 25, + "end_line": 37, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/security/safemath/library.cairo" + }, + "start_col": 9, + "start_line": 37 + } + }, + "687": { + "accessible_scopes": [ + "openzeppelin.security.safemath.library", + "openzeppelin.security.safemath.library.SafeUint256", + "openzeppelin.security.safemath.library.SafeUint256.sub_le" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 56, + "end_line": 35, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/security/safemath/library.cairo" + }, + "parent_location": [ + { + "end_col": 24, + "end_line": 38, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/security/safemath/library.cairo" + }, + "start_col": 23, + "start_line": 38 + }, + "While expanding the reference 'b' in:" + ], + "start_col": 46, + "start_line": 35 + } + }, + "688": { + "accessible_scopes": [ + "openzeppelin.security.safemath.library", + "openzeppelin.security.safemath.library.SafeUint256", + "openzeppelin.security.safemath.library.SafeUint256.sub_le" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 56, + "end_line": 35, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/security/safemath/library.cairo" + }, + "parent_location": [ + { + "end_col": 24, + "end_line": 38, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/security/safemath/library.cairo" + }, + "start_col": 23, + "start_line": 38 + }, + "While expanding the reference 'b' in:" + ], + "start_col": 46, + "start_line": 35 + } + }, + "689": { + "accessible_scopes": [ + "openzeppelin.security.safemath.library", + "openzeppelin.security.safemath.library.SafeUint256", + "openzeppelin.security.safemath.library.SafeUint256.sub_le" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 25, + "end_line": 38, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/security/safemath/library.cairo" + }, + "start_col": 9, + "start_line": 38 + } + }, + "691": { + "accessible_scopes": [ + "openzeppelin.security.safemath.library", + "openzeppelin.security.safemath.library.SafeUint256", + "openzeppelin.security.safemath.library.SafeUint256.sub_le" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 56, + "end_line": 35, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/security/safemath/library.cairo" + }, + "parent_location": [ + { + "end_col": 35, + "end_line": 39, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/security/safemath/library.cairo" + }, + "start_col": 34, + "start_line": 39 + }, + "While expanding the reference 'b' in:" + ], + "start_col": 46, + "start_line": 35 + } + }, + "692": { + "accessible_scopes": [ + "openzeppelin.security.safemath.library", + "openzeppelin.security.safemath.library.SafeUint256", + "openzeppelin.security.safemath.library.SafeUint256.sub_le" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 56, + "end_line": 35, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/security/safemath/library.cairo" + }, + "parent_location": [ + { + "end_col": 35, + "end_line": 39, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/security/safemath/library.cairo" + }, + "start_col": 34, + "start_line": 39 + }, + "While expanding the reference 'b' in:" + ], + "start_col": 46, + "start_line": 35 + } + }, + "693": { + "accessible_scopes": [ + "openzeppelin.security.safemath.library", + "openzeppelin.security.safemath.library.SafeUint256", + "openzeppelin.security.safemath.library.SafeUint256.sub_le" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 44, + "end_line": 35, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/security/safemath/library.cairo" + }, + "parent_location": [ + { + "end_col": 38, + "end_line": 39, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/security/safemath/library.cairo" + }, + "start_col": 37, + "start_line": 39 + }, + "While expanding the reference 'a' in:" + ], + "start_col": 34, + "start_line": 35 + } + }, + "694": { + "accessible_scopes": [ + "openzeppelin.security.safemath.library", + "openzeppelin.security.safemath.library.SafeUint256", + "openzeppelin.security.safemath.library.SafeUint256.sub_le" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 44, + "end_line": 35, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/security/safemath/library.cairo" + }, + "parent_location": [ + { + "end_col": 38, + "end_line": 39, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/security/safemath/library.cairo" + }, + "start_col": 37, + "start_line": 39 + }, + "While expanding the reference 'a' in:" + ], + "start_col": 34, + "start_line": 35 + } + }, + "695": { + "accessible_scopes": [ + "openzeppelin.security.safemath.library", + "openzeppelin.security.safemath.library.SafeUint256", + "openzeppelin.security.safemath.library.SafeUint256.sub_le" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 39, + "end_line": 39, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/security/safemath/library.cairo" + }, + "start_col": 23, + "start_line": 39 + } + }, + "697": { + "accessible_scopes": [ + "openzeppelin.security.safemath.library", + "openzeppelin.security.safemath.library.SafeUint256", + "openzeppelin.security.safemath.library.SafeUint256.sub_le" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 33, + "end_line": 41, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/security/safemath/library.cairo" + }, + "start_col": 13, + "start_line": 41 + } + }, + "699": { + "accessible_scopes": [ + "openzeppelin.security.safemath.library", + "openzeppelin.security.safemath.library.SafeUint256", + "openzeppelin.security.safemath.library.SafeUint256.sub_le" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 32, + "end_line": 148, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/uint256.cairo" + }, + "parent_location": [ + { + "end_col": 39, + "end_line": 39, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/security/safemath/library.cairo" + }, + "parent_location": [ + { + "end_col": 33, + "end_line": 348, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/uint256.cairo" + }, + "parent_location": [ + { + "end_col": 45, + "end_line": 43, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/security/safemath/library.cairo" + }, + "start_col": 28, + "start_line": 43 + }, + "While trying to retrieve the implicit argument 'range_check_ptr' in:" + ], + "start_col": 18, + "start_line": 348 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 23, + "start_line": 39 + }, + "While trying to update the implicit return value 'range_check_ptr' in:" + ], + "start_col": 17, + "start_line": 148 + } + }, + "700": { + "accessible_scopes": [ + "openzeppelin.security.safemath.library", + "openzeppelin.security.safemath.library.SafeUint256", + "openzeppelin.security.safemath.library.SafeUint256.sub_le" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 44, + "end_line": 35, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/security/safemath/library.cairo" + }, + "parent_location": [ + { + "end_col": 41, + "end_line": 43, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/security/safemath/library.cairo" + }, + "start_col": 40, + "start_line": 43 + }, + "While expanding the reference 'a' in:" + ], + "start_col": 34, + "start_line": 35 + } + }, + "701": { + "accessible_scopes": [ + "openzeppelin.security.safemath.library", + "openzeppelin.security.safemath.library.SafeUint256", + "openzeppelin.security.safemath.library.SafeUint256.sub_le" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 44, + "end_line": 35, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/security/safemath/library.cairo" + }, + "parent_location": [ + { + "end_col": 41, + "end_line": 43, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/security/safemath/library.cairo" + }, + "start_col": 40, + "start_line": 43 + }, + "While expanding the reference 'a' in:" + ], + "start_col": 34, + "start_line": 35 + } + }, + "702": { + "accessible_scopes": [ + "openzeppelin.security.safemath.library", + "openzeppelin.security.safemath.library.SafeUint256", + "openzeppelin.security.safemath.library.SafeUint256.sub_le" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 56, + "end_line": 35, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/security/safemath/library.cairo" + }, + "parent_location": [ + { + "end_col": 44, + "end_line": 43, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/security/safemath/library.cairo" + }, + "start_col": 43, + "start_line": 43 + }, + "While expanding the reference 'b' in:" + ], + "start_col": 46, + "start_line": 35 + } + }, + "703": { + "accessible_scopes": [ + "openzeppelin.security.safemath.library", + "openzeppelin.security.safemath.library.SafeUint256", + "openzeppelin.security.safemath.library.SafeUint256.sub_le" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 56, + "end_line": 35, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/security/safemath/library.cairo" + }, + "parent_location": [ + { + "end_col": 44, + "end_line": 43, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/security/safemath/library.cairo" + }, + "start_col": 43, + "start_line": 43 + }, + "While expanding the reference 'b' in:" + ], + "start_col": 46, + "start_line": 35 + } + }, + "704": { + "accessible_scopes": [ + "openzeppelin.security.safemath.library", + "openzeppelin.security.safemath.library.SafeUint256", + "openzeppelin.security.safemath.library.SafeUint256.sub_le" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 45, + "end_line": 43, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/security/safemath/library.cairo" + }, + "start_col": 28, + "start_line": 43 + } + }, + "706": { + "accessible_scopes": [ + "openzeppelin.security.safemath.library", + "openzeppelin.security.safemath.library.SafeUint256", + "openzeppelin.security.safemath.library.SafeUint256.sub_le" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 22, + "end_line": 44, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/security/safemath/library.cairo" + }, + "start_col": 9, + "start_line": 44 + } + }, + "707": { + "accessible_scopes": [ + "openzeppelin.introspection.erc165.IERC165", + "openzeppelin.introspection.erc165.IERC165.IERC165", + "openzeppelin.introspection.erc165.IERC165.IERC165.supportsInterface" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 14, + "end_line": 2, + "input_file": { + "filename": "autogen/starknet/contract_interface/IERC165/supportsInterface/64f7842b108e76706927b78270ac73c789c558c54431b3359e4441e63ec2a868.cairo" + }, + "parent_location": [ + { + "end_col": 27, + "end_line": 8, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/introspection/erc165/IERC165.cairo" + }, + "start_col": 10, + "start_line": 8 + }, + "While handling contract interface function:" + ], + "start_col": 1, + "start_line": 2 + } + }, + "709": { + "accessible_scopes": [ + "openzeppelin.introspection.erc165.IERC165", + "openzeppelin.introspection.erc165.IERC165.IERC165", + "openzeppelin.introspection.erc165.IERC165.IERC165.supportsInterface" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 48, + "end_line": 3, + "input_file": { + "filename": "autogen/starknet/contract_interface/IERC165/supportsInterface/64f7842b108e76706927b78270ac73c789c558c54431b3359e4441e63ec2a868.cairo" + }, + "parent_location": [ + { + "end_col": 27, + "end_line": 8, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/introspection/erc165/IERC165.cairo" + }, + "start_col": 10, + "start_line": 8 + }, + "While handling contract interface function:" + ], + "start_col": 41, + "start_line": 3 + } + }, + "711": { + "accessible_scopes": [ + "openzeppelin.introspection.erc165.IERC165", + "openzeppelin.introspection.erc165.IERC165.IERC165", + "openzeppelin.introspection.erc165.IERC165.IERC165.supportsInterface" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 37, + "end_line": 3, + "input_file": { + "filename": "autogen/starknet/contract_interface/IERC165/supportsInterface/64f7842b108e76706927b78270ac73c789c558c54431b3359e4441e63ec2a868.cairo" + }, + "parent_location": [ + { + "end_col": 27, + "end_line": 8, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/introspection/erc165/IERC165.cairo" + }, + "start_col": 10, + "start_line": 8 + }, + "While handling contract interface function:" + ], + "start_col": 6, + "start_line": 3 + } + }, + "712": { + "accessible_scopes": [ + "openzeppelin.introspection.erc165.IERC165", + "openzeppelin.introspection.erc165.IERC165.IERC165", + "openzeppelin.introspection.erc165.IERC165.IERC165.supportsInterface" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 39, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/arg_processor/280c0a864fa1758c1c68a2dbf7db54c26c78c0212241fc0ab68100cf9886a85a.cairo" + }, + "parent_location": [ + { + "end_col": 39, + "end_line": 8, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/introspection/erc165/IERC165.cairo" + }, + "start_col": 28, + "start_line": 8 + }, + "While handling calldata argument 'interfaceId'" + ], + "start_col": 1, + "start_line": 1 + } + }, + "713": { + "accessible_scopes": [ + "openzeppelin.introspection.erc165.IERC165", + "openzeppelin.introspection.erc165.IERC165.IERC165", + "openzeppelin.introspection.erc165.IERC165.IERC165.supportsInterface" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 40, + "end_line": 2, + "input_file": { + "filename": "autogen/starknet/arg_processor/280c0a864fa1758c1c68a2dbf7db54c26c78c0212241fc0ab68100cf9886a85a.cairo" + }, + "parent_location": [ + { + "end_col": 39, + "end_line": 8, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/introspection/erc165/IERC165.cairo" + }, + "parent_location": [ + { + "end_col": 33, + "end_line": 5, + "input_file": { + "filename": "autogen/starknet/contract_interface/IERC165/supportsInterface/f50ea4a37616147e889ba1b747383d1afbdef44f9e4713bc1859b7607cc3c796.cairo" + }, + "parent_location": [ + { + "end_col": 27, + "end_line": 8, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/introspection/erc165/IERC165.cairo" + }, + "start_col": 10, + "start_line": 8 + }, + "While handling contract interface function:" + ], + "start_col": 19, + "start_line": 5 + }, + "While expanding the reference '__calldata_ptr' in:" + ], + "start_col": 28, + "start_line": 8 + }, + "While handling calldata argument 'interfaceId'" + ], + "start_col": 22, + "start_line": 2 + } + }, + "715": { + "accessible_scopes": [ + "openzeppelin.introspection.erc165.IERC165", + "openzeppelin.introspection.erc165.IERC165.IERC165", + "openzeppelin.introspection.erc165.IERC165.IERC165.supportsInterface" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 42, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/contract_interface/IERC165/supportsInterface/2a1791e6eb36480300e6de9be3cf0c73e2bf0096fbe6995a9e4600da5d0240a4.cairo" + }, + "parent_location": [ + { + "end_col": 27, + "end_line": 8, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/introspection/erc165/IERC165.cairo" + }, + "parent_location": [ + { + "end_col": 38, + "end_line": 42, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/starknet/common/syscalls.cairo" + }, + "parent_location": [ + { + "end_col": 33, + "end_line": 6, + "input_file": { + "filename": "autogen/starknet/contract_interface/IERC165/supportsInterface/f50ea4a37616147e889ba1b747383d1afbdef44f9e4713bc1859b7607cc3c796.cairo" + }, + "parent_location": [ + { + "end_col": 27, + "end_line": 8, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/introspection/erc165/IERC165.cairo" + }, + "start_col": 10, + "start_line": 8 + }, + "While handling contract interface function:" + ], + "start_col": 31, + "start_line": 2 + }, + "While trying to retrieve the implicit argument 'syscall_ptr' in:" + ], + "start_col": 20, + "start_line": 42 + }, + "While expanding the reference 'syscall_ptr' in:" + ], + "start_col": 10, + "start_line": 8 + }, + "While handling contract interface function:" + ], + "start_col": 24, + "start_line": 1 + } + }, + "716": { + "accessible_scopes": [ + "openzeppelin.introspection.erc165.IERC165", + "openzeppelin.introspection.erc165.IERC165.IERC165", + "openzeppelin.introspection.erc165.IERC165.IERC165.supportsInterface" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 27, + "end_line": 2, + "input_file": { + "filename": "autogen/starknet/contract_interface/IERC165/supportsInterface/2a1791e6eb36480300e6de9be3cf0c73e2bf0096fbe6995a9e4600da5d0240a4.cairo" + }, + "parent_location": [ + { + "end_col": 27, + "end_line": 8, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/introspection/erc165/IERC165.cairo" + }, + "parent_location": [ + { + "end_col": 38, + "end_line": 3, + "input_file": { + "filename": "autogen/starknet/contract_interface/IERC165/supportsInterface/f50ea4a37616147e889ba1b747383d1afbdef44f9e4713bc1859b7607cc3c796.cairo" + }, + "parent_location": [ + { + "end_col": 27, + "end_line": 8, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/introspection/erc165/IERC165.cairo" + }, + "start_col": 10, + "start_line": 8 + }, + "While handling contract interface function:" + ], + "start_col": 22, + "start_line": 3 + }, + "While expanding the reference 'contract_address' in:" + ], + "start_col": 10, + "start_line": 8 + }, + "While handling contract interface function:" + ], + "start_col": 5, + "start_line": 2 + } + }, + "717": { + "accessible_scopes": [ + "openzeppelin.introspection.erc165.IERC165", + "openzeppelin.introspection.erc165.IERC165.IERC165", + "openzeppelin.introspection.erc165.IERC165.IERC165.supportsInterface" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 49, + "end_line": 4, + "input_file": { + "filename": "autogen/starknet/contract_interface/IERC165/supportsInterface/f50ea4a37616147e889ba1b747383d1afbdef44f9e4713bc1859b7607cc3c796.cairo" + }, + "parent_location": [ + { + "end_col": 27, + "end_line": 8, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/introspection/erc165/IERC165.cairo" + }, + "start_col": 10, + "start_line": 8 + }, + "While handling contract interface function:" + ], + "start_col": 23, + "start_line": 4 + } + }, + "719": { + "accessible_scopes": [ + "openzeppelin.introspection.erc165.IERC165", + "openzeppelin.introspection.erc165.IERC165.IERC165", + "openzeppelin.introspection.erc165.IERC165.IERC165.supportsInterface" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 54, + "end_line": 5, + "input_file": { + "filename": "autogen/starknet/contract_interface/IERC165/supportsInterface/f50ea4a37616147e889ba1b747383d1afbdef44f9e4713bc1859b7607cc3c796.cairo" + }, + "parent_location": [ + { + "end_col": 27, + "end_line": 8, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/introspection/erc165/IERC165.cairo" + }, + "start_col": 10, + "start_line": 8 + }, + "While handling contract interface function:" + ], + "start_col": 19, + "start_line": 5 + } + }, + "720": { + "accessible_scopes": [ + "openzeppelin.introspection.erc165.IERC165", + "openzeppelin.introspection.erc165.IERC165.IERC165", + "openzeppelin.introspection.erc165.IERC165.IERC165.supportsInterface" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 30, + "end_line": 3, + "input_file": { + "filename": "autogen/starknet/contract_interface/IERC165/supportsInterface/64f7842b108e76706927b78270ac73c789c558c54431b3359e4441e63ec2a868.cairo" + }, + "parent_location": [ + { + "end_col": 27, + "end_line": 8, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/introspection/erc165/IERC165.cairo" + }, + "parent_location": [ + { + "end_col": 32, + "end_line": 6, + "input_file": { + "filename": "autogen/starknet/contract_interface/IERC165/supportsInterface/f50ea4a37616147e889ba1b747383d1afbdef44f9e4713bc1859b7607cc3c796.cairo" + }, + "parent_location": [ + { + "end_col": 27, + "end_line": 8, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/introspection/erc165/IERC165.cairo" + }, + "start_col": 10, + "start_line": 8 + }, + "While handling contract interface function:" + ], + "start_col": 14, + "start_line": 6 + }, + "While expanding the reference 'calldata_ptr_start' in:" + ], + "start_col": 10, + "start_line": 8 + }, + "While handling contract interface function:" + ], + "start_col": 12, + "start_line": 3 + } + }, + "721": { + "accessible_scopes": [ + "openzeppelin.introspection.erc165.IERC165", + "openzeppelin.introspection.erc165.IERC165.IERC165", + "openzeppelin.introspection.erc165.IERC165.IERC165.supportsInterface" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 33, + "end_line": 6, + "input_file": { + "filename": "autogen/starknet/contract_interface/IERC165/supportsInterface/f50ea4a37616147e889ba1b747383d1afbdef44f9e4713bc1859b7607cc3c796.cairo" + }, + "parent_location": [ + { + "end_col": 27, + "end_line": 8, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/introspection/erc165/IERC165.cairo" + }, + "start_col": 10, + "start_line": 8 + }, + "While handling contract interface function:" + ], + "start_col": 31, + "start_line": 2 + } + }, + "723": { + "accessible_scopes": [ + "openzeppelin.introspection.erc165.IERC165", + "openzeppelin.introspection.erc165.IERC165.IERC165", + "openzeppelin.introspection.erc165.IERC165.IERC165.supportsInterface" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 48, + "end_line": 2, + "input_file": { + "filename": "autogen/starknet/arg_processor/8ca78f1082aaedcf62c13aff4dffe5943aa04164c60cb6d9f03916c0319201df.cairo" + }, + "parent_location": [ + { + "end_col": 64, + "end_line": 8, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/introspection/erc165/IERC165.cairo" + }, + "parent_location": [ + { + "end_col": 53, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/arg_processor/accb388bcbbace5b6218198851efaad2a781c1339e305a37fab51afe90a3194a.cairo" + }, + "parent_location": [ + { + "end_col": 27, + "end_line": 8, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/introspection/erc165/IERC165.cairo" + }, + "parent_location": [ + { + "end_col": 49, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/arg_processor/96447016176d161dae83f414c4d3e33e78856e0ef69bc33f8d419f1c9b90f9c5.cairo" + }, + "parent_location": [ + { + "end_col": 27, + "end_line": 8, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/introspection/erc165/IERC165.cairo" + }, + "start_col": 10, + "start_line": 8 + }, + "While handling return values of" + ], + "start_col": 23, + "start_line": 1 + }, + "While expanding the reference '__return_value_actual_size' in:" + ], + "start_col": 10, + "start_line": 8 + }, + "While handling return values of" + ], + "start_col": 35, + "start_line": 1 + }, + "While expanding the reference '__return_value_ptr' in:" + ], + "start_col": 51, + "start_line": 8 + }, + "While handling return value 'success'" + ], + "start_col": 26, + "start_line": 2 + } + }, + "725": { + "accessible_scopes": [ + "openzeppelin.introspection.erc165.IERC165", + "openzeppelin.introspection.erc165.IERC165.IERC165", + "openzeppelin.introspection.erc165.IERC165.IERC165.supportsInterface" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 50, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/arg_processor/96447016176d161dae83f414c4d3e33e78856e0ef69bc33f8d419f1c9b90f9c5.cairo" + }, + "parent_location": [ + { + "end_col": 27, + "end_line": 8, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/introspection/erc165/IERC165.cairo" + }, + "start_col": 10, + "start_line": 8 + }, + "While handling return values of" + ], + "start_col": 1, + "start_line": 1 + } + }, + "726": { + "accessible_scopes": [ + "openzeppelin.introspection.erc165.IERC165", + "openzeppelin.introspection.erc165.IERC165.IERC165", + "openzeppelin.introspection.erc165.IERC165.IERC165.supportsInterface" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 38, + "end_line": 42, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/starknet/common/syscalls.cairo" + }, + "parent_location": [ + { + "end_col": 33, + "end_line": 6, + "input_file": { + "filename": "autogen/starknet/contract_interface/IERC165/supportsInterface/f50ea4a37616147e889ba1b747383d1afbdef44f9e4713bc1859b7607cc3c796.cairo" + }, + "parent_location": [ + { + "end_col": 27, + "end_line": 8, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/introspection/erc165/IERC165.cairo" + }, + "parent_location": [ + { + "end_col": 42, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/contract_interface/IERC165/supportsInterface/2a1791e6eb36480300e6de9be3cf0c73e2bf0096fbe6995a9e4600da5d0240a4.cairo" + }, + "parent_location": [ + { + "end_col": 27, + "end_line": 8, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/introspection/erc165/IERC165.cairo" + }, + "parent_location": [ + { + "end_col": 46, + "end_line": 2, + "input_file": { + "filename": "autogen/starknet/contract_interface/IERC165/supportsInterface/18abb29d0a089e1c243e4bd2b316687e6162b3321c14733ee37389da5d8b074f.cairo" + }, + "parent_location": [ + { + "end_col": 27, + "end_line": 8, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/introspection/erc165/IERC165.cairo" + }, + "start_col": 10, + "start_line": 8 + }, + "While handling contract interface function:" + ], + "start_col": 1, + "start_line": 2 + }, + "While trying to retrieve the implicit argument 'syscall_ptr' in:" + ], + "start_col": 10, + "start_line": 8 + }, + "While handling contract interface function:" + ], + "start_col": 24, + "start_line": 1 + }, + "While expanding the reference 'syscall_ptr' in:" + ], + "start_col": 10, + "start_line": 8 + }, + "While handling contract interface function:" + ], + "start_col": 31, + "start_line": 2 + }, + "While trying to update the implicit return value 'syscall_ptr' in:" + ], + "start_col": 20, + "start_line": 42 + } + }, + "727": { + "accessible_scopes": [ + "openzeppelin.introspection.erc165.IERC165", + "openzeppelin.introspection.erc165.IERC165.IERC165", + "openzeppelin.introspection.erc165.IERC165.IERC165.supportsInterface" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 59, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/contract_interface/IERC165/supportsInterface/2a1791e6eb36480300e6de9be3cf0c73e2bf0096fbe6995a9e4600da5d0240a4.cairo" + }, + "parent_location": [ + { + "end_col": 27, + "end_line": 8, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/introspection/erc165/IERC165.cairo" + }, + "parent_location": [ + { + "end_col": 59, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/contract_interface/IERC165/supportsInterface/2a1791e6eb36480300e6de9be3cf0c73e2bf0096fbe6995a9e4600da5d0240a4.cairo" + }, + "parent_location": [ + { + "end_col": 27, + "end_line": 8, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/introspection/erc165/IERC165.cairo" + }, + "parent_location": [ + { + "end_col": 46, + "end_line": 2, + "input_file": { + "filename": "autogen/starknet/contract_interface/IERC165/supportsInterface/18abb29d0a089e1c243e4bd2b316687e6162b3321c14733ee37389da5d8b074f.cairo" + }, + "parent_location": [ + { + "end_col": 27, + "end_line": 8, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/introspection/erc165/IERC165.cairo" + }, + "start_col": 10, + "start_line": 8 + }, + "While handling contract interface function:" + ], + "start_col": 1, + "start_line": 2 + }, + "While trying to retrieve the implicit argument 'range_check_ptr' in:" + ], + "start_col": 10, + "start_line": 8 + }, + "While handling contract interface function:" + ], + "start_col": 44, + "start_line": 1 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 10, + "start_line": 8 + }, + "While handling contract interface function:" + ], + "start_col": 44, + "start_line": 1 + } + }, + "728": { + "accessible_scopes": [ + "openzeppelin.introspection.erc165.IERC165", + "openzeppelin.introspection.erc165.IERC165.IERC165", + "openzeppelin.introspection.erc165.IERC165.IERC165.supportsInterface" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 54, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/arg_processor/8ca78f1082aaedcf62c13aff4dffe5943aa04164c60cb6d9f03916c0319201df.cairo" + }, + "parent_location": [ + { + "end_col": 64, + "end_line": 8, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/introspection/erc165/IERC165.cairo" + }, + "parent_location": [ + { + "end_col": 43, + "end_line": 2, + "input_file": { + "filename": "autogen/starknet/contract_interface/IERC165/supportsInterface/18abb29d0a089e1c243e4bd2b316687e6162b3321c14733ee37389da5d8b074f.cairo" + }, + "parent_location": [ + { + "end_col": 27, + "end_line": 8, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/introspection/erc165/IERC165.cairo" + }, + "start_col": 10, + "start_line": 8 + }, + "While handling contract interface function:" + ], + "start_col": 17, + "start_line": 2 + }, + "While expanding the reference '__return_value_arg_success' in:" + ], + "start_col": 51, + "start_line": 8 + }, + "While handling return value 'success'" + ], + "start_col": 34, + "start_line": 1 + } + }, + "729": { + "accessible_scopes": [ + "openzeppelin.introspection.erc165.IERC165", + "openzeppelin.introspection.erc165.IERC165.IERC165", + "openzeppelin.introspection.erc165.IERC165.IERC165.supportsInterface" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 46, + "end_line": 2, + "input_file": { + "filename": "autogen/starknet/contract_interface/IERC165/supportsInterface/18abb29d0a089e1c243e4bd2b316687e6162b3321c14733ee37389da5d8b074f.cairo" + }, + "parent_location": [ + { + "end_col": 27, + "end_line": 8, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/introspection/erc165/IERC165.cairo" + }, + "start_col": 10, + "start_line": 8 + }, + "While handling contract interface function:" + ], + "start_col": 1, + "start_line": 2 + } + }, + "730": { + "accessible_scopes": [ + "openzeppelin.token.erc721.IERC721Receiver", + "openzeppelin.token.erc721.IERC721Receiver.IERC721Receiver", + "openzeppelin.token.erc721.IERC721Receiver.IERC721Receiver.onERC721Received" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 14, + "end_line": 2, + "input_file": { + "filename": "autogen/starknet/contract_interface/IERC721Receiver/onERC721Received/64f7842b108e76706927b78270ac73c789c558c54431b3359e4441e63ec2a868.cairo" + }, + "parent_location": [ + { + "end_col": 26, + "end_line": 10, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/IERC721Receiver.cairo" + }, + "start_col": 10, + "start_line": 10 + }, + "While handling contract interface function:" + ], + "start_col": 1, + "start_line": 2 + } + }, + "732": { + "accessible_scopes": [ + "openzeppelin.token.erc721.IERC721Receiver", + "openzeppelin.token.erc721.IERC721Receiver.IERC721Receiver", + "openzeppelin.token.erc721.IERC721Receiver.IERC721Receiver.onERC721Received" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 48, + "end_line": 3, + "input_file": { + "filename": "autogen/starknet/contract_interface/IERC721Receiver/onERC721Received/64f7842b108e76706927b78270ac73c789c558c54431b3359e4441e63ec2a868.cairo" + }, + "parent_location": [ + { + "end_col": 26, + "end_line": 10, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/IERC721Receiver.cairo" + }, + "start_col": 10, + "start_line": 10 + }, + "While handling contract interface function:" + ], + "start_col": 41, + "start_line": 3 + } + }, + "734": { + "accessible_scopes": [ + "openzeppelin.token.erc721.IERC721Receiver", + "openzeppelin.token.erc721.IERC721Receiver.IERC721Receiver", + "openzeppelin.token.erc721.IERC721Receiver.IERC721Receiver.onERC721Received" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 37, + "end_line": 3, + "input_file": { + "filename": "autogen/starknet/contract_interface/IERC721Receiver/onERC721Received/64f7842b108e76706927b78270ac73c789c558c54431b3359e4441e63ec2a868.cairo" + }, + "parent_location": [ + { + "end_col": 26, + "end_line": 10, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/IERC721Receiver.cairo" + }, + "start_col": 10, + "start_line": 10 + }, + "While handling contract interface function:" + ], + "start_col": 6, + "start_line": 3 + } + }, + "735": { + "accessible_scopes": [ + "openzeppelin.token.erc721.IERC721Receiver", + "openzeppelin.token.erc721.IERC721Receiver.IERC721Receiver", + "openzeppelin.token.erc721.IERC721Receiver.IERC721Receiver.onERC721Received" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 36, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/arg_processor/d68c2b8787e4e85a0788ba04df9230f6e6b1f9240af8998fd1d7acac9fe8e6db.cairo" + }, + "parent_location": [ + { + "end_col": 17, + "end_line": 11, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/IERC721Receiver.cairo" + }, + "start_col": 9, + "start_line": 11 + }, + "While handling calldata argument 'operator'" + ], + "start_col": 1, + "start_line": 1 + } + }, + "736": { + "accessible_scopes": [ + "openzeppelin.token.erc721.IERC721Receiver", + "openzeppelin.token.erc721.IERC721Receiver.IERC721Receiver", + "openzeppelin.token.erc721.IERC721Receiver.IERC721Receiver.onERC721Received" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 33, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/arg_processor/ad6bf90c88bb84c90b568cfe0e89ce22c3213011f6c9cc8bf0b75066ae521c26.cairo" + }, + "parent_location": [ + { + "end_col": 14, + "end_line": 12, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/IERC721Receiver.cairo" + }, + "start_col": 9, + "start_line": 12 + }, + "While handling calldata argument 'from_'" + ], + "start_col": 1, + "start_line": 1 + } + }, + "737": { + "accessible_scopes": [ + "openzeppelin.token.erc721.IERC721Receiver", + "openzeppelin.token.erc721.IERC721Receiver.IERC721Receiver", + "openzeppelin.token.erc721.IERC721Receiver.IERC721Receiver.onERC721Received" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 52, + "end_line": 3, + "input_file": { + "filename": "autogen/starknet/arg_processor/001e7e7ada5970d5cd7e7b9fbe70b3d18a0e22c2451b74c773c532e003bf9599.cairo" + }, + "parent_location": [ + { + "end_col": 16, + "end_line": 13, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/IERC721Receiver.cairo" + }, + "start_col": 9, + "start_line": 13 + }, + "While handling calldata argument 'tokenId'" + ], + "start_col": 1, + "start_line": 3 + } + }, + "738": { + "accessible_scopes": [ + "openzeppelin.token.erc721.IERC721Receiver", + "openzeppelin.token.erc721.IERC721Receiver.IERC721Receiver", + "openzeppelin.token.erc721.IERC721Receiver.IERC721Receiver.onERC721Received" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 52, + "end_line": 4, + "input_file": { + "filename": "autogen/starknet/arg_processor/001e7e7ada5970d5cd7e7b9fbe70b3d18a0e22c2451b74c773c532e003bf9599.cairo" + }, + "parent_location": [ + { + "end_col": 16, + "end_line": 13, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/IERC721Receiver.cairo" + }, + "start_col": 9, + "start_line": 13 + }, + "While handling calldata argument 'tokenId'" + ], + "start_col": 1, + "start_line": 4 + } + }, + "739": { + "accessible_scopes": [ + "openzeppelin.token.erc721.IERC721Receiver", + "openzeppelin.token.erc721.IERC721Receiver.IERC721Receiver", + "openzeppelin.token.erc721.IERC721Receiver.IERC721Receiver.onERC721Received" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 36, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/arg_processor/5acfd8e875f992ccc9524eb75bc3cf4970bff0987c9ed04b83bdbe0bdb94c8b5.cairo" + }, + "parent_location": [ + { + "end_col": 17, + "end_line": 14, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/IERC721Receiver.cairo" + }, + "start_col": 9, + "start_line": 14 + }, + "While handling calldata argument 'data_len'" + ], + "start_col": 1, + "start_line": 1 + } + }, + "740": { + "accessible_scopes": [ + "openzeppelin.token.erc721.IERC721Receiver", + "openzeppelin.token.erc721.IERC721Receiver.IERC721Receiver", + "openzeppelin.token.erc721.IERC721Receiver.IERC721Receiver.onERC721Received" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 37, + "end_line": 2, + "input_file": { + "filename": "autogen/starknet/arg_processor/5f7cff0f0869183ab81c52dd23cebe852fdd2ffd08dec74a7e76d81c9d544ed2.cairo" + }, + "parent_location": [ + { + "end_col": 13, + "end_line": 15, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/IERC721Receiver.cairo" + }, + "start_col": 9, + "start_line": 15 + }, + "While handling calldata argument 'data'" + ], + "start_col": 1, + "start_line": 2 + } + }, + "741": { + "accessible_scopes": [ + "openzeppelin.token.erc721.IERC721Receiver", + "openzeppelin.token.erc721.IERC721Receiver.IERC721Receiver", + "openzeppelin.token.erc721.IERC721Receiver.IERC721Receiver.onERC721Received" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 45, + "end_line": 5, + "input_file": { + "filename": "autogen/starknet/arg_processor/5f7cff0f0869183ab81c52dd23cebe852fdd2ffd08dec74a7e76d81c9d544ed2.cairo" + }, + "parent_location": [ + { + "end_col": 13, + "end_line": 15, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/IERC721Receiver.cairo" + }, + "start_col": 9, + "start_line": 15 + }, + "While handling calldata argument 'data'" + ], + "start_col": 1, + "start_line": 5 + } + }, + "743": { + "accessible_scopes": [ + "openzeppelin.token.erc721.IERC721Receiver", + "openzeppelin.token.erc721.IERC721Receiver.IERC721Receiver", + "openzeppelin.token.erc721.IERC721Receiver.IERC721Receiver.onERC721Received" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 40, + "end_line": 2, + "input_file": { + "filename": "autogen/starknet/arg_processor/5acfd8e875f992ccc9524eb75bc3cf4970bff0987c9ed04b83bdbe0bdb94c8b5.cairo" + }, + "parent_location": [ + { + "end_col": 17, + "end_line": 14, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/IERC721Receiver.cairo" + }, + "parent_location": [ + { + "end_col": 45, + "end_line": 10, + "input_file": { + "filename": "autogen/starknet/arg_processor/5f7cff0f0869183ab81c52dd23cebe852fdd2ffd08dec74a7e76d81c9d544ed2.cairo" + }, + "parent_location": [ + { + "end_col": 13, + "end_line": 15, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/IERC721Receiver.cairo" + }, + "start_col": 9, + "start_line": 15 + }, + "While handling calldata argument 'data'" + ], + "start_col": 31, + "start_line": 10 + }, + "While expanding the reference '__calldata_ptr' in:" + ], + "start_col": 9, + "start_line": 14 + }, + "While handling calldata argument 'data_len'" + ], + "start_col": 22, + "start_line": 2 + } + }, + "745": { + "accessible_scopes": [ + "openzeppelin.token.erc721.IERC721Receiver", + "openzeppelin.token.erc721.IERC721Receiver.IERC721Receiver", + "openzeppelin.token.erc721.IERC721Receiver.IERC721Receiver.onERC721Received" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 61, + "end_line": 10, + "input_file": { + "filename": "autogen/starknet/arg_processor/5f7cff0f0869183ab81c52dd23cebe852fdd2ffd08dec74a7e76d81c9d544ed2.cairo" + }, + "parent_location": [ + { + "end_col": 13, + "end_line": 15, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/IERC721Receiver.cairo" + }, + "start_col": 9, + "start_line": 15 + }, + "While handling calldata argument 'data'" + ], + "start_col": 1, + "start_line": 10 + } + }, + "746": { + "accessible_scopes": [ + "openzeppelin.token.erc721.IERC721Receiver", + "openzeppelin.token.erc721.IERC721Receiver.IERC721Receiver", + "openzeppelin.token.erc721.IERC721Receiver.IERC721Receiver.onERC721Received" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 40, + "end_line": 2, + "input_file": { + "filename": "autogen/starknet/arg_processor/5acfd8e875f992ccc9524eb75bc3cf4970bff0987c9ed04b83bdbe0bdb94c8b5.cairo" + }, + "parent_location": [ + { + "end_col": 17, + "end_line": 14, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/IERC721Receiver.cairo" + }, + "parent_location": [ + { + "end_col": 41, + "end_line": 7, + "input_file": { + "filename": "autogen/starknet/arg_processor/5f7cff0f0869183ab81c52dd23cebe852fdd2ffd08dec74a7e76d81c9d544ed2.cairo" + }, + "parent_location": [ + { + "end_col": 13, + "end_line": 15, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/IERC721Receiver.cairo" + }, + "parent_location": [ + { + "end_col": 28, + "end_line": 12, + "input_file": { + "filename": "autogen/starknet/arg_processor/5f7cff0f0869183ab81c52dd23cebe852fdd2ffd08dec74a7e76d81c9d544ed2.cairo" + }, + "parent_location": [ + { + "end_col": 13, + "end_line": 15, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/IERC721Receiver.cairo" + }, + "start_col": 9, + "start_line": 15 + }, + "While handling calldata argument 'data'" + ], + "start_col": 9, + "start_line": 12 + }, + "While expanding the reference '__calldata_ptr_copy' in:" + ], + "start_col": 9, + "start_line": 15 + }, + "While handling calldata argument 'data'" + ], + "start_col": 27, + "start_line": 7 + }, + "While expanding the reference '__calldata_ptr' in:" + ], + "start_col": 9, + "start_line": 14 + }, + "While handling calldata argument 'data_len'" + ], + "start_col": 22, + "start_line": 2 + } + }, + "748": { + "accessible_scopes": [ + "openzeppelin.token.erc721.IERC721Receiver", + "openzeppelin.token.erc721.IERC721Receiver.IERC721Receiver", + "openzeppelin.token.erc721.IERC721Receiver.IERC721Receiver.onERC721Received" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 20, + "end_line": 15, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/IERC721Receiver.cairo" + }, + "parent_location": [ + { + "end_col": 13, + "end_line": 13, + "input_file": { + "filename": "autogen/starknet/arg_processor/5f7cff0f0869183ab81c52dd23cebe852fdd2ffd08dec74a7e76d81c9d544ed2.cairo" + }, + "parent_location": [ + { + "end_col": 13, + "end_line": 15, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/IERC721Receiver.cairo" + }, + "start_col": 9, + "start_line": 15 + }, + "While handling calldata argument 'data'" + ], + "start_col": 9, + "start_line": 13 + }, + "While expanding the reference 'data' in:" + ], + "start_col": 9, + "start_line": 15 + } + }, + "749": { + "accessible_scopes": [ + "openzeppelin.token.erc721.IERC721Receiver", + "openzeppelin.token.erc721.IERC721Receiver.IERC721Receiver", + "openzeppelin.token.erc721.IERC721Receiver.IERC721Receiver.onERC721Received" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 23, + "end_line": 14, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/IERC721Receiver.cairo" + }, + "parent_location": [ + { + "end_col": 17, + "end_line": 14, + "input_file": { + "filename": "autogen/starknet/arg_processor/5f7cff0f0869183ab81c52dd23cebe852fdd2ffd08dec74a7e76d81c9d544ed2.cairo" + }, + "parent_location": [ + { + "end_col": 13, + "end_line": 15, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/IERC721Receiver.cairo" + }, + "start_col": 9, + "start_line": 15 + }, + "While handling calldata argument 'data'" + ], + "start_col": 9, + "start_line": 14 + }, + "While expanding the reference 'data_len' in:" + ], + "start_col": 9, + "start_line": 14 + } + }, + "750": { + "accessible_scopes": [ + "openzeppelin.token.erc721.IERC721Receiver", + "openzeppelin.token.erc721.IERC721Receiver.IERC721Receiver", + "openzeppelin.token.erc721.IERC721Receiver.IERC721Receiver.onERC721Received" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 22, + "end_line": 14, + "input_file": { + "filename": "autogen/starknet/arg_processor/5f7cff0f0869183ab81c52dd23cebe852fdd2ffd08dec74a7e76d81c9d544ed2.cairo" + }, + "parent_location": [ + { + "end_col": 13, + "end_line": 15, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/IERC721Receiver.cairo" + }, + "start_col": 9, + "start_line": 15 + }, + "While handling calldata argument 'data'" + ], + "start_col": 1, + "start_line": 11 + } + }, + "752": { + "accessible_scopes": [ + "openzeppelin.token.erc721.IERC721Receiver", + "openzeppelin.token.erc721.IERC721Receiver.IERC721Receiver", + "openzeppelin.token.erc721.IERC721Receiver.IERC721Receiver.onERC721Received" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 41, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/contract_interface/IERC721Receiver/onERC721Received/7867481925aec1465158cbaa62d2d4fc603e34734d22c5e07da7379a4d0d3f0e.cairo" + }, + "parent_location": [ + { + "end_col": 26, + "end_line": 10, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/IERC721Receiver.cairo" + }, + "parent_location": [ + { + "end_col": 38, + "end_line": 42, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/starknet/common/syscalls.cairo" + }, + "parent_location": [ + { + "end_col": 33, + "end_line": 6, + "input_file": { + "filename": "autogen/starknet/contract_interface/IERC721Receiver/onERC721Received/15cc68dcffa081f990a115434ffe958c4bde04186a7f9f51e10c68f8fafad966.cairo" + }, + "parent_location": [ + { + "end_col": 26, + "end_line": 10, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/IERC721Receiver.cairo" + }, + "start_col": 10, + "start_line": 10 + }, + "While handling contract interface function:" + ], + "start_col": 31, + "start_line": 2 + }, + "While trying to retrieve the implicit argument 'syscall_ptr' in:" + ], + "start_col": 20, + "start_line": 42 + }, + "While expanding the reference 'syscall_ptr' in:" + ], + "start_col": 10, + "start_line": 10 + }, + "While handling contract interface function:" + ], + "start_col": 23, + "start_line": 1 + } + }, + "753": { + "accessible_scopes": [ + "openzeppelin.token.erc721.IERC721Receiver", + "openzeppelin.token.erc721.IERC721Receiver.IERC721Receiver", + "openzeppelin.token.erc721.IERC721Receiver.IERC721Receiver.onERC721Received" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 27, + "end_line": 2, + "input_file": { + "filename": "autogen/starknet/contract_interface/IERC721Receiver/onERC721Received/7867481925aec1465158cbaa62d2d4fc603e34734d22c5e07da7379a4d0d3f0e.cairo" + }, + "parent_location": [ + { + "end_col": 26, + "end_line": 10, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/IERC721Receiver.cairo" + }, + "parent_location": [ + { + "end_col": 38, + "end_line": 3, + "input_file": { + "filename": "autogen/starknet/contract_interface/IERC721Receiver/onERC721Received/15cc68dcffa081f990a115434ffe958c4bde04186a7f9f51e10c68f8fafad966.cairo" + }, + "parent_location": [ + { + "end_col": 26, + "end_line": 10, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/IERC721Receiver.cairo" + }, + "start_col": 10, + "start_line": 10 + }, + "While handling contract interface function:" + ], + "start_col": 22, + "start_line": 3 + }, + "While expanding the reference 'contract_address' in:" + ], + "start_col": 10, + "start_line": 10 + }, + "While handling contract interface function:" + ], + "start_col": 5, + "start_line": 2 + } + }, + "754": { + "accessible_scopes": [ + "openzeppelin.token.erc721.IERC721Receiver", + "openzeppelin.token.erc721.IERC721Receiver.IERC721Receiver", + "openzeppelin.token.erc721.IERC721Receiver.IERC721Receiver.onERC721Received" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 48, + "end_line": 4, + "input_file": { + "filename": "autogen/starknet/contract_interface/IERC721Receiver/onERC721Received/15cc68dcffa081f990a115434ffe958c4bde04186a7f9f51e10c68f8fafad966.cairo" + }, + "parent_location": [ + { + "end_col": 26, + "end_line": 10, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/IERC721Receiver.cairo" + }, + "start_col": 10, + "start_line": 10 + }, + "While handling contract interface function:" + ], + "start_col": 23, + "start_line": 4 + } + }, + "756": { + "accessible_scopes": [ + "openzeppelin.token.erc721.IERC721Receiver", + "openzeppelin.token.erc721.IERC721Receiver.IERC721Receiver", + "openzeppelin.token.erc721.IERC721Receiver.IERC721Receiver.onERC721Received" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 54, + "end_line": 5, + "input_file": { + "filename": "autogen/starknet/contract_interface/IERC721Receiver/onERC721Received/15cc68dcffa081f990a115434ffe958c4bde04186a7f9f51e10c68f8fafad966.cairo" + }, + "parent_location": [ + { + "end_col": 26, + "end_line": 10, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/IERC721Receiver.cairo" + }, + "start_col": 10, + "start_line": 10 + }, + "While handling contract interface function:" + ], + "start_col": 19, + "start_line": 5 + } + }, + "757": { + "accessible_scopes": [ + "openzeppelin.token.erc721.IERC721Receiver", + "openzeppelin.token.erc721.IERC721Receiver.IERC721Receiver", + "openzeppelin.token.erc721.IERC721Receiver.IERC721Receiver.onERC721Received" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 30, + "end_line": 3, + "input_file": { + "filename": "autogen/starknet/contract_interface/IERC721Receiver/onERC721Received/64f7842b108e76706927b78270ac73c789c558c54431b3359e4441e63ec2a868.cairo" + }, + "parent_location": [ + { + "end_col": 26, + "end_line": 10, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/IERC721Receiver.cairo" + }, + "parent_location": [ + { + "end_col": 32, + "end_line": 6, + "input_file": { + "filename": "autogen/starknet/contract_interface/IERC721Receiver/onERC721Received/15cc68dcffa081f990a115434ffe958c4bde04186a7f9f51e10c68f8fafad966.cairo" + }, + "parent_location": [ + { + "end_col": 26, + "end_line": 10, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/IERC721Receiver.cairo" + }, + "start_col": 10, + "start_line": 10 + }, + "While handling contract interface function:" + ], + "start_col": 14, + "start_line": 6 + }, + "While expanding the reference 'calldata_ptr_start' in:" + ], + "start_col": 10, + "start_line": 10 + }, + "While handling contract interface function:" + ], + "start_col": 12, + "start_line": 3 + } + }, + "758": { + "accessible_scopes": [ + "openzeppelin.token.erc721.IERC721Receiver", + "openzeppelin.token.erc721.IERC721Receiver.IERC721Receiver", + "openzeppelin.token.erc721.IERC721Receiver.IERC721Receiver.onERC721Received" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 33, + "end_line": 6, + "input_file": { + "filename": "autogen/starknet/contract_interface/IERC721Receiver/onERC721Received/15cc68dcffa081f990a115434ffe958c4bde04186a7f9f51e10c68f8fafad966.cairo" + }, + "parent_location": [ + { + "end_col": 26, + "end_line": 10, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/IERC721Receiver.cairo" + }, + "start_col": 10, + "start_line": 10 + }, + "While handling contract interface function:" + ], + "start_col": 31, + "start_line": 2 + } + }, + "760": { + "accessible_scopes": [ + "openzeppelin.token.erc721.IERC721Receiver", + "openzeppelin.token.erc721.IERC721Receiver.IERC721Receiver", + "openzeppelin.token.erc721.IERC721Receiver.IERC721Receiver.onERC721Received" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 48, + "end_line": 2, + "input_file": { + "filename": "autogen/starknet/arg_processor/2d2a59588c2058016ad4194dc37ffe15f61d7d7faa733af03df5d625b7049362.cairo" + }, + "parent_location": [ + { + "end_col": 25, + "end_line": 16, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/IERC721Receiver.cairo" + }, + "parent_location": [ + { + "end_col": 53, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/arg_processor/accb388bcbbace5b6218198851efaad2a781c1339e305a37fab51afe90a3194a.cairo" + }, + "parent_location": [ + { + "end_col": 26, + "end_line": 10, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/IERC721Receiver.cairo" + }, + "parent_location": [ + { + "end_col": 49, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/arg_processor/96447016176d161dae83f414c4d3e33e78856e0ef69bc33f8d419f1c9b90f9c5.cairo" + }, + "parent_location": [ + { + "end_col": 26, + "end_line": 10, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/IERC721Receiver.cairo" + }, + "start_col": 10, + "start_line": 10 + }, + "While handling return values of" + ], + "start_col": 23, + "start_line": 1 + }, + "While expanding the reference '__return_value_actual_size' in:" + ], + "start_col": 10, + "start_line": 10 + }, + "While handling return values of" + ], + "start_col": 35, + "start_line": 1 + }, + "While expanding the reference '__return_value_ptr' in:" + ], + "start_col": 11, + "start_line": 16 + }, + "While handling return value 'selector'" + ], + "start_col": 26, + "start_line": 2 + } + }, + "762": { + "accessible_scopes": [ + "openzeppelin.token.erc721.IERC721Receiver", + "openzeppelin.token.erc721.IERC721Receiver.IERC721Receiver", + "openzeppelin.token.erc721.IERC721Receiver.IERC721Receiver.onERC721Received" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 50, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/arg_processor/96447016176d161dae83f414c4d3e33e78856e0ef69bc33f8d419f1c9b90f9c5.cairo" + }, + "parent_location": [ + { + "end_col": 26, + "end_line": 10, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/IERC721Receiver.cairo" + }, + "start_col": 10, + "start_line": 10 + }, + "While handling return values of" + ], + "start_col": 1, + "start_line": 1 + } + }, + "763": { + "accessible_scopes": [ + "openzeppelin.token.erc721.IERC721Receiver", + "openzeppelin.token.erc721.IERC721Receiver.IERC721Receiver", + "openzeppelin.token.erc721.IERC721Receiver.IERC721Receiver.onERC721Received" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 38, + "end_line": 42, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/starknet/common/syscalls.cairo" + }, + "parent_location": [ + { + "end_col": 33, + "end_line": 6, + "input_file": { + "filename": "autogen/starknet/contract_interface/IERC721Receiver/onERC721Received/15cc68dcffa081f990a115434ffe958c4bde04186a7f9f51e10c68f8fafad966.cairo" + }, + "parent_location": [ + { + "end_col": 26, + "end_line": 10, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/IERC721Receiver.cairo" + }, + "parent_location": [ + { + "end_col": 41, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/contract_interface/IERC721Receiver/onERC721Received/7867481925aec1465158cbaa62d2d4fc603e34734d22c5e07da7379a4d0d3f0e.cairo" + }, + "parent_location": [ + { + "end_col": 26, + "end_line": 10, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/IERC721Receiver.cairo" + }, + "parent_location": [ + { + "end_col": 48, + "end_line": 2, + "input_file": { + "filename": "autogen/starknet/contract_interface/IERC721Receiver/onERC721Received/eacb58a12700a3c997996f81c85f24b3de75e21f5c5811cc3b2470465a1aa212.cairo" + }, + "parent_location": [ + { + "end_col": 26, + "end_line": 10, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/IERC721Receiver.cairo" + }, + "start_col": 10, + "start_line": 10 + }, + "While handling contract interface function:" + ], + "start_col": 1, + "start_line": 2 + }, + "While trying to retrieve the implicit argument 'syscall_ptr' in:" + ], + "start_col": 10, + "start_line": 10 + }, + "While handling contract interface function:" + ], + "start_col": 23, + "start_line": 1 + }, + "While expanding the reference 'syscall_ptr' in:" + ], + "start_col": 10, + "start_line": 10 + }, + "While handling contract interface function:" + ], + "start_col": 31, + "start_line": 2 + }, + "While trying to update the implicit return value 'syscall_ptr' in:" + ], + "start_col": 20, + "start_line": 42 + } + }, + "764": { + "accessible_scopes": [ + "openzeppelin.token.erc721.IERC721Receiver", + "openzeppelin.token.erc721.IERC721Receiver.IERC721Receiver", + "openzeppelin.token.erc721.IERC721Receiver.IERC721Receiver.onERC721Received" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 22, + "end_line": 5, + "input_file": { + "filename": "autogen/starknet/arg_processor/5f7cff0f0869183ab81c52dd23cebe852fdd2ffd08dec74a7e76d81c9d544ed2.cairo" + }, + "parent_location": [ + { + "end_col": 13, + "end_line": 15, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/IERC721Receiver.cairo" + }, + "parent_location": [ + { + "end_col": 58, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/contract_interface/IERC721Receiver/onERC721Received/7867481925aec1465158cbaa62d2d4fc603e34734d22c5e07da7379a4d0d3f0e.cairo" + }, + "parent_location": [ + { + "end_col": 26, + "end_line": 10, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/IERC721Receiver.cairo" + }, + "parent_location": [ + { + "end_col": 48, + "end_line": 2, + "input_file": { + "filename": "autogen/starknet/contract_interface/IERC721Receiver/onERC721Received/eacb58a12700a3c997996f81c85f24b3de75e21f5c5811cc3b2470465a1aa212.cairo" + }, + "parent_location": [ + { + "end_col": 26, + "end_line": 10, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/IERC721Receiver.cairo" + }, + "start_col": 10, + "start_line": 10 + }, + "While handling contract interface function:" + ], + "start_col": 1, + "start_line": 2 + }, + "While trying to retrieve the implicit argument 'range_check_ptr' in:" + ], + "start_col": 10, + "start_line": 10 + }, + "While handling contract interface function:" + ], + "start_col": 43, + "start_line": 1 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 9, + "start_line": 15 + }, + "While handling calldata argument 'data'" + ], + "start_col": 7, + "start_line": 5 + } + }, + "765": { + "accessible_scopes": [ + "openzeppelin.token.erc721.IERC721Receiver", + "openzeppelin.token.erc721.IERC721Receiver.IERC721Receiver", + "openzeppelin.token.erc721.IERC721Receiver.IERC721Receiver.onERC721Received" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 55, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/arg_processor/2d2a59588c2058016ad4194dc37ffe15f61d7d7faa733af03df5d625b7049362.cairo" + }, + "parent_location": [ + { + "end_col": 25, + "end_line": 16, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/IERC721Receiver.cairo" + }, + "parent_location": [ + { + "end_col": 45, + "end_line": 2, + "input_file": { + "filename": "autogen/starknet/contract_interface/IERC721Receiver/onERC721Received/eacb58a12700a3c997996f81c85f24b3de75e21f5c5811cc3b2470465a1aa212.cairo" + }, + "parent_location": [ + { + "end_col": 26, + "end_line": 10, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/IERC721Receiver.cairo" + }, + "start_col": 10, + "start_line": 10 + }, + "While handling contract interface function:" + ], + "start_col": 18, + "start_line": 2 + }, + "While expanding the reference '__return_value_arg_selector' in:" + ], + "start_col": 11, + "start_line": 16 + }, + "While handling return value 'selector'" + ], + "start_col": 35, + "start_line": 1 + } + }, + "766": { + "accessible_scopes": [ + "openzeppelin.token.erc721.IERC721Receiver", + "openzeppelin.token.erc721.IERC721Receiver.IERC721Receiver", + "openzeppelin.token.erc721.IERC721Receiver.IERC721Receiver.onERC721Received" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 48, + "end_line": 2, + "input_file": { + "filename": "autogen/starknet/contract_interface/IERC721Receiver/onERC721Received/eacb58a12700a3c997996f81c85f24b3de75e21f5c5811cc3b2470465a1aa212.cairo" + }, + "parent_location": [ + { + "end_col": 26, + "end_line": 10, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/IERC721Receiver.cairo" + }, + "start_col": 10, + "start_line": 10 + }, + "While handling contract interface function:" + ], + "start_col": 1, + "start_line": 2 + } + }, + "767": { + "accessible_scopes": [ + "openzeppelin.token.erc721.library", + "openzeppelin.token.erc721.library.Transfer", + "openzeppelin.token.erc721.library.Transfer.emit" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 14, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/event/Transfer/8220fde17ca5479f12ae71a8036f4d354fe722f2c036da610b53511924e4ee84.cairo" + }, + "parent_location": [ + { + "end_col": 14, + "end_line": 28, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "start_col": 6, + "start_line": 28 + }, + "While handling event:" + ], + "start_col": 1, + "start_line": 1 + } + }, + "769": { + "accessible_scopes": [ + "openzeppelin.token.erc721.library", + "openzeppelin.token.erc721.library.Transfer", + "openzeppelin.token.erc721.library.Transfer.emit" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 40, + "end_line": 2, + "input_file": { + "filename": "autogen/starknet/event/Transfer/8220fde17ca5479f12ae71a8036f4d354fe722f2c036da610b53511924e4ee84.cairo" + }, + "parent_location": [ + { + "end_col": 14, + "end_line": 28, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "start_col": 6, + "start_line": 28 + }, + "While handling event:" + ], + "start_col": 33, + "start_line": 2 + } + }, + "771": { + "accessible_scopes": [ + "openzeppelin.token.erc721.library", + "openzeppelin.token.erc721.library.Transfer", + "openzeppelin.token.erc721.library.Transfer.emit" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 29, + "end_line": 2, + "input_file": { + "filename": "autogen/starknet/event/Transfer/8220fde17ca5479f12ae71a8036f4d354fe722f2c036da610b53511924e4ee84.cairo" + }, + "parent_location": [ + { + "end_col": 14, + "end_line": 28, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "start_col": 6, + "start_line": 28 + }, + "While handling event:" + ], + "start_col": 6, + "start_line": 2 + } + }, + "772": { + "accessible_scopes": [ + "openzeppelin.token.erc721.library", + "openzeppelin.token.erc721.library.Transfer", + "openzeppelin.token.erc721.library.Transfer.emit" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 31, + "end_line": 3, + "input_file": { + "filename": "autogen/starknet/event/Transfer/8220fde17ca5479f12ae71a8036f4d354fe722f2c036da610b53511924e4ee84.cairo" + }, + "parent_location": [ + { + "end_col": 14, + "end_line": 28, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "start_col": 6, + "start_line": 28 + }, + "While handling event:" + ], + "start_col": 23, + "start_line": 3 + } + }, + "774": { + "accessible_scopes": [ + "openzeppelin.token.erc721.library", + "openzeppelin.token.erc721.library.Transfer", + "openzeppelin.token.erc721.library.Transfer.emit" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 32, + "end_line": 3, + "input_file": { + "filename": "autogen/starknet/event/Transfer/8220fde17ca5479f12ae71a8036f4d354fe722f2c036da610b53511924e4ee84.cairo" + }, + "parent_location": [ + { + "end_col": 14, + "end_line": 28, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "start_col": 6, + "start_line": 28 + }, + "While handling event:" + ], + "start_col": 1, + "start_line": 3 + } + }, + "775": { + "accessible_scopes": [ + "openzeppelin.token.erc721.library", + "openzeppelin.token.erc721.library.Transfer", + "openzeppelin.token.erc721.library.Transfer.emit" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 40, + "end_line": 4, + "input_file": { + "filename": "autogen/starknet/event/Transfer/8220fde17ca5479f12ae71a8036f4d354fe722f2c036da610b53511924e4ee84.cairo" + }, + "parent_location": [ + { + "end_col": 14, + "end_line": 28, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "start_col": 6, + "start_line": 28 + }, + "While handling event:" + ], + "start_col": 33, + "start_line": 4 + } + }, + "777": { + "accessible_scopes": [ + "openzeppelin.token.erc721.library", + "openzeppelin.token.erc721.library.Transfer", + "openzeppelin.token.erc721.library.Transfer.emit" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 29, + "end_line": 4, + "input_file": { + "filename": "autogen/starknet/event/Transfer/8220fde17ca5479f12ae71a8036f4d354fe722f2c036da610b53511924e4ee84.cairo" + }, + "parent_location": [ + { + "end_col": 14, + "end_line": 28, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "start_col": 6, + "start_line": 28 + }, + "While handling event:" + ], + "start_col": 6, + "start_line": 4 + } + }, + "778": { + "accessible_scopes": [ + "openzeppelin.token.erc721.library", + "openzeppelin.token.erc721.library.Transfer", + "openzeppelin.token.erc721.library.Transfer.emit" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 33, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/arg_processor/ad6bf90c88bb84c90b568cfe0e89ce22c3213011f6c9cc8bf0b75066ae521c26.cairo" + }, + "parent_location": [ + { + "end_col": 20, + "end_line": 28, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "start_col": 15, + "start_line": 28 + }, + "While handling calldata argument 'from_'" + ], + "start_col": 1, + "start_line": 1 + } + }, + "779": { + "accessible_scopes": [ + "openzeppelin.token.erc721.library", + "openzeppelin.token.erc721.library.Transfer", + "openzeppelin.token.erc721.library.Transfer.emit" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 30, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/arg_processor/2670bb539ede27446c75876e41bcf9ef5cab09b9eec143f3986635a545b089ab.cairo" + }, + "parent_location": [ + { + "end_col": 30, + "end_line": 28, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "start_col": 28, + "start_line": 28 + }, + "While handling calldata argument 'to'" + ], + "start_col": 1, + "start_line": 1 + } + }, + "780": { + "accessible_scopes": [ + "openzeppelin.token.erc721.library", + "openzeppelin.token.erc721.library.Transfer", + "openzeppelin.token.erc721.library.Transfer.emit" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 52, + "end_line": 3, + "input_file": { + "filename": "autogen/starknet/arg_processor/001e7e7ada5970d5cd7e7b9fbe70b3d18a0e22c2451b74c773c532e003bf9599.cairo" + }, + "parent_location": [ + { + "end_col": 45, + "end_line": 28, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "start_col": 38, + "start_line": 28 + }, + "While handling calldata argument 'tokenId'" + ], + "start_col": 1, + "start_line": 3 + } + }, + "781": { + "accessible_scopes": [ + "openzeppelin.token.erc721.library", + "openzeppelin.token.erc721.library.Transfer", + "openzeppelin.token.erc721.library.Transfer.emit" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 52, + "end_line": 4, + "input_file": { + "filename": "autogen/starknet/arg_processor/001e7e7ada5970d5cd7e7b9fbe70b3d18a0e22c2451b74c773c532e003bf9599.cairo" + }, + "parent_location": [ + { + "end_col": 45, + "end_line": 28, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "start_col": 38, + "start_line": 28 + }, + "While handling calldata argument 'tokenId'" + ], + "start_col": 1, + "start_line": 4 + } + }, + "782": { + "accessible_scopes": [ + "openzeppelin.token.erc721.library", + "openzeppelin.token.erc721.library.Transfer", + "openzeppelin.token.erc721.library.Transfer.emit" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 40, + "end_line": 5, + "input_file": { + "filename": "autogen/starknet/arg_processor/001e7e7ada5970d5cd7e7b9fbe70b3d18a0e22c2451b74c773c532e003bf9599.cairo" + }, + "parent_location": [ + { + "end_col": 45, + "end_line": 28, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "parent_location": [ + { + "end_col": 64, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/event/Transfer/6150feec30bd48bfd0f446ed8c155a6d911a2c3fb3ec7a980733900416819259.cairo" + }, + "parent_location": [ + { + "end_col": 14, + "end_line": 28, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "start_col": 6, + "start_line": 28 + }, + "While handling event:" + ], + "start_col": 50, + "start_line": 1 + }, + "While expanding the reference '__calldata_ptr' in:" + ], + "start_col": 38, + "start_line": 28 + }, + "While handling calldata argument 'tokenId'" + ], + "start_col": 22, + "start_line": 5 + } + }, + "784": { + "accessible_scopes": [ + "openzeppelin.token.erc721.library", + "openzeppelin.token.erc721.library.Transfer", + "openzeppelin.token.erc721.library.Transfer.emit" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 29, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/event/Transfer/a7a8ae41be29ac9f4f6c3b7837c448d787ca051dd1ade98f409e54d33d112504.cairo" + }, + "parent_location": [ + { + "end_col": 14, + "end_line": 28, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "parent_location": [ + { + "end_col": 35, + "end_line": 390, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/starknet/common/syscalls.cairo" + }, + "parent_location": [ + { + "end_col": 95, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/event/Transfer/6150feec30bd48bfd0f446ed8c155a6d911a2c3fb3ec7a980733900416819259.cairo" + }, + "parent_location": [ + { + "end_col": 14, + "end_line": 28, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "start_col": 6, + "start_line": 28 + }, + "While handling event:" + ], + "start_col": 1, + "start_line": 1 + }, + "While trying to retrieve the implicit argument 'syscall_ptr' in:" + ], + "start_col": 17, + "start_line": 390 + }, + "While expanding the reference 'syscall_ptr' in:" + ], + "start_col": 6, + "start_line": 28 + }, + "While handling event:" + ], + "start_col": 11, + "start_line": 1 + } + }, + "785": { + "accessible_scopes": [ + "openzeppelin.token.erc721.library", + "openzeppelin.token.erc721.library.Transfer", + "openzeppelin.token.erc721.library.Transfer.emit" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 22, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/event/Transfer/6150feec30bd48bfd0f446ed8c155a6d911a2c3fb3ec7a980733900416819259.cairo" + }, + "parent_location": [ + { + "end_col": 14, + "end_line": 28, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "start_col": 6, + "start_line": 28 + }, + "While handling event:" + ], + "start_col": 21, + "start_line": 1 + } + }, + "787": { + "accessible_scopes": [ + "openzeppelin.token.erc721.library", + "openzeppelin.token.erc721.library.Transfer", + "openzeppelin.token.erc721.library.Transfer.emit" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 22, + "end_line": 2, + "input_file": { + "filename": "autogen/starknet/event/Transfer/8220fde17ca5479f12ae71a8036f4d354fe722f2c036da610b53511924e4ee84.cairo" + }, + "parent_location": [ + { + "end_col": 14, + "end_line": 28, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "parent_location": [ + { + "end_col": 39, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/event/Transfer/6150feec30bd48bfd0f446ed8c155a6d911a2c3fb3ec7a980733900416819259.cairo" + }, + "parent_location": [ + { + "end_col": 14, + "end_line": 28, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "start_col": 6, + "start_line": 28 + }, + "While handling event:" + ], + "start_col": 29, + "start_line": 1 + }, + "While expanding the reference '__keys_ptr' in:" + ], + "start_col": 6, + "start_line": 28 + }, + "While handling event:" + ], + "start_col": 12, + "start_line": 2 + } + }, + "788": { + "accessible_scopes": [ + "openzeppelin.token.erc721.library", + "openzeppelin.token.erc721.library.Transfer", + "openzeppelin.token.erc721.library.Transfer.emit" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 77, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/event/Transfer/6150feec30bd48bfd0f446ed8c155a6d911a2c3fb3ec7a980733900416819259.cairo" + }, + "parent_location": [ + { + "end_col": 14, + "end_line": 28, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "start_col": 6, + "start_line": 28 + }, + "While handling event:" + ], + "start_col": 50, + "start_line": 1 + } + }, + "789": { + "accessible_scopes": [ + "openzeppelin.token.erc721.library", + "openzeppelin.token.erc721.library.Transfer", + "openzeppelin.token.erc721.library.Transfer.emit" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 22, + "end_line": 4, + "input_file": { + "filename": "autogen/starknet/event/Transfer/8220fde17ca5479f12ae71a8036f4d354fe722f2c036da610b53511924e4ee84.cairo" + }, + "parent_location": [ + { + "end_col": 14, + "end_line": 28, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "parent_location": [ + { + "end_col": 94, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/event/Transfer/6150feec30bd48bfd0f446ed8c155a6d911a2c3fb3ec7a980733900416819259.cairo" + }, + "parent_location": [ + { + "end_col": 14, + "end_line": 28, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "start_col": 6, + "start_line": 28 + }, + "While handling event:" + ], + "start_col": 84, + "start_line": 1 + }, + "While expanding the reference '__data_ptr' in:" + ], + "start_col": 6, + "start_line": 28 + }, + "While handling event:" + ], + "start_col": 12, + "start_line": 4 + } + }, + "790": { + "accessible_scopes": [ + "openzeppelin.token.erc721.library", + "openzeppelin.token.erc721.library.Transfer", + "openzeppelin.token.erc721.library.Transfer.emit" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 95, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/event/Transfer/6150feec30bd48bfd0f446ed8c155a6d911a2c3fb3ec7a980733900416819259.cairo" + }, + "parent_location": [ + { + "end_col": 14, + "end_line": 28, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "start_col": 6, + "start_line": 28 + }, + "While handling event:" + ], + "start_col": 1, + "start_line": 1 + } + }, + "792": { + "accessible_scopes": [ + "openzeppelin.token.erc721.library", + "openzeppelin.token.erc721.library.Transfer", + "openzeppelin.token.erc721.library.Transfer.emit" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 46, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/event/Transfer/a7a8ae41be29ac9f4f6c3b7837c448d787ca051dd1ade98f409e54d33d112504.cairo" + }, + "parent_location": [ + { + "end_col": 14, + "end_line": 28, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "parent_location": [ + { + "end_col": 46, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/event/Transfer/a7a8ae41be29ac9f4f6c3b7837c448d787ca051dd1ade98f409e54d33d112504.cairo" + }, + "parent_location": [ + { + "end_col": 14, + "end_line": 28, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "parent_location": [ + { + "end_col": 11, + "end_line": 2, + "input_file": { + "filename": "autogen/starknet/event/Transfer/6150feec30bd48bfd0f446ed8c155a6d911a2c3fb3ec7a980733900416819259.cairo" + }, + "parent_location": [ + { + "end_col": 14, + "end_line": 28, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "start_col": 6, + "start_line": 28 + }, + "While handling event:" + ], + "start_col": 1, + "start_line": 2 + }, + "While trying to retrieve the implicit argument 'range_check_ptr' in:" + ], + "start_col": 6, + "start_line": 28 + }, + "While handling event:" + ], + "start_col": 31, + "start_line": 1 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 6, + "start_line": 28 + }, + "While handling event:" + ], + "start_col": 31, + "start_line": 1 + } + }, + "793": { + "accessible_scopes": [ + "openzeppelin.token.erc721.library", + "openzeppelin.token.erc721.library.Transfer", + "openzeppelin.token.erc721.library.Transfer.emit" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 11, + "end_line": 2, + "input_file": { + "filename": "autogen/starknet/event/Transfer/6150feec30bd48bfd0f446ed8c155a6d911a2c3fb3ec7a980733900416819259.cairo" + }, + "parent_location": [ + { + "end_col": 14, + "end_line": 28, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "start_col": 6, + "start_line": 28 + }, + "While handling event:" + ], + "start_col": 1, + "start_line": 2 + } + }, + "794": { + "accessible_scopes": [ + "openzeppelin.token.erc721.library", + "openzeppelin.token.erc721.library.Approval", + "openzeppelin.token.erc721.library.Approval.emit" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 14, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/event/Approval/8220fde17ca5479f12ae71a8036f4d354fe722f2c036da610b53511924e4ee84.cairo" + }, + "parent_location": [ + { + "end_col": 14, + "end_line": 32, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "start_col": 6, + "start_line": 32 + }, + "While handling event:" + ], + "start_col": 1, + "start_line": 1 + } + }, + "796": { + "accessible_scopes": [ + "openzeppelin.token.erc721.library", + "openzeppelin.token.erc721.library.Approval", + "openzeppelin.token.erc721.library.Approval.emit" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 40, + "end_line": 2, + "input_file": { + "filename": "autogen/starknet/event/Approval/8220fde17ca5479f12ae71a8036f4d354fe722f2c036da610b53511924e4ee84.cairo" + }, + "parent_location": [ + { + "end_col": 14, + "end_line": 32, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "start_col": 6, + "start_line": 32 + }, + "While handling event:" + ], + "start_col": 33, + "start_line": 2 + } + }, + "798": { + "accessible_scopes": [ + "openzeppelin.token.erc721.library", + "openzeppelin.token.erc721.library.Approval", + "openzeppelin.token.erc721.library.Approval.emit" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 29, + "end_line": 2, + "input_file": { + "filename": "autogen/starknet/event/Approval/8220fde17ca5479f12ae71a8036f4d354fe722f2c036da610b53511924e4ee84.cairo" + }, + "parent_location": [ + { + "end_col": 14, + "end_line": 32, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "start_col": 6, + "start_line": 32 + }, + "While handling event:" + ], + "start_col": 6, + "start_line": 2 + } + }, + "799": { + "accessible_scopes": [ + "openzeppelin.token.erc721.library", + "openzeppelin.token.erc721.library.Approval", + "openzeppelin.token.erc721.library.Approval.emit" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 31, + "end_line": 3, + "input_file": { + "filename": "autogen/starknet/event/Approval/8220fde17ca5479f12ae71a8036f4d354fe722f2c036da610b53511924e4ee84.cairo" + }, + "parent_location": [ + { + "end_col": 14, + "end_line": 32, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "start_col": 6, + "start_line": 32 + }, + "While handling event:" + ], + "start_col": 23, + "start_line": 3 + } + }, + "801": { + "accessible_scopes": [ + "openzeppelin.token.erc721.library", + "openzeppelin.token.erc721.library.Approval", + "openzeppelin.token.erc721.library.Approval.emit" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 32, + "end_line": 3, + "input_file": { + "filename": "autogen/starknet/event/Approval/8220fde17ca5479f12ae71a8036f4d354fe722f2c036da610b53511924e4ee84.cairo" + }, + "parent_location": [ + { + "end_col": 14, + "end_line": 32, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "start_col": 6, + "start_line": 32 + }, + "While handling event:" + ], + "start_col": 1, + "start_line": 3 + } + }, + "802": { + "accessible_scopes": [ + "openzeppelin.token.erc721.library", + "openzeppelin.token.erc721.library.Approval", + "openzeppelin.token.erc721.library.Approval.emit" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 40, + "end_line": 4, + "input_file": { + "filename": "autogen/starknet/event/Approval/8220fde17ca5479f12ae71a8036f4d354fe722f2c036da610b53511924e4ee84.cairo" + }, + "parent_location": [ + { + "end_col": 14, + "end_line": 32, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "start_col": 6, + "start_line": 32 + }, + "While handling event:" + ], + "start_col": 33, + "start_line": 4 + } + }, + "804": { + "accessible_scopes": [ + "openzeppelin.token.erc721.library", + "openzeppelin.token.erc721.library.Approval", + "openzeppelin.token.erc721.library.Approval.emit" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 29, + "end_line": 4, + "input_file": { + "filename": "autogen/starknet/event/Approval/8220fde17ca5479f12ae71a8036f4d354fe722f2c036da610b53511924e4ee84.cairo" + }, + "parent_location": [ + { + "end_col": 14, + "end_line": 32, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "start_col": 6, + "start_line": 32 + }, + "While handling event:" + ], + "start_col": 6, + "start_line": 4 + } + }, + "805": { + "accessible_scopes": [ + "openzeppelin.token.erc721.library", + "openzeppelin.token.erc721.library.Approval", + "openzeppelin.token.erc721.library.Approval.emit" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 33, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/arg_processor/7e247556a8b9bc505c1e503bda1dbcb424caa8925f45ae18cdde008e8b84b376.cairo" + }, + "parent_location": [ + { + "end_col": 20, + "end_line": 32, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "start_col": 15, + "start_line": 32 + }, + "While handling calldata argument 'owner'" + ], + "start_col": 1, + "start_line": 1 + } + }, + "806": { + "accessible_scopes": [ + "openzeppelin.token.erc721.library", + "openzeppelin.token.erc721.library.Approval", + "openzeppelin.token.erc721.library.Approval.emit" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 36, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/arg_processor/3766ca78b7221666e5286be6b1bea607d51c54e82b2b7db68735ed38d00f7732.cairo" + }, + "parent_location": [ + { + "end_col": 36, + "end_line": 32, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "start_col": 28, + "start_line": 32 + }, + "While handling calldata argument 'approved'" + ], + "start_col": 1, + "start_line": 1 + } + }, + "807": { + "accessible_scopes": [ + "openzeppelin.token.erc721.library", + "openzeppelin.token.erc721.library.Approval", + "openzeppelin.token.erc721.library.Approval.emit" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 52, + "end_line": 3, + "input_file": { + "filename": "autogen/starknet/arg_processor/001e7e7ada5970d5cd7e7b9fbe70b3d18a0e22c2451b74c773c532e003bf9599.cairo" + }, + "parent_location": [ + { + "end_col": 51, + "end_line": 32, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "start_col": 44, + "start_line": 32 + }, + "While handling calldata argument 'tokenId'" + ], + "start_col": 1, + "start_line": 3 + } + }, + "808": { + "accessible_scopes": [ + "openzeppelin.token.erc721.library", + "openzeppelin.token.erc721.library.Approval", + "openzeppelin.token.erc721.library.Approval.emit" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 52, + "end_line": 4, + "input_file": { + "filename": "autogen/starknet/arg_processor/001e7e7ada5970d5cd7e7b9fbe70b3d18a0e22c2451b74c773c532e003bf9599.cairo" + }, + "parent_location": [ + { + "end_col": 51, + "end_line": 32, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "start_col": 44, + "start_line": 32 + }, + "While handling calldata argument 'tokenId'" + ], + "start_col": 1, + "start_line": 4 + } + }, + "809": { + "accessible_scopes": [ + "openzeppelin.token.erc721.library", + "openzeppelin.token.erc721.library.Approval", + "openzeppelin.token.erc721.library.Approval.emit" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 40, + "end_line": 5, + "input_file": { + "filename": "autogen/starknet/arg_processor/001e7e7ada5970d5cd7e7b9fbe70b3d18a0e22c2451b74c773c532e003bf9599.cairo" + }, + "parent_location": [ + { + "end_col": 51, + "end_line": 32, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "parent_location": [ + { + "end_col": 64, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/event/Approval/6150feec30bd48bfd0f446ed8c155a6d911a2c3fb3ec7a980733900416819259.cairo" + }, + "parent_location": [ + { + "end_col": 14, + "end_line": 32, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "start_col": 6, + "start_line": 32 + }, + "While handling event:" + ], + "start_col": 50, + "start_line": 1 + }, + "While expanding the reference '__calldata_ptr' in:" + ], + "start_col": 44, + "start_line": 32 + }, + "While handling calldata argument 'tokenId'" + ], + "start_col": 22, + "start_line": 5 + } + }, + "811": { + "accessible_scopes": [ + "openzeppelin.token.erc721.library", + "openzeppelin.token.erc721.library.Approval", + "openzeppelin.token.erc721.library.Approval.emit" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 29, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/event/Approval/a7a8ae41be29ac9f4f6c3b7837c448d787ca051dd1ade98f409e54d33d112504.cairo" + }, + "parent_location": [ + { + "end_col": 14, + "end_line": 32, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "parent_location": [ + { + "end_col": 35, + "end_line": 390, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/starknet/common/syscalls.cairo" + }, + "parent_location": [ + { + "end_col": 95, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/event/Approval/6150feec30bd48bfd0f446ed8c155a6d911a2c3fb3ec7a980733900416819259.cairo" + }, + "parent_location": [ + { + "end_col": 14, + "end_line": 32, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "start_col": 6, + "start_line": 32 + }, + "While handling event:" + ], + "start_col": 1, + "start_line": 1 + }, + "While trying to retrieve the implicit argument 'syscall_ptr' in:" + ], + "start_col": 17, + "start_line": 390 + }, + "While expanding the reference 'syscall_ptr' in:" + ], + "start_col": 6, + "start_line": 32 + }, + "While handling event:" + ], + "start_col": 11, + "start_line": 1 + } + }, + "812": { + "accessible_scopes": [ + "openzeppelin.token.erc721.library", + "openzeppelin.token.erc721.library.Approval", + "openzeppelin.token.erc721.library.Approval.emit" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 22, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/event/Approval/6150feec30bd48bfd0f446ed8c155a6d911a2c3fb3ec7a980733900416819259.cairo" + }, + "parent_location": [ + { + "end_col": 14, + "end_line": 32, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "start_col": 6, + "start_line": 32 + }, + "While handling event:" + ], + "start_col": 21, + "start_line": 1 + } + }, + "814": { + "accessible_scopes": [ + "openzeppelin.token.erc721.library", + "openzeppelin.token.erc721.library.Approval", + "openzeppelin.token.erc721.library.Approval.emit" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 22, + "end_line": 2, + "input_file": { + "filename": "autogen/starknet/event/Approval/8220fde17ca5479f12ae71a8036f4d354fe722f2c036da610b53511924e4ee84.cairo" + }, + "parent_location": [ + { + "end_col": 14, + "end_line": 32, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "parent_location": [ + { + "end_col": 39, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/event/Approval/6150feec30bd48bfd0f446ed8c155a6d911a2c3fb3ec7a980733900416819259.cairo" + }, + "parent_location": [ + { + "end_col": 14, + "end_line": 32, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "start_col": 6, + "start_line": 32 + }, + "While handling event:" + ], + "start_col": 29, + "start_line": 1 + }, + "While expanding the reference '__keys_ptr' in:" + ], + "start_col": 6, + "start_line": 32 + }, + "While handling event:" + ], + "start_col": 12, + "start_line": 2 + } + }, + "815": { + "accessible_scopes": [ + "openzeppelin.token.erc721.library", + "openzeppelin.token.erc721.library.Approval", + "openzeppelin.token.erc721.library.Approval.emit" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 77, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/event/Approval/6150feec30bd48bfd0f446ed8c155a6d911a2c3fb3ec7a980733900416819259.cairo" + }, + "parent_location": [ + { + "end_col": 14, + "end_line": 32, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "start_col": 6, + "start_line": 32 + }, + "While handling event:" + ], + "start_col": 50, + "start_line": 1 + } + }, + "816": { + "accessible_scopes": [ + "openzeppelin.token.erc721.library", + "openzeppelin.token.erc721.library.Approval", + "openzeppelin.token.erc721.library.Approval.emit" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 22, + "end_line": 4, + "input_file": { + "filename": "autogen/starknet/event/Approval/8220fde17ca5479f12ae71a8036f4d354fe722f2c036da610b53511924e4ee84.cairo" + }, + "parent_location": [ + { + "end_col": 14, + "end_line": 32, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "parent_location": [ + { + "end_col": 94, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/event/Approval/6150feec30bd48bfd0f446ed8c155a6d911a2c3fb3ec7a980733900416819259.cairo" + }, + "parent_location": [ + { + "end_col": 14, + "end_line": 32, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "start_col": 6, + "start_line": 32 + }, + "While handling event:" + ], + "start_col": 84, + "start_line": 1 + }, + "While expanding the reference '__data_ptr' in:" + ], + "start_col": 6, + "start_line": 32 + }, + "While handling event:" + ], + "start_col": 12, + "start_line": 4 + } + }, + "817": { + "accessible_scopes": [ + "openzeppelin.token.erc721.library", + "openzeppelin.token.erc721.library.Approval", + "openzeppelin.token.erc721.library.Approval.emit" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 95, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/event/Approval/6150feec30bd48bfd0f446ed8c155a6d911a2c3fb3ec7a980733900416819259.cairo" + }, + "parent_location": [ + { + "end_col": 14, + "end_line": 32, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "start_col": 6, + "start_line": 32 + }, + "While handling event:" + ], + "start_col": 1, + "start_line": 1 + } + }, + "819": { + "accessible_scopes": [ + "openzeppelin.token.erc721.library", + "openzeppelin.token.erc721.library.Approval", + "openzeppelin.token.erc721.library.Approval.emit" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 46, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/event/Approval/a7a8ae41be29ac9f4f6c3b7837c448d787ca051dd1ade98f409e54d33d112504.cairo" + }, + "parent_location": [ + { + "end_col": 14, + "end_line": 32, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "parent_location": [ + { + "end_col": 46, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/event/Approval/a7a8ae41be29ac9f4f6c3b7837c448d787ca051dd1ade98f409e54d33d112504.cairo" + }, + "parent_location": [ + { + "end_col": 14, + "end_line": 32, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "parent_location": [ + { + "end_col": 11, + "end_line": 2, + "input_file": { + "filename": "autogen/starknet/event/Approval/6150feec30bd48bfd0f446ed8c155a6d911a2c3fb3ec7a980733900416819259.cairo" + }, + "parent_location": [ + { + "end_col": 14, + "end_line": 32, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "start_col": 6, + "start_line": 32 + }, + "While handling event:" + ], + "start_col": 1, + "start_line": 2 + }, + "While trying to retrieve the implicit argument 'range_check_ptr' in:" + ], + "start_col": 6, + "start_line": 32 + }, + "While handling event:" + ], + "start_col": 31, + "start_line": 1 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 6, + "start_line": 32 + }, + "While handling event:" + ], + "start_col": 31, + "start_line": 1 + } + }, + "820": { + "accessible_scopes": [ + "openzeppelin.token.erc721.library", + "openzeppelin.token.erc721.library.Approval", + "openzeppelin.token.erc721.library.Approval.emit" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 11, + "end_line": 2, + "input_file": { + "filename": "autogen/starknet/event/Approval/6150feec30bd48bfd0f446ed8c155a6d911a2c3fb3ec7a980733900416819259.cairo" + }, + "parent_location": [ + { + "end_col": 14, + "end_line": 32, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "start_col": 6, + "start_line": 32 + }, + "While handling event:" + ], + "start_col": 1, + "start_line": 2 + } + }, + "821": { + "accessible_scopes": [ + "openzeppelin.token.erc721.library", + "openzeppelin.token.erc721.library.ApprovalForAll", + "openzeppelin.token.erc721.library.ApprovalForAll.emit" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 14, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/event/ApprovalForAll/8220fde17ca5479f12ae71a8036f4d354fe722f2c036da610b53511924e4ee84.cairo" + }, + "parent_location": [ + { + "end_col": 20, + "end_line": 36, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "start_col": 6, + "start_line": 36 + }, + "While handling event:" + ], + "start_col": 1, + "start_line": 1 + } + }, + "823": { + "accessible_scopes": [ + "openzeppelin.token.erc721.library", + "openzeppelin.token.erc721.library.ApprovalForAll", + "openzeppelin.token.erc721.library.ApprovalForAll.emit" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 40, + "end_line": 2, + "input_file": { + "filename": "autogen/starknet/event/ApprovalForAll/8220fde17ca5479f12ae71a8036f4d354fe722f2c036da610b53511924e4ee84.cairo" + }, + "parent_location": [ + { + "end_col": 20, + "end_line": 36, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "start_col": 6, + "start_line": 36 + }, + "While handling event:" + ], + "start_col": 33, + "start_line": 2 + } + }, + "825": { + "accessible_scopes": [ + "openzeppelin.token.erc721.library", + "openzeppelin.token.erc721.library.ApprovalForAll", + "openzeppelin.token.erc721.library.ApprovalForAll.emit" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 29, + "end_line": 2, + "input_file": { + "filename": "autogen/starknet/event/ApprovalForAll/8220fde17ca5479f12ae71a8036f4d354fe722f2c036da610b53511924e4ee84.cairo" + }, + "parent_location": [ + { + "end_col": 20, + "end_line": 36, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "start_col": 6, + "start_line": 36 + }, + "While handling event:" + ], + "start_col": 6, + "start_line": 2 + } + }, + "826": { + "accessible_scopes": [ + "openzeppelin.token.erc721.library", + "openzeppelin.token.erc721.library.ApprovalForAll", + "openzeppelin.token.erc721.library.ApprovalForAll.emit" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 31, + "end_line": 3, + "input_file": { + "filename": "autogen/starknet/event/ApprovalForAll/8220fde17ca5479f12ae71a8036f4d354fe722f2c036da610b53511924e4ee84.cairo" + }, + "parent_location": [ + { + "end_col": 20, + "end_line": 36, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "start_col": 6, + "start_line": 36 + }, + "While handling event:" + ], + "start_col": 23, + "start_line": 3 + } + }, + "828": { + "accessible_scopes": [ + "openzeppelin.token.erc721.library", + "openzeppelin.token.erc721.library.ApprovalForAll", + "openzeppelin.token.erc721.library.ApprovalForAll.emit" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 32, + "end_line": 3, + "input_file": { + "filename": "autogen/starknet/event/ApprovalForAll/8220fde17ca5479f12ae71a8036f4d354fe722f2c036da610b53511924e4ee84.cairo" + }, + "parent_location": [ + { + "end_col": 20, + "end_line": 36, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "start_col": 6, + "start_line": 36 + }, + "While handling event:" + ], + "start_col": 1, + "start_line": 3 + } + }, + "829": { + "accessible_scopes": [ + "openzeppelin.token.erc721.library", + "openzeppelin.token.erc721.library.ApprovalForAll", + "openzeppelin.token.erc721.library.ApprovalForAll.emit" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 40, + "end_line": 4, + "input_file": { + "filename": "autogen/starknet/event/ApprovalForAll/8220fde17ca5479f12ae71a8036f4d354fe722f2c036da610b53511924e4ee84.cairo" + }, + "parent_location": [ + { + "end_col": 20, + "end_line": 36, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "start_col": 6, + "start_line": 36 + }, + "While handling event:" + ], + "start_col": 33, + "start_line": 4 + } + }, + "831": { + "accessible_scopes": [ + "openzeppelin.token.erc721.library", + "openzeppelin.token.erc721.library.ApprovalForAll", + "openzeppelin.token.erc721.library.ApprovalForAll.emit" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 29, + "end_line": 4, + "input_file": { + "filename": "autogen/starknet/event/ApprovalForAll/8220fde17ca5479f12ae71a8036f4d354fe722f2c036da610b53511924e4ee84.cairo" + }, + "parent_location": [ + { + "end_col": 20, + "end_line": 36, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "start_col": 6, + "start_line": 36 + }, + "While handling event:" + ], + "start_col": 6, + "start_line": 4 + } + }, + "832": { + "accessible_scopes": [ + "openzeppelin.token.erc721.library", + "openzeppelin.token.erc721.library.ApprovalForAll", + "openzeppelin.token.erc721.library.ApprovalForAll.emit" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 33, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/arg_processor/7e247556a8b9bc505c1e503bda1dbcb424caa8925f45ae18cdde008e8b84b376.cairo" + }, + "parent_location": [ + { + "end_col": 26, + "end_line": 36, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "start_col": 21, + "start_line": 36 + }, + "While handling calldata argument 'owner'" + ], + "start_col": 1, + "start_line": 1 + } + }, + "833": { + "accessible_scopes": [ + "openzeppelin.token.erc721.library", + "openzeppelin.token.erc721.library.ApprovalForAll", + "openzeppelin.token.erc721.library.ApprovalForAll.emit" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 36, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/arg_processor/d68c2b8787e4e85a0788ba04df9230f6e6b1f9240af8998fd1d7acac9fe8e6db.cairo" + }, + "parent_location": [ + { + "end_col": 42, + "end_line": 36, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "start_col": 34, + "start_line": 36 + }, + "While handling calldata argument 'operator'" + ], + "start_col": 1, + "start_line": 1 + } + }, + "834": { + "accessible_scopes": [ + "openzeppelin.token.erc721.library", + "openzeppelin.token.erc721.library.ApprovalForAll", + "openzeppelin.token.erc721.library.ApprovalForAll.emit" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 36, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/arg_processor/3766ca78b7221666e5286be6b1bea607d51c54e82b2b7db68735ed38d00f7732.cairo" + }, + "parent_location": [ + { + "end_col": 58, + "end_line": 36, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "start_col": 50, + "start_line": 36 + }, + "While handling calldata argument 'approved'" + ], + "start_col": 1, + "start_line": 1 + } + }, + "835": { + "accessible_scopes": [ + "openzeppelin.token.erc721.library", + "openzeppelin.token.erc721.library.ApprovalForAll", + "openzeppelin.token.erc721.library.ApprovalForAll.emit" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 40, + "end_line": 2, + "input_file": { + "filename": "autogen/starknet/arg_processor/3766ca78b7221666e5286be6b1bea607d51c54e82b2b7db68735ed38d00f7732.cairo" + }, + "parent_location": [ + { + "end_col": 58, + "end_line": 36, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "parent_location": [ + { + "end_col": 64, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/event/ApprovalForAll/6150feec30bd48bfd0f446ed8c155a6d911a2c3fb3ec7a980733900416819259.cairo" + }, + "parent_location": [ + { + "end_col": 20, + "end_line": 36, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "start_col": 6, + "start_line": 36 + }, + "While handling event:" + ], + "start_col": 50, + "start_line": 1 + }, + "While expanding the reference '__calldata_ptr' in:" + ], + "start_col": 50, + "start_line": 36 + }, + "While handling calldata argument 'approved'" + ], + "start_col": 22, + "start_line": 2 + } + }, + "837": { + "accessible_scopes": [ + "openzeppelin.token.erc721.library", + "openzeppelin.token.erc721.library.ApprovalForAll", + "openzeppelin.token.erc721.library.ApprovalForAll.emit" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 29, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/event/ApprovalForAll/a7a8ae41be29ac9f4f6c3b7837c448d787ca051dd1ade98f409e54d33d112504.cairo" + }, + "parent_location": [ + { + "end_col": 20, + "end_line": 36, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "parent_location": [ + { + "end_col": 35, + "end_line": 390, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/starknet/common/syscalls.cairo" + }, + "parent_location": [ + { + "end_col": 95, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/event/ApprovalForAll/6150feec30bd48bfd0f446ed8c155a6d911a2c3fb3ec7a980733900416819259.cairo" + }, + "parent_location": [ + { + "end_col": 20, + "end_line": 36, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "start_col": 6, + "start_line": 36 + }, + "While handling event:" + ], + "start_col": 1, + "start_line": 1 + }, + "While trying to retrieve the implicit argument 'syscall_ptr' in:" + ], + "start_col": 17, + "start_line": 390 + }, + "While expanding the reference 'syscall_ptr' in:" + ], + "start_col": 6, + "start_line": 36 + }, + "While handling event:" + ], + "start_col": 11, + "start_line": 1 + } + }, + "838": { + "accessible_scopes": [ + "openzeppelin.token.erc721.library", + "openzeppelin.token.erc721.library.ApprovalForAll", + "openzeppelin.token.erc721.library.ApprovalForAll.emit" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 22, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/event/ApprovalForAll/6150feec30bd48bfd0f446ed8c155a6d911a2c3fb3ec7a980733900416819259.cairo" + }, + "parent_location": [ + { + "end_col": 20, + "end_line": 36, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "start_col": 6, + "start_line": 36 + }, + "While handling event:" + ], + "start_col": 21, + "start_line": 1 + } + }, + "840": { + "accessible_scopes": [ + "openzeppelin.token.erc721.library", + "openzeppelin.token.erc721.library.ApprovalForAll", + "openzeppelin.token.erc721.library.ApprovalForAll.emit" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 22, + "end_line": 2, + "input_file": { + "filename": "autogen/starknet/event/ApprovalForAll/8220fde17ca5479f12ae71a8036f4d354fe722f2c036da610b53511924e4ee84.cairo" + }, + "parent_location": [ + { + "end_col": 20, + "end_line": 36, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "parent_location": [ + { + "end_col": 39, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/event/ApprovalForAll/6150feec30bd48bfd0f446ed8c155a6d911a2c3fb3ec7a980733900416819259.cairo" + }, + "parent_location": [ + { + "end_col": 20, + "end_line": 36, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "start_col": 6, + "start_line": 36 + }, + "While handling event:" + ], + "start_col": 29, + "start_line": 1 + }, + "While expanding the reference '__keys_ptr' in:" + ], + "start_col": 6, + "start_line": 36 + }, + "While handling event:" + ], + "start_col": 12, + "start_line": 2 + } + }, + "841": { + "accessible_scopes": [ + "openzeppelin.token.erc721.library", + "openzeppelin.token.erc721.library.ApprovalForAll", + "openzeppelin.token.erc721.library.ApprovalForAll.emit" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 77, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/event/ApprovalForAll/6150feec30bd48bfd0f446ed8c155a6d911a2c3fb3ec7a980733900416819259.cairo" + }, + "parent_location": [ + { + "end_col": 20, + "end_line": 36, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "start_col": 6, + "start_line": 36 + }, + "While handling event:" + ], + "start_col": 50, + "start_line": 1 + } + }, + "842": { + "accessible_scopes": [ + "openzeppelin.token.erc721.library", + "openzeppelin.token.erc721.library.ApprovalForAll", + "openzeppelin.token.erc721.library.ApprovalForAll.emit" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 22, + "end_line": 4, + "input_file": { + "filename": "autogen/starknet/event/ApprovalForAll/8220fde17ca5479f12ae71a8036f4d354fe722f2c036da610b53511924e4ee84.cairo" + }, + "parent_location": [ + { + "end_col": 20, + "end_line": 36, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "parent_location": [ + { + "end_col": 94, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/event/ApprovalForAll/6150feec30bd48bfd0f446ed8c155a6d911a2c3fb3ec7a980733900416819259.cairo" + }, + "parent_location": [ + { + "end_col": 20, + "end_line": 36, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "start_col": 6, + "start_line": 36 + }, + "While handling event:" + ], + "start_col": 84, + "start_line": 1 + }, + "While expanding the reference '__data_ptr' in:" + ], + "start_col": 6, + "start_line": 36 + }, + "While handling event:" + ], + "start_col": 12, + "start_line": 4 + } + }, + "843": { + "accessible_scopes": [ + "openzeppelin.token.erc721.library", + "openzeppelin.token.erc721.library.ApprovalForAll", + "openzeppelin.token.erc721.library.ApprovalForAll.emit" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 95, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/event/ApprovalForAll/6150feec30bd48bfd0f446ed8c155a6d911a2c3fb3ec7a980733900416819259.cairo" + }, + "parent_location": [ + { + "end_col": 20, + "end_line": 36, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "start_col": 6, + "start_line": 36 + }, + "While handling event:" + ], + "start_col": 1, + "start_line": 1 + } + }, + "845": { + "accessible_scopes": [ + "openzeppelin.token.erc721.library", + "openzeppelin.token.erc721.library.ApprovalForAll", + "openzeppelin.token.erc721.library.ApprovalForAll.emit" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 46, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/event/ApprovalForAll/a7a8ae41be29ac9f4f6c3b7837c448d787ca051dd1ade98f409e54d33d112504.cairo" + }, + "parent_location": [ + { + "end_col": 20, + "end_line": 36, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "parent_location": [ + { + "end_col": 46, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/event/ApprovalForAll/a7a8ae41be29ac9f4f6c3b7837c448d787ca051dd1ade98f409e54d33d112504.cairo" + }, + "parent_location": [ + { + "end_col": 20, + "end_line": 36, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "parent_location": [ + { + "end_col": 11, + "end_line": 2, + "input_file": { + "filename": "autogen/starknet/event/ApprovalForAll/6150feec30bd48bfd0f446ed8c155a6d911a2c3fb3ec7a980733900416819259.cairo" + }, + "parent_location": [ + { + "end_col": 20, + "end_line": 36, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "start_col": 6, + "start_line": 36 + }, + "While handling event:" + ], + "start_col": 1, + "start_line": 2 + }, + "While trying to retrieve the implicit argument 'range_check_ptr' in:" + ], + "start_col": 6, + "start_line": 36 + }, + "While handling event:" + ], + "start_col": 31, + "start_line": 1 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 6, + "start_line": 36 + }, + "While handling event:" + ], + "start_col": 31, + "start_line": 1 + } + }, + "846": { + "accessible_scopes": [ + "openzeppelin.token.erc721.library", + "openzeppelin.token.erc721.library.ApprovalForAll", + "openzeppelin.token.erc721.library.ApprovalForAll.emit" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 11, + "end_line": 2, + "input_file": { + "filename": "autogen/starknet/event/ApprovalForAll/6150feec30bd48bfd0f446ed8c155a6d911a2c3fb3ec7a980733900416819259.cairo" + }, + "parent_location": [ + { + "end_col": 20, + "end_line": 36, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "start_col": 6, + "start_line": 36 + }, + "While handling event:" + ], + "start_col": 1, + "start_line": 2 + } + }, + "847": { + "accessible_scopes": [ + "openzeppelin.token.erc721.library", + "openzeppelin.token.erc721.library.ERC721_name", + "openzeppelin.token.erc721.library.ERC721_name.addr" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 41, + "end_line": 7, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721_name/impl.cairo" + }, + "parent_location": [ + { + "end_col": 41, + "end_line": 7, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721_name/decl.cairo" + }, + "parent_location": [ + { + "end_col": 26, + "end_line": 9, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721_name/impl.cairo" + }, + "start_col": 9, + "start_line": 9 + }, + "While trying to retrieve the implicit argument 'pedersen_ptr' in:" + ], + "start_col": 15, + "start_line": 7 + }, + "While expanding the reference 'pedersen_ptr' in:" + ], + "start_col": 15, + "start_line": 7 + } + }, + "848": { + "accessible_scopes": [ + "openzeppelin.token.erc721.library", + "openzeppelin.token.erc721.library.ERC721_name", + "openzeppelin.token.erc721.library.ERC721_name.addr" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 58, + "end_line": 7, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721_name/impl.cairo" + }, + "parent_location": [ + { + "end_col": 58, + "end_line": 7, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721_name/decl.cairo" + }, + "parent_location": [ + { + "end_col": 26, + "end_line": 9, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721_name/impl.cairo" + }, + "start_col": 9, + "start_line": 9 + }, + "While trying to retrieve the implicit argument 'range_check_ptr' in:" + ], + "start_col": 43, + "start_line": 7 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 43, + "start_line": 7 + } + }, + "849": { + "accessible_scopes": [ + "openzeppelin.token.erc721.library", + "openzeppelin.token.erc721.library.ERC721_name", + "openzeppelin.token.erc721.library.ERC721_name.addr" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 95, + "end_line": 8, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721_name/impl.cairo" + }, + "parent_location": [ + { + "end_col": 24, + "end_line": 9, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721_name/impl.cairo" + }, + "start_col": 21, + "start_line": 9 + }, + "While expanding the reference 'res' in:" + ], + "start_col": 19, + "start_line": 8 + } + }, + "851": { + "accessible_scopes": [ + "openzeppelin.token.erc721.library", + "openzeppelin.token.erc721.library.ERC721_name", + "openzeppelin.token.erc721.library.ERC721_name.addr" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 26, + "end_line": 9, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721_name/impl.cairo" + }, + "start_col": 9, + "start_line": 9 + } + }, + "852": { + "accessible_scopes": [ + "openzeppelin.token.erc721.library", + "openzeppelin.token.erc721.library.ERC721_name", + "openzeppelin.token.erc721.library.ERC721_name.read" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 61, + "end_line": 12, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721_name/impl.cairo" + }, + "parent_location": [ + { + "end_col": 41, + "end_line": 7, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721_name/decl.cairo" + }, + "parent_location": [ + { + "end_col": 36, + "end_line": 13, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721_name/impl.cairo" + }, + "start_col": 30, + "start_line": 13 + }, + "While trying to retrieve the implicit argument 'pedersen_ptr' in:" + ], + "start_col": 15, + "start_line": 7 + }, + "While expanding the reference 'pedersen_ptr' in:" + ], + "start_col": 35, + "start_line": 12 + } + }, + "853": { + "accessible_scopes": [ + "openzeppelin.token.erc721.library", + "openzeppelin.token.erc721.library.ERC721_name", + "openzeppelin.token.erc721.library.ERC721_name.read" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 78, + "end_line": 12, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721_name/impl.cairo" + }, + "parent_location": [ + { + "end_col": 58, + "end_line": 7, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721_name/decl.cairo" + }, + "parent_location": [ + { + "end_col": 36, + "end_line": 13, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721_name/impl.cairo" + }, + "start_col": 30, + "start_line": 13 + }, + "While trying to retrieve the implicit argument 'range_check_ptr' in:" + ], + "start_col": 43, + "start_line": 7 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 63, + "start_line": 12 + } + }, + "854": { + "accessible_scopes": [ + "openzeppelin.token.erc721.library", + "openzeppelin.token.erc721.library.ERC721_name", + "openzeppelin.token.erc721.library.ERC721_name.read" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 36, + "end_line": 13, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721_name/impl.cairo" + }, + "start_col": 30, + "start_line": 13 + } + }, + "856": { + "accessible_scopes": [ + "openzeppelin.token.erc721.library", + "openzeppelin.token.erc721.library.ERC721_name", + "openzeppelin.token.erc721.library.ERC721_name.read" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 33, + "end_line": 12, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721_name/impl.cairo" + }, + "parent_location": [ + { + "end_col": 37, + "end_line": 352, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/starknet/common/syscalls.cairo" + }, + "parent_location": [ + { + "end_col": 75, + "end_line": 14, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721_name/impl.cairo" + }, + "start_col": 37, + "start_line": 14 + }, + "While trying to retrieve the implicit argument 'syscall_ptr' in:" + ], + "start_col": 19, + "start_line": 352 + }, + "While expanding the reference 'syscall_ptr' in:" + ], + "start_col": 15, + "start_line": 12 + } + }, + "857": { + "accessible_scopes": [ + "openzeppelin.token.erc721.library", + "openzeppelin.token.erc721.library.ERC721_name", + "openzeppelin.token.erc721.library.ERC721_name.read" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 26, + "end_line": 13, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721_name/impl.cairo" + }, + "parent_location": [ + { + "end_col": 70, + "end_line": 14, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721_name/impl.cairo" + }, + "start_col": 58, + "start_line": 14 + }, + "While expanding the reference 'storage_addr' in:" + ], + "start_col": 14, + "start_line": 13 + } + }, + "858": { + "accessible_scopes": [ + "openzeppelin.token.erc721.library", + "openzeppelin.token.erc721.library.ERC721_name", + "openzeppelin.token.erc721.library.ERC721_name.read" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 75, + "end_line": 14, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721_name/impl.cairo" + }, + "start_col": 37, + "start_line": 14 + } + }, + "860": { + "accessible_scopes": [ + "openzeppelin.token.erc721.library", + "openzeppelin.token.erc721.library.ERC721_name", + "openzeppelin.token.erc721.library.ERC721_name.read" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 37, + "end_line": 352, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/starknet/common/syscalls.cairo" + }, + "parent_location": [ + { + "end_col": 75, + "end_line": 14, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721_name/impl.cairo" + }, + "parent_location": [ + { + "end_col": 42, + "end_line": 16, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721_name/impl.cairo" + }, + "start_col": 31, + "start_line": 16 + }, + "While expanding the reference 'syscall_ptr' in:" + ], + "start_col": 37, + "start_line": 14 + }, + "While trying to update the implicit return value 'syscall_ptr' in:" + ], + "start_col": 19, + "start_line": 352 + } + }, + "861": { + "accessible_scopes": [ + "openzeppelin.token.erc721.library", + "openzeppelin.token.erc721.library.ERC721_name", + "openzeppelin.token.erc721.library.ERC721_name.read" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 41, + "end_line": 7, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721_name/decl.cairo" + }, + "parent_location": [ + { + "end_col": 36, + "end_line": 13, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721_name/impl.cairo" + }, + "parent_location": [ + { + "end_col": 44, + "end_line": 17, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721_name/impl.cairo" + }, + "start_col": 32, + "start_line": 17 + }, + "While expanding the reference 'pedersen_ptr' in:" + ], + "start_col": 30, + "start_line": 13 + }, + "While trying to update the implicit return value 'pedersen_ptr' in:" + ], + "start_col": 15, + "start_line": 7 + } + }, + "862": { + "accessible_scopes": [ + "openzeppelin.token.erc721.library", + "openzeppelin.token.erc721.library.ERC721_name", + "openzeppelin.token.erc721.library.ERC721_name.read" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 58, + "end_line": 7, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721_name/decl.cairo" + }, + "parent_location": [ + { + "end_col": 36, + "end_line": 13, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721_name/impl.cairo" + }, + "parent_location": [ + { + "end_col": 50, + "end_line": 18, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721_name/impl.cairo" + }, + "start_col": 35, + "start_line": 18 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 30, + "start_line": 13 + }, + "While trying to update the implicit return value 'range_check_ptr' in:" + ], + "start_col": 43, + "start_line": 7 + } + }, + "863": { + "accessible_scopes": [ + "openzeppelin.token.erc721.library", + "openzeppelin.token.erc721.library.ERC721_name", + "openzeppelin.token.erc721.library.ERC721_name.read" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 33, + "end_line": 14, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721_name/impl.cairo" + }, + "parent_location": [ + { + "end_col": 64, + "end_line": 19, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721_name/impl.cairo" + }, + "start_col": 45, + "start_line": 19 + }, + "While expanding the reference '__storage_var_temp0' in:" + ], + "start_col": 14, + "start_line": 14 + } + }, + "864": { + "accessible_scopes": [ + "openzeppelin.token.erc721.library", + "openzeppelin.token.erc721.library.ERC721_name", + "openzeppelin.token.erc721.library.ERC721_name.read" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 55, + "end_line": 20, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721_name/impl.cairo" + }, + "start_col": 9, + "start_line": 20 + } + }, + "865": { + "accessible_scopes": [ + "openzeppelin.token.erc721.library", + "openzeppelin.token.erc721.library.ERC721_name", + "openzeppelin.token.erc721.library.ERC721_name.write" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 62, + "end_line": 23, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721_name/impl.cairo" + }, + "parent_location": [ + { + "end_col": 41, + "end_line": 7, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721_name/decl.cairo" + }, + "parent_location": [ + { + "end_col": 36, + "end_line": 24, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721_name/impl.cairo" + }, + "start_col": 30, + "start_line": 24 + }, + "While trying to retrieve the implicit argument 'pedersen_ptr' in:" + ], + "start_col": 15, + "start_line": 7 + }, + "While expanding the reference 'pedersen_ptr' in:" + ], + "start_col": 36, + "start_line": 23 + } + }, + "866": { + "accessible_scopes": [ + "openzeppelin.token.erc721.library", + "openzeppelin.token.erc721.library.ERC721_name", + "openzeppelin.token.erc721.library.ERC721_name.write" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 79, + "end_line": 23, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721_name/impl.cairo" + }, + "parent_location": [ + { + "end_col": 58, + "end_line": 7, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721_name/decl.cairo" + }, + "parent_location": [ + { + "end_col": 36, + "end_line": 24, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721_name/impl.cairo" + }, + "start_col": 30, + "start_line": 24 + }, + "While trying to retrieve the implicit argument 'range_check_ptr' in:" + ], + "start_col": 43, + "start_line": 7 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 64, + "start_line": 23 + } + }, + "867": { + "accessible_scopes": [ + "openzeppelin.token.erc721.library", + "openzeppelin.token.erc721.library.ERC721_name", + "openzeppelin.token.erc721.library.ERC721_name.write" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 36, + "end_line": 24, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721_name/impl.cairo" + }, + "start_col": 30, + "start_line": 24 + } + }, + "869": { + "accessible_scopes": [ + "openzeppelin.token.erc721.library", + "openzeppelin.token.erc721.library.ERC721_name", + "openzeppelin.token.erc721.library.ERC721_name.write" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 34, + "end_line": 23, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721_name/impl.cairo" + }, + "parent_location": [ + { + "end_col": 38, + "end_line": 370, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/starknet/common/syscalls.cairo" + }, + "parent_location": [ + { + "end_col": 80, + "end_line": 25, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721_name/impl.cairo" + }, + "start_col": 9, + "start_line": 25 + }, + "While trying to retrieve the implicit argument 'syscall_ptr' in:" + ], + "start_col": 20, + "start_line": 370 + }, + "While expanding the reference 'syscall_ptr' in:" + ], + "start_col": 16, + "start_line": 23 + } + }, + "870": { + "accessible_scopes": [ + "openzeppelin.token.erc721.library", + "openzeppelin.token.erc721.library.ERC721_name", + "openzeppelin.token.erc721.library.ERC721_name.write" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 26, + "end_line": 24, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721_name/impl.cairo" + }, + "parent_location": [ + { + "end_col": 43, + "end_line": 25, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721_name/impl.cairo" + }, + "start_col": 31, + "start_line": 25 + }, + "While expanding the reference 'storage_addr' in:" + ], + "start_col": 14, + "start_line": 24 + } + }, + "871": { + "accessible_scopes": [ + "openzeppelin.token.erc721.library", + "openzeppelin.token.erc721.library.ERC721_name", + "openzeppelin.token.erc721.library.ERC721_name.write" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 79, + "end_line": 25, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721_name/impl.cairo" + }, + "start_col": 55, + "start_line": 25 + } + }, + "872": { + "accessible_scopes": [ + "openzeppelin.token.erc721.library", + "openzeppelin.token.erc721.library.ERC721_name", + "openzeppelin.token.erc721.library.ERC721_name.write" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 80, + "end_line": 25, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721_name/impl.cairo" + }, + "start_col": 9, + "start_line": 25 + } + }, + "874": { + "accessible_scopes": [ + "openzeppelin.token.erc721.library", + "openzeppelin.token.erc721.library.ERC721_name", + "openzeppelin.token.erc721.library.ERC721_name.write" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 41, + "end_line": 7, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721_name/decl.cairo" + }, + "parent_location": [ + { + "end_col": 36, + "end_line": 24, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721_name/impl.cairo" + }, + "parent_location": [ + { + "end_col": 62, + "end_line": 19, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721_name/decl.cairo" + }, + "parent_location": [ + { + "end_col": 19, + "end_line": 26, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721_name/impl.cairo" + }, + "start_col": 9, + "start_line": 26 + }, + "While trying to retrieve the implicit argument 'pedersen_ptr' in:" + ], + "start_col": 36, + "start_line": 19 + }, + "While expanding the reference 'pedersen_ptr' in:" + ], + "start_col": 30, + "start_line": 24 + }, + "While trying to update the implicit return value 'pedersen_ptr' in:" + ], + "start_col": 15, + "start_line": 7 + } + }, + "875": { + "accessible_scopes": [ + "openzeppelin.token.erc721.library", + "openzeppelin.token.erc721.library.ERC721_name", + "openzeppelin.token.erc721.library.ERC721_name.write" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 58, + "end_line": 7, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721_name/decl.cairo" + }, + "parent_location": [ + { + "end_col": 36, + "end_line": 24, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721_name/impl.cairo" + }, + "parent_location": [ + { + "end_col": 79, + "end_line": 19, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721_name/decl.cairo" + }, + "parent_location": [ + { + "end_col": 19, + "end_line": 26, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721_name/impl.cairo" + }, + "start_col": 9, + "start_line": 26 + }, + "While trying to retrieve the implicit argument 'range_check_ptr' in:" + ], + "start_col": 64, + "start_line": 19 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 30, + "start_line": 24 + }, + "While trying to update the implicit return value 'range_check_ptr' in:" + ], + "start_col": 43, + "start_line": 7 + } + }, + "876": { + "accessible_scopes": [ + "openzeppelin.token.erc721.library", + "openzeppelin.token.erc721.library.ERC721_name", + "openzeppelin.token.erc721.library.ERC721_name.write" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 19, + "end_line": 26, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721_name/impl.cairo" + }, + "start_col": 9, + "start_line": 26 + } + }, + "877": { + "accessible_scopes": [ + "openzeppelin.token.erc721.library", + "openzeppelin.token.erc721.library.ERC721_symbol", + "openzeppelin.token.erc721.library.ERC721_symbol.addr" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 41, + "end_line": 7, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721_symbol/impl.cairo" + }, + "parent_location": [ + { + "end_col": 41, + "end_line": 7, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721_symbol/decl.cairo" + }, + "parent_location": [ + { + "end_col": 26, + "end_line": 9, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721_symbol/impl.cairo" + }, + "start_col": 9, + "start_line": 9 + }, + "While trying to retrieve the implicit argument 'pedersen_ptr' in:" + ], + "start_col": 15, + "start_line": 7 + }, + "While expanding the reference 'pedersen_ptr' in:" + ], + "start_col": 15, + "start_line": 7 + } + }, + "878": { + "accessible_scopes": [ + "openzeppelin.token.erc721.library", + "openzeppelin.token.erc721.library.ERC721_symbol", + "openzeppelin.token.erc721.library.ERC721_symbol.addr" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 58, + "end_line": 7, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721_symbol/impl.cairo" + }, + "parent_location": [ + { + "end_col": 58, + "end_line": 7, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721_symbol/decl.cairo" + }, + "parent_location": [ + { + "end_col": 26, + "end_line": 9, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721_symbol/impl.cairo" + }, + "start_col": 9, + "start_line": 9 + }, + "While trying to retrieve the implicit argument 'range_check_ptr' in:" + ], + "start_col": 43, + "start_line": 7 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 43, + "start_line": 7 + } + }, + "879": { + "accessible_scopes": [ + "openzeppelin.token.erc721.library", + "openzeppelin.token.erc721.library.ERC721_symbol", + "openzeppelin.token.erc721.library.ERC721_symbol.addr" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 94, + "end_line": 8, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721_symbol/impl.cairo" + }, + "parent_location": [ + { + "end_col": 24, + "end_line": 9, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721_symbol/impl.cairo" + }, + "start_col": 21, + "start_line": 9 + }, + "While expanding the reference 'res' in:" + ], + "start_col": 19, + "start_line": 8 + } + }, + "881": { + "accessible_scopes": [ + "openzeppelin.token.erc721.library", + "openzeppelin.token.erc721.library.ERC721_symbol", + "openzeppelin.token.erc721.library.ERC721_symbol.addr" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 26, + "end_line": 9, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721_symbol/impl.cairo" + }, + "start_col": 9, + "start_line": 9 + } + }, + "882": { + "accessible_scopes": [ + "openzeppelin.token.erc721.library", + "openzeppelin.token.erc721.library.ERC721_symbol", + "openzeppelin.token.erc721.library.ERC721_symbol.read" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 61, + "end_line": 12, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721_symbol/impl.cairo" + }, + "parent_location": [ + { + "end_col": 41, + "end_line": 7, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721_symbol/decl.cairo" + }, + "parent_location": [ + { + "end_col": 36, + "end_line": 13, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721_symbol/impl.cairo" + }, + "start_col": 30, + "start_line": 13 + }, + "While trying to retrieve the implicit argument 'pedersen_ptr' in:" + ], + "start_col": 15, + "start_line": 7 + }, + "While expanding the reference 'pedersen_ptr' in:" + ], + "start_col": 35, + "start_line": 12 + } + }, + "883": { + "accessible_scopes": [ + "openzeppelin.token.erc721.library", + "openzeppelin.token.erc721.library.ERC721_symbol", + "openzeppelin.token.erc721.library.ERC721_symbol.read" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 78, + "end_line": 12, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721_symbol/impl.cairo" + }, + "parent_location": [ + { + "end_col": 58, + "end_line": 7, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721_symbol/decl.cairo" + }, + "parent_location": [ + { + "end_col": 36, + "end_line": 13, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721_symbol/impl.cairo" + }, + "start_col": 30, + "start_line": 13 + }, + "While trying to retrieve the implicit argument 'range_check_ptr' in:" + ], + "start_col": 43, + "start_line": 7 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 63, + "start_line": 12 + } + }, + "884": { + "accessible_scopes": [ + "openzeppelin.token.erc721.library", + "openzeppelin.token.erc721.library.ERC721_symbol", + "openzeppelin.token.erc721.library.ERC721_symbol.read" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 36, + "end_line": 13, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721_symbol/impl.cairo" + }, + "start_col": 30, + "start_line": 13 + } + }, + "886": { + "accessible_scopes": [ + "openzeppelin.token.erc721.library", + "openzeppelin.token.erc721.library.ERC721_symbol", + "openzeppelin.token.erc721.library.ERC721_symbol.read" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 33, + "end_line": 12, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721_symbol/impl.cairo" + }, + "parent_location": [ + { + "end_col": 37, + "end_line": 352, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/starknet/common/syscalls.cairo" + }, + "parent_location": [ + { + "end_col": 75, + "end_line": 14, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721_symbol/impl.cairo" + }, + "start_col": 37, + "start_line": 14 + }, + "While trying to retrieve the implicit argument 'syscall_ptr' in:" + ], + "start_col": 19, + "start_line": 352 + }, + "While expanding the reference 'syscall_ptr' in:" + ], + "start_col": 15, + "start_line": 12 + } + }, + "887": { + "accessible_scopes": [ + "openzeppelin.token.erc721.library", + "openzeppelin.token.erc721.library.ERC721_symbol", + "openzeppelin.token.erc721.library.ERC721_symbol.read" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 26, + "end_line": 13, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721_symbol/impl.cairo" + }, + "parent_location": [ + { + "end_col": 70, + "end_line": 14, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721_symbol/impl.cairo" + }, + "start_col": 58, + "start_line": 14 + }, + "While expanding the reference 'storage_addr' in:" + ], + "start_col": 14, + "start_line": 13 + } + }, + "888": { + "accessible_scopes": [ + "openzeppelin.token.erc721.library", + "openzeppelin.token.erc721.library.ERC721_symbol", + "openzeppelin.token.erc721.library.ERC721_symbol.read" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 75, + "end_line": 14, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721_symbol/impl.cairo" + }, + "start_col": 37, + "start_line": 14 + } + }, + "890": { + "accessible_scopes": [ + "openzeppelin.token.erc721.library", + "openzeppelin.token.erc721.library.ERC721_symbol", + "openzeppelin.token.erc721.library.ERC721_symbol.read" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 37, + "end_line": 352, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/starknet/common/syscalls.cairo" + }, + "parent_location": [ + { + "end_col": 75, + "end_line": 14, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721_symbol/impl.cairo" + }, + "parent_location": [ + { + "end_col": 42, + "end_line": 16, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721_symbol/impl.cairo" + }, + "start_col": 31, + "start_line": 16 + }, + "While expanding the reference 'syscall_ptr' in:" + ], + "start_col": 37, + "start_line": 14 + }, + "While trying to update the implicit return value 'syscall_ptr' in:" + ], + "start_col": 19, + "start_line": 352 + } + }, + "891": { + "accessible_scopes": [ + "openzeppelin.token.erc721.library", + "openzeppelin.token.erc721.library.ERC721_symbol", + "openzeppelin.token.erc721.library.ERC721_symbol.read" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 41, + "end_line": 7, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721_symbol/decl.cairo" + }, + "parent_location": [ + { + "end_col": 36, + "end_line": 13, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721_symbol/impl.cairo" + }, + "parent_location": [ + { + "end_col": 44, + "end_line": 17, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721_symbol/impl.cairo" + }, + "start_col": 32, + "start_line": 17 + }, + "While expanding the reference 'pedersen_ptr' in:" + ], + "start_col": 30, + "start_line": 13 + }, + "While trying to update the implicit return value 'pedersen_ptr' in:" + ], + "start_col": 15, + "start_line": 7 + } + }, + "892": { + "accessible_scopes": [ + "openzeppelin.token.erc721.library", + "openzeppelin.token.erc721.library.ERC721_symbol", + "openzeppelin.token.erc721.library.ERC721_symbol.read" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 58, + "end_line": 7, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721_symbol/decl.cairo" + }, + "parent_location": [ + { + "end_col": 36, + "end_line": 13, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721_symbol/impl.cairo" + }, + "parent_location": [ + { + "end_col": 50, + "end_line": 18, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721_symbol/impl.cairo" + }, + "start_col": 35, + "start_line": 18 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 30, + "start_line": 13 + }, + "While trying to update the implicit return value 'range_check_ptr' in:" + ], + "start_col": 43, + "start_line": 7 + } + }, + "893": { + "accessible_scopes": [ + "openzeppelin.token.erc721.library", + "openzeppelin.token.erc721.library.ERC721_symbol", + "openzeppelin.token.erc721.library.ERC721_symbol.read" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 33, + "end_line": 14, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721_symbol/impl.cairo" + }, + "parent_location": [ + { + "end_col": 64, + "end_line": 19, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721_symbol/impl.cairo" + }, + "start_col": 45, + "start_line": 19 + }, + "While expanding the reference '__storage_var_temp0' in:" + ], + "start_col": 14, + "start_line": 14 + } + }, + "894": { + "accessible_scopes": [ + "openzeppelin.token.erc721.library", + "openzeppelin.token.erc721.library.ERC721_symbol", + "openzeppelin.token.erc721.library.ERC721_symbol.read" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 55, + "end_line": 20, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721_symbol/impl.cairo" + }, + "start_col": 9, + "start_line": 20 + } + }, + "895": { + "accessible_scopes": [ + "openzeppelin.token.erc721.library", + "openzeppelin.token.erc721.library.ERC721_symbol", + "openzeppelin.token.erc721.library.ERC721_symbol.write" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 62, + "end_line": 23, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721_symbol/impl.cairo" + }, + "parent_location": [ + { + "end_col": 41, + "end_line": 7, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721_symbol/decl.cairo" + }, + "parent_location": [ + { + "end_col": 36, + "end_line": 24, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721_symbol/impl.cairo" + }, + "start_col": 30, + "start_line": 24 + }, + "While trying to retrieve the implicit argument 'pedersen_ptr' in:" + ], + "start_col": 15, + "start_line": 7 + }, + "While expanding the reference 'pedersen_ptr' in:" + ], + "start_col": 36, + "start_line": 23 + } + }, + "896": { + "accessible_scopes": [ + "openzeppelin.token.erc721.library", + "openzeppelin.token.erc721.library.ERC721_symbol", + "openzeppelin.token.erc721.library.ERC721_symbol.write" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 79, + "end_line": 23, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721_symbol/impl.cairo" + }, + "parent_location": [ + { + "end_col": 58, + "end_line": 7, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721_symbol/decl.cairo" + }, + "parent_location": [ + { + "end_col": 36, + "end_line": 24, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721_symbol/impl.cairo" + }, + "start_col": 30, + "start_line": 24 + }, + "While trying to retrieve the implicit argument 'range_check_ptr' in:" + ], + "start_col": 43, + "start_line": 7 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 64, + "start_line": 23 + } + }, + "897": { + "accessible_scopes": [ + "openzeppelin.token.erc721.library", + "openzeppelin.token.erc721.library.ERC721_symbol", + "openzeppelin.token.erc721.library.ERC721_symbol.write" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 36, + "end_line": 24, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721_symbol/impl.cairo" + }, + "start_col": 30, + "start_line": 24 + } + }, + "899": { + "accessible_scopes": [ + "openzeppelin.token.erc721.library", + "openzeppelin.token.erc721.library.ERC721_symbol", + "openzeppelin.token.erc721.library.ERC721_symbol.write" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 34, + "end_line": 23, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721_symbol/impl.cairo" + }, + "parent_location": [ + { + "end_col": 38, + "end_line": 370, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/starknet/common/syscalls.cairo" + }, + "parent_location": [ + { + "end_col": 80, + "end_line": 25, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721_symbol/impl.cairo" + }, + "start_col": 9, + "start_line": 25 + }, + "While trying to retrieve the implicit argument 'syscall_ptr' in:" + ], + "start_col": 20, + "start_line": 370 + }, + "While expanding the reference 'syscall_ptr' in:" + ], + "start_col": 16, + "start_line": 23 + } + }, + "900": { + "accessible_scopes": [ + "openzeppelin.token.erc721.library", + "openzeppelin.token.erc721.library.ERC721_symbol", + "openzeppelin.token.erc721.library.ERC721_symbol.write" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 26, + "end_line": 24, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721_symbol/impl.cairo" + }, + "parent_location": [ + { + "end_col": 43, + "end_line": 25, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721_symbol/impl.cairo" + }, + "start_col": 31, + "start_line": 25 + }, + "While expanding the reference 'storage_addr' in:" + ], + "start_col": 14, + "start_line": 24 + } + }, + "901": { + "accessible_scopes": [ + "openzeppelin.token.erc721.library", + "openzeppelin.token.erc721.library.ERC721_symbol", + "openzeppelin.token.erc721.library.ERC721_symbol.write" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 79, + "end_line": 25, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721_symbol/impl.cairo" + }, + "start_col": 55, + "start_line": 25 + } + }, + "902": { + "accessible_scopes": [ + "openzeppelin.token.erc721.library", + "openzeppelin.token.erc721.library.ERC721_symbol", + "openzeppelin.token.erc721.library.ERC721_symbol.write" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 80, + "end_line": 25, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721_symbol/impl.cairo" + }, + "start_col": 9, + "start_line": 25 + } + }, + "904": { + "accessible_scopes": [ + "openzeppelin.token.erc721.library", + "openzeppelin.token.erc721.library.ERC721_symbol", + "openzeppelin.token.erc721.library.ERC721_symbol.write" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 41, + "end_line": 7, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721_symbol/decl.cairo" + }, + "parent_location": [ + { + "end_col": 36, + "end_line": 24, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721_symbol/impl.cairo" + }, + "parent_location": [ + { + "end_col": 62, + "end_line": 19, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721_symbol/decl.cairo" + }, + "parent_location": [ + { + "end_col": 19, + "end_line": 26, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721_symbol/impl.cairo" + }, + "start_col": 9, + "start_line": 26 + }, + "While trying to retrieve the implicit argument 'pedersen_ptr' in:" + ], + "start_col": 36, + "start_line": 19 + }, + "While expanding the reference 'pedersen_ptr' in:" + ], + "start_col": 30, + "start_line": 24 + }, + "While trying to update the implicit return value 'pedersen_ptr' in:" + ], + "start_col": 15, + "start_line": 7 + } + }, + "905": { + "accessible_scopes": [ + "openzeppelin.token.erc721.library", + "openzeppelin.token.erc721.library.ERC721_symbol", + "openzeppelin.token.erc721.library.ERC721_symbol.write" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 58, + "end_line": 7, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721_symbol/decl.cairo" + }, + "parent_location": [ + { + "end_col": 36, + "end_line": 24, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721_symbol/impl.cairo" + }, + "parent_location": [ + { + "end_col": 79, + "end_line": 19, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721_symbol/decl.cairo" + }, + "parent_location": [ + { + "end_col": 19, + "end_line": 26, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721_symbol/impl.cairo" + }, + "start_col": 9, + "start_line": 26 + }, + "While trying to retrieve the implicit argument 'range_check_ptr' in:" + ], + "start_col": 64, + "start_line": 19 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 30, + "start_line": 24 + }, + "While trying to update the implicit return value 'range_check_ptr' in:" + ], + "start_col": 43, + "start_line": 7 + } + }, + "906": { + "accessible_scopes": [ + "openzeppelin.token.erc721.library", + "openzeppelin.token.erc721.library.ERC721_symbol", + "openzeppelin.token.erc721.library.ERC721_symbol.write" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 19, + "end_line": 26, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721_symbol/impl.cairo" + }, + "start_col": 9, + "start_line": 26 + } + }, + "907": { + "accessible_scopes": [ + "openzeppelin.token.erc721.library", + "openzeppelin.token.erc721.library.ERC721_owners", + "openzeppelin.token.erc721.library.ERC721_owners.addr" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 41, + "end_line": 7, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721_owners/impl.cairo" + }, + "parent_location": [ + { + "end_col": 48, + "end_line": 9, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721_owners/impl.cairo" + }, + "start_col": 36, + "start_line": 9 + }, + "While expanding the reference 'pedersen_ptr' in:" + ], + "start_col": 15, + "start_line": 7 + } + }, + "908": { + "accessible_scopes": [ + "openzeppelin.token.erc721.library", + "openzeppelin.token.erc721.library.ERC721_owners", + "openzeppelin.token.erc721.library.ERC721_owners.addr" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 94, + "end_line": 8, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721_owners/impl.cairo" + }, + "parent_location": [ + { + "end_col": 53, + "end_line": 9, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721_owners/impl.cairo" + }, + "start_col": 50, + "start_line": 9 + }, + "While expanding the reference 'res' in:" + ], + "start_col": 19, + "start_line": 8 + } + }, + "910": { + "accessible_scopes": [ + "openzeppelin.token.erc721.library", + "openzeppelin.token.erc721.library.ERC721_owners", + "openzeppelin.token.erc721.library.ERC721_owners.addr" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 80, + "end_line": 9, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721_owners/impl.cairo" + }, + "start_col": 55, + "start_line": 9 + } + }, + "911": { + "accessible_scopes": [ + "openzeppelin.token.erc721.library", + "openzeppelin.token.erc721.library.ERC721_owners", + "openzeppelin.token.erc721.library.ERC721_owners.addr" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 81, + "end_line": 9, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721_owners/impl.cairo" + }, + "start_col": 21, + "start_line": 9 + } + }, + "913": { + "accessible_scopes": [ + "openzeppelin.token.erc721.library", + "openzeppelin.token.erc721.library.ERC721_owners", + "openzeppelin.token.erc721.library.ERC721_owners.addr" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 80, + "end_line": 10, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721_owners/impl.cairo" + }, + "start_col": 55, + "start_line": 10 + } + }, + "914": { + "accessible_scopes": [ + "openzeppelin.token.erc721.library", + "openzeppelin.token.erc721.library.ERC721_owners", + "openzeppelin.token.erc721.library.ERC721_owners.addr" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 81, + "end_line": 10, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721_owners/impl.cairo" + }, + "start_col": 21, + "start_line": 10 + } + }, + "916": { + "accessible_scopes": [ + "openzeppelin.token.erc721.library", + "openzeppelin.token.erc721.library.ERC721_owners", + "openzeppelin.token.erc721.library.ERC721_owners.addr" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 58, + "end_line": 7, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721_owners/impl.cairo" + }, + "parent_location": [ + { + "end_col": 39, + "end_line": 12, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/starknet/common/storage.cairo" + }, + "parent_location": [ + { + "end_col": 48, + "end_line": 11, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721_owners/impl.cairo" + }, + "start_col": 21, + "start_line": 11 + }, + "While trying to retrieve the implicit argument 'range_check_ptr' in:" + ], + "start_col": 24, + "start_line": 12 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 43, + "start_line": 7 + } + }, + "917": { + "accessible_scopes": [ + "openzeppelin.token.erc721.library", + "openzeppelin.token.erc721.library.ERC721_owners", + "openzeppelin.token.erc721.library.ERC721_owners.addr" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 17, + "end_line": 10, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721_owners/impl.cairo" + }, + "parent_location": [ + { + "end_col": 47, + "end_line": 11, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721_owners/impl.cairo" + }, + "start_col": 44, + "start_line": 11 + }, + "While expanding the reference 'res' in:" + ], + "start_col": 14, + "start_line": 10 + } + }, + "918": { + "accessible_scopes": [ + "openzeppelin.token.erc721.library", + "openzeppelin.token.erc721.library.ERC721_owners", + "openzeppelin.token.erc721.library.ERC721_owners.addr" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 48, + "end_line": 11, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721_owners/impl.cairo" + }, + "start_col": 21, + "start_line": 11 + } + }, + "920": { + "accessible_scopes": [ + "openzeppelin.token.erc721.library", + "openzeppelin.token.erc721.library.ERC721_owners", + "openzeppelin.token.erc721.library.ERC721_owners.addr" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 48, + "end_line": 10, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721_owners/impl.cairo" + }, + "parent_location": [ + { + "end_col": 41, + "end_line": 7, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721_owners/decl.cairo" + }, + "parent_location": [ + { + "end_col": 26, + "end_line": 12, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721_owners/impl.cairo" + }, + "start_col": 9, + "start_line": 12 + }, + "While trying to retrieve the implicit argument 'pedersen_ptr' in:" + ], + "start_col": 15, + "start_line": 7 + }, + "While expanding the reference 'pedersen_ptr' in:" + ], + "start_col": 36, + "start_line": 10 + } + }, + "921": { + "accessible_scopes": [ + "openzeppelin.token.erc721.library", + "openzeppelin.token.erc721.library.ERC721_owners", + "openzeppelin.token.erc721.library.ERC721_owners.addr" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 39, + "end_line": 12, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/starknet/common/storage.cairo" + }, + "parent_location": [ + { + "end_col": 48, + "end_line": 11, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721_owners/impl.cairo" + }, + "parent_location": [ + { + "end_col": 58, + "end_line": 7, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721_owners/decl.cairo" + }, + "parent_location": [ + { + "end_col": 26, + "end_line": 12, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721_owners/impl.cairo" + }, + "start_col": 9, + "start_line": 12 + }, + "While trying to retrieve the implicit argument 'range_check_ptr' in:" + ], + "start_col": 43, + "start_line": 7 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 21, + "start_line": 11 + }, + "While trying to update the implicit return value 'range_check_ptr' in:" + ], + "start_col": 24, + "start_line": 12 + } + }, + "922": { + "accessible_scopes": [ + "openzeppelin.token.erc721.library", + "openzeppelin.token.erc721.library.ERC721_owners", + "openzeppelin.token.erc721.library.ERC721_owners.addr" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 17, + "end_line": 11, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721_owners/impl.cairo" + }, + "parent_location": [ + { + "end_col": 24, + "end_line": 12, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721_owners/impl.cairo" + }, + "start_col": 21, + "start_line": 12 + }, + "While expanding the reference 'res' in:" + ], + "start_col": 14, + "start_line": 11 + } + }, + "923": { + "accessible_scopes": [ + "openzeppelin.token.erc721.library", + "openzeppelin.token.erc721.library.ERC721_owners", + "openzeppelin.token.erc721.library.ERC721_owners.addr" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 26, + "end_line": 12, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721_owners/impl.cairo" + }, + "start_col": 9, + "start_line": 12 + } + }, + "924": { + "accessible_scopes": [ + "openzeppelin.token.erc721.library", + "openzeppelin.token.erc721.library.ERC721_owners", + "openzeppelin.token.erc721.library.ERC721_owners.read" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 61, + "end_line": 15, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721_owners/impl.cairo" + }, + "parent_location": [ + { + "end_col": 41, + "end_line": 7, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721_owners/decl.cairo" + }, + "parent_location": [ + { + "end_col": 44, + "end_line": 18, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721_owners/impl.cairo" + }, + "start_col": 30, + "start_line": 18 + }, + "While trying to retrieve the implicit argument 'pedersen_ptr' in:" + ], + "start_col": 15, + "start_line": 7 + }, + "While expanding the reference 'pedersen_ptr' in:" + ], + "start_col": 35, + "start_line": 15 + } + }, + "925": { + "accessible_scopes": [ + "openzeppelin.token.erc721.library", + "openzeppelin.token.erc721.library.ERC721_owners", + "openzeppelin.token.erc721.library.ERC721_owners.read" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 78, + "end_line": 15, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721_owners/impl.cairo" + }, + "parent_location": [ + { + "end_col": 58, + "end_line": 7, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721_owners/decl.cairo" + }, + "parent_location": [ + { + "end_col": 44, + "end_line": 18, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721_owners/impl.cairo" + }, + "start_col": 30, + "start_line": 18 + }, + "While trying to retrieve the implicit argument 'range_check_ptr' in:" + ], + "start_col": 43, + "start_line": 7 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 63, + "start_line": 15 + } + }, + "926": { + "accessible_scopes": [ + "openzeppelin.token.erc721.library", + "openzeppelin.token.erc721.library.ERC721_owners", + "openzeppelin.token.erc721.library.ERC721_owners.read" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 26, + "end_line": 16, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721_owners/impl.cairo" + }, + "parent_location": [ + { + "end_col": 43, + "end_line": 18, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721_owners/impl.cairo" + }, + "start_col": 35, + "start_line": 18 + }, + "While expanding the reference 'token_id' in:" + ], + "start_col": 9, + "start_line": 16 + } + }, + "927": { + "accessible_scopes": [ + "openzeppelin.token.erc721.library", + "openzeppelin.token.erc721.library.ERC721_owners", + "openzeppelin.token.erc721.library.ERC721_owners.read" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 26, + "end_line": 16, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721_owners/impl.cairo" + }, + "parent_location": [ + { + "end_col": 43, + "end_line": 18, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721_owners/impl.cairo" + }, + "start_col": 35, + "start_line": 18 + }, + "While expanding the reference 'token_id' in:" + ], + "start_col": 9, + "start_line": 16 + } + }, + "928": { + "accessible_scopes": [ + "openzeppelin.token.erc721.library", + "openzeppelin.token.erc721.library.ERC721_owners", + "openzeppelin.token.erc721.library.ERC721_owners.read" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 44, + "end_line": 18, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721_owners/impl.cairo" + }, + "start_col": 30, + "start_line": 18 + } + }, + "930": { + "accessible_scopes": [ + "openzeppelin.token.erc721.library", + "openzeppelin.token.erc721.library.ERC721_owners", + "openzeppelin.token.erc721.library.ERC721_owners.read" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 33, + "end_line": 15, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721_owners/impl.cairo" + }, + "parent_location": [ + { + "end_col": 37, + "end_line": 352, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/starknet/common/syscalls.cairo" + }, + "parent_location": [ + { + "end_col": 75, + "end_line": 19, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721_owners/impl.cairo" + }, + "start_col": 37, + "start_line": 19 + }, + "While trying to retrieve the implicit argument 'syscall_ptr' in:" + ], + "start_col": 19, + "start_line": 352 + }, + "While expanding the reference 'syscall_ptr' in:" + ], + "start_col": 15, + "start_line": 15 + } + }, + "931": { + "accessible_scopes": [ + "openzeppelin.token.erc721.library", + "openzeppelin.token.erc721.library.ERC721_owners", + "openzeppelin.token.erc721.library.ERC721_owners.read" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 26, + "end_line": 18, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721_owners/impl.cairo" + }, + "parent_location": [ + { + "end_col": 70, + "end_line": 19, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721_owners/impl.cairo" + }, + "start_col": 58, + "start_line": 19 + }, + "While expanding the reference 'storage_addr' in:" + ], + "start_col": 14, + "start_line": 18 + } + }, + "932": { + "accessible_scopes": [ + "openzeppelin.token.erc721.library", + "openzeppelin.token.erc721.library.ERC721_owners", + "openzeppelin.token.erc721.library.ERC721_owners.read" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 75, + "end_line": 19, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721_owners/impl.cairo" + }, + "start_col": 37, + "start_line": 19 + } + }, + "934": { + "accessible_scopes": [ + "openzeppelin.token.erc721.library", + "openzeppelin.token.erc721.library.ERC721_owners", + "openzeppelin.token.erc721.library.ERC721_owners.read" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 37, + "end_line": 352, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/starknet/common/syscalls.cairo" + }, + "parent_location": [ + { + "end_col": 75, + "end_line": 19, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721_owners/impl.cairo" + }, + "parent_location": [ + { + "end_col": 42, + "end_line": 21, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721_owners/impl.cairo" + }, + "start_col": 31, + "start_line": 21 + }, + "While expanding the reference 'syscall_ptr' in:" + ], + "start_col": 37, + "start_line": 19 + }, + "While trying to update the implicit return value 'syscall_ptr' in:" + ], + "start_col": 19, + "start_line": 352 + } + }, + "935": { + "accessible_scopes": [ + "openzeppelin.token.erc721.library", + "openzeppelin.token.erc721.library.ERC721_owners", + "openzeppelin.token.erc721.library.ERC721_owners.read" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 41, + "end_line": 7, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721_owners/decl.cairo" + }, + "parent_location": [ + { + "end_col": 44, + "end_line": 18, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721_owners/impl.cairo" + }, + "parent_location": [ + { + "end_col": 44, + "end_line": 22, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721_owners/impl.cairo" + }, + "start_col": 32, + "start_line": 22 + }, + "While expanding the reference 'pedersen_ptr' in:" + ], + "start_col": 30, + "start_line": 18 + }, + "While trying to update the implicit return value 'pedersen_ptr' in:" + ], + "start_col": 15, + "start_line": 7 + } + }, + "936": { + "accessible_scopes": [ + "openzeppelin.token.erc721.library", + "openzeppelin.token.erc721.library.ERC721_owners", + "openzeppelin.token.erc721.library.ERC721_owners.read" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 58, + "end_line": 7, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721_owners/decl.cairo" + }, + "parent_location": [ + { + "end_col": 44, + "end_line": 18, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721_owners/impl.cairo" + }, + "parent_location": [ + { + "end_col": 50, + "end_line": 23, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721_owners/impl.cairo" + }, + "start_col": 35, + "start_line": 23 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 30, + "start_line": 18 + }, + "While trying to update the implicit return value 'range_check_ptr' in:" + ], + "start_col": 43, + "start_line": 7 + } + }, + "937": { + "accessible_scopes": [ + "openzeppelin.token.erc721.library", + "openzeppelin.token.erc721.library.ERC721_owners", + "openzeppelin.token.erc721.library.ERC721_owners.read" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 33, + "end_line": 19, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721_owners/impl.cairo" + }, + "parent_location": [ + { + "end_col": 64, + "end_line": 24, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721_owners/impl.cairo" + }, + "start_col": 45, + "start_line": 24 + }, + "While expanding the reference '__storage_var_temp0' in:" + ], + "start_col": 14, + "start_line": 19 + } + }, + "938": { + "accessible_scopes": [ + "openzeppelin.token.erc721.library", + "openzeppelin.token.erc721.library.ERC721_owners", + "openzeppelin.token.erc721.library.ERC721_owners.read" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 55, + "end_line": 25, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721_owners/impl.cairo" + }, + "start_col": 9, + "start_line": 25 + } + }, + "939": { + "accessible_scopes": [ + "openzeppelin.token.erc721.library", + "openzeppelin.token.erc721.library.ERC721_owners", + "openzeppelin.token.erc721.library.ERC721_owners.write" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 62, + "end_line": 28, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721_owners/impl.cairo" + }, + "parent_location": [ + { + "end_col": 41, + "end_line": 7, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721_owners/decl.cairo" + }, + "parent_location": [ + { + "end_col": 44, + "end_line": 31, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721_owners/impl.cairo" + }, + "start_col": 30, + "start_line": 31 + }, + "While trying to retrieve the implicit argument 'pedersen_ptr' in:" + ], + "start_col": 15, + "start_line": 7 + }, + "While expanding the reference 'pedersen_ptr' in:" + ], + "start_col": 36, + "start_line": 28 + } + }, + "940": { + "accessible_scopes": [ + "openzeppelin.token.erc721.library", + "openzeppelin.token.erc721.library.ERC721_owners", + "openzeppelin.token.erc721.library.ERC721_owners.write" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 79, + "end_line": 28, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721_owners/impl.cairo" + }, + "parent_location": [ + { + "end_col": 58, + "end_line": 7, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721_owners/decl.cairo" + }, + "parent_location": [ + { + "end_col": 44, + "end_line": 31, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721_owners/impl.cairo" + }, + "start_col": 30, + "start_line": 31 + }, + "While trying to retrieve the implicit argument 'range_check_ptr' in:" + ], + "start_col": 43, + "start_line": 7 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 64, + "start_line": 28 + } + }, + "941": { + "accessible_scopes": [ + "openzeppelin.token.erc721.library", + "openzeppelin.token.erc721.library.ERC721_owners", + "openzeppelin.token.erc721.library.ERC721_owners.write" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 26, + "end_line": 29, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721_owners/impl.cairo" + }, + "parent_location": [ + { + "end_col": 43, + "end_line": 31, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721_owners/impl.cairo" + }, + "start_col": 35, + "start_line": 31 + }, + "While expanding the reference 'token_id' in:" + ], + "start_col": 9, + "start_line": 29 + } + }, + "942": { + "accessible_scopes": [ + "openzeppelin.token.erc721.library", + "openzeppelin.token.erc721.library.ERC721_owners", + "openzeppelin.token.erc721.library.ERC721_owners.write" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 26, + "end_line": 29, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721_owners/impl.cairo" + }, + "parent_location": [ + { + "end_col": 43, + "end_line": 31, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721_owners/impl.cairo" + }, + "start_col": 35, + "start_line": 31 + }, + "While expanding the reference 'token_id' in:" + ], + "start_col": 9, + "start_line": 29 + } + }, + "943": { + "accessible_scopes": [ + "openzeppelin.token.erc721.library", + "openzeppelin.token.erc721.library.ERC721_owners", + "openzeppelin.token.erc721.library.ERC721_owners.write" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 44, + "end_line": 31, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721_owners/impl.cairo" + }, + "start_col": 30, + "start_line": 31 + } + }, + "945": { + "accessible_scopes": [ + "openzeppelin.token.erc721.library", + "openzeppelin.token.erc721.library.ERC721_owners", + "openzeppelin.token.erc721.library.ERC721_owners.write" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 34, + "end_line": 28, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721_owners/impl.cairo" + }, + "parent_location": [ + { + "end_col": 38, + "end_line": 370, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/starknet/common/syscalls.cairo" + }, + "parent_location": [ + { + "end_col": 80, + "end_line": 32, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721_owners/impl.cairo" + }, + "start_col": 9, + "start_line": 32 + }, + "While trying to retrieve the implicit argument 'syscall_ptr' in:" + ], + "start_col": 20, + "start_line": 370 + }, + "While expanding the reference 'syscall_ptr' in:" + ], + "start_col": 16, + "start_line": 28 + } + }, + "946": { + "accessible_scopes": [ + "openzeppelin.token.erc721.library", + "openzeppelin.token.erc721.library.ERC721_owners", + "openzeppelin.token.erc721.library.ERC721_owners.write" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 26, + "end_line": 31, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721_owners/impl.cairo" + }, + "parent_location": [ + { + "end_col": 43, + "end_line": 32, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721_owners/impl.cairo" + }, + "start_col": 31, + "start_line": 32 + }, + "While expanding the reference 'storage_addr' in:" + ], + "start_col": 14, + "start_line": 31 + } + }, + "947": { + "accessible_scopes": [ + "openzeppelin.token.erc721.library", + "openzeppelin.token.erc721.library.ERC721_owners", + "openzeppelin.token.erc721.library.ERC721_owners.write" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 79, + "end_line": 32, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721_owners/impl.cairo" + }, + "start_col": 55, + "start_line": 32 + } + }, + "948": { + "accessible_scopes": [ + "openzeppelin.token.erc721.library", + "openzeppelin.token.erc721.library.ERC721_owners", + "openzeppelin.token.erc721.library.ERC721_owners.write" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 80, + "end_line": 32, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721_owners/impl.cairo" + }, + "start_col": 9, + "start_line": 32 + } + }, + "950": { + "accessible_scopes": [ + "openzeppelin.token.erc721.library", + "openzeppelin.token.erc721.library.ERC721_owners", + "openzeppelin.token.erc721.library.ERC721_owners.write" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 41, + "end_line": 7, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721_owners/decl.cairo" + }, + "parent_location": [ + { + "end_col": 44, + "end_line": 31, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721_owners/impl.cairo" + }, + "parent_location": [ + { + "end_col": 62, + "end_line": 21, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721_owners/decl.cairo" + }, + "parent_location": [ + { + "end_col": 19, + "end_line": 33, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721_owners/impl.cairo" + }, + "start_col": 9, + "start_line": 33 + }, + "While trying to retrieve the implicit argument 'pedersen_ptr' in:" + ], + "start_col": 36, + "start_line": 21 + }, + "While expanding the reference 'pedersen_ptr' in:" + ], + "start_col": 30, + "start_line": 31 + }, + "While trying to update the implicit return value 'pedersen_ptr' in:" + ], + "start_col": 15, + "start_line": 7 + } + }, + "951": { + "accessible_scopes": [ + "openzeppelin.token.erc721.library", + "openzeppelin.token.erc721.library.ERC721_owners", + "openzeppelin.token.erc721.library.ERC721_owners.write" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 58, + "end_line": 7, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721_owners/decl.cairo" + }, + "parent_location": [ + { + "end_col": 44, + "end_line": 31, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721_owners/impl.cairo" + }, + "parent_location": [ + { + "end_col": 79, + "end_line": 21, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721_owners/decl.cairo" + }, + "parent_location": [ + { + "end_col": 19, + "end_line": 33, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721_owners/impl.cairo" + }, + "start_col": 9, + "start_line": 33 + }, + "While trying to retrieve the implicit argument 'range_check_ptr' in:" + ], + "start_col": 64, + "start_line": 21 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 30, + "start_line": 31 + }, + "While trying to update the implicit return value 'range_check_ptr' in:" + ], + "start_col": 43, + "start_line": 7 + } + }, + "952": { + "accessible_scopes": [ + "openzeppelin.token.erc721.library", + "openzeppelin.token.erc721.library.ERC721_owners", + "openzeppelin.token.erc721.library.ERC721_owners.write" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 19, + "end_line": 33, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721_owners/impl.cairo" + }, + "start_col": 9, + "start_line": 33 + } + }, + "953": { + "accessible_scopes": [ + "openzeppelin.token.erc721.library", + "openzeppelin.token.erc721.library.ERC721_balances", + "openzeppelin.token.erc721.library.ERC721_balances.addr" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 41, + "end_line": 7, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721_balances/impl.cairo" + }, + "parent_location": [ + { + "end_col": 48, + "end_line": 9, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721_balances/impl.cairo" + }, + "start_col": 36, + "start_line": 9 + }, + "While expanding the reference 'pedersen_ptr' in:" + ], + "start_col": 15, + "start_line": 7 + } + }, + "954": { + "accessible_scopes": [ + "openzeppelin.token.erc721.library", + "openzeppelin.token.erc721.library.ERC721_balances", + "openzeppelin.token.erc721.library.ERC721_balances.addr" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 95, + "end_line": 8, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721_balances/impl.cairo" + }, + "parent_location": [ + { + "end_col": 53, + "end_line": 9, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721_balances/impl.cairo" + }, + "start_col": 50, + "start_line": 9 + }, + "While expanding the reference 'res' in:" + ], + "start_col": 19, + "start_line": 8 + } + }, + "956": { + "accessible_scopes": [ + "openzeppelin.token.erc721.library", + "openzeppelin.token.erc721.library.ERC721_balances", + "openzeppelin.token.erc721.library.ERC721_balances.addr" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 79, + "end_line": 9, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721_balances/impl.cairo" + }, + "start_col": 55, + "start_line": 9 + } + }, + "957": { + "accessible_scopes": [ + "openzeppelin.token.erc721.library", + "openzeppelin.token.erc721.library.ERC721_balances", + "openzeppelin.token.erc721.library.ERC721_balances.addr" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 80, + "end_line": 9, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721_balances/impl.cairo" + }, + "start_col": 21, + "start_line": 9 + } + }, + "959": { + "accessible_scopes": [ + "openzeppelin.token.erc721.library", + "openzeppelin.token.erc721.library.ERC721_balances", + "openzeppelin.token.erc721.library.ERC721_balances.addr" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 58, + "end_line": 7, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721_balances/impl.cairo" + }, + "parent_location": [ + { + "end_col": 39, + "end_line": 12, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/starknet/common/storage.cairo" + }, + "parent_location": [ + { + "end_col": 48, + "end_line": 10, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721_balances/impl.cairo" + }, + "start_col": 21, + "start_line": 10 + }, + "While trying to retrieve the implicit argument 'range_check_ptr' in:" + ], + "start_col": 24, + "start_line": 12 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 43, + "start_line": 7 + } + }, + "960": { + "accessible_scopes": [ + "openzeppelin.token.erc721.library", + "openzeppelin.token.erc721.library.ERC721_balances", + "openzeppelin.token.erc721.library.ERC721_balances.addr" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 17, + "end_line": 9, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721_balances/impl.cairo" + }, + "parent_location": [ + { + "end_col": 47, + "end_line": 10, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721_balances/impl.cairo" + }, + "start_col": 44, + "start_line": 10 + }, + "While expanding the reference 'res' in:" + ], + "start_col": 14, + "start_line": 9 + } + }, + "961": { + "accessible_scopes": [ + "openzeppelin.token.erc721.library", + "openzeppelin.token.erc721.library.ERC721_balances", + "openzeppelin.token.erc721.library.ERC721_balances.addr" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 48, + "end_line": 10, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721_balances/impl.cairo" + }, + "start_col": 21, + "start_line": 10 + } + }, + "963": { + "accessible_scopes": [ + "openzeppelin.token.erc721.library", + "openzeppelin.token.erc721.library.ERC721_balances", + "openzeppelin.token.erc721.library.ERC721_balances.addr" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 48, + "end_line": 9, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721_balances/impl.cairo" + }, + "parent_location": [ + { + "end_col": 41, + "end_line": 7, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721_balances/decl.cairo" + }, + "parent_location": [ + { + "end_col": 26, + "end_line": 11, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721_balances/impl.cairo" + }, + "start_col": 9, + "start_line": 11 + }, + "While trying to retrieve the implicit argument 'pedersen_ptr' in:" + ], + "start_col": 15, + "start_line": 7 + }, + "While expanding the reference 'pedersen_ptr' in:" + ], + "start_col": 36, + "start_line": 9 + } + }, + "964": { + "accessible_scopes": [ + "openzeppelin.token.erc721.library", + "openzeppelin.token.erc721.library.ERC721_balances", + "openzeppelin.token.erc721.library.ERC721_balances.addr" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 39, + "end_line": 12, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/starknet/common/storage.cairo" + }, + "parent_location": [ + { + "end_col": 48, + "end_line": 10, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721_balances/impl.cairo" + }, + "parent_location": [ + { + "end_col": 58, + "end_line": 7, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721_balances/decl.cairo" + }, + "parent_location": [ + { + "end_col": 26, + "end_line": 11, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721_balances/impl.cairo" + }, + "start_col": 9, + "start_line": 11 + }, + "While trying to retrieve the implicit argument 'range_check_ptr' in:" + ], + "start_col": 43, + "start_line": 7 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 21, + "start_line": 10 + }, + "While trying to update the implicit return value 'range_check_ptr' in:" + ], + "start_col": 24, + "start_line": 12 + } + }, + "965": { + "accessible_scopes": [ + "openzeppelin.token.erc721.library", + "openzeppelin.token.erc721.library.ERC721_balances", + "openzeppelin.token.erc721.library.ERC721_balances.addr" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 17, + "end_line": 10, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721_balances/impl.cairo" + }, + "parent_location": [ + { + "end_col": 24, + "end_line": 11, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721_balances/impl.cairo" + }, + "start_col": 21, + "start_line": 11 + }, + "While expanding the reference 'res' in:" + ], + "start_col": 14, + "start_line": 10 + } + }, + "966": { + "accessible_scopes": [ + "openzeppelin.token.erc721.library", + "openzeppelin.token.erc721.library.ERC721_balances", + "openzeppelin.token.erc721.library.ERC721_balances.addr" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 26, + "end_line": 11, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721_balances/impl.cairo" + }, + "start_col": 9, + "start_line": 11 + } + }, + "967": { + "accessible_scopes": [ + "openzeppelin.token.erc721.library", + "openzeppelin.token.erc721.library.ERC721_balances", + "openzeppelin.token.erc721.library.ERC721_balances.read" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 61, + "end_line": 14, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721_balances/impl.cairo" + }, + "parent_location": [ + { + "end_col": 41, + "end_line": 7, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721_balances/decl.cairo" + }, + "parent_location": [ + { + "end_col": 43, + "end_line": 17, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721_balances/impl.cairo" + }, + "start_col": 30, + "start_line": 17 + }, + "While trying to retrieve the implicit argument 'pedersen_ptr' in:" + ], + "start_col": 15, + "start_line": 7 + }, + "While expanding the reference 'pedersen_ptr' in:" + ], + "start_col": 35, + "start_line": 14 + } + }, + "968": { + "accessible_scopes": [ + "openzeppelin.token.erc721.library", + "openzeppelin.token.erc721.library.ERC721_balances", + "openzeppelin.token.erc721.library.ERC721_balances.read" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 78, + "end_line": 14, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721_balances/impl.cairo" + }, + "parent_location": [ + { + "end_col": 58, + "end_line": 7, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721_balances/decl.cairo" + }, + "parent_location": [ + { + "end_col": 43, + "end_line": 17, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721_balances/impl.cairo" + }, + "start_col": 30, + "start_line": 17 + }, + "While trying to retrieve the implicit argument 'range_check_ptr' in:" + ], + "start_col": 43, + "start_line": 7 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 63, + "start_line": 14 + } + }, + "969": { + "accessible_scopes": [ + "openzeppelin.token.erc721.library", + "openzeppelin.token.erc721.library.ERC721_balances", + "openzeppelin.token.erc721.library.ERC721_balances.read" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 93, + "end_line": 14, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721_balances/impl.cairo" + }, + "parent_location": [ + { + "end_col": 42, + "end_line": 17, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721_balances/impl.cairo" + }, + "start_col": 35, + "start_line": 17 + }, + "While expanding the reference 'account' in:" + ], + "start_col": 80, + "start_line": 14 + } + }, + "970": { + "accessible_scopes": [ + "openzeppelin.token.erc721.library", + "openzeppelin.token.erc721.library.ERC721_balances", + "openzeppelin.token.erc721.library.ERC721_balances.read" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 43, + "end_line": 17, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721_balances/impl.cairo" + }, + "start_col": 30, + "start_line": 17 + } + }, + "972": { + "accessible_scopes": [ + "openzeppelin.token.erc721.library", + "openzeppelin.token.erc721.library.ERC721_balances", + "openzeppelin.token.erc721.library.ERC721_balances.read" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 33, + "end_line": 14, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721_balances/impl.cairo" + }, + "parent_location": [ + { + "end_col": 37, + "end_line": 352, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/starknet/common/syscalls.cairo" + }, + "parent_location": [ + { + "end_col": 75, + "end_line": 18, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721_balances/impl.cairo" + }, + "start_col": 37, + "start_line": 18 + }, + "While trying to retrieve the implicit argument 'syscall_ptr' in:" + ], + "start_col": 19, + "start_line": 352 + }, + "While expanding the reference 'syscall_ptr' in:" + ], + "start_col": 15, + "start_line": 14 + } + }, + "973": { + "accessible_scopes": [ + "openzeppelin.token.erc721.library", + "openzeppelin.token.erc721.library.ERC721_balances", + "openzeppelin.token.erc721.library.ERC721_balances.read" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 26, + "end_line": 17, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721_balances/impl.cairo" + }, + "parent_location": [ + { + "end_col": 70, + "end_line": 18, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721_balances/impl.cairo" + }, + "start_col": 58, + "start_line": 18 + }, + "While expanding the reference 'storage_addr' in:" + ], + "start_col": 14, + "start_line": 17 + } + }, + "974": { + "accessible_scopes": [ + "openzeppelin.token.erc721.library", + "openzeppelin.token.erc721.library.ERC721_balances", + "openzeppelin.token.erc721.library.ERC721_balances.read" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 75, + "end_line": 18, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721_balances/impl.cairo" + }, + "start_col": 37, + "start_line": 18 + } + }, + "976": { + "accessible_scopes": [ + "openzeppelin.token.erc721.library", + "openzeppelin.token.erc721.library.ERC721_balances", + "openzeppelin.token.erc721.library.ERC721_balances.read" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 37, + "end_line": 352, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/starknet/common/syscalls.cairo" + }, + "parent_location": [ + { + "end_col": 75, + "end_line": 18, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721_balances/impl.cairo" + }, + "parent_location": [ + { + "end_col": 37, + "end_line": 352, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/starknet/common/syscalls.cairo" + }, + "parent_location": [ + { + "end_col": 75, + "end_line": 19, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721_balances/impl.cairo" + }, + "start_col": 37, + "start_line": 19 + }, + "While trying to retrieve the implicit argument 'syscall_ptr' in:" + ], + "start_col": 19, + "start_line": 352 + }, + "While expanding the reference 'syscall_ptr' in:" + ], + "start_col": 37, + "start_line": 18 + }, + "While trying to update the implicit return value 'syscall_ptr' in:" + ], + "start_col": 19, + "start_line": 352 + } + }, + "977": { + "accessible_scopes": [ + "openzeppelin.token.erc721.library", + "openzeppelin.token.erc721.library.ERC721_balances", + "openzeppelin.token.erc721.library.ERC721_balances.read" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 74, + "end_line": 19, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721_balances/impl.cairo" + }, + "start_col": 58, + "start_line": 19 + } + }, + "979": { + "accessible_scopes": [ + "openzeppelin.token.erc721.library", + "openzeppelin.token.erc721.library.ERC721_balances", + "openzeppelin.token.erc721.library.ERC721_balances.read" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 75, + "end_line": 19, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721_balances/impl.cairo" + }, + "start_col": 37, + "start_line": 19 + } + }, + "981": { + "accessible_scopes": [ + "openzeppelin.token.erc721.library", + "openzeppelin.token.erc721.library.ERC721_balances", + "openzeppelin.token.erc721.library.ERC721_balances.read" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 37, + "end_line": 352, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/starknet/common/syscalls.cairo" + }, + "parent_location": [ + { + "end_col": 75, + "end_line": 19, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721_balances/impl.cairo" + }, + "parent_location": [ + { + "end_col": 42, + "end_line": 21, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721_balances/impl.cairo" + }, + "start_col": 31, + "start_line": 21 + }, + "While expanding the reference 'syscall_ptr' in:" + ], + "start_col": 37, + "start_line": 19 + }, + "While trying to update the implicit return value 'syscall_ptr' in:" + ], + "start_col": 19, + "start_line": 352 + } + }, + "982": { + "accessible_scopes": [ + "openzeppelin.token.erc721.library", + "openzeppelin.token.erc721.library.ERC721_balances", + "openzeppelin.token.erc721.library.ERC721_balances.read" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 41, + "end_line": 7, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721_balances/decl.cairo" + }, + "parent_location": [ + { + "end_col": 43, + "end_line": 17, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721_balances/impl.cairo" + }, + "parent_location": [ + { + "end_col": 44, + "end_line": 22, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721_balances/impl.cairo" + }, + "start_col": 32, + "start_line": 22 + }, + "While expanding the reference 'pedersen_ptr' in:" + ], + "start_col": 30, + "start_line": 17 + }, + "While trying to update the implicit return value 'pedersen_ptr' in:" + ], + "start_col": 15, + "start_line": 7 + } + }, + "983": { + "accessible_scopes": [ + "openzeppelin.token.erc721.library", + "openzeppelin.token.erc721.library.ERC721_balances", + "openzeppelin.token.erc721.library.ERC721_balances.read" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 58, + "end_line": 7, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721_balances/decl.cairo" + }, + "parent_location": [ + { + "end_col": 43, + "end_line": 17, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721_balances/impl.cairo" + }, + "parent_location": [ + { + "end_col": 50, + "end_line": 23, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721_balances/impl.cairo" + }, + "start_col": 35, + "start_line": 23 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 30, + "start_line": 17 + }, + "While trying to update the implicit return value 'range_check_ptr' in:" + ], + "start_col": 43, + "start_line": 7 + } + }, + "984": { + "accessible_scopes": [ + "openzeppelin.token.erc721.library", + "openzeppelin.token.erc721.library.ERC721_balances", + "openzeppelin.token.erc721.library.ERC721_balances.read" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 33, + "end_line": 18, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721_balances/impl.cairo" + }, + "parent_location": [ + { + "end_col": 64, + "end_line": 24, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721_balances/impl.cairo" + }, + "start_col": 45, + "start_line": 24 + }, + "While expanding the reference '__storage_var_temp0' in:" + ], + "start_col": 14, + "start_line": 18 + } + }, + "985": { + "accessible_scopes": [ + "openzeppelin.token.erc721.library", + "openzeppelin.token.erc721.library.ERC721_balances", + "openzeppelin.token.erc721.library.ERC721_balances.read" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 33, + "end_line": 19, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721_balances/impl.cairo" + }, + "parent_location": [ + { + "end_col": 64, + "end_line": 25, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721_balances/impl.cairo" + }, + "start_col": 45, + "start_line": 25 + }, + "While expanding the reference '__storage_var_temp1' in:" + ], + "start_col": 14, + "start_line": 19 + } + }, + "986": { + "accessible_scopes": [ + "openzeppelin.token.erc721.library", + "openzeppelin.token.erc721.library.ERC721_balances", + "openzeppelin.token.erc721.library.ERC721_balances.read" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 58, + "end_line": 26, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721_balances/impl.cairo" + }, + "start_col": 9, + "start_line": 26 + } + }, + "987": { + "accessible_scopes": [ + "openzeppelin.token.erc721.library", + "openzeppelin.token.erc721.library.ERC721_balances", + "openzeppelin.token.erc721.library.ERC721_balances.write" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 62, + "end_line": 29, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721_balances/impl.cairo" + }, + "parent_location": [ + { + "end_col": 41, + "end_line": 7, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721_balances/decl.cairo" + }, + "parent_location": [ + { + "end_col": 43, + "end_line": 32, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721_balances/impl.cairo" + }, + "start_col": 30, + "start_line": 32 + }, + "While trying to retrieve the implicit argument 'pedersen_ptr' in:" + ], + "start_col": 15, + "start_line": 7 + }, + "While expanding the reference 'pedersen_ptr' in:" + ], + "start_col": 36, + "start_line": 29 + } + }, + "988": { + "accessible_scopes": [ + "openzeppelin.token.erc721.library", + "openzeppelin.token.erc721.library.ERC721_balances", + "openzeppelin.token.erc721.library.ERC721_balances.write" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 79, + "end_line": 29, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721_balances/impl.cairo" + }, + "parent_location": [ + { + "end_col": 58, + "end_line": 7, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721_balances/decl.cairo" + }, + "parent_location": [ + { + "end_col": 43, + "end_line": 32, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721_balances/impl.cairo" + }, + "start_col": 30, + "start_line": 32 + }, + "While trying to retrieve the implicit argument 'range_check_ptr' in:" + ], + "start_col": 43, + "start_line": 7 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 64, + "start_line": 29 + } + }, + "989": { + "accessible_scopes": [ + "openzeppelin.token.erc721.library", + "openzeppelin.token.erc721.library.ERC721_balances", + "openzeppelin.token.erc721.library.ERC721_balances.write" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 22, + "end_line": 30, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721_balances/impl.cairo" + }, + "parent_location": [ + { + "end_col": 42, + "end_line": 32, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721_balances/impl.cairo" + }, + "start_col": 35, + "start_line": 32 + }, + "While expanding the reference 'account' in:" + ], + "start_col": 9, + "start_line": 30 + } + }, + "990": { + "accessible_scopes": [ + "openzeppelin.token.erc721.library", + "openzeppelin.token.erc721.library.ERC721_balances", + "openzeppelin.token.erc721.library.ERC721_balances.write" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 43, + "end_line": 32, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721_balances/impl.cairo" + }, + "start_col": 30, + "start_line": 32 + } + }, + "992": { + "accessible_scopes": [ + "openzeppelin.token.erc721.library", + "openzeppelin.token.erc721.library.ERC721_balances", + "openzeppelin.token.erc721.library.ERC721_balances.write" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 34, + "end_line": 29, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721_balances/impl.cairo" + }, + "parent_location": [ + { + "end_col": 38, + "end_line": 370, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/starknet/common/syscalls.cairo" + }, + "parent_location": [ + { + "end_col": 80, + "end_line": 33, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721_balances/impl.cairo" + }, + "start_col": 9, + "start_line": 33 + }, + "While trying to retrieve the implicit argument 'syscall_ptr' in:" + ], + "start_col": 20, + "start_line": 370 + }, + "While expanding the reference 'syscall_ptr' in:" + ], + "start_col": 16, + "start_line": 29 + } + }, + "993": { + "accessible_scopes": [ + "openzeppelin.token.erc721.library", + "openzeppelin.token.erc721.library.ERC721_balances", + "openzeppelin.token.erc721.library.ERC721_balances.write" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 26, + "end_line": 32, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721_balances/impl.cairo" + }, + "parent_location": [ + { + "end_col": 43, + "end_line": 33, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721_balances/impl.cairo" + }, + "start_col": 31, + "start_line": 33 + }, + "While expanding the reference 'storage_addr' in:" + ], + "start_col": 14, + "start_line": 32 + } + }, + "994": { + "accessible_scopes": [ + "openzeppelin.token.erc721.library", + "openzeppelin.token.erc721.library.ERC721_balances", + "openzeppelin.token.erc721.library.ERC721_balances.write" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 79, + "end_line": 33, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721_balances/impl.cairo" + }, + "start_col": 55, + "start_line": 33 + } + }, + "995": { + "accessible_scopes": [ + "openzeppelin.token.erc721.library", + "openzeppelin.token.erc721.library.ERC721_balances", + "openzeppelin.token.erc721.library.ERC721_balances.write" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 80, + "end_line": 33, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721_balances/impl.cairo" + }, + "start_col": 9, + "start_line": 33 + } + }, + "997": { + "accessible_scopes": [ + "openzeppelin.token.erc721.library", + "openzeppelin.token.erc721.library.ERC721_balances", + "openzeppelin.token.erc721.library.ERC721_balances.write" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 47, + "end_line": 34, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721_balances/impl.cairo" + }, + "start_col": 31, + "start_line": 34 + } + }, + "999": { + "accessible_scopes": [ + "openzeppelin.token.erc721.library", + "openzeppelin.token.erc721.library.ERC721_balances", + "openzeppelin.token.erc721.library.ERC721_balances.write" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 79, + "end_line": 34, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721_balances/impl.cairo" + }, + "start_col": 55, + "start_line": 34 + } + }, + "1000": { + "accessible_scopes": [ + "openzeppelin.token.erc721.library", + "openzeppelin.token.erc721.library.ERC721_balances", + "openzeppelin.token.erc721.library.ERC721_balances.write" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 80, + "end_line": 34, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721_balances/impl.cairo" + }, + "start_col": 9, + "start_line": 34 + } + }, + "1002": { + "accessible_scopes": [ + "openzeppelin.token.erc721.library", + "openzeppelin.token.erc721.library.ERC721_balances", + "openzeppelin.token.erc721.library.ERC721_balances.write" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 41, + "end_line": 7, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721_balances/decl.cairo" + }, + "parent_location": [ + { + "end_col": 43, + "end_line": 32, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721_balances/impl.cairo" + }, + "parent_location": [ + { + "end_col": 62, + "end_line": 21, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721_balances/decl.cairo" + }, + "parent_location": [ + { + "end_col": 19, + "end_line": 35, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721_balances/impl.cairo" + }, + "start_col": 9, + "start_line": 35 + }, + "While trying to retrieve the implicit argument 'pedersen_ptr' in:" + ], + "start_col": 36, + "start_line": 21 + }, + "While expanding the reference 'pedersen_ptr' in:" + ], + "start_col": 30, + "start_line": 32 + }, + "While trying to update the implicit return value 'pedersen_ptr' in:" + ], + "start_col": 15, + "start_line": 7 + } + }, + "1003": { + "accessible_scopes": [ + "openzeppelin.token.erc721.library", + "openzeppelin.token.erc721.library.ERC721_balances", + "openzeppelin.token.erc721.library.ERC721_balances.write" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 58, + "end_line": 7, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721_balances/decl.cairo" + }, + "parent_location": [ + { + "end_col": 43, + "end_line": 32, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721_balances/impl.cairo" + }, + "parent_location": [ + { + "end_col": 79, + "end_line": 21, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721_balances/decl.cairo" + }, + "parent_location": [ + { + "end_col": 19, + "end_line": 35, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721_balances/impl.cairo" + }, + "start_col": 9, + "start_line": 35 + }, + "While trying to retrieve the implicit argument 'range_check_ptr' in:" + ], + "start_col": 64, + "start_line": 21 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 30, + "start_line": 32 + }, + "While trying to update the implicit return value 'range_check_ptr' in:" + ], + "start_col": 43, + "start_line": 7 + } + }, + "1004": { + "accessible_scopes": [ + "openzeppelin.token.erc721.library", + "openzeppelin.token.erc721.library.ERC721_balances", + "openzeppelin.token.erc721.library.ERC721_balances.write" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 19, + "end_line": 35, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721_balances/impl.cairo" + }, + "start_col": 9, + "start_line": 35 + } + }, + "1005": { + "accessible_scopes": [ + "openzeppelin.token.erc721.library", + "openzeppelin.token.erc721.library.ERC721_token_approvals", + "openzeppelin.token.erc721.library.ERC721_token_approvals.addr" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 41, + "end_line": 7, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721_token_approvals/impl.cairo" + }, + "parent_location": [ + { + "end_col": 48, + "end_line": 9, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721_token_approvals/impl.cairo" + }, + "start_col": 36, + "start_line": 9 + }, + "While expanding the reference 'pedersen_ptr' in:" + ], + "start_col": 15, + "start_line": 7 + } + }, + "1006": { + "accessible_scopes": [ + "openzeppelin.token.erc721.library", + "openzeppelin.token.erc721.library.ERC721_token_approvals", + "openzeppelin.token.erc721.library.ERC721_token_approvals.addr" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 95, + "end_line": 8, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721_token_approvals/impl.cairo" + }, + "parent_location": [ + { + "end_col": 53, + "end_line": 9, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721_token_approvals/impl.cairo" + }, + "start_col": 50, + "start_line": 9 + }, + "While expanding the reference 'res' in:" + ], + "start_col": 19, + "start_line": 8 + } + }, + "1008": { + "accessible_scopes": [ + "openzeppelin.token.erc721.library", + "openzeppelin.token.erc721.library.ERC721_token_approvals", + "openzeppelin.token.erc721.library.ERC721_token_approvals.addr" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 80, + "end_line": 9, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721_token_approvals/impl.cairo" + }, + "start_col": 55, + "start_line": 9 + } + }, + "1009": { + "accessible_scopes": [ + "openzeppelin.token.erc721.library", + "openzeppelin.token.erc721.library.ERC721_token_approvals", + "openzeppelin.token.erc721.library.ERC721_token_approvals.addr" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 81, + "end_line": 9, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721_token_approvals/impl.cairo" + }, + "start_col": 21, + "start_line": 9 + } + }, + "1011": { + "accessible_scopes": [ + "openzeppelin.token.erc721.library", + "openzeppelin.token.erc721.library.ERC721_token_approvals", + "openzeppelin.token.erc721.library.ERC721_token_approvals.addr" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 80, + "end_line": 10, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721_token_approvals/impl.cairo" + }, + "start_col": 55, + "start_line": 10 + } + }, + "1012": { + "accessible_scopes": [ + "openzeppelin.token.erc721.library", + "openzeppelin.token.erc721.library.ERC721_token_approvals", + "openzeppelin.token.erc721.library.ERC721_token_approvals.addr" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 81, + "end_line": 10, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721_token_approvals/impl.cairo" + }, + "start_col": 21, + "start_line": 10 + } + }, + "1014": { + "accessible_scopes": [ + "openzeppelin.token.erc721.library", + "openzeppelin.token.erc721.library.ERC721_token_approvals", + "openzeppelin.token.erc721.library.ERC721_token_approvals.addr" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 58, + "end_line": 7, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721_token_approvals/impl.cairo" + }, + "parent_location": [ + { + "end_col": 39, + "end_line": 12, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/starknet/common/storage.cairo" + }, + "parent_location": [ + { + "end_col": 48, + "end_line": 11, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721_token_approvals/impl.cairo" + }, + "start_col": 21, + "start_line": 11 + }, + "While trying to retrieve the implicit argument 'range_check_ptr' in:" + ], + "start_col": 24, + "start_line": 12 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 43, + "start_line": 7 + } + }, + "1015": { + "accessible_scopes": [ + "openzeppelin.token.erc721.library", + "openzeppelin.token.erc721.library.ERC721_token_approvals", + "openzeppelin.token.erc721.library.ERC721_token_approvals.addr" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 17, + "end_line": 10, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721_token_approvals/impl.cairo" + }, + "parent_location": [ + { + "end_col": 47, + "end_line": 11, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721_token_approvals/impl.cairo" + }, + "start_col": 44, + "start_line": 11 + }, + "While expanding the reference 'res' in:" + ], + "start_col": 14, + "start_line": 10 + } + }, + "1016": { + "accessible_scopes": [ + "openzeppelin.token.erc721.library", + "openzeppelin.token.erc721.library.ERC721_token_approvals", + "openzeppelin.token.erc721.library.ERC721_token_approvals.addr" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 48, + "end_line": 11, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721_token_approvals/impl.cairo" + }, + "start_col": 21, + "start_line": 11 + } + }, + "1018": { + "accessible_scopes": [ + "openzeppelin.token.erc721.library", + "openzeppelin.token.erc721.library.ERC721_token_approvals", + "openzeppelin.token.erc721.library.ERC721_token_approvals.addr" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 48, + "end_line": 10, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721_token_approvals/impl.cairo" + }, + "parent_location": [ + { + "end_col": 41, + "end_line": 7, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721_token_approvals/decl.cairo" + }, + "parent_location": [ + { + "end_col": 26, + "end_line": 12, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721_token_approvals/impl.cairo" + }, + "start_col": 9, + "start_line": 12 + }, + "While trying to retrieve the implicit argument 'pedersen_ptr' in:" + ], + "start_col": 15, + "start_line": 7 + }, + "While expanding the reference 'pedersen_ptr' in:" + ], + "start_col": 36, + "start_line": 10 + } + }, + "1019": { + "accessible_scopes": [ + "openzeppelin.token.erc721.library", + "openzeppelin.token.erc721.library.ERC721_token_approvals", + "openzeppelin.token.erc721.library.ERC721_token_approvals.addr" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 39, + "end_line": 12, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/starknet/common/storage.cairo" + }, + "parent_location": [ + { + "end_col": 48, + "end_line": 11, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721_token_approvals/impl.cairo" + }, + "parent_location": [ + { + "end_col": 58, + "end_line": 7, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721_token_approvals/decl.cairo" + }, + "parent_location": [ + { + "end_col": 26, + "end_line": 12, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721_token_approvals/impl.cairo" + }, + "start_col": 9, + "start_line": 12 + }, + "While trying to retrieve the implicit argument 'range_check_ptr' in:" + ], + "start_col": 43, + "start_line": 7 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 21, + "start_line": 11 + }, + "While trying to update the implicit return value 'range_check_ptr' in:" + ], + "start_col": 24, + "start_line": 12 + } + }, + "1020": { + "accessible_scopes": [ + "openzeppelin.token.erc721.library", + "openzeppelin.token.erc721.library.ERC721_token_approvals", + "openzeppelin.token.erc721.library.ERC721_token_approvals.addr" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 17, + "end_line": 11, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721_token_approvals/impl.cairo" + }, + "parent_location": [ + { + "end_col": 24, + "end_line": 12, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721_token_approvals/impl.cairo" + }, + "start_col": 21, + "start_line": 12 + }, + "While expanding the reference 'res' in:" + ], + "start_col": 14, + "start_line": 11 + } + }, + "1021": { + "accessible_scopes": [ + "openzeppelin.token.erc721.library", + "openzeppelin.token.erc721.library.ERC721_token_approvals", + "openzeppelin.token.erc721.library.ERC721_token_approvals.addr" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 26, + "end_line": 12, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721_token_approvals/impl.cairo" + }, + "start_col": 9, + "start_line": 12 + } + }, + "1022": { + "accessible_scopes": [ + "openzeppelin.token.erc721.library", + "openzeppelin.token.erc721.library.ERC721_token_approvals", + "openzeppelin.token.erc721.library.ERC721_token_approvals.read" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 61, + "end_line": 15, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721_token_approvals/impl.cairo" + }, + "parent_location": [ + { + "end_col": 41, + "end_line": 7, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721_token_approvals/decl.cairo" + }, + "parent_location": [ + { + "end_col": 44, + "end_line": 18, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721_token_approvals/impl.cairo" + }, + "start_col": 30, + "start_line": 18 + }, + "While trying to retrieve the implicit argument 'pedersen_ptr' in:" + ], + "start_col": 15, + "start_line": 7 + }, + "While expanding the reference 'pedersen_ptr' in:" + ], + "start_col": 35, + "start_line": 15 + } + }, + "1023": { + "accessible_scopes": [ + "openzeppelin.token.erc721.library", + "openzeppelin.token.erc721.library.ERC721_token_approvals", + "openzeppelin.token.erc721.library.ERC721_token_approvals.read" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 78, + "end_line": 15, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721_token_approvals/impl.cairo" + }, + "parent_location": [ + { + "end_col": 58, + "end_line": 7, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721_token_approvals/decl.cairo" + }, + "parent_location": [ + { + "end_col": 44, + "end_line": 18, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721_token_approvals/impl.cairo" + }, + "start_col": 30, + "start_line": 18 + }, + "While trying to retrieve the implicit argument 'range_check_ptr' in:" + ], + "start_col": 43, + "start_line": 7 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 63, + "start_line": 15 + } + }, + "1024": { + "accessible_scopes": [ + "openzeppelin.token.erc721.library", + "openzeppelin.token.erc721.library.ERC721_token_approvals", + "openzeppelin.token.erc721.library.ERC721_token_approvals.read" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 26, + "end_line": 16, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721_token_approvals/impl.cairo" + }, + "parent_location": [ + { + "end_col": 43, + "end_line": 18, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721_token_approvals/impl.cairo" + }, + "start_col": 35, + "start_line": 18 + }, + "While expanding the reference 'token_id' in:" + ], + "start_col": 9, + "start_line": 16 + } + }, + "1025": { + "accessible_scopes": [ + "openzeppelin.token.erc721.library", + "openzeppelin.token.erc721.library.ERC721_token_approvals", + "openzeppelin.token.erc721.library.ERC721_token_approvals.read" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 26, + "end_line": 16, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721_token_approvals/impl.cairo" + }, + "parent_location": [ + { + "end_col": 43, + "end_line": 18, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721_token_approvals/impl.cairo" + }, + "start_col": 35, + "start_line": 18 + }, + "While expanding the reference 'token_id' in:" + ], + "start_col": 9, + "start_line": 16 + } + }, + "1026": { + "accessible_scopes": [ + "openzeppelin.token.erc721.library", + "openzeppelin.token.erc721.library.ERC721_token_approvals", + "openzeppelin.token.erc721.library.ERC721_token_approvals.read" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 44, + "end_line": 18, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721_token_approvals/impl.cairo" + }, + "start_col": 30, + "start_line": 18 + } + }, + "1028": { + "accessible_scopes": [ + "openzeppelin.token.erc721.library", + "openzeppelin.token.erc721.library.ERC721_token_approvals", + "openzeppelin.token.erc721.library.ERC721_token_approvals.read" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 33, + "end_line": 15, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721_token_approvals/impl.cairo" + }, + "parent_location": [ + { + "end_col": 37, + "end_line": 352, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/starknet/common/syscalls.cairo" + }, + "parent_location": [ + { + "end_col": 75, + "end_line": 19, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721_token_approvals/impl.cairo" + }, + "start_col": 37, + "start_line": 19 + }, + "While trying to retrieve the implicit argument 'syscall_ptr' in:" + ], + "start_col": 19, + "start_line": 352 + }, + "While expanding the reference 'syscall_ptr' in:" + ], + "start_col": 15, + "start_line": 15 + } + }, + "1029": { + "accessible_scopes": [ + "openzeppelin.token.erc721.library", + "openzeppelin.token.erc721.library.ERC721_token_approvals", + "openzeppelin.token.erc721.library.ERC721_token_approvals.read" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 26, + "end_line": 18, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721_token_approvals/impl.cairo" + }, + "parent_location": [ + { + "end_col": 70, + "end_line": 19, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721_token_approvals/impl.cairo" + }, + "start_col": 58, + "start_line": 19 + }, + "While expanding the reference 'storage_addr' in:" + ], + "start_col": 14, + "start_line": 18 + } + }, + "1030": { + "accessible_scopes": [ + "openzeppelin.token.erc721.library", + "openzeppelin.token.erc721.library.ERC721_token_approvals", + "openzeppelin.token.erc721.library.ERC721_token_approvals.read" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 75, + "end_line": 19, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721_token_approvals/impl.cairo" + }, + "start_col": 37, + "start_line": 19 + } + }, + "1032": { + "accessible_scopes": [ + "openzeppelin.token.erc721.library", + "openzeppelin.token.erc721.library.ERC721_token_approvals", + "openzeppelin.token.erc721.library.ERC721_token_approvals.read" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 37, + "end_line": 352, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/starknet/common/syscalls.cairo" + }, + "parent_location": [ + { + "end_col": 75, + "end_line": 19, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721_token_approvals/impl.cairo" + }, + "parent_location": [ + { + "end_col": 42, + "end_line": 21, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721_token_approvals/impl.cairo" + }, + "start_col": 31, + "start_line": 21 + }, + "While expanding the reference 'syscall_ptr' in:" + ], + "start_col": 37, + "start_line": 19 + }, + "While trying to update the implicit return value 'syscall_ptr' in:" + ], + "start_col": 19, + "start_line": 352 + } + }, + "1033": { + "accessible_scopes": [ + "openzeppelin.token.erc721.library", + "openzeppelin.token.erc721.library.ERC721_token_approvals", + "openzeppelin.token.erc721.library.ERC721_token_approvals.read" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 41, + "end_line": 7, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721_token_approvals/decl.cairo" + }, + "parent_location": [ + { + "end_col": 44, + "end_line": 18, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721_token_approvals/impl.cairo" + }, + "parent_location": [ + { + "end_col": 44, + "end_line": 22, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721_token_approvals/impl.cairo" + }, + "start_col": 32, + "start_line": 22 + }, + "While expanding the reference 'pedersen_ptr' in:" + ], + "start_col": 30, + "start_line": 18 + }, + "While trying to update the implicit return value 'pedersen_ptr' in:" + ], + "start_col": 15, + "start_line": 7 + } + }, + "1034": { + "accessible_scopes": [ + "openzeppelin.token.erc721.library", + "openzeppelin.token.erc721.library.ERC721_token_approvals", + "openzeppelin.token.erc721.library.ERC721_token_approvals.read" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 58, + "end_line": 7, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721_token_approvals/decl.cairo" + }, + "parent_location": [ + { + "end_col": 44, + "end_line": 18, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721_token_approvals/impl.cairo" + }, + "parent_location": [ + { + "end_col": 50, + "end_line": 23, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721_token_approvals/impl.cairo" + }, + "start_col": 35, + "start_line": 23 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 30, + "start_line": 18 + }, + "While trying to update the implicit return value 'range_check_ptr' in:" + ], + "start_col": 43, + "start_line": 7 + } + }, + "1035": { + "accessible_scopes": [ + "openzeppelin.token.erc721.library", + "openzeppelin.token.erc721.library.ERC721_token_approvals", + "openzeppelin.token.erc721.library.ERC721_token_approvals.read" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 33, + "end_line": 19, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721_token_approvals/impl.cairo" + }, + "parent_location": [ + { + "end_col": 64, + "end_line": 24, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721_token_approvals/impl.cairo" + }, + "start_col": 45, + "start_line": 24 + }, + "While expanding the reference '__storage_var_temp0' in:" + ], + "start_col": 14, + "start_line": 19 + } + }, + "1036": { + "accessible_scopes": [ + "openzeppelin.token.erc721.library", + "openzeppelin.token.erc721.library.ERC721_token_approvals", + "openzeppelin.token.erc721.library.ERC721_token_approvals.read" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 55, + "end_line": 25, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721_token_approvals/impl.cairo" + }, + "start_col": 9, + "start_line": 25 + } + }, + "1037": { + "accessible_scopes": [ + "openzeppelin.token.erc721.library", + "openzeppelin.token.erc721.library.ERC721_token_approvals", + "openzeppelin.token.erc721.library.ERC721_token_approvals.write" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 62, + "end_line": 28, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721_token_approvals/impl.cairo" + }, + "parent_location": [ + { + "end_col": 41, + "end_line": 7, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721_token_approvals/decl.cairo" + }, + "parent_location": [ + { + "end_col": 44, + "end_line": 31, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721_token_approvals/impl.cairo" + }, + "start_col": 30, + "start_line": 31 + }, + "While trying to retrieve the implicit argument 'pedersen_ptr' in:" + ], + "start_col": 15, + "start_line": 7 + }, + "While expanding the reference 'pedersen_ptr' in:" + ], + "start_col": 36, + "start_line": 28 + } + }, + "1038": { + "accessible_scopes": [ + "openzeppelin.token.erc721.library", + "openzeppelin.token.erc721.library.ERC721_token_approvals", + "openzeppelin.token.erc721.library.ERC721_token_approvals.write" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 79, + "end_line": 28, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721_token_approvals/impl.cairo" + }, + "parent_location": [ + { + "end_col": 58, + "end_line": 7, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721_token_approvals/decl.cairo" + }, + "parent_location": [ + { + "end_col": 44, + "end_line": 31, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721_token_approvals/impl.cairo" + }, + "start_col": 30, + "start_line": 31 + }, + "While trying to retrieve the implicit argument 'range_check_ptr' in:" + ], + "start_col": 43, + "start_line": 7 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 64, + "start_line": 28 + } + }, + "1039": { + "accessible_scopes": [ + "openzeppelin.token.erc721.library", + "openzeppelin.token.erc721.library.ERC721_token_approvals", + "openzeppelin.token.erc721.library.ERC721_token_approvals.write" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 26, + "end_line": 29, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721_token_approvals/impl.cairo" + }, + "parent_location": [ + { + "end_col": 43, + "end_line": 31, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721_token_approvals/impl.cairo" + }, + "start_col": 35, + "start_line": 31 + }, + "While expanding the reference 'token_id' in:" + ], + "start_col": 9, + "start_line": 29 + } + }, + "1040": { + "accessible_scopes": [ + "openzeppelin.token.erc721.library", + "openzeppelin.token.erc721.library.ERC721_token_approvals", + "openzeppelin.token.erc721.library.ERC721_token_approvals.write" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 26, + "end_line": 29, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721_token_approvals/impl.cairo" + }, + "parent_location": [ + { + "end_col": 43, + "end_line": 31, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721_token_approvals/impl.cairo" + }, + "start_col": 35, + "start_line": 31 + }, + "While expanding the reference 'token_id' in:" + ], + "start_col": 9, + "start_line": 29 + } + }, + "1041": { + "accessible_scopes": [ + "openzeppelin.token.erc721.library", + "openzeppelin.token.erc721.library.ERC721_token_approvals", + "openzeppelin.token.erc721.library.ERC721_token_approvals.write" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 44, + "end_line": 31, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721_token_approvals/impl.cairo" + }, + "start_col": 30, + "start_line": 31 + } + }, + "1043": { + "accessible_scopes": [ + "openzeppelin.token.erc721.library", + "openzeppelin.token.erc721.library.ERC721_token_approvals", + "openzeppelin.token.erc721.library.ERC721_token_approvals.write" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 34, + "end_line": 28, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721_token_approvals/impl.cairo" + }, + "parent_location": [ + { + "end_col": 38, + "end_line": 370, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/starknet/common/syscalls.cairo" + }, + "parent_location": [ + { + "end_col": 80, + "end_line": 32, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721_token_approvals/impl.cairo" + }, + "start_col": 9, + "start_line": 32 + }, + "While trying to retrieve the implicit argument 'syscall_ptr' in:" + ], + "start_col": 20, + "start_line": 370 + }, + "While expanding the reference 'syscall_ptr' in:" + ], + "start_col": 16, + "start_line": 28 + } + }, + "1044": { + "accessible_scopes": [ + "openzeppelin.token.erc721.library", + "openzeppelin.token.erc721.library.ERC721_token_approvals", + "openzeppelin.token.erc721.library.ERC721_token_approvals.write" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 26, + "end_line": 31, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721_token_approvals/impl.cairo" + }, + "parent_location": [ + { + "end_col": 43, + "end_line": 32, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721_token_approvals/impl.cairo" + }, + "start_col": 31, + "start_line": 32 + }, + "While expanding the reference 'storage_addr' in:" + ], + "start_col": 14, + "start_line": 31 + } + }, + "1045": { + "accessible_scopes": [ + "openzeppelin.token.erc721.library", + "openzeppelin.token.erc721.library.ERC721_token_approvals", + "openzeppelin.token.erc721.library.ERC721_token_approvals.write" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 79, + "end_line": 32, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721_token_approvals/impl.cairo" + }, + "start_col": 55, + "start_line": 32 + } + }, + "1046": { + "accessible_scopes": [ + "openzeppelin.token.erc721.library", + "openzeppelin.token.erc721.library.ERC721_token_approvals", + "openzeppelin.token.erc721.library.ERC721_token_approvals.write" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 80, + "end_line": 32, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721_token_approvals/impl.cairo" + }, + "start_col": 9, + "start_line": 32 + } + }, + "1048": { + "accessible_scopes": [ + "openzeppelin.token.erc721.library", + "openzeppelin.token.erc721.library.ERC721_token_approvals", + "openzeppelin.token.erc721.library.ERC721_token_approvals.write" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 41, + "end_line": 7, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721_token_approvals/decl.cairo" + }, + "parent_location": [ + { + "end_col": 44, + "end_line": 31, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721_token_approvals/impl.cairo" + }, + "parent_location": [ + { + "end_col": 62, + "end_line": 21, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721_token_approvals/decl.cairo" + }, + "parent_location": [ + { + "end_col": 19, + "end_line": 33, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721_token_approvals/impl.cairo" + }, + "start_col": 9, + "start_line": 33 + }, + "While trying to retrieve the implicit argument 'pedersen_ptr' in:" + ], + "start_col": 36, + "start_line": 21 + }, + "While expanding the reference 'pedersen_ptr' in:" + ], + "start_col": 30, + "start_line": 31 + }, + "While trying to update the implicit return value 'pedersen_ptr' in:" + ], + "start_col": 15, + "start_line": 7 + } + }, + "1049": { + "accessible_scopes": [ + "openzeppelin.token.erc721.library", + "openzeppelin.token.erc721.library.ERC721_token_approvals", + "openzeppelin.token.erc721.library.ERC721_token_approvals.write" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 58, + "end_line": 7, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721_token_approvals/decl.cairo" + }, + "parent_location": [ + { + "end_col": 44, + "end_line": 31, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721_token_approvals/impl.cairo" + }, + "parent_location": [ + { + "end_col": 79, + "end_line": 21, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721_token_approvals/decl.cairo" + }, + "parent_location": [ + { + "end_col": 19, + "end_line": 33, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721_token_approvals/impl.cairo" + }, + "start_col": 9, + "start_line": 33 + }, + "While trying to retrieve the implicit argument 'range_check_ptr' in:" + ], + "start_col": 64, + "start_line": 21 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 30, + "start_line": 31 + }, + "While trying to update the implicit return value 'range_check_ptr' in:" + ], + "start_col": 43, + "start_line": 7 + } + }, + "1050": { + "accessible_scopes": [ + "openzeppelin.token.erc721.library", + "openzeppelin.token.erc721.library.ERC721_token_approvals", + "openzeppelin.token.erc721.library.ERC721_token_approvals.write" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 19, + "end_line": 33, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721_token_approvals/impl.cairo" + }, + "start_col": 9, + "start_line": 33 + } + }, + "1051": { + "accessible_scopes": [ + "openzeppelin.token.erc721.library", + "openzeppelin.token.erc721.library.ERC721_operator_approvals", + "openzeppelin.token.erc721.library.ERC721_operator_approvals.addr" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 41, + "end_line": 7, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721_operator_approvals/impl.cairo" + }, + "parent_location": [ + { + "end_col": 48, + "end_line": 11, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721_operator_approvals/impl.cairo" + }, + "start_col": 36, + "start_line": 11 + }, + "While expanding the reference 'pedersen_ptr' in:" + ], + "start_col": 15, + "start_line": 7 + } + }, + "1052": { + "accessible_scopes": [ + "openzeppelin.token.erc721.library", + "openzeppelin.token.erc721.library.ERC721_operator_approvals", + "openzeppelin.token.erc721.library.ERC721_operator_approvals.addr" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 95, + "end_line": 10, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721_operator_approvals/impl.cairo" + }, + "parent_location": [ + { + "end_col": 53, + "end_line": 11, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721_operator_approvals/impl.cairo" + }, + "start_col": 50, + "start_line": 11 + }, + "While expanding the reference 'res' in:" + ], + "start_col": 19, + "start_line": 10 + } + }, + "1054": { + "accessible_scopes": [ + "openzeppelin.token.erc721.library", + "openzeppelin.token.erc721.library.ERC721_operator_approvals", + "openzeppelin.token.erc721.library.ERC721_operator_approvals.addr" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 77, + "end_line": 11, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721_operator_approvals/impl.cairo" + }, + "start_col": 55, + "start_line": 11 + } + }, + "1055": { + "accessible_scopes": [ + "openzeppelin.token.erc721.library", + "openzeppelin.token.erc721.library.ERC721_operator_approvals", + "openzeppelin.token.erc721.library.ERC721_operator_approvals.addr" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 78, + "end_line": 11, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721_operator_approvals/impl.cairo" + }, + "start_col": 21, + "start_line": 11 + } + }, + "1057": { + "accessible_scopes": [ + "openzeppelin.token.erc721.library", + "openzeppelin.token.erc721.library.ERC721_operator_approvals", + "openzeppelin.token.erc721.library.ERC721_operator_approvals.addr" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 80, + "end_line": 12, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721_operator_approvals/impl.cairo" + }, + "start_col": 55, + "start_line": 12 + } + }, + "1058": { + "accessible_scopes": [ + "openzeppelin.token.erc721.library", + "openzeppelin.token.erc721.library.ERC721_operator_approvals", + "openzeppelin.token.erc721.library.ERC721_operator_approvals.addr" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 81, + "end_line": 12, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721_operator_approvals/impl.cairo" + }, + "start_col": 21, + "start_line": 12 + } + }, + "1060": { + "accessible_scopes": [ + "openzeppelin.token.erc721.library", + "openzeppelin.token.erc721.library.ERC721_operator_approvals", + "openzeppelin.token.erc721.library.ERC721_operator_approvals.addr" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 58, + "end_line": 7, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721_operator_approvals/impl.cairo" + }, + "parent_location": [ + { + "end_col": 39, + "end_line": 12, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/starknet/common/storage.cairo" + }, + "parent_location": [ + { + "end_col": 48, + "end_line": 13, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721_operator_approvals/impl.cairo" + }, + "start_col": 21, + "start_line": 13 + }, + "While trying to retrieve the implicit argument 'range_check_ptr' in:" + ], + "start_col": 24, + "start_line": 12 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 43, + "start_line": 7 + } + }, + "1061": { + "accessible_scopes": [ + "openzeppelin.token.erc721.library", + "openzeppelin.token.erc721.library.ERC721_operator_approvals", + "openzeppelin.token.erc721.library.ERC721_operator_approvals.addr" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 17, + "end_line": 12, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721_operator_approvals/impl.cairo" + }, + "parent_location": [ + { + "end_col": 47, + "end_line": 13, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721_operator_approvals/impl.cairo" + }, + "start_col": 44, + "start_line": 13 + }, + "While expanding the reference 'res' in:" + ], + "start_col": 14, + "start_line": 12 + } + }, + "1062": { + "accessible_scopes": [ + "openzeppelin.token.erc721.library", + "openzeppelin.token.erc721.library.ERC721_operator_approvals", + "openzeppelin.token.erc721.library.ERC721_operator_approvals.addr" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 48, + "end_line": 13, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721_operator_approvals/impl.cairo" + }, + "start_col": 21, + "start_line": 13 + } + }, + "1064": { + "accessible_scopes": [ + "openzeppelin.token.erc721.library", + "openzeppelin.token.erc721.library.ERC721_operator_approvals", + "openzeppelin.token.erc721.library.ERC721_operator_approvals.addr" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 48, + "end_line": 12, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721_operator_approvals/impl.cairo" + }, + "parent_location": [ + { + "end_col": 41, + "end_line": 7, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721_operator_approvals/decl.cairo" + }, + "parent_location": [ + { + "end_col": 26, + "end_line": 14, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721_operator_approvals/impl.cairo" + }, + "start_col": 9, + "start_line": 14 + }, + "While trying to retrieve the implicit argument 'pedersen_ptr' in:" + ], + "start_col": 15, + "start_line": 7 + }, + "While expanding the reference 'pedersen_ptr' in:" + ], + "start_col": 36, + "start_line": 12 + } + }, + "1065": { + "accessible_scopes": [ + "openzeppelin.token.erc721.library", + "openzeppelin.token.erc721.library.ERC721_operator_approvals", + "openzeppelin.token.erc721.library.ERC721_operator_approvals.addr" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 39, + "end_line": 12, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/starknet/common/storage.cairo" + }, + "parent_location": [ + { + "end_col": 48, + "end_line": 13, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721_operator_approvals/impl.cairo" + }, + "parent_location": [ + { + "end_col": 58, + "end_line": 7, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721_operator_approvals/decl.cairo" + }, + "parent_location": [ + { + "end_col": 26, + "end_line": 14, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721_operator_approvals/impl.cairo" + }, + "start_col": 9, + "start_line": 14 + }, + "While trying to retrieve the implicit argument 'range_check_ptr' in:" + ], + "start_col": 43, + "start_line": 7 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 21, + "start_line": 13 + }, + "While trying to update the implicit return value 'range_check_ptr' in:" + ], + "start_col": 24, + "start_line": 12 + } + }, + "1066": { + "accessible_scopes": [ + "openzeppelin.token.erc721.library", + "openzeppelin.token.erc721.library.ERC721_operator_approvals", + "openzeppelin.token.erc721.library.ERC721_operator_approvals.addr" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 17, + "end_line": 13, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721_operator_approvals/impl.cairo" + }, + "parent_location": [ + { + "end_col": 24, + "end_line": 14, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721_operator_approvals/impl.cairo" + }, + "start_col": 21, + "start_line": 14 + }, + "While expanding the reference 'res' in:" + ], + "start_col": 14, + "start_line": 13 + } + }, + "1067": { + "accessible_scopes": [ + "openzeppelin.token.erc721.library", + "openzeppelin.token.erc721.library.ERC721_operator_approvals", + "openzeppelin.token.erc721.library.ERC721_operator_approvals.addr" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 26, + "end_line": 14, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721_operator_approvals/impl.cairo" + }, + "start_col": 9, + "start_line": 14 + } + }, + "1068": { + "accessible_scopes": [ + "openzeppelin.token.erc721.library", + "openzeppelin.token.erc721.library.ERC721_operator_approvals", + "openzeppelin.token.erc721.library.ERC721_operator_approvals.read" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 61, + "end_line": 17, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721_operator_approvals/impl.cairo" + }, + "parent_location": [ + { + "end_col": 41, + "end_line": 7, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721_operator_approvals/decl.cairo" + }, + "parent_location": [ + { + "end_col": 51, + "end_line": 20, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721_operator_approvals/impl.cairo" + }, + "start_col": 30, + "start_line": 20 + }, + "While trying to retrieve the implicit argument 'pedersen_ptr' in:" + ], + "start_col": 15, + "start_line": 7 + }, + "While expanding the reference 'pedersen_ptr' in:" + ], + "start_col": 35, + "start_line": 17 + } + }, + "1069": { + "accessible_scopes": [ + "openzeppelin.token.erc721.library", + "openzeppelin.token.erc721.library.ERC721_operator_approvals", + "openzeppelin.token.erc721.library.ERC721_operator_approvals.read" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 78, + "end_line": 17, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721_operator_approvals/impl.cairo" + }, + "parent_location": [ + { + "end_col": 58, + "end_line": 7, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721_operator_approvals/decl.cairo" + }, + "parent_location": [ + { + "end_col": 51, + "end_line": 20, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721_operator_approvals/impl.cairo" + }, + "start_col": 30, + "start_line": 20 + }, + "While trying to retrieve the implicit argument 'range_check_ptr' in:" + ], + "start_col": 43, + "start_line": 7 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 63, + "start_line": 17 + } + }, + "1070": { + "accessible_scopes": [ + "openzeppelin.token.erc721.library", + "openzeppelin.token.erc721.library.ERC721_operator_approvals", + "openzeppelin.token.erc721.library.ERC721_operator_approvals.read" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 20, + "end_line": 18, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721_operator_approvals/impl.cairo" + }, + "parent_location": [ + { + "end_col": 40, + "end_line": 20, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721_operator_approvals/impl.cairo" + }, + "start_col": 35, + "start_line": 20 + }, + "While expanding the reference 'owner' in:" + ], + "start_col": 9, + "start_line": 18 + } + }, + "1071": { + "accessible_scopes": [ + "openzeppelin.token.erc721.library", + "openzeppelin.token.erc721.library.ERC721_operator_approvals", + "openzeppelin.token.erc721.library.ERC721_operator_approvals.read" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 36, + "end_line": 18, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721_operator_approvals/impl.cairo" + }, + "parent_location": [ + { + "end_col": 50, + "end_line": 20, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721_operator_approvals/impl.cairo" + }, + "start_col": 42, + "start_line": 20 + }, + "While expanding the reference 'operator' in:" + ], + "start_col": 22, + "start_line": 18 + } + }, + "1072": { + "accessible_scopes": [ + "openzeppelin.token.erc721.library", + "openzeppelin.token.erc721.library.ERC721_operator_approvals", + "openzeppelin.token.erc721.library.ERC721_operator_approvals.read" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 51, + "end_line": 20, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721_operator_approvals/impl.cairo" + }, + "start_col": 30, + "start_line": 20 + } + }, + "1074": { + "accessible_scopes": [ + "openzeppelin.token.erc721.library", + "openzeppelin.token.erc721.library.ERC721_operator_approvals", + "openzeppelin.token.erc721.library.ERC721_operator_approvals.read" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 33, + "end_line": 17, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721_operator_approvals/impl.cairo" + }, + "parent_location": [ + { + "end_col": 37, + "end_line": 352, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/starknet/common/syscalls.cairo" + }, + "parent_location": [ + { + "end_col": 75, + "end_line": 21, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721_operator_approvals/impl.cairo" + }, + "start_col": 37, + "start_line": 21 + }, + "While trying to retrieve the implicit argument 'syscall_ptr' in:" + ], + "start_col": 19, + "start_line": 352 + }, + "While expanding the reference 'syscall_ptr' in:" + ], + "start_col": 15, + "start_line": 17 + } + }, + "1075": { + "accessible_scopes": [ + "openzeppelin.token.erc721.library", + "openzeppelin.token.erc721.library.ERC721_operator_approvals", + "openzeppelin.token.erc721.library.ERC721_operator_approvals.read" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 26, + "end_line": 20, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721_operator_approvals/impl.cairo" + }, + "parent_location": [ + { + "end_col": 70, + "end_line": 21, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721_operator_approvals/impl.cairo" + }, + "start_col": 58, + "start_line": 21 + }, + "While expanding the reference 'storage_addr' in:" + ], + "start_col": 14, + "start_line": 20 + } + }, + "1076": { + "accessible_scopes": [ + "openzeppelin.token.erc721.library", + "openzeppelin.token.erc721.library.ERC721_operator_approvals", + "openzeppelin.token.erc721.library.ERC721_operator_approvals.read" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 75, + "end_line": 21, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721_operator_approvals/impl.cairo" + }, + "start_col": 37, + "start_line": 21 + } + }, + "1078": { + "accessible_scopes": [ + "openzeppelin.token.erc721.library", + "openzeppelin.token.erc721.library.ERC721_operator_approvals", + "openzeppelin.token.erc721.library.ERC721_operator_approvals.read" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 37, + "end_line": 352, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/starknet/common/syscalls.cairo" + }, + "parent_location": [ + { + "end_col": 75, + "end_line": 21, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721_operator_approvals/impl.cairo" + }, + "parent_location": [ + { + "end_col": 42, + "end_line": 23, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721_operator_approvals/impl.cairo" + }, + "start_col": 31, + "start_line": 23 + }, + "While expanding the reference 'syscall_ptr' in:" + ], + "start_col": 37, + "start_line": 21 + }, + "While trying to update the implicit return value 'syscall_ptr' in:" + ], + "start_col": 19, + "start_line": 352 + } + }, + "1079": { + "accessible_scopes": [ + "openzeppelin.token.erc721.library", + "openzeppelin.token.erc721.library.ERC721_operator_approvals", + "openzeppelin.token.erc721.library.ERC721_operator_approvals.read" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 41, + "end_line": 7, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721_operator_approvals/decl.cairo" + }, + "parent_location": [ + { + "end_col": 51, + "end_line": 20, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721_operator_approvals/impl.cairo" + }, + "parent_location": [ + { + "end_col": 44, + "end_line": 24, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721_operator_approvals/impl.cairo" + }, + "start_col": 32, + "start_line": 24 + }, + "While expanding the reference 'pedersen_ptr' in:" + ], + "start_col": 30, + "start_line": 20 + }, + "While trying to update the implicit return value 'pedersen_ptr' in:" + ], + "start_col": 15, + "start_line": 7 + } + }, + "1080": { + "accessible_scopes": [ + "openzeppelin.token.erc721.library", + "openzeppelin.token.erc721.library.ERC721_operator_approvals", + "openzeppelin.token.erc721.library.ERC721_operator_approvals.read" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 58, + "end_line": 7, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721_operator_approvals/decl.cairo" + }, + "parent_location": [ + { + "end_col": 51, + "end_line": 20, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721_operator_approvals/impl.cairo" + }, + "parent_location": [ + { + "end_col": 50, + "end_line": 25, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721_operator_approvals/impl.cairo" + }, + "start_col": 35, + "start_line": 25 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 30, + "start_line": 20 + }, + "While trying to update the implicit return value 'range_check_ptr' in:" + ], + "start_col": 43, + "start_line": 7 + } + }, + "1081": { + "accessible_scopes": [ + "openzeppelin.token.erc721.library", + "openzeppelin.token.erc721.library.ERC721_operator_approvals", + "openzeppelin.token.erc721.library.ERC721_operator_approvals.read" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 33, + "end_line": 21, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721_operator_approvals/impl.cairo" + }, + "parent_location": [ + { + "end_col": 64, + "end_line": 26, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721_operator_approvals/impl.cairo" + }, + "start_col": 45, + "start_line": 26 + }, + "While expanding the reference '__storage_var_temp0' in:" + ], + "start_col": 14, + "start_line": 21 + } + }, + "1082": { + "accessible_scopes": [ + "openzeppelin.token.erc721.library", + "openzeppelin.token.erc721.library.ERC721_operator_approvals", + "openzeppelin.token.erc721.library.ERC721_operator_approvals.read" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 55, + "end_line": 27, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721_operator_approvals/impl.cairo" + }, + "start_col": 9, + "start_line": 27 + } + }, + "1083": { + "accessible_scopes": [ + "openzeppelin.token.erc721.library", + "openzeppelin.token.erc721.library.ERC721_operator_approvals", + "openzeppelin.token.erc721.library.ERC721_operator_approvals.write" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 62, + "end_line": 30, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721_operator_approvals/impl.cairo" + }, + "parent_location": [ + { + "end_col": 41, + "end_line": 7, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721_operator_approvals/decl.cairo" + }, + "parent_location": [ + { + "end_col": 51, + "end_line": 33, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721_operator_approvals/impl.cairo" + }, + "start_col": 30, + "start_line": 33 + }, + "While trying to retrieve the implicit argument 'pedersen_ptr' in:" + ], + "start_col": 15, + "start_line": 7 + }, + "While expanding the reference 'pedersen_ptr' in:" + ], + "start_col": 36, + "start_line": 30 + } + }, + "1084": { + "accessible_scopes": [ + "openzeppelin.token.erc721.library", + "openzeppelin.token.erc721.library.ERC721_operator_approvals", + "openzeppelin.token.erc721.library.ERC721_operator_approvals.write" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 79, + "end_line": 30, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721_operator_approvals/impl.cairo" + }, + "parent_location": [ + { + "end_col": 58, + "end_line": 7, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721_operator_approvals/decl.cairo" + }, + "parent_location": [ + { + "end_col": 51, + "end_line": 33, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721_operator_approvals/impl.cairo" + }, + "start_col": 30, + "start_line": 33 + }, + "While trying to retrieve the implicit argument 'range_check_ptr' in:" + ], + "start_col": 43, + "start_line": 7 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 64, + "start_line": 30 + } + }, + "1085": { + "accessible_scopes": [ + "openzeppelin.token.erc721.library", + "openzeppelin.token.erc721.library.ERC721_operator_approvals", + "openzeppelin.token.erc721.library.ERC721_operator_approvals.write" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 20, + "end_line": 31, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721_operator_approvals/impl.cairo" + }, + "parent_location": [ + { + "end_col": 40, + "end_line": 33, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721_operator_approvals/impl.cairo" + }, + "start_col": 35, + "start_line": 33 + }, + "While expanding the reference 'owner' in:" + ], + "start_col": 9, + "start_line": 31 + } + }, + "1086": { + "accessible_scopes": [ + "openzeppelin.token.erc721.library", + "openzeppelin.token.erc721.library.ERC721_operator_approvals", + "openzeppelin.token.erc721.library.ERC721_operator_approvals.write" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 36, + "end_line": 31, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721_operator_approvals/impl.cairo" + }, + "parent_location": [ + { + "end_col": 50, + "end_line": 33, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721_operator_approvals/impl.cairo" + }, + "start_col": 42, + "start_line": 33 + }, + "While expanding the reference 'operator' in:" + ], + "start_col": 22, + "start_line": 31 + } + }, + "1087": { + "accessible_scopes": [ + "openzeppelin.token.erc721.library", + "openzeppelin.token.erc721.library.ERC721_operator_approvals", + "openzeppelin.token.erc721.library.ERC721_operator_approvals.write" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 51, + "end_line": 33, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721_operator_approvals/impl.cairo" + }, + "start_col": 30, + "start_line": 33 + } + }, + "1089": { + "accessible_scopes": [ + "openzeppelin.token.erc721.library", + "openzeppelin.token.erc721.library.ERC721_operator_approvals", + "openzeppelin.token.erc721.library.ERC721_operator_approvals.write" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 34, + "end_line": 30, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721_operator_approvals/impl.cairo" + }, + "parent_location": [ + { + "end_col": 38, + "end_line": 370, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/starknet/common/syscalls.cairo" + }, + "parent_location": [ + { + "end_col": 80, + "end_line": 34, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721_operator_approvals/impl.cairo" + }, + "start_col": 9, + "start_line": 34 + }, + "While trying to retrieve the implicit argument 'syscall_ptr' in:" + ], + "start_col": 20, + "start_line": 370 + }, + "While expanding the reference 'syscall_ptr' in:" + ], + "start_col": 16, + "start_line": 30 + } + }, + "1090": { + "accessible_scopes": [ + "openzeppelin.token.erc721.library", + "openzeppelin.token.erc721.library.ERC721_operator_approvals", + "openzeppelin.token.erc721.library.ERC721_operator_approvals.write" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 26, + "end_line": 33, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721_operator_approvals/impl.cairo" + }, + "parent_location": [ + { + "end_col": 43, + "end_line": 34, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721_operator_approvals/impl.cairo" + }, + "start_col": 31, + "start_line": 34 + }, + "While expanding the reference 'storage_addr' in:" + ], + "start_col": 14, + "start_line": 33 + } + }, + "1091": { + "accessible_scopes": [ + "openzeppelin.token.erc721.library", + "openzeppelin.token.erc721.library.ERC721_operator_approvals", + "openzeppelin.token.erc721.library.ERC721_operator_approvals.write" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 79, + "end_line": 34, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721_operator_approvals/impl.cairo" + }, + "start_col": 55, + "start_line": 34 + } + }, + "1092": { + "accessible_scopes": [ + "openzeppelin.token.erc721.library", + "openzeppelin.token.erc721.library.ERC721_operator_approvals", + "openzeppelin.token.erc721.library.ERC721_operator_approvals.write" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 80, + "end_line": 34, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721_operator_approvals/impl.cairo" + }, + "start_col": 9, + "start_line": 34 + } + }, + "1094": { + "accessible_scopes": [ + "openzeppelin.token.erc721.library", + "openzeppelin.token.erc721.library.ERC721_operator_approvals", + "openzeppelin.token.erc721.library.ERC721_operator_approvals.write" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 41, + "end_line": 7, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721_operator_approvals/decl.cairo" + }, + "parent_location": [ + { + "end_col": 51, + "end_line": 33, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721_operator_approvals/impl.cairo" + }, + "parent_location": [ + { + "end_col": 62, + "end_line": 23, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721_operator_approvals/decl.cairo" + }, + "parent_location": [ + { + "end_col": 19, + "end_line": 35, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721_operator_approvals/impl.cairo" + }, + "start_col": 9, + "start_line": 35 + }, + "While trying to retrieve the implicit argument 'pedersen_ptr' in:" + ], + "start_col": 36, + "start_line": 23 + }, + "While expanding the reference 'pedersen_ptr' in:" + ], + "start_col": 30, + "start_line": 33 + }, + "While trying to update the implicit return value 'pedersen_ptr' in:" + ], + "start_col": 15, + "start_line": 7 + } + }, + "1095": { + "accessible_scopes": [ + "openzeppelin.token.erc721.library", + "openzeppelin.token.erc721.library.ERC721_operator_approvals", + "openzeppelin.token.erc721.library.ERC721_operator_approvals.write" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 58, + "end_line": 7, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721_operator_approvals/decl.cairo" + }, + "parent_location": [ + { + "end_col": 51, + "end_line": 33, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721_operator_approvals/impl.cairo" + }, + "parent_location": [ + { + "end_col": 79, + "end_line": 23, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721_operator_approvals/decl.cairo" + }, + "parent_location": [ + { + "end_col": 19, + "end_line": 35, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721_operator_approvals/impl.cairo" + }, + "start_col": 9, + "start_line": 35 + }, + "While trying to retrieve the implicit argument 'range_check_ptr' in:" + ], + "start_col": 64, + "start_line": 23 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 30, + "start_line": 33 + }, + "While trying to update the implicit return value 'range_check_ptr' in:" + ], + "start_col": 43, + "start_line": 7 + } + }, + "1096": { + "accessible_scopes": [ + "openzeppelin.token.erc721.library", + "openzeppelin.token.erc721.library.ERC721_operator_approvals", + "openzeppelin.token.erc721.library.ERC721_operator_approvals.write" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 19, + "end_line": 35, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721_operator_approvals/impl.cairo" + }, + "start_col": 9, + "start_line": 35 + } + }, + "1097": { + "accessible_scopes": [ + "openzeppelin.token.erc721.library", + "openzeppelin.token.erc721.library.ERC721", + "openzeppelin.token.erc721.library.ERC721.initializer" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 40, + "end_line": 76, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "parent_location": [ + { + "end_col": 34, + "end_line": 19, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721_name/decl.cairo" + }, + "parent_location": [ + { + "end_col": 32, + "end_line": 79, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "start_col": 9, + "start_line": 79 + }, + "While trying to retrieve the implicit argument 'syscall_ptr' in:" + ], + "start_col": 16, + "start_line": 19 + }, + "While expanding the reference 'syscall_ptr' in:" + ], + "start_col": 22, + "start_line": 76 + } + }, + "1098": { + "accessible_scopes": [ + "openzeppelin.token.erc721.library", + "openzeppelin.token.erc721.library.ERC721", + "openzeppelin.token.erc721.library.ERC721.initializer" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 68, + "end_line": 76, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "parent_location": [ + { + "end_col": 62, + "end_line": 19, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721_name/decl.cairo" + }, + "parent_location": [ + { + "end_col": 32, + "end_line": 79, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "start_col": 9, + "start_line": 79 + }, + "While trying to retrieve the implicit argument 'pedersen_ptr' in:" + ], + "start_col": 36, + "start_line": 19 + }, + "While expanding the reference 'pedersen_ptr' in:" + ], + "start_col": 42, + "start_line": 76 + } + }, + "1099": { + "accessible_scopes": [ + "openzeppelin.token.erc721.library", + "openzeppelin.token.erc721.library.ERC721", + "openzeppelin.token.erc721.library.ERC721.initializer" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 85, + "end_line": 76, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "parent_location": [ + { + "end_col": 79, + "end_line": 19, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721_name/decl.cairo" + }, + "parent_location": [ + { + "end_col": 32, + "end_line": 79, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "start_col": 9, + "start_line": 79 + }, + "While trying to retrieve the implicit argument 'range_check_ptr' in:" + ], + "start_col": 64, + "start_line": 19 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 70, + "start_line": 76 + } + }, + "1100": { + "accessible_scopes": [ + "openzeppelin.token.erc721.library", + "openzeppelin.token.erc721.library.ERC721", + "openzeppelin.token.erc721.library.ERC721.initializer" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 19, + "end_line": 77, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "parent_location": [ + { + "end_col": 31, + "end_line": 79, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "start_col": 27, + "start_line": 79 + }, + "While expanding the reference 'name' in:" + ], + "start_col": 9, + "start_line": 77 + } + }, + "1101": { + "accessible_scopes": [ + "openzeppelin.token.erc721.library", + "openzeppelin.token.erc721.library.ERC721", + "openzeppelin.token.erc721.library.ERC721.initializer" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 32, + "end_line": 79, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "start_col": 9, + "start_line": 79 + } + }, + "1103": { + "accessible_scopes": [ + "openzeppelin.token.erc721.library", + "openzeppelin.token.erc721.library.ERC721", + "openzeppelin.token.erc721.library.ERC721.initializer" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 33, + "end_line": 77, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "parent_location": [ + { + "end_col": 35, + "end_line": 80, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "start_col": 29, + "start_line": 80 + }, + "While expanding the reference 'symbol' in:" + ], + "start_col": 21, + "start_line": 77 + } + }, + "1104": { + "accessible_scopes": [ + "openzeppelin.token.erc721.library", + "openzeppelin.token.erc721.library.ERC721", + "openzeppelin.token.erc721.library.ERC721.initializer" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 36, + "end_line": 80, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "start_col": 9, + "start_line": 80 + } + }, + "1106": { + "accessible_scopes": [ + "openzeppelin.token.erc721.library", + "openzeppelin.token.erc721.library.ERC721", + "openzeppelin.token.erc721.library.ERC721.initializer" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 45, + "end_line": 81, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "start_col": 35, + "start_line": 81 + } + }, + "1108": { + "accessible_scopes": [ + "openzeppelin.token.erc721.library", + "openzeppelin.token.erc721.library.ERC721", + "openzeppelin.token.erc721.library.ERC721.initializer" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 46, + "end_line": 81, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "start_col": 9, + "start_line": 81 + } + }, + "1110": { + "accessible_scopes": [ + "openzeppelin.token.erc721.library", + "openzeppelin.token.erc721.library.ERC721", + "openzeppelin.token.erc721.library.ERC721.initializer" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 54, + "end_line": 82, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "start_col": 35, + "start_line": 82 + } + }, + "1112": { + "accessible_scopes": [ + "openzeppelin.token.erc721.library", + "openzeppelin.token.erc721.library.ERC721", + "openzeppelin.token.erc721.library.ERC721.initializer" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 55, + "end_line": 82, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "start_col": 9, + "start_line": 82 + } + }, + "1114": { + "accessible_scopes": [ + "openzeppelin.token.erc721.library", + "openzeppelin.token.erc721.library.ERC721", + "openzeppelin.token.erc721.library.ERC721.initializer" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 19, + "end_line": 83, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "start_col": 9, + "start_line": 83 + } + }, + "1115": { + "accessible_scopes": [ + "openzeppelin.token.erc721.library", + "openzeppelin.token.erc721.library.ERC721", + "openzeppelin.token.erc721.library.ERC721.name" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 33, + "end_line": 90, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "parent_location": [ + { + "end_col": 33, + "end_line": 13, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721_name/decl.cairo" + }, + "parent_location": [ + { + "end_col": 34, + "end_line": 91, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "start_col": 16, + "start_line": 91 + }, + "While trying to retrieve the implicit argument 'syscall_ptr' in:" + ], + "start_col": 15, + "start_line": 13 + }, + "While expanding the reference 'syscall_ptr' in:" + ], + "start_col": 15, + "start_line": 90 + } + }, + "1116": { + "accessible_scopes": [ + "openzeppelin.token.erc721.library", + "openzeppelin.token.erc721.library.ERC721", + "openzeppelin.token.erc721.library.ERC721.name" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 61, + "end_line": 90, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "parent_location": [ + { + "end_col": 61, + "end_line": 13, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721_name/decl.cairo" + }, + "parent_location": [ + { + "end_col": 34, + "end_line": 91, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "start_col": 16, + "start_line": 91 + }, + "While trying to retrieve the implicit argument 'pedersen_ptr' in:" + ], + "start_col": 35, + "start_line": 13 + }, + "While expanding the reference 'pedersen_ptr' in:" + ], + "start_col": 35, + "start_line": 90 + } + }, + "1117": { + "accessible_scopes": [ + "openzeppelin.token.erc721.library", + "openzeppelin.token.erc721.library.ERC721", + "openzeppelin.token.erc721.library.ERC721.name" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 78, + "end_line": 90, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "parent_location": [ + { + "end_col": 78, + "end_line": 13, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721_name/decl.cairo" + }, + "parent_location": [ + { + "end_col": 34, + "end_line": 91, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "start_col": 16, + "start_line": 91 + }, + "While trying to retrieve the implicit argument 'range_check_ptr' in:" + ], + "start_col": 63, + "start_line": 13 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 63, + "start_line": 90 + } + }, + "1118": { + "accessible_scopes": [ + "openzeppelin.token.erc721.library", + "openzeppelin.token.erc721.library.ERC721", + "openzeppelin.token.erc721.library.ERC721.name" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 34, + "end_line": 91, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "start_col": 16, + "start_line": 91 + } + }, + "1120": { + "accessible_scopes": [ + "openzeppelin.token.erc721.library", + "openzeppelin.token.erc721.library.ERC721", + "openzeppelin.token.erc721.library.ERC721.name" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 35, + "end_line": 91, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "start_col": 9, + "start_line": 91 + } + }, + "1121": { + "accessible_scopes": [ + "openzeppelin.token.erc721.library", + "openzeppelin.token.erc721.library.ERC721", + "openzeppelin.token.erc721.library.ERC721.symbol" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 35, + "end_line": 94, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "parent_location": [ + { + "end_col": 33, + "end_line": 13, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721_symbol/decl.cairo" + }, + "parent_location": [ + { + "end_col": 36, + "end_line": 97, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "start_col": 16, + "start_line": 97 + }, + "While trying to retrieve the implicit argument 'syscall_ptr' in:" + ], + "start_col": 15, + "start_line": 13 + }, + "While expanding the reference 'syscall_ptr' in:" + ], + "start_col": 17, + "start_line": 94 + } + }, + "1122": { + "accessible_scopes": [ + "openzeppelin.token.erc721.library", + "openzeppelin.token.erc721.library.ERC721", + "openzeppelin.token.erc721.library.ERC721.symbol" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 63, + "end_line": 94, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "parent_location": [ + { + "end_col": 61, + "end_line": 13, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721_symbol/decl.cairo" + }, + "parent_location": [ + { + "end_col": 36, + "end_line": 97, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "start_col": 16, + "start_line": 97 + }, + "While trying to retrieve the implicit argument 'pedersen_ptr' in:" + ], + "start_col": 35, + "start_line": 13 + }, + "While expanding the reference 'pedersen_ptr' in:" + ], + "start_col": 37, + "start_line": 94 + } + }, + "1123": { + "accessible_scopes": [ + "openzeppelin.token.erc721.library", + "openzeppelin.token.erc721.library.ERC721", + "openzeppelin.token.erc721.library.ERC721.symbol" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 80, + "end_line": 94, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "parent_location": [ + { + "end_col": 78, + "end_line": 13, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721_symbol/decl.cairo" + }, + "parent_location": [ + { + "end_col": 36, + "end_line": 97, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "start_col": 16, + "start_line": 97 + }, + "While trying to retrieve the implicit argument 'range_check_ptr' in:" + ], + "start_col": 63, + "start_line": 13 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 65, + "start_line": 94 + } + }, + "1124": { + "accessible_scopes": [ + "openzeppelin.token.erc721.library", + "openzeppelin.token.erc721.library.ERC721", + "openzeppelin.token.erc721.library.ERC721.symbol" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 36, + "end_line": 97, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "start_col": 16, + "start_line": 97 + } + }, + "1126": { + "accessible_scopes": [ + "openzeppelin.token.erc721.library", + "openzeppelin.token.erc721.library.ERC721", + "openzeppelin.token.erc721.library.ERC721.symbol" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 37, + "end_line": 97, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "start_col": 9, + "start_line": 97 + } + }, + "1127": { + "accessible_scopes": [ + "openzeppelin.token.erc721.library", + "openzeppelin.token.erc721.library.ERC721", + "openzeppelin.token.erc721.library.ERC721.balance_of" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 20, + "end_line": 101, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "parent_location": [ + { + "end_col": 34, + "end_line": 104, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "start_col": 29, + "start_line": 104 + }, + "While expanding the reference 'owner' in:" + ], + "start_col": 9, + "start_line": 101 + } + }, + "1128": { + "accessible_scopes": [ + "openzeppelin.token.erc721.library", + "openzeppelin.token.erc721.library.ERC721", + "openzeppelin.token.erc721.library.ERC721.balance_of" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 35, + "end_line": 104, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "start_col": 13, + "start_line": 104 + } + }, + "1130": { + "accessible_scopes": [ + "openzeppelin.token.erc721.library", + "openzeppelin.token.erc721.library.ERC721", + "openzeppelin.token.erc721.library.ERC721.balance_of" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 39, + "end_line": 100, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "parent_location": [ + { + "end_col": 33, + "end_line": 13, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721_balances/decl.cairo" + }, + "parent_location": [ + { + "end_col": 43, + "end_line": 106, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "start_col": 16, + "start_line": 106 + }, + "While trying to retrieve the implicit argument 'syscall_ptr' in:" + ], + "start_col": 15, + "start_line": 13 + }, + "While expanding the reference 'syscall_ptr' in:" + ], + "start_col": 21, + "start_line": 100 + } + }, + "1131": { + "accessible_scopes": [ + "openzeppelin.token.erc721.library", + "openzeppelin.token.erc721.library.ERC721", + "openzeppelin.token.erc721.library.ERC721.balance_of" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 67, + "end_line": 100, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "parent_location": [ + { + "end_col": 61, + "end_line": 13, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721_balances/decl.cairo" + }, + "parent_location": [ + { + "end_col": 43, + "end_line": 106, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "start_col": 16, + "start_line": 106 + }, + "While trying to retrieve the implicit argument 'pedersen_ptr' in:" + ], + "start_col": 35, + "start_line": 13 + }, + "While expanding the reference 'pedersen_ptr' in:" + ], + "start_col": 41, + "start_line": 100 + } + }, + "1132": { + "accessible_scopes": [ + "openzeppelin.token.erc721.library", + "openzeppelin.token.erc721.library.ERC721", + "openzeppelin.token.erc721.library.ERC721.balance_of" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 84, + "end_line": 100, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "parent_location": [ + { + "end_col": 78, + "end_line": 13, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721_balances/decl.cairo" + }, + "parent_location": [ + { + "end_col": 43, + "end_line": 106, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "start_col": 16, + "start_line": 106 + }, + "While trying to retrieve the implicit argument 'range_check_ptr' in:" + ], + "start_col": 63, + "start_line": 13 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 69, + "start_line": 100 + } + }, + "1133": { + "accessible_scopes": [ + "openzeppelin.token.erc721.library", + "openzeppelin.token.erc721.library.ERC721", + "openzeppelin.token.erc721.library.ERC721.balance_of" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 20, + "end_line": 101, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "parent_location": [ + { + "end_col": 42, + "end_line": 106, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "start_col": 37, + "start_line": 106 + }, + "While expanding the reference 'owner' in:" + ], + "start_col": 9, + "start_line": 101 + } + }, + "1134": { + "accessible_scopes": [ + "openzeppelin.token.erc721.library", + "openzeppelin.token.erc721.library.ERC721", + "openzeppelin.token.erc721.library.ERC721.balance_of" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 43, + "end_line": 106, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "start_col": 16, + "start_line": 106 + } + }, + "1136": { + "accessible_scopes": [ + "openzeppelin.token.erc721.library", + "openzeppelin.token.erc721.library.ERC721", + "openzeppelin.token.erc721.library.ERC721.balance_of" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 44, + "end_line": 106, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "start_col": 9, + "start_line": 106 + } + }, + "1137": { + "accessible_scopes": [ + "openzeppelin.token.erc721.library", + "openzeppelin.token.erc721.library.ERC721", + "openzeppelin.token.erc721.library.ERC721.owner_of" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 82, + "end_line": 109, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "parent_location": [ + { + "end_col": 35, + "end_line": 21, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/uint256.cairo" + }, + "parent_location": [ + { + "end_col": 36, + "end_line": 113, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "start_col": 13, + "start_line": 113 + }, + "While trying to retrieve the implicit argument 'range_check_ptr' in:" + ], + "start_col": 20, + "start_line": 21 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 67, + "start_line": 109 + } + }, + "1138": { + "accessible_scopes": [ + "openzeppelin.token.erc721.library", + "openzeppelin.token.erc721.library.ERC721", + "openzeppelin.token.erc721.library.ERC721.owner_of" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 26, + "end_line": 110, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "parent_location": [ + { + "end_col": 35, + "end_line": 113, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "start_col": 27, + "start_line": 113 + }, + "While expanding the reference 'token_id' in:" + ], + "start_col": 9, + "start_line": 110 + } + }, + "1139": { + "accessible_scopes": [ + "openzeppelin.token.erc721.library", + "openzeppelin.token.erc721.library.ERC721", + "openzeppelin.token.erc721.library.ERC721.owner_of" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 26, + "end_line": 110, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "parent_location": [ + { + "end_col": 35, + "end_line": 113, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "start_col": 27, + "start_line": 113 + }, + "While expanding the reference 'token_id' in:" + ], + "start_col": 9, + "start_line": 110 + } + }, + "1140": { + "accessible_scopes": [ + "openzeppelin.token.erc721.library", + "openzeppelin.token.erc721.library.ERC721", + "openzeppelin.token.erc721.library.ERC721.owner_of" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 36, + "end_line": 113, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "start_col": 13, + "start_line": 113 + } + }, + "1142": { + "accessible_scopes": [ + "openzeppelin.token.erc721.library", + "openzeppelin.token.erc721.library.ERC721", + "openzeppelin.token.erc721.library.ERC721.owner_of" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 37, + "end_line": 109, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "parent_location": [ + { + "end_col": 33, + "end_line": 13, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721_owners/decl.cairo" + }, + "parent_location": [ + { + "end_col": 51, + "end_line": 115, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "start_col": 23, + "start_line": 115 + }, + "While trying to retrieve the implicit argument 'syscall_ptr' in:" + ], + "start_col": 15, + "start_line": 13 + }, + "While expanding the reference 'syscall_ptr' in:" + ], + "start_col": 19, + "start_line": 109 + } + }, + "1143": { + "accessible_scopes": [ + "openzeppelin.token.erc721.library", + "openzeppelin.token.erc721.library.ERC721", + "openzeppelin.token.erc721.library.ERC721.owner_of" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 65, + "end_line": 109, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "parent_location": [ + { + "end_col": 61, + "end_line": 13, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721_owners/decl.cairo" + }, + "parent_location": [ + { + "end_col": 51, + "end_line": 115, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "start_col": 23, + "start_line": 115 + }, + "While trying to retrieve the implicit argument 'pedersen_ptr' in:" + ], + "start_col": 35, + "start_line": 13 + }, + "While expanding the reference 'pedersen_ptr' in:" + ], + "start_col": 39, + "start_line": 109 + } + }, + "1144": { + "accessible_scopes": [ + "openzeppelin.token.erc721.library", + "openzeppelin.token.erc721.library.ERC721", + "openzeppelin.token.erc721.library.ERC721.owner_of" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 35, + "end_line": 21, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/uint256.cairo" + }, + "parent_location": [ + { + "end_col": 36, + "end_line": 113, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "parent_location": [ + { + "end_col": 78, + "end_line": 13, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721_owners/decl.cairo" + }, + "parent_location": [ + { + "end_col": 51, + "end_line": 115, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "start_col": 23, + "start_line": 115 + }, + "While trying to retrieve the implicit argument 'range_check_ptr' in:" + ], + "start_col": 63, + "start_line": 13 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 13, + "start_line": 113 + }, + "While trying to update the implicit return value 'range_check_ptr' in:" + ], + "start_col": 20, + "start_line": 21 + } + }, + "1145": { + "accessible_scopes": [ + "openzeppelin.token.erc721.library", + "openzeppelin.token.erc721.library.ERC721", + "openzeppelin.token.erc721.library.ERC721.owner_of" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 26, + "end_line": 110, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "parent_location": [ + { + "end_col": 50, + "end_line": 115, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "start_col": 42, + "start_line": 115 + }, + "While expanding the reference 'token_id' in:" + ], + "start_col": 9, + "start_line": 110 + } + }, + "1146": { + "accessible_scopes": [ + "openzeppelin.token.erc721.library", + "openzeppelin.token.erc721.library.ERC721", + "openzeppelin.token.erc721.library.ERC721.owner_of" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 26, + "end_line": 110, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "parent_location": [ + { + "end_col": 50, + "end_line": 115, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "start_col": 42, + "start_line": 115 + }, + "While expanding the reference 'token_id' in:" + ], + "start_col": 9, + "start_line": 110 + } + }, + "1147": { + "accessible_scopes": [ + "openzeppelin.token.erc721.library", + "openzeppelin.token.erc721.library.ERC721", + "openzeppelin.token.erc721.library.ERC721.owner_of" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 51, + "end_line": 115, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "start_col": 23, + "start_line": 115 + } + }, + "1149": { + "accessible_scopes": [ + "openzeppelin.token.erc721.library", + "openzeppelin.token.erc721.library.ERC721", + "openzeppelin.token.erc721.library.ERC721.owner_of" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 35, + "end_line": 117, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "start_col": 13, + "start_line": 117 + } + }, + "1151": { + "accessible_scopes": [ + "openzeppelin.token.erc721.library", + "openzeppelin.token.erc721.library.ERC721", + "openzeppelin.token.erc721.library.ERC721.owner_of" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 33, + "end_line": 13, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721_owners/decl.cairo" + }, + "parent_location": [ + { + "end_col": 51, + "end_line": 115, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "parent_location": [ + { + "end_col": 37, + "end_line": 109, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "parent_location": [ + { + "end_col": 30, + "end_line": 119, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "start_col": 9, + "start_line": 119 + }, + "While trying to retrieve the implicit argument 'syscall_ptr' in:" + ], + "start_col": 19, + "start_line": 109 + }, + "While expanding the reference 'syscall_ptr' in:" + ], + "start_col": 23, + "start_line": 115 + }, + "While trying to update the implicit return value 'syscall_ptr' in:" + ], + "start_col": 15, + "start_line": 13 + } + }, + "1152": { + "accessible_scopes": [ + "openzeppelin.token.erc721.library", + "openzeppelin.token.erc721.library.ERC721", + "openzeppelin.token.erc721.library.ERC721.owner_of" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 61, + "end_line": 13, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721_owners/decl.cairo" + }, + "parent_location": [ + { + "end_col": 51, + "end_line": 115, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "parent_location": [ + { + "end_col": 65, + "end_line": 109, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "parent_location": [ + { + "end_col": 30, + "end_line": 119, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "start_col": 9, + "start_line": 119 + }, + "While trying to retrieve the implicit argument 'pedersen_ptr' in:" + ], + "start_col": 39, + "start_line": 109 + }, + "While expanding the reference 'pedersen_ptr' in:" + ], + "start_col": 23, + "start_line": 115 + }, + "While trying to update the implicit return value 'pedersen_ptr' in:" + ], + "start_col": 35, + "start_line": 13 + } + }, + "1153": { + "accessible_scopes": [ + "openzeppelin.token.erc721.library", + "openzeppelin.token.erc721.library.ERC721", + "openzeppelin.token.erc721.library.ERC721.owner_of" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 78, + "end_line": 13, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721_owners/decl.cairo" + }, + "parent_location": [ + { + "end_col": 51, + "end_line": 115, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "parent_location": [ + { + "end_col": 82, + "end_line": 109, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "parent_location": [ + { + "end_col": 30, + "end_line": 119, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "start_col": 9, + "start_line": 119 + }, + "While trying to retrieve the implicit argument 'range_check_ptr' in:" + ], + "start_col": 67, + "start_line": 109 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 23, + "start_line": 115 + }, + "While trying to update the implicit return value 'range_check_ptr' in:" + ], + "start_col": 63, + "start_line": 13 + } + }, + "1154": { + "accessible_scopes": [ + "openzeppelin.token.erc721.library", + "openzeppelin.token.erc721.library.ERC721", + "openzeppelin.token.erc721.library.ERC721.owner_of" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 19, + "end_line": 115, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "parent_location": [ + { + "end_col": 28, + "end_line": 119, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "start_col": 23, + "start_line": 119 + }, + "While expanding the reference 'owner' in:" + ], + "start_col": 14, + "start_line": 115 + } + }, + "1155": { + "accessible_scopes": [ + "openzeppelin.token.erc721.library", + "openzeppelin.token.erc721.library.ERC721", + "openzeppelin.token.erc721.library.ERC721.owner_of" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 30, + "end_line": 119, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "start_col": 9, + "start_line": 119 + } + }, + "1156": { + "accessible_scopes": [ + "openzeppelin.token.erc721.library", + "openzeppelin.token.erc721.library.ERC721", + "openzeppelin.token.erc721.library.ERC721.get_approved" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 86, + "end_line": 122, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "parent_location": [ + { + "end_col": 35, + "end_line": 21, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/uint256.cairo" + }, + "parent_location": [ + { + "end_col": 36, + "end_line": 126, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "start_col": 13, + "start_line": 126 + }, + "While trying to retrieve the implicit argument 'range_check_ptr' in:" + ], + "start_col": 20, + "start_line": 21 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 71, + "start_line": 122 + } + }, + "1157": { + "accessible_scopes": [ + "openzeppelin.token.erc721.library", + "openzeppelin.token.erc721.library.ERC721", + "openzeppelin.token.erc721.library.ERC721.get_approved" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 26, + "end_line": 123, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "parent_location": [ + { + "end_col": 35, + "end_line": 126, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "start_col": 27, + "start_line": 126 + }, + "While expanding the reference 'token_id' in:" + ], + "start_col": 9, + "start_line": 123 + } + }, + "1158": { + "accessible_scopes": [ + "openzeppelin.token.erc721.library", + "openzeppelin.token.erc721.library.ERC721", + "openzeppelin.token.erc721.library.ERC721.get_approved" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 26, + "end_line": 123, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "parent_location": [ + { + "end_col": 35, + "end_line": 126, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "start_col": 27, + "start_line": 126 + }, + "While expanding the reference 'token_id' in:" + ], + "start_col": 9, + "start_line": 123 + } + }, + "1159": { + "accessible_scopes": [ + "openzeppelin.token.erc721.library", + "openzeppelin.token.erc721.library.ERC721", + "openzeppelin.token.erc721.library.ERC721.get_approved" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 36, + "end_line": 126, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "start_col": 13, + "start_line": 126 + } + }, + "1161": { + "accessible_scopes": [ + "openzeppelin.token.erc721.library", + "openzeppelin.token.erc721.library.ERC721", + "openzeppelin.token.erc721.library.ERC721.get_approved" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 41, + "end_line": 122, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "parent_location": [ + { + "end_col": 36, + "end_line": 311, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "parent_location": [ + { + "end_col": 39, + "end_line": 128, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "start_col": 22, + "start_line": 128 + }, + "While trying to retrieve the implicit argument 'syscall_ptr' in:" + ], + "start_col": 18, + "start_line": 311 + }, + "While expanding the reference 'syscall_ptr' in:" + ], + "start_col": 23, + "start_line": 122 + } + }, + "1162": { + "accessible_scopes": [ + "openzeppelin.token.erc721.library", + "openzeppelin.token.erc721.library.ERC721", + "openzeppelin.token.erc721.library.ERC721.get_approved" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 69, + "end_line": 122, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "parent_location": [ + { + "end_col": 64, + "end_line": 311, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "parent_location": [ + { + "end_col": 39, + "end_line": 128, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "start_col": 22, + "start_line": 128 + }, + "While trying to retrieve the implicit argument 'pedersen_ptr' in:" + ], + "start_col": 38, + "start_line": 311 + }, + "While expanding the reference 'pedersen_ptr' in:" + ], + "start_col": 43, + "start_line": 122 + } + }, + "1163": { + "accessible_scopes": [ + "openzeppelin.token.erc721.library", + "openzeppelin.token.erc721.library.ERC721", + "openzeppelin.token.erc721.library.ERC721.get_approved" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 35, + "end_line": 21, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/uint256.cairo" + }, + "parent_location": [ + { + "end_col": 36, + "end_line": 126, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "parent_location": [ + { + "end_col": 81, + "end_line": 311, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "parent_location": [ + { + "end_col": 39, + "end_line": 128, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "start_col": 22, + "start_line": 128 + }, + "While trying to retrieve the implicit argument 'range_check_ptr' in:" + ], + "start_col": 66, + "start_line": 311 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 13, + "start_line": 126 + }, + "While trying to update the implicit return value 'range_check_ptr' in:" + ], + "start_col": 20, + "start_line": 21 + } + }, + "1164": { + "accessible_scopes": [ + "openzeppelin.token.erc721.library", + "openzeppelin.token.erc721.library.ERC721", + "openzeppelin.token.erc721.library.ERC721.get_approved" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 26, + "end_line": 123, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "parent_location": [ + { + "end_col": 38, + "end_line": 128, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "start_col": 30, + "start_line": 128 + }, + "While expanding the reference 'token_id' in:" + ], + "start_col": 9, + "start_line": 123 + } + }, + "1165": { + "accessible_scopes": [ + "openzeppelin.token.erc721.library", + "openzeppelin.token.erc721.library.ERC721", + "openzeppelin.token.erc721.library.ERC721.get_approved" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 26, + "end_line": 123, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "parent_location": [ + { + "end_col": 38, + "end_line": 128, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "start_col": 30, + "start_line": 128 + }, + "While expanding the reference 'token_id' in:" + ], + "start_col": 9, + "start_line": 123 + } + }, + "1166": { + "accessible_scopes": [ + "openzeppelin.token.erc721.library", + "openzeppelin.token.erc721.library.ERC721", + "openzeppelin.token.erc721.library.ERC721.get_approved" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 39, + "end_line": 128, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "start_col": 22, + "start_line": 128 + } + }, + "1168": { + "accessible_scopes": [ + "openzeppelin.token.erc721.library", + "openzeppelin.token.erc721.library.ERC721", + "openzeppelin.token.erc721.library.ERC721.get_approved" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 34, + "end_line": 130, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "start_col": 13, + "start_line": 130 + } + }, + "1170": { + "accessible_scopes": [ + "openzeppelin.token.erc721.library", + "openzeppelin.token.erc721.library.ERC721", + "openzeppelin.token.erc721.library.ERC721.get_approved" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 36, + "end_line": 311, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "parent_location": [ + { + "end_col": 39, + "end_line": 128, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "parent_location": [ + { + "end_col": 33, + "end_line": 13, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721_token_approvals/decl.cairo" + }, + "parent_location": [ + { + "end_col": 53, + "end_line": 133, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "start_col": 16, + "start_line": 133 + }, + "While trying to retrieve the implicit argument 'syscall_ptr' in:" + ], + "start_col": 15, + "start_line": 13 + }, + "While expanding the reference 'syscall_ptr' in:" + ], + "start_col": 22, + "start_line": 128 + }, + "While trying to update the implicit return value 'syscall_ptr' in:" + ], + "start_col": 18, + "start_line": 311 + } + }, + "1171": { + "accessible_scopes": [ + "openzeppelin.token.erc721.library", + "openzeppelin.token.erc721.library.ERC721", + "openzeppelin.token.erc721.library.ERC721.get_approved" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 64, + "end_line": 311, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "parent_location": [ + { + "end_col": 39, + "end_line": 128, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "parent_location": [ + { + "end_col": 61, + "end_line": 13, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721_token_approvals/decl.cairo" + }, + "parent_location": [ + { + "end_col": 53, + "end_line": 133, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "start_col": 16, + "start_line": 133 + }, + "While trying to retrieve the implicit argument 'pedersen_ptr' in:" + ], + "start_col": 35, + "start_line": 13 + }, + "While expanding the reference 'pedersen_ptr' in:" + ], + "start_col": 22, + "start_line": 128 + }, + "While trying to update the implicit return value 'pedersen_ptr' in:" + ], + "start_col": 38, + "start_line": 311 + } + }, + "1172": { + "accessible_scopes": [ + "openzeppelin.token.erc721.library", + "openzeppelin.token.erc721.library.ERC721", + "openzeppelin.token.erc721.library.ERC721.get_approved" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 81, + "end_line": 311, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "parent_location": [ + { + "end_col": 39, + "end_line": 128, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "parent_location": [ + { + "end_col": 78, + "end_line": 13, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721_token_approvals/decl.cairo" + }, + "parent_location": [ + { + "end_col": 53, + "end_line": 133, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "start_col": 16, + "start_line": 133 + }, + "While trying to retrieve the implicit argument 'range_check_ptr' in:" + ], + "start_col": 63, + "start_line": 13 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 22, + "start_line": 128 + }, + "While trying to update the implicit return value 'range_check_ptr' in:" + ], + "start_col": 66, + "start_line": 311 + } + }, + "1173": { + "accessible_scopes": [ + "openzeppelin.token.erc721.library", + "openzeppelin.token.erc721.library.ERC721", + "openzeppelin.token.erc721.library.ERC721.get_approved" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 26, + "end_line": 123, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "parent_location": [ + { + "end_col": 52, + "end_line": 133, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "start_col": 44, + "start_line": 133 + }, + "While expanding the reference 'token_id' in:" + ], + "start_col": 9, + "start_line": 123 + } + }, + "1174": { + "accessible_scopes": [ + "openzeppelin.token.erc721.library", + "openzeppelin.token.erc721.library.ERC721", + "openzeppelin.token.erc721.library.ERC721.get_approved" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 26, + "end_line": 123, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "parent_location": [ + { + "end_col": 52, + "end_line": 133, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "start_col": 44, + "start_line": 133 + }, + "While expanding the reference 'token_id' in:" + ], + "start_col": 9, + "start_line": 123 + } + }, + "1175": { + "accessible_scopes": [ + "openzeppelin.token.erc721.library", + "openzeppelin.token.erc721.library.ERC721", + "openzeppelin.token.erc721.library.ERC721.get_approved" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 53, + "end_line": 133, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "start_col": 16, + "start_line": 133 + } + }, + "1177": { + "accessible_scopes": [ + "openzeppelin.token.erc721.library", + "openzeppelin.token.erc721.library.ERC721", + "openzeppelin.token.erc721.library.ERC721.get_approved" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 54, + "end_line": 133, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "start_col": 9, + "start_line": 133 + } + }, + "1178": { + "accessible_scopes": [ + "openzeppelin.token.erc721.library", + "openzeppelin.token.erc721.library.ERC721", + "openzeppelin.token.erc721.library.ERC721.is_approved_for_all" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 48, + "end_line": 136, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "parent_location": [ + { + "end_col": 33, + "end_line": 15, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721_operator_approvals/decl.cairo" + }, + "parent_location": [ + { + "end_col": 63, + "end_line": 139, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "start_col": 16, + "start_line": 139 + }, + "While trying to retrieve the implicit argument 'syscall_ptr' in:" + ], + "start_col": 15, + "start_line": 15 + }, + "While expanding the reference 'syscall_ptr' in:" + ], + "start_col": 30, + "start_line": 136 + } + }, + "1179": { + "accessible_scopes": [ + "openzeppelin.token.erc721.library", + "openzeppelin.token.erc721.library.ERC721", + "openzeppelin.token.erc721.library.ERC721.is_approved_for_all" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 76, + "end_line": 136, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "parent_location": [ + { + "end_col": 61, + "end_line": 15, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721_operator_approvals/decl.cairo" + }, + "parent_location": [ + { + "end_col": 63, + "end_line": 139, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "start_col": 16, + "start_line": 139 + }, + "While trying to retrieve the implicit argument 'pedersen_ptr' in:" + ], + "start_col": 35, + "start_line": 15 + }, + "While expanding the reference 'pedersen_ptr' in:" + ], + "start_col": 50, + "start_line": 136 + } + }, + "1180": { + "accessible_scopes": [ + "openzeppelin.token.erc721.library", + "openzeppelin.token.erc721.library.ERC721", + "openzeppelin.token.erc721.library.ERC721.is_approved_for_all" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 93, + "end_line": 136, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "parent_location": [ + { + "end_col": 78, + "end_line": 15, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721_operator_approvals/decl.cairo" + }, + "parent_location": [ + { + "end_col": 63, + "end_line": 139, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "start_col": 16, + "start_line": 139 + }, + "While trying to retrieve the implicit argument 'range_check_ptr' in:" + ], + "start_col": 63, + "start_line": 15 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 78, + "start_line": 136 + } + }, + "1181": { + "accessible_scopes": [ + "openzeppelin.token.erc721.library", + "openzeppelin.token.erc721.library.ERC721", + "openzeppelin.token.erc721.library.ERC721.is_approved_for_all" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 20, + "end_line": 137, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "parent_location": [ + { + "end_col": 52, + "end_line": 139, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "start_col": 47, + "start_line": 139 + }, + "While expanding the reference 'owner' in:" + ], + "start_col": 9, + "start_line": 137 + } + }, + "1182": { + "accessible_scopes": [ + "openzeppelin.token.erc721.library", + "openzeppelin.token.erc721.library.ERC721", + "openzeppelin.token.erc721.library.ERC721.is_approved_for_all" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 36, + "end_line": 137, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "parent_location": [ + { + "end_col": 62, + "end_line": 139, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "start_col": 54, + "start_line": 139 + }, + "While expanding the reference 'operator' in:" + ], + "start_col": 22, + "start_line": 137 + } + }, + "1183": { + "accessible_scopes": [ + "openzeppelin.token.erc721.library", + "openzeppelin.token.erc721.library.ERC721", + "openzeppelin.token.erc721.library.ERC721.is_approved_for_all" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 63, + "end_line": 139, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "start_col": 16, + "start_line": 139 + } + }, + "1185": { + "accessible_scopes": [ + "openzeppelin.token.erc721.library", + "openzeppelin.token.erc721.library.ERC721", + "openzeppelin.token.erc721.library.ERC721.is_approved_for_all" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 64, + "end_line": 139, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "start_col": 9, + "start_line": 139 + } + }, + "1186": { + "accessible_scopes": [ + "openzeppelin.token.erc721.library", + "openzeppelin.token.erc721.library.ERC721", + "openzeppelin.token.erc721.library.ERC721.approve" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 81, + "end_line": 158, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "parent_location": [ + { + "end_col": 35, + "end_line": 21, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/uint256.cairo" + }, + "parent_location": [ + { + "end_col": 36, + "end_line": 162, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "start_col": 13, + "start_line": 162 + }, + "While trying to retrieve the implicit argument 'range_check_ptr' in:" + ], + "start_col": 20, + "start_line": 21 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 66, + "start_line": 158 + } + }, + "1187": { + "accessible_scopes": [ + "openzeppelin.token.erc721.library", + "openzeppelin.token.erc721.library.ERC721", + "openzeppelin.token.erc721.library.ERC721.approve" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 36, + "end_line": 159, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "parent_location": [ + { + "end_col": 35, + "end_line": 162, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "start_col": 27, + "start_line": 162 + }, + "While expanding the reference 'token_id' in:" + ], + "start_col": 19, + "start_line": 159 + } + }, + "1188": { + "accessible_scopes": [ + "openzeppelin.token.erc721.library", + "openzeppelin.token.erc721.library.ERC721", + "openzeppelin.token.erc721.library.ERC721.approve" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 36, + "end_line": 159, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "parent_location": [ + { + "end_col": 35, + "end_line": 162, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "start_col": 27, + "start_line": 162 + }, + "While expanding the reference 'token_id' in:" + ], + "start_col": 19, + "start_line": 159 + } + }, + "1189": { + "accessible_scopes": [ + "openzeppelin.token.erc721.library", + "openzeppelin.token.erc721.library.ERC721", + "openzeppelin.token.erc721.library.ERC721.approve" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 36, + "end_line": 162, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "start_col": 13, + "start_line": 162 + } + }, + "1191": { + "accessible_scopes": [ + "openzeppelin.token.erc721.library", + "openzeppelin.token.erc721.library.ERC721", + "openzeppelin.token.erc721.library.ERC721.approve" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 64, + "end_line": 158, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "parent_location": [ + { + "end_col": 43, + "end_line": 200, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/starknet/common/syscalls.cairo" + }, + "parent_location": [ + { + "end_col": 44, + "end_line": 166, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "start_col": 24, + "start_line": 166 + }, + "While trying to retrieve the implicit argument 'syscall_ptr' in:" + ], + "start_col": 25, + "start_line": 200 + }, + "While expanding the reference 'syscall_ptr' in:" + ], + "start_col": 46, + "start_line": 158 + } + }, + "1192": { + "accessible_scopes": [ + "openzeppelin.token.erc721.library", + "openzeppelin.token.erc721.library.ERC721", + "openzeppelin.token.erc721.library.ERC721.approve" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 44, + "end_line": 166, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "start_col": 24, + "start_line": 166 + } + }, + "1194": { + "accessible_scopes": [ + "openzeppelin.token.erc721.library", + "openzeppelin.token.erc721.library.ERC721", + "openzeppelin.token.erc721.library.ERC721.approve" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 36, + "end_line": 168, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "start_col": 13, + "start_line": 168 + } + }, + "1196": { + "accessible_scopes": [ + "openzeppelin.token.erc721.library", + "openzeppelin.token.erc721.library.ERC721", + "openzeppelin.token.erc721.library.ERC721.approve" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 43, + "end_line": 200, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/starknet/common/syscalls.cairo" + }, + "parent_location": [ + { + "end_col": 44, + "end_line": 166, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "parent_location": [ + { + "end_col": 33, + "end_line": 13, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721_owners/decl.cairo" + }, + "parent_location": [ + { + "end_col": 51, + "end_line": 172, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "start_col": 23, + "start_line": 172 + }, + "While trying to retrieve the implicit argument 'syscall_ptr' in:" + ], + "start_col": 15, + "start_line": 13 + }, + "While expanding the reference 'syscall_ptr' in:" + ], + "start_col": 24, + "start_line": 166 + }, + "While trying to update the implicit return value 'syscall_ptr' in:" + ], + "start_col": 25, + "start_line": 200 + } + }, + "1197": { + "accessible_scopes": [ + "openzeppelin.token.erc721.library", + "openzeppelin.token.erc721.library.ERC721", + "openzeppelin.token.erc721.library.ERC721.approve" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 44, + "end_line": 158, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "parent_location": [ + { + "end_col": 61, + "end_line": 13, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721_owners/decl.cairo" + }, + "parent_location": [ + { + "end_col": 51, + "end_line": 172, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "start_col": 23, + "start_line": 172 + }, + "While trying to retrieve the implicit argument 'pedersen_ptr' in:" + ], + "start_col": 35, + "start_line": 13 + }, + "While expanding the reference 'pedersen_ptr' in:" + ], + "start_col": 18, + "start_line": 158 + } + }, + "1198": { + "accessible_scopes": [ + "openzeppelin.token.erc721.library", + "openzeppelin.token.erc721.library.ERC721", + "openzeppelin.token.erc721.library.ERC721.approve" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 35, + "end_line": 21, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/uint256.cairo" + }, + "parent_location": [ + { + "end_col": 36, + "end_line": 162, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "parent_location": [ + { + "end_col": 78, + "end_line": 13, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721_owners/decl.cairo" + }, + "parent_location": [ + { + "end_col": 51, + "end_line": 172, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "start_col": 23, + "start_line": 172 + }, + "While trying to retrieve the implicit argument 'range_check_ptr' in:" + ], + "start_col": 63, + "start_line": 13 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 13, + "start_line": 162 + }, + "While trying to update the implicit return value 'range_check_ptr' in:" + ], + "start_col": 20, + "start_line": 21 + } + }, + "1199": { + "accessible_scopes": [ + "openzeppelin.token.erc721.library", + "openzeppelin.token.erc721.library.ERC721", + "openzeppelin.token.erc721.library.ERC721.approve" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 36, + "end_line": 159, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "parent_location": [ + { + "end_col": 50, + "end_line": 172, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "start_col": 42, + "start_line": 172 + }, + "While expanding the reference 'token_id' in:" + ], + "start_col": 19, + "start_line": 159 + } + }, + "1200": { + "accessible_scopes": [ + "openzeppelin.token.erc721.library", + "openzeppelin.token.erc721.library.ERC721", + "openzeppelin.token.erc721.library.ERC721.approve" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 36, + "end_line": 159, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "parent_location": [ + { + "end_col": 50, + "end_line": 172, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "start_col": 42, + "start_line": 172 + }, + "While expanding the reference 'token_id' in:" + ], + "start_col": 19, + "start_line": 159 + } + }, + "1201": { + "accessible_scopes": [ + "openzeppelin.token.erc721.library", + "openzeppelin.token.erc721.library.ERC721", + "openzeppelin.token.erc721.library.ERC721.approve" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 51, + "end_line": 172, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "start_col": 23, + "start_line": 172 + } + }, + "1203": { + "accessible_scopes": [ + "openzeppelin.token.erc721.library", + "openzeppelin.token.erc721.library.ERC721", + "openzeppelin.token.erc721.library.ERC721.approve" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 17, + "end_line": 159, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "parent_location": [ + { + "end_col": 39, + "end_line": 174, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "start_col": 37, + "start_line": 174 + }, + "While expanding the reference 'to' in:" + ], + "start_col": 9, + "start_line": 159 + } + }, + "1204": { + "accessible_scopes": [ + "openzeppelin.token.erc721.library", + "openzeppelin.token.erc721.library.ERC721", + "openzeppelin.token.erc721.library.ERC721.approve" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 40, + "end_line": 174, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "start_col": 13, + "start_line": 174 + } + }, + "1206": { + "accessible_scopes": [ + "openzeppelin.token.erc721.library", + "openzeppelin.token.erc721.library.ERC721", + "openzeppelin.token.erc721.library.ERC721.approve" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 28, + "end_line": 179, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "start_col": 13, + "start_line": 179 + } + }, + "1207": { + "accessible_scopes": [ + "openzeppelin.token.erc721.library", + "openzeppelin.token.erc721.library.ERC721", + "openzeppelin.token.erc721.library.ERC721.approve" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 11, + "end_line": 179, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "start_col": 9, + "start_line": 179 + } + }, + "1209": { + "accessible_scopes": [ + "openzeppelin.token.erc721.library", + "openzeppelin.token.erc721.library.ERC721", + "openzeppelin.token.erc721.library.ERC721.approve" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 33, + "end_line": 13, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721_owners/decl.cairo" + }, + "parent_location": [ + { + "end_col": 51, + "end_line": 172, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "parent_location": [ + { + "end_col": 37, + "end_line": 322, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "parent_location": [ + { + "end_col": 35, + "end_line": 180, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "start_col": 13, + "start_line": 180 + }, + "While trying to retrieve the implicit argument 'syscall_ptr' in:" + ], + "start_col": 19, + "start_line": 322 + }, + "While expanding the reference 'syscall_ptr' in:" + ], + "start_col": 23, + "start_line": 172 + }, + "While trying to update the implicit return value 'syscall_ptr' in:" + ], + "start_col": 15, + "start_line": 13 + } + }, + "1210": { + "accessible_scopes": [ + "openzeppelin.token.erc721.library", + "openzeppelin.token.erc721.library.ERC721", + "openzeppelin.token.erc721.library.ERC721.approve" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 61, + "end_line": 13, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721_owners/decl.cairo" + }, + "parent_location": [ + { + "end_col": 51, + "end_line": 172, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "parent_location": [ + { + "end_col": 65, + "end_line": 322, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "parent_location": [ + { + "end_col": 35, + "end_line": 180, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "start_col": 13, + "start_line": 180 + }, + "While trying to retrieve the implicit argument 'pedersen_ptr' in:" + ], + "start_col": 39, + "start_line": 322 + }, + "While expanding the reference 'pedersen_ptr' in:" + ], + "start_col": 23, + "start_line": 172 + }, + "While trying to update the implicit return value 'pedersen_ptr' in:" + ], + "start_col": 35, + "start_line": 13 + } + }, + "1211": { + "accessible_scopes": [ + "openzeppelin.token.erc721.library", + "openzeppelin.token.erc721.library.ERC721", + "openzeppelin.token.erc721.library.ERC721.approve" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 78, + "end_line": 13, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721_owners/decl.cairo" + }, + "parent_location": [ + { + "end_col": 51, + "end_line": 172, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "parent_location": [ + { + "end_col": 82, + "end_line": 322, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "parent_location": [ + { + "end_col": 35, + "end_line": 180, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "start_col": 13, + "start_line": 180 + }, + "While trying to retrieve the implicit argument 'range_check_ptr' in:" + ], + "start_col": 67, + "start_line": 322 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 23, + "start_line": 172 + }, + "While trying to update the implicit return value 'range_check_ptr' in:" + ], + "start_col": 63, + "start_line": 13 + } + }, + "1212": { + "accessible_scopes": [ + "openzeppelin.token.erc721.library", + "openzeppelin.token.erc721.library.ERC721", + "openzeppelin.token.erc721.library.ERC721.approve" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 17, + "end_line": 159, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "parent_location": [ + { + "end_col": 24, + "end_line": 180, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "start_col": 22, + "start_line": 180 + }, + "While expanding the reference 'to' in:" + ], + "start_col": 9, + "start_line": 159 + } + }, + "1213": { + "accessible_scopes": [ + "openzeppelin.token.erc721.library", + "openzeppelin.token.erc721.library.ERC721", + "openzeppelin.token.erc721.library.ERC721.approve" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 36, + "end_line": 159, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "parent_location": [ + { + "end_col": 34, + "end_line": 180, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "start_col": 26, + "start_line": 180 + }, + "While expanding the reference 'token_id' in:" + ], + "start_col": 19, + "start_line": 159 + } + }, + "1214": { + "accessible_scopes": [ + "openzeppelin.token.erc721.library", + "openzeppelin.token.erc721.library.ERC721", + "openzeppelin.token.erc721.library.ERC721.approve" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 36, + "end_line": 159, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "parent_location": [ + { + "end_col": 34, + "end_line": 180, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "start_col": 26, + "start_line": 180 + }, + "While expanding the reference 'token_id' in:" + ], + "start_col": 19, + "start_line": 159 + } + }, + "1215": { + "accessible_scopes": [ + "openzeppelin.token.erc721.library", + "openzeppelin.token.erc721.library.ERC721", + "openzeppelin.token.erc721.library.ERC721.approve" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 35, + "end_line": 180, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "start_col": 13, + "start_line": 180 + } + }, + "1217": { + "accessible_scopes": [ + "openzeppelin.token.erc721.library", + "openzeppelin.token.erc721.library.ERC721", + "openzeppelin.token.erc721.library.ERC721.approve" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 65, + "end_line": 322, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "parent_location": [ + { + "end_col": 35, + "end_line": 180, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "parent_location": [ + { + "end_col": 44, + "end_line": 158, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "parent_location": [ + { + "end_col": 23, + "end_line": 181, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "start_col": 13, + "start_line": 181 + }, + "While trying to retrieve the implicit argument 'pedersen_ptr' in:" + ], + "start_col": 18, + "start_line": 158 + }, + "While expanding the reference 'pedersen_ptr' in:" + ], + "start_col": 13, + "start_line": 180 + }, + "While trying to update the implicit return value 'pedersen_ptr' in:" + ], + "start_col": 39, + "start_line": 322 + } + }, + "1218": { + "accessible_scopes": [ + "openzeppelin.token.erc721.library", + "openzeppelin.token.erc721.library.ERC721", + "openzeppelin.token.erc721.library.ERC721.approve" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 37, + "end_line": 322, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "parent_location": [ + { + "end_col": 35, + "end_line": 180, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "parent_location": [ + { + "end_col": 64, + "end_line": 158, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "parent_location": [ + { + "end_col": 23, + "end_line": 181, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "start_col": 13, + "start_line": 181 + }, + "While trying to retrieve the implicit argument 'syscall_ptr' in:" + ], + "start_col": 46, + "start_line": 158 + }, + "While expanding the reference 'syscall_ptr' in:" + ], + "start_col": 13, + "start_line": 180 + }, + "While trying to update the implicit return value 'syscall_ptr' in:" + ], + "start_col": 19, + "start_line": 322 + } + }, + "1219": { + "accessible_scopes": [ + "openzeppelin.token.erc721.library", + "openzeppelin.token.erc721.library.ERC721", + "openzeppelin.token.erc721.library.ERC721.approve" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 82, + "end_line": 322, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "parent_location": [ + { + "end_col": 35, + "end_line": 180, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "parent_location": [ + { + "end_col": 81, + "end_line": 158, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "parent_location": [ + { + "end_col": 23, + "end_line": 181, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "start_col": 13, + "start_line": 181 + }, + "While trying to retrieve the implicit argument 'range_check_ptr' in:" + ], + "start_col": 66, + "start_line": 158 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 13, + "start_line": 180 + }, + "While trying to update the implicit return value 'range_check_ptr' in:" + ], + "start_col": 67, + "start_line": 322 + } + }, + "1220": { + "accessible_scopes": [ + "openzeppelin.token.erc721.library", + "openzeppelin.token.erc721.library.ERC721", + "openzeppelin.token.erc721.library.ERC721.approve" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 23, + "end_line": 181, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "start_col": 13, + "start_line": 181 + } + }, + "1221": { + "accessible_scopes": [ + "openzeppelin.token.erc721.library", + "openzeppelin.token.erc721.library.ERC721", + "openzeppelin.token.erc721.library.ERC721.approve" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 33, + "end_line": 13, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721_owners/decl.cairo" + }, + "parent_location": [ + { + "end_col": 51, + "end_line": 172, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "parent_location": [ + { + "end_col": 33, + "end_line": 15, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721_operator_approvals/decl.cairo" + }, + "parent_location": [ + { + "end_col": 78, + "end_line": 183, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "start_col": 33, + "start_line": 183 + }, + "While trying to retrieve the implicit argument 'syscall_ptr' in:" + ], + "start_col": 15, + "start_line": 15 + }, + "While expanding the reference 'syscall_ptr' in:" + ], + "start_col": 23, + "start_line": 172 + }, + "While trying to update the implicit return value 'syscall_ptr' in:" + ], + "start_col": 15, + "start_line": 13 + } + }, + "1222": { + "accessible_scopes": [ + "openzeppelin.token.erc721.library", + "openzeppelin.token.erc721.library.ERC721", + "openzeppelin.token.erc721.library.ERC721.approve" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 61, + "end_line": 13, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721_owners/decl.cairo" + }, + "parent_location": [ + { + "end_col": 51, + "end_line": 172, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "parent_location": [ + { + "end_col": 61, + "end_line": 15, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721_operator_approvals/decl.cairo" + }, + "parent_location": [ + { + "end_col": 78, + "end_line": 183, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "start_col": 33, + "start_line": 183 + }, + "While trying to retrieve the implicit argument 'pedersen_ptr' in:" + ], + "start_col": 35, + "start_line": 15 + }, + "While expanding the reference 'pedersen_ptr' in:" + ], + "start_col": 23, + "start_line": 172 + }, + "While trying to update the implicit return value 'pedersen_ptr' in:" + ], + "start_col": 35, + "start_line": 13 + } + }, + "1223": { + "accessible_scopes": [ + "openzeppelin.token.erc721.library", + "openzeppelin.token.erc721.library.ERC721", + "openzeppelin.token.erc721.library.ERC721.approve" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 78, + "end_line": 13, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721_owners/decl.cairo" + }, + "parent_location": [ + { + "end_col": 51, + "end_line": 172, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "parent_location": [ + { + "end_col": 78, + "end_line": 15, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721_operator_approvals/decl.cairo" + }, + "parent_location": [ + { + "end_col": 78, + "end_line": 183, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "start_col": 33, + "start_line": 183 + }, + "While trying to retrieve the implicit argument 'range_check_ptr' in:" + ], + "start_col": 63, + "start_line": 15 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 23, + "start_line": 172 + }, + "While trying to update the implicit return value 'range_check_ptr' in:" + ], + "start_col": 63, + "start_line": 13 + } + }, + "1224": { + "accessible_scopes": [ + "openzeppelin.token.erc721.library", + "openzeppelin.token.erc721.library.ERC721", + "openzeppelin.token.erc721.library.ERC721.approve" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 19, + "end_line": 172, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "parent_location": [ + { + "end_col": 69, + "end_line": 183, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "start_col": 64, + "start_line": 183 + }, + "While expanding the reference 'owner' in:" + ], + "start_col": 14, + "start_line": 172 + } + }, + "1225": { + "accessible_scopes": [ + "openzeppelin.token.erc721.library", + "openzeppelin.token.erc721.library.ERC721", + "openzeppelin.token.erc721.library.ERC721.approve" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 20, + "end_line": 166, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "parent_location": [ + { + "end_col": 77, + "end_line": 183, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "start_col": 71, + "start_line": 183 + }, + "While expanding the reference 'caller' in:" + ], + "start_col": 14, + "start_line": 166 + } + }, + "1226": { + "accessible_scopes": [ + "openzeppelin.token.erc721.library", + "openzeppelin.token.erc721.library.ERC721", + "openzeppelin.token.erc721.library.ERC721.approve" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 78, + "end_line": 183, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "start_col": 33, + "start_line": 183 + } + }, + "1228": { + "accessible_scopes": [ + "openzeppelin.token.erc721.library", + "openzeppelin.token.erc721.library.ERC721", + "openzeppelin.token.erc721.library.ERC721.approve" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 45, + "end_line": 185, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "start_col": 17, + "start_line": 185 + } + }, + "1230": { + "accessible_scopes": [ + "openzeppelin.token.erc721.library", + "openzeppelin.token.erc721.library.ERC721", + "openzeppelin.token.erc721.library.ERC721.approve" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 33, + "end_line": 15, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721_operator_approvals/decl.cairo" + }, + "parent_location": [ + { + "end_col": 78, + "end_line": 183, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "parent_location": [ + { + "end_col": 37, + "end_line": 322, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "parent_location": [ + { + "end_col": 35, + "end_line": 187, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "start_col": 13, + "start_line": 187 + }, + "While trying to retrieve the implicit argument 'syscall_ptr' in:" + ], + "start_col": 19, + "start_line": 322 + }, + "While expanding the reference 'syscall_ptr' in:" + ], + "start_col": 33, + "start_line": 183 + }, + "While trying to update the implicit return value 'syscall_ptr' in:" + ], + "start_col": 15, + "start_line": 15 + } + }, + "1231": { + "accessible_scopes": [ + "openzeppelin.token.erc721.library", + "openzeppelin.token.erc721.library.ERC721", + "openzeppelin.token.erc721.library.ERC721.approve" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 61, + "end_line": 15, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721_operator_approvals/decl.cairo" + }, + "parent_location": [ + { + "end_col": 78, + "end_line": 183, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "parent_location": [ + { + "end_col": 65, + "end_line": 322, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "parent_location": [ + { + "end_col": 35, + "end_line": 187, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "start_col": 13, + "start_line": 187 + }, + "While trying to retrieve the implicit argument 'pedersen_ptr' in:" + ], + "start_col": 39, + "start_line": 322 + }, + "While expanding the reference 'pedersen_ptr' in:" + ], + "start_col": 33, + "start_line": 183 + }, + "While trying to update the implicit return value 'pedersen_ptr' in:" + ], + "start_col": 35, + "start_line": 15 + } + }, + "1232": { + "accessible_scopes": [ + "openzeppelin.token.erc721.library", + "openzeppelin.token.erc721.library.ERC721", + "openzeppelin.token.erc721.library.ERC721.approve" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 78, + "end_line": 15, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721_operator_approvals/decl.cairo" + }, + "parent_location": [ + { + "end_col": 78, + "end_line": 183, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "parent_location": [ + { + "end_col": 82, + "end_line": 322, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "parent_location": [ + { + "end_col": 35, + "end_line": 187, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "start_col": 13, + "start_line": 187 + }, + "While trying to retrieve the implicit argument 'range_check_ptr' in:" + ], + "start_col": 67, + "start_line": 322 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 33, + "start_line": 183 + }, + "While trying to update the implicit return value 'range_check_ptr' in:" + ], + "start_col": 63, + "start_line": 15 + } + }, + "1233": { + "accessible_scopes": [ + "openzeppelin.token.erc721.library", + "openzeppelin.token.erc721.library.ERC721", + "openzeppelin.token.erc721.library.ERC721.approve" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 17, + "end_line": 159, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "parent_location": [ + { + "end_col": 24, + "end_line": 187, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "start_col": 22, + "start_line": 187 + }, + "While expanding the reference 'to' in:" + ], + "start_col": 9, + "start_line": 159 + } + }, + "1234": { + "accessible_scopes": [ + "openzeppelin.token.erc721.library", + "openzeppelin.token.erc721.library.ERC721", + "openzeppelin.token.erc721.library.ERC721.approve" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 36, + "end_line": 159, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "parent_location": [ + { + "end_col": 34, + "end_line": 187, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "start_col": 26, + "start_line": 187 + }, + "While expanding the reference 'token_id' in:" + ], + "start_col": 19, + "start_line": 159 + } + }, + "1235": { + "accessible_scopes": [ + "openzeppelin.token.erc721.library", + "openzeppelin.token.erc721.library.ERC721", + "openzeppelin.token.erc721.library.ERC721.approve" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 36, + "end_line": 159, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "parent_location": [ + { + "end_col": 34, + "end_line": 187, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "start_col": 26, + "start_line": 187 + }, + "While expanding the reference 'token_id' in:" + ], + "start_col": 19, + "start_line": 159 + } + }, + "1236": { + "accessible_scopes": [ + "openzeppelin.token.erc721.library", + "openzeppelin.token.erc721.library.ERC721", + "openzeppelin.token.erc721.library.ERC721.approve" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 35, + "end_line": 187, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "start_col": 13, + "start_line": 187 + } + }, + "1238": { + "accessible_scopes": [ + "openzeppelin.token.erc721.library", + "openzeppelin.token.erc721.library.ERC721", + "openzeppelin.token.erc721.library.ERC721.approve" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 65, + "end_line": 322, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "parent_location": [ + { + "end_col": 35, + "end_line": 187, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "parent_location": [ + { + "end_col": 44, + "end_line": 158, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "parent_location": [ + { + "end_col": 23, + "end_line": 188, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "start_col": 13, + "start_line": 188 + }, + "While trying to retrieve the implicit argument 'pedersen_ptr' in:" + ], + "start_col": 18, + "start_line": 158 + }, + "While expanding the reference 'pedersen_ptr' in:" + ], + "start_col": 13, + "start_line": 187 + }, + "While trying to update the implicit return value 'pedersen_ptr' in:" + ], + "start_col": 39, + "start_line": 322 + } + }, + "1239": { + "accessible_scopes": [ + "openzeppelin.token.erc721.library", + "openzeppelin.token.erc721.library.ERC721", + "openzeppelin.token.erc721.library.ERC721.approve" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 37, + "end_line": 322, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "parent_location": [ + { + "end_col": 35, + "end_line": 187, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "parent_location": [ + { + "end_col": 64, + "end_line": 158, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "parent_location": [ + { + "end_col": 23, + "end_line": 188, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "start_col": 13, + "start_line": 188 + }, + "While trying to retrieve the implicit argument 'syscall_ptr' in:" + ], + "start_col": 46, + "start_line": 158 + }, + "While expanding the reference 'syscall_ptr' in:" + ], + "start_col": 13, + "start_line": 187 + }, + "While trying to update the implicit return value 'syscall_ptr' in:" + ], + "start_col": 19, + "start_line": 322 + } + }, + "1240": { + "accessible_scopes": [ + "openzeppelin.token.erc721.library", + "openzeppelin.token.erc721.library.ERC721", + "openzeppelin.token.erc721.library.ERC721.approve" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 82, + "end_line": 322, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "parent_location": [ + { + "end_col": 35, + "end_line": 187, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "parent_location": [ + { + "end_col": 81, + "end_line": 158, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "parent_location": [ + { + "end_col": 23, + "end_line": 188, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "start_col": 13, + "start_line": 188 + }, + "While trying to retrieve the implicit argument 'range_check_ptr' in:" + ], + "start_col": 66, + "start_line": 158 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 13, + "start_line": 187 + }, + "While trying to update the implicit return value 'range_check_ptr' in:" + ], + "start_col": 67, + "start_line": 322 + } + }, + "1241": { + "accessible_scopes": [ + "openzeppelin.token.erc721.library", + "openzeppelin.token.erc721.library.ERC721", + "openzeppelin.token.erc721.library.ERC721.approve" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 23, + "end_line": 188, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "start_col": 13, + "start_line": 188 + } + }, + "1242": { + "accessible_scopes": [ + "openzeppelin.token.erc721.library", + "openzeppelin.token.erc721.library.ERC721", + "openzeppelin.token.erc721.library.ERC721.set_approval_for_all" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 49, + "end_line": 192, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "parent_location": [ + { + "end_col": 43, + "end_line": 200, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/starknet/common/syscalls.cairo" + }, + "parent_location": [ + { + "end_col": 44, + "end_line": 196, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "start_col": 24, + "start_line": 196 + }, + "While trying to retrieve the implicit argument 'syscall_ptr' in:" + ], + "start_col": 25, + "start_line": 200 + }, + "While expanding the reference 'syscall_ptr' in:" + ], + "start_col": 31, + "start_line": 192 + } + }, + "1243": { + "accessible_scopes": [ + "openzeppelin.token.erc721.library", + "openzeppelin.token.erc721.library.ERC721", + "openzeppelin.token.erc721.library.ERC721.set_approval_for_all" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 44, + "end_line": 196, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "start_col": 24, + "start_line": 196 + } + }, + "1245": { + "accessible_scopes": [ + "openzeppelin.token.erc721.library", + "openzeppelin.token.erc721.library.ERC721", + "openzeppelin.token.erc721.library.ERC721.set_approval_for_all" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 46, + "end_line": 198, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "start_col": 29, + "start_line": 198 + } + }, + "1246": { + "accessible_scopes": [ + "openzeppelin.token.erc721.library", + "openzeppelin.token.erc721.library.ERC721", + "openzeppelin.token.erc721.library.ERC721.set_approval_for_all" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 47, + "end_line": 198, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "start_col": 13, + "start_line": 198 + } + }, + "1248": { + "accessible_scopes": [ + "openzeppelin.token.erc721.library", + "openzeppelin.token.erc721.library.ERC721", + "openzeppelin.token.erc721.library.ERC721.set_approval_for_all" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 20, + "end_line": 196, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "parent_location": [ + { + "end_col": 36, + "end_line": 207, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "start_col": 30, + "start_line": 207 + }, + "While expanding the reference 'caller' in:" + ], + "start_col": 14, + "start_line": 196 + } + }, + "1249": { + "accessible_scopes": [ + "openzeppelin.token.erc721.library", + "openzeppelin.token.erc721.library.ERC721", + "openzeppelin.token.erc721.library.ERC721.set_approval_for_all" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 23, + "end_line": 193, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "parent_location": [ + { + "end_col": 46, + "end_line": 207, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "start_col": 38, + "start_line": 207 + }, + "While expanding the reference 'operator' in:" + ], + "start_col": 9, + "start_line": 193 + } + }, + "1250": { + "accessible_scopes": [ + "openzeppelin.token.erc721.library", + "openzeppelin.token.erc721.library.ERC721", + "openzeppelin.token.erc721.library.ERC721.set_approval_for_all" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 47, + "end_line": 207, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "start_col": 13, + "start_line": 207 + } + }, + "1252": { + "accessible_scopes": [ + "openzeppelin.token.erc721.library", + "openzeppelin.token.erc721.library.ERC721", + "openzeppelin.token.erc721.library.ERC721.set_approval_for_all" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 33, + "end_line": 212, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "start_col": 32, + "start_line": 212 + } + }, + "1254": { + "accessible_scopes": [ + "openzeppelin.token.erc721.library", + "openzeppelin.token.erc721.library.ERC721", + "openzeppelin.token.erc721.library.ERC721.set_approval_for_all" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 44, + "end_line": 212, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "start_col": 32, + "start_line": 212 + } + }, + "1255": { + "accessible_scopes": [ + "openzeppelin.token.erc721.library", + "openzeppelin.token.erc721.library.ERC721", + "openzeppelin.token.erc721.library.ERC721.set_approval_for_all" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 49, + "end_line": 212, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "start_col": 48, + "start_line": 212 + } + }, + "1257": { + "accessible_scopes": [ + "openzeppelin.token.erc721.library", + "openzeppelin.token.erc721.library.ERC721", + "openzeppelin.token.erc721.library.ERC721.set_approval_for_all" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 50, + "end_line": 212, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "start_col": 13, + "start_line": 212 + } + }, + "1258": { + "accessible_scopes": [ + "openzeppelin.token.erc721.library", + "openzeppelin.token.erc721.library.ERC721", + "openzeppelin.token.erc721.library.ERC721.set_approval_for_all" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 43, + "end_line": 200, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/starknet/common/syscalls.cairo" + }, + "parent_location": [ + { + "end_col": 44, + "end_line": 196, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "parent_location": [ + { + "end_col": 34, + "end_line": 23, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721_operator_approvals/decl.cairo" + }, + "parent_location": [ + { + "end_col": 89, + "end_line": 215, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "start_col": 9, + "start_line": 215 + }, + "While trying to retrieve the implicit argument 'syscall_ptr' in:" + ], + "start_col": 16, + "start_line": 23 + }, + "While expanding the reference 'syscall_ptr' in:" + ], + "start_col": 24, + "start_line": 196 + }, + "While trying to update the implicit return value 'syscall_ptr' in:" + ], + "start_col": 25, + "start_line": 200 + } + }, + "1259": { + "accessible_scopes": [ + "openzeppelin.token.erc721.library", + "openzeppelin.token.erc721.library.ERC721", + "openzeppelin.token.erc721.library.ERC721.set_approval_for_all" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 77, + "end_line": 192, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "parent_location": [ + { + "end_col": 62, + "end_line": 23, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721_operator_approvals/decl.cairo" + }, + "parent_location": [ + { + "end_col": 89, + "end_line": 215, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "start_col": 9, + "start_line": 215 + }, + "While trying to retrieve the implicit argument 'pedersen_ptr' in:" + ], + "start_col": 36, + "start_line": 23 + }, + "While expanding the reference 'pedersen_ptr' in:" + ], + "start_col": 51, + "start_line": 192 + } + }, + "1260": { + "accessible_scopes": [ + "openzeppelin.token.erc721.library", + "openzeppelin.token.erc721.library.ERC721", + "openzeppelin.token.erc721.library.ERC721.set_approval_for_all" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 94, + "end_line": 192, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "parent_location": [ + { + "end_col": 79, + "end_line": 23, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721_operator_approvals/decl.cairo" + }, + "parent_location": [ + { + "end_col": 89, + "end_line": 215, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "start_col": 9, + "start_line": 215 + }, + "While trying to retrieve the implicit argument 'range_check_ptr' in:" + ], + "start_col": 64, + "start_line": 23 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 79, + "start_line": 192 + } + }, + "1261": { + "accessible_scopes": [ + "openzeppelin.token.erc721.library", + "openzeppelin.token.erc721.library.ERC721", + "openzeppelin.token.erc721.library.ERC721.set_approval_for_all" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 20, + "end_line": 196, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "parent_location": [ + { + "end_col": 53, + "end_line": 215, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "start_col": 47, + "start_line": 215 + }, + "While expanding the reference 'caller' in:" + ], + "start_col": 14, + "start_line": 196 + } + }, + "1262": { + "accessible_scopes": [ + "openzeppelin.token.erc721.library", + "openzeppelin.token.erc721.library.ERC721", + "openzeppelin.token.erc721.library.ERC721.set_approval_for_all" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 23, + "end_line": 193, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "parent_location": [ + { + "end_col": 72, + "end_line": 215, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "start_col": 64, + "start_line": 215 + }, + "While expanding the reference 'operator' in:" + ], + "start_col": 9, + "start_line": 193 + } + }, + "1263": { + "accessible_scopes": [ + "openzeppelin.token.erc721.library", + "openzeppelin.token.erc721.library.ERC721", + "openzeppelin.token.erc721.library.ERC721.set_approval_for_all" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 39, + "end_line": 193, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "parent_location": [ + { + "end_col": 88, + "end_line": 215, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "start_col": 80, + "start_line": 215 + }, + "While expanding the reference 'approved' in:" + ], + "start_col": 25, + "start_line": 193 + } + }, + "1264": { + "accessible_scopes": [ + "openzeppelin.token.erc721.library", + "openzeppelin.token.erc721.library.ERC721", + "openzeppelin.token.erc721.library.ERC721.set_approval_for_all" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 89, + "end_line": 215, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "start_col": 9, + "start_line": 215 + } + }, + "1266": { + "accessible_scopes": [ + "openzeppelin.token.erc721.library", + "openzeppelin.token.erc721.library.ERC721", + "openzeppelin.token.erc721.library.ERC721.set_approval_for_all" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 34, + "end_line": 23, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721_operator_approvals/decl.cairo" + }, + "parent_location": [ + { + "end_col": 89, + "end_line": 215, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "parent_location": [ + { + "end_col": 29, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/event/ApprovalForAll/a7a8ae41be29ac9f4f6c3b7837c448d787ca051dd1ade98f409e54d33d112504.cairo" + }, + "parent_location": [ + { + "end_col": 20, + "end_line": 36, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "parent_location": [ + { + "end_col": 56, + "end_line": 216, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "start_col": 9, + "start_line": 216 + }, + "While trying to retrieve the implicit argument 'syscall_ptr' in:" + ], + "start_col": 6, + "start_line": 36 + }, + "While handling event:" + ], + "start_col": 11, + "start_line": 1 + }, + "While expanding the reference 'syscall_ptr' in:" + ], + "start_col": 9, + "start_line": 215 + }, + "While trying to update the implicit return value 'syscall_ptr' in:" + ], + "start_col": 16, + "start_line": 23 + } + }, + "1267": { + "accessible_scopes": [ + "openzeppelin.token.erc721.library", + "openzeppelin.token.erc721.library.ERC721", + "openzeppelin.token.erc721.library.ERC721.set_approval_for_all" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 79, + "end_line": 23, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721_operator_approvals/decl.cairo" + }, + "parent_location": [ + { + "end_col": 89, + "end_line": 215, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "parent_location": [ + { + "end_col": 46, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/event/ApprovalForAll/a7a8ae41be29ac9f4f6c3b7837c448d787ca051dd1ade98f409e54d33d112504.cairo" + }, + "parent_location": [ + { + "end_col": 20, + "end_line": 36, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "parent_location": [ + { + "end_col": 56, + "end_line": 216, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "start_col": 9, + "start_line": 216 + }, + "While trying to retrieve the implicit argument 'range_check_ptr' in:" + ], + "start_col": 6, + "start_line": 36 + }, + "While handling event:" + ], + "start_col": 31, + "start_line": 1 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 9, + "start_line": 215 + }, + "While trying to update the implicit return value 'range_check_ptr' in:" + ], + "start_col": 64, + "start_line": 23 + } + }, + "1268": { + "accessible_scopes": [ + "openzeppelin.token.erc721.library", + "openzeppelin.token.erc721.library.ERC721", + "openzeppelin.token.erc721.library.ERC721.set_approval_for_all" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 20, + "end_line": 196, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "parent_location": [ + { + "end_col": 35, + "end_line": 216, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "start_col": 29, + "start_line": 216 + }, + "While expanding the reference 'caller' in:" + ], + "start_col": 14, + "start_line": 196 + } + }, + "1269": { + "accessible_scopes": [ + "openzeppelin.token.erc721.library", + "openzeppelin.token.erc721.library.ERC721", + "openzeppelin.token.erc721.library.ERC721.set_approval_for_all" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 23, + "end_line": 193, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "parent_location": [ + { + "end_col": 45, + "end_line": 216, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "start_col": 37, + "start_line": 216 + }, + "While expanding the reference 'operator' in:" + ], + "start_col": 9, + "start_line": 193 + } + }, + "1270": { + "accessible_scopes": [ + "openzeppelin.token.erc721.library", + "openzeppelin.token.erc721.library.ERC721", + "openzeppelin.token.erc721.library.ERC721.set_approval_for_all" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 39, + "end_line": 193, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "parent_location": [ + { + "end_col": 55, + "end_line": 216, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "start_col": 47, + "start_line": 216 + }, + "While expanding the reference 'approved' in:" + ], + "start_col": 25, + "start_line": 193 + } + }, + "1271": { + "accessible_scopes": [ + "openzeppelin.token.erc721.library", + "openzeppelin.token.erc721.library.ERC721", + "openzeppelin.token.erc721.library.ERC721.set_approval_for_all" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 56, + "end_line": 216, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "start_col": 9, + "start_line": 216 + } + }, + "1273": { + "accessible_scopes": [ + "openzeppelin.token.erc721.library", + "openzeppelin.token.erc721.library.ERC721", + "openzeppelin.token.erc721.library.ERC721.set_approval_for_all" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 29, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/event/ApprovalForAll/a7a8ae41be29ac9f4f6c3b7837c448d787ca051dd1ade98f409e54d33d112504.cairo" + }, + "parent_location": [ + { + "end_col": 20, + "end_line": 36, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "parent_location": [ + { + "end_col": 56, + "end_line": 216, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "parent_location": [ + { + "end_col": 49, + "end_line": 192, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "parent_location": [ + { + "end_col": 19, + "end_line": 217, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "start_col": 9, + "start_line": 217 + }, + "While trying to retrieve the implicit argument 'syscall_ptr' in:" + ], + "start_col": 31, + "start_line": 192 + }, + "While expanding the reference 'syscall_ptr' in:" + ], + "start_col": 9, + "start_line": 216 + }, + "While trying to update the implicit return value 'syscall_ptr' in:" + ], + "start_col": 6, + "start_line": 36 + }, + "While handling event:" + ], + "start_col": 11, + "start_line": 1 + } + }, + "1274": { + "accessible_scopes": [ + "openzeppelin.token.erc721.library", + "openzeppelin.token.erc721.library.ERC721", + "openzeppelin.token.erc721.library.ERC721.set_approval_for_all" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 62, + "end_line": 23, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721_operator_approvals/decl.cairo" + }, + "parent_location": [ + { + "end_col": 89, + "end_line": 215, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "parent_location": [ + { + "end_col": 77, + "end_line": 192, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "parent_location": [ + { + "end_col": 19, + "end_line": 217, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "start_col": 9, + "start_line": 217 + }, + "While trying to retrieve the implicit argument 'pedersen_ptr' in:" + ], + "start_col": 51, + "start_line": 192 + }, + "While expanding the reference 'pedersen_ptr' in:" + ], + "start_col": 9, + "start_line": 215 + }, + "While trying to update the implicit return value 'pedersen_ptr' in:" + ], + "start_col": 36, + "start_line": 23 + } + }, + "1275": { + "accessible_scopes": [ + "openzeppelin.token.erc721.library", + "openzeppelin.token.erc721.library.ERC721", + "openzeppelin.token.erc721.library.ERC721.set_approval_for_all" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 46, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/event/ApprovalForAll/a7a8ae41be29ac9f4f6c3b7837c448d787ca051dd1ade98f409e54d33d112504.cairo" + }, + "parent_location": [ + { + "end_col": 20, + "end_line": 36, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "parent_location": [ + { + "end_col": 56, + "end_line": 216, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "parent_location": [ + { + "end_col": 94, + "end_line": 192, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "parent_location": [ + { + "end_col": 19, + "end_line": 217, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "start_col": 9, + "start_line": 217 + }, + "While trying to retrieve the implicit argument 'range_check_ptr' in:" + ], + "start_col": 79, + "start_line": 192 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 9, + "start_line": 216 + }, + "While trying to update the implicit return value 'range_check_ptr' in:" + ], + "start_col": 6, + "start_line": 36 + }, + "While handling event:" + ], + "start_col": 31, + "start_line": 1 + } + }, + "1276": { + "accessible_scopes": [ + "openzeppelin.token.erc721.library", + "openzeppelin.token.erc721.library.ERC721", + "openzeppelin.token.erc721.library.ERC721.set_approval_for_all" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 19, + "end_line": 217, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "start_col": 9, + "start_line": 217 + } + }, + "1277": { + "accessible_scopes": [ + "openzeppelin.token.erc721.library", + "openzeppelin.token.erc721.library.ERC721", + "openzeppelin.token.erc721.library.ERC721.transfer_from" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 22, + "end_line": 223, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "start_col": 9, + "start_line": 223 + } + }, + "1279": { + "accessible_scopes": [ + "openzeppelin.token.erc721.library", + "openzeppelin.token.erc721.library.ERC721", + "openzeppelin.token.erc721.library.ERC721.transfer_from" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 87, + "end_line": 220, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "parent_location": [ + { + "end_col": 35, + "end_line": 21, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/uint256.cairo" + }, + "parent_location": [ + { + "end_col": 36, + "end_line": 225, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "start_col": 13, + "start_line": 225 + }, + "While trying to retrieve the implicit argument 'range_check_ptr' in:" + ], + "start_col": 20, + "start_line": 21 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 72, + "start_line": 220 + } + }, + "1280": { + "accessible_scopes": [ + "openzeppelin.token.erc721.library", + "openzeppelin.token.erc721.library.ERC721", + "openzeppelin.token.erc721.library.ERC721.transfer_from" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 49, + "end_line": 221, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "parent_location": [ + { + "end_col": 35, + "end_line": 225, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "start_col": 27, + "start_line": 225 + }, + "While expanding the reference 'token_id' in:" + ], + "start_col": 32, + "start_line": 221 + } + }, + "1281": { + "accessible_scopes": [ + "openzeppelin.token.erc721.library", + "openzeppelin.token.erc721.library.ERC721", + "openzeppelin.token.erc721.library.ERC721.transfer_from" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 49, + "end_line": 221, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "parent_location": [ + { + "end_col": 35, + "end_line": 225, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "start_col": 27, + "start_line": 225 + }, + "While expanding the reference 'token_id' in:" + ], + "start_col": 32, + "start_line": 221 + } + }, + "1282": { + "accessible_scopes": [ + "openzeppelin.token.erc721.library", + "openzeppelin.token.erc721.library.ERC721", + "openzeppelin.token.erc721.library.ERC721.transfer_from" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 36, + "end_line": 225, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "start_col": 13, + "start_line": 225 + } + }, + "1284": { + "accessible_scopes": [ + "openzeppelin.token.erc721.library", + "openzeppelin.token.erc721.library.ERC721", + "openzeppelin.token.erc721.library.ERC721.transfer_from" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 70, + "end_line": 220, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "parent_location": [ + { + "end_col": 43, + "end_line": 200, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/starknet/common/syscalls.cairo" + }, + "parent_location": [ + { + "end_col": 44, + "end_line": 227, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "start_col": 24, + "start_line": 227 + }, + "While trying to retrieve the implicit argument 'syscall_ptr' in:" + ], + "start_col": 25, + "start_line": 200 + }, + "While expanding the reference 'syscall_ptr' in:" + ], + "start_col": 52, + "start_line": 220 + } + }, + "1285": { + "accessible_scopes": [ + "openzeppelin.token.erc721.library", + "openzeppelin.token.erc721.library.ERC721", + "openzeppelin.token.erc721.library.ERC721.transfer_from" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 44, + "end_line": 227, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "start_col": 24, + "start_line": 227 + } + }, + "1287": { + "accessible_scopes": [ + "openzeppelin.token.erc721.library", + "openzeppelin.token.erc721.library.ERC721", + "openzeppelin.token.erc721.library.ERC721.transfer_from" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 20, + "end_line": 227, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "parent_location": [ + { + "end_col": 20, + "end_line": 227, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "start_col": 14, + "start_line": 227 + }, + "While auto generating local variable for 'caller'." + ], + "start_col": 14, + "start_line": 227 + } + }, + "1288": { + "accessible_scopes": [ + "openzeppelin.token.erc721.library", + "openzeppelin.token.erc721.library.ERC721", + "openzeppelin.token.erc721.library.ERC721.transfer_from" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 50, + "end_line": 220, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "parent_location": [ + { + "end_col": 58, + "end_line": 283, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "parent_location": [ + { + "end_col": 66, + "end_line": 228, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "start_col": 27, + "start_line": 228 + }, + "While trying to retrieve the implicit argument 'pedersen_ptr' in:" + ], + "start_col": 32, + "start_line": 283 + }, + "While expanding the reference 'pedersen_ptr' in:" + ], + "start_col": 24, + "start_line": 220 + } + }, + "1289": { + "accessible_scopes": [ + "openzeppelin.token.erc721.library", + "openzeppelin.token.erc721.library.ERC721", + "openzeppelin.token.erc721.library.ERC721.transfer_from" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 43, + "end_line": 200, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/starknet/common/syscalls.cairo" + }, + "parent_location": [ + { + "end_col": 44, + "end_line": 227, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "parent_location": [ + { + "end_col": 78, + "end_line": 283, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "parent_location": [ + { + "end_col": 66, + "end_line": 228, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "start_col": 27, + "start_line": 228 + }, + "While trying to retrieve the implicit argument 'syscall_ptr' in:" + ], + "start_col": 60, + "start_line": 283 + }, + "While expanding the reference 'syscall_ptr' in:" + ], + "start_col": 24, + "start_line": 227 + }, + "While trying to update the implicit return value 'syscall_ptr' in:" + ], + "start_col": 25, + "start_line": 200 + } + }, + "1290": { + "accessible_scopes": [ + "openzeppelin.token.erc721.library", + "openzeppelin.token.erc721.library.ERC721", + "openzeppelin.token.erc721.library.ERC721.transfer_from" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 35, + "end_line": 21, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/uint256.cairo" + }, + "parent_location": [ + { + "end_col": 36, + "end_line": 225, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "parent_location": [ + { + "end_col": 95, + "end_line": 283, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "parent_location": [ + { + "end_col": 66, + "end_line": 228, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "start_col": 27, + "start_line": 228 + }, + "While trying to retrieve the implicit argument 'range_check_ptr' in:" + ], + "start_col": 80, + "start_line": 283 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 13, + "start_line": 225 + }, + "While trying to update the implicit return value 'range_check_ptr' in:" + ], + "start_col": 20, + "start_line": 21 + } + }, + "1291": { + "accessible_scopes": [ + "openzeppelin.token.erc721.library", + "openzeppelin.token.erc721.library.ERC721", + "openzeppelin.token.erc721.library.ERC721.transfer_from" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 20, + "end_line": 227, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "parent_location": [ + { + "end_col": 20, + "end_line": 227, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "parent_location": [ + { + "end_col": 55, + "end_line": 228, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "start_col": 49, + "start_line": 228 + }, + "While expanding the reference 'caller' in:" + ], + "start_col": 14, + "start_line": 227 + }, + "While auto generating local variable for 'caller'." + ], + "start_col": 14, + "start_line": 227 + } + }, + "1292": { + "accessible_scopes": [ + "openzeppelin.token.erc721.library", + "openzeppelin.token.erc721.library.ERC721", + "openzeppelin.token.erc721.library.ERC721.transfer_from" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 49, + "end_line": 221, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "parent_location": [ + { + "end_col": 65, + "end_line": 228, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "start_col": 57, + "start_line": 228 + }, + "While expanding the reference 'token_id' in:" + ], + "start_col": 32, + "start_line": 221 + } + }, + "1293": { + "accessible_scopes": [ + "openzeppelin.token.erc721.library", + "openzeppelin.token.erc721.library.ERC721", + "openzeppelin.token.erc721.library.ERC721.transfer_from" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 49, + "end_line": 221, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "parent_location": [ + { + "end_col": 65, + "end_line": 228, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "start_col": 57, + "start_line": 228 + }, + "While expanding the reference 'token_id' in:" + ], + "start_col": 32, + "start_line": 221 + } + }, + "1294": { + "accessible_scopes": [ + "openzeppelin.token.erc721.library", + "openzeppelin.token.erc721.library.ERC721", + "openzeppelin.token.erc721.library.ERC721.transfer_from" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 66, + "end_line": 228, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "start_col": 27, + "start_line": 228 + } + }, + "1296": { + "accessible_scopes": [ + "openzeppelin.token.erc721.library", + "openzeppelin.token.erc721.library.ERC721", + "openzeppelin.token.erc721.library.ERC721.transfer_from" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 49, + "end_line": 231, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "start_col": 29, + "start_line": 231 + } + }, + "1297": { + "accessible_scopes": [ + "openzeppelin.token.erc721.library", + "openzeppelin.token.erc721.library.ERC721", + "openzeppelin.token.erc721.library.ERC721.transfer_from" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 50, + "end_line": 231, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "start_col": 13, + "start_line": 231 + } + }, + "1299": { + "accessible_scopes": [ + "openzeppelin.token.erc721.library", + "openzeppelin.token.erc721.library.ERC721", + "openzeppelin.token.erc721.library.ERC721.transfer_from" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 78, + "end_line": 283, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "parent_location": [ + { + "end_col": 66, + "end_line": 228, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "parent_location": [ + { + "end_col": 38, + "end_line": 331, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "parent_location": [ + { + "end_col": 39, + "end_line": 239, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "start_col": 9, + "start_line": 239 + }, + "While trying to retrieve the implicit argument 'syscall_ptr' in:" + ], + "start_col": 20, + "start_line": 331 + }, + "While expanding the reference 'syscall_ptr' in:" + ], + "start_col": 27, + "start_line": 228 + }, + "While trying to update the implicit return value 'syscall_ptr' in:" + ], + "start_col": 60, + "start_line": 283 + } + }, + "1300": { + "accessible_scopes": [ + "openzeppelin.token.erc721.library", + "openzeppelin.token.erc721.library.ERC721", + "openzeppelin.token.erc721.library.ERC721.transfer_from" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 58, + "end_line": 283, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "parent_location": [ + { + "end_col": 66, + "end_line": 228, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "parent_location": [ + { + "end_col": 66, + "end_line": 331, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "parent_location": [ + { + "end_col": 39, + "end_line": 239, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "start_col": 9, + "start_line": 239 + }, + "While trying to retrieve the implicit argument 'pedersen_ptr' in:" + ], + "start_col": 40, + "start_line": 331 + }, + "While expanding the reference 'pedersen_ptr' in:" + ], + "start_col": 27, + "start_line": 228 + }, + "While trying to update the implicit return value 'pedersen_ptr' in:" + ], + "start_col": 32, + "start_line": 283 + } + }, + "1301": { + "accessible_scopes": [ + "openzeppelin.token.erc721.library", + "openzeppelin.token.erc721.library.ERC721", + "openzeppelin.token.erc721.library.ERC721.transfer_from" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 95, + "end_line": 283, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "parent_location": [ + { + "end_col": 66, + "end_line": 228, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "parent_location": [ + { + "end_col": 83, + "end_line": 331, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "parent_location": [ + { + "end_col": 39, + "end_line": 239, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "start_col": 9, + "start_line": 239 + }, + "While trying to retrieve the implicit argument 'range_check_ptr' in:" + ], + "start_col": 68, + "start_line": 331 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 27, + "start_line": 228 + }, + "While trying to update the implicit return value 'range_check_ptr' in:" + ], + "start_col": 80, + "start_line": 283 + } + }, + "1302": { + "accessible_scopes": [ + "openzeppelin.token.erc721.library", + "openzeppelin.token.erc721.library.ERC721", + "openzeppelin.token.erc721.library.ERC721.transfer_from" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 20, + "end_line": 221, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "parent_location": [ + { + "end_col": 24, + "end_line": 239, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "start_col": 19, + "start_line": 239 + }, + "While expanding the reference 'from_' in:" + ], + "start_col": 9, + "start_line": 221 + } + }, + "1303": { + "accessible_scopes": [ + "openzeppelin.token.erc721.library", + "openzeppelin.token.erc721.library.ERC721", + "openzeppelin.token.erc721.library.ERC721.transfer_from" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 30, + "end_line": 221, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "parent_location": [ + { + "end_col": 28, + "end_line": 239, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "start_col": 26, + "start_line": 239 + }, + "While expanding the reference 'to' in:" + ], + "start_col": 22, + "start_line": 221 + } + }, + "1304": { + "accessible_scopes": [ + "openzeppelin.token.erc721.library", + "openzeppelin.token.erc721.library.ERC721", + "openzeppelin.token.erc721.library.ERC721.transfer_from" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 49, + "end_line": 221, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "parent_location": [ + { + "end_col": 38, + "end_line": 239, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "start_col": 30, + "start_line": 239 + }, + "While expanding the reference 'token_id' in:" + ], + "start_col": 32, + "start_line": 221 + } + }, + "1305": { + "accessible_scopes": [ + "openzeppelin.token.erc721.library", + "openzeppelin.token.erc721.library.ERC721", + "openzeppelin.token.erc721.library.ERC721.transfer_from" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 49, + "end_line": 221, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "parent_location": [ + { + "end_col": 38, + "end_line": 239, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "start_col": 30, + "start_line": 239 + }, + "While expanding the reference 'token_id' in:" + ], + "start_col": 32, + "start_line": 221 + } + }, + "1306": { + "accessible_scopes": [ + "openzeppelin.token.erc721.library", + "openzeppelin.token.erc721.library.ERC721", + "openzeppelin.token.erc721.library.ERC721.transfer_from" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 39, + "end_line": 239, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "start_col": 9, + "start_line": 239 + } + }, + "1308": { + "accessible_scopes": [ + "openzeppelin.token.erc721.library", + "openzeppelin.token.erc721.library.ERC721", + "openzeppelin.token.erc721.library.ERC721.transfer_from" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 66, + "end_line": 331, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "parent_location": [ + { + "end_col": 39, + "end_line": 239, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "parent_location": [ + { + "end_col": 50, + "end_line": 220, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "parent_location": [ + { + "end_col": 19, + "end_line": 240, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "start_col": 9, + "start_line": 240 + }, + "While trying to retrieve the implicit argument 'pedersen_ptr' in:" + ], + "start_col": 24, + "start_line": 220 + }, + "While expanding the reference 'pedersen_ptr' in:" + ], + "start_col": 9, + "start_line": 239 + }, + "While trying to update the implicit return value 'pedersen_ptr' in:" + ], + "start_col": 40, + "start_line": 331 + } + }, + "1309": { + "accessible_scopes": [ + "openzeppelin.token.erc721.library", + "openzeppelin.token.erc721.library.ERC721", + "openzeppelin.token.erc721.library.ERC721.transfer_from" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 38, + "end_line": 331, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "parent_location": [ + { + "end_col": 39, + "end_line": 239, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "parent_location": [ + { + "end_col": 70, + "end_line": 220, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "parent_location": [ + { + "end_col": 19, + "end_line": 240, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "start_col": 9, + "start_line": 240 + }, + "While trying to retrieve the implicit argument 'syscall_ptr' in:" + ], + "start_col": 52, + "start_line": 220 + }, + "While expanding the reference 'syscall_ptr' in:" + ], + "start_col": 9, + "start_line": 239 + }, + "While trying to update the implicit return value 'syscall_ptr' in:" + ], + "start_col": 20, + "start_line": 331 + } + }, + "1310": { + "accessible_scopes": [ + "openzeppelin.token.erc721.library", + "openzeppelin.token.erc721.library.ERC721", + "openzeppelin.token.erc721.library.ERC721.transfer_from" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 83, + "end_line": 331, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "parent_location": [ + { + "end_col": 39, + "end_line": 239, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "parent_location": [ + { + "end_col": 87, + "end_line": 220, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "parent_location": [ + { + "end_col": 19, + "end_line": 240, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "start_col": 9, + "start_line": 240 + }, + "While trying to retrieve the implicit argument 'range_check_ptr' in:" + ], + "start_col": 72, + "start_line": 220 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 9, + "start_line": 239 + }, + "While trying to update the implicit return value 'range_check_ptr' in:" + ], + "start_col": 68, + "start_line": 331 + } + }, + "1311": { + "accessible_scopes": [ + "openzeppelin.token.erc721.library", + "openzeppelin.token.erc721.library.ERC721", + "openzeppelin.token.erc721.library.ERC721.transfer_from" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 19, + "end_line": 240, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "start_col": 9, + "start_line": 240 + } + }, + "1312": { + "accessible_scopes": [ + "openzeppelin.token.erc721.library", + "openzeppelin.token.erc721.library.ERC721", + "openzeppelin.token.erc721.library.ERC721.safe_transfer_from" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 22, + "end_line": 246, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "start_col": 9, + "start_line": 246 + } + }, + "1314": { + "accessible_scopes": [ + "openzeppelin.token.erc721.library", + "openzeppelin.token.erc721.library.ERC721", + "openzeppelin.token.erc721.library.ERC721.safe_transfer_from" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 92, + "end_line": 243, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "parent_location": [ + { + "end_col": 35, + "end_line": 21, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/uint256.cairo" + }, + "parent_location": [ + { + "end_col": 36, + "end_line": 248, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "start_col": 13, + "start_line": 248 + }, + "While trying to retrieve the implicit argument 'range_check_ptr' in:" + ], + "start_col": 20, + "start_line": 21 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 77, + "start_line": 243 + } + }, + "1315": { + "accessible_scopes": [ + "openzeppelin.token.erc721.library", + "openzeppelin.token.erc721.library.ERC721", + "openzeppelin.token.erc721.library.ERC721.safe_transfer_from" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 49, + "end_line": 244, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "parent_location": [ + { + "end_col": 35, + "end_line": 248, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "start_col": 27, + "start_line": 248 + }, + "While expanding the reference 'token_id' in:" + ], + "start_col": 32, + "start_line": 244 + } + }, + "1316": { + "accessible_scopes": [ + "openzeppelin.token.erc721.library", + "openzeppelin.token.erc721.library.ERC721", + "openzeppelin.token.erc721.library.ERC721.safe_transfer_from" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 49, + "end_line": 244, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "parent_location": [ + { + "end_col": 35, + "end_line": 248, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "start_col": 27, + "start_line": 248 + }, + "While expanding the reference 'token_id' in:" + ], + "start_col": 32, + "start_line": 244 + } + }, + "1317": { + "accessible_scopes": [ + "openzeppelin.token.erc721.library", + "openzeppelin.token.erc721.library.ERC721", + "openzeppelin.token.erc721.library.ERC721.safe_transfer_from" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 36, + "end_line": 248, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "start_col": 13, + "start_line": 248 + } + }, + "1319": { + "accessible_scopes": [ + "openzeppelin.token.erc721.library", + "openzeppelin.token.erc721.library.ERC721", + "openzeppelin.token.erc721.library.ERC721.safe_transfer_from" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 75, + "end_line": 243, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "parent_location": [ + { + "end_col": 43, + "end_line": 200, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/starknet/common/syscalls.cairo" + }, + "parent_location": [ + { + "end_col": 44, + "end_line": 250, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "start_col": 24, + "start_line": 250 + }, + "While trying to retrieve the implicit argument 'syscall_ptr' in:" + ], + "start_col": 25, + "start_line": 200 + }, + "While expanding the reference 'syscall_ptr' in:" + ], + "start_col": 57, + "start_line": 243 + } + }, + "1320": { + "accessible_scopes": [ + "openzeppelin.token.erc721.library", + "openzeppelin.token.erc721.library.ERC721", + "openzeppelin.token.erc721.library.ERC721.safe_transfer_from" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 44, + "end_line": 250, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "start_col": 24, + "start_line": 250 + } + }, + "1322": { + "accessible_scopes": [ + "openzeppelin.token.erc721.library", + "openzeppelin.token.erc721.library.ERC721", + "openzeppelin.token.erc721.library.ERC721.safe_transfer_from" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 20, + "end_line": 250, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "parent_location": [ + { + "end_col": 20, + "end_line": 250, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "start_col": 14, + "start_line": 250 + }, + "While auto generating local variable for 'caller'." + ], + "start_col": 14, + "start_line": 250 + } + }, + "1323": { + "accessible_scopes": [ + "openzeppelin.token.erc721.library", + "openzeppelin.token.erc721.library.ERC721", + "openzeppelin.token.erc721.library.ERC721.safe_transfer_from" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 55, + "end_line": 243, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "parent_location": [ + { + "end_col": 58, + "end_line": 283, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "parent_location": [ + { + "end_col": 66, + "end_line": 251, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "start_col": 27, + "start_line": 251 + }, + "While trying to retrieve the implicit argument 'pedersen_ptr' in:" + ], + "start_col": 32, + "start_line": 283 + }, + "While expanding the reference 'pedersen_ptr' in:" + ], + "start_col": 29, + "start_line": 243 + } + }, + "1324": { + "accessible_scopes": [ + "openzeppelin.token.erc721.library", + "openzeppelin.token.erc721.library.ERC721", + "openzeppelin.token.erc721.library.ERC721.safe_transfer_from" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 43, + "end_line": 200, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/starknet/common/syscalls.cairo" + }, + "parent_location": [ + { + "end_col": 44, + "end_line": 250, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "parent_location": [ + { + "end_col": 78, + "end_line": 283, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "parent_location": [ + { + "end_col": 66, + "end_line": 251, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "start_col": 27, + "start_line": 251 + }, + "While trying to retrieve the implicit argument 'syscall_ptr' in:" + ], + "start_col": 60, + "start_line": 283 + }, + "While expanding the reference 'syscall_ptr' in:" + ], + "start_col": 24, + "start_line": 250 + }, + "While trying to update the implicit return value 'syscall_ptr' in:" + ], + "start_col": 25, + "start_line": 200 + } + }, + "1325": { + "accessible_scopes": [ + "openzeppelin.token.erc721.library", + "openzeppelin.token.erc721.library.ERC721", + "openzeppelin.token.erc721.library.ERC721.safe_transfer_from" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 35, + "end_line": 21, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/uint256.cairo" + }, + "parent_location": [ + { + "end_col": 36, + "end_line": 248, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "parent_location": [ + { + "end_col": 95, + "end_line": 283, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "parent_location": [ + { + "end_col": 66, + "end_line": 251, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "start_col": 27, + "start_line": 251 + }, + "While trying to retrieve the implicit argument 'range_check_ptr' in:" + ], + "start_col": 80, + "start_line": 283 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 13, + "start_line": 248 + }, + "While trying to update the implicit return value 'range_check_ptr' in:" + ], + "start_col": 20, + "start_line": 21 + } + }, + "1326": { + "accessible_scopes": [ + "openzeppelin.token.erc721.library", + "openzeppelin.token.erc721.library.ERC721", + "openzeppelin.token.erc721.library.ERC721.safe_transfer_from" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 20, + "end_line": 250, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "parent_location": [ + { + "end_col": 20, + "end_line": 250, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "parent_location": [ + { + "end_col": 55, + "end_line": 251, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "start_col": 49, + "start_line": 251 + }, + "While expanding the reference 'caller' in:" + ], + "start_col": 14, + "start_line": 250 + }, + "While auto generating local variable for 'caller'." + ], + "start_col": 14, + "start_line": 250 + } + }, + "1327": { + "accessible_scopes": [ + "openzeppelin.token.erc721.library", + "openzeppelin.token.erc721.library.ERC721", + "openzeppelin.token.erc721.library.ERC721.safe_transfer_from" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 49, + "end_line": 244, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "parent_location": [ + { + "end_col": 65, + "end_line": 251, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "start_col": 57, + "start_line": 251 + }, + "While expanding the reference 'token_id' in:" + ], + "start_col": 32, + "start_line": 244 + } + }, + "1328": { + "accessible_scopes": [ + "openzeppelin.token.erc721.library", + "openzeppelin.token.erc721.library.ERC721", + "openzeppelin.token.erc721.library.ERC721.safe_transfer_from" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 49, + "end_line": 244, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "parent_location": [ + { + "end_col": 65, + "end_line": 251, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "start_col": 57, + "start_line": 251 + }, + "While expanding the reference 'token_id' in:" + ], + "start_col": 32, + "start_line": 244 + } + }, + "1329": { + "accessible_scopes": [ + "openzeppelin.token.erc721.library", + "openzeppelin.token.erc721.library.ERC721", + "openzeppelin.token.erc721.library.ERC721.safe_transfer_from" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 66, + "end_line": 251, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "start_col": 27, + "start_line": 251 + } + }, + "1331": { + "accessible_scopes": [ + "openzeppelin.token.erc721.library", + "openzeppelin.token.erc721.library.ERC721", + "openzeppelin.token.erc721.library.ERC721.safe_transfer_from" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 49, + "end_line": 254, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "start_col": 29, + "start_line": 254 + } + }, + "1332": { + "accessible_scopes": [ + "openzeppelin.token.erc721.library", + "openzeppelin.token.erc721.library.ERC721", + "openzeppelin.token.erc721.library.ERC721.safe_transfer_from" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 50, + "end_line": 254, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "start_col": 13, + "start_line": 254 + } + }, + "1334": { + "accessible_scopes": [ + "openzeppelin.token.erc721.library", + "openzeppelin.token.erc721.library.ERC721", + "openzeppelin.token.erc721.library.ERC721.safe_transfer_from" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 78, + "end_line": 283, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "parent_location": [ + { + "end_col": 66, + "end_line": 251, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "parent_location": [ + { + "end_col": 43, + "end_line": 363, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "parent_location": [ + { + "end_col": 60, + "end_line": 262, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "start_col": 9, + "start_line": 262 + }, + "While trying to retrieve the implicit argument 'syscall_ptr' in:" + ], + "start_col": 25, + "start_line": 363 + }, + "While expanding the reference 'syscall_ptr' in:" + ], + "start_col": 27, + "start_line": 251 + }, + "While trying to update the implicit return value 'syscall_ptr' in:" + ], + "start_col": 60, + "start_line": 283 + } + }, + "1335": { + "accessible_scopes": [ + "openzeppelin.token.erc721.library", + "openzeppelin.token.erc721.library.ERC721", + "openzeppelin.token.erc721.library.ERC721.safe_transfer_from" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 58, + "end_line": 283, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "parent_location": [ + { + "end_col": 66, + "end_line": 251, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "parent_location": [ + { + "end_col": 71, + "end_line": 363, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "parent_location": [ + { + "end_col": 60, + "end_line": 262, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "start_col": 9, + "start_line": 262 + }, + "While trying to retrieve the implicit argument 'pedersen_ptr' in:" + ], + "start_col": 45, + "start_line": 363 + }, + "While expanding the reference 'pedersen_ptr' in:" + ], + "start_col": 27, + "start_line": 251 + }, + "While trying to update the implicit return value 'pedersen_ptr' in:" + ], + "start_col": 32, + "start_line": 283 + } + }, + "1336": { + "accessible_scopes": [ + "openzeppelin.token.erc721.library", + "openzeppelin.token.erc721.library.ERC721", + "openzeppelin.token.erc721.library.ERC721.safe_transfer_from" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 95, + "end_line": 283, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "parent_location": [ + { + "end_col": 66, + "end_line": 251, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "parent_location": [ + { + "end_col": 88, + "end_line": 363, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "parent_location": [ + { + "end_col": 60, + "end_line": 262, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "start_col": 9, + "start_line": 262 + }, + "While trying to retrieve the implicit argument 'range_check_ptr' in:" + ], + "start_col": 73, + "start_line": 363 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 27, + "start_line": 251 + }, + "While trying to update the implicit return value 'range_check_ptr' in:" + ], + "start_col": 80, + "start_line": 283 + } + }, + "1337": { + "accessible_scopes": [ + "openzeppelin.token.erc721.library", + "openzeppelin.token.erc721.library.ERC721", + "openzeppelin.token.erc721.library.ERC721.safe_transfer_from" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 20, + "end_line": 244, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "parent_location": [ + { + "end_col": 29, + "end_line": 262, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "start_col": 24, + "start_line": 262 + }, + "While expanding the reference 'from_' in:" + ], + "start_col": 9, + "start_line": 244 + } + }, + "1338": { + "accessible_scopes": [ + "openzeppelin.token.erc721.library", + "openzeppelin.token.erc721.library.ERC721", + "openzeppelin.token.erc721.library.ERC721.safe_transfer_from" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 30, + "end_line": 244, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "parent_location": [ + { + "end_col": 33, + "end_line": 262, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "start_col": 31, + "start_line": 262 + }, + "While expanding the reference 'to' in:" + ], + "start_col": 22, + "start_line": 244 + } + }, + "1339": { + "accessible_scopes": [ + "openzeppelin.token.erc721.library", + "openzeppelin.token.erc721.library.ERC721", + "openzeppelin.token.erc721.library.ERC721.safe_transfer_from" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 49, + "end_line": 244, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "parent_location": [ + { + "end_col": 43, + "end_line": 262, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "start_col": 35, + "start_line": 262 + }, + "While expanding the reference 'token_id' in:" + ], + "start_col": 32, + "start_line": 244 + } + }, + "1340": { + "accessible_scopes": [ + "openzeppelin.token.erc721.library", + "openzeppelin.token.erc721.library.ERC721", + "openzeppelin.token.erc721.library.ERC721.safe_transfer_from" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 49, + "end_line": 244, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "parent_location": [ + { + "end_col": 43, + "end_line": 262, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "start_col": 35, + "start_line": 262 + }, + "While expanding the reference 'token_id' in:" + ], + "start_col": 32, + "start_line": 244 + } + }, + "1341": { + "accessible_scopes": [ + "openzeppelin.token.erc721.library", + "openzeppelin.token.erc721.library.ERC721", + "openzeppelin.token.erc721.library.ERC721.safe_transfer_from" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 65, + "end_line": 244, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "parent_location": [ + { + "end_col": 53, + "end_line": 262, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "start_col": 45, + "start_line": 262 + }, + "While expanding the reference 'data_len' in:" + ], + "start_col": 51, + "start_line": 244 + } + }, + "1342": { + "accessible_scopes": [ + "openzeppelin.token.erc721.library", + "openzeppelin.token.erc721.library.ERC721", + "openzeppelin.token.erc721.library.ERC721.safe_transfer_from" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 78, + "end_line": 244, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "parent_location": [ + { + "end_col": 59, + "end_line": 262, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "start_col": 55, + "start_line": 262 + }, + "While expanding the reference 'data' in:" + ], + "start_col": 67, + "start_line": 244 + } + }, + "1343": { + "accessible_scopes": [ + "openzeppelin.token.erc721.library", + "openzeppelin.token.erc721.library.ERC721", + "openzeppelin.token.erc721.library.ERC721.safe_transfer_from" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 60, + "end_line": 262, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "start_col": 9, + "start_line": 262 + } + }, + "1345": { + "accessible_scopes": [ + "openzeppelin.token.erc721.library", + "openzeppelin.token.erc721.library.ERC721", + "openzeppelin.token.erc721.library.ERC721.safe_transfer_from" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 71, + "end_line": 363, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "parent_location": [ + { + "end_col": 60, + "end_line": 262, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "parent_location": [ + { + "end_col": 55, + "end_line": 243, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "parent_location": [ + { + "end_col": 19, + "end_line": 263, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "start_col": 9, + "start_line": 263 + }, + "While trying to retrieve the implicit argument 'pedersen_ptr' in:" + ], + "start_col": 29, + "start_line": 243 + }, + "While expanding the reference 'pedersen_ptr' in:" + ], + "start_col": 9, + "start_line": 262 + }, + "While trying to update the implicit return value 'pedersen_ptr' in:" + ], + "start_col": 45, + "start_line": 363 + } + }, + "1346": { + "accessible_scopes": [ + "openzeppelin.token.erc721.library", + "openzeppelin.token.erc721.library.ERC721", + "openzeppelin.token.erc721.library.ERC721.safe_transfer_from" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 43, + "end_line": 363, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "parent_location": [ + { + "end_col": 60, + "end_line": 262, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "parent_location": [ + { + "end_col": 75, + "end_line": 243, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "parent_location": [ + { + "end_col": 19, + "end_line": 263, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "start_col": 9, + "start_line": 263 + }, + "While trying to retrieve the implicit argument 'syscall_ptr' in:" + ], + "start_col": 57, + "start_line": 243 + }, + "While expanding the reference 'syscall_ptr' in:" + ], + "start_col": 9, + "start_line": 262 + }, + "While trying to update the implicit return value 'syscall_ptr' in:" + ], + "start_col": 25, + "start_line": 363 + } + }, + "1347": { + "accessible_scopes": [ + "openzeppelin.token.erc721.library", + "openzeppelin.token.erc721.library.ERC721", + "openzeppelin.token.erc721.library.ERC721.safe_transfer_from" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 88, + "end_line": 363, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "parent_location": [ + { + "end_col": 60, + "end_line": 262, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "parent_location": [ + { + "end_col": 92, + "end_line": 243, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "parent_location": [ + { + "end_col": 19, + "end_line": 263, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "start_col": 9, + "start_line": 263 + }, + "While trying to retrieve the implicit argument 'range_check_ptr' in:" + ], + "start_col": 77, + "start_line": 243 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 9, + "start_line": 262 + }, + "While trying to update the implicit return value 'range_check_ptr' in:" + ], + "start_col": 73, + "start_line": 363 + } + }, + "1348": { + "accessible_scopes": [ + "openzeppelin.token.erc721.library", + "openzeppelin.token.erc721.library.ERC721", + "openzeppelin.token.erc721.library.ERC721.safe_transfer_from" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 19, + "end_line": 263, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "start_col": 9, + "start_line": 263 + } + }, + "1349": { + "accessible_scopes": [ + "openzeppelin.token.erc721.library", + "openzeppelin.token.erc721.library.ERC721", + "openzeppelin.token.erc721.library.ERC721.assert_only_token_owner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 97, + "end_line": 270, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "parent_location": [ + { + "end_col": 35, + "end_line": 21, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/uint256.cairo" + }, + "parent_location": [ + { + "end_col": 32, + "end_line": 273, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "start_col": 9, + "start_line": 273 + }, + "While trying to retrieve the implicit argument 'range_check_ptr' in:" + ], + "start_col": 20, + "start_line": 21 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 82, + "start_line": 270 + } + }, + "1350": { + "accessible_scopes": [ + "openzeppelin.token.erc721.library", + "openzeppelin.token.erc721.library.ERC721", + "openzeppelin.token.erc721.library.ERC721.assert_only_token_owner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 26, + "end_line": 271, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "parent_location": [ + { + "end_col": 31, + "end_line": 273, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "start_col": 23, + "start_line": 273 + }, + "While expanding the reference 'token_id' in:" + ], + "start_col": 9, + "start_line": 271 + } + }, + "1351": { + "accessible_scopes": [ + "openzeppelin.token.erc721.library", + "openzeppelin.token.erc721.library.ERC721", + "openzeppelin.token.erc721.library.ERC721.assert_only_token_owner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 26, + "end_line": 271, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "parent_location": [ + { + "end_col": 31, + "end_line": 273, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "start_col": 23, + "start_line": 273 + }, + "While expanding the reference 'token_id' in:" + ], + "start_col": 9, + "start_line": 271 + } + }, + "1352": { + "accessible_scopes": [ + "openzeppelin.token.erc721.library", + "openzeppelin.token.erc721.library.ERC721", + "openzeppelin.token.erc721.library.ERC721.assert_only_token_owner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 32, + "end_line": 273, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "start_col": 9, + "start_line": 273 + } + }, + "1354": { + "accessible_scopes": [ + "openzeppelin.token.erc721.library", + "openzeppelin.token.erc721.library.ERC721", + "openzeppelin.token.erc721.library.ERC721.assert_only_token_owner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 80, + "end_line": 270, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "parent_location": [ + { + "end_col": 43, + "end_line": 200, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/starknet/common/syscalls.cairo" + }, + "parent_location": [ + { + "end_col": 44, + "end_line": 274, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "start_col": 24, + "start_line": 274 + }, + "While trying to retrieve the implicit argument 'syscall_ptr' in:" + ], + "start_col": 25, + "start_line": 200 + }, + "While expanding the reference 'syscall_ptr' in:" + ], + "start_col": 62, + "start_line": 270 + } + }, + "1355": { + "accessible_scopes": [ + "openzeppelin.token.erc721.library", + "openzeppelin.token.erc721.library.ERC721", + "openzeppelin.token.erc721.library.ERC721.assert_only_token_owner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 44, + "end_line": 274, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "start_col": 24, + "start_line": 274 + } + }, + "1357": { + "accessible_scopes": [ + "openzeppelin.token.erc721.library", + "openzeppelin.token.erc721.library.ERC721", + "openzeppelin.token.erc721.library.ERC721.assert_only_token_owner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 43, + "end_line": 200, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/starknet/common/syscalls.cairo" + }, + "parent_location": [ + { + "end_col": 44, + "end_line": 274, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "parent_location": [ + { + "end_col": 37, + "end_line": 109, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "parent_location": [ + { + "end_col": 41, + "end_line": 275, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "start_col": 23, + "start_line": 275 + }, + "While trying to retrieve the implicit argument 'syscall_ptr' in:" + ], + "start_col": 19, + "start_line": 109 + }, + "While expanding the reference 'syscall_ptr' in:" + ], + "start_col": 24, + "start_line": 274 + }, + "While trying to update the implicit return value 'syscall_ptr' in:" + ], + "start_col": 25, + "start_line": 200 + } + }, + "1358": { + "accessible_scopes": [ + "openzeppelin.token.erc721.library", + "openzeppelin.token.erc721.library.ERC721", + "openzeppelin.token.erc721.library.ERC721.assert_only_token_owner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 60, + "end_line": 270, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "parent_location": [ + { + "end_col": 65, + "end_line": 109, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "parent_location": [ + { + "end_col": 41, + "end_line": 275, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "start_col": 23, + "start_line": 275 + }, + "While trying to retrieve the implicit argument 'pedersen_ptr' in:" + ], + "start_col": 39, + "start_line": 109 + }, + "While expanding the reference 'pedersen_ptr' in:" + ], + "start_col": 34, + "start_line": 270 + } + }, + "1359": { + "accessible_scopes": [ + "openzeppelin.token.erc721.library", + "openzeppelin.token.erc721.library.ERC721", + "openzeppelin.token.erc721.library.ERC721.assert_only_token_owner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 35, + "end_line": 21, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/uint256.cairo" + }, + "parent_location": [ + { + "end_col": 32, + "end_line": 273, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "parent_location": [ + { + "end_col": 82, + "end_line": 109, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "parent_location": [ + { + "end_col": 41, + "end_line": 275, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "start_col": 23, + "start_line": 275 + }, + "While trying to retrieve the implicit argument 'range_check_ptr' in:" + ], + "start_col": 67, + "start_line": 109 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 9, + "start_line": 273 + }, + "While trying to update the implicit return value 'range_check_ptr' in:" + ], + "start_col": 20, + "start_line": 21 + } + }, + "1360": { + "accessible_scopes": [ + "openzeppelin.token.erc721.library", + "openzeppelin.token.erc721.library.ERC721", + "openzeppelin.token.erc721.library.ERC721.assert_only_token_owner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 26, + "end_line": 271, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "parent_location": [ + { + "end_col": 40, + "end_line": 275, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "start_col": 32, + "start_line": 275 + }, + "While expanding the reference 'token_id' in:" + ], + "start_col": 9, + "start_line": 271 + } + }, + "1361": { + "accessible_scopes": [ + "openzeppelin.token.erc721.library", + "openzeppelin.token.erc721.library.ERC721", + "openzeppelin.token.erc721.library.ERC721.assert_only_token_owner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 26, + "end_line": 271, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "parent_location": [ + { + "end_col": 40, + "end_line": 275, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "start_col": 32, + "start_line": 275 + }, + "While expanding the reference 'token_id' in:" + ], + "start_col": 9, + "start_line": 271 + } + }, + "1362": { + "accessible_scopes": [ + "openzeppelin.token.erc721.library", + "openzeppelin.token.erc721.library.ERC721", + "openzeppelin.token.erc721.library.ERC721.assert_only_token_owner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 41, + "end_line": 275, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "start_col": 23, + "start_line": 275 + } + }, + "1364": { + "accessible_scopes": [ + "openzeppelin.token.erc721.library", + "openzeppelin.token.erc721.library.ERC721", + "openzeppelin.token.erc721.library.ERC721.assert_only_token_owner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 35, + "end_line": 278, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "start_col": 13, + "start_line": 278 + } + }, + "1365": { + "accessible_scopes": [ + "openzeppelin.token.erc721.library", + "openzeppelin.token.erc721.library.ERC721", + "openzeppelin.token.erc721.library.ERC721.assert_only_token_owner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 65, + "end_line": 109, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "parent_location": [ + { + "end_col": 41, + "end_line": 275, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "parent_location": [ + { + "end_col": 60, + "end_line": 270, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "parent_location": [ + { + "end_col": 19, + "end_line": 280, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "start_col": 9, + "start_line": 280 + }, + "While trying to retrieve the implicit argument 'pedersen_ptr' in:" + ], + "start_col": 34, + "start_line": 270 + }, + "While expanding the reference 'pedersen_ptr' in:" + ], + "start_col": 23, + "start_line": 275 + }, + "While trying to update the implicit return value 'pedersen_ptr' in:" + ], + "start_col": 39, + "start_line": 109 + } + }, + "1366": { + "accessible_scopes": [ + "openzeppelin.token.erc721.library", + "openzeppelin.token.erc721.library.ERC721", + "openzeppelin.token.erc721.library.ERC721.assert_only_token_owner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 37, + "end_line": 109, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "parent_location": [ + { + "end_col": 41, + "end_line": 275, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "parent_location": [ + { + "end_col": 80, + "end_line": 270, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "parent_location": [ + { + "end_col": 19, + "end_line": 280, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "start_col": 9, + "start_line": 280 + }, + "While trying to retrieve the implicit argument 'syscall_ptr' in:" + ], + "start_col": 62, + "start_line": 270 + }, + "While expanding the reference 'syscall_ptr' in:" + ], + "start_col": 23, + "start_line": 275 + }, + "While trying to update the implicit return value 'syscall_ptr' in:" + ], + "start_col": 19, + "start_line": 109 + } + }, + "1367": { + "accessible_scopes": [ + "openzeppelin.token.erc721.library", + "openzeppelin.token.erc721.library.ERC721", + "openzeppelin.token.erc721.library.ERC721.assert_only_token_owner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 82, + "end_line": 109, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "parent_location": [ + { + "end_col": 41, + "end_line": 275, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "parent_location": [ + { + "end_col": 97, + "end_line": 270, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "parent_location": [ + { + "end_col": 19, + "end_line": 280, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "start_col": 9, + "start_line": 280 + }, + "While trying to retrieve the implicit argument 'range_check_ptr' in:" + ], + "start_col": 82, + "start_line": 270 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 23, + "start_line": 275 + }, + "While trying to update the implicit return value 'range_check_ptr' in:" + ], + "start_col": 67, + "start_line": 109 + } + }, + "1368": { + "accessible_scopes": [ + "openzeppelin.token.erc721.library", + "openzeppelin.token.erc721.library.ERC721", + "openzeppelin.token.erc721.library.ERC721.assert_only_token_owner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 19, + "end_line": 280, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "start_col": 9, + "start_line": 280 + } + }, + "1369": { + "accessible_scopes": [ + "openzeppelin.token.erc721.library", + "openzeppelin.token.erc721.library.ERC721", + "openzeppelin.token.erc721.library.ERC721._is_approved_or_owner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 22, + "end_line": 286, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "start_col": 9, + "start_line": 286 + } + }, + "1371": { + "accessible_scopes": [ + "openzeppelin.token.erc721.library", + "openzeppelin.token.erc721.library.ERC721", + "openzeppelin.token.erc721.library.ERC721._is_approved_or_owner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 78, + "end_line": 283, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "parent_location": [ + { + "end_col": 36, + "end_line": 311, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "parent_location": [ + { + "end_col": 39, + "end_line": 288, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "start_col": 22, + "start_line": 288 + }, + "While trying to retrieve the implicit argument 'syscall_ptr' in:" + ], + "start_col": 18, + "start_line": 311 + }, + "While expanding the reference 'syscall_ptr' in:" + ], + "start_col": 60, + "start_line": 283 + } + }, + "1372": { + "accessible_scopes": [ + "openzeppelin.token.erc721.library", + "openzeppelin.token.erc721.library.ERC721", + "openzeppelin.token.erc721.library.ERC721._is_approved_or_owner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 58, + "end_line": 283, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "parent_location": [ + { + "end_col": 64, + "end_line": 311, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "parent_location": [ + { + "end_col": 39, + "end_line": 288, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "start_col": 22, + "start_line": 288 + }, + "While trying to retrieve the implicit argument 'pedersen_ptr' in:" + ], + "start_col": 38, + "start_line": 311 + }, + "While expanding the reference 'pedersen_ptr' in:" + ], + "start_col": 32, + "start_line": 283 + } + }, + "1373": { + "accessible_scopes": [ + "openzeppelin.token.erc721.library", + "openzeppelin.token.erc721.library.ERC721", + "openzeppelin.token.erc721.library.ERC721._is_approved_or_owner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 95, + "end_line": 283, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "parent_location": [ + { + "end_col": 81, + "end_line": 311, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "parent_location": [ + { + "end_col": 39, + "end_line": 288, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "start_col": 22, + "start_line": 288 + }, + "While trying to retrieve the implicit argument 'range_check_ptr' in:" + ], + "start_col": 66, + "start_line": 311 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 80, + "start_line": 283 + } + }, + "1374": { + "accessible_scopes": [ + "openzeppelin.token.erc721.library", + "openzeppelin.token.erc721.library.ERC721", + "openzeppelin.token.erc721.library.ERC721._is_approved_or_owner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 41, + "end_line": 284, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "parent_location": [ + { + "end_col": 38, + "end_line": 288, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "start_col": 30, + "start_line": 288 + }, + "While expanding the reference 'token_id' in:" + ], + "start_col": 24, + "start_line": 284 + } + }, + "1375": { + "accessible_scopes": [ + "openzeppelin.token.erc721.library", + "openzeppelin.token.erc721.library.ERC721", + "openzeppelin.token.erc721.library.ERC721._is_approved_or_owner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 41, + "end_line": 284, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "parent_location": [ + { + "end_col": 38, + "end_line": 288, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "start_col": 30, + "start_line": 288 + }, + "While expanding the reference 'token_id' in:" + ], + "start_col": 24, + "start_line": 284 + } + }, + "1376": { + "accessible_scopes": [ + "openzeppelin.token.erc721.library", + "openzeppelin.token.erc721.library.ERC721", + "openzeppelin.token.erc721.library.ERC721._is_approved_or_owner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 39, + "end_line": 288, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "start_col": 22, + "start_line": 288 + } + }, + "1378": { + "accessible_scopes": [ + "openzeppelin.token.erc721.library", + "openzeppelin.token.erc721.library.ERC721", + "openzeppelin.token.erc721.library.ERC721._is_approved_or_owner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 34, + "end_line": 290, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "start_col": 13, + "start_line": 290 + } + }, + "1380": { + "accessible_scopes": [ + "openzeppelin.token.erc721.library", + "openzeppelin.token.erc721.library.ERC721", + "openzeppelin.token.erc721.library.ERC721._is_approved_or_owner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 36, + "end_line": 311, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "parent_location": [ + { + "end_col": 39, + "end_line": 288, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "parent_location": [ + { + "end_col": 37, + "end_line": 109, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "parent_location": [ + { + "end_col": 41, + "end_line": 293, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "start_col": 23, + "start_line": 293 + }, + "While trying to retrieve the implicit argument 'syscall_ptr' in:" + ], + "start_col": 19, + "start_line": 109 + }, + "While expanding the reference 'syscall_ptr' in:" + ], + "start_col": 22, + "start_line": 288 + }, + "While trying to update the implicit return value 'syscall_ptr' in:" + ], + "start_col": 18, + "start_line": 311 + } + }, + "1381": { + "accessible_scopes": [ + "openzeppelin.token.erc721.library", + "openzeppelin.token.erc721.library.ERC721", + "openzeppelin.token.erc721.library.ERC721._is_approved_or_owner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 64, + "end_line": 311, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "parent_location": [ + { + "end_col": 39, + "end_line": 288, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "parent_location": [ + { + "end_col": 65, + "end_line": 109, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "parent_location": [ + { + "end_col": 41, + "end_line": 293, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "start_col": 23, + "start_line": 293 + }, + "While trying to retrieve the implicit argument 'pedersen_ptr' in:" + ], + "start_col": 39, + "start_line": 109 + }, + "While expanding the reference 'pedersen_ptr' in:" + ], + "start_col": 22, + "start_line": 288 + }, + "While trying to update the implicit return value 'pedersen_ptr' in:" + ], + "start_col": 38, + "start_line": 311 + } + }, + "1382": { + "accessible_scopes": [ + "openzeppelin.token.erc721.library", + "openzeppelin.token.erc721.library.ERC721", + "openzeppelin.token.erc721.library.ERC721._is_approved_or_owner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 81, + "end_line": 311, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "parent_location": [ + { + "end_col": 39, + "end_line": 288, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "parent_location": [ + { + "end_col": 82, + "end_line": 109, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "parent_location": [ + { + "end_col": 41, + "end_line": 293, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "start_col": 23, + "start_line": 293 + }, + "While trying to retrieve the implicit argument 'range_check_ptr' in:" + ], + "start_col": 67, + "start_line": 109 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 22, + "start_line": 288 + }, + "While trying to update the implicit return value 'range_check_ptr' in:" + ], + "start_col": 66, + "start_line": 311 + } + }, + "1383": { + "accessible_scopes": [ + "openzeppelin.token.erc721.library", + "openzeppelin.token.erc721.library.ERC721", + "openzeppelin.token.erc721.library.ERC721._is_approved_or_owner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 41, + "end_line": 284, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "parent_location": [ + { + "end_col": 40, + "end_line": 293, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "start_col": 32, + "start_line": 293 + }, + "While expanding the reference 'token_id' in:" + ], + "start_col": 24, + "start_line": 284 + } + }, + "1384": { + "accessible_scopes": [ + "openzeppelin.token.erc721.library", + "openzeppelin.token.erc721.library.ERC721", + "openzeppelin.token.erc721.library.ERC721._is_approved_or_owner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 41, + "end_line": 284, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "parent_location": [ + { + "end_col": 40, + "end_line": 293, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "start_col": 32, + "start_line": 293 + }, + "While expanding the reference 'token_id' in:" + ], + "start_col": 24, + "start_line": 284 + } + }, + "1385": { + "accessible_scopes": [ + "openzeppelin.token.erc721.library", + "openzeppelin.token.erc721.library.ERC721", + "openzeppelin.token.erc721.library.ERC721._is_approved_or_owner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 41, + "end_line": 293, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "start_col": 23, + "start_line": 293 + } + }, + "1387": { + "accessible_scopes": [ + "openzeppelin.token.erc721.library", + "openzeppelin.token.erc721.library.ERC721", + "openzeppelin.token.erc721.library.ERC721._is_approved_or_owner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 19, + "end_line": 293, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "parent_location": [ + { + "end_col": 19, + "end_line": 293, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "start_col": 14, + "start_line": 293 + }, + "While auto generating local variable for 'owner'." + ], + "start_col": 14, + "start_line": 293 + } + }, + "1388": { + "accessible_scopes": [ + "openzeppelin.token.erc721.library", + "openzeppelin.token.erc721.library.ERC721", + "openzeppelin.token.erc721.library.ERC721._is_approved_or_owner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 29, + "end_line": 294, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "start_col": 13, + "start_line": 294 + } + }, + "1389": { + "accessible_scopes": [ + "openzeppelin.token.erc721.library", + "openzeppelin.token.erc721.library.ERC721", + "openzeppelin.token.erc721.library.ERC721._is_approved_or_owner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 11, + "end_line": 294, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "start_col": 9, + "start_line": 294 + } + }, + "1391": { + "accessible_scopes": [ + "openzeppelin.token.erc721.library", + "openzeppelin.token.erc721.library.ERC721", + "openzeppelin.token.erc721.library.ERC721._is_approved_or_owner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 65, + "end_line": 109, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "parent_location": [ + { + "end_col": 41, + "end_line": 293, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "parent_location": [ + { + "end_col": 58, + "end_line": 283, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "parent_location": [ + { + "end_col": 25, + "end_line": 295, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "start_col": 13, + "start_line": 295 + }, + "While trying to retrieve the implicit argument 'pedersen_ptr' in:" + ], + "start_col": 32, + "start_line": 283 + }, + "While expanding the reference 'pedersen_ptr' in:" + ], + "start_col": 23, + "start_line": 293 + }, + "While trying to update the implicit return value 'pedersen_ptr' in:" + ], + "start_col": 39, + "start_line": 109 + } + }, + "1392": { + "accessible_scopes": [ + "openzeppelin.token.erc721.library", + "openzeppelin.token.erc721.library.ERC721", + "openzeppelin.token.erc721.library.ERC721._is_approved_or_owner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 37, + "end_line": 109, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "parent_location": [ + { + "end_col": 41, + "end_line": 293, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "parent_location": [ + { + "end_col": 78, + "end_line": 283, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "parent_location": [ + { + "end_col": 25, + "end_line": 295, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "start_col": 13, + "start_line": 295 + }, + "While trying to retrieve the implicit argument 'syscall_ptr' in:" + ], + "start_col": 60, + "start_line": 283 + }, + "While expanding the reference 'syscall_ptr' in:" + ], + "start_col": 23, + "start_line": 293 + }, + "While trying to update the implicit return value 'syscall_ptr' in:" + ], + "start_col": 19, + "start_line": 109 + } + }, + "1393": { + "accessible_scopes": [ + "openzeppelin.token.erc721.library", + "openzeppelin.token.erc721.library.ERC721", + "openzeppelin.token.erc721.library.ERC721._is_approved_or_owner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 82, + "end_line": 109, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "parent_location": [ + { + "end_col": 41, + "end_line": 293, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "parent_location": [ + { + "end_col": 95, + "end_line": 283, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "parent_location": [ + { + "end_col": 25, + "end_line": 295, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "start_col": 13, + "start_line": 295 + }, + "While trying to retrieve the implicit argument 'range_check_ptr' in:" + ], + "start_col": 80, + "start_line": 283 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 23, + "start_line": 293 + }, + "While trying to update the implicit return value 'range_check_ptr' in:" + ], + "start_col": 67, + "start_line": 109 + } + }, + "1394": { + "accessible_scopes": [ + "openzeppelin.token.erc721.library", + "openzeppelin.token.erc721.library.ERC721", + "openzeppelin.token.erc721.library.ERC721._is_approved_or_owner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 24, + "end_line": 295, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "start_col": 20, + "start_line": 295 + } + }, + "1396": { + "accessible_scopes": [ + "openzeppelin.token.erc721.library", + "openzeppelin.token.erc721.library.ERC721", + "openzeppelin.token.erc721.library.ERC721._is_approved_or_owner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 25, + "end_line": 295, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "start_col": 13, + "start_line": 295 + } + }, + "1397": { + "accessible_scopes": [ + "openzeppelin.token.erc721.library", + "openzeppelin.token.erc721.library.ERC721", + "openzeppelin.token.erc721.library.ERC721._is_approved_or_owner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 37, + "end_line": 109, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "parent_location": [ + { + "end_col": 41, + "end_line": 293, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "parent_location": [ + { + "end_col": 41, + "end_line": 122, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "parent_location": [ + { + "end_col": 53, + "end_line": 298, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "start_col": 31, + "start_line": 298 + }, + "While trying to retrieve the implicit argument 'syscall_ptr' in:" + ], + "start_col": 23, + "start_line": 122 + }, + "While expanding the reference 'syscall_ptr' in:" + ], + "start_col": 23, + "start_line": 293 + }, + "While trying to update the implicit return value 'syscall_ptr' in:" + ], + "start_col": 19, + "start_line": 109 + } + }, + "1398": { + "accessible_scopes": [ + "openzeppelin.token.erc721.library", + "openzeppelin.token.erc721.library.ERC721", + "openzeppelin.token.erc721.library.ERC721._is_approved_or_owner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 65, + "end_line": 109, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "parent_location": [ + { + "end_col": 41, + "end_line": 293, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "parent_location": [ + { + "end_col": 69, + "end_line": 122, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "parent_location": [ + { + "end_col": 53, + "end_line": 298, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "start_col": 31, + "start_line": 298 + }, + "While trying to retrieve the implicit argument 'pedersen_ptr' in:" + ], + "start_col": 43, + "start_line": 122 + }, + "While expanding the reference 'pedersen_ptr' in:" + ], + "start_col": 23, + "start_line": 293 + }, + "While trying to update the implicit return value 'pedersen_ptr' in:" + ], + "start_col": 39, + "start_line": 109 + } + }, + "1399": { + "accessible_scopes": [ + "openzeppelin.token.erc721.library", + "openzeppelin.token.erc721.library.ERC721", + "openzeppelin.token.erc721.library.ERC721._is_approved_or_owner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 82, + "end_line": 109, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "parent_location": [ + { + "end_col": 41, + "end_line": 293, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "parent_location": [ + { + "end_col": 86, + "end_line": 122, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "parent_location": [ + { + "end_col": 53, + "end_line": 298, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "start_col": 31, + "start_line": 298 + }, + "While trying to retrieve the implicit argument 'range_check_ptr' in:" + ], + "start_col": 71, + "start_line": 122 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 23, + "start_line": 293 + }, + "While trying to update the implicit return value 'range_check_ptr' in:" + ], + "start_col": 67, + "start_line": 109 + } + }, + "1400": { + "accessible_scopes": [ + "openzeppelin.token.erc721.library", + "openzeppelin.token.erc721.library.ERC721", + "openzeppelin.token.erc721.library.ERC721._is_approved_or_owner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 41, + "end_line": 284, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "parent_location": [ + { + "end_col": 52, + "end_line": 298, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "start_col": 44, + "start_line": 298 + }, + "While expanding the reference 'token_id' in:" + ], + "start_col": 24, + "start_line": 284 + } + }, + "1401": { + "accessible_scopes": [ + "openzeppelin.token.erc721.library", + "openzeppelin.token.erc721.library.ERC721", + "openzeppelin.token.erc721.library.ERC721._is_approved_or_owner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 41, + "end_line": 284, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "parent_location": [ + { + "end_col": 52, + "end_line": 298, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "start_col": 44, + "start_line": 298 + }, + "While expanding the reference 'token_id' in:" + ], + "start_col": 24, + "start_line": 284 + } + }, + "1402": { + "accessible_scopes": [ + "openzeppelin.token.erc721.library", + "openzeppelin.token.erc721.library.ERC721", + "openzeppelin.token.erc721.library.ERC721._is_approved_or_owner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 53, + "end_line": 298, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "start_col": 31, + "start_line": 298 + } + }, + "1404": { + "accessible_scopes": [ + "openzeppelin.token.erc721.library", + "openzeppelin.token.erc721.library.ERC721", + "openzeppelin.token.erc721.library.ERC721._is_approved_or_owner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 37, + "end_line": 299, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "start_col": 13, + "start_line": 299 + } + }, + "1405": { + "accessible_scopes": [ + "openzeppelin.token.erc721.library", + "openzeppelin.token.erc721.library.ERC721", + "openzeppelin.token.erc721.library.ERC721._is_approved_or_owner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 11, + "end_line": 299, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "start_col": 9, + "start_line": 299 + } + }, + "1407": { + "accessible_scopes": [ + "openzeppelin.token.erc721.library", + "openzeppelin.token.erc721.library.ERC721", + "openzeppelin.token.erc721.library.ERC721._is_approved_or_owner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 69, + "end_line": 122, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "parent_location": [ + { + "end_col": 53, + "end_line": 298, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "parent_location": [ + { + "end_col": 58, + "end_line": 283, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "parent_location": [ + { + "end_col": 25, + "end_line": 300, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "start_col": 13, + "start_line": 300 + }, + "While trying to retrieve the implicit argument 'pedersen_ptr' in:" + ], + "start_col": 32, + "start_line": 283 + }, + "While expanding the reference 'pedersen_ptr' in:" + ], + "start_col": 31, + "start_line": 298 + }, + "While trying to update the implicit return value 'pedersen_ptr' in:" + ], + "start_col": 43, + "start_line": 122 + } + }, + "1408": { + "accessible_scopes": [ + "openzeppelin.token.erc721.library", + "openzeppelin.token.erc721.library.ERC721", + "openzeppelin.token.erc721.library.ERC721._is_approved_or_owner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 41, + "end_line": 122, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "parent_location": [ + { + "end_col": 53, + "end_line": 298, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "parent_location": [ + { + "end_col": 78, + "end_line": 283, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "parent_location": [ + { + "end_col": 25, + "end_line": 300, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "start_col": 13, + "start_line": 300 + }, + "While trying to retrieve the implicit argument 'syscall_ptr' in:" + ], + "start_col": 60, + "start_line": 283 + }, + "While expanding the reference 'syscall_ptr' in:" + ], + "start_col": 31, + "start_line": 298 + }, + "While trying to update the implicit return value 'syscall_ptr' in:" + ], + "start_col": 23, + "start_line": 122 + } + }, + "1409": { + "accessible_scopes": [ + "openzeppelin.token.erc721.library", + "openzeppelin.token.erc721.library.ERC721", + "openzeppelin.token.erc721.library.ERC721._is_approved_or_owner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 86, + "end_line": 122, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "parent_location": [ + { + "end_col": 53, + "end_line": 298, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "parent_location": [ + { + "end_col": 95, + "end_line": 283, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "parent_location": [ + { + "end_col": 25, + "end_line": 300, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "start_col": 13, + "start_line": 300 + }, + "While trying to retrieve the implicit argument 'range_check_ptr' in:" + ], + "start_col": 80, + "start_line": 283 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 31, + "start_line": 298 + }, + "While trying to update the implicit return value 'range_check_ptr' in:" + ], + "start_col": 71, + "start_line": 122 + } + }, + "1410": { + "accessible_scopes": [ + "openzeppelin.token.erc721.library", + "openzeppelin.token.erc721.library.ERC721", + "openzeppelin.token.erc721.library.ERC721._is_approved_or_owner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 24, + "end_line": 300, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "start_col": 20, + "start_line": 300 + } + }, + "1412": { + "accessible_scopes": [ + "openzeppelin.token.erc721.library", + "openzeppelin.token.erc721.library.ERC721", + "openzeppelin.token.erc721.library.ERC721._is_approved_or_owner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 25, + "end_line": 300, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "start_col": 13, + "start_line": 300 + } + }, + "1413": { + "accessible_scopes": [ + "openzeppelin.token.erc721.library", + "openzeppelin.token.erc721.library.ERC721", + "openzeppelin.token.erc721.library.ERC721._is_approved_or_owner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 41, + "end_line": 122, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "parent_location": [ + { + "end_col": 53, + "end_line": 298, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "parent_location": [ + { + "end_col": 48, + "end_line": 136, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "parent_location": [ + { + "end_col": 64, + "end_line": 303, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "start_col": 29, + "start_line": 303 + }, + "While trying to retrieve the implicit argument 'syscall_ptr' in:" + ], + "start_col": 30, + "start_line": 136 + }, + "While expanding the reference 'syscall_ptr' in:" + ], + "start_col": 31, + "start_line": 298 + }, + "While trying to update the implicit return value 'syscall_ptr' in:" + ], + "start_col": 23, + "start_line": 122 + } + }, + "1414": { + "accessible_scopes": [ + "openzeppelin.token.erc721.library", + "openzeppelin.token.erc721.library.ERC721", + "openzeppelin.token.erc721.library.ERC721._is_approved_or_owner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 69, + "end_line": 122, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "parent_location": [ + { + "end_col": 53, + "end_line": 298, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "parent_location": [ + { + "end_col": 76, + "end_line": 136, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "parent_location": [ + { + "end_col": 64, + "end_line": 303, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "start_col": 29, + "start_line": 303 + }, + "While trying to retrieve the implicit argument 'pedersen_ptr' in:" + ], + "start_col": 50, + "start_line": 136 + }, + "While expanding the reference 'pedersen_ptr' in:" + ], + "start_col": 31, + "start_line": 298 + }, + "While trying to update the implicit return value 'pedersen_ptr' in:" + ], + "start_col": 43, + "start_line": 122 + } + }, + "1415": { + "accessible_scopes": [ + "openzeppelin.token.erc721.library", + "openzeppelin.token.erc721.library.ERC721", + "openzeppelin.token.erc721.library.ERC721._is_approved_or_owner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 86, + "end_line": 122, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "parent_location": [ + { + "end_col": 53, + "end_line": 298, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "parent_location": [ + { + "end_col": 93, + "end_line": 136, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "parent_location": [ + { + "end_col": 64, + "end_line": 303, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "start_col": 29, + "start_line": 303 + }, + "While trying to retrieve the implicit argument 'range_check_ptr' in:" + ], + "start_col": 78, + "start_line": 136 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 31, + "start_line": 298 + }, + "While trying to update the implicit return value 'range_check_ptr' in:" + ], + "start_col": 71, + "start_line": 122 + } + }, + "1416": { + "accessible_scopes": [ + "openzeppelin.token.erc721.library", + "openzeppelin.token.erc721.library.ERC721", + "openzeppelin.token.erc721.library.ERC721._is_approved_or_owner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 19, + "end_line": 293, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "parent_location": [ + { + "end_col": 19, + "end_line": 293, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "parent_location": [ + { + "end_col": 54, + "end_line": 303, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "start_col": 49, + "start_line": 303 + }, + "While expanding the reference 'owner' in:" + ], + "start_col": 14, + "start_line": 293 + }, + "While auto generating local variable for 'owner'." + ], + "start_col": 14, + "start_line": 293 + } + }, + "1417": { + "accessible_scopes": [ + "openzeppelin.token.erc721.library", + "openzeppelin.token.erc721.library.ERC721", + "openzeppelin.token.erc721.library.ERC721._is_approved_or_owner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 22, + "end_line": 284, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "parent_location": [ + { + "end_col": 63, + "end_line": 303, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "start_col": 56, + "start_line": 303 + }, + "While expanding the reference 'spender' in:" + ], + "start_col": 9, + "start_line": 284 + } + }, + "1418": { + "accessible_scopes": [ + "openzeppelin.token.erc721.library", + "openzeppelin.token.erc721.library.ERC721", + "openzeppelin.token.erc721.library.ERC721._is_approved_or_owner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 64, + "end_line": 303, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "start_col": 29, + "start_line": 303 + } + }, + "1420": { + "accessible_scopes": [ + "openzeppelin.token.erc721.library", + "openzeppelin.token.erc721.library.ERC721", + "openzeppelin.token.erc721.library.ERC721._is_approved_or_owner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 32, + "end_line": 304, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "start_col": 13, + "start_line": 304 + } + }, + "1422": { + "accessible_scopes": [ + "openzeppelin.token.erc721.library", + "openzeppelin.token.erc721.library.ERC721", + "openzeppelin.token.erc721.library.ERC721._is_approved_or_owner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 11, + "end_line": 304, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "start_col": 9, + "start_line": 304 + } + }, + "1424": { + "accessible_scopes": [ + "openzeppelin.token.erc721.library", + "openzeppelin.token.erc721.library.ERC721", + "openzeppelin.token.erc721.library.ERC721._is_approved_or_owner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 76, + "end_line": 136, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "parent_location": [ + { + "end_col": 64, + "end_line": 303, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "parent_location": [ + { + "end_col": 58, + "end_line": 283, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "parent_location": [ + { + "end_col": 25, + "end_line": 305, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "start_col": 13, + "start_line": 305 + }, + "While trying to retrieve the implicit argument 'pedersen_ptr' in:" + ], + "start_col": 32, + "start_line": 283 + }, + "While expanding the reference 'pedersen_ptr' in:" + ], + "start_col": 29, + "start_line": 303 + }, + "While trying to update the implicit return value 'pedersen_ptr' in:" + ], + "start_col": 50, + "start_line": 136 + } + }, + "1425": { + "accessible_scopes": [ + "openzeppelin.token.erc721.library", + "openzeppelin.token.erc721.library.ERC721", + "openzeppelin.token.erc721.library.ERC721._is_approved_or_owner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 48, + "end_line": 136, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "parent_location": [ + { + "end_col": 64, + "end_line": 303, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "parent_location": [ + { + "end_col": 78, + "end_line": 283, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "parent_location": [ + { + "end_col": 25, + "end_line": 305, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "start_col": 13, + "start_line": 305 + }, + "While trying to retrieve the implicit argument 'syscall_ptr' in:" + ], + "start_col": 60, + "start_line": 283 + }, + "While expanding the reference 'syscall_ptr' in:" + ], + "start_col": 29, + "start_line": 303 + }, + "While trying to update the implicit return value 'syscall_ptr' in:" + ], + "start_col": 30, + "start_line": 136 + } + }, + "1426": { + "accessible_scopes": [ + "openzeppelin.token.erc721.library", + "openzeppelin.token.erc721.library.ERC721", + "openzeppelin.token.erc721.library.ERC721._is_approved_or_owner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 93, + "end_line": 136, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "parent_location": [ + { + "end_col": 64, + "end_line": 303, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "parent_location": [ + { + "end_col": 95, + "end_line": 283, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "parent_location": [ + { + "end_col": 25, + "end_line": 305, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "start_col": 13, + "start_line": 305 + }, + "While trying to retrieve the implicit argument 'range_check_ptr' in:" + ], + "start_col": 80, + "start_line": 283 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 29, + "start_line": 303 + }, + "While trying to update the implicit return value 'range_check_ptr' in:" + ], + "start_col": 78, + "start_line": 136 + } + }, + "1427": { + "accessible_scopes": [ + "openzeppelin.token.erc721.library", + "openzeppelin.token.erc721.library.ERC721", + "openzeppelin.token.erc721.library.ERC721._is_approved_or_owner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 24, + "end_line": 305, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "start_col": 20, + "start_line": 305 + } + }, + "1429": { + "accessible_scopes": [ + "openzeppelin.token.erc721.library", + "openzeppelin.token.erc721.library.ERC721", + "openzeppelin.token.erc721.library.ERC721._is_approved_or_owner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 25, + "end_line": 305, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "start_col": 13, + "start_line": 305 + } + }, + "1430": { + "accessible_scopes": [ + "openzeppelin.token.erc721.library", + "openzeppelin.token.erc721.library.ERC721", + "openzeppelin.token.erc721.library.ERC721._is_approved_or_owner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 76, + "end_line": 136, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "parent_location": [ + { + "end_col": 64, + "end_line": 303, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "parent_location": [ + { + "end_col": 58, + "end_line": 283, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "parent_location": [ + { + "end_col": 22, + "end_line": 308, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "start_col": 9, + "start_line": 308 + }, + "While trying to retrieve the implicit argument 'pedersen_ptr' in:" + ], + "start_col": 32, + "start_line": 283 + }, + "While expanding the reference 'pedersen_ptr' in:" + ], + "start_col": 29, + "start_line": 303 + }, + "While trying to update the implicit return value 'pedersen_ptr' in:" + ], + "start_col": 50, + "start_line": 136 + } + }, + "1431": { + "accessible_scopes": [ + "openzeppelin.token.erc721.library", + "openzeppelin.token.erc721.library.ERC721", + "openzeppelin.token.erc721.library.ERC721._is_approved_or_owner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 48, + "end_line": 136, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "parent_location": [ + { + "end_col": 64, + "end_line": 303, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "parent_location": [ + { + "end_col": 78, + "end_line": 283, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "parent_location": [ + { + "end_col": 22, + "end_line": 308, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "start_col": 9, + "start_line": 308 + }, + "While trying to retrieve the implicit argument 'syscall_ptr' in:" + ], + "start_col": 60, + "start_line": 283 + }, + "While expanding the reference 'syscall_ptr' in:" + ], + "start_col": 29, + "start_line": 303 + }, + "While trying to update the implicit return value 'syscall_ptr' in:" + ], + "start_col": 30, + "start_line": 136 + } + }, + "1432": { + "accessible_scopes": [ + "openzeppelin.token.erc721.library", + "openzeppelin.token.erc721.library.ERC721", + "openzeppelin.token.erc721.library.ERC721._is_approved_or_owner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 93, + "end_line": 136, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "parent_location": [ + { + "end_col": 64, + "end_line": 303, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "parent_location": [ + { + "end_col": 95, + "end_line": 283, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "parent_location": [ + { + "end_col": 22, + "end_line": 308, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "start_col": 9, + "start_line": 308 + }, + "While trying to retrieve the implicit argument 'range_check_ptr' in:" + ], + "start_col": 80, + "start_line": 283 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 29, + "start_line": 303 + }, + "While trying to update the implicit return value 'range_check_ptr' in:" + ], + "start_col": 78, + "start_line": 136 + } + }, + "1433": { + "accessible_scopes": [ + "openzeppelin.token.erc721.library", + "openzeppelin.token.erc721.library.ERC721", + "openzeppelin.token.erc721.library.ERC721._is_approved_or_owner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 21, + "end_line": 308, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "start_col": 16, + "start_line": 308 + } + }, + "1435": { + "accessible_scopes": [ + "openzeppelin.token.erc721.library", + "openzeppelin.token.erc721.library.ERC721", + "openzeppelin.token.erc721.library.ERC721._is_approved_or_owner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 22, + "end_line": 308, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "start_col": 9, + "start_line": 308 + } + }, + "1436": { + "accessible_scopes": [ + "openzeppelin.token.erc721.library", + "openzeppelin.token.erc721.library.ERC721", + "openzeppelin.token.erc721.library.ERC721._exists" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 36, + "end_line": 311, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "parent_location": [ + { + "end_col": 33, + "end_line": 13, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721_owners/decl.cairo" + }, + "parent_location": [ + { + "end_col": 52, + "end_line": 314, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "start_col": 24, + "start_line": 314 + }, + "While trying to retrieve the implicit argument 'syscall_ptr' in:" + ], + "start_col": 15, + "start_line": 13 + }, + "While expanding the reference 'syscall_ptr' in:" + ], + "start_col": 18, + "start_line": 311 + } + }, + "1437": { + "accessible_scopes": [ + "openzeppelin.token.erc721.library", + "openzeppelin.token.erc721.library.ERC721", + "openzeppelin.token.erc721.library.ERC721._exists" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 64, + "end_line": 311, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "parent_location": [ + { + "end_col": 61, + "end_line": 13, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721_owners/decl.cairo" + }, + "parent_location": [ + { + "end_col": 52, + "end_line": 314, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "start_col": 24, + "start_line": 314 + }, + "While trying to retrieve the implicit argument 'pedersen_ptr' in:" + ], + "start_col": 35, + "start_line": 13 + }, + "While expanding the reference 'pedersen_ptr' in:" + ], + "start_col": 38, + "start_line": 311 + } + }, + "1438": { + "accessible_scopes": [ + "openzeppelin.token.erc721.library", + "openzeppelin.token.erc721.library.ERC721", + "openzeppelin.token.erc721.library.ERC721._exists" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 81, + "end_line": 311, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "parent_location": [ + { + "end_col": 78, + "end_line": 13, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721_owners/decl.cairo" + }, + "parent_location": [ + { + "end_col": 52, + "end_line": 314, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "start_col": 24, + "start_line": 314 + }, + "While trying to retrieve the implicit argument 'range_check_ptr' in:" + ], + "start_col": 63, + "start_line": 13 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 66, + "start_line": 311 + } + }, + "1439": { + "accessible_scopes": [ + "openzeppelin.token.erc721.library", + "openzeppelin.token.erc721.library.ERC721", + "openzeppelin.token.erc721.library.ERC721._exists" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 26, + "end_line": 312, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "parent_location": [ + { + "end_col": 51, + "end_line": 314, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "start_col": 43, + "start_line": 314 + }, + "While expanding the reference 'token_id' in:" + ], + "start_col": 9, + "start_line": 312 + } + }, + "1440": { + "accessible_scopes": [ + "openzeppelin.token.erc721.library", + "openzeppelin.token.erc721.library.ERC721", + "openzeppelin.token.erc721.library.ERC721._exists" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 26, + "end_line": 312, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "parent_location": [ + { + "end_col": 51, + "end_line": 314, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "start_col": 43, + "start_line": 314 + }, + "While expanding the reference 'token_id' in:" + ], + "start_col": 9, + "start_line": 312 + } + }, + "1441": { + "accessible_scopes": [ + "openzeppelin.token.erc721.library", + "openzeppelin.token.erc721.library.ERC721", + "openzeppelin.token.erc721.library.ERC721._exists" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 52, + "end_line": 314, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "start_col": 24, + "start_line": 314 + } + }, + "1443": { + "accessible_scopes": [ + "openzeppelin.token.erc721.library", + "openzeppelin.token.erc721.library.ERC721", + "openzeppelin.token.erc721.library.ERC721._exists" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 11, + "end_line": 315, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "start_col": 9, + "start_line": 315 + } + }, + "1445": { + "accessible_scopes": [ + "openzeppelin.token.erc721.library", + "openzeppelin.token.erc721.library.ERC721", + "openzeppelin.token.erc721.library.ERC721._exists" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 33, + "end_line": 13, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721_owners/decl.cairo" + }, + "parent_location": [ + { + "end_col": 52, + "end_line": 314, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "parent_location": [ + { + "end_col": 36, + "end_line": 311, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "parent_location": [ + { + "end_col": 26, + "end_line": 316, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "start_col": 13, + "start_line": 316 + }, + "While trying to retrieve the implicit argument 'syscall_ptr' in:" + ], + "start_col": 18, + "start_line": 311 + }, + "While expanding the reference 'syscall_ptr' in:" + ], + "start_col": 24, + "start_line": 314 + }, + "While trying to update the implicit return value 'syscall_ptr' in:" + ], + "start_col": 15, + "start_line": 13 + } + }, + "1446": { + "accessible_scopes": [ + "openzeppelin.token.erc721.library", + "openzeppelin.token.erc721.library.ERC721", + "openzeppelin.token.erc721.library.ERC721._exists" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 61, + "end_line": 13, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721_owners/decl.cairo" + }, + "parent_location": [ + { + "end_col": 52, + "end_line": 314, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "parent_location": [ + { + "end_col": 64, + "end_line": 311, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "parent_location": [ + { + "end_col": 26, + "end_line": 316, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "start_col": 13, + "start_line": 316 + }, + "While trying to retrieve the implicit argument 'pedersen_ptr' in:" + ], + "start_col": 38, + "start_line": 311 + }, + "While expanding the reference 'pedersen_ptr' in:" + ], + "start_col": 24, + "start_line": 314 + }, + "While trying to update the implicit return value 'pedersen_ptr' in:" + ], + "start_col": 35, + "start_line": 13 + } + }, + "1447": { + "accessible_scopes": [ + "openzeppelin.token.erc721.library", + "openzeppelin.token.erc721.library.ERC721", + "openzeppelin.token.erc721.library.ERC721._exists" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 78, + "end_line": 13, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721_owners/decl.cairo" + }, + "parent_location": [ + { + "end_col": 52, + "end_line": 314, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "parent_location": [ + { + "end_col": 81, + "end_line": 311, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "parent_location": [ + { + "end_col": 26, + "end_line": 316, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "start_col": 13, + "start_line": 316 + }, + "While trying to retrieve the implicit argument 'range_check_ptr' in:" + ], + "start_col": 66, + "start_line": 311 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 24, + "start_line": 314 + }, + "While trying to update the implicit return value 'range_check_ptr' in:" + ], + "start_col": 63, + "start_line": 13 + } + }, + "1448": { + "accessible_scopes": [ + "openzeppelin.token.erc721.library", + "openzeppelin.token.erc721.library.ERC721", + "openzeppelin.token.erc721.library.ERC721._exists" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 25, + "end_line": 316, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "start_col": 20, + "start_line": 316 + } + }, + "1450": { + "accessible_scopes": [ + "openzeppelin.token.erc721.library", + "openzeppelin.token.erc721.library.ERC721", + "openzeppelin.token.erc721.library.ERC721._exists" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 26, + "end_line": 316, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "start_col": 13, + "start_line": 316 + } + }, + "1451": { + "accessible_scopes": [ + "openzeppelin.token.erc721.library", + "openzeppelin.token.erc721.library.ERC721", + "openzeppelin.token.erc721.library.ERC721._exists" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 33, + "end_line": 13, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721_owners/decl.cairo" + }, + "parent_location": [ + { + "end_col": 52, + "end_line": 314, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "parent_location": [ + { + "end_col": 36, + "end_line": 311, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "parent_location": [ + { + "end_col": 21, + "end_line": 319, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "start_col": 9, + "start_line": 319 + }, + "While trying to retrieve the implicit argument 'syscall_ptr' in:" + ], + "start_col": 18, + "start_line": 311 + }, + "While expanding the reference 'syscall_ptr' in:" + ], + "start_col": 24, + "start_line": 314 + }, + "While trying to update the implicit return value 'syscall_ptr' in:" + ], + "start_col": 15, + "start_line": 13 + } + }, + "1452": { + "accessible_scopes": [ + "openzeppelin.token.erc721.library", + "openzeppelin.token.erc721.library.ERC721", + "openzeppelin.token.erc721.library.ERC721._exists" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 61, + "end_line": 13, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721_owners/decl.cairo" + }, + "parent_location": [ + { + "end_col": 52, + "end_line": 314, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "parent_location": [ + { + "end_col": 64, + "end_line": 311, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "parent_location": [ + { + "end_col": 21, + "end_line": 319, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "start_col": 9, + "start_line": 319 + }, + "While trying to retrieve the implicit argument 'pedersen_ptr' in:" + ], + "start_col": 38, + "start_line": 311 + }, + "While expanding the reference 'pedersen_ptr' in:" + ], + "start_col": 24, + "start_line": 314 + }, + "While trying to update the implicit return value 'pedersen_ptr' in:" + ], + "start_col": 35, + "start_line": 13 + } + }, + "1453": { + "accessible_scopes": [ + "openzeppelin.token.erc721.library", + "openzeppelin.token.erc721.library.ERC721", + "openzeppelin.token.erc721.library.ERC721._exists" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 78, + "end_line": 13, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721_owners/decl.cairo" + }, + "parent_location": [ + { + "end_col": 52, + "end_line": 314, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "parent_location": [ + { + "end_col": 81, + "end_line": 311, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "parent_location": [ + { + "end_col": 21, + "end_line": 319, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "start_col": 9, + "start_line": 319 + }, + "While trying to retrieve the implicit argument 'range_check_ptr' in:" + ], + "start_col": 66, + "start_line": 311 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 24, + "start_line": 314 + }, + "While trying to update the implicit return value 'range_check_ptr' in:" + ], + "start_col": 63, + "start_line": 13 + } + }, + "1454": { + "accessible_scopes": [ + "openzeppelin.token.erc721.library", + "openzeppelin.token.erc721.library.ERC721", + "openzeppelin.token.erc721.library.ERC721._exists" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 20, + "end_line": 319, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "start_col": 16, + "start_line": 319 + } + }, + "1456": { + "accessible_scopes": [ + "openzeppelin.token.erc721.library", + "openzeppelin.token.erc721.library.ERC721", + "openzeppelin.token.erc721.library.ERC721._exists" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 21, + "end_line": 319, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "start_col": 9, + "start_line": 319 + } + }, + "1457": { + "accessible_scopes": [ + "openzeppelin.token.erc721.library", + "openzeppelin.token.erc721.library.ERC721", + "openzeppelin.token.erc721.library.ERC721._approve" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 37, + "end_line": 322, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "parent_location": [ + { + "end_col": 34, + "end_line": 21, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721_token_approvals/decl.cairo" + }, + "parent_location": [ + { + "end_col": 51, + "end_line": 325, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "start_col": 9, + "start_line": 325 + }, + "While trying to retrieve the implicit argument 'syscall_ptr' in:" + ], + "start_col": 16, + "start_line": 21 + }, + "While expanding the reference 'syscall_ptr' in:" + ], + "start_col": 19, + "start_line": 322 + } + }, + "1458": { + "accessible_scopes": [ + "openzeppelin.token.erc721.library", + "openzeppelin.token.erc721.library.ERC721", + "openzeppelin.token.erc721.library.ERC721._approve" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 65, + "end_line": 322, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "parent_location": [ + { + "end_col": 62, + "end_line": 21, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721_token_approvals/decl.cairo" + }, + "parent_location": [ + { + "end_col": 51, + "end_line": 325, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "start_col": 9, + "start_line": 325 + }, + "While trying to retrieve the implicit argument 'pedersen_ptr' in:" + ], + "start_col": 36, + "start_line": 21 + }, + "While expanding the reference 'pedersen_ptr' in:" + ], + "start_col": 39, + "start_line": 322 + } + }, + "1459": { + "accessible_scopes": [ + "openzeppelin.token.erc721.library", + "openzeppelin.token.erc721.library.ERC721", + "openzeppelin.token.erc721.library.ERC721._approve" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 82, + "end_line": 322, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "parent_location": [ + { + "end_col": 79, + "end_line": 21, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721_token_approvals/decl.cairo" + }, + "parent_location": [ + { + "end_col": 51, + "end_line": 325, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "start_col": 9, + "start_line": 325 + }, + "While trying to retrieve the implicit argument 'range_check_ptr' in:" + ], + "start_col": 64, + "start_line": 21 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 67, + "start_line": 322 + } + }, + "1460": { + "accessible_scopes": [ + "openzeppelin.token.erc721.library", + "openzeppelin.token.erc721.library.ERC721", + "openzeppelin.token.erc721.library.ERC721._approve" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 36, + "end_line": 323, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "parent_location": [ + { + "end_col": 46, + "end_line": 325, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "start_col": 38, + "start_line": 325 + }, + "While expanding the reference 'token_id' in:" + ], + "start_col": 19, + "start_line": 323 + } + }, + "1461": { + "accessible_scopes": [ + "openzeppelin.token.erc721.library", + "openzeppelin.token.erc721.library.ERC721", + "openzeppelin.token.erc721.library.ERC721._approve" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 36, + "end_line": 323, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "parent_location": [ + { + "end_col": 46, + "end_line": 325, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "start_col": 38, + "start_line": 325 + }, + "While expanding the reference 'token_id' in:" + ], + "start_col": 19, + "start_line": 323 + } + }, + "1462": { + "accessible_scopes": [ + "openzeppelin.token.erc721.library", + "openzeppelin.token.erc721.library.ERC721", + "openzeppelin.token.erc721.library.ERC721._approve" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 17, + "end_line": 323, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "parent_location": [ + { + "end_col": 50, + "end_line": 325, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "start_col": 48, + "start_line": 325 + }, + "While expanding the reference 'to' in:" + ], + "start_col": 9, + "start_line": 323 + } + }, + "1463": { + "accessible_scopes": [ + "openzeppelin.token.erc721.library", + "openzeppelin.token.erc721.library.ERC721", + "openzeppelin.token.erc721.library.ERC721._approve" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 51, + "end_line": 325, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "start_col": 9, + "start_line": 325 + } + }, + "1465": { + "accessible_scopes": [ + "openzeppelin.token.erc721.library", + "openzeppelin.token.erc721.library.ERC721", + "openzeppelin.token.erc721.library.ERC721._approve" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 36, + "end_line": 323, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "parent_location": [ + { + "end_col": 40, + "end_line": 326, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "start_col": 32, + "start_line": 326 + }, + "While expanding the reference 'token_id' in:" + ], + "start_col": 19, + "start_line": 323 + } + }, + "1466": { + "accessible_scopes": [ + "openzeppelin.token.erc721.library", + "openzeppelin.token.erc721.library.ERC721", + "openzeppelin.token.erc721.library.ERC721._approve" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 36, + "end_line": 323, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "parent_location": [ + { + "end_col": 40, + "end_line": 326, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "start_col": 32, + "start_line": 326 + }, + "While expanding the reference 'token_id' in:" + ], + "start_col": 19, + "start_line": 323 + } + }, + "1467": { + "accessible_scopes": [ + "openzeppelin.token.erc721.library", + "openzeppelin.token.erc721.library.ERC721", + "openzeppelin.token.erc721.library.ERC721._approve" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 41, + "end_line": 326, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "start_col": 23, + "start_line": 326 + } + }, + "1469": { + "accessible_scopes": [ + "openzeppelin.token.erc721.library", + "openzeppelin.token.erc721.library.ERC721", + "openzeppelin.token.erc721.library.ERC721._approve" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 37, + "end_line": 109, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "parent_location": [ + { + "end_col": 41, + "end_line": 326, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "parent_location": [ + { + "end_col": 29, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/event/Approval/a7a8ae41be29ac9f4f6c3b7837c448d787ca051dd1ade98f409e54d33d112504.cairo" + }, + "parent_location": [ + { + "end_col": 14, + "end_line": 32, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "parent_location": [ + { + "end_col": 43, + "end_line": 327, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "start_col": 9, + "start_line": 327 + }, + "While trying to retrieve the implicit argument 'syscall_ptr' in:" + ], + "start_col": 6, + "start_line": 32 + }, + "While handling event:" + ], + "start_col": 11, + "start_line": 1 + }, + "While expanding the reference 'syscall_ptr' in:" + ], + "start_col": 23, + "start_line": 326 + }, + "While trying to update the implicit return value 'syscall_ptr' in:" + ], + "start_col": 19, + "start_line": 109 + } + }, + "1470": { + "accessible_scopes": [ + "openzeppelin.token.erc721.library", + "openzeppelin.token.erc721.library.ERC721", + "openzeppelin.token.erc721.library.ERC721._approve" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 82, + "end_line": 109, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "parent_location": [ + { + "end_col": 41, + "end_line": 326, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "parent_location": [ + { + "end_col": 46, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/event/Approval/a7a8ae41be29ac9f4f6c3b7837c448d787ca051dd1ade98f409e54d33d112504.cairo" + }, + "parent_location": [ + { + "end_col": 14, + "end_line": 32, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "parent_location": [ + { + "end_col": 43, + "end_line": 327, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "start_col": 9, + "start_line": 327 + }, + "While trying to retrieve the implicit argument 'range_check_ptr' in:" + ], + "start_col": 6, + "start_line": 32 + }, + "While handling event:" + ], + "start_col": 31, + "start_line": 1 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 23, + "start_line": 326 + }, + "While trying to update the implicit return value 'range_check_ptr' in:" + ], + "start_col": 67, + "start_line": 109 + } + }, + "1471": { + "accessible_scopes": [ + "openzeppelin.token.erc721.library", + "openzeppelin.token.erc721.library.ERC721", + "openzeppelin.token.erc721.library.ERC721._approve" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 19, + "end_line": 326, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "parent_location": [ + { + "end_col": 28, + "end_line": 327, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "start_col": 23, + "start_line": 327 + }, + "While expanding the reference 'owner' in:" + ], + "start_col": 14, + "start_line": 326 + } + }, + "1472": { + "accessible_scopes": [ + "openzeppelin.token.erc721.library", + "openzeppelin.token.erc721.library.ERC721", + "openzeppelin.token.erc721.library.ERC721._approve" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 17, + "end_line": 323, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "parent_location": [ + { + "end_col": 32, + "end_line": 327, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "start_col": 30, + "start_line": 327 + }, + "While expanding the reference 'to' in:" + ], + "start_col": 9, + "start_line": 323 + } + }, + "1473": { + "accessible_scopes": [ + "openzeppelin.token.erc721.library", + "openzeppelin.token.erc721.library.ERC721", + "openzeppelin.token.erc721.library.ERC721._approve" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 36, + "end_line": 323, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "parent_location": [ + { + "end_col": 42, + "end_line": 327, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "start_col": 34, + "start_line": 327 + }, + "While expanding the reference 'token_id' in:" + ], + "start_col": 19, + "start_line": 323 + } + }, + "1474": { + "accessible_scopes": [ + "openzeppelin.token.erc721.library", + "openzeppelin.token.erc721.library.ERC721", + "openzeppelin.token.erc721.library.ERC721._approve" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 36, + "end_line": 323, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "parent_location": [ + { + "end_col": 42, + "end_line": 327, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "start_col": 34, + "start_line": 327 + }, + "While expanding the reference 'token_id' in:" + ], + "start_col": 19, + "start_line": 323 + } + }, + "1475": { + "accessible_scopes": [ + "openzeppelin.token.erc721.library", + "openzeppelin.token.erc721.library.ERC721", + "openzeppelin.token.erc721.library.ERC721._approve" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 43, + "end_line": 327, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "start_col": 9, + "start_line": 327 + } + }, + "1477": { + "accessible_scopes": [ + "openzeppelin.token.erc721.library", + "openzeppelin.token.erc721.library.ERC721", + "openzeppelin.token.erc721.library.ERC721._approve" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 29, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/event/Approval/a7a8ae41be29ac9f4f6c3b7837c448d787ca051dd1ade98f409e54d33d112504.cairo" + }, + "parent_location": [ + { + "end_col": 14, + "end_line": 32, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "parent_location": [ + { + "end_col": 43, + "end_line": 327, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "parent_location": [ + { + "end_col": 37, + "end_line": 322, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "parent_location": [ + { + "end_col": 19, + "end_line": 328, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "start_col": 9, + "start_line": 328 + }, + "While trying to retrieve the implicit argument 'syscall_ptr' in:" + ], + "start_col": 19, + "start_line": 322 + }, + "While expanding the reference 'syscall_ptr' in:" + ], + "start_col": 9, + "start_line": 327 + }, + "While trying to update the implicit return value 'syscall_ptr' in:" + ], + "start_col": 6, + "start_line": 32 + }, + "While handling event:" + ], + "start_col": 11, + "start_line": 1 + } + }, + "1478": { + "accessible_scopes": [ + "openzeppelin.token.erc721.library", + "openzeppelin.token.erc721.library.ERC721", + "openzeppelin.token.erc721.library.ERC721._approve" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 65, + "end_line": 109, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "parent_location": [ + { + "end_col": 41, + "end_line": 326, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "parent_location": [ + { + "end_col": 65, + "end_line": 322, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "parent_location": [ + { + "end_col": 19, + "end_line": 328, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "start_col": 9, + "start_line": 328 + }, + "While trying to retrieve the implicit argument 'pedersen_ptr' in:" + ], + "start_col": 39, + "start_line": 322 + }, + "While expanding the reference 'pedersen_ptr' in:" + ], + "start_col": 23, + "start_line": 326 + }, + "While trying to update the implicit return value 'pedersen_ptr' in:" + ], + "start_col": 39, + "start_line": 109 + } + }, + "1479": { + "accessible_scopes": [ + "openzeppelin.token.erc721.library", + "openzeppelin.token.erc721.library.ERC721", + "openzeppelin.token.erc721.library.ERC721._approve" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 46, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/event/Approval/a7a8ae41be29ac9f4f6c3b7837c448d787ca051dd1ade98f409e54d33d112504.cairo" + }, + "parent_location": [ + { + "end_col": 14, + "end_line": 32, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "parent_location": [ + { + "end_col": 43, + "end_line": 327, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "parent_location": [ + { + "end_col": 82, + "end_line": 322, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "parent_location": [ + { + "end_col": 19, + "end_line": 328, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "start_col": 9, + "start_line": 328 + }, + "While trying to retrieve the implicit argument 'range_check_ptr' in:" + ], + "start_col": 67, + "start_line": 322 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 9, + "start_line": 327 + }, + "While trying to update the implicit return value 'range_check_ptr' in:" + ], + "start_col": 6, + "start_line": 32 + }, + "While handling event:" + ], + "start_col": 31, + "start_line": 1 + } + }, + "1480": { + "accessible_scopes": [ + "openzeppelin.token.erc721.library", + "openzeppelin.token.erc721.library.ERC721", + "openzeppelin.token.erc721.library.ERC721._approve" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 19, + "end_line": 328, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "start_col": 9, + "start_line": 328 + } + }, + "1481": { + "accessible_scopes": [ + "openzeppelin.token.erc721.library", + "openzeppelin.token.erc721.library.ERC721", + "openzeppelin.token.erc721.library.ERC721._transfer" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 38, + "end_line": 331, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "parent_location": [ + { + "end_col": 37, + "end_line": 109, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "parent_location": [ + { + "end_col": 41, + "end_line": 335, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "start_col": 23, + "start_line": 335 + }, + "While trying to retrieve the implicit argument 'syscall_ptr' in:" + ], + "start_col": 19, + "start_line": 109 + }, + "While expanding the reference 'syscall_ptr' in:" + ], + "start_col": 20, + "start_line": 331 + } + }, + "1482": { + "accessible_scopes": [ + "openzeppelin.token.erc721.library", + "openzeppelin.token.erc721.library.ERC721", + "openzeppelin.token.erc721.library.ERC721._transfer" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 66, + "end_line": 331, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "parent_location": [ + { + "end_col": 65, + "end_line": 109, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "parent_location": [ + { + "end_col": 41, + "end_line": 335, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "start_col": 23, + "start_line": 335 + }, + "While trying to retrieve the implicit argument 'pedersen_ptr' in:" + ], + "start_col": 39, + "start_line": 109 + }, + "While expanding the reference 'pedersen_ptr' in:" + ], + "start_col": 40, + "start_line": 331 + } + }, + "1483": { + "accessible_scopes": [ + "openzeppelin.token.erc721.library", + "openzeppelin.token.erc721.library.ERC721", + "openzeppelin.token.erc721.library.ERC721._transfer" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 83, + "end_line": 331, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "parent_location": [ + { + "end_col": 82, + "end_line": 109, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "parent_location": [ + { + "end_col": 41, + "end_line": 335, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "start_col": 23, + "start_line": 335 + }, + "While trying to retrieve the implicit argument 'range_check_ptr' in:" + ], + "start_col": 67, + "start_line": 109 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 68, + "start_line": 331 + } + }, + "1484": { + "accessible_scopes": [ + "openzeppelin.token.erc721.library", + "openzeppelin.token.erc721.library.ERC721", + "openzeppelin.token.erc721.library.ERC721._transfer" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 49, + "end_line": 332, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "parent_location": [ + { + "end_col": 40, + "end_line": 335, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "start_col": 32, + "start_line": 335 + }, + "While expanding the reference 'token_id' in:" + ], + "start_col": 32, + "start_line": 332 + } + }, + "1485": { + "accessible_scopes": [ + "openzeppelin.token.erc721.library", + "openzeppelin.token.erc721.library.ERC721", + "openzeppelin.token.erc721.library.ERC721._transfer" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 49, + "end_line": 332, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "parent_location": [ + { + "end_col": 40, + "end_line": 335, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "start_col": 32, + "start_line": 335 + }, + "While expanding the reference 'token_id' in:" + ], + "start_col": 32, + "start_line": 332 + } + }, + "1486": { + "accessible_scopes": [ + "openzeppelin.token.erc721.library", + "openzeppelin.token.erc721.library.ERC721", + "openzeppelin.token.erc721.library.ERC721._transfer" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 41, + "end_line": 335, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "start_col": 23, + "start_line": 335 + } + }, + "1488": { + "accessible_scopes": [ + "openzeppelin.token.erc721.library", + "openzeppelin.token.erc721.library.ERC721", + "openzeppelin.token.erc721.library.ERC721._transfer" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 34, + "end_line": 337, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "start_col": 13, + "start_line": 337 + } + }, + "1489": { + "accessible_scopes": [ + "openzeppelin.token.erc721.library", + "openzeppelin.token.erc721.library.ERC721", + "openzeppelin.token.erc721.library.ERC721._transfer" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 30, + "end_line": 332, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "parent_location": [ + { + "end_col": 31, + "end_line": 341, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "start_col": 29, + "start_line": 341 + }, + "While expanding the reference 'to' in:" + ], + "start_col": 22, + "start_line": 332 + } + }, + "1490": { + "accessible_scopes": [ + "openzeppelin.token.erc721.library", + "openzeppelin.token.erc721.library.ERC721", + "openzeppelin.token.erc721.library.ERC721._transfer" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 32, + "end_line": 341, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "start_col": 13, + "start_line": 341 + } + }, + "1492": { + "accessible_scopes": [ + "openzeppelin.token.erc721.library", + "openzeppelin.token.erc721.library.ERC721", + "openzeppelin.token.erc721.library.ERC721._transfer" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 37, + "end_line": 109, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "parent_location": [ + { + "end_col": 41, + "end_line": 335, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "parent_location": [ + { + "end_col": 37, + "end_line": 322, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "parent_location": [ + { + "end_col": 30, + "end_line": 345, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "start_col": 9, + "start_line": 345 + }, + "While trying to retrieve the implicit argument 'syscall_ptr' in:" + ], + "start_col": 19, + "start_line": 322 + }, + "While expanding the reference 'syscall_ptr' in:" + ], + "start_col": 23, + "start_line": 335 + }, + "While trying to update the implicit return value 'syscall_ptr' in:" + ], + "start_col": 19, + "start_line": 109 + } + }, + "1493": { + "accessible_scopes": [ + "openzeppelin.token.erc721.library", + "openzeppelin.token.erc721.library.ERC721", + "openzeppelin.token.erc721.library.ERC721._transfer" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 65, + "end_line": 109, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "parent_location": [ + { + "end_col": 41, + "end_line": 335, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "parent_location": [ + { + "end_col": 65, + "end_line": 322, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "parent_location": [ + { + "end_col": 30, + "end_line": 345, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "start_col": 9, + "start_line": 345 + }, + "While trying to retrieve the implicit argument 'pedersen_ptr' in:" + ], + "start_col": 39, + "start_line": 322 + }, + "While expanding the reference 'pedersen_ptr' in:" + ], + "start_col": 23, + "start_line": 335 + }, + "While trying to update the implicit return value 'pedersen_ptr' in:" + ], + "start_col": 39, + "start_line": 109 + } + }, + "1494": { + "accessible_scopes": [ + "openzeppelin.token.erc721.library", + "openzeppelin.token.erc721.library.ERC721", + "openzeppelin.token.erc721.library.ERC721._transfer" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 82, + "end_line": 109, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "parent_location": [ + { + "end_col": 41, + "end_line": 335, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "parent_location": [ + { + "end_col": 82, + "end_line": 322, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "parent_location": [ + { + "end_col": 30, + "end_line": 345, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "start_col": 9, + "start_line": 345 + }, + "While trying to retrieve the implicit argument 'range_check_ptr' in:" + ], + "start_col": 67, + "start_line": 322 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 23, + "start_line": 335 + }, + "While trying to update the implicit return value 'range_check_ptr' in:" + ], + "start_col": 67, + "start_line": 109 + } + }, + "1495": { + "accessible_scopes": [ + "openzeppelin.token.erc721.library", + "openzeppelin.token.erc721.library.ERC721", + "openzeppelin.token.erc721.library.ERC721._transfer" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 19, + "end_line": 345, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "start_col": 18, + "start_line": 345 + } + }, + "1497": { + "accessible_scopes": [ + "openzeppelin.token.erc721.library", + "openzeppelin.token.erc721.library.ERC721", + "openzeppelin.token.erc721.library.ERC721._transfer" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 49, + "end_line": 332, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "parent_location": [ + { + "end_col": 29, + "end_line": 345, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "start_col": 21, + "start_line": 345 + }, + "While expanding the reference 'token_id' in:" + ], + "start_col": 32, + "start_line": 332 + } + }, + "1498": { + "accessible_scopes": [ + "openzeppelin.token.erc721.library", + "openzeppelin.token.erc721.library.ERC721", + "openzeppelin.token.erc721.library.ERC721._transfer" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 49, + "end_line": 332, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "parent_location": [ + { + "end_col": 29, + "end_line": 345, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "start_col": 21, + "start_line": 345 + }, + "While expanding the reference 'token_id' in:" + ], + "start_col": 32, + "start_line": 332 + } + }, + "1499": { + "accessible_scopes": [ + "openzeppelin.token.erc721.library", + "openzeppelin.token.erc721.library.ERC721", + "openzeppelin.token.erc721.library.ERC721._transfer" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 30, + "end_line": 345, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "start_col": 9, + "start_line": 345 + } + }, + "1501": { + "accessible_scopes": [ + "openzeppelin.token.erc721.library", + "openzeppelin.token.erc721.library.ERC721", + "openzeppelin.token.erc721.library.ERC721._transfer" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 20, + "end_line": 332, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "parent_location": [ + { + "end_col": 53, + "end_line": 348, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "start_col": 48, + "start_line": 348 + }, + "While expanding the reference 'from_' in:" + ], + "start_col": 9, + "start_line": 332 + } + }, + "1502": { + "accessible_scopes": [ + "openzeppelin.token.erc721.library", + "openzeppelin.token.erc721.library.ERC721", + "openzeppelin.token.erc721.library.ERC721._transfer" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 54, + "end_line": 348, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "start_col": 27, + "start_line": 348 + } + }, + "1504": { + "accessible_scopes": [ + "openzeppelin.token.erc721.library", + "openzeppelin.token.erc721.library.ERC721", + "openzeppelin.token.erc721.library.ERC721._transfer" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 77, + "end_line": 349, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "start_col": 76, + "start_line": 349 + } + }, + "1506": { + "accessible_scopes": [ + "openzeppelin.token.erc721.library", + "openzeppelin.token.erc721.library.ERC721", + "openzeppelin.token.erc721.library.ERC721._transfer" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 80, + "end_line": 349, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "start_col": 79, + "start_line": 349 + } + }, + "1508": { + "accessible_scopes": [ + "openzeppelin.token.erc721.library", + "openzeppelin.token.erc721.library.ERC721", + "openzeppelin.token.erc721.library.ERC721._transfer" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 82, + "end_line": 349, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "start_col": 38, + "start_line": 349 + } + }, + "1510": { + "accessible_scopes": [ + "openzeppelin.token.erc721.library", + "openzeppelin.token.erc721.library.ERC721", + "openzeppelin.token.erc721.library.ERC721._transfer" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 33, + "end_line": 13, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721_balances/decl.cairo" + }, + "parent_location": [ + { + "end_col": 54, + "end_line": 348, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "parent_location": [ + { + "end_col": 34, + "end_line": 21, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721_balances/decl.cairo" + }, + "parent_location": [ + { + "end_col": 50, + "end_line": 350, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "start_col": 9, + "start_line": 350 + }, + "While trying to retrieve the implicit argument 'syscall_ptr' in:" + ], + "start_col": 16, + "start_line": 21 + }, + "While expanding the reference 'syscall_ptr' in:" + ], + "start_col": 27, + "start_line": 348 + }, + "While trying to update the implicit return value 'syscall_ptr' in:" + ], + "start_col": 15, + "start_line": 13 + } + }, + "1511": { + "accessible_scopes": [ + "openzeppelin.token.erc721.library", + "openzeppelin.token.erc721.library.ERC721", + "openzeppelin.token.erc721.library.ERC721._transfer" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 61, + "end_line": 13, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721_balances/decl.cairo" + }, + "parent_location": [ + { + "end_col": 54, + "end_line": 348, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "parent_location": [ + { + "end_col": 62, + "end_line": 21, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721_balances/decl.cairo" + }, + "parent_location": [ + { + "end_col": 50, + "end_line": 350, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "start_col": 9, + "start_line": 350 + }, + "While trying to retrieve the implicit argument 'pedersen_ptr' in:" + ], + "start_col": 36, + "start_line": 21 + }, + "While expanding the reference 'pedersen_ptr' in:" + ], + "start_col": 27, + "start_line": 348 + }, + "While trying to update the implicit return value 'pedersen_ptr' in:" + ], + "start_col": 35, + "start_line": 13 + } + }, + "1512": { + "accessible_scopes": [ + "openzeppelin.token.erc721.library", + "openzeppelin.token.erc721.library.ERC721", + "openzeppelin.token.erc721.library.ERC721._transfer" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 32, + "end_line": 35, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/security/safemath/library.cairo" + }, + "parent_location": [ + { + "end_col": 82, + "end_line": 349, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "parent_location": [ + { + "end_col": 79, + "end_line": 21, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721_balances/decl.cairo" + }, + "parent_location": [ + { + "end_col": 50, + "end_line": 350, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "start_col": 9, + "start_line": 350 + }, + "While trying to retrieve the implicit argument 'range_check_ptr' in:" + ], + "start_col": 64, + "start_line": 21 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 38, + "start_line": 349 + }, + "While trying to update the implicit return value 'range_check_ptr' in:" + ], + "start_col": 17, + "start_line": 35 + } + }, + "1513": { + "accessible_scopes": [ + "openzeppelin.token.erc721.library", + "openzeppelin.token.erc721.library.ERC721", + "openzeppelin.token.erc721.library.ERC721._transfer" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 20, + "end_line": 332, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "parent_location": [ + { + "end_col": 36, + "end_line": 350, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "start_col": 31, + "start_line": 350 + }, + "While expanding the reference 'from_' in:" + ], + "start_col": 9, + "start_line": 332 + } + }, + "1514": { + "accessible_scopes": [ + "openzeppelin.token.erc721.library", + "openzeppelin.token.erc721.library.ERC721", + "openzeppelin.token.erc721.library.ERC721._transfer" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 34, + "end_line": 349, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "parent_location": [ + { + "end_col": 49, + "end_line": 350, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "start_col": 38, + "start_line": 350 + }, + "While expanding the reference 'new_balance' in:" + ], + "start_col": 14, + "start_line": 349 + } + }, + "1515": { + "accessible_scopes": [ + "openzeppelin.token.erc721.library", + "openzeppelin.token.erc721.library.ERC721", + "openzeppelin.token.erc721.library.ERC721._transfer" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 34, + "end_line": 349, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "parent_location": [ + { + "end_col": 49, + "end_line": 350, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "start_col": 38, + "start_line": 350 + }, + "While expanding the reference 'new_balance' in:" + ], + "start_col": 14, + "start_line": 349 + } + }, + "1516": { + "accessible_scopes": [ + "openzeppelin.token.erc721.library", + "openzeppelin.token.erc721.library.ERC721", + "openzeppelin.token.erc721.library.ERC721._transfer" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 50, + "end_line": 350, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "start_col": 9, + "start_line": 350 + } + }, + "1518": { + "accessible_scopes": [ + "openzeppelin.token.erc721.library", + "openzeppelin.token.erc721.library.ERC721", + "openzeppelin.token.erc721.library.ERC721._transfer" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 30, + "end_line": 332, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "parent_location": [ + { + "end_col": 53, + "end_line": 353, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "start_col": 51, + "start_line": 353 + }, + "While expanding the reference 'to' in:" + ], + "start_col": 22, + "start_line": 332 + } + }, + "1519": { + "accessible_scopes": [ + "openzeppelin.token.erc721.library", + "openzeppelin.token.erc721.library.ERC721", + "openzeppelin.token.erc721.library.ERC721._transfer" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 54, + "end_line": 353, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "start_col": 30, + "start_line": 353 + } + }, + "1521": { + "accessible_scopes": [ + "openzeppelin.token.erc721.library", + "openzeppelin.token.erc721.library.ERC721", + "openzeppelin.token.erc721.library.ERC721._transfer" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 77, + "end_line": 354, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "start_col": 76, + "start_line": 354 + } + }, + "1523": { + "accessible_scopes": [ + "openzeppelin.token.erc721.library", + "openzeppelin.token.erc721.library.ERC721", + "openzeppelin.token.erc721.library.ERC721._transfer" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 80, + "end_line": 354, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "start_col": 79, + "start_line": 354 + } + }, + "1525": { + "accessible_scopes": [ + "openzeppelin.token.erc721.library", + "openzeppelin.token.erc721.library.ERC721", + "openzeppelin.token.erc721.library.ERC721._transfer" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 82, + "end_line": 354, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "start_col": 38, + "start_line": 354 + } + }, + "1527": { + "accessible_scopes": [ + "openzeppelin.token.erc721.library", + "openzeppelin.token.erc721.library.ERC721", + "openzeppelin.token.erc721.library.ERC721._transfer" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 33, + "end_line": 13, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721_balances/decl.cairo" + }, + "parent_location": [ + { + "end_col": 54, + "end_line": 353, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "parent_location": [ + { + "end_col": 34, + "end_line": 21, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721_balances/decl.cairo" + }, + "parent_location": [ + { + "end_col": 47, + "end_line": 355, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "start_col": 9, + "start_line": 355 + }, + "While trying to retrieve the implicit argument 'syscall_ptr' in:" + ], + "start_col": 16, + "start_line": 21 + }, + "While expanding the reference 'syscall_ptr' in:" + ], + "start_col": 30, + "start_line": 353 + }, + "While trying to update the implicit return value 'syscall_ptr' in:" + ], + "start_col": 15, + "start_line": 13 + } + }, + "1528": { + "accessible_scopes": [ + "openzeppelin.token.erc721.library", + "openzeppelin.token.erc721.library.ERC721", + "openzeppelin.token.erc721.library.ERC721._transfer" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 61, + "end_line": 13, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721_balances/decl.cairo" + }, + "parent_location": [ + { + "end_col": 54, + "end_line": 353, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "parent_location": [ + { + "end_col": 62, + "end_line": 21, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721_balances/decl.cairo" + }, + "parent_location": [ + { + "end_col": 47, + "end_line": 355, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "start_col": 9, + "start_line": 355 + }, + "While trying to retrieve the implicit argument 'pedersen_ptr' in:" + ], + "start_col": 36, + "start_line": 21 + }, + "While expanding the reference 'pedersen_ptr' in:" + ], + "start_col": 30, + "start_line": 353 + }, + "While trying to update the implicit return value 'pedersen_ptr' in:" + ], + "start_col": 35, + "start_line": 13 + } + }, + "1529": { + "accessible_scopes": [ + "openzeppelin.token.erc721.library", + "openzeppelin.token.erc721.library.ERC721", + "openzeppelin.token.erc721.library.ERC721._transfer" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 29, + "end_line": 23, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/security/safemath/library.cairo" + }, + "parent_location": [ + { + "end_col": 82, + "end_line": 354, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "parent_location": [ + { + "end_col": 79, + "end_line": 21, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721_balances/decl.cairo" + }, + "parent_location": [ + { + "end_col": 47, + "end_line": 355, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "start_col": 9, + "start_line": 355 + }, + "While trying to retrieve the implicit argument 'range_check_ptr' in:" + ], + "start_col": 64, + "start_line": 21 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 38, + "start_line": 354 + }, + "While trying to update the implicit return value 'range_check_ptr' in:" + ], + "start_col": 14, + "start_line": 23 + } + }, + "1530": { + "accessible_scopes": [ + "openzeppelin.token.erc721.library", + "openzeppelin.token.erc721.library.ERC721", + "openzeppelin.token.erc721.library.ERC721._transfer" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 30, + "end_line": 332, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "parent_location": [ + { + "end_col": 33, + "end_line": 355, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "start_col": 31, + "start_line": 355 + }, + "While expanding the reference 'to' in:" + ], + "start_col": 22, + "start_line": 332 + } + }, + "1531": { + "accessible_scopes": [ + "openzeppelin.token.erc721.library", + "openzeppelin.token.erc721.library.ERC721", + "openzeppelin.token.erc721.library.ERC721._transfer" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 34, + "end_line": 354, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "parent_location": [ + { + "end_col": 46, + "end_line": 355, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "start_col": 35, + "start_line": 355 + }, + "While expanding the reference 'new_balance' in:" + ], + "start_col": 14, + "start_line": 354 + } + }, + "1532": { + "accessible_scopes": [ + "openzeppelin.token.erc721.library", + "openzeppelin.token.erc721.library.ERC721", + "openzeppelin.token.erc721.library.ERC721._transfer" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 34, + "end_line": 354, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "parent_location": [ + { + "end_col": 46, + "end_line": 355, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "start_col": 35, + "start_line": 355 + }, + "While expanding the reference 'new_balance' in:" + ], + "start_col": 14, + "start_line": 354 + } + }, + "1533": { + "accessible_scopes": [ + "openzeppelin.token.erc721.library", + "openzeppelin.token.erc721.library.ERC721", + "openzeppelin.token.erc721.library.ERC721._transfer" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 47, + "end_line": 355, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "start_col": 9, + "start_line": 355 + } + }, + "1535": { + "accessible_scopes": [ + "openzeppelin.token.erc721.library", + "openzeppelin.token.erc721.library.ERC721", + "openzeppelin.token.erc721.library.ERC721._transfer" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 49, + "end_line": 332, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "parent_location": [ + { + "end_col": 37, + "end_line": 358, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "start_col": 29, + "start_line": 358 + }, + "While expanding the reference 'token_id' in:" + ], + "start_col": 32, + "start_line": 332 + } + }, + "1536": { + "accessible_scopes": [ + "openzeppelin.token.erc721.library", + "openzeppelin.token.erc721.library.ERC721", + "openzeppelin.token.erc721.library.ERC721._transfer" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 49, + "end_line": 332, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "parent_location": [ + { + "end_col": 37, + "end_line": 358, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "start_col": 29, + "start_line": 358 + }, + "While expanding the reference 'token_id' in:" + ], + "start_col": 32, + "start_line": 332 + } + }, + "1537": { + "accessible_scopes": [ + "openzeppelin.token.erc721.library", + "openzeppelin.token.erc721.library.ERC721", + "openzeppelin.token.erc721.library.ERC721._transfer" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 30, + "end_line": 332, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "parent_location": [ + { + "end_col": 41, + "end_line": 358, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "start_col": 39, + "start_line": 358 + }, + "While expanding the reference 'to' in:" + ], + "start_col": 22, + "start_line": 332 + } + }, + "1538": { + "accessible_scopes": [ + "openzeppelin.token.erc721.library", + "openzeppelin.token.erc721.library.ERC721", + "openzeppelin.token.erc721.library.ERC721._transfer" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 42, + "end_line": 358, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "start_col": 9, + "start_line": 358 + } + }, + "1540": { + "accessible_scopes": [ + "openzeppelin.token.erc721.library", + "openzeppelin.token.erc721.library.ERC721", + "openzeppelin.token.erc721.library.ERC721._transfer" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 34, + "end_line": 21, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721_owners/decl.cairo" + }, + "parent_location": [ + { + "end_col": 42, + "end_line": 358, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "parent_location": [ + { + "end_col": 29, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/event/Transfer/a7a8ae41be29ac9f4f6c3b7837c448d787ca051dd1ade98f409e54d33d112504.cairo" + }, + "parent_location": [ + { + "end_col": 14, + "end_line": 28, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "parent_location": [ + { + "end_col": 43, + "end_line": 359, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "start_col": 9, + "start_line": 359 + }, + "While trying to retrieve the implicit argument 'syscall_ptr' in:" + ], + "start_col": 6, + "start_line": 28 + }, + "While handling event:" + ], + "start_col": 11, + "start_line": 1 + }, + "While expanding the reference 'syscall_ptr' in:" + ], + "start_col": 9, + "start_line": 358 + }, + "While trying to update the implicit return value 'syscall_ptr' in:" + ], + "start_col": 16, + "start_line": 21 + } + }, + "1541": { + "accessible_scopes": [ + "openzeppelin.token.erc721.library", + "openzeppelin.token.erc721.library.ERC721", + "openzeppelin.token.erc721.library.ERC721._transfer" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 79, + "end_line": 21, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721_owners/decl.cairo" + }, + "parent_location": [ + { + "end_col": 42, + "end_line": 358, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "parent_location": [ + { + "end_col": 46, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/event/Transfer/a7a8ae41be29ac9f4f6c3b7837c448d787ca051dd1ade98f409e54d33d112504.cairo" + }, + "parent_location": [ + { + "end_col": 14, + "end_line": 28, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "parent_location": [ + { + "end_col": 43, + "end_line": 359, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "start_col": 9, + "start_line": 359 + }, + "While trying to retrieve the implicit argument 'range_check_ptr' in:" + ], + "start_col": 6, + "start_line": 28 + }, + "While handling event:" + ], + "start_col": 31, + "start_line": 1 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 9, + "start_line": 358 + }, + "While trying to update the implicit return value 'range_check_ptr' in:" + ], + "start_col": 64, + "start_line": 21 + } + }, + "1542": { + "accessible_scopes": [ + "openzeppelin.token.erc721.library", + "openzeppelin.token.erc721.library.ERC721", + "openzeppelin.token.erc721.library.ERC721._transfer" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 20, + "end_line": 332, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "parent_location": [ + { + "end_col": 28, + "end_line": 359, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "start_col": 23, + "start_line": 359 + }, + "While expanding the reference 'from_' in:" + ], + "start_col": 9, + "start_line": 332 + } + }, + "1543": { + "accessible_scopes": [ + "openzeppelin.token.erc721.library", + "openzeppelin.token.erc721.library.ERC721", + "openzeppelin.token.erc721.library.ERC721._transfer" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 30, + "end_line": 332, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "parent_location": [ + { + "end_col": 32, + "end_line": 359, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "start_col": 30, + "start_line": 359 + }, + "While expanding the reference 'to' in:" + ], + "start_col": 22, + "start_line": 332 + } + }, + "1544": { + "accessible_scopes": [ + "openzeppelin.token.erc721.library", + "openzeppelin.token.erc721.library.ERC721", + "openzeppelin.token.erc721.library.ERC721._transfer" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 49, + "end_line": 332, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "parent_location": [ + { + "end_col": 42, + "end_line": 359, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "start_col": 34, + "start_line": 359 + }, + "While expanding the reference 'token_id' in:" + ], + "start_col": 32, + "start_line": 332 + } + }, + "1545": { + "accessible_scopes": [ + "openzeppelin.token.erc721.library", + "openzeppelin.token.erc721.library.ERC721", + "openzeppelin.token.erc721.library.ERC721._transfer" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 49, + "end_line": 332, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "parent_location": [ + { + "end_col": 42, + "end_line": 359, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "start_col": 34, + "start_line": 359 + }, + "While expanding the reference 'token_id' in:" + ], + "start_col": 32, + "start_line": 332 + } + }, + "1546": { + "accessible_scopes": [ + "openzeppelin.token.erc721.library", + "openzeppelin.token.erc721.library.ERC721", + "openzeppelin.token.erc721.library.ERC721._transfer" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 43, + "end_line": 359, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "start_col": 9, + "start_line": 359 + } + }, + "1548": { + "accessible_scopes": [ + "openzeppelin.token.erc721.library", + "openzeppelin.token.erc721.library.ERC721", + "openzeppelin.token.erc721.library.ERC721._transfer" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 29, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/event/Transfer/a7a8ae41be29ac9f4f6c3b7837c448d787ca051dd1ade98f409e54d33d112504.cairo" + }, + "parent_location": [ + { + "end_col": 14, + "end_line": 28, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "parent_location": [ + { + "end_col": 43, + "end_line": 359, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "parent_location": [ + { + "end_col": 38, + "end_line": 331, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "parent_location": [ + { + "end_col": 19, + "end_line": 360, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "start_col": 9, + "start_line": 360 + }, + "While trying to retrieve the implicit argument 'syscall_ptr' in:" + ], + "start_col": 20, + "start_line": 331 + }, + "While expanding the reference 'syscall_ptr' in:" + ], + "start_col": 9, + "start_line": 359 + }, + "While trying to update the implicit return value 'syscall_ptr' in:" + ], + "start_col": 6, + "start_line": 28 + }, + "While handling event:" + ], + "start_col": 11, + "start_line": 1 + } + }, + "1549": { + "accessible_scopes": [ + "openzeppelin.token.erc721.library", + "openzeppelin.token.erc721.library.ERC721", + "openzeppelin.token.erc721.library.ERC721._transfer" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 62, + "end_line": 21, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721_owners/decl.cairo" + }, + "parent_location": [ + { + "end_col": 42, + "end_line": 358, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "parent_location": [ + { + "end_col": 66, + "end_line": 331, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "parent_location": [ + { + "end_col": 19, + "end_line": 360, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "start_col": 9, + "start_line": 360 + }, + "While trying to retrieve the implicit argument 'pedersen_ptr' in:" + ], + "start_col": 40, + "start_line": 331 + }, + "While expanding the reference 'pedersen_ptr' in:" + ], + "start_col": 9, + "start_line": 358 + }, + "While trying to update the implicit return value 'pedersen_ptr' in:" + ], + "start_col": 36, + "start_line": 21 + } + }, + "1550": { + "accessible_scopes": [ + "openzeppelin.token.erc721.library", + "openzeppelin.token.erc721.library.ERC721", + "openzeppelin.token.erc721.library.ERC721._transfer" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 46, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/event/Transfer/a7a8ae41be29ac9f4f6c3b7837c448d787ca051dd1ade98f409e54d33d112504.cairo" + }, + "parent_location": [ + { + "end_col": 14, + "end_line": 28, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "parent_location": [ + { + "end_col": 43, + "end_line": 359, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "parent_location": [ + { + "end_col": 83, + "end_line": 331, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "parent_location": [ + { + "end_col": 19, + "end_line": 360, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "start_col": 9, + "start_line": 360 + }, + "While trying to retrieve the implicit argument 'range_check_ptr' in:" + ], + "start_col": 68, + "start_line": 331 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 9, + "start_line": 359 + }, + "While trying to update the implicit return value 'range_check_ptr' in:" + ], + "start_col": 6, + "start_line": 28 + }, + "While handling event:" + ], + "start_col": 31, + "start_line": 1 + } + }, + "1551": { + "accessible_scopes": [ + "openzeppelin.token.erc721.library", + "openzeppelin.token.erc721.library.ERC721", + "openzeppelin.token.erc721.library.ERC721._transfer" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 19, + "end_line": 360, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "start_col": 9, + "start_line": 360 + } + }, + "1552": { + "accessible_scopes": [ + "openzeppelin.token.erc721.library", + "openzeppelin.token.erc721.library.ERC721", + "openzeppelin.token.erc721.library.ERC721._safe_transfer" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 43, + "end_line": 363, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "parent_location": [ + { + "end_col": 38, + "end_line": 331, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "parent_location": [ + { + "end_col": 39, + "end_line": 366, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "start_col": 9, + "start_line": 366 + }, + "While trying to retrieve the implicit argument 'syscall_ptr' in:" + ], + "start_col": 20, + "start_line": 331 + }, + "While expanding the reference 'syscall_ptr' in:" + ], + "start_col": 25, + "start_line": 363 + } + }, + "1553": { + "accessible_scopes": [ + "openzeppelin.token.erc721.library", + "openzeppelin.token.erc721.library.ERC721", + "openzeppelin.token.erc721.library.ERC721._safe_transfer" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 71, + "end_line": 363, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "parent_location": [ + { + "end_col": 66, + "end_line": 331, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "parent_location": [ + { + "end_col": 39, + "end_line": 366, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "start_col": 9, + "start_line": 366 + }, + "While trying to retrieve the implicit argument 'pedersen_ptr' in:" + ], + "start_col": 40, + "start_line": 331 + }, + "While expanding the reference 'pedersen_ptr' in:" + ], + "start_col": 45, + "start_line": 363 + } + }, + "1554": { + "accessible_scopes": [ + "openzeppelin.token.erc721.library", + "openzeppelin.token.erc721.library.ERC721", + "openzeppelin.token.erc721.library.ERC721._safe_transfer" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 88, + "end_line": 363, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "parent_location": [ + { + "end_col": 83, + "end_line": 331, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "parent_location": [ + { + "end_col": 39, + "end_line": 366, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "start_col": 9, + "start_line": 366 + }, + "While trying to retrieve the implicit argument 'range_check_ptr' in:" + ], + "start_col": 68, + "start_line": 331 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 73, + "start_line": 363 + } + }, + "1555": { + "accessible_scopes": [ + "openzeppelin.token.erc721.library", + "openzeppelin.token.erc721.library.ERC721", + "openzeppelin.token.erc721.library.ERC721._safe_transfer" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 20, + "end_line": 364, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "parent_location": [ + { + "end_col": 24, + "end_line": 366, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "start_col": 19, + "start_line": 366 + }, + "While expanding the reference 'from_' in:" + ], + "start_col": 9, + "start_line": 364 + } + }, + "1556": { + "accessible_scopes": [ + "openzeppelin.token.erc721.library", + "openzeppelin.token.erc721.library.ERC721", + "openzeppelin.token.erc721.library.ERC721._safe_transfer" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 30, + "end_line": 364, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "parent_location": [ + { + "end_col": 28, + "end_line": 366, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "start_col": 26, + "start_line": 366 + }, + "While expanding the reference 'to' in:" + ], + "start_col": 22, + "start_line": 364 + } + }, + "1557": { + "accessible_scopes": [ + "openzeppelin.token.erc721.library", + "openzeppelin.token.erc721.library.ERC721", + "openzeppelin.token.erc721.library.ERC721._safe_transfer" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 49, + "end_line": 364, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "parent_location": [ + { + "end_col": 38, + "end_line": 366, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "start_col": 30, + "start_line": 366 + }, + "While expanding the reference 'token_id' in:" + ], + "start_col": 32, + "start_line": 364 + } + }, + "1558": { + "accessible_scopes": [ + "openzeppelin.token.erc721.library", + "openzeppelin.token.erc721.library.ERC721", + "openzeppelin.token.erc721.library.ERC721._safe_transfer" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 49, + "end_line": 364, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "parent_location": [ + { + "end_col": 38, + "end_line": 366, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "start_col": 30, + "start_line": 366 + }, + "While expanding the reference 'token_id' in:" + ], + "start_col": 32, + "start_line": 364 + } + }, + "1559": { + "accessible_scopes": [ + "openzeppelin.token.erc721.library", + "openzeppelin.token.erc721.library.ERC721", + "openzeppelin.token.erc721.library.ERC721._safe_transfer" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 39, + "end_line": 366, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "start_col": 9, + "start_line": 366 + } + }, + "1561": { + "accessible_scopes": [ + "openzeppelin.token.erc721.library", + "openzeppelin.token.erc721.library.ERC721", + "openzeppelin.token.erc721.library.ERC721._safe_transfer" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 20, + "end_line": 364, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "parent_location": [ + { + "end_col": 54, + "end_line": 368, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "start_col": 49, + "start_line": 368 + }, + "While expanding the reference 'from_' in:" + ], + "start_col": 9, + "start_line": 364 + } + }, + "1562": { + "accessible_scopes": [ + "openzeppelin.token.erc721.library", + "openzeppelin.token.erc721.library.ERC721", + "openzeppelin.token.erc721.library.ERC721._safe_transfer" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 30, + "end_line": 364, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "parent_location": [ + { + "end_col": 58, + "end_line": 368, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "start_col": 56, + "start_line": 368 + }, + "While expanding the reference 'to' in:" + ], + "start_col": 22, + "start_line": 364 + } + }, + "1563": { + "accessible_scopes": [ + "openzeppelin.token.erc721.library", + "openzeppelin.token.erc721.library.ERC721", + "openzeppelin.token.erc721.library.ERC721._safe_transfer" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 49, + "end_line": 364, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "parent_location": [ + { + "end_col": 68, + "end_line": 368, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "start_col": 60, + "start_line": 368 + }, + "While expanding the reference 'token_id' in:" + ], + "start_col": 32, + "start_line": 364 + } + }, + "1564": { + "accessible_scopes": [ + "openzeppelin.token.erc721.library", + "openzeppelin.token.erc721.library.ERC721", + "openzeppelin.token.erc721.library.ERC721._safe_transfer" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 49, + "end_line": 364, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "parent_location": [ + { + "end_col": 68, + "end_line": 368, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "start_col": 60, + "start_line": 368 + }, + "While expanding the reference 'token_id' in:" + ], + "start_col": 32, + "start_line": 364 + } + }, + "1565": { + "accessible_scopes": [ + "openzeppelin.token.erc721.library", + "openzeppelin.token.erc721.library.ERC721", + "openzeppelin.token.erc721.library.ERC721._safe_transfer" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 65, + "end_line": 364, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "parent_location": [ + { + "end_col": 78, + "end_line": 368, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "start_col": 70, + "start_line": 368 + }, + "While expanding the reference 'data_len' in:" + ], + "start_col": 51, + "start_line": 364 + } + }, + "1566": { + "accessible_scopes": [ + "openzeppelin.token.erc721.library", + "openzeppelin.token.erc721.library.ERC721", + "openzeppelin.token.erc721.library.ERC721._safe_transfer" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 78, + "end_line": 364, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "parent_location": [ + { + "end_col": 84, + "end_line": 368, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "start_col": 80, + "start_line": 368 + }, + "While expanding the reference 'data' in:" + ], + "start_col": 67, + "start_line": 364 + } + }, + "1567": { + "accessible_scopes": [ + "openzeppelin.token.erc721.library", + "openzeppelin.token.erc721.library.ERC721", + "openzeppelin.token.erc721.library.ERC721._safe_transfer" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 85, + "end_line": 368, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "start_col": 25, + "start_line": 368 + } + }, + "1569": { + "accessible_scopes": [ + "openzeppelin.token.erc721.library", + "openzeppelin.token.erc721.library.ERC721", + "openzeppelin.token.erc721.library.ERC721._safe_transfer" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 37, + "end_line": 370, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "start_col": 13, + "start_line": 370 + } + }, + "1571": { + "accessible_scopes": [ + "openzeppelin.token.erc721.library", + "openzeppelin.token.erc721.library.ERC721", + "openzeppelin.token.erc721.library.ERC721._safe_transfer" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 48, + "end_line": 453, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "parent_location": [ + { + "end_col": 85, + "end_line": 368, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "parent_location": [ + { + "end_col": 43, + "end_line": 363, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "parent_location": [ + { + "end_col": 19, + "end_line": 372, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "start_col": 9, + "start_line": 372 + }, + "While trying to retrieve the implicit argument 'syscall_ptr' in:" + ], + "start_col": 25, + "start_line": 363 + }, + "While expanding the reference 'syscall_ptr' in:" + ], + "start_col": 25, + "start_line": 368 + }, + "While trying to update the implicit return value 'syscall_ptr' in:" + ], + "start_col": 30, + "start_line": 453 + } + }, + "1572": { + "accessible_scopes": [ + "openzeppelin.token.erc721.library", + "openzeppelin.token.erc721.library.ERC721", + "openzeppelin.token.erc721.library.ERC721._safe_transfer" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 76, + "end_line": 453, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "parent_location": [ + { + "end_col": 85, + "end_line": 368, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "parent_location": [ + { + "end_col": 71, + "end_line": 363, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "parent_location": [ + { + "end_col": 19, + "end_line": 372, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "start_col": 9, + "start_line": 372 + }, + "While trying to retrieve the implicit argument 'pedersen_ptr' in:" + ], + "start_col": 45, + "start_line": 363 + }, + "While expanding the reference 'pedersen_ptr' in:" + ], + "start_col": 25, + "start_line": 368 + }, + "While trying to update the implicit return value 'pedersen_ptr' in:" + ], + "start_col": 50, + "start_line": 453 + } + }, + "1573": { + "accessible_scopes": [ + "openzeppelin.token.erc721.library", + "openzeppelin.token.erc721.library.ERC721", + "openzeppelin.token.erc721.library.ERC721._safe_transfer" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 93, + "end_line": 453, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "parent_location": [ + { + "end_col": 85, + "end_line": 368, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "parent_location": [ + { + "end_col": 88, + "end_line": 363, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "parent_location": [ + { + "end_col": 19, + "end_line": 372, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "start_col": 9, + "start_line": 372 + }, + "While trying to retrieve the implicit argument 'range_check_ptr' in:" + ], + "start_col": 73, + "start_line": 363 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 25, + "start_line": 368 + }, + "While trying to update the implicit return value 'range_check_ptr' in:" + ], + "start_col": 78, + "start_line": 453 + } + }, + "1574": { + "accessible_scopes": [ + "openzeppelin.token.erc721.library", + "openzeppelin.token.erc721.library.ERC721", + "openzeppelin.token.erc721.library.ERC721._safe_transfer" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 19, + "end_line": 372, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "start_col": 9, + "start_line": 372 + } + }, + "1575": { + "accessible_scopes": [ + "openzeppelin.token.erc721.library", + "openzeppelin.token.erc721.library.ERC721", + "openzeppelin.token.erc721.library.ERC721._mint" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 79, + "end_line": 375, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "parent_location": [ + { + "end_col": 35, + "end_line": 21, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/uint256.cairo" + }, + "parent_location": [ + { + "end_col": 36, + "end_line": 379, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "start_col": 13, + "start_line": 379 + }, + "While trying to retrieve the implicit argument 'range_check_ptr' in:" + ], + "start_col": 20, + "start_line": 21 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 64, + "start_line": 375 + } + }, + "1576": { + "accessible_scopes": [ + "openzeppelin.token.erc721.library", + "openzeppelin.token.erc721.library.ERC721", + "openzeppelin.token.erc721.library.ERC721._mint" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 36, + "end_line": 376, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "parent_location": [ + { + "end_col": 35, + "end_line": 379, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "start_col": 27, + "start_line": 379 + }, + "While expanding the reference 'token_id' in:" + ], + "start_col": 19, + "start_line": 376 + } + }, + "1577": { + "accessible_scopes": [ + "openzeppelin.token.erc721.library", + "openzeppelin.token.erc721.library.ERC721", + "openzeppelin.token.erc721.library.ERC721._mint" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 36, + "end_line": 376, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "parent_location": [ + { + "end_col": 35, + "end_line": 379, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "start_col": 27, + "start_line": 379 + }, + "While expanding the reference 'token_id' in:" + ], + "start_col": 19, + "start_line": 376 + } + }, + "1578": { + "accessible_scopes": [ + "openzeppelin.token.erc721.library", + "openzeppelin.token.erc721.library.ERC721", + "openzeppelin.token.erc721.library.ERC721._mint" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 36, + "end_line": 379, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "start_col": 13, + "start_line": 379 + } + }, + "1580": { + "accessible_scopes": [ + "openzeppelin.token.erc721.library", + "openzeppelin.token.erc721.library.ERC721", + "openzeppelin.token.erc721.library.ERC721._mint" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 17, + "end_line": 376, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "parent_location": [ + { + "end_col": 31, + "end_line": 382, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "start_col": 29, + "start_line": 382 + }, + "While expanding the reference 'to' in:" + ], + "start_col": 9, + "start_line": 376 + } + }, + "1581": { + "accessible_scopes": [ + "openzeppelin.token.erc721.library", + "openzeppelin.token.erc721.library.ERC721", + "openzeppelin.token.erc721.library.ERC721._mint" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 32, + "end_line": 382, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "start_col": 13, + "start_line": 382 + } + }, + "1583": { + "accessible_scopes": [ + "openzeppelin.token.erc721.library", + "openzeppelin.token.erc721.library.ERC721", + "openzeppelin.token.erc721.library.ERC721._mint" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 62, + "end_line": 375, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "parent_location": [ + { + "end_col": 36, + "end_line": 311, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "parent_location": [ + { + "end_col": 39, + "end_line": 386, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "start_col": 22, + "start_line": 386 + }, + "While trying to retrieve the implicit argument 'syscall_ptr' in:" + ], + "start_col": 18, + "start_line": 311 + }, + "While expanding the reference 'syscall_ptr' in:" + ], + "start_col": 44, + "start_line": 375 + } + }, + "1584": { + "accessible_scopes": [ + "openzeppelin.token.erc721.library", + "openzeppelin.token.erc721.library.ERC721", + "openzeppelin.token.erc721.library.ERC721._mint" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 42, + "end_line": 375, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "parent_location": [ + { + "end_col": 64, + "end_line": 311, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "parent_location": [ + { + "end_col": 39, + "end_line": 386, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "start_col": 22, + "start_line": 386 + }, + "While trying to retrieve the implicit argument 'pedersen_ptr' in:" + ], + "start_col": 38, + "start_line": 311 + }, + "While expanding the reference 'pedersen_ptr' in:" + ], + "start_col": 16, + "start_line": 375 + } + }, + "1585": { + "accessible_scopes": [ + "openzeppelin.token.erc721.library", + "openzeppelin.token.erc721.library.ERC721", + "openzeppelin.token.erc721.library.ERC721._mint" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 35, + "end_line": 21, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/uint256.cairo" + }, + "parent_location": [ + { + "end_col": 36, + "end_line": 379, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "parent_location": [ + { + "end_col": 81, + "end_line": 311, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "parent_location": [ + { + "end_col": 39, + "end_line": 386, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "start_col": 22, + "start_line": 386 + }, + "While trying to retrieve the implicit argument 'range_check_ptr' in:" + ], + "start_col": 66, + "start_line": 311 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 13, + "start_line": 379 + }, + "While trying to update the implicit return value 'range_check_ptr' in:" + ], + "start_col": 20, + "start_line": 21 + } + }, + "1586": { + "accessible_scopes": [ + "openzeppelin.token.erc721.library", + "openzeppelin.token.erc721.library.ERC721", + "openzeppelin.token.erc721.library.ERC721._mint" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 36, + "end_line": 376, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "parent_location": [ + { + "end_col": 38, + "end_line": 386, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "start_col": 30, + "start_line": 386 + }, + "While expanding the reference 'token_id' in:" + ], + "start_col": 19, + "start_line": 376 + } + }, + "1587": { + "accessible_scopes": [ + "openzeppelin.token.erc721.library", + "openzeppelin.token.erc721.library.ERC721", + "openzeppelin.token.erc721.library.ERC721._mint" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 36, + "end_line": 376, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "parent_location": [ + { + "end_col": 38, + "end_line": 386, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "start_col": 30, + "start_line": 386 + }, + "While expanding the reference 'token_id' in:" + ], + "start_col": 19, + "start_line": 376 + } + }, + "1588": { + "accessible_scopes": [ + "openzeppelin.token.erc721.library", + "openzeppelin.token.erc721.library.ERC721", + "openzeppelin.token.erc721.library.ERC721._mint" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 39, + "end_line": 386, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "start_col": 22, + "start_line": 386 + } + }, + "1590": { + "accessible_scopes": [ + "openzeppelin.token.erc721.library", + "openzeppelin.token.erc721.library.ERC721", + "openzeppelin.token.erc721.library.ERC721._mint" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 35, + "end_line": 388, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "start_col": 13, + "start_line": 388 + } + }, + "1592": { + "accessible_scopes": [ + "openzeppelin.token.erc721.library", + "openzeppelin.token.erc721.library.ERC721", + "openzeppelin.token.erc721.library.ERC721._mint" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 36, + "end_line": 311, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "parent_location": [ + { + "end_col": 39, + "end_line": 386, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "parent_location": [ + { + "end_col": 33, + "end_line": 13, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721_balances/decl.cairo" + }, + "parent_location": [ + { + "end_col": 58, + "end_line": 391, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "start_col": 34, + "start_line": 391 + }, + "While trying to retrieve the implicit argument 'syscall_ptr' in:" + ], + "start_col": 15, + "start_line": 13 + }, + "While expanding the reference 'syscall_ptr' in:" + ], + "start_col": 22, + "start_line": 386 + }, + "While trying to update the implicit return value 'syscall_ptr' in:" + ], + "start_col": 18, + "start_line": 311 + } + }, + "1593": { + "accessible_scopes": [ + "openzeppelin.token.erc721.library", + "openzeppelin.token.erc721.library.ERC721", + "openzeppelin.token.erc721.library.ERC721._mint" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 64, + "end_line": 311, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "parent_location": [ + { + "end_col": 39, + "end_line": 386, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "parent_location": [ + { + "end_col": 61, + "end_line": 13, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721_balances/decl.cairo" + }, + "parent_location": [ + { + "end_col": 58, + "end_line": 391, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "start_col": 34, + "start_line": 391 + }, + "While trying to retrieve the implicit argument 'pedersen_ptr' in:" + ], + "start_col": 35, + "start_line": 13 + }, + "While expanding the reference 'pedersen_ptr' in:" + ], + "start_col": 22, + "start_line": 386 + }, + "While trying to update the implicit return value 'pedersen_ptr' in:" + ], + "start_col": 38, + "start_line": 311 + } + }, + "1594": { + "accessible_scopes": [ + "openzeppelin.token.erc721.library", + "openzeppelin.token.erc721.library.ERC721", + "openzeppelin.token.erc721.library.ERC721._mint" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 81, + "end_line": 311, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "parent_location": [ + { + "end_col": 39, + "end_line": 386, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "parent_location": [ + { + "end_col": 78, + "end_line": 13, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721_balances/decl.cairo" + }, + "parent_location": [ + { + "end_col": 58, + "end_line": 391, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "start_col": 34, + "start_line": 391 + }, + "While trying to retrieve the implicit argument 'range_check_ptr' in:" + ], + "start_col": 63, + "start_line": 13 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 22, + "start_line": 386 + }, + "While trying to update the implicit return value 'range_check_ptr' in:" + ], + "start_col": 66, + "start_line": 311 + } + }, + "1595": { + "accessible_scopes": [ + "openzeppelin.token.erc721.library", + "openzeppelin.token.erc721.library.ERC721", + "openzeppelin.token.erc721.library.ERC721._mint" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 17, + "end_line": 376, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "parent_location": [ + { + "end_col": 57, + "end_line": 391, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "start_col": 55, + "start_line": 391 + }, + "While expanding the reference 'to' in:" + ], + "start_col": 9, + "start_line": 376 + } + }, + "1596": { + "accessible_scopes": [ + "openzeppelin.token.erc721.library", + "openzeppelin.token.erc721.library.ERC721", + "openzeppelin.token.erc721.library.ERC721._mint" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 58, + "end_line": 391, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "start_col": 34, + "start_line": 391 + } + }, + "1598": { + "accessible_scopes": [ + "openzeppelin.token.erc721.library", + "openzeppelin.token.erc721.library.ERC721", + "openzeppelin.token.erc721.library.ERC721._mint" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 72, + "end_line": 392, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "start_col": 71, + "start_line": 392 + } + }, + "1600": { + "accessible_scopes": [ + "openzeppelin.token.erc721.library", + "openzeppelin.token.erc721.library.ERC721", + "openzeppelin.token.erc721.library.ERC721._mint" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 75, + "end_line": 392, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "start_col": 74, + "start_line": 392 + } + }, + "1602": { + "accessible_scopes": [ + "openzeppelin.token.erc721.library", + "openzeppelin.token.erc721.library.ERC721", + "openzeppelin.token.erc721.library.ERC721._mint" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 77, + "end_line": 392, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "start_col": 38, + "start_line": 392 + } + }, + "1604": { + "accessible_scopes": [ + "openzeppelin.token.erc721.library", + "openzeppelin.token.erc721.library.ERC721", + "openzeppelin.token.erc721.library.ERC721._mint" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 33, + "end_line": 13, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721_balances/decl.cairo" + }, + "parent_location": [ + { + "end_col": 58, + "end_line": 391, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "parent_location": [ + { + "end_col": 34, + "end_line": 21, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721_balances/decl.cairo" + }, + "parent_location": [ + { + "end_col": 47, + "end_line": 393, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "start_col": 9, + "start_line": 393 + }, + "While trying to retrieve the implicit argument 'syscall_ptr' in:" + ], + "start_col": 16, + "start_line": 21 + }, + "While expanding the reference 'syscall_ptr' in:" + ], + "start_col": 34, + "start_line": 391 + }, + "While trying to update the implicit return value 'syscall_ptr' in:" + ], + "start_col": 15, + "start_line": 13 + } + }, + "1605": { + "accessible_scopes": [ + "openzeppelin.token.erc721.library", + "openzeppelin.token.erc721.library.ERC721", + "openzeppelin.token.erc721.library.ERC721._mint" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 61, + "end_line": 13, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721_balances/decl.cairo" + }, + "parent_location": [ + { + "end_col": 58, + "end_line": 391, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "parent_location": [ + { + "end_col": 62, + "end_line": 21, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721_balances/decl.cairo" + }, + "parent_location": [ + { + "end_col": 47, + "end_line": 393, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "start_col": 9, + "start_line": 393 + }, + "While trying to retrieve the implicit argument 'pedersen_ptr' in:" + ], + "start_col": 36, + "start_line": 21 + }, + "While expanding the reference 'pedersen_ptr' in:" + ], + "start_col": 34, + "start_line": 391 + }, + "While trying to update the implicit return value 'pedersen_ptr' in:" + ], + "start_col": 35, + "start_line": 13 + } + }, + "1606": { + "accessible_scopes": [ + "openzeppelin.token.erc721.library", + "openzeppelin.token.erc721.library.ERC721", + "openzeppelin.token.erc721.library.ERC721._mint" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 29, + "end_line": 23, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/security/safemath/library.cairo" + }, + "parent_location": [ + { + "end_col": 77, + "end_line": 392, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "parent_location": [ + { + "end_col": 79, + "end_line": 21, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721_balances/decl.cairo" + }, + "parent_location": [ + { + "end_col": 47, + "end_line": 393, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "start_col": 9, + "start_line": 393 + }, + "While trying to retrieve the implicit argument 'range_check_ptr' in:" + ], + "start_col": 64, + "start_line": 21 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 38, + "start_line": 392 + }, + "While trying to update the implicit return value 'range_check_ptr' in:" + ], + "start_col": 14, + "start_line": 23 + } + }, + "1607": { + "accessible_scopes": [ + "openzeppelin.token.erc721.library", + "openzeppelin.token.erc721.library.ERC721", + "openzeppelin.token.erc721.library.ERC721._mint" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 17, + "end_line": 376, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "parent_location": [ + { + "end_col": 33, + "end_line": 393, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "start_col": 31, + "start_line": 393 + }, + "While expanding the reference 'to' in:" + ], + "start_col": 9, + "start_line": 376 + } + }, + "1608": { + "accessible_scopes": [ + "openzeppelin.token.erc721.library", + "openzeppelin.token.erc721.library.ERC721", + "openzeppelin.token.erc721.library.ERC721._mint" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 34, + "end_line": 392, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "parent_location": [ + { + "end_col": 46, + "end_line": 393, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "start_col": 35, + "start_line": 393 + }, + "While expanding the reference 'new_balance' in:" + ], + "start_col": 14, + "start_line": 392 + } + }, + "1609": { + "accessible_scopes": [ + "openzeppelin.token.erc721.library", + "openzeppelin.token.erc721.library.ERC721", + "openzeppelin.token.erc721.library.ERC721._mint" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 34, + "end_line": 392, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "parent_location": [ + { + "end_col": 46, + "end_line": 393, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "start_col": 35, + "start_line": 393 + }, + "While expanding the reference 'new_balance' in:" + ], + "start_col": 14, + "start_line": 392 + } + }, + "1610": { + "accessible_scopes": [ + "openzeppelin.token.erc721.library", + "openzeppelin.token.erc721.library.ERC721", + "openzeppelin.token.erc721.library.ERC721._mint" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 47, + "end_line": 393, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "start_col": 9, + "start_line": 393 + } + }, + "1612": { + "accessible_scopes": [ + "openzeppelin.token.erc721.library", + "openzeppelin.token.erc721.library.ERC721", + "openzeppelin.token.erc721.library.ERC721._mint" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 36, + "end_line": 376, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "parent_location": [ + { + "end_col": 37, + "end_line": 394, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "start_col": 29, + "start_line": 394 + }, + "While expanding the reference 'token_id' in:" + ], + "start_col": 19, + "start_line": 376 + } + }, + "1613": { + "accessible_scopes": [ + "openzeppelin.token.erc721.library", + "openzeppelin.token.erc721.library.ERC721", + "openzeppelin.token.erc721.library.ERC721._mint" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 36, + "end_line": 376, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "parent_location": [ + { + "end_col": 37, + "end_line": 394, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "start_col": 29, + "start_line": 394 + }, + "While expanding the reference 'token_id' in:" + ], + "start_col": 19, + "start_line": 376 + } + }, + "1614": { + "accessible_scopes": [ + "openzeppelin.token.erc721.library", + "openzeppelin.token.erc721.library.ERC721", + "openzeppelin.token.erc721.library.ERC721._mint" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 17, + "end_line": 376, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "parent_location": [ + { + "end_col": 41, + "end_line": 394, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "start_col": 39, + "start_line": 394 + }, + "While expanding the reference 'to' in:" + ], + "start_col": 9, + "start_line": 376 + } + }, + "1615": { + "accessible_scopes": [ + "openzeppelin.token.erc721.library", + "openzeppelin.token.erc721.library.ERC721", + "openzeppelin.token.erc721.library.ERC721._mint" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 42, + "end_line": 394, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "start_col": 9, + "start_line": 394 + } + }, + "1617": { + "accessible_scopes": [ + "openzeppelin.token.erc721.library", + "openzeppelin.token.erc721.library.ERC721", + "openzeppelin.token.erc721.library.ERC721._mint" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 34, + "end_line": 21, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721_owners/decl.cairo" + }, + "parent_location": [ + { + "end_col": 42, + "end_line": 394, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "parent_location": [ + { + "end_col": 29, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/event/Transfer/a7a8ae41be29ac9f4f6c3b7837c448d787ca051dd1ade98f409e54d33d112504.cairo" + }, + "parent_location": [ + { + "end_col": 14, + "end_line": 28, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "parent_location": [ + { + "end_col": 39, + "end_line": 395, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "start_col": 9, + "start_line": 395 + }, + "While trying to retrieve the implicit argument 'syscall_ptr' in:" + ], + "start_col": 6, + "start_line": 28 + }, + "While handling event:" + ], + "start_col": 11, + "start_line": 1 + }, + "While expanding the reference 'syscall_ptr' in:" + ], + "start_col": 9, + "start_line": 394 + }, + "While trying to update the implicit return value 'syscall_ptr' in:" + ], + "start_col": 16, + "start_line": 21 + } + }, + "1618": { + "accessible_scopes": [ + "openzeppelin.token.erc721.library", + "openzeppelin.token.erc721.library.ERC721", + "openzeppelin.token.erc721.library.ERC721._mint" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 79, + "end_line": 21, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721_owners/decl.cairo" + }, + "parent_location": [ + { + "end_col": 42, + "end_line": 394, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "parent_location": [ + { + "end_col": 46, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/event/Transfer/a7a8ae41be29ac9f4f6c3b7837c448d787ca051dd1ade98f409e54d33d112504.cairo" + }, + "parent_location": [ + { + "end_col": 14, + "end_line": 28, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "parent_location": [ + { + "end_col": 39, + "end_line": 395, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "start_col": 9, + "start_line": 395 + }, + "While trying to retrieve the implicit argument 'range_check_ptr' in:" + ], + "start_col": 6, + "start_line": 28 + }, + "While handling event:" + ], + "start_col": 31, + "start_line": 1 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 9, + "start_line": 394 + }, + "While trying to update the implicit return value 'range_check_ptr' in:" + ], + "start_col": 64, + "start_line": 21 + } + }, + "1619": { + "accessible_scopes": [ + "openzeppelin.token.erc721.library", + "openzeppelin.token.erc721.library.ERC721", + "openzeppelin.token.erc721.library.ERC721._mint" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 24, + "end_line": 395, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "start_col": 23, + "start_line": 395 + } + }, + "1621": { + "accessible_scopes": [ + "openzeppelin.token.erc721.library", + "openzeppelin.token.erc721.library.ERC721", + "openzeppelin.token.erc721.library.ERC721._mint" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 17, + "end_line": 376, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "parent_location": [ + { + "end_col": 28, + "end_line": 395, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "start_col": 26, + "start_line": 395 + }, + "While expanding the reference 'to' in:" + ], + "start_col": 9, + "start_line": 376 + } + }, + "1622": { + "accessible_scopes": [ + "openzeppelin.token.erc721.library", + "openzeppelin.token.erc721.library.ERC721", + "openzeppelin.token.erc721.library.ERC721._mint" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 36, + "end_line": 376, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "parent_location": [ + { + "end_col": 38, + "end_line": 395, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "start_col": 30, + "start_line": 395 + }, + "While expanding the reference 'token_id' in:" + ], + "start_col": 19, + "start_line": 376 + } + }, + "1623": { + "accessible_scopes": [ + "openzeppelin.token.erc721.library", + "openzeppelin.token.erc721.library.ERC721", + "openzeppelin.token.erc721.library.ERC721._mint" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 36, + "end_line": 376, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "parent_location": [ + { + "end_col": 38, + "end_line": 395, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "start_col": 30, + "start_line": 395 + }, + "While expanding the reference 'token_id' in:" + ], + "start_col": 19, + "start_line": 376 + } + }, + "1624": { + "accessible_scopes": [ + "openzeppelin.token.erc721.library", + "openzeppelin.token.erc721.library.ERC721", + "openzeppelin.token.erc721.library.ERC721._mint" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 39, + "end_line": 395, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "start_col": 9, + "start_line": 395 + } + }, + "1626": { + "accessible_scopes": [ + "openzeppelin.token.erc721.library", + "openzeppelin.token.erc721.library.ERC721", + "openzeppelin.token.erc721.library.ERC721._mint" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 62, + "end_line": 21, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721_owners/decl.cairo" + }, + "parent_location": [ + { + "end_col": 42, + "end_line": 394, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "parent_location": [ + { + "end_col": 42, + "end_line": 375, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "parent_location": [ + { + "end_col": 19, + "end_line": 396, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "start_col": 9, + "start_line": 396 + }, + "While trying to retrieve the implicit argument 'pedersen_ptr' in:" + ], + "start_col": 16, + "start_line": 375 + }, + "While expanding the reference 'pedersen_ptr' in:" + ], + "start_col": 9, + "start_line": 394 + }, + "While trying to update the implicit return value 'pedersen_ptr' in:" + ], + "start_col": 36, + "start_line": 21 + } + }, + "1627": { + "accessible_scopes": [ + "openzeppelin.token.erc721.library", + "openzeppelin.token.erc721.library.ERC721", + "openzeppelin.token.erc721.library.ERC721._mint" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 29, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/event/Transfer/a7a8ae41be29ac9f4f6c3b7837c448d787ca051dd1ade98f409e54d33d112504.cairo" + }, + "parent_location": [ + { + "end_col": 14, + "end_line": 28, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "parent_location": [ + { + "end_col": 39, + "end_line": 395, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "parent_location": [ + { + "end_col": 62, + "end_line": 375, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "parent_location": [ + { + "end_col": 19, + "end_line": 396, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "start_col": 9, + "start_line": 396 + }, + "While trying to retrieve the implicit argument 'syscall_ptr' in:" + ], + "start_col": 44, + "start_line": 375 + }, + "While expanding the reference 'syscall_ptr' in:" + ], + "start_col": 9, + "start_line": 395 + }, + "While trying to update the implicit return value 'syscall_ptr' in:" + ], + "start_col": 6, + "start_line": 28 + }, + "While handling event:" + ], + "start_col": 11, + "start_line": 1 + } + }, + "1628": { + "accessible_scopes": [ + "openzeppelin.token.erc721.library", + "openzeppelin.token.erc721.library.ERC721", + "openzeppelin.token.erc721.library.ERC721._mint" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 46, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/event/Transfer/a7a8ae41be29ac9f4f6c3b7837c448d787ca051dd1ade98f409e54d33d112504.cairo" + }, + "parent_location": [ + { + "end_col": 14, + "end_line": 28, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "parent_location": [ + { + "end_col": 39, + "end_line": 395, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "parent_location": [ + { + "end_col": 79, + "end_line": 375, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "parent_location": [ + { + "end_col": 19, + "end_line": 396, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "start_col": 9, + "start_line": 396 + }, + "While trying to retrieve the implicit argument 'range_check_ptr' in:" + ], + "start_col": 64, + "start_line": 375 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 9, + "start_line": 395 + }, + "While trying to update the implicit return value 'range_check_ptr' in:" + ], + "start_col": 6, + "start_line": 28 + }, + "While handling event:" + ], + "start_col": 31, + "start_line": 1 + } + }, + "1629": { + "accessible_scopes": [ + "openzeppelin.token.erc721.library", + "openzeppelin.token.erc721.library.ERC721", + "openzeppelin.token.erc721.library.ERC721._mint" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 19, + "end_line": 396, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "start_col": 9, + "start_line": 396 + } + }, + "1630": { + "accessible_scopes": [ + "openzeppelin.token.erc721.library", + "openzeppelin.token.erc721.library.ERC721", + "openzeppelin.token.erc721.library.ERC721._burn" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 22, + "end_line": 415, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "start_col": 9, + "start_line": 415 + } + }, + "1632": { + "accessible_scopes": [ + "openzeppelin.token.erc721.library", + "openzeppelin.token.erc721.library.ERC721", + "openzeppelin.token.erc721.library.ERC721._burn" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 79, + "end_line": 414, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "parent_location": [ + { + "end_col": 35, + "end_line": 21, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/uint256.cairo" + }, + "parent_location": [ + { + "end_col": 36, + "end_line": 417, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "start_col": 13, + "start_line": 417 + }, + "While trying to retrieve the implicit argument 'range_check_ptr' in:" + ], + "start_col": 20, + "start_line": 21 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 64, + "start_line": 414 + } + }, + "1633": { + "accessible_scopes": [ + "openzeppelin.token.erc721.library", + "openzeppelin.token.erc721.library.ERC721", + "openzeppelin.token.erc721.library.ERC721._burn" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 98, + "end_line": 414, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "parent_location": [ + { + "end_col": 35, + "end_line": 417, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "start_col": 27, + "start_line": 417 + }, + "While expanding the reference 'token_id' in:" + ], + "start_col": 81, + "start_line": 414 + } + }, + "1634": { + "accessible_scopes": [ + "openzeppelin.token.erc721.library", + "openzeppelin.token.erc721.library.ERC721", + "openzeppelin.token.erc721.library.ERC721._burn" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 98, + "end_line": 414, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "parent_location": [ + { + "end_col": 35, + "end_line": 417, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "start_col": 27, + "start_line": 417 + }, + "While expanding the reference 'token_id' in:" + ], + "start_col": 81, + "start_line": 414 + } + }, + "1635": { + "accessible_scopes": [ + "openzeppelin.token.erc721.library", + "openzeppelin.token.erc721.library.ERC721", + "openzeppelin.token.erc721.library.ERC721._burn" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 36, + "end_line": 417, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "start_col": 13, + "start_line": 417 + } + }, + "1637": { + "accessible_scopes": [ + "openzeppelin.token.erc721.library", + "openzeppelin.token.erc721.library.ERC721", + "openzeppelin.token.erc721.library.ERC721._burn" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 62, + "end_line": 414, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "parent_location": [ + { + "end_col": 37, + "end_line": 109, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "parent_location": [ + { + "end_col": 41, + "end_line": 419, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "start_col": 23, + "start_line": 419 + }, + "While trying to retrieve the implicit argument 'syscall_ptr' in:" + ], + "start_col": 19, + "start_line": 109 + }, + "While expanding the reference 'syscall_ptr' in:" + ], + "start_col": 44, + "start_line": 414 + } + }, + "1638": { + "accessible_scopes": [ + "openzeppelin.token.erc721.library", + "openzeppelin.token.erc721.library.ERC721", + "openzeppelin.token.erc721.library.ERC721._burn" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 42, + "end_line": 414, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "parent_location": [ + { + "end_col": 65, + "end_line": 109, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "parent_location": [ + { + "end_col": 41, + "end_line": 419, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "start_col": 23, + "start_line": 419 + }, + "While trying to retrieve the implicit argument 'pedersen_ptr' in:" + ], + "start_col": 39, + "start_line": 109 + }, + "While expanding the reference 'pedersen_ptr' in:" + ], + "start_col": 16, + "start_line": 414 + } + }, + "1639": { + "accessible_scopes": [ + "openzeppelin.token.erc721.library", + "openzeppelin.token.erc721.library.ERC721", + "openzeppelin.token.erc721.library.ERC721._burn" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 35, + "end_line": 21, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/uint256.cairo" + }, + "parent_location": [ + { + "end_col": 36, + "end_line": 417, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "parent_location": [ + { + "end_col": 82, + "end_line": 109, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "parent_location": [ + { + "end_col": 41, + "end_line": 419, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "start_col": 23, + "start_line": 419 + }, + "While trying to retrieve the implicit argument 'range_check_ptr' in:" + ], + "start_col": 67, + "start_line": 109 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 13, + "start_line": 417 + }, + "While trying to update the implicit return value 'range_check_ptr' in:" + ], + "start_col": 20, + "start_line": 21 + } + }, + "1640": { + "accessible_scopes": [ + "openzeppelin.token.erc721.library", + "openzeppelin.token.erc721.library.ERC721", + "openzeppelin.token.erc721.library.ERC721._burn" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 98, + "end_line": 414, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "parent_location": [ + { + "end_col": 40, + "end_line": 419, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "start_col": 32, + "start_line": 419 + }, + "While expanding the reference 'token_id' in:" + ], + "start_col": 81, + "start_line": 414 + } + }, + "1641": { + "accessible_scopes": [ + "openzeppelin.token.erc721.library", + "openzeppelin.token.erc721.library.ERC721", + "openzeppelin.token.erc721.library.ERC721._burn" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 98, + "end_line": 414, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "parent_location": [ + { + "end_col": 40, + "end_line": 419, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "start_col": 32, + "start_line": 419 + }, + "While expanding the reference 'token_id' in:" + ], + "start_col": 81, + "start_line": 414 + } + }, + "1642": { + "accessible_scopes": [ + "openzeppelin.token.erc721.library", + "openzeppelin.token.erc721.library.ERC721", + "openzeppelin.token.erc721.library.ERC721._burn" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 41, + "end_line": 419, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "start_col": 23, + "start_line": 419 + } + }, + "1644": { + "accessible_scopes": [ + "openzeppelin.token.erc721.library", + "openzeppelin.token.erc721.library.ERC721", + "openzeppelin.token.erc721.library.ERC721._burn" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 37, + "end_line": 109, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "parent_location": [ + { + "end_col": 41, + "end_line": 419, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "parent_location": [ + { + "end_col": 37, + "end_line": 322, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "parent_location": [ + { + "end_col": 30, + "end_line": 422, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "start_col": 9, + "start_line": 422 + }, + "While trying to retrieve the implicit argument 'syscall_ptr' in:" + ], + "start_col": 19, + "start_line": 322 + }, + "While expanding the reference 'syscall_ptr' in:" + ], + "start_col": 23, + "start_line": 419 + }, + "While trying to update the implicit return value 'syscall_ptr' in:" + ], + "start_col": 19, + "start_line": 109 + } + }, + "1645": { + "accessible_scopes": [ + "openzeppelin.token.erc721.library", + "openzeppelin.token.erc721.library.ERC721", + "openzeppelin.token.erc721.library.ERC721._burn" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 65, + "end_line": 109, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "parent_location": [ + { + "end_col": 41, + "end_line": 419, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "parent_location": [ + { + "end_col": 65, + "end_line": 322, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "parent_location": [ + { + "end_col": 30, + "end_line": 422, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "start_col": 9, + "start_line": 422 + }, + "While trying to retrieve the implicit argument 'pedersen_ptr' in:" + ], + "start_col": 39, + "start_line": 322 + }, + "While expanding the reference 'pedersen_ptr' in:" + ], + "start_col": 23, + "start_line": 419 + }, + "While trying to update the implicit return value 'pedersen_ptr' in:" + ], + "start_col": 39, + "start_line": 109 + } + }, + "1646": { + "accessible_scopes": [ + "openzeppelin.token.erc721.library", + "openzeppelin.token.erc721.library.ERC721", + "openzeppelin.token.erc721.library.ERC721._burn" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 82, + "end_line": 109, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "parent_location": [ + { + "end_col": 41, + "end_line": 419, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "parent_location": [ + { + "end_col": 82, + "end_line": 322, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "parent_location": [ + { + "end_col": 30, + "end_line": 422, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "start_col": 9, + "start_line": 422 + }, + "While trying to retrieve the implicit argument 'range_check_ptr' in:" + ], + "start_col": 67, + "start_line": 322 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 23, + "start_line": 419 + }, + "While trying to update the implicit return value 'range_check_ptr' in:" + ], + "start_col": 67, + "start_line": 109 + } + }, + "1647": { + "accessible_scopes": [ + "openzeppelin.token.erc721.library", + "openzeppelin.token.erc721.library.ERC721", + "openzeppelin.token.erc721.library.ERC721._burn" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 19, + "end_line": 422, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "start_col": 18, + "start_line": 422 + } + }, + "1649": { + "accessible_scopes": [ + "openzeppelin.token.erc721.library", + "openzeppelin.token.erc721.library.ERC721", + "openzeppelin.token.erc721.library.ERC721._burn" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 98, + "end_line": 414, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "parent_location": [ + { + "end_col": 29, + "end_line": 422, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "start_col": 21, + "start_line": 422 + }, + "While expanding the reference 'token_id' in:" + ], + "start_col": 81, + "start_line": 414 + } + }, + "1650": { + "accessible_scopes": [ + "openzeppelin.token.erc721.library", + "openzeppelin.token.erc721.library.ERC721", + "openzeppelin.token.erc721.library.ERC721._burn" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 98, + "end_line": 414, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "parent_location": [ + { + "end_col": 29, + "end_line": 422, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "start_col": 21, + "start_line": 422 + }, + "While expanding the reference 'token_id' in:" + ], + "start_col": 81, + "start_line": 414 + } + }, + "1651": { + "accessible_scopes": [ + "openzeppelin.token.erc721.library", + "openzeppelin.token.erc721.library.ERC721", + "openzeppelin.token.erc721.library.ERC721._burn" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 30, + "end_line": 422, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "start_col": 9, + "start_line": 422 + } + }, + "1653": { + "accessible_scopes": [ + "openzeppelin.token.erc721.library", + "openzeppelin.token.erc721.library.ERC721", + "openzeppelin.token.erc721.library.ERC721._burn" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 19, + "end_line": 419, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "parent_location": [ + { + "end_col": 60, + "end_line": 425, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "start_col": 55, + "start_line": 425 + }, + "While expanding the reference 'owner' in:" + ], + "start_col": 14, + "start_line": 419 + } + }, + "1654": { + "accessible_scopes": [ + "openzeppelin.token.erc721.library", + "openzeppelin.token.erc721.library.ERC721", + "openzeppelin.token.erc721.library.ERC721._burn" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 61, + "end_line": 425, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "start_col": 34, + "start_line": 425 + } + }, + "1656": { + "accessible_scopes": [ + "openzeppelin.token.erc721.library", + "openzeppelin.token.erc721.library.ERC721", + "openzeppelin.token.erc721.library.ERC721._burn" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 75, + "end_line": 426, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "start_col": 74, + "start_line": 426 + } + }, + "1658": { + "accessible_scopes": [ + "openzeppelin.token.erc721.library", + "openzeppelin.token.erc721.library.ERC721", + "openzeppelin.token.erc721.library.ERC721._burn" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 78, + "end_line": 426, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "start_col": 77, + "start_line": 426 + } + }, + "1660": { + "accessible_scopes": [ + "openzeppelin.token.erc721.library", + "openzeppelin.token.erc721.library.ERC721", + "openzeppelin.token.erc721.library.ERC721._burn" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 80, + "end_line": 426, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "start_col": 38, + "start_line": 426 + } + }, + "1662": { + "accessible_scopes": [ + "openzeppelin.token.erc721.library", + "openzeppelin.token.erc721.library.ERC721", + "openzeppelin.token.erc721.library.ERC721._burn" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 33, + "end_line": 13, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721_balances/decl.cairo" + }, + "parent_location": [ + { + "end_col": 61, + "end_line": 425, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "parent_location": [ + { + "end_col": 34, + "end_line": 21, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721_balances/decl.cairo" + }, + "parent_location": [ + { + "end_col": 50, + "end_line": 427, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "start_col": 9, + "start_line": 427 + }, + "While trying to retrieve the implicit argument 'syscall_ptr' in:" + ], + "start_col": 16, + "start_line": 21 + }, + "While expanding the reference 'syscall_ptr' in:" + ], + "start_col": 34, + "start_line": 425 + }, + "While trying to update the implicit return value 'syscall_ptr' in:" + ], + "start_col": 15, + "start_line": 13 + } + }, + "1663": { + "accessible_scopes": [ + "openzeppelin.token.erc721.library", + "openzeppelin.token.erc721.library.ERC721", + "openzeppelin.token.erc721.library.ERC721._burn" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 61, + "end_line": 13, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721_balances/decl.cairo" + }, + "parent_location": [ + { + "end_col": 61, + "end_line": 425, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "parent_location": [ + { + "end_col": 62, + "end_line": 21, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721_balances/decl.cairo" + }, + "parent_location": [ + { + "end_col": 50, + "end_line": 427, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "start_col": 9, + "start_line": 427 + }, + "While trying to retrieve the implicit argument 'pedersen_ptr' in:" + ], + "start_col": 36, + "start_line": 21 + }, + "While expanding the reference 'pedersen_ptr' in:" + ], + "start_col": 34, + "start_line": 425 + }, + "While trying to update the implicit return value 'pedersen_ptr' in:" + ], + "start_col": 35, + "start_line": 13 + } + }, + "1664": { + "accessible_scopes": [ + "openzeppelin.token.erc721.library", + "openzeppelin.token.erc721.library.ERC721", + "openzeppelin.token.erc721.library.ERC721._burn" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 32, + "end_line": 35, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/security/safemath/library.cairo" + }, + "parent_location": [ + { + "end_col": 80, + "end_line": 426, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "parent_location": [ + { + "end_col": 79, + "end_line": 21, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721_balances/decl.cairo" + }, + "parent_location": [ + { + "end_col": 50, + "end_line": 427, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "start_col": 9, + "start_line": 427 + }, + "While trying to retrieve the implicit argument 'range_check_ptr' in:" + ], + "start_col": 64, + "start_line": 21 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 38, + "start_line": 426 + }, + "While trying to update the implicit return value 'range_check_ptr' in:" + ], + "start_col": 17, + "start_line": 35 + } + }, + "1665": { + "accessible_scopes": [ + "openzeppelin.token.erc721.library", + "openzeppelin.token.erc721.library.ERC721", + "openzeppelin.token.erc721.library.ERC721._burn" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 19, + "end_line": 419, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "parent_location": [ + { + "end_col": 36, + "end_line": 427, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "start_col": 31, + "start_line": 427 + }, + "While expanding the reference 'owner' in:" + ], + "start_col": 14, + "start_line": 419 + } + }, + "1666": { + "accessible_scopes": [ + "openzeppelin.token.erc721.library", + "openzeppelin.token.erc721.library.ERC721", + "openzeppelin.token.erc721.library.ERC721._burn" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 34, + "end_line": 426, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "parent_location": [ + { + "end_col": 49, + "end_line": 427, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "start_col": 38, + "start_line": 427 + }, + "While expanding the reference 'new_balance' in:" + ], + "start_col": 14, + "start_line": 426 + } + }, + "1667": { + "accessible_scopes": [ + "openzeppelin.token.erc721.library", + "openzeppelin.token.erc721.library.ERC721", + "openzeppelin.token.erc721.library.ERC721._burn" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 34, + "end_line": 426, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "parent_location": [ + { + "end_col": 49, + "end_line": 427, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "start_col": 38, + "start_line": 427 + }, + "While expanding the reference 'new_balance' in:" + ], + "start_col": 14, + "start_line": 426 + } + }, + "1668": { + "accessible_scopes": [ + "openzeppelin.token.erc721.library", + "openzeppelin.token.erc721.library.ERC721", + "openzeppelin.token.erc721.library.ERC721._burn" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 50, + "end_line": 427, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "start_col": 9, + "start_line": 427 + } + }, + "1670": { + "accessible_scopes": [ + "openzeppelin.token.erc721.library", + "openzeppelin.token.erc721.library.ERC721", + "openzeppelin.token.erc721.library.ERC721._burn" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 98, + "end_line": 414, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "parent_location": [ + { + "end_col": 37, + "end_line": 430, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "start_col": 29, + "start_line": 430 + }, + "While expanding the reference 'token_id' in:" + ], + "start_col": 81, + "start_line": 414 + } + }, + "1671": { + "accessible_scopes": [ + "openzeppelin.token.erc721.library", + "openzeppelin.token.erc721.library.ERC721", + "openzeppelin.token.erc721.library.ERC721._burn" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 98, + "end_line": 414, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "parent_location": [ + { + "end_col": 37, + "end_line": 430, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "start_col": 29, + "start_line": 430 + }, + "While expanding the reference 'token_id' in:" + ], + "start_col": 81, + "start_line": 414 + } + }, + "1672": { + "accessible_scopes": [ + "openzeppelin.token.erc721.library", + "openzeppelin.token.erc721.library.ERC721", + "openzeppelin.token.erc721.library.ERC721._burn" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 40, + "end_line": 430, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "start_col": 39, + "start_line": 430 + } + }, + "1674": { + "accessible_scopes": [ + "openzeppelin.token.erc721.library", + "openzeppelin.token.erc721.library.ERC721", + "openzeppelin.token.erc721.library.ERC721._burn" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 41, + "end_line": 430, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "start_col": 9, + "start_line": 430 + } + }, + "1676": { + "accessible_scopes": [ + "openzeppelin.token.erc721.library", + "openzeppelin.token.erc721.library.ERC721", + "openzeppelin.token.erc721.library.ERC721._burn" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 34, + "end_line": 21, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721_owners/decl.cairo" + }, + "parent_location": [ + { + "end_col": 41, + "end_line": 430, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "parent_location": [ + { + "end_col": 29, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/event/Transfer/a7a8ae41be29ac9f4f6c3b7837c448d787ca051dd1ade98f409e54d33d112504.cairo" + }, + "parent_location": [ + { + "end_col": 14, + "end_line": 28, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "parent_location": [ + { + "end_col": 42, + "end_line": 431, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "start_col": 9, + "start_line": 431 + }, + "While trying to retrieve the implicit argument 'syscall_ptr' in:" + ], + "start_col": 6, + "start_line": 28 + }, + "While handling event:" + ], + "start_col": 11, + "start_line": 1 + }, + "While expanding the reference 'syscall_ptr' in:" + ], + "start_col": 9, + "start_line": 430 + }, + "While trying to update the implicit return value 'syscall_ptr' in:" + ], + "start_col": 16, + "start_line": 21 + } + }, + "1677": { + "accessible_scopes": [ + "openzeppelin.token.erc721.library", + "openzeppelin.token.erc721.library.ERC721", + "openzeppelin.token.erc721.library.ERC721._burn" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 79, + "end_line": 21, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721_owners/decl.cairo" + }, + "parent_location": [ + { + "end_col": 41, + "end_line": 430, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "parent_location": [ + { + "end_col": 46, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/event/Transfer/a7a8ae41be29ac9f4f6c3b7837c448d787ca051dd1ade98f409e54d33d112504.cairo" + }, + "parent_location": [ + { + "end_col": 14, + "end_line": 28, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "parent_location": [ + { + "end_col": 42, + "end_line": 431, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "start_col": 9, + "start_line": 431 + }, + "While trying to retrieve the implicit argument 'range_check_ptr' in:" + ], + "start_col": 6, + "start_line": 28 + }, + "While handling event:" + ], + "start_col": 31, + "start_line": 1 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 9, + "start_line": 430 + }, + "While trying to update the implicit return value 'range_check_ptr' in:" + ], + "start_col": 64, + "start_line": 21 + } + }, + "1678": { + "accessible_scopes": [ + "openzeppelin.token.erc721.library", + "openzeppelin.token.erc721.library.ERC721", + "openzeppelin.token.erc721.library.ERC721._burn" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 19, + "end_line": 419, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "parent_location": [ + { + "end_col": 28, + "end_line": 431, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "start_col": 23, + "start_line": 431 + }, + "While expanding the reference 'owner' in:" + ], + "start_col": 14, + "start_line": 419 + } + }, + "1679": { + "accessible_scopes": [ + "openzeppelin.token.erc721.library", + "openzeppelin.token.erc721.library.ERC721", + "openzeppelin.token.erc721.library.ERC721._burn" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 31, + "end_line": 431, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "start_col": 30, + "start_line": 431 + } + }, + "1681": { + "accessible_scopes": [ + "openzeppelin.token.erc721.library", + "openzeppelin.token.erc721.library.ERC721", + "openzeppelin.token.erc721.library.ERC721._burn" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 98, + "end_line": 414, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "parent_location": [ + { + "end_col": 41, + "end_line": 431, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "start_col": 33, + "start_line": 431 + }, + "While expanding the reference 'token_id' in:" + ], + "start_col": 81, + "start_line": 414 + } + }, + "1682": { + "accessible_scopes": [ + "openzeppelin.token.erc721.library", + "openzeppelin.token.erc721.library.ERC721", + "openzeppelin.token.erc721.library.ERC721._burn" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 98, + "end_line": 414, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "parent_location": [ + { + "end_col": 41, + "end_line": 431, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "start_col": 33, + "start_line": 431 + }, + "While expanding the reference 'token_id' in:" + ], + "start_col": 81, + "start_line": 414 + } + }, + "1683": { + "accessible_scopes": [ + "openzeppelin.token.erc721.library", + "openzeppelin.token.erc721.library.ERC721", + "openzeppelin.token.erc721.library.ERC721._burn" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 42, + "end_line": 431, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "start_col": 9, + "start_line": 431 + } + }, + "1685": { + "accessible_scopes": [ + "openzeppelin.token.erc721.library", + "openzeppelin.token.erc721.library.ERC721", + "openzeppelin.token.erc721.library.ERC721._burn" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 62, + "end_line": 21, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721_owners/decl.cairo" + }, + "parent_location": [ + { + "end_col": 41, + "end_line": 430, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "parent_location": [ + { + "end_col": 42, + "end_line": 414, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "parent_location": [ + { + "end_col": 19, + "end_line": 432, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "start_col": 9, + "start_line": 432 + }, + "While trying to retrieve the implicit argument 'pedersen_ptr' in:" + ], + "start_col": 16, + "start_line": 414 + }, + "While expanding the reference 'pedersen_ptr' in:" + ], + "start_col": 9, + "start_line": 430 + }, + "While trying to update the implicit return value 'pedersen_ptr' in:" + ], + "start_col": 36, + "start_line": 21 + } + }, + "1686": { + "accessible_scopes": [ + "openzeppelin.token.erc721.library", + "openzeppelin.token.erc721.library.ERC721", + "openzeppelin.token.erc721.library.ERC721._burn" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 29, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/event/Transfer/a7a8ae41be29ac9f4f6c3b7837c448d787ca051dd1ade98f409e54d33d112504.cairo" + }, + "parent_location": [ + { + "end_col": 14, + "end_line": 28, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "parent_location": [ + { + "end_col": 42, + "end_line": 431, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "parent_location": [ + { + "end_col": 62, + "end_line": 414, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "parent_location": [ + { + "end_col": 19, + "end_line": 432, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "start_col": 9, + "start_line": 432 + }, + "While trying to retrieve the implicit argument 'syscall_ptr' in:" + ], + "start_col": 44, + "start_line": 414 + }, + "While expanding the reference 'syscall_ptr' in:" + ], + "start_col": 9, + "start_line": 431 + }, + "While trying to update the implicit return value 'syscall_ptr' in:" + ], + "start_col": 6, + "start_line": 28 + }, + "While handling event:" + ], + "start_col": 11, + "start_line": 1 + } + }, + "1687": { + "accessible_scopes": [ + "openzeppelin.token.erc721.library", + "openzeppelin.token.erc721.library.ERC721", + "openzeppelin.token.erc721.library.ERC721._burn" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 46, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/event/Transfer/a7a8ae41be29ac9f4f6c3b7837c448d787ca051dd1ade98f409e54d33d112504.cairo" + }, + "parent_location": [ + { + "end_col": 14, + "end_line": 28, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "parent_location": [ + { + "end_col": 42, + "end_line": 431, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "parent_location": [ + { + "end_col": 79, + "end_line": 414, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "parent_location": [ + { + "end_col": 19, + "end_line": 432, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "start_col": 9, + "start_line": 432 + }, + "While trying to retrieve the implicit argument 'range_check_ptr' in:" + ], + "start_col": 64, + "start_line": 414 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 9, + "start_line": 431 + }, + "While trying to update the implicit return value 'range_check_ptr' in:" + ], + "start_col": 6, + "start_line": 28 + }, + "While handling event:" + ], + "start_col": 31, + "start_line": 1 + } + }, + "1688": { + "accessible_scopes": [ + "openzeppelin.token.erc721.library", + "openzeppelin.token.erc721.library.ERC721", + "openzeppelin.token.erc721.library.ERC721._burn" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 19, + "end_line": 432, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "start_col": 9, + "start_line": 432 + } + }, + "1689": { + "accessible_scopes": [ + "openzeppelin.token.erc721.library", + "openzeppelin.token.erc721.library._check_onERC721Received" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 48, + "end_line": 453, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "parent_location": [ + { + "end_col": 43, + "end_line": 200, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/starknet/common/syscalls.cairo" + }, + "parent_location": [ + { + "end_col": 40, + "end_line": 456, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "start_col": 20, + "start_line": 456 + }, + "While trying to retrieve the implicit argument 'syscall_ptr' in:" + ], + "start_col": 25, + "start_line": 200 + }, + "While expanding the reference 'syscall_ptr' in:" + ], + "start_col": 30, + "start_line": 453 + } + }, + "1690": { + "accessible_scopes": [ + "openzeppelin.token.erc721.library", + "openzeppelin.token.erc721.library._check_onERC721Received" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 40, + "end_line": 456, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "start_col": 20, + "start_line": 456 + } + }, + "1692": { + "accessible_scopes": [ + "openzeppelin.token.erc721.library", + "openzeppelin.token.erc721.library._check_onERC721Received" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 43, + "end_line": 200, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/starknet/common/syscalls.cairo" + }, + "parent_location": [ + { + "end_col": 40, + "end_line": 456, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "parent_location": [ + { + "end_col": 42, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/contract_interface/IERC165/supportsInterface/2a1791e6eb36480300e6de9be3cf0c73e2bf0096fbe6995a9e4600da5d0240a4.cairo" + }, + "parent_location": [ + { + "end_col": 27, + "end_line": 8, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/introspection/erc165/IERC165.cairo" + }, + "parent_location": [ + { + "end_col": 76, + "end_line": 457, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "start_col": 26, + "start_line": 457 + }, + "While trying to retrieve the implicit argument 'syscall_ptr' in:" + ], + "start_col": 10, + "start_line": 8 + }, + "While handling contract interface function:" + ], + "start_col": 24, + "start_line": 1 + }, + "While expanding the reference 'syscall_ptr' in:" + ], + "start_col": 20, + "start_line": 456 + }, + "While trying to update the implicit return value 'syscall_ptr' in:" + ], + "start_col": 25, + "start_line": 200 + } + }, + "1693": { + "accessible_scopes": [ + "openzeppelin.token.erc721.library", + "openzeppelin.token.erc721.library._check_onERC721Received" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 93, + "end_line": 453, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "parent_location": [ + { + "end_col": 59, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/contract_interface/IERC165/supportsInterface/2a1791e6eb36480300e6de9be3cf0c73e2bf0096fbe6995a9e4600da5d0240a4.cairo" + }, + "parent_location": [ + { + "end_col": 27, + "end_line": 8, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/introspection/erc165/IERC165.cairo" + }, + "parent_location": [ + { + "end_col": 76, + "end_line": 457, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "start_col": 26, + "start_line": 457 + }, + "While trying to retrieve the implicit argument 'range_check_ptr' in:" + ], + "start_col": 10, + "start_line": 8 + }, + "While handling contract interface function:" + ], + "start_col": 44, + "start_line": 1 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 78, + "start_line": 453 + } + }, + "1694": { + "accessible_scopes": [ + "openzeppelin.token.erc721.library", + "openzeppelin.token.erc721.library._check_onERC721Received" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 26, + "end_line": 454, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "parent_location": [ + { + "end_col": 54, + "end_line": 457, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "start_col": 52, + "start_line": 457 + }, + "While expanding the reference 'to' in:" + ], + "start_col": 18, + "start_line": 454 + } + }, + "1695": { + "accessible_scopes": [ + "openzeppelin.token.erc721.library", + "openzeppelin.token.erc721.library._check_onERC721Received" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 75, + "end_line": 457, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "start_col": 56, + "start_line": 457 + } + }, + "1697": { + "accessible_scopes": [ + "openzeppelin.token.erc721.library", + "openzeppelin.token.erc721.library._check_onERC721Received" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 76, + "end_line": 457, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "start_col": 26, + "start_line": 457 + } + }, + "1699": { + "accessible_scopes": [ + "openzeppelin.token.erc721.library", + "openzeppelin.token.erc721.library._check_onERC721Received" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 29, + "end_line": 458, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "start_col": 9, + "start_line": 458 + } + }, + "1701": { + "accessible_scopes": [ + "openzeppelin.token.erc721.library", + "openzeppelin.token.erc721.library._check_onERC721Received" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 7, + "end_line": 458, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "start_col": 5, + "start_line": 458 + } + }, + "1703": { + "accessible_scopes": [ + "openzeppelin.token.erc721.library", + "openzeppelin.token.erc721.library._check_onERC721Received" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 42, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/contract_interface/IERC165/supportsInterface/2a1791e6eb36480300e6de9be3cf0c73e2bf0096fbe6995a9e4600da5d0240a4.cairo" + }, + "parent_location": [ + { + "end_col": 27, + "end_line": 8, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/introspection/erc165/IERC165.cairo" + }, + "parent_location": [ + { + "end_col": 76, + "end_line": 457, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "parent_location": [ + { + "end_col": 41, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/contract_interface/IERC721Receiver/onERC721Received/7867481925aec1465158cbaa62d2d4fc603e34734d22c5e07da7379a4d0d3f0e.cairo" + }, + "parent_location": [ + { + "end_col": 26, + "end_line": 10, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/IERC721Receiver.cairo" + }, + "parent_location": [ + { + "end_col": 10, + "end_line": 461, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "start_col": 26, + "start_line": 459 + }, + "While trying to retrieve the implicit argument 'syscall_ptr' in:" + ], + "start_col": 10, + "start_line": 10 + }, + "While handling contract interface function:" + ], + "start_col": 23, + "start_line": 1 + }, + "While expanding the reference 'syscall_ptr' in:" + ], + "start_col": 26, + "start_line": 457 + }, + "While trying to update the implicit return value 'syscall_ptr' in:" + ], + "start_col": 10, + "start_line": 8 + }, + "While handling contract interface function:" + ], + "start_col": 24, + "start_line": 1 + } + }, + "1704": { + "accessible_scopes": [ + "openzeppelin.token.erc721.library", + "openzeppelin.token.erc721.library._check_onERC721Received" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 59, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/contract_interface/IERC165/supportsInterface/2a1791e6eb36480300e6de9be3cf0c73e2bf0096fbe6995a9e4600da5d0240a4.cairo" + }, + "parent_location": [ + { + "end_col": 27, + "end_line": 8, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/introspection/erc165/IERC165.cairo" + }, + "parent_location": [ + { + "end_col": 76, + "end_line": 457, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "parent_location": [ + { + "end_col": 58, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/contract_interface/IERC721Receiver/onERC721Received/7867481925aec1465158cbaa62d2d4fc603e34734d22c5e07da7379a4d0d3f0e.cairo" + }, + "parent_location": [ + { + "end_col": 26, + "end_line": 10, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/IERC721Receiver.cairo" + }, + "parent_location": [ + { + "end_col": 10, + "end_line": 461, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "start_col": 26, + "start_line": 459 + }, + "While trying to retrieve the implicit argument 'range_check_ptr' in:" + ], + "start_col": 10, + "start_line": 10 + }, + "While handling contract interface function:" + ], + "start_col": 43, + "start_line": 1 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 26, + "start_line": 457 + }, + "While trying to update the implicit return value 'range_check_ptr' in:" + ], + "start_col": 10, + "start_line": 8 + }, + "While handling contract interface function:" + ], + "start_col": 44, + "start_line": 1 + } + }, + "1705": { + "accessible_scopes": [ + "openzeppelin.token.erc721.library", + "openzeppelin.token.erc721.library._check_onERC721Received" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 26, + "end_line": 454, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "parent_location": [ + { + "end_col": 15, + "end_line": 460, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "start_col": 13, + "start_line": 460 + }, + "While expanding the reference 'to' in:" + ], + "start_col": 18, + "start_line": 454 + } + }, + "1706": { + "accessible_scopes": [ + "openzeppelin.token.erc721.library", + "openzeppelin.token.erc721.library._check_onERC721Received" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 16, + "end_line": 456, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "parent_location": [ + { + "end_col": 23, + "end_line": 460, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "start_col": 17, + "start_line": 460 + }, + "While expanding the reference 'caller' in:" + ], + "start_col": 10, + "start_line": 456 + } + }, + "1707": { + "accessible_scopes": [ + "openzeppelin.token.erc721.library", + "openzeppelin.token.erc721.library._check_onERC721Received" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 16, + "end_line": 454, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "parent_location": [ + { + "end_col": 30, + "end_line": 460, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "start_col": 25, + "start_line": 460 + }, + "While expanding the reference 'from_' in:" + ], + "start_col": 5, + "start_line": 454 + } + }, + "1708": { + "accessible_scopes": [ + "openzeppelin.token.erc721.library", + "openzeppelin.token.erc721.library._check_onERC721Received" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 45, + "end_line": 454, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "parent_location": [ + { + "end_col": 40, + "end_line": 460, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "start_col": 32, + "start_line": 460 + }, + "While expanding the reference 'token_id' in:" + ], + "start_col": 28, + "start_line": 454 + } + }, + "1709": { + "accessible_scopes": [ + "openzeppelin.token.erc721.library", + "openzeppelin.token.erc721.library._check_onERC721Received" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 45, + "end_line": 454, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "parent_location": [ + { + "end_col": 40, + "end_line": 460, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "start_col": 32, + "start_line": 460 + }, + "While expanding the reference 'token_id' in:" + ], + "start_col": 28, + "start_line": 454 + } + }, + "1710": { + "accessible_scopes": [ + "openzeppelin.token.erc721.library", + "openzeppelin.token.erc721.library._check_onERC721Received" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 61, + "end_line": 454, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "parent_location": [ + { + "end_col": 50, + "end_line": 460, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "start_col": 42, + "start_line": 460 + }, + "While expanding the reference 'data_len' in:" + ], + "start_col": 47, + "start_line": 454 + } + }, + "1711": { + "accessible_scopes": [ + "openzeppelin.token.erc721.library", + "openzeppelin.token.erc721.library._check_onERC721Received" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 74, + "end_line": 454, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "parent_location": [ + { + "end_col": 56, + "end_line": 460, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "start_col": 52, + "start_line": 460 + }, + "While expanding the reference 'data' in:" + ], + "start_col": 63, + "start_line": 454 + } + }, + "1712": { + "accessible_scopes": [ + "openzeppelin.token.erc721.library", + "openzeppelin.token.erc721.library._check_onERC721Received" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 10, + "end_line": 461, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "start_col": 26, + "start_line": 459 + } + }, + "1714": { + "accessible_scopes": [ + "openzeppelin.token.erc721.library", + "openzeppelin.token.erc721.library._check_onERC721Received" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 51, + "end_line": 464, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "start_col": 13, + "start_line": 464 + } + }, + "1716": { + "accessible_scopes": [ + "openzeppelin.token.erc721.library", + "openzeppelin.token.erc721.library._check_onERC721Received" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 41, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/contract_interface/IERC721Receiver/onERC721Received/7867481925aec1465158cbaa62d2d4fc603e34734d22c5e07da7379a4d0d3f0e.cairo" + }, + "parent_location": [ + { + "end_col": 26, + "end_line": 10, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/IERC721Receiver.cairo" + }, + "parent_location": [ + { + "end_col": 10, + "end_line": 461, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "parent_location": [ + { + "end_col": 48, + "end_line": 453, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "parent_location": [ + { + "end_col": 31, + "end_line": 466, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "start_col": 9, + "start_line": 466 + }, + "While trying to retrieve the implicit argument 'syscall_ptr' in:" + ], + "start_col": 30, + "start_line": 453 + }, + "While expanding the reference 'syscall_ptr' in:" + ], + "start_col": 26, + "start_line": 459 + }, + "While trying to update the implicit return value 'syscall_ptr' in:" + ], + "start_col": 10, + "start_line": 10 + }, + "While handling contract interface function:" + ], + "start_col": 23, + "start_line": 1 + } + }, + "1717": { + "accessible_scopes": [ + "openzeppelin.token.erc721.library", + "openzeppelin.token.erc721.library._check_onERC721Received" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 76, + "end_line": 453, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "parent_location": [ + { + "end_col": 76, + "end_line": 453, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "parent_location": [ + { + "end_col": 31, + "end_line": 466, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "start_col": 9, + "start_line": 466 + }, + "While trying to retrieve the implicit argument 'pedersen_ptr' in:" + ], + "start_col": 50, + "start_line": 453 + }, + "While expanding the reference 'pedersen_ptr' in:" + ], + "start_col": 50, + "start_line": 453 + } + }, + "1718": { + "accessible_scopes": [ + "openzeppelin.token.erc721.library", + "openzeppelin.token.erc721.library._check_onERC721Received" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 58, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/contract_interface/IERC721Receiver/onERC721Received/7867481925aec1465158cbaa62d2d4fc603e34734d22c5e07da7379a4d0d3f0e.cairo" + }, + "parent_location": [ + { + "end_col": 26, + "end_line": 10, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/IERC721Receiver.cairo" + }, + "parent_location": [ + { + "end_col": 10, + "end_line": 461, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "parent_location": [ + { + "end_col": 93, + "end_line": 453, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "parent_location": [ + { + "end_col": 31, + "end_line": 466, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "start_col": 9, + "start_line": 466 + }, + "While trying to retrieve the implicit argument 'range_check_ptr' in:" + ], + "start_col": 78, + "start_line": 453 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 26, + "start_line": 459 + }, + "While trying to update the implicit return value 'range_check_ptr' in:" + ], + "start_col": 10, + "start_line": 10 + }, + "While handling contract interface function:" + ], + "start_col": 43, + "start_line": 1 + } + }, + "1719": { + "accessible_scopes": [ + "openzeppelin.token.erc721.library", + "openzeppelin.token.erc721.library._check_onERC721Received" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 29, + "end_line": 466, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "start_col": 25, + "start_line": 466 + } + }, + "1721": { + "accessible_scopes": [ + "openzeppelin.token.erc721.library", + "openzeppelin.token.erc721.library._check_onERC721Received" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 31, + "end_line": 466, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "start_col": 9, + "start_line": 466 + } + }, + "1722": { + "accessible_scopes": [ + "openzeppelin.token.erc721.library", + "openzeppelin.token.erc721.library._check_onERC721Received" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 42, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/contract_interface/IERC165/supportsInterface/2a1791e6eb36480300e6de9be3cf0c73e2bf0096fbe6995a9e4600da5d0240a4.cairo" + }, + "parent_location": [ + { + "end_col": 27, + "end_line": 8, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/introspection/erc165/IERC165.cairo" + }, + "parent_location": [ + { + "end_col": 76, + "end_line": 457, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "parent_location": [ + { + "end_col": 42, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/contract_interface/IERC165/supportsInterface/2a1791e6eb36480300e6de9be3cf0c73e2bf0096fbe6995a9e4600da5d0240a4.cairo" + }, + "parent_location": [ + { + "end_col": 27, + "end_line": 8, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/introspection/erc165/IERC165.cairo" + }, + "parent_location": [ + { + "end_col": 66, + "end_line": 469, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "start_col": 24, + "start_line": 469 + }, + "While trying to retrieve the implicit argument 'syscall_ptr' in:" + ], + "start_col": 10, + "start_line": 8 + }, + "While handling contract interface function:" + ], + "start_col": 24, + "start_line": 1 + }, + "While expanding the reference 'syscall_ptr' in:" + ], + "start_col": 26, + "start_line": 457 + }, + "While trying to update the implicit return value 'syscall_ptr' in:" + ], + "start_col": 10, + "start_line": 8 + }, + "While handling contract interface function:" + ], + "start_col": 24, + "start_line": 1 + } + }, + "1723": { + "accessible_scopes": [ + "openzeppelin.token.erc721.library", + "openzeppelin.token.erc721.library._check_onERC721Received" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 59, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/contract_interface/IERC165/supportsInterface/2a1791e6eb36480300e6de9be3cf0c73e2bf0096fbe6995a9e4600da5d0240a4.cairo" + }, + "parent_location": [ + { + "end_col": 27, + "end_line": 8, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/introspection/erc165/IERC165.cairo" + }, + "parent_location": [ + { + "end_col": 76, + "end_line": 457, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "parent_location": [ + { + "end_col": 59, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/contract_interface/IERC165/supportsInterface/2a1791e6eb36480300e6de9be3cf0c73e2bf0096fbe6995a9e4600da5d0240a4.cairo" + }, + "parent_location": [ + { + "end_col": 27, + "end_line": 8, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/introspection/erc165/IERC165.cairo" + }, + "parent_location": [ + { + "end_col": 66, + "end_line": 469, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "start_col": 24, + "start_line": 469 + }, + "While trying to retrieve the implicit argument 'range_check_ptr' in:" + ], + "start_col": 10, + "start_line": 8 + }, + "While handling contract interface function:" + ], + "start_col": 44, + "start_line": 1 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 26, + "start_line": 457 + }, + "While trying to update the implicit return value 'range_check_ptr' in:" + ], + "start_col": 10, + "start_line": 8 + }, + "While handling contract interface function:" + ], + "start_col": 44, + "start_line": 1 + } + }, + "1724": { + "accessible_scopes": [ + "openzeppelin.token.erc721.library", + "openzeppelin.token.erc721.library._check_onERC721Received" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 26, + "end_line": 454, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "parent_location": [ + { + "end_col": 52, + "end_line": 469, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "start_col": 50, + "start_line": 469 + }, + "While expanding the reference 'to' in:" + ], + "start_col": 18, + "start_line": 454 + } + }, + "1725": { + "accessible_scopes": [ + "openzeppelin.token.erc721.library", + "openzeppelin.token.erc721.library._check_onERC721Received" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 65, + "end_line": 469, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "start_col": 54, + "start_line": 469 + } + }, + "1727": { + "accessible_scopes": [ + "openzeppelin.token.erc721.library", + "openzeppelin.token.erc721.library._check_onERC721Received" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 66, + "end_line": 469, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "start_col": 24, + "start_line": 469 + } + }, + "1729": { + "accessible_scopes": [ + "openzeppelin.token.erc721.library", + "openzeppelin.token.erc721.library._check_onERC721Received" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 42, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/contract_interface/IERC165/supportsInterface/2a1791e6eb36480300e6de9be3cf0c73e2bf0096fbe6995a9e4600da5d0240a4.cairo" + }, + "parent_location": [ + { + "end_col": 27, + "end_line": 8, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/introspection/erc165/IERC165.cairo" + }, + "parent_location": [ + { + "end_col": 66, + "end_line": 469, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "parent_location": [ + { + "end_col": 48, + "end_line": 453, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "parent_location": [ + { + "end_col": 33, + "end_line": 470, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "start_col": 5, + "start_line": 470 + }, + "While trying to retrieve the implicit argument 'syscall_ptr' in:" + ], + "start_col": 30, + "start_line": 453 + }, + "While expanding the reference 'syscall_ptr' in:" + ], + "start_col": 24, + "start_line": 469 + }, + "While trying to update the implicit return value 'syscall_ptr' in:" + ], + "start_col": 10, + "start_line": 8 + }, + "While handling contract interface function:" + ], + "start_col": 24, + "start_line": 1 + } + }, + "1730": { + "accessible_scopes": [ + "openzeppelin.token.erc721.library", + "openzeppelin.token.erc721.library._check_onERC721Received" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 76, + "end_line": 453, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "parent_location": [ + { + "end_col": 76, + "end_line": 453, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "parent_location": [ + { + "end_col": 33, + "end_line": 470, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "start_col": 5, + "start_line": 470 + }, + "While trying to retrieve the implicit argument 'pedersen_ptr' in:" + ], + "start_col": 50, + "start_line": 453 + }, + "While expanding the reference 'pedersen_ptr' in:" + ], + "start_col": 50, + "start_line": 453 + } + }, + "1731": { + "accessible_scopes": [ + "openzeppelin.token.erc721.library", + "openzeppelin.token.erc721.library._check_onERC721Received" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 59, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/contract_interface/IERC165/supportsInterface/2a1791e6eb36480300e6de9be3cf0c73e2bf0096fbe6995a9e4600da5d0240a4.cairo" + }, + "parent_location": [ + { + "end_col": 27, + "end_line": 8, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/introspection/erc165/IERC165.cairo" + }, + "parent_location": [ + { + "end_col": 66, + "end_line": 469, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "parent_location": [ + { + "end_col": 93, + "end_line": 453, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "parent_location": [ + { + "end_col": 33, + "end_line": 470, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "start_col": 5, + "start_line": 470 + }, + "While trying to retrieve the implicit argument 'range_check_ptr' in:" + ], + "start_col": 78, + "start_line": 453 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 24, + "start_line": 469 + }, + "While trying to update the implicit return value 'range_check_ptr' in:" + ], + "start_col": 10, + "start_line": 8 + }, + "While handling contract interface function:" + ], + "start_col": 44, + "start_line": 1 + } + }, + "1732": { + "accessible_scopes": [ + "openzeppelin.token.erc721.library", + "openzeppelin.token.erc721.library._check_onERC721Received" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 20, + "end_line": 469, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "parent_location": [ + { + "end_col": 31, + "end_line": 470, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "start_col": 21, + "start_line": 470 + }, + "While expanding the reference 'is_account' in:" + ], + "start_col": 10, + "start_line": 469 + } + }, + "1733": { + "accessible_scopes": [ + "openzeppelin.token.erc721.library", + "openzeppelin.token.erc721.library._check_onERC721Received" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 33, + "end_line": 470, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "start_col": 5, + "start_line": 470 + } + }, + "1734": { + "accessible_scopes": [ + "openzeppelin.token.erc721.enumerable.library", + "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable_all_tokens_len", + "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable_all_tokens_len.addr" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 41, + "end_line": 7, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721Enumerable_all_tokens_len/impl.cairo" + }, + "parent_location": [ + { + "end_col": 41, + "end_line": 7, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721Enumerable_all_tokens_len/decl.cairo" + }, + "parent_location": [ + { + "end_col": 26, + "end_line": 9, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721Enumerable_all_tokens_len/impl.cairo" + }, + "start_col": 9, + "start_line": 9 + }, + "While trying to retrieve the implicit argument 'pedersen_ptr' in:" + ], + "start_col": 15, + "start_line": 7 + }, + "While expanding the reference 'pedersen_ptr' in:" + ], + "start_col": 15, + "start_line": 7 + } + }, + "1735": { + "accessible_scopes": [ + "openzeppelin.token.erc721.enumerable.library", + "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable_all_tokens_len", + "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable_all_tokens_len.addr" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 58, + "end_line": 7, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721Enumerable_all_tokens_len/impl.cairo" + }, + "parent_location": [ + { + "end_col": 58, + "end_line": 7, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721Enumerable_all_tokens_len/decl.cairo" + }, + "parent_location": [ + { + "end_col": 26, + "end_line": 9, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721Enumerable_all_tokens_len/impl.cairo" + }, + "start_col": 9, + "start_line": 9 + }, + "While trying to retrieve the implicit argument 'range_check_ptr' in:" + ], + "start_col": 43, + "start_line": 7 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 43, + "start_line": 7 + } + }, + "1736": { + "accessible_scopes": [ + "openzeppelin.token.erc721.enumerable.library", + "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable_all_tokens_len", + "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable_all_tokens_len.addr" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 95, + "end_line": 8, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721Enumerable_all_tokens_len/impl.cairo" + }, + "parent_location": [ + { + "end_col": 24, + "end_line": 9, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721Enumerable_all_tokens_len/impl.cairo" + }, + "start_col": 21, + "start_line": 9 + }, + "While expanding the reference 'res' in:" + ], + "start_col": 19, + "start_line": 8 + } + }, + "1738": { + "accessible_scopes": [ + "openzeppelin.token.erc721.enumerable.library", + "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable_all_tokens_len", + "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable_all_tokens_len.addr" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 26, + "end_line": 9, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721Enumerable_all_tokens_len/impl.cairo" + }, + "start_col": 9, + "start_line": 9 + } + }, + "1739": { + "accessible_scopes": [ + "openzeppelin.token.erc721.enumerable.library", + "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable_all_tokens_len", + "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable_all_tokens_len.read" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 61, + "end_line": 12, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721Enumerable_all_tokens_len/impl.cairo" + }, + "parent_location": [ + { + "end_col": 41, + "end_line": 7, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721Enumerable_all_tokens_len/decl.cairo" + }, + "parent_location": [ + { + "end_col": 36, + "end_line": 15, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721Enumerable_all_tokens_len/impl.cairo" + }, + "start_col": 30, + "start_line": 15 + }, + "While trying to retrieve the implicit argument 'pedersen_ptr' in:" + ], + "start_col": 15, + "start_line": 7 + }, + "While expanding the reference 'pedersen_ptr' in:" + ], + "start_col": 35, + "start_line": 12 + } + }, + "1740": { + "accessible_scopes": [ + "openzeppelin.token.erc721.enumerable.library", + "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable_all_tokens_len", + "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable_all_tokens_len.read" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 78, + "end_line": 12, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721Enumerable_all_tokens_len/impl.cairo" + }, + "parent_location": [ + { + "end_col": 58, + "end_line": 7, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721Enumerable_all_tokens_len/decl.cairo" + }, + "parent_location": [ + { + "end_col": 36, + "end_line": 15, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721Enumerable_all_tokens_len/impl.cairo" + }, + "start_col": 30, + "start_line": 15 + }, + "While trying to retrieve the implicit argument 'range_check_ptr' in:" + ], + "start_col": 43, + "start_line": 7 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 63, + "start_line": 12 + } + }, + "1741": { + "accessible_scopes": [ + "openzeppelin.token.erc721.enumerable.library", + "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable_all_tokens_len", + "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable_all_tokens_len.read" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 36, + "end_line": 15, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721Enumerable_all_tokens_len/impl.cairo" + }, + "start_col": 30, + "start_line": 15 + } + }, + "1743": { + "accessible_scopes": [ + "openzeppelin.token.erc721.enumerable.library", + "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable_all_tokens_len", + "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable_all_tokens_len.read" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 33, + "end_line": 12, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721Enumerable_all_tokens_len/impl.cairo" + }, + "parent_location": [ + { + "end_col": 37, + "end_line": 352, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/starknet/common/syscalls.cairo" + }, + "parent_location": [ + { + "end_col": 75, + "end_line": 16, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721Enumerable_all_tokens_len/impl.cairo" + }, + "start_col": 37, + "start_line": 16 + }, + "While trying to retrieve the implicit argument 'syscall_ptr' in:" + ], + "start_col": 19, + "start_line": 352 + }, + "While expanding the reference 'syscall_ptr' in:" + ], + "start_col": 15, + "start_line": 12 + } + }, + "1744": { + "accessible_scopes": [ + "openzeppelin.token.erc721.enumerable.library", + "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable_all_tokens_len", + "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable_all_tokens_len.read" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 26, + "end_line": 15, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721Enumerable_all_tokens_len/impl.cairo" + }, + "parent_location": [ + { + "end_col": 70, + "end_line": 16, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721Enumerable_all_tokens_len/impl.cairo" + }, + "start_col": 58, + "start_line": 16 + }, + "While expanding the reference 'storage_addr' in:" + ], + "start_col": 14, + "start_line": 15 + } + }, + "1745": { + "accessible_scopes": [ + "openzeppelin.token.erc721.enumerable.library", + "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable_all_tokens_len", + "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable_all_tokens_len.read" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 75, + "end_line": 16, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721Enumerable_all_tokens_len/impl.cairo" + }, + "start_col": 37, + "start_line": 16 + } + }, + "1747": { + "accessible_scopes": [ + "openzeppelin.token.erc721.enumerable.library", + "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable_all_tokens_len", + "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable_all_tokens_len.read" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 37, + "end_line": 352, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/starknet/common/syscalls.cairo" + }, + "parent_location": [ + { + "end_col": 75, + "end_line": 16, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721Enumerable_all_tokens_len/impl.cairo" + }, + "parent_location": [ + { + "end_col": 37, + "end_line": 352, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/starknet/common/syscalls.cairo" + }, + "parent_location": [ + { + "end_col": 75, + "end_line": 17, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721Enumerable_all_tokens_len/impl.cairo" + }, + "start_col": 37, + "start_line": 17 + }, + "While trying to retrieve the implicit argument 'syscall_ptr' in:" + ], + "start_col": 19, + "start_line": 352 + }, + "While expanding the reference 'syscall_ptr' in:" + ], + "start_col": 37, + "start_line": 16 + }, + "While trying to update the implicit return value 'syscall_ptr' in:" + ], + "start_col": 19, + "start_line": 352 + } + }, + "1748": { + "accessible_scopes": [ + "openzeppelin.token.erc721.enumerable.library", + "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable_all_tokens_len", + "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable_all_tokens_len.read" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 74, + "end_line": 17, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721Enumerable_all_tokens_len/impl.cairo" + }, + "start_col": 58, + "start_line": 17 + } + }, + "1750": { + "accessible_scopes": [ + "openzeppelin.token.erc721.enumerable.library", + "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable_all_tokens_len", + "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable_all_tokens_len.read" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 75, + "end_line": 17, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721Enumerable_all_tokens_len/impl.cairo" + }, + "start_col": 37, + "start_line": 17 + } + }, + "1752": { + "accessible_scopes": [ + "openzeppelin.token.erc721.enumerable.library", + "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable_all_tokens_len", + "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable_all_tokens_len.read" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 37, + "end_line": 352, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/starknet/common/syscalls.cairo" + }, + "parent_location": [ + { + "end_col": 75, + "end_line": 17, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721Enumerable_all_tokens_len/impl.cairo" + }, + "parent_location": [ + { + "end_col": 42, + "end_line": 19, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721Enumerable_all_tokens_len/impl.cairo" + }, + "start_col": 31, + "start_line": 19 + }, + "While expanding the reference 'syscall_ptr' in:" + ], + "start_col": 37, + "start_line": 17 + }, + "While trying to update the implicit return value 'syscall_ptr' in:" + ], + "start_col": 19, + "start_line": 352 + } + }, + "1753": { + "accessible_scopes": [ + "openzeppelin.token.erc721.enumerable.library", + "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable_all_tokens_len", + "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable_all_tokens_len.read" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 41, + "end_line": 7, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721Enumerable_all_tokens_len/decl.cairo" + }, + "parent_location": [ + { + "end_col": 36, + "end_line": 15, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721Enumerable_all_tokens_len/impl.cairo" + }, + "parent_location": [ + { + "end_col": 44, + "end_line": 20, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721Enumerable_all_tokens_len/impl.cairo" + }, + "start_col": 32, + "start_line": 20 + }, + "While expanding the reference 'pedersen_ptr' in:" + ], + "start_col": 30, + "start_line": 15 + }, + "While trying to update the implicit return value 'pedersen_ptr' in:" + ], + "start_col": 15, + "start_line": 7 + } + }, + "1754": { + "accessible_scopes": [ + "openzeppelin.token.erc721.enumerable.library", + "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable_all_tokens_len", + "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable_all_tokens_len.read" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 58, + "end_line": 7, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721Enumerable_all_tokens_len/decl.cairo" + }, + "parent_location": [ + { + "end_col": 36, + "end_line": 15, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721Enumerable_all_tokens_len/impl.cairo" + }, + "parent_location": [ + { + "end_col": 50, + "end_line": 21, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721Enumerable_all_tokens_len/impl.cairo" + }, + "start_col": 35, + "start_line": 21 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 30, + "start_line": 15 + }, + "While trying to update the implicit return value 'range_check_ptr' in:" + ], + "start_col": 43, + "start_line": 7 + } + }, + "1755": { + "accessible_scopes": [ + "openzeppelin.token.erc721.enumerable.library", + "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable_all_tokens_len", + "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable_all_tokens_len.read" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 33, + "end_line": 16, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721Enumerable_all_tokens_len/impl.cairo" + }, + "parent_location": [ + { + "end_col": 64, + "end_line": 22, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721Enumerable_all_tokens_len/impl.cairo" + }, + "start_col": 45, + "start_line": 22 + }, + "While expanding the reference '__storage_var_temp0' in:" + ], + "start_col": 14, + "start_line": 16 + } + }, + "1756": { + "accessible_scopes": [ + "openzeppelin.token.erc721.enumerable.library", + "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable_all_tokens_len", + "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable_all_tokens_len.read" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 33, + "end_line": 17, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721Enumerable_all_tokens_len/impl.cairo" + }, + "parent_location": [ + { + "end_col": 64, + "end_line": 23, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721Enumerable_all_tokens_len/impl.cairo" + }, + "start_col": 45, + "start_line": 23 + }, + "While expanding the reference '__storage_var_temp1' in:" + ], + "start_col": 14, + "start_line": 17 + } + }, + "1757": { + "accessible_scopes": [ + "openzeppelin.token.erc721.enumerable.library", + "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable_all_tokens_len", + "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable_all_tokens_len.read" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 58, + "end_line": 24, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721Enumerable_all_tokens_len/impl.cairo" + }, + "start_col": 9, + "start_line": 24 + } + }, + "1758": { + "accessible_scopes": [ + "openzeppelin.token.erc721.enumerable.library", + "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable_all_tokens_len", + "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable_all_tokens_len.write" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 62, + "end_line": 27, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721Enumerable_all_tokens_len/impl.cairo" + }, + "parent_location": [ + { + "end_col": 41, + "end_line": 7, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721Enumerable_all_tokens_len/decl.cairo" + }, + "parent_location": [ + { + "end_col": 36, + "end_line": 28, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721Enumerable_all_tokens_len/impl.cairo" + }, + "start_col": 30, + "start_line": 28 + }, + "While trying to retrieve the implicit argument 'pedersen_ptr' in:" + ], + "start_col": 15, + "start_line": 7 + }, + "While expanding the reference 'pedersen_ptr' in:" + ], + "start_col": 36, + "start_line": 27 + } + }, + "1759": { + "accessible_scopes": [ + "openzeppelin.token.erc721.enumerable.library", + "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable_all_tokens_len", + "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable_all_tokens_len.write" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 79, + "end_line": 27, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721Enumerable_all_tokens_len/impl.cairo" + }, + "parent_location": [ + { + "end_col": 58, + "end_line": 7, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721Enumerable_all_tokens_len/decl.cairo" + }, + "parent_location": [ + { + "end_col": 36, + "end_line": 28, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721Enumerable_all_tokens_len/impl.cairo" + }, + "start_col": 30, + "start_line": 28 + }, + "While trying to retrieve the implicit argument 'range_check_ptr' in:" + ], + "start_col": 43, + "start_line": 7 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 64, + "start_line": 27 + } + }, + "1760": { + "accessible_scopes": [ + "openzeppelin.token.erc721.enumerable.library", + "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable_all_tokens_len", + "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable_all_tokens_len.write" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 36, + "end_line": 28, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721Enumerable_all_tokens_len/impl.cairo" + }, + "start_col": 30, + "start_line": 28 + } + }, + "1762": { + "accessible_scopes": [ + "openzeppelin.token.erc721.enumerable.library", + "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable_all_tokens_len", + "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable_all_tokens_len.write" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 34, + "end_line": 27, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721Enumerable_all_tokens_len/impl.cairo" + }, + "parent_location": [ + { + "end_col": 38, + "end_line": 370, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/starknet/common/syscalls.cairo" + }, + "parent_location": [ + { + "end_col": 80, + "end_line": 29, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721Enumerable_all_tokens_len/impl.cairo" + }, + "start_col": 9, + "start_line": 29 + }, + "While trying to retrieve the implicit argument 'syscall_ptr' in:" + ], + "start_col": 20, + "start_line": 370 + }, + "While expanding the reference 'syscall_ptr' in:" + ], + "start_col": 16, + "start_line": 27 + } + }, + "1763": { + "accessible_scopes": [ + "openzeppelin.token.erc721.enumerable.library", + "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable_all_tokens_len", + "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable_all_tokens_len.write" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 26, + "end_line": 28, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721Enumerable_all_tokens_len/impl.cairo" + }, + "parent_location": [ + { + "end_col": 43, + "end_line": 29, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721Enumerable_all_tokens_len/impl.cairo" + }, + "start_col": 31, + "start_line": 29 + }, + "While expanding the reference 'storage_addr' in:" + ], + "start_col": 14, + "start_line": 28 + } + }, + "1764": { + "accessible_scopes": [ + "openzeppelin.token.erc721.enumerable.library", + "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable_all_tokens_len", + "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable_all_tokens_len.write" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 79, + "end_line": 29, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721Enumerable_all_tokens_len/impl.cairo" + }, + "start_col": 55, + "start_line": 29 + } + }, + "1765": { + "accessible_scopes": [ + "openzeppelin.token.erc721.enumerable.library", + "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable_all_tokens_len", + "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable_all_tokens_len.write" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 80, + "end_line": 29, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721Enumerable_all_tokens_len/impl.cairo" + }, + "start_col": 9, + "start_line": 29 + } + }, + "1767": { + "accessible_scopes": [ + "openzeppelin.token.erc721.enumerable.library", + "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable_all_tokens_len", + "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable_all_tokens_len.write" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 47, + "end_line": 30, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721Enumerable_all_tokens_len/impl.cairo" + }, + "start_col": 31, + "start_line": 30 + } + }, + "1769": { + "accessible_scopes": [ + "openzeppelin.token.erc721.enumerable.library", + "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable_all_tokens_len", + "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable_all_tokens_len.write" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 79, + "end_line": 30, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721Enumerable_all_tokens_len/impl.cairo" + }, + "start_col": 55, + "start_line": 30 + } + }, + "1770": { + "accessible_scopes": [ + "openzeppelin.token.erc721.enumerable.library", + "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable_all_tokens_len", + "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable_all_tokens_len.write" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 80, + "end_line": 30, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721Enumerable_all_tokens_len/impl.cairo" + }, + "start_col": 9, + "start_line": 30 + } + }, + "1772": { + "accessible_scopes": [ + "openzeppelin.token.erc721.enumerable.library", + "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable_all_tokens_len", + "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable_all_tokens_len.write" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 41, + "end_line": 7, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721Enumerable_all_tokens_len/decl.cairo" + }, + "parent_location": [ + { + "end_col": 36, + "end_line": 28, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721Enumerable_all_tokens_len/impl.cairo" + }, + "parent_location": [ + { + "end_col": 62, + "end_line": 21, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721Enumerable_all_tokens_len/decl.cairo" + }, + "parent_location": [ + { + "end_col": 19, + "end_line": 31, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721Enumerable_all_tokens_len/impl.cairo" + }, + "start_col": 9, + "start_line": 31 + }, + "While trying to retrieve the implicit argument 'pedersen_ptr' in:" + ], + "start_col": 36, + "start_line": 21 + }, + "While expanding the reference 'pedersen_ptr' in:" + ], + "start_col": 30, + "start_line": 28 + }, + "While trying to update the implicit return value 'pedersen_ptr' in:" + ], + "start_col": 15, + "start_line": 7 + } + }, + "1773": { + "accessible_scopes": [ + "openzeppelin.token.erc721.enumerable.library", + "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable_all_tokens_len", + "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable_all_tokens_len.write" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 58, + "end_line": 7, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721Enumerable_all_tokens_len/decl.cairo" + }, + "parent_location": [ + { + "end_col": 36, + "end_line": 28, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721Enumerable_all_tokens_len/impl.cairo" + }, + "parent_location": [ + { + "end_col": 79, + "end_line": 21, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721Enumerable_all_tokens_len/decl.cairo" + }, + "parent_location": [ + { + "end_col": 19, + "end_line": 31, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721Enumerable_all_tokens_len/impl.cairo" + }, + "start_col": 9, + "start_line": 31 + }, + "While trying to retrieve the implicit argument 'range_check_ptr' in:" + ], + "start_col": 64, + "start_line": 21 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 30, + "start_line": 28 + }, + "While trying to update the implicit return value 'range_check_ptr' in:" + ], + "start_col": 43, + "start_line": 7 + } + }, + "1774": { + "accessible_scopes": [ + "openzeppelin.token.erc721.enumerable.library", + "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable_all_tokens_len", + "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable_all_tokens_len.write" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 19, + "end_line": 31, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721Enumerable_all_tokens_len/impl.cairo" + }, + "start_col": 9, + "start_line": 31 + } + }, + "1775": { + "accessible_scopes": [ + "openzeppelin.token.erc721.enumerable.library", + "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable_all_tokens", + "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable_all_tokens.addr" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 41, + "end_line": 7, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721Enumerable_all_tokens/impl.cairo" + }, + "parent_location": [ + { + "end_col": 48, + "end_line": 9, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721Enumerable_all_tokens/impl.cairo" + }, + "start_col": 36, + "start_line": 9 + }, + "While expanding the reference 'pedersen_ptr' in:" + ], + "start_col": 15, + "start_line": 7 + } + }, + "1776": { + "accessible_scopes": [ + "openzeppelin.token.erc721.enumerable.library", + "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable_all_tokens", + "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable_all_tokens.addr" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 94, + "end_line": 8, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721Enumerable_all_tokens/impl.cairo" + }, + "parent_location": [ + { + "end_col": 53, + "end_line": 9, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721Enumerable_all_tokens/impl.cairo" + }, + "start_col": 50, + "start_line": 9 + }, + "While expanding the reference 'res' in:" + ], + "start_col": 19, + "start_line": 8 + } + }, + "1778": { + "accessible_scopes": [ + "openzeppelin.token.erc721.enumerable.library", + "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable_all_tokens", + "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable_all_tokens.addr" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 77, + "end_line": 9, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721Enumerable_all_tokens/impl.cairo" + }, + "start_col": 55, + "start_line": 9 + } + }, + "1779": { + "accessible_scopes": [ + "openzeppelin.token.erc721.enumerable.library", + "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable_all_tokens", + "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable_all_tokens.addr" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 78, + "end_line": 9, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721Enumerable_all_tokens/impl.cairo" + }, + "start_col": 21, + "start_line": 9 + } + }, + "1781": { + "accessible_scopes": [ + "openzeppelin.token.erc721.enumerable.library", + "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable_all_tokens", + "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable_all_tokens.addr" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 77, + "end_line": 10, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721Enumerable_all_tokens/impl.cairo" + }, + "start_col": 55, + "start_line": 10 + } + }, + "1782": { + "accessible_scopes": [ + "openzeppelin.token.erc721.enumerable.library", + "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable_all_tokens", + "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable_all_tokens.addr" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 78, + "end_line": 10, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721Enumerable_all_tokens/impl.cairo" + }, + "start_col": 21, + "start_line": 10 + } + }, + "1784": { + "accessible_scopes": [ + "openzeppelin.token.erc721.enumerable.library", + "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable_all_tokens", + "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable_all_tokens.addr" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 58, + "end_line": 7, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721Enumerable_all_tokens/impl.cairo" + }, + "parent_location": [ + { + "end_col": 39, + "end_line": 12, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/starknet/common/storage.cairo" + }, + "parent_location": [ + { + "end_col": 48, + "end_line": 11, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721Enumerable_all_tokens/impl.cairo" + }, + "start_col": 21, + "start_line": 11 + }, + "While trying to retrieve the implicit argument 'range_check_ptr' in:" + ], + "start_col": 24, + "start_line": 12 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 43, + "start_line": 7 + } + }, + "1785": { + "accessible_scopes": [ + "openzeppelin.token.erc721.enumerable.library", + "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable_all_tokens", + "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable_all_tokens.addr" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 17, + "end_line": 10, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721Enumerable_all_tokens/impl.cairo" + }, + "parent_location": [ + { + "end_col": 47, + "end_line": 11, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721Enumerable_all_tokens/impl.cairo" + }, + "start_col": 44, + "start_line": 11 + }, + "While expanding the reference 'res' in:" + ], + "start_col": 14, + "start_line": 10 + } + }, + "1786": { + "accessible_scopes": [ + "openzeppelin.token.erc721.enumerable.library", + "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable_all_tokens", + "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable_all_tokens.addr" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 48, + "end_line": 11, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721Enumerable_all_tokens/impl.cairo" + }, + "start_col": 21, + "start_line": 11 + } + }, + "1788": { + "accessible_scopes": [ + "openzeppelin.token.erc721.enumerable.library", + "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable_all_tokens", + "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable_all_tokens.addr" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 48, + "end_line": 10, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721Enumerable_all_tokens/impl.cairo" + }, + "parent_location": [ + { + "end_col": 41, + "end_line": 7, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721Enumerable_all_tokens/decl.cairo" + }, + "parent_location": [ + { + "end_col": 26, + "end_line": 12, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721Enumerable_all_tokens/impl.cairo" + }, + "start_col": 9, + "start_line": 12 + }, + "While trying to retrieve the implicit argument 'pedersen_ptr' in:" + ], + "start_col": 15, + "start_line": 7 + }, + "While expanding the reference 'pedersen_ptr' in:" + ], + "start_col": 36, + "start_line": 10 + } + }, + "1789": { + "accessible_scopes": [ + "openzeppelin.token.erc721.enumerable.library", + "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable_all_tokens", + "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable_all_tokens.addr" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 39, + "end_line": 12, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/starknet/common/storage.cairo" + }, + "parent_location": [ + { + "end_col": 48, + "end_line": 11, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721Enumerable_all_tokens/impl.cairo" + }, + "parent_location": [ + { + "end_col": 58, + "end_line": 7, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721Enumerable_all_tokens/decl.cairo" + }, + "parent_location": [ + { + "end_col": 26, + "end_line": 12, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721Enumerable_all_tokens/impl.cairo" + }, + "start_col": 9, + "start_line": 12 + }, + "While trying to retrieve the implicit argument 'range_check_ptr' in:" + ], + "start_col": 43, + "start_line": 7 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 21, + "start_line": 11 + }, + "While trying to update the implicit return value 'range_check_ptr' in:" + ], + "start_col": 24, + "start_line": 12 + } + }, + "1790": { + "accessible_scopes": [ + "openzeppelin.token.erc721.enumerable.library", + "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable_all_tokens", + "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable_all_tokens.addr" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 17, + "end_line": 11, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721Enumerable_all_tokens/impl.cairo" + }, + "parent_location": [ + { + "end_col": 24, + "end_line": 12, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721Enumerable_all_tokens/impl.cairo" + }, + "start_col": 21, + "start_line": 12 + }, + "While expanding the reference 'res' in:" + ], + "start_col": 14, + "start_line": 11 + } + }, + "1791": { + "accessible_scopes": [ + "openzeppelin.token.erc721.enumerable.library", + "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable_all_tokens", + "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable_all_tokens.addr" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 26, + "end_line": 12, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721Enumerable_all_tokens/impl.cairo" + }, + "start_col": 9, + "start_line": 12 + } + }, + "1792": { + "accessible_scopes": [ + "openzeppelin.token.erc721.enumerable.library", + "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable_all_tokens", + "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable_all_tokens.read" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 61, + "end_line": 15, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721Enumerable_all_tokens/impl.cairo" + }, + "parent_location": [ + { + "end_col": 41, + "end_line": 7, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721Enumerable_all_tokens/decl.cairo" + }, + "parent_location": [ + { + "end_col": 41, + "end_line": 18, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721Enumerable_all_tokens/impl.cairo" + }, + "start_col": 30, + "start_line": 18 + }, + "While trying to retrieve the implicit argument 'pedersen_ptr' in:" + ], + "start_col": 15, + "start_line": 7 + }, + "While expanding the reference 'pedersen_ptr' in:" + ], + "start_col": 35, + "start_line": 15 + } + }, + "1793": { + "accessible_scopes": [ + "openzeppelin.token.erc721.enumerable.library", + "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable_all_tokens", + "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable_all_tokens.read" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 78, + "end_line": 15, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721Enumerable_all_tokens/impl.cairo" + }, + "parent_location": [ + { + "end_col": 58, + "end_line": 7, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721Enumerable_all_tokens/decl.cairo" + }, + "parent_location": [ + { + "end_col": 41, + "end_line": 18, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721Enumerable_all_tokens/impl.cairo" + }, + "start_col": 30, + "start_line": 18 + }, + "While trying to retrieve the implicit argument 'range_check_ptr' in:" + ], + "start_col": 43, + "start_line": 7 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 63, + "start_line": 15 + } + }, + "1794": { + "accessible_scopes": [ + "openzeppelin.token.erc721.enumerable.library", + "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable_all_tokens", + "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable_all_tokens.read" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 94, + "end_line": 15, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721Enumerable_all_tokens/impl.cairo" + }, + "parent_location": [ + { + "end_col": 40, + "end_line": 18, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721Enumerable_all_tokens/impl.cairo" + }, + "start_col": 35, + "start_line": 18 + }, + "While expanding the reference 'index' in:" + ], + "start_col": 80, + "start_line": 15 + } + }, + "1795": { + "accessible_scopes": [ + "openzeppelin.token.erc721.enumerable.library", + "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable_all_tokens", + "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable_all_tokens.read" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 94, + "end_line": 15, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721Enumerable_all_tokens/impl.cairo" + }, + "parent_location": [ + { + "end_col": 40, + "end_line": 18, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721Enumerable_all_tokens/impl.cairo" + }, + "start_col": 35, + "start_line": 18 + }, + "While expanding the reference 'index' in:" + ], + "start_col": 80, + "start_line": 15 + } + }, + "1796": { + "accessible_scopes": [ + "openzeppelin.token.erc721.enumerable.library", + "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable_all_tokens", + "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable_all_tokens.read" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 41, + "end_line": 18, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721Enumerable_all_tokens/impl.cairo" + }, + "start_col": 30, + "start_line": 18 + } + }, + "1798": { + "accessible_scopes": [ + "openzeppelin.token.erc721.enumerable.library", + "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable_all_tokens", + "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable_all_tokens.read" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 33, + "end_line": 15, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721Enumerable_all_tokens/impl.cairo" + }, + "parent_location": [ + { + "end_col": 37, + "end_line": 352, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/starknet/common/syscalls.cairo" + }, + "parent_location": [ + { + "end_col": 75, + "end_line": 19, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721Enumerable_all_tokens/impl.cairo" + }, + "start_col": 37, + "start_line": 19 + }, + "While trying to retrieve the implicit argument 'syscall_ptr' in:" + ], + "start_col": 19, + "start_line": 352 + }, + "While expanding the reference 'syscall_ptr' in:" + ], + "start_col": 15, + "start_line": 15 + } + }, + "1799": { + "accessible_scopes": [ + "openzeppelin.token.erc721.enumerable.library", + "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable_all_tokens", + "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable_all_tokens.read" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 26, + "end_line": 18, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721Enumerable_all_tokens/impl.cairo" + }, + "parent_location": [ + { + "end_col": 70, + "end_line": 19, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721Enumerable_all_tokens/impl.cairo" + }, + "start_col": 58, + "start_line": 19 + }, + "While expanding the reference 'storage_addr' in:" + ], + "start_col": 14, + "start_line": 18 + } + }, + "1800": { + "accessible_scopes": [ + "openzeppelin.token.erc721.enumerable.library", + "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable_all_tokens", + "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable_all_tokens.read" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 75, + "end_line": 19, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721Enumerable_all_tokens/impl.cairo" + }, + "start_col": 37, + "start_line": 19 + } + }, + "1802": { + "accessible_scopes": [ + "openzeppelin.token.erc721.enumerable.library", + "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable_all_tokens", + "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable_all_tokens.read" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 37, + "end_line": 352, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/starknet/common/syscalls.cairo" + }, + "parent_location": [ + { + "end_col": 75, + "end_line": 19, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721Enumerable_all_tokens/impl.cairo" + }, + "parent_location": [ + { + "end_col": 37, + "end_line": 352, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/starknet/common/syscalls.cairo" + }, + "parent_location": [ + { + "end_col": 75, + "end_line": 20, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721Enumerable_all_tokens/impl.cairo" + }, + "start_col": 37, + "start_line": 20 + }, + "While trying to retrieve the implicit argument 'syscall_ptr' in:" + ], + "start_col": 19, + "start_line": 352 + }, + "While expanding the reference 'syscall_ptr' in:" + ], + "start_col": 37, + "start_line": 19 + }, + "While trying to update the implicit return value 'syscall_ptr' in:" + ], + "start_col": 19, + "start_line": 352 + } + }, + "1803": { + "accessible_scopes": [ + "openzeppelin.token.erc721.enumerable.library", + "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable_all_tokens", + "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable_all_tokens.read" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 74, + "end_line": 20, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721Enumerable_all_tokens/impl.cairo" + }, + "start_col": 58, + "start_line": 20 + } + }, + "1805": { + "accessible_scopes": [ + "openzeppelin.token.erc721.enumerable.library", + "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable_all_tokens", + "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable_all_tokens.read" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 75, + "end_line": 20, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721Enumerable_all_tokens/impl.cairo" + }, + "start_col": 37, + "start_line": 20 + } + }, + "1807": { + "accessible_scopes": [ + "openzeppelin.token.erc721.enumerable.library", + "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable_all_tokens", + "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable_all_tokens.read" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 37, + "end_line": 352, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/starknet/common/syscalls.cairo" + }, + "parent_location": [ + { + "end_col": 75, + "end_line": 20, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721Enumerable_all_tokens/impl.cairo" + }, + "parent_location": [ + { + "end_col": 42, + "end_line": 22, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721Enumerable_all_tokens/impl.cairo" + }, + "start_col": 31, + "start_line": 22 + }, + "While expanding the reference 'syscall_ptr' in:" + ], + "start_col": 37, + "start_line": 20 + }, + "While trying to update the implicit return value 'syscall_ptr' in:" + ], + "start_col": 19, + "start_line": 352 + } + }, + "1808": { + "accessible_scopes": [ + "openzeppelin.token.erc721.enumerable.library", + "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable_all_tokens", + "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable_all_tokens.read" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 41, + "end_line": 7, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721Enumerable_all_tokens/decl.cairo" + }, + "parent_location": [ + { + "end_col": 41, + "end_line": 18, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721Enumerable_all_tokens/impl.cairo" + }, + "parent_location": [ + { + "end_col": 44, + "end_line": 23, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721Enumerable_all_tokens/impl.cairo" + }, + "start_col": 32, + "start_line": 23 + }, + "While expanding the reference 'pedersen_ptr' in:" + ], + "start_col": 30, + "start_line": 18 + }, + "While trying to update the implicit return value 'pedersen_ptr' in:" + ], + "start_col": 15, + "start_line": 7 + } + }, + "1809": { + "accessible_scopes": [ + "openzeppelin.token.erc721.enumerable.library", + "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable_all_tokens", + "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable_all_tokens.read" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 58, + "end_line": 7, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721Enumerable_all_tokens/decl.cairo" + }, + "parent_location": [ + { + "end_col": 41, + "end_line": 18, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721Enumerable_all_tokens/impl.cairo" + }, + "parent_location": [ + { + "end_col": 50, + "end_line": 24, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721Enumerable_all_tokens/impl.cairo" + }, + "start_col": 35, + "start_line": 24 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 30, + "start_line": 18 + }, + "While trying to update the implicit return value 'range_check_ptr' in:" + ], + "start_col": 43, + "start_line": 7 + } + }, + "1810": { + "accessible_scopes": [ + "openzeppelin.token.erc721.enumerable.library", + "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable_all_tokens", + "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable_all_tokens.read" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 33, + "end_line": 19, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721Enumerable_all_tokens/impl.cairo" + }, + "parent_location": [ + { + "end_col": 64, + "end_line": 25, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721Enumerable_all_tokens/impl.cairo" + }, + "start_col": 45, + "start_line": 25 + }, + "While expanding the reference '__storage_var_temp0' in:" + ], + "start_col": 14, + "start_line": 19 + } + }, + "1811": { + "accessible_scopes": [ + "openzeppelin.token.erc721.enumerable.library", + "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable_all_tokens", + "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable_all_tokens.read" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 33, + "end_line": 20, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721Enumerable_all_tokens/impl.cairo" + }, + "parent_location": [ + { + "end_col": 64, + "end_line": 26, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721Enumerable_all_tokens/impl.cairo" + }, + "start_col": 45, + "start_line": 26 + }, + "While expanding the reference '__storage_var_temp1' in:" + ], + "start_col": 14, + "start_line": 20 + } + }, + "1812": { + "accessible_scopes": [ + "openzeppelin.token.erc721.enumerable.library", + "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable_all_tokens", + "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable_all_tokens.read" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 58, + "end_line": 27, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721Enumerable_all_tokens/impl.cairo" + }, + "start_col": 9, + "start_line": 27 + } + }, + "1813": { + "accessible_scopes": [ + "openzeppelin.token.erc721.enumerable.library", + "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable_all_tokens", + "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable_all_tokens.write" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 62, + "end_line": 30, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721Enumerable_all_tokens/impl.cairo" + }, + "parent_location": [ + { + "end_col": 41, + "end_line": 7, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721Enumerable_all_tokens/decl.cairo" + }, + "parent_location": [ + { + "end_col": 41, + "end_line": 33, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721Enumerable_all_tokens/impl.cairo" + }, + "start_col": 30, + "start_line": 33 + }, + "While trying to retrieve the implicit argument 'pedersen_ptr' in:" + ], + "start_col": 15, + "start_line": 7 + }, + "While expanding the reference 'pedersen_ptr' in:" + ], + "start_col": 36, + "start_line": 30 + } + }, + "1814": { + "accessible_scopes": [ + "openzeppelin.token.erc721.enumerable.library", + "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable_all_tokens", + "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable_all_tokens.write" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 79, + "end_line": 30, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721Enumerable_all_tokens/impl.cairo" + }, + "parent_location": [ + { + "end_col": 58, + "end_line": 7, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721Enumerable_all_tokens/decl.cairo" + }, + "parent_location": [ + { + "end_col": 41, + "end_line": 33, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721Enumerable_all_tokens/impl.cairo" + }, + "start_col": 30, + "start_line": 33 + }, + "While trying to retrieve the implicit argument 'range_check_ptr' in:" + ], + "start_col": 43, + "start_line": 7 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 64, + "start_line": 30 + } + }, + "1815": { + "accessible_scopes": [ + "openzeppelin.token.erc721.enumerable.library", + "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable_all_tokens", + "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable_all_tokens.write" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 23, + "end_line": 31, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721Enumerable_all_tokens/impl.cairo" + }, + "parent_location": [ + { + "end_col": 40, + "end_line": 33, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721Enumerable_all_tokens/impl.cairo" + }, + "start_col": 35, + "start_line": 33 + }, + "While expanding the reference 'index' in:" + ], + "start_col": 9, + "start_line": 31 + } + }, + "1816": { + "accessible_scopes": [ + "openzeppelin.token.erc721.enumerable.library", + "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable_all_tokens", + "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable_all_tokens.write" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 23, + "end_line": 31, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721Enumerable_all_tokens/impl.cairo" + }, + "parent_location": [ + { + "end_col": 40, + "end_line": 33, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721Enumerable_all_tokens/impl.cairo" + }, + "start_col": 35, + "start_line": 33 + }, + "While expanding the reference 'index' in:" + ], + "start_col": 9, + "start_line": 31 + } + }, + "1817": { + "accessible_scopes": [ + "openzeppelin.token.erc721.enumerable.library", + "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable_all_tokens", + "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable_all_tokens.write" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 41, + "end_line": 33, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721Enumerable_all_tokens/impl.cairo" + }, + "start_col": 30, + "start_line": 33 + } + }, + "1819": { + "accessible_scopes": [ + "openzeppelin.token.erc721.enumerable.library", + "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable_all_tokens", + "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable_all_tokens.write" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 34, + "end_line": 30, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721Enumerable_all_tokens/impl.cairo" + }, + "parent_location": [ + { + "end_col": 38, + "end_line": 370, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/starknet/common/syscalls.cairo" + }, + "parent_location": [ + { + "end_col": 80, + "end_line": 34, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721Enumerable_all_tokens/impl.cairo" + }, + "start_col": 9, + "start_line": 34 + }, + "While trying to retrieve the implicit argument 'syscall_ptr' in:" + ], + "start_col": 20, + "start_line": 370 + }, + "While expanding the reference 'syscall_ptr' in:" + ], + "start_col": 16, + "start_line": 30 + } + }, + "1820": { + "accessible_scopes": [ + "openzeppelin.token.erc721.enumerable.library", + "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable_all_tokens", + "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable_all_tokens.write" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 26, + "end_line": 33, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721Enumerable_all_tokens/impl.cairo" + }, + "parent_location": [ + { + "end_col": 43, + "end_line": 34, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721Enumerable_all_tokens/impl.cairo" + }, + "start_col": 31, + "start_line": 34 + }, + "While expanding the reference 'storage_addr' in:" + ], + "start_col": 14, + "start_line": 33 + } + }, + "1821": { + "accessible_scopes": [ + "openzeppelin.token.erc721.enumerable.library", + "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable_all_tokens", + "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable_all_tokens.write" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 79, + "end_line": 34, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721Enumerable_all_tokens/impl.cairo" + }, + "start_col": 55, + "start_line": 34 + } + }, + "1822": { + "accessible_scopes": [ + "openzeppelin.token.erc721.enumerable.library", + "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable_all_tokens", + "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable_all_tokens.write" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 80, + "end_line": 34, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721Enumerable_all_tokens/impl.cairo" + }, + "start_col": 9, + "start_line": 34 + } + }, + "1824": { + "accessible_scopes": [ + "openzeppelin.token.erc721.enumerable.library", + "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable_all_tokens", + "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable_all_tokens.write" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 47, + "end_line": 35, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721Enumerable_all_tokens/impl.cairo" + }, + "start_col": 31, + "start_line": 35 + } + }, + "1826": { + "accessible_scopes": [ + "openzeppelin.token.erc721.enumerable.library", + "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable_all_tokens", + "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable_all_tokens.write" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 79, + "end_line": 35, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721Enumerable_all_tokens/impl.cairo" + }, + "start_col": 55, + "start_line": 35 + } + }, + "1827": { + "accessible_scopes": [ + "openzeppelin.token.erc721.enumerable.library", + "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable_all_tokens", + "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable_all_tokens.write" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 80, + "end_line": 35, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721Enumerable_all_tokens/impl.cairo" + }, + "start_col": 9, + "start_line": 35 + } + }, + "1829": { + "accessible_scopes": [ + "openzeppelin.token.erc721.enumerable.library", + "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable_all_tokens", + "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable_all_tokens.write" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 41, + "end_line": 7, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721Enumerable_all_tokens/decl.cairo" + }, + "parent_location": [ + { + "end_col": 41, + "end_line": 33, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721Enumerable_all_tokens/impl.cairo" + }, + "parent_location": [ + { + "end_col": 62, + "end_line": 21, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721Enumerable_all_tokens/decl.cairo" + }, + "parent_location": [ + { + "end_col": 19, + "end_line": 36, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721Enumerable_all_tokens/impl.cairo" + }, + "start_col": 9, + "start_line": 36 + }, + "While trying to retrieve the implicit argument 'pedersen_ptr' in:" + ], + "start_col": 36, + "start_line": 21 + }, + "While expanding the reference 'pedersen_ptr' in:" + ], + "start_col": 30, + "start_line": 33 + }, + "While trying to update the implicit return value 'pedersen_ptr' in:" + ], + "start_col": 15, + "start_line": 7 + } + }, + "1830": { + "accessible_scopes": [ + "openzeppelin.token.erc721.enumerable.library", + "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable_all_tokens", + "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable_all_tokens.write" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 58, + "end_line": 7, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721Enumerable_all_tokens/decl.cairo" + }, + "parent_location": [ + { + "end_col": 41, + "end_line": 33, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721Enumerable_all_tokens/impl.cairo" + }, + "parent_location": [ + { + "end_col": 79, + "end_line": 21, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721Enumerable_all_tokens/decl.cairo" + }, + "parent_location": [ + { + "end_col": 19, + "end_line": 36, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721Enumerable_all_tokens/impl.cairo" + }, + "start_col": 9, + "start_line": 36 + }, + "While trying to retrieve the implicit argument 'range_check_ptr' in:" + ], + "start_col": 64, + "start_line": 21 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 30, + "start_line": 33 + }, + "While trying to update the implicit return value 'range_check_ptr' in:" + ], + "start_col": 43, + "start_line": 7 + } + }, + "1831": { + "accessible_scopes": [ + "openzeppelin.token.erc721.enumerable.library", + "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable_all_tokens", + "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable_all_tokens.write" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 19, + "end_line": 36, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721Enumerable_all_tokens/impl.cairo" + }, + "start_col": 9, + "start_line": 36 + } + }, + "1832": { + "accessible_scopes": [ + "openzeppelin.token.erc721.enumerable.library", + "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable_all_tokens_index", + "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable_all_tokens_index.addr" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 41, + "end_line": 7, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721Enumerable_all_tokens_index/impl.cairo" + }, + "parent_location": [ + { + "end_col": 48, + "end_line": 9, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721Enumerable_all_tokens_index/impl.cairo" + }, + "start_col": 36, + "start_line": 9 + }, + "While expanding the reference 'pedersen_ptr' in:" + ], + "start_col": 15, + "start_line": 7 + } + }, + "1833": { + "accessible_scopes": [ + "openzeppelin.token.erc721.enumerable.library", + "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable_all_tokens_index", + "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable_all_tokens_index.addr" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 95, + "end_line": 8, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721Enumerable_all_tokens_index/impl.cairo" + }, + "parent_location": [ + { + "end_col": 53, + "end_line": 9, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721Enumerable_all_tokens_index/impl.cairo" + }, + "start_col": 50, + "start_line": 9 + }, + "While expanding the reference 'res' in:" + ], + "start_col": 19, + "start_line": 8 + } + }, + "1835": { + "accessible_scopes": [ + "openzeppelin.token.erc721.enumerable.library", + "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable_all_tokens_index", + "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable_all_tokens_index.addr" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 80, + "end_line": 9, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721Enumerable_all_tokens_index/impl.cairo" + }, + "start_col": 55, + "start_line": 9 + } + }, + "1836": { + "accessible_scopes": [ + "openzeppelin.token.erc721.enumerable.library", + "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable_all_tokens_index", + "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable_all_tokens_index.addr" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 81, + "end_line": 9, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721Enumerable_all_tokens_index/impl.cairo" + }, + "start_col": 21, + "start_line": 9 + } + }, + "1838": { + "accessible_scopes": [ + "openzeppelin.token.erc721.enumerable.library", + "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable_all_tokens_index", + "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable_all_tokens_index.addr" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 80, + "end_line": 10, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721Enumerable_all_tokens_index/impl.cairo" + }, + "start_col": 55, + "start_line": 10 + } + }, + "1839": { + "accessible_scopes": [ + "openzeppelin.token.erc721.enumerable.library", + "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable_all_tokens_index", + "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable_all_tokens_index.addr" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 81, + "end_line": 10, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721Enumerable_all_tokens_index/impl.cairo" + }, + "start_col": 21, + "start_line": 10 + } + }, + "1841": { + "accessible_scopes": [ + "openzeppelin.token.erc721.enumerable.library", + "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable_all_tokens_index", + "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable_all_tokens_index.addr" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 58, + "end_line": 7, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721Enumerable_all_tokens_index/impl.cairo" + }, + "parent_location": [ + { + "end_col": 39, + "end_line": 12, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/starknet/common/storage.cairo" + }, + "parent_location": [ + { + "end_col": 48, + "end_line": 11, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721Enumerable_all_tokens_index/impl.cairo" + }, + "start_col": 21, + "start_line": 11 + }, + "While trying to retrieve the implicit argument 'range_check_ptr' in:" + ], + "start_col": 24, + "start_line": 12 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 43, + "start_line": 7 + } + }, + "1842": { + "accessible_scopes": [ + "openzeppelin.token.erc721.enumerable.library", + "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable_all_tokens_index", + "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable_all_tokens_index.addr" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 17, + "end_line": 10, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721Enumerable_all_tokens_index/impl.cairo" + }, + "parent_location": [ + { + "end_col": 47, + "end_line": 11, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721Enumerable_all_tokens_index/impl.cairo" + }, + "start_col": 44, + "start_line": 11 + }, + "While expanding the reference 'res' in:" + ], + "start_col": 14, + "start_line": 10 + } + }, + "1843": { + "accessible_scopes": [ + "openzeppelin.token.erc721.enumerable.library", + "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable_all_tokens_index", + "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable_all_tokens_index.addr" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 48, + "end_line": 11, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721Enumerable_all_tokens_index/impl.cairo" + }, + "start_col": 21, + "start_line": 11 + } + }, + "1845": { + "accessible_scopes": [ + "openzeppelin.token.erc721.enumerable.library", + "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable_all_tokens_index", + "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable_all_tokens_index.addr" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 48, + "end_line": 10, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721Enumerable_all_tokens_index/impl.cairo" + }, + "parent_location": [ + { + "end_col": 41, + "end_line": 7, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721Enumerable_all_tokens_index/decl.cairo" + }, + "parent_location": [ + { + "end_col": 26, + "end_line": 12, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721Enumerable_all_tokens_index/impl.cairo" + }, + "start_col": 9, + "start_line": 12 + }, + "While trying to retrieve the implicit argument 'pedersen_ptr' in:" + ], + "start_col": 15, + "start_line": 7 + }, + "While expanding the reference 'pedersen_ptr' in:" + ], + "start_col": 36, + "start_line": 10 + } + }, + "1846": { + "accessible_scopes": [ + "openzeppelin.token.erc721.enumerable.library", + "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable_all_tokens_index", + "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable_all_tokens_index.addr" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 39, + "end_line": 12, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/starknet/common/storage.cairo" + }, + "parent_location": [ + { + "end_col": 48, + "end_line": 11, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721Enumerable_all_tokens_index/impl.cairo" + }, + "parent_location": [ + { + "end_col": 58, + "end_line": 7, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721Enumerable_all_tokens_index/decl.cairo" + }, + "parent_location": [ + { + "end_col": 26, + "end_line": 12, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721Enumerable_all_tokens_index/impl.cairo" + }, + "start_col": 9, + "start_line": 12 + }, + "While trying to retrieve the implicit argument 'range_check_ptr' in:" + ], + "start_col": 43, + "start_line": 7 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 21, + "start_line": 11 + }, + "While trying to update the implicit return value 'range_check_ptr' in:" + ], + "start_col": 24, + "start_line": 12 + } + }, + "1847": { + "accessible_scopes": [ + "openzeppelin.token.erc721.enumerable.library", + "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable_all_tokens_index", + "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable_all_tokens_index.addr" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 17, + "end_line": 11, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721Enumerable_all_tokens_index/impl.cairo" + }, + "parent_location": [ + { + "end_col": 24, + "end_line": 12, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721Enumerable_all_tokens_index/impl.cairo" + }, + "start_col": 21, + "start_line": 12 + }, + "While expanding the reference 'res' in:" + ], + "start_col": 14, + "start_line": 11 + } + }, + "1848": { + "accessible_scopes": [ + "openzeppelin.token.erc721.enumerable.library", + "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable_all_tokens_index", + "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable_all_tokens_index.addr" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 26, + "end_line": 12, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721Enumerable_all_tokens_index/impl.cairo" + }, + "start_col": 9, + "start_line": 12 + } + }, + "1849": { + "accessible_scopes": [ + "openzeppelin.token.erc721.enumerable.library", + "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable_all_tokens_index", + "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable_all_tokens_index.read" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 61, + "end_line": 15, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721Enumerable_all_tokens_index/impl.cairo" + }, + "parent_location": [ + { + "end_col": 41, + "end_line": 7, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721Enumerable_all_tokens_index/decl.cairo" + }, + "parent_location": [ + { + "end_col": 44, + "end_line": 18, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721Enumerable_all_tokens_index/impl.cairo" + }, + "start_col": 30, + "start_line": 18 + }, + "While trying to retrieve the implicit argument 'pedersen_ptr' in:" + ], + "start_col": 15, + "start_line": 7 + }, + "While expanding the reference 'pedersen_ptr' in:" + ], + "start_col": 35, + "start_line": 15 + } + }, + "1850": { + "accessible_scopes": [ + "openzeppelin.token.erc721.enumerable.library", + "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable_all_tokens_index", + "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable_all_tokens_index.read" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 78, + "end_line": 15, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721Enumerable_all_tokens_index/impl.cairo" + }, + "parent_location": [ + { + "end_col": 58, + "end_line": 7, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721Enumerable_all_tokens_index/decl.cairo" + }, + "parent_location": [ + { + "end_col": 44, + "end_line": 18, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721Enumerable_all_tokens_index/impl.cairo" + }, + "start_col": 30, + "start_line": 18 + }, + "While trying to retrieve the implicit argument 'range_check_ptr' in:" + ], + "start_col": 43, + "start_line": 7 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 63, + "start_line": 15 + } + }, + "1851": { + "accessible_scopes": [ + "openzeppelin.token.erc721.enumerable.library", + "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable_all_tokens_index", + "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable_all_tokens_index.read" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 26, + "end_line": 16, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721Enumerable_all_tokens_index/impl.cairo" + }, + "parent_location": [ + { + "end_col": 43, + "end_line": 18, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721Enumerable_all_tokens_index/impl.cairo" + }, + "start_col": 35, + "start_line": 18 + }, + "While expanding the reference 'token_id' in:" + ], + "start_col": 9, + "start_line": 16 + } + }, + "1852": { + "accessible_scopes": [ + "openzeppelin.token.erc721.enumerable.library", + "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable_all_tokens_index", + "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable_all_tokens_index.read" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 26, + "end_line": 16, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721Enumerable_all_tokens_index/impl.cairo" + }, + "parent_location": [ + { + "end_col": 43, + "end_line": 18, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721Enumerable_all_tokens_index/impl.cairo" + }, + "start_col": 35, + "start_line": 18 + }, + "While expanding the reference 'token_id' in:" + ], + "start_col": 9, + "start_line": 16 + } + }, + "1853": { + "accessible_scopes": [ + "openzeppelin.token.erc721.enumerable.library", + "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable_all_tokens_index", + "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable_all_tokens_index.read" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 44, + "end_line": 18, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721Enumerable_all_tokens_index/impl.cairo" + }, + "start_col": 30, + "start_line": 18 + } + }, + "1855": { + "accessible_scopes": [ + "openzeppelin.token.erc721.enumerable.library", + "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable_all_tokens_index", + "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable_all_tokens_index.read" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 33, + "end_line": 15, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721Enumerable_all_tokens_index/impl.cairo" + }, + "parent_location": [ + { + "end_col": 37, + "end_line": 352, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/starknet/common/syscalls.cairo" + }, + "parent_location": [ + { + "end_col": 75, + "end_line": 19, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721Enumerable_all_tokens_index/impl.cairo" + }, + "start_col": 37, + "start_line": 19 + }, + "While trying to retrieve the implicit argument 'syscall_ptr' in:" + ], + "start_col": 19, + "start_line": 352 + }, + "While expanding the reference 'syscall_ptr' in:" + ], + "start_col": 15, + "start_line": 15 + } + }, + "1856": { + "accessible_scopes": [ + "openzeppelin.token.erc721.enumerable.library", + "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable_all_tokens_index", + "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable_all_tokens_index.read" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 26, + "end_line": 18, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721Enumerable_all_tokens_index/impl.cairo" + }, + "parent_location": [ + { + "end_col": 70, + "end_line": 19, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721Enumerable_all_tokens_index/impl.cairo" + }, + "start_col": 58, + "start_line": 19 + }, + "While expanding the reference 'storage_addr' in:" + ], + "start_col": 14, + "start_line": 18 + } + }, + "1857": { + "accessible_scopes": [ + "openzeppelin.token.erc721.enumerable.library", + "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable_all_tokens_index", + "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable_all_tokens_index.read" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 75, + "end_line": 19, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721Enumerable_all_tokens_index/impl.cairo" + }, + "start_col": 37, + "start_line": 19 + } + }, + "1859": { + "accessible_scopes": [ + "openzeppelin.token.erc721.enumerable.library", + "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable_all_tokens_index", + "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable_all_tokens_index.read" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 37, + "end_line": 352, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/starknet/common/syscalls.cairo" + }, + "parent_location": [ + { + "end_col": 75, + "end_line": 19, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721Enumerable_all_tokens_index/impl.cairo" + }, + "parent_location": [ + { + "end_col": 37, + "end_line": 352, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/starknet/common/syscalls.cairo" + }, + "parent_location": [ + { + "end_col": 75, + "end_line": 20, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721Enumerable_all_tokens_index/impl.cairo" + }, + "start_col": 37, + "start_line": 20 + }, + "While trying to retrieve the implicit argument 'syscall_ptr' in:" + ], + "start_col": 19, + "start_line": 352 + }, + "While expanding the reference 'syscall_ptr' in:" + ], + "start_col": 37, + "start_line": 19 + }, + "While trying to update the implicit return value 'syscall_ptr' in:" + ], + "start_col": 19, + "start_line": 352 + } + }, + "1860": { + "accessible_scopes": [ + "openzeppelin.token.erc721.enumerable.library", + "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable_all_tokens_index", + "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable_all_tokens_index.read" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 74, + "end_line": 20, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721Enumerable_all_tokens_index/impl.cairo" + }, + "start_col": 58, + "start_line": 20 + } + }, + "1862": { + "accessible_scopes": [ + "openzeppelin.token.erc721.enumerable.library", + "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable_all_tokens_index", + "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable_all_tokens_index.read" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 75, + "end_line": 20, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721Enumerable_all_tokens_index/impl.cairo" + }, + "start_col": 37, + "start_line": 20 + } + }, + "1864": { + "accessible_scopes": [ + "openzeppelin.token.erc721.enumerable.library", + "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable_all_tokens_index", + "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable_all_tokens_index.read" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 37, + "end_line": 352, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/starknet/common/syscalls.cairo" + }, + "parent_location": [ + { + "end_col": 75, + "end_line": 20, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721Enumerable_all_tokens_index/impl.cairo" + }, + "parent_location": [ + { + "end_col": 42, + "end_line": 22, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721Enumerable_all_tokens_index/impl.cairo" + }, + "start_col": 31, + "start_line": 22 + }, + "While expanding the reference 'syscall_ptr' in:" + ], + "start_col": 37, + "start_line": 20 + }, + "While trying to update the implicit return value 'syscall_ptr' in:" + ], + "start_col": 19, + "start_line": 352 + } + }, + "1865": { + "accessible_scopes": [ + "openzeppelin.token.erc721.enumerable.library", + "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable_all_tokens_index", + "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable_all_tokens_index.read" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 41, + "end_line": 7, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721Enumerable_all_tokens_index/decl.cairo" + }, + "parent_location": [ + { + "end_col": 44, + "end_line": 18, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721Enumerable_all_tokens_index/impl.cairo" + }, + "parent_location": [ + { + "end_col": 44, + "end_line": 23, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721Enumerable_all_tokens_index/impl.cairo" + }, + "start_col": 32, + "start_line": 23 + }, + "While expanding the reference 'pedersen_ptr' in:" + ], + "start_col": 30, + "start_line": 18 + }, + "While trying to update the implicit return value 'pedersen_ptr' in:" + ], + "start_col": 15, + "start_line": 7 + } + }, + "1866": { + "accessible_scopes": [ + "openzeppelin.token.erc721.enumerable.library", + "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable_all_tokens_index", + "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable_all_tokens_index.read" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 58, + "end_line": 7, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721Enumerable_all_tokens_index/decl.cairo" + }, + "parent_location": [ + { + "end_col": 44, + "end_line": 18, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721Enumerable_all_tokens_index/impl.cairo" + }, + "parent_location": [ + { + "end_col": 50, + "end_line": 24, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721Enumerable_all_tokens_index/impl.cairo" + }, + "start_col": 35, + "start_line": 24 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 30, + "start_line": 18 + }, + "While trying to update the implicit return value 'range_check_ptr' in:" + ], + "start_col": 43, + "start_line": 7 + } + }, + "1867": { + "accessible_scopes": [ + "openzeppelin.token.erc721.enumerable.library", + "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable_all_tokens_index", + "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable_all_tokens_index.read" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 33, + "end_line": 19, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721Enumerable_all_tokens_index/impl.cairo" + }, + "parent_location": [ + { + "end_col": 64, + "end_line": 25, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721Enumerable_all_tokens_index/impl.cairo" + }, + "start_col": 45, + "start_line": 25 + }, + "While expanding the reference '__storage_var_temp0' in:" + ], + "start_col": 14, + "start_line": 19 + } + }, + "1868": { + "accessible_scopes": [ + "openzeppelin.token.erc721.enumerable.library", + "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable_all_tokens_index", + "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable_all_tokens_index.read" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 33, + "end_line": 20, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721Enumerable_all_tokens_index/impl.cairo" + }, + "parent_location": [ + { + "end_col": 64, + "end_line": 26, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721Enumerable_all_tokens_index/impl.cairo" + }, + "start_col": 45, + "start_line": 26 + }, + "While expanding the reference '__storage_var_temp1' in:" + ], + "start_col": 14, + "start_line": 20 + } + }, + "1869": { + "accessible_scopes": [ + "openzeppelin.token.erc721.enumerable.library", + "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable_all_tokens_index", + "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable_all_tokens_index.read" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 58, + "end_line": 27, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721Enumerable_all_tokens_index/impl.cairo" + }, + "start_col": 9, + "start_line": 27 + } + }, + "1870": { + "accessible_scopes": [ + "openzeppelin.token.erc721.enumerable.library", + "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable_all_tokens_index", + "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable_all_tokens_index.write" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 62, + "end_line": 30, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721Enumerable_all_tokens_index/impl.cairo" + }, + "parent_location": [ + { + "end_col": 41, + "end_line": 7, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721Enumerable_all_tokens_index/decl.cairo" + }, + "parent_location": [ + { + "end_col": 44, + "end_line": 33, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721Enumerable_all_tokens_index/impl.cairo" + }, + "start_col": 30, + "start_line": 33 + }, + "While trying to retrieve the implicit argument 'pedersen_ptr' in:" + ], + "start_col": 15, + "start_line": 7 + }, + "While expanding the reference 'pedersen_ptr' in:" + ], + "start_col": 36, + "start_line": 30 + } + }, + "1871": { + "accessible_scopes": [ + "openzeppelin.token.erc721.enumerable.library", + "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable_all_tokens_index", + "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable_all_tokens_index.write" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 79, + "end_line": 30, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721Enumerable_all_tokens_index/impl.cairo" + }, + "parent_location": [ + { + "end_col": 58, + "end_line": 7, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721Enumerable_all_tokens_index/decl.cairo" + }, + "parent_location": [ + { + "end_col": 44, + "end_line": 33, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721Enumerable_all_tokens_index/impl.cairo" + }, + "start_col": 30, + "start_line": 33 + }, + "While trying to retrieve the implicit argument 'range_check_ptr' in:" + ], + "start_col": 43, + "start_line": 7 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 64, + "start_line": 30 + } + }, + "1872": { + "accessible_scopes": [ + "openzeppelin.token.erc721.enumerable.library", + "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable_all_tokens_index", + "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable_all_tokens_index.write" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 26, + "end_line": 31, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721Enumerable_all_tokens_index/impl.cairo" + }, + "parent_location": [ + { + "end_col": 43, + "end_line": 33, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721Enumerable_all_tokens_index/impl.cairo" + }, + "start_col": 35, + "start_line": 33 + }, + "While expanding the reference 'token_id' in:" + ], + "start_col": 9, + "start_line": 31 + } + }, + "1873": { + "accessible_scopes": [ + "openzeppelin.token.erc721.enumerable.library", + "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable_all_tokens_index", + "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable_all_tokens_index.write" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 26, + "end_line": 31, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721Enumerable_all_tokens_index/impl.cairo" + }, + "parent_location": [ + { + "end_col": 43, + "end_line": 33, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721Enumerable_all_tokens_index/impl.cairo" + }, + "start_col": 35, + "start_line": 33 + }, + "While expanding the reference 'token_id' in:" + ], + "start_col": 9, + "start_line": 31 + } + }, + "1874": { + "accessible_scopes": [ + "openzeppelin.token.erc721.enumerable.library", + "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable_all_tokens_index", + "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable_all_tokens_index.write" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 44, + "end_line": 33, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721Enumerable_all_tokens_index/impl.cairo" + }, + "start_col": 30, + "start_line": 33 + } + }, + "1876": { + "accessible_scopes": [ + "openzeppelin.token.erc721.enumerable.library", + "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable_all_tokens_index", + "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable_all_tokens_index.write" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 34, + "end_line": 30, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721Enumerable_all_tokens_index/impl.cairo" + }, + "parent_location": [ + { + "end_col": 38, + "end_line": 370, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/starknet/common/syscalls.cairo" + }, + "parent_location": [ + { + "end_col": 80, + "end_line": 34, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721Enumerable_all_tokens_index/impl.cairo" + }, + "start_col": 9, + "start_line": 34 + }, + "While trying to retrieve the implicit argument 'syscall_ptr' in:" + ], + "start_col": 20, + "start_line": 370 + }, + "While expanding the reference 'syscall_ptr' in:" + ], + "start_col": 16, + "start_line": 30 + } + }, + "1877": { + "accessible_scopes": [ + "openzeppelin.token.erc721.enumerable.library", + "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable_all_tokens_index", + "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable_all_tokens_index.write" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 26, + "end_line": 33, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721Enumerable_all_tokens_index/impl.cairo" + }, + "parent_location": [ + { + "end_col": 43, + "end_line": 34, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721Enumerable_all_tokens_index/impl.cairo" + }, + "start_col": 31, + "start_line": 34 + }, + "While expanding the reference 'storage_addr' in:" + ], + "start_col": 14, + "start_line": 33 + } + }, + "1878": { + "accessible_scopes": [ + "openzeppelin.token.erc721.enumerable.library", + "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable_all_tokens_index", + "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable_all_tokens_index.write" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 79, + "end_line": 34, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721Enumerable_all_tokens_index/impl.cairo" + }, + "start_col": 55, + "start_line": 34 + } + }, + "1879": { + "accessible_scopes": [ + "openzeppelin.token.erc721.enumerable.library", + "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable_all_tokens_index", + "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable_all_tokens_index.write" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 80, + "end_line": 34, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721Enumerable_all_tokens_index/impl.cairo" + }, + "start_col": 9, + "start_line": 34 + } + }, + "1881": { + "accessible_scopes": [ + "openzeppelin.token.erc721.enumerable.library", + "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable_all_tokens_index", + "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable_all_tokens_index.write" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 47, + "end_line": 35, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721Enumerable_all_tokens_index/impl.cairo" + }, + "start_col": 31, + "start_line": 35 + } + }, + "1883": { + "accessible_scopes": [ + "openzeppelin.token.erc721.enumerable.library", + "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable_all_tokens_index", + "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable_all_tokens_index.write" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 79, + "end_line": 35, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721Enumerable_all_tokens_index/impl.cairo" + }, + "start_col": 55, + "start_line": 35 + } + }, + "1884": { + "accessible_scopes": [ + "openzeppelin.token.erc721.enumerable.library", + "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable_all_tokens_index", + "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable_all_tokens_index.write" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 80, + "end_line": 35, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721Enumerable_all_tokens_index/impl.cairo" + }, + "start_col": 9, + "start_line": 35 + } + }, + "1886": { + "accessible_scopes": [ + "openzeppelin.token.erc721.enumerable.library", + "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable_all_tokens_index", + "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable_all_tokens_index.write" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 41, + "end_line": 7, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721Enumerable_all_tokens_index/decl.cairo" + }, + "parent_location": [ + { + "end_col": 44, + "end_line": 33, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721Enumerable_all_tokens_index/impl.cairo" + }, + "parent_location": [ + { + "end_col": 62, + "end_line": 21, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721Enumerable_all_tokens_index/decl.cairo" + }, + "parent_location": [ + { + "end_col": 19, + "end_line": 36, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721Enumerable_all_tokens_index/impl.cairo" + }, + "start_col": 9, + "start_line": 36 + }, + "While trying to retrieve the implicit argument 'pedersen_ptr' in:" + ], + "start_col": 36, + "start_line": 21 + }, + "While expanding the reference 'pedersen_ptr' in:" + ], + "start_col": 30, + "start_line": 33 + }, + "While trying to update the implicit return value 'pedersen_ptr' in:" + ], + "start_col": 15, + "start_line": 7 + } + }, + "1887": { + "accessible_scopes": [ + "openzeppelin.token.erc721.enumerable.library", + "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable_all_tokens_index", + "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable_all_tokens_index.write" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 58, + "end_line": 7, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721Enumerable_all_tokens_index/decl.cairo" + }, + "parent_location": [ + { + "end_col": 44, + "end_line": 33, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721Enumerable_all_tokens_index/impl.cairo" + }, + "parent_location": [ + { + "end_col": 79, + "end_line": 21, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721Enumerable_all_tokens_index/decl.cairo" + }, + "parent_location": [ + { + "end_col": 19, + "end_line": 36, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721Enumerable_all_tokens_index/impl.cairo" + }, + "start_col": 9, + "start_line": 36 + }, + "While trying to retrieve the implicit argument 'range_check_ptr' in:" + ], + "start_col": 64, + "start_line": 21 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 30, + "start_line": 33 + }, + "While trying to update the implicit return value 'range_check_ptr' in:" + ], + "start_col": 43, + "start_line": 7 + } + }, + "1888": { + "accessible_scopes": [ + "openzeppelin.token.erc721.enumerable.library", + "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable_all_tokens_index", + "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable_all_tokens_index.write" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 19, + "end_line": 36, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721Enumerable_all_tokens_index/impl.cairo" + }, + "start_col": 9, + "start_line": 36 + } + }, + "1889": { + "accessible_scopes": [ + "openzeppelin.token.erc721.enumerable.library", + "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable_owned_tokens", + "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable_owned_tokens.addr" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 41, + "end_line": 7, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721Enumerable_owned_tokens/impl.cairo" + }, + "parent_location": [ + { + "end_col": 48, + "end_line": 11, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721Enumerable_owned_tokens/impl.cairo" + }, + "start_col": 36, + "start_line": 11 + }, + "While expanding the reference 'pedersen_ptr' in:" + ], + "start_col": 15, + "start_line": 7 + } + }, + "1890": { + "accessible_scopes": [ + "openzeppelin.token.erc721.enumerable.library", + "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable_owned_tokens", + "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable_owned_tokens.addr" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 93, + "end_line": 10, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721Enumerable_owned_tokens/impl.cairo" + }, + "parent_location": [ + { + "end_col": 53, + "end_line": 11, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721Enumerable_owned_tokens/impl.cairo" + }, + "start_col": 50, + "start_line": 11 + }, + "While expanding the reference 'res' in:" + ], + "start_col": 19, + "start_line": 10 + } + }, + "1892": { + "accessible_scopes": [ + "openzeppelin.token.erc721.enumerable.library", + "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable_owned_tokens", + "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable_owned_tokens.addr" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 77, + "end_line": 11, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721Enumerable_owned_tokens/impl.cairo" + }, + "start_col": 55, + "start_line": 11 + } + }, + "1893": { + "accessible_scopes": [ + "openzeppelin.token.erc721.enumerable.library", + "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable_owned_tokens", + "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable_owned_tokens.addr" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 78, + "end_line": 11, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721Enumerable_owned_tokens/impl.cairo" + }, + "start_col": 21, + "start_line": 11 + } + }, + "1895": { + "accessible_scopes": [ + "openzeppelin.token.erc721.enumerable.library", + "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable_owned_tokens", + "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable_owned_tokens.addr" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 77, + "end_line": 12, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721Enumerable_owned_tokens/impl.cairo" + }, + "start_col": 55, + "start_line": 12 + } + }, + "1896": { + "accessible_scopes": [ + "openzeppelin.token.erc721.enumerable.library", + "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable_owned_tokens", + "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable_owned_tokens.addr" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 78, + "end_line": 12, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721Enumerable_owned_tokens/impl.cairo" + }, + "start_col": 21, + "start_line": 12 + } + }, + "1898": { + "accessible_scopes": [ + "openzeppelin.token.erc721.enumerable.library", + "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable_owned_tokens", + "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable_owned_tokens.addr" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 77, + "end_line": 13, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721Enumerable_owned_tokens/impl.cairo" + }, + "start_col": 55, + "start_line": 13 + } + }, + "1899": { + "accessible_scopes": [ + "openzeppelin.token.erc721.enumerable.library", + "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable_owned_tokens", + "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable_owned_tokens.addr" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 78, + "end_line": 13, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721Enumerable_owned_tokens/impl.cairo" + }, + "start_col": 21, + "start_line": 13 + } + }, + "1901": { + "accessible_scopes": [ + "openzeppelin.token.erc721.enumerable.library", + "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable_owned_tokens", + "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable_owned_tokens.addr" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 58, + "end_line": 7, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721Enumerable_owned_tokens/impl.cairo" + }, + "parent_location": [ + { + "end_col": 39, + "end_line": 12, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/starknet/common/storage.cairo" + }, + "parent_location": [ + { + "end_col": 48, + "end_line": 14, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721Enumerable_owned_tokens/impl.cairo" + }, + "start_col": 21, + "start_line": 14 + }, + "While trying to retrieve the implicit argument 'range_check_ptr' in:" + ], + "start_col": 24, + "start_line": 12 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 43, + "start_line": 7 + } + }, + "1902": { + "accessible_scopes": [ + "openzeppelin.token.erc721.enumerable.library", + "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable_owned_tokens", + "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable_owned_tokens.addr" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 17, + "end_line": 13, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721Enumerable_owned_tokens/impl.cairo" + }, + "parent_location": [ + { + "end_col": 47, + "end_line": 14, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721Enumerable_owned_tokens/impl.cairo" + }, + "start_col": 44, + "start_line": 14 + }, + "While expanding the reference 'res' in:" + ], + "start_col": 14, + "start_line": 13 + } + }, + "1903": { + "accessible_scopes": [ + "openzeppelin.token.erc721.enumerable.library", + "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable_owned_tokens", + "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable_owned_tokens.addr" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 48, + "end_line": 14, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721Enumerable_owned_tokens/impl.cairo" + }, + "start_col": 21, + "start_line": 14 + } + }, + "1905": { + "accessible_scopes": [ + "openzeppelin.token.erc721.enumerable.library", + "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable_owned_tokens", + "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable_owned_tokens.addr" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 48, + "end_line": 13, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721Enumerable_owned_tokens/impl.cairo" + }, + "parent_location": [ + { + "end_col": 41, + "end_line": 7, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721Enumerable_owned_tokens/decl.cairo" + }, + "parent_location": [ + { + "end_col": 26, + "end_line": 15, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721Enumerable_owned_tokens/impl.cairo" + }, + "start_col": 9, + "start_line": 15 + }, + "While trying to retrieve the implicit argument 'pedersen_ptr' in:" + ], + "start_col": 15, + "start_line": 7 + }, + "While expanding the reference 'pedersen_ptr' in:" + ], + "start_col": 36, + "start_line": 13 + } + }, + "1906": { + "accessible_scopes": [ + "openzeppelin.token.erc721.enumerable.library", + "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable_owned_tokens", + "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable_owned_tokens.addr" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 39, + "end_line": 12, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/starknet/common/storage.cairo" + }, + "parent_location": [ + { + "end_col": 48, + "end_line": 14, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721Enumerable_owned_tokens/impl.cairo" + }, + "parent_location": [ + { + "end_col": 58, + "end_line": 7, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721Enumerable_owned_tokens/decl.cairo" + }, + "parent_location": [ + { + "end_col": 26, + "end_line": 15, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721Enumerable_owned_tokens/impl.cairo" + }, + "start_col": 9, + "start_line": 15 + }, + "While trying to retrieve the implicit argument 'range_check_ptr' in:" + ], + "start_col": 43, + "start_line": 7 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 21, + "start_line": 14 + }, + "While trying to update the implicit return value 'range_check_ptr' in:" + ], + "start_col": 24, + "start_line": 12 + } + }, + "1907": { + "accessible_scopes": [ + "openzeppelin.token.erc721.enumerable.library", + "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable_owned_tokens", + "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable_owned_tokens.addr" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 17, + "end_line": 14, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721Enumerable_owned_tokens/impl.cairo" + }, + "parent_location": [ + { + "end_col": 24, + "end_line": 15, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721Enumerable_owned_tokens/impl.cairo" + }, + "start_col": 21, + "start_line": 15 + }, + "While expanding the reference 'res' in:" + ], + "start_col": 14, + "start_line": 14 + } + }, + "1908": { + "accessible_scopes": [ + "openzeppelin.token.erc721.enumerable.library", + "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable_owned_tokens", + "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable_owned_tokens.addr" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 26, + "end_line": 15, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721Enumerable_owned_tokens/impl.cairo" + }, + "start_col": 9, + "start_line": 15 + } + }, + "1909": { + "accessible_scopes": [ + "openzeppelin.token.erc721.enumerable.library", + "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable_owned_tokens", + "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable_owned_tokens.read" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 61, + "end_line": 18, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721Enumerable_owned_tokens/impl.cairo" + }, + "parent_location": [ + { + "end_col": 41, + "end_line": 7, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721Enumerable_owned_tokens/decl.cairo" + }, + "parent_location": [ + { + "end_col": 48, + "end_line": 21, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721Enumerable_owned_tokens/impl.cairo" + }, + "start_col": 30, + "start_line": 21 + }, + "While trying to retrieve the implicit argument 'pedersen_ptr' in:" + ], + "start_col": 15, + "start_line": 7 + }, + "While expanding the reference 'pedersen_ptr' in:" + ], + "start_col": 35, + "start_line": 18 + } + }, + "1910": { + "accessible_scopes": [ + "openzeppelin.token.erc721.enumerable.library", + "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable_owned_tokens", + "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable_owned_tokens.read" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 78, + "end_line": 18, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721Enumerable_owned_tokens/impl.cairo" + }, + "parent_location": [ + { + "end_col": 58, + "end_line": 7, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721Enumerable_owned_tokens/decl.cairo" + }, + "parent_location": [ + { + "end_col": 48, + "end_line": 21, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721Enumerable_owned_tokens/impl.cairo" + }, + "start_col": 30, + "start_line": 21 + }, + "While trying to retrieve the implicit argument 'range_check_ptr' in:" + ], + "start_col": 43, + "start_line": 7 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 63, + "start_line": 18 + } + }, + "1911": { + "accessible_scopes": [ + "openzeppelin.token.erc721.enumerable.library", + "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable_owned_tokens", + "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable_owned_tokens.read" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 20, + "end_line": 19, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721Enumerable_owned_tokens/impl.cairo" + }, + "parent_location": [ + { + "end_col": 40, + "end_line": 21, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721Enumerable_owned_tokens/impl.cairo" + }, + "start_col": 35, + "start_line": 21 + }, + "While expanding the reference 'owner' in:" + ], + "start_col": 9, + "start_line": 19 + } + }, + "1912": { + "accessible_scopes": [ + "openzeppelin.token.erc721.enumerable.library", + "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable_owned_tokens", + "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable_owned_tokens.read" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 36, + "end_line": 19, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721Enumerable_owned_tokens/impl.cairo" + }, + "parent_location": [ + { + "end_col": 47, + "end_line": 21, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721Enumerable_owned_tokens/impl.cairo" + }, + "start_col": 42, + "start_line": 21 + }, + "While expanding the reference 'index' in:" + ], + "start_col": 22, + "start_line": 19 + } + }, + "1913": { + "accessible_scopes": [ + "openzeppelin.token.erc721.enumerable.library", + "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable_owned_tokens", + "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable_owned_tokens.read" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 36, + "end_line": 19, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721Enumerable_owned_tokens/impl.cairo" + }, + "parent_location": [ + { + "end_col": 47, + "end_line": 21, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721Enumerable_owned_tokens/impl.cairo" + }, + "start_col": 42, + "start_line": 21 + }, + "While expanding the reference 'index' in:" + ], + "start_col": 22, + "start_line": 19 + } + }, + "1914": { + "accessible_scopes": [ + "openzeppelin.token.erc721.enumerable.library", + "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable_owned_tokens", + "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable_owned_tokens.read" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 48, + "end_line": 21, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721Enumerable_owned_tokens/impl.cairo" + }, + "start_col": 30, + "start_line": 21 + } + }, + "1916": { + "accessible_scopes": [ + "openzeppelin.token.erc721.enumerable.library", + "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable_owned_tokens", + "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable_owned_tokens.read" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 33, + "end_line": 18, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721Enumerable_owned_tokens/impl.cairo" + }, + "parent_location": [ + { + "end_col": 37, + "end_line": 352, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/starknet/common/syscalls.cairo" + }, + "parent_location": [ + { + "end_col": 75, + "end_line": 22, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721Enumerable_owned_tokens/impl.cairo" + }, + "start_col": 37, + "start_line": 22 + }, + "While trying to retrieve the implicit argument 'syscall_ptr' in:" + ], + "start_col": 19, + "start_line": 352 + }, + "While expanding the reference 'syscall_ptr' in:" + ], + "start_col": 15, + "start_line": 18 + } + }, + "1917": { + "accessible_scopes": [ + "openzeppelin.token.erc721.enumerable.library", + "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable_owned_tokens", + "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable_owned_tokens.read" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 26, + "end_line": 21, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721Enumerable_owned_tokens/impl.cairo" + }, + "parent_location": [ + { + "end_col": 70, + "end_line": 22, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721Enumerable_owned_tokens/impl.cairo" + }, + "start_col": 58, + "start_line": 22 + }, + "While expanding the reference 'storage_addr' in:" + ], + "start_col": 14, + "start_line": 21 + } + }, + "1918": { + "accessible_scopes": [ + "openzeppelin.token.erc721.enumerable.library", + "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable_owned_tokens", + "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable_owned_tokens.read" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 75, + "end_line": 22, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721Enumerable_owned_tokens/impl.cairo" + }, + "start_col": 37, + "start_line": 22 + } + }, + "1920": { + "accessible_scopes": [ + "openzeppelin.token.erc721.enumerable.library", + "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable_owned_tokens", + "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable_owned_tokens.read" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 37, + "end_line": 352, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/starknet/common/syscalls.cairo" + }, + "parent_location": [ + { + "end_col": 75, + "end_line": 22, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721Enumerable_owned_tokens/impl.cairo" + }, + "parent_location": [ + { + "end_col": 37, + "end_line": 352, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/starknet/common/syscalls.cairo" + }, + "parent_location": [ + { + "end_col": 75, + "end_line": 23, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721Enumerable_owned_tokens/impl.cairo" + }, + "start_col": 37, + "start_line": 23 + }, + "While trying to retrieve the implicit argument 'syscall_ptr' in:" + ], + "start_col": 19, + "start_line": 352 + }, + "While expanding the reference 'syscall_ptr' in:" + ], + "start_col": 37, + "start_line": 22 + }, + "While trying to update the implicit return value 'syscall_ptr' in:" + ], + "start_col": 19, + "start_line": 352 + } + }, + "1921": { + "accessible_scopes": [ + "openzeppelin.token.erc721.enumerable.library", + "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable_owned_tokens", + "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable_owned_tokens.read" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 74, + "end_line": 23, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721Enumerable_owned_tokens/impl.cairo" + }, + "start_col": 58, + "start_line": 23 + } + }, + "1923": { + "accessible_scopes": [ + "openzeppelin.token.erc721.enumerable.library", + "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable_owned_tokens", + "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable_owned_tokens.read" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 75, + "end_line": 23, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721Enumerable_owned_tokens/impl.cairo" + }, + "start_col": 37, + "start_line": 23 + } + }, + "1925": { + "accessible_scopes": [ + "openzeppelin.token.erc721.enumerable.library", + "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable_owned_tokens", + "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable_owned_tokens.read" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 37, + "end_line": 352, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/starknet/common/syscalls.cairo" + }, + "parent_location": [ + { + "end_col": 75, + "end_line": 23, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721Enumerable_owned_tokens/impl.cairo" + }, + "parent_location": [ + { + "end_col": 42, + "end_line": 25, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721Enumerable_owned_tokens/impl.cairo" + }, + "start_col": 31, + "start_line": 25 + }, + "While expanding the reference 'syscall_ptr' in:" + ], + "start_col": 37, + "start_line": 23 + }, + "While trying to update the implicit return value 'syscall_ptr' in:" + ], + "start_col": 19, + "start_line": 352 + } + }, + "1926": { + "accessible_scopes": [ + "openzeppelin.token.erc721.enumerable.library", + "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable_owned_tokens", + "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable_owned_tokens.read" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 41, + "end_line": 7, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721Enumerable_owned_tokens/decl.cairo" + }, + "parent_location": [ + { + "end_col": 48, + "end_line": 21, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721Enumerable_owned_tokens/impl.cairo" + }, + "parent_location": [ + { + "end_col": 44, + "end_line": 26, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721Enumerable_owned_tokens/impl.cairo" + }, + "start_col": 32, + "start_line": 26 + }, + "While expanding the reference 'pedersen_ptr' in:" + ], + "start_col": 30, + "start_line": 21 + }, + "While trying to update the implicit return value 'pedersen_ptr' in:" + ], + "start_col": 15, + "start_line": 7 + } + }, + "1927": { + "accessible_scopes": [ + "openzeppelin.token.erc721.enumerable.library", + "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable_owned_tokens", + "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable_owned_tokens.read" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 58, + "end_line": 7, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721Enumerable_owned_tokens/decl.cairo" + }, + "parent_location": [ + { + "end_col": 48, + "end_line": 21, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721Enumerable_owned_tokens/impl.cairo" + }, + "parent_location": [ + { + "end_col": 50, + "end_line": 27, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721Enumerable_owned_tokens/impl.cairo" + }, + "start_col": 35, + "start_line": 27 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 30, + "start_line": 21 + }, + "While trying to update the implicit return value 'range_check_ptr' in:" + ], + "start_col": 43, + "start_line": 7 + } + }, + "1928": { + "accessible_scopes": [ + "openzeppelin.token.erc721.enumerable.library", + "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable_owned_tokens", + "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable_owned_tokens.read" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 33, + "end_line": 22, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721Enumerable_owned_tokens/impl.cairo" + }, + "parent_location": [ + { + "end_col": 64, + "end_line": 28, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721Enumerable_owned_tokens/impl.cairo" + }, + "start_col": 45, + "start_line": 28 + }, + "While expanding the reference '__storage_var_temp0' in:" + ], + "start_col": 14, + "start_line": 22 + } + }, + "1929": { + "accessible_scopes": [ + "openzeppelin.token.erc721.enumerable.library", + "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable_owned_tokens", + "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable_owned_tokens.read" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 33, + "end_line": 23, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721Enumerable_owned_tokens/impl.cairo" + }, + "parent_location": [ + { + "end_col": 64, + "end_line": 29, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721Enumerable_owned_tokens/impl.cairo" + }, + "start_col": 45, + "start_line": 29 + }, + "While expanding the reference '__storage_var_temp1' in:" + ], + "start_col": 14, + "start_line": 23 + } + }, + "1930": { + "accessible_scopes": [ + "openzeppelin.token.erc721.enumerable.library", + "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable_owned_tokens", + "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable_owned_tokens.read" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 58, + "end_line": 30, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721Enumerable_owned_tokens/impl.cairo" + }, + "start_col": 9, + "start_line": 30 + } + }, + "1931": { + "accessible_scopes": [ + "openzeppelin.token.erc721.enumerable.library", + "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable_owned_tokens", + "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable_owned_tokens.write" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 62, + "end_line": 33, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721Enumerable_owned_tokens/impl.cairo" + }, + "parent_location": [ + { + "end_col": 41, + "end_line": 7, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721Enumerable_owned_tokens/decl.cairo" + }, + "parent_location": [ + { + "end_col": 48, + "end_line": 36, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721Enumerable_owned_tokens/impl.cairo" + }, + "start_col": 30, + "start_line": 36 + }, + "While trying to retrieve the implicit argument 'pedersen_ptr' in:" + ], + "start_col": 15, + "start_line": 7 + }, + "While expanding the reference 'pedersen_ptr' in:" + ], + "start_col": 36, + "start_line": 33 + } + }, + "1932": { + "accessible_scopes": [ + "openzeppelin.token.erc721.enumerable.library", + "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable_owned_tokens", + "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable_owned_tokens.write" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 79, + "end_line": 33, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721Enumerable_owned_tokens/impl.cairo" + }, + "parent_location": [ + { + "end_col": 58, + "end_line": 7, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721Enumerable_owned_tokens/decl.cairo" + }, + "parent_location": [ + { + "end_col": 48, + "end_line": 36, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721Enumerable_owned_tokens/impl.cairo" + }, + "start_col": 30, + "start_line": 36 + }, + "While trying to retrieve the implicit argument 'range_check_ptr' in:" + ], + "start_col": 43, + "start_line": 7 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 64, + "start_line": 33 + } + }, + "1933": { + "accessible_scopes": [ + "openzeppelin.token.erc721.enumerable.library", + "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable_owned_tokens", + "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable_owned_tokens.write" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 20, + "end_line": 34, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721Enumerable_owned_tokens/impl.cairo" + }, + "parent_location": [ + { + "end_col": 40, + "end_line": 36, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721Enumerable_owned_tokens/impl.cairo" + }, + "start_col": 35, + "start_line": 36 + }, + "While expanding the reference 'owner' in:" + ], + "start_col": 9, + "start_line": 34 + } + }, + "1934": { + "accessible_scopes": [ + "openzeppelin.token.erc721.enumerable.library", + "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable_owned_tokens", + "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable_owned_tokens.write" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 36, + "end_line": 34, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721Enumerable_owned_tokens/impl.cairo" + }, + "parent_location": [ + { + "end_col": 47, + "end_line": 36, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721Enumerable_owned_tokens/impl.cairo" + }, + "start_col": 42, + "start_line": 36 + }, + "While expanding the reference 'index' in:" + ], + "start_col": 22, + "start_line": 34 + } + }, + "1935": { + "accessible_scopes": [ + "openzeppelin.token.erc721.enumerable.library", + "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable_owned_tokens", + "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable_owned_tokens.write" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 36, + "end_line": 34, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721Enumerable_owned_tokens/impl.cairo" + }, + "parent_location": [ + { + "end_col": 47, + "end_line": 36, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721Enumerable_owned_tokens/impl.cairo" + }, + "start_col": 42, + "start_line": 36 + }, + "While expanding the reference 'index' in:" + ], + "start_col": 22, + "start_line": 34 + } + }, + "1936": { + "accessible_scopes": [ + "openzeppelin.token.erc721.enumerable.library", + "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable_owned_tokens", + "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable_owned_tokens.write" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 48, + "end_line": 36, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721Enumerable_owned_tokens/impl.cairo" + }, + "start_col": 30, + "start_line": 36 + } + }, + "1938": { + "accessible_scopes": [ + "openzeppelin.token.erc721.enumerable.library", + "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable_owned_tokens", + "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable_owned_tokens.write" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 34, + "end_line": 33, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721Enumerable_owned_tokens/impl.cairo" + }, + "parent_location": [ + { + "end_col": 38, + "end_line": 370, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/starknet/common/syscalls.cairo" + }, + "parent_location": [ + { + "end_col": 80, + "end_line": 37, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721Enumerable_owned_tokens/impl.cairo" + }, + "start_col": 9, + "start_line": 37 + }, + "While trying to retrieve the implicit argument 'syscall_ptr' in:" + ], + "start_col": 20, + "start_line": 370 + }, + "While expanding the reference 'syscall_ptr' in:" + ], + "start_col": 16, + "start_line": 33 + } + }, + "1939": { + "accessible_scopes": [ + "openzeppelin.token.erc721.enumerable.library", + "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable_owned_tokens", + "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable_owned_tokens.write" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 26, + "end_line": 36, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721Enumerable_owned_tokens/impl.cairo" + }, + "parent_location": [ + { + "end_col": 43, + "end_line": 37, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721Enumerable_owned_tokens/impl.cairo" + }, + "start_col": 31, + "start_line": 37 + }, + "While expanding the reference 'storage_addr' in:" + ], + "start_col": 14, + "start_line": 36 + } + }, + "1940": { + "accessible_scopes": [ + "openzeppelin.token.erc721.enumerable.library", + "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable_owned_tokens", + "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable_owned_tokens.write" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 79, + "end_line": 37, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721Enumerable_owned_tokens/impl.cairo" + }, + "start_col": 55, + "start_line": 37 + } + }, + "1941": { + "accessible_scopes": [ + "openzeppelin.token.erc721.enumerable.library", + "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable_owned_tokens", + "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable_owned_tokens.write" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 80, + "end_line": 37, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721Enumerable_owned_tokens/impl.cairo" + }, + "start_col": 9, + "start_line": 37 + } + }, + "1943": { + "accessible_scopes": [ + "openzeppelin.token.erc721.enumerable.library", + "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable_owned_tokens", + "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable_owned_tokens.write" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 47, + "end_line": 38, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721Enumerable_owned_tokens/impl.cairo" + }, + "start_col": 31, + "start_line": 38 + } + }, + "1945": { + "accessible_scopes": [ + "openzeppelin.token.erc721.enumerable.library", + "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable_owned_tokens", + "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable_owned_tokens.write" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 79, + "end_line": 38, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721Enumerable_owned_tokens/impl.cairo" + }, + "start_col": 55, + "start_line": 38 + } + }, + "1946": { + "accessible_scopes": [ + "openzeppelin.token.erc721.enumerable.library", + "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable_owned_tokens", + "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable_owned_tokens.write" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 80, + "end_line": 38, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721Enumerable_owned_tokens/impl.cairo" + }, + "start_col": 9, + "start_line": 38 + } + }, + "1948": { + "accessible_scopes": [ + "openzeppelin.token.erc721.enumerable.library", + "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable_owned_tokens", + "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable_owned_tokens.write" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 41, + "end_line": 7, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721Enumerable_owned_tokens/decl.cairo" + }, + "parent_location": [ + { + "end_col": 48, + "end_line": 36, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721Enumerable_owned_tokens/impl.cairo" + }, + "parent_location": [ + { + "end_col": 62, + "end_line": 23, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721Enumerable_owned_tokens/decl.cairo" + }, + "parent_location": [ + { + "end_col": 19, + "end_line": 39, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721Enumerable_owned_tokens/impl.cairo" + }, + "start_col": 9, + "start_line": 39 + }, + "While trying to retrieve the implicit argument 'pedersen_ptr' in:" + ], + "start_col": 36, + "start_line": 23 + }, + "While expanding the reference 'pedersen_ptr' in:" + ], + "start_col": 30, + "start_line": 36 + }, + "While trying to update the implicit return value 'pedersen_ptr' in:" + ], + "start_col": 15, + "start_line": 7 + } + }, + "1949": { + "accessible_scopes": [ + "openzeppelin.token.erc721.enumerable.library", + "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable_owned_tokens", + "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable_owned_tokens.write" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 58, + "end_line": 7, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721Enumerable_owned_tokens/decl.cairo" + }, + "parent_location": [ + { + "end_col": 48, + "end_line": 36, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721Enumerable_owned_tokens/impl.cairo" + }, + "parent_location": [ + { + "end_col": 79, + "end_line": 23, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721Enumerable_owned_tokens/decl.cairo" + }, + "parent_location": [ + { + "end_col": 19, + "end_line": 39, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721Enumerable_owned_tokens/impl.cairo" + }, + "start_col": 9, + "start_line": 39 + }, + "While trying to retrieve the implicit argument 'range_check_ptr' in:" + ], + "start_col": 64, + "start_line": 23 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 30, + "start_line": 36 + }, + "While trying to update the implicit return value 'range_check_ptr' in:" + ], + "start_col": 43, + "start_line": 7 + } + }, + "1950": { + "accessible_scopes": [ + "openzeppelin.token.erc721.enumerable.library", + "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable_owned_tokens", + "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable_owned_tokens.write" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 19, + "end_line": 39, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721Enumerable_owned_tokens/impl.cairo" + }, + "start_col": 9, + "start_line": 39 + } + }, + "1951": { + "accessible_scopes": [ + "openzeppelin.token.erc721.enumerable.library", + "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable_owned_tokens_index", + "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable_owned_tokens_index.addr" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 41, + "end_line": 7, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721Enumerable_owned_tokens_index/impl.cairo" + }, + "parent_location": [ + { + "end_col": 48, + "end_line": 9, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721Enumerable_owned_tokens_index/impl.cairo" + }, + "start_col": 36, + "start_line": 9 + }, + "While expanding the reference 'pedersen_ptr' in:" + ], + "start_col": 15, + "start_line": 7 + } + }, + "1952": { + "accessible_scopes": [ + "openzeppelin.token.erc721.enumerable.library", + "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable_owned_tokens_index", + "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable_owned_tokens_index.addr" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 94, + "end_line": 8, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721Enumerable_owned_tokens_index/impl.cairo" + }, + "parent_location": [ + { + "end_col": 53, + "end_line": 9, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721Enumerable_owned_tokens_index/impl.cairo" + }, + "start_col": 50, + "start_line": 9 + }, + "While expanding the reference 'res' in:" + ], + "start_col": 19, + "start_line": 8 + } + }, + "1954": { + "accessible_scopes": [ + "openzeppelin.token.erc721.enumerable.library", + "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable_owned_tokens_index", + "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable_owned_tokens_index.addr" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 80, + "end_line": 9, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721Enumerable_owned_tokens_index/impl.cairo" + }, + "start_col": 55, + "start_line": 9 + } + }, + "1955": { + "accessible_scopes": [ + "openzeppelin.token.erc721.enumerable.library", + "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable_owned_tokens_index", + "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable_owned_tokens_index.addr" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 81, + "end_line": 9, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721Enumerable_owned_tokens_index/impl.cairo" + }, + "start_col": 21, + "start_line": 9 + } + }, + "1957": { + "accessible_scopes": [ + "openzeppelin.token.erc721.enumerable.library", + "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable_owned_tokens_index", + "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable_owned_tokens_index.addr" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 80, + "end_line": 10, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721Enumerable_owned_tokens_index/impl.cairo" + }, + "start_col": 55, + "start_line": 10 + } + }, + "1958": { + "accessible_scopes": [ + "openzeppelin.token.erc721.enumerable.library", + "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable_owned_tokens_index", + "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable_owned_tokens_index.addr" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 81, + "end_line": 10, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721Enumerable_owned_tokens_index/impl.cairo" + }, + "start_col": 21, + "start_line": 10 + } + }, + "1960": { + "accessible_scopes": [ + "openzeppelin.token.erc721.enumerable.library", + "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable_owned_tokens_index", + "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable_owned_tokens_index.addr" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 58, + "end_line": 7, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721Enumerable_owned_tokens_index/impl.cairo" + }, + "parent_location": [ + { + "end_col": 39, + "end_line": 12, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/starknet/common/storage.cairo" + }, + "parent_location": [ + { + "end_col": 48, + "end_line": 11, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721Enumerable_owned_tokens_index/impl.cairo" + }, + "start_col": 21, + "start_line": 11 + }, + "While trying to retrieve the implicit argument 'range_check_ptr' in:" + ], + "start_col": 24, + "start_line": 12 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 43, + "start_line": 7 + } + }, + "1961": { + "accessible_scopes": [ + "openzeppelin.token.erc721.enumerable.library", + "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable_owned_tokens_index", + "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable_owned_tokens_index.addr" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 17, + "end_line": 10, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721Enumerable_owned_tokens_index/impl.cairo" + }, + "parent_location": [ + { + "end_col": 47, + "end_line": 11, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721Enumerable_owned_tokens_index/impl.cairo" + }, + "start_col": 44, + "start_line": 11 + }, + "While expanding the reference 'res' in:" + ], + "start_col": 14, + "start_line": 10 + } + }, + "1962": { + "accessible_scopes": [ + "openzeppelin.token.erc721.enumerable.library", + "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable_owned_tokens_index", + "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable_owned_tokens_index.addr" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 48, + "end_line": 11, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721Enumerable_owned_tokens_index/impl.cairo" + }, + "start_col": 21, + "start_line": 11 + } + }, + "1964": { + "accessible_scopes": [ + "openzeppelin.token.erc721.enumerable.library", + "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable_owned_tokens_index", + "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable_owned_tokens_index.addr" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 48, + "end_line": 10, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721Enumerable_owned_tokens_index/impl.cairo" + }, + "parent_location": [ + { + "end_col": 41, + "end_line": 7, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721Enumerable_owned_tokens_index/decl.cairo" + }, + "parent_location": [ + { + "end_col": 26, + "end_line": 12, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721Enumerable_owned_tokens_index/impl.cairo" + }, + "start_col": 9, + "start_line": 12 + }, + "While trying to retrieve the implicit argument 'pedersen_ptr' in:" + ], + "start_col": 15, + "start_line": 7 + }, + "While expanding the reference 'pedersen_ptr' in:" + ], + "start_col": 36, + "start_line": 10 + } + }, + "1965": { + "accessible_scopes": [ + "openzeppelin.token.erc721.enumerable.library", + "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable_owned_tokens_index", + "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable_owned_tokens_index.addr" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 39, + "end_line": 12, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/starknet/common/storage.cairo" + }, + "parent_location": [ + { + "end_col": 48, + "end_line": 11, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721Enumerable_owned_tokens_index/impl.cairo" + }, + "parent_location": [ + { + "end_col": 58, + "end_line": 7, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721Enumerable_owned_tokens_index/decl.cairo" + }, + "parent_location": [ + { + "end_col": 26, + "end_line": 12, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721Enumerable_owned_tokens_index/impl.cairo" + }, + "start_col": 9, + "start_line": 12 + }, + "While trying to retrieve the implicit argument 'range_check_ptr' in:" + ], + "start_col": 43, + "start_line": 7 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 21, + "start_line": 11 + }, + "While trying to update the implicit return value 'range_check_ptr' in:" + ], + "start_col": 24, + "start_line": 12 + } + }, + "1966": { + "accessible_scopes": [ + "openzeppelin.token.erc721.enumerable.library", + "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable_owned_tokens_index", + "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable_owned_tokens_index.addr" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 17, + "end_line": 11, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721Enumerable_owned_tokens_index/impl.cairo" + }, + "parent_location": [ + { + "end_col": 24, + "end_line": 12, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721Enumerable_owned_tokens_index/impl.cairo" + }, + "start_col": 21, + "start_line": 12 + }, + "While expanding the reference 'res' in:" + ], + "start_col": 14, + "start_line": 11 + } + }, + "1967": { + "accessible_scopes": [ + "openzeppelin.token.erc721.enumerable.library", + "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable_owned_tokens_index", + "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable_owned_tokens_index.addr" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 26, + "end_line": 12, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721Enumerable_owned_tokens_index/impl.cairo" + }, + "start_col": 9, + "start_line": 12 + } + }, + "1968": { + "accessible_scopes": [ + "openzeppelin.token.erc721.enumerable.library", + "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable_owned_tokens_index", + "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable_owned_tokens_index.read" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 61, + "end_line": 15, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721Enumerable_owned_tokens_index/impl.cairo" + }, + "parent_location": [ + { + "end_col": 41, + "end_line": 7, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721Enumerable_owned_tokens_index/decl.cairo" + }, + "parent_location": [ + { + "end_col": 44, + "end_line": 18, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721Enumerable_owned_tokens_index/impl.cairo" + }, + "start_col": 30, + "start_line": 18 + }, + "While trying to retrieve the implicit argument 'pedersen_ptr' in:" + ], + "start_col": 15, + "start_line": 7 + }, + "While expanding the reference 'pedersen_ptr' in:" + ], + "start_col": 35, + "start_line": 15 + } + }, + "1969": { + "accessible_scopes": [ + "openzeppelin.token.erc721.enumerable.library", + "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable_owned_tokens_index", + "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable_owned_tokens_index.read" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 78, + "end_line": 15, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721Enumerable_owned_tokens_index/impl.cairo" + }, + "parent_location": [ + { + "end_col": 58, + "end_line": 7, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721Enumerable_owned_tokens_index/decl.cairo" + }, + "parent_location": [ + { + "end_col": 44, + "end_line": 18, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721Enumerable_owned_tokens_index/impl.cairo" + }, + "start_col": 30, + "start_line": 18 + }, + "While trying to retrieve the implicit argument 'range_check_ptr' in:" + ], + "start_col": 43, + "start_line": 7 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 63, + "start_line": 15 + } + }, + "1970": { + "accessible_scopes": [ + "openzeppelin.token.erc721.enumerable.library", + "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable_owned_tokens_index", + "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable_owned_tokens_index.read" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 26, + "end_line": 16, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721Enumerable_owned_tokens_index/impl.cairo" + }, + "parent_location": [ + { + "end_col": 43, + "end_line": 18, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721Enumerable_owned_tokens_index/impl.cairo" + }, + "start_col": 35, + "start_line": 18 + }, + "While expanding the reference 'token_id' in:" + ], + "start_col": 9, + "start_line": 16 + } + }, + "1971": { + "accessible_scopes": [ + "openzeppelin.token.erc721.enumerable.library", + "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable_owned_tokens_index", + "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable_owned_tokens_index.read" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 26, + "end_line": 16, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721Enumerable_owned_tokens_index/impl.cairo" + }, + "parent_location": [ + { + "end_col": 43, + "end_line": 18, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721Enumerable_owned_tokens_index/impl.cairo" + }, + "start_col": 35, + "start_line": 18 + }, + "While expanding the reference 'token_id' in:" + ], + "start_col": 9, + "start_line": 16 + } + }, + "1972": { + "accessible_scopes": [ + "openzeppelin.token.erc721.enumerable.library", + "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable_owned_tokens_index", + "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable_owned_tokens_index.read" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 44, + "end_line": 18, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721Enumerable_owned_tokens_index/impl.cairo" + }, + "start_col": 30, + "start_line": 18 + } + }, + "1974": { + "accessible_scopes": [ + "openzeppelin.token.erc721.enumerable.library", + "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable_owned_tokens_index", + "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable_owned_tokens_index.read" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 33, + "end_line": 15, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721Enumerable_owned_tokens_index/impl.cairo" + }, + "parent_location": [ + { + "end_col": 37, + "end_line": 352, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/starknet/common/syscalls.cairo" + }, + "parent_location": [ + { + "end_col": 75, + "end_line": 19, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721Enumerable_owned_tokens_index/impl.cairo" + }, + "start_col": 37, + "start_line": 19 + }, + "While trying to retrieve the implicit argument 'syscall_ptr' in:" + ], + "start_col": 19, + "start_line": 352 + }, + "While expanding the reference 'syscall_ptr' in:" + ], + "start_col": 15, + "start_line": 15 + } + }, + "1975": { + "accessible_scopes": [ + "openzeppelin.token.erc721.enumerable.library", + "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable_owned_tokens_index", + "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable_owned_tokens_index.read" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 26, + "end_line": 18, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721Enumerable_owned_tokens_index/impl.cairo" + }, + "parent_location": [ + { + "end_col": 70, + "end_line": 19, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721Enumerable_owned_tokens_index/impl.cairo" + }, + "start_col": 58, + "start_line": 19 + }, + "While expanding the reference 'storage_addr' in:" + ], + "start_col": 14, + "start_line": 18 + } + }, + "1976": { + "accessible_scopes": [ + "openzeppelin.token.erc721.enumerable.library", + "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable_owned_tokens_index", + "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable_owned_tokens_index.read" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 75, + "end_line": 19, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721Enumerable_owned_tokens_index/impl.cairo" + }, + "start_col": 37, + "start_line": 19 + } + }, + "1978": { + "accessible_scopes": [ + "openzeppelin.token.erc721.enumerable.library", + "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable_owned_tokens_index", + "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable_owned_tokens_index.read" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 37, + "end_line": 352, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/starknet/common/syscalls.cairo" + }, + "parent_location": [ + { + "end_col": 75, + "end_line": 19, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721Enumerable_owned_tokens_index/impl.cairo" + }, + "parent_location": [ + { + "end_col": 37, + "end_line": 352, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/starknet/common/syscalls.cairo" + }, + "parent_location": [ + { + "end_col": 75, + "end_line": 20, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721Enumerable_owned_tokens_index/impl.cairo" + }, + "start_col": 37, + "start_line": 20 + }, + "While trying to retrieve the implicit argument 'syscall_ptr' in:" + ], + "start_col": 19, + "start_line": 352 + }, + "While expanding the reference 'syscall_ptr' in:" + ], + "start_col": 37, + "start_line": 19 + }, + "While trying to update the implicit return value 'syscall_ptr' in:" + ], + "start_col": 19, + "start_line": 352 + } + }, + "1979": { + "accessible_scopes": [ + "openzeppelin.token.erc721.enumerable.library", + "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable_owned_tokens_index", + "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable_owned_tokens_index.read" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 74, + "end_line": 20, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721Enumerable_owned_tokens_index/impl.cairo" + }, + "start_col": 58, + "start_line": 20 + } + }, + "1981": { + "accessible_scopes": [ + "openzeppelin.token.erc721.enumerable.library", + "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable_owned_tokens_index", + "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable_owned_tokens_index.read" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 75, + "end_line": 20, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721Enumerable_owned_tokens_index/impl.cairo" + }, + "start_col": 37, + "start_line": 20 + } + }, + "1983": { + "accessible_scopes": [ + "openzeppelin.token.erc721.enumerable.library", + "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable_owned_tokens_index", + "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable_owned_tokens_index.read" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 37, + "end_line": 352, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/starknet/common/syscalls.cairo" + }, + "parent_location": [ + { + "end_col": 75, + "end_line": 20, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721Enumerable_owned_tokens_index/impl.cairo" + }, + "parent_location": [ + { + "end_col": 42, + "end_line": 22, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721Enumerable_owned_tokens_index/impl.cairo" + }, + "start_col": 31, + "start_line": 22 + }, + "While expanding the reference 'syscall_ptr' in:" + ], + "start_col": 37, + "start_line": 20 + }, + "While trying to update the implicit return value 'syscall_ptr' in:" + ], + "start_col": 19, + "start_line": 352 + } + }, + "1984": { + "accessible_scopes": [ + "openzeppelin.token.erc721.enumerable.library", + "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable_owned_tokens_index", + "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable_owned_tokens_index.read" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 41, + "end_line": 7, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721Enumerable_owned_tokens_index/decl.cairo" + }, + "parent_location": [ + { + "end_col": 44, + "end_line": 18, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721Enumerable_owned_tokens_index/impl.cairo" + }, + "parent_location": [ + { + "end_col": 44, + "end_line": 23, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721Enumerable_owned_tokens_index/impl.cairo" + }, + "start_col": 32, + "start_line": 23 + }, + "While expanding the reference 'pedersen_ptr' in:" + ], + "start_col": 30, + "start_line": 18 + }, + "While trying to update the implicit return value 'pedersen_ptr' in:" + ], + "start_col": 15, + "start_line": 7 + } + }, + "1985": { + "accessible_scopes": [ + "openzeppelin.token.erc721.enumerable.library", + "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable_owned_tokens_index", + "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable_owned_tokens_index.read" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 58, + "end_line": 7, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721Enumerable_owned_tokens_index/decl.cairo" + }, + "parent_location": [ + { + "end_col": 44, + "end_line": 18, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721Enumerable_owned_tokens_index/impl.cairo" + }, + "parent_location": [ + { + "end_col": 50, + "end_line": 24, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721Enumerable_owned_tokens_index/impl.cairo" + }, + "start_col": 35, + "start_line": 24 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 30, + "start_line": 18 + }, + "While trying to update the implicit return value 'range_check_ptr' in:" + ], + "start_col": 43, + "start_line": 7 + } + }, + "1986": { + "accessible_scopes": [ + "openzeppelin.token.erc721.enumerable.library", + "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable_owned_tokens_index", + "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable_owned_tokens_index.read" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 33, + "end_line": 19, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721Enumerable_owned_tokens_index/impl.cairo" + }, + "parent_location": [ + { + "end_col": 64, + "end_line": 25, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721Enumerable_owned_tokens_index/impl.cairo" + }, + "start_col": 45, + "start_line": 25 + }, + "While expanding the reference '__storage_var_temp0' in:" + ], + "start_col": 14, + "start_line": 19 + } + }, + "1987": { + "accessible_scopes": [ + "openzeppelin.token.erc721.enumerable.library", + "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable_owned_tokens_index", + "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable_owned_tokens_index.read" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 33, + "end_line": 20, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721Enumerable_owned_tokens_index/impl.cairo" + }, + "parent_location": [ + { + "end_col": 64, + "end_line": 26, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721Enumerable_owned_tokens_index/impl.cairo" + }, + "start_col": 45, + "start_line": 26 + }, + "While expanding the reference '__storage_var_temp1' in:" + ], + "start_col": 14, + "start_line": 20 + } + }, + "1988": { + "accessible_scopes": [ + "openzeppelin.token.erc721.enumerable.library", + "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable_owned_tokens_index", + "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable_owned_tokens_index.read" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 58, + "end_line": 27, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721Enumerable_owned_tokens_index/impl.cairo" + }, + "start_col": 9, + "start_line": 27 + } + }, + "1989": { + "accessible_scopes": [ + "openzeppelin.token.erc721.enumerable.library", + "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable_owned_tokens_index", + "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable_owned_tokens_index.write" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 62, + "end_line": 30, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721Enumerable_owned_tokens_index/impl.cairo" + }, + "parent_location": [ + { + "end_col": 41, + "end_line": 7, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721Enumerable_owned_tokens_index/decl.cairo" + }, + "parent_location": [ + { + "end_col": 44, + "end_line": 33, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721Enumerable_owned_tokens_index/impl.cairo" + }, + "start_col": 30, + "start_line": 33 + }, + "While trying to retrieve the implicit argument 'pedersen_ptr' in:" + ], + "start_col": 15, + "start_line": 7 + }, + "While expanding the reference 'pedersen_ptr' in:" + ], + "start_col": 36, + "start_line": 30 + } + }, + "1990": { + "accessible_scopes": [ + "openzeppelin.token.erc721.enumerable.library", + "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable_owned_tokens_index", + "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable_owned_tokens_index.write" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 79, + "end_line": 30, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721Enumerable_owned_tokens_index/impl.cairo" + }, + "parent_location": [ + { + "end_col": 58, + "end_line": 7, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721Enumerable_owned_tokens_index/decl.cairo" + }, + "parent_location": [ + { + "end_col": 44, + "end_line": 33, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721Enumerable_owned_tokens_index/impl.cairo" + }, + "start_col": 30, + "start_line": 33 + }, + "While trying to retrieve the implicit argument 'range_check_ptr' in:" + ], + "start_col": 43, + "start_line": 7 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 64, + "start_line": 30 + } + }, + "1991": { + "accessible_scopes": [ + "openzeppelin.token.erc721.enumerable.library", + "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable_owned_tokens_index", + "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable_owned_tokens_index.write" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 26, + "end_line": 31, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721Enumerable_owned_tokens_index/impl.cairo" + }, + "parent_location": [ + { + "end_col": 43, + "end_line": 33, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721Enumerable_owned_tokens_index/impl.cairo" + }, + "start_col": 35, + "start_line": 33 + }, + "While expanding the reference 'token_id' in:" + ], + "start_col": 9, + "start_line": 31 + } + }, + "1992": { + "accessible_scopes": [ + "openzeppelin.token.erc721.enumerable.library", + "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable_owned_tokens_index", + "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable_owned_tokens_index.write" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 26, + "end_line": 31, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721Enumerable_owned_tokens_index/impl.cairo" + }, + "parent_location": [ + { + "end_col": 43, + "end_line": 33, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721Enumerable_owned_tokens_index/impl.cairo" + }, + "start_col": 35, + "start_line": 33 + }, + "While expanding the reference 'token_id' in:" + ], + "start_col": 9, + "start_line": 31 + } + }, + "1993": { + "accessible_scopes": [ + "openzeppelin.token.erc721.enumerable.library", + "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable_owned_tokens_index", + "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable_owned_tokens_index.write" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 44, + "end_line": 33, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721Enumerable_owned_tokens_index/impl.cairo" + }, + "start_col": 30, + "start_line": 33 + } + }, + "1995": { + "accessible_scopes": [ + "openzeppelin.token.erc721.enumerable.library", + "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable_owned_tokens_index", + "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable_owned_tokens_index.write" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 34, + "end_line": 30, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721Enumerable_owned_tokens_index/impl.cairo" + }, + "parent_location": [ + { + "end_col": 38, + "end_line": 370, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/starknet/common/syscalls.cairo" + }, + "parent_location": [ + { + "end_col": 80, + "end_line": 34, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721Enumerable_owned_tokens_index/impl.cairo" + }, + "start_col": 9, + "start_line": 34 + }, + "While trying to retrieve the implicit argument 'syscall_ptr' in:" + ], + "start_col": 20, + "start_line": 370 + }, + "While expanding the reference 'syscall_ptr' in:" + ], + "start_col": 16, + "start_line": 30 + } + }, + "1996": { + "accessible_scopes": [ + "openzeppelin.token.erc721.enumerable.library", + "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable_owned_tokens_index", + "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable_owned_tokens_index.write" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 26, + "end_line": 33, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721Enumerable_owned_tokens_index/impl.cairo" + }, + "parent_location": [ + { + "end_col": 43, + "end_line": 34, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721Enumerable_owned_tokens_index/impl.cairo" + }, + "start_col": 31, + "start_line": 34 + }, + "While expanding the reference 'storage_addr' in:" + ], + "start_col": 14, + "start_line": 33 + } + }, + "1997": { + "accessible_scopes": [ + "openzeppelin.token.erc721.enumerable.library", + "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable_owned_tokens_index", + "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable_owned_tokens_index.write" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 79, + "end_line": 34, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721Enumerable_owned_tokens_index/impl.cairo" + }, + "start_col": 55, + "start_line": 34 + } + }, + "1998": { + "accessible_scopes": [ + "openzeppelin.token.erc721.enumerable.library", + "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable_owned_tokens_index", + "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable_owned_tokens_index.write" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 80, + "end_line": 34, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721Enumerable_owned_tokens_index/impl.cairo" + }, + "start_col": 9, + "start_line": 34 + } + }, + "2000": { + "accessible_scopes": [ + "openzeppelin.token.erc721.enumerable.library", + "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable_owned_tokens_index", + "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable_owned_tokens_index.write" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 47, + "end_line": 35, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721Enumerable_owned_tokens_index/impl.cairo" + }, + "start_col": 31, + "start_line": 35 + } + }, + "2002": { + "accessible_scopes": [ + "openzeppelin.token.erc721.enumerable.library", + "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable_owned_tokens_index", + "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable_owned_tokens_index.write" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 79, + "end_line": 35, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721Enumerable_owned_tokens_index/impl.cairo" + }, + "start_col": 55, + "start_line": 35 + } + }, + "2003": { + "accessible_scopes": [ + "openzeppelin.token.erc721.enumerable.library", + "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable_owned_tokens_index", + "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable_owned_tokens_index.write" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 80, + "end_line": 35, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721Enumerable_owned_tokens_index/impl.cairo" + }, + "start_col": 9, + "start_line": 35 + } + }, + "2005": { + "accessible_scopes": [ + "openzeppelin.token.erc721.enumerable.library", + "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable_owned_tokens_index", + "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable_owned_tokens_index.write" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 41, + "end_line": 7, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721Enumerable_owned_tokens_index/decl.cairo" + }, + "parent_location": [ + { + "end_col": 44, + "end_line": 33, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721Enumerable_owned_tokens_index/impl.cairo" + }, + "parent_location": [ + { + "end_col": 62, + "end_line": 21, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721Enumerable_owned_tokens_index/decl.cairo" + }, + "parent_location": [ + { + "end_col": 19, + "end_line": 36, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721Enumerable_owned_tokens_index/impl.cairo" + }, + "start_col": 9, + "start_line": 36 + }, + "While trying to retrieve the implicit argument 'pedersen_ptr' in:" + ], + "start_col": 36, + "start_line": 21 + }, + "While expanding the reference 'pedersen_ptr' in:" + ], + "start_col": 30, + "start_line": 33 + }, + "While trying to update the implicit return value 'pedersen_ptr' in:" + ], + "start_col": 15, + "start_line": 7 + } + }, + "2006": { + "accessible_scopes": [ + "openzeppelin.token.erc721.enumerable.library", + "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable_owned_tokens_index", + "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable_owned_tokens_index.write" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 58, + "end_line": 7, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721Enumerable_owned_tokens_index/decl.cairo" + }, + "parent_location": [ + { + "end_col": 44, + "end_line": 33, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721Enumerable_owned_tokens_index/impl.cairo" + }, + "parent_location": [ + { + "end_col": 79, + "end_line": 21, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721Enumerable_owned_tokens_index/decl.cairo" + }, + "parent_location": [ + { + "end_col": 19, + "end_line": 36, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721Enumerable_owned_tokens_index/impl.cairo" + }, + "start_col": 9, + "start_line": 36 + }, + "While trying to retrieve the implicit argument 'range_check_ptr' in:" + ], + "start_col": 64, + "start_line": 21 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 30, + "start_line": 33 + }, + "While trying to update the implicit return value 'range_check_ptr' in:" + ], + "start_col": 43, + "start_line": 7 + } + }, + "2007": { + "accessible_scopes": [ + "openzeppelin.token.erc721.enumerable.library", + "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable_owned_tokens_index", + "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable_owned_tokens_index.write" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 19, + "end_line": 36, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721Enumerable_owned_tokens_index/impl.cairo" + }, + "start_col": 9, + "start_line": 36 + } + }, + "2008": { + "accessible_scopes": [ + "openzeppelin.token.erc721.enumerable.library", + "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable", + "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable.initializer" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 40, + "end_line": 44, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" + }, + "parent_location": [ + { + "end_col": 47, + "end_line": 29, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/introspection/erc165/library.cairo" + }, + "parent_location": [ + { + "end_col": 57, + "end_line": 45, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" + }, + "start_col": 9, + "start_line": 45 + }, + "While trying to retrieve the implicit argument 'syscall_ptr' in:" + ], + "start_col": 29, + "start_line": 29 + }, + "While expanding the reference 'syscall_ptr' in:" + ], + "start_col": 22, + "start_line": 44 + } + }, + "2009": { + "accessible_scopes": [ + "openzeppelin.token.erc721.enumerable.library", + "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable", + "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable.initializer" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 68, + "end_line": 44, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" + }, + "parent_location": [ + { + "end_col": 75, + "end_line": 29, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/introspection/erc165/library.cairo" + }, + "parent_location": [ + { + "end_col": 57, + "end_line": 45, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" + }, + "start_col": 9, + "start_line": 45 + }, + "While trying to retrieve the implicit argument 'pedersen_ptr' in:" + ], + "start_col": 49, + "start_line": 29 + }, + "While expanding the reference 'pedersen_ptr' in:" + ], + "start_col": 42, + "start_line": 44 + } + }, + "2010": { + "accessible_scopes": [ + "openzeppelin.token.erc721.enumerable.library", + "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable", + "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable.initializer" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 85, + "end_line": 44, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" + }, + "parent_location": [ + { + "end_col": 92, + "end_line": 29, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/introspection/erc165/library.cairo" + }, + "parent_location": [ + { + "end_col": 57, + "end_line": 45, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" + }, + "start_col": 9, + "start_line": 45 + }, + "While trying to retrieve the implicit argument 'range_check_ptr' in:" + ], + "start_col": 77, + "start_line": 29 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 70, + "start_line": 44 + } + }, + "2011": { + "accessible_scopes": [ + "openzeppelin.token.erc721.enumerable.library", + "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable", + "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable.initializer" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 56, + "end_line": 45, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" + }, + "start_col": 35, + "start_line": 45 + } + }, + "2013": { + "accessible_scopes": [ + "openzeppelin.token.erc721.enumerable.library", + "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable", + "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable.initializer" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 57, + "end_line": 45, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" + }, + "start_col": 9, + "start_line": 45 + } + }, + "2015": { + "accessible_scopes": [ + "openzeppelin.token.erc721.enumerable.library", + "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable", + "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable.initializer" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 19, + "end_line": 46, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" + }, + "start_col": 9, + "start_line": 46 + } + }, + "2016": { + "accessible_scopes": [ + "openzeppelin.token.erc721.enumerable.library", + "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable", + "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable.total_supply" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 41, + "end_line": 53, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" + }, + "parent_location": [ + { + "end_col": 33, + "end_line": 13, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721Enumerable_all_tokens_len/decl.cairo" + }, + "parent_location": [ + { + "end_col": 54, + "end_line": 56, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" + }, + "start_col": 16, + "start_line": 56 + }, + "While trying to retrieve the implicit argument 'syscall_ptr' in:" + ], + "start_col": 15, + "start_line": 13 + }, + "While expanding the reference 'syscall_ptr' in:" + ], + "start_col": 23, + "start_line": 53 + } + }, + "2017": { + "accessible_scopes": [ + "openzeppelin.token.erc721.enumerable.library", + "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable", + "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable.total_supply" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 69, + "end_line": 53, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" + }, + "parent_location": [ + { + "end_col": 61, + "end_line": 13, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721Enumerable_all_tokens_len/decl.cairo" + }, + "parent_location": [ + { + "end_col": 54, + "end_line": 56, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" + }, + "start_col": 16, + "start_line": 56 + }, + "While trying to retrieve the implicit argument 'pedersen_ptr' in:" + ], + "start_col": 35, + "start_line": 13 + }, + "While expanding the reference 'pedersen_ptr' in:" + ], + "start_col": 43, + "start_line": 53 + } + }, + "2018": { + "accessible_scopes": [ + "openzeppelin.token.erc721.enumerable.library", + "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable", + "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable.total_supply" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 86, + "end_line": 53, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" + }, + "parent_location": [ + { + "end_col": 78, + "end_line": 13, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721Enumerable_all_tokens_len/decl.cairo" + }, + "parent_location": [ + { + "end_col": 54, + "end_line": 56, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" + }, + "start_col": 16, + "start_line": 56 + }, + "While trying to retrieve the implicit argument 'range_check_ptr' in:" + ], + "start_col": 63, + "start_line": 13 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 71, + "start_line": 53 + } + }, + "2019": { + "accessible_scopes": [ + "openzeppelin.token.erc721.enumerable.library", + "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable", + "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable.total_supply" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 54, + "end_line": 56, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" + }, + "start_col": 16, + "start_line": 56 + } + }, + "2021": { + "accessible_scopes": [ + "openzeppelin.token.erc721.enumerable.library", + "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable", + "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable.total_supply" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 55, + "end_line": 56, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" + }, + "start_col": 9, + "start_line": 56 + } + }, + "2022": { + "accessible_scopes": [ + "openzeppelin.token.erc721.enumerable.library", + "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable", + "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable.token_by_index" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 22, + "end_line": 62, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" + }, + "start_col": 9, + "start_line": 62 + } + }, + "2024": { + "accessible_scopes": [ + "openzeppelin.token.erc721.enumerable.library", + "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable", + "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable.token_by_index" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 88, + "end_line": 59, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" + }, + "parent_location": [ + { + "end_col": 35, + "end_line": 21, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/uint256.cairo" + }, + "parent_location": [ + { + "end_col": 29, + "end_line": 63, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" + }, + "start_col": 9, + "start_line": 63 + }, + "While trying to retrieve the implicit argument 'range_check_ptr' in:" + ], + "start_col": 20, + "start_line": 21 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 73, + "start_line": 59 + } + }, + "2025": { + "accessible_scopes": [ + "openzeppelin.token.erc721.enumerable.library", + "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable", + "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable.token_by_index" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 23, + "end_line": 60, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" + }, + "parent_location": [ + { + "end_col": 28, + "end_line": 63, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" + }, + "start_col": 23, + "start_line": 63 + }, + "While expanding the reference 'index' in:" + ], + "start_col": 9, + "start_line": 60 + } + }, + "2026": { + "accessible_scopes": [ + "openzeppelin.token.erc721.enumerable.library", + "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable", + "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable.token_by_index" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 23, + "end_line": 60, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" + }, + "parent_location": [ + { + "end_col": 28, + "end_line": 63, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" + }, + "start_col": 23, + "start_line": 63 + }, + "While expanding the reference 'index' in:" + ], + "start_col": 9, + "start_line": 60 + } + }, + "2027": { + "accessible_scopes": [ + "openzeppelin.token.erc721.enumerable.library", + "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable", + "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable.token_by_index" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 29, + "end_line": 63, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" + }, + "start_col": 9, + "start_line": 63 + } + }, + "2029": { + "accessible_scopes": [ + "openzeppelin.token.erc721.enumerable.library", + "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable", + "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable.token_by_index" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 43, + "end_line": 59, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" + }, + "parent_location": [ + { + "end_col": 41, + "end_line": 53, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" + }, + "parent_location": [ + { + "end_col": 61, + "end_line": 65, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" + }, + "start_col": 30, + "start_line": 65 + }, + "While trying to retrieve the implicit argument 'syscall_ptr' in:" + ], + "start_col": 23, + "start_line": 53 + }, + "While expanding the reference 'syscall_ptr' in:" + ], + "start_col": 25, + "start_line": 59 + } + }, + "2030": { + "accessible_scopes": [ + "openzeppelin.token.erc721.enumerable.library", + "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable", + "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable.token_by_index" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 71, + "end_line": 59, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" + }, + "parent_location": [ + { + "end_col": 69, + "end_line": 53, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" + }, + "parent_location": [ + { + "end_col": 61, + "end_line": 65, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" + }, + "start_col": 30, + "start_line": 65 + }, + "While trying to retrieve the implicit argument 'pedersen_ptr' in:" + ], + "start_col": 43, + "start_line": 53 + }, + "While expanding the reference 'pedersen_ptr' in:" + ], + "start_col": 45, + "start_line": 59 + } + }, + "2031": { + "accessible_scopes": [ + "openzeppelin.token.erc721.enumerable.library", + "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable", + "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable.token_by_index" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 35, + "end_line": 21, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/uint256.cairo" + }, + "parent_location": [ + { + "end_col": 29, + "end_line": 63, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" + }, + "parent_location": [ + { + "end_col": 86, + "end_line": 53, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" + }, + "parent_location": [ + { + "end_col": 61, + "end_line": 65, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" + }, + "start_col": 30, + "start_line": 65 + }, + "While trying to retrieve the implicit argument 'range_check_ptr' in:" + ], + "start_col": 71, + "start_line": 53 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 9, + "start_line": 63 + }, + "While trying to update the implicit return value 'range_check_ptr' in:" + ], + "start_col": 20, + "start_line": 21 + } + }, + "2032": { + "accessible_scopes": [ + "openzeppelin.token.erc721.enumerable.library", + "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable", + "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable.token_by_index" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 61, + "end_line": 65, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" + }, + "start_col": 30, + "start_line": 65 + } + }, + "2034": { + "accessible_scopes": [ + "openzeppelin.token.erc721.enumerable.library", + "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable", + "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable.token_by_index" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 86, + "end_line": 53, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" + }, + "parent_location": [ + { + "end_col": 61, + "end_line": 65, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" + }, + "parent_location": [ + { + "end_col": 32, + "end_line": 133, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/uint256.cairo" + }, + "parent_location": [ + { + "end_col": 45, + "end_line": 66, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" + }, + "start_col": 23, + "start_line": 66 + }, + "While trying to retrieve the implicit argument 'range_check_ptr' in:" + ], + "start_col": 17, + "start_line": 133 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 30, + "start_line": 65 + }, + "While trying to update the implicit return value 'range_check_ptr' in:" + ], + "start_col": 71, + "start_line": 53 + } + }, + "2035": { + "accessible_scopes": [ + "openzeppelin.token.erc721.enumerable.library", + "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable", + "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable.token_by_index" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 23, + "end_line": 60, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" + }, + "parent_location": [ + { + "end_col": 39, + "end_line": 66, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" + }, + "start_col": 34, + "start_line": 66 + }, + "While expanding the reference 'index' in:" + ], + "start_col": 9, + "start_line": 60 + } + }, + "2036": { + "accessible_scopes": [ + "openzeppelin.token.erc721.enumerable.library", + "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable", + "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable.token_by_index" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 23, + "end_line": 60, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" + }, + "parent_location": [ + { + "end_col": 39, + "end_line": 66, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" + }, + "start_col": 34, + "start_line": 66 + }, + "While expanding the reference 'index' in:" + ], + "start_col": 9, + "start_line": 60 + } + }, + "2037": { + "accessible_scopes": [ + "openzeppelin.token.erc721.enumerable.library", + "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable", + "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable.token_by_index" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 26, + "end_line": 65, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" + }, + "parent_location": [ + { + "end_col": 44, + "end_line": 66, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" + }, + "start_col": 41, + "start_line": 66 + }, + "While expanding the reference 'len' in:" + ], + "start_col": 14, + "start_line": 65 + } + }, + "2038": { + "accessible_scopes": [ + "openzeppelin.token.erc721.enumerable.library", + "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable", + "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable.token_by_index" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 26, + "end_line": 65, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" + }, + "parent_location": [ + { + "end_col": 44, + "end_line": 66, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" + }, + "start_col": 41, + "start_line": 66 + }, + "While expanding the reference 'len' in:" + ], + "start_col": 14, + "start_line": 65 + } + }, + "2039": { + "accessible_scopes": [ + "openzeppelin.token.erc721.enumerable.library", + "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable", + "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable.token_by_index" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 45, + "end_line": 66, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" + }, + "start_col": 23, + "start_line": 66 + } + }, + "2041": { + "accessible_scopes": [ + "openzeppelin.token.erc721.enumerable.library", + "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable", + "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable.token_by_index" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 33, + "end_line": 68, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" + }, + "start_col": 13, + "start_line": 68 + } + }, + "2043": { + "accessible_scopes": [ + "openzeppelin.token.erc721.enumerable.library", + "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable", + "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable.token_by_index" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 41, + "end_line": 53, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" + }, + "parent_location": [ + { + "end_col": 61, + "end_line": 65, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" + }, + "parent_location": [ + { + "end_col": 33, + "end_line": 13, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721Enumerable_all_tokens/decl.cairo" + }, + "parent_location": [ + { + "end_col": 55, + "end_line": 71, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" + }, + "start_col": 16, + "start_line": 71 + }, + "While trying to retrieve the implicit argument 'syscall_ptr' in:" + ], + "start_col": 15, + "start_line": 13 + }, + "While expanding the reference 'syscall_ptr' in:" + ], + "start_col": 30, + "start_line": 65 + }, + "While trying to update the implicit return value 'syscall_ptr' in:" + ], + "start_col": 23, + "start_line": 53 + } + }, + "2044": { + "accessible_scopes": [ + "openzeppelin.token.erc721.enumerable.library", + "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable", + "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable.token_by_index" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 69, + "end_line": 53, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" + }, + "parent_location": [ + { + "end_col": 61, + "end_line": 65, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" + }, + "parent_location": [ + { + "end_col": 61, + "end_line": 13, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721Enumerable_all_tokens/decl.cairo" + }, + "parent_location": [ + { + "end_col": 55, + "end_line": 71, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" + }, + "start_col": 16, + "start_line": 71 + }, + "While trying to retrieve the implicit argument 'pedersen_ptr' in:" + ], + "start_col": 35, + "start_line": 13 + }, + "While expanding the reference 'pedersen_ptr' in:" + ], + "start_col": 30, + "start_line": 65 + }, + "While trying to update the implicit return value 'pedersen_ptr' in:" + ], + "start_col": 43, + "start_line": 53 + } + }, + "2045": { + "accessible_scopes": [ + "openzeppelin.token.erc721.enumerable.library", + "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable", + "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable.token_by_index" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 32, + "end_line": 133, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/uint256.cairo" + }, + "parent_location": [ + { + "end_col": 45, + "end_line": 66, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" + }, + "parent_location": [ + { + "end_col": 78, + "end_line": 13, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721Enumerable_all_tokens/decl.cairo" + }, + "parent_location": [ + { + "end_col": 55, + "end_line": 71, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" + }, + "start_col": 16, + "start_line": 71 + }, + "While trying to retrieve the implicit argument 'range_check_ptr' in:" + ], + "start_col": 63, + "start_line": 13 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 23, + "start_line": 66 + }, + "While trying to update the implicit return value 'range_check_ptr' in:" + ], + "start_col": 17, + "start_line": 133 + } + }, + "2046": { + "accessible_scopes": [ + "openzeppelin.token.erc721.enumerable.library", + "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable", + "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable.token_by_index" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 23, + "end_line": 60, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" + }, + "parent_location": [ + { + "end_col": 54, + "end_line": 71, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" + }, + "start_col": 49, + "start_line": 71 + }, + "While expanding the reference 'index' in:" + ], + "start_col": 9, + "start_line": 60 + } + }, + "2047": { + "accessible_scopes": [ + "openzeppelin.token.erc721.enumerable.library", + "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable", + "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable.token_by_index" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 23, + "end_line": 60, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" + }, + "parent_location": [ + { + "end_col": 54, + "end_line": 71, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" + }, + "start_col": 49, + "start_line": 71 + }, + "While expanding the reference 'index' in:" + ], + "start_col": 9, + "start_line": 60 + } + }, + "2048": { + "accessible_scopes": [ + "openzeppelin.token.erc721.enumerable.library", + "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable", + "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable.token_by_index" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 55, + "end_line": 71, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" + }, + "start_col": 16, + "start_line": 71 + } + }, + "2050": { + "accessible_scopes": [ + "openzeppelin.token.erc721.enumerable.library", + "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable", + "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable.token_by_index" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 56, + "end_line": 71, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" + }, + "start_col": 9, + "start_line": 71 + } + }, + "2051": { + "accessible_scopes": [ + "openzeppelin.token.erc721.enumerable.library", + "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable", + "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable.token_of_owner_by_index" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 22, + "end_line": 77, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" + }, + "start_col": 9, + "start_line": 77 + } + }, + "2053": { + "accessible_scopes": [ + "openzeppelin.token.erc721.enumerable.library", + "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable", + "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable.token_of_owner_by_index" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 97, + "end_line": 74, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" + }, + "parent_location": [ + { + "end_col": 35, + "end_line": 21, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/uint256.cairo" + }, + "parent_location": [ + { + "end_col": 29, + "end_line": 78, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" + }, + "start_col": 9, + "start_line": 78 + }, + "While trying to retrieve the implicit argument 'range_check_ptr' in:" + ], + "start_col": 20, + "start_line": 21 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 82, + "start_line": 74 + } + }, + "2054": { + "accessible_scopes": [ + "openzeppelin.token.erc721.enumerable.library", + "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable", + "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable.token_of_owner_by_index" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 36, + "end_line": 75, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" + }, + "parent_location": [ + { + "end_col": 28, + "end_line": 78, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" + }, + "start_col": 23, + "start_line": 78 + }, + "While expanding the reference 'index' in:" + ], + "start_col": 22, + "start_line": 75 + } + }, + "2055": { + "accessible_scopes": [ + "openzeppelin.token.erc721.enumerable.library", + "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable", + "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable.token_of_owner_by_index" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 36, + "end_line": 75, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" + }, + "parent_location": [ + { + "end_col": 28, + "end_line": 78, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" + }, + "start_col": 23, + "start_line": 78 + }, + "While expanding the reference 'index' in:" + ], + "start_col": 22, + "start_line": 75 + } + }, + "2056": { + "accessible_scopes": [ + "openzeppelin.token.erc721.enumerable.library", + "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable", + "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable.token_of_owner_by_index" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 29, + "end_line": 78, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" + }, + "start_col": 9, + "start_line": 78 + } + }, + "2058": { + "accessible_scopes": [ + "openzeppelin.token.erc721.enumerable.library", + "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable", + "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable.token_of_owner_by_index" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 52, + "end_line": 74, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" + }, + "parent_location": [ + { + "end_col": 39, + "end_line": 100, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "parent_location": [ + { + "end_col": 54, + "end_line": 80, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" + }, + "start_col": 30, + "start_line": 80 + }, + "While trying to retrieve the implicit argument 'syscall_ptr' in:" + ], + "start_col": 21, + "start_line": 100 + }, + "While expanding the reference 'syscall_ptr' in:" + ], + "start_col": 34, + "start_line": 74 + } + }, + "2059": { + "accessible_scopes": [ + "openzeppelin.token.erc721.enumerable.library", + "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable", + "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable.token_of_owner_by_index" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 80, + "end_line": 74, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" + }, + "parent_location": [ + { + "end_col": 67, + "end_line": 100, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "parent_location": [ + { + "end_col": 54, + "end_line": 80, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" + }, + "start_col": 30, + "start_line": 80 + }, + "While trying to retrieve the implicit argument 'pedersen_ptr' in:" + ], + "start_col": 41, + "start_line": 100 + }, + "While expanding the reference 'pedersen_ptr' in:" + ], + "start_col": 54, + "start_line": 74 + } + }, + "2060": { + "accessible_scopes": [ + "openzeppelin.token.erc721.enumerable.library", + "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable", + "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable.token_of_owner_by_index" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 35, + "end_line": 21, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/uint256.cairo" + }, + "parent_location": [ + { + "end_col": 29, + "end_line": 78, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" + }, + "parent_location": [ + { + "end_col": 84, + "end_line": 100, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "parent_location": [ + { + "end_col": 54, + "end_line": 80, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" + }, + "start_col": 30, + "start_line": 80 + }, + "While trying to retrieve the implicit argument 'range_check_ptr' in:" + ], + "start_col": 69, + "start_line": 100 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 9, + "start_line": 78 + }, + "While trying to update the implicit return value 'range_check_ptr' in:" + ], + "start_col": 20, + "start_line": 21 + } + }, + "2061": { + "accessible_scopes": [ + "openzeppelin.token.erc721.enumerable.library", + "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable", + "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable.token_of_owner_by_index" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 20, + "end_line": 75, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" + }, + "parent_location": [ + { + "end_col": 53, + "end_line": 80, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" + }, + "start_col": 48, + "start_line": 80 + }, + "While expanding the reference 'owner' in:" + ], + "start_col": 9, + "start_line": 75 + } + }, + "2062": { + "accessible_scopes": [ + "openzeppelin.token.erc721.enumerable.library", + "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable", + "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable.token_of_owner_by_index" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 54, + "end_line": 80, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" + }, + "start_col": 30, + "start_line": 80 + } + }, + "2064": { + "accessible_scopes": [ + "openzeppelin.token.erc721.enumerable.library", + "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable", + "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable.token_of_owner_by_index" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 84, + "end_line": 100, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "parent_location": [ + { + "end_col": 54, + "end_line": 80, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" + }, + "parent_location": [ + { + "end_col": 32, + "end_line": 133, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/uint256.cairo" + }, + "parent_location": [ + { + "end_col": 45, + "end_line": 81, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" + }, + "start_col": 23, + "start_line": 81 + }, + "While trying to retrieve the implicit argument 'range_check_ptr' in:" + ], + "start_col": 17, + "start_line": 133 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 30, + "start_line": 80 + }, + "While trying to update the implicit return value 'range_check_ptr' in:" + ], + "start_col": 69, + "start_line": 100 + } + }, + "2065": { + "accessible_scopes": [ + "openzeppelin.token.erc721.enumerable.library", + "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable", + "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable.token_of_owner_by_index" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 36, + "end_line": 75, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" + }, + "parent_location": [ + { + "end_col": 39, + "end_line": 81, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" + }, + "start_col": 34, + "start_line": 81 + }, + "While expanding the reference 'index' in:" + ], + "start_col": 22, + "start_line": 75 + } + }, + "2066": { + "accessible_scopes": [ + "openzeppelin.token.erc721.enumerable.library", + "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable", + "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable.token_of_owner_by_index" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 36, + "end_line": 75, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" + }, + "parent_location": [ + { + "end_col": 39, + "end_line": 81, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" + }, + "start_col": 34, + "start_line": 81 + }, + "While expanding the reference 'index' in:" + ], + "start_col": 22, + "start_line": 75 + } + }, + "2067": { + "accessible_scopes": [ + "openzeppelin.token.erc721.enumerable.library", + "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable", + "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable.token_of_owner_by_index" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 26, + "end_line": 80, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" + }, + "parent_location": [ + { + "end_col": 44, + "end_line": 81, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" + }, + "start_col": 41, + "start_line": 81 + }, + "While expanding the reference 'len' in:" + ], + "start_col": 14, + "start_line": 80 + } + }, + "2068": { + "accessible_scopes": [ + "openzeppelin.token.erc721.enumerable.library", + "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable", + "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable.token_of_owner_by_index" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 26, + "end_line": 80, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" + }, + "parent_location": [ + { + "end_col": 44, + "end_line": 81, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" + }, + "start_col": 41, + "start_line": 81 + }, + "While expanding the reference 'len' in:" + ], + "start_col": 14, + "start_line": 80 + } + }, + "2069": { + "accessible_scopes": [ + "openzeppelin.token.erc721.enumerable.library", + "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable", + "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable.token_of_owner_by_index" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 45, + "end_line": 81, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" + }, + "start_col": 23, + "start_line": 81 + } + }, + "2071": { + "accessible_scopes": [ + "openzeppelin.token.erc721.enumerable.library", + "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable", + "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable.token_of_owner_by_index" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 33, + "end_line": 83, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" + }, + "start_col": 13, + "start_line": 83 + } + }, + "2073": { + "accessible_scopes": [ + "openzeppelin.token.erc721.enumerable.library", + "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable", + "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable.token_of_owner_by_index" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 39, + "end_line": 100, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "parent_location": [ + { + "end_col": 54, + "end_line": 80, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" + }, + "parent_location": [ + { + "end_col": 33, + "end_line": 15, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721Enumerable_owned_tokens/decl.cairo" + }, + "parent_location": [ + { + "end_col": 64, + "end_line": 86, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" + }, + "start_col": 16, + "start_line": 86 + }, + "While trying to retrieve the implicit argument 'syscall_ptr' in:" + ], + "start_col": 15, + "start_line": 15 + }, + "While expanding the reference 'syscall_ptr' in:" + ], + "start_col": 30, + "start_line": 80 + }, + "While trying to update the implicit return value 'syscall_ptr' in:" + ], + "start_col": 21, + "start_line": 100 + } + }, + "2074": { + "accessible_scopes": [ + "openzeppelin.token.erc721.enumerable.library", + "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable", + "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable.token_of_owner_by_index" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 67, + "end_line": 100, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "parent_location": [ + { + "end_col": 54, + "end_line": 80, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" + }, + "parent_location": [ + { + "end_col": 61, + "end_line": 15, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721Enumerable_owned_tokens/decl.cairo" + }, + "parent_location": [ + { + "end_col": 64, + "end_line": 86, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" + }, + "start_col": 16, + "start_line": 86 + }, + "While trying to retrieve the implicit argument 'pedersen_ptr' in:" + ], + "start_col": 35, + "start_line": 15 + }, + "While expanding the reference 'pedersen_ptr' in:" + ], + "start_col": 30, + "start_line": 80 + }, + "While trying to update the implicit return value 'pedersen_ptr' in:" + ], + "start_col": 41, + "start_line": 100 + } + }, + "2075": { + "accessible_scopes": [ + "openzeppelin.token.erc721.enumerable.library", + "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable", + "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable.token_of_owner_by_index" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 32, + "end_line": 133, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/uint256.cairo" + }, + "parent_location": [ + { + "end_col": 45, + "end_line": 81, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" + }, + "parent_location": [ + { + "end_col": 78, + "end_line": 15, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721Enumerable_owned_tokens/decl.cairo" + }, + "parent_location": [ + { + "end_col": 64, + "end_line": 86, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" + }, + "start_col": 16, + "start_line": 86 + }, + "While trying to retrieve the implicit argument 'range_check_ptr' in:" + ], + "start_col": 63, + "start_line": 15 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 23, + "start_line": 81 + }, + "While trying to update the implicit return value 'range_check_ptr' in:" + ], + "start_col": 17, + "start_line": 133 + } + }, + "2076": { + "accessible_scopes": [ + "openzeppelin.token.erc721.enumerable.library", + "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable", + "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable.token_of_owner_by_index" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 20, + "end_line": 75, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" + }, + "parent_location": [ + { + "end_col": 56, + "end_line": 86, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" + }, + "start_col": 51, + "start_line": 86 + }, + "While expanding the reference 'owner' in:" + ], + "start_col": 9, + "start_line": 75 + } + }, + "2077": { + "accessible_scopes": [ + "openzeppelin.token.erc721.enumerable.library", + "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable", + "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable.token_of_owner_by_index" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 36, + "end_line": 75, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" + }, + "parent_location": [ + { + "end_col": 63, + "end_line": 86, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" + }, + "start_col": 58, + "start_line": 86 + }, + "While expanding the reference 'index' in:" + ], + "start_col": 22, + "start_line": 75 + } + }, + "2078": { + "accessible_scopes": [ + "openzeppelin.token.erc721.enumerable.library", + "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable", + "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable.token_of_owner_by_index" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 36, + "end_line": 75, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" + }, + "parent_location": [ + { + "end_col": 63, + "end_line": 86, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" + }, + "start_col": 58, + "start_line": 86 + }, + "While expanding the reference 'index' in:" + ], + "start_col": 22, + "start_line": 75 + } + }, + "2079": { + "accessible_scopes": [ + "openzeppelin.token.erc721.enumerable.library", + "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable", + "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable.token_of_owner_by_index" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 64, + "end_line": 86, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" + }, + "start_col": 16, + "start_line": 86 + } + }, + "2081": { + "accessible_scopes": [ + "openzeppelin.token.erc721.enumerable.library", + "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable", + "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable.token_of_owner_by_index" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 65, + "end_line": 86, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" + }, + "start_col": 9, + "start_line": 86 + } + }, + "2082": { + "accessible_scopes": [ + "openzeppelin.token.erc721.enumerable.library", + "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable", + "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable.transfer_from" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 50, + "end_line": 92, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" + }, + "parent_location": [ + { + "end_col": 31, + "end_line": 180, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" + }, + "parent_location": [ + { + "end_col": 62, + "end_line": 95, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" + }, + "start_col": 9, + "start_line": 95 + }, + "While trying to retrieve the implicit argument 'pedersen_ptr' in:" + ], + "start_col": 5, + "start_line": 180 + }, + "While expanding the reference 'pedersen_ptr' in:" + ], + "start_col": 24, + "start_line": 92 + } + }, + "2083": { + "accessible_scopes": [ + "openzeppelin.token.erc721.enumerable.library", + "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable", + "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable.transfer_from" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 70, + "end_line": 92, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" + }, + "parent_location": [ + { + "end_col": 51, + "end_line": 180, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" + }, + "parent_location": [ + { + "end_col": 62, + "end_line": 95, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" + }, + "start_col": 9, + "start_line": 95 + }, + "While trying to retrieve the implicit argument 'syscall_ptr' in:" + ], + "start_col": 33, + "start_line": 180 + }, + "While expanding the reference 'syscall_ptr' in:" + ], + "start_col": 52, + "start_line": 92 + } + }, + "2084": { + "accessible_scopes": [ + "openzeppelin.token.erc721.enumerable.library", + "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable", + "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable.transfer_from" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 87, + "end_line": 92, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" + }, + "parent_location": [ + { + "end_col": 68, + "end_line": 180, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" + }, + "parent_location": [ + { + "end_col": 62, + "end_line": 95, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" + }, + "start_col": 9, + "start_line": 95 + }, + "While trying to retrieve the implicit argument 'range_check_ptr' in:" + ], + "start_col": 53, + "start_line": 180 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 72, + "start_line": 92 + } + }, + "2085": { + "accessible_scopes": [ + "openzeppelin.token.erc721.enumerable.library", + "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable", + "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable.transfer_from" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 20, + "end_line": 93, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" + }, + "parent_location": [ + { + "end_col": 51, + "end_line": 95, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" + }, + "start_col": 46, + "start_line": 95 + }, + "While expanding the reference 'from_' in:" + ], + "start_col": 9, + "start_line": 93 + } + }, + "2086": { + "accessible_scopes": [ + "openzeppelin.token.erc721.enumerable.library", + "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable", + "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable.transfer_from" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 49, + "end_line": 93, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" + }, + "parent_location": [ + { + "end_col": 61, + "end_line": 95, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" + }, + "start_col": 53, + "start_line": 95 + }, + "While expanding the reference 'token_id' in:" + ], + "start_col": 32, + "start_line": 93 + } + }, + "2087": { + "accessible_scopes": [ + "openzeppelin.token.erc721.enumerable.library", + "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable", + "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable.transfer_from" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 49, + "end_line": 93, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" + }, + "parent_location": [ + { + "end_col": 61, + "end_line": 95, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" + }, + "start_col": 53, + "start_line": 95 + }, + "While expanding the reference 'token_id' in:" + ], + "start_col": 32, + "start_line": 93 + } + }, + "2088": { + "accessible_scopes": [ + "openzeppelin.token.erc721.enumerable.library", + "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable", + "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable.transfer_from" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 62, + "end_line": 95, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" + }, + "start_col": 9, + "start_line": 95 + } + }, + "2090": { + "accessible_scopes": [ + "openzeppelin.token.erc721.enumerable.library", + "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable", + "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable.transfer_from" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 30, + "end_line": 93, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" + }, + "parent_location": [ + { + "end_col": 43, + "end_line": 96, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" + }, + "start_col": 41, + "start_line": 96 + }, + "While expanding the reference 'to' in:" + ], + "start_col": 22, + "start_line": 93 + } + }, + "2091": { + "accessible_scopes": [ + "openzeppelin.token.erc721.enumerable.library", + "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable", + "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable.transfer_from" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 49, + "end_line": 93, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" + }, + "parent_location": [ + { + "end_col": 53, + "end_line": 96, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" + }, + "start_col": 45, + "start_line": 96 + }, + "While expanding the reference 'token_id' in:" + ], + "start_col": 32, + "start_line": 93 + } + }, + "2092": { + "accessible_scopes": [ + "openzeppelin.token.erc721.enumerable.library", + "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable", + "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable.transfer_from" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 49, + "end_line": 93, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" + }, + "parent_location": [ + { + "end_col": 53, + "end_line": 96, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" + }, + "start_col": 45, + "start_line": 96 + }, + "While expanding the reference 'token_id' in:" + ], + "start_col": 32, + "start_line": 93 + } + }, + "2093": { + "accessible_scopes": [ + "openzeppelin.token.erc721.enumerable.library", + "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable", + "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable.transfer_from" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 54, + "end_line": 96, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" + }, + "start_col": 9, + "start_line": 96 + } + }, + "2095": { + "accessible_scopes": [ + "openzeppelin.token.erc721.enumerable.library", + "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable", + "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable.transfer_from" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 20, + "end_line": 93, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" + }, + "parent_location": [ + { + "end_col": 35, + "end_line": 97, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" + }, + "start_col": 30, + "start_line": 97 + }, + "While expanding the reference 'from_' in:" + ], + "start_col": 9, + "start_line": 93 + } + }, + "2096": { + "accessible_scopes": [ + "openzeppelin.token.erc721.enumerable.library", + "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable", + "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable.transfer_from" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 30, + "end_line": 93, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" + }, + "parent_location": [ + { + "end_col": 39, + "end_line": 97, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" + }, + "start_col": 37, + "start_line": 97 + }, + "While expanding the reference 'to' in:" + ], + "start_col": 22, + "start_line": 93 + } + }, + "2097": { + "accessible_scopes": [ + "openzeppelin.token.erc721.enumerable.library", + "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable", + "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable.transfer_from" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 49, + "end_line": 93, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" + }, + "parent_location": [ + { + "end_col": 49, + "end_line": 97, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" + }, + "start_col": 41, + "start_line": 97 + }, + "While expanding the reference 'token_id' in:" + ], + "start_col": 32, + "start_line": 93 + } + }, + "2098": { + "accessible_scopes": [ + "openzeppelin.token.erc721.enumerable.library", + "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable", + "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable.transfer_from" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 49, + "end_line": 93, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" + }, + "parent_location": [ + { + "end_col": 49, + "end_line": 97, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" + }, + "start_col": 41, + "start_line": 97 + }, + "While expanding the reference 'token_id' in:" + ], + "start_col": 32, + "start_line": 93 + } + }, + "2099": { + "accessible_scopes": [ + "openzeppelin.token.erc721.enumerable.library", + "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable", + "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable.transfer_from" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 50, + "end_line": 97, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" + }, + "start_col": 9, + "start_line": 97 + } + }, + "2101": { + "accessible_scopes": [ + "openzeppelin.token.erc721.enumerable.library", + "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable", + "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable.transfer_from" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 19, + "end_line": 98, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" + }, + "start_col": 9, + "start_line": 98 + } + }, + "2102": { + "accessible_scopes": [ + "openzeppelin.token.erc721.enumerable.library", + "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable", + "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable.safe_transfer_from" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 55, + "end_line": 101, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" + }, + "parent_location": [ + { + "end_col": 31, + "end_line": 180, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" + }, + "parent_location": [ + { + "end_col": 62, + "end_line": 104, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" + }, + "start_col": 9, + "start_line": 104 + }, + "While trying to retrieve the implicit argument 'pedersen_ptr' in:" + ], + "start_col": 5, + "start_line": 180 + }, + "While expanding the reference 'pedersen_ptr' in:" + ], + "start_col": 29, + "start_line": 101 + } + }, + "2103": { + "accessible_scopes": [ + "openzeppelin.token.erc721.enumerable.library", + "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable", + "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable.safe_transfer_from" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 75, + "end_line": 101, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" + }, + "parent_location": [ + { + "end_col": 51, + "end_line": 180, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" + }, + "parent_location": [ + { + "end_col": 62, + "end_line": 104, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" + }, + "start_col": 9, + "start_line": 104 + }, + "While trying to retrieve the implicit argument 'syscall_ptr' in:" + ], + "start_col": 33, + "start_line": 180 + }, + "While expanding the reference 'syscall_ptr' in:" + ], + "start_col": 57, + "start_line": 101 + } + }, + "2104": { + "accessible_scopes": [ + "openzeppelin.token.erc721.enumerable.library", + "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable", + "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable.safe_transfer_from" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 92, + "end_line": 101, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" + }, + "parent_location": [ + { + "end_col": 68, + "end_line": 180, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" + }, + "parent_location": [ + { + "end_col": 62, + "end_line": 104, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" + }, + "start_col": 9, + "start_line": 104 + }, + "While trying to retrieve the implicit argument 'range_check_ptr' in:" + ], + "start_col": 53, + "start_line": 180 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 77, + "start_line": 101 + } + }, + "2105": { + "accessible_scopes": [ + "openzeppelin.token.erc721.enumerable.library", + "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable", + "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable.safe_transfer_from" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 20, + "end_line": 102, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" + }, + "parent_location": [ + { + "end_col": 51, + "end_line": 104, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" + }, + "start_col": 46, + "start_line": 104 + }, + "While expanding the reference 'from_' in:" + ], + "start_col": 9, + "start_line": 102 + } + }, + "2106": { + "accessible_scopes": [ + "openzeppelin.token.erc721.enumerable.library", + "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable", + "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable.safe_transfer_from" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 49, + "end_line": 102, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" + }, + "parent_location": [ + { + "end_col": 61, + "end_line": 104, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" + }, + "start_col": 53, + "start_line": 104 + }, + "While expanding the reference 'token_id' in:" + ], + "start_col": 32, + "start_line": 102 + } + }, + "2107": { + "accessible_scopes": [ + "openzeppelin.token.erc721.enumerable.library", + "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable", + "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable.safe_transfer_from" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 49, + "end_line": 102, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" + }, + "parent_location": [ + { + "end_col": 61, + "end_line": 104, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" + }, + "start_col": 53, + "start_line": 104 + }, + "While expanding the reference 'token_id' in:" + ], + "start_col": 32, + "start_line": 102 + } + }, + "2108": { + "accessible_scopes": [ + "openzeppelin.token.erc721.enumerable.library", + "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable", + "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable.safe_transfer_from" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 62, + "end_line": 104, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" + }, + "start_col": 9, + "start_line": 104 + } + }, + "2110": { + "accessible_scopes": [ + "openzeppelin.token.erc721.enumerable.library", + "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable", + "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable.safe_transfer_from" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 30, + "end_line": 102, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" + }, + "parent_location": [ + { + "end_col": 43, + "end_line": 105, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" + }, + "start_col": 41, + "start_line": 105 + }, + "While expanding the reference 'to' in:" + ], + "start_col": 22, + "start_line": 102 + } + }, + "2111": { + "accessible_scopes": [ + "openzeppelin.token.erc721.enumerable.library", + "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable", + "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable.safe_transfer_from" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 49, + "end_line": 102, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" + }, + "parent_location": [ + { + "end_col": 53, + "end_line": 105, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" + }, + "start_col": 45, + "start_line": 105 + }, + "While expanding the reference 'token_id' in:" + ], + "start_col": 32, + "start_line": 102 + } + }, + "2112": { + "accessible_scopes": [ + "openzeppelin.token.erc721.enumerable.library", + "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable", + "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable.safe_transfer_from" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 49, + "end_line": 102, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" + }, + "parent_location": [ + { + "end_col": 53, + "end_line": 105, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" + }, + "start_col": 45, + "start_line": 105 + }, + "While expanding the reference 'token_id' in:" + ], + "start_col": 32, + "start_line": 102 + } + }, + "2113": { + "accessible_scopes": [ + "openzeppelin.token.erc721.enumerable.library", + "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable", + "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable.safe_transfer_from" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 54, + "end_line": 105, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" + }, + "start_col": 9, + "start_line": 105 + } + }, + "2115": { + "accessible_scopes": [ + "openzeppelin.token.erc721.enumerable.library", + "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable", + "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable.safe_transfer_from" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 20, + "end_line": 102, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" + }, + "parent_location": [ + { + "end_col": 40, + "end_line": 106, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" + }, + "start_col": 35, + "start_line": 106 + }, + "While expanding the reference 'from_' in:" + ], + "start_col": 9, + "start_line": 102 + } + }, + "2116": { + "accessible_scopes": [ + "openzeppelin.token.erc721.enumerable.library", + "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable", + "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable.safe_transfer_from" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 30, + "end_line": 102, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" + }, + "parent_location": [ + { + "end_col": 44, + "end_line": 106, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" + }, + "start_col": 42, + "start_line": 106 + }, + "While expanding the reference 'to' in:" + ], + "start_col": 22, + "start_line": 102 + } + }, + "2117": { + "accessible_scopes": [ + "openzeppelin.token.erc721.enumerable.library", + "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable", + "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable.safe_transfer_from" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 49, + "end_line": 102, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" + }, + "parent_location": [ + { + "end_col": 54, + "end_line": 106, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" + }, + "start_col": 46, + "start_line": 106 + }, + "While expanding the reference 'token_id' in:" + ], + "start_col": 32, + "start_line": 102 + } + }, + "2118": { + "accessible_scopes": [ + "openzeppelin.token.erc721.enumerable.library", + "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable", + "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable.safe_transfer_from" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 49, + "end_line": 102, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" + }, + "parent_location": [ + { + "end_col": 54, + "end_line": 106, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" + }, + "start_col": 46, + "start_line": 106 + }, + "While expanding the reference 'token_id' in:" + ], + "start_col": 32, + "start_line": 102 + } + }, + "2119": { + "accessible_scopes": [ + "openzeppelin.token.erc721.enumerable.library", + "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable", + "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable.safe_transfer_from" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 65, + "end_line": 102, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" + }, + "parent_location": [ + { + "end_col": 64, + "end_line": 106, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" + }, + "start_col": 56, + "start_line": 106 + }, + "While expanding the reference 'data_len' in:" + ], + "start_col": 51, + "start_line": 102 + } + }, + "2120": { + "accessible_scopes": [ + "openzeppelin.token.erc721.enumerable.library", + "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable", + "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable.safe_transfer_from" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 78, + "end_line": 102, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" + }, + "parent_location": [ + { + "end_col": 70, + "end_line": 106, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" + }, + "start_col": 66, + "start_line": 106 + }, + "While expanding the reference 'data' in:" + ], + "start_col": 67, + "start_line": 102 + } + }, + "2121": { + "accessible_scopes": [ + "openzeppelin.token.erc721.enumerable.library", + "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable", + "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable.safe_transfer_from" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 71, + "end_line": 106, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" + }, + "start_col": 9, + "start_line": 106 + } + }, + "2123": { + "accessible_scopes": [ + "openzeppelin.token.erc721.enumerable.library", + "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable", + "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable.safe_transfer_from" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 19, + "end_line": 107, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" + }, + "start_col": 9, + "start_line": 107 + } + }, + "2124": { + "accessible_scopes": [ + "openzeppelin.token.erc721.enumerable.library", + "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable", + "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable._mint" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 42, + "end_line": 114, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" + }, + "parent_location": [ + { + "end_col": 31, + "end_line": 137, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" + }, + "parent_location": [ + { + "end_col": 55, + "end_line": 117, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" + }, + "start_col": 9, + "start_line": 117 + }, + "While trying to retrieve the implicit argument 'pedersen_ptr' in:" + ], + "start_col": 5, + "start_line": 137 + }, + "While expanding the reference 'pedersen_ptr' in:" + ], + "start_col": 16, + "start_line": 114 + } + }, + "2125": { + "accessible_scopes": [ + "openzeppelin.token.erc721.enumerable.library", + "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable", + "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable._mint" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 62, + "end_line": 114, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" + }, + "parent_location": [ + { + "end_col": 51, + "end_line": 137, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" + }, + "parent_location": [ + { + "end_col": 55, + "end_line": 117, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" + }, + "start_col": 9, + "start_line": 117 + }, + "While trying to retrieve the implicit argument 'syscall_ptr' in:" + ], + "start_col": 33, + "start_line": 137 + }, + "While expanding the reference 'syscall_ptr' in:" + ], + "start_col": 44, + "start_line": 114 + } + }, + "2126": { + "accessible_scopes": [ + "openzeppelin.token.erc721.enumerable.library", + "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable", + "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable._mint" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 79, + "end_line": 114, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" + }, + "parent_location": [ + { + "end_col": 68, + "end_line": 137, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" + }, + "parent_location": [ + { + "end_col": 55, + "end_line": 117, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" + }, + "start_col": 9, + "start_line": 117 + }, + "While trying to retrieve the implicit argument 'range_check_ptr' in:" + ], + "start_col": 53, + "start_line": 137 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 64, + "start_line": 114 + } + }, + "2127": { + "accessible_scopes": [ + "openzeppelin.token.erc721.enumerable.library", + "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable", + "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable._mint" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 36, + "end_line": 115, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" + }, + "parent_location": [ + { + "end_col": 54, + "end_line": 117, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" + }, + "start_col": 46, + "start_line": 117 + }, + "While expanding the reference 'token_id' in:" + ], + "start_col": 19, + "start_line": 115 + } + }, + "2128": { + "accessible_scopes": [ + "openzeppelin.token.erc721.enumerable.library", + "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable", + "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable._mint" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 36, + "end_line": 115, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" + }, + "parent_location": [ + { + "end_col": 54, + "end_line": 117, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" + }, + "start_col": 46, + "start_line": 117 + }, + "While expanding the reference 'token_id' in:" + ], + "start_col": 19, + "start_line": 115 + } + }, + "2129": { + "accessible_scopes": [ + "openzeppelin.token.erc721.enumerable.library", + "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable", + "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable._mint" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 55, + "end_line": 117, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" + }, + "start_col": 9, + "start_line": 117 + } + }, + "2131": { + "accessible_scopes": [ + "openzeppelin.token.erc721.enumerable.library", + "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable", + "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable._mint" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 17, + "end_line": 115, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" + }, + "parent_location": [ + { + "end_col": 43, + "end_line": 118, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" + }, + "start_col": 41, + "start_line": 118 + }, + "While expanding the reference 'to' in:" + ], + "start_col": 9, + "start_line": 115 + } + }, + "2132": { + "accessible_scopes": [ + "openzeppelin.token.erc721.enumerable.library", + "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable", + "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable._mint" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 36, + "end_line": 115, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" + }, + "parent_location": [ + { + "end_col": 53, + "end_line": 118, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" + }, + "start_col": 45, + "start_line": 118 + }, + "While expanding the reference 'token_id' in:" + ], + "start_col": 19, + "start_line": 115 + } + }, + "2133": { + "accessible_scopes": [ + "openzeppelin.token.erc721.enumerable.library", + "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable", + "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable._mint" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 36, + "end_line": 115, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" + }, + "parent_location": [ + { + "end_col": 53, + "end_line": 118, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" + }, + "start_col": 45, + "start_line": 118 + }, + "While expanding the reference 'token_id' in:" + ], + "start_col": 19, + "start_line": 115 + } + }, + "2134": { + "accessible_scopes": [ + "openzeppelin.token.erc721.enumerable.library", + "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable", + "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable._mint" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 54, + "end_line": 118, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" + }, + "start_col": 9, + "start_line": 118 + } + }, + "2136": { + "accessible_scopes": [ + "openzeppelin.token.erc721.enumerable.library", + "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable", + "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable._mint" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 17, + "end_line": 115, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" + }, + "parent_location": [ + { + "end_col": 24, + "end_line": 119, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" + }, + "start_col": 22, + "start_line": 119 + }, + "While expanding the reference 'to' in:" + ], + "start_col": 9, + "start_line": 115 + } + }, + "2137": { + "accessible_scopes": [ + "openzeppelin.token.erc721.enumerable.library", + "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable", + "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable._mint" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 36, + "end_line": 115, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" + }, + "parent_location": [ + { + "end_col": 34, + "end_line": 119, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" + }, + "start_col": 26, + "start_line": 119 + }, + "While expanding the reference 'token_id' in:" + ], + "start_col": 19, + "start_line": 115 + } + }, + "2138": { + "accessible_scopes": [ + "openzeppelin.token.erc721.enumerable.library", + "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable", + "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable._mint" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 36, + "end_line": 115, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" + }, + "parent_location": [ + { + "end_col": 34, + "end_line": 119, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" + }, + "start_col": 26, + "start_line": 119 + }, + "While expanding the reference 'token_id' in:" + ], + "start_col": 19, + "start_line": 115 + } + }, + "2139": { + "accessible_scopes": [ + "openzeppelin.token.erc721.enumerable.library", + "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable", + "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable._mint" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 35, + "end_line": 119, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" + }, + "start_col": 9, + "start_line": 119 + } + }, + "2141": { + "accessible_scopes": [ + "openzeppelin.token.erc721.enumerable.library", + "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable", + "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable._mint" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 19, + "end_line": 120, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" + }, + "start_col": 9, + "start_line": 120 + } + }, + "2142": { + "accessible_scopes": [ + "openzeppelin.token.erc721.enumerable.library", + "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable", + "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable._burn" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 62, + "end_line": 123, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" + }, + "parent_location": [ + { + "end_col": 37, + "end_line": 109, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "parent_location": [ + { + "end_col": 48, + "end_line": 124, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" + }, + "start_col": 23, + "start_line": 124 + }, + "While trying to retrieve the implicit argument 'syscall_ptr' in:" + ], + "start_col": 19, + "start_line": 109 + }, + "While expanding the reference 'syscall_ptr' in:" + ], + "start_col": 44, + "start_line": 123 + } + }, + "2143": { + "accessible_scopes": [ + "openzeppelin.token.erc721.enumerable.library", + "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable", + "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable._burn" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 42, + "end_line": 123, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" + }, + "parent_location": [ + { + "end_col": 65, + "end_line": 109, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "parent_location": [ + { + "end_col": 48, + "end_line": 124, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" + }, + "start_col": 23, + "start_line": 124 + }, + "While trying to retrieve the implicit argument 'pedersen_ptr' in:" + ], + "start_col": 39, + "start_line": 109 + }, + "While expanding the reference 'pedersen_ptr' in:" + ], + "start_col": 16, + "start_line": 123 + } + }, + "2144": { + "accessible_scopes": [ + "openzeppelin.token.erc721.enumerable.library", + "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable", + "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable._burn" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 79, + "end_line": 123, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" + }, + "parent_location": [ + { + "end_col": 82, + "end_line": 109, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "parent_location": [ + { + "end_col": 48, + "end_line": 124, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" + }, + "start_col": 23, + "start_line": 124 + }, + "While trying to retrieve the implicit argument 'range_check_ptr' in:" + ], + "start_col": 67, + "start_line": 109 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 64, + "start_line": 123 + } + }, + "2145": { + "accessible_scopes": [ + "openzeppelin.token.erc721.enumerable.library", + "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable", + "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable._burn" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 98, + "end_line": 123, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" + }, + "parent_location": [ + { + "end_col": 47, + "end_line": 124, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" + }, + "start_col": 39, + "start_line": 124 + }, + "While expanding the reference 'token_id' in:" + ], + "start_col": 81, + "start_line": 123 + } + }, + "2146": { + "accessible_scopes": [ + "openzeppelin.token.erc721.enumerable.library", + "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable", + "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable._burn" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 98, + "end_line": 123, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" + }, + "parent_location": [ + { + "end_col": 47, + "end_line": 124, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" + }, + "start_col": 39, + "start_line": 124 + }, + "While expanding the reference 'token_id' in:" + ], + "start_col": 81, + "start_line": 123 + } + }, + "2147": { + "accessible_scopes": [ + "openzeppelin.token.erc721.enumerable.library", + "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable", + "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable._burn" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 48, + "end_line": 124, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" + }, + "start_col": 23, + "start_line": 124 + } + }, + "2149": { + "accessible_scopes": [ + "openzeppelin.token.erc721.enumerable.library", + "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable", + "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable._burn" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 65, + "end_line": 109, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "parent_location": [ + { + "end_col": 48, + "end_line": 124, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" + }, + "parent_location": [ + { + "end_col": 31, + "end_line": 180, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" + }, + "parent_location": [ + { + "end_col": 62, + "end_line": 125, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" + }, + "start_col": 9, + "start_line": 125 + }, + "While trying to retrieve the implicit argument 'pedersen_ptr' in:" + ], + "start_col": 5, + "start_line": 180 + }, + "While expanding the reference 'pedersen_ptr' in:" + ], + "start_col": 23, + "start_line": 124 + }, + "While trying to update the implicit return value 'pedersen_ptr' in:" + ], + "start_col": 39, + "start_line": 109 + } + }, + "2150": { + "accessible_scopes": [ + "openzeppelin.token.erc721.enumerable.library", + "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable", + "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable._burn" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 37, + "end_line": 109, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "parent_location": [ + { + "end_col": 48, + "end_line": 124, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" + }, + "parent_location": [ + { + "end_col": 51, + "end_line": 180, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" + }, + "parent_location": [ + { + "end_col": 62, + "end_line": 125, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" + }, + "start_col": 9, + "start_line": 125 + }, + "While trying to retrieve the implicit argument 'syscall_ptr' in:" + ], + "start_col": 33, + "start_line": 180 + }, + "While expanding the reference 'syscall_ptr' in:" + ], + "start_col": 23, + "start_line": 124 + }, + "While trying to update the implicit return value 'syscall_ptr' in:" + ], + "start_col": 19, + "start_line": 109 + } + }, + "2151": { + "accessible_scopes": [ + "openzeppelin.token.erc721.enumerable.library", + "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable", + "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable._burn" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 82, + "end_line": 109, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "parent_location": [ + { + "end_col": 48, + "end_line": 124, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" + }, + "parent_location": [ + { + "end_col": 68, + "end_line": 180, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" + }, + "parent_location": [ + { + "end_col": 62, + "end_line": 125, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" + }, + "start_col": 9, + "start_line": 125 + }, + "While trying to retrieve the implicit argument 'range_check_ptr' in:" + ], + "start_col": 53, + "start_line": 180 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 23, + "start_line": 124 + }, + "While trying to update the implicit return value 'range_check_ptr' in:" + ], + "start_col": 67, + "start_line": 109 + } + }, + "2152": { + "accessible_scopes": [ + "openzeppelin.token.erc721.enumerable.library", + "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable", + "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable._burn" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 19, + "end_line": 124, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" + }, + "parent_location": [ + { + "end_col": 51, + "end_line": 125, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" + }, + "start_col": 46, + "start_line": 125 + }, + "While expanding the reference 'from_' in:" + ], + "start_col": 14, + "start_line": 124 + } + }, + "2153": { + "accessible_scopes": [ + "openzeppelin.token.erc721.enumerable.library", + "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable", + "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable._burn" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 98, + "end_line": 123, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" + }, + "parent_location": [ + { + "end_col": 61, + "end_line": 125, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" + }, + "start_col": 53, + "start_line": 125 + }, + "While expanding the reference 'token_id' in:" + ], + "start_col": 81, + "start_line": 123 + } + }, + "2154": { + "accessible_scopes": [ + "openzeppelin.token.erc721.enumerable.library", + "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable", + "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable._burn" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 98, + "end_line": 123, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" + }, + "parent_location": [ + { + "end_col": 61, + "end_line": 125, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" + }, + "start_col": 53, + "start_line": 125 + }, + "While expanding the reference 'token_id' in:" + ], + "start_col": 81, + "start_line": 123 + } + }, + "2155": { + "accessible_scopes": [ + "openzeppelin.token.erc721.enumerable.library", + "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable", + "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable._burn" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 62, + "end_line": 125, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" + }, + "start_col": 9, + "start_line": 125 + } + }, + "2157": { + "accessible_scopes": [ + "openzeppelin.token.erc721.enumerable.library", + "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable", + "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable._burn" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 98, + "end_line": 123, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" + }, + "parent_location": [ + { + "end_col": 59, + "end_line": 126, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" + }, + "start_col": 51, + "start_line": 126 + }, + "While expanding the reference 'token_id' in:" + ], + "start_col": 81, + "start_line": 123 + } + }, + "2158": { + "accessible_scopes": [ + "openzeppelin.token.erc721.enumerable.library", + "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable", + "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable._burn" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 98, + "end_line": 123, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" + }, + "parent_location": [ + { + "end_col": 59, + "end_line": 126, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" + }, + "start_col": 51, + "start_line": 126 + }, + "While expanding the reference 'token_id' in:" + ], + "start_col": 81, + "start_line": 123 + } + }, + "2159": { + "accessible_scopes": [ + "openzeppelin.token.erc721.enumerable.library", + "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable", + "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable._burn" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 60, + "end_line": 126, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" + }, + "start_col": 9, + "start_line": 126 + } + }, + "2161": { + "accessible_scopes": [ + "openzeppelin.token.erc721.enumerable.library", + "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable", + "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable._burn" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 98, + "end_line": 123, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" + }, + "parent_location": [ + { + "end_col": 30, + "end_line": 127, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" + }, + "start_col": 22, + "start_line": 127 + }, + "While expanding the reference 'token_id' in:" + ], + "start_col": 81, + "start_line": 123 + } + }, + "2162": { + "accessible_scopes": [ + "openzeppelin.token.erc721.enumerable.library", + "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable", + "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable._burn" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 98, + "end_line": 123, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" + }, + "parent_location": [ + { + "end_col": 30, + "end_line": 127, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" + }, + "start_col": 22, + "start_line": 127 + }, + "While expanding the reference 'token_id' in:" + ], + "start_col": 81, + "start_line": 123 + } + }, + "2163": { + "accessible_scopes": [ + "openzeppelin.token.erc721.enumerable.library", + "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable", + "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable._burn" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 31, + "end_line": 127, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" + }, + "start_col": 9, + "start_line": 127 + } + }, + "2165": { + "accessible_scopes": [ + "openzeppelin.token.erc721.enumerable.library", + "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable", + "openzeppelin.token.erc721.enumerable.library.ERC721Enumerable._burn" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 19, + "end_line": 128, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" + }, + "start_col": 9, + "start_line": 128 + } + }, + "2166": { + "accessible_scopes": [ + "openzeppelin.token.erc721.enumerable.library", + "openzeppelin.token.erc721.enumerable.library._add_token_to_all_tokens_enumeration" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 51, + "end_line": 137, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" + }, + "parent_location": [ + { + "end_col": 33, + "end_line": 13, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721Enumerable_all_tokens_len/decl.cairo" + }, + "parent_location": [ + { + "end_col": 67, + "end_line": 139, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" + }, + "start_col": 29, + "start_line": 139 + }, + "While trying to retrieve the implicit argument 'syscall_ptr' in:" + ], + "start_col": 15, + "start_line": 13 + }, + "While expanding the reference 'syscall_ptr' in:" + ], + "start_col": 33, + "start_line": 137 + } + }, + "2167": { + "accessible_scopes": [ + "openzeppelin.token.erc721.enumerable.library", + "openzeppelin.token.erc721.enumerable.library._add_token_to_all_tokens_enumeration" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 31, + "end_line": 137, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" + }, + "parent_location": [ + { + "end_col": 61, + "end_line": 13, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721Enumerable_all_tokens_len/decl.cairo" + }, + "parent_location": [ + { + "end_col": 67, + "end_line": 139, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" + }, + "start_col": 29, + "start_line": 139 + }, + "While trying to retrieve the implicit argument 'pedersen_ptr' in:" + ], + "start_col": 35, + "start_line": 13 + }, + "While expanding the reference 'pedersen_ptr' in:" + ], + "start_col": 5, + "start_line": 137 + } + }, + "2168": { + "accessible_scopes": [ + "openzeppelin.token.erc721.enumerable.library", + "openzeppelin.token.erc721.enumerable.library._add_token_to_all_tokens_enumeration" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 68, + "end_line": 137, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" + }, + "parent_location": [ + { + "end_col": 78, + "end_line": 13, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721Enumerable_all_tokens_len/decl.cairo" + }, + "parent_location": [ + { + "end_col": 67, + "end_line": 139, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" + }, + "start_col": 29, + "start_line": 139 + }, + "While trying to retrieve the implicit argument 'range_check_ptr' in:" + ], + "start_col": 63, + "start_line": 13 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 53, + "start_line": 137 + } + }, + "2169": { + "accessible_scopes": [ + "openzeppelin.token.erc721.enumerable.library", + "openzeppelin.token.erc721.enumerable.library._add_token_to_all_tokens_enumeration" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 67, + "end_line": 139, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" + }, + "start_col": 29, + "start_line": 139 + } + }, + "2171": { + "accessible_scopes": [ + "openzeppelin.token.erc721.enumerable.library", + "openzeppelin.token.erc721.enumerable.library._add_token_to_all_tokens_enumeration" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 20, + "end_line": 138, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" + }, + "parent_location": [ + { + "end_col": 55, + "end_line": 140, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" + }, + "start_col": 47, + "start_line": 140 + }, + "While expanding the reference 'token_id' in:" + ], + "start_col": 3, + "start_line": 138 + } + }, + "2172": { + "accessible_scopes": [ + "openzeppelin.token.erc721.enumerable.library", + "openzeppelin.token.erc721.enumerable.library._add_token_to_all_tokens_enumeration" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 20, + "end_line": 138, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" + }, + "parent_location": [ + { + "end_col": 55, + "end_line": 140, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" + }, + "start_col": 47, + "start_line": 140 + }, + "While expanding the reference 'token_id' in:" + ], + "start_col": 3, + "start_line": 138 + } + }, + "2173": { + "accessible_scopes": [ + "openzeppelin.token.erc721.enumerable.library", + "openzeppelin.token.erc721.enumerable.library._add_token_to_all_tokens_enumeration" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 56, + "end_line": 140, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" + }, + "start_col": 5, + "start_line": 140 + } + }, + "2175": { + "accessible_scopes": [ + "openzeppelin.token.erc721.enumerable.library", + "openzeppelin.token.erc721.enumerable.library._add_token_to_all_tokens_enumeration" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 20, + "end_line": 138, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" + }, + "parent_location": [ + { + "end_col": 53, + "end_line": 141, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" + }, + "start_col": 45, + "start_line": 141 + }, + "While expanding the reference 'token_id' in:" + ], + "start_col": 3, + "start_line": 138 + } + }, + "2176": { + "accessible_scopes": [ + "openzeppelin.token.erc721.enumerable.library", + "openzeppelin.token.erc721.enumerable.library._add_token_to_all_tokens_enumeration" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 20, + "end_line": 138, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" + }, + "parent_location": [ + { + "end_col": 53, + "end_line": 141, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" + }, + "start_col": 45, + "start_line": 141 + }, + "While expanding the reference 'token_id' in:" + ], + "start_col": 3, + "start_line": 138 + } + }, + "2177": { + "accessible_scopes": [ + "openzeppelin.token.erc721.enumerable.library", + "openzeppelin.token.erc721.enumerable.library._add_token_to_all_tokens_enumeration" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 25, + "end_line": 139, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" + }, + "parent_location": [ + { + "end_col": 61, + "end_line": 141, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" + }, + "start_col": 55, + "start_line": 141 + }, + "While expanding the reference 'supply' in:" + ], + "start_col": 10, + "start_line": 139 + } + }, + "2178": { + "accessible_scopes": [ + "openzeppelin.token.erc721.enumerable.library", + "openzeppelin.token.erc721.enumerable.library._add_token_to_all_tokens_enumeration" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 25, + "end_line": 139, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" + }, + "parent_location": [ + { + "end_col": 61, + "end_line": 141, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" + }, + "start_col": 55, + "start_line": 141 + }, + "While expanding the reference 'supply' in:" + ], + "start_col": 10, + "start_line": 139 + } + }, + "2179": { + "accessible_scopes": [ + "openzeppelin.token.erc721.enumerable.library", + "openzeppelin.token.erc721.enumerable.library._add_token_to_all_tokens_enumeration" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 62, + "end_line": 141, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" + }, + "start_col": 5, + "start_line": 141 + } + }, + "2181": { + "accessible_scopes": [ + "openzeppelin.token.erc721.enumerable.library", + "openzeppelin.token.erc721.enumerable.library._add_token_to_all_tokens_enumeration" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 25, + "end_line": 139, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" + }, + "parent_location": [ + { + "end_col": 55, + "end_line": 143, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" + }, + "start_col": 49, + "start_line": 143 + }, + "While expanding the reference 'supply' in:" + ], + "start_col": 10, + "start_line": 139 + } + }, + "2182": { + "accessible_scopes": [ + "openzeppelin.token.erc721.enumerable.library", + "openzeppelin.token.erc721.enumerable.library._add_token_to_all_tokens_enumeration" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 25, + "end_line": 139, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" + }, + "parent_location": [ + { + "end_col": 55, + "end_line": 143, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" + }, + "start_col": 49, + "start_line": 143 + }, + "While expanding the reference 'supply' in:" + ], + "start_col": 10, + "start_line": 139 + } + }, + "2183": { + "accessible_scopes": [ + "openzeppelin.token.erc721.enumerable.library", + "openzeppelin.token.erc721.enumerable.library._add_token_to_all_tokens_enumeration" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 66, + "end_line": 143, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" + }, + "start_col": 65, + "start_line": 143 + } + }, + "2185": { + "accessible_scopes": [ + "openzeppelin.token.erc721.enumerable.library", + "openzeppelin.token.erc721.enumerable.library._add_token_to_all_tokens_enumeration" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 69, + "end_line": 143, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" + }, + "start_col": 68, + "start_line": 143 + } + }, + "2187": { + "accessible_scopes": [ + "openzeppelin.token.erc721.enumerable.library", + "openzeppelin.token.erc721.enumerable.library._add_token_to_all_tokens_enumeration" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 71, + "end_line": 143, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" + }, + "start_col": 33, + "start_line": 143 + } + }, + "2189": { + "accessible_scopes": [ + "openzeppelin.token.erc721.enumerable.library", + "openzeppelin.token.erc721.enumerable.library._add_token_to_all_tokens_enumeration" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 34, + "end_line": 21, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721Enumerable_all_tokens_index/decl.cairo" + }, + "parent_location": [ + { + "end_col": 62, + "end_line": 141, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" + }, + "parent_location": [ + { + "end_col": 34, + "end_line": 21, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721Enumerable_all_tokens_len/decl.cairo" + }, + "parent_location": [ + { + "end_col": 54, + "end_line": 144, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" + }, + "start_col": 5, + "start_line": 144 + }, + "While trying to retrieve the implicit argument 'syscall_ptr' in:" + ], + "start_col": 16, + "start_line": 21 + }, + "While expanding the reference 'syscall_ptr' in:" + ], + "start_col": 5, + "start_line": 141 + }, + "While trying to update the implicit return value 'syscall_ptr' in:" + ], + "start_col": 16, + "start_line": 21 + } + }, + "2190": { + "accessible_scopes": [ + "openzeppelin.token.erc721.enumerable.library", + "openzeppelin.token.erc721.enumerable.library._add_token_to_all_tokens_enumeration" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 62, + "end_line": 21, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721Enumerable_all_tokens_index/decl.cairo" + }, + "parent_location": [ + { + "end_col": 62, + "end_line": 141, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" + }, + "parent_location": [ + { + "end_col": 62, + "end_line": 21, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721Enumerable_all_tokens_len/decl.cairo" + }, + "parent_location": [ + { + "end_col": 54, + "end_line": 144, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" + }, + "start_col": 5, + "start_line": 144 + }, + "While trying to retrieve the implicit argument 'pedersen_ptr' in:" + ], + "start_col": 36, + "start_line": 21 + }, + "While expanding the reference 'pedersen_ptr' in:" + ], + "start_col": 5, + "start_line": 141 + }, + "While trying to update the implicit return value 'pedersen_ptr' in:" + ], + "start_col": 36, + "start_line": 21 + } + }, + "2191": { + "accessible_scopes": [ + "openzeppelin.token.erc721.enumerable.library", + "openzeppelin.token.erc721.enumerable.library._add_token_to_all_tokens_enumeration" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 29, + "end_line": 23, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/security/safemath/library.cairo" + }, + "parent_location": [ + { + "end_col": 71, + "end_line": 143, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" + }, + "parent_location": [ + { + "end_col": 79, + "end_line": 21, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721Enumerable_all_tokens_len/decl.cairo" + }, + "parent_location": [ + { + "end_col": 54, + "end_line": 144, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" + }, + "start_col": 5, + "start_line": 144 + }, + "While trying to retrieve the implicit argument 'range_check_ptr' in:" + ], + "start_col": 64, + "start_line": 21 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 33, + "start_line": 143 + }, + "While trying to update the implicit return value 'range_check_ptr' in:" + ], + "start_col": 14, + "start_line": 23 + } + }, + "2192": { + "accessible_scopes": [ + "openzeppelin.token.erc721.enumerable.library", + "openzeppelin.token.erc721.enumerable.library._add_token_to_all_tokens_enumeration" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 29, + "end_line": 143, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" + }, + "parent_location": [ + { + "end_col": 53, + "end_line": 144, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" + }, + "start_col": 43, + "start_line": 144 + }, + "While expanding the reference 'new_supply' in:" + ], + "start_col": 10, + "start_line": 143 + } + }, + "2193": { + "accessible_scopes": [ + "openzeppelin.token.erc721.enumerable.library", + "openzeppelin.token.erc721.enumerable.library._add_token_to_all_tokens_enumeration" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 29, + "end_line": 143, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" + }, + "parent_location": [ + { + "end_col": 53, + "end_line": 144, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" + }, + "start_col": 43, + "start_line": 144 + }, + "While expanding the reference 'new_supply' in:" + ], + "start_col": 10, + "start_line": 143 + } + }, + "2194": { + "accessible_scopes": [ + "openzeppelin.token.erc721.enumerable.library", + "openzeppelin.token.erc721.enumerable.library._add_token_to_all_tokens_enumeration" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 54, + "end_line": 144, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" + }, + "start_col": 5, + "start_line": 144 + } + }, + "2196": { + "accessible_scopes": [ + "openzeppelin.token.erc721.enumerable.library", + "openzeppelin.token.erc721.enumerable.library._add_token_to_all_tokens_enumeration" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 62, + "end_line": 21, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721Enumerable_all_tokens_len/decl.cairo" + }, + "parent_location": [ + { + "end_col": 54, + "end_line": 144, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" + }, + "parent_location": [ + { + "end_col": 31, + "end_line": 137, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" + }, + "parent_location": [ + { + "end_col": 15, + "end_line": 145, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" + }, + "start_col": 5, + "start_line": 145 + }, + "While trying to retrieve the implicit argument 'pedersen_ptr' in:" + ], + "start_col": 5, + "start_line": 137 + }, + "While expanding the reference 'pedersen_ptr' in:" + ], + "start_col": 5, + "start_line": 144 + }, + "While trying to update the implicit return value 'pedersen_ptr' in:" + ], + "start_col": 36, + "start_line": 21 + } + }, + "2197": { + "accessible_scopes": [ + "openzeppelin.token.erc721.enumerable.library", + "openzeppelin.token.erc721.enumerable.library._add_token_to_all_tokens_enumeration" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 34, + "end_line": 21, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721Enumerable_all_tokens_len/decl.cairo" + }, + "parent_location": [ + { + "end_col": 54, + "end_line": 144, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" + }, + "parent_location": [ + { + "end_col": 51, + "end_line": 137, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" + }, + "parent_location": [ + { + "end_col": 15, + "end_line": 145, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" + }, + "start_col": 5, + "start_line": 145 + }, + "While trying to retrieve the implicit argument 'syscall_ptr' in:" + ], + "start_col": 33, + "start_line": 137 + }, + "While expanding the reference 'syscall_ptr' in:" + ], + "start_col": 5, + "start_line": 144 + }, + "While trying to update the implicit return value 'syscall_ptr' in:" + ], + "start_col": 16, + "start_line": 21 + } + }, + "2198": { + "accessible_scopes": [ + "openzeppelin.token.erc721.enumerable.library", + "openzeppelin.token.erc721.enumerable.library._add_token_to_all_tokens_enumeration" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 79, + "end_line": 21, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721Enumerable_all_tokens_len/decl.cairo" + }, + "parent_location": [ + { + "end_col": 54, + "end_line": 144, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" + }, + "parent_location": [ + { + "end_col": 68, + "end_line": 137, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" + }, + "parent_location": [ + { + "end_col": 15, + "end_line": 145, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" + }, + "start_col": 5, + "start_line": 145 + }, + "While trying to retrieve the implicit argument 'range_check_ptr' in:" + ], + "start_col": 53, + "start_line": 137 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 5, + "start_line": 144 + }, + "While trying to update the implicit return value 'range_check_ptr' in:" + ], + "start_col": 64, + "start_line": 21 + } + }, + "2199": { + "accessible_scopes": [ + "openzeppelin.token.erc721.enumerable.library", + "openzeppelin.token.erc721.enumerable.library._add_token_to_all_tokens_enumeration" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 15, + "end_line": 145, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" + }, + "start_col": 5, + "start_line": 145 + } + }, + "2200": { + "accessible_scopes": [ + "openzeppelin.token.erc721.enumerable.library", + "openzeppelin.token.erc721.enumerable.library._remove_token_from_all_tokens_enumeration" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 18, + "end_line": 151, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" + }, + "start_col": 5, + "start_line": 151 + } + }, + "2202": { + "accessible_scopes": [ + "openzeppelin.token.erc721.enumerable.library", + "openzeppelin.token.erc721.enumerable.library._remove_token_from_all_tokens_enumeration" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 51, + "end_line": 149, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" + }, + "parent_location": [ + { + "end_col": 33, + "end_line": 13, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721Enumerable_all_tokens_len/decl.cairo" + }, + "parent_location": [ + { + "end_col": 67, + "end_line": 152, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" + }, + "start_col": 29, + "start_line": 152 + }, + "While trying to retrieve the implicit argument 'syscall_ptr' in:" + ], + "start_col": 15, + "start_line": 13 + }, + "While expanding the reference 'syscall_ptr' in:" + ], + "start_col": 33, + "start_line": 149 + } + }, + "2203": { + "accessible_scopes": [ + "openzeppelin.token.erc721.enumerable.library", + "openzeppelin.token.erc721.enumerable.library._remove_token_from_all_tokens_enumeration" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 31, + "end_line": 149, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" + }, + "parent_location": [ + { + "end_col": 61, + "end_line": 13, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721Enumerable_all_tokens_len/decl.cairo" + }, + "parent_location": [ + { + "end_col": 67, + "end_line": 152, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" + }, + "start_col": 29, + "start_line": 152 + }, + "While trying to retrieve the implicit argument 'pedersen_ptr' in:" + ], + "start_col": 35, + "start_line": 13 + }, + "While expanding the reference 'pedersen_ptr' in:" + ], + "start_col": 5, + "start_line": 149 + } + }, + "2204": { + "accessible_scopes": [ + "openzeppelin.token.erc721.enumerable.library", + "openzeppelin.token.erc721.enumerable.library._remove_token_from_all_tokens_enumeration" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 68, + "end_line": 149, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" + }, + "parent_location": [ + { + "end_col": 78, + "end_line": 13, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721Enumerable_all_tokens_len/decl.cairo" + }, + "parent_location": [ + { + "end_col": 67, + "end_line": 152, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" + }, + "start_col": 29, + "start_line": 152 + }, + "While trying to retrieve the implicit argument 'range_check_ptr' in:" + ], + "start_col": 63, + "start_line": 13 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 53, + "start_line": 149 + } + }, + "2205": { + "accessible_scopes": [ + "openzeppelin.token.erc721.enumerable.library", + "openzeppelin.token.erc721.enumerable.library._remove_token_from_all_tokens_enumeration" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 67, + "end_line": 152, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" + }, + "start_col": 29, + "start_line": 152 + } + }, + "2207": { + "accessible_scopes": [ + "openzeppelin.token.erc721.enumerable.library", + "openzeppelin.token.erc721.enumerable.library._remove_token_from_all_tokens_enumeration" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 75, + "end_line": 153, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" + }, + "start_col": 74, + "start_line": 153 + } + }, + "2209": { + "accessible_scopes": [ + "openzeppelin.token.erc721.enumerable.library", + "openzeppelin.token.erc721.enumerable.library._remove_token_from_all_tokens_enumeration" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 78, + "end_line": 153, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" + }, + "start_col": 77, + "start_line": 153 + } + }, + "2211": { + "accessible_scopes": [ + "openzeppelin.token.erc721.enumerable.library", + "openzeppelin.token.erc721.enumerable.library._remove_token_from_all_tokens_enumeration" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 80, + "end_line": 153, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" + }, + "start_col": 39, + "start_line": 153 + } + }, + "2213": { + "accessible_scopes": [ + "openzeppelin.token.erc721.enumerable.library", + "openzeppelin.token.erc721.enumerable.library._remove_token_from_all_tokens_enumeration" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 33, + "end_line": 13, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721Enumerable_all_tokens_len/decl.cairo" + }, + "parent_location": [ + { + "end_col": 67, + "end_line": 152, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" + }, + "parent_location": [ + { + "end_col": 33, + "end_line": 13, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721Enumerable_all_tokens_index/decl.cairo" + }, + "parent_location": [ + { + "end_col": 82, + "end_line": 154, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" + }, + "start_col": 34, + "start_line": 154 + }, + "While trying to retrieve the implicit argument 'syscall_ptr' in:" + ], + "start_col": 15, + "start_line": 13 + }, + "While expanding the reference 'syscall_ptr' in:" + ], + "start_col": 29, + "start_line": 152 + }, + "While trying to update the implicit return value 'syscall_ptr' in:" + ], + "start_col": 15, + "start_line": 13 + } + }, + "2214": { + "accessible_scopes": [ + "openzeppelin.token.erc721.enumerable.library", + "openzeppelin.token.erc721.enumerable.library._remove_token_from_all_tokens_enumeration" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 61, + "end_line": 13, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721Enumerable_all_tokens_len/decl.cairo" + }, + "parent_location": [ + { + "end_col": 67, + "end_line": 152, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" + }, + "parent_location": [ + { + "end_col": 61, + "end_line": 13, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721Enumerable_all_tokens_index/decl.cairo" + }, + "parent_location": [ + { + "end_col": 82, + "end_line": 154, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" + }, + "start_col": 34, + "start_line": 154 + }, + "While trying to retrieve the implicit argument 'pedersen_ptr' in:" + ], + "start_col": 35, + "start_line": 13 + }, + "While expanding the reference 'pedersen_ptr' in:" + ], + "start_col": 29, + "start_line": 152 + }, + "While trying to update the implicit return value 'pedersen_ptr' in:" + ], + "start_col": 35, + "start_line": 13 + } + }, + "2215": { + "accessible_scopes": [ + "openzeppelin.token.erc721.enumerable.library", + "openzeppelin.token.erc721.enumerable.library._remove_token_from_all_tokens_enumeration" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 32, + "end_line": 35, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/security/safemath/library.cairo" + }, + "parent_location": [ + { + "end_col": 80, + "end_line": 153, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" + }, + "parent_location": [ + { + "end_col": 78, + "end_line": 13, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721Enumerable_all_tokens_index/decl.cairo" + }, + "parent_location": [ + { + "end_col": 82, + "end_line": 154, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" + }, + "start_col": 34, + "start_line": 154 + }, + "While trying to retrieve the implicit argument 'range_check_ptr' in:" + ], + "start_col": 63, + "start_line": 13 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 39, + "start_line": 153 + }, + "While trying to update the implicit return value 'range_check_ptr' in:" + ], + "start_col": 17, + "start_line": 35 + } + }, + "2216": { + "accessible_scopes": [ + "openzeppelin.token.erc721.enumerable.library", + "openzeppelin.token.erc721.enumerable.library._remove_token_from_all_tokens_enumeration" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 20, + "end_line": 150, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" + }, + "parent_location": [ + { + "end_col": 81, + "end_line": 154, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" + }, + "start_col": 73, + "start_line": 154 + }, + "While expanding the reference 'token_id' in:" + ], + "start_col": 3, + "start_line": 150 + } + }, + "2217": { + "accessible_scopes": [ + "openzeppelin.token.erc721.enumerable.library", + "openzeppelin.token.erc721.enumerable.library._remove_token_from_all_tokens_enumeration" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 20, + "end_line": 150, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" + }, + "parent_location": [ + { + "end_col": 81, + "end_line": 154, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" + }, + "start_col": 73, + "start_line": 154 + }, + "While expanding the reference 'token_id' in:" + ], + "start_col": 3, + "start_line": 150 + } + }, + "2218": { + "accessible_scopes": [ + "openzeppelin.token.erc721.enumerable.library", + "openzeppelin.token.erc721.enumerable.library._remove_token_from_all_tokens_enumeration" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 82, + "end_line": 154, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" + }, + "start_col": 34, + "start_line": 154 + } + }, + "2220": { + "accessible_scopes": [ + "openzeppelin.token.erc721.enumerable.library", + "openzeppelin.token.erc721.enumerable.library._remove_token_from_all_tokens_enumeration" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 30, + "end_line": 154, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" + }, + "parent_location": [ + { + "end_col": 30, + "end_line": 154, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" + }, + "start_col": 10, + "start_line": 154 + }, + "While auto generating local variable for 'token_index'." + ], + "start_col": 10, + "start_line": 154 + } + }, + "2221": { + "accessible_scopes": [ + "openzeppelin.token.erc721.enumerable.library", + "openzeppelin.token.erc721.enumerable.library._remove_token_from_all_tokens_enumeration" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 30, + "end_line": 154, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" + }, + "parent_location": [ + { + "end_col": 30, + "end_line": 154, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" + }, + "start_col": 10, + "start_line": 154 + }, + "While auto generating local variable for 'token_index'." + ], + "start_col": 10, + "start_line": 154 + } + }, + "2222": { + "accessible_scopes": [ + "openzeppelin.token.erc721.enumerable.library", + "openzeppelin.token.erc721.enumerable.library._remove_token_from_all_tokens_enumeration" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 33, + "end_line": 13, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721Enumerable_all_tokens_index/decl.cairo" + }, + "parent_location": [ + { + "end_col": 82, + "end_line": 154, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" + }, + "parent_location": [ + { + "end_col": 33, + "end_line": 13, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721Enumerable_all_tokens/decl.cairo" + }, + "parent_location": [ + { + "end_col": 86, + "end_line": 155, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" + }, + "start_col": 36, + "start_line": 155 + }, + "While trying to retrieve the implicit argument 'syscall_ptr' in:" + ], + "start_col": 15, + "start_line": 13 + }, + "While expanding the reference 'syscall_ptr' in:" + ], + "start_col": 34, + "start_line": 154 + }, + "While trying to update the implicit return value 'syscall_ptr' in:" + ], + "start_col": 15, + "start_line": 13 + } + }, + "2223": { + "accessible_scopes": [ + "openzeppelin.token.erc721.enumerable.library", + "openzeppelin.token.erc721.enumerable.library._remove_token_from_all_tokens_enumeration" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 61, + "end_line": 13, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721Enumerable_all_tokens_index/decl.cairo" + }, + "parent_location": [ + { + "end_col": 82, + "end_line": 154, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" + }, + "parent_location": [ + { + "end_col": 61, + "end_line": 13, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721Enumerable_all_tokens/decl.cairo" + }, + "parent_location": [ + { + "end_col": 86, + "end_line": 155, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" + }, + "start_col": 36, + "start_line": 155 + }, + "While trying to retrieve the implicit argument 'pedersen_ptr' in:" + ], + "start_col": 35, + "start_line": 13 + }, + "While expanding the reference 'pedersen_ptr' in:" + ], + "start_col": 34, + "start_line": 154 + }, + "While trying to update the implicit return value 'pedersen_ptr' in:" + ], + "start_col": 35, + "start_line": 13 + } + }, + "2224": { + "accessible_scopes": [ + "openzeppelin.token.erc721.enumerable.library", + "openzeppelin.token.erc721.enumerable.library._remove_token_from_all_tokens_enumeration" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 78, + "end_line": 13, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721Enumerable_all_tokens_index/decl.cairo" + }, + "parent_location": [ + { + "end_col": 82, + "end_line": 154, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" + }, + "parent_location": [ + { + "end_col": 78, + "end_line": 13, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721Enumerable_all_tokens/decl.cairo" + }, + "parent_location": [ + { + "end_col": 86, + "end_line": 155, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" + }, + "start_col": 36, + "start_line": 155 + }, + "While trying to retrieve the implicit argument 'range_check_ptr' in:" + ], + "start_col": 63, + "start_line": 13 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 34, + "start_line": 154 + }, + "While trying to update the implicit return value 'range_check_ptr' in:" + ], + "start_col": 63, + "start_line": 13 + } + }, + "2225": { + "accessible_scopes": [ + "openzeppelin.token.erc721.enumerable.library", + "openzeppelin.token.erc721.enumerable.library._remove_token_from_all_tokens_enumeration" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 35, + "end_line": 153, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" + }, + "parent_location": [ + { + "end_col": 85, + "end_line": 155, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" + }, + "start_col": 69, + "start_line": 155 + }, + "While expanding the reference 'last_token_index' in:" + ], + "start_col": 10, + "start_line": 153 + } + }, + "2226": { + "accessible_scopes": [ + "openzeppelin.token.erc721.enumerable.library", + "openzeppelin.token.erc721.enumerable.library._remove_token_from_all_tokens_enumeration" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 35, + "end_line": 153, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" + }, + "parent_location": [ + { + "end_col": 85, + "end_line": 155, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" + }, + "start_col": 69, + "start_line": 155 + }, + "While expanding the reference 'last_token_index' in:" + ], + "start_col": 10, + "start_line": 153 + } + }, + "2227": { + "accessible_scopes": [ + "openzeppelin.token.erc721.enumerable.library", + "openzeppelin.token.erc721.enumerable.library._remove_token_from_all_tokens_enumeration" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 86, + "end_line": 155, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" + }, + "start_col": 36, + "start_line": 155 + } + }, + "2229": { + "accessible_scopes": [ + "openzeppelin.token.erc721.enumerable.library", + "openzeppelin.token.erc721.enumerable.library._remove_token_from_all_tokens_enumeration" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 32, + "end_line": 155, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" + }, + "parent_location": [ + { + "end_col": 32, + "end_line": 155, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" + }, + "start_col": 10, + "start_line": 155 + }, + "While auto generating local variable for 'last_token_id'." + ], + "start_col": 10, + "start_line": 155 + } + }, + "2230": { + "accessible_scopes": [ + "openzeppelin.token.erc721.enumerable.library", + "openzeppelin.token.erc721.enumerable.library._remove_token_from_all_tokens_enumeration" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 32, + "end_line": 155, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" + }, + "parent_location": [ + { + "end_col": 32, + "end_line": 155, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" + }, + "start_col": 10, + "start_line": 155 + }, + "While auto generating local variable for 'last_token_id'." + ], + "start_col": 10, + "start_line": 155 + } + }, + "2231": { + "accessible_scopes": [ + "openzeppelin.token.erc721.enumerable.library", + "openzeppelin.token.erc721.enumerable.library._remove_token_from_all_tokens_enumeration" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 33, + "end_line": 13, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721Enumerable_all_tokens/decl.cairo" + }, + "parent_location": [ + { + "end_col": 86, + "end_line": 155, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" + }, + "parent_location": [ + { + "end_col": 34, + "end_line": 21, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721Enumerable_all_tokens/decl.cairo" + }, + "parent_location": [ + { + "end_col": 71, + "end_line": 157, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" + }, + "start_col": 5, + "start_line": 157 + }, + "While trying to retrieve the implicit argument 'syscall_ptr' in:" + ], + "start_col": 16, + "start_line": 21 + }, + "While expanding the reference 'syscall_ptr' in:" + ], + "start_col": 36, + "start_line": 155 + }, + "While trying to update the implicit return value 'syscall_ptr' in:" + ], + "start_col": 15, + "start_line": 13 + } + }, + "2232": { + "accessible_scopes": [ + "openzeppelin.token.erc721.enumerable.library", + "openzeppelin.token.erc721.enumerable.library._remove_token_from_all_tokens_enumeration" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 61, + "end_line": 13, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721Enumerable_all_tokens/decl.cairo" + }, + "parent_location": [ + { + "end_col": 86, + "end_line": 155, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" + }, + "parent_location": [ + { + "end_col": 62, + "end_line": 21, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721Enumerable_all_tokens/decl.cairo" + }, + "parent_location": [ + { + "end_col": 71, + "end_line": 157, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" + }, + "start_col": 5, + "start_line": 157 + }, + "While trying to retrieve the implicit argument 'pedersen_ptr' in:" + ], + "start_col": 36, + "start_line": 21 + }, + "While expanding the reference 'pedersen_ptr' in:" + ], + "start_col": 36, + "start_line": 155 + }, + "While trying to update the implicit return value 'pedersen_ptr' in:" + ], + "start_col": 35, + "start_line": 13 + } + }, + "2233": { + "accessible_scopes": [ + "openzeppelin.token.erc721.enumerable.library", + "openzeppelin.token.erc721.enumerable.library._remove_token_from_all_tokens_enumeration" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 78, + "end_line": 13, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721Enumerable_all_tokens/decl.cairo" + }, + "parent_location": [ + { + "end_col": 86, + "end_line": 155, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" + }, + "parent_location": [ + { + "end_col": 79, + "end_line": 21, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721Enumerable_all_tokens/decl.cairo" + }, + "parent_location": [ + { + "end_col": 71, + "end_line": 157, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" + }, + "start_col": 5, + "start_line": 157 + }, + "While trying to retrieve the implicit argument 'range_check_ptr' in:" + ], + "start_col": 64, + "start_line": 21 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 36, + "start_line": 155 + }, + "While trying to update the implicit return value 'range_check_ptr' in:" + ], + "start_col": 63, + "start_line": 13 + } + }, + "2234": { + "accessible_scopes": [ + "openzeppelin.token.erc721.enumerable.library", + "openzeppelin.token.erc721.enumerable.library._remove_token_from_all_tokens_enumeration" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 35, + "end_line": 153, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" + }, + "parent_location": [ + { + "end_col": 55, + "end_line": 157, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" + }, + "start_col": 39, + "start_line": 157 + }, + "While expanding the reference 'last_token_index' in:" + ], + "start_col": 10, + "start_line": 153 + } + }, + "2235": { + "accessible_scopes": [ + "openzeppelin.token.erc721.enumerable.library", + "openzeppelin.token.erc721.enumerable.library._remove_token_from_all_tokens_enumeration" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 35, + "end_line": 153, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" + }, + "parent_location": [ + { + "end_col": 55, + "end_line": 157, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" + }, + "start_col": 39, + "start_line": 157 + }, + "While expanding the reference 'last_token_index' in:" + ], + "start_col": 10, + "start_line": 153 + } + }, + "2236": { + "accessible_scopes": [ + "openzeppelin.token.erc721.enumerable.library", + "openzeppelin.token.erc721.enumerable.library._remove_token_from_all_tokens_enumeration" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 66, + "end_line": 157, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" + }, + "start_col": 65, + "start_line": 157 + } + }, + "2238": { + "accessible_scopes": [ + "openzeppelin.token.erc721.enumerable.library", + "openzeppelin.token.erc721.enumerable.library._remove_token_from_all_tokens_enumeration" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 69, + "end_line": 157, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" + }, + "start_col": 68, + "start_line": 157 + } + }, + "2240": { + "accessible_scopes": [ + "openzeppelin.token.erc721.enumerable.library", + "openzeppelin.token.erc721.enumerable.library._remove_token_from_all_tokens_enumeration" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 71, + "end_line": 157, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" + }, + "start_col": 5, + "start_line": 157 + } + }, + "2242": { + "accessible_scopes": [ + "openzeppelin.token.erc721.enumerable.library", + "openzeppelin.token.erc721.enumerable.library._remove_token_from_all_tokens_enumeration" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 20, + "end_line": 150, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" + }, + "parent_location": [ + { + "end_col": 53, + "end_line": 158, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" + }, + "start_col": 45, + "start_line": 158 + }, + "While expanding the reference 'token_id' in:" + ], + "start_col": 3, + "start_line": 150 + } + }, + "2243": { + "accessible_scopes": [ + "openzeppelin.token.erc721.enumerable.library", + "openzeppelin.token.erc721.enumerable.library._remove_token_from_all_tokens_enumeration" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 20, + "end_line": 150, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" + }, + "parent_location": [ + { + "end_col": 53, + "end_line": 158, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" + }, + "start_col": 45, + "start_line": 158 + }, + "While expanding the reference 'token_id' in:" + ], + "start_col": 3, + "start_line": 150 + } + }, + "2244": { + "accessible_scopes": [ + "openzeppelin.token.erc721.enumerable.library", + "openzeppelin.token.erc721.enumerable.library._remove_token_from_all_tokens_enumeration" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 64, + "end_line": 158, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" + }, + "start_col": 63, + "start_line": 158 + } + }, + "2246": { + "accessible_scopes": [ + "openzeppelin.token.erc721.enumerable.library", + "openzeppelin.token.erc721.enumerable.library._remove_token_from_all_tokens_enumeration" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 67, + "end_line": 158, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" + }, + "start_col": 66, + "start_line": 158 + } + }, + "2248": { + "accessible_scopes": [ + "openzeppelin.token.erc721.enumerable.library", + "openzeppelin.token.erc721.enumerable.library._remove_token_from_all_tokens_enumeration" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 69, + "end_line": 158, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" + }, + "start_col": 5, + "start_line": 158 + } + }, + "2250": { + "accessible_scopes": [ + "openzeppelin.token.erc721.enumerable.library", + "openzeppelin.token.erc721.enumerable.library._remove_token_from_all_tokens_enumeration" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 35, + "end_line": 153, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" + }, + "parent_location": [ + { + "end_col": 59, + "end_line": 159, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" + }, + "start_col": 43, + "start_line": 159 + }, + "While expanding the reference 'last_token_index' in:" + ], + "start_col": 10, + "start_line": 153 + } + }, + "2251": { + "accessible_scopes": [ + "openzeppelin.token.erc721.enumerable.library", + "openzeppelin.token.erc721.enumerable.library._remove_token_from_all_tokens_enumeration" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 35, + "end_line": 153, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" + }, + "parent_location": [ + { + "end_col": 59, + "end_line": 159, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" + }, + "start_col": 43, + "start_line": 159 + }, + "While expanding the reference 'last_token_index' in:" + ], + "start_col": 10, + "start_line": 153 + } + }, + "2252": { + "accessible_scopes": [ + "openzeppelin.token.erc721.enumerable.library", + "openzeppelin.token.erc721.enumerable.library._remove_token_from_all_tokens_enumeration" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 60, + "end_line": 159, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" + }, + "start_col": 5, + "start_line": 159 + } + }, + "2254": { + "accessible_scopes": [ + "openzeppelin.token.erc721.enumerable.library", + "openzeppelin.token.erc721.enumerable.library._remove_token_from_all_tokens_enumeration" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 34, + "end_line": 21, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721Enumerable_all_tokens_len/decl.cairo" + }, + "parent_location": [ + { + "end_col": 60, + "end_line": 159, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" + }, + "parent_location": [ + { + "end_col": 34, + "end_line": 21, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721Enumerable_all_tokens_len/decl.cairo" + }, + "parent_location": [ + { + "end_col": 60, + "end_line": 159, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" + }, + "start_col": 5, + "start_line": 159 + }, + "While trying to update the implicit return value 'syscall_ptr' in:" + ], + "start_col": 16, + "start_line": 21 + }, + "While auto generating local variable for 'syscall_ptr'." + ], + "start_col": 5, + "start_line": 159 + }, + "While trying to update the implicit return value 'syscall_ptr' in:" + ], + "start_col": 16, + "start_line": 21 + } + }, + "2255": { + "accessible_scopes": [ + "openzeppelin.token.erc721.enumerable.library", + "openzeppelin.token.erc721.enumerable.library._remove_token_from_all_tokens_enumeration" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 62, + "end_line": 21, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721Enumerable_all_tokens_len/decl.cairo" + }, + "parent_location": [ + { + "end_col": 60, + "end_line": 159, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" + }, + "parent_location": [ + { + "end_col": 62, + "end_line": 21, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721Enumerable_all_tokens_len/decl.cairo" + }, + "parent_location": [ + { + "end_col": 60, + "end_line": 159, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" + }, + "start_col": 5, + "start_line": 159 + }, + "While trying to update the implicit return value 'pedersen_ptr' in:" + ], + "start_col": 36, + "start_line": 21 + }, + "While auto generating local variable for 'pedersen_ptr'." + ], + "start_col": 5, + "start_line": 159 + }, + "While trying to update the implicit return value 'pedersen_ptr' in:" + ], + "start_col": 36, + "start_line": 21 + } + }, + "2256": { + "accessible_scopes": [ + "openzeppelin.token.erc721.enumerable.library", + "openzeppelin.token.erc721.enumerable.library._remove_token_from_all_tokens_enumeration" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 35, + "end_line": 153, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" + }, + "parent_location": [ + { + "end_col": 49, + "end_line": 161, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" + }, + "start_col": 33, + "start_line": 161 + }, + "While expanding the reference 'last_token_index' in:" + ], + "start_col": 10, + "start_line": 153 + } + }, + "2257": { + "accessible_scopes": [ + "openzeppelin.token.erc721.enumerable.library", + "openzeppelin.token.erc721.enumerable.library._remove_token_from_all_tokens_enumeration" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 35, + "end_line": 153, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" + }, + "parent_location": [ + { + "end_col": 49, + "end_line": 161, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" + }, + "start_col": 33, + "start_line": 161 + }, + "While expanding the reference 'last_token_index' in:" + ], + "start_col": 10, + "start_line": 153 + } + }, + "2258": { + "accessible_scopes": [ + "openzeppelin.token.erc721.enumerable.library", + "openzeppelin.token.erc721.enumerable.library._remove_token_from_all_tokens_enumeration" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 30, + "end_line": 154, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" + }, + "parent_location": [ + { + "end_col": 30, + "end_line": 154, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" + }, + "parent_location": [ + { + "end_col": 62, + "end_line": 161, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" + }, + "start_col": 51, + "start_line": 161 + }, + "While expanding the reference 'token_index' in:" + ], + "start_col": 10, + "start_line": 154 + }, + "While auto generating local variable for 'token_index'." + ], + "start_col": 10, + "start_line": 154 + } + }, + "2259": { + "accessible_scopes": [ + "openzeppelin.token.erc721.enumerable.library", + "openzeppelin.token.erc721.enumerable.library._remove_token_from_all_tokens_enumeration" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 30, + "end_line": 154, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" + }, + "parent_location": [ + { + "end_col": 30, + "end_line": 154, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" + }, + "parent_location": [ + { + "end_col": 62, + "end_line": 161, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" + }, + "start_col": 51, + "start_line": 161 + }, + "While expanding the reference 'token_index' in:" + ], + "start_col": 10, + "start_line": 154 + }, + "While auto generating local variable for 'token_index'." + ], + "start_col": 10, + "start_line": 154 + } + }, + "2260": { + "accessible_scopes": [ + "openzeppelin.token.erc721.enumerable.library", + "openzeppelin.token.erc721.enumerable.library._remove_token_from_all_tokens_enumeration" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 63, + "end_line": 161, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" + }, + "start_col": 22, + "start_line": 161 + } + }, + "2262": { + "accessible_scopes": [ + "openzeppelin.token.erc721.enumerable.library", + "openzeppelin.token.erc721.enumerable.library._remove_token_from_all_tokens_enumeration" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 7, + "end_line": 162, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" + }, + "start_col": 5, + "start_line": 162 + } + }, + "2264": { + "accessible_scopes": [ + "openzeppelin.token.erc721.enumerable.library", + "openzeppelin.token.erc721.enumerable.library._remove_token_from_all_tokens_enumeration" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 34, + "end_line": 21, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721Enumerable_all_tokens_len/decl.cairo" + }, + "parent_location": [ + { + "end_col": 60, + "end_line": 159, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" + }, + "parent_location": [ + { + "end_col": 34, + "end_line": 21, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721Enumerable_all_tokens_len/decl.cairo" + }, + "parent_location": [ + { + "end_col": 60, + "end_line": 159, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" + }, + "parent_location": [ + { + "end_col": 34, + "end_line": 21, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721Enumerable_all_tokens_index/decl.cairo" + }, + "parent_location": [ + { + "end_col": 76, + "end_line": 163, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" + }, + "start_col": 9, + "start_line": 163 + }, + "While trying to retrieve the implicit argument 'syscall_ptr' in:" + ], + "start_col": 16, + "start_line": 21 + }, + "While expanding the reference 'syscall_ptr' in:" + ], + "start_col": 5, + "start_line": 159 + }, + "While trying to update the implicit return value 'syscall_ptr' in:" + ], + "start_col": 16, + "start_line": 21 + }, + "While auto generating local variable for 'syscall_ptr'." + ], + "start_col": 5, + "start_line": 159 + }, + "While trying to update the implicit return value 'syscall_ptr' in:" + ], + "start_col": 16, + "start_line": 21 + } + }, + "2265": { + "accessible_scopes": [ + "openzeppelin.token.erc721.enumerable.library", + "openzeppelin.token.erc721.enumerable.library._remove_token_from_all_tokens_enumeration" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 62, + "end_line": 21, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721Enumerable_all_tokens_len/decl.cairo" + }, + "parent_location": [ + { + "end_col": 60, + "end_line": 159, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" + }, + "parent_location": [ + { + "end_col": 62, + "end_line": 21, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721Enumerable_all_tokens_len/decl.cairo" + }, + "parent_location": [ + { + "end_col": 60, + "end_line": 159, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" + }, + "parent_location": [ + { + "end_col": 62, + "end_line": 21, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721Enumerable_all_tokens_index/decl.cairo" + }, + "parent_location": [ + { + "end_col": 76, + "end_line": 163, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" + }, + "start_col": 9, + "start_line": 163 + }, + "While trying to retrieve the implicit argument 'pedersen_ptr' in:" + ], + "start_col": 36, + "start_line": 21 + }, + "While expanding the reference 'pedersen_ptr' in:" + ], + "start_col": 5, + "start_line": 159 + }, + "While trying to update the implicit return value 'pedersen_ptr' in:" + ], + "start_col": 36, + "start_line": 21 + }, + "While auto generating local variable for 'pedersen_ptr'." + ], + "start_col": 5, + "start_line": 159 + }, + "While trying to update the implicit return value 'pedersen_ptr' in:" + ], + "start_col": 36, + "start_line": 21 + } + }, + "2266": { + "accessible_scopes": [ + "openzeppelin.token.erc721.enumerable.library", + "openzeppelin.token.erc721.enumerable.library._remove_token_from_all_tokens_enumeration" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 32, + "end_line": 357, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/uint256.cairo" + }, + "parent_location": [ + { + "end_col": 63, + "end_line": 161, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" + }, + "parent_location": [ + { + "end_col": 79, + "end_line": 21, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721Enumerable_all_tokens_index/decl.cairo" + }, + "parent_location": [ + { + "end_col": 76, + "end_line": 163, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" + }, + "start_col": 9, + "start_line": 163 + }, + "While trying to retrieve the implicit argument 'range_check_ptr' in:" + ], + "start_col": 64, + "start_line": 21 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 22, + "start_line": 161 + }, + "While trying to update the implicit return value 'range_check_ptr' in:" + ], + "start_col": 17, + "start_line": 357 + } + }, + "2267": { + "accessible_scopes": [ + "openzeppelin.token.erc721.enumerable.library", + "openzeppelin.token.erc721.enumerable.library._remove_token_from_all_tokens_enumeration" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 32, + "end_line": 155, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" + }, + "parent_location": [ + { + "end_col": 32, + "end_line": 155, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" + }, + "parent_location": [ + { + "end_col": 62, + "end_line": 163, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" + }, + "start_col": 49, + "start_line": 163 + }, + "While expanding the reference 'last_token_id' in:" + ], + "start_col": 10, + "start_line": 155 + }, + "While auto generating local variable for 'last_token_id'." + ], + "start_col": 10, + "start_line": 155 + } + }, + "2268": { + "accessible_scopes": [ + "openzeppelin.token.erc721.enumerable.library", + "openzeppelin.token.erc721.enumerable.library._remove_token_from_all_tokens_enumeration" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 32, + "end_line": 155, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" + }, + "parent_location": [ + { + "end_col": 32, + "end_line": 155, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" + }, + "parent_location": [ + { + "end_col": 62, + "end_line": 163, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" + }, + "start_col": 49, + "start_line": 163 + }, + "While expanding the reference 'last_token_id' in:" + ], + "start_col": 10, + "start_line": 155 + }, + "While auto generating local variable for 'last_token_id'." + ], + "start_col": 10, + "start_line": 155 + } + }, + "2269": { + "accessible_scopes": [ + "openzeppelin.token.erc721.enumerable.library", + "openzeppelin.token.erc721.enumerable.library._remove_token_from_all_tokens_enumeration" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 30, + "end_line": 154, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" + }, + "parent_location": [ + { + "end_col": 30, + "end_line": 154, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" + }, + "parent_location": [ + { + "end_col": 75, + "end_line": 163, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" + }, + "start_col": 64, + "start_line": 163 + }, + "While expanding the reference 'token_index' in:" + ], + "start_col": 10, + "start_line": 154 + }, + "While auto generating local variable for 'token_index'." + ], + "start_col": 10, + "start_line": 154 + } + }, + "2270": { + "accessible_scopes": [ + "openzeppelin.token.erc721.enumerable.library", + "openzeppelin.token.erc721.enumerable.library._remove_token_from_all_tokens_enumeration" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 30, + "end_line": 154, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" + }, + "parent_location": [ + { + "end_col": 30, + "end_line": 154, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" + }, + "parent_location": [ + { + "end_col": 75, + "end_line": 163, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" + }, + "start_col": 64, + "start_line": 163 + }, + "While expanding the reference 'token_index' in:" + ], + "start_col": 10, + "start_line": 154 + }, + "While auto generating local variable for 'token_index'." + ], + "start_col": 10, + "start_line": 154 + } + }, + "2271": { + "accessible_scopes": [ + "openzeppelin.token.erc721.enumerable.library", + "openzeppelin.token.erc721.enumerable.library._remove_token_from_all_tokens_enumeration" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 76, + "end_line": 163, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" + }, + "start_col": 9, + "start_line": 163 + } + }, + "2273": { + "accessible_scopes": [ + "openzeppelin.token.erc721.enumerable.library", + "openzeppelin.token.erc721.enumerable.library._remove_token_from_all_tokens_enumeration" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 30, + "end_line": 154, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" + }, + "parent_location": [ + { + "end_col": 30, + "end_line": 154, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" + }, + "parent_location": [ + { + "end_col": 54, + "end_line": 164, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" + }, + "start_col": 43, + "start_line": 164 + }, + "While expanding the reference 'token_index' in:" + ], + "start_col": 10, + "start_line": 154 + }, + "While auto generating local variable for 'token_index'." + ], + "start_col": 10, + "start_line": 154 + } + }, + "2274": { + "accessible_scopes": [ + "openzeppelin.token.erc721.enumerable.library", + "openzeppelin.token.erc721.enumerable.library._remove_token_from_all_tokens_enumeration" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 30, + "end_line": 154, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" + }, + "parent_location": [ + { + "end_col": 30, + "end_line": 154, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" + }, + "parent_location": [ + { + "end_col": 54, + "end_line": 164, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" + }, + "start_col": 43, + "start_line": 164 + }, + "While expanding the reference 'token_index' in:" + ], + "start_col": 10, + "start_line": 154 + }, + "While auto generating local variable for 'token_index'." + ], + "start_col": 10, + "start_line": 154 + } + }, + "2275": { + "accessible_scopes": [ + "openzeppelin.token.erc721.enumerable.library", + "openzeppelin.token.erc721.enumerable.library._remove_token_from_all_tokens_enumeration" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 32, + "end_line": 155, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" + }, + "parent_location": [ + { + "end_col": 32, + "end_line": 155, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" + }, + "parent_location": [ + { + "end_col": 69, + "end_line": 164, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" + }, + "start_col": 56, + "start_line": 164 + }, + "While expanding the reference 'last_token_id' in:" + ], + "start_col": 10, + "start_line": 155 + }, + "While auto generating local variable for 'last_token_id'." + ], + "start_col": 10, + "start_line": 155 + } + }, + "2276": { + "accessible_scopes": [ + "openzeppelin.token.erc721.enumerable.library", + "openzeppelin.token.erc721.enumerable.library._remove_token_from_all_tokens_enumeration" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 32, + "end_line": 155, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" + }, + "parent_location": [ + { + "end_col": 32, + "end_line": 155, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" + }, + "parent_location": [ + { + "end_col": 69, + "end_line": 164, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" + }, + "start_col": 56, + "start_line": 164 + }, + "While expanding the reference 'last_token_id' in:" + ], + "start_col": 10, + "start_line": 155 + }, + "While auto generating local variable for 'last_token_id'." + ], + "start_col": 10, + "start_line": 155 + } + }, + "2277": { + "accessible_scopes": [ + "openzeppelin.token.erc721.enumerable.library", + "openzeppelin.token.erc721.enumerable.library._remove_token_from_all_tokens_enumeration" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 70, + "end_line": 164, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" + }, + "start_col": 9, + "start_line": 164 + } + }, + "2279": { + "accessible_scopes": [ + "openzeppelin.token.erc721.enumerable.library", + "openzeppelin.token.erc721.enumerable.library._remove_token_from_all_tokens_enumeration" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 62, + "end_line": 21, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721Enumerable_all_tokens/decl.cairo" + }, + "parent_location": [ + { + "end_col": 70, + "end_line": 164, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" + }, + "parent_location": [ + { + "end_col": 31, + "end_line": 149, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" + }, + "parent_location": [ + { + "end_col": 19, + "end_line": 165, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" + }, + "start_col": 9, + "start_line": 165 + }, + "While trying to retrieve the implicit argument 'pedersen_ptr' in:" + ], + "start_col": 5, + "start_line": 149 + }, + "While expanding the reference 'pedersen_ptr' in:" + ], + "start_col": 9, + "start_line": 164 + }, + "While trying to update the implicit return value 'pedersen_ptr' in:" + ], + "start_col": 36, + "start_line": 21 + } + }, + "2280": { + "accessible_scopes": [ + "openzeppelin.token.erc721.enumerable.library", + "openzeppelin.token.erc721.enumerable.library._remove_token_from_all_tokens_enumeration" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 34, + "end_line": 21, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721Enumerable_all_tokens/decl.cairo" + }, + "parent_location": [ + { + "end_col": 70, + "end_line": 164, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" + }, + "parent_location": [ + { + "end_col": 51, + "end_line": 149, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" + }, + "parent_location": [ + { + "end_col": 19, + "end_line": 165, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" + }, + "start_col": 9, + "start_line": 165 + }, + "While trying to retrieve the implicit argument 'syscall_ptr' in:" + ], + "start_col": 33, + "start_line": 149 + }, + "While expanding the reference 'syscall_ptr' in:" + ], + "start_col": 9, + "start_line": 164 + }, + "While trying to update the implicit return value 'syscall_ptr' in:" + ], + "start_col": 16, + "start_line": 21 + } + }, + "2281": { + "accessible_scopes": [ + "openzeppelin.token.erc721.enumerable.library", + "openzeppelin.token.erc721.enumerable.library._remove_token_from_all_tokens_enumeration" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 79, + "end_line": 21, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721Enumerable_all_tokens/decl.cairo" + }, + "parent_location": [ + { + "end_col": 70, + "end_line": 164, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" + }, + "parent_location": [ + { + "end_col": 68, + "end_line": 149, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" + }, + "parent_location": [ + { + "end_col": 19, + "end_line": 165, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" + }, + "start_col": 9, + "start_line": 165 + }, + "While trying to retrieve the implicit argument 'range_check_ptr' in:" + ], + "start_col": 53, + "start_line": 149 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 9, + "start_line": 164 + }, + "While trying to update the implicit return value 'range_check_ptr' in:" + ], + "start_col": 64, + "start_line": 21 + } + }, + "2282": { + "accessible_scopes": [ + "openzeppelin.token.erc721.enumerable.library", + "openzeppelin.token.erc721.enumerable.library._remove_token_from_all_tokens_enumeration" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 19, + "end_line": 165, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" + }, + "start_col": 9, + "start_line": 165 + } + }, + "2283": { + "accessible_scopes": [ + "openzeppelin.token.erc721.enumerable.library", + "openzeppelin.token.erc721.enumerable.library._remove_token_from_all_tokens_enumeration" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 62, + "end_line": 21, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721Enumerable_all_tokens_len/decl.cairo" + }, + "parent_location": [ + { + "end_col": 60, + "end_line": 159, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" + }, + "parent_location": [ + { + "end_col": 62, + "end_line": 21, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721Enumerable_all_tokens_len/decl.cairo" + }, + "parent_location": [ + { + "end_col": 60, + "end_line": 159, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" + }, + "parent_location": [ + { + "end_col": 31, + "end_line": 149, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" + }, + "parent_location": [ + { + "end_col": 15, + "end_line": 167, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" + }, + "start_col": 5, + "start_line": 167 + }, + "While trying to retrieve the implicit argument 'pedersen_ptr' in:" + ], + "start_col": 5, + "start_line": 149 + }, + "While expanding the reference 'pedersen_ptr' in:" + ], + "start_col": 5, + "start_line": 159 + }, + "While trying to update the implicit return value 'pedersen_ptr' in:" + ], + "start_col": 36, + "start_line": 21 + }, + "While auto generating local variable for 'pedersen_ptr'." + ], + "start_col": 5, + "start_line": 159 + }, + "While trying to update the implicit return value 'pedersen_ptr' in:" + ], + "start_col": 36, + "start_line": 21 + } + }, + "2284": { + "accessible_scopes": [ + "openzeppelin.token.erc721.enumerable.library", + "openzeppelin.token.erc721.enumerable.library._remove_token_from_all_tokens_enumeration" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 34, + "end_line": 21, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721Enumerable_all_tokens_len/decl.cairo" + }, + "parent_location": [ + { + "end_col": 60, + "end_line": 159, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" + }, + "parent_location": [ + { + "end_col": 34, + "end_line": 21, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721Enumerable_all_tokens_len/decl.cairo" + }, + "parent_location": [ + { + "end_col": 60, + "end_line": 159, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" + }, + "parent_location": [ + { + "end_col": 51, + "end_line": 149, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" + }, + "parent_location": [ + { + "end_col": 15, + "end_line": 167, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" + }, + "start_col": 5, + "start_line": 167 + }, + "While trying to retrieve the implicit argument 'syscall_ptr' in:" + ], + "start_col": 33, + "start_line": 149 + }, + "While expanding the reference 'syscall_ptr' in:" + ], + "start_col": 5, + "start_line": 159 + }, + "While trying to update the implicit return value 'syscall_ptr' in:" + ], + "start_col": 16, + "start_line": 21 + }, + "While auto generating local variable for 'syscall_ptr'." + ], + "start_col": 5, + "start_line": 159 + }, + "While trying to update the implicit return value 'syscall_ptr' in:" + ], + "start_col": 16, + "start_line": 21 + } + }, + "2285": { + "accessible_scopes": [ + "openzeppelin.token.erc721.enumerable.library", + "openzeppelin.token.erc721.enumerable.library._remove_token_from_all_tokens_enumeration" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 32, + "end_line": 357, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/uint256.cairo" + }, + "parent_location": [ + { + "end_col": 63, + "end_line": 161, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" + }, + "parent_location": [ + { + "end_col": 68, + "end_line": 149, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" + }, + "parent_location": [ + { + "end_col": 15, + "end_line": 167, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" + }, + "start_col": 5, + "start_line": 167 + }, + "While trying to retrieve the implicit argument 'range_check_ptr' in:" + ], + "start_col": 53, + "start_line": 149 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 22, + "start_line": 161 + }, + "While trying to update the implicit return value 'range_check_ptr' in:" + ], + "start_col": 17, + "start_line": 357 + } + }, + "2286": { + "accessible_scopes": [ + "openzeppelin.token.erc721.enumerable.library", + "openzeppelin.token.erc721.enumerable.library._remove_token_from_all_tokens_enumeration" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 15, + "end_line": 167, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" + }, + "start_col": 5, + "start_line": 167 + } + }, + "2287": { + "accessible_scopes": [ + "openzeppelin.token.erc721.enumerable.library", + "openzeppelin.token.erc721.enumerable.library._add_token_to_owner_enumeration" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 51, + "end_line": 171, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" + }, + "parent_location": [ + { + "end_col": 39, + "end_line": 100, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "parent_location": [ + { + "end_col": 50, + "end_line": 173, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" + }, + "start_col": 29, + "start_line": 173 + }, + "While trying to retrieve the implicit argument 'syscall_ptr' in:" + ], + "start_col": 21, + "start_line": 100 + }, + "While expanding the reference 'syscall_ptr' in:" + ], + "start_col": 33, + "start_line": 171 + } + }, + "2288": { + "accessible_scopes": [ + "openzeppelin.token.erc721.enumerable.library", + "openzeppelin.token.erc721.enumerable.library._add_token_to_owner_enumeration" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 31, + "end_line": 171, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" + }, + "parent_location": [ + { + "end_col": 67, + "end_line": 100, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "parent_location": [ + { + "end_col": 50, + "end_line": 173, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" + }, + "start_col": 29, + "start_line": 173 + }, + "While trying to retrieve the implicit argument 'pedersen_ptr' in:" + ], + "start_col": 41, + "start_line": 100 + }, + "While expanding the reference 'pedersen_ptr' in:" + ], + "start_col": 5, + "start_line": 171 + } + }, + "2289": { + "accessible_scopes": [ + "openzeppelin.token.erc721.enumerable.library", + "openzeppelin.token.erc721.enumerable.library._add_token_to_owner_enumeration" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 68, + "end_line": 171, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" + }, + "parent_location": [ + { + "end_col": 84, + "end_line": 100, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "parent_location": [ + { + "end_col": 50, + "end_line": 173, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" + }, + "start_col": 29, + "start_line": 173 + }, + "While trying to retrieve the implicit argument 'range_check_ptr' in:" + ], + "start_col": 69, + "start_line": 100 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 53, + "start_line": 171 + } + }, + "2290": { + "accessible_scopes": [ + "openzeppelin.token.erc721.enumerable.library", + "openzeppelin.token.erc721.enumerable.library._add_token_to_owner_enumeration" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 11, + "end_line": 172, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" + }, + "parent_location": [ + { + "end_col": 49, + "end_line": 173, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" + }, + "start_col": 47, + "start_line": 173 + }, + "While expanding the reference 'to' in:" + ], + "start_col": 3, + "start_line": 172 + } + }, + "2291": { + "accessible_scopes": [ + "openzeppelin.token.erc721.enumerable.library", + "openzeppelin.token.erc721.enumerable.library._add_token_to_owner_enumeration" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 50, + "end_line": 173, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" + }, + "start_col": 29, + "start_line": 173 + } + }, + "2293": { + "accessible_scopes": [ + "openzeppelin.token.erc721.enumerable.library", + "openzeppelin.token.erc721.enumerable.library._add_token_to_owner_enumeration" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 39, + "end_line": 100, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "parent_location": [ + { + "end_col": 50, + "end_line": 173, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" + }, + "parent_location": [ + { + "end_col": 34, + "end_line": 23, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721Enumerable_owned_tokens/decl.cairo" + }, + "parent_location": [ + { + "end_col": 62, + "end_line": 174, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" + }, + "start_col": 5, + "start_line": 174 + }, + "While trying to retrieve the implicit argument 'syscall_ptr' in:" + ], + "start_col": 16, + "start_line": 23 + }, + "While expanding the reference 'syscall_ptr' in:" + ], + "start_col": 29, + "start_line": 173 + }, + "While trying to update the implicit return value 'syscall_ptr' in:" + ], + "start_col": 21, + "start_line": 100 + } + }, + "2294": { + "accessible_scopes": [ + "openzeppelin.token.erc721.enumerable.library", + "openzeppelin.token.erc721.enumerable.library._add_token_to_owner_enumeration" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 67, + "end_line": 100, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "parent_location": [ + { + "end_col": 50, + "end_line": 173, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" + }, + "parent_location": [ + { + "end_col": 62, + "end_line": 23, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721Enumerable_owned_tokens/decl.cairo" + }, + "parent_location": [ + { + "end_col": 62, + "end_line": 174, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" + }, + "start_col": 5, + "start_line": 174 + }, + "While trying to retrieve the implicit argument 'pedersen_ptr' in:" + ], + "start_col": 36, + "start_line": 23 + }, + "While expanding the reference 'pedersen_ptr' in:" + ], + "start_col": 29, + "start_line": 173 + }, + "While trying to update the implicit return value 'pedersen_ptr' in:" + ], + "start_col": 41, + "start_line": 100 + } + }, + "2295": { + "accessible_scopes": [ + "openzeppelin.token.erc721.enumerable.library", + "openzeppelin.token.erc721.enumerable.library._add_token_to_owner_enumeration" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 84, + "end_line": 100, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "parent_location": [ + { + "end_col": 50, + "end_line": 173, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" + }, + "parent_location": [ + { + "end_col": 79, + "end_line": 23, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721Enumerable_owned_tokens/decl.cairo" + }, + "parent_location": [ + { + "end_col": 62, + "end_line": 174, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" + }, + "start_col": 5, + "start_line": 174 + }, + "While trying to retrieve the implicit argument 'range_check_ptr' in:" + ], + "start_col": 64, + "start_line": 23 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 29, + "start_line": 173 + }, + "While trying to update the implicit return value 'range_check_ptr' in:" + ], + "start_col": 69, + "start_line": 100 + } + }, + "2296": { + "accessible_scopes": [ + "openzeppelin.token.erc721.enumerable.library", + "openzeppelin.token.erc721.enumerable.library._add_token_to_owner_enumeration" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 11, + "end_line": 172, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" + }, + "parent_location": [ + { + "end_col": 43, + "end_line": 174, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" + }, + "start_col": 41, + "start_line": 174 + }, + "While expanding the reference 'to' in:" + ], + "start_col": 3, + "start_line": 172 + } + }, + "2297": { + "accessible_scopes": [ + "openzeppelin.token.erc721.enumerable.library", + "openzeppelin.token.erc721.enumerable.library._add_token_to_owner_enumeration" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 25, + "end_line": 173, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" + }, + "parent_location": [ + { + "end_col": 51, + "end_line": 174, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" + }, + "start_col": 45, + "start_line": 174 + }, + "While expanding the reference 'length' in:" + ], + "start_col": 10, + "start_line": 173 + } + }, + "2298": { + "accessible_scopes": [ + "openzeppelin.token.erc721.enumerable.library", + "openzeppelin.token.erc721.enumerable.library._add_token_to_owner_enumeration" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 25, + "end_line": 173, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" + }, + "parent_location": [ + { + "end_col": 51, + "end_line": 174, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" + }, + "start_col": 45, + "start_line": 174 + }, + "While expanding the reference 'length' in:" + ], + "start_col": 10, + "start_line": 173 + } + }, + "2299": { + "accessible_scopes": [ + "openzeppelin.token.erc721.enumerable.library", + "openzeppelin.token.erc721.enumerable.library._add_token_to_owner_enumeration" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 30, + "end_line": 172, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" + }, + "parent_location": [ + { + "end_col": 61, + "end_line": 174, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" + }, + "start_col": 53, + "start_line": 174 + }, + "While expanding the reference 'token_id' in:" + ], + "start_col": 13, + "start_line": 172 + } + }, + "2300": { + "accessible_scopes": [ + "openzeppelin.token.erc721.enumerable.library", + "openzeppelin.token.erc721.enumerable.library._add_token_to_owner_enumeration" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 30, + "end_line": 172, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" + }, + "parent_location": [ + { + "end_col": 61, + "end_line": 174, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" + }, + "start_col": 53, + "start_line": 174 + }, + "While expanding the reference 'token_id' in:" + ], + "start_col": 13, + "start_line": 172 + } + }, + "2301": { + "accessible_scopes": [ + "openzeppelin.token.erc721.enumerable.library", + "openzeppelin.token.erc721.enumerable.library._add_token_to_owner_enumeration" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 62, + "end_line": 174, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" + }, + "start_col": 5, + "start_line": 174 + } + }, + "2303": { + "accessible_scopes": [ + "openzeppelin.token.erc721.enumerable.library", + "openzeppelin.token.erc721.enumerable.library._add_token_to_owner_enumeration" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 30, + "end_line": 172, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" + }, + "parent_location": [ + { + "end_col": 55, + "end_line": 175, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" + }, + "start_col": 47, + "start_line": 175 + }, + "While expanding the reference 'token_id' in:" + ], + "start_col": 13, + "start_line": 172 + } + }, + "2304": { + "accessible_scopes": [ + "openzeppelin.token.erc721.enumerable.library", + "openzeppelin.token.erc721.enumerable.library._add_token_to_owner_enumeration" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 30, + "end_line": 172, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" + }, + "parent_location": [ + { + "end_col": 55, + "end_line": 175, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" + }, + "start_col": 47, + "start_line": 175 + }, + "While expanding the reference 'token_id' in:" + ], + "start_col": 13, + "start_line": 172 + } + }, + "2305": { + "accessible_scopes": [ + "openzeppelin.token.erc721.enumerable.library", + "openzeppelin.token.erc721.enumerable.library._add_token_to_owner_enumeration" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 25, + "end_line": 173, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" + }, + "parent_location": [ + { + "end_col": 63, + "end_line": 175, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" + }, + "start_col": 57, + "start_line": 175 + }, + "While expanding the reference 'length' in:" + ], + "start_col": 10, + "start_line": 173 + } + }, + "2306": { + "accessible_scopes": [ + "openzeppelin.token.erc721.enumerable.library", + "openzeppelin.token.erc721.enumerable.library._add_token_to_owner_enumeration" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 25, + "end_line": 173, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" + }, + "parent_location": [ + { + "end_col": 63, + "end_line": 175, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" + }, + "start_col": 57, + "start_line": 175 + }, + "While expanding the reference 'length' in:" + ], + "start_col": 10, + "start_line": 173 + } + }, + "2307": { + "accessible_scopes": [ + "openzeppelin.token.erc721.enumerable.library", + "openzeppelin.token.erc721.enumerable.library._add_token_to_owner_enumeration" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 64, + "end_line": 175, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" + }, + "start_col": 5, + "start_line": 175 + } + }, + "2309": { + "accessible_scopes": [ + "openzeppelin.token.erc721.enumerable.library", + "openzeppelin.token.erc721.enumerable.library._add_token_to_owner_enumeration" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 62, + "end_line": 21, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721Enumerable_owned_tokens_index/decl.cairo" + }, + "parent_location": [ + { + "end_col": 64, + "end_line": 175, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" + }, + "parent_location": [ + { + "end_col": 31, + "end_line": 171, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" + }, + "parent_location": [ + { + "end_col": 15, + "end_line": 176, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" + }, + "start_col": 5, + "start_line": 176 + }, + "While trying to retrieve the implicit argument 'pedersen_ptr' in:" + ], + "start_col": 5, + "start_line": 171 + }, + "While expanding the reference 'pedersen_ptr' in:" + ], + "start_col": 5, + "start_line": 175 + }, + "While trying to update the implicit return value 'pedersen_ptr' in:" + ], + "start_col": 36, + "start_line": 21 + } + }, + "2310": { + "accessible_scopes": [ + "openzeppelin.token.erc721.enumerable.library", + "openzeppelin.token.erc721.enumerable.library._add_token_to_owner_enumeration" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 34, + "end_line": 21, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721Enumerable_owned_tokens_index/decl.cairo" + }, + "parent_location": [ + { + "end_col": 64, + "end_line": 175, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" + }, + "parent_location": [ + { + "end_col": 51, + "end_line": 171, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" + }, + "parent_location": [ + { + "end_col": 15, + "end_line": 176, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" + }, + "start_col": 5, + "start_line": 176 + }, + "While trying to retrieve the implicit argument 'syscall_ptr' in:" + ], + "start_col": 33, + "start_line": 171 + }, + "While expanding the reference 'syscall_ptr' in:" + ], + "start_col": 5, + "start_line": 175 + }, + "While trying to update the implicit return value 'syscall_ptr' in:" + ], + "start_col": 16, + "start_line": 21 + } + }, + "2311": { + "accessible_scopes": [ + "openzeppelin.token.erc721.enumerable.library", + "openzeppelin.token.erc721.enumerable.library._add_token_to_owner_enumeration" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 79, + "end_line": 21, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721Enumerable_owned_tokens_index/decl.cairo" + }, + "parent_location": [ + { + "end_col": 64, + "end_line": 175, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" + }, + "parent_location": [ + { + "end_col": 68, + "end_line": 171, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" + }, + "parent_location": [ + { + "end_col": 15, + "end_line": 176, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" + }, + "start_col": 5, + "start_line": 176 + }, + "While trying to retrieve the implicit argument 'range_check_ptr' in:" + ], + "start_col": 53, + "start_line": 171 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 5, + "start_line": 175 + }, + "While trying to update the implicit return value 'range_check_ptr' in:" + ], + "start_col": 64, + "start_line": 21 + } + }, + "2312": { + "accessible_scopes": [ + "openzeppelin.token.erc721.enumerable.library", + "openzeppelin.token.erc721.enumerable.library._add_token_to_owner_enumeration" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 15, + "end_line": 176, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" + }, + "start_col": 5, + "start_line": 176 + } + }, + "2313": { + "accessible_scopes": [ + "openzeppelin.token.erc721.enumerable.library", + "openzeppelin.token.erc721.enumerable.library._remove_token_from_owner_enumeration" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 18, + "end_line": 182, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" + }, + "start_col": 5, + "start_line": 182 + } + }, + "2315": { + "accessible_scopes": [ + "openzeppelin.token.erc721.enumerable.library", + "openzeppelin.token.erc721.enumerable.library._remove_token_from_owner_enumeration" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 51, + "end_line": 180, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" + }, + "parent_location": [ + { + "end_col": 39, + "end_line": 100, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "parent_location": [ + { + "end_col": 63, + "end_line": 183, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" + }, + "start_col": 39, + "start_line": 183 + }, + "While trying to retrieve the implicit argument 'syscall_ptr' in:" + ], + "start_col": 21, + "start_line": 100 + }, + "While expanding the reference 'syscall_ptr' in:" + ], + "start_col": 33, + "start_line": 180 + } + }, + "2316": { + "accessible_scopes": [ + "openzeppelin.token.erc721.enumerable.library", + "openzeppelin.token.erc721.enumerable.library._remove_token_from_owner_enumeration" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 31, + "end_line": 180, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" + }, + "parent_location": [ + { + "end_col": 67, + "end_line": 100, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "parent_location": [ + { + "end_col": 63, + "end_line": 183, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" + }, + "start_col": 39, + "start_line": 183 + }, + "While trying to retrieve the implicit argument 'pedersen_ptr' in:" + ], + "start_col": 41, + "start_line": 100 + }, + "While expanding the reference 'pedersen_ptr' in:" + ], + "start_col": 5, + "start_line": 180 + } + }, + "2317": { + "accessible_scopes": [ + "openzeppelin.token.erc721.enumerable.library", + "openzeppelin.token.erc721.enumerable.library._remove_token_from_owner_enumeration" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 68, + "end_line": 180, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" + }, + "parent_location": [ + { + "end_col": 84, + "end_line": 100, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "parent_location": [ + { + "end_col": 63, + "end_line": 183, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" + }, + "start_col": 39, + "start_line": 183 + }, + "While trying to retrieve the implicit argument 'range_check_ptr' in:" + ], + "start_col": 69, + "start_line": 100 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 53, + "start_line": 180 + } + }, + "2318": { + "accessible_scopes": [ + "openzeppelin.token.erc721.enumerable.library", + "openzeppelin.token.erc721.enumerable.library._remove_token_from_owner_enumeration" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 14, + "end_line": 181, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" + }, + "parent_location": [ + { + "end_col": 62, + "end_line": 183, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" + }, + "start_col": 57, + "start_line": 183 + }, + "While expanding the reference 'from_' in:" + ], + "start_col": 3, + "start_line": 181 + } + }, + "2319": { + "accessible_scopes": [ + "openzeppelin.token.erc721.enumerable.library", + "openzeppelin.token.erc721.enumerable.library._remove_token_from_owner_enumeration" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 63, + "end_line": 183, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" + }, + "start_col": 39, + "start_line": 183 + } + }, + "2321": { + "accessible_scopes": [ + "openzeppelin.token.erc721.enumerable.library", + "openzeppelin.token.erc721.enumerable.library._remove_token_from_owner_enumeration" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 76, + "end_line": 185, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" + }, + "start_col": 75, + "start_line": 185 + } + }, + "2323": { + "accessible_scopes": [ + "openzeppelin.token.erc721.enumerable.library", + "openzeppelin.token.erc721.enumerable.library._remove_token_from_owner_enumeration" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 79, + "end_line": 185, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" + }, + "start_col": 78, + "start_line": 185 + } + }, + "2325": { + "accessible_scopes": [ + "openzeppelin.token.erc721.enumerable.library", + "openzeppelin.token.erc721.enumerable.library._remove_token_from_owner_enumeration" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 81, + "end_line": 185, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" + }, + "start_col": 30, + "start_line": 185 + } + }, + "2327": { + "accessible_scopes": [ + "openzeppelin.token.erc721.enumerable.library", + "openzeppelin.token.erc721.enumerable.library._remove_token_from_owner_enumeration" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 26, + "end_line": 185, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" + }, + "parent_location": [ + { + "end_col": 26, + "end_line": 185, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" + }, + "start_col": 10, + "start_line": 185 + }, + "While auto generating local variable for 'last_token_index'." + ], + "start_col": 10, + "start_line": 185 + } + }, + "2328": { + "accessible_scopes": [ + "openzeppelin.token.erc721.enumerable.library", + "openzeppelin.token.erc721.enumerable.library._remove_token_from_owner_enumeration" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 26, + "end_line": 185, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" + }, + "parent_location": [ + { + "end_col": 26, + "end_line": 185, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" + }, + "start_col": 10, + "start_line": 185 + }, + "While auto generating local variable for 'last_token_index'." + ], + "start_col": 10, + "start_line": 185 + } + }, + "2329": { + "accessible_scopes": [ + "openzeppelin.token.erc721.enumerable.library", + "openzeppelin.token.erc721.enumerable.library._remove_token_from_owner_enumeration" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 39, + "end_line": 100, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "parent_location": [ + { + "end_col": 63, + "end_line": 183, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" + }, + "parent_location": [ + { + "end_col": 33, + "end_line": 13, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721Enumerable_owned_tokens_index/decl.cairo" + }, + "parent_location": [ + { + "end_col": 84, + "end_line": 186, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" + }, + "start_col": 34, + "start_line": 186 + }, + "While trying to retrieve the implicit argument 'syscall_ptr' in:" + ], + "start_col": 15, + "start_line": 13 + }, + "While expanding the reference 'syscall_ptr' in:" + ], + "start_col": 39, + "start_line": 183 + }, + "While trying to update the implicit return value 'syscall_ptr' in:" + ], + "start_col": 21, + "start_line": 100 + } + }, + "2330": { + "accessible_scopes": [ + "openzeppelin.token.erc721.enumerable.library", + "openzeppelin.token.erc721.enumerable.library._remove_token_from_owner_enumeration" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 67, + "end_line": 100, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "parent_location": [ + { + "end_col": 63, + "end_line": 183, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" + }, + "parent_location": [ + { + "end_col": 61, + "end_line": 13, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721Enumerable_owned_tokens_index/decl.cairo" + }, + "parent_location": [ + { + "end_col": 84, + "end_line": 186, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" + }, + "start_col": 34, + "start_line": 186 + }, + "While trying to retrieve the implicit argument 'pedersen_ptr' in:" + ], + "start_col": 35, + "start_line": 13 + }, + "While expanding the reference 'pedersen_ptr' in:" + ], + "start_col": 39, + "start_line": 183 + }, + "While trying to update the implicit return value 'pedersen_ptr' in:" + ], + "start_col": 41, + "start_line": 100 + } + }, + "2331": { + "accessible_scopes": [ + "openzeppelin.token.erc721.enumerable.library", + "openzeppelin.token.erc721.enumerable.library._remove_token_from_owner_enumeration" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 32, + "end_line": 35, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/security/safemath/library.cairo" + }, + "parent_location": [ + { + "end_col": 81, + "end_line": 185, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" + }, + "parent_location": [ + { + "end_col": 78, + "end_line": 13, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721Enumerable_owned_tokens_index/decl.cairo" + }, + "parent_location": [ + { + "end_col": 84, + "end_line": 186, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" + }, + "start_col": 34, + "start_line": 186 + }, + "While trying to retrieve the implicit argument 'range_check_ptr' in:" + ], + "start_col": 63, + "start_line": 13 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 30, + "start_line": 185 + }, + "While trying to update the implicit return value 'range_check_ptr' in:" + ], + "start_col": 17, + "start_line": 35 + } + }, + "2332": { + "accessible_scopes": [ + "openzeppelin.token.erc721.enumerable.library", + "openzeppelin.token.erc721.enumerable.library._remove_token_from_owner_enumeration" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 33, + "end_line": 181, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" + }, + "parent_location": [ + { + "end_col": 83, + "end_line": 186, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" + }, + "start_col": 75, + "start_line": 186 + }, + "While expanding the reference 'token_id' in:" + ], + "start_col": 16, + "start_line": 181 + } + }, + "2333": { + "accessible_scopes": [ + "openzeppelin.token.erc721.enumerable.library", + "openzeppelin.token.erc721.enumerable.library._remove_token_from_owner_enumeration" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 33, + "end_line": 181, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" + }, + "parent_location": [ + { + "end_col": 83, + "end_line": 186, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" + }, + "start_col": 75, + "start_line": 186 + }, + "While expanding the reference 'token_id' in:" + ], + "start_col": 16, + "start_line": 181 + } + }, + "2334": { + "accessible_scopes": [ + "openzeppelin.token.erc721.enumerable.library", + "openzeppelin.token.erc721.enumerable.library._remove_token_from_owner_enumeration" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 84, + "end_line": 186, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" + }, + "start_col": 34, + "start_line": 186 + } + }, + "2336": { + "accessible_scopes": [ + "openzeppelin.token.erc721.enumerable.library", + "openzeppelin.token.erc721.enumerable.library._remove_token_from_owner_enumeration" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 33, + "end_line": 13, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721Enumerable_owned_tokens_index/decl.cairo" + }, + "parent_location": [ + { + "end_col": 84, + "end_line": 186, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" + }, + "parent_location": [ + { + "end_col": 33, + "end_line": 13, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721Enumerable_owned_tokens_index/decl.cairo" + }, + "parent_location": [ + { + "end_col": 84, + "end_line": 186, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" + }, + "start_col": 34, + "start_line": 186 + }, + "While trying to update the implicit return value 'syscall_ptr' in:" + ], + "start_col": 15, + "start_line": 13 + }, + "While auto generating local variable for 'syscall_ptr'." + ], + "start_col": 34, + "start_line": 186 + }, + "While trying to update the implicit return value 'syscall_ptr' in:" + ], + "start_col": 15, + "start_line": 13 + } + }, + "2337": { + "accessible_scopes": [ + "openzeppelin.token.erc721.enumerable.library", + "openzeppelin.token.erc721.enumerable.library._remove_token_from_owner_enumeration" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 61, + "end_line": 13, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721Enumerable_owned_tokens_index/decl.cairo" + }, + "parent_location": [ + { + "end_col": 84, + "end_line": 186, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" + }, + "parent_location": [ + { + "end_col": 61, + "end_line": 13, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721Enumerable_owned_tokens_index/decl.cairo" + }, + "parent_location": [ + { + "end_col": 84, + "end_line": 186, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" + }, + "start_col": 34, + "start_line": 186 + }, + "While trying to update the implicit return value 'pedersen_ptr' in:" + ], + "start_col": 35, + "start_line": 13 + }, + "While auto generating local variable for 'pedersen_ptr'." + ], + "start_col": 34, + "start_line": 186 + }, + "While trying to update the implicit return value 'pedersen_ptr' in:" + ], + "start_col": 35, + "start_line": 13 + } + }, + "2338": { + "accessible_scopes": [ + "openzeppelin.token.erc721.enumerable.library", + "openzeppelin.token.erc721.enumerable.library._remove_token_from_owner_enumeration" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 30, + "end_line": 186, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" + }, + "parent_location": [ + { + "end_col": 30, + "end_line": 186, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" + }, + "start_col": 10, + "start_line": 186 + }, + "While auto generating local variable for 'token_index'." + ], + "start_col": 10, + "start_line": 186 + } + }, + "2339": { + "accessible_scopes": [ + "openzeppelin.token.erc721.enumerable.library", + "openzeppelin.token.erc721.enumerable.library._remove_token_from_owner_enumeration" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 30, + "end_line": 186, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" + }, + "parent_location": [ + { + "end_col": 30, + "end_line": 186, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" + }, + "start_col": 10, + "start_line": 186 + }, + "While auto generating local variable for 'token_index'." + ], + "start_col": 10, + "start_line": 186 + } + }, + "2340": { + "accessible_scopes": [ + "openzeppelin.token.erc721.enumerable.library", + "openzeppelin.token.erc721.enumerable.library._remove_token_from_owner_enumeration" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 78, + "end_line": 13, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721Enumerable_owned_tokens_index/decl.cairo" + }, + "parent_location": [ + { + "end_col": 84, + "end_line": 186, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" + }, + "parent_location": [ + { + "end_col": 32, + "end_line": 357, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/uint256.cairo" + }, + "parent_location": [ + { + "end_col": 63, + "end_line": 189, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" + }, + "start_col": 22, + "start_line": 189 + }, + "While trying to retrieve the implicit argument 'range_check_ptr' in:" + ], + "start_col": 17, + "start_line": 357 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 34, + "start_line": 186 + }, + "While trying to update the implicit return value 'range_check_ptr' in:" + ], + "start_col": 63, + "start_line": 13 + } + }, + "2341": { + "accessible_scopes": [ + "openzeppelin.token.erc721.enumerable.library", + "openzeppelin.token.erc721.enumerable.library._remove_token_from_owner_enumeration" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 30, + "end_line": 186, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" + }, + "parent_location": [ + { + "end_col": 30, + "end_line": 186, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" + }, + "parent_location": [ + { + "end_col": 44, + "end_line": 189, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" + }, + "start_col": 33, + "start_line": 189 + }, + "While expanding the reference 'token_index' in:" + ], + "start_col": 10, + "start_line": 186 + }, + "While auto generating local variable for 'token_index'." + ], + "start_col": 10, + "start_line": 186 + } + }, + "2342": { + "accessible_scopes": [ + "openzeppelin.token.erc721.enumerable.library", + "openzeppelin.token.erc721.enumerable.library._remove_token_from_owner_enumeration" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 30, + "end_line": 186, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" + }, + "parent_location": [ + { + "end_col": 30, + "end_line": 186, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" + }, + "parent_location": [ + { + "end_col": 44, + "end_line": 189, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" + }, + "start_col": 33, + "start_line": 189 + }, + "While expanding the reference 'token_index' in:" + ], + "start_col": 10, + "start_line": 186 + }, + "While auto generating local variable for 'token_index'." + ], + "start_col": 10, + "start_line": 186 + } + }, + "2343": { + "accessible_scopes": [ + "openzeppelin.token.erc721.enumerable.library", + "openzeppelin.token.erc721.enumerable.library._remove_token_from_owner_enumeration" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 26, + "end_line": 185, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" + }, + "parent_location": [ + { + "end_col": 26, + "end_line": 185, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" + }, + "parent_location": [ + { + "end_col": 62, + "end_line": 189, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" + }, + "start_col": 46, + "start_line": 189 + }, + "While expanding the reference 'last_token_index' in:" + ], + "start_col": 10, + "start_line": 185 + }, + "While auto generating local variable for 'last_token_index'." + ], + "start_col": 10, + "start_line": 185 + } + }, + "2344": { + "accessible_scopes": [ + "openzeppelin.token.erc721.enumerable.library", + "openzeppelin.token.erc721.enumerable.library._remove_token_from_owner_enumeration" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 26, + "end_line": 185, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" + }, + "parent_location": [ + { + "end_col": 26, + "end_line": 185, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" + }, + "parent_location": [ + { + "end_col": 62, + "end_line": 189, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" + }, + "start_col": 46, + "start_line": 189 + }, + "While expanding the reference 'last_token_index' in:" + ], + "start_col": 10, + "start_line": 185 + }, + "While auto generating local variable for 'last_token_index'." + ], + "start_col": 10, + "start_line": 185 + } + }, + "2345": { + "accessible_scopes": [ + "openzeppelin.token.erc721.enumerable.library", + "openzeppelin.token.erc721.enumerable.library._remove_token_from_owner_enumeration" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 63, + "end_line": 189, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" + }, + "start_col": 22, + "start_line": 189 + } + }, + "2347": { + "accessible_scopes": [ + "openzeppelin.token.erc721.enumerable.library", + "openzeppelin.token.erc721.enumerable.library._remove_token_from_owner_enumeration" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 25, + "end_line": 190, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" + }, + "start_col": 9, + "start_line": 190 + } + }, + "2349": { + "accessible_scopes": [ + "openzeppelin.token.erc721.enumerable.library", + "openzeppelin.token.erc721.enumerable.library._remove_token_from_owner_enumeration" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 7, + "end_line": 190, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" + }, + "start_col": 5, + "start_line": 190 + } + }, + "2351": { + "accessible_scopes": [ + "openzeppelin.token.erc721.enumerable.library", + "openzeppelin.token.erc721.enumerable.library._remove_token_from_owner_enumeration" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 33, + "end_line": 13, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721Enumerable_owned_tokens_index/decl.cairo" + }, + "parent_location": [ + { + "end_col": 84, + "end_line": 186, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" + }, + "parent_location": [ + { + "end_col": 33, + "end_line": 13, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721Enumerable_owned_tokens_index/decl.cairo" + }, + "parent_location": [ + { + "end_col": 84, + "end_line": 186, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" + }, + "parent_location": [ + { + "end_col": 34, + "end_line": 21, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721Enumerable_owned_tokens_index/decl.cairo" + }, + "parent_location": [ + { + "end_col": 75, + "end_line": 191, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" + }, + "start_col": 9, + "start_line": 191 + }, + "While trying to retrieve the implicit argument 'syscall_ptr' in:" + ], + "start_col": 16, + "start_line": 21 + }, + "While expanding the reference 'syscall_ptr' in:" + ], + "start_col": 34, + "start_line": 186 + }, + "While trying to update the implicit return value 'syscall_ptr' in:" + ], + "start_col": 15, + "start_line": 13 + }, + "While auto generating local variable for 'syscall_ptr'." + ], + "start_col": 34, + "start_line": 186 + }, + "While trying to update the implicit return value 'syscall_ptr' in:" + ], + "start_col": 15, + "start_line": 13 + } + }, + "2352": { + "accessible_scopes": [ + "openzeppelin.token.erc721.enumerable.library", + "openzeppelin.token.erc721.enumerable.library._remove_token_from_owner_enumeration" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 61, + "end_line": 13, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721Enumerable_owned_tokens_index/decl.cairo" + }, + "parent_location": [ + { + "end_col": 84, + "end_line": 186, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" + }, + "parent_location": [ + { + "end_col": 61, + "end_line": 13, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721Enumerable_owned_tokens_index/decl.cairo" + }, + "parent_location": [ + { + "end_col": 84, + "end_line": 186, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" + }, + "parent_location": [ + { + "end_col": 62, + "end_line": 21, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721Enumerable_owned_tokens_index/decl.cairo" + }, + "parent_location": [ + { + "end_col": 75, + "end_line": 191, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" + }, + "start_col": 9, + "start_line": 191 + }, + "While trying to retrieve the implicit argument 'pedersen_ptr' in:" + ], + "start_col": 36, + "start_line": 21 + }, + "While expanding the reference 'pedersen_ptr' in:" + ], + "start_col": 34, + "start_line": 186 + }, + "While trying to update the implicit return value 'pedersen_ptr' in:" + ], + "start_col": 35, + "start_line": 13 + }, + "While auto generating local variable for 'pedersen_ptr'." + ], + "start_col": 34, + "start_line": 186 + }, + "While trying to update the implicit return value 'pedersen_ptr' in:" + ], + "start_col": 35, + "start_line": 13 + } + }, + "2353": { + "accessible_scopes": [ + "openzeppelin.token.erc721.enumerable.library", + "openzeppelin.token.erc721.enumerable.library._remove_token_from_owner_enumeration" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 32, + "end_line": 357, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/uint256.cairo" + }, + "parent_location": [ + { + "end_col": 63, + "end_line": 189, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" + }, + "parent_location": [ + { + "end_col": 79, + "end_line": 21, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721Enumerable_owned_tokens_index/decl.cairo" + }, + "parent_location": [ + { + "end_col": 75, + "end_line": 191, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" + }, + "start_col": 9, + "start_line": 191 + }, + "While trying to retrieve the implicit argument 'range_check_ptr' in:" + ], + "start_col": 64, + "start_line": 21 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 22, + "start_line": 189 + }, + "While trying to update the implicit return value 'range_check_ptr' in:" + ], + "start_col": 17, + "start_line": 357 + } + }, + "2354": { + "accessible_scopes": [ + "openzeppelin.token.erc721.enumerable.library", + "openzeppelin.token.erc721.enumerable.library._remove_token_from_owner_enumeration" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 33, + "end_line": 181, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" + }, + "parent_location": [ + { + "end_col": 59, + "end_line": 191, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" + }, + "start_col": 51, + "start_line": 191 + }, + "While expanding the reference 'token_id' in:" + ], + "start_col": 16, + "start_line": 181 + } + }, + "2355": { + "accessible_scopes": [ + "openzeppelin.token.erc721.enumerable.library", + "openzeppelin.token.erc721.enumerable.library._remove_token_from_owner_enumeration" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 33, + "end_line": 181, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" + }, + "parent_location": [ + { + "end_col": 59, + "end_line": 191, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" + }, + "start_col": 51, + "start_line": 191 + }, + "While expanding the reference 'token_id' in:" + ], + "start_col": 16, + "start_line": 181 + } + }, + "2356": { + "accessible_scopes": [ + "openzeppelin.token.erc721.enumerable.library", + "openzeppelin.token.erc721.enumerable.library._remove_token_from_owner_enumeration" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 70, + "end_line": 191, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" + }, + "start_col": 69, + "start_line": 191 + } + }, + "2358": { + "accessible_scopes": [ + "openzeppelin.token.erc721.enumerable.library", + "openzeppelin.token.erc721.enumerable.library._remove_token_from_owner_enumeration" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 73, + "end_line": 191, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" + }, + "start_col": 72, + "start_line": 191 + } + }, + "2360": { + "accessible_scopes": [ + "openzeppelin.token.erc721.enumerable.library", + "openzeppelin.token.erc721.enumerable.library._remove_token_from_owner_enumeration" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 75, + "end_line": 191, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" + }, + "start_col": 9, + "start_line": 191 + } + }, + "2362": { + "accessible_scopes": [ + "openzeppelin.token.erc721.enumerable.library", + "openzeppelin.token.erc721.enumerable.library._remove_token_from_owner_enumeration" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 14, + "end_line": 181, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" + }, + "parent_location": [ + { + "end_col": 50, + "end_line": 192, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" + }, + "start_col": 45, + "start_line": 192 + }, + "While expanding the reference 'from_' in:" + ], + "start_col": 3, + "start_line": 181 + } + }, + "2363": { + "accessible_scopes": [ + "openzeppelin.token.erc721.enumerable.library", + "openzeppelin.token.erc721.enumerable.library._remove_token_from_owner_enumeration" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 26, + "end_line": 185, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" + }, + "parent_location": [ + { + "end_col": 26, + "end_line": 185, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" + }, + "parent_location": [ + { + "end_col": 68, + "end_line": 192, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" + }, + "start_col": 52, + "start_line": 192 + }, + "While expanding the reference 'last_token_index' in:" + ], + "start_col": 10, + "start_line": 185 + }, + "While auto generating local variable for 'last_token_index'." + ], + "start_col": 10, + "start_line": 185 + } + }, + "2364": { + "accessible_scopes": [ + "openzeppelin.token.erc721.enumerable.library", + "openzeppelin.token.erc721.enumerable.library._remove_token_from_owner_enumeration" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 26, + "end_line": 185, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" + }, + "parent_location": [ + { + "end_col": 26, + "end_line": 185, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" + }, + "parent_location": [ + { + "end_col": 68, + "end_line": 192, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" + }, + "start_col": 52, + "start_line": 192 + }, + "While expanding the reference 'last_token_index' in:" + ], + "start_col": 10, + "start_line": 185 + }, + "While auto generating local variable for 'last_token_index'." + ], + "start_col": 10, + "start_line": 185 + } + }, + "2365": { + "accessible_scopes": [ + "openzeppelin.token.erc721.enumerable.library", + "openzeppelin.token.erc721.enumerable.library._remove_token_from_owner_enumeration" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 79, + "end_line": 192, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" + }, + "start_col": 78, + "start_line": 192 + } + }, + "2367": { + "accessible_scopes": [ + "openzeppelin.token.erc721.enumerable.library", + "openzeppelin.token.erc721.enumerable.library._remove_token_from_owner_enumeration" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 82, + "end_line": 192, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" + }, + "start_col": 81, + "start_line": 192 + } + }, + "2369": { + "accessible_scopes": [ + "openzeppelin.token.erc721.enumerable.library", + "openzeppelin.token.erc721.enumerable.library._remove_token_from_owner_enumeration" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 84, + "end_line": 192, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" + }, + "start_col": 9, + "start_line": 192 + } + }, + "2371": { + "accessible_scopes": [ + "openzeppelin.token.erc721.enumerable.library", + "openzeppelin.token.erc721.enumerable.library._remove_token_from_owner_enumeration" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 62, + "end_line": 23, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721Enumerable_owned_tokens/decl.cairo" + }, + "parent_location": [ + { + "end_col": 84, + "end_line": 192, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" + }, + "parent_location": [ + { + "end_col": 31, + "end_line": 180, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" + }, + "parent_location": [ + { + "end_col": 19, + "end_line": 193, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" + }, + "start_col": 9, + "start_line": 193 + }, + "While trying to retrieve the implicit argument 'pedersen_ptr' in:" + ], + "start_col": 5, + "start_line": 180 + }, + "While expanding the reference 'pedersen_ptr' in:" + ], + "start_col": 9, + "start_line": 192 + }, + "While trying to update the implicit return value 'pedersen_ptr' in:" + ], + "start_col": 36, + "start_line": 23 + } + }, + "2372": { + "accessible_scopes": [ + "openzeppelin.token.erc721.enumerable.library", + "openzeppelin.token.erc721.enumerable.library._remove_token_from_owner_enumeration" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 34, + "end_line": 23, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721Enumerable_owned_tokens/decl.cairo" + }, + "parent_location": [ + { + "end_col": 84, + "end_line": 192, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" + }, + "parent_location": [ + { + "end_col": 51, + "end_line": 180, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" + }, + "parent_location": [ + { + "end_col": 19, + "end_line": 193, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" + }, + "start_col": 9, + "start_line": 193 + }, + "While trying to retrieve the implicit argument 'syscall_ptr' in:" + ], + "start_col": 33, + "start_line": 180 + }, + "While expanding the reference 'syscall_ptr' in:" + ], + "start_col": 9, + "start_line": 192 + }, + "While trying to update the implicit return value 'syscall_ptr' in:" + ], + "start_col": 16, + "start_line": 23 + } + }, + "2373": { + "accessible_scopes": [ + "openzeppelin.token.erc721.enumerable.library", + "openzeppelin.token.erc721.enumerable.library._remove_token_from_owner_enumeration" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 79, + "end_line": 23, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721Enumerable_owned_tokens/decl.cairo" + }, + "parent_location": [ + { + "end_col": 84, + "end_line": 192, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" + }, + "parent_location": [ + { + "end_col": 68, + "end_line": 180, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" + }, + "parent_location": [ + { + "end_col": 19, + "end_line": 193, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" + }, + "start_col": 9, + "start_line": 193 + }, + "While trying to retrieve the implicit argument 'range_check_ptr' in:" + ], + "start_col": 53, + "start_line": 180 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 9, + "start_line": 192 + }, + "While trying to update the implicit return value 'range_check_ptr' in:" + ], + "start_col": 64, + "start_line": 23 + } + }, + "2374": { + "accessible_scopes": [ + "openzeppelin.token.erc721.enumerable.library", + "openzeppelin.token.erc721.enumerable.library._remove_token_from_owner_enumeration" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 19, + "end_line": 193, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" + }, + "start_col": 9, + "start_line": 193 + } + }, + "2375": { + "accessible_scopes": [ + "openzeppelin.token.erc721.enumerable.library", + "openzeppelin.token.erc721.enumerable.library._remove_token_from_owner_enumeration" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 33, + "end_line": 13, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721Enumerable_owned_tokens_index/decl.cairo" + }, + "parent_location": [ + { + "end_col": 84, + "end_line": 186, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" + }, + "parent_location": [ + { + "end_col": 33, + "end_line": 13, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721Enumerable_owned_tokens_index/decl.cairo" + }, + "parent_location": [ + { + "end_col": 84, + "end_line": 186, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" + }, + "parent_location": [ + { + "end_col": 33, + "end_line": 15, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721Enumerable_owned_tokens/decl.cairo" + }, + "parent_location": [ + { + "end_col": 95, + "end_line": 197, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" + }, + "start_col": 36, + "start_line": 197 + }, + "While trying to retrieve the implicit argument 'syscall_ptr' in:" + ], + "start_col": 15, + "start_line": 15 + }, + "While expanding the reference 'syscall_ptr' in:" + ], + "start_col": 34, + "start_line": 186 + }, + "While trying to update the implicit return value 'syscall_ptr' in:" + ], + "start_col": 15, + "start_line": 13 + }, + "While auto generating local variable for 'syscall_ptr'." + ], + "start_col": 34, + "start_line": 186 + }, + "While trying to update the implicit return value 'syscall_ptr' in:" + ], + "start_col": 15, + "start_line": 13 + } + }, + "2376": { + "accessible_scopes": [ + "openzeppelin.token.erc721.enumerable.library", + "openzeppelin.token.erc721.enumerable.library._remove_token_from_owner_enumeration" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 61, + "end_line": 13, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721Enumerable_owned_tokens_index/decl.cairo" + }, + "parent_location": [ + { + "end_col": 84, + "end_line": 186, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" + }, + "parent_location": [ + { + "end_col": 61, + "end_line": 13, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721Enumerable_owned_tokens_index/decl.cairo" + }, + "parent_location": [ + { + "end_col": 84, + "end_line": 186, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" + }, + "parent_location": [ + { + "end_col": 61, + "end_line": 15, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721Enumerable_owned_tokens/decl.cairo" + }, + "parent_location": [ + { + "end_col": 95, + "end_line": 197, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" + }, + "start_col": 36, + "start_line": 197 + }, + "While trying to retrieve the implicit argument 'pedersen_ptr' in:" + ], + "start_col": 35, + "start_line": 15 + }, + "While expanding the reference 'pedersen_ptr' in:" + ], + "start_col": 34, + "start_line": 186 + }, + "While trying to update the implicit return value 'pedersen_ptr' in:" + ], + "start_col": 35, + "start_line": 13 + }, + "While auto generating local variable for 'pedersen_ptr'." + ], + "start_col": 34, + "start_line": 186 + }, + "While trying to update the implicit return value 'pedersen_ptr' in:" + ], + "start_col": 35, + "start_line": 13 + } + }, + "2377": { + "accessible_scopes": [ + "openzeppelin.token.erc721.enumerable.library", + "openzeppelin.token.erc721.enumerable.library._remove_token_from_owner_enumeration" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 32, + "end_line": 357, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/uint256.cairo" + }, + "parent_location": [ + { + "end_col": 63, + "end_line": 189, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" + }, + "parent_location": [ + { + "end_col": 78, + "end_line": 15, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721Enumerable_owned_tokens/decl.cairo" + }, + "parent_location": [ + { + "end_col": 95, + "end_line": 197, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" + }, + "start_col": 36, + "start_line": 197 + }, + "While trying to retrieve the implicit argument 'range_check_ptr' in:" + ], + "start_col": 63, + "start_line": 15 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 22, + "start_line": 189 + }, + "While trying to update the implicit return value 'range_check_ptr' in:" + ], + "start_col": 17, + "start_line": 357 + } + }, + "2378": { + "accessible_scopes": [ + "openzeppelin.token.erc721.enumerable.library", + "openzeppelin.token.erc721.enumerable.library._remove_token_from_owner_enumeration" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 14, + "end_line": 181, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" + }, + "parent_location": [ + { + "end_col": 76, + "end_line": 197, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" + }, + "start_col": 71, + "start_line": 197 + }, + "While expanding the reference 'from_' in:" + ], + "start_col": 3, + "start_line": 181 + } + }, + "2379": { + "accessible_scopes": [ + "openzeppelin.token.erc721.enumerable.library", + "openzeppelin.token.erc721.enumerable.library._remove_token_from_owner_enumeration" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 26, + "end_line": 185, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" + }, + "parent_location": [ + { + "end_col": 26, + "end_line": 185, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" + }, + "parent_location": [ + { + "end_col": 94, + "end_line": 197, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" + }, + "start_col": 78, + "start_line": 197 + }, + "While expanding the reference 'last_token_index' in:" + ], + "start_col": 10, + "start_line": 185 + }, + "While auto generating local variable for 'last_token_index'." + ], + "start_col": 10, + "start_line": 185 + } + }, + "2380": { + "accessible_scopes": [ + "openzeppelin.token.erc721.enumerable.library", + "openzeppelin.token.erc721.enumerable.library._remove_token_from_owner_enumeration" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 26, + "end_line": 185, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" + }, + "parent_location": [ + { + "end_col": 26, + "end_line": 185, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" + }, + "parent_location": [ + { + "end_col": 94, + "end_line": 197, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" + }, + "start_col": 78, + "start_line": 197 + }, + "While expanding the reference 'last_token_index' in:" + ], + "start_col": 10, + "start_line": 185 + }, + "While auto generating local variable for 'last_token_index'." + ], + "start_col": 10, + "start_line": 185 + } + }, + "2381": { + "accessible_scopes": [ + "openzeppelin.token.erc721.enumerable.library", + "openzeppelin.token.erc721.enumerable.library._remove_token_from_owner_enumeration" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 95, + "end_line": 197, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" + }, + "start_col": 36, + "start_line": 197 + } + }, + "2383": { + "accessible_scopes": [ + "openzeppelin.token.erc721.enumerable.library", + "openzeppelin.token.erc721.enumerable.library._remove_token_from_owner_enumeration" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 33, + "end_line": 15, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721Enumerable_owned_tokens/decl.cairo" + }, + "parent_location": [ + { + "end_col": 95, + "end_line": 197, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" + }, + "parent_location": [ + { + "end_col": 34, + "end_line": 23, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721Enumerable_owned_tokens/decl.cairo" + }, + "parent_location": [ + { + "end_col": 75, + "end_line": 198, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" + }, + "start_col": 5, + "start_line": 198 + }, + "While trying to retrieve the implicit argument 'syscall_ptr' in:" + ], + "start_col": 16, + "start_line": 23 + }, + "While expanding the reference 'syscall_ptr' in:" + ], + "start_col": 36, + "start_line": 197 + }, + "While trying to update the implicit return value 'syscall_ptr' in:" + ], + "start_col": 15, + "start_line": 15 + } + }, + "2384": { + "accessible_scopes": [ + "openzeppelin.token.erc721.enumerable.library", + "openzeppelin.token.erc721.enumerable.library._remove_token_from_owner_enumeration" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 61, + "end_line": 15, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721Enumerable_owned_tokens/decl.cairo" + }, + "parent_location": [ + { + "end_col": 95, + "end_line": 197, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" + }, + "parent_location": [ + { + "end_col": 62, + "end_line": 23, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721Enumerable_owned_tokens/decl.cairo" + }, + "parent_location": [ + { + "end_col": 75, + "end_line": 198, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" + }, + "start_col": 5, + "start_line": 198 + }, + "While trying to retrieve the implicit argument 'pedersen_ptr' in:" + ], + "start_col": 36, + "start_line": 23 + }, + "While expanding the reference 'pedersen_ptr' in:" + ], + "start_col": 36, + "start_line": 197 + }, + "While trying to update the implicit return value 'pedersen_ptr' in:" + ], + "start_col": 35, + "start_line": 15 + } + }, + "2385": { + "accessible_scopes": [ + "openzeppelin.token.erc721.enumerable.library", + "openzeppelin.token.erc721.enumerable.library._remove_token_from_owner_enumeration" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 78, + "end_line": 15, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721Enumerable_owned_tokens/decl.cairo" + }, + "parent_location": [ + { + "end_col": 95, + "end_line": 197, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" + }, + "parent_location": [ + { + "end_col": 79, + "end_line": 23, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721Enumerable_owned_tokens/decl.cairo" + }, + "parent_location": [ + { + "end_col": 75, + "end_line": 198, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" + }, + "start_col": 5, + "start_line": 198 + }, + "While trying to retrieve the implicit argument 'range_check_ptr' in:" + ], + "start_col": 64, + "start_line": 23 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 36, + "start_line": 197 + }, + "While trying to update the implicit return value 'range_check_ptr' in:" + ], + "start_col": 63, + "start_line": 15 + } + }, + "2386": { + "accessible_scopes": [ + "openzeppelin.token.erc721.enumerable.library", + "openzeppelin.token.erc721.enumerable.library._remove_token_from_owner_enumeration" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 14, + "end_line": 181, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" + }, + "parent_location": [ + { + "end_col": 46, + "end_line": 198, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" + }, + "start_col": 41, + "start_line": 198 + }, + "While expanding the reference 'from_' in:" + ], + "start_col": 3, + "start_line": 181 + } + }, + "2387": { + "accessible_scopes": [ + "openzeppelin.token.erc721.enumerable.library", + "openzeppelin.token.erc721.enumerable.library._remove_token_from_owner_enumeration" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 30, + "end_line": 186, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" + }, + "parent_location": [ + { + "end_col": 30, + "end_line": 186, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" + }, + "parent_location": [ + { + "end_col": 59, + "end_line": 198, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" + }, + "start_col": 48, + "start_line": 198 + }, + "While expanding the reference 'token_index' in:" + ], + "start_col": 10, + "start_line": 186 + }, + "While auto generating local variable for 'token_index'." + ], + "start_col": 10, + "start_line": 186 + } + }, + "2388": { + "accessible_scopes": [ + "openzeppelin.token.erc721.enumerable.library", + "openzeppelin.token.erc721.enumerable.library._remove_token_from_owner_enumeration" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 30, + "end_line": 186, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" + }, + "parent_location": [ + { + "end_col": 30, + "end_line": 186, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" + }, + "parent_location": [ + { + "end_col": 59, + "end_line": 198, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" + }, + "start_col": 48, + "start_line": 198 + }, + "While expanding the reference 'token_index' in:" + ], + "start_col": 10, + "start_line": 186 + }, + "While auto generating local variable for 'token_index'." + ], + "start_col": 10, + "start_line": 186 + } + }, + "2389": { + "accessible_scopes": [ + "openzeppelin.token.erc721.enumerable.library", + "openzeppelin.token.erc721.enumerable.library._remove_token_from_owner_enumeration" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 32, + "end_line": 197, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" + }, + "parent_location": [ + { + "end_col": 74, + "end_line": 198, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" + }, + "start_col": 61, + "start_line": 198 + }, + "While expanding the reference 'last_token_id' in:" + ], + "start_col": 10, + "start_line": 197 + } + }, + "2390": { + "accessible_scopes": [ + "openzeppelin.token.erc721.enumerable.library", + "openzeppelin.token.erc721.enumerable.library._remove_token_from_owner_enumeration" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 32, + "end_line": 197, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" + }, + "parent_location": [ + { + "end_col": 74, + "end_line": 198, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" + }, + "start_col": 61, + "start_line": 198 + }, + "While expanding the reference 'last_token_id' in:" + ], + "start_col": 10, + "start_line": 197 + } + }, + "2391": { + "accessible_scopes": [ + "openzeppelin.token.erc721.enumerable.library", + "openzeppelin.token.erc721.enumerable.library._remove_token_from_owner_enumeration" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 75, + "end_line": 198, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" + }, + "start_col": 5, + "start_line": 198 + } + }, + "2393": { + "accessible_scopes": [ + "openzeppelin.token.erc721.enumerable.library", + "openzeppelin.token.erc721.enumerable.library._remove_token_from_owner_enumeration" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 32, + "end_line": 197, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" + }, + "parent_location": [ + { + "end_col": 60, + "end_line": 199, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" + }, + "start_col": 47, + "start_line": 199 + }, + "While expanding the reference 'last_token_id' in:" + ], + "start_col": 10, + "start_line": 197 + } + }, + "2394": { + "accessible_scopes": [ + "openzeppelin.token.erc721.enumerable.library", + "openzeppelin.token.erc721.enumerable.library._remove_token_from_owner_enumeration" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 32, + "end_line": 197, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" + }, + "parent_location": [ + { + "end_col": 60, + "end_line": 199, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" + }, + "start_col": 47, + "start_line": 199 + }, + "While expanding the reference 'last_token_id' in:" + ], + "start_col": 10, + "start_line": 197 + } + }, + "2395": { + "accessible_scopes": [ + "openzeppelin.token.erc721.enumerable.library", + "openzeppelin.token.erc721.enumerable.library._remove_token_from_owner_enumeration" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 30, + "end_line": 186, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" + }, + "parent_location": [ + { + "end_col": 30, + "end_line": 186, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" + }, + "parent_location": [ + { + "end_col": 73, + "end_line": 199, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" + }, + "start_col": 62, + "start_line": 199 + }, + "While expanding the reference 'token_index' in:" + ], + "start_col": 10, + "start_line": 186 + }, + "While auto generating local variable for 'token_index'." + ], + "start_col": 10, + "start_line": 186 + } + }, + "2396": { + "accessible_scopes": [ + "openzeppelin.token.erc721.enumerable.library", + "openzeppelin.token.erc721.enumerable.library._remove_token_from_owner_enumeration" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 30, + "end_line": 186, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" + }, + "parent_location": [ + { + "end_col": 30, + "end_line": 186, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" + }, + "parent_location": [ + { + "end_col": 73, + "end_line": 199, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" + }, + "start_col": 62, + "start_line": 199 + }, + "While expanding the reference 'token_index' in:" + ], + "start_col": 10, + "start_line": 186 + }, + "While auto generating local variable for 'token_index'." + ], + "start_col": 10, + "start_line": 186 + } + }, + "2397": { + "accessible_scopes": [ + "openzeppelin.token.erc721.enumerable.library", + "openzeppelin.token.erc721.enumerable.library._remove_token_from_owner_enumeration" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 74, + "end_line": 199, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" + }, + "start_col": 5, + "start_line": 199 + } + }, + "2399": { + "accessible_scopes": [ + "openzeppelin.token.erc721.enumerable.library", + "openzeppelin.token.erc721.enumerable.library._remove_token_from_owner_enumeration" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 62, + "end_line": 21, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721Enumerable_owned_tokens_index/decl.cairo" + }, + "parent_location": [ + { + "end_col": 74, + "end_line": 199, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" + }, + "parent_location": [ + { + "end_col": 31, + "end_line": 180, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" + }, + "parent_location": [ + { + "end_col": 15, + "end_line": 200, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" + }, + "start_col": 5, + "start_line": 200 + }, + "While trying to retrieve the implicit argument 'pedersen_ptr' in:" + ], + "start_col": 5, + "start_line": 180 + }, + "While expanding the reference 'pedersen_ptr' in:" + ], + "start_col": 5, + "start_line": 199 + }, + "While trying to update the implicit return value 'pedersen_ptr' in:" + ], + "start_col": 36, + "start_line": 21 + } + }, + "2400": { + "accessible_scopes": [ + "openzeppelin.token.erc721.enumerable.library", + "openzeppelin.token.erc721.enumerable.library._remove_token_from_owner_enumeration" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 34, + "end_line": 21, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721Enumerable_owned_tokens_index/decl.cairo" + }, + "parent_location": [ + { + "end_col": 74, + "end_line": 199, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" + }, + "parent_location": [ + { + "end_col": 51, + "end_line": 180, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" + }, + "parent_location": [ + { + "end_col": 15, + "end_line": 200, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" + }, + "start_col": 5, + "start_line": 200 + }, + "While trying to retrieve the implicit argument 'syscall_ptr' in:" + ], + "start_col": 33, + "start_line": 180 + }, + "While expanding the reference 'syscall_ptr' in:" + ], + "start_col": 5, + "start_line": 199 + }, + "While trying to update the implicit return value 'syscall_ptr' in:" + ], + "start_col": 16, + "start_line": 21 + } + }, + "2401": { + "accessible_scopes": [ + "openzeppelin.token.erc721.enumerable.library", + "openzeppelin.token.erc721.enumerable.library._remove_token_from_owner_enumeration" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 79, + "end_line": 21, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721Enumerable_owned_tokens_index/decl.cairo" + }, + "parent_location": [ + { + "end_col": 74, + "end_line": 199, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" + }, + "parent_location": [ + { + "end_col": 68, + "end_line": 180, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" + }, + "parent_location": [ + { + "end_col": 15, + "end_line": 200, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" + }, + "start_col": 5, + "start_line": 200 + }, + "While trying to retrieve the implicit argument 'range_check_ptr' in:" + ], + "start_col": 53, + "start_line": 180 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 5, + "start_line": 199 + }, + "While trying to update the implicit return value 'range_check_ptr' in:" + ], + "start_col": 64, + "start_line": 21 + } + }, + "2402": { + "accessible_scopes": [ + "openzeppelin.token.erc721.enumerable.library", + "openzeppelin.token.erc721.enumerable.library._remove_token_from_owner_enumeration" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 15, + "end_line": 200, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" + }, + "start_col": 5, + "start_line": 200 + } + }, + "2403": { + "accessible_scopes": [ + "starkware.cairo.common.squash_dict", + "starkware.cairo.common.squash_dict.squash_dict" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 18, + "end_line": 27, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/squash_dict.cairo" + }, + "start_col": 5, + "start_line": 27 + } + }, + "2405": { + "accessible_scopes": [ + "starkware.cairo.common.squash_dict", + "starkware.cairo.common.squash_dict.squash_dict" + ], + "flow_tracking_data": null, + "hints": [ + { + "location": { + "end_col": 27, + "end_line": 28, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/squash_dict.cairo" + }, + "start_col": 5, + "start_line": 28 + }, + "n_prefix_newlines": 0 + } + ], + "inst": { + "end_col": 56, + "end_line": 29, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/squash_dict.cairo" + }, + "start_col": 5, + "start_line": 29 + } + }, + "2406": { + "accessible_scopes": [ + "starkware.cairo.common.squash_dict", + "starkware.cairo.common.squash_dict.squash_dict" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 7, + "end_line": 31, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/squash_dict.cairo" + }, + "start_col": 5, + "start_line": 31 + } + }, + "2408": { + "accessible_scopes": [ + "starkware.cairo.common.squash_dict", + "starkware.cairo.common.squash_dict.squash_dict" + ], + "flow_tracking_data": null, + "hints": [ + { + "location": { + "end_col": 30, + "end_line": 33, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/squash_dict.cairo" + }, + "start_col": 9, + "start_line": 33 + }, + "n_prefix_newlines": 0 + } + ], + "inst": { + "end_col": 33, + "end_line": 24, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/squash_dict.cairo" + }, + "parent_location": [ + { + "end_col": 33, + "end_line": 24, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/squash_dict.cairo" + }, + "parent_location": [ + { + "end_col": 46, + "end_line": 34, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/squash_dict.cairo" + }, + "start_col": 9, + "start_line": 34 + }, + "While trying to retrieve the implicit argument 'range_check_ptr' in:" + ], + "start_col": 18, + "start_line": 24 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 18, + "start_line": 24 + } + }, + "2409": { + "accessible_scopes": [ + "starkware.cairo.common.squash_dict", + "starkware.cairo.common.squash_dict.squash_dict" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 91, + "end_line": 25, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/squash_dict.cairo" + }, + "parent_location": [ + { + "end_col": 44, + "end_line": 34, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/squash_dict.cairo" + }, + "start_col": 31, + "start_line": 34 + }, + "While expanding the reference 'squashed_dict' in:" + ], + "start_col": 65, + "start_line": 25 + } + }, + "2410": { + "accessible_scopes": [ + "starkware.cairo.common.squash_dict", + "starkware.cairo.common.squash_dict.squash_dict" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 46, + "end_line": 34, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/squash_dict.cairo" + }, + "start_col": 9, + "start_line": 34 + } + }, + "2411": { + "accessible_scopes": [ + "starkware.cairo.common.squash_dict", + "starkware.cairo.common.squash_dict.squash_dict" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 52, + "end_line": 38, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/squash_dict.cairo" + }, + "start_col": 26, + "start_line": 38 + } + }, + "2413": { + "accessible_scopes": [ + "starkware.cairo.common.squash_dict", + "starkware.cairo.common.squash_dict.squash_dict" + ], + "flow_tracking_data": null, + "hints": [ + { + "location": { + "end_col": 7, + "end_line": 59, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/squash_dict.cairo" + }, + "start_col": 5, + "start_line": 39 + }, + "n_prefix_newlines": 1 + } + ], + "inst": { + "end_col": 7, + "end_line": 62, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/squash_dict.cairo" + }, + "start_col": 5, + "start_line": 62 + } + }, + "2415": { + "accessible_scopes": [ + "starkware.cairo.common.squash_dict", + "starkware.cairo.common.squash_dict.squash_dict" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 46, + "end_line": 65, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/squash_dict.cairo" + }, + "start_col": 9, + "start_line": 65 + } + }, + "2416": { + "accessible_scopes": [ + "starkware.cairo.common.squash_dict", + "starkware.cairo.common.squash_dict.squash_dict" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 54, + "end_line": 66, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/squash_dict.cairo" + }, + "start_col": 35, + "start_line": 66 + } + }, + "2418": { + "accessible_scopes": [ + "starkware.cairo.common.squash_dict", + "starkware.cairo.common.squash_dict.squash_dict" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 7, + "end_line": 62, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/squash_dict.cairo" + }, + "start_col": 5, + "start_line": 62 + } + }, + "2420": { + "accessible_scopes": [ + "starkware.cairo.common.squash_dict", + "starkware.cairo.common.squash_dict.squash_dict" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 33, + "end_line": 24, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/squash_dict.cairo" + }, + "parent_location": [ + { + "end_col": 50, + "end_line": 63, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/squash_dict.cairo" + }, + "start_col": 35, + "start_line": 63 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 18, + "start_line": 24 + } + }, + "2421": { + "accessible_scopes": [ + "starkware.cairo.common.squash_dict", + "starkware.cairo.common.squash_dict.squash_dict" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 31, + "end_line": 25, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/squash_dict.cairo" + }, + "parent_location": [ + { + "end_col": 36, + "end_line": 70, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/squash_dict.cairo" + }, + "start_col": 23, + "start_line": 70 + }, + "While expanding the reference 'dict_accesses' in:" + ], + "start_col": 5, + "start_line": 25 + } + }, + "2422": { + "accessible_scopes": [ + "starkware.cairo.common.squash_dict", + "starkware.cairo.common.squash_dict.squash_dict" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 55, + "end_line": 71, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/squash_dict.cairo" + }, + "start_col": 34, + "start_line": 71 + } + }, + "2424": { + "accessible_scopes": [ + "starkware.cairo.common.squash_dict", + "starkware.cairo.common.squash_dict.squash_dict" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 20, + "end_line": 36, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/squash_dict.cairo" + }, + "parent_location": [ + { + "end_col": 22, + "end_line": 72, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/squash_dict.cairo" + }, + "start_col": 13, + "start_line": 72 + }, + "While expanding the reference 'first_key' in:" + ], + "start_col": 11, + "start_line": 36 + } + }, + "2425": { + "accessible_scopes": [ + "starkware.cairo.common.squash_dict", + "starkware.cairo.common.squash_dict.squash_dict" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 23, + "end_line": 38, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/squash_dict.cairo" + }, + "parent_location": [ + { + "end_col": 38, + "end_line": 73, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/squash_dict.cairo" + }, + "start_col": 28, + "start_line": 73 + }, + "While expanding the reference 'n_accesses' in:" + ], + "start_col": 13, + "start_line": 38 + } + }, + "2426": { + "accessible_scopes": [ + "starkware.cairo.common.squash_dict", + "starkware.cairo.common.squash_dict.squash_dict" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 91, + "end_line": 25, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/squash_dict.cairo" + }, + "parent_location": [ + { + "end_col": 36, + "end_line": 74, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/squash_dict.cairo" + }, + "start_col": 23, + "start_line": 74 + }, + "While expanding the reference 'squashed_dict' in:" + ], + "start_col": 65, + "start_line": 25 + } + }, + "2427": { + "accessible_scopes": [ + "starkware.cairo.common.squash_dict", + "starkware.cairo.common.squash_dict.squash_dict" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 19, + "end_line": 37, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/squash_dict.cairo" + }, + "parent_location": [ + { + "end_col": 26, + "end_line": 75, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/squash_dict.cairo" + }, + "start_col": 18, + "start_line": 75 + }, + "While expanding the reference 'big_keys' in:" + ], + "start_col": 11, + "start_line": 37 + } + }, + "2428": { + "accessible_scopes": [ + "starkware.cairo.common.squash_dict", + "starkware.cairo.common.squash_dict.squash_dict" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 6, + "end_line": 76, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/squash_dict.cairo" + }, + "start_col": 44, + "start_line": 68 + } + }, + "2430": { + "accessible_scopes": [ + "starkware.cairo.common.squash_dict", + "starkware.cairo.common.squash_dict.squash_dict" + ], + "flow_tracking_data": null, + "hints": [ + { + "location": { + "end_col": 26, + "end_line": 77, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/squash_dict.cairo" + }, + "start_col": 5, + "start_line": 77 + }, + "n_prefix_newlines": 0 + } + ], + "inst": { + "end_col": 42, + "end_line": 78, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/squash_dict.cairo" + }, + "start_col": 5, + "start_line": 78 + } + }, + "2431": { + "accessible_scopes": [ + "starkware.cairo.common.squash_dict", + "starkware.cairo.common.squash_dict.squash_dict_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 18, + "end_line": 110, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/squash_dict.cairo" + }, + "start_col": 5, + "start_line": 110 + } + }, + "2433": { + "accessible_scopes": [ + "starkware.cairo.common.squash_dict", + "starkware.cairo.common.squash_dict.squash_dict_inner" + ], + "flow_tracking_data": null, + "hints": [ + { + "location": { + "end_col": 7, + "end_line": 134, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/squash_dict.cairo" + }, + "start_col": 5, + "start_line": 130 + }, + "n_prefix_newlines": 1 + } + ], + "inst": { + "end_col": 53, + "end_line": 136, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/squash_dict.cairo" + }, + "start_col": 36, + "start_line": 136 + } + }, + "2434": { + "accessible_scopes": [ + "starkware.cairo.common.squash_dict", + "starkware.cairo.common.squash_dict.squash_dict_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 63, + "end_line": 137, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/squash_dict.cairo" + }, + "start_col": 25, + "start_line": 137 + } + }, + "2436": { + "accessible_scopes": [ + "starkware.cairo.common.squash_dict", + "starkware.cairo.common.squash_dict.squash_dict_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 67, + "end_line": 140, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/squash_dict.cairo" + }, + "start_col": 5, + "start_line": 140 + } + }, + "2437": { + "accessible_scopes": [ + "starkware.cairo.common.squash_dict", + "starkware.cairo.common.squash_dict.squash_dict_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 59, + "end_line": 142, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/squash_dict.cairo" + }, + "start_col": 5, + "start_line": 142 + } + }, + "2438": { + "accessible_scopes": [ + "starkware.cairo.common.squash_dict", + "starkware.cairo.common.squash_dict.squash_dict_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 66, + "end_line": 143, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/squash_dict.cairo" + }, + "start_col": 5, + "start_line": 143 + } + }, + "2440": { + "accessible_scopes": [ + "starkware.cairo.common.squash_dict", + "starkware.cairo.common.squash_dict.squash_dict_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 27, + "end_line": 146, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/squash_dict.cairo" + }, + "start_col": 5, + "start_line": 146 + } + }, + "2441": { + "accessible_scopes": [ + "starkware.cairo.common.squash_dict", + "starkware.cairo.common.squash_dict.squash_dict_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 24, + "end_line": 149, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/squash_dict.cairo" + }, + "start_col": 5, + "start_line": 149 + } + }, + "2442": { + "accessible_scopes": [ + "starkware.cairo.common.squash_dict", + "starkware.cairo.common.squash_dict.squash_dict_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 49, + "end_line": 151, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/squash_dict.cairo" + }, + "start_col": 5, + "start_line": 151 + } + }, + "2443": { + "accessible_scopes": [ + "starkware.cairo.common.squash_dict", + "starkware.cairo.common.squash_dict.squash_dict_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 47, + "end_line": 152, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/squash_dict.cairo" + }, + "start_col": 5, + "start_line": 152 + } + }, + "2444": { + "accessible_scopes": [ + "starkware.cairo.common.squash_dict", + "starkware.cairo.common.squash_dict.squash_dict_inner" + ], + "flow_tracking_data": null, + "hints": [ + { + "location": { + "end_col": 68, + "end_line": 160, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/squash_dict.cairo" + }, + "start_col": 5, + "start_line": 160 + }, + "n_prefix_newlines": 0 + } + ], + "inst": { + "end_col": 43, + "end_line": 161, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/squash_dict.cairo" + }, + "start_col": 5, + "start_line": 161 + } + }, + "2446": { + "accessible_scopes": [ + "starkware.cairo.common.squash_dict", + "starkware.cairo.common.squash_dict.squash_dict_inner" + ], + "flow_tracking_data": null, + "hints": [ + { + "location": { + "end_col": 7, + "end_line": 175, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/squash_dict.cairo" + }, + "start_col": 5, + "start_line": 171 + }, + "n_prefix_newlines": 1 + } + ], + "inst": { + "end_col": 77, + "end_line": 177, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/squash_dict.cairo" + }, + "start_col": 5, + "start_line": 177 + } + }, + "2447": { + "accessible_scopes": [ + "starkware.cairo.common.squash_dict", + "starkware.cairo.common.squash_dict.squash_dict_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 69, + "end_line": 178, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/squash_dict.cairo" + }, + "start_col": 5, + "start_line": 178 + } + }, + "2449": { + "accessible_scopes": [ + "starkware.cairo.common.squash_dict", + "starkware.cairo.common.squash_dict.squash_dict_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 74, + "end_line": 179, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/squash_dict.cairo" + }, + "start_col": 5, + "start_line": 179 + } + }, + "2451": { + "accessible_scopes": [ + "starkware.cairo.common.squash_dict", + "starkware.cairo.common.squash_dict.squash_dict_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 86, + "end_line": 180, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/squash_dict.cairo" + }, + "start_col": 5, + "start_line": 180 + } + }, + "2452": { + "accessible_scopes": [ + "starkware.cairo.common.squash_dict", + "starkware.cairo.common.squash_dict.squash_dict_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 47, + "end_line": 184, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/squash_dict.cairo" + }, + "start_col": 5, + "start_line": 184 + } + }, + "2453": { + "accessible_scopes": [ + "starkware.cairo.common.squash_dict", + "starkware.cairo.common.squash_dict.squash_dict_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 47, + "end_line": 185, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/squash_dict.cairo" + }, + "start_col": 5, + "start_line": 185 + } + }, + "2454": { + "accessible_scopes": [ + "starkware.cairo.common.squash_dict", + "starkware.cairo.common.squash_dict.squash_dict_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 21, + "end_line": 188, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/squash_dict.cairo" + }, + "start_col": 5, + "start_line": 188 + } + }, + "2455": { + "accessible_scopes": [ + "starkware.cairo.common.squash_dict", + "starkware.cairo.common.squash_dict.squash_dict_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 77, + "end_line": 191, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/squash_dict.cairo" + }, + "start_col": 5, + "start_line": 191 + } + }, + "2457": { + "accessible_scopes": [ + "starkware.cairo.common.squash_dict", + "starkware.cairo.common.squash_dict.squash_dict_inner" + ], + "flow_tracking_data": null, + "hints": [ + { + "location": { + "end_col": 78, + "end_line": 194, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/squash_dict.cairo" + }, + "start_col": 5, + "start_line": 194 + }, + "n_prefix_newlines": 0 + } + ], + "inst": { + "end_col": 54, + "end_line": 195, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/squash_dict.cairo" + }, + "start_col": 5, + "start_line": 195 + } + }, + "2459": { + "accessible_scopes": [ + "starkware.cairo.common.squash_dict", + "starkware.cairo.common.squash_dict.squash_dict_inner" + ], + "flow_tracking_data": null, + "hints": [ + { + "location": { + "end_col": 50, + "end_line": 201, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/squash_dict.cairo" + }, + "start_col": 5, + "start_line": 201 + }, + "n_prefix_newlines": 0 + } + ], + "inst": { + "end_col": 78, + "end_line": 202, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/squash_dict.cairo" + }, + "start_col": 5, + "start_line": 202 + } + }, + "2460": { + "accessible_scopes": [ + "starkware.cairo.common.squash_dict", + "starkware.cairo.common.squash_dict.squash_dict_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 52, + "end_line": 203, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/squash_dict.cairo" + }, + "start_col": 5, + "start_line": 203 + } + }, + "2461": { + "accessible_scopes": [ + "starkware.cairo.common.squash_dict", + "starkware.cairo.common.squash_dict.squash_dict_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 81, + "end_line": 205, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/squash_dict.cairo" + }, + "start_col": 31, + "start_line": 205 + } + }, + "2462": { + "accessible_scopes": [ + "starkware.cairo.common.squash_dict", + "starkware.cairo.common.squash_dict.squash_dict_inner" + ], + "flow_tracking_data": null, + "hints": [ + { + "location": { + "end_col": 65, + "end_line": 206, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/squash_dict.cairo" + }, + "start_col": 5, + "start_line": 206 + }, + "n_prefix_newlines": 0 + } + ], + "inst": { + "end_col": 49, + "end_line": 209, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/squash_dict.cairo" + }, + "start_col": 5, + "start_line": 209 + } + }, + "2463": { + "accessible_scopes": [ + "starkware.cairo.common.squash_dict", + "starkware.cairo.common.squash_dict.squash_dict_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 70, + "end_line": 212, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/squash_dict.cairo" + }, + "start_col": 34, + "start_line": 212 + } + }, + "2464": { + "accessible_scopes": [ + "starkware.cairo.common.squash_dict", + "starkware.cairo.common.squash_dict.squash_dict_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 7, + "end_line": 215, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/squash_dict.cairo" + }, + "start_col": 5, + "start_line": 215 + } + }, + "2466": { + "accessible_scopes": [ + "starkware.cairo.common.squash_dict", + "starkware.cairo.common.squash_dict.squash_dict_inner" + ], + "flow_tracking_data": null, + "hints": [ + { + "location": { + "end_col": 36, + "end_line": 216, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/squash_dict.cairo" + }, + "start_col": 9, + "start_line": 216 + }, + "n_prefix_newlines": 0 + } + ], + "inst": { + "end_col": 63, + "end_line": 211, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/squash_dict.cairo" + }, + "parent_location": [ + { + "end_col": 48, + "end_line": 217, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/squash_dict.cairo" + }, + "start_col": 33, + "start_line": 217 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 27, + "start_line": 211 + } + }, + "2468": { + "accessible_scopes": [ + "starkware.cairo.common.squash_dict", + "starkware.cairo.common.squash_dict.squash_dict_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 95, + "end_line": 217, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/squash_dict.cairo" + }, + "start_col": 64, + "start_line": 217 + } + }, + "2470": { + "accessible_scopes": [ + "starkware.cairo.common.squash_dict", + "starkware.cairo.common.squash_dict.squash_dict_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 97, + "end_line": 217, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/squash_dict.cairo" + }, + "start_col": 9, + "start_line": 217 + } + }, + "2471": { + "accessible_scopes": [ + "starkware.cairo.common.squash_dict", + "starkware.cairo.common.squash_dict.squash_dict_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 12, + "end_line": 222, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/squash_dict.cairo" + }, + "start_col": 5, + "start_line": 222 + } + }, + "2473": { + "accessible_scopes": [ + "starkware.cairo.common.squash_dict", + "starkware.cairo.common.squash_dict.squash_dict_inner" + ], + "flow_tracking_data": null, + "hints": [ + { + "location": { + "end_col": 7, + "end_line": 227, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/squash_dict.cairo" + }, + "start_col": 5, + "start_line": 224 + }, + "n_prefix_newlines": 1 + } + ], + "inst": { + "end_col": 7, + "end_line": 229, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/squash_dict.cairo" + }, + "start_col": 5, + "start_line": 229 + } + }, + "2475": { + "accessible_scopes": [ + "starkware.cairo.common.squash_dict", + "starkware.cairo.common.squash_dict.squash_dict_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 55, + "end_line": 236, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/squash_dict.cairo" + }, + "start_col": 48, + "start_line": 236 + } + }, + "2477": { + "accessible_scopes": [ + "starkware.cairo.common.squash_dict", + "starkware.cairo.common.squash_dict.squash_dict_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 56, + "end_line": 236, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/squash_dict.cairo" + }, + "start_col": 36, + "start_line": 236 + } + }, + "2478": { + "accessible_scopes": [ + "starkware.cairo.common.squash_dict", + "starkware.cairo.common.squash_dict.squash_dict_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 57, + "end_line": 236, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/squash_dict.cairo" + }, + "start_col": 9, + "start_line": 236 + } + }, + "2479": { + "accessible_scopes": [ + "starkware.cairo.common.squash_dict", + "starkware.cairo.common.squash_dict.squash_dict_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 54, + "end_line": 237, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/squash_dict.cairo" + }, + "start_col": 35, + "start_line": 237 + } + }, + "2481": { + "accessible_scopes": [ + "starkware.cairo.common.squash_dict", + "starkware.cairo.common.squash_dict.squash_dict_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 31, + "end_line": 103, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/squash_dict.cairo" + }, + "parent_location": [ + { + "end_col": 46, + "end_line": 238, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/squash_dict.cairo" + }, + "start_col": 33, + "start_line": 238 + }, + "While expanding the reference 'dict_accesses' in:" + ], + "start_col": 5, + "start_line": 103 + } + }, + "2482": { + "accessible_scopes": [ + "starkware.cairo.common.squash_dict", + "starkware.cairo.common.squash_dict.squash_dict_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 36, + "end_line": 104, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/squash_dict.cairo" + }, + "parent_location": [ + { + "end_col": 68, + "end_line": 239, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/squash_dict.cairo" + }, + "start_col": 44, + "start_line": 239 + }, + "While expanding the reference 'dict_accesses_end_minus1' in:" + ], + "start_col": 5, + "start_line": 104 + } + }, + "2483": { + "accessible_scopes": [ + "starkware.cairo.common.squash_dict", + "starkware.cairo.common.squash_dict.squash_dict_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 24, + "end_line": 221, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/squash_dict.cairo" + }, + "parent_location": [ + { + "end_col": 36, + "end_line": 240, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/squash_dict.cairo" + }, + "start_col": 28, + "start_line": 240 + }, + "While expanding the reference 'next_key' in:" + ], + "start_col": 20, + "start_line": 221 + } + }, + "2484": { + "accessible_scopes": [ + "starkware.cairo.common.squash_dict", + "starkware.cairo.common.squash_dict.squash_dict_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 31, + "end_line": 212, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/squash_dict.cairo" + }, + "parent_location": [ + { + "end_col": 56, + "end_line": 241, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/squash_dict.cairo" + }, + "start_col": 38, + "start_line": 241 + }, + "While expanding the reference 'remaining_accesses' in:" + ], + "start_col": 13, + "start_line": 212 + } + }, + "2485": { + "accessible_scopes": [ + "starkware.cairo.common.squash_dict", + "starkware.cairo.common.squash_dict.squash_dict_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 7, + "end_line": 229, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/squash_dict.cairo" + }, + "start_col": 5, + "start_line": 229 + } + }, + "2487": { + "accessible_scopes": [ + "starkware.cairo.common.squash_dict", + "starkware.cairo.common.squash_dict.squash_dict_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 63, + "end_line": 211, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/squash_dict.cairo" + }, + "parent_location": [ + { + "end_col": 55, + "end_line": 230, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/squash_dict.cairo" + }, + "start_col": 40, + "start_line": 230 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 27, + "start_line": 211 + } + }, + "2489": { + "accessible_scopes": [ + "starkware.cairo.common.squash_dict", + "starkware.cairo.common.squash_dict.squash_dict_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 8, + "end_line": 105, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/squash_dict.cairo" + }, + "parent_location": [ + { + "end_col": 62, + "end_line": 230, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/squash_dict.cairo" + }, + "start_col": 59, + "start_line": 230 + }, + "While expanding the reference 'key' in:" + ], + "start_col": 5, + "start_line": 105 + } + }, + "2490": { + "accessible_scopes": [ + "starkware.cairo.common.squash_dict", + "starkware.cairo.common.squash_dict.squash_dict_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 24, + "end_line": 221, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/squash_dict.cairo" + }, + "parent_location": [ + { + "end_col": 74, + "end_line": 230, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/squash_dict.cairo" + }, + "start_col": 66, + "start_line": 230 + }, + "While expanding the reference 'next_key' in:" + ], + "start_col": 20, + "start_line": 221 + } + }, + "2491": { + "accessible_scopes": [ + "starkware.cairo.common.squash_dict", + "starkware.cairo.common.squash_dict.squash_dict_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 75, + "end_line": 230, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/squash_dict.cairo" + }, + "start_col": 9, + "start_line": 230 + } + }, + "2493": { + "accessible_scopes": [ + "starkware.cairo.common.squash_dict", + "starkware.cairo.common.squash_dict.squash_dict_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 31, + "end_line": 103, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/squash_dict.cairo" + }, + "parent_location": [ + { + "end_col": 46, + "end_line": 231, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/squash_dict.cairo" + }, + "start_col": 33, + "start_line": 231 + }, + "While expanding the reference 'dict_accesses' in:" + ], + "start_col": 5, + "start_line": 103 + } + }, + "2494": { + "accessible_scopes": [ + "starkware.cairo.common.squash_dict", + "starkware.cairo.common.squash_dict.squash_dict_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 36, + "end_line": 104, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/squash_dict.cairo" + }, + "parent_location": [ + { + "end_col": 68, + "end_line": 232, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/squash_dict.cairo" + }, + "start_col": 44, + "start_line": 232 + }, + "While expanding the reference 'dict_accesses_end_minus1' in:" + ], + "start_col": 5, + "start_line": 104 + } + }, + "2495": { + "accessible_scopes": [ + "starkware.cairo.common.squash_dict", + "starkware.cairo.common.squash_dict.squash_dict_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 24, + "end_line": 221, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/squash_dict.cairo" + }, + "parent_location": [ + { + "end_col": 36, + "end_line": 233, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/squash_dict.cairo" + }, + "start_col": 28, + "start_line": 233 + }, + "While expanding the reference 'next_key' in:" + ], + "start_col": 20, + "start_line": 221 + } + }, + "2496": { + "accessible_scopes": [ + "starkware.cairo.common.squash_dict", + "starkware.cairo.common.squash_dict.squash_dict_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 31, + "end_line": 212, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/squash_dict.cairo" + }, + "parent_location": [ + { + "end_col": 56, + "end_line": 234, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/squash_dict.cairo" + }, + "start_col": 38, + "start_line": 234 + }, + "While expanding the reference 'remaining_accesses' in:" + ], + "start_col": 13, + "start_line": 212 + } + }, + "2497": { + "accessible_scopes": [ + "starkware.cairo.common.squash_dict", + "starkware.cairo.common.squash_dict.squash_dict_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 54, + "end_line": 250, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/squash_dict.cairo" + }, + "start_col": 23, + "start_line": 250 + } + }, + "2499": { + "accessible_scopes": [ + "starkware.cairo.common.squash_dict", + "starkware.cairo.common.squash_dict.squash_dict_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 13, + "end_line": 108, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/squash_dict.cairo" + }, + "parent_location": [ + { + "end_col": 26, + "end_line": 251, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/squash_dict.cairo" + }, + "start_col": 18, + "start_line": 251 + }, + "While expanding the reference 'big_keys' in:" + ], + "start_col": 5, + "start_line": 108 + } + }, + "2500": { + "accessible_scopes": [ + "starkware.cairo.common.squash_dict", + "starkware.cairo.common.squash_dict.squash_dict_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 6, + "end_line": 252, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/squash_dict.cairo" + }, + "start_col": 12, + "start_line": 244 + } + }, + "2502": { + "accessible_scopes": [ + "starkware.cairo.common.squash_dict", + "starkware.cairo.common.squash_dict.squash_dict_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 7, + "end_line": 252, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/squash_dict.cairo" + }, + "start_col": 5, + "start_line": 244 + } + }, + "2503": { + "accessible_scopes": [ + "starkware.cairo.common.dict", + "starkware.cairo.common.dict.dict_new" + ], + "flow_tracking_data": null, + "hints": [ + { + "location": { + "end_col": 7, + "end_line": 16, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/dict.cairo" + }, + "start_col": 5, + "start_line": 9 + }, + "n_prefix_newlines": 1 + } + ], + "inst": { + "end_col": 12, + "end_line": 17, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/dict.cairo" + }, + "start_col": 5, + "start_line": 17 + } + }, + "2505": { + "accessible_scopes": [ + "starkware.cairo.common.dict", + "starkware.cairo.common.dict.dict_new" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 46, + "end_line": 18, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/dict.cairo" + }, + "start_col": 5, + "start_line": 18 + } + }, + "2506": { + "accessible_scopes": [ + "starkware.cairo.common.dict", + "starkware.cairo.common.dict.dict_read" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 18, + "end_line": 23, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/dict.cairo" + }, + "start_col": 5, + "start_line": 23 + } + }, + "2508": { + "accessible_scopes": [ + "starkware.cairo.common.dict", + "starkware.cairo.common.dict.dict_read" + ], + "flow_tracking_data": null, + "hints": [ + { + "location": { + "end_col": 7, + "end_line": 29, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/dict.cairo" + }, + "start_col": 5, + "start_line": 25 + }, + "n_prefix_newlines": 1 + } + ], + "inst": { + "end_col": 23, + "end_line": 30, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/dict.cairo" + }, + "start_col": 5, + "start_line": 30 + } + }, + "2509": { + "accessible_scopes": [ + "starkware.cairo.common.dict", + "starkware.cairo.common.dict.dict_read" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 32, + "end_line": 31, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/dict.cairo" + }, + "start_col": 5, + "start_line": 31 + } + }, + "2510": { + "accessible_scopes": [ + "starkware.cairo.common.dict", + "starkware.cairo.common.dict.dict_read" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 31, + "end_line": 32, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/dict.cairo" + }, + "start_col": 5, + "start_line": 32 + } + }, + "2511": { + "accessible_scopes": [ + "starkware.cairo.common.dict", + "starkware.cairo.common.dict.dict_read" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 46, + "end_line": 33, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/dict.cairo" + }, + "parent_location": [ + { + "end_col": 37, + "end_line": 22, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/dict.cairo" + }, + "parent_location": [ + { + "end_col": 26, + "end_line": 34, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/dict.cairo" + }, + "start_col": 5, + "start_line": 34 + }, + "While trying to retrieve the implicit argument 'dict_ptr' in:" + ], + "start_col": 16, + "start_line": 22 + }, + "While expanding the reference 'dict_ptr' in:" + ], + "start_col": 20, + "start_line": 33 + } + }, + "2513": { + "accessible_scopes": [ + "starkware.cairo.common.dict", + "starkware.cairo.common.dict.dict_read" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 16, + "end_line": 24, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/dict.cairo" + }, + "parent_location": [ + { + "end_col": 24, + "end_line": 34, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/dict.cairo" + }, + "start_col": 19, + "start_line": 34 + }, + "While expanding the reference 'value' in:" + ], + "start_col": 11, + "start_line": 24 + } + }, + "2514": { + "accessible_scopes": [ + "starkware.cairo.common.dict", + "starkware.cairo.common.dict.dict_read" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 26, + "end_line": 34, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/dict.cairo" + }, + "start_col": 5, + "start_line": 34 + } + }, + "2515": { + "accessible_scopes": [ + "starkware.cairo.common.dict", + "starkware.cairo.common.dict.dict_write" + ], + "flow_tracking_data": null, + "hints": [ + { + "location": { + "end_col": 7, + "end_line": 44, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/dict.cairo" + }, + "start_col": 5, + "start_line": 39 + }, + "n_prefix_newlines": 1 + } + ], + "inst": { + "end_col": 23, + "end_line": 45, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/dict.cairo" + }, + "start_col": 5, + "start_line": 45 + } + }, + "2516": { + "accessible_scopes": [ + "starkware.cairo.common.dict", + "starkware.cairo.common.dict.dict_write" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 35, + "end_line": 46, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/dict.cairo" + }, + "start_col": 5, + "start_line": 46 + } + }, + "2517": { + "accessible_scopes": [ + "starkware.cairo.common.dict", + "starkware.cairo.common.dict.dict_write" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 46, + "end_line": 47, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/dict.cairo" + }, + "parent_location": [ + { + "end_col": 38, + "end_line": 38, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/dict.cairo" + }, + "parent_location": [ + { + "end_col": 15, + "end_line": 48, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/dict.cairo" + }, + "start_col": 5, + "start_line": 48 + }, + "While trying to retrieve the implicit argument 'dict_ptr' in:" + ], + "start_col": 17, + "start_line": 38 + }, + "While expanding the reference 'dict_ptr' in:" + ], + "start_col": 20, + "start_line": 47 + } + }, + "2519": { + "accessible_scopes": [ + "starkware.cairo.common.dict", + "starkware.cairo.common.dict.dict_write" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 15, + "end_line": 48, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/dict.cairo" + }, + "start_col": 5, + "start_line": 48 + } + }, + "2520": { + "accessible_scopes": [ + "starkware.cairo.common.dict", + "starkware.cairo.common.dict.dict_squash" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 18, + "end_line": 85, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/dict.cairo" + }, + "start_col": 5, + "start_line": 85 + } + }, + "2522": { + "accessible_scopes": [ + "starkware.cairo.common.dict", + "starkware.cairo.common.dict.dict_squash" + ], + "flow_tracking_data": null, + "hints": [ + { + "location": { + "end_col": 7, + "end_line": 96, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/dict.cairo" + }, + "start_col": 5, + "start_line": 87 + }, + "n_prefix_newlines": 1 + } + ], + "inst": { + "end_col": 49, + "end_line": 97, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/dict.cairo" + }, + "start_col": 39, + "start_line": 97 + } + }, + "2524": { + "accessible_scopes": [ + "starkware.cairo.common.dict", + "starkware.cairo.common.dict.dict_squash" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 35, + "end_line": 97, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/dict.cairo" + }, + "start_col": 10, + "start_line": 97 + } + }, + "2525": { + "accessible_scopes": [ + "starkware.cairo.common.dict", + "starkware.cairo.common.dict.dict_squash" + ], + "flow_tracking_data": null, + "hints": [ + { + "location": { + "end_col": 26, + "end_line": 98, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/dict.cairo" + }, + "start_col": 5, + "start_line": 98 + }, + "n_prefix_newlines": 0 + } + ], + "inst": { + "end_col": 33, + "end_line": 82, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/dict.cairo" + }, + "parent_location": [ + { + "end_col": 33, + "end_line": 24, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/squash_dict.cairo" + }, + "parent_location": [ + { + "end_col": 6, + "end_line": 104, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/dict.cairo" + }, + "start_col": 31, + "start_line": 100 + }, + "While trying to retrieve the implicit argument 'range_check_ptr' in:" + ], + "start_col": 18, + "start_line": 24 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 18, + "start_line": 82 + } + }, + "2526": { + "accessible_scopes": [ + "starkware.cairo.common.dict", + "starkware.cairo.common.dict.dict_squash" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 37, + "end_line": 83, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/dict.cairo" + }, + "parent_location": [ + { + "end_col": 42, + "end_line": 101, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/dict.cairo" + }, + "start_col": 23, + "start_line": 101 + }, + "While expanding the reference 'dict_accesses_start' in:" + ], + "start_col": 5, + "start_line": 83 + } + }, + "2527": { + "accessible_scopes": [ + "starkware.cairo.common.dict", + "starkware.cairo.common.dict.dict_squash" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 69, + "end_line": 83, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/dict.cairo" + }, + "parent_location": [ + { + "end_col": 44, + "end_line": 102, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/dict.cairo" + }, + "start_col": 27, + "start_line": 102 + }, + "While expanding the reference 'dict_accesses_end' in:" + ], + "start_col": 39, + "start_line": 83 + } + }, + "2528": { + "accessible_scopes": [ + "starkware.cairo.common.dict", + "starkware.cairo.common.dict.dict_squash" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 35, + "end_line": 97, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/dict.cairo" + }, + "parent_location": [ + { + "end_col": 42, + "end_line": 103, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/dict.cairo" + }, + "start_col": 23, + "start_line": 103 + }, + "While expanding the reference 'squashed_dict_start' in:" + ], + "start_col": 16, + "start_line": 97 + } + }, + "2529": { + "accessible_scopes": [ + "starkware.cairo.common.dict", + "starkware.cairo.common.dict.dict_squash" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 6, + "end_line": 104, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/dict.cairo" + }, + "start_col": 31, + "start_line": 100 + } + }, + "2531": { + "accessible_scopes": [ + "starkware.cairo.common.dict", + "starkware.cairo.common.dict.dict_squash" + ], + "flow_tracking_data": null, + "hints": [ + { + "location": { + "end_col": 7, + "end_line": 110, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/dict.cairo" + }, + "start_col": 5, + "start_line": 106 + }, + "n_prefix_newlines": 1 + } + ], + "inst": { + "end_col": 33, + "end_line": 24, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/squash_dict.cairo" + }, + "parent_location": [ + { + "end_col": 6, + "end_line": 104, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/dict.cairo" + }, + "parent_location": [ + { + "end_col": 33, + "end_line": 82, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/dict.cairo" + }, + "parent_location": [ + { + "end_col": 91, + "end_line": 111, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/dict.cairo" + }, + "start_col": 5, + "start_line": 111 + }, + "While trying to retrieve the implicit argument 'range_check_ptr' in:" + ], + "start_col": 18, + "start_line": 82 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 31, + "start_line": 100 + }, + "While trying to update the implicit return value 'range_check_ptr' in:" + ], + "start_col": 18, + "start_line": 24 + } + }, + "2532": { + "accessible_scopes": [ + "starkware.cairo.common.dict", + "starkware.cairo.common.dict.dict_squash" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 35, + "end_line": 97, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/dict.cairo" + }, + "parent_location": [ + { + "end_col": 52, + "end_line": 111, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/dict.cairo" + }, + "start_col": 33, + "start_line": 111 + }, + "While expanding the reference 'squashed_dict_start' in:" + ], + "start_col": 16, + "start_line": 97 + } + }, + "2533": { + "accessible_scopes": [ + "starkware.cairo.common.dict", + "starkware.cairo.common.dict.dict_squash" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 27, + "end_line": 100, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/dict.cairo" + }, + "parent_location": [ + { + "end_col": 89, + "end_line": 111, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/dict.cairo" + }, + "start_col": 72, + "start_line": 111 + }, + "While expanding the reference 'squashed_dict_end' in:" + ], + "start_col": 10, + "start_line": 100 + } + }, + "2534": { + "accessible_scopes": [ + "starkware.cairo.common.dict", + "starkware.cairo.common.dict.dict_squash" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 91, + "end_line": 111, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/dict.cairo" + }, + "start_col": 5, + "start_line": 111 + } + }, + "2535": { + "accessible_scopes": [ + "starkware.cairo.common.default_dict", + "starkware.cairo.common.default_dict.default_dict_new" + ], + "flow_tracking_data": null, + "hints": [ + { + "location": { + "end_col": 7, + "end_line": 15, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/default_dict.cairo" + }, + "start_col": 5, + "start_line": 9 + }, + "n_prefix_newlines": 1 + } + ], + "inst": { + "end_col": 12, + "end_line": 16, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/default_dict.cairo" + }, + "start_col": 5, + "start_line": 16 + } + }, + "2537": { + "accessible_scopes": [ + "starkware.cairo.common.default_dict", + "starkware.cairo.common.default_dict.default_dict_new" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 46, + "end_line": 17, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/default_dict.cairo" + }, + "start_col": 5, + "start_line": 17 + } + }, + "2538": { + "accessible_scopes": [ + "starkware.cairo.common.default_dict", + "starkware.cairo.common.default_dict.default_dict_finalize" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 18, + "end_line": 26, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/default_dict.cairo" + }, + "start_col": 5, + "start_line": 26 + } + }, + "2540": { + "accessible_scopes": [ + "starkware.cairo.common.default_dict", + "starkware.cairo.common.default_dict.default_dict_finalize" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 43, + "end_line": 23, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/default_dict.cairo" + }, + "parent_location": [ + { + "end_col": 33, + "end_line": 82, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/dict.cairo" + }, + "parent_location": [ + { + "end_col": 6, + "end_line": 29, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/default_dict.cairo" + }, + "start_col": 64, + "start_line": 27 + }, + "While trying to retrieve the implicit argument 'range_check_ptr' in:" + ], + "start_col": 18, + "start_line": 82 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 28, + "start_line": 23 + } + }, + "2541": { + "accessible_scopes": [ + "starkware.cairo.common.default_dict", + "starkware.cairo.common.default_dict.default_dict_finalize" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 37, + "end_line": 24, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/default_dict.cairo" + }, + "parent_location": [ + { + "end_col": 28, + "end_line": 28, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/default_dict.cairo" + }, + "start_col": 9, + "start_line": 28 + }, + "While expanding the reference 'dict_accesses_start' in:" + ], + "start_col": 5, + "start_line": 24 + } + }, + "2542": { + "accessible_scopes": [ + "starkware.cairo.common.default_dict", + "starkware.cairo.common.default_dict.default_dict_finalize" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 69, + "end_line": 24, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/default_dict.cairo" + }, + "parent_location": [ + { + "end_col": 47, + "end_line": 28, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/default_dict.cairo" + }, + "start_col": 30, + "start_line": 28 + }, + "While expanding the reference 'dict_accesses_end' in:" + ], + "start_col": 39, + "start_line": 24 + } + }, + "2543": { + "accessible_scopes": [ + "starkware.cairo.common.default_dict", + "starkware.cairo.common.default_dict.default_dict_finalize" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 6, + "end_line": 29, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/default_dict.cairo" + }, + "start_col": 64, + "start_line": 27 + } + }, + "2545": { + "accessible_scopes": [ + "starkware.cairo.common.default_dict", + "starkware.cairo.common.default_dict.default_dict_finalize" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 35, + "end_line": 27, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/default_dict.cairo" + }, + "start_col": 10, + "start_line": 27 + } + }, + "2546": { + "accessible_scopes": [ + "starkware.cairo.common.default_dict", + "starkware.cairo.common.default_dict.default_dict_finalize" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 60, + "end_line": 27, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/default_dict.cairo" + }, + "start_col": 37, + "start_line": 27 + } + }, + "2547": { + "accessible_scopes": [ + "starkware.cairo.common.default_dict", + "starkware.cairo.common.default_dict.default_dict_finalize" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 45, + "end_line": 30, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/default_dict.cairo" + }, + "start_col": 5, + "start_line": 30 + } + }, + "2548": { + "accessible_scopes": [ + "starkware.cairo.common.default_dict", + "starkware.cairo.common.default_dict.default_dict_finalize" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 60, + "end_line": 34, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/default_dict.cairo" + }, + "start_col": 21, + "start_line": 34 + } + }, + "2549": { + "accessible_scopes": [ + "starkware.cairo.common.default_dict", + "starkware.cairo.common.default_dict.default_dict_finalize" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 35, + "end_line": 27, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/default_dict.cairo" + }, + "parent_location": [ + { + "end_col": 48, + "end_line": 33, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/default_dict.cairo" + }, + "start_col": 29, + "start_line": 33 + }, + "While expanding the reference 'squashed_dict_start' in:" + ], + "start_col": 16, + "start_line": 27 + } + }, + "2550": { + "accessible_scopes": [ + "starkware.cairo.common.default_dict", + "starkware.cairo.common.default_dict.default_dict_finalize" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 79, + "end_line": 34, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/default_dict.cairo" + }, + "start_col": 20, + "start_line": 34 + } + }, + "2552": { + "accessible_scopes": [ + "starkware.cairo.common.default_dict", + "starkware.cairo.common.default_dict.default_dict_finalize" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 90, + "end_line": 24, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/default_dict.cairo" + }, + "parent_location": [ + { + "end_col": 36, + "end_line": 35, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/default_dict.cairo" + }, + "start_col": 23, + "start_line": 35 + }, + "While expanding the reference 'default_value' in:" + ], + "start_col": 71, + "start_line": 24 + } + }, + "2553": { + "accessible_scopes": [ + "starkware.cairo.common.default_dict", + "starkware.cairo.common.default_dict.default_dict_finalize" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 6, + "end_line": 36, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/default_dict.cairo" + }, + "start_col": 5, + "start_line": 32 + } + }, + "2555": { + "accessible_scopes": [ + "starkware.cairo.common.default_dict", + "starkware.cairo.common.default_dict.default_dict_finalize" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 26, + "end_line": 30, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/default_dict.cairo" + }, + "parent_location": [ + { + "end_col": 43, + "end_line": 23, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/default_dict.cairo" + }, + "parent_location": [ + { + "end_col": 91, + "end_line": 37, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/default_dict.cairo" + }, + "start_col": 5, + "start_line": 37 + }, + "While trying to retrieve the implicit argument 'range_check_ptr' in:" + ], + "start_col": 28, + "start_line": 23 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 11, + "start_line": 30 + } + }, + "2556": { + "accessible_scopes": [ + "starkware.cairo.common.default_dict", + "starkware.cairo.common.default_dict.default_dict_finalize" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 35, + "end_line": 27, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/default_dict.cairo" + }, + "parent_location": [ + { + "end_col": 52, + "end_line": 37, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/default_dict.cairo" + }, + "start_col": 33, + "start_line": 37 + }, + "While expanding the reference 'squashed_dict_start' in:" + ], + "start_col": 16, + "start_line": 27 + } + }, + "2557": { + "accessible_scopes": [ + "starkware.cairo.common.default_dict", + "starkware.cairo.common.default_dict.default_dict_finalize" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 60, + "end_line": 27, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/default_dict.cairo" + }, + "parent_location": [ + { + "end_col": 89, + "end_line": 37, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/default_dict.cairo" + }, + "start_col": 72, + "start_line": 37 + }, + "While expanding the reference 'squashed_dict_end' in:" + ], + "start_col": 43, + "start_line": 27 + } + }, + "2558": { + "accessible_scopes": [ + "starkware.cairo.common.default_dict", + "starkware.cairo.common.default_dict.default_dict_finalize" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 91, + "end_line": 37, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/default_dict.cairo" + }, + "start_col": 5, + "start_line": 37 + } + }, + "2559": { + "accessible_scopes": [ + "starkware.cairo.common.default_dict", + "starkware.cairo.common.default_dict.default_dict_finalize_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 7, + "end_line": 43, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/default_dict.cairo" + }, + "start_col": 5, + "start_line": 43 + } + }, + "2561": { + "accessible_scopes": [ + "starkware.cairo.common.default_dict", + "starkware.cairo.common.default_dict.default_dict_finalize_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 19, + "end_line": 44, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/default_dict.cairo" + }, + "start_col": 9, + "start_line": 44 + } + }, + "2562": { + "accessible_scopes": [ + "starkware.cairo.common.default_dict", + "starkware.cairo.common.default_dict.default_dict_finalize_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 59, + "end_line": 47, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/default_dict.cairo" + }, + "start_col": 5, + "start_line": 47 + } + }, + "2563": { + "accessible_scopes": [ + "starkware.cairo.common.default_dict", + "starkware.cairo.common.default_dict.default_dict_finalize_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 46, + "end_line": 49, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/default_dict.cairo" + }, + "start_col": 9, + "start_line": 49 + } + }, + "2565": { + "accessible_scopes": [ + "starkware.cairo.common.default_dict", + "starkware.cairo.common.default_dict.default_dict_finalize_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 34, + "end_line": 50, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/default_dict.cairo" + }, + "start_col": 20, + "start_line": 50 + } + }, + "2567": { + "accessible_scopes": [ + "starkware.cairo.common.default_dict", + "starkware.cairo.common.default_dict.default_dict_finalize_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 76, + "end_line": 41, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/default_dict.cairo" + }, + "parent_location": [ + { + "end_col": 36, + "end_line": 51, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/default_dict.cairo" + }, + "start_col": 23, + "start_line": 51 + }, + "While expanding the reference 'default_value' in:" + ], + "start_col": 57, + "start_line": 41 + } + }, + "2568": { + "accessible_scopes": [ + "starkware.cairo.common.default_dict", + "starkware.cairo.common.default_dict.default_dict_finalize_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 6, + "end_line": 52, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/default_dict.cairo" + }, + "start_col": 12, + "start_line": 48 + } + }, + "2570": { + "accessible_scopes": [ + "starkware.cairo.common.default_dict", + "starkware.cairo.common.default_dict.default_dict_finalize_inner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 7, + "end_line": 52, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/default_dict.cairo" + }, + "start_col": 5, + "start_line": 48 + } + }, + "2571": { + "accessible_scopes": [ + "interfaces", + "interfaces.ICellRenderer", + "interfaces.ICellRenderer.token_uri" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 14, + "end_line": 2, + "input_file": { + "filename": "autogen/starknet/contract_interface/ICellRenderer/token_uri/64f7842b108e76706927b78270ac73c789c558c54431b3359e4441e63ec2a868.cairo" + }, + "parent_location": [ + { + "end_col": 19, + "end_line": 6, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/interfaces.cairo" + }, + "start_col": 10, + "start_line": 6 + }, + "While handling contract interface function:" + ], + "start_col": 1, + "start_line": 2 + } + }, + "2573": { + "accessible_scopes": [ + "interfaces", + "interfaces.ICellRenderer", + "interfaces.ICellRenderer.token_uri" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 48, + "end_line": 3, + "input_file": { + "filename": "autogen/starknet/contract_interface/ICellRenderer/token_uri/64f7842b108e76706927b78270ac73c789c558c54431b3359e4441e63ec2a868.cairo" + }, + "parent_location": [ + { + "end_col": 19, + "end_line": 6, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/interfaces.cairo" + }, + "start_col": 10, + "start_line": 6 + }, + "While handling contract interface function:" + ], + "start_col": 41, + "start_line": 3 + } + }, + "2575": { + "accessible_scopes": [ + "interfaces", + "interfaces.ICellRenderer", + "interfaces.ICellRenderer.token_uri" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 37, + "end_line": 3, + "input_file": { + "filename": "autogen/starknet/contract_interface/ICellRenderer/token_uri/64f7842b108e76706927b78270ac73c789c558c54431b3359e4441e63ec2a868.cairo" + }, + "parent_location": [ + { + "end_col": 19, + "end_line": 6, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/interfaces.cairo" + }, + "start_col": 10, + "start_line": 6 + }, + "While handling contract interface function:" + ], + "start_col": 6, + "start_line": 3 + } + }, + "2576": { + "accessible_scopes": [ + "interfaces", + "interfaces.ICellRenderer", + "interfaces.ICellRenderer.token_uri" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 36, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/arg_processor/b2cf08f23bd6d74eeb872bed49d06f4a7518757c8955198bd7ce9a52a9cf0046.cairo" + }, + "parent_location": [ + { + "end_col": 28, + "end_line": 6, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/interfaces.cairo" + }, + "start_col": 20, + "start_line": 6 + }, + "While handling calldata argument 'token_id'" + ], + "start_col": 1, + "start_line": 1 + } + }, + "2577": { + "accessible_scopes": [ + "interfaces", + "interfaces.ICellRenderer", + "interfaces.ICellRenderer.token_uri" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 33, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/arg_processor/84a24514c1fc47c938055c9b8b555ae76e193c3fe4f1a6a3391748432a916688.cairo" + }, + "parent_location": [ + { + "end_col": 41, + "end_line": 6, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/interfaces.cairo" + }, + "start_col": 36, + "start_line": 6 + }, + "While handling calldata argument 'value'" + ], + "start_col": 1, + "start_line": 1 + } + }, + "2578": { + "accessible_scopes": [ + "interfaces", + "interfaces.ICellRenderer", + "interfaces.ICellRenderer.token_uri" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 32, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/arg_processor/718aa2ac933a14995b4c0da5118692224afa83ebc1cf2b531694a3e835400de0.cairo" + }, + "parent_location": [ + { + "end_col": 53, + "end_line": 6, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/interfaces.cairo" + }, + "start_col": 49, + "start_line": 6 + }, + "While handling calldata argument 'name'" + ], + "start_col": 1, + "start_line": 1 + } + }, + "2579": { + "accessible_scopes": [ + "interfaces", + "interfaces.ICellRenderer", + "interfaces.ICellRenderer.token_uri" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 40, + "end_line": 2, + "input_file": { + "filename": "autogen/starknet/arg_processor/718aa2ac933a14995b4c0da5118692224afa83ebc1cf2b531694a3e835400de0.cairo" + }, + "parent_location": [ + { + "end_col": 53, + "end_line": 6, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/interfaces.cairo" + }, + "parent_location": [ + { + "end_col": 33, + "end_line": 5, + "input_file": { + "filename": "autogen/starknet/contract_interface/ICellRenderer/token_uri/e1e41e9022bda39c4617b9e4e338140cde71000402172e9b2b9c9fdc807617dc.cairo" + }, + "parent_location": [ + { + "end_col": 19, + "end_line": 6, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/interfaces.cairo" + }, + "start_col": 10, + "start_line": 6 + }, + "While handling contract interface function:" + ], + "start_col": 19, + "start_line": 5 + }, + "While expanding the reference '__calldata_ptr' in:" + ], + "start_col": 49, + "start_line": 6 + }, + "While handling calldata argument 'name'" + ], + "start_col": 22, + "start_line": 2 + } + }, + "2581": { + "accessible_scopes": [ + "interfaces", + "interfaces.ICellRenderer", + "interfaces.ICellRenderer.token_uri" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 34, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/contract_interface/ICellRenderer/token_uri/41262dba046518ea626ceadddf9bdd89ee1cb488a62fdf8cc47232b6ce4027bb.cairo" + }, + "parent_location": [ + { + "end_col": 19, + "end_line": 6, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/interfaces.cairo" + }, + "parent_location": [ + { + "end_col": 38, + "end_line": 42, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/starknet/common/syscalls.cairo" + }, + "parent_location": [ + { + "end_col": 33, + "end_line": 6, + "input_file": { + "filename": "autogen/starknet/contract_interface/ICellRenderer/token_uri/e1e41e9022bda39c4617b9e4e338140cde71000402172e9b2b9c9fdc807617dc.cairo" + }, + "parent_location": [ + { + "end_col": 19, + "end_line": 6, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/interfaces.cairo" + }, + "start_col": 10, + "start_line": 6 + }, + "While handling contract interface function:" + ], + "start_col": 31, + "start_line": 2 + }, + "While trying to retrieve the implicit argument 'syscall_ptr' in:" + ], + "start_col": 20, + "start_line": 42 + }, + "While expanding the reference 'syscall_ptr' in:" + ], + "start_col": 10, + "start_line": 6 + }, + "While handling contract interface function:" + ], + "start_col": 16, + "start_line": 1 + } + }, + "2582": { + "accessible_scopes": [ + "interfaces", + "interfaces.ICellRenderer", + "interfaces.ICellRenderer.token_uri" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 27, + "end_line": 2, + "input_file": { + "filename": "autogen/starknet/contract_interface/ICellRenderer/token_uri/41262dba046518ea626ceadddf9bdd89ee1cb488a62fdf8cc47232b6ce4027bb.cairo" + }, + "parent_location": [ + { + "end_col": 19, + "end_line": 6, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/interfaces.cairo" + }, + "parent_location": [ + { + "end_col": 38, + "end_line": 3, + "input_file": { + "filename": "autogen/starknet/contract_interface/ICellRenderer/token_uri/e1e41e9022bda39c4617b9e4e338140cde71000402172e9b2b9c9fdc807617dc.cairo" + }, + "parent_location": [ + { + "end_col": 19, + "end_line": 6, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/interfaces.cairo" + }, + "start_col": 10, + "start_line": 6 + }, + "While handling contract interface function:" + ], + "start_col": 22, + "start_line": 3 + }, + "While expanding the reference 'contract_address' in:" + ], + "start_col": 10, + "start_line": 6 + }, + "While handling contract interface function:" + ], + "start_col": 5, + "start_line": 2 + } + }, + "2583": { + "accessible_scopes": [ + "interfaces", + "interfaces.ICellRenderer", + "interfaces.ICellRenderer.token_uri" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 41, + "end_line": 4, + "input_file": { + "filename": "autogen/starknet/contract_interface/ICellRenderer/token_uri/e1e41e9022bda39c4617b9e4e338140cde71000402172e9b2b9c9fdc807617dc.cairo" + }, + "parent_location": [ + { + "end_col": 19, + "end_line": 6, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/interfaces.cairo" + }, + "start_col": 10, + "start_line": 6 + }, + "While handling contract interface function:" + ], + "start_col": 23, + "start_line": 4 + } + }, + "2585": { + "accessible_scopes": [ + "interfaces", + "interfaces.ICellRenderer", + "interfaces.ICellRenderer.token_uri" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 54, + "end_line": 5, + "input_file": { + "filename": "autogen/starknet/contract_interface/ICellRenderer/token_uri/e1e41e9022bda39c4617b9e4e338140cde71000402172e9b2b9c9fdc807617dc.cairo" + }, + "parent_location": [ + { + "end_col": 19, + "end_line": 6, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/interfaces.cairo" + }, + "start_col": 10, + "start_line": 6 + }, + "While handling contract interface function:" + ], + "start_col": 19, + "start_line": 5 + } + }, + "2586": { + "accessible_scopes": [ + "interfaces", + "interfaces.ICellRenderer", + "interfaces.ICellRenderer.token_uri" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 30, + "end_line": 3, + "input_file": { + "filename": "autogen/starknet/contract_interface/ICellRenderer/token_uri/64f7842b108e76706927b78270ac73c789c558c54431b3359e4441e63ec2a868.cairo" + }, + "parent_location": [ + { + "end_col": 19, + "end_line": 6, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/interfaces.cairo" + }, + "parent_location": [ + { + "end_col": 32, + "end_line": 6, + "input_file": { + "filename": "autogen/starknet/contract_interface/ICellRenderer/token_uri/e1e41e9022bda39c4617b9e4e338140cde71000402172e9b2b9c9fdc807617dc.cairo" + }, + "parent_location": [ + { + "end_col": 19, + "end_line": 6, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/interfaces.cairo" + }, + "start_col": 10, + "start_line": 6 + }, + "While handling contract interface function:" + ], + "start_col": 14, + "start_line": 6 + }, + "While expanding the reference 'calldata_ptr_start' in:" + ], + "start_col": 10, + "start_line": 6 + }, + "While handling contract interface function:" + ], + "start_col": 12, + "start_line": 3 + } + }, + "2587": { + "accessible_scopes": [ + "interfaces", + "interfaces.ICellRenderer", + "interfaces.ICellRenderer.token_uri" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 33, + "end_line": 6, + "input_file": { + "filename": "autogen/starknet/contract_interface/ICellRenderer/token_uri/e1e41e9022bda39c4617b9e4e338140cde71000402172e9b2b9c9fdc807617dc.cairo" + }, + "parent_location": [ + { + "end_col": 19, + "end_line": 6, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/interfaces.cairo" + }, + "start_col": 10, + "start_line": 6 + }, + "While handling contract interface function:" + ], + "start_col": 31, + "start_line": 2 + } + }, + "2589": { + "accessible_scopes": [ + "interfaces", + "interfaces.ICellRenderer", + "interfaces.ICellRenderer.token_uri" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 59, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/arg_processor/1c69c7efe008948007bb96a7ffcf593eef2281114be5664acdb2aab9fdcaff9f.cairo" + }, + "parent_location": [ + { + "end_col": 27, + "end_line": 7, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/interfaces.cairo" + }, + "parent_location": [ + { + "end_col": 59, + "end_line": 2, + "input_file": { + "filename": "autogen/starknet/arg_processor/90d39885368c3e7097e50bfd1ab7069fc16a5b7a0aacb507eaa76c5ff838c93e.cairo" + }, + "parent_location": [ + { + "end_col": 44, + "end_line": 7, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/interfaces.cairo" + }, + "start_col": 29, + "start_line": 7 + }, + "While handling return value 'data_uri'" + ], + "start_col": 28, + "start_line": 2 + }, + "While expanding the reference '__return_value_arg_data_uri_len' in:" + ], + "start_col": 9, + "start_line": 7 + }, + "While handling return value 'data_uri_len'" + ], + "start_col": 39, + "start_line": 1 + } + }, + "2590": { + "accessible_scopes": [ + "interfaces", + "interfaces.ICellRenderer", + "interfaces.ICellRenderer.token_uri" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 60, + "end_line": 2, + "input_file": { + "filename": "autogen/starknet/arg_processor/90d39885368c3e7097e50bfd1ab7069fc16a5b7a0aacb507eaa76c5ff838c93e.cairo" + }, + "parent_location": [ + { + "end_col": 44, + "end_line": 7, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/interfaces.cairo" + }, + "start_col": 29, + "start_line": 7 + }, + "While handling return value 'data_uri'" + ], + "start_col": 1, + "start_line": 2 + } + }, + "2591": { + "accessible_scopes": [ + "interfaces", + "interfaces.ICellRenderer", + "interfaces.ICellRenderer.token_uri" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 48, + "end_line": 2, + "input_file": { + "filename": "autogen/starknet/arg_processor/1c69c7efe008948007bb96a7ffcf593eef2281114be5664acdb2aab9fdcaff9f.cairo" + }, + "parent_location": [ + { + "end_col": 27, + "end_line": 7, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/interfaces.cairo" + }, + "parent_location": [ + { + "end_col": 48, + "end_line": 8, + "input_file": { + "filename": "autogen/starknet/arg_processor/90d39885368c3e7097e50bfd1ab7069fc16a5b7a0aacb507eaa76c5ff838c93e.cairo" + }, + "parent_location": [ + { + "end_col": 44, + "end_line": 7, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/interfaces.cairo" + }, + "start_col": 29, + "start_line": 7 + }, + "While handling return value 'data_uri'" + ], + "start_col": 30, + "start_line": 8 + }, + "While expanding the reference '__return_value_ptr' in:" + ], + "start_col": 9, + "start_line": 7 + }, + "While handling return value 'data_uri_len'" + ], + "start_col": 26, + "start_line": 2 + } + }, + "2593": { + "accessible_scopes": [ + "interfaces", + "interfaces.ICellRenderer", + "interfaces.ICellRenderer.token_uri" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 59, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/arg_processor/1c69c7efe008948007bb96a7ffcf593eef2281114be5664acdb2aab9fdcaff9f.cairo" + }, + "parent_location": [ + { + "end_col": 27, + "end_line": 7, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/interfaces.cairo" + }, + "parent_location": [ + { + "end_col": 82, + "end_line": 8, + "input_file": { + "filename": "autogen/starknet/arg_processor/90d39885368c3e7097e50bfd1ab7069fc16a5b7a0aacb507eaa76c5ff838c93e.cairo" + }, + "parent_location": [ + { + "end_col": 44, + "end_line": 7, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/interfaces.cairo" + }, + "start_col": 29, + "start_line": 7 + }, + "While handling return value 'data_uri'" + ], + "start_col": 51, + "start_line": 8 + }, + "While expanding the reference '__return_value_arg_data_uri_len' in:" + ], + "start_col": 9, + "start_line": 7 + }, + "While handling return value 'data_uri_len'" + ], + "start_col": 39, + "start_line": 1 + } + }, + "2594": { + "accessible_scopes": [ + "interfaces", + "interfaces.ICellRenderer", + "interfaces.ICellRenderer.token_uri" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 86, + "end_line": 8, + "input_file": { + "filename": "autogen/starknet/arg_processor/90d39885368c3e7097e50bfd1ab7069fc16a5b7a0aacb507eaa76c5ff838c93e.cairo" + }, + "parent_location": [ + { + "end_col": 44, + "end_line": 7, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/interfaces.cairo" + }, + "start_col": 29, + "start_line": 7 + }, + "While handling return value 'data_uri'" + ], + "start_col": 30, + "start_line": 8 + } + }, + "2595": { + "accessible_scopes": [ + "interfaces", + "interfaces.ICellRenderer", + "interfaces.ICellRenderer.token_uri" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 50, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/arg_processor/96447016176d161dae83f414c4d3e33e78856e0ef69bc33f8d419f1c9b90f9c5.cairo" + }, + "parent_location": [ + { + "end_col": 19, + "end_line": 6, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/interfaces.cairo" + }, + "start_col": 10, + "start_line": 6 + }, + "While handling return values of" + ], + "start_col": 1, + "start_line": 1 + } + }, + "2596": { + "accessible_scopes": [ + "interfaces", + "interfaces.ICellRenderer", + "interfaces.ICellRenderer.token_uri" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 38, + "end_line": 42, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/starknet/common/syscalls.cairo" + }, + "parent_location": [ + { + "end_col": 33, + "end_line": 6, + "input_file": { + "filename": "autogen/starknet/contract_interface/ICellRenderer/token_uri/e1e41e9022bda39c4617b9e4e338140cde71000402172e9b2b9c9fdc807617dc.cairo" + }, + "parent_location": [ + { + "end_col": 19, + "end_line": 6, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/interfaces.cairo" + }, + "parent_location": [ + { + "end_col": 34, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/contract_interface/ICellRenderer/token_uri/41262dba046518ea626ceadddf9bdd89ee1cb488a62fdf8cc47232b6ce4027bb.cairo" + }, + "parent_location": [ + { + "end_col": 19, + "end_line": 6, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/interfaces.cairo" + }, + "parent_location": [ + { + "end_col": 94, + "end_line": 2, + "input_file": { + "filename": "autogen/starknet/contract_interface/ICellRenderer/token_uri/63dec979b849c8d317c85f20bf92c57762e3a959db375d2edb42d111867dcba1.cairo" + }, + "parent_location": [ + { + "end_col": 19, + "end_line": 6, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/interfaces.cairo" + }, + "start_col": 10, + "start_line": 6 + }, + "While handling contract interface function:" + ], + "start_col": 1, + "start_line": 2 + }, + "While trying to retrieve the implicit argument 'syscall_ptr' in:" + ], + "start_col": 10, + "start_line": 6 + }, + "While handling contract interface function:" + ], + "start_col": 16, + "start_line": 1 + }, + "While expanding the reference 'syscall_ptr' in:" + ], + "start_col": 10, + "start_line": 6 + }, + "While handling contract interface function:" + ], + "start_col": 31, + "start_line": 2 + }, + "While trying to update the implicit return value 'syscall_ptr' in:" + ], + "start_col": 20, + "start_line": 42 + } + }, + "2597": { + "accessible_scopes": [ + "interfaces", + "interfaces.ICellRenderer", + "interfaces.ICellRenderer.token_uri" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 42, + "end_line": 3, + "input_file": { + "filename": "autogen/starknet/arg_processor/90d39885368c3e7097e50bfd1ab7069fc16a5b7a0aacb507eaa76c5ff838c93e.cairo" + }, + "parent_location": [ + { + "end_col": 44, + "end_line": 7, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/interfaces.cairo" + }, + "parent_location": [ + { + "end_col": 51, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/contract_interface/ICellRenderer/token_uri/41262dba046518ea626ceadddf9bdd89ee1cb488a62fdf8cc47232b6ce4027bb.cairo" + }, + "parent_location": [ + { + "end_col": 19, + "end_line": 6, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/interfaces.cairo" + }, + "parent_location": [ + { + "end_col": 94, + "end_line": 2, + "input_file": { + "filename": "autogen/starknet/contract_interface/ICellRenderer/token_uri/63dec979b849c8d317c85f20bf92c57762e3a959db375d2edb42d111867dcba1.cairo" + }, + "parent_location": [ + { + "end_col": 19, + "end_line": 6, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/interfaces.cairo" + }, + "start_col": 10, + "start_line": 6 + }, + "While handling contract interface function:" + ], + "start_col": 1, + "start_line": 2 + }, + "While trying to retrieve the implicit argument 'range_check_ptr' in:" + ], + "start_col": 10, + "start_line": 6 + }, + "While handling contract interface function:" + ], + "start_col": 36, + "start_line": 1 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 29, + "start_line": 7 + }, + "While handling return value 'data_uri'" + ], + "start_col": 23, + "start_line": 3 + } + }, + "2599": { + "accessible_scopes": [ + "interfaces", + "interfaces.ICellRenderer", + "interfaces.ICellRenderer.token_uri" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 59, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/arg_processor/1c69c7efe008948007bb96a7ffcf593eef2281114be5664acdb2aab9fdcaff9f.cairo" + }, + "parent_location": [ + { + "end_col": 27, + "end_line": 7, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/interfaces.cairo" + }, + "parent_location": [ + { + "end_col": 53, + "end_line": 2, + "input_file": { + "filename": "autogen/starknet/contract_interface/ICellRenderer/token_uri/63dec979b849c8d317c85f20bf92c57762e3a959db375d2edb42d111867dcba1.cairo" + }, + "parent_location": [ + { + "end_col": 19, + "end_line": 6, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/interfaces.cairo" + }, + "start_col": 10, + "start_line": 6 + }, + "While handling contract interface function:" + ], + "start_col": 22, + "start_line": 2 + }, + "While expanding the reference '__return_value_arg_data_uri_len' in:" + ], + "start_col": 9, + "start_line": 7 + }, + "While handling return value 'data_uri_len'" + ], + "start_col": 39, + "start_line": 1 + } + }, + "2600": { + "accessible_scopes": [ + "interfaces", + "interfaces.ICellRenderer", + "interfaces.ICellRenderer.token_uri" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 66, + "end_line": 5, + "input_file": { + "filename": "autogen/starknet/arg_processor/90d39885368c3e7097e50bfd1ab7069fc16a5b7a0aacb507eaa76c5ff838c93e.cairo" + }, + "parent_location": [ + { + "end_col": 44, + "end_line": 7, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/interfaces.cairo" + }, + "parent_location": [ + { + "end_col": 91, + "end_line": 2, + "input_file": { + "filename": "autogen/starknet/contract_interface/ICellRenderer/token_uri/63dec979b849c8d317c85f20bf92c57762e3a959db375d2edb42d111867dcba1.cairo" + }, + "parent_location": [ + { + "end_col": 19, + "end_line": 6, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/interfaces.cairo" + }, + "start_col": 10, + "start_line": 6 + }, + "While handling contract interface function:" + ], + "start_col": 64, + "start_line": 2 + }, + "While expanding the reference '__return_value_arg_data_uri' in:" + ], + "start_col": 29, + "start_line": 7 + }, + "While handling return value 'data_uri'" + ], + "start_col": 35, + "start_line": 5 + } + }, + "2602": { + "accessible_scopes": [ + "interfaces", + "interfaces.ICellRenderer", + "interfaces.ICellRenderer.token_uri" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 94, + "end_line": 2, + "input_file": { + "filename": "autogen/starknet/contract_interface/ICellRenderer/token_uri/63dec979b849c8d317c85f20bf92c57762e3a959db375d2edb42d111867dcba1.cairo" + }, + "parent_location": [ + { + "end_col": 19, + "end_line": 6, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/interfaces.cairo" + }, + "start_col": 10, + "start_line": 6 + }, + "While handling contract interface function:" + ], + "start_col": 1, + "start_line": 2 + } + }, + "2603": { + "accessible_scopes": [ + "utils.merkle_tree", + "utils.merkle_tree.merkle_verify" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 38, + "end_line": 12, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/utils/merkle_tree.cairo" + }, + "parent_location": [ + { + "end_col": 44, + "end_line": 36, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/utils/merkle_tree.cairo" + }, + "parent_location": [ + { + "end_col": 66, + "end_line": 15, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/utils/merkle_tree.cairo" + }, + "start_col": 23, + "start_line": 15 + }, + "While trying to retrieve the implicit argument 'syscall_ptr' in:" + ], + "start_col": 26, + "start_line": 36 + }, + "While expanding the reference 'syscall_ptr' in:" + ], + "start_col": 20, + "start_line": 12 + } + }, + "2604": { + "accessible_scopes": [ + "utils.merkle_tree", + "utils.merkle_tree.merkle_verify" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 66, + "end_line": 12, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/utils/merkle_tree.cairo" + }, + "parent_location": [ + { + "end_col": 72, + "end_line": 36, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/utils/merkle_tree.cairo" + }, + "parent_location": [ + { + "end_col": 66, + "end_line": 15, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/utils/merkle_tree.cairo" + }, + "start_col": 23, + "start_line": 15 + }, + "While trying to retrieve the implicit argument 'pedersen_ptr' in:" + ], + "start_col": 46, + "start_line": 36 + }, + "While expanding the reference 'pedersen_ptr' in:" + ], + "start_col": 40, + "start_line": 12 + } + }, + "2605": { + "accessible_scopes": [ + "utils.merkle_tree", + "utils.merkle_tree.merkle_verify" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 83, + "end_line": 12, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/utils/merkle_tree.cairo" + }, + "parent_location": [ + { + "end_col": 89, + "end_line": 36, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/utils/merkle_tree.cairo" + }, + "parent_location": [ + { + "end_col": 66, + "end_line": 15, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/utils/merkle_tree.cairo" + }, + "start_col": 23, + "start_line": 15 + }, + "While trying to retrieve the implicit argument 'range_check_ptr' in:" + ], + "start_col": 74, + "start_line": 36 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 68, + "start_line": 12 + } + }, + "2606": { + "accessible_scopes": [ + "utils.merkle_tree", + "utils.merkle_tree.merkle_verify" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 15, + "end_line": 13, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/utils/merkle_tree.cairo" + }, + "parent_location": [ + { + "end_col": 47, + "end_line": 15, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/utils/merkle_tree.cairo" + }, + "start_col": 43, + "start_line": 15 + }, + "While expanding the reference 'leaf' in:" + ], + "start_col": 5, + "start_line": 13 + } + }, + "2607": { + "accessible_scopes": [ + "utils.merkle_tree", + "utils.merkle_tree.merkle_verify" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 44, + "end_line": 13, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/utils/merkle_tree.cairo" + }, + "parent_location": [ + { + "end_col": 58, + "end_line": 15, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/utils/merkle_tree.cairo" + }, + "start_col": 49, + "start_line": 15 + }, + "While expanding the reference 'proof_len' in:" + ], + "start_col": 29, + "start_line": 13 + } + }, + "2608": { + "accessible_scopes": [ + "utils.merkle_tree", + "utils.merkle_tree.merkle_verify" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 58, + "end_line": 13, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/utils/merkle_tree.cairo" + }, + "parent_location": [ + { + "end_col": 65, + "end_line": 15, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/utils/merkle_tree.cairo" + }, + "start_col": 60, + "start_line": 15 + }, + "While expanding the reference 'proof' in:" + ], + "start_col": 46, + "start_line": 13 + } + }, + "2609": { + "accessible_scopes": [ + "utils.merkle_tree", + "utils.merkle_tree.merkle_verify" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 66, + "end_line": 15, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/utils/merkle_tree.cairo" + }, + "start_col": 23, + "start_line": 15 + } + }, + "2611": { + "accessible_scopes": [ + "utils.merkle_tree", + "utils.merkle_tree.merkle_verify" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 26, + "end_line": 17, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/utils/merkle_tree.cairo" + }, + "start_col": 9, + "start_line": 17 + } + }, + "2612": { + "accessible_scopes": [ + "utils.merkle_tree", + "utils.merkle_tree.merkle_verify" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 7, + "end_line": 17, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/utils/merkle_tree.cairo" + }, + "start_col": 5, + "start_line": 17 + } + }, + "2614": { + "accessible_scopes": [ + "utils.merkle_tree", + "utils.merkle_tree.merkle_verify" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 44, + "end_line": 36, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/utils/merkle_tree.cairo" + }, + "parent_location": [ + { + "end_col": 66, + "end_line": 15, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/utils/merkle_tree.cairo" + }, + "parent_location": [ + { + "end_col": 38, + "end_line": 12, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/utils/merkle_tree.cairo" + }, + "parent_location": [ + { + "end_col": 21, + "end_line": 18, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/utils/merkle_tree.cairo" + }, + "start_col": 9, + "start_line": 18 + }, + "While trying to retrieve the implicit argument 'syscall_ptr' in:" + ], + "start_col": 20, + "start_line": 12 + }, + "While expanding the reference 'syscall_ptr' in:" + ], + "start_col": 23, + "start_line": 15 + }, + "While trying to update the implicit return value 'syscall_ptr' in:" + ], + "start_col": 26, + "start_line": 36 + } + }, + "2615": { + "accessible_scopes": [ + "utils.merkle_tree", + "utils.merkle_tree.merkle_verify" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 72, + "end_line": 36, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/utils/merkle_tree.cairo" + }, + "parent_location": [ + { + "end_col": 66, + "end_line": 15, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/utils/merkle_tree.cairo" + }, + "parent_location": [ + { + "end_col": 66, + "end_line": 12, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/utils/merkle_tree.cairo" + }, + "parent_location": [ + { + "end_col": 21, + "end_line": 18, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/utils/merkle_tree.cairo" + }, + "start_col": 9, + "start_line": 18 + }, + "While trying to retrieve the implicit argument 'pedersen_ptr' in:" + ], + "start_col": 40, + "start_line": 12 + }, + "While expanding the reference 'pedersen_ptr' in:" + ], + "start_col": 23, + "start_line": 15 + }, + "While trying to update the implicit return value 'pedersen_ptr' in:" + ], + "start_col": 46, + "start_line": 36 + } + }, + "2616": { + "accessible_scopes": [ + "utils.merkle_tree", + "utils.merkle_tree.merkle_verify" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 89, + "end_line": 36, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/utils/merkle_tree.cairo" + }, + "parent_location": [ + { + "end_col": 66, + "end_line": 15, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/utils/merkle_tree.cairo" + }, + "parent_location": [ + { + "end_col": 83, + "end_line": 12, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/utils/merkle_tree.cairo" + }, + "parent_location": [ + { + "end_col": 21, + "end_line": 18, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/utils/merkle_tree.cairo" + }, + "start_col": 9, + "start_line": 18 + }, + "While trying to retrieve the implicit argument 'range_check_ptr' in:" + ], + "start_col": 68, + "start_line": 12 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 23, + "start_line": 15 + }, + "While trying to update the implicit return value 'range_check_ptr' in:" + ], + "start_col": 74, + "start_line": 36 + } + }, + "2617": { + "accessible_scopes": [ + "utils.merkle_tree", + "utils.merkle_tree.merkle_verify" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 18, + "end_line": 18, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/utils/merkle_tree.cairo" + }, + "start_col": 17, + "start_line": 18 + } + }, + "2619": { + "accessible_scopes": [ + "utils.merkle_tree", + "utils.merkle_tree.merkle_verify" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 21, + "end_line": 18, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/utils/merkle_tree.cairo" + }, + "start_col": 9, + "start_line": 18 + } + }, + "2620": { + "accessible_scopes": [ + "utils.merkle_tree", + "utils.merkle_tree.merkle_verify" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 44, + "end_line": 36, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/utils/merkle_tree.cairo" + }, + "parent_location": [ + { + "end_col": 66, + "end_line": 15, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/utils/merkle_tree.cairo" + }, + "parent_location": [ + { + "end_col": 38, + "end_line": 12, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/utils/merkle_tree.cairo" + }, + "parent_location": [ + { + "end_col": 21, + "end_line": 20, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/utils/merkle_tree.cairo" + }, + "start_col": 9, + "start_line": 20 + }, + "While trying to retrieve the implicit argument 'syscall_ptr' in:" + ], + "start_col": 20, + "start_line": 12 + }, + "While expanding the reference 'syscall_ptr' in:" + ], + "start_col": 23, + "start_line": 15 + }, + "While trying to update the implicit return value 'syscall_ptr' in:" + ], + "start_col": 26, + "start_line": 36 + } + }, + "2621": { + "accessible_scopes": [ + "utils.merkle_tree", + "utils.merkle_tree.merkle_verify" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 72, + "end_line": 36, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/utils/merkle_tree.cairo" + }, + "parent_location": [ + { + "end_col": 66, + "end_line": 15, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/utils/merkle_tree.cairo" + }, + "parent_location": [ + { + "end_col": 66, + "end_line": 12, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/utils/merkle_tree.cairo" + }, + "parent_location": [ + { + "end_col": 21, + "end_line": 20, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/utils/merkle_tree.cairo" + }, + "start_col": 9, + "start_line": 20 + }, + "While trying to retrieve the implicit argument 'pedersen_ptr' in:" + ], + "start_col": 40, + "start_line": 12 + }, + "While expanding the reference 'pedersen_ptr' in:" + ], + "start_col": 23, + "start_line": 15 + }, + "While trying to update the implicit return value 'pedersen_ptr' in:" + ], + "start_col": 46, + "start_line": 36 + } + }, + "2622": { + "accessible_scopes": [ + "utils.merkle_tree", + "utils.merkle_tree.merkle_verify" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 89, + "end_line": 36, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/utils/merkle_tree.cairo" + }, + "parent_location": [ + { + "end_col": 66, + "end_line": 15, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/utils/merkle_tree.cairo" + }, + "parent_location": [ + { + "end_col": 83, + "end_line": 12, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/utils/merkle_tree.cairo" + }, + "parent_location": [ + { + "end_col": 21, + "end_line": 20, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/utils/merkle_tree.cairo" + }, + "start_col": 9, + "start_line": 20 + }, + "While trying to retrieve the implicit argument 'range_check_ptr' in:" + ], + "start_col": 68, + "start_line": 12 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 23, + "start_line": 15 + }, + "While trying to update the implicit return value 'range_check_ptr' in:" + ], + "start_col": 74, + "start_line": 36 + } + }, + "2623": { + "accessible_scopes": [ + "utils.merkle_tree", + "utils.merkle_tree.merkle_verify" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 18, + "end_line": 20, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/utils/merkle_tree.cairo" + }, + "start_col": 17, + "start_line": 20 + } + }, + "2625": { + "accessible_scopes": [ + "utils.merkle_tree", + "utils.merkle_tree.merkle_verify" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 21, + "end_line": 20, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/utils/merkle_tree.cairo" + }, + "start_col": 9, + "start_line": 20 + } + }, + "2626": { + "accessible_scopes": [ + "utils.merkle_tree", + "utils.merkle_tree._hash_sorted" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 58, + "end_line": 24, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/utils/merkle_tree.cairo" + }, + "parent_location": [ + { + "end_col": 32, + "end_line": 79, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/math_cmp.cairo" + }, + "parent_location": [ + { + "end_col": 30, + "end_line": 25, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/utils/merkle_tree.cairo" + }, + "start_col": 14, + "start_line": 25 + }, + "While trying to retrieve the implicit argument 'range_check_ptr' in:" + ], + "start_col": 17, + "start_line": 79 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 43, + "start_line": 24 + } + }, + "2627": { + "accessible_scopes": [ + "utils.merkle_tree", + "utils.merkle_tree._hash_sorted" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 61, + "end_line": 24, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/utils/merkle_tree.cairo" + }, + "parent_location": [ + { + "end_col": 26, + "end_line": 25, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/utils/merkle_tree.cairo" + }, + "start_col": 25, + "start_line": 25 + }, + "While expanding the reference 'a' in:" + ], + "start_col": 60, + "start_line": 24 + } + }, + "2628": { + "accessible_scopes": [ + "utils.merkle_tree", + "utils.merkle_tree._hash_sorted" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 64, + "end_line": 24, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/utils/merkle_tree.cairo" + }, + "parent_location": [ + { + "end_col": 29, + "end_line": 25, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/utils/merkle_tree.cairo" + }, + "start_col": 28, + "start_line": 25 + }, + "While expanding the reference 'b' in:" + ], + "start_col": 63, + "start_line": 24 + } + }, + "2629": { + "accessible_scopes": [ + "utils.merkle_tree", + "utils.merkle_tree._hash_sorted" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 30, + "end_line": 25, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/utils/merkle_tree.cairo" + }, + "start_col": 14, + "start_line": 25 + } + }, + "2631": { + "accessible_scopes": [ + "utils.merkle_tree", + "utils.merkle_tree._hash_sorted" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 16, + "end_line": 27, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/utils/merkle_tree.cairo" + }, + "start_col": 9, + "start_line": 27 + } + }, + "2633": { + "accessible_scopes": [ + "utils.merkle_tree", + "utils.merkle_tree._hash_sorted" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 7, + "end_line": 27, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/utils/merkle_tree.cairo" + }, + "start_col": 5, + "start_line": 27 + } + }, + "2635": { + "accessible_scopes": [ + "utils.merkle_tree", + "utils.merkle_tree._hash_sorted" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 41, + "end_line": 24, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/utils/merkle_tree.cairo" + }, + "parent_location": [ + { + "end_col": 42, + "end_line": 28, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/utils/merkle_tree.cairo" + }, + "start_col": 34, + "start_line": 28 + }, + "While expanding the reference 'hash_ptr' in:" + ], + "start_col": 19, + "start_line": 24 + } + }, + "2636": { + "accessible_scopes": [ + "utils.merkle_tree", + "utils.merkle_tree._hash_sorted" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 61, + "end_line": 24, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/utils/merkle_tree.cairo" + }, + "parent_location": [ + { + "end_col": 45, + "end_line": 28, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/utils/merkle_tree.cairo" + }, + "start_col": 44, + "start_line": 28 + }, + "While expanding the reference 'a' in:" + ], + "start_col": 60, + "start_line": 24 + } + }, + "2637": { + "accessible_scopes": [ + "utils.merkle_tree", + "utils.merkle_tree._hash_sorted" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 64, + "end_line": 24, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/utils/merkle_tree.cairo" + }, + "parent_location": [ + { + "end_col": 48, + "end_line": 28, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/utils/merkle_tree.cairo" + }, + "start_col": 47, + "start_line": 28 + }, + "While expanding the reference 'b' in:" + ], + "start_col": 63, + "start_line": 24 + } + }, + "2638": { + "accessible_scopes": [ + "utils.merkle_tree", + "utils.merkle_tree._hash_sorted" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 49, + "end_line": 28, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/utils/merkle_tree.cairo" + }, + "start_col": 19, + "start_line": 28 + } + }, + "2640": { + "accessible_scopes": [ + "utils.merkle_tree", + "utils.merkle_tree._hash_sorted" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 7, + "end_line": 27, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/utils/merkle_tree.cairo" + }, + "start_col": 5, + "start_line": 27 + } + }, + "2642": { + "accessible_scopes": [ + "utils.merkle_tree", + "utils.merkle_tree._hash_sorted" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 41, + "end_line": 24, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/utils/merkle_tree.cairo" + }, + "parent_location": [ + { + "end_col": 42, + "end_line": 30, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/utils/merkle_tree.cairo" + }, + "start_col": 34, + "start_line": 30 + }, + "While expanding the reference 'hash_ptr' in:" + ], + "start_col": 19, + "start_line": 24 + } + }, + "2643": { + "accessible_scopes": [ + "utils.merkle_tree", + "utils.merkle_tree._hash_sorted" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 64, + "end_line": 24, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/utils/merkle_tree.cairo" + }, + "parent_location": [ + { + "end_col": 45, + "end_line": 30, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/utils/merkle_tree.cairo" + }, + "start_col": 44, + "start_line": 30 + }, + "While expanding the reference 'b' in:" + ], + "start_col": 63, + "start_line": 24 + } + }, + "2644": { + "accessible_scopes": [ + "utils.merkle_tree", + "utils.merkle_tree._hash_sorted" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 61, + "end_line": 24, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/utils/merkle_tree.cairo" + }, + "parent_location": [ + { + "end_col": 48, + "end_line": 30, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/utils/merkle_tree.cairo" + }, + "start_col": 47, + "start_line": 30 + }, + "While expanding the reference 'a' in:" + ], + "start_col": 60, + "start_line": 24 + } + }, + "2645": { + "accessible_scopes": [ + "utils.merkle_tree", + "utils.merkle_tree._hash_sorted" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 49, + "end_line": 30, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/utils/merkle_tree.cairo" + }, + "start_col": 19, + "start_line": 30 + } + }, + "2647": { + "accessible_scopes": [ + "utils.merkle_tree", + "utils.merkle_tree._hash_sorted" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 42, + "end_line": 30, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/utils/merkle_tree.cairo" + }, + "parent_location": [ + { + "end_col": 41, + "end_line": 24, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/utils/merkle_tree.cairo" + }, + "parent_location": [ + { + "end_col": 17, + "end_line": 32, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/utils/merkle_tree.cairo" + }, + "start_col": 5, + "start_line": 32 + }, + "While trying to retrieve the implicit argument 'hash_ptr' in:" + ], + "start_col": 19, + "start_line": 24 + }, + "While expanding the reference 'hash_ptr' in:" + ], + "start_col": 34, + "start_line": 30 + } + }, + "2648": { + "accessible_scopes": [ + "utils.merkle_tree", + "utils.merkle_tree._hash_sorted" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 32, + "end_line": 79, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/math_cmp.cairo" + }, + "parent_location": [ + { + "end_col": 30, + "end_line": 25, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/utils/merkle_tree.cairo" + }, + "parent_location": [ + { + "end_col": 58, + "end_line": 24, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/utils/merkle_tree.cairo" + }, + "parent_location": [ + { + "end_col": 17, + "end_line": 32, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/utils/merkle_tree.cairo" + }, + "start_col": 5, + "start_line": 32 + }, + "While trying to retrieve the implicit argument 'range_check_ptr' in:" + ], + "start_col": 43, + "start_line": 24 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 14, + "start_line": 25 + }, + "While trying to update the implicit return value 'range_check_ptr' in:" + ], + "start_col": 17, + "start_line": 79 + } + }, + "2649": { + "accessible_scopes": [ + "utils.merkle_tree", + "utils.merkle_tree._hash_sorted" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 15, + "end_line": 30, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/utils/merkle_tree.cairo" + }, + "parent_location": [ + { + "end_col": 14, + "end_line": 32, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/utils/merkle_tree.cairo" + }, + "start_col": 13, + "start_line": 32 + }, + "While expanding the reference 'n' in:" + ], + "start_col": 14, + "start_line": 30 + } + }, + "2650": { + "accessible_scopes": [ + "utils.merkle_tree", + "utils.merkle_tree._hash_sorted" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 17, + "end_line": 32, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/utils/merkle_tree.cairo" + }, + "start_col": 5, + "start_line": 32 + } + }, + "2651": { + "accessible_scopes": [ + "utils.merkle_tree", + "utils.merkle_tree._merkle_verify_body" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 18, + "end_line": 39, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/utils/merkle_tree.cairo" + }, + "start_col": 5, + "start_line": 39 + } + }, + "2653": { + "accessible_scopes": [ + "utils.merkle_tree", + "utils.merkle_tree._merkle_verify_body" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 7, + "end_line": 41, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/utils/merkle_tree.cairo" + }, + "start_col": 5, + "start_line": 41 + } + }, + "2655": { + "accessible_scopes": [ + "utils.merkle_tree", + "utils.merkle_tree._merkle_verify_body" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 44, + "end_line": 36, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/utils/merkle_tree.cairo" + }, + "parent_location": [ + { + "end_col": 44, + "end_line": 36, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/utils/merkle_tree.cairo" + }, + "parent_location": [ + { + "end_col": 24, + "end_line": 42, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/utils/merkle_tree.cairo" + }, + "start_col": 9, + "start_line": 42 + }, + "While trying to retrieve the implicit argument 'syscall_ptr' in:" + ], + "start_col": 26, + "start_line": 36 + }, + "While expanding the reference 'syscall_ptr' in:" + ], + "start_col": 26, + "start_line": 36 + } + }, + "2656": { + "accessible_scopes": [ + "utils.merkle_tree", + "utils.merkle_tree._merkle_verify_body" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 72, + "end_line": 36, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/utils/merkle_tree.cairo" + }, + "parent_location": [ + { + "end_col": 72, + "end_line": 36, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/utils/merkle_tree.cairo" + }, + "parent_location": [ + { + "end_col": 24, + "end_line": 42, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/utils/merkle_tree.cairo" + }, + "start_col": 9, + "start_line": 42 + }, + "While trying to retrieve the implicit argument 'pedersen_ptr' in:" + ], + "start_col": 46, + "start_line": 36 + }, + "While expanding the reference 'pedersen_ptr' in:" + ], + "start_col": 46, + "start_line": 36 + } + }, + "2657": { + "accessible_scopes": [ + "utils.merkle_tree", + "utils.merkle_tree._merkle_verify_body" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 89, + "end_line": 36, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/utils/merkle_tree.cairo" + }, + "parent_location": [ + { + "end_col": 89, + "end_line": 36, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/utils/merkle_tree.cairo" + }, + "parent_location": [ + { + "end_col": 24, + "end_line": 42, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/utils/merkle_tree.cairo" + }, + "start_col": 9, + "start_line": 42 + }, + "While trying to retrieve the implicit argument 'range_check_ptr' in:" + ], + "start_col": 74, + "start_line": 36 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 74, + "start_line": 36 + } + }, + "2658": { + "accessible_scopes": [ + "utils.merkle_tree", + "utils.merkle_tree._merkle_verify_body" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 15, + "end_line": 37, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/utils/merkle_tree.cairo" + }, + "parent_location": [ + { + "end_col": 21, + "end_line": 42, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/utils/merkle_tree.cairo" + }, + "start_col": 17, + "start_line": 42 + }, + "While expanding the reference 'curr' in:" + ], + "start_col": 5, + "start_line": 37 + } + }, + "2659": { + "accessible_scopes": [ + "utils.merkle_tree", + "utils.merkle_tree._merkle_verify_body" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 24, + "end_line": 42, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/utils/merkle_tree.cairo" + }, + "start_col": 9, + "start_line": 42 + } + }, + "2660": { + "accessible_scopes": [ + "utils.merkle_tree", + "utils.merkle_tree._merkle_verify_body" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 72, + "end_line": 36, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/utils/merkle_tree.cairo" + }, + "parent_location": [ + { + "end_col": 49, + "end_line": 45, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/utils/merkle_tree.cairo" + }, + "start_col": 37, + "start_line": 45 + }, + "While expanding the reference 'pedersen_ptr' in:" + ], + "start_col": 46, + "start_line": 36 + } + }, + "2661": { + "accessible_scopes": [ + "utils.merkle_tree", + "utils.merkle_tree._merkle_verify_body" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 89, + "end_line": 36, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/utils/merkle_tree.cairo" + }, + "parent_location": [ + { + "end_col": 58, + "end_line": 24, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/utils/merkle_tree.cairo" + }, + "parent_location": [ + { + "end_col": 65, + "end_line": 45, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/utils/merkle_tree.cairo" + }, + "start_col": 15, + "start_line": 45 + }, + "While trying to retrieve the implicit argument 'range_check_ptr' in:" + ], + "start_col": 43, + "start_line": 24 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 74, + "start_line": 36 + } + }, + "2662": { + "accessible_scopes": [ + "utils.merkle_tree", + "utils.merkle_tree._merkle_verify_body" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 15, + "end_line": 37, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/utils/merkle_tree.cairo" + }, + "parent_location": [ + { + "end_col": 55, + "end_line": 45, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/utils/merkle_tree.cairo" + }, + "start_col": 51, + "start_line": 45 + }, + "While expanding the reference 'curr' in:" + ], + "start_col": 5, + "start_line": 37 + } + }, + "2663": { + "accessible_scopes": [ + "utils.merkle_tree", + "utils.merkle_tree._merkle_verify_body" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 64, + "end_line": 45, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/utils/merkle_tree.cairo" + }, + "start_col": 57, + "start_line": 45 + } + }, + "2664": { + "accessible_scopes": [ + "utils.merkle_tree", + "utils.merkle_tree._merkle_verify_body" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 65, + "end_line": 45, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/utils/merkle_tree.cairo" + }, + "start_col": 15, + "start_line": 45 + } + }, + "2666": { + "accessible_scopes": [ + "utils.merkle_tree", + "utils.merkle_tree._merkle_verify_body" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 44, + "end_line": 36, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/utils/merkle_tree.cairo" + }, + "parent_location": [ + { + "end_col": 44, + "end_line": 36, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/utils/merkle_tree.cairo" + }, + "parent_location": [ + { + "end_col": 65, + "end_line": 47, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/utils/merkle_tree.cairo" + }, + "start_col": 17, + "start_line": 47 + }, + "While trying to retrieve the implicit argument 'syscall_ptr' in:" + ], + "start_col": 26, + "start_line": 36 + }, + "While expanding the reference 'syscall_ptr' in:" + ], + "start_col": 26, + "start_line": 36 + } + }, + "2667": { + "accessible_scopes": [ + "utils.merkle_tree", + "utils.merkle_tree._merkle_verify_body" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 49, + "end_line": 45, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/utils/merkle_tree.cairo" + }, + "parent_location": [ + { + "end_col": 72, + "end_line": 36, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/utils/merkle_tree.cairo" + }, + "parent_location": [ + { + "end_col": 65, + "end_line": 47, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/utils/merkle_tree.cairo" + }, + "start_col": 17, + "start_line": 47 + }, + "While trying to retrieve the implicit argument 'pedersen_ptr' in:" + ], + "start_col": 46, + "start_line": 36 + }, + "While expanding the reference 'pedersen_ptr' in:" + ], + "start_col": 37, + "start_line": 45 + } + }, + "2668": { + "accessible_scopes": [ + "utils.merkle_tree", + "utils.merkle_tree._merkle_verify_body" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 58, + "end_line": 24, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/utils/merkle_tree.cairo" + }, + "parent_location": [ + { + "end_col": 65, + "end_line": 45, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/utils/merkle_tree.cairo" + }, + "parent_location": [ + { + "end_col": 89, + "end_line": 36, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/utils/merkle_tree.cairo" + }, + "parent_location": [ + { + "end_col": 65, + "end_line": 47, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/utils/merkle_tree.cairo" + }, + "start_col": 17, + "start_line": 47 + }, + "While trying to retrieve the implicit argument 'range_check_ptr' in:" + ], + "start_col": 74, + "start_line": 36 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 15, + "start_line": 45 + }, + "While trying to update the implicit return value 'range_check_ptr' in:" + ], + "start_col": 43, + "start_line": 24 + } + }, + "2669": { + "accessible_scopes": [ + "utils.merkle_tree", + "utils.merkle_tree._merkle_verify_body" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 11, + "end_line": 45, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/utils/merkle_tree.cairo" + }, + "parent_location": [ + { + "end_col": 38, + "end_line": 47, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/utils/merkle_tree.cairo" + }, + "start_col": 37, + "start_line": 47 + }, + "While expanding the reference 'n' in:" + ], + "start_col": 10, + "start_line": 45 + } + }, + "2670": { + "accessible_scopes": [ + "utils.merkle_tree", + "utils.merkle_tree._merkle_verify_body" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 53, + "end_line": 47, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/utils/merkle_tree.cairo" + }, + "start_col": 40, + "start_line": 47 + } + }, + "2672": { + "accessible_scopes": [ + "utils.merkle_tree", + "utils.merkle_tree._merkle_verify_body" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 64, + "end_line": 47, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/utils/merkle_tree.cairo" + }, + "start_col": 55, + "start_line": 47 + } + }, + "2674": { + "accessible_scopes": [ + "utils.merkle_tree", + "utils.merkle_tree._merkle_verify_body" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 65, + "end_line": 47, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/utils/merkle_tree.cairo" + }, + "start_col": 17, + "start_line": 47 + } + }, + "2676": { + "accessible_scopes": [ + "utils.merkle_tree", + "utils.merkle_tree._merkle_verify_body" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 19, + "end_line": 48, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/utils/merkle_tree.cairo" + }, + "start_col": 5, + "start_line": 48 + } + }, + "2677": { + "accessible_scopes": [ + "sheet.library", + "sheet.library.CellUpdated", + "sheet.library.CellUpdated.emit" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 14, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/event/CellUpdated/8220fde17ca5479f12ae71a8036f4d354fe722f2c036da610b53511924e4ee84.cairo" + }, + "parent_location": [ + { + "end_col": 17, + "end_line": 25, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" + }, + "start_col": 6, + "start_line": 25 + }, + "While handling event:" + ], + "start_col": 1, + "start_line": 1 + } + }, + "2679": { + "accessible_scopes": [ + "sheet.library", + "sheet.library.CellUpdated", + "sheet.library.CellUpdated.emit" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 40, + "end_line": 2, + "input_file": { + "filename": "autogen/starknet/event/CellUpdated/8220fde17ca5479f12ae71a8036f4d354fe722f2c036da610b53511924e4ee84.cairo" + }, + "parent_location": [ + { + "end_col": 17, + "end_line": 25, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" + }, + "start_col": 6, + "start_line": 25 + }, + "While handling event:" + ], + "start_col": 33, + "start_line": 2 + } + }, + "2681": { + "accessible_scopes": [ + "sheet.library", + "sheet.library.CellUpdated", + "sheet.library.CellUpdated.emit" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 29, + "end_line": 2, + "input_file": { + "filename": "autogen/starknet/event/CellUpdated/8220fde17ca5479f12ae71a8036f4d354fe722f2c036da610b53511924e4ee84.cairo" + }, + "parent_location": [ + { + "end_col": 17, + "end_line": 25, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" + }, + "start_col": 6, + "start_line": 25 + }, + "While handling event:" + ], + "start_col": 6, + "start_line": 2 + } + }, + "2682": { + "accessible_scopes": [ + "sheet.library", + "sheet.library.CellUpdated", + "sheet.library.CellUpdated.emit" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 31, + "end_line": 3, + "input_file": { + "filename": "autogen/starknet/event/CellUpdated/8220fde17ca5479f12ae71a8036f4d354fe722f2c036da610b53511924e4ee84.cairo" + }, + "parent_location": [ + { + "end_col": 17, + "end_line": 25, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" + }, + "start_col": 6, + "start_line": 25 + }, + "While handling event:" + ], + "start_col": 23, + "start_line": 3 + } + }, + "2684": { + "accessible_scopes": [ + "sheet.library", + "sheet.library.CellUpdated", + "sheet.library.CellUpdated.emit" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 32, + "end_line": 3, + "input_file": { + "filename": "autogen/starknet/event/CellUpdated/8220fde17ca5479f12ae71a8036f4d354fe722f2c036da610b53511924e4ee84.cairo" + }, + "parent_location": [ + { + "end_col": 17, + "end_line": 25, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" + }, + "start_col": 6, + "start_line": 25 + }, + "While handling event:" + ], + "start_col": 1, + "start_line": 3 + } + }, + "2685": { + "accessible_scopes": [ + "sheet.library", + "sheet.library.CellUpdated", + "sheet.library.CellUpdated.emit" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 40, + "end_line": 4, + "input_file": { + "filename": "autogen/starknet/event/CellUpdated/8220fde17ca5479f12ae71a8036f4d354fe722f2c036da610b53511924e4ee84.cairo" + }, + "parent_location": [ + { + "end_col": 17, + "end_line": 25, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" + }, + "start_col": 6, + "start_line": 25 + }, + "While handling event:" + ], + "start_col": 33, + "start_line": 4 + } + }, + "2687": { + "accessible_scopes": [ + "sheet.library", + "sheet.library.CellUpdated", + "sheet.library.CellUpdated.emit" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 29, + "end_line": 4, + "input_file": { + "filename": "autogen/starknet/event/CellUpdated/8220fde17ca5479f12ae71a8036f4d354fe722f2c036da610b53511924e4ee84.cairo" + }, + "parent_location": [ + { + "end_col": 17, + "end_line": 25, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" + }, + "start_col": 6, + "start_line": 25 + }, + "While handling event:" + ], + "start_col": 6, + "start_line": 4 + } + }, + "2688": { + "accessible_scopes": [ + "sheet.library", + "sheet.library.CellUpdated", + "sheet.library.CellUpdated.emit" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 30, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/arg_processor/075e4ad17c5c33f2000b89f716344a0dc5939a8c778eaecf5d50aad0b8c8f6a4.cairo" + }, + "parent_location": [ + { + "end_col": 20, + "end_line": 25, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" + }, + "start_col": 18, + "start_line": 25 + }, + "While handling calldata argument 'id'" + ], + "start_col": 1, + "start_line": 1 + } + }, + "2689": { + "accessible_scopes": [ + "sheet.library", + "sheet.library.CellUpdated", + "sheet.library.CellUpdated.emit" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 33, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/arg_processor/84a24514c1fc47c938055c9b8b555ae76e193c3fe4f1a6a3391748432a916688.cairo" + }, + "parent_location": [ + { + "end_col": 33, + "end_line": 25, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" + }, + "start_col": 28, + "start_line": 25 + }, + "While handling calldata argument 'value'" + ], + "start_col": 1, + "start_line": 1 + } + }, + "2690": { + "accessible_scopes": [ + "sheet.library", + "sheet.library.CellUpdated", + "sheet.library.CellUpdated.emit" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 44, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/arg_processor/46897e8d1eeb70f43de97768fc576e67eb909a92fef3afcd8593de4462cb359f.cairo" + }, + "parent_location": [ + { + "end_col": 57, + "end_line": 25, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" + }, + "start_col": 41, + "start_line": 25 + }, + "While handling calldata argument 'contract_address'" + ], + "start_col": 1, + "start_line": 1 + } + }, + "2691": { + "accessible_scopes": [ + "sheet.library", + "sheet.library.CellUpdated", + "sheet.library.CellUpdated.emit" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 40, + "end_line": 2, + "input_file": { + "filename": "autogen/starknet/arg_processor/46897e8d1eeb70f43de97768fc576e67eb909a92fef3afcd8593de4462cb359f.cairo" + }, + "parent_location": [ + { + "end_col": 57, + "end_line": 25, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" + }, + "parent_location": [ + { + "end_col": 64, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/event/CellUpdated/6150feec30bd48bfd0f446ed8c155a6d911a2c3fb3ec7a980733900416819259.cairo" + }, + "parent_location": [ + { + "end_col": 17, + "end_line": 25, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" + }, + "start_col": 6, + "start_line": 25 + }, + "While handling event:" + ], + "start_col": 50, + "start_line": 1 + }, + "While expanding the reference '__calldata_ptr' in:" + ], + "start_col": 41, + "start_line": 25 + }, + "While handling calldata argument 'contract_address'" + ], + "start_col": 22, + "start_line": 2 + } + }, + "2693": { + "accessible_scopes": [ + "sheet.library", + "sheet.library.CellUpdated", + "sheet.library.CellUpdated.emit" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 29, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/event/CellUpdated/a7a8ae41be29ac9f4f6c3b7837c448d787ca051dd1ade98f409e54d33d112504.cairo" + }, + "parent_location": [ + { + "end_col": 17, + "end_line": 25, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" + }, + "parent_location": [ + { + "end_col": 35, + "end_line": 390, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/starknet/common/syscalls.cairo" + }, + "parent_location": [ + { + "end_col": 95, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/event/CellUpdated/6150feec30bd48bfd0f446ed8c155a6d911a2c3fb3ec7a980733900416819259.cairo" + }, + "parent_location": [ + { + "end_col": 17, + "end_line": 25, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" + }, + "start_col": 6, + "start_line": 25 + }, + "While handling event:" + ], + "start_col": 1, + "start_line": 1 + }, + "While trying to retrieve the implicit argument 'syscall_ptr' in:" + ], + "start_col": 17, + "start_line": 390 + }, + "While expanding the reference 'syscall_ptr' in:" + ], + "start_col": 6, + "start_line": 25 + }, + "While handling event:" + ], + "start_col": 11, + "start_line": 1 + } + }, + "2694": { + "accessible_scopes": [ + "sheet.library", + "sheet.library.CellUpdated", + "sheet.library.CellUpdated.emit" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 22, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/event/CellUpdated/6150feec30bd48bfd0f446ed8c155a6d911a2c3fb3ec7a980733900416819259.cairo" + }, + "parent_location": [ + { + "end_col": 17, + "end_line": 25, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" + }, + "start_col": 6, + "start_line": 25 + }, + "While handling event:" + ], + "start_col": 21, + "start_line": 1 + } + }, + "2696": { + "accessible_scopes": [ + "sheet.library", + "sheet.library.CellUpdated", + "sheet.library.CellUpdated.emit" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 22, + "end_line": 2, + "input_file": { + "filename": "autogen/starknet/event/CellUpdated/8220fde17ca5479f12ae71a8036f4d354fe722f2c036da610b53511924e4ee84.cairo" + }, + "parent_location": [ + { + "end_col": 17, + "end_line": 25, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" + }, + "parent_location": [ + { + "end_col": 39, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/event/CellUpdated/6150feec30bd48bfd0f446ed8c155a6d911a2c3fb3ec7a980733900416819259.cairo" + }, + "parent_location": [ + { + "end_col": 17, + "end_line": 25, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" + }, + "start_col": 6, + "start_line": 25 + }, + "While handling event:" + ], + "start_col": 29, + "start_line": 1 + }, + "While expanding the reference '__keys_ptr' in:" + ], + "start_col": 6, + "start_line": 25 + }, + "While handling event:" + ], + "start_col": 12, + "start_line": 2 + } + }, + "2697": { + "accessible_scopes": [ + "sheet.library", + "sheet.library.CellUpdated", + "sheet.library.CellUpdated.emit" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 77, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/event/CellUpdated/6150feec30bd48bfd0f446ed8c155a6d911a2c3fb3ec7a980733900416819259.cairo" + }, + "parent_location": [ + { + "end_col": 17, + "end_line": 25, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" + }, + "start_col": 6, + "start_line": 25 + }, + "While handling event:" + ], + "start_col": 50, + "start_line": 1 + } + }, + "2698": { + "accessible_scopes": [ + "sheet.library", + "sheet.library.CellUpdated", + "sheet.library.CellUpdated.emit" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 22, + "end_line": 4, + "input_file": { + "filename": "autogen/starknet/event/CellUpdated/8220fde17ca5479f12ae71a8036f4d354fe722f2c036da610b53511924e4ee84.cairo" + }, + "parent_location": [ + { + "end_col": 17, + "end_line": 25, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" + }, + "parent_location": [ + { + "end_col": 94, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/event/CellUpdated/6150feec30bd48bfd0f446ed8c155a6d911a2c3fb3ec7a980733900416819259.cairo" + }, + "parent_location": [ + { + "end_col": 17, + "end_line": 25, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" + }, + "start_col": 6, + "start_line": 25 + }, + "While handling event:" + ], + "start_col": 84, + "start_line": 1 + }, + "While expanding the reference '__data_ptr' in:" + ], + "start_col": 6, + "start_line": 25 + }, + "While handling event:" + ], + "start_col": 12, + "start_line": 4 + } + }, + "2699": { + "accessible_scopes": [ + "sheet.library", + "sheet.library.CellUpdated", + "sheet.library.CellUpdated.emit" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 95, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/event/CellUpdated/6150feec30bd48bfd0f446ed8c155a6d911a2c3fb3ec7a980733900416819259.cairo" + }, + "parent_location": [ + { + "end_col": 17, + "end_line": 25, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" + }, + "start_col": 6, + "start_line": 25 + }, + "While handling event:" + ], + "start_col": 1, + "start_line": 1 + } + }, + "2701": { + "accessible_scopes": [ + "sheet.library", + "sheet.library.CellUpdated", + "sheet.library.CellUpdated.emit" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 46, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/event/CellUpdated/a7a8ae41be29ac9f4f6c3b7837c448d787ca051dd1ade98f409e54d33d112504.cairo" + }, + "parent_location": [ + { + "end_col": 17, + "end_line": 25, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" + }, + "parent_location": [ + { + "end_col": 46, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/event/CellUpdated/a7a8ae41be29ac9f4f6c3b7837c448d787ca051dd1ade98f409e54d33d112504.cairo" + }, + "parent_location": [ + { + "end_col": 17, + "end_line": 25, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" + }, + "parent_location": [ + { + "end_col": 11, + "end_line": 2, + "input_file": { + "filename": "autogen/starknet/event/CellUpdated/6150feec30bd48bfd0f446ed8c155a6d911a2c3fb3ec7a980733900416819259.cairo" + }, + "parent_location": [ + { + "end_col": 17, + "end_line": 25, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" + }, + "start_col": 6, + "start_line": 25 + }, + "While handling event:" + ], + "start_col": 1, + "start_line": 2 + }, + "While trying to retrieve the implicit argument 'range_check_ptr' in:" + ], + "start_col": 6, + "start_line": 25 + }, + "While handling event:" + ], + "start_col": 31, + "start_line": 1 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 6, + "start_line": 25 + }, + "While handling event:" + ], + "start_col": 31, + "start_line": 1 + } + }, + "2702": { + "accessible_scopes": [ + "sheet.library", + "sheet.library.CellUpdated", + "sheet.library.CellUpdated.emit" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 11, + "end_line": 2, + "input_file": { + "filename": "autogen/starknet/event/CellUpdated/6150feec30bd48bfd0f446ed8c155a6d911a2c3fb3ec7a980733900416819259.cairo" + }, + "parent_location": [ + { + "end_col": 17, + "end_line": 25, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" + }, + "start_col": 6, + "start_line": 25 + }, + "While handling event:" + ], + "start_col": 1, + "start_line": 2 + } + }, + "2703": { + "accessible_scopes": [ + "sheet.library", + "sheet.library.Sheet_cell_renderer", + "sheet.library.Sheet_cell_renderer.addr" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 41, + "end_line": 7, + "input_file": { + "filename": "autogen/starknet/storage_var/Sheet_cell_renderer/impl.cairo" + }, + "parent_location": [ + { + "end_col": 41, + "end_line": 7, + "input_file": { + "filename": "autogen/starknet/storage_var/Sheet_cell_renderer/decl.cairo" + }, + "parent_location": [ + { + "end_col": 26, + "end_line": 9, + "input_file": { + "filename": "autogen/starknet/storage_var/Sheet_cell_renderer/impl.cairo" + }, + "start_col": 9, + "start_line": 9 + }, + "While trying to retrieve the implicit argument 'pedersen_ptr' in:" + ], + "start_col": 15, + "start_line": 7 + }, + "While expanding the reference 'pedersen_ptr' in:" + ], + "start_col": 15, + "start_line": 7 + } + }, + "2704": { + "accessible_scopes": [ + "sheet.library", + "sheet.library.Sheet_cell_renderer", + "sheet.library.Sheet_cell_renderer.addr" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 58, + "end_line": 7, + "input_file": { + "filename": "autogen/starknet/storage_var/Sheet_cell_renderer/impl.cairo" + }, + "parent_location": [ + { + "end_col": 58, + "end_line": 7, + "input_file": { + "filename": "autogen/starknet/storage_var/Sheet_cell_renderer/decl.cairo" + }, + "parent_location": [ + { + "end_col": 26, + "end_line": 9, + "input_file": { + "filename": "autogen/starknet/storage_var/Sheet_cell_renderer/impl.cairo" + }, + "start_col": 9, + "start_line": 9 + }, + "While trying to retrieve the implicit argument 'range_check_ptr' in:" + ], + "start_col": 43, + "start_line": 7 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 43, + "start_line": 7 + } + }, + "2705": { + "accessible_scopes": [ + "sheet.library", + "sheet.library.Sheet_cell_renderer", + "sheet.library.Sheet_cell_renderer.addr" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 95, + "end_line": 8, + "input_file": { + "filename": "autogen/starknet/storage_var/Sheet_cell_renderer/impl.cairo" + }, + "parent_location": [ + { + "end_col": 24, + "end_line": 9, + "input_file": { + "filename": "autogen/starknet/storage_var/Sheet_cell_renderer/impl.cairo" + }, + "start_col": 21, + "start_line": 9 + }, + "While expanding the reference 'res' in:" + ], + "start_col": 19, + "start_line": 8 + } + }, + "2707": { + "accessible_scopes": [ + "sheet.library", + "sheet.library.Sheet_cell_renderer", + "sheet.library.Sheet_cell_renderer.addr" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 26, + "end_line": 9, + "input_file": { + "filename": "autogen/starknet/storage_var/Sheet_cell_renderer/impl.cairo" + }, + "start_col": 9, + "start_line": 9 + } + }, + "2708": { + "accessible_scopes": [ + "sheet.library", + "sheet.library.Sheet_cell_renderer", + "sheet.library.Sheet_cell_renderer.read" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 61, + "end_line": 12, + "input_file": { + "filename": "autogen/starknet/storage_var/Sheet_cell_renderer/impl.cairo" + }, + "parent_location": [ + { + "end_col": 41, + "end_line": 7, + "input_file": { + "filename": "autogen/starknet/storage_var/Sheet_cell_renderer/decl.cairo" + }, + "parent_location": [ + { + "end_col": 36, + "end_line": 15, + "input_file": { + "filename": "autogen/starknet/storage_var/Sheet_cell_renderer/impl.cairo" + }, + "start_col": 30, + "start_line": 15 + }, + "While trying to retrieve the implicit argument 'pedersen_ptr' in:" + ], + "start_col": 15, + "start_line": 7 + }, + "While expanding the reference 'pedersen_ptr' in:" + ], + "start_col": 35, + "start_line": 12 + } + }, + "2709": { + "accessible_scopes": [ + "sheet.library", + "sheet.library.Sheet_cell_renderer", + "sheet.library.Sheet_cell_renderer.read" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 78, + "end_line": 12, + "input_file": { + "filename": "autogen/starknet/storage_var/Sheet_cell_renderer/impl.cairo" + }, + "parent_location": [ + { + "end_col": 58, + "end_line": 7, + "input_file": { + "filename": "autogen/starknet/storage_var/Sheet_cell_renderer/decl.cairo" + }, + "parent_location": [ + { + "end_col": 36, + "end_line": 15, + "input_file": { + "filename": "autogen/starknet/storage_var/Sheet_cell_renderer/impl.cairo" + }, + "start_col": 30, + "start_line": 15 + }, + "While trying to retrieve the implicit argument 'range_check_ptr' in:" + ], + "start_col": 43, + "start_line": 7 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 63, + "start_line": 12 + } + }, + "2710": { + "accessible_scopes": [ + "sheet.library", + "sheet.library.Sheet_cell_renderer", + "sheet.library.Sheet_cell_renderer.read" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 36, + "end_line": 15, + "input_file": { + "filename": "autogen/starknet/storage_var/Sheet_cell_renderer/impl.cairo" + }, + "start_col": 30, + "start_line": 15 + } + }, + "2712": { + "accessible_scopes": [ + "sheet.library", + "sheet.library.Sheet_cell_renderer", + "sheet.library.Sheet_cell_renderer.read" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 33, + "end_line": 12, + "input_file": { + "filename": "autogen/starknet/storage_var/Sheet_cell_renderer/impl.cairo" + }, + "parent_location": [ + { + "end_col": 37, + "end_line": 352, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/starknet/common/syscalls.cairo" + }, + "parent_location": [ + { + "end_col": 75, + "end_line": 16, + "input_file": { + "filename": "autogen/starknet/storage_var/Sheet_cell_renderer/impl.cairo" + }, + "start_col": 37, + "start_line": 16 + }, + "While trying to retrieve the implicit argument 'syscall_ptr' in:" + ], + "start_col": 19, + "start_line": 352 + }, + "While expanding the reference 'syscall_ptr' in:" + ], + "start_col": 15, + "start_line": 12 + } + }, + "2713": { + "accessible_scopes": [ + "sheet.library", + "sheet.library.Sheet_cell_renderer", + "sheet.library.Sheet_cell_renderer.read" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 26, + "end_line": 15, + "input_file": { + "filename": "autogen/starknet/storage_var/Sheet_cell_renderer/impl.cairo" + }, + "parent_location": [ + { + "end_col": 70, + "end_line": 16, + "input_file": { + "filename": "autogen/starknet/storage_var/Sheet_cell_renderer/impl.cairo" + }, + "start_col": 58, + "start_line": 16 + }, + "While expanding the reference 'storage_addr' in:" + ], + "start_col": 14, + "start_line": 15 + } + }, + "2714": { + "accessible_scopes": [ + "sheet.library", + "sheet.library.Sheet_cell_renderer", + "sheet.library.Sheet_cell_renderer.read" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 75, + "end_line": 16, + "input_file": { + "filename": "autogen/starknet/storage_var/Sheet_cell_renderer/impl.cairo" + }, + "start_col": 37, + "start_line": 16 + } + }, + "2716": { + "accessible_scopes": [ + "sheet.library", + "sheet.library.Sheet_cell_renderer", + "sheet.library.Sheet_cell_renderer.read" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 37, + "end_line": 352, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/starknet/common/syscalls.cairo" + }, + "parent_location": [ + { + "end_col": 75, + "end_line": 16, + "input_file": { + "filename": "autogen/starknet/storage_var/Sheet_cell_renderer/impl.cairo" + }, + "parent_location": [ + { + "end_col": 42, + "end_line": 18, + "input_file": { + "filename": "autogen/starknet/storage_var/Sheet_cell_renderer/impl.cairo" + }, + "start_col": 31, + "start_line": 18 + }, + "While expanding the reference 'syscall_ptr' in:" + ], + "start_col": 37, + "start_line": 16 + }, + "While trying to update the implicit return value 'syscall_ptr' in:" + ], + "start_col": 19, + "start_line": 352 + } + }, + "2717": { + "accessible_scopes": [ + "sheet.library", + "sheet.library.Sheet_cell_renderer", + "sheet.library.Sheet_cell_renderer.read" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 41, + "end_line": 7, + "input_file": { + "filename": "autogen/starknet/storage_var/Sheet_cell_renderer/decl.cairo" + }, + "parent_location": [ + { + "end_col": 36, + "end_line": 15, + "input_file": { + "filename": "autogen/starknet/storage_var/Sheet_cell_renderer/impl.cairo" + }, + "parent_location": [ + { + "end_col": 44, + "end_line": 19, + "input_file": { + "filename": "autogen/starknet/storage_var/Sheet_cell_renderer/impl.cairo" + }, + "start_col": 32, + "start_line": 19 + }, + "While expanding the reference 'pedersen_ptr' in:" + ], + "start_col": 30, + "start_line": 15 + }, + "While trying to update the implicit return value 'pedersen_ptr' in:" + ], + "start_col": 15, + "start_line": 7 + } + }, + "2718": { + "accessible_scopes": [ + "sheet.library", + "sheet.library.Sheet_cell_renderer", + "sheet.library.Sheet_cell_renderer.read" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 58, + "end_line": 7, + "input_file": { + "filename": "autogen/starknet/storage_var/Sheet_cell_renderer/decl.cairo" + }, + "parent_location": [ + { + "end_col": 36, + "end_line": 15, + "input_file": { + "filename": "autogen/starknet/storage_var/Sheet_cell_renderer/impl.cairo" + }, + "parent_location": [ + { + "end_col": 50, + "end_line": 20, + "input_file": { + "filename": "autogen/starknet/storage_var/Sheet_cell_renderer/impl.cairo" + }, + "start_col": 35, + "start_line": 20 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 30, + "start_line": 15 + }, + "While trying to update the implicit return value 'range_check_ptr' in:" + ], + "start_col": 43, + "start_line": 7 + } + }, + "2719": { + "accessible_scopes": [ + "sheet.library", + "sheet.library.Sheet_cell_renderer", + "sheet.library.Sheet_cell_renderer.read" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 33, + "end_line": 16, + "input_file": { + "filename": "autogen/starknet/storage_var/Sheet_cell_renderer/impl.cairo" + }, + "parent_location": [ + { + "end_col": 64, + "end_line": 21, + "input_file": { + "filename": "autogen/starknet/storage_var/Sheet_cell_renderer/impl.cairo" + }, + "start_col": 45, + "start_line": 21 + }, + "While expanding the reference '__storage_var_temp0' in:" + ], + "start_col": 14, + "start_line": 16 + } + }, + "2720": { + "accessible_scopes": [ + "sheet.library", + "sheet.library.Sheet_cell_renderer", + "sheet.library.Sheet_cell_renderer.read" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 55, + "end_line": 22, + "input_file": { + "filename": "autogen/starknet/storage_var/Sheet_cell_renderer/impl.cairo" + }, + "start_col": 9, + "start_line": 22 + } + }, + "2721": { + "accessible_scopes": [ + "sheet.library", + "sheet.library.Sheet_cell_renderer", + "sheet.library.Sheet_cell_renderer.write" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 62, + "end_line": 25, + "input_file": { + "filename": "autogen/starknet/storage_var/Sheet_cell_renderer/impl.cairo" + }, + "parent_location": [ + { + "end_col": 41, + "end_line": 7, + "input_file": { + "filename": "autogen/starknet/storage_var/Sheet_cell_renderer/decl.cairo" + }, + "parent_location": [ + { + "end_col": 36, + "end_line": 26, + "input_file": { + "filename": "autogen/starknet/storage_var/Sheet_cell_renderer/impl.cairo" + }, + "start_col": 30, + "start_line": 26 + }, + "While trying to retrieve the implicit argument 'pedersen_ptr' in:" + ], + "start_col": 15, + "start_line": 7 + }, + "While expanding the reference 'pedersen_ptr' in:" + ], + "start_col": 36, + "start_line": 25 + } + }, + "2722": { + "accessible_scopes": [ + "sheet.library", + "sheet.library.Sheet_cell_renderer", + "sheet.library.Sheet_cell_renderer.write" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 79, + "end_line": 25, + "input_file": { + "filename": "autogen/starknet/storage_var/Sheet_cell_renderer/impl.cairo" + }, + "parent_location": [ + { + "end_col": 58, + "end_line": 7, + "input_file": { + "filename": "autogen/starknet/storage_var/Sheet_cell_renderer/decl.cairo" + }, + "parent_location": [ + { + "end_col": 36, + "end_line": 26, + "input_file": { + "filename": "autogen/starknet/storage_var/Sheet_cell_renderer/impl.cairo" + }, + "start_col": 30, + "start_line": 26 + }, + "While trying to retrieve the implicit argument 'range_check_ptr' in:" + ], + "start_col": 43, + "start_line": 7 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 64, + "start_line": 25 + } + }, + "2723": { + "accessible_scopes": [ + "sheet.library", + "sheet.library.Sheet_cell_renderer", + "sheet.library.Sheet_cell_renderer.write" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 36, + "end_line": 26, + "input_file": { + "filename": "autogen/starknet/storage_var/Sheet_cell_renderer/impl.cairo" + }, + "start_col": 30, + "start_line": 26 + } + }, + "2725": { + "accessible_scopes": [ + "sheet.library", + "sheet.library.Sheet_cell_renderer", + "sheet.library.Sheet_cell_renderer.write" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 34, + "end_line": 25, + "input_file": { + "filename": "autogen/starknet/storage_var/Sheet_cell_renderer/impl.cairo" + }, + "parent_location": [ + { + "end_col": 38, + "end_line": 370, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/starknet/common/syscalls.cairo" + }, + "parent_location": [ + { + "end_col": 80, + "end_line": 27, + "input_file": { + "filename": "autogen/starknet/storage_var/Sheet_cell_renderer/impl.cairo" + }, + "start_col": 9, + "start_line": 27 + }, + "While trying to retrieve the implicit argument 'syscall_ptr' in:" + ], + "start_col": 20, + "start_line": 370 + }, + "While expanding the reference 'syscall_ptr' in:" + ], + "start_col": 16, + "start_line": 25 + } + }, + "2726": { + "accessible_scopes": [ + "sheet.library", + "sheet.library.Sheet_cell_renderer", + "sheet.library.Sheet_cell_renderer.write" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 26, + "end_line": 26, + "input_file": { + "filename": "autogen/starknet/storage_var/Sheet_cell_renderer/impl.cairo" + }, + "parent_location": [ + { + "end_col": 43, + "end_line": 27, + "input_file": { + "filename": "autogen/starknet/storage_var/Sheet_cell_renderer/impl.cairo" + }, + "start_col": 31, + "start_line": 27 + }, + "While expanding the reference 'storage_addr' in:" + ], + "start_col": 14, + "start_line": 26 + } + }, + "2727": { + "accessible_scopes": [ + "sheet.library", + "sheet.library.Sheet_cell_renderer", + "sheet.library.Sheet_cell_renderer.write" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 79, + "end_line": 27, + "input_file": { + "filename": "autogen/starknet/storage_var/Sheet_cell_renderer/impl.cairo" + }, + "start_col": 55, + "start_line": 27 + } + }, + "2728": { + "accessible_scopes": [ + "sheet.library", + "sheet.library.Sheet_cell_renderer", + "sheet.library.Sheet_cell_renderer.write" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 80, + "end_line": 27, + "input_file": { + "filename": "autogen/starknet/storage_var/Sheet_cell_renderer/impl.cairo" + }, + "start_col": 9, + "start_line": 27 + } + }, + "2730": { + "accessible_scopes": [ + "sheet.library", + "sheet.library.Sheet_cell_renderer", + "sheet.library.Sheet_cell_renderer.write" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 41, + "end_line": 7, + "input_file": { + "filename": "autogen/starknet/storage_var/Sheet_cell_renderer/decl.cairo" + }, + "parent_location": [ + { + "end_col": 36, + "end_line": 26, + "input_file": { + "filename": "autogen/starknet/storage_var/Sheet_cell_renderer/impl.cairo" + }, + "parent_location": [ + { + "end_col": 62, + "end_line": 21, + "input_file": { + "filename": "autogen/starknet/storage_var/Sheet_cell_renderer/decl.cairo" + }, + "parent_location": [ + { + "end_col": 19, + "end_line": 28, + "input_file": { + "filename": "autogen/starknet/storage_var/Sheet_cell_renderer/impl.cairo" + }, + "start_col": 9, + "start_line": 28 + }, + "While trying to retrieve the implicit argument 'pedersen_ptr' in:" + ], + "start_col": 36, + "start_line": 21 + }, + "While expanding the reference 'pedersen_ptr' in:" + ], + "start_col": 30, + "start_line": 26 + }, + "While trying to update the implicit return value 'pedersen_ptr' in:" + ], + "start_col": 15, + "start_line": 7 + } + }, + "2731": { + "accessible_scopes": [ + "sheet.library", + "sheet.library.Sheet_cell_renderer", + "sheet.library.Sheet_cell_renderer.write" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 58, + "end_line": 7, + "input_file": { + "filename": "autogen/starknet/storage_var/Sheet_cell_renderer/decl.cairo" + }, + "parent_location": [ + { + "end_col": 36, + "end_line": 26, + "input_file": { + "filename": "autogen/starknet/storage_var/Sheet_cell_renderer/impl.cairo" + }, + "parent_location": [ + { + "end_col": 79, + "end_line": 21, + "input_file": { + "filename": "autogen/starknet/storage_var/Sheet_cell_renderer/decl.cairo" + }, + "parent_location": [ + { + "end_col": 19, + "end_line": 28, + "input_file": { + "filename": "autogen/starknet/storage_var/Sheet_cell_renderer/impl.cairo" + }, + "start_col": 9, + "start_line": 28 + }, + "While trying to retrieve the implicit argument 'range_check_ptr' in:" + ], + "start_col": 64, + "start_line": 21 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 30, + "start_line": 26 + }, + "While trying to update the implicit return value 'range_check_ptr' in:" + ], + "start_col": 43, + "start_line": 7 + } + }, + "2732": { + "accessible_scopes": [ + "sheet.library", + "sheet.library.Sheet_cell_renderer", + "sheet.library.Sheet_cell_renderer.write" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 19, + "end_line": 28, + "input_file": { + "filename": "autogen/starknet/storage_var/Sheet_cell_renderer/impl.cairo" + }, + "start_col": 9, + "start_line": 28 + } + }, + "2733": { + "accessible_scopes": [ + "sheet.library", + "sheet.library.Sheet_merkle_root", + "sheet.library.Sheet_merkle_root.addr" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 41, + "end_line": 7, + "input_file": { + "filename": "autogen/starknet/storage_var/Sheet_merkle_root/impl.cairo" + }, + "parent_location": [ + { + "end_col": 41, + "end_line": 7, + "input_file": { + "filename": "autogen/starknet/storage_var/Sheet_merkle_root/decl.cairo" + }, + "parent_location": [ + { + "end_col": 26, + "end_line": 9, + "input_file": { + "filename": "autogen/starknet/storage_var/Sheet_merkle_root/impl.cairo" + }, + "start_col": 9, + "start_line": 9 + }, + "While trying to retrieve the implicit argument 'pedersen_ptr' in:" + ], + "start_col": 15, + "start_line": 7 + }, + "While expanding the reference 'pedersen_ptr' in:" + ], + "start_col": 15, + "start_line": 7 + } + }, + "2734": { + "accessible_scopes": [ + "sheet.library", + "sheet.library.Sheet_merkle_root", + "sheet.library.Sheet_merkle_root.addr" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 58, + "end_line": 7, + "input_file": { + "filename": "autogen/starknet/storage_var/Sheet_merkle_root/impl.cairo" + }, + "parent_location": [ + { + "end_col": 58, + "end_line": 7, + "input_file": { + "filename": "autogen/starknet/storage_var/Sheet_merkle_root/decl.cairo" + }, + "parent_location": [ + { + "end_col": 26, + "end_line": 9, + "input_file": { + "filename": "autogen/starknet/storage_var/Sheet_merkle_root/impl.cairo" + }, + "start_col": 9, + "start_line": 9 + }, + "While trying to retrieve the implicit argument 'range_check_ptr' in:" + ], + "start_col": 43, + "start_line": 7 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 43, + "start_line": 7 + } + }, + "2735": { + "accessible_scopes": [ + "sheet.library", + "sheet.library.Sheet_merkle_root", + "sheet.library.Sheet_merkle_root.addr" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 94, + "end_line": 8, + "input_file": { + "filename": "autogen/starknet/storage_var/Sheet_merkle_root/impl.cairo" + }, + "parent_location": [ + { + "end_col": 24, + "end_line": 9, + "input_file": { + "filename": "autogen/starknet/storage_var/Sheet_merkle_root/impl.cairo" + }, + "start_col": 21, + "start_line": 9 + }, + "While expanding the reference 'res' in:" + ], + "start_col": 19, + "start_line": 8 + } + }, + "2737": { + "accessible_scopes": [ + "sheet.library", + "sheet.library.Sheet_merkle_root", + "sheet.library.Sheet_merkle_root.addr" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 26, + "end_line": 9, + "input_file": { + "filename": "autogen/starknet/storage_var/Sheet_merkle_root/impl.cairo" + }, + "start_col": 9, + "start_line": 9 + } + }, + "2738": { + "accessible_scopes": [ + "sheet.library", + "sheet.library.Sheet_merkle_root", + "sheet.library.Sheet_merkle_root.read" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 61, + "end_line": 12, + "input_file": { + "filename": "autogen/starknet/storage_var/Sheet_merkle_root/impl.cairo" + }, + "parent_location": [ + { + "end_col": 41, + "end_line": 7, + "input_file": { + "filename": "autogen/starknet/storage_var/Sheet_merkle_root/decl.cairo" + }, + "parent_location": [ + { + "end_col": 36, + "end_line": 13, + "input_file": { + "filename": "autogen/starknet/storage_var/Sheet_merkle_root/impl.cairo" + }, + "start_col": 30, + "start_line": 13 + }, + "While trying to retrieve the implicit argument 'pedersen_ptr' in:" + ], + "start_col": 15, + "start_line": 7 + }, + "While expanding the reference 'pedersen_ptr' in:" + ], + "start_col": 35, + "start_line": 12 + } + }, + "2739": { + "accessible_scopes": [ + "sheet.library", + "sheet.library.Sheet_merkle_root", + "sheet.library.Sheet_merkle_root.read" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 78, + "end_line": 12, + "input_file": { + "filename": "autogen/starknet/storage_var/Sheet_merkle_root/impl.cairo" + }, + "parent_location": [ + { + "end_col": 58, + "end_line": 7, + "input_file": { + "filename": "autogen/starknet/storage_var/Sheet_merkle_root/decl.cairo" + }, + "parent_location": [ + { + "end_col": 36, + "end_line": 13, + "input_file": { + "filename": "autogen/starknet/storage_var/Sheet_merkle_root/impl.cairo" + }, + "start_col": 30, + "start_line": 13 + }, + "While trying to retrieve the implicit argument 'range_check_ptr' in:" + ], + "start_col": 43, + "start_line": 7 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 63, + "start_line": 12 + } + }, + "2740": { + "accessible_scopes": [ + "sheet.library", + "sheet.library.Sheet_merkle_root", + "sheet.library.Sheet_merkle_root.read" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 36, + "end_line": 13, + "input_file": { + "filename": "autogen/starknet/storage_var/Sheet_merkle_root/impl.cairo" + }, + "start_col": 30, + "start_line": 13 + } + }, + "2742": { + "accessible_scopes": [ + "sheet.library", + "sheet.library.Sheet_merkle_root", + "sheet.library.Sheet_merkle_root.read" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 33, + "end_line": 12, + "input_file": { + "filename": "autogen/starknet/storage_var/Sheet_merkle_root/impl.cairo" + }, + "parent_location": [ + { + "end_col": 37, + "end_line": 352, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/starknet/common/syscalls.cairo" + }, + "parent_location": [ + { + "end_col": 75, + "end_line": 14, + "input_file": { + "filename": "autogen/starknet/storage_var/Sheet_merkle_root/impl.cairo" + }, + "start_col": 37, + "start_line": 14 + }, + "While trying to retrieve the implicit argument 'syscall_ptr' in:" + ], + "start_col": 19, + "start_line": 352 + }, + "While expanding the reference 'syscall_ptr' in:" + ], + "start_col": 15, + "start_line": 12 + } + }, + "2743": { + "accessible_scopes": [ + "sheet.library", + "sheet.library.Sheet_merkle_root", + "sheet.library.Sheet_merkle_root.read" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 26, + "end_line": 13, + "input_file": { + "filename": "autogen/starknet/storage_var/Sheet_merkle_root/impl.cairo" + }, + "parent_location": [ + { + "end_col": 70, + "end_line": 14, + "input_file": { + "filename": "autogen/starknet/storage_var/Sheet_merkle_root/impl.cairo" + }, + "start_col": 58, + "start_line": 14 + }, + "While expanding the reference 'storage_addr' in:" + ], + "start_col": 14, + "start_line": 13 + } + }, + "2744": { + "accessible_scopes": [ + "sheet.library", + "sheet.library.Sheet_merkle_root", + "sheet.library.Sheet_merkle_root.read" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 75, + "end_line": 14, + "input_file": { + "filename": "autogen/starknet/storage_var/Sheet_merkle_root/impl.cairo" + }, + "start_col": 37, + "start_line": 14 + } + }, + "2746": { + "accessible_scopes": [ + "sheet.library", + "sheet.library.Sheet_merkle_root", + "sheet.library.Sheet_merkle_root.read" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 37, + "end_line": 352, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/starknet/common/syscalls.cairo" + }, + "parent_location": [ + { + "end_col": 75, + "end_line": 14, + "input_file": { + "filename": "autogen/starknet/storage_var/Sheet_merkle_root/impl.cairo" + }, + "parent_location": [ + { + "end_col": 42, + "end_line": 16, + "input_file": { + "filename": "autogen/starknet/storage_var/Sheet_merkle_root/impl.cairo" + }, + "start_col": 31, + "start_line": 16 + }, + "While expanding the reference 'syscall_ptr' in:" + ], + "start_col": 37, + "start_line": 14 + }, + "While trying to update the implicit return value 'syscall_ptr' in:" + ], + "start_col": 19, + "start_line": 352 + } + }, + "2747": { + "accessible_scopes": [ + "sheet.library", + "sheet.library.Sheet_merkle_root", + "sheet.library.Sheet_merkle_root.read" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 41, + "end_line": 7, + "input_file": { + "filename": "autogen/starknet/storage_var/Sheet_merkle_root/decl.cairo" + }, + "parent_location": [ + { + "end_col": 36, + "end_line": 13, + "input_file": { + "filename": "autogen/starknet/storage_var/Sheet_merkle_root/impl.cairo" + }, + "parent_location": [ + { + "end_col": 44, + "end_line": 17, + "input_file": { + "filename": "autogen/starknet/storage_var/Sheet_merkle_root/impl.cairo" + }, + "start_col": 32, + "start_line": 17 + }, + "While expanding the reference 'pedersen_ptr' in:" + ], + "start_col": 30, + "start_line": 13 + }, + "While trying to update the implicit return value 'pedersen_ptr' in:" + ], + "start_col": 15, + "start_line": 7 + } + }, + "2748": { + "accessible_scopes": [ + "sheet.library", + "sheet.library.Sheet_merkle_root", + "sheet.library.Sheet_merkle_root.read" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 58, + "end_line": 7, + "input_file": { + "filename": "autogen/starknet/storage_var/Sheet_merkle_root/decl.cairo" + }, + "parent_location": [ + { + "end_col": 36, + "end_line": 13, + "input_file": { + "filename": "autogen/starknet/storage_var/Sheet_merkle_root/impl.cairo" + }, + "parent_location": [ + { + "end_col": 50, + "end_line": 18, + "input_file": { + "filename": "autogen/starknet/storage_var/Sheet_merkle_root/impl.cairo" + }, + "start_col": 35, + "start_line": 18 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 30, + "start_line": 13 + }, + "While trying to update the implicit return value 'range_check_ptr' in:" + ], + "start_col": 43, + "start_line": 7 + } + }, + "2749": { + "accessible_scopes": [ + "sheet.library", + "sheet.library.Sheet_merkle_root", + "sheet.library.Sheet_merkle_root.read" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 33, + "end_line": 14, + "input_file": { + "filename": "autogen/starknet/storage_var/Sheet_merkle_root/impl.cairo" + }, + "parent_location": [ + { + "end_col": 64, + "end_line": 19, + "input_file": { + "filename": "autogen/starknet/storage_var/Sheet_merkle_root/impl.cairo" + }, + "start_col": 45, + "start_line": 19 + }, + "While expanding the reference '__storage_var_temp0' in:" + ], + "start_col": 14, + "start_line": 14 + } + }, + "2750": { + "accessible_scopes": [ + "sheet.library", + "sheet.library.Sheet_merkle_root", + "sheet.library.Sheet_merkle_root.read" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 55, + "end_line": 20, + "input_file": { + "filename": "autogen/starknet/storage_var/Sheet_merkle_root/impl.cairo" + }, + "start_col": 9, + "start_line": 20 + } + }, + "2751": { + "accessible_scopes": [ + "sheet.library", + "sheet.library.Sheet_merkle_root", + "sheet.library.Sheet_merkle_root.write" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 62, + "end_line": 23, + "input_file": { + "filename": "autogen/starknet/storage_var/Sheet_merkle_root/impl.cairo" + }, + "parent_location": [ + { + "end_col": 41, + "end_line": 7, + "input_file": { + "filename": "autogen/starknet/storage_var/Sheet_merkle_root/decl.cairo" + }, + "parent_location": [ + { + "end_col": 36, + "end_line": 24, + "input_file": { + "filename": "autogen/starknet/storage_var/Sheet_merkle_root/impl.cairo" + }, + "start_col": 30, + "start_line": 24 + }, + "While trying to retrieve the implicit argument 'pedersen_ptr' in:" + ], + "start_col": 15, + "start_line": 7 + }, + "While expanding the reference 'pedersen_ptr' in:" + ], + "start_col": 36, + "start_line": 23 + } + }, + "2752": { + "accessible_scopes": [ + "sheet.library", + "sheet.library.Sheet_merkle_root", + "sheet.library.Sheet_merkle_root.write" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 79, + "end_line": 23, + "input_file": { + "filename": "autogen/starknet/storage_var/Sheet_merkle_root/impl.cairo" + }, + "parent_location": [ + { + "end_col": 58, + "end_line": 7, + "input_file": { + "filename": "autogen/starknet/storage_var/Sheet_merkle_root/decl.cairo" + }, + "parent_location": [ + { + "end_col": 36, + "end_line": 24, + "input_file": { + "filename": "autogen/starknet/storage_var/Sheet_merkle_root/impl.cairo" + }, + "start_col": 30, + "start_line": 24 + }, + "While trying to retrieve the implicit argument 'range_check_ptr' in:" + ], + "start_col": 43, + "start_line": 7 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 64, + "start_line": 23 + } + }, + "2753": { + "accessible_scopes": [ + "sheet.library", + "sheet.library.Sheet_merkle_root", + "sheet.library.Sheet_merkle_root.write" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 36, + "end_line": 24, + "input_file": { + "filename": "autogen/starknet/storage_var/Sheet_merkle_root/impl.cairo" + }, + "start_col": 30, + "start_line": 24 + } + }, + "2755": { + "accessible_scopes": [ + "sheet.library", + "sheet.library.Sheet_merkle_root", + "sheet.library.Sheet_merkle_root.write" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 34, + "end_line": 23, + "input_file": { + "filename": "autogen/starknet/storage_var/Sheet_merkle_root/impl.cairo" + }, + "parent_location": [ + { + "end_col": 38, + "end_line": 370, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/starknet/common/syscalls.cairo" + }, + "parent_location": [ + { + "end_col": 80, + "end_line": 25, + "input_file": { + "filename": "autogen/starknet/storage_var/Sheet_merkle_root/impl.cairo" + }, + "start_col": 9, + "start_line": 25 + }, + "While trying to retrieve the implicit argument 'syscall_ptr' in:" + ], + "start_col": 20, + "start_line": 370 + }, + "While expanding the reference 'syscall_ptr' in:" + ], + "start_col": 16, + "start_line": 23 + } + }, + "2756": { + "accessible_scopes": [ + "sheet.library", + "sheet.library.Sheet_merkle_root", + "sheet.library.Sheet_merkle_root.write" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 26, + "end_line": 24, + "input_file": { + "filename": "autogen/starknet/storage_var/Sheet_merkle_root/impl.cairo" + }, + "parent_location": [ + { + "end_col": 43, + "end_line": 25, + "input_file": { + "filename": "autogen/starknet/storage_var/Sheet_merkle_root/impl.cairo" + }, + "start_col": 31, + "start_line": 25 + }, + "While expanding the reference 'storage_addr' in:" + ], + "start_col": 14, + "start_line": 24 + } + }, + "2757": { + "accessible_scopes": [ + "sheet.library", + "sheet.library.Sheet_merkle_root", + "sheet.library.Sheet_merkle_root.write" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 79, + "end_line": 25, + "input_file": { + "filename": "autogen/starknet/storage_var/Sheet_merkle_root/impl.cairo" + }, + "start_col": 55, + "start_line": 25 + } + }, + "2758": { + "accessible_scopes": [ + "sheet.library", + "sheet.library.Sheet_merkle_root", + "sheet.library.Sheet_merkle_root.write" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 80, + "end_line": 25, + "input_file": { + "filename": "autogen/starknet/storage_var/Sheet_merkle_root/impl.cairo" + }, + "start_col": 9, + "start_line": 25 + } + }, + "2760": { + "accessible_scopes": [ + "sheet.library", + "sheet.library.Sheet_merkle_root", + "sheet.library.Sheet_merkle_root.write" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 41, + "end_line": 7, + "input_file": { + "filename": "autogen/starknet/storage_var/Sheet_merkle_root/decl.cairo" + }, + "parent_location": [ + { + "end_col": 36, + "end_line": 24, + "input_file": { + "filename": "autogen/starknet/storage_var/Sheet_merkle_root/impl.cairo" + }, + "parent_location": [ + { + "end_col": 62, + "end_line": 19, + "input_file": { + "filename": "autogen/starknet/storage_var/Sheet_merkle_root/decl.cairo" + }, + "parent_location": [ + { + "end_col": 19, + "end_line": 26, + "input_file": { + "filename": "autogen/starknet/storage_var/Sheet_merkle_root/impl.cairo" + }, + "start_col": 9, + "start_line": 26 + }, + "While trying to retrieve the implicit argument 'pedersen_ptr' in:" + ], + "start_col": 36, + "start_line": 19 + }, + "While expanding the reference 'pedersen_ptr' in:" + ], + "start_col": 30, + "start_line": 24 + }, + "While trying to update the implicit return value 'pedersen_ptr' in:" + ], + "start_col": 15, + "start_line": 7 + } + }, + "2761": { + "accessible_scopes": [ + "sheet.library", + "sheet.library.Sheet_merkle_root", + "sheet.library.Sheet_merkle_root.write" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 58, + "end_line": 7, + "input_file": { + "filename": "autogen/starknet/storage_var/Sheet_merkle_root/decl.cairo" + }, + "parent_location": [ + { + "end_col": 36, + "end_line": 24, + "input_file": { + "filename": "autogen/starknet/storage_var/Sheet_merkle_root/impl.cairo" + }, + "parent_location": [ + { + "end_col": 79, + "end_line": 19, + "input_file": { + "filename": "autogen/starknet/storage_var/Sheet_merkle_root/decl.cairo" + }, + "parent_location": [ + { + "end_col": 19, + "end_line": 26, + "input_file": { + "filename": "autogen/starknet/storage_var/Sheet_merkle_root/impl.cairo" + }, + "start_col": 9, + "start_line": 26 + }, + "While trying to retrieve the implicit argument 'range_check_ptr' in:" + ], + "start_col": 64, + "start_line": 19 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 30, + "start_line": 24 + }, + "While trying to update the implicit return value 'range_check_ptr' in:" + ], + "start_col": 43, + "start_line": 7 + } + }, + "2762": { + "accessible_scopes": [ + "sheet.library", + "sheet.library.Sheet_merkle_root", + "sheet.library.Sheet_merkle_root.write" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 19, + "end_line": 26, + "input_file": { + "filename": "autogen/starknet/storage_var/Sheet_merkle_root/impl.cairo" + }, + "start_col": 9, + "start_line": 26 + } + }, + "2763": { + "accessible_scopes": [ + "sheet.library", + "sheet.library.Sheet_max_per_wallet", + "sheet.library.Sheet_max_per_wallet.addr" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 41, + "end_line": 7, + "input_file": { + "filename": "autogen/starknet/storage_var/Sheet_max_per_wallet/impl.cairo" + }, + "parent_location": [ + { + "end_col": 41, + "end_line": 7, + "input_file": { + "filename": "autogen/starknet/storage_var/Sheet_max_per_wallet/decl.cairo" + }, + "parent_location": [ + { + "end_col": 26, + "end_line": 9, + "input_file": { + "filename": "autogen/starknet/storage_var/Sheet_max_per_wallet/impl.cairo" + }, + "start_col": 9, + "start_line": 9 + }, + "While trying to retrieve the implicit argument 'pedersen_ptr' in:" + ], + "start_col": 15, + "start_line": 7 + }, + "While expanding the reference 'pedersen_ptr' in:" + ], + "start_col": 15, + "start_line": 7 + } + }, + "2764": { + "accessible_scopes": [ + "sheet.library", + "sheet.library.Sheet_max_per_wallet", + "sheet.library.Sheet_max_per_wallet.addr" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 58, + "end_line": 7, + "input_file": { + "filename": "autogen/starknet/storage_var/Sheet_max_per_wallet/impl.cairo" + }, + "parent_location": [ + { + "end_col": 58, + "end_line": 7, + "input_file": { + "filename": "autogen/starknet/storage_var/Sheet_max_per_wallet/decl.cairo" + }, + "parent_location": [ + { + "end_col": 26, + "end_line": 9, + "input_file": { + "filename": "autogen/starknet/storage_var/Sheet_max_per_wallet/impl.cairo" + }, + "start_col": 9, + "start_line": 9 + }, + "While trying to retrieve the implicit argument 'range_check_ptr' in:" + ], + "start_col": 43, + "start_line": 7 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 43, + "start_line": 7 + } + }, + "2765": { + "accessible_scopes": [ + "sheet.library", + "sheet.library.Sheet_max_per_wallet", + "sheet.library.Sheet_max_per_wallet.addr" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 95, + "end_line": 8, + "input_file": { + "filename": "autogen/starknet/storage_var/Sheet_max_per_wallet/impl.cairo" + }, + "parent_location": [ + { + "end_col": 24, + "end_line": 9, + "input_file": { + "filename": "autogen/starknet/storage_var/Sheet_max_per_wallet/impl.cairo" + }, + "start_col": 21, + "start_line": 9 + }, + "While expanding the reference 'res' in:" + ], + "start_col": 19, + "start_line": 8 + } + }, + "2767": { + "accessible_scopes": [ + "sheet.library", + "sheet.library.Sheet_max_per_wallet", + "sheet.library.Sheet_max_per_wallet.addr" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 26, + "end_line": 9, + "input_file": { + "filename": "autogen/starknet/storage_var/Sheet_max_per_wallet/impl.cairo" + }, + "start_col": 9, + "start_line": 9 + } + }, + "2768": { + "accessible_scopes": [ + "sheet.library", + "sheet.library.Sheet_max_per_wallet", + "sheet.library.Sheet_max_per_wallet.read" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 61, + "end_line": 12, + "input_file": { + "filename": "autogen/starknet/storage_var/Sheet_max_per_wallet/impl.cairo" + }, + "parent_location": [ + { + "end_col": 41, + "end_line": 7, + "input_file": { + "filename": "autogen/starknet/storage_var/Sheet_max_per_wallet/decl.cairo" + }, + "parent_location": [ + { + "end_col": 36, + "end_line": 13, + "input_file": { + "filename": "autogen/starknet/storage_var/Sheet_max_per_wallet/impl.cairo" + }, + "start_col": 30, + "start_line": 13 + }, + "While trying to retrieve the implicit argument 'pedersen_ptr' in:" + ], + "start_col": 15, + "start_line": 7 + }, + "While expanding the reference 'pedersen_ptr' in:" + ], + "start_col": 35, + "start_line": 12 + } + }, + "2769": { + "accessible_scopes": [ + "sheet.library", + "sheet.library.Sheet_max_per_wallet", + "sheet.library.Sheet_max_per_wallet.read" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 78, + "end_line": 12, + "input_file": { + "filename": "autogen/starknet/storage_var/Sheet_max_per_wallet/impl.cairo" + }, + "parent_location": [ + { + "end_col": 58, + "end_line": 7, + "input_file": { + "filename": "autogen/starknet/storage_var/Sheet_max_per_wallet/decl.cairo" + }, + "parent_location": [ + { + "end_col": 36, + "end_line": 13, + "input_file": { + "filename": "autogen/starknet/storage_var/Sheet_max_per_wallet/impl.cairo" + }, + "start_col": 30, + "start_line": 13 + }, + "While trying to retrieve the implicit argument 'range_check_ptr' in:" + ], + "start_col": 43, + "start_line": 7 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 63, + "start_line": 12 + } + }, + "2770": { + "accessible_scopes": [ + "sheet.library", + "sheet.library.Sheet_max_per_wallet", + "sheet.library.Sheet_max_per_wallet.read" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 36, + "end_line": 13, + "input_file": { + "filename": "autogen/starknet/storage_var/Sheet_max_per_wallet/impl.cairo" + }, + "start_col": 30, + "start_line": 13 + } + }, + "2772": { + "accessible_scopes": [ + "sheet.library", + "sheet.library.Sheet_max_per_wallet", + "sheet.library.Sheet_max_per_wallet.read" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 33, + "end_line": 12, + "input_file": { + "filename": "autogen/starknet/storage_var/Sheet_max_per_wallet/impl.cairo" + }, + "parent_location": [ + { + "end_col": 37, + "end_line": 352, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/starknet/common/syscalls.cairo" + }, + "parent_location": [ + { + "end_col": 75, + "end_line": 14, + "input_file": { + "filename": "autogen/starknet/storage_var/Sheet_max_per_wallet/impl.cairo" + }, + "start_col": 37, + "start_line": 14 + }, + "While trying to retrieve the implicit argument 'syscall_ptr' in:" + ], + "start_col": 19, + "start_line": 352 + }, + "While expanding the reference 'syscall_ptr' in:" + ], + "start_col": 15, + "start_line": 12 + } + }, + "2773": { + "accessible_scopes": [ + "sheet.library", + "sheet.library.Sheet_max_per_wallet", + "sheet.library.Sheet_max_per_wallet.read" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 26, + "end_line": 13, + "input_file": { + "filename": "autogen/starknet/storage_var/Sheet_max_per_wallet/impl.cairo" + }, + "parent_location": [ + { + "end_col": 70, + "end_line": 14, + "input_file": { + "filename": "autogen/starknet/storage_var/Sheet_max_per_wallet/impl.cairo" + }, + "start_col": 58, + "start_line": 14 + }, + "While expanding the reference 'storage_addr' in:" + ], + "start_col": 14, + "start_line": 13 + } + }, + "2774": { + "accessible_scopes": [ + "sheet.library", + "sheet.library.Sheet_max_per_wallet", + "sheet.library.Sheet_max_per_wallet.read" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 75, + "end_line": 14, + "input_file": { + "filename": "autogen/starknet/storage_var/Sheet_max_per_wallet/impl.cairo" + }, + "start_col": 37, + "start_line": 14 + } + }, + "2776": { + "accessible_scopes": [ + "sheet.library", + "sheet.library.Sheet_max_per_wallet", + "sheet.library.Sheet_max_per_wallet.read" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 37, + "end_line": 352, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/starknet/common/syscalls.cairo" + }, + "parent_location": [ + { + "end_col": 75, + "end_line": 14, + "input_file": { + "filename": "autogen/starknet/storage_var/Sheet_max_per_wallet/impl.cairo" + }, + "parent_location": [ + { + "end_col": 42, + "end_line": 16, + "input_file": { + "filename": "autogen/starknet/storage_var/Sheet_max_per_wallet/impl.cairo" + }, + "start_col": 31, + "start_line": 16 + }, + "While expanding the reference 'syscall_ptr' in:" + ], + "start_col": 37, + "start_line": 14 + }, + "While trying to update the implicit return value 'syscall_ptr' in:" + ], + "start_col": 19, + "start_line": 352 + } + }, + "2777": { + "accessible_scopes": [ + "sheet.library", + "sheet.library.Sheet_max_per_wallet", + "sheet.library.Sheet_max_per_wallet.read" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 41, + "end_line": 7, + "input_file": { + "filename": "autogen/starknet/storage_var/Sheet_max_per_wallet/decl.cairo" + }, + "parent_location": [ + { + "end_col": 36, + "end_line": 13, + "input_file": { + "filename": "autogen/starknet/storage_var/Sheet_max_per_wallet/impl.cairo" + }, + "parent_location": [ + { + "end_col": 44, + "end_line": 17, + "input_file": { + "filename": "autogen/starknet/storage_var/Sheet_max_per_wallet/impl.cairo" + }, + "start_col": 32, + "start_line": 17 + }, + "While expanding the reference 'pedersen_ptr' in:" + ], + "start_col": 30, + "start_line": 13 + }, + "While trying to update the implicit return value 'pedersen_ptr' in:" + ], + "start_col": 15, + "start_line": 7 + } + }, + "2778": { + "accessible_scopes": [ + "sheet.library", + "sheet.library.Sheet_max_per_wallet", + "sheet.library.Sheet_max_per_wallet.read" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 58, + "end_line": 7, + "input_file": { + "filename": "autogen/starknet/storage_var/Sheet_max_per_wallet/decl.cairo" + }, + "parent_location": [ + { + "end_col": 36, + "end_line": 13, + "input_file": { + "filename": "autogen/starknet/storage_var/Sheet_max_per_wallet/impl.cairo" + }, + "parent_location": [ + { + "end_col": 50, + "end_line": 18, + "input_file": { + "filename": "autogen/starknet/storage_var/Sheet_max_per_wallet/impl.cairo" + }, + "start_col": 35, + "start_line": 18 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 30, + "start_line": 13 + }, + "While trying to update the implicit return value 'range_check_ptr' in:" + ], + "start_col": 43, + "start_line": 7 + } + }, + "2779": { + "accessible_scopes": [ + "sheet.library", + "sheet.library.Sheet_max_per_wallet", + "sheet.library.Sheet_max_per_wallet.read" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 33, + "end_line": 14, + "input_file": { + "filename": "autogen/starknet/storage_var/Sheet_max_per_wallet/impl.cairo" + }, + "parent_location": [ + { + "end_col": 64, + "end_line": 19, + "input_file": { + "filename": "autogen/starknet/storage_var/Sheet_max_per_wallet/impl.cairo" + }, + "start_col": 45, + "start_line": 19 + }, + "While expanding the reference '__storage_var_temp0' in:" + ], + "start_col": 14, + "start_line": 14 + } + }, + "2780": { + "accessible_scopes": [ + "sheet.library", + "sheet.library.Sheet_max_per_wallet", + "sheet.library.Sheet_max_per_wallet.read" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 55, + "end_line": 20, + "input_file": { + "filename": "autogen/starknet/storage_var/Sheet_max_per_wallet/impl.cairo" + }, + "start_col": 9, + "start_line": 20 + } + }, + "2781": { + "accessible_scopes": [ + "sheet.library", + "sheet.library.Sheet_max_per_wallet", + "sheet.library.Sheet_max_per_wallet.write" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 62, + "end_line": 23, + "input_file": { + "filename": "autogen/starknet/storage_var/Sheet_max_per_wallet/impl.cairo" + }, + "parent_location": [ + { + "end_col": 41, + "end_line": 7, + "input_file": { + "filename": "autogen/starknet/storage_var/Sheet_max_per_wallet/decl.cairo" + }, + "parent_location": [ + { + "end_col": 36, + "end_line": 24, + "input_file": { + "filename": "autogen/starknet/storage_var/Sheet_max_per_wallet/impl.cairo" + }, + "start_col": 30, + "start_line": 24 + }, + "While trying to retrieve the implicit argument 'pedersen_ptr' in:" + ], + "start_col": 15, + "start_line": 7 + }, + "While expanding the reference 'pedersen_ptr' in:" + ], + "start_col": 36, + "start_line": 23 + } + }, + "2782": { + "accessible_scopes": [ + "sheet.library", + "sheet.library.Sheet_max_per_wallet", + "sheet.library.Sheet_max_per_wallet.write" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 79, + "end_line": 23, + "input_file": { + "filename": "autogen/starknet/storage_var/Sheet_max_per_wallet/impl.cairo" + }, + "parent_location": [ + { + "end_col": 58, + "end_line": 7, + "input_file": { + "filename": "autogen/starknet/storage_var/Sheet_max_per_wallet/decl.cairo" + }, + "parent_location": [ + { + "end_col": 36, + "end_line": 24, + "input_file": { + "filename": "autogen/starknet/storage_var/Sheet_max_per_wallet/impl.cairo" + }, + "start_col": 30, + "start_line": 24 + }, + "While trying to retrieve the implicit argument 'range_check_ptr' in:" + ], + "start_col": 43, + "start_line": 7 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 64, + "start_line": 23 + } + }, + "2783": { + "accessible_scopes": [ + "sheet.library", + "sheet.library.Sheet_max_per_wallet", + "sheet.library.Sheet_max_per_wallet.write" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 36, + "end_line": 24, + "input_file": { + "filename": "autogen/starknet/storage_var/Sheet_max_per_wallet/impl.cairo" + }, + "start_col": 30, + "start_line": 24 + } + }, + "2785": { + "accessible_scopes": [ + "sheet.library", + "sheet.library.Sheet_max_per_wallet", + "sheet.library.Sheet_max_per_wallet.write" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 34, + "end_line": 23, + "input_file": { + "filename": "autogen/starknet/storage_var/Sheet_max_per_wallet/impl.cairo" + }, + "parent_location": [ + { + "end_col": 38, + "end_line": 370, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/starknet/common/syscalls.cairo" + }, + "parent_location": [ + { + "end_col": 80, + "end_line": 25, + "input_file": { + "filename": "autogen/starknet/storage_var/Sheet_max_per_wallet/impl.cairo" + }, + "start_col": 9, + "start_line": 25 + }, + "While trying to retrieve the implicit argument 'syscall_ptr' in:" + ], + "start_col": 20, + "start_line": 370 + }, + "While expanding the reference 'syscall_ptr' in:" + ], + "start_col": 16, + "start_line": 23 + } + }, + "2786": { + "accessible_scopes": [ + "sheet.library", + "sheet.library.Sheet_max_per_wallet", + "sheet.library.Sheet_max_per_wallet.write" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 26, + "end_line": 24, + "input_file": { + "filename": "autogen/starknet/storage_var/Sheet_max_per_wallet/impl.cairo" + }, + "parent_location": [ + { + "end_col": 43, + "end_line": 25, + "input_file": { + "filename": "autogen/starknet/storage_var/Sheet_max_per_wallet/impl.cairo" + }, + "start_col": 31, + "start_line": 25 + }, + "While expanding the reference 'storage_addr' in:" + ], + "start_col": 14, + "start_line": 24 + } + }, + "2787": { + "accessible_scopes": [ + "sheet.library", + "sheet.library.Sheet_max_per_wallet", + "sheet.library.Sheet_max_per_wallet.write" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 79, + "end_line": 25, + "input_file": { + "filename": "autogen/starknet/storage_var/Sheet_max_per_wallet/impl.cairo" + }, + "start_col": 55, + "start_line": 25 + } + }, + "2788": { + "accessible_scopes": [ + "sheet.library", + "sheet.library.Sheet_max_per_wallet", + "sheet.library.Sheet_max_per_wallet.write" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 80, + "end_line": 25, + "input_file": { + "filename": "autogen/starknet/storage_var/Sheet_max_per_wallet/impl.cairo" + }, + "start_col": 9, + "start_line": 25 + } + }, + "2790": { + "accessible_scopes": [ + "sheet.library", + "sheet.library.Sheet_max_per_wallet", + "sheet.library.Sheet_max_per_wallet.write" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 41, + "end_line": 7, + "input_file": { + "filename": "autogen/starknet/storage_var/Sheet_max_per_wallet/decl.cairo" + }, + "parent_location": [ + { + "end_col": 36, + "end_line": 24, + "input_file": { + "filename": "autogen/starknet/storage_var/Sheet_max_per_wallet/impl.cairo" + }, + "parent_location": [ + { + "end_col": 62, + "end_line": 19, + "input_file": { + "filename": "autogen/starknet/storage_var/Sheet_max_per_wallet/decl.cairo" + }, + "parent_location": [ + { + "end_col": 19, + "end_line": 26, + "input_file": { + "filename": "autogen/starknet/storage_var/Sheet_max_per_wallet/impl.cairo" + }, + "start_col": 9, + "start_line": 26 + }, + "While trying to retrieve the implicit argument 'pedersen_ptr' in:" + ], + "start_col": 36, + "start_line": 19 + }, + "While expanding the reference 'pedersen_ptr' in:" + ], + "start_col": 30, + "start_line": 24 + }, + "While trying to update the implicit return value 'pedersen_ptr' in:" + ], + "start_col": 15, + "start_line": 7 + } + }, + "2791": { + "accessible_scopes": [ + "sheet.library", + "sheet.library.Sheet_max_per_wallet", + "sheet.library.Sheet_max_per_wallet.write" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 58, + "end_line": 7, + "input_file": { + "filename": "autogen/starknet/storage_var/Sheet_max_per_wallet/decl.cairo" + }, + "parent_location": [ + { + "end_col": 36, + "end_line": 24, + "input_file": { + "filename": "autogen/starknet/storage_var/Sheet_max_per_wallet/impl.cairo" + }, + "parent_location": [ + { + "end_col": 79, + "end_line": 19, + "input_file": { + "filename": "autogen/starknet/storage_var/Sheet_max_per_wallet/decl.cairo" + }, + "parent_location": [ + { + "end_col": 19, + "end_line": 26, + "input_file": { + "filename": "autogen/starknet/storage_var/Sheet_max_per_wallet/impl.cairo" + }, + "start_col": 9, + "start_line": 26 + }, + "While trying to retrieve the implicit argument 'range_check_ptr' in:" + ], + "start_col": 64, + "start_line": 19 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 30, + "start_line": 24 + }, + "While trying to update the implicit return value 'range_check_ptr' in:" + ], + "start_col": 43, + "start_line": 7 + } + }, + "2792": { + "accessible_scopes": [ + "sheet.library", + "sheet.library.Sheet_max_per_wallet", + "sheet.library.Sheet_max_per_wallet.write" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 19, + "end_line": 26, + "input_file": { + "filename": "autogen/starknet/storage_var/Sheet_max_per_wallet/impl.cairo" + }, + "start_col": 9, + "start_line": 26 + } + }, + "2793": { + "accessible_scopes": [ + "sheet.library", + "sheet.library.Sheet_cell", + "sheet.library.Sheet_cell.addr" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 41, + "end_line": 7, + "input_file": { + "filename": "autogen/starknet/storage_var/Sheet_cell/impl.cairo" + }, + "parent_location": [ + { + "end_col": 48, + "end_line": 9, + "input_file": { + "filename": "autogen/starknet/storage_var/Sheet_cell/impl.cairo" + }, + "start_col": 36, + "start_line": 9 + }, + "While expanding the reference 'pedersen_ptr' in:" + ], + "start_col": 15, + "start_line": 7 + } + }, + "2794": { + "accessible_scopes": [ + "sheet.library", + "sheet.library.Sheet_cell", + "sheet.library.Sheet_cell.addr" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 94, + "end_line": 8, + "input_file": { + "filename": "autogen/starknet/storage_var/Sheet_cell/impl.cairo" + }, + "parent_location": [ + { + "end_col": 53, + "end_line": 9, + "input_file": { + "filename": "autogen/starknet/storage_var/Sheet_cell/impl.cairo" + }, + "start_col": 50, + "start_line": 9 + }, + "While expanding the reference 'res' in:" + ], + "start_col": 19, + "start_line": 8 + } + }, + "2796": { + "accessible_scopes": [ + "sheet.library", + "sheet.library.Sheet_cell", + "sheet.library.Sheet_cell.addr" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 74, + "end_line": 9, + "input_file": { + "filename": "autogen/starknet/storage_var/Sheet_cell/impl.cairo" + }, + "start_col": 55, + "start_line": 9 + } + }, + "2797": { + "accessible_scopes": [ + "sheet.library", + "sheet.library.Sheet_cell", + "sheet.library.Sheet_cell.addr" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 75, + "end_line": 9, + "input_file": { + "filename": "autogen/starknet/storage_var/Sheet_cell/impl.cairo" + }, + "start_col": 21, + "start_line": 9 + } + }, + "2799": { + "accessible_scopes": [ + "sheet.library", + "sheet.library.Sheet_cell", + "sheet.library.Sheet_cell.addr" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 58, + "end_line": 7, + "input_file": { + "filename": "autogen/starknet/storage_var/Sheet_cell/impl.cairo" + }, + "parent_location": [ + { + "end_col": 39, + "end_line": 12, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/starknet/common/storage.cairo" + }, + "parent_location": [ + { + "end_col": 48, + "end_line": 10, + "input_file": { + "filename": "autogen/starknet/storage_var/Sheet_cell/impl.cairo" + }, + "start_col": 21, + "start_line": 10 + }, + "While trying to retrieve the implicit argument 'range_check_ptr' in:" + ], + "start_col": 24, + "start_line": 12 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 43, + "start_line": 7 + } + }, + "2800": { + "accessible_scopes": [ + "sheet.library", + "sheet.library.Sheet_cell", + "sheet.library.Sheet_cell.addr" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 17, + "end_line": 9, + "input_file": { + "filename": "autogen/starknet/storage_var/Sheet_cell/impl.cairo" + }, + "parent_location": [ + { + "end_col": 47, + "end_line": 10, + "input_file": { + "filename": "autogen/starknet/storage_var/Sheet_cell/impl.cairo" + }, + "start_col": 44, + "start_line": 10 + }, + "While expanding the reference 'res' in:" + ], + "start_col": 14, + "start_line": 9 + } + }, + "2801": { + "accessible_scopes": [ + "sheet.library", + "sheet.library.Sheet_cell", + "sheet.library.Sheet_cell.addr" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 48, + "end_line": 10, + "input_file": { + "filename": "autogen/starknet/storage_var/Sheet_cell/impl.cairo" + }, + "start_col": 21, + "start_line": 10 + } + }, + "2803": { + "accessible_scopes": [ + "sheet.library", + "sheet.library.Sheet_cell", + "sheet.library.Sheet_cell.addr" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 48, + "end_line": 9, + "input_file": { + "filename": "autogen/starknet/storage_var/Sheet_cell/impl.cairo" + }, + "parent_location": [ + { + "end_col": 41, + "end_line": 7, + "input_file": { + "filename": "autogen/starknet/storage_var/Sheet_cell/decl.cairo" + }, + "parent_location": [ + { + "end_col": 26, + "end_line": 11, + "input_file": { + "filename": "autogen/starknet/storage_var/Sheet_cell/impl.cairo" + }, + "start_col": 9, + "start_line": 11 + }, + "While trying to retrieve the implicit argument 'pedersen_ptr' in:" + ], + "start_col": 15, + "start_line": 7 + }, + "While expanding the reference 'pedersen_ptr' in:" + ], + "start_col": 36, + "start_line": 9 + } + }, + "2804": { + "accessible_scopes": [ + "sheet.library", + "sheet.library.Sheet_cell", + "sheet.library.Sheet_cell.addr" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 39, + "end_line": 12, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/starknet/common/storage.cairo" + }, + "parent_location": [ + { + "end_col": 48, + "end_line": 10, + "input_file": { + "filename": "autogen/starknet/storage_var/Sheet_cell/impl.cairo" + }, + "parent_location": [ + { + "end_col": 58, + "end_line": 7, + "input_file": { + "filename": "autogen/starknet/storage_var/Sheet_cell/decl.cairo" + }, + "parent_location": [ + { + "end_col": 26, + "end_line": 11, + "input_file": { + "filename": "autogen/starknet/storage_var/Sheet_cell/impl.cairo" + }, + "start_col": 9, + "start_line": 11 + }, + "While trying to retrieve the implicit argument 'range_check_ptr' in:" + ], + "start_col": 43, + "start_line": 7 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 21, + "start_line": 10 + }, + "While trying to update the implicit return value 'range_check_ptr' in:" + ], + "start_col": 24, + "start_line": 12 + } + }, + "2805": { + "accessible_scopes": [ + "sheet.library", + "sheet.library.Sheet_cell", + "sheet.library.Sheet_cell.addr" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 17, + "end_line": 10, + "input_file": { + "filename": "autogen/starknet/storage_var/Sheet_cell/impl.cairo" + }, + "parent_location": [ + { + "end_col": 24, + "end_line": 11, + "input_file": { + "filename": "autogen/starknet/storage_var/Sheet_cell/impl.cairo" + }, + "start_col": 21, + "start_line": 11 + }, + "While expanding the reference 'res' in:" + ], + "start_col": 14, + "start_line": 10 + } + }, + "2806": { + "accessible_scopes": [ + "sheet.library", + "sheet.library.Sheet_cell", + "sheet.library.Sheet_cell.addr" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 26, + "end_line": 11, + "input_file": { + "filename": "autogen/starknet/storage_var/Sheet_cell/impl.cairo" + }, + "start_col": 9, + "start_line": 11 + } + }, + "2807": { + "accessible_scopes": [ + "sheet.library", + "sheet.library.Sheet_cell", + "sheet.library.Sheet_cell.read" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 61, + "end_line": 14, + "input_file": { + "filename": "autogen/starknet/storage_var/Sheet_cell/impl.cairo" + }, + "parent_location": [ + { + "end_col": 41, + "end_line": 7, + "input_file": { + "filename": "autogen/starknet/storage_var/Sheet_cell/decl.cairo" + }, + "parent_location": [ + { + "end_col": 38, + "end_line": 17, + "input_file": { + "filename": "autogen/starknet/storage_var/Sheet_cell/impl.cairo" + }, + "start_col": 30, + "start_line": 17 + }, + "While trying to retrieve the implicit argument 'pedersen_ptr' in:" + ], + "start_col": 15, + "start_line": 7 + }, + "While expanding the reference 'pedersen_ptr' in:" + ], + "start_col": 35, + "start_line": 14 + } + }, + "2808": { + "accessible_scopes": [ + "sheet.library", + "sheet.library.Sheet_cell", + "sheet.library.Sheet_cell.read" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 78, + "end_line": 14, + "input_file": { + "filename": "autogen/starknet/storage_var/Sheet_cell/impl.cairo" + }, + "parent_location": [ + { + "end_col": 58, + "end_line": 7, + "input_file": { + "filename": "autogen/starknet/storage_var/Sheet_cell/decl.cairo" + }, + "parent_location": [ + { + "end_col": 38, + "end_line": 17, + "input_file": { + "filename": "autogen/starknet/storage_var/Sheet_cell/impl.cairo" + }, + "start_col": 30, + "start_line": 17 + }, + "While trying to retrieve the implicit argument 'range_check_ptr' in:" + ], + "start_col": 43, + "start_line": 7 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 63, + "start_line": 14 + } + }, + "2809": { + "accessible_scopes": [ + "sheet.library", + "sheet.library.Sheet_cell", + "sheet.library.Sheet_cell.read" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 88, + "end_line": 14, + "input_file": { + "filename": "autogen/starknet/storage_var/Sheet_cell/impl.cairo" + }, + "parent_location": [ + { + "end_col": 37, + "end_line": 17, + "input_file": { + "filename": "autogen/starknet/storage_var/Sheet_cell/impl.cairo" + }, + "start_col": 35, + "start_line": 17 + }, + "While expanding the reference 'id' in:" + ], + "start_col": 80, + "start_line": 14 + } + }, + "2810": { + "accessible_scopes": [ + "sheet.library", + "sheet.library.Sheet_cell", + "sheet.library.Sheet_cell.read" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 38, + "end_line": 17, + "input_file": { + "filename": "autogen/starknet/storage_var/Sheet_cell/impl.cairo" + }, + "start_col": 30, + "start_line": 17 + } + }, + "2812": { + "accessible_scopes": [ + "sheet.library", + "sheet.library.Sheet_cell", + "sheet.library.Sheet_cell.read" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 33, + "end_line": 14, + "input_file": { + "filename": "autogen/starknet/storage_var/Sheet_cell/impl.cairo" + }, + "parent_location": [ + { + "end_col": 37, + "end_line": 352, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/starknet/common/syscalls.cairo" + }, + "parent_location": [ + { + "end_col": 75, + "end_line": 18, + "input_file": { + "filename": "autogen/starknet/storage_var/Sheet_cell/impl.cairo" + }, + "start_col": 37, + "start_line": 18 + }, + "While trying to retrieve the implicit argument 'syscall_ptr' in:" + ], + "start_col": 19, + "start_line": 352 + }, + "While expanding the reference 'syscall_ptr' in:" + ], + "start_col": 15, + "start_line": 14 + } + }, + "2813": { + "accessible_scopes": [ + "sheet.library", + "sheet.library.Sheet_cell", + "sheet.library.Sheet_cell.read" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 26, + "end_line": 17, + "input_file": { + "filename": "autogen/starknet/storage_var/Sheet_cell/impl.cairo" + }, + "parent_location": [ + { + "end_col": 70, + "end_line": 18, + "input_file": { + "filename": "autogen/starknet/storage_var/Sheet_cell/impl.cairo" + }, + "start_col": 58, + "start_line": 18 + }, + "While expanding the reference 'storage_addr' in:" + ], + "start_col": 14, + "start_line": 17 + } + }, + "2814": { + "accessible_scopes": [ + "sheet.library", + "sheet.library.Sheet_cell", + "sheet.library.Sheet_cell.read" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 75, + "end_line": 18, + "input_file": { + "filename": "autogen/starknet/storage_var/Sheet_cell/impl.cairo" + }, + "start_col": 37, + "start_line": 18 + } + }, + "2816": { + "accessible_scopes": [ + "sheet.library", + "sheet.library.Sheet_cell", + "sheet.library.Sheet_cell.read" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 37, + "end_line": 352, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/starknet/common/syscalls.cairo" + }, + "parent_location": [ + { + "end_col": 75, + "end_line": 18, + "input_file": { + "filename": "autogen/starknet/storage_var/Sheet_cell/impl.cairo" + }, + "parent_location": [ + { + "end_col": 37, + "end_line": 352, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/starknet/common/syscalls.cairo" + }, + "parent_location": [ + { + "end_col": 75, + "end_line": 19, + "input_file": { + "filename": "autogen/starknet/storage_var/Sheet_cell/impl.cairo" + }, + "start_col": 37, + "start_line": 19 + }, + "While trying to retrieve the implicit argument 'syscall_ptr' in:" + ], + "start_col": 19, + "start_line": 352 + }, + "While expanding the reference 'syscall_ptr' in:" + ], + "start_col": 37, + "start_line": 18 + }, + "While trying to update the implicit return value 'syscall_ptr' in:" + ], + "start_col": 19, + "start_line": 352 + } + }, + "2817": { + "accessible_scopes": [ + "sheet.library", + "sheet.library.Sheet_cell", + "sheet.library.Sheet_cell.read" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 74, + "end_line": 19, + "input_file": { + "filename": "autogen/starknet/storage_var/Sheet_cell/impl.cairo" + }, + "start_col": 58, + "start_line": 19 + } + }, + "2819": { + "accessible_scopes": [ + "sheet.library", + "sheet.library.Sheet_cell", + "sheet.library.Sheet_cell.read" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 75, + "end_line": 19, + "input_file": { + "filename": "autogen/starknet/storage_var/Sheet_cell/impl.cairo" + }, + "start_col": 37, + "start_line": 19 + } + }, + "2821": { + "accessible_scopes": [ + "sheet.library", + "sheet.library.Sheet_cell", + "sheet.library.Sheet_cell.read" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 37, + "end_line": 352, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/starknet/common/syscalls.cairo" + }, + "parent_location": [ + { + "end_col": 75, + "end_line": 19, + "input_file": { + "filename": "autogen/starknet/storage_var/Sheet_cell/impl.cairo" + }, + "parent_location": [ + { + "end_col": 37, + "end_line": 352, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/starknet/common/syscalls.cairo" + }, + "parent_location": [ + { + "end_col": 75, + "end_line": 20, + "input_file": { + "filename": "autogen/starknet/storage_var/Sheet_cell/impl.cairo" + }, + "start_col": 37, + "start_line": 20 + }, + "While trying to retrieve the implicit argument 'syscall_ptr' in:" + ], + "start_col": 19, + "start_line": 352 + }, + "While expanding the reference 'syscall_ptr' in:" + ], + "start_col": 37, + "start_line": 19 + }, + "While trying to update the implicit return value 'syscall_ptr' in:" + ], + "start_col": 19, + "start_line": 352 + } + }, + "2822": { + "accessible_scopes": [ + "sheet.library", + "sheet.library.Sheet_cell", + "sheet.library.Sheet_cell.read" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 74, + "end_line": 20, + "input_file": { + "filename": "autogen/starknet/storage_var/Sheet_cell/impl.cairo" + }, + "start_col": 58, + "start_line": 20 + } + }, + "2824": { + "accessible_scopes": [ + "sheet.library", + "sheet.library.Sheet_cell", + "sheet.library.Sheet_cell.read" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 75, + "end_line": 20, + "input_file": { + "filename": "autogen/starknet/storage_var/Sheet_cell/impl.cairo" + }, + "start_col": 37, + "start_line": 20 + } + }, + "2826": { + "accessible_scopes": [ + "sheet.library", + "sheet.library.Sheet_cell", + "sheet.library.Sheet_cell.read" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 37, + "end_line": 352, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/starknet/common/syscalls.cairo" + }, + "parent_location": [ + { + "end_col": 75, + "end_line": 20, + "input_file": { + "filename": "autogen/starknet/storage_var/Sheet_cell/impl.cairo" + }, + "parent_location": [ + { + "end_col": 42, + "end_line": 22, + "input_file": { + "filename": "autogen/starknet/storage_var/Sheet_cell/impl.cairo" + }, + "start_col": 31, + "start_line": 22 + }, + "While expanding the reference 'syscall_ptr' in:" + ], + "start_col": 37, + "start_line": 20 + }, + "While trying to update the implicit return value 'syscall_ptr' in:" + ], + "start_col": 19, + "start_line": 352 + } + }, + "2827": { + "accessible_scopes": [ + "sheet.library", + "sheet.library.Sheet_cell", + "sheet.library.Sheet_cell.read" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 41, + "end_line": 7, + "input_file": { + "filename": "autogen/starknet/storage_var/Sheet_cell/decl.cairo" + }, + "parent_location": [ + { + "end_col": 38, + "end_line": 17, + "input_file": { + "filename": "autogen/starknet/storage_var/Sheet_cell/impl.cairo" + }, + "parent_location": [ + { + "end_col": 44, + "end_line": 23, + "input_file": { + "filename": "autogen/starknet/storage_var/Sheet_cell/impl.cairo" + }, + "start_col": 32, + "start_line": 23 + }, + "While expanding the reference 'pedersen_ptr' in:" + ], + "start_col": 30, + "start_line": 17 + }, + "While trying to update the implicit return value 'pedersen_ptr' in:" + ], + "start_col": 15, + "start_line": 7 + } + }, + "2828": { + "accessible_scopes": [ + "sheet.library", + "sheet.library.Sheet_cell", + "sheet.library.Sheet_cell.read" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 58, + "end_line": 7, + "input_file": { + "filename": "autogen/starknet/storage_var/Sheet_cell/decl.cairo" + }, + "parent_location": [ + { + "end_col": 38, + "end_line": 17, + "input_file": { + "filename": "autogen/starknet/storage_var/Sheet_cell/impl.cairo" + }, + "parent_location": [ + { + "end_col": 50, + "end_line": 24, + "input_file": { + "filename": "autogen/starknet/storage_var/Sheet_cell/impl.cairo" + }, + "start_col": 35, + "start_line": 24 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 30, + "start_line": 17 + }, + "While trying to update the implicit return value 'range_check_ptr' in:" + ], + "start_col": 43, + "start_line": 7 + } + }, + "2829": { + "accessible_scopes": [ + "sheet.library", + "sheet.library.Sheet_cell", + "sheet.library.Sheet_cell.read" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 33, + "end_line": 18, + "input_file": { + "filename": "autogen/starknet/storage_var/Sheet_cell/impl.cairo" + }, + "parent_location": [ + { + "end_col": 64, + "end_line": 25, + "input_file": { + "filename": "autogen/starknet/storage_var/Sheet_cell/impl.cairo" + }, + "start_col": 45, + "start_line": 25 + }, + "While expanding the reference '__storage_var_temp0' in:" + ], + "start_col": 14, + "start_line": 18 + } + }, + "2830": { + "accessible_scopes": [ + "sheet.library", + "sheet.library.Sheet_cell", + "sheet.library.Sheet_cell.read" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 33, + "end_line": 19, + "input_file": { + "filename": "autogen/starknet/storage_var/Sheet_cell/impl.cairo" + }, + "parent_location": [ + { + "end_col": 64, + "end_line": 26, + "input_file": { + "filename": "autogen/starknet/storage_var/Sheet_cell/impl.cairo" + }, + "start_col": 45, + "start_line": 26 + }, + "While expanding the reference '__storage_var_temp1' in:" + ], + "start_col": 14, + "start_line": 19 + } + }, + "2831": { + "accessible_scopes": [ + "sheet.library", + "sheet.library.Sheet_cell", + "sheet.library.Sheet_cell.read" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 33, + "end_line": 20, + "input_file": { + "filename": "autogen/starknet/storage_var/Sheet_cell/impl.cairo" + }, + "parent_location": [ + { + "end_col": 64, + "end_line": 27, + "input_file": { + "filename": "autogen/starknet/storage_var/Sheet_cell/impl.cairo" + }, + "start_col": 45, + "start_line": 27 + }, + "While expanding the reference '__storage_var_temp2' in:" + ], + "start_col": 14, + "start_line": 20 + } + }, + "2832": { + "accessible_scopes": [ + "sheet.library", + "sheet.library.Sheet_cell", + "sheet.library.Sheet_cell.read" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 59, + "end_line": 28, + "input_file": { + "filename": "autogen/starknet/storage_var/Sheet_cell/impl.cairo" + }, + "start_col": 9, + "start_line": 28 + } + }, + "2833": { + "accessible_scopes": [ + "sheet.library", + "sheet.library.Sheet_cell", + "sheet.library.Sheet_cell.write" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 62, + "end_line": 31, + "input_file": { + "filename": "autogen/starknet/storage_var/Sheet_cell/impl.cairo" + }, + "parent_location": [ + { + "end_col": 41, + "end_line": 7, + "input_file": { + "filename": "autogen/starknet/storage_var/Sheet_cell/decl.cairo" + }, + "parent_location": [ + { + "end_col": 38, + "end_line": 34, + "input_file": { + "filename": "autogen/starknet/storage_var/Sheet_cell/impl.cairo" + }, + "start_col": 30, + "start_line": 34 + }, + "While trying to retrieve the implicit argument 'pedersen_ptr' in:" + ], + "start_col": 15, + "start_line": 7 + }, + "While expanding the reference 'pedersen_ptr' in:" + ], + "start_col": 36, + "start_line": 31 + } + }, + "2834": { + "accessible_scopes": [ + "sheet.library", + "sheet.library.Sheet_cell", + "sheet.library.Sheet_cell.write" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 79, + "end_line": 31, + "input_file": { + "filename": "autogen/starknet/storage_var/Sheet_cell/impl.cairo" + }, + "parent_location": [ + { + "end_col": 58, + "end_line": 7, + "input_file": { + "filename": "autogen/starknet/storage_var/Sheet_cell/decl.cairo" + }, + "parent_location": [ + { + "end_col": 38, + "end_line": 34, + "input_file": { + "filename": "autogen/starknet/storage_var/Sheet_cell/impl.cairo" + }, + "start_col": 30, + "start_line": 34 + }, + "While trying to retrieve the implicit argument 'range_check_ptr' in:" + ], + "start_col": 43, + "start_line": 7 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 64, + "start_line": 31 + } + }, + "2835": { + "accessible_scopes": [ + "sheet.library", + "sheet.library.Sheet_cell", + "sheet.library.Sheet_cell.write" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 17, + "end_line": 32, + "input_file": { + "filename": "autogen/starknet/storage_var/Sheet_cell/impl.cairo" + }, + "parent_location": [ + { + "end_col": 37, + "end_line": 34, + "input_file": { + "filename": "autogen/starknet/storage_var/Sheet_cell/impl.cairo" + }, + "start_col": 35, + "start_line": 34 + }, + "While expanding the reference 'id' in:" + ], + "start_col": 9, + "start_line": 32 + } + }, + "2836": { + "accessible_scopes": [ + "sheet.library", + "sheet.library.Sheet_cell", + "sheet.library.Sheet_cell.write" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 38, + "end_line": 34, + "input_file": { + "filename": "autogen/starknet/storage_var/Sheet_cell/impl.cairo" + }, + "start_col": 30, + "start_line": 34 + } + }, + "2838": { + "accessible_scopes": [ + "sheet.library", + "sheet.library.Sheet_cell", + "sheet.library.Sheet_cell.write" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 34, + "end_line": 31, + "input_file": { + "filename": "autogen/starknet/storage_var/Sheet_cell/impl.cairo" + }, + "parent_location": [ + { + "end_col": 38, + "end_line": 370, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/starknet/common/syscalls.cairo" + }, + "parent_location": [ + { + "end_col": 80, + "end_line": 35, + "input_file": { + "filename": "autogen/starknet/storage_var/Sheet_cell/impl.cairo" + }, + "start_col": 9, + "start_line": 35 + }, + "While trying to retrieve the implicit argument 'syscall_ptr' in:" + ], + "start_col": 20, + "start_line": 370 + }, + "While expanding the reference 'syscall_ptr' in:" + ], + "start_col": 16, + "start_line": 31 + } + }, + "2839": { + "accessible_scopes": [ + "sheet.library", + "sheet.library.Sheet_cell", + "sheet.library.Sheet_cell.write" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 26, + "end_line": 34, + "input_file": { + "filename": "autogen/starknet/storage_var/Sheet_cell/impl.cairo" + }, + "parent_location": [ + { + "end_col": 43, + "end_line": 35, + "input_file": { + "filename": "autogen/starknet/storage_var/Sheet_cell/impl.cairo" + }, + "start_col": 31, + "start_line": 35 + }, + "While expanding the reference 'storage_addr' in:" + ], + "start_col": 14, + "start_line": 34 + } + }, + "2840": { + "accessible_scopes": [ + "sheet.library", + "sheet.library.Sheet_cell", + "sheet.library.Sheet_cell.write" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 79, + "end_line": 35, + "input_file": { + "filename": "autogen/starknet/storage_var/Sheet_cell/impl.cairo" + }, + "start_col": 55, + "start_line": 35 + } + }, + "2841": { + "accessible_scopes": [ + "sheet.library", + "sheet.library.Sheet_cell", + "sheet.library.Sheet_cell.write" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 80, + "end_line": 35, + "input_file": { + "filename": "autogen/starknet/storage_var/Sheet_cell/impl.cairo" + }, + "start_col": 9, + "start_line": 35 + } + }, + "2843": { + "accessible_scopes": [ + "sheet.library", + "sheet.library.Sheet_cell", + "sheet.library.Sheet_cell.write" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 47, + "end_line": 36, + "input_file": { + "filename": "autogen/starknet/storage_var/Sheet_cell/impl.cairo" + }, + "start_col": 31, + "start_line": 36 + } + }, + "2845": { + "accessible_scopes": [ + "sheet.library", + "sheet.library.Sheet_cell", + "sheet.library.Sheet_cell.write" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 79, + "end_line": 36, + "input_file": { + "filename": "autogen/starknet/storage_var/Sheet_cell/impl.cairo" + }, + "start_col": 55, + "start_line": 36 + } + }, + "2846": { + "accessible_scopes": [ + "sheet.library", + "sheet.library.Sheet_cell", + "sheet.library.Sheet_cell.write" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 80, + "end_line": 36, + "input_file": { + "filename": "autogen/starknet/storage_var/Sheet_cell/impl.cairo" + }, + "start_col": 9, + "start_line": 36 + } + }, + "2848": { + "accessible_scopes": [ + "sheet.library", + "sheet.library.Sheet_cell", + "sheet.library.Sheet_cell.write" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 47, + "end_line": 37, + "input_file": { + "filename": "autogen/starknet/storage_var/Sheet_cell/impl.cairo" + }, + "start_col": 31, + "start_line": 37 + } + }, + "2850": { + "accessible_scopes": [ + "sheet.library", + "sheet.library.Sheet_cell", + "sheet.library.Sheet_cell.write" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 79, + "end_line": 37, + "input_file": { + "filename": "autogen/starknet/storage_var/Sheet_cell/impl.cairo" + }, + "start_col": 55, + "start_line": 37 + } + }, + "2851": { + "accessible_scopes": [ + "sheet.library", + "sheet.library.Sheet_cell", + "sheet.library.Sheet_cell.write" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 80, + "end_line": 37, + "input_file": { + "filename": "autogen/starknet/storage_var/Sheet_cell/impl.cairo" + }, + "start_col": 9, + "start_line": 37 + } + }, + "2853": { + "accessible_scopes": [ + "sheet.library", + "sheet.library.Sheet_cell", + "sheet.library.Sheet_cell.write" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 41, + "end_line": 7, + "input_file": { + "filename": "autogen/starknet/storage_var/Sheet_cell/decl.cairo" + }, + "parent_location": [ + { + "end_col": 38, + "end_line": 34, + "input_file": { + "filename": "autogen/starknet/storage_var/Sheet_cell/impl.cairo" + }, + "parent_location": [ + { + "end_col": 62, + "end_line": 21, + "input_file": { + "filename": "autogen/starknet/storage_var/Sheet_cell/decl.cairo" + }, + "parent_location": [ + { + "end_col": 19, + "end_line": 38, + "input_file": { + "filename": "autogen/starknet/storage_var/Sheet_cell/impl.cairo" + }, + "start_col": 9, + "start_line": 38 + }, + "While trying to retrieve the implicit argument 'pedersen_ptr' in:" + ], + "start_col": 36, + "start_line": 21 + }, + "While expanding the reference 'pedersen_ptr' in:" + ], + "start_col": 30, + "start_line": 34 + }, + "While trying to update the implicit return value 'pedersen_ptr' in:" + ], + "start_col": 15, + "start_line": 7 + } + }, + "2854": { + "accessible_scopes": [ + "sheet.library", + "sheet.library.Sheet_cell", + "sheet.library.Sheet_cell.write" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 58, + "end_line": 7, + "input_file": { + "filename": "autogen/starknet/storage_var/Sheet_cell/decl.cairo" + }, + "parent_location": [ + { + "end_col": 38, + "end_line": 34, + "input_file": { + "filename": "autogen/starknet/storage_var/Sheet_cell/impl.cairo" + }, + "parent_location": [ + { + "end_col": 79, + "end_line": 21, + "input_file": { + "filename": "autogen/starknet/storage_var/Sheet_cell/decl.cairo" + }, + "parent_location": [ + { + "end_col": 19, + "end_line": 38, + "input_file": { + "filename": "autogen/starknet/storage_var/Sheet_cell/impl.cairo" + }, + "start_col": 9, + "start_line": 38 + }, + "While trying to retrieve the implicit argument 'range_check_ptr' in:" + ], + "start_col": 64, + "start_line": 21 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 30, + "start_line": 34 + }, + "While trying to update the implicit return value 'range_check_ptr' in:" + ], + "start_col": 43, + "start_line": 7 + } + }, + "2855": { + "accessible_scopes": [ + "sheet.library", + "sheet.library.Sheet_cell", + "sheet.library.Sheet_cell.write" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 19, + "end_line": 38, + "input_file": { + "filename": "autogen/starknet/storage_var/Sheet_cell/impl.cairo" + }, + "start_col": 9, + "start_line": 38 + } + }, + "2856": { + "accessible_scopes": [ + "sheet.library", + "sheet.library.Sheet_cell_calldata", + "sheet.library.Sheet_cell_calldata.addr" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 41, + "end_line": 7, + "input_file": { + "filename": "autogen/starknet/storage_var/Sheet_cell_calldata/impl.cairo" + }, + "parent_location": [ + { + "end_col": 48, + "end_line": 9, + "input_file": { + "filename": "autogen/starknet/storage_var/Sheet_cell_calldata/impl.cairo" + }, + "start_col": 36, + "start_line": 9 + }, + "While expanding the reference 'pedersen_ptr' in:" + ], + "start_col": 15, + "start_line": 7 + } + }, + "2857": { + "accessible_scopes": [ + "sheet.library", + "sheet.library.Sheet_cell_calldata", + "sheet.library.Sheet_cell_calldata.addr" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 95, + "end_line": 8, + "input_file": { + "filename": "autogen/starknet/storage_var/Sheet_cell_calldata/impl.cairo" + }, + "parent_location": [ + { + "end_col": 53, + "end_line": 9, + "input_file": { + "filename": "autogen/starknet/storage_var/Sheet_cell_calldata/impl.cairo" + }, + "start_col": 50, + "start_line": 9 + }, + "While expanding the reference 'res' in:" + ], + "start_col": 19, + "start_line": 8 + } + }, + "2859": { + "accessible_scopes": [ + "sheet.library", + "sheet.library.Sheet_cell_calldata", + "sheet.library.Sheet_cell_calldata.addr" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 74, + "end_line": 9, + "input_file": { + "filename": "autogen/starknet/storage_var/Sheet_cell_calldata/impl.cairo" + }, + "start_col": 55, + "start_line": 9 + } + }, + "2860": { + "accessible_scopes": [ + "sheet.library", + "sheet.library.Sheet_cell_calldata", + "sheet.library.Sheet_cell_calldata.addr" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 75, + "end_line": 9, + "input_file": { + "filename": "autogen/starknet/storage_var/Sheet_cell_calldata/impl.cairo" + }, + "start_col": 21, + "start_line": 9 + } + }, + "2862": { + "accessible_scopes": [ + "sheet.library", + "sheet.library.Sheet_cell_calldata", + "sheet.library.Sheet_cell_calldata.addr" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 77, + "end_line": 10, + "input_file": { + "filename": "autogen/starknet/storage_var/Sheet_cell_calldata/impl.cairo" + }, + "start_col": 55, + "start_line": 10 + } + }, + "2863": { + "accessible_scopes": [ + "sheet.library", + "sheet.library.Sheet_cell_calldata", + "sheet.library.Sheet_cell_calldata.addr" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 78, + "end_line": 10, + "input_file": { + "filename": "autogen/starknet/storage_var/Sheet_cell_calldata/impl.cairo" + }, + "start_col": 21, + "start_line": 10 + } + }, + "2865": { + "accessible_scopes": [ + "sheet.library", + "sheet.library.Sheet_cell_calldata", + "sheet.library.Sheet_cell_calldata.addr" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 58, + "end_line": 7, + "input_file": { + "filename": "autogen/starknet/storage_var/Sheet_cell_calldata/impl.cairo" + }, + "parent_location": [ + { + "end_col": 39, + "end_line": 12, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/starknet/common/storage.cairo" + }, + "parent_location": [ + { + "end_col": 48, + "end_line": 11, + "input_file": { + "filename": "autogen/starknet/storage_var/Sheet_cell_calldata/impl.cairo" + }, + "start_col": 21, + "start_line": 11 + }, + "While trying to retrieve the implicit argument 'range_check_ptr' in:" + ], + "start_col": 24, + "start_line": 12 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 43, + "start_line": 7 + } + }, + "2866": { + "accessible_scopes": [ + "sheet.library", + "sheet.library.Sheet_cell_calldata", + "sheet.library.Sheet_cell_calldata.addr" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 17, + "end_line": 10, + "input_file": { + "filename": "autogen/starknet/storage_var/Sheet_cell_calldata/impl.cairo" + }, + "parent_location": [ + { + "end_col": 47, + "end_line": 11, + "input_file": { + "filename": "autogen/starknet/storage_var/Sheet_cell_calldata/impl.cairo" + }, + "start_col": 44, + "start_line": 11 + }, + "While expanding the reference 'res' in:" + ], + "start_col": 14, + "start_line": 10 + } + }, + "2867": { + "accessible_scopes": [ + "sheet.library", + "sheet.library.Sheet_cell_calldata", + "sheet.library.Sheet_cell_calldata.addr" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 48, + "end_line": 11, + "input_file": { + "filename": "autogen/starknet/storage_var/Sheet_cell_calldata/impl.cairo" + }, + "start_col": 21, + "start_line": 11 + } + }, + "2869": { + "accessible_scopes": [ + "sheet.library", + "sheet.library.Sheet_cell_calldata", + "sheet.library.Sheet_cell_calldata.addr" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 48, + "end_line": 10, + "input_file": { + "filename": "autogen/starknet/storage_var/Sheet_cell_calldata/impl.cairo" + }, + "parent_location": [ + { + "end_col": 41, + "end_line": 7, + "input_file": { + "filename": "autogen/starknet/storage_var/Sheet_cell_calldata/decl.cairo" + }, + "parent_location": [ + { + "end_col": 26, + "end_line": 12, + "input_file": { + "filename": "autogen/starknet/storage_var/Sheet_cell_calldata/impl.cairo" + }, + "start_col": 9, + "start_line": 12 + }, + "While trying to retrieve the implicit argument 'pedersen_ptr' in:" + ], + "start_col": 15, + "start_line": 7 + }, + "While expanding the reference 'pedersen_ptr' in:" + ], + "start_col": 36, + "start_line": 10 + } + }, + "2870": { + "accessible_scopes": [ + "sheet.library", + "sheet.library.Sheet_cell_calldata", + "sheet.library.Sheet_cell_calldata.addr" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 39, + "end_line": 12, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/starknet/common/storage.cairo" + }, + "parent_location": [ + { + "end_col": 48, + "end_line": 11, + "input_file": { + "filename": "autogen/starknet/storage_var/Sheet_cell_calldata/impl.cairo" + }, + "parent_location": [ + { + "end_col": 58, + "end_line": 7, + "input_file": { + "filename": "autogen/starknet/storage_var/Sheet_cell_calldata/decl.cairo" + }, + "parent_location": [ + { + "end_col": 26, + "end_line": 12, + "input_file": { + "filename": "autogen/starknet/storage_var/Sheet_cell_calldata/impl.cairo" + }, + "start_col": 9, + "start_line": 12 + }, + "While trying to retrieve the implicit argument 'range_check_ptr' in:" + ], + "start_col": 43, + "start_line": 7 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 21, + "start_line": 11 + }, + "While trying to update the implicit return value 'range_check_ptr' in:" + ], + "start_col": 24, + "start_line": 12 + } + }, + "2871": { + "accessible_scopes": [ + "sheet.library", + "sheet.library.Sheet_cell_calldata", + "sheet.library.Sheet_cell_calldata.addr" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 17, + "end_line": 11, + "input_file": { + "filename": "autogen/starknet/storage_var/Sheet_cell_calldata/impl.cairo" + }, + "parent_location": [ + { + "end_col": 24, + "end_line": 12, + "input_file": { + "filename": "autogen/starknet/storage_var/Sheet_cell_calldata/impl.cairo" + }, + "start_col": 21, + "start_line": 12 + }, + "While expanding the reference 'res' in:" + ], + "start_col": 14, + "start_line": 11 + } + }, + "2872": { + "accessible_scopes": [ + "sheet.library", + "sheet.library.Sheet_cell_calldata", + "sheet.library.Sheet_cell_calldata.addr" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 26, + "end_line": 12, + "input_file": { + "filename": "autogen/starknet/storage_var/Sheet_cell_calldata/impl.cairo" + }, + "start_col": 9, + "start_line": 12 + } + }, + "2873": { + "accessible_scopes": [ + "sheet.library", + "sheet.library.Sheet_cell_calldata", + "sheet.library.Sheet_cell_calldata.read" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 61, + "end_line": 15, + "input_file": { + "filename": "autogen/starknet/storage_var/Sheet_cell_calldata/impl.cairo" + }, + "parent_location": [ + { + "end_col": 41, + "end_line": 7, + "input_file": { + "filename": "autogen/starknet/storage_var/Sheet_cell_calldata/decl.cairo" + }, + "parent_location": [ + { + "end_col": 45, + "end_line": 18, + "input_file": { + "filename": "autogen/starknet/storage_var/Sheet_cell_calldata/impl.cairo" + }, + "start_col": 30, + "start_line": 18 + }, + "While trying to retrieve the implicit argument 'pedersen_ptr' in:" + ], + "start_col": 15, + "start_line": 7 + }, + "While expanding the reference 'pedersen_ptr' in:" + ], + "start_col": 35, + "start_line": 15 + } + }, + "2874": { + "accessible_scopes": [ + "sheet.library", + "sheet.library.Sheet_cell_calldata", + "sheet.library.Sheet_cell_calldata.read" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 78, + "end_line": 15, + "input_file": { + "filename": "autogen/starknet/storage_var/Sheet_cell_calldata/impl.cairo" + }, + "parent_location": [ + { + "end_col": 58, + "end_line": 7, + "input_file": { + "filename": "autogen/starknet/storage_var/Sheet_cell_calldata/decl.cairo" + }, + "parent_location": [ + { + "end_col": 45, + "end_line": 18, + "input_file": { + "filename": "autogen/starknet/storage_var/Sheet_cell_calldata/impl.cairo" + }, + "start_col": 30, + "start_line": 18 + }, + "While trying to retrieve the implicit argument 'range_check_ptr' in:" + ], + "start_col": 43, + "start_line": 7 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 63, + "start_line": 15 + } + }, + "2875": { + "accessible_scopes": [ + "sheet.library", + "sheet.library.Sheet_cell_calldata", + "sheet.library.Sheet_cell_calldata.read" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 17, + "end_line": 16, + "input_file": { + "filename": "autogen/starknet/storage_var/Sheet_cell_calldata/impl.cairo" + }, + "parent_location": [ + { + "end_col": 37, + "end_line": 18, + "input_file": { + "filename": "autogen/starknet/storage_var/Sheet_cell_calldata/impl.cairo" + }, + "start_col": 35, + "start_line": 18 + }, + "While expanding the reference 'id' in:" + ], + "start_col": 9, + "start_line": 16 + } + }, + "2876": { + "accessible_scopes": [ + "sheet.library", + "sheet.library.Sheet_cell_calldata", + "sheet.library.Sheet_cell_calldata.read" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 30, + "end_line": 16, + "input_file": { + "filename": "autogen/starknet/storage_var/Sheet_cell_calldata/impl.cairo" + }, + "parent_location": [ + { + "end_col": 44, + "end_line": 18, + "input_file": { + "filename": "autogen/starknet/storage_var/Sheet_cell_calldata/impl.cairo" + }, + "start_col": 39, + "start_line": 18 + }, + "While expanding the reference 'index' in:" + ], + "start_col": 19, + "start_line": 16 + } + }, + "2877": { + "accessible_scopes": [ + "sheet.library", + "sheet.library.Sheet_cell_calldata", + "sheet.library.Sheet_cell_calldata.read" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 45, + "end_line": 18, + "input_file": { + "filename": "autogen/starknet/storage_var/Sheet_cell_calldata/impl.cairo" + }, + "start_col": 30, + "start_line": 18 + } + }, + "2879": { + "accessible_scopes": [ + "sheet.library", + "sheet.library.Sheet_cell_calldata", + "sheet.library.Sheet_cell_calldata.read" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 33, + "end_line": 15, + "input_file": { + "filename": "autogen/starknet/storage_var/Sheet_cell_calldata/impl.cairo" + }, + "parent_location": [ + { + "end_col": 37, + "end_line": 352, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/starknet/common/syscalls.cairo" + }, + "parent_location": [ + { + "end_col": 75, + "end_line": 19, + "input_file": { + "filename": "autogen/starknet/storage_var/Sheet_cell_calldata/impl.cairo" + }, + "start_col": 37, + "start_line": 19 + }, + "While trying to retrieve the implicit argument 'syscall_ptr' in:" + ], + "start_col": 19, + "start_line": 352 + }, + "While expanding the reference 'syscall_ptr' in:" + ], + "start_col": 15, + "start_line": 15 + } + }, + "2880": { + "accessible_scopes": [ + "sheet.library", + "sheet.library.Sheet_cell_calldata", + "sheet.library.Sheet_cell_calldata.read" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 26, + "end_line": 18, + "input_file": { + "filename": "autogen/starknet/storage_var/Sheet_cell_calldata/impl.cairo" + }, + "parent_location": [ + { + "end_col": 70, + "end_line": 19, + "input_file": { + "filename": "autogen/starknet/storage_var/Sheet_cell_calldata/impl.cairo" + }, + "start_col": 58, + "start_line": 19 + }, + "While expanding the reference 'storage_addr' in:" + ], + "start_col": 14, + "start_line": 18 + } + }, + "2881": { + "accessible_scopes": [ + "sheet.library", + "sheet.library.Sheet_cell_calldata", + "sheet.library.Sheet_cell_calldata.read" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 75, + "end_line": 19, + "input_file": { + "filename": "autogen/starknet/storage_var/Sheet_cell_calldata/impl.cairo" + }, + "start_col": 37, + "start_line": 19 + } + }, + "2883": { + "accessible_scopes": [ + "sheet.library", + "sheet.library.Sheet_cell_calldata", + "sheet.library.Sheet_cell_calldata.read" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 37, + "end_line": 352, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/starknet/common/syscalls.cairo" + }, + "parent_location": [ + { + "end_col": 75, + "end_line": 19, + "input_file": { + "filename": "autogen/starknet/storage_var/Sheet_cell_calldata/impl.cairo" + }, + "parent_location": [ + { + "end_col": 42, + "end_line": 21, + "input_file": { + "filename": "autogen/starknet/storage_var/Sheet_cell_calldata/impl.cairo" + }, + "start_col": 31, + "start_line": 21 + }, + "While expanding the reference 'syscall_ptr' in:" + ], + "start_col": 37, + "start_line": 19 + }, + "While trying to update the implicit return value 'syscall_ptr' in:" + ], + "start_col": 19, + "start_line": 352 + } + }, + "2884": { + "accessible_scopes": [ + "sheet.library", + "sheet.library.Sheet_cell_calldata", + "sheet.library.Sheet_cell_calldata.read" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 41, + "end_line": 7, + "input_file": { + "filename": "autogen/starknet/storage_var/Sheet_cell_calldata/decl.cairo" + }, + "parent_location": [ + { + "end_col": 45, + "end_line": 18, + "input_file": { + "filename": "autogen/starknet/storage_var/Sheet_cell_calldata/impl.cairo" + }, + "parent_location": [ + { + "end_col": 44, + "end_line": 22, + "input_file": { + "filename": "autogen/starknet/storage_var/Sheet_cell_calldata/impl.cairo" + }, + "start_col": 32, + "start_line": 22 + }, + "While expanding the reference 'pedersen_ptr' in:" + ], + "start_col": 30, + "start_line": 18 + }, + "While trying to update the implicit return value 'pedersen_ptr' in:" + ], + "start_col": 15, + "start_line": 7 + } + }, + "2885": { + "accessible_scopes": [ + "sheet.library", + "sheet.library.Sheet_cell_calldata", + "sheet.library.Sheet_cell_calldata.read" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 58, + "end_line": 7, + "input_file": { + "filename": "autogen/starknet/storage_var/Sheet_cell_calldata/decl.cairo" + }, + "parent_location": [ + { + "end_col": 45, + "end_line": 18, + "input_file": { + "filename": "autogen/starknet/storage_var/Sheet_cell_calldata/impl.cairo" + }, + "parent_location": [ + { + "end_col": 50, + "end_line": 23, + "input_file": { + "filename": "autogen/starknet/storage_var/Sheet_cell_calldata/impl.cairo" + }, + "start_col": 35, + "start_line": 23 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 30, + "start_line": 18 + }, + "While trying to update the implicit return value 'range_check_ptr' in:" + ], + "start_col": 43, + "start_line": 7 + } + }, + "2886": { + "accessible_scopes": [ + "sheet.library", + "sheet.library.Sheet_cell_calldata", + "sheet.library.Sheet_cell_calldata.read" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 33, + "end_line": 19, + "input_file": { + "filename": "autogen/starknet/storage_var/Sheet_cell_calldata/impl.cairo" + }, + "parent_location": [ + { + "end_col": 64, + "end_line": 24, + "input_file": { + "filename": "autogen/starknet/storage_var/Sheet_cell_calldata/impl.cairo" + }, + "start_col": 45, + "start_line": 24 + }, + "While expanding the reference '__storage_var_temp0' in:" + ], + "start_col": 14, + "start_line": 19 + } + }, + "2887": { + "accessible_scopes": [ + "sheet.library", + "sheet.library.Sheet_cell_calldata", + "sheet.library.Sheet_cell_calldata.read" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 55, + "end_line": 25, + "input_file": { + "filename": "autogen/starknet/storage_var/Sheet_cell_calldata/impl.cairo" + }, + "start_col": 9, + "start_line": 25 + } + }, + "2888": { + "accessible_scopes": [ + "sheet.library", + "sheet.library.Sheet_cell_calldata", + "sheet.library.Sheet_cell_calldata.write" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 62, + "end_line": 28, + "input_file": { + "filename": "autogen/starknet/storage_var/Sheet_cell_calldata/impl.cairo" + }, + "parent_location": [ + { + "end_col": 41, + "end_line": 7, + "input_file": { + "filename": "autogen/starknet/storage_var/Sheet_cell_calldata/decl.cairo" + }, + "parent_location": [ + { + "end_col": 45, + "end_line": 31, + "input_file": { + "filename": "autogen/starknet/storage_var/Sheet_cell_calldata/impl.cairo" + }, + "start_col": 30, + "start_line": 31 + }, + "While trying to retrieve the implicit argument 'pedersen_ptr' in:" + ], + "start_col": 15, + "start_line": 7 + }, + "While expanding the reference 'pedersen_ptr' in:" + ], + "start_col": 36, + "start_line": 28 + } + }, + "2889": { + "accessible_scopes": [ + "sheet.library", + "sheet.library.Sheet_cell_calldata", + "sheet.library.Sheet_cell_calldata.write" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 79, + "end_line": 28, + "input_file": { + "filename": "autogen/starknet/storage_var/Sheet_cell_calldata/impl.cairo" + }, + "parent_location": [ + { + "end_col": 58, + "end_line": 7, + "input_file": { + "filename": "autogen/starknet/storage_var/Sheet_cell_calldata/decl.cairo" + }, + "parent_location": [ + { + "end_col": 45, + "end_line": 31, + "input_file": { + "filename": "autogen/starknet/storage_var/Sheet_cell_calldata/impl.cairo" + }, + "start_col": 30, + "start_line": 31 + }, + "While trying to retrieve the implicit argument 'range_check_ptr' in:" + ], + "start_col": 43, + "start_line": 7 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 64, + "start_line": 28 + } + }, + "2890": { + "accessible_scopes": [ + "sheet.library", + "sheet.library.Sheet_cell_calldata", + "sheet.library.Sheet_cell_calldata.write" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 17, + "end_line": 29, + "input_file": { + "filename": "autogen/starknet/storage_var/Sheet_cell_calldata/impl.cairo" + }, + "parent_location": [ + { + "end_col": 37, + "end_line": 31, + "input_file": { + "filename": "autogen/starknet/storage_var/Sheet_cell_calldata/impl.cairo" + }, + "start_col": 35, + "start_line": 31 + }, + "While expanding the reference 'id' in:" + ], + "start_col": 9, + "start_line": 29 + } + }, + "2891": { + "accessible_scopes": [ + "sheet.library", + "sheet.library.Sheet_cell_calldata", + "sheet.library.Sheet_cell_calldata.write" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 30, + "end_line": 29, + "input_file": { + "filename": "autogen/starknet/storage_var/Sheet_cell_calldata/impl.cairo" + }, + "parent_location": [ + { + "end_col": 44, + "end_line": 31, + "input_file": { + "filename": "autogen/starknet/storage_var/Sheet_cell_calldata/impl.cairo" + }, + "start_col": 39, + "start_line": 31 + }, + "While expanding the reference 'index' in:" + ], + "start_col": 19, + "start_line": 29 + } + }, + "2892": { + "accessible_scopes": [ + "sheet.library", + "sheet.library.Sheet_cell_calldata", + "sheet.library.Sheet_cell_calldata.write" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 45, + "end_line": 31, + "input_file": { + "filename": "autogen/starknet/storage_var/Sheet_cell_calldata/impl.cairo" + }, + "start_col": 30, + "start_line": 31 + } + }, + "2894": { + "accessible_scopes": [ + "sheet.library", + "sheet.library.Sheet_cell_calldata", + "sheet.library.Sheet_cell_calldata.write" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 34, + "end_line": 28, + "input_file": { + "filename": "autogen/starknet/storage_var/Sheet_cell_calldata/impl.cairo" + }, + "parent_location": [ + { + "end_col": 38, + "end_line": 370, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/starknet/common/syscalls.cairo" + }, + "parent_location": [ + { + "end_col": 80, + "end_line": 32, + "input_file": { + "filename": "autogen/starknet/storage_var/Sheet_cell_calldata/impl.cairo" + }, + "start_col": 9, + "start_line": 32 + }, + "While trying to retrieve the implicit argument 'syscall_ptr' in:" + ], + "start_col": 20, + "start_line": 370 + }, + "While expanding the reference 'syscall_ptr' in:" + ], + "start_col": 16, + "start_line": 28 + } + }, + "2895": { + "accessible_scopes": [ + "sheet.library", + "sheet.library.Sheet_cell_calldata", + "sheet.library.Sheet_cell_calldata.write" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 26, + "end_line": 31, + "input_file": { + "filename": "autogen/starknet/storage_var/Sheet_cell_calldata/impl.cairo" + }, + "parent_location": [ + { + "end_col": 43, + "end_line": 32, + "input_file": { + "filename": "autogen/starknet/storage_var/Sheet_cell_calldata/impl.cairo" + }, + "start_col": 31, + "start_line": 32 + }, + "While expanding the reference 'storage_addr' in:" + ], + "start_col": 14, + "start_line": 31 + } + }, + "2896": { + "accessible_scopes": [ + "sheet.library", + "sheet.library.Sheet_cell_calldata", + "sheet.library.Sheet_cell_calldata.write" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 79, + "end_line": 32, + "input_file": { + "filename": "autogen/starknet/storage_var/Sheet_cell_calldata/impl.cairo" + }, + "start_col": 55, + "start_line": 32 + } + }, + "2897": { + "accessible_scopes": [ + "sheet.library", + "sheet.library.Sheet_cell_calldata", + "sheet.library.Sheet_cell_calldata.write" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 80, + "end_line": 32, + "input_file": { + "filename": "autogen/starknet/storage_var/Sheet_cell_calldata/impl.cairo" + }, + "start_col": 9, + "start_line": 32 + } + }, + "2899": { + "accessible_scopes": [ + "sheet.library", + "sheet.library.Sheet_cell_calldata", + "sheet.library.Sheet_cell_calldata.write" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 41, + "end_line": 7, + "input_file": { + "filename": "autogen/starknet/storage_var/Sheet_cell_calldata/decl.cairo" + }, + "parent_location": [ + { + "end_col": 45, + "end_line": 31, + "input_file": { + "filename": "autogen/starknet/storage_var/Sheet_cell_calldata/impl.cairo" + }, + "parent_location": [ + { + "end_col": 62, + "end_line": 21, + "input_file": { + "filename": "autogen/starknet/storage_var/Sheet_cell_calldata/decl.cairo" + }, + "parent_location": [ + { + "end_col": 19, + "end_line": 33, + "input_file": { + "filename": "autogen/starknet/storage_var/Sheet_cell_calldata/impl.cairo" + }, + "start_col": 9, + "start_line": 33 + }, + "While trying to retrieve the implicit argument 'pedersen_ptr' in:" + ], + "start_col": 36, + "start_line": 21 + }, + "While expanding the reference 'pedersen_ptr' in:" + ], + "start_col": 30, + "start_line": 31 + }, + "While trying to update the implicit return value 'pedersen_ptr' in:" + ], + "start_col": 15, + "start_line": 7 + } + }, + "2900": { + "accessible_scopes": [ + "sheet.library", + "sheet.library.Sheet_cell_calldata", + "sheet.library.Sheet_cell_calldata.write" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 58, + "end_line": 7, + "input_file": { + "filename": "autogen/starknet/storage_var/Sheet_cell_calldata/decl.cairo" + }, + "parent_location": [ + { + "end_col": 45, + "end_line": 31, + "input_file": { + "filename": "autogen/starknet/storage_var/Sheet_cell_calldata/impl.cairo" + }, + "parent_location": [ + { + "end_col": 79, + "end_line": 21, + "input_file": { + "filename": "autogen/starknet/storage_var/Sheet_cell_calldata/decl.cairo" + }, + "parent_location": [ + { + "end_col": 19, + "end_line": 33, + "input_file": { + "filename": "autogen/starknet/storage_var/Sheet_cell_calldata/impl.cairo" + }, + "start_col": 9, + "start_line": 33 + }, + "While trying to retrieve the implicit argument 'range_check_ptr' in:" + ], + "start_col": 64, + "start_line": 21 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 30, + "start_line": 31 + }, + "While trying to update the implicit return value 'range_check_ptr' in:" + ], + "start_col": 43, + "start_line": 7 + } + }, + "2901": { + "accessible_scopes": [ + "sheet.library", + "sheet.library.Sheet_cell_calldata", + "sheet.library.Sheet_cell_calldata.write" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 19, + "end_line": 33, + "input_file": { + "filename": "autogen/starknet/storage_var/Sheet_cell_calldata/impl.cairo" + }, + "start_col": 9, + "start_line": 33 + } + }, + "2902": { + "accessible_scopes": [ + "sheet.library", + "sheet.library.Sheet_contract_uri_len", + "sheet.library.Sheet_contract_uri_len.addr" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 41, + "end_line": 7, + "input_file": { + "filename": "autogen/starknet/storage_var/Sheet_contract_uri_len/impl.cairo" + }, + "parent_location": [ + { + "end_col": 41, + "end_line": 7, + "input_file": { + "filename": "autogen/starknet/storage_var/Sheet_contract_uri_len/decl.cairo" + }, + "parent_location": [ + { + "end_col": 26, + "end_line": 9, + "input_file": { + "filename": "autogen/starknet/storage_var/Sheet_contract_uri_len/impl.cairo" + }, + "start_col": 9, + "start_line": 9 + }, + "While trying to retrieve the implicit argument 'pedersen_ptr' in:" + ], + "start_col": 15, + "start_line": 7 + }, + "While expanding the reference 'pedersen_ptr' in:" + ], + "start_col": 15, + "start_line": 7 + } + }, + "2903": { + "accessible_scopes": [ + "sheet.library", + "sheet.library.Sheet_contract_uri_len", + "sheet.library.Sheet_contract_uri_len.addr" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 58, + "end_line": 7, + "input_file": { + "filename": "autogen/starknet/storage_var/Sheet_contract_uri_len/impl.cairo" + }, + "parent_location": [ + { + "end_col": 58, + "end_line": 7, + "input_file": { + "filename": "autogen/starknet/storage_var/Sheet_contract_uri_len/decl.cairo" + }, + "parent_location": [ + { + "end_col": 26, + "end_line": 9, + "input_file": { + "filename": "autogen/starknet/storage_var/Sheet_contract_uri_len/impl.cairo" + }, + "start_col": 9, + "start_line": 9 + }, + "While trying to retrieve the implicit argument 'range_check_ptr' in:" + ], + "start_col": 43, + "start_line": 7 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 43, + "start_line": 7 + } + }, + "2904": { + "accessible_scopes": [ + "sheet.library", + "sheet.library.Sheet_contract_uri_len", + "sheet.library.Sheet_contract_uri_len.addr" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 95, + "end_line": 8, + "input_file": { + "filename": "autogen/starknet/storage_var/Sheet_contract_uri_len/impl.cairo" + }, + "parent_location": [ + { + "end_col": 24, + "end_line": 9, + "input_file": { + "filename": "autogen/starknet/storage_var/Sheet_contract_uri_len/impl.cairo" + }, + "start_col": 21, + "start_line": 9 + }, + "While expanding the reference 'res' in:" + ], + "start_col": 19, + "start_line": 8 + } + }, + "2906": { + "accessible_scopes": [ + "sheet.library", + "sheet.library.Sheet_contract_uri_len", + "sheet.library.Sheet_contract_uri_len.addr" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 26, + "end_line": 9, + "input_file": { + "filename": "autogen/starknet/storage_var/Sheet_contract_uri_len/impl.cairo" + }, + "start_col": 9, + "start_line": 9 + } + }, + "2907": { + "accessible_scopes": [ + "sheet.library", + "sheet.library.Sheet_contract_uri_len", + "sheet.library.Sheet_contract_uri_len.read" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 61, + "end_line": 12, + "input_file": { + "filename": "autogen/starknet/storage_var/Sheet_contract_uri_len/impl.cairo" + }, + "parent_location": [ + { + "end_col": 41, + "end_line": 7, + "input_file": { + "filename": "autogen/starknet/storage_var/Sheet_contract_uri_len/decl.cairo" + }, + "parent_location": [ + { + "end_col": 36, + "end_line": 13, + "input_file": { + "filename": "autogen/starknet/storage_var/Sheet_contract_uri_len/impl.cairo" + }, + "start_col": 30, + "start_line": 13 + }, + "While trying to retrieve the implicit argument 'pedersen_ptr' in:" + ], + "start_col": 15, + "start_line": 7 + }, + "While expanding the reference 'pedersen_ptr' in:" + ], + "start_col": 35, + "start_line": 12 + } + }, + "2908": { + "accessible_scopes": [ + "sheet.library", + "sheet.library.Sheet_contract_uri_len", + "sheet.library.Sheet_contract_uri_len.read" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 78, + "end_line": 12, + "input_file": { + "filename": "autogen/starknet/storage_var/Sheet_contract_uri_len/impl.cairo" + }, + "parent_location": [ + { + "end_col": 58, + "end_line": 7, + "input_file": { + "filename": "autogen/starknet/storage_var/Sheet_contract_uri_len/decl.cairo" + }, + "parent_location": [ + { + "end_col": 36, + "end_line": 13, + "input_file": { + "filename": "autogen/starknet/storage_var/Sheet_contract_uri_len/impl.cairo" + }, + "start_col": 30, + "start_line": 13 + }, + "While trying to retrieve the implicit argument 'range_check_ptr' in:" + ], + "start_col": 43, + "start_line": 7 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 63, + "start_line": 12 + } + }, + "2909": { + "accessible_scopes": [ + "sheet.library", + "sheet.library.Sheet_contract_uri_len", + "sheet.library.Sheet_contract_uri_len.read" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 36, + "end_line": 13, + "input_file": { + "filename": "autogen/starknet/storage_var/Sheet_contract_uri_len/impl.cairo" + }, + "start_col": 30, + "start_line": 13 + } + }, + "2911": { + "accessible_scopes": [ + "sheet.library", + "sheet.library.Sheet_contract_uri_len", + "sheet.library.Sheet_contract_uri_len.read" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 33, + "end_line": 12, + "input_file": { + "filename": "autogen/starknet/storage_var/Sheet_contract_uri_len/impl.cairo" + }, + "parent_location": [ + { + "end_col": 37, + "end_line": 352, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/starknet/common/syscalls.cairo" + }, + "parent_location": [ + { + "end_col": 75, + "end_line": 14, + "input_file": { + "filename": "autogen/starknet/storage_var/Sheet_contract_uri_len/impl.cairo" + }, + "start_col": 37, + "start_line": 14 + }, + "While trying to retrieve the implicit argument 'syscall_ptr' in:" + ], + "start_col": 19, + "start_line": 352 + }, + "While expanding the reference 'syscall_ptr' in:" + ], + "start_col": 15, + "start_line": 12 + } + }, + "2912": { + "accessible_scopes": [ + "sheet.library", + "sheet.library.Sheet_contract_uri_len", + "sheet.library.Sheet_contract_uri_len.read" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 26, + "end_line": 13, + "input_file": { + "filename": "autogen/starknet/storage_var/Sheet_contract_uri_len/impl.cairo" + }, + "parent_location": [ + { + "end_col": 70, + "end_line": 14, + "input_file": { + "filename": "autogen/starknet/storage_var/Sheet_contract_uri_len/impl.cairo" + }, + "start_col": 58, + "start_line": 14 + }, + "While expanding the reference 'storage_addr' in:" + ], + "start_col": 14, + "start_line": 13 + } + }, + "2913": { + "accessible_scopes": [ + "sheet.library", + "sheet.library.Sheet_contract_uri_len", + "sheet.library.Sheet_contract_uri_len.read" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 75, + "end_line": 14, + "input_file": { + "filename": "autogen/starknet/storage_var/Sheet_contract_uri_len/impl.cairo" + }, + "start_col": 37, + "start_line": 14 + } + }, + "2915": { + "accessible_scopes": [ + "sheet.library", + "sheet.library.Sheet_contract_uri_len", + "sheet.library.Sheet_contract_uri_len.read" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 37, + "end_line": 352, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/starknet/common/syscalls.cairo" + }, + "parent_location": [ + { + "end_col": 75, + "end_line": 14, + "input_file": { + "filename": "autogen/starknet/storage_var/Sheet_contract_uri_len/impl.cairo" + }, + "parent_location": [ + { + "end_col": 42, + "end_line": 16, + "input_file": { + "filename": "autogen/starknet/storage_var/Sheet_contract_uri_len/impl.cairo" + }, + "start_col": 31, + "start_line": 16 + }, + "While expanding the reference 'syscall_ptr' in:" + ], + "start_col": 37, + "start_line": 14 + }, + "While trying to update the implicit return value 'syscall_ptr' in:" + ], + "start_col": 19, + "start_line": 352 + } + }, + "2916": { + "accessible_scopes": [ + "sheet.library", + "sheet.library.Sheet_contract_uri_len", + "sheet.library.Sheet_contract_uri_len.read" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 41, + "end_line": 7, + "input_file": { + "filename": "autogen/starknet/storage_var/Sheet_contract_uri_len/decl.cairo" + }, + "parent_location": [ + { + "end_col": 36, + "end_line": 13, + "input_file": { + "filename": "autogen/starknet/storage_var/Sheet_contract_uri_len/impl.cairo" + }, + "parent_location": [ + { + "end_col": 44, + "end_line": 17, + "input_file": { + "filename": "autogen/starknet/storage_var/Sheet_contract_uri_len/impl.cairo" + }, + "start_col": 32, + "start_line": 17 + }, + "While expanding the reference 'pedersen_ptr' in:" + ], + "start_col": 30, + "start_line": 13 + }, + "While trying to update the implicit return value 'pedersen_ptr' in:" + ], + "start_col": 15, + "start_line": 7 + } + }, + "2917": { + "accessible_scopes": [ + "sheet.library", + "sheet.library.Sheet_contract_uri_len", + "sheet.library.Sheet_contract_uri_len.read" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 58, + "end_line": 7, + "input_file": { + "filename": "autogen/starknet/storage_var/Sheet_contract_uri_len/decl.cairo" + }, + "parent_location": [ + { + "end_col": 36, + "end_line": 13, + "input_file": { + "filename": "autogen/starknet/storage_var/Sheet_contract_uri_len/impl.cairo" + }, + "parent_location": [ + { + "end_col": 50, + "end_line": 18, + "input_file": { + "filename": "autogen/starknet/storage_var/Sheet_contract_uri_len/impl.cairo" + }, + "start_col": 35, + "start_line": 18 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 30, + "start_line": 13 + }, + "While trying to update the implicit return value 'range_check_ptr' in:" + ], + "start_col": 43, + "start_line": 7 + } + }, + "2918": { + "accessible_scopes": [ + "sheet.library", + "sheet.library.Sheet_contract_uri_len", + "sheet.library.Sheet_contract_uri_len.read" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 33, + "end_line": 14, + "input_file": { + "filename": "autogen/starknet/storage_var/Sheet_contract_uri_len/impl.cairo" + }, + "parent_location": [ + { + "end_col": 64, + "end_line": 19, + "input_file": { + "filename": "autogen/starknet/storage_var/Sheet_contract_uri_len/impl.cairo" + }, + "start_col": 45, + "start_line": 19 + }, + "While expanding the reference '__storage_var_temp0' in:" + ], + "start_col": 14, + "start_line": 14 + } + }, + "2919": { + "accessible_scopes": [ + "sheet.library", + "sheet.library.Sheet_contract_uri_len", + "sheet.library.Sheet_contract_uri_len.read" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 55, + "end_line": 20, + "input_file": { + "filename": "autogen/starknet/storage_var/Sheet_contract_uri_len/impl.cairo" + }, + "start_col": 9, + "start_line": 20 + } + }, + "2920": { + "accessible_scopes": [ + "sheet.library", + "sheet.library.Sheet_contract_uri_len", + "sheet.library.Sheet_contract_uri_len.write" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 62, + "end_line": 23, + "input_file": { + "filename": "autogen/starknet/storage_var/Sheet_contract_uri_len/impl.cairo" + }, + "parent_location": [ + { + "end_col": 41, + "end_line": 7, + "input_file": { + "filename": "autogen/starknet/storage_var/Sheet_contract_uri_len/decl.cairo" + }, + "parent_location": [ + { + "end_col": 36, + "end_line": 24, + "input_file": { + "filename": "autogen/starknet/storage_var/Sheet_contract_uri_len/impl.cairo" + }, + "start_col": 30, + "start_line": 24 + }, + "While trying to retrieve the implicit argument 'pedersen_ptr' in:" + ], + "start_col": 15, + "start_line": 7 + }, + "While expanding the reference 'pedersen_ptr' in:" + ], + "start_col": 36, + "start_line": 23 + } + }, + "2921": { + "accessible_scopes": [ + "sheet.library", + "sheet.library.Sheet_contract_uri_len", + "sheet.library.Sheet_contract_uri_len.write" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 79, + "end_line": 23, + "input_file": { + "filename": "autogen/starknet/storage_var/Sheet_contract_uri_len/impl.cairo" + }, + "parent_location": [ + { + "end_col": 58, + "end_line": 7, + "input_file": { + "filename": "autogen/starknet/storage_var/Sheet_contract_uri_len/decl.cairo" + }, + "parent_location": [ + { + "end_col": 36, + "end_line": 24, + "input_file": { + "filename": "autogen/starknet/storage_var/Sheet_contract_uri_len/impl.cairo" + }, + "start_col": 30, + "start_line": 24 + }, + "While trying to retrieve the implicit argument 'range_check_ptr' in:" + ], + "start_col": 43, + "start_line": 7 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 64, + "start_line": 23 + } + }, + "2922": { + "accessible_scopes": [ + "sheet.library", + "sheet.library.Sheet_contract_uri_len", + "sheet.library.Sheet_contract_uri_len.write" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 36, + "end_line": 24, + "input_file": { + "filename": "autogen/starknet/storage_var/Sheet_contract_uri_len/impl.cairo" + }, + "start_col": 30, + "start_line": 24 + } + }, + "2924": { + "accessible_scopes": [ + "sheet.library", + "sheet.library.Sheet_contract_uri_len", + "sheet.library.Sheet_contract_uri_len.write" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 34, + "end_line": 23, + "input_file": { + "filename": "autogen/starknet/storage_var/Sheet_contract_uri_len/impl.cairo" + }, + "parent_location": [ + { + "end_col": 38, + "end_line": 370, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/starknet/common/syscalls.cairo" + }, + "parent_location": [ + { + "end_col": 80, + "end_line": 25, + "input_file": { + "filename": "autogen/starknet/storage_var/Sheet_contract_uri_len/impl.cairo" + }, + "start_col": 9, + "start_line": 25 + }, + "While trying to retrieve the implicit argument 'syscall_ptr' in:" + ], + "start_col": 20, + "start_line": 370 + }, + "While expanding the reference 'syscall_ptr' in:" + ], + "start_col": 16, + "start_line": 23 + } + }, + "2925": { + "accessible_scopes": [ + "sheet.library", + "sheet.library.Sheet_contract_uri_len", + "sheet.library.Sheet_contract_uri_len.write" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 26, + "end_line": 24, + "input_file": { + "filename": "autogen/starknet/storage_var/Sheet_contract_uri_len/impl.cairo" + }, + "parent_location": [ + { + "end_col": 43, + "end_line": 25, + "input_file": { + "filename": "autogen/starknet/storage_var/Sheet_contract_uri_len/impl.cairo" + }, + "start_col": 31, + "start_line": 25 + }, + "While expanding the reference 'storage_addr' in:" + ], + "start_col": 14, + "start_line": 24 + } + }, + "2926": { + "accessible_scopes": [ + "sheet.library", + "sheet.library.Sheet_contract_uri_len", + "sheet.library.Sheet_contract_uri_len.write" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 79, + "end_line": 25, + "input_file": { + "filename": "autogen/starknet/storage_var/Sheet_contract_uri_len/impl.cairo" + }, + "start_col": 55, + "start_line": 25 + } + }, + "2927": { + "accessible_scopes": [ + "sheet.library", + "sheet.library.Sheet_contract_uri_len", + "sheet.library.Sheet_contract_uri_len.write" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 80, + "end_line": 25, + "input_file": { + "filename": "autogen/starknet/storage_var/Sheet_contract_uri_len/impl.cairo" + }, + "start_col": 9, + "start_line": 25 + } + }, + "2929": { + "accessible_scopes": [ + "sheet.library", + "sheet.library.Sheet_contract_uri_len", + "sheet.library.Sheet_contract_uri_len.write" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 41, + "end_line": 7, + "input_file": { + "filename": "autogen/starknet/storage_var/Sheet_contract_uri_len/decl.cairo" + }, + "parent_location": [ + { + "end_col": 36, + "end_line": 24, + "input_file": { + "filename": "autogen/starknet/storage_var/Sheet_contract_uri_len/impl.cairo" + }, + "parent_location": [ + { + "end_col": 62, + "end_line": 19, + "input_file": { + "filename": "autogen/starknet/storage_var/Sheet_contract_uri_len/decl.cairo" + }, + "parent_location": [ + { + "end_col": 19, + "end_line": 26, + "input_file": { + "filename": "autogen/starknet/storage_var/Sheet_contract_uri_len/impl.cairo" + }, + "start_col": 9, + "start_line": 26 + }, + "While trying to retrieve the implicit argument 'pedersen_ptr' in:" + ], + "start_col": 36, + "start_line": 19 + }, + "While expanding the reference 'pedersen_ptr' in:" + ], + "start_col": 30, + "start_line": 24 + }, + "While trying to update the implicit return value 'pedersen_ptr' in:" + ], + "start_col": 15, + "start_line": 7 + } + }, + "2930": { + "accessible_scopes": [ + "sheet.library", + "sheet.library.Sheet_contract_uri_len", + "sheet.library.Sheet_contract_uri_len.write" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 58, + "end_line": 7, + "input_file": { + "filename": "autogen/starknet/storage_var/Sheet_contract_uri_len/decl.cairo" + }, + "parent_location": [ + { + "end_col": 36, + "end_line": 24, + "input_file": { + "filename": "autogen/starknet/storage_var/Sheet_contract_uri_len/impl.cairo" + }, + "parent_location": [ + { + "end_col": 79, + "end_line": 19, + "input_file": { + "filename": "autogen/starknet/storage_var/Sheet_contract_uri_len/decl.cairo" + }, + "parent_location": [ + { + "end_col": 19, + "end_line": 26, + "input_file": { + "filename": "autogen/starknet/storage_var/Sheet_contract_uri_len/impl.cairo" + }, + "start_col": 9, + "start_line": 26 + }, + "While trying to retrieve the implicit argument 'range_check_ptr' in:" + ], + "start_col": 64, + "start_line": 19 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 30, + "start_line": 24 + }, + "While trying to update the implicit return value 'range_check_ptr' in:" + ], + "start_col": 43, + "start_line": 7 + } + }, + "2931": { + "accessible_scopes": [ + "sheet.library", + "sheet.library.Sheet_contract_uri_len", + "sheet.library.Sheet_contract_uri_len.write" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 19, + "end_line": 26, + "input_file": { + "filename": "autogen/starknet/storage_var/Sheet_contract_uri_len/impl.cairo" + }, + "start_col": 9, + "start_line": 26 + } + }, + "2932": { + "accessible_scopes": [ + "sheet.library", + "sheet.library.Sheet_contract_uri", + "sheet.library.Sheet_contract_uri.addr" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 41, + "end_line": 7, + "input_file": { + "filename": "autogen/starknet/storage_var/Sheet_contract_uri/impl.cairo" + }, + "parent_location": [ + { + "end_col": 48, + "end_line": 9, + "input_file": { + "filename": "autogen/starknet/storage_var/Sheet_contract_uri/impl.cairo" + }, + "start_col": 36, + "start_line": 9 + }, + "While expanding the reference 'pedersen_ptr' in:" + ], + "start_col": 15, + "start_line": 7 + } + }, + "2933": { + "accessible_scopes": [ + "sheet.library", + "sheet.library.Sheet_contract_uri", + "sheet.library.Sheet_contract_uri.addr" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 94, + "end_line": 8, + "input_file": { + "filename": "autogen/starknet/storage_var/Sheet_contract_uri/impl.cairo" + }, + "parent_location": [ + { + "end_col": 53, + "end_line": 9, + "input_file": { + "filename": "autogen/starknet/storage_var/Sheet_contract_uri/impl.cairo" + }, + "start_col": 50, + "start_line": 9 + }, + "While expanding the reference 'res' in:" + ], + "start_col": 19, + "start_line": 8 + } + }, + "2935": { + "accessible_scopes": [ + "sheet.library", + "sheet.library.Sheet_contract_uri", + "sheet.library.Sheet_contract_uri.addr" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 77, + "end_line": 9, + "input_file": { + "filename": "autogen/starknet/storage_var/Sheet_contract_uri/impl.cairo" + }, + "start_col": 55, + "start_line": 9 + } + }, + "2936": { + "accessible_scopes": [ + "sheet.library", + "sheet.library.Sheet_contract_uri", + "sheet.library.Sheet_contract_uri.addr" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 78, + "end_line": 9, + "input_file": { + "filename": "autogen/starknet/storage_var/Sheet_contract_uri/impl.cairo" + }, + "start_col": 21, + "start_line": 9 + } + }, + "2938": { + "accessible_scopes": [ + "sheet.library", + "sheet.library.Sheet_contract_uri", + "sheet.library.Sheet_contract_uri.addr" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 58, + "end_line": 7, + "input_file": { + "filename": "autogen/starknet/storage_var/Sheet_contract_uri/impl.cairo" + }, + "parent_location": [ + { + "end_col": 39, + "end_line": 12, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/starknet/common/storage.cairo" + }, + "parent_location": [ + { + "end_col": 48, + "end_line": 10, + "input_file": { + "filename": "autogen/starknet/storage_var/Sheet_contract_uri/impl.cairo" + }, + "start_col": 21, + "start_line": 10 + }, + "While trying to retrieve the implicit argument 'range_check_ptr' in:" + ], + "start_col": 24, + "start_line": 12 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 43, + "start_line": 7 + } + }, + "2939": { + "accessible_scopes": [ + "sheet.library", + "sheet.library.Sheet_contract_uri", + "sheet.library.Sheet_contract_uri.addr" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 17, + "end_line": 9, + "input_file": { + "filename": "autogen/starknet/storage_var/Sheet_contract_uri/impl.cairo" + }, + "parent_location": [ + { + "end_col": 47, + "end_line": 10, + "input_file": { + "filename": "autogen/starknet/storage_var/Sheet_contract_uri/impl.cairo" + }, + "start_col": 44, + "start_line": 10 + }, + "While expanding the reference 'res' in:" + ], + "start_col": 14, + "start_line": 9 + } + }, + "2940": { + "accessible_scopes": [ + "sheet.library", + "sheet.library.Sheet_contract_uri", + "sheet.library.Sheet_contract_uri.addr" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 48, + "end_line": 10, + "input_file": { + "filename": "autogen/starknet/storage_var/Sheet_contract_uri/impl.cairo" + }, + "start_col": 21, + "start_line": 10 + } + }, + "2942": { + "accessible_scopes": [ + "sheet.library", + "sheet.library.Sheet_contract_uri", + "sheet.library.Sheet_contract_uri.addr" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 48, + "end_line": 9, + "input_file": { + "filename": "autogen/starknet/storage_var/Sheet_contract_uri/impl.cairo" + }, + "parent_location": [ + { + "end_col": 41, + "end_line": 7, + "input_file": { + "filename": "autogen/starknet/storage_var/Sheet_contract_uri/decl.cairo" + }, + "parent_location": [ + { + "end_col": 26, + "end_line": 11, + "input_file": { + "filename": "autogen/starknet/storage_var/Sheet_contract_uri/impl.cairo" + }, + "start_col": 9, + "start_line": 11 + }, + "While trying to retrieve the implicit argument 'pedersen_ptr' in:" + ], + "start_col": 15, + "start_line": 7 + }, + "While expanding the reference 'pedersen_ptr' in:" + ], + "start_col": 36, + "start_line": 9 + } + }, + "2943": { + "accessible_scopes": [ + "sheet.library", + "sheet.library.Sheet_contract_uri", + "sheet.library.Sheet_contract_uri.addr" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 39, + "end_line": 12, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/starknet/common/storage.cairo" + }, + "parent_location": [ + { + "end_col": 48, + "end_line": 10, + "input_file": { + "filename": "autogen/starknet/storage_var/Sheet_contract_uri/impl.cairo" + }, + "parent_location": [ + { + "end_col": 58, + "end_line": 7, + "input_file": { + "filename": "autogen/starknet/storage_var/Sheet_contract_uri/decl.cairo" + }, + "parent_location": [ + { + "end_col": 26, + "end_line": 11, + "input_file": { + "filename": "autogen/starknet/storage_var/Sheet_contract_uri/impl.cairo" + }, + "start_col": 9, + "start_line": 11 + }, + "While trying to retrieve the implicit argument 'range_check_ptr' in:" + ], + "start_col": 43, + "start_line": 7 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 21, + "start_line": 10 + }, + "While trying to update the implicit return value 'range_check_ptr' in:" + ], + "start_col": 24, + "start_line": 12 + } + }, + "2944": { + "accessible_scopes": [ + "sheet.library", + "sheet.library.Sheet_contract_uri", + "sheet.library.Sheet_contract_uri.addr" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 17, + "end_line": 10, + "input_file": { + "filename": "autogen/starknet/storage_var/Sheet_contract_uri/impl.cairo" + }, + "parent_location": [ + { + "end_col": 24, + "end_line": 11, + "input_file": { + "filename": "autogen/starknet/storage_var/Sheet_contract_uri/impl.cairo" + }, + "start_col": 21, + "start_line": 11 + }, + "While expanding the reference 'res' in:" + ], + "start_col": 14, + "start_line": 10 + } + }, + "2945": { + "accessible_scopes": [ + "sheet.library", + "sheet.library.Sheet_contract_uri", + "sheet.library.Sheet_contract_uri.addr" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 26, + "end_line": 11, + "input_file": { + "filename": "autogen/starknet/storage_var/Sheet_contract_uri/impl.cairo" + }, + "start_col": 9, + "start_line": 11 + } + }, + "2946": { + "accessible_scopes": [ + "sheet.library", + "sheet.library.Sheet_contract_uri", + "sheet.library.Sheet_contract_uri.read" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 61, + "end_line": 14, + "input_file": { + "filename": "autogen/starknet/storage_var/Sheet_contract_uri/impl.cairo" + }, + "parent_location": [ + { + "end_col": 41, + "end_line": 7, + "input_file": { + "filename": "autogen/starknet/storage_var/Sheet_contract_uri/decl.cairo" + }, + "parent_location": [ + { + "end_col": 41, + "end_line": 17, + "input_file": { + "filename": "autogen/starknet/storage_var/Sheet_contract_uri/impl.cairo" + }, + "start_col": 30, + "start_line": 17 + }, + "While trying to retrieve the implicit argument 'pedersen_ptr' in:" + ], + "start_col": 15, + "start_line": 7 + }, + "While expanding the reference 'pedersen_ptr' in:" + ], + "start_col": 35, + "start_line": 14 + } + }, + "2947": { + "accessible_scopes": [ + "sheet.library", + "sheet.library.Sheet_contract_uri", + "sheet.library.Sheet_contract_uri.read" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 78, + "end_line": 14, + "input_file": { + "filename": "autogen/starknet/storage_var/Sheet_contract_uri/impl.cairo" + }, + "parent_location": [ + { + "end_col": 58, + "end_line": 7, + "input_file": { + "filename": "autogen/starknet/storage_var/Sheet_contract_uri/decl.cairo" + }, + "parent_location": [ + { + "end_col": 41, + "end_line": 17, + "input_file": { + "filename": "autogen/starknet/storage_var/Sheet_contract_uri/impl.cairo" + }, + "start_col": 30, + "start_line": 17 + }, + "While trying to retrieve the implicit argument 'range_check_ptr' in:" + ], + "start_col": 43, + "start_line": 7 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 63, + "start_line": 14 + } + }, + "2948": { + "accessible_scopes": [ + "sheet.library", + "sheet.library.Sheet_contract_uri", + "sheet.library.Sheet_contract_uri.read" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 91, + "end_line": 14, + "input_file": { + "filename": "autogen/starknet/storage_var/Sheet_contract_uri/impl.cairo" + }, + "parent_location": [ + { + "end_col": 40, + "end_line": 17, + "input_file": { + "filename": "autogen/starknet/storage_var/Sheet_contract_uri/impl.cairo" + }, + "start_col": 35, + "start_line": 17 + }, + "While expanding the reference 'index' in:" + ], + "start_col": 80, + "start_line": 14 + } + }, + "2949": { + "accessible_scopes": [ + "sheet.library", + "sheet.library.Sheet_contract_uri", + "sheet.library.Sheet_contract_uri.read" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 41, + "end_line": 17, + "input_file": { + "filename": "autogen/starknet/storage_var/Sheet_contract_uri/impl.cairo" + }, + "start_col": 30, + "start_line": 17 + } + }, + "2951": { + "accessible_scopes": [ + "sheet.library", + "sheet.library.Sheet_contract_uri", + "sheet.library.Sheet_contract_uri.read" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 33, + "end_line": 14, + "input_file": { + "filename": "autogen/starknet/storage_var/Sheet_contract_uri/impl.cairo" + }, + "parent_location": [ + { + "end_col": 37, + "end_line": 352, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/starknet/common/syscalls.cairo" + }, + "parent_location": [ + { + "end_col": 75, + "end_line": 18, + "input_file": { + "filename": "autogen/starknet/storage_var/Sheet_contract_uri/impl.cairo" + }, + "start_col": 37, + "start_line": 18 + }, + "While trying to retrieve the implicit argument 'syscall_ptr' in:" + ], + "start_col": 19, + "start_line": 352 + }, + "While expanding the reference 'syscall_ptr' in:" + ], + "start_col": 15, + "start_line": 14 + } + }, + "2952": { + "accessible_scopes": [ + "sheet.library", + "sheet.library.Sheet_contract_uri", + "sheet.library.Sheet_contract_uri.read" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 26, + "end_line": 17, + "input_file": { + "filename": "autogen/starknet/storage_var/Sheet_contract_uri/impl.cairo" + }, + "parent_location": [ + { + "end_col": 70, + "end_line": 18, + "input_file": { + "filename": "autogen/starknet/storage_var/Sheet_contract_uri/impl.cairo" + }, + "start_col": 58, + "start_line": 18 + }, + "While expanding the reference 'storage_addr' in:" + ], + "start_col": 14, + "start_line": 17 + } + }, + "2953": { + "accessible_scopes": [ + "sheet.library", + "sheet.library.Sheet_contract_uri", + "sheet.library.Sheet_contract_uri.read" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 75, + "end_line": 18, + "input_file": { + "filename": "autogen/starknet/storage_var/Sheet_contract_uri/impl.cairo" + }, + "start_col": 37, + "start_line": 18 + } + }, + "2955": { + "accessible_scopes": [ + "sheet.library", + "sheet.library.Sheet_contract_uri", + "sheet.library.Sheet_contract_uri.read" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 37, + "end_line": 352, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/starknet/common/syscalls.cairo" + }, + "parent_location": [ + { + "end_col": 75, + "end_line": 18, + "input_file": { + "filename": "autogen/starknet/storage_var/Sheet_contract_uri/impl.cairo" + }, + "parent_location": [ + { + "end_col": 42, + "end_line": 20, + "input_file": { + "filename": "autogen/starknet/storage_var/Sheet_contract_uri/impl.cairo" + }, + "start_col": 31, + "start_line": 20 + }, + "While expanding the reference 'syscall_ptr' in:" + ], + "start_col": 37, + "start_line": 18 + }, + "While trying to update the implicit return value 'syscall_ptr' in:" + ], + "start_col": 19, + "start_line": 352 + } + }, + "2956": { + "accessible_scopes": [ + "sheet.library", + "sheet.library.Sheet_contract_uri", + "sheet.library.Sheet_contract_uri.read" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 41, + "end_line": 7, + "input_file": { + "filename": "autogen/starknet/storage_var/Sheet_contract_uri/decl.cairo" + }, + "parent_location": [ + { + "end_col": 41, + "end_line": 17, + "input_file": { + "filename": "autogen/starknet/storage_var/Sheet_contract_uri/impl.cairo" + }, + "parent_location": [ + { + "end_col": 44, + "end_line": 21, + "input_file": { + "filename": "autogen/starknet/storage_var/Sheet_contract_uri/impl.cairo" + }, + "start_col": 32, + "start_line": 21 + }, + "While expanding the reference 'pedersen_ptr' in:" + ], + "start_col": 30, + "start_line": 17 + }, + "While trying to update the implicit return value 'pedersen_ptr' in:" + ], + "start_col": 15, + "start_line": 7 + } + }, + "2957": { + "accessible_scopes": [ + "sheet.library", + "sheet.library.Sheet_contract_uri", + "sheet.library.Sheet_contract_uri.read" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 58, + "end_line": 7, + "input_file": { + "filename": "autogen/starknet/storage_var/Sheet_contract_uri/decl.cairo" + }, + "parent_location": [ + { + "end_col": 41, + "end_line": 17, + "input_file": { + "filename": "autogen/starknet/storage_var/Sheet_contract_uri/impl.cairo" + }, + "parent_location": [ + { + "end_col": 50, + "end_line": 22, + "input_file": { + "filename": "autogen/starknet/storage_var/Sheet_contract_uri/impl.cairo" + }, + "start_col": 35, + "start_line": 22 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 30, + "start_line": 17 + }, + "While trying to update the implicit return value 'range_check_ptr' in:" + ], + "start_col": 43, + "start_line": 7 + } + }, + "2958": { + "accessible_scopes": [ + "sheet.library", + "sheet.library.Sheet_contract_uri", + "sheet.library.Sheet_contract_uri.read" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 33, + "end_line": 18, + "input_file": { + "filename": "autogen/starknet/storage_var/Sheet_contract_uri/impl.cairo" + }, + "parent_location": [ + { + "end_col": 64, + "end_line": 23, + "input_file": { + "filename": "autogen/starknet/storage_var/Sheet_contract_uri/impl.cairo" + }, + "start_col": 45, + "start_line": 23 + }, + "While expanding the reference '__storage_var_temp0' in:" + ], + "start_col": 14, + "start_line": 18 + } + }, + "2959": { + "accessible_scopes": [ + "sheet.library", + "sheet.library.Sheet_contract_uri", + "sheet.library.Sheet_contract_uri.read" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 55, + "end_line": 24, + "input_file": { + "filename": "autogen/starknet/storage_var/Sheet_contract_uri/impl.cairo" + }, + "start_col": 9, + "start_line": 24 + } + }, + "2960": { + "accessible_scopes": [ + "sheet.library", + "sheet.library.Sheet_contract_uri", + "sheet.library.Sheet_contract_uri.write" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 62, + "end_line": 27, + "input_file": { + "filename": "autogen/starknet/storage_var/Sheet_contract_uri/impl.cairo" + }, + "parent_location": [ + { + "end_col": 41, + "end_line": 7, + "input_file": { + "filename": "autogen/starknet/storage_var/Sheet_contract_uri/decl.cairo" + }, + "parent_location": [ + { + "end_col": 41, + "end_line": 30, + "input_file": { + "filename": "autogen/starknet/storage_var/Sheet_contract_uri/impl.cairo" + }, + "start_col": 30, + "start_line": 30 + }, + "While trying to retrieve the implicit argument 'pedersen_ptr' in:" + ], + "start_col": 15, + "start_line": 7 + }, + "While expanding the reference 'pedersen_ptr' in:" + ], + "start_col": 36, + "start_line": 27 + } + }, + "2961": { + "accessible_scopes": [ + "sheet.library", + "sheet.library.Sheet_contract_uri", + "sheet.library.Sheet_contract_uri.write" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 79, + "end_line": 27, + "input_file": { + "filename": "autogen/starknet/storage_var/Sheet_contract_uri/impl.cairo" + }, + "parent_location": [ + { + "end_col": 58, + "end_line": 7, + "input_file": { + "filename": "autogen/starknet/storage_var/Sheet_contract_uri/decl.cairo" + }, + "parent_location": [ + { + "end_col": 41, + "end_line": 30, + "input_file": { + "filename": "autogen/starknet/storage_var/Sheet_contract_uri/impl.cairo" + }, + "start_col": 30, + "start_line": 30 + }, + "While trying to retrieve the implicit argument 'range_check_ptr' in:" + ], + "start_col": 43, + "start_line": 7 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 64, + "start_line": 27 + } + }, + "2962": { + "accessible_scopes": [ + "sheet.library", + "sheet.library.Sheet_contract_uri", + "sheet.library.Sheet_contract_uri.write" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 20, + "end_line": 28, + "input_file": { + "filename": "autogen/starknet/storage_var/Sheet_contract_uri/impl.cairo" + }, + "parent_location": [ + { + "end_col": 40, + "end_line": 30, + "input_file": { + "filename": "autogen/starknet/storage_var/Sheet_contract_uri/impl.cairo" + }, + "start_col": 35, + "start_line": 30 + }, + "While expanding the reference 'index' in:" + ], + "start_col": 9, + "start_line": 28 + } + }, + "2963": { + "accessible_scopes": [ + "sheet.library", + "sheet.library.Sheet_contract_uri", + "sheet.library.Sheet_contract_uri.write" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 41, + "end_line": 30, + "input_file": { + "filename": "autogen/starknet/storage_var/Sheet_contract_uri/impl.cairo" + }, + "start_col": 30, + "start_line": 30 + } + }, + "2965": { + "accessible_scopes": [ + "sheet.library", + "sheet.library.Sheet_contract_uri", + "sheet.library.Sheet_contract_uri.write" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 34, + "end_line": 27, + "input_file": { + "filename": "autogen/starknet/storage_var/Sheet_contract_uri/impl.cairo" + }, + "parent_location": [ + { + "end_col": 38, + "end_line": 370, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/starknet/common/syscalls.cairo" + }, + "parent_location": [ + { + "end_col": 80, + "end_line": 31, + "input_file": { + "filename": "autogen/starknet/storage_var/Sheet_contract_uri/impl.cairo" + }, + "start_col": 9, + "start_line": 31 + }, + "While trying to retrieve the implicit argument 'syscall_ptr' in:" + ], + "start_col": 20, + "start_line": 370 + }, + "While expanding the reference 'syscall_ptr' in:" + ], + "start_col": 16, + "start_line": 27 + } + }, + "2966": { + "accessible_scopes": [ + "sheet.library", + "sheet.library.Sheet_contract_uri", + "sheet.library.Sheet_contract_uri.write" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 26, + "end_line": 30, + "input_file": { + "filename": "autogen/starknet/storage_var/Sheet_contract_uri/impl.cairo" + }, + "parent_location": [ + { + "end_col": 43, + "end_line": 31, + "input_file": { + "filename": "autogen/starknet/storage_var/Sheet_contract_uri/impl.cairo" + }, + "start_col": 31, + "start_line": 31 + }, + "While expanding the reference 'storage_addr' in:" + ], + "start_col": 14, + "start_line": 30 + } + }, + "2967": { + "accessible_scopes": [ + "sheet.library", + "sheet.library.Sheet_contract_uri", + "sheet.library.Sheet_contract_uri.write" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 79, + "end_line": 31, + "input_file": { + "filename": "autogen/starknet/storage_var/Sheet_contract_uri/impl.cairo" + }, + "start_col": 55, + "start_line": 31 + } + }, + "2968": { + "accessible_scopes": [ + "sheet.library", + "sheet.library.Sheet_contract_uri", + "sheet.library.Sheet_contract_uri.write" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 80, + "end_line": 31, + "input_file": { + "filename": "autogen/starknet/storage_var/Sheet_contract_uri/impl.cairo" + }, + "start_col": 9, + "start_line": 31 + } + }, + "2970": { + "accessible_scopes": [ + "sheet.library", + "sheet.library.Sheet_contract_uri", + "sheet.library.Sheet_contract_uri.write" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 41, + "end_line": 7, + "input_file": { + "filename": "autogen/starknet/storage_var/Sheet_contract_uri/decl.cairo" + }, + "parent_location": [ + { + "end_col": 41, + "end_line": 30, + "input_file": { + "filename": "autogen/starknet/storage_var/Sheet_contract_uri/impl.cairo" + }, + "parent_location": [ + { + "end_col": 62, + "end_line": 21, + "input_file": { + "filename": "autogen/starknet/storage_var/Sheet_contract_uri/decl.cairo" + }, + "parent_location": [ + { + "end_col": 19, + "end_line": 32, + "input_file": { + "filename": "autogen/starknet/storage_var/Sheet_contract_uri/impl.cairo" + }, + "start_col": 9, + "start_line": 32 + }, + "While trying to retrieve the implicit argument 'pedersen_ptr' in:" + ], + "start_col": 36, + "start_line": 21 + }, + "While expanding the reference 'pedersen_ptr' in:" + ], + "start_col": 30, + "start_line": 30 + }, + "While trying to update the implicit return value 'pedersen_ptr' in:" + ], + "start_col": 15, + "start_line": 7 + } + }, + "2971": { + "accessible_scopes": [ + "sheet.library", + "sheet.library.Sheet_contract_uri", + "sheet.library.Sheet_contract_uri.write" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 58, + "end_line": 7, + "input_file": { + "filename": "autogen/starknet/storage_var/Sheet_contract_uri/decl.cairo" + }, + "parent_location": [ + { + "end_col": 41, + "end_line": 30, + "input_file": { + "filename": "autogen/starknet/storage_var/Sheet_contract_uri/impl.cairo" + }, + "parent_location": [ + { + "end_col": 79, + "end_line": 21, + "input_file": { + "filename": "autogen/starknet/storage_var/Sheet_contract_uri/decl.cairo" + }, + "parent_location": [ + { + "end_col": 19, + "end_line": 32, + "input_file": { + "filename": "autogen/starknet/storage_var/Sheet_contract_uri/impl.cairo" + }, + "start_col": 9, + "start_line": 32 + }, + "While trying to retrieve the implicit argument 'range_check_ptr' in:" + ], + "start_col": 64, + "start_line": 21 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 30, + "start_line": 30 + }, + "While trying to update the implicit return value 'range_check_ptr' in:" + ], + "start_col": 43, + "start_line": 7 + } + }, + "2972": { + "accessible_scopes": [ + "sheet.library", + "sheet.library.Sheet_contract_uri", + "sheet.library.Sheet_contract_uri.write" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 19, + "end_line": 32, + "input_file": { + "filename": "autogen/starknet/storage_var/Sheet_contract_uri/impl.cairo" + }, + "start_col": 9, + "start_line": 32 + } + }, + "2973": { + "accessible_scopes": [ + "sheet.library", + "sheet.library.Sheet_is_mint_open", + "sheet.library.Sheet_is_mint_open.addr" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 41, + "end_line": 7, + "input_file": { + "filename": "autogen/starknet/storage_var/Sheet_is_mint_open/impl.cairo" + }, + "parent_location": [ + { + "end_col": 41, + "end_line": 7, + "input_file": { + "filename": "autogen/starknet/storage_var/Sheet_is_mint_open/decl.cairo" + }, + "parent_location": [ + { + "end_col": 26, + "end_line": 9, + "input_file": { + "filename": "autogen/starknet/storage_var/Sheet_is_mint_open/impl.cairo" + }, + "start_col": 9, + "start_line": 9 + }, + "While trying to retrieve the implicit argument 'pedersen_ptr' in:" + ], + "start_col": 15, + "start_line": 7 + }, + "While expanding the reference 'pedersen_ptr' in:" + ], + "start_col": 15, + "start_line": 7 + } + }, + "2974": { + "accessible_scopes": [ + "sheet.library", + "sheet.library.Sheet_is_mint_open", + "sheet.library.Sheet_is_mint_open.addr" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 58, + "end_line": 7, + "input_file": { + "filename": "autogen/starknet/storage_var/Sheet_is_mint_open/impl.cairo" + }, + "parent_location": [ + { + "end_col": 58, + "end_line": 7, + "input_file": { + "filename": "autogen/starknet/storage_var/Sheet_is_mint_open/decl.cairo" + }, + "parent_location": [ + { + "end_col": 26, + "end_line": 9, + "input_file": { + "filename": "autogen/starknet/storage_var/Sheet_is_mint_open/impl.cairo" + }, + "start_col": 9, + "start_line": 9 + }, + "While trying to retrieve the implicit argument 'range_check_ptr' in:" + ], + "start_col": 43, + "start_line": 7 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 43, + "start_line": 7 + } + }, + "2975": { + "accessible_scopes": [ + "sheet.library", + "sheet.library.Sheet_is_mint_open", + "sheet.library.Sheet_is_mint_open.addr" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 95, + "end_line": 8, + "input_file": { + "filename": "autogen/starknet/storage_var/Sheet_is_mint_open/impl.cairo" + }, + "parent_location": [ + { + "end_col": 24, + "end_line": 9, + "input_file": { + "filename": "autogen/starknet/storage_var/Sheet_is_mint_open/impl.cairo" + }, + "start_col": 21, + "start_line": 9 + }, + "While expanding the reference 'res' in:" + ], + "start_col": 19, + "start_line": 8 + } + }, + "2977": { + "accessible_scopes": [ + "sheet.library", + "sheet.library.Sheet_is_mint_open", + "sheet.library.Sheet_is_mint_open.addr" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 26, + "end_line": 9, + "input_file": { + "filename": "autogen/starknet/storage_var/Sheet_is_mint_open/impl.cairo" + }, + "start_col": 9, + "start_line": 9 + } + }, + "2978": { + "accessible_scopes": [ + "sheet.library", + "sheet.library.Sheet_is_mint_open", + "sheet.library.Sheet_is_mint_open.read" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 61, + "end_line": 12, + "input_file": { + "filename": "autogen/starknet/storage_var/Sheet_is_mint_open/impl.cairo" + }, + "parent_location": [ + { + "end_col": 41, + "end_line": 7, + "input_file": { + "filename": "autogen/starknet/storage_var/Sheet_is_mint_open/decl.cairo" + }, + "parent_location": [ + { + "end_col": 36, + "end_line": 13, + "input_file": { + "filename": "autogen/starknet/storage_var/Sheet_is_mint_open/impl.cairo" + }, + "start_col": 30, + "start_line": 13 + }, + "While trying to retrieve the implicit argument 'pedersen_ptr' in:" + ], + "start_col": 15, + "start_line": 7 + }, + "While expanding the reference 'pedersen_ptr' in:" + ], + "start_col": 35, + "start_line": 12 + } + }, + "2979": { + "accessible_scopes": [ + "sheet.library", + "sheet.library.Sheet_is_mint_open", + "sheet.library.Sheet_is_mint_open.read" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 78, + "end_line": 12, + "input_file": { + "filename": "autogen/starknet/storage_var/Sheet_is_mint_open/impl.cairo" + }, + "parent_location": [ + { + "end_col": 58, + "end_line": 7, + "input_file": { + "filename": "autogen/starknet/storage_var/Sheet_is_mint_open/decl.cairo" + }, + "parent_location": [ + { + "end_col": 36, + "end_line": 13, + "input_file": { + "filename": "autogen/starknet/storage_var/Sheet_is_mint_open/impl.cairo" + }, + "start_col": 30, + "start_line": 13 + }, + "While trying to retrieve the implicit argument 'range_check_ptr' in:" + ], + "start_col": 43, + "start_line": 7 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 63, + "start_line": 12 + } + }, + "2980": { + "accessible_scopes": [ + "sheet.library", + "sheet.library.Sheet_is_mint_open", + "sheet.library.Sheet_is_mint_open.read" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 36, + "end_line": 13, + "input_file": { + "filename": "autogen/starknet/storage_var/Sheet_is_mint_open/impl.cairo" + }, + "start_col": 30, + "start_line": 13 + } + }, + "2982": { + "accessible_scopes": [ + "sheet.library", + "sheet.library.Sheet_is_mint_open", + "sheet.library.Sheet_is_mint_open.read" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 33, + "end_line": 12, + "input_file": { + "filename": "autogen/starknet/storage_var/Sheet_is_mint_open/impl.cairo" + }, + "parent_location": [ + { + "end_col": 37, + "end_line": 352, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/starknet/common/syscalls.cairo" + }, + "parent_location": [ + { + "end_col": 75, + "end_line": 14, + "input_file": { + "filename": "autogen/starknet/storage_var/Sheet_is_mint_open/impl.cairo" + }, + "start_col": 37, + "start_line": 14 + }, + "While trying to retrieve the implicit argument 'syscall_ptr' in:" + ], + "start_col": 19, + "start_line": 352 + }, + "While expanding the reference 'syscall_ptr' in:" + ], + "start_col": 15, + "start_line": 12 + } + }, + "2983": { + "accessible_scopes": [ + "sheet.library", + "sheet.library.Sheet_is_mint_open", + "sheet.library.Sheet_is_mint_open.read" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 26, + "end_line": 13, + "input_file": { + "filename": "autogen/starknet/storage_var/Sheet_is_mint_open/impl.cairo" + }, + "parent_location": [ + { + "end_col": 70, + "end_line": 14, + "input_file": { + "filename": "autogen/starknet/storage_var/Sheet_is_mint_open/impl.cairo" + }, + "start_col": 58, + "start_line": 14 + }, + "While expanding the reference 'storage_addr' in:" + ], + "start_col": 14, + "start_line": 13 + } + }, + "2984": { + "accessible_scopes": [ + "sheet.library", + "sheet.library.Sheet_is_mint_open", + "sheet.library.Sheet_is_mint_open.read" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 75, + "end_line": 14, + "input_file": { + "filename": "autogen/starknet/storage_var/Sheet_is_mint_open/impl.cairo" + }, + "start_col": 37, + "start_line": 14 + } + }, + "2986": { + "accessible_scopes": [ + "sheet.library", + "sheet.library.Sheet_is_mint_open", + "sheet.library.Sheet_is_mint_open.read" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 37, + "end_line": 352, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/starknet/common/syscalls.cairo" + }, + "parent_location": [ + { + "end_col": 75, + "end_line": 14, + "input_file": { + "filename": "autogen/starknet/storage_var/Sheet_is_mint_open/impl.cairo" + }, + "parent_location": [ + { + "end_col": 42, + "end_line": 16, + "input_file": { + "filename": "autogen/starknet/storage_var/Sheet_is_mint_open/impl.cairo" + }, + "start_col": 31, + "start_line": 16 + }, + "While expanding the reference 'syscall_ptr' in:" + ], + "start_col": 37, + "start_line": 14 + }, + "While trying to update the implicit return value 'syscall_ptr' in:" + ], + "start_col": 19, + "start_line": 352 + } + }, + "2987": { + "accessible_scopes": [ + "sheet.library", + "sheet.library.Sheet_is_mint_open", + "sheet.library.Sheet_is_mint_open.read" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 41, + "end_line": 7, + "input_file": { + "filename": "autogen/starknet/storage_var/Sheet_is_mint_open/decl.cairo" + }, + "parent_location": [ + { + "end_col": 36, + "end_line": 13, + "input_file": { + "filename": "autogen/starknet/storage_var/Sheet_is_mint_open/impl.cairo" + }, + "parent_location": [ + { + "end_col": 44, + "end_line": 17, + "input_file": { + "filename": "autogen/starknet/storage_var/Sheet_is_mint_open/impl.cairo" + }, + "start_col": 32, + "start_line": 17 + }, + "While expanding the reference 'pedersen_ptr' in:" + ], + "start_col": 30, + "start_line": 13 + }, + "While trying to update the implicit return value 'pedersen_ptr' in:" + ], + "start_col": 15, + "start_line": 7 + } + }, + "2988": { + "accessible_scopes": [ + "sheet.library", + "sheet.library.Sheet_is_mint_open", + "sheet.library.Sheet_is_mint_open.read" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 58, + "end_line": 7, + "input_file": { + "filename": "autogen/starknet/storage_var/Sheet_is_mint_open/decl.cairo" + }, + "parent_location": [ + { + "end_col": 36, + "end_line": 13, + "input_file": { + "filename": "autogen/starknet/storage_var/Sheet_is_mint_open/impl.cairo" + }, + "parent_location": [ + { + "end_col": 50, + "end_line": 18, + "input_file": { + "filename": "autogen/starknet/storage_var/Sheet_is_mint_open/impl.cairo" + }, + "start_col": 35, + "start_line": 18 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 30, + "start_line": 13 + }, + "While trying to update the implicit return value 'range_check_ptr' in:" + ], + "start_col": 43, + "start_line": 7 + } + }, + "2989": { + "accessible_scopes": [ + "sheet.library", + "sheet.library.Sheet_is_mint_open", + "sheet.library.Sheet_is_mint_open.read" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 33, + "end_line": 14, + "input_file": { + "filename": "autogen/starknet/storage_var/Sheet_is_mint_open/impl.cairo" + }, + "parent_location": [ + { + "end_col": 64, + "end_line": 19, + "input_file": { + "filename": "autogen/starknet/storage_var/Sheet_is_mint_open/impl.cairo" + }, + "start_col": 45, + "start_line": 19 + }, + "While expanding the reference '__storage_var_temp0' in:" + ], + "start_col": 14, + "start_line": 14 + } + }, + "2990": { + "accessible_scopes": [ + "sheet.library", + "sheet.library.Sheet_is_mint_open", + "sheet.library.Sheet_is_mint_open.read" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 55, + "end_line": 20, + "input_file": { + "filename": "autogen/starknet/storage_var/Sheet_is_mint_open/impl.cairo" + }, + "start_col": 9, + "start_line": 20 + } + }, + "2991": { + "accessible_scopes": [ + "sheet.library", + "sheet.library.Sheet_is_mint_open", + "sheet.library.Sheet_is_mint_open.write" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 62, + "end_line": 23, + "input_file": { + "filename": "autogen/starknet/storage_var/Sheet_is_mint_open/impl.cairo" + }, + "parent_location": [ + { + "end_col": 41, + "end_line": 7, + "input_file": { + "filename": "autogen/starknet/storage_var/Sheet_is_mint_open/decl.cairo" + }, + "parent_location": [ + { + "end_col": 36, + "end_line": 24, + "input_file": { + "filename": "autogen/starknet/storage_var/Sheet_is_mint_open/impl.cairo" + }, + "start_col": 30, + "start_line": 24 + }, + "While trying to retrieve the implicit argument 'pedersen_ptr' in:" + ], + "start_col": 15, + "start_line": 7 + }, + "While expanding the reference 'pedersen_ptr' in:" + ], + "start_col": 36, + "start_line": 23 + } + }, + "2992": { + "accessible_scopes": [ + "sheet.library", + "sheet.library.Sheet_is_mint_open", + "sheet.library.Sheet_is_mint_open.write" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 79, + "end_line": 23, + "input_file": { + "filename": "autogen/starknet/storage_var/Sheet_is_mint_open/impl.cairo" + }, + "parent_location": [ + { + "end_col": 58, + "end_line": 7, + "input_file": { + "filename": "autogen/starknet/storage_var/Sheet_is_mint_open/decl.cairo" + }, + "parent_location": [ + { + "end_col": 36, + "end_line": 24, + "input_file": { + "filename": "autogen/starknet/storage_var/Sheet_is_mint_open/impl.cairo" + }, + "start_col": 30, + "start_line": 24 + }, + "While trying to retrieve the implicit argument 'range_check_ptr' in:" + ], + "start_col": 43, + "start_line": 7 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 64, + "start_line": 23 + } + }, + "2993": { + "accessible_scopes": [ + "sheet.library", + "sheet.library.Sheet_is_mint_open", + "sheet.library.Sheet_is_mint_open.write" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 36, + "end_line": 24, + "input_file": { + "filename": "autogen/starknet/storage_var/Sheet_is_mint_open/impl.cairo" + }, + "start_col": 30, + "start_line": 24 + } + }, + "2995": { + "accessible_scopes": [ + "sheet.library", + "sheet.library.Sheet_is_mint_open", + "sheet.library.Sheet_is_mint_open.write" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 34, + "end_line": 23, + "input_file": { + "filename": "autogen/starknet/storage_var/Sheet_is_mint_open/impl.cairo" + }, + "parent_location": [ + { + "end_col": 38, + "end_line": 370, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/starknet/common/syscalls.cairo" + }, + "parent_location": [ + { + "end_col": 80, + "end_line": 25, + "input_file": { + "filename": "autogen/starknet/storage_var/Sheet_is_mint_open/impl.cairo" + }, + "start_col": 9, + "start_line": 25 + }, + "While trying to retrieve the implicit argument 'syscall_ptr' in:" + ], + "start_col": 20, + "start_line": 370 + }, + "While expanding the reference 'syscall_ptr' in:" + ], + "start_col": 16, + "start_line": 23 + } + }, + "2996": { + "accessible_scopes": [ + "sheet.library", + "sheet.library.Sheet_is_mint_open", + "sheet.library.Sheet_is_mint_open.write" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 26, + "end_line": 24, + "input_file": { + "filename": "autogen/starknet/storage_var/Sheet_is_mint_open/impl.cairo" + }, + "parent_location": [ + { + "end_col": 43, + "end_line": 25, + "input_file": { + "filename": "autogen/starknet/storage_var/Sheet_is_mint_open/impl.cairo" + }, + "start_col": 31, + "start_line": 25 + }, + "While expanding the reference 'storage_addr' in:" + ], + "start_col": 14, + "start_line": 24 + } + }, + "2997": { + "accessible_scopes": [ + "sheet.library", + "sheet.library.Sheet_is_mint_open", + "sheet.library.Sheet_is_mint_open.write" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 79, + "end_line": 25, + "input_file": { + "filename": "autogen/starknet/storage_var/Sheet_is_mint_open/impl.cairo" + }, + "start_col": 55, + "start_line": 25 + } + }, + "2998": { + "accessible_scopes": [ + "sheet.library", + "sheet.library.Sheet_is_mint_open", + "sheet.library.Sheet_is_mint_open.write" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 80, + "end_line": 25, + "input_file": { + "filename": "autogen/starknet/storage_var/Sheet_is_mint_open/impl.cairo" + }, + "start_col": 9, + "start_line": 25 + } + }, + "3000": { + "accessible_scopes": [ + "sheet.library", + "sheet.library.Sheet_is_mint_open", + "sheet.library.Sheet_is_mint_open.write" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 41, + "end_line": 7, + "input_file": { + "filename": "autogen/starknet/storage_var/Sheet_is_mint_open/decl.cairo" + }, + "parent_location": [ + { + "end_col": 36, + "end_line": 24, + "input_file": { + "filename": "autogen/starknet/storage_var/Sheet_is_mint_open/impl.cairo" + }, + "parent_location": [ + { + "end_col": 62, + "end_line": 19, + "input_file": { + "filename": "autogen/starknet/storage_var/Sheet_is_mint_open/decl.cairo" + }, + "parent_location": [ + { + "end_col": 19, + "end_line": 26, + "input_file": { + "filename": "autogen/starknet/storage_var/Sheet_is_mint_open/impl.cairo" + }, + "start_col": 9, + "start_line": 26 + }, + "While trying to retrieve the implicit argument 'pedersen_ptr' in:" + ], + "start_col": 36, + "start_line": 19 + }, + "While expanding the reference 'pedersen_ptr' in:" + ], + "start_col": 30, + "start_line": 24 + }, + "While trying to update the implicit return value 'pedersen_ptr' in:" + ], + "start_col": 15, + "start_line": 7 + } + }, + "3001": { + "accessible_scopes": [ + "sheet.library", + "sheet.library.Sheet_is_mint_open", + "sheet.library.Sheet_is_mint_open.write" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 58, + "end_line": 7, + "input_file": { + "filename": "autogen/starknet/storage_var/Sheet_is_mint_open/decl.cairo" + }, + "parent_location": [ + { + "end_col": 36, + "end_line": 24, + "input_file": { + "filename": "autogen/starknet/storage_var/Sheet_is_mint_open/impl.cairo" + }, + "parent_location": [ + { + "end_col": 79, + "end_line": 19, + "input_file": { + "filename": "autogen/starknet/storage_var/Sheet_is_mint_open/decl.cairo" + }, + "parent_location": [ + { + "end_col": 19, + "end_line": 26, + "input_file": { + "filename": "autogen/starknet/storage_var/Sheet_is_mint_open/impl.cairo" + }, + "start_col": 9, + "start_line": 26 + }, + "While trying to retrieve the implicit argument 'range_check_ptr' in:" + ], + "start_col": 64, + "start_line": 19 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 30, + "start_line": 24 + }, + "While trying to update the implicit return value 'range_check_ptr' in:" + ], + "start_col": 43, + "start_line": 7 + } + }, + "3002": { + "accessible_scopes": [ + "sheet.library", + "sheet.library.Sheet_is_mint_open", + "sheet.library.Sheet_is_mint_open.write" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 19, + "end_line": 26, + "input_file": { + "filename": "autogen/starknet/storage_var/Sheet_is_mint_open/impl.cairo" + }, + "start_col": 9, + "start_line": 26 + } + }, + "3003": { + "accessible_scopes": [ + "sheet.library", + "sheet.library.Sheet_cell_price", + "sheet.library.Sheet_cell_price.addr" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 41, + "end_line": 7, + "input_file": { + "filename": "autogen/starknet/storage_var/Sheet_cell_price/impl.cairo" + }, + "parent_location": [ + { + "end_col": 41, + "end_line": 7, + "input_file": { + "filename": "autogen/starknet/storage_var/Sheet_cell_price/decl.cairo" + }, + "parent_location": [ + { + "end_col": 26, + "end_line": 9, + "input_file": { + "filename": "autogen/starknet/storage_var/Sheet_cell_price/impl.cairo" + }, + "start_col": 9, + "start_line": 9 + }, + "While trying to retrieve the implicit argument 'pedersen_ptr' in:" + ], + "start_col": 15, + "start_line": 7 + }, + "While expanding the reference 'pedersen_ptr' in:" + ], + "start_col": 15, + "start_line": 7 + } + }, + "3004": { + "accessible_scopes": [ + "sheet.library", + "sheet.library.Sheet_cell_price", + "sheet.library.Sheet_cell_price.addr" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 58, + "end_line": 7, + "input_file": { + "filename": "autogen/starknet/storage_var/Sheet_cell_price/impl.cairo" + }, + "parent_location": [ + { + "end_col": 58, + "end_line": 7, + "input_file": { + "filename": "autogen/starknet/storage_var/Sheet_cell_price/decl.cairo" + }, + "parent_location": [ + { + "end_col": 26, + "end_line": 9, + "input_file": { + "filename": "autogen/starknet/storage_var/Sheet_cell_price/impl.cairo" + }, + "start_col": 9, + "start_line": 9 + }, + "While trying to retrieve the implicit argument 'range_check_ptr' in:" + ], + "start_col": 43, + "start_line": 7 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 43, + "start_line": 7 + } + }, + "3005": { + "accessible_scopes": [ + "sheet.library", + "sheet.library.Sheet_cell_price", + "sheet.library.Sheet_cell_price.addr" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 94, + "end_line": 8, + "input_file": { + "filename": "autogen/starknet/storage_var/Sheet_cell_price/impl.cairo" + }, + "parent_location": [ + { + "end_col": 24, + "end_line": 9, + "input_file": { + "filename": "autogen/starknet/storage_var/Sheet_cell_price/impl.cairo" + }, + "start_col": 21, + "start_line": 9 + }, + "While expanding the reference 'res' in:" + ], + "start_col": 19, + "start_line": 8 + } + }, + "3007": { + "accessible_scopes": [ + "sheet.library", + "sheet.library.Sheet_cell_price", + "sheet.library.Sheet_cell_price.addr" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 26, + "end_line": 9, + "input_file": { + "filename": "autogen/starknet/storage_var/Sheet_cell_price/impl.cairo" + }, + "start_col": 9, + "start_line": 9 + } + }, + "3008": { + "accessible_scopes": [ + "sheet.library", + "sheet.library.Sheet_cell_price", + "sheet.library.Sheet_cell_price.read" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 61, + "end_line": 12, + "input_file": { + "filename": "autogen/starknet/storage_var/Sheet_cell_price/impl.cairo" + }, + "parent_location": [ + { + "end_col": 41, + "end_line": 7, + "input_file": { + "filename": "autogen/starknet/storage_var/Sheet_cell_price/decl.cairo" + }, + "parent_location": [ + { + "end_col": 36, + "end_line": 13, + "input_file": { + "filename": "autogen/starknet/storage_var/Sheet_cell_price/impl.cairo" + }, + "start_col": 30, + "start_line": 13 + }, + "While trying to retrieve the implicit argument 'pedersen_ptr' in:" + ], + "start_col": 15, + "start_line": 7 + }, + "While expanding the reference 'pedersen_ptr' in:" + ], + "start_col": 35, + "start_line": 12 + } + }, + "3009": { + "accessible_scopes": [ + "sheet.library", + "sheet.library.Sheet_cell_price", + "sheet.library.Sheet_cell_price.read" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 78, + "end_line": 12, + "input_file": { + "filename": "autogen/starknet/storage_var/Sheet_cell_price/impl.cairo" + }, + "parent_location": [ + { + "end_col": 58, + "end_line": 7, + "input_file": { + "filename": "autogen/starknet/storage_var/Sheet_cell_price/decl.cairo" + }, + "parent_location": [ + { + "end_col": 36, + "end_line": 13, + "input_file": { + "filename": "autogen/starknet/storage_var/Sheet_cell_price/impl.cairo" + }, + "start_col": 30, + "start_line": 13 + }, + "While trying to retrieve the implicit argument 'range_check_ptr' in:" + ], + "start_col": 43, + "start_line": 7 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 63, + "start_line": 12 + } + }, + "3010": { + "accessible_scopes": [ + "sheet.library", + "sheet.library.Sheet_cell_price", + "sheet.library.Sheet_cell_price.read" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 36, + "end_line": 13, + "input_file": { + "filename": "autogen/starknet/storage_var/Sheet_cell_price/impl.cairo" + }, + "start_col": 30, + "start_line": 13 + } + }, + "3012": { + "accessible_scopes": [ + "sheet.library", + "sheet.library.Sheet_cell_price", + "sheet.library.Sheet_cell_price.read" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 33, + "end_line": 12, + "input_file": { + "filename": "autogen/starknet/storage_var/Sheet_cell_price/impl.cairo" + }, + "parent_location": [ + { + "end_col": 37, + "end_line": 352, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/starknet/common/syscalls.cairo" + }, + "parent_location": [ + { + "end_col": 75, + "end_line": 14, + "input_file": { + "filename": "autogen/starknet/storage_var/Sheet_cell_price/impl.cairo" + }, + "start_col": 37, + "start_line": 14 + }, + "While trying to retrieve the implicit argument 'syscall_ptr' in:" + ], + "start_col": 19, + "start_line": 352 + }, + "While expanding the reference 'syscall_ptr' in:" + ], + "start_col": 15, + "start_line": 12 + } + }, + "3013": { + "accessible_scopes": [ + "sheet.library", + "sheet.library.Sheet_cell_price", + "sheet.library.Sheet_cell_price.read" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 26, + "end_line": 13, + "input_file": { + "filename": "autogen/starknet/storage_var/Sheet_cell_price/impl.cairo" + }, + "parent_location": [ + { + "end_col": 70, + "end_line": 14, + "input_file": { + "filename": "autogen/starknet/storage_var/Sheet_cell_price/impl.cairo" + }, + "start_col": 58, + "start_line": 14 + }, + "While expanding the reference 'storage_addr' in:" + ], + "start_col": 14, + "start_line": 13 + } + }, + "3014": { + "accessible_scopes": [ + "sheet.library", + "sheet.library.Sheet_cell_price", + "sheet.library.Sheet_cell_price.read" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 75, + "end_line": 14, + "input_file": { + "filename": "autogen/starknet/storage_var/Sheet_cell_price/impl.cairo" + }, + "start_col": 37, + "start_line": 14 + } + }, + "3016": { + "accessible_scopes": [ + "sheet.library", + "sheet.library.Sheet_cell_price", + "sheet.library.Sheet_cell_price.read" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 37, + "end_line": 352, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/starknet/common/syscalls.cairo" + }, + "parent_location": [ + { + "end_col": 75, + "end_line": 14, + "input_file": { + "filename": "autogen/starknet/storage_var/Sheet_cell_price/impl.cairo" + }, + "parent_location": [ + { + "end_col": 42, + "end_line": 16, + "input_file": { + "filename": "autogen/starknet/storage_var/Sheet_cell_price/impl.cairo" + }, + "start_col": 31, + "start_line": 16 + }, + "While expanding the reference 'syscall_ptr' in:" + ], + "start_col": 37, + "start_line": 14 + }, + "While trying to update the implicit return value 'syscall_ptr' in:" + ], + "start_col": 19, + "start_line": 352 + } + }, + "3017": { + "accessible_scopes": [ + "sheet.library", + "sheet.library.Sheet_cell_price", + "sheet.library.Sheet_cell_price.read" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 41, + "end_line": 7, + "input_file": { + "filename": "autogen/starknet/storage_var/Sheet_cell_price/decl.cairo" + }, + "parent_location": [ + { + "end_col": 36, + "end_line": 13, + "input_file": { + "filename": "autogen/starknet/storage_var/Sheet_cell_price/impl.cairo" + }, + "parent_location": [ + { + "end_col": 44, + "end_line": 17, + "input_file": { + "filename": "autogen/starknet/storage_var/Sheet_cell_price/impl.cairo" + }, + "start_col": 32, + "start_line": 17 + }, + "While expanding the reference 'pedersen_ptr' in:" + ], + "start_col": 30, + "start_line": 13 + }, + "While trying to update the implicit return value 'pedersen_ptr' in:" + ], + "start_col": 15, + "start_line": 7 + } + }, + "3018": { + "accessible_scopes": [ + "sheet.library", + "sheet.library.Sheet_cell_price", + "sheet.library.Sheet_cell_price.read" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 58, + "end_line": 7, + "input_file": { + "filename": "autogen/starknet/storage_var/Sheet_cell_price/decl.cairo" + }, + "parent_location": [ + { + "end_col": 36, + "end_line": 13, + "input_file": { + "filename": "autogen/starknet/storage_var/Sheet_cell_price/impl.cairo" + }, + "parent_location": [ + { + "end_col": 50, + "end_line": 18, + "input_file": { + "filename": "autogen/starknet/storage_var/Sheet_cell_price/impl.cairo" + }, + "start_col": 35, + "start_line": 18 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 30, + "start_line": 13 + }, + "While trying to update the implicit return value 'range_check_ptr' in:" + ], + "start_col": 43, + "start_line": 7 + } + }, + "3019": { + "accessible_scopes": [ + "sheet.library", + "sheet.library.Sheet_cell_price", + "sheet.library.Sheet_cell_price.read" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 33, + "end_line": 14, + "input_file": { + "filename": "autogen/starknet/storage_var/Sheet_cell_price/impl.cairo" + }, + "parent_location": [ + { + "end_col": 64, + "end_line": 19, + "input_file": { + "filename": "autogen/starknet/storage_var/Sheet_cell_price/impl.cairo" + }, + "start_col": 45, + "start_line": 19 + }, + "While expanding the reference '__storage_var_temp0' in:" + ], + "start_col": 14, + "start_line": 14 + } + }, + "3020": { + "accessible_scopes": [ + "sheet.library", + "sheet.library.Sheet_cell_price", + "sheet.library.Sheet_cell_price.read" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 55, + "end_line": 20, + "input_file": { + "filename": "autogen/starknet/storage_var/Sheet_cell_price/impl.cairo" + }, + "start_col": 9, + "start_line": 20 + } + }, + "3021": { + "accessible_scopes": [ + "sheet.library", + "sheet.library.Sheet_cell_price", + "sheet.library.Sheet_cell_price.write" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 62, + "end_line": 23, + "input_file": { + "filename": "autogen/starknet/storage_var/Sheet_cell_price/impl.cairo" + }, + "parent_location": [ + { + "end_col": 41, + "end_line": 7, + "input_file": { + "filename": "autogen/starknet/storage_var/Sheet_cell_price/decl.cairo" + }, + "parent_location": [ + { + "end_col": 36, + "end_line": 24, + "input_file": { + "filename": "autogen/starknet/storage_var/Sheet_cell_price/impl.cairo" + }, + "start_col": 30, + "start_line": 24 + }, + "While trying to retrieve the implicit argument 'pedersen_ptr' in:" + ], + "start_col": 15, + "start_line": 7 + }, + "While expanding the reference 'pedersen_ptr' in:" + ], + "start_col": 36, + "start_line": 23 + } + }, + "3022": { + "accessible_scopes": [ + "sheet.library", + "sheet.library.Sheet_cell_price", + "sheet.library.Sheet_cell_price.write" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 79, + "end_line": 23, + "input_file": { + "filename": "autogen/starknet/storage_var/Sheet_cell_price/impl.cairo" + }, + "parent_location": [ + { + "end_col": 58, + "end_line": 7, + "input_file": { + "filename": "autogen/starknet/storage_var/Sheet_cell_price/decl.cairo" + }, + "parent_location": [ + { + "end_col": 36, + "end_line": 24, + "input_file": { + "filename": "autogen/starknet/storage_var/Sheet_cell_price/impl.cairo" + }, + "start_col": 30, + "start_line": 24 + }, + "While trying to retrieve the implicit argument 'range_check_ptr' in:" + ], + "start_col": 43, + "start_line": 7 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 64, + "start_line": 23 + } + }, + "3023": { + "accessible_scopes": [ + "sheet.library", + "sheet.library.Sheet_cell_price", + "sheet.library.Sheet_cell_price.write" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 36, + "end_line": 24, + "input_file": { + "filename": "autogen/starknet/storage_var/Sheet_cell_price/impl.cairo" + }, + "start_col": 30, + "start_line": 24 + } + }, + "3025": { + "accessible_scopes": [ + "sheet.library", + "sheet.library.Sheet_cell_price", + "sheet.library.Sheet_cell_price.write" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 34, + "end_line": 23, + "input_file": { + "filename": "autogen/starknet/storage_var/Sheet_cell_price/impl.cairo" + }, + "parent_location": [ + { + "end_col": 38, + "end_line": 370, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/starknet/common/syscalls.cairo" + }, + "parent_location": [ + { + "end_col": 80, + "end_line": 25, + "input_file": { + "filename": "autogen/starknet/storage_var/Sheet_cell_price/impl.cairo" + }, + "start_col": 9, + "start_line": 25 + }, + "While trying to retrieve the implicit argument 'syscall_ptr' in:" + ], + "start_col": 20, + "start_line": 370 + }, + "While expanding the reference 'syscall_ptr' in:" + ], + "start_col": 16, + "start_line": 23 + } + }, + "3026": { + "accessible_scopes": [ + "sheet.library", + "sheet.library.Sheet_cell_price", + "sheet.library.Sheet_cell_price.write" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 26, + "end_line": 24, + "input_file": { + "filename": "autogen/starknet/storage_var/Sheet_cell_price/impl.cairo" + }, + "parent_location": [ + { + "end_col": 43, + "end_line": 25, + "input_file": { + "filename": "autogen/starknet/storage_var/Sheet_cell_price/impl.cairo" + }, + "start_col": 31, + "start_line": 25 + }, + "While expanding the reference 'storage_addr' in:" + ], + "start_col": 14, + "start_line": 24 + } + }, + "3027": { + "accessible_scopes": [ + "sheet.library", + "sheet.library.Sheet_cell_price", + "sheet.library.Sheet_cell_price.write" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 79, + "end_line": 25, + "input_file": { + "filename": "autogen/starknet/storage_var/Sheet_cell_price/impl.cairo" + }, + "start_col": 55, + "start_line": 25 + } + }, + "3028": { + "accessible_scopes": [ + "sheet.library", + "sheet.library.Sheet_cell_price", + "sheet.library.Sheet_cell_price.write" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 80, + "end_line": 25, + "input_file": { + "filename": "autogen/starknet/storage_var/Sheet_cell_price/impl.cairo" + }, + "start_col": 9, + "start_line": 25 + } + }, + "3030": { + "accessible_scopes": [ + "sheet.library", + "sheet.library.Sheet_cell_price", + "sheet.library.Sheet_cell_price.write" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 41, + "end_line": 7, + "input_file": { + "filename": "autogen/starknet/storage_var/Sheet_cell_price/decl.cairo" + }, + "parent_location": [ + { + "end_col": 36, + "end_line": 24, + "input_file": { + "filename": "autogen/starknet/storage_var/Sheet_cell_price/impl.cairo" + }, + "parent_location": [ + { + "end_col": 62, + "end_line": 19, + "input_file": { + "filename": "autogen/starknet/storage_var/Sheet_cell_price/decl.cairo" + }, + "parent_location": [ + { + "end_col": 19, + "end_line": 26, + "input_file": { + "filename": "autogen/starknet/storage_var/Sheet_cell_price/impl.cairo" + }, + "start_col": 9, + "start_line": 26 + }, + "While trying to retrieve the implicit argument 'pedersen_ptr' in:" + ], + "start_col": 36, + "start_line": 19 + }, + "While expanding the reference 'pedersen_ptr' in:" + ], + "start_col": 30, + "start_line": 24 + }, + "While trying to update the implicit return value 'pedersen_ptr' in:" + ], + "start_col": 15, + "start_line": 7 + } + }, + "3031": { + "accessible_scopes": [ + "sheet.library", + "sheet.library.Sheet_cell_price", + "sheet.library.Sheet_cell_price.write" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 58, + "end_line": 7, + "input_file": { + "filename": "autogen/starknet/storage_var/Sheet_cell_price/decl.cairo" + }, + "parent_location": [ + { + "end_col": 36, + "end_line": 24, + "input_file": { + "filename": "autogen/starknet/storage_var/Sheet_cell_price/impl.cairo" + }, + "parent_location": [ + { + "end_col": 79, + "end_line": 19, + "input_file": { + "filename": "autogen/starknet/storage_var/Sheet_cell_price/decl.cairo" + }, + "parent_location": [ + { + "end_col": 19, + "end_line": 26, + "input_file": { + "filename": "autogen/starknet/storage_var/Sheet_cell_price/impl.cairo" + }, + "start_col": 9, + "start_line": 26 + }, + "While trying to retrieve the implicit argument 'range_check_ptr' in:" + ], + "start_col": 64, + "start_line": 19 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 30, + "start_line": 24 + }, + "While trying to update the implicit return value 'range_check_ptr' in:" + ], + "start_col": 43, + "start_line": 7 + } + }, + "3032": { + "accessible_scopes": [ + "sheet.library", + "sheet.library.Sheet_cell_price", + "sheet.library.Sheet_cell_price.write" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 19, + "end_line": 26, + "input_file": { + "filename": "autogen/starknet/storage_var/Sheet_cell_price/impl.cairo" + }, + "start_col": 9, + "start_line": 26 + } + }, + "3033": { + "accessible_scopes": [ + "sheet.library", + "sheet.library.Sheet_royalty_rate", + "sheet.library.Sheet_royalty_rate.addr" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 41, + "end_line": 7, + "input_file": { + "filename": "autogen/starknet/storage_var/Sheet_royalty_rate/impl.cairo" + }, + "parent_location": [ + { + "end_col": 41, + "end_line": 7, + "input_file": { + "filename": "autogen/starknet/storage_var/Sheet_royalty_rate/decl.cairo" + }, + "parent_location": [ + { + "end_col": 26, + "end_line": 9, + "input_file": { + "filename": "autogen/starknet/storage_var/Sheet_royalty_rate/impl.cairo" + }, + "start_col": 9, + "start_line": 9 + }, + "While trying to retrieve the implicit argument 'pedersen_ptr' in:" + ], + "start_col": 15, + "start_line": 7 + }, + "While expanding the reference 'pedersen_ptr' in:" + ], + "start_col": 15, + "start_line": 7 + } + }, + "3034": { + "accessible_scopes": [ + "sheet.library", + "sheet.library.Sheet_royalty_rate", + "sheet.library.Sheet_royalty_rate.addr" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 58, + "end_line": 7, + "input_file": { + "filename": "autogen/starknet/storage_var/Sheet_royalty_rate/impl.cairo" + }, + "parent_location": [ + { + "end_col": 58, + "end_line": 7, + "input_file": { + "filename": "autogen/starknet/storage_var/Sheet_royalty_rate/decl.cairo" + }, + "parent_location": [ + { + "end_col": 26, + "end_line": 9, + "input_file": { + "filename": "autogen/starknet/storage_var/Sheet_royalty_rate/impl.cairo" + }, + "start_col": 9, + "start_line": 9 + }, + "While trying to retrieve the implicit argument 'range_check_ptr' in:" + ], + "start_col": 43, + "start_line": 7 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 43, + "start_line": 7 + } + }, + "3035": { + "accessible_scopes": [ + "sheet.library", + "sheet.library.Sheet_royalty_rate", + "sheet.library.Sheet_royalty_rate.addr" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 94, + "end_line": 8, + "input_file": { + "filename": "autogen/starknet/storage_var/Sheet_royalty_rate/impl.cairo" + }, + "parent_location": [ + { + "end_col": 24, + "end_line": 9, + "input_file": { + "filename": "autogen/starknet/storage_var/Sheet_royalty_rate/impl.cairo" + }, + "start_col": 21, + "start_line": 9 + }, + "While expanding the reference 'res' in:" + ], + "start_col": 19, + "start_line": 8 + } + }, + "3037": { + "accessible_scopes": [ + "sheet.library", + "sheet.library.Sheet_royalty_rate", + "sheet.library.Sheet_royalty_rate.addr" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 26, + "end_line": 9, + "input_file": { + "filename": "autogen/starknet/storage_var/Sheet_royalty_rate/impl.cairo" + }, + "start_col": 9, + "start_line": 9 + } + }, + "3038": { + "accessible_scopes": [ + "sheet.library", + "sheet.library.Sheet_royalty_rate", + "sheet.library.Sheet_royalty_rate.read" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 61, + "end_line": 12, + "input_file": { + "filename": "autogen/starknet/storage_var/Sheet_royalty_rate/impl.cairo" + }, + "parent_location": [ + { + "end_col": 41, + "end_line": 7, + "input_file": { + "filename": "autogen/starknet/storage_var/Sheet_royalty_rate/decl.cairo" + }, + "parent_location": [ + { + "end_col": 36, + "end_line": 13, + "input_file": { + "filename": "autogen/starknet/storage_var/Sheet_royalty_rate/impl.cairo" + }, + "start_col": 30, + "start_line": 13 + }, + "While trying to retrieve the implicit argument 'pedersen_ptr' in:" + ], + "start_col": 15, + "start_line": 7 + }, + "While expanding the reference 'pedersen_ptr' in:" + ], + "start_col": 35, + "start_line": 12 + } + }, + "3039": { + "accessible_scopes": [ + "sheet.library", + "sheet.library.Sheet_royalty_rate", + "sheet.library.Sheet_royalty_rate.read" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 78, + "end_line": 12, + "input_file": { + "filename": "autogen/starknet/storage_var/Sheet_royalty_rate/impl.cairo" + }, + "parent_location": [ + { + "end_col": 58, + "end_line": 7, + "input_file": { + "filename": "autogen/starknet/storage_var/Sheet_royalty_rate/decl.cairo" + }, + "parent_location": [ + { + "end_col": 36, + "end_line": 13, + "input_file": { + "filename": "autogen/starknet/storage_var/Sheet_royalty_rate/impl.cairo" + }, + "start_col": 30, + "start_line": 13 + }, + "While trying to retrieve the implicit argument 'range_check_ptr' in:" + ], + "start_col": 43, + "start_line": 7 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 63, + "start_line": 12 + } + }, + "3040": { + "accessible_scopes": [ + "sheet.library", + "sheet.library.Sheet_royalty_rate", + "sheet.library.Sheet_royalty_rate.read" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 36, + "end_line": 13, + "input_file": { + "filename": "autogen/starknet/storage_var/Sheet_royalty_rate/impl.cairo" + }, + "start_col": 30, + "start_line": 13 + } + }, + "3042": { + "accessible_scopes": [ + "sheet.library", + "sheet.library.Sheet_royalty_rate", + "sheet.library.Sheet_royalty_rate.read" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 33, + "end_line": 12, + "input_file": { + "filename": "autogen/starknet/storage_var/Sheet_royalty_rate/impl.cairo" + }, + "parent_location": [ + { + "end_col": 37, + "end_line": 352, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/starknet/common/syscalls.cairo" + }, + "parent_location": [ + { + "end_col": 75, + "end_line": 14, + "input_file": { + "filename": "autogen/starknet/storage_var/Sheet_royalty_rate/impl.cairo" + }, + "start_col": 37, + "start_line": 14 + }, + "While trying to retrieve the implicit argument 'syscall_ptr' in:" + ], + "start_col": 19, + "start_line": 352 + }, + "While expanding the reference 'syscall_ptr' in:" + ], + "start_col": 15, + "start_line": 12 + } + }, + "3043": { + "accessible_scopes": [ + "sheet.library", + "sheet.library.Sheet_royalty_rate", + "sheet.library.Sheet_royalty_rate.read" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 26, + "end_line": 13, + "input_file": { + "filename": "autogen/starknet/storage_var/Sheet_royalty_rate/impl.cairo" + }, + "parent_location": [ + { + "end_col": 70, + "end_line": 14, + "input_file": { + "filename": "autogen/starknet/storage_var/Sheet_royalty_rate/impl.cairo" + }, + "start_col": 58, + "start_line": 14 + }, + "While expanding the reference 'storage_addr' in:" + ], + "start_col": 14, + "start_line": 13 + } + }, + "3044": { + "accessible_scopes": [ + "sheet.library", + "sheet.library.Sheet_royalty_rate", + "sheet.library.Sheet_royalty_rate.read" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 75, + "end_line": 14, + "input_file": { + "filename": "autogen/starknet/storage_var/Sheet_royalty_rate/impl.cairo" + }, + "start_col": 37, + "start_line": 14 + } + }, + "3046": { + "accessible_scopes": [ + "sheet.library", + "sheet.library.Sheet_royalty_rate", + "sheet.library.Sheet_royalty_rate.read" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 37, + "end_line": 352, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/starknet/common/syscalls.cairo" + }, + "parent_location": [ + { + "end_col": 75, + "end_line": 14, + "input_file": { + "filename": "autogen/starknet/storage_var/Sheet_royalty_rate/impl.cairo" + }, + "parent_location": [ + { + "end_col": 42, + "end_line": 16, + "input_file": { + "filename": "autogen/starknet/storage_var/Sheet_royalty_rate/impl.cairo" + }, + "start_col": 31, + "start_line": 16 + }, + "While expanding the reference 'syscall_ptr' in:" + ], + "start_col": 37, + "start_line": 14 + }, + "While trying to update the implicit return value 'syscall_ptr' in:" + ], + "start_col": 19, + "start_line": 352 + } + }, + "3047": { + "accessible_scopes": [ + "sheet.library", + "sheet.library.Sheet_royalty_rate", + "sheet.library.Sheet_royalty_rate.read" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 41, + "end_line": 7, + "input_file": { + "filename": "autogen/starknet/storage_var/Sheet_royalty_rate/decl.cairo" + }, + "parent_location": [ + { + "end_col": 36, + "end_line": 13, + "input_file": { + "filename": "autogen/starknet/storage_var/Sheet_royalty_rate/impl.cairo" + }, + "parent_location": [ + { + "end_col": 44, + "end_line": 17, + "input_file": { + "filename": "autogen/starknet/storage_var/Sheet_royalty_rate/impl.cairo" + }, + "start_col": 32, + "start_line": 17 + }, + "While expanding the reference 'pedersen_ptr' in:" + ], + "start_col": 30, + "start_line": 13 + }, + "While trying to update the implicit return value 'pedersen_ptr' in:" + ], + "start_col": 15, + "start_line": 7 + } + }, + "3048": { + "accessible_scopes": [ + "sheet.library", + "sheet.library.Sheet_royalty_rate", + "sheet.library.Sheet_royalty_rate.read" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 58, + "end_line": 7, + "input_file": { + "filename": "autogen/starknet/storage_var/Sheet_royalty_rate/decl.cairo" + }, + "parent_location": [ + { + "end_col": 36, + "end_line": 13, + "input_file": { + "filename": "autogen/starknet/storage_var/Sheet_royalty_rate/impl.cairo" + }, + "parent_location": [ + { + "end_col": 50, + "end_line": 18, + "input_file": { + "filename": "autogen/starknet/storage_var/Sheet_royalty_rate/impl.cairo" + }, + "start_col": 35, + "start_line": 18 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 30, + "start_line": 13 + }, + "While trying to update the implicit return value 'range_check_ptr' in:" + ], + "start_col": 43, + "start_line": 7 + } + }, + "3049": { + "accessible_scopes": [ + "sheet.library", + "sheet.library.Sheet_royalty_rate", + "sheet.library.Sheet_royalty_rate.read" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 33, + "end_line": 14, + "input_file": { + "filename": "autogen/starknet/storage_var/Sheet_royalty_rate/impl.cairo" + }, + "parent_location": [ + { + "end_col": 64, + "end_line": 19, + "input_file": { + "filename": "autogen/starknet/storage_var/Sheet_royalty_rate/impl.cairo" + }, + "start_col": 45, + "start_line": 19 + }, + "While expanding the reference '__storage_var_temp0' in:" + ], + "start_col": 14, + "start_line": 14 + } + }, + "3050": { + "accessible_scopes": [ + "sheet.library", + "sheet.library.Sheet_royalty_rate", + "sheet.library.Sheet_royalty_rate.read" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 55, + "end_line": 20, + "input_file": { + "filename": "autogen/starknet/storage_var/Sheet_royalty_rate/impl.cairo" + }, + "start_col": 9, + "start_line": 20 + } + }, + "3051": { + "accessible_scopes": [ + "sheet.library", + "sheet.library.Sheet_royalty_rate", + "sheet.library.Sheet_royalty_rate.write" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 62, + "end_line": 23, + "input_file": { + "filename": "autogen/starknet/storage_var/Sheet_royalty_rate/impl.cairo" + }, + "parent_location": [ + { + "end_col": 41, + "end_line": 7, + "input_file": { + "filename": "autogen/starknet/storage_var/Sheet_royalty_rate/decl.cairo" + }, + "parent_location": [ + { + "end_col": 36, + "end_line": 24, + "input_file": { + "filename": "autogen/starknet/storage_var/Sheet_royalty_rate/impl.cairo" + }, + "start_col": 30, + "start_line": 24 + }, + "While trying to retrieve the implicit argument 'pedersen_ptr' in:" + ], + "start_col": 15, + "start_line": 7 + }, + "While expanding the reference 'pedersen_ptr' in:" + ], + "start_col": 36, + "start_line": 23 + } + }, + "3052": { + "accessible_scopes": [ + "sheet.library", + "sheet.library.Sheet_royalty_rate", + "sheet.library.Sheet_royalty_rate.write" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 79, + "end_line": 23, + "input_file": { + "filename": "autogen/starknet/storage_var/Sheet_royalty_rate/impl.cairo" + }, + "parent_location": [ + { + "end_col": 58, + "end_line": 7, + "input_file": { + "filename": "autogen/starknet/storage_var/Sheet_royalty_rate/decl.cairo" + }, + "parent_location": [ + { + "end_col": 36, + "end_line": 24, + "input_file": { + "filename": "autogen/starknet/storage_var/Sheet_royalty_rate/impl.cairo" + }, + "start_col": 30, + "start_line": 24 + }, + "While trying to retrieve the implicit argument 'range_check_ptr' in:" + ], + "start_col": 43, + "start_line": 7 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 64, + "start_line": 23 + } + }, + "3053": { + "accessible_scopes": [ + "sheet.library", + "sheet.library.Sheet_royalty_rate", + "sheet.library.Sheet_royalty_rate.write" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 36, + "end_line": 24, + "input_file": { + "filename": "autogen/starknet/storage_var/Sheet_royalty_rate/impl.cairo" + }, + "start_col": 30, + "start_line": 24 + } + }, + "3055": { + "accessible_scopes": [ + "sheet.library", + "sheet.library.Sheet_royalty_rate", + "sheet.library.Sheet_royalty_rate.write" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 34, + "end_line": 23, + "input_file": { + "filename": "autogen/starknet/storage_var/Sheet_royalty_rate/impl.cairo" + }, + "parent_location": [ + { + "end_col": 38, + "end_line": 370, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/starknet/common/syscalls.cairo" + }, + "parent_location": [ + { + "end_col": 80, + "end_line": 25, + "input_file": { + "filename": "autogen/starknet/storage_var/Sheet_royalty_rate/impl.cairo" + }, + "start_col": 9, + "start_line": 25 + }, + "While trying to retrieve the implicit argument 'syscall_ptr' in:" + ], + "start_col": 20, + "start_line": 370 + }, + "While expanding the reference 'syscall_ptr' in:" + ], + "start_col": 16, + "start_line": 23 + } + }, + "3056": { + "accessible_scopes": [ + "sheet.library", + "sheet.library.Sheet_royalty_rate", + "sheet.library.Sheet_royalty_rate.write" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 26, + "end_line": 24, + "input_file": { + "filename": "autogen/starknet/storage_var/Sheet_royalty_rate/impl.cairo" + }, + "parent_location": [ + { + "end_col": 43, + "end_line": 25, + "input_file": { + "filename": "autogen/starknet/storage_var/Sheet_royalty_rate/impl.cairo" + }, + "start_col": 31, + "start_line": 25 + }, + "While expanding the reference 'storage_addr' in:" + ], + "start_col": 14, + "start_line": 24 + } + }, + "3057": { + "accessible_scopes": [ + "sheet.library", + "sheet.library.Sheet_royalty_rate", + "sheet.library.Sheet_royalty_rate.write" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 79, + "end_line": 25, + "input_file": { + "filename": "autogen/starknet/storage_var/Sheet_royalty_rate/impl.cairo" + }, + "start_col": 55, + "start_line": 25 + } + }, + "3058": { + "accessible_scopes": [ + "sheet.library", + "sheet.library.Sheet_royalty_rate", + "sheet.library.Sheet_royalty_rate.write" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 80, + "end_line": 25, + "input_file": { + "filename": "autogen/starknet/storage_var/Sheet_royalty_rate/impl.cairo" + }, + "start_col": 9, + "start_line": 25 + } + }, + "3060": { + "accessible_scopes": [ + "sheet.library", + "sheet.library.Sheet_royalty_rate", + "sheet.library.Sheet_royalty_rate.write" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 41, + "end_line": 7, + "input_file": { + "filename": "autogen/starknet/storage_var/Sheet_royalty_rate/decl.cairo" + }, + "parent_location": [ + { + "end_col": 36, + "end_line": 24, + "input_file": { + "filename": "autogen/starknet/storage_var/Sheet_royalty_rate/impl.cairo" + }, + "parent_location": [ + { + "end_col": 62, + "end_line": 19, + "input_file": { + "filename": "autogen/starknet/storage_var/Sheet_royalty_rate/decl.cairo" + }, + "parent_location": [ + { + "end_col": 19, + "end_line": 26, + "input_file": { + "filename": "autogen/starknet/storage_var/Sheet_royalty_rate/impl.cairo" + }, + "start_col": 9, + "start_line": 26 + }, + "While trying to retrieve the implicit argument 'pedersen_ptr' in:" + ], + "start_col": 36, + "start_line": 19 + }, + "While expanding the reference 'pedersen_ptr' in:" + ], + "start_col": 30, + "start_line": 24 + }, + "While trying to update the implicit return value 'pedersen_ptr' in:" + ], + "start_col": 15, + "start_line": 7 + } + }, + "3061": { + "accessible_scopes": [ + "sheet.library", + "sheet.library.Sheet_royalty_rate", + "sheet.library.Sheet_royalty_rate.write" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 58, + "end_line": 7, + "input_file": { + "filename": "autogen/starknet/storage_var/Sheet_royalty_rate/decl.cairo" + }, + "parent_location": [ + { + "end_col": 36, + "end_line": 24, + "input_file": { + "filename": "autogen/starknet/storage_var/Sheet_royalty_rate/impl.cairo" + }, + "parent_location": [ + { + "end_col": 79, + "end_line": 19, + "input_file": { + "filename": "autogen/starknet/storage_var/Sheet_royalty_rate/decl.cairo" + }, + "parent_location": [ + { + "end_col": 19, + "end_line": 26, + "input_file": { + "filename": "autogen/starknet/storage_var/Sheet_royalty_rate/impl.cairo" + }, + "start_col": 9, + "start_line": 26 + }, + "While trying to retrieve the implicit argument 'range_check_ptr' in:" + ], + "start_col": 64, + "start_line": 19 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 30, + "start_line": 24 + }, + "While trying to update the implicit return value 'range_check_ptr' in:" + ], + "start_col": 43, + "start_line": 7 + } + }, + "3062": { + "accessible_scopes": [ + "sheet.library", + "sheet.library.Sheet_royalty_rate", + "sheet.library.Sheet_royalty_rate.write" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 19, + "end_line": 26, + "input_file": { + "filename": "autogen/starknet/storage_var/Sheet_royalty_rate/impl.cairo" + }, + "start_col": 9, + "start_line": 26 + } + }, + "3063": { + "accessible_scopes": [ + "sheet.library", + "sheet.library.Sheet", + "sheet.library.Sheet.get_cell_price" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 43, + "end_line": 83, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" + }, + "parent_location": [ + { + "end_col": 33, + "end_line": 13, + "input_file": { + "filename": "autogen/starknet/storage_var/Sheet_cell_price/decl.cairo" + }, + "parent_location": [ + { + "end_col": 39, + "end_line": 86, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" + }, + "start_col": 16, + "start_line": 86 + }, + "While trying to retrieve the implicit argument 'syscall_ptr' in:" + ], + "start_col": 15, + "start_line": 13 + }, + "While expanding the reference 'syscall_ptr' in:" + ], + "start_col": 25, + "start_line": 83 + } + }, + "3064": { + "accessible_scopes": [ + "sheet.library", + "sheet.library.Sheet", + "sheet.library.Sheet.get_cell_price" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 71, + "end_line": 83, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" + }, + "parent_location": [ + { + "end_col": 61, + "end_line": 13, + "input_file": { + "filename": "autogen/starknet/storage_var/Sheet_cell_price/decl.cairo" + }, + "parent_location": [ + { + "end_col": 39, + "end_line": 86, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" + }, + "start_col": 16, + "start_line": 86 + }, + "While trying to retrieve the implicit argument 'pedersen_ptr' in:" + ], + "start_col": 35, + "start_line": 13 + }, + "While expanding the reference 'pedersen_ptr' in:" + ], + "start_col": 45, + "start_line": 83 + } + }, + "3065": { + "accessible_scopes": [ + "sheet.library", + "sheet.library.Sheet", + "sheet.library.Sheet.get_cell_price" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 88, + "end_line": 83, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" + }, + "parent_location": [ + { + "end_col": 78, + "end_line": 13, + "input_file": { + "filename": "autogen/starknet/storage_var/Sheet_cell_price/decl.cairo" + }, + "parent_location": [ + { + "end_col": 39, + "end_line": 86, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" + }, + "start_col": 16, + "start_line": 86 + }, + "While trying to retrieve the implicit argument 'range_check_ptr' in:" + ], + "start_col": 63, + "start_line": 13 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 73, + "start_line": 83 + } + }, + "3066": { + "accessible_scopes": [ + "sheet.library", + "sheet.library.Sheet", + "sheet.library.Sheet.get_cell_price" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 39, + "end_line": 86, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" + }, + "start_col": 16, + "start_line": 86 + } + }, + "3068": { + "accessible_scopes": [ + "sheet.library", + "sheet.library.Sheet", + "sheet.library.Sheet.get_cell_price" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 40, + "end_line": 86, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" + }, + "start_col": 9, + "start_line": 86 + } + }, + "3069": { + "accessible_scopes": [ + "sheet.library", + "sheet.library.Sheet", + "sheet.library.Sheet.set_cell_price" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 43, + "end_line": 89, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" + }, + "parent_location": [ + { + "end_col": 34, + "end_line": 19, + "input_file": { + "filename": "autogen/starknet/storage_var/Sheet_cell_price/decl.cairo" + }, + "parent_location": [ + { + "end_col": 38, + "end_line": 92, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" + }, + "start_col": 9, + "start_line": 92 + }, + "While trying to retrieve the implicit argument 'syscall_ptr' in:" + ], + "start_col": 16, + "start_line": 19 + }, + "While expanding the reference 'syscall_ptr' in:" + ], + "start_col": 25, + "start_line": 89 + } + }, + "3070": { + "accessible_scopes": [ + "sheet.library", + "sheet.library.Sheet", + "sheet.library.Sheet.set_cell_price" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 71, + "end_line": 89, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" + }, + "parent_location": [ + { + "end_col": 62, + "end_line": 19, + "input_file": { + "filename": "autogen/starknet/storage_var/Sheet_cell_price/decl.cairo" + }, + "parent_location": [ + { + "end_col": 38, + "end_line": 92, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" + }, + "start_col": 9, + "start_line": 92 + }, + "While trying to retrieve the implicit argument 'pedersen_ptr' in:" + ], + "start_col": 36, + "start_line": 19 + }, + "While expanding the reference 'pedersen_ptr' in:" + ], + "start_col": 45, + "start_line": 89 + } + }, + "3071": { + "accessible_scopes": [ + "sheet.library", + "sheet.library.Sheet", + "sheet.library.Sheet.set_cell_price" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 88, + "end_line": 89, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" + }, + "parent_location": [ + { + "end_col": 79, + "end_line": 19, + "input_file": { + "filename": "autogen/starknet/storage_var/Sheet_cell_price/decl.cairo" + }, + "parent_location": [ + { + "end_col": 38, + "end_line": 92, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" + }, + "start_col": 9, + "start_line": 92 + }, + "While trying to retrieve the implicit argument 'range_check_ptr' in:" + ], + "start_col": 64, + "start_line": 19 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 73, + "start_line": 89 + } + }, + "3072": { + "accessible_scopes": [ + "sheet.library", + "sheet.library.Sheet", + "sheet.library.Sheet.set_cell_price" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 20, + "end_line": 90, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" + }, + "parent_location": [ + { + "end_col": 37, + "end_line": 92, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" + }, + "start_col": 32, + "start_line": 92 + }, + "While expanding the reference 'price' in:" + ], + "start_col": 9, + "start_line": 90 + } + }, + "3073": { + "accessible_scopes": [ + "sheet.library", + "sheet.library.Sheet", + "sheet.library.Sheet.set_cell_price" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 38, + "end_line": 92, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" + }, + "start_col": 9, + "start_line": 92 + } + }, + "3075": { + "accessible_scopes": [ + "sheet.library", + "sheet.library.Sheet", + "sheet.library.Sheet.set_cell_price" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 19, + "end_line": 93, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" + }, + "start_col": 9, + "start_line": 93 + } + }, + "3076": { + "accessible_scopes": [ + "sheet.library", + "sheet.library.Sheet", + "sheet.library.Sheet.get_royalty_rate" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 45, + "end_line": 96, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" + }, + "parent_location": [ + { + "end_col": 33, + "end_line": 13, + "input_file": { + "filename": "autogen/starknet/storage_var/Sheet_royalty_rate/decl.cairo" + }, + "parent_location": [ + { + "end_col": 41, + "end_line": 99, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" + }, + "start_col": 16, + "start_line": 99 + }, + "While trying to retrieve the implicit argument 'syscall_ptr' in:" + ], + "start_col": 15, + "start_line": 13 + }, + "While expanding the reference 'syscall_ptr' in:" + ], + "start_col": 27, + "start_line": 96 + } + }, + "3077": { + "accessible_scopes": [ + "sheet.library", + "sheet.library.Sheet", + "sheet.library.Sheet.get_royalty_rate" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 73, + "end_line": 96, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" + }, + "parent_location": [ + { + "end_col": 61, + "end_line": 13, + "input_file": { + "filename": "autogen/starknet/storage_var/Sheet_royalty_rate/decl.cairo" + }, + "parent_location": [ + { + "end_col": 41, + "end_line": 99, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" + }, + "start_col": 16, + "start_line": 99 + }, + "While trying to retrieve the implicit argument 'pedersen_ptr' in:" + ], + "start_col": 35, + "start_line": 13 + }, + "While expanding the reference 'pedersen_ptr' in:" + ], + "start_col": 47, + "start_line": 96 + } + }, + "3078": { + "accessible_scopes": [ + "sheet.library", + "sheet.library.Sheet", + "sheet.library.Sheet.get_royalty_rate" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 90, + "end_line": 96, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" + }, + "parent_location": [ + { + "end_col": 78, + "end_line": 13, + "input_file": { + "filename": "autogen/starknet/storage_var/Sheet_royalty_rate/decl.cairo" + }, + "parent_location": [ + { + "end_col": 41, + "end_line": 99, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" + }, + "start_col": 16, + "start_line": 99 + }, + "While trying to retrieve the implicit argument 'range_check_ptr' in:" + ], + "start_col": 63, + "start_line": 13 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 75, + "start_line": 96 + } + }, + "3079": { + "accessible_scopes": [ + "sheet.library", + "sheet.library.Sheet", + "sheet.library.Sheet.get_royalty_rate" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 41, + "end_line": 99, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" + }, + "start_col": 16, + "start_line": 99 + } + }, + "3081": { + "accessible_scopes": [ + "sheet.library", + "sheet.library.Sheet", + "sheet.library.Sheet.get_royalty_rate" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 42, + "end_line": 99, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" + }, + "start_col": 9, + "start_line": 99 + } + }, + "3082": { + "accessible_scopes": [ + "sheet.library", + "sheet.library.Sheet", + "sheet.library.Sheet.set_royalty_rate" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 45, + "end_line": 102, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" + }, + "parent_location": [ + { + "end_col": 34, + "end_line": 19, + "input_file": { + "filename": "autogen/starknet/storage_var/Sheet_royalty_rate/decl.cairo" + }, + "parent_location": [ + { + "end_col": 39, + "end_line": 105, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" + }, + "start_col": 9, + "start_line": 105 + }, + "While trying to retrieve the implicit argument 'syscall_ptr' in:" + ], + "start_col": 16, + "start_line": 19 + }, + "While expanding the reference 'syscall_ptr' in:" + ], + "start_col": 27, + "start_line": 102 + } + }, + "3083": { + "accessible_scopes": [ + "sheet.library", + "sheet.library.Sheet", + "sheet.library.Sheet.set_royalty_rate" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 73, + "end_line": 102, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" + }, + "parent_location": [ + { + "end_col": 62, + "end_line": 19, + "input_file": { + "filename": "autogen/starknet/storage_var/Sheet_royalty_rate/decl.cairo" + }, + "parent_location": [ + { + "end_col": 39, + "end_line": 105, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" + }, + "start_col": 9, + "start_line": 105 + }, + "While trying to retrieve the implicit argument 'pedersen_ptr' in:" + ], + "start_col": 36, + "start_line": 19 + }, + "While expanding the reference 'pedersen_ptr' in:" + ], + "start_col": 47, + "start_line": 102 + } + }, + "3084": { + "accessible_scopes": [ + "sheet.library", + "sheet.library.Sheet", + "sheet.library.Sheet.set_royalty_rate" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 90, + "end_line": 102, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" + }, + "parent_location": [ + { + "end_col": 79, + "end_line": 19, + "input_file": { + "filename": "autogen/starknet/storage_var/Sheet_royalty_rate/decl.cairo" + }, + "parent_location": [ + { + "end_col": 39, + "end_line": 105, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" + }, + "start_col": 9, + "start_line": 105 + }, + "While trying to retrieve the implicit argument 'range_check_ptr' in:" + ], + "start_col": 64, + "start_line": 19 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 75, + "start_line": 102 + } + }, + "3085": { + "accessible_scopes": [ + "sheet.library", + "sheet.library.Sheet", + "sheet.library.Sheet.set_royalty_rate" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 19, + "end_line": 103, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" + }, + "parent_location": [ + { + "end_col": 38, + "end_line": 105, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" + }, + "start_col": 34, + "start_line": 105 + }, + "While expanding the reference 'rate' in:" + ], + "start_col": 9, + "start_line": 103 + } + }, + "3086": { + "accessible_scopes": [ + "sheet.library", + "sheet.library.Sheet", + "sheet.library.Sheet.set_royalty_rate" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 39, + "end_line": 105, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" + }, + "start_col": 9, + "start_line": 105 + } + }, + "3088": { + "accessible_scopes": [ + "sheet.library", + "sheet.library.Sheet", + "sheet.library.Sheet.set_royalty_rate" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 19, + "end_line": 106, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" + }, + "start_col": 9, + "start_line": 106 + } + }, + "3089": { + "accessible_scopes": [ + "sheet.library", + "sheet.library.Sheet", + "sheet.library.Sheet.royalty_info" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 41, + "end_line": 109, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" + }, + "parent_location": [ + { + "end_col": 34, + "end_line": 56, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/access/ownable/library.cairo" + }, + "parent_location": [ + { + "end_col": 41, + "end_line": 112, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" + }, + "start_col": 26, + "start_line": 112 + }, + "While trying to retrieve the implicit argument 'syscall_ptr' in:" + ], + "start_col": 16, + "start_line": 56 + }, + "While expanding the reference 'syscall_ptr' in:" + ], + "start_col": 23, + "start_line": 109 + } + }, + "3090": { + "accessible_scopes": [ + "sheet.library", + "sheet.library.Sheet", + "sheet.library.Sheet.royalty_info" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 69, + "end_line": 109, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" + }, + "parent_location": [ + { + "end_col": 62, + "end_line": 56, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/access/ownable/library.cairo" + }, + "parent_location": [ + { + "end_col": 41, + "end_line": 112, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" + }, + "start_col": 26, + "start_line": 112 + }, + "While trying to retrieve the implicit argument 'pedersen_ptr' in:" + ], + "start_col": 36, + "start_line": 56 + }, + "While expanding the reference 'pedersen_ptr' in:" + ], + "start_col": 43, + "start_line": 109 + } + }, + "3091": { + "accessible_scopes": [ + "sheet.library", + "sheet.library.Sheet", + "sheet.library.Sheet.royalty_info" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 86, + "end_line": 109, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" + }, + "parent_location": [ + { + "end_col": 79, + "end_line": 56, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/access/ownable/library.cairo" + }, + "parent_location": [ + { + "end_col": 41, + "end_line": 112, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" + }, + "start_col": 26, + "start_line": 112 + }, + "While trying to retrieve the implicit argument 'range_check_ptr' in:" + ], + "start_col": 64, + "start_line": 56 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 71, + "start_line": 109 + } + }, + "3092": { + "accessible_scopes": [ + "sheet.library", + "sheet.library.Sheet", + "sheet.library.Sheet.royalty_info" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 41, + "end_line": 112, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" + }, + "start_col": 26, + "start_line": 112 + } + }, + "3094": { + "accessible_scopes": [ + "sheet.library", + "sheet.library.Sheet", + "sheet.library.Sheet.royalty_info" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 34, + "end_line": 56, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/access/ownable/library.cairo" + }, + "parent_location": [ + { + "end_col": 41, + "end_line": 112, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" + }, + "parent_location": [ + { + "end_col": 33, + "end_line": 13, + "input_file": { + "filename": "autogen/starknet/storage_var/Sheet_royalty_rate/decl.cairo" + }, + "parent_location": [ + { + "end_col": 55, + "end_line": 113, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" + }, + "start_col": 30, + "start_line": 113 + }, + "While trying to retrieve the implicit argument 'syscall_ptr' in:" + ], + "start_col": 15, + "start_line": 13 + }, + "While expanding the reference 'syscall_ptr' in:" + ], + "start_col": 26, + "start_line": 112 + }, + "While trying to update the implicit return value 'syscall_ptr' in:" + ], + "start_col": 16, + "start_line": 56 + } + }, + "3095": { + "accessible_scopes": [ + "sheet.library", + "sheet.library.Sheet", + "sheet.library.Sheet.royalty_info" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 62, + "end_line": 56, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/access/ownable/library.cairo" + }, + "parent_location": [ + { + "end_col": 41, + "end_line": 112, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" + }, + "parent_location": [ + { + "end_col": 61, + "end_line": 13, + "input_file": { + "filename": "autogen/starknet/storage_var/Sheet_royalty_rate/decl.cairo" + }, + "parent_location": [ + { + "end_col": 55, + "end_line": 113, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" + }, + "start_col": 30, + "start_line": 113 + }, + "While trying to retrieve the implicit argument 'pedersen_ptr' in:" + ], + "start_col": 35, + "start_line": 13 + }, + "While expanding the reference 'pedersen_ptr' in:" + ], + "start_col": 26, + "start_line": 112 + }, + "While trying to update the implicit return value 'pedersen_ptr' in:" + ], + "start_col": 36, + "start_line": 56 + } + }, + "3096": { + "accessible_scopes": [ + "sheet.library", + "sheet.library.Sheet", + "sheet.library.Sheet.royalty_info" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 79, + "end_line": 56, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/access/ownable/library.cairo" + }, + "parent_location": [ + { + "end_col": 41, + "end_line": 112, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" + }, + "parent_location": [ + { + "end_col": 78, + "end_line": 13, + "input_file": { + "filename": "autogen/starknet/storage_var/Sheet_royalty_rate/decl.cairo" + }, + "parent_location": [ + { + "end_col": 55, + "end_line": 113, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" + }, + "start_col": 30, + "start_line": 113 + }, + "While trying to retrieve the implicit argument 'range_check_ptr' in:" + ], + "start_col": 63, + "start_line": 13 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 26, + "start_line": 112 + }, + "While trying to update the implicit return value 'range_check_ptr' in:" + ], + "start_col": 64, + "start_line": 56 + } + }, + "3097": { + "accessible_scopes": [ + "sheet.library", + "sheet.library.Sheet", + "sheet.library.Sheet.royalty_info" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 55, + "end_line": 113, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" + }, + "start_col": 30, + "start_line": 113 + } + }, + "3099": { + "accessible_scopes": [ + "sheet.library", + "sheet.library.Sheet", + "sheet.library.Sheet.royalty_info" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 78, + "end_line": 13, + "input_file": { + "filename": "autogen/starknet/storage_var/Sheet_royalty_rate/decl.cairo" + }, + "parent_location": [ + { + "end_col": 55, + "end_line": 113, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" + }, + "parent_location": [ + { + "end_col": 38, + "end_line": 297, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/math.cairo" + }, + "parent_location": [ + { + "end_col": 84, + "end_line": 114, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" + }, + "start_col": 35, + "start_line": 114 + }, + "While trying to retrieve the implicit argument 'range_check_ptr' in:" + ], + "start_col": 23, + "start_line": 297 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 30, + "start_line": 113 + }, + "While trying to update the implicit return value 'range_check_ptr' in:" + ], + "start_col": 63, + "start_line": 13 + } + }, + "3100": { + "accessible_scopes": [ + "sheet.library", + "sheet.library.Sheet", + "sheet.library.Sheet.royalty_info" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 77, + "end_line": 114, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" + }, + "start_col": 52, + "start_line": 114 + } + }, + "3101": { + "accessible_scopes": [ + "sheet.library", + "sheet.library.Sheet", + "sheet.library.Sheet.royalty_info" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 83, + "end_line": 114, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" + }, + "start_col": 79, + "start_line": 114 + } + }, + "3103": { + "accessible_scopes": [ + "sheet.library", + "sheet.library.Sheet", + "sheet.library.Sheet.royalty_info" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 84, + "end_line": 114, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" + }, + "start_col": 35, + "start_line": 114 + } + }, + "3105": { + "accessible_scopes": [ + "sheet.library", + "sheet.library.Sheet", + "sheet.library.Sheet.royalty_info" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 33, + "end_line": 13, + "input_file": { + "filename": "autogen/starknet/storage_var/Sheet_royalty_rate/decl.cairo" + }, + "parent_location": [ + { + "end_col": 55, + "end_line": 113, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" + }, + "parent_location": [ + { + "end_col": 41, + "end_line": 109, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" + }, + "parent_location": [ + { + "end_col": 43, + "end_line": 115, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" + }, + "start_col": 9, + "start_line": 115 + }, + "While trying to retrieve the implicit argument 'syscall_ptr' in:" + ], + "start_col": 23, + "start_line": 109 + }, + "While expanding the reference 'syscall_ptr' in:" + ], + "start_col": 30, + "start_line": 113 + }, + "While trying to update the implicit return value 'syscall_ptr' in:" + ], + "start_col": 15, + "start_line": 13 + } + }, + "3106": { + "accessible_scopes": [ + "sheet.library", + "sheet.library.Sheet", + "sheet.library.Sheet.royalty_info" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 61, + "end_line": 13, + "input_file": { + "filename": "autogen/starknet/storage_var/Sheet_royalty_rate/decl.cairo" + }, + "parent_location": [ + { + "end_col": 55, + "end_line": 113, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" + }, + "parent_location": [ + { + "end_col": 69, + "end_line": 109, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" + }, + "parent_location": [ + { + "end_col": 43, + "end_line": 115, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" + }, + "start_col": 9, + "start_line": 115 + }, + "While trying to retrieve the implicit argument 'pedersen_ptr' in:" + ], + "start_col": 43, + "start_line": 109 + }, + "While expanding the reference 'pedersen_ptr' in:" + ], + "start_col": 30, + "start_line": 113 + }, + "While trying to update the implicit return value 'pedersen_ptr' in:" + ], + "start_col": 35, + "start_line": 13 + } + }, + "3107": { + "accessible_scopes": [ + "sheet.library", + "sheet.library.Sheet", + "sheet.library.Sheet.royalty_info" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 38, + "end_line": 297, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/math.cairo" + }, + "parent_location": [ + { + "end_col": 84, + "end_line": 114, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" + }, + "parent_location": [ + { + "end_col": 86, + "end_line": 109, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" + }, + "parent_location": [ + { + "end_col": 43, + "end_line": 115, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" + }, + "start_col": 9, + "start_line": 115 + }, + "While trying to retrieve the implicit argument 'range_check_ptr' in:" + ], + "start_col": 71, + "start_line": 109 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 35, + "start_line": 114 + }, + "While trying to update the implicit return value 'range_check_ptr' in:" + ], + "start_col": 23, + "start_line": 297 + } + }, + "3108": { + "accessible_scopes": [ + "sheet.library", + "sheet.library.Sheet", + "sheet.library.Sheet.royalty_info" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 22, + "end_line": 112, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" + }, + "parent_location": [ + { + "end_col": 25, + "end_line": 115, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" + }, + "start_col": 17, + "start_line": 115 + }, + "While expanding the reference 'receiver' in:" + ], + "start_col": 14, + "start_line": 112 + } + }, + "3109": { + "accessible_scopes": [ + "sheet.library", + "sheet.library.Sheet", + "sheet.library.Sheet.royalty_info" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 28, + "end_line": 114, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" + }, + "parent_location": [ + { + "end_col": 41, + "end_line": 115, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" + }, + "start_col": 27, + "start_line": 115 + }, + "While expanding the reference 'royalty_amount' in:" + ], + "start_col": 14, + "start_line": 114 + } + }, + "3110": { + "accessible_scopes": [ + "sheet.library", + "sheet.library.Sheet", + "sheet.library.Sheet.royalty_info" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 43, + "end_line": 115, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" + }, + "start_col": 9, + "start_line": 115 + } + }, + "3111": { + "accessible_scopes": [ + "sheet.library", + "sheet.library.Sheet", + "sheet.library.Sheet.set_cell" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 22, + "end_line": 125, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" + }, + "start_col": 9, + "start_line": 125 + } + }, + "3113": { + "accessible_scopes": [ + "sheet.library", + "sheet.library.Sheet", + "sheet.library.Sheet.set_cell" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 37, + "end_line": 118, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" + }, + "parent_location": [ + { + "end_col": 34, + "end_line": 21, + "input_file": { + "filename": "autogen/starknet/storage_var/Sheet_cell/decl.cairo" + }, + "parent_location": [ + { + "end_col": 10, + "end_line": 131, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" + }, + "start_col": 9, + "start_line": 126 + }, + "While trying to retrieve the implicit argument 'syscall_ptr' in:" + ], + "start_col": 16, + "start_line": 21 + }, + "While expanding the reference 'syscall_ptr' in:" + ], + "start_col": 19, + "start_line": 118 + } + }, + "3114": { + "accessible_scopes": [ + "sheet.library", + "sheet.library.Sheet", + "sheet.library.Sheet.set_cell" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 65, + "end_line": 118, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" + }, + "parent_location": [ + { + "end_col": 62, + "end_line": 21, + "input_file": { + "filename": "autogen/starknet/storage_var/Sheet_cell/decl.cairo" + }, + "parent_location": [ + { + "end_col": 10, + "end_line": 131, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" + }, + "start_col": 9, + "start_line": 126 + }, + "While trying to retrieve the implicit argument 'pedersen_ptr' in:" + ], + "start_col": 36, + "start_line": 21 + }, + "While expanding the reference 'pedersen_ptr' in:" + ], + "start_col": 39, + "start_line": 118 + } + }, + "3115": { + "accessible_scopes": [ + "sheet.library", + "sheet.library.Sheet", + "sheet.library.Sheet.set_cell" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 82, + "end_line": 118, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" + }, + "parent_location": [ + { + "end_col": 79, + "end_line": 21, + "input_file": { + "filename": "autogen/starknet/storage_var/Sheet_cell/decl.cairo" + }, + "parent_location": [ + { + "end_col": 10, + "end_line": 131, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" + }, + "start_col": 9, + "start_line": 126 + }, + "While trying to retrieve the implicit argument 'range_check_ptr' in:" + ], + "start_col": 64, + "start_line": 21 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 67, + "start_line": 118 + } + }, + "3116": { + "accessible_scopes": [ + "sheet.library", + "sheet.library.Sheet", + "sheet.library.Sheet.set_cell" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 23, + "end_line": 119, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" + }, + "parent_location": [ + { + "end_col": 21, + "end_line": 127, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" + }, + "start_col": 13, + "start_line": 127 + }, + "While expanding the reference 'token_id' in:" + ], + "start_col": 9, + "start_line": 119 + } + }, + "3117": { + "accessible_scopes": [ + "sheet.library", + "sheet.library.Sheet", + "sheet.library.Sheet.set_cell" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 31, + "end_line": 120, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" + }, + "parent_location": [ + { + "end_col": 50, + "end_line": 129, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" + }, + "start_col": 34, + "start_line": 129 + }, + "While expanding the reference 'contract_address' in:" + ], + "start_col": 9, + "start_line": 120 + } + }, + "3118": { + "accessible_scopes": [ + "sheet.library", + "sheet.library.Sheet", + "sheet.library.Sheet.set_cell" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 20, + "end_line": 121, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" + }, + "parent_location": [ + { + "end_col": 63, + "end_line": 129, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" + }, + "start_col": 58, + "start_line": 129 + }, + "While expanding the reference 'value' in:" + ], + "start_col": 9, + "start_line": 121 + } + }, + "3119": { + "accessible_scopes": [ + "sheet.library", + "sheet.library.Sheet", + "sheet.library.Sheet.set_cell" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 32, + "end_line": 122, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" + }, + "parent_location": [ + { + "end_col": 95, + "end_line": 129, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" + }, + "start_col": 78, + "start_line": 129 + }, + "While expanding the reference 'cell_calldata_len' in:" + ], + "start_col": 9, + "start_line": 122 + } + }, + "3120": { + "accessible_scopes": [ + "sheet.library", + "sheet.library.Sheet", + "sheet.library.Sheet.set_cell" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 10, + "end_line": 131, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" + }, + "start_col": 9, + "start_line": 126 + } + }, + "3122": { + "accessible_scopes": [ + "sheet.library", + "sheet.library.Sheet", + "sheet.library.Sheet.set_cell" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 25, + "end_line": 132, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" + }, + "start_col": 9, + "start_line": 132 + } + }, + "3124": { + "accessible_scopes": [ + "sheet.library", + "sheet.library.Sheet", + "sheet.library.Sheet.set_cell" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 23, + "end_line": 119, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" + }, + "parent_location": [ + { + "end_col": 40, + "end_line": 133, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" + }, + "start_col": 32, + "start_line": 133 + }, + "While expanding the reference 'token_id' in:" + ], + "start_col": 9, + "start_line": 119 + } + }, + "3125": { + "accessible_scopes": [ + "sheet.library", + "sheet.library.Sheet", + "sheet.library.Sheet.set_cell" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 20, + "end_line": 132, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" + }, + "parent_location": [ + { + "end_col": 53, + "end_line": 133, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" + }, + "start_col": 48, + "start_line": 133 + }, + "While expanding the reference 'index' in:" + ], + "start_col": 15, + "start_line": 132 + } + }, + "3126": { + "accessible_scopes": [ + "sheet.library", + "sheet.library.Sheet", + "sheet.library.Sheet.set_cell" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 32, + "end_line": 122, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" + }, + "parent_location": [ + { + "end_col": 85, + "end_line": 133, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" + }, + "start_col": 68, + "start_line": 133 + }, + "While expanding the reference 'cell_calldata_len' in:" + ], + "start_col": 9, + "start_line": 122 + } + }, + "3127": { + "accessible_scopes": [ + "sheet.library", + "sheet.library.Sheet", + "sheet.library.Sheet.set_cell" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 29, + "end_line": 123, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" + }, + "parent_location": [ + { + "end_col": 26, + "end_line": 134, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" + }, + "start_col": 13, + "start_line": 134 + }, + "While expanding the reference 'cell_calldata' in:" + ], + "start_col": 9, + "start_line": 123 + } + }, + "3128": { + "accessible_scopes": [ + "sheet.library", + "sheet.library.Sheet", + "sheet.library.Sheet.set_cell" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 10, + "end_line": 135, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" + }, + "start_col": 9, + "start_line": 133 + } + }, + "3130": { + "accessible_scopes": [ + "sheet.library", + "sheet.library.Sheet", + "sheet.library.Sheet.set_cell" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 23, + "end_line": 275, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" + }, + "parent_location": [ + { + "end_col": 10, + "end_line": 135, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" + }, + "parent_location": [ + { + "end_col": 29, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/event/CellUpdated/a7a8ae41be29ac9f4f6c3b7837c448d787ca051dd1ade98f409e54d33d112504.cairo" + }, + "parent_location": [ + { + "end_col": 17, + "end_line": 25, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" + }, + "parent_location": [ + { + "end_col": 60, + "end_line": 136, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" + }, + "start_col": 9, + "start_line": 136 + }, + "While trying to retrieve the implicit argument 'syscall_ptr' in:" + ], + "start_col": 6, + "start_line": 25 + }, + "While handling event:" + ], + "start_col": 11, + "start_line": 1 + }, + "While expanding the reference 'syscall_ptr' in:" + ], + "start_col": 9, + "start_line": 133 + }, + "While trying to update the implicit return value 'syscall_ptr' in:" + ], + "start_col": 5, + "start_line": 275 + } + }, + "3131": { + "accessible_scopes": [ + "sheet.library", + "sheet.library.Sheet", + "sheet.library.Sheet.set_cell" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 20, + "end_line": 277, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" + }, + "parent_location": [ + { + "end_col": 10, + "end_line": 135, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" + }, + "parent_location": [ + { + "end_col": 46, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/event/CellUpdated/a7a8ae41be29ac9f4f6c3b7837c448d787ca051dd1ade98f409e54d33d112504.cairo" + }, + "parent_location": [ + { + "end_col": 17, + "end_line": 25, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" + }, + "parent_location": [ + { + "end_col": 60, + "end_line": 136, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" + }, + "start_col": 9, + "start_line": 136 + }, + "While trying to retrieve the implicit argument 'range_check_ptr' in:" + ], + "start_col": 6, + "start_line": 25 + }, + "While handling event:" + ], + "start_col": 31, + "start_line": 1 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 9, + "start_line": 133 + }, + "While trying to update the implicit return value 'range_check_ptr' in:" + ], + "start_col": 5, + "start_line": 277 + } + }, + "3132": { + "accessible_scopes": [ + "sheet.library", + "sheet.library.Sheet", + "sheet.library.Sheet.set_cell" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 40, + "end_line": 133, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" + }, + "parent_location": [ + { + "end_col": 34, + "end_line": 136, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" + }, + "start_col": 26, + "start_line": 136 + }, + "While expanding the reference 'token_id' in:" + ], + "start_col": 32, + "start_line": 133 + } + }, + "3133": { + "accessible_scopes": [ + "sheet.library", + "sheet.library.Sheet", + "sheet.library.Sheet.set_cell" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 20, + "end_line": 121, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" + }, + "parent_location": [ + { + "end_col": 41, + "end_line": 136, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" + }, + "start_col": 36, + "start_line": 136 + }, + "While expanding the reference 'value' in:" + ], + "start_col": 9, + "start_line": 121 + } + }, + "3134": { + "accessible_scopes": [ + "sheet.library", + "sheet.library.Sheet", + "sheet.library.Sheet.set_cell" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 31, + "end_line": 120, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" + }, + "parent_location": [ + { + "end_col": 59, + "end_line": 136, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" + }, + "start_col": 43, + "start_line": 136 + }, + "While expanding the reference 'contract_address' in:" + ], + "start_col": 9, + "start_line": 120 + } + }, + "3135": { + "accessible_scopes": [ + "sheet.library", + "sheet.library.Sheet", + "sheet.library.Sheet.set_cell" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 60, + "end_line": 136, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" + }, + "start_col": 9, + "start_line": 136 + } + }, + "3137": { + "accessible_scopes": [ + "sheet.library", + "sheet.library.Sheet", + "sheet.library.Sheet.set_cell" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 29, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/event/CellUpdated/a7a8ae41be29ac9f4f6c3b7837c448d787ca051dd1ade98f409e54d33d112504.cairo" + }, + "parent_location": [ + { + "end_col": 17, + "end_line": 25, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" + }, + "parent_location": [ + { + "end_col": 60, + "end_line": 136, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" + }, + "parent_location": [ + { + "end_col": 37, + "end_line": 118, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" + }, + "parent_location": [ + { + "end_col": 19, + "end_line": 137, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" + }, + "start_col": 9, + "start_line": 137 + }, + "While trying to retrieve the implicit argument 'syscall_ptr' in:" + ], + "start_col": 19, + "start_line": 118 + }, + "While expanding the reference 'syscall_ptr' in:" + ], + "start_col": 9, + "start_line": 136 + }, + "While trying to update the implicit return value 'syscall_ptr' in:" + ], + "start_col": 6, + "start_line": 25 + }, + "While handling event:" + ], + "start_col": 11, + "start_line": 1 + } + }, + "3138": { + "accessible_scopes": [ + "sheet.library", + "sheet.library.Sheet", + "sheet.library.Sheet.set_cell" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 31, + "end_line": 276, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" + }, + "parent_location": [ + { + "end_col": 10, + "end_line": 135, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" + }, + "parent_location": [ + { + "end_col": 65, + "end_line": 118, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" + }, + "parent_location": [ + { + "end_col": 19, + "end_line": 137, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" + }, + "start_col": 9, + "start_line": 137 + }, + "While trying to retrieve the implicit argument 'pedersen_ptr' in:" + ], + "start_col": 39, + "start_line": 118 + }, + "While expanding the reference 'pedersen_ptr' in:" + ], + "start_col": 9, + "start_line": 133 + }, + "While trying to update the implicit return value 'pedersen_ptr' in:" + ], + "start_col": 5, + "start_line": 276 + } + }, + "3139": { + "accessible_scopes": [ + "sheet.library", + "sheet.library.Sheet", + "sheet.library.Sheet.set_cell" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 46, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/event/CellUpdated/a7a8ae41be29ac9f4f6c3b7837c448d787ca051dd1ade98f409e54d33d112504.cairo" + }, + "parent_location": [ + { + "end_col": 17, + "end_line": 25, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" + }, + "parent_location": [ + { + "end_col": 60, + "end_line": 136, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" + }, + "parent_location": [ + { + "end_col": 82, + "end_line": 118, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" + }, + "parent_location": [ + { + "end_col": 19, + "end_line": 137, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" + }, + "start_col": 9, + "start_line": 137 + }, + "While trying to retrieve the implicit argument 'range_check_ptr' in:" + ], + "start_col": 67, + "start_line": 118 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 9, + "start_line": 136 + }, + "While trying to update the implicit return value 'range_check_ptr' in:" + ], + "start_col": 6, + "start_line": 25 + }, + "While handling event:" + ], + "start_col": 31, + "start_line": 1 + } + }, + "3140": { + "accessible_scopes": [ + "sheet.library", + "sheet.library.Sheet", + "sheet.library.Sheet.set_cell" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 19, + "end_line": 137, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" + }, + "start_col": 9, + "start_line": 137 + } + }, + "3141": { + "accessible_scopes": [ + "sheet.library", + "sheet.library.Sheet", + "sheet.library.Sheet.get_cell" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 22, + "end_line": 143, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" + }, + "start_col": 9, + "start_line": 143 + } + }, + "3143": { + "accessible_scopes": [ + "sheet.library", + "sheet.library.Sheet", + "sheet.library.Sheet.get_cell" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 37, + "end_line": 140, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" + }, + "parent_location": [ + { + "end_col": 36, + "end_line": 311, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "parent_location": [ + { + "end_col": 50, + "end_line": 145, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" + }, + "start_col": 22, + "start_line": 145 + }, + "While trying to retrieve the implicit argument 'syscall_ptr' in:" + ], + "start_col": 18, + "start_line": 311 + }, + "While expanding the reference 'syscall_ptr' in:" + ], + "start_col": 19, + "start_line": 140 + } + }, + "3144": { + "accessible_scopes": [ + "sheet.library", + "sheet.library.Sheet", + "sheet.library.Sheet.get_cell" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 65, + "end_line": 140, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" + }, + "parent_location": [ + { + "end_col": 64, + "end_line": 311, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "parent_location": [ + { + "end_col": 50, + "end_line": 145, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" + }, + "start_col": 22, + "start_line": 145 + }, + "While trying to retrieve the implicit argument 'pedersen_ptr' in:" + ], + "start_col": 38, + "start_line": 311 + }, + "While expanding the reference 'pedersen_ptr' in:" + ], + "start_col": 39, + "start_line": 140 + } + }, + "3145": { + "accessible_scopes": [ + "sheet.library", + "sheet.library.Sheet", + "sheet.library.Sheet.get_cell" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 82, + "end_line": 140, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" + }, + "parent_location": [ + { + "end_col": 81, + "end_line": 311, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "parent_location": [ + { + "end_col": 50, + "end_line": 145, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" + }, + "start_col": 22, + "start_line": 145 + }, + "While trying to retrieve the implicit argument 'range_check_ptr' in:" + ], + "start_col": 66, + "start_line": 311 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 67, + "start_line": 140 + } + }, + "3146": { + "accessible_scopes": [ + "sheet.library", + "sheet.library.Sheet", + "sheet.library.Sheet.get_cell" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 23, + "end_line": 141, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" + }, + "parent_location": [ + { + "end_col": 44, + "end_line": 144, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" + }, + "parent_location": [ + { + "end_col": 49, + "end_line": 145, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" + }, + "start_col": 37, + "start_line": 145 + }, + "While expanding the reference 'token_id_256' in:" + ], + "start_col": 36, + "start_line": 144 + }, + "While expanding the reference 'token_id' in:" + ], + "start_col": 9, + "start_line": 141 + } + }, + "3147": { + "accessible_scopes": [ + "sheet.library", + "sheet.library.Sheet", + "sheet.library.Sheet.get_cell" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 47, + "end_line": 144, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" + }, + "parent_location": [ + { + "end_col": 49, + "end_line": 145, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" + }, + "start_col": 37, + "start_line": 145 + }, + "While expanding the reference 'token_id_256' in:" + ], + "start_col": 46, + "start_line": 144 + } + }, + "3149": { + "accessible_scopes": [ + "sheet.library", + "sheet.library.Sheet", + "sheet.library.Sheet.get_cell" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 50, + "end_line": 145, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" + }, + "start_col": 22, + "start_line": 145 + } + }, + "3151": { + "accessible_scopes": [ + "sheet.library", + "sheet.library.Sheet", + "sheet.library.Sheet.get_cell" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 11, + "end_line": 146, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" + }, + "start_col": 9, + "start_line": 146 + } + }, + "3153": { + "accessible_scopes": [ + "sheet.library", + "sheet.library.Sheet", + "sheet.library.Sheet.get_cell" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 42, + "end_line": 147, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" + }, + "start_col": 35, + "start_line": 147 + } + }, + "3155": { + "accessible_scopes": [ + "sheet.library", + "sheet.library.Sheet", + "sheet.library.Sheet.get_cell" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 36, + "end_line": 311, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "parent_location": [ + { + "end_col": 50, + "end_line": 145, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" + }, + "parent_location": [ + { + "end_col": 37, + "end_line": 140, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" + }, + "parent_location": [ + { + "end_col": 47, + "end_line": 148, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" + }, + "start_col": 13, + "start_line": 148 + }, + "While trying to retrieve the implicit argument 'syscall_ptr' in:" + ], + "start_col": 19, + "start_line": 140 + }, + "While expanding the reference 'syscall_ptr' in:" + ], + "start_col": 22, + "start_line": 145 + }, + "While trying to update the implicit return value 'syscall_ptr' in:" + ], + "start_col": 18, + "start_line": 311 + } + }, + "3156": { + "accessible_scopes": [ + "sheet.library", + "sheet.library.Sheet", + "sheet.library.Sheet.get_cell" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 64, + "end_line": 311, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "parent_location": [ + { + "end_col": 50, + "end_line": 145, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" + }, + "parent_location": [ + { + "end_col": 65, + "end_line": 140, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" + }, + "parent_location": [ + { + "end_col": 47, + "end_line": 148, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" + }, + "start_col": 13, + "start_line": 148 + }, + "While trying to retrieve the implicit argument 'pedersen_ptr' in:" + ], + "start_col": 39, + "start_line": 140 + }, + "While expanding the reference 'pedersen_ptr' in:" + ], + "start_col": 22, + "start_line": 145 + }, + "While trying to update the implicit return value 'pedersen_ptr' in:" + ], + "start_col": 38, + "start_line": 311 + } + }, + "3157": { + "accessible_scopes": [ + "sheet.library", + "sheet.library.Sheet", + "sheet.library.Sheet.get_cell" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 81, + "end_line": 311, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "parent_location": [ + { + "end_col": 50, + "end_line": 145, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" + }, + "parent_location": [ + { + "end_col": 82, + "end_line": 140, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" + }, + "parent_location": [ + { + "end_col": 47, + "end_line": 148, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" + }, + "start_col": 13, + "start_line": 148 + }, + "While trying to retrieve the implicit argument 'range_check_ptr' in:" + ], + "start_col": 67, + "start_line": 140 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 22, + "start_line": 145 + }, + "While trying to update the implicit return value 'range_check_ptr' in:" + ], + "start_col": 66, + "start_line": 311 + } + }, + "3158": { + "accessible_scopes": [ + "sheet.library", + "sheet.library.Sheet", + "sheet.library.Sheet.get_cell" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 29, + "end_line": 148, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" + }, + "start_col": 21, + "start_line": 148 + } + }, + "3160": { + "accessible_scopes": [ + "sheet.library", + "sheet.library.Sheet", + "sheet.library.Sheet.get_cell" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 32, + "end_line": 148, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" + }, + "start_col": 31, + "start_line": 148 + } + }, + "3162": { + "accessible_scopes": [ + "sheet.library", + "sheet.library.Sheet", + "sheet.library.Sheet.get_cell" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 35, + "end_line": 148, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" + }, + "start_col": 34, + "start_line": 148 + } + }, + "3164": { + "accessible_scopes": [ + "sheet.library", + "sheet.library.Sheet", + "sheet.library.Sheet.get_cell" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 32, + "end_line": 147, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" + }, + "parent_location": [ + { + "end_col": 45, + "end_line": 148, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" + }, + "start_col": 37, + "start_line": 148 + }, + "While expanding the reference 'calldata' in:" + ], + "start_col": 17, + "start_line": 147 + } + }, + "3165": { + "accessible_scopes": [ + "sheet.library", + "sheet.library.Sheet", + "sheet.library.Sheet.get_cell" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 47, + "end_line": 148, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" + }, + "start_col": 13, + "start_line": 148 + } + }, + "3166": { + "accessible_scopes": [ + "sheet.library", + "sheet.library.Sheet", + "sheet.library.Sheet.get_cell" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 36, + "end_line": 311, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "parent_location": [ + { + "end_col": 50, + "end_line": 145, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" + }, + "parent_location": [ + { + "end_col": 33, + "end_line": 13, + "input_file": { + "filename": "autogen/starknet/storage_var/Sheet_cell/decl.cairo" + }, + "parent_location": [ + { + "end_col": 52, + "end_line": 150, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" + }, + "start_col": 27, + "start_line": 150 + }, + "While trying to retrieve the implicit argument 'syscall_ptr' in:" + ], + "start_col": 15, + "start_line": 13 + }, + "While expanding the reference 'syscall_ptr' in:" + ], + "start_col": 22, + "start_line": 145 + }, + "While trying to update the implicit return value 'syscall_ptr' in:" + ], + "start_col": 18, + "start_line": 311 + } + }, + "3167": { + "accessible_scopes": [ + "sheet.library", + "sheet.library.Sheet", + "sheet.library.Sheet.get_cell" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 64, + "end_line": 311, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "parent_location": [ + { + "end_col": 50, + "end_line": 145, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" + }, + "parent_location": [ + { + "end_col": 61, + "end_line": 13, + "input_file": { + "filename": "autogen/starknet/storage_var/Sheet_cell/decl.cairo" + }, + "parent_location": [ + { + "end_col": 52, + "end_line": 150, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" + }, + "start_col": 27, + "start_line": 150 + }, + "While trying to retrieve the implicit argument 'pedersen_ptr' in:" + ], + "start_col": 35, + "start_line": 13 + }, + "While expanding the reference 'pedersen_ptr' in:" + ], + "start_col": 22, + "start_line": 145 + }, + "While trying to update the implicit return value 'pedersen_ptr' in:" + ], + "start_col": 38, + "start_line": 311 + } + }, + "3168": { + "accessible_scopes": [ + "sheet.library", + "sheet.library.Sheet", + "sheet.library.Sheet.get_cell" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 81, + "end_line": 311, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "parent_location": [ + { + "end_col": 50, + "end_line": 145, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" + }, + "parent_location": [ + { + "end_col": 78, + "end_line": 13, + "input_file": { + "filename": "autogen/starknet/storage_var/Sheet_cell/decl.cairo" + }, + "parent_location": [ + { + "end_col": 52, + "end_line": 150, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" + }, + "start_col": 27, + "start_line": 150 + }, + "While trying to retrieve the implicit argument 'range_check_ptr' in:" + ], + "start_col": 63, + "start_line": 13 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 22, + "start_line": 145 + }, + "While trying to update the implicit return value 'range_check_ptr' in:" + ], + "start_col": 66, + "start_line": 311 + } + }, + "3169": { + "accessible_scopes": [ + "sheet.library", + "sheet.library.Sheet", + "sheet.library.Sheet.get_cell" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 23, + "end_line": 141, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" + }, + "parent_location": [ + { + "end_col": 51, + "end_line": 150, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" + }, + "start_col": 43, + "start_line": 150 + }, + "While expanding the reference 'token_id' in:" + ], + "start_col": 9, + "start_line": 141 + } + }, + "3170": { + "accessible_scopes": [ + "sheet.library", + "sheet.library.Sheet", + "sheet.library.Sheet.get_cell" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 52, + "end_line": 150, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" + }, + "start_col": 27, + "start_line": 150 + } + }, + "3172": { + "accessible_scopes": [ + "sheet.library", + "sheet.library.Sheet", + "sheet.library.Sheet.get_cell" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 23, + "end_line": 150, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" + }, + "parent_location": [ + { + "end_col": 23, + "end_line": 150, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" + }, + "start_col": 14, + "start_line": 150 + }, + "While auto generating local variable for 'cell_data'." + ], + "start_col": 14, + "start_line": 150 + } + }, + "3173": { + "accessible_scopes": [ + "sheet.library", + "sheet.library.Sheet", + "sheet.library.Sheet.get_cell" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 23, + "end_line": 150, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" + }, + "parent_location": [ + { + "end_col": 23, + "end_line": 150, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" + }, + "start_col": 14, + "start_line": 150 + }, + "While auto generating local variable for 'cell_data'." + ], + "start_col": 14, + "start_line": 150 + } + }, + "3174": { + "accessible_scopes": [ + "sheet.library", + "sheet.library.Sheet", + "sheet.library.Sheet.get_cell" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 23, + "end_line": 150, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" + }, + "parent_location": [ + { + "end_col": 23, + "end_line": 150, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" + }, + "start_col": 14, + "start_line": 150 + }, + "While auto generating local variable for 'cell_data'." + ], + "start_col": 14, + "start_line": 150 + } + }, + "3175": { + "accessible_scopes": [ + "sheet.library", + "sheet.library.Sheet", + "sheet.library.Sheet.get_cell" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 46, + "end_line": 153, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" + }, + "start_col": 39, + "start_line": 153 + } + }, + "3177": { + "accessible_scopes": [ + "sheet.library", + "sheet.library.Sheet", + "sheet.library.Sheet.get_cell" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 35, + "end_line": 153, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" + }, + "start_col": 14, + "start_line": 153 + } + }, + "3178": { + "accessible_scopes": [ + "sheet.library", + "sheet.library.Sheet", + "sheet.library.Sheet.get_cell" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 33, + "end_line": 13, + "input_file": { + "filename": "autogen/starknet/storage_var/Sheet_cell/decl.cairo" + }, + "parent_location": [ + { + "end_col": 52, + "end_line": 150, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" + }, + "parent_location": [ + { + "end_col": 23, + "end_line": 293, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" + }, + "parent_location": [ + { + "end_col": 29, + "end_line": 155, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" + }, + "start_col": 13, + "start_line": 155 + }, + "While trying to retrieve the implicit argument 'syscall_ptr' in:" + ], + "start_col": 5, + "start_line": 293 + }, + "While expanding the reference 'syscall_ptr' in:" + ], + "start_col": 27, + "start_line": 150 + }, + "While trying to update the implicit return value 'syscall_ptr' in:" + ], + "start_col": 15, + "start_line": 13 + } + }, + "3179": { + "accessible_scopes": [ + "sheet.library", + "sheet.library.Sheet", + "sheet.library.Sheet.get_cell" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 61, + "end_line": 13, + "input_file": { + "filename": "autogen/starknet/storage_var/Sheet_cell/decl.cairo" + }, + "parent_location": [ + { + "end_col": 52, + "end_line": 150, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" + }, + "parent_location": [ + { + "end_col": 31, + "end_line": 294, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" + }, + "parent_location": [ + { + "end_col": 29, + "end_line": 155, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" + }, + "start_col": 13, + "start_line": 155 + }, + "While trying to retrieve the implicit argument 'pedersen_ptr' in:" + ], + "start_col": 5, + "start_line": 294 + }, + "While expanding the reference 'pedersen_ptr' in:" + ], + "start_col": 27, + "start_line": 150 + }, + "While trying to update the implicit return value 'pedersen_ptr' in:" + ], + "start_col": 35, + "start_line": 13 + } + }, + "3180": { + "accessible_scopes": [ + "sheet.library", + "sheet.library.Sheet", + "sheet.library.Sheet.get_cell" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 78, + "end_line": 13, + "input_file": { + "filename": "autogen/starknet/storage_var/Sheet_cell/decl.cairo" + }, + "parent_location": [ + { + "end_col": 52, + "end_line": 150, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" + }, + "parent_location": [ + { + "end_col": 20, + "end_line": 295, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" + }, + "parent_location": [ + { + "end_col": 29, + "end_line": 155, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" + }, + "start_col": 13, + "start_line": 155 + }, + "While trying to retrieve the implicit argument 'range_check_ptr' in:" + ], + "start_col": 5, + "start_line": 295 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 27, + "start_line": 150 + }, + "While trying to update the implicit return value 'range_check_ptr' in:" + ], + "start_col": 63, + "start_line": 13 + } + }, + "3181": { + "accessible_scopes": [ + "sheet.library", + "sheet.library.Sheet", + "sheet.library.Sheet.get_cell" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 23, + "end_line": 141, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" + }, + "parent_location": [ + { + "end_col": 19, + "end_line": 296, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" + }, + "parent_location": [ + { + "end_col": 29, + "end_line": 155, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" + }, + "start_col": 13, + "start_line": 155 + }, + "While trying to retrieve the implicit argument 'token_id' in:" + ], + "start_col": 5, + "start_line": 296 + }, + "While expanding the reference 'token_id' in:" + ], + "start_col": 9, + "start_line": 141 + } + }, + "3182": { + "accessible_scopes": [ + "sheet.library", + "sheet.library.Sheet", + "sheet.library.Sheet.get_cell" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 50, + "end_line": 151, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" + }, + "parent_location": [ + { + "end_col": 23, + "end_line": 297, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" + }, + "parent_location": [ + { + "end_col": 29, + "end_line": 155, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" + }, + "start_col": 13, + "start_line": 155 + }, + "While trying to retrieve the implicit argument 'calldata_len' in:" + ], + "start_col": 5, + "start_line": 297 + }, + "While expanding the reference 'calldata_len' in:" + ], + "start_col": 28, + "start_line": 151 + } + }, + "3183": { + "accessible_scopes": [ + "sheet.library", + "sheet.library.Sheet", + "sheet.library.Sheet.get_cell" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 28, + "end_line": 153, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" + }, + "parent_location": [ + { + "end_col": 20, + "end_line": 298, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" + }, + "parent_location": [ + { + "end_col": 29, + "end_line": 155, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" + }, + "start_col": 13, + "start_line": 155 + }, + "While trying to retrieve the implicit argument 'calldata' in:" + ], + "start_col": 5, + "start_line": 298 + }, + "While expanding the reference 'calldata' in:" + ], + "start_col": 20, + "start_line": 153 + } + }, + "3184": { + "accessible_scopes": [ + "sheet.library", + "sheet.library.Sheet", + "sheet.library.Sheet.get_cell" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 28, + "end_line": 155, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" + }, + "start_col": 27, + "start_line": 155 + } + }, + "3186": { + "accessible_scopes": [ + "sheet.library", + "sheet.library.Sheet", + "sheet.library.Sheet.get_cell" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 29, + "end_line": 155, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" + }, + "start_col": 13, + "start_line": 155 + } + }, + "3188": { + "accessible_scopes": [ + "sheet.library", + "sheet.library.Sheet", + "sheet.library.Sheet.get_cell" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 23, + "end_line": 293, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" + }, + "parent_location": [ + { + "end_col": 29, + "end_line": 155, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" + }, + "parent_location": [ + { + "end_col": 37, + "end_line": 140, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" + }, + "parent_location": [ + { + "end_col": 86, + "end_line": 157, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" + }, + "start_col": 9, + "start_line": 157 + }, + "While trying to retrieve the implicit argument 'syscall_ptr' in:" + ], + "start_col": 19, + "start_line": 140 + }, + "While expanding the reference 'syscall_ptr' in:" + ], + "start_col": 13, + "start_line": 155 + }, + "While trying to update the implicit return value 'syscall_ptr' in:" + ], + "start_col": 5, + "start_line": 293 + } + }, + "3189": { + "accessible_scopes": [ + "sheet.library", + "sheet.library.Sheet", + "sheet.library.Sheet.get_cell" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 31, + "end_line": 294, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" + }, + "parent_location": [ + { + "end_col": 29, + "end_line": 155, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" + }, + "parent_location": [ + { + "end_col": 65, + "end_line": 140, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" + }, + "parent_location": [ + { + "end_col": 86, + "end_line": 157, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" + }, + "start_col": 9, + "start_line": 157 + }, + "While trying to retrieve the implicit argument 'pedersen_ptr' in:" + ], + "start_col": 39, + "start_line": 140 + }, + "While expanding the reference 'pedersen_ptr' in:" + ], + "start_col": 13, + "start_line": 155 + }, + "While trying to update the implicit return value 'pedersen_ptr' in:" + ], + "start_col": 5, + "start_line": 294 + } + }, + "3190": { + "accessible_scopes": [ + "sheet.library", + "sheet.library.Sheet", + "sheet.library.Sheet.get_cell" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 20, + "end_line": 295, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" + }, + "parent_location": [ + { + "end_col": 29, + "end_line": 155, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" + }, + "parent_location": [ + { + "end_col": 82, + "end_line": 140, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" + }, + "parent_location": [ + { + "end_col": 86, + "end_line": 157, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" + }, + "start_col": 9, + "start_line": 157 + }, + "While trying to retrieve the implicit argument 'range_check_ptr' in:" + ], + "start_col": 67, + "start_line": 140 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 13, + "start_line": 155 + }, + "While trying to update the implicit return value 'range_check_ptr' in:" + ], + "start_col": 5, + "start_line": 295 + } + }, + "3191": { + "accessible_scopes": [ + "sheet.library", + "sheet.library.Sheet", + "sheet.library.Sheet.get_cell" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 43, + "end_line": 157, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" + }, + "start_col": 17, + "start_line": 157 + } + }, + "3192": { + "accessible_scopes": [ + "sheet.library", + "sheet.library.Sheet", + "sheet.library.Sheet.get_cell" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 60, + "end_line": 157, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" + }, + "start_col": 45, + "start_line": 157 + } + }, + "3193": { + "accessible_scopes": [ + "sheet.library", + "sheet.library.Sheet", + "sheet.library.Sheet.get_cell" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 23, + "end_line": 297, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" + }, + "parent_location": [ + { + "end_col": 29, + "end_line": 155, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" + }, + "parent_location": [ + { + "end_col": 74, + "end_line": 157, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" + }, + "start_col": 62, + "start_line": 157 + }, + "While expanding the reference 'calldata_len' in:" + ], + "start_col": 13, + "start_line": 155 + }, + "While trying to update the implicit return value 'calldata_len' in:" + ], + "start_col": 5, + "start_line": 297 + } + }, + "3194": { + "accessible_scopes": [ + "sheet.library", + "sheet.library.Sheet", + "sheet.library.Sheet.get_cell" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 20, + "end_line": 298, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" + }, + "parent_location": [ + { + "end_col": 29, + "end_line": 155, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" + }, + "parent_location": [ + { + "end_col": 84, + "end_line": 157, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" + }, + "start_col": 76, + "start_line": 157 + }, + "While expanding the reference 'calldata' in:" + ], + "start_col": 13, + "start_line": 155 + }, + "While trying to update the implicit return value 'calldata' in:" + ], + "start_col": 5, + "start_line": 298 + } + }, + "3195": { + "accessible_scopes": [ + "sheet.library", + "sheet.library.Sheet", + "sheet.library.Sheet.get_cell" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 86, + "end_line": 157, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" + }, + "start_col": 9, + "start_line": 157 + } + }, + "3196": { + "accessible_scopes": [ + "sheet.library", + "sheet.library.Sheet", + "sheet.library.Sheet.render_cell" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 27, + "end_line": 161, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" + }, + "parent_location": [ + { + "end_col": 23, + "end_line": 311, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" + }, + "parent_location": [ + { + "end_col": 69, + "end_line": 164, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" + }, + "start_col": 23, + "start_line": 164 + }, + "While trying to retrieve the implicit argument 'syscall_ptr' in:" + ], + "start_col": 5, + "start_line": 311 + }, + "While expanding the reference 'syscall_ptr' in:" + ], + "start_col": 9, + "start_line": 161 + } + }, + "3197": { + "accessible_scopes": [ + "sheet.library", + "sheet.library.Sheet", + "sheet.library.Sheet.render_cell" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 55, + "end_line": 161, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" + }, + "parent_location": [ + { + "end_col": 31, + "end_line": 312, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" + }, + "parent_location": [ + { + "end_col": 69, + "end_line": 164, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" + }, + "start_col": 23, + "start_line": 164 + }, + "While trying to retrieve the implicit argument 'pedersen_ptr' in:" + ], + "start_col": 5, + "start_line": 312 + }, + "While expanding the reference 'pedersen_ptr' in:" + ], + "start_col": 29, + "start_line": 161 + } + }, + "3198": { + "accessible_scopes": [ + "sheet.library", + "sheet.library.Sheet", + "sheet.library.Sheet.render_cell" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 72, + "end_line": 161, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" + }, + "parent_location": [ + { + "end_col": 20, + "end_line": 313, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" + }, + "parent_location": [ + { + "end_col": 69, + "end_line": 164, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" + }, + "start_col": 23, + "start_line": 164 + }, + "While trying to retrieve the implicit argument 'range_check_ptr' in:" + ], + "start_col": 5, + "start_line": 313 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 57, + "start_line": 161 + } + }, + "3199": { + "accessible_scopes": [ + "sheet.library", + "sheet.library.Sheet", + "sheet.library.Sheet.render_cell" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 101, + "end_line": 161, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" + }, + "parent_location": [ + { + "end_col": 32, + "end_line": 314, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" + }, + "parent_location": [ + { + "end_col": 69, + "end_line": 164, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" + }, + "start_col": 23, + "start_line": 164 + }, + "While trying to retrieve the implicit argument 'rendered_cells' in:" + ], + "start_col": 5, + "start_line": 314 + }, + "While expanding the reference 'rendered_cells' in:" + ], + "start_col": 74, + "start_line": 161 + } + }, + "3200": { + "accessible_scopes": [ + "sheet.library", + "sheet.library.Sheet", + "sheet.library.Sheet.render_cell" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 24, + "end_line": 163, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" + }, + "parent_location": [ + { + "end_col": 58, + "end_line": 164, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" + }, + "start_col": 54, + "start_line": 164 + }, + "While expanding the reference 'true' in:" + ], + "start_col": 20, + "start_line": 163 + } + }, + "3202": { + "accessible_scopes": [ + "sheet.library", + "sheet.library.Sheet", + "sheet.library.Sheet.render_cell" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 21, + "end_line": 162, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" + }, + "parent_location": [ + { + "end_col": 68, + "end_line": 164, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" + }, + "start_col": 60, + "start_line": 164 + }, + "While expanding the reference 'token_id' in:" + ], + "start_col": 7, + "start_line": 162 + } + }, + "3203": { + "accessible_scopes": [ + "sheet.library", + "sheet.library.Sheet", + "sheet.library.Sheet.render_cell" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 69, + "end_line": 164, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" + }, + "start_col": 23, + "start_line": 164 + } + }, + "3205": { + "accessible_scopes": [ + "sheet.library", + "sheet.library.Sheet", + "sheet.library.Sheet.render_cell" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 23, + "end_line": 311, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" + }, + "parent_location": [ + { + "end_col": 69, + "end_line": 164, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" + }, + "parent_location": [ + { + "end_col": 33, + "end_line": 13, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721_owners/decl.cairo" + }, + "parent_location": [ + { + "end_col": 55, + "end_line": 166, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" + }, + "start_col": 23, + "start_line": 166 + }, + "While trying to retrieve the implicit argument 'syscall_ptr' in:" + ], + "start_col": 15, + "start_line": 13 + }, + "While expanding the reference 'syscall_ptr' in:" + ], + "start_col": 23, + "start_line": 164 + }, + "While trying to update the implicit return value 'syscall_ptr' in:" + ], + "start_col": 5, + "start_line": 311 + } + }, + "3206": { + "accessible_scopes": [ + "sheet.library", + "sheet.library.Sheet", + "sheet.library.Sheet.render_cell" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 31, + "end_line": 312, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" + }, + "parent_location": [ + { + "end_col": 69, + "end_line": 164, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" + }, + "parent_location": [ + { + "end_col": 61, + "end_line": 13, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721_owners/decl.cairo" + }, + "parent_location": [ + { + "end_col": 55, + "end_line": 166, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" + }, + "start_col": 23, + "start_line": 166 + }, + "While trying to retrieve the implicit argument 'pedersen_ptr' in:" + ], + "start_col": 35, + "start_line": 13 + }, + "While expanding the reference 'pedersen_ptr' in:" + ], + "start_col": 23, + "start_line": 164 + }, + "While trying to update the implicit return value 'pedersen_ptr' in:" + ], + "start_col": 5, + "start_line": 312 + } + }, + "3207": { + "accessible_scopes": [ + "sheet.library", + "sheet.library.Sheet", + "sheet.library.Sheet.render_cell" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 20, + "end_line": 313, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" + }, + "parent_location": [ + { + "end_col": 69, + "end_line": 164, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" + }, + "parent_location": [ + { + "end_col": 78, + "end_line": 13, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721_owners/decl.cairo" + }, + "parent_location": [ + { + "end_col": 55, + "end_line": 166, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" + }, + "start_col": 23, + "start_line": 166 + }, + "While trying to retrieve the implicit argument 'range_check_ptr' in:" + ], + "start_col": 63, + "start_line": 13 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 23, + "start_line": 164 + }, + "While trying to update the implicit return value 'range_check_ptr' in:" + ], + "start_col": 5, + "start_line": 313 + } + }, + "3208": { + "accessible_scopes": [ + "sheet.library", + "sheet.library.Sheet", + "sheet.library.Sheet.render_cell" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 21, + "end_line": 162, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" + }, + "parent_location": [ + { + "end_col": 44, + "end_line": 165, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" + }, + "parent_location": [ + { + "end_col": 54, + "end_line": 166, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" + }, + "start_col": 42, + "start_line": 166 + }, + "While expanding the reference 'token_id_256' in:" + ], + "start_col": 36, + "start_line": 165 + }, + "While expanding the reference 'token_id' in:" + ], + "start_col": 7, + "start_line": 162 + } + }, + "3209": { + "accessible_scopes": [ + "sheet.library", + "sheet.library.Sheet", + "sheet.library.Sheet.render_cell" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 47, + "end_line": 165, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" + }, + "parent_location": [ + { + "end_col": 54, + "end_line": 166, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" + }, + "start_col": 42, + "start_line": 166 + }, + "While expanding the reference 'token_id_256' in:" + ], + "start_col": 46, + "start_line": 165 + } + }, + "3211": { + "accessible_scopes": [ + "sheet.library", + "sheet.library.Sheet", + "sheet.library.Sheet.render_cell" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 55, + "end_line": 166, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" + }, + "start_col": 23, + "start_line": 166 + } + }, + "3213": { + "accessible_scopes": [ + "sheet.library", + "sheet.library.Sheet", + "sheet.library.Sheet.render_cell" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 33, + "end_line": 13, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721_owners/decl.cairo" + }, + "parent_location": [ + { + "end_col": 55, + "end_line": 166, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" + }, + "parent_location": [ + { + "end_col": 27, + "end_line": 161, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" + }, + "parent_location": [ + { + "end_col": 71, + "end_line": 167, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" + }, + "start_col": 9, + "start_line": 167 + }, + "While trying to retrieve the implicit argument 'syscall_ptr' in:" + ], + "start_col": 9, + "start_line": 161 + }, + "While expanding the reference 'syscall_ptr' in:" + ], + "start_col": 23, + "start_line": 166 + }, + "While trying to update the implicit return value 'syscall_ptr' in:" + ], + "start_col": 15, + "start_line": 13 + } + }, + "3214": { + "accessible_scopes": [ + "sheet.library", + "sheet.library.Sheet", + "sheet.library.Sheet.render_cell" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 61, + "end_line": 13, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721_owners/decl.cairo" + }, + "parent_location": [ + { + "end_col": 55, + "end_line": 166, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" + }, + "parent_location": [ + { + "end_col": 55, + "end_line": 161, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" + }, + "parent_location": [ + { + "end_col": 71, + "end_line": 167, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" + }, + "start_col": 9, + "start_line": 167 + }, + "While trying to retrieve the implicit argument 'pedersen_ptr' in:" + ], + "start_col": 29, + "start_line": 161 + }, + "While expanding the reference 'pedersen_ptr' in:" + ], + "start_col": 23, + "start_line": 166 + }, + "While trying to update the implicit return value 'pedersen_ptr' in:" + ], + "start_col": 35, + "start_line": 13 + } + }, + "3215": { + "accessible_scopes": [ + "sheet.library", + "sheet.library.Sheet", + "sheet.library.Sheet.render_cell" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 78, + "end_line": 13, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC721_owners/decl.cairo" + }, + "parent_location": [ + { + "end_col": 55, + "end_line": 166, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" + }, + "parent_location": [ + { + "end_col": 72, + "end_line": 161, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" + }, + "parent_location": [ + { + "end_col": 71, + "end_line": 167, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" + }, + "start_col": 9, + "start_line": 167 + }, + "While trying to retrieve the implicit argument 'range_check_ptr' in:" + ], + "start_col": 57, + "start_line": 161 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 23, + "start_line": 166 + }, + "While trying to update the implicit return value 'range_check_ptr' in:" + ], + "start_col": 63, + "start_line": 13 + } + }, + "3216": { + "accessible_scopes": [ + "sheet.library", + "sheet.library.Sheet", + "sheet.library.Sheet.render_cell" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 32, + "end_line": 314, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" + }, + "parent_location": [ + { + "end_col": 69, + "end_line": 164, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" + }, + "parent_location": [ + { + "end_col": 101, + "end_line": 161, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" + }, + "parent_location": [ + { + "end_col": 71, + "end_line": 167, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" + }, + "start_col": 9, + "start_line": 167 + }, + "While trying to retrieve the implicit argument 'rendered_cells' in:" + ], + "start_col": 74, + "start_line": 161 + }, + "While expanding the reference 'rendered_cells' in:" + ], + "start_col": 23, + "start_line": 164 + }, + "While trying to update the implicit return value 'rendered_cells' in:" + ], + "start_col": 5, + "start_line": 314 + } + }, + "3217": { + "accessible_scopes": [ + "sheet.library", + "sheet.library.Sheet", + "sheet.library.Sheet.render_cell" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 21, + "end_line": 162, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" + }, + "parent_location": [ + { + "end_col": 41, + "end_line": 167, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" + }, + "start_col": 33, + "start_line": 167 + }, + "While expanding the reference 'token_id' in:" + ], + "start_col": 7, + "start_line": 162 + } + }, + "3218": { + "accessible_scopes": [ + "sheet.library", + "sheet.library.Sheet", + "sheet.library.Sheet.render_cell" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 19, + "end_line": 166, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" + }, + "parent_location": [ + { + "end_col": 54, + "end_line": 167, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" + }, + "start_col": 49, + "start_line": 167 + }, + "While expanding the reference 'owner' in:" + ], + "start_col": 14, + "start_line": 166 + } + }, + "3219": { + "accessible_scopes": [ + "sheet.library", + "sheet.library.Sheet", + "sheet.library.Sheet.render_cell" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 19, + "end_line": 164, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" + }, + "parent_location": [ + { + "end_col": 67, + "end_line": 167, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" + }, + "start_col": 62, + "start_line": 167 + }, + "While expanding the reference 'value' in:" + ], + "start_col": 14, + "start_line": 164 + } + }, + "3220": { + "accessible_scopes": [ + "sheet.library", + "sheet.library.Sheet", + "sheet.library.Sheet.render_cell" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 71, + "end_line": 167, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" + }, + "start_col": 9, + "start_line": 167 + } + }, + "3221": { + "accessible_scopes": [ + "sheet.library", + "sheet.library.Sheet", + "sheet.library.Sheet.render_grid" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 22, + "end_line": 181, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" + }, + "start_col": 9, + "start_line": 181 + } + }, + "3223": { + "accessible_scopes": [ + "sheet.library", + "sheet.library.Sheet", + "sheet.library.Sheet.render_grid" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 26, + "end_line": 182, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" + }, + "start_col": 13, + "start_line": 182 + } + }, + "3224": { + "accessible_scopes": [ + "sheet.library", + "sheet.library.Sheet", + "sheet.library.Sheet.render_grid" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 11, + "end_line": 182, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" + }, + "start_col": 9, + "start_line": 182 + } + }, + "3226": { + "accessible_scopes": [ + "sheet.library", + "sheet.library.Sheet", + "sheet.library.Sheet.render_grid" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 27, + "end_line": 174, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" + }, + "parent_location": [ + { + "end_col": 27, + "end_line": 174, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" + }, + "parent_location": [ + { + "end_col": 23, + "end_line": 183, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" + }, + "start_col": 13, + "start_line": 183 + }, + "While trying to retrieve the implicit argument 'syscall_ptr' in:" + ], + "start_col": 9, + "start_line": 174 + }, + "While expanding the reference 'syscall_ptr' in:" + ], + "start_col": 9, + "start_line": 174 + } + }, + "3227": { + "accessible_scopes": [ + "sheet.library", + "sheet.library.Sheet", + "sheet.library.Sheet.render_grid" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 35, + "end_line": 175, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" + }, + "parent_location": [ + { + "end_col": 35, + "end_line": 175, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" + }, + "parent_location": [ + { + "end_col": 23, + "end_line": 183, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" + }, + "start_col": 13, + "start_line": 183 + }, + "While trying to retrieve the implicit argument 'pedersen_ptr' in:" + ], + "start_col": 9, + "start_line": 175 + }, + "While expanding the reference 'pedersen_ptr' in:" + ], + "start_col": 9, + "start_line": 175 + } + }, + "3228": { + "accessible_scopes": [ + "sheet.library", + "sheet.library.Sheet", + "sheet.library.Sheet.render_grid" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 24, + "end_line": 176, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" + }, + "parent_location": [ + { + "end_col": 24, + "end_line": 176, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" + }, + "parent_location": [ + { + "end_col": 23, + "end_line": 183, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" + }, + "start_col": 13, + "start_line": 183 + }, + "While trying to retrieve the implicit argument 'range_check_ptr' in:" + ], + "start_col": 9, + "start_line": 176 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 9, + "start_line": 176 + } + }, + "3229": { + "accessible_scopes": [ + "sheet.library", + "sheet.library.Sheet", + "sheet.library.Sheet.render_grid" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 29, + "end_line": 177, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" + }, + "parent_location": [ + { + "end_col": 29, + "end_line": 177, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" + }, + "parent_location": [ + { + "end_col": 23, + "end_line": 183, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" + }, + "start_col": 13, + "start_line": 183 + }, + "While trying to retrieve the implicit argument 'cells' in:" + ], + "start_col": 9, + "start_line": 177 + }, + "While expanding the reference 'cells' in:" + ], + "start_col": 9, + "start_line": 177 + } + }, + "3230": { + "accessible_scopes": [ + "sheet.library", + "sheet.library.Sheet", + "sheet.library.Sheet.render_grid" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 36, + "end_line": 178, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" + }, + "parent_location": [ + { + "end_col": 36, + "end_line": 178, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" + }, + "parent_location": [ + { + "end_col": 23, + "end_line": 183, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" + }, + "start_col": 13, + "start_line": 183 + }, + "While trying to retrieve the implicit argument 'rendered_cells' in:" + ], + "start_col": 9, + "start_line": 178 + }, + "While expanding the reference 'rendered_cells' in:" + ], + "start_col": 9, + "start_line": 178 + } + }, + "3231": { + "accessible_scopes": [ + "sheet.library", + "sheet.library.Sheet", + "sheet.library.Sheet.render_grid" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 19, + "end_line": 179, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" + }, + "parent_location": [ + { + "end_col": 19, + "end_line": 179, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" + }, + "parent_location": [ + { + "end_col": 23, + "end_line": 183, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" + }, + "start_col": 13, + "start_line": 183 + }, + "While trying to retrieve the implicit argument 'stop' in:" + ], + "start_col": 9, + "start_line": 179 + }, + "While expanding the reference 'stop' in:" + ], + "start_col": 9, + "start_line": 179 + } + }, + "3232": { + "accessible_scopes": [ + "sheet.library", + "sheet.library.Sheet", + "sheet.library.Sheet.render_grid" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 23, + "end_line": 183, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" + }, + "start_col": 13, + "start_line": 183 + } + }, + "3233": { + "accessible_scopes": [ + "sheet.library", + "sheet.library.Sheet", + "sheet.library.Sheet.render_grid" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 27, + "end_line": 174, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" + }, + "parent_location": [ + { + "end_col": 43, + "end_line": 59, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" + }, + "parent_location": [ + { + "end_col": 76, + "end_line": 185, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" + }, + "start_col": 26, + "start_line": 185 + }, + "While trying to retrieve the implicit argument 'syscall_ptr' in:" + ], + "start_col": 25, + "start_line": 59 + }, + "While expanding the reference 'syscall_ptr' in:" + ], + "start_col": 9, + "start_line": 174 + } + }, + "3234": { + "accessible_scopes": [ + "sheet.library", + "sheet.library.Sheet", + "sheet.library.Sheet.render_grid" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 35, + "end_line": 175, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" + }, + "parent_location": [ + { + "end_col": 71, + "end_line": 59, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" + }, + "parent_location": [ + { + "end_col": 76, + "end_line": 185, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" + }, + "start_col": 26, + "start_line": 185 + }, + "While trying to retrieve the implicit argument 'pedersen_ptr' in:" + ], + "start_col": 45, + "start_line": 59 + }, + "While expanding the reference 'pedersen_ptr' in:" + ], + "start_col": 9, + "start_line": 175 + } + }, + "3235": { + "accessible_scopes": [ + "sheet.library", + "sheet.library.Sheet", + "sheet.library.Sheet.render_grid" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 24, + "end_line": 176, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" + }, + "parent_location": [ + { + "end_col": 88, + "end_line": 59, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" + }, + "parent_location": [ + { + "end_col": 76, + "end_line": 185, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" + }, + "start_col": 26, + "start_line": 185 + }, + "While trying to retrieve the implicit argument 'range_check_ptr' in:" + ], + "start_col": 73, + "start_line": 59 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 9, + "start_line": 176 + } + }, + "3236": { + "accessible_scopes": [ + "sheet.library", + "sheet.library.Sheet", + "sheet.library.Sheet.render_grid" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 18, + "end_line": 180, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" + }, + "parent_location": [ + { + "end_col": 71, + "end_line": 185, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" + }, + "start_col": 66, + "start_line": 185 + }, + "While expanding the reference 'index' in:" + ], + "start_col": 7, + "start_line": 180 + } + }, + "3237": { + "accessible_scopes": [ + "sheet.library", + "sheet.library.Sheet", + "sheet.library.Sheet.render_grid" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 74, + "end_line": 185, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" + }, + "start_col": 73, + "start_line": 185 + } + }, + "3239": { + "accessible_scopes": [ + "sheet.library", + "sheet.library.Sheet", + "sheet.library.Sheet.render_grid" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 76, + "end_line": 185, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" + }, + "start_col": 26, + "start_line": 185 + } + }, + "3241": { + "accessible_scopes": [ + "sheet.library", + "sheet.library.Sheet", + "sheet.library.Sheet.render_grid" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 43, + "end_line": 59, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" + }, + "parent_location": [ + { + "end_col": 76, + "end_line": 185, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" + }, + "parent_location": [ + { + "end_col": 27, + "end_line": 161, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" + }, + "parent_location": [ + { + "end_col": 47, + "end_line": 186, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" + }, + "start_col": 22, + "start_line": 186 + }, + "While trying to retrieve the implicit argument 'syscall_ptr' in:" + ], + "start_col": 9, + "start_line": 161 + }, + "While expanding the reference 'syscall_ptr' in:" + ], + "start_col": 26, + "start_line": 185 + }, + "While trying to update the implicit return value 'syscall_ptr' in:" + ], + "start_col": 25, + "start_line": 59 + } + }, + "3242": { + "accessible_scopes": [ + "sheet.library", + "sheet.library.Sheet", + "sheet.library.Sheet.render_grid" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 71, + "end_line": 59, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" + }, + "parent_location": [ + { + "end_col": 76, + "end_line": 185, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" + }, + "parent_location": [ + { + "end_col": 55, + "end_line": 161, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" + }, + "parent_location": [ + { + "end_col": 47, + "end_line": 186, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" + }, + "start_col": 22, + "start_line": 186 + }, + "While trying to retrieve the implicit argument 'pedersen_ptr' in:" + ], + "start_col": 29, + "start_line": 161 + }, + "While expanding the reference 'pedersen_ptr' in:" + ], + "start_col": 26, + "start_line": 185 + }, + "While trying to update the implicit return value 'pedersen_ptr' in:" + ], + "start_col": 45, + "start_line": 59 + } + }, + "3243": { + "accessible_scopes": [ + "sheet.library", + "sheet.library.Sheet", + "sheet.library.Sheet.render_grid" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 88, + "end_line": 59, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" + }, + "parent_location": [ + { + "end_col": 76, + "end_line": 185, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" + }, + "parent_location": [ + { + "end_col": 72, + "end_line": 161, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" + }, + "parent_location": [ + { + "end_col": 47, + "end_line": 186, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" + }, + "start_col": 22, + "start_line": 186 + }, + "While trying to retrieve the implicit argument 'range_check_ptr' in:" + ], + "start_col": 57, + "start_line": 161 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 26, + "start_line": 185 + }, + "While trying to update the implicit return value 'range_check_ptr' in:" + ], + "start_col": 73, + "start_line": 59 + } + }, + "3244": { + "accessible_scopes": [ + "sheet.library", + "sheet.library.Sheet", + "sheet.library.Sheet.render_grid" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 36, + "end_line": 178, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" + }, + "parent_location": [ + { + "end_col": 101, + "end_line": 161, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" + }, + "parent_location": [ + { + "end_col": 47, + "end_line": 186, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" + }, + "start_col": 22, + "start_line": 186 + }, + "While trying to retrieve the implicit argument 'rendered_cells' in:" + ], + "start_col": 74, + "start_line": 161 + }, + "While expanding the reference 'rendered_cells' in:" + ], + "start_col": 9, + "start_line": 178 + } + }, + "3245": { + "accessible_scopes": [ + "sheet.library", + "sheet.library.Sheet", + "sheet.library.Sheet.render_grid" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 46, + "end_line": 186, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" + }, + "start_col": 34, + "start_line": 186 + } + }, + "3246": { + "accessible_scopes": [ + "sheet.library", + "sheet.library.Sheet", + "sheet.library.Sheet.render_grid" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 47, + "end_line": 186, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" + }, + "start_col": 22, + "start_line": 186 + } + }, + "3248": { + "accessible_scopes": [ + "sheet.library", + "sheet.library.Sheet", + "sheet.library.Sheet.render_grid" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 42, + "end_line": 187, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" + }, + "start_col": 25, + "start_line": 187 + } + }, + "3250": { + "accessible_scopes": [ + "sheet.library", + "sheet.library.Sheet", + "sheet.library.Sheet.render_grid" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 50, + "end_line": 187, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" + }, + "start_col": 25, + "start_line": 187 + } + }, + "3251": { + "accessible_scopes": [ + "sheet.library", + "sheet.library.Sheet", + "sheet.library.Sheet.render_grid" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 50, + "end_line": 187, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" + }, + "start_col": 17, + "start_line": 187 + } + }, + "3252": { + "accessible_scopes": [ + "sheet.library", + "sheet.library.Sheet", + "sheet.library.Sheet.render_grid" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 59, + "end_line": 187, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" + }, + "start_col": 9, + "start_line": 187 + } + }, + "3253": { + "accessible_scopes": [ + "sheet.library", + "sheet.library.Sheet", + "sheet.library.Sheet.render_grid" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 42, + "end_line": 187, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" + }, + "start_col": 25, + "start_line": 187 + } + }, + "3255": { + "accessible_scopes": [ + "sheet.library", + "sheet.library.Sheet", + "sheet.library.Sheet.render_grid" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 50, + "end_line": 187, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" + }, + "start_col": 25, + "start_line": 187 + } + }, + "3256": { + "accessible_scopes": [ + "sheet.library", + "sheet.library.Sheet", + "sheet.library.Sheet.render_grid" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 51, + "end_line": 187, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" + }, + "start_col": 16, + "start_line": 187 + } + }, + "3258": { + "accessible_scopes": [ + "sheet.library", + "sheet.library.Sheet", + "sheet.library.Sheet.render_grid" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 51, + "end_line": 187, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" + }, + "start_col": 16, + "start_line": 187 + } + }, + "3259": { + "accessible_scopes": [ + "sheet.library", + "sheet.library.Sheet", + "sheet.library.Sheet.render_grid" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 59, + "end_line": 187, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" + }, + "start_col": 9, + "start_line": 187 + } + }, + "3260": { + "accessible_scopes": [ + "sheet.library", + "sheet.library.Sheet", + "sheet.library.Sheet.render_grid" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 42, + "end_line": 187, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" + }, + "start_col": 25, + "start_line": 187 + } + }, + "3262": { + "accessible_scopes": [ + "sheet.library", + "sheet.library.Sheet", + "sheet.library.Sheet.render_grid" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 50, + "end_line": 187, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" + }, + "start_col": 25, + "start_line": 187 + } + }, + "3263": { + "accessible_scopes": [ + "sheet.library", + "sheet.library.Sheet", + "sheet.library.Sheet.render_grid" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 51, + "end_line": 187, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" + }, + "start_col": 16, + "start_line": 187 + } + }, + "3265": { + "accessible_scopes": [ + "sheet.library", + "sheet.library.Sheet", + "sheet.library.Sheet.render_grid" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 51, + "end_line": 187, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" + }, + "start_col": 16, + "start_line": 187 + } + }, + "3266": { + "accessible_scopes": [ + "sheet.library", + "sheet.library.Sheet", + "sheet.library.Sheet.render_grid" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 59, + "end_line": 187, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" + }, + "start_col": 9, + "start_line": 187 + } + }, + "3267": { + "accessible_scopes": [ + "sheet.library", + "sheet.library.Sheet", + "sheet.library.Sheet.render_grid" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 27, + "end_line": 161, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" + }, + "parent_location": [ + { + "end_col": 47, + "end_line": 186, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" + }, + "parent_location": [ + { + "end_col": 27, + "end_line": 174, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" + }, + "parent_location": [ + { + "end_col": 38, + "end_line": 188, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" + }, + "start_col": 16, + "start_line": 188 + }, + "While trying to retrieve the implicit argument 'syscall_ptr' in:" + ], + "start_col": 9, + "start_line": 174 + }, + "While expanding the reference 'syscall_ptr' in:" + ], + "start_col": 22, + "start_line": 186 + }, + "While trying to update the implicit return value 'syscall_ptr' in:" + ], + "start_col": 9, + "start_line": 161 + } + }, + "3268": { + "accessible_scopes": [ + "sheet.library", + "sheet.library.Sheet", + "sheet.library.Sheet.render_grid" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 55, + "end_line": 161, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" + }, + "parent_location": [ + { + "end_col": 47, + "end_line": 186, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" + }, + "parent_location": [ + { + "end_col": 35, + "end_line": 175, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" + }, + "parent_location": [ + { + "end_col": 38, + "end_line": 188, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" + }, + "start_col": 16, + "start_line": 188 + }, + "While trying to retrieve the implicit argument 'pedersen_ptr' in:" + ], + "start_col": 9, + "start_line": 175 + }, + "While expanding the reference 'pedersen_ptr' in:" + ], + "start_col": 22, + "start_line": 186 + }, + "While trying to update the implicit return value 'pedersen_ptr' in:" + ], + "start_col": 29, + "start_line": 161 + } + }, + "3269": { + "accessible_scopes": [ + "sheet.library", + "sheet.library.Sheet", + "sheet.library.Sheet.render_grid" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 72, + "end_line": 161, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" + }, + "parent_location": [ + { + "end_col": 47, + "end_line": 186, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" + }, + "parent_location": [ + { + "end_col": 24, + "end_line": 176, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" + }, + "parent_location": [ + { + "end_col": 38, + "end_line": 188, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" + }, + "start_col": 16, + "start_line": 188 + }, + "While trying to retrieve the implicit argument 'range_check_ptr' in:" + ], + "start_col": 9, + "start_line": 176 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 22, + "start_line": 186 + }, + "While trying to update the implicit return value 'range_check_ptr' in:" + ], + "start_col": 57, + "start_line": 161 + } + }, + "3270": { + "accessible_scopes": [ + "sheet.library", + "sheet.library.Sheet", + "sheet.library.Sheet.render_grid" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 29, + "end_line": 177, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" + }, + "parent_location": [ + { + "end_col": 29, + "end_line": 177, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" + }, + "parent_location": [ + { + "end_col": 38, + "end_line": 188, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" + }, + "start_col": 16, + "start_line": 188 + }, + "While trying to retrieve the implicit argument 'cells' in:" + ], + "start_col": 9, + "start_line": 177 + }, + "While expanding the reference 'cells' in:" + ], + "start_col": 9, + "start_line": 177 + } + }, + "3271": { + "accessible_scopes": [ + "sheet.library", + "sheet.library.Sheet", + "sheet.library.Sheet.render_grid" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 101, + "end_line": 161, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" + }, + "parent_location": [ + { + "end_col": 47, + "end_line": 186, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" + }, + "parent_location": [ + { + "end_col": 36, + "end_line": 178, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" + }, + "parent_location": [ + { + "end_col": 38, + "end_line": 188, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" + }, + "start_col": 16, + "start_line": 188 + }, + "While trying to retrieve the implicit argument 'rendered_cells' in:" + ], + "start_col": 9, + "start_line": 178 + }, + "While expanding the reference 'rendered_cells' in:" + ], + "start_col": 22, + "start_line": 186 + }, + "While trying to update the implicit return value 'rendered_cells' in:" + ], + "start_col": 74, + "start_line": 161 + } + }, + "3272": { + "accessible_scopes": [ + "sheet.library", + "sheet.library.Sheet", + "sheet.library.Sheet.render_grid" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 19, + "end_line": 179, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" + }, + "parent_location": [ + { + "end_col": 19, + "end_line": 179, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" + }, + "parent_location": [ + { + "end_col": 38, + "end_line": 188, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" + }, + "start_col": 16, + "start_line": 188 + }, + "While trying to retrieve the implicit argument 'stop' in:" + ], + "start_col": 9, + "start_line": 179 + }, + "While expanding the reference 'stop' in:" + ], + "start_col": 9, + "start_line": 179 + } + }, + "3273": { + "accessible_scopes": [ + "sheet.library", + "sheet.library.Sheet", + "sheet.library.Sheet.render_grid" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 37, + "end_line": 188, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" + }, + "start_col": 28, + "start_line": 188 + } + }, + "3275": { + "accessible_scopes": [ + "sheet.library", + "sheet.library.Sheet", + "sheet.library.Sheet.render_grid" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 38, + "end_line": 188, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" + }, + "start_col": 16, + "start_line": 188 + } + }, + "3277": { + "accessible_scopes": [ + "sheet.library", + "sheet.library.Sheet", + "sheet.library.Sheet.render_grid" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 39, + "end_line": 188, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" + }, + "start_col": 9, + "start_line": 188 + } + }, + "3278": { + "accessible_scopes": [ + "sheet.library", + "sheet.library.Sheet", + "sheet.library.Sheet.mint" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 61, + "end_line": 191, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" + }, + "parent_location": [ + { + "end_col": 40, + "end_line": 429, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" + }, + "parent_location": [ + { + "end_col": 26, + "end_line": 194, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" + }, + "start_col": 9, + "start_line": 194 + }, + "While trying to retrieve the implicit argument 'syscall_ptr' in:" + ], + "start_col": 22, + "start_line": 429 + }, + "While expanding the reference 'syscall_ptr' in:" + ], + "start_col": 43, + "start_line": 191 + } + }, + "3279": { + "accessible_scopes": [ + "sheet.library", + "sheet.library.Sheet", + "sheet.library.Sheet.mint" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 41, + "end_line": 191, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" + }, + "parent_location": [ + { + "end_col": 68, + "end_line": 429, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" + }, + "parent_location": [ + { + "end_col": 26, + "end_line": 194, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" + }, + "start_col": 9, + "start_line": 194 + }, + "While trying to retrieve the implicit argument 'pedersen_ptr' in:" + ], + "start_col": 42, + "start_line": 429 + }, + "While expanding the reference 'pedersen_ptr' in:" + ], + "start_col": 15, + "start_line": 191 + } + }, + "3280": { + "accessible_scopes": [ + "sheet.library", + "sheet.library.Sheet", + "sheet.library.Sheet.mint" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 78, + "end_line": 191, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" + }, + "parent_location": [ + { + "end_col": 85, + "end_line": 429, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" + }, + "parent_location": [ + { + "end_col": 26, + "end_line": 194, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" + }, + "start_col": 9, + "start_line": 194 + }, + "While trying to retrieve the implicit argument 'range_check_ptr' in:" + ], + "start_col": 70, + "start_line": 429 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 63, + "start_line": 191 + } + }, + "3281": { + "accessible_scopes": [ + "sheet.library", + "sheet.library.Sheet", + "sheet.library.Sheet.mint" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 26, + "end_line": 194, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" + }, + "start_col": 9, + "start_line": 194 + } + }, + "3283": { + "accessible_scopes": [ + "sheet.library", + "sheet.library.Sheet", + "sheet.library.Sheet.mint" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 40, + "end_line": 429, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" + }, + "parent_location": [ + { + "end_col": 26, + "end_line": 194, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" + }, + "parent_location": [ + { + "end_col": 43, + "end_line": 200, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/starknet/common/syscalls.cairo" + }, + "parent_location": [ + { + "end_col": 45, + "end_line": 195, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" + }, + "start_col": 25, + "start_line": 195 + }, + "While trying to retrieve the implicit argument 'syscall_ptr' in:" + ], + "start_col": 25, + "start_line": 200 + }, + "While expanding the reference 'syscall_ptr' in:" + ], + "start_col": 9, + "start_line": 194 + }, + "While trying to update the implicit return value 'syscall_ptr' in:" + ], + "start_col": 22, + "start_line": 429 + } + }, + "3284": { + "accessible_scopes": [ + "sheet.library", + "sheet.library.Sheet", + "sheet.library.Sheet.mint" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 45, + "end_line": 195, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" + }, + "start_col": 25, + "start_line": 195 + } + }, + "3286": { + "accessible_scopes": [ + "sheet.library", + "sheet.library.Sheet", + "sheet.library.Sheet.mint" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 43, + "end_line": 200, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/starknet/common/syscalls.cairo" + }, + "parent_location": [ + { + "end_col": 45, + "end_line": 195, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" + }, + "parent_location": [ + { + "end_col": 23, + "end_line": 403, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" + }, + "parent_location": [ + { + "end_col": 49, + "end_line": 197, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" + }, + "start_col": 13, + "start_line": 197 + }, + "While trying to retrieve the implicit argument 'syscall_ptr' in:" + ], + "start_col": 5, + "start_line": 403 + }, + "While expanding the reference 'syscall_ptr' in:" + ], + "start_col": 25, + "start_line": 195 + }, + "While trying to update the implicit return value 'syscall_ptr' in:" + ], + "start_col": 25, + "start_line": 200 + } + }, + "3287": { + "accessible_scopes": [ + "sheet.library", + "sheet.library.Sheet", + "sheet.library.Sheet.mint" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 68, + "end_line": 429, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" + }, + "parent_location": [ + { + "end_col": 26, + "end_line": 194, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" + }, + "parent_location": [ + { + "end_col": 51, + "end_line": 403, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" + }, + "parent_location": [ + { + "end_col": 49, + "end_line": 197, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" + }, + "start_col": 13, + "start_line": 197 + }, + "While trying to retrieve the implicit argument 'pedersen_ptr' in:" + ], + "start_col": 25, + "start_line": 403 + }, + "While expanding the reference 'pedersen_ptr' in:" + ], + "start_col": 9, + "start_line": 194 + }, + "While trying to update the implicit return value 'pedersen_ptr' in:" + ], + "start_col": 42, + "start_line": 429 + } + }, + "3288": { + "accessible_scopes": [ + "sheet.library", + "sheet.library.Sheet", + "sheet.library.Sheet.mint" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 85, + "end_line": 429, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" + }, + "parent_location": [ + { + "end_col": 26, + "end_line": 194, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" + }, + "parent_location": [ + { + "end_col": 68, + "end_line": 403, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" + }, + "parent_location": [ + { + "end_col": 49, + "end_line": 197, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" + }, + "start_col": 13, + "start_line": 197 + }, + "While trying to retrieve the implicit argument 'range_check_ptr' in:" + ], + "start_col": 53, + "start_line": 403 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 9, + "start_line": 194 + }, + "While trying to update the implicit return value 'range_check_ptr' in:" + ], + "start_col": 70, + "start_line": 429 + } + }, + "3289": { + "accessible_scopes": [ + "sheet.library", + "sheet.library.Sheet", + "sheet.library.Sheet.mint" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 21, + "end_line": 195, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" + }, + "parent_location": [ + { + "end_col": 83, + "end_line": 403, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" + }, + "parent_location": [ + { + "end_col": 49, + "end_line": 197, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" + }, + "start_col": 13, + "start_line": 197 + }, + "While trying to retrieve the implicit argument 'address' in:" + ], + "start_col": 70, + "start_line": 403 + }, + "While expanding the reference 'address' in:" + ], + "start_col": 14, + "start_line": 195 + } + }, + "3290": { + "accessible_scopes": [ + "sheet.library", + "sheet.library.Sheet", + "sheet.library.Sheet.mint" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 43, + "end_line": 192, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" + }, + "parent_location": [ + { + "end_col": 41, + "end_line": 197, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" + }, + "start_col": 32, + "start_line": 197 + }, + "While expanding the reference 'proof_len' in:" + ], + "start_col": 28, + "start_line": 192 + } + }, + "3291": { + "accessible_scopes": [ + "sheet.library", + "sheet.library.Sheet", + "sheet.library.Sheet.mint" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 57, + "end_line": 192, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" + }, + "parent_location": [ + { + "end_col": 48, + "end_line": 197, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" + }, + "start_col": 43, + "start_line": 197 + }, + "While expanding the reference 'proof' in:" + ], + "start_col": 45, + "start_line": 192 + } + }, + "3292": { + "accessible_scopes": [ + "sheet.library", + "sheet.library.Sheet", + "sheet.library.Sheet.mint" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 49, + "end_line": 197, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" + }, + "start_col": 13, + "start_line": 197 + } + }, + "3294": { + "accessible_scopes": [ + "sheet.library", + "sheet.library.Sheet", + "sheet.library.Sheet.mint" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 23, + "end_line": 403, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" + }, + "parent_location": [ + { + "end_col": 49, + "end_line": 197, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" + }, + "parent_location": [ + { + "end_col": 33, + "end_line": 13, + "input_file": { + "filename": "autogen/starknet/storage_var/Sheet_max_per_wallet/decl.cairo" + }, + "parent_location": [ + { + "end_col": 63, + "end_line": 198, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" + }, + "start_col": 36, + "start_line": 198 + }, + "While trying to retrieve the implicit argument 'syscall_ptr' in:" + ], + "start_col": 15, + "start_line": 13 + }, + "While expanding the reference 'syscall_ptr' in:" + ], + "start_col": 13, + "start_line": 197 + }, + "While trying to update the implicit return value 'syscall_ptr' in:" + ], + "start_col": 5, + "start_line": 403 + } + }, + "3295": { + "accessible_scopes": [ + "sheet.library", + "sheet.library.Sheet", + "sheet.library.Sheet.mint" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 51, + "end_line": 403, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" + }, + "parent_location": [ + { + "end_col": 49, + "end_line": 197, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" + }, + "parent_location": [ + { + "end_col": 61, + "end_line": 13, + "input_file": { + "filename": "autogen/starknet/storage_var/Sheet_max_per_wallet/decl.cairo" + }, + "parent_location": [ + { + "end_col": 63, + "end_line": 198, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" + }, + "start_col": 36, + "start_line": 198 + }, + "While trying to retrieve the implicit argument 'pedersen_ptr' in:" + ], + "start_col": 35, + "start_line": 13 + }, + "While expanding the reference 'pedersen_ptr' in:" + ], + "start_col": 13, + "start_line": 197 + }, + "While trying to update the implicit return value 'pedersen_ptr' in:" + ], + "start_col": 25, + "start_line": 403 + } + }, + "3296": { + "accessible_scopes": [ + "sheet.library", + "sheet.library.Sheet", + "sheet.library.Sheet.mint" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 68, + "end_line": 403, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" + }, + "parent_location": [ + { + "end_col": 49, + "end_line": 197, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" + }, + "parent_location": [ + { + "end_col": 78, + "end_line": 13, + "input_file": { + "filename": "autogen/starknet/storage_var/Sheet_max_per_wallet/decl.cairo" + }, + "parent_location": [ + { + "end_col": 63, + "end_line": 198, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" + }, + "start_col": 36, + "start_line": 198 + }, + "While trying to retrieve the implicit argument 'range_check_ptr' in:" + ], + "start_col": 63, + "start_line": 13 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 13, + "start_line": 197 + }, + "While trying to update the implicit return value 'range_check_ptr' in:" + ], + "start_col": 53, + "start_line": 403 + } + }, + "3297": { + "accessible_scopes": [ + "sheet.library", + "sheet.library.Sheet", + "sheet.library.Sheet.mint" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 63, + "end_line": 198, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" + }, + "start_col": 36, + "start_line": 198 + } + }, + "3299": { + "accessible_scopes": [ + "sheet.library", + "sheet.library.Sheet", + "sheet.library.Sheet.mint" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 33, + "end_line": 13, + "input_file": { + "filename": "autogen/starknet/storage_var/Sheet_max_per_wallet/decl.cairo" + }, + "parent_location": [ + { + "end_col": 63, + "end_line": 198, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" + }, + "parent_location": [ + { + "end_col": 23, + "end_line": 417, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" + }, + "parent_location": [ + { + "end_col": 63, + "end_line": 199, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" + }, + "start_col": 13, + "start_line": 199 + }, + "While trying to retrieve the implicit argument 'syscall_ptr' in:" + ], + "start_col": 5, + "start_line": 417 + }, + "While expanding the reference 'syscall_ptr' in:" + ], + "start_col": 36, + "start_line": 198 + }, + "While trying to update the implicit return value 'syscall_ptr' in:" + ], + "start_col": 15, + "start_line": 13 + } + }, + "3300": { + "accessible_scopes": [ + "sheet.library", + "sheet.library.Sheet", + "sheet.library.Sheet.mint" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 61, + "end_line": 13, + "input_file": { + "filename": "autogen/starknet/storage_var/Sheet_max_per_wallet/decl.cairo" + }, + "parent_location": [ + { + "end_col": 63, + "end_line": 198, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" + }, + "parent_location": [ + { + "end_col": 51, + "end_line": 417, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" + }, + "parent_location": [ + { + "end_col": 63, + "end_line": 199, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" + }, + "start_col": 13, + "start_line": 199 + }, + "While trying to retrieve the implicit argument 'pedersen_ptr' in:" + ], + "start_col": 25, + "start_line": 417 + }, + "While expanding the reference 'pedersen_ptr' in:" + ], + "start_col": 36, + "start_line": 198 + }, + "While trying to update the implicit return value 'pedersen_ptr' in:" + ], + "start_col": 35, + "start_line": 13 + } + }, + "3301": { + "accessible_scopes": [ + "sheet.library", + "sheet.library.Sheet", + "sheet.library.Sheet.mint" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 78, + "end_line": 13, + "input_file": { + "filename": "autogen/starknet/storage_var/Sheet_max_per_wallet/decl.cairo" + }, + "parent_location": [ + { + "end_col": 63, + "end_line": 198, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" + }, + "parent_location": [ + { + "end_col": 68, + "end_line": 417, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" + }, + "parent_location": [ + { + "end_col": 63, + "end_line": 199, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" + }, + "start_col": 13, + "start_line": 199 + }, + "While trying to retrieve the implicit argument 'range_check_ptr' in:" + ], + "start_col": 53, + "start_line": 417 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 36, + "start_line": 198 + }, + "While trying to update the implicit return value 'range_check_ptr' in:" + ], + "start_col": 63, + "start_line": 13 + } + }, + "3302": { + "accessible_scopes": [ + "sheet.library", + "sheet.library.Sheet", + "sheet.library.Sheet.mint" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 83, + "end_line": 403, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" + }, + "parent_location": [ + { + "end_col": 49, + "end_line": 197, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" + }, + "parent_location": [ + { + "end_col": 83, + "end_line": 417, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" + }, + "parent_location": [ + { + "end_col": 63, + "end_line": 199, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" + }, + "start_col": 13, + "start_line": 199 + }, + "While trying to retrieve the implicit argument 'address' in:" + ], + "start_col": 70, + "start_line": 417 + }, + "While expanding the reference 'address' in:" + ], + "start_col": 13, + "start_line": 197 + }, + "While trying to update the implicit return value 'address' in:" + ], + "start_col": 70, + "start_line": 403 + } + }, + "3303": { + "accessible_scopes": [ + "sheet.library", + "sheet.library.Sheet", + "sheet.library.Sheet.mint" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 32, + "end_line": 198, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" + }, + "parent_location": [ + { + "end_col": 62, + "end_line": 199, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" + }, + "start_col": 48, + "start_line": 199 + }, + "While expanding the reference 'max_per_wallet' in:" + ], + "start_col": 18, + "start_line": 198 + } + }, + "3304": { + "accessible_scopes": [ + "sheet.library", + "sheet.library.Sheet", + "sheet.library.Sheet.mint" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 63, + "end_line": 199, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" + }, + "start_col": 13, + "start_line": 199 + } + }, + "3306": { + "accessible_scopes": [ + "sheet.library", + "sheet.library.Sheet", + "sheet.library.Sheet.mint" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 51, + "end_line": 417, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" + }, + "parent_location": [ + { + "end_col": 63, + "end_line": 199, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" + }, + "parent_location": [ + { + "end_col": 42, + "end_line": 114, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" + }, + "parent_location": [ + { + "end_col": 50, + "end_line": 202, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" + }, + "start_col": 9, + "start_line": 202 + }, + "While trying to retrieve the implicit argument 'pedersen_ptr' in:" + ], + "start_col": 16, + "start_line": 114 + }, + "While expanding the reference 'pedersen_ptr' in:" + ], + "start_col": 13, + "start_line": 199 + }, + "While trying to update the implicit return value 'pedersen_ptr' in:" + ], + "start_col": 25, + "start_line": 417 + } + }, + "3307": { + "accessible_scopes": [ + "sheet.library", + "sheet.library.Sheet", + "sheet.library.Sheet.mint" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 23, + "end_line": 417, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" + }, + "parent_location": [ + { + "end_col": 63, + "end_line": 199, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" + }, + "parent_location": [ + { + "end_col": 62, + "end_line": 114, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" + }, + "parent_location": [ + { + "end_col": 50, + "end_line": 202, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" + }, + "start_col": 9, + "start_line": 202 + }, + "While trying to retrieve the implicit argument 'syscall_ptr' in:" + ], + "start_col": 44, + "start_line": 114 + }, + "While expanding the reference 'syscall_ptr' in:" + ], + "start_col": 13, + "start_line": 199 + }, + "While trying to update the implicit return value 'syscall_ptr' in:" + ], + "start_col": 5, + "start_line": 417 + } + }, + "3308": { + "accessible_scopes": [ + "sheet.library", + "sheet.library.Sheet", + "sheet.library.Sheet.mint" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 68, + "end_line": 417, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" + }, + "parent_location": [ + { + "end_col": 63, + "end_line": 199, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" + }, + "parent_location": [ + { + "end_col": 79, + "end_line": 114, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" + }, + "parent_location": [ + { + "end_col": 50, + "end_line": 202, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" + }, + "start_col": 9, + "start_line": 202 + }, + "While trying to retrieve the implicit argument 'range_check_ptr' in:" + ], + "start_col": 64, + "start_line": 114 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 13, + "start_line": 199 + }, + "While trying to update the implicit return value 'range_check_ptr' in:" + ], + "start_col": 53, + "start_line": 417 + } + }, + "3309": { + "accessible_scopes": [ + "sheet.library", + "sheet.library.Sheet", + "sheet.library.Sheet.mint" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 83, + "end_line": 417, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" + }, + "parent_location": [ + { + "end_col": 63, + "end_line": 199, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" + }, + "parent_location": [ + { + "end_col": 39, + "end_line": 202, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" + }, + "start_col": 32, + "start_line": 202 + }, + "While expanding the reference 'address' in:" + ], + "start_col": 13, + "start_line": 199 + }, + "While trying to update the implicit return value 'address' in:" + ], + "start_col": 70, + "start_line": 417 + } + }, + "3310": { + "accessible_scopes": [ + "sheet.library", + "sheet.library.Sheet", + "sheet.library.Sheet.mint" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 26, + "end_line": 192, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" + }, + "parent_location": [ + { + "end_col": 49, + "end_line": 202, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" + }, + "start_col": 41, + "start_line": 202 + }, + "While expanding the reference 'token_id' in:" + ], + "start_col": 9, + "start_line": 192 + } + }, + "3311": { + "accessible_scopes": [ + "sheet.library", + "sheet.library.Sheet", + "sheet.library.Sheet.mint" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 26, + "end_line": 192, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" + }, + "parent_location": [ + { + "end_col": 49, + "end_line": 202, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" + }, + "start_col": 41, + "start_line": 202 + }, + "While expanding the reference 'token_id' in:" + ], + "start_col": 9, + "start_line": 192 + } + }, + "3312": { + "accessible_scopes": [ + "sheet.library", + "sheet.library.Sheet", + "sheet.library.Sheet.mint" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 50, + "end_line": 202, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" + }, + "start_col": 9, + "start_line": 202 + } + }, + "3314": { + "accessible_scopes": [ + "sheet.library", + "sheet.library.Sheet", + "sheet.library.Sheet.mint" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 19, + "end_line": 203, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" + }, + "start_col": 9, + "start_line": 203 + } + }, + "3315": { + "accessible_scopes": [ + "sheet.library", + "sheet.library.Sheet", + "sheet.library.Sheet.token_uri" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 22, + "end_line": 209, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" + }, + "start_col": 9, + "start_line": 209 + } + }, + "3317": { + "accessible_scopes": [ + "sheet.library", + "sheet.library.Sheet", + "sheet.library.Sheet.token_uri" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 66, + "end_line": 206, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" + }, + "parent_location": [ + { + "end_col": 36, + "end_line": 311, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "parent_location": [ + { + "end_col": 46, + "end_line": 210, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" + }, + "start_col": 22, + "start_line": 210 + }, + "While trying to retrieve the implicit argument 'syscall_ptr' in:" + ], + "start_col": 18, + "start_line": 311 + }, + "While expanding the reference 'syscall_ptr' in:" + ], + "start_col": 48, + "start_line": 206 + } + }, + "3318": { + "accessible_scopes": [ + "sheet.library", + "sheet.library.Sheet", + "sheet.library.Sheet.token_uri" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 46, + "end_line": 206, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" + }, + "parent_location": [ + { + "end_col": 64, + "end_line": 311, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "parent_location": [ + { + "end_col": 46, + "end_line": 210, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" + }, + "start_col": 22, + "start_line": 210 + }, + "While trying to retrieve the implicit argument 'pedersen_ptr' in:" + ], + "start_col": 38, + "start_line": 311 + }, + "While expanding the reference 'pedersen_ptr' in:" + ], + "start_col": 20, + "start_line": 206 + } + }, + "3319": { + "accessible_scopes": [ + "sheet.library", + "sheet.library.Sheet", + "sheet.library.Sheet.token_uri" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 83, + "end_line": 206, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" + }, + "parent_location": [ + { + "end_col": 81, + "end_line": 311, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "parent_location": [ + { + "end_col": 46, + "end_line": 210, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" + }, + "start_col": 22, + "start_line": 210 + }, + "While trying to retrieve the implicit argument 'range_check_ptr' in:" + ], + "start_col": 66, + "start_line": 311 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 68, + "start_line": 206 + } + }, + "3320": { + "accessible_scopes": [ + "sheet.library", + "sheet.library.Sheet", + "sheet.library.Sheet.token_uri" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 26, + "end_line": 207, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" + }, + "parent_location": [ + { + "end_col": 45, + "end_line": 210, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" + }, + "start_col": 37, + "start_line": 210 + }, + "While expanding the reference 'token_id' in:" + ], + "start_col": 9, + "start_line": 207 + } + }, + "3321": { + "accessible_scopes": [ + "sheet.library", + "sheet.library.Sheet", + "sheet.library.Sheet.token_uri" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 26, + "end_line": 207, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" + }, + "parent_location": [ + { + "end_col": 45, + "end_line": 210, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" + }, + "start_col": 37, + "start_line": 210 + }, + "While expanding the reference 'token_id' in:" + ], + "start_col": 9, + "start_line": 207 + } + }, + "3322": { + "accessible_scopes": [ + "sheet.library", + "sheet.library.Sheet", + "sheet.library.Sheet.token_uri" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 46, + "end_line": 210, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" + }, + "start_col": 22, + "start_line": 210 + } + }, + "3324": { + "accessible_scopes": [ + "sheet.library", + "sheet.library.Sheet", + "sheet.library.Sheet.token_uri" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 34, + "end_line": 212, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" + }, + "start_col": 13, + "start_line": 212 + } + }, + "3326": { + "accessible_scopes": [ + "sheet.library", + "sheet.library.Sheet", + "sheet.library.Sheet.token_uri" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 88, + "end_line": 215, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" + }, + "start_col": 75, + "start_line": 215 + } + }, + "3328": { + "accessible_scopes": [ + "sheet.library", + "sheet.library.Sheet", + "sheet.library.Sheet.token_uri" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 89, + "end_line": 215, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" + }, + "start_col": 44, + "start_line": 215 + } + }, + "3330": { + "accessible_scopes": [ + "sheet.library", + "sheet.library.Sheet", + "sheet.library.Sheet.token_uri" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 40, + "end_line": 215, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" + }, + "start_col": 14, + "start_line": 215 + } + }, + "3331": { + "accessible_scopes": [ + "sheet.library", + "sheet.library.Sheet", + "sheet.library.Sheet.token_uri" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 36, + "end_line": 311, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "parent_location": [ + { + "end_col": 46, + "end_line": 210, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" + }, + "parent_location": [ + { + "end_col": 23, + "end_line": 311, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" + }, + "parent_location": [ + { + "end_col": 10, + "end_line": 221, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" + }, + "start_col": 23, + "start_line": 219 + }, + "While trying to retrieve the implicit argument 'syscall_ptr' in:" + ], + "start_col": 5, + "start_line": 311 + }, + "While expanding the reference 'syscall_ptr' in:" + ], + "start_col": 22, + "start_line": 210 + }, + "While trying to update the implicit return value 'syscall_ptr' in:" + ], + "start_col": 18, + "start_line": 311 + } + }, + "3332": { + "accessible_scopes": [ + "sheet.library", + "sheet.library.Sheet", + "sheet.library.Sheet.token_uri" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 64, + "end_line": 311, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "parent_location": [ + { + "end_col": 46, + "end_line": 210, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" + }, + "parent_location": [ + { + "end_col": 31, + "end_line": 312, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" + }, + "parent_location": [ + { + "end_col": 10, + "end_line": 221, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" + }, + "start_col": 23, + "start_line": 219 + }, + "While trying to retrieve the implicit argument 'pedersen_ptr' in:" + ], + "start_col": 5, + "start_line": 312 + }, + "While expanding the reference 'pedersen_ptr' in:" + ], + "start_col": 22, + "start_line": 210 + }, + "While trying to update the implicit return value 'pedersen_ptr' in:" + ], + "start_col": 38, + "start_line": 311 + } + }, + "3333": { + "accessible_scopes": [ + "sheet.library", + "sheet.library.Sheet", + "sheet.library.Sheet.token_uri" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 81, + "end_line": 311, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "parent_location": [ + { + "end_col": 46, + "end_line": 210, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" + }, + "parent_location": [ + { + "end_col": 20, + "end_line": 313, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" + }, + "parent_location": [ + { + "end_col": 10, + "end_line": 221, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" + }, + "start_col": 23, + "start_line": 219 + }, + "While trying to retrieve the implicit argument 'range_check_ptr' in:" + ], + "start_col": 5, + "start_line": 313 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 22, + "start_line": 210 + }, + "While trying to update the implicit return value 'range_check_ptr' in:" + ], + "start_col": 66, + "start_line": 311 + } + }, + "3334": { + "accessible_scopes": [ + "sheet.library", + "sheet.library.Sheet", + "sheet.library.Sheet.token_uri" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 40, + "end_line": 215, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" + }, + "parent_location": [ + { + "end_col": 50, + "end_line": 216, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" + }, + "parent_location": [ + { + "end_col": 65, + "end_line": 219, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" + }, + "start_col": 51, + "start_line": 219 + }, + "While expanding the reference 'rendered_cells' in:" + ], + "start_col": 30, + "start_line": 216 + }, + "While expanding the reference 'rendered_cells_start' in:" + ], + "start_col": 20, + "start_line": 215 + } + }, + "3335": { + "accessible_scopes": [ + "sheet.library", + "sheet.library.Sheet", + "sheet.library.Sheet.token_uri" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 24, + "end_line": 218, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" + }, + "parent_location": [ + { + "end_col": 89, + "end_line": 219, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" + }, + "start_col": 85, + "start_line": 219 + }, + "While expanding the reference 'true' in:" + ], + "start_col": 20, + "start_line": 218 + } + }, + "3337": { + "accessible_scopes": [ + "sheet.library", + "sheet.library.Sheet", + "sheet.library.Sheet.token_uri" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 25, + "end_line": 220, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" + }, + "start_col": 13, + "start_line": 220 + } + }, + "3338": { + "accessible_scopes": [ + "sheet.library", + "sheet.library.Sheet", + "sheet.library.Sheet.token_uri" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 10, + "end_line": 221, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" + }, + "start_col": 23, + "start_line": 219 + } + }, + "3340": { + "accessible_scopes": [ + "sheet.library", + "sheet.library.Sheet", + "sheet.library.Sheet.token_uri" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 31, + "end_line": 312, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" + }, + "parent_location": [ + { + "end_col": 10, + "end_line": 221, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" + }, + "parent_location": [ + { + "end_col": 31, + "end_line": 312, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" + }, + "parent_location": [ + { + "end_col": 10, + "end_line": 221, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" + }, + "start_col": 23, + "start_line": 219 + }, + "While trying to update the implicit return value 'pedersen_ptr' in:" + ], + "start_col": 5, + "start_line": 312 + }, + "While auto generating local variable for 'pedersen_ptr'." + ], + "start_col": 23, + "start_line": 219 + }, + "While trying to update the implicit return value 'pedersen_ptr' in:" + ], + "start_col": 5, + "start_line": 312 + } + }, + "3341": { + "accessible_scopes": [ + "sheet.library", + "sheet.library.Sheet", + "sheet.library.Sheet.token_uri" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 23, + "end_line": 311, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" + }, + "parent_location": [ + { + "end_col": 10, + "end_line": 221, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" + }, + "parent_location": [ + { + "end_col": 23, + "end_line": 311, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" + }, + "parent_location": [ + { + "end_col": 10, + "end_line": 221, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" + }, + "start_col": 23, + "start_line": 219 + }, + "While trying to update the implicit return value 'syscall_ptr' in:" + ], + "start_col": 5, + "start_line": 311 + }, + "While auto generating local variable for 'syscall_ptr'." + ], + "start_col": 23, + "start_line": 219 + }, + "While trying to update the implicit return value 'syscall_ptr' in:" + ], + "start_col": 5, + "start_line": 311 + } + }, + "3342": { + "accessible_scopes": [ + "sheet.library", + "sheet.library.Sheet", + "sheet.library.Sheet.token_uri" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 19, + "end_line": 219, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" + }, + "parent_location": [ + { + "end_col": 19, + "end_line": 219, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" + }, + "start_col": 14, + "start_line": 219 + }, + "While auto generating local variable for 'value'." + ], + "start_col": 14, + "start_line": 219 + } + }, + "3343": { + "accessible_scopes": [ + "sheet.library", + "sheet.library.Sheet", + "sheet.library.Sheet.token_uri" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 20, + "end_line": 313, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" + }, + "parent_location": [ + { + "end_col": 10, + "end_line": 221, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" + }, + "parent_location": [ + { + "end_col": 43, + "end_line": 23, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/default_dict.cairo" + }, + "parent_location": [ + { + "end_col": 10, + "end_line": 224, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" + }, + "start_col": 78, + "start_line": 222 + }, + "While trying to retrieve the implicit argument 'range_check_ptr' in:" + ], + "start_col": 28, + "start_line": 23 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 23, + "start_line": 219 + }, + "While trying to update the implicit return value 'range_check_ptr' in:" + ], + "start_col": 5, + "start_line": 313 + } + }, + "3344": { + "accessible_scopes": [ + "sheet.library", + "sheet.library.Sheet", + "sheet.library.Sheet.token_uri" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 40, + "end_line": 215, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" + }, + "parent_location": [ + { + "end_col": 33, + "end_line": 223, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" + }, + "start_col": 13, + "start_line": 223 + }, + "While expanding the reference 'rendered_cells_start' in:" + ], + "start_col": 20, + "start_line": 215 + } + }, + "3345": { + "accessible_scopes": [ + "sheet.library", + "sheet.library.Sheet", + "sheet.library.Sheet.token_uri" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 65, + "end_line": 219, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" + }, + "parent_location": [ + { + "end_col": 49, + "end_line": 223, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" + }, + "start_col": 35, + "start_line": 223 + }, + "While expanding the reference 'rendered_cells' in:" + ], + "start_col": 51, + "start_line": 219 + } + }, + "3346": { + "accessible_scopes": [ + "sheet.library", + "sheet.library.Sheet", + "sheet.library.Sheet.token_uri" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 64, + "end_line": 223, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" + }, + "start_col": 51, + "start_line": 223 + } + }, + "3348": { + "accessible_scopes": [ + "sheet.library", + "sheet.library.Sheet", + "sheet.library.Sheet.token_uri" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 10, + "end_line": 224, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" + }, + "start_col": 78, + "start_line": 222 + } + }, + "3350": { + "accessible_scopes": [ + "sheet.library", + "sheet.library.Sheet", + "sheet.library.Sheet.token_uri" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 31, + "end_line": 312, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" + }, + "parent_location": [ + { + "end_col": 10, + "end_line": 221, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" + }, + "parent_location": [ + { + "end_col": 31, + "end_line": 312, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" + }, + "parent_location": [ + { + "end_col": 10, + "end_line": 221, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" + }, + "parent_location": [ + { + "end_col": 44, + "end_line": 225, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" + }, + "start_col": 32, + "start_line": 225 + }, + "While expanding the reference 'pedersen_ptr' in:" + ], + "start_col": 23, + "start_line": 219 + }, + "While trying to update the implicit return value 'pedersen_ptr' in:" + ], + "start_col": 5, + "start_line": 312 + }, + "While auto generating local variable for 'pedersen_ptr'." + ], + "start_col": 23, + "start_line": 219 + }, + "While trying to update the implicit return value 'pedersen_ptr' in:" + ], + "start_col": 5, + "start_line": 312 + } + }, + "3351": { + "accessible_scopes": [ + "sheet.library", + "sheet.library.Sheet", + "sheet.library.Sheet.token_uri" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 23, + "end_line": 311, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" + }, + "parent_location": [ + { + "end_col": 10, + "end_line": 221, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" + }, + "parent_location": [ + { + "end_col": 23, + "end_line": 311, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" + }, + "parent_location": [ + { + "end_col": 10, + "end_line": 221, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" + }, + "parent_location": [ + { + "end_col": 33, + "end_line": 90, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "parent_location": [ + { + "end_col": 35, + "end_line": 227, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" + }, + "start_col": 22, + "start_line": 227 + }, + "While trying to retrieve the implicit argument 'syscall_ptr' in:" + ], + "start_col": 15, + "start_line": 90 + }, + "While expanding the reference 'syscall_ptr' in:" + ], + "start_col": 23, + "start_line": 219 + }, + "While trying to update the implicit return value 'syscall_ptr' in:" + ], + "start_col": 5, + "start_line": 311 + }, + "While auto generating local variable for 'syscall_ptr'." + ], + "start_col": 23, + "start_line": 219 + }, + "While trying to update the implicit return value 'syscall_ptr' in:" + ], + "start_col": 5, + "start_line": 311 + } + }, + "3352": { + "accessible_scopes": [ + "sheet.library", + "sheet.library.Sheet", + "sheet.library.Sheet.token_uri" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 29, + "end_line": 225, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" + }, + "parent_location": [ + { + "end_col": 61, + "end_line": 90, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "parent_location": [ + { + "end_col": 35, + "end_line": 227, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" + }, + "start_col": 22, + "start_line": 227 + }, + "While trying to retrieve the implicit argument 'pedersen_ptr' in:" + ], + "start_col": 35, + "start_line": 90 + }, + "While expanding the reference 'pedersen_ptr' in:" + ], + "start_col": 17, + "start_line": 225 + } + }, + "3353": { + "accessible_scopes": [ + "sheet.library", + "sheet.library.Sheet", + "sheet.library.Sheet.token_uri" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 43, + "end_line": 23, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/default_dict.cairo" + }, + "parent_location": [ + { + "end_col": 10, + "end_line": 224, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" + }, + "parent_location": [ + { + "end_col": 78, + "end_line": 90, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "parent_location": [ + { + "end_col": 35, + "end_line": 227, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" + }, + "start_col": 22, + "start_line": 227 + }, + "While trying to retrieve the implicit argument 'range_check_ptr' in:" + ], + "start_col": 63, + "start_line": 90 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 78, + "start_line": 222 + }, + "While trying to update the implicit return value 'range_check_ptr' in:" + ], + "start_col": 28, + "start_line": 23 + } + }, + "3354": { + "accessible_scopes": [ + "sheet.library", + "sheet.library.Sheet", + "sheet.library.Sheet.token_uri" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 35, + "end_line": 227, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" + }, + "start_col": 22, + "start_line": 227 + } + }, + "3356": { + "accessible_scopes": [ + "sheet.library", + "sheet.library.Sheet", + "sheet.library.Sheet.token_uri" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 33, + "end_line": 90, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "parent_location": [ + { + "end_col": 35, + "end_line": 227, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" + }, + "parent_location": [ + { + "end_col": 33, + "end_line": 13, + "input_file": { + "filename": "autogen/starknet/storage_var/Sheet_cell_renderer/decl.cairo" + }, + "parent_location": [ + { + "end_col": 60, + "end_line": 228, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" + }, + "start_col": 34, + "start_line": 228 + }, + "While trying to retrieve the implicit argument 'syscall_ptr' in:" + ], + "start_col": 15, + "start_line": 13 + }, + "While expanding the reference 'syscall_ptr' in:" + ], + "start_col": 22, + "start_line": 227 + }, + "While trying to update the implicit return value 'syscall_ptr' in:" + ], + "start_col": 15, + "start_line": 90 + } + }, + "3357": { + "accessible_scopes": [ + "sheet.library", + "sheet.library.Sheet", + "sheet.library.Sheet.token_uri" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 61, + "end_line": 90, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "parent_location": [ + { + "end_col": 35, + "end_line": 227, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" + }, + "parent_location": [ + { + "end_col": 61, + "end_line": 13, + "input_file": { + "filename": "autogen/starknet/storage_var/Sheet_cell_renderer/decl.cairo" + }, + "parent_location": [ + { + "end_col": 60, + "end_line": 228, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" + }, + "start_col": 34, + "start_line": 228 + }, + "While trying to retrieve the implicit argument 'pedersen_ptr' in:" + ], + "start_col": 35, + "start_line": 13 + }, + "While expanding the reference 'pedersen_ptr' in:" + ], + "start_col": 22, + "start_line": 227 + }, + "While trying to update the implicit return value 'pedersen_ptr' in:" + ], + "start_col": 35, + "start_line": 90 + } + }, + "3358": { + "accessible_scopes": [ + "sheet.library", + "sheet.library.Sheet", + "sheet.library.Sheet.token_uri" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 78, + "end_line": 90, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "parent_location": [ + { + "end_col": 35, + "end_line": 227, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" + }, + "parent_location": [ + { + "end_col": 78, + "end_line": 13, + "input_file": { + "filename": "autogen/starknet/storage_var/Sheet_cell_renderer/decl.cairo" + }, + "parent_location": [ + { + "end_col": 60, + "end_line": 228, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" + }, + "start_col": 34, + "start_line": 228 + }, + "While trying to retrieve the implicit argument 'range_check_ptr' in:" + ], + "start_col": 63, + "start_line": 13 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 22, + "start_line": 227 + }, + "While trying to update the implicit return value 'range_check_ptr' in:" + ], + "start_col": 63, + "start_line": 90 + } + }, + "3359": { + "accessible_scopes": [ + "sheet.library", + "sheet.library.Sheet", + "sheet.library.Sheet.token_uri" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 60, + "end_line": 228, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" + }, + "start_col": 34, + "start_line": 228 + } + }, + "3361": { + "accessible_scopes": [ + "sheet.library", + "sheet.library.Sheet", + "sheet.library.Sheet.token_uri" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 33, + "end_line": 13, + "input_file": { + "filename": "autogen/starknet/storage_var/Sheet_cell_renderer/decl.cairo" + }, + "parent_location": [ + { + "end_col": 60, + "end_line": 228, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" + }, + "parent_location": [ + { + "end_col": 34, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/contract_interface/ICellRenderer/token_uri/41262dba046518ea626ceadddf9bdd89ee1cb488a62fdf8cc47232b6ce4027bb.cairo" + }, + "parent_location": [ + { + "end_col": 19, + "end_line": 6, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/interfaces.cairo" + }, + "parent_location": [ + { + "end_col": 10, + "end_line": 231, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" + }, + "start_col": 42, + "start_line": 229 + }, + "While trying to retrieve the implicit argument 'syscall_ptr' in:" + ], + "start_col": 10, + "start_line": 6 + }, + "While handling contract interface function:" + ], + "start_col": 16, + "start_line": 1 + }, + "While expanding the reference 'syscall_ptr' in:" + ], + "start_col": 34, + "start_line": 228 + }, + "While trying to update the implicit return value 'syscall_ptr' in:" + ], + "start_col": 15, + "start_line": 13 + } + }, + "3362": { + "accessible_scopes": [ + "sheet.library", + "sheet.library.Sheet", + "sheet.library.Sheet.token_uri" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 78, + "end_line": 13, + "input_file": { + "filename": "autogen/starknet/storage_var/Sheet_cell_renderer/decl.cairo" + }, + "parent_location": [ + { + "end_col": 60, + "end_line": 228, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" + }, + "parent_location": [ + { + "end_col": 51, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/contract_interface/ICellRenderer/token_uri/41262dba046518ea626ceadddf9bdd89ee1cb488a62fdf8cc47232b6ce4027bb.cairo" + }, + "parent_location": [ + { + "end_col": 19, + "end_line": 6, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/interfaces.cairo" + }, + "parent_location": [ + { + "end_col": 10, + "end_line": 231, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" + }, + "start_col": 42, + "start_line": 229 + }, + "While trying to retrieve the implicit argument 'range_check_ptr' in:" + ], + "start_col": 10, + "start_line": 6 + }, + "While handling contract interface function:" + ], + "start_col": 36, + "start_line": 1 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 34, + "start_line": 228 + }, + "While trying to update the implicit return value 'range_check_ptr' in:" + ], + "start_col": 63, + "start_line": 13 + } + }, + "3363": { + "accessible_scopes": [ + "sheet.library", + "sheet.library.Sheet", + "sheet.library.Sheet.token_uri" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 30, + "end_line": 228, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" + }, + "parent_location": [ + { + "end_col": 29, + "end_line": 230, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" + }, + "start_col": 13, + "start_line": 230 + }, + "While expanding the reference 'renderer_address' in:" + ], + "start_col": 14, + "start_line": 228 + } + }, + "3364": { + "accessible_scopes": [ + "sheet.library", + "sheet.library.Sheet", + "sheet.library.Sheet.token_uri" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 43, + "end_line": 230, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" + }, + "start_col": 31, + "start_line": 230 + } + }, + "3365": { + "accessible_scopes": [ + "sheet.library", + "sheet.library.Sheet", + "sheet.library.Sheet.token_uri" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 19, + "end_line": 219, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" + }, + "parent_location": [ + { + "end_col": 19, + "end_line": 219, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" + }, + "parent_location": [ + { + "end_col": 50, + "end_line": 230, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" + }, + "start_col": 45, + "start_line": 230 + }, + "While expanding the reference 'value' in:" + ], + "start_col": 14, + "start_line": 219 + }, + "While auto generating local variable for 'value'." + ], + "start_col": 14, + "start_line": 219 + } + }, + "3366": { + "accessible_scopes": [ + "sheet.library", + "sheet.library.Sheet", + "sheet.library.Sheet.token_uri" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 18, + "end_line": 227, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" + }, + "parent_location": [ + { + "end_col": 56, + "end_line": 230, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" + }, + "start_col": 52, + "start_line": 230 + }, + "While expanding the reference 'name' in:" + ], + "start_col": 14, + "start_line": 227 + } + }, + "3367": { + "accessible_scopes": [ + "sheet.library", + "sheet.library.Sheet", + "sheet.library.Sheet.token_uri" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 10, + "end_line": 231, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" + }, + "start_col": 42, + "start_line": 229 + } + }, + "3369": { + "accessible_scopes": [ + "sheet.library", + "sheet.library.Sheet", + "sheet.library.Sheet.token_uri" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 61, + "end_line": 13, + "input_file": { + "filename": "autogen/starknet/storage_var/Sheet_cell_renderer/decl.cairo" + }, + "parent_location": [ + { + "end_col": 60, + "end_line": 228, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" + }, + "parent_location": [ + { + "end_col": 46, + "end_line": 206, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" + }, + "parent_location": [ + { + "end_col": 43, + "end_line": 232, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" + }, + "start_col": 9, + "start_line": 232 + }, + "While trying to retrieve the implicit argument 'pedersen_ptr' in:" + ], + "start_col": 20, + "start_line": 206 + }, + "While expanding the reference 'pedersen_ptr' in:" + ], + "start_col": 34, + "start_line": 228 + }, + "While trying to update the implicit return value 'pedersen_ptr' in:" + ], + "start_col": 35, + "start_line": 13 + } + }, + "3370": { + "accessible_scopes": [ + "sheet.library", + "sheet.library.Sheet", + "sheet.library.Sheet.token_uri" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 34, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/contract_interface/ICellRenderer/token_uri/41262dba046518ea626ceadddf9bdd89ee1cb488a62fdf8cc47232b6ce4027bb.cairo" + }, + "parent_location": [ + { + "end_col": 19, + "end_line": 6, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/interfaces.cairo" + }, + "parent_location": [ + { + "end_col": 10, + "end_line": 231, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" + }, + "parent_location": [ + { + "end_col": 66, + "end_line": 206, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" + }, + "parent_location": [ + { + "end_col": 43, + "end_line": 232, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" + }, + "start_col": 9, + "start_line": 232 + }, + "While trying to retrieve the implicit argument 'syscall_ptr' in:" + ], + "start_col": 48, + "start_line": 206 + }, + "While expanding the reference 'syscall_ptr' in:" + ], + "start_col": 42, + "start_line": 229 + }, + "While trying to update the implicit return value 'syscall_ptr' in:" + ], + "start_col": 10, + "start_line": 6 + }, + "While handling contract interface function:" + ], + "start_col": 16, + "start_line": 1 + } + }, + "3371": { + "accessible_scopes": [ + "sheet.library", + "sheet.library.Sheet", + "sheet.library.Sheet.token_uri" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 51, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/contract_interface/ICellRenderer/token_uri/41262dba046518ea626ceadddf9bdd89ee1cb488a62fdf8cc47232b6ce4027bb.cairo" + }, + "parent_location": [ + { + "end_col": 19, + "end_line": 6, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/interfaces.cairo" + }, + "parent_location": [ + { + "end_col": 10, + "end_line": 231, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" + }, + "parent_location": [ + { + "end_col": 83, + "end_line": 206, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" + }, + "parent_location": [ + { + "end_col": 43, + "end_line": 232, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" + }, + "start_col": 9, + "start_line": 232 + }, + "While trying to retrieve the implicit argument 'range_check_ptr' in:" + ], + "start_col": 68, + "start_line": 206 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 42, + "start_line": 229 + }, + "While trying to update the implicit return value 'range_check_ptr' in:" + ], + "start_col": 10, + "start_line": 6 + }, + "While handling contract interface function:" + ], + "start_col": 36, + "start_line": 1 + } + }, + "3372": { + "accessible_scopes": [ + "sheet.library", + "sheet.library.Sheet", + "sheet.library.Sheet.token_uri" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 27, + "end_line": 229, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" + }, + "parent_location": [ + { + "end_col": 30, + "end_line": 232, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" + }, + "start_col": 17, + "start_line": 232 + }, + "While expanding the reference 'token_uri_len' in:" + ], + "start_col": 14, + "start_line": 229 + } + }, + "3373": { + "accessible_scopes": [ + "sheet.library", + "sheet.library.Sheet", + "sheet.library.Sheet.token_uri" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 38, + "end_line": 229, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" + }, + "parent_location": [ + { + "end_col": 41, + "end_line": 232, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" + }, + "start_col": 32, + "start_line": 232 + }, + "While expanding the reference 'token_uri' in:" + ], + "start_col": 29, + "start_line": 229 + } + }, + "3374": { + "accessible_scopes": [ + "sheet.library", + "sheet.library.Sheet", + "sheet.library.Sheet.token_uri" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 43, + "end_line": 232, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" + }, + "start_col": 9, + "start_line": 232 + } + }, + "3375": { + "accessible_scopes": [ + "sheet.library", + "sheet.library.Sheet", + "sheet.library.Sheet.contract_uri" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 22, + "end_line": 238, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" + }, + "start_col": 9, + "start_line": 238 + } + }, + "3377": { + "accessible_scopes": [ + "sheet.library", + "sheet.library.Sheet", + "sheet.library.Sheet.contract_uri" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 37, + "end_line": 239, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" + }, + "start_col": 30, + "start_line": 239 + } + }, + "3379": { + "accessible_scopes": [ + "sheet.library", + "sheet.library.Sheet", + "sheet.library.Sheet.contract_uri" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 26, + "end_line": 239, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" + }, + "parent_location": [ + { + "end_col": 26, + "end_line": 239, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" + }, + "start_col": 14, + "start_line": 239 + }, + "While auto generating local variable for 'contract_uri'." + ], + "start_col": 14, + "start_line": 239 + } + }, + "3380": { + "accessible_scopes": [ + "sheet.library", + "sheet.library.Sheet", + "sheet.library.Sheet.contract_uri" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 41, + "end_line": 235, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" + }, + "parent_location": [ + { + "end_col": 33, + "end_line": 13, + "input_file": { + "filename": "autogen/starknet/storage_var/Sheet_contract_uri_len/decl.cairo" + }, + "parent_location": [ + { + "end_col": 63, + "end_line": 240, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" + }, + "start_col": 34, + "start_line": 240 + }, + "While trying to retrieve the implicit argument 'syscall_ptr' in:" + ], + "start_col": 15, + "start_line": 13 + }, + "While expanding the reference 'syscall_ptr' in:" + ], + "start_col": 23, + "start_line": 235 + } + }, + "3381": { + "accessible_scopes": [ + "sheet.library", + "sheet.library.Sheet", + "sheet.library.Sheet.contract_uri" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 69, + "end_line": 235, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" + }, + "parent_location": [ + { + "end_col": 61, + "end_line": 13, + "input_file": { + "filename": "autogen/starknet/storage_var/Sheet_contract_uri_len/decl.cairo" + }, + "parent_location": [ + { + "end_col": 63, + "end_line": 240, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" + }, + "start_col": 34, + "start_line": 240 + }, + "While trying to retrieve the implicit argument 'pedersen_ptr' in:" + ], + "start_col": 35, + "start_line": 13 + }, + "While expanding the reference 'pedersen_ptr' in:" + ], + "start_col": 43, + "start_line": 235 + } + }, + "3382": { + "accessible_scopes": [ + "sheet.library", + "sheet.library.Sheet", + "sheet.library.Sheet.contract_uri" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 86, + "end_line": 235, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" + }, + "parent_location": [ + { + "end_col": 78, + "end_line": 13, + "input_file": { + "filename": "autogen/starknet/storage_var/Sheet_contract_uri_len/decl.cairo" + }, + "parent_location": [ + { + "end_col": 63, + "end_line": 240, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" + }, + "start_col": 34, + "start_line": 240 + }, + "While trying to retrieve the implicit argument 'range_check_ptr' in:" + ], + "start_col": 63, + "start_line": 13 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 71, + "start_line": 235 + } + }, + "3383": { + "accessible_scopes": [ + "sheet.library", + "sheet.library.Sheet", + "sheet.library.Sheet.contract_uri" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 63, + "end_line": 240, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" + }, + "start_col": 34, + "start_line": 240 + } + }, + "3385": { + "accessible_scopes": [ + "sheet.library", + "sheet.library.Sheet", + "sheet.library.Sheet.contract_uri" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 30, + "end_line": 240, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" + }, + "parent_location": [ + { + "end_col": 30, + "end_line": 240, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" + }, + "start_col": 14, + "start_line": 240 + }, + "While auto generating local variable for 'contract_uri_len'." + ], + "start_col": 14, + "start_line": 240 + } + }, + "3386": { + "accessible_scopes": [ + "sheet.library", + "sheet.library.Sheet", + "sheet.library.Sheet.contract_uri" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 11, + "end_line": 241, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" + }, + "start_col": 9, + "start_line": 241 + } + }, + "3388": { + "accessible_scopes": [ + "sheet.library", + "sheet.library.Sheet", + "sheet.library.Sheet.contract_uri" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 33, + "end_line": 13, + "input_file": { + "filename": "autogen/starknet/storage_var/Sheet_contract_uri_len/decl.cairo" + }, + "parent_location": [ + { + "end_col": 63, + "end_line": 240, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" + }, + "parent_location": [ + { + "end_col": 33, + "end_line": 90, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "parent_location": [ + { + "end_col": 39, + "end_line": 242, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" + }, + "start_col": 26, + "start_line": 242 + }, + "While trying to retrieve the implicit argument 'syscall_ptr' in:" + ], + "start_col": 15, + "start_line": 90 + }, + "While expanding the reference 'syscall_ptr' in:" + ], + "start_col": 34, + "start_line": 240 + }, + "While trying to update the implicit return value 'syscall_ptr' in:" + ], + "start_col": 15, + "start_line": 13 + } + }, + "3389": { + "accessible_scopes": [ + "sheet.library", + "sheet.library.Sheet", + "sheet.library.Sheet.contract_uri" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 61, + "end_line": 13, + "input_file": { + "filename": "autogen/starknet/storage_var/Sheet_contract_uri_len/decl.cairo" + }, + "parent_location": [ + { + "end_col": 63, + "end_line": 240, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" + }, + "parent_location": [ + { + "end_col": 61, + "end_line": 90, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "parent_location": [ + { + "end_col": 39, + "end_line": 242, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" + }, + "start_col": 26, + "start_line": 242 + }, + "While trying to retrieve the implicit argument 'pedersen_ptr' in:" + ], + "start_col": 35, + "start_line": 90 + }, + "While expanding the reference 'pedersen_ptr' in:" + ], + "start_col": 34, + "start_line": 240 + }, + "While trying to update the implicit return value 'pedersen_ptr' in:" + ], + "start_col": 35, + "start_line": 13 + } + }, + "3390": { + "accessible_scopes": [ + "sheet.library", + "sheet.library.Sheet", + "sheet.library.Sheet.contract_uri" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 78, + "end_line": 13, + "input_file": { + "filename": "autogen/starknet/storage_var/Sheet_contract_uri_len/decl.cairo" + }, + "parent_location": [ + { + "end_col": 63, + "end_line": 240, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" + }, + "parent_location": [ + { + "end_col": 78, + "end_line": 90, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "parent_location": [ + { + "end_col": 39, + "end_line": 242, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" + }, + "start_col": 26, + "start_line": 242 + }, + "While trying to retrieve the implicit argument 'range_check_ptr' in:" + ], + "start_col": 63, + "start_line": 90 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 34, + "start_line": 240 + }, + "While trying to update the implicit return value 'range_check_ptr' in:" + ], + "start_col": 63, + "start_line": 13 + } + }, + "3391": { + "accessible_scopes": [ + "sheet.library", + "sheet.library.Sheet", + "sheet.library.Sheet.contract_uri" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 39, + "end_line": 242, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" + }, + "start_col": 26, + "start_line": 242 + } + }, + "3393": { + "accessible_scopes": [ + "sheet.library", + "sheet.library.Sheet", + "sheet.library.Sheet.contract_uri" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 74, + "end_line": 243, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" + }, + "start_col": 41, + "start_line": 243 + } + }, + "3395": { + "accessible_scopes": [ + "sheet.library", + "sheet.library.Sheet", + "sheet.library.Sheet.contract_uri" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 75, + "end_line": 243, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" + }, + "start_col": 13, + "start_line": 243 + } + }, + "3396": { + "accessible_scopes": [ + "sheet.library", + "sheet.library.Sheet", + "sheet.library.Sheet.contract_uri" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 73, + "end_line": 244, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" + }, + "start_col": 41, + "start_line": 244 + } + }, + "3398": { + "accessible_scopes": [ + "sheet.library", + "sheet.library.Sheet", + "sheet.library.Sheet.contract_uri" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 74, + "end_line": 244, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" + }, + "start_col": 13, + "start_line": 244 + } + }, + "3399": { + "accessible_scopes": [ + "sheet.library", + "sheet.library.Sheet", + "sheet.library.Sheet.contract_uri" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 46, + "end_line": 245, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" + }, + "start_col": 13, + "start_line": 245 + } + }, + "3400": { + "accessible_scopes": [ + "sheet.library", + "sheet.library.Sheet", + "sheet.library.Sheet.contract_uri" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 45, + "end_line": 246, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" + }, + "start_col": 41, + "start_line": 246 + } + }, + "3402": { + "accessible_scopes": [ + "sheet.library", + "sheet.library.Sheet", + "sheet.library.Sheet.contract_uri" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 46, + "end_line": 246, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" + }, + "start_col": 13, + "start_line": 246 + } + }, + "3403": { + "accessible_scopes": [ + "sheet.library", + "sheet.library.Sheet", + "sheet.library.Sheet.contract_uri" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 33, + "end_line": 90, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "parent_location": [ + { + "end_col": 39, + "end_line": 242, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" + }, + "parent_location": [ + { + "end_col": 41, + "end_line": 235, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" + }, + "parent_location": [ + { + "end_col": 38, + "end_line": 247, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" + }, + "start_col": 13, + "start_line": 247 + }, + "While trying to retrieve the implicit argument 'syscall_ptr' in:" + ], + "start_col": 23, + "start_line": 235 + }, + "While expanding the reference 'syscall_ptr' in:" + ], + "start_col": 26, + "start_line": 242 + }, + "While trying to update the implicit return value 'syscall_ptr' in:" + ], + "start_col": 15, + "start_line": 90 + } + }, + "3404": { + "accessible_scopes": [ + "sheet.library", + "sheet.library.Sheet", + "sheet.library.Sheet.contract_uri" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 61, + "end_line": 90, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "parent_location": [ + { + "end_col": 39, + "end_line": 242, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" + }, + "parent_location": [ + { + "end_col": 69, + "end_line": 235, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" + }, + "parent_location": [ + { + "end_col": 38, + "end_line": 247, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" + }, + "start_col": 13, + "start_line": 247 + }, + "While trying to retrieve the implicit argument 'pedersen_ptr' in:" + ], + "start_col": 43, + "start_line": 235 + }, + "While expanding the reference 'pedersen_ptr' in:" + ], + "start_col": 26, + "start_line": 242 + }, + "While trying to update the implicit return value 'pedersen_ptr' in:" + ], + "start_col": 35, + "start_line": 90 + } + }, + "3405": { + "accessible_scopes": [ + "sheet.library", + "sheet.library.Sheet", + "sheet.library.Sheet.contract_uri" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 78, + "end_line": 90, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "parent_location": [ + { + "end_col": 39, + "end_line": 242, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" + }, + "parent_location": [ + { + "end_col": 86, + "end_line": 235, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" + }, + "parent_location": [ + { + "end_col": 38, + "end_line": 247, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" + }, + "start_col": 13, + "start_line": 247 + }, + "While trying to retrieve the implicit argument 'range_check_ptr' in:" + ], + "start_col": 71, + "start_line": 235 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 26, + "start_line": 242 + }, + "While trying to update the implicit return value 'range_check_ptr' in:" + ], + "start_col": 63, + "start_line": 90 + } + }, + "3406": { + "accessible_scopes": [ + "sheet.library", + "sheet.library.Sheet", + "sheet.library.Sheet.contract_uri" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 22, + "end_line": 247, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" + }, + "start_col": 21, + "start_line": 247 + } + }, + "3408": { + "accessible_scopes": [ + "sheet.library", + "sheet.library.Sheet", + "sheet.library.Sheet.contract_uri" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 26, + "end_line": 239, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" + }, + "parent_location": [ + { + "end_col": 26, + "end_line": 239, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" + }, + "parent_location": [ + { + "end_col": 36, + "end_line": 247, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" + }, + "start_col": 24, + "start_line": 247 + }, + "While expanding the reference 'contract_uri' in:" + ], + "start_col": 14, + "start_line": 239 + }, + "While auto generating local variable for 'contract_uri'." + ], + "start_col": 14, + "start_line": 239 + } + }, + "3409": { + "accessible_scopes": [ + "sheet.library", + "sheet.library.Sheet", + "sheet.library.Sheet.contract_uri" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 38, + "end_line": 247, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" + }, + "start_col": 13, + "start_line": 247 + } + }, + "3410": { + "accessible_scopes": [ + "sheet.library", + "sheet.library.Sheet", + "sheet.library.Sheet.contract_uri" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 33, + "end_line": 13, + "input_file": { + "filename": "autogen/starknet/storage_var/Sheet_contract_uri_len/decl.cairo" + }, + "parent_location": [ + { + "end_col": 63, + "end_line": 240, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" + }, + "parent_location": [ + { + "end_col": 43, + "end_line": 388, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" + }, + "parent_location": [ + { + "end_col": 44, + "end_line": 249, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" + }, + "start_col": 9, + "start_line": 249 + }, + "While trying to retrieve the implicit argument 'syscall_ptr' in:" + ], + "start_col": 25, + "start_line": 388 + }, + "While expanding the reference 'syscall_ptr' in:" + ], + "start_col": 34, + "start_line": 240 + }, + "While trying to update the implicit return value 'syscall_ptr' in:" + ], + "start_col": 15, + "start_line": 13 + } + }, + "3411": { + "accessible_scopes": [ + "sheet.library", + "sheet.library.Sheet", + "sheet.library.Sheet.contract_uri" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 61, + "end_line": 13, + "input_file": { + "filename": "autogen/starknet/storage_var/Sheet_contract_uri_len/decl.cairo" + }, + "parent_location": [ + { + "end_col": 63, + "end_line": 240, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" + }, + "parent_location": [ + { + "end_col": 71, + "end_line": 388, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" + }, + "parent_location": [ + { + "end_col": 44, + "end_line": 249, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" + }, + "start_col": 9, + "start_line": 249 + }, + "While trying to retrieve the implicit argument 'pedersen_ptr' in:" + ], + "start_col": 45, + "start_line": 388 + }, + "While expanding the reference 'pedersen_ptr' in:" + ], + "start_col": 34, + "start_line": 240 + }, + "While trying to update the implicit return value 'pedersen_ptr' in:" + ], + "start_col": 35, + "start_line": 13 + } + }, + "3412": { + "accessible_scopes": [ + "sheet.library", + "sheet.library.Sheet", + "sheet.library.Sheet.contract_uri" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 78, + "end_line": 13, + "input_file": { + "filename": "autogen/starknet/storage_var/Sheet_contract_uri_len/decl.cairo" + }, + "parent_location": [ + { + "end_col": 63, + "end_line": 240, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" + }, + "parent_location": [ + { + "end_col": 88, + "end_line": 388, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" + }, + "parent_location": [ + { + "end_col": 44, + "end_line": 249, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" + }, + "start_col": 9, + "start_line": 249 + }, + "While trying to retrieve the implicit argument 'range_check_ptr' in:" + ], + "start_col": 73, + "start_line": 388 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 34, + "start_line": 240 + }, + "While trying to update the implicit return value 'range_check_ptr' in:" + ], + "start_col": 63, + "start_line": 13 + } + }, + "3413": { + "accessible_scopes": [ + "sheet.library", + "sheet.library.Sheet", + "sheet.library.Sheet.contract_uri" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 29, + "end_line": 249, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" + }, + "start_col": 28, + "start_line": 249 + } + }, + "3415": { + "accessible_scopes": [ + "sheet.library", + "sheet.library.Sheet", + "sheet.library.Sheet.contract_uri" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 26, + "end_line": 239, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" + }, + "parent_location": [ + { + "end_col": 26, + "end_line": 239, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" + }, + "parent_location": [ + { + "end_col": 43, + "end_line": 249, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" + }, + "start_col": 31, + "start_line": 249 + }, + "While expanding the reference 'contract_uri' in:" + ], + "start_col": 14, + "start_line": 239 + }, + "While auto generating local variable for 'contract_uri'." + ], + "start_col": 14, + "start_line": 239 + } + }, + "3416": { + "accessible_scopes": [ + "sheet.library", + "sheet.library.Sheet", + "sheet.library.Sheet.contract_uri" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 44, + "end_line": 249, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" + }, + "start_col": 9, + "start_line": 249 + } + }, + "3418": { + "accessible_scopes": [ + "sheet.library", + "sheet.library.Sheet", + "sheet.library.Sheet.contract_uri" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 43, + "end_line": 388, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" + }, + "parent_location": [ + { + "end_col": 44, + "end_line": 249, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" + }, + "parent_location": [ + { + "end_col": 41, + "end_line": 235, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" + }, + "parent_location": [ + { + "end_col": 49, + "end_line": 250, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" + }, + "start_col": 9, + "start_line": 250 + }, + "While trying to retrieve the implicit argument 'syscall_ptr' in:" + ], + "start_col": 23, + "start_line": 235 + }, + "While expanding the reference 'syscall_ptr' in:" + ], + "start_col": 9, + "start_line": 249 + }, + "While trying to update the implicit return value 'syscall_ptr' in:" + ], + "start_col": 25, + "start_line": 388 + } + }, + "3419": { + "accessible_scopes": [ + "sheet.library", + "sheet.library.Sheet", + "sheet.library.Sheet.contract_uri" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 71, + "end_line": 388, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" + }, + "parent_location": [ + { + "end_col": 44, + "end_line": 249, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" + }, + "parent_location": [ + { + "end_col": 69, + "end_line": 235, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" + }, + "parent_location": [ + { + "end_col": 49, + "end_line": 250, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" + }, + "start_col": 9, + "start_line": 250 + }, + "While trying to retrieve the implicit argument 'pedersen_ptr' in:" + ], + "start_col": 43, + "start_line": 235 + }, + "While expanding the reference 'pedersen_ptr' in:" + ], + "start_col": 9, + "start_line": 249 + }, + "While trying to update the implicit return value 'pedersen_ptr' in:" + ], + "start_col": 45, + "start_line": 388 + } + }, + "3420": { + "accessible_scopes": [ + "sheet.library", + "sheet.library.Sheet", + "sheet.library.Sheet.contract_uri" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 88, + "end_line": 388, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" + }, + "parent_location": [ + { + "end_col": 44, + "end_line": 249, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" + }, + "parent_location": [ + { + "end_col": 86, + "end_line": 235, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" + }, + "parent_location": [ + { + "end_col": 49, + "end_line": 250, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" + }, + "start_col": 9, + "start_line": 250 + }, + "While trying to retrieve the implicit argument 'range_check_ptr' in:" + ], + "start_col": 71, + "start_line": 235 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 9, + "start_line": 249 + }, + "While trying to update the implicit return value 'range_check_ptr' in:" + ], + "start_col": 73, + "start_line": 388 + } + }, + "3421": { + "accessible_scopes": [ + "sheet.library", + "sheet.library.Sheet", + "sheet.library.Sheet.contract_uri" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 30, + "end_line": 240, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" + }, + "parent_location": [ + { + "end_col": 30, + "end_line": 240, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" + }, + "parent_location": [ + { + "end_col": 33, + "end_line": 250, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" + }, + "start_col": 17, + "start_line": 250 + }, + "While expanding the reference 'contract_uri_len' in:" + ], + "start_col": 14, + "start_line": 240 + }, + "While auto generating local variable for 'contract_uri_len'." + ], + "start_col": 14, + "start_line": 240 + } + }, + "3422": { + "accessible_scopes": [ + "sheet.library", + "sheet.library.Sheet", + "sheet.library.Sheet.contract_uri" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 26, + "end_line": 239, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" + }, + "parent_location": [ + { + "end_col": 26, + "end_line": 239, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" + }, + "parent_location": [ + { + "end_col": 47, + "end_line": 250, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" + }, + "start_col": 35, + "start_line": 250 + }, + "While expanding the reference 'contract_uri' in:" + ], + "start_col": 14, + "start_line": 239 + }, + "While auto generating local variable for 'contract_uri'." + ], + "start_col": 14, + "start_line": 239 + } + }, + "3423": { + "accessible_scopes": [ + "sheet.library", + "sheet.library.Sheet", + "sheet.library.Sheet.contract_uri" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 49, + "end_line": 250, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" + }, + "start_col": 9, + "start_line": 250 + } + }, + "3424": { + "accessible_scopes": [ + "sheet.library", + "sheet.library.Sheet", + "sheet.library.Sheet.set_contract_uri" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 45, + "end_line": 253, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" + }, + "parent_location": [ + { + "end_col": 34, + "end_line": 19, + "input_file": { + "filename": "autogen/starknet/storage_var/Sheet_contract_uri_len/decl.cairo" + }, + "parent_location": [ + { + "end_col": 55, + "end_line": 256, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" + }, + "start_col": 9, + "start_line": 256 + }, + "While trying to retrieve the implicit argument 'syscall_ptr' in:" + ], + "start_col": 16, + "start_line": 19 + }, + "While expanding the reference 'syscall_ptr' in:" + ], + "start_col": 27, + "start_line": 253 + } + }, + "3425": { + "accessible_scopes": [ + "sheet.library", + "sheet.library.Sheet", + "sheet.library.Sheet.set_contract_uri" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 73, + "end_line": 253, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" + }, + "parent_location": [ + { + "end_col": 62, + "end_line": 19, + "input_file": { + "filename": "autogen/starknet/storage_var/Sheet_contract_uri_len/decl.cairo" + }, + "parent_location": [ + { + "end_col": 55, + "end_line": 256, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" + }, + "start_col": 9, + "start_line": 256 + }, + "While trying to retrieve the implicit argument 'pedersen_ptr' in:" + ], + "start_col": 36, + "start_line": 19 + }, + "While expanding the reference 'pedersen_ptr' in:" + ], + "start_col": 47, + "start_line": 253 + } + }, + "3426": { + "accessible_scopes": [ + "sheet.library", + "sheet.library.Sheet", + "sheet.library.Sheet.set_contract_uri" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 90, + "end_line": 253, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" + }, + "parent_location": [ + { + "end_col": 79, + "end_line": 19, + "input_file": { + "filename": "autogen/starknet/storage_var/Sheet_contract_uri_len/decl.cairo" + }, + "parent_location": [ + { + "end_col": 55, + "end_line": 256, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" + }, + "start_col": 9, + "start_line": 256 + }, + "While trying to retrieve the implicit argument 'range_check_ptr' in:" + ], + "start_col": 64, + "start_line": 19 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 75, + "start_line": 253 + } + }, + "3427": { + "accessible_scopes": [ + "sheet.library", + "sheet.library.Sheet", + "sheet.library.Sheet.set_contract_uri" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 31, + "end_line": 254, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" + }, + "parent_location": [ + { + "end_col": 54, + "end_line": 256, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" + }, + "start_col": 38, + "start_line": 256 + }, + "While expanding the reference 'contract_uri_len' in:" + ], + "start_col": 9, + "start_line": 254 + } + }, + "3428": { + "accessible_scopes": [ + "sheet.library", + "sheet.library.Sheet", + "sheet.library.Sheet.set_contract_uri" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 55, + "end_line": 256, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" + }, + "start_col": 9, + "start_line": 256 + } + }, + "3430": { + "accessible_scopes": [ + "sheet.library", + "sheet.library.Sheet", + "sheet.library.Sheet.set_contract_uri" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 30, + "end_line": 257, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" + }, + "start_col": 29, + "start_line": 257 + } + }, + "3432": { + "accessible_scopes": [ + "sheet.library", + "sheet.library.Sheet", + "sheet.library.Sheet.set_contract_uri" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 31, + "end_line": 254, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" + }, + "parent_location": [ + { + "end_col": 48, + "end_line": 257, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" + }, + "start_col": 32, + "start_line": 257 + }, + "While expanding the reference 'contract_uri_len' in:" + ], + "start_col": 9, + "start_line": 254 + } + }, + "3433": { + "accessible_scopes": [ + "sheet.library", + "sheet.library.Sheet", + "sheet.library.Sheet.set_contract_uri" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 52, + "end_line": 254, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" + }, + "parent_location": [ + { + "end_col": 62, + "end_line": 257, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" + }, + "start_col": 50, + "start_line": 257 + }, + "While expanding the reference 'contract_uri' in:" + ], + "start_col": 33, + "start_line": 254 + } + }, + "3434": { + "accessible_scopes": [ + "sheet.library", + "sheet.library.Sheet", + "sheet.library.Sheet.set_contract_uri" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 63, + "end_line": 257, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" + }, + "start_col": 9, + "start_line": 257 + } + }, + "3436": { + "accessible_scopes": [ + "sheet.library", + "sheet.library.Sheet", + "sheet.library.Sheet.set_contract_uri" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 19, + "end_line": 258, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" + }, + "start_col": 9, + "start_line": 258 + } + }, + "3437": { + "accessible_scopes": [ + "sheet.library", + "sheet.library.Sheet", + "sheet.library.Sheet.open_mint" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 38, + "end_line": 261, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" + }, + "parent_location": [ + { + "end_col": 34, + "end_line": 19, + "input_file": { + "filename": "autogen/starknet/storage_var/Sheet_is_mint_open/decl.cairo" + }, + "parent_location": [ + { + "end_col": 36, + "end_line": 262, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" + }, + "start_col": 9, + "start_line": 262 + }, + "While trying to retrieve the implicit argument 'syscall_ptr' in:" + ], + "start_col": 16, + "start_line": 19 + }, + "While expanding the reference 'syscall_ptr' in:" + ], + "start_col": 20, + "start_line": 261 + } + }, + "3438": { + "accessible_scopes": [ + "sheet.library", + "sheet.library.Sheet", + "sheet.library.Sheet.open_mint" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 66, + "end_line": 261, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" + }, + "parent_location": [ + { + "end_col": 62, + "end_line": 19, + "input_file": { + "filename": "autogen/starknet/storage_var/Sheet_is_mint_open/decl.cairo" + }, + "parent_location": [ + { + "end_col": 36, + "end_line": 262, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" + }, + "start_col": 9, + "start_line": 262 + }, + "While trying to retrieve the implicit argument 'pedersen_ptr' in:" + ], + "start_col": 36, + "start_line": 19 + }, + "While expanding the reference 'pedersen_ptr' in:" + ], + "start_col": 40, + "start_line": 261 + } + }, + "3439": { + "accessible_scopes": [ + "sheet.library", + "sheet.library.Sheet", + "sheet.library.Sheet.open_mint" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 83, + "end_line": 261, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" + }, + "parent_location": [ + { + "end_col": 79, + "end_line": 19, + "input_file": { + "filename": "autogen/starknet/storage_var/Sheet_is_mint_open/decl.cairo" + }, + "parent_location": [ + { + "end_col": 36, + "end_line": 262, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" + }, + "start_col": 9, + "start_line": 262 + }, + "While trying to retrieve the implicit argument 'range_check_ptr' in:" + ], + "start_col": 64, + "start_line": 19 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 68, + "start_line": 261 + } + }, + "3440": { + "accessible_scopes": [ + "sheet.library", + "sheet.library.Sheet", + "sheet.library.Sheet.open_mint" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 35, + "end_line": 262, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" + }, + "start_col": 34, + "start_line": 262 + } + }, + "3442": { + "accessible_scopes": [ + "sheet.library", + "sheet.library.Sheet", + "sheet.library.Sheet.open_mint" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 36, + "end_line": 262, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" + }, + "start_col": 9, + "start_line": 262 + } + }, + "3444": { + "accessible_scopes": [ + "sheet.library", + "sheet.library.Sheet", + "sheet.library.Sheet.open_mint" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 19, + "end_line": 263, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" + }, + "start_col": 9, + "start_line": 263 + } + }, + "3445": { + "accessible_scopes": [ + "sheet.library", + "sheet.library.Sheet", + "sheet.library.Sheet.close_mint" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 39, + "end_line": 266, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" + }, + "parent_location": [ + { + "end_col": 34, + "end_line": 19, + "input_file": { + "filename": "autogen/starknet/storage_var/Sheet_is_mint_open/decl.cairo" + }, + "parent_location": [ + { + "end_col": 36, + "end_line": 267, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" + }, + "start_col": 9, + "start_line": 267 + }, + "While trying to retrieve the implicit argument 'syscall_ptr' in:" + ], + "start_col": 16, + "start_line": 19 + }, + "While expanding the reference 'syscall_ptr' in:" + ], + "start_col": 21, + "start_line": 266 + } + }, + "3446": { + "accessible_scopes": [ + "sheet.library", + "sheet.library.Sheet", + "sheet.library.Sheet.close_mint" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 67, + "end_line": 266, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" + }, + "parent_location": [ + { + "end_col": 62, + "end_line": 19, + "input_file": { + "filename": "autogen/starknet/storage_var/Sheet_is_mint_open/decl.cairo" + }, + "parent_location": [ + { + "end_col": 36, + "end_line": 267, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" + }, + "start_col": 9, + "start_line": 267 + }, + "While trying to retrieve the implicit argument 'pedersen_ptr' in:" + ], + "start_col": 36, + "start_line": 19 + }, + "While expanding the reference 'pedersen_ptr' in:" + ], + "start_col": 41, + "start_line": 266 + } + }, + "3447": { + "accessible_scopes": [ + "sheet.library", + "sheet.library.Sheet", + "sheet.library.Sheet.close_mint" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 84, + "end_line": 266, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" + }, + "parent_location": [ + { + "end_col": 79, + "end_line": 19, + "input_file": { + "filename": "autogen/starknet/storage_var/Sheet_is_mint_open/decl.cairo" + }, + "parent_location": [ + { + "end_col": 36, + "end_line": 267, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" + }, + "start_col": 9, + "start_line": 267 + }, + "While trying to retrieve the implicit argument 'range_check_ptr' in:" + ], + "start_col": 64, + "start_line": 19 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 69, + "start_line": 266 + } + }, + "3448": { + "accessible_scopes": [ + "sheet.library", + "sheet.library.Sheet", + "sheet.library.Sheet.close_mint" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 35, + "end_line": 267, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" + }, + "start_col": 34, + "start_line": 267 + } + }, + "3450": { + "accessible_scopes": [ + "sheet.library", + "sheet.library.Sheet", + "sheet.library.Sheet.close_mint" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 36, + "end_line": 267, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" + }, + "start_col": 9, + "start_line": 267 + } + }, + "3452": { + "accessible_scopes": [ + "sheet.library", + "sheet.library.Sheet", + "sheet.library.Sheet.close_mint" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 19, + "end_line": 268, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" + }, + "start_col": 9, + "start_line": 268 + } + }, + "3453": { + "accessible_scopes": [ + "sheet.library", + "sheet.library._set_calldata" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 50, + "end_line": 282, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" + }, + "start_col": 30, + "start_line": 282 + } + }, + "3454": { + "accessible_scopes": [ + "sheet.library", + "sheet.library._set_calldata" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 7, + "end_line": 283, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" + }, + "start_col": 5, + "start_line": 283 + } + }, + "3456": { + "accessible_scopes": [ + "sheet.library", + "sheet.library._set_calldata" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 23, + "end_line": 275, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" + }, + "parent_location": [ + { + "end_col": 23, + "end_line": 275, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" + }, + "parent_location": [ + { + "end_col": 19, + "end_line": 284, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" + }, + "start_col": 9, + "start_line": 284 + }, + "While trying to retrieve the implicit argument 'syscall_ptr' in:" + ], + "start_col": 5, + "start_line": 275 + }, + "While expanding the reference 'syscall_ptr' in:" + ], + "start_col": 5, + "start_line": 275 + } + }, + "3457": { + "accessible_scopes": [ + "sheet.library", + "sheet.library._set_calldata" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 31, + "end_line": 276, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" + }, + "parent_location": [ + { + "end_col": 31, + "end_line": 276, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" + }, + "parent_location": [ + { + "end_col": 19, + "end_line": 284, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" + }, + "start_col": 9, + "start_line": 284 + }, + "While trying to retrieve the implicit argument 'pedersen_ptr' in:" + ], + "start_col": 5, + "start_line": 276 + }, + "While expanding the reference 'pedersen_ptr' in:" + ], + "start_col": 5, + "start_line": 276 + } + }, + "3458": { + "accessible_scopes": [ + "sheet.library", + "sheet.library._set_calldata" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 20, + "end_line": 277, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" + }, + "parent_location": [ + { + "end_col": 20, + "end_line": 277, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" + }, + "parent_location": [ + { + "end_col": 19, + "end_line": 284, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" + }, + "start_col": 9, + "start_line": 284 + }, + "While trying to retrieve the implicit argument 'range_check_ptr' in:" + ], + "start_col": 5, + "start_line": 277 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 5, + "start_line": 277 + } + }, + "3459": { + "accessible_scopes": [ + "sheet.library", + "sheet.library._set_calldata" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 19, + "end_line": 278, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" + }, + "parent_location": [ + { + "end_col": 19, + "end_line": 278, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" + }, + "parent_location": [ + { + "end_col": 19, + "end_line": 284, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" + }, + "start_col": 9, + "start_line": 284 + }, + "While trying to retrieve the implicit argument 'token_id' in:" + ], + "start_col": 5, + "start_line": 278 + }, + "While expanding the reference 'token_id' in:" + ], + "start_col": 5, + "start_line": 278 + } + }, + "3460": { + "accessible_scopes": [ + "sheet.library", + "sheet.library._set_calldata" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 16, + "end_line": 279, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" + }, + "parent_location": [ + { + "end_col": 16, + "end_line": 279, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" + }, + "parent_location": [ + { + "end_col": 19, + "end_line": 284, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" + }, + "start_col": 9, + "start_line": 284 + }, + "While trying to retrieve the implicit argument 'index' in:" + ], + "start_col": 5, + "start_line": 279 + }, + "While expanding the reference 'index' in:" + ], + "start_col": 5, + "start_line": 279 + } + }, + "3461": { + "accessible_scopes": [ + "sheet.library", + "sheet.library._set_calldata" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 23, + "end_line": 280, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" + }, + "parent_location": [ + { + "end_col": 23, + "end_line": 280, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" + }, + "parent_location": [ + { + "end_col": 19, + "end_line": 284, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" + }, + "start_col": 9, + "start_line": 284 + }, + "While trying to retrieve the implicit argument 'calldata_len' in:" + ], + "start_col": 5, + "start_line": 280 + }, + "While expanding the reference 'calldata_len' in:" + ], + "start_col": 5, + "start_line": 280 + } + }, + "3462": { + "accessible_scopes": [ + "sheet.library", + "sheet.library._set_calldata" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 19, + "end_line": 284, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" + }, + "start_col": 9, + "start_line": 284 + } + }, + "3463": { + "accessible_scopes": [ + "sheet.library", + "sheet.library._set_calldata" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 23, + "end_line": 275, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" + }, + "parent_location": [ + { + "end_col": 34, + "end_line": 21, + "input_file": { + "filename": "autogen/starknet/storage_var/Sheet_cell_calldata/decl.cairo" + }, + "parent_location": [ + { + "end_col": 59, + "end_line": 286, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" + }, + "start_col": 5, + "start_line": 286 + }, + "While trying to retrieve the implicit argument 'syscall_ptr' in:" + ], + "start_col": 16, + "start_line": 21 + }, + "While expanding the reference 'syscall_ptr' in:" + ], + "start_col": 5, + "start_line": 275 + } + }, + "3464": { + "accessible_scopes": [ + "sheet.library", + "sheet.library._set_calldata" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 31, + "end_line": 276, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" + }, + "parent_location": [ + { + "end_col": 62, + "end_line": 21, + "input_file": { + "filename": "autogen/starknet/storage_var/Sheet_cell_calldata/decl.cairo" + }, + "parent_location": [ + { + "end_col": 59, + "end_line": 286, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" + }, + "start_col": 5, + "start_line": 286 + }, + "While trying to retrieve the implicit argument 'pedersen_ptr' in:" + ], + "start_col": 36, + "start_line": 21 + }, + "While expanding the reference 'pedersen_ptr' in:" + ], + "start_col": 5, + "start_line": 276 + } + }, + "3465": { + "accessible_scopes": [ + "sheet.library", + "sheet.library._set_calldata" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 20, + "end_line": 277, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" + }, + "parent_location": [ + { + "end_col": 79, + "end_line": 21, + "input_file": { + "filename": "autogen/starknet/storage_var/Sheet_cell_calldata/decl.cairo" + }, + "parent_location": [ + { + "end_col": 59, + "end_line": 286, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" + }, + "start_col": 5, + "start_line": 286 + }, + "While trying to retrieve the implicit argument 'range_check_ptr' in:" + ], + "start_col": 64, + "start_line": 21 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 5, + "start_line": 277 + } + }, + "3466": { + "accessible_scopes": [ + "sheet.library", + "sheet.library._set_calldata" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 19, + "end_line": 278, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" + }, + "parent_location": [ + { + "end_col": 39, + "end_line": 286, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" + }, + "start_col": 31, + "start_line": 286 + }, + "While expanding the reference 'token_id' in:" + ], + "start_col": 5, + "start_line": 278 + } + }, + "3467": { + "accessible_scopes": [ + "sheet.library", + "sheet.library._set_calldata" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 16, + "end_line": 279, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" + }, + "parent_location": [ + { + "end_col": 46, + "end_line": 286, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" + }, + "start_col": 41, + "start_line": 286 + }, + "While expanding the reference 'index' in:" + ], + "start_col": 5, + "start_line": 279 + } + }, + "3468": { + "accessible_scopes": [ + "sheet.library", + "sheet.library._set_calldata" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 58, + "end_line": 286, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" + }, + "start_col": 48, + "start_line": 286 + } + }, + "3469": { + "accessible_scopes": [ + "sheet.library", + "sheet.library._set_calldata" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 59, + "end_line": 286, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" + }, + "start_col": 5, + "start_line": 286 + } + }, + "3471": { + "accessible_scopes": [ + "sheet.library", + "sheet.library._set_calldata" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 19, + "end_line": 278, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" + }, + "parent_location": [ + { + "end_col": 19, + "end_line": 278, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" + }, + "parent_location": [ + { + "end_col": 49, + "end_line": 288, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" + }, + "start_col": 5, + "start_line": 288 + }, + "While trying to retrieve the implicit argument 'token_id' in:" + ], + "start_col": 5, + "start_line": 278 + }, + "While expanding the reference 'token_id' in:" + ], + "start_col": 5, + "start_line": 278 + } + }, + "3472": { + "accessible_scopes": [ + "sheet.library", + "sheet.library._set_calldata" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 30, + "end_line": 287, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" + }, + "parent_location": [ + { + "end_col": 34, + "end_line": 288, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" + }, + "start_col": 25, + "start_line": 288 + }, + "While expanding the reference 'index_new' in:" + ], + "start_col": 21, + "start_line": 287 + } + }, + "3474": { + "accessible_scopes": [ + "sheet.library", + "sheet.library._set_calldata" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 23, + "end_line": 280, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" + }, + "parent_location": [ + { + "end_col": 23, + "end_line": 280, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" + }, + "parent_location": [ + { + "end_col": 49, + "end_line": 288, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" + }, + "start_col": 5, + "start_line": 288 + }, + "While trying to retrieve the implicit argument 'calldata_len' in:" + ], + "start_col": 5, + "start_line": 280 + }, + "While expanding the reference 'calldata_len' in:" + ], + "start_col": 5, + "start_line": 280 + } + }, + "3475": { + "accessible_scopes": [ + "sheet.library", + "sheet.library._set_calldata" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 48, + "end_line": 288, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" + }, + "start_col": 36, + "start_line": 288 + } + }, + "3477": { + "accessible_scopes": [ + "sheet.library", + "sheet.library._set_calldata" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 49, + "end_line": 288, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" + }, + "start_col": 5, + "start_line": 288 + } + }, + "3479": { + "accessible_scopes": [ + "sheet.library", + "sheet.library._set_calldata" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 23, + "end_line": 275, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" + }, + "parent_location": [ + { + "end_col": 49, + "end_line": 288, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" + }, + "parent_location": [ + { + "end_col": 23, + "end_line": 275, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" + }, + "parent_location": [ + { + "end_col": 15, + "end_line": 289, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" + }, + "start_col": 5, + "start_line": 289 + }, + "While trying to retrieve the implicit argument 'syscall_ptr' in:" + ], + "start_col": 5, + "start_line": 275 + }, + "While expanding the reference 'syscall_ptr' in:" + ], + "start_col": 5, + "start_line": 288 + }, + "While trying to update the implicit return value 'syscall_ptr' in:" + ], + "start_col": 5, + "start_line": 275 + } + }, + "3480": { + "accessible_scopes": [ + "sheet.library", + "sheet.library._set_calldata" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 31, + "end_line": 276, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" + }, + "parent_location": [ + { + "end_col": 49, + "end_line": 288, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" + }, + "parent_location": [ + { + "end_col": 31, + "end_line": 276, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" + }, + "parent_location": [ + { + "end_col": 15, + "end_line": 289, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" + }, + "start_col": 5, + "start_line": 289 + }, + "While trying to retrieve the implicit argument 'pedersen_ptr' in:" + ], + "start_col": 5, + "start_line": 276 + }, + "While expanding the reference 'pedersen_ptr' in:" + ], + "start_col": 5, + "start_line": 288 + }, + "While trying to update the implicit return value 'pedersen_ptr' in:" + ], + "start_col": 5, + "start_line": 276 + } + }, + "3481": { + "accessible_scopes": [ + "sheet.library", + "sheet.library._set_calldata" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 20, + "end_line": 277, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" + }, + "parent_location": [ + { + "end_col": 49, + "end_line": 288, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" + }, + "parent_location": [ + { + "end_col": 20, + "end_line": 277, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" + }, + "parent_location": [ + { + "end_col": 15, + "end_line": 289, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" + }, + "start_col": 5, + "start_line": 289 + }, + "While trying to retrieve the implicit argument 'range_check_ptr' in:" + ], + "start_col": 5, + "start_line": 277 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 5, + "start_line": 288 + }, + "While trying to update the implicit return value 'range_check_ptr' in:" + ], + "start_col": 5, + "start_line": 277 + } + }, + "3482": { + "accessible_scopes": [ + "sheet.library", + "sheet.library._set_calldata" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 19, + "end_line": 278, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" + }, + "parent_location": [ + { + "end_col": 49, + "end_line": 288, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" + }, + "parent_location": [ + { + "end_col": 19, + "end_line": 278, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" + }, + "parent_location": [ + { + "end_col": 15, + "end_line": 289, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" + }, + "start_col": 5, + "start_line": 289 + }, + "While trying to retrieve the implicit argument 'token_id' in:" + ], + "start_col": 5, + "start_line": 278 + }, + "While expanding the reference 'token_id' in:" + ], + "start_col": 5, + "start_line": 288 + }, + "While trying to update the implicit return value 'token_id' in:" + ], + "start_col": 5, + "start_line": 278 + } + }, + "3483": { + "accessible_scopes": [ + "sheet.library", + "sheet.library._set_calldata" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 16, + "end_line": 279, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" + }, + "parent_location": [ + { + "end_col": 16, + "end_line": 279, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" + }, + "parent_location": [ + { + "end_col": 15, + "end_line": 289, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" + }, + "start_col": 5, + "start_line": 289 + }, + "While trying to retrieve the implicit argument 'index' in:" + ], + "start_col": 5, + "start_line": 279 + }, + "While expanding the reference 'index' in:" + ], + "start_col": 5, + "start_line": 279 + } + }, + "3484": { + "accessible_scopes": [ + "sheet.library", + "sheet.library._set_calldata" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 23, + "end_line": 280, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" + }, + "parent_location": [ + { + "end_col": 49, + "end_line": 288, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" + }, + "parent_location": [ + { + "end_col": 23, + "end_line": 280, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" + }, + "parent_location": [ + { + "end_col": 15, + "end_line": 289, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" + }, + "start_col": 5, + "start_line": 289 + }, + "While trying to retrieve the implicit argument 'calldata_len' in:" + ], + "start_col": 5, + "start_line": 280 + }, + "While expanding the reference 'calldata_len' in:" + ], + "start_col": 5, + "start_line": 288 + }, + "While trying to update the implicit return value 'calldata_len' in:" + ], + "start_col": 5, + "start_line": 280 + } + }, + "3485": { + "accessible_scopes": [ + "sheet.library", + "sheet.library._set_calldata" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 15, + "end_line": 289, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" + }, + "start_col": 5, + "start_line": 289 + } + }, + "3486": { + "accessible_scopes": [ + "sheet.library", + "sheet.library._get_calldata" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 50, + "end_line": 300, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" + }, + "start_col": 30, + "start_line": 300 + } + }, + "3487": { + "accessible_scopes": [ + "sheet.library", + "sheet.library._get_calldata" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 7, + "end_line": 301, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" + }, + "start_col": 5, + "start_line": 301 + } + }, + "3489": { + "accessible_scopes": [ + "sheet.library", + "sheet.library._get_calldata" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 23, + "end_line": 293, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" + }, + "parent_location": [ + { + "end_col": 23, + "end_line": 293, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" + }, + "parent_location": [ + { + "end_col": 19, + "end_line": 302, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" + }, + "start_col": 9, + "start_line": 302 + }, + "While trying to retrieve the implicit argument 'syscall_ptr' in:" + ], + "start_col": 5, + "start_line": 293 + }, + "While expanding the reference 'syscall_ptr' in:" + ], + "start_col": 5, + "start_line": 293 + } + }, + "3490": { + "accessible_scopes": [ + "sheet.library", + "sheet.library._get_calldata" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 31, + "end_line": 294, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" + }, + "parent_location": [ + { + "end_col": 31, + "end_line": 294, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" + }, + "parent_location": [ + { + "end_col": 19, + "end_line": 302, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" + }, + "start_col": 9, + "start_line": 302 + }, + "While trying to retrieve the implicit argument 'pedersen_ptr' in:" + ], + "start_col": 5, + "start_line": 294 + }, + "While expanding the reference 'pedersen_ptr' in:" + ], + "start_col": 5, + "start_line": 294 + } + }, + "3491": { + "accessible_scopes": [ + "sheet.library", + "sheet.library._get_calldata" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 20, + "end_line": 295, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" + }, + "parent_location": [ + { + "end_col": 20, + "end_line": 295, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" + }, + "parent_location": [ + { + "end_col": 19, + "end_line": 302, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" + }, + "start_col": 9, + "start_line": 302 + }, + "While trying to retrieve the implicit argument 'range_check_ptr' in:" + ], + "start_col": 5, + "start_line": 295 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 5, + "start_line": 295 + } + }, + "3492": { + "accessible_scopes": [ + "sheet.library", + "sheet.library._get_calldata" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 19, + "end_line": 296, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" + }, + "parent_location": [ + { + "end_col": 19, + "end_line": 296, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" + }, + "parent_location": [ + { + "end_col": 19, + "end_line": 302, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" + }, + "start_col": 9, + "start_line": 302 + }, + "While trying to retrieve the implicit argument 'token_id' in:" + ], + "start_col": 5, + "start_line": 296 + }, + "While expanding the reference 'token_id' in:" + ], + "start_col": 5, + "start_line": 296 + } + }, + "3493": { + "accessible_scopes": [ + "sheet.library", + "sheet.library._get_calldata" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 23, + "end_line": 297, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" + }, + "parent_location": [ + { + "end_col": 23, + "end_line": 297, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" + }, + "parent_location": [ + { + "end_col": 19, + "end_line": 302, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" + }, + "start_col": 9, + "start_line": 302 + }, + "While trying to retrieve the implicit argument 'calldata_len' in:" + ], + "start_col": 5, + "start_line": 297 + }, + "While expanding the reference 'calldata_len' in:" + ], + "start_col": 5, + "start_line": 297 + } + }, + "3494": { + "accessible_scopes": [ + "sheet.library", + "sheet.library._get_calldata" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 20, + "end_line": 298, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" + }, + "parent_location": [ + { + "end_col": 20, + "end_line": 298, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" + }, + "parent_location": [ + { + "end_col": 19, + "end_line": 302, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" + }, + "start_col": 9, + "start_line": 302 + }, + "While trying to retrieve the implicit argument 'calldata' in:" + ], + "start_col": 5, + "start_line": 298 + }, + "While expanding the reference 'calldata' in:" + ], + "start_col": 5, + "start_line": 298 + } + }, + "3495": { + "accessible_scopes": [ + "sheet.library", + "sheet.library._get_calldata" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 19, + "end_line": 302, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" + }, + "start_col": 9, + "start_line": 302 + } + }, + "3496": { + "accessible_scopes": [ + "sheet.library", + "sheet.library._get_calldata" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 23, + "end_line": 293, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" + }, + "parent_location": [ + { + "end_col": 33, + "end_line": 13, + "input_file": { + "filename": "autogen/starknet/storage_var/Sheet_cell_calldata/decl.cairo" + }, + "parent_location": [ + { + "end_col": 67, + "end_line": 304, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" + }, + "start_col": 26, + "start_line": 304 + }, + "While trying to retrieve the implicit argument 'syscall_ptr' in:" + ], + "start_col": 15, + "start_line": 13 + }, + "While expanding the reference 'syscall_ptr' in:" + ], + "start_col": 5, + "start_line": 293 + } + }, + "3497": { + "accessible_scopes": [ + "sheet.library", + "sheet.library._get_calldata" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 31, + "end_line": 294, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" + }, + "parent_location": [ + { + "end_col": 61, + "end_line": 13, + "input_file": { + "filename": "autogen/starknet/storage_var/Sheet_cell_calldata/decl.cairo" + }, + "parent_location": [ + { + "end_col": 67, + "end_line": 304, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" + }, + "start_col": 26, + "start_line": 304 + }, + "While trying to retrieve the implicit argument 'pedersen_ptr' in:" + ], + "start_col": 35, + "start_line": 13 + }, + "While expanding the reference 'pedersen_ptr' in:" + ], + "start_col": 5, + "start_line": 294 + } + }, + "3498": { + "accessible_scopes": [ + "sheet.library", + "sheet.library._get_calldata" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 20, + "end_line": 295, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" + }, + "parent_location": [ + { + "end_col": 78, + "end_line": 13, + "input_file": { + "filename": "autogen/starknet/storage_var/Sheet_cell_calldata/decl.cairo" + }, + "parent_location": [ + { + "end_col": 67, + "end_line": 304, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" + }, + "start_col": 26, + "start_line": 304 + }, + "While trying to retrieve the implicit argument 'range_check_ptr' in:" + ], + "start_col": 63, + "start_line": 13 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 5, + "start_line": 295 + } + }, + "3499": { + "accessible_scopes": [ + "sheet.library", + "sheet.library._get_calldata" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 19, + "end_line": 296, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" + }, + "parent_location": [ + { + "end_col": 59, + "end_line": 304, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" + }, + "start_col": 51, + "start_line": 304 + }, + "While expanding the reference 'token_id' in:" + ], + "start_col": 5, + "start_line": 296 + } + }, + "3500": { + "accessible_scopes": [ + "sheet.library", + "sheet.library._get_calldata" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 14, + "end_line": 299, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" + }, + "parent_location": [ + { + "end_col": 66, + "end_line": 304, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" + }, + "start_col": 61, + "start_line": 304 + }, + "While expanding the reference 'index' in:" + ], + "start_col": 3, + "start_line": 299 + } + }, + "3501": { + "accessible_scopes": [ + "sheet.library", + "sheet.library._get_calldata" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 67, + "end_line": 304, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" + }, + "start_col": 26, + "start_line": 304 + } + }, + "3503": { + "accessible_scopes": [ + "sheet.library", + "sheet.library._get_calldata" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 27, + "end_line": 305, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" + }, + "start_col": 12, + "start_line": 305 + } + }, + "3504": { + "accessible_scopes": [ + "sheet.library", + "sheet.library._get_calldata" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 43, + "end_line": 305, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" + }, + "start_col": 5, + "start_line": 305 + } + }, + "3505": { + "accessible_scopes": [ + "sheet.library", + "sheet.library._get_calldata" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 33, + "end_line": 13, + "input_file": { + "filename": "autogen/starknet/storage_var/Sheet_cell_calldata/decl.cairo" + }, + "parent_location": [ + { + "end_col": 67, + "end_line": 304, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" + }, + "parent_location": [ + { + "end_col": 23, + "end_line": 293, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" + }, + "parent_location": [ + { + "end_col": 29, + "end_line": 306, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" + }, + "start_col": 5, + "start_line": 306 + }, + "While trying to retrieve the implicit argument 'syscall_ptr' in:" + ], + "start_col": 5, + "start_line": 293 + }, + "While expanding the reference 'syscall_ptr' in:" + ], + "start_col": 26, + "start_line": 304 + }, + "While trying to update the implicit return value 'syscall_ptr' in:" + ], + "start_col": 15, + "start_line": 13 + } + }, + "3506": { + "accessible_scopes": [ + "sheet.library", + "sheet.library._get_calldata" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 61, + "end_line": 13, + "input_file": { + "filename": "autogen/starknet/storage_var/Sheet_cell_calldata/decl.cairo" + }, + "parent_location": [ + { + "end_col": 67, + "end_line": 304, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" + }, + "parent_location": [ + { + "end_col": 31, + "end_line": 294, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" + }, + "parent_location": [ + { + "end_col": 29, + "end_line": 306, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" + }, + "start_col": 5, + "start_line": 306 + }, + "While trying to retrieve the implicit argument 'pedersen_ptr' in:" + ], + "start_col": 5, + "start_line": 294 + }, + "While expanding the reference 'pedersen_ptr' in:" + ], + "start_col": 26, + "start_line": 304 + }, + "While trying to update the implicit return value 'pedersen_ptr' in:" + ], + "start_col": 35, + "start_line": 13 + } + }, + "3507": { + "accessible_scopes": [ + "sheet.library", + "sheet.library._get_calldata" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 78, + "end_line": 13, + "input_file": { + "filename": "autogen/starknet/storage_var/Sheet_cell_calldata/decl.cairo" + }, + "parent_location": [ + { + "end_col": 67, + "end_line": 304, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" + }, + "parent_location": [ + { + "end_col": 20, + "end_line": 295, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" + }, + "parent_location": [ + { + "end_col": 29, + "end_line": 306, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" + }, + "start_col": 5, + "start_line": 306 + }, + "While trying to retrieve the implicit argument 'range_check_ptr' in:" + ], + "start_col": 5, + "start_line": 295 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 26, + "start_line": 304 + }, + "While trying to update the implicit return value 'range_check_ptr' in:" + ], + "start_col": 63, + "start_line": 13 + } + }, + "3508": { + "accessible_scopes": [ + "sheet.library", + "sheet.library._get_calldata" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 19, + "end_line": 296, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" + }, + "parent_location": [ + { + "end_col": 19, + "end_line": 296, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" + }, + "parent_location": [ + { + "end_col": 29, + "end_line": 306, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" + }, + "start_col": 5, + "start_line": 306 + }, + "While trying to retrieve the implicit argument 'token_id' in:" + ], + "start_col": 5, + "start_line": 296 + }, + "While expanding the reference 'token_id' in:" + ], + "start_col": 5, + "start_line": 296 + } + }, + "3509": { + "accessible_scopes": [ + "sheet.library", + "sheet.library._get_calldata" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 23, + "end_line": 297, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" + }, + "parent_location": [ + { + "end_col": 23, + "end_line": 297, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" + }, + "parent_location": [ + { + "end_col": 29, + "end_line": 306, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" + }, + "start_col": 5, + "start_line": 306 + }, + "While trying to retrieve the implicit argument 'calldata_len' in:" + ], + "start_col": 5, + "start_line": 297 + }, + "While expanding the reference 'calldata_len' in:" + ], + "start_col": 5, + "start_line": 297 + } + }, + "3510": { + "accessible_scopes": [ + "sheet.library", + "sheet.library._get_calldata" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 20, + "end_line": 298, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" + }, + "parent_location": [ + { + "end_col": 20, + "end_line": 298, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" + }, + "parent_location": [ + { + "end_col": 29, + "end_line": 306, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" + }, + "start_col": 5, + "start_line": 306 + }, + "While trying to retrieve the implicit argument 'calldata' in:" + ], + "start_col": 5, + "start_line": 298 + }, + "While expanding the reference 'calldata' in:" + ], + "start_col": 5, + "start_line": 298 + } + }, + "3511": { + "accessible_scopes": [ + "sheet.library", + "sheet.library._get_calldata" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 28, + "end_line": 306, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" + }, + "start_col": 19, + "start_line": 306 + } + }, + "3513": { + "accessible_scopes": [ + "sheet.library", + "sheet.library._get_calldata" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 29, + "end_line": 306, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" + }, + "start_col": 5, + "start_line": 306 + } + }, + "3515": { + "accessible_scopes": [ + "sheet.library", + "sheet.library._get_calldata" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 15, + "end_line": 307, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" + }, + "start_col": 5, + "start_line": 307 + } + }, + "3516": { + "accessible_scopes": [ + "sheet.library", + "sheet.library._render_cell" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 18, + "end_line": 317, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" + }, + "start_col": 5, + "start_line": 317 + } + }, + "3518": { + "accessible_scopes": [ + "sheet.library", + "sheet.library._render_cell" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 7, + "end_line": 318, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" + }, + "start_col": 5, + "start_line": 318 + } + }, + "3520": { + "accessible_scopes": [ + "sheet.library", + "sheet.library._render_cell" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 23, + "end_line": 311, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" + }, + "parent_location": [ + { + "end_col": 23, + "end_line": 311, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" + }, + "parent_location": [ + { + "end_col": 25, + "end_line": 319, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" + }, + "start_col": 9, + "start_line": 319 + }, + "While trying to retrieve the implicit argument 'syscall_ptr' in:" + ], + "start_col": 5, + "start_line": 311 + }, + "While expanding the reference 'syscall_ptr' in:" + ], + "start_col": 5, + "start_line": 311 + } + }, + "3521": { + "accessible_scopes": [ + "sheet.library", + "sheet.library._render_cell" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 31, + "end_line": 312, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" + }, + "parent_location": [ + { + "end_col": 31, + "end_line": 312, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" + }, + "parent_location": [ + { + "end_col": 25, + "end_line": 319, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" + }, + "start_col": 9, + "start_line": 319 + }, + "While trying to retrieve the implicit argument 'pedersen_ptr' in:" + ], + "start_col": 5, + "start_line": 312 + }, + "While expanding the reference 'pedersen_ptr' in:" + ], + "start_col": 5, + "start_line": 312 + } + }, + "3522": { + "accessible_scopes": [ + "sheet.library", + "sheet.library._render_cell" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 20, + "end_line": 313, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" + }, + "parent_location": [ + { + "end_col": 20, + "end_line": 313, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" + }, + "parent_location": [ + { + "end_col": 25, + "end_line": 319, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" + }, + "start_col": 9, + "start_line": 319 + }, + "While trying to retrieve the implicit argument 'range_check_ptr' in:" + ], + "start_col": 5, + "start_line": 313 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 5, + "start_line": 313 + } + }, + "3523": { + "accessible_scopes": [ + "sheet.library", + "sheet.library._render_cell" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 32, + "end_line": 314, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" + }, + "parent_location": [ + { + "end_col": 32, + "end_line": 314, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" + }, + "parent_location": [ + { + "end_col": 25, + "end_line": 319, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" + }, + "start_col": 9, + "start_line": 319 + }, + "While trying to retrieve the implicit argument 'rendered_cells' in:" + ], + "start_col": 5, + "start_line": 314 + }, + "While expanding the reference 'rendered_cells' in:" + ], + "start_col": 5, + "start_line": 314 + } + }, + "3524": { + "accessible_scopes": [ + "sheet.library", + "sheet.library._render_cell" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 28, + "end_line": 315, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" + }, + "parent_location": [ + { + "end_col": 28, + "end_line": 315, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" + }, + "parent_location": [ + { + "end_col": 25, + "end_line": 319, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" + }, + "start_col": 9, + "start_line": 319 + }, + "While trying to retrieve the implicit argument 'value_is_token_id' in:" + ], + "start_col": 5, + "start_line": 315 + }, + "While expanding the reference 'value_is_token_id' in:" + ], + "start_col": 5, + "start_line": 315 + } + }, + "3525": { + "accessible_scopes": [ + "sheet.library", + "sheet.library._render_cell" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 14, + "end_line": 316, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" + }, + "parent_location": [ + { + "end_col": 22, + "end_line": 319, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" + }, + "start_col": 17, + "start_line": 319 + }, + "While expanding the reference 'value' in:" + ], + "start_col": 3, + "start_line": 316 + } + }, + "3526": { + "accessible_scopes": [ + "sheet.library", + "sheet.library._render_cell" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 25, + "end_line": 319, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" + }, + "start_col": 9, + "start_line": 319 + } + }, + "3527": { + "accessible_scopes": [ + "sheet.library", + "sheet.library._render_cell" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 32, + "end_line": 314, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" + }, + "parent_location": [ + { + "end_col": 60, + "end_line": 322, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" + }, + "start_col": 46, + "start_line": 322 + }, + "While expanding the reference 'rendered_cells' in:" + ], + "start_col": 5, + "start_line": 314 + } + }, + "3528": { + "accessible_scopes": [ + "sheet.library", + "sheet.library._render_cell" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 14, + "end_line": 316, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" + }, + "parent_location": [ + { + "end_col": 67, + "end_line": 322, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" + }, + "start_col": 62, + "start_line": 322 + }, + "While expanding the reference 'value' in:" + ], + "start_col": 3, + "start_line": 316 + } + }, + "3529": { + "accessible_scopes": [ + "sheet.library", + "sheet.library._render_cell" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 68, + "end_line": 322, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" + }, + "start_col": 27, + "start_line": 322 + } + }, + "3531": { + "accessible_scopes": [ + "sheet.library", + "sheet.library._render_cell" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 60, + "end_line": 322, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" + }, + "parent_location": [ + { + "end_col": 60, + "end_line": 322, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" + }, + "start_col": 46, + "start_line": 322 + }, + "While auto generating local variable for 'rendered_cells'." + ], + "start_col": 46, + "start_line": 322 + } + }, + "3532": { + "accessible_scopes": [ + "sheet.library", + "sheet.library._render_cell" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 39, + "end_line": 323, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" + }, + "start_col": 9, + "start_line": 323 + } + }, + "3534": { + "accessible_scopes": [ + "sheet.library", + "sheet.library._render_cell" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 7, + "end_line": 323, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" + }, + "start_col": 5, + "start_line": 323 + } + }, + "3536": { + "accessible_scopes": [ + "sheet.library", + "sheet.library._render_cell" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 7, + "end_line": 323, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" + }, + "start_col": 5, + "start_line": 323 + } + }, + "3538": { + "accessible_scopes": [ + "sheet.library", + "sheet.library._render_cell" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 23, + "end_line": 311, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" + }, + "parent_location": [ + { + "end_col": 23, + "end_line": 311, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" + }, + "parent_location": [ + { + "end_col": 33, + "end_line": 324, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" + }, + "start_col": 9, + "start_line": 324 + }, + "While trying to retrieve the implicit argument 'syscall_ptr' in:" + ], + "start_col": 5, + "start_line": 311 + }, + "While expanding the reference 'syscall_ptr' in:" + ], + "start_col": 5, + "start_line": 311 + } + }, + "3539": { + "accessible_scopes": [ + "sheet.library", + "sheet.library._render_cell" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 31, + "end_line": 312, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" + }, + "parent_location": [ + { + "end_col": 31, + "end_line": 312, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" + }, + "parent_location": [ + { + "end_col": 33, + "end_line": 324, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" + }, + "start_col": 9, + "start_line": 324 + }, + "While trying to retrieve the implicit argument 'pedersen_ptr' in:" + ], + "start_col": 5, + "start_line": 312 + }, + "While expanding the reference 'pedersen_ptr' in:" + ], + "start_col": 5, + "start_line": 312 + } + }, + "3540": { + "accessible_scopes": [ + "sheet.library", + "sheet.library._render_cell" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 20, + "end_line": 313, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" + }, + "parent_location": [ + { + "end_col": 20, + "end_line": 313, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" + }, + "parent_location": [ + { + "end_col": 33, + "end_line": 324, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" + }, + "start_col": 9, + "start_line": 324 + }, + "While trying to retrieve the implicit argument 'range_check_ptr' in:" + ], + "start_col": 5, + "start_line": 313 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 5, + "start_line": 313 + } + }, + "3541": { + "accessible_scopes": [ + "sheet.library", + "sheet.library._render_cell" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 60, + "end_line": 322, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" + }, + "parent_location": [ + { + "end_col": 60, + "end_line": 322, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" + }, + "parent_location": [ + { + "end_col": 32, + "end_line": 314, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" + }, + "parent_location": [ + { + "end_col": 33, + "end_line": 324, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" + }, + "start_col": 9, + "start_line": 324 + }, + "While trying to retrieve the implicit argument 'rendered_cells' in:" + ], + "start_col": 5, + "start_line": 314 + }, + "While expanding the reference 'rendered_cells' in:" + ], + "start_col": 46, + "start_line": 322 + }, + "While auto generating local variable for 'rendered_cells'." + ], + "start_col": 46, + "start_line": 322 + } + }, + "3542": { + "accessible_scopes": [ + "sheet.library", + "sheet.library._render_cell" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 28, + "end_line": 315, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" + }, + "parent_location": [ + { + "end_col": 28, + "end_line": 315, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" + }, + "parent_location": [ + { + "end_col": 33, + "end_line": 324, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" + }, + "start_col": 9, + "start_line": 324 + }, + "While trying to retrieve the implicit argument 'value_is_token_id' in:" + ], + "start_col": 5, + "start_line": 315 + }, + "While expanding the reference 'value_is_token_id' in:" + ], + "start_col": 5, + "start_line": 315 + } + }, + "3543": { + "accessible_scopes": [ + "sheet.library", + "sheet.library._render_cell" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 23, + "end_line": 322, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" + }, + "parent_location": [ + { + "end_col": 30, + "end_line": 324, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" + }, + "start_col": 17, + "start_line": 324 + }, + "While expanding the reference 'stored_result' in:" + ], + "start_col": 10, + "start_line": 322 + } + }, + "3544": { + "accessible_scopes": [ + "sheet.library", + "sheet.library._render_cell" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 33, + "end_line": 324, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" + }, + "start_col": 9, + "start_line": 324 + } + }, + "3545": { + "accessible_scopes": [ + "sheet.library", + "sheet.library._render_cell" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 23, + "end_line": 311, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" + }, + "parent_location": [ + { + "end_col": 37, + "end_line": 140, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" + }, + "parent_location": [ + { + "end_col": 83, + "end_line": 327, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" + }, + "start_col": 62, + "start_line": 327 + }, + "While trying to retrieve the implicit argument 'syscall_ptr' in:" + ], + "start_col": 19, + "start_line": 140 + }, + "While expanding the reference 'syscall_ptr' in:" + ], + "start_col": 5, + "start_line": 311 + } + }, + "3546": { + "accessible_scopes": [ + "sheet.library", + "sheet.library._render_cell" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 31, + "end_line": 312, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" + }, + "parent_location": [ + { + "end_col": 65, + "end_line": 140, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" + }, + "parent_location": [ + { + "end_col": 83, + "end_line": 327, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" + }, + "start_col": 62, + "start_line": 327 + }, + "While trying to retrieve the implicit argument 'pedersen_ptr' in:" + ], + "start_col": 39, + "start_line": 140 + }, + "While expanding the reference 'pedersen_ptr' in:" + ], + "start_col": 5, + "start_line": 312 + } + }, + "3547": { + "accessible_scopes": [ + "sheet.library", + "sheet.library._render_cell" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 20, + "end_line": 313, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" + }, + "parent_location": [ + { + "end_col": 82, + "end_line": 140, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" + }, + "parent_location": [ + { + "end_col": 83, + "end_line": 327, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" + }, + "start_col": 62, + "start_line": 327 + }, + "While trying to retrieve the implicit argument 'range_check_ptr' in:" + ], + "start_col": 67, + "start_line": 140 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 5, + "start_line": 313 + } + }, + "3548": { + "accessible_scopes": [ + "sheet.library", + "sheet.library._render_cell" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 14, + "end_line": 316, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" + }, + "parent_location": [ + { + "end_col": 82, + "end_line": 327, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" + }, + "start_col": 77, + "start_line": 327 + }, + "While expanding the reference 'value' in:" + ], + "start_col": 3, + "start_line": 316 + } + }, + "3549": { + "accessible_scopes": [ + "sheet.library", + "sheet.library._render_cell" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 83, + "end_line": 327, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" + }, + "start_col": 62, + "start_line": 327 + } + }, + "3551": { + "accessible_scopes": [ + "sheet.library", + "sheet.library._render_cell" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 58, + "end_line": 327, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" + }, + "parent_location": [ + { + "end_col": 58, + "end_line": 327, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" + }, + "start_col": 50, + "start_line": 327 + }, + "While auto generating local variable for 'calldata'." + ], + "start_col": 50, + "start_line": 327 + } + }, + "3552": { + "accessible_scopes": [ + "sheet.library", + "sheet.library._render_cell" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 48, + "end_line": 327, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" + }, + "parent_location": [ + { + "end_col": 48, + "end_line": 327, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" + }, + "start_col": 36, + "start_line": 327 + }, + "While auto generating local variable for 'calldata_len'." + ], + "start_col": 36, + "start_line": 327 + } + }, + "3553": { + "accessible_scopes": [ + "sheet.library", + "sheet.library._render_cell" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 34, + "end_line": 327, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" + }, + "parent_location": [ + { + "end_col": 34, + "end_line": 327, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" + }, + "start_col": 28, + "start_line": 327 + }, + "While auto generating local variable for 'result'." + ], + "start_col": 28, + "start_line": 327 + } + }, + "3554": { + "accessible_scopes": [ + "sheet.library", + "sheet.library._render_cell" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 37, + "end_line": 328, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" + }, + "start_col": 9, + "start_line": 328 + } + }, + "3556": { + "accessible_scopes": [ + "sheet.library", + "sheet.library._render_cell" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 7, + "end_line": 328, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" + }, + "start_col": 5, + "start_line": 328 + } + }, + "3558": { + "accessible_scopes": [ + "sheet.library", + "sheet.library._render_cell" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 60, + "end_line": 322, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" + }, + "parent_location": [ + { + "end_col": 60, + "end_line": 322, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" + }, + "parent_location": [ + { + "end_col": 43, + "end_line": 329, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" + }, + "start_col": 29, + "start_line": 329 + }, + "While expanding the reference 'rendered_cells' in:" + ], + "start_col": 46, + "start_line": 322 + }, + "While auto generating local variable for 'rendered_cells'." + ], + "start_col": 46, + "start_line": 322 + } + }, + "3559": { + "accessible_scopes": [ + "sheet.library", + "sheet.library._render_cell" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 14, + "end_line": 316, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" + }, + "parent_location": [ + { + "end_col": 50, + "end_line": 329, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" + }, + "start_col": 45, + "start_line": 329 + }, + "While expanding the reference 'value' in:" + ], + "start_col": 3, + "start_line": 316 + } + }, + "3560": { + "accessible_scopes": [ + "sheet.library", + "sheet.library._render_cell" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 34, + "end_line": 327, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" + }, + "parent_location": [ + { + "end_col": 34, + "end_line": 327, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" + }, + "parent_location": [ + { + "end_col": 58, + "end_line": 329, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" + }, + "start_col": 52, + "start_line": 329 + }, + "While expanding the reference 'result' in:" + ], + "start_col": 28, + "start_line": 327 + }, + "While auto generating local variable for 'result'." + ], + "start_col": 28, + "start_line": 327 + } + }, + "3561": { + "accessible_scopes": [ + "sheet.library", + "sheet.library._render_cell" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 59, + "end_line": 329, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" + }, + "start_col": 9, + "start_line": 329 + } + }, + "3563": { + "accessible_scopes": [ + "sheet.library", + "sheet.library._render_cell" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 37, + "end_line": 140, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" + }, + "parent_location": [ + { + "end_col": 83, + "end_line": 327, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" + }, + "parent_location": [ + { + "end_col": 23, + "end_line": 311, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" + }, + "parent_location": [ + { + "end_col": 26, + "end_line": 330, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" + }, + "start_col": 9, + "start_line": 330 + }, + "While trying to retrieve the implicit argument 'syscall_ptr' in:" + ], + "start_col": 5, + "start_line": 311 + }, + "While expanding the reference 'syscall_ptr' in:" + ], + "start_col": 62, + "start_line": 327 + }, + "While trying to update the implicit return value 'syscall_ptr' in:" + ], + "start_col": 19, + "start_line": 140 + } + }, + "3564": { + "accessible_scopes": [ + "sheet.library", + "sheet.library._render_cell" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 65, + "end_line": 140, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" + }, + "parent_location": [ + { + "end_col": 83, + "end_line": 327, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" + }, + "parent_location": [ + { + "end_col": 31, + "end_line": 312, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" + }, + "parent_location": [ + { + "end_col": 26, + "end_line": 330, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" + }, + "start_col": 9, + "start_line": 330 + }, + "While trying to retrieve the implicit argument 'pedersen_ptr' in:" + ], + "start_col": 5, + "start_line": 312 + }, + "While expanding the reference 'pedersen_ptr' in:" + ], + "start_col": 62, + "start_line": 327 + }, + "While trying to update the implicit return value 'pedersen_ptr' in:" + ], + "start_col": 39, + "start_line": 140 + } + }, + "3565": { + "accessible_scopes": [ + "sheet.library", + "sheet.library._render_cell" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 82, + "end_line": 140, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" + }, + "parent_location": [ + { + "end_col": 83, + "end_line": 327, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" + }, + "parent_location": [ + { + "end_col": 20, + "end_line": 313, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" + }, + "parent_location": [ + { + "end_col": 26, + "end_line": 330, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" + }, + "start_col": 9, + "start_line": 330 + }, + "While trying to retrieve the implicit argument 'range_check_ptr' in:" + ], + "start_col": 5, + "start_line": 313 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 62, + "start_line": 327 + }, + "While trying to update the implicit return value 'range_check_ptr' in:" + ], + "start_col": 67, + "start_line": 140 + } + }, + "3566": { + "accessible_scopes": [ + "sheet.library", + "sheet.library._render_cell" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 43, + "end_line": 329, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" + }, + "parent_location": [ + { + "end_col": 32, + "end_line": 314, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" + }, + "parent_location": [ + { + "end_col": 26, + "end_line": 330, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" + }, + "start_col": 9, + "start_line": 330 + }, + "While trying to retrieve the implicit argument 'rendered_cells' in:" + ], + "start_col": 5, + "start_line": 314 + }, + "While expanding the reference 'rendered_cells' in:" + ], + "start_col": 29, + "start_line": 329 + } + }, + "3567": { + "accessible_scopes": [ + "sheet.library", + "sheet.library._render_cell" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 28, + "end_line": 315, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" + }, + "parent_location": [ + { + "end_col": 28, + "end_line": 315, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" + }, + "parent_location": [ + { + "end_col": 26, + "end_line": 330, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" + }, + "start_col": 9, + "start_line": 330 + }, + "While trying to retrieve the implicit argument 'value_is_token_id' in:" + ], + "start_col": 5, + "start_line": 315 + }, + "While expanding the reference 'value_is_token_id' in:" + ], + "start_col": 5, + "start_line": 315 + } + }, + "3568": { + "accessible_scopes": [ + "sheet.library", + "sheet.library._render_cell" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 34, + "end_line": 327, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" + }, + "parent_location": [ + { + "end_col": 34, + "end_line": 327, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" + }, + "parent_location": [ + { + "end_col": 23, + "end_line": 330, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" + }, + "start_col": 17, + "start_line": 330 + }, + "While expanding the reference 'result' in:" + ], + "start_col": 28, + "start_line": 327 + }, + "While auto generating local variable for 'result'." + ], + "start_col": 28, + "start_line": 327 + } + }, + "3569": { + "accessible_scopes": [ + "sheet.library", + "sheet.library._render_cell" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 26, + "end_line": 330, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" + }, + "start_col": 9, + "start_line": 330 + } + }, + "3570": { + "accessible_scopes": [ + "sheet.library", + "sheet.library._render_cell" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 82, + "end_line": 140, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" + }, + "parent_location": [ + { + "end_col": 83, + "end_line": 327, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" + }, + "parent_location": [ + { + "end_col": 27, + "end_line": 18, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/math_cmp.cairo" + }, + "parent_location": [ + { + "end_col": 63, + "end_line": 333, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" + }, + "start_col": 40, + "start_line": 333 + }, + "While trying to retrieve the implicit argument 'range_check_ptr' in:" + ], + "start_col": 12, + "start_line": 18 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 62, + "start_line": 327 + }, + "While trying to update the implicit return value 'range_check_ptr' in:" + ], + "start_col": 67, + "start_line": 140 + } + }, + "3571": { + "accessible_scopes": [ + "sheet.library", + "sheet.library._render_cell" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 26, + "end_line": 327, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" + }, + "parent_location": [ + { + "end_col": 62, + "end_line": 333, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" + }, + "start_col": 46, + "start_line": 333 + }, + "While expanding the reference 'contract_address' in:" + ], + "start_col": 10, + "start_line": 327 + } + }, + "3572": { + "accessible_scopes": [ + "sheet.library", + "sheet.library._render_cell" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 63, + "end_line": 333, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" + }, + "start_col": 40, + "start_line": 333 + } + }, + "3574": { + "accessible_scopes": [ + "sheet.library", + "sheet.library._render_cell" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 37, + "end_line": 140, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" + }, + "parent_location": [ + { + "end_col": 83, + "end_line": 327, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" + }, + "parent_location": [ + { + "end_col": 23, + "end_line": 311, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" + }, + "parent_location": [ + { + "end_col": 24, + "end_line": 336, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" + }, + "start_col": 45, + "start_line": 334 + }, + "While trying to retrieve the implicit argument 'syscall_ptr' in:" + ], + "start_col": 5, + "start_line": 311 + }, + "While expanding the reference 'syscall_ptr' in:" + ], + "start_col": 62, + "start_line": 327 + }, + "While trying to update the implicit return value 'syscall_ptr' in:" + ], + "start_col": 19, + "start_line": 140 + } + }, + "3575": { + "accessible_scopes": [ + "sheet.library", + "sheet.library._render_cell" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 65, + "end_line": 140, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" + }, + "parent_location": [ + { + "end_col": 83, + "end_line": 327, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" + }, + "parent_location": [ + { + "end_col": 31, + "end_line": 312, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" + }, + "parent_location": [ + { + "end_col": 24, + "end_line": 336, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" + }, + "start_col": 45, + "start_line": 334 + }, + "While trying to retrieve the implicit argument 'pedersen_ptr' in:" + ], + "start_col": 5, + "start_line": 312 + }, + "While expanding the reference 'pedersen_ptr' in:" + ], + "start_col": 62, + "start_line": 327 + }, + "While trying to update the implicit return value 'pedersen_ptr' in:" + ], + "start_col": 39, + "start_line": 140 + } + }, + "3576": { + "accessible_scopes": [ + "sheet.library", + "sheet.library._render_cell" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 27, + "end_line": 18, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/math_cmp.cairo" + }, + "parent_location": [ + { + "end_col": 63, + "end_line": 333, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" + }, + "parent_location": [ + { + "end_col": 20, + "end_line": 313, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" + }, + "parent_location": [ + { + "end_col": 24, + "end_line": 336, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" + }, + "start_col": 45, + "start_line": 334 + }, + "While trying to retrieve the implicit argument 'range_check_ptr' in:" + ], + "start_col": 5, + "start_line": 313 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 40, + "start_line": 333 + }, + "While trying to update the implicit return value 'range_check_ptr' in:" + ], + "start_col": 12, + "start_line": 18 + } + }, + "3577": { + "accessible_scopes": [ + "sheet.library", + "sheet.library._render_cell" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 60, + "end_line": 322, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" + }, + "parent_location": [ + { + "end_col": 60, + "end_line": 322, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" + }, + "parent_location": [ + { + "end_col": 32, + "end_line": 314, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" + }, + "parent_location": [ + { + "end_col": 24, + "end_line": 336, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" + }, + "start_col": 45, + "start_line": 334 + }, + "While trying to retrieve the implicit argument 'rendered_cells' in:" + ], + "start_col": 5, + "start_line": 314 + }, + "While expanding the reference 'rendered_cells' in:" + ], + "start_col": 46, + "start_line": 322 + }, + "While auto generating local variable for 'rendered_cells'." + ], + "start_col": 46, + "start_line": 322 + } + }, + "3578": { + "accessible_scopes": [ + "sheet.library", + "sheet.library._render_cell" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 37, + "end_line": 333, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" + }, + "parent_location": [ + { + "end_col": 55, + "end_line": 335, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" + }, + "start_col": 27, + "start_line": 335 + }, + "While expanding the reference 'contract_address_is_token_id' in:" + ], + "start_col": 9, + "start_line": 333 + } + }, + "3579": { + "accessible_scopes": [ + "sheet.library", + "sheet.library._render_cell" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 26, + "end_line": 327, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" + }, + "parent_location": [ + { + "end_col": 23, + "end_line": 336, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" + }, + "start_col": 7, + "start_line": 336 + }, + "While expanding the reference 'contract_address' in:" + ], + "start_col": 10, + "start_line": 327 + } + }, + "3580": { + "accessible_scopes": [ + "sheet.library", + "sheet.library._render_cell" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 24, + "end_line": 336, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" + }, + "start_col": 45, + "start_line": 334 + } + }, + "3582": { + "accessible_scopes": [ + "sheet.library", + "sheet.library._render_cell" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 41, + "end_line": 334, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" + }, + "start_col": 10, + "start_line": 334 + } + }, + "3583": { + "accessible_scopes": [ + "sheet.library", + "sheet.library._render_cell" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 51, + "end_line": 337, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" + }, + "start_col": 44, + "start_line": 337 + } + }, + "3585": { + "accessible_scopes": [ + "sheet.library", + "sheet.library._render_cell" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 40, + "end_line": 337, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" + }, + "start_col": 10, + "start_line": 337 + } + }, + "3586": { + "accessible_scopes": [ + "sheet.library", + "sheet.library._render_cell" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 23, + "end_line": 311, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" + }, + "parent_location": [ + { + "end_col": 24, + "end_line": 336, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" + }, + "parent_location": [ + { + "end_col": 23, + "end_line": 355, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" + }, + "parent_location": [ + { + "end_col": 9, + "end_line": 343, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" + }, + "start_col": 5, + "start_line": 338 + }, + "While trying to retrieve the implicit argument 'syscall_ptr' in:" + ], + "start_col": 5, + "start_line": 355 + }, + "While expanding the reference 'syscall_ptr' in:" + ], + "start_col": 45, + "start_line": 334 + }, + "While trying to update the implicit return value 'syscall_ptr' in:" + ], + "start_col": 5, + "start_line": 311 + } + }, + "3587": { + "accessible_scopes": [ + "sheet.library", + "sheet.library._render_cell" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 31, + "end_line": 312, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" + }, + "parent_location": [ + { + "end_col": 24, + "end_line": 336, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" + }, + "parent_location": [ + { + "end_col": 31, + "end_line": 356, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" + }, + "parent_location": [ + { + "end_col": 9, + "end_line": 343, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" + }, + "start_col": 5, + "start_line": 338 + }, + "While trying to retrieve the implicit argument 'pedersen_ptr' in:" + ], + "start_col": 5, + "start_line": 356 + }, + "While expanding the reference 'pedersen_ptr' in:" + ], + "start_col": 45, + "start_line": 334 + }, + "While trying to update the implicit return value 'pedersen_ptr' in:" + ], + "start_col": 5, + "start_line": 312 + } + }, + "3588": { + "accessible_scopes": [ + "sheet.library", + "sheet.library._render_cell" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 20, + "end_line": 313, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" + }, + "parent_location": [ + { + "end_col": 24, + "end_line": 336, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" + }, + "parent_location": [ + { + "end_col": 20, + "end_line": 357, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" + }, + "parent_location": [ + { + "end_col": 9, + "end_line": 343, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" + }, + "start_col": 5, + "start_line": 338 + }, + "While trying to retrieve the implicit argument 'range_check_ptr' in:" + ], + "start_col": 5, + "start_line": 357 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 45, + "start_line": 334 + }, + "While trying to update the implicit return value 'range_check_ptr' in:" + ], + "start_col": 5, + "start_line": 313 + } + }, + "3589": { + "accessible_scopes": [ + "sheet.library", + "sheet.library._render_cell" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 58, + "end_line": 327, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" + }, + "parent_location": [ + { + "end_col": 58, + "end_line": 327, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" + }, + "parent_location": [ + { + "end_col": 30, + "end_line": 339, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" + }, + "start_col": 22, + "start_line": 339 + }, + "While expanding the reference 'calldata' in:" + ], + "start_col": 50, + "start_line": 327 + }, + "While auto generating local variable for 'calldata'." + ], + "start_col": 50, + "start_line": 327 + } + }, + "3590": { + "accessible_scopes": [ + "sheet.library", + "sheet.library._render_cell" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 33, + "end_line": 337, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" + }, + "parent_location": [ + { + "end_col": 44, + "end_line": 340, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" + }, + "start_col": 27, + "start_line": 340 + }, + "While expanding the reference 'calldata_rendered' in:" + ], + "start_col": 16, + "start_line": 337 + } + }, + "3591": { + "accessible_scopes": [ + "sheet.library", + "sheet.library._render_cell" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 32, + "end_line": 314, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" + }, + "parent_location": [ + { + "end_col": 24, + "end_line": 336, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" + }, + "parent_location": [ + { + "end_col": 38, + "end_line": 341, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" + }, + "start_col": 24, + "start_line": 341 + }, + "While expanding the reference 'rendered_cells' in:" + ], + "start_col": 45, + "start_line": 334 + }, + "While trying to update the implicit return value 'rendered_cells' in:" + ], + "start_col": 5, + "start_line": 314 + } + }, + "3592": { + "accessible_scopes": [ + "sheet.library", + "sheet.library._render_cell" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 48, + "end_line": 327, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" + }, + "parent_location": [ + { + "end_col": 48, + "end_line": 327, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" + }, + "parent_location": [ + { + "end_col": 26, + "end_line": 342, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" + }, + "start_col": 14, + "start_line": 342 + }, + "While expanding the reference 'calldata_len' in:" + ], + "start_col": 36, + "start_line": 327 + }, + "While auto generating local variable for 'calldata_len'." + ], + "start_col": 36, + "start_line": 327 + } + }, + "3593": { + "accessible_scopes": [ + "sheet.library", + "sheet.library._render_cell" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 8, + "end_line": 343, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" + }, + "start_col": 7, + "start_line": 343 + } + }, + "3595": { + "accessible_scopes": [ + "sheet.library", + "sheet.library._render_cell" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 9, + "end_line": 343, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" + }, + "start_col": 5, + "start_line": 338 + } + }, + "3597": { + "accessible_scopes": [ + "sheet.library", + "sheet.library._render_cell" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 23, + "end_line": 355, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" + }, + "parent_location": [ + { + "end_col": 9, + "end_line": 343, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" + }, + "parent_location": [ + { + "end_col": 38, + "end_line": 42, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/starknet/common/syscalls.cairo" + }, + "parent_location": [ + { + "end_col": 6, + "end_line": 347, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" + }, + "start_col": 48, + "start_line": 345 + }, + "While trying to retrieve the implicit argument 'syscall_ptr' in:" + ], + "start_col": 20, + "start_line": 42 + }, + "While expanding the reference 'syscall_ptr' in:" + ], + "start_col": 5, + "start_line": 338 + }, + "While trying to update the implicit return value 'syscall_ptr' in:" + ], + "start_col": 5, + "start_line": 355 + } + }, + "3598": { + "accessible_scopes": [ + "sheet.library", + "sheet.library._render_cell" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 41, + "end_line": 334, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" + }, + "parent_location": [ + { + "end_col": 34, + "end_line": 346, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" + }, + "start_col": 9, + "start_line": 346 + }, + "While expanding the reference 'rendered_contract_address' in:" + ], + "start_col": 16, + "start_line": 334 + } + }, + "3599": { + "accessible_scopes": [ + "sheet.library", + "sheet.library._render_cell" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 34, + "end_line": 327, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" + }, + "parent_location": [ + { + "end_col": 34, + "end_line": 327, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" + }, + "parent_location": [ + { + "end_col": 42, + "end_line": 346, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" + }, + "start_col": 36, + "start_line": 346 + }, + "While expanding the reference 'result' in:" + ], + "start_col": 28, + "start_line": 327 + }, + "While auto generating local variable for 'result'." + ], + "start_col": 28, + "start_line": 327 + } + }, + "3600": { + "accessible_scopes": [ + "sheet.library", + "sheet.library._render_cell" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 26, + "end_line": 342, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" + }, + "parent_location": [ + { + "end_col": 56, + "end_line": 346, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" + }, + "start_col": 44, + "start_line": 346 + }, + "While expanding the reference 'calldata_len' in:" + ], + "start_col": 14, + "start_line": 342 + } + }, + "3601": { + "accessible_scopes": [ + "sheet.library", + "sheet.library._render_cell" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 44, + "end_line": 340, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" + }, + "parent_location": [ + { + "end_col": 75, + "end_line": 346, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" + }, + "start_col": 58, + "start_line": 346 + }, + "While expanding the reference 'calldata_rendered' in:" + ], + "start_col": 27, + "start_line": 340 + } + }, + "3602": { + "accessible_scopes": [ + "sheet.library", + "sheet.library._render_cell" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 6, + "end_line": 347, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" + }, + "start_col": 48, + "start_line": 345 + } + }, + "3604": { + "accessible_scopes": [ + "sheet.library", + "sheet.library._render_cell" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 38, + "end_line": 341, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" + }, + "parent_location": [ + { + "end_col": 39, + "end_line": 350, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" + }, + "start_col": 25, + "start_line": 350 + }, + "While expanding the reference 'rendered_cells' in:" + ], + "start_col": 24, + "start_line": 341 + } + }, + "3605": { + "accessible_scopes": [ + "sheet.library", + "sheet.library._render_cell" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 14, + "end_line": 316, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" + }, + "parent_location": [ + { + "end_col": 46, + "end_line": 350, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" + }, + "start_col": 41, + "start_line": 350 + }, + "While expanding the reference 'value' in:" + ], + "start_col": 3, + "start_line": 316 + } + }, + "3606": { + "accessible_scopes": [ + "sheet.library", + "sheet.library._render_cell" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 28, + "end_line": 348, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" + }, + "parent_location": [ + { + "end_col": 54, + "end_line": 350, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" + }, + "start_col": 48, + "start_line": 350 + }, + "While expanding the reference 'result' in:" + ], + "start_col": 18, + "start_line": 348 + } + }, + "3607": { + "accessible_scopes": [ + "sheet.library", + "sheet.library._render_cell" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 55, + "end_line": 350, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" + }, + "start_col": 5, + "start_line": 350 + } + }, + "3609": { + "accessible_scopes": [ + "sheet.library", + "sheet.library._render_cell" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 38, + "end_line": 42, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/starknet/common/syscalls.cairo" + }, + "parent_location": [ + { + "end_col": 6, + "end_line": 347, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" + }, + "parent_location": [ + { + "end_col": 23, + "end_line": 311, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" + }, + "parent_location": [ + { + "end_col": 22, + "end_line": 351, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" + }, + "start_col": 5, + "start_line": 351 + }, + "While trying to retrieve the implicit argument 'syscall_ptr' in:" + ], + "start_col": 5, + "start_line": 311 + }, + "While expanding the reference 'syscall_ptr' in:" + ], + "start_col": 48, + "start_line": 345 + }, + "While trying to update the implicit return value 'syscall_ptr' in:" + ], + "start_col": 20, + "start_line": 42 + } + }, + "3610": { + "accessible_scopes": [ + "sheet.library", + "sheet.library._render_cell" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 31, + "end_line": 356, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" + }, + "parent_location": [ + { + "end_col": 9, + "end_line": 343, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" + }, + "parent_location": [ + { + "end_col": 31, + "end_line": 312, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" + }, + "parent_location": [ + { + "end_col": 22, + "end_line": 351, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" + }, + "start_col": 5, + "start_line": 351 + }, + "While trying to retrieve the implicit argument 'pedersen_ptr' in:" + ], + "start_col": 5, + "start_line": 312 + }, + "While expanding the reference 'pedersen_ptr' in:" + ], + "start_col": 5, + "start_line": 338 + }, + "While trying to update the implicit return value 'pedersen_ptr' in:" + ], + "start_col": 5, + "start_line": 356 + } + }, + "3611": { + "accessible_scopes": [ + "sheet.library", + "sheet.library._render_cell" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 20, + "end_line": 357, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" + }, + "parent_location": [ + { + "end_col": 9, + "end_line": 343, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" + }, + "parent_location": [ + { + "end_col": 20, + "end_line": 313, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" + }, + "parent_location": [ + { + "end_col": 22, + "end_line": 351, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" + }, + "start_col": 5, + "start_line": 351 + }, + "While trying to retrieve the implicit argument 'range_check_ptr' in:" + ], + "start_col": 5, + "start_line": 313 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 5, + "start_line": 338 + }, + "While trying to update the implicit return value 'range_check_ptr' in:" + ], + "start_col": 5, + "start_line": 357 + } + }, + "3612": { + "accessible_scopes": [ + "sheet.library", + "sheet.library._render_cell" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 39, + "end_line": 350, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" + }, + "parent_location": [ + { + "end_col": 32, + "end_line": 314, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" + }, + "parent_location": [ + { + "end_col": 22, + "end_line": 351, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" + }, + "start_col": 5, + "start_line": 351 + }, + "While trying to retrieve the implicit argument 'rendered_cells' in:" + ], + "start_col": 5, + "start_line": 314 + }, + "While expanding the reference 'rendered_cells' in:" + ], + "start_col": 25, + "start_line": 350 + } + }, + "3613": { + "accessible_scopes": [ + "sheet.library", + "sheet.library._render_cell" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 28, + "end_line": 315, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" + }, + "parent_location": [ + { + "end_col": 28, + "end_line": 315, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" + }, + "parent_location": [ + { + "end_col": 22, + "end_line": 351, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" + }, + "start_col": 5, + "start_line": 351 + }, + "While trying to retrieve the implicit argument 'value_is_token_id' in:" + ], + "start_col": 5, + "start_line": 315 + }, + "While expanding the reference 'value_is_token_id' in:" + ], + "start_col": 5, + "start_line": 315 + } + }, + "3614": { + "accessible_scopes": [ + "sheet.library", + "sheet.library._render_cell" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 28, + "end_line": 348, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" + }, + "parent_location": [ + { + "end_col": 19, + "end_line": 351, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" + }, + "start_col": 13, + "start_line": 351 + }, + "While expanding the reference 'result' in:" + ], + "start_col": 18, + "start_line": 348 + } + }, + "3615": { + "accessible_scopes": [ + "sheet.library", + "sheet.library._render_cell" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 22, + "end_line": 351, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" + }, + "start_col": 5, + "start_line": 351 + } + }, + "3616": { + "accessible_scopes": [ + "sheet.library", + "sheet.library._render_cell_calldata" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 22, + "end_line": 363, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" + }, + "start_col": 9, + "start_line": 363 + } + }, + "3617": { + "accessible_scopes": [ + "sheet.library", + "sheet.library._render_cell_calldata" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 7, + "end_line": 363, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" + }, + "start_col": 5, + "start_line": 363 + } + }, + "3619": { + "accessible_scopes": [ + "sheet.library", + "sheet.library._render_cell_calldata" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 23, + "end_line": 355, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" + }, + "parent_location": [ + { + "end_col": 23, + "end_line": 355, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" + }, + "parent_location": [ + { + "end_col": 19, + "end_line": 364, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" + }, + "start_col": 9, + "start_line": 364 + }, + "While trying to retrieve the implicit argument 'syscall_ptr' in:" + ], + "start_col": 5, + "start_line": 355 + }, + "While expanding the reference 'syscall_ptr' in:" + ], + "start_col": 5, + "start_line": 355 + } + }, + "3620": { + "accessible_scopes": [ + "sheet.library", + "sheet.library._render_cell_calldata" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 31, + "end_line": 356, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" + }, + "parent_location": [ + { + "end_col": 31, + "end_line": 356, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" + }, + "parent_location": [ + { + "end_col": 19, + "end_line": 364, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" + }, + "start_col": 9, + "start_line": 364 + }, + "While trying to retrieve the implicit argument 'pedersen_ptr' in:" + ], + "start_col": 5, + "start_line": 356 + }, + "While expanding the reference 'pedersen_ptr' in:" + ], + "start_col": 5, + "start_line": 356 + } + }, + "3621": { + "accessible_scopes": [ + "sheet.library", + "sheet.library._render_cell_calldata" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 20, + "end_line": 357, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" + }, + "parent_location": [ + { + "end_col": 20, + "end_line": 357, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" + }, + "parent_location": [ + { + "end_col": 19, + "end_line": 364, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" + }, + "start_col": 9, + "start_line": 364 + }, + "While trying to retrieve the implicit argument 'range_check_ptr' in:" + ], + "start_col": 5, + "start_line": 357 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 5, + "start_line": 357 + } + }, + "3622": { + "accessible_scopes": [ + "sheet.library", + "sheet.library._render_cell_calldata" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 24, + "end_line": 358, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" + }, + "parent_location": [ + { + "end_col": 24, + "end_line": 358, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" + }, + "parent_location": [ + { + "end_col": 19, + "end_line": 364, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" + }, + "start_col": 9, + "start_line": 364 + }, + "While trying to retrieve the implicit argument 'calldata_ids' in:" + ], + "start_col": 5, + "start_line": 358 + }, + "While expanding the reference 'calldata_ids' in:" + ], + "start_col": 5, + "start_line": 358 + } + }, + "3623": { + "accessible_scopes": [ + "sheet.library", + "sheet.library._render_cell_calldata" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 29, + "end_line": 359, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" + }, + "parent_location": [ + { + "end_col": 29, + "end_line": 359, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" + }, + "parent_location": [ + { + "end_col": 19, + "end_line": 364, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" + }, + "start_col": 9, + "start_line": 364 + }, + "While trying to retrieve the implicit argument 'calldata_rendered' in:" + ], + "start_col": 5, + "start_line": 359 + }, + "While expanding the reference 'calldata_rendered' in:" + ], + "start_col": 5, + "start_line": 359 + } + }, + "3624": { + "accessible_scopes": [ + "sheet.library", + "sheet.library._render_cell_calldata" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 32, + "end_line": 360, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" + }, + "parent_location": [ + { + "end_col": 32, + "end_line": 360, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" + }, + "parent_location": [ + { + "end_col": 19, + "end_line": 364, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" + }, + "start_col": 9, + "start_line": 364 + }, + "While trying to retrieve the implicit argument 'rendered_cells' in:" + ], + "start_col": 5, + "start_line": 360 + }, + "While expanding the reference 'rendered_cells' in:" + ], + "start_col": 5, + "start_line": 360 + } + }, + "3625": { + "accessible_scopes": [ + "sheet.library", + "sheet.library._render_cell_calldata" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 15, + "end_line": 361, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" + }, + "parent_location": [ + { + "end_col": 15, + "end_line": 361, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" + }, + "parent_location": [ + { + "end_col": 19, + "end_line": 364, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" + }, + "start_col": 9, + "start_line": 364 + }, + "While trying to retrieve the implicit argument 'stop' in:" + ], + "start_col": 5, + "start_line": 361 + }, + "While expanding the reference 'stop' in:" + ], + "start_col": 5, + "start_line": 361 + } + }, + "3626": { + "accessible_scopes": [ + "sheet.library", + "sheet.library._render_cell_calldata" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 19, + "end_line": 364, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" + }, + "start_col": 9, + "start_line": 364 + } + }, + "3627": { + "accessible_scopes": [ + "sheet.library", + "sheet.library._render_cell_calldata" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 36, + "end_line": 366, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" + }, + "parent_location": [ + { + "end_col": 58, + "end_line": 368, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" + }, + "start_col": 53, + "start_line": 368 + }, + "While expanding the reference 'value' in:" + ], + "start_col": 17, + "start_line": 366 + } + }, + "3628": { + "accessible_scopes": [ + "sheet.library", + "sheet.library._render_cell_calldata" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 36, + "end_line": 366, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" + }, + "parent_location": [ + { + "end_col": 85, + "end_line": 368, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" + }, + "start_col": 80, + "start_line": 368 + }, + "While expanding the reference 'value' in:" + ], + "start_col": 17, + "start_line": 366 + } + }, + "3629": { + "accessible_scopes": [ + "sheet.library", + "sheet.library._render_cell_calldata" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 36, + "end_line": 366, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" + }, + "parent_location": [ + { + "end_col": 85, + "end_line": 368, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" + }, + "start_col": 80, + "start_line": 368 + }, + "While expanding the reference 'value' in:" + ], + "start_col": 17, + "start_line": 366 + } + }, + "3630": { + "accessible_scopes": [ + "sheet.library", + "sheet.library._render_cell_calldata" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 20, + "end_line": 357, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" + }, + "parent_location": [ + { + "end_col": 36, + "end_line": 325, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/math.cairo" + }, + "parent_location": [ + { + "end_col": 90, + "end_line": 368, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" + }, + "start_col": 38, + "start_line": 368 + }, + "While trying to retrieve the implicit argument 'range_check_ptr' in:" + ], + "start_col": 21, + "start_line": 325 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 5, + "start_line": 357 + } + }, + "3631": { + "accessible_scopes": [ + "sheet.library", + "sheet.library._render_cell_calldata" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 36, + "end_line": 366, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" + }, + "parent_location": [ + { + "end_col": 58, + "end_line": 368, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" + }, + "start_col": 53, + "start_line": 368 + }, + "While expanding the reference 'value' in:" + ], + "start_col": 17, + "start_line": 366 + } + }, + "3632": { + "accessible_scopes": [ + "sheet.library", + "sheet.library._render_cell_calldata" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 78, + "end_line": 368, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" + }, + "start_col": 60, + "start_line": 368 + } + }, + "3634": { + "accessible_scopes": [ + "sheet.library", + "sheet.library._render_cell_calldata" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 89, + "end_line": 368, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" + }, + "start_col": 80, + "start_line": 368 + } + }, + "3636": { + "accessible_scopes": [ + "sheet.library", + "sheet.library._render_cell_calldata" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 90, + "end_line": 368, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" + }, + "start_col": 38, + "start_line": 368 + } + }, + "3638": { + "accessible_scopes": [ + "sheet.library", + "sheet.library._render_cell_calldata" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 23, + "end_line": 355, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" + }, + "parent_location": [ + { + "end_col": 23, + "end_line": 311, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" + }, + "parent_location": [ + { + "end_col": 43, + "end_line": 370, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" + }, + "start_col": 24, + "start_line": 370 + }, + "While trying to retrieve the implicit argument 'syscall_ptr' in:" + ], + "start_col": 5, + "start_line": 311 + }, + "While expanding the reference 'syscall_ptr' in:" + ], + "start_col": 5, + "start_line": 355 + } + }, + "3639": { + "accessible_scopes": [ + "sheet.library", + "sheet.library._render_cell_calldata" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 31, + "end_line": 356, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" + }, + "parent_location": [ + { + "end_col": 31, + "end_line": 312, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" + }, + "parent_location": [ + { + "end_col": 43, + "end_line": 370, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" + }, + "start_col": 24, + "start_line": 370 + }, + "While trying to retrieve the implicit argument 'pedersen_ptr' in:" + ], + "start_col": 5, + "start_line": 312 + }, + "While expanding the reference 'pedersen_ptr' in:" + ], + "start_col": 5, + "start_line": 356 + } + }, + "3640": { + "accessible_scopes": [ + "sheet.library", + "sheet.library._render_cell_calldata" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 36, + "end_line": 325, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/math.cairo" + }, + "parent_location": [ + { + "end_col": 90, + "end_line": 368, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" + }, + "parent_location": [ + { + "end_col": 20, + "end_line": 313, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" + }, + "parent_location": [ + { + "end_col": 43, + "end_line": 370, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" + }, + "start_col": 24, + "start_line": 370 + }, + "While trying to retrieve the implicit argument 'range_check_ptr' in:" + ], + "start_col": 5, + "start_line": 313 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 38, + "start_line": 368 + }, + "While trying to update the implicit return value 'range_check_ptr' in:" + ], + "start_col": 21, + "start_line": 325 + } + }, + "3641": { + "accessible_scopes": [ + "sheet.library", + "sheet.library._render_cell_calldata" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 32, + "end_line": 360, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" + }, + "parent_location": [ + { + "end_col": 32, + "end_line": 314, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" + }, + "parent_location": [ + { + "end_col": 43, + "end_line": 370, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" + }, + "start_col": 24, + "start_line": 370 + }, + "While trying to retrieve the implicit argument 'rendered_cells' in:" + ], + "start_col": 5, + "start_line": 314 + }, + "While expanding the reference 'rendered_cells' in:" + ], + "start_col": 5, + "start_line": 360 + } + }, + "3642": { + "accessible_scopes": [ + "sheet.library", + "sheet.library._render_cell_calldata" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 34, + "end_line": 368, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" + }, + "parent_location": [ + { + "end_col": 28, + "end_line": 315, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" + }, + "parent_location": [ + { + "end_col": 43, + "end_line": 370, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" + }, + "start_col": 24, + "start_line": 370 + }, + "While trying to retrieve the implicit argument 'value_is_token_id' in:" + ], + "start_col": 5, + "start_line": 315 + }, + "While expanding the reference 'value_is_token_id' in:" + ], + "start_col": 17, + "start_line": 368 + } + }, + "3643": { + "accessible_scopes": [ + "sheet.library", + "sheet.library._render_cell_calldata" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 15, + "end_line": 368, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" + }, + "parent_location": [ + { + "end_col": 42, + "end_line": 370, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" + }, + "start_col": 37, + "start_line": 370 + }, + "While expanding the reference 'value' in:" + ], + "start_col": 10, + "start_line": 368 + } + }, + "3644": { + "accessible_scopes": [ + "sheet.library", + "sheet.library._render_cell_calldata" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 43, + "end_line": 370, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" + }, + "start_col": 24, + "start_line": 370 + } + }, + "3646": { + "accessible_scopes": [ + "sheet.library", + "sheet.library._render_cell_calldata" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 36, + "end_line": 373, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" + }, + "start_col": 12, + "start_line": 373 + } + }, + "3647": { + "accessible_scopes": [ + "sheet.library", + "sheet.library._render_cell_calldata" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 46, + "end_line": 373, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" + }, + "start_col": 5, + "start_line": 373 + } + }, + "3648": { + "accessible_scopes": [ + "sheet.library", + "sheet.library._render_cell_calldata" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 23, + "end_line": 311, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" + }, + "parent_location": [ + { + "end_col": 43, + "end_line": 370, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" + }, + "parent_location": [ + { + "end_col": 23, + "end_line": 355, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" + }, + "parent_location": [ + { + "end_col": 44, + "end_line": 374, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" + }, + "start_col": 12, + "start_line": 374 + }, + "While trying to retrieve the implicit argument 'syscall_ptr' in:" + ], + "start_col": 5, + "start_line": 355 + }, + "While expanding the reference 'syscall_ptr' in:" + ], + "start_col": 24, + "start_line": 370 + }, + "While trying to update the implicit return value 'syscall_ptr' in:" + ], + "start_col": 5, + "start_line": 311 + } + }, + "3649": { + "accessible_scopes": [ + "sheet.library", + "sheet.library._render_cell_calldata" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 31, + "end_line": 312, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" + }, + "parent_location": [ + { + "end_col": 43, + "end_line": 370, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" + }, + "parent_location": [ + { + "end_col": 31, + "end_line": 356, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" + }, + "parent_location": [ + { + "end_col": 44, + "end_line": 374, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" + }, + "start_col": 12, + "start_line": 374 + }, + "While trying to retrieve the implicit argument 'pedersen_ptr' in:" + ], + "start_col": 5, + "start_line": 356 + }, + "While expanding the reference 'pedersen_ptr' in:" + ], + "start_col": 24, + "start_line": 370 + }, + "While trying to update the implicit return value 'pedersen_ptr' in:" + ], + "start_col": 5, + "start_line": 312 + } + }, + "3650": { + "accessible_scopes": [ + "sheet.library", + "sheet.library._render_cell_calldata" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 20, + "end_line": 313, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" + }, + "parent_location": [ + { + "end_col": 43, + "end_line": 370, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" + }, + "parent_location": [ + { + "end_col": 20, + "end_line": 357, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" + }, + "parent_location": [ + { + "end_col": 44, + "end_line": 374, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" + }, + "start_col": 12, + "start_line": 374 + }, + "While trying to retrieve the implicit argument 'range_check_ptr' in:" + ], + "start_col": 5, + "start_line": 357 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 24, + "start_line": 370 + }, + "While trying to update the implicit return value 'range_check_ptr' in:" + ], + "start_col": 5, + "start_line": 313 + } + }, + "3651": { + "accessible_scopes": [ + "sheet.library", + "sheet.library._render_cell_calldata" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 24, + "end_line": 358, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" + }, + "parent_location": [ + { + "end_col": 24, + "end_line": 358, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" + }, + "parent_location": [ + { + "end_col": 44, + "end_line": 374, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" + }, + "start_col": 12, + "start_line": 374 + }, + "While trying to retrieve the implicit argument 'calldata_ids' in:" + ], + "start_col": 5, + "start_line": 358 + }, + "While expanding the reference 'calldata_ids' in:" + ], + "start_col": 5, + "start_line": 358 + } + }, + "3652": { + "accessible_scopes": [ + "sheet.library", + "sheet.library._render_cell_calldata" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 29, + "end_line": 359, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" + }, + "parent_location": [ + { + "end_col": 29, + "end_line": 359, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" + }, + "parent_location": [ + { + "end_col": 44, + "end_line": 374, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" + }, + "start_col": 12, + "start_line": 374 + }, + "While trying to retrieve the implicit argument 'calldata_rendered' in:" + ], + "start_col": 5, + "start_line": 359 + }, + "While expanding the reference 'calldata_rendered' in:" + ], + "start_col": 5, + "start_line": 359 + } + }, + "3653": { + "accessible_scopes": [ + "sheet.library", + "sheet.library._render_cell_calldata" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 32, + "end_line": 314, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" + }, + "parent_location": [ + { + "end_col": 43, + "end_line": 370, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" + }, + "parent_location": [ + { + "end_col": 32, + "end_line": 360, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" + }, + "parent_location": [ + { + "end_col": 44, + "end_line": 374, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" + }, + "start_col": 12, + "start_line": 374 + }, + "While trying to retrieve the implicit argument 'rendered_cells' in:" + ], + "start_col": 5, + "start_line": 360 + }, + "While expanding the reference 'rendered_cells' in:" + ], + "start_col": 24, + "start_line": 370 + }, + "While trying to update the implicit return value 'rendered_cells' in:" + ], + "start_col": 5, + "start_line": 314 + } + }, + "3654": { + "accessible_scopes": [ + "sheet.library", + "sheet.library._render_cell_calldata" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 15, + "end_line": 361, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" + }, + "parent_location": [ + { + "end_col": 15, + "end_line": 361, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" + }, + "parent_location": [ + { + "end_col": 44, + "end_line": 374, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" + }, + "start_col": 12, + "start_line": 374 + }, + "While trying to retrieve the implicit argument 'stop' in:" + ], + "start_col": 5, + "start_line": 361 + }, + "While expanding the reference 'stop' in:" + ], + "start_col": 5, + "start_line": 361 + } + }, + "3655": { + "accessible_scopes": [ + "sheet.library", + "sheet.library._render_cell_calldata" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 43, + "end_line": 374, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" + }, + "start_col": 34, + "start_line": 374 + } + }, + "3657": { + "accessible_scopes": [ + "sheet.library", + "sheet.library._render_cell_calldata" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 44, + "end_line": 374, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" + }, + "start_col": 12, + "start_line": 374 + } + }, + "3659": { + "accessible_scopes": [ + "sheet.library", + "sheet.library._render_cell_calldata" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 45, + "end_line": 374, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" + }, + "start_col": 5, + "start_line": 374 + } + }, + "3660": { + "accessible_scopes": [ + "sheet.library", + "sheet.library._contract_uri_write" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 34, + "end_line": 380, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" + }, + "start_col": 9, + "start_line": 380 + } + }, + "3661": { + "accessible_scopes": [ + "sheet.library", + "sheet.library._contract_uri_write" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 7, + "end_line": 380, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" + }, + "start_col": 5, + "start_line": 380 + } + }, + "3663": { + "accessible_scopes": [ + "sheet.library", + "sheet.library._contract_uri_write" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 44, + "end_line": 377, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" + }, + "parent_location": [ + { + "end_col": 44, + "end_line": 377, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" + }, + "parent_location": [ + { + "end_col": 19, + "end_line": 381, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" + }, + "start_col": 9, + "start_line": 381 + }, + "While trying to retrieve the implicit argument 'syscall_ptr' in:" + ], + "start_col": 26, + "start_line": 377 + }, + "While expanding the reference 'syscall_ptr' in:" + ], + "start_col": 26, + "start_line": 377 + } + }, + "3664": { + "accessible_scopes": [ + "sheet.library", + "sheet.library._contract_uri_write" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 72, + "end_line": 377, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" + }, + "parent_location": [ + { + "end_col": 72, + "end_line": 377, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" + }, + "parent_location": [ + { + "end_col": 19, + "end_line": 381, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" + }, + "start_col": 9, + "start_line": 381 + }, + "While trying to retrieve the implicit argument 'pedersen_ptr' in:" + ], + "start_col": 46, + "start_line": 377 + }, + "While expanding the reference 'pedersen_ptr' in:" + ], + "start_col": 46, + "start_line": 377 + } + }, + "3665": { + "accessible_scopes": [ + "sheet.library", + "sheet.library._contract_uri_write" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 89, + "end_line": 377, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" + }, + "parent_location": [ + { + "end_col": 89, + "end_line": 377, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" + }, + "parent_location": [ + { + "end_col": 19, + "end_line": 381, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" + }, + "start_col": 9, + "start_line": 381 + }, + "While trying to retrieve the implicit argument 'range_check_ptr' in:" + ], + "start_col": 74, + "start_line": 377 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 74, + "start_line": 377 + } + }, + "3666": { + "accessible_scopes": [ + "sheet.library", + "sheet.library._contract_uri_write" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 19, + "end_line": 381, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" + }, + "start_col": 9, + "start_line": 381 + } + }, + "3667": { + "accessible_scopes": [ + "sheet.library", + "sheet.library._contract_uri_write" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 38, + "end_line": 383, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" + }, + "parent_location": [ + { + "end_col": 44, + "end_line": 384, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" + }, + "start_col": 37, + "start_line": 384 + }, + "While expanding the reference 'current' in:" + ], + "start_col": 19, + "start_line": 383 + } + }, + "3668": { + "accessible_scopes": [ + "sheet.library", + "sheet.library._contract_uri_write" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 44, + "end_line": 377, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" + }, + "parent_location": [ + { + "end_col": 34, + "end_line": 21, + "input_file": { + "filename": "autogen/starknet/storage_var/Sheet_contract_uri/decl.cairo" + }, + "parent_location": [ + { + "end_col": 45, + "end_line": 384, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" + }, + "start_col": 5, + "start_line": 384 + }, + "While trying to retrieve the implicit argument 'syscall_ptr' in:" + ], + "start_col": 16, + "start_line": 21 + }, + "While expanding the reference 'syscall_ptr' in:" + ], + "start_col": 26, + "start_line": 377 + } + }, + "3669": { + "accessible_scopes": [ + "sheet.library", + "sheet.library._contract_uri_write" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 72, + "end_line": 377, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" + }, + "parent_location": [ + { + "end_col": 62, + "end_line": 21, + "input_file": { + "filename": "autogen/starknet/storage_var/Sheet_contract_uri/decl.cairo" + }, + "parent_location": [ + { + "end_col": 45, + "end_line": 384, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" + }, + "start_col": 5, + "start_line": 384 + }, + "While trying to retrieve the implicit argument 'pedersen_ptr' in:" + ], + "start_col": 36, + "start_line": 21 + }, + "While expanding the reference 'pedersen_ptr' in:" + ], + "start_col": 46, + "start_line": 377 + } + }, + "3670": { + "accessible_scopes": [ + "sheet.library", + "sheet.library._contract_uri_write" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 89, + "end_line": 377, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" + }, + "parent_location": [ + { + "end_col": 79, + "end_line": 21, + "input_file": { + "filename": "autogen/starknet/storage_var/Sheet_contract_uri/decl.cairo" + }, + "parent_location": [ + { + "end_col": 45, + "end_line": 384, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" + }, + "start_col": 5, + "start_line": 384 + }, + "While trying to retrieve the implicit argument 'range_check_ptr' in:" + ], + "start_col": 64, + "start_line": 21 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 74, + "start_line": 377 + } + }, + "3671": { + "accessible_scopes": [ + "sheet.library", + "sheet.library._contract_uri_write" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 16, + "end_line": 378, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" + }, + "parent_location": [ + { + "end_col": 35, + "end_line": 384, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" + }, + "start_col": 30, + "start_line": 384 + }, + "While expanding the reference 'index' in:" + ], + "start_col": 5, + "start_line": 378 + } + }, + "3672": { + "accessible_scopes": [ + "sheet.library", + "sheet.library._contract_uri_write" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 38, + "end_line": 383, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" + }, + "parent_location": [ + { + "end_col": 44, + "end_line": 384, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" + }, + "start_col": 37, + "start_line": 384 + }, + "While expanding the reference 'current' in:" + ], + "start_col": 19, + "start_line": 383 + } + }, + "3673": { + "accessible_scopes": [ + "sheet.library", + "sheet.library._contract_uri_write" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 45, + "end_line": 384, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" + }, + "start_col": 5, + "start_line": 384 + } + }, + "3675": { + "accessible_scopes": [ + "sheet.library", + "sheet.library._contract_uri_write" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 41, + "end_line": 385, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" + }, + "start_col": 32, + "start_line": 385 + } + }, + "3677": { + "accessible_scopes": [ + "sheet.library", + "sheet.library._contract_uri_write" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 40, + "end_line": 378, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" + }, + "parent_location": [ + { + "end_col": 59, + "end_line": 385, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" + }, + "start_col": 43, + "start_line": 385 + }, + "While expanding the reference 'contract_uri_len' in:" + ], + "start_col": 18, + "start_line": 378 + } + }, + "3678": { + "accessible_scopes": [ + "sheet.library", + "sheet.library._contract_uri_write" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 61, + "end_line": 378, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" + }, + "parent_location": [ + { + "end_col": 73, + "end_line": 385, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" + }, + "start_col": 61, + "start_line": 385 + }, + "While expanding the reference 'contract_uri' in:" + ], + "start_col": 42, + "start_line": 378 + } + }, + "3679": { + "accessible_scopes": [ + "sheet.library", + "sheet.library._contract_uri_write" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 74, + "end_line": 385, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" + }, + "start_col": 12, + "start_line": 385 + } + }, + "3681": { + "accessible_scopes": [ + "sheet.library", + "sheet.library._contract_uri_write" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 75, + "end_line": 385, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" + }, + "start_col": 5, + "start_line": 385 + } + }, + "3682": { + "accessible_scopes": [ + "sheet.library", + "sheet.library._contract_uri_read" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 43, + "end_line": 388, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" + }, + "parent_location": [ + { + "end_col": 33, + "end_line": 13, + "input_file": { + "filename": "autogen/starknet/storage_var/Sheet_contract_uri_len/decl.cairo" + }, + "parent_location": [ + { + "end_col": 50, + "end_line": 391, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" + }, + "start_col": 21, + "start_line": 391 + }, + "While trying to retrieve the implicit argument 'syscall_ptr' in:" + ], + "start_col": 15, + "start_line": 13 + }, + "While expanding the reference 'syscall_ptr' in:" + ], + "start_col": 25, + "start_line": 388 + } + }, + "3683": { + "accessible_scopes": [ + "sheet.library", + "sheet.library._contract_uri_read" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 71, + "end_line": 388, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" + }, + "parent_location": [ + { + "end_col": 61, + "end_line": 13, + "input_file": { + "filename": "autogen/starknet/storage_var/Sheet_contract_uri_len/decl.cairo" + }, + "parent_location": [ + { + "end_col": 50, + "end_line": 391, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" + }, + "start_col": 21, + "start_line": 391 + }, + "While trying to retrieve the implicit argument 'pedersen_ptr' in:" + ], + "start_col": 35, + "start_line": 13 + }, + "While expanding the reference 'pedersen_ptr' in:" + ], + "start_col": 45, + "start_line": 388 + } + }, + "3684": { + "accessible_scopes": [ + "sheet.library", + "sheet.library._contract_uri_read" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 88, + "end_line": 388, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" + }, + "parent_location": [ + { + "end_col": 78, + "end_line": 13, + "input_file": { + "filename": "autogen/starknet/storage_var/Sheet_contract_uri_len/decl.cairo" + }, + "parent_location": [ + { + "end_col": 50, + "end_line": 391, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" + }, + "start_col": 21, + "start_line": 391 + }, + "While trying to retrieve the implicit argument 'range_check_ptr' in:" + ], + "start_col": 63, + "start_line": 13 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 73, + "start_line": 388 + } + }, + "3685": { + "accessible_scopes": [ + "sheet.library", + "sheet.library._contract_uri_read" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 50, + "end_line": 391, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" + }, + "start_col": 21, + "start_line": 391 + } + }, + "3687": { + "accessible_scopes": [ + "sheet.library", + "sheet.library._contract_uri_read" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 25, + "end_line": 392, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" + }, + "start_col": 9, + "start_line": 392 + } + }, + "3688": { + "accessible_scopes": [ + "sheet.library", + "sheet.library._contract_uri_read" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 7, + "end_line": 392, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" + }, + "start_col": 5, + "start_line": 392 + } + }, + "3690": { + "accessible_scopes": [ + "sheet.library", + "sheet.library._contract_uri_read" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 33, + "end_line": 13, + "input_file": { + "filename": "autogen/starknet/storage_var/Sheet_contract_uri_len/decl.cairo" + }, + "parent_location": [ + { + "end_col": 50, + "end_line": 391, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" + }, + "parent_location": [ + { + "end_col": 43, + "end_line": 388, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" + }, + "parent_location": [ + { + "end_col": 44, + "end_line": 393, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" + }, + "start_col": 9, + "start_line": 393 + }, + "While trying to retrieve the implicit argument 'syscall_ptr' in:" + ], + "start_col": 25, + "start_line": 388 + }, + "While expanding the reference 'syscall_ptr' in:" + ], + "start_col": 21, + "start_line": 391 + }, + "While trying to update the implicit return value 'syscall_ptr' in:" + ], + "start_col": 15, + "start_line": 13 + } + }, + "3691": { + "accessible_scopes": [ + "sheet.library", + "sheet.library._contract_uri_read" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 61, + "end_line": 13, + "input_file": { + "filename": "autogen/starknet/storage_var/Sheet_contract_uri_len/decl.cairo" + }, + "parent_location": [ + { + "end_col": 50, + "end_line": 391, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" + }, + "parent_location": [ + { + "end_col": 71, + "end_line": 388, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" + }, + "parent_location": [ + { + "end_col": 44, + "end_line": 393, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" + }, + "start_col": 9, + "start_line": 393 + }, + "While trying to retrieve the implicit argument 'pedersen_ptr' in:" + ], + "start_col": 45, + "start_line": 388 + }, + "While expanding the reference 'pedersen_ptr' in:" + ], + "start_col": 21, + "start_line": 391 + }, + "While trying to update the implicit return value 'pedersen_ptr' in:" + ], + "start_col": 35, + "start_line": 13 + } + }, + "3692": { + "accessible_scopes": [ + "sheet.library", + "sheet.library._contract_uri_read" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 78, + "end_line": 13, + "input_file": { + "filename": "autogen/starknet/storage_var/Sheet_contract_uri_len/decl.cairo" + }, + "parent_location": [ + { + "end_col": 50, + "end_line": 391, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" + }, + "parent_location": [ + { + "end_col": 88, + "end_line": 388, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" + }, + "parent_location": [ + { + "end_col": 44, + "end_line": 393, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" + }, + "start_col": 9, + "start_line": 393 + }, + "While trying to retrieve the implicit argument 'range_check_ptr' in:" + ], + "start_col": 73, + "start_line": 388 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 21, + "start_line": 391 + }, + "While trying to update the implicit return value 'range_check_ptr' in:" + ], + "start_col": 63, + "start_line": 13 + } + }, + "3693": { + "accessible_scopes": [ + "sheet.library", + "sheet.library._contract_uri_read" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 37, + "end_line": 389, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" + }, + "parent_location": [ + { + "end_col": 42, + "end_line": 393, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" + }, + "start_col": 30, + "start_line": 393 + }, + "While expanding the reference 'contract_uri' in:" + ], + "start_col": 18, + "start_line": 389 + } + }, + "3694": { + "accessible_scopes": [ + "sheet.library", + "sheet.library._contract_uri_read" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 44, + "end_line": 393, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" + }, + "start_col": 9, + "start_line": 393 + } + }, + "3695": { + "accessible_scopes": [ + "sheet.library", + "sheet.library._contract_uri_read" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 33, + "end_line": 13, + "input_file": { + "filename": "autogen/starknet/storage_var/Sheet_contract_uri_len/decl.cairo" + }, + "parent_location": [ + { + "end_col": 50, + "end_line": 391, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" + }, + "parent_location": [ + { + "end_col": 33, + "end_line": 13, + "input_file": { + "filename": "autogen/starknet/storage_var/Sheet_contract_uri/decl.cairo" + }, + "parent_location": [ + { + "end_col": 51, + "end_line": 395, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" + }, + "start_col": 21, + "start_line": 395 + }, + "While trying to retrieve the implicit argument 'syscall_ptr' in:" + ], + "start_col": 15, + "start_line": 13 + }, + "While expanding the reference 'syscall_ptr' in:" + ], + "start_col": 21, + "start_line": 391 + }, + "While trying to update the implicit return value 'syscall_ptr' in:" + ], + "start_col": 15, + "start_line": 13 + } + }, + "3696": { + "accessible_scopes": [ + "sheet.library", + "sheet.library._contract_uri_read" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 61, + "end_line": 13, + "input_file": { + "filename": "autogen/starknet/storage_var/Sheet_contract_uri_len/decl.cairo" + }, + "parent_location": [ + { + "end_col": 50, + "end_line": 391, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" + }, + "parent_location": [ + { + "end_col": 61, + "end_line": 13, + "input_file": { + "filename": "autogen/starknet/storage_var/Sheet_contract_uri/decl.cairo" + }, + "parent_location": [ + { + "end_col": 51, + "end_line": 395, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" + }, + "start_col": 21, + "start_line": 395 + }, + "While trying to retrieve the implicit argument 'pedersen_ptr' in:" + ], + "start_col": 35, + "start_line": 13 + }, + "While expanding the reference 'pedersen_ptr' in:" + ], + "start_col": 21, + "start_line": 391 + }, + "While trying to update the implicit return value 'pedersen_ptr' in:" + ], + "start_col": 35, + "start_line": 13 + } + }, + "3697": { + "accessible_scopes": [ + "sheet.library", + "sheet.library._contract_uri_read" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 78, + "end_line": 13, + "input_file": { + "filename": "autogen/starknet/storage_var/Sheet_contract_uri_len/decl.cairo" + }, + "parent_location": [ + { + "end_col": 50, + "end_line": 391, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" + }, + "parent_location": [ + { + "end_col": 78, + "end_line": 13, + "input_file": { + "filename": "autogen/starknet/storage_var/Sheet_contract_uri/decl.cairo" + }, + "parent_location": [ + { + "end_col": 51, + "end_line": 395, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" + }, + "start_col": 21, + "start_line": 395 + }, + "While trying to retrieve the implicit argument 'range_check_ptr' in:" + ], + "start_col": 63, + "start_line": 13 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 21, + "start_line": 391 + }, + "While trying to update the implicit return value 'range_check_ptr' in:" + ], + "start_col": 63, + "start_line": 13 + } + }, + "3698": { + "accessible_scopes": [ + "sheet.library", + "sheet.library._contract_uri_read" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 16, + "end_line": 389, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" + }, + "parent_location": [ + { + "end_col": 50, + "end_line": 395, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" + }, + "start_col": 45, + "start_line": 395 + }, + "While expanding the reference 'index' in:" + ], + "start_col": 5, + "start_line": 389 + } + }, + "3699": { + "accessible_scopes": [ + "sheet.library", + "sheet.library._contract_uri_read" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 51, + "end_line": 395, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" + }, + "start_col": 21, + "start_line": 395 + } + }, + "3701": { + "accessible_scopes": [ + "sheet.library", + "sheet.library._contract_uri_read" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 37, + "end_line": 396, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" + }, + "start_col": 5, + "start_line": 396 + } + }, + "3702": { + "accessible_scopes": [ + "sheet.library", + "sheet.library._contract_uri_read" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 33, + "end_line": 13, + "input_file": { + "filename": "autogen/starknet/storage_var/Sheet_contract_uri/decl.cairo" + }, + "parent_location": [ + { + "end_col": 51, + "end_line": 395, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" + }, + "parent_location": [ + { + "end_col": 43, + "end_line": 388, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" + }, + "parent_location": [ + { + "end_col": 59, + "end_line": 397, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" + }, + "start_col": 12, + "start_line": 397 + }, + "While trying to retrieve the implicit argument 'syscall_ptr' in:" + ], + "start_col": 25, + "start_line": 388 + }, + "While expanding the reference 'syscall_ptr' in:" + ], + "start_col": 21, + "start_line": 395 + }, + "While trying to update the implicit return value 'syscall_ptr' in:" + ], + "start_col": 15, + "start_line": 13 + } + }, + "3703": { + "accessible_scopes": [ + "sheet.library", + "sheet.library._contract_uri_read" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 61, + "end_line": 13, + "input_file": { + "filename": "autogen/starknet/storage_var/Sheet_contract_uri/decl.cairo" + }, + "parent_location": [ + { + "end_col": 51, + "end_line": 395, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" + }, + "parent_location": [ + { + "end_col": 71, + "end_line": 388, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" + }, + "parent_location": [ + { + "end_col": 59, + "end_line": 397, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" + }, + "start_col": 12, + "start_line": 397 + }, + "While trying to retrieve the implicit argument 'pedersen_ptr' in:" + ], + "start_col": 45, + "start_line": 388 + }, + "While expanding the reference 'pedersen_ptr' in:" + ], + "start_col": 21, + "start_line": 395 + }, + "While trying to update the implicit return value 'pedersen_ptr' in:" + ], + "start_col": 35, + "start_line": 13 + } + }, + "3704": { + "accessible_scopes": [ + "sheet.library", + "sheet.library._contract_uri_read" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 78, + "end_line": 13, + "input_file": { + "filename": "autogen/starknet/storage_var/Sheet_contract_uri/decl.cairo" + }, + "parent_location": [ + { + "end_col": 51, + "end_line": 395, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" + }, + "parent_location": [ + { + "end_col": 88, + "end_line": 388, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" + }, + "parent_location": [ + { + "end_col": 59, + "end_line": 397, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" + }, + "start_col": 12, + "start_line": 397 + }, + "While trying to retrieve the implicit argument 'range_check_ptr' in:" + ], + "start_col": 73, + "start_line": 388 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 21, + "start_line": 395 + }, + "While trying to update the implicit return value 'range_check_ptr' in:" + ], + "start_col": 63, + "start_line": 13 + } + }, + "3705": { + "accessible_scopes": [ + "sheet.library", + "sheet.library._contract_uri_read" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 40, + "end_line": 397, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" + }, + "start_col": 31, + "start_line": 397 + } + }, + "3707": { + "accessible_scopes": [ + "sheet.library", + "sheet.library._contract_uri_read" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 58, + "end_line": 397, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" + }, + "start_col": 42, + "start_line": 397 + } + }, + "3709": { + "accessible_scopes": [ + "sheet.library", + "sheet.library._contract_uri_read" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 59, + "end_line": 397, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" + }, + "start_col": 12, + "start_line": 397 + } + }, + "3711": { + "accessible_scopes": [ + "sheet.library", + "sheet.library._contract_uri_read" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 60, + "end_line": 397, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" + }, + "start_col": 5, + "start_line": 397 + } + }, + "3712": { + "accessible_scopes": [ + "sheet.library", + "sheet.library._assert_is_allowed" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 18, + "end_line": 405, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" + }, + "start_col": 5, + "start_line": 405 + } + }, + "3714": { + "accessible_scopes": [ + "sheet.library", + "sheet.library._assert_is_allowed" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 51, + "end_line": 403, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" + }, + "parent_location": [ + { + "end_col": 52, + "end_line": 406, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" + }, + "start_col": 40, + "start_line": 406 + }, + "While expanding the reference 'pedersen_ptr' in:" + ], + "start_col": 25, + "start_line": 403 + } + }, + "3715": { + "accessible_scopes": [ + "sheet.library", + "sheet.library._assert_is_allowed" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 68, + "end_line": 403, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" + }, + "parent_location": [ + { + "end_col": 58, + "end_line": 24, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/utils/merkle_tree.cairo" + }, + "parent_location": [ + { + "end_col": 71, + "end_line": 406, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" + }, + "start_col": 18, + "start_line": 406 + }, + "While trying to retrieve the implicit argument 'range_check_ptr' in:" + ], + "start_col": 43, + "start_line": 24 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 53, + "start_line": 403 + } + }, + "3716": { + "accessible_scopes": [ + "sheet.library", + "sheet.library._assert_is_allowed" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 83, + "end_line": 403, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" + }, + "parent_location": [ + { + "end_col": 61, + "end_line": 406, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" + }, + "start_col": 54, + "start_line": 406 + }, + "While expanding the reference 'address' in:" + ], + "start_col": 70, + "start_line": 403 + } + }, + "3717": { + "accessible_scopes": [ + "sheet.library", + "sheet.library._assert_is_allowed" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 83, + "end_line": 403, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" + }, + "parent_location": [ + { + "end_col": 70, + "end_line": 406, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" + }, + "start_col": 63, + "start_line": 406 + }, + "While expanding the reference 'address' in:" + ], + "start_col": 70, + "start_line": 403 + } + }, + "3718": { + "accessible_scopes": [ + "sheet.library", + "sheet.library._assert_is_allowed" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 71, + "end_line": 406, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" + }, + "start_col": 18, + "start_line": 406 + } + }, + "3720": { + "accessible_scopes": [ + "sheet.library", + "sheet.library._assert_is_allowed" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 23, + "end_line": 403, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" + }, + "parent_location": [ + { + "end_col": 33, + "end_line": 13, + "input_file": { + "filename": "autogen/starknet/storage_var/Sheet_merkle_root/decl.cairo" + }, + "parent_location": [ + { + "end_col": 48, + "end_line": 407, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" + }, + "start_col": 24, + "start_line": 407 + }, + "While trying to retrieve the implicit argument 'syscall_ptr' in:" + ], + "start_col": 15, + "start_line": 13 + }, + "While expanding the reference 'syscall_ptr' in:" + ], + "start_col": 5, + "start_line": 403 + } + }, + "3721": { + "accessible_scopes": [ + "sheet.library", + "sheet.library._assert_is_allowed" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 52, + "end_line": 406, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" + }, + "parent_location": [ + { + "end_col": 61, + "end_line": 13, + "input_file": { + "filename": "autogen/starknet/storage_var/Sheet_merkle_root/decl.cairo" + }, + "parent_location": [ + { + "end_col": 48, + "end_line": 407, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" + }, + "start_col": 24, + "start_line": 407 + }, + "While trying to retrieve the implicit argument 'pedersen_ptr' in:" + ], + "start_col": 35, + "start_line": 13 + }, + "While expanding the reference 'pedersen_ptr' in:" + ], + "start_col": 40, + "start_line": 406 + } + }, + "3722": { + "accessible_scopes": [ + "sheet.library", + "sheet.library._assert_is_allowed" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 58, + "end_line": 24, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/utils/merkle_tree.cairo" + }, + "parent_location": [ + { + "end_col": 71, + "end_line": 406, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" + }, + "parent_location": [ + { + "end_col": 78, + "end_line": 13, + "input_file": { + "filename": "autogen/starknet/storage_var/Sheet_merkle_root/decl.cairo" + }, + "parent_location": [ + { + "end_col": 48, + "end_line": 407, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" + }, + "start_col": 24, + "start_line": 407 + }, + "While trying to retrieve the implicit argument 'range_check_ptr' in:" + ], + "start_col": 63, + "start_line": 13 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 18, + "start_line": 406 + }, + "While trying to update the implicit return value 'range_check_ptr' in:" + ], + "start_col": 43, + "start_line": 24 + } + }, + "3723": { + "accessible_scopes": [ + "sheet.library", + "sheet.library._assert_is_allowed" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 48, + "end_line": 407, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" + }, + "start_col": 24, + "start_line": 407 + } + }, + "3725": { + "accessible_scopes": [ + "sheet.library", + "sheet.library._assert_is_allowed" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 20, + "end_line": 407, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" + }, + "start_col": 10, + "start_line": 407 + } + }, + "3726": { + "accessible_scopes": [ + "sheet.library", + "sheet.library._assert_is_allowed" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 20, + "end_line": 407, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" + }, + "parent_location": [ + { + "end_col": 37, + "end_line": 408, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" + }, + "start_col": 33, + "start_line": 408 + }, + "While expanding the reference 'root' in:" + ], + "start_col": 16, + "start_line": 407 + } + }, + "3727": { + "accessible_scopes": [ + "sheet.library", + "sheet.library._assert_is_allowed" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 38, + "end_line": 408, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" + }, + "start_col": 21, + "start_line": 408 + } + }, + "3729": { + "accessible_scopes": [ + "sheet.library", + "sheet.library._assert_is_allowed" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 18, + "end_line": 408, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" + }, + "parent_location": [ + { + "end_col": 18, + "end_line": 408, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" + }, + "start_col": 9, + "start_line": 408 + }, + "While auto generating local variable for 'use_proof'." + ], + "start_col": 9, + "start_line": 408 + } + }, + "3730": { + "accessible_scopes": [ + "sheet.library", + "sheet.library._assert_is_allowed" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 33, + "end_line": 13, + "input_file": { + "filename": "autogen/starknet/storage_var/Sheet_merkle_root/decl.cairo" + }, + "parent_location": [ + { + "end_col": 48, + "end_line": 407, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" + }, + "parent_location": [ + { + "end_col": 38, + "end_line": 12, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/utils/merkle_tree.cairo" + }, + "parent_location": [ + { + "end_col": 70, + "end_line": 409, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" + }, + "start_col": 27, + "start_line": 409 + }, + "While trying to retrieve the implicit argument 'syscall_ptr' in:" + ], + "start_col": 20, + "start_line": 12 + }, + "While expanding the reference 'syscall_ptr' in:" + ], + "start_col": 24, + "start_line": 407 + }, + "While trying to update the implicit return value 'syscall_ptr' in:" + ], + "start_col": 15, + "start_line": 13 + } + }, + "3731": { + "accessible_scopes": [ + "sheet.library", + "sheet.library._assert_is_allowed" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 61, + "end_line": 13, + "input_file": { + "filename": "autogen/starknet/storage_var/Sheet_merkle_root/decl.cairo" + }, + "parent_location": [ + { + "end_col": 48, + "end_line": 407, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" + }, + "parent_location": [ + { + "end_col": 66, + "end_line": 12, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/utils/merkle_tree.cairo" + }, + "parent_location": [ + { + "end_col": 70, + "end_line": 409, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" + }, + "start_col": 27, + "start_line": 409 + }, + "While trying to retrieve the implicit argument 'pedersen_ptr' in:" + ], + "start_col": 40, + "start_line": 12 + }, + "While expanding the reference 'pedersen_ptr' in:" + ], + "start_col": 24, + "start_line": 407 + }, + "While trying to update the implicit return value 'pedersen_ptr' in:" + ], + "start_col": 35, + "start_line": 13 + } + }, + "3732": { + "accessible_scopes": [ + "sheet.library", + "sheet.library._assert_is_allowed" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 78, + "end_line": 13, + "input_file": { + "filename": "autogen/starknet/storage_var/Sheet_merkle_root/decl.cairo" + }, + "parent_location": [ + { + "end_col": 48, + "end_line": 407, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" + }, + "parent_location": [ + { + "end_col": 83, + "end_line": 12, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/utils/merkle_tree.cairo" + }, + "parent_location": [ + { + "end_col": 70, + "end_line": 409, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" + }, + "start_col": 27, + "start_line": 409 + }, + "While trying to retrieve the implicit argument 'range_check_ptr' in:" + ], + "start_col": 68, + "start_line": 12 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 24, + "start_line": 407 + }, + "While trying to update the implicit return value 'range_check_ptr' in:" + ], + "start_col": 63, + "start_line": 13 + } + }, + "3733": { + "accessible_scopes": [ + "sheet.library", + "sheet.library._assert_is_allowed" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 14, + "end_line": 406, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" + }, + "parent_location": [ + { + "end_col": 45, + "end_line": 409, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" + }, + "start_col": 41, + "start_line": 409 + }, + "While expanding the reference 'leaf' in:" + ], + "start_col": 10, + "start_line": 406 + } + }, + "3734": { + "accessible_scopes": [ + "sheet.library", + "sheet.library._assert_is_allowed" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 20, + "end_line": 407, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" + }, + "parent_location": [ + { + "end_col": 51, + "end_line": 409, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" + }, + "start_col": 47, + "start_line": 409 + }, + "While expanding the reference 'root' in:" + ], + "start_col": 16, + "start_line": 407 + } + }, + "3735": { + "accessible_scopes": [ + "sheet.library", + "sheet.library._assert_is_allowed" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 18, + "end_line": 404, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" + }, + "parent_location": [ + { + "end_col": 62, + "end_line": 409, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" + }, + "start_col": 53, + "start_line": 409 + }, + "While expanding the reference 'proof_len' in:" + ], + "start_col": 3, + "start_line": 404 + } + }, + "3736": { + "accessible_scopes": [ + "sheet.library", + "sheet.library._assert_is_allowed" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 32, + "end_line": 404, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" + }, + "parent_location": [ + { + "end_col": 69, + "end_line": 409, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" + }, + "start_col": 64, + "start_line": 409 + }, + "While expanding the reference 'proof' in:" + ], + "start_col": 20, + "start_line": 404 + } + }, + "3737": { + "accessible_scopes": [ + "sheet.library", + "sheet.library._assert_is_allowed" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 70, + "end_line": 409, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" + }, + "start_col": 27, + "start_line": 409 + } + }, + "3739": { + "accessible_scopes": [ + "sheet.library", + "sheet.library._assert_is_allowed" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 41, + "end_line": 411, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" + }, + "start_col": 16, + "start_line": 411 + } + }, + "3740": { + "accessible_scopes": [ + "sheet.library", + "sheet.library._assert_is_allowed" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 46, + "end_line": 411, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" + }, + "start_col": 45, + "start_line": 411 + } + }, + "3742": { + "accessible_scopes": [ + "sheet.library", + "sheet.library._assert_is_allowed" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 58, + "end_line": 411, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" + }, + "start_col": 45, + "start_line": 411 + } + }, + "3743": { + "accessible_scopes": [ + "sheet.library", + "sheet.library._assert_is_allowed" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 66, + "end_line": 411, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" + }, + "start_col": 62, + "start_line": 411 + } + }, + "3745": { + "accessible_scopes": [ + "sheet.library", + "sheet.library._assert_is_allowed" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 67, + "end_line": 411, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" + }, + "start_col": 9, + "start_line": 411 + } + }, + "3746": { + "accessible_scopes": [ + "sheet.library", + "sheet.library._assert_is_allowed" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 38, + "end_line": 12, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/utils/merkle_tree.cairo" + }, + "parent_location": [ + { + "end_col": 70, + "end_line": 409, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" + }, + "parent_location": [ + { + "end_col": 23, + "end_line": 403, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" + }, + "parent_location": [ + { + "end_col": 15, + "end_line": 413, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" + }, + "start_col": 5, + "start_line": 413 + }, + "While trying to retrieve the implicit argument 'syscall_ptr' in:" + ], + "start_col": 5, + "start_line": 403 + }, + "While expanding the reference 'syscall_ptr' in:" + ], + "start_col": 27, + "start_line": 409 + }, + "While trying to update the implicit return value 'syscall_ptr' in:" + ], + "start_col": 20, + "start_line": 12 + } + }, + "3747": { + "accessible_scopes": [ + "sheet.library", + "sheet.library._assert_is_allowed" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 66, + "end_line": 12, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/utils/merkle_tree.cairo" + }, + "parent_location": [ + { + "end_col": 70, + "end_line": 409, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" + }, + "parent_location": [ + { + "end_col": 51, + "end_line": 403, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" + }, + "parent_location": [ + { + "end_col": 15, + "end_line": 413, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" + }, + "start_col": 5, + "start_line": 413 + }, + "While trying to retrieve the implicit argument 'pedersen_ptr' in:" + ], + "start_col": 25, + "start_line": 403 + }, + "While expanding the reference 'pedersen_ptr' in:" + ], + "start_col": 27, + "start_line": 409 + }, + "While trying to update the implicit return value 'pedersen_ptr' in:" + ], + "start_col": 40, + "start_line": 12 + } + }, + "3748": { + "accessible_scopes": [ + "sheet.library", + "sheet.library._assert_is_allowed" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 83, + "end_line": 12, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/utils/merkle_tree.cairo" + }, + "parent_location": [ + { + "end_col": 70, + "end_line": 409, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" + }, + "parent_location": [ + { + "end_col": 68, + "end_line": 403, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" + }, + "parent_location": [ + { + "end_col": 15, + "end_line": 413, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" + }, + "start_col": 5, + "start_line": 413 + }, + "While trying to retrieve the implicit argument 'range_check_ptr' in:" + ], + "start_col": 53, + "start_line": 403 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 27, + "start_line": 409 + }, + "While trying to update the implicit return value 'range_check_ptr' in:" + ], + "start_col": 68, + "start_line": 12 + } + }, + "3749": { + "accessible_scopes": [ + "sheet.library", + "sheet.library._assert_is_allowed" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 83, + "end_line": 403, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" + }, + "parent_location": [ + { + "end_col": 83, + "end_line": 403, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" + }, + "parent_location": [ + { + "end_col": 15, + "end_line": 413, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" + }, + "start_col": 5, + "start_line": 413 + }, + "While trying to retrieve the implicit argument 'address' in:" + ], + "start_col": 70, + "start_line": 403 + }, + "While expanding the reference 'address' in:" + ], + "start_col": 70, + "start_line": 403 + } + }, + "3750": { + "accessible_scopes": [ + "sheet.library", + "sheet.library._assert_is_allowed" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 15, + "end_line": 413, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" + }, + "start_col": 5, + "start_line": 413 + } + }, + "3751": { + "accessible_scopes": [ + "sheet.library", + "sheet.library._assert_does_not_exceed_allocation" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 18, + "end_line": 419, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" + }, + "start_col": 5, + "start_line": 419 + } + }, + "3753": { + "accessible_scopes": [ + "sheet.library", + "sheet.library._assert_does_not_exceed_allocation" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 19, + "end_line": 418, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" + }, + "parent_location": [ + { + "end_col": 50, + "end_line": 420, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" + }, + "start_col": 40, + "start_line": 420 + }, + "While expanding the reference 'allocation' in:" + ], + "start_col": 3, + "start_line": 418 + } + }, + "3754": { + "accessible_scopes": [ + "sheet.library", + "sheet.library._assert_does_not_exceed_allocation" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 51, + "end_line": 420, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" + }, + "start_col": 28, + "start_line": 420 + } + }, + "3756": { + "accessible_scopes": [ + "sheet.library", + "sheet.library._assert_does_not_exceed_allocation" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 52, + "end_line": 420, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" + }, + "start_col": 5, + "start_line": 420 + } + }, + "3757": { + "accessible_scopes": [ + "sheet.library", + "sheet.library._assert_does_not_exceed_allocation" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 23, + "end_line": 417, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" + }, + "parent_location": [ + { + "end_col": 39, + "end_line": 100, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "parent_location": [ + { + "end_col": 52, + "end_line": 421, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" + }, + "start_col": 26, + "start_line": 421 + }, + "While trying to retrieve the implicit argument 'syscall_ptr' in:" + ], + "start_col": 21, + "start_line": 100 + }, + "While expanding the reference 'syscall_ptr' in:" + ], + "start_col": 5, + "start_line": 417 + } + }, + "3758": { + "accessible_scopes": [ + "sheet.library", + "sheet.library._assert_does_not_exceed_allocation" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 51, + "end_line": 417, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" + }, + "parent_location": [ + { + "end_col": 67, + "end_line": 100, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "parent_location": [ + { + "end_col": 52, + "end_line": 421, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" + }, + "start_col": 26, + "start_line": 421 + }, + "While trying to retrieve the implicit argument 'pedersen_ptr' in:" + ], + "start_col": 41, + "start_line": 100 + }, + "While expanding the reference 'pedersen_ptr' in:" + ], + "start_col": 25, + "start_line": 417 + } + }, + "3759": { + "accessible_scopes": [ + "sheet.library", + "sheet.library._assert_does_not_exceed_allocation" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 68, + "end_line": 417, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" + }, + "parent_location": [ + { + "end_col": 84, + "end_line": 100, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "parent_location": [ + { + "end_col": 52, + "end_line": 421, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" + }, + "start_col": 26, + "start_line": 421 + }, + "While trying to retrieve the implicit argument 'range_check_ptr' in:" + ], + "start_col": 69, + "start_line": 100 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 53, + "start_line": 417 + } + }, + "3760": { + "accessible_scopes": [ + "sheet.library", + "sheet.library._assert_does_not_exceed_allocation" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 83, + "end_line": 417, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" + }, + "parent_location": [ + { + "end_col": 51, + "end_line": 421, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" + }, + "start_col": 44, + "start_line": 421 + }, + "While expanding the reference 'address' in:" + ], + "start_col": 70, + "start_line": 417 + } + }, + "3761": { + "accessible_scopes": [ + "sheet.library", + "sheet.library._assert_does_not_exceed_allocation" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 52, + "end_line": 421, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" + }, + "start_col": 26, + "start_line": 421 + } + }, + "3763": { + "accessible_scopes": [ + "sheet.library", + "sheet.library._assert_does_not_exceed_allocation" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 84, + "end_line": 100, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "parent_location": [ + { + "end_col": 52, + "end_line": 421, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" + }, + "parent_location": [ + { + "end_col": 27, + "end_line": 42, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/math_cmp.cairo" + }, + "parent_location": [ + { + "end_col": 71, + "end_line": 422, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" + }, + "start_col": 32, + "start_line": 422 + }, + "While trying to retrieve the implicit argument 'range_check_ptr' in:" + ], + "start_col": 12, + "start_line": 42 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 26, + "start_line": 421 + }, + "While trying to update the implicit return value 'range_check_ptr' in:" + ], + "start_col": 69, + "start_line": 100 + } + }, + "3764": { + "accessible_scopes": [ + "sheet.library", + "sheet.library._assert_does_not_exceed_allocation" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 54, + "end_line": 422, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" + }, + "start_col": 38, + "start_line": 422 + } + }, + "3765": { + "accessible_scopes": [ + "sheet.library", + "sheet.library._assert_does_not_exceed_allocation" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 70, + "end_line": 422, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" + }, + "start_col": 56, + "start_line": 422 + } + }, + "3767": { + "accessible_scopes": [ + "sheet.library", + "sheet.library._assert_does_not_exceed_allocation" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 71, + "end_line": 422, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" + }, + "start_col": 32, + "start_line": 422 + } + }, + "3769": { + "accessible_scopes": [ + "sheet.library", + "sheet.library._assert_does_not_exceed_allocation" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 53, + "end_line": 424, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" + }, + "start_col": 16, + "start_line": 424 + } + }, + "3770": { + "accessible_scopes": [ + "sheet.library", + "sheet.library._assert_does_not_exceed_allocation" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 58, + "end_line": 424, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" + }, + "start_col": 57, + "start_line": 424 + } + }, + "3772": { + "accessible_scopes": [ + "sheet.library", + "sheet.library._assert_does_not_exceed_allocation" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 75, + "end_line": 424, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" + }, + "start_col": 57, + "start_line": 424 + } + }, + "3773": { + "accessible_scopes": [ + "sheet.library", + "sheet.library._assert_does_not_exceed_allocation" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 83, + "end_line": 424, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" + }, + "start_col": 79, + "start_line": 424 + } + }, + "3775": { + "accessible_scopes": [ + "sheet.library", + "sheet.library._assert_does_not_exceed_allocation" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 84, + "end_line": 424, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" + }, + "start_col": 9, + "start_line": 424 + } + }, + "3776": { + "accessible_scopes": [ + "sheet.library", + "sheet.library._assert_does_not_exceed_allocation" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 39, + "end_line": 100, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "parent_location": [ + { + "end_col": 52, + "end_line": 421, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" + }, + "parent_location": [ + { + "end_col": 23, + "end_line": 417, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" + }, + "parent_location": [ + { + "end_col": 15, + "end_line": 426, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" + }, + "start_col": 5, + "start_line": 426 + }, + "While trying to retrieve the implicit argument 'syscall_ptr' in:" + ], + "start_col": 5, + "start_line": 417 + }, + "While expanding the reference 'syscall_ptr' in:" + ], + "start_col": 26, + "start_line": 421 + }, + "While trying to update the implicit return value 'syscall_ptr' in:" + ], + "start_col": 21, + "start_line": 100 + } + }, + "3777": { + "accessible_scopes": [ + "sheet.library", + "sheet.library._assert_does_not_exceed_allocation" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 67, + "end_line": 100, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "parent_location": [ + { + "end_col": 52, + "end_line": 421, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" + }, + "parent_location": [ + { + "end_col": 51, + "end_line": 417, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" + }, + "parent_location": [ + { + "end_col": 15, + "end_line": 426, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" + }, + "start_col": 5, + "start_line": 426 + }, + "While trying to retrieve the implicit argument 'pedersen_ptr' in:" + ], + "start_col": 25, + "start_line": 417 + }, + "While expanding the reference 'pedersen_ptr' in:" + ], + "start_col": 26, + "start_line": 421 + }, + "While trying to update the implicit return value 'pedersen_ptr' in:" + ], + "start_col": 41, + "start_line": 100 + } + }, + "3778": { + "accessible_scopes": [ + "sheet.library", + "sheet.library._assert_does_not_exceed_allocation" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 27, + "end_line": 42, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/math_cmp.cairo" + }, + "parent_location": [ + { + "end_col": 71, + "end_line": 422, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" + }, + "parent_location": [ + { + "end_col": 68, + "end_line": 417, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" + }, + "parent_location": [ + { + "end_col": 15, + "end_line": 426, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" + }, + "start_col": 5, + "start_line": 426 + }, + "While trying to retrieve the implicit argument 'range_check_ptr' in:" + ], + "start_col": 53, + "start_line": 417 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 32, + "start_line": 422 + }, + "While trying to update the implicit return value 'range_check_ptr' in:" + ], + "start_col": 12, + "start_line": 42 + } + }, + "3779": { + "accessible_scopes": [ + "sheet.library", + "sheet.library._assert_does_not_exceed_allocation" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 83, + "end_line": 417, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" + }, + "parent_location": [ + { + "end_col": 83, + "end_line": 417, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" + }, + "parent_location": [ + { + "end_col": 15, + "end_line": 426, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" + }, + "start_col": 5, + "start_line": 426 + }, + "While trying to retrieve the implicit argument 'address' in:" + ], + "start_col": 70, + "start_line": 417 + }, + "While expanding the reference 'address' in:" + ], + "start_col": 70, + "start_line": 417 + } + }, + "3780": { + "accessible_scopes": [ + "sheet.library", + "sheet.library._assert_does_not_exceed_allocation" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 15, + "end_line": 426, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" + }, + "start_col": 5, + "start_line": 426 + } + }, + "3781": { + "accessible_scopes": [ + "sheet.library", + "sheet.library._assert_is_open" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 40, + "end_line": 429, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" + }, + "parent_location": [ + { + "end_col": 33, + "end_line": 13, + "input_file": { + "filename": "autogen/starknet/storage_var/Sheet_is_mint_open/decl.cairo" + }, + "parent_location": [ + { + "end_col": 50, + "end_line": 431, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" + }, + "start_col": 25, + "start_line": 431 + }, + "While trying to retrieve the implicit argument 'syscall_ptr' in:" + ], + "start_col": 15, + "start_line": 13 + }, + "While expanding the reference 'syscall_ptr' in:" + ], + "start_col": 22, + "start_line": 429 + } + }, + "3782": { + "accessible_scopes": [ + "sheet.library", + "sheet.library._assert_is_open" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 68, + "end_line": 429, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" + }, + "parent_location": [ + { + "end_col": 61, + "end_line": 13, + "input_file": { + "filename": "autogen/starknet/storage_var/Sheet_is_mint_open/decl.cairo" + }, + "parent_location": [ + { + "end_col": 50, + "end_line": 431, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" + }, + "start_col": 25, + "start_line": 431 + }, + "While trying to retrieve the implicit argument 'pedersen_ptr' in:" + ], + "start_col": 35, + "start_line": 13 + }, + "While expanding the reference 'pedersen_ptr' in:" + ], + "start_col": 42, + "start_line": 429 + } + }, + "3783": { + "accessible_scopes": [ + "sheet.library", + "sheet.library._assert_is_open" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 85, + "end_line": 429, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" + }, + "parent_location": [ + { + "end_col": 78, + "end_line": 13, + "input_file": { + "filename": "autogen/starknet/storage_var/Sheet_is_mint_open/decl.cairo" + }, + "parent_location": [ + { + "end_col": 50, + "end_line": 431, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" + }, + "start_col": 25, + "start_line": 431 + }, + "While trying to retrieve the implicit argument 'range_check_ptr' in:" + ], + "start_col": 63, + "start_line": 13 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 70, + "start_line": 429 + } + }, + "3784": { + "accessible_scopes": [ + "sheet.library", + "sheet.library._assert_is_open" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 50, + "end_line": 431, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" + }, + "start_col": 25, + "start_line": 431 + } + }, + "3786": { + "accessible_scopes": [ + "sheet.library", + "sheet.library._assert_is_open" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 28, + "end_line": 432, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" + }, + "start_col": 9, + "start_line": 432 + } + }, + "3788": { + "accessible_scopes": [ + "sheet.library", + "sheet.library._assert_is_open" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 33, + "end_line": 13, + "input_file": { + "filename": "autogen/starknet/storage_var/Sheet_is_mint_open/decl.cairo" + }, + "parent_location": [ + { + "end_col": 50, + "end_line": 431, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" + }, + "parent_location": [ + { + "end_col": 40, + "end_line": 429, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" + }, + "parent_location": [ + { + "end_col": 15, + "end_line": 434, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" + }, + "start_col": 5, + "start_line": 434 + }, + "While trying to retrieve the implicit argument 'syscall_ptr' in:" + ], + "start_col": 22, + "start_line": 429 + }, + "While expanding the reference 'syscall_ptr' in:" + ], + "start_col": 25, + "start_line": 431 + }, + "While trying to update the implicit return value 'syscall_ptr' in:" + ], + "start_col": 15, + "start_line": 13 + } + }, + "3789": { + "accessible_scopes": [ + "sheet.library", + "sheet.library._assert_is_open" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 61, + "end_line": 13, + "input_file": { + "filename": "autogen/starknet/storage_var/Sheet_is_mint_open/decl.cairo" + }, + "parent_location": [ + { + "end_col": 50, + "end_line": 431, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" + }, + "parent_location": [ + { + "end_col": 68, + "end_line": 429, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" + }, + "parent_location": [ + { + "end_col": 15, + "end_line": 434, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" + }, + "start_col": 5, + "start_line": 434 + }, + "While trying to retrieve the implicit argument 'pedersen_ptr' in:" + ], + "start_col": 42, + "start_line": 429 + }, + "While expanding the reference 'pedersen_ptr' in:" + ], + "start_col": 25, + "start_line": 431 + }, + "While trying to update the implicit return value 'pedersen_ptr' in:" + ], + "start_col": 35, + "start_line": 13 + } + }, + "3790": { + "accessible_scopes": [ + "sheet.library", + "sheet.library._assert_is_open" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 78, + "end_line": 13, + "input_file": { + "filename": "autogen/starknet/storage_var/Sheet_is_mint_open/decl.cairo" + }, + "parent_location": [ + { + "end_col": 50, + "end_line": 431, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" + }, + "parent_location": [ + { + "end_col": 85, + "end_line": 429, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" + }, + "parent_location": [ + { + "end_col": 15, + "end_line": 434, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" + }, + "start_col": 5, + "start_line": 434 + }, + "While trying to retrieve the implicit argument 'range_check_ptr' in:" + ], + "start_col": 70, + "start_line": 429 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 25, + "start_line": 431 + }, + "While trying to update the implicit return value 'range_check_ptr' in:" + ], + "start_col": 63, + "start_line": 13 + } + }, + "3791": { + "accessible_scopes": [ + "sheet.library", + "sheet.library._assert_is_open" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 15, + "end_line": 434, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" + }, + "start_col": 5, + "start_line": 434 + } + }, + "3792": { + "accessible_scopes": [ + "__main__", + "__main__.initialized", + "__main__.initialized.addr" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 41, + "end_line": 7, + "input_file": { + "filename": "autogen/starknet/storage_var/initialized/impl.cairo" + }, + "parent_location": [ + { + "end_col": 41, + "end_line": 7, + "input_file": { + "filename": "autogen/starknet/storage_var/initialized/decl.cairo" + }, + "parent_location": [ + { + "end_col": 26, + "end_line": 9, + "input_file": { + "filename": "autogen/starknet/storage_var/initialized/impl.cairo" + }, + "start_col": 9, + "start_line": 9 + }, + "While trying to retrieve the implicit argument 'pedersen_ptr' in:" + ], + "start_col": 15, + "start_line": 7 + }, + "While expanding the reference 'pedersen_ptr' in:" + ], + "start_col": 15, + "start_line": 7 + } + }, + "3793": { + "accessible_scopes": [ + "__main__", + "__main__.initialized", + "__main__.initialized.addr" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 58, + "end_line": 7, + "input_file": { + "filename": "autogen/starknet/storage_var/initialized/impl.cairo" + }, + "parent_location": [ + { + "end_col": 58, + "end_line": 7, + "input_file": { + "filename": "autogen/starknet/storage_var/initialized/decl.cairo" + }, + "parent_location": [ + { + "end_col": 26, + "end_line": 9, + "input_file": { + "filename": "autogen/starknet/storage_var/initialized/impl.cairo" + }, + "start_col": 9, + "start_line": 9 + }, + "While trying to retrieve the implicit argument 'range_check_ptr' in:" + ], + "start_col": 43, + "start_line": 7 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 43, + "start_line": 7 + } + }, + "3794": { + "accessible_scopes": [ + "__main__", + "__main__.initialized", + "__main__.initialized.addr" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 95, + "end_line": 8, + "input_file": { + "filename": "autogen/starknet/storage_var/initialized/impl.cairo" + }, + "parent_location": [ + { + "end_col": 24, + "end_line": 9, + "input_file": { + "filename": "autogen/starknet/storage_var/initialized/impl.cairo" + }, + "start_col": 21, + "start_line": 9 + }, + "While expanding the reference 'res' in:" + ], + "start_col": 19, + "start_line": 8 + } + }, + "3796": { + "accessible_scopes": [ + "__main__", + "__main__.initialized", + "__main__.initialized.addr" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 26, + "end_line": 9, + "input_file": { + "filename": "autogen/starknet/storage_var/initialized/impl.cairo" + }, + "start_col": 9, + "start_line": 9 + } + }, + "3797": { + "accessible_scopes": [ + "__main__", + "__main__.initialized", + "__main__.initialized.read" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 61, + "end_line": 12, + "input_file": { + "filename": "autogen/starknet/storage_var/initialized/impl.cairo" + }, + "parent_location": [ + { + "end_col": 41, + "end_line": 7, + "input_file": { + "filename": "autogen/starknet/storage_var/initialized/decl.cairo" + }, + "parent_location": [ + { + "end_col": 36, + "end_line": 13, + "input_file": { + "filename": "autogen/starknet/storage_var/initialized/impl.cairo" + }, + "start_col": 30, + "start_line": 13 + }, + "While trying to retrieve the implicit argument 'pedersen_ptr' in:" + ], + "start_col": 15, + "start_line": 7 + }, + "While expanding the reference 'pedersen_ptr' in:" + ], + "start_col": 35, + "start_line": 12 + } + }, + "3798": { + "accessible_scopes": [ + "__main__", + "__main__.initialized", + "__main__.initialized.read" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 78, + "end_line": 12, + "input_file": { + "filename": "autogen/starknet/storage_var/initialized/impl.cairo" + }, + "parent_location": [ + { + "end_col": 58, + "end_line": 7, + "input_file": { + "filename": "autogen/starknet/storage_var/initialized/decl.cairo" + }, + "parent_location": [ + { + "end_col": 36, + "end_line": 13, + "input_file": { + "filename": "autogen/starknet/storage_var/initialized/impl.cairo" + }, + "start_col": 30, + "start_line": 13 + }, + "While trying to retrieve the implicit argument 'range_check_ptr' in:" + ], + "start_col": 43, + "start_line": 7 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 63, + "start_line": 12 + } + }, + "3799": { + "accessible_scopes": [ + "__main__", + "__main__.initialized", + "__main__.initialized.read" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 36, + "end_line": 13, + "input_file": { + "filename": "autogen/starknet/storage_var/initialized/impl.cairo" + }, + "start_col": 30, + "start_line": 13 + } + }, + "3801": { + "accessible_scopes": [ + "__main__", + "__main__.initialized", + "__main__.initialized.read" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 33, + "end_line": 12, + "input_file": { + "filename": "autogen/starknet/storage_var/initialized/impl.cairo" + }, + "parent_location": [ + { + "end_col": 37, + "end_line": 352, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/starknet/common/syscalls.cairo" + }, + "parent_location": [ + { + "end_col": 75, + "end_line": 14, + "input_file": { + "filename": "autogen/starknet/storage_var/initialized/impl.cairo" + }, + "start_col": 37, + "start_line": 14 + }, + "While trying to retrieve the implicit argument 'syscall_ptr' in:" + ], + "start_col": 19, + "start_line": 352 + }, + "While expanding the reference 'syscall_ptr' in:" + ], + "start_col": 15, + "start_line": 12 + } + }, + "3802": { + "accessible_scopes": [ + "__main__", + "__main__.initialized", + "__main__.initialized.read" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 26, + "end_line": 13, + "input_file": { + "filename": "autogen/starknet/storage_var/initialized/impl.cairo" + }, + "parent_location": [ + { + "end_col": 70, + "end_line": 14, + "input_file": { + "filename": "autogen/starknet/storage_var/initialized/impl.cairo" + }, + "start_col": 58, + "start_line": 14 + }, + "While expanding the reference 'storage_addr' in:" + ], + "start_col": 14, + "start_line": 13 + } + }, + "3803": { + "accessible_scopes": [ + "__main__", + "__main__.initialized", + "__main__.initialized.read" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 75, + "end_line": 14, + "input_file": { + "filename": "autogen/starknet/storage_var/initialized/impl.cairo" + }, + "start_col": 37, + "start_line": 14 + } + }, + "3805": { + "accessible_scopes": [ + "__main__", + "__main__.initialized", + "__main__.initialized.read" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 37, + "end_line": 352, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/starknet/common/syscalls.cairo" + }, + "parent_location": [ + { + "end_col": 75, + "end_line": 14, + "input_file": { + "filename": "autogen/starknet/storage_var/initialized/impl.cairo" + }, + "parent_location": [ + { + "end_col": 42, + "end_line": 16, + "input_file": { + "filename": "autogen/starknet/storage_var/initialized/impl.cairo" + }, + "start_col": 31, + "start_line": 16 + }, + "While expanding the reference 'syscall_ptr' in:" + ], + "start_col": 37, + "start_line": 14 + }, + "While trying to update the implicit return value 'syscall_ptr' in:" + ], + "start_col": 19, + "start_line": 352 + } + }, + "3806": { + "accessible_scopes": [ + "__main__", + "__main__.initialized", + "__main__.initialized.read" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 41, + "end_line": 7, + "input_file": { + "filename": "autogen/starknet/storage_var/initialized/decl.cairo" + }, + "parent_location": [ + { + "end_col": 36, + "end_line": 13, + "input_file": { + "filename": "autogen/starknet/storage_var/initialized/impl.cairo" + }, + "parent_location": [ + { + "end_col": 44, + "end_line": 17, + "input_file": { + "filename": "autogen/starknet/storage_var/initialized/impl.cairo" + }, + "start_col": 32, + "start_line": 17 + }, + "While expanding the reference 'pedersen_ptr' in:" + ], + "start_col": 30, + "start_line": 13 + }, + "While trying to update the implicit return value 'pedersen_ptr' in:" + ], + "start_col": 15, + "start_line": 7 + } + }, + "3807": { + "accessible_scopes": [ + "__main__", + "__main__.initialized", + "__main__.initialized.read" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 58, + "end_line": 7, + "input_file": { + "filename": "autogen/starknet/storage_var/initialized/decl.cairo" + }, + "parent_location": [ + { + "end_col": 36, + "end_line": 13, + "input_file": { + "filename": "autogen/starknet/storage_var/initialized/impl.cairo" + }, + "parent_location": [ + { + "end_col": 50, + "end_line": 18, + "input_file": { + "filename": "autogen/starknet/storage_var/initialized/impl.cairo" + }, + "start_col": 35, + "start_line": 18 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 30, + "start_line": 13 + }, + "While trying to update the implicit return value 'range_check_ptr' in:" + ], + "start_col": 43, + "start_line": 7 + } + }, + "3808": { + "accessible_scopes": [ + "__main__", + "__main__.initialized", + "__main__.initialized.read" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 33, + "end_line": 14, + "input_file": { + "filename": "autogen/starknet/storage_var/initialized/impl.cairo" + }, + "parent_location": [ + { + "end_col": 64, + "end_line": 19, + "input_file": { + "filename": "autogen/starknet/storage_var/initialized/impl.cairo" + }, + "start_col": 45, + "start_line": 19 + }, + "While expanding the reference '__storage_var_temp0' in:" + ], + "start_col": 14, + "start_line": 14 + } + }, + "3809": { + "accessible_scopes": [ + "__main__", + "__main__.initialized", + "__main__.initialized.read" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 55, + "end_line": 20, + "input_file": { + "filename": "autogen/starknet/storage_var/initialized/impl.cairo" + }, + "start_col": 9, + "start_line": 20 + } + }, + "3810": { + "accessible_scopes": [ + "__main__", + "__main__.initialized", + "__main__.initialized.write" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 62, + "end_line": 23, + "input_file": { + "filename": "autogen/starknet/storage_var/initialized/impl.cairo" + }, + "parent_location": [ + { + "end_col": 41, + "end_line": 7, + "input_file": { + "filename": "autogen/starknet/storage_var/initialized/decl.cairo" + }, + "parent_location": [ + { + "end_col": 36, + "end_line": 24, + "input_file": { + "filename": "autogen/starknet/storage_var/initialized/impl.cairo" + }, + "start_col": 30, + "start_line": 24 + }, + "While trying to retrieve the implicit argument 'pedersen_ptr' in:" + ], + "start_col": 15, + "start_line": 7 + }, + "While expanding the reference 'pedersen_ptr' in:" + ], + "start_col": 36, + "start_line": 23 + } + }, + "3811": { + "accessible_scopes": [ + "__main__", + "__main__.initialized", + "__main__.initialized.write" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 79, + "end_line": 23, + "input_file": { + "filename": "autogen/starknet/storage_var/initialized/impl.cairo" + }, + "parent_location": [ + { + "end_col": 58, + "end_line": 7, + "input_file": { + "filename": "autogen/starknet/storage_var/initialized/decl.cairo" + }, + "parent_location": [ + { + "end_col": 36, + "end_line": 24, + "input_file": { + "filename": "autogen/starknet/storage_var/initialized/impl.cairo" + }, + "start_col": 30, + "start_line": 24 + }, + "While trying to retrieve the implicit argument 'range_check_ptr' in:" + ], + "start_col": 43, + "start_line": 7 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 64, + "start_line": 23 + } + }, + "3812": { + "accessible_scopes": [ + "__main__", + "__main__.initialized", + "__main__.initialized.write" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 36, + "end_line": 24, + "input_file": { + "filename": "autogen/starknet/storage_var/initialized/impl.cairo" + }, + "start_col": 30, + "start_line": 24 + } + }, + "3814": { + "accessible_scopes": [ + "__main__", + "__main__.initialized", + "__main__.initialized.write" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 34, + "end_line": 23, + "input_file": { + "filename": "autogen/starknet/storage_var/initialized/impl.cairo" + }, + "parent_location": [ + { + "end_col": 38, + "end_line": 370, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/starknet/common/syscalls.cairo" + }, + "parent_location": [ + { + "end_col": 80, + "end_line": 25, + "input_file": { + "filename": "autogen/starknet/storage_var/initialized/impl.cairo" + }, + "start_col": 9, + "start_line": 25 + }, + "While trying to retrieve the implicit argument 'syscall_ptr' in:" + ], + "start_col": 20, + "start_line": 370 + }, + "While expanding the reference 'syscall_ptr' in:" + ], + "start_col": 16, + "start_line": 23 + } + }, + "3815": { + "accessible_scopes": [ + "__main__", + "__main__.initialized", + "__main__.initialized.write" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 26, + "end_line": 24, + "input_file": { + "filename": "autogen/starknet/storage_var/initialized/impl.cairo" + }, + "parent_location": [ + { + "end_col": 43, + "end_line": 25, + "input_file": { + "filename": "autogen/starknet/storage_var/initialized/impl.cairo" + }, + "start_col": 31, + "start_line": 25 + }, + "While expanding the reference 'storage_addr' in:" + ], + "start_col": 14, + "start_line": 24 + } + }, + "3816": { + "accessible_scopes": [ + "__main__", + "__main__.initialized", + "__main__.initialized.write" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 79, + "end_line": 25, + "input_file": { + "filename": "autogen/starknet/storage_var/initialized/impl.cairo" + }, + "start_col": 55, + "start_line": 25 + } + }, + "3817": { + "accessible_scopes": [ + "__main__", + "__main__.initialized", + "__main__.initialized.write" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 80, + "end_line": 25, + "input_file": { + "filename": "autogen/starknet/storage_var/initialized/impl.cairo" + }, + "start_col": 9, + "start_line": 25 + } + }, + "3819": { + "accessible_scopes": [ + "__main__", + "__main__.initialized", + "__main__.initialized.write" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 41, + "end_line": 7, + "input_file": { + "filename": "autogen/starknet/storage_var/initialized/decl.cairo" + }, + "parent_location": [ + { + "end_col": 36, + "end_line": 24, + "input_file": { + "filename": "autogen/starknet/storage_var/initialized/impl.cairo" + }, + "parent_location": [ + { + "end_col": 62, + "end_line": 19, + "input_file": { + "filename": "autogen/starknet/storage_var/initialized/decl.cairo" + }, + "parent_location": [ + { + "end_col": 19, + "end_line": 26, + "input_file": { + "filename": "autogen/starknet/storage_var/initialized/impl.cairo" + }, + "start_col": 9, + "start_line": 26 + }, + "While trying to retrieve the implicit argument 'pedersen_ptr' in:" + ], + "start_col": 36, + "start_line": 19 + }, + "While expanding the reference 'pedersen_ptr' in:" + ], + "start_col": 30, + "start_line": 24 + }, + "While trying to update the implicit return value 'pedersen_ptr' in:" + ], + "start_col": 15, + "start_line": 7 + } + }, + "3820": { + "accessible_scopes": [ + "__main__", + "__main__.initialized", + "__main__.initialized.write" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 58, + "end_line": 7, + "input_file": { + "filename": "autogen/starknet/storage_var/initialized/decl.cairo" + }, + "parent_location": [ + { + "end_col": 36, + "end_line": 24, + "input_file": { + "filename": "autogen/starknet/storage_var/initialized/impl.cairo" + }, + "parent_location": [ + { + "end_col": 79, + "end_line": 19, + "input_file": { + "filename": "autogen/starknet/storage_var/initialized/decl.cairo" + }, + "parent_location": [ + { + "end_col": 19, + "end_line": 26, + "input_file": { + "filename": "autogen/starknet/storage_var/initialized/impl.cairo" + }, + "start_col": 9, + "start_line": 26 + }, + "While trying to retrieve the implicit argument 'range_check_ptr' in:" + ], + "start_col": 64, + "start_line": 19 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 30, + "start_line": 24 + }, + "While trying to update the implicit return value 'range_check_ptr' in:" + ], + "start_col": 43, + "start_line": 7 + } + }, + "3821": { + "accessible_scopes": [ + "__main__", + "__main__.initialized", + "__main__.initialized.write" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 19, + "end_line": 26, + "input_file": { + "filename": "autogen/starknet/storage_var/initialized/impl.cairo" + }, + "start_col": 9, + "start_line": 26 + } + }, + "3822": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.owner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 30, + "end_line": 32, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "parent_location": [ + { + "end_col": 34, + "end_line": 56, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/access/ownable/library.cairo" + }, + "parent_location": [ + { + "end_col": 27, + "end_line": 33, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "start_col": 12, + "start_line": 33 + }, + "While trying to retrieve the implicit argument 'syscall_ptr' in:" + ], + "start_col": 16, + "start_line": 56 + }, + "While expanding the reference 'syscall_ptr' in:" + ], + "start_col": 12, + "start_line": 32 + } + }, + "3823": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.owner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 58, + "end_line": 32, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "parent_location": [ + { + "end_col": 62, + "end_line": 56, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/access/ownable/library.cairo" + }, + "parent_location": [ + { + "end_col": 27, + "end_line": 33, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "start_col": 12, + "start_line": 33 + }, + "While trying to retrieve the implicit argument 'pedersen_ptr' in:" + ], + "start_col": 36, + "start_line": 56 + }, + "While expanding the reference 'pedersen_ptr' in:" + ], + "start_col": 32, + "start_line": 32 + } + }, + "3824": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.owner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 75, + "end_line": 32, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "parent_location": [ + { + "end_col": 79, + "end_line": 56, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/access/ownable/library.cairo" + }, + "parent_location": [ + { + "end_col": 27, + "end_line": 33, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "start_col": 12, + "start_line": 33 + }, + "While trying to retrieve the implicit argument 'range_check_ptr' in:" + ], + "start_col": 64, + "start_line": 56 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 60, + "start_line": 32 + } + }, + "3825": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.owner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 27, + "end_line": 33, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "start_col": 12, + "start_line": 33 + } + }, + "3827": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.owner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 28, + "end_line": 33, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "start_col": 5, + "start_line": 33 + } + }, + "3828": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.owner_encode_return" + ], + "flow_tracking_data": null, + "hints": [ + { + "location": { + "end_col": 38, + "end_line": 3, + "input_file": { + "filename": "autogen/starknet/external/return/owner/c1ea7b1e827d8c158fe70e5d717faa1b8c13dd7db70cc1edeadb514de355a1bc.cairo" + }, + "parent_location": [ + { + "end_col": 11, + "end_line": 32, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "start_col": 6, + "start_line": 32 + }, + "While handling return value of" + ], + "start_col": 5, + "start_line": 3 + }, + "n_prefix_newlines": 0 + } + ], + "inst": { + "end_col": 18, + "end_line": 4, + "input_file": { + "filename": "autogen/starknet/external/return/owner/c1ea7b1e827d8c158fe70e5d717faa1b8c13dd7db70cc1edeadb514de355a1bc.cairo" + }, + "parent_location": [ + { + "end_col": 11, + "end_line": 32, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "start_col": 6, + "start_line": 32 + }, + "While handling return value of" + ], + "start_col": 5, + "start_line": 4 + } + }, + "3830": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.owner_encode_return" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 47, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/arg_processor/b02ddc13e06346668d980e18c0fec90f17036d195bf95d21ac18e846a0a129f3.cairo" + }, + "parent_location": [ + { + "end_col": 94, + "end_line": 32, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "start_col": 83, + "start_line": 32 + }, + "While handling return value 'owner'" + ], + "start_col": 1, + "start_line": 1 + } + }, + "3831": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.owner_encode_return" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 48, + "end_line": 2, + "input_file": { + "filename": "autogen/starknet/arg_processor/b02ddc13e06346668d980e18c0fec90f17036d195bf95d21ac18e846a0a129f3.cairo" + }, + "parent_location": [ + { + "end_col": 94, + "end_line": 32, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "parent_location": [ + { + "end_col": 36, + "end_line": 11, + "input_file": { + "filename": "autogen/starknet/external/return/owner/c1ea7b1e827d8c158fe70e5d717faa1b8c13dd7db70cc1edeadb514de355a1bc.cairo" + }, + "parent_location": [ + { + "end_col": 11, + "end_line": 32, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "start_col": 6, + "start_line": 32 + }, + "While handling return value of" + ], + "start_col": 18, + "start_line": 11 + }, + "While expanding the reference '__return_value_ptr' in:" + ], + "start_col": 83, + "start_line": 32 + }, + "While handling return value 'owner'" + ], + "start_col": 26, + "start_line": 2 + } + }, + "3833": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.owner_encode_return" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 67, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/return/owner/c1ea7b1e827d8c158fe70e5d717faa1b8c13dd7db70cc1edeadb514de355a1bc.cairo" + }, + "parent_location": [ + { + "end_col": 11, + "end_line": 32, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "parent_location": [ + { + "end_col": 40, + "end_line": 10, + "input_file": { + "filename": "autogen/starknet/external/return/owner/c1ea7b1e827d8c158fe70e5d717faa1b8c13dd7db70cc1edeadb514de355a1bc.cairo" + }, + "parent_location": [ + { + "end_col": 11, + "end_line": 32, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "start_col": 6, + "start_line": 32 + }, + "While handling return value of" + ], + "start_col": 25, + "start_line": 10 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 6, + "start_line": 32 + }, + "While handling return value of" + ], + "start_col": 52, + "start_line": 1 + } + }, + "3834": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.owner_encode_return" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 63, + "end_line": 11, + "input_file": { + "filename": "autogen/starknet/external/return/owner/c1ea7b1e827d8c158fe70e5d717faa1b8c13dd7db70cc1edeadb514de355a1bc.cairo" + }, + "parent_location": [ + { + "end_col": 11, + "end_line": 32, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "start_col": 6, + "start_line": 32 + }, + "While handling return value of" + ], + "start_col": 18, + "start_line": 11 + } + }, + "3835": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.owner_encode_return" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 35, + "end_line": 5, + "input_file": { + "filename": "autogen/starknet/external/return/owner/c1ea7b1e827d8c158fe70e5d717faa1b8c13dd7db70cc1edeadb514de355a1bc.cairo" + }, + "parent_location": [ + { + "end_col": 11, + "end_line": 32, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "parent_location": [ + { + "end_col": 38, + "end_line": 12, + "input_file": { + "filename": "autogen/starknet/external/return/owner/c1ea7b1e827d8c158fe70e5d717faa1b8c13dd7db70cc1edeadb514de355a1bc.cairo" + }, + "parent_location": [ + { + "end_col": 11, + "end_line": 32, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "start_col": 6, + "start_line": 32 + }, + "While handling return value of" + ], + "start_col": 14, + "start_line": 12 + }, + "While expanding the reference '__return_value_ptr_start' in:" + ], + "start_col": 6, + "start_line": 32 + }, + "While handling return value of" + ], + "start_col": 11, + "start_line": 5 + } + }, + "3836": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.owner_encode_return" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 40, + "end_line": 12, + "input_file": { + "filename": "autogen/starknet/external/return/owner/c1ea7b1e827d8c158fe70e5d717faa1b8c13dd7db70cc1edeadb514de355a1bc.cairo" + }, + "parent_location": [ + { + "end_col": 11, + "end_line": 32, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "start_col": 6, + "start_line": 32 + }, + "While handling return value of" + ], + "start_col": 5, + "start_line": 9 + } + }, + "3837": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.owner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 58, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/arg_processor/01cba52f8515996bb9d7070bde81ff39281d096d7024a558efcba6e1fd2402cf.cairo" + }, + "parent_location": [ + { + "end_col": 11, + "end_line": 32, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "start_col": 6, + "start_line": 32 + }, + "While handling calldata of" + ], + "start_col": 1, + "start_line": 1 + } + }, + "3838": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.owner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 64, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/owner/b2c52ca2d2a8fc8791a983086d8716c5eacd0c3d62934914d2286f84b98ff4cb.cairo" + }, + "parent_location": [ + { + "end_col": 30, + "end_line": 32, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "parent_location": [ + { + "end_col": 55, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/owner/613a24dd6fa1e6c043f44c3b480cfa5d629bfe6891f43b0ff9ba79b40a6c8e9e.cairo" + }, + "parent_location": [ + { + "end_col": 11, + "end_line": 32, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "start_col": 6, + "start_line": 32 + }, + "While constructing the external wrapper for:" + ], + "start_col": 44, + "start_line": 1 + }, + "While expanding the reference 'syscall_ptr' in:" + ], + "start_col": 12, + "start_line": 32 + }, + "While constructing the external wrapper for:" + ], + "start_col": 19, + "start_line": 1 + } + }, + "3839": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.owner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 110, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/owner/9684a85e93c782014ca14293edea4eb2502039a5a7b6538ecd39c56faaf12529.cairo" + }, + "parent_location": [ + { + "end_col": 58, + "end_line": 32, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "parent_location": [ + { + "end_col": 82, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/owner/613a24dd6fa1e6c043f44c3b480cfa5d629bfe6891f43b0ff9ba79b40a6c8e9e.cairo" + }, + "parent_location": [ + { + "end_col": 11, + "end_line": 32, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "start_col": 6, + "start_line": 32 + }, + "While constructing the external wrapper for:" + ], + "start_col": 70, + "start_line": 1 + }, + "While expanding the reference 'pedersen_ptr' in:" + ], + "start_col": 32, + "start_line": 32 + }, + "While constructing the external wrapper for:" + ], + "start_col": 20, + "start_line": 1 + } + }, + "3840": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.owner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 67, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/owner/741ea357d6336b0bed7bf0472425acd0311d543883b803388880e60a232040c7.cairo" + }, + "parent_location": [ + { + "end_col": 75, + "end_line": 32, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "parent_location": [ + { + "end_col": 115, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/owner/613a24dd6fa1e6c043f44c3b480cfa5d629bfe6891f43b0ff9ba79b40a6c8e9e.cairo" + }, + "parent_location": [ + { + "end_col": 11, + "end_line": 32, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "start_col": 6, + "start_line": 32 + }, + "While constructing the external wrapper for:" + ], + "start_col": 100, + "start_line": 1 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 60, + "start_line": 32 + }, + "While constructing the external wrapper for:" + ], + "start_col": 23, + "start_line": 1 + } + }, + "3841": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.owner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 11, + "end_line": 32, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "start_col": 6, + "start_line": 32 + } + }, + "3843": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.owner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 115, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/owner/613a24dd6fa1e6c043f44c3b480cfa5d629bfe6891f43b0ff9ba79b40a6c8e9e.cairo" + }, + "parent_location": [ + { + "end_col": 11, + "end_line": 32, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "parent_location": [ + { + "end_col": 94, + "end_line": 2, + "input_file": { + "filename": "autogen/starknet/external/owner/613a24dd6fa1e6c043f44c3b480cfa5d629bfe6891f43b0ff9ba79b40a6c8e9e.cairo" + }, + "parent_location": [ + { + "end_col": 11, + "end_line": 32, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "start_col": 6, + "start_line": 32 + }, + "While constructing the external wrapper for:" + ], + "start_col": 79, + "start_line": 2 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 6, + "start_line": 32 + }, + "While constructing the external wrapper for:" + ], + "start_col": 100, + "start_line": 1 + } + }, + "3844": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.owner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 95, + "end_line": 2, + "input_file": { + "filename": "autogen/starknet/external/owner/613a24dd6fa1e6c043f44c3b480cfa5d629bfe6891f43b0ff9ba79b40a6c8e9e.cairo" + }, + "parent_location": [ + { + "end_col": 11, + "end_line": 32, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "start_col": 6, + "start_line": 32 + }, + "While constructing the external wrapper for:" + ], + "start_col": 48, + "start_line": 2 + } + }, + "3846": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.owner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 55, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/owner/613a24dd6fa1e6c043f44c3b480cfa5d629bfe6891f43b0ff9ba79b40a6c8e9e.cairo" + }, + "parent_location": [ + { + "end_col": 11, + "end_line": 32, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "parent_location": [ + { + "end_col": 20, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/owner/da17921a4e81c09e730800bbf23bfdbe5e9e6bfaedc59d80fbf62087fa43c27d.cairo" + }, + "parent_location": [ + { + "end_col": 11, + "end_line": 32, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "start_col": 6, + "start_line": 32 + }, + "While constructing the external wrapper for:" + ], + "start_col": 9, + "start_line": 1 + }, + "While expanding the reference 'syscall_ptr' in:" + ], + "start_col": 6, + "start_line": 32 + }, + "While constructing the external wrapper for:" + ], + "start_col": 44, + "start_line": 1 + } + }, + "3847": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.owner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 82, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/owner/613a24dd6fa1e6c043f44c3b480cfa5d629bfe6891f43b0ff9ba79b40a6c8e9e.cairo" + }, + "parent_location": [ + { + "end_col": 11, + "end_line": 32, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "parent_location": [ + { + "end_col": 33, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/owner/da17921a4e81c09e730800bbf23bfdbe5e9e6bfaedc59d80fbf62087fa43c27d.cairo" + }, + "parent_location": [ + { + "end_col": 11, + "end_line": 32, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "start_col": 6, + "start_line": 32 + }, + "While constructing the external wrapper for:" + ], + "start_col": 21, + "start_line": 1 + }, + "While expanding the reference 'pedersen_ptr' in:" + ], + "start_col": 6, + "start_line": 32 + }, + "While constructing the external wrapper for:" + ], + "start_col": 70, + "start_line": 1 + } + }, + "3848": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.owner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 21, + "end_line": 2, + "input_file": { + "filename": "autogen/starknet/external/owner/613a24dd6fa1e6c043f44c3b480cfa5d629bfe6891f43b0ff9ba79b40a6c8e9e.cairo" + }, + "parent_location": [ + { + "end_col": 11, + "end_line": 32, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "parent_location": [ + { + "end_col": 49, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/owner/da17921a4e81c09e730800bbf23bfdbe5e9e6bfaedc59d80fbf62087fa43c27d.cairo" + }, + "parent_location": [ + { + "end_col": 11, + "end_line": 32, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "start_col": 6, + "start_line": 32 + }, + "While constructing the external wrapper for:" + ], + "start_col": 34, + "start_line": 1 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 6, + "start_line": 32 + }, + "While constructing the external wrapper for:" + ], + "start_col": 6, + "start_line": 2 + } + }, + "3849": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.owner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 35, + "end_line": 2, + "input_file": { + "filename": "autogen/starknet/external/owner/613a24dd6fa1e6c043f44c3b480cfa5d629bfe6891f43b0ff9ba79b40a6c8e9e.cairo" + }, + "parent_location": [ + { + "end_col": 11, + "end_line": 32, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "parent_location": [ + { + "end_col": 62, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/owner/da17921a4e81c09e730800bbf23bfdbe5e9e6bfaedc59d80fbf62087fa43c27d.cairo" + }, + "parent_location": [ + { + "end_col": 11, + "end_line": 32, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "start_col": 6, + "start_line": 32 + }, + "While constructing the external wrapper for:" + ], + "start_col": 50, + "start_line": 1 + }, + "While expanding the reference 'retdata_size' in:" + ], + "start_col": 6, + "start_line": 32 + }, + "While constructing the external wrapper for:" + ], + "start_col": 23, + "start_line": 2 + } + }, + "3850": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.owner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 44, + "end_line": 2, + "input_file": { + "filename": "autogen/starknet/external/owner/613a24dd6fa1e6c043f44c3b480cfa5d629bfe6891f43b0ff9ba79b40a6c8e9e.cairo" + }, + "parent_location": [ + { + "end_col": 11, + "end_line": 32, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "parent_location": [ + { + "end_col": 70, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/owner/da17921a4e81c09e730800bbf23bfdbe5e9e6bfaedc59d80fbf62087fa43c27d.cairo" + }, + "parent_location": [ + { + "end_col": 11, + "end_line": 32, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "start_col": 6, + "start_line": 32 + }, + "While constructing the external wrapper for:" + ], + "start_col": 63, + "start_line": 1 + }, + "While expanding the reference 'retdata' in:" + ], + "start_col": 6, + "start_line": 32 + }, + "While constructing the external wrapper for:" + ], + "start_col": 37, + "start_line": 2 + } + }, + "3851": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.owner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 72, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/owner/da17921a4e81c09e730800bbf23bfdbe5e9e6bfaedc59d80fbf62087fa43c27d.cairo" + }, + "parent_location": [ + { + "end_col": 11, + "end_line": 32, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "start_col": 6, + "start_line": 32 + }, + "While constructing the external wrapper for:" + ], + "start_col": 1, + "start_line": 1 + } + }, + "3852": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.transferOwnership" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 42, + "end_line": 37, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "parent_location": [ + { + "end_col": 47, + "end_line": 60, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/access/ownable/library.cairo" + }, + "parent_location": [ + { + "end_col": 42, + "end_line": 40, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "start_col": 5, + "start_line": 40 + }, + "While trying to retrieve the implicit argument 'syscall_ptr' in:" + ], + "start_col": 29, + "start_line": 60 + }, + "While expanding the reference 'syscall_ptr' in:" + ], + "start_col": 24, + "start_line": 37 + } + }, + "3853": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.transferOwnership" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 70, + "end_line": 37, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "parent_location": [ + { + "end_col": 75, + "end_line": 60, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/access/ownable/library.cairo" + }, + "parent_location": [ + { + "end_col": 42, + "end_line": 40, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "start_col": 5, + "start_line": 40 + }, + "While trying to retrieve the implicit argument 'pedersen_ptr' in:" + ], + "start_col": 49, + "start_line": 60 + }, + "While expanding the reference 'pedersen_ptr' in:" + ], + "start_col": 44, + "start_line": 37 + } + }, + "3854": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.transferOwnership" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 87, + "end_line": 37, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "parent_location": [ + { + "end_col": 92, + "end_line": 60, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/access/ownable/library.cairo" + }, + "parent_location": [ + { + "end_col": 42, + "end_line": 40, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "start_col": 5, + "start_line": 40 + }, + "While trying to retrieve the implicit argument 'range_check_ptr' in:" + ], + "start_col": 77, + "start_line": 60 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 72, + "start_line": 37 + } + }, + "3855": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.transferOwnership" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 20, + "end_line": 38, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "parent_location": [ + { + "end_col": 41, + "end_line": 40, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "start_col": 32, + "start_line": 40 + }, + "While expanding the reference 'new_owner' in:" + ], + "start_col": 5, + "start_line": 38 + } + }, + "3856": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.transferOwnership" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 42, + "end_line": 40, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "start_col": 5, + "start_line": 40 + } + }, + "3858": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.transferOwnership" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 15, + "end_line": 41, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "start_col": 5, + "start_line": 41 + } + }, + "3859": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.transferOwnership" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 40, + "end_line": 2, + "input_file": { + "filename": "autogen/starknet/arg_processor/450f0509800d3afb78e5f375ff7b17115e6b5d0fd7e2bff94c78fdb15f5f2d10.cairo" + }, + "parent_location": [ + { + "end_col": 20, + "end_line": 38, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "parent_location": [ + { + "end_col": 45, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/arg_processor/c31620b02d4d706f0542c989b2aadc01b0981d1f6a5933a8fe4937ace3d70d92.cairo" + }, + "parent_location": [ + { + "end_col": 23, + "end_line": 37, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "parent_location": [ + { + "end_col": 57, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/arg_processor/01cba52f8515996bb9d7070bde81ff39281d096d7024a558efcba6e1fd2402cf.cairo" + }, + "parent_location": [ + { + "end_col": 23, + "end_line": 37, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "start_col": 6, + "start_line": 37 + }, + "While handling calldata of" + ], + "start_col": 35, + "start_line": 1 + }, + "While expanding the reference '__calldata_actual_size' in:" + ], + "start_col": 6, + "start_line": 37 + }, + "While handling calldata of" + ], + "start_col": 31, + "start_line": 1 + }, + "While expanding the reference '__calldata_ptr' in:" + ], + "start_col": 5, + "start_line": 38 + }, + "While handling calldata argument 'new_owner'" + ], + "start_col": 22, + "start_line": 2 + } + }, + "3861": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.transferOwnership" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 58, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/arg_processor/01cba52f8515996bb9d7070bde81ff39281d096d7024a558efcba6e1fd2402cf.cairo" + }, + "parent_location": [ + { + "end_col": 23, + "end_line": 37, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "start_col": 6, + "start_line": 37 + }, + "While handling calldata of" + ], + "start_col": 1, + "start_line": 1 + } + }, + "3862": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.transferOwnership" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 64, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/transferOwnership/b2c52ca2d2a8fc8791a983086d8716c5eacd0c3d62934914d2286f84b98ff4cb.cairo" + }, + "parent_location": [ + { + "end_col": 42, + "end_line": 37, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "parent_location": [ + { + "end_col": 55, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/transferOwnership/c2abbdf6d40d1d1b0441e88eb8846ba0c3d55e5f282e3d3f8d0a35a43a9b3e33.cairo" + }, + "parent_location": [ + { + "end_col": 23, + "end_line": 37, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "start_col": 6, + "start_line": 37 + }, + "While constructing the external wrapper for:" + ], + "start_col": 44, + "start_line": 1 + }, + "While expanding the reference 'syscall_ptr' in:" + ], + "start_col": 24, + "start_line": 37 + }, + "While constructing the external wrapper for:" + ], + "start_col": 19, + "start_line": 1 + } + }, + "3863": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.transferOwnership" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 110, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/transferOwnership/9684a85e93c782014ca14293edea4eb2502039a5a7b6538ecd39c56faaf12529.cairo" + }, + "parent_location": [ + { + "end_col": 70, + "end_line": 37, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "parent_location": [ + { + "end_col": 82, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/transferOwnership/c2abbdf6d40d1d1b0441e88eb8846ba0c3d55e5f282e3d3f8d0a35a43a9b3e33.cairo" + }, + "parent_location": [ + { + "end_col": 23, + "end_line": 37, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "start_col": 6, + "start_line": 37 + }, + "While constructing the external wrapper for:" + ], + "start_col": 70, + "start_line": 1 + }, + "While expanding the reference 'pedersen_ptr' in:" + ], + "start_col": 44, + "start_line": 37 + }, + "While constructing the external wrapper for:" + ], + "start_col": 20, + "start_line": 1 + } + }, + "3864": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.transferOwnership" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 67, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/transferOwnership/741ea357d6336b0bed7bf0472425acd0311d543883b803388880e60a232040c7.cairo" + }, + "parent_location": [ + { + "end_col": 87, + "end_line": 37, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "parent_location": [ + { + "end_col": 115, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/transferOwnership/c2abbdf6d40d1d1b0441e88eb8846ba0c3d55e5f282e3d3f8d0a35a43a9b3e33.cairo" + }, + "parent_location": [ + { + "end_col": 23, + "end_line": 37, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "start_col": 6, + "start_line": 37 + }, + "While constructing the external wrapper for:" + ], + "start_col": 100, + "start_line": 1 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 72, + "start_line": 37 + }, + "While constructing the external wrapper for:" + ], + "start_col": 23, + "start_line": 1 + } + }, + "3865": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.transferOwnership" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 48, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/arg_processor/450f0509800d3afb78e5f375ff7b17115e6b5d0fd7e2bff94c78fdb15f5f2d10.cairo" + }, + "parent_location": [ + { + "end_col": 20, + "end_line": 38, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "parent_location": [ + { + "end_col": 151, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/transferOwnership/c2abbdf6d40d1d1b0441e88eb8846ba0c3d55e5f282e3d3f8d0a35a43a9b3e33.cairo" + }, + "parent_location": [ + { + "end_col": 23, + "end_line": 37, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "start_col": 6, + "start_line": 37 + }, + "While constructing the external wrapper for:" + ], + "start_col": 127, + "start_line": 1 + }, + "While expanding the reference '__calldata_arg_new_owner' in:" + ], + "start_col": 5, + "start_line": 38 + }, + "While handling calldata argument 'new_owner'" + ], + "start_col": 32, + "start_line": 1 + } + }, + "3866": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.transferOwnership" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 23, + "end_line": 37, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "start_col": 6, + "start_line": 37 + } + }, + "3868": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.transferOwnership" + ], + "flow_tracking_data": null, + "hints": [ + { + "location": { + "end_col": 34, + "end_line": 2, + "input_file": { + "filename": "autogen/starknet/external/transferOwnership/c2abbdf6d40d1d1b0441e88eb8846ba0c3d55e5f282e3d3f8d0a35a43a9b3e33.cairo" + }, + "parent_location": [ + { + "end_col": 23, + "end_line": 37, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "start_col": 6, + "start_line": 37 + }, + "While constructing the external wrapper for:" + ], + "start_col": 1, + "start_line": 2 + }, + "n_prefix_newlines": 0 + } + ], + "inst": { + "end_col": 24, + "end_line": 3, + "input_file": { + "filename": "autogen/starknet/external/transferOwnership/c2abbdf6d40d1d1b0441e88eb8846ba0c3d55e5f282e3d3f8d0a35a43a9b3e33.cairo" + }, + "parent_location": [ + { + "end_col": 23, + "end_line": 37, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "start_col": 6, + "start_line": 37 + }, + "While constructing the external wrapper for:" + ], + "start_col": 1, + "start_line": 3 + } + }, + "3870": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.transferOwnership" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 55, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/transferOwnership/c2abbdf6d40d1d1b0441e88eb8846ba0c3d55e5f282e3d3f8d0a35a43a9b3e33.cairo" + }, + "parent_location": [ + { + "end_col": 23, + "end_line": 37, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "parent_location": [ + { + "end_col": 20, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/transferOwnership/da17921a4e81c09e730800bbf23bfdbe5e9e6bfaedc59d80fbf62087fa43c27d.cairo" + }, + "parent_location": [ + { + "end_col": 23, + "end_line": 37, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "start_col": 6, + "start_line": 37 + }, + "While constructing the external wrapper for:" + ], + "start_col": 9, + "start_line": 1 + }, + "While expanding the reference 'syscall_ptr' in:" + ], + "start_col": 6, + "start_line": 37 + }, + "While constructing the external wrapper for:" + ], + "start_col": 44, + "start_line": 1 + } + }, + "3871": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.transferOwnership" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 82, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/transferOwnership/c2abbdf6d40d1d1b0441e88eb8846ba0c3d55e5f282e3d3f8d0a35a43a9b3e33.cairo" + }, + "parent_location": [ + { + "end_col": 23, + "end_line": 37, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "parent_location": [ + { + "end_col": 33, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/transferOwnership/da17921a4e81c09e730800bbf23bfdbe5e9e6bfaedc59d80fbf62087fa43c27d.cairo" + }, + "parent_location": [ + { + "end_col": 23, + "end_line": 37, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "start_col": 6, + "start_line": 37 + }, + "While constructing the external wrapper for:" + ], + "start_col": 21, + "start_line": 1 + }, + "While expanding the reference 'pedersen_ptr' in:" + ], + "start_col": 6, + "start_line": 37 + }, + "While constructing the external wrapper for:" + ], + "start_col": 70, + "start_line": 1 + } + }, + "3872": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.transferOwnership" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 115, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/transferOwnership/c2abbdf6d40d1d1b0441e88eb8846ba0c3d55e5f282e3d3f8d0a35a43a9b3e33.cairo" + }, + "parent_location": [ + { + "end_col": 23, + "end_line": 37, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "parent_location": [ + { + "end_col": 49, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/transferOwnership/da17921a4e81c09e730800bbf23bfdbe5e9e6bfaedc59d80fbf62087fa43c27d.cairo" + }, + "parent_location": [ + { + "end_col": 23, + "end_line": 37, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "start_col": 6, + "start_line": 37 + }, + "While constructing the external wrapper for:" + ], + "start_col": 34, + "start_line": 1 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 6, + "start_line": 37 + }, + "While constructing the external wrapper for:" + ], + "start_col": 100, + "start_line": 1 + } + }, + "3873": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.transferOwnership" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 21, + "end_line": 4, + "input_file": { + "filename": "autogen/starknet/external/transferOwnership/c2abbdf6d40d1d1b0441e88eb8846ba0c3d55e5f282e3d3f8d0a35a43a9b3e33.cairo" + }, + "parent_location": [ + { + "end_col": 23, + "end_line": 37, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "parent_location": [ + { + "end_col": 62, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/transferOwnership/da17921a4e81c09e730800bbf23bfdbe5e9e6bfaedc59d80fbf62087fa43c27d.cairo" + }, + "parent_location": [ + { + "end_col": 23, + "end_line": 37, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "start_col": 6, + "start_line": 37 + }, + "While constructing the external wrapper for:" + ], + "start_col": 50, + "start_line": 1 + }, + "While expanding the reference 'retdata_size' in:" + ], + "start_col": 6, + "start_line": 37 + }, + "While constructing the external wrapper for:" + ], + "start_col": 20, + "start_line": 4 + } + }, + "3875": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.transferOwnership" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 16, + "end_line": 3, + "input_file": { + "filename": "autogen/starknet/external/transferOwnership/c2abbdf6d40d1d1b0441e88eb8846ba0c3d55e5f282e3d3f8d0a35a43a9b3e33.cairo" + }, + "parent_location": [ + { + "end_col": 23, + "end_line": 37, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "parent_location": [ + { + "end_col": 70, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/transferOwnership/da17921a4e81c09e730800bbf23bfdbe5e9e6bfaedc59d80fbf62087fa43c27d.cairo" + }, + "parent_location": [ + { + "end_col": 23, + "end_line": 37, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "start_col": 6, + "start_line": 37 + }, + "While constructing the external wrapper for:" + ], + "start_col": 63, + "start_line": 1 + }, + "While expanding the reference 'retdata' in:" + ], + "start_col": 6, + "start_line": 37 + }, + "While constructing the external wrapper for:" + ], + "start_col": 9, + "start_line": 3 + } + }, + "3876": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.transferOwnership" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 72, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/transferOwnership/da17921a4e81c09e730800bbf23bfdbe5e9e6bfaedc59d80fbf62087fa43c27d.cairo" + }, + "parent_location": [ + { + "end_col": 23, + "end_line": 37, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "start_col": 6, + "start_line": 37 + }, + "While constructing the external wrapper for:" + ], + "start_col": 1, + "start_line": 1 + } + }, + "3877": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.setMaxPerWallet" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 40, + "end_line": 45, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "parent_location": [ + { + "end_col": 46, + "end_line": 40, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/access/ownable/library.cairo" + }, + "parent_location": [ + { + "end_col": 32, + "end_line": 46, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "start_col": 5, + "start_line": 46 + }, + "While trying to retrieve the implicit argument 'syscall_ptr' in:" + ], + "start_col": 28, + "start_line": 40 + }, + "While expanding the reference 'syscall_ptr' in:" + ], + "start_col": 22, + "start_line": 45 + } + }, + "3878": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.setMaxPerWallet" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 68, + "end_line": 45, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "parent_location": [ + { + "end_col": 74, + "end_line": 40, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/access/ownable/library.cairo" + }, + "parent_location": [ + { + "end_col": 32, + "end_line": 46, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "start_col": 5, + "start_line": 46 + }, + "While trying to retrieve the implicit argument 'pedersen_ptr' in:" + ], + "start_col": 48, + "start_line": 40 + }, + "While expanding the reference 'pedersen_ptr' in:" + ], + "start_col": 42, + "start_line": 45 + } + }, + "3879": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.setMaxPerWallet" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 85, + "end_line": 45, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "parent_location": [ + { + "end_col": 91, + "end_line": 40, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/access/ownable/library.cairo" + }, + "parent_location": [ + { + "end_col": 32, + "end_line": 46, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "start_col": 5, + "start_line": 46 + }, + "While trying to retrieve the implicit argument 'range_check_ptr' in:" + ], + "start_col": 76, + "start_line": 40 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 70, + "start_line": 45 + } + }, + "3880": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.setMaxPerWallet" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 32, + "end_line": 46, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "start_col": 5, + "start_line": 46 + } + }, + "3882": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.setMaxPerWallet" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 96, + "end_line": 45, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "parent_location": [ + { + "end_col": 35, + "end_line": 47, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "start_col": 32, + "start_line": 47 + }, + "While expanding the reference 'max' in:" + ], + "start_col": 87, + "start_line": 45 + } + }, + "3883": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.setMaxPerWallet" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 36, + "end_line": 47, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "start_col": 5, + "start_line": 47 + } + }, + "3885": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.setMaxPerWallet" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 15, + "end_line": 48, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "start_col": 5, + "start_line": 48 + } + }, + "3886": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.setMaxPerWallet" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 40, + "end_line": 2, + "input_file": { + "filename": "autogen/starknet/arg_processor/06e5a14f93bc3fcb38f775bb6be32ec075a9ef033df7521d51e3a5a3fb688ccb.cairo" + }, + "parent_location": [ + { + "end_col": 96, + "end_line": 45, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "parent_location": [ + { + "end_col": 45, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/arg_processor/c31620b02d4d706f0542c989b2aadc01b0981d1f6a5933a8fe4937ace3d70d92.cairo" + }, + "parent_location": [ + { + "end_col": 21, + "end_line": 45, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "parent_location": [ + { + "end_col": 57, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/arg_processor/01cba52f8515996bb9d7070bde81ff39281d096d7024a558efcba6e1fd2402cf.cairo" + }, + "parent_location": [ + { + "end_col": 21, + "end_line": 45, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "start_col": 6, + "start_line": 45 + }, + "While handling calldata of" + ], + "start_col": 35, + "start_line": 1 + }, + "While expanding the reference '__calldata_actual_size' in:" + ], + "start_col": 6, + "start_line": 45 + }, + "While handling calldata of" + ], + "start_col": 31, + "start_line": 1 + }, + "While expanding the reference '__calldata_ptr' in:" + ], + "start_col": 87, + "start_line": 45 + }, + "While handling calldata argument 'max'" + ], + "start_col": 22, + "start_line": 2 + } + }, + "3888": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.setMaxPerWallet" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 58, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/arg_processor/01cba52f8515996bb9d7070bde81ff39281d096d7024a558efcba6e1fd2402cf.cairo" + }, + "parent_location": [ + { + "end_col": 21, + "end_line": 45, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "start_col": 6, + "start_line": 45 + }, + "While handling calldata of" + ], + "start_col": 1, + "start_line": 1 + } + }, + "3889": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.setMaxPerWallet" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 64, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/setMaxPerWallet/b2c52ca2d2a8fc8791a983086d8716c5eacd0c3d62934914d2286f84b98ff4cb.cairo" + }, + "parent_location": [ + { + "end_col": 40, + "end_line": 45, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "parent_location": [ + { + "end_col": 55, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/setMaxPerWallet/e308d249203f5705a190f059b56eb14752af6a01867f138740d0ff96dacabd43.cairo" + }, + "parent_location": [ + { + "end_col": 21, + "end_line": 45, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "start_col": 6, + "start_line": 45 + }, + "While constructing the external wrapper for:" + ], + "start_col": 44, + "start_line": 1 + }, + "While expanding the reference 'syscall_ptr' in:" + ], + "start_col": 22, + "start_line": 45 + }, + "While constructing the external wrapper for:" + ], + "start_col": 19, + "start_line": 1 + } + }, + "3890": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.setMaxPerWallet" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 110, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/setMaxPerWallet/9684a85e93c782014ca14293edea4eb2502039a5a7b6538ecd39c56faaf12529.cairo" + }, + "parent_location": [ + { + "end_col": 68, + "end_line": 45, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "parent_location": [ + { + "end_col": 82, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/setMaxPerWallet/e308d249203f5705a190f059b56eb14752af6a01867f138740d0ff96dacabd43.cairo" + }, + "parent_location": [ + { + "end_col": 21, + "end_line": 45, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "start_col": 6, + "start_line": 45 + }, + "While constructing the external wrapper for:" + ], + "start_col": 70, + "start_line": 1 + }, + "While expanding the reference 'pedersen_ptr' in:" + ], + "start_col": 42, + "start_line": 45 + }, + "While constructing the external wrapper for:" + ], + "start_col": 20, + "start_line": 1 + } + }, + "3891": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.setMaxPerWallet" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 67, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/setMaxPerWallet/741ea357d6336b0bed7bf0472425acd0311d543883b803388880e60a232040c7.cairo" + }, + "parent_location": [ + { + "end_col": 85, + "end_line": 45, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "parent_location": [ + { + "end_col": 115, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/setMaxPerWallet/e308d249203f5705a190f059b56eb14752af6a01867f138740d0ff96dacabd43.cairo" + }, + "parent_location": [ + { + "end_col": 21, + "end_line": 45, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "start_col": 6, + "start_line": 45 + }, + "While constructing the external wrapper for:" + ], + "start_col": 100, + "start_line": 1 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 70, + "start_line": 45 + }, + "While constructing the external wrapper for:" + ], + "start_col": 23, + "start_line": 1 + } + }, + "3892": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.setMaxPerWallet" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 42, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/arg_processor/06e5a14f93bc3fcb38f775bb6be32ec075a9ef033df7521d51e3a5a3fb688ccb.cairo" + }, + "parent_location": [ + { + "end_col": 96, + "end_line": 45, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "parent_location": [ + { + "end_col": 139, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/setMaxPerWallet/e308d249203f5705a190f059b56eb14752af6a01867f138740d0ff96dacabd43.cairo" + }, + "parent_location": [ + { + "end_col": 21, + "end_line": 45, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "start_col": 6, + "start_line": 45 + }, + "While constructing the external wrapper for:" + ], + "start_col": 121, + "start_line": 1 + }, + "While expanding the reference '__calldata_arg_max' in:" + ], + "start_col": 87, + "start_line": 45 + }, + "While handling calldata argument 'max'" + ], + "start_col": 26, + "start_line": 1 + } + }, + "3893": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.setMaxPerWallet" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 21, + "end_line": 45, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "start_col": 6, + "start_line": 45 + } + }, + "3895": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.setMaxPerWallet" + ], + "flow_tracking_data": null, + "hints": [ + { + "location": { + "end_col": 34, + "end_line": 2, + "input_file": { + "filename": "autogen/starknet/external/setMaxPerWallet/e308d249203f5705a190f059b56eb14752af6a01867f138740d0ff96dacabd43.cairo" + }, + "parent_location": [ + { + "end_col": 21, + "end_line": 45, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "start_col": 6, + "start_line": 45 + }, + "While constructing the external wrapper for:" + ], + "start_col": 1, + "start_line": 2 + }, + "n_prefix_newlines": 0 + } + ], + "inst": { + "end_col": 24, + "end_line": 3, + "input_file": { + "filename": "autogen/starknet/external/setMaxPerWallet/e308d249203f5705a190f059b56eb14752af6a01867f138740d0ff96dacabd43.cairo" + }, + "parent_location": [ + { + "end_col": 21, + "end_line": 45, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "start_col": 6, + "start_line": 45 + }, + "While constructing the external wrapper for:" + ], + "start_col": 1, + "start_line": 3 + } + }, + "3897": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.setMaxPerWallet" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 55, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/setMaxPerWallet/e308d249203f5705a190f059b56eb14752af6a01867f138740d0ff96dacabd43.cairo" + }, + "parent_location": [ + { + "end_col": 21, + "end_line": 45, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "parent_location": [ + { + "end_col": 20, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/setMaxPerWallet/da17921a4e81c09e730800bbf23bfdbe5e9e6bfaedc59d80fbf62087fa43c27d.cairo" + }, + "parent_location": [ + { + "end_col": 21, + "end_line": 45, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "start_col": 6, + "start_line": 45 + }, + "While constructing the external wrapper for:" + ], + "start_col": 9, + "start_line": 1 + }, + "While expanding the reference 'syscall_ptr' in:" + ], + "start_col": 6, + "start_line": 45 + }, + "While constructing the external wrapper for:" + ], + "start_col": 44, + "start_line": 1 + } + }, + "3898": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.setMaxPerWallet" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 82, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/setMaxPerWallet/e308d249203f5705a190f059b56eb14752af6a01867f138740d0ff96dacabd43.cairo" + }, + "parent_location": [ + { + "end_col": 21, + "end_line": 45, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "parent_location": [ + { + "end_col": 33, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/setMaxPerWallet/da17921a4e81c09e730800bbf23bfdbe5e9e6bfaedc59d80fbf62087fa43c27d.cairo" + }, + "parent_location": [ + { + "end_col": 21, + "end_line": 45, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "start_col": 6, + "start_line": 45 + }, + "While constructing the external wrapper for:" + ], + "start_col": 21, + "start_line": 1 + }, + "While expanding the reference 'pedersen_ptr' in:" + ], + "start_col": 6, + "start_line": 45 + }, + "While constructing the external wrapper for:" + ], + "start_col": 70, + "start_line": 1 + } + }, + "3899": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.setMaxPerWallet" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 115, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/setMaxPerWallet/e308d249203f5705a190f059b56eb14752af6a01867f138740d0ff96dacabd43.cairo" + }, + "parent_location": [ + { + "end_col": 21, + "end_line": 45, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "parent_location": [ + { + "end_col": 49, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/setMaxPerWallet/da17921a4e81c09e730800bbf23bfdbe5e9e6bfaedc59d80fbf62087fa43c27d.cairo" + }, + "parent_location": [ + { + "end_col": 21, + "end_line": 45, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "start_col": 6, + "start_line": 45 + }, + "While constructing the external wrapper for:" + ], + "start_col": 34, + "start_line": 1 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 6, + "start_line": 45 + }, + "While constructing the external wrapper for:" + ], + "start_col": 100, + "start_line": 1 + } + }, + "3900": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.setMaxPerWallet" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 21, + "end_line": 4, + "input_file": { + "filename": "autogen/starknet/external/setMaxPerWallet/e308d249203f5705a190f059b56eb14752af6a01867f138740d0ff96dacabd43.cairo" + }, + "parent_location": [ + { + "end_col": 21, + "end_line": 45, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "parent_location": [ + { + "end_col": 62, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/setMaxPerWallet/da17921a4e81c09e730800bbf23bfdbe5e9e6bfaedc59d80fbf62087fa43c27d.cairo" + }, + "parent_location": [ + { + "end_col": 21, + "end_line": 45, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "start_col": 6, + "start_line": 45 + }, + "While constructing the external wrapper for:" + ], + "start_col": 50, + "start_line": 1 + }, + "While expanding the reference 'retdata_size' in:" + ], + "start_col": 6, + "start_line": 45 + }, + "While constructing the external wrapper for:" + ], + "start_col": 20, + "start_line": 4 + } + }, + "3902": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.setMaxPerWallet" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 16, + "end_line": 3, + "input_file": { + "filename": "autogen/starknet/external/setMaxPerWallet/e308d249203f5705a190f059b56eb14752af6a01867f138740d0ff96dacabd43.cairo" + }, + "parent_location": [ + { + "end_col": 21, + "end_line": 45, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "parent_location": [ + { + "end_col": 70, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/setMaxPerWallet/da17921a4e81c09e730800bbf23bfdbe5e9e6bfaedc59d80fbf62087fa43c27d.cairo" + }, + "parent_location": [ + { + "end_col": 21, + "end_line": 45, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "start_col": 6, + "start_line": 45 + }, + "While constructing the external wrapper for:" + ], + "start_col": 63, + "start_line": 1 + }, + "While expanding the reference 'retdata' in:" + ], + "start_col": 6, + "start_line": 45 + }, + "While constructing the external wrapper for:" + ], + "start_col": 9, + "start_line": 3 + } + }, + "3903": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.setMaxPerWallet" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 72, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/setMaxPerWallet/da17921a4e81c09e730800bbf23bfdbe5e9e6bfaedc59d80fbf62087fa43c27d.cairo" + }, + "parent_location": [ + { + "end_col": 21, + "end_line": 45, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "start_col": 6, + "start_line": 45 + }, + "While constructing the external wrapper for:" + ], + "start_col": 1, + "start_line": 1 + } + }, + "3904": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.getMaxPerWallet" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 40, + "end_line": 52, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "parent_location": [ + { + "end_col": 33, + "end_line": 13, + "input_file": { + "filename": "autogen/starknet/storage_var/Sheet_max_per_wallet/decl.cairo" + }, + "parent_location": [ + { + "end_col": 39, + "end_line": 55, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "start_col": 12, + "start_line": 55 + }, + "While trying to retrieve the implicit argument 'syscall_ptr' in:" + ], + "start_col": 15, + "start_line": 13 + }, + "While expanding the reference 'syscall_ptr' in:" + ], + "start_col": 22, + "start_line": 52 + } + }, + "3905": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.getMaxPerWallet" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 68, + "end_line": 52, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "parent_location": [ + { + "end_col": 61, + "end_line": 13, + "input_file": { + "filename": "autogen/starknet/storage_var/Sheet_max_per_wallet/decl.cairo" + }, + "parent_location": [ + { + "end_col": 39, + "end_line": 55, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "start_col": 12, + "start_line": 55 + }, + "While trying to retrieve the implicit argument 'pedersen_ptr' in:" + ], + "start_col": 35, + "start_line": 13 + }, + "While expanding the reference 'pedersen_ptr' in:" + ], + "start_col": 42, + "start_line": 52 + } + }, + "3906": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.getMaxPerWallet" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 85, + "end_line": 52, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "parent_location": [ + { + "end_col": 78, + "end_line": 13, + "input_file": { + "filename": "autogen/starknet/storage_var/Sheet_max_per_wallet/decl.cairo" + }, + "parent_location": [ + { + "end_col": 39, + "end_line": 55, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "start_col": 12, + "start_line": 55 + }, + "While trying to retrieve the implicit argument 'range_check_ptr' in:" + ], + "start_col": 63, + "start_line": 13 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 70, + "start_line": 52 + } + }, + "3907": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.getMaxPerWallet" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 39, + "end_line": 55, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "start_col": 12, + "start_line": 55 + } + }, + "3909": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.getMaxPerWallet" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 40, + "end_line": 55, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "start_col": 5, + "start_line": 55 + } + }, + "3910": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.getMaxPerWallet_encode_return" + ], + "flow_tracking_data": null, + "hints": [ + { + "location": { + "end_col": 38, + "end_line": 3, + "input_file": { + "filename": "autogen/starknet/external/return/getMaxPerWallet/d2ee4d3b1583586a9c7911079b8ad0e4c03e4dff239e0bd34696827d233e32ba.cairo" + }, + "parent_location": [ + { + "end_col": 21, + "end_line": 52, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "start_col": 6, + "start_line": 52 + }, + "While handling return value of" + ], + "start_col": 5, + "start_line": 3 + }, + "n_prefix_newlines": 0 + } + ], + "inst": { + "end_col": 18, + "end_line": 4, + "input_file": { + "filename": "autogen/starknet/external/return/getMaxPerWallet/d2ee4d3b1583586a9c7911079b8ad0e4c03e4dff239e0bd34696827d233e32ba.cairo" + }, + "parent_location": [ + { + "end_col": 21, + "end_line": 52, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "start_col": 6, + "start_line": 52 + }, + "While handling return value of" + ], + "start_col": 5, + "start_line": 4 + } + }, + "3912": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.getMaxPerWallet_encode_return" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 45, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/arg_processor/e276a8bfa422a700d63781b00d1ac04d0496d9b70b1f051710b53e01fffe130c.cairo" + }, + "parent_location": [ + { + "end_col": 14, + "end_line": 53, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "start_col": 5, + "start_line": 53 + }, + "While handling return value 'max'" + ], + "start_col": 1, + "start_line": 1 + } + }, + "3913": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.getMaxPerWallet_encode_return" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 48, + "end_line": 2, + "input_file": { + "filename": "autogen/starknet/arg_processor/e276a8bfa422a700d63781b00d1ac04d0496d9b70b1f051710b53e01fffe130c.cairo" + }, + "parent_location": [ + { + "end_col": 14, + "end_line": 53, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "parent_location": [ + { + "end_col": 36, + "end_line": 11, + "input_file": { + "filename": "autogen/starknet/external/return/getMaxPerWallet/d2ee4d3b1583586a9c7911079b8ad0e4c03e4dff239e0bd34696827d233e32ba.cairo" + }, + "parent_location": [ + { + "end_col": 21, + "end_line": 52, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "start_col": 6, + "start_line": 52 + }, + "While handling return value of" + ], + "start_col": 18, + "start_line": 11 + }, + "While expanding the reference '__return_value_ptr' in:" + ], + "start_col": 5, + "start_line": 53 + }, + "While handling return value 'max'" + ], + "start_col": 26, + "start_line": 2 + } + }, + "3915": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.getMaxPerWallet_encode_return" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 75, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/return/getMaxPerWallet/d2ee4d3b1583586a9c7911079b8ad0e4c03e4dff239e0bd34696827d233e32ba.cairo" + }, + "parent_location": [ + { + "end_col": 21, + "end_line": 52, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "parent_location": [ + { + "end_col": 40, + "end_line": 10, + "input_file": { + "filename": "autogen/starknet/external/return/getMaxPerWallet/d2ee4d3b1583586a9c7911079b8ad0e4c03e4dff239e0bd34696827d233e32ba.cairo" + }, + "parent_location": [ + { + "end_col": 21, + "end_line": 52, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "start_col": 6, + "start_line": 52 + }, + "While handling return value of" + ], + "start_col": 25, + "start_line": 10 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 6, + "start_line": 52 + }, + "While handling return value of" + ], + "start_col": 60, + "start_line": 1 + } + }, + "3916": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.getMaxPerWallet_encode_return" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 63, + "end_line": 11, + "input_file": { + "filename": "autogen/starknet/external/return/getMaxPerWallet/d2ee4d3b1583586a9c7911079b8ad0e4c03e4dff239e0bd34696827d233e32ba.cairo" + }, + "parent_location": [ + { + "end_col": 21, + "end_line": 52, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "start_col": 6, + "start_line": 52 + }, + "While handling return value of" + ], + "start_col": 18, + "start_line": 11 + } + }, + "3917": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.getMaxPerWallet_encode_return" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 35, + "end_line": 5, + "input_file": { + "filename": "autogen/starknet/external/return/getMaxPerWallet/d2ee4d3b1583586a9c7911079b8ad0e4c03e4dff239e0bd34696827d233e32ba.cairo" + }, + "parent_location": [ + { + "end_col": 21, + "end_line": 52, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "parent_location": [ + { + "end_col": 38, + "end_line": 12, + "input_file": { + "filename": "autogen/starknet/external/return/getMaxPerWallet/d2ee4d3b1583586a9c7911079b8ad0e4c03e4dff239e0bd34696827d233e32ba.cairo" + }, + "parent_location": [ + { + "end_col": 21, + "end_line": 52, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "start_col": 6, + "start_line": 52 + }, + "While handling return value of" + ], + "start_col": 14, + "start_line": 12 + }, + "While expanding the reference '__return_value_ptr_start' in:" + ], + "start_col": 6, + "start_line": 52 + }, + "While handling return value of" + ], + "start_col": 11, + "start_line": 5 + } + }, + "3918": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.getMaxPerWallet_encode_return" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 40, + "end_line": 12, + "input_file": { + "filename": "autogen/starknet/external/return/getMaxPerWallet/d2ee4d3b1583586a9c7911079b8ad0e4c03e4dff239e0bd34696827d233e32ba.cairo" + }, + "parent_location": [ + { + "end_col": 21, + "end_line": 52, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "start_col": 6, + "start_line": 52 + }, + "While handling return value of" + ], + "start_col": 5, + "start_line": 9 + } + }, + "3919": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.getMaxPerWallet" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 58, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/arg_processor/01cba52f8515996bb9d7070bde81ff39281d096d7024a558efcba6e1fd2402cf.cairo" + }, + "parent_location": [ + { + "end_col": 21, + "end_line": 52, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "start_col": 6, + "start_line": 52 + }, + "While handling calldata of" + ], + "start_col": 1, + "start_line": 1 + } + }, + "3920": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.getMaxPerWallet" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 64, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/getMaxPerWallet/b2c52ca2d2a8fc8791a983086d8716c5eacd0c3d62934914d2286f84b98ff4cb.cairo" + }, + "parent_location": [ + { + "end_col": 40, + "end_line": 52, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "parent_location": [ + { + "end_col": 55, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/getMaxPerWallet/ceb6999ac1e0d9e3ce90cae3d8b161ded5f8cd083d4cb07d602d4d0dfb9793ea.cairo" + }, + "parent_location": [ + { + "end_col": 21, + "end_line": 52, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "start_col": 6, + "start_line": 52 + }, + "While constructing the external wrapper for:" + ], + "start_col": 44, + "start_line": 1 + }, + "While expanding the reference 'syscall_ptr' in:" + ], + "start_col": 22, + "start_line": 52 + }, + "While constructing the external wrapper for:" + ], + "start_col": 19, + "start_line": 1 + } + }, + "3921": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.getMaxPerWallet" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 110, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/getMaxPerWallet/9684a85e93c782014ca14293edea4eb2502039a5a7b6538ecd39c56faaf12529.cairo" + }, + "parent_location": [ + { + "end_col": 68, + "end_line": 52, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "parent_location": [ + { + "end_col": 82, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/getMaxPerWallet/ceb6999ac1e0d9e3ce90cae3d8b161ded5f8cd083d4cb07d602d4d0dfb9793ea.cairo" + }, + "parent_location": [ + { + "end_col": 21, + "end_line": 52, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "start_col": 6, + "start_line": 52 + }, + "While constructing the external wrapper for:" + ], + "start_col": 70, + "start_line": 1 + }, + "While expanding the reference 'pedersen_ptr' in:" + ], + "start_col": 42, + "start_line": 52 + }, + "While constructing the external wrapper for:" + ], + "start_col": 20, + "start_line": 1 + } + }, + "3922": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.getMaxPerWallet" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 67, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/getMaxPerWallet/741ea357d6336b0bed7bf0472425acd0311d543883b803388880e60a232040c7.cairo" + }, + "parent_location": [ + { + "end_col": 85, + "end_line": 52, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "parent_location": [ + { + "end_col": 115, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/getMaxPerWallet/ceb6999ac1e0d9e3ce90cae3d8b161ded5f8cd083d4cb07d602d4d0dfb9793ea.cairo" + }, + "parent_location": [ + { + "end_col": 21, + "end_line": 52, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "start_col": 6, + "start_line": 52 + }, + "While constructing the external wrapper for:" + ], + "start_col": 100, + "start_line": 1 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 70, + "start_line": 52 + }, + "While constructing the external wrapper for:" + ], + "start_col": 23, + "start_line": 1 + } + }, + "3923": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.getMaxPerWallet" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 21, + "end_line": 52, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "start_col": 6, + "start_line": 52 + } + }, + "3925": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.getMaxPerWallet" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 115, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/getMaxPerWallet/ceb6999ac1e0d9e3ce90cae3d8b161ded5f8cd083d4cb07d602d4d0dfb9793ea.cairo" + }, + "parent_location": [ + { + "end_col": 21, + "end_line": 52, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "parent_location": [ + { + "end_col": 104, + "end_line": 2, + "input_file": { + "filename": "autogen/starknet/external/getMaxPerWallet/ceb6999ac1e0d9e3ce90cae3d8b161ded5f8cd083d4cb07d602d4d0dfb9793ea.cairo" + }, + "parent_location": [ + { + "end_col": 21, + "end_line": 52, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "start_col": 6, + "start_line": 52 + }, + "While constructing the external wrapper for:" + ], + "start_col": 89, + "start_line": 2 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 6, + "start_line": 52 + }, + "While constructing the external wrapper for:" + ], + "start_col": 100, + "start_line": 1 + } + }, + "3926": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.getMaxPerWallet" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 105, + "end_line": 2, + "input_file": { + "filename": "autogen/starknet/external/getMaxPerWallet/ceb6999ac1e0d9e3ce90cae3d8b161ded5f8cd083d4cb07d602d4d0dfb9793ea.cairo" + }, + "parent_location": [ + { + "end_col": 21, + "end_line": 52, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "start_col": 6, + "start_line": 52 + }, + "While constructing the external wrapper for:" + ], + "start_col": 48, + "start_line": 2 + } + }, + "3928": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.getMaxPerWallet" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 55, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/getMaxPerWallet/ceb6999ac1e0d9e3ce90cae3d8b161ded5f8cd083d4cb07d602d4d0dfb9793ea.cairo" + }, + "parent_location": [ + { + "end_col": 21, + "end_line": 52, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "parent_location": [ + { + "end_col": 20, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/getMaxPerWallet/da17921a4e81c09e730800bbf23bfdbe5e9e6bfaedc59d80fbf62087fa43c27d.cairo" + }, + "parent_location": [ + { + "end_col": 21, + "end_line": 52, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "start_col": 6, + "start_line": 52 + }, + "While constructing the external wrapper for:" + ], + "start_col": 9, + "start_line": 1 + }, + "While expanding the reference 'syscall_ptr' in:" + ], + "start_col": 6, + "start_line": 52 + }, + "While constructing the external wrapper for:" + ], + "start_col": 44, + "start_line": 1 + } + }, + "3929": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.getMaxPerWallet" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 82, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/getMaxPerWallet/ceb6999ac1e0d9e3ce90cae3d8b161ded5f8cd083d4cb07d602d4d0dfb9793ea.cairo" + }, + "parent_location": [ + { + "end_col": 21, + "end_line": 52, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "parent_location": [ + { + "end_col": 33, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/getMaxPerWallet/da17921a4e81c09e730800bbf23bfdbe5e9e6bfaedc59d80fbf62087fa43c27d.cairo" + }, + "parent_location": [ + { + "end_col": 21, + "end_line": 52, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "start_col": 6, + "start_line": 52 + }, + "While constructing the external wrapper for:" + ], + "start_col": 21, + "start_line": 1 + }, + "While expanding the reference 'pedersen_ptr' in:" + ], + "start_col": 6, + "start_line": 52 + }, + "While constructing the external wrapper for:" + ], + "start_col": 70, + "start_line": 1 + } + }, + "3930": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.getMaxPerWallet" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 21, + "end_line": 2, + "input_file": { + "filename": "autogen/starknet/external/getMaxPerWallet/ceb6999ac1e0d9e3ce90cae3d8b161ded5f8cd083d4cb07d602d4d0dfb9793ea.cairo" + }, + "parent_location": [ + { + "end_col": 21, + "end_line": 52, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "parent_location": [ + { + "end_col": 49, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/getMaxPerWallet/da17921a4e81c09e730800bbf23bfdbe5e9e6bfaedc59d80fbf62087fa43c27d.cairo" + }, + "parent_location": [ + { + "end_col": 21, + "end_line": 52, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "start_col": 6, + "start_line": 52 + }, + "While constructing the external wrapper for:" + ], + "start_col": 34, + "start_line": 1 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 6, + "start_line": 52 + }, + "While constructing the external wrapper for:" + ], + "start_col": 6, + "start_line": 2 + } + }, + "3931": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.getMaxPerWallet" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 35, + "end_line": 2, + "input_file": { + "filename": "autogen/starknet/external/getMaxPerWallet/ceb6999ac1e0d9e3ce90cae3d8b161ded5f8cd083d4cb07d602d4d0dfb9793ea.cairo" + }, + "parent_location": [ + { + "end_col": 21, + "end_line": 52, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "parent_location": [ + { + "end_col": 62, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/getMaxPerWallet/da17921a4e81c09e730800bbf23bfdbe5e9e6bfaedc59d80fbf62087fa43c27d.cairo" + }, + "parent_location": [ + { + "end_col": 21, + "end_line": 52, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "start_col": 6, + "start_line": 52 + }, + "While constructing the external wrapper for:" + ], + "start_col": 50, + "start_line": 1 + }, + "While expanding the reference 'retdata_size' in:" + ], + "start_col": 6, + "start_line": 52 + }, + "While constructing the external wrapper for:" + ], + "start_col": 23, + "start_line": 2 + } + }, + "3932": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.getMaxPerWallet" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 44, + "end_line": 2, + "input_file": { + "filename": "autogen/starknet/external/getMaxPerWallet/ceb6999ac1e0d9e3ce90cae3d8b161ded5f8cd083d4cb07d602d4d0dfb9793ea.cairo" + }, + "parent_location": [ + { + "end_col": 21, + "end_line": 52, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "parent_location": [ + { + "end_col": 70, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/getMaxPerWallet/da17921a4e81c09e730800bbf23bfdbe5e9e6bfaedc59d80fbf62087fa43c27d.cairo" + }, + "parent_location": [ + { + "end_col": 21, + "end_line": 52, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "start_col": 6, + "start_line": 52 + }, + "While constructing the external wrapper for:" + ], + "start_col": 63, + "start_line": 1 + }, + "While expanding the reference 'retdata' in:" + ], + "start_col": 6, + "start_line": 52 + }, + "While constructing the external wrapper for:" + ], + "start_col": 37, + "start_line": 2 + } + }, + "3933": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.getMaxPerWallet" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 72, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/getMaxPerWallet/da17921a4e81c09e730800bbf23bfdbe5e9e6bfaedc59d80fbf62087fa43c27d.cairo" + }, + "parent_location": [ + { + "end_col": 21, + "end_line": 52, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "start_col": 6, + "start_line": 52 + }, + "While constructing the external wrapper for:" + ], + "start_col": 1, + "start_line": 1 + } + }, + "3934": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.setCellPrice" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 37, + "end_line": 59, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "parent_location": [ + { + "end_col": 46, + "end_line": 40, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/access/ownable/library.cairo" + }, + "parent_location": [ + { + "end_col": 32, + "end_line": 60, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "start_col": 5, + "start_line": 60 + }, + "While trying to retrieve the implicit argument 'syscall_ptr' in:" + ], + "start_col": 28, + "start_line": 40 + }, + "While expanding the reference 'syscall_ptr' in:" + ], + "start_col": 19, + "start_line": 59 + } + }, + "3935": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.setCellPrice" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 65, + "end_line": 59, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "parent_location": [ + { + "end_col": 74, + "end_line": 40, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/access/ownable/library.cairo" + }, + "parent_location": [ + { + "end_col": 32, + "end_line": 60, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "start_col": 5, + "start_line": 60 + }, + "While trying to retrieve the implicit argument 'pedersen_ptr' in:" + ], + "start_col": 48, + "start_line": 40 + }, + "While expanding the reference 'pedersen_ptr' in:" + ], + "start_col": 39, + "start_line": 59 + } + }, + "3936": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.setCellPrice" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 82, + "end_line": 59, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "parent_location": [ + { + "end_col": 91, + "end_line": 40, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/access/ownable/library.cairo" + }, + "parent_location": [ + { + "end_col": 32, + "end_line": 60, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "start_col": 5, + "start_line": 60 + }, + "While trying to retrieve the implicit argument 'range_check_ptr' in:" + ], + "start_col": 76, + "start_line": 40 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 67, + "start_line": 59 + } + }, + "3937": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.setCellPrice" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 32, + "end_line": 60, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "start_col": 5, + "start_line": 60 + } + }, + "3939": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.setCellPrice" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 95, + "end_line": 59, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "parent_location": [ + { + "end_col": 31, + "end_line": 61, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "start_col": 26, + "start_line": 61 + }, + "While expanding the reference 'price' in:" + ], + "start_col": 84, + "start_line": 59 + } + }, + "3940": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.setCellPrice" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 32, + "end_line": 61, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "start_col": 5, + "start_line": 61 + } + }, + "3942": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.setCellPrice" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 15, + "end_line": 62, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "start_col": 5, + "start_line": 62 + } + }, + "3943": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.setCellPrice" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 40, + "end_line": 2, + "input_file": { + "filename": "autogen/starknet/arg_processor/1bbc33231ead392f3a08d02f40babade53c6aa934a03fd2567a7873343dbb650.cairo" + }, + "parent_location": [ + { + "end_col": 95, + "end_line": 59, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "parent_location": [ + { + "end_col": 45, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/arg_processor/c31620b02d4d706f0542c989b2aadc01b0981d1f6a5933a8fe4937ace3d70d92.cairo" + }, + "parent_location": [ + { + "end_col": 18, + "end_line": 59, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "parent_location": [ + { + "end_col": 57, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/arg_processor/01cba52f8515996bb9d7070bde81ff39281d096d7024a558efcba6e1fd2402cf.cairo" + }, + "parent_location": [ + { + "end_col": 18, + "end_line": 59, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "start_col": 6, + "start_line": 59 + }, + "While handling calldata of" + ], + "start_col": 35, + "start_line": 1 + }, + "While expanding the reference '__calldata_actual_size' in:" + ], + "start_col": 6, + "start_line": 59 + }, + "While handling calldata of" + ], + "start_col": 31, + "start_line": 1 + }, + "While expanding the reference '__calldata_ptr' in:" + ], + "start_col": 84, + "start_line": 59 + }, + "While handling calldata argument 'price'" + ], + "start_col": 22, + "start_line": 2 + } + }, + "3945": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.setCellPrice" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 58, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/arg_processor/01cba52f8515996bb9d7070bde81ff39281d096d7024a558efcba6e1fd2402cf.cairo" + }, + "parent_location": [ + { + "end_col": 18, + "end_line": 59, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "start_col": 6, + "start_line": 59 + }, + "While handling calldata of" + ], + "start_col": 1, + "start_line": 1 + } + }, + "3946": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.setCellPrice" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 64, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/setCellPrice/b2c52ca2d2a8fc8791a983086d8716c5eacd0c3d62934914d2286f84b98ff4cb.cairo" + }, + "parent_location": [ + { + "end_col": 37, + "end_line": 59, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "parent_location": [ + { + "end_col": 55, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/setCellPrice/6d5d29de66493f79f0601f83ef38e1c0e00eceeff32f74d3139213305d328ede.cairo" + }, + "parent_location": [ + { + "end_col": 18, + "end_line": 59, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "start_col": 6, + "start_line": 59 + }, + "While constructing the external wrapper for:" + ], + "start_col": 44, + "start_line": 1 + }, + "While expanding the reference 'syscall_ptr' in:" + ], + "start_col": 19, + "start_line": 59 + }, + "While constructing the external wrapper for:" + ], + "start_col": 19, + "start_line": 1 + } + }, + "3947": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.setCellPrice" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 110, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/setCellPrice/9684a85e93c782014ca14293edea4eb2502039a5a7b6538ecd39c56faaf12529.cairo" + }, + "parent_location": [ + { + "end_col": 65, + "end_line": 59, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "parent_location": [ + { + "end_col": 82, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/setCellPrice/6d5d29de66493f79f0601f83ef38e1c0e00eceeff32f74d3139213305d328ede.cairo" + }, + "parent_location": [ + { + "end_col": 18, + "end_line": 59, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "start_col": 6, + "start_line": 59 + }, + "While constructing the external wrapper for:" + ], + "start_col": 70, + "start_line": 1 + }, + "While expanding the reference 'pedersen_ptr' in:" + ], + "start_col": 39, + "start_line": 59 + }, + "While constructing the external wrapper for:" + ], + "start_col": 20, + "start_line": 1 + } + }, + "3948": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.setCellPrice" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 67, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/setCellPrice/741ea357d6336b0bed7bf0472425acd0311d543883b803388880e60a232040c7.cairo" + }, + "parent_location": [ + { + "end_col": 82, + "end_line": 59, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "parent_location": [ + { + "end_col": 115, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/setCellPrice/6d5d29de66493f79f0601f83ef38e1c0e00eceeff32f74d3139213305d328ede.cairo" + }, + "parent_location": [ + { + "end_col": 18, + "end_line": 59, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "start_col": 6, + "start_line": 59 + }, + "While constructing the external wrapper for:" + ], + "start_col": 100, + "start_line": 1 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 67, + "start_line": 59 + }, + "While constructing the external wrapper for:" + ], + "start_col": 23, + "start_line": 1 + } + }, + "3949": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.setCellPrice" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 44, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/arg_processor/1bbc33231ead392f3a08d02f40babade53c6aa934a03fd2567a7873343dbb650.cairo" + }, + "parent_location": [ + { + "end_col": 95, + "end_line": 59, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "parent_location": [ + { + "end_col": 143, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/setCellPrice/6d5d29de66493f79f0601f83ef38e1c0e00eceeff32f74d3139213305d328ede.cairo" + }, + "parent_location": [ + { + "end_col": 18, + "end_line": 59, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "start_col": 6, + "start_line": 59 + }, + "While constructing the external wrapper for:" + ], + "start_col": 123, + "start_line": 1 + }, + "While expanding the reference '__calldata_arg_price' in:" + ], + "start_col": 84, + "start_line": 59 + }, + "While handling calldata argument 'price'" + ], + "start_col": 28, + "start_line": 1 + } + }, + "3950": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.setCellPrice" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 18, + "end_line": 59, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "start_col": 6, + "start_line": 59 + } + }, + "3952": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.setCellPrice" + ], + "flow_tracking_data": null, + "hints": [ + { + "location": { + "end_col": 34, + "end_line": 2, + "input_file": { + "filename": "autogen/starknet/external/setCellPrice/6d5d29de66493f79f0601f83ef38e1c0e00eceeff32f74d3139213305d328ede.cairo" + }, + "parent_location": [ + { + "end_col": 18, + "end_line": 59, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "start_col": 6, + "start_line": 59 + }, + "While constructing the external wrapper for:" + ], + "start_col": 1, + "start_line": 2 + }, + "n_prefix_newlines": 0 + } + ], + "inst": { + "end_col": 24, + "end_line": 3, + "input_file": { + "filename": "autogen/starknet/external/setCellPrice/6d5d29de66493f79f0601f83ef38e1c0e00eceeff32f74d3139213305d328ede.cairo" + }, + "parent_location": [ + { + "end_col": 18, + "end_line": 59, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "start_col": 6, + "start_line": 59 + }, + "While constructing the external wrapper for:" + ], + "start_col": 1, + "start_line": 3 + } + }, + "3954": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.setCellPrice" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 55, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/setCellPrice/6d5d29de66493f79f0601f83ef38e1c0e00eceeff32f74d3139213305d328ede.cairo" + }, + "parent_location": [ + { + "end_col": 18, + "end_line": 59, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "parent_location": [ + { + "end_col": 20, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/setCellPrice/da17921a4e81c09e730800bbf23bfdbe5e9e6bfaedc59d80fbf62087fa43c27d.cairo" + }, + "parent_location": [ + { + "end_col": 18, + "end_line": 59, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "start_col": 6, + "start_line": 59 + }, + "While constructing the external wrapper for:" + ], + "start_col": 9, + "start_line": 1 + }, + "While expanding the reference 'syscall_ptr' in:" + ], + "start_col": 6, + "start_line": 59 + }, + "While constructing the external wrapper for:" + ], + "start_col": 44, + "start_line": 1 + } + }, + "3955": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.setCellPrice" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 82, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/setCellPrice/6d5d29de66493f79f0601f83ef38e1c0e00eceeff32f74d3139213305d328ede.cairo" + }, + "parent_location": [ + { + "end_col": 18, + "end_line": 59, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "parent_location": [ + { + "end_col": 33, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/setCellPrice/da17921a4e81c09e730800bbf23bfdbe5e9e6bfaedc59d80fbf62087fa43c27d.cairo" + }, + "parent_location": [ + { + "end_col": 18, + "end_line": 59, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "start_col": 6, + "start_line": 59 + }, + "While constructing the external wrapper for:" + ], + "start_col": 21, + "start_line": 1 + }, + "While expanding the reference 'pedersen_ptr' in:" + ], + "start_col": 6, + "start_line": 59 + }, + "While constructing the external wrapper for:" + ], + "start_col": 70, + "start_line": 1 + } + }, + "3956": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.setCellPrice" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 115, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/setCellPrice/6d5d29de66493f79f0601f83ef38e1c0e00eceeff32f74d3139213305d328ede.cairo" + }, + "parent_location": [ + { + "end_col": 18, + "end_line": 59, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "parent_location": [ + { + "end_col": 49, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/setCellPrice/da17921a4e81c09e730800bbf23bfdbe5e9e6bfaedc59d80fbf62087fa43c27d.cairo" + }, + "parent_location": [ + { + "end_col": 18, + "end_line": 59, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "start_col": 6, + "start_line": 59 + }, + "While constructing the external wrapper for:" + ], + "start_col": 34, + "start_line": 1 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 6, + "start_line": 59 + }, + "While constructing the external wrapper for:" + ], + "start_col": 100, + "start_line": 1 + } + }, + "3957": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.setCellPrice" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 21, + "end_line": 4, + "input_file": { + "filename": "autogen/starknet/external/setCellPrice/6d5d29de66493f79f0601f83ef38e1c0e00eceeff32f74d3139213305d328ede.cairo" + }, + "parent_location": [ + { + "end_col": 18, + "end_line": 59, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "parent_location": [ + { + "end_col": 62, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/setCellPrice/da17921a4e81c09e730800bbf23bfdbe5e9e6bfaedc59d80fbf62087fa43c27d.cairo" + }, + "parent_location": [ + { + "end_col": 18, + "end_line": 59, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "start_col": 6, + "start_line": 59 + }, + "While constructing the external wrapper for:" + ], + "start_col": 50, + "start_line": 1 + }, + "While expanding the reference 'retdata_size' in:" + ], + "start_col": 6, + "start_line": 59 + }, + "While constructing the external wrapper for:" + ], + "start_col": 20, + "start_line": 4 + } + }, + "3959": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.setCellPrice" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 16, + "end_line": 3, + "input_file": { + "filename": "autogen/starknet/external/setCellPrice/6d5d29de66493f79f0601f83ef38e1c0e00eceeff32f74d3139213305d328ede.cairo" + }, + "parent_location": [ + { + "end_col": 18, + "end_line": 59, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "parent_location": [ + { + "end_col": 70, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/setCellPrice/da17921a4e81c09e730800bbf23bfdbe5e9e6bfaedc59d80fbf62087fa43c27d.cairo" + }, + "parent_location": [ + { + "end_col": 18, + "end_line": 59, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "start_col": 6, + "start_line": 59 + }, + "While constructing the external wrapper for:" + ], + "start_col": 63, + "start_line": 1 + }, + "While expanding the reference 'retdata' in:" + ], + "start_col": 6, + "start_line": 59 + }, + "While constructing the external wrapper for:" + ], + "start_col": 9, + "start_line": 3 + } + }, + "3960": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.setCellPrice" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 72, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/setCellPrice/da17921a4e81c09e730800bbf23bfdbe5e9e6bfaedc59d80fbf62087fa43c27d.cairo" + }, + "parent_location": [ + { + "end_col": 18, + "end_line": 59, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "start_col": 6, + "start_line": 59 + }, + "While constructing the external wrapper for:" + ], + "start_col": 1, + "start_line": 1 + } + }, + "3961": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.getCellPrice" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 37, + "end_line": 66, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "parent_location": [ + { + "end_col": 43, + "end_line": 83, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" + }, + "parent_location": [ + { + "end_col": 34, + "end_line": 69, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "start_col": 12, + "start_line": 69 + }, + "While trying to retrieve the implicit argument 'syscall_ptr' in:" + ], + "start_col": 25, + "start_line": 83 + }, + "While expanding the reference 'syscall_ptr' in:" + ], + "start_col": 19, + "start_line": 66 + } + }, + "3962": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.getCellPrice" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 65, + "end_line": 66, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "parent_location": [ + { + "end_col": 71, + "end_line": 83, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" + }, + "parent_location": [ + { + "end_col": 34, + "end_line": 69, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "start_col": 12, + "start_line": 69 + }, + "While trying to retrieve the implicit argument 'pedersen_ptr' in:" + ], + "start_col": 45, + "start_line": 83 + }, + "While expanding the reference 'pedersen_ptr' in:" + ], + "start_col": 39, + "start_line": 66 + } + }, + "3963": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.getCellPrice" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 82, + "end_line": 66, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "parent_location": [ + { + "end_col": 88, + "end_line": 83, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" + }, + "parent_location": [ + { + "end_col": 34, + "end_line": 69, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "start_col": 12, + "start_line": 69 + }, + "While trying to retrieve the implicit argument 'range_check_ptr' in:" + ], + "start_col": 73, + "start_line": 83 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 67, + "start_line": 66 + } + }, + "3964": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.getCellPrice" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 34, + "end_line": 69, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "start_col": 12, + "start_line": 69 + } + }, + "3966": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.getCellPrice" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 35, + "end_line": 69, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "start_col": 5, + "start_line": 69 + } + }, + "3967": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.getCellPrice_encode_return" + ], + "flow_tracking_data": null, + "hints": [ + { + "location": { + "end_col": 38, + "end_line": 3, + "input_file": { + "filename": "autogen/starknet/external/return/getCellPrice/bd75f11e3bc8e8b852ace70d1e9ce1ae3b11781af78d5bdddcbbe1a966b85f69.cairo" + }, + "parent_location": [ + { + "end_col": 18, + "end_line": 66, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "start_col": 6, + "start_line": 66 + }, + "While handling return value of" + ], + "start_col": 5, + "start_line": 3 + }, + "n_prefix_newlines": 0 + } + ], + "inst": { + "end_col": 18, + "end_line": 4, + "input_file": { + "filename": "autogen/starknet/external/return/getCellPrice/bd75f11e3bc8e8b852ace70d1e9ce1ae3b11781af78d5bdddcbbe1a966b85f69.cairo" + }, + "parent_location": [ + { + "end_col": 18, + "end_line": 66, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "start_col": 6, + "start_line": 66 + }, + "While handling return value of" + ], + "start_col": 5, + "start_line": 4 + } + }, + "3969": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.getCellPrice_encode_return" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 47, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/arg_processor/cee22ce33150260a0bc7aaad2ed2e39f7a6797138ea5a730329defaab1944291.cairo" + }, + "parent_location": [ + { + "end_col": 16, + "end_line": 67, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "start_col": 5, + "start_line": 67 + }, + "While handling return value 'price'" + ], + "start_col": 1, + "start_line": 1 + } + }, + "3970": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.getCellPrice_encode_return" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 48, + "end_line": 2, + "input_file": { + "filename": "autogen/starknet/arg_processor/cee22ce33150260a0bc7aaad2ed2e39f7a6797138ea5a730329defaab1944291.cairo" + }, + "parent_location": [ + { + "end_col": 16, + "end_line": 67, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "parent_location": [ + { + "end_col": 36, + "end_line": 11, + "input_file": { + "filename": "autogen/starknet/external/return/getCellPrice/bd75f11e3bc8e8b852ace70d1e9ce1ae3b11781af78d5bdddcbbe1a966b85f69.cairo" + }, + "parent_location": [ + { + "end_col": 18, + "end_line": 66, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "start_col": 6, + "start_line": 66 + }, + "While handling return value of" + ], + "start_col": 18, + "start_line": 11 + }, + "While expanding the reference '__return_value_ptr' in:" + ], + "start_col": 5, + "start_line": 67 + }, + "While handling return value 'price'" + ], + "start_col": 26, + "start_line": 2 + } + }, + "3972": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.getCellPrice_encode_return" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 74, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/return/getCellPrice/bd75f11e3bc8e8b852ace70d1e9ce1ae3b11781af78d5bdddcbbe1a966b85f69.cairo" + }, + "parent_location": [ + { + "end_col": 18, + "end_line": 66, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "parent_location": [ + { + "end_col": 40, + "end_line": 10, + "input_file": { + "filename": "autogen/starknet/external/return/getCellPrice/bd75f11e3bc8e8b852ace70d1e9ce1ae3b11781af78d5bdddcbbe1a966b85f69.cairo" + }, + "parent_location": [ + { + "end_col": 18, + "end_line": 66, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "start_col": 6, + "start_line": 66 + }, + "While handling return value of" + ], + "start_col": 25, + "start_line": 10 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 6, + "start_line": 66 + }, + "While handling return value of" + ], + "start_col": 59, + "start_line": 1 + } + }, + "3973": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.getCellPrice_encode_return" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 63, + "end_line": 11, + "input_file": { + "filename": "autogen/starknet/external/return/getCellPrice/bd75f11e3bc8e8b852ace70d1e9ce1ae3b11781af78d5bdddcbbe1a966b85f69.cairo" + }, + "parent_location": [ + { + "end_col": 18, + "end_line": 66, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "start_col": 6, + "start_line": 66 + }, + "While handling return value of" + ], + "start_col": 18, + "start_line": 11 + } + }, + "3974": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.getCellPrice_encode_return" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 35, + "end_line": 5, + "input_file": { + "filename": "autogen/starknet/external/return/getCellPrice/bd75f11e3bc8e8b852ace70d1e9ce1ae3b11781af78d5bdddcbbe1a966b85f69.cairo" + }, + "parent_location": [ + { + "end_col": 18, + "end_line": 66, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "parent_location": [ + { + "end_col": 38, + "end_line": 12, + "input_file": { + "filename": "autogen/starknet/external/return/getCellPrice/bd75f11e3bc8e8b852ace70d1e9ce1ae3b11781af78d5bdddcbbe1a966b85f69.cairo" + }, + "parent_location": [ + { + "end_col": 18, + "end_line": 66, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "start_col": 6, + "start_line": 66 + }, + "While handling return value of" + ], + "start_col": 14, + "start_line": 12 + }, + "While expanding the reference '__return_value_ptr_start' in:" + ], + "start_col": 6, + "start_line": 66 + }, + "While handling return value of" + ], + "start_col": 11, + "start_line": 5 + } + }, + "3975": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.getCellPrice_encode_return" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 40, + "end_line": 12, + "input_file": { + "filename": "autogen/starknet/external/return/getCellPrice/bd75f11e3bc8e8b852ace70d1e9ce1ae3b11781af78d5bdddcbbe1a966b85f69.cairo" + }, + "parent_location": [ + { + "end_col": 18, + "end_line": 66, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "start_col": 6, + "start_line": 66 + }, + "While handling return value of" + ], + "start_col": 5, + "start_line": 9 + } + }, + "3976": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.getCellPrice" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 58, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/arg_processor/01cba52f8515996bb9d7070bde81ff39281d096d7024a558efcba6e1fd2402cf.cairo" + }, + "parent_location": [ + { + "end_col": 18, + "end_line": 66, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "start_col": 6, + "start_line": 66 + }, + "While handling calldata of" + ], + "start_col": 1, + "start_line": 1 + } + }, + "3977": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.getCellPrice" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 64, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/getCellPrice/b2c52ca2d2a8fc8791a983086d8716c5eacd0c3d62934914d2286f84b98ff4cb.cairo" + }, + "parent_location": [ + { + "end_col": 37, + "end_line": 66, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "parent_location": [ + { + "end_col": 55, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/getCellPrice/fccc5dd1e67f7c3e045b0fc99e1ae1a3e5970a12c35705ec24c4da7fe2712e87.cairo" + }, + "parent_location": [ + { + "end_col": 18, + "end_line": 66, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "start_col": 6, + "start_line": 66 + }, + "While constructing the external wrapper for:" + ], + "start_col": 44, + "start_line": 1 + }, + "While expanding the reference 'syscall_ptr' in:" + ], + "start_col": 19, + "start_line": 66 + }, + "While constructing the external wrapper for:" + ], + "start_col": 19, + "start_line": 1 + } + }, + "3978": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.getCellPrice" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 110, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/getCellPrice/9684a85e93c782014ca14293edea4eb2502039a5a7b6538ecd39c56faaf12529.cairo" + }, + "parent_location": [ + { + "end_col": 65, + "end_line": 66, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "parent_location": [ + { + "end_col": 82, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/getCellPrice/fccc5dd1e67f7c3e045b0fc99e1ae1a3e5970a12c35705ec24c4da7fe2712e87.cairo" + }, + "parent_location": [ + { + "end_col": 18, + "end_line": 66, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "start_col": 6, + "start_line": 66 + }, + "While constructing the external wrapper for:" + ], + "start_col": 70, + "start_line": 1 + }, + "While expanding the reference 'pedersen_ptr' in:" + ], + "start_col": 39, + "start_line": 66 + }, + "While constructing the external wrapper for:" + ], + "start_col": 20, + "start_line": 1 + } + }, + "3979": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.getCellPrice" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 67, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/getCellPrice/741ea357d6336b0bed7bf0472425acd0311d543883b803388880e60a232040c7.cairo" + }, + "parent_location": [ + { + "end_col": 82, + "end_line": 66, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "parent_location": [ + { + "end_col": 115, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/getCellPrice/fccc5dd1e67f7c3e045b0fc99e1ae1a3e5970a12c35705ec24c4da7fe2712e87.cairo" + }, + "parent_location": [ + { + "end_col": 18, + "end_line": 66, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "start_col": 6, + "start_line": 66 + }, + "While constructing the external wrapper for:" + ], + "start_col": 100, + "start_line": 1 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 67, + "start_line": 66 + }, + "While constructing the external wrapper for:" + ], + "start_col": 23, + "start_line": 1 + } + }, + "3980": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.getCellPrice" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 18, + "end_line": 66, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "start_col": 6, + "start_line": 66 + } + }, + "3982": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.getCellPrice" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 115, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/getCellPrice/fccc5dd1e67f7c3e045b0fc99e1ae1a3e5970a12c35705ec24c4da7fe2712e87.cairo" + }, + "parent_location": [ + { + "end_col": 18, + "end_line": 66, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "parent_location": [ + { + "end_col": 101, + "end_line": 2, + "input_file": { + "filename": "autogen/starknet/external/getCellPrice/fccc5dd1e67f7c3e045b0fc99e1ae1a3e5970a12c35705ec24c4da7fe2712e87.cairo" + }, + "parent_location": [ + { + "end_col": 18, + "end_line": 66, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "start_col": 6, + "start_line": 66 + }, + "While constructing the external wrapper for:" + ], + "start_col": 86, + "start_line": 2 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 6, + "start_line": 66 + }, + "While constructing the external wrapper for:" + ], + "start_col": 100, + "start_line": 1 + } + }, + "3983": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.getCellPrice" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 102, + "end_line": 2, + "input_file": { + "filename": "autogen/starknet/external/getCellPrice/fccc5dd1e67f7c3e045b0fc99e1ae1a3e5970a12c35705ec24c4da7fe2712e87.cairo" + }, + "parent_location": [ + { + "end_col": 18, + "end_line": 66, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "start_col": 6, + "start_line": 66 + }, + "While constructing the external wrapper for:" + ], + "start_col": 48, + "start_line": 2 + } + }, + "3985": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.getCellPrice" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 55, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/getCellPrice/fccc5dd1e67f7c3e045b0fc99e1ae1a3e5970a12c35705ec24c4da7fe2712e87.cairo" + }, + "parent_location": [ + { + "end_col": 18, + "end_line": 66, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "parent_location": [ + { + "end_col": 20, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/getCellPrice/da17921a4e81c09e730800bbf23bfdbe5e9e6bfaedc59d80fbf62087fa43c27d.cairo" + }, + "parent_location": [ + { + "end_col": 18, + "end_line": 66, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "start_col": 6, + "start_line": 66 + }, + "While constructing the external wrapper for:" + ], + "start_col": 9, + "start_line": 1 + }, + "While expanding the reference 'syscall_ptr' in:" + ], + "start_col": 6, + "start_line": 66 + }, + "While constructing the external wrapper for:" + ], + "start_col": 44, + "start_line": 1 + } + }, + "3986": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.getCellPrice" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 82, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/getCellPrice/fccc5dd1e67f7c3e045b0fc99e1ae1a3e5970a12c35705ec24c4da7fe2712e87.cairo" + }, + "parent_location": [ + { + "end_col": 18, + "end_line": 66, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "parent_location": [ + { + "end_col": 33, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/getCellPrice/da17921a4e81c09e730800bbf23bfdbe5e9e6bfaedc59d80fbf62087fa43c27d.cairo" + }, + "parent_location": [ + { + "end_col": 18, + "end_line": 66, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "start_col": 6, + "start_line": 66 + }, + "While constructing the external wrapper for:" + ], + "start_col": 21, + "start_line": 1 + }, + "While expanding the reference 'pedersen_ptr' in:" + ], + "start_col": 6, + "start_line": 66 + }, + "While constructing the external wrapper for:" + ], + "start_col": 70, + "start_line": 1 + } + }, + "3987": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.getCellPrice" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 21, + "end_line": 2, + "input_file": { + "filename": "autogen/starknet/external/getCellPrice/fccc5dd1e67f7c3e045b0fc99e1ae1a3e5970a12c35705ec24c4da7fe2712e87.cairo" + }, + "parent_location": [ + { + "end_col": 18, + "end_line": 66, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "parent_location": [ + { + "end_col": 49, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/getCellPrice/da17921a4e81c09e730800bbf23bfdbe5e9e6bfaedc59d80fbf62087fa43c27d.cairo" + }, + "parent_location": [ + { + "end_col": 18, + "end_line": 66, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "start_col": 6, + "start_line": 66 + }, + "While constructing the external wrapper for:" + ], + "start_col": 34, + "start_line": 1 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 6, + "start_line": 66 + }, + "While constructing the external wrapper for:" + ], + "start_col": 6, + "start_line": 2 + } + }, + "3988": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.getCellPrice" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 35, + "end_line": 2, + "input_file": { + "filename": "autogen/starknet/external/getCellPrice/fccc5dd1e67f7c3e045b0fc99e1ae1a3e5970a12c35705ec24c4da7fe2712e87.cairo" + }, + "parent_location": [ + { + "end_col": 18, + "end_line": 66, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "parent_location": [ + { + "end_col": 62, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/getCellPrice/da17921a4e81c09e730800bbf23bfdbe5e9e6bfaedc59d80fbf62087fa43c27d.cairo" + }, + "parent_location": [ + { + "end_col": 18, + "end_line": 66, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "start_col": 6, + "start_line": 66 + }, + "While constructing the external wrapper for:" + ], + "start_col": 50, + "start_line": 1 + }, + "While expanding the reference 'retdata_size' in:" + ], + "start_col": 6, + "start_line": 66 + }, + "While constructing the external wrapper for:" + ], + "start_col": 23, + "start_line": 2 + } + }, + "3989": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.getCellPrice" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 44, + "end_line": 2, + "input_file": { + "filename": "autogen/starknet/external/getCellPrice/fccc5dd1e67f7c3e045b0fc99e1ae1a3e5970a12c35705ec24c4da7fe2712e87.cairo" + }, + "parent_location": [ + { + "end_col": 18, + "end_line": 66, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "parent_location": [ + { + "end_col": 70, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/getCellPrice/da17921a4e81c09e730800bbf23bfdbe5e9e6bfaedc59d80fbf62087fa43c27d.cairo" + }, + "parent_location": [ + { + "end_col": 18, + "end_line": 66, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "start_col": 6, + "start_line": 66 + }, + "While constructing the external wrapper for:" + ], + "start_col": 63, + "start_line": 1 + }, + "While expanding the reference 'retdata' in:" + ], + "start_col": 6, + "start_line": 66 + }, + "While constructing the external wrapper for:" + ], + "start_col": 37, + "start_line": 2 + } + }, + "3990": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.getCellPrice" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 72, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/getCellPrice/da17921a4e81c09e730800bbf23bfdbe5e9e6bfaedc59d80fbf62087fa43c27d.cairo" + }, + "parent_location": [ + { + "end_col": 18, + "end_line": 66, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "start_col": 6, + "start_line": 66 + }, + "While constructing the external wrapper for:" + ], + "start_col": 1, + "start_line": 1 + } + }, + "3991": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.setRoyaltyRate" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 39, + "end_line": 74, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "parent_location": [ + { + "end_col": 46, + "end_line": 40, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/access/ownable/library.cairo" + }, + "parent_location": [ + { + "end_col": 32, + "end_line": 75, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "start_col": 5, + "start_line": 75 + }, + "While trying to retrieve the implicit argument 'syscall_ptr' in:" + ], + "start_col": 28, + "start_line": 40 + }, + "While expanding the reference 'syscall_ptr' in:" + ], + "start_col": 21, + "start_line": 74 + } + }, + "3992": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.setRoyaltyRate" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 67, + "end_line": 74, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "parent_location": [ + { + "end_col": 74, + "end_line": 40, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/access/ownable/library.cairo" + }, + "parent_location": [ + { + "end_col": 32, + "end_line": 75, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "start_col": 5, + "start_line": 75 + }, + "While trying to retrieve the implicit argument 'pedersen_ptr' in:" + ], + "start_col": 48, + "start_line": 40 + }, + "While expanding the reference 'pedersen_ptr' in:" + ], + "start_col": 41, + "start_line": 74 + } + }, + "3993": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.setRoyaltyRate" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 84, + "end_line": 74, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "parent_location": [ + { + "end_col": 91, + "end_line": 40, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/access/ownable/library.cairo" + }, + "parent_location": [ + { + "end_col": 32, + "end_line": 75, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "start_col": 5, + "start_line": 75 + }, + "While trying to retrieve the implicit argument 'range_check_ptr' in:" + ], + "start_col": 76, + "start_line": 40 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 69, + "start_line": 74 + } + }, + "3994": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.setRoyaltyRate" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 32, + "end_line": 75, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "start_col": 5, + "start_line": 75 + } + }, + "3996": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.setRoyaltyRate" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 96, + "end_line": 74, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "parent_location": [ + { + "end_col": 32, + "end_line": 76, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "start_col": 28, + "start_line": 76 + }, + "While expanding the reference 'rate' in:" + ], + "start_col": 86, + "start_line": 74 + } + }, + "3997": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.setRoyaltyRate" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 33, + "end_line": 76, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "start_col": 5, + "start_line": 76 + } + }, + "3999": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.setRoyaltyRate" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 15, + "end_line": 77, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "start_col": 5, + "start_line": 77 + } + }, + "4000": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.setRoyaltyRate" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 40, + "end_line": 2, + "input_file": { + "filename": "autogen/starknet/arg_processor/69c38ae89347c58701f80650a7a4247285d4c5189ca2c34fd58e2c7cf6b09a9e.cairo" + }, + "parent_location": [ + { + "end_col": 96, + "end_line": 74, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "parent_location": [ + { + "end_col": 45, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/arg_processor/c31620b02d4d706f0542c989b2aadc01b0981d1f6a5933a8fe4937ace3d70d92.cairo" + }, + "parent_location": [ + { + "end_col": 20, + "end_line": 74, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "parent_location": [ + { + "end_col": 57, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/arg_processor/01cba52f8515996bb9d7070bde81ff39281d096d7024a558efcba6e1fd2402cf.cairo" + }, + "parent_location": [ + { + "end_col": 20, + "end_line": 74, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "start_col": 6, + "start_line": 74 + }, + "While handling calldata of" + ], + "start_col": 35, + "start_line": 1 + }, + "While expanding the reference '__calldata_actual_size' in:" + ], + "start_col": 6, + "start_line": 74 + }, + "While handling calldata of" + ], + "start_col": 31, + "start_line": 1 + }, + "While expanding the reference '__calldata_ptr' in:" + ], + "start_col": 86, + "start_line": 74 + }, + "While handling calldata argument 'rate'" + ], + "start_col": 22, + "start_line": 2 + } + }, + "4002": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.setRoyaltyRate" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 58, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/arg_processor/01cba52f8515996bb9d7070bde81ff39281d096d7024a558efcba6e1fd2402cf.cairo" + }, + "parent_location": [ + { + "end_col": 20, + "end_line": 74, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "start_col": 6, + "start_line": 74 + }, + "While handling calldata of" + ], + "start_col": 1, + "start_line": 1 + } + }, + "4003": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.setRoyaltyRate" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 64, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/setRoyaltyRate/b2c52ca2d2a8fc8791a983086d8716c5eacd0c3d62934914d2286f84b98ff4cb.cairo" + }, + "parent_location": [ + { + "end_col": 39, + "end_line": 74, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "parent_location": [ + { + "end_col": 55, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/setRoyaltyRate/083507ab80db46b8d907e812b7919f83e5836bf7fe04d255e574f242d9782cfb.cairo" + }, + "parent_location": [ + { + "end_col": 20, + "end_line": 74, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "start_col": 6, + "start_line": 74 + }, + "While constructing the external wrapper for:" + ], + "start_col": 44, + "start_line": 1 + }, + "While expanding the reference 'syscall_ptr' in:" + ], + "start_col": 21, + "start_line": 74 + }, + "While constructing the external wrapper for:" + ], + "start_col": 19, + "start_line": 1 + } + }, + "4004": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.setRoyaltyRate" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 110, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/setRoyaltyRate/9684a85e93c782014ca14293edea4eb2502039a5a7b6538ecd39c56faaf12529.cairo" + }, + "parent_location": [ + { + "end_col": 67, + "end_line": 74, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "parent_location": [ + { + "end_col": 82, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/setRoyaltyRate/083507ab80db46b8d907e812b7919f83e5836bf7fe04d255e574f242d9782cfb.cairo" + }, + "parent_location": [ + { + "end_col": 20, + "end_line": 74, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "start_col": 6, + "start_line": 74 + }, + "While constructing the external wrapper for:" + ], + "start_col": 70, + "start_line": 1 + }, + "While expanding the reference 'pedersen_ptr' in:" + ], + "start_col": 41, + "start_line": 74 + }, + "While constructing the external wrapper for:" + ], + "start_col": 20, + "start_line": 1 + } + }, + "4005": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.setRoyaltyRate" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 67, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/setRoyaltyRate/741ea357d6336b0bed7bf0472425acd0311d543883b803388880e60a232040c7.cairo" + }, + "parent_location": [ + { + "end_col": 84, + "end_line": 74, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "parent_location": [ + { + "end_col": 115, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/setRoyaltyRate/083507ab80db46b8d907e812b7919f83e5836bf7fe04d255e574f242d9782cfb.cairo" + }, + "parent_location": [ + { + "end_col": 20, + "end_line": 74, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "start_col": 6, + "start_line": 74 + }, + "While constructing the external wrapper for:" + ], + "start_col": 100, + "start_line": 1 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 69, + "start_line": 74 + }, + "While constructing the external wrapper for:" + ], + "start_col": 23, + "start_line": 1 + } + }, + "4006": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.setRoyaltyRate" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 43, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/arg_processor/69c38ae89347c58701f80650a7a4247285d4c5189ca2c34fd58e2c7cf6b09a9e.cairo" + }, + "parent_location": [ + { + "end_col": 96, + "end_line": 74, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "parent_location": [ + { + "end_col": 141, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/setRoyaltyRate/083507ab80db46b8d907e812b7919f83e5836bf7fe04d255e574f242d9782cfb.cairo" + }, + "parent_location": [ + { + "end_col": 20, + "end_line": 74, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "start_col": 6, + "start_line": 74 + }, + "While constructing the external wrapper for:" + ], + "start_col": 122, + "start_line": 1 + }, + "While expanding the reference '__calldata_arg_rate' in:" + ], + "start_col": 86, + "start_line": 74 + }, + "While handling calldata argument 'rate'" + ], + "start_col": 27, + "start_line": 1 + } + }, + "4007": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.setRoyaltyRate" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 20, + "end_line": 74, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "start_col": 6, + "start_line": 74 + } + }, + "4009": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.setRoyaltyRate" + ], + "flow_tracking_data": null, + "hints": [ + { + "location": { + "end_col": 34, + "end_line": 2, + "input_file": { + "filename": "autogen/starknet/external/setRoyaltyRate/083507ab80db46b8d907e812b7919f83e5836bf7fe04d255e574f242d9782cfb.cairo" + }, + "parent_location": [ + { + "end_col": 20, + "end_line": 74, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "start_col": 6, + "start_line": 74 + }, + "While constructing the external wrapper for:" + ], + "start_col": 1, + "start_line": 2 + }, + "n_prefix_newlines": 0 + } + ], + "inst": { + "end_col": 24, + "end_line": 3, + "input_file": { + "filename": "autogen/starknet/external/setRoyaltyRate/083507ab80db46b8d907e812b7919f83e5836bf7fe04d255e574f242d9782cfb.cairo" + }, + "parent_location": [ + { + "end_col": 20, + "end_line": 74, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "start_col": 6, + "start_line": 74 + }, + "While constructing the external wrapper for:" + ], + "start_col": 1, + "start_line": 3 + } + }, + "4011": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.setRoyaltyRate" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 55, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/setRoyaltyRate/083507ab80db46b8d907e812b7919f83e5836bf7fe04d255e574f242d9782cfb.cairo" + }, + "parent_location": [ + { + "end_col": 20, + "end_line": 74, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "parent_location": [ + { + "end_col": 20, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/setRoyaltyRate/da17921a4e81c09e730800bbf23bfdbe5e9e6bfaedc59d80fbf62087fa43c27d.cairo" + }, + "parent_location": [ + { + "end_col": 20, + "end_line": 74, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "start_col": 6, + "start_line": 74 + }, + "While constructing the external wrapper for:" + ], + "start_col": 9, + "start_line": 1 + }, + "While expanding the reference 'syscall_ptr' in:" + ], + "start_col": 6, + "start_line": 74 + }, + "While constructing the external wrapper for:" + ], + "start_col": 44, + "start_line": 1 + } + }, + "4012": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.setRoyaltyRate" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 82, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/setRoyaltyRate/083507ab80db46b8d907e812b7919f83e5836bf7fe04d255e574f242d9782cfb.cairo" + }, + "parent_location": [ + { + "end_col": 20, + "end_line": 74, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "parent_location": [ + { + "end_col": 33, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/setRoyaltyRate/da17921a4e81c09e730800bbf23bfdbe5e9e6bfaedc59d80fbf62087fa43c27d.cairo" + }, + "parent_location": [ + { + "end_col": 20, + "end_line": 74, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "start_col": 6, + "start_line": 74 + }, + "While constructing the external wrapper for:" + ], + "start_col": 21, + "start_line": 1 + }, + "While expanding the reference 'pedersen_ptr' in:" + ], + "start_col": 6, + "start_line": 74 + }, + "While constructing the external wrapper for:" + ], + "start_col": 70, + "start_line": 1 + } + }, + "4013": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.setRoyaltyRate" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 115, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/setRoyaltyRate/083507ab80db46b8d907e812b7919f83e5836bf7fe04d255e574f242d9782cfb.cairo" + }, + "parent_location": [ + { + "end_col": 20, + "end_line": 74, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "parent_location": [ + { + "end_col": 49, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/setRoyaltyRate/da17921a4e81c09e730800bbf23bfdbe5e9e6bfaedc59d80fbf62087fa43c27d.cairo" + }, + "parent_location": [ + { + "end_col": 20, + "end_line": 74, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "start_col": 6, + "start_line": 74 + }, + "While constructing the external wrapper for:" + ], + "start_col": 34, + "start_line": 1 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 6, + "start_line": 74 + }, + "While constructing the external wrapper for:" + ], + "start_col": 100, + "start_line": 1 + } + }, + "4014": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.setRoyaltyRate" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 21, + "end_line": 4, + "input_file": { + "filename": "autogen/starknet/external/setRoyaltyRate/083507ab80db46b8d907e812b7919f83e5836bf7fe04d255e574f242d9782cfb.cairo" + }, + "parent_location": [ + { + "end_col": 20, + "end_line": 74, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "parent_location": [ + { + "end_col": 62, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/setRoyaltyRate/da17921a4e81c09e730800bbf23bfdbe5e9e6bfaedc59d80fbf62087fa43c27d.cairo" + }, + "parent_location": [ + { + "end_col": 20, + "end_line": 74, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "start_col": 6, + "start_line": 74 + }, + "While constructing the external wrapper for:" + ], + "start_col": 50, + "start_line": 1 + }, + "While expanding the reference 'retdata_size' in:" + ], + "start_col": 6, + "start_line": 74 + }, + "While constructing the external wrapper for:" + ], + "start_col": 20, + "start_line": 4 + } + }, + "4016": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.setRoyaltyRate" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 16, + "end_line": 3, + "input_file": { + "filename": "autogen/starknet/external/setRoyaltyRate/083507ab80db46b8d907e812b7919f83e5836bf7fe04d255e574f242d9782cfb.cairo" + }, + "parent_location": [ + { + "end_col": 20, + "end_line": 74, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "parent_location": [ + { + "end_col": 70, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/setRoyaltyRate/da17921a4e81c09e730800bbf23bfdbe5e9e6bfaedc59d80fbf62087fa43c27d.cairo" + }, + "parent_location": [ + { + "end_col": 20, + "end_line": 74, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "start_col": 6, + "start_line": 74 + }, + "While constructing the external wrapper for:" + ], + "start_col": 63, + "start_line": 1 + }, + "While expanding the reference 'retdata' in:" + ], + "start_col": 6, + "start_line": 74 + }, + "While constructing the external wrapper for:" + ], + "start_col": 9, + "start_line": 3 + } + }, + "4017": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.setRoyaltyRate" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 72, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/setRoyaltyRate/da17921a4e81c09e730800bbf23bfdbe5e9e6bfaedc59d80fbf62087fa43c27d.cairo" + }, + "parent_location": [ + { + "end_col": 20, + "end_line": 74, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "start_col": 6, + "start_line": 74 + }, + "While constructing the external wrapper for:" + ], + "start_col": 1, + "start_line": 1 + } + }, + "4018": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.getRoyaltyRate" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 39, + "end_line": 81, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "parent_location": [ + { + "end_col": 45, + "end_line": 96, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" + }, + "parent_location": [ + { + "end_col": 36, + "end_line": 84, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "start_col": 12, + "start_line": 84 + }, + "While trying to retrieve the implicit argument 'syscall_ptr' in:" + ], + "start_col": 27, + "start_line": 96 + }, + "While expanding the reference 'syscall_ptr' in:" + ], + "start_col": 21, + "start_line": 81 + } + }, + "4019": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.getRoyaltyRate" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 67, + "end_line": 81, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "parent_location": [ + { + "end_col": 73, + "end_line": 96, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" + }, + "parent_location": [ + { + "end_col": 36, + "end_line": 84, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "start_col": 12, + "start_line": 84 + }, + "While trying to retrieve the implicit argument 'pedersen_ptr' in:" + ], + "start_col": 47, + "start_line": 96 + }, + "While expanding the reference 'pedersen_ptr' in:" + ], + "start_col": 41, + "start_line": 81 + } + }, + "4020": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.getRoyaltyRate" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 84, + "end_line": 81, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "parent_location": [ + { + "end_col": 90, + "end_line": 96, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" + }, + "parent_location": [ + { + "end_col": 36, + "end_line": 84, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "start_col": 12, + "start_line": 84 + }, + "While trying to retrieve the implicit argument 'range_check_ptr' in:" + ], + "start_col": 75, + "start_line": 96 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 69, + "start_line": 81 + } + }, + "4021": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.getRoyaltyRate" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 36, + "end_line": 84, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "start_col": 12, + "start_line": 84 + } + }, + "4023": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.getRoyaltyRate" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 37, + "end_line": 84, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "start_col": 5, + "start_line": 84 + } + }, + "4024": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.getRoyaltyRate_encode_return" + ], + "flow_tracking_data": null, + "hints": [ + { + "location": { + "end_col": 38, + "end_line": 3, + "input_file": { + "filename": "autogen/starknet/external/return/getRoyaltyRate/0f99d5930a76fbc9bab0940e7d43c08681df0ba015512b5d7757c7f5e7ec654a.cairo" + }, + "parent_location": [ + { + "end_col": 20, + "end_line": 81, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "start_col": 6, + "start_line": 81 + }, + "While handling return value of" + ], + "start_col": 5, + "start_line": 3 + }, + "n_prefix_newlines": 0 + } + ], + "inst": { + "end_col": 18, + "end_line": 4, + "input_file": { + "filename": "autogen/starknet/external/return/getRoyaltyRate/0f99d5930a76fbc9bab0940e7d43c08681df0ba015512b5d7757c7f5e7ec654a.cairo" + }, + "parent_location": [ + { + "end_col": 20, + "end_line": 81, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "start_col": 6, + "start_line": 81 + }, + "While handling return value of" + ], + "start_col": 5, + "start_line": 4 + } + }, + "4026": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.getRoyaltyRate_encode_return" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 46, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/arg_processor/991401e96db1ccc9a6c9f0069889197ed7b328e3f6872d8dee8bfbdb51297f3a.cairo" + }, + "parent_location": [ + { + "end_col": 15, + "end_line": 82, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "start_col": 5, + "start_line": 82 + }, + "While handling return value 'rate'" + ], + "start_col": 1, + "start_line": 1 + } + }, + "4027": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.getRoyaltyRate_encode_return" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 48, + "end_line": 2, + "input_file": { + "filename": "autogen/starknet/arg_processor/991401e96db1ccc9a6c9f0069889197ed7b328e3f6872d8dee8bfbdb51297f3a.cairo" + }, + "parent_location": [ + { + "end_col": 15, + "end_line": 82, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "parent_location": [ + { + "end_col": 36, + "end_line": 11, + "input_file": { + "filename": "autogen/starknet/external/return/getRoyaltyRate/0f99d5930a76fbc9bab0940e7d43c08681df0ba015512b5d7757c7f5e7ec654a.cairo" + }, + "parent_location": [ + { + "end_col": 20, + "end_line": 81, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "start_col": 6, + "start_line": 81 + }, + "While handling return value of" + ], + "start_col": 18, + "start_line": 11 + }, + "While expanding the reference '__return_value_ptr' in:" + ], + "start_col": 5, + "start_line": 82 + }, + "While handling return value 'rate'" + ], + "start_col": 26, + "start_line": 2 + } + }, + "4029": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.getRoyaltyRate_encode_return" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 75, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/return/getRoyaltyRate/0f99d5930a76fbc9bab0940e7d43c08681df0ba015512b5d7757c7f5e7ec654a.cairo" + }, + "parent_location": [ + { + "end_col": 20, + "end_line": 81, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "parent_location": [ + { + "end_col": 40, + "end_line": 10, + "input_file": { + "filename": "autogen/starknet/external/return/getRoyaltyRate/0f99d5930a76fbc9bab0940e7d43c08681df0ba015512b5d7757c7f5e7ec654a.cairo" + }, + "parent_location": [ + { + "end_col": 20, + "end_line": 81, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "start_col": 6, + "start_line": 81 + }, + "While handling return value of" + ], + "start_col": 25, + "start_line": 10 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 6, + "start_line": 81 + }, + "While handling return value of" + ], + "start_col": 60, + "start_line": 1 + } + }, + "4030": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.getRoyaltyRate_encode_return" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 63, + "end_line": 11, + "input_file": { + "filename": "autogen/starknet/external/return/getRoyaltyRate/0f99d5930a76fbc9bab0940e7d43c08681df0ba015512b5d7757c7f5e7ec654a.cairo" + }, + "parent_location": [ + { + "end_col": 20, + "end_line": 81, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "start_col": 6, + "start_line": 81 + }, + "While handling return value of" + ], + "start_col": 18, + "start_line": 11 + } + }, + "4031": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.getRoyaltyRate_encode_return" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 35, + "end_line": 5, + "input_file": { + "filename": "autogen/starknet/external/return/getRoyaltyRate/0f99d5930a76fbc9bab0940e7d43c08681df0ba015512b5d7757c7f5e7ec654a.cairo" + }, + "parent_location": [ + { + "end_col": 20, + "end_line": 81, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "parent_location": [ + { + "end_col": 38, + "end_line": 12, + "input_file": { + "filename": "autogen/starknet/external/return/getRoyaltyRate/0f99d5930a76fbc9bab0940e7d43c08681df0ba015512b5d7757c7f5e7ec654a.cairo" + }, + "parent_location": [ + { + "end_col": 20, + "end_line": 81, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "start_col": 6, + "start_line": 81 + }, + "While handling return value of" + ], + "start_col": 14, + "start_line": 12 + }, + "While expanding the reference '__return_value_ptr_start' in:" + ], + "start_col": 6, + "start_line": 81 + }, + "While handling return value of" + ], + "start_col": 11, + "start_line": 5 + } + }, + "4032": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.getRoyaltyRate_encode_return" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 40, + "end_line": 12, + "input_file": { + "filename": "autogen/starknet/external/return/getRoyaltyRate/0f99d5930a76fbc9bab0940e7d43c08681df0ba015512b5d7757c7f5e7ec654a.cairo" + }, + "parent_location": [ + { + "end_col": 20, + "end_line": 81, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "start_col": 6, + "start_line": 81 + }, + "While handling return value of" + ], + "start_col": 5, + "start_line": 9 + } + }, + "4033": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.getRoyaltyRate" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 58, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/arg_processor/01cba52f8515996bb9d7070bde81ff39281d096d7024a558efcba6e1fd2402cf.cairo" + }, + "parent_location": [ + { + "end_col": 20, + "end_line": 81, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "start_col": 6, + "start_line": 81 + }, + "While handling calldata of" + ], + "start_col": 1, + "start_line": 1 + } + }, + "4034": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.getRoyaltyRate" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 64, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/getRoyaltyRate/b2c52ca2d2a8fc8791a983086d8716c5eacd0c3d62934914d2286f84b98ff4cb.cairo" + }, + "parent_location": [ + { + "end_col": 39, + "end_line": 81, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "parent_location": [ + { + "end_col": 55, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/getRoyaltyRate/0fb46582c6c7a8596e57a36d17bae923c1f3f67df504ae10a80ba55ba16a97cb.cairo" + }, + "parent_location": [ + { + "end_col": 20, + "end_line": 81, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "start_col": 6, + "start_line": 81 + }, + "While constructing the external wrapper for:" + ], + "start_col": 44, + "start_line": 1 + }, + "While expanding the reference 'syscall_ptr' in:" + ], + "start_col": 21, + "start_line": 81 + }, + "While constructing the external wrapper for:" + ], + "start_col": 19, + "start_line": 1 + } + }, + "4035": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.getRoyaltyRate" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 110, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/getRoyaltyRate/9684a85e93c782014ca14293edea4eb2502039a5a7b6538ecd39c56faaf12529.cairo" + }, + "parent_location": [ + { + "end_col": 67, + "end_line": 81, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "parent_location": [ + { + "end_col": 82, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/getRoyaltyRate/0fb46582c6c7a8596e57a36d17bae923c1f3f67df504ae10a80ba55ba16a97cb.cairo" + }, + "parent_location": [ + { + "end_col": 20, + "end_line": 81, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "start_col": 6, + "start_line": 81 + }, + "While constructing the external wrapper for:" + ], + "start_col": 70, + "start_line": 1 + }, + "While expanding the reference 'pedersen_ptr' in:" + ], + "start_col": 41, + "start_line": 81 + }, + "While constructing the external wrapper for:" + ], + "start_col": 20, + "start_line": 1 + } + }, + "4036": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.getRoyaltyRate" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 67, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/getRoyaltyRate/741ea357d6336b0bed7bf0472425acd0311d543883b803388880e60a232040c7.cairo" + }, + "parent_location": [ + { + "end_col": 84, + "end_line": 81, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "parent_location": [ + { + "end_col": 115, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/getRoyaltyRate/0fb46582c6c7a8596e57a36d17bae923c1f3f67df504ae10a80ba55ba16a97cb.cairo" + }, + "parent_location": [ + { + "end_col": 20, + "end_line": 81, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "start_col": 6, + "start_line": 81 + }, + "While constructing the external wrapper for:" + ], + "start_col": 100, + "start_line": 1 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 69, + "start_line": 81 + }, + "While constructing the external wrapper for:" + ], + "start_col": 23, + "start_line": 1 + } + }, + "4037": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.getRoyaltyRate" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 20, + "end_line": 81, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "start_col": 6, + "start_line": 81 + } + }, + "4039": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.getRoyaltyRate" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 115, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/getRoyaltyRate/0fb46582c6c7a8596e57a36d17bae923c1f3f67df504ae10a80ba55ba16a97cb.cairo" + }, + "parent_location": [ + { + "end_col": 20, + "end_line": 81, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "parent_location": [ + { + "end_col": 103, + "end_line": 2, + "input_file": { + "filename": "autogen/starknet/external/getRoyaltyRate/0fb46582c6c7a8596e57a36d17bae923c1f3f67df504ae10a80ba55ba16a97cb.cairo" + }, + "parent_location": [ + { + "end_col": 20, + "end_line": 81, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "start_col": 6, + "start_line": 81 + }, + "While constructing the external wrapper for:" + ], + "start_col": 88, + "start_line": 2 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 6, + "start_line": 81 + }, + "While constructing the external wrapper for:" + ], + "start_col": 100, + "start_line": 1 + } + }, + "4040": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.getRoyaltyRate" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 104, + "end_line": 2, + "input_file": { + "filename": "autogen/starknet/external/getRoyaltyRate/0fb46582c6c7a8596e57a36d17bae923c1f3f67df504ae10a80ba55ba16a97cb.cairo" + }, + "parent_location": [ + { + "end_col": 20, + "end_line": 81, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "start_col": 6, + "start_line": 81 + }, + "While constructing the external wrapper for:" + ], + "start_col": 48, + "start_line": 2 + } + }, + "4042": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.getRoyaltyRate" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 55, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/getRoyaltyRate/0fb46582c6c7a8596e57a36d17bae923c1f3f67df504ae10a80ba55ba16a97cb.cairo" + }, + "parent_location": [ + { + "end_col": 20, + "end_line": 81, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "parent_location": [ + { + "end_col": 20, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/getRoyaltyRate/da17921a4e81c09e730800bbf23bfdbe5e9e6bfaedc59d80fbf62087fa43c27d.cairo" + }, + "parent_location": [ + { + "end_col": 20, + "end_line": 81, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "start_col": 6, + "start_line": 81 + }, + "While constructing the external wrapper for:" + ], + "start_col": 9, + "start_line": 1 + }, + "While expanding the reference 'syscall_ptr' in:" + ], + "start_col": 6, + "start_line": 81 + }, + "While constructing the external wrapper for:" + ], + "start_col": 44, + "start_line": 1 + } + }, + "4043": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.getRoyaltyRate" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 82, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/getRoyaltyRate/0fb46582c6c7a8596e57a36d17bae923c1f3f67df504ae10a80ba55ba16a97cb.cairo" + }, + "parent_location": [ + { + "end_col": 20, + "end_line": 81, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "parent_location": [ + { + "end_col": 33, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/getRoyaltyRate/da17921a4e81c09e730800bbf23bfdbe5e9e6bfaedc59d80fbf62087fa43c27d.cairo" + }, + "parent_location": [ + { + "end_col": 20, + "end_line": 81, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "start_col": 6, + "start_line": 81 + }, + "While constructing the external wrapper for:" + ], + "start_col": 21, + "start_line": 1 + }, + "While expanding the reference 'pedersen_ptr' in:" + ], + "start_col": 6, + "start_line": 81 + }, + "While constructing the external wrapper for:" + ], + "start_col": 70, + "start_line": 1 + } + }, + "4044": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.getRoyaltyRate" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 21, + "end_line": 2, + "input_file": { + "filename": "autogen/starknet/external/getRoyaltyRate/0fb46582c6c7a8596e57a36d17bae923c1f3f67df504ae10a80ba55ba16a97cb.cairo" + }, + "parent_location": [ + { + "end_col": 20, + "end_line": 81, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "parent_location": [ + { + "end_col": 49, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/getRoyaltyRate/da17921a4e81c09e730800bbf23bfdbe5e9e6bfaedc59d80fbf62087fa43c27d.cairo" + }, + "parent_location": [ + { + "end_col": 20, + "end_line": 81, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "start_col": 6, + "start_line": 81 + }, + "While constructing the external wrapper for:" + ], + "start_col": 34, + "start_line": 1 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 6, + "start_line": 81 + }, + "While constructing the external wrapper for:" + ], + "start_col": 6, + "start_line": 2 + } + }, + "4045": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.getRoyaltyRate" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 35, + "end_line": 2, + "input_file": { + "filename": "autogen/starknet/external/getRoyaltyRate/0fb46582c6c7a8596e57a36d17bae923c1f3f67df504ae10a80ba55ba16a97cb.cairo" + }, + "parent_location": [ + { + "end_col": 20, + "end_line": 81, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "parent_location": [ + { + "end_col": 62, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/getRoyaltyRate/da17921a4e81c09e730800bbf23bfdbe5e9e6bfaedc59d80fbf62087fa43c27d.cairo" + }, + "parent_location": [ + { + "end_col": 20, + "end_line": 81, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "start_col": 6, + "start_line": 81 + }, + "While constructing the external wrapper for:" + ], + "start_col": 50, + "start_line": 1 + }, + "While expanding the reference 'retdata_size' in:" + ], + "start_col": 6, + "start_line": 81 + }, + "While constructing the external wrapper for:" + ], + "start_col": 23, + "start_line": 2 + } + }, + "4046": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.getRoyaltyRate" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 44, + "end_line": 2, + "input_file": { + "filename": "autogen/starknet/external/getRoyaltyRate/0fb46582c6c7a8596e57a36d17bae923c1f3f67df504ae10a80ba55ba16a97cb.cairo" + }, + "parent_location": [ + { + "end_col": 20, + "end_line": 81, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "parent_location": [ + { + "end_col": 70, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/getRoyaltyRate/da17921a4e81c09e730800bbf23bfdbe5e9e6bfaedc59d80fbf62087fa43c27d.cairo" + }, + "parent_location": [ + { + "end_col": 20, + "end_line": 81, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "start_col": 6, + "start_line": 81 + }, + "While constructing the external wrapper for:" + ], + "start_col": 63, + "start_line": 1 + }, + "While expanding the reference 'retdata' in:" + ], + "start_col": 6, + "start_line": 81 + }, + "While constructing the external wrapper for:" + ], + "start_col": 37, + "start_line": 2 + } + }, + "4047": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.getRoyaltyRate" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 72, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/getRoyaltyRate/da17921a4e81c09e730800bbf23bfdbe5e9e6bfaedc59d80fbf62087fa43c27d.cairo" + }, + "parent_location": [ + { + "end_col": 20, + "end_line": 81, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "start_col": 6, + "start_line": 81 + }, + "While constructing the external wrapper for:" + ], + "start_col": 1, + "start_line": 1 + } + }, + "4048": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.royaltyInfo" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 36, + "end_line": 88, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "parent_location": [ + { + "end_col": 41, + "end_line": 109, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" + }, + "parent_location": [ + { + "end_col": 84, + "end_line": 91, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "start_col": 38, + "start_line": 91 + }, + "While trying to retrieve the implicit argument 'syscall_ptr' in:" + ], + "start_col": 23, + "start_line": 109 + }, + "While expanding the reference 'syscall_ptr' in:" + ], + "start_col": 18, + "start_line": 88 + } + }, + "4049": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.royaltyInfo" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 64, + "end_line": 88, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "parent_location": [ + { + "end_col": 69, + "end_line": 109, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" + }, + "parent_location": [ + { + "end_col": 84, + "end_line": 91, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "start_col": 38, + "start_line": 91 + }, + "While trying to retrieve the implicit argument 'pedersen_ptr' in:" + ], + "start_col": 43, + "start_line": 109 + }, + "While expanding the reference 'pedersen_ptr' in:" + ], + "start_col": 38, + "start_line": 88 + } + }, + "4050": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.royaltyInfo" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 81, + "end_line": 88, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "parent_location": [ + { + "end_col": 86, + "end_line": 109, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" + }, + "parent_location": [ + { + "end_col": 84, + "end_line": 91, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "start_col": 38, + "start_line": 91 + }, + "While trying to retrieve the implicit argument 'range_check_ptr' in:" + ], + "start_col": 71, + "start_line": 109 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 66, + "start_line": 88 + } + }, + "4051": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.royaltyInfo" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 68, + "end_line": 91, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "start_col": 57, + "start_line": 91 + } + }, + "4052": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.royaltyInfo" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 83, + "end_line": 91, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "start_col": 70, + "start_line": 91 + } + }, + "4053": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.royaltyInfo" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 84, + "end_line": 91, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "start_col": 38, + "start_line": 91 + } + }, + "4055": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.royaltyInfo" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 57, + "end_line": 92, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "start_col": 56, + "start_line": 92 + } + }, + "4057": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.royaltyInfo" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 60, + "end_line": 92, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "start_col": 5, + "start_line": 92 + } + }, + "4058": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.royaltyInfo_encode_return" + ], + "flow_tracking_data": null, + "hints": [ + { + "location": { + "end_col": 38, + "end_line": 3, + "input_file": { + "filename": "autogen/starknet/external/return/royaltyInfo/41ca8085795d3d348e874467bc7dcb7de6e2cf927f816241ae0f1e0c257c5e6f.cairo" + }, + "parent_location": [ + { + "end_col": 17, + "end_line": 88, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "start_col": 6, + "start_line": 88 + }, + "While handling return value of" + ], + "start_col": 5, + "start_line": 3 + }, + "n_prefix_newlines": 0 + } + ], + "inst": { + "end_col": 18, + "end_line": 4, + "input_file": { + "filename": "autogen/starknet/external/return/royaltyInfo/41ca8085795d3d348e874467bc7dcb7de6e2cf927f816241ae0f1e0c257c5e6f.cairo" + }, + "parent_location": [ + { + "end_col": 17, + "end_line": 88, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "start_col": 6, + "start_line": 88 + }, + "While handling return value of" + ], + "start_col": 5, + "start_line": 4 + } + }, + "4060": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.royaltyInfo_encode_return" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 50, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/arg_processor/0b050fa727994261d8cf65daf308742256295d24dddf94130e6ee23500b3cb52.cairo" + }, + "parent_location": [ + { + "end_col": 21, + "end_line": 90, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "start_col": 7, + "start_line": 90 + }, + "While handling return value 'receiver'" + ], + "start_col": 1, + "start_line": 1 + } + }, + "4061": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.royaltyInfo_encode_return" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 60, + "end_line": 3, + "input_file": { + "filename": "autogen/starknet/arg_processor/47b7b627c54c3831609963cbafd0e72d89902af04652dab0edd44a32c16fc000.cairo" + }, + "parent_location": [ + { + "end_col": 45, + "end_line": 90, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "start_col": 23, + "start_line": 90 + }, + "While handling return value 'royaltyAmount'" + ], + "start_col": 1, + "start_line": 3 + } + }, + "4062": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.royaltyInfo_encode_return" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 60, + "end_line": 4, + "input_file": { + "filename": "autogen/starknet/arg_processor/47b7b627c54c3831609963cbafd0e72d89902af04652dab0edd44a32c16fc000.cairo" + }, + "parent_location": [ + { + "end_col": 45, + "end_line": 90, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "start_col": 23, + "start_line": 90 + }, + "While handling return value 'royaltyAmount'" + ], + "start_col": 1, + "start_line": 4 + } + }, + "4063": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.royaltyInfo_encode_return" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 48, + "end_line": 5, + "input_file": { + "filename": "autogen/starknet/arg_processor/47b7b627c54c3831609963cbafd0e72d89902af04652dab0edd44a32c16fc000.cairo" + }, + "parent_location": [ + { + "end_col": 45, + "end_line": 90, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "parent_location": [ + { + "end_col": 36, + "end_line": 11, + "input_file": { + "filename": "autogen/starknet/external/return/royaltyInfo/41ca8085795d3d348e874467bc7dcb7de6e2cf927f816241ae0f1e0c257c5e6f.cairo" + }, + "parent_location": [ + { + "end_col": 17, + "end_line": 88, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "start_col": 6, + "start_line": 88 + }, + "While handling return value of" + ], + "start_col": 18, + "start_line": 11 + }, + "While expanding the reference '__return_value_ptr' in:" + ], + "start_col": 23, + "start_line": 90 + }, + "While handling return value 'royaltyAmount'" + ], + "start_col": 26, + "start_line": 5 + } + }, + "4065": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.royaltyInfo_encode_return" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 131, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/return/royaltyInfo/41ca8085795d3d348e874467bc7dcb7de6e2cf927f816241ae0f1e0c257c5e6f.cairo" + }, + "parent_location": [ + { + "end_col": 17, + "end_line": 88, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "parent_location": [ + { + "end_col": 40, + "end_line": 10, + "input_file": { + "filename": "autogen/starknet/external/return/royaltyInfo/41ca8085795d3d348e874467bc7dcb7de6e2cf927f816241ae0f1e0c257c5e6f.cairo" + }, + "parent_location": [ + { + "end_col": 17, + "end_line": 88, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "start_col": 6, + "start_line": 88 + }, + "While handling return value of" + ], + "start_col": 25, + "start_line": 10 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 6, + "start_line": 88 + }, + "While handling return value of" + ], + "start_col": 116, + "start_line": 1 + } + }, + "4066": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.royaltyInfo_encode_return" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 63, + "end_line": 11, + "input_file": { + "filename": "autogen/starknet/external/return/royaltyInfo/41ca8085795d3d348e874467bc7dcb7de6e2cf927f816241ae0f1e0c257c5e6f.cairo" + }, + "parent_location": [ + { + "end_col": 17, + "end_line": 88, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "start_col": 6, + "start_line": 88 + }, + "While handling return value of" + ], + "start_col": 18, + "start_line": 11 + } + }, + "4067": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.royaltyInfo_encode_return" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 35, + "end_line": 5, + "input_file": { + "filename": "autogen/starknet/external/return/royaltyInfo/41ca8085795d3d348e874467bc7dcb7de6e2cf927f816241ae0f1e0c257c5e6f.cairo" + }, + "parent_location": [ + { + "end_col": 17, + "end_line": 88, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "parent_location": [ + { + "end_col": 38, + "end_line": 12, + "input_file": { + "filename": "autogen/starknet/external/return/royaltyInfo/41ca8085795d3d348e874467bc7dcb7de6e2cf927f816241ae0f1e0c257c5e6f.cairo" + }, + "parent_location": [ + { + "end_col": 17, + "end_line": 88, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "start_col": 6, + "start_line": 88 + }, + "While handling return value of" + ], + "start_col": 14, + "start_line": 12 + }, + "While expanding the reference '__return_value_ptr_start' in:" + ], + "start_col": 6, + "start_line": 88 + }, + "While handling return value of" + ], + "start_col": 11, + "start_line": 5 + } + }, + "4068": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.royaltyInfo_encode_return" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 40, + "end_line": 12, + "input_file": { + "filename": "autogen/starknet/external/return/royaltyInfo/41ca8085795d3d348e874467bc7dcb7de6e2cf927f816241ae0f1e0c257c5e6f.cairo" + }, + "parent_location": [ + { + "end_col": 17, + "end_line": 88, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "start_col": 6, + "start_line": 88 + }, + "While handling return value of" + ], + "start_col": 5, + "start_line": 9 + } + }, + "4069": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.royaltyInfo" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 40, + "end_line": 3, + "input_file": { + "filename": "autogen/starknet/arg_processor/df6558fb624ff95b391487d89cf1d15202347277ab6f09ea4641de6f8bec1e9e.cairo" + }, + "parent_location": [ + { + "end_col": 41, + "end_line": 89, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "parent_location": [ + { + "end_col": 45, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/arg_processor/c31620b02d4d706f0542c989b2aadc01b0981d1f6a5933a8fe4937ace3d70d92.cairo" + }, + "parent_location": [ + { + "end_col": 17, + "end_line": 88, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "parent_location": [ + { + "end_col": 57, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/arg_processor/01cba52f8515996bb9d7070bde81ff39281d096d7024a558efcba6e1fd2402cf.cairo" + }, + "parent_location": [ + { + "end_col": 17, + "end_line": 88, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "start_col": 6, + "start_line": 88 + }, + "While handling calldata of" + ], + "start_col": 35, + "start_line": 1 + }, + "While expanding the reference '__calldata_actual_size' in:" + ], + "start_col": 6, + "start_line": 88 + }, + "While handling calldata of" + ], + "start_col": 31, + "start_line": 1 + }, + "While expanding the reference '__calldata_ptr' in:" + ], + "start_col": 23, + "start_line": 89 + }, + "While handling calldata argument 'salePrice'" + ], + "start_col": 22, + "start_line": 3 + } + }, + "4071": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.royaltyInfo" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 58, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/arg_processor/01cba52f8515996bb9d7070bde81ff39281d096d7024a558efcba6e1fd2402cf.cairo" + }, + "parent_location": [ + { + "end_col": 17, + "end_line": 88, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "start_col": 6, + "start_line": 88 + }, + "While handling calldata of" + ], + "start_col": 1, + "start_line": 1 + } + }, + "4072": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.royaltyInfo" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 64, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/royaltyInfo/b2c52ca2d2a8fc8791a983086d8716c5eacd0c3d62934914d2286f84b98ff4cb.cairo" + }, + "parent_location": [ + { + "end_col": 36, + "end_line": 88, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "parent_location": [ + { + "end_col": 55, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/royaltyInfo/0d6449151d6388e110b83c279c8306195b0d0aebee46edf16ab8eea3d5287152.cairo" + }, + "parent_location": [ + { + "end_col": 17, + "end_line": 88, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "start_col": 6, + "start_line": 88 + }, + "While constructing the external wrapper for:" + ], + "start_col": 44, + "start_line": 1 + }, + "While expanding the reference 'syscall_ptr' in:" + ], + "start_col": 18, + "start_line": 88 + }, + "While constructing the external wrapper for:" + ], + "start_col": 19, + "start_line": 1 + } + }, + "4073": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.royaltyInfo" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 110, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/royaltyInfo/9684a85e93c782014ca14293edea4eb2502039a5a7b6538ecd39c56faaf12529.cairo" + }, + "parent_location": [ + { + "end_col": 64, + "end_line": 88, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "parent_location": [ + { + "end_col": 82, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/royaltyInfo/0d6449151d6388e110b83c279c8306195b0d0aebee46edf16ab8eea3d5287152.cairo" + }, + "parent_location": [ + { + "end_col": 17, + "end_line": 88, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "start_col": 6, + "start_line": 88 + }, + "While constructing the external wrapper for:" + ], + "start_col": 70, + "start_line": 1 + }, + "While expanding the reference 'pedersen_ptr' in:" + ], + "start_col": 38, + "start_line": 88 + }, + "While constructing the external wrapper for:" + ], + "start_col": 20, + "start_line": 1 + } + }, + "4074": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.royaltyInfo" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 67, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/royaltyInfo/741ea357d6336b0bed7bf0472425acd0311d543883b803388880e60a232040c7.cairo" + }, + "parent_location": [ + { + "end_col": 81, + "end_line": 88, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "parent_location": [ + { + "end_col": 115, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/royaltyInfo/0d6449151d6388e110b83c279c8306195b0d0aebee46edf16ab8eea3d5287152.cairo" + }, + "parent_location": [ + { + "end_col": 17, + "end_line": 88, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "start_col": 6, + "start_line": 88 + }, + "While constructing the external wrapper for:" + ], + "start_col": 100, + "start_line": 1 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 66, + "start_line": 88 + }, + "While constructing the external wrapper for:" + ], + "start_col": 23, + "start_line": 1 + } + }, + "4075": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.royaltyInfo" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 67, + "end_line": 2, + "input_file": { + "filename": "autogen/starknet/arg_processor/60c79ef5477686f2843e61432dcde7f4fc0f354d42095115ea9dca625a35df6e.cairo" + }, + "parent_location": [ + { + "end_col": 21, + "end_line": 89, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "parent_location": [ + { + "end_col": 147, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/royaltyInfo/0d6449151d6388e110b83c279c8306195b0d0aebee46edf16ab8eea3d5287152.cairo" + }, + "parent_location": [ + { + "end_col": 17, + "end_line": 88, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "start_col": 6, + "start_line": 88 + }, + "While constructing the external wrapper for:" + ], + "start_col": 125, + "start_line": 1 + }, + "While expanding the reference '__calldata_arg_tokenId' in:" + ], + "start_col": 5, + "start_line": 89 + }, + "While handling calldata argument 'tokenId'" + ], + "start_col": 30, + "start_line": 1 + } + }, + "4076": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.royaltyInfo" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 67, + "end_line": 2, + "input_file": { + "filename": "autogen/starknet/arg_processor/60c79ef5477686f2843e61432dcde7f4fc0f354d42095115ea9dca625a35df6e.cairo" + }, + "parent_location": [ + { + "end_col": 21, + "end_line": 89, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "parent_location": [ + { + "end_col": 147, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/royaltyInfo/0d6449151d6388e110b83c279c8306195b0d0aebee46edf16ab8eea3d5287152.cairo" + }, + "parent_location": [ + { + "end_col": 17, + "end_line": 88, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "start_col": 6, + "start_line": 88 + }, + "While constructing the external wrapper for:" + ], + "start_col": 125, + "start_line": 1 + }, + "While expanding the reference '__calldata_arg_tokenId' in:" + ], + "start_col": 5, + "start_line": 89 + }, + "While handling calldata argument 'tokenId'" + ], + "start_col": 30, + "start_line": 1 + } + }, + "4077": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.royaltyInfo" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 67, + "end_line": 2, + "input_file": { + "filename": "autogen/starknet/arg_processor/df6558fb624ff95b391487d89cf1d15202347277ab6f09ea4641de6f8bec1e9e.cairo" + }, + "parent_location": [ + { + "end_col": 41, + "end_line": 89, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "parent_location": [ + { + "end_col": 183, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/royaltyInfo/0d6449151d6388e110b83c279c8306195b0d0aebee46edf16ab8eea3d5287152.cairo" + }, + "parent_location": [ + { + "end_col": 17, + "end_line": 88, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "start_col": 6, + "start_line": 88 + }, + "While constructing the external wrapper for:" + ], + "start_col": 159, + "start_line": 1 + }, + "While expanding the reference '__calldata_arg_salePrice' in:" + ], + "start_col": 23, + "start_line": 89 + }, + "While handling calldata argument 'salePrice'" + ], + "start_col": 32, + "start_line": 1 + } + }, + "4078": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.royaltyInfo" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 67, + "end_line": 2, + "input_file": { + "filename": "autogen/starknet/arg_processor/df6558fb624ff95b391487d89cf1d15202347277ab6f09ea4641de6f8bec1e9e.cairo" + }, + "parent_location": [ + { + "end_col": 41, + "end_line": 89, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "parent_location": [ + { + "end_col": 183, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/royaltyInfo/0d6449151d6388e110b83c279c8306195b0d0aebee46edf16ab8eea3d5287152.cairo" + }, + "parent_location": [ + { + "end_col": 17, + "end_line": 88, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "start_col": 6, + "start_line": 88 + }, + "While constructing the external wrapper for:" + ], + "start_col": 159, + "start_line": 1 + }, + "While expanding the reference '__calldata_arg_salePrice' in:" + ], + "start_col": 23, + "start_line": 89 + }, + "While handling calldata argument 'salePrice'" + ], + "start_col": 32, + "start_line": 1 + } + }, + "4079": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.royaltyInfo" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 17, + "end_line": 88, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "start_col": 6, + "start_line": 88 + } + }, + "4081": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.royaltyInfo" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 115, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/royaltyInfo/0d6449151d6388e110b83c279c8306195b0d0aebee46edf16ab8eea3d5287152.cairo" + }, + "parent_location": [ + { + "end_col": 17, + "end_line": 88, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "parent_location": [ + { + "end_col": 100, + "end_line": 2, + "input_file": { + "filename": "autogen/starknet/external/royaltyInfo/0d6449151d6388e110b83c279c8306195b0d0aebee46edf16ab8eea3d5287152.cairo" + }, + "parent_location": [ + { + "end_col": 17, + "end_line": 88, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "start_col": 6, + "start_line": 88 + }, + "While constructing the external wrapper for:" + ], + "start_col": 85, + "start_line": 2 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 6, + "start_line": 88 + }, + "While constructing the external wrapper for:" + ], + "start_col": 100, + "start_line": 1 + } + }, + "4082": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.royaltyInfo" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 101, + "end_line": 2, + "input_file": { + "filename": "autogen/starknet/external/royaltyInfo/0d6449151d6388e110b83c279c8306195b0d0aebee46edf16ab8eea3d5287152.cairo" + }, + "parent_location": [ + { + "end_col": 17, + "end_line": 88, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "start_col": 6, + "start_line": 88 + }, + "While constructing the external wrapper for:" + ], + "start_col": 48, + "start_line": 2 + } + }, + "4084": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.royaltyInfo" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 55, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/royaltyInfo/0d6449151d6388e110b83c279c8306195b0d0aebee46edf16ab8eea3d5287152.cairo" + }, + "parent_location": [ + { + "end_col": 17, + "end_line": 88, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "parent_location": [ + { + "end_col": 20, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/royaltyInfo/da17921a4e81c09e730800bbf23bfdbe5e9e6bfaedc59d80fbf62087fa43c27d.cairo" + }, + "parent_location": [ + { + "end_col": 17, + "end_line": 88, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "start_col": 6, + "start_line": 88 + }, + "While constructing the external wrapper for:" + ], + "start_col": 9, + "start_line": 1 + }, + "While expanding the reference 'syscall_ptr' in:" + ], + "start_col": 6, + "start_line": 88 + }, + "While constructing the external wrapper for:" + ], + "start_col": 44, + "start_line": 1 + } + }, + "4085": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.royaltyInfo" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 82, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/royaltyInfo/0d6449151d6388e110b83c279c8306195b0d0aebee46edf16ab8eea3d5287152.cairo" + }, + "parent_location": [ + { + "end_col": 17, + "end_line": 88, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "parent_location": [ + { + "end_col": 33, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/royaltyInfo/da17921a4e81c09e730800bbf23bfdbe5e9e6bfaedc59d80fbf62087fa43c27d.cairo" + }, + "parent_location": [ + { + "end_col": 17, + "end_line": 88, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "start_col": 6, + "start_line": 88 + }, + "While constructing the external wrapper for:" + ], + "start_col": 21, + "start_line": 1 + }, + "While expanding the reference 'pedersen_ptr' in:" + ], + "start_col": 6, + "start_line": 88 + }, + "While constructing the external wrapper for:" + ], + "start_col": 70, + "start_line": 1 + } + }, + "4086": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.royaltyInfo" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 21, + "end_line": 2, + "input_file": { + "filename": "autogen/starknet/external/royaltyInfo/0d6449151d6388e110b83c279c8306195b0d0aebee46edf16ab8eea3d5287152.cairo" + }, + "parent_location": [ + { + "end_col": 17, + "end_line": 88, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "parent_location": [ + { + "end_col": 49, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/royaltyInfo/da17921a4e81c09e730800bbf23bfdbe5e9e6bfaedc59d80fbf62087fa43c27d.cairo" + }, + "parent_location": [ + { + "end_col": 17, + "end_line": 88, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "start_col": 6, + "start_line": 88 + }, + "While constructing the external wrapper for:" + ], + "start_col": 34, + "start_line": 1 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 6, + "start_line": 88 + }, + "While constructing the external wrapper for:" + ], + "start_col": 6, + "start_line": 2 + } + }, + "4087": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.royaltyInfo" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 35, + "end_line": 2, + "input_file": { + "filename": "autogen/starknet/external/royaltyInfo/0d6449151d6388e110b83c279c8306195b0d0aebee46edf16ab8eea3d5287152.cairo" + }, + "parent_location": [ + { + "end_col": 17, + "end_line": 88, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "parent_location": [ + { + "end_col": 62, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/royaltyInfo/da17921a4e81c09e730800bbf23bfdbe5e9e6bfaedc59d80fbf62087fa43c27d.cairo" + }, + "parent_location": [ + { + "end_col": 17, + "end_line": 88, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "start_col": 6, + "start_line": 88 + }, + "While constructing the external wrapper for:" + ], + "start_col": 50, + "start_line": 1 + }, + "While expanding the reference 'retdata_size' in:" + ], + "start_col": 6, + "start_line": 88 + }, + "While constructing the external wrapper for:" + ], + "start_col": 23, + "start_line": 2 + } + }, + "4088": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.royaltyInfo" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 44, + "end_line": 2, + "input_file": { + "filename": "autogen/starknet/external/royaltyInfo/0d6449151d6388e110b83c279c8306195b0d0aebee46edf16ab8eea3d5287152.cairo" + }, + "parent_location": [ + { + "end_col": 17, + "end_line": 88, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "parent_location": [ + { + "end_col": 70, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/royaltyInfo/da17921a4e81c09e730800bbf23bfdbe5e9e6bfaedc59d80fbf62087fa43c27d.cairo" + }, + "parent_location": [ + { + "end_col": 17, + "end_line": 88, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "start_col": 6, + "start_line": 88 + }, + "While constructing the external wrapper for:" + ], + "start_col": 63, + "start_line": 1 + }, + "While expanding the reference 'retdata' in:" + ], + "start_col": 6, + "start_line": 88 + }, + "While constructing the external wrapper for:" + ], + "start_col": 37, + "start_line": 2 + } + }, + "4089": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.royaltyInfo" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 72, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/royaltyInfo/da17921a4e81c09e730800bbf23bfdbe5e9e6bfaedc59d80fbf62087fa43c27d.cairo" + }, + "parent_location": [ + { + "end_col": 17, + "end_line": 88, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "start_col": 6, + "start_line": 88 + }, + "While constructing the external wrapper for:" + ], + "start_col": 1, + "start_line": 1 + } + }, + "4090": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.setCellRenderer" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 40, + "end_line": 96, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "parent_location": [ + { + "end_col": 46, + "end_line": 40, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/access/ownable/library.cairo" + }, + "parent_location": [ + { + "end_col": 32, + "end_line": 99, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "start_col": 5, + "start_line": 99 + }, + "While trying to retrieve the implicit argument 'syscall_ptr' in:" + ], + "start_col": 28, + "start_line": 40 + }, + "While expanding the reference 'syscall_ptr' in:" + ], + "start_col": 22, + "start_line": 96 + } + }, + "4091": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.setCellRenderer" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 68, + "end_line": 96, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "parent_location": [ + { + "end_col": 74, + "end_line": 40, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/access/ownable/library.cairo" + }, + "parent_location": [ + { + "end_col": 32, + "end_line": 99, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "start_col": 5, + "start_line": 99 + }, + "While trying to retrieve the implicit argument 'pedersen_ptr' in:" + ], + "start_col": 48, + "start_line": 40 + }, + "While expanding the reference 'pedersen_ptr' in:" + ], + "start_col": 42, + "start_line": 96 + } + }, + "4092": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.setCellRenderer" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 85, + "end_line": 96, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "parent_location": [ + { + "end_col": 91, + "end_line": 40, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/access/ownable/library.cairo" + }, + "parent_location": [ + { + "end_col": 32, + "end_line": 99, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "start_col": 5, + "start_line": 99 + }, + "While trying to retrieve the implicit argument 'range_check_ptr' in:" + ], + "start_col": 76, + "start_line": 40 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 70, + "start_line": 96 + } + }, + "4093": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.setCellRenderer" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 32, + "end_line": 99, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "start_col": 5, + "start_line": 99 + } + }, + "4095": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.setCellRenderer" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 18, + "end_line": 97, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "parent_location": [ + { + "end_col": 38, + "end_line": 100, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "start_col": 31, + "start_line": 100 + }, + "While expanding the reference 'address' in:" + ], + "start_col": 5, + "start_line": 97 + } + }, + "4096": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.setCellRenderer" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 39, + "end_line": 100, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "start_col": 5, + "start_line": 100 + } + }, + "4098": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.setCellRenderer" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 15, + "end_line": 101, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "start_col": 5, + "start_line": 101 + } + }, + "4099": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.setCellRenderer" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 40, + "end_line": 2, + "input_file": { + "filename": "autogen/starknet/arg_processor/d7daa544e246461a936b5ac82f5344c08a96429550ee8026ea086c8d8ed93006.cairo" + }, + "parent_location": [ + { + "end_col": 18, + "end_line": 97, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "parent_location": [ + { + "end_col": 45, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/arg_processor/c31620b02d4d706f0542c989b2aadc01b0981d1f6a5933a8fe4937ace3d70d92.cairo" + }, + "parent_location": [ + { + "end_col": 21, + "end_line": 96, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "parent_location": [ + { + "end_col": 57, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/arg_processor/01cba52f8515996bb9d7070bde81ff39281d096d7024a558efcba6e1fd2402cf.cairo" + }, + "parent_location": [ + { + "end_col": 21, + "end_line": 96, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "start_col": 6, + "start_line": 96 + }, + "While handling calldata of" + ], + "start_col": 35, + "start_line": 1 + }, + "While expanding the reference '__calldata_actual_size' in:" + ], + "start_col": 6, + "start_line": 96 + }, + "While handling calldata of" + ], + "start_col": 31, + "start_line": 1 + }, + "While expanding the reference '__calldata_ptr' in:" + ], + "start_col": 5, + "start_line": 97 + }, + "While handling calldata argument 'address'" + ], + "start_col": 22, + "start_line": 2 + } + }, + "4101": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.setCellRenderer" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 58, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/arg_processor/01cba52f8515996bb9d7070bde81ff39281d096d7024a558efcba6e1fd2402cf.cairo" + }, + "parent_location": [ + { + "end_col": 21, + "end_line": 96, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "start_col": 6, + "start_line": 96 + }, + "While handling calldata of" + ], + "start_col": 1, + "start_line": 1 + } + }, + "4102": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.setCellRenderer" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 64, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/setCellRenderer/b2c52ca2d2a8fc8791a983086d8716c5eacd0c3d62934914d2286f84b98ff4cb.cairo" + }, + "parent_location": [ + { + "end_col": 40, + "end_line": 96, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "parent_location": [ + { + "end_col": 55, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/setCellRenderer/0659a254e8c454b3c657c5278489e4243b32c053e1167867ca4c539b977e7a36.cairo" + }, + "parent_location": [ + { + "end_col": 21, + "end_line": 96, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "start_col": 6, + "start_line": 96 + }, + "While constructing the external wrapper for:" + ], + "start_col": 44, + "start_line": 1 + }, + "While expanding the reference 'syscall_ptr' in:" + ], + "start_col": 22, + "start_line": 96 + }, + "While constructing the external wrapper for:" + ], + "start_col": 19, + "start_line": 1 + } + }, + "4103": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.setCellRenderer" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 110, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/setCellRenderer/9684a85e93c782014ca14293edea4eb2502039a5a7b6538ecd39c56faaf12529.cairo" + }, + "parent_location": [ + { + "end_col": 68, + "end_line": 96, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "parent_location": [ + { + "end_col": 82, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/setCellRenderer/0659a254e8c454b3c657c5278489e4243b32c053e1167867ca4c539b977e7a36.cairo" + }, + "parent_location": [ + { + "end_col": 21, + "end_line": 96, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "start_col": 6, + "start_line": 96 + }, + "While constructing the external wrapper for:" + ], + "start_col": 70, + "start_line": 1 + }, + "While expanding the reference 'pedersen_ptr' in:" + ], + "start_col": 42, + "start_line": 96 + }, + "While constructing the external wrapper for:" + ], + "start_col": 20, + "start_line": 1 + } + }, + "4104": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.setCellRenderer" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 67, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/setCellRenderer/741ea357d6336b0bed7bf0472425acd0311d543883b803388880e60a232040c7.cairo" + }, + "parent_location": [ + { + "end_col": 85, + "end_line": 96, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "parent_location": [ + { + "end_col": 115, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/setCellRenderer/0659a254e8c454b3c657c5278489e4243b32c053e1167867ca4c539b977e7a36.cairo" + }, + "parent_location": [ + { + "end_col": 21, + "end_line": 96, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "start_col": 6, + "start_line": 96 + }, + "While constructing the external wrapper for:" + ], + "start_col": 100, + "start_line": 1 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 70, + "start_line": 96 + }, + "While constructing the external wrapper for:" + ], + "start_col": 23, + "start_line": 1 + } + }, + "4105": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.setCellRenderer" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 46, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/arg_processor/d7daa544e246461a936b5ac82f5344c08a96429550ee8026ea086c8d8ed93006.cairo" + }, + "parent_location": [ + { + "end_col": 18, + "end_line": 97, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "parent_location": [ + { + "end_col": 147, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/setCellRenderer/0659a254e8c454b3c657c5278489e4243b32c053e1167867ca4c539b977e7a36.cairo" + }, + "parent_location": [ + { + "end_col": 21, + "end_line": 96, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "start_col": 6, + "start_line": 96 + }, + "While constructing the external wrapper for:" + ], + "start_col": 125, + "start_line": 1 + }, + "While expanding the reference '__calldata_arg_address' in:" + ], + "start_col": 5, + "start_line": 97 + }, + "While handling calldata argument 'address'" + ], + "start_col": 30, + "start_line": 1 + } + }, + "4106": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.setCellRenderer" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 21, + "end_line": 96, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "start_col": 6, + "start_line": 96 + } + }, + "4108": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.setCellRenderer" + ], + "flow_tracking_data": null, + "hints": [ + { + "location": { + "end_col": 34, + "end_line": 2, + "input_file": { + "filename": "autogen/starknet/external/setCellRenderer/0659a254e8c454b3c657c5278489e4243b32c053e1167867ca4c539b977e7a36.cairo" + }, + "parent_location": [ + { + "end_col": 21, + "end_line": 96, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "start_col": 6, + "start_line": 96 + }, + "While constructing the external wrapper for:" + ], + "start_col": 1, + "start_line": 2 + }, + "n_prefix_newlines": 0 + } + ], + "inst": { + "end_col": 24, + "end_line": 3, + "input_file": { + "filename": "autogen/starknet/external/setCellRenderer/0659a254e8c454b3c657c5278489e4243b32c053e1167867ca4c539b977e7a36.cairo" + }, + "parent_location": [ + { + "end_col": 21, + "end_line": 96, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "start_col": 6, + "start_line": 96 + }, + "While constructing the external wrapper for:" + ], + "start_col": 1, + "start_line": 3 + } + }, + "4110": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.setCellRenderer" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 55, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/setCellRenderer/0659a254e8c454b3c657c5278489e4243b32c053e1167867ca4c539b977e7a36.cairo" + }, + "parent_location": [ + { + "end_col": 21, + "end_line": 96, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "parent_location": [ + { + "end_col": 20, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/setCellRenderer/da17921a4e81c09e730800bbf23bfdbe5e9e6bfaedc59d80fbf62087fa43c27d.cairo" + }, + "parent_location": [ + { + "end_col": 21, + "end_line": 96, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "start_col": 6, + "start_line": 96 + }, + "While constructing the external wrapper for:" + ], + "start_col": 9, + "start_line": 1 + }, + "While expanding the reference 'syscall_ptr' in:" + ], + "start_col": 6, + "start_line": 96 + }, + "While constructing the external wrapper for:" + ], + "start_col": 44, + "start_line": 1 + } + }, + "4111": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.setCellRenderer" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 82, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/setCellRenderer/0659a254e8c454b3c657c5278489e4243b32c053e1167867ca4c539b977e7a36.cairo" + }, + "parent_location": [ + { + "end_col": 21, + "end_line": 96, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "parent_location": [ + { + "end_col": 33, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/setCellRenderer/da17921a4e81c09e730800bbf23bfdbe5e9e6bfaedc59d80fbf62087fa43c27d.cairo" + }, + "parent_location": [ + { + "end_col": 21, + "end_line": 96, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "start_col": 6, + "start_line": 96 + }, + "While constructing the external wrapper for:" + ], + "start_col": 21, + "start_line": 1 + }, + "While expanding the reference 'pedersen_ptr' in:" + ], + "start_col": 6, + "start_line": 96 + }, + "While constructing the external wrapper for:" + ], + "start_col": 70, + "start_line": 1 + } + }, + "4112": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.setCellRenderer" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 115, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/setCellRenderer/0659a254e8c454b3c657c5278489e4243b32c053e1167867ca4c539b977e7a36.cairo" + }, + "parent_location": [ + { + "end_col": 21, + "end_line": 96, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "parent_location": [ + { + "end_col": 49, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/setCellRenderer/da17921a4e81c09e730800bbf23bfdbe5e9e6bfaedc59d80fbf62087fa43c27d.cairo" + }, + "parent_location": [ + { + "end_col": 21, + "end_line": 96, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "start_col": 6, + "start_line": 96 + }, + "While constructing the external wrapper for:" + ], + "start_col": 34, + "start_line": 1 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 6, + "start_line": 96 + }, + "While constructing the external wrapper for:" + ], + "start_col": 100, + "start_line": 1 + } + }, + "4113": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.setCellRenderer" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 21, + "end_line": 4, + "input_file": { + "filename": "autogen/starknet/external/setCellRenderer/0659a254e8c454b3c657c5278489e4243b32c053e1167867ca4c539b977e7a36.cairo" + }, + "parent_location": [ + { + "end_col": 21, + "end_line": 96, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "parent_location": [ + { + "end_col": 62, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/setCellRenderer/da17921a4e81c09e730800bbf23bfdbe5e9e6bfaedc59d80fbf62087fa43c27d.cairo" + }, + "parent_location": [ + { + "end_col": 21, + "end_line": 96, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "start_col": 6, + "start_line": 96 + }, + "While constructing the external wrapper for:" + ], + "start_col": 50, + "start_line": 1 + }, + "While expanding the reference 'retdata_size' in:" + ], + "start_col": 6, + "start_line": 96 + }, + "While constructing the external wrapper for:" + ], + "start_col": 20, + "start_line": 4 + } + }, + "4115": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.setCellRenderer" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 16, + "end_line": 3, + "input_file": { + "filename": "autogen/starknet/external/setCellRenderer/0659a254e8c454b3c657c5278489e4243b32c053e1167867ca4c539b977e7a36.cairo" + }, + "parent_location": [ + { + "end_col": 21, + "end_line": 96, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "parent_location": [ + { + "end_col": 70, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/setCellRenderer/da17921a4e81c09e730800bbf23bfdbe5e9e6bfaedc59d80fbf62087fa43c27d.cairo" + }, + "parent_location": [ + { + "end_col": 21, + "end_line": 96, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "start_col": 6, + "start_line": 96 + }, + "While constructing the external wrapper for:" + ], + "start_col": 63, + "start_line": 1 + }, + "While expanding the reference 'retdata' in:" + ], + "start_col": 6, + "start_line": 96 + }, + "While constructing the external wrapper for:" + ], + "start_col": 9, + "start_line": 3 + } + }, + "4116": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.setCellRenderer" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 72, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/setCellRenderer/da17921a4e81c09e730800bbf23bfdbe5e9e6bfaedc59d80fbf62087fa43c27d.cairo" + }, + "parent_location": [ + { + "end_col": 21, + "end_line": 96, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "start_col": 6, + "start_line": 96 + }, + "While constructing the external wrapper for:" + ], + "start_col": 1, + "start_line": 1 + } + }, + "4117": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.getCellRenderer" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 40, + "end_line": 105, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "parent_location": [ + { + "end_col": 33, + "end_line": 13, + "input_file": { + "filename": "autogen/starknet/storage_var/Sheet_cell_renderer/decl.cairo" + }, + "parent_location": [ + { + "end_col": 38, + "end_line": 108, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "start_col": 12, + "start_line": 108 + }, + "While trying to retrieve the implicit argument 'syscall_ptr' in:" + ], + "start_col": 15, + "start_line": 13 + }, + "While expanding the reference 'syscall_ptr' in:" + ], + "start_col": 22, + "start_line": 105 + } + }, + "4118": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.getCellRenderer" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 68, + "end_line": 105, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "parent_location": [ + { + "end_col": 61, + "end_line": 13, + "input_file": { + "filename": "autogen/starknet/storage_var/Sheet_cell_renderer/decl.cairo" + }, + "parent_location": [ + { + "end_col": 38, + "end_line": 108, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "start_col": 12, + "start_line": 108 + }, + "While trying to retrieve the implicit argument 'pedersen_ptr' in:" + ], + "start_col": 35, + "start_line": 13 + }, + "While expanding the reference 'pedersen_ptr' in:" + ], + "start_col": 42, + "start_line": 105 + } + }, + "4119": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.getCellRenderer" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 85, + "end_line": 105, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "parent_location": [ + { + "end_col": 78, + "end_line": 13, + "input_file": { + "filename": "autogen/starknet/storage_var/Sheet_cell_renderer/decl.cairo" + }, + "parent_location": [ + { + "end_col": 38, + "end_line": 108, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "start_col": 12, + "start_line": 108 + }, + "While trying to retrieve the implicit argument 'range_check_ptr' in:" + ], + "start_col": 63, + "start_line": 13 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 70, + "start_line": 105 + } + }, + "4120": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.getCellRenderer" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 38, + "end_line": 108, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "start_col": 12, + "start_line": 108 + } + }, + "4122": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.getCellRenderer" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 39, + "end_line": 108, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "start_col": 5, + "start_line": 108 + } + }, + "4123": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.getCellRenderer_encode_return" + ], + "flow_tracking_data": null, + "hints": [ + { + "location": { + "end_col": 38, + "end_line": 3, + "input_file": { + "filename": "autogen/starknet/external/return/getCellRenderer/32ed84cc62db75f1e784f477fb8a01720540a0a2f04e442b873ca26adef8a14d.cairo" + }, + "parent_location": [ + { + "end_col": 21, + "end_line": 105, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "start_col": 6, + "start_line": 105 + }, + "While handling return value of" + ], + "start_col": 5, + "start_line": 3 + }, + "n_prefix_newlines": 0 + } + ], + "inst": { + "end_col": 18, + "end_line": 4, + "input_file": { + "filename": "autogen/starknet/external/return/getCellRenderer/32ed84cc62db75f1e784f477fb8a01720540a0a2f04e442b873ca26adef8a14d.cairo" + }, + "parent_location": [ + { + "end_col": 21, + "end_line": 105, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "start_col": 6, + "start_line": 105 + }, + "While handling return value of" + ], + "start_col": 5, + "start_line": 4 + } + }, + "4125": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.getCellRenderer_encode_return" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 49, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/arg_processor/10f4ffaf96982a2fff2ff72dc2d3b1a8878257148aab4051a8f2ef7f16687f01.cairo" + }, + "parent_location": [ + { + "end_col": 18, + "end_line": 106, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "start_col": 5, + "start_line": 106 + }, + "While handling return value 'address'" + ], + "start_col": 1, + "start_line": 1 + } + }, + "4126": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.getCellRenderer_encode_return" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 48, + "end_line": 2, + "input_file": { + "filename": "autogen/starknet/arg_processor/10f4ffaf96982a2fff2ff72dc2d3b1a8878257148aab4051a8f2ef7f16687f01.cairo" + }, + "parent_location": [ + { + "end_col": 18, + "end_line": 106, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "parent_location": [ + { + "end_col": 36, + "end_line": 11, + "input_file": { + "filename": "autogen/starknet/external/return/getCellRenderer/32ed84cc62db75f1e784f477fb8a01720540a0a2f04e442b873ca26adef8a14d.cairo" + }, + "parent_location": [ + { + "end_col": 21, + "end_line": 105, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "start_col": 6, + "start_line": 105 + }, + "While handling return value of" + ], + "start_col": 18, + "start_line": 11 + }, + "While expanding the reference '__return_value_ptr' in:" + ], + "start_col": 5, + "start_line": 106 + }, + "While handling return value 'address'" + ], + "start_col": 26, + "start_line": 2 + } + }, + "4128": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.getCellRenderer_encode_return" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 79, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/return/getCellRenderer/32ed84cc62db75f1e784f477fb8a01720540a0a2f04e442b873ca26adef8a14d.cairo" + }, + "parent_location": [ + { + "end_col": 21, + "end_line": 105, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "parent_location": [ + { + "end_col": 40, + "end_line": 10, + "input_file": { + "filename": "autogen/starknet/external/return/getCellRenderer/32ed84cc62db75f1e784f477fb8a01720540a0a2f04e442b873ca26adef8a14d.cairo" + }, + "parent_location": [ + { + "end_col": 21, + "end_line": 105, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "start_col": 6, + "start_line": 105 + }, + "While handling return value of" + ], + "start_col": 25, + "start_line": 10 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 6, + "start_line": 105 + }, + "While handling return value of" + ], + "start_col": 64, + "start_line": 1 + } + }, + "4129": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.getCellRenderer_encode_return" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 63, + "end_line": 11, + "input_file": { + "filename": "autogen/starknet/external/return/getCellRenderer/32ed84cc62db75f1e784f477fb8a01720540a0a2f04e442b873ca26adef8a14d.cairo" + }, + "parent_location": [ + { + "end_col": 21, + "end_line": 105, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "start_col": 6, + "start_line": 105 + }, + "While handling return value of" + ], + "start_col": 18, + "start_line": 11 + } + }, + "4130": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.getCellRenderer_encode_return" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 35, + "end_line": 5, + "input_file": { + "filename": "autogen/starknet/external/return/getCellRenderer/32ed84cc62db75f1e784f477fb8a01720540a0a2f04e442b873ca26adef8a14d.cairo" + }, + "parent_location": [ + { + "end_col": 21, + "end_line": 105, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "parent_location": [ + { + "end_col": 38, + "end_line": 12, + "input_file": { + "filename": "autogen/starknet/external/return/getCellRenderer/32ed84cc62db75f1e784f477fb8a01720540a0a2f04e442b873ca26adef8a14d.cairo" + }, + "parent_location": [ + { + "end_col": 21, + "end_line": 105, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "start_col": 6, + "start_line": 105 + }, + "While handling return value of" + ], + "start_col": 14, + "start_line": 12 + }, + "While expanding the reference '__return_value_ptr_start' in:" + ], + "start_col": 6, + "start_line": 105 + }, + "While handling return value of" + ], + "start_col": 11, + "start_line": 5 + } + }, + "4131": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.getCellRenderer_encode_return" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 40, + "end_line": 12, + "input_file": { + "filename": "autogen/starknet/external/return/getCellRenderer/32ed84cc62db75f1e784f477fb8a01720540a0a2f04e442b873ca26adef8a14d.cairo" + }, + "parent_location": [ + { + "end_col": 21, + "end_line": 105, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "start_col": 6, + "start_line": 105 + }, + "While handling return value of" + ], + "start_col": 5, + "start_line": 9 + } + }, + "4132": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.getCellRenderer" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 58, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/arg_processor/01cba52f8515996bb9d7070bde81ff39281d096d7024a558efcba6e1fd2402cf.cairo" + }, + "parent_location": [ + { + "end_col": 21, + "end_line": 105, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "start_col": 6, + "start_line": 105 + }, + "While handling calldata of" + ], + "start_col": 1, + "start_line": 1 + } + }, + "4133": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.getCellRenderer" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 64, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/getCellRenderer/b2c52ca2d2a8fc8791a983086d8716c5eacd0c3d62934914d2286f84b98ff4cb.cairo" + }, + "parent_location": [ + { + "end_col": 40, + "end_line": 105, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "parent_location": [ + { + "end_col": 55, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/getCellRenderer/ad0970b7c612f5c2245a4fd1a68988d1dca7e1deee86e0b02cc4780b6294c9d7.cairo" + }, + "parent_location": [ + { + "end_col": 21, + "end_line": 105, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "start_col": 6, + "start_line": 105 + }, + "While constructing the external wrapper for:" + ], + "start_col": 44, + "start_line": 1 + }, + "While expanding the reference 'syscall_ptr' in:" + ], + "start_col": 22, + "start_line": 105 + }, + "While constructing the external wrapper for:" + ], + "start_col": 19, + "start_line": 1 + } + }, + "4134": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.getCellRenderer" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 110, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/getCellRenderer/9684a85e93c782014ca14293edea4eb2502039a5a7b6538ecd39c56faaf12529.cairo" + }, + "parent_location": [ + { + "end_col": 68, + "end_line": 105, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "parent_location": [ + { + "end_col": 82, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/getCellRenderer/ad0970b7c612f5c2245a4fd1a68988d1dca7e1deee86e0b02cc4780b6294c9d7.cairo" + }, + "parent_location": [ + { + "end_col": 21, + "end_line": 105, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "start_col": 6, + "start_line": 105 + }, + "While constructing the external wrapper for:" + ], + "start_col": 70, + "start_line": 1 + }, + "While expanding the reference 'pedersen_ptr' in:" + ], + "start_col": 42, + "start_line": 105 + }, + "While constructing the external wrapper for:" + ], + "start_col": 20, + "start_line": 1 + } + }, + "4135": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.getCellRenderer" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 67, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/getCellRenderer/741ea357d6336b0bed7bf0472425acd0311d543883b803388880e60a232040c7.cairo" + }, + "parent_location": [ + { + "end_col": 85, + "end_line": 105, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "parent_location": [ + { + "end_col": 115, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/getCellRenderer/ad0970b7c612f5c2245a4fd1a68988d1dca7e1deee86e0b02cc4780b6294c9d7.cairo" + }, + "parent_location": [ + { + "end_col": 21, + "end_line": 105, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "start_col": 6, + "start_line": 105 + }, + "While constructing the external wrapper for:" + ], + "start_col": 100, + "start_line": 1 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 70, + "start_line": 105 + }, + "While constructing the external wrapper for:" + ], + "start_col": 23, + "start_line": 1 + } + }, + "4136": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.getCellRenderer" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 21, + "end_line": 105, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "start_col": 6, + "start_line": 105 + } + }, + "4138": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.getCellRenderer" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 115, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/getCellRenderer/ad0970b7c612f5c2245a4fd1a68988d1dca7e1deee86e0b02cc4780b6294c9d7.cairo" + }, + "parent_location": [ + { + "end_col": 21, + "end_line": 105, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "parent_location": [ + { + "end_col": 104, + "end_line": 2, + "input_file": { + "filename": "autogen/starknet/external/getCellRenderer/ad0970b7c612f5c2245a4fd1a68988d1dca7e1deee86e0b02cc4780b6294c9d7.cairo" + }, + "parent_location": [ + { + "end_col": 21, + "end_line": 105, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "start_col": 6, + "start_line": 105 + }, + "While constructing the external wrapper for:" + ], + "start_col": 89, + "start_line": 2 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 6, + "start_line": 105 + }, + "While constructing the external wrapper for:" + ], + "start_col": 100, + "start_line": 1 + } + }, + "4139": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.getCellRenderer" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 105, + "end_line": 2, + "input_file": { + "filename": "autogen/starknet/external/getCellRenderer/ad0970b7c612f5c2245a4fd1a68988d1dca7e1deee86e0b02cc4780b6294c9d7.cairo" + }, + "parent_location": [ + { + "end_col": 21, + "end_line": 105, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "start_col": 6, + "start_line": 105 + }, + "While constructing the external wrapper for:" + ], + "start_col": 48, + "start_line": 2 + } + }, + "4141": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.getCellRenderer" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 55, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/getCellRenderer/ad0970b7c612f5c2245a4fd1a68988d1dca7e1deee86e0b02cc4780b6294c9d7.cairo" + }, + "parent_location": [ + { + "end_col": 21, + "end_line": 105, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "parent_location": [ + { + "end_col": 20, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/getCellRenderer/da17921a4e81c09e730800bbf23bfdbe5e9e6bfaedc59d80fbf62087fa43c27d.cairo" + }, + "parent_location": [ + { + "end_col": 21, + "end_line": 105, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "start_col": 6, + "start_line": 105 + }, + "While constructing the external wrapper for:" + ], + "start_col": 9, + "start_line": 1 + }, + "While expanding the reference 'syscall_ptr' in:" + ], + "start_col": 6, + "start_line": 105 + }, + "While constructing the external wrapper for:" + ], + "start_col": 44, + "start_line": 1 + } + }, + "4142": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.getCellRenderer" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 82, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/getCellRenderer/ad0970b7c612f5c2245a4fd1a68988d1dca7e1deee86e0b02cc4780b6294c9d7.cairo" + }, + "parent_location": [ + { + "end_col": 21, + "end_line": 105, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "parent_location": [ + { + "end_col": 33, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/getCellRenderer/da17921a4e81c09e730800bbf23bfdbe5e9e6bfaedc59d80fbf62087fa43c27d.cairo" + }, + "parent_location": [ + { + "end_col": 21, + "end_line": 105, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "start_col": 6, + "start_line": 105 + }, + "While constructing the external wrapper for:" + ], + "start_col": 21, + "start_line": 1 + }, + "While expanding the reference 'pedersen_ptr' in:" + ], + "start_col": 6, + "start_line": 105 + }, + "While constructing the external wrapper for:" + ], + "start_col": 70, + "start_line": 1 + } + }, + "4143": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.getCellRenderer" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 21, + "end_line": 2, + "input_file": { + "filename": "autogen/starknet/external/getCellRenderer/ad0970b7c612f5c2245a4fd1a68988d1dca7e1deee86e0b02cc4780b6294c9d7.cairo" + }, + "parent_location": [ + { + "end_col": 21, + "end_line": 105, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "parent_location": [ + { + "end_col": 49, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/getCellRenderer/da17921a4e81c09e730800bbf23bfdbe5e9e6bfaedc59d80fbf62087fa43c27d.cairo" + }, + "parent_location": [ + { + "end_col": 21, + "end_line": 105, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "start_col": 6, + "start_line": 105 + }, + "While constructing the external wrapper for:" + ], + "start_col": 34, + "start_line": 1 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 6, + "start_line": 105 + }, + "While constructing the external wrapper for:" + ], + "start_col": 6, + "start_line": 2 + } + }, + "4144": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.getCellRenderer" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 35, + "end_line": 2, + "input_file": { + "filename": "autogen/starknet/external/getCellRenderer/ad0970b7c612f5c2245a4fd1a68988d1dca7e1deee86e0b02cc4780b6294c9d7.cairo" + }, + "parent_location": [ + { + "end_col": 21, + "end_line": 105, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "parent_location": [ + { + "end_col": 62, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/getCellRenderer/da17921a4e81c09e730800bbf23bfdbe5e9e6bfaedc59d80fbf62087fa43c27d.cairo" + }, + "parent_location": [ + { + "end_col": 21, + "end_line": 105, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "start_col": 6, + "start_line": 105 + }, + "While constructing the external wrapper for:" + ], + "start_col": 50, + "start_line": 1 + }, + "While expanding the reference 'retdata_size' in:" + ], + "start_col": 6, + "start_line": 105 + }, + "While constructing the external wrapper for:" + ], + "start_col": 23, + "start_line": 2 + } + }, + "4145": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.getCellRenderer" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 44, + "end_line": 2, + "input_file": { + "filename": "autogen/starknet/external/getCellRenderer/ad0970b7c612f5c2245a4fd1a68988d1dca7e1deee86e0b02cc4780b6294c9d7.cairo" + }, + "parent_location": [ + { + "end_col": 21, + "end_line": 105, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "parent_location": [ + { + "end_col": 70, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/getCellRenderer/da17921a4e81c09e730800bbf23bfdbe5e9e6bfaedc59d80fbf62087fa43c27d.cairo" + }, + "parent_location": [ + { + "end_col": 21, + "end_line": 105, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "start_col": 6, + "start_line": 105 + }, + "While constructing the external wrapper for:" + ], + "start_col": 63, + "start_line": 1 + }, + "While expanding the reference 'retdata' in:" + ], + "start_col": 6, + "start_line": 105 + }, + "While constructing the external wrapper for:" + ], + "start_col": 37, + "start_line": 2 + } + }, + "4146": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.getCellRenderer" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 72, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/getCellRenderer/da17921a4e81c09e730800bbf23bfdbe5e9e6bfaedc59d80fbf62087fa43c27d.cairo" + }, + "parent_location": [ + { + "end_col": 21, + "end_line": 105, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "start_col": 6, + "start_line": 105 + }, + "While constructing the external wrapper for:" + ], + "start_col": 1, + "start_line": 1 + } + }, + "4147": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.setMerkleRoot" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 38, + "end_line": 112, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "parent_location": [ + { + "end_col": 46, + "end_line": 40, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/access/ownable/library.cairo" + }, + "parent_location": [ + { + "end_col": 32, + "end_line": 113, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "start_col": 5, + "start_line": 113 + }, + "While trying to retrieve the implicit argument 'syscall_ptr' in:" + ], + "start_col": 28, + "start_line": 40 + }, + "While expanding the reference 'syscall_ptr' in:" + ], + "start_col": 20, + "start_line": 112 + } + }, + "4148": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.setMerkleRoot" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 66, + "end_line": 112, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "parent_location": [ + { + "end_col": 74, + "end_line": 40, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/access/ownable/library.cairo" + }, + "parent_location": [ + { + "end_col": 32, + "end_line": 113, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "start_col": 5, + "start_line": 113 + }, + "While trying to retrieve the implicit argument 'pedersen_ptr' in:" + ], + "start_col": 48, + "start_line": 40 + }, + "While expanding the reference 'pedersen_ptr' in:" + ], + "start_col": 40, + "start_line": 112 + } + }, + "4149": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.setMerkleRoot" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 83, + "end_line": 112, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "parent_location": [ + { + "end_col": 91, + "end_line": 40, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/access/ownable/library.cairo" + }, + "parent_location": [ + { + "end_col": 32, + "end_line": 113, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "start_col": 5, + "start_line": 113 + }, + "While trying to retrieve the implicit argument 'range_check_ptr' in:" + ], + "start_col": 76, + "start_line": 40 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 68, + "start_line": 112 + } + }, + "4150": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.setMerkleRoot" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 32, + "end_line": 113, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "start_col": 5, + "start_line": 113 + } + }, + "4152": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.setMerkleRoot" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 95, + "end_line": 112, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "parent_location": [ + { + "end_col": 33, + "end_line": 114, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "start_col": 29, + "start_line": 114 + }, + "While expanding the reference 'root' in:" + ], + "start_col": 85, + "start_line": 112 + } + }, + "4153": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.setMerkleRoot" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 34, + "end_line": 114, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "start_col": 5, + "start_line": 114 + } + }, + "4155": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.setMerkleRoot" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 15, + "end_line": 115, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "start_col": 5, + "start_line": 115 + } + }, + "4156": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.setMerkleRoot" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 40, + "end_line": 2, + "input_file": { + "filename": "autogen/starknet/arg_processor/038c0cb4ed8fb3662b2204f7a3dad52bb6fd1aceaf040c7093bf2d59c5e90d2e.cairo" + }, + "parent_location": [ + { + "end_col": 95, + "end_line": 112, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "parent_location": [ + { + "end_col": 45, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/arg_processor/c31620b02d4d706f0542c989b2aadc01b0981d1f6a5933a8fe4937ace3d70d92.cairo" + }, + "parent_location": [ + { + "end_col": 19, + "end_line": 112, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "parent_location": [ + { + "end_col": 57, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/arg_processor/01cba52f8515996bb9d7070bde81ff39281d096d7024a558efcba6e1fd2402cf.cairo" + }, + "parent_location": [ + { + "end_col": 19, + "end_line": 112, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "start_col": 6, + "start_line": 112 + }, + "While handling calldata of" + ], + "start_col": 35, + "start_line": 1 + }, + "While expanding the reference '__calldata_actual_size' in:" + ], + "start_col": 6, + "start_line": 112 + }, + "While handling calldata of" + ], + "start_col": 31, + "start_line": 1 + }, + "While expanding the reference '__calldata_ptr' in:" + ], + "start_col": 85, + "start_line": 112 + }, + "While handling calldata argument 'root'" + ], + "start_col": 22, + "start_line": 2 + } + }, + "4158": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.setMerkleRoot" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 58, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/arg_processor/01cba52f8515996bb9d7070bde81ff39281d096d7024a558efcba6e1fd2402cf.cairo" + }, + "parent_location": [ + { + "end_col": 19, + "end_line": 112, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "start_col": 6, + "start_line": 112 + }, + "While handling calldata of" + ], + "start_col": 1, + "start_line": 1 + } + }, + "4159": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.setMerkleRoot" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 64, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/setMerkleRoot/b2c52ca2d2a8fc8791a983086d8716c5eacd0c3d62934914d2286f84b98ff4cb.cairo" + }, + "parent_location": [ + { + "end_col": 38, + "end_line": 112, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "parent_location": [ + { + "end_col": 55, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/setMerkleRoot/161aaf3a5af5c303dbefacf522ccca3916f71a0b81c07d23f94176863241c379.cairo" + }, + "parent_location": [ + { + "end_col": 19, + "end_line": 112, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "start_col": 6, + "start_line": 112 + }, + "While constructing the external wrapper for:" + ], + "start_col": 44, + "start_line": 1 + }, + "While expanding the reference 'syscall_ptr' in:" + ], + "start_col": 20, + "start_line": 112 + }, + "While constructing the external wrapper for:" + ], + "start_col": 19, + "start_line": 1 + } + }, + "4160": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.setMerkleRoot" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 110, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/setMerkleRoot/9684a85e93c782014ca14293edea4eb2502039a5a7b6538ecd39c56faaf12529.cairo" + }, + "parent_location": [ + { + "end_col": 66, + "end_line": 112, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "parent_location": [ + { + "end_col": 82, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/setMerkleRoot/161aaf3a5af5c303dbefacf522ccca3916f71a0b81c07d23f94176863241c379.cairo" + }, + "parent_location": [ + { + "end_col": 19, + "end_line": 112, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "start_col": 6, + "start_line": 112 + }, + "While constructing the external wrapper for:" + ], + "start_col": 70, + "start_line": 1 + }, + "While expanding the reference 'pedersen_ptr' in:" + ], + "start_col": 40, + "start_line": 112 + }, + "While constructing the external wrapper for:" + ], + "start_col": 20, + "start_line": 1 + } + }, + "4161": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.setMerkleRoot" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 67, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/setMerkleRoot/741ea357d6336b0bed7bf0472425acd0311d543883b803388880e60a232040c7.cairo" + }, + "parent_location": [ + { + "end_col": 83, + "end_line": 112, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "parent_location": [ + { + "end_col": 115, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/setMerkleRoot/161aaf3a5af5c303dbefacf522ccca3916f71a0b81c07d23f94176863241c379.cairo" + }, + "parent_location": [ + { + "end_col": 19, + "end_line": 112, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "start_col": 6, + "start_line": 112 + }, + "While constructing the external wrapper for:" + ], + "start_col": 100, + "start_line": 1 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 68, + "start_line": 112 + }, + "While constructing the external wrapper for:" + ], + "start_col": 23, + "start_line": 1 + } + }, + "4162": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.setMerkleRoot" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 43, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/arg_processor/038c0cb4ed8fb3662b2204f7a3dad52bb6fd1aceaf040c7093bf2d59c5e90d2e.cairo" + }, + "parent_location": [ + { + "end_col": 95, + "end_line": 112, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "parent_location": [ + { + "end_col": 141, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/setMerkleRoot/161aaf3a5af5c303dbefacf522ccca3916f71a0b81c07d23f94176863241c379.cairo" + }, + "parent_location": [ + { + "end_col": 19, + "end_line": 112, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "start_col": 6, + "start_line": 112 + }, + "While constructing the external wrapper for:" + ], + "start_col": 122, + "start_line": 1 + }, + "While expanding the reference '__calldata_arg_root' in:" + ], + "start_col": 85, + "start_line": 112 + }, + "While handling calldata argument 'root'" + ], + "start_col": 27, + "start_line": 1 + } + }, + "4163": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.setMerkleRoot" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 19, + "end_line": 112, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "start_col": 6, + "start_line": 112 + } + }, + "4165": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.setMerkleRoot" + ], + "flow_tracking_data": null, + "hints": [ + { + "location": { + "end_col": 34, + "end_line": 2, + "input_file": { + "filename": "autogen/starknet/external/setMerkleRoot/161aaf3a5af5c303dbefacf522ccca3916f71a0b81c07d23f94176863241c379.cairo" + }, + "parent_location": [ + { + "end_col": 19, + "end_line": 112, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "start_col": 6, + "start_line": 112 + }, + "While constructing the external wrapper for:" + ], + "start_col": 1, + "start_line": 2 + }, + "n_prefix_newlines": 0 + } + ], + "inst": { + "end_col": 24, + "end_line": 3, + "input_file": { + "filename": "autogen/starknet/external/setMerkleRoot/161aaf3a5af5c303dbefacf522ccca3916f71a0b81c07d23f94176863241c379.cairo" + }, + "parent_location": [ + { + "end_col": 19, + "end_line": 112, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "start_col": 6, + "start_line": 112 + }, + "While constructing the external wrapper for:" + ], + "start_col": 1, + "start_line": 3 + } + }, + "4167": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.setMerkleRoot" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 55, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/setMerkleRoot/161aaf3a5af5c303dbefacf522ccca3916f71a0b81c07d23f94176863241c379.cairo" + }, + "parent_location": [ + { + "end_col": 19, + "end_line": 112, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "parent_location": [ + { + "end_col": 20, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/setMerkleRoot/da17921a4e81c09e730800bbf23bfdbe5e9e6bfaedc59d80fbf62087fa43c27d.cairo" + }, + "parent_location": [ + { + "end_col": 19, + "end_line": 112, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "start_col": 6, + "start_line": 112 + }, + "While constructing the external wrapper for:" + ], + "start_col": 9, + "start_line": 1 + }, + "While expanding the reference 'syscall_ptr' in:" + ], + "start_col": 6, + "start_line": 112 + }, + "While constructing the external wrapper for:" + ], + "start_col": 44, + "start_line": 1 + } + }, + "4168": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.setMerkleRoot" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 82, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/setMerkleRoot/161aaf3a5af5c303dbefacf522ccca3916f71a0b81c07d23f94176863241c379.cairo" + }, + "parent_location": [ + { + "end_col": 19, + "end_line": 112, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "parent_location": [ + { + "end_col": 33, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/setMerkleRoot/da17921a4e81c09e730800bbf23bfdbe5e9e6bfaedc59d80fbf62087fa43c27d.cairo" + }, + "parent_location": [ + { + "end_col": 19, + "end_line": 112, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "start_col": 6, + "start_line": 112 + }, + "While constructing the external wrapper for:" + ], + "start_col": 21, + "start_line": 1 + }, + "While expanding the reference 'pedersen_ptr' in:" + ], + "start_col": 6, + "start_line": 112 + }, + "While constructing the external wrapper for:" + ], + "start_col": 70, + "start_line": 1 + } + }, + "4169": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.setMerkleRoot" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 115, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/setMerkleRoot/161aaf3a5af5c303dbefacf522ccca3916f71a0b81c07d23f94176863241c379.cairo" + }, + "parent_location": [ + { + "end_col": 19, + "end_line": 112, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "parent_location": [ + { + "end_col": 49, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/setMerkleRoot/da17921a4e81c09e730800bbf23bfdbe5e9e6bfaedc59d80fbf62087fa43c27d.cairo" + }, + "parent_location": [ + { + "end_col": 19, + "end_line": 112, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "start_col": 6, + "start_line": 112 + }, + "While constructing the external wrapper for:" + ], + "start_col": 34, + "start_line": 1 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 6, + "start_line": 112 + }, + "While constructing the external wrapper for:" + ], + "start_col": 100, + "start_line": 1 + } + }, + "4170": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.setMerkleRoot" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 21, + "end_line": 4, + "input_file": { + "filename": "autogen/starknet/external/setMerkleRoot/161aaf3a5af5c303dbefacf522ccca3916f71a0b81c07d23f94176863241c379.cairo" + }, + "parent_location": [ + { + "end_col": 19, + "end_line": 112, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "parent_location": [ + { + "end_col": 62, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/setMerkleRoot/da17921a4e81c09e730800bbf23bfdbe5e9e6bfaedc59d80fbf62087fa43c27d.cairo" + }, + "parent_location": [ + { + "end_col": 19, + "end_line": 112, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "start_col": 6, + "start_line": 112 + }, + "While constructing the external wrapper for:" + ], + "start_col": 50, + "start_line": 1 + }, + "While expanding the reference 'retdata_size' in:" + ], + "start_col": 6, + "start_line": 112 + }, + "While constructing the external wrapper for:" + ], + "start_col": 20, + "start_line": 4 + } + }, + "4172": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.setMerkleRoot" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 16, + "end_line": 3, + "input_file": { + "filename": "autogen/starknet/external/setMerkleRoot/161aaf3a5af5c303dbefacf522ccca3916f71a0b81c07d23f94176863241c379.cairo" + }, + "parent_location": [ + { + "end_col": 19, + "end_line": 112, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "parent_location": [ + { + "end_col": 70, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/setMerkleRoot/da17921a4e81c09e730800bbf23bfdbe5e9e6bfaedc59d80fbf62087fa43c27d.cairo" + }, + "parent_location": [ + { + "end_col": 19, + "end_line": 112, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "start_col": 6, + "start_line": 112 + }, + "While constructing the external wrapper for:" + ], + "start_col": 63, + "start_line": 1 + }, + "While expanding the reference 'retdata' in:" + ], + "start_col": 6, + "start_line": 112 + }, + "While constructing the external wrapper for:" + ], + "start_col": 9, + "start_line": 3 + } + }, + "4173": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.setMerkleRoot" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 72, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/setMerkleRoot/da17921a4e81c09e730800bbf23bfdbe5e9e6bfaedc59d80fbf62087fa43c27d.cairo" + }, + "parent_location": [ + { + "end_col": 19, + "end_line": 112, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "start_col": 6, + "start_line": 112 + }, + "While constructing the external wrapper for:" + ], + "start_col": 1, + "start_line": 1 + } + }, + "4174": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.getMerkleRoot" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 38, + "end_line": 119, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "parent_location": [ + { + "end_col": 33, + "end_line": 13, + "input_file": { + "filename": "autogen/starknet/storage_var/Sheet_merkle_root/decl.cairo" + }, + "parent_location": [ + { + "end_col": 42, + "end_line": 122, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "start_col": 18, + "start_line": 122 + }, + "While trying to retrieve the implicit argument 'syscall_ptr' in:" + ], + "start_col": 15, + "start_line": 13 + }, + "While expanding the reference 'syscall_ptr' in:" + ], + "start_col": 20, + "start_line": 119 + } + }, + "4175": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.getMerkleRoot" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 66, + "end_line": 119, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "parent_location": [ + { + "end_col": 61, + "end_line": 13, + "input_file": { + "filename": "autogen/starknet/storage_var/Sheet_merkle_root/decl.cairo" + }, + "parent_location": [ + { + "end_col": 42, + "end_line": 122, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "start_col": 18, + "start_line": 122 + }, + "While trying to retrieve the implicit argument 'pedersen_ptr' in:" + ], + "start_col": 35, + "start_line": 13 + }, + "While expanding the reference 'pedersen_ptr' in:" + ], + "start_col": 40, + "start_line": 119 + } + }, + "4176": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.getMerkleRoot" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 83, + "end_line": 119, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "parent_location": [ + { + "end_col": 78, + "end_line": 13, + "input_file": { + "filename": "autogen/starknet/storage_var/Sheet_merkle_root/decl.cairo" + }, + "parent_location": [ + { + "end_col": 42, + "end_line": 122, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "start_col": 18, + "start_line": 122 + }, + "While trying to retrieve the implicit argument 'range_check_ptr' in:" + ], + "start_col": 63, + "start_line": 13 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 68, + "start_line": 119 + } + }, + "4177": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.getMerkleRoot" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 42, + "end_line": 122, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "start_col": 18, + "start_line": 122 + } + }, + "4179": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.getMerkleRoot" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 20, + "end_line": 123, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "start_col": 5, + "start_line": 123 + } + }, + "4180": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.getMerkleRoot_encode_return" + ], + "flow_tracking_data": null, + "hints": [ + { + "location": { + "end_col": 38, + "end_line": 3, + "input_file": { + "filename": "autogen/starknet/external/return/getMerkleRoot/495cd1b94c09dee8983a036b9556d859b3656107157b2238179ca9efde6ed739.cairo" + }, + "parent_location": [ + { + "end_col": 19, + "end_line": 119, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "start_col": 6, + "start_line": 119 + }, + "While handling return value of" + ], + "start_col": 5, + "start_line": 3 + }, + "n_prefix_newlines": 0 + } + ], + "inst": { + "end_col": 18, + "end_line": 4, + "input_file": { + "filename": "autogen/starknet/external/return/getMerkleRoot/495cd1b94c09dee8983a036b9556d859b3656107157b2238179ca9efde6ed739.cairo" + }, + "parent_location": [ + { + "end_col": 19, + "end_line": 119, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "start_col": 6, + "start_line": 119 + }, + "While handling return value of" + ], + "start_col": 5, + "start_line": 4 + } + }, + "4182": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.getMerkleRoot_encode_return" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 46, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/arg_processor/3fa00a8d2ef4ad5733642f8c5f3a225f5ee5fd306a52e47a3de0f3e4a53969e9.cairo" + }, + "parent_location": [ + { + "end_col": 15, + "end_line": 120, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "start_col": 5, + "start_line": 120 + }, + "While handling return value 'root'" + ], + "start_col": 1, + "start_line": 1 + } + }, + "4183": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.getMerkleRoot_encode_return" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 48, + "end_line": 2, + "input_file": { + "filename": "autogen/starknet/arg_processor/3fa00a8d2ef4ad5733642f8c5f3a225f5ee5fd306a52e47a3de0f3e4a53969e9.cairo" + }, + "parent_location": [ + { + "end_col": 15, + "end_line": 120, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "parent_location": [ + { + "end_col": 36, + "end_line": 11, + "input_file": { + "filename": "autogen/starknet/external/return/getMerkleRoot/495cd1b94c09dee8983a036b9556d859b3656107157b2238179ca9efde6ed739.cairo" + }, + "parent_location": [ + { + "end_col": 19, + "end_line": 119, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "start_col": 6, + "start_line": 119 + }, + "While handling return value of" + ], + "start_col": 18, + "start_line": 11 + }, + "While expanding the reference '__return_value_ptr' in:" + ], + "start_col": 5, + "start_line": 120 + }, + "While handling return value 'root'" + ], + "start_col": 26, + "start_line": 2 + } + }, + "4185": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.getMerkleRoot_encode_return" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 74, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/return/getMerkleRoot/495cd1b94c09dee8983a036b9556d859b3656107157b2238179ca9efde6ed739.cairo" + }, + "parent_location": [ + { + "end_col": 19, + "end_line": 119, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "parent_location": [ + { + "end_col": 40, + "end_line": 10, + "input_file": { + "filename": "autogen/starknet/external/return/getMerkleRoot/495cd1b94c09dee8983a036b9556d859b3656107157b2238179ca9efde6ed739.cairo" + }, + "parent_location": [ + { + "end_col": 19, + "end_line": 119, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "start_col": 6, + "start_line": 119 + }, + "While handling return value of" + ], + "start_col": 25, + "start_line": 10 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 6, + "start_line": 119 + }, + "While handling return value of" + ], + "start_col": 59, + "start_line": 1 + } + }, + "4186": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.getMerkleRoot_encode_return" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 63, + "end_line": 11, + "input_file": { + "filename": "autogen/starknet/external/return/getMerkleRoot/495cd1b94c09dee8983a036b9556d859b3656107157b2238179ca9efde6ed739.cairo" + }, + "parent_location": [ + { + "end_col": 19, + "end_line": 119, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "start_col": 6, + "start_line": 119 + }, + "While handling return value of" + ], + "start_col": 18, + "start_line": 11 + } + }, + "4187": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.getMerkleRoot_encode_return" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 35, + "end_line": 5, + "input_file": { + "filename": "autogen/starknet/external/return/getMerkleRoot/495cd1b94c09dee8983a036b9556d859b3656107157b2238179ca9efde6ed739.cairo" + }, + "parent_location": [ + { + "end_col": 19, + "end_line": 119, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "parent_location": [ + { + "end_col": 38, + "end_line": 12, + "input_file": { + "filename": "autogen/starknet/external/return/getMerkleRoot/495cd1b94c09dee8983a036b9556d859b3656107157b2238179ca9efde6ed739.cairo" + }, + "parent_location": [ + { + "end_col": 19, + "end_line": 119, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "start_col": 6, + "start_line": 119 + }, + "While handling return value of" + ], + "start_col": 14, + "start_line": 12 + }, + "While expanding the reference '__return_value_ptr_start' in:" + ], + "start_col": 6, + "start_line": 119 + }, + "While handling return value of" + ], + "start_col": 11, + "start_line": 5 + } + }, + "4188": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.getMerkleRoot_encode_return" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 40, + "end_line": 12, + "input_file": { + "filename": "autogen/starknet/external/return/getMerkleRoot/495cd1b94c09dee8983a036b9556d859b3656107157b2238179ca9efde6ed739.cairo" + }, + "parent_location": [ + { + "end_col": 19, + "end_line": 119, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "start_col": 6, + "start_line": 119 + }, + "While handling return value of" + ], + "start_col": 5, + "start_line": 9 + } + }, + "4189": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.getMerkleRoot" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 58, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/arg_processor/01cba52f8515996bb9d7070bde81ff39281d096d7024a558efcba6e1fd2402cf.cairo" + }, + "parent_location": [ + { + "end_col": 19, + "end_line": 119, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "start_col": 6, + "start_line": 119 + }, + "While handling calldata of" + ], + "start_col": 1, + "start_line": 1 + } + }, + "4190": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.getMerkleRoot" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 64, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/getMerkleRoot/b2c52ca2d2a8fc8791a983086d8716c5eacd0c3d62934914d2286f84b98ff4cb.cairo" + }, + "parent_location": [ + { + "end_col": 38, + "end_line": 119, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "parent_location": [ + { + "end_col": 55, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/getMerkleRoot/9ec40c6ab1532b67d6b3241da7f0fc2a824d63002b85dbc8e7b345e400aebd93.cairo" + }, + "parent_location": [ + { + "end_col": 19, + "end_line": 119, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "start_col": 6, + "start_line": 119 + }, + "While constructing the external wrapper for:" + ], + "start_col": 44, + "start_line": 1 + }, + "While expanding the reference 'syscall_ptr' in:" + ], + "start_col": 20, + "start_line": 119 + }, + "While constructing the external wrapper for:" + ], + "start_col": 19, + "start_line": 1 + } + }, + "4191": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.getMerkleRoot" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 110, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/getMerkleRoot/9684a85e93c782014ca14293edea4eb2502039a5a7b6538ecd39c56faaf12529.cairo" + }, + "parent_location": [ + { + "end_col": 66, + "end_line": 119, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "parent_location": [ + { + "end_col": 82, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/getMerkleRoot/9ec40c6ab1532b67d6b3241da7f0fc2a824d63002b85dbc8e7b345e400aebd93.cairo" + }, + "parent_location": [ + { + "end_col": 19, + "end_line": 119, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "start_col": 6, + "start_line": 119 + }, + "While constructing the external wrapper for:" + ], + "start_col": 70, + "start_line": 1 + }, + "While expanding the reference 'pedersen_ptr' in:" + ], + "start_col": 40, + "start_line": 119 + }, + "While constructing the external wrapper for:" + ], + "start_col": 20, + "start_line": 1 + } + }, + "4192": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.getMerkleRoot" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 67, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/getMerkleRoot/741ea357d6336b0bed7bf0472425acd0311d543883b803388880e60a232040c7.cairo" + }, + "parent_location": [ + { + "end_col": 83, + "end_line": 119, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "parent_location": [ + { + "end_col": 115, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/getMerkleRoot/9ec40c6ab1532b67d6b3241da7f0fc2a824d63002b85dbc8e7b345e400aebd93.cairo" + }, + "parent_location": [ + { + "end_col": 19, + "end_line": 119, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "start_col": 6, + "start_line": 119 + }, + "While constructing the external wrapper for:" + ], + "start_col": 100, + "start_line": 1 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 68, + "start_line": 119 + }, + "While constructing the external wrapper for:" + ], + "start_col": 23, + "start_line": 1 + } + }, + "4193": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.getMerkleRoot" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 19, + "end_line": 119, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "start_col": 6, + "start_line": 119 + } + }, + "4195": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.getMerkleRoot" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 115, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/getMerkleRoot/9ec40c6ab1532b67d6b3241da7f0fc2a824d63002b85dbc8e7b345e400aebd93.cairo" + }, + "parent_location": [ + { + "end_col": 19, + "end_line": 119, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "parent_location": [ + { + "end_col": 102, + "end_line": 2, + "input_file": { + "filename": "autogen/starknet/external/getMerkleRoot/9ec40c6ab1532b67d6b3241da7f0fc2a824d63002b85dbc8e7b345e400aebd93.cairo" + }, + "parent_location": [ + { + "end_col": 19, + "end_line": 119, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "start_col": 6, + "start_line": 119 + }, + "While constructing the external wrapper for:" + ], + "start_col": 87, + "start_line": 2 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 6, + "start_line": 119 + }, + "While constructing the external wrapper for:" + ], + "start_col": 100, + "start_line": 1 + } + }, + "4196": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.getMerkleRoot" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 103, + "end_line": 2, + "input_file": { + "filename": "autogen/starknet/external/getMerkleRoot/9ec40c6ab1532b67d6b3241da7f0fc2a824d63002b85dbc8e7b345e400aebd93.cairo" + }, + "parent_location": [ + { + "end_col": 19, + "end_line": 119, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "start_col": 6, + "start_line": 119 + }, + "While constructing the external wrapper for:" + ], + "start_col": 48, + "start_line": 2 + } + }, + "4198": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.getMerkleRoot" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 55, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/getMerkleRoot/9ec40c6ab1532b67d6b3241da7f0fc2a824d63002b85dbc8e7b345e400aebd93.cairo" + }, + "parent_location": [ + { + "end_col": 19, + "end_line": 119, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "parent_location": [ + { + "end_col": 20, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/getMerkleRoot/da17921a4e81c09e730800bbf23bfdbe5e9e6bfaedc59d80fbf62087fa43c27d.cairo" + }, + "parent_location": [ + { + "end_col": 19, + "end_line": 119, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "start_col": 6, + "start_line": 119 + }, + "While constructing the external wrapper for:" + ], + "start_col": 9, + "start_line": 1 + }, + "While expanding the reference 'syscall_ptr' in:" + ], + "start_col": 6, + "start_line": 119 + }, + "While constructing the external wrapper for:" + ], + "start_col": 44, + "start_line": 1 + } + }, + "4199": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.getMerkleRoot" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 82, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/getMerkleRoot/9ec40c6ab1532b67d6b3241da7f0fc2a824d63002b85dbc8e7b345e400aebd93.cairo" + }, + "parent_location": [ + { + "end_col": 19, + "end_line": 119, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "parent_location": [ + { + "end_col": 33, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/getMerkleRoot/da17921a4e81c09e730800bbf23bfdbe5e9e6bfaedc59d80fbf62087fa43c27d.cairo" + }, + "parent_location": [ + { + "end_col": 19, + "end_line": 119, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "start_col": 6, + "start_line": 119 + }, + "While constructing the external wrapper for:" + ], + "start_col": 21, + "start_line": 1 + }, + "While expanding the reference 'pedersen_ptr' in:" + ], + "start_col": 6, + "start_line": 119 + }, + "While constructing the external wrapper for:" + ], + "start_col": 70, + "start_line": 1 + } + }, + "4200": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.getMerkleRoot" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 21, + "end_line": 2, + "input_file": { + "filename": "autogen/starknet/external/getMerkleRoot/9ec40c6ab1532b67d6b3241da7f0fc2a824d63002b85dbc8e7b345e400aebd93.cairo" + }, + "parent_location": [ + { + "end_col": 19, + "end_line": 119, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "parent_location": [ + { + "end_col": 49, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/getMerkleRoot/da17921a4e81c09e730800bbf23bfdbe5e9e6bfaedc59d80fbf62087fa43c27d.cairo" + }, + "parent_location": [ + { + "end_col": 19, + "end_line": 119, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "start_col": 6, + "start_line": 119 + }, + "While constructing the external wrapper for:" + ], + "start_col": 34, + "start_line": 1 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 6, + "start_line": 119 + }, + "While constructing the external wrapper for:" + ], + "start_col": 6, + "start_line": 2 + } + }, + "4201": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.getMerkleRoot" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 35, + "end_line": 2, + "input_file": { + "filename": "autogen/starknet/external/getMerkleRoot/9ec40c6ab1532b67d6b3241da7f0fc2a824d63002b85dbc8e7b345e400aebd93.cairo" + }, + "parent_location": [ + { + "end_col": 19, + "end_line": 119, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "parent_location": [ + { + "end_col": 62, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/getMerkleRoot/da17921a4e81c09e730800bbf23bfdbe5e9e6bfaedc59d80fbf62087fa43c27d.cairo" + }, + "parent_location": [ + { + "end_col": 19, + "end_line": 119, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "start_col": 6, + "start_line": 119 + }, + "While constructing the external wrapper for:" + ], + "start_col": 50, + "start_line": 1 + }, + "While expanding the reference 'retdata_size' in:" + ], + "start_col": 6, + "start_line": 119 + }, + "While constructing the external wrapper for:" + ], + "start_col": 23, + "start_line": 2 + } + }, + "4202": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.getMerkleRoot" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 44, + "end_line": 2, + "input_file": { + "filename": "autogen/starknet/external/getMerkleRoot/9ec40c6ab1532b67d6b3241da7f0fc2a824d63002b85dbc8e7b345e400aebd93.cairo" + }, + "parent_location": [ + { + "end_col": 19, + "end_line": 119, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "parent_location": [ + { + "end_col": 70, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/getMerkleRoot/da17921a4e81c09e730800bbf23bfdbe5e9e6bfaedc59d80fbf62087fa43c27d.cairo" + }, + "parent_location": [ + { + "end_col": 19, + "end_line": 119, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "start_col": 6, + "start_line": 119 + }, + "While constructing the external wrapper for:" + ], + "start_col": 63, + "start_line": 1 + }, + "While expanding the reference 'retdata' in:" + ], + "start_col": 6, + "start_line": 119 + }, + "While constructing the external wrapper for:" + ], + "start_col": 37, + "start_line": 2 + } + }, + "4203": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.getMerkleRoot" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 72, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/getMerkleRoot/da17921a4e81c09e730800bbf23bfdbe5e9e6bfaedc59d80fbf62087fa43c27d.cairo" + }, + "parent_location": [ + { + "end_col": 19, + "end_line": 119, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "start_col": 6, + "start_line": 119 + }, + "While constructing the external wrapper for:" + ], + "start_col": 1, + "start_line": 1 + } + }, + "4204": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.setCell" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 18, + "end_line": 130, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "start_col": 5, + "start_line": 130 + } + }, + "4206": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.setCell" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 77, + "end_line": 127, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "parent_location": [ + { + "end_col": 30, + "end_line": 55, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/uint256.cairo" + }, + "parent_location": [ + { + "end_col": 40, + "end_line": 131, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "start_col": 23, + "start_line": 131 + }, + "While trying to retrieve the implicit argument 'range_check_ptr' in:" + ], + "start_col": 15, + "start_line": 55 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 62, + "start_line": 127 + } + }, + "4207": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.setCell" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 18, + "end_line": 128, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "parent_location": [ + { + "end_col": 39, + "end_line": 131, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "start_col": 32, + "start_line": 131 + }, + "While expanding the reference 'tokenId' in:" + ], + "start_col": 5, + "start_line": 128 + } + }, + "4208": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.setCell" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 40, + "end_line": 131, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "start_col": 23, + "start_line": 131 + } + }, + "4210": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.setCell" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 32, + "end_line": 127, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "parent_location": [ + { + "end_col": 36, + "end_line": 311, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "parent_location": [ + { + "end_col": 45, + "end_line": 135, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "start_col": 21, + "start_line": 135 + }, + "While trying to retrieve the implicit argument 'syscall_ptr' in:" + ], + "start_col": 18, + "start_line": 311 + }, + "While expanding the reference 'syscall_ptr' in:" + ], + "start_col": 14, + "start_line": 127 + } + }, + "4211": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.setCell" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 60, + "end_line": 127, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "parent_location": [ + { + "end_col": 64, + "end_line": 311, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "parent_location": [ + { + "end_col": 45, + "end_line": 135, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "start_col": 21, + "start_line": 135 + }, + "While trying to retrieve the implicit argument 'pedersen_ptr' in:" + ], + "start_col": 38, + "start_line": 311 + }, + "While expanding the reference 'pedersen_ptr' in:" + ], + "start_col": 34, + "start_line": 127 + } + }, + "4212": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.setCell" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 30, + "end_line": 55, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/uint256.cairo" + }, + "parent_location": [ + { + "end_col": 40, + "end_line": 131, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "parent_location": [ + { + "end_col": 81, + "end_line": 311, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "parent_location": [ + { + "end_col": 45, + "end_line": 135, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "start_col": 21, + "start_line": 135 + }, + "While trying to retrieve the implicit argument 'range_check_ptr' in:" + ], + "start_col": 66, + "start_line": 311 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 23, + "start_line": 131 + }, + "While trying to update the implicit return value 'range_check_ptr' in:" + ], + "start_col": 15, + "start_line": 55 + } + }, + "4213": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.setCell" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 13, + "end_line": 131, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "parent_location": [ + { + "end_col": 31, + "end_line": 132, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "parent_location": [ + { + "end_col": 44, + "end_line": 135, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "start_col": 36, + "start_line": 135 + }, + "While expanding the reference 'token_id' in:" + ], + "start_col": 28, + "start_line": 132 + }, + "While expanding the reference 'low' in:" + ], + "start_col": 10, + "start_line": 131 + } + }, + "4214": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.setCell" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 19, + "end_line": 131, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "parent_location": [ + { + "end_col": 37, + "end_line": 132, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "parent_location": [ + { + "end_col": 44, + "end_line": 135, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "start_col": 36, + "start_line": 135 + }, + "While expanding the reference 'token_id' in:" + ], + "start_col": 33, + "start_line": 132 + }, + "While expanding the reference 'high' in:" + ], + "start_col": 15, + "start_line": 131 + } + }, + "4215": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.setCell" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 45, + "end_line": 135, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "start_col": 21, + "start_line": 135 + } + }, + "4217": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.setCell" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 29, + "end_line": 136, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "start_col": 9, + "start_line": 136 + } + }, + "4219": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.setCell" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 36, + "end_line": 311, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "parent_location": [ + { + "end_col": 45, + "end_line": 135, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "parent_location": [ + { + "end_col": 37, + "end_line": 109, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "parent_location": [ + { + "end_col": 48, + "end_line": 140, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "start_col": 23, + "start_line": 140 + }, + "While trying to retrieve the implicit argument 'syscall_ptr' in:" + ], + "start_col": 19, + "start_line": 109 + }, + "While expanding the reference 'syscall_ptr' in:" + ], + "start_col": 21, + "start_line": 135 + }, + "While trying to update the implicit return value 'syscall_ptr' in:" + ], + "start_col": 18, + "start_line": 311 + } + }, + "4220": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.setCell" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 64, + "end_line": 311, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "parent_location": [ + { + "end_col": 45, + "end_line": 135, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "parent_location": [ + { + "end_col": 65, + "end_line": 109, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "parent_location": [ + { + "end_col": 48, + "end_line": 140, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "start_col": 23, + "start_line": 140 + }, + "While trying to retrieve the implicit argument 'pedersen_ptr' in:" + ], + "start_col": 39, + "start_line": 109 + }, + "While expanding the reference 'pedersen_ptr' in:" + ], + "start_col": 21, + "start_line": 135 + }, + "While trying to update the implicit return value 'pedersen_ptr' in:" + ], + "start_col": 38, + "start_line": 311 + } + }, + "4221": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.setCell" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 81, + "end_line": 311, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "parent_location": [ + { + "end_col": 45, + "end_line": 135, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "parent_location": [ + { + "end_col": 82, + "end_line": 109, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "parent_location": [ + { + "end_col": 48, + "end_line": 140, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "start_col": 23, + "start_line": 140 + }, + "While trying to retrieve the implicit argument 'range_check_ptr' in:" + ], + "start_col": 67, + "start_line": 109 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 21, + "start_line": 135 + }, + "While trying to update the implicit return value 'range_check_ptr' in:" + ], + "start_col": 66, + "start_line": 311 + } + }, + "4222": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.setCell" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 13, + "end_line": 131, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "parent_location": [ + { + "end_col": 31, + "end_line": 132, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "parent_location": [ + { + "end_col": 47, + "end_line": 140, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "start_col": 39, + "start_line": 140 + }, + "While expanding the reference 'token_id' in:" + ], + "start_col": 28, + "start_line": 132 + }, + "While expanding the reference 'low' in:" + ], + "start_col": 10, + "start_line": 131 + } + }, + "4223": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.setCell" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 19, + "end_line": 131, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "parent_location": [ + { + "end_col": 37, + "end_line": 132, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "parent_location": [ + { + "end_col": 47, + "end_line": 140, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "start_col": 39, + "start_line": 140 + }, + "While expanding the reference 'token_id' in:" + ], + "start_col": 33, + "start_line": 132 + }, + "While expanding the reference 'high' in:" + ], + "start_col": 15, + "start_line": 131 + } + }, + "4224": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.setCell" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 48, + "end_line": 140, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "start_col": 23, + "start_line": 140 + } + }, + "4226": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.setCell" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 37, + "end_line": 109, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "parent_location": [ + { + "end_col": 48, + "end_line": 140, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "parent_location": [ + { + "end_col": 43, + "end_line": 200, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/starknet/common/syscalls.cairo" + }, + "parent_location": [ + { + "end_col": 44, + "end_line": 141, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "start_col": 24, + "start_line": 141 + }, + "While trying to retrieve the implicit argument 'syscall_ptr' in:" + ], + "start_col": 25, + "start_line": 200 + }, + "While expanding the reference 'syscall_ptr' in:" + ], + "start_col": 23, + "start_line": 140 + }, + "While trying to update the implicit return value 'syscall_ptr' in:" + ], + "start_col": 19, + "start_line": 109 + } + }, + "4227": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.setCell" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 44, + "end_line": 141, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "start_col": 24, + "start_line": 141 + } + }, + "4229": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.setCell" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 31, + "end_line": 142, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "start_col": 9, + "start_line": 142 + } + }, + "4230": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.setCell" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 43, + "end_line": 200, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/starknet/common/syscalls.cairo" + }, + "parent_location": [ + { + "end_col": 44, + "end_line": 141, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "parent_location": [ + { + "end_col": 37, + "end_line": 118, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" + }, + "parent_location": [ + { + "end_col": 86, + "end_line": 145, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "start_col": 5, + "start_line": 145 + }, + "While trying to retrieve the implicit argument 'syscall_ptr' in:" + ], + "start_col": 19, + "start_line": 118 + }, + "While expanding the reference 'syscall_ptr' in:" + ], + "start_col": 24, + "start_line": 141 + }, + "While trying to update the implicit return value 'syscall_ptr' in:" + ], + "start_col": 25, + "start_line": 200 + } + }, + "4231": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.setCell" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 65, + "end_line": 109, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "parent_location": [ + { + "end_col": 48, + "end_line": 140, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "parent_location": [ + { + "end_col": 65, + "end_line": 118, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" + }, + "parent_location": [ + { + "end_col": 86, + "end_line": 145, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "start_col": 5, + "start_line": 145 + }, + "While trying to retrieve the implicit argument 'pedersen_ptr' in:" + ], + "start_col": 39, + "start_line": 118 + }, + "While expanding the reference 'pedersen_ptr' in:" + ], + "start_col": 23, + "start_line": 140 + }, + "While trying to update the implicit return value 'pedersen_ptr' in:" + ], + "start_col": 39, + "start_line": 109 + } + }, + "4232": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.setCell" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 82, + "end_line": 109, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "parent_location": [ + { + "end_col": 48, + "end_line": 140, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "parent_location": [ + { + "end_col": 82, + "end_line": 118, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" + }, + "parent_location": [ + { + "end_col": 86, + "end_line": 145, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "start_col": 5, + "start_line": 145 + }, + "While trying to retrieve the implicit argument 'range_check_ptr' in:" + ], + "start_col": 67, + "start_line": 118 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 23, + "start_line": 140 + }, + "While trying to update the implicit return value 'range_check_ptr' in:" + ], + "start_col": 67, + "start_line": 109 + } + }, + "4233": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.setCell" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 18, + "end_line": 128, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "parent_location": [ + { + "end_col": 27, + "end_line": 145, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "start_col": 20, + "start_line": 145 + }, + "While expanding the reference 'tokenId' in:" + ], + "start_col": 5, + "start_line": 128 + } + }, + "4234": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.setCell" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 41, + "end_line": 128, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "parent_location": [ + { + "end_col": 44, + "end_line": 145, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "start_col": 29, + "start_line": 145 + }, + "While expanding the reference 'contractAddress' in:" + ], + "start_col": 20, + "start_line": 128 + } + }, + "4235": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.setCell" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 54, + "end_line": 128, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "parent_location": [ + { + "end_col": 51, + "end_line": 145, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "start_col": 46, + "start_line": 145 + }, + "While expanding the reference 'value' in:" + ], + "start_col": 43, + "start_line": 128 + } + }, + "4236": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.setCell" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 79, + "end_line": 128, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "parent_location": [ + { + "end_col": 70, + "end_line": 145, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "start_col": 53, + "start_line": 145 + }, + "While expanding the reference 'cell_calldata_len' in:" + ], + "start_col": 56, + "start_line": 128 + } + }, + "4237": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.setCell" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 101, + "end_line": 128, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "parent_location": [ + { + "end_col": 85, + "end_line": 145, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "start_col": 72, + "start_line": 145 + }, + "While expanding the reference 'cell_calldata' in:" + ], + "start_col": 81, + "start_line": 128 + } + }, + "4238": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.setCell" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 86, + "end_line": 145, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "start_col": 5, + "start_line": 145 + } + }, + "4240": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.setCell" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 15, + "end_line": 146, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "start_col": 5, + "start_line": 146 + } + }, + "4241": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.setCell" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 67, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/setCell/741ea357d6336b0bed7bf0472425acd0311d543883b803388880e60a232040c7.cairo" + }, + "parent_location": [ + { + "end_col": 77, + "end_line": 127, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "parent_location": [ + { + "end_col": 24, + "end_line": 2, + "input_file": { + "filename": "autogen/starknet/arg_processor/cf9d155a82359872fd6c3831de72477dc112f8fe156e1c50035a0d8fc012189b.cairo" + }, + "parent_location": [ + { + "end_col": 101, + "end_line": 128, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "start_col": 81, + "start_line": 128 + }, + "While handling calldata argument 'cell_calldata'" + ], + "start_col": 9, + "start_line": 2 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 62, + "start_line": 127 + }, + "While constructing the external wrapper for:" + ], + "start_col": 23, + "start_line": 1 + } + }, + "4242": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.setCell" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 56, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/arg_processor/b19b7bf952f10d75c6d6d48c16be4d0aa794947e7c7409b4e5d1fff596b961ac.cairo" + }, + "parent_location": [ + { + "end_col": 79, + "end_line": 128, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "parent_location": [ + { + "end_col": 60, + "end_line": 2, + "input_file": { + "filename": "autogen/starknet/arg_processor/cf9d155a82359872fd6c3831de72477dc112f8fe156e1c50035a0d8fc012189b.cairo" + }, + "parent_location": [ + { + "end_col": 101, + "end_line": 128, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "start_col": 81, + "start_line": 128 + }, + "While handling calldata argument 'cell_calldata'" + ], + "start_col": 28, + "start_line": 2 + }, + "While expanding the reference '__calldata_arg_cell_calldata_len' in:" + ], + "start_col": 56, + "start_line": 128 + }, + "While handling calldata argument 'cell_calldata_len'" + ], + "start_col": 40, + "start_line": 1 + } + }, + "4243": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.setCell" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 61, + "end_line": 2, + "input_file": { + "filename": "autogen/starknet/arg_processor/cf9d155a82359872fd6c3831de72477dc112f8fe156e1c50035a0d8fc012189b.cairo" + }, + "parent_location": [ + { + "end_col": 101, + "end_line": 128, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "start_col": 81, + "start_line": 128 + }, + "While handling calldata argument 'cell_calldata'" + ], + "start_col": 1, + "start_line": 2 + } + }, + "4244": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.setCell" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 40, + "end_line": 2, + "input_file": { + "filename": "autogen/starknet/arg_processor/b19b7bf952f10d75c6d6d48c16be4d0aa794947e7c7409b4e5d1fff596b961ac.cairo" + }, + "parent_location": [ + { + "end_col": 79, + "end_line": 128, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "parent_location": [ + { + "end_col": 40, + "end_line": 8, + "input_file": { + "filename": "autogen/starknet/arg_processor/cf9d155a82359872fd6c3831de72477dc112f8fe156e1c50035a0d8fc012189b.cairo" + }, + "parent_location": [ + { + "end_col": 101, + "end_line": 128, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "start_col": 81, + "start_line": 128 + }, + "While handling calldata argument 'cell_calldata'" + ], + "start_col": 26, + "start_line": 8 + }, + "While expanding the reference '__calldata_ptr' in:" + ], + "start_col": 56, + "start_line": 128 + }, + "While handling calldata argument 'cell_calldata_len'" + ], + "start_col": 22, + "start_line": 2 + } + }, + "4246": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.setCell" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 56, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/arg_processor/b19b7bf952f10d75c6d6d48c16be4d0aa794947e7c7409b4e5d1fff596b961ac.cairo" + }, + "parent_location": [ + { + "end_col": 79, + "end_line": 128, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "parent_location": [ + { + "end_col": 75, + "end_line": 8, + "input_file": { + "filename": "autogen/starknet/arg_processor/cf9d155a82359872fd6c3831de72477dc112f8fe156e1c50035a0d8fc012189b.cairo" + }, + "parent_location": [ + { + "end_col": 101, + "end_line": 128, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "start_col": 81, + "start_line": 128 + }, + "While handling calldata argument 'cell_calldata'" + ], + "start_col": 43, + "start_line": 8 + }, + "While expanding the reference '__calldata_arg_cell_calldata_len' in:" + ], + "start_col": 56, + "start_line": 128 + }, + "While handling calldata argument 'cell_calldata_len'" + ], + "start_col": 40, + "start_line": 1 + } + }, + "4247": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.setCell" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 79, + "end_line": 8, + "input_file": { + "filename": "autogen/starknet/arg_processor/cf9d155a82359872fd6c3831de72477dc112f8fe156e1c50035a0d8fc012189b.cairo" + }, + "parent_location": [ + { + "end_col": 101, + "end_line": 128, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "start_col": 81, + "start_line": 128 + }, + "While handling calldata argument 'cell_calldata'" + ], + "start_col": 26, + "start_line": 8 + } + }, + "4248": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.setCell" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 58, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/arg_processor/01cba52f8515996bb9d7070bde81ff39281d096d7024a558efcba6e1fd2402cf.cairo" + }, + "parent_location": [ + { + "end_col": 13, + "end_line": 127, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "start_col": 6, + "start_line": 127 + }, + "While handling calldata of" + ], + "start_col": 1, + "start_line": 1 + } + }, + "4249": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.setCell" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 67, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/setCell/741ea357d6336b0bed7bf0472425acd0311d543883b803388880e60a232040c7.cairo" + }, + "parent_location": [ + { + "end_col": 77, + "end_line": 127, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "parent_location": [ + { + "end_col": 38, + "end_line": 3, + "input_file": { + "filename": "autogen/starknet/arg_processor/cf9d155a82359872fd6c3831de72477dc112f8fe156e1c50035a0d8fc012189b.cairo" + }, + "parent_location": [ + { + "end_col": 101, + "end_line": 128, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "parent_location": [ + { + "end_col": 115, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/setCell/4283afad5f046e779f9086ab343c3867291282e0a5a6a5743aa6762671e022a9.cairo" + }, + "parent_location": [ + { + "end_col": 13, + "end_line": 127, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "start_col": 6, + "start_line": 127 + }, + "While constructing the external wrapper for:" + ], + "start_col": 100, + "start_line": 1 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 81, + "start_line": 128 + }, + "While handling calldata argument 'cell_calldata'" + ], + "start_col": 23, + "start_line": 3 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 62, + "start_line": 127 + }, + "While constructing the external wrapper for:" + ], + "start_col": 23, + "start_line": 1 + } + }, + "4250": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.setCell" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 64, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/setCell/b2c52ca2d2a8fc8791a983086d8716c5eacd0c3d62934914d2286f84b98ff4cb.cairo" + }, + "parent_location": [ + { + "end_col": 32, + "end_line": 127, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "parent_location": [ + { + "end_col": 55, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/setCell/4283afad5f046e779f9086ab343c3867291282e0a5a6a5743aa6762671e022a9.cairo" + }, + "parent_location": [ + { + "end_col": 13, + "end_line": 127, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "start_col": 6, + "start_line": 127 + }, + "While constructing the external wrapper for:" + ], + "start_col": 44, + "start_line": 1 + }, + "While expanding the reference 'syscall_ptr' in:" + ], + "start_col": 14, + "start_line": 127 + }, + "While constructing the external wrapper for:" + ], + "start_col": 19, + "start_line": 1 + } + }, + "4251": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.setCell" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 110, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/setCell/9684a85e93c782014ca14293edea4eb2502039a5a7b6538ecd39c56faaf12529.cairo" + }, + "parent_location": [ + { + "end_col": 60, + "end_line": 127, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "parent_location": [ + { + "end_col": 82, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/setCell/4283afad5f046e779f9086ab343c3867291282e0a5a6a5743aa6762671e022a9.cairo" + }, + "parent_location": [ + { + "end_col": 13, + "end_line": 127, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "start_col": 6, + "start_line": 127 + }, + "While constructing the external wrapper for:" + ], + "start_col": 70, + "start_line": 1 + }, + "While expanding the reference 'pedersen_ptr' in:" + ], + "start_col": 34, + "start_line": 127 + }, + "While constructing the external wrapper for:" + ], + "start_col": 20, + "start_line": 1 + } + }, + "4252": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.setCell" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 42, + "end_line": 3, + "input_file": { + "filename": "autogen/starknet/arg_processor/cf9d155a82359872fd6c3831de72477dc112f8fe156e1c50035a0d8fc012189b.cairo" + }, + "parent_location": [ + { + "end_col": 101, + "end_line": 128, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "parent_location": [ + { + "end_col": 115, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/setCell/4283afad5f046e779f9086ab343c3867291282e0a5a6a5743aa6762671e022a9.cairo" + }, + "parent_location": [ + { + "end_col": 13, + "end_line": 127, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "start_col": 6, + "start_line": 127 + }, + "While constructing the external wrapper for:" + ], + "start_col": 100, + "start_line": 1 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 81, + "start_line": 128 + }, + "While handling calldata argument 'cell_calldata'" + ], + "start_col": 23, + "start_line": 3 + } + }, + "4254": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.setCell" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 46, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/arg_processor/128c2321f9070588a8d11dc60a4b2c6a3b0b1a97919597936f0847381384bd91.cairo" + }, + "parent_location": [ + { + "end_col": 18, + "end_line": 128, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "parent_location": [ + { + "end_col": 147, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/setCell/4283afad5f046e779f9086ab343c3867291282e0a5a6a5743aa6762671e022a9.cairo" + }, + "parent_location": [ + { + "end_col": 13, + "end_line": 127, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "start_col": 6, + "start_line": 127 + }, + "While constructing the external wrapper for:" + ], + "start_col": 125, + "start_line": 1 + }, + "While expanding the reference '__calldata_arg_tokenId' in:" + ], + "start_col": 5, + "start_line": 128 + }, + "While handling calldata argument 'tokenId'" + ], + "start_col": 30, + "start_line": 1 + } + }, + "4255": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.setCell" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 54, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/arg_processor/138fbb2581468edec2beca8ce38fccac384aeb4b51fe6af3126d17a00f09f61e.cairo" + }, + "parent_location": [ + { + "end_col": 41, + "end_line": 128, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "parent_location": [ + { + "end_col": 195, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/setCell/4283afad5f046e779f9086ab343c3867291282e0a5a6a5743aa6762671e022a9.cairo" + }, + "parent_location": [ + { + "end_col": 13, + "end_line": 127, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "start_col": 6, + "start_line": 127 + }, + "While constructing the external wrapper for:" + ], + "start_col": 165, + "start_line": 1 + }, + "While expanding the reference '__calldata_arg_contractAddress' in:" + ], + "start_col": 20, + "start_line": 128 + }, + "While handling calldata argument 'contractAddress'" + ], + "start_col": 38, + "start_line": 1 + } + }, + "4256": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.setCell" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 44, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/arg_processor/3e93b8906c329e7a5c33e020ce7a5a9c542c4444955be98eec5fcbef545a8662.cairo" + }, + "parent_location": [ + { + "end_col": 54, + "end_line": 128, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "parent_location": [ + { + "end_col": 223, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/setCell/4283afad5f046e779f9086ab343c3867291282e0a5a6a5743aa6762671e022a9.cairo" + }, + "parent_location": [ + { + "end_col": 13, + "end_line": 127, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "start_col": 6, + "start_line": 127 + }, + "While constructing the external wrapper for:" + ], + "start_col": 203, + "start_line": 1 + }, + "While expanding the reference '__calldata_arg_value' in:" + ], + "start_col": 43, + "start_line": 128 + }, + "While handling calldata argument 'value'" + ], + "start_col": 28, + "start_line": 1 + } + }, + "4257": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.setCell" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 56, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/arg_processor/b19b7bf952f10d75c6d6d48c16be4d0aa794947e7c7409b4e5d1fff596b961ac.cairo" + }, + "parent_location": [ + { + "end_col": 79, + "end_line": 128, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "parent_location": [ + { + "end_col": 275, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/setCell/4283afad5f046e779f9086ab343c3867291282e0a5a6a5743aa6762671e022a9.cairo" + }, + "parent_location": [ + { + "end_col": 13, + "end_line": 127, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "start_col": 6, + "start_line": 127 + }, + "While constructing the external wrapper for:" + ], + "start_col": 243, + "start_line": 1 + }, + "While expanding the reference '__calldata_arg_cell_calldata_len' in:" + ], + "start_col": 56, + "start_line": 128 + }, + "While handling calldata argument 'cell_calldata_len'" + ], + "start_col": 40, + "start_line": 1 + } + }, + "4258": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.setCell" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 63, + "end_line": 5, + "input_file": { + "filename": "autogen/starknet/arg_processor/cf9d155a82359872fd6c3831de72477dc112f8fe156e1c50035a0d8fc012189b.cairo" + }, + "parent_location": [ + { + "end_col": 101, + "end_line": 128, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "parent_location": [ + { + "end_col": 319, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/setCell/4283afad5f046e779f9086ab343c3867291282e0a5a6a5743aa6762671e022a9.cairo" + }, + "parent_location": [ + { + "end_col": 13, + "end_line": 127, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "start_col": 6, + "start_line": 127 + }, + "While constructing the external wrapper for:" + ], + "start_col": 291, + "start_line": 1 + }, + "While expanding the reference '__calldata_arg_cell_calldata' in:" + ], + "start_col": 81, + "start_line": 128 + }, + "While handling calldata argument 'cell_calldata'" + ], + "start_col": 36, + "start_line": 5 + } + }, + "4260": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.setCell" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 13, + "end_line": 127, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "start_col": 6, + "start_line": 127 + } + }, + "4262": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.setCell" + ], + "flow_tracking_data": null, + "hints": [ + { + "location": { + "end_col": 34, + "end_line": 2, + "input_file": { + "filename": "autogen/starknet/external/setCell/4283afad5f046e779f9086ab343c3867291282e0a5a6a5743aa6762671e022a9.cairo" + }, + "parent_location": [ + { + "end_col": 13, + "end_line": 127, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "start_col": 6, + "start_line": 127 + }, + "While constructing the external wrapper for:" + ], + "start_col": 1, + "start_line": 2 + }, + "n_prefix_newlines": 0 + } + ], + "inst": { + "end_col": 24, + "end_line": 3, + "input_file": { + "filename": "autogen/starknet/external/setCell/4283afad5f046e779f9086ab343c3867291282e0a5a6a5743aa6762671e022a9.cairo" + }, + "parent_location": [ + { + "end_col": 13, + "end_line": 127, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "start_col": 6, + "start_line": 127 + }, + "While constructing the external wrapper for:" + ], + "start_col": 1, + "start_line": 3 + } + }, + "4264": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.setCell" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 55, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/setCell/4283afad5f046e779f9086ab343c3867291282e0a5a6a5743aa6762671e022a9.cairo" + }, + "parent_location": [ + { + "end_col": 13, + "end_line": 127, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "parent_location": [ + { + "end_col": 20, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/setCell/da17921a4e81c09e730800bbf23bfdbe5e9e6bfaedc59d80fbf62087fa43c27d.cairo" + }, + "parent_location": [ + { + "end_col": 13, + "end_line": 127, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "start_col": 6, + "start_line": 127 + }, + "While constructing the external wrapper for:" + ], + "start_col": 9, + "start_line": 1 + }, + "While expanding the reference 'syscall_ptr' in:" + ], + "start_col": 6, + "start_line": 127 + }, + "While constructing the external wrapper for:" + ], + "start_col": 44, + "start_line": 1 + } + }, + "4265": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.setCell" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 82, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/setCell/4283afad5f046e779f9086ab343c3867291282e0a5a6a5743aa6762671e022a9.cairo" + }, + "parent_location": [ + { + "end_col": 13, + "end_line": 127, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "parent_location": [ + { + "end_col": 33, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/setCell/da17921a4e81c09e730800bbf23bfdbe5e9e6bfaedc59d80fbf62087fa43c27d.cairo" + }, + "parent_location": [ + { + "end_col": 13, + "end_line": 127, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "start_col": 6, + "start_line": 127 + }, + "While constructing the external wrapper for:" + ], + "start_col": 21, + "start_line": 1 + }, + "While expanding the reference 'pedersen_ptr' in:" + ], + "start_col": 6, + "start_line": 127 + }, + "While constructing the external wrapper for:" + ], + "start_col": 70, + "start_line": 1 + } + }, + "4266": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.setCell" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 115, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/setCell/4283afad5f046e779f9086ab343c3867291282e0a5a6a5743aa6762671e022a9.cairo" + }, + "parent_location": [ + { + "end_col": 13, + "end_line": 127, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "parent_location": [ + { + "end_col": 49, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/setCell/da17921a4e81c09e730800bbf23bfdbe5e9e6bfaedc59d80fbf62087fa43c27d.cairo" + }, + "parent_location": [ + { + "end_col": 13, + "end_line": 127, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "start_col": 6, + "start_line": 127 + }, + "While constructing the external wrapper for:" + ], + "start_col": 34, + "start_line": 1 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 6, + "start_line": 127 + }, + "While constructing the external wrapper for:" + ], + "start_col": 100, + "start_line": 1 + } + }, + "4267": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.setCell" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 21, + "end_line": 4, + "input_file": { + "filename": "autogen/starknet/external/setCell/4283afad5f046e779f9086ab343c3867291282e0a5a6a5743aa6762671e022a9.cairo" + }, + "parent_location": [ + { + "end_col": 13, + "end_line": 127, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "parent_location": [ + { + "end_col": 62, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/setCell/da17921a4e81c09e730800bbf23bfdbe5e9e6bfaedc59d80fbf62087fa43c27d.cairo" + }, + "parent_location": [ + { + "end_col": 13, + "end_line": 127, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "start_col": 6, + "start_line": 127 + }, + "While constructing the external wrapper for:" + ], + "start_col": 50, + "start_line": 1 + }, + "While expanding the reference 'retdata_size' in:" + ], + "start_col": 6, + "start_line": 127 + }, + "While constructing the external wrapper for:" + ], + "start_col": 20, + "start_line": 4 + } + }, + "4269": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.setCell" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 16, + "end_line": 3, + "input_file": { + "filename": "autogen/starknet/external/setCell/4283afad5f046e779f9086ab343c3867291282e0a5a6a5743aa6762671e022a9.cairo" + }, + "parent_location": [ + { + "end_col": 13, + "end_line": 127, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "parent_location": [ + { + "end_col": 70, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/setCell/da17921a4e81c09e730800bbf23bfdbe5e9e6bfaedc59d80fbf62087fa43c27d.cairo" + }, + "parent_location": [ + { + "end_col": 13, + "end_line": 127, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "start_col": 6, + "start_line": 127 + }, + "While constructing the external wrapper for:" + ], + "start_col": 63, + "start_line": 1 + }, + "While expanding the reference 'retdata' in:" + ], + "start_col": 6, + "start_line": 127 + }, + "While constructing the external wrapper for:" + ], + "start_col": 9, + "start_line": 3 + } + }, + "4270": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.setCell" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 72, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/setCell/da17921a4e81c09e730800bbf23bfdbe5e9e6bfaedc59d80fbf62087fa43c27d.cairo" + }, + "parent_location": [ + { + "end_col": 13, + "end_line": 127, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "start_col": 6, + "start_line": 127 + }, + "While constructing the external wrapper for:" + ], + "start_col": 1, + "start_line": 1 + } + }, + "4271": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.getCell" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 32, + "end_line": 150, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "parent_location": [ + { + "end_col": 37, + "end_line": 140, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" + }, + "parent_location": [ + { + "end_col": 38, + "end_line": 153, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "start_col": 15, + "start_line": 153 + }, + "While trying to retrieve the implicit argument 'syscall_ptr' in:" + ], + "start_col": 19, + "start_line": 140 + }, + "While expanding the reference 'syscall_ptr' in:" + ], + "start_col": 14, + "start_line": 150 + } + }, + "4272": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.getCell" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 60, + "end_line": 150, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "parent_location": [ + { + "end_col": 65, + "end_line": 140, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" + }, + "parent_location": [ + { + "end_col": 38, + "end_line": 153, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "start_col": 15, + "start_line": 153 + }, + "While trying to retrieve the implicit argument 'pedersen_ptr' in:" + ], + "start_col": 39, + "start_line": 140 + }, + "While expanding the reference 'pedersen_ptr' in:" + ], + "start_col": 34, + "start_line": 150 + } + }, + "4273": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.getCell" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 77, + "end_line": 150, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "parent_location": [ + { + "end_col": 82, + "end_line": 140, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" + }, + "parent_location": [ + { + "end_col": 38, + "end_line": 153, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "start_col": 15, + "start_line": 153 + }, + "While trying to retrieve the implicit argument 'range_check_ptr' in:" + ], + "start_col": 67, + "start_line": 140 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 62, + "start_line": 150 + } + }, + "4274": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.getCell" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 92, + "end_line": 150, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "parent_location": [ + { + "end_col": 37, + "end_line": 153, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "start_col": 30, + "start_line": 153 + }, + "While expanding the reference 'tokenId' in:" + ], + "start_col": 79, + "start_line": 150 + } + }, + "4275": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.getCell" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 38, + "end_line": 153, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "start_col": 15, + "start_line": 153 + } + }, + "4277": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.getCell" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 78, + "end_line": 154, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "start_col": 5, + "start_line": 154 + } + }, + "4278": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.getCell_encode_return" + ], + "flow_tracking_data": null, + "hints": [ + { + "location": { + "end_col": 38, + "end_line": 3, + "input_file": { + "filename": "autogen/starknet/external/return/getCell/45b3c8aa5973e07cb910131aed3aef1456e8199a31086ed15bad4bcb607a4d71.cairo" + }, + "parent_location": [ + { + "end_col": 13, + "end_line": 150, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "start_col": 6, + "start_line": 150 + }, + "While handling return value of" + ], + "start_col": 5, + "start_line": 3 + }, + "n_prefix_newlines": 0 + } + ], + "inst": { + "end_col": 18, + "end_line": 4, + "input_file": { + "filename": "autogen/starknet/external/return/getCell/45b3c8aa5973e07cb910131aed3aef1456e8199a31086ed15bad4bcb607a4d71.cairo" + }, + "parent_location": [ + { + "end_col": 13, + "end_line": 150, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "start_col": 6, + "start_line": 150 + }, + "While handling return value of" + ], + "start_col": 5, + "start_line": 4 + } + }, + "4280": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.getCell_encode_return" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 57, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/arg_processor/33df6e1bcfab0c2b721012401630ed459af24510751c21dc2cea42d959db9ca9.cairo" + }, + "parent_location": [ + { + "end_col": 26, + "end_line": 151, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "start_col": 5, + "start_line": 151 + }, + "While handling return value 'contractAddress'" + ], + "start_col": 1, + "start_line": 1 + } + }, + "4281": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.getCell_encode_return" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 47, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/arg_processor/361efcca75a31f4c299c46d8d625210e368f481380cc3fa32a6d87e5dbe7e45c.cairo" + }, + "parent_location": [ + { + "end_col": 39, + "end_line": 151, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "start_col": 28, + "start_line": 151 + }, + "While handling return value 'value'" + ], + "start_col": 1, + "start_line": 1 + } + }, + "4282": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.getCell_encode_return" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 59, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/arg_processor/f204bba64347870893c4affbf57c4cff6fc02af3b0ac400d4d3ba5c273c8059c.cairo" + }, + "parent_location": [ + { + "end_col": 64, + "end_line": 151, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "start_col": 41, + "start_line": 151 + }, + "While handling return value 'cell_calldata_len'" + ], + "start_col": 1, + "start_line": 1 + } + }, + "4283": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.getCell_encode_return" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 56, + "end_line": 2, + "input_file": { + "filename": "autogen/starknet/arg_processor/36bb2f0e50d9623bedb46d800f874e3225ca779427bfe225ce6bc8586f2087bd.cairo" + }, + "parent_location": [ + { + "end_col": 86, + "end_line": 151, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "start_col": 66, + "start_line": 151 + }, + "While handling return value 'cell_calldata'" + ], + "start_col": 1, + "start_line": 2 + } + }, + "4284": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.getCell_encode_return" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 45, + "end_line": 5, + "input_file": { + "filename": "autogen/starknet/arg_processor/36bb2f0e50d9623bedb46d800f874e3225ca779427bfe225ce6bc8586f2087bd.cairo" + }, + "parent_location": [ + { + "end_col": 86, + "end_line": 151, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "start_col": 66, + "start_line": 151 + }, + "While handling return value 'cell_calldata'" + ], + "start_col": 1, + "start_line": 5 + } + }, + "4286": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.getCell_encode_return" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 48, + "end_line": 2, + "input_file": { + "filename": "autogen/starknet/arg_processor/f204bba64347870893c4affbf57c4cff6fc02af3b0ac400d4d3ba5c273c8059c.cairo" + }, + "parent_location": [ + { + "end_col": 64, + "end_line": 151, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "parent_location": [ + { + "end_col": 53, + "end_line": 10, + "input_file": { + "filename": "autogen/starknet/arg_processor/36bb2f0e50d9623bedb46d800f874e3225ca779427bfe225ce6bc8586f2087bd.cairo" + }, + "parent_location": [ + { + "end_col": 86, + "end_line": 151, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "start_col": 66, + "start_line": 151 + }, + "While handling return value 'cell_calldata'" + ], + "start_col": 35, + "start_line": 10 + }, + "While expanding the reference '__return_value_ptr' in:" + ], + "start_col": 41, + "start_line": 151 + }, + "While handling return value 'cell_calldata_len'" + ], + "start_col": 26, + "start_line": 2 + } + }, + "4288": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.getCell_encode_return" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 88, + "end_line": 10, + "input_file": { + "filename": "autogen/starknet/arg_processor/36bb2f0e50d9623bedb46d800f874e3225ca779427bfe225ce6bc8586f2087bd.cairo" + }, + "parent_location": [ + { + "end_col": 86, + "end_line": 151, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "start_col": 66, + "start_line": 151 + }, + "While handling return value 'cell_calldata'" + ], + "start_col": 1, + "start_line": 10 + } + }, + "4289": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.getCell_encode_return" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 48, + "end_line": 2, + "input_file": { + "filename": "autogen/starknet/arg_processor/f204bba64347870893c4affbf57c4cff6fc02af3b0ac400d4d3ba5c273c8059c.cairo" + }, + "parent_location": [ + { + "end_col": 64, + "end_line": 151, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "parent_location": [ + { + "end_col": 49, + "end_line": 7, + "input_file": { + "filename": "autogen/starknet/arg_processor/36bb2f0e50d9623bedb46d800f874e3225ca779427bfe225ce6bc8586f2087bd.cairo" + }, + "parent_location": [ + { + "end_col": 86, + "end_line": 151, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "parent_location": [ + { + "end_col": 32, + "end_line": 12, + "input_file": { + "filename": "autogen/starknet/arg_processor/36bb2f0e50d9623bedb46d800f874e3225ca779427bfe225ce6bc8586f2087bd.cairo" + }, + "parent_location": [ + { + "end_col": 86, + "end_line": 151, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "start_col": 66, + "start_line": 151 + }, + "While handling return value 'cell_calldata'" + ], + "start_col": 9, + "start_line": 12 + }, + "While expanding the reference '__return_value_ptr_copy' in:" + ], + "start_col": 66, + "start_line": 151 + }, + "While handling return value 'cell_calldata'" + ], + "start_col": 31, + "start_line": 7 + }, + "While expanding the reference '__return_value_ptr' in:" + ], + "start_col": 41, + "start_line": 151 + }, + "While handling return value 'cell_calldata_len'" + ], + "start_col": 26, + "start_line": 2 + } + }, + "4291": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.getCell_encode_return" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 32, + "end_line": 13, + "input_file": { + "filename": "autogen/starknet/arg_processor/36bb2f0e50d9623bedb46d800f874e3225ca779427bfe225ce6bc8586f2087bd.cairo" + }, + "parent_location": [ + { + "end_col": 86, + "end_line": 151, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "start_col": 66, + "start_line": 151 + }, + "While handling return value 'cell_calldata'" + ], + "start_col": 9, + "start_line": 13 + } + }, + "4292": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.getCell_encode_return" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 36, + "end_line": 14, + "input_file": { + "filename": "autogen/starknet/arg_processor/36bb2f0e50d9623bedb46d800f874e3225ca779427bfe225ce6bc8586f2087bd.cairo" + }, + "parent_location": [ + { + "end_col": 86, + "end_line": 151, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "start_col": 66, + "start_line": 151 + }, + "While handling return value 'cell_calldata'" + ], + "start_col": 9, + "start_line": 14 + } + }, + "4293": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.getCell_encode_return" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 41, + "end_line": 14, + "input_file": { + "filename": "autogen/starknet/arg_processor/36bb2f0e50d9623bedb46d800f874e3225ca779427bfe225ce6bc8586f2087bd.cairo" + }, + "parent_location": [ + { + "end_col": 86, + "end_line": 151, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "start_col": 66, + "start_line": 151 + }, + "While handling return value 'cell_calldata'" + ], + "start_col": 1, + "start_line": 11 + } + }, + "4295": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.getCell_encode_return" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 22, + "end_line": 5, + "input_file": { + "filename": "autogen/starknet/arg_processor/36bb2f0e50d9623bedb46d800f874e3225ca779427bfe225ce6bc8586f2087bd.cairo" + }, + "parent_location": [ + { + "end_col": 86, + "end_line": 151, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "parent_location": [ + { + "end_col": 40, + "end_line": 10, + "input_file": { + "filename": "autogen/starknet/external/return/getCell/45b3c8aa5973e07cb910131aed3aef1456e8199a31086ed15bad4bcb607a4d71.cairo" + }, + "parent_location": [ + { + "end_col": 13, + "end_line": 150, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "start_col": 6, + "start_line": 150 + }, + "While handling return value of" + ], + "start_col": 25, + "start_line": 10 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 66, + "start_line": 151 + }, + "While handling return value 'cell_calldata'" + ], + "start_col": 7, + "start_line": 5 + } + }, + "4296": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.getCell_encode_return" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 63, + "end_line": 11, + "input_file": { + "filename": "autogen/starknet/external/return/getCell/45b3c8aa5973e07cb910131aed3aef1456e8199a31086ed15bad4bcb607a4d71.cairo" + }, + "parent_location": [ + { + "end_col": 13, + "end_line": 150, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "start_col": 6, + "start_line": 150 + }, + "While handling return value of" + ], + "start_col": 18, + "start_line": 11 + } + }, + "4297": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.getCell_encode_return" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 35, + "end_line": 5, + "input_file": { + "filename": "autogen/starknet/external/return/getCell/45b3c8aa5973e07cb910131aed3aef1456e8199a31086ed15bad4bcb607a4d71.cairo" + }, + "parent_location": [ + { + "end_col": 13, + "end_line": 150, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "parent_location": [ + { + "end_col": 38, + "end_line": 12, + "input_file": { + "filename": "autogen/starknet/external/return/getCell/45b3c8aa5973e07cb910131aed3aef1456e8199a31086ed15bad4bcb607a4d71.cairo" + }, + "parent_location": [ + { + "end_col": 13, + "end_line": 150, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "start_col": 6, + "start_line": 150 + }, + "While handling return value of" + ], + "start_col": 14, + "start_line": 12 + }, + "While expanding the reference '__return_value_ptr_start' in:" + ], + "start_col": 6, + "start_line": 150 + }, + "While handling return value of" + ], + "start_col": 11, + "start_line": 5 + } + }, + "4298": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.getCell_encode_return" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 40, + "end_line": 12, + "input_file": { + "filename": "autogen/starknet/external/return/getCell/45b3c8aa5973e07cb910131aed3aef1456e8199a31086ed15bad4bcb607a4d71.cairo" + }, + "parent_location": [ + { + "end_col": 13, + "end_line": 150, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "start_col": 6, + "start_line": 150 + }, + "While handling return value of" + ], + "start_col": 5, + "start_line": 9 + } + }, + "4299": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.getCell" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 18, + "end_line": 2, + "input_file": { + "filename": "autogen/starknet/external/getCell/fc5657cf51bd050c7a3c8729ca7f6e7cfabf2530b3ff0492dd4d28b5d2976ebb.cairo" + }, + "parent_location": [ + { + "end_col": 13, + "end_line": 150, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "start_col": 6, + "start_line": 150 + }, + "While constructing the external wrapper for:" + ], + "start_col": 5, + "start_line": 2 + } + }, + "4301": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.getCell" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 40, + "end_line": 2, + "input_file": { + "filename": "autogen/starknet/arg_processor/128c2321f9070588a8d11dc60a4b2c6a3b0b1a97919597936f0847381384bd91.cairo" + }, + "parent_location": [ + { + "end_col": 92, + "end_line": 150, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "parent_location": [ + { + "end_col": 45, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/arg_processor/c31620b02d4d706f0542c989b2aadc01b0981d1f6a5933a8fe4937ace3d70d92.cairo" + }, + "parent_location": [ + { + "end_col": 13, + "end_line": 150, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "parent_location": [ + { + "end_col": 57, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/arg_processor/01cba52f8515996bb9d7070bde81ff39281d096d7024a558efcba6e1fd2402cf.cairo" + }, + "parent_location": [ + { + "end_col": 13, + "end_line": 150, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "start_col": 6, + "start_line": 150 + }, + "While handling calldata of" + ], + "start_col": 35, + "start_line": 1 + }, + "While expanding the reference '__calldata_actual_size' in:" + ], + "start_col": 6, + "start_line": 150 + }, + "While handling calldata of" + ], + "start_col": 31, + "start_line": 1 + }, + "While expanding the reference '__calldata_ptr' in:" + ], + "start_col": 79, + "start_line": 150 + }, + "While handling calldata argument 'tokenId'" + ], + "start_col": 22, + "start_line": 2 + } + }, + "4303": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.getCell" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 58, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/arg_processor/01cba52f8515996bb9d7070bde81ff39281d096d7024a558efcba6e1fd2402cf.cairo" + }, + "parent_location": [ + { + "end_col": 13, + "end_line": 150, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "start_col": 6, + "start_line": 150 + }, + "While handling calldata of" + ], + "start_col": 1, + "start_line": 1 + } + }, + "4304": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.getCell" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 64, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/getCell/b2c52ca2d2a8fc8791a983086d8716c5eacd0c3d62934914d2286f84b98ff4cb.cairo" + }, + "parent_location": [ + { + "end_col": 32, + "end_line": 150, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "parent_location": [ + { + "end_col": 55, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/getCell/b9f082c9f793d6f80f66b8a110e326ab27269a523c2aa107129eed9fa07085f2.cairo" + }, + "parent_location": [ + { + "end_col": 13, + "end_line": 150, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "start_col": 6, + "start_line": 150 + }, + "While constructing the external wrapper for:" + ], + "start_col": 44, + "start_line": 1 + }, + "While expanding the reference 'syscall_ptr' in:" + ], + "start_col": 14, + "start_line": 150 + }, + "While constructing the external wrapper for:" + ], + "start_col": 19, + "start_line": 1 + } + }, + "4305": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.getCell" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 110, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/getCell/9684a85e93c782014ca14293edea4eb2502039a5a7b6538ecd39c56faaf12529.cairo" + }, + "parent_location": [ + { + "end_col": 60, + "end_line": 150, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "parent_location": [ + { + "end_col": 82, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/getCell/b9f082c9f793d6f80f66b8a110e326ab27269a523c2aa107129eed9fa07085f2.cairo" + }, + "parent_location": [ + { + "end_col": 13, + "end_line": 150, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "start_col": 6, + "start_line": 150 + }, + "While constructing the external wrapper for:" + ], + "start_col": 70, + "start_line": 1 + }, + "While expanding the reference 'pedersen_ptr' in:" + ], + "start_col": 34, + "start_line": 150 + }, + "While constructing the external wrapper for:" + ], + "start_col": 20, + "start_line": 1 + } + }, + "4306": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.getCell" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 67, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/getCell/741ea357d6336b0bed7bf0472425acd0311d543883b803388880e60a232040c7.cairo" + }, + "parent_location": [ + { + "end_col": 77, + "end_line": 150, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "parent_location": [ + { + "end_col": 115, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/getCell/b9f082c9f793d6f80f66b8a110e326ab27269a523c2aa107129eed9fa07085f2.cairo" + }, + "parent_location": [ + { + "end_col": 13, + "end_line": 150, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "start_col": 6, + "start_line": 150 + }, + "While constructing the external wrapper for:" + ], + "start_col": 100, + "start_line": 1 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 62, + "start_line": 150 + }, + "While constructing the external wrapper for:" + ], + "start_col": 23, + "start_line": 1 + } + }, + "4307": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.getCell" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 46, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/arg_processor/128c2321f9070588a8d11dc60a4b2c6a3b0b1a97919597936f0847381384bd91.cairo" + }, + "parent_location": [ + { + "end_col": 92, + "end_line": 150, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "parent_location": [ + { + "end_col": 147, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/getCell/b9f082c9f793d6f80f66b8a110e326ab27269a523c2aa107129eed9fa07085f2.cairo" + }, + "parent_location": [ + { + "end_col": 13, + "end_line": 150, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "start_col": 6, + "start_line": 150 + }, + "While constructing the external wrapper for:" + ], + "start_col": 125, + "start_line": 1 + }, + "While expanding the reference '__calldata_arg_tokenId' in:" + ], + "start_col": 79, + "start_line": 150 + }, + "While handling calldata argument 'tokenId'" + ], + "start_col": 30, + "start_line": 1 + } + }, + "4308": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.getCell" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 13, + "end_line": 150, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "start_col": 6, + "start_line": 150 + } + }, + "4310": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.getCell" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 55, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/getCell/b9f082c9f793d6f80f66b8a110e326ab27269a523c2aa107129eed9fa07085f2.cairo" + }, + "parent_location": [ + { + "end_col": 13, + "end_line": 150, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "parent_location": [ + { + "end_col": 55, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/getCell/b9f082c9f793d6f80f66b8a110e326ab27269a523c2aa107129eed9fa07085f2.cairo" + }, + "parent_location": [ + { + "end_col": 13, + "end_line": 150, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "start_col": 6, + "start_line": 150 + }, + "While constructing the external wrapper for:" + ], + "start_col": 44, + "start_line": 1 + }, + "While auto generating local variable for 'syscall_ptr'." + ], + "start_col": 6, + "start_line": 150 + }, + "While constructing the external wrapper for:" + ], + "start_col": 44, + "start_line": 1 + } + }, + "4311": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.getCell" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 82, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/getCell/b9f082c9f793d6f80f66b8a110e326ab27269a523c2aa107129eed9fa07085f2.cairo" + }, + "parent_location": [ + { + "end_col": 13, + "end_line": 150, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "parent_location": [ + { + "end_col": 82, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/getCell/b9f082c9f793d6f80f66b8a110e326ab27269a523c2aa107129eed9fa07085f2.cairo" + }, + "parent_location": [ + { + "end_col": 13, + "end_line": 150, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "start_col": 6, + "start_line": 150 + }, + "While constructing the external wrapper for:" + ], + "start_col": 70, + "start_line": 1 + }, + "While auto generating local variable for 'pedersen_ptr'." + ], + "start_col": 6, + "start_line": 150 + }, + "While constructing the external wrapper for:" + ], + "start_col": 70, + "start_line": 1 + } + }, + "4312": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.getCell" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 115, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/getCell/b9f082c9f793d6f80f66b8a110e326ab27269a523c2aa107129eed9fa07085f2.cairo" + }, + "parent_location": [ + { + "end_col": 13, + "end_line": 150, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "parent_location": [ + { + "end_col": 96, + "end_line": 2, + "input_file": { + "filename": "autogen/starknet/external/getCell/b9f082c9f793d6f80f66b8a110e326ab27269a523c2aa107129eed9fa07085f2.cairo" + }, + "parent_location": [ + { + "end_col": 13, + "end_line": 150, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "start_col": 6, + "start_line": 150 + }, + "While constructing the external wrapper for:" + ], + "start_col": 81, + "start_line": 2 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 6, + "start_line": 150 + }, + "While constructing the external wrapper for:" + ], + "start_col": 100, + "start_line": 1 + } + }, + "4313": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.getCell" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 97, + "end_line": 2, + "input_file": { + "filename": "autogen/starknet/external/getCell/b9f082c9f793d6f80f66b8a110e326ab27269a523c2aa107129eed9fa07085f2.cairo" + }, + "parent_location": [ + { + "end_col": 13, + "end_line": 150, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "start_col": 6, + "start_line": 150 + }, + "While constructing the external wrapper for:" + ], + "start_col": 48, + "start_line": 2 + } + }, + "4315": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.getCell" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 55, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/getCell/b9f082c9f793d6f80f66b8a110e326ab27269a523c2aa107129eed9fa07085f2.cairo" + }, + "parent_location": [ + { + "end_col": 13, + "end_line": 150, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "parent_location": [ + { + "end_col": 55, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/getCell/b9f082c9f793d6f80f66b8a110e326ab27269a523c2aa107129eed9fa07085f2.cairo" + }, + "parent_location": [ + { + "end_col": 13, + "end_line": 150, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "parent_location": [ + { + "end_col": 20, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/getCell/da17921a4e81c09e730800bbf23bfdbe5e9e6bfaedc59d80fbf62087fa43c27d.cairo" + }, + "parent_location": [ + { + "end_col": 13, + "end_line": 150, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "start_col": 6, + "start_line": 150 + }, + "While constructing the external wrapper for:" + ], + "start_col": 9, + "start_line": 1 + }, + "While expanding the reference 'syscall_ptr' in:" + ], + "start_col": 6, + "start_line": 150 + }, + "While constructing the external wrapper for:" + ], + "start_col": 44, + "start_line": 1 + }, + "While auto generating local variable for 'syscall_ptr'." + ], + "start_col": 6, + "start_line": 150 + }, + "While constructing the external wrapper for:" + ], + "start_col": 44, + "start_line": 1 + } + }, + "4316": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.getCell" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 82, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/getCell/b9f082c9f793d6f80f66b8a110e326ab27269a523c2aa107129eed9fa07085f2.cairo" + }, + "parent_location": [ + { + "end_col": 13, + "end_line": 150, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "parent_location": [ + { + "end_col": 82, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/getCell/b9f082c9f793d6f80f66b8a110e326ab27269a523c2aa107129eed9fa07085f2.cairo" + }, + "parent_location": [ + { + "end_col": 13, + "end_line": 150, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "parent_location": [ + { + "end_col": 33, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/getCell/da17921a4e81c09e730800bbf23bfdbe5e9e6bfaedc59d80fbf62087fa43c27d.cairo" + }, + "parent_location": [ + { + "end_col": 13, + "end_line": 150, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "start_col": 6, + "start_line": 150 + }, + "While constructing the external wrapper for:" + ], + "start_col": 21, + "start_line": 1 + }, + "While expanding the reference 'pedersen_ptr' in:" + ], + "start_col": 6, + "start_line": 150 + }, + "While constructing the external wrapper for:" + ], + "start_col": 70, + "start_line": 1 + }, + "While auto generating local variable for 'pedersen_ptr'." + ], + "start_col": 6, + "start_line": 150 + }, + "While constructing the external wrapper for:" + ], + "start_col": 70, + "start_line": 1 + } + }, + "4317": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.getCell" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 21, + "end_line": 2, + "input_file": { + "filename": "autogen/starknet/external/getCell/b9f082c9f793d6f80f66b8a110e326ab27269a523c2aa107129eed9fa07085f2.cairo" + }, + "parent_location": [ + { + "end_col": 13, + "end_line": 150, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "parent_location": [ + { + "end_col": 49, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/getCell/da17921a4e81c09e730800bbf23bfdbe5e9e6bfaedc59d80fbf62087fa43c27d.cairo" + }, + "parent_location": [ + { + "end_col": 13, + "end_line": 150, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "start_col": 6, + "start_line": 150 + }, + "While constructing the external wrapper for:" + ], + "start_col": 34, + "start_line": 1 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 6, + "start_line": 150 + }, + "While constructing the external wrapper for:" + ], + "start_col": 6, + "start_line": 2 + } + }, + "4318": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.getCell" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 35, + "end_line": 2, + "input_file": { + "filename": "autogen/starknet/external/getCell/b9f082c9f793d6f80f66b8a110e326ab27269a523c2aa107129eed9fa07085f2.cairo" + }, + "parent_location": [ + { + "end_col": 13, + "end_line": 150, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "parent_location": [ + { + "end_col": 62, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/getCell/da17921a4e81c09e730800bbf23bfdbe5e9e6bfaedc59d80fbf62087fa43c27d.cairo" + }, + "parent_location": [ + { + "end_col": 13, + "end_line": 150, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "start_col": 6, + "start_line": 150 + }, + "While constructing the external wrapper for:" + ], + "start_col": 50, + "start_line": 1 + }, + "While expanding the reference 'retdata_size' in:" + ], + "start_col": 6, + "start_line": 150 + }, + "While constructing the external wrapper for:" + ], + "start_col": 23, + "start_line": 2 + } + }, + "4319": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.getCell" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 44, + "end_line": 2, + "input_file": { + "filename": "autogen/starknet/external/getCell/b9f082c9f793d6f80f66b8a110e326ab27269a523c2aa107129eed9fa07085f2.cairo" + }, + "parent_location": [ + { + "end_col": 13, + "end_line": 150, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "parent_location": [ + { + "end_col": 70, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/getCell/da17921a4e81c09e730800bbf23bfdbe5e9e6bfaedc59d80fbf62087fa43c27d.cairo" + }, + "parent_location": [ + { + "end_col": 13, + "end_line": 150, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "start_col": 6, + "start_line": 150 + }, + "While constructing the external wrapper for:" + ], + "start_col": 63, + "start_line": 1 + }, + "While expanding the reference 'retdata' in:" + ], + "start_col": 6, + "start_line": 150 + }, + "While constructing the external wrapper for:" + ], + "start_col": 37, + "start_line": 2 + } + }, + "4320": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.getCell" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 72, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/getCell/da17921a4e81c09e730800bbf23bfdbe5e9e6bfaedc59d80fbf62087fa43c27d.cairo" + }, + "parent_location": [ + { + "end_col": 13, + "end_line": 150, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "start_col": 6, + "start_line": 150 + }, + "While constructing the external wrapper for:" + ], + "start_col": 1, + "start_line": 1 + } + }, + "4321": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.renderCell" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 18, + "end_line": 161, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "start_col": 5, + "start_line": 161 + } + }, + "4323": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.renderCell" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 84, + "end_line": 162, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "start_col": 71, + "start_line": 162 + } + }, + "4325": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.renderCell" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 85, + "end_line": 162, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "start_col": 40, + "start_line": 162 + } + }, + "4327": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.renderCell" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 36, + "end_line": 162, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "start_col": 10, + "start_line": 162 + } + }, + "4328": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.renderCell" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 35, + "end_line": 158, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "parent_location": [ + { + "end_col": 27, + "end_line": 161, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" + }, + "parent_location": [ + { + "end_col": 75, + "end_line": 165, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "start_col": 18, + "start_line": 165 + }, + "While trying to retrieve the implicit argument 'syscall_ptr' in:" + ], + "start_col": 9, + "start_line": 161 + }, + "While expanding the reference 'syscall_ptr' in:" + ], + "start_col": 17, + "start_line": 158 + } + }, + "4329": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.renderCell" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 63, + "end_line": 158, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "parent_location": [ + { + "end_col": 55, + "end_line": 161, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" + }, + "parent_location": [ + { + "end_col": 75, + "end_line": 165, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "start_col": 18, + "start_line": 165 + }, + "While trying to retrieve the implicit argument 'pedersen_ptr' in:" + ], + "start_col": 29, + "start_line": 161 + }, + "While expanding the reference 'pedersen_ptr' in:" + ], + "start_col": 37, + "start_line": 158 + } + }, + "4330": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.renderCell" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 80, + "end_line": 158, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "parent_location": [ + { + "end_col": 72, + "end_line": 161, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" + }, + "parent_location": [ + { + "end_col": 75, + "end_line": 165, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "start_col": 18, + "start_line": 165 + }, + "While trying to retrieve the implicit argument 'range_check_ptr' in:" + ], + "start_col": 57, + "start_line": 161 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 65, + "start_line": 158 + } + }, + "4331": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.renderCell" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 36, + "end_line": 162, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "parent_location": [ + { + "end_col": 46, + "end_line": 163, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "parent_location": [ + { + "end_col": 65, + "end_line": 165, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "start_col": 51, + "start_line": 165 + }, + "While expanding the reference 'rendered_cells' in:" + ], + "start_col": 26, + "start_line": 163 + }, + "While expanding the reference 'rendered_cells_start' in:" + ], + "start_col": 16, + "start_line": 162 + } + }, + "4332": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.renderCell" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 95, + "end_line": 158, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "parent_location": [ + { + "end_col": 74, + "end_line": 165, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "start_col": 67, + "start_line": 165 + }, + "While expanding the reference 'tokenId' in:" + ], + "start_col": 82, + "start_line": 158 + } + }, + "4333": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.renderCell" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 75, + "end_line": 165, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "start_col": 18, + "start_line": 165 + } + }, + "4335": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.renderCell" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 14, + "end_line": 165, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "parent_location": [ + { + "end_col": 14, + "end_line": 165, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "start_col": 10, + "start_line": 165 + }, + "While auto generating local variable for 'cell'." + ], + "start_col": 10, + "start_line": 165 + } + }, + "4336": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.renderCell" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 14, + "end_line": 165, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "parent_location": [ + { + "end_col": 14, + "end_line": 165, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "start_col": 10, + "start_line": 165 + }, + "While auto generating local variable for 'cell'." + ], + "start_col": 10, + "start_line": 165 + } + }, + "4337": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.renderCell" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 14, + "end_line": 165, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "parent_location": [ + { + "end_col": 14, + "end_line": 165, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "start_col": 10, + "start_line": 165 + }, + "While auto generating local variable for 'cell'." + ], + "start_col": 10, + "start_line": 165 + } + }, + "4338": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.renderCell" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 27, + "end_line": 161, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" + }, + "parent_location": [ + { + "end_col": 75, + "end_line": 165, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "parent_location": [ + { + "end_col": 27, + "end_line": 161, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" + }, + "parent_location": [ + { + "end_col": 75, + "end_line": 165, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "start_col": 18, + "start_line": 165 + }, + "While trying to update the implicit return value 'syscall_ptr' in:" + ], + "start_col": 9, + "start_line": 161 + }, + "While auto generating local variable for 'syscall_ptr'." + ], + "start_col": 18, + "start_line": 165 + }, + "While trying to update the implicit return value 'syscall_ptr' in:" + ], + "start_col": 9, + "start_line": 161 + } + }, + "4339": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.renderCell" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 55, + "end_line": 161, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" + }, + "parent_location": [ + { + "end_col": 75, + "end_line": 165, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "parent_location": [ + { + "end_col": 55, + "end_line": 161, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" + }, + "parent_location": [ + { + "end_col": 75, + "end_line": 165, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "start_col": 18, + "start_line": 165 + }, + "While trying to update the implicit return value 'pedersen_ptr' in:" + ], + "start_col": 29, + "start_line": 161 + }, + "While auto generating local variable for 'pedersen_ptr'." + ], + "start_col": 18, + "start_line": 165 + }, + "While trying to update the implicit return value 'pedersen_ptr' in:" + ], + "start_col": 29, + "start_line": 161 + } + }, + "4340": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.renderCell" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 72, + "end_line": 161, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" + }, + "parent_location": [ + { + "end_col": 75, + "end_line": 165, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "parent_location": [ + { + "end_col": 43, + "end_line": 23, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/default_dict.cairo" + }, + "parent_location": [ + { + "end_col": 6, + "end_line": 169, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "start_col": 74, + "start_line": 167 + }, + "While trying to retrieve the implicit argument 'range_check_ptr' in:" + ], + "start_col": 28, + "start_line": 23 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 18, + "start_line": 165 + }, + "While trying to update the implicit return value 'range_check_ptr' in:" + ], + "start_col": 57, + "start_line": 161 + } + }, + "4341": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.renderCell" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 36, + "end_line": 162, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "parent_location": [ + { + "end_col": 29, + "end_line": 168, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "start_col": 9, + "start_line": 168 + }, + "While expanding the reference 'rendered_cells_start' in:" + ], + "start_col": 16, + "start_line": 162 + } + }, + "4342": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.renderCell" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 65, + "end_line": 165, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "parent_location": [ + { + "end_col": 45, + "end_line": 168, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "start_col": 31, + "start_line": 168 + }, + "While expanding the reference 'rendered_cells' in:" + ], + "start_col": 51, + "start_line": 165 + } + }, + "4343": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.renderCell" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 60, + "end_line": 168, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "start_col": 47, + "start_line": 168 + } + }, + "4345": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.renderCell" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 6, + "end_line": 169, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "start_col": 74, + "start_line": 167 + } + }, + "4347": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.renderCell" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 27, + "end_line": 161, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" + }, + "parent_location": [ + { + "end_col": 75, + "end_line": 165, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "parent_location": [ + { + "end_col": 27, + "end_line": 161, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" + }, + "parent_location": [ + { + "end_col": 75, + "end_line": 165, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "parent_location": [ + { + "end_col": 35, + "end_line": 158, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "parent_location": [ + { + "end_col": 20, + "end_line": 171, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "start_col": 5, + "start_line": 171 + }, + "While trying to retrieve the implicit argument 'syscall_ptr' in:" + ], + "start_col": 17, + "start_line": 158 + }, + "While expanding the reference 'syscall_ptr' in:" + ], + "start_col": 18, + "start_line": 165 + }, + "While trying to update the implicit return value 'syscall_ptr' in:" + ], + "start_col": 9, + "start_line": 161 + }, + "While auto generating local variable for 'syscall_ptr'." + ], + "start_col": 18, + "start_line": 165 + }, + "While trying to update the implicit return value 'syscall_ptr' in:" + ], + "start_col": 9, + "start_line": 161 + } + }, + "4348": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.renderCell" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 55, + "end_line": 161, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" + }, + "parent_location": [ + { + "end_col": 75, + "end_line": 165, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "parent_location": [ + { + "end_col": 55, + "end_line": 161, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" + }, + "parent_location": [ + { + "end_col": 75, + "end_line": 165, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "parent_location": [ + { + "end_col": 63, + "end_line": 158, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "parent_location": [ + { + "end_col": 20, + "end_line": 171, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "start_col": 5, + "start_line": 171 + }, + "While trying to retrieve the implicit argument 'pedersen_ptr' in:" + ], + "start_col": 37, + "start_line": 158 + }, + "While expanding the reference 'pedersen_ptr' in:" + ], + "start_col": 18, + "start_line": 165 + }, + "While trying to update the implicit return value 'pedersen_ptr' in:" + ], + "start_col": 29, + "start_line": 161 + }, + "While auto generating local variable for 'pedersen_ptr'." + ], + "start_col": 18, + "start_line": 165 + }, + "While trying to update the implicit return value 'pedersen_ptr' in:" + ], + "start_col": 29, + "start_line": 161 + } + }, + "4349": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.renderCell" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 43, + "end_line": 23, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/default_dict.cairo" + }, + "parent_location": [ + { + "end_col": 6, + "end_line": 169, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "parent_location": [ + { + "end_col": 80, + "end_line": 158, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "parent_location": [ + { + "end_col": 20, + "end_line": 171, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "start_col": 5, + "start_line": 171 + }, + "While trying to retrieve the implicit argument 'range_check_ptr' in:" + ], + "start_col": 65, + "start_line": 158 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 74, + "start_line": 167 + }, + "While trying to update the implicit return value 'range_check_ptr' in:" + ], + "start_col": 28, + "start_line": 23 + } + }, + "4350": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.renderCell" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 14, + "end_line": 165, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "parent_location": [ + { + "end_col": 14, + "end_line": 165, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "parent_location": [ + { + "end_col": 17, + "end_line": 171, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "start_col": 13, + "start_line": 171 + }, + "While expanding the reference 'cell' in:" + ], + "start_col": 10, + "start_line": 165 + }, + "While auto generating local variable for 'cell'." + ], + "start_col": 10, + "start_line": 165 + } + }, + "4351": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.renderCell" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 14, + "end_line": 165, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "parent_location": [ + { + "end_col": 14, + "end_line": 165, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "parent_location": [ + { + "end_col": 17, + "end_line": 171, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "start_col": 13, + "start_line": 171 + }, + "While expanding the reference 'cell' in:" + ], + "start_col": 10, + "start_line": 165 + }, + "While auto generating local variable for 'cell'." + ], + "start_col": 10, + "start_line": 165 + } + }, + "4352": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.renderCell" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 14, + "end_line": 165, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "parent_location": [ + { + "end_col": 14, + "end_line": 165, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "parent_location": [ + { + "end_col": 17, + "end_line": 171, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "start_col": 13, + "start_line": 171 + }, + "While expanding the reference 'cell' in:" + ], + "start_col": 10, + "start_line": 165 + }, + "While auto generating local variable for 'cell'." + ], + "start_col": 10, + "start_line": 165 + } + }, + "4353": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.renderCell" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 20, + "end_line": 171, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "start_col": 5, + "start_line": 171 + } + }, + "4354": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.renderCell_encode_return" + ], + "flow_tracking_data": null, + "hints": [ + { + "location": { + "end_col": 38, + "end_line": 3, + "input_file": { + "filename": "autogen/starknet/external/return/renderCell/519b9d1185b56b8b78dd1f832f4829e22be687880e347646a4023068e141c8d6.cairo" + }, + "parent_location": [ + { + "end_col": 16, + "end_line": 158, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "start_col": 6, + "start_line": 158 + }, + "While handling return value of" + ], + "start_col": 5, + "start_line": 3 + }, + "n_prefix_newlines": 0 + } + ], + "inst": { + "end_col": 18, + "end_line": 4, + "input_file": { + "filename": "autogen/starknet/external/return/renderCell/519b9d1185b56b8b78dd1f832f4829e22be687880e347646a4023068e141c8d6.cairo" + }, + "parent_location": [ + { + "end_col": 16, + "end_line": 158, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "start_col": 6, + "start_line": 158 + }, + "While handling return value of" + ], + "start_col": 5, + "start_line": 4 + } + }, + "4356": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.renderCell_encode_return" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 60, + "end_line": 3, + "input_file": { + "filename": "autogen/starknet/arg_processor/5f6f38b703e229f570e2da89310885489d239999dac5c644617b668e9f79038b.cairo" + }, + "parent_location": [ + { + "end_col": 23, + "end_line": 159, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "start_col": 5, + "start_line": 159 + }, + "While handling return value 'cell'" + ], + "start_col": 1, + "start_line": 3 + } + }, + "4357": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.renderCell_encode_return" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 60, + "end_line": 4, + "input_file": { + "filename": "autogen/starknet/arg_processor/5f6f38b703e229f570e2da89310885489d239999dac5c644617b668e9f79038b.cairo" + }, + "parent_location": [ + { + "end_col": 23, + "end_line": 159, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "start_col": 5, + "start_line": 159 + }, + "While handling return value 'cell'" + ], + "start_col": 1, + "start_line": 4 + } + }, + "4358": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.renderCell_encode_return" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 60, + "end_line": 5, + "input_file": { + "filename": "autogen/starknet/arg_processor/5f6f38b703e229f570e2da89310885489d239999dac5c644617b668e9f79038b.cairo" + }, + "parent_location": [ + { + "end_col": 23, + "end_line": 159, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "start_col": 5, + "start_line": 159 + }, + "While handling return value 'cell'" + ], + "start_col": 1, + "start_line": 5 + } + }, + "4359": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.renderCell_encode_return" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 48, + "end_line": 6, + "input_file": { + "filename": "autogen/starknet/arg_processor/5f6f38b703e229f570e2da89310885489d239999dac5c644617b668e9f79038b.cairo" + }, + "parent_location": [ + { + "end_col": 23, + "end_line": 159, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "parent_location": [ + { + "end_col": 36, + "end_line": 11, + "input_file": { + "filename": "autogen/starknet/external/return/renderCell/519b9d1185b56b8b78dd1f832f4829e22be687880e347646a4023068e141c8d6.cairo" + }, + "parent_location": [ + { + "end_col": 16, + "end_line": 158, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "start_col": 6, + "start_line": 158 + }, + "While handling return value of" + ], + "start_col": 18, + "start_line": 11 + }, + "While expanding the reference '__return_value_ptr' in:" + ], + "start_col": 5, + "start_line": 159 + }, + "While handling return value 'cell'" + ], + "start_col": 26, + "start_line": 6 + } + }, + "4361": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.renderCell_encode_return" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 93, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/return/renderCell/519b9d1185b56b8b78dd1f832f4829e22be687880e347646a4023068e141c8d6.cairo" + }, + "parent_location": [ + { + "end_col": 16, + "end_line": 158, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "parent_location": [ + { + "end_col": 40, + "end_line": 10, + "input_file": { + "filename": "autogen/starknet/external/return/renderCell/519b9d1185b56b8b78dd1f832f4829e22be687880e347646a4023068e141c8d6.cairo" + }, + "parent_location": [ + { + "end_col": 16, + "end_line": 158, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "start_col": 6, + "start_line": 158 + }, + "While handling return value of" + ], + "start_col": 25, + "start_line": 10 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 6, + "start_line": 158 + }, + "While handling return value of" + ], + "start_col": 78, + "start_line": 1 + } + }, + "4362": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.renderCell_encode_return" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 63, + "end_line": 11, + "input_file": { + "filename": "autogen/starknet/external/return/renderCell/519b9d1185b56b8b78dd1f832f4829e22be687880e347646a4023068e141c8d6.cairo" + }, + "parent_location": [ + { + "end_col": 16, + "end_line": 158, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "start_col": 6, + "start_line": 158 + }, + "While handling return value of" + ], + "start_col": 18, + "start_line": 11 + } + }, + "4363": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.renderCell_encode_return" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 35, + "end_line": 5, + "input_file": { + "filename": "autogen/starknet/external/return/renderCell/519b9d1185b56b8b78dd1f832f4829e22be687880e347646a4023068e141c8d6.cairo" + }, + "parent_location": [ + { + "end_col": 16, + "end_line": 158, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "parent_location": [ + { + "end_col": 38, + "end_line": 12, + "input_file": { + "filename": "autogen/starknet/external/return/renderCell/519b9d1185b56b8b78dd1f832f4829e22be687880e347646a4023068e141c8d6.cairo" + }, + "parent_location": [ + { + "end_col": 16, + "end_line": 158, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "start_col": 6, + "start_line": 158 + }, + "While handling return value of" + ], + "start_col": 14, + "start_line": 12 + }, + "While expanding the reference '__return_value_ptr_start' in:" + ], + "start_col": 6, + "start_line": 158 + }, + "While handling return value of" + ], + "start_col": 11, + "start_line": 5 + } + }, + "4364": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.renderCell_encode_return" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 40, + "end_line": 12, + "input_file": { + "filename": "autogen/starknet/external/return/renderCell/519b9d1185b56b8b78dd1f832f4829e22be687880e347646a4023068e141c8d6.cairo" + }, + "parent_location": [ + { + "end_col": 16, + "end_line": 158, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "start_col": 6, + "start_line": 158 + }, + "While handling return value of" + ], + "start_col": 5, + "start_line": 9 + } + }, + "4365": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.renderCell" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 40, + "end_line": 2, + "input_file": { + "filename": "autogen/starknet/arg_processor/128c2321f9070588a8d11dc60a4b2c6a3b0b1a97919597936f0847381384bd91.cairo" + }, + "parent_location": [ + { + "end_col": 95, + "end_line": 158, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "parent_location": [ + { + "end_col": 45, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/arg_processor/c31620b02d4d706f0542c989b2aadc01b0981d1f6a5933a8fe4937ace3d70d92.cairo" + }, + "parent_location": [ + { + "end_col": 16, + "end_line": 158, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "parent_location": [ + { + "end_col": 57, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/arg_processor/01cba52f8515996bb9d7070bde81ff39281d096d7024a558efcba6e1fd2402cf.cairo" + }, + "parent_location": [ + { + "end_col": 16, + "end_line": 158, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "start_col": 6, + "start_line": 158 + }, + "While handling calldata of" + ], + "start_col": 35, + "start_line": 1 + }, + "While expanding the reference '__calldata_actual_size' in:" + ], + "start_col": 6, + "start_line": 158 + }, + "While handling calldata of" + ], + "start_col": 31, + "start_line": 1 + }, + "While expanding the reference '__calldata_ptr' in:" + ], + "start_col": 82, + "start_line": 158 + }, + "While handling calldata argument 'tokenId'" + ], + "start_col": 22, + "start_line": 2 + } + }, + "4367": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.renderCell" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 58, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/arg_processor/01cba52f8515996bb9d7070bde81ff39281d096d7024a558efcba6e1fd2402cf.cairo" + }, + "parent_location": [ + { + "end_col": 16, + "end_line": 158, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "start_col": 6, + "start_line": 158 + }, + "While handling calldata of" + ], + "start_col": 1, + "start_line": 1 + } + }, + "4368": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.renderCell" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 64, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/renderCell/b2c52ca2d2a8fc8791a983086d8716c5eacd0c3d62934914d2286f84b98ff4cb.cairo" + }, + "parent_location": [ + { + "end_col": 35, + "end_line": 158, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "parent_location": [ + { + "end_col": 55, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/renderCell/146e356956f1b5b1ec5d9c2427e96b5918bf0557e0b6f7ad743096649056d836.cairo" + }, + "parent_location": [ + { + "end_col": 16, + "end_line": 158, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "start_col": 6, + "start_line": 158 + }, + "While constructing the external wrapper for:" + ], + "start_col": 44, + "start_line": 1 + }, + "While expanding the reference 'syscall_ptr' in:" + ], + "start_col": 17, + "start_line": 158 + }, + "While constructing the external wrapper for:" + ], + "start_col": 19, + "start_line": 1 + } + }, + "4369": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.renderCell" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 110, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/renderCell/9684a85e93c782014ca14293edea4eb2502039a5a7b6538ecd39c56faaf12529.cairo" + }, + "parent_location": [ + { + "end_col": 63, + "end_line": 158, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "parent_location": [ + { + "end_col": 82, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/renderCell/146e356956f1b5b1ec5d9c2427e96b5918bf0557e0b6f7ad743096649056d836.cairo" + }, + "parent_location": [ + { + "end_col": 16, + "end_line": 158, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "start_col": 6, + "start_line": 158 + }, + "While constructing the external wrapper for:" + ], + "start_col": 70, + "start_line": 1 + }, + "While expanding the reference 'pedersen_ptr' in:" + ], + "start_col": 37, + "start_line": 158 + }, + "While constructing the external wrapper for:" + ], + "start_col": 20, + "start_line": 1 + } + }, + "4370": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.renderCell" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 67, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/renderCell/741ea357d6336b0bed7bf0472425acd0311d543883b803388880e60a232040c7.cairo" + }, + "parent_location": [ + { + "end_col": 80, + "end_line": 158, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "parent_location": [ + { + "end_col": 115, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/renderCell/146e356956f1b5b1ec5d9c2427e96b5918bf0557e0b6f7ad743096649056d836.cairo" + }, + "parent_location": [ + { + "end_col": 16, + "end_line": 158, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "start_col": 6, + "start_line": 158 + }, + "While constructing the external wrapper for:" + ], + "start_col": 100, + "start_line": 1 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 65, + "start_line": 158 + }, + "While constructing the external wrapper for:" + ], + "start_col": 23, + "start_line": 1 + } + }, + "4371": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.renderCell" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 46, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/arg_processor/128c2321f9070588a8d11dc60a4b2c6a3b0b1a97919597936f0847381384bd91.cairo" + }, + "parent_location": [ + { + "end_col": 95, + "end_line": 158, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "parent_location": [ + { + "end_col": 147, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/renderCell/146e356956f1b5b1ec5d9c2427e96b5918bf0557e0b6f7ad743096649056d836.cairo" + }, + "parent_location": [ + { + "end_col": 16, + "end_line": 158, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "start_col": 6, + "start_line": 158 + }, + "While constructing the external wrapper for:" + ], + "start_col": 125, + "start_line": 1 + }, + "While expanding the reference '__calldata_arg_tokenId' in:" + ], + "start_col": 82, + "start_line": 158 + }, + "While handling calldata argument 'tokenId'" + ], + "start_col": 30, + "start_line": 1 + } + }, + "4372": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.renderCell" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 16, + "end_line": 158, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "start_col": 6, + "start_line": 158 + } + }, + "4374": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.renderCell" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 115, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/renderCell/146e356956f1b5b1ec5d9c2427e96b5918bf0557e0b6f7ad743096649056d836.cairo" + }, + "parent_location": [ + { + "end_col": 16, + "end_line": 158, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "parent_location": [ + { + "end_col": 99, + "end_line": 2, + "input_file": { + "filename": "autogen/starknet/external/renderCell/146e356956f1b5b1ec5d9c2427e96b5918bf0557e0b6f7ad743096649056d836.cairo" + }, + "parent_location": [ + { + "end_col": 16, + "end_line": 158, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "start_col": 6, + "start_line": 158 + }, + "While constructing the external wrapper for:" + ], + "start_col": 84, + "start_line": 2 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 6, + "start_line": 158 + }, + "While constructing the external wrapper for:" + ], + "start_col": 100, + "start_line": 1 + } + }, + "4375": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.renderCell" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 100, + "end_line": 2, + "input_file": { + "filename": "autogen/starknet/external/renderCell/146e356956f1b5b1ec5d9c2427e96b5918bf0557e0b6f7ad743096649056d836.cairo" + }, + "parent_location": [ + { + "end_col": 16, + "end_line": 158, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "start_col": 6, + "start_line": 158 + }, + "While constructing the external wrapper for:" + ], + "start_col": 48, + "start_line": 2 + } + }, + "4377": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.renderCell" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 55, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/renderCell/146e356956f1b5b1ec5d9c2427e96b5918bf0557e0b6f7ad743096649056d836.cairo" + }, + "parent_location": [ + { + "end_col": 16, + "end_line": 158, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "parent_location": [ + { + "end_col": 20, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/renderCell/da17921a4e81c09e730800bbf23bfdbe5e9e6bfaedc59d80fbf62087fa43c27d.cairo" + }, + "parent_location": [ + { + "end_col": 16, + "end_line": 158, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "start_col": 6, + "start_line": 158 + }, + "While constructing the external wrapper for:" + ], + "start_col": 9, + "start_line": 1 + }, + "While expanding the reference 'syscall_ptr' in:" + ], + "start_col": 6, + "start_line": 158 + }, + "While constructing the external wrapper for:" + ], + "start_col": 44, + "start_line": 1 + } + }, + "4378": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.renderCell" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 82, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/renderCell/146e356956f1b5b1ec5d9c2427e96b5918bf0557e0b6f7ad743096649056d836.cairo" + }, + "parent_location": [ + { + "end_col": 16, + "end_line": 158, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "parent_location": [ + { + "end_col": 33, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/renderCell/da17921a4e81c09e730800bbf23bfdbe5e9e6bfaedc59d80fbf62087fa43c27d.cairo" + }, + "parent_location": [ + { + "end_col": 16, + "end_line": 158, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "start_col": 6, + "start_line": 158 + }, + "While constructing the external wrapper for:" + ], + "start_col": 21, + "start_line": 1 + }, + "While expanding the reference 'pedersen_ptr' in:" + ], + "start_col": 6, + "start_line": 158 + }, + "While constructing the external wrapper for:" + ], + "start_col": 70, + "start_line": 1 + } + }, + "4379": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.renderCell" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 21, + "end_line": 2, + "input_file": { + "filename": "autogen/starknet/external/renderCell/146e356956f1b5b1ec5d9c2427e96b5918bf0557e0b6f7ad743096649056d836.cairo" + }, + "parent_location": [ + { + "end_col": 16, + "end_line": 158, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "parent_location": [ + { + "end_col": 49, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/renderCell/da17921a4e81c09e730800bbf23bfdbe5e9e6bfaedc59d80fbf62087fa43c27d.cairo" + }, + "parent_location": [ + { + "end_col": 16, + "end_line": 158, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "start_col": 6, + "start_line": 158 + }, + "While constructing the external wrapper for:" + ], + "start_col": 34, + "start_line": 1 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 6, + "start_line": 158 + }, + "While constructing the external wrapper for:" + ], + "start_col": 6, + "start_line": 2 + } + }, + "4380": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.renderCell" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 35, + "end_line": 2, + "input_file": { + "filename": "autogen/starknet/external/renderCell/146e356956f1b5b1ec5d9c2427e96b5918bf0557e0b6f7ad743096649056d836.cairo" + }, + "parent_location": [ + { + "end_col": 16, + "end_line": 158, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "parent_location": [ + { + "end_col": 62, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/renderCell/da17921a4e81c09e730800bbf23bfdbe5e9e6bfaedc59d80fbf62087fa43c27d.cairo" + }, + "parent_location": [ + { + "end_col": 16, + "end_line": 158, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "start_col": 6, + "start_line": 158 + }, + "While constructing the external wrapper for:" + ], + "start_col": 50, + "start_line": 1 + }, + "While expanding the reference 'retdata_size' in:" + ], + "start_col": 6, + "start_line": 158 + }, + "While constructing the external wrapper for:" + ], + "start_col": 23, + "start_line": 2 + } + }, + "4381": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.renderCell" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 44, + "end_line": 2, + "input_file": { + "filename": "autogen/starknet/external/renderCell/146e356956f1b5b1ec5d9c2427e96b5918bf0557e0b6f7ad743096649056d836.cairo" + }, + "parent_location": [ + { + "end_col": 16, + "end_line": 158, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "parent_location": [ + { + "end_col": 70, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/renderCell/da17921a4e81c09e730800bbf23bfdbe5e9e6bfaedc59d80fbf62087fa43c27d.cairo" + }, + "parent_location": [ + { + "end_col": 16, + "end_line": 158, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "start_col": 6, + "start_line": 158 + }, + "While constructing the external wrapper for:" + ], + "start_col": 63, + "start_line": 1 + }, + "While expanding the reference 'retdata' in:" + ], + "start_col": 6, + "start_line": 158 + }, + "While constructing the external wrapper for:" + ], + "start_col": 37, + "start_line": 2 + } + }, + "4382": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.renderCell" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 72, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/renderCell/da17921a4e81c09e730800bbf23bfdbe5e9e6bfaedc59d80fbf62087fa43c27d.cairo" + }, + "parent_location": [ + { + "end_col": 16, + "end_line": 158, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "start_col": 6, + "start_line": 158 + }, + "While constructing the external wrapper for:" + ], + "start_col": 1, + "start_line": 1 + } + }, + "4383": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.renderCellValue" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 40, + "end_line": 175, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "parent_location": [ + { + "end_col": 35, + "end_line": 158, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "parent_location": [ + { + "end_col": 37, + "end_line": 178, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "start_col": 18, + "start_line": 178 + }, + "While trying to retrieve the implicit argument 'syscall_ptr' in:" + ], + "start_col": 17, + "start_line": 158 + }, + "While expanding the reference 'syscall_ptr' in:" + ], + "start_col": 22, + "start_line": 175 + } + }, + "4384": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.renderCellValue" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 68, + "end_line": 175, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "parent_location": [ + { + "end_col": 63, + "end_line": 158, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "parent_location": [ + { + "end_col": 37, + "end_line": 178, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "start_col": 18, + "start_line": 178 + }, + "While trying to retrieve the implicit argument 'pedersen_ptr' in:" + ], + "start_col": 37, + "start_line": 158 + }, + "While expanding the reference 'pedersen_ptr' in:" + ], + "start_col": 42, + "start_line": 175 + } + }, + "4385": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.renderCellValue" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 85, + "end_line": 175, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "parent_location": [ + { + "end_col": 80, + "end_line": 158, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "parent_location": [ + { + "end_col": 37, + "end_line": 178, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "start_col": 18, + "start_line": 178 + }, + "While trying to retrieve the implicit argument 'range_check_ptr' in:" + ], + "start_col": 65, + "start_line": 158 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 70, + "start_line": 175 + } + }, + "4386": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.renderCellValue" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 18, + "end_line": 176, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "parent_location": [ + { + "end_col": 36, + "end_line": 178, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "start_col": 29, + "start_line": 178 + }, + "While expanding the reference 'tokenId' in:" + ], + "start_col": 5, + "start_line": 176 + } + }, + "4387": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.renderCellValue" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 37, + "end_line": 178, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "start_col": 18, + "start_line": 178 + } + }, + "4389": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.renderCellValue" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 35, + "end_line": 158, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "parent_location": [ + { + "end_col": 37, + "end_line": 178, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "parent_location": [ + { + "end_col": 40, + "end_line": 175, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "parent_location": [ + { + "end_col": 26, + "end_line": 179, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "start_col": 5, + "start_line": 179 + }, + "While trying to retrieve the implicit argument 'syscall_ptr' in:" + ], + "start_col": 22, + "start_line": 175 + }, + "While expanding the reference 'syscall_ptr' in:" + ], + "start_col": 18, + "start_line": 178 + }, + "While trying to update the implicit return value 'syscall_ptr' in:" + ], + "start_col": 17, + "start_line": 158 + } + }, + "4390": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.renderCellValue" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 63, + "end_line": 158, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "parent_location": [ + { + "end_col": 37, + "end_line": 178, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "parent_location": [ + { + "end_col": 68, + "end_line": 175, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "parent_location": [ + { + "end_col": 26, + "end_line": 179, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "start_col": 5, + "start_line": 179 + }, + "While trying to retrieve the implicit argument 'pedersen_ptr' in:" + ], + "start_col": 42, + "start_line": 175 + }, + "While expanding the reference 'pedersen_ptr' in:" + ], + "start_col": 18, + "start_line": 178 + }, + "While trying to update the implicit return value 'pedersen_ptr' in:" + ], + "start_col": 37, + "start_line": 158 + } + }, + "4391": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.renderCellValue" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 80, + "end_line": 158, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "parent_location": [ + { + "end_col": 37, + "end_line": 178, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "parent_location": [ + { + "end_col": 85, + "end_line": 175, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "parent_location": [ + { + "end_col": 26, + "end_line": 179, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "start_col": 5, + "start_line": 179 + }, + "While trying to retrieve the implicit argument 'range_check_ptr' in:" + ], + "start_col": 70, + "start_line": 175 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 18, + "start_line": 178 + }, + "While trying to update the implicit return value 'range_check_ptr' in:" + ], + "start_col": 65, + "start_line": 158 + } + }, + "4392": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.renderCellValue" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 23, + "end_line": 179, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "start_col": 13, + "start_line": 179 + } + }, + "4393": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.renderCellValue" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 26, + "end_line": 179, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "start_col": 5, + "start_line": 179 + } + }, + "4394": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.renderCellValue_encode_return" + ], + "flow_tracking_data": null, + "hints": [ + { + "location": { + "end_col": 38, + "end_line": 3, + "input_file": { + "filename": "autogen/starknet/external/return/renderCellValue/5178822e53bcca72dafc5ab7de86f8a9c6086d257f9e71100782acd0b5bff53e.cairo" + }, + "parent_location": [ + { + "end_col": 21, + "end_line": 175, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "start_col": 6, + "start_line": 175 + }, + "While handling return value of" + ], + "start_col": 5, + "start_line": 3 + }, + "n_prefix_newlines": 0 + } + ], + "inst": { + "end_col": 18, + "end_line": 4, + "input_file": { + "filename": "autogen/starknet/external/return/renderCellValue/5178822e53bcca72dafc5ab7de86f8a9c6086d257f9e71100782acd0b5bff53e.cairo" + }, + "parent_location": [ + { + "end_col": 21, + "end_line": 175, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "start_col": 6, + "start_line": 175 + }, + "While handling return value of" + ], + "start_col": 5, + "start_line": 4 + } + }, + "4396": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.renderCellValue_encode_return" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 47, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/arg_processor/361efcca75a31f4c299c46d8d625210e368f481380cc3fa32a6d87e5dbe7e45c.cairo" + }, + "parent_location": [ + { + "end_col": 18, + "end_line": 177, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "start_col": 7, + "start_line": 177 + }, + "While handling return value 'value'" + ], + "start_col": 1, + "start_line": 1 + } + }, + "4397": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.renderCellValue_encode_return" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 48, + "end_line": 2, + "input_file": { + "filename": "autogen/starknet/arg_processor/361efcca75a31f4c299c46d8d625210e368f481380cc3fa32a6d87e5dbe7e45c.cairo" + }, + "parent_location": [ + { + "end_col": 18, + "end_line": 177, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "parent_location": [ + { + "end_col": 36, + "end_line": 11, + "input_file": { + "filename": "autogen/starknet/external/return/renderCellValue/5178822e53bcca72dafc5ab7de86f8a9c6086d257f9e71100782acd0b5bff53e.cairo" + }, + "parent_location": [ + { + "end_col": 21, + "end_line": 175, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "start_col": 6, + "start_line": 175 + }, + "While handling return value of" + ], + "start_col": 18, + "start_line": 11 + }, + "While expanding the reference '__return_value_ptr' in:" + ], + "start_col": 7, + "start_line": 177 + }, + "While handling return value 'value'" + ], + "start_col": 26, + "start_line": 2 + } + }, + "4399": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.renderCellValue_encode_return" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 77, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/return/renderCellValue/5178822e53bcca72dafc5ab7de86f8a9c6086d257f9e71100782acd0b5bff53e.cairo" + }, + "parent_location": [ + { + "end_col": 21, + "end_line": 175, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "parent_location": [ + { + "end_col": 40, + "end_line": 10, + "input_file": { + "filename": "autogen/starknet/external/return/renderCellValue/5178822e53bcca72dafc5ab7de86f8a9c6086d257f9e71100782acd0b5bff53e.cairo" + }, + "parent_location": [ + { + "end_col": 21, + "end_line": 175, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "start_col": 6, + "start_line": 175 + }, + "While handling return value of" + ], + "start_col": 25, + "start_line": 10 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 6, + "start_line": 175 + }, + "While handling return value of" + ], + "start_col": 62, + "start_line": 1 + } + }, + "4400": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.renderCellValue_encode_return" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 63, + "end_line": 11, + "input_file": { + "filename": "autogen/starknet/external/return/renderCellValue/5178822e53bcca72dafc5ab7de86f8a9c6086d257f9e71100782acd0b5bff53e.cairo" + }, + "parent_location": [ + { + "end_col": 21, + "end_line": 175, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "start_col": 6, + "start_line": 175 + }, + "While handling return value of" + ], + "start_col": 18, + "start_line": 11 + } + }, + "4401": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.renderCellValue_encode_return" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 35, + "end_line": 5, + "input_file": { + "filename": "autogen/starknet/external/return/renderCellValue/5178822e53bcca72dafc5ab7de86f8a9c6086d257f9e71100782acd0b5bff53e.cairo" + }, + "parent_location": [ + { + "end_col": 21, + "end_line": 175, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "parent_location": [ + { + "end_col": 38, + "end_line": 12, + "input_file": { + "filename": "autogen/starknet/external/return/renderCellValue/5178822e53bcca72dafc5ab7de86f8a9c6086d257f9e71100782acd0b5bff53e.cairo" + }, + "parent_location": [ + { + "end_col": 21, + "end_line": 175, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "start_col": 6, + "start_line": 175 + }, + "While handling return value of" + ], + "start_col": 14, + "start_line": 12 + }, + "While expanding the reference '__return_value_ptr_start' in:" + ], + "start_col": 6, + "start_line": 175 + }, + "While handling return value of" + ], + "start_col": 11, + "start_line": 5 + } + }, + "4402": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.renderCellValue_encode_return" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 40, + "end_line": 12, + "input_file": { + "filename": "autogen/starknet/external/return/renderCellValue/5178822e53bcca72dafc5ab7de86f8a9c6086d257f9e71100782acd0b5bff53e.cairo" + }, + "parent_location": [ + { + "end_col": 21, + "end_line": 175, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "start_col": 6, + "start_line": 175 + }, + "While handling return value of" + ], + "start_col": 5, + "start_line": 9 + } + }, + "4403": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.renderCellValue" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 40, + "end_line": 2, + "input_file": { + "filename": "autogen/starknet/arg_processor/128c2321f9070588a8d11dc60a4b2c6a3b0b1a97919597936f0847381384bd91.cairo" + }, + "parent_location": [ + { + "end_col": 18, + "end_line": 176, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "parent_location": [ + { + "end_col": 45, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/arg_processor/c31620b02d4d706f0542c989b2aadc01b0981d1f6a5933a8fe4937ace3d70d92.cairo" + }, + "parent_location": [ + { + "end_col": 21, + "end_line": 175, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "parent_location": [ + { + "end_col": 57, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/arg_processor/01cba52f8515996bb9d7070bde81ff39281d096d7024a558efcba6e1fd2402cf.cairo" + }, + "parent_location": [ + { + "end_col": 21, + "end_line": 175, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "start_col": 6, + "start_line": 175 + }, + "While handling calldata of" + ], + "start_col": 35, + "start_line": 1 + }, + "While expanding the reference '__calldata_actual_size' in:" + ], + "start_col": 6, + "start_line": 175 + }, + "While handling calldata of" + ], + "start_col": 31, + "start_line": 1 + }, + "While expanding the reference '__calldata_ptr' in:" + ], + "start_col": 5, + "start_line": 176 + }, + "While handling calldata argument 'tokenId'" + ], + "start_col": 22, + "start_line": 2 + } + }, + "4405": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.renderCellValue" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 58, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/arg_processor/01cba52f8515996bb9d7070bde81ff39281d096d7024a558efcba6e1fd2402cf.cairo" + }, + "parent_location": [ + { + "end_col": 21, + "end_line": 175, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "start_col": 6, + "start_line": 175 + }, + "While handling calldata of" + ], + "start_col": 1, + "start_line": 1 + } + }, + "4406": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.renderCellValue" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 64, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/renderCellValue/b2c52ca2d2a8fc8791a983086d8716c5eacd0c3d62934914d2286f84b98ff4cb.cairo" + }, + "parent_location": [ + { + "end_col": 40, + "end_line": 175, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "parent_location": [ + { + "end_col": 55, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/renderCellValue/f5e623291f93f5721b4e366de1f2f5345d268b1d1b1dd5b6b0411cd83a1a1988.cairo" + }, + "parent_location": [ + { + "end_col": 21, + "end_line": 175, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "start_col": 6, + "start_line": 175 + }, + "While constructing the external wrapper for:" + ], + "start_col": 44, + "start_line": 1 + }, + "While expanding the reference 'syscall_ptr' in:" + ], + "start_col": 22, + "start_line": 175 + }, + "While constructing the external wrapper for:" + ], + "start_col": 19, + "start_line": 1 + } + }, + "4407": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.renderCellValue" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 110, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/renderCellValue/9684a85e93c782014ca14293edea4eb2502039a5a7b6538ecd39c56faaf12529.cairo" + }, + "parent_location": [ + { + "end_col": 68, + "end_line": 175, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "parent_location": [ + { + "end_col": 82, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/renderCellValue/f5e623291f93f5721b4e366de1f2f5345d268b1d1b1dd5b6b0411cd83a1a1988.cairo" + }, + "parent_location": [ + { + "end_col": 21, + "end_line": 175, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "start_col": 6, + "start_line": 175 + }, + "While constructing the external wrapper for:" + ], + "start_col": 70, + "start_line": 1 + }, + "While expanding the reference 'pedersen_ptr' in:" + ], + "start_col": 42, + "start_line": 175 + }, + "While constructing the external wrapper for:" + ], + "start_col": 20, + "start_line": 1 + } + }, + "4408": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.renderCellValue" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 67, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/renderCellValue/741ea357d6336b0bed7bf0472425acd0311d543883b803388880e60a232040c7.cairo" + }, + "parent_location": [ + { + "end_col": 85, + "end_line": 175, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "parent_location": [ + { + "end_col": 115, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/renderCellValue/f5e623291f93f5721b4e366de1f2f5345d268b1d1b1dd5b6b0411cd83a1a1988.cairo" + }, + "parent_location": [ + { + "end_col": 21, + "end_line": 175, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "start_col": 6, + "start_line": 175 + }, + "While constructing the external wrapper for:" + ], + "start_col": 100, + "start_line": 1 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 70, + "start_line": 175 + }, + "While constructing the external wrapper for:" + ], + "start_col": 23, + "start_line": 1 + } + }, + "4409": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.renderCellValue" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 46, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/arg_processor/128c2321f9070588a8d11dc60a4b2c6a3b0b1a97919597936f0847381384bd91.cairo" + }, + "parent_location": [ + { + "end_col": 18, + "end_line": 176, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "parent_location": [ + { + "end_col": 147, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/renderCellValue/f5e623291f93f5721b4e366de1f2f5345d268b1d1b1dd5b6b0411cd83a1a1988.cairo" + }, + "parent_location": [ + { + "end_col": 21, + "end_line": 175, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "start_col": 6, + "start_line": 175 + }, + "While constructing the external wrapper for:" + ], + "start_col": 125, + "start_line": 1 + }, + "While expanding the reference '__calldata_arg_tokenId' in:" + ], + "start_col": 5, + "start_line": 176 + }, + "While handling calldata argument 'tokenId'" + ], + "start_col": 30, + "start_line": 1 + } + }, + "4410": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.renderCellValue" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 21, + "end_line": 175, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "start_col": 6, + "start_line": 175 + } + }, + "4412": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.renderCellValue" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 115, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/renderCellValue/f5e623291f93f5721b4e366de1f2f5345d268b1d1b1dd5b6b0411cd83a1a1988.cairo" + }, + "parent_location": [ + { + "end_col": 21, + "end_line": 175, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "parent_location": [ + { + "end_col": 104, + "end_line": 2, + "input_file": { + "filename": "autogen/starknet/external/renderCellValue/f5e623291f93f5721b4e366de1f2f5345d268b1d1b1dd5b6b0411cd83a1a1988.cairo" + }, + "parent_location": [ + { + "end_col": 21, + "end_line": 175, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "start_col": 6, + "start_line": 175 + }, + "While constructing the external wrapper for:" + ], + "start_col": 89, + "start_line": 2 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 6, + "start_line": 175 + }, + "While constructing the external wrapper for:" + ], + "start_col": 100, + "start_line": 1 + } + }, + "4413": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.renderCellValue" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 105, + "end_line": 2, + "input_file": { + "filename": "autogen/starknet/external/renderCellValue/f5e623291f93f5721b4e366de1f2f5345d268b1d1b1dd5b6b0411cd83a1a1988.cairo" + }, + "parent_location": [ + { + "end_col": 21, + "end_line": 175, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "start_col": 6, + "start_line": 175 + }, + "While constructing the external wrapper for:" + ], + "start_col": 48, + "start_line": 2 + } + }, + "4415": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.renderCellValue" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 55, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/renderCellValue/f5e623291f93f5721b4e366de1f2f5345d268b1d1b1dd5b6b0411cd83a1a1988.cairo" + }, + "parent_location": [ + { + "end_col": 21, + "end_line": 175, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "parent_location": [ + { + "end_col": 20, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/renderCellValue/da17921a4e81c09e730800bbf23bfdbe5e9e6bfaedc59d80fbf62087fa43c27d.cairo" + }, + "parent_location": [ + { + "end_col": 21, + "end_line": 175, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "start_col": 6, + "start_line": 175 + }, + "While constructing the external wrapper for:" + ], + "start_col": 9, + "start_line": 1 + }, + "While expanding the reference 'syscall_ptr' in:" + ], + "start_col": 6, + "start_line": 175 + }, + "While constructing the external wrapper for:" + ], + "start_col": 44, + "start_line": 1 + } + }, + "4416": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.renderCellValue" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 82, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/renderCellValue/f5e623291f93f5721b4e366de1f2f5345d268b1d1b1dd5b6b0411cd83a1a1988.cairo" + }, + "parent_location": [ + { + "end_col": 21, + "end_line": 175, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "parent_location": [ + { + "end_col": 33, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/renderCellValue/da17921a4e81c09e730800bbf23bfdbe5e9e6bfaedc59d80fbf62087fa43c27d.cairo" + }, + "parent_location": [ + { + "end_col": 21, + "end_line": 175, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "start_col": 6, + "start_line": 175 + }, + "While constructing the external wrapper for:" + ], + "start_col": 21, + "start_line": 1 + }, + "While expanding the reference 'pedersen_ptr' in:" + ], + "start_col": 6, + "start_line": 175 + }, + "While constructing the external wrapper for:" + ], + "start_col": 70, + "start_line": 1 + } + }, + "4417": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.renderCellValue" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 21, + "end_line": 2, + "input_file": { + "filename": "autogen/starknet/external/renderCellValue/f5e623291f93f5721b4e366de1f2f5345d268b1d1b1dd5b6b0411cd83a1a1988.cairo" + }, + "parent_location": [ + { + "end_col": 21, + "end_line": 175, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "parent_location": [ + { + "end_col": 49, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/renderCellValue/da17921a4e81c09e730800bbf23bfdbe5e9e6bfaedc59d80fbf62087fa43c27d.cairo" + }, + "parent_location": [ + { + "end_col": 21, + "end_line": 175, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "start_col": 6, + "start_line": 175 + }, + "While constructing the external wrapper for:" + ], + "start_col": 34, + "start_line": 1 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 6, + "start_line": 175 + }, + "While constructing the external wrapper for:" + ], + "start_col": 6, + "start_line": 2 + } + }, + "4418": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.renderCellValue" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 35, + "end_line": 2, + "input_file": { + "filename": "autogen/starknet/external/renderCellValue/f5e623291f93f5721b4e366de1f2f5345d268b1d1b1dd5b6b0411cd83a1a1988.cairo" + }, + "parent_location": [ + { + "end_col": 21, + "end_line": 175, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "parent_location": [ + { + "end_col": 62, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/renderCellValue/da17921a4e81c09e730800bbf23bfdbe5e9e6bfaedc59d80fbf62087fa43c27d.cairo" + }, + "parent_location": [ + { + "end_col": 21, + "end_line": 175, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "start_col": 6, + "start_line": 175 + }, + "While constructing the external wrapper for:" + ], + "start_col": 50, + "start_line": 1 + }, + "While expanding the reference 'retdata_size' in:" + ], + "start_col": 6, + "start_line": 175 + }, + "While constructing the external wrapper for:" + ], + "start_col": 23, + "start_line": 2 + } + }, + "4419": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.renderCellValue" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 44, + "end_line": 2, + "input_file": { + "filename": "autogen/starknet/external/renderCellValue/f5e623291f93f5721b4e366de1f2f5345d268b1d1b1dd5b6b0411cd83a1a1988.cairo" + }, + "parent_location": [ + { + "end_col": 21, + "end_line": 175, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "parent_location": [ + { + "end_col": 70, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/renderCellValue/da17921a4e81c09e730800bbf23bfdbe5e9e6bfaedc59d80fbf62087fa43c27d.cairo" + }, + "parent_location": [ + { + "end_col": 21, + "end_line": 175, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "start_col": 6, + "start_line": 175 + }, + "While constructing the external wrapper for:" + ], + "start_col": 63, + "start_line": 1 + }, + "While expanding the reference 'retdata' in:" + ], + "start_col": 6, + "start_line": 175 + }, + "While constructing the external wrapper for:" + ], + "start_col": 37, + "start_line": 2 + } + }, + "4420": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.renderCellValue" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 72, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/renderCellValue/da17921a4e81c09e730800bbf23bfdbe5e9e6bfaedc59d80fbf62087fa43c27d.cairo" + }, + "parent_location": [ + { + "end_col": 21, + "end_line": 175, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "start_col": 6, + "start_line": 175 + }, + "While constructing the external wrapper for:" + ], + "start_col": 1, + "start_line": 1 + } + }, + "4421": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.renderGrid" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 18, + "end_line": 186, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "start_col": 5, + "start_line": 186 + } + }, + "4423": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.renderGrid" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 47, + "end_line": 187, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "start_col": 40, + "start_line": 187 + } + }, + "4425": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.renderGrid" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 36, + "end_line": 187, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "start_col": 10, + "start_line": 187 + } + }, + "4426": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.renderGrid" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 84, + "end_line": 188, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "start_col": 71, + "start_line": 188 + } + }, + "4428": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.renderGrid" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 85, + "end_line": 188, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "start_col": 40, + "start_line": 188 + } + }, + "4430": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.renderGrid" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 36, + "end_line": 188, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "start_col": 10, + "start_line": 188 + } + }, + "4431": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.renderGrid" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 35, + "end_line": 183, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "parent_location": [ + { + "end_col": 41, + "end_line": 53, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" + }, + "parent_location": [ + { + "end_col": 57, + "end_line": 190, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "start_col": 26, + "start_line": 190 + }, + "While trying to retrieve the implicit argument 'syscall_ptr' in:" + ], + "start_col": 23, + "start_line": 53 + }, + "While expanding the reference 'syscall_ptr' in:" + ], + "start_col": 17, + "start_line": 183 + } + }, + "4432": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.renderGrid" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 63, + "end_line": 183, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "parent_location": [ + { + "end_col": 69, + "end_line": 53, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" + }, + "parent_location": [ + { + "end_col": 57, + "end_line": 190, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "start_col": 26, + "start_line": 190 + }, + "While trying to retrieve the implicit argument 'pedersen_ptr' in:" + ], + "start_col": 43, + "start_line": 53 + }, + "While expanding the reference 'pedersen_ptr' in:" + ], + "start_col": 37, + "start_line": 183 + } + }, + "4433": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.renderGrid" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 80, + "end_line": 183, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "parent_location": [ + { + "end_col": 86, + "end_line": 53, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" + }, + "parent_location": [ + { + "end_col": 57, + "end_line": 190, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "start_col": 26, + "start_line": 190 + }, + "While trying to retrieve the implicit argument 'range_check_ptr' in:" + ], + "start_col": 71, + "start_line": 53 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 65, + "start_line": 183 + } + }, + "4434": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.renderGrid" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 57, + "end_line": 190, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "start_col": 26, + "start_line": 190 + } + }, + "4436": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.renderGrid" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 41, + "end_line": 53, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" + }, + "parent_location": [ + { + "end_col": 57, + "end_line": 190, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "parent_location": [ + { + "end_col": 27, + "end_line": 174, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" + }, + "parent_location": [ + { + "end_col": 80, + "end_line": 192, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "start_col": 5, + "start_line": 192 + }, + "While trying to retrieve the implicit argument 'syscall_ptr' in:" + ], + "start_col": 9, + "start_line": 174 + }, + "While expanding the reference 'syscall_ptr' in:" + ], + "start_col": 26, + "start_line": 190 + }, + "While trying to update the implicit return value 'syscall_ptr' in:" + ], + "start_col": 23, + "start_line": 53 + } + }, + "4437": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.renderGrid" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 69, + "end_line": 53, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" + }, + "parent_location": [ + { + "end_col": 57, + "end_line": 190, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "parent_location": [ + { + "end_col": 35, + "end_line": 175, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" + }, + "parent_location": [ + { + "end_col": 80, + "end_line": 192, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "start_col": 5, + "start_line": 192 + }, + "While trying to retrieve the implicit argument 'pedersen_ptr' in:" + ], + "start_col": 9, + "start_line": 175 + }, + "While expanding the reference 'pedersen_ptr' in:" + ], + "start_col": 26, + "start_line": 190 + }, + "While trying to update the implicit return value 'pedersen_ptr' in:" + ], + "start_col": 43, + "start_line": 53 + } + }, + "4438": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.renderGrid" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 86, + "end_line": 53, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" + }, + "parent_location": [ + { + "end_col": 57, + "end_line": 190, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "parent_location": [ + { + "end_col": 24, + "end_line": 176, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" + }, + "parent_location": [ + { + "end_col": 80, + "end_line": 192, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "start_col": 5, + "start_line": 192 + }, + "While trying to retrieve the implicit argument 'range_check_ptr' in:" + ], + "start_col": 9, + "start_line": 176 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 26, + "start_line": 190 + }, + "While trying to update the implicit return value 'range_check_ptr' in:" + ], + "start_col": 71, + "start_line": 53 + } + }, + "4439": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.renderGrid" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 21, + "end_line": 187, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "parent_location": [ + { + "end_col": 34, + "end_line": 192, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "start_col": 29, + "start_line": 192 + }, + "While expanding the reference 'cells' in:" + ], + "start_col": 16, + "start_line": 187 + } + }, + "4440": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.renderGrid" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 36, + "end_line": 188, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "parent_location": [ + { + "end_col": 46, + "end_line": 189, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "parent_location": [ + { + "end_col": 65, + "end_line": 192, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "start_col": 51, + "start_line": 192 + }, + "While expanding the reference 'rendered_cells' in:" + ], + "start_col": 26, + "start_line": 189 + }, + "While expanding the reference 'rendered_cells_start' in:" + ], + "start_col": 16, + "start_line": 188 + } + }, + "4441": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.renderGrid" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 32, + "end_line": 191, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "parent_location": [ + { + "end_col": 76, + "end_line": 192, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "start_col": 72, + "start_line": 192 + }, + "While expanding the reference 'stop' in:" + ], + "start_col": 16, + "start_line": 191 + } + }, + "4442": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.renderGrid" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 79, + "end_line": 192, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "start_col": 78, + "start_line": 192 + } + }, + "4444": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.renderGrid" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 80, + "end_line": 192, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "start_col": 5, + "start_line": 192 + } + }, + "4446": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.renderGrid" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 76, + "end_line": 192, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "parent_location": [ + { + "end_col": 76, + "end_line": 192, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "start_col": 72, + "start_line": 192 + }, + "While auto generating local variable for 'stop'." + ], + "start_col": 72, + "start_line": 192 + } + }, + "4447": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.renderGrid" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 34, + "end_line": 192, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "parent_location": [ + { + "end_col": 34, + "end_line": 192, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "start_col": 29, + "start_line": 192 + }, + "While auto generating local variable for 'cells'." + ], + "start_col": 29, + "start_line": 192 + } + }, + "4448": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.renderGrid" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 27, + "end_line": 174, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" + }, + "parent_location": [ + { + "end_col": 80, + "end_line": 192, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "parent_location": [ + { + "end_col": 27, + "end_line": 174, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" + }, + "parent_location": [ + { + "end_col": 80, + "end_line": 192, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "start_col": 5, + "start_line": 192 + }, + "While trying to update the implicit return value 'syscall_ptr' in:" + ], + "start_col": 9, + "start_line": 174 + }, + "While auto generating local variable for 'syscall_ptr'." + ], + "start_col": 5, + "start_line": 192 + }, + "While trying to update the implicit return value 'syscall_ptr' in:" + ], + "start_col": 9, + "start_line": 174 + } + }, + "4449": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.renderGrid" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 35, + "end_line": 175, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" + }, + "parent_location": [ + { + "end_col": 80, + "end_line": 192, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "parent_location": [ + { + "end_col": 35, + "end_line": 175, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" + }, + "parent_location": [ + { + "end_col": 80, + "end_line": 192, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "start_col": 5, + "start_line": 192 + }, + "While trying to update the implicit return value 'pedersen_ptr' in:" + ], + "start_col": 9, + "start_line": 175 + }, + "While auto generating local variable for 'pedersen_ptr'." + ], + "start_col": 5, + "start_line": 192 + }, + "While trying to update the implicit return value 'pedersen_ptr' in:" + ], + "start_col": 9, + "start_line": 175 + } + }, + "4450": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.renderGrid" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 24, + "end_line": 176, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" + }, + "parent_location": [ + { + "end_col": 80, + "end_line": 192, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "parent_location": [ + { + "end_col": 43, + "end_line": 23, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/default_dict.cairo" + }, + "parent_location": [ + { + "end_col": 6, + "end_line": 196, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "start_col": 74, + "start_line": 194 + }, + "While trying to retrieve the implicit argument 'range_check_ptr' in:" + ], + "start_col": 28, + "start_line": 23 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 5, + "start_line": 192 + }, + "While trying to update the implicit return value 'range_check_ptr' in:" + ], + "start_col": 9, + "start_line": 176 + } + }, + "4451": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.renderGrid" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 36, + "end_line": 188, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "parent_location": [ + { + "end_col": 29, + "end_line": 195, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "start_col": 9, + "start_line": 195 + }, + "While expanding the reference 'rendered_cells_start' in:" + ], + "start_col": 16, + "start_line": 188 + } + }, + "4452": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.renderGrid" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 65, + "end_line": 192, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "parent_location": [ + { + "end_col": 45, + "end_line": 195, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "start_col": 31, + "start_line": 195 + }, + "While expanding the reference 'rendered_cells' in:" + ], + "start_col": 51, + "start_line": 192 + } + }, + "4453": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.renderGrid" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 60, + "end_line": 195, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "start_col": 47, + "start_line": 195 + } + }, + "4455": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.renderGrid" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 6, + "end_line": 196, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "start_col": 74, + "start_line": 194 + } + }, + "4457": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.renderGrid" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 27, + "end_line": 174, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" + }, + "parent_location": [ + { + "end_col": 80, + "end_line": 192, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "parent_location": [ + { + "end_col": 27, + "end_line": 174, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" + }, + "parent_location": [ + { + "end_col": 80, + "end_line": 192, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "parent_location": [ + { + "end_col": 35, + "end_line": 183, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "parent_location": [ + { + "end_col": 26, + "end_line": 198, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "start_col": 5, + "start_line": 198 + }, + "While trying to retrieve the implicit argument 'syscall_ptr' in:" + ], + "start_col": 17, + "start_line": 183 + }, + "While expanding the reference 'syscall_ptr' in:" + ], + "start_col": 5, + "start_line": 192 + }, + "While trying to update the implicit return value 'syscall_ptr' in:" + ], + "start_col": 9, + "start_line": 174 + }, + "While auto generating local variable for 'syscall_ptr'." + ], + "start_col": 5, + "start_line": 192 + }, + "While trying to update the implicit return value 'syscall_ptr' in:" + ], + "start_col": 9, + "start_line": 174 + } + }, + "4458": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.renderGrid" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 35, + "end_line": 175, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" + }, + "parent_location": [ + { + "end_col": 80, + "end_line": 192, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "parent_location": [ + { + "end_col": 35, + "end_line": 175, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" + }, + "parent_location": [ + { + "end_col": 80, + "end_line": 192, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "parent_location": [ + { + "end_col": 63, + "end_line": 183, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "parent_location": [ + { + "end_col": 26, + "end_line": 198, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "start_col": 5, + "start_line": 198 + }, + "While trying to retrieve the implicit argument 'pedersen_ptr' in:" + ], + "start_col": 37, + "start_line": 183 + }, + "While expanding the reference 'pedersen_ptr' in:" + ], + "start_col": 5, + "start_line": 192 + }, + "While trying to update the implicit return value 'pedersen_ptr' in:" + ], + "start_col": 9, + "start_line": 175 + }, + "While auto generating local variable for 'pedersen_ptr'." + ], + "start_col": 5, + "start_line": 192 + }, + "While trying to update the implicit return value 'pedersen_ptr' in:" + ], + "start_col": 9, + "start_line": 175 + } + }, + "4459": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.renderGrid" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 43, + "end_line": 23, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/default_dict.cairo" + }, + "parent_location": [ + { + "end_col": 6, + "end_line": 196, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "parent_location": [ + { + "end_col": 80, + "end_line": 183, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "parent_location": [ + { + "end_col": 26, + "end_line": 198, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "start_col": 5, + "start_line": 198 + }, + "While trying to retrieve the implicit argument 'range_check_ptr' in:" + ], + "start_col": 65, + "start_line": 183 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 74, + "start_line": 194 + }, + "While trying to update the implicit return value 'range_check_ptr' in:" + ], + "start_col": 28, + "start_line": 23 + } + }, + "4460": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.renderGrid" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 76, + "end_line": 192, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "parent_location": [ + { + "end_col": 76, + "end_line": 192, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "parent_location": [ + { + "end_col": 17, + "end_line": 198, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "start_col": 13, + "start_line": 198 + }, + "While expanding the reference 'stop' in:" + ], + "start_col": 72, + "start_line": 192 + }, + "While auto generating local variable for 'stop'." + ], + "start_col": 72, + "start_line": 192 + } + }, + "4461": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.renderGrid" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 34, + "end_line": 192, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "parent_location": [ + { + "end_col": 34, + "end_line": 192, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "parent_location": [ + { + "end_col": 24, + "end_line": 198, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "start_col": 19, + "start_line": 198 + }, + "While expanding the reference 'cells' in:" + ], + "start_col": 29, + "start_line": 192 + }, + "While auto generating local variable for 'cells'." + ], + "start_col": 29, + "start_line": 192 + } + }, + "4462": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.renderGrid" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 26, + "end_line": 198, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "start_col": 5, + "start_line": 198 + } + }, + "4463": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.renderGrid_encode_return" + ], + "flow_tracking_data": null, + "hints": [ + { + "location": { + "end_col": 38, + "end_line": 3, + "input_file": { + "filename": "autogen/starknet/external/return/renderGrid/fe9a6a1bcaa57ee30a381bd9a108817459a6bd115cb6e4fe27d4c45a53d5294c.cairo" + }, + "parent_location": [ + { + "end_col": 16, + "end_line": 183, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "start_col": 6, + "start_line": 183 + }, + "While handling return value of" + ], + "start_col": 5, + "start_line": 3 + }, + "n_prefix_newlines": 0 + } + ], + "inst": { + "end_col": 18, + "end_line": 4, + "input_file": { + "filename": "autogen/starknet/external/return/renderGrid/fe9a6a1bcaa57ee30a381bd9a108817459a6bd115cb6e4fe27d4c45a53d5294c.cairo" + }, + "parent_location": [ + { + "end_col": 16, + "end_line": 183, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "start_col": 6, + "start_line": 183 + }, + "While handling return value of" + ], + "start_col": 5, + "start_line": 4 + } + }, + "4465": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.renderGrid_encode_return" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 51, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/arg_processor/1921cf80c34685bda7c52d95e53497e74d914798938b1491cfcf9359bff14cc8.cairo" + }, + "parent_location": [ + { + "end_col": 20, + "end_line": 184, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "start_col": 5, + "start_line": 184 + }, + "While handling return value 'cells_len'" + ], + "start_col": 1, + "start_line": 1 + } + }, + "4466": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.renderGrid_encode_return" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 48, + "end_line": 2, + "input_file": { + "filename": "autogen/starknet/arg_processor/211305a4982e84dee745bdcf06176fa172dde0d5d206f753a2e0d4a223d668e4.cairo" + }, + "parent_location": [ + { + "end_col": 42, + "end_line": 184, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "start_col": 22, + "start_line": 184 + }, + "While handling return value 'cells'" + ], + "start_col": 1, + "start_line": 2 + } + }, + "4467": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.renderGrid_encode_return" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 45, + "end_line": 5, + "input_file": { + "filename": "autogen/starknet/arg_processor/211305a4982e84dee745bdcf06176fa172dde0d5d206f753a2e0d4a223d668e4.cairo" + }, + "parent_location": [ + { + "end_col": 42, + "end_line": 184, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "start_col": 22, + "start_line": 184 + }, + "While handling return value 'cells'" + ], + "start_col": 1, + "start_line": 5 + } + }, + "4469": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.renderGrid_encode_return" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 48, + "end_line": 2, + "input_file": { + "filename": "autogen/starknet/arg_processor/1921cf80c34685bda7c52d95e53497e74d914798938b1491cfcf9359bff14cc8.cairo" + }, + "parent_location": [ + { + "end_col": 20, + "end_line": 184, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "parent_location": [ + { + "end_col": 53, + "end_line": 10, + "input_file": { + "filename": "autogen/starknet/arg_processor/211305a4982e84dee745bdcf06176fa172dde0d5d206f753a2e0d4a223d668e4.cairo" + }, + "parent_location": [ + { + "end_col": 42, + "end_line": 184, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "start_col": 22, + "start_line": 184 + }, + "While handling return value 'cells'" + ], + "start_col": 35, + "start_line": 10 + }, + "While expanding the reference '__return_value_ptr' in:" + ], + "start_col": 5, + "start_line": 184 + }, + "While handling return value 'cells_len'" + ], + "start_col": 26, + "start_line": 2 + } + }, + "4471": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.renderGrid_encode_return" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 79, + "end_line": 10, + "input_file": { + "filename": "autogen/starknet/arg_processor/211305a4982e84dee745bdcf06176fa172dde0d5d206f753a2e0d4a223d668e4.cairo" + }, + "parent_location": [ + { + "end_col": 42, + "end_line": 184, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "start_col": 22, + "start_line": 184 + }, + "While handling return value 'cells'" + ], + "start_col": 56, + "start_line": 10 + } + }, + "4473": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.renderGrid_encode_return" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 80, + "end_line": 10, + "input_file": { + "filename": "autogen/starknet/arg_processor/211305a4982e84dee745bdcf06176fa172dde0d5d206f753a2e0d4a223d668e4.cairo" + }, + "parent_location": [ + { + "end_col": 42, + "end_line": 184, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "start_col": 22, + "start_line": 184 + }, + "While handling return value 'cells'" + ], + "start_col": 1, + "start_line": 10 + } + }, + "4474": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.renderGrid_encode_return" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 48, + "end_line": 2, + "input_file": { + "filename": "autogen/starknet/arg_processor/1921cf80c34685bda7c52d95e53497e74d914798938b1491cfcf9359bff14cc8.cairo" + }, + "parent_location": [ + { + "end_col": 20, + "end_line": 184, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "parent_location": [ + { + "end_col": 49, + "end_line": 7, + "input_file": { + "filename": "autogen/starknet/arg_processor/211305a4982e84dee745bdcf06176fa172dde0d5d206f753a2e0d4a223d668e4.cairo" + }, + "parent_location": [ + { + "end_col": 42, + "end_line": 184, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "parent_location": [ + { + "end_col": 32, + "end_line": 12, + "input_file": { + "filename": "autogen/starknet/arg_processor/211305a4982e84dee745bdcf06176fa172dde0d5d206f753a2e0d4a223d668e4.cairo" + }, + "parent_location": [ + { + "end_col": 42, + "end_line": 184, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "start_col": 22, + "start_line": 184 + }, + "While handling return value 'cells'" + ], + "start_col": 9, + "start_line": 12 + }, + "While expanding the reference '__return_value_ptr_copy' in:" + ], + "start_col": 22, + "start_line": 184 + }, + "While handling return value 'cells'" + ], + "start_col": 31, + "start_line": 7 + }, + "While expanding the reference '__return_value_ptr' in:" + ], + "start_col": 5, + "start_line": 184 + }, + "While handling return value 'cells_len'" + ], + "start_col": 26, + "start_line": 2 + } + }, + "4476": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.renderGrid_encode_return" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 24, + "end_line": 13, + "input_file": { + "filename": "autogen/starknet/arg_processor/211305a4982e84dee745bdcf06176fa172dde0d5d206f753a2e0d4a223d668e4.cairo" + }, + "parent_location": [ + { + "end_col": 42, + "end_line": 184, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "start_col": 22, + "start_line": 184 + }, + "While handling return value 'cells'" + ], + "start_col": 9, + "start_line": 13 + } + }, + "4477": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.renderGrid_encode_return" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 32, + "end_line": 14, + "input_file": { + "filename": "autogen/starknet/arg_processor/211305a4982e84dee745bdcf06176fa172dde0d5d206f753a2e0d4a223d668e4.cairo" + }, + "parent_location": [ + { + "end_col": 42, + "end_line": 184, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "start_col": 22, + "start_line": 184 + }, + "While handling return value 'cells'" + ], + "start_col": 9, + "start_line": 14 + } + }, + "4479": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.renderGrid_encode_return" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 33, + "end_line": 14, + "input_file": { + "filename": "autogen/starknet/arg_processor/211305a4982e84dee745bdcf06176fa172dde0d5d206f753a2e0d4a223d668e4.cairo" + }, + "parent_location": [ + { + "end_col": 42, + "end_line": 184, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "start_col": 22, + "start_line": 184 + }, + "While handling return value 'cells'" + ], + "start_col": 1, + "start_line": 11 + } + }, + "4481": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.renderGrid_encode_return" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 22, + "end_line": 5, + "input_file": { + "filename": "autogen/starknet/arg_processor/211305a4982e84dee745bdcf06176fa172dde0d5d206f753a2e0d4a223d668e4.cairo" + }, + "parent_location": [ + { + "end_col": 42, + "end_line": 184, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "parent_location": [ + { + "end_col": 40, + "end_line": 10, + "input_file": { + "filename": "autogen/starknet/external/return/renderGrid/fe9a6a1bcaa57ee30a381bd9a108817459a6bd115cb6e4fe27d4c45a53d5294c.cairo" + }, + "parent_location": [ + { + "end_col": 16, + "end_line": 183, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "start_col": 6, + "start_line": 183 + }, + "While handling return value of" + ], + "start_col": 25, + "start_line": 10 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 22, + "start_line": 184 + }, + "While handling return value 'cells'" + ], + "start_col": 7, + "start_line": 5 + } + }, + "4482": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.renderGrid_encode_return" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 63, + "end_line": 11, + "input_file": { + "filename": "autogen/starknet/external/return/renderGrid/fe9a6a1bcaa57ee30a381bd9a108817459a6bd115cb6e4fe27d4c45a53d5294c.cairo" + }, + "parent_location": [ + { + "end_col": 16, + "end_line": 183, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "start_col": 6, + "start_line": 183 + }, + "While handling return value of" + ], + "start_col": 18, + "start_line": 11 + } + }, + "4483": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.renderGrid_encode_return" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 35, + "end_line": 5, + "input_file": { + "filename": "autogen/starknet/external/return/renderGrid/fe9a6a1bcaa57ee30a381bd9a108817459a6bd115cb6e4fe27d4c45a53d5294c.cairo" + }, + "parent_location": [ + { + "end_col": 16, + "end_line": 183, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "parent_location": [ + { + "end_col": 38, + "end_line": 12, + "input_file": { + "filename": "autogen/starknet/external/return/renderGrid/fe9a6a1bcaa57ee30a381bd9a108817459a6bd115cb6e4fe27d4c45a53d5294c.cairo" + }, + "parent_location": [ + { + "end_col": 16, + "end_line": 183, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "start_col": 6, + "start_line": 183 + }, + "While handling return value of" + ], + "start_col": 14, + "start_line": 12 + }, + "While expanding the reference '__return_value_ptr_start' in:" + ], + "start_col": 6, + "start_line": 183 + }, + "While handling return value of" + ], + "start_col": 11, + "start_line": 5 + } + }, + "4484": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.renderGrid_encode_return" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 40, + "end_line": 12, + "input_file": { + "filename": "autogen/starknet/external/return/renderGrid/fe9a6a1bcaa57ee30a381bd9a108817459a6bd115cb6e4fe27d4c45a53d5294c.cairo" + }, + "parent_location": [ + { + "end_col": 16, + "end_line": 183, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "start_col": 6, + "start_line": 183 + }, + "While handling return value of" + ], + "start_col": 5, + "start_line": 9 + } + }, + "4485": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.renderGrid" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 18, + "end_line": 2, + "input_file": { + "filename": "autogen/starknet/external/renderGrid/2ea9c7f0441b228ee60fde547a6f592088d6be14cedb6f979f2f4e15977f79ea.cairo" + }, + "parent_location": [ + { + "end_col": 16, + "end_line": 183, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "start_col": 6, + "start_line": 183 + }, + "While constructing the external wrapper for:" + ], + "start_col": 5, + "start_line": 2 + } + }, + "4487": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.renderGrid" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 58, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/arg_processor/01cba52f8515996bb9d7070bde81ff39281d096d7024a558efcba6e1fd2402cf.cairo" + }, + "parent_location": [ + { + "end_col": 16, + "end_line": 183, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "start_col": 6, + "start_line": 183 + }, + "While handling calldata of" + ], + "start_col": 1, + "start_line": 1 + } + }, + "4488": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.renderGrid" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 64, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/renderGrid/b2c52ca2d2a8fc8791a983086d8716c5eacd0c3d62934914d2286f84b98ff4cb.cairo" + }, + "parent_location": [ + { + "end_col": 35, + "end_line": 183, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "parent_location": [ + { + "end_col": 55, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/renderGrid/e893877178a8e3e6a487467e13267cb6540bc108f9ef40dde6e8760c2ce03e6d.cairo" + }, + "parent_location": [ + { + "end_col": 16, + "end_line": 183, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "start_col": 6, + "start_line": 183 + }, + "While constructing the external wrapper for:" + ], + "start_col": 44, + "start_line": 1 + }, + "While expanding the reference 'syscall_ptr' in:" + ], + "start_col": 17, + "start_line": 183 + }, + "While constructing the external wrapper for:" + ], + "start_col": 19, + "start_line": 1 + } + }, + "4489": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.renderGrid" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 110, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/renderGrid/9684a85e93c782014ca14293edea4eb2502039a5a7b6538ecd39c56faaf12529.cairo" + }, + "parent_location": [ + { + "end_col": 63, + "end_line": 183, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "parent_location": [ + { + "end_col": 82, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/renderGrid/e893877178a8e3e6a487467e13267cb6540bc108f9ef40dde6e8760c2ce03e6d.cairo" + }, + "parent_location": [ + { + "end_col": 16, + "end_line": 183, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "start_col": 6, + "start_line": 183 + }, + "While constructing the external wrapper for:" + ], + "start_col": 70, + "start_line": 1 + }, + "While expanding the reference 'pedersen_ptr' in:" + ], + "start_col": 37, + "start_line": 183 + }, + "While constructing the external wrapper for:" + ], + "start_col": 20, + "start_line": 1 + } + }, + "4490": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.renderGrid" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 67, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/renderGrid/741ea357d6336b0bed7bf0472425acd0311d543883b803388880e60a232040c7.cairo" + }, + "parent_location": [ + { + "end_col": 80, + "end_line": 183, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "parent_location": [ + { + "end_col": 115, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/renderGrid/e893877178a8e3e6a487467e13267cb6540bc108f9ef40dde6e8760c2ce03e6d.cairo" + }, + "parent_location": [ + { + "end_col": 16, + "end_line": 183, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "start_col": 6, + "start_line": 183 + }, + "While constructing the external wrapper for:" + ], + "start_col": 100, + "start_line": 1 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 65, + "start_line": 183 + }, + "While constructing the external wrapper for:" + ], + "start_col": 23, + "start_line": 1 + } + }, + "4491": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.renderGrid" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 16, + "end_line": 183, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "start_col": 6, + "start_line": 183 + } + }, + "4493": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.renderGrid" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 55, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/renderGrid/e893877178a8e3e6a487467e13267cb6540bc108f9ef40dde6e8760c2ce03e6d.cairo" + }, + "parent_location": [ + { + "end_col": 16, + "end_line": 183, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "parent_location": [ + { + "end_col": 55, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/renderGrid/e893877178a8e3e6a487467e13267cb6540bc108f9ef40dde6e8760c2ce03e6d.cairo" + }, + "parent_location": [ + { + "end_col": 16, + "end_line": 183, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "start_col": 6, + "start_line": 183 + }, + "While constructing the external wrapper for:" + ], + "start_col": 44, + "start_line": 1 + }, + "While auto generating local variable for 'syscall_ptr'." + ], + "start_col": 6, + "start_line": 183 + }, + "While constructing the external wrapper for:" + ], + "start_col": 44, + "start_line": 1 + } + }, + "4494": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.renderGrid" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 82, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/renderGrid/e893877178a8e3e6a487467e13267cb6540bc108f9ef40dde6e8760c2ce03e6d.cairo" + }, + "parent_location": [ + { + "end_col": 16, + "end_line": 183, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "parent_location": [ + { + "end_col": 82, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/renderGrid/e893877178a8e3e6a487467e13267cb6540bc108f9ef40dde6e8760c2ce03e6d.cairo" + }, + "parent_location": [ + { + "end_col": 16, + "end_line": 183, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "start_col": 6, + "start_line": 183 + }, + "While constructing the external wrapper for:" + ], + "start_col": 70, + "start_line": 1 + }, + "While auto generating local variable for 'pedersen_ptr'." + ], + "start_col": 6, + "start_line": 183 + }, + "While constructing the external wrapper for:" + ], + "start_col": 70, + "start_line": 1 + } + }, + "4495": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.renderGrid" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 115, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/renderGrid/e893877178a8e3e6a487467e13267cb6540bc108f9ef40dde6e8760c2ce03e6d.cairo" + }, + "parent_location": [ + { + "end_col": 16, + "end_line": 183, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "parent_location": [ + { + "end_col": 99, + "end_line": 2, + "input_file": { + "filename": "autogen/starknet/external/renderGrid/e893877178a8e3e6a487467e13267cb6540bc108f9ef40dde6e8760c2ce03e6d.cairo" + }, + "parent_location": [ + { + "end_col": 16, + "end_line": 183, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "start_col": 6, + "start_line": 183 + }, + "While constructing the external wrapper for:" + ], + "start_col": 84, + "start_line": 2 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 6, + "start_line": 183 + }, + "While constructing the external wrapper for:" + ], + "start_col": 100, + "start_line": 1 + } + }, + "4496": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.renderGrid" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 100, + "end_line": 2, + "input_file": { + "filename": "autogen/starknet/external/renderGrid/e893877178a8e3e6a487467e13267cb6540bc108f9ef40dde6e8760c2ce03e6d.cairo" + }, + "parent_location": [ + { + "end_col": 16, + "end_line": 183, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "start_col": 6, + "start_line": 183 + }, + "While constructing the external wrapper for:" + ], + "start_col": 48, + "start_line": 2 + } + }, + "4498": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.renderGrid" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 55, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/renderGrid/e893877178a8e3e6a487467e13267cb6540bc108f9ef40dde6e8760c2ce03e6d.cairo" + }, + "parent_location": [ + { + "end_col": 16, + "end_line": 183, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "parent_location": [ + { + "end_col": 55, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/renderGrid/e893877178a8e3e6a487467e13267cb6540bc108f9ef40dde6e8760c2ce03e6d.cairo" + }, + "parent_location": [ + { + "end_col": 16, + "end_line": 183, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "parent_location": [ + { + "end_col": 20, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/renderGrid/da17921a4e81c09e730800bbf23bfdbe5e9e6bfaedc59d80fbf62087fa43c27d.cairo" + }, + "parent_location": [ + { + "end_col": 16, + "end_line": 183, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "start_col": 6, + "start_line": 183 + }, + "While constructing the external wrapper for:" + ], + "start_col": 9, + "start_line": 1 + }, + "While expanding the reference 'syscall_ptr' in:" + ], + "start_col": 6, + "start_line": 183 + }, + "While constructing the external wrapper for:" + ], + "start_col": 44, + "start_line": 1 + }, + "While auto generating local variable for 'syscall_ptr'." + ], + "start_col": 6, + "start_line": 183 + }, + "While constructing the external wrapper for:" + ], + "start_col": 44, + "start_line": 1 + } + }, + "4499": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.renderGrid" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 82, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/renderGrid/e893877178a8e3e6a487467e13267cb6540bc108f9ef40dde6e8760c2ce03e6d.cairo" + }, + "parent_location": [ + { + "end_col": 16, + "end_line": 183, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "parent_location": [ + { + "end_col": 82, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/renderGrid/e893877178a8e3e6a487467e13267cb6540bc108f9ef40dde6e8760c2ce03e6d.cairo" + }, + "parent_location": [ + { + "end_col": 16, + "end_line": 183, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "parent_location": [ + { + "end_col": 33, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/renderGrid/da17921a4e81c09e730800bbf23bfdbe5e9e6bfaedc59d80fbf62087fa43c27d.cairo" + }, + "parent_location": [ + { + "end_col": 16, + "end_line": 183, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "start_col": 6, + "start_line": 183 + }, + "While constructing the external wrapper for:" + ], + "start_col": 21, + "start_line": 1 + }, + "While expanding the reference 'pedersen_ptr' in:" + ], + "start_col": 6, + "start_line": 183 + }, + "While constructing the external wrapper for:" + ], + "start_col": 70, + "start_line": 1 + }, + "While auto generating local variable for 'pedersen_ptr'." + ], + "start_col": 6, + "start_line": 183 + }, + "While constructing the external wrapper for:" + ], + "start_col": 70, + "start_line": 1 + } + }, + "4500": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.renderGrid" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 21, + "end_line": 2, + "input_file": { + "filename": "autogen/starknet/external/renderGrid/e893877178a8e3e6a487467e13267cb6540bc108f9ef40dde6e8760c2ce03e6d.cairo" + }, + "parent_location": [ + { + "end_col": 16, + "end_line": 183, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "parent_location": [ + { + "end_col": 49, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/renderGrid/da17921a4e81c09e730800bbf23bfdbe5e9e6bfaedc59d80fbf62087fa43c27d.cairo" + }, + "parent_location": [ + { + "end_col": 16, + "end_line": 183, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "start_col": 6, + "start_line": 183 + }, + "While constructing the external wrapper for:" + ], + "start_col": 34, + "start_line": 1 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 6, + "start_line": 183 + }, + "While constructing the external wrapper for:" + ], + "start_col": 6, + "start_line": 2 + } + }, + "4501": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.renderGrid" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 35, + "end_line": 2, + "input_file": { + "filename": "autogen/starknet/external/renderGrid/e893877178a8e3e6a487467e13267cb6540bc108f9ef40dde6e8760c2ce03e6d.cairo" + }, + "parent_location": [ + { + "end_col": 16, + "end_line": 183, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "parent_location": [ + { + "end_col": 62, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/renderGrid/da17921a4e81c09e730800bbf23bfdbe5e9e6bfaedc59d80fbf62087fa43c27d.cairo" + }, + "parent_location": [ + { + "end_col": 16, + "end_line": 183, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "start_col": 6, + "start_line": 183 + }, + "While constructing the external wrapper for:" + ], + "start_col": 50, + "start_line": 1 + }, + "While expanding the reference 'retdata_size' in:" + ], + "start_col": 6, + "start_line": 183 + }, + "While constructing the external wrapper for:" + ], + "start_col": 23, + "start_line": 2 + } + }, + "4502": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.renderGrid" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 44, + "end_line": 2, + "input_file": { + "filename": "autogen/starknet/external/renderGrid/e893877178a8e3e6a487467e13267cb6540bc108f9ef40dde6e8760c2ce03e6d.cairo" + }, + "parent_location": [ + { + "end_col": 16, + "end_line": 183, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "parent_location": [ + { + "end_col": 70, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/renderGrid/da17921a4e81c09e730800bbf23bfdbe5e9e6bfaedc59d80fbf62087fa43c27d.cairo" + }, + "parent_location": [ + { + "end_col": 16, + "end_line": 183, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "start_col": 6, + "start_line": 183 + }, + "While constructing the external wrapper for:" + ], + "start_col": 63, + "start_line": 1 + }, + "While expanding the reference 'retdata' in:" + ], + "start_col": 6, + "start_line": 183 + }, + "While constructing the external wrapper for:" + ], + "start_col": 37, + "start_line": 2 + } + }, + "4503": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.renderGrid" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 72, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/renderGrid/da17921a4e81c09e730800bbf23bfdbe5e9e6bfaedc59d80fbf62087fa43c27d.cairo" + }, + "parent_location": [ + { + "end_col": 16, + "end_line": 183, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "start_col": 6, + "start_line": 183 + }, + "While constructing the external wrapper for:" + ], + "start_col": 1, + "start_line": 1 + } + }, + "4504": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.mintPublic" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 63, + "end_line": 202, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "parent_location": [ + { + "end_col": 43, + "end_line": 83, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" + }, + "parent_location": [ + { + "end_col": 46, + "end_line": 205, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "start_col": 24, + "start_line": 205 + }, + "While trying to retrieve the implicit argument 'syscall_ptr' in:" + ], + "start_col": 25, + "start_line": 83 + }, + "While expanding the reference 'syscall_ptr' in:" + ], + "start_col": 45, + "start_line": 202 + } + }, + "4505": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.mintPublic" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 43, + "end_line": 202, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "parent_location": [ + { + "end_col": 71, + "end_line": 83, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" + }, + "parent_location": [ + { + "end_col": 46, + "end_line": 205, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "start_col": 24, + "start_line": 205 + }, + "While trying to retrieve the implicit argument 'pedersen_ptr' in:" + ], + "start_col": 45, + "start_line": 83 + }, + "While expanding the reference 'pedersen_ptr' in:" + ], + "start_col": 17, + "start_line": 202 + } + }, + "4506": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.mintPublic" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 80, + "end_line": 202, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "parent_location": [ + { + "end_col": 88, + "end_line": 83, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" + }, + "parent_location": [ + { + "end_col": 46, + "end_line": 205, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "start_col": 24, + "start_line": 205 + }, + "While trying to retrieve the implicit argument 'range_check_ptr' in:" + ], + "start_col": 73, + "start_line": 83 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 65, + "start_line": 202 + } + }, + "4507": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.mintPublic" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 46, + "end_line": 205, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "start_col": 24, + "start_line": 205 + } + }, + "4509": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.mintPublic" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 43, + "end_line": 83, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" + }, + "parent_location": [ + { + "end_col": 46, + "end_line": 205, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "parent_location": [ + { + "end_col": 43, + "end_line": 200, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/starknet/common/syscalls.cairo" + }, + "parent_location": [ + { + "end_col": 40, + "end_line": 206, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "start_col": 20, + "start_line": 206 + }, + "While trying to retrieve the implicit argument 'syscall_ptr' in:" + ], + "start_col": 25, + "start_line": 200 + }, + "While expanding the reference 'syscall_ptr' in:" + ], + "start_col": 24, + "start_line": 205 + }, + "While trying to update the implicit return value 'syscall_ptr' in:" + ], + "start_col": 25, + "start_line": 83 + } + }, + "4510": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.mintPublic" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 40, + "end_line": 206, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "start_col": 20, + "start_line": 206 + } + }, + "4512": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.mintPublic" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 43, + "end_line": 200, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/starknet/common/syscalls.cairo" + }, + "parent_location": [ + { + "end_col": 40, + "end_line": 206, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "parent_location": [ + { + "end_col": 45, + "end_line": 274, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/starknet/common/syscalls.cairo" + }, + "parent_location": [ + { + "end_col": 45, + "end_line": 207, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "start_col": 23, + "start_line": 207 + }, + "While trying to retrieve the implicit argument 'syscall_ptr' in:" + ], + "start_col": 27, + "start_line": 274 + }, + "While expanding the reference 'syscall_ptr' in:" + ], + "start_col": 20, + "start_line": 206 + }, + "While trying to update the implicit return value 'syscall_ptr' in:" + ], + "start_col": 25, + "start_line": 200 + } + }, + "4513": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.mintPublic" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 45, + "end_line": 207, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "start_col": 23, + "start_line": 207 + } + }, + "4515": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.mintPublic" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 45, + "end_line": 274, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/starknet/common/syscalls.cairo" + }, + "parent_location": [ + { + "end_col": 45, + "end_line": 207, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "parent_location": [ + { + "end_col": 37, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/contract_interface/IERC20/transferFrom/f8c7980cd46ed6d764c999318b5692736b724dc08c1bf96e92d1b77ddf37af10.cairo" + }, + "parent_location": [ + { + "end_col": 22, + "end_line": 31, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc20/IERC20.cairo" + }, + "parent_location": [ + { + "end_col": 6, + "end_line": 213, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "start_col": 5, + "start_line": 208 + }, + "While trying to retrieve the implicit argument 'syscall_ptr' in:" + ], + "start_col": 10, + "start_line": 31 + }, + "While handling contract interface function:" + ], + "start_col": 19, + "start_line": 1 + }, + "While expanding the reference 'syscall_ptr' in:" + ], + "start_col": 23, + "start_line": 207 + }, + "While trying to update the implicit return value 'syscall_ptr' in:" + ], + "start_col": 27, + "start_line": 274 + } + }, + "4516": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.mintPublic" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 88, + "end_line": 83, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" + }, + "parent_location": [ + { + "end_col": 46, + "end_line": 205, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "parent_location": [ + { + "end_col": 54, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/contract_interface/IERC20/transferFrom/f8c7980cd46ed6d764c999318b5692736b724dc08c1bf96e92d1b77ddf37af10.cairo" + }, + "parent_location": [ + { + "end_col": 22, + "end_line": 31, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc20/IERC20.cairo" + }, + "parent_location": [ + { + "end_col": 6, + "end_line": 213, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "start_col": 5, + "start_line": 208 + }, + "While trying to retrieve the implicit argument 'range_check_ptr' in:" + ], + "start_col": 10, + "start_line": 31 + }, + "While handling contract interface function:" + ], + "start_col": 39, + "start_line": 1 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 24, + "start_line": 205 + }, + "While trying to update the implicit return value 'range_check_ptr' in:" + ], + "start_col": 73, + "start_line": 83 + } + }, + "4517": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.mintPublic" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 37, + "end_line": 209, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "start_col": 26, + "start_line": 209 + } + }, + "4519": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.mintPublic" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 16, + "end_line": 206, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "parent_location": [ + { + "end_col": 22, + "end_line": 210, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "start_col": 16, + "start_line": 210 + }, + "While expanding the reference 'sender' in:" + ], + "start_col": 10, + "start_line": 206 + } + }, + "4520": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.mintPublic" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 19, + "end_line": 207, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "parent_location": [ + { + "end_col": 28, + "end_line": 211, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "start_col": 19, + "start_line": 211 + }, + "While expanding the reference 'recipient' in:" + ], + "start_col": 10, + "start_line": 207 + } + }, + "4521": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.mintPublic" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 20, + "end_line": 205, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "parent_location": [ + { + "end_col": 34, + "end_line": 212, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "start_col": 24, + "start_line": 212 + }, + "While expanding the reference 'cell_price' in:" + ], + "start_col": 10, + "start_line": 205 + } + }, + "4522": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.mintPublic" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 37, + "end_line": 212, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "start_col": 36, + "start_line": 212 + } + }, + "4524": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.mintPublic" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 6, + "end_line": 213, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "start_col": 5, + "start_line": 208 + } + }, + "4526": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.mintPublic" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 71, + "end_line": 83, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" + }, + "parent_location": [ + { + "end_col": 46, + "end_line": 205, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "parent_location": [ + { + "end_col": 41, + "end_line": 191, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" + }, + "parent_location": [ + { + "end_col": 42, + "end_line": 214, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "start_col": 5, + "start_line": 214 + }, + "While trying to retrieve the implicit argument 'pedersen_ptr' in:" + ], + "start_col": 15, + "start_line": 191 + }, + "While expanding the reference 'pedersen_ptr' in:" + ], + "start_col": 24, + "start_line": 205 + }, + "While trying to update the implicit return value 'pedersen_ptr' in:" + ], + "start_col": 45, + "start_line": 83 + } + }, + "4527": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.mintPublic" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 37, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/contract_interface/IERC20/transferFrom/f8c7980cd46ed6d764c999318b5692736b724dc08c1bf96e92d1b77ddf37af10.cairo" + }, + "parent_location": [ + { + "end_col": 22, + "end_line": 31, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc20/IERC20.cairo" + }, + "parent_location": [ + { + "end_col": 6, + "end_line": 213, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "parent_location": [ + { + "end_col": 61, + "end_line": 191, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" + }, + "parent_location": [ + { + "end_col": 42, + "end_line": 214, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "start_col": 5, + "start_line": 214 + }, + "While trying to retrieve the implicit argument 'syscall_ptr' in:" + ], + "start_col": 43, + "start_line": 191 + }, + "While expanding the reference 'syscall_ptr' in:" + ], + "start_col": 5, + "start_line": 208 + }, + "While trying to update the implicit return value 'syscall_ptr' in:" + ], + "start_col": 10, + "start_line": 31 + }, + "While handling contract interface function:" + ], + "start_col": 19, + "start_line": 1 + } + }, + "4528": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.mintPublic" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 54, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/contract_interface/IERC20/transferFrom/f8c7980cd46ed6d764c999318b5692736b724dc08c1bf96e92d1b77ddf37af10.cairo" + }, + "parent_location": [ + { + "end_col": 22, + "end_line": 31, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc20/IERC20.cairo" + }, + "parent_location": [ + { + "end_col": 6, + "end_line": 213, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "parent_location": [ + { + "end_col": 78, + "end_line": 191, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" + }, + "parent_location": [ + { + "end_col": 42, + "end_line": 214, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "start_col": 5, + "start_line": 214 + }, + "While trying to retrieve the implicit argument 'range_check_ptr' in:" + ], + "start_col": 63, + "start_line": 191 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 5, + "start_line": 208 + }, + "While trying to update the implicit return value 'range_check_ptr' in:" + ], + "start_col": 10, + "start_line": 31 + }, + "While handling contract interface function:" + ], + "start_col": 39, + "start_line": 1 + } + }, + "4529": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.mintPublic" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 21, + "end_line": 203, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "parent_location": [ + { + "end_col": 23, + "end_line": 214, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "start_col": 16, + "start_line": 214 + }, + "While expanding the reference 'tokenId' in:" + ], + "start_col": 5, + "start_line": 203 + } + }, + "4530": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.mintPublic" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 21, + "end_line": 203, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "parent_location": [ + { + "end_col": 23, + "end_line": 214, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "start_col": 16, + "start_line": 214 + }, + "While expanding the reference 'tokenId' in:" + ], + "start_col": 5, + "start_line": 203 + } + }, + "4531": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.mintPublic" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 38, + "end_line": 203, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "parent_location": [ + { + "end_col": 34, + "end_line": 214, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "start_col": 25, + "start_line": 214 + }, + "While expanding the reference 'proof_len' in:" + ], + "start_col": 23, + "start_line": 203 + } + }, + "4532": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.mintPublic" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 52, + "end_line": 203, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "parent_location": [ + { + "end_col": 41, + "end_line": 214, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "start_col": 36, + "start_line": 214 + }, + "While expanding the reference 'proof' in:" + ], + "start_col": 40, + "start_line": 203 + } + }, + "4533": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.mintPublic" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 42, + "end_line": 214, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "start_col": 5, + "start_line": 214 + } + }, + "4535": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.mintPublic" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 39, + "end_line": 215, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "start_col": 32, + "start_line": 215 + } + }, + "4537": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.mintPublic" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 61, + "end_line": 191, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" + }, + "parent_location": [ + { + "end_col": 42, + "end_line": 214, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "parent_location": [ + { + "end_col": 37, + "end_line": 118, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" + }, + "parent_location": [ + { + "end_col": 6, + "end_line": 222, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "start_col": 5, + "start_line": 216 + }, + "While trying to retrieve the implicit argument 'syscall_ptr' in:" + ], + "start_col": 19, + "start_line": 118 + }, + "While expanding the reference 'syscall_ptr' in:" + ], + "start_col": 5, + "start_line": 214 + }, + "While trying to update the implicit return value 'syscall_ptr' in:" + ], + "start_col": 43, + "start_line": 191 + } + }, + "4538": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.mintPublic" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 41, + "end_line": 191, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" + }, + "parent_location": [ + { + "end_col": 42, + "end_line": 214, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "parent_location": [ + { + "end_col": 65, + "end_line": 118, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" + }, + "parent_location": [ + { + "end_col": 6, + "end_line": 222, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "start_col": 5, + "start_line": 216 + }, + "While trying to retrieve the implicit argument 'pedersen_ptr' in:" + ], + "start_col": 39, + "start_line": 118 + }, + "While expanding the reference 'pedersen_ptr' in:" + ], + "start_col": 5, + "start_line": 214 + }, + "While trying to update the implicit return value 'pedersen_ptr' in:" + ], + "start_col": 15, + "start_line": 191 + } + }, + "4539": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.mintPublic" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 78, + "end_line": 191, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" + }, + "parent_location": [ + { + "end_col": 42, + "end_line": 214, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "parent_location": [ + { + "end_col": 82, + "end_line": 118, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" + }, + "parent_location": [ + { + "end_col": 6, + "end_line": 222, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "start_col": 5, + "start_line": 216 + }, + "While trying to retrieve the implicit argument 'range_check_ptr' in:" + ], + "start_col": 67, + "start_line": 118 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 5, + "start_line": 214 + }, + "While trying to update the implicit return value 'range_check_ptr' in:" + ], + "start_col": 63, + "start_line": 191 + } + }, + "4540": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.mintPublic" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 29, + "end_line": 217, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "start_col": 18, + "start_line": 217 + } + }, + "4541": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.mintPublic" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 34, + "end_line": 218, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "start_col": 26, + "start_line": 218 + } + }, + "4543": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.mintPublic" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 16, + "end_line": 219, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "start_col": 15, + "start_line": 219 + } + }, + "4545": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.mintPublic" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 28, + "end_line": 220, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "start_col": 27, + "start_line": 220 + } + }, + "4547": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.mintPublic" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 29, + "end_line": 215, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "parent_location": [ + { + "end_col": 36, + "end_line": 221, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "start_col": 23, + "start_line": 221 + }, + "While expanding the reference 'cell_calldata' in:" + ], + "start_col": 9, + "start_line": 215 + } + }, + "4548": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.mintPublic" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 6, + "end_line": 222, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "start_col": 5, + "start_line": 216 + } + }, + "4550": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.mintPublic" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 65, + "end_line": 118, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" + }, + "parent_location": [ + { + "end_col": 6, + "end_line": 222, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "parent_location": [ + { + "end_col": 43, + "end_line": 202, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "parent_location": [ + { + "end_col": 15, + "end_line": 223, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "start_col": 5, + "start_line": 223 + }, + "While trying to retrieve the implicit argument 'pedersen_ptr' in:" + ], + "start_col": 17, + "start_line": 202 + }, + "While expanding the reference 'pedersen_ptr' in:" + ], + "start_col": 5, + "start_line": 216 + }, + "While trying to update the implicit return value 'pedersen_ptr' in:" + ], + "start_col": 39, + "start_line": 118 + } + }, + "4551": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.mintPublic" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 37, + "end_line": 118, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" + }, + "parent_location": [ + { + "end_col": 6, + "end_line": 222, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "parent_location": [ + { + "end_col": 63, + "end_line": 202, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "parent_location": [ + { + "end_col": 15, + "end_line": 223, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "start_col": 5, + "start_line": 223 + }, + "While trying to retrieve the implicit argument 'syscall_ptr' in:" + ], + "start_col": 45, + "start_line": 202 + }, + "While expanding the reference 'syscall_ptr' in:" + ], + "start_col": 5, + "start_line": 216 + }, + "While trying to update the implicit return value 'syscall_ptr' in:" + ], + "start_col": 19, + "start_line": 118 + } + }, + "4552": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.mintPublic" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 82, + "end_line": 118, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" + }, + "parent_location": [ + { + "end_col": 6, + "end_line": 222, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "parent_location": [ + { + "end_col": 80, + "end_line": 202, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "parent_location": [ + { + "end_col": 15, + "end_line": 223, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "start_col": 5, + "start_line": 223 + }, + "While trying to retrieve the implicit argument 'range_check_ptr' in:" + ], + "start_col": 65, + "start_line": 202 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 5, + "start_line": 216 + }, + "While trying to update the implicit return value 'range_check_ptr' in:" + ], + "start_col": 67, + "start_line": 118 + } + }, + "4553": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.mintPublic" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 15, + "end_line": 223, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "start_col": 5, + "start_line": 223 + } + }, + "4554": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.mintPublic" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 67, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/mintPublic/741ea357d6336b0bed7bf0472425acd0311d543883b803388880e60a232040c7.cairo" + }, + "parent_location": [ + { + "end_col": 80, + "end_line": 202, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "parent_location": [ + { + "end_col": 24, + "end_line": 2, + "input_file": { + "filename": "autogen/starknet/arg_processor/c8edcb1cbb2b70f99346c0510efba5a82524d6fbe8558629ad05a45a84efd25b.cairo" + }, + "parent_location": [ + { + "end_col": 52, + "end_line": 203, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "start_col": 40, + "start_line": 203 + }, + "While handling calldata argument 'proof'" + ], + "start_col": 9, + "start_line": 2 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 65, + "start_line": 202 + }, + "While constructing the external wrapper for:" + ], + "start_col": 23, + "start_line": 1 + } + }, + "4555": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.mintPublic" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 48, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/arg_processor/991f62016c321db1ce050da1566d298118c65229306c26d6cd25e91286a63d4b.cairo" + }, + "parent_location": [ + { + "end_col": 38, + "end_line": 203, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "parent_location": [ + { + "end_col": 52, + "end_line": 2, + "input_file": { + "filename": "autogen/starknet/arg_processor/c8edcb1cbb2b70f99346c0510efba5a82524d6fbe8558629ad05a45a84efd25b.cairo" + }, + "parent_location": [ + { + "end_col": 52, + "end_line": 203, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "start_col": 40, + "start_line": 203 + }, + "While handling calldata argument 'proof'" + ], + "start_col": 28, + "start_line": 2 + }, + "While expanding the reference '__calldata_arg_proof_len' in:" + ], + "start_col": 23, + "start_line": 203 + }, + "While handling calldata argument 'proof_len'" + ], + "start_col": 32, + "start_line": 1 + } + }, + "4556": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.mintPublic" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 53, + "end_line": 2, + "input_file": { + "filename": "autogen/starknet/arg_processor/c8edcb1cbb2b70f99346c0510efba5a82524d6fbe8558629ad05a45a84efd25b.cairo" + }, + "parent_location": [ + { + "end_col": 52, + "end_line": 203, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "start_col": 40, + "start_line": 203 + }, + "While handling calldata argument 'proof'" + ], + "start_col": 1, + "start_line": 2 + } + }, + "4557": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.mintPublic" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 40, + "end_line": 2, + "input_file": { + "filename": "autogen/starknet/arg_processor/991f62016c321db1ce050da1566d298118c65229306c26d6cd25e91286a63d4b.cairo" + }, + "parent_location": [ + { + "end_col": 38, + "end_line": 203, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "parent_location": [ + { + "end_col": 40, + "end_line": 8, + "input_file": { + "filename": "autogen/starknet/arg_processor/c8edcb1cbb2b70f99346c0510efba5a82524d6fbe8558629ad05a45a84efd25b.cairo" + }, + "parent_location": [ + { + "end_col": 52, + "end_line": 203, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "start_col": 40, + "start_line": 203 + }, + "While handling calldata argument 'proof'" + ], + "start_col": 26, + "start_line": 8 + }, + "While expanding the reference '__calldata_ptr' in:" + ], + "start_col": 23, + "start_line": 203 + }, + "While handling calldata argument 'proof_len'" + ], + "start_col": 22, + "start_line": 2 + } + }, + "4559": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.mintPublic" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 48, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/arg_processor/991f62016c321db1ce050da1566d298118c65229306c26d6cd25e91286a63d4b.cairo" + }, + "parent_location": [ + { + "end_col": 38, + "end_line": 203, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "parent_location": [ + { + "end_col": 67, + "end_line": 8, + "input_file": { + "filename": "autogen/starknet/arg_processor/c8edcb1cbb2b70f99346c0510efba5a82524d6fbe8558629ad05a45a84efd25b.cairo" + }, + "parent_location": [ + { + "end_col": 52, + "end_line": 203, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "start_col": 40, + "start_line": 203 + }, + "While handling calldata argument 'proof'" + ], + "start_col": 43, + "start_line": 8 + }, + "While expanding the reference '__calldata_arg_proof_len' in:" + ], + "start_col": 23, + "start_line": 203 + }, + "While handling calldata argument 'proof_len'" + ], + "start_col": 32, + "start_line": 1 + } + }, + "4560": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.mintPublic" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 71, + "end_line": 8, + "input_file": { + "filename": "autogen/starknet/arg_processor/c8edcb1cbb2b70f99346c0510efba5a82524d6fbe8558629ad05a45a84efd25b.cairo" + }, + "parent_location": [ + { + "end_col": 52, + "end_line": 203, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "start_col": 40, + "start_line": 203 + }, + "While handling calldata argument 'proof'" + ], + "start_col": 26, + "start_line": 8 + } + }, + "4561": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.mintPublic" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 58, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/arg_processor/01cba52f8515996bb9d7070bde81ff39281d096d7024a558efcba6e1fd2402cf.cairo" + }, + "parent_location": [ + { + "end_col": 16, + "end_line": 202, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "start_col": 6, + "start_line": 202 + }, + "While handling calldata of" + ], + "start_col": 1, + "start_line": 1 + } + }, + "4562": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.mintPublic" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 67, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/mintPublic/741ea357d6336b0bed7bf0472425acd0311d543883b803388880e60a232040c7.cairo" + }, + "parent_location": [ + { + "end_col": 80, + "end_line": 202, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "parent_location": [ + { + "end_col": 38, + "end_line": 3, + "input_file": { + "filename": "autogen/starknet/arg_processor/c8edcb1cbb2b70f99346c0510efba5a82524d6fbe8558629ad05a45a84efd25b.cairo" + }, + "parent_location": [ + { + "end_col": 52, + "end_line": 203, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "parent_location": [ + { + "end_col": 115, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/mintPublic/03792f53710bdf1b4f13130505d4195b48cad96eb41b093c9596524ebfb1aea6.cairo" + }, + "parent_location": [ + { + "end_col": 16, + "end_line": 202, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "start_col": 6, + "start_line": 202 + }, + "While constructing the external wrapper for:" + ], + "start_col": 100, + "start_line": 1 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 40, + "start_line": 203 + }, + "While handling calldata argument 'proof'" + ], + "start_col": 23, + "start_line": 3 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 65, + "start_line": 202 + }, + "While constructing the external wrapper for:" + ], + "start_col": 23, + "start_line": 1 + } + }, + "4563": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.mintPublic" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 110, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/mintPublic/9684a85e93c782014ca14293edea4eb2502039a5a7b6538ecd39c56faaf12529.cairo" + }, + "parent_location": [ + { + "end_col": 43, + "end_line": 202, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "parent_location": [ + { + "end_col": 57, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/mintPublic/03792f53710bdf1b4f13130505d4195b48cad96eb41b093c9596524ebfb1aea6.cairo" + }, + "parent_location": [ + { + "end_col": 16, + "end_line": 202, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "start_col": 6, + "start_line": 202 + }, + "While constructing the external wrapper for:" + ], + "start_col": 45, + "start_line": 1 + }, + "While expanding the reference 'pedersen_ptr' in:" + ], + "start_col": 17, + "start_line": 202 + }, + "While constructing the external wrapper for:" + ], + "start_col": 20, + "start_line": 1 + } + }, + "4564": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.mintPublic" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 64, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/mintPublic/b2c52ca2d2a8fc8791a983086d8716c5eacd0c3d62934914d2286f84b98ff4cb.cairo" + }, + "parent_location": [ + { + "end_col": 63, + "end_line": 202, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "parent_location": [ + { + "end_col": 82, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/mintPublic/03792f53710bdf1b4f13130505d4195b48cad96eb41b093c9596524ebfb1aea6.cairo" + }, + "parent_location": [ + { + "end_col": 16, + "end_line": 202, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "start_col": 6, + "start_line": 202 + }, + "While constructing the external wrapper for:" + ], + "start_col": 71, + "start_line": 1 + }, + "While expanding the reference 'syscall_ptr' in:" + ], + "start_col": 45, + "start_line": 202 + }, + "While constructing the external wrapper for:" + ], + "start_col": 19, + "start_line": 1 + } + }, + "4565": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.mintPublic" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 42, + "end_line": 3, + "input_file": { + "filename": "autogen/starknet/arg_processor/c8edcb1cbb2b70f99346c0510efba5a82524d6fbe8558629ad05a45a84efd25b.cairo" + }, + "parent_location": [ + { + "end_col": 52, + "end_line": 203, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "parent_location": [ + { + "end_col": 115, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/mintPublic/03792f53710bdf1b4f13130505d4195b48cad96eb41b093c9596524ebfb1aea6.cairo" + }, + "parent_location": [ + { + "end_col": 16, + "end_line": 202, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "start_col": 6, + "start_line": 202 + }, + "While constructing the external wrapper for:" + ], + "start_col": 100, + "start_line": 1 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 40, + "start_line": 203 + }, + "While handling calldata argument 'proof'" + ], + "start_col": 23, + "start_line": 3 + } + }, + "4567": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.mintPublic" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 67, + "end_line": 2, + "input_file": { + "filename": "autogen/starknet/arg_processor/60c79ef5477686f2843e61432dcde7f4fc0f354d42095115ea9dca625a35df6e.cairo" + }, + "parent_location": [ + { + "end_col": 21, + "end_line": 203, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "parent_location": [ + { + "end_col": 147, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/mintPublic/03792f53710bdf1b4f13130505d4195b48cad96eb41b093c9596524ebfb1aea6.cairo" + }, + "parent_location": [ + { + "end_col": 16, + "end_line": 202, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "start_col": 6, + "start_line": 202 + }, + "While constructing the external wrapper for:" + ], + "start_col": 125, + "start_line": 1 + }, + "While expanding the reference '__calldata_arg_tokenId' in:" + ], + "start_col": 5, + "start_line": 203 + }, + "While handling calldata argument 'tokenId'" + ], + "start_col": 30, + "start_line": 1 + } + }, + "4568": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.mintPublic" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 67, + "end_line": 2, + "input_file": { + "filename": "autogen/starknet/arg_processor/60c79ef5477686f2843e61432dcde7f4fc0f354d42095115ea9dca625a35df6e.cairo" + }, + "parent_location": [ + { + "end_col": 21, + "end_line": 203, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "parent_location": [ + { + "end_col": 147, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/mintPublic/03792f53710bdf1b4f13130505d4195b48cad96eb41b093c9596524ebfb1aea6.cairo" + }, + "parent_location": [ + { + "end_col": 16, + "end_line": 202, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "start_col": 6, + "start_line": 202 + }, + "While constructing the external wrapper for:" + ], + "start_col": 125, + "start_line": 1 + }, + "While expanding the reference '__calldata_arg_tokenId' in:" + ], + "start_col": 5, + "start_line": 203 + }, + "While handling calldata argument 'tokenId'" + ], + "start_col": 30, + "start_line": 1 + } + }, + "4569": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.mintPublic" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 48, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/arg_processor/991f62016c321db1ce050da1566d298118c65229306c26d6cd25e91286a63d4b.cairo" + }, + "parent_location": [ + { + "end_col": 38, + "end_line": 203, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "parent_location": [ + { + "end_col": 183, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/mintPublic/03792f53710bdf1b4f13130505d4195b48cad96eb41b093c9596524ebfb1aea6.cairo" + }, + "parent_location": [ + { + "end_col": 16, + "end_line": 202, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "start_col": 6, + "start_line": 202 + }, + "While constructing the external wrapper for:" + ], + "start_col": 159, + "start_line": 1 + }, + "While expanding the reference '__calldata_arg_proof_len' in:" + ], + "start_col": 23, + "start_line": 203 + }, + "While handling calldata argument 'proof_len'" + ], + "start_col": 32, + "start_line": 1 + } + }, + "4570": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.mintPublic" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 55, + "end_line": 5, + "input_file": { + "filename": "autogen/starknet/arg_processor/c8edcb1cbb2b70f99346c0510efba5a82524d6fbe8558629ad05a45a84efd25b.cairo" + }, + "parent_location": [ + { + "end_col": 52, + "end_line": 203, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "parent_location": [ + { + "end_col": 211, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/mintPublic/03792f53710bdf1b4f13130505d4195b48cad96eb41b093c9596524ebfb1aea6.cairo" + }, + "parent_location": [ + { + "end_col": 16, + "end_line": 202, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "start_col": 6, + "start_line": 202 + }, + "While constructing the external wrapper for:" + ], + "start_col": 191, + "start_line": 1 + }, + "While expanding the reference '__calldata_arg_proof' in:" + ], + "start_col": 40, + "start_line": 203 + }, + "While handling calldata argument 'proof'" + ], + "start_col": 28, + "start_line": 5 + } + }, + "4572": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.mintPublic" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 16, + "end_line": 202, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "start_col": 6, + "start_line": 202 + } + }, + "4574": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.mintPublic" + ], + "flow_tracking_data": null, + "hints": [ + { + "location": { + "end_col": 34, + "end_line": 2, + "input_file": { + "filename": "autogen/starknet/external/mintPublic/03792f53710bdf1b4f13130505d4195b48cad96eb41b093c9596524ebfb1aea6.cairo" + }, + "parent_location": [ + { + "end_col": 16, + "end_line": 202, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "start_col": 6, + "start_line": 202 + }, + "While constructing the external wrapper for:" + ], + "start_col": 1, + "start_line": 2 + }, + "n_prefix_newlines": 0 + } + ], + "inst": { + "end_col": 24, + "end_line": 3, + "input_file": { + "filename": "autogen/starknet/external/mintPublic/03792f53710bdf1b4f13130505d4195b48cad96eb41b093c9596524ebfb1aea6.cairo" + }, + "parent_location": [ + { + "end_col": 16, + "end_line": 202, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "start_col": 6, + "start_line": 202 + }, + "While constructing the external wrapper for:" + ], + "start_col": 1, + "start_line": 3 + } + }, + "4576": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.mintPublic" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 82, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/mintPublic/03792f53710bdf1b4f13130505d4195b48cad96eb41b093c9596524ebfb1aea6.cairo" + }, + "parent_location": [ + { + "end_col": 16, + "end_line": 202, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "parent_location": [ + { + "end_col": 20, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/mintPublic/da17921a4e81c09e730800bbf23bfdbe5e9e6bfaedc59d80fbf62087fa43c27d.cairo" + }, + "parent_location": [ + { + "end_col": 16, + "end_line": 202, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "start_col": 6, + "start_line": 202 + }, + "While constructing the external wrapper for:" + ], + "start_col": 9, + "start_line": 1 + }, + "While expanding the reference 'syscall_ptr' in:" + ], + "start_col": 6, + "start_line": 202 + }, + "While constructing the external wrapper for:" + ], + "start_col": 71, + "start_line": 1 + } + }, + "4577": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.mintPublic" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 57, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/mintPublic/03792f53710bdf1b4f13130505d4195b48cad96eb41b093c9596524ebfb1aea6.cairo" + }, + "parent_location": [ + { + "end_col": 16, + "end_line": 202, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "parent_location": [ + { + "end_col": 33, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/mintPublic/da17921a4e81c09e730800bbf23bfdbe5e9e6bfaedc59d80fbf62087fa43c27d.cairo" + }, + "parent_location": [ + { + "end_col": 16, + "end_line": 202, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "start_col": 6, + "start_line": 202 + }, + "While constructing the external wrapper for:" + ], + "start_col": 21, + "start_line": 1 + }, + "While expanding the reference 'pedersen_ptr' in:" + ], + "start_col": 6, + "start_line": 202 + }, + "While constructing the external wrapper for:" + ], + "start_col": 45, + "start_line": 1 + } + }, + "4578": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.mintPublic" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 115, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/mintPublic/03792f53710bdf1b4f13130505d4195b48cad96eb41b093c9596524ebfb1aea6.cairo" + }, + "parent_location": [ + { + "end_col": 16, + "end_line": 202, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "parent_location": [ + { + "end_col": 49, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/mintPublic/da17921a4e81c09e730800bbf23bfdbe5e9e6bfaedc59d80fbf62087fa43c27d.cairo" + }, + "parent_location": [ + { + "end_col": 16, + "end_line": 202, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "start_col": 6, + "start_line": 202 + }, + "While constructing the external wrapper for:" + ], + "start_col": 34, + "start_line": 1 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 6, + "start_line": 202 + }, + "While constructing the external wrapper for:" + ], + "start_col": 100, + "start_line": 1 + } + }, + "4579": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.mintPublic" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 21, + "end_line": 4, + "input_file": { + "filename": "autogen/starknet/external/mintPublic/03792f53710bdf1b4f13130505d4195b48cad96eb41b093c9596524ebfb1aea6.cairo" + }, + "parent_location": [ + { + "end_col": 16, + "end_line": 202, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "parent_location": [ + { + "end_col": 62, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/mintPublic/da17921a4e81c09e730800bbf23bfdbe5e9e6bfaedc59d80fbf62087fa43c27d.cairo" + }, + "parent_location": [ + { + "end_col": 16, + "end_line": 202, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "start_col": 6, + "start_line": 202 + }, + "While constructing the external wrapper for:" + ], + "start_col": 50, + "start_line": 1 + }, + "While expanding the reference 'retdata_size' in:" + ], + "start_col": 6, + "start_line": 202 + }, + "While constructing the external wrapper for:" + ], + "start_col": 20, + "start_line": 4 + } + }, + "4581": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.mintPublic" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 16, + "end_line": 3, + "input_file": { + "filename": "autogen/starknet/external/mintPublic/03792f53710bdf1b4f13130505d4195b48cad96eb41b093c9596524ebfb1aea6.cairo" + }, + "parent_location": [ + { + "end_col": 16, + "end_line": 202, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "parent_location": [ + { + "end_col": 70, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/mintPublic/da17921a4e81c09e730800bbf23bfdbe5e9e6bfaedc59d80fbf62087fa43c27d.cairo" + }, + "parent_location": [ + { + "end_col": 16, + "end_line": 202, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "start_col": 6, + "start_line": 202 + }, + "While constructing the external wrapper for:" + ], + "start_col": 63, + "start_line": 1 + }, + "While expanding the reference 'retdata' in:" + ], + "start_col": 6, + "start_line": 202 + }, + "While constructing the external wrapper for:" + ], + "start_col": 9, + "start_line": 3 + } + }, + "4582": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.mintPublic" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 72, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/mintPublic/da17921a4e81c09e730800bbf23bfdbe5e9e6bfaedc59d80fbf62087fa43c27d.cairo" + }, + "parent_location": [ + { + "end_col": 16, + "end_line": 202, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "start_col": 6, + "start_line": 202 + }, + "While constructing the external wrapper for:" + ], + "start_col": 1, + "start_line": 1 + } + }, + "4583": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.mintAndSetPublic" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 69, + "end_line": 227, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "parent_location": [ + { + "end_col": 43, + "end_line": 83, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" + }, + "parent_location": [ + { + "end_col": 46, + "end_line": 236, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "start_col": 24, + "start_line": 236 + }, + "While trying to retrieve the implicit argument 'syscall_ptr' in:" + ], + "start_col": 25, + "start_line": 83 + }, + "While expanding the reference 'syscall_ptr' in:" + ], + "start_col": 51, + "start_line": 227 + } + }, + "4584": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.mintAndSetPublic" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 49, + "end_line": 227, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "parent_location": [ + { + "end_col": 71, + "end_line": 83, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" + }, + "parent_location": [ + { + "end_col": 46, + "end_line": 236, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "start_col": 24, + "start_line": 236 + }, + "While trying to retrieve the implicit argument 'pedersen_ptr' in:" + ], + "start_col": 45, + "start_line": 83 + }, + "While expanding the reference 'pedersen_ptr' in:" + ], + "start_col": 23, + "start_line": 227 + } + }, + "4585": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.mintAndSetPublic" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 86, + "end_line": 227, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "parent_location": [ + { + "end_col": 88, + "end_line": 83, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" + }, + "parent_location": [ + { + "end_col": 46, + "end_line": 236, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "start_col": 24, + "start_line": 236 + }, + "While trying to retrieve the implicit argument 'range_check_ptr' in:" + ], + "start_col": 73, + "start_line": 83 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 71, + "start_line": 227 + } + }, + "4586": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.mintAndSetPublic" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 46, + "end_line": 236, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "start_col": 24, + "start_line": 236 + } + }, + "4588": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.mintAndSetPublic" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 43, + "end_line": 83, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" + }, + "parent_location": [ + { + "end_col": 46, + "end_line": 236, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "parent_location": [ + { + "end_col": 43, + "end_line": 200, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/starknet/common/syscalls.cairo" + }, + "parent_location": [ + { + "end_col": 40, + "end_line": 237, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "start_col": 20, + "start_line": 237 + }, + "While trying to retrieve the implicit argument 'syscall_ptr' in:" + ], + "start_col": 25, + "start_line": 200 + }, + "While expanding the reference 'syscall_ptr' in:" + ], + "start_col": 24, + "start_line": 236 + }, + "While trying to update the implicit return value 'syscall_ptr' in:" + ], + "start_col": 25, + "start_line": 83 + } + }, + "4589": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.mintAndSetPublic" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 40, + "end_line": 237, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "start_col": 20, + "start_line": 237 + } + }, + "4591": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.mintAndSetPublic" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 43, + "end_line": 200, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/starknet/common/syscalls.cairo" + }, + "parent_location": [ + { + "end_col": 40, + "end_line": 237, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "parent_location": [ + { + "end_col": 45, + "end_line": 274, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/starknet/common/syscalls.cairo" + }, + "parent_location": [ + { + "end_col": 45, + "end_line": 238, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "start_col": 23, + "start_line": 238 + }, + "While trying to retrieve the implicit argument 'syscall_ptr' in:" + ], + "start_col": 27, + "start_line": 274 + }, + "While expanding the reference 'syscall_ptr' in:" + ], + "start_col": 20, + "start_line": 237 + }, + "While trying to update the implicit return value 'syscall_ptr' in:" + ], + "start_col": 25, + "start_line": 200 + } + }, + "4592": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.mintAndSetPublic" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 45, + "end_line": 238, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "start_col": 23, + "start_line": 238 + } + }, + "4594": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.mintAndSetPublic" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 45, + "end_line": 274, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/starknet/common/syscalls.cairo" + }, + "parent_location": [ + { + "end_col": 45, + "end_line": 238, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "parent_location": [ + { + "end_col": 37, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/contract_interface/IERC20/transferFrom/f8c7980cd46ed6d764c999318b5692736b724dc08c1bf96e92d1b77ddf37af10.cairo" + }, + "parent_location": [ + { + "end_col": 22, + "end_line": 31, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc20/IERC20.cairo" + }, + "parent_location": [ + { + "end_col": 6, + "end_line": 244, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "start_col": 5, + "start_line": 239 + }, + "While trying to retrieve the implicit argument 'syscall_ptr' in:" + ], + "start_col": 10, + "start_line": 31 + }, + "While handling contract interface function:" + ], + "start_col": 19, + "start_line": 1 + }, + "While expanding the reference 'syscall_ptr' in:" + ], + "start_col": 23, + "start_line": 238 + }, + "While trying to update the implicit return value 'syscall_ptr' in:" + ], + "start_col": 27, + "start_line": 274 + } + }, + "4595": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.mintAndSetPublic" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 88, + "end_line": 83, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" + }, + "parent_location": [ + { + "end_col": 46, + "end_line": 236, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "parent_location": [ + { + "end_col": 54, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/contract_interface/IERC20/transferFrom/f8c7980cd46ed6d764c999318b5692736b724dc08c1bf96e92d1b77ddf37af10.cairo" + }, + "parent_location": [ + { + "end_col": 22, + "end_line": 31, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc20/IERC20.cairo" + }, + "parent_location": [ + { + "end_col": 6, + "end_line": 244, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "start_col": 5, + "start_line": 239 + }, + "While trying to retrieve the implicit argument 'range_check_ptr' in:" + ], + "start_col": 10, + "start_line": 31 + }, + "While handling contract interface function:" + ], + "start_col": 39, + "start_line": 1 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 24, + "start_line": 236 + }, + "While trying to update the implicit return value 'range_check_ptr' in:" + ], + "start_col": 73, + "start_line": 83 + } + }, + "4596": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.mintAndSetPublic" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 37, + "end_line": 240, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "start_col": 26, + "start_line": 240 + } + }, + "4598": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.mintAndSetPublic" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 16, + "end_line": 237, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "parent_location": [ + { + "end_col": 22, + "end_line": 241, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "start_col": 16, + "start_line": 241 + }, + "While expanding the reference 'sender' in:" + ], + "start_col": 10, + "start_line": 237 + } + }, + "4599": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.mintAndSetPublic" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 19, + "end_line": 238, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "parent_location": [ + { + "end_col": 28, + "end_line": 242, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "start_col": 19, + "start_line": 242 + }, + "While expanding the reference 'recipient' in:" + ], + "start_col": 10, + "start_line": 238 + } + }, + "4600": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.mintAndSetPublic" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 20, + "end_line": 236, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "parent_location": [ + { + "end_col": 34, + "end_line": 243, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "start_col": 24, + "start_line": 243 + }, + "While expanding the reference 'cell_price' in:" + ], + "start_col": 10, + "start_line": 236 + } + }, + "4601": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.mintAndSetPublic" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 37, + "end_line": 243, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "start_col": 36, + "start_line": 243 + } + }, + "4603": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.mintAndSetPublic" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 6, + "end_line": 244, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "start_col": 5, + "start_line": 239 + } + }, + "4605": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.mintAndSetPublic" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 71, + "end_line": 83, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" + }, + "parent_location": [ + { + "end_col": 46, + "end_line": 236, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "parent_location": [ + { + "end_col": 41, + "end_line": 191, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" + }, + "parent_location": [ + { + "end_col": 42, + "end_line": 245, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "start_col": 5, + "start_line": 245 + }, + "While trying to retrieve the implicit argument 'pedersen_ptr' in:" + ], + "start_col": 15, + "start_line": 191 + }, + "While expanding the reference 'pedersen_ptr' in:" + ], + "start_col": 24, + "start_line": 236 + }, + "While trying to update the implicit return value 'pedersen_ptr' in:" + ], + "start_col": 45, + "start_line": 83 + } + }, + "4606": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.mintAndSetPublic" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 37, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/contract_interface/IERC20/transferFrom/f8c7980cd46ed6d764c999318b5692736b724dc08c1bf96e92d1b77ddf37af10.cairo" + }, + "parent_location": [ + { + "end_col": 22, + "end_line": 31, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc20/IERC20.cairo" + }, + "parent_location": [ + { + "end_col": 6, + "end_line": 244, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "parent_location": [ + { + "end_col": 61, + "end_line": 191, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" + }, + "parent_location": [ + { + "end_col": 42, + "end_line": 245, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "start_col": 5, + "start_line": 245 + }, + "While trying to retrieve the implicit argument 'syscall_ptr' in:" + ], + "start_col": 43, + "start_line": 191 + }, + "While expanding the reference 'syscall_ptr' in:" + ], + "start_col": 5, + "start_line": 239 + }, + "While trying to update the implicit return value 'syscall_ptr' in:" + ], + "start_col": 10, + "start_line": 31 + }, + "While handling contract interface function:" + ], + "start_col": 19, + "start_line": 1 + } + }, + "4607": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.mintAndSetPublic" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 54, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/contract_interface/IERC20/transferFrom/f8c7980cd46ed6d764c999318b5692736b724dc08c1bf96e92d1b77ddf37af10.cairo" + }, + "parent_location": [ + { + "end_col": 22, + "end_line": 31, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc20/IERC20.cairo" + }, + "parent_location": [ + { + "end_col": 6, + "end_line": 244, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "parent_location": [ + { + "end_col": 78, + "end_line": 191, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" + }, + "parent_location": [ + { + "end_col": 42, + "end_line": 245, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "start_col": 5, + "start_line": 245 + }, + "While trying to retrieve the implicit argument 'range_check_ptr' in:" + ], + "start_col": 63, + "start_line": 191 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 5, + "start_line": 239 + }, + "While trying to update the implicit return value 'range_check_ptr' in:" + ], + "start_col": 10, + "start_line": 31 + }, + "While handling contract interface function:" + ], + "start_col": 39, + "start_line": 1 + } + }, + "4608": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.mintAndSetPublic" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 21, + "end_line": 228, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "parent_location": [ + { + "end_col": 23, + "end_line": 245, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "start_col": 16, + "start_line": 245 + }, + "While expanding the reference 'tokenId' in:" + ], + "start_col": 5, + "start_line": 228 + } + }, + "4609": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.mintAndSetPublic" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 21, + "end_line": 228, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "parent_location": [ + { + "end_col": 23, + "end_line": 245, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "start_col": 16, + "start_line": 245 + }, + "While expanding the reference 'tokenId' in:" + ], + "start_col": 5, + "start_line": 228 + } + }, + "4610": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.mintAndSetPublic" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 20, + "end_line": 229, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "parent_location": [ + { + "end_col": 34, + "end_line": 245, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "start_col": 25, + "start_line": 245 + }, + "While expanding the reference 'proof_len' in:" + ], + "start_col": 5, + "start_line": 229 + } + }, + "4611": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.mintAndSetPublic" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 17, + "end_line": 230, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "parent_location": [ + { + "end_col": 41, + "end_line": 245, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "start_col": 36, + "start_line": 245 + }, + "While expanding the reference 'proof' in:" + ], + "start_col": 5, + "start_line": 230 + } + }, + "4612": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.mintAndSetPublic" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 42, + "end_line": 245, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "start_col": 5, + "start_line": 245 + } + }, + "4614": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.mintAndSetPublic" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 61, + "end_line": 191, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" + }, + "parent_location": [ + { + "end_col": 42, + "end_line": 245, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "parent_location": [ + { + "end_col": 37, + "end_line": 118, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" + }, + "parent_location": [ + { + "end_col": 6, + "end_line": 252, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "start_col": 5, + "start_line": 246 + }, + "While trying to retrieve the implicit argument 'syscall_ptr' in:" + ], + "start_col": 19, + "start_line": 118 + }, + "While expanding the reference 'syscall_ptr' in:" + ], + "start_col": 5, + "start_line": 245 + }, + "While trying to update the implicit return value 'syscall_ptr' in:" + ], + "start_col": 43, + "start_line": 191 + } + }, + "4615": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.mintAndSetPublic" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 41, + "end_line": 191, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" + }, + "parent_location": [ + { + "end_col": 42, + "end_line": 245, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "parent_location": [ + { + "end_col": 65, + "end_line": 118, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" + }, + "parent_location": [ + { + "end_col": 6, + "end_line": 252, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "start_col": 5, + "start_line": 246 + }, + "While trying to retrieve the implicit argument 'pedersen_ptr' in:" + ], + "start_col": 39, + "start_line": 118 + }, + "While expanding the reference 'pedersen_ptr' in:" + ], + "start_col": 5, + "start_line": 245 + }, + "While trying to update the implicit return value 'pedersen_ptr' in:" + ], + "start_col": 15, + "start_line": 191 + } + }, + "4616": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.mintAndSetPublic" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 78, + "end_line": 191, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" + }, + "parent_location": [ + { + "end_col": 42, + "end_line": 245, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "parent_location": [ + { + "end_col": 82, + "end_line": 118, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" + }, + "parent_location": [ + { + "end_col": 6, + "end_line": 252, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "start_col": 5, + "start_line": 246 + }, + "While trying to retrieve the implicit argument 'range_check_ptr' in:" + ], + "start_col": 67, + "start_line": 118 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 5, + "start_line": 245 + }, + "While trying to update the implicit return value 'range_check_ptr' in:" + ], + "start_col": 63, + "start_line": 191 + } + }, + "4617": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.mintAndSetPublic" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 29, + "end_line": 247, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "start_col": 18, + "start_line": 247 + } + }, + "4618": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.mintAndSetPublic" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 26, + "end_line": 231, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "parent_location": [ + { + "end_col": 41, + "end_line": 248, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "start_col": 26, + "start_line": 248 + }, + "While expanding the reference 'contractAddress' in:" + ], + "start_col": 5, + "start_line": 231 + } + }, + "4619": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.mintAndSetPublic" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 16, + "end_line": 232, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "parent_location": [ + { + "end_col": 20, + "end_line": 249, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "start_col": 15, + "start_line": 249 + }, + "While expanding the reference 'value' in:" + ], + "start_col": 5, + "start_line": 232 + } + }, + "4620": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.mintAndSetPublic" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 27, + "end_line": 233, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "parent_location": [ + { + "end_col": 43, + "end_line": 250, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "start_col": 27, + "start_line": 250 + }, + "While expanding the reference 'cellCalldata_len' in:" + ], + "start_col": 5, + "start_line": 233 + } + }, + "4621": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.mintAndSetPublic" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 24, + "end_line": 234, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "parent_location": [ + { + "end_col": 35, + "end_line": 251, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "start_col": 23, + "start_line": 251 + }, + "While expanding the reference 'cellCalldata' in:" + ], + "start_col": 5, + "start_line": 234 + } + }, + "4622": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.mintAndSetPublic" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 6, + "end_line": 252, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "start_col": 5, + "start_line": 246 + } + }, + "4624": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.mintAndSetPublic" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 65, + "end_line": 118, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" + }, + "parent_location": [ + { + "end_col": 6, + "end_line": 252, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "parent_location": [ + { + "end_col": 49, + "end_line": 227, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "parent_location": [ + { + "end_col": 15, + "end_line": 253, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "start_col": 5, + "start_line": 253 + }, + "While trying to retrieve the implicit argument 'pedersen_ptr' in:" + ], + "start_col": 23, + "start_line": 227 + }, + "While expanding the reference 'pedersen_ptr' in:" + ], + "start_col": 5, + "start_line": 246 + }, + "While trying to update the implicit return value 'pedersen_ptr' in:" + ], + "start_col": 39, + "start_line": 118 + } + }, + "4625": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.mintAndSetPublic" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 37, + "end_line": 118, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" + }, + "parent_location": [ + { + "end_col": 6, + "end_line": 252, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "parent_location": [ + { + "end_col": 69, + "end_line": 227, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "parent_location": [ + { + "end_col": 15, + "end_line": 253, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "start_col": 5, + "start_line": 253 + }, + "While trying to retrieve the implicit argument 'syscall_ptr' in:" + ], + "start_col": 51, + "start_line": 227 + }, + "While expanding the reference 'syscall_ptr' in:" + ], + "start_col": 5, + "start_line": 246 + }, + "While trying to update the implicit return value 'syscall_ptr' in:" + ], + "start_col": 19, + "start_line": 118 + } + }, + "4626": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.mintAndSetPublic" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 82, + "end_line": 118, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" + }, + "parent_location": [ + { + "end_col": 6, + "end_line": 252, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "parent_location": [ + { + "end_col": 86, + "end_line": 227, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "parent_location": [ + { + "end_col": 15, + "end_line": 253, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "start_col": 5, + "start_line": 253 + }, + "While trying to retrieve the implicit argument 'range_check_ptr' in:" + ], + "start_col": 71, + "start_line": 227 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 5, + "start_line": 246 + }, + "While trying to update the implicit return value 'range_check_ptr' in:" + ], + "start_col": 67, + "start_line": 118 + } + }, + "4627": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.mintAndSetPublic" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 15, + "end_line": 253, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "start_col": 5, + "start_line": 253 + } + }, + "4628": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.mintAndSetPublic" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 67, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/mintAndSetPublic/741ea357d6336b0bed7bf0472425acd0311d543883b803388880e60a232040c7.cairo" + }, + "parent_location": [ + { + "end_col": 86, + "end_line": 227, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "parent_location": [ + { + "end_col": 24, + "end_line": 2, + "input_file": { + "filename": "autogen/starknet/arg_processor/c8edcb1cbb2b70f99346c0510efba5a82524d6fbe8558629ad05a45a84efd25b.cairo" + }, + "parent_location": [ + { + "end_col": 17, + "end_line": 230, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "start_col": 5, + "start_line": 230 + }, + "While handling calldata argument 'proof'" + ], + "start_col": 9, + "start_line": 2 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 71, + "start_line": 227 + }, + "While constructing the external wrapper for:" + ], + "start_col": 23, + "start_line": 1 + } + }, + "4629": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.mintAndSetPublic" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 48, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/arg_processor/991f62016c321db1ce050da1566d298118c65229306c26d6cd25e91286a63d4b.cairo" + }, + "parent_location": [ + { + "end_col": 20, + "end_line": 229, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "parent_location": [ + { + "end_col": 52, + "end_line": 2, + "input_file": { + "filename": "autogen/starknet/arg_processor/c8edcb1cbb2b70f99346c0510efba5a82524d6fbe8558629ad05a45a84efd25b.cairo" + }, + "parent_location": [ + { + "end_col": 17, + "end_line": 230, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "start_col": 5, + "start_line": 230 + }, + "While handling calldata argument 'proof'" + ], + "start_col": 28, + "start_line": 2 + }, + "While expanding the reference '__calldata_arg_proof_len' in:" + ], + "start_col": 5, + "start_line": 229 + }, + "While handling calldata argument 'proof_len'" + ], + "start_col": 32, + "start_line": 1 + } + }, + "4630": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.mintAndSetPublic" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 53, + "end_line": 2, + "input_file": { + "filename": "autogen/starknet/arg_processor/c8edcb1cbb2b70f99346c0510efba5a82524d6fbe8558629ad05a45a84efd25b.cairo" + }, + "parent_location": [ + { + "end_col": 17, + "end_line": 230, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "start_col": 5, + "start_line": 230 + }, + "While handling calldata argument 'proof'" + ], + "start_col": 1, + "start_line": 2 + } + }, + "4631": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.mintAndSetPublic" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 40, + "end_line": 2, + "input_file": { + "filename": "autogen/starknet/arg_processor/991f62016c321db1ce050da1566d298118c65229306c26d6cd25e91286a63d4b.cairo" + }, + "parent_location": [ + { + "end_col": 20, + "end_line": 229, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "parent_location": [ + { + "end_col": 40, + "end_line": 8, + "input_file": { + "filename": "autogen/starknet/arg_processor/c8edcb1cbb2b70f99346c0510efba5a82524d6fbe8558629ad05a45a84efd25b.cairo" + }, + "parent_location": [ + { + "end_col": 17, + "end_line": 230, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "start_col": 5, + "start_line": 230 + }, + "While handling calldata argument 'proof'" + ], + "start_col": 26, + "start_line": 8 + }, + "While expanding the reference '__calldata_ptr' in:" + ], + "start_col": 5, + "start_line": 229 + }, + "While handling calldata argument 'proof_len'" + ], + "start_col": 22, + "start_line": 2 + } + }, + "4633": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.mintAndSetPublic" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 48, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/arg_processor/991f62016c321db1ce050da1566d298118c65229306c26d6cd25e91286a63d4b.cairo" + }, + "parent_location": [ + { + "end_col": 20, + "end_line": 229, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "parent_location": [ + { + "end_col": 67, + "end_line": 8, + "input_file": { + "filename": "autogen/starknet/arg_processor/c8edcb1cbb2b70f99346c0510efba5a82524d6fbe8558629ad05a45a84efd25b.cairo" + }, + "parent_location": [ + { + "end_col": 17, + "end_line": 230, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "start_col": 5, + "start_line": 230 + }, + "While handling calldata argument 'proof'" + ], + "start_col": 43, + "start_line": 8 + }, + "While expanding the reference '__calldata_arg_proof_len' in:" + ], + "start_col": 5, + "start_line": 229 + }, + "While handling calldata argument 'proof_len'" + ], + "start_col": 32, + "start_line": 1 + } + }, + "4634": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.mintAndSetPublic" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 71, + "end_line": 8, + "input_file": { + "filename": "autogen/starknet/arg_processor/c8edcb1cbb2b70f99346c0510efba5a82524d6fbe8558629ad05a45a84efd25b.cairo" + }, + "parent_location": [ + { + "end_col": 17, + "end_line": 230, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "start_col": 5, + "start_line": 230 + }, + "While handling calldata argument 'proof'" + ], + "start_col": 26, + "start_line": 8 + } + }, + "4635": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.mintAndSetPublic" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 67, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/mintAndSetPublic/741ea357d6336b0bed7bf0472425acd0311d543883b803388880e60a232040c7.cairo" + }, + "parent_location": [ + { + "end_col": 86, + "end_line": 227, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "parent_location": [ + { + "end_col": 38, + "end_line": 3, + "input_file": { + "filename": "autogen/starknet/arg_processor/c8edcb1cbb2b70f99346c0510efba5a82524d6fbe8558629ad05a45a84efd25b.cairo" + }, + "parent_location": [ + { + "end_col": 17, + "end_line": 230, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "parent_location": [ + { + "end_col": 24, + "end_line": 2, + "input_file": { + "filename": "autogen/starknet/arg_processor/7e8d4187d234f1ad9572c7c76c7fcab338d2159e013bdd9bfc0f771a29c04f92.cairo" + }, + "parent_location": [ + { + "end_col": 24, + "end_line": 234, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "start_col": 5, + "start_line": 234 + }, + "While handling calldata argument 'cellCalldata'" + ], + "start_col": 9, + "start_line": 2 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 5, + "start_line": 230 + }, + "While handling calldata argument 'proof'" + ], + "start_col": 23, + "start_line": 3 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 71, + "start_line": 227 + }, + "While constructing the external wrapper for:" + ], + "start_col": 23, + "start_line": 1 + } + }, + "4636": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.mintAndSetPublic" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 55, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/arg_processor/7e872b5a76cfa33336e13e83d342763f36bad8be8a18be69e78776b449847f1a.cairo" + }, + "parent_location": [ + { + "end_col": 27, + "end_line": 233, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "parent_location": [ + { + "end_col": 59, + "end_line": 2, + "input_file": { + "filename": "autogen/starknet/arg_processor/7e8d4187d234f1ad9572c7c76c7fcab338d2159e013bdd9bfc0f771a29c04f92.cairo" + }, + "parent_location": [ + { + "end_col": 24, + "end_line": 234, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "start_col": 5, + "start_line": 234 + }, + "While handling calldata argument 'cellCalldata'" + ], + "start_col": 28, + "start_line": 2 + }, + "While expanding the reference '__calldata_arg_cellCalldata_len' in:" + ], + "start_col": 5, + "start_line": 233 + }, + "While handling calldata argument 'cellCalldata_len'" + ], + "start_col": 39, + "start_line": 1 + } + }, + "4637": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.mintAndSetPublic" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 60, + "end_line": 2, + "input_file": { + "filename": "autogen/starknet/arg_processor/7e8d4187d234f1ad9572c7c76c7fcab338d2159e013bdd9bfc0f771a29c04f92.cairo" + }, + "parent_location": [ + { + "end_col": 24, + "end_line": 234, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "start_col": 5, + "start_line": 234 + }, + "While handling calldata argument 'cellCalldata'" + ], + "start_col": 1, + "start_line": 2 + } + }, + "4638": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.mintAndSetPublic" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 40, + "end_line": 2, + "input_file": { + "filename": "autogen/starknet/arg_processor/7e872b5a76cfa33336e13e83d342763f36bad8be8a18be69e78776b449847f1a.cairo" + }, + "parent_location": [ + { + "end_col": 27, + "end_line": 233, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "parent_location": [ + { + "end_col": 40, + "end_line": 8, + "input_file": { + "filename": "autogen/starknet/arg_processor/7e8d4187d234f1ad9572c7c76c7fcab338d2159e013bdd9bfc0f771a29c04f92.cairo" + }, + "parent_location": [ + { + "end_col": 24, + "end_line": 234, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "start_col": 5, + "start_line": 234 + }, + "While handling calldata argument 'cellCalldata'" + ], + "start_col": 26, + "start_line": 8 + }, + "While expanding the reference '__calldata_ptr' in:" + ], + "start_col": 5, + "start_line": 233 + }, + "While handling calldata argument 'cellCalldata_len'" + ], + "start_col": 22, + "start_line": 2 + } + }, + "4640": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.mintAndSetPublic" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 55, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/arg_processor/7e872b5a76cfa33336e13e83d342763f36bad8be8a18be69e78776b449847f1a.cairo" + }, + "parent_location": [ + { + "end_col": 27, + "end_line": 233, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "parent_location": [ + { + "end_col": 74, + "end_line": 8, + "input_file": { + "filename": "autogen/starknet/arg_processor/7e8d4187d234f1ad9572c7c76c7fcab338d2159e013bdd9bfc0f771a29c04f92.cairo" + }, + "parent_location": [ + { + "end_col": 24, + "end_line": 234, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "start_col": 5, + "start_line": 234 + }, + "While handling calldata argument 'cellCalldata'" + ], + "start_col": 43, + "start_line": 8 + }, + "While expanding the reference '__calldata_arg_cellCalldata_len' in:" + ], + "start_col": 5, + "start_line": 233 + }, + "While handling calldata argument 'cellCalldata_len'" + ], + "start_col": 39, + "start_line": 1 + } + }, + "4641": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.mintAndSetPublic" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 78, + "end_line": 8, + "input_file": { + "filename": "autogen/starknet/arg_processor/7e8d4187d234f1ad9572c7c76c7fcab338d2159e013bdd9bfc0f771a29c04f92.cairo" + }, + "parent_location": [ + { + "end_col": 24, + "end_line": 234, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "start_col": 5, + "start_line": 234 + }, + "While handling calldata argument 'cellCalldata'" + ], + "start_col": 26, + "start_line": 8 + } + }, + "4642": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.mintAndSetPublic" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 58, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/arg_processor/01cba52f8515996bb9d7070bde81ff39281d096d7024a558efcba6e1fd2402cf.cairo" + }, + "parent_location": [ + { + "end_col": 22, + "end_line": 227, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "start_col": 6, + "start_line": 227 + }, + "While handling calldata of" + ], + "start_col": 1, + "start_line": 1 + } + }, + "4643": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.mintAndSetPublic" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 67, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/mintAndSetPublic/741ea357d6336b0bed7bf0472425acd0311d543883b803388880e60a232040c7.cairo" + }, + "parent_location": [ + { + "end_col": 86, + "end_line": 227, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "parent_location": [ + { + "end_col": 38, + "end_line": 3, + "input_file": { + "filename": "autogen/starknet/arg_processor/c8edcb1cbb2b70f99346c0510efba5a82524d6fbe8558629ad05a45a84efd25b.cairo" + }, + "parent_location": [ + { + "end_col": 17, + "end_line": 230, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "parent_location": [ + { + "end_col": 38, + "end_line": 3, + "input_file": { + "filename": "autogen/starknet/arg_processor/7e8d4187d234f1ad9572c7c76c7fcab338d2159e013bdd9bfc0f771a29c04f92.cairo" + }, + "parent_location": [ + { + "end_col": 24, + "end_line": 234, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "parent_location": [ + { + "end_col": 115, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/mintAndSetPublic/8d28e230e489bc8d7b9f205ad15790d268dd96b367ed23a515f6d462c885a511.cairo" + }, + "parent_location": [ + { + "end_col": 22, + "end_line": 227, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "start_col": 6, + "start_line": 227 + }, + "While constructing the external wrapper for:" + ], + "start_col": 100, + "start_line": 1 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 5, + "start_line": 234 + }, + "While handling calldata argument 'cellCalldata'" + ], + "start_col": 23, + "start_line": 3 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 5, + "start_line": 230 + }, + "While handling calldata argument 'proof'" + ], + "start_col": 23, + "start_line": 3 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 71, + "start_line": 227 + }, + "While constructing the external wrapper for:" + ], + "start_col": 23, + "start_line": 1 + } + }, + "4644": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.mintAndSetPublic" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 110, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/mintAndSetPublic/9684a85e93c782014ca14293edea4eb2502039a5a7b6538ecd39c56faaf12529.cairo" + }, + "parent_location": [ + { + "end_col": 49, + "end_line": 227, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "parent_location": [ + { + "end_col": 57, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/mintAndSetPublic/8d28e230e489bc8d7b9f205ad15790d268dd96b367ed23a515f6d462c885a511.cairo" + }, + "parent_location": [ + { + "end_col": 22, + "end_line": 227, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "start_col": 6, + "start_line": 227 + }, + "While constructing the external wrapper for:" + ], + "start_col": 45, + "start_line": 1 + }, + "While expanding the reference 'pedersen_ptr' in:" + ], + "start_col": 23, + "start_line": 227 + }, + "While constructing the external wrapper for:" + ], + "start_col": 20, + "start_line": 1 + } + }, + "4645": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.mintAndSetPublic" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 64, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/mintAndSetPublic/b2c52ca2d2a8fc8791a983086d8716c5eacd0c3d62934914d2286f84b98ff4cb.cairo" + }, + "parent_location": [ + { + "end_col": 69, + "end_line": 227, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "parent_location": [ + { + "end_col": 82, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/mintAndSetPublic/8d28e230e489bc8d7b9f205ad15790d268dd96b367ed23a515f6d462c885a511.cairo" + }, + "parent_location": [ + { + "end_col": 22, + "end_line": 227, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "start_col": 6, + "start_line": 227 + }, + "While constructing the external wrapper for:" + ], + "start_col": 71, + "start_line": 1 + }, + "While expanding the reference 'syscall_ptr' in:" + ], + "start_col": 51, + "start_line": 227 + }, + "While constructing the external wrapper for:" + ], + "start_col": 19, + "start_line": 1 + } + }, + "4646": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.mintAndSetPublic" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 42, + "end_line": 3, + "input_file": { + "filename": "autogen/starknet/arg_processor/7e8d4187d234f1ad9572c7c76c7fcab338d2159e013bdd9bfc0f771a29c04f92.cairo" + }, + "parent_location": [ + { + "end_col": 24, + "end_line": 234, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "parent_location": [ + { + "end_col": 115, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/mintAndSetPublic/8d28e230e489bc8d7b9f205ad15790d268dd96b367ed23a515f6d462c885a511.cairo" + }, + "parent_location": [ + { + "end_col": 22, + "end_line": 227, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "start_col": 6, + "start_line": 227 + }, + "While constructing the external wrapper for:" + ], + "start_col": 100, + "start_line": 1 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 5, + "start_line": 234 + }, + "While handling calldata argument 'cellCalldata'" + ], + "start_col": 23, + "start_line": 3 + } + }, + "4648": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.mintAndSetPublic" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 67, + "end_line": 2, + "input_file": { + "filename": "autogen/starknet/arg_processor/60c79ef5477686f2843e61432dcde7f4fc0f354d42095115ea9dca625a35df6e.cairo" + }, + "parent_location": [ + { + "end_col": 21, + "end_line": 228, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "parent_location": [ + { + "end_col": 147, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/mintAndSetPublic/8d28e230e489bc8d7b9f205ad15790d268dd96b367ed23a515f6d462c885a511.cairo" + }, + "parent_location": [ + { + "end_col": 22, + "end_line": 227, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "start_col": 6, + "start_line": 227 + }, + "While constructing the external wrapper for:" + ], + "start_col": 125, + "start_line": 1 + }, + "While expanding the reference '__calldata_arg_tokenId' in:" + ], + "start_col": 5, + "start_line": 228 + }, + "While handling calldata argument 'tokenId'" + ], + "start_col": 30, + "start_line": 1 + } + }, + "4649": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.mintAndSetPublic" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 67, + "end_line": 2, + "input_file": { + "filename": "autogen/starknet/arg_processor/60c79ef5477686f2843e61432dcde7f4fc0f354d42095115ea9dca625a35df6e.cairo" + }, + "parent_location": [ + { + "end_col": 21, + "end_line": 228, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "parent_location": [ + { + "end_col": 147, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/mintAndSetPublic/8d28e230e489bc8d7b9f205ad15790d268dd96b367ed23a515f6d462c885a511.cairo" + }, + "parent_location": [ + { + "end_col": 22, + "end_line": 227, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "start_col": 6, + "start_line": 227 + }, + "While constructing the external wrapper for:" + ], + "start_col": 125, + "start_line": 1 + }, + "While expanding the reference '__calldata_arg_tokenId' in:" + ], + "start_col": 5, + "start_line": 228 + }, + "While handling calldata argument 'tokenId'" + ], + "start_col": 30, + "start_line": 1 + } + }, + "4650": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.mintAndSetPublic" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 48, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/arg_processor/991f62016c321db1ce050da1566d298118c65229306c26d6cd25e91286a63d4b.cairo" + }, + "parent_location": [ + { + "end_col": 20, + "end_line": 229, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "parent_location": [ + { + "end_col": 183, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/mintAndSetPublic/8d28e230e489bc8d7b9f205ad15790d268dd96b367ed23a515f6d462c885a511.cairo" + }, + "parent_location": [ + { + "end_col": 22, + "end_line": 227, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "start_col": 6, + "start_line": 227 + }, + "While constructing the external wrapper for:" + ], + "start_col": 159, + "start_line": 1 + }, + "While expanding the reference '__calldata_arg_proof_len' in:" + ], + "start_col": 5, + "start_line": 229 + }, + "While handling calldata argument 'proof_len'" + ], + "start_col": 32, + "start_line": 1 + } + }, + "4651": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.mintAndSetPublic" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 55, + "end_line": 5, + "input_file": { + "filename": "autogen/starknet/arg_processor/c8edcb1cbb2b70f99346c0510efba5a82524d6fbe8558629ad05a45a84efd25b.cairo" + }, + "parent_location": [ + { + "end_col": 17, + "end_line": 230, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "parent_location": [ + { + "end_col": 211, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/mintAndSetPublic/8d28e230e489bc8d7b9f205ad15790d268dd96b367ed23a515f6d462c885a511.cairo" + }, + "parent_location": [ + { + "end_col": 22, + "end_line": 227, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "start_col": 6, + "start_line": 227 + }, + "While constructing the external wrapper for:" + ], + "start_col": 191, + "start_line": 1 + }, + "While expanding the reference '__calldata_arg_proof' in:" + ], + "start_col": 5, + "start_line": 230 + }, + "While handling calldata argument 'proof'" + ], + "start_col": 28, + "start_line": 5 + } + }, + "4653": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.mintAndSetPublic" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 54, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/arg_processor/138fbb2581468edec2beca8ce38fccac384aeb4b51fe6af3126d17a00f09f61e.cairo" + }, + "parent_location": [ + { + "end_col": 26, + "end_line": 231, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "parent_location": [ + { + "end_col": 259, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/mintAndSetPublic/8d28e230e489bc8d7b9f205ad15790d268dd96b367ed23a515f6d462c885a511.cairo" + }, + "parent_location": [ + { + "end_col": 22, + "end_line": 227, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "start_col": 6, + "start_line": 227 + }, + "While constructing the external wrapper for:" + ], + "start_col": 229, + "start_line": 1 + }, + "While expanding the reference '__calldata_arg_contractAddress' in:" + ], + "start_col": 5, + "start_line": 231 + }, + "While handling calldata argument 'contractAddress'" + ], + "start_col": 38, + "start_line": 1 + } + }, + "4654": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.mintAndSetPublic" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 44, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/arg_processor/3e93b8906c329e7a5c33e020ce7a5a9c542c4444955be98eec5fcbef545a8662.cairo" + }, + "parent_location": [ + { + "end_col": 16, + "end_line": 232, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "parent_location": [ + { + "end_col": 287, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/mintAndSetPublic/8d28e230e489bc8d7b9f205ad15790d268dd96b367ed23a515f6d462c885a511.cairo" + }, + "parent_location": [ + { + "end_col": 22, + "end_line": 227, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "start_col": 6, + "start_line": 227 + }, + "While constructing the external wrapper for:" + ], + "start_col": 267, + "start_line": 1 + }, + "While expanding the reference '__calldata_arg_value' in:" + ], + "start_col": 5, + "start_line": 232 + }, + "While handling calldata argument 'value'" + ], + "start_col": 28, + "start_line": 1 + } + }, + "4655": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.mintAndSetPublic" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 55, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/arg_processor/7e872b5a76cfa33336e13e83d342763f36bad8be8a18be69e78776b449847f1a.cairo" + }, + "parent_location": [ + { + "end_col": 27, + "end_line": 233, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "parent_location": [ + { + "end_col": 337, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/mintAndSetPublic/8d28e230e489bc8d7b9f205ad15790d268dd96b367ed23a515f6d462c885a511.cairo" + }, + "parent_location": [ + { + "end_col": 22, + "end_line": 227, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "start_col": 6, + "start_line": 227 + }, + "While constructing the external wrapper for:" + ], + "start_col": 306, + "start_line": 1 + }, + "While expanding the reference '__calldata_arg_cellCalldata_len' in:" + ], + "start_col": 5, + "start_line": 233 + }, + "While handling calldata argument 'cellCalldata_len'" + ], + "start_col": 39, + "start_line": 1 + } + }, + "4656": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.mintAndSetPublic" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 62, + "end_line": 5, + "input_file": { + "filename": "autogen/starknet/arg_processor/7e8d4187d234f1ad9572c7c76c7fcab338d2159e013bdd9bfc0f771a29c04f92.cairo" + }, + "parent_location": [ + { + "end_col": 24, + "end_line": 234, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "parent_location": [ + { + "end_col": 379, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/mintAndSetPublic/8d28e230e489bc8d7b9f205ad15790d268dd96b367ed23a515f6d462c885a511.cairo" + }, + "parent_location": [ + { + "end_col": 22, + "end_line": 227, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "start_col": 6, + "start_line": 227 + }, + "While constructing the external wrapper for:" + ], + "start_col": 352, + "start_line": 1 + }, + "While expanding the reference '__calldata_arg_cellCalldata' in:" + ], + "start_col": 5, + "start_line": 234 + }, + "While handling calldata argument 'cellCalldata'" + ], + "start_col": 35, + "start_line": 5 + } + }, + "4658": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.mintAndSetPublic" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 22, + "end_line": 227, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "start_col": 6, + "start_line": 227 + } + }, + "4660": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.mintAndSetPublic" + ], + "flow_tracking_data": null, + "hints": [ + { + "location": { + "end_col": 34, + "end_line": 2, + "input_file": { + "filename": "autogen/starknet/external/mintAndSetPublic/8d28e230e489bc8d7b9f205ad15790d268dd96b367ed23a515f6d462c885a511.cairo" + }, + "parent_location": [ + { + "end_col": 22, + "end_line": 227, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "start_col": 6, + "start_line": 227 + }, + "While constructing the external wrapper for:" + ], + "start_col": 1, + "start_line": 2 + }, + "n_prefix_newlines": 0 + } + ], + "inst": { + "end_col": 24, + "end_line": 3, + "input_file": { + "filename": "autogen/starknet/external/mintAndSetPublic/8d28e230e489bc8d7b9f205ad15790d268dd96b367ed23a515f6d462c885a511.cairo" + }, + "parent_location": [ + { + "end_col": 22, + "end_line": 227, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "start_col": 6, + "start_line": 227 + }, + "While constructing the external wrapper for:" + ], + "start_col": 1, + "start_line": 3 + } + }, + "4662": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.mintAndSetPublic" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 82, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/mintAndSetPublic/8d28e230e489bc8d7b9f205ad15790d268dd96b367ed23a515f6d462c885a511.cairo" + }, + "parent_location": [ + { + "end_col": 22, + "end_line": 227, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "parent_location": [ + { + "end_col": 20, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/mintAndSetPublic/da17921a4e81c09e730800bbf23bfdbe5e9e6bfaedc59d80fbf62087fa43c27d.cairo" + }, + "parent_location": [ + { + "end_col": 22, + "end_line": 227, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "start_col": 6, + "start_line": 227 + }, + "While constructing the external wrapper for:" + ], + "start_col": 9, + "start_line": 1 + }, + "While expanding the reference 'syscall_ptr' in:" + ], + "start_col": 6, + "start_line": 227 + }, + "While constructing the external wrapper for:" + ], + "start_col": 71, + "start_line": 1 + } + }, + "4663": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.mintAndSetPublic" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 57, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/mintAndSetPublic/8d28e230e489bc8d7b9f205ad15790d268dd96b367ed23a515f6d462c885a511.cairo" + }, + "parent_location": [ + { + "end_col": 22, + "end_line": 227, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "parent_location": [ + { + "end_col": 33, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/mintAndSetPublic/da17921a4e81c09e730800bbf23bfdbe5e9e6bfaedc59d80fbf62087fa43c27d.cairo" + }, + "parent_location": [ + { + "end_col": 22, + "end_line": 227, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "start_col": 6, + "start_line": 227 + }, + "While constructing the external wrapper for:" + ], + "start_col": 21, + "start_line": 1 + }, + "While expanding the reference 'pedersen_ptr' in:" + ], + "start_col": 6, + "start_line": 227 + }, + "While constructing the external wrapper for:" + ], + "start_col": 45, + "start_line": 1 + } + }, + "4664": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.mintAndSetPublic" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 115, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/mintAndSetPublic/8d28e230e489bc8d7b9f205ad15790d268dd96b367ed23a515f6d462c885a511.cairo" + }, + "parent_location": [ + { + "end_col": 22, + "end_line": 227, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "parent_location": [ + { + "end_col": 49, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/mintAndSetPublic/da17921a4e81c09e730800bbf23bfdbe5e9e6bfaedc59d80fbf62087fa43c27d.cairo" + }, + "parent_location": [ + { + "end_col": 22, + "end_line": 227, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "start_col": 6, + "start_line": 227 + }, + "While constructing the external wrapper for:" + ], + "start_col": 34, + "start_line": 1 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 6, + "start_line": 227 + }, + "While constructing the external wrapper for:" + ], + "start_col": 100, + "start_line": 1 + } + }, + "4665": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.mintAndSetPublic" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 21, + "end_line": 4, + "input_file": { + "filename": "autogen/starknet/external/mintAndSetPublic/8d28e230e489bc8d7b9f205ad15790d268dd96b367ed23a515f6d462c885a511.cairo" + }, + "parent_location": [ + { + "end_col": 22, + "end_line": 227, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "parent_location": [ + { + "end_col": 62, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/mintAndSetPublic/da17921a4e81c09e730800bbf23bfdbe5e9e6bfaedc59d80fbf62087fa43c27d.cairo" + }, + "parent_location": [ + { + "end_col": 22, + "end_line": 227, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "start_col": 6, + "start_line": 227 + }, + "While constructing the external wrapper for:" + ], + "start_col": 50, + "start_line": 1 + }, + "While expanding the reference 'retdata_size' in:" + ], + "start_col": 6, + "start_line": 227 + }, + "While constructing the external wrapper for:" + ], + "start_col": 20, + "start_line": 4 + } + }, + "4667": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.mintAndSetPublic" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 16, + "end_line": 3, + "input_file": { + "filename": "autogen/starknet/external/mintAndSetPublic/8d28e230e489bc8d7b9f205ad15790d268dd96b367ed23a515f6d462c885a511.cairo" + }, + "parent_location": [ + { + "end_col": 22, + "end_line": 227, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "parent_location": [ + { + "end_col": 70, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/mintAndSetPublic/da17921a4e81c09e730800bbf23bfdbe5e9e6bfaedc59d80fbf62087fa43c27d.cairo" + }, + "parent_location": [ + { + "end_col": 22, + "end_line": 227, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "start_col": 6, + "start_line": 227 + }, + "While constructing the external wrapper for:" + ], + "start_col": 63, + "start_line": 1 + }, + "While expanding the reference 'retdata' in:" + ], + "start_col": 6, + "start_line": 227 + }, + "While constructing the external wrapper for:" + ], + "start_col": 9, + "start_line": 3 + } + }, + "4668": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.mintAndSetPublic" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 72, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/mintAndSetPublic/da17921a4e81c09e730800bbf23bfdbe5e9e6bfaedc59d80fbf62087fa43c27d.cairo" + }, + "parent_location": [ + { + "end_col": 22, + "end_line": 227, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "start_col": 6, + "start_line": 227 + }, + "While constructing the external wrapper for:" + ], + "start_col": 1, + "start_line": 1 + } + }, + "4669": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.tokenURI" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 61, + "end_line": 257, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "parent_location": [ + { + "end_col": 46, + "end_line": 206, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" + }, + "parent_location": [ + { + "end_col": 62, + "end_line": 260, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "start_col": 38, + "start_line": 260 + }, + "While trying to retrieve the implicit argument 'pedersen_ptr' in:" + ], + "start_col": 20, + "start_line": 206 + }, + "While expanding the reference 'pedersen_ptr' in:" + ], + "start_col": 35, + "start_line": 257 + } + }, + "4670": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.tokenURI" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 33, + "end_line": 257, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "parent_location": [ + { + "end_col": 66, + "end_line": 206, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" + }, + "parent_location": [ + { + "end_col": 62, + "end_line": 260, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "start_col": 38, + "start_line": 260 + }, + "While trying to retrieve the implicit argument 'syscall_ptr' in:" + ], + "start_col": 48, + "start_line": 206 + }, + "While expanding the reference 'syscall_ptr' in:" + ], + "start_col": 15, + "start_line": 257 + } + }, + "4671": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.tokenURI" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 78, + "end_line": 257, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "parent_location": [ + { + "end_col": 83, + "end_line": 206, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" + }, + "parent_location": [ + { + "end_col": 62, + "end_line": 260, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "start_col": 38, + "start_line": 260 + }, + "While trying to retrieve the implicit argument 'range_check_ptr' in:" + ], + "start_col": 68, + "start_line": 206 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 63, + "start_line": 257 + } + }, + "4672": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.tokenURI" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 21, + "end_line": 258, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "parent_location": [ + { + "end_col": 61, + "end_line": 260, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "start_col": 54, + "start_line": 260 + }, + "While expanding the reference 'tokenId' in:" + ], + "start_col": 5, + "start_line": 258 + } + }, + "4673": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.tokenURI" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 21, + "end_line": 258, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "parent_location": [ + { + "end_col": 61, + "end_line": 260, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "start_col": 54, + "start_line": 260 + }, + "While expanding the reference 'tokenId' in:" + ], + "start_col": 5, + "start_line": 258 + } + }, + "4674": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.tokenURI" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 62, + "end_line": 260, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "start_col": 38, + "start_line": 260 + } + }, + "4676": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.tokenURI" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 66, + "end_line": 206, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" + }, + "parent_location": [ + { + "end_col": 62, + "end_line": 260, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "parent_location": [ + { + "end_col": 33, + "end_line": 257, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "parent_location": [ + { + "end_col": 39, + "end_line": 261, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "start_col": 5, + "start_line": 261 + }, + "While trying to retrieve the implicit argument 'syscall_ptr' in:" + ], + "start_col": 15, + "start_line": 257 + }, + "While expanding the reference 'syscall_ptr' in:" + ], + "start_col": 38, + "start_line": 260 + }, + "While trying to update the implicit return value 'syscall_ptr' in:" + ], + "start_col": 48, + "start_line": 206 + } + }, + "4677": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.tokenURI" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 46, + "end_line": 206, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" + }, + "parent_location": [ + { + "end_col": 62, + "end_line": 260, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "parent_location": [ + { + "end_col": 61, + "end_line": 257, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "parent_location": [ + { + "end_col": 39, + "end_line": 261, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "start_col": 5, + "start_line": 261 + }, + "While trying to retrieve the implicit argument 'pedersen_ptr' in:" + ], + "start_col": 35, + "start_line": 257 + }, + "While expanding the reference 'pedersen_ptr' in:" + ], + "start_col": 38, + "start_line": 260 + }, + "While trying to update the implicit return value 'pedersen_ptr' in:" + ], + "start_col": 20, + "start_line": 206 + } + }, + "4678": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.tokenURI" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 83, + "end_line": 206, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" + }, + "parent_location": [ + { + "end_col": 62, + "end_line": 260, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "parent_location": [ + { + "end_col": 78, + "end_line": 257, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "parent_location": [ + { + "end_col": 39, + "end_line": 261, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "start_col": 5, + "start_line": 261 + }, + "While trying to retrieve the implicit argument 'range_check_ptr' in:" + ], + "start_col": 63, + "start_line": 257 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 38, + "start_line": 260 + }, + "While trying to update the implicit return value 'range_check_ptr' in:" + ], + "start_col": 68, + "start_line": 206 + } + }, + "4679": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.tokenURI" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 23, + "end_line": 260, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "parent_location": [ + { + "end_col": 26, + "end_line": 261, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "start_col": 13, + "start_line": 261 + }, + "While expanding the reference 'token_uri_len' in:" + ], + "start_col": 10, + "start_line": 260 + } + }, + "4680": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.tokenURI" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 34, + "end_line": 260, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "parent_location": [ + { + "end_col": 37, + "end_line": 261, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "start_col": 28, + "start_line": 261 + }, + "While expanding the reference 'token_uri' in:" + ], + "start_col": 25, + "start_line": 260 + } + }, + "4681": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.tokenURI" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 39, + "end_line": 261, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "start_col": 5, + "start_line": 261 + } + }, + "4682": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.tokenURI_encode_return" + ], + "flow_tracking_data": null, + "hints": [ + { + "location": { + "end_col": 38, + "end_line": 3, + "input_file": { + "filename": "autogen/starknet/external/return/tokenURI/fb2afe9383e6d6e4c510e54ea324f398df586428973a4c0745d97d759227d96c.cairo" + }, + "parent_location": [ + { + "end_col": 14, + "end_line": 257, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "start_col": 6, + "start_line": 257 + }, + "While handling return value of" + ], + "start_col": 5, + "start_line": 3 + }, + "n_prefix_newlines": 0 + } + ], + "inst": { + "end_col": 18, + "end_line": 4, + "input_file": { + "filename": "autogen/starknet/external/return/tokenURI/fb2afe9383e6d6e4c510e54ea324f398df586428973a4c0745d97d759227d96c.cairo" + }, + "parent_location": [ + { + "end_col": 14, + "end_line": 257, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "start_col": 6, + "start_line": 257 + }, + "While handling return value of" + ], + "start_col": 5, + "start_line": 4 + } + }, + "4684": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.tokenURI_encode_return" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 55, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/arg_processor/5462c9ea522f66a6a8b3de2f37f244c7074893fe5c8d0b413046098a1ccfc2ce.cairo" + }, + "parent_location": [ + { + "end_col": 26, + "end_line": 259, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "start_col": 7, + "start_line": 259 + }, + "While handling return value 'token_uri_len'" + ], + "start_col": 1, + "start_line": 1 + } + }, + "4685": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.tokenURI_encode_return" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 52, + "end_line": 2, + "input_file": { + "filename": "autogen/starknet/arg_processor/8d1ba44ec0b1d27c24688348db19d49f555faaa5454ce90a4e7ba33d6a63afea.cairo" + }, + "parent_location": [ + { + "end_col": 44, + "end_line": 259, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "start_col": 28, + "start_line": 259 + }, + "While handling return value 'token_uri'" + ], + "start_col": 1, + "start_line": 2 + } + }, + "4686": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.tokenURI_encode_return" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 45, + "end_line": 5, + "input_file": { + "filename": "autogen/starknet/arg_processor/8d1ba44ec0b1d27c24688348db19d49f555faaa5454ce90a4e7ba33d6a63afea.cairo" + }, + "parent_location": [ + { + "end_col": 44, + "end_line": 259, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "start_col": 28, + "start_line": 259 + }, + "While handling return value 'token_uri'" + ], + "start_col": 1, + "start_line": 5 + } + }, + "4688": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.tokenURI_encode_return" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 48, + "end_line": 2, + "input_file": { + "filename": "autogen/starknet/arg_processor/5462c9ea522f66a6a8b3de2f37f244c7074893fe5c8d0b413046098a1ccfc2ce.cairo" + }, + "parent_location": [ + { + "end_col": 26, + "end_line": 259, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "parent_location": [ + { + "end_col": 53, + "end_line": 10, + "input_file": { + "filename": "autogen/starknet/arg_processor/8d1ba44ec0b1d27c24688348db19d49f555faaa5454ce90a4e7ba33d6a63afea.cairo" + }, + "parent_location": [ + { + "end_col": 44, + "end_line": 259, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "start_col": 28, + "start_line": 259 + }, + "While handling return value 'token_uri'" + ], + "start_col": 35, + "start_line": 10 + }, + "While expanding the reference '__return_value_ptr' in:" + ], + "start_col": 7, + "start_line": 259 + }, + "While handling return value 'token_uri_len'" + ], + "start_col": 26, + "start_line": 2 + } + }, + "4690": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.tokenURI_encode_return" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 84, + "end_line": 10, + "input_file": { + "filename": "autogen/starknet/arg_processor/8d1ba44ec0b1d27c24688348db19d49f555faaa5454ce90a4e7ba33d6a63afea.cairo" + }, + "parent_location": [ + { + "end_col": 44, + "end_line": 259, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "start_col": 28, + "start_line": 259 + }, + "While handling return value 'token_uri'" + ], + "start_col": 1, + "start_line": 10 + } + }, + "4691": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.tokenURI_encode_return" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 48, + "end_line": 2, + "input_file": { + "filename": "autogen/starknet/arg_processor/5462c9ea522f66a6a8b3de2f37f244c7074893fe5c8d0b413046098a1ccfc2ce.cairo" + }, + "parent_location": [ + { + "end_col": 26, + "end_line": 259, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "parent_location": [ + { + "end_col": 49, + "end_line": 7, + "input_file": { + "filename": "autogen/starknet/arg_processor/8d1ba44ec0b1d27c24688348db19d49f555faaa5454ce90a4e7ba33d6a63afea.cairo" + }, + "parent_location": [ + { + "end_col": 44, + "end_line": 259, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "parent_location": [ + { + "end_col": 32, + "end_line": 12, + "input_file": { + "filename": "autogen/starknet/arg_processor/8d1ba44ec0b1d27c24688348db19d49f555faaa5454ce90a4e7ba33d6a63afea.cairo" + }, + "parent_location": [ + { + "end_col": 44, + "end_line": 259, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "start_col": 28, + "start_line": 259 + }, + "While handling return value 'token_uri'" + ], + "start_col": 9, + "start_line": 12 + }, + "While expanding the reference '__return_value_ptr_copy' in:" + ], + "start_col": 28, + "start_line": 259 + }, + "While handling return value 'token_uri'" + ], + "start_col": 31, + "start_line": 7 + }, + "While expanding the reference '__return_value_ptr' in:" + ], + "start_col": 7, + "start_line": 259 + }, + "While handling return value 'token_uri_len'" + ], + "start_col": 26, + "start_line": 2 + } + }, + "4693": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.tokenURI_encode_return" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 28, + "end_line": 13, + "input_file": { + "filename": "autogen/starknet/arg_processor/8d1ba44ec0b1d27c24688348db19d49f555faaa5454ce90a4e7ba33d6a63afea.cairo" + }, + "parent_location": [ + { + "end_col": 44, + "end_line": 259, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "start_col": 28, + "start_line": 259 + }, + "While handling return value 'token_uri'" + ], + "start_col": 9, + "start_line": 13 + } + }, + "4694": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.tokenURI_encode_return" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 32, + "end_line": 14, + "input_file": { + "filename": "autogen/starknet/arg_processor/8d1ba44ec0b1d27c24688348db19d49f555faaa5454ce90a4e7ba33d6a63afea.cairo" + }, + "parent_location": [ + { + "end_col": 44, + "end_line": 259, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "start_col": 28, + "start_line": 259 + }, + "While handling return value 'token_uri'" + ], + "start_col": 9, + "start_line": 14 + } + }, + "4695": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.tokenURI_encode_return" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 37, + "end_line": 14, + "input_file": { + "filename": "autogen/starknet/arg_processor/8d1ba44ec0b1d27c24688348db19d49f555faaa5454ce90a4e7ba33d6a63afea.cairo" + }, + "parent_location": [ + { + "end_col": 44, + "end_line": 259, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "start_col": 28, + "start_line": 259 + }, + "While handling return value 'token_uri'" + ], + "start_col": 1, + "start_line": 11 + } + }, + "4697": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.tokenURI_encode_return" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 22, + "end_line": 5, + "input_file": { + "filename": "autogen/starknet/arg_processor/8d1ba44ec0b1d27c24688348db19d49f555faaa5454ce90a4e7ba33d6a63afea.cairo" + }, + "parent_location": [ + { + "end_col": 44, + "end_line": 259, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "parent_location": [ + { + "end_col": 40, + "end_line": 10, + "input_file": { + "filename": "autogen/starknet/external/return/tokenURI/fb2afe9383e6d6e4c510e54ea324f398df586428973a4c0745d97d759227d96c.cairo" + }, + "parent_location": [ + { + "end_col": 14, + "end_line": 257, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "start_col": 6, + "start_line": 257 + }, + "While handling return value of" + ], + "start_col": 25, + "start_line": 10 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 28, + "start_line": 259 + }, + "While handling return value 'token_uri'" + ], + "start_col": 7, + "start_line": 5 + } + }, + "4698": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.tokenURI_encode_return" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 63, + "end_line": 11, + "input_file": { + "filename": "autogen/starknet/external/return/tokenURI/fb2afe9383e6d6e4c510e54ea324f398df586428973a4c0745d97d759227d96c.cairo" + }, + "parent_location": [ + { + "end_col": 14, + "end_line": 257, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "start_col": 6, + "start_line": 257 + }, + "While handling return value of" + ], + "start_col": 18, + "start_line": 11 + } + }, + "4699": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.tokenURI_encode_return" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 35, + "end_line": 5, + "input_file": { + "filename": "autogen/starknet/external/return/tokenURI/fb2afe9383e6d6e4c510e54ea324f398df586428973a4c0745d97d759227d96c.cairo" + }, + "parent_location": [ + { + "end_col": 14, + "end_line": 257, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "parent_location": [ + { + "end_col": 38, + "end_line": 12, + "input_file": { + "filename": "autogen/starknet/external/return/tokenURI/fb2afe9383e6d6e4c510e54ea324f398df586428973a4c0745d97d759227d96c.cairo" + }, + "parent_location": [ + { + "end_col": 14, + "end_line": 257, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "start_col": 6, + "start_line": 257 + }, + "While handling return value of" + ], + "start_col": 14, + "start_line": 12 + }, + "While expanding the reference '__return_value_ptr_start' in:" + ], + "start_col": 6, + "start_line": 257 + }, + "While handling return value of" + ], + "start_col": 11, + "start_line": 5 + } + }, + "4700": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.tokenURI_encode_return" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 40, + "end_line": 12, + "input_file": { + "filename": "autogen/starknet/external/return/tokenURI/fb2afe9383e6d6e4c510e54ea324f398df586428973a4c0745d97d759227d96c.cairo" + }, + "parent_location": [ + { + "end_col": 14, + "end_line": 257, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "start_col": 6, + "start_line": 257 + }, + "While handling return value of" + ], + "start_col": 5, + "start_line": 9 + } + }, + "4701": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.tokenURI" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 18, + "end_line": 2, + "input_file": { + "filename": "autogen/starknet/external/tokenURI/86cf3ce3e78b1f08bd517752a6b6deed16efd89e5728b638ff9485a43d30a598.cairo" + }, + "parent_location": [ + { + "end_col": 14, + "end_line": 257, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "start_col": 6, + "start_line": 257 + }, + "While constructing the external wrapper for:" + ], + "start_col": 5, + "start_line": 2 + } + }, + "4703": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.tokenURI" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 40, + "end_line": 3, + "input_file": { + "filename": "autogen/starknet/arg_processor/60c79ef5477686f2843e61432dcde7f4fc0f354d42095115ea9dca625a35df6e.cairo" + }, + "parent_location": [ + { + "end_col": 21, + "end_line": 258, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "parent_location": [ + { + "end_col": 45, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/arg_processor/c31620b02d4d706f0542c989b2aadc01b0981d1f6a5933a8fe4937ace3d70d92.cairo" + }, + "parent_location": [ + { + "end_col": 14, + "end_line": 257, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "parent_location": [ + { + "end_col": 57, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/arg_processor/01cba52f8515996bb9d7070bde81ff39281d096d7024a558efcba6e1fd2402cf.cairo" + }, + "parent_location": [ + { + "end_col": 14, + "end_line": 257, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "start_col": 6, + "start_line": 257 + }, + "While handling calldata of" + ], + "start_col": 35, + "start_line": 1 + }, + "While expanding the reference '__calldata_actual_size' in:" + ], + "start_col": 6, + "start_line": 257 + }, + "While handling calldata of" + ], + "start_col": 31, + "start_line": 1 + }, + "While expanding the reference '__calldata_ptr' in:" + ], + "start_col": 5, + "start_line": 258 + }, + "While handling calldata argument 'tokenId'" + ], + "start_col": 22, + "start_line": 3 + } + }, + "4705": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.tokenURI" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 58, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/arg_processor/01cba52f8515996bb9d7070bde81ff39281d096d7024a558efcba6e1fd2402cf.cairo" + }, + "parent_location": [ + { + "end_col": 14, + "end_line": 257, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "start_col": 6, + "start_line": 257 + }, + "While handling calldata of" + ], + "start_col": 1, + "start_line": 1 + } + }, + "4706": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.tokenURI" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 64, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/tokenURI/b2c52ca2d2a8fc8791a983086d8716c5eacd0c3d62934914d2286f84b98ff4cb.cairo" + }, + "parent_location": [ + { + "end_col": 33, + "end_line": 257, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "parent_location": [ + { + "end_col": 55, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/tokenURI/42e9e406a0e7dbd46b7b1448ce8da1ca2e3fdc14d84af0c1d0d4fdb56a52a5f4.cairo" + }, + "parent_location": [ + { + "end_col": 14, + "end_line": 257, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "start_col": 6, + "start_line": 257 + }, + "While constructing the external wrapper for:" + ], + "start_col": 44, + "start_line": 1 + }, + "While expanding the reference 'syscall_ptr' in:" + ], + "start_col": 15, + "start_line": 257 + }, + "While constructing the external wrapper for:" + ], + "start_col": 19, + "start_line": 1 + } + }, + "4707": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.tokenURI" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 110, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/tokenURI/9684a85e93c782014ca14293edea4eb2502039a5a7b6538ecd39c56faaf12529.cairo" + }, + "parent_location": [ + { + "end_col": 61, + "end_line": 257, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "parent_location": [ + { + "end_col": 82, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/tokenURI/42e9e406a0e7dbd46b7b1448ce8da1ca2e3fdc14d84af0c1d0d4fdb56a52a5f4.cairo" + }, + "parent_location": [ + { + "end_col": 14, + "end_line": 257, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "start_col": 6, + "start_line": 257 + }, + "While constructing the external wrapper for:" + ], + "start_col": 70, + "start_line": 1 + }, + "While expanding the reference 'pedersen_ptr' in:" + ], + "start_col": 35, + "start_line": 257 + }, + "While constructing the external wrapper for:" + ], + "start_col": 20, + "start_line": 1 + } + }, + "4708": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.tokenURI" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 67, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/tokenURI/741ea357d6336b0bed7bf0472425acd0311d543883b803388880e60a232040c7.cairo" + }, + "parent_location": [ + { + "end_col": 78, + "end_line": 257, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "parent_location": [ + { + "end_col": 115, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/tokenURI/42e9e406a0e7dbd46b7b1448ce8da1ca2e3fdc14d84af0c1d0d4fdb56a52a5f4.cairo" + }, + "parent_location": [ + { + "end_col": 14, + "end_line": 257, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "start_col": 6, + "start_line": 257 + }, + "While constructing the external wrapper for:" + ], + "start_col": 100, + "start_line": 1 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 63, + "start_line": 257 + }, + "While constructing the external wrapper for:" + ], + "start_col": 23, + "start_line": 1 + } + }, + "4709": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.tokenURI" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 67, + "end_line": 2, + "input_file": { + "filename": "autogen/starknet/arg_processor/60c79ef5477686f2843e61432dcde7f4fc0f354d42095115ea9dca625a35df6e.cairo" + }, + "parent_location": [ + { + "end_col": 21, + "end_line": 258, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "parent_location": [ + { + "end_col": 147, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/tokenURI/42e9e406a0e7dbd46b7b1448ce8da1ca2e3fdc14d84af0c1d0d4fdb56a52a5f4.cairo" + }, + "parent_location": [ + { + "end_col": 14, + "end_line": 257, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "start_col": 6, + "start_line": 257 + }, + "While constructing the external wrapper for:" + ], + "start_col": 125, + "start_line": 1 + }, + "While expanding the reference '__calldata_arg_tokenId' in:" + ], + "start_col": 5, + "start_line": 258 + }, + "While handling calldata argument 'tokenId'" + ], + "start_col": 30, + "start_line": 1 + } + }, + "4710": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.tokenURI" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 67, + "end_line": 2, + "input_file": { + "filename": "autogen/starknet/arg_processor/60c79ef5477686f2843e61432dcde7f4fc0f354d42095115ea9dca625a35df6e.cairo" + }, + "parent_location": [ + { + "end_col": 21, + "end_line": 258, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "parent_location": [ + { + "end_col": 147, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/tokenURI/42e9e406a0e7dbd46b7b1448ce8da1ca2e3fdc14d84af0c1d0d4fdb56a52a5f4.cairo" + }, + "parent_location": [ + { + "end_col": 14, + "end_line": 257, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "start_col": 6, + "start_line": 257 + }, + "While constructing the external wrapper for:" + ], + "start_col": 125, + "start_line": 1 + }, + "While expanding the reference '__calldata_arg_tokenId' in:" + ], + "start_col": 5, + "start_line": 258 + }, + "While handling calldata argument 'tokenId'" + ], + "start_col": 30, + "start_line": 1 + } + }, + "4711": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.tokenURI" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 14, + "end_line": 257, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "start_col": 6, + "start_line": 257 + } + }, + "4713": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.tokenURI" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 55, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/tokenURI/42e9e406a0e7dbd46b7b1448ce8da1ca2e3fdc14d84af0c1d0d4fdb56a52a5f4.cairo" + }, + "parent_location": [ + { + "end_col": 14, + "end_line": 257, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "parent_location": [ + { + "end_col": 55, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/tokenURI/42e9e406a0e7dbd46b7b1448ce8da1ca2e3fdc14d84af0c1d0d4fdb56a52a5f4.cairo" + }, + "parent_location": [ + { + "end_col": 14, + "end_line": 257, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "start_col": 6, + "start_line": 257 + }, + "While constructing the external wrapper for:" + ], + "start_col": 44, + "start_line": 1 + }, + "While auto generating local variable for 'syscall_ptr'." + ], + "start_col": 6, + "start_line": 257 + }, + "While constructing the external wrapper for:" + ], + "start_col": 44, + "start_line": 1 + } + }, + "4714": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.tokenURI" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 82, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/tokenURI/42e9e406a0e7dbd46b7b1448ce8da1ca2e3fdc14d84af0c1d0d4fdb56a52a5f4.cairo" + }, + "parent_location": [ + { + "end_col": 14, + "end_line": 257, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "parent_location": [ + { + "end_col": 82, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/tokenURI/42e9e406a0e7dbd46b7b1448ce8da1ca2e3fdc14d84af0c1d0d4fdb56a52a5f4.cairo" + }, + "parent_location": [ + { + "end_col": 14, + "end_line": 257, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "start_col": 6, + "start_line": 257 + }, + "While constructing the external wrapper for:" + ], + "start_col": 70, + "start_line": 1 + }, + "While auto generating local variable for 'pedersen_ptr'." + ], + "start_col": 6, + "start_line": 257 + }, + "While constructing the external wrapper for:" + ], + "start_col": 70, + "start_line": 1 + } + }, + "4715": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.tokenURI" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 115, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/tokenURI/42e9e406a0e7dbd46b7b1448ce8da1ca2e3fdc14d84af0c1d0d4fdb56a52a5f4.cairo" + }, + "parent_location": [ + { + "end_col": 14, + "end_line": 257, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "parent_location": [ + { + "end_col": 97, + "end_line": 2, + "input_file": { + "filename": "autogen/starknet/external/tokenURI/42e9e406a0e7dbd46b7b1448ce8da1ca2e3fdc14d84af0c1d0d4fdb56a52a5f4.cairo" + }, + "parent_location": [ + { + "end_col": 14, + "end_line": 257, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "start_col": 6, + "start_line": 257 + }, + "While constructing the external wrapper for:" + ], + "start_col": 82, + "start_line": 2 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 6, + "start_line": 257 + }, + "While constructing the external wrapper for:" + ], + "start_col": 100, + "start_line": 1 + } + }, + "4716": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.tokenURI" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 98, + "end_line": 2, + "input_file": { + "filename": "autogen/starknet/external/tokenURI/42e9e406a0e7dbd46b7b1448ce8da1ca2e3fdc14d84af0c1d0d4fdb56a52a5f4.cairo" + }, + "parent_location": [ + { + "end_col": 14, + "end_line": 257, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "start_col": 6, + "start_line": 257 + }, + "While constructing the external wrapper for:" + ], + "start_col": 48, + "start_line": 2 + } + }, + "4718": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.tokenURI" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 55, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/tokenURI/42e9e406a0e7dbd46b7b1448ce8da1ca2e3fdc14d84af0c1d0d4fdb56a52a5f4.cairo" + }, + "parent_location": [ + { + "end_col": 14, + "end_line": 257, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "parent_location": [ + { + "end_col": 55, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/tokenURI/42e9e406a0e7dbd46b7b1448ce8da1ca2e3fdc14d84af0c1d0d4fdb56a52a5f4.cairo" + }, + "parent_location": [ + { + "end_col": 14, + "end_line": 257, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "parent_location": [ + { + "end_col": 20, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/tokenURI/da17921a4e81c09e730800bbf23bfdbe5e9e6bfaedc59d80fbf62087fa43c27d.cairo" + }, + "parent_location": [ + { + "end_col": 14, + "end_line": 257, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "start_col": 6, + "start_line": 257 + }, + "While constructing the external wrapper for:" + ], + "start_col": 9, + "start_line": 1 + }, + "While expanding the reference 'syscall_ptr' in:" + ], + "start_col": 6, + "start_line": 257 + }, + "While constructing the external wrapper for:" + ], + "start_col": 44, + "start_line": 1 + }, + "While auto generating local variable for 'syscall_ptr'." + ], + "start_col": 6, + "start_line": 257 + }, + "While constructing the external wrapper for:" + ], + "start_col": 44, + "start_line": 1 + } + }, + "4719": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.tokenURI" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 82, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/tokenURI/42e9e406a0e7dbd46b7b1448ce8da1ca2e3fdc14d84af0c1d0d4fdb56a52a5f4.cairo" + }, + "parent_location": [ + { + "end_col": 14, + "end_line": 257, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "parent_location": [ + { + "end_col": 82, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/tokenURI/42e9e406a0e7dbd46b7b1448ce8da1ca2e3fdc14d84af0c1d0d4fdb56a52a5f4.cairo" + }, + "parent_location": [ + { + "end_col": 14, + "end_line": 257, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "parent_location": [ + { + "end_col": 33, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/tokenURI/da17921a4e81c09e730800bbf23bfdbe5e9e6bfaedc59d80fbf62087fa43c27d.cairo" + }, + "parent_location": [ + { + "end_col": 14, + "end_line": 257, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "start_col": 6, + "start_line": 257 + }, + "While constructing the external wrapper for:" + ], + "start_col": 21, + "start_line": 1 + }, + "While expanding the reference 'pedersen_ptr' in:" + ], + "start_col": 6, + "start_line": 257 + }, + "While constructing the external wrapper for:" + ], + "start_col": 70, + "start_line": 1 + }, + "While auto generating local variable for 'pedersen_ptr'." + ], + "start_col": 6, + "start_line": 257 + }, + "While constructing the external wrapper for:" + ], + "start_col": 70, + "start_line": 1 + } + }, + "4720": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.tokenURI" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 21, + "end_line": 2, + "input_file": { + "filename": "autogen/starknet/external/tokenURI/42e9e406a0e7dbd46b7b1448ce8da1ca2e3fdc14d84af0c1d0d4fdb56a52a5f4.cairo" + }, + "parent_location": [ + { + "end_col": 14, + "end_line": 257, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "parent_location": [ + { + "end_col": 49, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/tokenURI/da17921a4e81c09e730800bbf23bfdbe5e9e6bfaedc59d80fbf62087fa43c27d.cairo" + }, + "parent_location": [ + { + "end_col": 14, + "end_line": 257, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "start_col": 6, + "start_line": 257 + }, + "While constructing the external wrapper for:" + ], + "start_col": 34, + "start_line": 1 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 6, + "start_line": 257 + }, + "While constructing the external wrapper for:" + ], + "start_col": 6, + "start_line": 2 + } + }, + "4721": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.tokenURI" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 35, + "end_line": 2, + "input_file": { + "filename": "autogen/starknet/external/tokenURI/42e9e406a0e7dbd46b7b1448ce8da1ca2e3fdc14d84af0c1d0d4fdb56a52a5f4.cairo" + }, + "parent_location": [ + { + "end_col": 14, + "end_line": 257, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "parent_location": [ + { + "end_col": 62, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/tokenURI/da17921a4e81c09e730800bbf23bfdbe5e9e6bfaedc59d80fbf62087fa43c27d.cairo" + }, + "parent_location": [ + { + "end_col": 14, + "end_line": 257, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "start_col": 6, + "start_line": 257 + }, + "While constructing the external wrapper for:" + ], + "start_col": 50, + "start_line": 1 + }, + "While expanding the reference 'retdata_size' in:" + ], + "start_col": 6, + "start_line": 257 + }, + "While constructing the external wrapper for:" + ], + "start_col": 23, + "start_line": 2 + } + }, + "4722": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.tokenURI" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 44, + "end_line": 2, + "input_file": { + "filename": "autogen/starknet/external/tokenURI/42e9e406a0e7dbd46b7b1448ce8da1ca2e3fdc14d84af0c1d0d4fdb56a52a5f4.cairo" + }, + "parent_location": [ + { + "end_col": 14, + "end_line": 257, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "parent_location": [ + { + "end_col": 70, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/tokenURI/da17921a4e81c09e730800bbf23bfdbe5e9e6bfaedc59d80fbf62087fa43c27d.cairo" + }, + "parent_location": [ + { + "end_col": 14, + "end_line": 257, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "start_col": 6, + "start_line": 257 + }, + "While constructing the external wrapper for:" + ], + "start_col": 63, + "start_line": 1 + }, + "While expanding the reference 'retdata' in:" + ], + "start_col": 6, + "start_line": 257 + }, + "While constructing the external wrapper for:" + ], + "start_col": 37, + "start_line": 2 + } + }, + "4723": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.tokenURI" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 72, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/tokenURI/da17921a4e81c09e730800bbf23bfdbe5e9e6bfaedc59d80fbf62087fa43c27d.cairo" + }, + "parent_location": [ + { + "end_col": 14, + "end_line": 257, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "start_col": 6, + "start_line": 257 + }, + "While constructing the external wrapper for:" + ], + "start_col": 1, + "start_line": 1 + } + }, + "4724": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.initialize" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 35, + "end_line": 270, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "parent_location": [ + { + "end_col": 33, + "end_line": 13, + "input_file": { + "filename": "autogen/starknet/storage_var/initialized/decl.cairo" + }, + "parent_location": [ + { + "end_col": 44, + "end_line": 278, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "start_col": 26, + "start_line": 278 + }, + "While trying to retrieve the implicit argument 'syscall_ptr' in:" + ], + "start_col": 15, + "start_line": 13 + }, + "While expanding the reference 'syscall_ptr' in:" + ], + "start_col": 17, + "start_line": 270 + } + }, + "4725": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.initialize" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 63, + "end_line": 270, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "parent_location": [ + { + "end_col": 61, + "end_line": 13, + "input_file": { + "filename": "autogen/starknet/storage_var/initialized/decl.cairo" + }, + "parent_location": [ + { + "end_col": 44, + "end_line": 278, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "start_col": 26, + "start_line": 278 + }, + "While trying to retrieve the implicit argument 'pedersen_ptr' in:" + ], + "start_col": 35, + "start_line": 13 + }, + "While expanding the reference 'pedersen_ptr' in:" + ], + "start_col": 37, + "start_line": 270 + } + }, + "4726": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.initialize" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 80, + "end_line": 270, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "parent_location": [ + { + "end_col": 78, + "end_line": 13, + "input_file": { + "filename": "autogen/starknet/storage_var/initialized/decl.cairo" + }, + "parent_location": [ + { + "end_col": 44, + "end_line": 278, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "start_col": 26, + "start_line": 278 + }, + "While trying to retrieve the implicit argument 'range_check_ptr' in:" + ], + "start_col": 63, + "start_line": 13 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 65, + "start_line": 270 + } + }, + "4727": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.initialize" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 44, + "end_line": 278, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "start_col": 26, + "start_line": 278 + } + }, + "4729": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.initialize" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 29, + "end_line": 279, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "start_col": 5, + "start_line": 279 + } + }, + "4731": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.initialize" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 33, + "end_line": 13, + "input_file": { + "filename": "autogen/starknet/storage_var/initialized/decl.cairo" + }, + "parent_location": [ + { + "end_col": 44, + "end_line": 278, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "parent_location": [ + { + "end_col": 40, + "end_line": 76, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "parent_location": [ + { + "end_col": 37, + "end_line": 280, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "start_col": 5, + "start_line": 280 + }, + "While trying to retrieve the implicit argument 'syscall_ptr' in:" + ], + "start_col": 22, + "start_line": 76 + }, + "While expanding the reference 'syscall_ptr' in:" + ], + "start_col": 26, + "start_line": 278 + }, + "While trying to update the implicit return value 'syscall_ptr' in:" + ], + "start_col": 15, + "start_line": 13 + } + }, + "4732": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.initialize" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 61, + "end_line": 13, + "input_file": { + "filename": "autogen/starknet/storage_var/initialized/decl.cairo" + }, + "parent_location": [ + { + "end_col": 44, + "end_line": 278, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "parent_location": [ + { + "end_col": 68, + "end_line": 76, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "parent_location": [ + { + "end_col": 37, + "end_line": 280, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "start_col": 5, + "start_line": 280 + }, + "While trying to retrieve the implicit argument 'pedersen_ptr' in:" + ], + "start_col": 42, + "start_line": 76 + }, + "While expanding the reference 'pedersen_ptr' in:" + ], + "start_col": 26, + "start_line": 278 + }, + "While trying to update the implicit return value 'pedersen_ptr' in:" + ], + "start_col": 35, + "start_line": 13 + } + }, + "4733": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.initialize" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 78, + "end_line": 13, + "input_file": { + "filename": "autogen/starknet/storage_var/initialized/decl.cairo" + }, + "parent_location": [ + { + "end_col": 44, + "end_line": 278, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "parent_location": [ + { + "end_col": 85, + "end_line": 76, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "parent_location": [ + { + "end_col": 37, + "end_line": 280, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "start_col": 5, + "start_line": 280 + }, + "While trying to retrieve the implicit argument 'range_check_ptr' in:" + ], + "start_col": 70, + "start_line": 76 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 26, + "start_line": 278 + }, + "While trying to update the implicit return value 'range_check_ptr' in:" + ], + "start_col": 63, + "start_line": 13 + } + }, + "4734": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.initialize" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 15, + "end_line": 271, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "parent_location": [ + { + "end_col": 28, + "end_line": 280, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "start_col": 24, + "start_line": 280 + }, + "While expanding the reference 'name' in:" + ], + "start_col": 5, + "start_line": 271 + } + }, + "4735": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.initialize" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 17, + "end_line": 272, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "parent_location": [ + { + "end_col": 36, + "end_line": 280, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "start_col": 30, + "start_line": 280 + }, + "While expanding the reference 'symbol' in:" + ], + "start_col": 5, + "start_line": 272 + } + }, + "4736": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.initialize" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 37, + "end_line": 280, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "start_col": 5, + "start_line": 280 + } + }, + "4738": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.initialize" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 35, + "end_line": 281, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "start_col": 5, + "start_line": 281 + } + }, + "4740": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.initialize" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 16, + "end_line": 273, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "parent_location": [ + { + "end_col": 30, + "end_line": 282, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "start_col": 25, + "start_line": 282 + }, + "While expanding the reference 'owner' in:" + ], + "start_col": 5, + "start_line": 273 + } + }, + "4741": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.initialize" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 31, + "end_line": 282, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "start_col": 5, + "start_line": 282 + } + }, + "4743": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.initialize" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 22, + "end_line": 274, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "parent_location": [ + { + "end_col": 40, + "end_line": 283, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "start_col": 29, + "start_line": 283 + }, + "While expanding the reference 'merkle_root' in:" + ], + "start_col": 5, + "start_line": 274 + } + }, + "4744": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.initialize" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 41, + "end_line": 283, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "start_col": 5, + "start_line": 283 + } + }, + "4746": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.initialize" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 25, + "end_line": 275, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "parent_location": [ + { + "end_col": 46, + "end_line": 284, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "start_col": 32, + "start_line": 284 + }, + "While expanding the reference 'max_per_wallet' in:" + ], + "start_col": 5, + "start_line": 275 + } + }, + "4747": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.initialize" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 47, + "end_line": 284, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "start_col": 5, + "start_line": 284 + } + }, + "4749": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.initialize" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 27, + "end_line": 276, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "parent_location": [ + { + "end_col": 47, + "end_line": 285, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "start_col": 31, + "start_line": 285 + }, + "While expanding the reference 'renderer_address' in:" + ], + "start_col": 5, + "start_line": 276 + } + }, + "4750": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.initialize" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 48, + "end_line": 285, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "start_col": 5, + "start_line": 285 + } + }, + "4752": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.initialize" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 22, + "end_line": 286, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "start_col": 5, + "start_line": 286 + } + }, + "4754": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.initialize" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 24, + "end_line": 287, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "start_col": 23, + "start_line": 287 + } + }, + "4756": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.initialize" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 25, + "end_line": 287, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "start_col": 5, + "start_line": 287 + } + }, + "4758": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.initialize" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 15, + "end_line": 288, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "start_col": 5, + "start_line": 288 + } + }, + "4759": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.initialize" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 40, + "end_line": 2, + "input_file": { + "filename": "autogen/starknet/arg_processor/c78355ecc2754d55946f2925c4c255af62ef2b2ddba4e3e4e975bebf3d66daa1.cairo" + }, + "parent_location": [ + { + "end_col": 27, + "end_line": 276, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "parent_location": [ + { + "end_col": 45, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/arg_processor/c31620b02d4d706f0542c989b2aadc01b0981d1f6a5933a8fe4937ace3d70d92.cairo" + }, + "parent_location": [ + { + "end_col": 16, + "end_line": 270, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "parent_location": [ + { + "end_col": 57, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/arg_processor/01cba52f8515996bb9d7070bde81ff39281d096d7024a558efcba6e1fd2402cf.cairo" + }, + "parent_location": [ + { + "end_col": 16, + "end_line": 270, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "start_col": 6, + "start_line": 270 + }, + "While handling calldata of" + ], + "start_col": 35, + "start_line": 1 + }, + "While expanding the reference '__calldata_actual_size' in:" + ], + "start_col": 6, + "start_line": 270 + }, + "While handling calldata of" + ], + "start_col": 31, + "start_line": 1 + }, + "While expanding the reference '__calldata_ptr' in:" + ], + "start_col": 5, + "start_line": 276 + }, + "While handling calldata argument 'renderer_address'" + ], + "start_col": 22, + "start_line": 2 + } + }, + "4761": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.initialize" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 58, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/arg_processor/01cba52f8515996bb9d7070bde81ff39281d096d7024a558efcba6e1fd2402cf.cairo" + }, + "parent_location": [ + { + "end_col": 16, + "end_line": 270, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "start_col": 6, + "start_line": 270 + }, + "While handling calldata of" + ], + "start_col": 1, + "start_line": 1 + } + }, + "4762": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.initialize" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 64, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/initialize/b2c52ca2d2a8fc8791a983086d8716c5eacd0c3d62934914d2286f84b98ff4cb.cairo" + }, + "parent_location": [ + { + "end_col": 35, + "end_line": 270, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "parent_location": [ + { + "end_col": 55, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/initialize/98fffa3d7b20f8a177d79ca985c017c6105a8f832599cc3392d95ef2cfd87a05.cairo" + }, + "parent_location": [ + { + "end_col": 16, + "end_line": 270, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "start_col": 6, + "start_line": 270 + }, + "While constructing the external wrapper for:" + ], + "start_col": 44, + "start_line": 1 + }, + "While expanding the reference 'syscall_ptr' in:" + ], + "start_col": 17, + "start_line": 270 + }, + "While constructing the external wrapper for:" + ], + "start_col": 19, + "start_line": 1 + } + }, + "4763": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.initialize" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 110, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/initialize/9684a85e93c782014ca14293edea4eb2502039a5a7b6538ecd39c56faaf12529.cairo" + }, + "parent_location": [ + { + "end_col": 63, + "end_line": 270, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "parent_location": [ + { + "end_col": 82, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/initialize/98fffa3d7b20f8a177d79ca985c017c6105a8f832599cc3392d95ef2cfd87a05.cairo" + }, + "parent_location": [ + { + "end_col": 16, + "end_line": 270, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "start_col": 6, + "start_line": 270 + }, + "While constructing the external wrapper for:" + ], + "start_col": 70, + "start_line": 1 + }, + "While expanding the reference 'pedersen_ptr' in:" + ], + "start_col": 37, + "start_line": 270 + }, + "While constructing the external wrapper for:" + ], + "start_col": 20, + "start_line": 1 + } + }, + "4764": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.initialize" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 67, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/initialize/741ea357d6336b0bed7bf0472425acd0311d543883b803388880e60a232040c7.cairo" + }, + "parent_location": [ + { + "end_col": 80, + "end_line": 270, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "parent_location": [ + { + "end_col": 115, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/initialize/98fffa3d7b20f8a177d79ca985c017c6105a8f832599cc3392d95ef2cfd87a05.cairo" + }, + "parent_location": [ + { + "end_col": 16, + "end_line": 270, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "start_col": 6, + "start_line": 270 + }, + "While constructing the external wrapper for:" + ], + "start_col": 100, + "start_line": 1 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 65, + "start_line": 270 + }, + "While constructing the external wrapper for:" + ], + "start_col": 23, + "start_line": 1 + } + }, + "4765": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.initialize" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 43, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/arg_processor/e1eb73cd870ec466294c3700e77817cf3c039ac1384882ddb76383eb87a5da90.cairo" + }, + "parent_location": [ + { + "end_col": 15, + "end_line": 271, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "parent_location": [ + { + "end_col": 141, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/initialize/98fffa3d7b20f8a177d79ca985c017c6105a8f832599cc3392d95ef2cfd87a05.cairo" + }, + "parent_location": [ + { + "end_col": 16, + "end_line": 270, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "start_col": 6, + "start_line": 270 + }, + "While constructing the external wrapper for:" + ], + "start_col": 122, + "start_line": 1 + }, + "While expanding the reference '__calldata_arg_name' in:" + ], + "start_col": 5, + "start_line": 271 + }, + "While handling calldata argument 'name'" + ], + "start_col": 27, + "start_line": 1 + } + }, + "4766": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.initialize" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 45, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/arg_processor/99058c0781745b3c0332799d723549974cbf489b623dde03906204304de60803.cairo" + }, + "parent_location": [ + { + "end_col": 17, + "end_line": 272, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "parent_location": [ + { + "end_col": 171, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/initialize/98fffa3d7b20f8a177d79ca985c017c6105a8f832599cc3392d95ef2cfd87a05.cairo" + }, + "parent_location": [ + { + "end_col": 16, + "end_line": 270, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "start_col": 6, + "start_line": 270 + }, + "While constructing the external wrapper for:" + ], + "start_col": 150, + "start_line": 1 + }, + "While expanding the reference '__calldata_arg_symbol' in:" + ], + "start_col": 5, + "start_line": 272 + }, + "While handling calldata argument 'symbol'" + ], + "start_col": 29, + "start_line": 1 + } + }, + "4767": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.initialize" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 44, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/arg_processor/f6a4d9ae897caf37cefd18f7c8da7eee73157818279359aadee282f0fe59cdbc.cairo" + }, + "parent_location": [ + { + "end_col": 16, + "end_line": 273, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "parent_location": [ + { + "end_col": 199, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/initialize/98fffa3d7b20f8a177d79ca985c017c6105a8f832599cc3392d95ef2cfd87a05.cairo" + }, + "parent_location": [ + { + "end_col": 16, + "end_line": 270, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "start_col": 6, + "start_line": 270 + }, + "While constructing the external wrapper for:" + ], + "start_col": 179, + "start_line": 1 + }, + "While expanding the reference '__calldata_arg_owner' in:" + ], + "start_col": 5, + "start_line": 273 + }, + "While handling calldata argument 'owner'" + ], + "start_col": 28, + "start_line": 1 + } + }, + "4768": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.initialize" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 50, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/arg_processor/721e180cb3ac704934655c034d4d45bf2d0ab4353d430b4f2bbda2a388c131b2.cairo" + }, + "parent_location": [ + { + "end_col": 22, + "end_line": 274, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "parent_location": [ + { + "end_col": 239, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/initialize/98fffa3d7b20f8a177d79ca985c017c6105a8f832599cc3392d95ef2cfd87a05.cairo" + }, + "parent_location": [ + { + "end_col": 16, + "end_line": 270, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "start_col": 6, + "start_line": 270 + }, + "While constructing the external wrapper for:" + ], + "start_col": 213, + "start_line": 1 + }, + "While expanding the reference '__calldata_arg_merkle_root' in:" + ], + "start_col": 5, + "start_line": 274 + }, + "While handling calldata argument 'merkle_root'" + ], + "start_col": 34, + "start_line": 1 + } + }, + "4769": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.initialize" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 53, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/arg_processor/e35382e271586e2ad95e0c2b81d70c0cfb65ce154855d90ea95dcf9e76667535.cairo" + }, + "parent_location": [ + { + "end_col": 25, + "end_line": 275, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "parent_location": [ + { + "end_col": 285, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/initialize/98fffa3d7b20f8a177d79ca985c017c6105a8f832599cc3392d95ef2cfd87a05.cairo" + }, + "parent_location": [ + { + "end_col": 16, + "end_line": 270, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "start_col": 6, + "start_line": 270 + }, + "While constructing the external wrapper for:" + ], + "start_col": 256, + "start_line": 1 + }, + "While expanding the reference '__calldata_arg_max_per_wallet' in:" + ], + "start_col": 5, + "start_line": 275 + }, + "While handling calldata argument 'max_per_wallet'" + ], + "start_col": 37, + "start_line": 1 + } + }, + "4770": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.initialize" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 55, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/arg_processor/c78355ecc2754d55946f2925c4c255af62ef2b2ddba4e3e4e975bebf3d66daa1.cairo" + }, + "parent_location": [ + { + "end_col": 27, + "end_line": 276, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "parent_location": [ + { + "end_col": 335, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/initialize/98fffa3d7b20f8a177d79ca985c017c6105a8f832599cc3392d95ef2cfd87a05.cairo" + }, + "parent_location": [ + { + "end_col": 16, + "end_line": 270, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "start_col": 6, + "start_line": 270 + }, + "While constructing the external wrapper for:" + ], + "start_col": 304, + "start_line": 1 + }, + "While expanding the reference '__calldata_arg_renderer_address' in:" + ], + "start_col": 5, + "start_line": 276 + }, + "While handling calldata argument 'renderer_address'" + ], + "start_col": 39, + "start_line": 1 + } + }, + "4771": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.initialize" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 16, + "end_line": 270, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "start_col": 6, + "start_line": 270 + } + }, + "4773": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.initialize" + ], + "flow_tracking_data": null, + "hints": [ + { + "location": { + "end_col": 34, + "end_line": 2, + "input_file": { + "filename": "autogen/starknet/external/initialize/98fffa3d7b20f8a177d79ca985c017c6105a8f832599cc3392d95ef2cfd87a05.cairo" + }, + "parent_location": [ + { + "end_col": 16, + "end_line": 270, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "start_col": 6, + "start_line": 270 + }, + "While constructing the external wrapper for:" + ], + "start_col": 1, + "start_line": 2 + }, + "n_prefix_newlines": 0 + } + ], + "inst": { + "end_col": 24, + "end_line": 3, + "input_file": { + "filename": "autogen/starknet/external/initialize/98fffa3d7b20f8a177d79ca985c017c6105a8f832599cc3392d95ef2cfd87a05.cairo" + }, + "parent_location": [ + { + "end_col": 16, + "end_line": 270, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "start_col": 6, + "start_line": 270 + }, + "While constructing the external wrapper for:" + ], + "start_col": 1, + "start_line": 3 + } + }, + "4775": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.initialize" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 55, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/initialize/98fffa3d7b20f8a177d79ca985c017c6105a8f832599cc3392d95ef2cfd87a05.cairo" + }, + "parent_location": [ + { + "end_col": 16, + "end_line": 270, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "parent_location": [ + { + "end_col": 20, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/initialize/da17921a4e81c09e730800bbf23bfdbe5e9e6bfaedc59d80fbf62087fa43c27d.cairo" + }, + "parent_location": [ + { + "end_col": 16, + "end_line": 270, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "start_col": 6, + "start_line": 270 + }, + "While constructing the external wrapper for:" + ], + "start_col": 9, + "start_line": 1 + }, + "While expanding the reference 'syscall_ptr' in:" + ], + "start_col": 6, + "start_line": 270 + }, + "While constructing the external wrapper for:" + ], + "start_col": 44, + "start_line": 1 + } + }, + "4776": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.initialize" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 82, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/initialize/98fffa3d7b20f8a177d79ca985c017c6105a8f832599cc3392d95ef2cfd87a05.cairo" + }, + "parent_location": [ + { + "end_col": 16, + "end_line": 270, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "parent_location": [ + { + "end_col": 33, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/initialize/da17921a4e81c09e730800bbf23bfdbe5e9e6bfaedc59d80fbf62087fa43c27d.cairo" + }, + "parent_location": [ + { + "end_col": 16, + "end_line": 270, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "start_col": 6, + "start_line": 270 + }, + "While constructing the external wrapper for:" + ], + "start_col": 21, + "start_line": 1 + }, + "While expanding the reference 'pedersen_ptr' in:" + ], + "start_col": 6, + "start_line": 270 + }, + "While constructing the external wrapper for:" + ], + "start_col": 70, + "start_line": 1 + } + }, + "4777": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.initialize" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 115, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/initialize/98fffa3d7b20f8a177d79ca985c017c6105a8f832599cc3392d95ef2cfd87a05.cairo" + }, + "parent_location": [ + { + "end_col": 16, + "end_line": 270, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "parent_location": [ + { + "end_col": 49, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/initialize/da17921a4e81c09e730800bbf23bfdbe5e9e6bfaedc59d80fbf62087fa43c27d.cairo" + }, + "parent_location": [ + { + "end_col": 16, + "end_line": 270, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "start_col": 6, + "start_line": 270 + }, + "While constructing the external wrapper for:" + ], + "start_col": 34, + "start_line": 1 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 6, + "start_line": 270 + }, + "While constructing the external wrapper for:" + ], + "start_col": 100, + "start_line": 1 + } + }, + "4778": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.initialize" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 21, + "end_line": 4, + "input_file": { + "filename": "autogen/starknet/external/initialize/98fffa3d7b20f8a177d79ca985c017c6105a8f832599cc3392d95ef2cfd87a05.cairo" + }, + "parent_location": [ + { + "end_col": 16, + "end_line": 270, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "parent_location": [ + { + "end_col": 62, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/initialize/da17921a4e81c09e730800bbf23bfdbe5e9e6bfaedc59d80fbf62087fa43c27d.cairo" + }, + "parent_location": [ + { + "end_col": 16, + "end_line": 270, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "start_col": 6, + "start_line": 270 + }, + "While constructing the external wrapper for:" + ], + "start_col": 50, + "start_line": 1 + }, + "While expanding the reference 'retdata_size' in:" + ], + "start_col": 6, + "start_line": 270 + }, + "While constructing the external wrapper for:" + ], + "start_col": 20, + "start_line": 4 + } + }, + "4780": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.initialize" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 16, + "end_line": 3, + "input_file": { + "filename": "autogen/starknet/external/initialize/98fffa3d7b20f8a177d79ca985c017c6105a8f832599cc3392d95ef2cfd87a05.cairo" + }, + "parent_location": [ + { + "end_col": 16, + "end_line": 270, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "parent_location": [ + { + "end_col": 70, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/initialize/da17921a4e81c09e730800bbf23bfdbe5e9e6bfaedc59d80fbf62087fa43c27d.cairo" + }, + "parent_location": [ + { + "end_col": 16, + "end_line": 270, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "start_col": 6, + "start_line": 270 + }, + "While constructing the external wrapper for:" + ], + "start_col": 63, + "start_line": 1 + }, + "While expanding the reference 'retdata' in:" + ], + "start_col": 6, + "start_line": 270 + }, + "While constructing the external wrapper for:" + ], + "start_col": 9, + "start_line": 3 + } + }, + "4781": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.initialize" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 72, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/initialize/da17921a4e81c09e730800bbf23bfdbe5e9e6bfaedc59d80fbf62087fa43c27d.cairo" + }, + "parent_location": [ + { + "end_col": 16, + "end_line": 270, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "start_col": 6, + "start_line": 270 + }, + "While constructing the external wrapper for:" + ], + "start_col": 1, + "start_line": 1 + } + }, + "4782": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.is_initialized" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 39, + "end_line": 292, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "parent_location": [ + { + "end_col": 33, + "end_line": 13, + "input_file": { + "filename": "autogen/starknet/storage_var/initialized/decl.cairo" + }, + "parent_location": [ + { + "end_col": 44, + "end_line": 295, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "start_col": 26, + "start_line": 295 + }, + "While trying to retrieve the implicit argument 'syscall_ptr' in:" + ], + "start_col": 15, + "start_line": 13 + }, + "While expanding the reference 'syscall_ptr' in:" + ], + "start_col": 21, + "start_line": 292 + } + }, + "4783": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.is_initialized" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 67, + "end_line": 292, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "parent_location": [ + { + "end_col": 61, + "end_line": 13, + "input_file": { + "filename": "autogen/starknet/storage_var/initialized/decl.cairo" + }, + "parent_location": [ + { + "end_col": 44, + "end_line": 295, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "start_col": 26, + "start_line": 295 + }, + "While trying to retrieve the implicit argument 'pedersen_ptr' in:" + ], + "start_col": 35, + "start_line": 13 + }, + "While expanding the reference 'pedersen_ptr' in:" + ], + "start_col": 41, + "start_line": 292 + } + }, + "4784": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.is_initialized" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 84, + "end_line": 292, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "parent_location": [ + { + "end_col": 78, + "end_line": 13, + "input_file": { + "filename": "autogen/starknet/storage_var/initialized/decl.cairo" + }, + "parent_location": [ + { + "end_col": 44, + "end_line": 295, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "start_col": 26, + "start_line": 295 + }, + "While trying to retrieve the implicit argument 'range_check_ptr' in:" + ], + "start_col": 63, + "start_line": 13 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 69, + "start_line": 292 + } + }, + "4785": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.is_initialized" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 44, + "end_line": 295, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "start_col": 26, + "start_line": 295 + } + }, + "4787": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.is_initialized" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 31, + "end_line": 296, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "start_col": 5, + "start_line": 296 + } + }, + "4788": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.is_initialized_encode_return" + ], + "flow_tracking_data": null, + "hints": [ + { + "location": { + "end_col": 38, + "end_line": 3, + "input_file": { + "filename": "autogen/starknet/external/return/is_initialized/c99ceecf6e21396d4a0ce3c69131d8c5d452cab3b90a24cd92a2105bd59d7aa7.cairo" + }, + "parent_location": [ + { + "end_col": 20, + "end_line": 292, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "start_col": 6, + "start_line": 292 + }, + "While handling return value of" + ], + "start_col": 5, + "start_line": 3 + }, + "n_prefix_newlines": 0 + } + ], + "inst": { + "end_col": 18, + "end_line": 4, + "input_file": { + "filename": "autogen/starknet/external/return/is_initialized/c99ceecf6e21396d4a0ce3c69131d8c5d452cab3b90a24cd92a2105bd59d7aa7.cairo" + }, + "parent_location": [ + { + "end_col": 20, + "end_line": 292, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "start_col": 6, + "start_line": 292 + }, + "While handling return value of" + ], + "start_col": 5, + "start_line": 4 + } + }, + "4790": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.is_initialized_encode_return" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 45, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/arg_processor/293368f3a0e12cfcf22314a31e13b9801e95a5b8b2b71822a2fbbdf5a01ea795.cairo" + }, + "parent_location": [ + { + "end_col": 14, + "end_line": 293, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "start_col": 5, + "start_line": 293 + }, + "While handling return value 'res'" + ], + "start_col": 1, + "start_line": 1 + } + }, + "4791": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.is_initialized_encode_return" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 48, + "end_line": 2, + "input_file": { + "filename": "autogen/starknet/arg_processor/293368f3a0e12cfcf22314a31e13b9801e95a5b8b2b71822a2fbbdf5a01ea795.cairo" + }, + "parent_location": [ + { + "end_col": 14, + "end_line": 293, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "parent_location": [ + { + "end_col": 36, + "end_line": 11, + "input_file": { + "filename": "autogen/starknet/external/return/is_initialized/c99ceecf6e21396d4a0ce3c69131d8c5d452cab3b90a24cd92a2105bd59d7aa7.cairo" + }, + "parent_location": [ + { + "end_col": 20, + "end_line": 292, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "start_col": 6, + "start_line": 292 + }, + "While handling return value of" + ], + "start_col": 18, + "start_line": 11 + }, + "While expanding the reference '__return_value_ptr' in:" + ], + "start_col": 5, + "start_line": 293 + }, + "While handling return value 'res'" + ], + "start_col": 26, + "start_line": 2 + } + }, + "4793": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.is_initialized_encode_return" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 74, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/return/is_initialized/c99ceecf6e21396d4a0ce3c69131d8c5d452cab3b90a24cd92a2105bd59d7aa7.cairo" + }, + "parent_location": [ + { + "end_col": 20, + "end_line": 292, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "parent_location": [ + { + "end_col": 40, + "end_line": 10, + "input_file": { + "filename": "autogen/starknet/external/return/is_initialized/c99ceecf6e21396d4a0ce3c69131d8c5d452cab3b90a24cd92a2105bd59d7aa7.cairo" + }, + "parent_location": [ + { + "end_col": 20, + "end_line": 292, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "start_col": 6, + "start_line": 292 + }, + "While handling return value of" + ], + "start_col": 25, + "start_line": 10 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 6, + "start_line": 292 + }, + "While handling return value of" + ], + "start_col": 59, + "start_line": 1 + } + }, + "4794": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.is_initialized_encode_return" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 63, + "end_line": 11, + "input_file": { + "filename": "autogen/starknet/external/return/is_initialized/c99ceecf6e21396d4a0ce3c69131d8c5d452cab3b90a24cd92a2105bd59d7aa7.cairo" + }, + "parent_location": [ + { + "end_col": 20, + "end_line": 292, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "start_col": 6, + "start_line": 292 + }, + "While handling return value of" + ], + "start_col": 18, + "start_line": 11 + } + }, + "4795": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.is_initialized_encode_return" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 35, + "end_line": 5, + "input_file": { + "filename": "autogen/starknet/external/return/is_initialized/c99ceecf6e21396d4a0ce3c69131d8c5d452cab3b90a24cd92a2105bd59d7aa7.cairo" + }, + "parent_location": [ + { + "end_col": 20, + "end_line": 292, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "parent_location": [ + { + "end_col": 38, + "end_line": 12, + "input_file": { + "filename": "autogen/starknet/external/return/is_initialized/c99ceecf6e21396d4a0ce3c69131d8c5d452cab3b90a24cd92a2105bd59d7aa7.cairo" + }, + "parent_location": [ + { + "end_col": 20, + "end_line": 292, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "start_col": 6, + "start_line": 292 + }, + "While handling return value of" + ], + "start_col": 14, + "start_line": 12 + }, + "While expanding the reference '__return_value_ptr_start' in:" + ], + "start_col": 6, + "start_line": 292 + }, + "While handling return value of" + ], + "start_col": 11, + "start_line": 5 + } + }, + "4796": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.is_initialized_encode_return" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 40, + "end_line": 12, + "input_file": { + "filename": "autogen/starknet/external/return/is_initialized/c99ceecf6e21396d4a0ce3c69131d8c5d452cab3b90a24cd92a2105bd59d7aa7.cairo" + }, + "parent_location": [ + { + "end_col": 20, + "end_line": 292, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "start_col": 6, + "start_line": 292 + }, + "While handling return value of" + ], + "start_col": 5, + "start_line": 9 + } + }, + "4797": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.is_initialized" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 58, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/arg_processor/01cba52f8515996bb9d7070bde81ff39281d096d7024a558efcba6e1fd2402cf.cairo" + }, + "parent_location": [ + { + "end_col": 20, + "end_line": 292, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "start_col": 6, + "start_line": 292 + }, + "While handling calldata of" + ], + "start_col": 1, + "start_line": 1 + } + }, + "4798": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.is_initialized" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 64, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/is_initialized/b2c52ca2d2a8fc8791a983086d8716c5eacd0c3d62934914d2286f84b98ff4cb.cairo" + }, + "parent_location": [ + { + "end_col": 39, + "end_line": 292, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "parent_location": [ + { + "end_col": 55, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/is_initialized/50c3501112c017187b4c12bebdfd953af0bc789f5dc55376df4d428435913d0e.cairo" + }, + "parent_location": [ + { + "end_col": 20, + "end_line": 292, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "start_col": 6, + "start_line": 292 + }, + "While constructing the external wrapper for:" + ], + "start_col": 44, + "start_line": 1 + }, + "While expanding the reference 'syscall_ptr' in:" + ], + "start_col": 21, + "start_line": 292 + }, + "While constructing the external wrapper for:" + ], + "start_col": 19, + "start_line": 1 + } + }, + "4799": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.is_initialized" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 110, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/is_initialized/9684a85e93c782014ca14293edea4eb2502039a5a7b6538ecd39c56faaf12529.cairo" + }, + "parent_location": [ + { + "end_col": 67, + "end_line": 292, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "parent_location": [ + { + "end_col": 82, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/is_initialized/50c3501112c017187b4c12bebdfd953af0bc789f5dc55376df4d428435913d0e.cairo" + }, + "parent_location": [ + { + "end_col": 20, + "end_line": 292, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "start_col": 6, + "start_line": 292 + }, + "While constructing the external wrapper for:" + ], + "start_col": 70, + "start_line": 1 + }, + "While expanding the reference 'pedersen_ptr' in:" + ], + "start_col": 41, + "start_line": 292 + }, + "While constructing the external wrapper for:" + ], + "start_col": 20, + "start_line": 1 + } + }, + "4800": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.is_initialized" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 67, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/is_initialized/741ea357d6336b0bed7bf0472425acd0311d543883b803388880e60a232040c7.cairo" + }, + "parent_location": [ + { + "end_col": 84, + "end_line": 292, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "parent_location": [ + { + "end_col": 115, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/is_initialized/50c3501112c017187b4c12bebdfd953af0bc789f5dc55376df4d428435913d0e.cairo" + }, + "parent_location": [ + { + "end_col": 20, + "end_line": 292, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "start_col": 6, + "start_line": 292 + }, + "While constructing the external wrapper for:" + ], + "start_col": 100, + "start_line": 1 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 69, + "start_line": 292 + }, + "While constructing the external wrapper for:" + ], + "start_col": 23, + "start_line": 1 + } + }, + "4801": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.is_initialized" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 20, + "end_line": 292, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "start_col": 6, + "start_line": 292 + } + }, + "4803": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.is_initialized" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 115, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/is_initialized/50c3501112c017187b4c12bebdfd953af0bc789f5dc55376df4d428435913d0e.cairo" + }, + "parent_location": [ + { + "end_col": 20, + "end_line": 292, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "parent_location": [ + { + "end_col": 103, + "end_line": 2, + "input_file": { + "filename": "autogen/starknet/external/is_initialized/50c3501112c017187b4c12bebdfd953af0bc789f5dc55376df4d428435913d0e.cairo" + }, + "parent_location": [ + { + "end_col": 20, + "end_line": 292, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "start_col": 6, + "start_line": 292 + }, + "While constructing the external wrapper for:" + ], + "start_col": 88, + "start_line": 2 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 6, + "start_line": 292 + }, + "While constructing the external wrapper for:" + ], + "start_col": 100, + "start_line": 1 + } + }, + "4804": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.is_initialized" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 104, + "end_line": 2, + "input_file": { + "filename": "autogen/starknet/external/is_initialized/50c3501112c017187b4c12bebdfd953af0bc789f5dc55376df4d428435913d0e.cairo" + }, + "parent_location": [ + { + "end_col": 20, + "end_line": 292, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "start_col": 6, + "start_line": 292 + }, + "While constructing the external wrapper for:" + ], + "start_col": 48, + "start_line": 2 + } + }, + "4806": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.is_initialized" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 55, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/is_initialized/50c3501112c017187b4c12bebdfd953af0bc789f5dc55376df4d428435913d0e.cairo" + }, + "parent_location": [ + { + "end_col": 20, + "end_line": 292, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "parent_location": [ + { + "end_col": 20, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/is_initialized/da17921a4e81c09e730800bbf23bfdbe5e9e6bfaedc59d80fbf62087fa43c27d.cairo" + }, + "parent_location": [ + { + "end_col": 20, + "end_line": 292, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "start_col": 6, + "start_line": 292 + }, + "While constructing the external wrapper for:" + ], + "start_col": 9, + "start_line": 1 + }, + "While expanding the reference 'syscall_ptr' in:" + ], + "start_col": 6, + "start_line": 292 + }, + "While constructing the external wrapper for:" + ], + "start_col": 44, + "start_line": 1 + } + }, + "4807": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.is_initialized" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 82, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/is_initialized/50c3501112c017187b4c12bebdfd953af0bc789f5dc55376df4d428435913d0e.cairo" + }, + "parent_location": [ + { + "end_col": 20, + "end_line": 292, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "parent_location": [ + { + "end_col": 33, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/is_initialized/da17921a4e81c09e730800bbf23bfdbe5e9e6bfaedc59d80fbf62087fa43c27d.cairo" + }, + "parent_location": [ + { + "end_col": 20, + "end_line": 292, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "start_col": 6, + "start_line": 292 + }, + "While constructing the external wrapper for:" + ], + "start_col": 21, + "start_line": 1 + }, + "While expanding the reference 'pedersen_ptr' in:" + ], + "start_col": 6, + "start_line": 292 + }, + "While constructing the external wrapper for:" + ], + "start_col": 70, + "start_line": 1 + } + }, + "4808": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.is_initialized" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 21, + "end_line": 2, + "input_file": { + "filename": "autogen/starknet/external/is_initialized/50c3501112c017187b4c12bebdfd953af0bc789f5dc55376df4d428435913d0e.cairo" + }, + "parent_location": [ + { + "end_col": 20, + "end_line": 292, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "parent_location": [ + { + "end_col": 49, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/is_initialized/da17921a4e81c09e730800bbf23bfdbe5e9e6bfaedc59d80fbf62087fa43c27d.cairo" + }, + "parent_location": [ + { + "end_col": 20, + "end_line": 292, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "start_col": 6, + "start_line": 292 + }, + "While constructing the external wrapper for:" + ], + "start_col": 34, + "start_line": 1 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 6, + "start_line": 292 + }, + "While constructing the external wrapper for:" + ], + "start_col": 6, + "start_line": 2 + } + }, + "4809": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.is_initialized" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 35, + "end_line": 2, + "input_file": { + "filename": "autogen/starknet/external/is_initialized/50c3501112c017187b4c12bebdfd953af0bc789f5dc55376df4d428435913d0e.cairo" + }, + "parent_location": [ + { + "end_col": 20, + "end_line": 292, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "parent_location": [ + { + "end_col": 62, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/is_initialized/da17921a4e81c09e730800bbf23bfdbe5e9e6bfaedc59d80fbf62087fa43c27d.cairo" + }, + "parent_location": [ + { + "end_col": 20, + "end_line": 292, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "start_col": 6, + "start_line": 292 + }, + "While constructing the external wrapper for:" + ], + "start_col": 50, + "start_line": 1 + }, + "While expanding the reference 'retdata_size' in:" + ], + "start_col": 6, + "start_line": 292 + }, + "While constructing the external wrapper for:" + ], + "start_col": 23, + "start_line": 2 + } + }, + "4810": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.is_initialized" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 44, + "end_line": 2, + "input_file": { + "filename": "autogen/starknet/external/is_initialized/50c3501112c017187b4c12bebdfd953af0bc789f5dc55376df4d428435913d0e.cairo" + }, + "parent_location": [ + { + "end_col": 20, + "end_line": 292, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "parent_location": [ + { + "end_col": 70, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/is_initialized/da17921a4e81c09e730800bbf23bfdbe5e9e6bfaedc59d80fbf62087fa43c27d.cairo" + }, + "parent_location": [ + { + "end_col": 20, + "end_line": 292, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "start_col": 6, + "start_line": 292 + }, + "While constructing the external wrapper for:" + ], + "start_col": 63, + "start_line": 1 + }, + "While expanding the reference 'retdata' in:" + ], + "start_col": 6, + "start_line": 292 + }, + "While constructing the external wrapper for:" + ], + "start_col": 37, + "start_line": 2 + } + }, + "4811": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.is_initialized" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 72, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/is_initialized/da17921a4e81c09e730800bbf23bfdbe5e9e6bfaedc59d80fbf62087fa43c27d.cairo" + }, + "parent_location": [ + { + "end_col": 20, + "end_line": 292, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "start_col": 6, + "start_line": 292 + }, + "While constructing the external wrapper for:" + ], + "start_col": 1, + "start_line": 1 + } + }, + "4812": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.contractURI" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 36, + "end_line": 300, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "parent_location": [ + { + "end_col": 41, + "end_line": 235, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" + }, + "parent_location": [ + { + "end_col": 64, + "end_line": 303, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "start_col": 44, + "start_line": 303 + }, + "While trying to retrieve the implicit argument 'syscall_ptr' in:" + ], + "start_col": 23, + "start_line": 235 + }, + "While expanding the reference 'syscall_ptr' in:" + ], + "start_col": 18, + "start_line": 300 + } + }, + "4813": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.contractURI" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 64, + "end_line": 300, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "parent_location": [ + { + "end_col": 69, + "end_line": 235, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" + }, + "parent_location": [ + { + "end_col": 64, + "end_line": 303, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "start_col": 44, + "start_line": 303 + }, + "While trying to retrieve the implicit argument 'pedersen_ptr' in:" + ], + "start_col": 43, + "start_line": 235 + }, + "While expanding the reference 'pedersen_ptr' in:" + ], + "start_col": 38, + "start_line": 300 + } + }, + "4814": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.contractURI" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 81, + "end_line": 300, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "parent_location": [ + { + "end_col": 86, + "end_line": 235, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/sheet/library.cairo" + }, + "parent_location": [ + { + "end_col": 64, + "end_line": 303, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "start_col": 44, + "start_line": 303 + }, + "While trying to retrieve the implicit argument 'range_check_ptr' in:" + ], + "start_col": 71, + "start_line": 235 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 66, + "start_line": 300 + } + }, + "4815": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.contractURI" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 64, + "end_line": 303, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "start_col": 44, + "start_line": 303 + } + }, + "4817": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.contractURI" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 45, + "end_line": 304, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "start_col": 5, + "start_line": 304 + } + }, + "4818": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.contractURI_encode_return" + ], + "flow_tracking_data": null, + "hints": [ + { + "location": { + "end_col": 38, + "end_line": 3, + "input_file": { + "filename": "autogen/starknet/external/return/contractURI/b04c73e7705bedc8f1f7443e51be7624df9567d66b186004fbcf68937ec0909c.cairo" + }, + "parent_location": [ + { + "end_col": 17, + "end_line": 300, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "start_col": 6, + "start_line": 300 + }, + "While handling return value of" + ], + "start_col": 5, + "start_line": 3 + }, + "n_prefix_newlines": 0 + } + ], + "inst": { + "end_col": 18, + "end_line": 4, + "input_file": { + "filename": "autogen/starknet/external/return/contractURI/b04c73e7705bedc8f1f7443e51be7624df9567d66b186004fbcf68937ec0909c.cairo" + }, + "parent_location": [ + { + "end_col": 17, + "end_line": 300, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "start_col": 6, + "start_line": 300 + }, + "While handling return value of" + ], + "start_col": 5, + "start_line": 4 + } + }, + "4820": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.contractURI_encode_return" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 57, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/arg_processor/39e07c9c78c5d65e4021222b6cb180405c183c5369648ce6703b11444f98e3ea.cairo" + }, + "parent_location": [ + { + "end_col": 26, + "end_line": 301, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "start_col": 5, + "start_line": 301 + }, + "While handling return value 'contractURI_len'" + ], + "start_col": 1, + "start_line": 1 + } + }, + "4821": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.contractURI_encode_return" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 54, + "end_line": 2, + "input_file": { + "filename": "autogen/starknet/arg_processor/a98a36d6a206700a5fdb61e2bbb1beffba5cbd4bdfdab9d3af5254d2a0b5137a.cairo" + }, + "parent_location": [ + { + "end_col": 46, + "end_line": 301, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "start_col": 28, + "start_line": 301 + }, + "While handling return value 'contractURI'" + ], + "start_col": 1, + "start_line": 2 + } + }, + "4822": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.contractURI_encode_return" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 45, + "end_line": 5, + "input_file": { + "filename": "autogen/starknet/arg_processor/a98a36d6a206700a5fdb61e2bbb1beffba5cbd4bdfdab9d3af5254d2a0b5137a.cairo" + }, + "parent_location": [ + { + "end_col": 46, + "end_line": 301, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "start_col": 28, + "start_line": 301 + }, + "While handling return value 'contractURI'" + ], + "start_col": 1, + "start_line": 5 + } + }, + "4824": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.contractURI_encode_return" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 48, + "end_line": 2, + "input_file": { + "filename": "autogen/starknet/arg_processor/39e07c9c78c5d65e4021222b6cb180405c183c5369648ce6703b11444f98e3ea.cairo" + }, + "parent_location": [ + { + "end_col": 26, + "end_line": 301, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "parent_location": [ + { + "end_col": 53, + "end_line": 10, + "input_file": { + "filename": "autogen/starknet/arg_processor/a98a36d6a206700a5fdb61e2bbb1beffba5cbd4bdfdab9d3af5254d2a0b5137a.cairo" + }, + "parent_location": [ + { + "end_col": 46, + "end_line": 301, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "start_col": 28, + "start_line": 301 + }, + "While handling return value 'contractURI'" + ], + "start_col": 35, + "start_line": 10 + }, + "While expanding the reference '__return_value_ptr' in:" + ], + "start_col": 5, + "start_line": 301 + }, + "While handling return value 'contractURI_len'" + ], + "start_col": 26, + "start_line": 2 + } + }, + "4826": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.contractURI_encode_return" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 86, + "end_line": 10, + "input_file": { + "filename": "autogen/starknet/arg_processor/a98a36d6a206700a5fdb61e2bbb1beffba5cbd4bdfdab9d3af5254d2a0b5137a.cairo" + }, + "parent_location": [ + { + "end_col": 46, + "end_line": 301, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "start_col": 28, + "start_line": 301 + }, + "While handling return value 'contractURI'" + ], + "start_col": 1, + "start_line": 10 + } + }, + "4827": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.contractURI_encode_return" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 48, + "end_line": 2, + "input_file": { + "filename": "autogen/starknet/arg_processor/39e07c9c78c5d65e4021222b6cb180405c183c5369648ce6703b11444f98e3ea.cairo" + }, + "parent_location": [ + { + "end_col": 26, + "end_line": 301, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "parent_location": [ + { + "end_col": 49, + "end_line": 7, + "input_file": { + "filename": "autogen/starknet/arg_processor/a98a36d6a206700a5fdb61e2bbb1beffba5cbd4bdfdab9d3af5254d2a0b5137a.cairo" + }, + "parent_location": [ + { + "end_col": 46, + "end_line": 301, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "parent_location": [ + { + "end_col": 32, + "end_line": 12, + "input_file": { + "filename": "autogen/starknet/arg_processor/a98a36d6a206700a5fdb61e2bbb1beffba5cbd4bdfdab9d3af5254d2a0b5137a.cairo" + }, + "parent_location": [ + { + "end_col": 46, + "end_line": 301, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "start_col": 28, + "start_line": 301 + }, + "While handling return value 'contractURI'" + ], + "start_col": 9, + "start_line": 12 + }, + "While expanding the reference '__return_value_ptr_copy' in:" + ], + "start_col": 28, + "start_line": 301 + }, + "While handling return value 'contractURI'" + ], + "start_col": 31, + "start_line": 7 + }, + "While expanding the reference '__return_value_ptr' in:" + ], + "start_col": 5, + "start_line": 301 + }, + "While handling return value 'contractURI_len'" + ], + "start_col": 26, + "start_line": 2 + } + }, + "4829": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.contractURI_encode_return" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 30, + "end_line": 13, + "input_file": { + "filename": "autogen/starknet/arg_processor/a98a36d6a206700a5fdb61e2bbb1beffba5cbd4bdfdab9d3af5254d2a0b5137a.cairo" + }, + "parent_location": [ + { + "end_col": 46, + "end_line": 301, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "start_col": 28, + "start_line": 301 + }, + "While handling return value 'contractURI'" + ], + "start_col": 9, + "start_line": 13 + } + }, + "4830": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.contractURI_encode_return" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 34, + "end_line": 14, + "input_file": { + "filename": "autogen/starknet/arg_processor/a98a36d6a206700a5fdb61e2bbb1beffba5cbd4bdfdab9d3af5254d2a0b5137a.cairo" + }, + "parent_location": [ + { + "end_col": 46, + "end_line": 301, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "start_col": 28, + "start_line": 301 + }, + "While handling return value 'contractURI'" + ], + "start_col": 9, + "start_line": 14 + } + }, + "4831": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.contractURI_encode_return" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 39, + "end_line": 14, + "input_file": { + "filename": "autogen/starknet/arg_processor/a98a36d6a206700a5fdb61e2bbb1beffba5cbd4bdfdab9d3af5254d2a0b5137a.cairo" + }, + "parent_location": [ + { + "end_col": 46, + "end_line": 301, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "start_col": 28, + "start_line": 301 + }, + "While handling return value 'contractURI'" + ], + "start_col": 1, + "start_line": 11 + } + }, + "4833": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.contractURI_encode_return" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 22, + "end_line": 5, + "input_file": { + "filename": "autogen/starknet/arg_processor/a98a36d6a206700a5fdb61e2bbb1beffba5cbd4bdfdab9d3af5254d2a0b5137a.cairo" + }, + "parent_location": [ + { + "end_col": 46, + "end_line": 301, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "parent_location": [ + { + "end_col": 40, + "end_line": 10, + "input_file": { + "filename": "autogen/starknet/external/return/contractURI/b04c73e7705bedc8f1f7443e51be7624df9567d66b186004fbcf68937ec0909c.cairo" + }, + "parent_location": [ + { + "end_col": 17, + "end_line": 300, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "start_col": 6, + "start_line": 300 + }, + "While handling return value of" + ], + "start_col": 25, + "start_line": 10 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 28, + "start_line": 301 + }, + "While handling return value 'contractURI'" + ], + "start_col": 7, + "start_line": 5 + } + }, + "4834": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.contractURI_encode_return" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 63, + "end_line": 11, + "input_file": { + "filename": "autogen/starknet/external/return/contractURI/b04c73e7705bedc8f1f7443e51be7624df9567d66b186004fbcf68937ec0909c.cairo" + }, + "parent_location": [ + { + "end_col": 17, + "end_line": 300, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "start_col": 6, + "start_line": 300 + }, + "While handling return value of" + ], + "start_col": 18, + "start_line": 11 + } + }, + "4835": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.contractURI_encode_return" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 35, + "end_line": 5, + "input_file": { + "filename": "autogen/starknet/external/return/contractURI/b04c73e7705bedc8f1f7443e51be7624df9567d66b186004fbcf68937ec0909c.cairo" + }, + "parent_location": [ + { + "end_col": 17, + "end_line": 300, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "parent_location": [ + { + "end_col": 38, + "end_line": 12, + "input_file": { + "filename": "autogen/starknet/external/return/contractURI/b04c73e7705bedc8f1f7443e51be7624df9567d66b186004fbcf68937ec0909c.cairo" + }, + "parent_location": [ + { + "end_col": 17, + "end_line": 300, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "start_col": 6, + "start_line": 300 + }, + "While handling return value of" + ], + "start_col": 14, + "start_line": 12 + }, + "While expanding the reference '__return_value_ptr_start' in:" + ], + "start_col": 6, + "start_line": 300 + }, + "While handling return value of" + ], + "start_col": 11, + "start_line": 5 + } + }, + "4836": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.contractURI_encode_return" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 40, + "end_line": 12, + "input_file": { + "filename": "autogen/starknet/external/return/contractURI/b04c73e7705bedc8f1f7443e51be7624df9567d66b186004fbcf68937ec0909c.cairo" + }, + "parent_location": [ + { + "end_col": 17, + "end_line": 300, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "start_col": 6, + "start_line": 300 + }, + "While handling return value of" + ], + "start_col": 5, + "start_line": 9 + } + }, + "4837": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.contractURI" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 18, + "end_line": 2, + "input_file": { + "filename": "autogen/starknet/external/contractURI/3c9b92c0973b74bf396b0131dcaac8f957a6f0700183164a2207ddd5fa7fe277.cairo" + }, + "parent_location": [ + { + "end_col": 17, + "end_line": 300, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "start_col": 6, + "start_line": 300 + }, + "While constructing the external wrapper for:" + ], + "start_col": 5, + "start_line": 2 + } + }, + "4839": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.contractURI" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 58, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/arg_processor/01cba52f8515996bb9d7070bde81ff39281d096d7024a558efcba6e1fd2402cf.cairo" + }, + "parent_location": [ + { + "end_col": 17, + "end_line": 300, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "start_col": 6, + "start_line": 300 + }, + "While handling calldata of" + ], + "start_col": 1, + "start_line": 1 + } + }, + "4840": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.contractURI" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 64, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/contractURI/b2c52ca2d2a8fc8791a983086d8716c5eacd0c3d62934914d2286f84b98ff4cb.cairo" + }, + "parent_location": [ + { + "end_col": 36, + "end_line": 300, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "parent_location": [ + { + "end_col": 55, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/contractURI/acba12aa8a66bb92372f5fdd79fc376f71f4b521ee6979ba2e3213be2ff11068.cairo" + }, + "parent_location": [ + { + "end_col": 17, + "end_line": 300, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "start_col": 6, + "start_line": 300 + }, + "While constructing the external wrapper for:" + ], + "start_col": 44, + "start_line": 1 + }, + "While expanding the reference 'syscall_ptr' in:" + ], + "start_col": 18, + "start_line": 300 + }, + "While constructing the external wrapper for:" + ], + "start_col": 19, + "start_line": 1 + } + }, + "4841": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.contractURI" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 110, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/contractURI/9684a85e93c782014ca14293edea4eb2502039a5a7b6538ecd39c56faaf12529.cairo" + }, + "parent_location": [ + { + "end_col": 64, + "end_line": 300, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "parent_location": [ + { + "end_col": 82, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/contractURI/acba12aa8a66bb92372f5fdd79fc376f71f4b521ee6979ba2e3213be2ff11068.cairo" + }, + "parent_location": [ + { + "end_col": 17, + "end_line": 300, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "start_col": 6, + "start_line": 300 + }, + "While constructing the external wrapper for:" + ], + "start_col": 70, + "start_line": 1 + }, + "While expanding the reference 'pedersen_ptr' in:" + ], + "start_col": 38, + "start_line": 300 + }, + "While constructing the external wrapper for:" + ], + "start_col": 20, + "start_line": 1 + } + }, + "4842": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.contractURI" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 67, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/contractURI/741ea357d6336b0bed7bf0472425acd0311d543883b803388880e60a232040c7.cairo" + }, + "parent_location": [ + { + "end_col": 81, + "end_line": 300, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "parent_location": [ + { + "end_col": 115, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/contractURI/acba12aa8a66bb92372f5fdd79fc376f71f4b521ee6979ba2e3213be2ff11068.cairo" + }, + "parent_location": [ + { + "end_col": 17, + "end_line": 300, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "start_col": 6, + "start_line": 300 + }, + "While constructing the external wrapper for:" + ], + "start_col": 100, + "start_line": 1 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 66, + "start_line": 300 + }, + "While constructing the external wrapper for:" + ], + "start_col": 23, + "start_line": 1 + } + }, + "4843": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.contractURI" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 17, + "end_line": 300, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "start_col": 6, + "start_line": 300 + } + }, + "4845": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.contractURI" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 55, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/contractURI/acba12aa8a66bb92372f5fdd79fc376f71f4b521ee6979ba2e3213be2ff11068.cairo" + }, + "parent_location": [ + { + "end_col": 17, + "end_line": 300, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "parent_location": [ + { + "end_col": 55, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/contractURI/acba12aa8a66bb92372f5fdd79fc376f71f4b521ee6979ba2e3213be2ff11068.cairo" + }, + "parent_location": [ + { + "end_col": 17, + "end_line": 300, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "start_col": 6, + "start_line": 300 + }, + "While constructing the external wrapper for:" + ], + "start_col": 44, + "start_line": 1 + }, + "While auto generating local variable for 'syscall_ptr'." + ], + "start_col": 6, + "start_line": 300 + }, + "While constructing the external wrapper for:" + ], + "start_col": 44, + "start_line": 1 + } + }, + "4846": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.contractURI" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 82, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/contractURI/acba12aa8a66bb92372f5fdd79fc376f71f4b521ee6979ba2e3213be2ff11068.cairo" + }, + "parent_location": [ + { + "end_col": 17, + "end_line": 300, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "parent_location": [ + { + "end_col": 82, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/contractURI/acba12aa8a66bb92372f5fdd79fc376f71f4b521ee6979ba2e3213be2ff11068.cairo" + }, + "parent_location": [ + { + "end_col": 17, + "end_line": 300, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "start_col": 6, + "start_line": 300 + }, + "While constructing the external wrapper for:" + ], + "start_col": 70, + "start_line": 1 + }, + "While auto generating local variable for 'pedersen_ptr'." + ], + "start_col": 6, + "start_line": 300 + }, + "While constructing the external wrapper for:" + ], + "start_col": 70, + "start_line": 1 + } + }, + "4847": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.contractURI" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 115, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/contractURI/acba12aa8a66bb92372f5fdd79fc376f71f4b521ee6979ba2e3213be2ff11068.cairo" + }, + "parent_location": [ + { + "end_col": 17, + "end_line": 300, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "parent_location": [ + { + "end_col": 100, + "end_line": 2, + "input_file": { + "filename": "autogen/starknet/external/contractURI/acba12aa8a66bb92372f5fdd79fc376f71f4b521ee6979ba2e3213be2ff11068.cairo" + }, + "parent_location": [ + { + "end_col": 17, + "end_line": 300, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "start_col": 6, + "start_line": 300 + }, + "While constructing the external wrapper for:" + ], + "start_col": 85, + "start_line": 2 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 6, + "start_line": 300 + }, + "While constructing the external wrapper for:" + ], + "start_col": 100, + "start_line": 1 + } + }, + "4848": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.contractURI" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 101, + "end_line": 2, + "input_file": { + "filename": "autogen/starknet/external/contractURI/acba12aa8a66bb92372f5fdd79fc376f71f4b521ee6979ba2e3213be2ff11068.cairo" + }, + "parent_location": [ + { + "end_col": 17, + "end_line": 300, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "start_col": 6, + "start_line": 300 + }, + "While constructing the external wrapper for:" + ], + "start_col": 48, + "start_line": 2 + } + }, + "4850": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.contractURI" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 55, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/contractURI/acba12aa8a66bb92372f5fdd79fc376f71f4b521ee6979ba2e3213be2ff11068.cairo" + }, + "parent_location": [ + { + "end_col": 17, + "end_line": 300, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "parent_location": [ + { + "end_col": 55, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/contractURI/acba12aa8a66bb92372f5fdd79fc376f71f4b521ee6979ba2e3213be2ff11068.cairo" + }, + "parent_location": [ + { + "end_col": 17, + "end_line": 300, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "parent_location": [ + { + "end_col": 20, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/contractURI/da17921a4e81c09e730800bbf23bfdbe5e9e6bfaedc59d80fbf62087fa43c27d.cairo" + }, + "parent_location": [ + { + "end_col": 17, + "end_line": 300, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "start_col": 6, + "start_line": 300 + }, + "While constructing the external wrapper for:" + ], + "start_col": 9, + "start_line": 1 + }, + "While expanding the reference 'syscall_ptr' in:" + ], + "start_col": 6, + "start_line": 300 + }, + "While constructing the external wrapper for:" + ], + "start_col": 44, + "start_line": 1 + }, + "While auto generating local variable for 'syscall_ptr'." + ], + "start_col": 6, + "start_line": 300 + }, + "While constructing the external wrapper for:" + ], + "start_col": 44, + "start_line": 1 + } + }, + "4851": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.contractURI" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 82, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/contractURI/acba12aa8a66bb92372f5fdd79fc376f71f4b521ee6979ba2e3213be2ff11068.cairo" + }, + "parent_location": [ + { + "end_col": 17, + "end_line": 300, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "parent_location": [ + { + "end_col": 82, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/contractURI/acba12aa8a66bb92372f5fdd79fc376f71f4b521ee6979ba2e3213be2ff11068.cairo" + }, + "parent_location": [ + { + "end_col": 17, + "end_line": 300, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "parent_location": [ + { + "end_col": 33, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/contractURI/da17921a4e81c09e730800bbf23bfdbe5e9e6bfaedc59d80fbf62087fa43c27d.cairo" + }, + "parent_location": [ + { + "end_col": 17, + "end_line": 300, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "start_col": 6, + "start_line": 300 + }, + "While constructing the external wrapper for:" + ], + "start_col": 21, + "start_line": 1 + }, + "While expanding the reference 'pedersen_ptr' in:" + ], + "start_col": 6, + "start_line": 300 + }, + "While constructing the external wrapper for:" + ], + "start_col": 70, + "start_line": 1 + }, + "While auto generating local variable for 'pedersen_ptr'." + ], + "start_col": 6, + "start_line": 300 + }, + "While constructing the external wrapper for:" + ], + "start_col": 70, + "start_line": 1 + } + }, + "4852": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.contractURI" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 21, + "end_line": 2, + "input_file": { + "filename": "autogen/starknet/external/contractURI/acba12aa8a66bb92372f5fdd79fc376f71f4b521ee6979ba2e3213be2ff11068.cairo" + }, + "parent_location": [ + { + "end_col": 17, + "end_line": 300, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "parent_location": [ + { + "end_col": 49, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/contractURI/da17921a4e81c09e730800bbf23bfdbe5e9e6bfaedc59d80fbf62087fa43c27d.cairo" + }, + "parent_location": [ + { + "end_col": 17, + "end_line": 300, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "start_col": 6, + "start_line": 300 + }, + "While constructing the external wrapper for:" + ], + "start_col": 34, + "start_line": 1 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 6, + "start_line": 300 + }, + "While constructing the external wrapper for:" + ], + "start_col": 6, + "start_line": 2 + } + }, + "4853": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.contractURI" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 35, + "end_line": 2, + "input_file": { + "filename": "autogen/starknet/external/contractURI/acba12aa8a66bb92372f5fdd79fc376f71f4b521ee6979ba2e3213be2ff11068.cairo" + }, + "parent_location": [ + { + "end_col": 17, + "end_line": 300, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "parent_location": [ + { + "end_col": 62, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/contractURI/da17921a4e81c09e730800bbf23bfdbe5e9e6bfaedc59d80fbf62087fa43c27d.cairo" + }, + "parent_location": [ + { + "end_col": 17, + "end_line": 300, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "start_col": 6, + "start_line": 300 + }, + "While constructing the external wrapper for:" + ], + "start_col": 50, + "start_line": 1 + }, + "While expanding the reference 'retdata_size' in:" + ], + "start_col": 6, + "start_line": 300 + }, + "While constructing the external wrapper for:" + ], + "start_col": 23, + "start_line": 2 + } + }, + "4854": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.contractURI" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 44, + "end_line": 2, + "input_file": { + "filename": "autogen/starknet/external/contractURI/acba12aa8a66bb92372f5fdd79fc376f71f4b521ee6979ba2e3213be2ff11068.cairo" + }, + "parent_location": [ + { + "end_col": 17, + "end_line": 300, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "parent_location": [ + { + "end_col": 70, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/contractURI/da17921a4e81c09e730800bbf23bfdbe5e9e6bfaedc59d80fbf62087fa43c27d.cairo" + }, + "parent_location": [ + { + "end_col": 17, + "end_line": 300, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "start_col": 6, + "start_line": 300 + }, + "While constructing the external wrapper for:" + ], + "start_col": 63, + "start_line": 1 + }, + "While expanding the reference 'retdata' in:" + ], + "start_col": 6, + "start_line": 300 + }, + "While constructing the external wrapper for:" + ], + "start_col": 37, + "start_line": 2 + } + }, + "4855": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.contractURI" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 72, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/contractURI/da17921a4e81c09e730800bbf23bfdbe5e9e6bfaedc59d80fbf62087fa43c27d.cairo" + }, + "parent_location": [ + { + "end_col": 17, + "end_line": 300, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "start_col": 6, + "start_line": 300 + }, + "While constructing the external wrapper for:" + ], + "start_col": 1, + "start_line": 1 + } + }, + "4856": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.setContractUri" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 39, + "end_line": 308, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "parent_location": [ + { + "end_col": 46, + "end_line": 40, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/access/ownable/library.cairo" + }, + "parent_location": [ + { + "end_col": 32, + "end_line": 311, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "start_col": 5, + "start_line": 311 + }, + "While trying to retrieve the implicit argument 'syscall_ptr' in:" + ], + "start_col": 28, + "start_line": 40 + }, + "While expanding the reference 'syscall_ptr' in:" + ], + "start_col": 21, + "start_line": 308 + } + }, + "4857": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.setContractUri" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 67, + "end_line": 308, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "parent_location": [ + { + "end_col": 74, + "end_line": 40, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/access/ownable/library.cairo" + }, + "parent_location": [ + { + "end_col": 32, + "end_line": 311, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "start_col": 5, + "start_line": 311 + }, + "While trying to retrieve the implicit argument 'pedersen_ptr' in:" + ], + "start_col": 48, + "start_line": 40 + }, + "While expanding the reference 'pedersen_ptr' in:" + ], + "start_col": 41, + "start_line": 308 + } + }, + "4858": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.setContractUri" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 84, + "end_line": 308, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "parent_location": [ + { + "end_col": 91, + "end_line": 40, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/access/ownable/library.cairo" + }, + "parent_location": [ + { + "end_col": 32, + "end_line": 311, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "start_col": 5, + "start_line": 311 + }, + "While trying to retrieve the implicit argument 'range_check_ptr' in:" + ], + "start_col": 76, + "start_line": 40 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 69, + "start_line": 308 + } + }, + "4859": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.setContractUri" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 32, + "end_line": 311, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "start_col": 5, + "start_line": 311 + } + }, + "4861": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.setContractUri" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 27, + "end_line": 309, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "parent_location": [ + { + "end_col": 44, + "end_line": 312, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "start_col": 28, + "start_line": 312 + }, + "While expanding the reference 'contract_uri_len' in:" + ], + "start_col": 5, + "start_line": 309 + } + }, + "4862": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.setContractUri" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 48, + "end_line": 309, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "parent_location": [ + { + "end_col": 58, + "end_line": 312, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "start_col": 46, + "start_line": 312 + }, + "While expanding the reference 'contract_uri' in:" + ], + "start_col": 29, + "start_line": 309 + } + }, + "4863": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.setContractUri" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 59, + "end_line": 312, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "start_col": 5, + "start_line": 312 + } + }, + "4865": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.setContractUri" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 15, + "end_line": 313, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "start_col": 5, + "start_line": 313 + } + }, + "4866": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.setContractUri" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 67, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/setContractUri/741ea357d6336b0bed7bf0472425acd0311d543883b803388880e60a232040c7.cairo" + }, + "parent_location": [ + { + "end_col": 84, + "end_line": 308, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "parent_location": [ + { + "end_col": 24, + "end_line": 2, + "input_file": { + "filename": "autogen/starknet/arg_processor/02677acf8be142f2ecf23f676098f6768a373515b7cfdd7cde8beebf7195b0dc.cairo" + }, + "parent_location": [ + { + "end_col": 48, + "end_line": 309, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "start_col": 29, + "start_line": 309 + }, + "While handling calldata argument 'contract_uri'" + ], + "start_col": 9, + "start_line": 2 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 69, + "start_line": 308 + }, + "While constructing the external wrapper for:" + ], + "start_col": 23, + "start_line": 1 + } + }, + "4867": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.setContractUri" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 55, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/arg_processor/af6d4cd453be88aedf419d25f7fffbf79059d69e2bbdbfe82d950dd20863c7c6.cairo" + }, + "parent_location": [ + { + "end_col": 27, + "end_line": 309, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "parent_location": [ + { + "end_col": 59, + "end_line": 2, + "input_file": { + "filename": "autogen/starknet/arg_processor/02677acf8be142f2ecf23f676098f6768a373515b7cfdd7cde8beebf7195b0dc.cairo" + }, + "parent_location": [ + { + "end_col": 48, + "end_line": 309, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "start_col": 29, + "start_line": 309 + }, + "While handling calldata argument 'contract_uri'" + ], + "start_col": 28, + "start_line": 2 + }, + "While expanding the reference '__calldata_arg_contract_uri_len' in:" + ], + "start_col": 5, + "start_line": 309 + }, + "While handling calldata argument 'contract_uri_len'" + ], + "start_col": 39, + "start_line": 1 + } + }, + "4868": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.setContractUri" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 60, + "end_line": 2, + "input_file": { + "filename": "autogen/starknet/arg_processor/02677acf8be142f2ecf23f676098f6768a373515b7cfdd7cde8beebf7195b0dc.cairo" + }, + "parent_location": [ + { + "end_col": 48, + "end_line": 309, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "start_col": 29, + "start_line": 309 + }, + "While handling calldata argument 'contract_uri'" + ], + "start_col": 1, + "start_line": 2 + } + }, + "4869": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.setContractUri" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 40, + "end_line": 2, + "input_file": { + "filename": "autogen/starknet/arg_processor/af6d4cd453be88aedf419d25f7fffbf79059d69e2bbdbfe82d950dd20863c7c6.cairo" + }, + "parent_location": [ + { + "end_col": 27, + "end_line": 309, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "parent_location": [ + { + "end_col": 40, + "end_line": 8, + "input_file": { + "filename": "autogen/starknet/arg_processor/02677acf8be142f2ecf23f676098f6768a373515b7cfdd7cde8beebf7195b0dc.cairo" + }, + "parent_location": [ + { + "end_col": 48, + "end_line": 309, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "start_col": 29, + "start_line": 309 + }, + "While handling calldata argument 'contract_uri'" + ], + "start_col": 26, + "start_line": 8 + }, + "While expanding the reference '__calldata_ptr' in:" + ], + "start_col": 5, + "start_line": 309 + }, + "While handling calldata argument 'contract_uri_len'" + ], + "start_col": 22, + "start_line": 2 + } + }, + "4871": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.setContractUri" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 55, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/arg_processor/af6d4cd453be88aedf419d25f7fffbf79059d69e2bbdbfe82d950dd20863c7c6.cairo" + }, + "parent_location": [ + { + "end_col": 27, + "end_line": 309, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "parent_location": [ + { + "end_col": 74, + "end_line": 8, + "input_file": { + "filename": "autogen/starknet/arg_processor/02677acf8be142f2ecf23f676098f6768a373515b7cfdd7cde8beebf7195b0dc.cairo" + }, + "parent_location": [ + { + "end_col": 48, + "end_line": 309, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "start_col": 29, + "start_line": 309 + }, + "While handling calldata argument 'contract_uri'" + ], + "start_col": 43, + "start_line": 8 + }, + "While expanding the reference '__calldata_arg_contract_uri_len' in:" + ], + "start_col": 5, + "start_line": 309 + }, + "While handling calldata argument 'contract_uri_len'" + ], + "start_col": 39, + "start_line": 1 + } + }, + "4872": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.setContractUri" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 78, + "end_line": 8, + "input_file": { + "filename": "autogen/starknet/arg_processor/02677acf8be142f2ecf23f676098f6768a373515b7cfdd7cde8beebf7195b0dc.cairo" + }, + "parent_location": [ + { + "end_col": 48, + "end_line": 309, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "start_col": 29, + "start_line": 309 + }, + "While handling calldata argument 'contract_uri'" + ], + "start_col": 26, + "start_line": 8 + } + }, + "4873": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.setContractUri" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 58, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/arg_processor/01cba52f8515996bb9d7070bde81ff39281d096d7024a558efcba6e1fd2402cf.cairo" + }, + "parent_location": [ + { + "end_col": 20, + "end_line": 308, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "start_col": 6, + "start_line": 308 + }, + "While handling calldata of" + ], + "start_col": 1, + "start_line": 1 + } + }, + "4874": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.setContractUri" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 67, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/setContractUri/741ea357d6336b0bed7bf0472425acd0311d543883b803388880e60a232040c7.cairo" + }, + "parent_location": [ + { + "end_col": 84, + "end_line": 308, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "parent_location": [ + { + "end_col": 38, + "end_line": 3, + "input_file": { + "filename": "autogen/starknet/arg_processor/02677acf8be142f2ecf23f676098f6768a373515b7cfdd7cde8beebf7195b0dc.cairo" + }, + "parent_location": [ + { + "end_col": 48, + "end_line": 309, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "parent_location": [ + { + "end_col": 115, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/setContractUri/bc1973a34f92efff3cf7802dd0e4dc2f445a6018eef2a0772089ae368edb536b.cairo" + }, + "parent_location": [ + { + "end_col": 20, + "end_line": 308, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "start_col": 6, + "start_line": 308 + }, + "While constructing the external wrapper for:" + ], + "start_col": 100, + "start_line": 1 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 29, + "start_line": 309 + }, + "While handling calldata argument 'contract_uri'" + ], + "start_col": 23, + "start_line": 3 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 69, + "start_line": 308 + }, + "While constructing the external wrapper for:" + ], + "start_col": 23, + "start_line": 1 + } + }, + "4875": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.setContractUri" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 64, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/setContractUri/b2c52ca2d2a8fc8791a983086d8716c5eacd0c3d62934914d2286f84b98ff4cb.cairo" + }, + "parent_location": [ + { + "end_col": 39, + "end_line": 308, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "parent_location": [ + { + "end_col": 55, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/setContractUri/bc1973a34f92efff3cf7802dd0e4dc2f445a6018eef2a0772089ae368edb536b.cairo" + }, + "parent_location": [ + { + "end_col": 20, + "end_line": 308, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "start_col": 6, + "start_line": 308 + }, + "While constructing the external wrapper for:" + ], + "start_col": 44, + "start_line": 1 + }, + "While expanding the reference 'syscall_ptr' in:" + ], + "start_col": 21, + "start_line": 308 + }, + "While constructing the external wrapper for:" + ], + "start_col": 19, + "start_line": 1 + } + }, + "4876": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.setContractUri" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 110, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/setContractUri/9684a85e93c782014ca14293edea4eb2502039a5a7b6538ecd39c56faaf12529.cairo" + }, + "parent_location": [ + { + "end_col": 67, + "end_line": 308, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "parent_location": [ + { + "end_col": 82, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/setContractUri/bc1973a34f92efff3cf7802dd0e4dc2f445a6018eef2a0772089ae368edb536b.cairo" + }, + "parent_location": [ + { + "end_col": 20, + "end_line": 308, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "start_col": 6, + "start_line": 308 + }, + "While constructing the external wrapper for:" + ], + "start_col": 70, + "start_line": 1 + }, + "While expanding the reference 'pedersen_ptr' in:" + ], + "start_col": 41, + "start_line": 308 + }, + "While constructing the external wrapper for:" + ], + "start_col": 20, + "start_line": 1 + } + }, + "4877": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.setContractUri" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 42, + "end_line": 3, + "input_file": { + "filename": "autogen/starknet/arg_processor/02677acf8be142f2ecf23f676098f6768a373515b7cfdd7cde8beebf7195b0dc.cairo" + }, + "parent_location": [ + { + "end_col": 48, + "end_line": 309, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "parent_location": [ + { + "end_col": 115, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/setContractUri/bc1973a34f92efff3cf7802dd0e4dc2f445a6018eef2a0772089ae368edb536b.cairo" + }, + "parent_location": [ + { + "end_col": 20, + "end_line": 308, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "start_col": 6, + "start_line": 308 + }, + "While constructing the external wrapper for:" + ], + "start_col": 100, + "start_line": 1 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 29, + "start_line": 309 + }, + "While handling calldata argument 'contract_uri'" + ], + "start_col": 23, + "start_line": 3 + } + }, + "4879": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.setContractUri" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 55, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/arg_processor/af6d4cd453be88aedf419d25f7fffbf79059d69e2bbdbfe82d950dd20863c7c6.cairo" + }, + "parent_location": [ + { + "end_col": 27, + "end_line": 309, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "parent_location": [ + { + "end_col": 165, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/setContractUri/bc1973a34f92efff3cf7802dd0e4dc2f445a6018eef2a0772089ae368edb536b.cairo" + }, + "parent_location": [ + { + "end_col": 20, + "end_line": 308, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "start_col": 6, + "start_line": 308 + }, + "While constructing the external wrapper for:" + ], + "start_col": 134, + "start_line": 1 + }, + "While expanding the reference '__calldata_arg_contract_uri_len' in:" + ], + "start_col": 5, + "start_line": 309 + }, + "While handling calldata argument 'contract_uri_len'" + ], + "start_col": 39, + "start_line": 1 + } + }, + "4880": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.setContractUri" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 62, + "end_line": 5, + "input_file": { + "filename": "autogen/starknet/arg_processor/02677acf8be142f2ecf23f676098f6768a373515b7cfdd7cde8beebf7195b0dc.cairo" + }, + "parent_location": [ + { + "end_col": 48, + "end_line": 309, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "parent_location": [ + { + "end_col": 207, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/setContractUri/bc1973a34f92efff3cf7802dd0e4dc2f445a6018eef2a0772089ae368edb536b.cairo" + }, + "parent_location": [ + { + "end_col": 20, + "end_line": 308, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "start_col": 6, + "start_line": 308 + }, + "While constructing the external wrapper for:" + ], + "start_col": 180, + "start_line": 1 + }, + "While expanding the reference '__calldata_arg_contract_uri' in:" + ], + "start_col": 29, + "start_line": 309 + }, + "While handling calldata argument 'contract_uri'" + ], + "start_col": 35, + "start_line": 5 + } + }, + "4882": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.setContractUri" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 20, + "end_line": 308, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "start_col": 6, + "start_line": 308 + } + }, + "4884": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.setContractUri" + ], + "flow_tracking_data": null, + "hints": [ + { + "location": { + "end_col": 34, + "end_line": 2, + "input_file": { + "filename": "autogen/starknet/external/setContractUri/bc1973a34f92efff3cf7802dd0e4dc2f445a6018eef2a0772089ae368edb536b.cairo" + }, + "parent_location": [ + { + "end_col": 20, + "end_line": 308, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "start_col": 6, + "start_line": 308 + }, + "While constructing the external wrapper for:" + ], + "start_col": 1, + "start_line": 2 + }, + "n_prefix_newlines": 0 + } + ], + "inst": { + "end_col": 24, + "end_line": 3, + "input_file": { + "filename": "autogen/starknet/external/setContractUri/bc1973a34f92efff3cf7802dd0e4dc2f445a6018eef2a0772089ae368edb536b.cairo" + }, + "parent_location": [ + { + "end_col": 20, + "end_line": 308, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "start_col": 6, + "start_line": 308 + }, + "While constructing the external wrapper for:" + ], + "start_col": 1, + "start_line": 3 + } + }, + "4886": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.setContractUri" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 55, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/setContractUri/bc1973a34f92efff3cf7802dd0e4dc2f445a6018eef2a0772089ae368edb536b.cairo" + }, + "parent_location": [ + { + "end_col": 20, + "end_line": 308, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "parent_location": [ + { + "end_col": 20, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/setContractUri/da17921a4e81c09e730800bbf23bfdbe5e9e6bfaedc59d80fbf62087fa43c27d.cairo" + }, + "parent_location": [ + { + "end_col": 20, + "end_line": 308, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "start_col": 6, + "start_line": 308 + }, + "While constructing the external wrapper for:" + ], + "start_col": 9, + "start_line": 1 + }, + "While expanding the reference 'syscall_ptr' in:" + ], + "start_col": 6, + "start_line": 308 + }, + "While constructing the external wrapper for:" + ], + "start_col": 44, + "start_line": 1 + } + }, + "4887": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.setContractUri" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 82, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/setContractUri/bc1973a34f92efff3cf7802dd0e4dc2f445a6018eef2a0772089ae368edb536b.cairo" + }, + "parent_location": [ + { + "end_col": 20, + "end_line": 308, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "parent_location": [ + { + "end_col": 33, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/setContractUri/da17921a4e81c09e730800bbf23bfdbe5e9e6bfaedc59d80fbf62087fa43c27d.cairo" + }, + "parent_location": [ + { + "end_col": 20, + "end_line": 308, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "start_col": 6, + "start_line": 308 + }, + "While constructing the external wrapper for:" + ], + "start_col": 21, + "start_line": 1 + }, + "While expanding the reference 'pedersen_ptr' in:" + ], + "start_col": 6, + "start_line": 308 + }, + "While constructing the external wrapper for:" + ], + "start_col": 70, + "start_line": 1 + } + }, + "4888": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.setContractUri" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 115, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/setContractUri/bc1973a34f92efff3cf7802dd0e4dc2f445a6018eef2a0772089ae368edb536b.cairo" + }, + "parent_location": [ + { + "end_col": 20, + "end_line": 308, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "parent_location": [ + { + "end_col": 49, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/setContractUri/da17921a4e81c09e730800bbf23bfdbe5e9e6bfaedc59d80fbf62087fa43c27d.cairo" + }, + "parent_location": [ + { + "end_col": 20, + "end_line": 308, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "start_col": 6, + "start_line": 308 + }, + "While constructing the external wrapper for:" + ], + "start_col": 34, + "start_line": 1 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 6, + "start_line": 308 + }, + "While constructing the external wrapper for:" + ], + "start_col": 100, + "start_line": 1 + } + }, + "4889": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.setContractUri" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 21, + "end_line": 4, + "input_file": { + "filename": "autogen/starknet/external/setContractUri/bc1973a34f92efff3cf7802dd0e4dc2f445a6018eef2a0772089ae368edb536b.cairo" + }, + "parent_location": [ + { + "end_col": 20, + "end_line": 308, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "parent_location": [ + { + "end_col": 62, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/setContractUri/da17921a4e81c09e730800bbf23bfdbe5e9e6bfaedc59d80fbf62087fa43c27d.cairo" + }, + "parent_location": [ + { + "end_col": 20, + "end_line": 308, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "start_col": 6, + "start_line": 308 + }, + "While constructing the external wrapper for:" + ], + "start_col": 50, + "start_line": 1 + }, + "While expanding the reference 'retdata_size' in:" + ], + "start_col": 6, + "start_line": 308 + }, + "While constructing the external wrapper for:" + ], + "start_col": 20, + "start_line": 4 + } + }, + "4891": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.setContractUri" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 16, + "end_line": 3, + "input_file": { + "filename": "autogen/starknet/external/setContractUri/bc1973a34f92efff3cf7802dd0e4dc2f445a6018eef2a0772089ae368edb536b.cairo" + }, + "parent_location": [ + { + "end_col": 20, + "end_line": 308, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "parent_location": [ + { + "end_col": 70, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/setContractUri/da17921a4e81c09e730800bbf23bfdbe5e9e6bfaedc59d80fbf62087fa43c27d.cairo" + }, + "parent_location": [ + { + "end_col": 20, + "end_line": 308, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "start_col": 6, + "start_line": 308 + }, + "While constructing the external wrapper for:" + ], + "start_col": 63, + "start_line": 1 + }, + "While expanding the reference 'retdata' in:" + ], + "start_col": 6, + "start_line": 308 + }, + "While constructing the external wrapper for:" + ], + "start_col": 9, + "start_line": 3 + } + }, + "4892": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.setContractUri" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 72, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/setContractUri/da17921a4e81c09e730800bbf23bfdbe5e9e6bfaedc59d80fbf62087fa43c27d.cairo" + }, + "parent_location": [ + { + "end_col": 20, + "end_line": 308, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "start_col": 6, + "start_line": 308 + }, + "While constructing the external wrapper for:" + ], + "start_col": 1, + "start_line": 1 + } + }, + "4893": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.totalSupply" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 64, + "end_line": 321, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "parent_location": [ + { + "end_col": 41, + "end_line": 53, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" + }, + "parent_location": [ + { + "end_col": 65, + "end_line": 324, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "start_col": 34, + "start_line": 324 + }, + "While trying to retrieve the implicit argument 'syscall_ptr' in:" + ], + "start_col": 23, + "start_line": 53 + }, + "While expanding the reference 'syscall_ptr' in:" + ], + "start_col": 46, + "start_line": 321 + } + }, + "4894": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.totalSupply" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 44, + "end_line": 321, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "parent_location": [ + { + "end_col": 69, + "end_line": 53, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" + }, + "parent_location": [ + { + "end_col": 65, + "end_line": 324, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "start_col": 34, + "start_line": 324 + }, + "While trying to retrieve the implicit argument 'pedersen_ptr' in:" + ], + "start_col": 43, + "start_line": 53 + }, + "While expanding the reference 'pedersen_ptr' in:" + ], + "start_col": 18, + "start_line": 321 + } + }, + "4895": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.totalSupply" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 81, + "end_line": 321, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "parent_location": [ + { + "end_col": 86, + "end_line": 53, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" + }, + "parent_location": [ + { + "end_col": 65, + "end_line": 324, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "start_col": 34, + "start_line": 324 + }, + "While trying to retrieve the implicit argument 'range_check_ptr' in:" + ], + "start_col": 71, + "start_line": 53 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 66, + "start_line": 321 + } + }, + "4896": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.totalSupply" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 65, + "end_line": 324, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "start_col": 34, + "start_line": 324 + } + }, + "4898": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.totalSupply" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 69, + "end_line": 53, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" + }, + "parent_location": [ + { + "end_col": 65, + "end_line": 324, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "parent_location": [ + { + "end_col": 44, + "end_line": 321, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "parent_location": [ + { + "end_col": 27, + "end_line": 325, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "start_col": 5, + "start_line": 325 + }, + "While trying to retrieve the implicit argument 'pedersen_ptr' in:" + ], + "start_col": 18, + "start_line": 321 + }, + "While expanding the reference 'pedersen_ptr' in:" + ], + "start_col": 34, + "start_line": 324 + }, + "While trying to update the implicit return value 'pedersen_ptr' in:" + ], + "start_col": 43, + "start_line": 53 + } + }, + "4899": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.totalSupply" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 41, + "end_line": 53, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" + }, + "parent_location": [ + { + "end_col": 65, + "end_line": 324, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "parent_location": [ + { + "end_col": 64, + "end_line": 321, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "parent_location": [ + { + "end_col": 27, + "end_line": 325, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "start_col": 5, + "start_line": 325 + }, + "While trying to retrieve the implicit argument 'syscall_ptr' in:" + ], + "start_col": 46, + "start_line": 321 + }, + "While expanding the reference 'syscall_ptr' in:" + ], + "start_col": 34, + "start_line": 324 + }, + "While trying to update the implicit return value 'syscall_ptr' in:" + ], + "start_col": 23, + "start_line": 53 + } + }, + "4900": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.totalSupply" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 86, + "end_line": 53, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" + }, + "parent_location": [ + { + "end_col": 65, + "end_line": 324, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "parent_location": [ + { + "end_col": 81, + "end_line": 321, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "parent_location": [ + { + "end_col": 27, + "end_line": 325, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "start_col": 5, + "start_line": 325 + }, + "While trying to retrieve the implicit argument 'range_check_ptr' in:" + ], + "start_col": 66, + "start_line": 321 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 34, + "start_line": 324 + }, + "While trying to update the implicit return value 'range_check_ptr' in:" + ], + "start_col": 71, + "start_line": 53 + } + }, + "4901": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.totalSupply" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 30, + "end_line": 324, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "parent_location": [ + { + "end_col": 24, + "end_line": 325, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "start_col": 13, + "start_line": 325 + }, + "While expanding the reference 'totalSupply' in:" + ], + "start_col": 10, + "start_line": 324 + } + }, + "4902": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.totalSupply" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 30, + "end_line": 324, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "parent_location": [ + { + "end_col": 24, + "end_line": 325, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "start_col": 13, + "start_line": 325 + }, + "While expanding the reference 'totalSupply' in:" + ], + "start_col": 10, + "start_line": 324 + } + }, + "4903": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.totalSupply" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 27, + "end_line": 325, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "start_col": 5, + "start_line": 325 + } + }, + "4904": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.totalSupply_encode_return" + ], + "flow_tracking_data": null, + "hints": [ + { + "location": { + "end_col": 38, + "end_line": 3, + "input_file": { + "filename": "autogen/starknet/external/return/totalSupply/eeeda446bdea67b39cd9f67678f4dfc35c6c1d0744df18691bf4ede77f67f604.cairo" + }, + "parent_location": [ + { + "end_col": 17, + "end_line": 321, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "start_col": 6, + "start_line": 321 + }, + "While handling return value of" + ], + "start_col": 5, + "start_line": 3 + }, + "n_prefix_newlines": 0 + } + ], + "inst": { + "end_col": 18, + "end_line": 4, + "input_file": { + "filename": "autogen/starknet/external/return/totalSupply/eeeda446bdea67b39cd9f67678f4dfc35c6c1d0744df18691bf4ede77f67f604.cairo" + }, + "parent_location": [ + { + "end_col": 17, + "end_line": 321, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "start_col": 6, + "start_line": 321 + }, + "While handling return value of" + ], + "start_col": 5, + "start_line": 4 + } + }, + "4906": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.totalSupply_encode_return" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 60, + "end_line": 3, + "input_file": { + "filename": "autogen/starknet/arg_processor/9822619206729a9eadcae854c851238a68f93e9dbd956bc4fa147da27ae12e2e.cairo" + }, + "parent_location": [ + { + "end_col": 25, + "end_line": 322, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "start_col": 5, + "start_line": 322 + }, + "While handling return value 'totalSupply'" + ], + "start_col": 1, + "start_line": 3 + } + }, + "4907": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.totalSupply_encode_return" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 60, + "end_line": 4, + "input_file": { + "filename": "autogen/starknet/arg_processor/9822619206729a9eadcae854c851238a68f93e9dbd956bc4fa147da27ae12e2e.cairo" + }, + "parent_location": [ + { + "end_col": 25, + "end_line": 322, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "start_col": 5, + "start_line": 322 + }, + "While handling return value 'totalSupply'" + ], + "start_col": 1, + "start_line": 4 + } + }, + "4908": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.totalSupply_encode_return" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 48, + "end_line": 5, + "input_file": { + "filename": "autogen/starknet/arg_processor/9822619206729a9eadcae854c851238a68f93e9dbd956bc4fa147da27ae12e2e.cairo" + }, + "parent_location": [ + { + "end_col": 25, + "end_line": 322, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "parent_location": [ + { + "end_col": 36, + "end_line": 11, + "input_file": { + "filename": "autogen/starknet/external/return/totalSupply/eeeda446bdea67b39cd9f67678f4dfc35c6c1d0744df18691bf4ede77f67f604.cairo" + }, + "parent_location": [ + { + "end_col": 17, + "end_line": 321, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "start_col": 6, + "start_line": 321 + }, + "While handling return value of" + ], + "start_col": 18, + "start_line": 11 + }, + "While expanding the reference '__return_value_ptr' in:" + ], + "start_col": 5, + "start_line": 322 + }, + "While handling return value 'totalSupply'" + ], + "start_col": 26, + "start_line": 5 + } + }, + "4910": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.totalSupply_encode_return" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 113, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/return/totalSupply/eeeda446bdea67b39cd9f67678f4dfc35c6c1d0744df18691bf4ede77f67f604.cairo" + }, + "parent_location": [ + { + "end_col": 17, + "end_line": 321, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "parent_location": [ + { + "end_col": 40, + "end_line": 10, + "input_file": { + "filename": "autogen/starknet/external/return/totalSupply/eeeda446bdea67b39cd9f67678f4dfc35c6c1d0744df18691bf4ede77f67f604.cairo" + }, + "parent_location": [ + { + "end_col": 17, + "end_line": 321, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "start_col": 6, + "start_line": 321 + }, + "While handling return value of" + ], + "start_col": 25, + "start_line": 10 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 6, + "start_line": 321 + }, + "While handling return value of" + ], + "start_col": 98, + "start_line": 1 + } + }, + "4911": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.totalSupply_encode_return" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 63, + "end_line": 11, + "input_file": { + "filename": "autogen/starknet/external/return/totalSupply/eeeda446bdea67b39cd9f67678f4dfc35c6c1d0744df18691bf4ede77f67f604.cairo" + }, + "parent_location": [ + { + "end_col": 17, + "end_line": 321, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "start_col": 6, + "start_line": 321 + }, + "While handling return value of" + ], + "start_col": 18, + "start_line": 11 + } + }, + "4912": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.totalSupply_encode_return" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 35, + "end_line": 5, + "input_file": { + "filename": "autogen/starknet/external/return/totalSupply/eeeda446bdea67b39cd9f67678f4dfc35c6c1d0744df18691bf4ede77f67f604.cairo" + }, + "parent_location": [ + { + "end_col": 17, + "end_line": 321, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "parent_location": [ + { + "end_col": 38, + "end_line": 12, + "input_file": { + "filename": "autogen/starknet/external/return/totalSupply/eeeda446bdea67b39cd9f67678f4dfc35c6c1d0744df18691bf4ede77f67f604.cairo" + }, + "parent_location": [ + { + "end_col": 17, + "end_line": 321, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "start_col": 6, + "start_line": 321 + }, + "While handling return value of" + ], + "start_col": 14, + "start_line": 12 + }, + "While expanding the reference '__return_value_ptr_start' in:" + ], + "start_col": 6, + "start_line": 321 + }, + "While handling return value of" + ], + "start_col": 11, + "start_line": 5 + } + }, + "4913": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.totalSupply_encode_return" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 40, + "end_line": 12, + "input_file": { + "filename": "autogen/starknet/external/return/totalSupply/eeeda446bdea67b39cd9f67678f4dfc35c6c1d0744df18691bf4ede77f67f604.cairo" + }, + "parent_location": [ + { + "end_col": 17, + "end_line": 321, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "start_col": 6, + "start_line": 321 + }, + "While handling return value of" + ], + "start_col": 5, + "start_line": 9 + } + }, + "4914": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.totalSupply" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 58, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/arg_processor/01cba52f8515996bb9d7070bde81ff39281d096d7024a558efcba6e1fd2402cf.cairo" + }, + "parent_location": [ + { + "end_col": 17, + "end_line": 321, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "start_col": 6, + "start_line": 321 + }, + "While handling calldata of" + ], + "start_col": 1, + "start_line": 1 + } + }, + "4915": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.totalSupply" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 110, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/totalSupply/9684a85e93c782014ca14293edea4eb2502039a5a7b6538ecd39c56faaf12529.cairo" + }, + "parent_location": [ + { + "end_col": 44, + "end_line": 321, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "parent_location": [ + { + "end_col": 57, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/totalSupply/5b54c430df10b729ecc10b3e860410c6829f116d1a34b32e8415fa1ac24c16d8.cairo" + }, + "parent_location": [ + { + "end_col": 17, + "end_line": 321, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "start_col": 6, + "start_line": 321 + }, + "While constructing the external wrapper for:" + ], + "start_col": 45, + "start_line": 1 + }, + "While expanding the reference 'pedersen_ptr' in:" + ], + "start_col": 18, + "start_line": 321 + }, + "While constructing the external wrapper for:" + ], + "start_col": 20, + "start_line": 1 + } + }, + "4916": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.totalSupply" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 64, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/totalSupply/b2c52ca2d2a8fc8791a983086d8716c5eacd0c3d62934914d2286f84b98ff4cb.cairo" + }, + "parent_location": [ + { + "end_col": 64, + "end_line": 321, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "parent_location": [ + { + "end_col": 82, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/totalSupply/5b54c430df10b729ecc10b3e860410c6829f116d1a34b32e8415fa1ac24c16d8.cairo" + }, + "parent_location": [ + { + "end_col": 17, + "end_line": 321, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "start_col": 6, + "start_line": 321 + }, + "While constructing the external wrapper for:" + ], + "start_col": 71, + "start_line": 1 + }, + "While expanding the reference 'syscall_ptr' in:" + ], + "start_col": 46, + "start_line": 321 + }, + "While constructing the external wrapper for:" + ], + "start_col": 19, + "start_line": 1 + } + }, + "4917": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.totalSupply" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 67, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/totalSupply/741ea357d6336b0bed7bf0472425acd0311d543883b803388880e60a232040c7.cairo" + }, + "parent_location": [ + { + "end_col": 81, + "end_line": 321, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "parent_location": [ + { + "end_col": 115, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/totalSupply/5b54c430df10b729ecc10b3e860410c6829f116d1a34b32e8415fa1ac24c16d8.cairo" + }, + "parent_location": [ + { + "end_col": 17, + "end_line": 321, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "start_col": 6, + "start_line": 321 + }, + "While constructing the external wrapper for:" + ], + "start_col": 100, + "start_line": 1 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 66, + "start_line": 321 + }, + "While constructing the external wrapper for:" + ], + "start_col": 23, + "start_line": 1 + } + }, + "4918": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.totalSupply" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 17, + "end_line": 321, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "start_col": 6, + "start_line": 321 + } + }, + "4920": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.totalSupply" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 115, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/totalSupply/5b54c430df10b729ecc10b3e860410c6829f116d1a34b32e8415fa1ac24c16d8.cairo" + }, + "parent_location": [ + { + "end_col": 17, + "end_line": 321, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "parent_location": [ + { + "end_col": 100, + "end_line": 2, + "input_file": { + "filename": "autogen/starknet/external/totalSupply/5b54c430df10b729ecc10b3e860410c6829f116d1a34b32e8415fa1ac24c16d8.cairo" + }, + "parent_location": [ + { + "end_col": 17, + "end_line": 321, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "start_col": 6, + "start_line": 321 + }, + "While constructing the external wrapper for:" + ], + "start_col": 85, + "start_line": 2 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 6, + "start_line": 321 + }, + "While constructing the external wrapper for:" + ], + "start_col": 100, + "start_line": 1 + } + }, + "4921": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.totalSupply" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 101, + "end_line": 2, + "input_file": { + "filename": "autogen/starknet/external/totalSupply/5b54c430df10b729ecc10b3e860410c6829f116d1a34b32e8415fa1ac24c16d8.cairo" + }, + "parent_location": [ + { + "end_col": 17, + "end_line": 321, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "start_col": 6, + "start_line": 321 + }, + "While constructing the external wrapper for:" + ], + "start_col": 48, + "start_line": 2 + } + }, + "4923": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.totalSupply" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 82, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/totalSupply/5b54c430df10b729ecc10b3e860410c6829f116d1a34b32e8415fa1ac24c16d8.cairo" + }, + "parent_location": [ + { + "end_col": 17, + "end_line": 321, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "parent_location": [ + { + "end_col": 20, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/totalSupply/da17921a4e81c09e730800bbf23bfdbe5e9e6bfaedc59d80fbf62087fa43c27d.cairo" + }, + "parent_location": [ + { + "end_col": 17, + "end_line": 321, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "start_col": 6, + "start_line": 321 + }, + "While constructing the external wrapper for:" + ], + "start_col": 9, + "start_line": 1 + }, + "While expanding the reference 'syscall_ptr' in:" + ], + "start_col": 6, + "start_line": 321 + }, + "While constructing the external wrapper for:" + ], + "start_col": 71, + "start_line": 1 + } + }, + "4924": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.totalSupply" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 57, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/totalSupply/5b54c430df10b729ecc10b3e860410c6829f116d1a34b32e8415fa1ac24c16d8.cairo" + }, + "parent_location": [ + { + "end_col": 17, + "end_line": 321, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "parent_location": [ + { + "end_col": 33, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/totalSupply/da17921a4e81c09e730800bbf23bfdbe5e9e6bfaedc59d80fbf62087fa43c27d.cairo" + }, + "parent_location": [ + { + "end_col": 17, + "end_line": 321, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "start_col": 6, + "start_line": 321 + }, + "While constructing the external wrapper for:" + ], + "start_col": 21, + "start_line": 1 + }, + "While expanding the reference 'pedersen_ptr' in:" + ], + "start_col": 6, + "start_line": 321 + }, + "While constructing the external wrapper for:" + ], + "start_col": 45, + "start_line": 1 + } + }, + "4925": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.totalSupply" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 21, + "end_line": 2, + "input_file": { + "filename": "autogen/starknet/external/totalSupply/5b54c430df10b729ecc10b3e860410c6829f116d1a34b32e8415fa1ac24c16d8.cairo" + }, + "parent_location": [ + { + "end_col": 17, + "end_line": 321, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "parent_location": [ + { + "end_col": 49, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/totalSupply/da17921a4e81c09e730800bbf23bfdbe5e9e6bfaedc59d80fbf62087fa43c27d.cairo" + }, + "parent_location": [ + { + "end_col": 17, + "end_line": 321, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "start_col": 6, + "start_line": 321 + }, + "While constructing the external wrapper for:" + ], + "start_col": 34, + "start_line": 1 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 6, + "start_line": 321 + }, + "While constructing the external wrapper for:" + ], + "start_col": 6, + "start_line": 2 + } + }, + "4926": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.totalSupply" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 35, + "end_line": 2, + "input_file": { + "filename": "autogen/starknet/external/totalSupply/5b54c430df10b729ecc10b3e860410c6829f116d1a34b32e8415fa1ac24c16d8.cairo" + }, + "parent_location": [ + { + "end_col": 17, + "end_line": 321, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "parent_location": [ + { + "end_col": 62, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/totalSupply/da17921a4e81c09e730800bbf23bfdbe5e9e6bfaedc59d80fbf62087fa43c27d.cairo" + }, + "parent_location": [ + { + "end_col": 17, + "end_line": 321, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "start_col": 6, + "start_line": 321 + }, + "While constructing the external wrapper for:" + ], + "start_col": 50, + "start_line": 1 + }, + "While expanding the reference 'retdata_size' in:" + ], + "start_col": 6, + "start_line": 321 + }, + "While constructing the external wrapper for:" + ], + "start_col": 23, + "start_line": 2 + } + }, + "4927": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.totalSupply" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 44, + "end_line": 2, + "input_file": { + "filename": "autogen/starknet/external/totalSupply/5b54c430df10b729ecc10b3e860410c6829f116d1a34b32e8415fa1ac24c16d8.cairo" + }, + "parent_location": [ + { + "end_col": 17, + "end_line": 321, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "parent_location": [ + { + "end_col": 70, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/totalSupply/da17921a4e81c09e730800bbf23bfdbe5e9e6bfaedc59d80fbf62087fa43c27d.cairo" + }, + "parent_location": [ + { + "end_col": 17, + "end_line": 321, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "start_col": 6, + "start_line": 321 + }, + "While constructing the external wrapper for:" + ], + "start_col": 63, + "start_line": 1 + }, + "While expanding the reference 'retdata' in:" + ], + "start_col": 6, + "start_line": 321 + }, + "While constructing the external wrapper for:" + ], + "start_col": 37, + "start_line": 2 + } + }, + "4928": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.totalSupply" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 72, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/totalSupply/da17921a4e81c09e730800bbf23bfdbe5e9e6bfaedc59d80fbf62087fa43c27d.cairo" + }, + "parent_location": [ + { + "end_col": 17, + "end_line": 321, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "start_col": 6, + "start_line": 321 + }, + "While constructing the external wrapper for:" + ], + "start_col": 1, + "start_line": 1 + } + }, + "4929": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.tokenByIndex" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 65, + "end_line": 329, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "parent_location": [ + { + "end_col": 43, + "end_line": 59, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" + }, + "parent_location": [ + { + "end_col": 68, + "end_line": 332, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "start_col": 30, + "start_line": 332 + }, + "While trying to retrieve the implicit argument 'syscall_ptr' in:" + ], + "start_col": 25, + "start_line": 59 + }, + "While expanding the reference 'syscall_ptr' in:" + ], + "start_col": 47, + "start_line": 329 + } + }, + "4930": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.tokenByIndex" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 45, + "end_line": 329, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "parent_location": [ + { + "end_col": 71, + "end_line": 59, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" + }, + "parent_location": [ + { + "end_col": 68, + "end_line": 332, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "start_col": 30, + "start_line": 332 + }, + "While trying to retrieve the implicit argument 'pedersen_ptr' in:" + ], + "start_col": 45, + "start_line": 59 + }, + "While expanding the reference 'pedersen_ptr' in:" + ], + "start_col": 19, + "start_line": 329 + } + }, + "4931": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.tokenByIndex" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 82, + "end_line": 329, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "parent_location": [ + { + "end_col": 88, + "end_line": 59, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" + }, + "parent_location": [ + { + "end_col": 68, + "end_line": 332, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "start_col": 30, + "start_line": 332 + }, + "While trying to retrieve the implicit argument 'range_check_ptr' in:" + ], + "start_col": 73, + "start_line": 59 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 67, + "start_line": 329 + } + }, + "4932": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.tokenByIndex" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 19, + "end_line": 330, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "parent_location": [ + { + "end_col": 67, + "end_line": 332, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "start_col": 62, + "start_line": 332 + }, + "While expanding the reference 'index' in:" + ], + "start_col": 5, + "start_line": 330 + } + }, + "4933": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.tokenByIndex" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 19, + "end_line": 330, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "parent_location": [ + { + "end_col": 67, + "end_line": 332, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "start_col": 62, + "start_line": 332 + }, + "While expanding the reference 'index' in:" + ], + "start_col": 5, + "start_line": 330 + } + }, + "4934": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.tokenByIndex" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 68, + "end_line": 332, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "start_col": 30, + "start_line": 332 + } + }, + "4936": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.tokenByIndex" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 71, + "end_line": 59, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" + }, + "parent_location": [ + { + "end_col": 68, + "end_line": 332, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "parent_location": [ + { + "end_col": 45, + "end_line": 329, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "parent_location": [ + { + "end_col": 23, + "end_line": 333, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "start_col": 5, + "start_line": 333 + }, + "While trying to retrieve the implicit argument 'pedersen_ptr' in:" + ], + "start_col": 19, + "start_line": 329 + }, + "While expanding the reference 'pedersen_ptr' in:" + ], + "start_col": 30, + "start_line": 332 + }, + "While trying to update the implicit return value 'pedersen_ptr' in:" + ], + "start_col": 45, + "start_line": 59 + } + }, + "4937": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.tokenByIndex" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 43, + "end_line": 59, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" + }, + "parent_location": [ + { + "end_col": 68, + "end_line": 332, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "parent_location": [ + { + "end_col": 65, + "end_line": 329, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "parent_location": [ + { + "end_col": 23, + "end_line": 333, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "start_col": 5, + "start_line": 333 + }, + "While trying to retrieve the implicit argument 'syscall_ptr' in:" + ], + "start_col": 47, + "start_line": 329 + }, + "While expanding the reference 'syscall_ptr' in:" + ], + "start_col": 30, + "start_line": 332 + }, + "While trying to update the implicit return value 'syscall_ptr' in:" + ], + "start_col": 25, + "start_line": 59 + } + }, + "4938": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.tokenByIndex" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 88, + "end_line": 59, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" + }, + "parent_location": [ + { + "end_col": 68, + "end_line": 332, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "parent_location": [ + { + "end_col": 82, + "end_line": 329, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "parent_location": [ + { + "end_col": 23, + "end_line": 333, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "start_col": 5, + "start_line": 333 + }, + "While trying to retrieve the implicit argument 'range_check_ptr' in:" + ], + "start_col": 67, + "start_line": 329 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 30, + "start_line": 332 + }, + "While trying to update the implicit return value 'range_check_ptr' in:" + ], + "start_col": 73, + "start_line": 59 + } + }, + "4939": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.tokenByIndex" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 26, + "end_line": 332, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "parent_location": [ + { + "end_col": 20, + "end_line": 333, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "start_col": 13, + "start_line": 333 + }, + "While expanding the reference 'tokenId' in:" + ], + "start_col": 10, + "start_line": 332 + } + }, + "4940": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.tokenByIndex" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 26, + "end_line": 332, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "parent_location": [ + { + "end_col": 20, + "end_line": 333, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "start_col": 13, + "start_line": 333 + }, + "While expanding the reference 'tokenId' in:" + ], + "start_col": 10, + "start_line": 332 + } + }, + "4941": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.tokenByIndex" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 23, + "end_line": 333, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "start_col": 5, + "start_line": 333 + } + }, + "4942": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.tokenByIndex_encode_return" + ], + "flow_tracking_data": null, + "hints": [ + { + "location": { + "end_col": 38, + "end_line": 3, + "input_file": { + "filename": "autogen/starknet/external/return/tokenByIndex/6c9b4477e48860e369406084e6d163095309287e22bedb8c84c1ffe7fdaa93c9.cairo" + }, + "parent_location": [ + { + "end_col": 18, + "end_line": 329, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "start_col": 6, + "start_line": 329 + }, + "While handling return value of" + ], + "start_col": 5, + "start_line": 3 + }, + "n_prefix_newlines": 0 + } + ], + "inst": { + "end_col": 18, + "end_line": 4, + "input_file": { + "filename": "autogen/starknet/external/return/tokenByIndex/6c9b4477e48860e369406084e6d163095309287e22bedb8c84c1ffe7fdaa93c9.cairo" + }, + "parent_location": [ + { + "end_col": 18, + "end_line": 329, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "start_col": 6, + "start_line": 329 + }, + "While handling return value of" + ], + "start_col": 5, + "start_line": 4 + } + }, + "4944": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.tokenByIndex_encode_return" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 60, + "end_line": 3, + "input_file": { + "filename": "autogen/starknet/arg_processor/0f6247d8ffdacc049a6789184a88aa3d8ff5ca077cd837063ce067f132dc586d.cairo" + }, + "parent_location": [ + { + "end_col": 23, + "end_line": 331, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "start_col": 7, + "start_line": 331 + }, + "While handling return value 'tokenId'" + ], + "start_col": 1, + "start_line": 3 + } + }, + "4945": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.tokenByIndex_encode_return" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 60, + "end_line": 4, + "input_file": { + "filename": "autogen/starknet/arg_processor/0f6247d8ffdacc049a6789184a88aa3d8ff5ca077cd837063ce067f132dc586d.cairo" + }, + "parent_location": [ + { + "end_col": 23, + "end_line": 331, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "start_col": 7, + "start_line": 331 + }, + "While handling return value 'tokenId'" + ], + "start_col": 1, + "start_line": 4 + } + }, + "4946": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.tokenByIndex_encode_return" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 48, + "end_line": 5, + "input_file": { + "filename": "autogen/starknet/arg_processor/0f6247d8ffdacc049a6789184a88aa3d8ff5ca077cd837063ce067f132dc586d.cairo" + }, + "parent_location": [ + { + "end_col": 23, + "end_line": 331, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "parent_location": [ + { + "end_col": 36, + "end_line": 11, + "input_file": { + "filename": "autogen/starknet/external/return/tokenByIndex/6c9b4477e48860e369406084e6d163095309287e22bedb8c84c1ffe7fdaa93c9.cairo" + }, + "parent_location": [ + { + "end_col": 18, + "end_line": 329, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "start_col": 6, + "start_line": 329 + }, + "While handling return value of" + ], + "start_col": 18, + "start_line": 11 + }, + "While expanding the reference '__return_value_ptr' in:" + ], + "start_col": 7, + "start_line": 331 + }, + "While handling return value 'tokenId'" + ], + "start_col": 26, + "start_line": 5 + } + }, + "4948": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.tokenByIndex_encode_return" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 110, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/return/tokenByIndex/6c9b4477e48860e369406084e6d163095309287e22bedb8c84c1ffe7fdaa93c9.cairo" + }, + "parent_location": [ + { + "end_col": 18, + "end_line": 329, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "parent_location": [ + { + "end_col": 40, + "end_line": 10, + "input_file": { + "filename": "autogen/starknet/external/return/tokenByIndex/6c9b4477e48860e369406084e6d163095309287e22bedb8c84c1ffe7fdaa93c9.cairo" + }, + "parent_location": [ + { + "end_col": 18, + "end_line": 329, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "start_col": 6, + "start_line": 329 + }, + "While handling return value of" + ], + "start_col": 25, + "start_line": 10 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 6, + "start_line": 329 + }, + "While handling return value of" + ], + "start_col": 95, + "start_line": 1 + } + }, + "4949": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.tokenByIndex_encode_return" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 63, + "end_line": 11, + "input_file": { + "filename": "autogen/starknet/external/return/tokenByIndex/6c9b4477e48860e369406084e6d163095309287e22bedb8c84c1ffe7fdaa93c9.cairo" + }, + "parent_location": [ + { + "end_col": 18, + "end_line": 329, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "start_col": 6, + "start_line": 329 + }, + "While handling return value of" + ], + "start_col": 18, + "start_line": 11 + } + }, + "4950": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.tokenByIndex_encode_return" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 35, + "end_line": 5, + "input_file": { + "filename": "autogen/starknet/external/return/tokenByIndex/6c9b4477e48860e369406084e6d163095309287e22bedb8c84c1ffe7fdaa93c9.cairo" + }, + "parent_location": [ + { + "end_col": 18, + "end_line": 329, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "parent_location": [ + { + "end_col": 38, + "end_line": 12, + "input_file": { + "filename": "autogen/starknet/external/return/tokenByIndex/6c9b4477e48860e369406084e6d163095309287e22bedb8c84c1ffe7fdaa93c9.cairo" + }, + "parent_location": [ + { + "end_col": 18, + "end_line": 329, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "start_col": 6, + "start_line": 329 + }, + "While handling return value of" + ], + "start_col": 14, + "start_line": 12 + }, + "While expanding the reference '__return_value_ptr_start' in:" + ], + "start_col": 6, + "start_line": 329 + }, + "While handling return value of" + ], + "start_col": 11, + "start_line": 5 + } + }, + "4951": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.tokenByIndex_encode_return" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 40, + "end_line": 12, + "input_file": { + "filename": "autogen/starknet/external/return/tokenByIndex/6c9b4477e48860e369406084e6d163095309287e22bedb8c84c1ffe7fdaa93c9.cairo" + }, + "parent_location": [ + { + "end_col": 18, + "end_line": 329, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "start_col": 6, + "start_line": 329 + }, + "While handling return value of" + ], + "start_col": 5, + "start_line": 9 + } + }, + "4952": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.tokenByIndex" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 40, + "end_line": 3, + "input_file": { + "filename": "autogen/starknet/arg_processor/d1f8dd5812766c8b9a93481fc66a39d49b601278b5c44556f4c0881f1ef1608f.cairo" + }, + "parent_location": [ + { + "end_col": 19, + "end_line": 330, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "parent_location": [ + { + "end_col": 45, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/arg_processor/c31620b02d4d706f0542c989b2aadc01b0981d1f6a5933a8fe4937ace3d70d92.cairo" + }, + "parent_location": [ + { + "end_col": 18, + "end_line": 329, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "parent_location": [ + { + "end_col": 57, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/arg_processor/01cba52f8515996bb9d7070bde81ff39281d096d7024a558efcba6e1fd2402cf.cairo" + }, + "parent_location": [ + { + "end_col": 18, + "end_line": 329, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "start_col": 6, + "start_line": 329 + }, + "While handling calldata of" + ], + "start_col": 35, + "start_line": 1 + }, + "While expanding the reference '__calldata_actual_size' in:" + ], + "start_col": 6, + "start_line": 329 + }, + "While handling calldata of" + ], + "start_col": 31, + "start_line": 1 + }, + "While expanding the reference '__calldata_ptr' in:" + ], + "start_col": 5, + "start_line": 330 + }, + "While handling calldata argument 'index'" + ], + "start_col": 22, + "start_line": 3 + } + }, + "4954": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.tokenByIndex" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 58, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/arg_processor/01cba52f8515996bb9d7070bde81ff39281d096d7024a558efcba6e1fd2402cf.cairo" + }, + "parent_location": [ + { + "end_col": 18, + "end_line": 329, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "start_col": 6, + "start_line": 329 + }, + "While handling calldata of" + ], + "start_col": 1, + "start_line": 1 + } + }, + "4955": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.tokenByIndex" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 110, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/tokenByIndex/9684a85e93c782014ca14293edea4eb2502039a5a7b6538ecd39c56faaf12529.cairo" + }, + "parent_location": [ + { + "end_col": 45, + "end_line": 329, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "parent_location": [ + { + "end_col": 57, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/tokenByIndex/764d32c547e6047601bca718c9c34d89ceb4a36da87d3814e62b7924e8a28eda.cairo" + }, + "parent_location": [ + { + "end_col": 18, + "end_line": 329, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "start_col": 6, + "start_line": 329 + }, + "While constructing the external wrapper for:" + ], + "start_col": 45, + "start_line": 1 + }, + "While expanding the reference 'pedersen_ptr' in:" + ], + "start_col": 19, + "start_line": 329 + }, + "While constructing the external wrapper for:" + ], + "start_col": 20, + "start_line": 1 + } + }, + "4956": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.tokenByIndex" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 64, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/tokenByIndex/b2c52ca2d2a8fc8791a983086d8716c5eacd0c3d62934914d2286f84b98ff4cb.cairo" + }, + "parent_location": [ + { + "end_col": 65, + "end_line": 329, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "parent_location": [ + { + "end_col": 82, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/tokenByIndex/764d32c547e6047601bca718c9c34d89ceb4a36da87d3814e62b7924e8a28eda.cairo" + }, + "parent_location": [ + { + "end_col": 18, + "end_line": 329, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "start_col": 6, + "start_line": 329 + }, + "While constructing the external wrapper for:" + ], + "start_col": 71, + "start_line": 1 + }, + "While expanding the reference 'syscall_ptr' in:" + ], + "start_col": 47, + "start_line": 329 + }, + "While constructing the external wrapper for:" + ], + "start_col": 19, + "start_line": 1 + } + }, + "4957": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.tokenByIndex" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 67, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/tokenByIndex/741ea357d6336b0bed7bf0472425acd0311d543883b803388880e60a232040c7.cairo" + }, + "parent_location": [ + { + "end_col": 82, + "end_line": 329, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "parent_location": [ + { + "end_col": 115, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/tokenByIndex/764d32c547e6047601bca718c9c34d89ceb4a36da87d3814e62b7924e8a28eda.cairo" + }, + "parent_location": [ + { + "end_col": 18, + "end_line": 329, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "start_col": 6, + "start_line": 329 + }, + "While constructing the external wrapper for:" + ], + "start_col": 100, + "start_line": 1 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 67, + "start_line": 329 + }, + "While constructing the external wrapper for:" + ], + "start_col": 23, + "start_line": 1 + } + }, + "4958": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.tokenByIndex" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 67, + "end_line": 2, + "input_file": { + "filename": "autogen/starknet/arg_processor/d1f8dd5812766c8b9a93481fc66a39d49b601278b5c44556f4c0881f1ef1608f.cairo" + }, + "parent_location": [ + { + "end_col": 19, + "end_line": 330, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "parent_location": [ + { + "end_col": 143, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/tokenByIndex/764d32c547e6047601bca718c9c34d89ceb4a36da87d3814e62b7924e8a28eda.cairo" + }, + "parent_location": [ + { + "end_col": 18, + "end_line": 329, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "start_col": 6, + "start_line": 329 + }, + "While constructing the external wrapper for:" + ], + "start_col": 123, + "start_line": 1 + }, + "While expanding the reference '__calldata_arg_index' in:" + ], + "start_col": 5, + "start_line": 330 + }, + "While handling calldata argument 'index'" + ], + "start_col": 28, + "start_line": 1 + } + }, + "4959": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.tokenByIndex" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 67, + "end_line": 2, + "input_file": { + "filename": "autogen/starknet/arg_processor/d1f8dd5812766c8b9a93481fc66a39d49b601278b5c44556f4c0881f1ef1608f.cairo" + }, + "parent_location": [ + { + "end_col": 19, + "end_line": 330, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "parent_location": [ + { + "end_col": 143, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/tokenByIndex/764d32c547e6047601bca718c9c34d89ceb4a36da87d3814e62b7924e8a28eda.cairo" + }, + "parent_location": [ + { + "end_col": 18, + "end_line": 329, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "start_col": 6, + "start_line": 329 + }, + "While constructing the external wrapper for:" + ], + "start_col": 123, + "start_line": 1 + }, + "While expanding the reference '__calldata_arg_index' in:" + ], + "start_col": 5, + "start_line": 330 + }, + "While handling calldata argument 'index'" + ], + "start_col": 28, + "start_line": 1 + } + }, + "4960": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.tokenByIndex" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 18, + "end_line": 329, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "start_col": 6, + "start_line": 329 + } + }, + "4962": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.tokenByIndex" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 115, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/tokenByIndex/764d32c547e6047601bca718c9c34d89ceb4a36da87d3814e62b7924e8a28eda.cairo" + }, + "parent_location": [ + { + "end_col": 18, + "end_line": 329, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "parent_location": [ + { + "end_col": 101, + "end_line": 2, + "input_file": { + "filename": "autogen/starknet/external/tokenByIndex/764d32c547e6047601bca718c9c34d89ceb4a36da87d3814e62b7924e8a28eda.cairo" + }, + "parent_location": [ + { + "end_col": 18, + "end_line": 329, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "start_col": 6, + "start_line": 329 + }, + "While constructing the external wrapper for:" + ], + "start_col": 86, + "start_line": 2 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 6, + "start_line": 329 + }, + "While constructing the external wrapper for:" + ], + "start_col": 100, + "start_line": 1 + } + }, + "4963": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.tokenByIndex" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 102, + "end_line": 2, + "input_file": { + "filename": "autogen/starknet/external/tokenByIndex/764d32c547e6047601bca718c9c34d89ceb4a36da87d3814e62b7924e8a28eda.cairo" + }, + "parent_location": [ + { + "end_col": 18, + "end_line": 329, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "start_col": 6, + "start_line": 329 + }, + "While constructing the external wrapper for:" + ], + "start_col": 48, + "start_line": 2 + } + }, + "4965": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.tokenByIndex" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 82, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/tokenByIndex/764d32c547e6047601bca718c9c34d89ceb4a36da87d3814e62b7924e8a28eda.cairo" + }, + "parent_location": [ + { + "end_col": 18, + "end_line": 329, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "parent_location": [ + { + "end_col": 20, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/tokenByIndex/da17921a4e81c09e730800bbf23bfdbe5e9e6bfaedc59d80fbf62087fa43c27d.cairo" + }, + "parent_location": [ + { + "end_col": 18, + "end_line": 329, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "start_col": 6, + "start_line": 329 + }, + "While constructing the external wrapper for:" + ], + "start_col": 9, + "start_line": 1 + }, + "While expanding the reference 'syscall_ptr' in:" + ], + "start_col": 6, + "start_line": 329 + }, + "While constructing the external wrapper for:" + ], + "start_col": 71, + "start_line": 1 + } + }, + "4966": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.tokenByIndex" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 57, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/tokenByIndex/764d32c547e6047601bca718c9c34d89ceb4a36da87d3814e62b7924e8a28eda.cairo" + }, + "parent_location": [ + { + "end_col": 18, + "end_line": 329, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "parent_location": [ + { + "end_col": 33, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/tokenByIndex/da17921a4e81c09e730800bbf23bfdbe5e9e6bfaedc59d80fbf62087fa43c27d.cairo" + }, + "parent_location": [ + { + "end_col": 18, + "end_line": 329, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "start_col": 6, + "start_line": 329 + }, + "While constructing the external wrapper for:" + ], + "start_col": 21, + "start_line": 1 + }, + "While expanding the reference 'pedersen_ptr' in:" + ], + "start_col": 6, + "start_line": 329 + }, + "While constructing the external wrapper for:" + ], + "start_col": 45, + "start_line": 1 + } + }, + "4967": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.tokenByIndex" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 21, + "end_line": 2, + "input_file": { + "filename": "autogen/starknet/external/tokenByIndex/764d32c547e6047601bca718c9c34d89ceb4a36da87d3814e62b7924e8a28eda.cairo" + }, + "parent_location": [ + { + "end_col": 18, + "end_line": 329, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "parent_location": [ + { + "end_col": 49, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/tokenByIndex/da17921a4e81c09e730800bbf23bfdbe5e9e6bfaedc59d80fbf62087fa43c27d.cairo" + }, + "parent_location": [ + { + "end_col": 18, + "end_line": 329, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "start_col": 6, + "start_line": 329 + }, + "While constructing the external wrapper for:" + ], + "start_col": 34, + "start_line": 1 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 6, + "start_line": 329 + }, + "While constructing the external wrapper for:" + ], + "start_col": 6, + "start_line": 2 + } + }, + "4968": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.tokenByIndex" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 35, + "end_line": 2, + "input_file": { + "filename": "autogen/starknet/external/tokenByIndex/764d32c547e6047601bca718c9c34d89ceb4a36da87d3814e62b7924e8a28eda.cairo" + }, + "parent_location": [ + { + "end_col": 18, + "end_line": 329, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "parent_location": [ + { + "end_col": 62, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/tokenByIndex/da17921a4e81c09e730800bbf23bfdbe5e9e6bfaedc59d80fbf62087fa43c27d.cairo" + }, + "parent_location": [ + { + "end_col": 18, + "end_line": 329, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "start_col": 6, + "start_line": 329 + }, + "While constructing the external wrapper for:" + ], + "start_col": 50, + "start_line": 1 + }, + "While expanding the reference 'retdata_size' in:" + ], + "start_col": 6, + "start_line": 329 + }, + "While constructing the external wrapper for:" + ], + "start_col": 23, + "start_line": 2 + } + }, + "4969": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.tokenByIndex" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 44, + "end_line": 2, + "input_file": { + "filename": "autogen/starknet/external/tokenByIndex/764d32c547e6047601bca718c9c34d89ceb4a36da87d3814e62b7924e8a28eda.cairo" + }, + "parent_location": [ + { + "end_col": 18, + "end_line": 329, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "parent_location": [ + { + "end_col": 70, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/tokenByIndex/da17921a4e81c09e730800bbf23bfdbe5e9e6bfaedc59d80fbf62087fa43c27d.cairo" + }, + "parent_location": [ + { + "end_col": 18, + "end_line": 329, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "start_col": 6, + "start_line": 329 + }, + "While constructing the external wrapper for:" + ], + "start_col": 63, + "start_line": 1 + }, + "While expanding the reference 'retdata' in:" + ], + "start_col": 6, + "start_line": 329 + }, + "While constructing the external wrapper for:" + ], + "start_col": 37, + "start_line": 2 + } + }, + "4970": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.tokenByIndex" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 72, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/tokenByIndex/da17921a4e81c09e730800bbf23bfdbe5e9e6bfaedc59d80fbf62087fa43c27d.cairo" + }, + "parent_location": [ + { + "end_col": 18, + "end_line": 329, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "start_col": 6, + "start_line": 329 + }, + "While constructing the external wrapper for:" + ], + "start_col": 1, + "start_line": 1 + } + }, + "4971": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.tokenOfOwnerByIndex" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 72, + "end_line": 337, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "parent_location": [ + { + "end_col": 52, + "end_line": 74, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" + }, + "parent_location": [ + { + "end_col": 84, + "end_line": 340, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "start_col": 30, + "start_line": 340 + }, + "While trying to retrieve the implicit argument 'syscall_ptr' in:" + ], + "start_col": 34, + "start_line": 74 + }, + "While expanding the reference 'syscall_ptr' in:" + ], + "start_col": 54, + "start_line": 337 + } + }, + "4972": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.tokenOfOwnerByIndex" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 52, + "end_line": 337, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "parent_location": [ + { + "end_col": 80, + "end_line": 74, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" + }, + "parent_location": [ + { + "end_col": 84, + "end_line": 340, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "start_col": 30, + "start_line": 340 + }, + "While trying to retrieve the implicit argument 'pedersen_ptr' in:" + ], + "start_col": 54, + "start_line": 74 + }, + "While expanding the reference 'pedersen_ptr' in:" + ], + "start_col": 26, + "start_line": 337 + } + }, + "4973": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.tokenOfOwnerByIndex" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 89, + "end_line": 337, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "parent_location": [ + { + "end_col": 97, + "end_line": 74, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" + }, + "parent_location": [ + { + "end_col": 84, + "end_line": 340, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "start_col": 30, + "start_line": 340 + }, + "While trying to retrieve the implicit argument 'range_check_ptr' in:" + ], + "start_col": 82, + "start_line": 74 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 74, + "start_line": 337 + } + }, + "4974": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.tokenOfOwnerByIndex" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 16, + "end_line": 338, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "parent_location": [ + { + "end_col": 76, + "end_line": 340, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "start_col": 71, + "start_line": 340 + }, + "While expanding the reference 'owner' in:" + ], + "start_col": 5, + "start_line": 338 + } + }, + "4975": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.tokenOfOwnerByIndex" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 32, + "end_line": 338, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "parent_location": [ + { + "end_col": 83, + "end_line": 340, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "start_col": 78, + "start_line": 340 + }, + "While expanding the reference 'index' in:" + ], + "start_col": 18, + "start_line": 338 + } + }, + "4976": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.tokenOfOwnerByIndex" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 32, + "end_line": 338, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "parent_location": [ + { + "end_col": 83, + "end_line": 340, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "start_col": 78, + "start_line": 340 + }, + "While expanding the reference 'index' in:" + ], + "start_col": 18, + "start_line": 338 + } + }, + "4977": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.tokenOfOwnerByIndex" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 84, + "end_line": 340, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "start_col": 30, + "start_line": 340 + } + }, + "4979": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.tokenOfOwnerByIndex" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 80, + "end_line": 74, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" + }, + "parent_location": [ + { + "end_col": 84, + "end_line": 340, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "parent_location": [ + { + "end_col": 52, + "end_line": 337, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "parent_location": [ + { + "end_col": 23, + "end_line": 341, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "start_col": 5, + "start_line": 341 + }, + "While trying to retrieve the implicit argument 'pedersen_ptr' in:" + ], + "start_col": 26, + "start_line": 337 + }, + "While expanding the reference 'pedersen_ptr' in:" + ], + "start_col": 30, + "start_line": 340 + }, + "While trying to update the implicit return value 'pedersen_ptr' in:" + ], + "start_col": 54, + "start_line": 74 + } + }, + "4980": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.tokenOfOwnerByIndex" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 52, + "end_line": 74, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" + }, + "parent_location": [ + { + "end_col": 84, + "end_line": 340, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "parent_location": [ + { + "end_col": 72, + "end_line": 337, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "parent_location": [ + { + "end_col": 23, + "end_line": 341, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "start_col": 5, + "start_line": 341 + }, + "While trying to retrieve the implicit argument 'syscall_ptr' in:" + ], + "start_col": 54, + "start_line": 337 + }, + "While expanding the reference 'syscall_ptr' in:" + ], + "start_col": 30, + "start_line": 340 + }, + "While trying to update the implicit return value 'syscall_ptr' in:" + ], + "start_col": 34, + "start_line": 74 + } + }, + "4981": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.tokenOfOwnerByIndex" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 97, + "end_line": 74, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" + }, + "parent_location": [ + { + "end_col": 84, + "end_line": 340, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "parent_location": [ + { + "end_col": 89, + "end_line": 337, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "parent_location": [ + { + "end_col": 23, + "end_line": 341, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "start_col": 5, + "start_line": 341 + }, + "While trying to retrieve the implicit argument 'range_check_ptr' in:" + ], + "start_col": 74, + "start_line": 337 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 30, + "start_line": 340 + }, + "While trying to update the implicit return value 'range_check_ptr' in:" + ], + "start_col": 82, + "start_line": 74 + } + }, + "4982": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.tokenOfOwnerByIndex" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 26, + "end_line": 340, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "parent_location": [ + { + "end_col": 20, + "end_line": 341, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "start_col": 13, + "start_line": 341 + }, + "While expanding the reference 'tokenId' in:" + ], + "start_col": 10, + "start_line": 340 + } + }, + "4983": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.tokenOfOwnerByIndex" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 26, + "end_line": 340, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "parent_location": [ + { + "end_col": 20, + "end_line": 341, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "start_col": 13, + "start_line": 341 + }, + "While expanding the reference 'tokenId' in:" + ], + "start_col": 10, + "start_line": 340 + } + }, + "4984": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.tokenOfOwnerByIndex" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 23, + "end_line": 341, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "start_col": 5, + "start_line": 341 + } + }, + "4985": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.tokenOfOwnerByIndex_encode_return" + ], + "flow_tracking_data": null, + "hints": [ + { + "location": { + "end_col": 38, + "end_line": 3, + "input_file": { + "filename": "autogen/starknet/external/return/tokenOfOwnerByIndex/c5cd611a0f2954a3db08f801163c417bcf50c88f70287322178f6feb818c2683.cairo" + }, + "parent_location": [ + { + "end_col": 25, + "end_line": 337, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "start_col": 6, + "start_line": 337 + }, + "While handling return value of" + ], + "start_col": 5, + "start_line": 3 + }, + "n_prefix_newlines": 0 + } + ], + "inst": { + "end_col": 18, + "end_line": 4, + "input_file": { + "filename": "autogen/starknet/external/return/tokenOfOwnerByIndex/c5cd611a0f2954a3db08f801163c417bcf50c88f70287322178f6feb818c2683.cairo" + }, + "parent_location": [ + { + "end_col": 25, + "end_line": 337, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "start_col": 6, + "start_line": 337 + }, + "While handling return value of" + ], + "start_col": 5, + "start_line": 4 + } + }, + "4987": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.tokenOfOwnerByIndex_encode_return" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 60, + "end_line": 3, + "input_file": { + "filename": "autogen/starknet/arg_processor/0f6247d8ffdacc049a6789184a88aa3d8ff5ca077cd837063ce067f132dc586d.cairo" + }, + "parent_location": [ + { + "end_col": 23, + "end_line": 339, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "start_col": 7, + "start_line": 339 + }, + "While handling return value 'tokenId'" + ], + "start_col": 1, + "start_line": 3 + } + }, + "4988": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.tokenOfOwnerByIndex_encode_return" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 60, + "end_line": 4, + "input_file": { + "filename": "autogen/starknet/arg_processor/0f6247d8ffdacc049a6789184a88aa3d8ff5ca077cd837063ce067f132dc586d.cairo" + }, + "parent_location": [ + { + "end_col": 23, + "end_line": 339, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "start_col": 7, + "start_line": 339 + }, + "While handling return value 'tokenId'" + ], + "start_col": 1, + "start_line": 4 + } + }, + "4989": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.tokenOfOwnerByIndex_encode_return" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 48, + "end_line": 5, + "input_file": { + "filename": "autogen/starknet/arg_processor/0f6247d8ffdacc049a6789184a88aa3d8ff5ca077cd837063ce067f132dc586d.cairo" + }, + "parent_location": [ + { + "end_col": 23, + "end_line": 339, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "parent_location": [ + { + "end_col": 36, + "end_line": 11, + "input_file": { + "filename": "autogen/starknet/external/return/tokenOfOwnerByIndex/c5cd611a0f2954a3db08f801163c417bcf50c88f70287322178f6feb818c2683.cairo" + }, + "parent_location": [ + { + "end_col": 25, + "end_line": 337, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "start_col": 6, + "start_line": 337 + }, + "While handling return value of" + ], + "start_col": 18, + "start_line": 11 + }, + "While expanding the reference '__return_value_ptr' in:" + ], + "start_col": 7, + "start_line": 339 + }, + "While handling return value 'tokenId'" + ], + "start_col": 26, + "start_line": 5 + } + }, + "4991": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.tokenOfOwnerByIndex_encode_return" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 117, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/return/tokenOfOwnerByIndex/c5cd611a0f2954a3db08f801163c417bcf50c88f70287322178f6feb818c2683.cairo" + }, + "parent_location": [ + { + "end_col": 25, + "end_line": 337, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "parent_location": [ + { + "end_col": 40, + "end_line": 10, + "input_file": { + "filename": "autogen/starknet/external/return/tokenOfOwnerByIndex/c5cd611a0f2954a3db08f801163c417bcf50c88f70287322178f6feb818c2683.cairo" + }, + "parent_location": [ + { + "end_col": 25, + "end_line": 337, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "start_col": 6, + "start_line": 337 + }, + "While handling return value of" + ], + "start_col": 25, + "start_line": 10 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 6, + "start_line": 337 + }, + "While handling return value of" + ], + "start_col": 102, + "start_line": 1 + } + }, + "4992": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.tokenOfOwnerByIndex_encode_return" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 63, + "end_line": 11, + "input_file": { + "filename": "autogen/starknet/external/return/tokenOfOwnerByIndex/c5cd611a0f2954a3db08f801163c417bcf50c88f70287322178f6feb818c2683.cairo" + }, + "parent_location": [ + { + "end_col": 25, + "end_line": 337, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "start_col": 6, + "start_line": 337 + }, + "While handling return value of" + ], + "start_col": 18, + "start_line": 11 + } + }, + "4993": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.tokenOfOwnerByIndex_encode_return" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 35, + "end_line": 5, + "input_file": { + "filename": "autogen/starknet/external/return/tokenOfOwnerByIndex/c5cd611a0f2954a3db08f801163c417bcf50c88f70287322178f6feb818c2683.cairo" + }, + "parent_location": [ + { + "end_col": 25, + "end_line": 337, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "parent_location": [ + { + "end_col": 38, + "end_line": 12, + "input_file": { + "filename": "autogen/starknet/external/return/tokenOfOwnerByIndex/c5cd611a0f2954a3db08f801163c417bcf50c88f70287322178f6feb818c2683.cairo" + }, + "parent_location": [ + { + "end_col": 25, + "end_line": 337, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "start_col": 6, + "start_line": 337 + }, + "While handling return value of" + ], + "start_col": 14, + "start_line": 12 + }, + "While expanding the reference '__return_value_ptr_start' in:" + ], + "start_col": 6, + "start_line": 337 + }, + "While handling return value of" + ], + "start_col": 11, + "start_line": 5 + } + }, + "4994": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.tokenOfOwnerByIndex_encode_return" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 40, + "end_line": 12, + "input_file": { + "filename": "autogen/starknet/external/return/tokenOfOwnerByIndex/c5cd611a0f2954a3db08f801163c417bcf50c88f70287322178f6feb818c2683.cairo" + }, + "parent_location": [ + { + "end_col": 25, + "end_line": 337, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "start_col": 6, + "start_line": 337 + }, + "While handling return value of" + ], + "start_col": 5, + "start_line": 9 + } + }, + "4995": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.tokenOfOwnerByIndex" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 40, + "end_line": 3, + "input_file": { + "filename": "autogen/starknet/arg_processor/d1f8dd5812766c8b9a93481fc66a39d49b601278b5c44556f4c0881f1ef1608f.cairo" + }, + "parent_location": [ + { + "end_col": 32, + "end_line": 338, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "parent_location": [ + { + "end_col": 45, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/arg_processor/c31620b02d4d706f0542c989b2aadc01b0981d1f6a5933a8fe4937ace3d70d92.cairo" + }, + "parent_location": [ + { + "end_col": 25, + "end_line": 337, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "parent_location": [ + { + "end_col": 57, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/arg_processor/01cba52f8515996bb9d7070bde81ff39281d096d7024a558efcba6e1fd2402cf.cairo" + }, + "parent_location": [ + { + "end_col": 25, + "end_line": 337, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "start_col": 6, + "start_line": 337 + }, + "While handling calldata of" + ], + "start_col": 35, + "start_line": 1 + }, + "While expanding the reference '__calldata_actual_size' in:" + ], + "start_col": 6, + "start_line": 337 + }, + "While handling calldata of" + ], + "start_col": 31, + "start_line": 1 + }, + "While expanding the reference '__calldata_ptr' in:" + ], + "start_col": 18, + "start_line": 338 + }, + "While handling calldata argument 'index'" + ], + "start_col": 22, + "start_line": 3 + } + }, + "4997": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.tokenOfOwnerByIndex" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 58, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/arg_processor/01cba52f8515996bb9d7070bde81ff39281d096d7024a558efcba6e1fd2402cf.cairo" + }, + "parent_location": [ + { + "end_col": 25, + "end_line": 337, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "start_col": 6, + "start_line": 337 + }, + "While handling calldata of" + ], + "start_col": 1, + "start_line": 1 + } + }, + "4998": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.tokenOfOwnerByIndex" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 110, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/tokenOfOwnerByIndex/9684a85e93c782014ca14293edea4eb2502039a5a7b6538ecd39c56faaf12529.cairo" + }, + "parent_location": [ + { + "end_col": 52, + "end_line": 337, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "parent_location": [ + { + "end_col": 57, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/tokenOfOwnerByIndex/bcfb5e1fff2b0d63e3f507cf619efd30405ebe178d0663eb8b95f3e0572d1ca5.cairo" + }, + "parent_location": [ + { + "end_col": 25, + "end_line": 337, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "start_col": 6, + "start_line": 337 + }, + "While constructing the external wrapper for:" + ], + "start_col": 45, + "start_line": 1 + }, + "While expanding the reference 'pedersen_ptr' in:" + ], + "start_col": 26, + "start_line": 337 + }, + "While constructing the external wrapper for:" + ], + "start_col": 20, + "start_line": 1 + } + }, + "4999": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.tokenOfOwnerByIndex" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 64, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/tokenOfOwnerByIndex/b2c52ca2d2a8fc8791a983086d8716c5eacd0c3d62934914d2286f84b98ff4cb.cairo" + }, + "parent_location": [ + { + "end_col": 72, + "end_line": 337, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "parent_location": [ + { + "end_col": 82, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/tokenOfOwnerByIndex/bcfb5e1fff2b0d63e3f507cf619efd30405ebe178d0663eb8b95f3e0572d1ca5.cairo" + }, + "parent_location": [ + { + "end_col": 25, + "end_line": 337, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "start_col": 6, + "start_line": 337 + }, + "While constructing the external wrapper for:" + ], + "start_col": 71, + "start_line": 1 + }, + "While expanding the reference 'syscall_ptr' in:" + ], + "start_col": 54, + "start_line": 337 + }, + "While constructing the external wrapper for:" + ], + "start_col": 19, + "start_line": 1 + } + }, + "5000": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.tokenOfOwnerByIndex" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 67, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/tokenOfOwnerByIndex/741ea357d6336b0bed7bf0472425acd0311d543883b803388880e60a232040c7.cairo" + }, + "parent_location": [ + { + "end_col": 89, + "end_line": 337, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "parent_location": [ + { + "end_col": 115, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/tokenOfOwnerByIndex/bcfb5e1fff2b0d63e3f507cf619efd30405ebe178d0663eb8b95f3e0572d1ca5.cairo" + }, + "parent_location": [ + { + "end_col": 25, + "end_line": 337, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "start_col": 6, + "start_line": 337 + }, + "While constructing the external wrapper for:" + ], + "start_col": 100, + "start_line": 1 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 74, + "start_line": 337 + }, + "While constructing the external wrapper for:" + ], + "start_col": 23, + "start_line": 1 + } + }, + "5001": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.tokenOfOwnerByIndex" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 44, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/arg_processor/f6a4d9ae897caf37cefd18f7c8da7eee73157818279359aadee282f0fe59cdbc.cairo" + }, + "parent_location": [ + { + "end_col": 16, + "end_line": 338, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "parent_location": [ + { + "end_col": 143, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/tokenOfOwnerByIndex/bcfb5e1fff2b0d63e3f507cf619efd30405ebe178d0663eb8b95f3e0572d1ca5.cairo" + }, + "parent_location": [ + { + "end_col": 25, + "end_line": 337, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "start_col": 6, + "start_line": 337 + }, + "While constructing the external wrapper for:" + ], + "start_col": 123, + "start_line": 1 + }, + "While expanding the reference '__calldata_arg_owner' in:" + ], + "start_col": 5, + "start_line": 338 + }, + "While handling calldata argument 'owner'" + ], + "start_col": 28, + "start_line": 1 + } + }, + "5002": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.tokenOfOwnerByIndex" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 67, + "end_line": 2, + "input_file": { + "filename": "autogen/starknet/arg_processor/d1f8dd5812766c8b9a93481fc66a39d49b601278b5c44556f4c0881f1ef1608f.cairo" + }, + "parent_location": [ + { + "end_col": 32, + "end_line": 338, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "parent_location": [ + { + "end_col": 171, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/tokenOfOwnerByIndex/bcfb5e1fff2b0d63e3f507cf619efd30405ebe178d0663eb8b95f3e0572d1ca5.cairo" + }, + "parent_location": [ + { + "end_col": 25, + "end_line": 337, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "start_col": 6, + "start_line": 337 + }, + "While constructing the external wrapper for:" + ], + "start_col": 151, + "start_line": 1 + }, + "While expanding the reference '__calldata_arg_index' in:" + ], + "start_col": 18, + "start_line": 338 + }, + "While handling calldata argument 'index'" + ], + "start_col": 28, + "start_line": 1 + } + }, + "5003": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.tokenOfOwnerByIndex" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 67, + "end_line": 2, + "input_file": { + "filename": "autogen/starknet/arg_processor/d1f8dd5812766c8b9a93481fc66a39d49b601278b5c44556f4c0881f1ef1608f.cairo" + }, + "parent_location": [ + { + "end_col": 32, + "end_line": 338, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "parent_location": [ + { + "end_col": 171, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/tokenOfOwnerByIndex/bcfb5e1fff2b0d63e3f507cf619efd30405ebe178d0663eb8b95f3e0572d1ca5.cairo" + }, + "parent_location": [ + { + "end_col": 25, + "end_line": 337, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "start_col": 6, + "start_line": 337 + }, + "While constructing the external wrapper for:" + ], + "start_col": 151, + "start_line": 1 + }, + "While expanding the reference '__calldata_arg_index' in:" + ], + "start_col": 18, + "start_line": 338 + }, + "While handling calldata argument 'index'" + ], + "start_col": 28, + "start_line": 1 + } + }, + "5004": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.tokenOfOwnerByIndex" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 25, + "end_line": 337, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "start_col": 6, + "start_line": 337 + } + }, + "5006": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.tokenOfOwnerByIndex" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 115, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/tokenOfOwnerByIndex/bcfb5e1fff2b0d63e3f507cf619efd30405ebe178d0663eb8b95f3e0572d1ca5.cairo" + }, + "parent_location": [ + { + "end_col": 25, + "end_line": 337, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "parent_location": [ + { + "end_col": 108, + "end_line": 2, + "input_file": { + "filename": "autogen/starknet/external/tokenOfOwnerByIndex/bcfb5e1fff2b0d63e3f507cf619efd30405ebe178d0663eb8b95f3e0572d1ca5.cairo" + }, + "parent_location": [ + { + "end_col": 25, + "end_line": 337, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "start_col": 6, + "start_line": 337 + }, + "While constructing the external wrapper for:" + ], + "start_col": 93, + "start_line": 2 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 6, + "start_line": 337 + }, + "While constructing the external wrapper for:" + ], + "start_col": 100, + "start_line": 1 + } + }, + "5007": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.tokenOfOwnerByIndex" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 109, + "end_line": 2, + "input_file": { + "filename": "autogen/starknet/external/tokenOfOwnerByIndex/bcfb5e1fff2b0d63e3f507cf619efd30405ebe178d0663eb8b95f3e0572d1ca5.cairo" + }, + "parent_location": [ + { + "end_col": 25, + "end_line": 337, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "start_col": 6, + "start_line": 337 + }, + "While constructing the external wrapper for:" + ], + "start_col": 48, + "start_line": 2 + } + }, + "5009": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.tokenOfOwnerByIndex" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 82, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/tokenOfOwnerByIndex/bcfb5e1fff2b0d63e3f507cf619efd30405ebe178d0663eb8b95f3e0572d1ca5.cairo" + }, + "parent_location": [ + { + "end_col": 25, + "end_line": 337, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "parent_location": [ + { + "end_col": 20, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/tokenOfOwnerByIndex/da17921a4e81c09e730800bbf23bfdbe5e9e6bfaedc59d80fbf62087fa43c27d.cairo" + }, + "parent_location": [ + { + "end_col": 25, + "end_line": 337, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "start_col": 6, + "start_line": 337 + }, + "While constructing the external wrapper for:" + ], + "start_col": 9, + "start_line": 1 + }, + "While expanding the reference 'syscall_ptr' in:" + ], + "start_col": 6, + "start_line": 337 + }, + "While constructing the external wrapper for:" + ], + "start_col": 71, + "start_line": 1 + } + }, + "5010": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.tokenOfOwnerByIndex" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 57, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/tokenOfOwnerByIndex/bcfb5e1fff2b0d63e3f507cf619efd30405ebe178d0663eb8b95f3e0572d1ca5.cairo" + }, + "parent_location": [ + { + "end_col": 25, + "end_line": 337, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "parent_location": [ + { + "end_col": 33, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/tokenOfOwnerByIndex/da17921a4e81c09e730800bbf23bfdbe5e9e6bfaedc59d80fbf62087fa43c27d.cairo" + }, + "parent_location": [ + { + "end_col": 25, + "end_line": 337, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "start_col": 6, + "start_line": 337 + }, + "While constructing the external wrapper for:" + ], + "start_col": 21, + "start_line": 1 + }, + "While expanding the reference 'pedersen_ptr' in:" + ], + "start_col": 6, + "start_line": 337 + }, + "While constructing the external wrapper for:" + ], + "start_col": 45, + "start_line": 1 + } + }, + "5011": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.tokenOfOwnerByIndex" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 21, + "end_line": 2, + "input_file": { + "filename": "autogen/starknet/external/tokenOfOwnerByIndex/bcfb5e1fff2b0d63e3f507cf619efd30405ebe178d0663eb8b95f3e0572d1ca5.cairo" + }, + "parent_location": [ + { + "end_col": 25, + "end_line": 337, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "parent_location": [ + { + "end_col": 49, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/tokenOfOwnerByIndex/da17921a4e81c09e730800bbf23bfdbe5e9e6bfaedc59d80fbf62087fa43c27d.cairo" + }, + "parent_location": [ + { + "end_col": 25, + "end_line": 337, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "start_col": 6, + "start_line": 337 + }, + "While constructing the external wrapper for:" + ], + "start_col": 34, + "start_line": 1 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 6, + "start_line": 337 + }, + "While constructing the external wrapper for:" + ], + "start_col": 6, + "start_line": 2 + } + }, + "5012": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.tokenOfOwnerByIndex" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 35, + "end_line": 2, + "input_file": { + "filename": "autogen/starknet/external/tokenOfOwnerByIndex/bcfb5e1fff2b0d63e3f507cf619efd30405ebe178d0663eb8b95f3e0572d1ca5.cairo" + }, + "parent_location": [ + { + "end_col": 25, + "end_line": 337, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "parent_location": [ + { + "end_col": 62, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/tokenOfOwnerByIndex/da17921a4e81c09e730800bbf23bfdbe5e9e6bfaedc59d80fbf62087fa43c27d.cairo" + }, + "parent_location": [ + { + "end_col": 25, + "end_line": 337, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "start_col": 6, + "start_line": 337 + }, + "While constructing the external wrapper for:" + ], + "start_col": 50, + "start_line": 1 + }, + "While expanding the reference 'retdata_size' in:" + ], + "start_col": 6, + "start_line": 337 + }, + "While constructing the external wrapper for:" + ], + "start_col": 23, + "start_line": 2 + } + }, + "5013": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.tokenOfOwnerByIndex" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 44, + "end_line": 2, + "input_file": { + "filename": "autogen/starknet/external/tokenOfOwnerByIndex/bcfb5e1fff2b0d63e3f507cf619efd30405ebe178d0663eb8b95f3e0572d1ca5.cairo" + }, + "parent_location": [ + { + "end_col": 25, + "end_line": 337, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "parent_location": [ + { + "end_col": 70, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/tokenOfOwnerByIndex/da17921a4e81c09e730800bbf23bfdbe5e9e6bfaedc59d80fbf62087fa43c27d.cairo" + }, + "parent_location": [ + { + "end_col": 25, + "end_line": 337, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "start_col": 6, + "start_line": 337 + }, + "While constructing the external wrapper for:" + ], + "start_col": 63, + "start_line": 1 + }, + "While expanding the reference 'retdata' in:" + ], + "start_col": 6, + "start_line": 337 + }, + "While constructing the external wrapper for:" + ], + "start_col": 37, + "start_line": 2 + } + }, + "5014": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.tokenOfOwnerByIndex" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 72, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/tokenOfOwnerByIndex/da17921a4e81c09e730800bbf23bfdbe5e9e6bfaedc59d80fbf62087fa43c27d.cairo" + }, + "parent_location": [ + { + "end_col": 25, + "end_line": 337, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "start_col": 6, + "start_line": 337 + }, + "While constructing the external wrapper for:" + ], + "start_col": 1, + "start_line": 1 + } + }, + "5015": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.supportsInterface" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 34, + "end_line": 348, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "start_col": 9, + "start_line": 348 + } + }, + "5017": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.supportsInterface" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 7, + "end_line": 348, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "start_col": 5, + "start_line": 348 + } + }, + "5019": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.supportsInterface" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 42, + "end_line": 345, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "parent_location": [ + { + "end_col": 42, + "end_line": 345, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "parent_location": [ + { + "end_col": 21, + "end_line": 350, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "start_col": 9, + "start_line": 350 + }, + "While trying to retrieve the implicit argument 'syscall_ptr' in:" + ], + "start_col": 24, + "start_line": 345 + }, + "While expanding the reference 'syscall_ptr' in:" + ], + "start_col": 24, + "start_line": 345 + } + }, + "5020": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.supportsInterface" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 70, + "end_line": 345, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "parent_location": [ + { + "end_col": 70, + "end_line": 345, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "parent_location": [ + { + "end_col": 21, + "end_line": 350, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "start_col": 9, + "start_line": 350 + }, + "While trying to retrieve the implicit argument 'pedersen_ptr' in:" + ], + "start_col": 44, + "start_line": 345 + }, + "While expanding the reference 'pedersen_ptr' in:" + ], + "start_col": 44, + "start_line": 345 + } + }, + "5021": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.supportsInterface" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 87, + "end_line": 345, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "parent_location": [ + { + "end_col": 87, + "end_line": 345, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "parent_location": [ + { + "end_col": 21, + "end_line": 350, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "start_col": 9, + "start_line": 350 + }, + "While trying to retrieve the implicit argument 'range_check_ptr' in:" + ], + "start_col": 72, + "start_line": 345 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 72, + "start_line": 345 + } + }, + "5022": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.supportsInterface" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 18, + "end_line": 350, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "start_col": 17, + "start_line": 350 + } + }, + "5024": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.supportsInterface" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 21, + "end_line": 350, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "start_col": 9, + "start_line": 350 + } + }, + "5025": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.supportsInterface" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 42, + "end_line": 345, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "parent_location": [ + { + "end_col": 47, + "end_line": 17, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/introspection/erc165/library.cairo" + }, + "parent_location": [ + { + "end_col": 59, + "end_line": 352, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "start_col": 21, + "start_line": 352 + }, + "While trying to retrieve the implicit argument 'syscall_ptr' in:" + ], + "start_col": 29, + "start_line": 17 + }, + "While expanding the reference 'syscall_ptr' in:" + ], + "start_col": 24, + "start_line": 345 + } + }, + "5026": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.supportsInterface" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 70, + "end_line": 345, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "parent_location": [ + { + "end_col": 75, + "end_line": 17, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/introspection/erc165/library.cairo" + }, + "parent_location": [ + { + "end_col": 59, + "end_line": 352, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "start_col": 21, + "start_line": 352 + }, + "While trying to retrieve the implicit argument 'pedersen_ptr' in:" + ], + "start_col": 49, + "start_line": 17 + }, + "While expanding the reference 'pedersen_ptr' in:" + ], + "start_col": 44, + "start_line": 345 + } + }, + "5027": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.supportsInterface" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 87, + "end_line": 345, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "parent_location": [ + { + "end_col": 92, + "end_line": 17, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/introspection/erc165/library.cairo" + }, + "parent_location": [ + { + "end_col": 59, + "end_line": 352, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "start_col": 21, + "start_line": 352 + }, + "While trying to retrieve the implicit argument 'range_check_ptr' in:" + ], + "start_col": 77, + "start_line": 17 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 72, + "start_line": 345 + } + }, + "5028": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.supportsInterface" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 22, + "end_line": 346, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "parent_location": [ + { + "end_col": 58, + "end_line": 352, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "start_col": 47, + "start_line": 352 + }, + "While expanding the reference 'interfaceId' in:" + ], + "start_col": 5, + "start_line": 346 + } + }, + "5029": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.supportsInterface" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 59, + "end_line": 352, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "start_col": 21, + "start_line": 352 + } + }, + "5031": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.supportsInterface" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 23, + "end_line": 353, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "start_col": 5, + "start_line": 353 + } + }, + "5032": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.supportsInterface_encode_return" + ], + "flow_tracking_data": null, + "hints": [ + { + "location": { + "end_col": 38, + "end_line": 3, + "input_file": { + "filename": "autogen/starknet/external/return/supportsInterface/40b33230f82887d6ee6ba7936c0fcb15006d084631250a62d0c39394fb5b7629.cairo" + }, + "parent_location": [ + { + "end_col": 23, + "end_line": 345, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "start_col": 6, + "start_line": 345 + }, + "While handling return value of" + ], + "start_col": 5, + "start_line": 3 + }, + "n_prefix_newlines": 0 + } + ], + "inst": { + "end_col": 18, + "end_line": 4, + "input_file": { + "filename": "autogen/starknet/external/return/supportsInterface/40b33230f82887d6ee6ba7936c0fcb15006d084631250a62d0c39394fb5b7629.cairo" + }, + "parent_location": [ + { + "end_col": 23, + "end_line": 345, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "start_col": 6, + "start_line": 345 + }, + "While handling return value of" + ], + "start_col": 5, + "start_line": 4 + } + }, + "5034": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.supportsInterface_encode_return" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 49, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/arg_processor/5c10028f67364b153272aa9b4cbc0fb78920a40fab821ac7257b0069e0773b49.cairo" + }, + "parent_location": [ + { + "end_col": 20, + "end_line": 347, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "start_col": 7, + "start_line": 347 + }, + "While handling return value 'success'" + ], + "start_col": 1, + "start_line": 1 + } + }, + "5035": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.supportsInterface_encode_return" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 48, + "end_line": 2, + "input_file": { + "filename": "autogen/starknet/arg_processor/5c10028f67364b153272aa9b4cbc0fb78920a40fab821ac7257b0069e0773b49.cairo" + }, + "parent_location": [ + { + "end_col": 20, + "end_line": 347, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "parent_location": [ + { + "end_col": 36, + "end_line": 11, + "input_file": { + "filename": "autogen/starknet/external/return/supportsInterface/40b33230f82887d6ee6ba7936c0fcb15006d084631250a62d0c39394fb5b7629.cairo" + }, + "parent_location": [ + { + "end_col": 23, + "end_line": 345, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "start_col": 6, + "start_line": 345 + }, + "While handling return value of" + ], + "start_col": 18, + "start_line": 11 + }, + "While expanding the reference '__return_value_ptr' in:" + ], + "start_col": 7, + "start_line": 347 + }, + "While handling return value 'success'" + ], + "start_col": 26, + "start_line": 2 + } + }, + "5037": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.supportsInterface_encode_return" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 81, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/return/supportsInterface/40b33230f82887d6ee6ba7936c0fcb15006d084631250a62d0c39394fb5b7629.cairo" + }, + "parent_location": [ + { + "end_col": 23, + "end_line": 345, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "parent_location": [ + { + "end_col": 40, + "end_line": 10, + "input_file": { + "filename": "autogen/starknet/external/return/supportsInterface/40b33230f82887d6ee6ba7936c0fcb15006d084631250a62d0c39394fb5b7629.cairo" + }, + "parent_location": [ + { + "end_col": 23, + "end_line": 345, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "start_col": 6, + "start_line": 345 + }, + "While handling return value of" + ], + "start_col": 25, + "start_line": 10 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 6, + "start_line": 345 + }, + "While handling return value of" + ], + "start_col": 66, + "start_line": 1 + } + }, + "5038": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.supportsInterface_encode_return" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 63, + "end_line": 11, + "input_file": { + "filename": "autogen/starknet/external/return/supportsInterface/40b33230f82887d6ee6ba7936c0fcb15006d084631250a62d0c39394fb5b7629.cairo" + }, + "parent_location": [ + { + "end_col": 23, + "end_line": 345, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "start_col": 6, + "start_line": 345 + }, + "While handling return value of" + ], + "start_col": 18, + "start_line": 11 + } + }, + "5039": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.supportsInterface_encode_return" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 35, + "end_line": 5, + "input_file": { + "filename": "autogen/starknet/external/return/supportsInterface/40b33230f82887d6ee6ba7936c0fcb15006d084631250a62d0c39394fb5b7629.cairo" + }, + "parent_location": [ + { + "end_col": 23, + "end_line": 345, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "parent_location": [ + { + "end_col": 38, + "end_line": 12, + "input_file": { + "filename": "autogen/starknet/external/return/supportsInterface/40b33230f82887d6ee6ba7936c0fcb15006d084631250a62d0c39394fb5b7629.cairo" + }, + "parent_location": [ + { + "end_col": 23, + "end_line": 345, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "start_col": 6, + "start_line": 345 + }, + "While handling return value of" + ], + "start_col": 14, + "start_line": 12 + }, + "While expanding the reference '__return_value_ptr_start' in:" + ], + "start_col": 6, + "start_line": 345 + }, + "While handling return value of" + ], + "start_col": 11, + "start_line": 5 + } + }, + "5040": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.supportsInterface_encode_return" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 40, + "end_line": 12, + "input_file": { + "filename": "autogen/starknet/external/return/supportsInterface/40b33230f82887d6ee6ba7936c0fcb15006d084631250a62d0c39394fb5b7629.cairo" + }, + "parent_location": [ + { + "end_col": 23, + "end_line": 345, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "start_col": 6, + "start_line": 345 + }, + "While handling return value of" + ], + "start_col": 5, + "start_line": 9 + } + }, + "5041": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.supportsInterface" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 40, + "end_line": 2, + "input_file": { + "filename": "autogen/starknet/arg_processor/708f2877a5fc05dca278266df4d8e2025597a78068ffd64385f0ef27ab208871.cairo" + }, + "parent_location": [ + { + "end_col": 22, + "end_line": 346, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "parent_location": [ + { + "end_col": 45, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/arg_processor/c31620b02d4d706f0542c989b2aadc01b0981d1f6a5933a8fe4937ace3d70d92.cairo" + }, + "parent_location": [ + { + "end_col": 23, + "end_line": 345, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "parent_location": [ + { + "end_col": 57, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/arg_processor/01cba52f8515996bb9d7070bde81ff39281d096d7024a558efcba6e1fd2402cf.cairo" + }, + "parent_location": [ + { + "end_col": 23, + "end_line": 345, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "start_col": 6, + "start_line": 345 + }, + "While handling calldata of" + ], + "start_col": 35, + "start_line": 1 + }, + "While expanding the reference '__calldata_actual_size' in:" + ], + "start_col": 6, + "start_line": 345 + }, + "While handling calldata of" + ], + "start_col": 31, + "start_line": 1 + }, + "While expanding the reference '__calldata_ptr' in:" + ], + "start_col": 5, + "start_line": 346 + }, + "While handling calldata argument 'interfaceId'" + ], + "start_col": 22, + "start_line": 2 + } + }, + "5043": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.supportsInterface" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 58, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/arg_processor/01cba52f8515996bb9d7070bde81ff39281d096d7024a558efcba6e1fd2402cf.cairo" + }, + "parent_location": [ + { + "end_col": 23, + "end_line": 345, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "start_col": 6, + "start_line": 345 + }, + "While handling calldata of" + ], + "start_col": 1, + "start_line": 1 + } + }, + "5044": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.supportsInterface" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 64, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/supportsInterface/b2c52ca2d2a8fc8791a983086d8716c5eacd0c3d62934914d2286f84b98ff4cb.cairo" + }, + "parent_location": [ + { + "end_col": 42, + "end_line": 345, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "parent_location": [ + { + "end_col": 55, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/supportsInterface/bca8209c591df9f65b13800fe22999fe396aef7f2e9ee72505ad6a9793c5916d.cairo" + }, + "parent_location": [ + { + "end_col": 23, + "end_line": 345, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "start_col": 6, + "start_line": 345 + }, + "While constructing the external wrapper for:" + ], + "start_col": 44, + "start_line": 1 + }, + "While expanding the reference 'syscall_ptr' in:" + ], + "start_col": 24, + "start_line": 345 + }, + "While constructing the external wrapper for:" + ], + "start_col": 19, + "start_line": 1 + } + }, + "5045": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.supportsInterface" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 110, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/supportsInterface/9684a85e93c782014ca14293edea4eb2502039a5a7b6538ecd39c56faaf12529.cairo" + }, + "parent_location": [ + { + "end_col": 70, + "end_line": 345, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "parent_location": [ + { + "end_col": 82, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/supportsInterface/bca8209c591df9f65b13800fe22999fe396aef7f2e9ee72505ad6a9793c5916d.cairo" + }, + "parent_location": [ + { + "end_col": 23, + "end_line": 345, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "start_col": 6, + "start_line": 345 + }, + "While constructing the external wrapper for:" + ], + "start_col": 70, + "start_line": 1 + }, + "While expanding the reference 'pedersen_ptr' in:" + ], + "start_col": 44, + "start_line": 345 + }, + "While constructing the external wrapper for:" + ], + "start_col": 20, + "start_line": 1 + } + }, + "5046": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.supportsInterface" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 67, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/supportsInterface/741ea357d6336b0bed7bf0472425acd0311d543883b803388880e60a232040c7.cairo" + }, + "parent_location": [ + { + "end_col": 87, + "end_line": 345, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "parent_location": [ + { + "end_col": 115, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/supportsInterface/bca8209c591df9f65b13800fe22999fe396aef7f2e9ee72505ad6a9793c5916d.cairo" + }, + "parent_location": [ + { + "end_col": 23, + "end_line": 345, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "start_col": 6, + "start_line": 345 + }, + "While constructing the external wrapper for:" + ], + "start_col": 100, + "start_line": 1 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 72, + "start_line": 345 + }, + "While constructing the external wrapper for:" + ], + "start_col": 23, + "start_line": 1 + } + }, + "5047": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.supportsInterface" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 50, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/arg_processor/708f2877a5fc05dca278266df4d8e2025597a78068ffd64385f0ef27ab208871.cairo" + }, + "parent_location": [ + { + "end_col": 22, + "end_line": 346, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "parent_location": [ + { + "end_col": 155, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/supportsInterface/bca8209c591df9f65b13800fe22999fe396aef7f2e9ee72505ad6a9793c5916d.cairo" + }, + "parent_location": [ + { + "end_col": 23, + "end_line": 345, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "start_col": 6, + "start_line": 345 + }, + "While constructing the external wrapper for:" + ], + "start_col": 129, + "start_line": 1 + }, + "While expanding the reference '__calldata_arg_interfaceId' in:" + ], + "start_col": 5, + "start_line": 346 + }, + "While handling calldata argument 'interfaceId'" + ], + "start_col": 34, + "start_line": 1 + } + }, + "5048": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.supportsInterface" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 23, + "end_line": 345, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "start_col": 6, + "start_line": 345 + } + }, + "5050": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.supportsInterface" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 115, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/supportsInterface/bca8209c591df9f65b13800fe22999fe396aef7f2e9ee72505ad6a9793c5916d.cairo" + }, + "parent_location": [ + { + "end_col": 23, + "end_line": 345, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "parent_location": [ + { + "end_col": 106, + "end_line": 2, + "input_file": { + "filename": "autogen/starknet/external/supportsInterface/bca8209c591df9f65b13800fe22999fe396aef7f2e9ee72505ad6a9793c5916d.cairo" + }, + "parent_location": [ + { + "end_col": 23, + "end_line": 345, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "start_col": 6, + "start_line": 345 + }, + "While constructing the external wrapper for:" + ], + "start_col": 91, + "start_line": 2 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 6, + "start_line": 345 + }, + "While constructing the external wrapper for:" + ], + "start_col": 100, + "start_line": 1 + } + }, + "5051": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.supportsInterface" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 107, + "end_line": 2, + "input_file": { + "filename": "autogen/starknet/external/supportsInterface/bca8209c591df9f65b13800fe22999fe396aef7f2e9ee72505ad6a9793c5916d.cairo" + }, + "parent_location": [ + { + "end_col": 23, + "end_line": 345, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "start_col": 6, + "start_line": 345 + }, + "While constructing the external wrapper for:" + ], + "start_col": 48, + "start_line": 2 + } + }, + "5053": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.supportsInterface" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 55, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/supportsInterface/bca8209c591df9f65b13800fe22999fe396aef7f2e9ee72505ad6a9793c5916d.cairo" + }, + "parent_location": [ + { + "end_col": 23, + "end_line": 345, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "parent_location": [ + { + "end_col": 20, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/supportsInterface/da17921a4e81c09e730800bbf23bfdbe5e9e6bfaedc59d80fbf62087fa43c27d.cairo" + }, + "parent_location": [ + { + "end_col": 23, + "end_line": 345, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "start_col": 6, + "start_line": 345 + }, + "While constructing the external wrapper for:" + ], + "start_col": 9, + "start_line": 1 + }, + "While expanding the reference 'syscall_ptr' in:" + ], + "start_col": 6, + "start_line": 345 + }, + "While constructing the external wrapper for:" + ], + "start_col": 44, + "start_line": 1 + } + }, + "5054": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.supportsInterface" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 82, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/supportsInterface/bca8209c591df9f65b13800fe22999fe396aef7f2e9ee72505ad6a9793c5916d.cairo" + }, + "parent_location": [ + { + "end_col": 23, + "end_line": 345, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "parent_location": [ + { + "end_col": 33, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/supportsInterface/da17921a4e81c09e730800bbf23bfdbe5e9e6bfaedc59d80fbf62087fa43c27d.cairo" + }, + "parent_location": [ + { + "end_col": 23, + "end_line": 345, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "start_col": 6, + "start_line": 345 + }, + "While constructing the external wrapper for:" + ], + "start_col": 21, + "start_line": 1 + }, + "While expanding the reference 'pedersen_ptr' in:" + ], + "start_col": 6, + "start_line": 345 + }, + "While constructing the external wrapper for:" + ], + "start_col": 70, + "start_line": 1 + } + }, + "5055": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.supportsInterface" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 21, + "end_line": 2, + "input_file": { + "filename": "autogen/starknet/external/supportsInterface/bca8209c591df9f65b13800fe22999fe396aef7f2e9ee72505ad6a9793c5916d.cairo" + }, + "parent_location": [ + { + "end_col": 23, + "end_line": 345, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "parent_location": [ + { + "end_col": 49, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/supportsInterface/da17921a4e81c09e730800bbf23bfdbe5e9e6bfaedc59d80fbf62087fa43c27d.cairo" + }, + "parent_location": [ + { + "end_col": 23, + "end_line": 345, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "start_col": 6, + "start_line": 345 + }, + "While constructing the external wrapper for:" + ], + "start_col": 34, + "start_line": 1 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 6, + "start_line": 345 + }, + "While constructing the external wrapper for:" + ], + "start_col": 6, + "start_line": 2 + } + }, + "5056": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.supportsInterface" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 35, + "end_line": 2, + "input_file": { + "filename": "autogen/starknet/external/supportsInterface/bca8209c591df9f65b13800fe22999fe396aef7f2e9ee72505ad6a9793c5916d.cairo" + }, + "parent_location": [ + { + "end_col": 23, + "end_line": 345, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "parent_location": [ + { + "end_col": 62, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/supportsInterface/da17921a4e81c09e730800bbf23bfdbe5e9e6bfaedc59d80fbf62087fa43c27d.cairo" + }, + "parent_location": [ + { + "end_col": 23, + "end_line": 345, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "start_col": 6, + "start_line": 345 + }, + "While constructing the external wrapper for:" + ], + "start_col": 50, + "start_line": 1 + }, + "While expanding the reference 'retdata_size' in:" + ], + "start_col": 6, + "start_line": 345 + }, + "While constructing the external wrapper for:" + ], + "start_col": 23, + "start_line": 2 + } + }, + "5057": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.supportsInterface" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 44, + "end_line": 2, + "input_file": { + "filename": "autogen/starknet/external/supportsInterface/bca8209c591df9f65b13800fe22999fe396aef7f2e9ee72505ad6a9793c5916d.cairo" + }, + "parent_location": [ + { + "end_col": 23, + "end_line": 345, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "parent_location": [ + { + "end_col": 70, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/supportsInterface/da17921a4e81c09e730800bbf23bfdbe5e9e6bfaedc59d80fbf62087fa43c27d.cairo" + }, + "parent_location": [ + { + "end_col": 23, + "end_line": 345, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "start_col": 6, + "start_line": 345 + }, + "While constructing the external wrapper for:" + ], + "start_col": 63, + "start_line": 1 + }, + "While expanding the reference 'retdata' in:" + ], + "start_col": 6, + "start_line": 345 + }, + "While constructing the external wrapper for:" + ], + "start_col": 37, + "start_line": 2 + } + }, + "5058": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.supportsInterface" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 72, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/supportsInterface/da17921a4e81c09e730800bbf23bfdbe5e9e6bfaedc59d80fbf62087fa43c27d.cairo" + }, + "parent_location": [ + { + "end_col": 23, + "end_line": 345, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "start_col": 6, + "start_line": 345 + }, + "While constructing the external wrapper for:" + ], + "start_col": 1, + "start_line": 1 + } + }, + "5059": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.name" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 29, + "end_line": 357, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "parent_location": [ + { + "end_col": 33, + "end_line": 90, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "parent_location": [ + { + "end_col": 31, + "end_line": 358, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "start_col": 18, + "start_line": 358 + }, + "While trying to retrieve the implicit argument 'syscall_ptr' in:" + ], + "start_col": 15, + "start_line": 90 + }, + "While expanding the reference 'syscall_ptr' in:" + ], + "start_col": 11, + "start_line": 357 + } + }, + "5060": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.name" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 57, + "end_line": 357, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "parent_location": [ + { + "end_col": 61, + "end_line": 90, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "parent_location": [ + { + "end_col": 31, + "end_line": 358, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "start_col": 18, + "start_line": 358 + }, + "While trying to retrieve the implicit argument 'pedersen_ptr' in:" + ], + "start_col": 35, + "start_line": 90 + }, + "While expanding the reference 'pedersen_ptr' in:" + ], + "start_col": 31, + "start_line": 357 + } + }, + "5061": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.name" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 74, + "end_line": 357, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "parent_location": [ + { + "end_col": 78, + "end_line": 90, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "parent_location": [ + { + "end_col": 31, + "end_line": 358, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "start_col": 18, + "start_line": 358 + }, + "While trying to retrieve the implicit argument 'range_check_ptr' in:" + ], + "start_col": 63, + "start_line": 90 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 59, + "start_line": 357 + } + }, + "5062": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.name" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 31, + "end_line": 358, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "start_col": 18, + "start_line": 358 + } + }, + "5064": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.name" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 20, + "end_line": 359, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "start_col": 5, + "start_line": 359 + } + }, + "5065": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.name_encode_return" + ], + "flow_tracking_data": null, + "hints": [ + { + "location": { + "end_col": 38, + "end_line": 3, + "input_file": { + "filename": "autogen/starknet/external/return/name/c8fcd0b2b3f24b16bed33f1349d99fe0bde24b7764fe1bdc31d37b9ddca24adc.cairo" + }, + "parent_location": [ + { + "end_col": 10, + "end_line": 357, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "start_col": 6, + "start_line": 357 + }, + "While handling return value of" + ], + "start_col": 5, + "start_line": 3 + }, + "n_prefix_newlines": 0 + } + ], + "inst": { + "end_col": 18, + "end_line": 4, + "input_file": { + "filename": "autogen/starknet/external/return/name/c8fcd0b2b3f24b16bed33f1349d99fe0bde24b7764fe1bdc31d37b9ddca24adc.cairo" + }, + "parent_location": [ + { + "end_col": 10, + "end_line": 357, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "start_col": 6, + "start_line": 357 + }, + "While handling return value of" + ], + "start_col": 5, + "start_line": 4 + } + }, + "5067": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.name_encode_return" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 46, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/arg_processor/6f345e20daf86e05c346aa1f6a9eeaa296a59eb71a12784c017d25ed5b25ff32.cairo" + }, + "parent_location": [ + { + "end_col": 92, + "end_line": 357, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "start_col": 82, + "start_line": 357 + }, + "While handling return value 'name'" + ], + "start_col": 1, + "start_line": 1 + } + }, + "5068": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.name_encode_return" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 48, + "end_line": 2, + "input_file": { + "filename": "autogen/starknet/arg_processor/6f345e20daf86e05c346aa1f6a9eeaa296a59eb71a12784c017d25ed5b25ff32.cairo" + }, + "parent_location": [ + { + "end_col": 92, + "end_line": 357, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "parent_location": [ + { + "end_col": 36, + "end_line": 11, + "input_file": { + "filename": "autogen/starknet/external/return/name/c8fcd0b2b3f24b16bed33f1349d99fe0bde24b7764fe1bdc31d37b9ddca24adc.cairo" + }, + "parent_location": [ + { + "end_col": 10, + "end_line": 357, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "start_col": 6, + "start_line": 357 + }, + "While handling return value of" + ], + "start_col": 18, + "start_line": 11 + }, + "While expanding the reference '__return_value_ptr' in:" + ], + "start_col": 82, + "start_line": 357 + }, + "While handling return value 'name'" + ], + "start_col": 26, + "start_line": 2 + } + }, + "5070": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.name_encode_return" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 65, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/return/name/c8fcd0b2b3f24b16bed33f1349d99fe0bde24b7764fe1bdc31d37b9ddca24adc.cairo" + }, + "parent_location": [ + { + "end_col": 10, + "end_line": 357, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "parent_location": [ + { + "end_col": 40, + "end_line": 10, + "input_file": { + "filename": "autogen/starknet/external/return/name/c8fcd0b2b3f24b16bed33f1349d99fe0bde24b7764fe1bdc31d37b9ddca24adc.cairo" + }, + "parent_location": [ + { + "end_col": 10, + "end_line": 357, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "start_col": 6, + "start_line": 357 + }, + "While handling return value of" + ], + "start_col": 25, + "start_line": 10 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 6, + "start_line": 357 + }, + "While handling return value of" + ], + "start_col": 50, + "start_line": 1 + } + }, + "5071": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.name_encode_return" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 63, + "end_line": 11, + "input_file": { + "filename": "autogen/starknet/external/return/name/c8fcd0b2b3f24b16bed33f1349d99fe0bde24b7764fe1bdc31d37b9ddca24adc.cairo" + }, + "parent_location": [ + { + "end_col": 10, + "end_line": 357, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "start_col": 6, + "start_line": 357 + }, + "While handling return value of" + ], + "start_col": 18, + "start_line": 11 + } + }, + "5072": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.name_encode_return" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 35, + "end_line": 5, + "input_file": { + "filename": "autogen/starknet/external/return/name/c8fcd0b2b3f24b16bed33f1349d99fe0bde24b7764fe1bdc31d37b9ddca24adc.cairo" + }, + "parent_location": [ + { + "end_col": 10, + "end_line": 357, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "parent_location": [ + { + "end_col": 38, + "end_line": 12, + "input_file": { + "filename": "autogen/starknet/external/return/name/c8fcd0b2b3f24b16bed33f1349d99fe0bde24b7764fe1bdc31d37b9ddca24adc.cairo" + }, + "parent_location": [ + { + "end_col": 10, + "end_line": 357, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "start_col": 6, + "start_line": 357 + }, + "While handling return value of" + ], + "start_col": 14, + "start_line": 12 + }, + "While expanding the reference '__return_value_ptr_start' in:" + ], + "start_col": 6, + "start_line": 357 + }, + "While handling return value of" + ], + "start_col": 11, + "start_line": 5 + } + }, + "5073": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.name_encode_return" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 40, + "end_line": 12, + "input_file": { + "filename": "autogen/starknet/external/return/name/c8fcd0b2b3f24b16bed33f1349d99fe0bde24b7764fe1bdc31d37b9ddca24adc.cairo" + }, + "parent_location": [ + { + "end_col": 10, + "end_line": 357, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "start_col": 6, + "start_line": 357 + }, + "While handling return value of" + ], + "start_col": 5, + "start_line": 9 + } + }, + "5074": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.name" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 58, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/arg_processor/01cba52f8515996bb9d7070bde81ff39281d096d7024a558efcba6e1fd2402cf.cairo" + }, + "parent_location": [ + { + "end_col": 10, + "end_line": 357, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "start_col": 6, + "start_line": 357 + }, + "While handling calldata of" + ], + "start_col": 1, + "start_line": 1 + } + }, + "5075": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.name" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 64, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/name/b2c52ca2d2a8fc8791a983086d8716c5eacd0c3d62934914d2286f84b98ff4cb.cairo" + }, + "parent_location": [ + { + "end_col": 29, + "end_line": 357, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "parent_location": [ + { + "end_col": 55, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/name/3034a84ffbc2cc9a83b0bdb0bf6aadae87a5c63f8544f4bc76a18d60221f0e94.cairo" + }, + "parent_location": [ + { + "end_col": 10, + "end_line": 357, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "start_col": 6, + "start_line": 357 + }, + "While constructing the external wrapper for:" + ], + "start_col": 44, + "start_line": 1 + }, + "While expanding the reference 'syscall_ptr' in:" + ], + "start_col": 11, + "start_line": 357 + }, + "While constructing the external wrapper for:" + ], + "start_col": 19, + "start_line": 1 + } + }, + "5076": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.name" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 110, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/name/9684a85e93c782014ca14293edea4eb2502039a5a7b6538ecd39c56faaf12529.cairo" + }, + "parent_location": [ + { + "end_col": 57, + "end_line": 357, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "parent_location": [ + { + "end_col": 82, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/name/3034a84ffbc2cc9a83b0bdb0bf6aadae87a5c63f8544f4bc76a18d60221f0e94.cairo" + }, + "parent_location": [ + { + "end_col": 10, + "end_line": 357, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "start_col": 6, + "start_line": 357 + }, + "While constructing the external wrapper for:" + ], + "start_col": 70, + "start_line": 1 + }, + "While expanding the reference 'pedersen_ptr' in:" + ], + "start_col": 31, + "start_line": 357 + }, + "While constructing the external wrapper for:" + ], + "start_col": 20, + "start_line": 1 + } + }, + "5077": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.name" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 67, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/name/741ea357d6336b0bed7bf0472425acd0311d543883b803388880e60a232040c7.cairo" + }, + "parent_location": [ + { + "end_col": 74, + "end_line": 357, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "parent_location": [ + { + "end_col": 115, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/name/3034a84ffbc2cc9a83b0bdb0bf6aadae87a5c63f8544f4bc76a18d60221f0e94.cairo" + }, + "parent_location": [ + { + "end_col": 10, + "end_line": 357, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "start_col": 6, + "start_line": 357 + }, + "While constructing the external wrapper for:" + ], + "start_col": 100, + "start_line": 1 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 59, + "start_line": 357 + }, + "While constructing the external wrapper for:" + ], + "start_col": 23, + "start_line": 1 + } + }, + "5078": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.name" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 10, + "end_line": 357, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "start_col": 6, + "start_line": 357 + } + }, + "5080": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.name" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 115, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/name/3034a84ffbc2cc9a83b0bdb0bf6aadae87a5c63f8544f4bc76a18d60221f0e94.cairo" + }, + "parent_location": [ + { + "end_col": 10, + "end_line": 357, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "parent_location": [ + { + "end_col": 93, + "end_line": 2, + "input_file": { + "filename": "autogen/starknet/external/name/3034a84ffbc2cc9a83b0bdb0bf6aadae87a5c63f8544f4bc76a18d60221f0e94.cairo" + }, + "parent_location": [ + { + "end_col": 10, + "end_line": 357, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "start_col": 6, + "start_line": 357 + }, + "While constructing the external wrapper for:" + ], + "start_col": 78, + "start_line": 2 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 6, + "start_line": 357 + }, + "While constructing the external wrapper for:" + ], + "start_col": 100, + "start_line": 1 + } + }, + "5081": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.name" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 94, + "end_line": 2, + "input_file": { + "filename": "autogen/starknet/external/name/3034a84ffbc2cc9a83b0bdb0bf6aadae87a5c63f8544f4bc76a18d60221f0e94.cairo" + }, + "parent_location": [ + { + "end_col": 10, + "end_line": 357, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "start_col": 6, + "start_line": 357 + }, + "While constructing the external wrapper for:" + ], + "start_col": 48, + "start_line": 2 + } + }, + "5083": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.name" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 55, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/name/3034a84ffbc2cc9a83b0bdb0bf6aadae87a5c63f8544f4bc76a18d60221f0e94.cairo" + }, + "parent_location": [ + { + "end_col": 10, + "end_line": 357, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "parent_location": [ + { + "end_col": 20, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/name/da17921a4e81c09e730800bbf23bfdbe5e9e6bfaedc59d80fbf62087fa43c27d.cairo" + }, + "parent_location": [ + { + "end_col": 10, + "end_line": 357, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "start_col": 6, + "start_line": 357 + }, + "While constructing the external wrapper for:" + ], + "start_col": 9, + "start_line": 1 + }, + "While expanding the reference 'syscall_ptr' in:" + ], + "start_col": 6, + "start_line": 357 + }, + "While constructing the external wrapper for:" + ], + "start_col": 44, + "start_line": 1 + } + }, + "5084": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.name" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 82, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/name/3034a84ffbc2cc9a83b0bdb0bf6aadae87a5c63f8544f4bc76a18d60221f0e94.cairo" + }, + "parent_location": [ + { + "end_col": 10, + "end_line": 357, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "parent_location": [ + { + "end_col": 33, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/name/da17921a4e81c09e730800bbf23bfdbe5e9e6bfaedc59d80fbf62087fa43c27d.cairo" + }, + "parent_location": [ + { + "end_col": 10, + "end_line": 357, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "start_col": 6, + "start_line": 357 + }, + "While constructing the external wrapper for:" + ], + "start_col": 21, + "start_line": 1 + }, + "While expanding the reference 'pedersen_ptr' in:" + ], + "start_col": 6, + "start_line": 357 + }, + "While constructing the external wrapper for:" + ], + "start_col": 70, + "start_line": 1 + } + }, + "5085": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.name" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 21, + "end_line": 2, + "input_file": { + "filename": "autogen/starknet/external/name/3034a84ffbc2cc9a83b0bdb0bf6aadae87a5c63f8544f4bc76a18d60221f0e94.cairo" + }, + "parent_location": [ + { + "end_col": 10, + "end_line": 357, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "parent_location": [ + { + "end_col": 49, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/name/da17921a4e81c09e730800bbf23bfdbe5e9e6bfaedc59d80fbf62087fa43c27d.cairo" + }, + "parent_location": [ + { + "end_col": 10, + "end_line": 357, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "start_col": 6, + "start_line": 357 + }, + "While constructing the external wrapper for:" + ], + "start_col": 34, + "start_line": 1 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 6, + "start_line": 357 + }, + "While constructing the external wrapper for:" + ], + "start_col": 6, + "start_line": 2 + } + }, + "5086": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.name" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 35, + "end_line": 2, + "input_file": { + "filename": "autogen/starknet/external/name/3034a84ffbc2cc9a83b0bdb0bf6aadae87a5c63f8544f4bc76a18d60221f0e94.cairo" + }, + "parent_location": [ + { + "end_col": 10, + "end_line": 357, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "parent_location": [ + { + "end_col": 62, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/name/da17921a4e81c09e730800bbf23bfdbe5e9e6bfaedc59d80fbf62087fa43c27d.cairo" + }, + "parent_location": [ + { + "end_col": 10, + "end_line": 357, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "start_col": 6, + "start_line": 357 + }, + "While constructing the external wrapper for:" + ], + "start_col": 50, + "start_line": 1 + }, + "While expanding the reference 'retdata_size' in:" + ], + "start_col": 6, + "start_line": 357 + }, + "While constructing the external wrapper for:" + ], + "start_col": 23, + "start_line": 2 + } + }, + "5087": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.name" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 44, + "end_line": 2, + "input_file": { + "filename": "autogen/starknet/external/name/3034a84ffbc2cc9a83b0bdb0bf6aadae87a5c63f8544f4bc76a18d60221f0e94.cairo" + }, + "parent_location": [ + { + "end_col": 10, + "end_line": 357, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "parent_location": [ + { + "end_col": 70, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/name/da17921a4e81c09e730800bbf23bfdbe5e9e6bfaedc59d80fbf62087fa43c27d.cairo" + }, + "parent_location": [ + { + "end_col": 10, + "end_line": 357, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "start_col": 6, + "start_line": 357 + }, + "While constructing the external wrapper for:" + ], + "start_col": 63, + "start_line": 1 + }, + "While expanding the reference 'retdata' in:" + ], + "start_col": 6, + "start_line": 357 + }, + "While constructing the external wrapper for:" + ], + "start_col": 37, + "start_line": 2 + } + }, + "5088": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.name" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 72, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/name/da17921a4e81c09e730800bbf23bfdbe5e9e6bfaedc59d80fbf62087fa43c27d.cairo" + }, + "parent_location": [ + { + "end_col": 10, + "end_line": 357, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "start_col": 6, + "start_line": 357 + }, + "While constructing the external wrapper for:" + ], + "start_col": 1, + "start_line": 1 + } + }, + "5089": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.setName" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 32, + "end_line": 363, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "parent_location": [ + { + "end_col": 46, + "end_line": 40, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/access/ownable/library.cairo" + }, + "parent_location": [ + { + "end_col": 32, + "end_line": 364, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "start_col": 5, + "start_line": 364 + }, + "While trying to retrieve the implicit argument 'syscall_ptr' in:" + ], + "start_col": 28, + "start_line": 40 + }, + "While expanding the reference 'syscall_ptr' in:" + ], + "start_col": 14, + "start_line": 363 + } + }, + "5090": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.setName" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 60, + "end_line": 363, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "parent_location": [ + { + "end_col": 74, + "end_line": 40, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/access/ownable/library.cairo" + }, + "parent_location": [ + { + "end_col": 32, + "end_line": 364, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "start_col": 5, + "start_line": 364 + }, + "While trying to retrieve the implicit argument 'pedersen_ptr' in:" + ], + "start_col": 48, + "start_line": 40 + }, + "While expanding the reference 'pedersen_ptr' in:" + ], + "start_col": 34, + "start_line": 363 + } + }, + "5091": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.setName" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 77, + "end_line": 363, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "parent_location": [ + { + "end_col": 91, + "end_line": 40, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/access/ownable/library.cairo" + }, + "parent_location": [ + { + "end_col": 32, + "end_line": 364, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "start_col": 5, + "start_line": 364 + }, + "While trying to retrieve the implicit argument 'range_check_ptr' in:" + ], + "start_col": 76, + "start_line": 40 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 62, + "start_line": 363 + } + }, + "5092": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.setName" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 32, + "end_line": 364, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "start_col": 5, + "start_line": 364 + } + }, + "5094": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.setName" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 89, + "end_line": 363, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "parent_location": [ + { + "end_col": 27, + "end_line": 365, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "start_col": 23, + "start_line": 365 + }, + "While expanding the reference 'name' in:" + ], + "start_col": 79, + "start_line": 363 + } + }, + "5095": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.setName" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 28, + "end_line": 365, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "start_col": 5, + "start_line": 365 + } + }, + "5097": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.setName" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 15, + "end_line": 366, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "start_col": 5, + "start_line": 366 + } + }, + "5098": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.setName" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 40, + "end_line": 2, + "input_file": { + "filename": "autogen/starknet/arg_processor/e1eb73cd870ec466294c3700e77817cf3c039ac1384882ddb76383eb87a5da90.cairo" + }, + "parent_location": [ + { + "end_col": 89, + "end_line": 363, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "parent_location": [ + { + "end_col": 45, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/arg_processor/c31620b02d4d706f0542c989b2aadc01b0981d1f6a5933a8fe4937ace3d70d92.cairo" + }, + "parent_location": [ + { + "end_col": 13, + "end_line": 363, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "parent_location": [ + { + "end_col": 57, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/arg_processor/01cba52f8515996bb9d7070bde81ff39281d096d7024a558efcba6e1fd2402cf.cairo" + }, + "parent_location": [ + { + "end_col": 13, + "end_line": 363, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "start_col": 6, + "start_line": 363 + }, + "While handling calldata of" + ], + "start_col": 35, + "start_line": 1 + }, + "While expanding the reference '__calldata_actual_size' in:" + ], + "start_col": 6, + "start_line": 363 + }, + "While handling calldata of" + ], + "start_col": 31, + "start_line": 1 + }, + "While expanding the reference '__calldata_ptr' in:" + ], + "start_col": 79, + "start_line": 363 + }, + "While handling calldata argument 'name'" + ], + "start_col": 22, + "start_line": 2 + } + }, + "5100": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.setName" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 58, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/arg_processor/01cba52f8515996bb9d7070bde81ff39281d096d7024a558efcba6e1fd2402cf.cairo" + }, + "parent_location": [ + { + "end_col": 13, + "end_line": 363, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "start_col": 6, + "start_line": 363 + }, + "While handling calldata of" + ], + "start_col": 1, + "start_line": 1 + } + }, + "5101": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.setName" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 64, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/setName/b2c52ca2d2a8fc8791a983086d8716c5eacd0c3d62934914d2286f84b98ff4cb.cairo" + }, + "parent_location": [ + { + "end_col": 32, + "end_line": 363, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "parent_location": [ + { + "end_col": 55, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/setName/bb24fb091d0ea7be1f9e920b53e594d823ce500753fa71551cd0c2bbaeec9dc6.cairo" + }, + "parent_location": [ + { + "end_col": 13, + "end_line": 363, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "start_col": 6, + "start_line": 363 + }, + "While constructing the external wrapper for:" + ], + "start_col": 44, + "start_line": 1 + }, + "While expanding the reference 'syscall_ptr' in:" + ], + "start_col": 14, + "start_line": 363 + }, + "While constructing the external wrapper for:" + ], + "start_col": 19, + "start_line": 1 + } + }, + "5102": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.setName" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 110, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/setName/9684a85e93c782014ca14293edea4eb2502039a5a7b6538ecd39c56faaf12529.cairo" + }, + "parent_location": [ + { + "end_col": 60, + "end_line": 363, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "parent_location": [ + { + "end_col": 82, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/setName/bb24fb091d0ea7be1f9e920b53e594d823ce500753fa71551cd0c2bbaeec9dc6.cairo" + }, + "parent_location": [ + { + "end_col": 13, + "end_line": 363, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "start_col": 6, + "start_line": 363 + }, + "While constructing the external wrapper for:" + ], + "start_col": 70, + "start_line": 1 + }, + "While expanding the reference 'pedersen_ptr' in:" + ], + "start_col": 34, + "start_line": 363 + }, + "While constructing the external wrapper for:" + ], + "start_col": 20, + "start_line": 1 + } + }, + "5103": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.setName" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 67, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/setName/741ea357d6336b0bed7bf0472425acd0311d543883b803388880e60a232040c7.cairo" + }, + "parent_location": [ + { + "end_col": 77, + "end_line": 363, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "parent_location": [ + { + "end_col": 115, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/setName/bb24fb091d0ea7be1f9e920b53e594d823ce500753fa71551cd0c2bbaeec9dc6.cairo" + }, + "parent_location": [ + { + "end_col": 13, + "end_line": 363, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "start_col": 6, + "start_line": 363 + }, + "While constructing the external wrapper for:" + ], + "start_col": 100, + "start_line": 1 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 62, + "start_line": 363 + }, + "While constructing the external wrapper for:" + ], + "start_col": 23, + "start_line": 1 + } + }, + "5104": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.setName" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 43, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/arg_processor/e1eb73cd870ec466294c3700e77817cf3c039ac1384882ddb76383eb87a5da90.cairo" + }, + "parent_location": [ + { + "end_col": 89, + "end_line": 363, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "parent_location": [ + { + "end_col": 141, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/setName/bb24fb091d0ea7be1f9e920b53e594d823ce500753fa71551cd0c2bbaeec9dc6.cairo" + }, + "parent_location": [ + { + "end_col": 13, + "end_line": 363, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "start_col": 6, + "start_line": 363 + }, + "While constructing the external wrapper for:" + ], + "start_col": 122, + "start_line": 1 + }, + "While expanding the reference '__calldata_arg_name' in:" + ], + "start_col": 79, + "start_line": 363 + }, + "While handling calldata argument 'name'" + ], + "start_col": 27, + "start_line": 1 + } + }, + "5105": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.setName" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 13, + "end_line": 363, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "start_col": 6, + "start_line": 363 + } + }, + "5107": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.setName" + ], + "flow_tracking_data": null, + "hints": [ + { + "location": { + "end_col": 34, + "end_line": 2, + "input_file": { + "filename": "autogen/starknet/external/setName/bb24fb091d0ea7be1f9e920b53e594d823ce500753fa71551cd0c2bbaeec9dc6.cairo" + }, + "parent_location": [ + { + "end_col": 13, + "end_line": 363, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "start_col": 6, + "start_line": 363 + }, + "While constructing the external wrapper for:" + ], + "start_col": 1, + "start_line": 2 + }, + "n_prefix_newlines": 0 + } + ], + "inst": { + "end_col": 24, + "end_line": 3, + "input_file": { + "filename": "autogen/starknet/external/setName/bb24fb091d0ea7be1f9e920b53e594d823ce500753fa71551cd0c2bbaeec9dc6.cairo" + }, + "parent_location": [ + { + "end_col": 13, + "end_line": 363, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "start_col": 6, + "start_line": 363 + }, + "While constructing the external wrapper for:" + ], + "start_col": 1, + "start_line": 3 + } + }, + "5109": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.setName" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 55, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/setName/bb24fb091d0ea7be1f9e920b53e594d823ce500753fa71551cd0c2bbaeec9dc6.cairo" + }, + "parent_location": [ + { + "end_col": 13, + "end_line": 363, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "parent_location": [ + { + "end_col": 20, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/setName/da17921a4e81c09e730800bbf23bfdbe5e9e6bfaedc59d80fbf62087fa43c27d.cairo" + }, + "parent_location": [ + { + "end_col": 13, + "end_line": 363, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "start_col": 6, + "start_line": 363 + }, + "While constructing the external wrapper for:" + ], + "start_col": 9, + "start_line": 1 + }, + "While expanding the reference 'syscall_ptr' in:" + ], + "start_col": 6, + "start_line": 363 + }, + "While constructing the external wrapper for:" + ], + "start_col": 44, + "start_line": 1 + } + }, + "5110": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.setName" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 82, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/setName/bb24fb091d0ea7be1f9e920b53e594d823ce500753fa71551cd0c2bbaeec9dc6.cairo" + }, + "parent_location": [ + { + "end_col": 13, + "end_line": 363, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "parent_location": [ + { + "end_col": 33, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/setName/da17921a4e81c09e730800bbf23bfdbe5e9e6bfaedc59d80fbf62087fa43c27d.cairo" + }, + "parent_location": [ + { + "end_col": 13, + "end_line": 363, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "start_col": 6, + "start_line": 363 + }, + "While constructing the external wrapper for:" + ], + "start_col": 21, + "start_line": 1 + }, + "While expanding the reference 'pedersen_ptr' in:" + ], + "start_col": 6, + "start_line": 363 + }, + "While constructing the external wrapper for:" + ], + "start_col": 70, + "start_line": 1 + } + }, + "5111": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.setName" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 115, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/setName/bb24fb091d0ea7be1f9e920b53e594d823ce500753fa71551cd0c2bbaeec9dc6.cairo" + }, + "parent_location": [ + { + "end_col": 13, + "end_line": 363, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "parent_location": [ + { + "end_col": 49, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/setName/da17921a4e81c09e730800bbf23bfdbe5e9e6bfaedc59d80fbf62087fa43c27d.cairo" + }, + "parent_location": [ + { + "end_col": 13, + "end_line": 363, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "start_col": 6, + "start_line": 363 + }, + "While constructing the external wrapper for:" + ], + "start_col": 34, + "start_line": 1 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 6, + "start_line": 363 + }, + "While constructing the external wrapper for:" + ], + "start_col": 100, + "start_line": 1 + } + }, + "5112": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.setName" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 21, + "end_line": 4, + "input_file": { + "filename": "autogen/starknet/external/setName/bb24fb091d0ea7be1f9e920b53e594d823ce500753fa71551cd0c2bbaeec9dc6.cairo" + }, + "parent_location": [ + { + "end_col": 13, + "end_line": 363, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "parent_location": [ + { + "end_col": 62, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/setName/da17921a4e81c09e730800bbf23bfdbe5e9e6bfaedc59d80fbf62087fa43c27d.cairo" + }, + "parent_location": [ + { + "end_col": 13, + "end_line": 363, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "start_col": 6, + "start_line": 363 + }, + "While constructing the external wrapper for:" + ], + "start_col": 50, + "start_line": 1 + }, + "While expanding the reference 'retdata_size' in:" + ], + "start_col": 6, + "start_line": 363 + }, + "While constructing the external wrapper for:" + ], + "start_col": 20, + "start_line": 4 + } + }, + "5114": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.setName" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 16, + "end_line": 3, + "input_file": { + "filename": "autogen/starknet/external/setName/bb24fb091d0ea7be1f9e920b53e594d823ce500753fa71551cd0c2bbaeec9dc6.cairo" + }, + "parent_location": [ + { + "end_col": 13, + "end_line": 363, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "parent_location": [ + { + "end_col": 70, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/setName/da17921a4e81c09e730800bbf23bfdbe5e9e6bfaedc59d80fbf62087fa43c27d.cairo" + }, + "parent_location": [ + { + "end_col": 13, + "end_line": 363, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "start_col": 6, + "start_line": 363 + }, + "While constructing the external wrapper for:" + ], + "start_col": 63, + "start_line": 1 + }, + "While expanding the reference 'retdata' in:" + ], + "start_col": 6, + "start_line": 363 + }, + "While constructing the external wrapper for:" + ], + "start_col": 9, + "start_line": 3 + } + }, + "5115": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.setName" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 72, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/setName/da17921a4e81c09e730800bbf23bfdbe5e9e6bfaedc59d80fbf62087fa43c27d.cairo" + }, + "parent_location": [ + { + "end_col": 13, + "end_line": 363, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "start_col": 6, + "start_line": 363 + }, + "While constructing the external wrapper for:" + ], + "start_col": 1, + "start_line": 1 + } + }, + "5116": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.symbol" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 31, + "end_line": 370, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "parent_location": [ + { + "end_col": 35, + "end_line": 94, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "parent_location": [ + { + "end_col": 35, + "end_line": 371, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "start_col": 20, + "start_line": 371 + }, + "While trying to retrieve the implicit argument 'syscall_ptr' in:" + ], + "start_col": 17, + "start_line": 94 + }, + "While expanding the reference 'syscall_ptr' in:" + ], + "start_col": 13, + "start_line": 370 + } + }, + "5117": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.symbol" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 59, + "end_line": 370, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "parent_location": [ + { + "end_col": 63, + "end_line": 94, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "parent_location": [ + { + "end_col": 35, + "end_line": 371, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "start_col": 20, + "start_line": 371 + }, + "While trying to retrieve the implicit argument 'pedersen_ptr' in:" + ], + "start_col": 37, + "start_line": 94 + }, + "While expanding the reference 'pedersen_ptr' in:" + ], + "start_col": 33, + "start_line": 370 + } + }, + "5118": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.symbol" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 76, + "end_line": 370, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "parent_location": [ + { + "end_col": 80, + "end_line": 94, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "parent_location": [ + { + "end_col": 35, + "end_line": 371, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "start_col": 20, + "start_line": 371 + }, + "While trying to retrieve the implicit argument 'range_check_ptr' in:" + ], + "start_col": 65, + "start_line": 94 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 61, + "start_line": 370 + } + }, + "5119": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.symbol" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 35, + "end_line": 371, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "start_col": 20, + "start_line": 371 + } + }, + "5121": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.symbol" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 22, + "end_line": 372, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "start_col": 5, + "start_line": 372 + } + }, + "5122": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.symbol_encode_return" + ], + "flow_tracking_data": null, + "hints": [ + { + "location": { + "end_col": 38, + "end_line": 3, + "input_file": { + "filename": "autogen/starknet/external/return/symbol/a0ae85480af0490479ac55aa0fb10c479d3c551bd5d0b449dafe97eed061cca1.cairo" + }, + "parent_location": [ + { + "end_col": 12, + "end_line": 370, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "start_col": 6, + "start_line": 370 + }, + "While handling return value of" + ], + "start_col": 5, + "start_line": 3 + }, + "n_prefix_newlines": 0 + } + ], + "inst": { + "end_col": 18, + "end_line": 4, + "input_file": { + "filename": "autogen/starknet/external/return/symbol/a0ae85480af0490479ac55aa0fb10c479d3c551bd5d0b449dafe97eed061cca1.cairo" + }, + "parent_location": [ + { + "end_col": 12, + "end_line": 370, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "start_col": 6, + "start_line": 370 + }, + "While handling return value of" + ], + "start_col": 5, + "start_line": 4 + } + }, + "5124": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.symbol_encode_return" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 48, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/arg_processor/3635b1d7caa543a52376beeb37a143262ea6ffdf923d8e3676d9b27787e943c8.cairo" + }, + "parent_location": [ + { + "end_col": 96, + "end_line": 370, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "start_col": 84, + "start_line": 370 + }, + "While handling return value 'symbol'" + ], + "start_col": 1, + "start_line": 1 + } + }, + "5125": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.symbol_encode_return" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 48, + "end_line": 2, + "input_file": { + "filename": "autogen/starknet/arg_processor/3635b1d7caa543a52376beeb37a143262ea6ffdf923d8e3676d9b27787e943c8.cairo" + }, + "parent_location": [ + { + "end_col": 96, + "end_line": 370, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "parent_location": [ + { + "end_col": 36, + "end_line": 11, + "input_file": { + "filename": "autogen/starknet/external/return/symbol/a0ae85480af0490479ac55aa0fb10c479d3c551bd5d0b449dafe97eed061cca1.cairo" + }, + "parent_location": [ + { + "end_col": 12, + "end_line": 370, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "start_col": 6, + "start_line": 370 + }, + "While handling return value of" + ], + "start_col": 18, + "start_line": 11 + }, + "While expanding the reference '__return_value_ptr' in:" + ], + "start_col": 84, + "start_line": 370 + }, + "While handling return value 'symbol'" + ], + "start_col": 26, + "start_line": 2 + } + }, + "5127": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.symbol_encode_return" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 69, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/return/symbol/a0ae85480af0490479ac55aa0fb10c479d3c551bd5d0b449dafe97eed061cca1.cairo" + }, + "parent_location": [ + { + "end_col": 12, + "end_line": 370, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "parent_location": [ + { + "end_col": 40, + "end_line": 10, + "input_file": { + "filename": "autogen/starknet/external/return/symbol/a0ae85480af0490479ac55aa0fb10c479d3c551bd5d0b449dafe97eed061cca1.cairo" + }, + "parent_location": [ + { + "end_col": 12, + "end_line": 370, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "start_col": 6, + "start_line": 370 + }, + "While handling return value of" + ], + "start_col": 25, + "start_line": 10 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 6, + "start_line": 370 + }, + "While handling return value of" + ], + "start_col": 54, + "start_line": 1 + } + }, + "5128": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.symbol_encode_return" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 63, + "end_line": 11, + "input_file": { + "filename": "autogen/starknet/external/return/symbol/a0ae85480af0490479ac55aa0fb10c479d3c551bd5d0b449dafe97eed061cca1.cairo" + }, + "parent_location": [ + { + "end_col": 12, + "end_line": 370, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "start_col": 6, + "start_line": 370 + }, + "While handling return value of" + ], + "start_col": 18, + "start_line": 11 + } + }, + "5129": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.symbol_encode_return" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 35, + "end_line": 5, + "input_file": { + "filename": "autogen/starknet/external/return/symbol/a0ae85480af0490479ac55aa0fb10c479d3c551bd5d0b449dafe97eed061cca1.cairo" + }, + "parent_location": [ + { + "end_col": 12, + "end_line": 370, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "parent_location": [ + { + "end_col": 38, + "end_line": 12, + "input_file": { + "filename": "autogen/starknet/external/return/symbol/a0ae85480af0490479ac55aa0fb10c479d3c551bd5d0b449dafe97eed061cca1.cairo" + }, + "parent_location": [ + { + "end_col": 12, + "end_line": 370, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "start_col": 6, + "start_line": 370 + }, + "While handling return value of" + ], + "start_col": 14, + "start_line": 12 + }, + "While expanding the reference '__return_value_ptr_start' in:" + ], + "start_col": 6, + "start_line": 370 + }, + "While handling return value of" + ], + "start_col": 11, + "start_line": 5 + } + }, + "5130": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.symbol_encode_return" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 40, + "end_line": 12, + "input_file": { + "filename": "autogen/starknet/external/return/symbol/a0ae85480af0490479ac55aa0fb10c479d3c551bd5d0b449dafe97eed061cca1.cairo" + }, + "parent_location": [ + { + "end_col": 12, + "end_line": 370, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "start_col": 6, + "start_line": 370 + }, + "While handling return value of" + ], + "start_col": 5, + "start_line": 9 + } + }, + "5131": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.symbol" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 58, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/arg_processor/01cba52f8515996bb9d7070bde81ff39281d096d7024a558efcba6e1fd2402cf.cairo" + }, + "parent_location": [ + { + "end_col": 12, + "end_line": 370, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "start_col": 6, + "start_line": 370 + }, + "While handling calldata of" + ], + "start_col": 1, + "start_line": 1 + } + }, + "5132": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.symbol" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 64, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/symbol/b2c52ca2d2a8fc8791a983086d8716c5eacd0c3d62934914d2286f84b98ff4cb.cairo" + }, + "parent_location": [ + { + "end_col": 31, + "end_line": 370, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "parent_location": [ + { + "end_col": 55, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/symbol/d8aa55fbbc45562d781915a1c7930fc50b33d8bd29db7102b5c44cbfd8b54639.cairo" + }, + "parent_location": [ + { + "end_col": 12, + "end_line": 370, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "start_col": 6, + "start_line": 370 + }, + "While constructing the external wrapper for:" + ], + "start_col": 44, + "start_line": 1 + }, + "While expanding the reference 'syscall_ptr' in:" + ], + "start_col": 13, + "start_line": 370 + }, + "While constructing the external wrapper for:" + ], + "start_col": 19, + "start_line": 1 + } + }, + "5133": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.symbol" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 110, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/symbol/9684a85e93c782014ca14293edea4eb2502039a5a7b6538ecd39c56faaf12529.cairo" + }, + "parent_location": [ + { + "end_col": 59, + "end_line": 370, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "parent_location": [ + { + "end_col": 82, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/symbol/d8aa55fbbc45562d781915a1c7930fc50b33d8bd29db7102b5c44cbfd8b54639.cairo" + }, + "parent_location": [ + { + "end_col": 12, + "end_line": 370, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "start_col": 6, + "start_line": 370 + }, + "While constructing the external wrapper for:" + ], + "start_col": 70, + "start_line": 1 + }, + "While expanding the reference 'pedersen_ptr' in:" + ], + "start_col": 33, + "start_line": 370 + }, + "While constructing the external wrapper for:" + ], + "start_col": 20, + "start_line": 1 + } + }, + "5134": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.symbol" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 67, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/symbol/741ea357d6336b0bed7bf0472425acd0311d543883b803388880e60a232040c7.cairo" + }, + "parent_location": [ + { + "end_col": 76, + "end_line": 370, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "parent_location": [ + { + "end_col": 115, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/symbol/d8aa55fbbc45562d781915a1c7930fc50b33d8bd29db7102b5c44cbfd8b54639.cairo" + }, + "parent_location": [ + { + "end_col": 12, + "end_line": 370, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "start_col": 6, + "start_line": 370 + }, + "While constructing the external wrapper for:" + ], + "start_col": 100, + "start_line": 1 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 61, + "start_line": 370 + }, + "While constructing the external wrapper for:" + ], + "start_col": 23, + "start_line": 1 + } + }, + "5135": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.symbol" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 12, + "end_line": 370, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "start_col": 6, + "start_line": 370 + } + }, + "5137": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.symbol" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 115, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/symbol/d8aa55fbbc45562d781915a1c7930fc50b33d8bd29db7102b5c44cbfd8b54639.cairo" + }, + "parent_location": [ + { + "end_col": 12, + "end_line": 370, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "parent_location": [ + { + "end_col": 95, + "end_line": 2, + "input_file": { + "filename": "autogen/starknet/external/symbol/d8aa55fbbc45562d781915a1c7930fc50b33d8bd29db7102b5c44cbfd8b54639.cairo" + }, + "parent_location": [ + { + "end_col": 12, + "end_line": 370, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "start_col": 6, + "start_line": 370 + }, + "While constructing the external wrapper for:" + ], + "start_col": 80, + "start_line": 2 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 6, + "start_line": 370 + }, + "While constructing the external wrapper for:" + ], + "start_col": 100, + "start_line": 1 + } + }, + "5138": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.symbol" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 96, + "end_line": 2, + "input_file": { + "filename": "autogen/starknet/external/symbol/d8aa55fbbc45562d781915a1c7930fc50b33d8bd29db7102b5c44cbfd8b54639.cairo" + }, + "parent_location": [ + { + "end_col": 12, + "end_line": 370, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "start_col": 6, + "start_line": 370 + }, + "While constructing the external wrapper for:" + ], + "start_col": 48, + "start_line": 2 + } + }, + "5140": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.symbol" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 55, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/symbol/d8aa55fbbc45562d781915a1c7930fc50b33d8bd29db7102b5c44cbfd8b54639.cairo" + }, + "parent_location": [ + { + "end_col": 12, + "end_line": 370, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "parent_location": [ + { + "end_col": 20, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/symbol/da17921a4e81c09e730800bbf23bfdbe5e9e6bfaedc59d80fbf62087fa43c27d.cairo" + }, + "parent_location": [ + { + "end_col": 12, + "end_line": 370, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "start_col": 6, + "start_line": 370 + }, + "While constructing the external wrapper for:" + ], + "start_col": 9, + "start_line": 1 + }, + "While expanding the reference 'syscall_ptr' in:" + ], + "start_col": 6, + "start_line": 370 + }, + "While constructing the external wrapper for:" + ], + "start_col": 44, + "start_line": 1 + } + }, + "5141": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.symbol" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 82, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/symbol/d8aa55fbbc45562d781915a1c7930fc50b33d8bd29db7102b5c44cbfd8b54639.cairo" + }, + "parent_location": [ + { + "end_col": 12, + "end_line": 370, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "parent_location": [ + { + "end_col": 33, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/symbol/da17921a4e81c09e730800bbf23bfdbe5e9e6bfaedc59d80fbf62087fa43c27d.cairo" + }, + "parent_location": [ + { + "end_col": 12, + "end_line": 370, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "start_col": 6, + "start_line": 370 + }, + "While constructing the external wrapper for:" + ], + "start_col": 21, + "start_line": 1 + }, + "While expanding the reference 'pedersen_ptr' in:" + ], + "start_col": 6, + "start_line": 370 + }, + "While constructing the external wrapper for:" + ], + "start_col": 70, + "start_line": 1 + } + }, + "5142": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.symbol" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 21, + "end_line": 2, + "input_file": { + "filename": "autogen/starknet/external/symbol/d8aa55fbbc45562d781915a1c7930fc50b33d8bd29db7102b5c44cbfd8b54639.cairo" + }, + "parent_location": [ + { + "end_col": 12, + "end_line": 370, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "parent_location": [ + { + "end_col": 49, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/symbol/da17921a4e81c09e730800bbf23bfdbe5e9e6bfaedc59d80fbf62087fa43c27d.cairo" + }, + "parent_location": [ + { + "end_col": 12, + "end_line": 370, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "start_col": 6, + "start_line": 370 + }, + "While constructing the external wrapper for:" + ], + "start_col": 34, + "start_line": 1 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 6, + "start_line": 370 + }, + "While constructing the external wrapper for:" + ], + "start_col": 6, + "start_line": 2 + } + }, + "5143": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.symbol" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 35, + "end_line": 2, + "input_file": { + "filename": "autogen/starknet/external/symbol/d8aa55fbbc45562d781915a1c7930fc50b33d8bd29db7102b5c44cbfd8b54639.cairo" + }, + "parent_location": [ + { + "end_col": 12, + "end_line": 370, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "parent_location": [ + { + "end_col": 62, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/symbol/da17921a4e81c09e730800bbf23bfdbe5e9e6bfaedc59d80fbf62087fa43c27d.cairo" + }, + "parent_location": [ + { + "end_col": 12, + "end_line": 370, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "start_col": 6, + "start_line": 370 + }, + "While constructing the external wrapper for:" + ], + "start_col": 50, + "start_line": 1 + }, + "While expanding the reference 'retdata_size' in:" + ], + "start_col": 6, + "start_line": 370 + }, + "While constructing the external wrapper for:" + ], + "start_col": 23, + "start_line": 2 + } + }, + "5144": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.symbol" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 44, + "end_line": 2, + "input_file": { + "filename": "autogen/starknet/external/symbol/d8aa55fbbc45562d781915a1c7930fc50b33d8bd29db7102b5c44cbfd8b54639.cairo" + }, + "parent_location": [ + { + "end_col": 12, + "end_line": 370, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "parent_location": [ + { + "end_col": 70, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/symbol/da17921a4e81c09e730800bbf23bfdbe5e9e6bfaedc59d80fbf62087fa43c27d.cairo" + }, + "parent_location": [ + { + "end_col": 12, + "end_line": 370, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "start_col": 6, + "start_line": 370 + }, + "While constructing the external wrapper for:" + ], + "start_col": 63, + "start_line": 1 + }, + "While expanding the reference 'retdata' in:" + ], + "start_col": 6, + "start_line": 370 + }, + "While constructing the external wrapper for:" + ], + "start_col": 37, + "start_line": 2 + } + }, + "5145": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.symbol" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 72, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/symbol/da17921a4e81c09e730800bbf23bfdbe5e9e6bfaedc59d80fbf62087fa43c27d.cairo" + }, + "parent_location": [ + { + "end_col": 12, + "end_line": 370, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "start_col": 6, + "start_line": 370 + }, + "While constructing the external wrapper for:" + ], + "start_col": 1, + "start_line": 1 + } + }, + "5146": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.setSymbol" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 34, + "end_line": 376, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "parent_location": [ + { + "end_col": 46, + "end_line": 40, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/access/ownable/library.cairo" + }, + "parent_location": [ + { + "end_col": 32, + "end_line": 377, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "start_col": 5, + "start_line": 377 + }, + "While trying to retrieve the implicit argument 'syscall_ptr' in:" + ], + "start_col": 28, + "start_line": 40 + }, + "While expanding the reference 'syscall_ptr' in:" + ], + "start_col": 16, + "start_line": 376 + } + }, + "5147": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.setSymbol" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 62, + "end_line": 376, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "parent_location": [ + { + "end_col": 74, + "end_line": 40, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/access/ownable/library.cairo" + }, + "parent_location": [ + { + "end_col": 32, + "end_line": 377, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "start_col": 5, + "start_line": 377 + }, + "While trying to retrieve the implicit argument 'pedersen_ptr' in:" + ], + "start_col": 48, + "start_line": 40 + }, + "While expanding the reference 'pedersen_ptr' in:" + ], + "start_col": 36, + "start_line": 376 + } + }, + "5148": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.setSymbol" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 79, + "end_line": 376, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "parent_location": [ + { + "end_col": 91, + "end_line": 40, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/access/ownable/library.cairo" + }, + "parent_location": [ + { + "end_col": 32, + "end_line": 377, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "start_col": 5, + "start_line": 377 + }, + "While trying to retrieve the implicit argument 'range_check_ptr' in:" + ], + "start_col": 76, + "start_line": 40 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 64, + "start_line": 376 + } + }, + "5149": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.setSymbol" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 32, + "end_line": 377, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "start_col": 5, + "start_line": 377 + } + }, + "5151": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.setSymbol" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 93, + "end_line": 376, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "parent_location": [ + { + "end_col": 31, + "end_line": 378, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "start_col": 25, + "start_line": 378 + }, + "While expanding the reference 'symbol' in:" + ], + "start_col": 81, + "start_line": 376 + } + }, + "5152": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.setSymbol" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 32, + "end_line": 378, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "start_col": 5, + "start_line": 378 + } + }, + "5154": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.setSymbol" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 15, + "end_line": 379, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "start_col": 5, + "start_line": 379 + } + }, + "5155": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.setSymbol" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 40, + "end_line": 2, + "input_file": { + "filename": "autogen/starknet/arg_processor/99058c0781745b3c0332799d723549974cbf489b623dde03906204304de60803.cairo" + }, + "parent_location": [ + { + "end_col": 93, + "end_line": 376, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "parent_location": [ + { + "end_col": 45, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/arg_processor/c31620b02d4d706f0542c989b2aadc01b0981d1f6a5933a8fe4937ace3d70d92.cairo" + }, + "parent_location": [ + { + "end_col": 15, + "end_line": 376, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "parent_location": [ + { + "end_col": 57, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/arg_processor/01cba52f8515996bb9d7070bde81ff39281d096d7024a558efcba6e1fd2402cf.cairo" + }, + "parent_location": [ + { + "end_col": 15, + "end_line": 376, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "start_col": 6, + "start_line": 376 + }, + "While handling calldata of" + ], + "start_col": 35, + "start_line": 1 + }, + "While expanding the reference '__calldata_actual_size' in:" + ], + "start_col": 6, + "start_line": 376 + }, + "While handling calldata of" + ], + "start_col": 31, + "start_line": 1 + }, + "While expanding the reference '__calldata_ptr' in:" + ], + "start_col": 81, + "start_line": 376 + }, + "While handling calldata argument 'symbol'" + ], + "start_col": 22, + "start_line": 2 + } + }, + "5157": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.setSymbol" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 58, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/arg_processor/01cba52f8515996bb9d7070bde81ff39281d096d7024a558efcba6e1fd2402cf.cairo" + }, + "parent_location": [ + { + "end_col": 15, + "end_line": 376, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "start_col": 6, + "start_line": 376 + }, + "While handling calldata of" + ], + "start_col": 1, + "start_line": 1 + } + }, + "5158": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.setSymbol" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 64, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/setSymbol/b2c52ca2d2a8fc8791a983086d8716c5eacd0c3d62934914d2286f84b98ff4cb.cairo" + }, + "parent_location": [ + { + "end_col": 34, + "end_line": 376, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "parent_location": [ + { + "end_col": 55, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/setSymbol/3c4c33a42220d05bff4a95649dc588c572ac2ba07f46c350bc8b16ee54c763af.cairo" + }, + "parent_location": [ + { + "end_col": 15, + "end_line": 376, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "start_col": 6, + "start_line": 376 + }, + "While constructing the external wrapper for:" + ], + "start_col": 44, + "start_line": 1 + }, + "While expanding the reference 'syscall_ptr' in:" + ], + "start_col": 16, + "start_line": 376 + }, + "While constructing the external wrapper for:" + ], + "start_col": 19, + "start_line": 1 + } + }, + "5159": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.setSymbol" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 110, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/setSymbol/9684a85e93c782014ca14293edea4eb2502039a5a7b6538ecd39c56faaf12529.cairo" + }, + "parent_location": [ + { + "end_col": 62, + "end_line": 376, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "parent_location": [ + { + "end_col": 82, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/setSymbol/3c4c33a42220d05bff4a95649dc588c572ac2ba07f46c350bc8b16ee54c763af.cairo" + }, + "parent_location": [ + { + "end_col": 15, + "end_line": 376, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "start_col": 6, + "start_line": 376 + }, + "While constructing the external wrapper for:" + ], + "start_col": 70, + "start_line": 1 + }, + "While expanding the reference 'pedersen_ptr' in:" + ], + "start_col": 36, + "start_line": 376 + }, + "While constructing the external wrapper for:" + ], + "start_col": 20, + "start_line": 1 + } + }, + "5160": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.setSymbol" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 67, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/setSymbol/741ea357d6336b0bed7bf0472425acd0311d543883b803388880e60a232040c7.cairo" + }, + "parent_location": [ + { + "end_col": 79, + "end_line": 376, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "parent_location": [ + { + "end_col": 115, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/setSymbol/3c4c33a42220d05bff4a95649dc588c572ac2ba07f46c350bc8b16ee54c763af.cairo" + }, + "parent_location": [ + { + "end_col": 15, + "end_line": 376, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "start_col": 6, + "start_line": 376 + }, + "While constructing the external wrapper for:" + ], + "start_col": 100, + "start_line": 1 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 64, + "start_line": 376 + }, + "While constructing the external wrapper for:" + ], + "start_col": 23, + "start_line": 1 + } + }, + "5161": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.setSymbol" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 45, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/arg_processor/99058c0781745b3c0332799d723549974cbf489b623dde03906204304de60803.cairo" + }, + "parent_location": [ + { + "end_col": 93, + "end_line": 376, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "parent_location": [ + { + "end_col": 145, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/setSymbol/3c4c33a42220d05bff4a95649dc588c572ac2ba07f46c350bc8b16ee54c763af.cairo" + }, + "parent_location": [ + { + "end_col": 15, + "end_line": 376, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "start_col": 6, + "start_line": 376 + }, + "While constructing the external wrapper for:" + ], + "start_col": 124, + "start_line": 1 + }, + "While expanding the reference '__calldata_arg_symbol' in:" + ], + "start_col": 81, + "start_line": 376 + }, + "While handling calldata argument 'symbol'" + ], + "start_col": 29, + "start_line": 1 + } + }, + "5162": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.setSymbol" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 15, + "end_line": 376, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "start_col": 6, + "start_line": 376 + } + }, + "5164": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.setSymbol" + ], + "flow_tracking_data": null, + "hints": [ + { + "location": { + "end_col": 34, + "end_line": 2, + "input_file": { + "filename": "autogen/starknet/external/setSymbol/3c4c33a42220d05bff4a95649dc588c572ac2ba07f46c350bc8b16ee54c763af.cairo" + }, + "parent_location": [ + { + "end_col": 15, + "end_line": 376, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "start_col": 6, + "start_line": 376 + }, + "While constructing the external wrapper for:" + ], + "start_col": 1, + "start_line": 2 + }, + "n_prefix_newlines": 0 + } + ], + "inst": { + "end_col": 24, + "end_line": 3, + "input_file": { + "filename": "autogen/starknet/external/setSymbol/3c4c33a42220d05bff4a95649dc588c572ac2ba07f46c350bc8b16ee54c763af.cairo" + }, + "parent_location": [ + { + "end_col": 15, + "end_line": 376, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "start_col": 6, + "start_line": 376 + }, + "While constructing the external wrapper for:" + ], + "start_col": 1, + "start_line": 3 + } + }, + "5166": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.setSymbol" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 55, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/setSymbol/3c4c33a42220d05bff4a95649dc588c572ac2ba07f46c350bc8b16ee54c763af.cairo" + }, + "parent_location": [ + { + "end_col": 15, + "end_line": 376, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "parent_location": [ + { + "end_col": 20, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/setSymbol/da17921a4e81c09e730800bbf23bfdbe5e9e6bfaedc59d80fbf62087fa43c27d.cairo" + }, + "parent_location": [ + { + "end_col": 15, + "end_line": 376, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "start_col": 6, + "start_line": 376 + }, + "While constructing the external wrapper for:" + ], + "start_col": 9, + "start_line": 1 + }, + "While expanding the reference 'syscall_ptr' in:" + ], + "start_col": 6, + "start_line": 376 + }, + "While constructing the external wrapper for:" + ], + "start_col": 44, + "start_line": 1 + } + }, + "5167": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.setSymbol" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 82, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/setSymbol/3c4c33a42220d05bff4a95649dc588c572ac2ba07f46c350bc8b16ee54c763af.cairo" + }, + "parent_location": [ + { + "end_col": 15, + "end_line": 376, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "parent_location": [ + { + "end_col": 33, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/setSymbol/da17921a4e81c09e730800bbf23bfdbe5e9e6bfaedc59d80fbf62087fa43c27d.cairo" + }, + "parent_location": [ + { + "end_col": 15, + "end_line": 376, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "start_col": 6, + "start_line": 376 + }, + "While constructing the external wrapper for:" + ], + "start_col": 21, + "start_line": 1 + }, + "While expanding the reference 'pedersen_ptr' in:" + ], + "start_col": 6, + "start_line": 376 + }, + "While constructing the external wrapper for:" + ], + "start_col": 70, + "start_line": 1 + } + }, + "5168": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.setSymbol" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 115, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/setSymbol/3c4c33a42220d05bff4a95649dc588c572ac2ba07f46c350bc8b16ee54c763af.cairo" + }, + "parent_location": [ + { + "end_col": 15, + "end_line": 376, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "parent_location": [ + { + "end_col": 49, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/setSymbol/da17921a4e81c09e730800bbf23bfdbe5e9e6bfaedc59d80fbf62087fa43c27d.cairo" + }, + "parent_location": [ + { + "end_col": 15, + "end_line": 376, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "start_col": 6, + "start_line": 376 + }, + "While constructing the external wrapper for:" + ], + "start_col": 34, + "start_line": 1 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 6, + "start_line": 376 + }, + "While constructing the external wrapper for:" + ], + "start_col": 100, + "start_line": 1 + } + }, + "5169": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.setSymbol" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 21, + "end_line": 4, + "input_file": { + "filename": "autogen/starknet/external/setSymbol/3c4c33a42220d05bff4a95649dc588c572ac2ba07f46c350bc8b16ee54c763af.cairo" + }, + "parent_location": [ + { + "end_col": 15, + "end_line": 376, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "parent_location": [ + { + "end_col": 62, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/setSymbol/da17921a4e81c09e730800bbf23bfdbe5e9e6bfaedc59d80fbf62087fa43c27d.cairo" + }, + "parent_location": [ + { + "end_col": 15, + "end_line": 376, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "start_col": 6, + "start_line": 376 + }, + "While constructing the external wrapper for:" + ], + "start_col": 50, + "start_line": 1 + }, + "While expanding the reference 'retdata_size' in:" + ], + "start_col": 6, + "start_line": 376 + }, + "While constructing the external wrapper for:" + ], + "start_col": 20, + "start_line": 4 + } + }, + "5171": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.setSymbol" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 16, + "end_line": 3, + "input_file": { + "filename": "autogen/starknet/external/setSymbol/3c4c33a42220d05bff4a95649dc588c572ac2ba07f46c350bc8b16ee54c763af.cairo" + }, + "parent_location": [ + { + "end_col": 15, + "end_line": 376, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "parent_location": [ + { + "end_col": 70, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/setSymbol/da17921a4e81c09e730800bbf23bfdbe5e9e6bfaedc59d80fbf62087fa43c27d.cairo" + }, + "parent_location": [ + { + "end_col": 15, + "end_line": 376, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "start_col": 6, + "start_line": 376 + }, + "While constructing the external wrapper for:" + ], + "start_col": 63, + "start_line": 1 + }, + "While expanding the reference 'retdata' in:" + ], + "start_col": 6, + "start_line": 376 + }, + "While constructing the external wrapper for:" + ], + "start_col": 9, + "start_line": 3 + } + }, + "5172": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.setSymbol" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 72, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/setSymbol/da17921a4e81c09e730800bbf23bfdbe5e9e6bfaedc59d80fbf62087fa43c27d.cairo" + }, + "parent_location": [ + { + "end_col": 15, + "end_line": 376, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "start_col": 6, + "start_line": 376 + }, + "While constructing the external wrapper for:" + ], + "start_col": 1, + "start_line": 1 + } + }, + "5173": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.openMint" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 33, + "end_line": 383, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "parent_location": [ + { + "end_col": 46, + "end_line": 40, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/access/ownable/library.cairo" + }, + "parent_location": [ + { + "end_col": 32, + "end_line": 384, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "start_col": 5, + "start_line": 384 + }, + "While trying to retrieve the implicit argument 'syscall_ptr' in:" + ], + "start_col": 28, + "start_line": 40 + }, + "While expanding the reference 'syscall_ptr' in:" + ], + "start_col": 15, + "start_line": 383 + } + }, + "5174": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.openMint" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 61, + "end_line": 383, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "parent_location": [ + { + "end_col": 74, + "end_line": 40, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/access/ownable/library.cairo" + }, + "parent_location": [ + { + "end_col": 32, + "end_line": 384, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "start_col": 5, + "start_line": 384 + }, + "While trying to retrieve the implicit argument 'pedersen_ptr' in:" + ], + "start_col": 48, + "start_line": 40 + }, + "While expanding the reference 'pedersen_ptr' in:" + ], + "start_col": 35, + "start_line": 383 + } + }, + "5175": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.openMint" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 78, + "end_line": 383, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "parent_location": [ + { + "end_col": 91, + "end_line": 40, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/access/ownable/library.cairo" + }, + "parent_location": [ + { + "end_col": 32, + "end_line": 384, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "start_col": 5, + "start_line": 384 + }, + "While trying to retrieve the implicit argument 'range_check_ptr' in:" + ], + "start_col": 76, + "start_line": 40 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 63, + "start_line": 383 + } + }, + "5176": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.openMint" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 32, + "end_line": 384, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "start_col": 5, + "start_line": 384 + } + }, + "5178": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.openMint" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 22, + "end_line": 385, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "start_col": 5, + "start_line": 385 + } + }, + "5180": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.openMint" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 15, + "end_line": 386, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "start_col": 5, + "start_line": 386 + } + }, + "5181": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.openMint" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 58, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/arg_processor/01cba52f8515996bb9d7070bde81ff39281d096d7024a558efcba6e1fd2402cf.cairo" + }, + "parent_location": [ + { + "end_col": 14, + "end_line": 383, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "start_col": 6, + "start_line": 383 + }, + "While handling calldata of" + ], + "start_col": 1, + "start_line": 1 + } + }, + "5182": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.openMint" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 64, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/openMint/b2c52ca2d2a8fc8791a983086d8716c5eacd0c3d62934914d2286f84b98ff4cb.cairo" + }, + "parent_location": [ + { + "end_col": 33, + "end_line": 383, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "parent_location": [ + { + "end_col": 55, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/openMint/8f83d060e7e088c358526f8859eb82973ba2c094c7d9223df6230b744dfa211c.cairo" + }, + "parent_location": [ + { + "end_col": 14, + "end_line": 383, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "start_col": 6, + "start_line": 383 + }, + "While constructing the external wrapper for:" + ], + "start_col": 44, + "start_line": 1 + }, + "While expanding the reference 'syscall_ptr' in:" + ], + "start_col": 15, + "start_line": 383 + }, + "While constructing the external wrapper for:" + ], + "start_col": 19, + "start_line": 1 + } + }, + "5183": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.openMint" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 110, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/openMint/9684a85e93c782014ca14293edea4eb2502039a5a7b6538ecd39c56faaf12529.cairo" + }, + "parent_location": [ + { + "end_col": 61, + "end_line": 383, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "parent_location": [ + { + "end_col": 82, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/openMint/8f83d060e7e088c358526f8859eb82973ba2c094c7d9223df6230b744dfa211c.cairo" + }, + "parent_location": [ + { + "end_col": 14, + "end_line": 383, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "start_col": 6, + "start_line": 383 + }, + "While constructing the external wrapper for:" + ], + "start_col": 70, + "start_line": 1 + }, + "While expanding the reference 'pedersen_ptr' in:" + ], + "start_col": 35, + "start_line": 383 + }, + "While constructing the external wrapper for:" + ], + "start_col": 20, + "start_line": 1 + } + }, + "5184": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.openMint" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 67, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/openMint/741ea357d6336b0bed7bf0472425acd0311d543883b803388880e60a232040c7.cairo" + }, + "parent_location": [ + { + "end_col": 78, + "end_line": 383, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "parent_location": [ + { + "end_col": 115, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/openMint/8f83d060e7e088c358526f8859eb82973ba2c094c7d9223df6230b744dfa211c.cairo" + }, + "parent_location": [ + { + "end_col": 14, + "end_line": 383, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "start_col": 6, + "start_line": 383 + }, + "While constructing the external wrapper for:" + ], + "start_col": 100, + "start_line": 1 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 63, + "start_line": 383 + }, + "While constructing the external wrapper for:" + ], + "start_col": 23, + "start_line": 1 + } + }, + "5185": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.openMint" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 14, + "end_line": 383, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "start_col": 6, + "start_line": 383 + } + }, + "5187": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.openMint" + ], + "flow_tracking_data": null, + "hints": [ + { + "location": { + "end_col": 34, + "end_line": 2, + "input_file": { + "filename": "autogen/starknet/external/openMint/8f83d060e7e088c358526f8859eb82973ba2c094c7d9223df6230b744dfa211c.cairo" + }, + "parent_location": [ + { + "end_col": 14, + "end_line": 383, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "start_col": 6, + "start_line": 383 + }, + "While constructing the external wrapper for:" + ], + "start_col": 1, + "start_line": 2 + }, + "n_prefix_newlines": 0 + } + ], + "inst": { + "end_col": 24, + "end_line": 3, + "input_file": { + "filename": "autogen/starknet/external/openMint/8f83d060e7e088c358526f8859eb82973ba2c094c7d9223df6230b744dfa211c.cairo" + }, + "parent_location": [ + { + "end_col": 14, + "end_line": 383, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "start_col": 6, + "start_line": 383 + }, + "While constructing the external wrapper for:" + ], + "start_col": 1, + "start_line": 3 + } + }, + "5189": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.openMint" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 55, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/openMint/8f83d060e7e088c358526f8859eb82973ba2c094c7d9223df6230b744dfa211c.cairo" + }, + "parent_location": [ + { + "end_col": 14, + "end_line": 383, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "parent_location": [ + { + "end_col": 20, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/openMint/da17921a4e81c09e730800bbf23bfdbe5e9e6bfaedc59d80fbf62087fa43c27d.cairo" + }, + "parent_location": [ + { + "end_col": 14, + "end_line": 383, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "start_col": 6, + "start_line": 383 + }, + "While constructing the external wrapper for:" + ], + "start_col": 9, + "start_line": 1 + }, + "While expanding the reference 'syscall_ptr' in:" + ], + "start_col": 6, + "start_line": 383 + }, + "While constructing the external wrapper for:" + ], + "start_col": 44, + "start_line": 1 + } + }, + "5190": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.openMint" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 82, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/openMint/8f83d060e7e088c358526f8859eb82973ba2c094c7d9223df6230b744dfa211c.cairo" + }, + "parent_location": [ + { + "end_col": 14, + "end_line": 383, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "parent_location": [ + { + "end_col": 33, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/openMint/da17921a4e81c09e730800bbf23bfdbe5e9e6bfaedc59d80fbf62087fa43c27d.cairo" + }, + "parent_location": [ + { + "end_col": 14, + "end_line": 383, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "start_col": 6, + "start_line": 383 + }, + "While constructing the external wrapper for:" + ], + "start_col": 21, + "start_line": 1 + }, + "While expanding the reference 'pedersen_ptr' in:" + ], + "start_col": 6, + "start_line": 383 + }, + "While constructing the external wrapper for:" + ], + "start_col": 70, + "start_line": 1 + } + }, + "5191": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.openMint" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 115, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/openMint/8f83d060e7e088c358526f8859eb82973ba2c094c7d9223df6230b744dfa211c.cairo" + }, + "parent_location": [ + { + "end_col": 14, + "end_line": 383, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "parent_location": [ + { + "end_col": 49, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/openMint/da17921a4e81c09e730800bbf23bfdbe5e9e6bfaedc59d80fbf62087fa43c27d.cairo" + }, + "parent_location": [ + { + "end_col": 14, + "end_line": 383, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "start_col": 6, + "start_line": 383 + }, + "While constructing the external wrapper for:" + ], + "start_col": 34, + "start_line": 1 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 6, + "start_line": 383 + }, + "While constructing the external wrapper for:" + ], + "start_col": 100, + "start_line": 1 + } + }, + "5192": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.openMint" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 21, + "end_line": 4, + "input_file": { + "filename": "autogen/starknet/external/openMint/8f83d060e7e088c358526f8859eb82973ba2c094c7d9223df6230b744dfa211c.cairo" + }, + "parent_location": [ + { + "end_col": 14, + "end_line": 383, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "parent_location": [ + { + "end_col": 62, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/openMint/da17921a4e81c09e730800bbf23bfdbe5e9e6bfaedc59d80fbf62087fa43c27d.cairo" + }, + "parent_location": [ + { + "end_col": 14, + "end_line": 383, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "start_col": 6, + "start_line": 383 + }, + "While constructing the external wrapper for:" + ], + "start_col": 50, + "start_line": 1 + }, + "While expanding the reference 'retdata_size' in:" + ], + "start_col": 6, + "start_line": 383 + }, + "While constructing the external wrapper for:" + ], + "start_col": 20, + "start_line": 4 + } + }, + "5194": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.openMint" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 16, + "end_line": 3, + "input_file": { + "filename": "autogen/starknet/external/openMint/8f83d060e7e088c358526f8859eb82973ba2c094c7d9223df6230b744dfa211c.cairo" + }, + "parent_location": [ + { + "end_col": 14, + "end_line": 383, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "parent_location": [ + { + "end_col": 70, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/openMint/da17921a4e81c09e730800bbf23bfdbe5e9e6bfaedc59d80fbf62087fa43c27d.cairo" + }, + "parent_location": [ + { + "end_col": 14, + "end_line": 383, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "start_col": 6, + "start_line": 383 + }, + "While constructing the external wrapper for:" + ], + "start_col": 63, + "start_line": 1 + }, + "While expanding the reference 'retdata' in:" + ], + "start_col": 6, + "start_line": 383 + }, + "While constructing the external wrapper for:" + ], + "start_col": 9, + "start_line": 3 + } + }, + "5195": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.openMint" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 72, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/openMint/da17921a4e81c09e730800bbf23bfdbe5e9e6bfaedc59d80fbf62087fa43c27d.cairo" + }, + "parent_location": [ + { + "end_col": 14, + "end_line": 383, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "start_col": 6, + "start_line": 383 + }, + "While constructing the external wrapper for:" + ], + "start_col": 1, + "start_line": 1 + } + }, + "5196": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.closeMint" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 34, + "end_line": 390, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "parent_location": [ + { + "end_col": 46, + "end_line": 40, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/access/ownable/library.cairo" + }, + "parent_location": [ + { + "end_col": 32, + "end_line": 391, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "start_col": 5, + "start_line": 391 + }, + "While trying to retrieve the implicit argument 'syscall_ptr' in:" + ], + "start_col": 28, + "start_line": 40 + }, + "While expanding the reference 'syscall_ptr' in:" + ], + "start_col": 16, + "start_line": 390 + } + }, + "5197": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.closeMint" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 62, + "end_line": 390, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "parent_location": [ + { + "end_col": 74, + "end_line": 40, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/access/ownable/library.cairo" + }, + "parent_location": [ + { + "end_col": 32, + "end_line": 391, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "start_col": 5, + "start_line": 391 + }, + "While trying to retrieve the implicit argument 'pedersen_ptr' in:" + ], + "start_col": 48, + "start_line": 40 + }, + "While expanding the reference 'pedersen_ptr' in:" + ], + "start_col": 36, + "start_line": 390 + } + }, + "5198": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.closeMint" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 79, + "end_line": 390, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "parent_location": [ + { + "end_col": 91, + "end_line": 40, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/access/ownable/library.cairo" + }, + "parent_location": [ + { + "end_col": 32, + "end_line": 391, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "start_col": 5, + "start_line": 391 + }, + "While trying to retrieve the implicit argument 'range_check_ptr' in:" + ], + "start_col": 76, + "start_line": 40 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 64, + "start_line": 390 + } + }, + "5199": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.closeMint" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 32, + "end_line": 391, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "start_col": 5, + "start_line": 391 + } + }, + "5201": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.closeMint" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 23, + "end_line": 392, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "start_col": 5, + "start_line": 392 + } + }, + "5203": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.closeMint" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 15, + "end_line": 393, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "start_col": 5, + "start_line": 393 + } + }, + "5204": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.closeMint" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 58, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/arg_processor/01cba52f8515996bb9d7070bde81ff39281d096d7024a558efcba6e1fd2402cf.cairo" + }, + "parent_location": [ + { + "end_col": 15, + "end_line": 390, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "start_col": 6, + "start_line": 390 + }, + "While handling calldata of" + ], + "start_col": 1, + "start_line": 1 + } + }, + "5205": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.closeMint" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 64, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/closeMint/b2c52ca2d2a8fc8791a983086d8716c5eacd0c3d62934914d2286f84b98ff4cb.cairo" + }, + "parent_location": [ + { + "end_col": 34, + "end_line": 390, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "parent_location": [ + { + "end_col": 55, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/closeMint/8f83d060e7e088c358526f8859eb82973ba2c094c7d9223df6230b744dfa211c.cairo" + }, + "parent_location": [ + { + "end_col": 15, + "end_line": 390, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "start_col": 6, + "start_line": 390 + }, + "While constructing the external wrapper for:" + ], + "start_col": 44, + "start_line": 1 + }, + "While expanding the reference 'syscall_ptr' in:" + ], + "start_col": 16, + "start_line": 390 + }, + "While constructing the external wrapper for:" + ], + "start_col": 19, + "start_line": 1 + } + }, + "5206": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.closeMint" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 110, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/closeMint/9684a85e93c782014ca14293edea4eb2502039a5a7b6538ecd39c56faaf12529.cairo" + }, + "parent_location": [ + { + "end_col": 62, + "end_line": 390, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "parent_location": [ + { + "end_col": 82, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/closeMint/8f83d060e7e088c358526f8859eb82973ba2c094c7d9223df6230b744dfa211c.cairo" + }, + "parent_location": [ + { + "end_col": 15, + "end_line": 390, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "start_col": 6, + "start_line": 390 + }, + "While constructing the external wrapper for:" + ], + "start_col": 70, + "start_line": 1 + }, + "While expanding the reference 'pedersen_ptr' in:" + ], + "start_col": 36, + "start_line": 390 + }, + "While constructing the external wrapper for:" + ], + "start_col": 20, + "start_line": 1 + } + }, + "5207": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.closeMint" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 67, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/closeMint/741ea357d6336b0bed7bf0472425acd0311d543883b803388880e60a232040c7.cairo" + }, + "parent_location": [ + { + "end_col": 79, + "end_line": 390, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "parent_location": [ + { + "end_col": 115, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/closeMint/8f83d060e7e088c358526f8859eb82973ba2c094c7d9223df6230b744dfa211c.cairo" + }, + "parent_location": [ + { + "end_col": 15, + "end_line": 390, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "start_col": 6, + "start_line": 390 + }, + "While constructing the external wrapper for:" + ], + "start_col": 100, + "start_line": 1 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 64, + "start_line": 390 + }, + "While constructing the external wrapper for:" + ], + "start_col": 23, + "start_line": 1 + } + }, + "5208": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.closeMint" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 15, + "end_line": 390, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "start_col": 6, + "start_line": 390 + } + }, + "5210": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.closeMint" + ], + "flow_tracking_data": null, + "hints": [ + { + "location": { + "end_col": 34, + "end_line": 2, + "input_file": { + "filename": "autogen/starknet/external/closeMint/8f83d060e7e088c358526f8859eb82973ba2c094c7d9223df6230b744dfa211c.cairo" + }, + "parent_location": [ + { + "end_col": 15, + "end_line": 390, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "start_col": 6, + "start_line": 390 + }, + "While constructing the external wrapper for:" + ], + "start_col": 1, + "start_line": 2 + }, + "n_prefix_newlines": 0 + } + ], + "inst": { + "end_col": 24, + "end_line": 3, + "input_file": { + "filename": "autogen/starknet/external/closeMint/8f83d060e7e088c358526f8859eb82973ba2c094c7d9223df6230b744dfa211c.cairo" + }, + "parent_location": [ + { + "end_col": 15, + "end_line": 390, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "start_col": 6, + "start_line": 390 + }, + "While constructing the external wrapper for:" + ], + "start_col": 1, + "start_line": 3 + } + }, + "5212": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.closeMint" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 55, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/closeMint/8f83d060e7e088c358526f8859eb82973ba2c094c7d9223df6230b744dfa211c.cairo" + }, + "parent_location": [ + { + "end_col": 15, + "end_line": 390, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "parent_location": [ + { + "end_col": 20, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/closeMint/da17921a4e81c09e730800bbf23bfdbe5e9e6bfaedc59d80fbf62087fa43c27d.cairo" + }, + "parent_location": [ + { + "end_col": 15, + "end_line": 390, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "start_col": 6, + "start_line": 390 + }, + "While constructing the external wrapper for:" + ], + "start_col": 9, + "start_line": 1 + }, + "While expanding the reference 'syscall_ptr' in:" + ], + "start_col": 6, + "start_line": 390 + }, + "While constructing the external wrapper for:" + ], + "start_col": 44, + "start_line": 1 + } + }, + "5213": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.closeMint" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 82, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/closeMint/8f83d060e7e088c358526f8859eb82973ba2c094c7d9223df6230b744dfa211c.cairo" + }, + "parent_location": [ + { + "end_col": 15, + "end_line": 390, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "parent_location": [ + { + "end_col": 33, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/closeMint/da17921a4e81c09e730800bbf23bfdbe5e9e6bfaedc59d80fbf62087fa43c27d.cairo" + }, + "parent_location": [ + { + "end_col": 15, + "end_line": 390, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "start_col": 6, + "start_line": 390 + }, + "While constructing the external wrapper for:" + ], + "start_col": 21, + "start_line": 1 + }, + "While expanding the reference 'pedersen_ptr' in:" + ], + "start_col": 6, + "start_line": 390 + }, + "While constructing the external wrapper for:" + ], + "start_col": 70, + "start_line": 1 + } + }, + "5214": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.closeMint" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 115, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/closeMint/8f83d060e7e088c358526f8859eb82973ba2c094c7d9223df6230b744dfa211c.cairo" + }, + "parent_location": [ + { + "end_col": 15, + "end_line": 390, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "parent_location": [ + { + "end_col": 49, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/closeMint/da17921a4e81c09e730800bbf23bfdbe5e9e6bfaedc59d80fbf62087fa43c27d.cairo" + }, + "parent_location": [ + { + "end_col": 15, + "end_line": 390, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "start_col": 6, + "start_line": 390 + }, + "While constructing the external wrapper for:" + ], + "start_col": 34, + "start_line": 1 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 6, + "start_line": 390 + }, + "While constructing the external wrapper for:" + ], + "start_col": 100, + "start_line": 1 + } + }, + "5215": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.closeMint" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 21, + "end_line": 4, + "input_file": { + "filename": "autogen/starknet/external/closeMint/8f83d060e7e088c358526f8859eb82973ba2c094c7d9223df6230b744dfa211c.cairo" + }, + "parent_location": [ + { + "end_col": 15, + "end_line": 390, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "parent_location": [ + { + "end_col": 62, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/closeMint/da17921a4e81c09e730800bbf23bfdbe5e9e6bfaedc59d80fbf62087fa43c27d.cairo" + }, + "parent_location": [ + { + "end_col": 15, + "end_line": 390, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "start_col": 6, + "start_line": 390 + }, + "While constructing the external wrapper for:" + ], + "start_col": 50, + "start_line": 1 + }, + "While expanding the reference 'retdata_size' in:" + ], + "start_col": 6, + "start_line": 390 + }, + "While constructing the external wrapper for:" + ], + "start_col": 20, + "start_line": 4 + } + }, + "5217": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.closeMint" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 16, + "end_line": 3, + "input_file": { + "filename": "autogen/starknet/external/closeMint/8f83d060e7e088c358526f8859eb82973ba2c094c7d9223df6230b744dfa211c.cairo" + }, + "parent_location": [ + { + "end_col": 15, + "end_line": 390, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "parent_location": [ + { + "end_col": 70, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/closeMint/da17921a4e81c09e730800bbf23bfdbe5e9e6bfaedc59d80fbf62087fa43c27d.cairo" + }, + "parent_location": [ + { + "end_col": 15, + "end_line": 390, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "start_col": 6, + "start_line": 390 + }, + "While constructing the external wrapper for:" + ], + "start_col": 63, + "start_line": 1 + }, + "While expanding the reference 'retdata' in:" + ], + "start_col": 6, + "start_line": 390 + }, + "While constructing the external wrapper for:" + ], + "start_col": 9, + "start_line": 3 + } + }, + "5218": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.closeMint" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 72, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/closeMint/da17921a4e81c09e730800bbf23bfdbe5e9e6bfaedc59d80fbf62087fa43c27d.cairo" + }, + "parent_location": [ + { + "end_col": 15, + "end_line": 390, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "start_col": 6, + "start_line": 390 + }, + "While constructing the external wrapper for:" + ], + "start_col": 1, + "start_line": 1 + } + }, + "5219": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.balanceOf" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 34, + "end_line": 397, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "parent_location": [ + { + "end_col": 39, + "end_line": 100, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "parent_location": [ + { + "end_col": 54, + "end_line": 400, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "start_col": 30, + "start_line": 400 + }, + "While trying to retrieve the implicit argument 'syscall_ptr' in:" + ], + "start_col": 21, + "start_line": 100 + }, + "While expanding the reference 'syscall_ptr' in:" + ], + "start_col": 16, + "start_line": 397 + } + }, + "5220": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.balanceOf" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 62, + "end_line": 397, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "parent_location": [ + { + "end_col": 67, + "end_line": 100, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "parent_location": [ + { + "end_col": 54, + "end_line": 400, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "start_col": 30, + "start_line": 400 + }, + "While trying to retrieve the implicit argument 'pedersen_ptr' in:" + ], + "start_col": 41, + "start_line": 100 + }, + "While expanding the reference 'pedersen_ptr' in:" + ], + "start_col": 36, + "start_line": 397 + } + }, + "5221": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.balanceOf" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 79, + "end_line": 397, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "parent_location": [ + { + "end_col": 84, + "end_line": 100, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "parent_location": [ + { + "end_col": 54, + "end_line": 400, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "start_col": 30, + "start_line": 400 + }, + "While trying to retrieve the implicit argument 'range_check_ptr' in:" + ], + "start_col": 69, + "start_line": 100 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 64, + "start_line": 397 + } + }, + "5222": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.balanceOf" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 92, + "end_line": 397, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "parent_location": [ + { + "end_col": 53, + "end_line": 400, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "start_col": 48, + "start_line": 400 + }, + "While expanding the reference 'owner' in:" + ], + "start_col": 81, + "start_line": 397 + } + }, + "5223": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.balanceOf" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 54, + "end_line": 400, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "start_col": 30, + "start_line": 400 + } + }, + "5225": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.balanceOf" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 23, + "end_line": 401, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "start_col": 5, + "start_line": 401 + } + }, + "5226": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.balanceOf_encode_return" + ], + "flow_tracking_data": null, + "hints": [ + { + "location": { + "end_col": 38, + "end_line": 3, + "input_file": { + "filename": "autogen/starknet/external/return/balanceOf/6be46755be2f937558932379e9c42b1ab153e2ba499cd66beb178511b2106ad9.cairo" + }, + "parent_location": [ + { + "end_col": 15, + "end_line": 397, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "start_col": 6, + "start_line": 397 + }, + "While handling return value of" + ], + "start_col": 5, + "start_line": 3 + }, + "n_prefix_newlines": 0 + } + ], + "inst": { + "end_col": 18, + "end_line": 4, + "input_file": { + "filename": "autogen/starknet/external/return/balanceOf/6be46755be2f937558932379e9c42b1ab153e2ba499cd66beb178511b2106ad9.cairo" + }, + "parent_location": [ + { + "end_col": 15, + "end_line": 397, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "start_col": 6, + "start_line": 397 + }, + "While handling return value of" + ], + "start_col": 5, + "start_line": 4 + } + }, + "5228": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.balanceOf_encode_return" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 60, + "end_line": 3, + "input_file": { + "filename": "autogen/starknet/arg_processor/f013cc89754bf613d36aa163a5014b518987d20a85394ebbe3c47c5cdb0a38b1.cairo" + }, + "parent_location": [ + { + "end_col": 21, + "end_line": 398, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "start_col": 5, + "start_line": 398 + }, + "While handling return value 'balance'" + ], + "start_col": 1, + "start_line": 3 + } + }, + "5229": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.balanceOf_encode_return" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 60, + "end_line": 4, + "input_file": { + "filename": "autogen/starknet/arg_processor/f013cc89754bf613d36aa163a5014b518987d20a85394ebbe3c47c5cdb0a38b1.cairo" + }, + "parent_location": [ + { + "end_col": 21, + "end_line": 398, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "start_col": 5, + "start_line": 398 + }, + "While handling return value 'balance'" + ], + "start_col": 1, + "start_line": 4 + } + }, + "5230": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.balanceOf_encode_return" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 48, + "end_line": 5, + "input_file": { + "filename": "autogen/starknet/arg_processor/f013cc89754bf613d36aa163a5014b518987d20a85394ebbe3c47c5cdb0a38b1.cairo" + }, + "parent_location": [ + { + "end_col": 21, + "end_line": 398, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "parent_location": [ + { + "end_col": 36, + "end_line": 11, + "input_file": { + "filename": "autogen/starknet/external/return/balanceOf/6be46755be2f937558932379e9c42b1ab153e2ba499cd66beb178511b2106ad9.cairo" + }, + "parent_location": [ + { + "end_col": 15, + "end_line": 397, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "start_col": 6, + "start_line": 397 + }, + "While handling return value of" + ], + "start_col": 18, + "start_line": 11 + }, + "While expanding the reference '__return_value_ptr' in:" + ], + "start_col": 5, + "start_line": 398 + }, + "While handling return value 'balance'" + ], + "start_col": 26, + "start_line": 5 + } + }, + "5232": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.balanceOf_encode_return" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 107, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/return/balanceOf/6be46755be2f937558932379e9c42b1ab153e2ba499cd66beb178511b2106ad9.cairo" + }, + "parent_location": [ + { + "end_col": 15, + "end_line": 397, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "parent_location": [ + { + "end_col": 40, + "end_line": 10, + "input_file": { + "filename": "autogen/starknet/external/return/balanceOf/6be46755be2f937558932379e9c42b1ab153e2ba499cd66beb178511b2106ad9.cairo" + }, + "parent_location": [ + { + "end_col": 15, + "end_line": 397, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "start_col": 6, + "start_line": 397 + }, + "While handling return value of" + ], + "start_col": 25, + "start_line": 10 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 6, + "start_line": 397 + }, + "While handling return value of" + ], + "start_col": 92, + "start_line": 1 + } + }, + "5233": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.balanceOf_encode_return" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 63, + "end_line": 11, + "input_file": { + "filename": "autogen/starknet/external/return/balanceOf/6be46755be2f937558932379e9c42b1ab153e2ba499cd66beb178511b2106ad9.cairo" + }, + "parent_location": [ + { + "end_col": 15, + "end_line": 397, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "start_col": 6, + "start_line": 397 + }, + "While handling return value of" + ], + "start_col": 18, + "start_line": 11 + } + }, + "5234": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.balanceOf_encode_return" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 35, + "end_line": 5, + "input_file": { + "filename": "autogen/starknet/external/return/balanceOf/6be46755be2f937558932379e9c42b1ab153e2ba499cd66beb178511b2106ad9.cairo" + }, + "parent_location": [ + { + "end_col": 15, + "end_line": 397, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "parent_location": [ + { + "end_col": 38, + "end_line": 12, + "input_file": { + "filename": "autogen/starknet/external/return/balanceOf/6be46755be2f937558932379e9c42b1ab153e2ba499cd66beb178511b2106ad9.cairo" + }, + "parent_location": [ + { + "end_col": 15, + "end_line": 397, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "start_col": 6, + "start_line": 397 + }, + "While handling return value of" + ], + "start_col": 14, + "start_line": 12 + }, + "While expanding the reference '__return_value_ptr_start' in:" + ], + "start_col": 6, + "start_line": 397 + }, + "While handling return value of" + ], + "start_col": 11, + "start_line": 5 + } + }, + "5235": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.balanceOf_encode_return" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 40, + "end_line": 12, + "input_file": { + "filename": "autogen/starknet/external/return/balanceOf/6be46755be2f937558932379e9c42b1ab153e2ba499cd66beb178511b2106ad9.cairo" + }, + "parent_location": [ + { + "end_col": 15, + "end_line": 397, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "start_col": 6, + "start_line": 397 + }, + "While handling return value of" + ], + "start_col": 5, + "start_line": 9 + } + }, + "5236": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.balanceOf" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 40, + "end_line": 2, + "input_file": { + "filename": "autogen/starknet/arg_processor/f6a4d9ae897caf37cefd18f7c8da7eee73157818279359aadee282f0fe59cdbc.cairo" + }, + "parent_location": [ + { + "end_col": 92, + "end_line": 397, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "parent_location": [ + { + "end_col": 45, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/arg_processor/c31620b02d4d706f0542c989b2aadc01b0981d1f6a5933a8fe4937ace3d70d92.cairo" + }, + "parent_location": [ + { + "end_col": 15, + "end_line": 397, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "parent_location": [ + { + "end_col": 57, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/arg_processor/01cba52f8515996bb9d7070bde81ff39281d096d7024a558efcba6e1fd2402cf.cairo" + }, + "parent_location": [ + { + "end_col": 15, + "end_line": 397, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "start_col": 6, + "start_line": 397 + }, + "While handling calldata of" + ], + "start_col": 35, + "start_line": 1 + }, + "While expanding the reference '__calldata_actual_size' in:" + ], + "start_col": 6, + "start_line": 397 + }, + "While handling calldata of" + ], + "start_col": 31, + "start_line": 1 + }, + "While expanding the reference '__calldata_ptr' in:" + ], + "start_col": 81, + "start_line": 397 + }, + "While handling calldata argument 'owner'" + ], + "start_col": 22, + "start_line": 2 + } + }, + "5238": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.balanceOf" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 58, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/arg_processor/01cba52f8515996bb9d7070bde81ff39281d096d7024a558efcba6e1fd2402cf.cairo" + }, + "parent_location": [ + { + "end_col": 15, + "end_line": 397, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "start_col": 6, + "start_line": 397 + }, + "While handling calldata of" + ], + "start_col": 1, + "start_line": 1 + } + }, + "5239": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.balanceOf" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 64, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/balanceOf/b2c52ca2d2a8fc8791a983086d8716c5eacd0c3d62934914d2286f84b98ff4cb.cairo" + }, + "parent_location": [ + { + "end_col": 34, + "end_line": 397, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "parent_location": [ + { + "end_col": 55, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/balanceOf/e284e4e5d868a363d8b6a6cb098d9657778060e55c5be38c8c67b1857b1926cc.cairo" + }, + "parent_location": [ + { + "end_col": 15, + "end_line": 397, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "start_col": 6, + "start_line": 397 + }, + "While constructing the external wrapper for:" + ], + "start_col": 44, + "start_line": 1 + }, + "While expanding the reference 'syscall_ptr' in:" + ], + "start_col": 16, + "start_line": 397 + }, + "While constructing the external wrapper for:" + ], + "start_col": 19, + "start_line": 1 + } + }, + "5240": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.balanceOf" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 110, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/balanceOf/9684a85e93c782014ca14293edea4eb2502039a5a7b6538ecd39c56faaf12529.cairo" + }, + "parent_location": [ + { + "end_col": 62, + "end_line": 397, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "parent_location": [ + { + "end_col": 82, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/balanceOf/e284e4e5d868a363d8b6a6cb098d9657778060e55c5be38c8c67b1857b1926cc.cairo" + }, + "parent_location": [ + { + "end_col": 15, + "end_line": 397, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "start_col": 6, + "start_line": 397 + }, + "While constructing the external wrapper for:" + ], + "start_col": 70, + "start_line": 1 + }, + "While expanding the reference 'pedersen_ptr' in:" + ], + "start_col": 36, + "start_line": 397 + }, + "While constructing the external wrapper for:" + ], + "start_col": 20, + "start_line": 1 + } + }, + "5241": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.balanceOf" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 67, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/balanceOf/741ea357d6336b0bed7bf0472425acd0311d543883b803388880e60a232040c7.cairo" + }, + "parent_location": [ + { + "end_col": 79, + "end_line": 397, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "parent_location": [ + { + "end_col": 115, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/balanceOf/e284e4e5d868a363d8b6a6cb098d9657778060e55c5be38c8c67b1857b1926cc.cairo" + }, + "parent_location": [ + { + "end_col": 15, + "end_line": 397, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "start_col": 6, + "start_line": 397 + }, + "While constructing the external wrapper for:" + ], + "start_col": 100, + "start_line": 1 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 64, + "start_line": 397 + }, + "While constructing the external wrapper for:" + ], + "start_col": 23, + "start_line": 1 + } + }, + "5242": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.balanceOf" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 44, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/arg_processor/f6a4d9ae897caf37cefd18f7c8da7eee73157818279359aadee282f0fe59cdbc.cairo" + }, + "parent_location": [ + { + "end_col": 92, + "end_line": 397, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "parent_location": [ + { + "end_col": 143, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/balanceOf/e284e4e5d868a363d8b6a6cb098d9657778060e55c5be38c8c67b1857b1926cc.cairo" + }, + "parent_location": [ + { + "end_col": 15, + "end_line": 397, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "start_col": 6, + "start_line": 397 + }, + "While constructing the external wrapper for:" + ], + "start_col": 123, + "start_line": 1 + }, + "While expanding the reference '__calldata_arg_owner' in:" + ], + "start_col": 81, + "start_line": 397 + }, + "While handling calldata argument 'owner'" + ], + "start_col": 28, + "start_line": 1 + } + }, + "5243": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.balanceOf" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 15, + "end_line": 397, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "start_col": 6, + "start_line": 397 + } + }, + "5245": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.balanceOf" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 115, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/balanceOf/e284e4e5d868a363d8b6a6cb098d9657778060e55c5be38c8c67b1857b1926cc.cairo" + }, + "parent_location": [ + { + "end_col": 15, + "end_line": 397, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "parent_location": [ + { + "end_col": 98, + "end_line": 2, + "input_file": { + "filename": "autogen/starknet/external/balanceOf/e284e4e5d868a363d8b6a6cb098d9657778060e55c5be38c8c67b1857b1926cc.cairo" + }, + "parent_location": [ + { + "end_col": 15, + "end_line": 397, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "start_col": 6, + "start_line": 397 + }, + "While constructing the external wrapper for:" + ], + "start_col": 83, + "start_line": 2 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 6, + "start_line": 397 + }, + "While constructing the external wrapper for:" + ], + "start_col": 100, + "start_line": 1 + } + }, + "5246": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.balanceOf" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 99, + "end_line": 2, + "input_file": { + "filename": "autogen/starknet/external/balanceOf/e284e4e5d868a363d8b6a6cb098d9657778060e55c5be38c8c67b1857b1926cc.cairo" + }, + "parent_location": [ + { + "end_col": 15, + "end_line": 397, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "start_col": 6, + "start_line": 397 + }, + "While constructing the external wrapper for:" + ], + "start_col": 48, + "start_line": 2 + } + }, + "5248": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.balanceOf" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 55, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/balanceOf/e284e4e5d868a363d8b6a6cb098d9657778060e55c5be38c8c67b1857b1926cc.cairo" + }, + "parent_location": [ + { + "end_col": 15, + "end_line": 397, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "parent_location": [ + { + "end_col": 20, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/balanceOf/da17921a4e81c09e730800bbf23bfdbe5e9e6bfaedc59d80fbf62087fa43c27d.cairo" + }, + "parent_location": [ + { + "end_col": 15, + "end_line": 397, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "start_col": 6, + "start_line": 397 + }, + "While constructing the external wrapper for:" + ], + "start_col": 9, + "start_line": 1 + }, + "While expanding the reference 'syscall_ptr' in:" + ], + "start_col": 6, + "start_line": 397 + }, + "While constructing the external wrapper for:" + ], + "start_col": 44, + "start_line": 1 + } + }, + "5249": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.balanceOf" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 82, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/balanceOf/e284e4e5d868a363d8b6a6cb098d9657778060e55c5be38c8c67b1857b1926cc.cairo" + }, + "parent_location": [ + { + "end_col": 15, + "end_line": 397, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "parent_location": [ + { + "end_col": 33, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/balanceOf/da17921a4e81c09e730800bbf23bfdbe5e9e6bfaedc59d80fbf62087fa43c27d.cairo" + }, + "parent_location": [ + { + "end_col": 15, + "end_line": 397, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "start_col": 6, + "start_line": 397 + }, + "While constructing the external wrapper for:" + ], + "start_col": 21, + "start_line": 1 + }, + "While expanding the reference 'pedersen_ptr' in:" + ], + "start_col": 6, + "start_line": 397 + }, + "While constructing the external wrapper for:" + ], + "start_col": 70, + "start_line": 1 + } + }, + "5250": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.balanceOf" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 21, + "end_line": 2, + "input_file": { + "filename": "autogen/starknet/external/balanceOf/e284e4e5d868a363d8b6a6cb098d9657778060e55c5be38c8c67b1857b1926cc.cairo" + }, + "parent_location": [ + { + "end_col": 15, + "end_line": 397, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "parent_location": [ + { + "end_col": 49, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/balanceOf/da17921a4e81c09e730800bbf23bfdbe5e9e6bfaedc59d80fbf62087fa43c27d.cairo" + }, + "parent_location": [ + { + "end_col": 15, + "end_line": 397, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "start_col": 6, + "start_line": 397 + }, + "While constructing the external wrapper for:" + ], + "start_col": 34, + "start_line": 1 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 6, + "start_line": 397 + }, + "While constructing the external wrapper for:" + ], + "start_col": 6, + "start_line": 2 + } + }, + "5251": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.balanceOf" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 35, + "end_line": 2, + "input_file": { + "filename": "autogen/starknet/external/balanceOf/e284e4e5d868a363d8b6a6cb098d9657778060e55c5be38c8c67b1857b1926cc.cairo" + }, + "parent_location": [ + { + "end_col": 15, + "end_line": 397, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "parent_location": [ + { + "end_col": 62, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/balanceOf/da17921a4e81c09e730800bbf23bfdbe5e9e6bfaedc59d80fbf62087fa43c27d.cairo" + }, + "parent_location": [ + { + "end_col": 15, + "end_line": 397, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "start_col": 6, + "start_line": 397 + }, + "While constructing the external wrapper for:" + ], + "start_col": 50, + "start_line": 1 + }, + "While expanding the reference 'retdata_size' in:" + ], + "start_col": 6, + "start_line": 397 + }, + "While constructing the external wrapper for:" + ], + "start_col": 23, + "start_line": 2 + } + }, + "5252": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.balanceOf" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 44, + "end_line": 2, + "input_file": { + "filename": "autogen/starknet/external/balanceOf/e284e4e5d868a363d8b6a6cb098d9657778060e55c5be38c8c67b1857b1926cc.cairo" + }, + "parent_location": [ + { + "end_col": 15, + "end_line": 397, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "parent_location": [ + { + "end_col": 70, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/balanceOf/da17921a4e81c09e730800bbf23bfdbe5e9e6bfaedc59d80fbf62087fa43c27d.cairo" + }, + "parent_location": [ + { + "end_col": 15, + "end_line": 397, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "start_col": 6, + "start_line": 397 + }, + "While constructing the external wrapper for:" + ], + "start_col": 63, + "start_line": 1 + }, + "While expanding the reference 'retdata' in:" + ], + "start_col": 6, + "start_line": 397 + }, + "While constructing the external wrapper for:" + ], + "start_col": 37, + "start_line": 2 + } + }, + "5253": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.balanceOf" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 72, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/balanceOf/da17921a4e81c09e730800bbf23bfdbe5e9e6bfaedc59d80fbf62087fa43c27d.cairo" + }, + "parent_location": [ + { + "end_col": 15, + "end_line": 397, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "start_col": 6, + "start_line": 397 + }, + "While constructing the external wrapper for:" + ], + "start_col": 1, + "start_line": 1 + } + }, + "5254": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.ownerOf" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 32, + "end_line": 405, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "parent_location": [ + { + "end_col": 37, + "end_line": 109, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "parent_location": [ + { + "end_col": 49, + "end_line": 408, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "start_col": 25, + "start_line": 408 + }, + "While trying to retrieve the implicit argument 'syscall_ptr' in:" + ], + "start_col": 19, + "start_line": 109 + }, + "While expanding the reference 'syscall_ptr' in:" + ], + "start_col": 14, + "start_line": 405 + } + }, + "5255": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.ownerOf" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 60, + "end_line": 405, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "parent_location": [ + { + "end_col": 65, + "end_line": 109, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "parent_location": [ + { + "end_col": 49, + "end_line": 408, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "start_col": 25, + "start_line": 408 + }, + "While trying to retrieve the implicit argument 'pedersen_ptr' in:" + ], + "start_col": 39, + "start_line": 109 + }, + "While expanding the reference 'pedersen_ptr' in:" + ], + "start_col": 34, + "start_line": 405 + } + }, + "5256": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.ownerOf" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 77, + "end_line": 405, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "parent_location": [ + { + "end_col": 82, + "end_line": 109, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "parent_location": [ + { + "end_col": 49, + "end_line": 408, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "start_col": 25, + "start_line": 408 + }, + "While trying to retrieve the implicit argument 'range_check_ptr' in:" + ], + "start_col": 67, + "start_line": 109 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 62, + "start_line": 405 + } + }, + "5257": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.ownerOf" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 95, + "end_line": 405, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "parent_location": [ + { + "end_col": 48, + "end_line": 408, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "start_col": 41, + "start_line": 408 + }, + "While expanding the reference 'tokenId' in:" + ], + "start_col": 79, + "start_line": 405 + } + }, + "5258": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.ownerOf" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 95, + "end_line": 405, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "parent_location": [ + { + "end_col": 48, + "end_line": 408, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "start_col": 41, + "start_line": 408 + }, + "While expanding the reference 'tokenId' in:" + ], + "start_col": 79, + "start_line": 405 + } + }, + "5259": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.ownerOf" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 49, + "end_line": 408, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "start_col": 25, + "start_line": 408 + } + }, + "5261": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.ownerOf" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 21, + "end_line": 409, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "start_col": 5, + "start_line": 409 + } + }, + "5262": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.ownerOf_encode_return" + ], + "flow_tracking_data": null, + "hints": [ + { + "location": { + "end_col": 38, + "end_line": 3, + "input_file": { + "filename": "autogen/starknet/external/return/ownerOf/e26804beb30ff3fdad1596e68c20c0df03519fc5def143a2feb768126371681c.cairo" + }, + "parent_location": [ + { + "end_col": 13, + "end_line": 405, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "start_col": 6, + "start_line": 405 + }, + "While handling return value of" + ], + "start_col": 5, + "start_line": 3 + }, + "n_prefix_newlines": 0 + } + ], + "inst": { + "end_col": 18, + "end_line": 4, + "input_file": { + "filename": "autogen/starknet/external/return/ownerOf/e26804beb30ff3fdad1596e68c20c0df03519fc5def143a2feb768126371681c.cairo" + }, + "parent_location": [ + { + "end_col": 13, + "end_line": 405, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "start_col": 6, + "start_line": 405 + }, + "While handling return value of" + ], + "start_col": 5, + "start_line": 4 + } + }, + "5264": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.ownerOf_encode_return" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 47, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/arg_processor/b02ddc13e06346668d980e18c0fec90f17036d195bf95d21ac18e846a0a129f3.cairo" + }, + "parent_location": [ + { + "end_col": 16, + "end_line": 406, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "start_col": 5, + "start_line": 406 + }, + "While handling return value 'owner'" + ], + "start_col": 1, + "start_line": 1 + } + }, + "5265": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.ownerOf_encode_return" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 48, + "end_line": 2, + "input_file": { + "filename": "autogen/starknet/arg_processor/b02ddc13e06346668d980e18c0fec90f17036d195bf95d21ac18e846a0a129f3.cairo" + }, + "parent_location": [ + { + "end_col": 16, + "end_line": 406, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "parent_location": [ + { + "end_col": 36, + "end_line": 11, + "input_file": { + "filename": "autogen/starknet/external/return/ownerOf/e26804beb30ff3fdad1596e68c20c0df03519fc5def143a2feb768126371681c.cairo" + }, + "parent_location": [ + { + "end_col": 13, + "end_line": 405, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "start_col": 6, + "start_line": 405 + }, + "While handling return value of" + ], + "start_col": 18, + "start_line": 11 + }, + "While expanding the reference '__return_value_ptr' in:" + ], + "start_col": 5, + "start_line": 406 + }, + "While handling return value 'owner'" + ], + "start_col": 26, + "start_line": 2 + } + }, + "5267": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.ownerOf_encode_return" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 69, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/return/ownerOf/e26804beb30ff3fdad1596e68c20c0df03519fc5def143a2feb768126371681c.cairo" + }, + "parent_location": [ + { + "end_col": 13, + "end_line": 405, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "parent_location": [ + { + "end_col": 40, + "end_line": 10, + "input_file": { + "filename": "autogen/starknet/external/return/ownerOf/e26804beb30ff3fdad1596e68c20c0df03519fc5def143a2feb768126371681c.cairo" + }, + "parent_location": [ + { + "end_col": 13, + "end_line": 405, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "start_col": 6, + "start_line": 405 + }, + "While handling return value of" + ], + "start_col": 25, + "start_line": 10 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 6, + "start_line": 405 + }, + "While handling return value of" + ], + "start_col": 54, + "start_line": 1 + } + }, + "5268": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.ownerOf_encode_return" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 63, + "end_line": 11, + "input_file": { + "filename": "autogen/starknet/external/return/ownerOf/e26804beb30ff3fdad1596e68c20c0df03519fc5def143a2feb768126371681c.cairo" + }, + "parent_location": [ + { + "end_col": 13, + "end_line": 405, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "start_col": 6, + "start_line": 405 + }, + "While handling return value of" + ], + "start_col": 18, + "start_line": 11 + } + }, + "5269": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.ownerOf_encode_return" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 35, + "end_line": 5, + "input_file": { + "filename": "autogen/starknet/external/return/ownerOf/e26804beb30ff3fdad1596e68c20c0df03519fc5def143a2feb768126371681c.cairo" + }, + "parent_location": [ + { + "end_col": 13, + "end_line": 405, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "parent_location": [ + { + "end_col": 38, + "end_line": 12, + "input_file": { + "filename": "autogen/starknet/external/return/ownerOf/e26804beb30ff3fdad1596e68c20c0df03519fc5def143a2feb768126371681c.cairo" + }, + "parent_location": [ + { + "end_col": 13, + "end_line": 405, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "start_col": 6, + "start_line": 405 + }, + "While handling return value of" + ], + "start_col": 14, + "start_line": 12 + }, + "While expanding the reference '__return_value_ptr_start' in:" + ], + "start_col": 6, + "start_line": 405 + }, + "While handling return value of" + ], + "start_col": 11, + "start_line": 5 + } + }, + "5270": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.ownerOf_encode_return" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 40, + "end_line": 12, + "input_file": { + "filename": "autogen/starknet/external/return/ownerOf/e26804beb30ff3fdad1596e68c20c0df03519fc5def143a2feb768126371681c.cairo" + }, + "parent_location": [ + { + "end_col": 13, + "end_line": 405, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "start_col": 6, + "start_line": 405 + }, + "While handling return value of" + ], + "start_col": 5, + "start_line": 9 + } + }, + "5271": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.ownerOf" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 40, + "end_line": 3, + "input_file": { + "filename": "autogen/starknet/arg_processor/60c79ef5477686f2843e61432dcde7f4fc0f354d42095115ea9dca625a35df6e.cairo" + }, + "parent_location": [ + { + "end_col": 95, + "end_line": 405, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "parent_location": [ + { + "end_col": 45, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/arg_processor/c31620b02d4d706f0542c989b2aadc01b0981d1f6a5933a8fe4937ace3d70d92.cairo" + }, + "parent_location": [ + { + "end_col": 13, + "end_line": 405, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "parent_location": [ + { + "end_col": 57, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/arg_processor/01cba52f8515996bb9d7070bde81ff39281d096d7024a558efcba6e1fd2402cf.cairo" + }, + "parent_location": [ + { + "end_col": 13, + "end_line": 405, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "start_col": 6, + "start_line": 405 + }, + "While handling calldata of" + ], + "start_col": 35, + "start_line": 1 + }, + "While expanding the reference '__calldata_actual_size' in:" + ], + "start_col": 6, + "start_line": 405 + }, + "While handling calldata of" + ], + "start_col": 31, + "start_line": 1 + }, + "While expanding the reference '__calldata_ptr' in:" + ], + "start_col": 79, + "start_line": 405 + }, + "While handling calldata argument 'tokenId'" + ], + "start_col": 22, + "start_line": 3 + } + }, + "5273": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.ownerOf" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 58, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/arg_processor/01cba52f8515996bb9d7070bde81ff39281d096d7024a558efcba6e1fd2402cf.cairo" + }, + "parent_location": [ + { + "end_col": 13, + "end_line": 405, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "start_col": 6, + "start_line": 405 + }, + "While handling calldata of" + ], + "start_col": 1, + "start_line": 1 + } + }, + "5274": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.ownerOf" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 64, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/ownerOf/b2c52ca2d2a8fc8791a983086d8716c5eacd0c3d62934914d2286f84b98ff4cb.cairo" + }, + "parent_location": [ + { + "end_col": 32, + "end_line": 405, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "parent_location": [ + { + "end_col": 55, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/ownerOf/b0b45230936b2f4ec6e384bea3a984e2819816dfc8b4e03dac3539fcc1c0dc60.cairo" + }, + "parent_location": [ + { + "end_col": 13, + "end_line": 405, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "start_col": 6, + "start_line": 405 + }, + "While constructing the external wrapper for:" + ], + "start_col": 44, + "start_line": 1 + }, + "While expanding the reference 'syscall_ptr' in:" + ], + "start_col": 14, + "start_line": 405 + }, + "While constructing the external wrapper for:" + ], + "start_col": 19, + "start_line": 1 + } + }, + "5275": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.ownerOf" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 110, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/ownerOf/9684a85e93c782014ca14293edea4eb2502039a5a7b6538ecd39c56faaf12529.cairo" + }, + "parent_location": [ + { + "end_col": 60, + "end_line": 405, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "parent_location": [ + { + "end_col": 82, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/ownerOf/b0b45230936b2f4ec6e384bea3a984e2819816dfc8b4e03dac3539fcc1c0dc60.cairo" + }, + "parent_location": [ + { + "end_col": 13, + "end_line": 405, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "start_col": 6, + "start_line": 405 + }, + "While constructing the external wrapper for:" + ], + "start_col": 70, + "start_line": 1 + }, + "While expanding the reference 'pedersen_ptr' in:" + ], + "start_col": 34, + "start_line": 405 + }, + "While constructing the external wrapper for:" + ], + "start_col": 20, + "start_line": 1 + } + }, + "5276": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.ownerOf" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 67, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/ownerOf/741ea357d6336b0bed7bf0472425acd0311d543883b803388880e60a232040c7.cairo" + }, + "parent_location": [ + { + "end_col": 77, + "end_line": 405, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "parent_location": [ + { + "end_col": 115, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/ownerOf/b0b45230936b2f4ec6e384bea3a984e2819816dfc8b4e03dac3539fcc1c0dc60.cairo" + }, + "parent_location": [ + { + "end_col": 13, + "end_line": 405, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "start_col": 6, + "start_line": 405 + }, + "While constructing the external wrapper for:" + ], + "start_col": 100, + "start_line": 1 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 62, + "start_line": 405 + }, + "While constructing the external wrapper for:" + ], + "start_col": 23, + "start_line": 1 + } + }, + "5277": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.ownerOf" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 67, + "end_line": 2, + "input_file": { + "filename": "autogen/starknet/arg_processor/60c79ef5477686f2843e61432dcde7f4fc0f354d42095115ea9dca625a35df6e.cairo" + }, + "parent_location": [ + { + "end_col": 95, + "end_line": 405, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "parent_location": [ + { + "end_col": 147, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/ownerOf/b0b45230936b2f4ec6e384bea3a984e2819816dfc8b4e03dac3539fcc1c0dc60.cairo" + }, + "parent_location": [ + { + "end_col": 13, + "end_line": 405, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "start_col": 6, + "start_line": 405 + }, + "While constructing the external wrapper for:" + ], + "start_col": 125, + "start_line": 1 + }, + "While expanding the reference '__calldata_arg_tokenId' in:" + ], + "start_col": 79, + "start_line": 405 + }, + "While handling calldata argument 'tokenId'" + ], + "start_col": 30, + "start_line": 1 + } + }, + "5278": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.ownerOf" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 67, + "end_line": 2, + "input_file": { + "filename": "autogen/starknet/arg_processor/60c79ef5477686f2843e61432dcde7f4fc0f354d42095115ea9dca625a35df6e.cairo" + }, + "parent_location": [ + { + "end_col": 95, + "end_line": 405, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "parent_location": [ + { + "end_col": 147, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/ownerOf/b0b45230936b2f4ec6e384bea3a984e2819816dfc8b4e03dac3539fcc1c0dc60.cairo" + }, + "parent_location": [ + { + "end_col": 13, + "end_line": 405, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "start_col": 6, + "start_line": 405 + }, + "While constructing the external wrapper for:" + ], + "start_col": 125, + "start_line": 1 + }, + "While expanding the reference '__calldata_arg_tokenId' in:" + ], + "start_col": 79, + "start_line": 405 + }, + "While handling calldata argument 'tokenId'" + ], + "start_col": 30, + "start_line": 1 + } + }, + "5279": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.ownerOf" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 13, + "end_line": 405, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "start_col": 6, + "start_line": 405 + } + }, + "5281": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.ownerOf" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 115, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/ownerOf/b0b45230936b2f4ec6e384bea3a984e2819816dfc8b4e03dac3539fcc1c0dc60.cairo" + }, + "parent_location": [ + { + "end_col": 13, + "end_line": 405, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "parent_location": [ + { + "end_col": 96, + "end_line": 2, + "input_file": { + "filename": "autogen/starknet/external/ownerOf/b0b45230936b2f4ec6e384bea3a984e2819816dfc8b4e03dac3539fcc1c0dc60.cairo" + }, + "parent_location": [ + { + "end_col": 13, + "end_line": 405, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "start_col": 6, + "start_line": 405 + }, + "While constructing the external wrapper for:" + ], + "start_col": 81, + "start_line": 2 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 6, + "start_line": 405 + }, + "While constructing the external wrapper for:" + ], + "start_col": 100, + "start_line": 1 + } + }, + "5282": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.ownerOf" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 97, + "end_line": 2, + "input_file": { + "filename": "autogen/starknet/external/ownerOf/b0b45230936b2f4ec6e384bea3a984e2819816dfc8b4e03dac3539fcc1c0dc60.cairo" + }, + "parent_location": [ + { + "end_col": 13, + "end_line": 405, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "start_col": 6, + "start_line": 405 + }, + "While constructing the external wrapper for:" + ], + "start_col": 48, + "start_line": 2 + } + }, + "5284": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.ownerOf" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 55, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/ownerOf/b0b45230936b2f4ec6e384bea3a984e2819816dfc8b4e03dac3539fcc1c0dc60.cairo" + }, + "parent_location": [ + { + "end_col": 13, + "end_line": 405, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "parent_location": [ + { + "end_col": 20, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/ownerOf/da17921a4e81c09e730800bbf23bfdbe5e9e6bfaedc59d80fbf62087fa43c27d.cairo" + }, + "parent_location": [ + { + "end_col": 13, + "end_line": 405, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "start_col": 6, + "start_line": 405 + }, + "While constructing the external wrapper for:" + ], + "start_col": 9, + "start_line": 1 + }, + "While expanding the reference 'syscall_ptr' in:" + ], + "start_col": 6, + "start_line": 405 + }, + "While constructing the external wrapper for:" + ], + "start_col": 44, + "start_line": 1 + } + }, + "5285": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.ownerOf" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 82, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/ownerOf/b0b45230936b2f4ec6e384bea3a984e2819816dfc8b4e03dac3539fcc1c0dc60.cairo" + }, + "parent_location": [ + { + "end_col": 13, + "end_line": 405, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "parent_location": [ + { + "end_col": 33, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/ownerOf/da17921a4e81c09e730800bbf23bfdbe5e9e6bfaedc59d80fbf62087fa43c27d.cairo" + }, + "parent_location": [ + { + "end_col": 13, + "end_line": 405, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "start_col": 6, + "start_line": 405 + }, + "While constructing the external wrapper for:" + ], + "start_col": 21, + "start_line": 1 + }, + "While expanding the reference 'pedersen_ptr' in:" + ], + "start_col": 6, + "start_line": 405 + }, + "While constructing the external wrapper for:" + ], + "start_col": 70, + "start_line": 1 + } + }, + "5286": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.ownerOf" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 21, + "end_line": 2, + "input_file": { + "filename": "autogen/starknet/external/ownerOf/b0b45230936b2f4ec6e384bea3a984e2819816dfc8b4e03dac3539fcc1c0dc60.cairo" + }, + "parent_location": [ + { + "end_col": 13, + "end_line": 405, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "parent_location": [ + { + "end_col": 49, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/ownerOf/da17921a4e81c09e730800bbf23bfdbe5e9e6bfaedc59d80fbf62087fa43c27d.cairo" + }, + "parent_location": [ + { + "end_col": 13, + "end_line": 405, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "start_col": 6, + "start_line": 405 + }, + "While constructing the external wrapper for:" + ], + "start_col": 34, + "start_line": 1 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 6, + "start_line": 405 + }, + "While constructing the external wrapper for:" + ], + "start_col": 6, + "start_line": 2 + } + }, + "5287": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.ownerOf" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 35, + "end_line": 2, + "input_file": { + "filename": "autogen/starknet/external/ownerOf/b0b45230936b2f4ec6e384bea3a984e2819816dfc8b4e03dac3539fcc1c0dc60.cairo" + }, + "parent_location": [ + { + "end_col": 13, + "end_line": 405, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "parent_location": [ + { + "end_col": 62, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/ownerOf/da17921a4e81c09e730800bbf23bfdbe5e9e6bfaedc59d80fbf62087fa43c27d.cairo" + }, + "parent_location": [ + { + "end_col": 13, + "end_line": 405, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "start_col": 6, + "start_line": 405 + }, + "While constructing the external wrapper for:" + ], + "start_col": 50, + "start_line": 1 + }, + "While expanding the reference 'retdata_size' in:" + ], + "start_col": 6, + "start_line": 405 + }, + "While constructing the external wrapper for:" + ], + "start_col": 23, + "start_line": 2 + } + }, + "5288": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.ownerOf" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 44, + "end_line": 2, + "input_file": { + "filename": "autogen/starknet/external/ownerOf/b0b45230936b2f4ec6e384bea3a984e2819816dfc8b4e03dac3539fcc1c0dc60.cairo" + }, + "parent_location": [ + { + "end_col": 13, + "end_line": 405, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "parent_location": [ + { + "end_col": 70, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/ownerOf/da17921a4e81c09e730800bbf23bfdbe5e9e6bfaedc59d80fbf62087fa43c27d.cairo" + }, + "parent_location": [ + { + "end_col": 13, + "end_line": 405, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "start_col": 6, + "start_line": 405 + }, + "While constructing the external wrapper for:" + ], + "start_col": 63, + "start_line": 1 + }, + "While expanding the reference 'retdata' in:" + ], + "start_col": 6, + "start_line": 405 + }, + "While constructing the external wrapper for:" + ], + "start_col": 37, + "start_line": 2 + } + }, + "5289": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.ownerOf" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 72, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/ownerOf/da17921a4e81c09e730800bbf23bfdbe5e9e6bfaedc59d80fbf62087fa43c27d.cairo" + }, + "parent_location": [ + { + "end_col": 13, + "end_line": 405, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "start_col": 6, + "start_line": 405 + }, + "While constructing the external wrapper for:" + ], + "start_col": 1, + "start_line": 1 + } + }, + "5290": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.getApproved" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 36, + "end_line": 413, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "parent_location": [ + { + "end_col": 41, + "end_line": 122, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "parent_location": [ + { + "end_col": 56, + "end_line": 416, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "start_col": 28, + "start_line": 416 + }, + "While trying to retrieve the implicit argument 'syscall_ptr' in:" + ], + "start_col": 23, + "start_line": 122 + }, + "While expanding the reference 'syscall_ptr' in:" + ], + "start_col": 18, + "start_line": 413 + } + }, + "5291": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.getApproved" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 64, + "end_line": 413, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "parent_location": [ + { + "end_col": 69, + "end_line": 122, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "parent_location": [ + { + "end_col": 56, + "end_line": 416, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "start_col": 28, + "start_line": 416 + }, + "While trying to retrieve the implicit argument 'pedersen_ptr' in:" + ], + "start_col": 43, + "start_line": 122 + }, + "While expanding the reference 'pedersen_ptr' in:" + ], + "start_col": 38, + "start_line": 413 + } + }, + "5292": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.getApproved" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 81, + "end_line": 413, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "parent_location": [ + { + "end_col": 86, + "end_line": 122, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "parent_location": [ + { + "end_col": 56, + "end_line": 416, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "start_col": 28, + "start_line": 416 + }, + "While trying to retrieve the implicit argument 'range_check_ptr' in:" + ], + "start_col": 71, + "start_line": 122 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 66, + "start_line": 413 + } + }, + "5293": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.getApproved" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 21, + "end_line": 414, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "parent_location": [ + { + "end_col": 55, + "end_line": 416, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "start_col": 48, + "start_line": 416 + }, + "While expanding the reference 'tokenId' in:" + ], + "start_col": 5, + "start_line": 414 + } + }, + "5294": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.getApproved" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 21, + "end_line": 414, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "parent_location": [ + { + "end_col": 55, + "end_line": 416, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "start_col": 48, + "start_line": 416 + }, + "While expanding the reference 'tokenId' in:" + ], + "start_col": 5, + "start_line": 414 + } + }, + "5295": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.getApproved" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 56, + "end_line": 416, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "start_col": 28, + "start_line": 416 + } + }, + "5297": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.getApproved" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 24, + "end_line": 417, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "start_col": 5, + "start_line": 417 + } + }, + "5298": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.getApproved_encode_return" + ], + "flow_tracking_data": null, + "hints": [ + { + "location": { + "end_col": 38, + "end_line": 3, + "input_file": { + "filename": "autogen/starknet/external/return/getApproved/dc5d90a8417d0a28ffeb92cb7cbd7f0e5af1af69279ff1bda88fa7a837af50d3.cairo" + }, + "parent_location": [ + { + "end_col": 17, + "end_line": 413, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "start_col": 6, + "start_line": 413 + }, + "While handling return value of" + ], + "start_col": 5, + "start_line": 3 + }, + "n_prefix_newlines": 0 + } + ], + "inst": { + "end_col": 18, + "end_line": 4, + "input_file": { + "filename": "autogen/starknet/external/return/getApproved/dc5d90a8417d0a28ffeb92cb7cbd7f0e5af1af69279ff1bda88fa7a837af50d3.cairo" + }, + "parent_location": [ + { + "end_col": 17, + "end_line": 413, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "start_col": 6, + "start_line": 413 + }, + "While handling return value of" + ], + "start_col": 5, + "start_line": 4 + } + }, + "5300": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.getApproved_encode_return" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 50, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/arg_processor/74a3369943c8d7518ff17d6d8cb3e9a3785e7db4bcf995a7ffbf3a439df0343b.cairo" + }, + "parent_location": [ + { + "end_col": 21, + "end_line": 415, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "start_col": 7, + "start_line": 415 + }, + "While handling return value 'approved'" + ], + "start_col": 1, + "start_line": 1 + } + }, + "5301": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.getApproved_encode_return" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 48, + "end_line": 2, + "input_file": { + "filename": "autogen/starknet/arg_processor/74a3369943c8d7518ff17d6d8cb3e9a3785e7db4bcf995a7ffbf3a439df0343b.cairo" + }, + "parent_location": [ + { + "end_col": 21, + "end_line": 415, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "parent_location": [ + { + "end_col": 36, + "end_line": 11, + "input_file": { + "filename": "autogen/starknet/external/return/getApproved/dc5d90a8417d0a28ffeb92cb7cbd7f0e5af1af69279ff1bda88fa7a837af50d3.cairo" + }, + "parent_location": [ + { + "end_col": 17, + "end_line": 413, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "start_col": 6, + "start_line": 413 + }, + "While handling return value of" + ], + "start_col": 18, + "start_line": 11 + }, + "While expanding the reference '__return_value_ptr' in:" + ], + "start_col": 7, + "start_line": 415 + }, + "While handling return value 'approved'" + ], + "start_col": 26, + "start_line": 2 + } + }, + "5303": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.getApproved_encode_return" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 76, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/return/getApproved/dc5d90a8417d0a28ffeb92cb7cbd7f0e5af1af69279ff1bda88fa7a837af50d3.cairo" + }, + "parent_location": [ + { + "end_col": 17, + "end_line": 413, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "parent_location": [ + { + "end_col": 40, + "end_line": 10, + "input_file": { + "filename": "autogen/starknet/external/return/getApproved/dc5d90a8417d0a28ffeb92cb7cbd7f0e5af1af69279ff1bda88fa7a837af50d3.cairo" + }, + "parent_location": [ + { + "end_col": 17, + "end_line": 413, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "start_col": 6, + "start_line": 413 + }, + "While handling return value of" + ], + "start_col": 25, + "start_line": 10 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 6, + "start_line": 413 + }, + "While handling return value of" + ], + "start_col": 61, + "start_line": 1 + } + }, + "5304": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.getApproved_encode_return" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 63, + "end_line": 11, + "input_file": { + "filename": "autogen/starknet/external/return/getApproved/dc5d90a8417d0a28ffeb92cb7cbd7f0e5af1af69279ff1bda88fa7a837af50d3.cairo" + }, + "parent_location": [ + { + "end_col": 17, + "end_line": 413, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "start_col": 6, + "start_line": 413 + }, + "While handling return value of" + ], + "start_col": 18, + "start_line": 11 + } + }, + "5305": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.getApproved_encode_return" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 35, + "end_line": 5, + "input_file": { + "filename": "autogen/starknet/external/return/getApproved/dc5d90a8417d0a28ffeb92cb7cbd7f0e5af1af69279ff1bda88fa7a837af50d3.cairo" + }, + "parent_location": [ + { + "end_col": 17, + "end_line": 413, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "parent_location": [ + { + "end_col": 38, + "end_line": 12, + "input_file": { + "filename": "autogen/starknet/external/return/getApproved/dc5d90a8417d0a28ffeb92cb7cbd7f0e5af1af69279ff1bda88fa7a837af50d3.cairo" + }, + "parent_location": [ + { + "end_col": 17, + "end_line": 413, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "start_col": 6, + "start_line": 413 + }, + "While handling return value of" + ], + "start_col": 14, + "start_line": 12 + }, + "While expanding the reference '__return_value_ptr_start' in:" + ], + "start_col": 6, + "start_line": 413 + }, + "While handling return value of" + ], + "start_col": 11, + "start_line": 5 + } + }, + "5306": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.getApproved_encode_return" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 40, + "end_line": 12, + "input_file": { + "filename": "autogen/starknet/external/return/getApproved/dc5d90a8417d0a28ffeb92cb7cbd7f0e5af1af69279ff1bda88fa7a837af50d3.cairo" + }, + "parent_location": [ + { + "end_col": 17, + "end_line": 413, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "start_col": 6, + "start_line": 413 + }, + "While handling return value of" + ], + "start_col": 5, + "start_line": 9 + } + }, + "5307": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.getApproved" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 40, + "end_line": 3, + "input_file": { + "filename": "autogen/starknet/arg_processor/60c79ef5477686f2843e61432dcde7f4fc0f354d42095115ea9dca625a35df6e.cairo" + }, + "parent_location": [ + { + "end_col": 21, + "end_line": 414, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "parent_location": [ + { + "end_col": 45, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/arg_processor/c31620b02d4d706f0542c989b2aadc01b0981d1f6a5933a8fe4937ace3d70d92.cairo" + }, + "parent_location": [ + { + "end_col": 17, + "end_line": 413, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "parent_location": [ + { + "end_col": 57, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/arg_processor/01cba52f8515996bb9d7070bde81ff39281d096d7024a558efcba6e1fd2402cf.cairo" + }, + "parent_location": [ + { + "end_col": 17, + "end_line": 413, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "start_col": 6, + "start_line": 413 + }, + "While handling calldata of" + ], + "start_col": 35, + "start_line": 1 + }, + "While expanding the reference '__calldata_actual_size' in:" + ], + "start_col": 6, + "start_line": 413 + }, + "While handling calldata of" + ], + "start_col": 31, + "start_line": 1 + }, + "While expanding the reference '__calldata_ptr' in:" + ], + "start_col": 5, + "start_line": 414 + }, + "While handling calldata argument 'tokenId'" + ], + "start_col": 22, + "start_line": 3 + } + }, + "5309": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.getApproved" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 58, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/arg_processor/01cba52f8515996bb9d7070bde81ff39281d096d7024a558efcba6e1fd2402cf.cairo" + }, + "parent_location": [ + { + "end_col": 17, + "end_line": 413, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "start_col": 6, + "start_line": 413 + }, + "While handling calldata of" + ], + "start_col": 1, + "start_line": 1 + } + }, + "5310": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.getApproved" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 64, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/getApproved/b2c52ca2d2a8fc8791a983086d8716c5eacd0c3d62934914d2286f84b98ff4cb.cairo" + }, + "parent_location": [ + { + "end_col": 36, + "end_line": 413, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "parent_location": [ + { + "end_col": 55, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/getApproved/835e657df1ee968194eed5f3c9b857e397b684d36f56ec8a7b26cb299a6be11f.cairo" + }, + "parent_location": [ + { + "end_col": 17, + "end_line": 413, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "start_col": 6, + "start_line": 413 + }, + "While constructing the external wrapper for:" + ], + "start_col": 44, + "start_line": 1 + }, + "While expanding the reference 'syscall_ptr' in:" + ], + "start_col": 18, + "start_line": 413 + }, + "While constructing the external wrapper for:" + ], + "start_col": 19, + "start_line": 1 + } + }, + "5311": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.getApproved" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 110, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/getApproved/9684a85e93c782014ca14293edea4eb2502039a5a7b6538ecd39c56faaf12529.cairo" + }, + "parent_location": [ + { + "end_col": 64, + "end_line": 413, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "parent_location": [ + { + "end_col": 82, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/getApproved/835e657df1ee968194eed5f3c9b857e397b684d36f56ec8a7b26cb299a6be11f.cairo" + }, + "parent_location": [ + { + "end_col": 17, + "end_line": 413, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "start_col": 6, + "start_line": 413 + }, + "While constructing the external wrapper for:" + ], + "start_col": 70, + "start_line": 1 + }, + "While expanding the reference 'pedersen_ptr' in:" + ], + "start_col": 38, + "start_line": 413 + }, + "While constructing the external wrapper for:" + ], + "start_col": 20, + "start_line": 1 + } + }, + "5312": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.getApproved" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 67, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/getApproved/741ea357d6336b0bed7bf0472425acd0311d543883b803388880e60a232040c7.cairo" + }, + "parent_location": [ + { + "end_col": 81, + "end_line": 413, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "parent_location": [ + { + "end_col": 115, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/getApproved/835e657df1ee968194eed5f3c9b857e397b684d36f56ec8a7b26cb299a6be11f.cairo" + }, + "parent_location": [ + { + "end_col": 17, + "end_line": 413, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "start_col": 6, + "start_line": 413 + }, + "While constructing the external wrapper for:" + ], + "start_col": 100, + "start_line": 1 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 66, + "start_line": 413 + }, + "While constructing the external wrapper for:" + ], + "start_col": 23, + "start_line": 1 + } + }, + "5313": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.getApproved" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 67, + "end_line": 2, + "input_file": { + "filename": "autogen/starknet/arg_processor/60c79ef5477686f2843e61432dcde7f4fc0f354d42095115ea9dca625a35df6e.cairo" + }, + "parent_location": [ + { + "end_col": 21, + "end_line": 414, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "parent_location": [ + { + "end_col": 147, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/getApproved/835e657df1ee968194eed5f3c9b857e397b684d36f56ec8a7b26cb299a6be11f.cairo" + }, + "parent_location": [ + { + "end_col": 17, + "end_line": 413, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "start_col": 6, + "start_line": 413 + }, + "While constructing the external wrapper for:" + ], + "start_col": 125, + "start_line": 1 + }, + "While expanding the reference '__calldata_arg_tokenId' in:" + ], + "start_col": 5, + "start_line": 414 + }, + "While handling calldata argument 'tokenId'" + ], + "start_col": 30, + "start_line": 1 + } + }, + "5314": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.getApproved" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 67, + "end_line": 2, + "input_file": { + "filename": "autogen/starknet/arg_processor/60c79ef5477686f2843e61432dcde7f4fc0f354d42095115ea9dca625a35df6e.cairo" + }, + "parent_location": [ + { + "end_col": 21, + "end_line": 414, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "parent_location": [ + { + "end_col": 147, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/getApproved/835e657df1ee968194eed5f3c9b857e397b684d36f56ec8a7b26cb299a6be11f.cairo" + }, + "parent_location": [ + { + "end_col": 17, + "end_line": 413, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "start_col": 6, + "start_line": 413 + }, + "While constructing the external wrapper for:" + ], + "start_col": 125, + "start_line": 1 + }, + "While expanding the reference '__calldata_arg_tokenId' in:" + ], + "start_col": 5, + "start_line": 414 + }, + "While handling calldata argument 'tokenId'" + ], + "start_col": 30, + "start_line": 1 + } + }, + "5315": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.getApproved" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 17, + "end_line": 413, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "start_col": 6, + "start_line": 413 + } + }, + "5317": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.getApproved" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 115, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/getApproved/835e657df1ee968194eed5f3c9b857e397b684d36f56ec8a7b26cb299a6be11f.cairo" + }, + "parent_location": [ + { + "end_col": 17, + "end_line": 413, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "parent_location": [ + { + "end_col": 100, + "end_line": 2, + "input_file": { + "filename": "autogen/starknet/external/getApproved/835e657df1ee968194eed5f3c9b857e397b684d36f56ec8a7b26cb299a6be11f.cairo" + }, + "parent_location": [ + { + "end_col": 17, + "end_line": 413, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "start_col": 6, + "start_line": 413 + }, + "While constructing the external wrapper for:" + ], + "start_col": 85, + "start_line": 2 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 6, + "start_line": 413 + }, + "While constructing the external wrapper for:" + ], + "start_col": 100, + "start_line": 1 + } + }, + "5318": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.getApproved" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 101, + "end_line": 2, + "input_file": { + "filename": "autogen/starknet/external/getApproved/835e657df1ee968194eed5f3c9b857e397b684d36f56ec8a7b26cb299a6be11f.cairo" + }, + "parent_location": [ + { + "end_col": 17, + "end_line": 413, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "start_col": 6, + "start_line": 413 + }, + "While constructing the external wrapper for:" + ], + "start_col": 48, + "start_line": 2 + } + }, + "5320": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.getApproved" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 55, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/getApproved/835e657df1ee968194eed5f3c9b857e397b684d36f56ec8a7b26cb299a6be11f.cairo" + }, + "parent_location": [ + { + "end_col": 17, + "end_line": 413, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "parent_location": [ + { + "end_col": 20, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/getApproved/da17921a4e81c09e730800bbf23bfdbe5e9e6bfaedc59d80fbf62087fa43c27d.cairo" + }, + "parent_location": [ + { + "end_col": 17, + "end_line": 413, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "start_col": 6, + "start_line": 413 + }, + "While constructing the external wrapper for:" + ], + "start_col": 9, + "start_line": 1 + }, + "While expanding the reference 'syscall_ptr' in:" + ], + "start_col": 6, + "start_line": 413 + }, + "While constructing the external wrapper for:" + ], + "start_col": 44, + "start_line": 1 + } + }, + "5321": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.getApproved" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 82, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/getApproved/835e657df1ee968194eed5f3c9b857e397b684d36f56ec8a7b26cb299a6be11f.cairo" + }, + "parent_location": [ + { + "end_col": 17, + "end_line": 413, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "parent_location": [ + { + "end_col": 33, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/getApproved/da17921a4e81c09e730800bbf23bfdbe5e9e6bfaedc59d80fbf62087fa43c27d.cairo" + }, + "parent_location": [ + { + "end_col": 17, + "end_line": 413, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "start_col": 6, + "start_line": 413 + }, + "While constructing the external wrapper for:" + ], + "start_col": 21, + "start_line": 1 + }, + "While expanding the reference 'pedersen_ptr' in:" + ], + "start_col": 6, + "start_line": 413 + }, + "While constructing the external wrapper for:" + ], + "start_col": 70, + "start_line": 1 + } + }, + "5322": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.getApproved" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 21, + "end_line": 2, + "input_file": { + "filename": "autogen/starknet/external/getApproved/835e657df1ee968194eed5f3c9b857e397b684d36f56ec8a7b26cb299a6be11f.cairo" + }, + "parent_location": [ + { + "end_col": 17, + "end_line": 413, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "parent_location": [ + { + "end_col": 49, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/getApproved/da17921a4e81c09e730800bbf23bfdbe5e9e6bfaedc59d80fbf62087fa43c27d.cairo" + }, + "parent_location": [ + { + "end_col": 17, + "end_line": 413, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "start_col": 6, + "start_line": 413 + }, + "While constructing the external wrapper for:" + ], + "start_col": 34, + "start_line": 1 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 6, + "start_line": 413 + }, + "While constructing the external wrapper for:" + ], + "start_col": 6, + "start_line": 2 + } + }, + "5323": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.getApproved" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 35, + "end_line": 2, + "input_file": { + "filename": "autogen/starknet/external/getApproved/835e657df1ee968194eed5f3c9b857e397b684d36f56ec8a7b26cb299a6be11f.cairo" + }, + "parent_location": [ + { + "end_col": 17, + "end_line": 413, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "parent_location": [ + { + "end_col": 62, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/getApproved/da17921a4e81c09e730800bbf23bfdbe5e9e6bfaedc59d80fbf62087fa43c27d.cairo" + }, + "parent_location": [ + { + "end_col": 17, + "end_line": 413, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "start_col": 6, + "start_line": 413 + }, + "While constructing the external wrapper for:" + ], + "start_col": 50, + "start_line": 1 + }, + "While expanding the reference 'retdata_size' in:" + ], + "start_col": 6, + "start_line": 413 + }, + "While constructing the external wrapper for:" + ], + "start_col": 23, + "start_line": 2 + } + }, + "5324": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.getApproved" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 44, + "end_line": 2, + "input_file": { + "filename": "autogen/starknet/external/getApproved/835e657df1ee968194eed5f3c9b857e397b684d36f56ec8a7b26cb299a6be11f.cairo" + }, + "parent_location": [ + { + "end_col": 17, + "end_line": 413, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "parent_location": [ + { + "end_col": 70, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/getApproved/da17921a4e81c09e730800bbf23bfdbe5e9e6bfaedc59d80fbf62087fa43c27d.cairo" + }, + "parent_location": [ + { + "end_col": 17, + "end_line": 413, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "start_col": 6, + "start_line": 413 + }, + "While constructing the external wrapper for:" + ], + "start_col": 63, + "start_line": 1 + }, + "While expanding the reference 'retdata' in:" + ], + "start_col": 6, + "start_line": 413 + }, + "While constructing the external wrapper for:" + ], + "start_col": 37, + "start_line": 2 + } + }, + "5325": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.getApproved" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 72, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/getApproved/da17921a4e81c09e730800bbf23bfdbe5e9e6bfaedc59d80fbf62087fa43c27d.cairo" + }, + "parent_location": [ + { + "end_col": 17, + "end_line": 413, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "start_col": 6, + "start_line": 413 + }, + "While constructing the external wrapper for:" + ], + "start_col": 1, + "start_line": 1 + } + }, + "5326": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.isApprovedForAll" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 41, + "end_line": 421, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "parent_location": [ + { + "end_col": 48, + "end_line": 136, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "parent_location": [ + { + "end_col": 73, + "end_line": 424, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "start_col": 30, + "start_line": 424 + }, + "While trying to retrieve the implicit argument 'syscall_ptr' in:" + ], + "start_col": 30, + "start_line": 136 + }, + "While expanding the reference 'syscall_ptr' in:" + ], + "start_col": 23, + "start_line": 421 + } + }, + "5327": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.isApprovedForAll" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 69, + "end_line": 421, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "parent_location": [ + { + "end_col": 76, + "end_line": 136, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "parent_location": [ + { + "end_col": 73, + "end_line": 424, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "start_col": 30, + "start_line": 424 + }, + "While trying to retrieve the implicit argument 'pedersen_ptr' in:" + ], + "start_col": 50, + "start_line": 136 + }, + "While expanding the reference 'pedersen_ptr' in:" + ], + "start_col": 43, + "start_line": 421 + } + }, + "5328": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.isApprovedForAll" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 86, + "end_line": 421, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "parent_location": [ + { + "end_col": 93, + "end_line": 136, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "parent_location": [ + { + "end_col": 73, + "end_line": 424, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "start_col": 30, + "start_line": 424 + }, + "While trying to retrieve the implicit argument 'range_check_ptr' in:" + ], + "start_col": 78, + "start_line": 136 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 71, + "start_line": 421 + } + }, + "5329": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.isApprovedForAll" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 16, + "end_line": 422, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "parent_location": [ + { + "end_col": 62, + "end_line": 424, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "start_col": 57, + "start_line": 424 + }, + "While expanding the reference 'owner' in:" + ], + "start_col": 5, + "start_line": 422 + } + }, + "5330": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.isApprovedForAll" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 32, + "end_line": 422, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "parent_location": [ + { + "end_col": 72, + "end_line": 424, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "start_col": 64, + "start_line": 424 + }, + "While expanding the reference 'operator' in:" + ], + "start_col": 18, + "start_line": 422 + } + }, + "5331": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.isApprovedForAll" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 73, + "end_line": 424, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "start_col": 30, + "start_line": 424 + } + }, + "5333": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.isApprovedForAll" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 26, + "end_line": 425, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "start_col": 5, + "start_line": 425 + } + }, + "5334": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.isApprovedForAll_encode_return" + ], + "flow_tracking_data": null, + "hints": [ + { + "location": { + "end_col": 38, + "end_line": 3, + "input_file": { + "filename": "autogen/starknet/external/return/isApprovedForAll/38789844dce484b974dbd524d5dc5d79b5898ffc6c946c5e91ff04055990eef0.cairo" + }, + "parent_location": [ + { + "end_col": 22, + "end_line": 421, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "start_col": 6, + "start_line": 421 + }, + "While handling return value of" + ], + "start_col": 5, + "start_line": 3 + }, + "n_prefix_newlines": 0 + } + ], + "inst": { + "end_col": 18, + "end_line": 4, + "input_file": { + "filename": "autogen/starknet/external/return/isApprovedForAll/38789844dce484b974dbd524d5dc5d79b5898ffc6c946c5e91ff04055990eef0.cairo" + }, + "parent_location": [ + { + "end_col": 22, + "end_line": 421, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "start_col": 6, + "start_line": 421 + }, + "While handling return value of" + ], + "start_col": 5, + "start_line": 4 + } + }, + "5336": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.isApprovedForAll_encode_return" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 52, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/arg_processor/6450610d0d553c149684e3d6d36a5d949ffe368d7692d99cec27ac08c51ad845.cairo" + }, + "parent_location": [ + { + "end_col": 23, + "end_line": 423, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "start_col": 7, + "start_line": 423 + }, + "While handling return value 'isApproved'" + ], + "start_col": 1, + "start_line": 1 + } + }, + "5337": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.isApprovedForAll_encode_return" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 48, + "end_line": 2, + "input_file": { + "filename": "autogen/starknet/arg_processor/6450610d0d553c149684e3d6d36a5d949ffe368d7692d99cec27ac08c51ad845.cairo" + }, + "parent_location": [ + { + "end_col": 23, + "end_line": 423, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "parent_location": [ + { + "end_col": 36, + "end_line": 11, + "input_file": { + "filename": "autogen/starknet/external/return/isApprovedForAll/38789844dce484b974dbd524d5dc5d79b5898ffc6c946c5e91ff04055990eef0.cairo" + }, + "parent_location": [ + { + "end_col": 22, + "end_line": 421, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "start_col": 6, + "start_line": 421 + }, + "While handling return value of" + ], + "start_col": 18, + "start_line": 11 + }, + "While expanding the reference '__return_value_ptr' in:" + ], + "start_col": 7, + "start_line": 423 + }, + "While handling return value 'isApproved'" + ], + "start_col": 26, + "start_line": 2 + } + }, + "5339": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.isApprovedForAll_encode_return" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 83, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/return/isApprovedForAll/38789844dce484b974dbd524d5dc5d79b5898ffc6c946c5e91ff04055990eef0.cairo" + }, + "parent_location": [ + { + "end_col": 22, + "end_line": 421, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "parent_location": [ + { + "end_col": 40, + "end_line": 10, + "input_file": { + "filename": "autogen/starknet/external/return/isApprovedForAll/38789844dce484b974dbd524d5dc5d79b5898ffc6c946c5e91ff04055990eef0.cairo" + }, + "parent_location": [ + { + "end_col": 22, + "end_line": 421, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "start_col": 6, + "start_line": 421 + }, + "While handling return value of" + ], + "start_col": 25, + "start_line": 10 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 6, + "start_line": 421 + }, + "While handling return value of" + ], + "start_col": 68, + "start_line": 1 + } + }, + "5340": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.isApprovedForAll_encode_return" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 63, + "end_line": 11, + "input_file": { + "filename": "autogen/starknet/external/return/isApprovedForAll/38789844dce484b974dbd524d5dc5d79b5898ffc6c946c5e91ff04055990eef0.cairo" + }, + "parent_location": [ + { + "end_col": 22, + "end_line": 421, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "start_col": 6, + "start_line": 421 + }, + "While handling return value of" + ], + "start_col": 18, + "start_line": 11 + } + }, + "5341": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.isApprovedForAll_encode_return" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 35, + "end_line": 5, + "input_file": { + "filename": "autogen/starknet/external/return/isApprovedForAll/38789844dce484b974dbd524d5dc5d79b5898ffc6c946c5e91ff04055990eef0.cairo" + }, + "parent_location": [ + { + "end_col": 22, + "end_line": 421, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "parent_location": [ + { + "end_col": 38, + "end_line": 12, + "input_file": { + "filename": "autogen/starknet/external/return/isApprovedForAll/38789844dce484b974dbd524d5dc5d79b5898ffc6c946c5e91ff04055990eef0.cairo" + }, + "parent_location": [ + { + "end_col": 22, + "end_line": 421, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "start_col": 6, + "start_line": 421 + }, + "While handling return value of" + ], + "start_col": 14, + "start_line": 12 + }, + "While expanding the reference '__return_value_ptr_start' in:" + ], + "start_col": 6, + "start_line": 421 + }, + "While handling return value of" + ], + "start_col": 11, + "start_line": 5 + } + }, + "5342": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.isApprovedForAll_encode_return" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 40, + "end_line": 12, + "input_file": { + "filename": "autogen/starknet/external/return/isApprovedForAll/38789844dce484b974dbd524d5dc5d79b5898ffc6c946c5e91ff04055990eef0.cairo" + }, + "parent_location": [ + { + "end_col": 22, + "end_line": 421, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "start_col": 6, + "start_line": 421 + }, + "While handling return value of" + ], + "start_col": 5, + "start_line": 9 + } + }, + "5343": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.isApprovedForAll" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 40, + "end_line": 2, + "input_file": { + "filename": "autogen/starknet/arg_processor/c28d01f4036658535ed1f26a855ca481100f6b9fa5c266733e27ba2dce390d91.cairo" + }, + "parent_location": [ + { + "end_col": 32, + "end_line": 422, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "parent_location": [ + { + "end_col": 45, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/arg_processor/c31620b02d4d706f0542c989b2aadc01b0981d1f6a5933a8fe4937ace3d70d92.cairo" + }, + "parent_location": [ + { + "end_col": 22, + "end_line": 421, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "parent_location": [ + { + "end_col": 57, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/arg_processor/01cba52f8515996bb9d7070bde81ff39281d096d7024a558efcba6e1fd2402cf.cairo" + }, + "parent_location": [ + { + "end_col": 22, + "end_line": 421, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "start_col": 6, + "start_line": 421 + }, + "While handling calldata of" + ], + "start_col": 35, + "start_line": 1 + }, + "While expanding the reference '__calldata_actual_size' in:" + ], + "start_col": 6, + "start_line": 421 + }, + "While handling calldata of" + ], + "start_col": 31, + "start_line": 1 + }, + "While expanding the reference '__calldata_ptr' in:" + ], + "start_col": 18, + "start_line": 422 + }, + "While handling calldata argument 'operator'" + ], + "start_col": 22, + "start_line": 2 + } + }, + "5345": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.isApprovedForAll" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 58, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/arg_processor/01cba52f8515996bb9d7070bde81ff39281d096d7024a558efcba6e1fd2402cf.cairo" + }, + "parent_location": [ + { + "end_col": 22, + "end_line": 421, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "start_col": 6, + "start_line": 421 + }, + "While handling calldata of" + ], + "start_col": 1, + "start_line": 1 + } + }, + "5346": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.isApprovedForAll" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 64, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/isApprovedForAll/b2c52ca2d2a8fc8791a983086d8716c5eacd0c3d62934914d2286f84b98ff4cb.cairo" + }, + "parent_location": [ + { + "end_col": 41, + "end_line": 421, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "parent_location": [ + { + "end_col": 55, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/isApprovedForAll/28e6449b750a764997de3246d5af785f29a76b7b369ce53a25f4614d960a20f3.cairo" + }, + "parent_location": [ + { + "end_col": 22, + "end_line": 421, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "start_col": 6, + "start_line": 421 + }, + "While constructing the external wrapper for:" + ], + "start_col": 44, + "start_line": 1 + }, + "While expanding the reference 'syscall_ptr' in:" + ], + "start_col": 23, + "start_line": 421 + }, + "While constructing the external wrapper for:" + ], + "start_col": 19, + "start_line": 1 + } + }, + "5347": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.isApprovedForAll" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 110, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/isApprovedForAll/9684a85e93c782014ca14293edea4eb2502039a5a7b6538ecd39c56faaf12529.cairo" + }, + "parent_location": [ + { + "end_col": 69, + "end_line": 421, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "parent_location": [ + { + "end_col": 82, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/isApprovedForAll/28e6449b750a764997de3246d5af785f29a76b7b369ce53a25f4614d960a20f3.cairo" + }, + "parent_location": [ + { + "end_col": 22, + "end_line": 421, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "start_col": 6, + "start_line": 421 + }, + "While constructing the external wrapper for:" + ], + "start_col": 70, + "start_line": 1 + }, + "While expanding the reference 'pedersen_ptr' in:" + ], + "start_col": 43, + "start_line": 421 + }, + "While constructing the external wrapper for:" + ], + "start_col": 20, + "start_line": 1 + } + }, + "5348": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.isApprovedForAll" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 67, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/isApprovedForAll/741ea357d6336b0bed7bf0472425acd0311d543883b803388880e60a232040c7.cairo" + }, + "parent_location": [ + { + "end_col": 86, + "end_line": 421, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "parent_location": [ + { + "end_col": 115, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/isApprovedForAll/28e6449b750a764997de3246d5af785f29a76b7b369ce53a25f4614d960a20f3.cairo" + }, + "parent_location": [ + { + "end_col": 22, + "end_line": 421, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "start_col": 6, + "start_line": 421 + }, + "While constructing the external wrapper for:" + ], + "start_col": 100, + "start_line": 1 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 71, + "start_line": 421 + }, + "While constructing the external wrapper for:" + ], + "start_col": 23, + "start_line": 1 + } + }, + "5349": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.isApprovedForAll" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 44, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/arg_processor/f6a4d9ae897caf37cefd18f7c8da7eee73157818279359aadee282f0fe59cdbc.cairo" + }, + "parent_location": [ + { + "end_col": 16, + "end_line": 422, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "parent_location": [ + { + "end_col": 143, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/isApprovedForAll/28e6449b750a764997de3246d5af785f29a76b7b369ce53a25f4614d960a20f3.cairo" + }, + "parent_location": [ + { + "end_col": 22, + "end_line": 421, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "start_col": 6, + "start_line": 421 + }, + "While constructing the external wrapper for:" + ], + "start_col": 123, + "start_line": 1 + }, + "While expanding the reference '__calldata_arg_owner' in:" + ], + "start_col": 5, + "start_line": 422 + }, + "While handling calldata argument 'owner'" + ], + "start_col": 28, + "start_line": 1 + } + }, + "5350": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.isApprovedForAll" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 47, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/arg_processor/c28d01f4036658535ed1f26a855ca481100f6b9fa5c266733e27ba2dce390d91.cairo" + }, + "parent_location": [ + { + "end_col": 32, + "end_line": 422, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "parent_location": [ + { + "end_col": 177, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/isApprovedForAll/28e6449b750a764997de3246d5af785f29a76b7b369ce53a25f4614d960a20f3.cairo" + }, + "parent_location": [ + { + "end_col": 22, + "end_line": 421, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "start_col": 6, + "start_line": 421 + }, + "While constructing the external wrapper for:" + ], + "start_col": 154, + "start_line": 1 + }, + "While expanding the reference '__calldata_arg_operator' in:" + ], + "start_col": 18, + "start_line": 422 + }, + "While handling calldata argument 'operator'" + ], + "start_col": 31, + "start_line": 1 + } + }, + "5351": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.isApprovedForAll" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 22, + "end_line": 421, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "start_col": 6, + "start_line": 421 + } + }, + "5353": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.isApprovedForAll" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 115, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/isApprovedForAll/28e6449b750a764997de3246d5af785f29a76b7b369ce53a25f4614d960a20f3.cairo" + }, + "parent_location": [ + { + "end_col": 22, + "end_line": 421, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "parent_location": [ + { + "end_col": 105, + "end_line": 2, + "input_file": { + "filename": "autogen/starknet/external/isApprovedForAll/28e6449b750a764997de3246d5af785f29a76b7b369ce53a25f4614d960a20f3.cairo" + }, + "parent_location": [ + { + "end_col": 22, + "end_line": 421, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "start_col": 6, + "start_line": 421 + }, + "While constructing the external wrapper for:" + ], + "start_col": 90, + "start_line": 2 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 6, + "start_line": 421 + }, + "While constructing the external wrapper for:" + ], + "start_col": 100, + "start_line": 1 + } + }, + "5354": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.isApprovedForAll" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 106, + "end_line": 2, + "input_file": { + "filename": "autogen/starknet/external/isApprovedForAll/28e6449b750a764997de3246d5af785f29a76b7b369ce53a25f4614d960a20f3.cairo" + }, + "parent_location": [ + { + "end_col": 22, + "end_line": 421, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "start_col": 6, + "start_line": 421 + }, + "While constructing the external wrapper for:" + ], + "start_col": 48, + "start_line": 2 + } + }, + "5356": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.isApprovedForAll" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 55, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/isApprovedForAll/28e6449b750a764997de3246d5af785f29a76b7b369ce53a25f4614d960a20f3.cairo" + }, + "parent_location": [ + { + "end_col": 22, + "end_line": 421, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "parent_location": [ + { + "end_col": 20, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/isApprovedForAll/da17921a4e81c09e730800bbf23bfdbe5e9e6bfaedc59d80fbf62087fa43c27d.cairo" + }, + "parent_location": [ + { + "end_col": 22, + "end_line": 421, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "start_col": 6, + "start_line": 421 + }, + "While constructing the external wrapper for:" + ], + "start_col": 9, + "start_line": 1 + }, + "While expanding the reference 'syscall_ptr' in:" + ], + "start_col": 6, + "start_line": 421 + }, + "While constructing the external wrapper for:" + ], + "start_col": 44, + "start_line": 1 + } + }, + "5357": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.isApprovedForAll" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 82, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/isApprovedForAll/28e6449b750a764997de3246d5af785f29a76b7b369ce53a25f4614d960a20f3.cairo" + }, + "parent_location": [ + { + "end_col": 22, + "end_line": 421, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "parent_location": [ + { + "end_col": 33, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/isApprovedForAll/da17921a4e81c09e730800bbf23bfdbe5e9e6bfaedc59d80fbf62087fa43c27d.cairo" + }, + "parent_location": [ + { + "end_col": 22, + "end_line": 421, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "start_col": 6, + "start_line": 421 + }, + "While constructing the external wrapper for:" + ], + "start_col": 21, + "start_line": 1 + }, + "While expanding the reference 'pedersen_ptr' in:" + ], + "start_col": 6, + "start_line": 421 + }, + "While constructing the external wrapper for:" + ], + "start_col": 70, + "start_line": 1 + } + }, + "5358": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.isApprovedForAll" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 21, + "end_line": 2, + "input_file": { + "filename": "autogen/starknet/external/isApprovedForAll/28e6449b750a764997de3246d5af785f29a76b7b369ce53a25f4614d960a20f3.cairo" + }, + "parent_location": [ + { + "end_col": 22, + "end_line": 421, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "parent_location": [ + { + "end_col": 49, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/isApprovedForAll/da17921a4e81c09e730800bbf23bfdbe5e9e6bfaedc59d80fbf62087fa43c27d.cairo" + }, + "parent_location": [ + { + "end_col": 22, + "end_line": 421, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "start_col": 6, + "start_line": 421 + }, + "While constructing the external wrapper for:" + ], + "start_col": 34, + "start_line": 1 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 6, + "start_line": 421 + }, + "While constructing the external wrapper for:" + ], + "start_col": 6, + "start_line": 2 + } + }, + "5359": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.isApprovedForAll" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 35, + "end_line": 2, + "input_file": { + "filename": "autogen/starknet/external/isApprovedForAll/28e6449b750a764997de3246d5af785f29a76b7b369ce53a25f4614d960a20f3.cairo" + }, + "parent_location": [ + { + "end_col": 22, + "end_line": 421, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "parent_location": [ + { + "end_col": 62, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/isApprovedForAll/da17921a4e81c09e730800bbf23bfdbe5e9e6bfaedc59d80fbf62087fa43c27d.cairo" + }, + "parent_location": [ + { + "end_col": 22, + "end_line": 421, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "start_col": 6, + "start_line": 421 + }, + "While constructing the external wrapper for:" + ], + "start_col": 50, + "start_line": 1 + }, + "While expanding the reference 'retdata_size' in:" + ], + "start_col": 6, + "start_line": 421 + }, + "While constructing the external wrapper for:" + ], + "start_col": 23, + "start_line": 2 + } + }, + "5360": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.isApprovedForAll" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 44, + "end_line": 2, + "input_file": { + "filename": "autogen/starknet/external/isApprovedForAll/28e6449b750a764997de3246d5af785f29a76b7b369ce53a25f4614d960a20f3.cairo" + }, + "parent_location": [ + { + "end_col": 22, + "end_line": 421, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "parent_location": [ + { + "end_col": 70, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/isApprovedForAll/da17921a4e81c09e730800bbf23bfdbe5e9e6bfaedc59d80fbf62087fa43c27d.cairo" + }, + "parent_location": [ + { + "end_col": 22, + "end_line": 421, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "start_col": 6, + "start_line": 421 + }, + "While constructing the external wrapper for:" + ], + "start_col": 63, + "start_line": 1 + }, + "While expanding the reference 'retdata' in:" + ], + "start_col": 6, + "start_line": 421 + }, + "While constructing the external wrapper for:" + ], + "start_col": 37, + "start_line": 2 + } + }, + "5361": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.isApprovedForAll" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 72, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/isApprovedForAll/da17921a4e81c09e730800bbf23bfdbe5e9e6bfaedc59d80fbf62087fa43c27d.cairo" + }, + "parent_location": [ + { + "end_col": 22, + "end_line": 421, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "start_col": 6, + "start_line": 421 + }, + "While constructing the external wrapper for:" + ], + "start_col": 1, + "start_line": 1 + } + }, + "5362": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.approve" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 40, + "end_line": 433, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "parent_location": [ + { + "end_col": 44, + "end_line": 158, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "parent_location": [ + { + "end_col": 32, + "end_line": 436, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "start_col": 5, + "start_line": 436 + }, + "While trying to retrieve the implicit argument 'pedersen_ptr' in:" + ], + "start_col": 18, + "start_line": 158 + }, + "While expanding the reference 'pedersen_ptr' in:" + ], + "start_col": 14, + "start_line": 433 + } + }, + "5363": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.approve" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 60, + "end_line": 433, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "parent_location": [ + { + "end_col": 64, + "end_line": 158, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "parent_location": [ + { + "end_col": 32, + "end_line": 436, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "start_col": 5, + "start_line": 436 + }, + "While trying to retrieve the implicit argument 'syscall_ptr' in:" + ], + "start_col": 46, + "start_line": 158 + }, + "While expanding the reference 'syscall_ptr' in:" + ], + "start_col": 42, + "start_line": 433 + } + }, + "5364": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.approve" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 77, + "end_line": 433, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "parent_location": [ + { + "end_col": 81, + "end_line": 158, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "parent_location": [ + { + "end_col": 32, + "end_line": 436, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "start_col": 5, + "start_line": 436 + }, + "While trying to retrieve the implicit argument 'range_check_ptr' in:" + ], + "start_col": 66, + "start_line": 158 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 62, + "start_line": 433 + } + }, + "5365": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.approve" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 13, + "end_line": 434, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "parent_location": [ + { + "end_col": 22, + "end_line": 436, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "start_col": 20, + "start_line": 436 + }, + "While expanding the reference 'to' in:" + ], + "start_col": 5, + "start_line": 434 + } + }, + "5366": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.approve" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 31, + "end_line": 434, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "parent_location": [ + { + "end_col": 31, + "end_line": 436, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "start_col": 24, + "start_line": 436 + }, + "While expanding the reference 'tokenId' in:" + ], + "start_col": 15, + "start_line": 434 + } + }, + "5367": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.approve" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 31, + "end_line": 434, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "parent_location": [ + { + "end_col": 31, + "end_line": 436, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "start_col": 24, + "start_line": 436 + }, + "While expanding the reference 'tokenId' in:" + ], + "start_col": 15, + "start_line": 434 + } + }, + "5368": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.approve" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 32, + "end_line": 436, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "start_col": 5, + "start_line": 436 + } + }, + "5370": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.approve" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 15, + "end_line": 437, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "start_col": 5, + "start_line": 437 + } + }, + "5371": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.approve" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 40, + "end_line": 3, + "input_file": { + "filename": "autogen/starknet/arg_processor/60c79ef5477686f2843e61432dcde7f4fc0f354d42095115ea9dca625a35df6e.cairo" + }, + "parent_location": [ + { + "end_col": 31, + "end_line": 434, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "parent_location": [ + { + "end_col": 45, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/arg_processor/c31620b02d4d706f0542c989b2aadc01b0981d1f6a5933a8fe4937ace3d70d92.cairo" + }, + "parent_location": [ + { + "end_col": 13, + "end_line": 433, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "parent_location": [ + { + "end_col": 57, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/arg_processor/01cba52f8515996bb9d7070bde81ff39281d096d7024a558efcba6e1fd2402cf.cairo" + }, + "parent_location": [ + { + "end_col": 13, + "end_line": 433, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "start_col": 6, + "start_line": 433 + }, + "While handling calldata of" + ], + "start_col": 35, + "start_line": 1 + }, + "While expanding the reference '__calldata_actual_size' in:" + ], + "start_col": 6, + "start_line": 433 + }, + "While handling calldata of" + ], + "start_col": 31, + "start_line": 1 + }, + "While expanding the reference '__calldata_ptr' in:" + ], + "start_col": 15, + "start_line": 434 + }, + "While handling calldata argument 'tokenId'" + ], + "start_col": 22, + "start_line": 3 + } + }, + "5373": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.approve" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 58, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/arg_processor/01cba52f8515996bb9d7070bde81ff39281d096d7024a558efcba6e1fd2402cf.cairo" + }, + "parent_location": [ + { + "end_col": 13, + "end_line": 433, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "start_col": 6, + "start_line": 433 + }, + "While handling calldata of" + ], + "start_col": 1, + "start_line": 1 + } + }, + "5374": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.approve" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 110, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/approve/9684a85e93c782014ca14293edea4eb2502039a5a7b6538ecd39c56faaf12529.cairo" + }, + "parent_location": [ + { + "end_col": 40, + "end_line": 433, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "parent_location": [ + { + "end_col": 57, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/approve/5388f692818f55977b2452a31ce8c0a2aaeeb5ab5c5db8c2d2f3ab50dcff739b.cairo" + }, + "parent_location": [ + { + "end_col": 13, + "end_line": 433, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "start_col": 6, + "start_line": 433 + }, + "While constructing the external wrapper for:" + ], + "start_col": 45, + "start_line": 1 + }, + "While expanding the reference 'pedersen_ptr' in:" + ], + "start_col": 14, + "start_line": 433 + }, + "While constructing the external wrapper for:" + ], + "start_col": 20, + "start_line": 1 + } + }, + "5375": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.approve" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 64, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/approve/b2c52ca2d2a8fc8791a983086d8716c5eacd0c3d62934914d2286f84b98ff4cb.cairo" + }, + "parent_location": [ + { + "end_col": 60, + "end_line": 433, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "parent_location": [ + { + "end_col": 82, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/approve/5388f692818f55977b2452a31ce8c0a2aaeeb5ab5c5db8c2d2f3ab50dcff739b.cairo" + }, + "parent_location": [ + { + "end_col": 13, + "end_line": 433, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "start_col": 6, + "start_line": 433 + }, + "While constructing the external wrapper for:" + ], + "start_col": 71, + "start_line": 1 + }, + "While expanding the reference 'syscall_ptr' in:" + ], + "start_col": 42, + "start_line": 433 + }, + "While constructing the external wrapper for:" + ], + "start_col": 19, + "start_line": 1 + } + }, + "5376": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.approve" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 67, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/approve/741ea357d6336b0bed7bf0472425acd0311d543883b803388880e60a232040c7.cairo" + }, + "parent_location": [ + { + "end_col": 77, + "end_line": 433, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "parent_location": [ + { + "end_col": 115, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/approve/5388f692818f55977b2452a31ce8c0a2aaeeb5ab5c5db8c2d2f3ab50dcff739b.cairo" + }, + "parent_location": [ + { + "end_col": 13, + "end_line": 433, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "start_col": 6, + "start_line": 433 + }, + "While constructing the external wrapper for:" + ], + "start_col": 100, + "start_line": 1 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 62, + "start_line": 433 + }, + "While constructing the external wrapper for:" + ], + "start_col": 23, + "start_line": 1 + } + }, + "5377": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.approve" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 41, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/arg_processor/dceaabc265216c0ff87c509d90446554648ec4d692c521cda952464d1fc22972.cairo" + }, + "parent_location": [ + { + "end_col": 13, + "end_line": 434, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "parent_location": [ + { + "end_col": 137, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/approve/5388f692818f55977b2452a31ce8c0a2aaeeb5ab5c5db8c2d2f3ab50dcff739b.cairo" + }, + "parent_location": [ + { + "end_col": 13, + "end_line": 433, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "start_col": 6, + "start_line": 433 + }, + "While constructing the external wrapper for:" + ], + "start_col": 120, + "start_line": 1 + }, + "While expanding the reference '__calldata_arg_to' in:" + ], + "start_col": 5, + "start_line": 434 + }, + "While handling calldata argument 'to'" + ], + "start_col": 25, + "start_line": 1 + } + }, + "5378": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.approve" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 67, + "end_line": 2, + "input_file": { + "filename": "autogen/starknet/arg_processor/60c79ef5477686f2843e61432dcde7f4fc0f354d42095115ea9dca625a35df6e.cairo" + }, + "parent_location": [ + { + "end_col": 31, + "end_line": 434, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "parent_location": [ + { + "end_col": 169, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/approve/5388f692818f55977b2452a31ce8c0a2aaeeb5ab5c5db8c2d2f3ab50dcff739b.cairo" + }, + "parent_location": [ + { + "end_col": 13, + "end_line": 433, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "start_col": 6, + "start_line": 433 + }, + "While constructing the external wrapper for:" + ], + "start_col": 147, + "start_line": 1 + }, + "While expanding the reference '__calldata_arg_tokenId' in:" + ], + "start_col": 15, + "start_line": 434 + }, + "While handling calldata argument 'tokenId'" + ], + "start_col": 30, + "start_line": 1 + } + }, + "5379": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.approve" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 67, + "end_line": 2, + "input_file": { + "filename": "autogen/starknet/arg_processor/60c79ef5477686f2843e61432dcde7f4fc0f354d42095115ea9dca625a35df6e.cairo" + }, + "parent_location": [ + { + "end_col": 31, + "end_line": 434, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "parent_location": [ + { + "end_col": 169, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/approve/5388f692818f55977b2452a31ce8c0a2aaeeb5ab5c5db8c2d2f3ab50dcff739b.cairo" + }, + "parent_location": [ + { + "end_col": 13, + "end_line": 433, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "start_col": 6, + "start_line": 433 + }, + "While constructing the external wrapper for:" + ], + "start_col": 147, + "start_line": 1 + }, + "While expanding the reference '__calldata_arg_tokenId' in:" + ], + "start_col": 15, + "start_line": 434 + }, + "While handling calldata argument 'tokenId'" + ], + "start_col": 30, + "start_line": 1 + } + }, + "5380": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.approve" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 13, + "end_line": 433, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "start_col": 6, + "start_line": 433 + } + }, + "5382": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.approve" + ], + "flow_tracking_data": null, + "hints": [ + { + "location": { + "end_col": 34, + "end_line": 2, + "input_file": { + "filename": "autogen/starknet/external/approve/5388f692818f55977b2452a31ce8c0a2aaeeb5ab5c5db8c2d2f3ab50dcff739b.cairo" + }, + "parent_location": [ + { + "end_col": 13, + "end_line": 433, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "start_col": 6, + "start_line": 433 + }, + "While constructing the external wrapper for:" + ], + "start_col": 1, + "start_line": 2 + }, + "n_prefix_newlines": 0 + } + ], + "inst": { + "end_col": 24, + "end_line": 3, + "input_file": { + "filename": "autogen/starknet/external/approve/5388f692818f55977b2452a31ce8c0a2aaeeb5ab5c5db8c2d2f3ab50dcff739b.cairo" + }, + "parent_location": [ + { + "end_col": 13, + "end_line": 433, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "start_col": 6, + "start_line": 433 + }, + "While constructing the external wrapper for:" + ], + "start_col": 1, + "start_line": 3 + } + }, + "5384": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.approve" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 82, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/approve/5388f692818f55977b2452a31ce8c0a2aaeeb5ab5c5db8c2d2f3ab50dcff739b.cairo" + }, + "parent_location": [ + { + "end_col": 13, + "end_line": 433, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "parent_location": [ + { + "end_col": 20, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/approve/da17921a4e81c09e730800bbf23bfdbe5e9e6bfaedc59d80fbf62087fa43c27d.cairo" + }, + "parent_location": [ + { + "end_col": 13, + "end_line": 433, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "start_col": 6, + "start_line": 433 + }, + "While constructing the external wrapper for:" + ], + "start_col": 9, + "start_line": 1 + }, + "While expanding the reference 'syscall_ptr' in:" + ], + "start_col": 6, + "start_line": 433 + }, + "While constructing the external wrapper for:" + ], + "start_col": 71, + "start_line": 1 + } + }, + "5385": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.approve" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 57, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/approve/5388f692818f55977b2452a31ce8c0a2aaeeb5ab5c5db8c2d2f3ab50dcff739b.cairo" + }, + "parent_location": [ + { + "end_col": 13, + "end_line": 433, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "parent_location": [ + { + "end_col": 33, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/approve/da17921a4e81c09e730800bbf23bfdbe5e9e6bfaedc59d80fbf62087fa43c27d.cairo" + }, + "parent_location": [ + { + "end_col": 13, + "end_line": 433, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "start_col": 6, + "start_line": 433 + }, + "While constructing the external wrapper for:" + ], + "start_col": 21, + "start_line": 1 + }, + "While expanding the reference 'pedersen_ptr' in:" + ], + "start_col": 6, + "start_line": 433 + }, + "While constructing the external wrapper for:" + ], + "start_col": 45, + "start_line": 1 + } + }, + "5386": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.approve" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 115, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/approve/5388f692818f55977b2452a31ce8c0a2aaeeb5ab5c5db8c2d2f3ab50dcff739b.cairo" + }, + "parent_location": [ + { + "end_col": 13, + "end_line": 433, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "parent_location": [ + { + "end_col": 49, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/approve/da17921a4e81c09e730800bbf23bfdbe5e9e6bfaedc59d80fbf62087fa43c27d.cairo" + }, + "parent_location": [ + { + "end_col": 13, + "end_line": 433, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "start_col": 6, + "start_line": 433 + }, + "While constructing the external wrapper for:" + ], + "start_col": 34, + "start_line": 1 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 6, + "start_line": 433 + }, + "While constructing the external wrapper for:" + ], + "start_col": 100, + "start_line": 1 + } + }, + "5387": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.approve" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 21, + "end_line": 4, + "input_file": { + "filename": "autogen/starknet/external/approve/5388f692818f55977b2452a31ce8c0a2aaeeb5ab5c5db8c2d2f3ab50dcff739b.cairo" + }, + "parent_location": [ + { + "end_col": 13, + "end_line": 433, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "parent_location": [ + { + "end_col": 62, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/approve/da17921a4e81c09e730800bbf23bfdbe5e9e6bfaedc59d80fbf62087fa43c27d.cairo" + }, + "parent_location": [ + { + "end_col": 13, + "end_line": 433, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "start_col": 6, + "start_line": 433 + }, + "While constructing the external wrapper for:" + ], + "start_col": 50, + "start_line": 1 + }, + "While expanding the reference 'retdata_size' in:" + ], + "start_col": 6, + "start_line": 433 + }, + "While constructing the external wrapper for:" + ], + "start_col": 20, + "start_line": 4 + } + }, + "5389": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.approve" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 16, + "end_line": 3, + "input_file": { + "filename": "autogen/starknet/external/approve/5388f692818f55977b2452a31ce8c0a2aaeeb5ab5c5db8c2d2f3ab50dcff739b.cairo" + }, + "parent_location": [ + { + "end_col": 13, + "end_line": 433, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "parent_location": [ + { + "end_col": 70, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/approve/da17921a4e81c09e730800bbf23bfdbe5e9e6bfaedc59d80fbf62087fa43c27d.cairo" + }, + "parent_location": [ + { + "end_col": 13, + "end_line": 433, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "start_col": 6, + "start_line": 433 + }, + "While constructing the external wrapper for:" + ], + "start_col": 63, + "start_line": 1 + }, + "While expanding the reference 'retdata' in:" + ], + "start_col": 6, + "start_line": 433 + }, + "While constructing the external wrapper for:" + ], + "start_col": 9, + "start_line": 3 + } + }, + "5390": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.approve" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 72, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/approve/da17921a4e81c09e730800bbf23bfdbe5e9e6bfaedc59d80fbf62087fa43c27d.cairo" + }, + "parent_location": [ + { + "end_col": 13, + "end_line": 433, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "start_col": 6, + "start_line": 433 + }, + "While constructing the external wrapper for:" + ], + "start_col": 1, + "start_line": 1 + } + }, + "5391": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.setApprovalForAll" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 42, + "end_line": 441, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "parent_location": [ + { + "end_col": 49, + "end_line": 192, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "parent_location": [ + { + "end_col": 52, + "end_line": 444, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "start_col": 5, + "start_line": 444 + }, + "While trying to retrieve the implicit argument 'syscall_ptr' in:" + ], + "start_col": 31, + "start_line": 192 + }, + "While expanding the reference 'syscall_ptr' in:" + ], + "start_col": 24, + "start_line": 441 + } + }, + "5392": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.setApprovalForAll" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 70, + "end_line": 441, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "parent_location": [ + { + "end_col": 77, + "end_line": 192, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "parent_location": [ + { + "end_col": 52, + "end_line": 444, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "start_col": 5, + "start_line": 444 + }, + "While trying to retrieve the implicit argument 'pedersen_ptr' in:" + ], + "start_col": 51, + "start_line": 192 + }, + "While expanding the reference 'pedersen_ptr' in:" + ], + "start_col": 44, + "start_line": 441 + } + }, + "5393": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.setApprovalForAll" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 87, + "end_line": 441, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "parent_location": [ + { + "end_col": 94, + "end_line": 192, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "parent_location": [ + { + "end_col": 52, + "end_line": 444, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "start_col": 5, + "start_line": 444 + }, + "While trying to retrieve the implicit argument 'range_check_ptr' in:" + ], + "start_col": 79, + "start_line": 192 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 72, + "start_line": 441 + } + }, + "5394": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.setApprovalForAll" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 19, + "end_line": 442, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "parent_location": [ + { + "end_col": 41, + "end_line": 444, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "start_col": 33, + "start_line": 444 + }, + "While expanding the reference 'operator' in:" + ], + "start_col": 5, + "start_line": 442 + } + }, + "5395": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.setApprovalForAll" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 35, + "end_line": 442, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "parent_location": [ + { + "end_col": 51, + "end_line": 444, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "start_col": 43, + "start_line": 444 + }, + "While expanding the reference 'approved' in:" + ], + "start_col": 21, + "start_line": 442 + } + }, + "5396": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.setApprovalForAll" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 52, + "end_line": 444, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "start_col": 5, + "start_line": 444 + } + }, + "5398": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.setApprovalForAll" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 15, + "end_line": 445, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "start_col": 5, + "start_line": 445 + } + }, + "5399": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.setApprovalForAll" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 40, + "end_line": 2, + "input_file": { + "filename": "autogen/starknet/arg_processor/3df93897a3d5ba5292d0e14e5ec6fc5a7b4e70846d4b45d9e0d60ead1a53339e.cairo" + }, + "parent_location": [ + { + "end_col": 35, + "end_line": 442, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "parent_location": [ + { + "end_col": 45, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/arg_processor/c31620b02d4d706f0542c989b2aadc01b0981d1f6a5933a8fe4937ace3d70d92.cairo" + }, + "parent_location": [ + { + "end_col": 23, + "end_line": 441, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "parent_location": [ + { + "end_col": 57, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/arg_processor/01cba52f8515996bb9d7070bde81ff39281d096d7024a558efcba6e1fd2402cf.cairo" + }, + "parent_location": [ + { + "end_col": 23, + "end_line": 441, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "start_col": 6, + "start_line": 441 + }, + "While handling calldata of" + ], + "start_col": 35, + "start_line": 1 + }, + "While expanding the reference '__calldata_actual_size' in:" + ], + "start_col": 6, + "start_line": 441 + }, + "While handling calldata of" + ], + "start_col": 31, + "start_line": 1 + }, + "While expanding the reference '__calldata_ptr' in:" + ], + "start_col": 21, + "start_line": 442 + }, + "While handling calldata argument 'approved'" + ], + "start_col": 22, + "start_line": 2 + } + }, + "5401": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.setApprovalForAll" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 58, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/arg_processor/01cba52f8515996bb9d7070bde81ff39281d096d7024a558efcba6e1fd2402cf.cairo" + }, + "parent_location": [ + { + "end_col": 23, + "end_line": 441, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "start_col": 6, + "start_line": 441 + }, + "While handling calldata of" + ], + "start_col": 1, + "start_line": 1 + } + }, + "5402": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.setApprovalForAll" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 64, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/setApprovalForAll/b2c52ca2d2a8fc8791a983086d8716c5eacd0c3d62934914d2286f84b98ff4cb.cairo" + }, + "parent_location": [ + { + "end_col": 42, + "end_line": 441, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "parent_location": [ + { + "end_col": 55, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/setApprovalForAll/36d3b3d1e829d7c23b24cbbecc8b2addd27fb9b3d959fca94c45d76a0c77f32d.cairo" + }, + "parent_location": [ + { + "end_col": 23, + "end_line": 441, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "start_col": 6, + "start_line": 441 + }, + "While constructing the external wrapper for:" + ], + "start_col": 44, + "start_line": 1 + }, + "While expanding the reference 'syscall_ptr' in:" + ], + "start_col": 24, + "start_line": 441 + }, + "While constructing the external wrapper for:" + ], + "start_col": 19, + "start_line": 1 + } + }, + "5403": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.setApprovalForAll" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 110, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/setApprovalForAll/9684a85e93c782014ca14293edea4eb2502039a5a7b6538ecd39c56faaf12529.cairo" + }, + "parent_location": [ + { + "end_col": 70, + "end_line": 441, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "parent_location": [ + { + "end_col": 82, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/setApprovalForAll/36d3b3d1e829d7c23b24cbbecc8b2addd27fb9b3d959fca94c45d76a0c77f32d.cairo" + }, + "parent_location": [ + { + "end_col": 23, + "end_line": 441, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "start_col": 6, + "start_line": 441 + }, + "While constructing the external wrapper for:" + ], + "start_col": 70, + "start_line": 1 + }, + "While expanding the reference 'pedersen_ptr' in:" + ], + "start_col": 44, + "start_line": 441 + }, + "While constructing the external wrapper for:" + ], + "start_col": 20, + "start_line": 1 + } + }, + "5404": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.setApprovalForAll" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 67, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/setApprovalForAll/741ea357d6336b0bed7bf0472425acd0311d543883b803388880e60a232040c7.cairo" + }, + "parent_location": [ + { + "end_col": 87, + "end_line": 441, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "parent_location": [ + { + "end_col": 115, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/setApprovalForAll/36d3b3d1e829d7c23b24cbbecc8b2addd27fb9b3d959fca94c45d76a0c77f32d.cairo" + }, + "parent_location": [ + { + "end_col": 23, + "end_line": 441, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "start_col": 6, + "start_line": 441 + }, + "While constructing the external wrapper for:" + ], + "start_col": 100, + "start_line": 1 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 72, + "start_line": 441 + }, + "While constructing the external wrapper for:" + ], + "start_col": 23, + "start_line": 1 + } + }, + "5405": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.setApprovalForAll" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 47, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/arg_processor/c28d01f4036658535ed1f26a855ca481100f6b9fa5c266733e27ba2dce390d91.cairo" + }, + "parent_location": [ + { + "end_col": 19, + "end_line": 442, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "parent_location": [ + { + "end_col": 149, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/setApprovalForAll/36d3b3d1e829d7c23b24cbbecc8b2addd27fb9b3d959fca94c45d76a0c77f32d.cairo" + }, + "parent_location": [ + { + "end_col": 23, + "end_line": 441, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "start_col": 6, + "start_line": 441 + }, + "While constructing the external wrapper for:" + ], + "start_col": 126, + "start_line": 1 + }, + "While expanding the reference '__calldata_arg_operator' in:" + ], + "start_col": 5, + "start_line": 442 + }, + "While handling calldata argument 'operator'" + ], + "start_col": 31, + "start_line": 1 + } + }, + "5406": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.setApprovalForAll" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 47, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/arg_processor/3df93897a3d5ba5292d0e14e5ec6fc5a7b4e70846d4b45d9e0d60ead1a53339e.cairo" + }, + "parent_location": [ + { + "end_col": 35, + "end_line": 442, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "parent_location": [ + { + "end_col": 183, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/setApprovalForAll/36d3b3d1e829d7c23b24cbbecc8b2addd27fb9b3d959fca94c45d76a0c77f32d.cairo" + }, + "parent_location": [ + { + "end_col": 23, + "end_line": 441, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "start_col": 6, + "start_line": 441 + }, + "While constructing the external wrapper for:" + ], + "start_col": 160, + "start_line": 1 + }, + "While expanding the reference '__calldata_arg_approved' in:" + ], + "start_col": 21, + "start_line": 442 + }, + "While handling calldata argument 'approved'" + ], + "start_col": 31, + "start_line": 1 + } + }, + "5407": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.setApprovalForAll" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 23, + "end_line": 441, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "start_col": 6, + "start_line": 441 + } + }, + "5409": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.setApprovalForAll" + ], + "flow_tracking_data": null, + "hints": [ + { + "location": { + "end_col": 34, + "end_line": 2, + "input_file": { + "filename": "autogen/starknet/external/setApprovalForAll/36d3b3d1e829d7c23b24cbbecc8b2addd27fb9b3d959fca94c45d76a0c77f32d.cairo" + }, + "parent_location": [ + { + "end_col": 23, + "end_line": 441, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "start_col": 6, + "start_line": 441 + }, + "While constructing the external wrapper for:" + ], + "start_col": 1, + "start_line": 2 + }, + "n_prefix_newlines": 0 + } + ], + "inst": { + "end_col": 24, + "end_line": 3, + "input_file": { + "filename": "autogen/starknet/external/setApprovalForAll/36d3b3d1e829d7c23b24cbbecc8b2addd27fb9b3d959fca94c45d76a0c77f32d.cairo" + }, + "parent_location": [ + { + "end_col": 23, + "end_line": 441, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "start_col": 6, + "start_line": 441 + }, + "While constructing the external wrapper for:" + ], + "start_col": 1, + "start_line": 3 + } + }, + "5411": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.setApprovalForAll" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 55, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/setApprovalForAll/36d3b3d1e829d7c23b24cbbecc8b2addd27fb9b3d959fca94c45d76a0c77f32d.cairo" + }, + "parent_location": [ + { + "end_col": 23, + "end_line": 441, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "parent_location": [ + { + "end_col": 20, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/setApprovalForAll/da17921a4e81c09e730800bbf23bfdbe5e9e6bfaedc59d80fbf62087fa43c27d.cairo" + }, + "parent_location": [ + { + "end_col": 23, + "end_line": 441, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "start_col": 6, + "start_line": 441 + }, + "While constructing the external wrapper for:" + ], + "start_col": 9, + "start_line": 1 + }, + "While expanding the reference 'syscall_ptr' in:" + ], + "start_col": 6, + "start_line": 441 + }, + "While constructing the external wrapper for:" + ], + "start_col": 44, + "start_line": 1 + } + }, + "5412": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.setApprovalForAll" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 82, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/setApprovalForAll/36d3b3d1e829d7c23b24cbbecc8b2addd27fb9b3d959fca94c45d76a0c77f32d.cairo" + }, + "parent_location": [ + { + "end_col": 23, + "end_line": 441, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "parent_location": [ + { + "end_col": 33, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/setApprovalForAll/da17921a4e81c09e730800bbf23bfdbe5e9e6bfaedc59d80fbf62087fa43c27d.cairo" + }, + "parent_location": [ + { + "end_col": 23, + "end_line": 441, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "start_col": 6, + "start_line": 441 + }, + "While constructing the external wrapper for:" + ], + "start_col": 21, + "start_line": 1 + }, + "While expanding the reference 'pedersen_ptr' in:" + ], + "start_col": 6, + "start_line": 441 + }, + "While constructing the external wrapper for:" + ], + "start_col": 70, + "start_line": 1 + } + }, + "5413": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.setApprovalForAll" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 115, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/setApprovalForAll/36d3b3d1e829d7c23b24cbbecc8b2addd27fb9b3d959fca94c45d76a0c77f32d.cairo" + }, + "parent_location": [ + { + "end_col": 23, + "end_line": 441, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "parent_location": [ + { + "end_col": 49, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/setApprovalForAll/da17921a4e81c09e730800bbf23bfdbe5e9e6bfaedc59d80fbf62087fa43c27d.cairo" + }, + "parent_location": [ + { + "end_col": 23, + "end_line": 441, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "start_col": 6, + "start_line": 441 + }, + "While constructing the external wrapper for:" + ], + "start_col": 34, + "start_line": 1 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 6, + "start_line": 441 + }, + "While constructing the external wrapper for:" + ], + "start_col": 100, + "start_line": 1 + } + }, + "5414": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.setApprovalForAll" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 21, + "end_line": 4, + "input_file": { + "filename": "autogen/starknet/external/setApprovalForAll/36d3b3d1e829d7c23b24cbbecc8b2addd27fb9b3d959fca94c45d76a0c77f32d.cairo" + }, + "parent_location": [ + { + "end_col": 23, + "end_line": 441, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "parent_location": [ + { + "end_col": 62, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/setApprovalForAll/da17921a4e81c09e730800bbf23bfdbe5e9e6bfaedc59d80fbf62087fa43c27d.cairo" + }, + "parent_location": [ + { + "end_col": 23, + "end_line": 441, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "start_col": 6, + "start_line": 441 + }, + "While constructing the external wrapper for:" + ], + "start_col": 50, + "start_line": 1 + }, + "While expanding the reference 'retdata_size' in:" + ], + "start_col": 6, + "start_line": 441 + }, + "While constructing the external wrapper for:" + ], + "start_col": 20, + "start_line": 4 + } + }, + "5416": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.setApprovalForAll" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 16, + "end_line": 3, + "input_file": { + "filename": "autogen/starknet/external/setApprovalForAll/36d3b3d1e829d7c23b24cbbecc8b2addd27fb9b3d959fca94c45d76a0c77f32d.cairo" + }, + "parent_location": [ + { + "end_col": 23, + "end_line": 441, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "parent_location": [ + { + "end_col": 70, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/setApprovalForAll/da17921a4e81c09e730800bbf23bfdbe5e9e6bfaedc59d80fbf62087fa43c27d.cairo" + }, + "parent_location": [ + { + "end_col": 23, + "end_line": 441, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "start_col": 6, + "start_line": 441 + }, + "While constructing the external wrapper for:" + ], + "start_col": 63, + "start_line": 1 + }, + "While expanding the reference 'retdata' in:" + ], + "start_col": 6, + "start_line": 441 + }, + "While constructing the external wrapper for:" + ], + "start_col": 9, + "start_line": 3 + } + }, + "5417": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.setApprovalForAll" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 72, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/setApprovalForAll/da17921a4e81c09e730800bbf23bfdbe5e9e6bfaedc59d80fbf62087fa43c27d.cairo" + }, + "parent_location": [ + { + "end_col": 23, + "end_line": 441, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "start_col": 6, + "start_line": 441 + }, + "While constructing the external wrapper for:" + ], + "start_col": 1, + "start_line": 1 + } + }, + "5418": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.transferFrom" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 45, + "end_line": 449, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "parent_location": [ + { + "end_col": 50, + "end_line": 92, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" + }, + "parent_location": [ + { + "end_col": 55, + "end_line": 452, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "start_col": 5, + "start_line": 452 + }, + "While trying to retrieve the implicit argument 'pedersen_ptr' in:" + ], + "start_col": 24, + "start_line": 92 + }, + "While expanding the reference 'pedersen_ptr' in:" + ], + "start_col": 19, + "start_line": 449 + } + }, + "5419": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.transferFrom" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 65, + "end_line": 449, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "parent_location": [ + { + "end_col": 70, + "end_line": 92, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" + }, + "parent_location": [ + { + "end_col": 55, + "end_line": 452, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "start_col": 5, + "start_line": 452 + }, + "While trying to retrieve the implicit argument 'syscall_ptr' in:" + ], + "start_col": 52, + "start_line": 92 + }, + "While expanding the reference 'syscall_ptr' in:" + ], + "start_col": 47, + "start_line": 449 + } + }, + "5420": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.transferFrom" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 82, + "end_line": 449, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "parent_location": [ + { + "end_col": 87, + "end_line": 92, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" + }, + "parent_location": [ + { + "end_col": 55, + "end_line": 452, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "start_col": 5, + "start_line": 452 + }, + "While trying to retrieve the implicit argument 'range_check_ptr' in:" + ], + "start_col": 72, + "start_line": 92 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 67, + "start_line": 449 + } + }, + "5421": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.transferFrom" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 16, + "end_line": 450, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "parent_location": [ + { + "end_col": 41, + "end_line": 452, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "start_col": 36, + "start_line": 452 + }, + "While expanding the reference 'from_' in:" + ], + "start_col": 5, + "start_line": 450 + } + }, + "5422": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.transferFrom" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 26, + "end_line": 450, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "parent_location": [ + { + "end_col": 45, + "end_line": 452, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "start_col": 43, + "start_line": 452 + }, + "While expanding the reference 'to' in:" + ], + "start_col": 18, + "start_line": 450 + } + }, + "5423": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.transferFrom" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 44, + "end_line": 450, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "parent_location": [ + { + "end_col": 54, + "end_line": 452, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "start_col": 47, + "start_line": 452 + }, + "While expanding the reference 'tokenId' in:" + ], + "start_col": 28, + "start_line": 450 + } + }, + "5424": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.transferFrom" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 44, + "end_line": 450, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "parent_location": [ + { + "end_col": 54, + "end_line": 452, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "start_col": 47, + "start_line": 452 + }, + "While expanding the reference 'tokenId' in:" + ], + "start_col": 28, + "start_line": 450 + } + }, + "5425": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.transferFrom" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 55, + "end_line": 452, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "start_col": 5, + "start_line": 452 + } + }, + "5427": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.transferFrom" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 15, + "end_line": 453, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "start_col": 5, + "start_line": 453 + } + }, + "5428": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.transferFrom" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 40, + "end_line": 3, + "input_file": { + "filename": "autogen/starknet/arg_processor/60c79ef5477686f2843e61432dcde7f4fc0f354d42095115ea9dca625a35df6e.cairo" + }, + "parent_location": [ + { + "end_col": 44, + "end_line": 450, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "parent_location": [ + { + "end_col": 45, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/arg_processor/c31620b02d4d706f0542c989b2aadc01b0981d1f6a5933a8fe4937ace3d70d92.cairo" + }, + "parent_location": [ + { + "end_col": 18, + "end_line": 449, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "parent_location": [ + { + "end_col": 57, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/arg_processor/01cba52f8515996bb9d7070bde81ff39281d096d7024a558efcba6e1fd2402cf.cairo" + }, + "parent_location": [ + { + "end_col": 18, + "end_line": 449, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "start_col": 6, + "start_line": 449 + }, + "While handling calldata of" + ], + "start_col": 35, + "start_line": 1 + }, + "While expanding the reference '__calldata_actual_size' in:" + ], + "start_col": 6, + "start_line": 449 + }, + "While handling calldata of" + ], + "start_col": 31, + "start_line": 1 + }, + "While expanding the reference '__calldata_ptr' in:" + ], + "start_col": 28, + "start_line": 450 + }, + "While handling calldata argument 'tokenId'" + ], + "start_col": 22, + "start_line": 3 + } + }, + "5430": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.transferFrom" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 58, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/arg_processor/01cba52f8515996bb9d7070bde81ff39281d096d7024a558efcba6e1fd2402cf.cairo" + }, + "parent_location": [ + { + "end_col": 18, + "end_line": 449, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "start_col": 6, + "start_line": 449 + }, + "While handling calldata of" + ], + "start_col": 1, + "start_line": 1 + } + }, + "5431": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.transferFrom" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 110, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/transferFrom/9684a85e93c782014ca14293edea4eb2502039a5a7b6538ecd39c56faaf12529.cairo" + }, + "parent_location": [ + { + "end_col": 45, + "end_line": 449, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "parent_location": [ + { + "end_col": 57, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/transferFrom/ebf9f2690eeffee22f3d99ab5430147a11d0a2aa047472f5b737d6d09ce13c6e.cairo" + }, + "parent_location": [ + { + "end_col": 18, + "end_line": 449, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "start_col": 6, + "start_line": 449 + }, + "While constructing the external wrapper for:" + ], + "start_col": 45, + "start_line": 1 + }, + "While expanding the reference 'pedersen_ptr' in:" + ], + "start_col": 19, + "start_line": 449 + }, + "While constructing the external wrapper for:" + ], + "start_col": 20, + "start_line": 1 + } + }, + "5432": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.transferFrom" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 64, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/transferFrom/b2c52ca2d2a8fc8791a983086d8716c5eacd0c3d62934914d2286f84b98ff4cb.cairo" + }, + "parent_location": [ + { + "end_col": 65, + "end_line": 449, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "parent_location": [ + { + "end_col": 82, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/transferFrom/ebf9f2690eeffee22f3d99ab5430147a11d0a2aa047472f5b737d6d09ce13c6e.cairo" + }, + "parent_location": [ + { + "end_col": 18, + "end_line": 449, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "start_col": 6, + "start_line": 449 + }, + "While constructing the external wrapper for:" + ], + "start_col": 71, + "start_line": 1 + }, + "While expanding the reference 'syscall_ptr' in:" + ], + "start_col": 47, + "start_line": 449 + }, + "While constructing the external wrapper for:" + ], + "start_col": 19, + "start_line": 1 + } + }, + "5433": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.transferFrom" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 67, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/transferFrom/741ea357d6336b0bed7bf0472425acd0311d543883b803388880e60a232040c7.cairo" + }, + "parent_location": [ + { + "end_col": 82, + "end_line": 449, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "parent_location": [ + { + "end_col": 115, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/transferFrom/ebf9f2690eeffee22f3d99ab5430147a11d0a2aa047472f5b737d6d09ce13c6e.cairo" + }, + "parent_location": [ + { + "end_col": 18, + "end_line": 449, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "start_col": 6, + "start_line": 449 + }, + "While constructing the external wrapper for:" + ], + "start_col": 100, + "start_line": 1 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 67, + "start_line": 449 + }, + "While constructing the external wrapper for:" + ], + "start_col": 23, + "start_line": 1 + } + }, + "5434": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.transferFrom" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 44, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/arg_processor/df39236eab78c921af48d719316dc25209f5ba97dc94936a936f353a674f3486.cairo" + }, + "parent_location": [ + { + "end_col": 16, + "end_line": 450, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "parent_location": [ + { + "end_col": 143, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/transferFrom/ebf9f2690eeffee22f3d99ab5430147a11d0a2aa047472f5b737d6d09ce13c6e.cairo" + }, + "parent_location": [ + { + "end_col": 18, + "end_line": 449, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "start_col": 6, + "start_line": 449 + }, + "While constructing the external wrapper for:" + ], + "start_col": 123, + "start_line": 1 + }, + "While expanding the reference '__calldata_arg_from_' in:" + ], + "start_col": 5, + "start_line": 450 + }, + "While handling calldata argument 'from_'" + ], + "start_col": 28, + "start_line": 1 + } + }, + "5435": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.transferFrom" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 41, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/arg_processor/dceaabc265216c0ff87c509d90446554648ec4d692c521cda952464d1fc22972.cairo" + }, + "parent_location": [ + { + "end_col": 26, + "end_line": 450, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "parent_location": [ + { + "end_col": 165, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/transferFrom/ebf9f2690eeffee22f3d99ab5430147a11d0a2aa047472f5b737d6d09ce13c6e.cairo" + }, + "parent_location": [ + { + "end_col": 18, + "end_line": 449, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "start_col": 6, + "start_line": 449 + }, + "While constructing the external wrapper for:" + ], + "start_col": 148, + "start_line": 1 + }, + "While expanding the reference '__calldata_arg_to' in:" + ], + "start_col": 18, + "start_line": 450 + }, + "While handling calldata argument 'to'" + ], + "start_col": 25, + "start_line": 1 + } + }, + "5436": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.transferFrom" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 67, + "end_line": 2, + "input_file": { + "filename": "autogen/starknet/arg_processor/60c79ef5477686f2843e61432dcde7f4fc0f354d42095115ea9dca625a35df6e.cairo" + }, + "parent_location": [ + { + "end_col": 44, + "end_line": 450, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "parent_location": [ + { + "end_col": 197, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/transferFrom/ebf9f2690eeffee22f3d99ab5430147a11d0a2aa047472f5b737d6d09ce13c6e.cairo" + }, + "parent_location": [ + { + "end_col": 18, + "end_line": 449, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "start_col": 6, + "start_line": 449 + }, + "While constructing the external wrapper for:" + ], + "start_col": 175, + "start_line": 1 + }, + "While expanding the reference '__calldata_arg_tokenId' in:" + ], + "start_col": 28, + "start_line": 450 + }, + "While handling calldata argument 'tokenId'" + ], + "start_col": 30, + "start_line": 1 + } + }, + "5437": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.transferFrom" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 67, + "end_line": 2, + "input_file": { + "filename": "autogen/starknet/arg_processor/60c79ef5477686f2843e61432dcde7f4fc0f354d42095115ea9dca625a35df6e.cairo" + }, + "parent_location": [ + { + "end_col": 44, + "end_line": 450, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "parent_location": [ + { + "end_col": 197, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/transferFrom/ebf9f2690eeffee22f3d99ab5430147a11d0a2aa047472f5b737d6d09ce13c6e.cairo" + }, + "parent_location": [ + { + "end_col": 18, + "end_line": 449, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "start_col": 6, + "start_line": 449 + }, + "While constructing the external wrapper for:" + ], + "start_col": 175, + "start_line": 1 + }, + "While expanding the reference '__calldata_arg_tokenId' in:" + ], + "start_col": 28, + "start_line": 450 + }, + "While handling calldata argument 'tokenId'" + ], + "start_col": 30, + "start_line": 1 + } + }, + "5438": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.transferFrom" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 18, + "end_line": 449, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "start_col": 6, + "start_line": 449 + } + }, + "5440": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.transferFrom" + ], + "flow_tracking_data": null, + "hints": [ + { + "location": { + "end_col": 34, + "end_line": 2, + "input_file": { + "filename": "autogen/starknet/external/transferFrom/ebf9f2690eeffee22f3d99ab5430147a11d0a2aa047472f5b737d6d09ce13c6e.cairo" + }, + "parent_location": [ + { + "end_col": 18, + "end_line": 449, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "start_col": 6, + "start_line": 449 + }, + "While constructing the external wrapper for:" + ], + "start_col": 1, + "start_line": 2 + }, + "n_prefix_newlines": 0 + } + ], + "inst": { + "end_col": 24, + "end_line": 3, + "input_file": { + "filename": "autogen/starknet/external/transferFrom/ebf9f2690eeffee22f3d99ab5430147a11d0a2aa047472f5b737d6d09ce13c6e.cairo" + }, + "parent_location": [ + { + "end_col": 18, + "end_line": 449, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "start_col": 6, + "start_line": 449 + }, + "While constructing the external wrapper for:" + ], + "start_col": 1, + "start_line": 3 + } + }, + "5442": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.transferFrom" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 82, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/transferFrom/ebf9f2690eeffee22f3d99ab5430147a11d0a2aa047472f5b737d6d09ce13c6e.cairo" + }, + "parent_location": [ + { + "end_col": 18, + "end_line": 449, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "parent_location": [ + { + "end_col": 20, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/transferFrom/da17921a4e81c09e730800bbf23bfdbe5e9e6bfaedc59d80fbf62087fa43c27d.cairo" + }, + "parent_location": [ + { + "end_col": 18, + "end_line": 449, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "start_col": 6, + "start_line": 449 + }, + "While constructing the external wrapper for:" + ], + "start_col": 9, + "start_line": 1 + }, + "While expanding the reference 'syscall_ptr' in:" + ], + "start_col": 6, + "start_line": 449 + }, + "While constructing the external wrapper for:" + ], + "start_col": 71, + "start_line": 1 + } + }, + "5443": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.transferFrom" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 57, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/transferFrom/ebf9f2690eeffee22f3d99ab5430147a11d0a2aa047472f5b737d6d09ce13c6e.cairo" + }, + "parent_location": [ + { + "end_col": 18, + "end_line": 449, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "parent_location": [ + { + "end_col": 33, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/transferFrom/da17921a4e81c09e730800bbf23bfdbe5e9e6bfaedc59d80fbf62087fa43c27d.cairo" + }, + "parent_location": [ + { + "end_col": 18, + "end_line": 449, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "start_col": 6, + "start_line": 449 + }, + "While constructing the external wrapper for:" + ], + "start_col": 21, + "start_line": 1 + }, + "While expanding the reference 'pedersen_ptr' in:" + ], + "start_col": 6, + "start_line": 449 + }, + "While constructing the external wrapper for:" + ], + "start_col": 45, + "start_line": 1 + } + }, + "5444": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.transferFrom" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 115, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/transferFrom/ebf9f2690eeffee22f3d99ab5430147a11d0a2aa047472f5b737d6d09ce13c6e.cairo" + }, + "parent_location": [ + { + "end_col": 18, + "end_line": 449, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "parent_location": [ + { + "end_col": 49, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/transferFrom/da17921a4e81c09e730800bbf23bfdbe5e9e6bfaedc59d80fbf62087fa43c27d.cairo" + }, + "parent_location": [ + { + "end_col": 18, + "end_line": 449, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "start_col": 6, + "start_line": 449 + }, + "While constructing the external wrapper for:" + ], + "start_col": 34, + "start_line": 1 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 6, + "start_line": 449 + }, + "While constructing the external wrapper for:" + ], + "start_col": 100, + "start_line": 1 + } + }, + "5445": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.transferFrom" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 21, + "end_line": 4, + "input_file": { + "filename": "autogen/starknet/external/transferFrom/ebf9f2690eeffee22f3d99ab5430147a11d0a2aa047472f5b737d6d09ce13c6e.cairo" + }, + "parent_location": [ + { + "end_col": 18, + "end_line": 449, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "parent_location": [ + { + "end_col": 62, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/transferFrom/da17921a4e81c09e730800bbf23bfdbe5e9e6bfaedc59d80fbf62087fa43c27d.cairo" + }, + "parent_location": [ + { + "end_col": 18, + "end_line": 449, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "start_col": 6, + "start_line": 449 + }, + "While constructing the external wrapper for:" + ], + "start_col": 50, + "start_line": 1 + }, + "While expanding the reference 'retdata_size' in:" + ], + "start_col": 6, + "start_line": 449 + }, + "While constructing the external wrapper for:" + ], + "start_col": 20, + "start_line": 4 + } + }, + "5447": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.transferFrom" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 16, + "end_line": 3, + "input_file": { + "filename": "autogen/starknet/external/transferFrom/ebf9f2690eeffee22f3d99ab5430147a11d0a2aa047472f5b737d6d09ce13c6e.cairo" + }, + "parent_location": [ + { + "end_col": 18, + "end_line": 449, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "parent_location": [ + { + "end_col": 70, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/transferFrom/da17921a4e81c09e730800bbf23bfdbe5e9e6bfaedc59d80fbf62087fa43c27d.cairo" + }, + "parent_location": [ + { + "end_col": 18, + "end_line": 449, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "start_col": 6, + "start_line": 449 + }, + "While constructing the external wrapper for:" + ], + "start_col": 63, + "start_line": 1 + }, + "While expanding the reference 'retdata' in:" + ], + "start_col": 6, + "start_line": 449 + }, + "While constructing the external wrapper for:" + ], + "start_col": 9, + "start_line": 3 + } + }, + "5448": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.transferFrom" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 72, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/transferFrom/da17921a4e81c09e730800bbf23bfdbe5e9e6bfaedc59d80fbf62087fa43c27d.cairo" + }, + "parent_location": [ + { + "end_col": 18, + "end_line": 449, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "start_col": 6, + "start_line": 449 + }, + "While constructing the external wrapper for:" + ], + "start_col": 1, + "start_line": 1 + } + }, + "5449": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.safeTransferFrom" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 49, + "end_line": 457, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "parent_location": [ + { + "end_col": 55, + "end_line": 101, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" + }, + "parent_location": [ + { + "end_col": 76, + "end_line": 460, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "start_col": 5, + "start_line": 460 + }, + "While trying to retrieve the implicit argument 'pedersen_ptr' in:" + ], + "start_col": 29, + "start_line": 101 + }, + "While expanding the reference 'pedersen_ptr' in:" + ], + "start_col": 23, + "start_line": 457 + } + }, + "5450": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.safeTransferFrom" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 69, + "end_line": 457, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "parent_location": [ + { + "end_col": 75, + "end_line": 101, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" + }, + "parent_location": [ + { + "end_col": 76, + "end_line": 460, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "start_col": 5, + "start_line": 460 + }, + "While trying to retrieve the implicit argument 'syscall_ptr' in:" + ], + "start_col": 57, + "start_line": 101 + }, + "While expanding the reference 'syscall_ptr' in:" + ], + "start_col": 51, + "start_line": 457 + } + }, + "5451": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.safeTransferFrom" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 86, + "end_line": 457, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "parent_location": [ + { + "end_col": 92, + "end_line": 101, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" + }, + "parent_location": [ + { + "end_col": 76, + "end_line": 460, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "start_col": 5, + "start_line": 460 + }, + "While trying to retrieve the implicit argument 'range_check_ptr' in:" + ], + "start_col": 77, + "start_line": 101 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 71, + "start_line": 457 + } + }, + "5452": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.safeTransferFrom" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 16, + "end_line": 458, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "parent_location": [ + { + "end_col": 46, + "end_line": 460, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "start_col": 41, + "start_line": 460 + }, + "While expanding the reference 'from_' in:" + ], + "start_col": 5, + "start_line": 458 + } + }, + "5453": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.safeTransferFrom" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 26, + "end_line": 458, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "parent_location": [ + { + "end_col": 50, + "end_line": 460, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "start_col": 48, + "start_line": 460 + }, + "While expanding the reference 'to' in:" + ], + "start_col": 18, + "start_line": 458 + } + }, + "5454": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.safeTransferFrom" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 44, + "end_line": 458, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "parent_location": [ + { + "end_col": 59, + "end_line": 460, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "start_col": 52, + "start_line": 460 + }, + "While expanding the reference 'tokenId' in:" + ], + "start_col": 28, + "start_line": 458 + } + }, + "5455": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.safeTransferFrom" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 44, + "end_line": 458, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "parent_location": [ + { + "end_col": 59, + "end_line": 460, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "start_col": 52, + "start_line": 460 + }, + "While expanding the reference 'tokenId' in:" + ], + "start_col": 28, + "start_line": 458 + } + }, + "5456": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.safeTransferFrom" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 60, + "end_line": 458, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "parent_location": [ + { + "end_col": 69, + "end_line": 460, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "start_col": 61, + "start_line": 460 + }, + "While expanding the reference 'data_len' in:" + ], + "start_col": 46, + "start_line": 458 + } + }, + "5457": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.safeTransferFrom" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 73, + "end_line": 458, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "parent_location": [ + { + "end_col": 75, + "end_line": 460, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "start_col": 71, + "start_line": 460 + }, + "While expanding the reference 'data' in:" + ], + "start_col": 62, + "start_line": 458 + } + }, + "5458": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.safeTransferFrom" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 76, + "end_line": 460, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "start_col": 5, + "start_line": 460 + } + }, + "5460": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.safeTransferFrom" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 15, + "end_line": 461, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "start_col": 5, + "start_line": 461 + } + }, + "5461": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.safeTransferFrom" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 67, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/safeTransferFrom/741ea357d6336b0bed7bf0472425acd0311d543883b803388880e60a232040c7.cairo" + }, + "parent_location": [ + { + "end_col": 86, + "end_line": 457, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "parent_location": [ + { + "end_col": 24, + "end_line": 2, + "input_file": { + "filename": "autogen/starknet/arg_processor/e0af26f9fbe513562e2133164d694cbff092c47bbb4efa182711421f0c0cc5d3.cairo" + }, + "parent_location": [ + { + "end_col": 73, + "end_line": 458, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "start_col": 62, + "start_line": 458 + }, + "While handling calldata argument 'data'" + ], + "start_col": 9, + "start_line": 2 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 71, + "start_line": 457 + }, + "While constructing the external wrapper for:" + ], + "start_col": 23, + "start_line": 1 + } + }, + "5462": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.safeTransferFrom" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 47, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/arg_processor/4f1f3aa0a6fec21a155d7e953cd34daa7ca48450bbb80f627eb4f8df9f25922a.cairo" + }, + "parent_location": [ + { + "end_col": 60, + "end_line": 458, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "parent_location": [ + { + "end_col": 51, + "end_line": 2, + "input_file": { + "filename": "autogen/starknet/arg_processor/e0af26f9fbe513562e2133164d694cbff092c47bbb4efa182711421f0c0cc5d3.cairo" + }, + "parent_location": [ + { + "end_col": 73, + "end_line": 458, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "start_col": 62, + "start_line": 458 + }, + "While handling calldata argument 'data'" + ], + "start_col": 28, + "start_line": 2 + }, + "While expanding the reference '__calldata_arg_data_len' in:" + ], + "start_col": 46, + "start_line": 458 + }, + "While handling calldata argument 'data_len'" + ], + "start_col": 31, + "start_line": 1 + } + }, + "5463": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.safeTransferFrom" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 52, + "end_line": 2, + "input_file": { + "filename": "autogen/starknet/arg_processor/e0af26f9fbe513562e2133164d694cbff092c47bbb4efa182711421f0c0cc5d3.cairo" + }, + "parent_location": [ + { + "end_col": 73, + "end_line": 458, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "start_col": 62, + "start_line": 458 + }, + "While handling calldata argument 'data'" + ], + "start_col": 1, + "start_line": 2 + } + }, + "5464": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.safeTransferFrom" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 40, + "end_line": 2, + "input_file": { + "filename": "autogen/starknet/arg_processor/4f1f3aa0a6fec21a155d7e953cd34daa7ca48450bbb80f627eb4f8df9f25922a.cairo" + }, + "parent_location": [ + { + "end_col": 60, + "end_line": 458, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "parent_location": [ + { + "end_col": 40, + "end_line": 8, + "input_file": { + "filename": "autogen/starknet/arg_processor/e0af26f9fbe513562e2133164d694cbff092c47bbb4efa182711421f0c0cc5d3.cairo" + }, + "parent_location": [ + { + "end_col": 73, + "end_line": 458, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "start_col": 62, + "start_line": 458 + }, + "While handling calldata argument 'data'" + ], + "start_col": 26, + "start_line": 8 + }, + "While expanding the reference '__calldata_ptr' in:" + ], + "start_col": 46, + "start_line": 458 + }, + "While handling calldata argument 'data_len'" + ], + "start_col": 22, + "start_line": 2 + } + }, + "5466": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.safeTransferFrom" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 47, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/arg_processor/4f1f3aa0a6fec21a155d7e953cd34daa7ca48450bbb80f627eb4f8df9f25922a.cairo" + }, + "parent_location": [ + { + "end_col": 60, + "end_line": 458, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "parent_location": [ + { + "end_col": 66, + "end_line": 8, + "input_file": { + "filename": "autogen/starknet/arg_processor/e0af26f9fbe513562e2133164d694cbff092c47bbb4efa182711421f0c0cc5d3.cairo" + }, + "parent_location": [ + { + "end_col": 73, + "end_line": 458, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "start_col": 62, + "start_line": 458 + }, + "While handling calldata argument 'data'" + ], + "start_col": 43, + "start_line": 8 + }, + "While expanding the reference '__calldata_arg_data_len' in:" + ], + "start_col": 46, + "start_line": 458 + }, + "While handling calldata argument 'data_len'" + ], + "start_col": 31, + "start_line": 1 + } + }, + "5467": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.safeTransferFrom" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 70, + "end_line": 8, + "input_file": { + "filename": "autogen/starknet/arg_processor/e0af26f9fbe513562e2133164d694cbff092c47bbb4efa182711421f0c0cc5d3.cairo" + }, + "parent_location": [ + { + "end_col": 73, + "end_line": 458, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "start_col": 62, + "start_line": 458 + }, + "While handling calldata argument 'data'" + ], + "start_col": 26, + "start_line": 8 + } + }, + "5468": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.safeTransferFrom" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 58, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/arg_processor/01cba52f8515996bb9d7070bde81ff39281d096d7024a558efcba6e1fd2402cf.cairo" + }, + "parent_location": [ + { + "end_col": 22, + "end_line": 457, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "start_col": 6, + "start_line": 457 + }, + "While handling calldata of" + ], + "start_col": 1, + "start_line": 1 + } + }, + "5469": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.safeTransferFrom" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 67, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/safeTransferFrom/741ea357d6336b0bed7bf0472425acd0311d543883b803388880e60a232040c7.cairo" + }, + "parent_location": [ + { + "end_col": 86, + "end_line": 457, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "parent_location": [ + { + "end_col": 38, + "end_line": 3, + "input_file": { + "filename": "autogen/starknet/arg_processor/e0af26f9fbe513562e2133164d694cbff092c47bbb4efa182711421f0c0cc5d3.cairo" + }, + "parent_location": [ + { + "end_col": 73, + "end_line": 458, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "parent_location": [ + { + "end_col": 115, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/safeTransferFrom/2b49474f1011f9d58397f6c4fb411d470fd935a4210c29898caaad0c7ad72623.cairo" + }, + "parent_location": [ + { + "end_col": 22, + "end_line": 457, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "start_col": 6, + "start_line": 457 + }, + "While constructing the external wrapper for:" + ], + "start_col": 100, + "start_line": 1 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 62, + "start_line": 458 + }, + "While handling calldata argument 'data'" + ], + "start_col": 23, + "start_line": 3 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 71, + "start_line": 457 + }, + "While constructing the external wrapper for:" + ], + "start_col": 23, + "start_line": 1 + } + }, + "5470": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.safeTransferFrom" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 110, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/safeTransferFrom/9684a85e93c782014ca14293edea4eb2502039a5a7b6538ecd39c56faaf12529.cairo" + }, + "parent_location": [ + { + "end_col": 49, + "end_line": 457, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "parent_location": [ + { + "end_col": 57, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/safeTransferFrom/2b49474f1011f9d58397f6c4fb411d470fd935a4210c29898caaad0c7ad72623.cairo" + }, + "parent_location": [ + { + "end_col": 22, + "end_line": 457, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "start_col": 6, + "start_line": 457 + }, + "While constructing the external wrapper for:" + ], + "start_col": 45, + "start_line": 1 + }, + "While expanding the reference 'pedersen_ptr' in:" + ], + "start_col": 23, + "start_line": 457 + }, + "While constructing the external wrapper for:" + ], + "start_col": 20, + "start_line": 1 + } + }, + "5471": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.safeTransferFrom" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 64, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/safeTransferFrom/b2c52ca2d2a8fc8791a983086d8716c5eacd0c3d62934914d2286f84b98ff4cb.cairo" + }, + "parent_location": [ + { + "end_col": 69, + "end_line": 457, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "parent_location": [ + { + "end_col": 82, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/safeTransferFrom/2b49474f1011f9d58397f6c4fb411d470fd935a4210c29898caaad0c7ad72623.cairo" + }, + "parent_location": [ + { + "end_col": 22, + "end_line": 457, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "start_col": 6, + "start_line": 457 + }, + "While constructing the external wrapper for:" + ], + "start_col": 71, + "start_line": 1 + }, + "While expanding the reference 'syscall_ptr' in:" + ], + "start_col": 51, + "start_line": 457 + }, + "While constructing the external wrapper for:" + ], + "start_col": 19, + "start_line": 1 + } + }, + "5472": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.safeTransferFrom" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 42, + "end_line": 3, + "input_file": { + "filename": "autogen/starknet/arg_processor/e0af26f9fbe513562e2133164d694cbff092c47bbb4efa182711421f0c0cc5d3.cairo" + }, + "parent_location": [ + { + "end_col": 73, + "end_line": 458, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "parent_location": [ + { + "end_col": 115, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/safeTransferFrom/2b49474f1011f9d58397f6c4fb411d470fd935a4210c29898caaad0c7ad72623.cairo" + }, + "parent_location": [ + { + "end_col": 22, + "end_line": 457, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "start_col": 6, + "start_line": 457 + }, + "While constructing the external wrapper for:" + ], + "start_col": 100, + "start_line": 1 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 62, + "start_line": 458 + }, + "While handling calldata argument 'data'" + ], + "start_col": 23, + "start_line": 3 + } + }, + "5474": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.safeTransferFrom" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 44, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/arg_processor/df39236eab78c921af48d719316dc25209f5ba97dc94936a936f353a674f3486.cairo" + }, + "parent_location": [ + { + "end_col": 16, + "end_line": 458, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "parent_location": [ + { + "end_col": 143, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/safeTransferFrom/2b49474f1011f9d58397f6c4fb411d470fd935a4210c29898caaad0c7ad72623.cairo" + }, + "parent_location": [ + { + "end_col": 22, + "end_line": 457, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "start_col": 6, + "start_line": 457 + }, + "While constructing the external wrapper for:" + ], + "start_col": 123, + "start_line": 1 + }, + "While expanding the reference '__calldata_arg_from_' in:" + ], + "start_col": 5, + "start_line": 458 + }, + "While handling calldata argument 'from_'" + ], + "start_col": 28, + "start_line": 1 + } + }, + "5475": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.safeTransferFrom" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 41, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/arg_processor/dceaabc265216c0ff87c509d90446554648ec4d692c521cda952464d1fc22972.cairo" + }, + "parent_location": [ + { + "end_col": 26, + "end_line": 458, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "parent_location": [ + { + "end_col": 165, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/safeTransferFrom/2b49474f1011f9d58397f6c4fb411d470fd935a4210c29898caaad0c7ad72623.cairo" + }, + "parent_location": [ + { + "end_col": 22, + "end_line": 457, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "start_col": 6, + "start_line": 457 + }, + "While constructing the external wrapper for:" + ], + "start_col": 148, + "start_line": 1 + }, + "While expanding the reference '__calldata_arg_to' in:" + ], + "start_col": 18, + "start_line": 458 + }, + "While handling calldata argument 'to'" + ], + "start_col": 25, + "start_line": 1 + } + }, + "5476": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.safeTransferFrom" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 67, + "end_line": 2, + "input_file": { + "filename": "autogen/starknet/arg_processor/60c79ef5477686f2843e61432dcde7f4fc0f354d42095115ea9dca625a35df6e.cairo" + }, + "parent_location": [ + { + "end_col": 44, + "end_line": 458, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "parent_location": [ + { + "end_col": 197, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/safeTransferFrom/2b49474f1011f9d58397f6c4fb411d470fd935a4210c29898caaad0c7ad72623.cairo" + }, + "parent_location": [ + { + "end_col": 22, + "end_line": 457, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "start_col": 6, + "start_line": 457 + }, + "While constructing the external wrapper for:" + ], + "start_col": 175, + "start_line": 1 + }, + "While expanding the reference '__calldata_arg_tokenId' in:" + ], + "start_col": 28, + "start_line": 458 + }, + "While handling calldata argument 'tokenId'" + ], + "start_col": 30, + "start_line": 1 + } + }, + "5477": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.safeTransferFrom" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 67, + "end_line": 2, + "input_file": { + "filename": "autogen/starknet/arg_processor/60c79ef5477686f2843e61432dcde7f4fc0f354d42095115ea9dca625a35df6e.cairo" + }, + "parent_location": [ + { + "end_col": 44, + "end_line": 458, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "parent_location": [ + { + "end_col": 197, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/safeTransferFrom/2b49474f1011f9d58397f6c4fb411d470fd935a4210c29898caaad0c7ad72623.cairo" + }, + "parent_location": [ + { + "end_col": 22, + "end_line": 457, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "start_col": 6, + "start_line": 457 + }, + "While constructing the external wrapper for:" + ], + "start_col": 175, + "start_line": 1 + }, + "While expanding the reference '__calldata_arg_tokenId' in:" + ], + "start_col": 28, + "start_line": 458 + }, + "While handling calldata argument 'tokenId'" + ], + "start_col": 30, + "start_line": 1 + } + }, + "5478": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.safeTransferFrom" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 47, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/arg_processor/4f1f3aa0a6fec21a155d7e953cd34daa7ca48450bbb80f627eb4f8df9f25922a.cairo" + }, + "parent_location": [ + { + "end_col": 60, + "end_line": 458, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "parent_location": [ + { + "end_col": 231, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/safeTransferFrom/2b49474f1011f9d58397f6c4fb411d470fd935a4210c29898caaad0c7ad72623.cairo" + }, + "parent_location": [ + { + "end_col": 22, + "end_line": 457, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "start_col": 6, + "start_line": 457 + }, + "While constructing the external wrapper for:" + ], + "start_col": 208, + "start_line": 1 + }, + "While expanding the reference '__calldata_arg_data_len' in:" + ], + "start_col": 46, + "start_line": 458 + }, + "While handling calldata argument 'data_len'" + ], + "start_col": 31, + "start_line": 1 + } + }, + "5479": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.safeTransferFrom" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 54, + "end_line": 5, + "input_file": { + "filename": "autogen/starknet/arg_processor/e0af26f9fbe513562e2133164d694cbff092c47bbb4efa182711421f0c0cc5d3.cairo" + }, + "parent_location": [ + { + "end_col": 73, + "end_line": 458, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "parent_location": [ + { + "end_col": 257, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/safeTransferFrom/2b49474f1011f9d58397f6c4fb411d470fd935a4210c29898caaad0c7ad72623.cairo" + }, + "parent_location": [ + { + "end_col": 22, + "end_line": 457, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "start_col": 6, + "start_line": 457 + }, + "While constructing the external wrapper for:" + ], + "start_col": 238, + "start_line": 1 + }, + "While expanding the reference '__calldata_arg_data' in:" + ], + "start_col": 62, + "start_line": 458 + }, + "While handling calldata argument 'data'" + ], + "start_col": 27, + "start_line": 5 + } + }, + "5481": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.safeTransferFrom" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 22, + "end_line": 457, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "start_col": 6, + "start_line": 457 + } + }, + "5483": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.safeTransferFrom" + ], + "flow_tracking_data": null, + "hints": [ + { + "location": { + "end_col": 34, + "end_line": 2, + "input_file": { + "filename": "autogen/starknet/external/safeTransferFrom/2b49474f1011f9d58397f6c4fb411d470fd935a4210c29898caaad0c7ad72623.cairo" + }, + "parent_location": [ + { + "end_col": 22, + "end_line": 457, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "start_col": 6, + "start_line": 457 + }, + "While constructing the external wrapper for:" + ], + "start_col": 1, + "start_line": 2 + }, + "n_prefix_newlines": 0 + } + ], + "inst": { + "end_col": 24, + "end_line": 3, + "input_file": { + "filename": "autogen/starknet/external/safeTransferFrom/2b49474f1011f9d58397f6c4fb411d470fd935a4210c29898caaad0c7ad72623.cairo" + }, + "parent_location": [ + { + "end_col": 22, + "end_line": 457, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "start_col": 6, + "start_line": 457 + }, + "While constructing the external wrapper for:" + ], + "start_col": 1, + "start_line": 3 + } + }, + "5485": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.safeTransferFrom" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 82, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/safeTransferFrom/2b49474f1011f9d58397f6c4fb411d470fd935a4210c29898caaad0c7ad72623.cairo" + }, + "parent_location": [ + { + "end_col": 22, + "end_line": 457, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "parent_location": [ + { + "end_col": 20, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/safeTransferFrom/da17921a4e81c09e730800bbf23bfdbe5e9e6bfaedc59d80fbf62087fa43c27d.cairo" + }, + "parent_location": [ + { + "end_col": 22, + "end_line": 457, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "start_col": 6, + "start_line": 457 + }, + "While constructing the external wrapper for:" + ], + "start_col": 9, + "start_line": 1 + }, + "While expanding the reference 'syscall_ptr' in:" + ], + "start_col": 6, + "start_line": 457 + }, + "While constructing the external wrapper for:" + ], + "start_col": 71, + "start_line": 1 + } + }, + "5486": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.safeTransferFrom" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 57, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/safeTransferFrom/2b49474f1011f9d58397f6c4fb411d470fd935a4210c29898caaad0c7ad72623.cairo" + }, + "parent_location": [ + { + "end_col": 22, + "end_line": 457, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "parent_location": [ + { + "end_col": 33, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/safeTransferFrom/da17921a4e81c09e730800bbf23bfdbe5e9e6bfaedc59d80fbf62087fa43c27d.cairo" + }, + "parent_location": [ + { + "end_col": 22, + "end_line": 457, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "start_col": 6, + "start_line": 457 + }, + "While constructing the external wrapper for:" + ], + "start_col": 21, + "start_line": 1 + }, + "While expanding the reference 'pedersen_ptr' in:" + ], + "start_col": 6, + "start_line": 457 + }, + "While constructing the external wrapper for:" + ], + "start_col": 45, + "start_line": 1 + } + }, + "5487": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.safeTransferFrom" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 115, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/safeTransferFrom/2b49474f1011f9d58397f6c4fb411d470fd935a4210c29898caaad0c7ad72623.cairo" + }, + "parent_location": [ + { + "end_col": 22, + "end_line": 457, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "parent_location": [ + { + "end_col": 49, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/safeTransferFrom/da17921a4e81c09e730800bbf23bfdbe5e9e6bfaedc59d80fbf62087fa43c27d.cairo" + }, + "parent_location": [ + { + "end_col": 22, + "end_line": 457, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "start_col": 6, + "start_line": 457 + }, + "While constructing the external wrapper for:" + ], + "start_col": 34, + "start_line": 1 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 6, + "start_line": 457 + }, + "While constructing the external wrapper for:" + ], + "start_col": 100, + "start_line": 1 + } + }, + "5488": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.safeTransferFrom" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 21, + "end_line": 4, + "input_file": { + "filename": "autogen/starknet/external/safeTransferFrom/2b49474f1011f9d58397f6c4fb411d470fd935a4210c29898caaad0c7ad72623.cairo" + }, + "parent_location": [ + { + "end_col": 22, + "end_line": 457, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "parent_location": [ + { + "end_col": 62, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/safeTransferFrom/da17921a4e81c09e730800bbf23bfdbe5e9e6bfaedc59d80fbf62087fa43c27d.cairo" + }, + "parent_location": [ + { + "end_col": 22, + "end_line": 457, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "start_col": 6, + "start_line": 457 + }, + "While constructing the external wrapper for:" + ], + "start_col": 50, + "start_line": 1 + }, + "While expanding the reference 'retdata_size' in:" + ], + "start_col": 6, + "start_line": 457 + }, + "While constructing the external wrapper for:" + ], + "start_col": 20, + "start_line": 4 + } + }, + "5490": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.safeTransferFrom" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 16, + "end_line": 3, + "input_file": { + "filename": "autogen/starknet/external/safeTransferFrom/2b49474f1011f9d58397f6c4fb411d470fd935a4210c29898caaad0c7ad72623.cairo" + }, + "parent_location": [ + { + "end_col": 22, + "end_line": 457, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "parent_location": [ + { + "end_col": 70, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/safeTransferFrom/da17921a4e81c09e730800bbf23bfdbe5e9e6bfaedc59d80fbf62087fa43c27d.cairo" + }, + "parent_location": [ + { + "end_col": 22, + "end_line": 457, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "start_col": 6, + "start_line": 457 + }, + "While constructing the external wrapper for:" + ], + "start_col": 63, + "start_line": 1 + }, + "While expanding the reference 'retdata' in:" + ], + "start_col": 6, + "start_line": 457 + }, + "While constructing the external wrapper for:" + ], + "start_col": 9, + "start_line": 3 + } + }, + "5491": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.safeTransferFrom" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 72, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/safeTransferFrom/da17921a4e81c09e730800bbf23bfdbe5e9e6bfaedc59d80fbf62087fa43c27d.cairo" + }, + "parent_location": [ + { + "end_col": 22, + "end_line": 457, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "start_col": 6, + "start_line": 457 + }, + "While constructing the external wrapper for:" + ], + "start_col": 1, + "start_line": 1 + } + }, + "5492": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.mintOwner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 62, + "end_line": 465, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "parent_location": [ + { + "end_col": 46, + "end_line": 40, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/access/ownable/library.cairo" + }, + "parent_location": [ + { + "end_col": 32, + "end_line": 468, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "start_col": 5, + "start_line": 468 + }, + "While trying to retrieve the implicit argument 'syscall_ptr' in:" + ], + "start_col": 28, + "start_line": 40 + }, + "While expanding the reference 'syscall_ptr' in:" + ], + "start_col": 44, + "start_line": 465 + } + }, + "5493": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.mintOwner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 42, + "end_line": 465, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "parent_location": [ + { + "end_col": 74, + "end_line": 40, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/access/ownable/library.cairo" + }, + "parent_location": [ + { + "end_col": 32, + "end_line": 468, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "start_col": 5, + "start_line": 468 + }, + "While trying to retrieve the implicit argument 'pedersen_ptr' in:" + ], + "start_col": 48, + "start_line": 40 + }, + "While expanding the reference 'pedersen_ptr' in:" + ], + "start_col": 16, + "start_line": 465 + } + }, + "5494": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.mintOwner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 79, + "end_line": 465, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "parent_location": [ + { + "end_col": 91, + "end_line": 40, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/access/ownable/library.cairo" + }, + "parent_location": [ + { + "end_col": 32, + "end_line": 468, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "start_col": 5, + "start_line": 468 + }, + "While trying to retrieve the implicit argument 'range_check_ptr' in:" + ], + "start_col": 76, + "start_line": 40 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 64, + "start_line": 465 + } + }, + "5495": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.mintOwner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 32, + "end_line": 468, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "start_col": 5, + "start_line": 468 + } + }, + "5497": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.mintOwner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 74, + "end_line": 40, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/access/ownable/library.cairo" + }, + "parent_location": [ + { + "end_col": 32, + "end_line": 468, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "parent_location": [ + { + "end_col": 42, + "end_line": 114, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" + }, + "parent_location": [ + { + "end_col": 40, + "end_line": 469, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "start_col": 5, + "start_line": 469 + }, + "While trying to retrieve the implicit argument 'pedersen_ptr' in:" + ], + "start_col": 16, + "start_line": 114 + }, + "While expanding the reference 'pedersen_ptr' in:" + ], + "start_col": 5, + "start_line": 468 + }, + "While trying to update the implicit return value 'pedersen_ptr' in:" + ], + "start_col": 48, + "start_line": 40 + } + }, + "5498": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.mintOwner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 46, + "end_line": 40, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/access/ownable/library.cairo" + }, + "parent_location": [ + { + "end_col": 32, + "end_line": 468, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "parent_location": [ + { + "end_col": 62, + "end_line": 114, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" + }, + "parent_location": [ + { + "end_col": 40, + "end_line": 469, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "start_col": 5, + "start_line": 469 + }, + "While trying to retrieve the implicit argument 'syscall_ptr' in:" + ], + "start_col": 44, + "start_line": 114 + }, + "While expanding the reference 'syscall_ptr' in:" + ], + "start_col": 5, + "start_line": 468 + }, + "While trying to update the implicit return value 'syscall_ptr' in:" + ], + "start_col": 28, + "start_line": 40 + } + }, + "5499": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.mintOwner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 91, + "end_line": 40, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/access/ownable/library.cairo" + }, + "parent_location": [ + { + "end_col": 32, + "end_line": 468, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "parent_location": [ + { + "end_col": 79, + "end_line": 114, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/enumerable/library.cairo" + }, + "parent_location": [ + { + "end_col": 40, + "end_line": 469, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "start_col": 5, + "start_line": 469 + }, + "While trying to retrieve the implicit argument 'range_check_ptr' in:" + ], + "start_col": 64, + "start_line": 114 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 5, + "start_line": 468 + }, + "While trying to update the implicit return value 'range_check_ptr' in:" + ], + "start_col": 76, + "start_line": 40 + } + }, + "5500": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.mintOwner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 13, + "end_line": 466, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "parent_location": [ + { + "end_col": 30, + "end_line": 469, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "start_col": 28, + "start_line": 469 + }, + "While expanding the reference 'to' in:" + ], + "start_col": 5, + "start_line": 466 + } + }, + "5501": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.mintOwner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 31, + "end_line": 466, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "parent_location": [ + { + "end_col": 39, + "end_line": 469, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "start_col": 32, + "start_line": 469 + }, + "While expanding the reference 'tokenId' in:" + ], + "start_col": 15, + "start_line": 466 + } + }, + "5502": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.mintOwner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 31, + "end_line": 466, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "parent_location": [ + { + "end_col": 39, + "end_line": 469, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "start_col": 32, + "start_line": 469 + }, + "While expanding the reference 'tokenId' in:" + ], + "start_col": 15, + "start_line": 466 + } + }, + "5503": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.mintOwner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 40, + "end_line": 469, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "start_col": 5, + "start_line": 469 + } + }, + "5505": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.mintOwner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 15, + "end_line": 470, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "start_col": 5, + "start_line": 470 + } + }, + "5506": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.mintOwner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 40, + "end_line": 3, + "input_file": { + "filename": "autogen/starknet/arg_processor/60c79ef5477686f2843e61432dcde7f4fc0f354d42095115ea9dca625a35df6e.cairo" + }, + "parent_location": [ + { + "end_col": 31, + "end_line": 466, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "parent_location": [ + { + "end_col": 45, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/arg_processor/c31620b02d4d706f0542c989b2aadc01b0981d1f6a5933a8fe4937ace3d70d92.cairo" + }, + "parent_location": [ + { + "end_col": 15, + "end_line": 465, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "parent_location": [ + { + "end_col": 57, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/arg_processor/01cba52f8515996bb9d7070bde81ff39281d096d7024a558efcba6e1fd2402cf.cairo" + }, + "parent_location": [ + { + "end_col": 15, + "end_line": 465, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "start_col": 6, + "start_line": 465 + }, + "While handling calldata of" + ], + "start_col": 35, + "start_line": 1 + }, + "While expanding the reference '__calldata_actual_size' in:" + ], + "start_col": 6, + "start_line": 465 + }, + "While handling calldata of" + ], + "start_col": 31, + "start_line": 1 + }, + "While expanding the reference '__calldata_ptr' in:" + ], + "start_col": 15, + "start_line": 466 + }, + "While handling calldata argument 'tokenId'" + ], + "start_col": 22, + "start_line": 3 + } + }, + "5508": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.mintOwner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 58, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/arg_processor/01cba52f8515996bb9d7070bde81ff39281d096d7024a558efcba6e1fd2402cf.cairo" + }, + "parent_location": [ + { + "end_col": 15, + "end_line": 465, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "start_col": 6, + "start_line": 465 + }, + "While handling calldata of" + ], + "start_col": 1, + "start_line": 1 + } + }, + "5509": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.mintOwner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 110, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/mintOwner/9684a85e93c782014ca14293edea4eb2502039a5a7b6538ecd39c56faaf12529.cairo" + }, + "parent_location": [ + { + "end_col": 42, + "end_line": 465, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "parent_location": [ + { + "end_col": 57, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/mintOwner/5388f692818f55977b2452a31ce8c0a2aaeeb5ab5c5db8c2d2f3ab50dcff739b.cairo" + }, + "parent_location": [ + { + "end_col": 15, + "end_line": 465, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "start_col": 6, + "start_line": 465 + }, + "While constructing the external wrapper for:" + ], + "start_col": 45, + "start_line": 1 + }, + "While expanding the reference 'pedersen_ptr' in:" + ], + "start_col": 16, + "start_line": 465 + }, + "While constructing the external wrapper for:" + ], + "start_col": 20, + "start_line": 1 + } + }, + "5510": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.mintOwner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 64, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/mintOwner/b2c52ca2d2a8fc8791a983086d8716c5eacd0c3d62934914d2286f84b98ff4cb.cairo" + }, + "parent_location": [ + { + "end_col": 62, + "end_line": 465, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "parent_location": [ + { + "end_col": 82, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/mintOwner/5388f692818f55977b2452a31ce8c0a2aaeeb5ab5c5db8c2d2f3ab50dcff739b.cairo" + }, + "parent_location": [ + { + "end_col": 15, + "end_line": 465, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "start_col": 6, + "start_line": 465 + }, + "While constructing the external wrapper for:" + ], + "start_col": 71, + "start_line": 1 + }, + "While expanding the reference 'syscall_ptr' in:" + ], + "start_col": 44, + "start_line": 465 + }, + "While constructing the external wrapper for:" + ], + "start_col": 19, + "start_line": 1 + } + }, + "5511": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.mintOwner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 67, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/mintOwner/741ea357d6336b0bed7bf0472425acd0311d543883b803388880e60a232040c7.cairo" + }, + "parent_location": [ + { + "end_col": 79, + "end_line": 465, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "parent_location": [ + { + "end_col": 115, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/mintOwner/5388f692818f55977b2452a31ce8c0a2aaeeb5ab5c5db8c2d2f3ab50dcff739b.cairo" + }, + "parent_location": [ + { + "end_col": 15, + "end_line": 465, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "start_col": 6, + "start_line": 465 + }, + "While constructing the external wrapper for:" + ], + "start_col": 100, + "start_line": 1 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 64, + "start_line": 465 + }, + "While constructing the external wrapper for:" + ], + "start_col": 23, + "start_line": 1 + } + }, + "5512": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.mintOwner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 41, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/arg_processor/dceaabc265216c0ff87c509d90446554648ec4d692c521cda952464d1fc22972.cairo" + }, + "parent_location": [ + { + "end_col": 13, + "end_line": 466, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "parent_location": [ + { + "end_col": 137, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/mintOwner/5388f692818f55977b2452a31ce8c0a2aaeeb5ab5c5db8c2d2f3ab50dcff739b.cairo" + }, + "parent_location": [ + { + "end_col": 15, + "end_line": 465, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "start_col": 6, + "start_line": 465 + }, + "While constructing the external wrapper for:" + ], + "start_col": 120, + "start_line": 1 + }, + "While expanding the reference '__calldata_arg_to' in:" + ], + "start_col": 5, + "start_line": 466 + }, + "While handling calldata argument 'to'" + ], + "start_col": 25, + "start_line": 1 + } + }, + "5513": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.mintOwner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 67, + "end_line": 2, + "input_file": { + "filename": "autogen/starknet/arg_processor/60c79ef5477686f2843e61432dcde7f4fc0f354d42095115ea9dca625a35df6e.cairo" + }, + "parent_location": [ + { + "end_col": 31, + "end_line": 466, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "parent_location": [ + { + "end_col": 169, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/mintOwner/5388f692818f55977b2452a31ce8c0a2aaeeb5ab5c5db8c2d2f3ab50dcff739b.cairo" + }, + "parent_location": [ + { + "end_col": 15, + "end_line": 465, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "start_col": 6, + "start_line": 465 + }, + "While constructing the external wrapper for:" + ], + "start_col": 147, + "start_line": 1 + }, + "While expanding the reference '__calldata_arg_tokenId' in:" + ], + "start_col": 15, + "start_line": 466 + }, + "While handling calldata argument 'tokenId'" + ], + "start_col": 30, + "start_line": 1 + } + }, + "5514": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.mintOwner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 67, + "end_line": 2, + "input_file": { + "filename": "autogen/starknet/arg_processor/60c79ef5477686f2843e61432dcde7f4fc0f354d42095115ea9dca625a35df6e.cairo" + }, + "parent_location": [ + { + "end_col": 31, + "end_line": 466, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "parent_location": [ + { + "end_col": 169, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/mintOwner/5388f692818f55977b2452a31ce8c0a2aaeeb5ab5c5db8c2d2f3ab50dcff739b.cairo" + }, + "parent_location": [ + { + "end_col": 15, + "end_line": 465, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "start_col": 6, + "start_line": 465 + }, + "While constructing the external wrapper for:" + ], + "start_col": 147, + "start_line": 1 + }, + "While expanding the reference '__calldata_arg_tokenId' in:" + ], + "start_col": 15, + "start_line": 466 + }, + "While handling calldata argument 'tokenId'" + ], + "start_col": 30, + "start_line": 1 + } + }, + "5515": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.mintOwner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 15, + "end_line": 465, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "start_col": 6, + "start_line": 465 + } + }, + "5517": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.mintOwner" + ], + "flow_tracking_data": null, + "hints": [ + { + "location": { + "end_col": 34, + "end_line": 2, + "input_file": { + "filename": "autogen/starknet/external/mintOwner/5388f692818f55977b2452a31ce8c0a2aaeeb5ab5c5db8c2d2f3ab50dcff739b.cairo" + }, + "parent_location": [ + { + "end_col": 15, + "end_line": 465, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "start_col": 6, + "start_line": 465 + }, + "While constructing the external wrapper for:" + ], + "start_col": 1, + "start_line": 2 + }, + "n_prefix_newlines": 0 + } + ], + "inst": { + "end_col": 24, + "end_line": 3, + "input_file": { + "filename": "autogen/starknet/external/mintOwner/5388f692818f55977b2452a31ce8c0a2aaeeb5ab5c5db8c2d2f3ab50dcff739b.cairo" + }, + "parent_location": [ + { + "end_col": 15, + "end_line": 465, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "start_col": 6, + "start_line": 465 + }, + "While constructing the external wrapper for:" + ], + "start_col": 1, + "start_line": 3 + } + }, + "5519": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.mintOwner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 82, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/mintOwner/5388f692818f55977b2452a31ce8c0a2aaeeb5ab5c5db8c2d2f3ab50dcff739b.cairo" + }, + "parent_location": [ + { + "end_col": 15, + "end_line": 465, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "parent_location": [ + { + "end_col": 20, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/mintOwner/da17921a4e81c09e730800bbf23bfdbe5e9e6bfaedc59d80fbf62087fa43c27d.cairo" + }, + "parent_location": [ + { + "end_col": 15, + "end_line": 465, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "start_col": 6, + "start_line": 465 + }, + "While constructing the external wrapper for:" + ], + "start_col": 9, + "start_line": 1 + }, + "While expanding the reference 'syscall_ptr' in:" + ], + "start_col": 6, + "start_line": 465 + }, + "While constructing the external wrapper for:" + ], + "start_col": 71, + "start_line": 1 + } + }, + "5520": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.mintOwner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 57, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/mintOwner/5388f692818f55977b2452a31ce8c0a2aaeeb5ab5c5db8c2d2f3ab50dcff739b.cairo" + }, + "parent_location": [ + { + "end_col": 15, + "end_line": 465, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "parent_location": [ + { + "end_col": 33, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/mintOwner/da17921a4e81c09e730800bbf23bfdbe5e9e6bfaedc59d80fbf62087fa43c27d.cairo" + }, + "parent_location": [ + { + "end_col": 15, + "end_line": 465, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "start_col": 6, + "start_line": 465 + }, + "While constructing the external wrapper for:" + ], + "start_col": 21, + "start_line": 1 + }, + "While expanding the reference 'pedersen_ptr' in:" + ], + "start_col": 6, + "start_line": 465 + }, + "While constructing the external wrapper for:" + ], + "start_col": 45, + "start_line": 1 + } + }, + "5521": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.mintOwner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 115, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/mintOwner/5388f692818f55977b2452a31ce8c0a2aaeeb5ab5c5db8c2d2f3ab50dcff739b.cairo" + }, + "parent_location": [ + { + "end_col": 15, + "end_line": 465, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "parent_location": [ + { + "end_col": 49, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/mintOwner/da17921a4e81c09e730800bbf23bfdbe5e9e6bfaedc59d80fbf62087fa43c27d.cairo" + }, + "parent_location": [ + { + "end_col": 15, + "end_line": 465, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "start_col": 6, + "start_line": 465 + }, + "While constructing the external wrapper for:" + ], + "start_col": 34, + "start_line": 1 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 6, + "start_line": 465 + }, + "While constructing the external wrapper for:" + ], + "start_col": 100, + "start_line": 1 + } + }, + "5522": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.mintOwner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 21, + "end_line": 4, + "input_file": { + "filename": "autogen/starknet/external/mintOwner/5388f692818f55977b2452a31ce8c0a2aaeeb5ab5c5db8c2d2f3ab50dcff739b.cairo" + }, + "parent_location": [ + { + "end_col": 15, + "end_line": 465, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "parent_location": [ + { + "end_col": 62, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/mintOwner/da17921a4e81c09e730800bbf23bfdbe5e9e6bfaedc59d80fbf62087fa43c27d.cairo" + }, + "parent_location": [ + { + "end_col": 15, + "end_line": 465, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "start_col": 6, + "start_line": 465 + }, + "While constructing the external wrapper for:" + ], + "start_col": 50, + "start_line": 1 + }, + "While expanding the reference 'retdata_size' in:" + ], + "start_col": 6, + "start_line": 465 + }, + "While constructing the external wrapper for:" + ], + "start_col": 20, + "start_line": 4 + } + }, + "5524": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.mintOwner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 16, + "end_line": 3, + "input_file": { + "filename": "autogen/starknet/external/mintOwner/5388f692818f55977b2452a31ce8c0a2aaeeb5ab5c5db8c2d2f3ab50dcff739b.cairo" + }, + "parent_location": [ + { + "end_col": 15, + "end_line": 465, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "parent_location": [ + { + "end_col": 70, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/mintOwner/da17921a4e81c09e730800bbf23bfdbe5e9e6bfaedc59d80fbf62087fa43c27d.cairo" + }, + "parent_location": [ + { + "end_col": 15, + "end_line": 465, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "start_col": 6, + "start_line": 465 + }, + "While constructing the external wrapper for:" + ], + "start_col": 63, + "start_line": 1 + }, + "While expanding the reference 'retdata' in:" + ], + "start_col": 6, + "start_line": 465 + }, + "While constructing the external wrapper for:" + ], + "start_col": 9, + "start_line": 3 + } + }, + "5525": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.mintOwner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 72, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/mintOwner/da17921a4e81c09e730800bbf23bfdbe5e9e6bfaedc59d80fbf62087fa43c27d.cairo" + }, + "parent_location": [ + { + "end_col": 15, + "end_line": 465, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "start_col": 6, + "start_line": 465 + }, + "While constructing the external wrapper for:" + ], + "start_col": 1, + "start_line": 1 + } + }, + "5526": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.burn" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 37, + "end_line": 474, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "parent_location": [ + { + "end_col": 60, + "end_line": 270, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "parent_location": [ + { + "end_col": 44, + "end_line": 475, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "start_col": 5, + "start_line": 475 + }, + "While trying to retrieve the implicit argument 'pedersen_ptr' in:" + ], + "start_col": 34, + "start_line": 270 + }, + "While expanding the reference 'pedersen_ptr' in:" + ], + "start_col": 11, + "start_line": 474 + } + }, + "5527": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.burn" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 57, + "end_line": 474, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "parent_location": [ + { + "end_col": 80, + "end_line": 270, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "parent_location": [ + { + "end_col": 44, + "end_line": 475, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "start_col": 5, + "start_line": 475 + }, + "While trying to retrieve the implicit argument 'syscall_ptr' in:" + ], + "start_col": 62, + "start_line": 270 + }, + "While expanding the reference 'syscall_ptr' in:" + ], + "start_col": 39, + "start_line": 474 + } + }, + "5528": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.burn" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 74, + "end_line": 474, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "parent_location": [ + { + "end_col": 97, + "end_line": 270, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc721/library.cairo" + }, + "parent_location": [ + { + "end_col": 44, + "end_line": 475, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "start_col": 5, + "start_line": 475 + }, + "While trying to retrieve the implicit argument 'range_check_ptr' in:" + ], + "start_col": 82, + "start_line": 270 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 59, + "start_line": 474 + } + }, + "5529": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.burn" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 92, + "end_line": 474, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "parent_location": [ + { + "end_col": 43, + "end_line": 475, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "start_col": 36, + "start_line": 475 + }, + "While expanding the reference 'tokenId' in:" + ], + "start_col": 76, + "start_line": 474 + } + }, + "5530": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.burn" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 92, + "end_line": 474, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "parent_location": [ + { + "end_col": 43, + "end_line": 475, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "start_col": 36, + "start_line": 475 + }, + "While expanding the reference 'tokenId' in:" + ], + "start_col": 76, + "start_line": 474 + } + }, + "5531": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.burn" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 44, + "end_line": 475, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "start_col": 5, + "start_line": 475 + } + }, + "5533": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.burn" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 92, + "end_line": 474, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "parent_location": [ + { + "end_col": 35, + "end_line": 476, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "start_col": 28, + "start_line": 476 + }, + "While expanding the reference 'tokenId' in:" + ], + "start_col": 76, + "start_line": 474 + } + }, + "5534": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.burn" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 92, + "end_line": 474, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "parent_location": [ + { + "end_col": 35, + "end_line": 476, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "start_col": 28, + "start_line": 476 + }, + "While expanding the reference 'tokenId' in:" + ], + "start_col": 76, + "start_line": 474 + } + }, + "5535": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.burn" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 36, + "end_line": 476, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "start_col": 5, + "start_line": 476 + } + }, + "5537": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.burn" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 15, + "end_line": 477, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "start_col": 5, + "start_line": 477 + } + }, + "5538": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.burn" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 40, + "end_line": 3, + "input_file": { + "filename": "autogen/starknet/arg_processor/60c79ef5477686f2843e61432dcde7f4fc0f354d42095115ea9dca625a35df6e.cairo" + }, + "parent_location": [ + { + "end_col": 92, + "end_line": 474, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "parent_location": [ + { + "end_col": 45, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/arg_processor/c31620b02d4d706f0542c989b2aadc01b0981d1f6a5933a8fe4937ace3d70d92.cairo" + }, + "parent_location": [ + { + "end_col": 10, + "end_line": 474, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "parent_location": [ + { + "end_col": 57, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/arg_processor/01cba52f8515996bb9d7070bde81ff39281d096d7024a558efcba6e1fd2402cf.cairo" + }, + "parent_location": [ + { + "end_col": 10, + "end_line": 474, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "start_col": 6, + "start_line": 474 + }, + "While handling calldata of" + ], + "start_col": 35, + "start_line": 1 + }, + "While expanding the reference '__calldata_actual_size' in:" + ], + "start_col": 6, + "start_line": 474 + }, + "While handling calldata of" + ], + "start_col": 31, + "start_line": 1 + }, + "While expanding the reference '__calldata_ptr' in:" + ], + "start_col": 76, + "start_line": 474 + }, + "While handling calldata argument 'tokenId'" + ], + "start_col": 22, + "start_line": 3 + } + }, + "5540": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.burn" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 58, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/arg_processor/01cba52f8515996bb9d7070bde81ff39281d096d7024a558efcba6e1fd2402cf.cairo" + }, + "parent_location": [ + { + "end_col": 10, + "end_line": 474, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "start_col": 6, + "start_line": 474 + }, + "While handling calldata of" + ], + "start_col": 1, + "start_line": 1 + } + }, + "5541": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.burn" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 110, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/burn/9684a85e93c782014ca14293edea4eb2502039a5a7b6538ecd39c56faaf12529.cairo" + }, + "parent_location": [ + { + "end_col": 37, + "end_line": 474, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "parent_location": [ + { + "end_col": 57, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/burn/eaf4d781176f2c7f8e24c490df96b0bc54d4e6b6ef7b6749ba2322b4fdcc923a.cairo" + }, + "parent_location": [ + { + "end_col": 10, + "end_line": 474, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "start_col": 6, + "start_line": 474 + }, + "While constructing the external wrapper for:" + ], + "start_col": 45, + "start_line": 1 + }, + "While expanding the reference 'pedersen_ptr' in:" + ], + "start_col": 11, + "start_line": 474 + }, + "While constructing the external wrapper for:" + ], + "start_col": 20, + "start_line": 1 + } + }, + "5542": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.burn" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 64, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/burn/b2c52ca2d2a8fc8791a983086d8716c5eacd0c3d62934914d2286f84b98ff4cb.cairo" + }, + "parent_location": [ + { + "end_col": 57, + "end_line": 474, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "parent_location": [ + { + "end_col": 82, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/burn/eaf4d781176f2c7f8e24c490df96b0bc54d4e6b6ef7b6749ba2322b4fdcc923a.cairo" + }, + "parent_location": [ + { + "end_col": 10, + "end_line": 474, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "start_col": 6, + "start_line": 474 + }, + "While constructing the external wrapper for:" + ], + "start_col": 71, + "start_line": 1 + }, + "While expanding the reference 'syscall_ptr' in:" + ], + "start_col": 39, + "start_line": 474 + }, + "While constructing the external wrapper for:" + ], + "start_col": 19, + "start_line": 1 + } + }, + "5543": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.burn" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 67, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/burn/741ea357d6336b0bed7bf0472425acd0311d543883b803388880e60a232040c7.cairo" + }, + "parent_location": [ + { + "end_col": 74, + "end_line": 474, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "parent_location": [ + { + "end_col": 115, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/burn/eaf4d781176f2c7f8e24c490df96b0bc54d4e6b6ef7b6749ba2322b4fdcc923a.cairo" + }, + "parent_location": [ + { + "end_col": 10, + "end_line": 474, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "start_col": 6, + "start_line": 474 + }, + "While constructing the external wrapper for:" + ], + "start_col": 100, + "start_line": 1 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 59, + "start_line": 474 + }, + "While constructing the external wrapper for:" + ], + "start_col": 23, + "start_line": 1 + } + }, + "5544": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.burn" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 67, + "end_line": 2, + "input_file": { + "filename": "autogen/starknet/arg_processor/60c79ef5477686f2843e61432dcde7f4fc0f354d42095115ea9dca625a35df6e.cairo" + }, + "parent_location": [ + { + "end_col": 92, + "end_line": 474, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "parent_location": [ + { + "end_col": 147, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/burn/eaf4d781176f2c7f8e24c490df96b0bc54d4e6b6ef7b6749ba2322b4fdcc923a.cairo" + }, + "parent_location": [ + { + "end_col": 10, + "end_line": 474, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "start_col": 6, + "start_line": 474 + }, + "While constructing the external wrapper for:" + ], + "start_col": 125, + "start_line": 1 + }, + "While expanding the reference '__calldata_arg_tokenId' in:" + ], + "start_col": 76, + "start_line": 474 + }, + "While handling calldata argument 'tokenId'" + ], + "start_col": 30, + "start_line": 1 + } + }, + "5545": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.burn" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 67, + "end_line": 2, + "input_file": { + "filename": "autogen/starknet/arg_processor/60c79ef5477686f2843e61432dcde7f4fc0f354d42095115ea9dca625a35df6e.cairo" + }, + "parent_location": [ + { + "end_col": 92, + "end_line": 474, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "parent_location": [ + { + "end_col": 147, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/burn/eaf4d781176f2c7f8e24c490df96b0bc54d4e6b6ef7b6749ba2322b4fdcc923a.cairo" + }, + "parent_location": [ + { + "end_col": 10, + "end_line": 474, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "start_col": 6, + "start_line": 474 + }, + "While constructing the external wrapper for:" + ], + "start_col": 125, + "start_line": 1 + }, + "While expanding the reference '__calldata_arg_tokenId' in:" + ], + "start_col": 76, + "start_line": 474 + }, + "While handling calldata argument 'tokenId'" + ], + "start_col": 30, + "start_line": 1 + } + }, + "5546": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.burn" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 10, + "end_line": 474, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "start_col": 6, + "start_line": 474 + } + }, + "5548": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.burn" + ], + "flow_tracking_data": null, + "hints": [ + { + "location": { + "end_col": 34, + "end_line": 2, + "input_file": { + "filename": "autogen/starknet/external/burn/eaf4d781176f2c7f8e24c490df96b0bc54d4e6b6ef7b6749ba2322b4fdcc923a.cairo" + }, + "parent_location": [ + { + "end_col": 10, + "end_line": 474, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "start_col": 6, + "start_line": 474 + }, + "While constructing the external wrapper for:" + ], + "start_col": 1, + "start_line": 2 + }, + "n_prefix_newlines": 0 + } + ], + "inst": { + "end_col": 24, + "end_line": 3, + "input_file": { + "filename": "autogen/starknet/external/burn/eaf4d781176f2c7f8e24c490df96b0bc54d4e6b6ef7b6749ba2322b4fdcc923a.cairo" + }, + "parent_location": [ + { + "end_col": 10, + "end_line": 474, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "start_col": 6, + "start_line": 474 + }, + "While constructing the external wrapper for:" + ], + "start_col": 1, + "start_line": 3 + } + }, + "5550": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.burn" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 82, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/burn/eaf4d781176f2c7f8e24c490df96b0bc54d4e6b6ef7b6749ba2322b4fdcc923a.cairo" + }, + "parent_location": [ + { + "end_col": 10, + "end_line": 474, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "parent_location": [ + { + "end_col": 20, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/burn/da17921a4e81c09e730800bbf23bfdbe5e9e6bfaedc59d80fbf62087fa43c27d.cairo" + }, + "parent_location": [ + { + "end_col": 10, + "end_line": 474, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "start_col": 6, + "start_line": 474 + }, + "While constructing the external wrapper for:" + ], + "start_col": 9, + "start_line": 1 + }, + "While expanding the reference 'syscall_ptr' in:" + ], + "start_col": 6, + "start_line": 474 + }, + "While constructing the external wrapper for:" + ], + "start_col": 71, + "start_line": 1 + } + }, + "5551": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.burn" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 57, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/burn/eaf4d781176f2c7f8e24c490df96b0bc54d4e6b6ef7b6749ba2322b4fdcc923a.cairo" + }, + "parent_location": [ + { + "end_col": 10, + "end_line": 474, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "parent_location": [ + { + "end_col": 33, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/burn/da17921a4e81c09e730800bbf23bfdbe5e9e6bfaedc59d80fbf62087fa43c27d.cairo" + }, + "parent_location": [ + { + "end_col": 10, + "end_line": 474, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "start_col": 6, + "start_line": 474 + }, + "While constructing the external wrapper for:" + ], + "start_col": 21, + "start_line": 1 + }, + "While expanding the reference 'pedersen_ptr' in:" + ], + "start_col": 6, + "start_line": 474 + }, + "While constructing the external wrapper for:" + ], + "start_col": 45, + "start_line": 1 + } + }, + "5552": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.burn" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 115, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/burn/eaf4d781176f2c7f8e24c490df96b0bc54d4e6b6ef7b6749ba2322b4fdcc923a.cairo" + }, + "parent_location": [ + { + "end_col": 10, + "end_line": 474, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "parent_location": [ + { + "end_col": 49, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/burn/da17921a4e81c09e730800bbf23bfdbe5e9e6bfaedc59d80fbf62087fa43c27d.cairo" + }, + "parent_location": [ + { + "end_col": 10, + "end_line": 474, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "start_col": 6, + "start_line": 474 + }, + "While constructing the external wrapper for:" + ], + "start_col": 34, + "start_line": 1 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 6, + "start_line": 474 + }, + "While constructing the external wrapper for:" + ], + "start_col": 100, + "start_line": 1 + } + }, + "5553": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.burn" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 21, + "end_line": 4, + "input_file": { + "filename": "autogen/starknet/external/burn/eaf4d781176f2c7f8e24c490df96b0bc54d4e6b6ef7b6749ba2322b4fdcc923a.cairo" + }, + "parent_location": [ + { + "end_col": 10, + "end_line": 474, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "parent_location": [ + { + "end_col": 62, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/burn/da17921a4e81c09e730800bbf23bfdbe5e9e6bfaedc59d80fbf62087fa43c27d.cairo" + }, + "parent_location": [ + { + "end_col": 10, + "end_line": 474, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "start_col": 6, + "start_line": 474 + }, + "While constructing the external wrapper for:" + ], + "start_col": 50, + "start_line": 1 + }, + "While expanding the reference 'retdata_size' in:" + ], + "start_col": 6, + "start_line": 474 + }, + "While constructing the external wrapper for:" + ], + "start_col": 20, + "start_line": 4 + } + }, + "5555": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.burn" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 16, + "end_line": 3, + "input_file": { + "filename": "autogen/starknet/external/burn/eaf4d781176f2c7f8e24c490df96b0bc54d4e6b6ef7b6749ba2322b4fdcc923a.cairo" + }, + "parent_location": [ + { + "end_col": 10, + "end_line": 474, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "parent_location": [ + { + "end_col": 70, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/burn/da17921a4e81c09e730800bbf23bfdbe5e9e6bfaedc59d80fbf62087fa43c27d.cairo" + }, + "parent_location": [ + { + "end_col": 10, + "end_line": 474, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "start_col": 6, + "start_line": 474 + }, + "While constructing the external wrapper for:" + ], + "start_col": 63, + "start_line": 1 + }, + "While expanding the reference 'retdata' in:" + ], + "start_col": 6, + "start_line": 474 + }, + "While constructing the external wrapper for:" + ], + "start_col": 9, + "start_line": 3 + } + }, + "5556": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.burn" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 72, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/burn/da17921a4e81c09e730800bbf23bfdbe5e9e6bfaedc59d80fbf62087fa43c27d.cairo" + }, + "parent_location": [ + { + "end_col": 10, + "end_line": 474, + "input_file": { + "filename": "src/sheet/Sheet.cairo" + }, + "start_col": 6, + "start_line": 474 + }, + "While constructing the external wrapper for:" + ], + "start_col": 1, + "start_line": 1 + } + } + } + }, "hints": { "0": [ { diff --git a/packages/starksheet-cairo/build/Sheet_abi.json b/packages/starksheet-cairo/build/Sheet_abi.json deleted file mode 100644 index ddf598b0..00000000 --- a/packages/starksheet-cairo/build/Sheet_abi.json +++ /dev/null @@ -1,849 +0,0 @@ -[ - { - "members": [ - { - "name": "low", - "offset": 0, - "type": "felt" - }, - { - "name": "high", - "offset": 1, - "type": "felt" - } - ], - "name": "Uint256", - "size": 2, - "type": "struct" - }, - { - "members": [ - { - "name": "id", - "offset": 0, - "type": "felt" - }, - { - "name": "owner", - "offset": 1, - "type": "felt" - }, - { - "name": "value", - "offset": 2, - "type": "felt" - } - ], - "name": "CellRendered", - "size": 3, - "type": "struct" - }, - { - "data": [ - { - "name": "previousOwner", - "type": "felt" - }, - { - "name": "newOwner", - "type": "felt" - } - ], - "keys": [], - "name": "OwnershipTransferred", - "type": "event" - }, - { - "data": [ - { - "name": "from_", - "type": "felt" - }, - { - "name": "to", - "type": "felt" - }, - { - "name": "tokenId", - "type": "Uint256" - } - ], - "keys": [], - "name": "Transfer", - "type": "event" - }, - { - "data": [ - { - "name": "owner", - "type": "felt" - }, - { - "name": "approved", - "type": "felt" - }, - { - "name": "tokenId", - "type": "Uint256" - } - ], - "keys": [], - "name": "Approval", - "type": "event" - }, - { - "data": [ - { - "name": "owner", - "type": "felt" - }, - { - "name": "operator", - "type": "felt" - }, - { - "name": "approved", - "type": "felt" - } - ], - "keys": [], - "name": "ApprovalForAll", - "type": "event" - }, - { - "data": [ - { - "name": "id", - "type": "felt" - }, - { - "name": "value", - "type": "felt" - }, - { - "name": "contract_address", - "type": "felt" - } - ], - "keys": [], - "name": "CellUpdated", - "type": "event" - }, - { - "inputs": [], - "name": "owner", - "outputs": [ - { - "name": "owner", - "type": "felt" - } - ], - "stateMutability": "view", - "type": "function" - }, - { - "inputs": [ - { - "name": "new_owner", - "type": "felt" - } - ], - "name": "transferOwnership", - "outputs": [], - "type": "function" - }, - { - "inputs": [ - { - "name": "max", - "type": "felt" - } - ], - "name": "setMaxPerWallet", - "outputs": [], - "type": "function" - }, - { - "inputs": [], - "name": "getMaxPerWallet", - "outputs": [ - { - "name": "max", - "type": "felt" - } - ], - "stateMutability": "view", - "type": "function" - }, - { - "inputs": [ - { - "name": "price", - "type": "felt" - } - ], - "name": "setCellPrice", - "outputs": [], - "type": "function" - }, - { - "inputs": [], - "name": "getCellPrice", - "outputs": [ - { - "name": "price", - "type": "felt" - } - ], - "stateMutability": "view", - "type": "function" - }, - { - "inputs": [ - { - "name": "rate", - "type": "felt" - } - ], - "name": "setRoyaltyRate", - "outputs": [], - "type": "function" - }, - { - "inputs": [], - "name": "getRoyaltyRate", - "outputs": [ - { - "name": "rate", - "type": "felt" - } - ], - "stateMutability": "view", - "type": "function" - }, - { - "inputs": [ - { - "name": "tokenId", - "type": "Uint256" - }, - { - "name": "salePrice", - "type": "Uint256" - } - ], - "name": "royaltyInfo", - "outputs": [ - { - "name": "receiver", - "type": "felt" - }, - { - "name": "royaltyAmount", - "type": "Uint256" - } - ], - "stateMutability": "view", - "type": "function" - }, - { - "inputs": [ - { - "name": "address", - "type": "felt" - } - ], - "name": "setCellRenderer", - "outputs": [], - "type": "function" - }, - { - "inputs": [], - "name": "getCellRenderer", - "outputs": [ - { - "name": "address", - "type": "felt" - } - ], - "stateMutability": "view", - "type": "function" - }, - { - "inputs": [ - { - "name": "root", - "type": "felt" - } - ], - "name": "setMerkleRoot", - "outputs": [], - "type": "function" - }, - { - "inputs": [], - "name": "getMerkleRoot", - "outputs": [ - { - "name": "root", - "type": "felt" - } - ], - "stateMutability": "view", - "type": "function" - }, - { - "inputs": [ - { - "name": "tokenId", - "type": "felt" - }, - { - "name": "contractAddress", - "type": "felt" - }, - { - "name": "value", - "type": "felt" - }, - { - "name": "cell_calldata_len", - "type": "felt" - }, - { - "name": "cell_calldata", - "type": "felt*" - } - ], - "name": "setCell", - "outputs": [], - "type": "function" - }, - { - "inputs": [ - { - "name": "tokenId", - "type": "felt" - } - ], - "name": "getCell", - "outputs": [ - { - "name": "contractAddress", - "type": "felt" - }, - { - "name": "value", - "type": "felt" - }, - { - "name": "cell_calldata_len", - "type": "felt" - }, - { - "name": "cell_calldata", - "type": "felt*" - } - ], - "stateMutability": "view", - "type": "function" - }, - { - "inputs": [ - { - "name": "tokenId", - "type": "felt" - } - ], - "name": "renderCell", - "outputs": [ - { - "name": "cell", - "type": "CellRendered" - } - ], - "stateMutability": "view", - "type": "function" - }, - { - "inputs": [ - { - "name": "tokenId", - "type": "felt" - } - ], - "name": "renderCellValue", - "outputs": [ - { - "name": "value", - "type": "felt" - } - ], - "stateMutability": "view", - "type": "function" - }, - { - "inputs": [], - "name": "renderGrid", - "outputs": [ - { - "name": "cells_len", - "type": "felt" - }, - { - "name": "cells", - "type": "CellRendered*" - } - ], - "stateMutability": "view", - "type": "function" - }, - { - "inputs": [ - { - "name": "tokenId", - "type": "Uint256" - }, - { - "name": "proof_len", - "type": "felt" - }, - { - "name": "proof", - "type": "felt*" - } - ], - "name": "mintPublic", - "outputs": [], - "type": "function" - }, - { - "inputs": [ - { - "name": "tokenId", - "type": "Uint256" - }, - { - "name": "proof_len", - "type": "felt" - }, - { - "name": "proof", - "type": "felt*" - }, - { - "name": "contractAddress", - "type": "felt" - }, - { - "name": "value", - "type": "felt" - }, - { - "name": "cellCalldata_len", - "type": "felt" - }, - { - "name": "cellCalldata", - "type": "felt*" - } - ], - "name": "mintAndSetPublic", - "outputs": [], - "type": "function" - }, - { - "inputs": [ - { - "name": "tokenId", - "type": "Uint256" - } - ], - "name": "tokenURI", - "outputs": [ - { - "name": "token_uri_len", - "type": "felt" - }, - { - "name": "token_uri", - "type": "felt*" - } - ], - "stateMutability": "view", - "type": "function" - }, - { - "inputs": [ - { - "name": "name", - "type": "felt" - }, - { - "name": "symbol", - "type": "felt" - }, - { - "name": "owner", - "type": "felt" - }, - { - "name": "merkle_root", - "type": "felt" - }, - { - "name": "max_per_wallet", - "type": "felt" - }, - { - "name": "renderer_address", - "type": "felt" - } - ], - "name": "initialize", - "outputs": [], - "type": "function" - }, - { - "inputs": [], - "name": "is_initialized", - "outputs": [ - { - "name": "res", - "type": "felt" - } - ], - "stateMutability": "view", - "type": "function" - }, - { - "inputs": [], - "name": "contractURI", - "outputs": [ - { - "name": "contractURI_len", - "type": "felt" - }, - { - "name": "contractURI", - "type": "felt*" - } - ], - "stateMutability": "view", - "type": "function" - }, - { - "inputs": [ - { - "name": "contract_uri_len", - "type": "felt" - }, - { - "name": "contract_uri", - "type": "felt*" - } - ], - "name": "setContractUri", - "outputs": [], - "type": "function" - }, - { - "inputs": [], - "name": "totalSupply", - "outputs": [ - { - "name": "totalSupply", - "type": "Uint256" - } - ], - "stateMutability": "view", - "type": "function" - }, - { - "inputs": [ - { - "name": "index", - "type": "Uint256" - } - ], - "name": "tokenByIndex", - "outputs": [ - { - "name": "tokenId", - "type": "Uint256" - } - ], - "stateMutability": "view", - "type": "function" - }, - { - "inputs": [ - { - "name": "owner", - "type": "felt" - }, - { - "name": "index", - "type": "Uint256" - } - ], - "name": "tokenOfOwnerByIndex", - "outputs": [ - { - "name": "tokenId", - "type": "Uint256" - } - ], - "stateMutability": "view", - "type": "function" - }, - { - "inputs": [ - { - "name": "interfaceId", - "type": "felt" - } - ], - "name": "supportsInterface", - "outputs": [ - { - "name": "success", - "type": "felt" - } - ], - "stateMutability": "view", - "type": "function" - }, - { - "inputs": [], - "name": "name", - "outputs": [ - { - "name": "name", - "type": "felt" - } - ], - "stateMutability": "view", - "type": "function" - }, - { - "inputs": [ - { - "name": "name", - "type": "felt" - } - ], - "name": "setName", - "outputs": [], - "type": "function" - }, - { - "inputs": [], - "name": "symbol", - "outputs": [ - { - "name": "symbol", - "type": "felt" - } - ], - "stateMutability": "view", - "type": "function" - }, - { - "inputs": [ - { - "name": "symbol", - "type": "felt" - } - ], - "name": "setSymbol", - "outputs": [], - "type": "function" - }, - { - "inputs": [], - "name": "openMint", - "outputs": [], - "type": "function" - }, - { - "inputs": [], - "name": "closeMint", - "outputs": [], - "type": "function" - }, - { - "inputs": [ - { - "name": "owner", - "type": "felt" - } - ], - "name": "balanceOf", - "outputs": [ - { - "name": "balance", - "type": "Uint256" - } - ], - "stateMutability": "view", - "type": "function" - }, - { - "inputs": [ - { - "name": "tokenId", - "type": "Uint256" - } - ], - "name": "ownerOf", - "outputs": [ - { - "name": "owner", - "type": "felt" - } - ], - "stateMutability": "view", - "type": "function" - }, - { - "inputs": [ - { - "name": "tokenId", - "type": "Uint256" - } - ], - "name": "getApproved", - "outputs": [ - { - "name": "approved", - "type": "felt" - } - ], - "stateMutability": "view", - "type": "function" - }, - { - "inputs": [ - { - "name": "owner", - "type": "felt" - }, - { - "name": "operator", - "type": "felt" - } - ], - "name": "isApprovedForAll", - "outputs": [ - { - "name": "isApproved", - "type": "felt" - } - ], - "stateMutability": "view", - "type": "function" - }, - { - "inputs": [ - { - "name": "to", - "type": "felt" - }, - { - "name": "tokenId", - "type": "Uint256" - } - ], - "name": "approve", - "outputs": [], - "type": "function" - }, - { - "inputs": [ - { - "name": "operator", - "type": "felt" - }, - { - "name": "approved", - "type": "felt" - } - ], - "name": "setApprovalForAll", - "outputs": [], - "type": "function" - }, - { - "inputs": [ - { - "name": "from_", - "type": "felt" - }, - { - "name": "to", - "type": "felt" - }, - { - "name": "tokenId", - "type": "Uint256" - } - ], - "name": "transferFrom", - "outputs": [], - "type": "function" - }, - { - "inputs": [ - { - "name": "from_", - "type": "felt" - }, - { - "name": "to", - "type": "felt" - }, - { - "name": "tokenId", - "type": "Uint256" - }, - { - "name": "data_len", - "type": "felt" - }, - { - "name": "data", - "type": "felt*" - } - ], - "name": "safeTransferFrom", - "outputs": [], - "type": "function" - }, - { - "inputs": [ - { - "name": "to", - "type": "felt" - }, - { - "name": "tokenId", - "type": "Uint256" - } - ], - "name": "mintOwner", - "outputs": [], - "type": "function" - }, - { - "inputs": [ - { - "name": "tokenId", - "type": "Uint256" - } - ], - "name": "burn", - "outputs": [], - "type": "function" - } -] diff --git a/packages/starksheet-cairo/build/Starksheet.json b/packages/starksheet-cairo/build/Starksheet.json index e1f773ec..e07a70f7 100644 --- a/packages/starksheet-cairo/build/Starksheet.json +++ b/packages/starksheet-cairo/build/Starksheet.json @@ -1798,7 +1798,41268 @@ "0x48127ffb7fff8000", "0x208b7fff7fff7ffe" ], - "debug_info": null, + "debug_info": { + "file_contents": { + "autogen/starknet/arg_processor/01cba52f8515996bb9d7070bde81ff39281d096d7024a558efcba6e1fd2402cf.cairo": "assert [cast(fp + (-4), felt*)] = __calldata_actual_size;\n", + "autogen/starknet/arg_processor/10f4ffaf96982a2fff2ff72dc2d3b1a8878257148aab4051a8f2ef7f16687f01.cairo": "assert [__return_value_ptr] = ret_value.address;\nlet __return_value_ptr = __return_value_ptr + 1;\n", + "autogen/starknet/arg_processor/1bbc33231ead392f3a08d02f40babade53c6aa934a03fd2567a7873343dbb650.cairo": "let __calldata_arg_price = [__calldata_ptr];\nlet __calldata_ptr = __calldata_ptr + 1;\n", + "autogen/starknet/arg_processor/302a0e7f223f7f95d8ec699c8e1fa2628283de74616337c794098be1f39f0256.cairo": "let __calldata_arg_index = [__calldata_ptr];\nlet __calldata_ptr = __calldata_ptr + 1;\n", + "autogen/starknet/arg_processor/32dd5497db578c846b634f25154d0ffb622256766f5d2360a53f46e9c348ed3e.cairo": "assert [__calldata_ptr] = recipient;\nlet __calldata_ptr = __calldata_ptr + 1;\n", + "autogen/starknet/arg_processor/3e385d05eb8b8962d4f5c1b3d49f84f4e59f25eac4e17d295a6d37189be1249a.cairo": "assert [__return_value_ptr] = ret_value.addresses_len;\nlet __return_value_ptr = __return_value_ptr + 1;\n", + "autogen/starknet/arg_processor/445d818b0524d35ae3e73b7abec41731d1445f0ce6866ec5a3a8a871521799a0.cairo": "assert [__calldata_ptr] = newOwner;\nlet __calldata_ptr = __calldata_ptr + 1;\n", + "autogen/starknet/arg_processor/502707e41b9f24cc24d98a88f76cd4304e8e77c4465a6a9402a5f1a76177b453.cairo": "// Create a reference to amount as felt*.\nlet __calldata_tmp: felt* = cast(&amount, felt*);\nassert [__calldata_ptr + 0] = [__calldata_tmp + 0];\nassert [__calldata_ptr + 1] = [__calldata_tmp + 1];\nlet __calldata_ptr = __calldata_ptr + 2;\n", + "autogen/starknet/arg_processor/6308f83da46627ba10340f2f0137d9c971a0c59579c060b7ebe8202efda77ead.cairo": "let __calldata_arg_sheet_class_hash = [__calldata_ptr];\nlet __calldata_ptr = __calldata_ptr + 1;\n", + "autogen/starknet/arg_processor/712c2a95dbae039e77112e72178da3f83d21edfc1285b387ccfa43e0f878d990.cairo": "assert [__calldata_ptr] = sender;\nlet __calldata_ptr = __calldata_ptr + 1;\n", + "autogen/starknet/arg_processor/71bda5d6615cf66a93af5985e2790bee9e14558a8db508f619c3499ab9df6755.cairo": "assert [__calldata_ptr] = account;\nlet __calldata_ptr = __calldata_ptr + 1;\n", + "autogen/starknet/arg_processor/84a2bc64d851e2911ec0d13897cb6972a17449fe2ee5622e1f07b8af8659444b.cairo": "let __calldata_arg_sheet_price = [__calldata_ptr];\nlet __calldata_ptr = __calldata_ptr + 1;\n", + "autogen/starknet/arg_processor/8ca78f1082aaedcf62c13aff4dffe5943aa04164c60cb6d9f03916c0319201df.cairo": "let __return_value_arg_success = [__return_value_ptr];\nlet __return_value_ptr = __return_value_ptr + 1;\n", + "autogen/starknet/arg_processor/8e21266a36f2710b8dc2a249b2659712cfe8161a5ae07153a6fff3f134757f14.cairo": "let __return_value_arg_balance = [\n cast(__return_value_ptr, starkware.cairo.common.uint256.Uint256*)];\nlet __return_value_ptr = __return_value_ptr + 2;\n", + "autogen/starknet/arg_processor/96447016176d161dae83f414c4d3e33e78856e0ef69bc33f8d419f1c9b90f9c5.cairo": "assert retdata_size = __return_value_actual_size;\n", + "autogen/starknet/arg_processor/99058c0781745b3c0332799d723549974cbf489b623dde03906204304de60803.cairo": "let __calldata_arg_symbol = [__calldata_ptr];\nlet __calldata_ptr = __calldata_ptr + 1;\n", + "autogen/starknet/arg_processor/991f62016c321db1ce050da1566d298118c65229306c26d6cd25e91286a63d4b.cairo": "let __calldata_arg_proof_len = [__calldata_ptr];\nlet __calldata_ptr = __calldata_ptr + 1;\n", + "autogen/starknet/arg_processor/a659306d4758a5c63e995df20d060f91abc84aed3cd250525fc5b97fe025812e.cairo": "assert [__return_value_ptr] = ret_value.hash;\nlet __return_value_ptr = __return_value_ptr + 1;\n", + "autogen/starknet/arg_processor/acb57963143b0014f89246f7251457b3db569260785a29b3c1873be8a361d0ee.cairo": "// Check that the length is non-negative.\nassert [range_check_ptr] = ret_value.addresses_len;\n// Store the updated range_check_ptr as a local variable to keep it available after\n// the memcpy.\nlocal range_check_ptr = range_check_ptr + 1;\n// Keep a reference to __return_value_ptr.\nlet __return_value_ptr_copy = __return_value_ptr;\n// Store the updated __return_value_ptr as a local variable to keep it available after\n// the memcpy.\nlocal __return_value_ptr: felt* = __return_value_ptr + ret_value.addresses_len * 1;\nmemcpy(\n dst=__return_value_ptr_copy,\n src=ret_value.addresses,\n len=ret_value.addresses_len * 1);\n", + "autogen/starknet/arg_processor/accb388bcbbace5b6218198851efaad2a781c1339e305a37fab51afe90a3194a.cairo": "let __return_value_actual_size = __return_value_ptr - cast(retdata, felt*);\n", + "autogen/starknet/arg_processor/b07888c526f97925bd7037f4dcde235d5ffb2d92354828348c217678c2166713.cairo": "let __calldata_arg_hash = [__calldata_ptr];\nlet __calldata_ptr = __calldata_ptr + 1;\n", + "autogen/starknet/arg_processor/b945eb4d2e6ce71690a8e9a323dfc6cc25a7cf0bd0657092989cb3ad9f814989.cairo": "let __calldata_arg_default_renderer_address = [__calldata_ptr];\nlet __calldata_ptr = __calldata_ptr + 1;\n", + "autogen/starknet/arg_processor/c31620b02d4d706f0542c989b2aadc01b0981d1f6a5933a8fe4937ace3d70d92.cairo": "let __calldata_actual_size = __calldata_ptr - cast([cast(fp + (-3), felt**)], felt*);\n", + "autogen/starknet/arg_processor/c8edcb1cbb2b70f99346c0510efba5a82524d6fbe8558629ad05a45a84efd25b.cairo": "// Check that the length is non-negative.\nassert [range_check_ptr] = __calldata_arg_proof_len;\nlet range_check_ptr = range_check_ptr + 1;\n// Create the reference.\nlet __calldata_arg_proof = cast(__calldata_ptr, felt*);\n// Use 'tempvar' instead of 'let' to avoid repeating this computation for the\n// following arguments.\ntempvar __calldata_ptr = __calldata_ptr + __calldata_arg_proof_len * 1;\n", + "autogen/starknet/arg_processor/cee22ce33150260a0bc7aaad2ed2e39f7a6797138ea5a730329defaab1944291.cairo": "assert [__return_value_ptr] = ret_value.price;\nlet __return_value_ptr = __return_value_ptr + 1;\n", + "autogen/starknet/arg_processor/d7daa544e246461a936b5ac82f5344c08a96429550ee8026ea086c8d8ed93006.cairo": "let __calldata_arg_address = [__calldata_ptr];\nlet __calldata_ptr = __calldata_ptr + 1;\n", + "autogen/starknet/arg_processor/e1eb73cd870ec466294c3700e77817cf3c039ac1384882ddb76383eb87a5da90.cairo": "let __calldata_arg_name = [__calldata_ptr];\nlet __calldata_ptr = __calldata_ptr + 1;\n", + "autogen/starknet/arg_processor/e2129a0023ce5f9e4c3de1d6fb100b2688dccff4a2ed2082db4a311f35c53e21.cairo": "assert [__calldata_ptr] = previousOwner;\nlet __calldata_ptr = __calldata_ptr + 1;\n", + "autogen/starknet/arg_processor/f69f90509a2291ee8ff0cd25e4f9480461ca240ddaae0be0133e6c7b68569aae.cairo": "let __calldata_arg_proxy_class_hash = [__calldata_ptr];\nlet __calldata_ptr = __calldata_ptr + 1;\n", + "autogen/starknet/arg_processor/f6a4d9ae897caf37cefd18f7c8da7eee73157818279359aadee282f0fe59cdbc.cairo": "let __calldata_arg_owner = [__calldata_ptr];\nlet __calldata_ptr = __calldata_ptr + 1;\n", + "autogen/starknet/contract_interface/IERC20/balanceOf/4974e5a70a1f6babd6af454c42f20ca77d636c9a1af9e765a25bc1023d028b2f.cairo": "func balanceOf{syscall_ptr: felt*, range_check_ptr}(\n contract_address: felt) {\n}\n", + "autogen/starknet/contract_interface/IERC20/balanceOf/64f7842b108e76706927b78270ac73c789c558c54431b3359e4441e63ec2a868.cairo": "\nalloc_locals;\nlet (local calldata_ptr_start: felt*) = alloc();\nlet __calldata_ptr = calldata_ptr_start;\n", + "autogen/starknet/contract_interface/IERC20/balanceOf/84976f04d2392a893b3a3e1cb1e52aaddb37779623637aee3294e48be6be0239.cairo": "\nreturn (balance=__return_value_arg_balance,);\n", + "autogen/starknet/contract_interface/IERC20/balanceOf/afc82e35cedd3763938580dff4a9aa51517f6ab4bcc066fafd0fa2a8af4fe4c6.cairo": "\nlet (retdata_size, retdata) = call_contract(\n contract_address=contract_address,\n function_selector=BALANCEOF_SELECTOR,\n calldata_size=__calldata_ptr - calldata_ptr_start,\n calldata=calldata_ptr_start);\n", + "autogen/starknet/contract_interface/IERC20/transfer/11b5e57d1551eafcfbe317b927fce82a3ede967a003d827e8a226516d028537c.cairo": "\nlet (retdata_size, retdata) = call_contract(\n contract_address=contract_address,\n function_selector=TRANSFER_SELECTOR,\n calldata_size=__calldata_ptr - calldata_ptr_start,\n calldata=calldata_ptr_start);\n", + "autogen/starknet/contract_interface/IERC20/transfer/18abb29d0a089e1c243e4bd2b316687e6162b3321c14733ee37389da5d8b074f.cairo": "\nreturn (success=__return_value_arg_success,);\n", + "autogen/starknet/contract_interface/IERC20/transfer/64f7842b108e76706927b78270ac73c789c558c54431b3359e4441e63ec2a868.cairo": "\nalloc_locals;\nlet (local calldata_ptr_start: felt*) = alloc();\nlet __calldata_ptr = calldata_ptr_start;\n", + "autogen/starknet/contract_interface/IERC20/transfer/f892130d94edea9ae607acf869de96f491807d8a0068726c99a57f1b7072baed.cairo": "func transfer{syscall_ptr: felt*, range_check_ptr}(\n contract_address: felt) {\n}\n", + "autogen/starknet/contract_interface/IERC20/transferFrom/18abb29d0a089e1c243e4bd2b316687e6162b3321c14733ee37389da5d8b074f.cairo": "\nreturn (success=__return_value_arg_success,);\n", + "autogen/starknet/contract_interface/IERC20/transferFrom/64f7842b108e76706927b78270ac73c789c558c54431b3359e4441e63ec2a868.cairo": "\nalloc_locals;\nlet (local calldata_ptr_start: felt*) = alloc();\nlet __calldata_ptr = calldata_ptr_start;\n", + "autogen/starknet/contract_interface/IERC20/transferFrom/b016d077f46f58d4cffabd707b4d3495a859d0f543f418223b1ea57e409144f2.cairo": "\nlet (retdata_size, retdata) = call_contract(\n contract_address=contract_address,\n function_selector=TRANSFERFROM_SELECTOR,\n calldata_size=__calldata_ptr - calldata_ptr_start,\n calldata=calldata_ptr_start);\n", + "autogen/starknet/contract_interface/IERC20/transferFrom/f8c7980cd46ed6d764c999318b5692736b724dc08c1bf96e92d1b77ddf37af10.cairo": "func transferFrom{syscall_ptr: felt*, range_check_ptr}(\n contract_address: felt) {\n}\n", + "autogen/starknet/event/OwnershipTransferred/6150feec30bd48bfd0f446ed8c155a6d911a2c3fb3ec7a980733900416819259.cairo": "emit_event(keys_len=1, keys=__keys_ptr, data_len=__calldata_ptr - __data_ptr, data=__data_ptr);\nreturn ();\n", + "autogen/starknet/event/OwnershipTransferred/8220fde17ca5479f12ae71a8036f4d354fe722f2c036da610b53511924e4ee84.cairo": "alloc_locals;\nlet (local __keys_ptr: felt*) = alloc();\nassert [__keys_ptr] = SELECTOR;\nlet (local __data_ptr: felt*) = alloc();\nlet __calldata_ptr = __data_ptr;\n", + "autogen/starknet/event/OwnershipTransferred/a7a8ae41be29ac9f4f6c3b7837c448d787ca051dd1ade98f409e54d33d112504.cairo": "func emit{syscall_ptr: felt*, range_check_ptr}() {\n}\n", + "autogen/starknet/external/addSheet/213f354d56fa372fb3299883fcb78fd6cc8bc78c028bf3d27b2cc1ff0477e80a.cairo": "let ret_value = __wrapped_func{syscall_ptr=syscall_ptr, pedersen_ptr=pedersen_ptr, range_check_ptr=range_check_ptr}(name=__calldata_arg_name, symbol=__calldata_arg_symbol, proof_len=__calldata_arg_proof_len, proof=__calldata_arg_proof,);\nlet (range_check_ptr, retdata_size, retdata) = addSheet_encode_return(ret_value, range_check_ptr);\n", + "autogen/starknet/external/addSheet/741ea357d6336b0bed7bf0472425acd0311d543883b803388880e60a232040c7.cairo": "let range_check_ptr = [cast([cast(fp + (-5), felt**)] + 2, felt*)];\n", + "autogen/starknet/external/addSheet/9684a85e93c782014ca14293edea4eb2502039a5a7b6538ecd39c56faaf12529.cairo": "let pedersen_ptr = [cast([cast(fp + (-5), felt**)] + 1, starkware.cairo.common.cairo_builtins.HashBuiltin**)];\n", + "autogen/starknet/external/addSheet/b2c52ca2d2a8fc8791a983086d8716c5eacd0c3d62934914d2286f84b98ff4cb.cairo": "let syscall_ptr = [cast([cast(fp + (-5), felt**)] + 0, felt**)];\n", + "autogen/starknet/external/addSheet/da17921a4e81c09e730800bbf23bfdbe5e9e6bfaedc59d80fbf62087fa43c27d.cairo": "return (syscall_ptr,pedersen_ptr,range_check_ptr,retdata_size,retdata);\n", + "autogen/starknet/external/constructor/741ea357d6336b0bed7bf0472425acd0311d543883b803388880e60a232040c7.cairo": "let range_check_ptr = [cast([cast(fp + (-5), felt**)] + 2, felt*)];\n", + "autogen/starknet/external/constructor/8f3749cf8c383cbc50d9ba9905d1cad4ce7daf1443f3d85766484d9a76dbbaa9.cairo": "let ret_value = __wrapped_func{syscall_ptr=syscall_ptr, pedersen_ptr=pedersen_ptr, range_check_ptr=range_check_ptr}(owner=__calldata_arg_owner, sheet_class_hash=__calldata_arg_sheet_class_hash, proxy_class_hash=__calldata_arg_proxy_class_hash, default_renderer_address=__calldata_arg_default_renderer_address, sheet_price=__calldata_arg_sheet_price,);\n%{ memory[ap] = segments.add() %} // Allocate memory for return value.\ntempvar retdata: felt*;\nlet retdata_size = 0;\n", + "autogen/starknet/external/constructor/9684a85e93c782014ca14293edea4eb2502039a5a7b6538ecd39c56faaf12529.cairo": "let pedersen_ptr = [cast([cast(fp + (-5), felt**)] + 1, starkware.cairo.common.cairo_builtins.HashBuiltin**)];\n", + "autogen/starknet/external/constructor/b2c52ca2d2a8fc8791a983086d8716c5eacd0c3d62934914d2286f84b98ff4cb.cairo": "let syscall_ptr = [cast([cast(fp + (-5), felt**)] + 0, felt**)];\n", + "autogen/starknet/external/constructor/da17921a4e81c09e730800bbf23bfdbe5e9e6bfaedc59d80fbf62087fa43c27d.cairo": "return (syscall_ptr,pedersen_ptr,range_check_ptr,retdata_size,retdata);\n", + "autogen/starknet/external/getMerkleRoot/741ea357d6336b0bed7bf0472425acd0311d543883b803388880e60a232040c7.cairo": "let range_check_ptr = [cast([cast(fp + (-5), felt**)] + 2, felt*)];\n", + "autogen/starknet/external/getMerkleRoot/9684a85e93c782014ca14293edea4eb2502039a5a7b6538ecd39c56faaf12529.cairo": "let pedersen_ptr = [cast([cast(fp + (-5), felt**)] + 1, starkware.cairo.common.cairo_builtins.HashBuiltin**)];\n", + "autogen/starknet/external/getMerkleRoot/9ec40c6ab1532b67d6b3241da7f0fc2a824d63002b85dbc8e7b345e400aebd93.cairo": "let ret_value = __wrapped_func{syscall_ptr=syscall_ptr, pedersen_ptr=pedersen_ptr, range_check_ptr=range_check_ptr}();\nlet (range_check_ptr, retdata_size, retdata) = getMerkleRoot_encode_return(ret_value, range_check_ptr);\n", + "autogen/starknet/external/getMerkleRoot/b2c52ca2d2a8fc8791a983086d8716c5eacd0c3d62934914d2286f84b98ff4cb.cairo": "let syscall_ptr = [cast([cast(fp + (-5), felt**)] + 0, felt**)];\n", + "autogen/starknet/external/getMerkleRoot/da17921a4e81c09e730800bbf23bfdbe5e9e6bfaedc59d80fbf62087fa43c27d.cairo": "return (syscall_ptr,pedersen_ptr,range_check_ptr,retdata_size,retdata);\n", + "autogen/starknet/external/getProxyClassHash/3ddbcd9ddbb80179925bc30a42d371d91cb9b5017c3e52f66e0fb19001690927.cairo": "let ret_value = __wrapped_func{syscall_ptr=syscall_ptr, pedersen_ptr=pedersen_ptr, range_check_ptr=range_check_ptr}();\nlet (range_check_ptr, retdata_size, retdata) = getProxyClassHash_encode_return(ret_value, range_check_ptr);\n", + "autogen/starknet/external/getProxyClassHash/741ea357d6336b0bed7bf0472425acd0311d543883b803388880e60a232040c7.cairo": "let range_check_ptr = [cast([cast(fp + (-5), felt**)] + 2, felt*)];\n", + "autogen/starknet/external/getProxyClassHash/9684a85e93c782014ca14293edea4eb2502039a5a7b6538ecd39c56faaf12529.cairo": "let pedersen_ptr = [cast([cast(fp + (-5), felt**)] + 1, starkware.cairo.common.cairo_builtins.HashBuiltin**)];\n", + "autogen/starknet/external/getProxyClassHash/b2c52ca2d2a8fc8791a983086d8716c5eacd0c3d62934914d2286f84b98ff4cb.cairo": "let syscall_ptr = [cast([cast(fp + (-5), felt**)] + 0, felt**)];\n", + "autogen/starknet/external/getProxyClassHash/da17921a4e81c09e730800bbf23bfdbe5e9e6bfaedc59d80fbf62087fa43c27d.cairo": "return (syscall_ptr,pedersen_ptr,range_check_ptr,retdata_size,retdata);\n", + "autogen/starknet/external/getSheet/741ea357d6336b0bed7bf0472425acd0311d543883b803388880e60a232040c7.cairo": "let range_check_ptr = [cast([cast(fp + (-5), felt**)] + 2, felt*)];\n", + "autogen/starknet/external/getSheet/9684a85e93c782014ca14293edea4eb2502039a5a7b6538ecd39c56faaf12529.cairo": "let pedersen_ptr = [cast([cast(fp + (-5), felt**)] + 1, starkware.cairo.common.cairo_builtins.HashBuiltin**)];\n", + "autogen/starknet/external/getSheet/b2c52ca2d2a8fc8791a983086d8716c5eacd0c3d62934914d2286f84b98ff4cb.cairo": "let syscall_ptr = [cast([cast(fp + (-5), felt**)] + 0, felt**)];\n", + "autogen/starknet/external/getSheet/da17921a4e81c09e730800bbf23bfdbe5e9e6bfaedc59d80fbf62087fa43c27d.cairo": "return (syscall_ptr,pedersen_ptr,range_check_ptr,retdata_size,retdata);\n", + "autogen/starknet/external/getSheet/e5369793017601b4809f128c1b1eae1af4f28b4fc1fe5cf3d3379a32bfd7147f.cairo": "let ret_value = __wrapped_func{syscall_ptr=syscall_ptr, pedersen_ptr=pedersen_ptr, range_check_ptr=range_check_ptr}(index=__calldata_arg_index,);\nlet (range_check_ptr, retdata_size, retdata) = getSheet_encode_return(ret_value, range_check_ptr);\n", + "autogen/starknet/external/getSheetClassHash/4e35a6fd683bc5b2d0a281192e391bc6168a3b763b673e27f53d906ce8a07fe0.cairo": "let ret_value = __wrapped_func{syscall_ptr=syscall_ptr, pedersen_ptr=pedersen_ptr, range_check_ptr=range_check_ptr}();\nlet (range_check_ptr, retdata_size, retdata) = getSheetClassHash_encode_return(ret_value, range_check_ptr);\n", + "autogen/starknet/external/getSheetClassHash/741ea357d6336b0bed7bf0472425acd0311d543883b803388880e60a232040c7.cairo": "let range_check_ptr = [cast([cast(fp + (-5), felt**)] + 2, felt*)];\n", + "autogen/starknet/external/getSheetClassHash/9684a85e93c782014ca14293edea4eb2502039a5a7b6538ecd39c56faaf12529.cairo": "let pedersen_ptr = [cast([cast(fp + (-5), felt**)] + 1, starkware.cairo.common.cairo_builtins.HashBuiltin**)];\n", + "autogen/starknet/external/getSheetClassHash/b2c52ca2d2a8fc8791a983086d8716c5eacd0c3d62934914d2286f84b98ff4cb.cairo": "let syscall_ptr = [cast([cast(fp + (-5), felt**)] + 0, felt**)];\n", + "autogen/starknet/external/getSheetClassHash/da17921a4e81c09e730800bbf23bfdbe5e9e6bfaedc59d80fbf62087fa43c27d.cairo": "return (syscall_ptr,pedersen_ptr,range_check_ptr,retdata_size,retdata);\n", + "autogen/starknet/external/getSheetDefaultRendererAddress/1a541aa0959ce4f507f6fe69f182c70918c1d2f85e42bf41688170561275cbca.cairo": "let ret_value = __wrapped_func{syscall_ptr=syscall_ptr, pedersen_ptr=pedersen_ptr, range_check_ptr=range_check_ptr}();\nlet (range_check_ptr, retdata_size, retdata) = getSheetDefaultRendererAddress_encode_return(ret_value, range_check_ptr);\n", + "autogen/starknet/external/getSheetDefaultRendererAddress/741ea357d6336b0bed7bf0472425acd0311d543883b803388880e60a232040c7.cairo": "let range_check_ptr = [cast([cast(fp + (-5), felt**)] + 2, felt*)];\n", + "autogen/starknet/external/getSheetDefaultRendererAddress/9684a85e93c782014ca14293edea4eb2502039a5a7b6538ecd39c56faaf12529.cairo": "let pedersen_ptr = [cast([cast(fp + (-5), felt**)] + 1, starkware.cairo.common.cairo_builtins.HashBuiltin**)];\n", + "autogen/starknet/external/getSheetDefaultRendererAddress/b2c52ca2d2a8fc8791a983086d8716c5eacd0c3d62934914d2286f84b98ff4cb.cairo": "let syscall_ptr = [cast([cast(fp + (-5), felt**)] + 0, felt**)];\n", + "autogen/starknet/external/getSheetDefaultRendererAddress/da17921a4e81c09e730800bbf23bfdbe5e9e6bfaedc59d80fbf62087fa43c27d.cairo": "return (syscall_ptr,pedersen_ptr,range_check_ptr,retdata_size,retdata);\n", + "autogen/starknet/external/getSheetPrice/4ea31fb63671d41275882d3faac7ec7e32c4e578c1b6c2bdded28c452c94582d.cairo": "let ret_value = __wrapped_func{syscall_ptr=syscall_ptr, pedersen_ptr=pedersen_ptr, range_check_ptr=range_check_ptr}();\nlet (range_check_ptr, retdata_size, retdata) = getSheetPrice_encode_return(ret_value, range_check_ptr);\n", + "autogen/starknet/external/getSheetPrice/741ea357d6336b0bed7bf0472425acd0311d543883b803388880e60a232040c7.cairo": "let range_check_ptr = [cast([cast(fp + (-5), felt**)] + 2, felt*)];\n", + "autogen/starknet/external/getSheetPrice/9684a85e93c782014ca14293edea4eb2502039a5a7b6538ecd39c56faaf12529.cairo": "let pedersen_ptr = [cast([cast(fp + (-5), felt**)] + 1, starkware.cairo.common.cairo_builtins.HashBuiltin**)];\n", + "autogen/starknet/external/getSheetPrice/b2c52ca2d2a8fc8791a983086d8716c5eacd0c3d62934914d2286f84b98ff4cb.cairo": "let syscall_ptr = [cast([cast(fp + (-5), felt**)] + 0, felt**)];\n", + "autogen/starknet/external/getSheetPrice/da17921a4e81c09e730800bbf23bfdbe5e9e6bfaedc59d80fbf62087fa43c27d.cairo": "return (syscall_ptr,pedersen_ptr,range_check_ptr,retdata_size,retdata);\n", + "autogen/starknet/external/getSheets/3cc7a9cbb85830dbebb914f535a0f964431fd2034fca1cde6a3e38db46479cc5.cairo": "let ret_value = __wrapped_func{syscall_ptr=syscall_ptr, pedersen_ptr=pedersen_ptr, range_check_ptr=range_check_ptr}();\nlet (range_check_ptr, retdata_size, retdata) = getSheets_encode_return(ret_value, range_check_ptr);\n", + "autogen/starknet/external/getSheets/5fe0b4995aa51eca785041b355f020566031001d1d4861001459f19fde4bdf5b.cairo": "func getSheets() -> (syscall_ptr: felt*, pedersen_ptr: starkware.cairo.common.cairo_builtins.HashBuiltin*, range_check_ptr: felt, size: felt, retdata: felt*) {\n alloc_locals;\n}\n", + "autogen/starknet/external/getSheets/741ea357d6336b0bed7bf0472425acd0311d543883b803388880e60a232040c7.cairo": "let range_check_ptr = [cast([cast(fp + (-5), felt**)] + 2, felt*)];\n", + "autogen/starknet/external/getSheets/9684a85e93c782014ca14293edea4eb2502039a5a7b6538ecd39c56faaf12529.cairo": "let pedersen_ptr = [cast([cast(fp + (-5), felt**)] + 1, starkware.cairo.common.cairo_builtins.HashBuiltin**)];\n", + "autogen/starknet/external/getSheets/b2c52ca2d2a8fc8791a983086d8716c5eacd0c3d62934914d2286f84b98ff4cb.cairo": "let syscall_ptr = [cast([cast(fp + (-5), felt**)] + 0, felt**)];\n", + "autogen/starknet/external/getSheets/da17921a4e81c09e730800bbf23bfdbe5e9e6bfaedc59d80fbf62087fa43c27d.cairo": "return (syscall_ptr,pedersen_ptr,range_check_ptr,retdata_size,retdata);\n", + "autogen/starknet/external/return/addSheet/2ffe198cf4a563c150e4fd9f065444f352b287cd405fa3d3b5123915a2de7ae8.cairo": "func addSheet_encode_return(ret_value: (address: felt), range_check_ptr) -> (\n range_check_ptr: felt, data_len: felt, data: felt*) {\n %{ memory[ap] = segments.add() %}\n alloc_locals;\n local __return_value_ptr_start: felt*;\n let __return_value_ptr = __return_value_ptr_start;\n with range_check_ptr {\n }\n return (\n range_check_ptr=range_check_ptr,\n data_len=__return_value_ptr - __return_value_ptr_start,\n data=__return_value_ptr_start);\n}\n", + "autogen/starknet/external/return/getMerkleRoot/ddb7d9da9030e09c7f314f18ea53ecb8a548a5f6a06f18915fb9ebc8540b3afb.cairo": "func getMerkleRoot_encode_return(ret_value: (hash: felt), range_check_ptr) -> (\n range_check_ptr: felt, data_len: felt, data: felt*) {\n %{ memory[ap] = segments.add() %}\n alloc_locals;\n local __return_value_ptr_start: felt*;\n let __return_value_ptr = __return_value_ptr_start;\n with range_check_ptr {\n }\n return (\n range_check_ptr=range_check_ptr,\n data_len=__return_value_ptr - __return_value_ptr_start,\n data=__return_value_ptr_start);\n}\n", + "autogen/starknet/external/return/getProxyClassHash/d3861d63cc448c4c708288229e3d6ec8c683955a46cb51be2cdf119bc9c97721.cairo": "func getProxyClassHash_encode_return(ret_value: (hash: felt), range_check_ptr) -> (\n range_check_ptr: felt, data_len: felt, data: felt*) {\n %{ memory[ap] = segments.add() %}\n alloc_locals;\n local __return_value_ptr_start: felt*;\n let __return_value_ptr = __return_value_ptr_start;\n with range_check_ptr {\n }\n return (\n range_check_ptr=range_check_ptr,\n data_len=__return_value_ptr - __return_value_ptr_start,\n data=__return_value_ptr_start);\n}\n", + "autogen/starknet/external/return/getSheet/695ea7d8f5f77886c7ea26d2f26f91761fbc18c91e61c9d20ac27980511c6b9c.cairo": "func getSheet_encode_return(ret_value: (address: felt), range_check_ptr) -> (\n range_check_ptr: felt, data_len: felt, data: felt*) {\n %{ memory[ap] = segments.add() %}\n alloc_locals;\n local __return_value_ptr_start: felt*;\n let __return_value_ptr = __return_value_ptr_start;\n with range_check_ptr {\n }\n return (\n range_check_ptr=range_check_ptr,\n data_len=__return_value_ptr - __return_value_ptr_start,\n data=__return_value_ptr_start);\n}\n", + "autogen/starknet/external/return/getSheetClassHash/ad0018d5bed657ffd277ae970bcddf1c17a825684272b34db820c0d83d79fb83.cairo": "func getSheetClassHash_encode_return(ret_value: (hash: felt), range_check_ptr) -> (\n range_check_ptr: felt, data_len: felt, data: felt*) {\n %{ memory[ap] = segments.add() %}\n alloc_locals;\n local __return_value_ptr_start: felt*;\n let __return_value_ptr = __return_value_ptr_start;\n with range_check_ptr {\n }\n return (\n range_check_ptr=range_check_ptr,\n data_len=__return_value_ptr - __return_value_ptr_start,\n data=__return_value_ptr_start);\n}\n", + "autogen/starknet/external/return/getSheetDefaultRendererAddress/33de61d4cf4da09dad78d169bc77808b852554c6d416e74af8ca97f600712512.cairo": "func getSheetDefaultRendererAddress_encode_return(ret_value: (address: felt), range_check_ptr) -> (\n range_check_ptr: felt, data_len: felt, data: felt*) {\n %{ memory[ap] = segments.add() %}\n alloc_locals;\n local __return_value_ptr_start: felt*;\n let __return_value_ptr = __return_value_ptr_start;\n with range_check_ptr {\n }\n return (\n range_check_ptr=range_check_ptr,\n data_len=__return_value_ptr - __return_value_ptr_start,\n data=__return_value_ptr_start);\n}\n", + "autogen/starknet/external/return/getSheetPrice/93eae4e29a67ca16b46f063c6b446a0ffbce42260cb899d6cd4a95a7178d3b3a.cairo": "func getSheetPrice_encode_return(ret_value: (price: felt), range_check_ptr) -> (\n range_check_ptr: felt, data_len: felt, data: felt*) {\n %{ memory[ap] = segments.add() %}\n alloc_locals;\n local __return_value_ptr_start: felt*;\n let __return_value_ptr = __return_value_ptr_start;\n with range_check_ptr {\n }\n return (\n range_check_ptr=range_check_ptr,\n data_len=__return_value_ptr - __return_value_ptr_start,\n data=__return_value_ptr_start);\n}\n", + "autogen/starknet/external/return/getSheets/3ee09188a7f72b618ca4555f4b4595aaf6af90a1f294aecce708831d91da9435.cairo": "func getSheets_encode_return(ret_value: (addresses_len: felt, addresses: felt*), range_check_ptr) -> (\n range_check_ptr: felt, data_len: felt, data: felt*) {\n %{ memory[ap] = segments.add() %}\n alloc_locals;\n local __return_value_ptr_start: felt*;\n let __return_value_ptr = __return_value_ptr_start;\n with range_check_ptr {\n }\n return (\n range_check_ptr=range_check_ptr,\n data_len=__return_value_ptr - __return_value_ptr_start,\n data=__return_value_ptr_start);\n}\n", + "autogen/starknet/external/setMerkleRoot/741ea357d6336b0bed7bf0472425acd0311d543883b803388880e60a232040c7.cairo": "let range_check_ptr = [cast([cast(fp + (-5), felt**)] + 2, felt*)];\n", + "autogen/starknet/external/setMerkleRoot/8ac52e19415f3bb85cf1477c90297e8dbedd2bf68d6a8678e8bf3e514b81cbb7.cairo": "let ret_value = __wrapped_func{syscall_ptr=syscall_ptr, pedersen_ptr=pedersen_ptr, range_check_ptr=range_check_ptr}(hash=__calldata_arg_hash,);\n%{ memory[ap] = segments.add() %} // Allocate memory for return value.\ntempvar retdata: felt*;\nlet retdata_size = 0;\n", + "autogen/starknet/external/setMerkleRoot/9684a85e93c782014ca14293edea4eb2502039a5a7b6538ecd39c56faaf12529.cairo": "let pedersen_ptr = [cast([cast(fp + (-5), felt**)] + 1, starkware.cairo.common.cairo_builtins.HashBuiltin**)];\n", + "autogen/starknet/external/setMerkleRoot/b2c52ca2d2a8fc8791a983086d8716c5eacd0c3d62934914d2286f84b98ff4cb.cairo": "let syscall_ptr = [cast([cast(fp + (-5), felt**)] + 0, felt**)];\n", + "autogen/starknet/external/setMerkleRoot/da17921a4e81c09e730800bbf23bfdbe5e9e6bfaedc59d80fbf62087fa43c27d.cairo": "return (syscall_ptr,pedersen_ptr,range_check_ptr,retdata_size,retdata);\n", + "autogen/starknet/external/setProxyClassHash/741ea357d6336b0bed7bf0472425acd0311d543883b803388880e60a232040c7.cairo": "let range_check_ptr = [cast([cast(fp + (-5), felt**)] + 2, felt*)];\n", + "autogen/starknet/external/setProxyClassHash/8ac52e19415f3bb85cf1477c90297e8dbedd2bf68d6a8678e8bf3e514b81cbb7.cairo": "let ret_value = __wrapped_func{syscall_ptr=syscall_ptr, pedersen_ptr=pedersen_ptr, range_check_ptr=range_check_ptr}(hash=__calldata_arg_hash,);\n%{ memory[ap] = segments.add() %} // Allocate memory for return value.\ntempvar retdata: felt*;\nlet retdata_size = 0;\n", + "autogen/starknet/external/setProxyClassHash/9684a85e93c782014ca14293edea4eb2502039a5a7b6538ecd39c56faaf12529.cairo": "let pedersen_ptr = [cast([cast(fp + (-5), felt**)] + 1, starkware.cairo.common.cairo_builtins.HashBuiltin**)];\n", + "autogen/starknet/external/setProxyClassHash/b2c52ca2d2a8fc8791a983086d8716c5eacd0c3d62934914d2286f84b98ff4cb.cairo": "let syscall_ptr = [cast([cast(fp + (-5), felt**)] + 0, felt**)];\n", + "autogen/starknet/external/setProxyClassHash/da17921a4e81c09e730800bbf23bfdbe5e9e6bfaedc59d80fbf62087fa43c27d.cairo": "return (syscall_ptr,pedersen_ptr,range_check_ptr,retdata_size,retdata);\n", + "autogen/starknet/external/setSheetClassHash/741ea357d6336b0bed7bf0472425acd0311d543883b803388880e60a232040c7.cairo": "let range_check_ptr = [cast([cast(fp + (-5), felt**)] + 2, felt*)];\n", + "autogen/starknet/external/setSheetClassHash/8ac52e19415f3bb85cf1477c90297e8dbedd2bf68d6a8678e8bf3e514b81cbb7.cairo": "let ret_value = __wrapped_func{syscall_ptr=syscall_ptr, pedersen_ptr=pedersen_ptr, range_check_ptr=range_check_ptr}(hash=__calldata_arg_hash,);\n%{ memory[ap] = segments.add() %} // Allocate memory for return value.\ntempvar retdata: felt*;\nlet retdata_size = 0;\n", + "autogen/starknet/external/setSheetClassHash/9684a85e93c782014ca14293edea4eb2502039a5a7b6538ecd39c56faaf12529.cairo": "let pedersen_ptr = [cast([cast(fp + (-5), felt**)] + 1, starkware.cairo.common.cairo_builtins.HashBuiltin**)];\n", + "autogen/starknet/external/setSheetClassHash/b2c52ca2d2a8fc8791a983086d8716c5eacd0c3d62934914d2286f84b98ff4cb.cairo": "let syscall_ptr = [cast([cast(fp + (-5), felt**)] + 0, felt**)];\n", + "autogen/starknet/external/setSheetClassHash/da17921a4e81c09e730800bbf23bfdbe5e9e6bfaedc59d80fbf62087fa43c27d.cairo": "return (syscall_ptr,pedersen_ptr,range_check_ptr,retdata_size,retdata);\n", + "autogen/starknet/external/setSheetDefaultRendererAddress/0659a254e8c454b3c657c5278489e4243b32c053e1167867ca4c539b977e7a36.cairo": "let ret_value = __wrapped_func{syscall_ptr=syscall_ptr, pedersen_ptr=pedersen_ptr, range_check_ptr=range_check_ptr}(address=__calldata_arg_address,);\n%{ memory[ap] = segments.add() %} // Allocate memory for return value.\ntempvar retdata: felt*;\nlet retdata_size = 0;\n", + "autogen/starknet/external/setSheetDefaultRendererAddress/741ea357d6336b0bed7bf0472425acd0311d543883b803388880e60a232040c7.cairo": "let range_check_ptr = [cast([cast(fp + (-5), felt**)] + 2, felt*)];\n", + "autogen/starknet/external/setSheetDefaultRendererAddress/9684a85e93c782014ca14293edea4eb2502039a5a7b6538ecd39c56faaf12529.cairo": "let pedersen_ptr = [cast([cast(fp + (-5), felt**)] + 1, starkware.cairo.common.cairo_builtins.HashBuiltin**)];\n", + "autogen/starknet/external/setSheetDefaultRendererAddress/b2c52ca2d2a8fc8791a983086d8716c5eacd0c3d62934914d2286f84b98ff4cb.cairo": "let syscall_ptr = [cast([cast(fp + (-5), felt**)] + 0, felt**)];\n", + "autogen/starknet/external/setSheetDefaultRendererAddress/da17921a4e81c09e730800bbf23bfdbe5e9e6bfaedc59d80fbf62087fa43c27d.cairo": "return (syscall_ptr,pedersen_ptr,range_check_ptr,retdata_size,retdata);\n", + "autogen/starknet/external/setSheetPrice/6d5d29de66493f79f0601f83ef38e1c0e00eceeff32f74d3139213305d328ede.cairo": "let ret_value = __wrapped_func{syscall_ptr=syscall_ptr, pedersen_ptr=pedersen_ptr, range_check_ptr=range_check_ptr}(price=__calldata_arg_price,);\n%{ memory[ap] = segments.add() %} // Allocate memory for return value.\ntempvar retdata: felt*;\nlet retdata_size = 0;\n", + "autogen/starknet/external/setSheetPrice/741ea357d6336b0bed7bf0472425acd0311d543883b803388880e60a232040c7.cairo": "let range_check_ptr = [cast([cast(fp + (-5), felt**)] + 2, felt*)];\n", + "autogen/starknet/external/setSheetPrice/9684a85e93c782014ca14293edea4eb2502039a5a7b6538ecd39c56faaf12529.cairo": "let pedersen_ptr = [cast([cast(fp + (-5), felt**)] + 1, starkware.cairo.common.cairo_builtins.HashBuiltin**)];\n", + "autogen/starknet/external/setSheetPrice/b2c52ca2d2a8fc8791a983086d8716c5eacd0c3d62934914d2286f84b98ff4cb.cairo": "let syscall_ptr = [cast([cast(fp + (-5), felt**)] + 0, felt**)];\n", + "autogen/starknet/external/setSheetPrice/da17921a4e81c09e730800bbf23bfdbe5e9e6bfaedc59d80fbf62087fa43c27d.cairo": "return (syscall_ptr,pedersen_ptr,range_check_ptr,retdata_size,retdata);\n", + "autogen/starknet/external/withdraw/741ea357d6336b0bed7bf0472425acd0311d543883b803388880e60a232040c7.cairo": "let range_check_ptr = [cast([cast(fp + (-5), felt**)] + 2, felt*)];\n", + "autogen/starknet/external/withdraw/8f83d060e7e088c358526f8859eb82973ba2c094c7d9223df6230b744dfa211c.cairo": "let ret_value = __wrapped_func{syscall_ptr=syscall_ptr, pedersen_ptr=pedersen_ptr, range_check_ptr=range_check_ptr}();\n%{ memory[ap] = segments.add() %} // Allocate memory for return value.\ntempvar retdata: felt*;\nlet retdata_size = 0;\n", + "autogen/starknet/external/withdraw/9684a85e93c782014ca14293edea4eb2502039a5a7b6538ecd39c56faaf12529.cairo": "let pedersen_ptr = [cast([cast(fp + (-5), felt**)] + 1, starkware.cairo.common.cairo_builtins.HashBuiltin**)];\n", + "autogen/starknet/external/withdraw/b2c52ca2d2a8fc8791a983086d8716c5eacd0c3d62934914d2286f84b98ff4cb.cairo": "let syscall_ptr = [cast([cast(fp + (-5), felt**)] + 0, felt**)];\n", + "autogen/starknet/external/withdraw/da17921a4e81c09e730800bbf23bfdbe5e9e6bfaedc59d80fbf62087fa43c27d.cairo": "return (syscall_ptr,pedersen_ptr,range_check_ptr,retdata_size,retdata);\n", + "autogen/starknet/storage_var/Ownable_owner/decl.cairo": "namespace Ownable_owner {\n from starkware.starknet.common.storage import normalize_address\n from starkware.starknet.common.syscalls import storage_read, storage_write\n from starkware.cairo.common.cairo_builtins import HashBuiltin\n from starkware.cairo.common.hash import hash2\n\n func addr{pedersen_ptr: HashBuiltin*, range_check_ptr}() -> (res: felt) {\n let res = 0;\n call hash2;\n call normalize_address;\n }\n\n func read{syscall_ptr: felt*, pedersen_ptr: HashBuiltin*, range_check_ptr}() -> (owner: felt) {\n let storage_addr = 0;\n call addr;\n call storage_read;\n }\n\n func write{syscall_ptr: felt*, pedersen_ptr: HashBuiltin*, range_check_ptr}(value: felt) {\n let storage_addr = 0;\n call addr;\n call storage_write;\n }\n}", + "autogen/starknet/storage_var/Ownable_owner/impl.cairo": "namespace Ownable_owner {\n from starkware.starknet.common.storage import normalize_address\n from starkware.starknet.common.syscalls import storage_read, storage_write\n from starkware.cairo.common.cairo_builtins import HashBuiltin\n from starkware.cairo.common.hash import hash2\n\n func addr{pedersen_ptr: HashBuiltin*, range_check_ptr}() -> (res: felt) {\n let res = 1239149872729906871793169171313897310809028090219849129902089947133222824240;\n return (res=res);\n }\n\n func read{syscall_ptr: felt*, pedersen_ptr: HashBuiltin*, range_check_ptr}() -> (owner: felt) {\n let (storage_addr) = addr();\n let (__storage_var_temp0) = storage_read(address=storage_addr + 0);\n\n tempvar syscall_ptr = syscall_ptr;\n tempvar pedersen_ptr = pedersen_ptr;\n tempvar range_check_ptr = range_check_ptr;\n tempvar __storage_var_temp0: felt = __storage_var_temp0;\n return ([cast(&__storage_var_temp0, felt*)],);\n }\n\n func write{syscall_ptr: felt*, pedersen_ptr: HashBuiltin*, range_check_ptr}(value: felt) {\n let (storage_addr) = addr();\n storage_write(address=storage_addr + 0, value=[cast(&value, felt) + 0]);\n return ();\n }\n}", + "autogen/starknet/storage_var/Starksheet_merkle_root/decl.cairo": "namespace Starksheet_merkle_root {\n from starkware.starknet.common.storage import normalize_address\n from starkware.starknet.common.syscalls import storage_read, storage_write\n from starkware.cairo.common.cairo_builtins import HashBuiltin\n from starkware.cairo.common.hash import hash2\n\n func addr{pedersen_ptr: HashBuiltin*, range_check_ptr}() -> (res: felt) {\n let res = 0;\n call hash2;\n call normalize_address;\n }\n\n func read{syscall_ptr: felt*, pedersen_ptr: HashBuiltin*, range_check_ptr}() -> (hash: felt) {\n let storage_addr = 0;\n call addr;\n call storage_read;\n }\n\n func write{syscall_ptr: felt*, pedersen_ptr: HashBuiltin*, range_check_ptr}(value: felt) {\n let storage_addr = 0;\n call addr;\n call storage_write;\n }\n}", + "autogen/starknet/storage_var/Starksheet_merkle_root/impl.cairo": "namespace Starksheet_merkle_root {\n from starkware.starknet.common.storage import normalize_address\n from starkware.starknet.common.syscalls import storage_read, storage_write\n from starkware.cairo.common.cairo_builtins import HashBuiltin\n from starkware.cairo.common.hash import hash2\n\n func addr{pedersen_ptr: HashBuiltin*, range_check_ptr}() -> (res: felt) {\n let res = 1676855705942524309358316468672605596569069469716043132947472379828428256272;\n return (res=res);\n }\n\n func read{syscall_ptr: felt*, pedersen_ptr: HashBuiltin*, range_check_ptr}() -> (hash: felt) {\n let (storage_addr) = addr();\n let (__storage_var_temp0) = storage_read(address=storage_addr + 0);\n\n tempvar syscall_ptr = syscall_ptr;\n tempvar pedersen_ptr = pedersen_ptr;\n tempvar range_check_ptr = range_check_ptr;\n tempvar __storage_var_temp0: felt = __storage_var_temp0;\n return ([cast(&__storage_var_temp0, felt*)],);\n }\n\n func write{syscall_ptr: felt*, pedersen_ptr: HashBuiltin*, range_check_ptr}(value: felt) {\n let (storage_addr) = addr();\n storage_write(address=storage_addr + 0, value=[cast(&value, felt) + 0]);\n return ();\n }\n}", + "autogen/starknet/storage_var/Starksheet_proxy_class_hash/decl.cairo": "namespace Starksheet_proxy_class_hash {\n from starkware.starknet.common.storage import normalize_address\n from starkware.starknet.common.syscalls import storage_read, storage_write\n from starkware.cairo.common.cairo_builtins import HashBuiltin\n from starkware.cairo.common.hash import hash2\n\n func addr{pedersen_ptr: HashBuiltin*, range_check_ptr}() -> (res: felt) {\n let res = 0;\n call hash2;\n call normalize_address;\n }\n\n func read{syscall_ptr: felt*, pedersen_ptr: HashBuiltin*, range_check_ptr}() -> (hash: felt) {\n let storage_addr = 0;\n call addr;\n call storage_read;\n }\n\n func write{syscall_ptr: felt*, pedersen_ptr: HashBuiltin*, range_check_ptr}(value: felt) {\n let storage_addr = 0;\n call addr;\n call storage_write;\n }\n}", + "autogen/starknet/storage_var/Starksheet_proxy_class_hash/impl.cairo": "namespace Starksheet_proxy_class_hash {\n from starkware.starknet.common.storage import normalize_address\n from starkware.starknet.common.syscalls import storage_read, storage_write\n from starkware.cairo.common.cairo_builtins import HashBuiltin\n from starkware.cairo.common.hash import hash2\n\n func addr{pedersen_ptr: HashBuiltin*, range_check_ptr}() -> (res: felt) {\n let res = 556144488358405199404151165133699841801961622362702912688783147479661864219;\n return (res=res);\n }\n\n func read{syscall_ptr: felt*, pedersen_ptr: HashBuiltin*, range_check_ptr}() -> (hash: felt) {\n let (storage_addr) = addr();\n let (__storage_var_temp0) = storage_read(address=storage_addr + 0);\n\n tempvar syscall_ptr = syscall_ptr;\n tempvar pedersen_ptr = pedersen_ptr;\n tempvar range_check_ptr = range_check_ptr;\n tempvar __storage_var_temp0: felt = __storage_var_temp0;\n return ([cast(&__storage_var_temp0, felt*)],);\n }\n\n func write{syscall_ptr: felt*, pedersen_ptr: HashBuiltin*, range_check_ptr}(value: felt) {\n let (storage_addr) = addr();\n storage_write(address=storage_addr + 0, value=[cast(&value, felt) + 0]);\n return ();\n }\n}", + "autogen/starknet/storage_var/Starksheet_sheet_class_hash/decl.cairo": "namespace Starksheet_sheet_class_hash {\n from starkware.starknet.common.storage import normalize_address\n from starkware.starknet.common.syscalls import storage_read, storage_write\n from starkware.cairo.common.cairo_builtins import HashBuiltin\n from starkware.cairo.common.hash import hash2\n\n func addr{pedersen_ptr: HashBuiltin*, range_check_ptr}() -> (res: felt) {\n let res = 0;\n call hash2;\n call normalize_address;\n }\n\n func read{syscall_ptr: felt*, pedersen_ptr: HashBuiltin*, range_check_ptr}() -> (hash: felt) {\n let storage_addr = 0;\n call addr;\n call storage_read;\n }\n\n func write{syscall_ptr: felt*, pedersen_ptr: HashBuiltin*, range_check_ptr}(value: felt) {\n let storage_addr = 0;\n call addr;\n call storage_write;\n }\n}", + "autogen/starknet/storage_var/Starksheet_sheet_class_hash/impl.cairo": "namespace Starksheet_sheet_class_hash {\n from starkware.starknet.common.storage import normalize_address\n from starkware.starknet.common.syscalls import storage_read, storage_write\n from starkware.cairo.common.cairo_builtins import HashBuiltin\n from starkware.cairo.common.hash import hash2\n\n func addr{pedersen_ptr: HashBuiltin*, range_check_ptr}() -> (res: felt) {\n let res = 1258701792010692809688071695814231752470278064286262057637639167406763325488;\n return (res=res);\n }\n\n func read{syscall_ptr: felt*, pedersen_ptr: HashBuiltin*, range_check_ptr}() -> (hash: felt) {\n let (storage_addr) = addr();\n let (__storage_var_temp0) = storage_read(address=storage_addr + 0);\n\n tempvar syscall_ptr = syscall_ptr;\n tempvar pedersen_ptr = pedersen_ptr;\n tempvar range_check_ptr = range_check_ptr;\n tempvar __storage_var_temp0: felt = __storage_var_temp0;\n return ([cast(&__storage_var_temp0, felt*)],);\n }\n\n func write{syscall_ptr: felt*, pedersen_ptr: HashBuiltin*, range_check_ptr}(value: felt) {\n let (storage_addr) = addr();\n storage_write(address=storage_addr + 0, value=[cast(&value, felt) + 0]);\n return ();\n }\n}", + "autogen/starknet/storage_var/Starksheet_sheet_default_renderer_address/decl.cairo": "namespace Starksheet_sheet_default_renderer_address {\n from starkware.starknet.common.storage import normalize_address\n from starkware.starknet.common.syscalls import storage_read, storage_write\n from starkware.cairo.common.cairo_builtins import HashBuiltin\n from starkware.cairo.common.hash import hash2\n\n func addr{pedersen_ptr: HashBuiltin*, range_check_ptr}() -> (res: felt) {\n let res = 0;\n call hash2;\n call normalize_address;\n }\n\n func read{syscall_ptr: felt*, pedersen_ptr: HashBuiltin*, range_check_ptr}() -> (\n address: felt\n ) {\n let storage_addr = 0;\n call addr;\n call storage_read;\n }\n\n func write{syscall_ptr: felt*, pedersen_ptr: HashBuiltin*, range_check_ptr}(value: felt) {\n let storage_addr = 0;\n call addr;\n call storage_write;\n }\n}", + "autogen/starknet/storage_var/Starksheet_sheet_default_renderer_address/impl.cairo": "namespace Starksheet_sheet_default_renderer_address {\n from starkware.starknet.common.storage import normalize_address\n from starkware.starknet.common.syscalls import storage_read, storage_write\n from starkware.cairo.common.cairo_builtins import HashBuiltin\n from starkware.cairo.common.hash import hash2\n\n func addr{pedersen_ptr: HashBuiltin*, range_check_ptr}() -> (res: felt) {\n let res = 1452088394085069522316861953694175613476119734928948549147851724646150837384;\n return (res=res);\n }\n\n func read{syscall_ptr: felt*, pedersen_ptr: HashBuiltin*, range_check_ptr}() -> (\n address: felt\n ) {\n let (storage_addr) = addr();\n let (__storage_var_temp0) = storage_read(address=storage_addr + 0);\n\n tempvar syscall_ptr = syscall_ptr;\n tempvar pedersen_ptr = pedersen_ptr;\n tempvar range_check_ptr = range_check_ptr;\n tempvar __storage_var_temp0: felt = __storage_var_temp0;\n return ([cast(&__storage_var_temp0, felt*)],);\n }\n\n func write{syscall_ptr: felt*, pedersen_ptr: HashBuiltin*, range_check_ptr}(value: felt) {\n let (storage_addr) = addr();\n storage_write(address=storage_addr + 0, value=[cast(&value, felt) + 0]);\n return ();\n }\n}", + "autogen/starknet/storage_var/Starksheet_sheet_price/decl.cairo": "namespace Starksheet_sheet_price {\n from starkware.starknet.common.storage import normalize_address\n from starkware.starknet.common.syscalls import storage_read, storage_write\n from starkware.cairo.common.cairo_builtins import HashBuiltin\n from starkware.cairo.common.hash import hash2\n\n func addr{pedersen_ptr: HashBuiltin*, range_check_ptr}() -> (res: felt) {\n let res = 0;\n call hash2;\n call normalize_address;\n }\n\n func read{syscall_ptr: felt*, pedersen_ptr: HashBuiltin*, range_check_ptr}() -> (price: felt) {\n let storage_addr = 0;\n call addr;\n call storage_read;\n }\n\n func write{syscall_ptr: felt*, pedersen_ptr: HashBuiltin*, range_check_ptr}(value: felt) {\n let storage_addr = 0;\n call addr;\n call storage_write;\n }\n}", + "autogen/starknet/storage_var/Starksheet_sheet_price/impl.cairo": "namespace Starksheet_sheet_price {\n from starkware.starknet.common.storage import normalize_address\n from starkware.starknet.common.syscalls import storage_read, storage_write\n from starkware.cairo.common.cairo_builtins import HashBuiltin\n from starkware.cairo.common.hash import hash2\n\n func addr{pedersen_ptr: HashBuiltin*, range_check_ptr}() -> (res: felt) {\n let res = 1379681642151856332401142793294110204941746674848583303508087167059344359621;\n return (res=res);\n }\n\n func read{syscall_ptr: felt*, pedersen_ptr: HashBuiltin*, range_check_ptr}() -> (price: felt) {\n let (storage_addr) = addr();\n let (__storage_var_temp0) = storage_read(address=storage_addr + 0);\n\n tempvar syscall_ptr = syscall_ptr;\n tempvar pedersen_ptr = pedersen_ptr;\n tempvar range_check_ptr = range_check_ptr;\n tempvar __storage_var_temp0: felt = __storage_var_temp0;\n return ([cast(&__storage_var_temp0, felt*)],);\n }\n\n func write{syscall_ptr: felt*, pedersen_ptr: HashBuiltin*, range_check_ptr}(value: felt) {\n let (storage_addr) = addr();\n storage_write(address=storage_addr + 0, value=[cast(&value, felt) + 0]);\n return ();\n }\n}", + "autogen/starknet/storage_var/Starksheet_sheets/decl.cairo": "namespace Starksheet_sheets {\n from starkware.starknet.common.storage import normalize_address\n from starkware.starknet.common.syscalls import storage_read, storage_write\n from starkware.cairo.common.cairo_builtins import HashBuiltin\n from starkware.cairo.common.hash import hash2\n\n func addr{pedersen_ptr: HashBuiltin*, range_check_ptr}(id: felt) -> (res: felt) {\n let res = 0;\n call hash2;\n call normalize_address;\n }\n\n func read{syscall_ptr: felt*, pedersen_ptr: HashBuiltin*, range_check_ptr}(id: felt) -> (\n address: felt\n ) {\n let storage_addr = 0;\n call addr;\n call storage_read;\n }\n\n func write{syscall_ptr: felt*, pedersen_ptr: HashBuiltin*, range_check_ptr}(\n id: felt, value: felt\n ) {\n let storage_addr = 0;\n call addr;\n call storage_write;\n }\n}", + "autogen/starknet/storage_var/Starksheet_sheets/impl.cairo": "namespace Starksheet_sheets {\n from starkware.starknet.common.storage import normalize_address\n from starkware.starknet.common.syscalls import storage_read, storage_write\n from starkware.cairo.common.cairo_builtins import HashBuiltin\n from starkware.cairo.common.hash import hash2\n\n func addr{pedersen_ptr: HashBuiltin*, range_check_ptr}(id: felt) -> (res: felt) {\n let res = 198669261557708007544965520033861330575445730262898891181856514553207029284;\n let (res) = hash2{hash_ptr=pedersen_ptr}(res, cast(&id, felt*)[0]);\n let (res) = normalize_address(addr=res);\n return (res=res);\n }\n\n func read{syscall_ptr: felt*, pedersen_ptr: HashBuiltin*, range_check_ptr}(id: felt) -> (\n address: felt\n ) {\n let (storage_addr) = addr(id);\n let (__storage_var_temp0) = storage_read(address=storage_addr + 0);\n\n tempvar syscall_ptr = syscall_ptr;\n tempvar pedersen_ptr = pedersen_ptr;\n tempvar range_check_ptr = range_check_ptr;\n tempvar __storage_var_temp0: felt = __storage_var_temp0;\n return ([cast(&__storage_var_temp0, felt*)],);\n }\n\n func write{syscall_ptr: felt*, pedersen_ptr: HashBuiltin*, range_check_ptr}(\n id: felt, value: felt\n ) {\n let (storage_addr) = addr(id);\n storage_write(address=storage_addr + 0, value=[cast(&value, felt) + 0]);\n return ();\n }\n}", + "autogen/starknet/storage_var/Starksheet_sheets_count/decl.cairo": "namespace Starksheet_sheets_count {\n from starkware.starknet.common.storage import normalize_address\n from starkware.starknet.common.syscalls import storage_read, storage_write\n from starkware.cairo.common.cairo_builtins import HashBuiltin\n from starkware.cairo.common.hash import hash2\n\n func addr{pedersen_ptr: HashBuiltin*, range_check_ptr}() -> (res: felt) {\n let res = 0;\n call hash2;\n call normalize_address;\n }\n\n func read{syscall_ptr: felt*, pedersen_ptr: HashBuiltin*, range_check_ptr}() -> (count: felt) {\n let storage_addr = 0;\n call addr;\n call storage_read;\n }\n\n func write{syscall_ptr: felt*, pedersen_ptr: HashBuiltin*, range_check_ptr}(value: felt) {\n let storage_addr = 0;\n call addr;\n call storage_write;\n }\n}", + "autogen/starknet/storage_var/Starksheet_sheets_count/impl.cairo": "namespace Starksheet_sheets_count {\n from starkware.starknet.common.storage import normalize_address\n from starkware.starknet.common.syscalls import storage_read, storage_write\n from starkware.cairo.common.cairo_builtins import HashBuiltin\n from starkware.cairo.common.hash import hash2\n\n func addr{pedersen_ptr: HashBuiltin*, range_check_ptr}() -> (res: felt) {\n let res = 865014566899104254879548411495549081560034151268608659944614077602058319771;\n return (res=res);\n }\n\n func read{syscall_ptr: felt*, pedersen_ptr: HashBuiltin*, range_check_ptr}() -> (count: felt) {\n let (storage_addr) = addr();\n let (__storage_var_temp0) = storage_read(address=storage_addr + 0);\n\n tempvar syscall_ptr = syscall_ptr;\n tempvar pedersen_ptr = pedersen_ptr;\n tempvar range_check_ptr = range_check_ptr;\n tempvar __storage_var_temp0: felt = __storage_var_temp0;\n return ([cast(&__storage_var_temp0, felt*)],);\n }\n\n func write{syscall_ptr: felt*, pedersen_ptr: HashBuiltin*, range_check_ptr}(value: felt) {\n let (storage_addr) = addr();\n storage_write(address=storage_addr + 0, value=[cast(&value, felt) + 0]);\n return ();\n }\n}" + }, + "instruction_locations": { + "0": { + "accessible_scopes": [ + "starkware.cairo.common.alloc", + "starkware.cairo.common.alloc.alloc" + ], + "flow_tracking_data": null, + "hints": [ + { + "location": { + "end_col": 38, + "end_line": 3, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/alloc.cairo" + }, + "start_col": 5, + "start_line": 3 + }, + "n_prefix_newlines": 0 + } + ], + "inst": { + "end_col": 12, + "end_line": 4, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/alloc.cairo" + }, + "start_col": 5, + "start_line": 4 + } + }, + "2": { + "accessible_scopes": [ + "starkware.cairo.common.alloc", + "starkware.cairo.common.alloc.alloc" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 40, + "end_line": 5, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/alloc.cairo" + }, + "start_col": 5, + "start_line": 5 + } + }, + "3": { + "accessible_scopes": [ + "starkware.cairo.common.hash", + "starkware.cairo.common.hash.hash2" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 19, + "end_line": 14, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/hash.cairo" + }, + "start_col": 5, + "start_line": 14 + } + }, + "4": { + "accessible_scopes": [ + "starkware.cairo.common.hash", + "starkware.cairo.common.hash.hash2" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 19, + "end_line": 15, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/hash.cairo" + }, + "start_col": 5, + "start_line": 15 + } + }, + "5": { + "accessible_scopes": [ + "starkware.cairo.common.hash", + "starkware.cairo.common.hash.hash2" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 47, + "end_line": 17, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/hash.cairo" + }, + "parent_location": [ + { + "end_col": 34, + "end_line": 13, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/hash.cairo" + }, + "parent_location": [ + { + "end_col": 28, + "end_line": 18, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/hash.cairo" + }, + "start_col": 5, + "start_line": 18 + }, + "While trying to retrieve the implicit argument 'hash_ptr' in:" + ], + "start_col": 12, + "start_line": 13 + }, + "While expanding the reference 'hash_ptr' in:" + ], + "start_col": 20, + "start_line": 17 + } + }, + "7": { + "accessible_scopes": [ + "starkware.cairo.common.hash", + "starkware.cairo.common.hash.hash2" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 33, + "end_line": 16, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/hash.cairo" + }, + "parent_location": [ + { + "end_col": 26, + "end_line": 18, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/hash.cairo" + }, + "start_col": 20, + "start_line": 18 + }, + "While expanding the reference 'result' in:" + ], + "start_col": 18, + "start_line": 16 + } + }, + "8": { + "accessible_scopes": [ + "starkware.cairo.common.hash", + "starkware.cairo.common.hash.hash2" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 28, + "end_line": 18, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/hash.cairo" + }, + "start_col": 5, + "start_line": 18 + } + }, + "9": { + "accessible_scopes": [ + "starkware.cairo.common.memcpy", + "starkware.cairo.common.memcpy.memcpy" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 7, + "end_line": 8, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/memcpy.cairo" + }, + "start_col": 5, + "start_line": 8 + } + }, + "11": { + "accessible_scopes": [ + "starkware.cairo.common.memcpy", + "starkware.cairo.common.memcpy.memcpy" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 19, + "end_line": 9, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/memcpy.cairo" + }, + "start_col": 9, + "start_line": 9 + } + }, + "12": { + "accessible_scopes": [ + "starkware.cairo.common.memcpy", + "starkware.cairo.common.memcpy.memcpy" + ], + "flow_tracking_data": null, + "hints": [ + { + "location": { + "end_col": 41, + "end_line": 12, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/memcpy.cairo" + }, + "start_col": 5, + "start_line": 12 + }, + "n_prefix_newlines": 0 + } + ], + "inst": { + "end_col": 23, + "end_line": 2, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/memcpy.cairo" + }, + "parent_location": [ + { + "end_col": 38, + "end_line": 13, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/memcpy.cairo" + }, + "start_col": 35, + "start_line": 13 + }, + "While expanding the reference 'dst' in:" + ], + "start_col": 13, + "start_line": 2 + } + }, + "13": { + "accessible_scopes": [ + "starkware.cairo.common.memcpy", + "starkware.cairo.common.memcpy.memcpy" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 35, + "end_line": 2, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/memcpy.cairo" + }, + "parent_location": [ + { + "end_col": 47, + "end_line": 13, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/memcpy.cairo" + }, + "start_col": 44, + "start_line": 13 + }, + "While expanding the reference 'src' in:" + ], + "start_col": 25, + "start_line": 2 + } + }, + "14": { + "accessible_scopes": [ + "starkware.cairo.common.memcpy", + "starkware.cairo.common.memcpy.memcpy" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 37, + "end_line": 17, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/memcpy.cairo" + }, + "start_col": 26, + "start_line": 17 + } + }, + "15": { + "accessible_scopes": [ + "starkware.cairo.common.memcpy", + "starkware.cairo.common.memcpy.memcpy" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 38, + "end_line": 17, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/memcpy.cairo" + }, + "start_col": 5, + "start_line": 17 + } + }, + "16": { + "accessible_scopes": [ + "starkware.cairo.common.memcpy", + "starkware.cairo.common.memcpy.memcpy" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 41, + "end_line": 22, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/memcpy.cairo" + }, + "start_col": 5, + "start_line": 22 + } + }, + "18": { + "accessible_scopes": [ + "starkware.cairo.common.memcpy", + "starkware.cairo.common.memcpy.memcpy" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 41, + "end_line": 23, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/memcpy.cairo" + }, + "start_col": 5, + "start_line": 23 + } + }, + "20": { + "accessible_scopes": [ + "starkware.cairo.common.memcpy", + "starkware.cairo.common.memcpy.memcpy" + ], + "flow_tracking_data": null, + "hints": [ + { + "location": { + "end_col": 7, + "end_line": 27, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/memcpy.cairo" + }, + "start_col": 5, + "start_line": 24 + }, + "n_prefix_newlines": 1 + } + ], + "inst": { + "end_col": 44, + "end_line": 29, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/memcpy.cairo" + }, + "start_col": 5, + "start_line": 29 + } + }, + "22": { + "accessible_scopes": [ + "starkware.cairo.common.memcpy", + "starkware.cairo.common.memcpy.memcpy" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 55, + "end_line": 31, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/memcpy.cairo" + }, + "start_col": 5, + "start_line": 31 + } + }, + "23": { + "accessible_scopes": [ + "starkware.cairo.common.memcpy", + "starkware.cairo.common.memcpy.memcpy" + ], + "flow_tracking_data": null, + "hints": [ + { + "location": { + "end_col": 26, + "end_line": 33, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/memcpy.cairo" + }, + "start_col": 5, + "start_line": 33 + }, + "n_prefix_newlines": 0 + } + ], + "inst": { + "end_col": 15, + "end_line": 34, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/memcpy.cairo" + }, + "start_col": 5, + "start_line": 34 + } + }, + "24": { + "accessible_scopes": [ + "starkware.starknet.common.syscalls", + "starkware.starknet.common.syscalls.call_contract" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 40, + "end_line": 47, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/starknet/common/syscalls.cairo" + }, + "start_col": 18, + "start_line": 47 + } + }, + "26": { + "accessible_scopes": [ + "starkware.starknet.common.syscalls", + "starkware.starknet.common.syscalls.call_contract" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 7, + "end_line": 52, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/starknet/common/syscalls.cairo" + }, + "start_col": 5, + "start_line": 46 + } + }, + "27": { + "accessible_scopes": [ + "starkware.starknet.common.syscalls", + "starkware.starknet.common.syscalls.call_contract" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 7, + "end_line": 52, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/starknet/common/syscalls.cairo" + }, + "start_col": 5, + "start_line": 46 + } + }, + "28": { + "accessible_scopes": [ + "starkware.starknet.common.syscalls", + "starkware.starknet.common.syscalls.call_contract" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 7, + "end_line": 52, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/starknet/common/syscalls.cairo" + }, + "start_col": 5, + "start_line": 46 + } + }, + "29": { + "accessible_scopes": [ + "starkware.starknet.common.syscalls", + "starkware.starknet.common.syscalls.call_contract" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 7, + "end_line": 52, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/starknet/common/syscalls.cairo" + }, + "start_col": 5, + "start_line": 46 + } + }, + "30": { + "accessible_scopes": [ + "starkware.starknet.common.syscalls", + "starkware.starknet.common.syscalls.call_contract" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 7, + "end_line": 52, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/starknet/common/syscalls.cairo" + }, + "start_col": 5, + "start_line": 46 + } + }, + "31": { + "accessible_scopes": [ + "starkware.starknet.common.syscalls", + "starkware.starknet.common.syscalls.call_contract" + ], + "flow_tracking_data": null, + "hints": [ + { + "location": { + "end_col": 88, + "end_line": 53, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/starknet/common/syscalls.cairo" + }, + "start_col": 5, + "start_line": 53 + }, + "n_prefix_newlines": 0 + } + ], + "inst": { + "end_col": 54, + "end_line": 56, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/starknet/common/syscalls.cairo" + }, + "parent_location": [ + { + "end_col": 38, + "end_line": 42, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/starknet/common/syscalls.cairo" + }, + "parent_location": [ + { + "end_col": 75, + "end_line": 57, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/starknet/common/syscalls.cairo" + }, + "start_col": 5, + "start_line": 57 + }, + "While trying to retrieve the implicit argument 'syscall_ptr' in:" + ], + "start_col": 20, + "start_line": 42 + }, + "While expanding the reference 'syscall_ptr' in:" + ], + "start_col": 23, + "start_line": 56 + } + }, + "33": { + "accessible_scopes": [ + "starkware.starknet.common.syscalls", + "starkware.starknet.common.syscalls.call_contract" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 47, + "end_line": 57, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/starknet/common/syscalls.cairo" + }, + "start_col": 26, + "start_line": 57 + } + }, + "34": { + "accessible_scopes": [ + "starkware.starknet.common.syscalls", + "starkware.starknet.common.syscalls.call_contract" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 73, + "end_line": 57, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/starknet/common/syscalls.cairo" + }, + "start_col": 57, + "start_line": 57 + } + }, + "35": { + "accessible_scopes": [ + "starkware.starknet.common.syscalls", + "starkware.starknet.common.syscalls.call_contract" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 75, + "end_line": 57, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/starknet/common/syscalls.cairo" + }, + "start_col": 5, + "start_line": 57 + } + }, + "36": { + "accessible_scopes": [ + "starkware.starknet.common.syscalls", + "starkware.starknet.common.syscalls.deploy" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 33, + "end_line": 166, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/starknet/common/syscalls.cairo" + }, + "start_col": 18, + "start_line": 166 + } + }, + "38": { + "accessible_scopes": [ + "starkware.starknet.common.syscalls", + "starkware.starknet.common.syscalls.deploy" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 7, + "end_line": 172, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/starknet/common/syscalls.cairo" + }, + "start_col": 5, + "start_line": 165 + } + }, + "39": { + "accessible_scopes": [ + "starkware.starknet.common.syscalls", + "starkware.starknet.common.syscalls.deploy" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 7, + "end_line": 172, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/starknet/common/syscalls.cairo" + }, + "start_col": 5, + "start_line": 165 + } + }, + "40": { + "accessible_scopes": [ + "starkware.starknet.common.syscalls", + "starkware.starknet.common.syscalls.deploy" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 7, + "end_line": 172, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/starknet/common/syscalls.cairo" + }, + "start_col": 5, + "start_line": 165 + } + }, + "41": { + "accessible_scopes": [ + "starkware.starknet.common.syscalls", + "starkware.starknet.common.syscalls.deploy" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 7, + "end_line": 172, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/starknet/common/syscalls.cairo" + }, + "start_col": 5, + "start_line": 165 + } + }, + "42": { + "accessible_scopes": [ + "starkware.starknet.common.syscalls", + "starkware.starknet.common.syscalls.deploy" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 7, + "end_line": 172, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/starknet/common/syscalls.cairo" + }, + "start_col": 5, + "start_line": 165 + } + }, + "43": { + "accessible_scopes": [ + "starkware.starknet.common.syscalls", + "starkware.starknet.common.syscalls.deploy" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 7, + "end_line": 172, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/starknet/common/syscalls.cairo" + }, + "start_col": 5, + "start_line": 165 + } + }, + "44": { + "accessible_scopes": [ + "starkware.starknet.common.syscalls", + "starkware.starknet.common.syscalls.deploy" + ], + "flow_tracking_data": null, + "hints": [ + { + "location": { + "end_col": 81, + "end_line": 174, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/starknet/common/syscalls.cairo" + }, + "start_col": 5, + "start_line": 174 + }, + "n_prefix_newlines": 0 + } + ], + "inst": { + "end_col": 48, + "end_line": 176, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/starknet/common/syscalls.cairo" + }, + "parent_location": [ + { + "end_col": 31, + "end_line": 157, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/starknet/common/syscalls.cairo" + }, + "parent_location": [ + { + "end_col": 57, + "end_line": 178, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/starknet/common/syscalls.cairo" + }, + "start_col": 5, + "start_line": 178 + }, + "While trying to retrieve the implicit argument 'syscall_ptr' in:" + ], + "start_col": 13, + "start_line": 157 + }, + "While expanding the reference 'syscall_ptr' in:" + ], + "start_col": 23, + "start_line": 176 + } + }, + "46": { + "accessible_scopes": [ + "starkware.starknet.common.syscalls", + "starkware.starknet.common.syscalls.deploy" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 55, + "end_line": 178, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/starknet/common/syscalls.cairo" + }, + "start_col": 30, + "start_line": 178 + } + }, + "47": { + "accessible_scopes": [ + "starkware.starknet.common.syscalls", + "starkware.starknet.common.syscalls.deploy" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 57, + "end_line": 178, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/starknet/common/syscalls.cairo" + }, + "start_col": 5, + "start_line": 178 + } + }, + "48": { + "accessible_scopes": [ + "starkware.starknet.common.syscalls", + "starkware.starknet.common.syscalls.get_caller_address" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 90, + "end_line": 202, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/starknet/common/syscalls.cairo" + }, + "start_col": 63, + "start_line": 202 + } + }, + "50": { + "accessible_scopes": [ + "starkware.starknet.common.syscalls", + "starkware.starknet.common.syscalls.get_caller_address" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 92, + "end_line": 202, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/starknet/common/syscalls.cairo" + }, + "start_col": 5, + "start_line": 202 + } + }, + "51": { + "accessible_scopes": [ + "starkware.starknet.common.syscalls", + "starkware.starknet.common.syscalls.get_caller_address" + ], + "flow_tracking_data": null, + "hints": [ + { + "location": { + "end_col": 93, + "end_line": 203, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/starknet/common/syscalls.cairo" + }, + "start_col": 5, + "start_line": 203 + }, + "n_prefix_newlines": 0 + } + ], + "inst": { + "end_col": 58, + "end_line": 204, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/starknet/common/syscalls.cairo" + }, + "parent_location": [ + { + "end_col": 43, + "end_line": 200, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/starknet/common/syscalls.cairo" + }, + "parent_location": [ + { + "end_col": 61, + "end_line": 205, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/starknet/common/syscalls.cairo" + }, + "start_col": 5, + "start_line": 205 + }, + "While trying to retrieve the implicit argument 'syscall_ptr' in:" + ], + "start_col": 25, + "start_line": 200 + }, + "While expanding the reference 'syscall_ptr' in:" + ], + "start_col": 23, + "start_line": 204 + } + }, + "53": { + "accessible_scopes": [ + "starkware.starknet.common.syscalls", + "starkware.starknet.common.syscalls.get_caller_address" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 59, + "end_line": 205, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/starknet/common/syscalls.cairo" + }, + "start_col": 28, + "start_line": 205 + } + }, + "54": { + "accessible_scopes": [ + "starkware.starknet.common.syscalls", + "starkware.starknet.common.syscalls.get_caller_address" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 61, + "end_line": 205, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/starknet/common/syscalls.cairo" + }, + "start_col": 5, + "start_line": 205 + } + }, + "55": { + "accessible_scopes": [ + "starkware.starknet.common.syscalls", + "starkware.starknet.common.syscalls.get_contract_address" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 94, + "end_line": 276, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/starknet/common/syscalls.cairo" + }, + "start_col": 65, + "start_line": 276 + } + }, + "57": { + "accessible_scopes": [ + "starkware.starknet.common.syscalls", + "starkware.starknet.common.syscalls.get_contract_address" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 96, + "end_line": 276, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/starknet/common/syscalls.cairo" + }, + "start_col": 5, + "start_line": 276 + } + }, + "58": { + "accessible_scopes": [ + "starkware.starknet.common.syscalls", + "starkware.starknet.common.syscalls.get_contract_address" + ], + "flow_tracking_data": null, + "hints": [ + { + "location": { + "end_col": 95, + "end_line": 277, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/starknet/common/syscalls.cairo" + }, + "start_col": 5, + "start_line": 277 + }, + "n_prefix_newlines": 0 + } + ], + "inst": { + "end_col": 60, + "end_line": 278, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/starknet/common/syscalls.cairo" + }, + "parent_location": [ + { + "end_col": 45, + "end_line": 274, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/starknet/common/syscalls.cairo" + }, + "parent_location": [ + { + "end_col": 65, + "end_line": 279, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/starknet/common/syscalls.cairo" + }, + "start_col": 5, + "start_line": 279 + }, + "While trying to retrieve the implicit argument 'syscall_ptr' in:" + ], + "start_col": 27, + "start_line": 274 + }, + "While expanding the reference 'syscall_ptr' in:" + ], + "start_col": 23, + "start_line": 278 + } + }, + "60": { + "accessible_scopes": [ + "starkware.starknet.common.syscalls", + "starkware.starknet.common.syscalls.get_contract_address" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 63, + "end_line": 279, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/starknet/common/syscalls.cairo" + }, + "start_col": 30, + "start_line": 279 + } + }, + "61": { + "accessible_scopes": [ + "starkware.starknet.common.syscalls", + "starkware.starknet.common.syscalls.get_contract_address" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 65, + "end_line": 279, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/starknet/common/syscalls.cairo" + }, + "start_col": 5, + "start_line": 279 + } + }, + "62": { + "accessible_scopes": [ + "starkware.starknet.common.syscalls", + "starkware.starknet.common.syscalls.storage_read" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 79, + "end_line": 354, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/starknet/common/syscalls.cairo" + }, + "start_col": 58, + "start_line": 354 + } + }, + "64": { + "accessible_scopes": [ + "starkware.starknet.common.syscalls", + "starkware.starknet.common.syscalls.storage_read" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 98, + "end_line": 354, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/starknet/common/syscalls.cairo" + }, + "start_col": 5, + "start_line": 354 + } + }, + "65": { + "accessible_scopes": [ + "starkware.starknet.common.syscalls", + "starkware.starknet.common.syscalls.storage_read" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 98, + "end_line": 354, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/starknet/common/syscalls.cairo" + }, + "start_col": 5, + "start_line": 354 + } + }, + "66": { + "accessible_scopes": [ + "starkware.starknet.common.syscalls", + "starkware.starknet.common.syscalls.storage_read" + ], + "flow_tracking_data": null, + "hints": [ + { + "location": { + "end_col": 87, + "end_line": 355, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/starknet/common/syscalls.cairo" + }, + "start_col": 5, + "start_line": 355 + }, + "n_prefix_newlines": 0 + } + ], + "inst": { + "end_col": 53, + "end_line": 357, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/starknet/common/syscalls.cairo" + }, + "parent_location": [ + { + "end_col": 37, + "end_line": 352, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/starknet/common/syscalls.cairo" + }, + "parent_location": [ + { + "end_col": 35, + "end_line": 358, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/starknet/common/syscalls.cairo" + }, + "start_col": 5, + "start_line": 358 + }, + "While trying to retrieve the implicit argument 'syscall_ptr' in:" + ], + "start_col": 19, + "start_line": 352 + }, + "While expanding the reference 'syscall_ptr' in:" + ], + "start_col": 23, + "start_line": 357 + } + }, + "68": { + "accessible_scopes": [ + "starkware.starknet.common.syscalls", + "starkware.starknet.common.syscalls.storage_read" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 33, + "end_line": 358, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/starknet/common/syscalls.cairo" + }, + "start_col": 19, + "start_line": 358 + } + }, + "69": { + "accessible_scopes": [ + "starkware.starknet.common.syscalls", + "starkware.starknet.common.syscalls.storage_read" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 35, + "end_line": 358, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/starknet/common/syscalls.cairo" + }, + "start_col": 5, + "start_line": 358 + } + }, + "70": { + "accessible_scopes": [ + "starkware.starknet.common.syscalls", + "starkware.starknet.common.syscalls.storage_write" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 40, + "end_line": 372, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/starknet/common/syscalls.cairo" + }, + "start_col": 18, + "start_line": 372 + } + }, + "72": { + "accessible_scopes": [ + "starkware.starknet.common.syscalls", + "starkware.starknet.common.syscalls.storage_write" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 7, + "end_line": 373, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/starknet/common/syscalls.cairo" + }, + "start_col": 5, + "start_line": 371 + } + }, + "73": { + "accessible_scopes": [ + "starkware.starknet.common.syscalls", + "starkware.starknet.common.syscalls.storage_write" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 7, + "end_line": 373, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/starknet/common/syscalls.cairo" + }, + "start_col": 5, + "start_line": 371 + } + }, + "74": { + "accessible_scopes": [ + "starkware.starknet.common.syscalls", + "starkware.starknet.common.syscalls.storage_write" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 7, + "end_line": 373, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/starknet/common/syscalls.cairo" + }, + "start_col": 5, + "start_line": 371 + } + }, + "75": { + "accessible_scopes": [ + "starkware.starknet.common.syscalls", + "starkware.starknet.common.syscalls.storage_write" + ], + "flow_tracking_data": null, + "hints": [ + { + "location": { + "end_col": 88, + "end_line": 374, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/starknet/common/syscalls.cairo" + }, + "start_col": 5, + "start_line": 374 + }, + "n_prefix_newlines": 0 + } + ], + "inst": { + "end_col": 54, + "end_line": 375, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/starknet/common/syscalls.cairo" + }, + "parent_location": [ + { + "end_col": 38, + "end_line": 370, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/starknet/common/syscalls.cairo" + }, + "parent_location": [ + { + "end_col": 15, + "end_line": 376, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/starknet/common/syscalls.cairo" + }, + "start_col": 5, + "start_line": 376 + }, + "While trying to retrieve the implicit argument 'syscall_ptr' in:" + ], + "start_col": 20, + "start_line": 370 + }, + "While expanding the reference 'syscall_ptr' in:" + ], + "start_col": 23, + "start_line": 375 + } + }, + "77": { + "accessible_scopes": [ + "starkware.starknet.common.syscalls", + "starkware.starknet.common.syscalls.storage_write" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 15, + "end_line": 376, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/starknet/common/syscalls.cairo" + }, + "start_col": 5, + "start_line": 376 + } + }, + "78": { + "accessible_scopes": [ + "starkware.starknet.common.syscalls", + "starkware.starknet.common.syscalls.emit_event" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 37, + "end_line": 392, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/starknet/common/syscalls.cairo" + }, + "start_col": 18, + "start_line": 392 + } + }, + "80": { + "accessible_scopes": [ + "starkware.starknet.common.syscalls", + "starkware.starknet.common.syscalls.emit_event" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 7, + "end_line": 393, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/starknet/common/syscalls.cairo" + }, + "start_col": 5, + "start_line": 391 + } + }, + "81": { + "accessible_scopes": [ + "starkware.starknet.common.syscalls", + "starkware.starknet.common.syscalls.emit_event" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 7, + "end_line": 393, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/starknet/common/syscalls.cairo" + }, + "start_col": 5, + "start_line": 391 + } + }, + "82": { + "accessible_scopes": [ + "starkware.starknet.common.syscalls", + "starkware.starknet.common.syscalls.emit_event" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 7, + "end_line": 393, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/starknet/common/syscalls.cairo" + }, + "start_col": 5, + "start_line": 391 + } + }, + "83": { + "accessible_scopes": [ + "starkware.starknet.common.syscalls", + "starkware.starknet.common.syscalls.emit_event" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 7, + "end_line": 393, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/starknet/common/syscalls.cairo" + }, + "start_col": 5, + "start_line": 391 + } + }, + "84": { + "accessible_scopes": [ + "starkware.starknet.common.syscalls", + "starkware.starknet.common.syscalls.emit_event" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 7, + "end_line": 393, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/starknet/common/syscalls.cairo" + }, + "start_col": 5, + "start_line": 391 + } + }, + "85": { + "accessible_scopes": [ + "starkware.starknet.common.syscalls", + "starkware.starknet.common.syscalls.emit_event" + ], + "flow_tracking_data": null, + "hints": [ + { + "location": { + "end_col": 85, + "end_line": 394, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/starknet/common/syscalls.cairo" + }, + "start_col": 5, + "start_line": 394 + }, + "n_prefix_newlines": 0 + } + ], + "inst": { + "end_col": 51, + "end_line": 395, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/starknet/common/syscalls.cairo" + }, + "parent_location": [ + { + "end_col": 35, + "end_line": 390, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/starknet/common/syscalls.cairo" + }, + "parent_location": [ + { + "end_col": 15, + "end_line": 396, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/starknet/common/syscalls.cairo" + }, + "start_col": 5, + "start_line": 396 + }, + "While trying to retrieve the implicit argument 'syscall_ptr' in:" + ], + "start_col": 17, + "start_line": 390 + }, + "While expanding the reference 'syscall_ptr' in:" + ], + "start_col": 23, + "start_line": 395 + } + }, + "87": { + "accessible_scopes": [ + "starkware.starknet.common.syscalls", + "starkware.starknet.common.syscalls.emit_event" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 15, + "end_line": 396, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/starknet/common/syscalls.cairo" + }, + "start_col": 5, + "start_line": 396 + } + }, + "88": { + "accessible_scopes": [ + "starkware.cairo.common.math", + "starkware.cairo.common.math.assert_not_zero" + ], + "flow_tracking_data": null, + "hints": [ + { + "location": { + "end_col": 7, + "end_line": 11, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/math.cairo" + }, + "start_col": 5, + "start_line": 7 + }, + "n_prefix_newlines": 1 + } + ], + "inst": { + "end_col": 7, + "end_line": 12, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/math.cairo" + }, + "start_col": 5, + "start_line": 12 + } + }, + "90": { + "accessible_scopes": [ + "starkware.cairo.common.math", + "starkware.cairo.common.math.assert_not_zero" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 18, + "end_line": 14, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/math.cairo" + }, + "start_col": 9, + "start_line": 14 + } + }, + "92": { + "accessible_scopes": [ + "starkware.cairo.common.math", + "starkware.cairo.common.math.assert_not_zero" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 15, + "end_line": 17, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/math.cairo" + }, + "start_col": 5, + "start_line": 17 + } + }, + "93": { + "accessible_scopes": [ + "starkware.cairo.common.math", + "starkware.cairo.common.math.assert_250_bit" + ], + "flow_tracking_data": null, + "hints": [ + { + "location": { + "end_col": 7, + "end_line": 106, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/math.cairo" + }, + "start_col": 5, + "start_line": 97 + }, + "n_prefix_newlines": 1 + } + ], + "inst": { + "end_col": 50, + "end_line": 108, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/math.cairo" + }, + "start_col": 36, + "start_line": 108 + } + }, + "95": { + "accessible_scopes": [ + "starkware.cairo.common.math", + "starkware.cairo.common.math.assert_250_bit" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 37, + "end_line": 95, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/math.cairo" + }, + "parent_location": [ + { + "end_col": 57, + "end_line": 108, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/math.cairo" + }, + "start_col": 53, + "start_line": 108 + }, + "While expanding the reference 'high' in:" + ], + "start_col": 16, + "start_line": 95 + } + }, + "96": { + "accessible_scopes": [ + "starkware.cairo.common.math", + "starkware.cairo.common.math.assert_250_bit" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 57, + "end_line": 108, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/math.cairo" + }, + "start_col": 36, + "start_line": 108 + } + }, + "97": { + "accessible_scopes": [ + "starkware.cairo.common.math", + "starkware.cairo.common.math.assert_250_bit" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 58, + "end_line": 108, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/math.cairo" + }, + "start_col": 5, + "start_line": 108 + } + }, + "98": { + "accessible_scopes": [ + "starkware.cairo.common.math", + "starkware.cairo.common.math.assert_250_bit" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 37, + "end_line": 95, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/math.cairo" + }, + "parent_location": [ + { + "end_col": 24, + "end_line": 113, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/math.cairo" + }, + "start_col": 20, + "start_line": 113 + }, + "While expanding the reference 'high' in:" + ], + "start_col": 16, + "start_line": 95 + } + }, + "99": { + "accessible_scopes": [ + "starkware.cairo.common.math", + "starkware.cairo.common.math.assert_250_bit" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 32, + "end_line": 113, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/math.cairo" + }, + "start_col": 20, + "start_line": 113 + } + }, + "101": { + "accessible_scopes": [ + "starkware.cairo.common.math", + "starkware.cairo.common.math.assert_250_bit" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 32, + "end_line": 94, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/math.cairo" + }, + "parent_location": [ + { + "end_col": 38, + "end_line": 113, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/math.cairo" + }, + "start_col": 35, + "start_line": 113 + }, + "While expanding the reference 'low' in:" + ], + "start_col": 15, + "start_line": 94 + } + }, + "102": { + "accessible_scopes": [ + "starkware.cairo.common.math", + "starkware.cairo.common.math.assert_250_bit" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 39, + "end_line": 113, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/math.cairo" + }, + "start_col": 5, + "start_line": 113 + } + }, + "103": { + "accessible_scopes": [ + "starkware.cairo.common.math", + "starkware.cairo.common.math.assert_250_bit" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 46, + "end_line": 115, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/math.cairo" + }, + "parent_location": [ + { + "end_col": 36, + "end_line": 89, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/math.cairo" + }, + "parent_location": [ + { + "end_col": 15, + "end_line": 116, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/math.cairo" + }, + "start_col": 5, + "start_line": 116 + }, + "While trying to retrieve the implicit argument 'range_check_ptr' in:" + ], + "start_col": 21, + "start_line": 89 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 27, + "start_line": 115 + } + }, + "105": { + "accessible_scopes": [ + "starkware.cairo.common.math", + "starkware.cairo.common.math.assert_250_bit" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 15, + "end_line": 116, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/math.cairo" + }, + "start_col": 5, + "start_line": 116 + } + }, + "106": { + "accessible_scopes": [ + "starkware.cairo.common.math", + "starkware.cairo.common.math.assert_le_felt" + ], + "flow_tracking_data": null, + "hints": [ + { + "location": { + "end_col": 7, + "end_line": 184, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/math.cairo" + }, + "start_col": 5, + "start_line": 164 + }, + "n_prefix_newlines": 1 + } + ], + "inst": { + "end_col": 42, + "end_line": 186, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/math.cairo" + }, + "start_col": 25, + "start_line": 186 + } + }, + "107": { + "accessible_scopes": [ + "starkware.cairo.common.math", + "starkware.cairo.common.math.assert_le_felt" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 66, + "end_line": 186, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/math.cairo" + }, + "start_col": 45, + "start_line": 186 + } + }, + "108": { + "accessible_scopes": [ + "starkware.cairo.common.math", + "starkware.cairo.common.math.assert_le_felt" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 86, + "end_line": 186, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/math.cairo" + }, + "start_col": 45, + "start_line": 186 + } + }, + "110": { + "accessible_scopes": [ + "starkware.cairo.common.math", + "starkware.cairo.common.math.assert_le_felt" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 86, + "end_line": 186, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/math.cairo" + }, + "start_col": 25, + "start_line": 186 + } + }, + "111": { + "accessible_scopes": [ + "starkware.cairo.common.math", + "starkware.cairo.common.math.assert_le_felt" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 45, + "end_line": 187, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/math.cairo" + }, + "start_col": 24, + "start_line": 187 + } + }, + "112": { + "accessible_scopes": [ + "starkware.cairo.common.math", + "starkware.cairo.common.math.assert_le_felt" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 69, + "end_line": 187, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/math.cairo" + }, + "start_col": 48, + "start_line": 187 + } + }, + "113": { + "accessible_scopes": [ + "starkware.cairo.common.math", + "starkware.cairo.common.math.assert_le_felt" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 89, + "end_line": 187, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/math.cairo" + }, + "start_col": 48, + "start_line": 187 + } + }, + "115": { + "accessible_scopes": [ + "starkware.cairo.common.math", + "starkware.cairo.common.math.assert_le_felt" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 89, + "end_line": 187, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/math.cairo" + }, + "start_col": 24, + "start_line": 187 + } + }, + "116": { + "accessible_scopes": [ + "starkware.cairo.common.math", + "starkware.cairo.common.math.assert_le_felt" + ], + "flow_tracking_data": null, + "hints": [ + { + "location": { + "end_col": 49, + "end_line": 196, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/math.cairo" + }, + "start_col": 5, + "start_line": 196 + }, + "n_prefix_newlines": 0 + } + ], + "inst": { + "end_col": 42, + "end_line": 197, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/math.cairo" + }, + "start_col": 5, + "start_line": 197 + } + }, + "118": { + "accessible_scopes": [ + "starkware.cairo.common.math", + "starkware.cairo.common.math.assert_le_felt" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 25, + "end_line": 198, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/math.cairo" + }, + "start_col": 23, + "start_line": 198 + } + }, + "120": { + "accessible_scopes": [ + "starkware.cairo.common.math", + "starkware.cairo.common.math.assert_le_felt" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 30, + "end_line": 198, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/math.cairo" + }, + "start_col": 22, + "start_line": 198 + } + }, + "121": { + "accessible_scopes": [ + "starkware.cairo.common.math", + "starkware.cairo.common.math.assert_le_felt" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 31, + "end_line": 198, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/math.cairo" + }, + "start_col": 5, + "start_line": 198 + } + }, + "122": { + "accessible_scopes": [ + "starkware.cairo.common.math", + "starkware.cairo.common.math.assert_le_felt" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 29, + "end_line": 199, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/math.cairo" + }, + "start_col": 24, + "start_line": 199 + } + }, + "123": { + "accessible_scopes": [ + "starkware.cairo.common.math", + "starkware.cairo.common.math.assert_le_felt" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 39, + "end_line": 199, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/math.cairo" + }, + "start_col": 34, + "start_line": 199 + } + }, + "125": { + "accessible_scopes": [ + "starkware.cairo.common.math", + "starkware.cairo.common.math.assert_le_felt" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 40, + "end_line": 199, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/math.cairo" + }, + "start_col": 23, + "start_line": 199 + } + }, + "126": { + "accessible_scopes": [ + "starkware.cairo.common.math", + "starkware.cairo.common.math.assert_le_felt" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 41, + "end_line": 199, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/math.cairo" + }, + "start_col": 5, + "start_line": 199 + } + }, + "127": { + "accessible_scopes": [ + "starkware.cairo.common.math", + "starkware.cairo.common.math.assert_le_felt" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 46, + "end_line": 188, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/math.cairo" + }, + "parent_location": [ + { + "end_col": 36, + "end_line": 154, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/math.cairo" + }, + "parent_location": [ + { + "end_col": 15, + "end_line": 200, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/math.cairo" + }, + "start_col": 5, + "start_line": 200 + }, + "While trying to retrieve the implicit argument 'range_check_ptr' in:" + ], + "start_col": 21, + "start_line": 154 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 27, + "start_line": 188 + } + }, + "129": { + "accessible_scopes": [ + "starkware.cairo.common.math", + "starkware.cairo.common.math.assert_le_felt" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 15, + "end_line": 200, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/math.cairo" + }, + "start_col": 5, + "start_line": 200 + } + }, + "130": { + "accessible_scopes": [ + "starkware.cairo.common.math", + "starkware.cairo.common.math.assert_le_felt" + ], + "flow_tracking_data": null, + "hints": [ + { + "location": { + "end_col": 49, + "end_line": 204, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/math.cairo" + }, + "start_col": 5, + "start_line": 204 + }, + "n_prefix_newlines": 0 + } + ], + "inst": { + "end_col": 50, + "end_line": 205, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/math.cairo" + }, + "start_col": 5, + "start_line": 205 + } + }, + "132": { + "accessible_scopes": [ + "starkware.cairo.common.math", + "starkware.cairo.common.math.assert_le_felt" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 23, + "end_line": 206, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/math.cairo" + }, + "start_col": 21, + "start_line": 206 + } + }, + "134": { + "accessible_scopes": [ + "starkware.cairo.common.math", + "starkware.cairo.common.math.assert_le_felt" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 28, + "end_line": 206, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/math.cairo" + }, + "start_col": 20, + "start_line": 206 + } + }, + "135": { + "accessible_scopes": [ + "starkware.cairo.common.math", + "starkware.cairo.common.math.assert_le_felt" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 30, + "end_line": 207, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/math.cairo" + }, + "start_col": 22, + "start_line": 207 + } + }, + "136": { + "accessible_scopes": [ + "starkware.cairo.common.math", + "starkware.cairo.common.math.assert_le_felt" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 31, + "end_line": 207, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/math.cairo" + }, + "start_col": 5, + "start_line": 207 + } + }, + "137": { + "accessible_scopes": [ + "starkware.cairo.common.math", + "starkware.cairo.common.math.assert_le_felt" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 31, + "end_line": 208, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/math.cairo" + }, + "start_col": 23, + "start_line": 208 + } + }, + "138": { + "accessible_scopes": [ + "starkware.cairo.common.math", + "starkware.cairo.common.math.assert_le_felt" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 32, + "end_line": 208, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/math.cairo" + }, + "start_col": 5, + "start_line": 208 + } + }, + "139": { + "accessible_scopes": [ + "starkware.cairo.common.math", + "starkware.cairo.common.math.assert_le_felt" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 46, + "end_line": 188, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/math.cairo" + }, + "parent_location": [ + { + "end_col": 36, + "end_line": 154, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/math.cairo" + }, + "parent_location": [ + { + "end_col": 15, + "end_line": 209, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/math.cairo" + }, + "start_col": 5, + "start_line": 209 + }, + "While trying to retrieve the implicit argument 'range_check_ptr' in:" + ], + "start_col": 21, + "start_line": 154 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 27, + "start_line": 188 + } + }, + "141": { + "accessible_scopes": [ + "starkware.cairo.common.math", + "starkware.cairo.common.math.assert_le_felt" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 15, + "end_line": 209, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/math.cairo" + }, + "start_col": 5, + "start_line": 209 + } + }, + "142": { + "accessible_scopes": [ + "starkware.cairo.common.math", + "starkware.cairo.common.math.assert_le_felt" + ], + "flow_tracking_data": null, + "hints": [ + { + "location": { + "end_col": 31, + "end_line": 213, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/math.cairo" + }, + "start_col": 5, + "start_line": 213 + }, + "n_prefix_newlines": 0 + } + ], + "inst": { + "end_col": 24, + "end_line": 214, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/math.cairo" + }, + "start_col": 5, + "start_line": 214 + } + }, + "143": { + "accessible_scopes": [ + "starkware.cairo.common.math", + "starkware.cairo.common.math.assert_le_felt" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 33, + "end_line": 215, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/math.cairo" + }, + "start_col": 28, + "start_line": 215 + } + }, + "144": { + "accessible_scopes": [ + "starkware.cairo.common.math", + "starkware.cairo.common.math.assert_le_felt" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 34, + "end_line": 215, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/math.cairo" + }, + "start_col": 23, + "start_line": 215 + } + }, + "145": { + "accessible_scopes": [ + "starkware.cairo.common.math", + "starkware.cairo.common.math.assert_le_felt" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 35, + "end_line": 215, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/math.cairo" + }, + "start_col": 5, + "start_line": 215 + } + }, + "146": { + "accessible_scopes": [ + "starkware.cairo.common.math", + "starkware.cairo.common.math.assert_le_felt" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 12, + "end_line": 216, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/math.cairo" + }, + "start_col": 5, + "start_line": 216 + } + }, + "148": { + "accessible_scopes": [ + "starkware.cairo.common.math", + "starkware.cairo.common.math.assert_le_felt" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 46, + "end_line": 188, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/math.cairo" + }, + "parent_location": [ + { + "end_col": 36, + "end_line": 154, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/math.cairo" + }, + "parent_location": [ + { + "end_col": 15, + "end_line": 217, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/math.cairo" + }, + "start_col": 5, + "start_line": 217 + }, + "While trying to retrieve the implicit argument 'range_check_ptr' in:" + ], + "start_col": 21, + "start_line": 154 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 27, + "start_line": 188 + } + }, + "150": { + "accessible_scopes": [ + "starkware.cairo.common.math", + "starkware.cairo.common.math.assert_le_felt" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 15, + "end_line": 217, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/math.cairo" + }, + "start_col": 5, + "start_line": 217 + } + }, + "151": { + "accessible_scopes": [ + "starkware.cairo.common.math", + "starkware.cairo.common.math.assert_lt_felt" + ], + "flow_tracking_data": null, + "hints": [ + { + "location": { + "end_col": 7, + "end_line": 230, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/math.cairo" + }, + "start_col": 5, + "start_line": 224 + }, + "n_prefix_newlines": 1 + } + ], + "inst": { + "end_col": 15, + "end_line": 231, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/math.cairo" + }, + "start_col": 9, + "start_line": 231 + } + }, + "152": { + "accessible_scopes": [ + "starkware.cairo.common.math", + "starkware.cairo.common.math.assert_lt_felt" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 7, + "end_line": 231, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/math.cairo" + }, + "start_col": 5, + "start_line": 231 + } + }, + "154": { + "accessible_scopes": [ + "starkware.cairo.common.math", + "starkware.cairo.common.math.assert_lt_felt" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 18, + "end_line": 233, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/math.cairo" + }, + "start_col": 9, + "start_line": 233 + } + }, + "156": { + "accessible_scopes": [ + "starkware.cairo.common.math", + "starkware.cairo.common.math.assert_lt_felt" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 36, + "end_line": 223, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/math.cairo" + }, + "parent_location": [ + { + "end_col": 36, + "end_line": 154, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/math.cairo" + }, + "parent_location": [ + { + "end_col": 25, + "end_line": 235, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/math.cairo" + }, + "start_col": 5, + "start_line": 235 + }, + "While trying to retrieve the implicit argument 'range_check_ptr' in:" + ], + "start_col": 21, + "start_line": 154 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 21, + "start_line": 223 + } + }, + "157": { + "accessible_scopes": [ + "starkware.cairo.common.math", + "starkware.cairo.common.math.assert_lt_felt" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 39, + "end_line": 223, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/math.cairo" + }, + "parent_location": [ + { + "end_col": 21, + "end_line": 235, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/math.cairo" + }, + "start_col": 20, + "start_line": 235 + }, + "While expanding the reference 'a' in:" + ], + "start_col": 38, + "start_line": 223 + } + }, + "158": { + "accessible_scopes": [ + "starkware.cairo.common.math", + "starkware.cairo.common.math.assert_lt_felt" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 42, + "end_line": 223, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/math.cairo" + }, + "parent_location": [ + { + "end_col": 24, + "end_line": 235, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/math.cairo" + }, + "start_col": 23, + "start_line": 235 + }, + "While expanding the reference 'b' in:" + ], + "start_col": 41, + "start_line": 223 + } + }, + "159": { + "accessible_scopes": [ + "starkware.cairo.common.math", + "starkware.cairo.common.math.assert_lt_felt" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 25, + "end_line": 235, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/math.cairo" + }, + "start_col": 5, + "start_line": 235 + } + }, + "161": { + "accessible_scopes": [ + "starkware.cairo.common.math", + "starkware.cairo.common.math.assert_lt_felt" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 15, + "end_line": 236, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/math.cairo" + }, + "start_col": 5, + "start_line": 236 + } + }, + "162": { + "accessible_scopes": [ + "starkware.starknet.common.storage", + "starkware.starknet.common.storage.normalize_address" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 22, + "end_line": 13, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/starknet/common/storage.cairo" + }, + "start_col": 5, + "start_line": 13 + } + }, + "164": { + "accessible_scopes": [ + "starkware.starknet.common.storage", + "starkware.starknet.common.storage.normalize_address" + ], + "flow_tracking_data": null, + "hints": [ + { + "location": { + "end_col": 7, + "end_line": 21, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/starknet/common/storage.cairo" + }, + "start_col": 5, + "start_line": 14 + }, + "n_prefix_newlines": 1 + } + ], + "inst": { + "end_col": 7, + "end_line": 22, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/starknet/common/storage.cairo" + }, + "start_col": 5, + "start_line": 22 + } + }, + "166": { + "accessible_scopes": [ + "starkware.starknet.common.storage", + "starkware.starknet.common.storage.normalize_address" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 39, + "end_line": 12, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/starknet/common/storage.cairo" + }, + "parent_location": [ + { + "end_col": 36, + "end_line": 89, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/math.cairo" + }, + "parent_location": [ + { + "end_col": 26, + "end_line": 50, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/starknet/common/storage.cairo" + }, + "start_col": 9, + "start_line": 50 + }, + "While trying to retrieve the implicit argument 'range_check_ptr' in:" + ], + "start_col": 21, + "start_line": 89 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 24, + "start_line": 12 + } + }, + "167": { + "accessible_scopes": [ + "starkware.starknet.common.storage", + "starkware.starknet.common.storage.normalize_address" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 34, + "end_line": 48, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/starknet/common/storage.cairo" + }, + "parent_location": [ + { + "end_col": 25, + "end_line": 50, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/starknet/common/storage.cairo" + }, + "start_col": 24, + "start_line": 50 + }, + "While expanding the reference 'x' in:" + ], + "start_col": 17, + "start_line": 48 + } + }, + "169": { + "accessible_scopes": [ + "starkware.starknet.common.storage", + "starkware.starknet.common.storage.normalize_address" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 26, + "end_line": 50, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/starknet/common/storage.cairo" + }, + "start_col": 9, + "start_line": 50 + } + }, + "171": { + "accessible_scopes": [ + "starkware.starknet.common.storage", + "starkware.starknet.common.storage.normalize_address" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 20, + "end_line": 49, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/starknet/common/storage.cairo" + }, + "parent_location": [ + { + "end_col": 25, + "end_line": 51, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/starknet/common/storage.cairo" + }, + "start_col": 24, + "start_line": 51 + }, + "While expanding the reference 'y' in:" + ], + "start_col": 18, + "start_line": 49 + } + }, + "173": { + "accessible_scopes": [ + "starkware.starknet.common.storage", + "starkware.starknet.common.storage.normalize_address" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 36, + "end_line": 89, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/math.cairo" + }, + "parent_location": [ + { + "end_col": 26, + "end_line": 50, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/starknet/common/storage.cairo" + }, + "parent_location": [ + { + "end_col": 36, + "end_line": 89, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/math.cairo" + }, + "parent_location": [ + { + "end_col": 26, + "end_line": 51, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/starknet/common/storage.cairo" + }, + "start_col": 9, + "start_line": 51 + }, + "While trying to retrieve the implicit argument 'range_check_ptr' in:" + ], + "start_col": 21, + "start_line": 89 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 9, + "start_line": 50 + }, + "While trying to update the implicit return value 'range_check_ptr' in:" + ], + "start_col": 21, + "start_line": 89 + } + }, + "174": { + "accessible_scopes": [ + "starkware.starknet.common.storage", + "starkware.starknet.common.storage.normalize_address" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 28, + "end_line": 49, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/starknet/common/storage.cairo" + }, + "parent_location": [ + { + "end_col": 25, + "end_line": 51, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/starknet/common/storage.cairo" + }, + "start_col": 24, + "start_line": 51 + }, + "While expanding the reference 'y' in:" + ], + "start_col": 17, + "start_line": 49 + } + }, + "175": { + "accessible_scopes": [ + "starkware.starknet.common.storage", + "starkware.starknet.common.storage.normalize_address" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 26, + "end_line": 51, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/starknet/common/storage.cairo" + }, + "start_col": 9, + "start_line": 51 + } + }, + "177": { + "accessible_scopes": [ + "starkware.starknet.common.storage", + "starkware.starknet.common.storage.normalize_address" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 38, + "end_line": 52, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/starknet/common/storage.cairo" + }, + "start_col": 21, + "start_line": 52 + } + }, + "179": { + "accessible_scopes": [ + "starkware.starknet.common.storage", + "starkware.starknet.common.storage.normalize_address" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 40, + "end_line": 52, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/starknet/common/storage.cairo" + }, + "start_col": 9, + "start_line": 52 + } + }, + "180": { + "accessible_scopes": [ + "starkware.starknet.common.storage", + "starkware.starknet.common.storage.normalize_address" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 24, + "end_line": 23, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/starknet/common/storage.cairo" + }, + "start_col": 9, + "start_line": 23 + } + }, + "182": { + "accessible_scopes": [ + "starkware.starknet.common.storage", + "starkware.starknet.common.storage.normalize_address" + ], + "flow_tracking_data": null, + "hints": [ + { + "location": { + "end_col": 57, + "end_line": 24, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/starknet/common/storage.cairo" + }, + "start_col": 9, + "start_line": 24 + }, + "n_prefix_newlines": 0 + } + ], + "inst": { + "end_col": 11, + "end_line": 25, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/starknet/common/storage.cairo" + }, + "start_col": 9, + "start_line": 25 + } + }, + "184": { + "accessible_scopes": [ + "starkware.starknet.common.storage", + "starkware.starknet.common.storage.normalize_address" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 21, + "end_line": 30, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/starknet/common/storage.cairo" + }, + "start_col": 13, + "start_line": 30 + } + }, + "186": { + "accessible_scopes": [ + "starkware.starknet.common.storage", + "starkware.starknet.common.storage.normalize_address" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 42, + "end_line": 32, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/starknet/common/storage.cairo" + }, + "start_col": 28, + "start_line": 32 + } + }, + "188": { + "accessible_scopes": [ + "starkware.starknet.common.storage", + "starkware.starknet.common.storage.normalize_address" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 39, + "end_line": 12, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/starknet/common/storage.cairo" + }, + "parent_location": [ + { + "end_col": 36, + "end_line": 89, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/math.cairo" + }, + "parent_location": [ + { + "end_col": 50, + "end_line": 32, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/starknet/common/storage.cairo" + }, + "start_col": 13, + "start_line": 32 + }, + "While trying to retrieve the implicit argument 'range_check_ptr' in:" + ], + "start_col": 21, + "start_line": 89 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 24, + "start_line": 12 + } + }, + "189": { + "accessible_scopes": [ + "starkware.starknet.common.storage", + "starkware.starknet.common.storage.normalize_address" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 49, + "end_line": 32, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/starknet/common/storage.cairo" + }, + "start_col": 28, + "start_line": 32 + } + }, + "190": { + "accessible_scopes": [ + "starkware.starknet.common.storage", + "starkware.starknet.common.storage.normalize_address" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 50, + "end_line": 32, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/starknet/common/storage.cairo" + }, + "start_col": 13, + "start_line": 32 + } + }, + "192": { + "accessible_scopes": [ + "starkware.starknet.common.storage", + "starkware.starknet.common.storage.normalize_address" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 11, + "end_line": 25, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/starknet/common/storage.cairo" + }, + "start_col": 9, + "start_line": 25 + } + }, + "194": { + "accessible_scopes": [ + "starkware.starknet.common.storage", + "starkware.starknet.common.storage.normalize_address" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 21, + "end_line": 26, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/starknet/common/storage.cairo" + }, + "start_col": 13, + "start_line": 26 + } + }, + "196": { + "accessible_scopes": [ + "starkware.starknet.common.storage", + "starkware.starknet.common.storage.normalize_address" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 39, + "end_line": 12, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/starknet/common/storage.cairo" + }, + "parent_location": [ + { + "end_col": 36, + "end_line": 89, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/math.cairo" + }, + "parent_location": [ + { + "end_col": 33, + "end_line": 28, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/starknet/common/storage.cairo" + }, + "start_col": 13, + "start_line": 28 + }, + "While trying to retrieve the implicit argument 'range_check_ptr' in:" + ], + "start_col": 21, + "start_line": 89 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 24, + "start_line": 12 + } + }, + "197": { + "accessible_scopes": [ + "starkware.starknet.common.storage", + "starkware.starknet.common.storage.normalize_address" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 51, + "end_line": 12, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/starknet/common/storage.cairo" + }, + "parent_location": [ + { + "end_col": 32, + "end_line": 28, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/starknet/common/storage.cairo" + }, + "start_col": 28, + "start_line": 28 + }, + "While expanding the reference 'addr' in:" + ], + "start_col": 41, + "start_line": 12 + } + }, + "198": { + "accessible_scopes": [ + "starkware.starknet.common.storage", + "starkware.starknet.common.storage.normalize_address" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 33, + "end_line": 28, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/starknet/common/storage.cairo" + }, + "start_col": 13, + "start_line": 28 + } + }, + "200": { + "accessible_scopes": [ + "starkware.starknet.common.storage", + "starkware.starknet.common.storage.normalize_address" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 51, + "end_line": 12, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/starknet/common/storage.cairo" + }, + "parent_location": [ + { + "end_col": 25, + "end_line": 34, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/starknet/common/storage.cairo" + }, + "start_col": 21, + "start_line": 34 + }, + "While expanding the reference 'addr' in:" + ], + "start_col": 41, + "start_line": 12 + } + }, + "201": { + "accessible_scopes": [ + "starkware.starknet.common.storage", + "starkware.starknet.common.storage.normalize_address" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 27, + "end_line": 34, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/starknet/common/storage.cairo" + }, + "start_col": 9, + "start_line": 34 + } + }, + "202": { + "accessible_scopes": [ + "openzeppelin.access.ownable.library", + "openzeppelin.access.ownable.library.OwnershipTransferred", + "openzeppelin.access.ownable.library.OwnershipTransferred.emit" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 14, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/event/OwnershipTransferred/8220fde17ca5479f12ae71a8036f4d354fe722f2c036da610b53511924e4ee84.cairo" + }, + "parent_location": [ + { + "end_col": 26, + "end_line": 15, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/access/ownable/library.cairo" + }, + "start_col": 6, + "start_line": 15 + }, + "While handling event:" + ], + "start_col": 1, + "start_line": 1 + } + }, + "204": { + "accessible_scopes": [ + "openzeppelin.access.ownable.library", + "openzeppelin.access.ownable.library.OwnershipTransferred", + "openzeppelin.access.ownable.library.OwnershipTransferred.emit" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 40, + "end_line": 2, + "input_file": { + "filename": "autogen/starknet/event/OwnershipTransferred/8220fde17ca5479f12ae71a8036f4d354fe722f2c036da610b53511924e4ee84.cairo" + }, + "parent_location": [ + { + "end_col": 26, + "end_line": 15, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/access/ownable/library.cairo" + }, + "start_col": 6, + "start_line": 15 + }, + "While handling event:" + ], + "start_col": 33, + "start_line": 2 + } + }, + "206": { + "accessible_scopes": [ + "openzeppelin.access.ownable.library", + "openzeppelin.access.ownable.library.OwnershipTransferred", + "openzeppelin.access.ownable.library.OwnershipTransferred.emit" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 29, + "end_line": 2, + "input_file": { + "filename": "autogen/starknet/event/OwnershipTransferred/8220fde17ca5479f12ae71a8036f4d354fe722f2c036da610b53511924e4ee84.cairo" + }, + "parent_location": [ + { + "end_col": 26, + "end_line": 15, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/access/ownable/library.cairo" + }, + "start_col": 6, + "start_line": 15 + }, + "While handling event:" + ], + "start_col": 6, + "start_line": 2 + } + }, + "207": { + "accessible_scopes": [ + "openzeppelin.access.ownable.library", + "openzeppelin.access.ownable.library.OwnershipTransferred", + "openzeppelin.access.ownable.library.OwnershipTransferred.emit" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 31, + "end_line": 3, + "input_file": { + "filename": "autogen/starknet/event/OwnershipTransferred/8220fde17ca5479f12ae71a8036f4d354fe722f2c036da610b53511924e4ee84.cairo" + }, + "parent_location": [ + { + "end_col": 26, + "end_line": 15, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/access/ownable/library.cairo" + }, + "start_col": 6, + "start_line": 15 + }, + "While handling event:" + ], + "start_col": 23, + "start_line": 3 + } + }, + "209": { + "accessible_scopes": [ + "openzeppelin.access.ownable.library", + "openzeppelin.access.ownable.library.OwnershipTransferred", + "openzeppelin.access.ownable.library.OwnershipTransferred.emit" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 32, + "end_line": 3, + "input_file": { + "filename": "autogen/starknet/event/OwnershipTransferred/8220fde17ca5479f12ae71a8036f4d354fe722f2c036da610b53511924e4ee84.cairo" + }, + "parent_location": [ + { + "end_col": 26, + "end_line": 15, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/access/ownable/library.cairo" + }, + "start_col": 6, + "start_line": 15 + }, + "While handling event:" + ], + "start_col": 1, + "start_line": 3 + } + }, + "210": { + "accessible_scopes": [ + "openzeppelin.access.ownable.library", + "openzeppelin.access.ownable.library.OwnershipTransferred", + "openzeppelin.access.ownable.library.OwnershipTransferred.emit" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 40, + "end_line": 4, + "input_file": { + "filename": "autogen/starknet/event/OwnershipTransferred/8220fde17ca5479f12ae71a8036f4d354fe722f2c036da610b53511924e4ee84.cairo" + }, + "parent_location": [ + { + "end_col": 26, + "end_line": 15, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/access/ownable/library.cairo" + }, + "start_col": 6, + "start_line": 15 + }, + "While handling event:" + ], + "start_col": 33, + "start_line": 4 + } + }, + "212": { + "accessible_scopes": [ + "openzeppelin.access.ownable.library", + "openzeppelin.access.ownable.library.OwnershipTransferred", + "openzeppelin.access.ownable.library.OwnershipTransferred.emit" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 29, + "end_line": 4, + "input_file": { + "filename": "autogen/starknet/event/OwnershipTransferred/8220fde17ca5479f12ae71a8036f4d354fe722f2c036da610b53511924e4ee84.cairo" + }, + "parent_location": [ + { + "end_col": 26, + "end_line": 15, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/access/ownable/library.cairo" + }, + "start_col": 6, + "start_line": 15 + }, + "While handling event:" + ], + "start_col": 6, + "start_line": 4 + } + }, + "213": { + "accessible_scopes": [ + "openzeppelin.access.ownable.library", + "openzeppelin.access.ownable.library.OwnershipTransferred", + "openzeppelin.access.ownable.library.OwnershipTransferred.emit" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 41, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/arg_processor/e2129a0023ce5f9e4c3de1d6fb100b2688dccff4a2ed2082db4a311f35c53e21.cairo" + }, + "parent_location": [ + { + "end_col": 40, + "end_line": 15, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/access/ownable/library.cairo" + }, + "start_col": 27, + "start_line": 15 + }, + "While handling calldata argument 'previousOwner'" + ], + "start_col": 1, + "start_line": 1 + } + }, + "214": { + "accessible_scopes": [ + "openzeppelin.access.ownable.library", + "openzeppelin.access.ownable.library.OwnershipTransferred", + "openzeppelin.access.ownable.library.OwnershipTransferred.emit" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 36, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/arg_processor/445d818b0524d35ae3e73b7abec41731d1445f0ce6866ec5a3a8a871521799a0.cairo" + }, + "parent_location": [ + { + "end_col": 56, + "end_line": 15, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/access/ownable/library.cairo" + }, + "start_col": 48, + "start_line": 15 + }, + "While handling calldata argument 'newOwner'" + ], + "start_col": 1, + "start_line": 1 + } + }, + "215": { + "accessible_scopes": [ + "openzeppelin.access.ownable.library", + "openzeppelin.access.ownable.library.OwnershipTransferred", + "openzeppelin.access.ownable.library.OwnershipTransferred.emit" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 40, + "end_line": 2, + "input_file": { + "filename": "autogen/starknet/arg_processor/445d818b0524d35ae3e73b7abec41731d1445f0ce6866ec5a3a8a871521799a0.cairo" + }, + "parent_location": [ + { + "end_col": 56, + "end_line": 15, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/access/ownable/library.cairo" + }, + "parent_location": [ + { + "end_col": 64, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/event/OwnershipTransferred/6150feec30bd48bfd0f446ed8c155a6d911a2c3fb3ec7a980733900416819259.cairo" + }, + "parent_location": [ + { + "end_col": 26, + "end_line": 15, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/access/ownable/library.cairo" + }, + "start_col": 6, + "start_line": 15 + }, + "While handling event:" + ], + "start_col": 50, + "start_line": 1 + }, + "While expanding the reference '__calldata_ptr' in:" + ], + "start_col": 48, + "start_line": 15 + }, + "While handling calldata argument 'newOwner'" + ], + "start_col": 22, + "start_line": 2 + } + }, + "217": { + "accessible_scopes": [ + "openzeppelin.access.ownable.library", + "openzeppelin.access.ownable.library.OwnershipTransferred", + "openzeppelin.access.ownable.library.OwnershipTransferred.emit" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 29, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/event/OwnershipTransferred/a7a8ae41be29ac9f4f6c3b7837c448d787ca051dd1ade98f409e54d33d112504.cairo" + }, + "parent_location": [ + { + "end_col": 26, + "end_line": 15, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/access/ownable/library.cairo" + }, + "parent_location": [ + { + "end_col": 35, + "end_line": 390, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/starknet/common/syscalls.cairo" + }, + "parent_location": [ + { + "end_col": 95, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/event/OwnershipTransferred/6150feec30bd48bfd0f446ed8c155a6d911a2c3fb3ec7a980733900416819259.cairo" + }, + "parent_location": [ + { + "end_col": 26, + "end_line": 15, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/access/ownable/library.cairo" + }, + "start_col": 6, + "start_line": 15 + }, + "While handling event:" + ], + "start_col": 1, + "start_line": 1 + }, + "While trying to retrieve the implicit argument 'syscall_ptr' in:" + ], + "start_col": 17, + "start_line": 390 + }, + "While expanding the reference 'syscall_ptr' in:" + ], + "start_col": 6, + "start_line": 15 + }, + "While handling event:" + ], + "start_col": 11, + "start_line": 1 + } + }, + "218": { + "accessible_scopes": [ + "openzeppelin.access.ownable.library", + "openzeppelin.access.ownable.library.OwnershipTransferred", + "openzeppelin.access.ownable.library.OwnershipTransferred.emit" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 22, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/event/OwnershipTransferred/6150feec30bd48bfd0f446ed8c155a6d911a2c3fb3ec7a980733900416819259.cairo" + }, + "parent_location": [ + { + "end_col": 26, + "end_line": 15, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/access/ownable/library.cairo" + }, + "start_col": 6, + "start_line": 15 + }, + "While handling event:" + ], + "start_col": 21, + "start_line": 1 + } + }, + "220": { + "accessible_scopes": [ + "openzeppelin.access.ownable.library", + "openzeppelin.access.ownable.library.OwnershipTransferred", + "openzeppelin.access.ownable.library.OwnershipTransferred.emit" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 22, + "end_line": 2, + "input_file": { + "filename": "autogen/starknet/event/OwnershipTransferred/8220fde17ca5479f12ae71a8036f4d354fe722f2c036da610b53511924e4ee84.cairo" + }, + "parent_location": [ + { + "end_col": 26, + "end_line": 15, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/access/ownable/library.cairo" + }, + "parent_location": [ + { + "end_col": 39, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/event/OwnershipTransferred/6150feec30bd48bfd0f446ed8c155a6d911a2c3fb3ec7a980733900416819259.cairo" + }, + "parent_location": [ + { + "end_col": 26, + "end_line": 15, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/access/ownable/library.cairo" + }, + "start_col": 6, + "start_line": 15 + }, + "While handling event:" + ], + "start_col": 29, + "start_line": 1 + }, + "While expanding the reference '__keys_ptr' in:" + ], + "start_col": 6, + "start_line": 15 + }, + "While handling event:" + ], + "start_col": 12, + "start_line": 2 + } + }, + "221": { + "accessible_scopes": [ + "openzeppelin.access.ownable.library", + "openzeppelin.access.ownable.library.OwnershipTransferred", + "openzeppelin.access.ownable.library.OwnershipTransferred.emit" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 77, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/event/OwnershipTransferred/6150feec30bd48bfd0f446ed8c155a6d911a2c3fb3ec7a980733900416819259.cairo" + }, + "parent_location": [ + { + "end_col": 26, + "end_line": 15, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/access/ownable/library.cairo" + }, + "start_col": 6, + "start_line": 15 + }, + "While handling event:" + ], + "start_col": 50, + "start_line": 1 + } + }, + "222": { + "accessible_scopes": [ + "openzeppelin.access.ownable.library", + "openzeppelin.access.ownable.library.OwnershipTransferred", + "openzeppelin.access.ownable.library.OwnershipTransferred.emit" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 22, + "end_line": 4, + "input_file": { + "filename": "autogen/starknet/event/OwnershipTransferred/8220fde17ca5479f12ae71a8036f4d354fe722f2c036da610b53511924e4ee84.cairo" + }, + "parent_location": [ + { + "end_col": 26, + "end_line": 15, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/access/ownable/library.cairo" + }, + "parent_location": [ + { + "end_col": 94, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/event/OwnershipTransferred/6150feec30bd48bfd0f446ed8c155a6d911a2c3fb3ec7a980733900416819259.cairo" + }, + "parent_location": [ + { + "end_col": 26, + "end_line": 15, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/access/ownable/library.cairo" + }, + "start_col": 6, + "start_line": 15 + }, + "While handling event:" + ], + "start_col": 84, + "start_line": 1 + }, + "While expanding the reference '__data_ptr' in:" + ], + "start_col": 6, + "start_line": 15 + }, + "While handling event:" + ], + "start_col": 12, + "start_line": 4 + } + }, + "223": { + "accessible_scopes": [ + "openzeppelin.access.ownable.library", + "openzeppelin.access.ownable.library.OwnershipTransferred", + "openzeppelin.access.ownable.library.OwnershipTransferred.emit" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 95, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/event/OwnershipTransferred/6150feec30bd48bfd0f446ed8c155a6d911a2c3fb3ec7a980733900416819259.cairo" + }, + "parent_location": [ + { + "end_col": 26, + "end_line": 15, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/access/ownable/library.cairo" + }, + "start_col": 6, + "start_line": 15 + }, + "While handling event:" + ], + "start_col": 1, + "start_line": 1 + } + }, + "225": { + "accessible_scopes": [ + "openzeppelin.access.ownable.library", + "openzeppelin.access.ownable.library.OwnershipTransferred", + "openzeppelin.access.ownable.library.OwnershipTransferred.emit" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 46, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/event/OwnershipTransferred/a7a8ae41be29ac9f4f6c3b7837c448d787ca051dd1ade98f409e54d33d112504.cairo" + }, + "parent_location": [ + { + "end_col": 26, + "end_line": 15, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/access/ownable/library.cairo" + }, + "parent_location": [ + { + "end_col": 46, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/event/OwnershipTransferred/a7a8ae41be29ac9f4f6c3b7837c448d787ca051dd1ade98f409e54d33d112504.cairo" + }, + "parent_location": [ + { + "end_col": 26, + "end_line": 15, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/access/ownable/library.cairo" + }, + "parent_location": [ + { + "end_col": 11, + "end_line": 2, + "input_file": { + "filename": "autogen/starknet/event/OwnershipTransferred/6150feec30bd48bfd0f446ed8c155a6d911a2c3fb3ec7a980733900416819259.cairo" + }, + "parent_location": [ + { + "end_col": 26, + "end_line": 15, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/access/ownable/library.cairo" + }, + "start_col": 6, + "start_line": 15 + }, + "While handling event:" + ], + "start_col": 1, + "start_line": 2 + }, + "While trying to retrieve the implicit argument 'range_check_ptr' in:" + ], + "start_col": 6, + "start_line": 15 + }, + "While handling event:" + ], + "start_col": 31, + "start_line": 1 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 6, + "start_line": 15 + }, + "While handling event:" + ], + "start_col": 31, + "start_line": 1 + } + }, + "226": { + "accessible_scopes": [ + "openzeppelin.access.ownable.library", + "openzeppelin.access.ownable.library.OwnershipTransferred", + "openzeppelin.access.ownable.library.OwnershipTransferred.emit" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 11, + "end_line": 2, + "input_file": { + "filename": "autogen/starknet/event/OwnershipTransferred/6150feec30bd48bfd0f446ed8c155a6d911a2c3fb3ec7a980733900416819259.cairo" + }, + "parent_location": [ + { + "end_col": 26, + "end_line": 15, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/access/ownable/library.cairo" + }, + "start_col": 6, + "start_line": 15 + }, + "While handling event:" + ], + "start_col": 1, + "start_line": 2 + } + }, + "227": { + "accessible_scopes": [ + "openzeppelin.access.ownable.library", + "openzeppelin.access.ownable.library.Ownable_owner", + "openzeppelin.access.ownable.library.Ownable_owner.addr" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 41, + "end_line": 7, + "input_file": { + "filename": "autogen/starknet/storage_var/Ownable_owner/impl.cairo" + }, + "parent_location": [ + { + "end_col": 41, + "end_line": 7, + "input_file": { + "filename": "autogen/starknet/storage_var/Ownable_owner/decl.cairo" + }, + "parent_location": [ + { + "end_col": 26, + "end_line": 9, + "input_file": { + "filename": "autogen/starknet/storage_var/Ownable_owner/impl.cairo" + }, + "start_col": 9, + "start_line": 9 + }, + "While trying to retrieve the implicit argument 'pedersen_ptr' in:" + ], + "start_col": 15, + "start_line": 7 + }, + "While expanding the reference 'pedersen_ptr' in:" + ], + "start_col": 15, + "start_line": 7 + } + }, + "228": { + "accessible_scopes": [ + "openzeppelin.access.ownable.library", + "openzeppelin.access.ownable.library.Ownable_owner", + "openzeppelin.access.ownable.library.Ownable_owner.addr" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 58, + "end_line": 7, + "input_file": { + "filename": "autogen/starknet/storage_var/Ownable_owner/impl.cairo" + }, + "parent_location": [ + { + "end_col": 58, + "end_line": 7, + "input_file": { + "filename": "autogen/starknet/storage_var/Ownable_owner/decl.cairo" + }, + "parent_location": [ + { + "end_col": 26, + "end_line": 9, + "input_file": { + "filename": "autogen/starknet/storage_var/Ownable_owner/impl.cairo" + }, + "start_col": 9, + "start_line": 9 + }, + "While trying to retrieve the implicit argument 'range_check_ptr' in:" + ], + "start_col": 43, + "start_line": 7 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 43, + "start_line": 7 + } + }, + "229": { + "accessible_scopes": [ + "openzeppelin.access.ownable.library", + "openzeppelin.access.ownable.library.Ownable_owner", + "openzeppelin.access.ownable.library.Ownable_owner.addr" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 95, + "end_line": 8, + "input_file": { + "filename": "autogen/starknet/storage_var/Ownable_owner/impl.cairo" + }, + "parent_location": [ + { + "end_col": 24, + "end_line": 9, + "input_file": { + "filename": "autogen/starknet/storage_var/Ownable_owner/impl.cairo" + }, + "start_col": 21, + "start_line": 9 + }, + "While expanding the reference 'res' in:" + ], + "start_col": 19, + "start_line": 8 + } + }, + "231": { + "accessible_scopes": [ + "openzeppelin.access.ownable.library", + "openzeppelin.access.ownable.library.Ownable_owner", + "openzeppelin.access.ownable.library.Ownable_owner.addr" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 26, + "end_line": 9, + "input_file": { + "filename": "autogen/starknet/storage_var/Ownable_owner/impl.cairo" + }, + "start_col": 9, + "start_line": 9 + } + }, + "232": { + "accessible_scopes": [ + "openzeppelin.access.ownable.library", + "openzeppelin.access.ownable.library.Ownable_owner", + "openzeppelin.access.ownable.library.Ownable_owner.read" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 61, + "end_line": 12, + "input_file": { + "filename": "autogen/starknet/storage_var/Ownable_owner/impl.cairo" + }, + "parent_location": [ + { + "end_col": 41, + "end_line": 7, + "input_file": { + "filename": "autogen/starknet/storage_var/Ownable_owner/decl.cairo" + }, + "parent_location": [ + { + "end_col": 36, + "end_line": 13, + "input_file": { + "filename": "autogen/starknet/storage_var/Ownable_owner/impl.cairo" + }, + "start_col": 30, + "start_line": 13 + }, + "While trying to retrieve the implicit argument 'pedersen_ptr' in:" + ], + "start_col": 15, + "start_line": 7 + }, + "While expanding the reference 'pedersen_ptr' in:" + ], + "start_col": 35, + "start_line": 12 + } + }, + "233": { + "accessible_scopes": [ + "openzeppelin.access.ownable.library", + "openzeppelin.access.ownable.library.Ownable_owner", + "openzeppelin.access.ownable.library.Ownable_owner.read" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 78, + "end_line": 12, + "input_file": { + "filename": "autogen/starknet/storage_var/Ownable_owner/impl.cairo" + }, + "parent_location": [ + { + "end_col": 58, + "end_line": 7, + "input_file": { + "filename": "autogen/starknet/storage_var/Ownable_owner/decl.cairo" + }, + "parent_location": [ + { + "end_col": 36, + "end_line": 13, + "input_file": { + "filename": "autogen/starknet/storage_var/Ownable_owner/impl.cairo" + }, + "start_col": 30, + "start_line": 13 + }, + "While trying to retrieve the implicit argument 'range_check_ptr' in:" + ], + "start_col": 43, + "start_line": 7 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 63, + "start_line": 12 + } + }, + "234": { + "accessible_scopes": [ + "openzeppelin.access.ownable.library", + "openzeppelin.access.ownable.library.Ownable_owner", + "openzeppelin.access.ownable.library.Ownable_owner.read" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 36, + "end_line": 13, + "input_file": { + "filename": "autogen/starknet/storage_var/Ownable_owner/impl.cairo" + }, + "start_col": 30, + "start_line": 13 + } + }, + "236": { + "accessible_scopes": [ + "openzeppelin.access.ownable.library", + "openzeppelin.access.ownable.library.Ownable_owner", + "openzeppelin.access.ownable.library.Ownable_owner.read" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 33, + "end_line": 12, + "input_file": { + "filename": "autogen/starknet/storage_var/Ownable_owner/impl.cairo" + }, + "parent_location": [ + { + "end_col": 37, + "end_line": 352, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/starknet/common/syscalls.cairo" + }, + "parent_location": [ + { + "end_col": 75, + "end_line": 14, + "input_file": { + "filename": "autogen/starknet/storage_var/Ownable_owner/impl.cairo" + }, + "start_col": 37, + "start_line": 14 + }, + "While trying to retrieve the implicit argument 'syscall_ptr' in:" + ], + "start_col": 19, + "start_line": 352 + }, + "While expanding the reference 'syscall_ptr' in:" + ], + "start_col": 15, + "start_line": 12 + } + }, + "237": { + "accessible_scopes": [ + "openzeppelin.access.ownable.library", + "openzeppelin.access.ownable.library.Ownable_owner", + "openzeppelin.access.ownable.library.Ownable_owner.read" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 26, + "end_line": 13, + "input_file": { + "filename": "autogen/starknet/storage_var/Ownable_owner/impl.cairo" + }, + "parent_location": [ + { + "end_col": 70, + "end_line": 14, + "input_file": { + "filename": "autogen/starknet/storage_var/Ownable_owner/impl.cairo" + }, + "start_col": 58, + "start_line": 14 + }, + "While expanding the reference 'storage_addr' in:" + ], + "start_col": 14, + "start_line": 13 + } + }, + "238": { + "accessible_scopes": [ + "openzeppelin.access.ownable.library", + "openzeppelin.access.ownable.library.Ownable_owner", + "openzeppelin.access.ownable.library.Ownable_owner.read" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 75, + "end_line": 14, + "input_file": { + "filename": "autogen/starknet/storage_var/Ownable_owner/impl.cairo" + }, + "start_col": 37, + "start_line": 14 + } + }, + "240": { + "accessible_scopes": [ + "openzeppelin.access.ownable.library", + "openzeppelin.access.ownable.library.Ownable_owner", + "openzeppelin.access.ownable.library.Ownable_owner.read" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 37, + "end_line": 352, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/starknet/common/syscalls.cairo" + }, + "parent_location": [ + { + "end_col": 75, + "end_line": 14, + "input_file": { + "filename": "autogen/starknet/storage_var/Ownable_owner/impl.cairo" + }, + "parent_location": [ + { + "end_col": 42, + "end_line": 16, + "input_file": { + "filename": "autogen/starknet/storage_var/Ownable_owner/impl.cairo" + }, + "start_col": 31, + "start_line": 16 + }, + "While expanding the reference 'syscall_ptr' in:" + ], + "start_col": 37, + "start_line": 14 + }, + "While trying to update the implicit return value 'syscall_ptr' in:" + ], + "start_col": 19, + "start_line": 352 + } + }, + "241": { + "accessible_scopes": [ + "openzeppelin.access.ownable.library", + "openzeppelin.access.ownable.library.Ownable_owner", + "openzeppelin.access.ownable.library.Ownable_owner.read" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 41, + "end_line": 7, + "input_file": { + "filename": "autogen/starknet/storage_var/Ownable_owner/decl.cairo" + }, + "parent_location": [ + { + "end_col": 36, + "end_line": 13, + "input_file": { + "filename": "autogen/starknet/storage_var/Ownable_owner/impl.cairo" + }, + "parent_location": [ + { + "end_col": 44, + "end_line": 17, + "input_file": { + "filename": "autogen/starknet/storage_var/Ownable_owner/impl.cairo" + }, + "start_col": 32, + "start_line": 17 + }, + "While expanding the reference 'pedersen_ptr' in:" + ], + "start_col": 30, + "start_line": 13 + }, + "While trying to update the implicit return value 'pedersen_ptr' in:" + ], + "start_col": 15, + "start_line": 7 + } + }, + "242": { + "accessible_scopes": [ + "openzeppelin.access.ownable.library", + "openzeppelin.access.ownable.library.Ownable_owner", + "openzeppelin.access.ownable.library.Ownable_owner.read" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 58, + "end_line": 7, + "input_file": { + "filename": "autogen/starknet/storage_var/Ownable_owner/decl.cairo" + }, + "parent_location": [ + { + "end_col": 36, + "end_line": 13, + "input_file": { + "filename": "autogen/starknet/storage_var/Ownable_owner/impl.cairo" + }, + "parent_location": [ + { + "end_col": 50, + "end_line": 18, + "input_file": { + "filename": "autogen/starknet/storage_var/Ownable_owner/impl.cairo" + }, + "start_col": 35, + "start_line": 18 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 30, + "start_line": 13 + }, + "While trying to update the implicit return value 'range_check_ptr' in:" + ], + "start_col": 43, + "start_line": 7 + } + }, + "243": { + "accessible_scopes": [ + "openzeppelin.access.ownable.library", + "openzeppelin.access.ownable.library.Ownable_owner", + "openzeppelin.access.ownable.library.Ownable_owner.read" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 33, + "end_line": 14, + "input_file": { + "filename": "autogen/starknet/storage_var/Ownable_owner/impl.cairo" + }, + "parent_location": [ + { + "end_col": 64, + "end_line": 19, + "input_file": { + "filename": "autogen/starknet/storage_var/Ownable_owner/impl.cairo" + }, + "start_col": 45, + "start_line": 19 + }, + "While expanding the reference '__storage_var_temp0' in:" + ], + "start_col": 14, + "start_line": 14 + } + }, + "244": { + "accessible_scopes": [ + "openzeppelin.access.ownable.library", + "openzeppelin.access.ownable.library.Ownable_owner", + "openzeppelin.access.ownable.library.Ownable_owner.read" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 55, + "end_line": 20, + "input_file": { + "filename": "autogen/starknet/storage_var/Ownable_owner/impl.cairo" + }, + "start_col": 9, + "start_line": 20 + } + }, + "245": { + "accessible_scopes": [ + "openzeppelin.access.ownable.library", + "openzeppelin.access.ownable.library.Ownable_owner", + "openzeppelin.access.ownable.library.Ownable_owner.write" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 62, + "end_line": 23, + "input_file": { + "filename": "autogen/starknet/storage_var/Ownable_owner/impl.cairo" + }, + "parent_location": [ + { + "end_col": 41, + "end_line": 7, + "input_file": { + "filename": "autogen/starknet/storage_var/Ownable_owner/decl.cairo" + }, + "parent_location": [ + { + "end_col": 36, + "end_line": 24, + "input_file": { + "filename": "autogen/starknet/storage_var/Ownable_owner/impl.cairo" + }, + "start_col": 30, + "start_line": 24 + }, + "While trying to retrieve the implicit argument 'pedersen_ptr' in:" + ], + "start_col": 15, + "start_line": 7 + }, + "While expanding the reference 'pedersen_ptr' in:" + ], + "start_col": 36, + "start_line": 23 + } + }, + "246": { + "accessible_scopes": [ + "openzeppelin.access.ownable.library", + "openzeppelin.access.ownable.library.Ownable_owner", + "openzeppelin.access.ownable.library.Ownable_owner.write" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 79, + "end_line": 23, + "input_file": { + "filename": "autogen/starknet/storage_var/Ownable_owner/impl.cairo" + }, + "parent_location": [ + { + "end_col": 58, + "end_line": 7, + "input_file": { + "filename": "autogen/starknet/storage_var/Ownable_owner/decl.cairo" + }, + "parent_location": [ + { + "end_col": 36, + "end_line": 24, + "input_file": { + "filename": "autogen/starknet/storage_var/Ownable_owner/impl.cairo" + }, + "start_col": 30, + "start_line": 24 + }, + "While trying to retrieve the implicit argument 'range_check_ptr' in:" + ], + "start_col": 43, + "start_line": 7 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 64, + "start_line": 23 + } + }, + "247": { + "accessible_scopes": [ + "openzeppelin.access.ownable.library", + "openzeppelin.access.ownable.library.Ownable_owner", + "openzeppelin.access.ownable.library.Ownable_owner.write" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 36, + "end_line": 24, + "input_file": { + "filename": "autogen/starknet/storage_var/Ownable_owner/impl.cairo" + }, + "start_col": 30, + "start_line": 24 + } + }, + "249": { + "accessible_scopes": [ + "openzeppelin.access.ownable.library", + "openzeppelin.access.ownable.library.Ownable_owner", + "openzeppelin.access.ownable.library.Ownable_owner.write" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 34, + "end_line": 23, + "input_file": { + "filename": "autogen/starknet/storage_var/Ownable_owner/impl.cairo" + }, + "parent_location": [ + { + "end_col": 38, + "end_line": 370, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/starknet/common/syscalls.cairo" + }, + "parent_location": [ + { + "end_col": 80, + "end_line": 25, + "input_file": { + "filename": "autogen/starknet/storage_var/Ownable_owner/impl.cairo" + }, + "start_col": 9, + "start_line": 25 + }, + "While trying to retrieve the implicit argument 'syscall_ptr' in:" + ], + "start_col": 20, + "start_line": 370 + }, + "While expanding the reference 'syscall_ptr' in:" + ], + "start_col": 16, + "start_line": 23 + } + }, + "250": { + "accessible_scopes": [ + "openzeppelin.access.ownable.library", + "openzeppelin.access.ownable.library.Ownable_owner", + "openzeppelin.access.ownable.library.Ownable_owner.write" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 26, + "end_line": 24, + "input_file": { + "filename": "autogen/starknet/storage_var/Ownable_owner/impl.cairo" + }, + "parent_location": [ + { + "end_col": 43, + "end_line": 25, + "input_file": { + "filename": "autogen/starknet/storage_var/Ownable_owner/impl.cairo" + }, + "start_col": 31, + "start_line": 25 + }, + "While expanding the reference 'storage_addr' in:" + ], + "start_col": 14, + "start_line": 24 + } + }, + "251": { + "accessible_scopes": [ + "openzeppelin.access.ownable.library", + "openzeppelin.access.ownable.library.Ownable_owner", + "openzeppelin.access.ownable.library.Ownable_owner.write" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 79, + "end_line": 25, + "input_file": { + "filename": "autogen/starknet/storage_var/Ownable_owner/impl.cairo" + }, + "start_col": 55, + "start_line": 25 + } + }, + "252": { + "accessible_scopes": [ + "openzeppelin.access.ownable.library", + "openzeppelin.access.ownable.library.Ownable_owner", + "openzeppelin.access.ownable.library.Ownable_owner.write" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 80, + "end_line": 25, + "input_file": { + "filename": "autogen/starknet/storage_var/Ownable_owner/impl.cairo" + }, + "start_col": 9, + "start_line": 25 + } + }, + "254": { + "accessible_scopes": [ + "openzeppelin.access.ownable.library", + "openzeppelin.access.ownable.library.Ownable_owner", + "openzeppelin.access.ownable.library.Ownable_owner.write" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 41, + "end_line": 7, + "input_file": { + "filename": "autogen/starknet/storage_var/Ownable_owner/decl.cairo" + }, + "parent_location": [ + { + "end_col": 36, + "end_line": 24, + "input_file": { + "filename": "autogen/starknet/storage_var/Ownable_owner/impl.cairo" + }, + "parent_location": [ + { + "end_col": 62, + "end_line": 19, + "input_file": { + "filename": "autogen/starknet/storage_var/Ownable_owner/decl.cairo" + }, + "parent_location": [ + { + "end_col": 19, + "end_line": 26, + "input_file": { + "filename": "autogen/starknet/storage_var/Ownable_owner/impl.cairo" + }, + "start_col": 9, + "start_line": 26 + }, + "While trying to retrieve the implicit argument 'pedersen_ptr' in:" + ], + "start_col": 36, + "start_line": 19 + }, + "While expanding the reference 'pedersen_ptr' in:" + ], + "start_col": 30, + "start_line": 24 + }, + "While trying to update the implicit return value 'pedersen_ptr' in:" + ], + "start_col": 15, + "start_line": 7 + } + }, + "255": { + "accessible_scopes": [ + "openzeppelin.access.ownable.library", + "openzeppelin.access.ownable.library.Ownable_owner", + "openzeppelin.access.ownable.library.Ownable_owner.write" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 58, + "end_line": 7, + "input_file": { + "filename": "autogen/starknet/storage_var/Ownable_owner/decl.cairo" + }, + "parent_location": [ + { + "end_col": 36, + "end_line": 24, + "input_file": { + "filename": "autogen/starknet/storage_var/Ownable_owner/impl.cairo" + }, + "parent_location": [ + { + "end_col": 79, + "end_line": 19, + "input_file": { + "filename": "autogen/starknet/storage_var/Ownable_owner/decl.cairo" + }, + "parent_location": [ + { + "end_col": 19, + "end_line": 26, + "input_file": { + "filename": "autogen/starknet/storage_var/Ownable_owner/impl.cairo" + }, + "start_col": 9, + "start_line": 26 + }, + "While trying to retrieve the implicit argument 'range_check_ptr' in:" + ], + "start_col": 64, + "start_line": 19 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 30, + "start_line": 24 + }, + "While trying to update the implicit return value 'range_check_ptr' in:" + ], + "start_col": 43, + "start_line": 7 + } + }, + "256": { + "accessible_scopes": [ + "openzeppelin.access.ownable.library", + "openzeppelin.access.ownable.library.Ownable_owner", + "openzeppelin.access.ownable.library.Ownable_owner.write" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 19, + "end_line": 26, + "input_file": { + "filename": "autogen/starknet/storage_var/Ownable_owner/impl.cairo" + }, + "start_col": 9, + "start_line": 26 + } + }, + "257": { + "accessible_scopes": [ + "openzeppelin.access.ownable.library", + "openzeppelin.access.ownable.library.Ownable", + "openzeppelin.access.ownable.library.Ownable.initializer" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 40, + "end_line": 31, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/access/ownable/library.cairo" + }, + "parent_location": [ + { + "end_col": 48, + "end_line": 81, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/access/ownable/library.cairo" + }, + "parent_location": [ + { + "end_col": 35, + "end_line": 32, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/access/ownable/library.cairo" + }, + "start_col": 9, + "start_line": 32 + }, + "While trying to retrieve the implicit argument 'syscall_ptr' in:" + ], + "start_col": 30, + "start_line": 81 + }, + "While expanding the reference 'syscall_ptr' in:" + ], + "start_col": 22, + "start_line": 31 + } + }, + "258": { + "accessible_scopes": [ + "openzeppelin.access.ownable.library", + "openzeppelin.access.ownable.library.Ownable", + "openzeppelin.access.ownable.library.Ownable.initializer" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 68, + "end_line": 31, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/access/ownable/library.cairo" + }, + "parent_location": [ + { + "end_col": 76, + "end_line": 81, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/access/ownable/library.cairo" + }, + "parent_location": [ + { + "end_col": 35, + "end_line": 32, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/access/ownable/library.cairo" + }, + "start_col": 9, + "start_line": 32 + }, + "While trying to retrieve the implicit argument 'pedersen_ptr' in:" + ], + "start_col": 50, + "start_line": 81 + }, + "While expanding the reference 'pedersen_ptr' in:" + ], + "start_col": 42, + "start_line": 31 + } + }, + "259": { + "accessible_scopes": [ + "openzeppelin.access.ownable.library", + "openzeppelin.access.ownable.library.Ownable", + "openzeppelin.access.ownable.library.Ownable.initializer" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 85, + "end_line": 31, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/access/ownable/library.cairo" + }, + "parent_location": [ + { + "end_col": 93, + "end_line": 81, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/access/ownable/library.cairo" + }, + "parent_location": [ + { + "end_col": 35, + "end_line": 32, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/access/ownable/library.cairo" + }, + "start_col": 9, + "start_line": 32 + }, + "While trying to retrieve the implicit argument 'range_check_ptr' in:" + ], + "start_col": 78, + "start_line": 81 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 70, + "start_line": 31 + } + }, + "260": { + "accessible_scopes": [ + "openzeppelin.access.ownable.library", + "openzeppelin.access.ownable.library.Ownable", + "openzeppelin.access.ownable.library.Ownable.initializer" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 98, + "end_line": 31, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/access/ownable/library.cairo" + }, + "parent_location": [ + { + "end_col": 34, + "end_line": 32, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/access/ownable/library.cairo" + }, + "start_col": 29, + "start_line": 32 + }, + "While expanding the reference 'owner' in:" + ], + "start_col": 87, + "start_line": 31 + } + }, + "261": { + "accessible_scopes": [ + "openzeppelin.access.ownable.library", + "openzeppelin.access.ownable.library.Ownable", + "openzeppelin.access.ownable.library.Ownable.initializer" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 35, + "end_line": 32, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/access/ownable/library.cairo" + }, + "start_col": 9, + "start_line": 32 + } + }, + "263": { + "accessible_scopes": [ + "openzeppelin.access.ownable.library", + "openzeppelin.access.ownable.library.Ownable", + "openzeppelin.access.ownable.library.Ownable.initializer" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 19, + "end_line": 33, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/access/ownable/library.cairo" + }, + "start_col": 9, + "start_line": 33 + } + }, + "264": { + "accessible_scopes": [ + "openzeppelin.access.ownable.library", + "openzeppelin.access.ownable.library.Ownable", + "openzeppelin.access.ownable.library.Ownable.assert_only_owner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 46, + "end_line": 40, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/access/ownable/library.cairo" + }, + "parent_location": [ + { + "end_col": 34, + "end_line": 56, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/access/ownable/library.cairo" + }, + "parent_location": [ + { + "end_col": 38, + "end_line": 41, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/access/ownable/library.cairo" + }, + "start_col": 23, + "start_line": 41 + }, + "While trying to retrieve the implicit argument 'syscall_ptr' in:" + ], + "start_col": 16, + "start_line": 56 + }, + "While expanding the reference 'syscall_ptr' in:" + ], + "start_col": 28, + "start_line": 40 + } + }, + "265": { + "accessible_scopes": [ + "openzeppelin.access.ownable.library", + "openzeppelin.access.ownable.library.Ownable", + "openzeppelin.access.ownable.library.Ownable.assert_only_owner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 74, + "end_line": 40, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/access/ownable/library.cairo" + }, + "parent_location": [ + { + "end_col": 62, + "end_line": 56, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/access/ownable/library.cairo" + }, + "parent_location": [ + { + "end_col": 38, + "end_line": 41, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/access/ownable/library.cairo" + }, + "start_col": 23, + "start_line": 41 + }, + "While trying to retrieve the implicit argument 'pedersen_ptr' in:" + ], + "start_col": 36, + "start_line": 56 + }, + "While expanding the reference 'pedersen_ptr' in:" + ], + "start_col": 48, + "start_line": 40 + } + }, + "266": { + "accessible_scopes": [ + "openzeppelin.access.ownable.library", + "openzeppelin.access.ownable.library.Ownable", + "openzeppelin.access.ownable.library.Ownable.assert_only_owner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 91, + "end_line": 40, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/access/ownable/library.cairo" + }, + "parent_location": [ + { + "end_col": 79, + "end_line": 56, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/access/ownable/library.cairo" + }, + "parent_location": [ + { + "end_col": 38, + "end_line": 41, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/access/ownable/library.cairo" + }, + "start_col": 23, + "start_line": 41 + }, + "While trying to retrieve the implicit argument 'range_check_ptr' in:" + ], + "start_col": 64, + "start_line": 56 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 76, + "start_line": 40 + } + }, + "267": { + "accessible_scopes": [ + "openzeppelin.access.ownable.library", + "openzeppelin.access.ownable.library.Ownable", + "openzeppelin.access.ownable.library.Ownable.assert_only_owner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 38, + "end_line": 41, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/access/ownable/library.cairo" + }, + "start_col": 23, + "start_line": 41 + } + }, + "269": { + "accessible_scopes": [ + "openzeppelin.access.ownable.library", + "openzeppelin.access.ownable.library.Ownable", + "openzeppelin.access.ownable.library.Ownable.assert_only_owner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 34, + "end_line": 56, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/access/ownable/library.cairo" + }, + "parent_location": [ + { + "end_col": 38, + "end_line": 41, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/access/ownable/library.cairo" + }, + "parent_location": [ + { + "end_col": 43, + "end_line": 200, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/starknet/common/syscalls.cairo" + }, + "parent_location": [ + { + "end_col": 44, + "end_line": 42, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/access/ownable/library.cairo" + }, + "start_col": 24, + "start_line": 42 + }, + "While trying to retrieve the implicit argument 'syscall_ptr' in:" + ], + "start_col": 25, + "start_line": 200 + }, + "While expanding the reference 'syscall_ptr' in:" + ], + "start_col": 23, + "start_line": 41 + }, + "While trying to update the implicit return value 'syscall_ptr' in:" + ], + "start_col": 16, + "start_line": 56 + } + }, + "270": { + "accessible_scopes": [ + "openzeppelin.access.ownable.library", + "openzeppelin.access.ownable.library.Ownable", + "openzeppelin.access.ownable.library.Ownable.assert_only_owner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 44, + "end_line": 42, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/access/ownable/library.cairo" + }, + "start_col": 24, + "start_line": 42 + } + }, + "272": { + "accessible_scopes": [ + "openzeppelin.access.ownable.library", + "openzeppelin.access.ownable.library.Ownable", + "openzeppelin.access.ownable.library.Ownable.assert_only_owner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 36, + "end_line": 44, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/access/ownable/library.cairo" + }, + "start_col": 13, + "start_line": 44 + } + }, + "274": { + "accessible_scopes": [ + "openzeppelin.access.ownable.library", + "openzeppelin.access.ownable.library.Ownable", + "openzeppelin.access.ownable.library.Ownable.assert_only_owner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 35, + "end_line": 47, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/access/ownable/library.cairo" + }, + "start_col": 13, + "start_line": 47 + } + }, + "275": { + "accessible_scopes": [ + "openzeppelin.access.ownable.library", + "openzeppelin.access.ownable.library.Ownable", + "openzeppelin.access.ownable.library.Ownable.assert_only_owner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 43, + "end_line": 200, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/starknet/common/syscalls.cairo" + }, + "parent_location": [ + { + "end_col": 44, + "end_line": 42, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/access/ownable/library.cairo" + }, + "parent_location": [ + { + "end_col": 46, + "end_line": 40, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/access/ownable/library.cairo" + }, + "parent_location": [ + { + "end_col": 19, + "end_line": 49, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/access/ownable/library.cairo" + }, + "start_col": 9, + "start_line": 49 + }, + "While trying to retrieve the implicit argument 'syscall_ptr' in:" + ], + "start_col": 28, + "start_line": 40 + }, + "While expanding the reference 'syscall_ptr' in:" + ], + "start_col": 24, + "start_line": 42 + }, + "While trying to update the implicit return value 'syscall_ptr' in:" + ], + "start_col": 25, + "start_line": 200 + } + }, + "276": { + "accessible_scopes": [ + "openzeppelin.access.ownable.library", + "openzeppelin.access.ownable.library.Ownable", + "openzeppelin.access.ownable.library.Ownable.assert_only_owner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 62, + "end_line": 56, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/access/ownable/library.cairo" + }, + "parent_location": [ + { + "end_col": 38, + "end_line": 41, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/access/ownable/library.cairo" + }, + "parent_location": [ + { + "end_col": 74, + "end_line": 40, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/access/ownable/library.cairo" + }, + "parent_location": [ + { + "end_col": 19, + "end_line": 49, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/access/ownable/library.cairo" + }, + "start_col": 9, + "start_line": 49 + }, + "While trying to retrieve the implicit argument 'pedersen_ptr' in:" + ], + "start_col": 48, + "start_line": 40 + }, + "While expanding the reference 'pedersen_ptr' in:" + ], + "start_col": 23, + "start_line": 41 + }, + "While trying to update the implicit return value 'pedersen_ptr' in:" + ], + "start_col": 36, + "start_line": 56 + } + }, + "277": { + "accessible_scopes": [ + "openzeppelin.access.ownable.library", + "openzeppelin.access.ownable.library.Ownable", + "openzeppelin.access.ownable.library.Ownable.assert_only_owner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 79, + "end_line": 56, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/access/ownable/library.cairo" + }, + "parent_location": [ + { + "end_col": 38, + "end_line": 41, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/access/ownable/library.cairo" + }, + "parent_location": [ + { + "end_col": 91, + "end_line": 40, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/access/ownable/library.cairo" + }, + "parent_location": [ + { + "end_col": 19, + "end_line": 49, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/access/ownable/library.cairo" + }, + "start_col": 9, + "start_line": 49 + }, + "While trying to retrieve the implicit argument 'range_check_ptr' in:" + ], + "start_col": 76, + "start_line": 40 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 23, + "start_line": 41 + }, + "While trying to update the implicit return value 'range_check_ptr' in:" + ], + "start_col": 64, + "start_line": 56 + } + }, + "278": { + "accessible_scopes": [ + "openzeppelin.access.ownable.library", + "openzeppelin.access.ownable.library.Ownable", + "openzeppelin.access.ownable.library.Ownable.assert_only_owner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 19, + "end_line": 49, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/access/ownable/library.cairo" + }, + "start_col": 9, + "start_line": 49 + } + }, + "279": { + "accessible_scopes": [ + "openzeppelin.access.ownable.library", + "openzeppelin.access.ownable.library.Ownable", + "openzeppelin.access.ownable.library.Ownable.owner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 34, + "end_line": 56, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/access/ownable/library.cairo" + }, + "parent_location": [ + { + "end_col": 33, + "end_line": 13, + "input_file": { + "filename": "autogen/starknet/storage_var/Ownable_owner/decl.cairo" + }, + "parent_location": [ + { + "end_col": 36, + "end_line": 57, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/access/ownable/library.cairo" + }, + "start_col": 16, + "start_line": 57 + }, + "While trying to retrieve the implicit argument 'syscall_ptr' in:" + ], + "start_col": 15, + "start_line": 13 + }, + "While expanding the reference 'syscall_ptr' in:" + ], + "start_col": 16, + "start_line": 56 + } + }, + "280": { + "accessible_scopes": [ + "openzeppelin.access.ownable.library", + "openzeppelin.access.ownable.library.Ownable", + "openzeppelin.access.ownable.library.Ownable.owner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 62, + "end_line": 56, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/access/ownable/library.cairo" + }, + "parent_location": [ + { + "end_col": 61, + "end_line": 13, + "input_file": { + "filename": "autogen/starknet/storage_var/Ownable_owner/decl.cairo" + }, + "parent_location": [ + { + "end_col": 36, + "end_line": 57, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/access/ownable/library.cairo" + }, + "start_col": 16, + "start_line": 57 + }, + "While trying to retrieve the implicit argument 'pedersen_ptr' in:" + ], + "start_col": 35, + "start_line": 13 + }, + "While expanding the reference 'pedersen_ptr' in:" + ], + "start_col": 36, + "start_line": 56 + } + }, + "281": { + "accessible_scopes": [ + "openzeppelin.access.ownable.library", + "openzeppelin.access.ownable.library.Ownable", + "openzeppelin.access.ownable.library.Ownable.owner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 79, + "end_line": 56, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/access/ownable/library.cairo" + }, + "parent_location": [ + { + "end_col": 78, + "end_line": 13, + "input_file": { + "filename": "autogen/starknet/storage_var/Ownable_owner/decl.cairo" + }, + "parent_location": [ + { + "end_col": 36, + "end_line": 57, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/access/ownable/library.cairo" + }, + "start_col": 16, + "start_line": 57 + }, + "While trying to retrieve the implicit argument 'range_check_ptr' in:" + ], + "start_col": 63, + "start_line": 13 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 64, + "start_line": 56 + } + }, + "282": { + "accessible_scopes": [ + "openzeppelin.access.ownable.library", + "openzeppelin.access.ownable.library.Ownable", + "openzeppelin.access.ownable.library.Ownable.owner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 36, + "end_line": 57, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/access/ownable/library.cairo" + }, + "start_col": 16, + "start_line": 57 + } + }, + "284": { + "accessible_scopes": [ + "openzeppelin.access.ownable.library", + "openzeppelin.access.ownable.library.Ownable", + "openzeppelin.access.ownable.library.Ownable.owner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 37, + "end_line": 57, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/access/ownable/library.cairo" + }, + "start_col": 9, + "start_line": 57 + } + }, + "285": { + "accessible_scopes": [ + "openzeppelin.access.ownable.library", + "openzeppelin.access.ownable.library.Ownable", + "openzeppelin.access.ownable.library.Ownable._transfer_ownership" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 48, + "end_line": 81, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/access/ownable/library.cairo" + }, + "parent_location": [ + { + "end_col": 34, + "end_line": 56, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/access/ownable/library.cairo" + }, + "parent_location": [ + { + "end_col": 53, + "end_line": 84, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/access/ownable/library.cairo" + }, + "start_col": 38, + "start_line": 84 + }, + "While trying to retrieve the implicit argument 'syscall_ptr' in:" + ], + "start_col": 16, + "start_line": 56 + }, + "While expanding the reference 'syscall_ptr' in:" + ], + "start_col": 30, + "start_line": 81 + } + }, + "286": { + "accessible_scopes": [ + "openzeppelin.access.ownable.library", + "openzeppelin.access.ownable.library.Ownable", + "openzeppelin.access.ownable.library.Ownable._transfer_ownership" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 76, + "end_line": 81, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/access/ownable/library.cairo" + }, + "parent_location": [ + { + "end_col": 62, + "end_line": 56, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/access/ownable/library.cairo" + }, + "parent_location": [ + { + "end_col": 53, + "end_line": 84, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/access/ownable/library.cairo" + }, + "start_col": 38, + "start_line": 84 + }, + "While trying to retrieve the implicit argument 'pedersen_ptr' in:" + ], + "start_col": 36, + "start_line": 56 + }, + "While expanding the reference 'pedersen_ptr' in:" + ], + "start_col": 50, + "start_line": 81 + } + }, + "287": { + "accessible_scopes": [ + "openzeppelin.access.ownable.library", + "openzeppelin.access.ownable.library.Ownable", + "openzeppelin.access.ownable.library.Ownable._transfer_ownership" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 93, + "end_line": 81, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/access/ownable/library.cairo" + }, + "parent_location": [ + { + "end_col": 79, + "end_line": 56, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/access/ownable/library.cairo" + }, + "parent_location": [ + { + "end_col": 53, + "end_line": 84, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/access/ownable/library.cairo" + }, + "start_col": 38, + "start_line": 84 + }, + "While trying to retrieve the implicit argument 'range_check_ptr' in:" + ], + "start_col": 64, + "start_line": 56 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 78, + "start_line": 81 + } + }, + "288": { + "accessible_scopes": [ + "openzeppelin.access.ownable.library", + "openzeppelin.access.ownable.library.Ownable", + "openzeppelin.access.ownable.library.Ownable._transfer_ownership" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 53, + "end_line": 84, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/access/ownable/library.cairo" + }, + "start_col": 38, + "start_line": 84 + } + }, + "290": { + "accessible_scopes": [ + "openzeppelin.access.ownable.library", + "openzeppelin.access.ownable.library.Ownable", + "openzeppelin.access.ownable.library.Ownable._transfer_ownership" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 34, + "end_line": 56, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/access/ownable/library.cairo" + }, + "parent_location": [ + { + "end_col": 53, + "end_line": 84, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/access/ownable/library.cairo" + }, + "parent_location": [ + { + "end_col": 34, + "end_line": 19, + "input_file": { + "filename": "autogen/starknet/storage_var/Ownable_owner/decl.cairo" + }, + "parent_location": [ + { + "end_col": 39, + "end_line": 85, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/access/ownable/library.cairo" + }, + "start_col": 9, + "start_line": 85 + }, + "While trying to retrieve the implicit argument 'syscall_ptr' in:" + ], + "start_col": 16, + "start_line": 19 + }, + "While expanding the reference 'syscall_ptr' in:" + ], + "start_col": 38, + "start_line": 84 + }, + "While trying to update the implicit return value 'syscall_ptr' in:" + ], + "start_col": 16, + "start_line": 56 + } + }, + "291": { + "accessible_scopes": [ + "openzeppelin.access.ownable.library", + "openzeppelin.access.ownable.library.Ownable", + "openzeppelin.access.ownable.library.Ownable._transfer_ownership" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 62, + "end_line": 56, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/access/ownable/library.cairo" + }, + "parent_location": [ + { + "end_col": 53, + "end_line": 84, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/access/ownable/library.cairo" + }, + "parent_location": [ + { + "end_col": 62, + "end_line": 19, + "input_file": { + "filename": "autogen/starknet/storage_var/Ownable_owner/decl.cairo" + }, + "parent_location": [ + { + "end_col": 39, + "end_line": 85, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/access/ownable/library.cairo" + }, + "start_col": 9, + "start_line": 85 + }, + "While trying to retrieve the implicit argument 'pedersen_ptr' in:" + ], + "start_col": 36, + "start_line": 19 + }, + "While expanding the reference 'pedersen_ptr' in:" + ], + "start_col": 38, + "start_line": 84 + }, + "While trying to update the implicit return value 'pedersen_ptr' in:" + ], + "start_col": 36, + "start_line": 56 + } + }, + "292": { + "accessible_scopes": [ + "openzeppelin.access.ownable.library", + "openzeppelin.access.ownable.library.Ownable", + "openzeppelin.access.ownable.library.Ownable._transfer_ownership" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 79, + "end_line": 56, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/access/ownable/library.cairo" + }, + "parent_location": [ + { + "end_col": 53, + "end_line": 84, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/access/ownable/library.cairo" + }, + "parent_location": [ + { + "end_col": 79, + "end_line": 19, + "input_file": { + "filename": "autogen/starknet/storage_var/Ownable_owner/decl.cairo" + }, + "parent_location": [ + { + "end_col": 39, + "end_line": 85, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/access/ownable/library.cairo" + }, + "start_col": 9, + "start_line": 85 + }, + "While trying to retrieve the implicit argument 'range_check_ptr' in:" + ], + "start_col": 64, + "start_line": 19 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 38, + "start_line": 84 + }, + "While trying to update the implicit return value 'range_check_ptr' in:" + ], + "start_col": 64, + "start_line": 56 + } + }, + "293": { + "accessible_scopes": [ + "openzeppelin.access.ownable.library", + "openzeppelin.access.ownable.library.Ownable", + "openzeppelin.access.ownable.library.Ownable._transfer_ownership" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 24, + "end_line": 82, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/access/ownable/library.cairo" + }, + "parent_location": [ + { + "end_col": 38, + "end_line": 85, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/access/ownable/library.cairo" + }, + "start_col": 29, + "start_line": 85 + }, + "While expanding the reference 'new_owner' in:" + ], + "start_col": 9, + "start_line": 82 + } + }, + "294": { + "accessible_scopes": [ + "openzeppelin.access.ownable.library", + "openzeppelin.access.ownable.library.Ownable", + "openzeppelin.access.ownable.library.Ownable._transfer_ownership" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 39, + "end_line": 85, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/access/ownable/library.cairo" + }, + "start_col": 9, + "start_line": 85 + } + }, + "296": { + "accessible_scopes": [ + "openzeppelin.access.ownable.library", + "openzeppelin.access.ownable.library.Ownable", + "openzeppelin.access.ownable.library.Ownable._transfer_ownership" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 34, + "end_line": 19, + "input_file": { + "filename": "autogen/starknet/storage_var/Ownable_owner/decl.cairo" + }, + "parent_location": [ + { + "end_col": 39, + "end_line": 85, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/access/ownable/library.cairo" + }, + "parent_location": [ + { + "end_col": 29, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/event/OwnershipTransferred/a7a8ae41be29ac9f4f6c3b7837c448d787ca051dd1ade98f409e54d33d112504.cairo" + }, + "parent_location": [ + { + "end_col": 26, + "end_line": 15, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/access/ownable/library.cairo" + }, + "parent_location": [ + { + "end_col": 61, + "end_line": 86, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/access/ownable/library.cairo" + }, + "start_col": 9, + "start_line": 86 + }, + "While trying to retrieve the implicit argument 'syscall_ptr' in:" + ], + "start_col": 6, + "start_line": 15 + }, + "While handling event:" + ], + "start_col": 11, + "start_line": 1 + }, + "While expanding the reference 'syscall_ptr' in:" + ], + "start_col": 9, + "start_line": 85 + }, + "While trying to update the implicit return value 'syscall_ptr' in:" + ], + "start_col": 16, + "start_line": 19 + } + }, + "297": { + "accessible_scopes": [ + "openzeppelin.access.ownable.library", + "openzeppelin.access.ownable.library.Ownable", + "openzeppelin.access.ownable.library.Ownable._transfer_ownership" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 79, + "end_line": 19, + "input_file": { + "filename": "autogen/starknet/storage_var/Ownable_owner/decl.cairo" + }, + "parent_location": [ + { + "end_col": 39, + "end_line": 85, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/access/ownable/library.cairo" + }, + "parent_location": [ + { + "end_col": 46, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/event/OwnershipTransferred/a7a8ae41be29ac9f4f6c3b7837c448d787ca051dd1ade98f409e54d33d112504.cairo" + }, + "parent_location": [ + { + "end_col": 26, + "end_line": 15, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/access/ownable/library.cairo" + }, + "parent_location": [ + { + "end_col": 61, + "end_line": 86, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/access/ownable/library.cairo" + }, + "start_col": 9, + "start_line": 86 + }, + "While trying to retrieve the implicit argument 'range_check_ptr' in:" + ], + "start_col": 6, + "start_line": 15 + }, + "While handling event:" + ], + "start_col": 31, + "start_line": 1 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 9, + "start_line": 85 + }, + "While trying to update the implicit return value 'range_check_ptr' in:" + ], + "start_col": 64, + "start_line": 19 + } + }, + "298": { + "accessible_scopes": [ + "openzeppelin.access.ownable.library", + "openzeppelin.access.ownable.library.Ownable", + "openzeppelin.access.ownable.library.Ownable._transfer_ownership" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 34, + "end_line": 84, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/access/ownable/library.cairo" + }, + "parent_location": [ + { + "end_col": 49, + "end_line": 86, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/access/ownable/library.cairo" + }, + "start_col": 35, + "start_line": 86 + }, + "While expanding the reference 'previous_owner' in:" + ], + "start_col": 14, + "start_line": 84 + } + }, + "299": { + "accessible_scopes": [ + "openzeppelin.access.ownable.library", + "openzeppelin.access.ownable.library.Ownable", + "openzeppelin.access.ownable.library.Ownable._transfer_ownership" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 24, + "end_line": 82, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/access/ownable/library.cairo" + }, + "parent_location": [ + { + "end_col": 60, + "end_line": 86, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/access/ownable/library.cairo" + }, + "start_col": 51, + "start_line": 86 + }, + "While expanding the reference 'new_owner' in:" + ], + "start_col": 9, + "start_line": 82 + } + }, + "300": { + "accessible_scopes": [ + "openzeppelin.access.ownable.library", + "openzeppelin.access.ownable.library.Ownable", + "openzeppelin.access.ownable.library.Ownable._transfer_ownership" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 61, + "end_line": 86, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/access/ownable/library.cairo" + }, + "start_col": 9, + "start_line": 86 + } + }, + "302": { + "accessible_scopes": [ + "openzeppelin.access.ownable.library", + "openzeppelin.access.ownable.library.Ownable", + "openzeppelin.access.ownable.library.Ownable._transfer_ownership" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 29, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/event/OwnershipTransferred/a7a8ae41be29ac9f4f6c3b7837c448d787ca051dd1ade98f409e54d33d112504.cairo" + }, + "parent_location": [ + { + "end_col": 26, + "end_line": 15, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/access/ownable/library.cairo" + }, + "parent_location": [ + { + "end_col": 61, + "end_line": 86, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/access/ownable/library.cairo" + }, + "parent_location": [ + { + "end_col": 48, + "end_line": 81, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/access/ownable/library.cairo" + }, + "parent_location": [ + { + "end_col": 19, + "end_line": 87, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/access/ownable/library.cairo" + }, + "start_col": 9, + "start_line": 87 + }, + "While trying to retrieve the implicit argument 'syscall_ptr' in:" + ], + "start_col": 30, + "start_line": 81 + }, + "While expanding the reference 'syscall_ptr' in:" + ], + "start_col": 9, + "start_line": 86 + }, + "While trying to update the implicit return value 'syscall_ptr' in:" + ], + "start_col": 6, + "start_line": 15 + }, + "While handling event:" + ], + "start_col": 11, + "start_line": 1 + } + }, + "303": { + "accessible_scopes": [ + "openzeppelin.access.ownable.library", + "openzeppelin.access.ownable.library.Ownable", + "openzeppelin.access.ownable.library.Ownable._transfer_ownership" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 62, + "end_line": 19, + "input_file": { + "filename": "autogen/starknet/storage_var/Ownable_owner/decl.cairo" + }, + "parent_location": [ + { + "end_col": 39, + "end_line": 85, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/access/ownable/library.cairo" + }, + "parent_location": [ + { + "end_col": 76, + "end_line": 81, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/access/ownable/library.cairo" + }, + "parent_location": [ + { + "end_col": 19, + "end_line": 87, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/access/ownable/library.cairo" + }, + "start_col": 9, + "start_line": 87 + }, + "While trying to retrieve the implicit argument 'pedersen_ptr' in:" + ], + "start_col": 50, + "start_line": 81 + }, + "While expanding the reference 'pedersen_ptr' in:" + ], + "start_col": 9, + "start_line": 85 + }, + "While trying to update the implicit return value 'pedersen_ptr' in:" + ], + "start_col": 36, + "start_line": 19 + } + }, + "304": { + "accessible_scopes": [ + "openzeppelin.access.ownable.library", + "openzeppelin.access.ownable.library.Ownable", + "openzeppelin.access.ownable.library.Ownable._transfer_ownership" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 46, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/event/OwnershipTransferred/a7a8ae41be29ac9f4f6c3b7837c448d787ca051dd1ade98f409e54d33d112504.cairo" + }, + "parent_location": [ + { + "end_col": 26, + "end_line": 15, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/access/ownable/library.cairo" + }, + "parent_location": [ + { + "end_col": 61, + "end_line": 86, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/access/ownable/library.cairo" + }, + "parent_location": [ + { + "end_col": 93, + "end_line": 81, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/access/ownable/library.cairo" + }, + "parent_location": [ + { + "end_col": 19, + "end_line": 87, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/access/ownable/library.cairo" + }, + "start_col": 9, + "start_line": 87 + }, + "While trying to retrieve the implicit argument 'range_check_ptr' in:" + ], + "start_col": 78, + "start_line": 81 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 9, + "start_line": 86 + }, + "While trying to update the implicit return value 'range_check_ptr' in:" + ], + "start_col": 6, + "start_line": 15 + }, + "While handling event:" + ], + "start_col": 31, + "start_line": 1 + } + }, + "305": { + "accessible_scopes": [ + "openzeppelin.access.ownable.library", + "openzeppelin.access.ownable.library.Ownable", + "openzeppelin.access.ownable.library.Ownable._transfer_ownership" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 19, + "end_line": 87, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/access/ownable/library.cairo" + }, + "start_col": 9, + "start_line": 87 + } + }, + "306": { + "accessible_scopes": [ + "starkware.cairo.common.math_cmp", + "starkware.cairo.common.math_cmp.is_not_zero" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 7, + "end_line": 8, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/math_cmp.cairo" + }, + "start_col": 5, + "start_line": 8 + } + }, + "308": { + "accessible_scopes": [ + "starkware.cairo.common.math_cmp", + "starkware.cairo.common.math_cmp.is_not_zero" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 17, + "end_line": 9, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/math_cmp.cairo" + }, + "start_col": 16, + "start_line": 9 + } + }, + "310": { + "accessible_scopes": [ + "starkware.cairo.common.math_cmp", + "starkware.cairo.common.math_cmp.is_not_zero" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 18, + "end_line": 9, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/math_cmp.cairo" + }, + "start_col": 9, + "start_line": 9 + } + }, + "311": { + "accessible_scopes": [ + "starkware.cairo.common.math_cmp", + "starkware.cairo.common.math_cmp.is_not_zero" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 13, + "end_line": 12, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/math_cmp.cairo" + }, + "start_col": 12, + "start_line": 12 + } + }, + "313": { + "accessible_scopes": [ + "starkware.cairo.common.math_cmp", + "starkware.cairo.common.math_cmp.is_not_zero" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 14, + "end_line": 12, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/math_cmp.cairo" + }, + "start_col": 5, + "start_line": 12 + } + }, + "314": { + "accessible_scopes": [ + "starkware.cairo.common.math_cmp", + "starkware.cairo.common.math_cmp.is_le_felt" + ], + "flow_tracking_data": null, + "hints": [ + { + "location": { + "end_col": 70, + "end_line": 80, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/math_cmp.cairo" + }, + "start_col": 5, + "start_line": 80 + }, + "n_prefix_newlines": 0 + } + ], + "inst": { + "end_col": 34, + "end_line": 81, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/math_cmp.cairo" + }, + "start_col": 5, + "start_line": 81 + } + }, + "316": { + "accessible_scopes": [ + "starkware.cairo.common.math_cmp", + "starkware.cairo.common.math_cmp.is_le_felt" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 12, + "end_line": 82, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/math_cmp.cairo" + }, + "start_col": 5, + "start_line": 82 + } + }, + "318": { + "accessible_scopes": [ + "starkware.cairo.common.math_cmp", + "starkware.cairo.common.math_cmp.is_le_felt" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 32, + "end_line": 79, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/math_cmp.cairo" + }, + "parent_location": [ + { + "end_col": 36, + "end_line": 154, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/math.cairo" + }, + "parent_location": [ + { + "end_col": 25, + "end_line": 83, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/math_cmp.cairo" + }, + "start_col": 5, + "start_line": 83 + }, + "While trying to retrieve the implicit argument 'range_check_ptr' in:" + ], + "start_col": 21, + "start_line": 154 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 17, + "start_line": 79 + } + }, + "319": { + "accessible_scopes": [ + "starkware.cairo.common.math_cmp", + "starkware.cairo.common.math_cmp.is_le_felt" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 35, + "end_line": 79, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/math_cmp.cairo" + }, + "parent_location": [ + { + "end_col": 21, + "end_line": 83, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/math_cmp.cairo" + }, + "start_col": 20, + "start_line": 83 + }, + "While expanding the reference 'a' in:" + ], + "start_col": 34, + "start_line": 79 + } + }, + "320": { + "accessible_scopes": [ + "starkware.cairo.common.math_cmp", + "starkware.cairo.common.math_cmp.is_le_felt" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 38, + "end_line": 79, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/math_cmp.cairo" + }, + "parent_location": [ + { + "end_col": 24, + "end_line": 83, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/math_cmp.cairo" + }, + "start_col": 23, + "start_line": 83 + }, + "While expanding the reference 'b' in:" + ], + "start_col": 37, + "start_line": 79 + } + }, + "321": { + "accessible_scopes": [ + "starkware.cairo.common.math_cmp", + "starkware.cairo.common.math_cmp.is_le_felt" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 25, + "end_line": 83, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/math_cmp.cairo" + }, + "start_col": 5, + "start_line": 83 + } + }, + "323": { + "accessible_scopes": [ + "starkware.cairo.common.math_cmp", + "starkware.cairo.common.math_cmp.is_le_felt" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 13, + "end_line": 84, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/math_cmp.cairo" + }, + "start_col": 12, + "start_line": 84 + } + }, + "325": { + "accessible_scopes": [ + "starkware.cairo.common.math_cmp", + "starkware.cairo.common.math_cmp.is_le_felt" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 14, + "end_line": 84, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/math_cmp.cairo" + }, + "start_col": 5, + "start_line": 84 + } + }, + "326": { + "accessible_scopes": [ + "starkware.cairo.common.math_cmp", + "starkware.cairo.common.math_cmp.is_le_felt" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 32, + "end_line": 79, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/math_cmp.cairo" + }, + "parent_location": [ + { + "end_col": 36, + "end_line": 223, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/math.cairo" + }, + "parent_location": [ + { + "end_col": 25, + "end_line": 87, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/math_cmp.cairo" + }, + "start_col": 5, + "start_line": 87 + }, + "While trying to retrieve the implicit argument 'range_check_ptr' in:" + ], + "start_col": 21, + "start_line": 223 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 17, + "start_line": 79 + } + }, + "327": { + "accessible_scopes": [ + "starkware.cairo.common.math_cmp", + "starkware.cairo.common.math_cmp.is_le_felt" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 38, + "end_line": 79, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/math_cmp.cairo" + }, + "parent_location": [ + { + "end_col": 21, + "end_line": 87, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/math_cmp.cairo" + }, + "start_col": 20, + "start_line": 87 + }, + "While expanding the reference 'b' in:" + ], + "start_col": 37, + "start_line": 79 + } + }, + "328": { + "accessible_scopes": [ + "starkware.cairo.common.math_cmp", + "starkware.cairo.common.math_cmp.is_le_felt" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 35, + "end_line": 79, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/math_cmp.cairo" + }, + "parent_location": [ + { + "end_col": 24, + "end_line": 87, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/math_cmp.cairo" + }, + "start_col": 23, + "start_line": 87 + }, + "While expanding the reference 'a' in:" + ], + "start_col": 34, + "start_line": 79 + } + }, + "329": { + "accessible_scopes": [ + "starkware.cairo.common.math_cmp", + "starkware.cairo.common.math_cmp.is_le_felt" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 25, + "end_line": 87, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/math_cmp.cairo" + }, + "start_col": 5, + "start_line": 87 + } + }, + "331": { + "accessible_scopes": [ + "starkware.cairo.common.math_cmp", + "starkware.cairo.common.math_cmp.is_le_felt" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 13, + "end_line": 88, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/math_cmp.cairo" + }, + "start_col": 12, + "start_line": 88 + } + }, + "333": { + "accessible_scopes": [ + "starkware.cairo.common.math_cmp", + "starkware.cairo.common.math_cmp.is_le_felt" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 14, + "end_line": 88, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/math_cmp.cairo" + }, + "start_col": 5, + "start_line": 88 + } + }, + "334": { + "accessible_scopes": [ + "openzeppelin.token.erc20.IERC20", + "openzeppelin.token.erc20.IERC20.IERC20", + "openzeppelin.token.erc20.IERC20.IERC20.balanceOf" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 14, + "end_line": 2, + "input_file": { + "filename": "autogen/starknet/contract_interface/IERC20/balanceOf/64f7842b108e76706927b78270ac73c789c558c54431b3359e4441e63ec2a868.cairo" + }, + "parent_location": [ + { + "end_col": 19, + "end_line": 22, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc20/IERC20.cairo" + }, + "start_col": 10, + "start_line": 22 + }, + "While handling contract interface function:" + ], + "start_col": 1, + "start_line": 2 + } + }, + "336": { + "accessible_scopes": [ + "openzeppelin.token.erc20.IERC20", + "openzeppelin.token.erc20.IERC20.IERC20", + "openzeppelin.token.erc20.IERC20.IERC20.balanceOf" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 48, + "end_line": 3, + "input_file": { + "filename": "autogen/starknet/contract_interface/IERC20/balanceOf/64f7842b108e76706927b78270ac73c789c558c54431b3359e4441e63ec2a868.cairo" + }, + "parent_location": [ + { + "end_col": 19, + "end_line": 22, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc20/IERC20.cairo" + }, + "start_col": 10, + "start_line": 22 + }, + "While handling contract interface function:" + ], + "start_col": 41, + "start_line": 3 + } + }, + "338": { + "accessible_scopes": [ + "openzeppelin.token.erc20.IERC20", + "openzeppelin.token.erc20.IERC20.IERC20", + "openzeppelin.token.erc20.IERC20.IERC20.balanceOf" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 37, + "end_line": 3, + "input_file": { + "filename": "autogen/starknet/contract_interface/IERC20/balanceOf/64f7842b108e76706927b78270ac73c789c558c54431b3359e4441e63ec2a868.cairo" + }, + "parent_location": [ + { + "end_col": 19, + "end_line": 22, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc20/IERC20.cairo" + }, + "start_col": 10, + "start_line": 22 + }, + "While handling contract interface function:" + ], + "start_col": 6, + "start_line": 3 + } + }, + "339": { + "accessible_scopes": [ + "openzeppelin.token.erc20.IERC20", + "openzeppelin.token.erc20.IERC20.IERC20", + "openzeppelin.token.erc20.IERC20.IERC20.balanceOf" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 35, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/arg_processor/71bda5d6615cf66a93af5985e2790bee9e14558a8db508f619c3499ab9df6755.cairo" + }, + "parent_location": [ + { + "end_col": 27, + "end_line": 22, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc20/IERC20.cairo" + }, + "start_col": 20, + "start_line": 22 + }, + "While handling calldata argument 'account'" + ], + "start_col": 1, + "start_line": 1 + } + }, + "340": { + "accessible_scopes": [ + "openzeppelin.token.erc20.IERC20", + "openzeppelin.token.erc20.IERC20.IERC20", + "openzeppelin.token.erc20.IERC20.IERC20.balanceOf" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 40, + "end_line": 2, + "input_file": { + "filename": "autogen/starknet/arg_processor/71bda5d6615cf66a93af5985e2790bee9e14558a8db508f619c3499ab9df6755.cairo" + }, + "parent_location": [ + { + "end_col": 27, + "end_line": 22, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc20/IERC20.cairo" + }, + "parent_location": [ + { + "end_col": 33, + "end_line": 5, + "input_file": { + "filename": "autogen/starknet/contract_interface/IERC20/balanceOf/afc82e35cedd3763938580dff4a9aa51517f6ab4bcc066fafd0fa2a8af4fe4c6.cairo" + }, + "parent_location": [ + { + "end_col": 19, + "end_line": 22, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc20/IERC20.cairo" + }, + "start_col": 10, + "start_line": 22 + }, + "While handling contract interface function:" + ], + "start_col": 19, + "start_line": 5 + }, + "While expanding the reference '__calldata_ptr' in:" + ], + "start_col": 20, + "start_line": 22 + }, + "While handling calldata argument 'account'" + ], + "start_col": 22, + "start_line": 2 + } + }, + "342": { + "accessible_scopes": [ + "openzeppelin.token.erc20.IERC20", + "openzeppelin.token.erc20.IERC20.IERC20", + "openzeppelin.token.erc20.IERC20.IERC20.balanceOf" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 34, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/contract_interface/IERC20/balanceOf/4974e5a70a1f6babd6af454c42f20ca77d636c9a1af9e765a25bc1023d028b2f.cairo" + }, + "parent_location": [ + { + "end_col": 19, + "end_line": 22, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc20/IERC20.cairo" + }, + "parent_location": [ + { + "end_col": 38, + "end_line": 42, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/starknet/common/syscalls.cairo" + }, + "parent_location": [ + { + "end_col": 33, + "end_line": 6, + "input_file": { + "filename": "autogen/starknet/contract_interface/IERC20/balanceOf/afc82e35cedd3763938580dff4a9aa51517f6ab4bcc066fafd0fa2a8af4fe4c6.cairo" + }, + "parent_location": [ + { + "end_col": 19, + "end_line": 22, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc20/IERC20.cairo" + }, + "start_col": 10, + "start_line": 22 + }, + "While handling contract interface function:" + ], + "start_col": 31, + "start_line": 2 + }, + "While trying to retrieve the implicit argument 'syscall_ptr' in:" + ], + "start_col": 20, + "start_line": 42 + }, + "While expanding the reference 'syscall_ptr' in:" + ], + "start_col": 10, + "start_line": 22 + }, + "While handling contract interface function:" + ], + "start_col": 16, + "start_line": 1 + } + }, + "343": { + "accessible_scopes": [ + "openzeppelin.token.erc20.IERC20", + "openzeppelin.token.erc20.IERC20.IERC20", + "openzeppelin.token.erc20.IERC20.IERC20.balanceOf" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 27, + "end_line": 2, + "input_file": { + "filename": "autogen/starknet/contract_interface/IERC20/balanceOf/4974e5a70a1f6babd6af454c42f20ca77d636c9a1af9e765a25bc1023d028b2f.cairo" + }, + "parent_location": [ + { + "end_col": 19, + "end_line": 22, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc20/IERC20.cairo" + }, + "parent_location": [ + { + "end_col": 38, + "end_line": 3, + "input_file": { + "filename": "autogen/starknet/contract_interface/IERC20/balanceOf/afc82e35cedd3763938580dff4a9aa51517f6ab4bcc066fafd0fa2a8af4fe4c6.cairo" + }, + "parent_location": [ + { + "end_col": 19, + "end_line": 22, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc20/IERC20.cairo" + }, + "start_col": 10, + "start_line": 22 + }, + "While handling contract interface function:" + ], + "start_col": 22, + "start_line": 3 + }, + "While expanding the reference 'contract_address' in:" + ], + "start_col": 10, + "start_line": 22 + }, + "While handling contract interface function:" + ], + "start_col": 5, + "start_line": 2 + } + }, + "344": { + "accessible_scopes": [ + "openzeppelin.token.erc20.IERC20", + "openzeppelin.token.erc20.IERC20.IERC20", + "openzeppelin.token.erc20.IERC20.IERC20.balanceOf" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 41, + "end_line": 4, + "input_file": { + "filename": "autogen/starknet/contract_interface/IERC20/balanceOf/afc82e35cedd3763938580dff4a9aa51517f6ab4bcc066fafd0fa2a8af4fe4c6.cairo" + }, + "parent_location": [ + { + "end_col": 19, + "end_line": 22, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc20/IERC20.cairo" + }, + "start_col": 10, + "start_line": 22 + }, + "While handling contract interface function:" + ], + "start_col": 23, + "start_line": 4 + } + }, + "346": { + "accessible_scopes": [ + "openzeppelin.token.erc20.IERC20", + "openzeppelin.token.erc20.IERC20.IERC20", + "openzeppelin.token.erc20.IERC20.IERC20.balanceOf" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 54, + "end_line": 5, + "input_file": { + "filename": "autogen/starknet/contract_interface/IERC20/balanceOf/afc82e35cedd3763938580dff4a9aa51517f6ab4bcc066fafd0fa2a8af4fe4c6.cairo" + }, + "parent_location": [ + { + "end_col": 19, + "end_line": 22, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc20/IERC20.cairo" + }, + "start_col": 10, + "start_line": 22 + }, + "While handling contract interface function:" + ], + "start_col": 19, + "start_line": 5 + } + }, + "347": { + "accessible_scopes": [ + "openzeppelin.token.erc20.IERC20", + "openzeppelin.token.erc20.IERC20.IERC20", + "openzeppelin.token.erc20.IERC20.IERC20.balanceOf" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 30, + "end_line": 3, + "input_file": { + "filename": "autogen/starknet/contract_interface/IERC20/balanceOf/64f7842b108e76706927b78270ac73c789c558c54431b3359e4441e63ec2a868.cairo" + }, + "parent_location": [ + { + "end_col": 19, + "end_line": 22, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc20/IERC20.cairo" + }, + "parent_location": [ + { + "end_col": 32, + "end_line": 6, + "input_file": { + "filename": "autogen/starknet/contract_interface/IERC20/balanceOf/afc82e35cedd3763938580dff4a9aa51517f6ab4bcc066fafd0fa2a8af4fe4c6.cairo" + }, + "parent_location": [ + { + "end_col": 19, + "end_line": 22, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc20/IERC20.cairo" + }, + "start_col": 10, + "start_line": 22 + }, + "While handling contract interface function:" + ], + "start_col": 14, + "start_line": 6 + }, + "While expanding the reference 'calldata_ptr_start' in:" + ], + "start_col": 10, + "start_line": 22 + }, + "While handling contract interface function:" + ], + "start_col": 12, + "start_line": 3 + } + }, + "348": { + "accessible_scopes": [ + "openzeppelin.token.erc20.IERC20", + "openzeppelin.token.erc20.IERC20.IERC20", + "openzeppelin.token.erc20.IERC20.IERC20.balanceOf" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 33, + "end_line": 6, + "input_file": { + "filename": "autogen/starknet/contract_interface/IERC20/balanceOf/afc82e35cedd3763938580dff4a9aa51517f6ab4bcc066fafd0fa2a8af4fe4c6.cairo" + }, + "parent_location": [ + { + "end_col": 19, + "end_line": 22, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc20/IERC20.cairo" + }, + "start_col": 10, + "start_line": 22 + }, + "While handling contract interface function:" + ], + "start_col": 31, + "start_line": 2 + } + }, + "350": { + "accessible_scopes": [ + "openzeppelin.token.erc20.IERC20", + "openzeppelin.token.erc20.IERC20.IERC20", + "openzeppelin.token.erc20.IERC20.IERC20.balanceOf" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 48, + "end_line": 3, + "input_file": { + "filename": "autogen/starknet/arg_processor/8e21266a36f2710b8dc2a249b2659712cfe8161a5ae07153a6fff3f134757f14.cairo" + }, + "parent_location": [ + { + "end_col": 55, + "end_line": 22, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc20/IERC20.cairo" + }, + "parent_location": [ + { + "end_col": 53, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/arg_processor/accb388bcbbace5b6218198851efaad2a781c1339e305a37fab51afe90a3194a.cairo" + }, + "parent_location": [ + { + "end_col": 19, + "end_line": 22, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc20/IERC20.cairo" + }, + "parent_location": [ + { + "end_col": 49, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/arg_processor/96447016176d161dae83f414c4d3e33e78856e0ef69bc33f8d419f1c9b90f9c5.cairo" + }, + "parent_location": [ + { + "end_col": 19, + "end_line": 22, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc20/IERC20.cairo" + }, + "start_col": 10, + "start_line": 22 + }, + "While handling return values of" + ], + "start_col": 23, + "start_line": 1 + }, + "While expanding the reference '__return_value_actual_size' in:" + ], + "start_col": 10, + "start_line": 22 + }, + "While handling return values of" + ], + "start_col": 35, + "start_line": 1 + }, + "While expanding the reference '__return_value_ptr' in:" + ], + "start_col": 39, + "start_line": 22 + }, + "While handling return value 'balance'" + ], + "start_col": 26, + "start_line": 3 + } + }, + "352": { + "accessible_scopes": [ + "openzeppelin.token.erc20.IERC20", + "openzeppelin.token.erc20.IERC20.IERC20", + "openzeppelin.token.erc20.IERC20.IERC20.balanceOf" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 50, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/arg_processor/96447016176d161dae83f414c4d3e33e78856e0ef69bc33f8d419f1c9b90f9c5.cairo" + }, + "parent_location": [ + { + "end_col": 19, + "end_line": 22, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc20/IERC20.cairo" + }, + "start_col": 10, + "start_line": 22 + }, + "While handling return values of" + ], + "start_col": 1, + "start_line": 1 + } + }, + "353": { + "accessible_scopes": [ + "openzeppelin.token.erc20.IERC20", + "openzeppelin.token.erc20.IERC20.IERC20", + "openzeppelin.token.erc20.IERC20.IERC20.balanceOf" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 38, + "end_line": 42, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/starknet/common/syscalls.cairo" + }, + "parent_location": [ + { + "end_col": 33, + "end_line": 6, + "input_file": { + "filename": "autogen/starknet/contract_interface/IERC20/balanceOf/afc82e35cedd3763938580dff4a9aa51517f6ab4bcc066fafd0fa2a8af4fe4c6.cairo" + }, + "parent_location": [ + { + "end_col": 19, + "end_line": 22, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc20/IERC20.cairo" + }, + "parent_location": [ + { + "end_col": 34, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/contract_interface/IERC20/balanceOf/4974e5a70a1f6babd6af454c42f20ca77d636c9a1af9e765a25bc1023d028b2f.cairo" + }, + "parent_location": [ + { + "end_col": 19, + "end_line": 22, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc20/IERC20.cairo" + }, + "parent_location": [ + { + "end_col": 46, + "end_line": 2, + "input_file": { + "filename": "autogen/starknet/contract_interface/IERC20/balanceOf/84976f04d2392a893b3a3e1cb1e52aaddb37779623637aee3294e48be6be0239.cairo" + }, + "parent_location": [ + { + "end_col": 19, + "end_line": 22, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc20/IERC20.cairo" + }, + "start_col": 10, + "start_line": 22 + }, + "While handling contract interface function:" + ], + "start_col": 1, + "start_line": 2 + }, + "While trying to retrieve the implicit argument 'syscall_ptr' in:" + ], + "start_col": 10, + "start_line": 22 + }, + "While handling contract interface function:" + ], + "start_col": 16, + "start_line": 1 + }, + "While expanding the reference 'syscall_ptr' in:" + ], + "start_col": 10, + "start_line": 22 + }, + "While handling contract interface function:" + ], + "start_col": 31, + "start_line": 2 + }, + "While trying to update the implicit return value 'syscall_ptr' in:" + ], + "start_col": 20, + "start_line": 42 + } + }, + "354": { + "accessible_scopes": [ + "openzeppelin.token.erc20.IERC20", + "openzeppelin.token.erc20.IERC20.IERC20", + "openzeppelin.token.erc20.IERC20.IERC20.balanceOf" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 51, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/contract_interface/IERC20/balanceOf/4974e5a70a1f6babd6af454c42f20ca77d636c9a1af9e765a25bc1023d028b2f.cairo" + }, + "parent_location": [ + { + "end_col": 19, + "end_line": 22, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc20/IERC20.cairo" + }, + "parent_location": [ + { + "end_col": 51, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/contract_interface/IERC20/balanceOf/4974e5a70a1f6babd6af454c42f20ca77d636c9a1af9e765a25bc1023d028b2f.cairo" + }, + "parent_location": [ + { + "end_col": 19, + "end_line": 22, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc20/IERC20.cairo" + }, + "parent_location": [ + { + "end_col": 46, + "end_line": 2, + "input_file": { + "filename": "autogen/starknet/contract_interface/IERC20/balanceOf/84976f04d2392a893b3a3e1cb1e52aaddb37779623637aee3294e48be6be0239.cairo" + }, + "parent_location": [ + { + "end_col": 19, + "end_line": 22, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc20/IERC20.cairo" + }, + "start_col": 10, + "start_line": 22 + }, + "While handling contract interface function:" + ], + "start_col": 1, + "start_line": 2 + }, + "While trying to retrieve the implicit argument 'range_check_ptr' in:" + ], + "start_col": 10, + "start_line": 22 + }, + "While handling contract interface function:" + ], + "start_col": 36, + "start_line": 1 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 10, + "start_line": 22 + }, + "While handling contract interface function:" + ], + "start_col": 36, + "start_line": 1 + } + }, + "355": { + "accessible_scopes": [ + "openzeppelin.token.erc20.IERC20", + "openzeppelin.token.erc20.IERC20.IERC20", + "openzeppelin.token.erc20.IERC20.IERC20.balanceOf" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 71, + "end_line": 2, + "input_file": { + "filename": "autogen/starknet/arg_processor/8e21266a36f2710b8dc2a249b2659712cfe8161a5ae07153a6fff3f134757f14.cairo" + }, + "parent_location": [ + { + "end_col": 55, + "end_line": 22, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc20/IERC20.cairo" + }, + "parent_location": [ + { + "end_col": 43, + "end_line": 2, + "input_file": { + "filename": "autogen/starknet/contract_interface/IERC20/balanceOf/84976f04d2392a893b3a3e1cb1e52aaddb37779623637aee3294e48be6be0239.cairo" + }, + "parent_location": [ + { + "end_col": 19, + "end_line": 22, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc20/IERC20.cairo" + }, + "start_col": 10, + "start_line": 22 + }, + "While handling contract interface function:" + ], + "start_col": 17, + "start_line": 2 + }, + "While expanding the reference '__return_value_arg_balance' in:" + ], + "start_col": 39, + "start_line": 22 + }, + "While handling return value 'balance'" + ], + "start_col": 34, + "start_line": 1 + } + }, + "356": { + "accessible_scopes": [ + "openzeppelin.token.erc20.IERC20", + "openzeppelin.token.erc20.IERC20.IERC20", + "openzeppelin.token.erc20.IERC20.IERC20.balanceOf" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 71, + "end_line": 2, + "input_file": { + "filename": "autogen/starknet/arg_processor/8e21266a36f2710b8dc2a249b2659712cfe8161a5ae07153a6fff3f134757f14.cairo" + }, + "parent_location": [ + { + "end_col": 55, + "end_line": 22, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc20/IERC20.cairo" + }, + "parent_location": [ + { + "end_col": 43, + "end_line": 2, + "input_file": { + "filename": "autogen/starknet/contract_interface/IERC20/balanceOf/84976f04d2392a893b3a3e1cb1e52aaddb37779623637aee3294e48be6be0239.cairo" + }, + "parent_location": [ + { + "end_col": 19, + "end_line": 22, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc20/IERC20.cairo" + }, + "start_col": 10, + "start_line": 22 + }, + "While handling contract interface function:" + ], + "start_col": 17, + "start_line": 2 + }, + "While expanding the reference '__return_value_arg_balance' in:" + ], + "start_col": 39, + "start_line": 22 + }, + "While handling return value 'balance'" + ], + "start_col": 34, + "start_line": 1 + } + }, + "357": { + "accessible_scopes": [ + "openzeppelin.token.erc20.IERC20", + "openzeppelin.token.erc20.IERC20.IERC20", + "openzeppelin.token.erc20.IERC20.IERC20.balanceOf" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 46, + "end_line": 2, + "input_file": { + "filename": "autogen/starknet/contract_interface/IERC20/balanceOf/84976f04d2392a893b3a3e1cb1e52aaddb37779623637aee3294e48be6be0239.cairo" + }, + "parent_location": [ + { + "end_col": 19, + "end_line": 22, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc20/IERC20.cairo" + }, + "start_col": 10, + "start_line": 22 + }, + "While handling contract interface function:" + ], + "start_col": 1, + "start_line": 2 + } + }, + "358": { + "accessible_scopes": [ + "openzeppelin.token.erc20.IERC20", + "openzeppelin.token.erc20.IERC20.IERC20", + "openzeppelin.token.erc20.IERC20.IERC20.transfer" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 14, + "end_line": 2, + "input_file": { + "filename": "autogen/starknet/contract_interface/IERC20/transfer/64f7842b108e76706927b78270ac73c789c558c54431b3359e4441e63ec2a868.cairo" + }, + "parent_location": [ + { + "end_col": 18, + "end_line": 28, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc20/IERC20.cairo" + }, + "start_col": 10, + "start_line": 28 + }, + "While handling contract interface function:" + ], + "start_col": 1, + "start_line": 2 + } + }, + "360": { + "accessible_scopes": [ + "openzeppelin.token.erc20.IERC20", + "openzeppelin.token.erc20.IERC20.IERC20", + "openzeppelin.token.erc20.IERC20.IERC20.transfer" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 48, + "end_line": 3, + "input_file": { + "filename": "autogen/starknet/contract_interface/IERC20/transfer/64f7842b108e76706927b78270ac73c789c558c54431b3359e4441e63ec2a868.cairo" + }, + "parent_location": [ + { + "end_col": 18, + "end_line": 28, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc20/IERC20.cairo" + }, + "start_col": 10, + "start_line": 28 + }, + "While handling contract interface function:" + ], + "start_col": 41, + "start_line": 3 + } + }, + "362": { + "accessible_scopes": [ + "openzeppelin.token.erc20.IERC20", + "openzeppelin.token.erc20.IERC20.IERC20", + "openzeppelin.token.erc20.IERC20.IERC20.transfer" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 37, + "end_line": 3, + "input_file": { + "filename": "autogen/starknet/contract_interface/IERC20/transfer/64f7842b108e76706927b78270ac73c789c558c54431b3359e4441e63ec2a868.cairo" + }, + "parent_location": [ + { + "end_col": 18, + "end_line": 28, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc20/IERC20.cairo" + }, + "start_col": 10, + "start_line": 28 + }, + "While handling contract interface function:" + ], + "start_col": 6, + "start_line": 3 + } + }, + "363": { + "accessible_scopes": [ + "openzeppelin.token.erc20.IERC20", + "openzeppelin.token.erc20.IERC20.IERC20", + "openzeppelin.token.erc20.IERC20.IERC20.transfer" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 37, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/arg_processor/32dd5497db578c846b634f25154d0ffb622256766f5d2360a53f46e9c348ed3e.cairo" + }, + "parent_location": [ + { + "end_col": 28, + "end_line": 28, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc20/IERC20.cairo" + }, + "start_col": 19, + "start_line": 28 + }, + "While handling calldata argument 'recipient'" + ], + "start_col": 1, + "start_line": 1 + } + }, + "364": { + "accessible_scopes": [ + "openzeppelin.token.erc20.IERC20", + "openzeppelin.token.erc20.IERC20.IERC20", + "openzeppelin.token.erc20.IERC20.IERC20.transfer" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 52, + "end_line": 3, + "input_file": { + "filename": "autogen/starknet/arg_processor/502707e41b9f24cc24d98a88f76cd4304e8e77c4465a6a9402a5f1a76177b453.cairo" + }, + "parent_location": [ + { + "end_col": 42, + "end_line": 28, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc20/IERC20.cairo" + }, + "start_col": 36, + "start_line": 28 + }, + "While handling calldata argument 'amount'" + ], + "start_col": 1, + "start_line": 3 + } + }, + "365": { + "accessible_scopes": [ + "openzeppelin.token.erc20.IERC20", + "openzeppelin.token.erc20.IERC20.IERC20", + "openzeppelin.token.erc20.IERC20.IERC20.transfer" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 52, + "end_line": 4, + "input_file": { + "filename": "autogen/starknet/arg_processor/502707e41b9f24cc24d98a88f76cd4304e8e77c4465a6a9402a5f1a76177b453.cairo" + }, + "parent_location": [ + { + "end_col": 42, + "end_line": 28, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc20/IERC20.cairo" + }, + "start_col": 36, + "start_line": 28 + }, + "While handling calldata argument 'amount'" + ], + "start_col": 1, + "start_line": 4 + } + }, + "366": { + "accessible_scopes": [ + "openzeppelin.token.erc20.IERC20", + "openzeppelin.token.erc20.IERC20.IERC20", + "openzeppelin.token.erc20.IERC20.IERC20.transfer" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 40, + "end_line": 5, + "input_file": { + "filename": "autogen/starknet/arg_processor/502707e41b9f24cc24d98a88f76cd4304e8e77c4465a6a9402a5f1a76177b453.cairo" + }, + "parent_location": [ + { + "end_col": 42, + "end_line": 28, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc20/IERC20.cairo" + }, + "parent_location": [ + { + "end_col": 33, + "end_line": 5, + "input_file": { + "filename": "autogen/starknet/contract_interface/IERC20/transfer/11b5e57d1551eafcfbe317b927fce82a3ede967a003d827e8a226516d028537c.cairo" + }, + "parent_location": [ + { + "end_col": 18, + "end_line": 28, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc20/IERC20.cairo" + }, + "start_col": 10, + "start_line": 28 + }, + "While handling contract interface function:" + ], + "start_col": 19, + "start_line": 5 + }, + "While expanding the reference '__calldata_ptr' in:" + ], + "start_col": 36, + "start_line": 28 + }, + "While handling calldata argument 'amount'" + ], + "start_col": 22, + "start_line": 5 + } + }, + "368": { + "accessible_scopes": [ + "openzeppelin.token.erc20.IERC20", + "openzeppelin.token.erc20.IERC20.IERC20", + "openzeppelin.token.erc20.IERC20.IERC20.transfer" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 33, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/contract_interface/IERC20/transfer/f892130d94edea9ae607acf869de96f491807d8a0068726c99a57f1b7072baed.cairo" + }, + "parent_location": [ + { + "end_col": 18, + "end_line": 28, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc20/IERC20.cairo" + }, + "parent_location": [ + { + "end_col": 38, + "end_line": 42, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/starknet/common/syscalls.cairo" + }, + "parent_location": [ + { + "end_col": 33, + "end_line": 6, + "input_file": { + "filename": "autogen/starknet/contract_interface/IERC20/transfer/11b5e57d1551eafcfbe317b927fce82a3ede967a003d827e8a226516d028537c.cairo" + }, + "parent_location": [ + { + "end_col": 18, + "end_line": 28, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc20/IERC20.cairo" + }, + "start_col": 10, + "start_line": 28 + }, + "While handling contract interface function:" + ], + "start_col": 31, + "start_line": 2 + }, + "While trying to retrieve the implicit argument 'syscall_ptr' in:" + ], + "start_col": 20, + "start_line": 42 + }, + "While expanding the reference 'syscall_ptr' in:" + ], + "start_col": 10, + "start_line": 28 + }, + "While handling contract interface function:" + ], + "start_col": 15, + "start_line": 1 + } + }, + "369": { + "accessible_scopes": [ + "openzeppelin.token.erc20.IERC20", + "openzeppelin.token.erc20.IERC20.IERC20", + "openzeppelin.token.erc20.IERC20.IERC20.transfer" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 27, + "end_line": 2, + "input_file": { + "filename": "autogen/starknet/contract_interface/IERC20/transfer/f892130d94edea9ae607acf869de96f491807d8a0068726c99a57f1b7072baed.cairo" + }, + "parent_location": [ + { + "end_col": 18, + "end_line": 28, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc20/IERC20.cairo" + }, + "parent_location": [ + { + "end_col": 38, + "end_line": 3, + "input_file": { + "filename": "autogen/starknet/contract_interface/IERC20/transfer/11b5e57d1551eafcfbe317b927fce82a3ede967a003d827e8a226516d028537c.cairo" + }, + "parent_location": [ + { + "end_col": 18, + "end_line": 28, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc20/IERC20.cairo" + }, + "start_col": 10, + "start_line": 28 + }, + "While handling contract interface function:" + ], + "start_col": 22, + "start_line": 3 + }, + "While expanding the reference 'contract_address' in:" + ], + "start_col": 10, + "start_line": 28 + }, + "While handling contract interface function:" + ], + "start_col": 5, + "start_line": 2 + } + }, + "370": { + "accessible_scopes": [ + "openzeppelin.token.erc20.IERC20", + "openzeppelin.token.erc20.IERC20.IERC20", + "openzeppelin.token.erc20.IERC20.IERC20.transfer" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 40, + "end_line": 4, + "input_file": { + "filename": "autogen/starknet/contract_interface/IERC20/transfer/11b5e57d1551eafcfbe317b927fce82a3ede967a003d827e8a226516d028537c.cairo" + }, + "parent_location": [ + { + "end_col": 18, + "end_line": 28, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc20/IERC20.cairo" + }, + "start_col": 10, + "start_line": 28 + }, + "While handling contract interface function:" + ], + "start_col": 23, + "start_line": 4 + } + }, + "372": { + "accessible_scopes": [ + "openzeppelin.token.erc20.IERC20", + "openzeppelin.token.erc20.IERC20.IERC20", + "openzeppelin.token.erc20.IERC20.IERC20.transfer" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 54, + "end_line": 5, + "input_file": { + "filename": "autogen/starknet/contract_interface/IERC20/transfer/11b5e57d1551eafcfbe317b927fce82a3ede967a003d827e8a226516d028537c.cairo" + }, + "parent_location": [ + { + "end_col": 18, + "end_line": 28, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc20/IERC20.cairo" + }, + "start_col": 10, + "start_line": 28 + }, + "While handling contract interface function:" + ], + "start_col": 19, + "start_line": 5 + } + }, + "373": { + "accessible_scopes": [ + "openzeppelin.token.erc20.IERC20", + "openzeppelin.token.erc20.IERC20.IERC20", + "openzeppelin.token.erc20.IERC20.IERC20.transfer" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 30, + "end_line": 3, + "input_file": { + "filename": "autogen/starknet/contract_interface/IERC20/transfer/64f7842b108e76706927b78270ac73c789c558c54431b3359e4441e63ec2a868.cairo" + }, + "parent_location": [ + { + "end_col": 18, + "end_line": 28, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc20/IERC20.cairo" + }, + "parent_location": [ + { + "end_col": 32, + "end_line": 6, + "input_file": { + "filename": "autogen/starknet/contract_interface/IERC20/transfer/11b5e57d1551eafcfbe317b927fce82a3ede967a003d827e8a226516d028537c.cairo" + }, + "parent_location": [ + { + "end_col": 18, + "end_line": 28, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc20/IERC20.cairo" + }, + "start_col": 10, + "start_line": 28 + }, + "While handling contract interface function:" + ], + "start_col": 14, + "start_line": 6 + }, + "While expanding the reference 'calldata_ptr_start' in:" + ], + "start_col": 10, + "start_line": 28 + }, + "While handling contract interface function:" + ], + "start_col": 12, + "start_line": 3 + } + }, + "374": { + "accessible_scopes": [ + "openzeppelin.token.erc20.IERC20", + "openzeppelin.token.erc20.IERC20.IERC20", + "openzeppelin.token.erc20.IERC20.IERC20.transfer" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 33, + "end_line": 6, + "input_file": { + "filename": "autogen/starknet/contract_interface/IERC20/transfer/11b5e57d1551eafcfbe317b927fce82a3ede967a003d827e8a226516d028537c.cairo" + }, + "parent_location": [ + { + "end_col": 18, + "end_line": 28, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc20/IERC20.cairo" + }, + "start_col": 10, + "start_line": 28 + }, + "While handling contract interface function:" + ], + "start_col": 31, + "start_line": 2 + } + }, + "376": { + "accessible_scopes": [ + "openzeppelin.token.erc20.IERC20", + "openzeppelin.token.erc20.IERC20.IERC20", + "openzeppelin.token.erc20.IERC20.IERC20.transfer" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 48, + "end_line": 2, + "input_file": { + "filename": "autogen/starknet/arg_processor/8ca78f1082aaedcf62c13aff4dffe5943aa04164c60cb6d9f03916c0319201df.cairo" + }, + "parent_location": [ + { + "end_col": 70, + "end_line": 28, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc20/IERC20.cairo" + }, + "parent_location": [ + { + "end_col": 53, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/arg_processor/accb388bcbbace5b6218198851efaad2a781c1339e305a37fab51afe90a3194a.cairo" + }, + "parent_location": [ + { + "end_col": 18, + "end_line": 28, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc20/IERC20.cairo" + }, + "parent_location": [ + { + "end_col": 49, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/arg_processor/96447016176d161dae83f414c4d3e33e78856e0ef69bc33f8d419f1c9b90f9c5.cairo" + }, + "parent_location": [ + { + "end_col": 18, + "end_line": 28, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc20/IERC20.cairo" + }, + "start_col": 10, + "start_line": 28 + }, + "While handling return values of" + ], + "start_col": 23, + "start_line": 1 + }, + "While expanding the reference '__return_value_actual_size' in:" + ], + "start_col": 10, + "start_line": 28 + }, + "While handling return values of" + ], + "start_col": 35, + "start_line": 1 + }, + "While expanding the reference '__return_value_ptr' in:" + ], + "start_col": 57, + "start_line": 28 + }, + "While handling return value 'success'" + ], + "start_col": 26, + "start_line": 2 + } + }, + "378": { + "accessible_scopes": [ + "openzeppelin.token.erc20.IERC20", + "openzeppelin.token.erc20.IERC20.IERC20", + "openzeppelin.token.erc20.IERC20.IERC20.transfer" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 50, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/arg_processor/96447016176d161dae83f414c4d3e33e78856e0ef69bc33f8d419f1c9b90f9c5.cairo" + }, + "parent_location": [ + { + "end_col": 18, + "end_line": 28, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc20/IERC20.cairo" + }, + "start_col": 10, + "start_line": 28 + }, + "While handling return values of" + ], + "start_col": 1, + "start_line": 1 + } + }, + "379": { + "accessible_scopes": [ + "openzeppelin.token.erc20.IERC20", + "openzeppelin.token.erc20.IERC20.IERC20", + "openzeppelin.token.erc20.IERC20.IERC20.transfer" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 38, + "end_line": 42, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/starknet/common/syscalls.cairo" + }, + "parent_location": [ + { + "end_col": 33, + "end_line": 6, + "input_file": { + "filename": "autogen/starknet/contract_interface/IERC20/transfer/11b5e57d1551eafcfbe317b927fce82a3ede967a003d827e8a226516d028537c.cairo" + }, + "parent_location": [ + { + "end_col": 18, + "end_line": 28, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc20/IERC20.cairo" + }, + "parent_location": [ + { + "end_col": 33, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/contract_interface/IERC20/transfer/f892130d94edea9ae607acf869de96f491807d8a0068726c99a57f1b7072baed.cairo" + }, + "parent_location": [ + { + "end_col": 18, + "end_line": 28, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc20/IERC20.cairo" + }, + "parent_location": [ + { + "end_col": 46, + "end_line": 2, + "input_file": { + "filename": "autogen/starknet/contract_interface/IERC20/transfer/18abb29d0a089e1c243e4bd2b316687e6162b3321c14733ee37389da5d8b074f.cairo" + }, + "parent_location": [ + { + "end_col": 18, + "end_line": 28, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc20/IERC20.cairo" + }, + "start_col": 10, + "start_line": 28 + }, + "While handling contract interface function:" + ], + "start_col": 1, + "start_line": 2 + }, + "While trying to retrieve the implicit argument 'syscall_ptr' in:" + ], + "start_col": 10, + "start_line": 28 + }, + "While handling contract interface function:" + ], + "start_col": 15, + "start_line": 1 + }, + "While expanding the reference 'syscall_ptr' in:" + ], + "start_col": 10, + "start_line": 28 + }, + "While handling contract interface function:" + ], + "start_col": 31, + "start_line": 2 + }, + "While trying to update the implicit return value 'syscall_ptr' in:" + ], + "start_col": 20, + "start_line": 42 + } + }, + "380": { + "accessible_scopes": [ + "openzeppelin.token.erc20.IERC20", + "openzeppelin.token.erc20.IERC20.IERC20", + "openzeppelin.token.erc20.IERC20.IERC20.transfer" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 50, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/contract_interface/IERC20/transfer/f892130d94edea9ae607acf869de96f491807d8a0068726c99a57f1b7072baed.cairo" + }, + "parent_location": [ + { + "end_col": 18, + "end_line": 28, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc20/IERC20.cairo" + }, + "parent_location": [ + { + "end_col": 50, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/contract_interface/IERC20/transfer/f892130d94edea9ae607acf869de96f491807d8a0068726c99a57f1b7072baed.cairo" + }, + "parent_location": [ + { + "end_col": 18, + "end_line": 28, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc20/IERC20.cairo" + }, + "parent_location": [ + { + "end_col": 46, + "end_line": 2, + "input_file": { + "filename": "autogen/starknet/contract_interface/IERC20/transfer/18abb29d0a089e1c243e4bd2b316687e6162b3321c14733ee37389da5d8b074f.cairo" + }, + "parent_location": [ + { + "end_col": 18, + "end_line": 28, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc20/IERC20.cairo" + }, + "start_col": 10, + "start_line": 28 + }, + "While handling contract interface function:" + ], + "start_col": 1, + "start_line": 2 + }, + "While trying to retrieve the implicit argument 'range_check_ptr' in:" + ], + "start_col": 10, + "start_line": 28 + }, + "While handling contract interface function:" + ], + "start_col": 35, + "start_line": 1 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 10, + "start_line": 28 + }, + "While handling contract interface function:" + ], + "start_col": 35, + "start_line": 1 + } + }, + "381": { + "accessible_scopes": [ + "openzeppelin.token.erc20.IERC20", + "openzeppelin.token.erc20.IERC20.IERC20", + "openzeppelin.token.erc20.IERC20.IERC20.transfer" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 54, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/arg_processor/8ca78f1082aaedcf62c13aff4dffe5943aa04164c60cb6d9f03916c0319201df.cairo" + }, + "parent_location": [ + { + "end_col": 70, + "end_line": 28, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc20/IERC20.cairo" + }, + "parent_location": [ + { + "end_col": 43, + "end_line": 2, + "input_file": { + "filename": "autogen/starknet/contract_interface/IERC20/transfer/18abb29d0a089e1c243e4bd2b316687e6162b3321c14733ee37389da5d8b074f.cairo" + }, + "parent_location": [ + { + "end_col": 18, + "end_line": 28, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc20/IERC20.cairo" + }, + "start_col": 10, + "start_line": 28 + }, + "While handling contract interface function:" + ], + "start_col": 17, + "start_line": 2 + }, + "While expanding the reference '__return_value_arg_success' in:" + ], + "start_col": 57, + "start_line": 28 + }, + "While handling return value 'success'" + ], + "start_col": 34, + "start_line": 1 + } + }, + "382": { + "accessible_scopes": [ + "openzeppelin.token.erc20.IERC20", + "openzeppelin.token.erc20.IERC20.IERC20", + "openzeppelin.token.erc20.IERC20.IERC20.transfer" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 46, + "end_line": 2, + "input_file": { + "filename": "autogen/starknet/contract_interface/IERC20/transfer/18abb29d0a089e1c243e4bd2b316687e6162b3321c14733ee37389da5d8b074f.cairo" + }, + "parent_location": [ + { + "end_col": 18, + "end_line": 28, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc20/IERC20.cairo" + }, + "start_col": 10, + "start_line": 28 + }, + "While handling contract interface function:" + ], + "start_col": 1, + "start_line": 2 + } + }, + "383": { + "accessible_scopes": [ + "openzeppelin.token.erc20.IERC20", + "openzeppelin.token.erc20.IERC20.IERC20", + "openzeppelin.token.erc20.IERC20.IERC20.transferFrom" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 14, + "end_line": 2, + "input_file": { + "filename": "autogen/starknet/contract_interface/IERC20/transferFrom/64f7842b108e76706927b78270ac73c789c558c54431b3359e4441e63ec2a868.cairo" + }, + "parent_location": [ + { + "end_col": 22, + "end_line": 31, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc20/IERC20.cairo" + }, + "start_col": 10, + "start_line": 31 + }, + "While handling contract interface function:" + ], + "start_col": 1, + "start_line": 2 + } + }, + "385": { + "accessible_scopes": [ + "openzeppelin.token.erc20.IERC20", + "openzeppelin.token.erc20.IERC20.IERC20", + "openzeppelin.token.erc20.IERC20.IERC20.transferFrom" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 48, + "end_line": 3, + "input_file": { + "filename": "autogen/starknet/contract_interface/IERC20/transferFrom/64f7842b108e76706927b78270ac73c789c558c54431b3359e4441e63ec2a868.cairo" + }, + "parent_location": [ + { + "end_col": 22, + "end_line": 31, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc20/IERC20.cairo" + }, + "start_col": 10, + "start_line": 31 + }, + "While handling contract interface function:" + ], + "start_col": 41, + "start_line": 3 + } + }, + "387": { + "accessible_scopes": [ + "openzeppelin.token.erc20.IERC20", + "openzeppelin.token.erc20.IERC20.IERC20", + "openzeppelin.token.erc20.IERC20.IERC20.transferFrom" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 37, + "end_line": 3, + "input_file": { + "filename": "autogen/starknet/contract_interface/IERC20/transferFrom/64f7842b108e76706927b78270ac73c789c558c54431b3359e4441e63ec2a868.cairo" + }, + "parent_location": [ + { + "end_col": 22, + "end_line": 31, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc20/IERC20.cairo" + }, + "start_col": 10, + "start_line": 31 + }, + "While handling contract interface function:" + ], + "start_col": 6, + "start_line": 3 + } + }, + "388": { + "accessible_scopes": [ + "openzeppelin.token.erc20.IERC20", + "openzeppelin.token.erc20.IERC20.IERC20", + "openzeppelin.token.erc20.IERC20.IERC20.transferFrom" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 34, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/arg_processor/712c2a95dbae039e77112e72178da3f83d21edfc1285b387ccfa43e0f878d990.cairo" + }, + "parent_location": [ + { + "end_col": 29, + "end_line": 31, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc20/IERC20.cairo" + }, + "start_col": 23, + "start_line": 31 + }, + "While handling calldata argument 'sender'" + ], + "start_col": 1, + "start_line": 1 + } + }, + "389": { + "accessible_scopes": [ + "openzeppelin.token.erc20.IERC20", + "openzeppelin.token.erc20.IERC20.IERC20", + "openzeppelin.token.erc20.IERC20.IERC20.transferFrom" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 37, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/arg_processor/32dd5497db578c846b634f25154d0ffb622256766f5d2360a53f46e9c348ed3e.cairo" + }, + "parent_location": [ + { + "end_col": 46, + "end_line": 31, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc20/IERC20.cairo" + }, + "start_col": 37, + "start_line": 31 + }, + "While handling calldata argument 'recipient'" + ], + "start_col": 1, + "start_line": 1 + } + }, + "390": { + "accessible_scopes": [ + "openzeppelin.token.erc20.IERC20", + "openzeppelin.token.erc20.IERC20.IERC20", + "openzeppelin.token.erc20.IERC20.IERC20.transferFrom" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 52, + "end_line": 3, + "input_file": { + "filename": "autogen/starknet/arg_processor/502707e41b9f24cc24d98a88f76cd4304e8e77c4465a6a9402a5f1a76177b453.cairo" + }, + "parent_location": [ + { + "end_col": 60, + "end_line": 31, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc20/IERC20.cairo" + }, + "start_col": 54, + "start_line": 31 + }, + "While handling calldata argument 'amount'" + ], + "start_col": 1, + "start_line": 3 + } + }, + "391": { + "accessible_scopes": [ + "openzeppelin.token.erc20.IERC20", + "openzeppelin.token.erc20.IERC20.IERC20", + "openzeppelin.token.erc20.IERC20.IERC20.transferFrom" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 52, + "end_line": 4, + "input_file": { + "filename": "autogen/starknet/arg_processor/502707e41b9f24cc24d98a88f76cd4304e8e77c4465a6a9402a5f1a76177b453.cairo" + }, + "parent_location": [ + { + "end_col": 60, + "end_line": 31, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc20/IERC20.cairo" + }, + "start_col": 54, + "start_line": 31 + }, + "While handling calldata argument 'amount'" + ], + "start_col": 1, + "start_line": 4 + } + }, + "392": { + "accessible_scopes": [ + "openzeppelin.token.erc20.IERC20", + "openzeppelin.token.erc20.IERC20.IERC20", + "openzeppelin.token.erc20.IERC20.IERC20.transferFrom" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 40, + "end_line": 5, + "input_file": { + "filename": "autogen/starknet/arg_processor/502707e41b9f24cc24d98a88f76cd4304e8e77c4465a6a9402a5f1a76177b453.cairo" + }, + "parent_location": [ + { + "end_col": 60, + "end_line": 31, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc20/IERC20.cairo" + }, + "parent_location": [ + { + "end_col": 33, + "end_line": 5, + "input_file": { + "filename": "autogen/starknet/contract_interface/IERC20/transferFrom/b016d077f46f58d4cffabd707b4d3495a859d0f543f418223b1ea57e409144f2.cairo" + }, + "parent_location": [ + { + "end_col": 22, + "end_line": 31, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc20/IERC20.cairo" + }, + "start_col": 10, + "start_line": 31 + }, + "While handling contract interface function:" + ], + "start_col": 19, + "start_line": 5 + }, + "While expanding the reference '__calldata_ptr' in:" + ], + "start_col": 54, + "start_line": 31 + }, + "While handling calldata argument 'amount'" + ], + "start_col": 22, + "start_line": 5 + } + }, + "394": { + "accessible_scopes": [ + "openzeppelin.token.erc20.IERC20", + "openzeppelin.token.erc20.IERC20.IERC20", + "openzeppelin.token.erc20.IERC20.IERC20.transferFrom" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 37, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/contract_interface/IERC20/transferFrom/f8c7980cd46ed6d764c999318b5692736b724dc08c1bf96e92d1b77ddf37af10.cairo" + }, + "parent_location": [ + { + "end_col": 22, + "end_line": 31, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc20/IERC20.cairo" + }, + "parent_location": [ + { + "end_col": 38, + "end_line": 42, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/starknet/common/syscalls.cairo" + }, + "parent_location": [ + { + "end_col": 33, + "end_line": 6, + "input_file": { + "filename": "autogen/starknet/contract_interface/IERC20/transferFrom/b016d077f46f58d4cffabd707b4d3495a859d0f543f418223b1ea57e409144f2.cairo" + }, + "parent_location": [ + { + "end_col": 22, + "end_line": 31, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc20/IERC20.cairo" + }, + "start_col": 10, + "start_line": 31 + }, + "While handling contract interface function:" + ], + "start_col": 31, + "start_line": 2 + }, + "While trying to retrieve the implicit argument 'syscall_ptr' in:" + ], + "start_col": 20, + "start_line": 42 + }, + "While expanding the reference 'syscall_ptr' in:" + ], + "start_col": 10, + "start_line": 31 + }, + "While handling contract interface function:" + ], + "start_col": 19, + "start_line": 1 + } + }, + "395": { + "accessible_scopes": [ + "openzeppelin.token.erc20.IERC20", + "openzeppelin.token.erc20.IERC20.IERC20", + "openzeppelin.token.erc20.IERC20.IERC20.transferFrom" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 27, + "end_line": 2, + "input_file": { + "filename": "autogen/starknet/contract_interface/IERC20/transferFrom/f8c7980cd46ed6d764c999318b5692736b724dc08c1bf96e92d1b77ddf37af10.cairo" + }, + "parent_location": [ + { + "end_col": 22, + "end_line": 31, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc20/IERC20.cairo" + }, + "parent_location": [ + { + "end_col": 38, + "end_line": 3, + "input_file": { + "filename": "autogen/starknet/contract_interface/IERC20/transferFrom/b016d077f46f58d4cffabd707b4d3495a859d0f543f418223b1ea57e409144f2.cairo" + }, + "parent_location": [ + { + "end_col": 22, + "end_line": 31, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc20/IERC20.cairo" + }, + "start_col": 10, + "start_line": 31 + }, + "While handling contract interface function:" + ], + "start_col": 22, + "start_line": 3 + }, + "While expanding the reference 'contract_address' in:" + ], + "start_col": 10, + "start_line": 31 + }, + "While handling contract interface function:" + ], + "start_col": 5, + "start_line": 2 + } + }, + "396": { + "accessible_scopes": [ + "openzeppelin.token.erc20.IERC20", + "openzeppelin.token.erc20.IERC20.IERC20", + "openzeppelin.token.erc20.IERC20.IERC20.transferFrom" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 44, + "end_line": 4, + "input_file": { + "filename": "autogen/starknet/contract_interface/IERC20/transferFrom/b016d077f46f58d4cffabd707b4d3495a859d0f543f418223b1ea57e409144f2.cairo" + }, + "parent_location": [ + { + "end_col": 22, + "end_line": 31, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc20/IERC20.cairo" + }, + "start_col": 10, + "start_line": 31 + }, + "While handling contract interface function:" + ], + "start_col": 23, + "start_line": 4 + } + }, + "398": { + "accessible_scopes": [ + "openzeppelin.token.erc20.IERC20", + "openzeppelin.token.erc20.IERC20.IERC20", + "openzeppelin.token.erc20.IERC20.IERC20.transferFrom" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 54, + "end_line": 5, + "input_file": { + "filename": "autogen/starknet/contract_interface/IERC20/transferFrom/b016d077f46f58d4cffabd707b4d3495a859d0f543f418223b1ea57e409144f2.cairo" + }, + "parent_location": [ + { + "end_col": 22, + "end_line": 31, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc20/IERC20.cairo" + }, + "start_col": 10, + "start_line": 31 + }, + "While handling contract interface function:" + ], + "start_col": 19, + "start_line": 5 + } + }, + "399": { + "accessible_scopes": [ + "openzeppelin.token.erc20.IERC20", + "openzeppelin.token.erc20.IERC20.IERC20", + "openzeppelin.token.erc20.IERC20.IERC20.transferFrom" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 30, + "end_line": 3, + "input_file": { + "filename": "autogen/starknet/contract_interface/IERC20/transferFrom/64f7842b108e76706927b78270ac73c789c558c54431b3359e4441e63ec2a868.cairo" + }, + "parent_location": [ + { + "end_col": 22, + "end_line": 31, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc20/IERC20.cairo" + }, + "parent_location": [ + { + "end_col": 32, + "end_line": 6, + "input_file": { + "filename": "autogen/starknet/contract_interface/IERC20/transferFrom/b016d077f46f58d4cffabd707b4d3495a859d0f543f418223b1ea57e409144f2.cairo" + }, + "parent_location": [ + { + "end_col": 22, + "end_line": 31, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc20/IERC20.cairo" + }, + "start_col": 10, + "start_line": 31 + }, + "While handling contract interface function:" + ], + "start_col": 14, + "start_line": 6 + }, + "While expanding the reference 'calldata_ptr_start' in:" + ], + "start_col": 10, + "start_line": 31 + }, + "While handling contract interface function:" + ], + "start_col": 12, + "start_line": 3 + } + }, + "400": { + "accessible_scopes": [ + "openzeppelin.token.erc20.IERC20", + "openzeppelin.token.erc20.IERC20.IERC20", + "openzeppelin.token.erc20.IERC20.IERC20.transferFrom" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 33, + "end_line": 6, + "input_file": { + "filename": "autogen/starknet/contract_interface/IERC20/transferFrom/b016d077f46f58d4cffabd707b4d3495a859d0f543f418223b1ea57e409144f2.cairo" + }, + "parent_location": [ + { + "end_col": 22, + "end_line": 31, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc20/IERC20.cairo" + }, + "start_col": 10, + "start_line": 31 + }, + "While handling contract interface function:" + ], + "start_col": 31, + "start_line": 2 + } + }, + "402": { + "accessible_scopes": [ + "openzeppelin.token.erc20.IERC20", + "openzeppelin.token.erc20.IERC20.IERC20", + "openzeppelin.token.erc20.IERC20.IERC20.transferFrom" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 48, + "end_line": 2, + "input_file": { + "filename": "autogen/starknet/arg_processor/8ca78f1082aaedcf62c13aff4dffe5943aa04164c60cb6d9f03916c0319201df.cairo" + }, + "parent_location": [ + { + "end_col": 88, + "end_line": 31, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc20/IERC20.cairo" + }, + "parent_location": [ + { + "end_col": 53, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/arg_processor/accb388bcbbace5b6218198851efaad2a781c1339e305a37fab51afe90a3194a.cairo" + }, + "parent_location": [ + { + "end_col": 22, + "end_line": 31, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc20/IERC20.cairo" + }, + "parent_location": [ + { + "end_col": 49, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/arg_processor/96447016176d161dae83f414c4d3e33e78856e0ef69bc33f8d419f1c9b90f9c5.cairo" + }, + "parent_location": [ + { + "end_col": 22, + "end_line": 31, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc20/IERC20.cairo" + }, + "start_col": 10, + "start_line": 31 + }, + "While handling return values of" + ], + "start_col": 23, + "start_line": 1 + }, + "While expanding the reference '__return_value_actual_size' in:" + ], + "start_col": 10, + "start_line": 31 + }, + "While handling return values of" + ], + "start_col": 35, + "start_line": 1 + }, + "While expanding the reference '__return_value_ptr' in:" + ], + "start_col": 75, + "start_line": 31 + }, + "While handling return value 'success'" + ], + "start_col": 26, + "start_line": 2 + } + }, + "404": { + "accessible_scopes": [ + "openzeppelin.token.erc20.IERC20", + "openzeppelin.token.erc20.IERC20.IERC20", + "openzeppelin.token.erc20.IERC20.IERC20.transferFrom" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 50, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/arg_processor/96447016176d161dae83f414c4d3e33e78856e0ef69bc33f8d419f1c9b90f9c5.cairo" + }, + "parent_location": [ + { + "end_col": 22, + "end_line": 31, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc20/IERC20.cairo" + }, + "start_col": 10, + "start_line": 31 + }, + "While handling return values of" + ], + "start_col": 1, + "start_line": 1 + } + }, + "405": { + "accessible_scopes": [ + "openzeppelin.token.erc20.IERC20", + "openzeppelin.token.erc20.IERC20.IERC20", + "openzeppelin.token.erc20.IERC20.IERC20.transferFrom" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 38, + "end_line": 42, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/starknet/common/syscalls.cairo" + }, + "parent_location": [ + { + "end_col": 33, + "end_line": 6, + "input_file": { + "filename": "autogen/starknet/contract_interface/IERC20/transferFrom/b016d077f46f58d4cffabd707b4d3495a859d0f543f418223b1ea57e409144f2.cairo" + }, + "parent_location": [ + { + "end_col": 22, + "end_line": 31, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc20/IERC20.cairo" + }, + "parent_location": [ + { + "end_col": 37, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/contract_interface/IERC20/transferFrom/f8c7980cd46ed6d764c999318b5692736b724dc08c1bf96e92d1b77ddf37af10.cairo" + }, + "parent_location": [ + { + "end_col": 22, + "end_line": 31, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc20/IERC20.cairo" + }, + "parent_location": [ + { + "end_col": 46, + "end_line": 2, + "input_file": { + "filename": "autogen/starknet/contract_interface/IERC20/transferFrom/18abb29d0a089e1c243e4bd2b316687e6162b3321c14733ee37389da5d8b074f.cairo" + }, + "parent_location": [ + { + "end_col": 22, + "end_line": 31, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc20/IERC20.cairo" + }, + "start_col": 10, + "start_line": 31 + }, + "While handling contract interface function:" + ], + "start_col": 1, + "start_line": 2 + }, + "While trying to retrieve the implicit argument 'syscall_ptr' in:" + ], + "start_col": 10, + "start_line": 31 + }, + "While handling contract interface function:" + ], + "start_col": 19, + "start_line": 1 + }, + "While expanding the reference 'syscall_ptr' in:" + ], + "start_col": 10, + "start_line": 31 + }, + "While handling contract interface function:" + ], + "start_col": 31, + "start_line": 2 + }, + "While trying to update the implicit return value 'syscall_ptr' in:" + ], + "start_col": 20, + "start_line": 42 + } + }, + "406": { + "accessible_scopes": [ + "openzeppelin.token.erc20.IERC20", + "openzeppelin.token.erc20.IERC20.IERC20", + "openzeppelin.token.erc20.IERC20.IERC20.transferFrom" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 54, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/contract_interface/IERC20/transferFrom/f8c7980cd46ed6d764c999318b5692736b724dc08c1bf96e92d1b77ddf37af10.cairo" + }, + "parent_location": [ + { + "end_col": 22, + "end_line": 31, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc20/IERC20.cairo" + }, + "parent_location": [ + { + "end_col": 54, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/contract_interface/IERC20/transferFrom/f8c7980cd46ed6d764c999318b5692736b724dc08c1bf96e92d1b77ddf37af10.cairo" + }, + "parent_location": [ + { + "end_col": 22, + "end_line": 31, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc20/IERC20.cairo" + }, + "parent_location": [ + { + "end_col": 46, + "end_line": 2, + "input_file": { + "filename": "autogen/starknet/contract_interface/IERC20/transferFrom/18abb29d0a089e1c243e4bd2b316687e6162b3321c14733ee37389da5d8b074f.cairo" + }, + "parent_location": [ + { + "end_col": 22, + "end_line": 31, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc20/IERC20.cairo" + }, + "start_col": 10, + "start_line": 31 + }, + "While handling contract interface function:" + ], + "start_col": 1, + "start_line": 2 + }, + "While trying to retrieve the implicit argument 'range_check_ptr' in:" + ], + "start_col": 10, + "start_line": 31 + }, + "While handling contract interface function:" + ], + "start_col": 39, + "start_line": 1 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 10, + "start_line": 31 + }, + "While handling contract interface function:" + ], + "start_col": 39, + "start_line": 1 + } + }, + "407": { + "accessible_scopes": [ + "openzeppelin.token.erc20.IERC20", + "openzeppelin.token.erc20.IERC20.IERC20", + "openzeppelin.token.erc20.IERC20.IERC20.transferFrom" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 54, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/arg_processor/8ca78f1082aaedcf62c13aff4dffe5943aa04164c60cb6d9f03916c0319201df.cairo" + }, + "parent_location": [ + { + "end_col": 88, + "end_line": 31, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc20/IERC20.cairo" + }, + "parent_location": [ + { + "end_col": 43, + "end_line": 2, + "input_file": { + "filename": "autogen/starknet/contract_interface/IERC20/transferFrom/18abb29d0a089e1c243e4bd2b316687e6162b3321c14733ee37389da5d8b074f.cairo" + }, + "parent_location": [ + { + "end_col": 22, + "end_line": 31, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc20/IERC20.cairo" + }, + "start_col": 10, + "start_line": 31 + }, + "While handling contract interface function:" + ], + "start_col": 17, + "start_line": 2 + }, + "While expanding the reference '__return_value_arg_success' in:" + ], + "start_col": 75, + "start_line": 31 + }, + "While handling return value 'success'" + ], + "start_col": 34, + "start_line": 1 + } + }, + "408": { + "accessible_scopes": [ + "openzeppelin.token.erc20.IERC20", + "openzeppelin.token.erc20.IERC20.IERC20", + "openzeppelin.token.erc20.IERC20.IERC20.transferFrom" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 46, + "end_line": 2, + "input_file": { + "filename": "autogen/starknet/contract_interface/IERC20/transferFrom/18abb29d0a089e1c243e4bd2b316687e6162b3321c14733ee37389da5d8b074f.cairo" + }, + "parent_location": [ + { + "end_col": 22, + "end_line": 31, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc20/IERC20.cairo" + }, + "start_col": 10, + "start_line": 31 + }, + "While handling contract interface function:" + ], + "start_col": 1, + "start_line": 2 + } + }, + "409": { + "accessible_scopes": [ + "utils.merkle_tree", + "utils.merkle_tree.merkle_verify" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 38, + "end_line": 12, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/utils/merkle_tree.cairo" + }, + "parent_location": [ + { + "end_col": 44, + "end_line": 36, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/utils/merkle_tree.cairo" + }, + "parent_location": [ + { + "end_col": 66, + "end_line": 15, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/utils/merkle_tree.cairo" + }, + "start_col": 23, + "start_line": 15 + }, + "While trying to retrieve the implicit argument 'syscall_ptr' in:" + ], + "start_col": 26, + "start_line": 36 + }, + "While expanding the reference 'syscall_ptr' in:" + ], + "start_col": 20, + "start_line": 12 + } + }, + "410": { + "accessible_scopes": [ + "utils.merkle_tree", + "utils.merkle_tree.merkle_verify" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 66, + "end_line": 12, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/utils/merkle_tree.cairo" + }, + "parent_location": [ + { + "end_col": 72, + "end_line": 36, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/utils/merkle_tree.cairo" + }, + "parent_location": [ + { + "end_col": 66, + "end_line": 15, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/utils/merkle_tree.cairo" + }, + "start_col": 23, + "start_line": 15 + }, + "While trying to retrieve the implicit argument 'pedersen_ptr' in:" + ], + "start_col": 46, + "start_line": 36 + }, + "While expanding the reference 'pedersen_ptr' in:" + ], + "start_col": 40, + "start_line": 12 + } + }, + "411": { + "accessible_scopes": [ + "utils.merkle_tree", + "utils.merkle_tree.merkle_verify" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 83, + "end_line": 12, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/utils/merkle_tree.cairo" + }, + "parent_location": [ + { + "end_col": 89, + "end_line": 36, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/utils/merkle_tree.cairo" + }, + "parent_location": [ + { + "end_col": 66, + "end_line": 15, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/utils/merkle_tree.cairo" + }, + "start_col": 23, + "start_line": 15 + }, + "While trying to retrieve the implicit argument 'range_check_ptr' in:" + ], + "start_col": 74, + "start_line": 36 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 68, + "start_line": 12 + } + }, + "412": { + "accessible_scopes": [ + "utils.merkle_tree", + "utils.merkle_tree.merkle_verify" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 15, + "end_line": 13, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/utils/merkle_tree.cairo" + }, + "parent_location": [ + { + "end_col": 47, + "end_line": 15, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/utils/merkle_tree.cairo" + }, + "start_col": 43, + "start_line": 15 + }, + "While expanding the reference 'leaf' in:" + ], + "start_col": 5, + "start_line": 13 + } + }, + "413": { + "accessible_scopes": [ + "utils.merkle_tree", + "utils.merkle_tree.merkle_verify" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 44, + "end_line": 13, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/utils/merkle_tree.cairo" + }, + "parent_location": [ + { + "end_col": 58, + "end_line": 15, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/utils/merkle_tree.cairo" + }, + "start_col": 49, + "start_line": 15 + }, + "While expanding the reference 'proof_len' in:" + ], + "start_col": 29, + "start_line": 13 + } + }, + "414": { + "accessible_scopes": [ + "utils.merkle_tree", + "utils.merkle_tree.merkle_verify" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 58, + "end_line": 13, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/utils/merkle_tree.cairo" + }, + "parent_location": [ + { + "end_col": 65, + "end_line": 15, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/utils/merkle_tree.cairo" + }, + "start_col": 60, + "start_line": 15 + }, + "While expanding the reference 'proof' in:" + ], + "start_col": 46, + "start_line": 13 + } + }, + "415": { + "accessible_scopes": [ + "utils.merkle_tree", + "utils.merkle_tree.merkle_verify" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 66, + "end_line": 15, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/utils/merkle_tree.cairo" + }, + "start_col": 23, + "start_line": 15 + } + }, + "417": { + "accessible_scopes": [ + "utils.merkle_tree", + "utils.merkle_tree.merkle_verify" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 26, + "end_line": 17, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/utils/merkle_tree.cairo" + }, + "start_col": 9, + "start_line": 17 + } + }, + "418": { + "accessible_scopes": [ + "utils.merkle_tree", + "utils.merkle_tree.merkle_verify" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 7, + "end_line": 17, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/utils/merkle_tree.cairo" + }, + "start_col": 5, + "start_line": 17 + } + }, + "420": { + "accessible_scopes": [ + "utils.merkle_tree", + "utils.merkle_tree.merkle_verify" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 44, + "end_line": 36, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/utils/merkle_tree.cairo" + }, + "parent_location": [ + { + "end_col": 66, + "end_line": 15, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/utils/merkle_tree.cairo" + }, + "parent_location": [ + { + "end_col": 38, + "end_line": 12, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/utils/merkle_tree.cairo" + }, + "parent_location": [ + { + "end_col": 21, + "end_line": 18, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/utils/merkle_tree.cairo" + }, + "start_col": 9, + "start_line": 18 + }, + "While trying to retrieve the implicit argument 'syscall_ptr' in:" + ], + "start_col": 20, + "start_line": 12 + }, + "While expanding the reference 'syscall_ptr' in:" + ], + "start_col": 23, + "start_line": 15 + }, + "While trying to update the implicit return value 'syscall_ptr' in:" + ], + "start_col": 26, + "start_line": 36 + } + }, + "421": { + "accessible_scopes": [ + "utils.merkle_tree", + "utils.merkle_tree.merkle_verify" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 72, + "end_line": 36, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/utils/merkle_tree.cairo" + }, + "parent_location": [ + { + "end_col": 66, + "end_line": 15, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/utils/merkle_tree.cairo" + }, + "parent_location": [ + { + "end_col": 66, + "end_line": 12, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/utils/merkle_tree.cairo" + }, + "parent_location": [ + { + "end_col": 21, + "end_line": 18, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/utils/merkle_tree.cairo" + }, + "start_col": 9, + "start_line": 18 + }, + "While trying to retrieve the implicit argument 'pedersen_ptr' in:" + ], + "start_col": 40, + "start_line": 12 + }, + "While expanding the reference 'pedersen_ptr' in:" + ], + "start_col": 23, + "start_line": 15 + }, + "While trying to update the implicit return value 'pedersen_ptr' in:" + ], + "start_col": 46, + "start_line": 36 + } + }, + "422": { + "accessible_scopes": [ + "utils.merkle_tree", + "utils.merkle_tree.merkle_verify" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 89, + "end_line": 36, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/utils/merkle_tree.cairo" + }, + "parent_location": [ + { + "end_col": 66, + "end_line": 15, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/utils/merkle_tree.cairo" + }, + "parent_location": [ + { + "end_col": 83, + "end_line": 12, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/utils/merkle_tree.cairo" + }, + "parent_location": [ + { + "end_col": 21, + "end_line": 18, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/utils/merkle_tree.cairo" + }, + "start_col": 9, + "start_line": 18 + }, + "While trying to retrieve the implicit argument 'range_check_ptr' in:" + ], + "start_col": 68, + "start_line": 12 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 23, + "start_line": 15 + }, + "While trying to update the implicit return value 'range_check_ptr' in:" + ], + "start_col": 74, + "start_line": 36 + } + }, + "423": { + "accessible_scopes": [ + "utils.merkle_tree", + "utils.merkle_tree.merkle_verify" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 18, + "end_line": 18, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/utils/merkle_tree.cairo" + }, + "start_col": 17, + "start_line": 18 + } + }, + "425": { + "accessible_scopes": [ + "utils.merkle_tree", + "utils.merkle_tree.merkle_verify" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 21, + "end_line": 18, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/utils/merkle_tree.cairo" + }, + "start_col": 9, + "start_line": 18 + } + }, + "426": { + "accessible_scopes": [ + "utils.merkle_tree", + "utils.merkle_tree.merkle_verify" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 44, + "end_line": 36, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/utils/merkle_tree.cairo" + }, + "parent_location": [ + { + "end_col": 66, + "end_line": 15, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/utils/merkle_tree.cairo" + }, + "parent_location": [ + { + "end_col": 38, + "end_line": 12, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/utils/merkle_tree.cairo" + }, + "parent_location": [ + { + "end_col": 21, + "end_line": 20, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/utils/merkle_tree.cairo" + }, + "start_col": 9, + "start_line": 20 + }, + "While trying to retrieve the implicit argument 'syscall_ptr' in:" + ], + "start_col": 20, + "start_line": 12 + }, + "While expanding the reference 'syscall_ptr' in:" + ], + "start_col": 23, + "start_line": 15 + }, + "While trying to update the implicit return value 'syscall_ptr' in:" + ], + "start_col": 26, + "start_line": 36 + } + }, + "427": { + "accessible_scopes": [ + "utils.merkle_tree", + "utils.merkle_tree.merkle_verify" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 72, + "end_line": 36, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/utils/merkle_tree.cairo" + }, + "parent_location": [ + { + "end_col": 66, + "end_line": 15, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/utils/merkle_tree.cairo" + }, + "parent_location": [ + { + "end_col": 66, + "end_line": 12, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/utils/merkle_tree.cairo" + }, + "parent_location": [ + { + "end_col": 21, + "end_line": 20, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/utils/merkle_tree.cairo" + }, + "start_col": 9, + "start_line": 20 + }, + "While trying to retrieve the implicit argument 'pedersen_ptr' in:" + ], + "start_col": 40, + "start_line": 12 + }, + "While expanding the reference 'pedersen_ptr' in:" + ], + "start_col": 23, + "start_line": 15 + }, + "While trying to update the implicit return value 'pedersen_ptr' in:" + ], + "start_col": 46, + "start_line": 36 + } + }, + "428": { + "accessible_scopes": [ + "utils.merkle_tree", + "utils.merkle_tree.merkle_verify" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 89, + "end_line": 36, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/utils/merkle_tree.cairo" + }, + "parent_location": [ + { + "end_col": 66, + "end_line": 15, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/utils/merkle_tree.cairo" + }, + "parent_location": [ + { + "end_col": 83, + "end_line": 12, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/utils/merkle_tree.cairo" + }, + "parent_location": [ + { + "end_col": 21, + "end_line": 20, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/utils/merkle_tree.cairo" + }, + "start_col": 9, + "start_line": 20 + }, + "While trying to retrieve the implicit argument 'range_check_ptr' in:" + ], + "start_col": 68, + "start_line": 12 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 23, + "start_line": 15 + }, + "While trying to update the implicit return value 'range_check_ptr' in:" + ], + "start_col": 74, + "start_line": 36 + } + }, + "429": { + "accessible_scopes": [ + "utils.merkle_tree", + "utils.merkle_tree.merkle_verify" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 18, + "end_line": 20, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/utils/merkle_tree.cairo" + }, + "start_col": 17, + "start_line": 20 + } + }, + "431": { + "accessible_scopes": [ + "utils.merkle_tree", + "utils.merkle_tree.merkle_verify" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 21, + "end_line": 20, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/utils/merkle_tree.cairo" + }, + "start_col": 9, + "start_line": 20 + } + }, + "432": { + "accessible_scopes": [ + "utils.merkle_tree", + "utils.merkle_tree._hash_sorted" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 58, + "end_line": 24, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/utils/merkle_tree.cairo" + }, + "parent_location": [ + { + "end_col": 32, + "end_line": 79, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/math_cmp.cairo" + }, + "parent_location": [ + { + "end_col": 30, + "end_line": 25, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/utils/merkle_tree.cairo" + }, + "start_col": 14, + "start_line": 25 + }, + "While trying to retrieve the implicit argument 'range_check_ptr' in:" + ], + "start_col": 17, + "start_line": 79 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 43, + "start_line": 24 + } + }, + "433": { + "accessible_scopes": [ + "utils.merkle_tree", + "utils.merkle_tree._hash_sorted" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 61, + "end_line": 24, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/utils/merkle_tree.cairo" + }, + "parent_location": [ + { + "end_col": 26, + "end_line": 25, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/utils/merkle_tree.cairo" + }, + "start_col": 25, + "start_line": 25 + }, + "While expanding the reference 'a' in:" + ], + "start_col": 60, + "start_line": 24 + } + }, + "434": { + "accessible_scopes": [ + "utils.merkle_tree", + "utils.merkle_tree._hash_sorted" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 64, + "end_line": 24, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/utils/merkle_tree.cairo" + }, + "parent_location": [ + { + "end_col": 29, + "end_line": 25, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/utils/merkle_tree.cairo" + }, + "start_col": 28, + "start_line": 25 + }, + "While expanding the reference 'b' in:" + ], + "start_col": 63, + "start_line": 24 + } + }, + "435": { + "accessible_scopes": [ + "utils.merkle_tree", + "utils.merkle_tree._hash_sorted" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 30, + "end_line": 25, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/utils/merkle_tree.cairo" + }, + "start_col": 14, + "start_line": 25 + } + }, + "437": { + "accessible_scopes": [ + "utils.merkle_tree", + "utils.merkle_tree._hash_sorted" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 16, + "end_line": 27, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/utils/merkle_tree.cairo" + }, + "start_col": 9, + "start_line": 27 + } + }, + "439": { + "accessible_scopes": [ + "utils.merkle_tree", + "utils.merkle_tree._hash_sorted" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 7, + "end_line": 27, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/utils/merkle_tree.cairo" + }, + "start_col": 5, + "start_line": 27 + } + }, + "441": { + "accessible_scopes": [ + "utils.merkle_tree", + "utils.merkle_tree._hash_sorted" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 41, + "end_line": 24, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/utils/merkle_tree.cairo" + }, + "parent_location": [ + { + "end_col": 42, + "end_line": 28, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/utils/merkle_tree.cairo" + }, + "start_col": 34, + "start_line": 28 + }, + "While expanding the reference 'hash_ptr' in:" + ], + "start_col": 19, + "start_line": 24 + } + }, + "442": { + "accessible_scopes": [ + "utils.merkle_tree", + "utils.merkle_tree._hash_sorted" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 61, + "end_line": 24, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/utils/merkle_tree.cairo" + }, + "parent_location": [ + { + "end_col": 45, + "end_line": 28, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/utils/merkle_tree.cairo" + }, + "start_col": 44, + "start_line": 28 + }, + "While expanding the reference 'a' in:" + ], + "start_col": 60, + "start_line": 24 + } + }, + "443": { + "accessible_scopes": [ + "utils.merkle_tree", + "utils.merkle_tree._hash_sorted" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 64, + "end_line": 24, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/utils/merkle_tree.cairo" + }, + "parent_location": [ + { + "end_col": 48, + "end_line": 28, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/utils/merkle_tree.cairo" + }, + "start_col": 47, + "start_line": 28 + }, + "While expanding the reference 'b' in:" + ], + "start_col": 63, + "start_line": 24 + } + }, + "444": { + "accessible_scopes": [ + "utils.merkle_tree", + "utils.merkle_tree._hash_sorted" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 49, + "end_line": 28, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/utils/merkle_tree.cairo" + }, + "start_col": 19, + "start_line": 28 + } + }, + "446": { + "accessible_scopes": [ + "utils.merkle_tree", + "utils.merkle_tree._hash_sorted" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 7, + "end_line": 27, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/utils/merkle_tree.cairo" + }, + "start_col": 5, + "start_line": 27 + } + }, + "448": { + "accessible_scopes": [ + "utils.merkle_tree", + "utils.merkle_tree._hash_sorted" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 41, + "end_line": 24, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/utils/merkle_tree.cairo" + }, + "parent_location": [ + { + "end_col": 42, + "end_line": 30, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/utils/merkle_tree.cairo" + }, + "start_col": 34, + "start_line": 30 + }, + "While expanding the reference 'hash_ptr' in:" + ], + "start_col": 19, + "start_line": 24 + } + }, + "449": { + "accessible_scopes": [ + "utils.merkle_tree", + "utils.merkle_tree._hash_sorted" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 64, + "end_line": 24, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/utils/merkle_tree.cairo" + }, + "parent_location": [ + { + "end_col": 45, + "end_line": 30, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/utils/merkle_tree.cairo" + }, + "start_col": 44, + "start_line": 30 + }, + "While expanding the reference 'b' in:" + ], + "start_col": 63, + "start_line": 24 + } + }, + "450": { + "accessible_scopes": [ + "utils.merkle_tree", + "utils.merkle_tree._hash_sorted" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 61, + "end_line": 24, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/utils/merkle_tree.cairo" + }, + "parent_location": [ + { + "end_col": 48, + "end_line": 30, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/utils/merkle_tree.cairo" + }, + "start_col": 47, + "start_line": 30 + }, + "While expanding the reference 'a' in:" + ], + "start_col": 60, + "start_line": 24 + } + }, + "451": { + "accessible_scopes": [ + "utils.merkle_tree", + "utils.merkle_tree._hash_sorted" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 49, + "end_line": 30, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/utils/merkle_tree.cairo" + }, + "start_col": 19, + "start_line": 30 + } + }, + "453": { + "accessible_scopes": [ + "utils.merkle_tree", + "utils.merkle_tree._hash_sorted" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 42, + "end_line": 30, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/utils/merkle_tree.cairo" + }, + "parent_location": [ + { + "end_col": 41, + "end_line": 24, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/utils/merkle_tree.cairo" + }, + "parent_location": [ + { + "end_col": 17, + "end_line": 32, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/utils/merkle_tree.cairo" + }, + "start_col": 5, + "start_line": 32 + }, + "While trying to retrieve the implicit argument 'hash_ptr' in:" + ], + "start_col": 19, + "start_line": 24 + }, + "While expanding the reference 'hash_ptr' in:" + ], + "start_col": 34, + "start_line": 30 + } + }, + "454": { + "accessible_scopes": [ + "utils.merkle_tree", + "utils.merkle_tree._hash_sorted" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 32, + "end_line": 79, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/math_cmp.cairo" + }, + "parent_location": [ + { + "end_col": 30, + "end_line": 25, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/utils/merkle_tree.cairo" + }, + "parent_location": [ + { + "end_col": 58, + "end_line": 24, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/utils/merkle_tree.cairo" + }, + "parent_location": [ + { + "end_col": 17, + "end_line": 32, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/utils/merkle_tree.cairo" + }, + "start_col": 5, + "start_line": 32 + }, + "While trying to retrieve the implicit argument 'range_check_ptr' in:" + ], + "start_col": 43, + "start_line": 24 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 14, + "start_line": 25 + }, + "While trying to update the implicit return value 'range_check_ptr' in:" + ], + "start_col": 17, + "start_line": 79 + } + }, + "455": { + "accessible_scopes": [ + "utils.merkle_tree", + "utils.merkle_tree._hash_sorted" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 15, + "end_line": 30, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/utils/merkle_tree.cairo" + }, + "parent_location": [ + { + "end_col": 14, + "end_line": 32, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/utils/merkle_tree.cairo" + }, + "start_col": 13, + "start_line": 32 + }, + "While expanding the reference 'n' in:" + ], + "start_col": 14, + "start_line": 30 + } + }, + "456": { + "accessible_scopes": [ + "utils.merkle_tree", + "utils.merkle_tree._hash_sorted" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 17, + "end_line": 32, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/utils/merkle_tree.cairo" + }, + "start_col": 5, + "start_line": 32 + } + }, + "457": { + "accessible_scopes": [ + "utils.merkle_tree", + "utils.merkle_tree._merkle_verify_body" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 18, + "end_line": 39, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/utils/merkle_tree.cairo" + }, + "start_col": 5, + "start_line": 39 + } + }, + "459": { + "accessible_scopes": [ + "utils.merkle_tree", + "utils.merkle_tree._merkle_verify_body" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 7, + "end_line": 41, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/utils/merkle_tree.cairo" + }, + "start_col": 5, + "start_line": 41 + } + }, + "461": { + "accessible_scopes": [ + "utils.merkle_tree", + "utils.merkle_tree._merkle_verify_body" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 44, + "end_line": 36, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/utils/merkle_tree.cairo" + }, + "parent_location": [ + { + "end_col": 44, + "end_line": 36, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/utils/merkle_tree.cairo" + }, + "parent_location": [ + { + "end_col": 24, + "end_line": 42, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/utils/merkle_tree.cairo" + }, + "start_col": 9, + "start_line": 42 + }, + "While trying to retrieve the implicit argument 'syscall_ptr' in:" + ], + "start_col": 26, + "start_line": 36 + }, + "While expanding the reference 'syscall_ptr' in:" + ], + "start_col": 26, + "start_line": 36 + } + }, + "462": { + "accessible_scopes": [ + "utils.merkle_tree", + "utils.merkle_tree._merkle_verify_body" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 72, + "end_line": 36, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/utils/merkle_tree.cairo" + }, + "parent_location": [ + { + "end_col": 72, + "end_line": 36, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/utils/merkle_tree.cairo" + }, + "parent_location": [ + { + "end_col": 24, + "end_line": 42, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/utils/merkle_tree.cairo" + }, + "start_col": 9, + "start_line": 42 + }, + "While trying to retrieve the implicit argument 'pedersen_ptr' in:" + ], + "start_col": 46, + "start_line": 36 + }, + "While expanding the reference 'pedersen_ptr' in:" + ], + "start_col": 46, + "start_line": 36 + } + }, + "463": { + "accessible_scopes": [ + "utils.merkle_tree", + "utils.merkle_tree._merkle_verify_body" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 89, + "end_line": 36, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/utils/merkle_tree.cairo" + }, + "parent_location": [ + { + "end_col": 89, + "end_line": 36, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/utils/merkle_tree.cairo" + }, + "parent_location": [ + { + "end_col": 24, + "end_line": 42, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/utils/merkle_tree.cairo" + }, + "start_col": 9, + "start_line": 42 + }, + "While trying to retrieve the implicit argument 'range_check_ptr' in:" + ], + "start_col": 74, + "start_line": 36 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 74, + "start_line": 36 + } + }, + "464": { + "accessible_scopes": [ + "utils.merkle_tree", + "utils.merkle_tree._merkle_verify_body" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 15, + "end_line": 37, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/utils/merkle_tree.cairo" + }, + "parent_location": [ + { + "end_col": 21, + "end_line": 42, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/utils/merkle_tree.cairo" + }, + "start_col": 17, + "start_line": 42 + }, + "While expanding the reference 'curr' in:" + ], + "start_col": 5, + "start_line": 37 + } + }, + "465": { + "accessible_scopes": [ + "utils.merkle_tree", + "utils.merkle_tree._merkle_verify_body" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 24, + "end_line": 42, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/utils/merkle_tree.cairo" + }, + "start_col": 9, + "start_line": 42 + } + }, + "466": { + "accessible_scopes": [ + "utils.merkle_tree", + "utils.merkle_tree._merkle_verify_body" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 72, + "end_line": 36, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/utils/merkle_tree.cairo" + }, + "parent_location": [ + { + "end_col": 49, + "end_line": 45, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/utils/merkle_tree.cairo" + }, + "start_col": 37, + "start_line": 45 + }, + "While expanding the reference 'pedersen_ptr' in:" + ], + "start_col": 46, + "start_line": 36 + } + }, + "467": { + "accessible_scopes": [ + "utils.merkle_tree", + "utils.merkle_tree._merkle_verify_body" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 89, + "end_line": 36, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/utils/merkle_tree.cairo" + }, + "parent_location": [ + { + "end_col": 58, + "end_line": 24, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/utils/merkle_tree.cairo" + }, + "parent_location": [ + { + "end_col": 65, + "end_line": 45, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/utils/merkle_tree.cairo" + }, + "start_col": 15, + "start_line": 45 + }, + "While trying to retrieve the implicit argument 'range_check_ptr' in:" + ], + "start_col": 43, + "start_line": 24 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 74, + "start_line": 36 + } + }, + "468": { + "accessible_scopes": [ + "utils.merkle_tree", + "utils.merkle_tree._merkle_verify_body" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 15, + "end_line": 37, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/utils/merkle_tree.cairo" + }, + "parent_location": [ + { + "end_col": 55, + "end_line": 45, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/utils/merkle_tree.cairo" + }, + "start_col": 51, + "start_line": 45 + }, + "While expanding the reference 'curr' in:" + ], + "start_col": 5, + "start_line": 37 + } + }, + "469": { + "accessible_scopes": [ + "utils.merkle_tree", + "utils.merkle_tree._merkle_verify_body" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 64, + "end_line": 45, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/utils/merkle_tree.cairo" + }, + "start_col": 57, + "start_line": 45 + } + }, + "470": { + "accessible_scopes": [ + "utils.merkle_tree", + "utils.merkle_tree._merkle_verify_body" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 65, + "end_line": 45, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/utils/merkle_tree.cairo" + }, + "start_col": 15, + "start_line": 45 + } + }, + "472": { + "accessible_scopes": [ + "utils.merkle_tree", + "utils.merkle_tree._merkle_verify_body" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 44, + "end_line": 36, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/utils/merkle_tree.cairo" + }, + "parent_location": [ + { + "end_col": 44, + "end_line": 36, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/utils/merkle_tree.cairo" + }, + "parent_location": [ + { + "end_col": 65, + "end_line": 47, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/utils/merkle_tree.cairo" + }, + "start_col": 17, + "start_line": 47 + }, + "While trying to retrieve the implicit argument 'syscall_ptr' in:" + ], + "start_col": 26, + "start_line": 36 + }, + "While expanding the reference 'syscall_ptr' in:" + ], + "start_col": 26, + "start_line": 36 + } + }, + "473": { + "accessible_scopes": [ + "utils.merkle_tree", + "utils.merkle_tree._merkle_verify_body" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 49, + "end_line": 45, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/utils/merkle_tree.cairo" + }, + "parent_location": [ + { + "end_col": 72, + "end_line": 36, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/utils/merkle_tree.cairo" + }, + "parent_location": [ + { + "end_col": 65, + "end_line": 47, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/utils/merkle_tree.cairo" + }, + "start_col": 17, + "start_line": 47 + }, + "While trying to retrieve the implicit argument 'pedersen_ptr' in:" + ], + "start_col": 46, + "start_line": 36 + }, + "While expanding the reference 'pedersen_ptr' in:" + ], + "start_col": 37, + "start_line": 45 + } + }, + "474": { + "accessible_scopes": [ + "utils.merkle_tree", + "utils.merkle_tree._merkle_verify_body" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 58, + "end_line": 24, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/utils/merkle_tree.cairo" + }, + "parent_location": [ + { + "end_col": 65, + "end_line": 45, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/utils/merkle_tree.cairo" + }, + "parent_location": [ + { + "end_col": 89, + "end_line": 36, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/utils/merkle_tree.cairo" + }, + "parent_location": [ + { + "end_col": 65, + "end_line": 47, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/utils/merkle_tree.cairo" + }, + "start_col": 17, + "start_line": 47 + }, + "While trying to retrieve the implicit argument 'range_check_ptr' in:" + ], + "start_col": 74, + "start_line": 36 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 15, + "start_line": 45 + }, + "While trying to update the implicit return value 'range_check_ptr' in:" + ], + "start_col": 43, + "start_line": 24 + } + }, + "475": { + "accessible_scopes": [ + "utils.merkle_tree", + "utils.merkle_tree._merkle_verify_body" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 11, + "end_line": 45, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/utils/merkle_tree.cairo" + }, + "parent_location": [ + { + "end_col": 38, + "end_line": 47, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/utils/merkle_tree.cairo" + }, + "start_col": 37, + "start_line": 47 + }, + "While expanding the reference 'n' in:" + ], + "start_col": 10, + "start_line": 45 + } + }, + "476": { + "accessible_scopes": [ + "utils.merkle_tree", + "utils.merkle_tree._merkle_verify_body" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 53, + "end_line": 47, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/utils/merkle_tree.cairo" + }, + "start_col": 40, + "start_line": 47 + } + }, + "478": { + "accessible_scopes": [ + "utils.merkle_tree", + "utils.merkle_tree._merkle_verify_body" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 64, + "end_line": 47, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/utils/merkle_tree.cairo" + }, + "start_col": 55, + "start_line": 47 + } + }, + "480": { + "accessible_scopes": [ + "utils.merkle_tree", + "utils.merkle_tree._merkle_verify_body" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 65, + "end_line": 47, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/utils/merkle_tree.cairo" + }, + "start_col": 17, + "start_line": 47 + } + }, + "482": { + "accessible_scopes": [ + "utils.merkle_tree", + "utils.merkle_tree._merkle_verify_body" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 19, + "end_line": 48, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/utils/merkle_tree.cairo" + }, + "start_col": 5, + "start_line": 48 + } + }, + "483": { + "accessible_scopes": [ + "starksheet.library", + "starksheet.library.Starksheet_proxy_class_hash", + "starksheet.library.Starksheet_proxy_class_hash.addr" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 41, + "end_line": 7, + "input_file": { + "filename": "autogen/starknet/storage_var/Starksheet_proxy_class_hash/impl.cairo" + }, + "parent_location": [ + { + "end_col": 41, + "end_line": 7, + "input_file": { + "filename": "autogen/starknet/storage_var/Starksheet_proxy_class_hash/decl.cairo" + }, + "parent_location": [ + { + "end_col": 26, + "end_line": 9, + "input_file": { + "filename": "autogen/starknet/storage_var/Starksheet_proxy_class_hash/impl.cairo" + }, + "start_col": 9, + "start_line": 9 + }, + "While trying to retrieve the implicit argument 'pedersen_ptr' in:" + ], + "start_col": 15, + "start_line": 7 + }, + "While expanding the reference 'pedersen_ptr' in:" + ], + "start_col": 15, + "start_line": 7 + } + }, + "484": { + "accessible_scopes": [ + "starksheet.library", + "starksheet.library.Starksheet_proxy_class_hash", + "starksheet.library.Starksheet_proxy_class_hash.addr" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 58, + "end_line": 7, + "input_file": { + "filename": "autogen/starknet/storage_var/Starksheet_proxy_class_hash/impl.cairo" + }, + "parent_location": [ + { + "end_col": 58, + "end_line": 7, + "input_file": { + "filename": "autogen/starknet/storage_var/Starksheet_proxy_class_hash/decl.cairo" + }, + "parent_location": [ + { + "end_col": 26, + "end_line": 9, + "input_file": { + "filename": "autogen/starknet/storage_var/Starksheet_proxy_class_hash/impl.cairo" + }, + "start_col": 9, + "start_line": 9 + }, + "While trying to retrieve the implicit argument 'range_check_ptr' in:" + ], + "start_col": 43, + "start_line": 7 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 43, + "start_line": 7 + } + }, + "485": { + "accessible_scopes": [ + "starksheet.library", + "starksheet.library.Starksheet_proxy_class_hash", + "starksheet.library.Starksheet_proxy_class_hash.addr" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 94, + "end_line": 8, + "input_file": { + "filename": "autogen/starknet/storage_var/Starksheet_proxy_class_hash/impl.cairo" + }, + "parent_location": [ + { + "end_col": 24, + "end_line": 9, + "input_file": { + "filename": "autogen/starknet/storage_var/Starksheet_proxy_class_hash/impl.cairo" + }, + "start_col": 21, + "start_line": 9 + }, + "While expanding the reference 'res' in:" + ], + "start_col": 19, + "start_line": 8 + } + }, + "487": { + "accessible_scopes": [ + "starksheet.library", + "starksheet.library.Starksheet_proxy_class_hash", + "starksheet.library.Starksheet_proxy_class_hash.addr" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 26, + "end_line": 9, + "input_file": { + "filename": "autogen/starknet/storage_var/Starksheet_proxy_class_hash/impl.cairo" + }, + "start_col": 9, + "start_line": 9 + } + }, + "488": { + "accessible_scopes": [ + "starksheet.library", + "starksheet.library.Starksheet_proxy_class_hash", + "starksheet.library.Starksheet_proxy_class_hash.read" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 61, + "end_line": 12, + "input_file": { + "filename": "autogen/starknet/storage_var/Starksheet_proxy_class_hash/impl.cairo" + }, + "parent_location": [ + { + "end_col": 41, + "end_line": 7, + "input_file": { + "filename": "autogen/starknet/storage_var/Starksheet_proxy_class_hash/decl.cairo" + }, + "parent_location": [ + { + "end_col": 36, + "end_line": 13, + "input_file": { + "filename": "autogen/starknet/storage_var/Starksheet_proxy_class_hash/impl.cairo" + }, + "start_col": 30, + "start_line": 13 + }, + "While trying to retrieve the implicit argument 'pedersen_ptr' in:" + ], + "start_col": 15, + "start_line": 7 + }, + "While expanding the reference 'pedersen_ptr' in:" + ], + "start_col": 35, + "start_line": 12 + } + }, + "489": { + "accessible_scopes": [ + "starksheet.library", + "starksheet.library.Starksheet_proxy_class_hash", + "starksheet.library.Starksheet_proxy_class_hash.read" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 78, + "end_line": 12, + "input_file": { + "filename": "autogen/starknet/storage_var/Starksheet_proxy_class_hash/impl.cairo" + }, + "parent_location": [ + { + "end_col": 58, + "end_line": 7, + "input_file": { + "filename": "autogen/starknet/storage_var/Starksheet_proxy_class_hash/decl.cairo" + }, + "parent_location": [ + { + "end_col": 36, + "end_line": 13, + "input_file": { + "filename": "autogen/starknet/storage_var/Starksheet_proxy_class_hash/impl.cairo" + }, + "start_col": 30, + "start_line": 13 + }, + "While trying to retrieve the implicit argument 'range_check_ptr' in:" + ], + "start_col": 43, + "start_line": 7 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 63, + "start_line": 12 + } + }, + "490": { + "accessible_scopes": [ + "starksheet.library", + "starksheet.library.Starksheet_proxy_class_hash", + "starksheet.library.Starksheet_proxy_class_hash.read" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 36, + "end_line": 13, + "input_file": { + "filename": "autogen/starknet/storage_var/Starksheet_proxy_class_hash/impl.cairo" + }, + "start_col": 30, + "start_line": 13 + } + }, + "492": { + "accessible_scopes": [ + "starksheet.library", + "starksheet.library.Starksheet_proxy_class_hash", + "starksheet.library.Starksheet_proxy_class_hash.read" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 33, + "end_line": 12, + "input_file": { + "filename": "autogen/starknet/storage_var/Starksheet_proxy_class_hash/impl.cairo" + }, + "parent_location": [ + { + "end_col": 37, + "end_line": 352, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/starknet/common/syscalls.cairo" + }, + "parent_location": [ + { + "end_col": 75, + "end_line": 14, + "input_file": { + "filename": "autogen/starknet/storage_var/Starksheet_proxy_class_hash/impl.cairo" + }, + "start_col": 37, + "start_line": 14 + }, + "While trying to retrieve the implicit argument 'syscall_ptr' in:" + ], + "start_col": 19, + "start_line": 352 + }, + "While expanding the reference 'syscall_ptr' in:" + ], + "start_col": 15, + "start_line": 12 + } + }, + "493": { + "accessible_scopes": [ + "starksheet.library", + "starksheet.library.Starksheet_proxy_class_hash", + "starksheet.library.Starksheet_proxy_class_hash.read" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 26, + "end_line": 13, + "input_file": { + "filename": "autogen/starknet/storage_var/Starksheet_proxy_class_hash/impl.cairo" + }, + "parent_location": [ + { + "end_col": 70, + "end_line": 14, + "input_file": { + "filename": "autogen/starknet/storage_var/Starksheet_proxy_class_hash/impl.cairo" + }, + "start_col": 58, + "start_line": 14 + }, + "While expanding the reference 'storage_addr' in:" + ], + "start_col": 14, + "start_line": 13 + } + }, + "494": { + "accessible_scopes": [ + "starksheet.library", + "starksheet.library.Starksheet_proxy_class_hash", + "starksheet.library.Starksheet_proxy_class_hash.read" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 75, + "end_line": 14, + "input_file": { + "filename": "autogen/starknet/storage_var/Starksheet_proxy_class_hash/impl.cairo" + }, + "start_col": 37, + "start_line": 14 + } + }, + "496": { + "accessible_scopes": [ + "starksheet.library", + "starksheet.library.Starksheet_proxy_class_hash", + "starksheet.library.Starksheet_proxy_class_hash.read" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 37, + "end_line": 352, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/starknet/common/syscalls.cairo" + }, + "parent_location": [ + { + "end_col": 75, + "end_line": 14, + "input_file": { + "filename": "autogen/starknet/storage_var/Starksheet_proxy_class_hash/impl.cairo" + }, + "parent_location": [ + { + "end_col": 42, + "end_line": 16, + "input_file": { + "filename": "autogen/starknet/storage_var/Starksheet_proxy_class_hash/impl.cairo" + }, + "start_col": 31, + "start_line": 16 + }, + "While expanding the reference 'syscall_ptr' in:" + ], + "start_col": 37, + "start_line": 14 + }, + "While trying to update the implicit return value 'syscall_ptr' in:" + ], + "start_col": 19, + "start_line": 352 + } + }, + "497": { + "accessible_scopes": [ + "starksheet.library", + "starksheet.library.Starksheet_proxy_class_hash", + "starksheet.library.Starksheet_proxy_class_hash.read" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 41, + "end_line": 7, + "input_file": { + "filename": "autogen/starknet/storage_var/Starksheet_proxy_class_hash/decl.cairo" + }, + "parent_location": [ + { + "end_col": 36, + "end_line": 13, + "input_file": { + "filename": "autogen/starknet/storage_var/Starksheet_proxy_class_hash/impl.cairo" + }, + "parent_location": [ + { + "end_col": 44, + "end_line": 17, + "input_file": { + "filename": "autogen/starknet/storage_var/Starksheet_proxy_class_hash/impl.cairo" + }, + "start_col": 32, + "start_line": 17 + }, + "While expanding the reference 'pedersen_ptr' in:" + ], + "start_col": 30, + "start_line": 13 + }, + "While trying to update the implicit return value 'pedersen_ptr' in:" + ], + "start_col": 15, + "start_line": 7 + } + }, + "498": { + "accessible_scopes": [ + "starksheet.library", + "starksheet.library.Starksheet_proxy_class_hash", + "starksheet.library.Starksheet_proxy_class_hash.read" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 58, + "end_line": 7, + "input_file": { + "filename": "autogen/starknet/storage_var/Starksheet_proxy_class_hash/decl.cairo" + }, + "parent_location": [ + { + "end_col": 36, + "end_line": 13, + "input_file": { + "filename": "autogen/starknet/storage_var/Starksheet_proxy_class_hash/impl.cairo" + }, + "parent_location": [ + { + "end_col": 50, + "end_line": 18, + "input_file": { + "filename": "autogen/starknet/storage_var/Starksheet_proxy_class_hash/impl.cairo" + }, + "start_col": 35, + "start_line": 18 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 30, + "start_line": 13 + }, + "While trying to update the implicit return value 'range_check_ptr' in:" + ], + "start_col": 43, + "start_line": 7 + } + }, + "499": { + "accessible_scopes": [ + "starksheet.library", + "starksheet.library.Starksheet_proxy_class_hash", + "starksheet.library.Starksheet_proxy_class_hash.read" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 33, + "end_line": 14, + "input_file": { + "filename": "autogen/starknet/storage_var/Starksheet_proxy_class_hash/impl.cairo" + }, + "parent_location": [ + { + "end_col": 64, + "end_line": 19, + "input_file": { + "filename": "autogen/starknet/storage_var/Starksheet_proxy_class_hash/impl.cairo" + }, + "start_col": 45, + "start_line": 19 + }, + "While expanding the reference '__storage_var_temp0' in:" + ], + "start_col": 14, + "start_line": 14 + } + }, + "500": { + "accessible_scopes": [ + "starksheet.library", + "starksheet.library.Starksheet_proxy_class_hash", + "starksheet.library.Starksheet_proxy_class_hash.read" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 55, + "end_line": 20, + "input_file": { + "filename": "autogen/starknet/storage_var/Starksheet_proxy_class_hash/impl.cairo" + }, + "start_col": 9, + "start_line": 20 + } + }, + "501": { + "accessible_scopes": [ + "starksheet.library", + "starksheet.library.Starksheet_proxy_class_hash", + "starksheet.library.Starksheet_proxy_class_hash.write" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 62, + "end_line": 23, + "input_file": { + "filename": "autogen/starknet/storage_var/Starksheet_proxy_class_hash/impl.cairo" + }, + "parent_location": [ + { + "end_col": 41, + "end_line": 7, + "input_file": { + "filename": "autogen/starknet/storage_var/Starksheet_proxy_class_hash/decl.cairo" + }, + "parent_location": [ + { + "end_col": 36, + "end_line": 24, + "input_file": { + "filename": "autogen/starknet/storage_var/Starksheet_proxy_class_hash/impl.cairo" + }, + "start_col": 30, + "start_line": 24 + }, + "While trying to retrieve the implicit argument 'pedersen_ptr' in:" + ], + "start_col": 15, + "start_line": 7 + }, + "While expanding the reference 'pedersen_ptr' in:" + ], + "start_col": 36, + "start_line": 23 + } + }, + "502": { + "accessible_scopes": [ + "starksheet.library", + "starksheet.library.Starksheet_proxy_class_hash", + "starksheet.library.Starksheet_proxy_class_hash.write" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 79, + "end_line": 23, + "input_file": { + "filename": "autogen/starknet/storage_var/Starksheet_proxy_class_hash/impl.cairo" + }, + "parent_location": [ + { + "end_col": 58, + "end_line": 7, + "input_file": { + "filename": "autogen/starknet/storage_var/Starksheet_proxy_class_hash/decl.cairo" + }, + "parent_location": [ + { + "end_col": 36, + "end_line": 24, + "input_file": { + "filename": "autogen/starknet/storage_var/Starksheet_proxy_class_hash/impl.cairo" + }, + "start_col": 30, + "start_line": 24 + }, + "While trying to retrieve the implicit argument 'range_check_ptr' in:" + ], + "start_col": 43, + "start_line": 7 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 64, + "start_line": 23 + } + }, + "503": { + "accessible_scopes": [ + "starksheet.library", + "starksheet.library.Starksheet_proxy_class_hash", + "starksheet.library.Starksheet_proxy_class_hash.write" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 36, + "end_line": 24, + "input_file": { + "filename": "autogen/starknet/storage_var/Starksheet_proxy_class_hash/impl.cairo" + }, + "start_col": 30, + "start_line": 24 + } + }, + "505": { + "accessible_scopes": [ + "starksheet.library", + "starksheet.library.Starksheet_proxy_class_hash", + "starksheet.library.Starksheet_proxy_class_hash.write" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 34, + "end_line": 23, + "input_file": { + "filename": "autogen/starknet/storage_var/Starksheet_proxy_class_hash/impl.cairo" + }, + "parent_location": [ + { + "end_col": 38, + "end_line": 370, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/starknet/common/syscalls.cairo" + }, + "parent_location": [ + { + "end_col": 80, + "end_line": 25, + "input_file": { + "filename": "autogen/starknet/storage_var/Starksheet_proxy_class_hash/impl.cairo" + }, + "start_col": 9, + "start_line": 25 + }, + "While trying to retrieve the implicit argument 'syscall_ptr' in:" + ], + "start_col": 20, + "start_line": 370 + }, + "While expanding the reference 'syscall_ptr' in:" + ], + "start_col": 16, + "start_line": 23 + } + }, + "506": { + "accessible_scopes": [ + "starksheet.library", + "starksheet.library.Starksheet_proxy_class_hash", + "starksheet.library.Starksheet_proxy_class_hash.write" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 26, + "end_line": 24, + "input_file": { + "filename": "autogen/starknet/storage_var/Starksheet_proxy_class_hash/impl.cairo" + }, + "parent_location": [ + { + "end_col": 43, + "end_line": 25, + "input_file": { + "filename": "autogen/starknet/storage_var/Starksheet_proxy_class_hash/impl.cairo" + }, + "start_col": 31, + "start_line": 25 + }, + "While expanding the reference 'storage_addr' in:" + ], + "start_col": 14, + "start_line": 24 + } + }, + "507": { + "accessible_scopes": [ + "starksheet.library", + "starksheet.library.Starksheet_proxy_class_hash", + "starksheet.library.Starksheet_proxy_class_hash.write" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 79, + "end_line": 25, + "input_file": { + "filename": "autogen/starknet/storage_var/Starksheet_proxy_class_hash/impl.cairo" + }, + "start_col": 55, + "start_line": 25 + } + }, + "508": { + "accessible_scopes": [ + "starksheet.library", + "starksheet.library.Starksheet_proxy_class_hash", + "starksheet.library.Starksheet_proxy_class_hash.write" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 80, + "end_line": 25, + "input_file": { + "filename": "autogen/starknet/storage_var/Starksheet_proxy_class_hash/impl.cairo" + }, + "start_col": 9, + "start_line": 25 + } + }, + "510": { + "accessible_scopes": [ + "starksheet.library", + "starksheet.library.Starksheet_proxy_class_hash", + "starksheet.library.Starksheet_proxy_class_hash.write" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 41, + "end_line": 7, + "input_file": { + "filename": "autogen/starknet/storage_var/Starksheet_proxy_class_hash/decl.cairo" + }, + "parent_location": [ + { + "end_col": 36, + "end_line": 24, + "input_file": { + "filename": "autogen/starknet/storage_var/Starksheet_proxy_class_hash/impl.cairo" + }, + "parent_location": [ + { + "end_col": 62, + "end_line": 19, + "input_file": { + "filename": "autogen/starknet/storage_var/Starksheet_proxy_class_hash/decl.cairo" + }, + "parent_location": [ + { + "end_col": 19, + "end_line": 26, + "input_file": { + "filename": "autogen/starknet/storage_var/Starksheet_proxy_class_hash/impl.cairo" + }, + "start_col": 9, + "start_line": 26 + }, + "While trying to retrieve the implicit argument 'pedersen_ptr' in:" + ], + "start_col": 36, + "start_line": 19 + }, + "While expanding the reference 'pedersen_ptr' in:" + ], + "start_col": 30, + "start_line": 24 + }, + "While trying to update the implicit return value 'pedersen_ptr' in:" + ], + "start_col": 15, + "start_line": 7 + } + }, + "511": { + "accessible_scopes": [ + "starksheet.library", + "starksheet.library.Starksheet_proxy_class_hash", + "starksheet.library.Starksheet_proxy_class_hash.write" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 58, + "end_line": 7, + "input_file": { + "filename": "autogen/starknet/storage_var/Starksheet_proxy_class_hash/decl.cairo" + }, + "parent_location": [ + { + "end_col": 36, + "end_line": 24, + "input_file": { + "filename": "autogen/starknet/storage_var/Starksheet_proxy_class_hash/impl.cairo" + }, + "parent_location": [ + { + "end_col": 79, + "end_line": 19, + "input_file": { + "filename": "autogen/starknet/storage_var/Starksheet_proxy_class_hash/decl.cairo" + }, + "parent_location": [ + { + "end_col": 19, + "end_line": 26, + "input_file": { + "filename": "autogen/starknet/storage_var/Starksheet_proxy_class_hash/impl.cairo" + }, + "start_col": 9, + "start_line": 26 + }, + "While trying to retrieve the implicit argument 'range_check_ptr' in:" + ], + "start_col": 64, + "start_line": 19 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 30, + "start_line": 24 + }, + "While trying to update the implicit return value 'range_check_ptr' in:" + ], + "start_col": 43, + "start_line": 7 + } + }, + "512": { + "accessible_scopes": [ + "starksheet.library", + "starksheet.library.Starksheet_proxy_class_hash", + "starksheet.library.Starksheet_proxy_class_hash.write" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 19, + "end_line": 26, + "input_file": { + "filename": "autogen/starknet/storage_var/Starksheet_proxy_class_hash/impl.cairo" + }, + "start_col": 9, + "start_line": 26 + } + }, + "513": { + "accessible_scopes": [ + "starksheet.library", + "starksheet.library.Starksheet_sheet_class_hash", + "starksheet.library.Starksheet_sheet_class_hash.addr" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 41, + "end_line": 7, + "input_file": { + "filename": "autogen/starknet/storage_var/Starksheet_sheet_class_hash/impl.cairo" + }, + "parent_location": [ + { + "end_col": 41, + "end_line": 7, + "input_file": { + "filename": "autogen/starknet/storage_var/Starksheet_sheet_class_hash/decl.cairo" + }, + "parent_location": [ + { + "end_col": 26, + "end_line": 9, + "input_file": { + "filename": "autogen/starknet/storage_var/Starksheet_sheet_class_hash/impl.cairo" + }, + "start_col": 9, + "start_line": 9 + }, + "While trying to retrieve the implicit argument 'pedersen_ptr' in:" + ], + "start_col": 15, + "start_line": 7 + }, + "While expanding the reference 'pedersen_ptr' in:" + ], + "start_col": 15, + "start_line": 7 + } + }, + "514": { + "accessible_scopes": [ + "starksheet.library", + "starksheet.library.Starksheet_sheet_class_hash", + "starksheet.library.Starksheet_sheet_class_hash.addr" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 58, + "end_line": 7, + "input_file": { + "filename": "autogen/starknet/storage_var/Starksheet_sheet_class_hash/impl.cairo" + }, + "parent_location": [ + { + "end_col": 58, + "end_line": 7, + "input_file": { + "filename": "autogen/starknet/storage_var/Starksheet_sheet_class_hash/decl.cairo" + }, + "parent_location": [ + { + "end_col": 26, + "end_line": 9, + "input_file": { + "filename": "autogen/starknet/storage_var/Starksheet_sheet_class_hash/impl.cairo" + }, + "start_col": 9, + "start_line": 9 + }, + "While trying to retrieve the implicit argument 'range_check_ptr' in:" + ], + "start_col": 43, + "start_line": 7 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 43, + "start_line": 7 + } + }, + "515": { + "accessible_scopes": [ + "starksheet.library", + "starksheet.library.Starksheet_sheet_class_hash", + "starksheet.library.Starksheet_sheet_class_hash.addr" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 95, + "end_line": 8, + "input_file": { + "filename": "autogen/starknet/storage_var/Starksheet_sheet_class_hash/impl.cairo" + }, + "parent_location": [ + { + "end_col": 24, + "end_line": 9, + "input_file": { + "filename": "autogen/starknet/storage_var/Starksheet_sheet_class_hash/impl.cairo" + }, + "start_col": 21, + "start_line": 9 + }, + "While expanding the reference 'res' in:" + ], + "start_col": 19, + "start_line": 8 + } + }, + "517": { + "accessible_scopes": [ + "starksheet.library", + "starksheet.library.Starksheet_sheet_class_hash", + "starksheet.library.Starksheet_sheet_class_hash.addr" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 26, + "end_line": 9, + "input_file": { + "filename": "autogen/starknet/storage_var/Starksheet_sheet_class_hash/impl.cairo" + }, + "start_col": 9, + "start_line": 9 + } + }, + "518": { + "accessible_scopes": [ + "starksheet.library", + "starksheet.library.Starksheet_sheet_class_hash", + "starksheet.library.Starksheet_sheet_class_hash.read" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 61, + "end_line": 12, + "input_file": { + "filename": "autogen/starknet/storage_var/Starksheet_sheet_class_hash/impl.cairo" + }, + "parent_location": [ + { + "end_col": 41, + "end_line": 7, + "input_file": { + "filename": "autogen/starknet/storage_var/Starksheet_sheet_class_hash/decl.cairo" + }, + "parent_location": [ + { + "end_col": 36, + "end_line": 13, + "input_file": { + "filename": "autogen/starknet/storage_var/Starksheet_sheet_class_hash/impl.cairo" + }, + "start_col": 30, + "start_line": 13 + }, + "While trying to retrieve the implicit argument 'pedersen_ptr' in:" + ], + "start_col": 15, + "start_line": 7 + }, + "While expanding the reference 'pedersen_ptr' in:" + ], + "start_col": 35, + "start_line": 12 + } + }, + "519": { + "accessible_scopes": [ + "starksheet.library", + "starksheet.library.Starksheet_sheet_class_hash", + "starksheet.library.Starksheet_sheet_class_hash.read" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 78, + "end_line": 12, + "input_file": { + "filename": "autogen/starknet/storage_var/Starksheet_sheet_class_hash/impl.cairo" + }, + "parent_location": [ + { + "end_col": 58, + "end_line": 7, + "input_file": { + "filename": "autogen/starknet/storage_var/Starksheet_sheet_class_hash/decl.cairo" + }, + "parent_location": [ + { + "end_col": 36, + "end_line": 13, + "input_file": { + "filename": "autogen/starknet/storage_var/Starksheet_sheet_class_hash/impl.cairo" + }, + "start_col": 30, + "start_line": 13 + }, + "While trying to retrieve the implicit argument 'range_check_ptr' in:" + ], + "start_col": 43, + "start_line": 7 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 63, + "start_line": 12 + } + }, + "520": { + "accessible_scopes": [ + "starksheet.library", + "starksheet.library.Starksheet_sheet_class_hash", + "starksheet.library.Starksheet_sheet_class_hash.read" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 36, + "end_line": 13, + "input_file": { + "filename": "autogen/starknet/storage_var/Starksheet_sheet_class_hash/impl.cairo" + }, + "start_col": 30, + "start_line": 13 + } + }, + "522": { + "accessible_scopes": [ + "starksheet.library", + "starksheet.library.Starksheet_sheet_class_hash", + "starksheet.library.Starksheet_sheet_class_hash.read" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 33, + "end_line": 12, + "input_file": { + "filename": "autogen/starknet/storage_var/Starksheet_sheet_class_hash/impl.cairo" + }, + "parent_location": [ + { + "end_col": 37, + "end_line": 352, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/starknet/common/syscalls.cairo" + }, + "parent_location": [ + { + "end_col": 75, + "end_line": 14, + "input_file": { + "filename": "autogen/starknet/storage_var/Starksheet_sheet_class_hash/impl.cairo" + }, + "start_col": 37, + "start_line": 14 + }, + "While trying to retrieve the implicit argument 'syscall_ptr' in:" + ], + "start_col": 19, + "start_line": 352 + }, + "While expanding the reference 'syscall_ptr' in:" + ], + "start_col": 15, + "start_line": 12 + } + }, + "523": { + "accessible_scopes": [ + "starksheet.library", + "starksheet.library.Starksheet_sheet_class_hash", + "starksheet.library.Starksheet_sheet_class_hash.read" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 26, + "end_line": 13, + "input_file": { + "filename": "autogen/starknet/storage_var/Starksheet_sheet_class_hash/impl.cairo" + }, + "parent_location": [ + { + "end_col": 70, + "end_line": 14, + "input_file": { + "filename": "autogen/starknet/storage_var/Starksheet_sheet_class_hash/impl.cairo" + }, + "start_col": 58, + "start_line": 14 + }, + "While expanding the reference 'storage_addr' in:" + ], + "start_col": 14, + "start_line": 13 + } + }, + "524": { + "accessible_scopes": [ + "starksheet.library", + "starksheet.library.Starksheet_sheet_class_hash", + "starksheet.library.Starksheet_sheet_class_hash.read" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 75, + "end_line": 14, + "input_file": { + "filename": "autogen/starknet/storage_var/Starksheet_sheet_class_hash/impl.cairo" + }, + "start_col": 37, + "start_line": 14 + } + }, + "526": { + "accessible_scopes": [ + "starksheet.library", + "starksheet.library.Starksheet_sheet_class_hash", + "starksheet.library.Starksheet_sheet_class_hash.read" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 37, + "end_line": 352, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/starknet/common/syscalls.cairo" + }, + "parent_location": [ + { + "end_col": 75, + "end_line": 14, + "input_file": { + "filename": "autogen/starknet/storage_var/Starksheet_sheet_class_hash/impl.cairo" + }, + "parent_location": [ + { + "end_col": 42, + "end_line": 16, + "input_file": { + "filename": "autogen/starknet/storage_var/Starksheet_sheet_class_hash/impl.cairo" + }, + "start_col": 31, + "start_line": 16 + }, + "While expanding the reference 'syscall_ptr' in:" + ], + "start_col": 37, + "start_line": 14 + }, + "While trying to update the implicit return value 'syscall_ptr' in:" + ], + "start_col": 19, + "start_line": 352 + } + }, + "527": { + "accessible_scopes": [ + "starksheet.library", + "starksheet.library.Starksheet_sheet_class_hash", + "starksheet.library.Starksheet_sheet_class_hash.read" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 41, + "end_line": 7, + "input_file": { + "filename": "autogen/starknet/storage_var/Starksheet_sheet_class_hash/decl.cairo" + }, + "parent_location": [ + { + "end_col": 36, + "end_line": 13, + "input_file": { + "filename": "autogen/starknet/storage_var/Starksheet_sheet_class_hash/impl.cairo" + }, + "parent_location": [ + { + "end_col": 44, + "end_line": 17, + "input_file": { + "filename": "autogen/starknet/storage_var/Starksheet_sheet_class_hash/impl.cairo" + }, + "start_col": 32, + "start_line": 17 + }, + "While expanding the reference 'pedersen_ptr' in:" + ], + "start_col": 30, + "start_line": 13 + }, + "While trying to update the implicit return value 'pedersen_ptr' in:" + ], + "start_col": 15, + "start_line": 7 + } + }, + "528": { + "accessible_scopes": [ + "starksheet.library", + "starksheet.library.Starksheet_sheet_class_hash", + "starksheet.library.Starksheet_sheet_class_hash.read" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 58, + "end_line": 7, + "input_file": { + "filename": "autogen/starknet/storage_var/Starksheet_sheet_class_hash/decl.cairo" + }, + "parent_location": [ + { + "end_col": 36, + "end_line": 13, + "input_file": { + "filename": "autogen/starknet/storage_var/Starksheet_sheet_class_hash/impl.cairo" + }, + "parent_location": [ + { + "end_col": 50, + "end_line": 18, + "input_file": { + "filename": "autogen/starknet/storage_var/Starksheet_sheet_class_hash/impl.cairo" + }, + "start_col": 35, + "start_line": 18 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 30, + "start_line": 13 + }, + "While trying to update the implicit return value 'range_check_ptr' in:" + ], + "start_col": 43, + "start_line": 7 + } + }, + "529": { + "accessible_scopes": [ + "starksheet.library", + "starksheet.library.Starksheet_sheet_class_hash", + "starksheet.library.Starksheet_sheet_class_hash.read" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 33, + "end_line": 14, + "input_file": { + "filename": "autogen/starknet/storage_var/Starksheet_sheet_class_hash/impl.cairo" + }, + "parent_location": [ + { + "end_col": 64, + "end_line": 19, + "input_file": { + "filename": "autogen/starknet/storage_var/Starksheet_sheet_class_hash/impl.cairo" + }, + "start_col": 45, + "start_line": 19 + }, + "While expanding the reference '__storage_var_temp0' in:" + ], + "start_col": 14, + "start_line": 14 + } + }, + "530": { + "accessible_scopes": [ + "starksheet.library", + "starksheet.library.Starksheet_sheet_class_hash", + "starksheet.library.Starksheet_sheet_class_hash.read" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 55, + "end_line": 20, + "input_file": { + "filename": "autogen/starknet/storage_var/Starksheet_sheet_class_hash/impl.cairo" + }, + "start_col": 9, + "start_line": 20 + } + }, + "531": { + "accessible_scopes": [ + "starksheet.library", + "starksheet.library.Starksheet_sheet_class_hash", + "starksheet.library.Starksheet_sheet_class_hash.write" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 62, + "end_line": 23, + "input_file": { + "filename": "autogen/starknet/storage_var/Starksheet_sheet_class_hash/impl.cairo" + }, + "parent_location": [ + { + "end_col": 41, + "end_line": 7, + "input_file": { + "filename": "autogen/starknet/storage_var/Starksheet_sheet_class_hash/decl.cairo" + }, + "parent_location": [ + { + "end_col": 36, + "end_line": 24, + "input_file": { + "filename": "autogen/starknet/storage_var/Starksheet_sheet_class_hash/impl.cairo" + }, + "start_col": 30, + "start_line": 24 + }, + "While trying to retrieve the implicit argument 'pedersen_ptr' in:" + ], + "start_col": 15, + "start_line": 7 + }, + "While expanding the reference 'pedersen_ptr' in:" + ], + "start_col": 36, + "start_line": 23 + } + }, + "532": { + "accessible_scopes": [ + "starksheet.library", + "starksheet.library.Starksheet_sheet_class_hash", + "starksheet.library.Starksheet_sheet_class_hash.write" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 79, + "end_line": 23, + "input_file": { + "filename": "autogen/starknet/storage_var/Starksheet_sheet_class_hash/impl.cairo" + }, + "parent_location": [ + { + "end_col": 58, + "end_line": 7, + "input_file": { + "filename": "autogen/starknet/storage_var/Starksheet_sheet_class_hash/decl.cairo" + }, + "parent_location": [ + { + "end_col": 36, + "end_line": 24, + "input_file": { + "filename": "autogen/starknet/storage_var/Starksheet_sheet_class_hash/impl.cairo" + }, + "start_col": 30, + "start_line": 24 + }, + "While trying to retrieve the implicit argument 'range_check_ptr' in:" + ], + "start_col": 43, + "start_line": 7 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 64, + "start_line": 23 + } + }, + "533": { + "accessible_scopes": [ + "starksheet.library", + "starksheet.library.Starksheet_sheet_class_hash", + "starksheet.library.Starksheet_sheet_class_hash.write" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 36, + "end_line": 24, + "input_file": { + "filename": "autogen/starknet/storage_var/Starksheet_sheet_class_hash/impl.cairo" + }, + "start_col": 30, + "start_line": 24 + } + }, + "535": { + "accessible_scopes": [ + "starksheet.library", + "starksheet.library.Starksheet_sheet_class_hash", + "starksheet.library.Starksheet_sheet_class_hash.write" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 34, + "end_line": 23, + "input_file": { + "filename": "autogen/starknet/storage_var/Starksheet_sheet_class_hash/impl.cairo" + }, + "parent_location": [ + { + "end_col": 38, + "end_line": 370, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/starknet/common/syscalls.cairo" + }, + "parent_location": [ + { + "end_col": 80, + "end_line": 25, + "input_file": { + "filename": "autogen/starknet/storage_var/Starksheet_sheet_class_hash/impl.cairo" + }, + "start_col": 9, + "start_line": 25 + }, + "While trying to retrieve the implicit argument 'syscall_ptr' in:" + ], + "start_col": 20, + "start_line": 370 + }, + "While expanding the reference 'syscall_ptr' in:" + ], + "start_col": 16, + "start_line": 23 + } + }, + "536": { + "accessible_scopes": [ + "starksheet.library", + "starksheet.library.Starksheet_sheet_class_hash", + "starksheet.library.Starksheet_sheet_class_hash.write" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 26, + "end_line": 24, + "input_file": { + "filename": "autogen/starknet/storage_var/Starksheet_sheet_class_hash/impl.cairo" + }, + "parent_location": [ + { + "end_col": 43, + "end_line": 25, + "input_file": { + "filename": "autogen/starknet/storage_var/Starksheet_sheet_class_hash/impl.cairo" + }, + "start_col": 31, + "start_line": 25 + }, + "While expanding the reference 'storage_addr' in:" + ], + "start_col": 14, + "start_line": 24 + } + }, + "537": { + "accessible_scopes": [ + "starksheet.library", + "starksheet.library.Starksheet_sheet_class_hash", + "starksheet.library.Starksheet_sheet_class_hash.write" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 79, + "end_line": 25, + "input_file": { + "filename": "autogen/starknet/storage_var/Starksheet_sheet_class_hash/impl.cairo" + }, + "start_col": 55, + "start_line": 25 + } + }, + "538": { + "accessible_scopes": [ + "starksheet.library", + "starksheet.library.Starksheet_sheet_class_hash", + "starksheet.library.Starksheet_sheet_class_hash.write" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 80, + "end_line": 25, + "input_file": { + "filename": "autogen/starknet/storage_var/Starksheet_sheet_class_hash/impl.cairo" + }, + "start_col": 9, + "start_line": 25 + } + }, + "540": { + "accessible_scopes": [ + "starksheet.library", + "starksheet.library.Starksheet_sheet_class_hash", + "starksheet.library.Starksheet_sheet_class_hash.write" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 41, + "end_line": 7, + "input_file": { + "filename": "autogen/starknet/storage_var/Starksheet_sheet_class_hash/decl.cairo" + }, + "parent_location": [ + { + "end_col": 36, + "end_line": 24, + "input_file": { + "filename": "autogen/starknet/storage_var/Starksheet_sheet_class_hash/impl.cairo" + }, + "parent_location": [ + { + "end_col": 62, + "end_line": 19, + "input_file": { + "filename": "autogen/starknet/storage_var/Starksheet_sheet_class_hash/decl.cairo" + }, + "parent_location": [ + { + "end_col": 19, + "end_line": 26, + "input_file": { + "filename": "autogen/starknet/storage_var/Starksheet_sheet_class_hash/impl.cairo" + }, + "start_col": 9, + "start_line": 26 + }, + "While trying to retrieve the implicit argument 'pedersen_ptr' in:" + ], + "start_col": 36, + "start_line": 19 + }, + "While expanding the reference 'pedersen_ptr' in:" + ], + "start_col": 30, + "start_line": 24 + }, + "While trying to update the implicit return value 'pedersen_ptr' in:" + ], + "start_col": 15, + "start_line": 7 + } + }, + "541": { + "accessible_scopes": [ + "starksheet.library", + "starksheet.library.Starksheet_sheet_class_hash", + "starksheet.library.Starksheet_sheet_class_hash.write" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 58, + "end_line": 7, + "input_file": { + "filename": "autogen/starknet/storage_var/Starksheet_sheet_class_hash/decl.cairo" + }, + "parent_location": [ + { + "end_col": 36, + "end_line": 24, + "input_file": { + "filename": "autogen/starknet/storage_var/Starksheet_sheet_class_hash/impl.cairo" + }, + "parent_location": [ + { + "end_col": 79, + "end_line": 19, + "input_file": { + "filename": "autogen/starknet/storage_var/Starksheet_sheet_class_hash/decl.cairo" + }, + "parent_location": [ + { + "end_col": 19, + "end_line": 26, + "input_file": { + "filename": "autogen/starknet/storage_var/Starksheet_sheet_class_hash/impl.cairo" + }, + "start_col": 9, + "start_line": 26 + }, + "While trying to retrieve the implicit argument 'range_check_ptr' in:" + ], + "start_col": 64, + "start_line": 19 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 30, + "start_line": 24 + }, + "While trying to update the implicit return value 'range_check_ptr' in:" + ], + "start_col": 43, + "start_line": 7 + } + }, + "542": { + "accessible_scopes": [ + "starksheet.library", + "starksheet.library.Starksheet_sheet_class_hash", + "starksheet.library.Starksheet_sheet_class_hash.write" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 19, + "end_line": 26, + "input_file": { + "filename": "autogen/starknet/storage_var/Starksheet_sheet_class_hash/impl.cairo" + }, + "start_col": 9, + "start_line": 26 + } + }, + "543": { + "accessible_scopes": [ + "starksheet.library", + "starksheet.library.Starksheet_sheet_default_renderer_address", + "starksheet.library.Starksheet_sheet_default_renderer_address.addr" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 41, + "end_line": 7, + "input_file": { + "filename": "autogen/starknet/storage_var/Starksheet_sheet_default_renderer_address/impl.cairo" + }, + "parent_location": [ + { + "end_col": 41, + "end_line": 7, + "input_file": { + "filename": "autogen/starknet/storage_var/Starksheet_sheet_default_renderer_address/decl.cairo" + }, + "parent_location": [ + { + "end_col": 26, + "end_line": 9, + "input_file": { + "filename": "autogen/starknet/storage_var/Starksheet_sheet_default_renderer_address/impl.cairo" + }, + "start_col": 9, + "start_line": 9 + }, + "While trying to retrieve the implicit argument 'pedersen_ptr' in:" + ], + "start_col": 15, + "start_line": 7 + }, + "While expanding the reference 'pedersen_ptr' in:" + ], + "start_col": 15, + "start_line": 7 + } + }, + "544": { + "accessible_scopes": [ + "starksheet.library", + "starksheet.library.Starksheet_sheet_default_renderer_address", + "starksheet.library.Starksheet_sheet_default_renderer_address.addr" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 58, + "end_line": 7, + "input_file": { + "filename": "autogen/starknet/storage_var/Starksheet_sheet_default_renderer_address/impl.cairo" + }, + "parent_location": [ + { + "end_col": 58, + "end_line": 7, + "input_file": { + "filename": "autogen/starknet/storage_var/Starksheet_sheet_default_renderer_address/decl.cairo" + }, + "parent_location": [ + { + "end_col": 26, + "end_line": 9, + "input_file": { + "filename": "autogen/starknet/storage_var/Starksheet_sheet_default_renderer_address/impl.cairo" + }, + "start_col": 9, + "start_line": 9 + }, + "While trying to retrieve the implicit argument 'range_check_ptr' in:" + ], + "start_col": 43, + "start_line": 7 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 43, + "start_line": 7 + } + }, + "545": { + "accessible_scopes": [ + "starksheet.library", + "starksheet.library.Starksheet_sheet_default_renderer_address", + "starksheet.library.Starksheet_sheet_default_renderer_address.addr" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 95, + "end_line": 8, + "input_file": { + "filename": "autogen/starknet/storage_var/Starksheet_sheet_default_renderer_address/impl.cairo" + }, + "parent_location": [ + { + "end_col": 24, + "end_line": 9, + "input_file": { + "filename": "autogen/starknet/storage_var/Starksheet_sheet_default_renderer_address/impl.cairo" + }, + "start_col": 21, + "start_line": 9 + }, + "While expanding the reference 'res' in:" + ], + "start_col": 19, + "start_line": 8 + } + }, + "547": { + "accessible_scopes": [ + "starksheet.library", + "starksheet.library.Starksheet_sheet_default_renderer_address", + "starksheet.library.Starksheet_sheet_default_renderer_address.addr" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 26, + "end_line": 9, + "input_file": { + "filename": "autogen/starknet/storage_var/Starksheet_sheet_default_renderer_address/impl.cairo" + }, + "start_col": 9, + "start_line": 9 + } + }, + "548": { + "accessible_scopes": [ + "starksheet.library", + "starksheet.library.Starksheet_sheet_default_renderer_address", + "starksheet.library.Starksheet_sheet_default_renderer_address.read" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 61, + "end_line": 12, + "input_file": { + "filename": "autogen/starknet/storage_var/Starksheet_sheet_default_renderer_address/impl.cairo" + }, + "parent_location": [ + { + "end_col": 41, + "end_line": 7, + "input_file": { + "filename": "autogen/starknet/storage_var/Starksheet_sheet_default_renderer_address/decl.cairo" + }, + "parent_location": [ + { + "end_col": 36, + "end_line": 15, + "input_file": { + "filename": "autogen/starknet/storage_var/Starksheet_sheet_default_renderer_address/impl.cairo" + }, + "start_col": 30, + "start_line": 15 + }, + "While trying to retrieve the implicit argument 'pedersen_ptr' in:" + ], + "start_col": 15, + "start_line": 7 + }, + "While expanding the reference 'pedersen_ptr' in:" + ], + "start_col": 35, + "start_line": 12 + } + }, + "549": { + "accessible_scopes": [ + "starksheet.library", + "starksheet.library.Starksheet_sheet_default_renderer_address", + "starksheet.library.Starksheet_sheet_default_renderer_address.read" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 78, + "end_line": 12, + "input_file": { + "filename": "autogen/starknet/storage_var/Starksheet_sheet_default_renderer_address/impl.cairo" + }, + "parent_location": [ + { + "end_col": 58, + "end_line": 7, + "input_file": { + "filename": "autogen/starknet/storage_var/Starksheet_sheet_default_renderer_address/decl.cairo" + }, + "parent_location": [ + { + "end_col": 36, + "end_line": 15, + "input_file": { + "filename": "autogen/starknet/storage_var/Starksheet_sheet_default_renderer_address/impl.cairo" + }, + "start_col": 30, + "start_line": 15 + }, + "While trying to retrieve the implicit argument 'range_check_ptr' in:" + ], + "start_col": 43, + "start_line": 7 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 63, + "start_line": 12 + } + }, + "550": { + "accessible_scopes": [ + "starksheet.library", + "starksheet.library.Starksheet_sheet_default_renderer_address", + "starksheet.library.Starksheet_sheet_default_renderer_address.read" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 36, + "end_line": 15, + "input_file": { + "filename": "autogen/starknet/storage_var/Starksheet_sheet_default_renderer_address/impl.cairo" + }, + "start_col": 30, + "start_line": 15 + } + }, + "552": { + "accessible_scopes": [ + "starksheet.library", + "starksheet.library.Starksheet_sheet_default_renderer_address", + "starksheet.library.Starksheet_sheet_default_renderer_address.read" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 33, + "end_line": 12, + "input_file": { + "filename": "autogen/starknet/storage_var/Starksheet_sheet_default_renderer_address/impl.cairo" + }, + "parent_location": [ + { + "end_col": 37, + "end_line": 352, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/starknet/common/syscalls.cairo" + }, + "parent_location": [ + { + "end_col": 75, + "end_line": 16, + "input_file": { + "filename": "autogen/starknet/storage_var/Starksheet_sheet_default_renderer_address/impl.cairo" + }, + "start_col": 37, + "start_line": 16 + }, + "While trying to retrieve the implicit argument 'syscall_ptr' in:" + ], + "start_col": 19, + "start_line": 352 + }, + "While expanding the reference 'syscall_ptr' in:" + ], + "start_col": 15, + "start_line": 12 + } + }, + "553": { + "accessible_scopes": [ + "starksheet.library", + "starksheet.library.Starksheet_sheet_default_renderer_address", + "starksheet.library.Starksheet_sheet_default_renderer_address.read" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 26, + "end_line": 15, + "input_file": { + "filename": "autogen/starknet/storage_var/Starksheet_sheet_default_renderer_address/impl.cairo" + }, + "parent_location": [ + { + "end_col": 70, + "end_line": 16, + "input_file": { + "filename": "autogen/starknet/storage_var/Starksheet_sheet_default_renderer_address/impl.cairo" + }, + "start_col": 58, + "start_line": 16 + }, + "While expanding the reference 'storage_addr' in:" + ], + "start_col": 14, + "start_line": 15 + } + }, + "554": { + "accessible_scopes": [ + "starksheet.library", + "starksheet.library.Starksheet_sheet_default_renderer_address", + "starksheet.library.Starksheet_sheet_default_renderer_address.read" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 75, + "end_line": 16, + "input_file": { + "filename": "autogen/starknet/storage_var/Starksheet_sheet_default_renderer_address/impl.cairo" + }, + "start_col": 37, + "start_line": 16 + } + }, + "556": { + "accessible_scopes": [ + "starksheet.library", + "starksheet.library.Starksheet_sheet_default_renderer_address", + "starksheet.library.Starksheet_sheet_default_renderer_address.read" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 37, + "end_line": 352, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/starknet/common/syscalls.cairo" + }, + "parent_location": [ + { + "end_col": 75, + "end_line": 16, + "input_file": { + "filename": "autogen/starknet/storage_var/Starksheet_sheet_default_renderer_address/impl.cairo" + }, + "parent_location": [ + { + "end_col": 42, + "end_line": 18, + "input_file": { + "filename": "autogen/starknet/storage_var/Starksheet_sheet_default_renderer_address/impl.cairo" + }, + "start_col": 31, + "start_line": 18 + }, + "While expanding the reference 'syscall_ptr' in:" + ], + "start_col": 37, + "start_line": 16 + }, + "While trying to update the implicit return value 'syscall_ptr' in:" + ], + "start_col": 19, + "start_line": 352 + } + }, + "557": { + "accessible_scopes": [ + "starksheet.library", + "starksheet.library.Starksheet_sheet_default_renderer_address", + "starksheet.library.Starksheet_sheet_default_renderer_address.read" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 41, + "end_line": 7, + "input_file": { + "filename": "autogen/starknet/storage_var/Starksheet_sheet_default_renderer_address/decl.cairo" + }, + "parent_location": [ + { + "end_col": 36, + "end_line": 15, + "input_file": { + "filename": "autogen/starknet/storage_var/Starksheet_sheet_default_renderer_address/impl.cairo" + }, + "parent_location": [ + { + "end_col": 44, + "end_line": 19, + "input_file": { + "filename": "autogen/starknet/storage_var/Starksheet_sheet_default_renderer_address/impl.cairo" + }, + "start_col": 32, + "start_line": 19 + }, + "While expanding the reference 'pedersen_ptr' in:" + ], + "start_col": 30, + "start_line": 15 + }, + "While trying to update the implicit return value 'pedersen_ptr' in:" + ], + "start_col": 15, + "start_line": 7 + } + }, + "558": { + "accessible_scopes": [ + "starksheet.library", + "starksheet.library.Starksheet_sheet_default_renderer_address", + "starksheet.library.Starksheet_sheet_default_renderer_address.read" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 58, + "end_line": 7, + "input_file": { + "filename": "autogen/starknet/storage_var/Starksheet_sheet_default_renderer_address/decl.cairo" + }, + "parent_location": [ + { + "end_col": 36, + "end_line": 15, + "input_file": { + "filename": "autogen/starknet/storage_var/Starksheet_sheet_default_renderer_address/impl.cairo" + }, + "parent_location": [ + { + "end_col": 50, + "end_line": 20, + "input_file": { + "filename": "autogen/starknet/storage_var/Starksheet_sheet_default_renderer_address/impl.cairo" + }, + "start_col": 35, + "start_line": 20 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 30, + "start_line": 15 + }, + "While trying to update the implicit return value 'range_check_ptr' in:" + ], + "start_col": 43, + "start_line": 7 + } + }, + "559": { + "accessible_scopes": [ + "starksheet.library", + "starksheet.library.Starksheet_sheet_default_renderer_address", + "starksheet.library.Starksheet_sheet_default_renderer_address.read" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 33, + "end_line": 16, + "input_file": { + "filename": "autogen/starknet/storage_var/Starksheet_sheet_default_renderer_address/impl.cairo" + }, + "parent_location": [ + { + "end_col": 64, + "end_line": 21, + "input_file": { + "filename": "autogen/starknet/storage_var/Starksheet_sheet_default_renderer_address/impl.cairo" + }, + "start_col": 45, + "start_line": 21 + }, + "While expanding the reference '__storage_var_temp0' in:" + ], + "start_col": 14, + "start_line": 16 + } + }, + "560": { + "accessible_scopes": [ + "starksheet.library", + "starksheet.library.Starksheet_sheet_default_renderer_address", + "starksheet.library.Starksheet_sheet_default_renderer_address.read" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 55, + "end_line": 22, + "input_file": { + "filename": "autogen/starknet/storage_var/Starksheet_sheet_default_renderer_address/impl.cairo" + }, + "start_col": 9, + "start_line": 22 + } + }, + "561": { + "accessible_scopes": [ + "starksheet.library", + "starksheet.library.Starksheet_sheet_default_renderer_address", + "starksheet.library.Starksheet_sheet_default_renderer_address.write" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 62, + "end_line": 25, + "input_file": { + "filename": "autogen/starknet/storage_var/Starksheet_sheet_default_renderer_address/impl.cairo" + }, + "parent_location": [ + { + "end_col": 41, + "end_line": 7, + "input_file": { + "filename": "autogen/starknet/storage_var/Starksheet_sheet_default_renderer_address/decl.cairo" + }, + "parent_location": [ + { + "end_col": 36, + "end_line": 26, + "input_file": { + "filename": "autogen/starknet/storage_var/Starksheet_sheet_default_renderer_address/impl.cairo" + }, + "start_col": 30, + "start_line": 26 + }, + "While trying to retrieve the implicit argument 'pedersen_ptr' in:" + ], + "start_col": 15, + "start_line": 7 + }, + "While expanding the reference 'pedersen_ptr' in:" + ], + "start_col": 36, + "start_line": 25 + } + }, + "562": { + "accessible_scopes": [ + "starksheet.library", + "starksheet.library.Starksheet_sheet_default_renderer_address", + "starksheet.library.Starksheet_sheet_default_renderer_address.write" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 79, + "end_line": 25, + "input_file": { + "filename": "autogen/starknet/storage_var/Starksheet_sheet_default_renderer_address/impl.cairo" + }, + "parent_location": [ + { + "end_col": 58, + "end_line": 7, + "input_file": { + "filename": "autogen/starknet/storage_var/Starksheet_sheet_default_renderer_address/decl.cairo" + }, + "parent_location": [ + { + "end_col": 36, + "end_line": 26, + "input_file": { + "filename": "autogen/starknet/storage_var/Starksheet_sheet_default_renderer_address/impl.cairo" + }, + "start_col": 30, + "start_line": 26 + }, + "While trying to retrieve the implicit argument 'range_check_ptr' in:" + ], + "start_col": 43, + "start_line": 7 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 64, + "start_line": 25 + } + }, + "563": { + "accessible_scopes": [ + "starksheet.library", + "starksheet.library.Starksheet_sheet_default_renderer_address", + "starksheet.library.Starksheet_sheet_default_renderer_address.write" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 36, + "end_line": 26, + "input_file": { + "filename": "autogen/starknet/storage_var/Starksheet_sheet_default_renderer_address/impl.cairo" + }, + "start_col": 30, + "start_line": 26 + } + }, + "565": { + "accessible_scopes": [ + "starksheet.library", + "starksheet.library.Starksheet_sheet_default_renderer_address", + "starksheet.library.Starksheet_sheet_default_renderer_address.write" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 34, + "end_line": 25, + "input_file": { + "filename": "autogen/starknet/storage_var/Starksheet_sheet_default_renderer_address/impl.cairo" + }, + "parent_location": [ + { + "end_col": 38, + "end_line": 370, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/starknet/common/syscalls.cairo" + }, + "parent_location": [ + { + "end_col": 80, + "end_line": 27, + "input_file": { + "filename": "autogen/starknet/storage_var/Starksheet_sheet_default_renderer_address/impl.cairo" + }, + "start_col": 9, + "start_line": 27 + }, + "While trying to retrieve the implicit argument 'syscall_ptr' in:" + ], + "start_col": 20, + "start_line": 370 + }, + "While expanding the reference 'syscall_ptr' in:" + ], + "start_col": 16, + "start_line": 25 + } + }, + "566": { + "accessible_scopes": [ + "starksheet.library", + "starksheet.library.Starksheet_sheet_default_renderer_address", + "starksheet.library.Starksheet_sheet_default_renderer_address.write" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 26, + "end_line": 26, + "input_file": { + "filename": "autogen/starknet/storage_var/Starksheet_sheet_default_renderer_address/impl.cairo" + }, + "parent_location": [ + { + "end_col": 43, + "end_line": 27, + "input_file": { + "filename": "autogen/starknet/storage_var/Starksheet_sheet_default_renderer_address/impl.cairo" + }, + "start_col": 31, + "start_line": 27 + }, + "While expanding the reference 'storage_addr' in:" + ], + "start_col": 14, + "start_line": 26 + } + }, + "567": { + "accessible_scopes": [ + "starksheet.library", + "starksheet.library.Starksheet_sheet_default_renderer_address", + "starksheet.library.Starksheet_sheet_default_renderer_address.write" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 79, + "end_line": 27, + "input_file": { + "filename": "autogen/starknet/storage_var/Starksheet_sheet_default_renderer_address/impl.cairo" + }, + "start_col": 55, + "start_line": 27 + } + }, + "568": { + "accessible_scopes": [ + "starksheet.library", + "starksheet.library.Starksheet_sheet_default_renderer_address", + "starksheet.library.Starksheet_sheet_default_renderer_address.write" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 80, + "end_line": 27, + "input_file": { + "filename": "autogen/starknet/storage_var/Starksheet_sheet_default_renderer_address/impl.cairo" + }, + "start_col": 9, + "start_line": 27 + } + }, + "570": { + "accessible_scopes": [ + "starksheet.library", + "starksheet.library.Starksheet_sheet_default_renderer_address", + "starksheet.library.Starksheet_sheet_default_renderer_address.write" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 41, + "end_line": 7, + "input_file": { + "filename": "autogen/starknet/storage_var/Starksheet_sheet_default_renderer_address/decl.cairo" + }, + "parent_location": [ + { + "end_col": 36, + "end_line": 26, + "input_file": { + "filename": "autogen/starknet/storage_var/Starksheet_sheet_default_renderer_address/impl.cairo" + }, + "parent_location": [ + { + "end_col": 62, + "end_line": 21, + "input_file": { + "filename": "autogen/starknet/storage_var/Starksheet_sheet_default_renderer_address/decl.cairo" + }, + "parent_location": [ + { + "end_col": 19, + "end_line": 28, + "input_file": { + "filename": "autogen/starknet/storage_var/Starksheet_sheet_default_renderer_address/impl.cairo" + }, + "start_col": 9, + "start_line": 28 + }, + "While trying to retrieve the implicit argument 'pedersen_ptr' in:" + ], + "start_col": 36, + "start_line": 21 + }, + "While expanding the reference 'pedersen_ptr' in:" + ], + "start_col": 30, + "start_line": 26 + }, + "While trying to update the implicit return value 'pedersen_ptr' in:" + ], + "start_col": 15, + "start_line": 7 + } + }, + "571": { + "accessible_scopes": [ + "starksheet.library", + "starksheet.library.Starksheet_sheet_default_renderer_address", + "starksheet.library.Starksheet_sheet_default_renderer_address.write" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 58, + "end_line": 7, + "input_file": { + "filename": "autogen/starknet/storage_var/Starksheet_sheet_default_renderer_address/decl.cairo" + }, + "parent_location": [ + { + "end_col": 36, + "end_line": 26, + "input_file": { + "filename": "autogen/starknet/storage_var/Starksheet_sheet_default_renderer_address/impl.cairo" + }, + "parent_location": [ + { + "end_col": 79, + "end_line": 21, + "input_file": { + "filename": "autogen/starknet/storage_var/Starksheet_sheet_default_renderer_address/decl.cairo" + }, + "parent_location": [ + { + "end_col": 19, + "end_line": 28, + "input_file": { + "filename": "autogen/starknet/storage_var/Starksheet_sheet_default_renderer_address/impl.cairo" + }, + "start_col": 9, + "start_line": 28 + }, + "While trying to retrieve the implicit argument 'range_check_ptr' in:" + ], + "start_col": 64, + "start_line": 21 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 30, + "start_line": 26 + }, + "While trying to update the implicit return value 'range_check_ptr' in:" + ], + "start_col": 43, + "start_line": 7 + } + }, + "572": { + "accessible_scopes": [ + "starksheet.library", + "starksheet.library.Starksheet_sheet_default_renderer_address", + "starksheet.library.Starksheet_sheet_default_renderer_address.write" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 19, + "end_line": 28, + "input_file": { + "filename": "autogen/starknet/storage_var/Starksheet_sheet_default_renderer_address/impl.cairo" + }, + "start_col": 9, + "start_line": 28 + } + }, + "573": { + "accessible_scopes": [ + "starksheet.library", + "starksheet.library.Starksheet_sheets", + "starksheet.library.Starksheet_sheets.addr" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 41, + "end_line": 7, + "input_file": { + "filename": "autogen/starknet/storage_var/Starksheet_sheets/impl.cairo" + }, + "parent_location": [ + { + "end_col": 48, + "end_line": 9, + "input_file": { + "filename": "autogen/starknet/storage_var/Starksheet_sheets/impl.cairo" + }, + "start_col": 36, + "start_line": 9 + }, + "While expanding the reference 'pedersen_ptr' in:" + ], + "start_col": 15, + "start_line": 7 + } + }, + "574": { + "accessible_scopes": [ + "starksheet.library", + "starksheet.library.Starksheet_sheets", + "starksheet.library.Starksheet_sheets.addr" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 94, + "end_line": 8, + "input_file": { + "filename": "autogen/starknet/storage_var/Starksheet_sheets/impl.cairo" + }, + "parent_location": [ + { + "end_col": 53, + "end_line": 9, + "input_file": { + "filename": "autogen/starknet/storage_var/Starksheet_sheets/impl.cairo" + }, + "start_col": 50, + "start_line": 9 + }, + "While expanding the reference 'res' in:" + ], + "start_col": 19, + "start_line": 8 + } + }, + "576": { + "accessible_scopes": [ + "starksheet.library", + "starksheet.library.Starksheet_sheets", + "starksheet.library.Starksheet_sheets.addr" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 74, + "end_line": 9, + "input_file": { + "filename": "autogen/starknet/storage_var/Starksheet_sheets/impl.cairo" + }, + "start_col": 55, + "start_line": 9 + } + }, + "577": { + "accessible_scopes": [ + "starksheet.library", + "starksheet.library.Starksheet_sheets", + "starksheet.library.Starksheet_sheets.addr" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 75, + "end_line": 9, + "input_file": { + "filename": "autogen/starknet/storage_var/Starksheet_sheets/impl.cairo" + }, + "start_col": 21, + "start_line": 9 + } + }, + "579": { + "accessible_scopes": [ + "starksheet.library", + "starksheet.library.Starksheet_sheets", + "starksheet.library.Starksheet_sheets.addr" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 58, + "end_line": 7, + "input_file": { + "filename": "autogen/starknet/storage_var/Starksheet_sheets/impl.cairo" + }, + "parent_location": [ + { + "end_col": 39, + "end_line": 12, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/starknet/common/storage.cairo" + }, + "parent_location": [ + { + "end_col": 48, + "end_line": 10, + "input_file": { + "filename": "autogen/starknet/storage_var/Starksheet_sheets/impl.cairo" + }, + "start_col": 21, + "start_line": 10 + }, + "While trying to retrieve the implicit argument 'range_check_ptr' in:" + ], + "start_col": 24, + "start_line": 12 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 43, + "start_line": 7 + } + }, + "580": { + "accessible_scopes": [ + "starksheet.library", + "starksheet.library.Starksheet_sheets", + "starksheet.library.Starksheet_sheets.addr" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 17, + "end_line": 9, + "input_file": { + "filename": "autogen/starknet/storage_var/Starksheet_sheets/impl.cairo" + }, + "parent_location": [ + { + "end_col": 47, + "end_line": 10, + "input_file": { + "filename": "autogen/starknet/storage_var/Starksheet_sheets/impl.cairo" + }, + "start_col": 44, + "start_line": 10 + }, + "While expanding the reference 'res' in:" + ], + "start_col": 14, + "start_line": 9 + } + }, + "581": { + "accessible_scopes": [ + "starksheet.library", + "starksheet.library.Starksheet_sheets", + "starksheet.library.Starksheet_sheets.addr" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 48, + "end_line": 10, + "input_file": { + "filename": "autogen/starknet/storage_var/Starksheet_sheets/impl.cairo" + }, + "start_col": 21, + "start_line": 10 + } + }, + "583": { + "accessible_scopes": [ + "starksheet.library", + "starksheet.library.Starksheet_sheets", + "starksheet.library.Starksheet_sheets.addr" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 48, + "end_line": 9, + "input_file": { + "filename": "autogen/starknet/storage_var/Starksheet_sheets/impl.cairo" + }, + "parent_location": [ + { + "end_col": 41, + "end_line": 7, + "input_file": { + "filename": "autogen/starknet/storage_var/Starksheet_sheets/decl.cairo" + }, + "parent_location": [ + { + "end_col": 26, + "end_line": 11, + "input_file": { + "filename": "autogen/starknet/storage_var/Starksheet_sheets/impl.cairo" + }, + "start_col": 9, + "start_line": 11 + }, + "While trying to retrieve the implicit argument 'pedersen_ptr' in:" + ], + "start_col": 15, + "start_line": 7 + }, + "While expanding the reference 'pedersen_ptr' in:" + ], + "start_col": 36, + "start_line": 9 + } + }, + "584": { + "accessible_scopes": [ + "starksheet.library", + "starksheet.library.Starksheet_sheets", + "starksheet.library.Starksheet_sheets.addr" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 39, + "end_line": 12, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/starknet/common/storage.cairo" + }, + "parent_location": [ + { + "end_col": 48, + "end_line": 10, + "input_file": { + "filename": "autogen/starknet/storage_var/Starksheet_sheets/impl.cairo" + }, + "parent_location": [ + { + "end_col": 58, + "end_line": 7, + "input_file": { + "filename": "autogen/starknet/storage_var/Starksheet_sheets/decl.cairo" + }, + "parent_location": [ + { + "end_col": 26, + "end_line": 11, + "input_file": { + "filename": "autogen/starknet/storage_var/Starksheet_sheets/impl.cairo" + }, + "start_col": 9, + "start_line": 11 + }, + "While trying to retrieve the implicit argument 'range_check_ptr' in:" + ], + "start_col": 43, + "start_line": 7 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 21, + "start_line": 10 + }, + "While trying to update the implicit return value 'range_check_ptr' in:" + ], + "start_col": 24, + "start_line": 12 + } + }, + "585": { + "accessible_scopes": [ + "starksheet.library", + "starksheet.library.Starksheet_sheets", + "starksheet.library.Starksheet_sheets.addr" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 17, + "end_line": 10, + "input_file": { + "filename": "autogen/starknet/storage_var/Starksheet_sheets/impl.cairo" + }, + "parent_location": [ + { + "end_col": 24, + "end_line": 11, + "input_file": { + "filename": "autogen/starknet/storage_var/Starksheet_sheets/impl.cairo" + }, + "start_col": 21, + "start_line": 11 + }, + "While expanding the reference 'res' in:" + ], + "start_col": 14, + "start_line": 10 + } + }, + "586": { + "accessible_scopes": [ + "starksheet.library", + "starksheet.library.Starksheet_sheets", + "starksheet.library.Starksheet_sheets.addr" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 26, + "end_line": 11, + "input_file": { + "filename": "autogen/starknet/storage_var/Starksheet_sheets/impl.cairo" + }, + "start_col": 9, + "start_line": 11 + } + }, + "587": { + "accessible_scopes": [ + "starksheet.library", + "starksheet.library.Starksheet_sheets", + "starksheet.library.Starksheet_sheets.read" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 61, + "end_line": 14, + "input_file": { + "filename": "autogen/starknet/storage_var/Starksheet_sheets/impl.cairo" + }, + "parent_location": [ + { + "end_col": 41, + "end_line": 7, + "input_file": { + "filename": "autogen/starknet/storage_var/Starksheet_sheets/decl.cairo" + }, + "parent_location": [ + { + "end_col": 38, + "end_line": 17, + "input_file": { + "filename": "autogen/starknet/storage_var/Starksheet_sheets/impl.cairo" + }, + "start_col": 30, + "start_line": 17 + }, + "While trying to retrieve the implicit argument 'pedersen_ptr' in:" + ], + "start_col": 15, + "start_line": 7 + }, + "While expanding the reference 'pedersen_ptr' in:" + ], + "start_col": 35, + "start_line": 14 + } + }, + "588": { + "accessible_scopes": [ + "starksheet.library", + "starksheet.library.Starksheet_sheets", + "starksheet.library.Starksheet_sheets.read" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 78, + "end_line": 14, + "input_file": { + "filename": "autogen/starknet/storage_var/Starksheet_sheets/impl.cairo" + }, + "parent_location": [ + { + "end_col": 58, + "end_line": 7, + "input_file": { + "filename": "autogen/starknet/storage_var/Starksheet_sheets/decl.cairo" + }, + "parent_location": [ + { + "end_col": 38, + "end_line": 17, + "input_file": { + "filename": "autogen/starknet/storage_var/Starksheet_sheets/impl.cairo" + }, + "start_col": 30, + "start_line": 17 + }, + "While trying to retrieve the implicit argument 'range_check_ptr' in:" + ], + "start_col": 43, + "start_line": 7 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 63, + "start_line": 14 + } + }, + "589": { + "accessible_scopes": [ + "starksheet.library", + "starksheet.library.Starksheet_sheets", + "starksheet.library.Starksheet_sheets.read" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 88, + "end_line": 14, + "input_file": { + "filename": "autogen/starknet/storage_var/Starksheet_sheets/impl.cairo" + }, + "parent_location": [ + { + "end_col": 37, + "end_line": 17, + "input_file": { + "filename": "autogen/starknet/storage_var/Starksheet_sheets/impl.cairo" + }, + "start_col": 35, + "start_line": 17 + }, + "While expanding the reference 'id' in:" + ], + "start_col": 80, + "start_line": 14 + } + }, + "590": { + "accessible_scopes": [ + "starksheet.library", + "starksheet.library.Starksheet_sheets", + "starksheet.library.Starksheet_sheets.read" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 38, + "end_line": 17, + "input_file": { + "filename": "autogen/starknet/storage_var/Starksheet_sheets/impl.cairo" + }, + "start_col": 30, + "start_line": 17 + } + }, + "592": { + "accessible_scopes": [ + "starksheet.library", + "starksheet.library.Starksheet_sheets", + "starksheet.library.Starksheet_sheets.read" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 33, + "end_line": 14, + "input_file": { + "filename": "autogen/starknet/storage_var/Starksheet_sheets/impl.cairo" + }, + "parent_location": [ + { + "end_col": 37, + "end_line": 352, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/starknet/common/syscalls.cairo" + }, + "parent_location": [ + { + "end_col": 75, + "end_line": 18, + "input_file": { + "filename": "autogen/starknet/storage_var/Starksheet_sheets/impl.cairo" + }, + "start_col": 37, + "start_line": 18 + }, + "While trying to retrieve the implicit argument 'syscall_ptr' in:" + ], + "start_col": 19, + "start_line": 352 + }, + "While expanding the reference 'syscall_ptr' in:" + ], + "start_col": 15, + "start_line": 14 + } + }, + "593": { + "accessible_scopes": [ + "starksheet.library", + "starksheet.library.Starksheet_sheets", + "starksheet.library.Starksheet_sheets.read" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 26, + "end_line": 17, + "input_file": { + "filename": "autogen/starknet/storage_var/Starksheet_sheets/impl.cairo" + }, + "parent_location": [ + { + "end_col": 70, + "end_line": 18, + "input_file": { + "filename": "autogen/starknet/storage_var/Starksheet_sheets/impl.cairo" + }, + "start_col": 58, + "start_line": 18 + }, + "While expanding the reference 'storage_addr' in:" + ], + "start_col": 14, + "start_line": 17 + } + }, + "594": { + "accessible_scopes": [ + "starksheet.library", + "starksheet.library.Starksheet_sheets", + "starksheet.library.Starksheet_sheets.read" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 75, + "end_line": 18, + "input_file": { + "filename": "autogen/starknet/storage_var/Starksheet_sheets/impl.cairo" + }, + "start_col": 37, + "start_line": 18 + } + }, + "596": { + "accessible_scopes": [ + "starksheet.library", + "starksheet.library.Starksheet_sheets", + "starksheet.library.Starksheet_sheets.read" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 37, + "end_line": 352, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/starknet/common/syscalls.cairo" + }, + "parent_location": [ + { + "end_col": 75, + "end_line": 18, + "input_file": { + "filename": "autogen/starknet/storage_var/Starksheet_sheets/impl.cairo" + }, + "parent_location": [ + { + "end_col": 42, + "end_line": 20, + "input_file": { + "filename": "autogen/starknet/storage_var/Starksheet_sheets/impl.cairo" + }, + "start_col": 31, + "start_line": 20 + }, + "While expanding the reference 'syscall_ptr' in:" + ], + "start_col": 37, + "start_line": 18 + }, + "While trying to update the implicit return value 'syscall_ptr' in:" + ], + "start_col": 19, + "start_line": 352 + } + }, + "597": { + "accessible_scopes": [ + "starksheet.library", + "starksheet.library.Starksheet_sheets", + "starksheet.library.Starksheet_sheets.read" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 41, + "end_line": 7, + "input_file": { + "filename": "autogen/starknet/storage_var/Starksheet_sheets/decl.cairo" + }, + "parent_location": [ + { + "end_col": 38, + "end_line": 17, + "input_file": { + "filename": "autogen/starknet/storage_var/Starksheet_sheets/impl.cairo" + }, + "parent_location": [ + { + "end_col": 44, + "end_line": 21, + "input_file": { + "filename": "autogen/starknet/storage_var/Starksheet_sheets/impl.cairo" + }, + "start_col": 32, + "start_line": 21 + }, + "While expanding the reference 'pedersen_ptr' in:" + ], + "start_col": 30, + "start_line": 17 + }, + "While trying to update the implicit return value 'pedersen_ptr' in:" + ], + "start_col": 15, + "start_line": 7 + } + }, + "598": { + "accessible_scopes": [ + "starksheet.library", + "starksheet.library.Starksheet_sheets", + "starksheet.library.Starksheet_sheets.read" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 58, + "end_line": 7, + "input_file": { + "filename": "autogen/starknet/storage_var/Starksheet_sheets/decl.cairo" + }, + "parent_location": [ + { + "end_col": 38, + "end_line": 17, + "input_file": { + "filename": "autogen/starknet/storage_var/Starksheet_sheets/impl.cairo" + }, + "parent_location": [ + { + "end_col": 50, + "end_line": 22, + "input_file": { + "filename": "autogen/starknet/storage_var/Starksheet_sheets/impl.cairo" + }, + "start_col": 35, + "start_line": 22 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 30, + "start_line": 17 + }, + "While trying to update the implicit return value 'range_check_ptr' in:" + ], + "start_col": 43, + "start_line": 7 + } + }, + "599": { + "accessible_scopes": [ + "starksheet.library", + "starksheet.library.Starksheet_sheets", + "starksheet.library.Starksheet_sheets.read" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 33, + "end_line": 18, + "input_file": { + "filename": "autogen/starknet/storage_var/Starksheet_sheets/impl.cairo" + }, + "parent_location": [ + { + "end_col": 64, + "end_line": 23, + "input_file": { + "filename": "autogen/starknet/storage_var/Starksheet_sheets/impl.cairo" + }, + "start_col": 45, + "start_line": 23 + }, + "While expanding the reference '__storage_var_temp0' in:" + ], + "start_col": 14, + "start_line": 18 + } + }, + "600": { + "accessible_scopes": [ + "starksheet.library", + "starksheet.library.Starksheet_sheets", + "starksheet.library.Starksheet_sheets.read" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 55, + "end_line": 24, + "input_file": { + "filename": "autogen/starknet/storage_var/Starksheet_sheets/impl.cairo" + }, + "start_col": 9, + "start_line": 24 + } + }, + "601": { + "accessible_scopes": [ + "starksheet.library", + "starksheet.library.Starksheet_sheets", + "starksheet.library.Starksheet_sheets.write" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 62, + "end_line": 27, + "input_file": { + "filename": "autogen/starknet/storage_var/Starksheet_sheets/impl.cairo" + }, + "parent_location": [ + { + "end_col": 41, + "end_line": 7, + "input_file": { + "filename": "autogen/starknet/storage_var/Starksheet_sheets/decl.cairo" + }, + "parent_location": [ + { + "end_col": 38, + "end_line": 30, + "input_file": { + "filename": "autogen/starknet/storage_var/Starksheet_sheets/impl.cairo" + }, + "start_col": 30, + "start_line": 30 + }, + "While trying to retrieve the implicit argument 'pedersen_ptr' in:" + ], + "start_col": 15, + "start_line": 7 + }, + "While expanding the reference 'pedersen_ptr' in:" + ], + "start_col": 36, + "start_line": 27 + } + }, + "602": { + "accessible_scopes": [ + "starksheet.library", + "starksheet.library.Starksheet_sheets", + "starksheet.library.Starksheet_sheets.write" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 79, + "end_line": 27, + "input_file": { + "filename": "autogen/starknet/storage_var/Starksheet_sheets/impl.cairo" + }, + "parent_location": [ + { + "end_col": 58, + "end_line": 7, + "input_file": { + "filename": "autogen/starknet/storage_var/Starksheet_sheets/decl.cairo" + }, + "parent_location": [ + { + "end_col": 38, + "end_line": 30, + "input_file": { + "filename": "autogen/starknet/storage_var/Starksheet_sheets/impl.cairo" + }, + "start_col": 30, + "start_line": 30 + }, + "While trying to retrieve the implicit argument 'range_check_ptr' in:" + ], + "start_col": 43, + "start_line": 7 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 64, + "start_line": 27 + } + }, + "603": { + "accessible_scopes": [ + "starksheet.library", + "starksheet.library.Starksheet_sheets", + "starksheet.library.Starksheet_sheets.write" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 17, + "end_line": 28, + "input_file": { + "filename": "autogen/starknet/storage_var/Starksheet_sheets/impl.cairo" + }, + "parent_location": [ + { + "end_col": 37, + "end_line": 30, + "input_file": { + "filename": "autogen/starknet/storage_var/Starksheet_sheets/impl.cairo" + }, + "start_col": 35, + "start_line": 30 + }, + "While expanding the reference 'id' in:" + ], + "start_col": 9, + "start_line": 28 + } + }, + "604": { + "accessible_scopes": [ + "starksheet.library", + "starksheet.library.Starksheet_sheets", + "starksheet.library.Starksheet_sheets.write" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 38, + "end_line": 30, + "input_file": { + "filename": "autogen/starknet/storage_var/Starksheet_sheets/impl.cairo" + }, + "start_col": 30, + "start_line": 30 + } + }, + "606": { + "accessible_scopes": [ + "starksheet.library", + "starksheet.library.Starksheet_sheets", + "starksheet.library.Starksheet_sheets.write" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 34, + "end_line": 27, + "input_file": { + "filename": "autogen/starknet/storage_var/Starksheet_sheets/impl.cairo" + }, + "parent_location": [ + { + "end_col": 38, + "end_line": 370, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/starknet/common/syscalls.cairo" + }, + "parent_location": [ + { + "end_col": 80, + "end_line": 31, + "input_file": { + "filename": "autogen/starknet/storage_var/Starksheet_sheets/impl.cairo" + }, + "start_col": 9, + "start_line": 31 + }, + "While trying to retrieve the implicit argument 'syscall_ptr' in:" + ], + "start_col": 20, + "start_line": 370 + }, + "While expanding the reference 'syscall_ptr' in:" + ], + "start_col": 16, + "start_line": 27 + } + }, + "607": { + "accessible_scopes": [ + "starksheet.library", + "starksheet.library.Starksheet_sheets", + "starksheet.library.Starksheet_sheets.write" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 26, + "end_line": 30, + "input_file": { + "filename": "autogen/starknet/storage_var/Starksheet_sheets/impl.cairo" + }, + "parent_location": [ + { + "end_col": 43, + "end_line": 31, + "input_file": { + "filename": "autogen/starknet/storage_var/Starksheet_sheets/impl.cairo" + }, + "start_col": 31, + "start_line": 31 + }, + "While expanding the reference 'storage_addr' in:" + ], + "start_col": 14, + "start_line": 30 + } + }, + "608": { + "accessible_scopes": [ + "starksheet.library", + "starksheet.library.Starksheet_sheets", + "starksheet.library.Starksheet_sheets.write" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 79, + "end_line": 31, + "input_file": { + "filename": "autogen/starknet/storage_var/Starksheet_sheets/impl.cairo" + }, + "start_col": 55, + "start_line": 31 + } + }, + "609": { + "accessible_scopes": [ + "starksheet.library", + "starksheet.library.Starksheet_sheets", + "starksheet.library.Starksheet_sheets.write" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 80, + "end_line": 31, + "input_file": { + "filename": "autogen/starknet/storage_var/Starksheet_sheets/impl.cairo" + }, + "start_col": 9, + "start_line": 31 + } + }, + "611": { + "accessible_scopes": [ + "starksheet.library", + "starksheet.library.Starksheet_sheets", + "starksheet.library.Starksheet_sheets.write" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 41, + "end_line": 7, + "input_file": { + "filename": "autogen/starknet/storage_var/Starksheet_sheets/decl.cairo" + }, + "parent_location": [ + { + "end_col": 38, + "end_line": 30, + "input_file": { + "filename": "autogen/starknet/storage_var/Starksheet_sheets/impl.cairo" + }, + "parent_location": [ + { + "end_col": 62, + "end_line": 21, + "input_file": { + "filename": "autogen/starknet/storage_var/Starksheet_sheets/decl.cairo" + }, + "parent_location": [ + { + "end_col": 19, + "end_line": 32, + "input_file": { + "filename": "autogen/starknet/storage_var/Starksheet_sheets/impl.cairo" + }, + "start_col": 9, + "start_line": 32 + }, + "While trying to retrieve the implicit argument 'pedersen_ptr' in:" + ], + "start_col": 36, + "start_line": 21 + }, + "While expanding the reference 'pedersen_ptr' in:" + ], + "start_col": 30, + "start_line": 30 + }, + "While trying to update the implicit return value 'pedersen_ptr' in:" + ], + "start_col": 15, + "start_line": 7 + } + }, + "612": { + "accessible_scopes": [ + "starksheet.library", + "starksheet.library.Starksheet_sheets", + "starksheet.library.Starksheet_sheets.write" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 58, + "end_line": 7, + "input_file": { + "filename": "autogen/starknet/storage_var/Starksheet_sheets/decl.cairo" + }, + "parent_location": [ + { + "end_col": 38, + "end_line": 30, + "input_file": { + "filename": "autogen/starknet/storage_var/Starksheet_sheets/impl.cairo" + }, + "parent_location": [ + { + "end_col": 79, + "end_line": 21, + "input_file": { + "filename": "autogen/starknet/storage_var/Starksheet_sheets/decl.cairo" + }, + "parent_location": [ + { + "end_col": 19, + "end_line": 32, + "input_file": { + "filename": "autogen/starknet/storage_var/Starksheet_sheets/impl.cairo" + }, + "start_col": 9, + "start_line": 32 + }, + "While trying to retrieve the implicit argument 'range_check_ptr' in:" + ], + "start_col": 64, + "start_line": 21 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 30, + "start_line": 30 + }, + "While trying to update the implicit return value 'range_check_ptr' in:" + ], + "start_col": 43, + "start_line": 7 + } + }, + "613": { + "accessible_scopes": [ + "starksheet.library", + "starksheet.library.Starksheet_sheets", + "starksheet.library.Starksheet_sheets.write" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 19, + "end_line": 32, + "input_file": { + "filename": "autogen/starknet/storage_var/Starksheet_sheets/impl.cairo" + }, + "start_col": 9, + "start_line": 32 + } + }, + "614": { + "accessible_scopes": [ + "starksheet.library", + "starksheet.library.Starksheet_sheets_count", + "starksheet.library.Starksheet_sheets_count.addr" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 41, + "end_line": 7, + "input_file": { + "filename": "autogen/starknet/storage_var/Starksheet_sheets_count/impl.cairo" + }, + "parent_location": [ + { + "end_col": 41, + "end_line": 7, + "input_file": { + "filename": "autogen/starknet/storage_var/Starksheet_sheets_count/decl.cairo" + }, + "parent_location": [ + { + "end_col": 26, + "end_line": 9, + "input_file": { + "filename": "autogen/starknet/storage_var/Starksheet_sheets_count/impl.cairo" + }, + "start_col": 9, + "start_line": 9 + }, + "While trying to retrieve the implicit argument 'pedersen_ptr' in:" + ], + "start_col": 15, + "start_line": 7 + }, + "While expanding the reference 'pedersen_ptr' in:" + ], + "start_col": 15, + "start_line": 7 + } + }, + "615": { + "accessible_scopes": [ + "starksheet.library", + "starksheet.library.Starksheet_sheets_count", + "starksheet.library.Starksheet_sheets_count.addr" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 58, + "end_line": 7, + "input_file": { + "filename": "autogen/starknet/storage_var/Starksheet_sheets_count/impl.cairo" + }, + "parent_location": [ + { + "end_col": 58, + "end_line": 7, + "input_file": { + "filename": "autogen/starknet/storage_var/Starksheet_sheets_count/decl.cairo" + }, + "parent_location": [ + { + "end_col": 26, + "end_line": 9, + "input_file": { + "filename": "autogen/starknet/storage_var/Starksheet_sheets_count/impl.cairo" + }, + "start_col": 9, + "start_line": 9 + }, + "While trying to retrieve the implicit argument 'range_check_ptr' in:" + ], + "start_col": 43, + "start_line": 7 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 43, + "start_line": 7 + } + }, + "616": { + "accessible_scopes": [ + "starksheet.library", + "starksheet.library.Starksheet_sheets_count", + "starksheet.library.Starksheet_sheets_count.addr" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 94, + "end_line": 8, + "input_file": { + "filename": "autogen/starknet/storage_var/Starksheet_sheets_count/impl.cairo" + }, + "parent_location": [ + { + "end_col": 24, + "end_line": 9, + "input_file": { + "filename": "autogen/starknet/storage_var/Starksheet_sheets_count/impl.cairo" + }, + "start_col": 21, + "start_line": 9 + }, + "While expanding the reference 'res' in:" + ], + "start_col": 19, + "start_line": 8 + } + }, + "618": { + "accessible_scopes": [ + "starksheet.library", + "starksheet.library.Starksheet_sheets_count", + "starksheet.library.Starksheet_sheets_count.addr" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 26, + "end_line": 9, + "input_file": { + "filename": "autogen/starknet/storage_var/Starksheet_sheets_count/impl.cairo" + }, + "start_col": 9, + "start_line": 9 + } + }, + "619": { + "accessible_scopes": [ + "starksheet.library", + "starksheet.library.Starksheet_sheets_count", + "starksheet.library.Starksheet_sheets_count.read" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 61, + "end_line": 12, + "input_file": { + "filename": "autogen/starknet/storage_var/Starksheet_sheets_count/impl.cairo" + }, + "parent_location": [ + { + "end_col": 41, + "end_line": 7, + "input_file": { + "filename": "autogen/starknet/storage_var/Starksheet_sheets_count/decl.cairo" + }, + "parent_location": [ + { + "end_col": 36, + "end_line": 13, + "input_file": { + "filename": "autogen/starknet/storage_var/Starksheet_sheets_count/impl.cairo" + }, + "start_col": 30, + "start_line": 13 + }, + "While trying to retrieve the implicit argument 'pedersen_ptr' in:" + ], + "start_col": 15, + "start_line": 7 + }, + "While expanding the reference 'pedersen_ptr' in:" + ], + "start_col": 35, + "start_line": 12 + } + }, + "620": { + "accessible_scopes": [ + "starksheet.library", + "starksheet.library.Starksheet_sheets_count", + "starksheet.library.Starksheet_sheets_count.read" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 78, + "end_line": 12, + "input_file": { + "filename": "autogen/starknet/storage_var/Starksheet_sheets_count/impl.cairo" + }, + "parent_location": [ + { + "end_col": 58, + "end_line": 7, + "input_file": { + "filename": "autogen/starknet/storage_var/Starksheet_sheets_count/decl.cairo" + }, + "parent_location": [ + { + "end_col": 36, + "end_line": 13, + "input_file": { + "filename": "autogen/starknet/storage_var/Starksheet_sheets_count/impl.cairo" + }, + "start_col": 30, + "start_line": 13 + }, + "While trying to retrieve the implicit argument 'range_check_ptr' in:" + ], + "start_col": 43, + "start_line": 7 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 63, + "start_line": 12 + } + }, + "621": { + "accessible_scopes": [ + "starksheet.library", + "starksheet.library.Starksheet_sheets_count", + "starksheet.library.Starksheet_sheets_count.read" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 36, + "end_line": 13, + "input_file": { + "filename": "autogen/starknet/storage_var/Starksheet_sheets_count/impl.cairo" + }, + "start_col": 30, + "start_line": 13 + } + }, + "623": { + "accessible_scopes": [ + "starksheet.library", + "starksheet.library.Starksheet_sheets_count", + "starksheet.library.Starksheet_sheets_count.read" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 33, + "end_line": 12, + "input_file": { + "filename": "autogen/starknet/storage_var/Starksheet_sheets_count/impl.cairo" + }, + "parent_location": [ + { + "end_col": 37, + "end_line": 352, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/starknet/common/syscalls.cairo" + }, + "parent_location": [ + { + "end_col": 75, + "end_line": 14, + "input_file": { + "filename": "autogen/starknet/storage_var/Starksheet_sheets_count/impl.cairo" + }, + "start_col": 37, + "start_line": 14 + }, + "While trying to retrieve the implicit argument 'syscall_ptr' in:" + ], + "start_col": 19, + "start_line": 352 + }, + "While expanding the reference 'syscall_ptr' in:" + ], + "start_col": 15, + "start_line": 12 + } + }, + "624": { + "accessible_scopes": [ + "starksheet.library", + "starksheet.library.Starksheet_sheets_count", + "starksheet.library.Starksheet_sheets_count.read" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 26, + "end_line": 13, + "input_file": { + "filename": "autogen/starknet/storage_var/Starksheet_sheets_count/impl.cairo" + }, + "parent_location": [ + { + "end_col": 70, + "end_line": 14, + "input_file": { + "filename": "autogen/starknet/storage_var/Starksheet_sheets_count/impl.cairo" + }, + "start_col": 58, + "start_line": 14 + }, + "While expanding the reference 'storage_addr' in:" + ], + "start_col": 14, + "start_line": 13 + } + }, + "625": { + "accessible_scopes": [ + "starksheet.library", + "starksheet.library.Starksheet_sheets_count", + "starksheet.library.Starksheet_sheets_count.read" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 75, + "end_line": 14, + "input_file": { + "filename": "autogen/starknet/storage_var/Starksheet_sheets_count/impl.cairo" + }, + "start_col": 37, + "start_line": 14 + } + }, + "627": { + "accessible_scopes": [ + "starksheet.library", + "starksheet.library.Starksheet_sheets_count", + "starksheet.library.Starksheet_sheets_count.read" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 37, + "end_line": 352, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/starknet/common/syscalls.cairo" + }, + "parent_location": [ + { + "end_col": 75, + "end_line": 14, + "input_file": { + "filename": "autogen/starknet/storage_var/Starksheet_sheets_count/impl.cairo" + }, + "parent_location": [ + { + "end_col": 42, + "end_line": 16, + "input_file": { + "filename": "autogen/starknet/storage_var/Starksheet_sheets_count/impl.cairo" + }, + "start_col": 31, + "start_line": 16 + }, + "While expanding the reference 'syscall_ptr' in:" + ], + "start_col": 37, + "start_line": 14 + }, + "While trying to update the implicit return value 'syscall_ptr' in:" + ], + "start_col": 19, + "start_line": 352 + } + }, + "628": { + "accessible_scopes": [ + "starksheet.library", + "starksheet.library.Starksheet_sheets_count", + "starksheet.library.Starksheet_sheets_count.read" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 41, + "end_line": 7, + "input_file": { + "filename": "autogen/starknet/storage_var/Starksheet_sheets_count/decl.cairo" + }, + "parent_location": [ + { + "end_col": 36, + "end_line": 13, + "input_file": { + "filename": "autogen/starknet/storage_var/Starksheet_sheets_count/impl.cairo" + }, + "parent_location": [ + { + "end_col": 44, + "end_line": 17, + "input_file": { + "filename": "autogen/starknet/storage_var/Starksheet_sheets_count/impl.cairo" + }, + "start_col": 32, + "start_line": 17 + }, + "While expanding the reference 'pedersen_ptr' in:" + ], + "start_col": 30, + "start_line": 13 + }, + "While trying to update the implicit return value 'pedersen_ptr' in:" + ], + "start_col": 15, + "start_line": 7 + } + }, + "629": { + "accessible_scopes": [ + "starksheet.library", + "starksheet.library.Starksheet_sheets_count", + "starksheet.library.Starksheet_sheets_count.read" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 58, + "end_line": 7, + "input_file": { + "filename": "autogen/starknet/storage_var/Starksheet_sheets_count/decl.cairo" + }, + "parent_location": [ + { + "end_col": 36, + "end_line": 13, + "input_file": { + "filename": "autogen/starknet/storage_var/Starksheet_sheets_count/impl.cairo" + }, + "parent_location": [ + { + "end_col": 50, + "end_line": 18, + "input_file": { + "filename": "autogen/starknet/storage_var/Starksheet_sheets_count/impl.cairo" + }, + "start_col": 35, + "start_line": 18 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 30, + "start_line": 13 + }, + "While trying to update the implicit return value 'range_check_ptr' in:" + ], + "start_col": 43, + "start_line": 7 + } + }, + "630": { + "accessible_scopes": [ + "starksheet.library", + "starksheet.library.Starksheet_sheets_count", + "starksheet.library.Starksheet_sheets_count.read" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 33, + "end_line": 14, + "input_file": { + "filename": "autogen/starknet/storage_var/Starksheet_sheets_count/impl.cairo" + }, + "parent_location": [ + { + "end_col": 64, + "end_line": 19, + "input_file": { + "filename": "autogen/starknet/storage_var/Starksheet_sheets_count/impl.cairo" + }, + "start_col": 45, + "start_line": 19 + }, + "While expanding the reference '__storage_var_temp0' in:" + ], + "start_col": 14, + "start_line": 14 + } + }, + "631": { + "accessible_scopes": [ + "starksheet.library", + "starksheet.library.Starksheet_sheets_count", + "starksheet.library.Starksheet_sheets_count.read" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 55, + "end_line": 20, + "input_file": { + "filename": "autogen/starknet/storage_var/Starksheet_sheets_count/impl.cairo" + }, + "start_col": 9, + "start_line": 20 + } + }, + "632": { + "accessible_scopes": [ + "starksheet.library", + "starksheet.library.Starksheet_sheets_count", + "starksheet.library.Starksheet_sheets_count.write" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 62, + "end_line": 23, + "input_file": { + "filename": "autogen/starknet/storage_var/Starksheet_sheets_count/impl.cairo" + }, + "parent_location": [ + { + "end_col": 41, + "end_line": 7, + "input_file": { + "filename": "autogen/starknet/storage_var/Starksheet_sheets_count/decl.cairo" + }, + "parent_location": [ + { + "end_col": 36, + "end_line": 24, + "input_file": { + "filename": "autogen/starknet/storage_var/Starksheet_sheets_count/impl.cairo" + }, + "start_col": 30, + "start_line": 24 + }, + "While trying to retrieve the implicit argument 'pedersen_ptr' in:" + ], + "start_col": 15, + "start_line": 7 + }, + "While expanding the reference 'pedersen_ptr' in:" + ], + "start_col": 36, + "start_line": 23 + } + }, + "633": { + "accessible_scopes": [ + "starksheet.library", + "starksheet.library.Starksheet_sheets_count", + "starksheet.library.Starksheet_sheets_count.write" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 79, + "end_line": 23, + "input_file": { + "filename": "autogen/starknet/storage_var/Starksheet_sheets_count/impl.cairo" + }, + "parent_location": [ + { + "end_col": 58, + "end_line": 7, + "input_file": { + "filename": "autogen/starknet/storage_var/Starksheet_sheets_count/decl.cairo" + }, + "parent_location": [ + { + "end_col": 36, + "end_line": 24, + "input_file": { + "filename": "autogen/starknet/storage_var/Starksheet_sheets_count/impl.cairo" + }, + "start_col": 30, + "start_line": 24 + }, + "While trying to retrieve the implicit argument 'range_check_ptr' in:" + ], + "start_col": 43, + "start_line": 7 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 64, + "start_line": 23 + } + }, + "634": { + "accessible_scopes": [ + "starksheet.library", + "starksheet.library.Starksheet_sheets_count", + "starksheet.library.Starksheet_sheets_count.write" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 36, + "end_line": 24, + "input_file": { + "filename": "autogen/starknet/storage_var/Starksheet_sheets_count/impl.cairo" + }, + "start_col": 30, + "start_line": 24 + } + }, + "636": { + "accessible_scopes": [ + "starksheet.library", + "starksheet.library.Starksheet_sheets_count", + "starksheet.library.Starksheet_sheets_count.write" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 34, + "end_line": 23, + "input_file": { + "filename": "autogen/starknet/storage_var/Starksheet_sheets_count/impl.cairo" + }, + "parent_location": [ + { + "end_col": 38, + "end_line": 370, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/starknet/common/syscalls.cairo" + }, + "parent_location": [ + { + "end_col": 80, + "end_line": 25, + "input_file": { + "filename": "autogen/starknet/storage_var/Starksheet_sheets_count/impl.cairo" + }, + "start_col": 9, + "start_line": 25 + }, + "While trying to retrieve the implicit argument 'syscall_ptr' in:" + ], + "start_col": 20, + "start_line": 370 + }, + "While expanding the reference 'syscall_ptr' in:" + ], + "start_col": 16, + "start_line": 23 + } + }, + "637": { + "accessible_scopes": [ + "starksheet.library", + "starksheet.library.Starksheet_sheets_count", + "starksheet.library.Starksheet_sheets_count.write" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 26, + "end_line": 24, + "input_file": { + "filename": "autogen/starknet/storage_var/Starksheet_sheets_count/impl.cairo" + }, + "parent_location": [ + { + "end_col": 43, + "end_line": 25, + "input_file": { + "filename": "autogen/starknet/storage_var/Starksheet_sheets_count/impl.cairo" + }, + "start_col": 31, + "start_line": 25 + }, + "While expanding the reference 'storage_addr' in:" + ], + "start_col": 14, + "start_line": 24 + } + }, + "638": { + "accessible_scopes": [ + "starksheet.library", + "starksheet.library.Starksheet_sheets_count", + "starksheet.library.Starksheet_sheets_count.write" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 79, + "end_line": 25, + "input_file": { + "filename": "autogen/starknet/storage_var/Starksheet_sheets_count/impl.cairo" + }, + "start_col": 55, + "start_line": 25 + } + }, + "639": { + "accessible_scopes": [ + "starksheet.library", + "starksheet.library.Starksheet_sheets_count", + "starksheet.library.Starksheet_sheets_count.write" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 80, + "end_line": 25, + "input_file": { + "filename": "autogen/starknet/storage_var/Starksheet_sheets_count/impl.cairo" + }, + "start_col": 9, + "start_line": 25 + } + }, + "641": { + "accessible_scopes": [ + "starksheet.library", + "starksheet.library.Starksheet_sheets_count", + "starksheet.library.Starksheet_sheets_count.write" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 41, + "end_line": 7, + "input_file": { + "filename": "autogen/starknet/storage_var/Starksheet_sheets_count/decl.cairo" + }, + "parent_location": [ + { + "end_col": 36, + "end_line": 24, + "input_file": { + "filename": "autogen/starknet/storage_var/Starksheet_sheets_count/impl.cairo" + }, + "parent_location": [ + { + "end_col": 62, + "end_line": 19, + "input_file": { + "filename": "autogen/starknet/storage_var/Starksheet_sheets_count/decl.cairo" + }, + "parent_location": [ + { + "end_col": 19, + "end_line": 26, + "input_file": { + "filename": "autogen/starknet/storage_var/Starksheet_sheets_count/impl.cairo" + }, + "start_col": 9, + "start_line": 26 + }, + "While trying to retrieve the implicit argument 'pedersen_ptr' in:" + ], + "start_col": 36, + "start_line": 19 + }, + "While expanding the reference 'pedersen_ptr' in:" + ], + "start_col": 30, + "start_line": 24 + }, + "While trying to update the implicit return value 'pedersen_ptr' in:" + ], + "start_col": 15, + "start_line": 7 + } + }, + "642": { + "accessible_scopes": [ + "starksheet.library", + "starksheet.library.Starksheet_sheets_count", + "starksheet.library.Starksheet_sheets_count.write" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 58, + "end_line": 7, + "input_file": { + "filename": "autogen/starknet/storage_var/Starksheet_sheets_count/decl.cairo" + }, + "parent_location": [ + { + "end_col": 36, + "end_line": 24, + "input_file": { + "filename": "autogen/starknet/storage_var/Starksheet_sheets_count/impl.cairo" + }, + "parent_location": [ + { + "end_col": 79, + "end_line": 19, + "input_file": { + "filename": "autogen/starknet/storage_var/Starksheet_sheets_count/decl.cairo" + }, + "parent_location": [ + { + "end_col": 19, + "end_line": 26, + "input_file": { + "filename": "autogen/starknet/storage_var/Starksheet_sheets_count/impl.cairo" + }, + "start_col": 9, + "start_line": 26 + }, + "While trying to retrieve the implicit argument 'range_check_ptr' in:" + ], + "start_col": 64, + "start_line": 19 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 30, + "start_line": 24 + }, + "While trying to update the implicit return value 'range_check_ptr' in:" + ], + "start_col": 43, + "start_line": 7 + } + }, + "643": { + "accessible_scopes": [ + "starksheet.library", + "starksheet.library.Starksheet_sheets_count", + "starksheet.library.Starksheet_sheets_count.write" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 19, + "end_line": 26, + "input_file": { + "filename": "autogen/starknet/storage_var/Starksheet_sheets_count/impl.cairo" + }, + "start_col": 9, + "start_line": 26 + } + }, + "644": { + "accessible_scopes": [ + "starksheet.library", + "starksheet.library.Starksheet_merkle_root", + "starksheet.library.Starksheet_merkle_root.addr" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 41, + "end_line": 7, + "input_file": { + "filename": "autogen/starknet/storage_var/Starksheet_merkle_root/impl.cairo" + }, + "parent_location": [ + { + "end_col": 41, + "end_line": 7, + "input_file": { + "filename": "autogen/starknet/storage_var/Starksheet_merkle_root/decl.cairo" + }, + "parent_location": [ + { + "end_col": 26, + "end_line": 9, + "input_file": { + "filename": "autogen/starknet/storage_var/Starksheet_merkle_root/impl.cairo" + }, + "start_col": 9, + "start_line": 9 + }, + "While trying to retrieve the implicit argument 'pedersen_ptr' in:" + ], + "start_col": 15, + "start_line": 7 + }, + "While expanding the reference 'pedersen_ptr' in:" + ], + "start_col": 15, + "start_line": 7 + } + }, + "645": { + "accessible_scopes": [ + "starksheet.library", + "starksheet.library.Starksheet_merkle_root", + "starksheet.library.Starksheet_merkle_root.addr" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 58, + "end_line": 7, + "input_file": { + "filename": "autogen/starknet/storage_var/Starksheet_merkle_root/impl.cairo" + }, + "parent_location": [ + { + "end_col": 58, + "end_line": 7, + "input_file": { + "filename": "autogen/starknet/storage_var/Starksheet_merkle_root/decl.cairo" + }, + "parent_location": [ + { + "end_col": 26, + "end_line": 9, + "input_file": { + "filename": "autogen/starknet/storage_var/Starksheet_merkle_root/impl.cairo" + }, + "start_col": 9, + "start_line": 9 + }, + "While trying to retrieve the implicit argument 'range_check_ptr' in:" + ], + "start_col": 43, + "start_line": 7 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 43, + "start_line": 7 + } + }, + "646": { + "accessible_scopes": [ + "starksheet.library", + "starksheet.library.Starksheet_merkle_root", + "starksheet.library.Starksheet_merkle_root.addr" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 95, + "end_line": 8, + "input_file": { + "filename": "autogen/starknet/storage_var/Starksheet_merkle_root/impl.cairo" + }, + "parent_location": [ + { + "end_col": 24, + "end_line": 9, + "input_file": { + "filename": "autogen/starknet/storage_var/Starksheet_merkle_root/impl.cairo" + }, + "start_col": 21, + "start_line": 9 + }, + "While expanding the reference 'res' in:" + ], + "start_col": 19, + "start_line": 8 + } + }, + "648": { + "accessible_scopes": [ + "starksheet.library", + "starksheet.library.Starksheet_merkle_root", + "starksheet.library.Starksheet_merkle_root.addr" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 26, + "end_line": 9, + "input_file": { + "filename": "autogen/starknet/storage_var/Starksheet_merkle_root/impl.cairo" + }, + "start_col": 9, + "start_line": 9 + } + }, + "649": { + "accessible_scopes": [ + "starksheet.library", + "starksheet.library.Starksheet_merkle_root", + "starksheet.library.Starksheet_merkle_root.read" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 61, + "end_line": 12, + "input_file": { + "filename": "autogen/starknet/storage_var/Starksheet_merkle_root/impl.cairo" + }, + "parent_location": [ + { + "end_col": 41, + "end_line": 7, + "input_file": { + "filename": "autogen/starknet/storage_var/Starksheet_merkle_root/decl.cairo" + }, + "parent_location": [ + { + "end_col": 36, + "end_line": 13, + "input_file": { + "filename": "autogen/starknet/storage_var/Starksheet_merkle_root/impl.cairo" + }, + "start_col": 30, + "start_line": 13 + }, + "While trying to retrieve the implicit argument 'pedersen_ptr' in:" + ], + "start_col": 15, + "start_line": 7 + }, + "While expanding the reference 'pedersen_ptr' in:" + ], + "start_col": 35, + "start_line": 12 + } + }, + "650": { + "accessible_scopes": [ + "starksheet.library", + "starksheet.library.Starksheet_merkle_root", + "starksheet.library.Starksheet_merkle_root.read" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 78, + "end_line": 12, + "input_file": { + "filename": "autogen/starknet/storage_var/Starksheet_merkle_root/impl.cairo" + }, + "parent_location": [ + { + "end_col": 58, + "end_line": 7, + "input_file": { + "filename": "autogen/starknet/storage_var/Starksheet_merkle_root/decl.cairo" + }, + "parent_location": [ + { + "end_col": 36, + "end_line": 13, + "input_file": { + "filename": "autogen/starknet/storage_var/Starksheet_merkle_root/impl.cairo" + }, + "start_col": 30, + "start_line": 13 + }, + "While trying to retrieve the implicit argument 'range_check_ptr' in:" + ], + "start_col": 43, + "start_line": 7 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 63, + "start_line": 12 + } + }, + "651": { + "accessible_scopes": [ + "starksheet.library", + "starksheet.library.Starksheet_merkle_root", + "starksheet.library.Starksheet_merkle_root.read" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 36, + "end_line": 13, + "input_file": { + "filename": "autogen/starknet/storage_var/Starksheet_merkle_root/impl.cairo" + }, + "start_col": 30, + "start_line": 13 + } + }, + "653": { + "accessible_scopes": [ + "starksheet.library", + "starksheet.library.Starksheet_merkle_root", + "starksheet.library.Starksheet_merkle_root.read" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 33, + "end_line": 12, + "input_file": { + "filename": "autogen/starknet/storage_var/Starksheet_merkle_root/impl.cairo" + }, + "parent_location": [ + { + "end_col": 37, + "end_line": 352, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/starknet/common/syscalls.cairo" + }, + "parent_location": [ + { + "end_col": 75, + "end_line": 14, + "input_file": { + "filename": "autogen/starknet/storage_var/Starksheet_merkle_root/impl.cairo" + }, + "start_col": 37, + "start_line": 14 + }, + "While trying to retrieve the implicit argument 'syscall_ptr' in:" + ], + "start_col": 19, + "start_line": 352 + }, + "While expanding the reference 'syscall_ptr' in:" + ], + "start_col": 15, + "start_line": 12 + } + }, + "654": { + "accessible_scopes": [ + "starksheet.library", + "starksheet.library.Starksheet_merkle_root", + "starksheet.library.Starksheet_merkle_root.read" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 26, + "end_line": 13, + "input_file": { + "filename": "autogen/starknet/storage_var/Starksheet_merkle_root/impl.cairo" + }, + "parent_location": [ + { + "end_col": 70, + "end_line": 14, + "input_file": { + "filename": "autogen/starknet/storage_var/Starksheet_merkle_root/impl.cairo" + }, + "start_col": 58, + "start_line": 14 + }, + "While expanding the reference 'storage_addr' in:" + ], + "start_col": 14, + "start_line": 13 + } + }, + "655": { + "accessible_scopes": [ + "starksheet.library", + "starksheet.library.Starksheet_merkle_root", + "starksheet.library.Starksheet_merkle_root.read" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 75, + "end_line": 14, + "input_file": { + "filename": "autogen/starknet/storage_var/Starksheet_merkle_root/impl.cairo" + }, + "start_col": 37, + "start_line": 14 + } + }, + "657": { + "accessible_scopes": [ + "starksheet.library", + "starksheet.library.Starksheet_merkle_root", + "starksheet.library.Starksheet_merkle_root.read" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 37, + "end_line": 352, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/starknet/common/syscalls.cairo" + }, + "parent_location": [ + { + "end_col": 75, + "end_line": 14, + "input_file": { + "filename": "autogen/starknet/storage_var/Starksheet_merkle_root/impl.cairo" + }, + "parent_location": [ + { + "end_col": 42, + "end_line": 16, + "input_file": { + "filename": "autogen/starknet/storage_var/Starksheet_merkle_root/impl.cairo" + }, + "start_col": 31, + "start_line": 16 + }, + "While expanding the reference 'syscall_ptr' in:" + ], + "start_col": 37, + "start_line": 14 + }, + "While trying to update the implicit return value 'syscall_ptr' in:" + ], + "start_col": 19, + "start_line": 352 + } + }, + "658": { + "accessible_scopes": [ + "starksheet.library", + "starksheet.library.Starksheet_merkle_root", + "starksheet.library.Starksheet_merkle_root.read" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 41, + "end_line": 7, + "input_file": { + "filename": "autogen/starknet/storage_var/Starksheet_merkle_root/decl.cairo" + }, + "parent_location": [ + { + "end_col": 36, + "end_line": 13, + "input_file": { + "filename": "autogen/starknet/storage_var/Starksheet_merkle_root/impl.cairo" + }, + "parent_location": [ + { + "end_col": 44, + "end_line": 17, + "input_file": { + "filename": "autogen/starknet/storage_var/Starksheet_merkle_root/impl.cairo" + }, + "start_col": 32, + "start_line": 17 + }, + "While expanding the reference 'pedersen_ptr' in:" + ], + "start_col": 30, + "start_line": 13 + }, + "While trying to update the implicit return value 'pedersen_ptr' in:" + ], + "start_col": 15, + "start_line": 7 + } + }, + "659": { + "accessible_scopes": [ + "starksheet.library", + "starksheet.library.Starksheet_merkle_root", + "starksheet.library.Starksheet_merkle_root.read" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 58, + "end_line": 7, + "input_file": { + "filename": "autogen/starknet/storage_var/Starksheet_merkle_root/decl.cairo" + }, + "parent_location": [ + { + "end_col": 36, + "end_line": 13, + "input_file": { + "filename": "autogen/starknet/storage_var/Starksheet_merkle_root/impl.cairo" + }, + "parent_location": [ + { + "end_col": 50, + "end_line": 18, + "input_file": { + "filename": "autogen/starknet/storage_var/Starksheet_merkle_root/impl.cairo" + }, + "start_col": 35, + "start_line": 18 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 30, + "start_line": 13 + }, + "While trying to update the implicit return value 'range_check_ptr' in:" + ], + "start_col": 43, + "start_line": 7 + } + }, + "660": { + "accessible_scopes": [ + "starksheet.library", + "starksheet.library.Starksheet_merkle_root", + "starksheet.library.Starksheet_merkle_root.read" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 33, + "end_line": 14, + "input_file": { + "filename": "autogen/starknet/storage_var/Starksheet_merkle_root/impl.cairo" + }, + "parent_location": [ + { + "end_col": 64, + "end_line": 19, + "input_file": { + "filename": "autogen/starknet/storage_var/Starksheet_merkle_root/impl.cairo" + }, + "start_col": 45, + "start_line": 19 + }, + "While expanding the reference '__storage_var_temp0' in:" + ], + "start_col": 14, + "start_line": 14 + } + }, + "661": { + "accessible_scopes": [ + "starksheet.library", + "starksheet.library.Starksheet_merkle_root", + "starksheet.library.Starksheet_merkle_root.read" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 55, + "end_line": 20, + "input_file": { + "filename": "autogen/starknet/storage_var/Starksheet_merkle_root/impl.cairo" + }, + "start_col": 9, + "start_line": 20 + } + }, + "662": { + "accessible_scopes": [ + "starksheet.library", + "starksheet.library.Starksheet_merkle_root", + "starksheet.library.Starksheet_merkle_root.write" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 62, + "end_line": 23, + "input_file": { + "filename": "autogen/starknet/storage_var/Starksheet_merkle_root/impl.cairo" + }, + "parent_location": [ + { + "end_col": 41, + "end_line": 7, + "input_file": { + "filename": "autogen/starknet/storage_var/Starksheet_merkle_root/decl.cairo" + }, + "parent_location": [ + { + "end_col": 36, + "end_line": 24, + "input_file": { + "filename": "autogen/starknet/storage_var/Starksheet_merkle_root/impl.cairo" + }, + "start_col": 30, + "start_line": 24 + }, + "While trying to retrieve the implicit argument 'pedersen_ptr' in:" + ], + "start_col": 15, + "start_line": 7 + }, + "While expanding the reference 'pedersen_ptr' in:" + ], + "start_col": 36, + "start_line": 23 + } + }, + "663": { + "accessible_scopes": [ + "starksheet.library", + "starksheet.library.Starksheet_merkle_root", + "starksheet.library.Starksheet_merkle_root.write" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 79, + "end_line": 23, + "input_file": { + "filename": "autogen/starknet/storage_var/Starksheet_merkle_root/impl.cairo" + }, + "parent_location": [ + { + "end_col": 58, + "end_line": 7, + "input_file": { + "filename": "autogen/starknet/storage_var/Starksheet_merkle_root/decl.cairo" + }, + "parent_location": [ + { + "end_col": 36, + "end_line": 24, + "input_file": { + "filename": "autogen/starknet/storage_var/Starksheet_merkle_root/impl.cairo" + }, + "start_col": 30, + "start_line": 24 + }, + "While trying to retrieve the implicit argument 'range_check_ptr' in:" + ], + "start_col": 43, + "start_line": 7 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 64, + "start_line": 23 + } + }, + "664": { + "accessible_scopes": [ + "starksheet.library", + "starksheet.library.Starksheet_merkle_root", + "starksheet.library.Starksheet_merkle_root.write" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 36, + "end_line": 24, + "input_file": { + "filename": "autogen/starknet/storage_var/Starksheet_merkle_root/impl.cairo" + }, + "start_col": 30, + "start_line": 24 + } + }, + "666": { + "accessible_scopes": [ + "starksheet.library", + "starksheet.library.Starksheet_merkle_root", + "starksheet.library.Starksheet_merkle_root.write" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 34, + "end_line": 23, + "input_file": { + "filename": "autogen/starknet/storage_var/Starksheet_merkle_root/impl.cairo" + }, + "parent_location": [ + { + "end_col": 38, + "end_line": 370, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/starknet/common/syscalls.cairo" + }, + "parent_location": [ + { + "end_col": 80, + "end_line": 25, + "input_file": { + "filename": "autogen/starknet/storage_var/Starksheet_merkle_root/impl.cairo" + }, + "start_col": 9, + "start_line": 25 + }, + "While trying to retrieve the implicit argument 'syscall_ptr' in:" + ], + "start_col": 20, + "start_line": 370 + }, + "While expanding the reference 'syscall_ptr' in:" + ], + "start_col": 16, + "start_line": 23 + } + }, + "667": { + "accessible_scopes": [ + "starksheet.library", + "starksheet.library.Starksheet_merkle_root", + "starksheet.library.Starksheet_merkle_root.write" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 26, + "end_line": 24, + "input_file": { + "filename": "autogen/starknet/storage_var/Starksheet_merkle_root/impl.cairo" + }, + "parent_location": [ + { + "end_col": 43, + "end_line": 25, + "input_file": { + "filename": "autogen/starknet/storage_var/Starksheet_merkle_root/impl.cairo" + }, + "start_col": 31, + "start_line": 25 + }, + "While expanding the reference 'storage_addr' in:" + ], + "start_col": 14, + "start_line": 24 + } + }, + "668": { + "accessible_scopes": [ + "starksheet.library", + "starksheet.library.Starksheet_merkle_root", + "starksheet.library.Starksheet_merkle_root.write" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 79, + "end_line": 25, + "input_file": { + "filename": "autogen/starknet/storage_var/Starksheet_merkle_root/impl.cairo" + }, + "start_col": 55, + "start_line": 25 + } + }, + "669": { + "accessible_scopes": [ + "starksheet.library", + "starksheet.library.Starksheet_merkle_root", + "starksheet.library.Starksheet_merkle_root.write" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 80, + "end_line": 25, + "input_file": { + "filename": "autogen/starknet/storage_var/Starksheet_merkle_root/impl.cairo" + }, + "start_col": 9, + "start_line": 25 + } + }, + "671": { + "accessible_scopes": [ + "starksheet.library", + "starksheet.library.Starksheet_merkle_root", + "starksheet.library.Starksheet_merkle_root.write" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 41, + "end_line": 7, + "input_file": { + "filename": "autogen/starknet/storage_var/Starksheet_merkle_root/decl.cairo" + }, + "parent_location": [ + { + "end_col": 36, + "end_line": 24, + "input_file": { + "filename": "autogen/starknet/storage_var/Starksheet_merkle_root/impl.cairo" + }, + "parent_location": [ + { + "end_col": 62, + "end_line": 19, + "input_file": { + "filename": "autogen/starknet/storage_var/Starksheet_merkle_root/decl.cairo" + }, + "parent_location": [ + { + "end_col": 19, + "end_line": 26, + "input_file": { + "filename": "autogen/starknet/storage_var/Starksheet_merkle_root/impl.cairo" + }, + "start_col": 9, + "start_line": 26 + }, + "While trying to retrieve the implicit argument 'pedersen_ptr' in:" + ], + "start_col": 36, + "start_line": 19 + }, + "While expanding the reference 'pedersen_ptr' in:" + ], + "start_col": 30, + "start_line": 24 + }, + "While trying to update the implicit return value 'pedersen_ptr' in:" + ], + "start_col": 15, + "start_line": 7 + } + }, + "672": { + "accessible_scopes": [ + "starksheet.library", + "starksheet.library.Starksheet_merkle_root", + "starksheet.library.Starksheet_merkle_root.write" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 58, + "end_line": 7, + "input_file": { + "filename": "autogen/starknet/storage_var/Starksheet_merkle_root/decl.cairo" + }, + "parent_location": [ + { + "end_col": 36, + "end_line": 24, + "input_file": { + "filename": "autogen/starknet/storage_var/Starksheet_merkle_root/impl.cairo" + }, + "parent_location": [ + { + "end_col": 79, + "end_line": 19, + "input_file": { + "filename": "autogen/starknet/storage_var/Starksheet_merkle_root/decl.cairo" + }, + "parent_location": [ + { + "end_col": 19, + "end_line": 26, + "input_file": { + "filename": "autogen/starknet/storage_var/Starksheet_merkle_root/impl.cairo" + }, + "start_col": 9, + "start_line": 26 + }, + "While trying to retrieve the implicit argument 'range_check_ptr' in:" + ], + "start_col": 64, + "start_line": 19 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 30, + "start_line": 24 + }, + "While trying to update the implicit return value 'range_check_ptr' in:" + ], + "start_col": 43, + "start_line": 7 + } + }, + "673": { + "accessible_scopes": [ + "starksheet.library", + "starksheet.library.Starksheet_merkle_root", + "starksheet.library.Starksheet_merkle_root.write" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 19, + "end_line": 26, + "input_file": { + "filename": "autogen/starknet/storage_var/Starksheet_merkle_root/impl.cairo" + }, + "start_col": 9, + "start_line": 26 + } + }, + "674": { + "accessible_scopes": [ + "starksheet.library", + "starksheet.library.Starksheet_sheet_price", + "starksheet.library.Starksheet_sheet_price.addr" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 41, + "end_line": 7, + "input_file": { + "filename": "autogen/starknet/storage_var/Starksheet_sheet_price/impl.cairo" + }, + "parent_location": [ + { + "end_col": 41, + "end_line": 7, + "input_file": { + "filename": "autogen/starknet/storage_var/Starksheet_sheet_price/decl.cairo" + }, + "parent_location": [ + { + "end_col": 26, + "end_line": 9, + "input_file": { + "filename": "autogen/starknet/storage_var/Starksheet_sheet_price/impl.cairo" + }, + "start_col": 9, + "start_line": 9 + }, + "While trying to retrieve the implicit argument 'pedersen_ptr' in:" + ], + "start_col": 15, + "start_line": 7 + }, + "While expanding the reference 'pedersen_ptr' in:" + ], + "start_col": 15, + "start_line": 7 + } + }, + "675": { + "accessible_scopes": [ + "starksheet.library", + "starksheet.library.Starksheet_sheet_price", + "starksheet.library.Starksheet_sheet_price.addr" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 58, + "end_line": 7, + "input_file": { + "filename": "autogen/starknet/storage_var/Starksheet_sheet_price/impl.cairo" + }, + "parent_location": [ + { + "end_col": 58, + "end_line": 7, + "input_file": { + "filename": "autogen/starknet/storage_var/Starksheet_sheet_price/decl.cairo" + }, + "parent_location": [ + { + "end_col": 26, + "end_line": 9, + "input_file": { + "filename": "autogen/starknet/storage_var/Starksheet_sheet_price/impl.cairo" + }, + "start_col": 9, + "start_line": 9 + }, + "While trying to retrieve the implicit argument 'range_check_ptr' in:" + ], + "start_col": 43, + "start_line": 7 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 43, + "start_line": 7 + } + }, + "676": { + "accessible_scopes": [ + "starksheet.library", + "starksheet.library.Starksheet_sheet_price", + "starksheet.library.Starksheet_sheet_price.addr" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 95, + "end_line": 8, + "input_file": { + "filename": "autogen/starknet/storage_var/Starksheet_sheet_price/impl.cairo" + }, + "parent_location": [ + { + "end_col": 24, + "end_line": 9, + "input_file": { + "filename": "autogen/starknet/storage_var/Starksheet_sheet_price/impl.cairo" + }, + "start_col": 21, + "start_line": 9 + }, + "While expanding the reference 'res' in:" + ], + "start_col": 19, + "start_line": 8 + } + }, + "678": { + "accessible_scopes": [ + "starksheet.library", + "starksheet.library.Starksheet_sheet_price", + "starksheet.library.Starksheet_sheet_price.addr" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 26, + "end_line": 9, + "input_file": { + "filename": "autogen/starknet/storage_var/Starksheet_sheet_price/impl.cairo" + }, + "start_col": 9, + "start_line": 9 + } + }, + "679": { + "accessible_scopes": [ + "starksheet.library", + "starksheet.library.Starksheet_sheet_price", + "starksheet.library.Starksheet_sheet_price.read" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 61, + "end_line": 12, + "input_file": { + "filename": "autogen/starknet/storage_var/Starksheet_sheet_price/impl.cairo" + }, + "parent_location": [ + { + "end_col": 41, + "end_line": 7, + "input_file": { + "filename": "autogen/starknet/storage_var/Starksheet_sheet_price/decl.cairo" + }, + "parent_location": [ + { + "end_col": 36, + "end_line": 13, + "input_file": { + "filename": "autogen/starknet/storage_var/Starksheet_sheet_price/impl.cairo" + }, + "start_col": 30, + "start_line": 13 + }, + "While trying to retrieve the implicit argument 'pedersen_ptr' in:" + ], + "start_col": 15, + "start_line": 7 + }, + "While expanding the reference 'pedersen_ptr' in:" + ], + "start_col": 35, + "start_line": 12 + } + }, + "680": { + "accessible_scopes": [ + "starksheet.library", + "starksheet.library.Starksheet_sheet_price", + "starksheet.library.Starksheet_sheet_price.read" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 78, + "end_line": 12, + "input_file": { + "filename": "autogen/starknet/storage_var/Starksheet_sheet_price/impl.cairo" + }, + "parent_location": [ + { + "end_col": 58, + "end_line": 7, + "input_file": { + "filename": "autogen/starknet/storage_var/Starksheet_sheet_price/decl.cairo" + }, + "parent_location": [ + { + "end_col": 36, + "end_line": 13, + "input_file": { + "filename": "autogen/starknet/storage_var/Starksheet_sheet_price/impl.cairo" + }, + "start_col": 30, + "start_line": 13 + }, + "While trying to retrieve the implicit argument 'range_check_ptr' in:" + ], + "start_col": 43, + "start_line": 7 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 63, + "start_line": 12 + } + }, + "681": { + "accessible_scopes": [ + "starksheet.library", + "starksheet.library.Starksheet_sheet_price", + "starksheet.library.Starksheet_sheet_price.read" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 36, + "end_line": 13, + "input_file": { + "filename": "autogen/starknet/storage_var/Starksheet_sheet_price/impl.cairo" + }, + "start_col": 30, + "start_line": 13 + } + }, + "683": { + "accessible_scopes": [ + "starksheet.library", + "starksheet.library.Starksheet_sheet_price", + "starksheet.library.Starksheet_sheet_price.read" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 33, + "end_line": 12, + "input_file": { + "filename": "autogen/starknet/storage_var/Starksheet_sheet_price/impl.cairo" + }, + "parent_location": [ + { + "end_col": 37, + "end_line": 352, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/starknet/common/syscalls.cairo" + }, + "parent_location": [ + { + "end_col": 75, + "end_line": 14, + "input_file": { + "filename": "autogen/starknet/storage_var/Starksheet_sheet_price/impl.cairo" + }, + "start_col": 37, + "start_line": 14 + }, + "While trying to retrieve the implicit argument 'syscall_ptr' in:" + ], + "start_col": 19, + "start_line": 352 + }, + "While expanding the reference 'syscall_ptr' in:" + ], + "start_col": 15, + "start_line": 12 + } + }, + "684": { + "accessible_scopes": [ + "starksheet.library", + "starksheet.library.Starksheet_sheet_price", + "starksheet.library.Starksheet_sheet_price.read" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 26, + "end_line": 13, + "input_file": { + "filename": "autogen/starknet/storage_var/Starksheet_sheet_price/impl.cairo" + }, + "parent_location": [ + { + "end_col": 70, + "end_line": 14, + "input_file": { + "filename": "autogen/starknet/storage_var/Starksheet_sheet_price/impl.cairo" + }, + "start_col": 58, + "start_line": 14 + }, + "While expanding the reference 'storage_addr' in:" + ], + "start_col": 14, + "start_line": 13 + } + }, + "685": { + "accessible_scopes": [ + "starksheet.library", + "starksheet.library.Starksheet_sheet_price", + "starksheet.library.Starksheet_sheet_price.read" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 75, + "end_line": 14, + "input_file": { + "filename": "autogen/starknet/storage_var/Starksheet_sheet_price/impl.cairo" + }, + "start_col": 37, + "start_line": 14 + } + }, + "687": { + "accessible_scopes": [ + "starksheet.library", + "starksheet.library.Starksheet_sheet_price", + "starksheet.library.Starksheet_sheet_price.read" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 37, + "end_line": 352, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/starknet/common/syscalls.cairo" + }, + "parent_location": [ + { + "end_col": 75, + "end_line": 14, + "input_file": { + "filename": "autogen/starknet/storage_var/Starksheet_sheet_price/impl.cairo" + }, + "parent_location": [ + { + "end_col": 42, + "end_line": 16, + "input_file": { + "filename": "autogen/starknet/storage_var/Starksheet_sheet_price/impl.cairo" + }, + "start_col": 31, + "start_line": 16 + }, + "While expanding the reference 'syscall_ptr' in:" + ], + "start_col": 37, + "start_line": 14 + }, + "While trying to update the implicit return value 'syscall_ptr' in:" + ], + "start_col": 19, + "start_line": 352 + } + }, + "688": { + "accessible_scopes": [ + "starksheet.library", + "starksheet.library.Starksheet_sheet_price", + "starksheet.library.Starksheet_sheet_price.read" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 41, + "end_line": 7, + "input_file": { + "filename": "autogen/starknet/storage_var/Starksheet_sheet_price/decl.cairo" + }, + "parent_location": [ + { + "end_col": 36, + "end_line": 13, + "input_file": { + "filename": "autogen/starknet/storage_var/Starksheet_sheet_price/impl.cairo" + }, + "parent_location": [ + { + "end_col": 44, + "end_line": 17, + "input_file": { + "filename": "autogen/starknet/storage_var/Starksheet_sheet_price/impl.cairo" + }, + "start_col": 32, + "start_line": 17 + }, + "While expanding the reference 'pedersen_ptr' in:" + ], + "start_col": 30, + "start_line": 13 + }, + "While trying to update the implicit return value 'pedersen_ptr' in:" + ], + "start_col": 15, + "start_line": 7 + } + }, + "689": { + "accessible_scopes": [ + "starksheet.library", + "starksheet.library.Starksheet_sheet_price", + "starksheet.library.Starksheet_sheet_price.read" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 58, + "end_line": 7, + "input_file": { + "filename": "autogen/starknet/storage_var/Starksheet_sheet_price/decl.cairo" + }, + "parent_location": [ + { + "end_col": 36, + "end_line": 13, + "input_file": { + "filename": "autogen/starknet/storage_var/Starksheet_sheet_price/impl.cairo" + }, + "parent_location": [ + { + "end_col": 50, + "end_line": 18, + "input_file": { + "filename": "autogen/starknet/storage_var/Starksheet_sheet_price/impl.cairo" + }, + "start_col": 35, + "start_line": 18 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 30, + "start_line": 13 + }, + "While trying to update the implicit return value 'range_check_ptr' in:" + ], + "start_col": 43, + "start_line": 7 + } + }, + "690": { + "accessible_scopes": [ + "starksheet.library", + "starksheet.library.Starksheet_sheet_price", + "starksheet.library.Starksheet_sheet_price.read" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 33, + "end_line": 14, + "input_file": { + "filename": "autogen/starknet/storage_var/Starksheet_sheet_price/impl.cairo" + }, + "parent_location": [ + { + "end_col": 64, + "end_line": 19, + "input_file": { + "filename": "autogen/starknet/storage_var/Starksheet_sheet_price/impl.cairo" + }, + "start_col": 45, + "start_line": 19 + }, + "While expanding the reference '__storage_var_temp0' in:" + ], + "start_col": 14, + "start_line": 14 + } + }, + "691": { + "accessible_scopes": [ + "starksheet.library", + "starksheet.library.Starksheet_sheet_price", + "starksheet.library.Starksheet_sheet_price.read" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 55, + "end_line": 20, + "input_file": { + "filename": "autogen/starknet/storage_var/Starksheet_sheet_price/impl.cairo" + }, + "start_col": 9, + "start_line": 20 + } + }, + "692": { + "accessible_scopes": [ + "starksheet.library", + "starksheet.library.Starksheet_sheet_price", + "starksheet.library.Starksheet_sheet_price.write" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 62, + "end_line": 23, + "input_file": { + "filename": "autogen/starknet/storage_var/Starksheet_sheet_price/impl.cairo" + }, + "parent_location": [ + { + "end_col": 41, + "end_line": 7, + "input_file": { + "filename": "autogen/starknet/storage_var/Starksheet_sheet_price/decl.cairo" + }, + "parent_location": [ + { + "end_col": 36, + "end_line": 24, + "input_file": { + "filename": "autogen/starknet/storage_var/Starksheet_sheet_price/impl.cairo" + }, + "start_col": 30, + "start_line": 24 + }, + "While trying to retrieve the implicit argument 'pedersen_ptr' in:" + ], + "start_col": 15, + "start_line": 7 + }, + "While expanding the reference 'pedersen_ptr' in:" + ], + "start_col": 36, + "start_line": 23 + } + }, + "693": { + "accessible_scopes": [ + "starksheet.library", + "starksheet.library.Starksheet_sheet_price", + "starksheet.library.Starksheet_sheet_price.write" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 79, + "end_line": 23, + "input_file": { + "filename": "autogen/starknet/storage_var/Starksheet_sheet_price/impl.cairo" + }, + "parent_location": [ + { + "end_col": 58, + "end_line": 7, + "input_file": { + "filename": "autogen/starknet/storage_var/Starksheet_sheet_price/decl.cairo" + }, + "parent_location": [ + { + "end_col": 36, + "end_line": 24, + "input_file": { + "filename": "autogen/starknet/storage_var/Starksheet_sheet_price/impl.cairo" + }, + "start_col": 30, + "start_line": 24 + }, + "While trying to retrieve the implicit argument 'range_check_ptr' in:" + ], + "start_col": 43, + "start_line": 7 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 64, + "start_line": 23 + } + }, + "694": { + "accessible_scopes": [ + "starksheet.library", + "starksheet.library.Starksheet_sheet_price", + "starksheet.library.Starksheet_sheet_price.write" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 36, + "end_line": 24, + "input_file": { + "filename": "autogen/starknet/storage_var/Starksheet_sheet_price/impl.cairo" + }, + "start_col": 30, + "start_line": 24 + } + }, + "696": { + "accessible_scopes": [ + "starksheet.library", + "starksheet.library.Starksheet_sheet_price", + "starksheet.library.Starksheet_sheet_price.write" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 34, + "end_line": 23, + "input_file": { + "filename": "autogen/starknet/storage_var/Starksheet_sheet_price/impl.cairo" + }, + "parent_location": [ + { + "end_col": 38, + "end_line": 370, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/starknet/common/syscalls.cairo" + }, + "parent_location": [ + { + "end_col": 80, + "end_line": 25, + "input_file": { + "filename": "autogen/starknet/storage_var/Starksheet_sheet_price/impl.cairo" + }, + "start_col": 9, + "start_line": 25 + }, + "While trying to retrieve the implicit argument 'syscall_ptr' in:" + ], + "start_col": 20, + "start_line": 370 + }, + "While expanding the reference 'syscall_ptr' in:" + ], + "start_col": 16, + "start_line": 23 + } + }, + "697": { + "accessible_scopes": [ + "starksheet.library", + "starksheet.library.Starksheet_sheet_price", + "starksheet.library.Starksheet_sheet_price.write" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 26, + "end_line": 24, + "input_file": { + "filename": "autogen/starknet/storage_var/Starksheet_sheet_price/impl.cairo" + }, + "parent_location": [ + { + "end_col": 43, + "end_line": 25, + "input_file": { + "filename": "autogen/starknet/storage_var/Starksheet_sheet_price/impl.cairo" + }, + "start_col": 31, + "start_line": 25 + }, + "While expanding the reference 'storage_addr' in:" + ], + "start_col": 14, + "start_line": 24 + } + }, + "698": { + "accessible_scopes": [ + "starksheet.library", + "starksheet.library.Starksheet_sheet_price", + "starksheet.library.Starksheet_sheet_price.write" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 79, + "end_line": 25, + "input_file": { + "filename": "autogen/starknet/storage_var/Starksheet_sheet_price/impl.cairo" + }, + "start_col": 55, + "start_line": 25 + } + }, + "699": { + "accessible_scopes": [ + "starksheet.library", + "starksheet.library.Starksheet_sheet_price", + "starksheet.library.Starksheet_sheet_price.write" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 80, + "end_line": 25, + "input_file": { + "filename": "autogen/starknet/storage_var/Starksheet_sheet_price/impl.cairo" + }, + "start_col": 9, + "start_line": 25 + } + }, + "701": { + "accessible_scopes": [ + "starksheet.library", + "starksheet.library.Starksheet_sheet_price", + "starksheet.library.Starksheet_sheet_price.write" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 41, + "end_line": 7, + "input_file": { + "filename": "autogen/starknet/storage_var/Starksheet_sheet_price/decl.cairo" + }, + "parent_location": [ + { + "end_col": 36, + "end_line": 24, + "input_file": { + "filename": "autogen/starknet/storage_var/Starksheet_sheet_price/impl.cairo" + }, + "parent_location": [ + { + "end_col": 62, + "end_line": 19, + "input_file": { + "filename": "autogen/starknet/storage_var/Starksheet_sheet_price/decl.cairo" + }, + "parent_location": [ + { + "end_col": 19, + "end_line": 26, + "input_file": { + "filename": "autogen/starknet/storage_var/Starksheet_sheet_price/impl.cairo" + }, + "start_col": 9, + "start_line": 26 + }, + "While trying to retrieve the implicit argument 'pedersen_ptr' in:" + ], + "start_col": 36, + "start_line": 19 + }, + "While expanding the reference 'pedersen_ptr' in:" + ], + "start_col": 30, + "start_line": 24 + }, + "While trying to update the implicit return value 'pedersen_ptr' in:" + ], + "start_col": 15, + "start_line": 7 + } + }, + "702": { + "accessible_scopes": [ + "starksheet.library", + "starksheet.library.Starksheet_sheet_price", + "starksheet.library.Starksheet_sheet_price.write" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 58, + "end_line": 7, + "input_file": { + "filename": "autogen/starknet/storage_var/Starksheet_sheet_price/decl.cairo" + }, + "parent_location": [ + { + "end_col": 36, + "end_line": 24, + "input_file": { + "filename": "autogen/starknet/storage_var/Starksheet_sheet_price/impl.cairo" + }, + "parent_location": [ + { + "end_col": 79, + "end_line": 19, + "input_file": { + "filename": "autogen/starknet/storage_var/Starksheet_sheet_price/decl.cairo" + }, + "parent_location": [ + { + "end_col": 19, + "end_line": 26, + "input_file": { + "filename": "autogen/starknet/storage_var/Starksheet_sheet_price/impl.cairo" + }, + "start_col": 9, + "start_line": 26 + }, + "While trying to retrieve the implicit argument 'range_check_ptr' in:" + ], + "start_col": 64, + "start_line": 19 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 30, + "start_line": 24 + }, + "While trying to update the implicit return value 'range_check_ptr' in:" + ], + "start_col": 43, + "start_line": 7 + } + }, + "703": { + "accessible_scopes": [ + "starksheet.library", + "starksheet.library.Starksheet_sheet_price", + "starksheet.library.Starksheet_sheet_price.write" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 19, + "end_line": 26, + "input_file": { + "filename": "autogen/starknet/storage_var/Starksheet_sheet_price/impl.cairo" + }, + "start_col": 9, + "start_line": 26 + } + }, + "704": { + "accessible_scopes": [ + "starksheet.library", + "starksheet.library.Starksheet", + "starksheet.library.Starksheet.get_sheet" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 38, + "end_line": 41, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/starksheet/library.cairo" + }, + "parent_location": [ + { + "end_col": 33, + "end_line": 13, + "input_file": { + "filename": "autogen/starknet/storage_var/Starksheet_sheets/decl.cairo" + }, + "parent_location": [ + { + "end_col": 42, + "end_line": 44, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/starksheet/library.cairo" + }, + "start_col": 16, + "start_line": 44 + }, + "While trying to retrieve the implicit argument 'syscall_ptr' in:" + ], + "start_col": 15, + "start_line": 13 + }, + "While expanding the reference 'syscall_ptr' in:" + ], + "start_col": 20, + "start_line": 41 + } + }, + "705": { + "accessible_scopes": [ + "starksheet.library", + "starksheet.library.Starksheet", + "starksheet.library.Starksheet.get_sheet" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 66, + "end_line": 41, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/starksheet/library.cairo" + }, + "parent_location": [ + { + "end_col": 61, + "end_line": 13, + "input_file": { + "filename": "autogen/starknet/storage_var/Starksheet_sheets/decl.cairo" + }, + "parent_location": [ + { + "end_col": 42, + "end_line": 44, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/starksheet/library.cairo" + }, + "start_col": 16, + "start_line": 44 + }, + "While trying to retrieve the implicit argument 'pedersen_ptr' in:" + ], + "start_col": 35, + "start_line": 13 + }, + "While expanding the reference 'pedersen_ptr' in:" + ], + "start_col": 40, + "start_line": 41 + } + }, + "706": { + "accessible_scopes": [ + "starksheet.library", + "starksheet.library.Starksheet", + "starksheet.library.Starksheet.get_sheet" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 83, + "end_line": 41, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/starksheet/library.cairo" + }, + "parent_location": [ + { + "end_col": 78, + "end_line": 13, + "input_file": { + "filename": "autogen/starknet/storage_var/Starksheet_sheets/decl.cairo" + }, + "parent_location": [ + { + "end_col": 42, + "end_line": 44, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/starksheet/library.cairo" + }, + "start_col": 16, + "start_line": 44 + }, + "While trying to retrieve the implicit argument 'range_check_ptr' in:" + ], + "start_col": 63, + "start_line": 13 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 68, + "start_line": 41 + } + }, + "707": { + "accessible_scopes": [ + "starksheet.library", + "starksheet.library.Starksheet", + "starksheet.library.Starksheet.get_sheet" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 93, + "end_line": 41, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/starksheet/library.cairo" + }, + "parent_location": [ + { + "end_col": 41, + "end_line": 44, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/starksheet/library.cairo" + }, + "start_col": 39, + "start_line": 44 + }, + "While expanding the reference 'id' in:" + ], + "start_col": 85, + "start_line": 41 + } + }, + "708": { + "accessible_scopes": [ + "starksheet.library", + "starksheet.library.Starksheet", + "starksheet.library.Starksheet.get_sheet" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 42, + "end_line": 44, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/starksheet/library.cairo" + }, + "start_col": 16, + "start_line": 44 + } + }, + "710": { + "accessible_scopes": [ + "starksheet.library", + "starksheet.library.Starksheet", + "starksheet.library.Starksheet.get_sheet" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 43, + "end_line": 44, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/starksheet/library.cairo" + }, + "start_col": 9, + "start_line": 44 + } + }, + "711": { + "accessible_scopes": [ + "starksheet.library", + "starksheet.library.Starksheet", + "starksheet.library.Starksheet.get_sheets" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 22, + "end_line": 50, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/starksheet/library.cairo" + }, + "start_col": 9, + "start_line": 50 + } + }, + "713": { + "accessible_scopes": [ + "starksheet.library", + "starksheet.library.Starksheet", + "starksheet.library.Starksheet.get_sheets" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 39, + "end_line": 47, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/starksheet/library.cairo" + }, + "parent_location": [ + { + "end_col": 33, + "end_line": 13, + "input_file": { + "filename": "autogen/starknet/storage_var/Starksheet_sheets_count/decl.cairo" + }, + "parent_location": [ + { + "end_col": 52, + "end_line": 51, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/starksheet/library.cairo" + }, + "start_col": 22, + "start_line": 51 + }, + "While trying to retrieve the implicit argument 'syscall_ptr' in:" + ], + "start_col": 15, + "start_line": 13 + }, + "While expanding the reference 'syscall_ptr' in:" + ], + "start_col": 21, + "start_line": 47 + } + }, + "714": { + "accessible_scopes": [ + "starksheet.library", + "starksheet.library.Starksheet", + "starksheet.library.Starksheet.get_sheets" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 67, + "end_line": 47, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/starksheet/library.cairo" + }, + "parent_location": [ + { + "end_col": 61, + "end_line": 13, + "input_file": { + "filename": "autogen/starknet/storage_var/Starksheet_sheets_count/decl.cairo" + }, + "parent_location": [ + { + "end_col": 52, + "end_line": 51, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/starksheet/library.cairo" + }, + "start_col": 22, + "start_line": 51 + }, + "While trying to retrieve the implicit argument 'pedersen_ptr' in:" + ], + "start_col": 35, + "start_line": 13 + }, + "While expanding the reference 'pedersen_ptr' in:" + ], + "start_col": 41, + "start_line": 47 + } + }, + "715": { + "accessible_scopes": [ + "starksheet.library", + "starksheet.library.Starksheet", + "starksheet.library.Starksheet.get_sheets" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 84, + "end_line": 47, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/starksheet/library.cairo" + }, + "parent_location": [ + { + "end_col": 78, + "end_line": 13, + "input_file": { + "filename": "autogen/starknet/storage_var/Starksheet_sheets_count/decl.cairo" + }, + "parent_location": [ + { + "end_col": 52, + "end_line": 51, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/starksheet/library.cairo" + }, + "start_col": 22, + "start_line": 51 + }, + "While trying to retrieve the implicit argument 'range_check_ptr' in:" + ], + "start_col": 63, + "start_line": 13 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 69, + "start_line": 47 + } + }, + "716": { + "accessible_scopes": [ + "starksheet.library", + "starksheet.library.Starksheet", + "starksheet.library.Starksheet.get_sheets" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 52, + "end_line": 51, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/starksheet/library.cairo" + }, + "start_col": 22, + "start_line": 51 + } + }, + "718": { + "accessible_scopes": [ + "starksheet.library", + "starksheet.library.Starksheet", + "starksheet.library.Starksheet.get_sheets" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 47, + "end_line": 52, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/starksheet/library.cairo" + }, + "start_col": 40, + "start_line": 52 + } + }, + "720": { + "accessible_scopes": [ + "starksheet.library", + "starksheet.library.Starksheet", + "starksheet.library.Starksheet.get_sheets" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 36, + "end_line": 52, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/starksheet/library.cairo" + }, + "start_col": 14, + "start_line": 52 + } + }, + "721": { + "accessible_scopes": [ + "starksheet.library", + "starksheet.library.Starksheet", + "starksheet.library.Starksheet.get_sheets" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 33, + "end_line": 13, + "input_file": { + "filename": "autogen/starknet/storage_var/Starksheet_sheets_count/decl.cairo" + }, + "parent_location": [ + { + "end_col": 52, + "end_line": 51, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/starksheet/library.cairo" + }, + "parent_location": [ + { + "end_col": 23, + "end_line": 167, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/starksheet/library.cairo" + }, + "parent_location": [ + { + "end_col": 60, + "end_line": 53, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/starksheet/library.cairo" + }, + "start_col": 9, + "start_line": 53 + }, + "While trying to retrieve the implicit argument 'syscall_ptr' in:" + ], + "start_col": 5, + "start_line": 167 + }, + "While expanding the reference 'syscall_ptr' in:" + ], + "start_col": 22, + "start_line": 51 + }, + "While trying to update the implicit return value 'syscall_ptr' in:" + ], + "start_col": 15, + "start_line": 13 + } + }, + "722": { + "accessible_scopes": [ + "starksheet.library", + "starksheet.library.Starksheet", + "starksheet.library.Starksheet.get_sheets" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 61, + "end_line": 13, + "input_file": { + "filename": "autogen/starknet/storage_var/Starksheet_sheets_count/decl.cairo" + }, + "parent_location": [ + { + "end_col": 52, + "end_line": 51, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/starksheet/library.cairo" + }, + "parent_location": [ + { + "end_col": 51, + "end_line": 167, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/starksheet/library.cairo" + }, + "parent_location": [ + { + "end_col": 60, + "end_line": 53, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/starksheet/library.cairo" + }, + "start_col": 9, + "start_line": 53 + }, + "While trying to retrieve the implicit argument 'pedersen_ptr' in:" + ], + "start_col": 25, + "start_line": 167 + }, + "While expanding the reference 'pedersen_ptr' in:" + ], + "start_col": 22, + "start_line": 51 + }, + "While trying to update the implicit return value 'pedersen_ptr' in:" + ], + "start_col": 35, + "start_line": 13 + } + }, + "723": { + "accessible_scopes": [ + "starksheet.library", + "starksheet.library.Starksheet", + "starksheet.library.Starksheet.get_sheets" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 78, + "end_line": 13, + "input_file": { + "filename": "autogen/starknet/storage_var/Starksheet_sheets_count/decl.cairo" + }, + "parent_location": [ + { + "end_col": 52, + "end_line": 51, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/starksheet/library.cairo" + }, + "parent_location": [ + { + "end_col": 68, + "end_line": 167, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/starksheet/library.cairo" + }, + "parent_location": [ + { + "end_col": 60, + "end_line": 53, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/starksheet/library.cairo" + }, + "start_col": 9, + "start_line": 53 + }, + "While trying to retrieve the implicit argument 'range_check_ptr' in:" + ], + "start_col": 53, + "start_line": 167 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 22, + "start_line": 51 + }, + "While trying to update the implicit return value 'range_check_ptr' in:" + ], + "start_col": 63, + "start_line": 13 + } + }, + "724": { + "accessible_scopes": [ + "starksheet.library", + "starksheet.library.Starksheet", + "starksheet.library.Starksheet.get_sheets" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 18, + "end_line": 51, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/starksheet/library.cairo" + }, + "parent_location": [ + { + "end_col": 35, + "end_line": 53, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/starksheet/library.cairo" + }, + "start_col": 31, + "start_line": 53 + }, + "While expanding the reference 'stop' in:" + ], + "start_col": 14, + "start_line": 51 + } + }, + "725": { + "accessible_scopes": [ + "starksheet.library", + "starksheet.library.Starksheet", + "starksheet.library.Starksheet.get_sheets" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 29, + "end_line": 52, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/starksheet/library.cairo" + }, + "parent_location": [ + { + "end_col": 56, + "end_line": 53, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/starksheet/library.cairo" + }, + "start_col": 47, + "start_line": 53 + }, + "While expanding the reference 'addresses' in:" + ], + "start_col": 20, + "start_line": 52 + } + }, + "726": { + "accessible_scopes": [ + "starksheet.library", + "starksheet.library.Starksheet", + "starksheet.library.Starksheet.get_sheets" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 59, + "end_line": 53, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/starksheet/library.cairo" + }, + "start_col": 58, + "start_line": 53 + } + }, + "728": { + "accessible_scopes": [ + "starksheet.library", + "starksheet.library.Starksheet", + "starksheet.library.Starksheet.get_sheets" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 60, + "end_line": 53, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/starksheet/library.cairo" + }, + "start_col": 9, + "start_line": 53 + } + }, + "730": { + "accessible_scopes": [ + "starksheet.library", + "starksheet.library.Starksheet", + "starksheet.library.Starksheet.get_sheets" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 58, + "end_line": 54, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/starksheet/library.cairo" + }, + "start_col": 9, + "start_line": 54 + } + }, + "731": { + "accessible_scopes": [ + "starksheet.library", + "starksheet.library.Starksheet", + "starksheet.library.Starksheet.add_sheet" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 22, + "end_line": 60, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/starksheet/library.cairo" + }, + "start_col": 9, + "start_line": 60 + } + }, + "733": { + "accessible_scopes": [ + "starksheet.library", + "starksheet.library.Starksheet", + "starksheet.library.Starksheet.add_sheet" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 38, + "end_line": 57, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/starksheet/library.cairo" + }, + "parent_location": [ + { + "end_col": 33, + "end_line": 13, + "input_file": { + "filename": "autogen/starknet/storage_var/Starksheet_sheet_class_hash/decl.cairo" + }, + "parent_location": [ + { + "end_col": 68, + "end_line": 61, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/starksheet/library.cairo" + }, + "start_col": 34, + "start_line": 61 + }, + "While trying to retrieve the implicit argument 'syscall_ptr' in:" + ], + "start_col": 15, + "start_line": 13 + }, + "While expanding the reference 'syscall_ptr' in:" + ], + "start_col": 20, + "start_line": 57 + } + }, + "734": { + "accessible_scopes": [ + "starksheet.library", + "starksheet.library.Starksheet", + "starksheet.library.Starksheet.add_sheet" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 66, + "end_line": 57, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/starksheet/library.cairo" + }, + "parent_location": [ + { + "end_col": 61, + "end_line": 13, + "input_file": { + "filename": "autogen/starknet/storage_var/Starksheet_sheet_class_hash/decl.cairo" + }, + "parent_location": [ + { + "end_col": 68, + "end_line": 61, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/starksheet/library.cairo" + }, + "start_col": 34, + "start_line": 61 + }, + "While trying to retrieve the implicit argument 'pedersen_ptr' in:" + ], + "start_col": 35, + "start_line": 13 + }, + "While expanding the reference 'pedersen_ptr' in:" + ], + "start_col": 40, + "start_line": 57 + } + }, + "735": { + "accessible_scopes": [ + "starksheet.library", + "starksheet.library.Starksheet", + "starksheet.library.Starksheet.add_sheet" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 83, + "end_line": 57, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/starksheet/library.cairo" + }, + "parent_location": [ + { + "end_col": 78, + "end_line": 13, + "input_file": { + "filename": "autogen/starknet/storage_var/Starksheet_sheet_class_hash/decl.cairo" + }, + "parent_location": [ + { + "end_col": 68, + "end_line": 61, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/starksheet/library.cairo" + }, + "start_col": 34, + "start_line": 61 + }, + "While trying to retrieve the implicit argument 'range_check_ptr' in:" + ], + "start_col": 63, + "start_line": 13 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 68, + "start_line": 57 + } + }, + "736": { + "accessible_scopes": [ + "starksheet.library", + "starksheet.library.Starksheet", + "starksheet.library.Starksheet.add_sheet" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 68, + "end_line": 61, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/starksheet/library.cairo" + }, + "start_col": 34, + "start_line": 61 + } + }, + "738": { + "accessible_scopes": [ + "starksheet.library", + "starksheet.library.Starksheet", + "starksheet.library.Starksheet.add_sheet" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 30, + "end_line": 61, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/starksheet/library.cairo" + }, + "parent_location": [ + { + "end_col": 30, + "end_line": 61, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/starksheet/library.cairo" + }, + "start_col": 14, + "start_line": 61 + }, + "While auto generating local variable for 'sheet_class_hash'." + ], + "start_col": 14, + "start_line": 61 + } + }, + "739": { + "accessible_scopes": [ + "starksheet.library", + "starksheet.library.Starksheet", + "starksheet.library.Starksheet.add_sheet" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 33, + "end_line": 13, + "input_file": { + "filename": "autogen/starknet/storage_var/Starksheet_sheet_class_hash/decl.cairo" + }, + "parent_location": [ + { + "end_col": 68, + "end_line": 61, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/starksheet/library.cairo" + }, + "parent_location": [ + { + "end_col": 33, + "end_line": 13, + "input_file": { + "filename": "autogen/starknet/storage_var/Starksheet_proxy_class_hash/decl.cairo" + }, + "parent_location": [ + { + "end_col": 68, + "end_line": 62, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/starksheet/library.cairo" + }, + "start_col": 34, + "start_line": 62 + }, + "While trying to retrieve the implicit argument 'syscall_ptr' in:" + ], + "start_col": 15, + "start_line": 13 + }, + "While expanding the reference 'syscall_ptr' in:" + ], + "start_col": 34, + "start_line": 61 + }, + "While trying to update the implicit return value 'syscall_ptr' in:" + ], + "start_col": 15, + "start_line": 13 + } + }, + "740": { + "accessible_scopes": [ + "starksheet.library", + "starksheet.library.Starksheet", + "starksheet.library.Starksheet.add_sheet" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 61, + "end_line": 13, + "input_file": { + "filename": "autogen/starknet/storage_var/Starksheet_sheet_class_hash/decl.cairo" + }, + "parent_location": [ + { + "end_col": 68, + "end_line": 61, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/starksheet/library.cairo" + }, + "parent_location": [ + { + "end_col": 61, + "end_line": 13, + "input_file": { + "filename": "autogen/starknet/storage_var/Starksheet_proxy_class_hash/decl.cairo" + }, + "parent_location": [ + { + "end_col": 68, + "end_line": 62, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/starksheet/library.cairo" + }, + "start_col": 34, + "start_line": 62 + }, + "While trying to retrieve the implicit argument 'pedersen_ptr' in:" + ], + "start_col": 35, + "start_line": 13 + }, + "While expanding the reference 'pedersen_ptr' in:" + ], + "start_col": 34, + "start_line": 61 + }, + "While trying to update the implicit return value 'pedersen_ptr' in:" + ], + "start_col": 35, + "start_line": 13 + } + }, + "741": { + "accessible_scopes": [ + "starksheet.library", + "starksheet.library.Starksheet", + "starksheet.library.Starksheet.add_sheet" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 78, + "end_line": 13, + "input_file": { + "filename": "autogen/starknet/storage_var/Starksheet_sheet_class_hash/decl.cairo" + }, + "parent_location": [ + { + "end_col": 68, + "end_line": 61, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/starksheet/library.cairo" + }, + "parent_location": [ + { + "end_col": 78, + "end_line": 13, + "input_file": { + "filename": "autogen/starknet/storage_var/Starksheet_proxy_class_hash/decl.cairo" + }, + "parent_location": [ + { + "end_col": 68, + "end_line": 62, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/starksheet/library.cairo" + }, + "start_col": 34, + "start_line": 62 + }, + "While trying to retrieve the implicit argument 'range_check_ptr' in:" + ], + "start_col": 63, + "start_line": 13 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 34, + "start_line": 61 + }, + "While trying to update the implicit return value 'range_check_ptr' in:" + ], + "start_col": 63, + "start_line": 13 + } + }, + "742": { + "accessible_scopes": [ + "starksheet.library", + "starksheet.library.Starksheet", + "starksheet.library.Starksheet.add_sheet" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 68, + "end_line": 62, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/starksheet/library.cairo" + }, + "start_col": 34, + "start_line": 62 + } + }, + "744": { + "accessible_scopes": [ + "starksheet.library", + "starksheet.library.Starksheet", + "starksheet.library.Starksheet.add_sheet" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 30, + "end_line": 62, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/starksheet/library.cairo" + }, + "parent_location": [ + { + "end_col": 30, + "end_line": 62, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/starksheet/library.cairo" + }, + "start_col": 14, + "start_line": 62 + }, + "While auto generating local variable for 'proxy_class_hash'." + ], + "start_col": 14, + "start_line": 62 + } + }, + "745": { + "accessible_scopes": [ + "starksheet.library", + "starksheet.library.Starksheet", + "starksheet.library.Starksheet.add_sheet" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 33, + "end_line": 13, + "input_file": { + "filename": "autogen/starknet/storage_var/Starksheet_proxy_class_hash/decl.cairo" + }, + "parent_location": [ + { + "end_col": 68, + "end_line": 62, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/starksheet/library.cairo" + }, + "parent_location": [ + { + "end_col": 33, + "end_line": 13, + "input_file": { + "filename": "autogen/starknet/storage_var/Starksheet_sheets_count/decl.cairo" + }, + "parent_location": [ + { + "end_col": 66, + "end_line": 63, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/starksheet/library.cairo" + }, + "start_col": 36, + "start_line": 63 + }, + "While trying to retrieve the implicit argument 'syscall_ptr' in:" + ], + "start_col": 15, + "start_line": 13 + }, + "While expanding the reference 'syscall_ptr' in:" + ], + "start_col": 34, + "start_line": 62 + }, + "While trying to update the implicit return value 'syscall_ptr' in:" + ], + "start_col": 15, + "start_line": 13 + } + }, + "746": { + "accessible_scopes": [ + "starksheet.library", + "starksheet.library.Starksheet", + "starksheet.library.Starksheet.add_sheet" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 61, + "end_line": 13, + "input_file": { + "filename": "autogen/starknet/storage_var/Starksheet_proxy_class_hash/decl.cairo" + }, + "parent_location": [ + { + "end_col": 68, + "end_line": 62, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/starksheet/library.cairo" + }, + "parent_location": [ + { + "end_col": 61, + "end_line": 13, + "input_file": { + "filename": "autogen/starknet/storage_var/Starksheet_sheets_count/decl.cairo" + }, + "parent_location": [ + { + "end_col": 66, + "end_line": 63, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/starksheet/library.cairo" + }, + "start_col": 36, + "start_line": 63 + }, + "While trying to retrieve the implicit argument 'pedersen_ptr' in:" + ], + "start_col": 35, + "start_line": 13 + }, + "While expanding the reference 'pedersen_ptr' in:" + ], + "start_col": 34, + "start_line": 62 + }, + "While trying to update the implicit return value 'pedersen_ptr' in:" + ], + "start_col": 35, + "start_line": 13 + } + }, + "747": { + "accessible_scopes": [ + "starksheet.library", + "starksheet.library.Starksheet", + "starksheet.library.Starksheet.add_sheet" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 78, + "end_line": 13, + "input_file": { + "filename": "autogen/starknet/storage_var/Starksheet_proxy_class_hash/decl.cairo" + }, + "parent_location": [ + { + "end_col": 68, + "end_line": 62, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/starksheet/library.cairo" + }, + "parent_location": [ + { + "end_col": 78, + "end_line": 13, + "input_file": { + "filename": "autogen/starknet/storage_var/Starksheet_sheets_count/decl.cairo" + }, + "parent_location": [ + { + "end_col": 66, + "end_line": 63, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/starksheet/library.cairo" + }, + "start_col": 36, + "start_line": 63 + }, + "While trying to retrieve the implicit argument 'range_check_ptr' in:" + ], + "start_col": 63, + "start_line": 13 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 34, + "start_line": 62 + }, + "While trying to update the implicit return value 'range_check_ptr' in:" + ], + "start_col": 63, + "start_line": 13 + } + }, + "748": { + "accessible_scopes": [ + "starksheet.library", + "starksheet.library.Starksheet", + "starksheet.library.Starksheet.add_sheet" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 66, + "end_line": 63, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/starksheet/library.cairo" + }, + "start_col": 36, + "start_line": 63 + } + }, + "750": { + "accessible_scopes": [ + "starksheet.library", + "starksheet.library.Starksheet", + "starksheet.library.Starksheet.add_sheet" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 32, + "end_line": 63, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/starksheet/library.cairo" + }, + "start_col": 14, + "start_line": 63 + } + }, + "751": { + "accessible_scopes": [ + "starksheet.library", + "starksheet.library.Starksheet", + "starksheet.library.Starksheet.add_sheet" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 33, + "end_line": 13, + "input_file": { + "filename": "autogen/starknet/storage_var/Starksheet_sheets_count/decl.cairo" + }, + "parent_location": [ + { + "end_col": 66, + "end_line": 63, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/starksheet/library.cairo" + }, + "parent_location": [ + { + "end_col": 43, + "end_line": 200, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/starknet/common/syscalls.cairo" + }, + "parent_location": [ + { + "end_col": 43, + "end_line": 64, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/starksheet/library.cairo" + }, + "start_col": 23, + "start_line": 64 + }, + "While trying to retrieve the implicit argument 'syscall_ptr' in:" + ], + "start_col": 25, + "start_line": 200 + }, + "While expanding the reference 'syscall_ptr' in:" + ], + "start_col": 36, + "start_line": 63 + }, + "While trying to update the implicit return value 'syscall_ptr' in:" + ], + "start_col": 15, + "start_line": 13 + } + }, + "752": { + "accessible_scopes": [ + "starksheet.library", + "starksheet.library.Starksheet", + "starksheet.library.Starksheet.add_sheet" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 43, + "end_line": 64, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/starksheet/library.cairo" + }, + "start_col": 23, + "start_line": 64 + } + }, + "754": { + "accessible_scopes": [ + "starksheet.library", + "starksheet.library.Starksheet", + "starksheet.library.Starksheet.add_sheet" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 19, + "end_line": 64, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/starksheet/library.cairo" + }, + "parent_location": [ + { + "end_col": 19, + "end_line": 64, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/starksheet/library.cairo" + }, + "start_col": 14, + "start_line": 64 + }, + "While auto generating local variable for 'owner'." + ], + "start_col": 14, + "start_line": 64 + } + }, + "755": { + "accessible_scopes": [ + "starksheet.library", + "starksheet.library.Starksheet", + "starksheet.library.Starksheet.add_sheet" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 43, + "end_line": 200, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/starknet/common/syscalls.cairo" + }, + "parent_location": [ + { + "end_col": 43, + "end_line": 64, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/starksheet/library.cairo" + }, + "parent_location": [ + { + "end_col": 33, + "end_line": 13, + "input_file": { + "filename": "autogen/starknet/storage_var/Starksheet_merkle_root/decl.cairo" + }, + "parent_location": [ + { + "end_col": 51, + "end_line": 66, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/starksheet/library.cairo" + }, + "start_col": 22, + "start_line": 66 + }, + "While trying to retrieve the implicit argument 'syscall_ptr' in:" + ], + "start_col": 15, + "start_line": 13 + }, + "While expanding the reference 'syscall_ptr' in:" + ], + "start_col": 23, + "start_line": 64 + }, + "While trying to update the implicit return value 'syscall_ptr' in:" + ], + "start_col": 25, + "start_line": 200 + } + }, + "756": { + "accessible_scopes": [ + "starksheet.library", + "starksheet.library.Starksheet", + "starksheet.library.Starksheet.add_sheet" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 61, + "end_line": 13, + "input_file": { + "filename": "autogen/starknet/storage_var/Starksheet_sheets_count/decl.cairo" + }, + "parent_location": [ + { + "end_col": 66, + "end_line": 63, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/starksheet/library.cairo" + }, + "parent_location": [ + { + "end_col": 61, + "end_line": 13, + "input_file": { + "filename": "autogen/starknet/storage_var/Starksheet_merkle_root/decl.cairo" + }, + "parent_location": [ + { + "end_col": 51, + "end_line": 66, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/starksheet/library.cairo" + }, + "start_col": 22, + "start_line": 66 + }, + "While trying to retrieve the implicit argument 'pedersen_ptr' in:" + ], + "start_col": 35, + "start_line": 13 + }, + "While expanding the reference 'pedersen_ptr' in:" + ], + "start_col": 36, + "start_line": 63 + }, + "While trying to update the implicit return value 'pedersen_ptr' in:" + ], + "start_col": 35, + "start_line": 13 + } + }, + "757": { + "accessible_scopes": [ + "starksheet.library", + "starksheet.library.Starksheet", + "starksheet.library.Starksheet.add_sheet" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 78, + "end_line": 13, + "input_file": { + "filename": "autogen/starknet/storage_var/Starksheet_sheets_count/decl.cairo" + }, + "parent_location": [ + { + "end_col": 66, + "end_line": 63, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/starksheet/library.cairo" + }, + "parent_location": [ + { + "end_col": 78, + "end_line": 13, + "input_file": { + "filename": "autogen/starknet/storage_var/Starksheet_merkle_root/decl.cairo" + }, + "parent_location": [ + { + "end_col": 51, + "end_line": 66, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/starksheet/library.cairo" + }, + "start_col": 22, + "start_line": 66 + }, + "While trying to retrieve the implicit argument 'range_check_ptr' in:" + ], + "start_col": 63, + "start_line": 13 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 36, + "start_line": 63 + }, + "While trying to update the implicit return value 'range_check_ptr' in:" + ], + "start_col": 63, + "start_line": 13 + } + }, + "758": { + "accessible_scopes": [ + "starksheet.library", + "starksheet.library.Starksheet", + "starksheet.library.Starksheet.add_sheet" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 51, + "end_line": 66, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/starksheet/library.cairo" + }, + "start_col": 22, + "start_line": 66 + } + }, + "760": { + "accessible_scopes": [ + "starksheet.library", + "starksheet.library.Starksheet", + "starksheet.library.Starksheet.add_sheet" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 51, + "end_line": 67, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/starksheet/library.cairo" + }, + "start_col": 34, + "start_line": 67 + } + }, + "762": { + "accessible_scopes": [ + "starksheet.library", + "starksheet.library.Starksheet", + "starksheet.library.Starksheet.add_sheet" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 31, + "end_line": 67, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/starksheet/library.cairo" + }, + "parent_location": [ + { + "end_col": 31, + "end_line": 67, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/starksheet/library.cairo" + }, + "start_col": 13, + "start_line": 67 + }, + "While auto generating local variable for 'allow_list_enabled'." + ], + "start_col": 13, + "start_line": 67 + } + }, + "763": { + "accessible_scopes": [ + "starksheet.library", + "starksheet.library.Starksheet", + "starksheet.library.Starksheet.add_sheet" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 61, + "end_line": 13, + "input_file": { + "filename": "autogen/starknet/storage_var/Starksheet_merkle_root/decl.cairo" + }, + "parent_location": [ + { + "end_col": 51, + "end_line": 66, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/starksheet/library.cairo" + }, + "parent_location": [ + { + "end_col": 56, + "end_line": 68, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/starksheet/library.cairo" + }, + "start_col": 44, + "start_line": 68 + }, + "While expanding the reference 'pedersen_ptr' in:" + ], + "start_col": 22, + "start_line": 66 + }, + "While trying to update the implicit return value 'pedersen_ptr' in:" + ], + "start_col": 35, + "start_line": 13 + } + }, + "764": { + "accessible_scopes": [ + "starksheet.library", + "starksheet.library.Starksheet", + "starksheet.library.Starksheet.add_sheet" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 78, + "end_line": 13, + "input_file": { + "filename": "autogen/starknet/storage_var/Starksheet_merkle_root/decl.cairo" + }, + "parent_location": [ + { + "end_col": 51, + "end_line": 66, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/starksheet/library.cairo" + }, + "parent_location": [ + { + "end_col": 58, + "end_line": 24, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/utils/merkle_tree.cairo" + }, + "parent_location": [ + { + "end_col": 71, + "end_line": 68, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/starksheet/library.cairo" + }, + "start_col": 22, + "start_line": 68 + }, + "While trying to retrieve the implicit argument 'range_check_ptr' in:" + ], + "start_col": 43, + "start_line": 24 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 22, + "start_line": 66 + }, + "While trying to update the implicit return value 'range_check_ptr' in:" + ], + "start_col": 63, + "start_line": 13 + } + }, + "765": { + "accessible_scopes": [ + "starksheet.library", + "starksheet.library.Starksheet", + "starksheet.library.Starksheet.add_sheet" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 19, + "end_line": 64, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/starksheet/library.cairo" + }, + "parent_location": [ + { + "end_col": 19, + "end_line": 64, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/starksheet/library.cairo" + }, + "parent_location": [ + { + "end_col": 63, + "end_line": 68, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/starksheet/library.cairo" + }, + "start_col": 58, + "start_line": 68 + }, + "While expanding the reference 'owner' in:" + ], + "start_col": 14, + "start_line": 64 + }, + "While auto generating local variable for 'owner'." + ], + "start_col": 14, + "start_line": 64 + } + }, + "766": { + "accessible_scopes": [ + "starksheet.library", + "starksheet.library.Starksheet", + "starksheet.library.Starksheet.add_sheet" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 19, + "end_line": 64, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/starksheet/library.cairo" + }, + "parent_location": [ + { + "end_col": 19, + "end_line": 64, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/starksheet/library.cairo" + }, + "parent_location": [ + { + "end_col": 70, + "end_line": 68, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/starksheet/library.cairo" + }, + "start_col": 65, + "start_line": 68 + }, + "While expanding the reference 'owner' in:" + ], + "start_col": 14, + "start_line": 64 + }, + "While auto generating local variable for 'owner'." + ], + "start_col": 14, + "start_line": 64 + } + }, + "767": { + "accessible_scopes": [ + "starksheet.library", + "starksheet.library.Starksheet", + "starksheet.library.Starksheet.add_sheet" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 71, + "end_line": 68, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/starksheet/library.cairo" + }, + "start_col": 22, + "start_line": 68 + } + }, + "769": { + "accessible_scopes": [ + "starksheet.library", + "starksheet.library.Starksheet", + "starksheet.library.Starksheet.add_sheet" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 33, + "end_line": 13, + "input_file": { + "filename": "autogen/starknet/storage_var/Starksheet_merkle_root/decl.cairo" + }, + "parent_location": [ + { + "end_col": 51, + "end_line": 66, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/starksheet/library.cairo" + }, + "parent_location": [ + { + "end_col": 38, + "end_line": 12, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/utils/merkle_tree.cairo" + }, + "parent_location": [ + { + "end_col": 74, + "end_line": 69, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/starksheet/library.cairo" + }, + "start_col": 31, + "start_line": 69 + }, + "While trying to retrieve the implicit argument 'syscall_ptr' in:" + ], + "start_col": 20, + "start_line": 12 + }, + "While expanding the reference 'syscall_ptr' in:" + ], + "start_col": 22, + "start_line": 66 + }, + "While trying to update the implicit return value 'syscall_ptr' in:" + ], + "start_col": 15, + "start_line": 13 + } + }, + "770": { + "accessible_scopes": [ + "starksheet.library", + "starksheet.library.Starksheet", + "starksheet.library.Starksheet.add_sheet" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 56, + "end_line": 68, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/starksheet/library.cairo" + }, + "parent_location": [ + { + "end_col": 66, + "end_line": 12, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/utils/merkle_tree.cairo" + }, + "parent_location": [ + { + "end_col": 74, + "end_line": 69, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/starksheet/library.cairo" + }, + "start_col": 31, + "start_line": 69 + }, + "While trying to retrieve the implicit argument 'pedersen_ptr' in:" + ], + "start_col": 40, + "start_line": 12 + }, + "While expanding the reference 'pedersen_ptr' in:" + ], + "start_col": 44, + "start_line": 68 + } + }, + "771": { + "accessible_scopes": [ + "starksheet.library", + "starksheet.library.Starksheet", + "starksheet.library.Starksheet.add_sheet" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 58, + "end_line": 24, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/utils/merkle_tree.cairo" + }, + "parent_location": [ + { + "end_col": 71, + "end_line": 68, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/starksheet/library.cairo" + }, + "parent_location": [ + { + "end_col": 83, + "end_line": 12, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/utils/merkle_tree.cairo" + }, + "parent_location": [ + { + "end_col": 74, + "end_line": 69, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/starksheet/library.cairo" + }, + "start_col": 31, + "start_line": 69 + }, + "While trying to retrieve the implicit argument 'range_check_ptr' in:" + ], + "start_col": 68, + "start_line": 12 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 22, + "start_line": 68 + }, + "While trying to update the implicit return value 'range_check_ptr' in:" + ], + "start_col": 43, + "start_line": 24 + } + }, + "772": { + "accessible_scopes": [ + "starksheet.library", + "starksheet.library.Starksheet", + "starksheet.library.Starksheet.add_sheet" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 18, + "end_line": 68, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/starksheet/library.cairo" + }, + "parent_location": [ + { + "end_col": 49, + "end_line": 69, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/starksheet/library.cairo" + }, + "start_col": 45, + "start_line": 69 + }, + "While expanding the reference 'leaf' in:" + ], + "start_col": 14, + "start_line": 68 + } + }, + "773": { + "accessible_scopes": [ + "starksheet.library", + "starksheet.library.Starksheet", + "starksheet.library.Starksheet.add_sheet" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 18, + "end_line": 66, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/starksheet/library.cairo" + }, + "parent_location": [ + { + "end_col": 55, + "end_line": 69, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/starksheet/library.cairo" + }, + "start_col": 51, + "start_line": 69 + }, + "While expanding the reference 'root' in:" + ], + "start_col": 14, + "start_line": 66 + } + }, + "774": { + "accessible_scopes": [ + "starksheet.library", + "starksheet.library.Starksheet", + "starksheet.library.Starksheet.add_sheet" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 50, + "end_line": 58, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/starksheet/library.cairo" + }, + "parent_location": [ + { + "end_col": 66, + "end_line": 69, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/starksheet/library.cairo" + }, + "start_col": 57, + "start_line": 69 + }, + "While expanding the reference 'proof_len' in:" + ], + "start_col": 35, + "start_line": 58 + } + }, + "775": { + "accessible_scopes": [ + "starksheet.library", + "starksheet.library.Starksheet", + "starksheet.library.Starksheet.add_sheet" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 64, + "end_line": 58, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/starksheet/library.cairo" + }, + "parent_location": [ + { + "end_col": 73, + "end_line": 69, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/starksheet/library.cairo" + }, + "start_col": 68, + "start_line": 69 + }, + "While expanding the reference 'proof' in:" + ], + "start_col": 52, + "start_line": 58 + } + }, + "776": { + "accessible_scopes": [ + "starksheet.library", + "starksheet.library.Starksheet", + "starksheet.library.Starksheet.add_sheet" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 74, + "end_line": 69, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/starksheet/library.cairo" + }, + "start_col": 31, + "start_line": 69 + } + }, + "778": { + "accessible_scopes": [ + "starksheet.library", + "starksheet.library.Starksheet", + "starksheet.library.Starksheet.add_sheet" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 55, + "end_line": 71, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/starksheet/library.cairo" + }, + "start_col": 13, + "start_line": 71 + } + }, + "779": { + "accessible_scopes": [ + "starksheet.library", + "starksheet.library.Starksheet", + "starksheet.library.Starksheet.add_sheet" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 47, + "end_line": 74, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/starksheet/library.cairo" + }, + "start_col": 40, + "start_line": 74 + } + }, + "781": { + "accessible_scopes": [ + "starksheet.library", + "starksheet.library.Starksheet", + "starksheet.library.Starksheet.add_sheet" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 36, + "end_line": 74, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/starksheet/library.cairo" + }, + "start_col": 14, + "start_line": 74 + } + }, + "782": { + "accessible_scopes": [ + "starksheet.library", + "starksheet.library.Starksheet", + "starksheet.library.Starksheet.add_sheet" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 38, + "end_line": 12, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/utils/merkle_tree.cairo" + }, + "parent_location": [ + { + "end_col": 74, + "end_line": 69, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/starksheet/library.cairo" + }, + "parent_location": [ + { + "end_col": 33, + "end_line": 13, + "input_file": { + "filename": "autogen/starknet/storage_var/Starksheet_sheet_default_renderer_address/decl.cairo" + }, + "parent_location": [ + { + "end_col": 74, + "end_line": 75, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/starksheet/library.cairo" + }, + "start_col": 26, + "start_line": 75 + }, + "While trying to retrieve the implicit argument 'syscall_ptr' in:" + ], + "start_col": 15, + "start_line": 13 + }, + "While expanding the reference 'syscall_ptr' in:" + ], + "start_col": 31, + "start_line": 69 + }, + "While trying to update the implicit return value 'syscall_ptr' in:" + ], + "start_col": 20, + "start_line": 12 + } + }, + "783": { + "accessible_scopes": [ + "starksheet.library", + "starksheet.library.Starksheet", + "starksheet.library.Starksheet.add_sheet" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 66, + "end_line": 12, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/utils/merkle_tree.cairo" + }, + "parent_location": [ + { + "end_col": 74, + "end_line": 69, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/starksheet/library.cairo" + }, + "parent_location": [ + { + "end_col": 61, + "end_line": 13, + "input_file": { + "filename": "autogen/starknet/storage_var/Starksheet_sheet_default_renderer_address/decl.cairo" + }, + "parent_location": [ + { + "end_col": 74, + "end_line": 75, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/starksheet/library.cairo" + }, + "start_col": 26, + "start_line": 75 + }, + "While trying to retrieve the implicit argument 'pedersen_ptr' in:" + ], + "start_col": 35, + "start_line": 13 + }, + "While expanding the reference 'pedersen_ptr' in:" + ], + "start_col": 31, + "start_line": 69 + }, + "While trying to update the implicit return value 'pedersen_ptr' in:" + ], + "start_col": 40, + "start_line": 12 + } + }, + "784": { + "accessible_scopes": [ + "starksheet.library", + "starksheet.library.Starksheet", + "starksheet.library.Starksheet.add_sheet" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 83, + "end_line": 12, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/utils/merkle_tree.cairo" + }, + "parent_location": [ + { + "end_col": 74, + "end_line": 69, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/starksheet/library.cairo" + }, + "parent_location": [ + { + "end_col": 78, + "end_line": 13, + "input_file": { + "filename": "autogen/starknet/storage_var/Starksheet_sheet_default_renderer_address/decl.cairo" + }, + "parent_location": [ + { + "end_col": 74, + "end_line": 75, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/starksheet/library.cairo" + }, + "start_col": 26, + "start_line": 75 + }, + "While trying to retrieve the implicit argument 'range_check_ptr' in:" + ], + "start_col": 63, + "start_line": 13 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 31, + "start_line": 69 + }, + "While trying to update the implicit return value 'range_check_ptr' in:" + ], + "start_col": 68, + "start_line": 12 + } + }, + "785": { + "accessible_scopes": [ + "starksheet.library", + "starksheet.library.Starksheet", + "starksheet.library.Starksheet.add_sheet" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 74, + "end_line": 75, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/starksheet/library.cairo" + }, + "start_col": 26, + "start_line": 75 + } + }, + "787": { + "accessible_scopes": [ + "starksheet.library", + "starksheet.library.Starksheet", + "starksheet.library.Starksheet.add_sheet" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 37, + "end_line": 76, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/starksheet/library.cairo" + }, + "start_col": 9, + "start_line": 76 + } + }, + "788": { + "accessible_scopes": [ + "starksheet.library", + "starksheet.library.Starksheet", + "starksheet.library.Starksheet.add_sheet" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 48, + "end_line": 77, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/starksheet/library.cairo" + }, + "start_col": 9, + "start_line": 77 + } + }, + "789": { + "accessible_scopes": [ + "starksheet.library", + "starksheet.library.Starksheet", + "starksheet.library.Starksheet.add_sheet" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 95, + "end_line": 78, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/starksheet/library.cairo" + }, + "start_col": 31, + "start_line": 78 + } + }, + "791": { + "accessible_scopes": [ + "starksheet.library", + "starksheet.library.Starksheet", + "starksheet.library.Starksheet.add_sheet" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 96, + "end_line": 78, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/starksheet/library.cairo" + }, + "start_col": 9, + "start_line": 78 + } + }, + "792": { + "accessible_scopes": [ + "starksheet.library", + "starksheet.library.Starksheet", + "starksheet.library.Starksheet.add_sheet" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 32, + "end_line": 79, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/starksheet/library.cairo" + }, + "start_col": 31, + "start_line": 79 + } + }, + "794": { + "accessible_scopes": [ + "starksheet.library", + "starksheet.library.Starksheet", + "starksheet.library.Starksheet.add_sheet" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 33, + "end_line": 79, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/starksheet/library.cairo" + }, + "start_col": 9, + "start_line": 79 + } + }, + "795": { + "accessible_scopes": [ + "starksheet.library", + "starksheet.library.Starksheet", + "starksheet.library.Starksheet.add_sheet" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 36, + "end_line": 80, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/starksheet/library.cairo" + }, + "start_col": 9, + "start_line": 80 + } + }, + "796": { + "accessible_scopes": [ + "starksheet.library", + "starksheet.library.Starksheet", + "starksheet.library.Starksheet.add_sheet" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 38, + "end_line": 81, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/starksheet/library.cairo" + }, + "start_col": 9, + "start_line": 81 + } + }, + "797": { + "accessible_scopes": [ + "starksheet.library", + "starksheet.library.Starksheet", + "starksheet.library.Starksheet.add_sheet" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 37, + "end_line": 82, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/starksheet/library.cairo" + }, + "start_col": 9, + "start_line": 82 + } + }, + "798": { + "accessible_scopes": [ + "starksheet.library", + "starksheet.library.Starksheet", + "starksheet.library.Starksheet.add_sheet" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 32, + "end_line": 83, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/starksheet/library.cairo" + }, + "start_col": 31, + "start_line": 83 + } + }, + "800": { + "accessible_scopes": [ + "starksheet.library", + "starksheet.library.Starksheet", + "starksheet.library.Starksheet.add_sheet" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 33, + "end_line": 83, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/starksheet/library.cairo" + }, + "start_col": 9, + "start_line": 83 + } + }, + "801": { + "accessible_scopes": [ + "starksheet.library", + "starksheet.library.Starksheet", + "starksheet.library.Starksheet.add_sheet" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 32, + "end_line": 84, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/starksheet/library.cairo" + }, + "start_col": 31, + "start_line": 84 + } + }, + "803": { + "accessible_scopes": [ + "starksheet.library", + "starksheet.library.Starksheet", + "starksheet.library.Starksheet.add_sheet" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 33, + "end_line": 84, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/starksheet/library.cairo" + }, + "start_col": 9, + "start_line": 84 + } + }, + "804": { + "accessible_scopes": [ + "starksheet.library", + "starksheet.library.Starksheet", + "starksheet.library.Starksheet.add_sheet" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 40, + "end_line": 85, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/starksheet/library.cairo" + }, + "start_col": 9, + "start_line": 85 + } + }, + "805": { + "accessible_scopes": [ + "starksheet.library", + "starksheet.library.Starksheet", + "starksheet.library.Starksheet.add_sheet" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 33, + "end_line": 13, + "input_file": { + "filename": "autogen/starknet/storage_var/Starksheet_sheet_default_renderer_address/decl.cairo" + }, + "parent_location": [ + { + "end_col": 74, + "end_line": 75, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/starksheet/library.cairo" + }, + "parent_location": [ + { + "end_col": 31, + "end_line": 157, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/starknet/common/syscalls.cairo" + }, + "parent_location": [ + { + "end_col": 10, + "end_line": 93, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/starksheet/library.cairo" + }, + "start_col": 25, + "start_line": 87 + }, + "While trying to retrieve the implicit argument 'syscall_ptr' in:" + ], + "start_col": 13, + "start_line": 157 + }, + "While expanding the reference 'syscall_ptr' in:" + ], + "start_col": 26, + "start_line": 75 + }, + "While trying to update the implicit return value 'syscall_ptr' in:" + ], + "start_col": 15, + "start_line": 13 + } + }, + "806": { + "accessible_scopes": [ + "starksheet.library", + "starksheet.library.Starksheet", + "starksheet.library.Starksheet.add_sheet" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 30, + "end_line": 62, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/starksheet/library.cairo" + }, + "parent_location": [ + { + "end_col": 30, + "end_line": 62, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/starksheet/library.cairo" + }, + "parent_location": [ + { + "end_col": 40, + "end_line": 88, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/starksheet/library.cairo" + }, + "start_col": 24, + "start_line": 88 + }, + "While expanding the reference 'proxy_class_hash' in:" + ], + "start_col": 14, + "start_line": 62 + }, + "While auto generating local variable for 'proxy_class_hash'." + ], + "start_col": 14, + "start_line": 62 + } + }, + "807": { + "accessible_scopes": [ + "starksheet.library", + "starksheet.library.Starksheet", + "starksheet.library.Starksheet.add_sheet" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 19, + "end_line": 64, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/starksheet/library.cairo" + }, + "parent_location": [ + { + "end_col": 19, + "end_line": 64, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/starksheet/library.cairo" + }, + "parent_location": [ + { + "end_col": 40, + "end_line": 89, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/starksheet/library.cairo" + }, + "start_col": 35, + "start_line": 89 + }, + "While expanding the reference 'owner' in:" + ], + "start_col": 14, + "start_line": 64 + }, + "While auto generating local variable for 'owner'." + ], + "start_col": 14, + "start_line": 64 + } + }, + "808": { + "accessible_scopes": [ + "starksheet.library", + "starksheet.library.Starksheet", + "starksheet.library.Starksheet.add_sheet" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 41, + "end_line": 90, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/starksheet/library.cairo" + }, + "start_col": 39, + "start_line": 90 + } + }, + "810": { + "accessible_scopes": [ + "starksheet.library", + "starksheet.library.Starksheet", + "starksheet.library.Starksheet.add_sheet" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 29, + "end_line": 74, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/starksheet/library.cairo" + }, + "parent_location": [ + { + "end_col": 43, + "end_line": 91, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/starksheet/library.cairo" + }, + "start_col": 34, + "start_line": 91 + }, + "While expanding the reference 'calldata_' in:" + ], + "start_col": 20, + "start_line": 74 + } + }, + "811": { + "accessible_scopes": [ + "starksheet.library", + "starksheet.library.Starksheet", + "starksheet.library.Starksheet.add_sheet" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 31, + "end_line": 92, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/starksheet/library.cairo" + }, + "start_col": 30, + "start_line": 92 + } + }, + "813": { + "accessible_scopes": [ + "starksheet.library", + "starksheet.library.Starksheet", + "starksheet.library.Starksheet.add_sheet" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 10, + "end_line": 93, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/starksheet/library.cairo" + }, + "start_col": 25, + "start_line": 87 + } + }, + "815": { + "accessible_scopes": [ + "starksheet.library", + "starksheet.library.Starksheet", + "starksheet.library.Starksheet.add_sheet" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 31, + "end_line": 157, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/starknet/common/syscalls.cairo" + }, + "parent_location": [ + { + "end_col": 10, + "end_line": 93, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/starksheet/library.cairo" + }, + "parent_location": [ + { + "end_col": 34, + "end_line": 21, + "input_file": { + "filename": "autogen/starknet/storage_var/Starksheet_sheets/decl.cairo" + }, + "parent_location": [ + { + "end_col": 55, + "end_line": 95, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/starksheet/library.cairo" + }, + "start_col": 9, + "start_line": 95 + }, + "While trying to retrieve the implicit argument 'syscall_ptr' in:" + ], + "start_col": 16, + "start_line": 21 + }, + "While expanding the reference 'syscall_ptr' in:" + ], + "start_col": 25, + "start_line": 87 + }, + "While trying to update the implicit return value 'syscall_ptr' in:" + ], + "start_col": 13, + "start_line": 157 + } + }, + "816": { + "accessible_scopes": [ + "starksheet.library", + "starksheet.library.Starksheet", + "starksheet.library.Starksheet.add_sheet" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 61, + "end_line": 13, + "input_file": { + "filename": "autogen/starknet/storage_var/Starksheet_sheet_default_renderer_address/decl.cairo" + }, + "parent_location": [ + { + "end_col": 74, + "end_line": 75, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/starksheet/library.cairo" + }, + "parent_location": [ + { + "end_col": 62, + "end_line": 21, + "input_file": { + "filename": "autogen/starknet/storage_var/Starksheet_sheets/decl.cairo" + }, + "parent_location": [ + { + "end_col": 55, + "end_line": 95, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/starksheet/library.cairo" + }, + "start_col": 9, + "start_line": 95 + }, + "While trying to retrieve the implicit argument 'pedersen_ptr' in:" + ], + "start_col": 36, + "start_line": 21 + }, + "While expanding the reference 'pedersen_ptr' in:" + ], + "start_col": 26, + "start_line": 75 + }, + "While trying to update the implicit return value 'pedersen_ptr' in:" + ], + "start_col": 35, + "start_line": 13 + } + }, + "817": { + "accessible_scopes": [ + "starksheet.library", + "starksheet.library.Starksheet", + "starksheet.library.Starksheet.add_sheet" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 78, + "end_line": 13, + "input_file": { + "filename": "autogen/starknet/storage_var/Starksheet_sheet_default_renderer_address/decl.cairo" + }, + "parent_location": [ + { + "end_col": 74, + "end_line": 75, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/starksheet/library.cairo" + }, + "parent_location": [ + { + "end_col": 79, + "end_line": 21, + "input_file": { + "filename": "autogen/starknet/storage_var/Starksheet_sheets/decl.cairo" + }, + "parent_location": [ + { + "end_col": 55, + "end_line": 95, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/starksheet/library.cairo" + }, + "start_col": 9, + "start_line": 95 + }, + "While trying to retrieve the implicit argument 'range_check_ptr' in:" + ], + "start_col": 64, + "start_line": 21 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 26, + "start_line": 75 + }, + "While trying to update the implicit return value 'range_check_ptr' in:" + ], + "start_col": 63, + "start_line": 13 + } + }, + "818": { + "accessible_scopes": [ + "starksheet.library", + "starksheet.library.Starksheet", + "starksheet.library.Starksheet.add_sheet" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 32, + "end_line": 63, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/starksheet/library.cairo" + }, + "parent_location": [ + { + "end_col": 45, + "end_line": 95, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/starksheet/library.cairo" + }, + "start_col": 33, + "start_line": 95 + }, + "While expanding the reference 'sheets_count' in:" + ], + "start_col": 20, + "start_line": 63 + } + }, + "819": { + "accessible_scopes": [ + "starksheet.library", + "starksheet.library.Starksheet", + "starksheet.library.Starksheet.add_sheet" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 21, + "end_line": 87, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/starksheet/library.cairo" + }, + "parent_location": [ + { + "end_col": 54, + "end_line": 95, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/starksheet/library.cairo" + }, + "start_col": 47, + "start_line": 95 + }, + "While expanding the reference 'address' in:" + ], + "start_col": 14, + "start_line": 87 + } + }, + "820": { + "accessible_scopes": [ + "starksheet.library", + "starksheet.library.Starksheet", + "starksheet.library.Starksheet.add_sheet" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 55, + "end_line": 95, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/starksheet/library.cairo" + }, + "start_col": 9, + "start_line": 95 + } + }, + "822": { + "accessible_scopes": [ + "starksheet.library", + "starksheet.library.Starksheet", + "starksheet.library.Starksheet.add_sheet" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 55, + "end_line": 96, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/starksheet/library.cairo" + }, + "start_col": 39, + "start_line": 96 + } + }, + "824": { + "accessible_scopes": [ + "starksheet.library", + "starksheet.library.Starksheet", + "starksheet.library.Starksheet.add_sheet" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 56, + "end_line": 96, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/starksheet/library.cairo" + }, + "start_col": 9, + "start_line": 96 + } + }, + "826": { + "accessible_scopes": [ + "starksheet.library", + "starksheet.library.Starksheet", + "starksheet.library.Starksheet.add_sheet" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 21, + "end_line": 87, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/starksheet/library.cairo" + }, + "parent_location": [ + { + "end_col": 24, + "end_line": 97, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/starksheet/library.cairo" + }, + "start_col": 17, + "start_line": 97 + }, + "While expanding the reference 'address' in:" + ], + "start_col": 14, + "start_line": 87 + } + }, + "827": { + "accessible_scopes": [ + "starksheet.library", + "starksheet.library.Starksheet", + "starksheet.library.Starksheet.add_sheet" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 27, + "end_line": 97, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/starksheet/library.cairo" + }, + "start_col": 9, + "start_line": 97 + } + }, + "828": { + "accessible_scopes": [ + "starksheet.library", + "starksheet.library.Starksheet", + "starksheet.library.Starksheet.get_sheet_class_hash" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 49, + "end_line": 100, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/starksheet/library.cairo" + }, + "parent_location": [ + { + "end_col": 33, + "end_line": 13, + "input_file": { + "filename": "autogen/starknet/storage_var/Starksheet_sheet_class_hash/decl.cairo" + }, + "parent_location": [ + { + "end_col": 50, + "end_line": 102, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/starksheet/library.cairo" + }, + "start_col": 16, + "start_line": 102 + }, + "While trying to retrieve the implicit argument 'syscall_ptr' in:" + ], + "start_col": 15, + "start_line": 13 + }, + "While expanding the reference 'syscall_ptr' in:" + ], + "start_col": 31, + "start_line": 100 + } + }, + "829": { + "accessible_scopes": [ + "starksheet.library", + "starksheet.library.Starksheet", + "starksheet.library.Starksheet.get_sheet_class_hash" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 77, + "end_line": 100, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/starksheet/library.cairo" + }, + "parent_location": [ + { + "end_col": 61, + "end_line": 13, + "input_file": { + "filename": "autogen/starknet/storage_var/Starksheet_sheet_class_hash/decl.cairo" + }, + "parent_location": [ + { + "end_col": 50, + "end_line": 102, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/starksheet/library.cairo" + }, + "start_col": 16, + "start_line": 102 + }, + "While trying to retrieve the implicit argument 'pedersen_ptr' in:" + ], + "start_col": 35, + "start_line": 13 + }, + "While expanding the reference 'pedersen_ptr' in:" + ], + "start_col": 51, + "start_line": 100 + } + }, + "830": { + "accessible_scopes": [ + "starksheet.library", + "starksheet.library.Starksheet", + "starksheet.library.Starksheet.get_sheet_class_hash" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 94, + "end_line": 100, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/starksheet/library.cairo" + }, + "parent_location": [ + { + "end_col": 78, + "end_line": 13, + "input_file": { + "filename": "autogen/starknet/storage_var/Starksheet_sheet_class_hash/decl.cairo" + }, + "parent_location": [ + { + "end_col": 50, + "end_line": 102, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/starksheet/library.cairo" + }, + "start_col": 16, + "start_line": 102 + }, + "While trying to retrieve the implicit argument 'range_check_ptr' in:" + ], + "start_col": 63, + "start_line": 13 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 79, + "start_line": 100 + } + }, + "831": { + "accessible_scopes": [ + "starksheet.library", + "starksheet.library.Starksheet", + "starksheet.library.Starksheet.get_sheet_class_hash" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 50, + "end_line": 102, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/starksheet/library.cairo" + }, + "start_col": 16, + "start_line": 102 + } + }, + "833": { + "accessible_scopes": [ + "starksheet.library", + "starksheet.library.Starksheet", + "starksheet.library.Starksheet.get_sheet_class_hash" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 51, + "end_line": 102, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/starksheet/library.cairo" + }, + "start_col": 9, + "start_line": 102 + } + }, + "834": { + "accessible_scopes": [ + "starksheet.library", + "starksheet.library.Starksheet", + "starksheet.library.Starksheet.set_sheet_class_hash" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 49, + "end_line": 105, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/starksheet/library.cairo" + }, + "parent_location": [ + { + "end_col": 34, + "end_line": 19, + "input_file": { + "filename": "autogen/starknet/storage_var/Starksheet_sheet_class_hash/decl.cairo" + }, + "parent_location": [ + { + "end_col": 48, + "end_line": 108, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/starksheet/library.cairo" + }, + "start_col": 9, + "start_line": 108 + }, + "While trying to retrieve the implicit argument 'syscall_ptr' in:" + ], + "start_col": 16, + "start_line": 19 + }, + "While expanding the reference 'syscall_ptr' in:" + ], + "start_col": 31, + "start_line": 105 + } + }, + "835": { + "accessible_scopes": [ + "starksheet.library", + "starksheet.library.Starksheet", + "starksheet.library.Starksheet.set_sheet_class_hash" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 77, + "end_line": 105, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/starksheet/library.cairo" + }, + "parent_location": [ + { + "end_col": 62, + "end_line": 19, + "input_file": { + "filename": "autogen/starknet/storage_var/Starksheet_sheet_class_hash/decl.cairo" + }, + "parent_location": [ + { + "end_col": 48, + "end_line": 108, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/starksheet/library.cairo" + }, + "start_col": 9, + "start_line": 108 + }, + "While trying to retrieve the implicit argument 'pedersen_ptr' in:" + ], + "start_col": 36, + "start_line": 19 + }, + "While expanding the reference 'pedersen_ptr' in:" + ], + "start_col": 51, + "start_line": 105 + } + }, + "836": { + "accessible_scopes": [ + "starksheet.library", + "starksheet.library.Starksheet", + "starksheet.library.Starksheet.set_sheet_class_hash" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 94, + "end_line": 105, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/starksheet/library.cairo" + }, + "parent_location": [ + { + "end_col": 79, + "end_line": 19, + "input_file": { + "filename": "autogen/starknet/storage_var/Starksheet_sheet_class_hash/decl.cairo" + }, + "parent_location": [ + { + "end_col": 48, + "end_line": 108, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/starksheet/library.cairo" + }, + "start_col": 9, + "start_line": 108 + }, + "While trying to retrieve the implicit argument 'range_check_ptr' in:" + ], + "start_col": 64, + "start_line": 19 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 79, + "start_line": 105 + } + }, + "837": { + "accessible_scopes": [ + "starksheet.library", + "starksheet.library.Starksheet", + "starksheet.library.Starksheet.set_sheet_class_hash" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 19, + "end_line": 106, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/starksheet/library.cairo" + }, + "parent_location": [ + { + "end_col": 47, + "end_line": 108, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/starksheet/library.cairo" + }, + "start_col": 43, + "start_line": 108 + }, + "While expanding the reference 'hash' in:" + ], + "start_col": 9, + "start_line": 106 + } + }, + "838": { + "accessible_scopes": [ + "starksheet.library", + "starksheet.library.Starksheet", + "starksheet.library.Starksheet.set_sheet_class_hash" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 48, + "end_line": 108, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/starksheet/library.cairo" + }, + "start_col": 9, + "start_line": 108 + } + }, + "840": { + "accessible_scopes": [ + "starksheet.library", + "starksheet.library.Starksheet", + "starksheet.library.Starksheet.set_sheet_class_hash" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 19, + "end_line": 109, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/starksheet/library.cairo" + }, + "start_col": 9, + "start_line": 109 + } + }, + "841": { + "accessible_scopes": [ + "starksheet.library", + "starksheet.library.Starksheet", + "starksheet.library.Starksheet.get_proxy_class_hash" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 49, + "end_line": 112, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/starksheet/library.cairo" + }, + "parent_location": [ + { + "end_col": 33, + "end_line": 13, + "input_file": { + "filename": "autogen/starknet/storage_var/Starksheet_proxy_class_hash/decl.cairo" + }, + "parent_location": [ + { + "end_col": 50, + "end_line": 114, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/starksheet/library.cairo" + }, + "start_col": 16, + "start_line": 114 + }, + "While trying to retrieve the implicit argument 'syscall_ptr' in:" + ], + "start_col": 15, + "start_line": 13 + }, + "While expanding the reference 'syscall_ptr' in:" + ], + "start_col": 31, + "start_line": 112 + } + }, + "842": { + "accessible_scopes": [ + "starksheet.library", + "starksheet.library.Starksheet", + "starksheet.library.Starksheet.get_proxy_class_hash" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 77, + "end_line": 112, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/starksheet/library.cairo" + }, + "parent_location": [ + { + "end_col": 61, + "end_line": 13, + "input_file": { + "filename": "autogen/starknet/storage_var/Starksheet_proxy_class_hash/decl.cairo" + }, + "parent_location": [ + { + "end_col": 50, + "end_line": 114, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/starksheet/library.cairo" + }, + "start_col": 16, + "start_line": 114 + }, + "While trying to retrieve the implicit argument 'pedersen_ptr' in:" + ], + "start_col": 35, + "start_line": 13 + }, + "While expanding the reference 'pedersen_ptr' in:" + ], + "start_col": 51, + "start_line": 112 + } + }, + "843": { + "accessible_scopes": [ + "starksheet.library", + "starksheet.library.Starksheet", + "starksheet.library.Starksheet.get_proxy_class_hash" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 94, + "end_line": 112, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/starksheet/library.cairo" + }, + "parent_location": [ + { + "end_col": 78, + "end_line": 13, + "input_file": { + "filename": "autogen/starknet/storage_var/Starksheet_proxy_class_hash/decl.cairo" + }, + "parent_location": [ + { + "end_col": 50, + "end_line": 114, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/starksheet/library.cairo" + }, + "start_col": 16, + "start_line": 114 + }, + "While trying to retrieve the implicit argument 'range_check_ptr' in:" + ], + "start_col": 63, + "start_line": 13 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 79, + "start_line": 112 + } + }, + "844": { + "accessible_scopes": [ + "starksheet.library", + "starksheet.library.Starksheet", + "starksheet.library.Starksheet.get_proxy_class_hash" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 50, + "end_line": 114, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/starksheet/library.cairo" + }, + "start_col": 16, + "start_line": 114 + } + }, + "846": { + "accessible_scopes": [ + "starksheet.library", + "starksheet.library.Starksheet", + "starksheet.library.Starksheet.get_proxy_class_hash" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 51, + "end_line": 114, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/starksheet/library.cairo" + }, + "start_col": 9, + "start_line": 114 + } + }, + "847": { + "accessible_scopes": [ + "starksheet.library", + "starksheet.library.Starksheet", + "starksheet.library.Starksheet.set_proxy_class_hash" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 49, + "end_line": 117, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/starksheet/library.cairo" + }, + "parent_location": [ + { + "end_col": 34, + "end_line": 19, + "input_file": { + "filename": "autogen/starknet/storage_var/Starksheet_proxy_class_hash/decl.cairo" + }, + "parent_location": [ + { + "end_col": 48, + "end_line": 120, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/starksheet/library.cairo" + }, + "start_col": 9, + "start_line": 120 + }, + "While trying to retrieve the implicit argument 'syscall_ptr' in:" + ], + "start_col": 16, + "start_line": 19 + }, + "While expanding the reference 'syscall_ptr' in:" + ], + "start_col": 31, + "start_line": 117 + } + }, + "848": { + "accessible_scopes": [ + "starksheet.library", + "starksheet.library.Starksheet", + "starksheet.library.Starksheet.set_proxy_class_hash" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 77, + "end_line": 117, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/starksheet/library.cairo" + }, + "parent_location": [ + { + "end_col": 62, + "end_line": 19, + "input_file": { + "filename": "autogen/starknet/storage_var/Starksheet_proxy_class_hash/decl.cairo" + }, + "parent_location": [ + { + "end_col": 48, + "end_line": 120, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/starksheet/library.cairo" + }, + "start_col": 9, + "start_line": 120 + }, + "While trying to retrieve the implicit argument 'pedersen_ptr' in:" + ], + "start_col": 36, + "start_line": 19 + }, + "While expanding the reference 'pedersen_ptr' in:" + ], + "start_col": 51, + "start_line": 117 + } + }, + "849": { + "accessible_scopes": [ + "starksheet.library", + "starksheet.library.Starksheet", + "starksheet.library.Starksheet.set_proxy_class_hash" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 94, + "end_line": 117, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/starksheet/library.cairo" + }, + "parent_location": [ + { + "end_col": 79, + "end_line": 19, + "input_file": { + "filename": "autogen/starknet/storage_var/Starksheet_proxy_class_hash/decl.cairo" + }, + "parent_location": [ + { + "end_col": 48, + "end_line": 120, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/starksheet/library.cairo" + }, + "start_col": 9, + "start_line": 120 + }, + "While trying to retrieve the implicit argument 'range_check_ptr' in:" + ], + "start_col": 64, + "start_line": 19 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 79, + "start_line": 117 + } + }, + "850": { + "accessible_scopes": [ + "starksheet.library", + "starksheet.library.Starksheet", + "starksheet.library.Starksheet.set_proxy_class_hash" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 19, + "end_line": 118, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/starksheet/library.cairo" + }, + "parent_location": [ + { + "end_col": 47, + "end_line": 120, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/starksheet/library.cairo" + }, + "start_col": 43, + "start_line": 120 + }, + "While expanding the reference 'hash' in:" + ], + "start_col": 9, + "start_line": 118 + } + }, + "851": { + "accessible_scopes": [ + "starksheet.library", + "starksheet.library.Starksheet", + "starksheet.library.Starksheet.set_proxy_class_hash" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 48, + "end_line": 120, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/starksheet/library.cairo" + }, + "start_col": 9, + "start_line": 120 + } + }, + "853": { + "accessible_scopes": [ + "starksheet.library", + "starksheet.library.Starksheet", + "starksheet.library.Starksheet.set_proxy_class_hash" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 19, + "end_line": 121, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/starksheet/library.cairo" + }, + "start_col": 9, + "start_line": 121 + } + }, + "854": { + "accessible_scopes": [ + "starksheet.library", + "starksheet.library.Starksheet", + "starksheet.library.Starksheet.get_sheet_price" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 44, + "end_line": 124, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/starksheet/library.cairo" + }, + "parent_location": [ + { + "end_col": 33, + "end_line": 13, + "input_file": { + "filename": "autogen/starknet/storage_var/Starksheet_sheet_price/decl.cairo" + }, + "parent_location": [ + { + "end_col": 45, + "end_line": 127, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/starksheet/library.cairo" + }, + "start_col": 16, + "start_line": 127 + }, + "While trying to retrieve the implicit argument 'syscall_ptr' in:" + ], + "start_col": 15, + "start_line": 13 + }, + "While expanding the reference 'syscall_ptr' in:" + ], + "start_col": 26, + "start_line": 124 + } + }, + "855": { + "accessible_scopes": [ + "starksheet.library", + "starksheet.library.Starksheet", + "starksheet.library.Starksheet.get_sheet_price" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 72, + "end_line": 124, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/starksheet/library.cairo" + }, + "parent_location": [ + { + "end_col": 61, + "end_line": 13, + "input_file": { + "filename": "autogen/starknet/storage_var/Starksheet_sheet_price/decl.cairo" + }, + "parent_location": [ + { + "end_col": 45, + "end_line": 127, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/starksheet/library.cairo" + }, + "start_col": 16, + "start_line": 127 + }, + "While trying to retrieve the implicit argument 'pedersen_ptr' in:" + ], + "start_col": 35, + "start_line": 13 + }, + "While expanding the reference 'pedersen_ptr' in:" + ], + "start_col": 46, + "start_line": 124 + } + }, + "856": { + "accessible_scopes": [ + "starksheet.library", + "starksheet.library.Starksheet", + "starksheet.library.Starksheet.get_sheet_price" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 89, + "end_line": 124, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/starksheet/library.cairo" + }, + "parent_location": [ + { + "end_col": 78, + "end_line": 13, + "input_file": { + "filename": "autogen/starknet/storage_var/Starksheet_sheet_price/decl.cairo" + }, + "parent_location": [ + { + "end_col": 45, + "end_line": 127, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/starksheet/library.cairo" + }, + "start_col": 16, + "start_line": 127 + }, + "While trying to retrieve the implicit argument 'range_check_ptr' in:" + ], + "start_col": 63, + "start_line": 13 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 74, + "start_line": 124 + } + }, + "857": { + "accessible_scopes": [ + "starksheet.library", + "starksheet.library.Starksheet", + "starksheet.library.Starksheet.get_sheet_price" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 45, + "end_line": 127, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/starksheet/library.cairo" + }, + "start_col": 16, + "start_line": 127 + } + }, + "859": { + "accessible_scopes": [ + "starksheet.library", + "starksheet.library.Starksheet", + "starksheet.library.Starksheet.get_sheet_price" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 46, + "end_line": 127, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/starksheet/library.cairo" + }, + "start_col": 9, + "start_line": 127 + } + }, + "860": { + "accessible_scopes": [ + "starksheet.library", + "starksheet.library.Starksheet", + "starksheet.library.Starksheet.set_sheet_price" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 44, + "end_line": 130, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/starksheet/library.cairo" + }, + "parent_location": [ + { + "end_col": 34, + "end_line": 19, + "input_file": { + "filename": "autogen/starknet/storage_var/Starksheet_sheet_price/decl.cairo" + }, + "parent_location": [ + { + "end_col": 44, + "end_line": 133, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/starksheet/library.cairo" + }, + "start_col": 9, + "start_line": 133 + }, + "While trying to retrieve the implicit argument 'syscall_ptr' in:" + ], + "start_col": 16, + "start_line": 19 + }, + "While expanding the reference 'syscall_ptr' in:" + ], + "start_col": 26, + "start_line": 130 + } + }, + "861": { + "accessible_scopes": [ + "starksheet.library", + "starksheet.library.Starksheet", + "starksheet.library.Starksheet.set_sheet_price" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 72, + "end_line": 130, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/starksheet/library.cairo" + }, + "parent_location": [ + { + "end_col": 62, + "end_line": 19, + "input_file": { + "filename": "autogen/starknet/storage_var/Starksheet_sheet_price/decl.cairo" + }, + "parent_location": [ + { + "end_col": 44, + "end_line": 133, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/starksheet/library.cairo" + }, + "start_col": 9, + "start_line": 133 + }, + "While trying to retrieve the implicit argument 'pedersen_ptr' in:" + ], + "start_col": 36, + "start_line": 19 + }, + "While expanding the reference 'pedersen_ptr' in:" + ], + "start_col": 46, + "start_line": 130 + } + }, + "862": { + "accessible_scopes": [ + "starksheet.library", + "starksheet.library.Starksheet", + "starksheet.library.Starksheet.set_sheet_price" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 89, + "end_line": 130, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/starksheet/library.cairo" + }, + "parent_location": [ + { + "end_col": 79, + "end_line": 19, + "input_file": { + "filename": "autogen/starknet/storage_var/Starksheet_sheet_price/decl.cairo" + }, + "parent_location": [ + { + "end_col": 44, + "end_line": 133, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/starksheet/library.cairo" + }, + "start_col": 9, + "start_line": 133 + }, + "While trying to retrieve the implicit argument 'range_check_ptr' in:" + ], + "start_col": 64, + "start_line": 19 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 74, + "start_line": 130 + } + }, + "863": { + "accessible_scopes": [ + "starksheet.library", + "starksheet.library.Starksheet", + "starksheet.library.Starksheet.set_sheet_price" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 20, + "end_line": 131, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/starksheet/library.cairo" + }, + "parent_location": [ + { + "end_col": 43, + "end_line": 133, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/starksheet/library.cairo" + }, + "start_col": 38, + "start_line": 133 + }, + "While expanding the reference 'price' in:" + ], + "start_col": 9, + "start_line": 131 + } + }, + "864": { + "accessible_scopes": [ + "starksheet.library", + "starksheet.library.Starksheet", + "starksheet.library.Starksheet.set_sheet_price" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 44, + "end_line": 133, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/starksheet/library.cairo" + }, + "start_col": 9, + "start_line": 133 + } + }, + "866": { + "accessible_scopes": [ + "starksheet.library", + "starksheet.library.Starksheet", + "starksheet.library.Starksheet.set_sheet_price" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 19, + "end_line": 134, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/starksheet/library.cairo" + }, + "start_col": 9, + "start_line": 134 + } + }, + "867": { + "accessible_scopes": [ + "starksheet.library", + "starksheet.library.Starksheet", + "starksheet.library.Starksheet.get_sheet_default_renderer_address" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 27, + "end_line": 138, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/starksheet/library.cairo" + }, + "parent_location": [ + { + "end_col": 33, + "end_line": 13, + "input_file": { + "filename": "autogen/starknet/storage_var/Starksheet_sheet_default_renderer_address/decl.cairo" + }, + "parent_location": [ + { + "end_col": 64, + "end_line": 140, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/starksheet/library.cairo" + }, + "start_col": 16, + "start_line": 140 + }, + "While trying to retrieve the implicit argument 'syscall_ptr' in:" + ], + "start_col": 15, + "start_line": 13 + }, + "While expanding the reference 'syscall_ptr' in:" + ], + "start_col": 9, + "start_line": 138 + } + }, + "868": { + "accessible_scopes": [ + "starksheet.library", + "starksheet.library.Starksheet", + "starksheet.library.Starksheet.get_sheet_default_renderer_address" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 55, + "end_line": 138, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/starksheet/library.cairo" + }, + "parent_location": [ + { + "end_col": 61, + "end_line": 13, + "input_file": { + "filename": "autogen/starknet/storage_var/Starksheet_sheet_default_renderer_address/decl.cairo" + }, + "parent_location": [ + { + "end_col": 64, + "end_line": 140, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/starksheet/library.cairo" + }, + "start_col": 16, + "start_line": 140 + }, + "While trying to retrieve the implicit argument 'pedersen_ptr' in:" + ], + "start_col": 35, + "start_line": 13 + }, + "While expanding the reference 'pedersen_ptr' in:" + ], + "start_col": 29, + "start_line": 138 + } + }, + "869": { + "accessible_scopes": [ + "starksheet.library", + "starksheet.library.Starksheet", + "starksheet.library.Starksheet.get_sheet_default_renderer_address" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 72, + "end_line": 138, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/starksheet/library.cairo" + }, + "parent_location": [ + { + "end_col": 78, + "end_line": 13, + "input_file": { + "filename": "autogen/starknet/storage_var/Starksheet_sheet_default_renderer_address/decl.cairo" + }, + "parent_location": [ + { + "end_col": 64, + "end_line": 140, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/starksheet/library.cairo" + }, + "start_col": 16, + "start_line": 140 + }, + "While trying to retrieve the implicit argument 'range_check_ptr' in:" + ], + "start_col": 63, + "start_line": 13 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 57, + "start_line": 138 + } + }, + "870": { + "accessible_scopes": [ + "starksheet.library", + "starksheet.library.Starksheet", + "starksheet.library.Starksheet.get_sheet_default_renderer_address" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 64, + "end_line": 140, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/starksheet/library.cairo" + }, + "start_col": 16, + "start_line": 140 + } + }, + "872": { + "accessible_scopes": [ + "starksheet.library", + "starksheet.library.Starksheet", + "starksheet.library.Starksheet.get_sheet_default_renderer_address" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 65, + "end_line": 140, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/starksheet/library.cairo" + }, + "start_col": 9, + "start_line": 140 + } + }, + "873": { + "accessible_scopes": [ + "starksheet.library", + "starksheet.library.Starksheet", + "starksheet.library.Starksheet.set_sheet_default_renderer_address" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 27, + "end_line": 144, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/starksheet/library.cairo" + }, + "parent_location": [ + { + "end_col": 34, + "end_line": 21, + "input_file": { + "filename": "autogen/starknet/storage_var/Starksheet_sheet_default_renderer_address/decl.cairo" + }, + "parent_location": [ + { + "end_col": 65, + "end_line": 146, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/starksheet/library.cairo" + }, + "start_col": 9, + "start_line": 146 + }, + "While trying to retrieve the implicit argument 'syscall_ptr' in:" + ], + "start_col": 16, + "start_line": 21 + }, + "While expanding the reference 'syscall_ptr' in:" + ], + "start_col": 9, + "start_line": 144 + } + }, + "874": { + "accessible_scopes": [ + "starksheet.library", + "starksheet.library.Starksheet", + "starksheet.library.Starksheet.set_sheet_default_renderer_address" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 55, + "end_line": 144, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/starksheet/library.cairo" + }, + "parent_location": [ + { + "end_col": 62, + "end_line": 21, + "input_file": { + "filename": "autogen/starknet/storage_var/Starksheet_sheet_default_renderer_address/decl.cairo" + }, + "parent_location": [ + { + "end_col": 65, + "end_line": 146, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/starksheet/library.cairo" + }, + "start_col": 9, + "start_line": 146 + }, + "While trying to retrieve the implicit argument 'pedersen_ptr' in:" + ], + "start_col": 36, + "start_line": 21 + }, + "While expanding the reference 'pedersen_ptr' in:" + ], + "start_col": 29, + "start_line": 144 + } + }, + "875": { + "accessible_scopes": [ + "starksheet.library", + "starksheet.library.Starksheet", + "starksheet.library.Starksheet.set_sheet_default_renderer_address" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 72, + "end_line": 144, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/starksheet/library.cairo" + }, + "parent_location": [ + { + "end_col": 79, + "end_line": 21, + "input_file": { + "filename": "autogen/starknet/storage_var/Starksheet_sheet_default_renderer_address/decl.cairo" + }, + "parent_location": [ + { + "end_col": 65, + "end_line": 146, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/starksheet/library.cairo" + }, + "start_col": 9, + "start_line": 146 + }, + "While trying to retrieve the implicit argument 'range_check_ptr' in:" + ], + "start_col": 64, + "start_line": 21 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 57, + "start_line": 144 + } + }, + "876": { + "accessible_scopes": [ + "starksheet.library", + "starksheet.library.Starksheet", + "starksheet.library.Starksheet.set_sheet_default_renderer_address" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 20, + "end_line": 145, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/starksheet/library.cairo" + }, + "parent_location": [ + { + "end_col": 64, + "end_line": 146, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/starksheet/library.cairo" + }, + "start_col": 57, + "start_line": 146 + }, + "While expanding the reference 'address' in:" + ], + "start_col": 7, + "start_line": 145 + } + }, + "877": { + "accessible_scopes": [ + "starksheet.library", + "starksheet.library.Starksheet", + "starksheet.library.Starksheet.set_sheet_default_renderer_address" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 65, + "end_line": 146, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/starksheet/library.cairo" + }, + "start_col": 9, + "start_line": 146 + } + }, + "879": { + "accessible_scopes": [ + "starksheet.library", + "starksheet.library.Starksheet", + "starksheet.library.Starksheet.set_sheet_default_renderer_address" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 19, + "end_line": 147, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/starksheet/library.cairo" + }, + "start_col": 9, + "start_line": 147 + } + }, + "880": { + "accessible_scopes": [ + "starksheet.library", + "starksheet.library.Starksheet", + "starksheet.library.Starksheet.get_merkle_root" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 44, + "end_line": 150, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/starksheet/library.cairo" + }, + "parent_location": [ + { + "end_col": 33, + "end_line": 13, + "input_file": { + "filename": "autogen/starknet/storage_var/Starksheet_merkle_root/decl.cairo" + }, + "parent_location": [ + { + "end_col": 45, + "end_line": 153, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/starksheet/library.cairo" + }, + "start_col": 16, + "start_line": 153 + }, + "While trying to retrieve the implicit argument 'syscall_ptr' in:" + ], + "start_col": 15, + "start_line": 13 + }, + "While expanding the reference 'syscall_ptr' in:" + ], + "start_col": 26, + "start_line": 150 + } + }, + "881": { + "accessible_scopes": [ + "starksheet.library", + "starksheet.library.Starksheet", + "starksheet.library.Starksheet.get_merkle_root" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 72, + "end_line": 150, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/starksheet/library.cairo" + }, + "parent_location": [ + { + "end_col": 61, + "end_line": 13, + "input_file": { + "filename": "autogen/starknet/storage_var/Starksheet_merkle_root/decl.cairo" + }, + "parent_location": [ + { + "end_col": 45, + "end_line": 153, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/starksheet/library.cairo" + }, + "start_col": 16, + "start_line": 153 + }, + "While trying to retrieve the implicit argument 'pedersen_ptr' in:" + ], + "start_col": 35, + "start_line": 13 + }, + "While expanding the reference 'pedersen_ptr' in:" + ], + "start_col": 46, + "start_line": 150 + } + }, + "882": { + "accessible_scopes": [ + "starksheet.library", + "starksheet.library.Starksheet", + "starksheet.library.Starksheet.get_merkle_root" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 89, + "end_line": 150, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/starksheet/library.cairo" + }, + "parent_location": [ + { + "end_col": 78, + "end_line": 13, + "input_file": { + "filename": "autogen/starknet/storage_var/Starksheet_merkle_root/decl.cairo" + }, + "parent_location": [ + { + "end_col": 45, + "end_line": 153, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/starksheet/library.cairo" + }, + "start_col": 16, + "start_line": 153 + }, + "While trying to retrieve the implicit argument 'range_check_ptr' in:" + ], + "start_col": 63, + "start_line": 13 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 74, + "start_line": 150 + } + }, + "883": { + "accessible_scopes": [ + "starksheet.library", + "starksheet.library.Starksheet", + "starksheet.library.Starksheet.get_merkle_root" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 45, + "end_line": 153, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/starksheet/library.cairo" + }, + "start_col": 16, + "start_line": 153 + } + }, + "885": { + "accessible_scopes": [ + "starksheet.library", + "starksheet.library.Starksheet", + "starksheet.library.Starksheet.get_merkle_root" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 46, + "end_line": 153, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/starksheet/library.cairo" + }, + "start_col": 9, + "start_line": 153 + } + }, + "886": { + "accessible_scopes": [ + "starksheet.library", + "starksheet.library.Starksheet", + "starksheet.library.Starksheet.set_merkle_root" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 44, + "end_line": 156, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/starksheet/library.cairo" + }, + "parent_location": [ + { + "end_col": 34, + "end_line": 19, + "input_file": { + "filename": "autogen/starknet/storage_var/Starksheet_merkle_root/decl.cairo" + }, + "parent_location": [ + { + "end_col": 43, + "end_line": 159, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/starksheet/library.cairo" + }, + "start_col": 9, + "start_line": 159 + }, + "While trying to retrieve the implicit argument 'syscall_ptr' in:" + ], + "start_col": 16, + "start_line": 19 + }, + "While expanding the reference 'syscall_ptr' in:" + ], + "start_col": 26, + "start_line": 156 + } + }, + "887": { + "accessible_scopes": [ + "starksheet.library", + "starksheet.library.Starksheet", + "starksheet.library.Starksheet.set_merkle_root" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 72, + "end_line": 156, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/starksheet/library.cairo" + }, + "parent_location": [ + { + "end_col": 62, + "end_line": 19, + "input_file": { + "filename": "autogen/starknet/storage_var/Starksheet_merkle_root/decl.cairo" + }, + "parent_location": [ + { + "end_col": 43, + "end_line": 159, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/starksheet/library.cairo" + }, + "start_col": 9, + "start_line": 159 + }, + "While trying to retrieve the implicit argument 'pedersen_ptr' in:" + ], + "start_col": 36, + "start_line": 19 + }, + "While expanding the reference 'pedersen_ptr' in:" + ], + "start_col": 46, + "start_line": 156 + } + }, + "888": { + "accessible_scopes": [ + "starksheet.library", + "starksheet.library.Starksheet", + "starksheet.library.Starksheet.set_merkle_root" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 89, + "end_line": 156, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/starksheet/library.cairo" + }, + "parent_location": [ + { + "end_col": 79, + "end_line": 19, + "input_file": { + "filename": "autogen/starknet/storage_var/Starksheet_merkle_root/decl.cairo" + }, + "parent_location": [ + { + "end_col": 43, + "end_line": 159, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/starksheet/library.cairo" + }, + "start_col": 9, + "start_line": 159 + }, + "While trying to retrieve the implicit argument 'range_check_ptr' in:" + ], + "start_col": 64, + "start_line": 19 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 74, + "start_line": 156 + } + }, + "889": { + "accessible_scopes": [ + "starksheet.library", + "starksheet.library.Starksheet", + "starksheet.library.Starksheet.set_merkle_root" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 19, + "end_line": 157, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/starksheet/library.cairo" + }, + "parent_location": [ + { + "end_col": 42, + "end_line": 159, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/starksheet/library.cairo" + }, + "start_col": 38, + "start_line": 159 + }, + "While expanding the reference 'hash' in:" + ], + "start_col": 9, + "start_line": 157 + } + }, + "890": { + "accessible_scopes": [ + "starksheet.library", + "starksheet.library.Starksheet", + "starksheet.library.Starksheet.set_merkle_root" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 43, + "end_line": 159, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/starksheet/library.cairo" + }, + "start_col": 9, + "start_line": 159 + } + }, + "892": { + "accessible_scopes": [ + "starksheet.library", + "starksheet.library.Starksheet", + "starksheet.library.Starksheet.set_merkle_root" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 19, + "end_line": 160, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/starksheet/library.cairo" + }, + "start_col": 9, + "start_line": 160 + } + }, + "893": { + "accessible_scopes": [ + "starksheet.library", + "starksheet.library._get_sheets_loop" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 22, + "end_line": 169, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/starksheet/library.cairo" + }, + "start_col": 9, + "start_line": 169 + } + }, + "894": { + "accessible_scopes": [ + "starksheet.library", + "starksheet.library._get_sheets_loop" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 7, + "end_line": 169, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/starksheet/library.cairo" + }, + "start_col": 5, + "start_line": 169 + } + }, + "896": { + "accessible_scopes": [ + "starksheet.library", + "starksheet.library._get_sheets_loop" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 23, + "end_line": 167, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/starksheet/library.cairo" + }, + "parent_location": [ + { + "end_col": 23, + "end_line": 167, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/starksheet/library.cairo" + }, + "parent_location": [ + { + "end_col": 19, + "end_line": 170, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/starksheet/library.cairo" + }, + "start_col": 9, + "start_line": 170 + }, + "While trying to retrieve the implicit argument 'syscall_ptr' in:" + ], + "start_col": 5, + "start_line": 167 + }, + "While expanding the reference 'syscall_ptr' in:" + ], + "start_col": 5, + "start_line": 167 + } + }, + "897": { + "accessible_scopes": [ + "starksheet.library", + "starksheet.library._get_sheets_loop" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 51, + "end_line": 167, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/starksheet/library.cairo" + }, + "parent_location": [ + { + "end_col": 51, + "end_line": 167, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/starksheet/library.cairo" + }, + "parent_location": [ + { + "end_col": 19, + "end_line": 170, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/starksheet/library.cairo" + }, + "start_col": 9, + "start_line": 170 + }, + "While trying to retrieve the implicit argument 'pedersen_ptr' in:" + ], + "start_col": 25, + "start_line": 167 + }, + "While expanding the reference 'pedersen_ptr' in:" + ], + "start_col": 25, + "start_line": 167 + } + }, + "898": { + "accessible_scopes": [ + "starksheet.library", + "starksheet.library._get_sheets_loop" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 68, + "end_line": 167, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/starksheet/library.cairo" + }, + "parent_location": [ + { + "end_col": 68, + "end_line": 167, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/starksheet/library.cairo" + }, + "parent_location": [ + { + "end_col": 19, + "end_line": 170, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/starksheet/library.cairo" + }, + "start_col": 9, + "start_line": 170 + }, + "While trying to retrieve the implicit argument 'range_check_ptr' in:" + ], + "start_col": 53, + "start_line": 167 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 53, + "start_line": 167 + } + }, + "899": { + "accessible_scopes": [ + "starksheet.library", + "starksheet.library._get_sheets_loop" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 80, + "end_line": 167, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/starksheet/library.cairo" + }, + "parent_location": [ + { + "end_col": 80, + "end_line": 167, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/starksheet/library.cairo" + }, + "parent_location": [ + { + "end_col": 19, + "end_line": 170, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/starksheet/library.cairo" + }, + "start_col": 9, + "start_line": 170 + }, + "While trying to retrieve the implicit argument 'stop' in:" + ], + "start_col": 70, + "start_line": 167 + }, + "While expanding the reference 'stop' in:" + ], + "start_col": 70, + "start_line": 167 + } + }, + "900": { + "accessible_scopes": [ + "starksheet.library", + "starksheet.library._get_sheets_loop" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 98, + "end_line": 167, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/starksheet/library.cairo" + }, + "parent_location": [ + { + "end_col": 98, + "end_line": 167, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/starksheet/library.cairo" + }, + "parent_location": [ + { + "end_col": 19, + "end_line": 170, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/starksheet/library.cairo" + }, + "start_col": 9, + "start_line": 170 + }, + "While trying to retrieve the implicit argument 'addresses' in:" + ], + "start_col": 82, + "start_line": 167 + }, + "While expanding the reference 'addresses' in:" + ], + "start_col": 82, + "start_line": 167 + } + }, + "901": { + "accessible_scopes": [ + "starksheet.library", + "starksheet.library._get_sheets_loop" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 19, + "end_line": 170, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/starksheet/library.cairo" + }, + "start_col": 9, + "start_line": 170 + } + }, + "902": { + "accessible_scopes": [ + "starksheet.library", + "starksheet.library._get_sheets_loop" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 23, + "end_line": 167, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/starksheet/library.cairo" + }, + "parent_location": [ + { + "end_col": 33, + "end_line": 13, + "input_file": { + "filename": "autogen/starknet/storage_var/Starksheet_sheets/decl.cairo" + }, + "parent_location": [ + { + "end_col": 50, + "end_line": 172, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/starksheet/library.cairo" + }, + "start_col": 21, + "start_line": 172 + }, + "While trying to retrieve the implicit argument 'syscall_ptr' in:" + ], + "start_col": 15, + "start_line": 13 + }, + "While expanding the reference 'syscall_ptr' in:" + ], + "start_col": 5, + "start_line": 167 + } + }, + "903": { + "accessible_scopes": [ + "starksheet.library", + "starksheet.library._get_sheets_loop" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 51, + "end_line": 167, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/starksheet/library.cairo" + }, + "parent_location": [ + { + "end_col": 61, + "end_line": 13, + "input_file": { + "filename": "autogen/starknet/storage_var/Starksheet_sheets/decl.cairo" + }, + "parent_location": [ + { + "end_col": 50, + "end_line": 172, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/starksheet/library.cairo" + }, + "start_col": 21, + "start_line": 172 + }, + "While trying to retrieve the implicit argument 'pedersen_ptr' in:" + ], + "start_col": 35, + "start_line": 13 + }, + "While expanding the reference 'pedersen_ptr' in:" + ], + "start_col": 25, + "start_line": 167 + } + }, + "904": { + "accessible_scopes": [ + "starksheet.library", + "starksheet.library._get_sheets_loop" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 68, + "end_line": 167, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/starksheet/library.cairo" + }, + "parent_location": [ + { + "end_col": 78, + "end_line": 13, + "input_file": { + "filename": "autogen/starknet/storage_var/Starksheet_sheets/decl.cairo" + }, + "parent_location": [ + { + "end_col": 50, + "end_line": 172, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/starksheet/library.cairo" + }, + "start_col": 21, + "start_line": 172 + }, + "While trying to retrieve the implicit argument 'range_check_ptr' in:" + ], + "start_col": 63, + "start_line": 13 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 53, + "start_line": 167 + } + }, + "905": { + "accessible_scopes": [ + "starksheet.library", + "starksheet.library._get_sheets_loop" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 14, + "end_line": 168, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/starksheet/library.cairo" + }, + "parent_location": [ + { + "end_col": 49, + "end_line": 172, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/starksheet/library.cairo" + }, + "start_col": 44, + "start_line": 172 + }, + "While expanding the reference 'index' in:" + ], + "start_col": 3, + "start_line": 168 + } + }, + "906": { + "accessible_scopes": [ + "starksheet.library", + "starksheet.library._get_sheets_loop" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 50, + "end_line": 172, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/starksheet/library.cairo" + }, + "start_col": 21, + "start_line": 172 + } + }, + "908": { + "accessible_scopes": [ + "starksheet.library", + "starksheet.library._get_sheets_loop" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 30, + "end_line": 173, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/starksheet/library.cairo" + }, + "start_col": 13, + "start_line": 173 + } + }, + "909": { + "accessible_scopes": [ + "starksheet.library", + "starksheet.library._get_sheets_loop" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 42, + "end_line": 173, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/starksheet/library.cairo" + }, + "start_col": 5, + "start_line": 173 + } + }, + "910": { + "accessible_scopes": [ + "starksheet.library", + "starksheet.library._get_sheets_loop" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 33, + "end_line": 13, + "input_file": { + "filename": "autogen/starknet/storage_var/Starksheet_sheets/decl.cairo" + }, + "parent_location": [ + { + "end_col": 50, + "end_line": 172, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/starksheet/library.cairo" + }, + "parent_location": [ + { + "end_col": 23, + "end_line": 167, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/starksheet/library.cairo" + }, + "parent_location": [ + { + "end_col": 39, + "end_line": 174, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/starksheet/library.cairo" + }, + "start_col": 12, + "start_line": 174 + }, + "While trying to retrieve the implicit argument 'syscall_ptr' in:" + ], + "start_col": 5, + "start_line": 167 + }, + "While expanding the reference 'syscall_ptr' in:" + ], + "start_col": 21, + "start_line": 172 + }, + "While trying to update the implicit return value 'syscall_ptr' in:" + ], + "start_col": 15, + "start_line": 13 + } + }, + "911": { + "accessible_scopes": [ + "starksheet.library", + "starksheet.library._get_sheets_loop" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 61, + "end_line": 13, + "input_file": { + "filename": "autogen/starknet/storage_var/Starksheet_sheets/decl.cairo" + }, + "parent_location": [ + { + "end_col": 50, + "end_line": 172, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/starksheet/library.cairo" + }, + "parent_location": [ + { + "end_col": 51, + "end_line": 167, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/starksheet/library.cairo" + }, + "parent_location": [ + { + "end_col": 39, + "end_line": 174, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/starksheet/library.cairo" + }, + "start_col": 12, + "start_line": 174 + }, + "While trying to retrieve the implicit argument 'pedersen_ptr' in:" + ], + "start_col": 25, + "start_line": 167 + }, + "While expanding the reference 'pedersen_ptr' in:" + ], + "start_col": 21, + "start_line": 172 + }, + "While trying to update the implicit return value 'pedersen_ptr' in:" + ], + "start_col": 35, + "start_line": 13 + } + }, + "912": { + "accessible_scopes": [ + "starksheet.library", + "starksheet.library._get_sheets_loop" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 78, + "end_line": 13, + "input_file": { + "filename": "autogen/starknet/storage_var/Starksheet_sheets/decl.cairo" + }, + "parent_location": [ + { + "end_col": 50, + "end_line": 172, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/starksheet/library.cairo" + }, + "parent_location": [ + { + "end_col": 68, + "end_line": 167, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/starksheet/library.cairo" + }, + "parent_location": [ + { + "end_col": 39, + "end_line": 174, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/starksheet/library.cairo" + }, + "start_col": 12, + "start_line": 174 + }, + "While trying to retrieve the implicit argument 'range_check_ptr' in:" + ], + "start_col": 53, + "start_line": 167 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 21, + "start_line": 172 + }, + "While trying to update the implicit return value 'range_check_ptr' in:" + ], + "start_col": 63, + "start_line": 13 + } + }, + "913": { + "accessible_scopes": [ + "starksheet.library", + "starksheet.library._get_sheets_loop" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 80, + "end_line": 167, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/starksheet/library.cairo" + }, + "parent_location": [ + { + "end_col": 80, + "end_line": 167, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/starksheet/library.cairo" + }, + "parent_location": [ + { + "end_col": 39, + "end_line": 174, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/starksheet/library.cairo" + }, + "start_col": 12, + "start_line": 174 + }, + "While trying to retrieve the implicit argument 'stop' in:" + ], + "start_col": 70, + "start_line": 167 + }, + "While expanding the reference 'stop' in:" + ], + "start_col": 70, + "start_line": 167 + } + }, + "914": { + "accessible_scopes": [ + "starksheet.library", + "starksheet.library._get_sheets_loop" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 98, + "end_line": 167, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/starksheet/library.cairo" + }, + "parent_location": [ + { + "end_col": 98, + "end_line": 167, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/starksheet/library.cairo" + }, + "parent_location": [ + { + "end_col": 39, + "end_line": 174, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/starksheet/library.cairo" + }, + "start_col": 12, + "start_line": 174 + }, + "While trying to retrieve the implicit argument 'addresses' in:" + ], + "start_col": 82, + "start_line": 167 + }, + "While expanding the reference 'addresses' in:" + ], + "start_col": 82, + "start_line": 167 + } + }, + "915": { + "accessible_scopes": [ + "starksheet.library", + "starksheet.library._get_sheets_loop" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 38, + "end_line": 174, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/starksheet/library.cairo" + }, + "start_col": 29, + "start_line": 174 + } + }, + "917": { + "accessible_scopes": [ + "starksheet.library", + "starksheet.library._get_sheets_loop" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 39, + "end_line": 174, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/starksheet/library.cairo" + }, + "start_col": 12, + "start_line": 174 + } + }, + "919": { + "accessible_scopes": [ + "starksheet.library", + "starksheet.library._get_sheets_loop" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 40, + "end_line": 174, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/starksheet/library.cairo" + }, + "start_col": 5, + "start_line": 174 + } + }, + "920": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.setSheetDefaultRendererAddress" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 23, + "end_line": 14, + "input_file": { + "filename": "src/starksheet/Starksheet.cairo" + }, + "parent_location": [ + { + "end_col": 46, + "end_line": 40, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/access/ownable/library.cairo" + }, + "parent_location": [ + { + "end_col": 32, + "end_line": 16, + "input_file": { + "filename": "src/starksheet/Starksheet.cairo" + }, + "start_col": 5, + "start_line": 16 + }, + "While trying to retrieve the implicit argument 'syscall_ptr' in:" + ], + "start_col": 28, + "start_line": 40 + }, + "While expanding the reference 'syscall_ptr' in:" + ], + "start_col": 5, + "start_line": 14 + } + }, + "921": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.setSheetDefaultRendererAddress" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 51, + "end_line": 14, + "input_file": { + "filename": "src/starksheet/Starksheet.cairo" + }, + "parent_location": [ + { + "end_col": 74, + "end_line": 40, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/access/ownable/library.cairo" + }, + "parent_location": [ + { + "end_col": 32, + "end_line": 16, + "input_file": { + "filename": "src/starksheet/Starksheet.cairo" + }, + "start_col": 5, + "start_line": 16 + }, + "While trying to retrieve the implicit argument 'pedersen_ptr' in:" + ], + "start_col": 48, + "start_line": 40 + }, + "While expanding the reference 'pedersen_ptr' in:" + ], + "start_col": 25, + "start_line": 14 + } + }, + "922": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.setSheetDefaultRendererAddress" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 68, + "end_line": 14, + "input_file": { + "filename": "src/starksheet/Starksheet.cairo" + }, + "parent_location": [ + { + "end_col": 91, + "end_line": 40, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/access/ownable/library.cairo" + }, + "parent_location": [ + { + "end_col": 32, + "end_line": 16, + "input_file": { + "filename": "src/starksheet/Starksheet.cairo" + }, + "start_col": 5, + "start_line": 16 + }, + "While trying to retrieve the implicit argument 'range_check_ptr' in:" + ], + "start_col": 76, + "start_line": 40 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 53, + "start_line": 14 + } + }, + "923": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.setSheetDefaultRendererAddress" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 32, + "end_line": 16, + "input_file": { + "filename": "src/starksheet/Starksheet.cairo" + }, + "start_col": 5, + "start_line": 16 + } + }, + "925": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.setSheetDefaultRendererAddress" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 16, + "end_line": 15, + "input_file": { + "filename": "src/starksheet/Starksheet.cairo" + }, + "parent_location": [ + { + "end_col": 58, + "end_line": 17, + "input_file": { + "filename": "src/starksheet/Starksheet.cairo" + }, + "start_col": 51, + "start_line": 17 + }, + "While expanding the reference 'address' in:" + ], + "start_col": 3, + "start_line": 15 + } + }, + "926": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.setSheetDefaultRendererAddress" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 59, + "end_line": 17, + "input_file": { + "filename": "src/starksheet/Starksheet.cairo" + }, + "start_col": 5, + "start_line": 17 + } + }, + "928": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.setSheetDefaultRendererAddress" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 15, + "end_line": 18, + "input_file": { + "filename": "src/starksheet/Starksheet.cairo" + }, + "start_col": 5, + "start_line": 18 + } + }, + "929": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.setSheetDefaultRendererAddress" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 40, + "end_line": 2, + "input_file": { + "filename": "autogen/starknet/arg_processor/d7daa544e246461a936b5ac82f5344c08a96429550ee8026ea086c8d8ed93006.cairo" + }, + "parent_location": [ + { + "end_col": 16, + "end_line": 15, + "input_file": { + "filename": "src/starksheet/Starksheet.cairo" + }, + "parent_location": [ + { + "end_col": 45, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/arg_processor/c31620b02d4d706f0542c989b2aadc01b0981d1f6a5933a8fe4937ace3d70d92.cairo" + }, + "parent_location": [ + { + "end_col": 36, + "end_line": 13, + "input_file": { + "filename": "src/starksheet/Starksheet.cairo" + }, + "parent_location": [ + { + "end_col": 57, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/arg_processor/01cba52f8515996bb9d7070bde81ff39281d096d7024a558efcba6e1fd2402cf.cairo" + }, + "parent_location": [ + { + "end_col": 36, + "end_line": 13, + "input_file": { + "filename": "src/starksheet/Starksheet.cairo" + }, + "start_col": 6, + "start_line": 13 + }, + "While handling calldata of" + ], + "start_col": 35, + "start_line": 1 + }, + "While expanding the reference '__calldata_actual_size' in:" + ], + "start_col": 6, + "start_line": 13 + }, + "While handling calldata of" + ], + "start_col": 31, + "start_line": 1 + }, + "While expanding the reference '__calldata_ptr' in:" + ], + "start_col": 3, + "start_line": 15 + }, + "While handling calldata argument 'address'" + ], + "start_col": 22, + "start_line": 2 + } + }, + "931": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.setSheetDefaultRendererAddress" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 58, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/arg_processor/01cba52f8515996bb9d7070bde81ff39281d096d7024a558efcba6e1fd2402cf.cairo" + }, + "parent_location": [ + { + "end_col": 36, + "end_line": 13, + "input_file": { + "filename": "src/starksheet/Starksheet.cairo" + }, + "start_col": 6, + "start_line": 13 + }, + "While handling calldata of" + ], + "start_col": 1, + "start_line": 1 + } + }, + "932": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.setSheetDefaultRendererAddress" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 64, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/setSheetDefaultRendererAddress/b2c52ca2d2a8fc8791a983086d8716c5eacd0c3d62934914d2286f84b98ff4cb.cairo" + }, + "parent_location": [ + { + "end_col": 23, + "end_line": 14, + "input_file": { + "filename": "src/starksheet/Starksheet.cairo" + }, + "parent_location": [ + { + "end_col": 55, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/setSheetDefaultRendererAddress/0659a254e8c454b3c657c5278489e4243b32c053e1167867ca4c539b977e7a36.cairo" + }, + "parent_location": [ + { + "end_col": 36, + "end_line": 13, + "input_file": { + "filename": "src/starksheet/Starksheet.cairo" + }, + "start_col": 6, + "start_line": 13 + }, + "While constructing the external wrapper for:" + ], + "start_col": 44, + "start_line": 1 + }, + "While expanding the reference 'syscall_ptr' in:" + ], + "start_col": 5, + "start_line": 14 + }, + "While constructing the external wrapper for:" + ], + "start_col": 19, + "start_line": 1 + } + }, + "933": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.setSheetDefaultRendererAddress" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 110, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/setSheetDefaultRendererAddress/9684a85e93c782014ca14293edea4eb2502039a5a7b6538ecd39c56faaf12529.cairo" + }, + "parent_location": [ + { + "end_col": 51, + "end_line": 14, + "input_file": { + "filename": "src/starksheet/Starksheet.cairo" + }, + "parent_location": [ + { + "end_col": 82, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/setSheetDefaultRendererAddress/0659a254e8c454b3c657c5278489e4243b32c053e1167867ca4c539b977e7a36.cairo" + }, + "parent_location": [ + { + "end_col": 36, + "end_line": 13, + "input_file": { + "filename": "src/starksheet/Starksheet.cairo" + }, + "start_col": 6, + "start_line": 13 + }, + "While constructing the external wrapper for:" + ], + "start_col": 70, + "start_line": 1 + }, + "While expanding the reference 'pedersen_ptr' in:" + ], + "start_col": 25, + "start_line": 14 + }, + "While constructing the external wrapper for:" + ], + "start_col": 20, + "start_line": 1 + } + }, + "934": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.setSheetDefaultRendererAddress" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 67, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/setSheetDefaultRendererAddress/741ea357d6336b0bed7bf0472425acd0311d543883b803388880e60a232040c7.cairo" + }, + "parent_location": [ + { + "end_col": 68, + "end_line": 14, + "input_file": { + "filename": "src/starksheet/Starksheet.cairo" + }, + "parent_location": [ + { + "end_col": 115, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/setSheetDefaultRendererAddress/0659a254e8c454b3c657c5278489e4243b32c053e1167867ca4c539b977e7a36.cairo" + }, + "parent_location": [ + { + "end_col": 36, + "end_line": 13, + "input_file": { + "filename": "src/starksheet/Starksheet.cairo" + }, + "start_col": 6, + "start_line": 13 + }, + "While constructing the external wrapper for:" + ], + "start_col": 100, + "start_line": 1 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 53, + "start_line": 14 + }, + "While constructing the external wrapper for:" + ], + "start_col": 23, + "start_line": 1 + } + }, + "935": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.setSheetDefaultRendererAddress" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 46, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/arg_processor/d7daa544e246461a936b5ac82f5344c08a96429550ee8026ea086c8d8ed93006.cairo" + }, + "parent_location": [ + { + "end_col": 16, + "end_line": 15, + "input_file": { + "filename": "src/starksheet/Starksheet.cairo" + }, + "parent_location": [ + { + "end_col": 147, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/setSheetDefaultRendererAddress/0659a254e8c454b3c657c5278489e4243b32c053e1167867ca4c539b977e7a36.cairo" + }, + "parent_location": [ + { + "end_col": 36, + "end_line": 13, + "input_file": { + "filename": "src/starksheet/Starksheet.cairo" + }, + "start_col": 6, + "start_line": 13 + }, + "While constructing the external wrapper for:" + ], + "start_col": 125, + "start_line": 1 + }, + "While expanding the reference '__calldata_arg_address' in:" + ], + "start_col": 3, + "start_line": 15 + }, + "While handling calldata argument 'address'" + ], + "start_col": 30, + "start_line": 1 + } + }, + "936": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.setSheetDefaultRendererAddress" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 36, + "end_line": 13, + "input_file": { + "filename": "src/starksheet/Starksheet.cairo" + }, + "start_col": 6, + "start_line": 13 + } + }, + "938": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.setSheetDefaultRendererAddress" + ], + "flow_tracking_data": null, + "hints": [ + { + "location": { + "end_col": 34, + "end_line": 2, + "input_file": { + "filename": "autogen/starknet/external/setSheetDefaultRendererAddress/0659a254e8c454b3c657c5278489e4243b32c053e1167867ca4c539b977e7a36.cairo" + }, + "parent_location": [ + { + "end_col": 36, + "end_line": 13, + "input_file": { + "filename": "src/starksheet/Starksheet.cairo" + }, + "start_col": 6, + "start_line": 13 + }, + "While constructing the external wrapper for:" + ], + "start_col": 1, + "start_line": 2 + }, + "n_prefix_newlines": 0 + } + ], + "inst": { + "end_col": 24, + "end_line": 3, + "input_file": { + "filename": "autogen/starknet/external/setSheetDefaultRendererAddress/0659a254e8c454b3c657c5278489e4243b32c053e1167867ca4c539b977e7a36.cairo" + }, + "parent_location": [ + { + "end_col": 36, + "end_line": 13, + "input_file": { + "filename": "src/starksheet/Starksheet.cairo" + }, + "start_col": 6, + "start_line": 13 + }, + "While constructing the external wrapper for:" + ], + "start_col": 1, + "start_line": 3 + } + }, + "940": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.setSheetDefaultRendererAddress" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 55, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/setSheetDefaultRendererAddress/0659a254e8c454b3c657c5278489e4243b32c053e1167867ca4c539b977e7a36.cairo" + }, + "parent_location": [ + { + "end_col": 36, + "end_line": 13, + "input_file": { + "filename": "src/starksheet/Starksheet.cairo" + }, + "parent_location": [ + { + "end_col": 20, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/setSheetDefaultRendererAddress/da17921a4e81c09e730800bbf23bfdbe5e9e6bfaedc59d80fbf62087fa43c27d.cairo" + }, + "parent_location": [ + { + "end_col": 36, + "end_line": 13, + "input_file": { + "filename": "src/starksheet/Starksheet.cairo" + }, + "start_col": 6, + "start_line": 13 + }, + "While constructing the external wrapper for:" + ], + "start_col": 9, + "start_line": 1 + }, + "While expanding the reference 'syscall_ptr' in:" + ], + "start_col": 6, + "start_line": 13 + }, + "While constructing the external wrapper for:" + ], + "start_col": 44, + "start_line": 1 + } + }, + "941": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.setSheetDefaultRendererAddress" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 82, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/setSheetDefaultRendererAddress/0659a254e8c454b3c657c5278489e4243b32c053e1167867ca4c539b977e7a36.cairo" + }, + "parent_location": [ + { + "end_col": 36, + "end_line": 13, + "input_file": { + "filename": "src/starksheet/Starksheet.cairo" + }, + "parent_location": [ + { + "end_col": 33, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/setSheetDefaultRendererAddress/da17921a4e81c09e730800bbf23bfdbe5e9e6bfaedc59d80fbf62087fa43c27d.cairo" + }, + "parent_location": [ + { + "end_col": 36, + "end_line": 13, + "input_file": { + "filename": "src/starksheet/Starksheet.cairo" + }, + "start_col": 6, + "start_line": 13 + }, + "While constructing the external wrapper for:" + ], + "start_col": 21, + "start_line": 1 + }, + "While expanding the reference 'pedersen_ptr' in:" + ], + "start_col": 6, + "start_line": 13 + }, + "While constructing the external wrapper for:" + ], + "start_col": 70, + "start_line": 1 + } + }, + "942": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.setSheetDefaultRendererAddress" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 115, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/setSheetDefaultRendererAddress/0659a254e8c454b3c657c5278489e4243b32c053e1167867ca4c539b977e7a36.cairo" + }, + "parent_location": [ + { + "end_col": 36, + "end_line": 13, + "input_file": { + "filename": "src/starksheet/Starksheet.cairo" + }, + "parent_location": [ + { + "end_col": 49, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/setSheetDefaultRendererAddress/da17921a4e81c09e730800bbf23bfdbe5e9e6bfaedc59d80fbf62087fa43c27d.cairo" + }, + "parent_location": [ + { + "end_col": 36, + "end_line": 13, + "input_file": { + "filename": "src/starksheet/Starksheet.cairo" + }, + "start_col": 6, + "start_line": 13 + }, + "While constructing the external wrapper for:" + ], + "start_col": 34, + "start_line": 1 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 6, + "start_line": 13 + }, + "While constructing the external wrapper for:" + ], + "start_col": 100, + "start_line": 1 + } + }, + "943": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.setSheetDefaultRendererAddress" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 21, + "end_line": 4, + "input_file": { + "filename": "autogen/starknet/external/setSheetDefaultRendererAddress/0659a254e8c454b3c657c5278489e4243b32c053e1167867ca4c539b977e7a36.cairo" + }, + "parent_location": [ + { + "end_col": 36, + "end_line": 13, + "input_file": { + "filename": "src/starksheet/Starksheet.cairo" + }, + "parent_location": [ + { + "end_col": 62, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/setSheetDefaultRendererAddress/da17921a4e81c09e730800bbf23bfdbe5e9e6bfaedc59d80fbf62087fa43c27d.cairo" + }, + "parent_location": [ + { + "end_col": 36, + "end_line": 13, + "input_file": { + "filename": "src/starksheet/Starksheet.cairo" + }, + "start_col": 6, + "start_line": 13 + }, + "While constructing the external wrapper for:" + ], + "start_col": 50, + "start_line": 1 + }, + "While expanding the reference 'retdata_size' in:" + ], + "start_col": 6, + "start_line": 13 + }, + "While constructing the external wrapper for:" + ], + "start_col": 20, + "start_line": 4 + } + }, + "945": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.setSheetDefaultRendererAddress" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 16, + "end_line": 3, + "input_file": { + "filename": "autogen/starknet/external/setSheetDefaultRendererAddress/0659a254e8c454b3c657c5278489e4243b32c053e1167867ca4c539b977e7a36.cairo" + }, + "parent_location": [ + { + "end_col": 36, + "end_line": 13, + "input_file": { + "filename": "src/starksheet/Starksheet.cairo" + }, + "parent_location": [ + { + "end_col": 70, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/setSheetDefaultRendererAddress/da17921a4e81c09e730800bbf23bfdbe5e9e6bfaedc59d80fbf62087fa43c27d.cairo" + }, + "parent_location": [ + { + "end_col": 36, + "end_line": 13, + "input_file": { + "filename": "src/starksheet/Starksheet.cairo" + }, + "start_col": 6, + "start_line": 13 + }, + "While constructing the external wrapper for:" + ], + "start_col": 63, + "start_line": 1 + }, + "While expanding the reference 'retdata' in:" + ], + "start_col": 6, + "start_line": 13 + }, + "While constructing the external wrapper for:" + ], + "start_col": 9, + "start_line": 3 + } + }, + "946": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.setSheetDefaultRendererAddress" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 72, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/setSheetDefaultRendererAddress/da17921a4e81c09e730800bbf23bfdbe5e9e6bfaedc59d80fbf62087fa43c27d.cairo" + }, + "parent_location": [ + { + "end_col": 36, + "end_line": 13, + "input_file": { + "filename": "src/starksheet/Starksheet.cairo" + }, + "start_col": 6, + "start_line": 13 + }, + "While constructing the external wrapper for:" + ], + "start_col": 1, + "start_line": 1 + } + }, + "947": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.getSheetDefaultRendererAddress" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 23, + "end_line": 23, + "input_file": { + "filename": "src/starksheet/Starksheet.cairo" + }, + "parent_location": [ + { + "end_col": 27, + "end_line": 138, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/starksheet/library.cairo" + }, + "parent_location": [ + { + "end_col": 59, + "end_line": 25, + "input_file": { + "filename": "src/starksheet/Starksheet.cairo" + }, + "start_col": 12, + "start_line": 25 + }, + "While trying to retrieve the implicit argument 'syscall_ptr' in:" + ], + "start_col": 9, + "start_line": 138 + }, + "While expanding the reference 'syscall_ptr' in:" + ], + "start_col": 5, + "start_line": 23 + } + }, + "948": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.getSheetDefaultRendererAddress" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 51, + "end_line": 23, + "input_file": { + "filename": "src/starksheet/Starksheet.cairo" + }, + "parent_location": [ + { + "end_col": 55, + "end_line": 138, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/starksheet/library.cairo" + }, + "parent_location": [ + { + "end_col": 59, + "end_line": 25, + "input_file": { + "filename": "src/starksheet/Starksheet.cairo" + }, + "start_col": 12, + "start_line": 25 + }, + "While trying to retrieve the implicit argument 'pedersen_ptr' in:" + ], + "start_col": 29, + "start_line": 138 + }, + "While expanding the reference 'pedersen_ptr' in:" + ], + "start_col": 25, + "start_line": 23 + } + }, + "949": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.getSheetDefaultRendererAddress" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 68, + "end_line": 23, + "input_file": { + "filename": "src/starksheet/Starksheet.cairo" + }, + "parent_location": [ + { + "end_col": 72, + "end_line": 138, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/starksheet/library.cairo" + }, + "parent_location": [ + { + "end_col": 59, + "end_line": 25, + "input_file": { + "filename": "src/starksheet/Starksheet.cairo" + }, + "start_col": 12, + "start_line": 25 + }, + "While trying to retrieve the implicit argument 'range_check_ptr' in:" + ], + "start_col": 57, + "start_line": 138 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 53, + "start_line": 23 + } + }, + "950": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.getSheetDefaultRendererAddress" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 59, + "end_line": 25, + "input_file": { + "filename": "src/starksheet/Starksheet.cairo" + }, + "start_col": 12, + "start_line": 25 + } + }, + "952": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.getSheetDefaultRendererAddress" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 60, + "end_line": 25, + "input_file": { + "filename": "src/starksheet/Starksheet.cairo" + }, + "start_col": 5, + "start_line": 25 + } + }, + "953": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.getSheetDefaultRendererAddress_encode_return" + ], + "flow_tracking_data": null, + "hints": [ + { + "location": { + "end_col": 38, + "end_line": 3, + "input_file": { + "filename": "autogen/starknet/external/return/getSheetDefaultRendererAddress/33de61d4cf4da09dad78d169bc77808b852554c6d416e74af8ca97f600712512.cairo" + }, + "parent_location": [ + { + "end_col": 36, + "end_line": 22, + "input_file": { + "filename": "src/starksheet/Starksheet.cairo" + }, + "start_col": 6, + "start_line": 22 + }, + "While handling return value of" + ], + "start_col": 5, + "start_line": 3 + }, + "n_prefix_newlines": 0 + } + ], + "inst": { + "end_col": 18, + "end_line": 4, + "input_file": { + "filename": "autogen/starknet/external/return/getSheetDefaultRendererAddress/33de61d4cf4da09dad78d169bc77808b852554c6d416e74af8ca97f600712512.cairo" + }, + "parent_location": [ + { + "end_col": 36, + "end_line": 22, + "input_file": { + "filename": "src/starksheet/Starksheet.cairo" + }, + "start_col": 6, + "start_line": 22 + }, + "While handling return value of" + ], + "start_col": 5, + "start_line": 4 + } + }, + "955": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.getSheetDefaultRendererAddress_encode_return" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 49, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/arg_processor/10f4ffaf96982a2fff2ff72dc2d3b1a8878257148aab4051a8f2ef7f16687f01.cairo" + }, + "parent_location": [ + { + "end_col": 22, + "end_line": 24, + "input_file": { + "filename": "src/starksheet/Starksheet.cairo" + }, + "start_col": 9, + "start_line": 24 + }, + "While handling return value 'address'" + ], + "start_col": 1, + "start_line": 1 + } + }, + "956": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.getSheetDefaultRendererAddress_encode_return" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 48, + "end_line": 2, + "input_file": { + "filename": "autogen/starknet/arg_processor/10f4ffaf96982a2fff2ff72dc2d3b1a8878257148aab4051a8f2ef7f16687f01.cairo" + }, + "parent_location": [ + { + "end_col": 22, + "end_line": 24, + "input_file": { + "filename": "src/starksheet/Starksheet.cairo" + }, + "parent_location": [ + { + "end_col": 36, + "end_line": 11, + "input_file": { + "filename": "autogen/starknet/external/return/getSheetDefaultRendererAddress/33de61d4cf4da09dad78d169bc77808b852554c6d416e74af8ca97f600712512.cairo" + }, + "parent_location": [ + { + "end_col": 36, + "end_line": 22, + "input_file": { + "filename": "src/starksheet/Starksheet.cairo" + }, + "start_col": 6, + "start_line": 22 + }, + "While handling return value of" + ], + "start_col": 18, + "start_line": 11 + }, + "While expanding the reference '__return_value_ptr' in:" + ], + "start_col": 9, + "start_line": 24 + }, + "While handling return value 'address'" + ], + "start_col": 26, + "start_line": 2 + } + }, + "958": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.getSheetDefaultRendererAddress_encode_return" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 94, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/return/getSheetDefaultRendererAddress/33de61d4cf4da09dad78d169bc77808b852554c6d416e74af8ca97f600712512.cairo" + }, + "parent_location": [ + { + "end_col": 36, + "end_line": 22, + "input_file": { + "filename": "src/starksheet/Starksheet.cairo" + }, + "parent_location": [ + { + "end_col": 40, + "end_line": 10, + "input_file": { + "filename": "autogen/starknet/external/return/getSheetDefaultRendererAddress/33de61d4cf4da09dad78d169bc77808b852554c6d416e74af8ca97f600712512.cairo" + }, + "parent_location": [ + { + "end_col": 36, + "end_line": 22, + "input_file": { + "filename": "src/starksheet/Starksheet.cairo" + }, + "start_col": 6, + "start_line": 22 + }, + "While handling return value of" + ], + "start_col": 25, + "start_line": 10 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 6, + "start_line": 22 + }, + "While handling return value of" + ], + "start_col": 79, + "start_line": 1 + } + }, + "959": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.getSheetDefaultRendererAddress_encode_return" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 63, + "end_line": 11, + "input_file": { + "filename": "autogen/starknet/external/return/getSheetDefaultRendererAddress/33de61d4cf4da09dad78d169bc77808b852554c6d416e74af8ca97f600712512.cairo" + }, + "parent_location": [ + { + "end_col": 36, + "end_line": 22, + "input_file": { + "filename": "src/starksheet/Starksheet.cairo" + }, + "start_col": 6, + "start_line": 22 + }, + "While handling return value of" + ], + "start_col": 18, + "start_line": 11 + } + }, + "960": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.getSheetDefaultRendererAddress_encode_return" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 35, + "end_line": 5, + "input_file": { + "filename": "autogen/starknet/external/return/getSheetDefaultRendererAddress/33de61d4cf4da09dad78d169bc77808b852554c6d416e74af8ca97f600712512.cairo" + }, + "parent_location": [ + { + "end_col": 36, + "end_line": 22, + "input_file": { + "filename": "src/starksheet/Starksheet.cairo" + }, + "parent_location": [ + { + "end_col": 38, + "end_line": 12, + "input_file": { + "filename": "autogen/starknet/external/return/getSheetDefaultRendererAddress/33de61d4cf4da09dad78d169bc77808b852554c6d416e74af8ca97f600712512.cairo" + }, + "parent_location": [ + { + "end_col": 36, + "end_line": 22, + "input_file": { + "filename": "src/starksheet/Starksheet.cairo" + }, + "start_col": 6, + "start_line": 22 + }, + "While handling return value of" + ], + "start_col": 14, + "start_line": 12 + }, + "While expanding the reference '__return_value_ptr_start' in:" + ], + "start_col": 6, + "start_line": 22 + }, + "While handling return value of" + ], + "start_col": 11, + "start_line": 5 + } + }, + "961": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.getSheetDefaultRendererAddress_encode_return" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 40, + "end_line": 12, + "input_file": { + "filename": "autogen/starknet/external/return/getSheetDefaultRendererAddress/33de61d4cf4da09dad78d169bc77808b852554c6d416e74af8ca97f600712512.cairo" + }, + "parent_location": [ + { + "end_col": 36, + "end_line": 22, + "input_file": { + "filename": "src/starksheet/Starksheet.cairo" + }, + "start_col": 6, + "start_line": 22 + }, + "While handling return value of" + ], + "start_col": 5, + "start_line": 9 + } + }, + "962": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.getSheetDefaultRendererAddress" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 58, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/arg_processor/01cba52f8515996bb9d7070bde81ff39281d096d7024a558efcba6e1fd2402cf.cairo" + }, + "parent_location": [ + { + "end_col": 36, + "end_line": 22, + "input_file": { + "filename": "src/starksheet/Starksheet.cairo" + }, + "start_col": 6, + "start_line": 22 + }, + "While handling calldata of" + ], + "start_col": 1, + "start_line": 1 + } + }, + "963": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.getSheetDefaultRendererAddress" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 64, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/getSheetDefaultRendererAddress/b2c52ca2d2a8fc8791a983086d8716c5eacd0c3d62934914d2286f84b98ff4cb.cairo" + }, + "parent_location": [ + { + "end_col": 23, + "end_line": 23, + "input_file": { + "filename": "src/starksheet/Starksheet.cairo" + }, + "parent_location": [ + { + "end_col": 55, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/getSheetDefaultRendererAddress/1a541aa0959ce4f507f6fe69f182c70918c1d2f85e42bf41688170561275cbca.cairo" + }, + "parent_location": [ + { + "end_col": 36, + "end_line": 22, + "input_file": { + "filename": "src/starksheet/Starksheet.cairo" + }, + "start_col": 6, + "start_line": 22 + }, + "While constructing the external wrapper for:" + ], + "start_col": 44, + "start_line": 1 + }, + "While expanding the reference 'syscall_ptr' in:" + ], + "start_col": 5, + "start_line": 23 + }, + "While constructing the external wrapper for:" + ], + "start_col": 19, + "start_line": 1 + } + }, + "964": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.getSheetDefaultRendererAddress" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 110, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/getSheetDefaultRendererAddress/9684a85e93c782014ca14293edea4eb2502039a5a7b6538ecd39c56faaf12529.cairo" + }, + "parent_location": [ + { + "end_col": 51, + "end_line": 23, + "input_file": { + "filename": "src/starksheet/Starksheet.cairo" + }, + "parent_location": [ + { + "end_col": 82, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/getSheetDefaultRendererAddress/1a541aa0959ce4f507f6fe69f182c70918c1d2f85e42bf41688170561275cbca.cairo" + }, + "parent_location": [ + { + "end_col": 36, + "end_line": 22, + "input_file": { + "filename": "src/starksheet/Starksheet.cairo" + }, + "start_col": 6, + "start_line": 22 + }, + "While constructing the external wrapper for:" + ], + "start_col": 70, + "start_line": 1 + }, + "While expanding the reference 'pedersen_ptr' in:" + ], + "start_col": 25, + "start_line": 23 + }, + "While constructing the external wrapper for:" + ], + "start_col": 20, + "start_line": 1 + } + }, + "965": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.getSheetDefaultRendererAddress" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 67, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/getSheetDefaultRendererAddress/741ea357d6336b0bed7bf0472425acd0311d543883b803388880e60a232040c7.cairo" + }, + "parent_location": [ + { + "end_col": 68, + "end_line": 23, + "input_file": { + "filename": "src/starksheet/Starksheet.cairo" + }, + "parent_location": [ + { + "end_col": 115, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/getSheetDefaultRendererAddress/1a541aa0959ce4f507f6fe69f182c70918c1d2f85e42bf41688170561275cbca.cairo" + }, + "parent_location": [ + { + "end_col": 36, + "end_line": 22, + "input_file": { + "filename": "src/starksheet/Starksheet.cairo" + }, + "start_col": 6, + "start_line": 22 + }, + "While constructing the external wrapper for:" + ], + "start_col": 100, + "start_line": 1 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 53, + "start_line": 23 + }, + "While constructing the external wrapper for:" + ], + "start_col": 23, + "start_line": 1 + } + }, + "966": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.getSheetDefaultRendererAddress" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 36, + "end_line": 22, + "input_file": { + "filename": "src/starksheet/Starksheet.cairo" + }, + "start_col": 6, + "start_line": 22 + } + }, + "968": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.getSheetDefaultRendererAddress" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 115, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/getSheetDefaultRendererAddress/1a541aa0959ce4f507f6fe69f182c70918c1d2f85e42bf41688170561275cbca.cairo" + }, + "parent_location": [ + { + "end_col": 36, + "end_line": 22, + "input_file": { + "filename": "src/starksheet/Starksheet.cairo" + }, + "parent_location": [ + { + "end_col": 119, + "end_line": 2, + "input_file": { + "filename": "autogen/starknet/external/getSheetDefaultRendererAddress/1a541aa0959ce4f507f6fe69f182c70918c1d2f85e42bf41688170561275cbca.cairo" + }, + "parent_location": [ + { + "end_col": 36, + "end_line": 22, + "input_file": { + "filename": "src/starksheet/Starksheet.cairo" + }, + "start_col": 6, + "start_line": 22 + }, + "While constructing the external wrapper for:" + ], + "start_col": 104, + "start_line": 2 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 6, + "start_line": 22 + }, + "While constructing the external wrapper for:" + ], + "start_col": 100, + "start_line": 1 + } + }, + "969": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.getSheetDefaultRendererAddress" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 120, + "end_line": 2, + "input_file": { + "filename": "autogen/starknet/external/getSheetDefaultRendererAddress/1a541aa0959ce4f507f6fe69f182c70918c1d2f85e42bf41688170561275cbca.cairo" + }, + "parent_location": [ + { + "end_col": 36, + "end_line": 22, + "input_file": { + "filename": "src/starksheet/Starksheet.cairo" + }, + "start_col": 6, + "start_line": 22 + }, + "While constructing the external wrapper for:" + ], + "start_col": 48, + "start_line": 2 + } + }, + "971": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.getSheetDefaultRendererAddress" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 55, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/getSheetDefaultRendererAddress/1a541aa0959ce4f507f6fe69f182c70918c1d2f85e42bf41688170561275cbca.cairo" + }, + "parent_location": [ + { + "end_col": 36, + "end_line": 22, + "input_file": { + "filename": "src/starksheet/Starksheet.cairo" + }, + "parent_location": [ + { + "end_col": 20, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/getSheetDefaultRendererAddress/da17921a4e81c09e730800bbf23bfdbe5e9e6bfaedc59d80fbf62087fa43c27d.cairo" + }, + "parent_location": [ + { + "end_col": 36, + "end_line": 22, + "input_file": { + "filename": "src/starksheet/Starksheet.cairo" + }, + "start_col": 6, + "start_line": 22 + }, + "While constructing the external wrapper for:" + ], + "start_col": 9, + "start_line": 1 + }, + "While expanding the reference 'syscall_ptr' in:" + ], + "start_col": 6, + "start_line": 22 + }, + "While constructing the external wrapper for:" + ], + "start_col": 44, + "start_line": 1 + } + }, + "972": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.getSheetDefaultRendererAddress" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 82, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/getSheetDefaultRendererAddress/1a541aa0959ce4f507f6fe69f182c70918c1d2f85e42bf41688170561275cbca.cairo" + }, + "parent_location": [ + { + "end_col": 36, + "end_line": 22, + "input_file": { + "filename": "src/starksheet/Starksheet.cairo" + }, + "parent_location": [ + { + "end_col": 33, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/getSheetDefaultRendererAddress/da17921a4e81c09e730800bbf23bfdbe5e9e6bfaedc59d80fbf62087fa43c27d.cairo" + }, + "parent_location": [ + { + "end_col": 36, + "end_line": 22, + "input_file": { + "filename": "src/starksheet/Starksheet.cairo" + }, + "start_col": 6, + "start_line": 22 + }, + "While constructing the external wrapper for:" + ], + "start_col": 21, + "start_line": 1 + }, + "While expanding the reference 'pedersen_ptr' in:" + ], + "start_col": 6, + "start_line": 22 + }, + "While constructing the external wrapper for:" + ], + "start_col": 70, + "start_line": 1 + } + }, + "973": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.getSheetDefaultRendererAddress" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 21, + "end_line": 2, + "input_file": { + "filename": "autogen/starknet/external/getSheetDefaultRendererAddress/1a541aa0959ce4f507f6fe69f182c70918c1d2f85e42bf41688170561275cbca.cairo" + }, + "parent_location": [ + { + "end_col": 36, + "end_line": 22, + "input_file": { + "filename": "src/starksheet/Starksheet.cairo" + }, + "parent_location": [ + { + "end_col": 49, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/getSheetDefaultRendererAddress/da17921a4e81c09e730800bbf23bfdbe5e9e6bfaedc59d80fbf62087fa43c27d.cairo" + }, + "parent_location": [ + { + "end_col": 36, + "end_line": 22, + "input_file": { + "filename": "src/starksheet/Starksheet.cairo" + }, + "start_col": 6, + "start_line": 22 + }, + "While constructing the external wrapper for:" + ], + "start_col": 34, + "start_line": 1 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 6, + "start_line": 22 + }, + "While constructing the external wrapper for:" + ], + "start_col": 6, + "start_line": 2 + } + }, + "974": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.getSheetDefaultRendererAddress" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 35, + "end_line": 2, + "input_file": { + "filename": "autogen/starknet/external/getSheetDefaultRendererAddress/1a541aa0959ce4f507f6fe69f182c70918c1d2f85e42bf41688170561275cbca.cairo" + }, + "parent_location": [ + { + "end_col": 36, + "end_line": 22, + "input_file": { + "filename": "src/starksheet/Starksheet.cairo" + }, + "parent_location": [ + { + "end_col": 62, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/getSheetDefaultRendererAddress/da17921a4e81c09e730800bbf23bfdbe5e9e6bfaedc59d80fbf62087fa43c27d.cairo" + }, + "parent_location": [ + { + "end_col": 36, + "end_line": 22, + "input_file": { + "filename": "src/starksheet/Starksheet.cairo" + }, + "start_col": 6, + "start_line": 22 + }, + "While constructing the external wrapper for:" + ], + "start_col": 50, + "start_line": 1 + }, + "While expanding the reference 'retdata_size' in:" + ], + "start_col": 6, + "start_line": 22 + }, + "While constructing the external wrapper for:" + ], + "start_col": 23, + "start_line": 2 + } + }, + "975": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.getSheetDefaultRendererAddress" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 44, + "end_line": 2, + "input_file": { + "filename": "autogen/starknet/external/getSheetDefaultRendererAddress/1a541aa0959ce4f507f6fe69f182c70918c1d2f85e42bf41688170561275cbca.cairo" + }, + "parent_location": [ + { + "end_col": 36, + "end_line": 22, + "input_file": { + "filename": "src/starksheet/Starksheet.cairo" + }, + "parent_location": [ + { + "end_col": 70, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/getSheetDefaultRendererAddress/da17921a4e81c09e730800bbf23bfdbe5e9e6bfaedc59d80fbf62087fa43c27d.cairo" + }, + "parent_location": [ + { + "end_col": 36, + "end_line": 22, + "input_file": { + "filename": "src/starksheet/Starksheet.cairo" + }, + "start_col": 6, + "start_line": 22 + }, + "While constructing the external wrapper for:" + ], + "start_col": 63, + "start_line": 1 + }, + "While expanding the reference 'retdata' in:" + ], + "start_col": 6, + "start_line": 22 + }, + "While constructing the external wrapper for:" + ], + "start_col": 37, + "start_line": 2 + } + }, + "976": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.getSheetDefaultRendererAddress" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 72, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/getSheetDefaultRendererAddress/da17921a4e81c09e730800bbf23bfdbe5e9e6bfaedc59d80fbf62087fa43c27d.cairo" + }, + "parent_location": [ + { + "end_col": 36, + "end_line": 22, + "input_file": { + "filename": "src/starksheet/Starksheet.cairo" + }, + "start_col": 6, + "start_line": 22 + }, + "While constructing the external wrapper for:" + ], + "start_col": 1, + "start_line": 1 + } + }, + "977": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.setSheetClassHash" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 42, + "end_line": 29, + "input_file": { + "filename": "src/starksheet/Starksheet.cairo" + }, + "parent_location": [ + { + "end_col": 46, + "end_line": 40, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/access/ownable/library.cairo" + }, + "parent_location": [ + { + "end_col": 32, + "end_line": 32, + "input_file": { + "filename": "src/starksheet/Starksheet.cairo" + }, + "start_col": 5, + "start_line": 32 + }, + "While trying to retrieve the implicit argument 'syscall_ptr' in:" + ], + "start_col": 28, + "start_line": 40 + }, + "While expanding the reference 'syscall_ptr' in:" + ], + "start_col": 24, + "start_line": 29 + } + }, + "978": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.setSheetClassHash" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 70, + "end_line": 29, + "input_file": { + "filename": "src/starksheet/Starksheet.cairo" + }, + "parent_location": [ + { + "end_col": 74, + "end_line": 40, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/access/ownable/library.cairo" + }, + "parent_location": [ + { + "end_col": 32, + "end_line": 32, + "input_file": { + "filename": "src/starksheet/Starksheet.cairo" + }, + "start_col": 5, + "start_line": 32 + }, + "While trying to retrieve the implicit argument 'pedersen_ptr' in:" + ], + "start_col": 48, + "start_line": 40 + }, + "While expanding the reference 'pedersen_ptr' in:" + ], + "start_col": 44, + "start_line": 29 + } + }, + "979": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.setSheetClassHash" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 87, + "end_line": 29, + "input_file": { + "filename": "src/starksheet/Starksheet.cairo" + }, + "parent_location": [ + { + "end_col": 91, + "end_line": 40, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/access/ownable/library.cairo" + }, + "parent_location": [ + { + "end_col": 32, + "end_line": 32, + "input_file": { + "filename": "src/starksheet/Starksheet.cairo" + }, + "start_col": 5, + "start_line": 32 + }, + "While trying to retrieve the implicit argument 'range_check_ptr' in:" + ], + "start_col": 76, + "start_line": 40 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 72, + "start_line": 29 + } + }, + "980": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.setSheetClassHash" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 32, + "end_line": 32, + "input_file": { + "filename": "src/starksheet/Starksheet.cairo" + }, + "start_col": 5, + "start_line": 32 + } + }, + "982": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.setSheetClassHash" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 15, + "end_line": 30, + "input_file": { + "filename": "src/starksheet/Starksheet.cairo" + }, + "parent_location": [ + { + "end_col": 41, + "end_line": 33, + "input_file": { + "filename": "src/starksheet/Starksheet.cairo" + }, + "start_col": 37, + "start_line": 33 + }, + "While expanding the reference 'hash' in:" + ], + "start_col": 5, + "start_line": 30 + } + }, + "983": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.setSheetClassHash" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 42, + "end_line": 33, + "input_file": { + "filename": "src/starksheet/Starksheet.cairo" + }, + "start_col": 5, + "start_line": 33 + } + }, + "985": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.setSheetClassHash" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 15, + "end_line": 34, + "input_file": { + "filename": "src/starksheet/Starksheet.cairo" + }, + "start_col": 5, + "start_line": 34 + } + }, + "986": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.setSheetClassHash" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 40, + "end_line": 2, + "input_file": { + "filename": "autogen/starknet/arg_processor/b07888c526f97925bd7037f4dcde235d5ffb2d92354828348c217678c2166713.cairo" + }, + "parent_location": [ + { + "end_col": 15, + "end_line": 30, + "input_file": { + "filename": "src/starksheet/Starksheet.cairo" + }, + "parent_location": [ + { + "end_col": 45, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/arg_processor/c31620b02d4d706f0542c989b2aadc01b0981d1f6a5933a8fe4937ace3d70d92.cairo" + }, + "parent_location": [ + { + "end_col": 23, + "end_line": 29, + "input_file": { + "filename": "src/starksheet/Starksheet.cairo" + }, + "parent_location": [ + { + "end_col": 57, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/arg_processor/01cba52f8515996bb9d7070bde81ff39281d096d7024a558efcba6e1fd2402cf.cairo" + }, + "parent_location": [ + { + "end_col": 23, + "end_line": 29, + "input_file": { + "filename": "src/starksheet/Starksheet.cairo" + }, + "start_col": 6, + "start_line": 29 + }, + "While handling calldata of" + ], + "start_col": 35, + "start_line": 1 + }, + "While expanding the reference '__calldata_actual_size' in:" + ], + "start_col": 6, + "start_line": 29 + }, + "While handling calldata of" + ], + "start_col": 31, + "start_line": 1 + }, + "While expanding the reference '__calldata_ptr' in:" + ], + "start_col": 5, + "start_line": 30 + }, + "While handling calldata argument 'hash'" + ], + "start_col": 22, + "start_line": 2 + } + }, + "988": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.setSheetClassHash" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 58, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/arg_processor/01cba52f8515996bb9d7070bde81ff39281d096d7024a558efcba6e1fd2402cf.cairo" + }, + "parent_location": [ + { + "end_col": 23, + "end_line": 29, + "input_file": { + "filename": "src/starksheet/Starksheet.cairo" + }, + "start_col": 6, + "start_line": 29 + }, + "While handling calldata of" + ], + "start_col": 1, + "start_line": 1 + } + }, + "989": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.setSheetClassHash" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 64, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/setSheetClassHash/b2c52ca2d2a8fc8791a983086d8716c5eacd0c3d62934914d2286f84b98ff4cb.cairo" + }, + "parent_location": [ + { + "end_col": 42, + "end_line": 29, + "input_file": { + "filename": "src/starksheet/Starksheet.cairo" + }, + "parent_location": [ + { + "end_col": 55, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/setSheetClassHash/8ac52e19415f3bb85cf1477c90297e8dbedd2bf68d6a8678e8bf3e514b81cbb7.cairo" + }, + "parent_location": [ + { + "end_col": 23, + "end_line": 29, + "input_file": { + "filename": "src/starksheet/Starksheet.cairo" + }, + "start_col": 6, + "start_line": 29 + }, + "While constructing the external wrapper for:" + ], + "start_col": 44, + "start_line": 1 + }, + "While expanding the reference 'syscall_ptr' in:" + ], + "start_col": 24, + "start_line": 29 + }, + "While constructing the external wrapper for:" + ], + "start_col": 19, + "start_line": 1 + } + }, + "990": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.setSheetClassHash" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 110, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/setSheetClassHash/9684a85e93c782014ca14293edea4eb2502039a5a7b6538ecd39c56faaf12529.cairo" + }, + "parent_location": [ + { + "end_col": 70, + "end_line": 29, + "input_file": { + "filename": "src/starksheet/Starksheet.cairo" + }, + "parent_location": [ + { + "end_col": 82, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/setSheetClassHash/8ac52e19415f3bb85cf1477c90297e8dbedd2bf68d6a8678e8bf3e514b81cbb7.cairo" + }, + "parent_location": [ + { + "end_col": 23, + "end_line": 29, + "input_file": { + "filename": "src/starksheet/Starksheet.cairo" + }, + "start_col": 6, + "start_line": 29 + }, + "While constructing the external wrapper for:" + ], + "start_col": 70, + "start_line": 1 + }, + "While expanding the reference 'pedersen_ptr' in:" + ], + "start_col": 44, + "start_line": 29 + }, + "While constructing the external wrapper for:" + ], + "start_col": 20, + "start_line": 1 + } + }, + "991": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.setSheetClassHash" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 67, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/setSheetClassHash/741ea357d6336b0bed7bf0472425acd0311d543883b803388880e60a232040c7.cairo" + }, + "parent_location": [ + { + "end_col": 87, + "end_line": 29, + "input_file": { + "filename": "src/starksheet/Starksheet.cairo" + }, + "parent_location": [ + { + "end_col": 115, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/setSheetClassHash/8ac52e19415f3bb85cf1477c90297e8dbedd2bf68d6a8678e8bf3e514b81cbb7.cairo" + }, + "parent_location": [ + { + "end_col": 23, + "end_line": 29, + "input_file": { + "filename": "src/starksheet/Starksheet.cairo" + }, + "start_col": 6, + "start_line": 29 + }, + "While constructing the external wrapper for:" + ], + "start_col": 100, + "start_line": 1 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 72, + "start_line": 29 + }, + "While constructing the external wrapper for:" + ], + "start_col": 23, + "start_line": 1 + } + }, + "992": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.setSheetClassHash" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 43, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/arg_processor/b07888c526f97925bd7037f4dcde235d5ffb2d92354828348c217678c2166713.cairo" + }, + "parent_location": [ + { + "end_col": 15, + "end_line": 30, + "input_file": { + "filename": "src/starksheet/Starksheet.cairo" + }, + "parent_location": [ + { + "end_col": 141, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/setSheetClassHash/8ac52e19415f3bb85cf1477c90297e8dbedd2bf68d6a8678e8bf3e514b81cbb7.cairo" + }, + "parent_location": [ + { + "end_col": 23, + "end_line": 29, + "input_file": { + "filename": "src/starksheet/Starksheet.cairo" + }, + "start_col": 6, + "start_line": 29 + }, + "While constructing the external wrapper for:" + ], + "start_col": 122, + "start_line": 1 + }, + "While expanding the reference '__calldata_arg_hash' in:" + ], + "start_col": 5, + "start_line": 30 + }, + "While handling calldata argument 'hash'" + ], + "start_col": 27, + "start_line": 1 + } + }, + "993": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.setSheetClassHash" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 23, + "end_line": 29, + "input_file": { + "filename": "src/starksheet/Starksheet.cairo" + }, + "start_col": 6, + "start_line": 29 + } + }, + "995": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.setSheetClassHash" + ], + "flow_tracking_data": null, + "hints": [ + { + "location": { + "end_col": 34, + "end_line": 2, + "input_file": { + "filename": "autogen/starknet/external/setSheetClassHash/8ac52e19415f3bb85cf1477c90297e8dbedd2bf68d6a8678e8bf3e514b81cbb7.cairo" + }, + "parent_location": [ + { + "end_col": 23, + "end_line": 29, + "input_file": { + "filename": "src/starksheet/Starksheet.cairo" + }, + "start_col": 6, + "start_line": 29 + }, + "While constructing the external wrapper for:" + ], + "start_col": 1, + "start_line": 2 + }, + "n_prefix_newlines": 0 + } + ], + "inst": { + "end_col": 24, + "end_line": 3, + "input_file": { + "filename": "autogen/starknet/external/setSheetClassHash/8ac52e19415f3bb85cf1477c90297e8dbedd2bf68d6a8678e8bf3e514b81cbb7.cairo" + }, + "parent_location": [ + { + "end_col": 23, + "end_line": 29, + "input_file": { + "filename": "src/starksheet/Starksheet.cairo" + }, + "start_col": 6, + "start_line": 29 + }, + "While constructing the external wrapper for:" + ], + "start_col": 1, + "start_line": 3 + } + }, + "997": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.setSheetClassHash" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 55, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/setSheetClassHash/8ac52e19415f3bb85cf1477c90297e8dbedd2bf68d6a8678e8bf3e514b81cbb7.cairo" + }, + "parent_location": [ + { + "end_col": 23, + "end_line": 29, + "input_file": { + "filename": "src/starksheet/Starksheet.cairo" + }, + "parent_location": [ + { + "end_col": 20, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/setSheetClassHash/da17921a4e81c09e730800bbf23bfdbe5e9e6bfaedc59d80fbf62087fa43c27d.cairo" + }, + "parent_location": [ + { + "end_col": 23, + "end_line": 29, + "input_file": { + "filename": "src/starksheet/Starksheet.cairo" + }, + "start_col": 6, + "start_line": 29 + }, + "While constructing the external wrapper for:" + ], + "start_col": 9, + "start_line": 1 + }, + "While expanding the reference 'syscall_ptr' in:" + ], + "start_col": 6, + "start_line": 29 + }, + "While constructing the external wrapper for:" + ], + "start_col": 44, + "start_line": 1 + } + }, + "998": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.setSheetClassHash" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 82, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/setSheetClassHash/8ac52e19415f3bb85cf1477c90297e8dbedd2bf68d6a8678e8bf3e514b81cbb7.cairo" + }, + "parent_location": [ + { + "end_col": 23, + "end_line": 29, + "input_file": { + "filename": "src/starksheet/Starksheet.cairo" + }, + "parent_location": [ + { + "end_col": 33, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/setSheetClassHash/da17921a4e81c09e730800bbf23bfdbe5e9e6bfaedc59d80fbf62087fa43c27d.cairo" + }, + "parent_location": [ + { + "end_col": 23, + "end_line": 29, + "input_file": { + "filename": "src/starksheet/Starksheet.cairo" + }, + "start_col": 6, + "start_line": 29 + }, + "While constructing the external wrapper for:" + ], + "start_col": 21, + "start_line": 1 + }, + "While expanding the reference 'pedersen_ptr' in:" + ], + "start_col": 6, + "start_line": 29 + }, + "While constructing the external wrapper for:" + ], + "start_col": 70, + "start_line": 1 + } + }, + "999": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.setSheetClassHash" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 115, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/setSheetClassHash/8ac52e19415f3bb85cf1477c90297e8dbedd2bf68d6a8678e8bf3e514b81cbb7.cairo" + }, + "parent_location": [ + { + "end_col": 23, + "end_line": 29, + "input_file": { + "filename": "src/starksheet/Starksheet.cairo" + }, + "parent_location": [ + { + "end_col": 49, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/setSheetClassHash/da17921a4e81c09e730800bbf23bfdbe5e9e6bfaedc59d80fbf62087fa43c27d.cairo" + }, + "parent_location": [ + { + "end_col": 23, + "end_line": 29, + "input_file": { + "filename": "src/starksheet/Starksheet.cairo" + }, + "start_col": 6, + "start_line": 29 + }, + "While constructing the external wrapper for:" + ], + "start_col": 34, + "start_line": 1 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 6, + "start_line": 29 + }, + "While constructing the external wrapper for:" + ], + "start_col": 100, + "start_line": 1 + } + }, + "1000": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.setSheetClassHash" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 21, + "end_line": 4, + "input_file": { + "filename": "autogen/starknet/external/setSheetClassHash/8ac52e19415f3bb85cf1477c90297e8dbedd2bf68d6a8678e8bf3e514b81cbb7.cairo" + }, + "parent_location": [ + { + "end_col": 23, + "end_line": 29, + "input_file": { + "filename": "src/starksheet/Starksheet.cairo" + }, + "parent_location": [ + { + "end_col": 62, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/setSheetClassHash/da17921a4e81c09e730800bbf23bfdbe5e9e6bfaedc59d80fbf62087fa43c27d.cairo" + }, + "parent_location": [ + { + "end_col": 23, + "end_line": 29, + "input_file": { + "filename": "src/starksheet/Starksheet.cairo" + }, + "start_col": 6, + "start_line": 29 + }, + "While constructing the external wrapper for:" + ], + "start_col": 50, + "start_line": 1 + }, + "While expanding the reference 'retdata_size' in:" + ], + "start_col": 6, + "start_line": 29 + }, + "While constructing the external wrapper for:" + ], + "start_col": 20, + "start_line": 4 + } + }, + "1002": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.setSheetClassHash" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 16, + "end_line": 3, + "input_file": { + "filename": "autogen/starknet/external/setSheetClassHash/8ac52e19415f3bb85cf1477c90297e8dbedd2bf68d6a8678e8bf3e514b81cbb7.cairo" + }, + "parent_location": [ + { + "end_col": 23, + "end_line": 29, + "input_file": { + "filename": "src/starksheet/Starksheet.cairo" + }, + "parent_location": [ + { + "end_col": 70, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/setSheetClassHash/da17921a4e81c09e730800bbf23bfdbe5e9e6bfaedc59d80fbf62087fa43c27d.cairo" + }, + "parent_location": [ + { + "end_col": 23, + "end_line": 29, + "input_file": { + "filename": "src/starksheet/Starksheet.cairo" + }, + "start_col": 6, + "start_line": 29 + }, + "While constructing the external wrapper for:" + ], + "start_col": 63, + "start_line": 1 + }, + "While expanding the reference 'retdata' in:" + ], + "start_col": 6, + "start_line": 29 + }, + "While constructing the external wrapper for:" + ], + "start_col": 9, + "start_line": 3 + } + }, + "1003": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.setSheetClassHash" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 72, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/setSheetClassHash/da17921a4e81c09e730800bbf23bfdbe5e9e6bfaedc59d80fbf62087fa43c27d.cairo" + }, + "parent_location": [ + { + "end_col": 23, + "end_line": 29, + "input_file": { + "filename": "src/starksheet/Starksheet.cairo" + }, + "start_col": 6, + "start_line": 29 + }, + "While constructing the external wrapper for:" + ], + "start_col": 1, + "start_line": 1 + } + }, + "1004": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.getSheetClassHash" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 42, + "end_line": 38, + "input_file": { + "filename": "src/starksheet/Starksheet.cairo" + }, + "parent_location": [ + { + "end_col": 49, + "end_line": 100, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/starksheet/library.cairo" + }, + "parent_location": [ + { + "end_col": 45, + "end_line": 41, + "input_file": { + "filename": "src/starksheet/Starksheet.cairo" + }, + "start_col": 12, + "start_line": 41 + }, + "While trying to retrieve the implicit argument 'syscall_ptr' in:" + ], + "start_col": 31, + "start_line": 100 + }, + "While expanding the reference 'syscall_ptr' in:" + ], + "start_col": 24, + "start_line": 38 + } + }, + "1005": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.getSheetClassHash" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 70, + "end_line": 38, + "input_file": { + "filename": "src/starksheet/Starksheet.cairo" + }, + "parent_location": [ + { + "end_col": 77, + "end_line": 100, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/starksheet/library.cairo" + }, + "parent_location": [ + { + "end_col": 45, + "end_line": 41, + "input_file": { + "filename": "src/starksheet/Starksheet.cairo" + }, + "start_col": 12, + "start_line": 41 + }, + "While trying to retrieve the implicit argument 'pedersen_ptr' in:" + ], + "start_col": 51, + "start_line": 100 + }, + "While expanding the reference 'pedersen_ptr' in:" + ], + "start_col": 44, + "start_line": 38 + } + }, + "1006": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.getSheetClassHash" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 87, + "end_line": 38, + "input_file": { + "filename": "src/starksheet/Starksheet.cairo" + }, + "parent_location": [ + { + "end_col": 94, + "end_line": 100, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/starksheet/library.cairo" + }, + "parent_location": [ + { + "end_col": 45, + "end_line": 41, + "input_file": { + "filename": "src/starksheet/Starksheet.cairo" + }, + "start_col": 12, + "start_line": 41 + }, + "While trying to retrieve the implicit argument 'range_check_ptr' in:" + ], + "start_col": 79, + "start_line": 100 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 72, + "start_line": 38 + } + }, + "1007": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.getSheetClassHash" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 45, + "end_line": 41, + "input_file": { + "filename": "src/starksheet/Starksheet.cairo" + }, + "start_col": 12, + "start_line": 41 + } + }, + "1009": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.getSheetClassHash" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 46, + "end_line": 41, + "input_file": { + "filename": "src/starksheet/Starksheet.cairo" + }, + "start_col": 5, + "start_line": 41 + } + }, + "1010": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.getSheetClassHash_encode_return" + ], + "flow_tracking_data": null, + "hints": [ + { + "location": { + "end_col": 38, + "end_line": 3, + "input_file": { + "filename": "autogen/starknet/external/return/getSheetClassHash/ad0018d5bed657ffd277ae970bcddf1c17a825684272b34db820c0d83d79fb83.cairo" + }, + "parent_location": [ + { + "end_col": 23, + "end_line": 38, + "input_file": { + "filename": "src/starksheet/Starksheet.cairo" + }, + "start_col": 6, + "start_line": 38 + }, + "While handling return value of" + ], + "start_col": 5, + "start_line": 3 + }, + "n_prefix_newlines": 0 + } + ], + "inst": { + "end_col": 18, + "end_line": 4, + "input_file": { + "filename": "autogen/starknet/external/return/getSheetClassHash/ad0018d5bed657ffd277ae970bcddf1c17a825684272b34db820c0d83d79fb83.cairo" + }, + "parent_location": [ + { + "end_col": 23, + "end_line": 38, + "input_file": { + "filename": "src/starksheet/Starksheet.cairo" + }, + "start_col": 6, + "start_line": 38 + }, + "While handling return value of" + ], + "start_col": 5, + "start_line": 4 + } + }, + "1012": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.getSheetClassHash_encode_return" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 46, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/arg_processor/a659306d4758a5c63e995df20d060f91abc84aed3cd250525fc5b97fe025812e.cairo" + }, + "parent_location": [ + { + "end_col": 15, + "end_line": 39, + "input_file": { + "filename": "src/starksheet/Starksheet.cairo" + }, + "start_col": 5, + "start_line": 39 + }, + "While handling return value 'hash'" + ], + "start_col": 1, + "start_line": 1 + } + }, + "1013": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.getSheetClassHash_encode_return" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 48, + "end_line": 2, + "input_file": { + "filename": "autogen/starknet/arg_processor/a659306d4758a5c63e995df20d060f91abc84aed3cd250525fc5b97fe025812e.cairo" + }, + "parent_location": [ + { + "end_col": 15, + "end_line": 39, + "input_file": { + "filename": "src/starksheet/Starksheet.cairo" + }, + "parent_location": [ + { + "end_col": 36, + "end_line": 11, + "input_file": { + "filename": "autogen/starknet/external/return/getSheetClassHash/ad0018d5bed657ffd277ae970bcddf1c17a825684272b34db820c0d83d79fb83.cairo" + }, + "parent_location": [ + { + "end_col": 23, + "end_line": 38, + "input_file": { + "filename": "src/starksheet/Starksheet.cairo" + }, + "start_col": 6, + "start_line": 38 + }, + "While handling return value of" + ], + "start_col": 18, + "start_line": 11 + }, + "While expanding the reference '__return_value_ptr' in:" + ], + "start_col": 5, + "start_line": 39 + }, + "While handling return value 'hash'" + ], + "start_col": 26, + "start_line": 2 + } + }, + "1015": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.getSheetClassHash_encode_return" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 78, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/return/getSheetClassHash/ad0018d5bed657ffd277ae970bcddf1c17a825684272b34db820c0d83d79fb83.cairo" + }, + "parent_location": [ + { + "end_col": 23, + "end_line": 38, + "input_file": { + "filename": "src/starksheet/Starksheet.cairo" + }, + "parent_location": [ + { + "end_col": 40, + "end_line": 10, + "input_file": { + "filename": "autogen/starknet/external/return/getSheetClassHash/ad0018d5bed657ffd277ae970bcddf1c17a825684272b34db820c0d83d79fb83.cairo" + }, + "parent_location": [ + { + "end_col": 23, + "end_line": 38, + "input_file": { + "filename": "src/starksheet/Starksheet.cairo" + }, + "start_col": 6, + "start_line": 38 + }, + "While handling return value of" + ], + "start_col": 25, + "start_line": 10 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 6, + "start_line": 38 + }, + "While handling return value of" + ], + "start_col": 63, + "start_line": 1 + } + }, + "1016": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.getSheetClassHash_encode_return" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 63, + "end_line": 11, + "input_file": { + "filename": "autogen/starknet/external/return/getSheetClassHash/ad0018d5bed657ffd277ae970bcddf1c17a825684272b34db820c0d83d79fb83.cairo" + }, + "parent_location": [ + { + "end_col": 23, + "end_line": 38, + "input_file": { + "filename": "src/starksheet/Starksheet.cairo" + }, + "start_col": 6, + "start_line": 38 + }, + "While handling return value of" + ], + "start_col": 18, + "start_line": 11 + } + }, + "1017": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.getSheetClassHash_encode_return" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 35, + "end_line": 5, + "input_file": { + "filename": "autogen/starknet/external/return/getSheetClassHash/ad0018d5bed657ffd277ae970bcddf1c17a825684272b34db820c0d83d79fb83.cairo" + }, + "parent_location": [ + { + "end_col": 23, + "end_line": 38, + "input_file": { + "filename": "src/starksheet/Starksheet.cairo" + }, + "parent_location": [ + { + "end_col": 38, + "end_line": 12, + "input_file": { + "filename": "autogen/starknet/external/return/getSheetClassHash/ad0018d5bed657ffd277ae970bcddf1c17a825684272b34db820c0d83d79fb83.cairo" + }, + "parent_location": [ + { + "end_col": 23, + "end_line": 38, + "input_file": { + "filename": "src/starksheet/Starksheet.cairo" + }, + "start_col": 6, + "start_line": 38 + }, + "While handling return value of" + ], + "start_col": 14, + "start_line": 12 + }, + "While expanding the reference '__return_value_ptr_start' in:" + ], + "start_col": 6, + "start_line": 38 + }, + "While handling return value of" + ], + "start_col": 11, + "start_line": 5 + } + }, + "1018": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.getSheetClassHash_encode_return" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 40, + "end_line": 12, + "input_file": { + "filename": "autogen/starknet/external/return/getSheetClassHash/ad0018d5bed657ffd277ae970bcddf1c17a825684272b34db820c0d83d79fb83.cairo" + }, + "parent_location": [ + { + "end_col": 23, + "end_line": 38, + "input_file": { + "filename": "src/starksheet/Starksheet.cairo" + }, + "start_col": 6, + "start_line": 38 + }, + "While handling return value of" + ], + "start_col": 5, + "start_line": 9 + } + }, + "1019": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.getSheetClassHash" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 58, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/arg_processor/01cba52f8515996bb9d7070bde81ff39281d096d7024a558efcba6e1fd2402cf.cairo" + }, + "parent_location": [ + { + "end_col": 23, + "end_line": 38, + "input_file": { + "filename": "src/starksheet/Starksheet.cairo" + }, + "start_col": 6, + "start_line": 38 + }, + "While handling calldata of" + ], + "start_col": 1, + "start_line": 1 + } + }, + "1020": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.getSheetClassHash" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 64, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/getSheetClassHash/b2c52ca2d2a8fc8791a983086d8716c5eacd0c3d62934914d2286f84b98ff4cb.cairo" + }, + "parent_location": [ + { + "end_col": 42, + "end_line": 38, + "input_file": { + "filename": "src/starksheet/Starksheet.cairo" + }, + "parent_location": [ + { + "end_col": 55, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/getSheetClassHash/4e35a6fd683bc5b2d0a281192e391bc6168a3b763b673e27f53d906ce8a07fe0.cairo" + }, + "parent_location": [ + { + "end_col": 23, + "end_line": 38, + "input_file": { + "filename": "src/starksheet/Starksheet.cairo" + }, + "start_col": 6, + "start_line": 38 + }, + "While constructing the external wrapper for:" + ], + "start_col": 44, + "start_line": 1 + }, + "While expanding the reference 'syscall_ptr' in:" + ], + "start_col": 24, + "start_line": 38 + }, + "While constructing the external wrapper for:" + ], + "start_col": 19, + "start_line": 1 + } + }, + "1021": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.getSheetClassHash" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 110, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/getSheetClassHash/9684a85e93c782014ca14293edea4eb2502039a5a7b6538ecd39c56faaf12529.cairo" + }, + "parent_location": [ + { + "end_col": 70, + "end_line": 38, + "input_file": { + "filename": "src/starksheet/Starksheet.cairo" + }, + "parent_location": [ + { + "end_col": 82, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/getSheetClassHash/4e35a6fd683bc5b2d0a281192e391bc6168a3b763b673e27f53d906ce8a07fe0.cairo" + }, + "parent_location": [ + { + "end_col": 23, + "end_line": 38, + "input_file": { + "filename": "src/starksheet/Starksheet.cairo" + }, + "start_col": 6, + "start_line": 38 + }, + "While constructing the external wrapper for:" + ], + "start_col": 70, + "start_line": 1 + }, + "While expanding the reference 'pedersen_ptr' in:" + ], + "start_col": 44, + "start_line": 38 + }, + "While constructing the external wrapper for:" + ], + "start_col": 20, + "start_line": 1 + } + }, + "1022": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.getSheetClassHash" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 67, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/getSheetClassHash/741ea357d6336b0bed7bf0472425acd0311d543883b803388880e60a232040c7.cairo" + }, + "parent_location": [ + { + "end_col": 87, + "end_line": 38, + "input_file": { + "filename": "src/starksheet/Starksheet.cairo" + }, + "parent_location": [ + { + "end_col": 115, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/getSheetClassHash/4e35a6fd683bc5b2d0a281192e391bc6168a3b763b673e27f53d906ce8a07fe0.cairo" + }, + "parent_location": [ + { + "end_col": 23, + "end_line": 38, + "input_file": { + "filename": "src/starksheet/Starksheet.cairo" + }, + "start_col": 6, + "start_line": 38 + }, + "While constructing the external wrapper for:" + ], + "start_col": 100, + "start_line": 1 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 72, + "start_line": 38 + }, + "While constructing the external wrapper for:" + ], + "start_col": 23, + "start_line": 1 + } + }, + "1023": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.getSheetClassHash" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 23, + "end_line": 38, + "input_file": { + "filename": "src/starksheet/Starksheet.cairo" + }, + "start_col": 6, + "start_line": 38 + } + }, + "1025": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.getSheetClassHash" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 115, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/getSheetClassHash/4e35a6fd683bc5b2d0a281192e391bc6168a3b763b673e27f53d906ce8a07fe0.cairo" + }, + "parent_location": [ + { + "end_col": 23, + "end_line": 38, + "input_file": { + "filename": "src/starksheet/Starksheet.cairo" + }, + "parent_location": [ + { + "end_col": 106, + "end_line": 2, + "input_file": { + "filename": "autogen/starknet/external/getSheetClassHash/4e35a6fd683bc5b2d0a281192e391bc6168a3b763b673e27f53d906ce8a07fe0.cairo" + }, + "parent_location": [ + { + "end_col": 23, + "end_line": 38, + "input_file": { + "filename": "src/starksheet/Starksheet.cairo" + }, + "start_col": 6, + "start_line": 38 + }, + "While constructing the external wrapper for:" + ], + "start_col": 91, + "start_line": 2 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 6, + "start_line": 38 + }, + "While constructing the external wrapper for:" + ], + "start_col": 100, + "start_line": 1 + } + }, + "1026": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.getSheetClassHash" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 107, + "end_line": 2, + "input_file": { + "filename": "autogen/starknet/external/getSheetClassHash/4e35a6fd683bc5b2d0a281192e391bc6168a3b763b673e27f53d906ce8a07fe0.cairo" + }, + "parent_location": [ + { + "end_col": 23, + "end_line": 38, + "input_file": { + "filename": "src/starksheet/Starksheet.cairo" + }, + "start_col": 6, + "start_line": 38 + }, + "While constructing the external wrapper for:" + ], + "start_col": 48, + "start_line": 2 + } + }, + "1028": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.getSheetClassHash" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 55, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/getSheetClassHash/4e35a6fd683bc5b2d0a281192e391bc6168a3b763b673e27f53d906ce8a07fe0.cairo" + }, + "parent_location": [ + { + "end_col": 23, + "end_line": 38, + "input_file": { + "filename": "src/starksheet/Starksheet.cairo" + }, + "parent_location": [ + { + "end_col": 20, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/getSheetClassHash/da17921a4e81c09e730800bbf23bfdbe5e9e6bfaedc59d80fbf62087fa43c27d.cairo" + }, + "parent_location": [ + { + "end_col": 23, + "end_line": 38, + "input_file": { + "filename": "src/starksheet/Starksheet.cairo" + }, + "start_col": 6, + "start_line": 38 + }, + "While constructing the external wrapper for:" + ], + "start_col": 9, + "start_line": 1 + }, + "While expanding the reference 'syscall_ptr' in:" + ], + "start_col": 6, + "start_line": 38 + }, + "While constructing the external wrapper for:" + ], + "start_col": 44, + "start_line": 1 + } + }, + "1029": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.getSheetClassHash" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 82, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/getSheetClassHash/4e35a6fd683bc5b2d0a281192e391bc6168a3b763b673e27f53d906ce8a07fe0.cairo" + }, + "parent_location": [ + { + "end_col": 23, + "end_line": 38, + "input_file": { + "filename": "src/starksheet/Starksheet.cairo" + }, + "parent_location": [ + { + "end_col": 33, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/getSheetClassHash/da17921a4e81c09e730800bbf23bfdbe5e9e6bfaedc59d80fbf62087fa43c27d.cairo" + }, + "parent_location": [ + { + "end_col": 23, + "end_line": 38, + "input_file": { + "filename": "src/starksheet/Starksheet.cairo" + }, + "start_col": 6, + "start_line": 38 + }, + "While constructing the external wrapper for:" + ], + "start_col": 21, + "start_line": 1 + }, + "While expanding the reference 'pedersen_ptr' in:" + ], + "start_col": 6, + "start_line": 38 + }, + "While constructing the external wrapper for:" + ], + "start_col": 70, + "start_line": 1 + } + }, + "1030": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.getSheetClassHash" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 21, + "end_line": 2, + "input_file": { + "filename": "autogen/starknet/external/getSheetClassHash/4e35a6fd683bc5b2d0a281192e391bc6168a3b763b673e27f53d906ce8a07fe0.cairo" + }, + "parent_location": [ + { + "end_col": 23, + "end_line": 38, + "input_file": { + "filename": "src/starksheet/Starksheet.cairo" + }, + "parent_location": [ + { + "end_col": 49, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/getSheetClassHash/da17921a4e81c09e730800bbf23bfdbe5e9e6bfaedc59d80fbf62087fa43c27d.cairo" + }, + "parent_location": [ + { + "end_col": 23, + "end_line": 38, + "input_file": { + "filename": "src/starksheet/Starksheet.cairo" + }, + "start_col": 6, + "start_line": 38 + }, + "While constructing the external wrapper for:" + ], + "start_col": 34, + "start_line": 1 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 6, + "start_line": 38 + }, + "While constructing the external wrapper for:" + ], + "start_col": 6, + "start_line": 2 + } + }, + "1031": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.getSheetClassHash" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 35, + "end_line": 2, + "input_file": { + "filename": "autogen/starknet/external/getSheetClassHash/4e35a6fd683bc5b2d0a281192e391bc6168a3b763b673e27f53d906ce8a07fe0.cairo" + }, + "parent_location": [ + { + "end_col": 23, + "end_line": 38, + "input_file": { + "filename": "src/starksheet/Starksheet.cairo" + }, + "parent_location": [ + { + "end_col": 62, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/getSheetClassHash/da17921a4e81c09e730800bbf23bfdbe5e9e6bfaedc59d80fbf62087fa43c27d.cairo" + }, + "parent_location": [ + { + "end_col": 23, + "end_line": 38, + "input_file": { + "filename": "src/starksheet/Starksheet.cairo" + }, + "start_col": 6, + "start_line": 38 + }, + "While constructing the external wrapper for:" + ], + "start_col": 50, + "start_line": 1 + }, + "While expanding the reference 'retdata_size' in:" + ], + "start_col": 6, + "start_line": 38 + }, + "While constructing the external wrapper for:" + ], + "start_col": 23, + "start_line": 2 + } + }, + "1032": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.getSheetClassHash" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 44, + "end_line": 2, + "input_file": { + "filename": "autogen/starknet/external/getSheetClassHash/4e35a6fd683bc5b2d0a281192e391bc6168a3b763b673e27f53d906ce8a07fe0.cairo" + }, + "parent_location": [ + { + "end_col": 23, + "end_line": 38, + "input_file": { + "filename": "src/starksheet/Starksheet.cairo" + }, + "parent_location": [ + { + "end_col": 70, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/getSheetClassHash/da17921a4e81c09e730800bbf23bfdbe5e9e6bfaedc59d80fbf62087fa43c27d.cairo" + }, + "parent_location": [ + { + "end_col": 23, + "end_line": 38, + "input_file": { + "filename": "src/starksheet/Starksheet.cairo" + }, + "start_col": 6, + "start_line": 38 + }, + "While constructing the external wrapper for:" + ], + "start_col": 63, + "start_line": 1 + }, + "While expanding the reference 'retdata' in:" + ], + "start_col": 6, + "start_line": 38 + }, + "While constructing the external wrapper for:" + ], + "start_col": 37, + "start_line": 2 + } + }, + "1033": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.getSheetClassHash" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 72, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/getSheetClassHash/da17921a4e81c09e730800bbf23bfdbe5e9e6bfaedc59d80fbf62087fa43c27d.cairo" + }, + "parent_location": [ + { + "end_col": 23, + "end_line": 38, + "input_file": { + "filename": "src/starksheet/Starksheet.cairo" + }, + "start_col": 6, + "start_line": 38 + }, + "While constructing the external wrapper for:" + ], + "start_col": 1, + "start_line": 1 + } + }, + "1034": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.setProxyClassHash" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 42, + "end_line": 45, + "input_file": { + "filename": "src/starksheet/Starksheet.cairo" + }, + "parent_location": [ + { + "end_col": 46, + "end_line": 40, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/access/ownable/library.cairo" + }, + "parent_location": [ + { + "end_col": 32, + "end_line": 48, + "input_file": { + "filename": "src/starksheet/Starksheet.cairo" + }, + "start_col": 5, + "start_line": 48 + }, + "While trying to retrieve the implicit argument 'syscall_ptr' in:" + ], + "start_col": 28, + "start_line": 40 + }, + "While expanding the reference 'syscall_ptr' in:" + ], + "start_col": 24, + "start_line": 45 + } + }, + "1035": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.setProxyClassHash" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 70, + "end_line": 45, + "input_file": { + "filename": "src/starksheet/Starksheet.cairo" + }, + "parent_location": [ + { + "end_col": 74, + "end_line": 40, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/access/ownable/library.cairo" + }, + "parent_location": [ + { + "end_col": 32, + "end_line": 48, + "input_file": { + "filename": "src/starksheet/Starksheet.cairo" + }, + "start_col": 5, + "start_line": 48 + }, + "While trying to retrieve the implicit argument 'pedersen_ptr' in:" + ], + "start_col": 48, + "start_line": 40 + }, + "While expanding the reference 'pedersen_ptr' in:" + ], + "start_col": 44, + "start_line": 45 + } + }, + "1036": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.setProxyClassHash" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 87, + "end_line": 45, + "input_file": { + "filename": "src/starksheet/Starksheet.cairo" + }, + "parent_location": [ + { + "end_col": 91, + "end_line": 40, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/access/ownable/library.cairo" + }, + "parent_location": [ + { + "end_col": 32, + "end_line": 48, + "input_file": { + "filename": "src/starksheet/Starksheet.cairo" + }, + "start_col": 5, + "start_line": 48 + }, + "While trying to retrieve the implicit argument 'range_check_ptr' in:" + ], + "start_col": 76, + "start_line": 40 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 72, + "start_line": 45 + } + }, + "1037": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.setProxyClassHash" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 32, + "end_line": 48, + "input_file": { + "filename": "src/starksheet/Starksheet.cairo" + }, + "start_col": 5, + "start_line": 48 + } + }, + "1039": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.setProxyClassHash" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 15, + "end_line": 46, + "input_file": { + "filename": "src/starksheet/Starksheet.cairo" + }, + "parent_location": [ + { + "end_col": 41, + "end_line": 49, + "input_file": { + "filename": "src/starksheet/Starksheet.cairo" + }, + "start_col": 37, + "start_line": 49 + }, + "While expanding the reference 'hash' in:" + ], + "start_col": 5, + "start_line": 46 + } + }, + "1040": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.setProxyClassHash" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 42, + "end_line": 49, + "input_file": { + "filename": "src/starksheet/Starksheet.cairo" + }, + "start_col": 5, + "start_line": 49 + } + }, + "1042": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.setProxyClassHash" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 15, + "end_line": 50, + "input_file": { + "filename": "src/starksheet/Starksheet.cairo" + }, + "start_col": 5, + "start_line": 50 + } + }, + "1043": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.setProxyClassHash" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 40, + "end_line": 2, + "input_file": { + "filename": "autogen/starknet/arg_processor/b07888c526f97925bd7037f4dcde235d5ffb2d92354828348c217678c2166713.cairo" + }, + "parent_location": [ + { + "end_col": 15, + "end_line": 46, + "input_file": { + "filename": "src/starksheet/Starksheet.cairo" + }, + "parent_location": [ + { + "end_col": 45, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/arg_processor/c31620b02d4d706f0542c989b2aadc01b0981d1f6a5933a8fe4937ace3d70d92.cairo" + }, + "parent_location": [ + { + "end_col": 23, + "end_line": 45, + "input_file": { + "filename": "src/starksheet/Starksheet.cairo" + }, + "parent_location": [ + { + "end_col": 57, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/arg_processor/01cba52f8515996bb9d7070bde81ff39281d096d7024a558efcba6e1fd2402cf.cairo" + }, + "parent_location": [ + { + "end_col": 23, + "end_line": 45, + "input_file": { + "filename": "src/starksheet/Starksheet.cairo" + }, + "start_col": 6, + "start_line": 45 + }, + "While handling calldata of" + ], + "start_col": 35, + "start_line": 1 + }, + "While expanding the reference '__calldata_actual_size' in:" + ], + "start_col": 6, + "start_line": 45 + }, + "While handling calldata of" + ], + "start_col": 31, + "start_line": 1 + }, + "While expanding the reference '__calldata_ptr' in:" + ], + "start_col": 5, + "start_line": 46 + }, + "While handling calldata argument 'hash'" + ], + "start_col": 22, + "start_line": 2 + } + }, + "1045": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.setProxyClassHash" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 58, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/arg_processor/01cba52f8515996bb9d7070bde81ff39281d096d7024a558efcba6e1fd2402cf.cairo" + }, + "parent_location": [ + { + "end_col": 23, + "end_line": 45, + "input_file": { + "filename": "src/starksheet/Starksheet.cairo" + }, + "start_col": 6, + "start_line": 45 + }, + "While handling calldata of" + ], + "start_col": 1, + "start_line": 1 + } + }, + "1046": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.setProxyClassHash" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 64, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/setProxyClassHash/b2c52ca2d2a8fc8791a983086d8716c5eacd0c3d62934914d2286f84b98ff4cb.cairo" + }, + "parent_location": [ + { + "end_col": 42, + "end_line": 45, + "input_file": { + "filename": "src/starksheet/Starksheet.cairo" + }, + "parent_location": [ + { + "end_col": 55, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/setProxyClassHash/8ac52e19415f3bb85cf1477c90297e8dbedd2bf68d6a8678e8bf3e514b81cbb7.cairo" + }, + "parent_location": [ + { + "end_col": 23, + "end_line": 45, + "input_file": { + "filename": "src/starksheet/Starksheet.cairo" + }, + "start_col": 6, + "start_line": 45 + }, + "While constructing the external wrapper for:" + ], + "start_col": 44, + "start_line": 1 + }, + "While expanding the reference 'syscall_ptr' in:" + ], + "start_col": 24, + "start_line": 45 + }, + "While constructing the external wrapper for:" + ], + "start_col": 19, + "start_line": 1 + } + }, + "1047": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.setProxyClassHash" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 110, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/setProxyClassHash/9684a85e93c782014ca14293edea4eb2502039a5a7b6538ecd39c56faaf12529.cairo" + }, + "parent_location": [ + { + "end_col": 70, + "end_line": 45, + "input_file": { + "filename": "src/starksheet/Starksheet.cairo" + }, + "parent_location": [ + { + "end_col": 82, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/setProxyClassHash/8ac52e19415f3bb85cf1477c90297e8dbedd2bf68d6a8678e8bf3e514b81cbb7.cairo" + }, + "parent_location": [ + { + "end_col": 23, + "end_line": 45, + "input_file": { + "filename": "src/starksheet/Starksheet.cairo" + }, + "start_col": 6, + "start_line": 45 + }, + "While constructing the external wrapper for:" + ], + "start_col": 70, + "start_line": 1 + }, + "While expanding the reference 'pedersen_ptr' in:" + ], + "start_col": 44, + "start_line": 45 + }, + "While constructing the external wrapper for:" + ], + "start_col": 20, + "start_line": 1 + } + }, + "1048": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.setProxyClassHash" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 67, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/setProxyClassHash/741ea357d6336b0bed7bf0472425acd0311d543883b803388880e60a232040c7.cairo" + }, + "parent_location": [ + { + "end_col": 87, + "end_line": 45, + "input_file": { + "filename": "src/starksheet/Starksheet.cairo" + }, + "parent_location": [ + { + "end_col": 115, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/setProxyClassHash/8ac52e19415f3bb85cf1477c90297e8dbedd2bf68d6a8678e8bf3e514b81cbb7.cairo" + }, + "parent_location": [ + { + "end_col": 23, + "end_line": 45, + "input_file": { + "filename": "src/starksheet/Starksheet.cairo" + }, + "start_col": 6, + "start_line": 45 + }, + "While constructing the external wrapper for:" + ], + "start_col": 100, + "start_line": 1 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 72, + "start_line": 45 + }, + "While constructing the external wrapper for:" + ], + "start_col": 23, + "start_line": 1 + } + }, + "1049": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.setProxyClassHash" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 43, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/arg_processor/b07888c526f97925bd7037f4dcde235d5ffb2d92354828348c217678c2166713.cairo" + }, + "parent_location": [ + { + "end_col": 15, + "end_line": 46, + "input_file": { + "filename": "src/starksheet/Starksheet.cairo" + }, + "parent_location": [ + { + "end_col": 141, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/setProxyClassHash/8ac52e19415f3bb85cf1477c90297e8dbedd2bf68d6a8678e8bf3e514b81cbb7.cairo" + }, + "parent_location": [ + { + "end_col": 23, + "end_line": 45, + "input_file": { + "filename": "src/starksheet/Starksheet.cairo" + }, + "start_col": 6, + "start_line": 45 + }, + "While constructing the external wrapper for:" + ], + "start_col": 122, + "start_line": 1 + }, + "While expanding the reference '__calldata_arg_hash' in:" + ], + "start_col": 5, + "start_line": 46 + }, + "While handling calldata argument 'hash'" + ], + "start_col": 27, + "start_line": 1 + } + }, + "1050": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.setProxyClassHash" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 23, + "end_line": 45, + "input_file": { + "filename": "src/starksheet/Starksheet.cairo" + }, + "start_col": 6, + "start_line": 45 + } + }, + "1052": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.setProxyClassHash" + ], + "flow_tracking_data": null, + "hints": [ + { + "location": { + "end_col": 34, + "end_line": 2, + "input_file": { + "filename": "autogen/starknet/external/setProxyClassHash/8ac52e19415f3bb85cf1477c90297e8dbedd2bf68d6a8678e8bf3e514b81cbb7.cairo" + }, + "parent_location": [ + { + "end_col": 23, + "end_line": 45, + "input_file": { + "filename": "src/starksheet/Starksheet.cairo" + }, + "start_col": 6, + "start_line": 45 + }, + "While constructing the external wrapper for:" + ], + "start_col": 1, + "start_line": 2 + }, + "n_prefix_newlines": 0 + } + ], + "inst": { + "end_col": 24, + "end_line": 3, + "input_file": { + "filename": "autogen/starknet/external/setProxyClassHash/8ac52e19415f3bb85cf1477c90297e8dbedd2bf68d6a8678e8bf3e514b81cbb7.cairo" + }, + "parent_location": [ + { + "end_col": 23, + "end_line": 45, + "input_file": { + "filename": "src/starksheet/Starksheet.cairo" + }, + "start_col": 6, + "start_line": 45 + }, + "While constructing the external wrapper for:" + ], + "start_col": 1, + "start_line": 3 + } + }, + "1054": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.setProxyClassHash" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 55, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/setProxyClassHash/8ac52e19415f3bb85cf1477c90297e8dbedd2bf68d6a8678e8bf3e514b81cbb7.cairo" + }, + "parent_location": [ + { + "end_col": 23, + "end_line": 45, + "input_file": { + "filename": "src/starksheet/Starksheet.cairo" + }, + "parent_location": [ + { + "end_col": 20, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/setProxyClassHash/da17921a4e81c09e730800bbf23bfdbe5e9e6bfaedc59d80fbf62087fa43c27d.cairo" + }, + "parent_location": [ + { + "end_col": 23, + "end_line": 45, + "input_file": { + "filename": "src/starksheet/Starksheet.cairo" + }, + "start_col": 6, + "start_line": 45 + }, + "While constructing the external wrapper for:" + ], + "start_col": 9, + "start_line": 1 + }, + "While expanding the reference 'syscall_ptr' in:" + ], + "start_col": 6, + "start_line": 45 + }, + "While constructing the external wrapper for:" + ], + "start_col": 44, + "start_line": 1 + } + }, + "1055": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.setProxyClassHash" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 82, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/setProxyClassHash/8ac52e19415f3bb85cf1477c90297e8dbedd2bf68d6a8678e8bf3e514b81cbb7.cairo" + }, + "parent_location": [ + { + "end_col": 23, + "end_line": 45, + "input_file": { + "filename": "src/starksheet/Starksheet.cairo" + }, + "parent_location": [ + { + "end_col": 33, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/setProxyClassHash/da17921a4e81c09e730800bbf23bfdbe5e9e6bfaedc59d80fbf62087fa43c27d.cairo" + }, + "parent_location": [ + { + "end_col": 23, + "end_line": 45, + "input_file": { + "filename": "src/starksheet/Starksheet.cairo" + }, + "start_col": 6, + "start_line": 45 + }, + "While constructing the external wrapper for:" + ], + "start_col": 21, + "start_line": 1 + }, + "While expanding the reference 'pedersen_ptr' in:" + ], + "start_col": 6, + "start_line": 45 + }, + "While constructing the external wrapper for:" + ], + "start_col": 70, + "start_line": 1 + } + }, + "1056": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.setProxyClassHash" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 115, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/setProxyClassHash/8ac52e19415f3bb85cf1477c90297e8dbedd2bf68d6a8678e8bf3e514b81cbb7.cairo" + }, + "parent_location": [ + { + "end_col": 23, + "end_line": 45, + "input_file": { + "filename": "src/starksheet/Starksheet.cairo" + }, + "parent_location": [ + { + "end_col": 49, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/setProxyClassHash/da17921a4e81c09e730800bbf23bfdbe5e9e6bfaedc59d80fbf62087fa43c27d.cairo" + }, + "parent_location": [ + { + "end_col": 23, + "end_line": 45, + "input_file": { + "filename": "src/starksheet/Starksheet.cairo" + }, + "start_col": 6, + "start_line": 45 + }, + "While constructing the external wrapper for:" + ], + "start_col": 34, + "start_line": 1 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 6, + "start_line": 45 + }, + "While constructing the external wrapper for:" + ], + "start_col": 100, + "start_line": 1 + } + }, + "1057": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.setProxyClassHash" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 21, + "end_line": 4, + "input_file": { + "filename": "autogen/starknet/external/setProxyClassHash/8ac52e19415f3bb85cf1477c90297e8dbedd2bf68d6a8678e8bf3e514b81cbb7.cairo" + }, + "parent_location": [ + { + "end_col": 23, + "end_line": 45, + "input_file": { + "filename": "src/starksheet/Starksheet.cairo" + }, + "parent_location": [ + { + "end_col": 62, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/setProxyClassHash/da17921a4e81c09e730800bbf23bfdbe5e9e6bfaedc59d80fbf62087fa43c27d.cairo" + }, + "parent_location": [ + { + "end_col": 23, + "end_line": 45, + "input_file": { + "filename": "src/starksheet/Starksheet.cairo" + }, + "start_col": 6, + "start_line": 45 + }, + "While constructing the external wrapper for:" + ], + "start_col": 50, + "start_line": 1 + }, + "While expanding the reference 'retdata_size' in:" + ], + "start_col": 6, + "start_line": 45 + }, + "While constructing the external wrapper for:" + ], + "start_col": 20, + "start_line": 4 + } + }, + "1059": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.setProxyClassHash" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 16, + "end_line": 3, + "input_file": { + "filename": "autogen/starknet/external/setProxyClassHash/8ac52e19415f3bb85cf1477c90297e8dbedd2bf68d6a8678e8bf3e514b81cbb7.cairo" + }, + "parent_location": [ + { + "end_col": 23, + "end_line": 45, + "input_file": { + "filename": "src/starksheet/Starksheet.cairo" + }, + "parent_location": [ + { + "end_col": 70, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/setProxyClassHash/da17921a4e81c09e730800bbf23bfdbe5e9e6bfaedc59d80fbf62087fa43c27d.cairo" + }, + "parent_location": [ + { + "end_col": 23, + "end_line": 45, + "input_file": { + "filename": "src/starksheet/Starksheet.cairo" + }, + "start_col": 6, + "start_line": 45 + }, + "While constructing the external wrapper for:" + ], + "start_col": 63, + "start_line": 1 + }, + "While expanding the reference 'retdata' in:" + ], + "start_col": 6, + "start_line": 45 + }, + "While constructing the external wrapper for:" + ], + "start_col": 9, + "start_line": 3 + } + }, + "1060": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.setProxyClassHash" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 72, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/setProxyClassHash/da17921a4e81c09e730800bbf23bfdbe5e9e6bfaedc59d80fbf62087fa43c27d.cairo" + }, + "parent_location": [ + { + "end_col": 23, + "end_line": 45, + "input_file": { + "filename": "src/starksheet/Starksheet.cairo" + }, + "start_col": 6, + "start_line": 45 + }, + "While constructing the external wrapper for:" + ], + "start_col": 1, + "start_line": 1 + } + }, + "1061": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.getProxyClassHash" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 42, + "end_line": 54, + "input_file": { + "filename": "src/starksheet/Starksheet.cairo" + }, + "parent_location": [ + { + "end_col": 49, + "end_line": 112, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/starksheet/library.cairo" + }, + "parent_location": [ + { + "end_col": 45, + "end_line": 57, + "input_file": { + "filename": "src/starksheet/Starksheet.cairo" + }, + "start_col": 12, + "start_line": 57 + }, + "While trying to retrieve the implicit argument 'syscall_ptr' in:" + ], + "start_col": 31, + "start_line": 112 + }, + "While expanding the reference 'syscall_ptr' in:" + ], + "start_col": 24, + "start_line": 54 + } + }, + "1062": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.getProxyClassHash" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 70, + "end_line": 54, + "input_file": { + "filename": "src/starksheet/Starksheet.cairo" + }, + "parent_location": [ + { + "end_col": 77, + "end_line": 112, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/starksheet/library.cairo" + }, + "parent_location": [ + { + "end_col": 45, + "end_line": 57, + "input_file": { + "filename": "src/starksheet/Starksheet.cairo" + }, + "start_col": 12, + "start_line": 57 + }, + "While trying to retrieve the implicit argument 'pedersen_ptr' in:" + ], + "start_col": 51, + "start_line": 112 + }, + "While expanding the reference 'pedersen_ptr' in:" + ], + "start_col": 44, + "start_line": 54 + } + }, + "1063": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.getProxyClassHash" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 87, + "end_line": 54, + "input_file": { + "filename": "src/starksheet/Starksheet.cairo" + }, + "parent_location": [ + { + "end_col": 94, + "end_line": 112, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/starksheet/library.cairo" + }, + "parent_location": [ + { + "end_col": 45, + "end_line": 57, + "input_file": { + "filename": "src/starksheet/Starksheet.cairo" + }, + "start_col": 12, + "start_line": 57 + }, + "While trying to retrieve the implicit argument 'range_check_ptr' in:" + ], + "start_col": 79, + "start_line": 112 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 72, + "start_line": 54 + } + }, + "1064": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.getProxyClassHash" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 45, + "end_line": 57, + "input_file": { + "filename": "src/starksheet/Starksheet.cairo" + }, + "start_col": 12, + "start_line": 57 + } + }, + "1066": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.getProxyClassHash" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 46, + "end_line": 57, + "input_file": { + "filename": "src/starksheet/Starksheet.cairo" + }, + "start_col": 5, + "start_line": 57 + } + }, + "1067": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.getProxyClassHash_encode_return" + ], + "flow_tracking_data": null, + "hints": [ + { + "location": { + "end_col": 38, + "end_line": 3, + "input_file": { + "filename": "autogen/starknet/external/return/getProxyClassHash/d3861d63cc448c4c708288229e3d6ec8c683955a46cb51be2cdf119bc9c97721.cairo" + }, + "parent_location": [ + { + "end_col": 23, + "end_line": 54, + "input_file": { + "filename": "src/starksheet/Starksheet.cairo" + }, + "start_col": 6, + "start_line": 54 + }, + "While handling return value of" + ], + "start_col": 5, + "start_line": 3 + }, + "n_prefix_newlines": 0 + } + ], + "inst": { + "end_col": 18, + "end_line": 4, + "input_file": { + "filename": "autogen/starknet/external/return/getProxyClassHash/d3861d63cc448c4c708288229e3d6ec8c683955a46cb51be2cdf119bc9c97721.cairo" + }, + "parent_location": [ + { + "end_col": 23, + "end_line": 54, + "input_file": { + "filename": "src/starksheet/Starksheet.cairo" + }, + "start_col": 6, + "start_line": 54 + }, + "While handling return value of" + ], + "start_col": 5, + "start_line": 4 + } + }, + "1069": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.getProxyClassHash_encode_return" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 46, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/arg_processor/a659306d4758a5c63e995df20d060f91abc84aed3cd250525fc5b97fe025812e.cairo" + }, + "parent_location": [ + { + "end_col": 15, + "end_line": 55, + "input_file": { + "filename": "src/starksheet/Starksheet.cairo" + }, + "start_col": 5, + "start_line": 55 + }, + "While handling return value 'hash'" + ], + "start_col": 1, + "start_line": 1 + } + }, + "1070": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.getProxyClassHash_encode_return" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 48, + "end_line": 2, + "input_file": { + "filename": "autogen/starknet/arg_processor/a659306d4758a5c63e995df20d060f91abc84aed3cd250525fc5b97fe025812e.cairo" + }, + "parent_location": [ + { + "end_col": 15, + "end_line": 55, + "input_file": { + "filename": "src/starksheet/Starksheet.cairo" + }, + "parent_location": [ + { + "end_col": 36, + "end_line": 11, + "input_file": { + "filename": "autogen/starknet/external/return/getProxyClassHash/d3861d63cc448c4c708288229e3d6ec8c683955a46cb51be2cdf119bc9c97721.cairo" + }, + "parent_location": [ + { + "end_col": 23, + "end_line": 54, + "input_file": { + "filename": "src/starksheet/Starksheet.cairo" + }, + "start_col": 6, + "start_line": 54 + }, + "While handling return value of" + ], + "start_col": 18, + "start_line": 11 + }, + "While expanding the reference '__return_value_ptr' in:" + ], + "start_col": 5, + "start_line": 55 + }, + "While handling return value 'hash'" + ], + "start_col": 26, + "start_line": 2 + } + }, + "1072": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.getProxyClassHash_encode_return" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 78, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/return/getProxyClassHash/d3861d63cc448c4c708288229e3d6ec8c683955a46cb51be2cdf119bc9c97721.cairo" + }, + "parent_location": [ + { + "end_col": 23, + "end_line": 54, + "input_file": { + "filename": "src/starksheet/Starksheet.cairo" + }, + "parent_location": [ + { + "end_col": 40, + "end_line": 10, + "input_file": { + "filename": "autogen/starknet/external/return/getProxyClassHash/d3861d63cc448c4c708288229e3d6ec8c683955a46cb51be2cdf119bc9c97721.cairo" + }, + "parent_location": [ + { + "end_col": 23, + "end_line": 54, + "input_file": { + "filename": "src/starksheet/Starksheet.cairo" + }, + "start_col": 6, + "start_line": 54 + }, + "While handling return value of" + ], + "start_col": 25, + "start_line": 10 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 6, + "start_line": 54 + }, + "While handling return value of" + ], + "start_col": 63, + "start_line": 1 + } + }, + "1073": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.getProxyClassHash_encode_return" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 63, + "end_line": 11, + "input_file": { + "filename": "autogen/starknet/external/return/getProxyClassHash/d3861d63cc448c4c708288229e3d6ec8c683955a46cb51be2cdf119bc9c97721.cairo" + }, + "parent_location": [ + { + "end_col": 23, + "end_line": 54, + "input_file": { + "filename": "src/starksheet/Starksheet.cairo" + }, + "start_col": 6, + "start_line": 54 + }, + "While handling return value of" + ], + "start_col": 18, + "start_line": 11 + } + }, + "1074": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.getProxyClassHash_encode_return" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 35, + "end_line": 5, + "input_file": { + "filename": "autogen/starknet/external/return/getProxyClassHash/d3861d63cc448c4c708288229e3d6ec8c683955a46cb51be2cdf119bc9c97721.cairo" + }, + "parent_location": [ + { + "end_col": 23, + "end_line": 54, + "input_file": { + "filename": "src/starksheet/Starksheet.cairo" + }, + "parent_location": [ + { + "end_col": 38, + "end_line": 12, + "input_file": { + "filename": "autogen/starknet/external/return/getProxyClassHash/d3861d63cc448c4c708288229e3d6ec8c683955a46cb51be2cdf119bc9c97721.cairo" + }, + "parent_location": [ + { + "end_col": 23, + "end_line": 54, + "input_file": { + "filename": "src/starksheet/Starksheet.cairo" + }, + "start_col": 6, + "start_line": 54 + }, + "While handling return value of" + ], + "start_col": 14, + "start_line": 12 + }, + "While expanding the reference '__return_value_ptr_start' in:" + ], + "start_col": 6, + "start_line": 54 + }, + "While handling return value of" + ], + "start_col": 11, + "start_line": 5 + } + }, + "1075": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.getProxyClassHash_encode_return" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 40, + "end_line": 12, + "input_file": { + "filename": "autogen/starknet/external/return/getProxyClassHash/d3861d63cc448c4c708288229e3d6ec8c683955a46cb51be2cdf119bc9c97721.cairo" + }, + "parent_location": [ + { + "end_col": 23, + "end_line": 54, + "input_file": { + "filename": "src/starksheet/Starksheet.cairo" + }, + "start_col": 6, + "start_line": 54 + }, + "While handling return value of" + ], + "start_col": 5, + "start_line": 9 + } + }, + "1076": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.getProxyClassHash" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 58, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/arg_processor/01cba52f8515996bb9d7070bde81ff39281d096d7024a558efcba6e1fd2402cf.cairo" + }, + "parent_location": [ + { + "end_col": 23, + "end_line": 54, + "input_file": { + "filename": "src/starksheet/Starksheet.cairo" + }, + "start_col": 6, + "start_line": 54 + }, + "While handling calldata of" + ], + "start_col": 1, + "start_line": 1 + } + }, + "1077": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.getProxyClassHash" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 64, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/getProxyClassHash/b2c52ca2d2a8fc8791a983086d8716c5eacd0c3d62934914d2286f84b98ff4cb.cairo" + }, + "parent_location": [ + { + "end_col": 42, + "end_line": 54, + "input_file": { + "filename": "src/starksheet/Starksheet.cairo" + }, + "parent_location": [ + { + "end_col": 55, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/getProxyClassHash/3ddbcd9ddbb80179925bc30a42d371d91cb9b5017c3e52f66e0fb19001690927.cairo" + }, + "parent_location": [ + { + "end_col": 23, + "end_line": 54, + "input_file": { + "filename": "src/starksheet/Starksheet.cairo" + }, + "start_col": 6, + "start_line": 54 + }, + "While constructing the external wrapper for:" + ], + "start_col": 44, + "start_line": 1 + }, + "While expanding the reference 'syscall_ptr' in:" + ], + "start_col": 24, + "start_line": 54 + }, + "While constructing the external wrapper for:" + ], + "start_col": 19, + "start_line": 1 + } + }, + "1078": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.getProxyClassHash" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 110, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/getProxyClassHash/9684a85e93c782014ca14293edea4eb2502039a5a7b6538ecd39c56faaf12529.cairo" + }, + "parent_location": [ + { + "end_col": 70, + "end_line": 54, + "input_file": { + "filename": "src/starksheet/Starksheet.cairo" + }, + "parent_location": [ + { + "end_col": 82, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/getProxyClassHash/3ddbcd9ddbb80179925bc30a42d371d91cb9b5017c3e52f66e0fb19001690927.cairo" + }, + "parent_location": [ + { + "end_col": 23, + "end_line": 54, + "input_file": { + "filename": "src/starksheet/Starksheet.cairo" + }, + "start_col": 6, + "start_line": 54 + }, + "While constructing the external wrapper for:" + ], + "start_col": 70, + "start_line": 1 + }, + "While expanding the reference 'pedersen_ptr' in:" + ], + "start_col": 44, + "start_line": 54 + }, + "While constructing the external wrapper for:" + ], + "start_col": 20, + "start_line": 1 + } + }, + "1079": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.getProxyClassHash" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 67, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/getProxyClassHash/741ea357d6336b0bed7bf0472425acd0311d543883b803388880e60a232040c7.cairo" + }, + "parent_location": [ + { + "end_col": 87, + "end_line": 54, + "input_file": { + "filename": "src/starksheet/Starksheet.cairo" + }, + "parent_location": [ + { + "end_col": 115, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/getProxyClassHash/3ddbcd9ddbb80179925bc30a42d371d91cb9b5017c3e52f66e0fb19001690927.cairo" + }, + "parent_location": [ + { + "end_col": 23, + "end_line": 54, + "input_file": { + "filename": "src/starksheet/Starksheet.cairo" + }, + "start_col": 6, + "start_line": 54 + }, + "While constructing the external wrapper for:" + ], + "start_col": 100, + "start_line": 1 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 72, + "start_line": 54 + }, + "While constructing the external wrapper for:" + ], + "start_col": 23, + "start_line": 1 + } + }, + "1080": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.getProxyClassHash" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 23, + "end_line": 54, + "input_file": { + "filename": "src/starksheet/Starksheet.cairo" + }, + "start_col": 6, + "start_line": 54 + } + }, + "1082": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.getProxyClassHash" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 115, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/getProxyClassHash/3ddbcd9ddbb80179925bc30a42d371d91cb9b5017c3e52f66e0fb19001690927.cairo" + }, + "parent_location": [ + { + "end_col": 23, + "end_line": 54, + "input_file": { + "filename": "src/starksheet/Starksheet.cairo" + }, + "parent_location": [ + { + "end_col": 106, + "end_line": 2, + "input_file": { + "filename": "autogen/starknet/external/getProxyClassHash/3ddbcd9ddbb80179925bc30a42d371d91cb9b5017c3e52f66e0fb19001690927.cairo" + }, + "parent_location": [ + { + "end_col": 23, + "end_line": 54, + "input_file": { + "filename": "src/starksheet/Starksheet.cairo" + }, + "start_col": 6, + "start_line": 54 + }, + "While constructing the external wrapper for:" + ], + "start_col": 91, + "start_line": 2 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 6, + "start_line": 54 + }, + "While constructing the external wrapper for:" + ], + "start_col": 100, + "start_line": 1 + } + }, + "1083": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.getProxyClassHash" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 107, + "end_line": 2, + "input_file": { + "filename": "autogen/starknet/external/getProxyClassHash/3ddbcd9ddbb80179925bc30a42d371d91cb9b5017c3e52f66e0fb19001690927.cairo" + }, + "parent_location": [ + { + "end_col": 23, + "end_line": 54, + "input_file": { + "filename": "src/starksheet/Starksheet.cairo" + }, + "start_col": 6, + "start_line": 54 + }, + "While constructing the external wrapper for:" + ], + "start_col": 48, + "start_line": 2 + } + }, + "1085": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.getProxyClassHash" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 55, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/getProxyClassHash/3ddbcd9ddbb80179925bc30a42d371d91cb9b5017c3e52f66e0fb19001690927.cairo" + }, + "parent_location": [ + { + "end_col": 23, + "end_line": 54, + "input_file": { + "filename": "src/starksheet/Starksheet.cairo" + }, + "parent_location": [ + { + "end_col": 20, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/getProxyClassHash/da17921a4e81c09e730800bbf23bfdbe5e9e6bfaedc59d80fbf62087fa43c27d.cairo" + }, + "parent_location": [ + { + "end_col": 23, + "end_line": 54, + "input_file": { + "filename": "src/starksheet/Starksheet.cairo" + }, + "start_col": 6, + "start_line": 54 + }, + "While constructing the external wrapper for:" + ], + "start_col": 9, + "start_line": 1 + }, + "While expanding the reference 'syscall_ptr' in:" + ], + "start_col": 6, + "start_line": 54 + }, + "While constructing the external wrapper for:" + ], + "start_col": 44, + "start_line": 1 + } + }, + "1086": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.getProxyClassHash" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 82, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/getProxyClassHash/3ddbcd9ddbb80179925bc30a42d371d91cb9b5017c3e52f66e0fb19001690927.cairo" + }, + "parent_location": [ + { + "end_col": 23, + "end_line": 54, + "input_file": { + "filename": "src/starksheet/Starksheet.cairo" + }, + "parent_location": [ + { + "end_col": 33, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/getProxyClassHash/da17921a4e81c09e730800bbf23bfdbe5e9e6bfaedc59d80fbf62087fa43c27d.cairo" + }, + "parent_location": [ + { + "end_col": 23, + "end_line": 54, + "input_file": { + "filename": "src/starksheet/Starksheet.cairo" + }, + "start_col": 6, + "start_line": 54 + }, + "While constructing the external wrapper for:" + ], + "start_col": 21, + "start_line": 1 + }, + "While expanding the reference 'pedersen_ptr' in:" + ], + "start_col": 6, + "start_line": 54 + }, + "While constructing the external wrapper for:" + ], + "start_col": 70, + "start_line": 1 + } + }, + "1087": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.getProxyClassHash" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 21, + "end_line": 2, + "input_file": { + "filename": "autogen/starknet/external/getProxyClassHash/3ddbcd9ddbb80179925bc30a42d371d91cb9b5017c3e52f66e0fb19001690927.cairo" + }, + "parent_location": [ + { + "end_col": 23, + "end_line": 54, + "input_file": { + "filename": "src/starksheet/Starksheet.cairo" + }, + "parent_location": [ + { + "end_col": 49, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/getProxyClassHash/da17921a4e81c09e730800bbf23bfdbe5e9e6bfaedc59d80fbf62087fa43c27d.cairo" + }, + "parent_location": [ + { + "end_col": 23, + "end_line": 54, + "input_file": { + "filename": "src/starksheet/Starksheet.cairo" + }, + "start_col": 6, + "start_line": 54 + }, + "While constructing the external wrapper for:" + ], + "start_col": 34, + "start_line": 1 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 6, + "start_line": 54 + }, + "While constructing the external wrapper for:" + ], + "start_col": 6, + "start_line": 2 + } + }, + "1088": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.getProxyClassHash" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 35, + "end_line": 2, + "input_file": { + "filename": "autogen/starknet/external/getProxyClassHash/3ddbcd9ddbb80179925bc30a42d371d91cb9b5017c3e52f66e0fb19001690927.cairo" + }, + "parent_location": [ + { + "end_col": 23, + "end_line": 54, + "input_file": { + "filename": "src/starksheet/Starksheet.cairo" + }, + "parent_location": [ + { + "end_col": 62, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/getProxyClassHash/da17921a4e81c09e730800bbf23bfdbe5e9e6bfaedc59d80fbf62087fa43c27d.cairo" + }, + "parent_location": [ + { + "end_col": 23, + "end_line": 54, + "input_file": { + "filename": "src/starksheet/Starksheet.cairo" + }, + "start_col": 6, + "start_line": 54 + }, + "While constructing the external wrapper for:" + ], + "start_col": 50, + "start_line": 1 + }, + "While expanding the reference 'retdata_size' in:" + ], + "start_col": 6, + "start_line": 54 + }, + "While constructing the external wrapper for:" + ], + "start_col": 23, + "start_line": 2 + } + }, + "1089": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.getProxyClassHash" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 44, + "end_line": 2, + "input_file": { + "filename": "autogen/starknet/external/getProxyClassHash/3ddbcd9ddbb80179925bc30a42d371d91cb9b5017c3e52f66e0fb19001690927.cairo" + }, + "parent_location": [ + { + "end_col": 23, + "end_line": 54, + "input_file": { + "filename": "src/starksheet/Starksheet.cairo" + }, + "parent_location": [ + { + "end_col": 70, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/getProxyClassHash/da17921a4e81c09e730800bbf23bfdbe5e9e6bfaedc59d80fbf62087fa43c27d.cairo" + }, + "parent_location": [ + { + "end_col": 23, + "end_line": 54, + "input_file": { + "filename": "src/starksheet/Starksheet.cairo" + }, + "start_col": 6, + "start_line": 54 + }, + "While constructing the external wrapper for:" + ], + "start_col": 63, + "start_line": 1 + }, + "While expanding the reference 'retdata' in:" + ], + "start_col": 6, + "start_line": 54 + }, + "While constructing the external wrapper for:" + ], + "start_col": 37, + "start_line": 2 + } + }, + "1090": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.getProxyClassHash" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 72, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/getProxyClassHash/da17921a4e81c09e730800bbf23bfdbe5e9e6bfaedc59d80fbf62087fa43c27d.cairo" + }, + "parent_location": [ + { + "end_col": 23, + "end_line": 54, + "input_file": { + "filename": "src/starksheet/Starksheet.cairo" + }, + "start_col": 6, + "start_line": 54 + }, + "While constructing the external wrapper for:" + ], + "start_col": 1, + "start_line": 1 + } + }, + "1091": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.setSheetPrice" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 38, + "end_line": 61, + "input_file": { + "filename": "src/starksheet/Starksheet.cairo" + }, + "parent_location": [ + { + "end_col": 46, + "end_line": 40, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/access/ownable/library.cairo" + }, + "parent_location": [ + { + "end_col": 32, + "end_line": 62, + "input_file": { + "filename": "src/starksheet/Starksheet.cairo" + }, + "start_col": 5, + "start_line": 62 + }, + "While trying to retrieve the implicit argument 'syscall_ptr' in:" + ], + "start_col": 28, + "start_line": 40 + }, + "While expanding the reference 'syscall_ptr' in:" + ], + "start_col": 20, + "start_line": 61 + } + }, + "1092": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.setSheetPrice" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 66, + "end_line": 61, + "input_file": { + "filename": "src/starksheet/Starksheet.cairo" + }, + "parent_location": [ + { + "end_col": 74, + "end_line": 40, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/access/ownable/library.cairo" + }, + "parent_location": [ + { + "end_col": 32, + "end_line": 62, + "input_file": { + "filename": "src/starksheet/Starksheet.cairo" + }, + "start_col": 5, + "start_line": 62 + }, + "While trying to retrieve the implicit argument 'pedersen_ptr' in:" + ], + "start_col": 48, + "start_line": 40 + }, + "While expanding the reference 'pedersen_ptr' in:" + ], + "start_col": 40, + "start_line": 61 + } + }, + "1093": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.setSheetPrice" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 83, + "end_line": 61, + "input_file": { + "filename": "src/starksheet/Starksheet.cairo" + }, + "parent_location": [ + { + "end_col": 91, + "end_line": 40, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/access/ownable/library.cairo" + }, + "parent_location": [ + { + "end_col": 32, + "end_line": 62, + "input_file": { + "filename": "src/starksheet/Starksheet.cairo" + }, + "start_col": 5, + "start_line": 62 + }, + "While trying to retrieve the implicit argument 'range_check_ptr' in:" + ], + "start_col": 76, + "start_line": 40 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 68, + "start_line": 61 + } + }, + "1094": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.setSheetPrice" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 32, + "end_line": 62, + "input_file": { + "filename": "src/starksheet/Starksheet.cairo" + }, + "start_col": 5, + "start_line": 62 + } + }, + "1096": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.setSheetPrice" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 96, + "end_line": 61, + "input_file": { + "filename": "src/starksheet/Starksheet.cairo" + }, + "parent_location": [ + { + "end_col": 37, + "end_line": 63, + "input_file": { + "filename": "src/starksheet/Starksheet.cairo" + }, + "start_col": 32, + "start_line": 63 + }, + "While expanding the reference 'price' in:" + ], + "start_col": 85, + "start_line": 61 + } + }, + "1097": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.setSheetPrice" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 38, + "end_line": 63, + "input_file": { + "filename": "src/starksheet/Starksheet.cairo" + }, + "start_col": 5, + "start_line": 63 + } + }, + "1099": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.setSheetPrice" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 15, + "end_line": 64, + "input_file": { + "filename": "src/starksheet/Starksheet.cairo" + }, + "start_col": 5, + "start_line": 64 + } + }, + "1100": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.setSheetPrice" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 40, + "end_line": 2, + "input_file": { + "filename": "autogen/starknet/arg_processor/1bbc33231ead392f3a08d02f40babade53c6aa934a03fd2567a7873343dbb650.cairo" + }, + "parent_location": [ + { + "end_col": 96, + "end_line": 61, + "input_file": { + "filename": "src/starksheet/Starksheet.cairo" + }, + "parent_location": [ + { + "end_col": 45, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/arg_processor/c31620b02d4d706f0542c989b2aadc01b0981d1f6a5933a8fe4937ace3d70d92.cairo" + }, + "parent_location": [ + { + "end_col": 19, + "end_line": 61, + "input_file": { + "filename": "src/starksheet/Starksheet.cairo" + }, + "parent_location": [ + { + "end_col": 57, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/arg_processor/01cba52f8515996bb9d7070bde81ff39281d096d7024a558efcba6e1fd2402cf.cairo" + }, + "parent_location": [ + { + "end_col": 19, + "end_line": 61, + "input_file": { + "filename": "src/starksheet/Starksheet.cairo" + }, + "start_col": 6, + "start_line": 61 + }, + "While handling calldata of" + ], + "start_col": 35, + "start_line": 1 + }, + "While expanding the reference '__calldata_actual_size' in:" + ], + "start_col": 6, + "start_line": 61 + }, + "While handling calldata of" + ], + "start_col": 31, + "start_line": 1 + }, + "While expanding the reference '__calldata_ptr' in:" + ], + "start_col": 85, + "start_line": 61 + }, + "While handling calldata argument 'price'" + ], + "start_col": 22, + "start_line": 2 + } + }, + "1102": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.setSheetPrice" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 58, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/arg_processor/01cba52f8515996bb9d7070bde81ff39281d096d7024a558efcba6e1fd2402cf.cairo" + }, + "parent_location": [ + { + "end_col": 19, + "end_line": 61, + "input_file": { + "filename": "src/starksheet/Starksheet.cairo" + }, + "start_col": 6, + "start_line": 61 + }, + "While handling calldata of" + ], + "start_col": 1, + "start_line": 1 + } + }, + "1103": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.setSheetPrice" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 64, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/setSheetPrice/b2c52ca2d2a8fc8791a983086d8716c5eacd0c3d62934914d2286f84b98ff4cb.cairo" + }, + "parent_location": [ + { + "end_col": 38, + "end_line": 61, + "input_file": { + "filename": "src/starksheet/Starksheet.cairo" + }, + "parent_location": [ + { + "end_col": 55, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/setSheetPrice/6d5d29de66493f79f0601f83ef38e1c0e00eceeff32f74d3139213305d328ede.cairo" + }, + "parent_location": [ + { + "end_col": 19, + "end_line": 61, + "input_file": { + "filename": "src/starksheet/Starksheet.cairo" + }, + "start_col": 6, + "start_line": 61 + }, + "While constructing the external wrapper for:" + ], + "start_col": 44, + "start_line": 1 + }, + "While expanding the reference 'syscall_ptr' in:" + ], + "start_col": 20, + "start_line": 61 + }, + "While constructing the external wrapper for:" + ], + "start_col": 19, + "start_line": 1 + } + }, + "1104": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.setSheetPrice" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 110, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/setSheetPrice/9684a85e93c782014ca14293edea4eb2502039a5a7b6538ecd39c56faaf12529.cairo" + }, + "parent_location": [ + { + "end_col": 66, + "end_line": 61, + "input_file": { + "filename": "src/starksheet/Starksheet.cairo" + }, + "parent_location": [ + { + "end_col": 82, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/setSheetPrice/6d5d29de66493f79f0601f83ef38e1c0e00eceeff32f74d3139213305d328ede.cairo" + }, + "parent_location": [ + { + "end_col": 19, + "end_line": 61, + "input_file": { + "filename": "src/starksheet/Starksheet.cairo" + }, + "start_col": 6, + "start_line": 61 + }, + "While constructing the external wrapper for:" + ], + "start_col": 70, + "start_line": 1 + }, + "While expanding the reference 'pedersen_ptr' in:" + ], + "start_col": 40, + "start_line": 61 + }, + "While constructing the external wrapper for:" + ], + "start_col": 20, + "start_line": 1 + } + }, + "1105": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.setSheetPrice" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 67, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/setSheetPrice/741ea357d6336b0bed7bf0472425acd0311d543883b803388880e60a232040c7.cairo" + }, + "parent_location": [ + { + "end_col": 83, + "end_line": 61, + "input_file": { + "filename": "src/starksheet/Starksheet.cairo" + }, + "parent_location": [ + { + "end_col": 115, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/setSheetPrice/6d5d29de66493f79f0601f83ef38e1c0e00eceeff32f74d3139213305d328ede.cairo" + }, + "parent_location": [ + { + "end_col": 19, + "end_line": 61, + "input_file": { + "filename": "src/starksheet/Starksheet.cairo" + }, + "start_col": 6, + "start_line": 61 + }, + "While constructing the external wrapper for:" + ], + "start_col": 100, + "start_line": 1 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 68, + "start_line": 61 + }, + "While constructing the external wrapper for:" + ], + "start_col": 23, + "start_line": 1 + } + }, + "1106": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.setSheetPrice" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 44, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/arg_processor/1bbc33231ead392f3a08d02f40babade53c6aa934a03fd2567a7873343dbb650.cairo" + }, + "parent_location": [ + { + "end_col": 96, + "end_line": 61, + "input_file": { + "filename": "src/starksheet/Starksheet.cairo" + }, + "parent_location": [ + { + "end_col": 143, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/setSheetPrice/6d5d29de66493f79f0601f83ef38e1c0e00eceeff32f74d3139213305d328ede.cairo" + }, + "parent_location": [ + { + "end_col": 19, + "end_line": 61, + "input_file": { + "filename": "src/starksheet/Starksheet.cairo" + }, + "start_col": 6, + "start_line": 61 + }, + "While constructing the external wrapper for:" + ], + "start_col": 123, + "start_line": 1 + }, + "While expanding the reference '__calldata_arg_price' in:" + ], + "start_col": 85, + "start_line": 61 + }, + "While handling calldata argument 'price'" + ], + "start_col": 28, + "start_line": 1 + } + }, + "1107": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.setSheetPrice" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 19, + "end_line": 61, + "input_file": { + "filename": "src/starksheet/Starksheet.cairo" + }, + "start_col": 6, + "start_line": 61 + } + }, + "1109": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.setSheetPrice" + ], + "flow_tracking_data": null, + "hints": [ + { + "location": { + "end_col": 34, + "end_line": 2, + "input_file": { + "filename": "autogen/starknet/external/setSheetPrice/6d5d29de66493f79f0601f83ef38e1c0e00eceeff32f74d3139213305d328ede.cairo" + }, + "parent_location": [ + { + "end_col": 19, + "end_line": 61, + "input_file": { + "filename": "src/starksheet/Starksheet.cairo" + }, + "start_col": 6, + "start_line": 61 + }, + "While constructing the external wrapper for:" + ], + "start_col": 1, + "start_line": 2 + }, + "n_prefix_newlines": 0 + } + ], + "inst": { + "end_col": 24, + "end_line": 3, + "input_file": { + "filename": "autogen/starknet/external/setSheetPrice/6d5d29de66493f79f0601f83ef38e1c0e00eceeff32f74d3139213305d328ede.cairo" + }, + "parent_location": [ + { + "end_col": 19, + "end_line": 61, + "input_file": { + "filename": "src/starksheet/Starksheet.cairo" + }, + "start_col": 6, + "start_line": 61 + }, + "While constructing the external wrapper for:" + ], + "start_col": 1, + "start_line": 3 + } + }, + "1111": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.setSheetPrice" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 55, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/setSheetPrice/6d5d29de66493f79f0601f83ef38e1c0e00eceeff32f74d3139213305d328ede.cairo" + }, + "parent_location": [ + { + "end_col": 19, + "end_line": 61, + "input_file": { + "filename": "src/starksheet/Starksheet.cairo" + }, + "parent_location": [ + { + "end_col": 20, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/setSheetPrice/da17921a4e81c09e730800bbf23bfdbe5e9e6bfaedc59d80fbf62087fa43c27d.cairo" + }, + "parent_location": [ + { + "end_col": 19, + "end_line": 61, + "input_file": { + "filename": "src/starksheet/Starksheet.cairo" + }, + "start_col": 6, + "start_line": 61 + }, + "While constructing the external wrapper for:" + ], + "start_col": 9, + "start_line": 1 + }, + "While expanding the reference 'syscall_ptr' in:" + ], + "start_col": 6, + "start_line": 61 + }, + "While constructing the external wrapper for:" + ], + "start_col": 44, + "start_line": 1 + } + }, + "1112": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.setSheetPrice" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 82, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/setSheetPrice/6d5d29de66493f79f0601f83ef38e1c0e00eceeff32f74d3139213305d328ede.cairo" + }, + "parent_location": [ + { + "end_col": 19, + "end_line": 61, + "input_file": { + "filename": "src/starksheet/Starksheet.cairo" + }, + "parent_location": [ + { + "end_col": 33, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/setSheetPrice/da17921a4e81c09e730800bbf23bfdbe5e9e6bfaedc59d80fbf62087fa43c27d.cairo" + }, + "parent_location": [ + { + "end_col": 19, + "end_line": 61, + "input_file": { + "filename": "src/starksheet/Starksheet.cairo" + }, + "start_col": 6, + "start_line": 61 + }, + "While constructing the external wrapper for:" + ], + "start_col": 21, + "start_line": 1 + }, + "While expanding the reference 'pedersen_ptr' in:" + ], + "start_col": 6, + "start_line": 61 + }, + "While constructing the external wrapper for:" + ], + "start_col": 70, + "start_line": 1 + } + }, + "1113": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.setSheetPrice" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 115, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/setSheetPrice/6d5d29de66493f79f0601f83ef38e1c0e00eceeff32f74d3139213305d328ede.cairo" + }, + "parent_location": [ + { + "end_col": 19, + "end_line": 61, + "input_file": { + "filename": "src/starksheet/Starksheet.cairo" + }, + "parent_location": [ + { + "end_col": 49, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/setSheetPrice/da17921a4e81c09e730800bbf23bfdbe5e9e6bfaedc59d80fbf62087fa43c27d.cairo" + }, + "parent_location": [ + { + "end_col": 19, + "end_line": 61, + "input_file": { + "filename": "src/starksheet/Starksheet.cairo" + }, + "start_col": 6, + "start_line": 61 + }, + "While constructing the external wrapper for:" + ], + "start_col": 34, + "start_line": 1 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 6, + "start_line": 61 + }, + "While constructing the external wrapper for:" + ], + "start_col": 100, + "start_line": 1 + } + }, + "1114": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.setSheetPrice" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 21, + "end_line": 4, + "input_file": { + "filename": "autogen/starknet/external/setSheetPrice/6d5d29de66493f79f0601f83ef38e1c0e00eceeff32f74d3139213305d328ede.cairo" + }, + "parent_location": [ + { + "end_col": 19, + "end_line": 61, + "input_file": { + "filename": "src/starksheet/Starksheet.cairo" + }, + "parent_location": [ + { + "end_col": 62, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/setSheetPrice/da17921a4e81c09e730800bbf23bfdbe5e9e6bfaedc59d80fbf62087fa43c27d.cairo" + }, + "parent_location": [ + { + "end_col": 19, + "end_line": 61, + "input_file": { + "filename": "src/starksheet/Starksheet.cairo" + }, + "start_col": 6, + "start_line": 61 + }, + "While constructing the external wrapper for:" + ], + "start_col": 50, + "start_line": 1 + }, + "While expanding the reference 'retdata_size' in:" + ], + "start_col": 6, + "start_line": 61 + }, + "While constructing the external wrapper for:" + ], + "start_col": 20, + "start_line": 4 + } + }, + "1116": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.setSheetPrice" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 16, + "end_line": 3, + "input_file": { + "filename": "autogen/starknet/external/setSheetPrice/6d5d29de66493f79f0601f83ef38e1c0e00eceeff32f74d3139213305d328ede.cairo" + }, + "parent_location": [ + { + "end_col": 19, + "end_line": 61, + "input_file": { + "filename": "src/starksheet/Starksheet.cairo" + }, + "parent_location": [ + { + "end_col": 70, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/setSheetPrice/da17921a4e81c09e730800bbf23bfdbe5e9e6bfaedc59d80fbf62087fa43c27d.cairo" + }, + "parent_location": [ + { + "end_col": 19, + "end_line": 61, + "input_file": { + "filename": "src/starksheet/Starksheet.cairo" + }, + "start_col": 6, + "start_line": 61 + }, + "While constructing the external wrapper for:" + ], + "start_col": 63, + "start_line": 1 + }, + "While expanding the reference 'retdata' in:" + ], + "start_col": 6, + "start_line": 61 + }, + "While constructing the external wrapper for:" + ], + "start_col": 9, + "start_line": 3 + } + }, + "1117": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.setSheetPrice" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 72, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/setSheetPrice/da17921a4e81c09e730800bbf23bfdbe5e9e6bfaedc59d80fbf62087fa43c27d.cairo" + }, + "parent_location": [ + { + "end_col": 19, + "end_line": 61, + "input_file": { + "filename": "src/starksheet/Starksheet.cairo" + }, + "start_col": 6, + "start_line": 61 + }, + "While constructing the external wrapper for:" + ], + "start_col": 1, + "start_line": 1 + } + }, + "1118": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.getSheetPrice" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 38, + "end_line": 68, + "input_file": { + "filename": "src/starksheet/Starksheet.cairo" + }, + "parent_location": [ + { + "end_col": 44, + "end_line": 124, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/starksheet/library.cairo" + }, + "parent_location": [ + { + "end_col": 40, + "end_line": 71, + "input_file": { + "filename": "src/starksheet/Starksheet.cairo" + }, + "start_col": 12, + "start_line": 71 + }, + "While trying to retrieve the implicit argument 'syscall_ptr' in:" + ], + "start_col": 26, + "start_line": 124 + }, + "While expanding the reference 'syscall_ptr' in:" + ], + "start_col": 20, + "start_line": 68 + } + }, + "1119": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.getSheetPrice" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 66, + "end_line": 68, + "input_file": { + "filename": "src/starksheet/Starksheet.cairo" + }, + "parent_location": [ + { + "end_col": 72, + "end_line": 124, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/starksheet/library.cairo" + }, + "parent_location": [ + { + "end_col": 40, + "end_line": 71, + "input_file": { + "filename": "src/starksheet/Starksheet.cairo" + }, + "start_col": 12, + "start_line": 71 + }, + "While trying to retrieve the implicit argument 'pedersen_ptr' in:" + ], + "start_col": 46, + "start_line": 124 + }, + "While expanding the reference 'pedersen_ptr' in:" + ], + "start_col": 40, + "start_line": 68 + } + }, + "1120": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.getSheetPrice" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 83, + "end_line": 68, + "input_file": { + "filename": "src/starksheet/Starksheet.cairo" + }, + "parent_location": [ + { + "end_col": 89, + "end_line": 124, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/starksheet/library.cairo" + }, + "parent_location": [ + { + "end_col": 40, + "end_line": 71, + "input_file": { + "filename": "src/starksheet/Starksheet.cairo" + }, + "start_col": 12, + "start_line": 71 + }, + "While trying to retrieve the implicit argument 'range_check_ptr' in:" + ], + "start_col": 74, + "start_line": 124 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 68, + "start_line": 68 + } + }, + "1121": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.getSheetPrice" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 40, + "end_line": 71, + "input_file": { + "filename": "src/starksheet/Starksheet.cairo" + }, + "start_col": 12, + "start_line": 71 + } + }, + "1123": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.getSheetPrice" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 41, + "end_line": 71, + "input_file": { + "filename": "src/starksheet/Starksheet.cairo" + }, + "start_col": 5, + "start_line": 71 + } + }, + "1124": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.getSheetPrice_encode_return" + ], + "flow_tracking_data": null, + "hints": [ + { + "location": { + "end_col": 38, + "end_line": 3, + "input_file": { + "filename": "autogen/starknet/external/return/getSheetPrice/93eae4e29a67ca16b46f063c6b446a0ffbce42260cb899d6cd4a95a7178d3b3a.cairo" + }, + "parent_location": [ + { + "end_col": 19, + "end_line": 68, + "input_file": { + "filename": "src/starksheet/Starksheet.cairo" + }, + "start_col": 6, + "start_line": 68 + }, + "While handling return value of" + ], + "start_col": 5, + "start_line": 3 + }, + "n_prefix_newlines": 0 + } + ], + "inst": { + "end_col": 18, + "end_line": 4, + "input_file": { + "filename": "autogen/starknet/external/return/getSheetPrice/93eae4e29a67ca16b46f063c6b446a0ffbce42260cb899d6cd4a95a7178d3b3a.cairo" + }, + "parent_location": [ + { + "end_col": 19, + "end_line": 68, + "input_file": { + "filename": "src/starksheet/Starksheet.cairo" + }, + "start_col": 6, + "start_line": 68 + }, + "While handling return value of" + ], + "start_col": 5, + "start_line": 4 + } + }, + "1126": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.getSheetPrice_encode_return" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 47, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/arg_processor/cee22ce33150260a0bc7aaad2ed2e39f7a6797138ea5a730329defaab1944291.cairo" + }, + "parent_location": [ + { + "end_col": 16, + "end_line": 69, + "input_file": { + "filename": "src/starksheet/Starksheet.cairo" + }, + "start_col": 5, + "start_line": 69 + }, + "While handling return value 'price'" + ], + "start_col": 1, + "start_line": 1 + } + }, + "1127": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.getSheetPrice_encode_return" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 48, + "end_line": 2, + "input_file": { + "filename": "autogen/starknet/arg_processor/cee22ce33150260a0bc7aaad2ed2e39f7a6797138ea5a730329defaab1944291.cairo" + }, + "parent_location": [ + { + "end_col": 16, + "end_line": 69, + "input_file": { + "filename": "src/starksheet/Starksheet.cairo" + }, + "parent_location": [ + { + "end_col": 36, + "end_line": 11, + "input_file": { + "filename": "autogen/starknet/external/return/getSheetPrice/93eae4e29a67ca16b46f063c6b446a0ffbce42260cb899d6cd4a95a7178d3b3a.cairo" + }, + "parent_location": [ + { + "end_col": 19, + "end_line": 68, + "input_file": { + "filename": "src/starksheet/Starksheet.cairo" + }, + "start_col": 6, + "start_line": 68 + }, + "While handling return value of" + ], + "start_col": 18, + "start_line": 11 + }, + "While expanding the reference '__return_value_ptr' in:" + ], + "start_col": 5, + "start_line": 69 + }, + "While handling return value 'price'" + ], + "start_col": 26, + "start_line": 2 + } + }, + "1129": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.getSheetPrice_encode_return" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 75, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/return/getSheetPrice/93eae4e29a67ca16b46f063c6b446a0ffbce42260cb899d6cd4a95a7178d3b3a.cairo" + }, + "parent_location": [ + { + "end_col": 19, + "end_line": 68, + "input_file": { + "filename": "src/starksheet/Starksheet.cairo" + }, + "parent_location": [ + { + "end_col": 40, + "end_line": 10, + "input_file": { + "filename": "autogen/starknet/external/return/getSheetPrice/93eae4e29a67ca16b46f063c6b446a0ffbce42260cb899d6cd4a95a7178d3b3a.cairo" + }, + "parent_location": [ + { + "end_col": 19, + "end_line": 68, + "input_file": { + "filename": "src/starksheet/Starksheet.cairo" + }, + "start_col": 6, + "start_line": 68 + }, + "While handling return value of" + ], + "start_col": 25, + "start_line": 10 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 6, + "start_line": 68 + }, + "While handling return value of" + ], + "start_col": 60, + "start_line": 1 + } + }, + "1130": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.getSheetPrice_encode_return" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 63, + "end_line": 11, + "input_file": { + "filename": "autogen/starknet/external/return/getSheetPrice/93eae4e29a67ca16b46f063c6b446a0ffbce42260cb899d6cd4a95a7178d3b3a.cairo" + }, + "parent_location": [ + { + "end_col": 19, + "end_line": 68, + "input_file": { + "filename": "src/starksheet/Starksheet.cairo" + }, + "start_col": 6, + "start_line": 68 + }, + "While handling return value of" + ], + "start_col": 18, + "start_line": 11 + } + }, + "1131": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.getSheetPrice_encode_return" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 35, + "end_line": 5, + "input_file": { + "filename": "autogen/starknet/external/return/getSheetPrice/93eae4e29a67ca16b46f063c6b446a0ffbce42260cb899d6cd4a95a7178d3b3a.cairo" + }, + "parent_location": [ + { + "end_col": 19, + "end_line": 68, + "input_file": { + "filename": "src/starksheet/Starksheet.cairo" + }, + "parent_location": [ + { + "end_col": 38, + "end_line": 12, + "input_file": { + "filename": "autogen/starknet/external/return/getSheetPrice/93eae4e29a67ca16b46f063c6b446a0ffbce42260cb899d6cd4a95a7178d3b3a.cairo" + }, + "parent_location": [ + { + "end_col": 19, + "end_line": 68, + "input_file": { + "filename": "src/starksheet/Starksheet.cairo" + }, + "start_col": 6, + "start_line": 68 + }, + "While handling return value of" + ], + "start_col": 14, + "start_line": 12 + }, + "While expanding the reference '__return_value_ptr_start' in:" + ], + "start_col": 6, + "start_line": 68 + }, + "While handling return value of" + ], + "start_col": 11, + "start_line": 5 + } + }, + "1132": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.getSheetPrice_encode_return" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 40, + "end_line": 12, + "input_file": { + "filename": "autogen/starknet/external/return/getSheetPrice/93eae4e29a67ca16b46f063c6b446a0ffbce42260cb899d6cd4a95a7178d3b3a.cairo" + }, + "parent_location": [ + { + "end_col": 19, + "end_line": 68, + "input_file": { + "filename": "src/starksheet/Starksheet.cairo" + }, + "start_col": 6, + "start_line": 68 + }, + "While handling return value of" + ], + "start_col": 5, + "start_line": 9 + } + }, + "1133": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.getSheetPrice" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 58, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/arg_processor/01cba52f8515996bb9d7070bde81ff39281d096d7024a558efcba6e1fd2402cf.cairo" + }, + "parent_location": [ + { + "end_col": 19, + "end_line": 68, + "input_file": { + "filename": "src/starksheet/Starksheet.cairo" + }, + "start_col": 6, + "start_line": 68 + }, + "While handling calldata of" + ], + "start_col": 1, + "start_line": 1 + } + }, + "1134": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.getSheetPrice" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 64, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/getSheetPrice/b2c52ca2d2a8fc8791a983086d8716c5eacd0c3d62934914d2286f84b98ff4cb.cairo" + }, + "parent_location": [ + { + "end_col": 38, + "end_line": 68, + "input_file": { + "filename": "src/starksheet/Starksheet.cairo" + }, + "parent_location": [ + { + "end_col": 55, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/getSheetPrice/4ea31fb63671d41275882d3faac7ec7e32c4e578c1b6c2bdded28c452c94582d.cairo" + }, + "parent_location": [ + { + "end_col": 19, + "end_line": 68, + "input_file": { + "filename": "src/starksheet/Starksheet.cairo" + }, + "start_col": 6, + "start_line": 68 + }, + "While constructing the external wrapper for:" + ], + "start_col": 44, + "start_line": 1 + }, + "While expanding the reference 'syscall_ptr' in:" + ], + "start_col": 20, + "start_line": 68 + }, + "While constructing the external wrapper for:" + ], + "start_col": 19, + "start_line": 1 + } + }, + "1135": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.getSheetPrice" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 110, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/getSheetPrice/9684a85e93c782014ca14293edea4eb2502039a5a7b6538ecd39c56faaf12529.cairo" + }, + "parent_location": [ + { + "end_col": 66, + "end_line": 68, + "input_file": { + "filename": "src/starksheet/Starksheet.cairo" + }, + "parent_location": [ + { + "end_col": 82, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/getSheetPrice/4ea31fb63671d41275882d3faac7ec7e32c4e578c1b6c2bdded28c452c94582d.cairo" + }, + "parent_location": [ + { + "end_col": 19, + "end_line": 68, + "input_file": { + "filename": "src/starksheet/Starksheet.cairo" + }, + "start_col": 6, + "start_line": 68 + }, + "While constructing the external wrapper for:" + ], + "start_col": 70, + "start_line": 1 + }, + "While expanding the reference 'pedersen_ptr' in:" + ], + "start_col": 40, + "start_line": 68 + }, + "While constructing the external wrapper for:" + ], + "start_col": 20, + "start_line": 1 + } + }, + "1136": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.getSheetPrice" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 67, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/getSheetPrice/741ea357d6336b0bed7bf0472425acd0311d543883b803388880e60a232040c7.cairo" + }, + "parent_location": [ + { + "end_col": 83, + "end_line": 68, + "input_file": { + "filename": "src/starksheet/Starksheet.cairo" + }, + "parent_location": [ + { + "end_col": 115, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/getSheetPrice/4ea31fb63671d41275882d3faac7ec7e32c4e578c1b6c2bdded28c452c94582d.cairo" + }, + "parent_location": [ + { + "end_col": 19, + "end_line": 68, + "input_file": { + "filename": "src/starksheet/Starksheet.cairo" + }, + "start_col": 6, + "start_line": 68 + }, + "While constructing the external wrapper for:" + ], + "start_col": 100, + "start_line": 1 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 68, + "start_line": 68 + }, + "While constructing the external wrapper for:" + ], + "start_col": 23, + "start_line": 1 + } + }, + "1137": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.getSheetPrice" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 19, + "end_line": 68, + "input_file": { + "filename": "src/starksheet/Starksheet.cairo" + }, + "start_col": 6, + "start_line": 68 + } + }, + "1139": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.getSheetPrice" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 115, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/getSheetPrice/4ea31fb63671d41275882d3faac7ec7e32c4e578c1b6c2bdded28c452c94582d.cairo" + }, + "parent_location": [ + { + "end_col": 19, + "end_line": 68, + "input_file": { + "filename": "src/starksheet/Starksheet.cairo" + }, + "parent_location": [ + { + "end_col": 102, + "end_line": 2, + "input_file": { + "filename": "autogen/starknet/external/getSheetPrice/4ea31fb63671d41275882d3faac7ec7e32c4e578c1b6c2bdded28c452c94582d.cairo" + }, + "parent_location": [ + { + "end_col": 19, + "end_line": 68, + "input_file": { + "filename": "src/starksheet/Starksheet.cairo" + }, + "start_col": 6, + "start_line": 68 + }, + "While constructing the external wrapper for:" + ], + "start_col": 87, + "start_line": 2 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 6, + "start_line": 68 + }, + "While constructing the external wrapper for:" + ], + "start_col": 100, + "start_line": 1 + } + }, + "1140": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.getSheetPrice" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 103, + "end_line": 2, + "input_file": { + "filename": "autogen/starknet/external/getSheetPrice/4ea31fb63671d41275882d3faac7ec7e32c4e578c1b6c2bdded28c452c94582d.cairo" + }, + "parent_location": [ + { + "end_col": 19, + "end_line": 68, + "input_file": { + "filename": "src/starksheet/Starksheet.cairo" + }, + "start_col": 6, + "start_line": 68 + }, + "While constructing the external wrapper for:" + ], + "start_col": 48, + "start_line": 2 + } + }, + "1142": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.getSheetPrice" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 55, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/getSheetPrice/4ea31fb63671d41275882d3faac7ec7e32c4e578c1b6c2bdded28c452c94582d.cairo" + }, + "parent_location": [ + { + "end_col": 19, + "end_line": 68, + "input_file": { + "filename": "src/starksheet/Starksheet.cairo" + }, + "parent_location": [ + { + "end_col": 20, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/getSheetPrice/da17921a4e81c09e730800bbf23bfdbe5e9e6bfaedc59d80fbf62087fa43c27d.cairo" + }, + "parent_location": [ + { + "end_col": 19, + "end_line": 68, + "input_file": { + "filename": "src/starksheet/Starksheet.cairo" + }, + "start_col": 6, + "start_line": 68 + }, + "While constructing the external wrapper for:" + ], + "start_col": 9, + "start_line": 1 + }, + "While expanding the reference 'syscall_ptr' in:" + ], + "start_col": 6, + "start_line": 68 + }, + "While constructing the external wrapper for:" + ], + "start_col": 44, + "start_line": 1 + } + }, + "1143": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.getSheetPrice" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 82, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/getSheetPrice/4ea31fb63671d41275882d3faac7ec7e32c4e578c1b6c2bdded28c452c94582d.cairo" + }, + "parent_location": [ + { + "end_col": 19, + "end_line": 68, + "input_file": { + "filename": "src/starksheet/Starksheet.cairo" + }, + "parent_location": [ + { + "end_col": 33, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/getSheetPrice/da17921a4e81c09e730800bbf23bfdbe5e9e6bfaedc59d80fbf62087fa43c27d.cairo" + }, + "parent_location": [ + { + "end_col": 19, + "end_line": 68, + "input_file": { + "filename": "src/starksheet/Starksheet.cairo" + }, + "start_col": 6, + "start_line": 68 + }, + "While constructing the external wrapper for:" + ], + "start_col": 21, + "start_line": 1 + }, + "While expanding the reference 'pedersen_ptr' in:" + ], + "start_col": 6, + "start_line": 68 + }, + "While constructing the external wrapper for:" + ], + "start_col": 70, + "start_line": 1 + } + }, + "1144": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.getSheetPrice" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 21, + "end_line": 2, + "input_file": { + "filename": "autogen/starknet/external/getSheetPrice/4ea31fb63671d41275882d3faac7ec7e32c4e578c1b6c2bdded28c452c94582d.cairo" + }, + "parent_location": [ + { + "end_col": 19, + "end_line": 68, + "input_file": { + "filename": "src/starksheet/Starksheet.cairo" + }, + "parent_location": [ + { + "end_col": 49, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/getSheetPrice/da17921a4e81c09e730800bbf23bfdbe5e9e6bfaedc59d80fbf62087fa43c27d.cairo" + }, + "parent_location": [ + { + "end_col": 19, + "end_line": 68, + "input_file": { + "filename": "src/starksheet/Starksheet.cairo" + }, + "start_col": 6, + "start_line": 68 + }, + "While constructing the external wrapper for:" + ], + "start_col": 34, + "start_line": 1 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 6, + "start_line": 68 + }, + "While constructing the external wrapper for:" + ], + "start_col": 6, + "start_line": 2 + } + }, + "1145": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.getSheetPrice" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 35, + "end_line": 2, + "input_file": { + "filename": "autogen/starknet/external/getSheetPrice/4ea31fb63671d41275882d3faac7ec7e32c4e578c1b6c2bdded28c452c94582d.cairo" + }, + "parent_location": [ + { + "end_col": 19, + "end_line": 68, + "input_file": { + "filename": "src/starksheet/Starksheet.cairo" + }, + "parent_location": [ + { + "end_col": 62, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/getSheetPrice/da17921a4e81c09e730800bbf23bfdbe5e9e6bfaedc59d80fbf62087fa43c27d.cairo" + }, + "parent_location": [ + { + "end_col": 19, + "end_line": 68, + "input_file": { + "filename": "src/starksheet/Starksheet.cairo" + }, + "start_col": 6, + "start_line": 68 + }, + "While constructing the external wrapper for:" + ], + "start_col": 50, + "start_line": 1 + }, + "While expanding the reference 'retdata_size' in:" + ], + "start_col": 6, + "start_line": 68 + }, + "While constructing the external wrapper for:" + ], + "start_col": 23, + "start_line": 2 + } + }, + "1146": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.getSheetPrice" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 44, + "end_line": 2, + "input_file": { + "filename": "autogen/starknet/external/getSheetPrice/4ea31fb63671d41275882d3faac7ec7e32c4e578c1b6c2bdded28c452c94582d.cairo" + }, + "parent_location": [ + { + "end_col": 19, + "end_line": 68, + "input_file": { + "filename": "src/starksheet/Starksheet.cairo" + }, + "parent_location": [ + { + "end_col": 70, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/getSheetPrice/da17921a4e81c09e730800bbf23bfdbe5e9e6bfaedc59d80fbf62087fa43c27d.cairo" + }, + "parent_location": [ + { + "end_col": 19, + "end_line": 68, + "input_file": { + "filename": "src/starksheet/Starksheet.cairo" + }, + "start_col": 6, + "start_line": 68 + }, + "While constructing the external wrapper for:" + ], + "start_col": 63, + "start_line": 1 + }, + "While expanding the reference 'retdata' in:" + ], + "start_col": 6, + "start_line": 68 + }, + "While constructing the external wrapper for:" + ], + "start_col": 37, + "start_line": 2 + } + }, + "1147": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.getSheetPrice" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 72, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/getSheetPrice/da17921a4e81c09e730800bbf23bfdbe5e9e6bfaedc59d80fbf62087fa43c27d.cairo" + }, + "parent_location": [ + { + "end_col": 19, + "end_line": 68, + "input_file": { + "filename": "src/starksheet/Starksheet.cairo" + }, + "start_col": 6, + "start_line": 68 + }, + "While constructing the external wrapper for:" + ], + "start_col": 1, + "start_line": 1 + } + }, + "1148": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.setMerkleRoot" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 38, + "end_line": 75, + "input_file": { + "filename": "src/starksheet/Starksheet.cairo" + }, + "parent_location": [ + { + "end_col": 46, + "end_line": 40, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/access/ownable/library.cairo" + }, + "parent_location": [ + { + "end_col": 32, + "end_line": 76, + "input_file": { + "filename": "src/starksheet/Starksheet.cairo" + }, + "start_col": 5, + "start_line": 76 + }, + "While trying to retrieve the implicit argument 'syscall_ptr' in:" + ], + "start_col": 28, + "start_line": 40 + }, + "While expanding the reference 'syscall_ptr' in:" + ], + "start_col": 20, + "start_line": 75 + } + }, + "1149": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.setMerkleRoot" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 66, + "end_line": 75, + "input_file": { + "filename": "src/starksheet/Starksheet.cairo" + }, + "parent_location": [ + { + "end_col": 74, + "end_line": 40, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/access/ownable/library.cairo" + }, + "parent_location": [ + { + "end_col": 32, + "end_line": 76, + "input_file": { + "filename": "src/starksheet/Starksheet.cairo" + }, + "start_col": 5, + "start_line": 76 + }, + "While trying to retrieve the implicit argument 'pedersen_ptr' in:" + ], + "start_col": 48, + "start_line": 40 + }, + "While expanding the reference 'pedersen_ptr' in:" + ], + "start_col": 40, + "start_line": 75 + } + }, + "1150": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.setMerkleRoot" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 83, + "end_line": 75, + "input_file": { + "filename": "src/starksheet/Starksheet.cairo" + }, + "parent_location": [ + { + "end_col": 91, + "end_line": 40, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/access/ownable/library.cairo" + }, + "parent_location": [ + { + "end_col": 32, + "end_line": 76, + "input_file": { + "filename": "src/starksheet/Starksheet.cairo" + }, + "start_col": 5, + "start_line": 76 + }, + "While trying to retrieve the implicit argument 'range_check_ptr' in:" + ], + "start_col": 76, + "start_line": 40 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 68, + "start_line": 75 + } + }, + "1151": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.setMerkleRoot" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 32, + "end_line": 76, + "input_file": { + "filename": "src/starksheet/Starksheet.cairo" + }, + "start_col": 5, + "start_line": 76 + } + }, + "1153": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.setMerkleRoot" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 95, + "end_line": 75, + "input_file": { + "filename": "src/starksheet/Starksheet.cairo" + }, + "parent_location": [ + { + "end_col": 36, + "end_line": 77, + "input_file": { + "filename": "src/starksheet/Starksheet.cairo" + }, + "start_col": 32, + "start_line": 77 + }, + "While expanding the reference 'hash' in:" + ], + "start_col": 85, + "start_line": 75 + } + }, + "1154": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.setMerkleRoot" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 37, + "end_line": 77, + "input_file": { + "filename": "src/starksheet/Starksheet.cairo" + }, + "start_col": 5, + "start_line": 77 + } + }, + "1156": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.setMerkleRoot" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 15, + "end_line": 78, + "input_file": { + "filename": "src/starksheet/Starksheet.cairo" + }, + "start_col": 5, + "start_line": 78 + } + }, + "1157": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.setMerkleRoot" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 40, + "end_line": 2, + "input_file": { + "filename": "autogen/starknet/arg_processor/b07888c526f97925bd7037f4dcde235d5ffb2d92354828348c217678c2166713.cairo" + }, + "parent_location": [ + { + "end_col": 95, + "end_line": 75, + "input_file": { + "filename": "src/starksheet/Starksheet.cairo" + }, + "parent_location": [ + { + "end_col": 45, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/arg_processor/c31620b02d4d706f0542c989b2aadc01b0981d1f6a5933a8fe4937ace3d70d92.cairo" + }, + "parent_location": [ + { + "end_col": 19, + "end_line": 75, + "input_file": { + "filename": "src/starksheet/Starksheet.cairo" + }, + "parent_location": [ + { + "end_col": 57, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/arg_processor/01cba52f8515996bb9d7070bde81ff39281d096d7024a558efcba6e1fd2402cf.cairo" + }, + "parent_location": [ + { + "end_col": 19, + "end_line": 75, + "input_file": { + "filename": "src/starksheet/Starksheet.cairo" + }, + "start_col": 6, + "start_line": 75 + }, + "While handling calldata of" + ], + "start_col": 35, + "start_line": 1 + }, + "While expanding the reference '__calldata_actual_size' in:" + ], + "start_col": 6, + "start_line": 75 + }, + "While handling calldata of" + ], + "start_col": 31, + "start_line": 1 + }, + "While expanding the reference '__calldata_ptr' in:" + ], + "start_col": 85, + "start_line": 75 + }, + "While handling calldata argument 'hash'" + ], + "start_col": 22, + "start_line": 2 + } + }, + "1159": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.setMerkleRoot" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 58, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/arg_processor/01cba52f8515996bb9d7070bde81ff39281d096d7024a558efcba6e1fd2402cf.cairo" + }, + "parent_location": [ + { + "end_col": 19, + "end_line": 75, + "input_file": { + "filename": "src/starksheet/Starksheet.cairo" + }, + "start_col": 6, + "start_line": 75 + }, + "While handling calldata of" + ], + "start_col": 1, + "start_line": 1 + } + }, + "1160": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.setMerkleRoot" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 64, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/setMerkleRoot/b2c52ca2d2a8fc8791a983086d8716c5eacd0c3d62934914d2286f84b98ff4cb.cairo" + }, + "parent_location": [ + { + "end_col": 38, + "end_line": 75, + "input_file": { + "filename": "src/starksheet/Starksheet.cairo" + }, + "parent_location": [ + { + "end_col": 55, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/setMerkleRoot/8ac52e19415f3bb85cf1477c90297e8dbedd2bf68d6a8678e8bf3e514b81cbb7.cairo" + }, + "parent_location": [ + { + "end_col": 19, + "end_line": 75, + "input_file": { + "filename": "src/starksheet/Starksheet.cairo" + }, + "start_col": 6, + "start_line": 75 + }, + "While constructing the external wrapper for:" + ], + "start_col": 44, + "start_line": 1 + }, + "While expanding the reference 'syscall_ptr' in:" + ], + "start_col": 20, + "start_line": 75 + }, + "While constructing the external wrapper for:" + ], + "start_col": 19, + "start_line": 1 + } + }, + "1161": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.setMerkleRoot" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 110, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/setMerkleRoot/9684a85e93c782014ca14293edea4eb2502039a5a7b6538ecd39c56faaf12529.cairo" + }, + "parent_location": [ + { + "end_col": 66, + "end_line": 75, + "input_file": { + "filename": "src/starksheet/Starksheet.cairo" + }, + "parent_location": [ + { + "end_col": 82, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/setMerkleRoot/8ac52e19415f3bb85cf1477c90297e8dbedd2bf68d6a8678e8bf3e514b81cbb7.cairo" + }, + "parent_location": [ + { + "end_col": 19, + "end_line": 75, + "input_file": { + "filename": "src/starksheet/Starksheet.cairo" + }, + "start_col": 6, + "start_line": 75 + }, + "While constructing the external wrapper for:" + ], + "start_col": 70, + "start_line": 1 + }, + "While expanding the reference 'pedersen_ptr' in:" + ], + "start_col": 40, + "start_line": 75 + }, + "While constructing the external wrapper for:" + ], + "start_col": 20, + "start_line": 1 + } + }, + "1162": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.setMerkleRoot" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 67, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/setMerkleRoot/741ea357d6336b0bed7bf0472425acd0311d543883b803388880e60a232040c7.cairo" + }, + "parent_location": [ + { + "end_col": 83, + "end_line": 75, + "input_file": { + "filename": "src/starksheet/Starksheet.cairo" + }, + "parent_location": [ + { + "end_col": 115, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/setMerkleRoot/8ac52e19415f3bb85cf1477c90297e8dbedd2bf68d6a8678e8bf3e514b81cbb7.cairo" + }, + "parent_location": [ + { + "end_col": 19, + "end_line": 75, + "input_file": { + "filename": "src/starksheet/Starksheet.cairo" + }, + "start_col": 6, + "start_line": 75 + }, + "While constructing the external wrapper for:" + ], + "start_col": 100, + "start_line": 1 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 68, + "start_line": 75 + }, + "While constructing the external wrapper for:" + ], + "start_col": 23, + "start_line": 1 + } + }, + "1163": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.setMerkleRoot" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 43, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/arg_processor/b07888c526f97925bd7037f4dcde235d5ffb2d92354828348c217678c2166713.cairo" + }, + "parent_location": [ + { + "end_col": 95, + "end_line": 75, + "input_file": { + "filename": "src/starksheet/Starksheet.cairo" + }, + "parent_location": [ + { + "end_col": 141, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/setMerkleRoot/8ac52e19415f3bb85cf1477c90297e8dbedd2bf68d6a8678e8bf3e514b81cbb7.cairo" + }, + "parent_location": [ + { + "end_col": 19, + "end_line": 75, + "input_file": { + "filename": "src/starksheet/Starksheet.cairo" + }, + "start_col": 6, + "start_line": 75 + }, + "While constructing the external wrapper for:" + ], + "start_col": 122, + "start_line": 1 + }, + "While expanding the reference '__calldata_arg_hash' in:" + ], + "start_col": 85, + "start_line": 75 + }, + "While handling calldata argument 'hash'" + ], + "start_col": 27, + "start_line": 1 + } + }, + "1164": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.setMerkleRoot" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 19, + "end_line": 75, + "input_file": { + "filename": "src/starksheet/Starksheet.cairo" + }, + "start_col": 6, + "start_line": 75 + } + }, + "1166": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.setMerkleRoot" + ], + "flow_tracking_data": null, + "hints": [ + { + "location": { + "end_col": 34, + "end_line": 2, + "input_file": { + "filename": "autogen/starknet/external/setMerkleRoot/8ac52e19415f3bb85cf1477c90297e8dbedd2bf68d6a8678e8bf3e514b81cbb7.cairo" + }, + "parent_location": [ + { + "end_col": 19, + "end_line": 75, + "input_file": { + "filename": "src/starksheet/Starksheet.cairo" + }, + "start_col": 6, + "start_line": 75 + }, + "While constructing the external wrapper for:" + ], + "start_col": 1, + "start_line": 2 + }, + "n_prefix_newlines": 0 + } + ], + "inst": { + "end_col": 24, + "end_line": 3, + "input_file": { + "filename": "autogen/starknet/external/setMerkleRoot/8ac52e19415f3bb85cf1477c90297e8dbedd2bf68d6a8678e8bf3e514b81cbb7.cairo" + }, + "parent_location": [ + { + "end_col": 19, + "end_line": 75, + "input_file": { + "filename": "src/starksheet/Starksheet.cairo" + }, + "start_col": 6, + "start_line": 75 + }, + "While constructing the external wrapper for:" + ], + "start_col": 1, + "start_line": 3 + } + }, + "1168": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.setMerkleRoot" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 55, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/setMerkleRoot/8ac52e19415f3bb85cf1477c90297e8dbedd2bf68d6a8678e8bf3e514b81cbb7.cairo" + }, + "parent_location": [ + { + "end_col": 19, + "end_line": 75, + "input_file": { + "filename": "src/starksheet/Starksheet.cairo" + }, + "parent_location": [ + { + "end_col": 20, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/setMerkleRoot/da17921a4e81c09e730800bbf23bfdbe5e9e6bfaedc59d80fbf62087fa43c27d.cairo" + }, + "parent_location": [ + { + "end_col": 19, + "end_line": 75, + "input_file": { + "filename": "src/starksheet/Starksheet.cairo" + }, + "start_col": 6, + "start_line": 75 + }, + "While constructing the external wrapper for:" + ], + "start_col": 9, + "start_line": 1 + }, + "While expanding the reference 'syscall_ptr' in:" + ], + "start_col": 6, + "start_line": 75 + }, + "While constructing the external wrapper for:" + ], + "start_col": 44, + "start_line": 1 + } + }, + "1169": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.setMerkleRoot" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 82, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/setMerkleRoot/8ac52e19415f3bb85cf1477c90297e8dbedd2bf68d6a8678e8bf3e514b81cbb7.cairo" + }, + "parent_location": [ + { + "end_col": 19, + "end_line": 75, + "input_file": { + "filename": "src/starksheet/Starksheet.cairo" + }, + "parent_location": [ + { + "end_col": 33, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/setMerkleRoot/da17921a4e81c09e730800bbf23bfdbe5e9e6bfaedc59d80fbf62087fa43c27d.cairo" + }, + "parent_location": [ + { + "end_col": 19, + "end_line": 75, + "input_file": { + "filename": "src/starksheet/Starksheet.cairo" + }, + "start_col": 6, + "start_line": 75 + }, + "While constructing the external wrapper for:" + ], + "start_col": 21, + "start_line": 1 + }, + "While expanding the reference 'pedersen_ptr' in:" + ], + "start_col": 6, + "start_line": 75 + }, + "While constructing the external wrapper for:" + ], + "start_col": 70, + "start_line": 1 + } + }, + "1170": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.setMerkleRoot" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 115, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/setMerkleRoot/8ac52e19415f3bb85cf1477c90297e8dbedd2bf68d6a8678e8bf3e514b81cbb7.cairo" + }, + "parent_location": [ + { + "end_col": 19, + "end_line": 75, + "input_file": { + "filename": "src/starksheet/Starksheet.cairo" + }, + "parent_location": [ + { + "end_col": 49, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/setMerkleRoot/da17921a4e81c09e730800bbf23bfdbe5e9e6bfaedc59d80fbf62087fa43c27d.cairo" + }, + "parent_location": [ + { + "end_col": 19, + "end_line": 75, + "input_file": { + "filename": "src/starksheet/Starksheet.cairo" + }, + "start_col": 6, + "start_line": 75 + }, + "While constructing the external wrapper for:" + ], + "start_col": 34, + "start_line": 1 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 6, + "start_line": 75 + }, + "While constructing the external wrapper for:" + ], + "start_col": 100, + "start_line": 1 + } + }, + "1171": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.setMerkleRoot" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 21, + "end_line": 4, + "input_file": { + "filename": "autogen/starknet/external/setMerkleRoot/8ac52e19415f3bb85cf1477c90297e8dbedd2bf68d6a8678e8bf3e514b81cbb7.cairo" + }, + "parent_location": [ + { + "end_col": 19, + "end_line": 75, + "input_file": { + "filename": "src/starksheet/Starksheet.cairo" + }, + "parent_location": [ + { + "end_col": 62, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/setMerkleRoot/da17921a4e81c09e730800bbf23bfdbe5e9e6bfaedc59d80fbf62087fa43c27d.cairo" + }, + "parent_location": [ + { + "end_col": 19, + "end_line": 75, + "input_file": { + "filename": "src/starksheet/Starksheet.cairo" + }, + "start_col": 6, + "start_line": 75 + }, + "While constructing the external wrapper for:" + ], + "start_col": 50, + "start_line": 1 + }, + "While expanding the reference 'retdata_size' in:" + ], + "start_col": 6, + "start_line": 75 + }, + "While constructing the external wrapper for:" + ], + "start_col": 20, + "start_line": 4 + } + }, + "1173": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.setMerkleRoot" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 16, + "end_line": 3, + "input_file": { + "filename": "autogen/starknet/external/setMerkleRoot/8ac52e19415f3bb85cf1477c90297e8dbedd2bf68d6a8678e8bf3e514b81cbb7.cairo" + }, + "parent_location": [ + { + "end_col": 19, + "end_line": 75, + "input_file": { + "filename": "src/starksheet/Starksheet.cairo" + }, + "parent_location": [ + { + "end_col": 70, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/setMerkleRoot/da17921a4e81c09e730800bbf23bfdbe5e9e6bfaedc59d80fbf62087fa43c27d.cairo" + }, + "parent_location": [ + { + "end_col": 19, + "end_line": 75, + "input_file": { + "filename": "src/starksheet/Starksheet.cairo" + }, + "start_col": 6, + "start_line": 75 + }, + "While constructing the external wrapper for:" + ], + "start_col": 63, + "start_line": 1 + }, + "While expanding the reference 'retdata' in:" + ], + "start_col": 6, + "start_line": 75 + }, + "While constructing the external wrapper for:" + ], + "start_col": 9, + "start_line": 3 + } + }, + "1174": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.setMerkleRoot" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 72, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/setMerkleRoot/da17921a4e81c09e730800bbf23bfdbe5e9e6bfaedc59d80fbf62087fa43c27d.cairo" + }, + "parent_location": [ + { + "end_col": 19, + "end_line": 75, + "input_file": { + "filename": "src/starksheet/Starksheet.cairo" + }, + "start_col": 6, + "start_line": 75 + }, + "While constructing the external wrapper for:" + ], + "start_col": 1, + "start_line": 1 + } + }, + "1175": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.getMerkleRoot" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 38, + "end_line": 82, + "input_file": { + "filename": "src/starksheet/Starksheet.cairo" + }, + "parent_location": [ + { + "end_col": 44, + "end_line": 150, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/starksheet/library.cairo" + }, + "parent_location": [ + { + "end_col": 40, + "end_line": 85, + "input_file": { + "filename": "src/starksheet/Starksheet.cairo" + }, + "start_col": 12, + "start_line": 85 + }, + "While trying to retrieve the implicit argument 'syscall_ptr' in:" + ], + "start_col": 26, + "start_line": 150 + }, + "While expanding the reference 'syscall_ptr' in:" + ], + "start_col": 20, + "start_line": 82 + } + }, + "1176": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.getMerkleRoot" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 66, + "end_line": 82, + "input_file": { + "filename": "src/starksheet/Starksheet.cairo" + }, + "parent_location": [ + { + "end_col": 72, + "end_line": 150, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/starksheet/library.cairo" + }, + "parent_location": [ + { + "end_col": 40, + "end_line": 85, + "input_file": { + "filename": "src/starksheet/Starksheet.cairo" + }, + "start_col": 12, + "start_line": 85 + }, + "While trying to retrieve the implicit argument 'pedersen_ptr' in:" + ], + "start_col": 46, + "start_line": 150 + }, + "While expanding the reference 'pedersen_ptr' in:" + ], + "start_col": 40, + "start_line": 82 + } + }, + "1177": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.getMerkleRoot" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 83, + "end_line": 82, + "input_file": { + "filename": "src/starksheet/Starksheet.cairo" + }, + "parent_location": [ + { + "end_col": 89, + "end_line": 150, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/starksheet/library.cairo" + }, + "parent_location": [ + { + "end_col": 40, + "end_line": 85, + "input_file": { + "filename": "src/starksheet/Starksheet.cairo" + }, + "start_col": 12, + "start_line": 85 + }, + "While trying to retrieve the implicit argument 'range_check_ptr' in:" + ], + "start_col": 74, + "start_line": 150 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 68, + "start_line": 82 + } + }, + "1178": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.getMerkleRoot" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 40, + "end_line": 85, + "input_file": { + "filename": "src/starksheet/Starksheet.cairo" + }, + "start_col": 12, + "start_line": 85 + } + }, + "1180": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.getMerkleRoot" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 41, + "end_line": 85, + "input_file": { + "filename": "src/starksheet/Starksheet.cairo" + }, + "start_col": 5, + "start_line": 85 + } + }, + "1181": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.getMerkleRoot_encode_return" + ], + "flow_tracking_data": null, + "hints": [ + { + "location": { + "end_col": 38, + "end_line": 3, + "input_file": { + "filename": "autogen/starknet/external/return/getMerkleRoot/ddb7d9da9030e09c7f314f18ea53ecb8a548a5f6a06f18915fb9ebc8540b3afb.cairo" + }, + "parent_location": [ + { + "end_col": 19, + "end_line": 82, + "input_file": { + "filename": "src/starksheet/Starksheet.cairo" + }, + "start_col": 6, + "start_line": 82 + }, + "While handling return value of" + ], + "start_col": 5, + "start_line": 3 + }, + "n_prefix_newlines": 0 + } + ], + "inst": { + "end_col": 18, + "end_line": 4, + "input_file": { + "filename": "autogen/starknet/external/return/getMerkleRoot/ddb7d9da9030e09c7f314f18ea53ecb8a548a5f6a06f18915fb9ebc8540b3afb.cairo" + }, + "parent_location": [ + { + "end_col": 19, + "end_line": 82, + "input_file": { + "filename": "src/starksheet/Starksheet.cairo" + }, + "start_col": 6, + "start_line": 82 + }, + "While handling return value of" + ], + "start_col": 5, + "start_line": 4 + } + }, + "1183": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.getMerkleRoot_encode_return" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 46, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/arg_processor/a659306d4758a5c63e995df20d060f91abc84aed3cd250525fc5b97fe025812e.cairo" + }, + "parent_location": [ + { + "end_col": 15, + "end_line": 83, + "input_file": { + "filename": "src/starksheet/Starksheet.cairo" + }, + "start_col": 5, + "start_line": 83 + }, + "While handling return value 'hash'" + ], + "start_col": 1, + "start_line": 1 + } + }, + "1184": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.getMerkleRoot_encode_return" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 48, + "end_line": 2, + "input_file": { + "filename": "autogen/starknet/arg_processor/a659306d4758a5c63e995df20d060f91abc84aed3cd250525fc5b97fe025812e.cairo" + }, + "parent_location": [ + { + "end_col": 15, + "end_line": 83, + "input_file": { + "filename": "src/starksheet/Starksheet.cairo" + }, + "parent_location": [ + { + "end_col": 36, + "end_line": 11, + "input_file": { + "filename": "autogen/starknet/external/return/getMerkleRoot/ddb7d9da9030e09c7f314f18ea53ecb8a548a5f6a06f18915fb9ebc8540b3afb.cairo" + }, + "parent_location": [ + { + "end_col": 19, + "end_line": 82, + "input_file": { + "filename": "src/starksheet/Starksheet.cairo" + }, + "start_col": 6, + "start_line": 82 + }, + "While handling return value of" + ], + "start_col": 18, + "start_line": 11 + }, + "While expanding the reference '__return_value_ptr' in:" + ], + "start_col": 5, + "start_line": 83 + }, + "While handling return value 'hash'" + ], + "start_col": 26, + "start_line": 2 + } + }, + "1186": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.getMerkleRoot_encode_return" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 74, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/return/getMerkleRoot/ddb7d9da9030e09c7f314f18ea53ecb8a548a5f6a06f18915fb9ebc8540b3afb.cairo" + }, + "parent_location": [ + { + "end_col": 19, + "end_line": 82, + "input_file": { + "filename": "src/starksheet/Starksheet.cairo" + }, + "parent_location": [ + { + "end_col": 40, + "end_line": 10, + "input_file": { + "filename": "autogen/starknet/external/return/getMerkleRoot/ddb7d9da9030e09c7f314f18ea53ecb8a548a5f6a06f18915fb9ebc8540b3afb.cairo" + }, + "parent_location": [ + { + "end_col": 19, + "end_line": 82, + "input_file": { + "filename": "src/starksheet/Starksheet.cairo" + }, + "start_col": 6, + "start_line": 82 + }, + "While handling return value of" + ], + "start_col": 25, + "start_line": 10 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 6, + "start_line": 82 + }, + "While handling return value of" + ], + "start_col": 59, + "start_line": 1 + } + }, + "1187": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.getMerkleRoot_encode_return" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 63, + "end_line": 11, + "input_file": { + "filename": "autogen/starknet/external/return/getMerkleRoot/ddb7d9da9030e09c7f314f18ea53ecb8a548a5f6a06f18915fb9ebc8540b3afb.cairo" + }, + "parent_location": [ + { + "end_col": 19, + "end_line": 82, + "input_file": { + "filename": "src/starksheet/Starksheet.cairo" + }, + "start_col": 6, + "start_line": 82 + }, + "While handling return value of" + ], + "start_col": 18, + "start_line": 11 + } + }, + "1188": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.getMerkleRoot_encode_return" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 35, + "end_line": 5, + "input_file": { + "filename": "autogen/starknet/external/return/getMerkleRoot/ddb7d9da9030e09c7f314f18ea53ecb8a548a5f6a06f18915fb9ebc8540b3afb.cairo" + }, + "parent_location": [ + { + "end_col": 19, + "end_line": 82, + "input_file": { + "filename": "src/starksheet/Starksheet.cairo" + }, + "parent_location": [ + { + "end_col": 38, + "end_line": 12, + "input_file": { + "filename": "autogen/starknet/external/return/getMerkleRoot/ddb7d9da9030e09c7f314f18ea53ecb8a548a5f6a06f18915fb9ebc8540b3afb.cairo" + }, + "parent_location": [ + { + "end_col": 19, + "end_line": 82, + "input_file": { + "filename": "src/starksheet/Starksheet.cairo" + }, + "start_col": 6, + "start_line": 82 + }, + "While handling return value of" + ], + "start_col": 14, + "start_line": 12 + }, + "While expanding the reference '__return_value_ptr_start' in:" + ], + "start_col": 6, + "start_line": 82 + }, + "While handling return value of" + ], + "start_col": 11, + "start_line": 5 + } + }, + "1189": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.getMerkleRoot_encode_return" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 40, + "end_line": 12, + "input_file": { + "filename": "autogen/starknet/external/return/getMerkleRoot/ddb7d9da9030e09c7f314f18ea53ecb8a548a5f6a06f18915fb9ebc8540b3afb.cairo" + }, + "parent_location": [ + { + "end_col": 19, + "end_line": 82, + "input_file": { + "filename": "src/starksheet/Starksheet.cairo" + }, + "start_col": 6, + "start_line": 82 + }, + "While handling return value of" + ], + "start_col": 5, + "start_line": 9 + } + }, + "1190": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.getMerkleRoot" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 58, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/arg_processor/01cba52f8515996bb9d7070bde81ff39281d096d7024a558efcba6e1fd2402cf.cairo" + }, + "parent_location": [ + { + "end_col": 19, + "end_line": 82, + "input_file": { + "filename": "src/starksheet/Starksheet.cairo" + }, + "start_col": 6, + "start_line": 82 + }, + "While handling calldata of" + ], + "start_col": 1, + "start_line": 1 + } + }, + "1191": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.getMerkleRoot" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 64, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/getMerkleRoot/b2c52ca2d2a8fc8791a983086d8716c5eacd0c3d62934914d2286f84b98ff4cb.cairo" + }, + "parent_location": [ + { + "end_col": 38, + "end_line": 82, + "input_file": { + "filename": "src/starksheet/Starksheet.cairo" + }, + "parent_location": [ + { + "end_col": 55, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/getMerkleRoot/9ec40c6ab1532b67d6b3241da7f0fc2a824d63002b85dbc8e7b345e400aebd93.cairo" + }, + "parent_location": [ + { + "end_col": 19, + "end_line": 82, + "input_file": { + "filename": "src/starksheet/Starksheet.cairo" + }, + "start_col": 6, + "start_line": 82 + }, + "While constructing the external wrapper for:" + ], + "start_col": 44, + "start_line": 1 + }, + "While expanding the reference 'syscall_ptr' in:" + ], + "start_col": 20, + "start_line": 82 + }, + "While constructing the external wrapper for:" + ], + "start_col": 19, + "start_line": 1 + } + }, + "1192": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.getMerkleRoot" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 110, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/getMerkleRoot/9684a85e93c782014ca14293edea4eb2502039a5a7b6538ecd39c56faaf12529.cairo" + }, + "parent_location": [ + { + "end_col": 66, + "end_line": 82, + "input_file": { + "filename": "src/starksheet/Starksheet.cairo" + }, + "parent_location": [ + { + "end_col": 82, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/getMerkleRoot/9ec40c6ab1532b67d6b3241da7f0fc2a824d63002b85dbc8e7b345e400aebd93.cairo" + }, + "parent_location": [ + { + "end_col": 19, + "end_line": 82, + "input_file": { + "filename": "src/starksheet/Starksheet.cairo" + }, + "start_col": 6, + "start_line": 82 + }, + "While constructing the external wrapper for:" + ], + "start_col": 70, + "start_line": 1 + }, + "While expanding the reference 'pedersen_ptr' in:" + ], + "start_col": 40, + "start_line": 82 + }, + "While constructing the external wrapper for:" + ], + "start_col": 20, + "start_line": 1 + } + }, + "1193": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.getMerkleRoot" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 67, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/getMerkleRoot/741ea357d6336b0bed7bf0472425acd0311d543883b803388880e60a232040c7.cairo" + }, + "parent_location": [ + { + "end_col": 83, + "end_line": 82, + "input_file": { + "filename": "src/starksheet/Starksheet.cairo" + }, + "parent_location": [ + { + "end_col": 115, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/getMerkleRoot/9ec40c6ab1532b67d6b3241da7f0fc2a824d63002b85dbc8e7b345e400aebd93.cairo" + }, + "parent_location": [ + { + "end_col": 19, + "end_line": 82, + "input_file": { + "filename": "src/starksheet/Starksheet.cairo" + }, + "start_col": 6, + "start_line": 82 + }, + "While constructing the external wrapper for:" + ], + "start_col": 100, + "start_line": 1 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 68, + "start_line": 82 + }, + "While constructing the external wrapper for:" + ], + "start_col": 23, + "start_line": 1 + } + }, + "1194": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.getMerkleRoot" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 19, + "end_line": 82, + "input_file": { + "filename": "src/starksheet/Starksheet.cairo" + }, + "start_col": 6, + "start_line": 82 + } + }, + "1196": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.getMerkleRoot" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 115, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/getMerkleRoot/9ec40c6ab1532b67d6b3241da7f0fc2a824d63002b85dbc8e7b345e400aebd93.cairo" + }, + "parent_location": [ + { + "end_col": 19, + "end_line": 82, + "input_file": { + "filename": "src/starksheet/Starksheet.cairo" + }, + "parent_location": [ + { + "end_col": 102, + "end_line": 2, + "input_file": { + "filename": "autogen/starknet/external/getMerkleRoot/9ec40c6ab1532b67d6b3241da7f0fc2a824d63002b85dbc8e7b345e400aebd93.cairo" + }, + "parent_location": [ + { + "end_col": 19, + "end_line": 82, + "input_file": { + "filename": "src/starksheet/Starksheet.cairo" + }, + "start_col": 6, + "start_line": 82 + }, + "While constructing the external wrapper for:" + ], + "start_col": 87, + "start_line": 2 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 6, + "start_line": 82 + }, + "While constructing the external wrapper for:" + ], + "start_col": 100, + "start_line": 1 + } + }, + "1197": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.getMerkleRoot" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 103, + "end_line": 2, + "input_file": { + "filename": "autogen/starknet/external/getMerkleRoot/9ec40c6ab1532b67d6b3241da7f0fc2a824d63002b85dbc8e7b345e400aebd93.cairo" + }, + "parent_location": [ + { + "end_col": 19, + "end_line": 82, + "input_file": { + "filename": "src/starksheet/Starksheet.cairo" + }, + "start_col": 6, + "start_line": 82 + }, + "While constructing the external wrapper for:" + ], + "start_col": 48, + "start_line": 2 + } + }, + "1199": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.getMerkleRoot" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 55, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/getMerkleRoot/9ec40c6ab1532b67d6b3241da7f0fc2a824d63002b85dbc8e7b345e400aebd93.cairo" + }, + "parent_location": [ + { + "end_col": 19, + "end_line": 82, + "input_file": { + "filename": "src/starksheet/Starksheet.cairo" + }, + "parent_location": [ + { + "end_col": 20, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/getMerkleRoot/da17921a4e81c09e730800bbf23bfdbe5e9e6bfaedc59d80fbf62087fa43c27d.cairo" + }, + "parent_location": [ + { + "end_col": 19, + "end_line": 82, + "input_file": { + "filename": "src/starksheet/Starksheet.cairo" + }, + "start_col": 6, + "start_line": 82 + }, + "While constructing the external wrapper for:" + ], + "start_col": 9, + "start_line": 1 + }, + "While expanding the reference 'syscall_ptr' in:" + ], + "start_col": 6, + "start_line": 82 + }, + "While constructing the external wrapper for:" + ], + "start_col": 44, + "start_line": 1 + } + }, + "1200": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.getMerkleRoot" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 82, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/getMerkleRoot/9ec40c6ab1532b67d6b3241da7f0fc2a824d63002b85dbc8e7b345e400aebd93.cairo" + }, + "parent_location": [ + { + "end_col": 19, + "end_line": 82, + "input_file": { + "filename": "src/starksheet/Starksheet.cairo" + }, + "parent_location": [ + { + "end_col": 33, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/getMerkleRoot/da17921a4e81c09e730800bbf23bfdbe5e9e6bfaedc59d80fbf62087fa43c27d.cairo" + }, + "parent_location": [ + { + "end_col": 19, + "end_line": 82, + "input_file": { + "filename": "src/starksheet/Starksheet.cairo" + }, + "start_col": 6, + "start_line": 82 + }, + "While constructing the external wrapper for:" + ], + "start_col": 21, + "start_line": 1 + }, + "While expanding the reference 'pedersen_ptr' in:" + ], + "start_col": 6, + "start_line": 82 + }, + "While constructing the external wrapper for:" + ], + "start_col": 70, + "start_line": 1 + } + }, + "1201": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.getMerkleRoot" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 21, + "end_line": 2, + "input_file": { + "filename": "autogen/starknet/external/getMerkleRoot/9ec40c6ab1532b67d6b3241da7f0fc2a824d63002b85dbc8e7b345e400aebd93.cairo" + }, + "parent_location": [ + { + "end_col": 19, + "end_line": 82, + "input_file": { + "filename": "src/starksheet/Starksheet.cairo" + }, + "parent_location": [ + { + "end_col": 49, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/getMerkleRoot/da17921a4e81c09e730800bbf23bfdbe5e9e6bfaedc59d80fbf62087fa43c27d.cairo" + }, + "parent_location": [ + { + "end_col": 19, + "end_line": 82, + "input_file": { + "filename": "src/starksheet/Starksheet.cairo" + }, + "start_col": 6, + "start_line": 82 + }, + "While constructing the external wrapper for:" + ], + "start_col": 34, + "start_line": 1 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 6, + "start_line": 82 + }, + "While constructing the external wrapper for:" + ], + "start_col": 6, + "start_line": 2 + } + }, + "1202": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.getMerkleRoot" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 35, + "end_line": 2, + "input_file": { + "filename": "autogen/starknet/external/getMerkleRoot/9ec40c6ab1532b67d6b3241da7f0fc2a824d63002b85dbc8e7b345e400aebd93.cairo" + }, + "parent_location": [ + { + "end_col": 19, + "end_line": 82, + "input_file": { + "filename": "src/starksheet/Starksheet.cairo" + }, + "parent_location": [ + { + "end_col": 62, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/getMerkleRoot/da17921a4e81c09e730800bbf23bfdbe5e9e6bfaedc59d80fbf62087fa43c27d.cairo" + }, + "parent_location": [ + { + "end_col": 19, + "end_line": 82, + "input_file": { + "filename": "src/starksheet/Starksheet.cairo" + }, + "start_col": 6, + "start_line": 82 + }, + "While constructing the external wrapper for:" + ], + "start_col": 50, + "start_line": 1 + }, + "While expanding the reference 'retdata_size' in:" + ], + "start_col": 6, + "start_line": 82 + }, + "While constructing the external wrapper for:" + ], + "start_col": 23, + "start_line": 2 + } + }, + "1203": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.getMerkleRoot" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 44, + "end_line": 2, + "input_file": { + "filename": "autogen/starknet/external/getMerkleRoot/9ec40c6ab1532b67d6b3241da7f0fc2a824d63002b85dbc8e7b345e400aebd93.cairo" + }, + "parent_location": [ + { + "end_col": 19, + "end_line": 82, + "input_file": { + "filename": "src/starksheet/Starksheet.cairo" + }, + "parent_location": [ + { + "end_col": 70, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/getMerkleRoot/da17921a4e81c09e730800bbf23bfdbe5e9e6bfaedc59d80fbf62087fa43c27d.cairo" + }, + "parent_location": [ + { + "end_col": 19, + "end_line": 82, + "input_file": { + "filename": "src/starksheet/Starksheet.cairo" + }, + "start_col": 6, + "start_line": 82 + }, + "While constructing the external wrapper for:" + ], + "start_col": 63, + "start_line": 1 + }, + "While expanding the reference 'retdata' in:" + ], + "start_col": 6, + "start_line": 82 + }, + "While constructing the external wrapper for:" + ], + "start_col": 37, + "start_line": 2 + } + }, + "1204": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.getMerkleRoot" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 72, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/getMerkleRoot/da17921a4e81c09e730800bbf23bfdbe5e9e6bfaedc59d80fbf62087fa43c27d.cairo" + }, + "parent_location": [ + { + "end_col": 19, + "end_line": 82, + "input_file": { + "filename": "src/starksheet/Starksheet.cairo" + }, + "start_col": 6, + "start_line": 82 + }, + "While constructing the external wrapper for:" + ], + "start_col": 1, + "start_line": 1 + } + }, + "1205": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.getSheets" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 34, + "end_line": 89, + "input_file": { + "filename": "src/starksheet/Starksheet.cairo" + }, + "parent_location": [ + { + "end_col": 39, + "end_line": 47, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/starksheet/library.cairo" + }, + "parent_location": [ + { + "end_col": 61, + "end_line": 92, + "input_file": { + "filename": "src/starksheet/Starksheet.cairo" + }, + "start_col": 38, + "start_line": 92 + }, + "While trying to retrieve the implicit argument 'syscall_ptr' in:" + ], + "start_col": 21, + "start_line": 47 + }, + "While expanding the reference 'syscall_ptr' in:" + ], + "start_col": 16, + "start_line": 89 + } + }, + "1206": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.getSheets" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 62, + "end_line": 89, + "input_file": { + "filename": "src/starksheet/Starksheet.cairo" + }, + "parent_location": [ + { + "end_col": 67, + "end_line": 47, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/starksheet/library.cairo" + }, + "parent_location": [ + { + "end_col": 61, + "end_line": 92, + "input_file": { + "filename": "src/starksheet/Starksheet.cairo" + }, + "start_col": 38, + "start_line": 92 + }, + "While trying to retrieve the implicit argument 'pedersen_ptr' in:" + ], + "start_col": 41, + "start_line": 47 + }, + "While expanding the reference 'pedersen_ptr' in:" + ], + "start_col": 36, + "start_line": 89 + } + }, + "1207": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.getSheets" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 79, + "end_line": 89, + "input_file": { + "filename": "src/starksheet/Starksheet.cairo" + }, + "parent_location": [ + { + "end_col": 84, + "end_line": 47, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/starksheet/library.cairo" + }, + "parent_location": [ + { + "end_col": 61, + "end_line": 92, + "input_file": { + "filename": "src/starksheet/Starksheet.cairo" + }, + "start_col": 38, + "start_line": 92 + }, + "While trying to retrieve the implicit argument 'range_check_ptr' in:" + ], + "start_col": 69, + "start_line": 47 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 64, + "start_line": 89 + } + }, + "1208": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.getSheets" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 61, + "end_line": 92, + "input_file": { + "filename": "src/starksheet/Starksheet.cairo" + }, + "start_col": 38, + "start_line": 92 + } + }, + "1210": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.getSheets" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 39, + "end_line": 93, + "input_file": { + "filename": "src/starksheet/Starksheet.cairo" + }, + "start_col": 5, + "start_line": 93 + } + }, + "1211": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.getSheets_encode_return" + ], + "flow_tracking_data": null, + "hints": [ + { + "location": { + "end_col": 38, + "end_line": 3, + "input_file": { + "filename": "autogen/starknet/external/return/getSheets/3ee09188a7f72b618ca4555f4b4595aaf6af90a1f294aecce708831d91da9435.cairo" + }, + "parent_location": [ + { + "end_col": 15, + "end_line": 89, + "input_file": { + "filename": "src/starksheet/Starksheet.cairo" + }, + "start_col": 6, + "start_line": 89 + }, + "While handling return value of" + ], + "start_col": 5, + "start_line": 3 + }, + "n_prefix_newlines": 0 + } + ], + "inst": { + "end_col": 18, + "end_line": 4, + "input_file": { + "filename": "autogen/starknet/external/return/getSheets/3ee09188a7f72b618ca4555f4b4595aaf6af90a1f294aecce708831d91da9435.cairo" + }, + "parent_location": [ + { + "end_col": 15, + "end_line": 89, + "input_file": { + "filename": "src/starksheet/Starksheet.cairo" + }, + "start_col": 6, + "start_line": 89 + }, + "While handling return value of" + ], + "start_col": 5, + "start_line": 4 + } + }, + "1213": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.getSheets_encode_return" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 55, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/arg_processor/3e385d05eb8b8962d4f5c1b3d49f84f4e59f25eac4e17d295a6d37189be1249a.cairo" + }, + "parent_location": [ + { + "end_col": 24, + "end_line": 90, + "input_file": { + "filename": "src/starksheet/Starksheet.cairo" + }, + "start_col": 5, + "start_line": 90 + }, + "While handling return value 'addresses_len'" + ], + "start_col": 1, + "start_line": 1 + } + }, + "1214": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.getSheets_encode_return" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 52, + "end_line": 2, + "input_file": { + "filename": "autogen/starknet/arg_processor/acb57963143b0014f89246f7251457b3db569260785a29b3c1873be8a361d0ee.cairo" + }, + "parent_location": [ + { + "end_col": 42, + "end_line": 90, + "input_file": { + "filename": "src/starksheet/Starksheet.cairo" + }, + "start_col": 26, + "start_line": 90 + }, + "While handling return value 'addresses'" + ], + "start_col": 1, + "start_line": 2 + } + }, + "1215": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.getSheets_encode_return" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 45, + "end_line": 5, + "input_file": { + "filename": "autogen/starknet/arg_processor/acb57963143b0014f89246f7251457b3db569260785a29b3c1873be8a361d0ee.cairo" + }, + "parent_location": [ + { + "end_col": 42, + "end_line": 90, + "input_file": { + "filename": "src/starksheet/Starksheet.cairo" + }, + "start_col": 26, + "start_line": 90 + }, + "While handling return value 'addresses'" + ], + "start_col": 1, + "start_line": 5 + } + }, + "1217": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.getSheets_encode_return" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 48, + "end_line": 2, + "input_file": { + "filename": "autogen/starknet/arg_processor/3e385d05eb8b8962d4f5c1b3d49f84f4e59f25eac4e17d295a6d37189be1249a.cairo" + }, + "parent_location": [ + { + "end_col": 24, + "end_line": 90, + "input_file": { + "filename": "src/starksheet/Starksheet.cairo" + }, + "parent_location": [ + { + "end_col": 53, + "end_line": 10, + "input_file": { + "filename": "autogen/starknet/arg_processor/acb57963143b0014f89246f7251457b3db569260785a29b3c1873be8a361d0ee.cairo" + }, + "parent_location": [ + { + "end_col": 42, + "end_line": 90, + "input_file": { + "filename": "src/starksheet/Starksheet.cairo" + }, + "start_col": 26, + "start_line": 90 + }, + "While handling return value 'addresses'" + ], + "start_col": 35, + "start_line": 10 + }, + "While expanding the reference '__return_value_ptr' in:" + ], + "start_col": 5, + "start_line": 90 + }, + "While handling return value 'addresses_len'" + ], + "start_col": 26, + "start_line": 2 + } + }, + "1219": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.getSheets_encode_return" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 84, + "end_line": 10, + "input_file": { + "filename": "autogen/starknet/arg_processor/acb57963143b0014f89246f7251457b3db569260785a29b3c1873be8a361d0ee.cairo" + }, + "parent_location": [ + { + "end_col": 42, + "end_line": 90, + "input_file": { + "filename": "src/starksheet/Starksheet.cairo" + }, + "start_col": 26, + "start_line": 90 + }, + "While handling return value 'addresses'" + ], + "start_col": 1, + "start_line": 10 + } + }, + "1220": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.getSheets_encode_return" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 48, + "end_line": 2, + "input_file": { + "filename": "autogen/starknet/arg_processor/3e385d05eb8b8962d4f5c1b3d49f84f4e59f25eac4e17d295a6d37189be1249a.cairo" + }, + "parent_location": [ + { + "end_col": 24, + "end_line": 90, + "input_file": { + "filename": "src/starksheet/Starksheet.cairo" + }, + "parent_location": [ + { + "end_col": 49, + "end_line": 7, + "input_file": { + "filename": "autogen/starknet/arg_processor/acb57963143b0014f89246f7251457b3db569260785a29b3c1873be8a361d0ee.cairo" + }, + "parent_location": [ + { + "end_col": 42, + "end_line": 90, + "input_file": { + "filename": "src/starksheet/Starksheet.cairo" + }, + "parent_location": [ + { + "end_col": 32, + "end_line": 12, + "input_file": { + "filename": "autogen/starknet/arg_processor/acb57963143b0014f89246f7251457b3db569260785a29b3c1873be8a361d0ee.cairo" + }, + "parent_location": [ + { + "end_col": 42, + "end_line": 90, + "input_file": { + "filename": "src/starksheet/Starksheet.cairo" + }, + "start_col": 26, + "start_line": 90 + }, + "While handling return value 'addresses'" + ], + "start_col": 9, + "start_line": 12 + }, + "While expanding the reference '__return_value_ptr_copy' in:" + ], + "start_col": 26, + "start_line": 90 + }, + "While handling return value 'addresses'" + ], + "start_col": 31, + "start_line": 7 + }, + "While expanding the reference '__return_value_ptr' in:" + ], + "start_col": 5, + "start_line": 90 + }, + "While handling return value 'addresses_len'" + ], + "start_col": 26, + "start_line": 2 + } + }, + "1222": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.getSheets_encode_return" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 28, + "end_line": 13, + "input_file": { + "filename": "autogen/starknet/arg_processor/acb57963143b0014f89246f7251457b3db569260785a29b3c1873be8a361d0ee.cairo" + }, + "parent_location": [ + { + "end_col": 42, + "end_line": 90, + "input_file": { + "filename": "src/starksheet/Starksheet.cairo" + }, + "start_col": 26, + "start_line": 90 + }, + "While handling return value 'addresses'" + ], + "start_col": 9, + "start_line": 13 + } + }, + "1223": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.getSheets_encode_return" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 32, + "end_line": 14, + "input_file": { + "filename": "autogen/starknet/arg_processor/acb57963143b0014f89246f7251457b3db569260785a29b3c1873be8a361d0ee.cairo" + }, + "parent_location": [ + { + "end_col": 42, + "end_line": 90, + "input_file": { + "filename": "src/starksheet/Starksheet.cairo" + }, + "start_col": 26, + "start_line": 90 + }, + "While handling return value 'addresses'" + ], + "start_col": 9, + "start_line": 14 + } + }, + "1224": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.getSheets_encode_return" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 37, + "end_line": 14, + "input_file": { + "filename": "autogen/starknet/arg_processor/acb57963143b0014f89246f7251457b3db569260785a29b3c1873be8a361d0ee.cairo" + }, + "parent_location": [ + { + "end_col": 42, + "end_line": 90, + "input_file": { + "filename": "src/starksheet/Starksheet.cairo" + }, + "start_col": 26, + "start_line": 90 + }, + "While handling return value 'addresses'" + ], + "start_col": 1, + "start_line": 11 + } + }, + "1226": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.getSheets_encode_return" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 22, + "end_line": 5, + "input_file": { + "filename": "autogen/starknet/arg_processor/acb57963143b0014f89246f7251457b3db569260785a29b3c1873be8a361d0ee.cairo" + }, + "parent_location": [ + { + "end_col": 42, + "end_line": 90, + "input_file": { + "filename": "src/starksheet/Starksheet.cairo" + }, + "parent_location": [ + { + "end_col": 40, + "end_line": 10, + "input_file": { + "filename": "autogen/starknet/external/return/getSheets/3ee09188a7f72b618ca4555f4b4595aaf6af90a1f294aecce708831d91da9435.cairo" + }, + "parent_location": [ + { + "end_col": 15, + "end_line": 89, + "input_file": { + "filename": "src/starksheet/Starksheet.cairo" + }, + "start_col": 6, + "start_line": 89 + }, + "While handling return value of" + ], + "start_col": 25, + "start_line": 10 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 26, + "start_line": 90 + }, + "While handling return value 'addresses'" + ], + "start_col": 7, + "start_line": 5 + } + }, + "1227": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.getSheets_encode_return" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 63, + "end_line": 11, + "input_file": { + "filename": "autogen/starknet/external/return/getSheets/3ee09188a7f72b618ca4555f4b4595aaf6af90a1f294aecce708831d91da9435.cairo" + }, + "parent_location": [ + { + "end_col": 15, + "end_line": 89, + "input_file": { + "filename": "src/starksheet/Starksheet.cairo" + }, + "start_col": 6, + "start_line": 89 + }, + "While handling return value of" + ], + "start_col": 18, + "start_line": 11 + } + }, + "1228": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.getSheets_encode_return" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 35, + "end_line": 5, + "input_file": { + "filename": "autogen/starknet/external/return/getSheets/3ee09188a7f72b618ca4555f4b4595aaf6af90a1f294aecce708831d91da9435.cairo" + }, + "parent_location": [ + { + "end_col": 15, + "end_line": 89, + "input_file": { + "filename": "src/starksheet/Starksheet.cairo" + }, + "parent_location": [ + { + "end_col": 38, + "end_line": 12, + "input_file": { + "filename": "autogen/starknet/external/return/getSheets/3ee09188a7f72b618ca4555f4b4595aaf6af90a1f294aecce708831d91da9435.cairo" + }, + "parent_location": [ + { + "end_col": 15, + "end_line": 89, + "input_file": { + "filename": "src/starksheet/Starksheet.cairo" + }, + "start_col": 6, + "start_line": 89 + }, + "While handling return value of" + ], + "start_col": 14, + "start_line": 12 + }, + "While expanding the reference '__return_value_ptr_start' in:" + ], + "start_col": 6, + "start_line": 89 + }, + "While handling return value of" + ], + "start_col": 11, + "start_line": 5 + } + }, + "1229": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.getSheets_encode_return" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 40, + "end_line": 12, + "input_file": { + "filename": "autogen/starknet/external/return/getSheets/3ee09188a7f72b618ca4555f4b4595aaf6af90a1f294aecce708831d91da9435.cairo" + }, + "parent_location": [ + { + "end_col": 15, + "end_line": 89, + "input_file": { + "filename": "src/starksheet/Starksheet.cairo" + }, + "start_col": 6, + "start_line": 89 + }, + "While handling return value of" + ], + "start_col": 5, + "start_line": 9 + } + }, + "1230": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.getSheets" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 18, + "end_line": 2, + "input_file": { + "filename": "autogen/starknet/external/getSheets/5fe0b4995aa51eca785041b355f020566031001d1d4861001459f19fde4bdf5b.cairo" + }, + "parent_location": [ + { + "end_col": 15, + "end_line": 89, + "input_file": { + "filename": "src/starksheet/Starksheet.cairo" + }, + "start_col": 6, + "start_line": 89 + }, + "While constructing the external wrapper for:" + ], + "start_col": 5, + "start_line": 2 + } + }, + "1232": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.getSheets" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 58, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/arg_processor/01cba52f8515996bb9d7070bde81ff39281d096d7024a558efcba6e1fd2402cf.cairo" + }, + "parent_location": [ + { + "end_col": 15, + "end_line": 89, + "input_file": { + "filename": "src/starksheet/Starksheet.cairo" + }, + "start_col": 6, + "start_line": 89 + }, + "While handling calldata of" + ], + "start_col": 1, + "start_line": 1 + } + }, + "1233": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.getSheets" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 64, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/getSheets/b2c52ca2d2a8fc8791a983086d8716c5eacd0c3d62934914d2286f84b98ff4cb.cairo" + }, + "parent_location": [ + { + "end_col": 34, + "end_line": 89, + "input_file": { + "filename": "src/starksheet/Starksheet.cairo" + }, + "parent_location": [ + { + "end_col": 55, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/getSheets/3cc7a9cbb85830dbebb914f535a0f964431fd2034fca1cde6a3e38db46479cc5.cairo" + }, + "parent_location": [ + { + "end_col": 15, + "end_line": 89, + "input_file": { + "filename": "src/starksheet/Starksheet.cairo" + }, + "start_col": 6, + "start_line": 89 + }, + "While constructing the external wrapper for:" + ], + "start_col": 44, + "start_line": 1 + }, + "While expanding the reference 'syscall_ptr' in:" + ], + "start_col": 16, + "start_line": 89 + }, + "While constructing the external wrapper for:" + ], + "start_col": 19, + "start_line": 1 + } + }, + "1234": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.getSheets" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 110, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/getSheets/9684a85e93c782014ca14293edea4eb2502039a5a7b6538ecd39c56faaf12529.cairo" + }, + "parent_location": [ + { + "end_col": 62, + "end_line": 89, + "input_file": { + "filename": "src/starksheet/Starksheet.cairo" + }, + "parent_location": [ + { + "end_col": 82, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/getSheets/3cc7a9cbb85830dbebb914f535a0f964431fd2034fca1cde6a3e38db46479cc5.cairo" + }, + "parent_location": [ + { + "end_col": 15, + "end_line": 89, + "input_file": { + "filename": "src/starksheet/Starksheet.cairo" + }, + "start_col": 6, + "start_line": 89 + }, + "While constructing the external wrapper for:" + ], + "start_col": 70, + "start_line": 1 + }, + "While expanding the reference 'pedersen_ptr' in:" + ], + "start_col": 36, + "start_line": 89 + }, + "While constructing the external wrapper for:" + ], + "start_col": 20, + "start_line": 1 + } + }, + "1235": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.getSheets" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 67, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/getSheets/741ea357d6336b0bed7bf0472425acd0311d543883b803388880e60a232040c7.cairo" + }, + "parent_location": [ + { + "end_col": 79, + "end_line": 89, + "input_file": { + "filename": "src/starksheet/Starksheet.cairo" + }, + "parent_location": [ + { + "end_col": 115, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/getSheets/3cc7a9cbb85830dbebb914f535a0f964431fd2034fca1cde6a3e38db46479cc5.cairo" + }, + "parent_location": [ + { + "end_col": 15, + "end_line": 89, + "input_file": { + "filename": "src/starksheet/Starksheet.cairo" + }, + "start_col": 6, + "start_line": 89 + }, + "While constructing the external wrapper for:" + ], + "start_col": 100, + "start_line": 1 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 64, + "start_line": 89 + }, + "While constructing the external wrapper for:" + ], + "start_col": 23, + "start_line": 1 + } + }, + "1236": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.getSheets" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 15, + "end_line": 89, + "input_file": { + "filename": "src/starksheet/Starksheet.cairo" + }, + "start_col": 6, + "start_line": 89 + } + }, + "1238": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.getSheets" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 55, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/getSheets/3cc7a9cbb85830dbebb914f535a0f964431fd2034fca1cde6a3e38db46479cc5.cairo" + }, + "parent_location": [ + { + "end_col": 15, + "end_line": 89, + "input_file": { + "filename": "src/starksheet/Starksheet.cairo" + }, + "parent_location": [ + { + "end_col": 55, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/getSheets/3cc7a9cbb85830dbebb914f535a0f964431fd2034fca1cde6a3e38db46479cc5.cairo" + }, + "parent_location": [ + { + "end_col": 15, + "end_line": 89, + "input_file": { + "filename": "src/starksheet/Starksheet.cairo" + }, + "start_col": 6, + "start_line": 89 + }, + "While constructing the external wrapper for:" + ], + "start_col": 44, + "start_line": 1 + }, + "While auto generating local variable for 'syscall_ptr'." + ], + "start_col": 6, + "start_line": 89 + }, + "While constructing the external wrapper for:" + ], + "start_col": 44, + "start_line": 1 + } + }, + "1239": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.getSheets" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 82, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/getSheets/3cc7a9cbb85830dbebb914f535a0f964431fd2034fca1cde6a3e38db46479cc5.cairo" + }, + "parent_location": [ + { + "end_col": 15, + "end_line": 89, + "input_file": { + "filename": "src/starksheet/Starksheet.cairo" + }, + "parent_location": [ + { + "end_col": 82, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/getSheets/3cc7a9cbb85830dbebb914f535a0f964431fd2034fca1cde6a3e38db46479cc5.cairo" + }, + "parent_location": [ + { + "end_col": 15, + "end_line": 89, + "input_file": { + "filename": "src/starksheet/Starksheet.cairo" + }, + "start_col": 6, + "start_line": 89 + }, + "While constructing the external wrapper for:" + ], + "start_col": 70, + "start_line": 1 + }, + "While auto generating local variable for 'pedersen_ptr'." + ], + "start_col": 6, + "start_line": 89 + }, + "While constructing the external wrapper for:" + ], + "start_col": 70, + "start_line": 1 + } + }, + "1240": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.getSheets" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 115, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/getSheets/3cc7a9cbb85830dbebb914f535a0f964431fd2034fca1cde6a3e38db46479cc5.cairo" + }, + "parent_location": [ + { + "end_col": 15, + "end_line": 89, + "input_file": { + "filename": "src/starksheet/Starksheet.cairo" + }, + "parent_location": [ + { + "end_col": 98, + "end_line": 2, + "input_file": { + "filename": "autogen/starknet/external/getSheets/3cc7a9cbb85830dbebb914f535a0f964431fd2034fca1cde6a3e38db46479cc5.cairo" + }, + "parent_location": [ + { + "end_col": 15, + "end_line": 89, + "input_file": { + "filename": "src/starksheet/Starksheet.cairo" + }, + "start_col": 6, + "start_line": 89 + }, + "While constructing the external wrapper for:" + ], + "start_col": 83, + "start_line": 2 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 6, + "start_line": 89 + }, + "While constructing the external wrapper for:" + ], + "start_col": 100, + "start_line": 1 + } + }, + "1241": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.getSheets" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 99, + "end_line": 2, + "input_file": { + "filename": "autogen/starknet/external/getSheets/3cc7a9cbb85830dbebb914f535a0f964431fd2034fca1cde6a3e38db46479cc5.cairo" + }, + "parent_location": [ + { + "end_col": 15, + "end_line": 89, + "input_file": { + "filename": "src/starksheet/Starksheet.cairo" + }, + "start_col": 6, + "start_line": 89 + }, + "While constructing the external wrapper for:" + ], + "start_col": 48, + "start_line": 2 + } + }, + "1243": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.getSheets" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 55, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/getSheets/3cc7a9cbb85830dbebb914f535a0f964431fd2034fca1cde6a3e38db46479cc5.cairo" + }, + "parent_location": [ + { + "end_col": 15, + "end_line": 89, + "input_file": { + "filename": "src/starksheet/Starksheet.cairo" + }, + "parent_location": [ + { + "end_col": 55, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/getSheets/3cc7a9cbb85830dbebb914f535a0f964431fd2034fca1cde6a3e38db46479cc5.cairo" + }, + "parent_location": [ + { + "end_col": 15, + "end_line": 89, + "input_file": { + "filename": "src/starksheet/Starksheet.cairo" + }, + "parent_location": [ + { + "end_col": 20, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/getSheets/da17921a4e81c09e730800bbf23bfdbe5e9e6bfaedc59d80fbf62087fa43c27d.cairo" + }, + "parent_location": [ + { + "end_col": 15, + "end_line": 89, + "input_file": { + "filename": "src/starksheet/Starksheet.cairo" + }, + "start_col": 6, + "start_line": 89 + }, + "While constructing the external wrapper for:" + ], + "start_col": 9, + "start_line": 1 + }, + "While expanding the reference 'syscall_ptr' in:" + ], + "start_col": 6, + "start_line": 89 + }, + "While constructing the external wrapper for:" + ], + "start_col": 44, + "start_line": 1 + }, + "While auto generating local variable for 'syscall_ptr'." + ], + "start_col": 6, + "start_line": 89 + }, + "While constructing the external wrapper for:" + ], + "start_col": 44, + "start_line": 1 + } + }, + "1244": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.getSheets" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 82, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/getSheets/3cc7a9cbb85830dbebb914f535a0f964431fd2034fca1cde6a3e38db46479cc5.cairo" + }, + "parent_location": [ + { + "end_col": 15, + "end_line": 89, + "input_file": { + "filename": "src/starksheet/Starksheet.cairo" + }, + "parent_location": [ + { + "end_col": 82, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/getSheets/3cc7a9cbb85830dbebb914f535a0f964431fd2034fca1cde6a3e38db46479cc5.cairo" + }, + "parent_location": [ + { + "end_col": 15, + "end_line": 89, + "input_file": { + "filename": "src/starksheet/Starksheet.cairo" + }, + "parent_location": [ + { + "end_col": 33, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/getSheets/da17921a4e81c09e730800bbf23bfdbe5e9e6bfaedc59d80fbf62087fa43c27d.cairo" + }, + "parent_location": [ + { + "end_col": 15, + "end_line": 89, + "input_file": { + "filename": "src/starksheet/Starksheet.cairo" + }, + "start_col": 6, + "start_line": 89 + }, + "While constructing the external wrapper for:" + ], + "start_col": 21, + "start_line": 1 + }, + "While expanding the reference 'pedersen_ptr' in:" + ], + "start_col": 6, + "start_line": 89 + }, + "While constructing the external wrapper for:" + ], + "start_col": 70, + "start_line": 1 + }, + "While auto generating local variable for 'pedersen_ptr'." + ], + "start_col": 6, + "start_line": 89 + }, + "While constructing the external wrapper for:" + ], + "start_col": 70, + "start_line": 1 + } + }, + "1245": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.getSheets" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 21, + "end_line": 2, + "input_file": { + "filename": "autogen/starknet/external/getSheets/3cc7a9cbb85830dbebb914f535a0f964431fd2034fca1cde6a3e38db46479cc5.cairo" + }, + "parent_location": [ + { + "end_col": 15, + "end_line": 89, + "input_file": { + "filename": "src/starksheet/Starksheet.cairo" + }, + "parent_location": [ + { + "end_col": 49, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/getSheets/da17921a4e81c09e730800bbf23bfdbe5e9e6bfaedc59d80fbf62087fa43c27d.cairo" + }, + "parent_location": [ + { + "end_col": 15, + "end_line": 89, + "input_file": { + "filename": "src/starksheet/Starksheet.cairo" + }, + "start_col": 6, + "start_line": 89 + }, + "While constructing the external wrapper for:" + ], + "start_col": 34, + "start_line": 1 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 6, + "start_line": 89 + }, + "While constructing the external wrapper for:" + ], + "start_col": 6, + "start_line": 2 + } + }, + "1246": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.getSheets" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 35, + "end_line": 2, + "input_file": { + "filename": "autogen/starknet/external/getSheets/3cc7a9cbb85830dbebb914f535a0f964431fd2034fca1cde6a3e38db46479cc5.cairo" + }, + "parent_location": [ + { + "end_col": 15, + "end_line": 89, + "input_file": { + "filename": "src/starksheet/Starksheet.cairo" + }, + "parent_location": [ + { + "end_col": 62, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/getSheets/da17921a4e81c09e730800bbf23bfdbe5e9e6bfaedc59d80fbf62087fa43c27d.cairo" + }, + "parent_location": [ + { + "end_col": 15, + "end_line": 89, + "input_file": { + "filename": "src/starksheet/Starksheet.cairo" + }, + "start_col": 6, + "start_line": 89 + }, + "While constructing the external wrapper for:" + ], + "start_col": 50, + "start_line": 1 + }, + "While expanding the reference 'retdata_size' in:" + ], + "start_col": 6, + "start_line": 89 + }, + "While constructing the external wrapper for:" + ], + "start_col": 23, + "start_line": 2 + } + }, + "1247": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.getSheets" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 44, + "end_line": 2, + "input_file": { + "filename": "autogen/starknet/external/getSheets/3cc7a9cbb85830dbebb914f535a0f964431fd2034fca1cde6a3e38db46479cc5.cairo" + }, + "parent_location": [ + { + "end_col": 15, + "end_line": 89, + "input_file": { + "filename": "src/starksheet/Starksheet.cairo" + }, + "parent_location": [ + { + "end_col": 70, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/getSheets/da17921a4e81c09e730800bbf23bfdbe5e9e6bfaedc59d80fbf62087fa43c27d.cairo" + }, + "parent_location": [ + { + "end_col": 15, + "end_line": 89, + "input_file": { + "filename": "src/starksheet/Starksheet.cairo" + }, + "start_col": 6, + "start_line": 89 + }, + "While constructing the external wrapper for:" + ], + "start_col": 63, + "start_line": 1 + }, + "While expanding the reference 'retdata' in:" + ], + "start_col": 6, + "start_line": 89 + }, + "While constructing the external wrapper for:" + ], + "start_col": 37, + "start_line": 2 + } + }, + "1248": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.getSheets" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 72, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/getSheets/da17921a4e81c09e730800bbf23bfdbe5e9e6bfaedc59d80fbf62087fa43c27d.cairo" + }, + "parent_location": [ + { + "end_col": 15, + "end_line": 89, + "input_file": { + "filename": "src/starksheet/Starksheet.cairo" + }, + "start_col": 6, + "start_line": 89 + }, + "While constructing the external wrapper for:" + ], + "start_col": 1, + "start_line": 1 + } + }, + "1249": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.getSheet" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 33, + "end_line": 97, + "input_file": { + "filename": "src/starksheet/Starksheet.cairo" + }, + "parent_location": [ + { + "end_col": 38, + "end_line": 41, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/starksheet/library.cairo" + }, + "parent_location": [ + { + "end_col": 39, + "end_line": 100, + "input_file": { + "filename": "src/starksheet/Starksheet.cairo" + }, + "start_col": 12, + "start_line": 100 + }, + "While trying to retrieve the implicit argument 'syscall_ptr' in:" + ], + "start_col": 20, + "start_line": 41 + }, + "While expanding the reference 'syscall_ptr' in:" + ], + "start_col": 15, + "start_line": 97 + } + }, + "1250": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.getSheet" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 61, + "end_line": 97, + "input_file": { + "filename": "src/starksheet/Starksheet.cairo" + }, + "parent_location": [ + { + "end_col": 66, + "end_line": 41, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/starksheet/library.cairo" + }, + "parent_location": [ + { + "end_col": 39, + "end_line": 100, + "input_file": { + "filename": "src/starksheet/Starksheet.cairo" + }, + "start_col": 12, + "start_line": 100 + }, + "While trying to retrieve the implicit argument 'pedersen_ptr' in:" + ], + "start_col": 40, + "start_line": 41 + }, + "While expanding the reference 'pedersen_ptr' in:" + ], + "start_col": 35, + "start_line": 97 + } + }, + "1251": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.getSheet" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 78, + "end_line": 97, + "input_file": { + "filename": "src/starksheet/Starksheet.cairo" + }, + "parent_location": [ + { + "end_col": 83, + "end_line": 41, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/starksheet/library.cairo" + }, + "parent_location": [ + { + "end_col": 39, + "end_line": 100, + "input_file": { + "filename": "src/starksheet/Starksheet.cairo" + }, + "start_col": 12, + "start_line": 100 + }, + "While trying to retrieve the implicit argument 'range_check_ptr' in:" + ], + "start_col": 68, + "start_line": 41 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 63, + "start_line": 97 + } + }, + "1252": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.getSheet" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 91, + "end_line": 97, + "input_file": { + "filename": "src/starksheet/Starksheet.cairo" + }, + "parent_location": [ + { + "end_col": 38, + "end_line": 100, + "input_file": { + "filename": "src/starksheet/Starksheet.cairo" + }, + "start_col": 33, + "start_line": 100 + }, + "While expanding the reference 'index' in:" + ], + "start_col": 80, + "start_line": 97 + } + }, + "1253": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.getSheet" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 39, + "end_line": 100, + "input_file": { + "filename": "src/starksheet/Starksheet.cairo" + }, + "start_col": 12, + "start_line": 100 + } + }, + "1255": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.getSheet" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 40, + "end_line": 100, + "input_file": { + "filename": "src/starksheet/Starksheet.cairo" + }, + "start_col": 5, + "start_line": 100 + } + }, + "1256": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.getSheet_encode_return" + ], + "flow_tracking_data": null, + "hints": [ + { + "location": { + "end_col": 38, + "end_line": 3, + "input_file": { + "filename": "autogen/starknet/external/return/getSheet/695ea7d8f5f77886c7ea26d2f26f91761fbc18c91e61c9d20ac27980511c6b9c.cairo" + }, + "parent_location": [ + { + "end_col": 14, + "end_line": 97, + "input_file": { + "filename": "src/starksheet/Starksheet.cairo" + }, + "start_col": 6, + "start_line": 97 + }, + "While handling return value of" + ], + "start_col": 5, + "start_line": 3 + }, + "n_prefix_newlines": 0 + } + ], + "inst": { + "end_col": 18, + "end_line": 4, + "input_file": { + "filename": "autogen/starknet/external/return/getSheet/695ea7d8f5f77886c7ea26d2f26f91761fbc18c91e61c9d20ac27980511c6b9c.cairo" + }, + "parent_location": [ + { + "end_col": 14, + "end_line": 97, + "input_file": { + "filename": "src/starksheet/Starksheet.cairo" + }, + "start_col": 6, + "start_line": 97 + }, + "While handling return value of" + ], + "start_col": 5, + "start_line": 4 + } + }, + "1258": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.getSheet_encode_return" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 49, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/arg_processor/10f4ffaf96982a2fff2ff72dc2d3b1a8878257148aab4051a8f2ef7f16687f01.cairo" + }, + "parent_location": [ + { + "end_col": 18, + "end_line": 98, + "input_file": { + "filename": "src/starksheet/Starksheet.cairo" + }, + "start_col": 5, + "start_line": 98 + }, + "While handling return value 'address'" + ], + "start_col": 1, + "start_line": 1 + } + }, + "1259": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.getSheet_encode_return" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 48, + "end_line": 2, + "input_file": { + "filename": "autogen/starknet/arg_processor/10f4ffaf96982a2fff2ff72dc2d3b1a8878257148aab4051a8f2ef7f16687f01.cairo" + }, + "parent_location": [ + { + "end_col": 18, + "end_line": 98, + "input_file": { + "filename": "src/starksheet/Starksheet.cairo" + }, + "parent_location": [ + { + "end_col": 36, + "end_line": 11, + "input_file": { + "filename": "autogen/starknet/external/return/getSheet/695ea7d8f5f77886c7ea26d2f26f91761fbc18c91e61c9d20ac27980511c6b9c.cairo" + }, + "parent_location": [ + { + "end_col": 14, + "end_line": 97, + "input_file": { + "filename": "src/starksheet/Starksheet.cairo" + }, + "start_col": 6, + "start_line": 97 + }, + "While handling return value of" + ], + "start_col": 18, + "start_line": 11 + }, + "While expanding the reference '__return_value_ptr' in:" + ], + "start_col": 5, + "start_line": 98 + }, + "While handling return value 'address'" + ], + "start_col": 26, + "start_line": 2 + } + }, + "1261": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.getSheet_encode_return" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 72, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/return/getSheet/695ea7d8f5f77886c7ea26d2f26f91761fbc18c91e61c9d20ac27980511c6b9c.cairo" + }, + "parent_location": [ + { + "end_col": 14, + "end_line": 97, + "input_file": { + "filename": "src/starksheet/Starksheet.cairo" + }, + "parent_location": [ + { + "end_col": 40, + "end_line": 10, + "input_file": { + "filename": "autogen/starknet/external/return/getSheet/695ea7d8f5f77886c7ea26d2f26f91761fbc18c91e61c9d20ac27980511c6b9c.cairo" + }, + "parent_location": [ + { + "end_col": 14, + "end_line": 97, + "input_file": { + "filename": "src/starksheet/Starksheet.cairo" + }, + "start_col": 6, + "start_line": 97 + }, + "While handling return value of" + ], + "start_col": 25, + "start_line": 10 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 6, + "start_line": 97 + }, + "While handling return value of" + ], + "start_col": 57, + "start_line": 1 + } + }, + "1262": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.getSheet_encode_return" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 63, + "end_line": 11, + "input_file": { + "filename": "autogen/starknet/external/return/getSheet/695ea7d8f5f77886c7ea26d2f26f91761fbc18c91e61c9d20ac27980511c6b9c.cairo" + }, + "parent_location": [ + { + "end_col": 14, + "end_line": 97, + "input_file": { + "filename": "src/starksheet/Starksheet.cairo" + }, + "start_col": 6, + "start_line": 97 + }, + "While handling return value of" + ], + "start_col": 18, + "start_line": 11 + } + }, + "1263": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.getSheet_encode_return" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 35, + "end_line": 5, + "input_file": { + "filename": "autogen/starknet/external/return/getSheet/695ea7d8f5f77886c7ea26d2f26f91761fbc18c91e61c9d20ac27980511c6b9c.cairo" + }, + "parent_location": [ + { + "end_col": 14, + "end_line": 97, + "input_file": { + "filename": "src/starksheet/Starksheet.cairo" + }, + "parent_location": [ + { + "end_col": 38, + "end_line": 12, + "input_file": { + "filename": "autogen/starknet/external/return/getSheet/695ea7d8f5f77886c7ea26d2f26f91761fbc18c91e61c9d20ac27980511c6b9c.cairo" + }, + "parent_location": [ + { + "end_col": 14, + "end_line": 97, + "input_file": { + "filename": "src/starksheet/Starksheet.cairo" + }, + "start_col": 6, + "start_line": 97 + }, + "While handling return value of" + ], + "start_col": 14, + "start_line": 12 + }, + "While expanding the reference '__return_value_ptr_start' in:" + ], + "start_col": 6, + "start_line": 97 + }, + "While handling return value of" + ], + "start_col": 11, + "start_line": 5 + } + }, + "1264": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.getSheet_encode_return" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 40, + "end_line": 12, + "input_file": { + "filename": "autogen/starknet/external/return/getSheet/695ea7d8f5f77886c7ea26d2f26f91761fbc18c91e61c9d20ac27980511c6b9c.cairo" + }, + "parent_location": [ + { + "end_col": 14, + "end_line": 97, + "input_file": { + "filename": "src/starksheet/Starksheet.cairo" + }, + "start_col": 6, + "start_line": 97 + }, + "While handling return value of" + ], + "start_col": 5, + "start_line": 9 + } + }, + "1265": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.getSheet" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 40, + "end_line": 2, + "input_file": { + "filename": "autogen/starknet/arg_processor/302a0e7f223f7f95d8ec699c8e1fa2628283de74616337c794098be1f39f0256.cairo" + }, + "parent_location": [ + { + "end_col": 91, + "end_line": 97, + "input_file": { + "filename": "src/starksheet/Starksheet.cairo" + }, + "parent_location": [ + { + "end_col": 45, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/arg_processor/c31620b02d4d706f0542c989b2aadc01b0981d1f6a5933a8fe4937ace3d70d92.cairo" + }, + "parent_location": [ + { + "end_col": 14, + "end_line": 97, + "input_file": { + "filename": "src/starksheet/Starksheet.cairo" + }, + "parent_location": [ + { + "end_col": 57, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/arg_processor/01cba52f8515996bb9d7070bde81ff39281d096d7024a558efcba6e1fd2402cf.cairo" + }, + "parent_location": [ + { + "end_col": 14, + "end_line": 97, + "input_file": { + "filename": "src/starksheet/Starksheet.cairo" + }, + "start_col": 6, + "start_line": 97 + }, + "While handling calldata of" + ], + "start_col": 35, + "start_line": 1 + }, + "While expanding the reference '__calldata_actual_size' in:" + ], + "start_col": 6, + "start_line": 97 + }, + "While handling calldata of" + ], + "start_col": 31, + "start_line": 1 + }, + "While expanding the reference '__calldata_ptr' in:" + ], + "start_col": 80, + "start_line": 97 + }, + "While handling calldata argument 'index'" + ], + "start_col": 22, + "start_line": 2 + } + }, + "1267": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.getSheet" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 58, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/arg_processor/01cba52f8515996bb9d7070bde81ff39281d096d7024a558efcba6e1fd2402cf.cairo" + }, + "parent_location": [ + { + "end_col": 14, + "end_line": 97, + "input_file": { + "filename": "src/starksheet/Starksheet.cairo" + }, + "start_col": 6, + "start_line": 97 + }, + "While handling calldata of" + ], + "start_col": 1, + "start_line": 1 + } + }, + "1268": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.getSheet" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 64, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/getSheet/b2c52ca2d2a8fc8791a983086d8716c5eacd0c3d62934914d2286f84b98ff4cb.cairo" + }, + "parent_location": [ + { + "end_col": 33, + "end_line": 97, + "input_file": { + "filename": "src/starksheet/Starksheet.cairo" + }, + "parent_location": [ + { + "end_col": 55, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/getSheet/e5369793017601b4809f128c1b1eae1af4f28b4fc1fe5cf3d3379a32bfd7147f.cairo" + }, + "parent_location": [ + { + "end_col": 14, + "end_line": 97, + "input_file": { + "filename": "src/starksheet/Starksheet.cairo" + }, + "start_col": 6, + "start_line": 97 + }, + "While constructing the external wrapper for:" + ], + "start_col": 44, + "start_line": 1 + }, + "While expanding the reference 'syscall_ptr' in:" + ], + "start_col": 15, + "start_line": 97 + }, + "While constructing the external wrapper for:" + ], + "start_col": 19, + "start_line": 1 + } + }, + "1269": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.getSheet" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 110, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/getSheet/9684a85e93c782014ca14293edea4eb2502039a5a7b6538ecd39c56faaf12529.cairo" + }, + "parent_location": [ + { + "end_col": 61, + "end_line": 97, + "input_file": { + "filename": "src/starksheet/Starksheet.cairo" + }, + "parent_location": [ + { + "end_col": 82, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/getSheet/e5369793017601b4809f128c1b1eae1af4f28b4fc1fe5cf3d3379a32bfd7147f.cairo" + }, + "parent_location": [ + { + "end_col": 14, + "end_line": 97, + "input_file": { + "filename": "src/starksheet/Starksheet.cairo" + }, + "start_col": 6, + "start_line": 97 + }, + "While constructing the external wrapper for:" + ], + "start_col": 70, + "start_line": 1 + }, + "While expanding the reference 'pedersen_ptr' in:" + ], + "start_col": 35, + "start_line": 97 + }, + "While constructing the external wrapper for:" + ], + "start_col": 20, + "start_line": 1 + } + }, + "1270": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.getSheet" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 67, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/getSheet/741ea357d6336b0bed7bf0472425acd0311d543883b803388880e60a232040c7.cairo" + }, + "parent_location": [ + { + "end_col": 78, + "end_line": 97, + "input_file": { + "filename": "src/starksheet/Starksheet.cairo" + }, + "parent_location": [ + { + "end_col": 115, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/getSheet/e5369793017601b4809f128c1b1eae1af4f28b4fc1fe5cf3d3379a32bfd7147f.cairo" + }, + "parent_location": [ + { + "end_col": 14, + "end_line": 97, + "input_file": { + "filename": "src/starksheet/Starksheet.cairo" + }, + "start_col": 6, + "start_line": 97 + }, + "While constructing the external wrapper for:" + ], + "start_col": 100, + "start_line": 1 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 63, + "start_line": 97 + }, + "While constructing the external wrapper for:" + ], + "start_col": 23, + "start_line": 1 + } + }, + "1271": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.getSheet" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 44, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/arg_processor/302a0e7f223f7f95d8ec699c8e1fa2628283de74616337c794098be1f39f0256.cairo" + }, + "parent_location": [ + { + "end_col": 91, + "end_line": 97, + "input_file": { + "filename": "src/starksheet/Starksheet.cairo" + }, + "parent_location": [ + { + "end_col": 143, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/getSheet/e5369793017601b4809f128c1b1eae1af4f28b4fc1fe5cf3d3379a32bfd7147f.cairo" + }, + "parent_location": [ + { + "end_col": 14, + "end_line": 97, + "input_file": { + "filename": "src/starksheet/Starksheet.cairo" + }, + "start_col": 6, + "start_line": 97 + }, + "While constructing the external wrapper for:" + ], + "start_col": 123, + "start_line": 1 + }, + "While expanding the reference '__calldata_arg_index' in:" + ], + "start_col": 80, + "start_line": 97 + }, + "While handling calldata argument 'index'" + ], + "start_col": 28, + "start_line": 1 + } + }, + "1272": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.getSheet" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 14, + "end_line": 97, + "input_file": { + "filename": "src/starksheet/Starksheet.cairo" + }, + "start_col": 6, + "start_line": 97 + } + }, + "1274": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.getSheet" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 115, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/getSheet/e5369793017601b4809f128c1b1eae1af4f28b4fc1fe5cf3d3379a32bfd7147f.cairo" + }, + "parent_location": [ + { + "end_col": 14, + "end_line": 97, + "input_file": { + "filename": "src/starksheet/Starksheet.cairo" + }, + "parent_location": [ + { + "end_col": 97, + "end_line": 2, + "input_file": { + "filename": "autogen/starknet/external/getSheet/e5369793017601b4809f128c1b1eae1af4f28b4fc1fe5cf3d3379a32bfd7147f.cairo" + }, + "parent_location": [ + { + "end_col": 14, + "end_line": 97, + "input_file": { + "filename": "src/starksheet/Starksheet.cairo" + }, + "start_col": 6, + "start_line": 97 + }, + "While constructing the external wrapper for:" + ], + "start_col": 82, + "start_line": 2 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 6, + "start_line": 97 + }, + "While constructing the external wrapper for:" + ], + "start_col": 100, + "start_line": 1 + } + }, + "1275": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.getSheet" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 98, + "end_line": 2, + "input_file": { + "filename": "autogen/starknet/external/getSheet/e5369793017601b4809f128c1b1eae1af4f28b4fc1fe5cf3d3379a32bfd7147f.cairo" + }, + "parent_location": [ + { + "end_col": 14, + "end_line": 97, + "input_file": { + "filename": "src/starksheet/Starksheet.cairo" + }, + "start_col": 6, + "start_line": 97 + }, + "While constructing the external wrapper for:" + ], + "start_col": 48, + "start_line": 2 + } + }, + "1277": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.getSheet" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 55, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/getSheet/e5369793017601b4809f128c1b1eae1af4f28b4fc1fe5cf3d3379a32bfd7147f.cairo" + }, + "parent_location": [ + { + "end_col": 14, + "end_line": 97, + "input_file": { + "filename": "src/starksheet/Starksheet.cairo" + }, + "parent_location": [ + { + "end_col": 20, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/getSheet/da17921a4e81c09e730800bbf23bfdbe5e9e6bfaedc59d80fbf62087fa43c27d.cairo" + }, + "parent_location": [ + { + "end_col": 14, + "end_line": 97, + "input_file": { + "filename": "src/starksheet/Starksheet.cairo" + }, + "start_col": 6, + "start_line": 97 + }, + "While constructing the external wrapper for:" + ], + "start_col": 9, + "start_line": 1 + }, + "While expanding the reference 'syscall_ptr' in:" + ], + "start_col": 6, + "start_line": 97 + }, + "While constructing the external wrapper for:" + ], + "start_col": 44, + "start_line": 1 + } + }, + "1278": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.getSheet" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 82, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/getSheet/e5369793017601b4809f128c1b1eae1af4f28b4fc1fe5cf3d3379a32bfd7147f.cairo" + }, + "parent_location": [ + { + "end_col": 14, + "end_line": 97, + "input_file": { + "filename": "src/starksheet/Starksheet.cairo" + }, + "parent_location": [ + { + "end_col": 33, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/getSheet/da17921a4e81c09e730800bbf23bfdbe5e9e6bfaedc59d80fbf62087fa43c27d.cairo" + }, + "parent_location": [ + { + "end_col": 14, + "end_line": 97, + "input_file": { + "filename": "src/starksheet/Starksheet.cairo" + }, + "start_col": 6, + "start_line": 97 + }, + "While constructing the external wrapper for:" + ], + "start_col": 21, + "start_line": 1 + }, + "While expanding the reference 'pedersen_ptr' in:" + ], + "start_col": 6, + "start_line": 97 + }, + "While constructing the external wrapper for:" + ], + "start_col": 70, + "start_line": 1 + } + }, + "1279": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.getSheet" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 21, + "end_line": 2, + "input_file": { + "filename": "autogen/starknet/external/getSheet/e5369793017601b4809f128c1b1eae1af4f28b4fc1fe5cf3d3379a32bfd7147f.cairo" + }, + "parent_location": [ + { + "end_col": 14, + "end_line": 97, + "input_file": { + "filename": "src/starksheet/Starksheet.cairo" + }, + "parent_location": [ + { + "end_col": 49, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/getSheet/da17921a4e81c09e730800bbf23bfdbe5e9e6bfaedc59d80fbf62087fa43c27d.cairo" + }, + "parent_location": [ + { + "end_col": 14, + "end_line": 97, + "input_file": { + "filename": "src/starksheet/Starksheet.cairo" + }, + "start_col": 6, + "start_line": 97 + }, + "While constructing the external wrapper for:" + ], + "start_col": 34, + "start_line": 1 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 6, + "start_line": 97 + }, + "While constructing the external wrapper for:" + ], + "start_col": 6, + "start_line": 2 + } + }, + "1280": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.getSheet" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 35, + "end_line": 2, + "input_file": { + "filename": "autogen/starknet/external/getSheet/e5369793017601b4809f128c1b1eae1af4f28b4fc1fe5cf3d3379a32bfd7147f.cairo" + }, + "parent_location": [ + { + "end_col": 14, + "end_line": 97, + "input_file": { + "filename": "src/starksheet/Starksheet.cairo" + }, + "parent_location": [ + { + "end_col": 62, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/getSheet/da17921a4e81c09e730800bbf23bfdbe5e9e6bfaedc59d80fbf62087fa43c27d.cairo" + }, + "parent_location": [ + { + "end_col": 14, + "end_line": 97, + "input_file": { + "filename": "src/starksheet/Starksheet.cairo" + }, + "start_col": 6, + "start_line": 97 + }, + "While constructing the external wrapper for:" + ], + "start_col": 50, + "start_line": 1 + }, + "While expanding the reference 'retdata_size' in:" + ], + "start_col": 6, + "start_line": 97 + }, + "While constructing the external wrapper for:" + ], + "start_col": 23, + "start_line": 2 + } + }, + "1281": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.getSheet" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 44, + "end_line": 2, + "input_file": { + "filename": "autogen/starknet/external/getSheet/e5369793017601b4809f128c1b1eae1af4f28b4fc1fe5cf3d3379a32bfd7147f.cairo" + }, + "parent_location": [ + { + "end_col": 14, + "end_line": 97, + "input_file": { + "filename": "src/starksheet/Starksheet.cairo" + }, + "parent_location": [ + { + "end_col": 70, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/getSheet/da17921a4e81c09e730800bbf23bfdbe5e9e6bfaedc59d80fbf62087fa43c27d.cairo" + }, + "parent_location": [ + { + "end_col": 14, + "end_line": 97, + "input_file": { + "filename": "src/starksheet/Starksheet.cairo" + }, + "start_col": 6, + "start_line": 97 + }, + "While constructing the external wrapper for:" + ], + "start_col": 63, + "start_line": 1 + }, + "While expanding the reference 'retdata' in:" + ], + "start_col": 6, + "start_line": 97 + }, + "While constructing the external wrapper for:" + ], + "start_col": 37, + "start_line": 2 + } + }, + "1282": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.getSheet" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 72, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/getSheet/da17921a4e81c09e730800bbf23bfdbe5e9e6bfaedc59d80fbf62087fa43c27d.cairo" + }, + "parent_location": [ + { + "end_col": 14, + "end_line": 97, + "input_file": { + "filename": "src/starksheet/Starksheet.cairo" + }, + "start_col": 6, + "start_line": 97 + }, + "While constructing the external wrapper for:" + ], + "start_col": 1, + "start_line": 1 + } + }, + "1283": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.addSheet" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 33, + "end_line": 104, + "input_file": { + "filename": "src/starksheet/Starksheet.cairo" + }, + "parent_location": [ + { + "end_col": 44, + "end_line": 124, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/starksheet/library.cairo" + }, + "parent_location": [ + { + "end_col": 53, + "end_line": 107, + "input_file": { + "filename": "src/starksheet/Starksheet.cairo" + }, + "start_col": 25, + "start_line": 107 + }, + "While trying to retrieve the implicit argument 'syscall_ptr' in:" + ], + "start_col": 26, + "start_line": 124 + }, + "While expanding the reference 'syscall_ptr' in:" + ], + "start_col": 15, + "start_line": 104 + } + }, + "1284": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.addSheet" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 61, + "end_line": 104, + "input_file": { + "filename": "src/starksheet/Starksheet.cairo" + }, + "parent_location": [ + { + "end_col": 72, + "end_line": 124, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/starksheet/library.cairo" + }, + "parent_location": [ + { + "end_col": 53, + "end_line": 107, + "input_file": { + "filename": "src/starksheet/Starksheet.cairo" + }, + "start_col": 25, + "start_line": 107 + }, + "While trying to retrieve the implicit argument 'pedersen_ptr' in:" + ], + "start_col": 46, + "start_line": 124 + }, + "While expanding the reference 'pedersen_ptr' in:" + ], + "start_col": 35, + "start_line": 104 + } + }, + "1285": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.addSheet" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 78, + "end_line": 104, + "input_file": { + "filename": "src/starksheet/Starksheet.cairo" + }, + "parent_location": [ + { + "end_col": 89, + "end_line": 124, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/starksheet/library.cairo" + }, + "parent_location": [ + { + "end_col": 53, + "end_line": 107, + "input_file": { + "filename": "src/starksheet/Starksheet.cairo" + }, + "start_col": 25, + "start_line": 107 + }, + "While trying to retrieve the implicit argument 'range_check_ptr' in:" + ], + "start_col": 74, + "start_line": 124 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 63, + "start_line": 104 + } + }, + "1286": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.addSheet" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 53, + "end_line": 107, + "input_file": { + "filename": "src/starksheet/Starksheet.cairo" + }, + "start_col": 25, + "start_line": 107 + } + }, + "1288": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.addSheet" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 44, + "end_line": 124, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/starksheet/library.cairo" + }, + "parent_location": [ + { + "end_col": 53, + "end_line": 107, + "input_file": { + "filename": "src/starksheet/Starksheet.cairo" + }, + "parent_location": [ + { + "end_col": 43, + "end_line": 200, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/starknet/common/syscalls.cairo" + }, + "parent_location": [ + { + "end_col": 40, + "end_line": 108, + "input_file": { + "filename": "src/starksheet/Starksheet.cairo" + }, + "start_col": 20, + "start_line": 108 + }, + "While trying to retrieve the implicit argument 'syscall_ptr' in:" + ], + "start_col": 25, + "start_line": 200 + }, + "While expanding the reference 'syscall_ptr' in:" + ], + "start_col": 25, + "start_line": 107 + }, + "While trying to update the implicit return value 'syscall_ptr' in:" + ], + "start_col": 26, + "start_line": 124 + } + }, + "1289": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.addSheet" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 40, + "end_line": 108, + "input_file": { + "filename": "src/starksheet/Starksheet.cairo" + }, + "start_col": 20, + "start_line": 108 + } + }, + "1291": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.addSheet" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 43, + "end_line": 200, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/starknet/common/syscalls.cairo" + }, + "parent_location": [ + { + "end_col": 40, + "end_line": 108, + "input_file": { + "filename": "src/starksheet/Starksheet.cairo" + }, + "parent_location": [ + { + "end_col": 45, + "end_line": 274, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/starknet/common/syscalls.cairo" + }, + "parent_location": [ + { + "end_col": 45, + "end_line": 109, + "input_file": { + "filename": "src/starksheet/Starksheet.cairo" + }, + "start_col": 23, + "start_line": 109 + }, + "While trying to retrieve the implicit argument 'syscall_ptr' in:" + ], + "start_col": 27, + "start_line": 274 + }, + "While expanding the reference 'syscall_ptr' in:" + ], + "start_col": 20, + "start_line": 108 + }, + "While trying to update the implicit return value 'syscall_ptr' in:" + ], + "start_col": 25, + "start_line": 200 + } + }, + "1292": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.addSheet" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 45, + "end_line": 109, + "input_file": { + "filename": "src/starksheet/Starksheet.cairo" + }, + "start_col": 23, + "start_line": 109 + } + }, + "1294": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.addSheet" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 45, + "end_line": 274, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/starknet/common/syscalls.cairo" + }, + "parent_location": [ + { + "end_col": 45, + "end_line": 109, + "input_file": { + "filename": "src/starksheet/Starksheet.cairo" + }, + "parent_location": [ + { + "end_col": 37, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/contract_interface/IERC20/transferFrom/f8c7980cd46ed6d764c999318b5692736b724dc08c1bf96e92d1b77ddf37af10.cairo" + }, + "parent_location": [ + { + "end_col": 22, + "end_line": 31, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc20/IERC20.cairo" + }, + "parent_location": [ + { + "end_col": 6, + "end_line": 115, + "input_file": { + "filename": "src/starksheet/Starksheet.cairo" + }, + "start_col": 5, + "start_line": 110 + }, + "While trying to retrieve the implicit argument 'syscall_ptr' in:" + ], + "start_col": 10, + "start_line": 31 + }, + "While handling contract interface function:" + ], + "start_col": 19, + "start_line": 1 + }, + "While expanding the reference 'syscall_ptr' in:" + ], + "start_col": 23, + "start_line": 109 + }, + "While trying to update the implicit return value 'syscall_ptr' in:" + ], + "start_col": 27, + "start_line": 274 + } + }, + "1295": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.addSheet" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 89, + "end_line": 124, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/starksheet/library.cairo" + }, + "parent_location": [ + { + "end_col": 53, + "end_line": 107, + "input_file": { + "filename": "src/starksheet/Starksheet.cairo" + }, + "parent_location": [ + { + "end_col": 54, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/contract_interface/IERC20/transferFrom/f8c7980cd46ed6d764c999318b5692736b724dc08c1bf96e92d1b77ddf37af10.cairo" + }, + "parent_location": [ + { + "end_col": 22, + "end_line": 31, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc20/IERC20.cairo" + }, + "parent_location": [ + { + "end_col": 6, + "end_line": 115, + "input_file": { + "filename": "src/starksheet/Starksheet.cairo" + }, + "start_col": 5, + "start_line": 110 + }, + "While trying to retrieve the implicit argument 'range_check_ptr' in:" + ], + "start_col": 10, + "start_line": 31 + }, + "While handling contract interface function:" + ], + "start_col": 39, + "start_line": 1 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 25, + "start_line": 107 + }, + "While trying to update the implicit return value 'range_check_ptr' in:" + ], + "start_col": 74, + "start_line": 124 + } + }, + "1296": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.addSheet" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 37, + "end_line": 111, + "input_file": { + "filename": "src/starksheet/Starksheet.cairo" + }, + "start_col": 26, + "start_line": 111 + } + }, + "1298": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.addSheet" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 16, + "end_line": 108, + "input_file": { + "filename": "src/starksheet/Starksheet.cairo" + }, + "parent_location": [ + { + "end_col": 22, + "end_line": 112, + "input_file": { + "filename": "src/starksheet/Starksheet.cairo" + }, + "start_col": 16, + "start_line": 112 + }, + "While expanding the reference 'sender' in:" + ], + "start_col": 10, + "start_line": 108 + } + }, + "1299": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.addSheet" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 19, + "end_line": 109, + "input_file": { + "filename": "src/starksheet/Starksheet.cairo" + }, + "parent_location": [ + { + "end_col": 28, + "end_line": 113, + "input_file": { + "filename": "src/starksheet/Starksheet.cairo" + }, + "start_col": 19, + "start_line": 113 + }, + "While expanding the reference 'recipient' in:" + ], + "start_col": 10, + "start_line": 109 + } + }, + "1300": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.addSheet" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 21, + "end_line": 107, + "input_file": { + "filename": "src/starksheet/Starksheet.cairo" + }, + "parent_location": [ + { + "end_col": 35, + "end_line": 114, + "input_file": { + "filename": "src/starksheet/Starksheet.cairo" + }, + "start_col": 24, + "start_line": 114 + }, + "While expanding the reference 'sheet_price' in:" + ], + "start_col": 10, + "start_line": 107 + } + }, + "1301": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.addSheet" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 38, + "end_line": 114, + "input_file": { + "filename": "src/starksheet/Starksheet.cairo" + }, + "start_col": 37, + "start_line": 114 + } + }, + "1303": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.addSheet" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 6, + "end_line": 115, + "input_file": { + "filename": "src/starksheet/Starksheet.cairo" + }, + "start_col": 5, + "start_line": 110 + } + }, + "1305": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.addSheet" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 37, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/contract_interface/IERC20/transferFrom/f8c7980cd46ed6d764c999318b5692736b724dc08c1bf96e92d1b77ddf37af10.cairo" + }, + "parent_location": [ + { + "end_col": 22, + "end_line": 31, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc20/IERC20.cairo" + }, + "parent_location": [ + { + "end_col": 6, + "end_line": 115, + "input_file": { + "filename": "src/starksheet/Starksheet.cairo" + }, + "parent_location": [ + { + "end_col": 38, + "end_line": 57, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/starksheet/library.cairo" + }, + "parent_location": [ + { + "end_col": 64, + "end_line": 116, + "input_file": { + "filename": "src/starksheet/Starksheet.cairo" + }, + "start_col": 12, + "start_line": 116 + }, + "While trying to retrieve the implicit argument 'syscall_ptr' in:" + ], + "start_col": 20, + "start_line": 57 + }, + "While expanding the reference 'syscall_ptr' in:" + ], + "start_col": 5, + "start_line": 110 + }, + "While trying to update the implicit return value 'syscall_ptr' in:" + ], + "start_col": 10, + "start_line": 31 + }, + "While handling contract interface function:" + ], + "start_col": 19, + "start_line": 1 + } + }, + "1306": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.addSheet" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 72, + "end_line": 124, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/starksheet/library.cairo" + }, + "parent_location": [ + { + "end_col": 53, + "end_line": 107, + "input_file": { + "filename": "src/starksheet/Starksheet.cairo" + }, + "parent_location": [ + { + "end_col": 66, + "end_line": 57, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/starksheet/library.cairo" + }, + "parent_location": [ + { + "end_col": 64, + "end_line": 116, + "input_file": { + "filename": "src/starksheet/Starksheet.cairo" + }, + "start_col": 12, + "start_line": 116 + }, + "While trying to retrieve the implicit argument 'pedersen_ptr' in:" + ], + "start_col": 40, + "start_line": 57 + }, + "While expanding the reference 'pedersen_ptr' in:" + ], + "start_col": 25, + "start_line": 107 + }, + "While trying to update the implicit return value 'pedersen_ptr' in:" + ], + "start_col": 46, + "start_line": 124 + } + }, + "1307": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.addSheet" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 54, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/contract_interface/IERC20/transferFrom/f8c7980cd46ed6d764c999318b5692736b724dc08c1bf96e92d1b77ddf37af10.cairo" + }, + "parent_location": [ + { + "end_col": 22, + "end_line": 31, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc20/IERC20.cairo" + }, + "parent_location": [ + { + "end_col": 6, + "end_line": 115, + "input_file": { + "filename": "src/starksheet/Starksheet.cairo" + }, + "parent_location": [ + { + "end_col": 83, + "end_line": 57, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/starksheet/library.cairo" + }, + "parent_location": [ + { + "end_col": 64, + "end_line": 116, + "input_file": { + "filename": "src/starksheet/Starksheet.cairo" + }, + "start_col": 12, + "start_line": 116 + }, + "While trying to retrieve the implicit argument 'range_check_ptr' in:" + ], + "start_col": 68, + "start_line": 57 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 5, + "start_line": 110 + }, + "While trying to update the implicit return value 'range_check_ptr' in:" + ], + "start_col": 10, + "start_line": 31 + }, + "While handling contract interface function:" + ], + "start_col": 39, + "start_line": 1 + } + }, + "1308": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.addSheet" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 15, + "end_line": 105, + "input_file": { + "filename": "src/starksheet/Starksheet.cairo" + }, + "parent_location": [ + { + "end_col": 37, + "end_line": 116, + "input_file": { + "filename": "src/starksheet/Starksheet.cairo" + }, + "start_col": 33, + "start_line": 116 + }, + "While expanding the reference 'name' in:" + ], + "start_col": 5, + "start_line": 105 + } + }, + "1309": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.addSheet" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 29, + "end_line": 105, + "input_file": { + "filename": "src/starksheet/Starksheet.cairo" + }, + "parent_location": [ + { + "end_col": 45, + "end_line": 116, + "input_file": { + "filename": "src/starksheet/Starksheet.cairo" + }, + "start_col": 39, + "start_line": 116 + }, + "While expanding the reference 'symbol' in:" + ], + "start_col": 17, + "start_line": 105 + } + }, + "1310": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.addSheet" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 46, + "end_line": 105, + "input_file": { + "filename": "src/starksheet/Starksheet.cairo" + }, + "parent_location": [ + { + "end_col": 56, + "end_line": 116, + "input_file": { + "filename": "src/starksheet/Starksheet.cairo" + }, + "start_col": 47, + "start_line": 116 + }, + "While expanding the reference 'proof_len' in:" + ], + "start_col": 31, + "start_line": 105 + } + }, + "1311": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.addSheet" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 60, + "end_line": 105, + "input_file": { + "filename": "src/starksheet/Starksheet.cairo" + }, + "parent_location": [ + { + "end_col": 63, + "end_line": 116, + "input_file": { + "filename": "src/starksheet/Starksheet.cairo" + }, + "start_col": 58, + "start_line": 116 + }, + "While expanding the reference 'proof' in:" + ], + "start_col": 48, + "start_line": 105 + } + }, + "1312": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.addSheet" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 64, + "end_line": 116, + "input_file": { + "filename": "src/starksheet/Starksheet.cairo" + }, + "start_col": 12, + "start_line": 116 + } + }, + "1314": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.addSheet" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 65, + "end_line": 116, + "input_file": { + "filename": "src/starksheet/Starksheet.cairo" + }, + "start_col": 5, + "start_line": 116 + } + }, + "1315": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.addSheet_encode_return" + ], + "flow_tracking_data": null, + "hints": [ + { + "location": { + "end_col": 38, + "end_line": 3, + "input_file": { + "filename": "autogen/starknet/external/return/addSheet/2ffe198cf4a563c150e4fd9f065444f352b287cd405fa3d3b5123915a2de7ae8.cairo" + }, + "parent_location": [ + { + "end_col": 14, + "end_line": 104, + "input_file": { + "filename": "src/starksheet/Starksheet.cairo" + }, + "start_col": 6, + "start_line": 104 + }, + "While handling return value of" + ], + "start_col": 5, + "start_line": 3 + }, + "n_prefix_newlines": 0 + } + ], + "inst": { + "end_col": 18, + "end_line": 4, + "input_file": { + "filename": "autogen/starknet/external/return/addSheet/2ffe198cf4a563c150e4fd9f065444f352b287cd405fa3d3b5123915a2de7ae8.cairo" + }, + "parent_location": [ + { + "end_col": 14, + "end_line": 104, + "input_file": { + "filename": "src/starksheet/Starksheet.cairo" + }, + "start_col": 6, + "start_line": 104 + }, + "While handling return value of" + ], + "start_col": 5, + "start_line": 4 + } + }, + "1317": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.addSheet_encode_return" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 49, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/arg_processor/10f4ffaf96982a2fff2ff72dc2d3b1a8878257148aab4051a8f2ef7f16687f01.cairo" + }, + "parent_location": [ + { + "end_col": 20, + "end_line": 106, + "input_file": { + "filename": "src/starksheet/Starksheet.cairo" + }, + "start_col": 7, + "start_line": 106 + }, + "While handling return value 'address'" + ], + "start_col": 1, + "start_line": 1 + } + }, + "1318": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.addSheet_encode_return" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 48, + "end_line": 2, + "input_file": { + "filename": "autogen/starknet/arg_processor/10f4ffaf96982a2fff2ff72dc2d3b1a8878257148aab4051a8f2ef7f16687f01.cairo" + }, + "parent_location": [ + { + "end_col": 20, + "end_line": 106, + "input_file": { + "filename": "src/starksheet/Starksheet.cairo" + }, + "parent_location": [ + { + "end_col": 36, + "end_line": 11, + "input_file": { + "filename": "autogen/starknet/external/return/addSheet/2ffe198cf4a563c150e4fd9f065444f352b287cd405fa3d3b5123915a2de7ae8.cairo" + }, + "parent_location": [ + { + "end_col": 14, + "end_line": 104, + "input_file": { + "filename": "src/starksheet/Starksheet.cairo" + }, + "start_col": 6, + "start_line": 104 + }, + "While handling return value of" + ], + "start_col": 18, + "start_line": 11 + }, + "While expanding the reference '__return_value_ptr' in:" + ], + "start_col": 7, + "start_line": 106 + }, + "While handling return value 'address'" + ], + "start_col": 26, + "start_line": 2 + } + }, + "1320": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.addSheet_encode_return" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 72, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/return/addSheet/2ffe198cf4a563c150e4fd9f065444f352b287cd405fa3d3b5123915a2de7ae8.cairo" + }, + "parent_location": [ + { + "end_col": 14, + "end_line": 104, + "input_file": { + "filename": "src/starksheet/Starksheet.cairo" + }, + "parent_location": [ + { + "end_col": 40, + "end_line": 10, + "input_file": { + "filename": "autogen/starknet/external/return/addSheet/2ffe198cf4a563c150e4fd9f065444f352b287cd405fa3d3b5123915a2de7ae8.cairo" + }, + "parent_location": [ + { + "end_col": 14, + "end_line": 104, + "input_file": { + "filename": "src/starksheet/Starksheet.cairo" + }, + "start_col": 6, + "start_line": 104 + }, + "While handling return value of" + ], + "start_col": 25, + "start_line": 10 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 6, + "start_line": 104 + }, + "While handling return value of" + ], + "start_col": 57, + "start_line": 1 + } + }, + "1321": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.addSheet_encode_return" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 63, + "end_line": 11, + "input_file": { + "filename": "autogen/starknet/external/return/addSheet/2ffe198cf4a563c150e4fd9f065444f352b287cd405fa3d3b5123915a2de7ae8.cairo" + }, + "parent_location": [ + { + "end_col": 14, + "end_line": 104, + "input_file": { + "filename": "src/starksheet/Starksheet.cairo" + }, + "start_col": 6, + "start_line": 104 + }, + "While handling return value of" + ], + "start_col": 18, + "start_line": 11 + } + }, + "1322": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.addSheet_encode_return" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 35, + "end_line": 5, + "input_file": { + "filename": "autogen/starknet/external/return/addSheet/2ffe198cf4a563c150e4fd9f065444f352b287cd405fa3d3b5123915a2de7ae8.cairo" + }, + "parent_location": [ + { + "end_col": 14, + "end_line": 104, + "input_file": { + "filename": "src/starksheet/Starksheet.cairo" + }, + "parent_location": [ + { + "end_col": 38, + "end_line": 12, + "input_file": { + "filename": "autogen/starknet/external/return/addSheet/2ffe198cf4a563c150e4fd9f065444f352b287cd405fa3d3b5123915a2de7ae8.cairo" + }, + "parent_location": [ + { + "end_col": 14, + "end_line": 104, + "input_file": { + "filename": "src/starksheet/Starksheet.cairo" + }, + "start_col": 6, + "start_line": 104 + }, + "While handling return value of" + ], + "start_col": 14, + "start_line": 12 + }, + "While expanding the reference '__return_value_ptr_start' in:" + ], + "start_col": 6, + "start_line": 104 + }, + "While handling return value of" + ], + "start_col": 11, + "start_line": 5 + } + }, + "1323": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.addSheet_encode_return" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 40, + "end_line": 12, + "input_file": { + "filename": "autogen/starknet/external/return/addSheet/2ffe198cf4a563c150e4fd9f065444f352b287cd405fa3d3b5123915a2de7ae8.cairo" + }, + "parent_location": [ + { + "end_col": 14, + "end_line": 104, + "input_file": { + "filename": "src/starksheet/Starksheet.cairo" + }, + "start_col": 6, + "start_line": 104 + }, + "While handling return value of" + ], + "start_col": 5, + "start_line": 9 + } + }, + "1324": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.addSheet" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 67, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/addSheet/741ea357d6336b0bed7bf0472425acd0311d543883b803388880e60a232040c7.cairo" + }, + "parent_location": [ + { + "end_col": 78, + "end_line": 104, + "input_file": { + "filename": "src/starksheet/Starksheet.cairo" + }, + "parent_location": [ + { + "end_col": 24, + "end_line": 2, + "input_file": { + "filename": "autogen/starknet/arg_processor/c8edcb1cbb2b70f99346c0510efba5a82524d6fbe8558629ad05a45a84efd25b.cairo" + }, + "parent_location": [ + { + "end_col": 60, + "end_line": 105, + "input_file": { + "filename": "src/starksheet/Starksheet.cairo" + }, + "start_col": 48, + "start_line": 105 + }, + "While handling calldata argument 'proof'" + ], + "start_col": 9, + "start_line": 2 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 63, + "start_line": 104 + }, + "While constructing the external wrapper for:" + ], + "start_col": 23, + "start_line": 1 + } + }, + "1325": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.addSheet" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 48, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/arg_processor/991f62016c321db1ce050da1566d298118c65229306c26d6cd25e91286a63d4b.cairo" + }, + "parent_location": [ + { + "end_col": 46, + "end_line": 105, + "input_file": { + "filename": "src/starksheet/Starksheet.cairo" + }, + "parent_location": [ + { + "end_col": 52, + "end_line": 2, + "input_file": { + "filename": "autogen/starknet/arg_processor/c8edcb1cbb2b70f99346c0510efba5a82524d6fbe8558629ad05a45a84efd25b.cairo" + }, + "parent_location": [ + { + "end_col": 60, + "end_line": 105, + "input_file": { + "filename": "src/starksheet/Starksheet.cairo" + }, + "start_col": 48, + "start_line": 105 + }, + "While handling calldata argument 'proof'" + ], + "start_col": 28, + "start_line": 2 + }, + "While expanding the reference '__calldata_arg_proof_len' in:" + ], + "start_col": 31, + "start_line": 105 + }, + "While handling calldata argument 'proof_len'" + ], + "start_col": 32, + "start_line": 1 + } + }, + "1326": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.addSheet" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 53, + "end_line": 2, + "input_file": { + "filename": "autogen/starknet/arg_processor/c8edcb1cbb2b70f99346c0510efba5a82524d6fbe8558629ad05a45a84efd25b.cairo" + }, + "parent_location": [ + { + "end_col": 60, + "end_line": 105, + "input_file": { + "filename": "src/starksheet/Starksheet.cairo" + }, + "start_col": 48, + "start_line": 105 + }, + "While handling calldata argument 'proof'" + ], + "start_col": 1, + "start_line": 2 + } + }, + "1327": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.addSheet" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 40, + "end_line": 2, + "input_file": { + "filename": "autogen/starknet/arg_processor/991f62016c321db1ce050da1566d298118c65229306c26d6cd25e91286a63d4b.cairo" + }, + "parent_location": [ + { + "end_col": 46, + "end_line": 105, + "input_file": { + "filename": "src/starksheet/Starksheet.cairo" + }, + "parent_location": [ + { + "end_col": 40, + "end_line": 8, + "input_file": { + "filename": "autogen/starknet/arg_processor/c8edcb1cbb2b70f99346c0510efba5a82524d6fbe8558629ad05a45a84efd25b.cairo" + }, + "parent_location": [ + { + "end_col": 60, + "end_line": 105, + "input_file": { + "filename": "src/starksheet/Starksheet.cairo" + }, + "start_col": 48, + "start_line": 105 + }, + "While handling calldata argument 'proof'" + ], + "start_col": 26, + "start_line": 8 + }, + "While expanding the reference '__calldata_ptr' in:" + ], + "start_col": 31, + "start_line": 105 + }, + "While handling calldata argument 'proof_len'" + ], + "start_col": 22, + "start_line": 2 + } + }, + "1329": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.addSheet" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 48, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/arg_processor/991f62016c321db1ce050da1566d298118c65229306c26d6cd25e91286a63d4b.cairo" + }, + "parent_location": [ + { + "end_col": 46, + "end_line": 105, + "input_file": { + "filename": "src/starksheet/Starksheet.cairo" + }, + "parent_location": [ + { + "end_col": 67, + "end_line": 8, + "input_file": { + "filename": "autogen/starknet/arg_processor/c8edcb1cbb2b70f99346c0510efba5a82524d6fbe8558629ad05a45a84efd25b.cairo" + }, + "parent_location": [ + { + "end_col": 60, + "end_line": 105, + "input_file": { + "filename": "src/starksheet/Starksheet.cairo" + }, + "start_col": 48, + "start_line": 105 + }, + "While handling calldata argument 'proof'" + ], + "start_col": 43, + "start_line": 8 + }, + "While expanding the reference '__calldata_arg_proof_len' in:" + ], + "start_col": 31, + "start_line": 105 + }, + "While handling calldata argument 'proof_len'" + ], + "start_col": 32, + "start_line": 1 + } + }, + "1330": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.addSheet" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 71, + "end_line": 8, + "input_file": { + "filename": "autogen/starknet/arg_processor/c8edcb1cbb2b70f99346c0510efba5a82524d6fbe8558629ad05a45a84efd25b.cairo" + }, + "parent_location": [ + { + "end_col": 60, + "end_line": 105, + "input_file": { + "filename": "src/starksheet/Starksheet.cairo" + }, + "start_col": 48, + "start_line": 105 + }, + "While handling calldata argument 'proof'" + ], + "start_col": 26, + "start_line": 8 + } + }, + "1331": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.addSheet" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 58, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/arg_processor/01cba52f8515996bb9d7070bde81ff39281d096d7024a558efcba6e1fd2402cf.cairo" + }, + "parent_location": [ + { + "end_col": 14, + "end_line": 104, + "input_file": { + "filename": "src/starksheet/Starksheet.cairo" + }, + "start_col": 6, + "start_line": 104 + }, + "While handling calldata of" + ], + "start_col": 1, + "start_line": 1 + } + }, + "1332": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.addSheet" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 67, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/addSheet/741ea357d6336b0bed7bf0472425acd0311d543883b803388880e60a232040c7.cairo" + }, + "parent_location": [ + { + "end_col": 78, + "end_line": 104, + "input_file": { + "filename": "src/starksheet/Starksheet.cairo" + }, + "parent_location": [ + { + "end_col": 38, + "end_line": 3, + "input_file": { + "filename": "autogen/starknet/arg_processor/c8edcb1cbb2b70f99346c0510efba5a82524d6fbe8558629ad05a45a84efd25b.cairo" + }, + "parent_location": [ + { + "end_col": 60, + "end_line": 105, + "input_file": { + "filename": "src/starksheet/Starksheet.cairo" + }, + "parent_location": [ + { + "end_col": 115, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/addSheet/213f354d56fa372fb3299883fcb78fd6cc8bc78c028bf3d27b2cc1ff0477e80a.cairo" + }, + "parent_location": [ + { + "end_col": 14, + "end_line": 104, + "input_file": { + "filename": "src/starksheet/Starksheet.cairo" + }, + "start_col": 6, + "start_line": 104 + }, + "While constructing the external wrapper for:" + ], + "start_col": 100, + "start_line": 1 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 48, + "start_line": 105 + }, + "While handling calldata argument 'proof'" + ], + "start_col": 23, + "start_line": 3 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 63, + "start_line": 104 + }, + "While constructing the external wrapper for:" + ], + "start_col": 23, + "start_line": 1 + } + }, + "1333": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.addSheet" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 64, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/addSheet/b2c52ca2d2a8fc8791a983086d8716c5eacd0c3d62934914d2286f84b98ff4cb.cairo" + }, + "parent_location": [ + { + "end_col": 33, + "end_line": 104, + "input_file": { + "filename": "src/starksheet/Starksheet.cairo" + }, + "parent_location": [ + { + "end_col": 55, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/addSheet/213f354d56fa372fb3299883fcb78fd6cc8bc78c028bf3d27b2cc1ff0477e80a.cairo" + }, + "parent_location": [ + { + "end_col": 14, + "end_line": 104, + "input_file": { + "filename": "src/starksheet/Starksheet.cairo" + }, + "start_col": 6, + "start_line": 104 + }, + "While constructing the external wrapper for:" + ], + "start_col": 44, + "start_line": 1 + }, + "While expanding the reference 'syscall_ptr' in:" + ], + "start_col": 15, + "start_line": 104 + }, + "While constructing the external wrapper for:" + ], + "start_col": 19, + "start_line": 1 + } + }, + "1334": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.addSheet" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 110, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/addSheet/9684a85e93c782014ca14293edea4eb2502039a5a7b6538ecd39c56faaf12529.cairo" + }, + "parent_location": [ + { + "end_col": 61, + "end_line": 104, + "input_file": { + "filename": "src/starksheet/Starksheet.cairo" + }, + "parent_location": [ + { + "end_col": 82, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/addSheet/213f354d56fa372fb3299883fcb78fd6cc8bc78c028bf3d27b2cc1ff0477e80a.cairo" + }, + "parent_location": [ + { + "end_col": 14, + "end_line": 104, + "input_file": { + "filename": "src/starksheet/Starksheet.cairo" + }, + "start_col": 6, + "start_line": 104 + }, + "While constructing the external wrapper for:" + ], + "start_col": 70, + "start_line": 1 + }, + "While expanding the reference 'pedersen_ptr' in:" + ], + "start_col": 35, + "start_line": 104 + }, + "While constructing the external wrapper for:" + ], + "start_col": 20, + "start_line": 1 + } + }, + "1335": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.addSheet" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 42, + "end_line": 3, + "input_file": { + "filename": "autogen/starknet/arg_processor/c8edcb1cbb2b70f99346c0510efba5a82524d6fbe8558629ad05a45a84efd25b.cairo" + }, + "parent_location": [ + { + "end_col": 60, + "end_line": 105, + "input_file": { + "filename": "src/starksheet/Starksheet.cairo" + }, + "parent_location": [ + { + "end_col": 115, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/addSheet/213f354d56fa372fb3299883fcb78fd6cc8bc78c028bf3d27b2cc1ff0477e80a.cairo" + }, + "parent_location": [ + { + "end_col": 14, + "end_line": 104, + "input_file": { + "filename": "src/starksheet/Starksheet.cairo" + }, + "start_col": 6, + "start_line": 104 + }, + "While constructing the external wrapper for:" + ], + "start_col": 100, + "start_line": 1 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 48, + "start_line": 105 + }, + "While handling calldata argument 'proof'" + ], + "start_col": 23, + "start_line": 3 + } + }, + "1337": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.addSheet" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 43, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/arg_processor/e1eb73cd870ec466294c3700e77817cf3c039ac1384882ddb76383eb87a5da90.cairo" + }, + "parent_location": [ + { + "end_col": 15, + "end_line": 105, + "input_file": { + "filename": "src/starksheet/Starksheet.cairo" + }, + "parent_location": [ + { + "end_col": 141, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/addSheet/213f354d56fa372fb3299883fcb78fd6cc8bc78c028bf3d27b2cc1ff0477e80a.cairo" + }, + "parent_location": [ + { + "end_col": 14, + "end_line": 104, + "input_file": { + "filename": "src/starksheet/Starksheet.cairo" + }, + "start_col": 6, + "start_line": 104 + }, + "While constructing the external wrapper for:" + ], + "start_col": 122, + "start_line": 1 + }, + "While expanding the reference '__calldata_arg_name' in:" + ], + "start_col": 5, + "start_line": 105 + }, + "While handling calldata argument 'name'" + ], + "start_col": 27, + "start_line": 1 + } + }, + "1338": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.addSheet" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 45, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/arg_processor/99058c0781745b3c0332799d723549974cbf489b623dde03906204304de60803.cairo" + }, + "parent_location": [ + { + "end_col": 29, + "end_line": 105, + "input_file": { + "filename": "src/starksheet/Starksheet.cairo" + }, + "parent_location": [ + { + "end_col": 171, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/addSheet/213f354d56fa372fb3299883fcb78fd6cc8bc78c028bf3d27b2cc1ff0477e80a.cairo" + }, + "parent_location": [ + { + "end_col": 14, + "end_line": 104, + "input_file": { + "filename": "src/starksheet/Starksheet.cairo" + }, + "start_col": 6, + "start_line": 104 + }, + "While constructing the external wrapper for:" + ], + "start_col": 150, + "start_line": 1 + }, + "While expanding the reference '__calldata_arg_symbol' in:" + ], + "start_col": 17, + "start_line": 105 + }, + "While handling calldata argument 'symbol'" + ], + "start_col": 29, + "start_line": 1 + } + }, + "1339": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.addSheet" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 48, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/arg_processor/991f62016c321db1ce050da1566d298118c65229306c26d6cd25e91286a63d4b.cairo" + }, + "parent_location": [ + { + "end_col": 46, + "end_line": 105, + "input_file": { + "filename": "src/starksheet/Starksheet.cairo" + }, + "parent_location": [ + { + "end_col": 207, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/addSheet/213f354d56fa372fb3299883fcb78fd6cc8bc78c028bf3d27b2cc1ff0477e80a.cairo" + }, + "parent_location": [ + { + "end_col": 14, + "end_line": 104, + "input_file": { + "filename": "src/starksheet/Starksheet.cairo" + }, + "start_col": 6, + "start_line": 104 + }, + "While constructing the external wrapper for:" + ], + "start_col": 183, + "start_line": 1 + }, + "While expanding the reference '__calldata_arg_proof_len' in:" + ], + "start_col": 31, + "start_line": 105 + }, + "While handling calldata argument 'proof_len'" + ], + "start_col": 32, + "start_line": 1 + } + }, + "1340": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.addSheet" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 55, + "end_line": 5, + "input_file": { + "filename": "autogen/starknet/arg_processor/c8edcb1cbb2b70f99346c0510efba5a82524d6fbe8558629ad05a45a84efd25b.cairo" + }, + "parent_location": [ + { + "end_col": 60, + "end_line": 105, + "input_file": { + "filename": "src/starksheet/Starksheet.cairo" + }, + "parent_location": [ + { + "end_col": 235, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/addSheet/213f354d56fa372fb3299883fcb78fd6cc8bc78c028bf3d27b2cc1ff0477e80a.cairo" + }, + "parent_location": [ + { + "end_col": 14, + "end_line": 104, + "input_file": { + "filename": "src/starksheet/Starksheet.cairo" + }, + "start_col": 6, + "start_line": 104 + }, + "While constructing the external wrapper for:" + ], + "start_col": 215, + "start_line": 1 + }, + "While expanding the reference '__calldata_arg_proof' in:" + ], + "start_col": 48, + "start_line": 105 + }, + "While handling calldata argument 'proof'" + ], + "start_col": 28, + "start_line": 5 + } + }, + "1342": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.addSheet" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 14, + "end_line": 104, + "input_file": { + "filename": "src/starksheet/Starksheet.cairo" + }, + "start_col": 6, + "start_line": 104 + } + }, + "1344": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.addSheet" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 115, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/addSheet/213f354d56fa372fb3299883fcb78fd6cc8bc78c028bf3d27b2cc1ff0477e80a.cairo" + }, + "parent_location": [ + { + "end_col": 14, + "end_line": 104, + "input_file": { + "filename": "src/starksheet/Starksheet.cairo" + }, + "parent_location": [ + { + "end_col": 97, + "end_line": 2, + "input_file": { + "filename": "autogen/starknet/external/addSheet/213f354d56fa372fb3299883fcb78fd6cc8bc78c028bf3d27b2cc1ff0477e80a.cairo" + }, + "parent_location": [ + { + "end_col": 14, + "end_line": 104, + "input_file": { + "filename": "src/starksheet/Starksheet.cairo" + }, + "start_col": 6, + "start_line": 104 + }, + "While constructing the external wrapper for:" + ], + "start_col": 82, + "start_line": 2 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 6, + "start_line": 104 + }, + "While constructing the external wrapper for:" + ], + "start_col": 100, + "start_line": 1 + } + }, + "1345": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.addSheet" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 98, + "end_line": 2, + "input_file": { + "filename": "autogen/starknet/external/addSheet/213f354d56fa372fb3299883fcb78fd6cc8bc78c028bf3d27b2cc1ff0477e80a.cairo" + }, + "parent_location": [ + { + "end_col": 14, + "end_line": 104, + "input_file": { + "filename": "src/starksheet/Starksheet.cairo" + }, + "start_col": 6, + "start_line": 104 + }, + "While constructing the external wrapper for:" + ], + "start_col": 48, + "start_line": 2 + } + }, + "1347": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.addSheet" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 55, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/addSheet/213f354d56fa372fb3299883fcb78fd6cc8bc78c028bf3d27b2cc1ff0477e80a.cairo" + }, + "parent_location": [ + { + "end_col": 14, + "end_line": 104, + "input_file": { + "filename": "src/starksheet/Starksheet.cairo" + }, + "parent_location": [ + { + "end_col": 20, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/addSheet/da17921a4e81c09e730800bbf23bfdbe5e9e6bfaedc59d80fbf62087fa43c27d.cairo" + }, + "parent_location": [ + { + "end_col": 14, + "end_line": 104, + "input_file": { + "filename": "src/starksheet/Starksheet.cairo" + }, + "start_col": 6, + "start_line": 104 + }, + "While constructing the external wrapper for:" + ], + "start_col": 9, + "start_line": 1 + }, + "While expanding the reference 'syscall_ptr' in:" + ], + "start_col": 6, + "start_line": 104 + }, + "While constructing the external wrapper for:" + ], + "start_col": 44, + "start_line": 1 + } + }, + "1348": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.addSheet" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 82, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/addSheet/213f354d56fa372fb3299883fcb78fd6cc8bc78c028bf3d27b2cc1ff0477e80a.cairo" + }, + "parent_location": [ + { + "end_col": 14, + "end_line": 104, + "input_file": { + "filename": "src/starksheet/Starksheet.cairo" + }, + "parent_location": [ + { + "end_col": 33, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/addSheet/da17921a4e81c09e730800bbf23bfdbe5e9e6bfaedc59d80fbf62087fa43c27d.cairo" + }, + "parent_location": [ + { + "end_col": 14, + "end_line": 104, + "input_file": { + "filename": "src/starksheet/Starksheet.cairo" + }, + "start_col": 6, + "start_line": 104 + }, + "While constructing the external wrapper for:" + ], + "start_col": 21, + "start_line": 1 + }, + "While expanding the reference 'pedersen_ptr' in:" + ], + "start_col": 6, + "start_line": 104 + }, + "While constructing the external wrapper for:" + ], + "start_col": 70, + "start_line": 1 + } + }, + "1349": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.addSheet" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 21, + "end_line": 2, + "input_file": { + "filename": "autogen/starknet/external/addSheet/213f354d56fa372fb3299883fcb78fd6cc8bc78c028bf3d27b2cc1ff0477e80a.cairo" + }, + "parent_location": [ + { + "end_col": 14, + "end_line": 104, + "input_file": { + "filename": "src/starksheet/Starksheet.cairo" + }, + "parent_location": [ + { + "end_col": 49, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/addSheet/da17921a4e81c09e730800bbf23bfdbe5e9e6bfaedc59d80fbf62087fa43c27d.cairo" + }, + "parent_location": [ + { + "end_col": 14, + "end_line": 104, + "input_file": { + "filename": "src/starksheet/Starksheet.cairo" + }, + "start_col": 6, + "start_line": 104 + }, + "While constructing the external wrapper for:" + ], + "start_col": 34, + "start_line": 1 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 6, + "start_line": 104 + }, + "While constructing the external wrapper for:" + ], + "start_col": 6, + "start_line": 2 + } + }, + "1350": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.addSheet" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 35, + "end_line": 2, + "input_file": { + "filename": "autogen/starknet/external/addSheet/213f354d56fa372fb3299883fcb78fd6cc8bc78c028bf3d27b2cc1ff0477e80a.cairo" + }, + "parent_location": [ + { + "end_col": 14, + "end_line": 104, + "input_file": { + "filename": "src/starksheet/Starksheet.cairo" + }, + "parent_location": [ + { + "end_col": 62, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/addSheet/da17921a4e81c09e730800bbf23bfdbe5e9e6bfaedc59d80fbf62087fa43c27d.cairo" + }, + "parent_location": [ + { + "end_col": 14, + "end_line": 104, + "input_file": { + "filename": "src/starksheet/Starksheet.cairo" + }, + "start_col": 6, + "start_line": 104 + }, + "While constructing the external wrapper for:" + ], + "start_col": 50, + "start_line": 1 + }, + "While expanding the reference 'retdata_size' in:" + ], + "start_col": 6, + "start_line": 104 + }, + "While constructing the external wrapper for:" + ], + "start_col": 23, + "start_line": 2 + } + }, + "1351": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.addSheet" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 44, + "end_line": 2, + "input_file": { + "filename": "autogen/starknet/external/addSheet/213f354d56fa372fb3299883fcb78fd6cc8bc78c028bf3d27b2cc1ff0477e80a.cairo" + }, + "parent_location": [ + { + "end_col": 14, + "end_line": 104, + "input_file": { + "filename": "src/starksheet/Starksheet.cairo" + }, + "parent_location": [ + { + "end_col": 70, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/addSheet/da17921a4e81c09e730800bbf23bfdbe5e9e6bfaedc59d80fbf62087fa43c27d.cairo" + }, + "parent_location": [ + { + "end_col": 14, + "end_line": 104, + "input_file": { + "filename": "src/starksheet/Starksheet.cairo" + }, + "start_col": 6, + "start_line": 104 + }, + "While constructing the external wrapper for:" + ], + "start_col": 63, + "start_line": 1 + }, + "While expanding the reference 'retdata' in:" + ], + "start_col": 6, + "start_line": 104 + }, + "While constructing the external wrapper for:" + ], + "start_col": 37, + "start_line": 2 + } + }, + "1352": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.addSheet" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 72, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/addSheet/da17921a4e81c09e730800bbf23bfdbe5e9e6bfaedc59d80fbf62087fa43c27d.cairo" + }, + "parent_location": [ + { + "end_col": 14, + "end_line": 104, + "input_file": { + "filename": "src/starksheet/Starksheet.cairo" + }, + "start_col": 6, + "start_line": 104 + }, + "While constructing the external wrapper for:" + ], + "start_col": 1, + "start_line": 1 + } + }, + "1353": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.withdraw" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 33, + "end_line": 120, + "input_file": { + "filename": "src/starksheet/Starksheet.cairo" + }, + "parent_location": [ + { + "end_col": 46, + "end_line": 40, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/access/ownable/library.cairo" + }, + "parent_location": [ + { + "end_col": 32, + "end_line": 121, + "input_file": { + "filename": "src/starksheet/Starksheet.cairo" + }, + "start_col": 5, + "start_line": 121 + }, + "While trying to retrieve the implicit argument 'syscall_ptr' in:" + ], + "start_col": 28, + "start_line": 40 + }, + "While expanding the reference 'syscall_ptr' in:" + ], + "start_col": 15, + "start_line": 120 + } + }, + "1354": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.withdraw" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 61, + "end_line": 120, + "input_file": { + "filename": "src/starksheet/Starksheet.cairo" + }, + "parent_location": [ + { + "end_col": 74, + "end_line": 40, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/access/ownable/library.cairo" + }, + "parent_location": [ + { + "end_col": 32, + "end_line": 121, + "input_file": { + "filename": "src/starksheet/Starksheet.cairo" + }, + "start_col": 5, + "start_line": 121 + }, + "While trying to retrieve the implicit argument 'pedersen_ptr' in:" + ], + "start_col": 48, + "start_line": 40 + }, + "While expanding the reference 'pedersen_ptr' in:" + ], + "start_col": 35, + "start_line": 120 + } + }, + "1355": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.withdraw" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 78, + "end_line": 120, + "input_file": { + "filename": "src/starksheet/Starksheet.cairo" + }, + "parent_location": [ + { + "end_col": 91, + "end_line": 40, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/access/ownable/library.cairo" + }, + "parent_location": [ + { + "end_col": 32, + "end_line": 121, + "input_file": { + "filename": "src/starksheet/Starksheet.cairo" + }, + "start_col": 5, + "start_line": 121 + }, + "While trying to retrieve the implicit argument 'range_check_ptr' in:" + ], + "start_col": 76, + "start_line": 40 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 63, + "start_line": 120 + } + }, + "1356": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.withdraw" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 32, + "end_line": 121, + "input_file": { + "filename": "src/starksheet/Starksheet.cairo" + }, + "start_col": 5, + "start_line": 121 + } + }, + "1358": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.withdraw" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 46, + "end_line": 40, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/access/ownable/library.cairo" + }, + "parent_location": [ + { + "end_col": 32, + "end_line": 121, + "input_file": { + "filename": "src/starksheet/Starksheet.cairo" + }, + "parent_location": [ + { + "end_col": 45, + "end_line": 274, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/starknet/common/syscalls.cairo" + }, + "parent_location": [ + { + "end_col": 52, + "end_line": 122, + "input_file": { + "filename": "src/starksheet/Starksheet.cairo" + }, + "start_col": 30, + "start_line": 122 + }, + "While trying to retrieve the implicit argument 'syscall_ptr' in:" + ], + "start_col": 27, + "start_line": 274 + }, + "While expanding the reference 'syscall_ptr' in:" + ], + "start_col": 5, + "start_line": 121 + }, + "While trying to update the implicit return value 'syscall_ptr' in:" + ], + "start_col": 28, + "start_line": 40 + } + }, + "1359": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.withdraw" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 52, + "end_line": 122, + "input_file": { + "filename": "src/starksheet/Starksheet.cairo" + }, + "start_col": 30, + "start_line": 122 + } + }, + "1361": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.withdraw" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 45, + "end_line": 274, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/starknet/common/syscalls.cairo" + }, + "parent_location": [ + { + "end_col": 52, + "end_line": 122, + "input_file": { + "filename": "src/starksheet/Starksheet.cairo" + }, + "parent_location": [ + { + "end_col": 34, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/contract_interface/IERC20/balanceOf/4974e5a70a1f6babd6af454c42f20ca77d636c9a1af9e765a25bc1023d028b2f.cairo" + }, + "parent_location": [ + { + "end_col": 19, + "end_line": 22, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc20/IERC20.cairo" + }, + "parent_location": [ + { + "end_col": 92, + "end_line": 123, + "input_file": { + "filename": "src/starksheet/Starksheet.cairo" + }, + "start_col": 20, + "start_line": 123 + }, + "While trying to retrieve the implicit argument 'syscall_ptr' in:" + ], + "start_col": 10, + "start_line": 22 + }, + "While handling contract interface function:" + ], + "start_col": 16, + "start_line": 1 + }, + "While expanding the reference 'syscall_ptr' in:" + ], + "start_col": 30, + "start_line": 122 + }, + "While trying to update the implicit return value 'syscall_ptr' in:" + ], + "start_col": 27, + "start_line": 274 + } + }, + "1362": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.withdraw" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 91, + "end_line": 40, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/access/ownable/library.cairo" + }, + "parent_location": [ + { + "end_col": 32, + "end_line": 121, + "input_file": { + "filename": "src/starksheet/Starksheet.cairo" + }, + "parent_location": [ + { + "end_col": 51, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/contract_interface/IERC20/balanceOf/4974e5a70a1f6babd6af454c42f20ca77d636c9a1af9e765a25bc1023d028b2f.cairo" + }, + "parent_location": [ + { + "end_col": 19, + "end_line": 22, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc20/IERC20.cairo" + }, + "parent_location": [ + { + "end_col": 92, + "end_line": 123, + "input_file": { + "filename": "src/starksheet/Starksheet.cairo" + }, + "start_col": 20, + "start_line": 123 + }, + "While trying to retrieve the implicit argument 'range_check_ptr' in:" + ], + "start_col": 10, + "start_line": 22 + }, + "While handling contract interface function:" + ], + "start_col": 36, + "start_line": 1 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 5, + "start_line": 121 + }, + "While trying to update the implicit return value 'range_check_ptr' in:" + ], + "start_col": 76, + "start_line": 40 + } + }, + "1363": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.withdraw" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 65, + "end_line": 123, + "input_file": { + "filename": "src/starksheet/Starksheet.cairo" + }, + "start_col": 54, + "start_line": 123 + } + }, + "1365": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.withdraw" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 26, + "end_line": 122, + "input_file": { + "filename": "src/starksheet/Starksheet.cairo" + }, + "parent_location": [ + { + "end_col": 91, + "end_line": 123, + "input_file": { + "filename": "src/starksheet/Starksheet.cairo" + }, + "start_col": 75, + "start_line": 123 + }, + "While expanding the reference 'contract_address' in:" + ], + "start_col": 10, + "start_line": 122 + } + }, + "1366": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.withdraw" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 92, + "end_line": 123, + "input_file": { + "filename": "src/starksheet/Starksheet.cairo" + }, + "start_col": 20, + "start_line": 123 + } + }, + "1368": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.withdraw" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 34, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/contract_interface/IERC20/balanceOf/4974e5a70a1f6babd6af454c42f20ca77d636c9a1af9e765a25bc1023d028b2f.cairo" + }, + "parent_location": [ + { + "end_col": 19, + "end_line": 22, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc20/IERC20.cairo" + }, + "parent_location": [ + { + "end_col": 92, + "end_line": 123, + "input_file": { + "filename": "src/starksheet/Starksheet.cairo" + }, + "parent_location": [ + { + "end_col": 34, + "end_line": 56, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/access/ownable/library.cairo" + }, + "parent_location": [ + { + "end_col": 38, + "end_line": 124, + "input_file": { + "filename": "src/starksheet/Starksheet.cairo" + }, + "start_col": 23, + "start_line": 124 + }, + "While trying to retrieve the implicit argument 'syscall_ptr' in:" + ], + "start_col": 16, + "start_line": 56 + }, + "While expanding the reference 'syscall_ptr' in:" + ], + "start_col": 20, + "start_line": 123 + }, + "While trying to update the implicit return value 'syscall_ptr' in:" + ], + "start_col": 10, + "start_line": 22 + }, + "While handling contract interface function:" + ], + "start_col": 16, + "start_line": 1 + } + }, + "1369": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.withdraw" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 74, + "end_line": 40, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/access/ownable/library.cairo" + }, + "parent_location": [ + { + "end_col": 32, + "end_line": 121, + "input_file": { + "filename": "src/starksheet/Starksheet.cairo" + }, + "parent_location": [ + { + "end_col": 62, + "end_line": 56, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/access/ownable/library.cairo" + }, + "parent_location": [ + { + "end_col": 38, + "end_line": 124, + "input_file": { + "filename": "src/starksheet/Starksheet.cairo" + }, + "start_col": 23, + "start_line": 124 + }, + "While trying to retrieve the implicit argument 'pedersen_ptr' in:" + ], + "start_col": 36, + "start_line": 56 + }, + "While expanding the reference 'pedersen_ptr' in:" + ], + "start_col": 5, + "start_line": 121 + }, + "While trying to update the implicit return value 'pedersen_ptr' in:" + ], + "start_col": 48, + "start_line": 40 + } + }, + "1370": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.withdraw" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 51, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/contract_interface/IERC20/balanceOf/4974e5a70a1f6babd6af454c42f20ca77d636c9a1af9e765a25bc1023d028b2f.cairo" + }, + "parent_location": [ + { + "end_col": 19, + "end_line": 22, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc20/IERC20.cairo" + }, + "parent_location": [ + { + "end_col": 92, + "end_line": 123, + "input_file": { + "filename": "src/starksheet/Starksheet.cairo" + }, + "parent_location": [ + { + "end_col": 79, + "end_line": 56, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/access/ownable/library.cairo" + }, + "parent_location": [ + { + "end_col": 38, + "end_line": 124, + "input_file": { + "filename": "src/starksheet/Starksheet.cairo" + }, + "start_col": 23, + "start_line": 124 + }, + "While trying to retrieve the implicit argument 'range_check_ptr' in:" + ], + "start_col": 64, + "start_line": 56 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 20, + "start_line": 123 + }, + "While trying to update the implicit return value 'range_check_ptr' in:" + ], + "start_col": 10, + "start_line": 22 + }, + "While handling contract interface function:" + ], + "start_col": 36, + "start_line": 1 + } + }, + "1371": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.withdraw" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 38, + "end_line": 124, + "input_file": { + "filename": "src/starksheet/Starksheet.cairo" + }, + "start_col": 23, + "start_line": 124 + } + }, + "1373": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.withdraw" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 34, + "end_line": 56, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/access/ownable/library.cairo" + }, + "parent_location": [ + { + "end_col": 38, + "end_line": 124, + "input_file": { + "filename": "src/starksheet/Starksheet.cairo" + }, + "parent_location": [ + { + "end_col": 33, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/contract_interface/IERC20/transfer/f892130d94edea9ae607acf869de96f491807d8a0068726c99a57f1b7072baed.cairo" + }, + "parent_location": [ + { + "end_col": 18, + "end_line": 28, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc20/IERC20.cairo" + }, + "parent_location": [ + { + "end_col": 86, + "end_line": 125, + "input_file": { + "filename": "src/starksheet/Starksheet.cairo" + }, + "start_col": 5, + "start_line": 125 + }, + "While trying to retrieve the implicit argument 'syscall_ptr' in:" + ], + "start_col": 10, + "start_line": 28 + }, + "While handling contract interface function:" + ], + "start_col": 15, + "start_line": 1 + }, + "While expanding the reference 'syscall_ptr' in:" + ], + "start_col": 23, + "start_line": 124 + }, + "While trying to update the implicit return value 'syscall_ptr' in:" + ], + "start_col": 16, + "start_line": 56 + } + }, + "1374": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.withdraw" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 79, + "end_line": 56, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/access/ownable/library.cairo" + }, + "parent_location": [ + { + "end_col": 38, + "end_line": 124, + "input_file": { + "filename": "src/starksheet/Starksheet.cairo" + }, + "parent_location": [ + { + "end_col": 50, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/contract_interface/IERC20/transfer/f892130d94edea9ae607acf869de96f491807d8a0068726c99a57f1b7072baed.cairo" + }, + "parent_location": [ + { + "end_col": 18, + "end_line": 28, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc20/IERC20.cairo" + }, + "parent_location": [ + { + "end_col": 86, + "end_line": 125, + "input_file": { + "filename": "src/starksheet/Starksheet.cairo" + }, + "start_col": 5, + "start_line": 125 + }, + "While trying to retrieve the implicit argument 'range_check_ptr' in:" + ], + "start_col": 10, + "start_line": 28 + }, + "While handling contract interface function:" + ], + "start_col": 35, + "start_line": 1 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 23, + "start_line": 124 + }, + "While trying to update the implicit return value 'range_check_ptr' in:" + ], + "start_col": 64, + "start_line": 56 + } + }, + "1375": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.withdraw" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 49, + "end_line": 125, + "input_file": { + "filename": "src/starksheet/Starksheet.cairo" + }, + "start_col": 38, + "start_line": 125 + } + }, + "1377": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.withdraw" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 19, + "end_line": 124, + "input_file": { + "filename": "src/starksheet/Starksheet.cairo" + }, + "parent_location": [ + { + "end_col": 70, + "end_line": 125, + "input_file": { + "filename": "src/starksheet/Starksheet.cairo" + }, + "start_col": 61, + "start_line": 125 + }, + "While expanding the reference 'recipient' in:" + ], + "start_col": 10, + "start_line": 124 + } + }, + "1378": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.withdraw" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 16, + "end_line": 123, + "input_file": { + "filename": "src/starksheet/Starksheet.cairo" + }, + "parent_location": [ + { + "end_col": 85, + "end_line": 125, + "input_file": { + "filename": "src/starksheet/Starksheet.cairo" + }, + "start_col": 79, + "start_line": 125 + }, + "While expanding the reference 'amount' in:" + ], + "start_col": 10, + "start_line": 123 + } + }, + "1379": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.withdraw" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 16, + "end_line": 123, + "input_file": { + "filename": "src/starksheet/Starksheet.cairo" + }, + "parent_location": [ + { + "end_col": 85, + "end_line": 125, + "input_file": { + "filename": "src/starksheet/Starksheet.cairo" + }, + "start_col": 79, + "start_line": 125 + }, + "While expanding the reference 'amount' in:" + ], + "start_col": 10, + "start_line": 123 + } + }, + "1380": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.withdraw" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 86, + "end_line": 125, + "input_file": { + "filename": "src/starksheet/Starksheet.cairo" + }, + "start_col": 5, + "start_line": 125 + } + }, + "1382": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.withdraw" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 33, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/contract_interface/IERC20/transfer/f892130d94edea9ae607acf869de96f491807d8a0068726c99a57f1b7072baed.cairo" + }, + "parent_location": [ + { + "end_col": 18, + "end_line": 28, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc20/IERC20.cairo" + }, + "parent_location": [ + { + "end_col": 86, + "end_line": 125, + "input_file": { + "filename": "src/starksheet/Starksheet.cairo" + }, + "parent_location": [ + { + "end_col": 33, + "end_line": 120, + "input_file": { + "filename": "src/starksheet/Starksheet.cairo" + }, + "parent_location": [ + { + "end_col": 15, + "end_line": 126, + "input_file": { + "filename": "src/starksheet/Starksheet.cairo" + }, + "start_col": 5, + "start_line": 126 + }, + "While trying to retrieve the implicit argument 'syscall_ptr' in:" + ], + "start_col": 15, + "start_line": 120 + }, + "While expanding the reference 'syscall_ptr' in:" + ], + "start_col": 5, + "start_line": 125 + }, + "While trying to update the implicit return value 'syscall_ptr' in:" + ], + "start_col": 10, + "start_line": 28 + }, + "While handling contract interface function:" + ], + "start_col": 15, + "start_line": 1 + } + }, + "1383": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.withdraw" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 62, + "end_line": 56, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/access/ownable/library.cairo" + }, + "parent_location": [ + { + "end_col": 38, + "end_line": 124, + "input_file": { + "filename": "src/starksheet/Starksheet.cairo" + }, + "parent_location": [ + { + "end_col": 61, + "end_line": 120, + "input_file": { + "filename": "src/starksheet/Starksheet.cairo" + }, + "parent_location": [ + { + "end_col": 15, + "end_line": 126, + "input_file": { + "filename": "src/starksheet/Starksheet.cairo" + }, + "start_col": 5, + "start_line": 126 + }, + "While trying to retrieve the implicit argument 'pedersen_ptr' in:" + ], + "start_col": 35, + "start_line": 120 + }, + "While expanding the reference 'pedersen_ptr' in:" + ], + "start_col": 23, + "start_line": 124 + }, + "While trying to update the implicit return value 'pedersen_ptr' in:" + ], + "start_col": 36, + "start_line": 56 + } + }, + "1384": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.withdraw" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 50, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/contract_interface/IERC20/transfer/f892130d94edea9ae607acf869de96f491807d8a0068726c99a57f1b7072baed.cairo" + }, + "parent_location": [ + { + "end_col": 18, + "end_line": 28, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/token/erc20/IERC20.cairo" + }, + "parent_location": [ + { + "end_col": 86, + "end_line": 125, + "input_file": { + "filename": "src/starksheet/Starksheet.cairo" + }, + "parent_location": [ + { + "end_col": 78, + "end_line": 120, + "input_file": { + "filename": "src/starksheet/Starksheet.cairo" + }, + "parent_location": [ + { + "end_col": 15, + "end_line": 126, + "input_file": { + "filename": "src/starksheet/Starksheet.cairo" + }, + "start_col": 5, + "start_line": 126 + }, + "While trying to retrieve the implicit argument 'range_check_ptr' in:" + ], + "start_col": 63, + "start_line": 120 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 5, + "start_line": 125 + }, + "While trying to update the implicit return value 'range_check_ptr' in:" + ], + "start_col": 10, + "start_line": 28 + }, + "While handling contract interface function:" + ], + "start_col": 35, + "start_line": 1 + } + }, + "1385": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.withdraw" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 15, + "end_line": 126, + "input_file": { + "filename": "src/starksheet/Starksheet.cairo" + }, + "start_col": 5, + "start_line": 126 + } + }, + "1386": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.withdraw" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 58, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/arg_processor/01cba52f8515996bb9d7070bde81ff39281d096d7024a558efcba6e1fd2402cf.cairo" + }, + "parent_location": [ + { + "end_col": 14, + "end_line": 120, + "input_file": { + "filename": "src/starksheet/Starksheet.cairo" + }, + "start_col": 6, + "start_line": 120 + }, + "While handling calldata of" + ], + "start_col": 1, + "start_line": 1 + } + }, + "1387": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.withdraw" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 64, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/withdraw/b2c52ca2d2a8fc8791a983086d8716c5eacd0c3d62934914d2286f84b98ff4cb.cairo" + }, + "parent_location": [ + { + "end_col": 33, + "end_line": 120, + "input_file": { + "filename": "src/starksheet/Starksheet.cairo" + }, + "parent_location": [ + { + "end_col": 55, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/withdraw/8f83d060e7e088c358526f8859eb82973ba2c094c7d9223df6230b744dfa211c.cairo" + }, + "parent_location": [ + { + "end_col": 14, + "end_line": 120, + "input_file": { + "filename": "src/starksheet/Starksheet.cairo" + }, + "start_col": 6, + "start_line": 120 + }, + "While constructing the external wrapper for:" + ], + "start_col": 44, + "start_line": 1 + }, + "While expanding the reference 'syscall_ptr' in:" + ], + "start_col": 15, + "start_line": 120 + }, + "While constructing the external wrapper for:" + ], + "start_col": 19, + "start_line": 1 + } + }, + "1388": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.withdraw" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 110, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/withdraw/9684a85e93c782014ca14293edea4eb2502039a5a7b6538ecd39c56faaf12529.cairo" + }, + "parent_location": [ + { + "end_col": 61, + "end_line": 120, + "input_file": { + "filename": "src/starksheet/Starksheet.cairo" + }, + "parent_location": [ + { + "end_col": 82, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/withdraw/8f83d060e7e088c358526f8859eb82973ba2c094c7d9223df6230b744dfa211c.cairo" + }, + "parent_location": [ + { + "end_col": 14, + "end_line": 120, + "input_file": { + "filename": "src/starksheet/Starksheet.cairo" + }, + "start_col": 6, + "start_line": 120 + }, + "While constructing the external wrapper for:" + ], + "start_col": 70, + "start_line": 1 + }, + "While expanding the reference 'pedersen_ptr' in:" + ], + "start_col": 35, + "start_line": 120 + }, + "While constructing the external wrapper for:" + ], + "start_col": 20, + "start_line": 1 + } + }, + "1389": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.withdraw" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 67, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/withdraw/741ea357d6336b0bed7bf0472425acd0311d543883b803388880e60a232040c7.cairo" + }, + "parent_location": [ + { + "end_col": 78, + "end_line": 120, + "input_file": { + "filename": "src/starksheet/Starksheet.cairo" + }, + "parent_location": [ + { + "end_col": 115, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/withdraw/8f83d060e7e088c358526f8859eb82973ba2c094c7d9223df6230b744dfa211c.cairo" + }, + "parent_location": [ + { + "end_col": 14, + "end_line": 120, + "input_file": { + "filename": "src/starksheet/Starksheet.cairo" + }, + "start_col": 6, + "start_line": 120 + }, + "While constructing the external wrapper for:" + ], + "start_col": 100, + "start_line": 1 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 63, + "start_line": 120 + }, + "While constructing the external wrapper for:" + ], + "start_col": 23, + "start_line": 1 + } + }, + "1390": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.withdraw" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 14, + "end_line": 120, + "input_file": { + "filename": "src/starksheet/Starksheet.cairo" + }, + "start_col": 6, + "start_line": 120 + } + }, + "1392": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.withdraw" + ], + "flow_tracking_data": null, + "hints": [ + { + "location": { + "end_col": 34, + "end_line": 2, + "input_file": { + "filename": "autogen/starknet/external/withdraw/8f83d060e7e088c358526f8859eb82973ba2c094c7d9223df6230b744dfa211c.cairo" + }, + "parent_location": [ + { + "end_col": 14, + "end_line": 120, + "input_file": { + "filename": "src/starksheet/Starksheet.cairo" + }, + "start_col": 6, + "start_line": 120 + }, + "While constructing the external wrapper for:" + ], + "start_col": 1, + "start_line": 2 + }, + "n_prefix_newlines": 0 + } + ], + "inst": { + "end_col": 24, + "end_line": 3, + "input_file": { + "filename": "autogen/starknet/external/withdraw/8f83d060e7e088c358526f8859eb82973ba2c094c7d9223df6230b744dfa211c.cairo" + }, + "parent_location": [ + { + "end_col": 14, + "end_line": 120, + "input_file": { + "filename": "src/starksheet/Starksheet.cairo" + }, + "start_col": 6, + "start_line": 120 + }, + "While constructing the external wrapper for:" + ], + "start_col": 1, + "start_line": 3 + } + }, + "1394": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.withdraw" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 55, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/withdraw/8f83d060e7e088c358526f8859eb82973ba2c094c7d9223df6230b744dfa211c.cairo" + }, + "parent_location": [ + { + "end_col": 14, + "end_line": 120, + "input_file": { + "filename": "src/starksheet/Starksheet.cairo" + }, + "parent_location": [ + { + "end_col": 20, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/withdraw/da17921a4e81c09e730800bbf23bfdbe5e9e6bfaedc59d80fbf62087fa43c27d.cairo" + }, + "parent_location": [ + { + "end_col": 14, + "end_line": 120, + "input_file": { + "filename": "src/starksheet/Starksheet.cairo" + }, + "start_col": 6, + "start_line": 120 + }, + "While constructing the external wrapper for:" + ], + "start_col": 9, + "start_line": 1 + }, + "While expanding the reference 'syscall_ptr' in:" + ], + "start_col": 6, + "start_line": 120 + }, + "While constructing the external wrapper for:" + ], + "start_col": 44, + "start_line": 1 + } + }, + "1395": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.withdraw" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 82, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/withdraw/8f83d060e7e088c358526f8859eb82973ba2c094c7d9223df6230b744dfa211c.cairo" + }, + "parent_location": [ + { + "end_col": 14, + "end_line": 120, + "input_file": { + "filename": "src/starksheet/Starksheet.cairo" + }, + "parent_location": [ + { + "end_col": 33, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/withdraw/da17921a4e81c09e730800bbf23bfdbe5e9e6bfaedc59d80fbf62087fa43c27d.cairo" + }, + "parent_location": [ + { + "end_col": 14, + "end_line": 120, + "input_file": { + "filename": "src/starksheet/Starksheet.cairo" + }, + "start_col": 6, + "start_line": 120 + }, + "While constructing the external wrapper for:" + ], + "start_col": 21, + "start_line": 1 + }, + "While expanding the reference 'pedersen_ptr' in:" + ], + "start_col": 6, + "start_line": 120 + }, + "While constructing the external wrapper for:" + ], + "start_col": 70, + "start_line": 1 + } + }, + "1396": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.withdraw" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 115, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/withdraw/8f83d060e7e088c358526f8859eb82973ba2c094c7d9223df6230b744dfa211c.cairo" + }, + "parent_location": [ + { + "end_col": 14, + "end_line": 120, + "input_file": { + "filename": "src/starksheet/Starksheet.cairo" + }, + "parent_location": [ + { + "end_col": 49, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/withdraw/da17921a4e81c09e730800bbf23bfdbe5e9e6bfaedc59d80fbf62087fa43c27d.cairo" + }, + "parent_location": [ + { + "end_col": 14, + "end_line": 120, + "input_file": { + "filename": "src/starksheet/Starksheet.cairo" + }, + "start_col": 6, + "start_line": 120 + }, + "While constructing the external wrapper for:" + ], + "start_col": 34, + "start_line": 1 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 6, + "start_line": 120 + }, + "While constructing the external wrapper for:" + ], + "start_col": 100, + "start_line": 1 + } + }, + "1397": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.withdraw" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 21, + "end_line": 4, + "input_file": { + "filename": "autogen/starknet/external/withdraw/8f83d060e7e088c358526f8859eb82973ba2c094c7d9223df6230b744dfa211c.cairo" + }, + "parent_location": [ + { + "end_col": 14, + "end_line": 120, + "input_file": { + "filename": "src/starksheet/Starksheet.cairo" + }, + "parent_location": [ + { + "end_col": 62, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/withdraw/da17921a4e81c09e730800bbf23bfdbe5e9e6bfaedc59d80fbf62087fa43c27d.cairo" + }, + "parent_location": [ + { + "end_col": 14, + "end_line": 120, + "input_file": { + "filename": "src/starksheet/Starksheet.cairo" + }, + "start_col": 6, + "start_line": 120 + }, + "While constructing the external wrapper for:" + ], + "start_col": 50, + "start_line": 1 + }, + "While expanding the reference 'retdata_size' in:" + ], + "start_col": 6, + "start_line": 120 + }, + "While constructing the external wrapper for:" + ], + "start_col": 20, + "start_line": 4 + } + }, + "1399": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.withdraw" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 16, + "end_line": 3, + "input_file": { + "filename": "autogen/starknet/external/withdraw/8f83d060e7e088c358526f8859eb82973ba2c094c7d9223df6230b744dfa211c.cairo" + }, + "parent_location": [ + { + "end_col": 14, + "end_line": 120, + "input_file": { + "filename": "src/starksheet/Starksheet.cairo" + }, + "parent_location": [ + { + "end_col": 70, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/withdraw/da17921a4e81c09e730800bbf23bfdbe5e9e6bfaedc59d80fbf62087fa43c27d.cairo" + }, + "parent_location": [ + { + "end_col": 14, + "end_line": 120, + "input_file": { + "filename": "src/starksheet/Starksheet.cairo" + }, + "start_col": 6, + "start_line": 120 + }, + "While constructing the external wrapper for:" + ], + "start_col": 63, + "start_line": 1 + }, + "While expanding the reference 'retdata' in:" + ], + "start_col": 6, + "start_line": 120 + }, + "While constructing the external wrapper for:" + ], + "start_col": 9, + "start_line": 3 + } + }, + "1400": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.withdraw" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 72, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/withdraw/da17921a4e81c09e730800bbf23bfdbe5e9e6bfaedc59d80fbf62087fa43c27d.cairo" + }, + "parent_location": [ + { + "end_col": 14, + "end_line": 120, + "input_file": { + "filename": "src/starksheet/Starksheet.cairo" + }, + "start_col": 6, + "start_line": 120 + }, + "While constructing the external wrapper for:" + ], + "start_col": 1, + "start_line": 1 + } + }, + "1401": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.constructor" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 36, + "end_line": 130, + "input_file": { + "filename": "src/starksheet/Starksheet.cairo" + }, + "parent_location": [ + { + "end_col": 40, + "end_line": 31, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/access/ownable/library.cairo" + }, + "parent_location": [ + { + "end_col": 31, + "end_line": 137, + "input_file": { + "filename": "src/starksheet/Starksheet.cairo" + }, + "start_col": 5, + "start_line": 137 + }, + "While trying to retrieve the implicit argument 'syscall_ptr' in:" + ], + "start_col": 22, + "start_line": 31 + }, + "While expanding the reference 'syscall_ptr' in:" + ], + "start_col": 18, + "start_line": 130 + } + }, + "1402": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.constructor" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 64, + "end_line": 130, + "input_file": { + "filename": "src/starksheet/Starksheet.cairo" + }, + "parent_location": [ + { + "end_col": 68, + "end_line": 31, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/access/ownable/library.cairo" + }, + "parent_location": [ + { + "end_col": 31, + "end_line": 137, + "input_file": { + "filename": "src/starksheet/Starksheet.cairo" + }, + "start_col": 5, + "start_line": 137 + }, + "While trying to retrieve the implicit argument 'pedersen_ptr' in:" + ], + "start_col": 42, + "start_line": 31 + }, + "While expanding the reference 'pedersen_ptr' in:" + ], + "start_col": 38, + "start_line": 130 + } + }, + "1403": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.constructor" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 81, + "end_line": 130, + "input_file": { + "filename": "src/starksheet/Starksheet.cairo" + }, + "parent_location": [ + { + "end_col": 85, + "end_line": 31, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/access/ownable/library.cairo" + }, + "parent_location": [ + { + "end_col": 31, + "end_line": 137, + "input_file": { + "filename": "src/starksheet/Starksheet.cairo" + }, + "start_col": 5, + "start_line": 137 + }, + "While trying to retrieve the implicit argument 'range_check_ptr' in:" + ], + "start_col": 70, + "start_line": 31 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 66, + "start_line": 130 + } + }, + "1404": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.constructor" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 16, + "end_line": 131, + "input_file": { + "filename": "src/starksheet/Starksheet.cairo" + }, + "parent_location": [ + { + "end_col": 30, + "end_line": 137, + "input_file": { + "filename": "src/starksheet/Starksheet.cairo" + }, + "start_col": 25, + "start_line": 137 + }, + "While expanding the reference 'owner' in:" + ], + "start_col": 5, + "start_line": 131 + } + }, + "1405": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.constructor" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 31, + "end_line": 137, + "input_file": { + "filename": "src/starksheet/Starksheet.cairo" + }, + "start_col": 5, + "start_line": 137 + } + }, + "1407": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.constructor" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 27, + "end_line": 132, + "input_file": { + "filename": "src/starksheet/Starksheet.cairo" + }, + "parent_location": [ + { + "end_col": 53, + "end_line": 138, + "input_file": { + "filename": "src/starksheet/Starksheet.cairo" + }, + "start_col": 37, + "start_line": 138 + }, + "While expanding the reference 'sheet_class_hash' in:" + ], + "start_col": 5, + "start_line": 132 + } + }, + "1408": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.constructor" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 54, + "end_line": 138, + "input_file": { + "filename": "src/starksheet/Starksheet.cairo" + }, + "start_col": 5, + "start_line": 138 + } + }, + "1410": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.constructor" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 27, + "end_line": 133, + "input_file": { + "filename": "src/starksheet/Starksheet.cairo" + }, + "parent_location": [ + { + "end_col": 53, + "end_line": 139, + "input_file": { + "filename": "src/starksheet/Starksheet.cairo" + }, + "start_col": 37, + "start_line": 139 + }, + "While expanding the reference 'proxy_class_hash' in:" + ], + "start_col": 5, + "start_line": 133 + } + }, + "1411": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.constructor" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 54, + "end_line": 139, + "input_file": { + "filename": "src/starksheet/Starksheet.cairo" + }, + "start_col": 5, + "start_line": 139 + } + }, + "1413": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.constructor" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 35, + "end_line": 134, + "input_file": { + "filename": "src/starksheet/Starksheet.cairo" + }, + "parent_location": [ + { + "end_col": 75, + "end_line": 140, + "input_file": { + "filename": "src/starksheet/Starksheet.cairo" + }, + "start_col": 51, + "start_line": 140 + }, + "While expanding the reference 'default_renderer_address' in:" + ], + "start_col": 5, + "start_line": 134 + } + }, + "1414": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.constructor" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 76, + "end_line": 140, + "input_file": { + "filename": "src/starksheet/Starksheet.cairo" + }, + "start_col": 5, + "start_line": 140 + } + }, + "1416": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.constructor" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 22, + "end_line": 135, + "input_file": { + "filename": "src/starksheet/Starksheet.cairo" + }, + "parent_location": [ + { + "end_col": 43, + "end_line": 141, + "input_file": { + "filename": "src/starksheet/Starksheet.cairo" + }, + "start_col": 32, + "start_line": 141 + }, + "While expanding the reference 'sheet_price' in:" + ], + "start_col": 5, + "start_line": 135 + } + }, + "1417": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.constructor" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 44, + "end_line": 141, + "input_file": { + "filename": "src/starksheet/Starksheet.cairo" + }, + "start_col": 5, + "start_line": 141 + } + }, + "1419": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.constructor" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 15, + "end_line": 142, + "input_file": { + "filename": "src/starksheet/Starksheet.cairo" + }, + "start_col": 5, + "start_line": 142 + } + }, + "1420": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.constructor" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 40, + "end_line": 2, + "input_file": { + "filename": "autogen/starknet/arg_processor/84a2bc64d851e2911ec0d13897cb6972a17449fe2ee5622e1f07b8af8659444b.cairo" + }, + "parent_location": [ + { + "end_col": 22, + "end_line": 135, + "input_file": { + "filename": "src/starksheet/Starksheet.cairo" + }, + "parent_location": [ + { + "end_col": 45, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/arg_processor/c31620b02d4d706f0542c989b2aadc01b0981d1f6a5933a8fe4937ace3d70d92.cairo" + }, + "parent_location": [ + { + "end_col": 17, + "end_line": 130, + "input_file": { + "filename": "src/starksheet/Starksheet.cairo" + }, + "parent_location": [ + { + "end_col": 57, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/arg_processor/01cba52f8515996bb9d7070bde81ff39281d096d7024a558efcba6e1fd2402cf.cairo" + }, + "parent_location": [ + { + "end_col": 17, + "end_line": 130, + "input_file": { + "filename": "src/starksheet/Starksheet.cairo" + }, + "start_col": 6, + "start_line": 130 + }, + "While handling calldata of" + ], + "start_col": 35, + "start_line": 1 + }, + "While expanding the reference '__calldata_actual_size' in:" + ], + "start_col": 6, + "start_line": 130 + }, + "While handling calldata of" + ], + "start_col": 31, + "start_line": 1 + }, + "While expanding the reference '__calldata_ptr' in:" + ], + "start_col": 5, + "start_line": 135 + }, + "While handling calldata argument 'sheet_price'" + ], + "start_col": 22, + "start_line": 2 + } + }, + "1422": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.constructor" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 58, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/arg_processor/01cba52f8515996bb9d7070bde81ff39281d096d7024a558efcba6e1fd2402cf.cairo" + }, + "parent_location": [ + { + "end_col": 17, + "end_line": 130, + "input_file": { + "filename": "src/starksheet/Starksheet.cairo" + }, + "start_col": 6, + "start_line": 130 + }, + "While handling calldata of" + ], + "start_col": 1, + "start_line": 1 + } + }, + "1423": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.constructor" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 64, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/constructor/b2c52ca2d2a8fc8791a983086d8716c5eacd0c3d62934914d2286f84b98ff4cb.cairo" + }, + "parent_location": [ + { + "end_col": 36, + "end_line": 130, + "input_file": { + "filename": "src/starksheet/Starksheet.cairo" + }, + "parent_location": [ + { + "end_col": 55, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/constructor/8f3749cf8c383cbc50d9ba9905d1cad4ce7daf1443f3d85766484d9a76dbbaa9.cairo" + }, + "parent_location": [ + { + "end_col": 17, + "end_line": 130, + "input_file": { + "filename": "src/starksheet/Starksheet.cairo" + }, + "start_col": 6, + "start_line": 130 + }, + "While constructing the external wrapper for:" + ], + "start_col": 44, + "start_line": 1 + }, + "While expanding the reference 'syscall_ptr' in:" + ], + "start_col": 18, + "start_line": 130 + }, + "While constructing the external wrapper for:" + ], + "start_col": 19, + "start_line": 1 + } + }, + "1424": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.constructor" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 110, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/constructor/9684a85e93c782014ca14293edea4eb2502039a5a7b6538ecd39c56faaf12529.cairo" + }, + "parent_location": [ + { + "end_col": 64, + "end_line": 130, + "input_file": { + "filename": "src/starksheet/Starksheet.cairo" + }, + "parent_location": [ + { + "end_col": 82, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/constructor/8f3749cf8c383cbc50d9ba9905d1cad4ce7daf1443f3d85766484d9a76dbbaa9.cairo" + }, + "parent_location": [ + { + "end_col": 17, + "end_line": 130, + "input_file": { + "filename": "src/starksheet/Starksheet.cairo" + }, + "start_col": 6, + "start_line": 130 + }, + "While constructing the external wrapper for:" + ], + "start_col": 70, + "start_line": 1 + }, + "While expanding the reference 'pedersen_ptr' in:" + ], + "start_col": 38, + "start_line": 130 + }, + "While constructing the external wrapper for:" + ], + "start_col": 20, + "start_line": 1 + } + }, + "1425": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.constructor" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 67, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/constructor/741ea357d6336b0bed7bf0472425acd0311d543883b803388880e60a232040c7.cairo" + }, + "parent_location": [ + { + "end_col": 81, + "end_line": 130, + "input_file": { + "filename": "src/starksheet/Starksheet.cairo" + }, + "parent_location": [ + { + "end_col": 115, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/constructor/8f3749cf8c383cbc50d9ba9905d1cad4ce7daf1443f3d85766484d9a76dbbaa9.cairo" + }, + "parent_location": [ + { + "end_col": 17, + "end_line": 130, + "input_file": { + "filename": "src/starksheet/Starksheet.cairo" + }, + "start_col": 6, + "start_line": 130 + }, + "While constructing the external wrapper for:" + ], + "start_col": 100, + "start_line": 1 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 66, + "start_line": 130 + }, + "While constructing the external wrapper for:" + ], + "start_col": 23, + "start_line": 1 + } + }, + "1426": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.constructor" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 44, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/arg_processor/f6a4d9ae897caf37cefd18f7c8da7eee73157818279359aadee282f0fe59cdbc.cairo" + }, + "parent_location": [ + { + "end_col": 16, + "end_line": 131, + "input_file": { + "filename": "src/starksheet/Starksheet.cairo" + }, + "parent_location": [ + { + "end_col": 143, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/constructor/8f3749cf8c383cbc50d9ba9905d1cad4ce7daf1443f3d85766484d9a76dbbaa9.cairo" + }, + "parent_location": [ + { + "end_col": 17, + "end_line": 130, + "input_file": { + "filename": "src/starksheet/Starksheet.cairo" + }, + "start_col": 6, + "start_line": 130 + }, + "While constructing the external wrapper for:" + ], + "start_col": 123, + "start_line": 1 + }, + "While expanding the reference '__calldata_arg_owner' in:" + ], + "start_col": 5, + "start_line": 131 + }, + "While handling calldata argument 'owner'" + ], + "start_col": 28, + "start_line": 1 + } + }, + "1427": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.constructor" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 55, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/arg_processor/6308f83da46627ba10340f2f0137d9c971a0c59579c060b7ebe8202efda77ead.cairo" + }, + "parent_location": [ + { + "end_col": 27, + "end_line": 132, + "input_file": { + "filename": "src/starksheet/Starksheet.cairo" + }, + "parent_location": [ + { + "end_col": 193, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/constructor/8f3749cf8c383cbc50d9ba9905d1cad4ce7daf1443f3d85766484d9a76dbbaa9.cairo" + }, + "parent_location": [ + { + "end_col": 17, + "end_line": 130, + "input_file": { + "filename": "src/starksheet/Starksheet.cairo" + }, + "start_col": 6, + "start_line": 130 + }, + "While constructing the external wrapper for:" + ], + "start_col": 162, + "start_line": 1 + }, + "While expanding the reference '__calldata_arg_sheet_class_hash' in:" + ], + "start_col": 5, + "start_line": 132 + }, + "While handling calldata argument 'sheet_class_hash'" + ], + "start_col": 39, + "start_line": 1 + } + }, + "1428": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.constructor" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 55, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/arg_processor/f69f90509a2291ee8ff0cd25e4f9480461ca240ddaae0be0133e6c7b68569aae.cairo" + }, + "parent_location": [ + { + "end_col": 27, + "end_line": 133, + "input_file": { + "filename": "src/starksheet/Starksheet.cairo" + }, + "parent_location": [ + { + "end_col": 243, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/constructor/8f3749cf8c383cbc50d9ba9905d1cad4ce7daf1443f3d85766484d9a76dbbaa9.cairo" + }, + "parent_location": [ + { + "end_col": 17, + "end_line": 130, + "input_file": { + "filename": "src/starksheet/Starksheet.cairo" + }, + "start_col": 6, + "start_line": 130 + }, + "While constructing the external wrapper for:" + ], + "start_col": 212, + "start_line": 1 + }, + "While expanding the reference '__calldata_arg_proxy_class_hash' in:" + ], + "start_col": 5, + "start_line": 133 + }, + "While handling calldata argument 'proxy_class_hash'" + ], + "start_col": 39, + "start_line": 1 + } + }, + "1429": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.constructor" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 63, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/arg_processor/b945eb4d2e6ce71690a8e9a323dfc6cc25a7cf0bd0657092989cb3ad9f814989.cairo" + }, + "parent_location": [ + { + "end_col": 35, + "end_line": 134, + "input_file": { + "filename": "src/starksheet/Starksheet.cairo" + }, + "parent_location": [ + { + "end_col": 309, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/constructor/8f3749cf8c383cbc50d9ba9905d1cad4ce7daf1443f3d85766484d9a76dbbaa9.cairo" + }, + "parent_location": [ + { + "end_col": 17, + "end_line": 130, + "input_file": { + "filename": "src/starksheet/Starksheet.cairo" + }, + "start_col": 6, + "start_line": 130 + }, + "While constructing the external wrapper for:" + ], + "start_col": 270, + "start_line": 1 + }, + "While expanding the reference '__calldata_arg_default_renderer_address' in:" + ], + "start_col": 5, + "start_line": 134 + }, + "While handling calldata argument 'default_renderer_address'" + ], + "start_col": 47, + "start_line": 1 + } + }, + "1430": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.constructor" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 50, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/arg_processor/84a2bc64d851e2911ec0d13897cb6972a17449fe2ee5622e1f07b8af8659444b.cairo" + }, + "parent_location": [ + { + "end_col": 22, + "end_line": 135, + "input_file": { + "filename": "src/starksheet/Starksheet.cairo" + }, + "parent_location": [ + { + "end_col": 349, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/constructor/8f3749cf8c383cbc50d9ba9905d1cad4ce7daf1443f3d85766484d9a76dbbaa9.cairo" + }, + "parent_location": [ + { + "end_col": 17, + "end_line": 130, + "input_file": { + "filename": "src/starksheet/Starksheet.cairo" + }, + "start_col": 6, + "start_line": 130 + }, + "While constructing the external wrapper for:" + ], + "start_col": 323, + "start_line": 1 + }, + "While expanding the reference '__calldata_arg_sheet_price' in:" + ], + "start_col": 5, + "start_line": 135 + }, + "While handling calldata argument 'sheet_price'" + ], + "start_col": 34, + "start_line": 1 + } + }, + "1431": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.constructor" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 17, + "end_line": 130, + "input_file": { + "filename": "src/starksheet/Starksheet.cairo" + }, + "start_col": 6, + "start_line": 130 + } + }, + "1433": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.constructor" + ], + "flow_tracking_data": null, + "hints": [ + { + "location": { + "end_col": 34, + "end_line": 2, + "input_file": { + "filename": "autogen/starknet/external/constructor/8f3749cf8c383cbc50d9ba9905d1cad4ce7daf1443f3d85766484d9a76dbbaa9.cairo" + }, + "parent_location": [ + { + "end_col": 17, + "end_line": 130, + "input_file": { + "filename": "src/starksheet/Starksheet.cairo" + }, + "start_col": 6, + "start_line": 130 + }, + "While constructing the external wrapper for:" + ], + "start_col": 1, + "start_line": 2 + }, + "n_prefix_newlines": 0 + } + ], + "inst": { + "end_col": 24, + "end_line": 3, + "input_file": { + "filename": "autogen/starknet/external/constructor/8f3749cf8c383cbc50d9ba9905d1cad4ce7daf1443f3d85766484d9a76dbbaa9.cairo" + }, + "parent_location": [ + { + "end_col": 17, + "end_line": 130, + "input_file": { + "filename": "src/starksheet/Starksheet.cairo" + }, + "start_col": 6, + "start_line": 130 + }, + "While constructing the external wrapper for:" + ], + "start_col": 1, + "start_line": 3 + } + }, + "1435": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.constructor" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 55, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/constructor/8f3749cf8c383cbc50d9ba9905d1cad4ce7daf1443f3d85766484d9a76dbbaa9.cairo" + }, + "parent_location": [ + { + "end_col": 17, + "end_line": 130, + "input_file": { + "filename": "src/starksheet/Starksheet.cairo" + }, + "parent_location": [ + { + "end_col": 20, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/constructor/da17921a4e81c09e730800bbf23bfdbe5e9e6bfaedc59d80fbf62087fa43c27d.cairo" + }, + "parent_location": [ + { + "end_col": 17, + "end_line": 130, + "input_file": { + "filename": "src/starksheet/Starksheet.cairo" + }, + "start_col": 6, + "start_line": 130 + }, + "While constructing the external wrapper for:" + ], + "start_col": 9, + "start_line": 1 + }, + "While expanding the reference 'syscall_ptr' in:" + ], + "start_col": 6, + "start_line": 130 + }, + "While constructing the external wrapper for:" + ], + "start_col": 44, + "start_line": 1 + } + }, + "1436": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.constructor" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 82, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/constructor/8f3749cf8c383cbc50d9ba9905d1cad4ce7daf1443f3d85766484d9a76dbbaa9.cairo" + }, + "parent_location": [ + { + "end_col": 17, + "end_line": 130, + "input_file": { + "filename": "src/starksheet/Starksheet.cairo" + }, + "parent_location": [ + { + "end_col": 33, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/constructor/da17921a4e81c09e730800bbf23bfdbe5e9e6bfaedc59d80fbf62087fa43c27d.cairo" + }, + "parent_location": [ + { + "end_col": 17, + "end_line": 130, + "input_file": { + "filename": "src/starksheet/Starksheet.cairo" + }, + "start_col": 6, + "start_line": 130 + }, + "While constructing the external wrapper for:" + ], + "start_col": 21, + "start_line": 1 + }, + "While expanding the reference 'pedersen_ptr' in:" + ], + "start_col": 6, + "start_line": 130 + }, + "While constructing the external wrapper for:" + ], + "start_col": 70, + "start_line": 1 + } + }, + "1437": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.constructor" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 115, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/constructor/8f3749cf8c383cbc50d9ba9905d1cad4ce7daf1443f3d85766484d9a76dbbaa9.cairo" + }, + "parent_location": [ + { + "end_col": 17, + "end_line": 130, + "input_file": { + "filename": "src/starksheet/Starksheet.cairo" + }, + "parent_location": [ + { + "end_col": 49, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/constructor/da17921a4e81c09e730800bbf23bfdbe5e9e6bfaedc59d80fbf62087fa43c27d.cairo" + }, + "parent_location": [ + { + "end_col": 17, + "end_line": 130, + "input_file": { + "filename": "src/starksheet/Starksheet.cairo" + }, + "start_col": 6, + "start_line": 130 + }, + "While constructing the external wrapper for:" + ], + "start_col": 34, + "start_line": 1 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 6, + "start_line": 130 + }, + "While constructing the external wrapper for:" + ], + "start_col": 100, + "start_line": 1 + } + }, + "1438": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.constructor" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 21, + "end_line": 4, + "input_file": { + "filename": "autogen/starknet/external/constructor/8f3749cf8c383cbc50d9ba9905d1cad4ce7daf1443f3d85766484d9a76dbbaa9.cairo" + }, + "parent_location": [ + { + "end_col": 17, + "end_line": 130, + "input_file": { + "filename": "src/starksheet/Starksheet.cairo" + }, + "parent_location": [ + { + "end_col": 62, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/constructor/da17921a4e81c09e730800bbf23bfdbe5e9e6bfaedc59d80fbf62087fa43c27d.cairo" + }, + "parent_location": [ + { + "end_col": 17, + "end_line": 130, + "input_file": { + "filename": "src/starksheet/Starksheet.cairo" + }, + "start_col": 6, + "start_line": 130 + }, + "While constructing the external wrapper for:" + ], + "start_col": 50, + "start_line": 1 + }, + "While expanding the reference 'retdata_size' in:" + ], + "start_col": 6, + "start_line": 130 + }, + "While constructing the external wrapper for:" + ], + "start_col": 20, + "start_line": 4 + } + }, + "1440": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.constructor" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 16, + "end_line": 3, + "input_file": { + "filename": "autogen/starknet/external/constructor/8f3749cf8c383cbc50d9ba9905d1cad4ce7daf1443f3d85766484d9a76dbbaa9.cairo" + }, + "parent_location": [ + { + "end_col": 17, + "end_line": 130, + "input_file": { + "filename": "src/starksheet/Starksheet.cairo" + }, + "parent_location": [ + { + "end_col": 70, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/constructor/da17921a4e81c09e730800bbf23bfdbe5e9e6bfaedc59d80fbf62087fa43c27d.cairo" + }, + "parent_location": [ + { + "end_col": 17, + "end_line": 130, + "input_file": { + "filename": "src/starksheet/Starksheet.cairo" + }, + "start_col": 6, + "start_line": 130 + }, + "While constructing the external wrapper for:" + ], + "start_col": 63, + "start_line": 1 + }, + "While expanding the reference 'retdata' in:" + ], + "start_col": 6, + "start_line": 130 + }, + "While constructing the external wrapper for:" + ], + "start_col": 9, + "start_line": 3 + } + }, + "1441": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.constructor" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 72, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/constructor/da17921a4e81c09e730800bbf23bfdbe5e9e6bfaedc59d80fbf62087fa43c27d.cairo" + }, + "parent_location": [ + { + "end_col": 17, + "end_line": 130, + "input_file": { + "filename": "src/starksheet/Starksheet.cairo" + }, + "start_col": 6, + "start_line": 130 + }, + "While constructing the external wrapper for:" + ], + "start_col": 1, + "start_line": 1 + } + } + } + }, "hints": { "0": [ { diff --git a/packages/starksheet-cairo/build/Starksheet_abi.json b/packages/starksheet-cairo/build/Starksheet_abi.json deleted file mode 100644 index 191ede01..00000000 --- a/packages/starksheet-cairo/build/Starksheet_abi.json +++ /dev/null @@ -1,226 +0,0 @@ -[ - { - "data": [ - { - "name": "previousOwner", - "type": "felt" - }, - { - "name": "newOwner", - "type": "felt" - } - ], - "keys": [], - "name": "OwnershipTransferred", - "type": "event" - }, - { - "inputs": [ - { - "name": "address", - "type": "felt" - } - ], - "name": "setSheetDefaultRendererAddress", - "outputs": [], - "type": "function" - }, - { - "inputs": [], - "name": "getSheetDefaultRendererAddress", - "outputs": [ - { - "name": "address", - "type": "felt" - } - ], - "stateMutability": "view", - "type": "function" - }, - { - "inputs": [ - { - "name": "hash", - "type": "felt" - } - ], - "name": "setSheetClassHash", - "outputs": [], - "type": "function" - }, - { - "inputs": [], - "name": "getSheetClassHash", - "outputs": [ - { - "name": "hash", - "type": "felt" - } - ], - "stateMutability": "view", - "type": "function" - }, - { - "inputs": [ - { - "name": "hash", - "type": "felt" - } - ], - "name": "setProxyClassHash", - "outputs": [], - "type": "function" - }, - { - "inputs": [], - "name": "getProxyClassHash", - "outputs": [ - { - "name": "hash", - "type": "felt" - } - ], - "stateMutability": "view", - "type": "function" - }, - { - "inputs": [ - { - "name": "price", - "type": "felt" - } - ], - "name": "setSheetPrice", - "outputs": [], - "type": "function" - }, - { - "inputs": [], - "name": "getSheetPrice", - "outputs": [ - { - "name": "price", - "type": "felt" - } - ], - "stateMutability": "view", - "type": "function" - }, - { - "inputs": [ - { - "name": "hash", - "type": "felt" - } - ], - "name": "setMerkleRoot", - "outputs": [], - "type": "function" - }, - { - "inputs": [], - "name": "getMerkleRoot", - "outputs": [ - { - "name": "hash", - "type": "felt" - } - ], - "stateMutability": "view", - "type": "function" - }, - { - "inputs": [], - "name": "getSheets", - "outputs": [ - { - "name": "addresses_len", - "type": "felt" - }, - { - "name": "addresses", - "type": "felt*" - } - ], - "stateMutability": "view", - "type": "function" - }, - { - "inputs": [ - { - "name": "index", - "type": "felt" - } - ], - "name": "getSheet", - "outputs": [ - { - "name": "address", - "type": "felt" - } - ], - "stateMutability": "view", - "type": "function" - }, - { - "inputs": [ - { - "name": "name", - "type": "felt" - }, - { - "name": "symbol", - "type": "felt" - }, - { - "name": "proof_len", - "type": "felt" - }, - { - "name": "proof", - "type": "felt*" - } - ], - "name": "addSheet", - "outputs": [ - { - "name": "address", - "type": "felt" - } - ], - "type": "function" - }, - { - "inputs": [], - "name": "withdraw", - "outputs": [], - "type": "function" - }, - { - "inputs": [ - { - "name": "owner", - "type": "felt" - }, - { - "name": "sheet_class_hash", - "type": "felt" - }, - { - "name": "proxy_class_hash", - "type": "felt" - }, - { - "name": "default_renderer_address", - "type": "felt" - }, - { - "name": "sheet_price", - "type": "felt" - } - ], - "name": "constructor", - "outputs": [], - "type": "constructor" - } -] diff --git a/packages/starksheet-cairo/build/Subdomain.json b/packages/starksheet-cairo/build/Subdomain.json deleted file mode 100644 index 2e805fd9..00000000 --- a/packages/starksheet-cairo/build/Subdomain.json +++ /dev/null @@ -1,36431 +0,0 @@ -{ - "abi": [ - { - "data": [ - { - "name": "implementation", - "type": "felt" - } - ], - "keys": [], - "name": "Upgraded", - "type": "event" - }, - { - "data": [ - { - "name": "previousAdmin", - "type": "felt" - }, - { - "name": "newAdmin", - "type": "felt" - } - ], - "keys": [], - "name": "AdminChanged", - "type": "event" - }, - { - "inputs": [ - { - "name": "proxy_admin_address", - "type": "felt" - }, - { - "name": "starknetid_contract", - "type": "felt" - }, - { - "name": "naming_contract", - "type": "felt" - } - ], - "name": "initializer", - "outputs": [], - "type": "function" - }, - { - "inputs": [ - { - "name": "domain_len", - "type": "felt" - }, - { - "name": "domain", - "type": "felt*" - } - ], - "name": "claim_domain_back", - "outputs": [], - "type": "function" - }, - { - "inputs": [ - { - "name": "domain_ascii", - "type": "felt" - } - ], - "name": "register", - "outputs": [ - { - "name": "starknet_id_token", - "type": "felt" - }, - { - "name": "domain_len", - "type": "felt" - }, - { - "name": "domain", - "type": "felt*" - } - ], - "type": "function" - }, - { - "inputs": [], - "name": "open_registration", - "outputs": [], - "type": "function" - }, - { - "inputs": [], - "name": "close_registration", - "outputs": [], - "type": "function" - }, - { - "inputs": [], - "name": "is_registration_open", - "outputs": [ - { - "name": "is_registration_open", - "type": "felt" - } - ], - "stateMutability": "view", - "type": "function" - }, - { - "inputs": [ - { - "name": "domain_ascii", - "type": "felt" - } - ], - "name": "basic_encoding", - "outputs": [ - { - "name": "domain_encoded", - "type": "felt" - } - ], - "stateMutability": "view", - "type": "function" - } - ], - "entry_points_by_type": { - "CONSTRUCTOR": [], - "EXTERNAL": [ - { - "offset": 780, - "selector": "0x1007bd789f73e08c2714644c55b11c7d202931d717def434e3c9caa12a9f583" - }, - { - "offset": 872, - "selector": "0x1dbaccd8fbdb848fb83775fd813129fdc379b98d89467d72683839d5a305e6e" - }, - { - "offset": 841, - "selector": "0x1e3dbfa6013ca487e7f9f4d14fe6111a55bd99bf0a16fa5eb7f41aebeb76121" - }, - { - "offset": 614, - "selector": "0x255a2aa76e9ee8a0497bdb5592a0c98fe9b613e1946f34563f3700a48a950a9" - }, - { - "offset": 553, - "selector": "0x2dd76e7ad84dbed81c314ffe5e7a7cacfb8f4836f01af4e913f275f89a3de1a" - }, - { - "offset": 912, - "selector": "0x3a2157cf5c18dc9022ea04e76de6ff9114f26d120f7f74a2af06b0f05b34c2d" - }, - { - "offset": 815, - "selector": "0x3ca6fc4a7a1de39dffe9557542eb8ddca2b24030ae1c7d441a29662e28dc00c" - } - ], - "L1_HANDLER": [] - }, - "program": { - "attributes": [ - { - "accessible_scopes": [ - "__main__", - "__main__", - "__main__.claim_domain_back" - ], - "end_pc": 581, - "flow_tracking_data": { - "ap_tracking": { - "group": 43, - "offset": 4 - }, - "reference_ids": {} - }, - "name": "error_message", - "start_pc": 576, - "value": "You are not the admin" - }, - { - "accessible_scopes": [ - "__main__", - "__main__", - "__main__.register" - ], - "end_pc": 651, - "flow_tracking_data": { - "ap_tracking": { - "group": 49, - "offset": 33 - }, - "reference_ids": {} - }, - "name": "error_message", - "start_pc": 649, - "value": "The registration is closed" - }, - { - "accessible_scopes": [ - "__main__", - "__main__", - "__main__.register" - ], - "end_pc": 700, - "flow_tracking_data": { - "ap_tracking": { - "group": 50, - "offset": 1 - }, - "reference_ids": { - "__main__.register.domain": 23 - } - }, - "name": "error_message", - "start_pc": 681, - "value": "Name {domain} is not available" - }, - { - "accessible_scopes": [ - "__main__", - "__main__", - "__main__.register" - ], - "end_pc": 751, - "flow_tracking_data": { - "ap_tracking": { - "group": 51, - "offset": 75 - }, - "reference_ids": { - "__main__.register.token_id": 24 - } - }, - "name": "error_message", - "start_pc": 723, - "value": "token_id = {token_id}" - }, - { - "accessible_scopes": [ - "__main__", - "__main__._check_admin" - ], - "end_pc": 940, - "flow_tracking_data": { - "ap_tracking": { - "group": 75, - "offset": 29 - }, - "reference_ids": {} - }, - "name": "error_message", - "start_pc": 939, - "value": "You can not call this function cause you are not the admin." - } - ], - "builtins": [ - "pedersen", - "range_check", - "ecdsa" - ], - "compiler_version": "0.11.0.2", - "data": [ - "0x40780017fff7fff", - "0x1", - "0x208b7fff7fff7ffe", - "0x400380007ffb7ffc", - "0x400380017ffb7ffd", - "0x482680017ffb8000", - "0x3", - "0x480280027ffb8000", - "0x208b7fff7fff7ffe", - "0x20780017fff7ffd", - "0x3", - "0x208b7fff7fff7ffe", - "0x480a7ffb7fff8000", - "0x480a7ffc7fff8000", - "0x480080007fff8000", - "0x400080007ffd7fff", - "0x482480017ffd8001", - "0x1", - "0x482480017ffd8001", - "0x1", - "0xa0680017fff7ffe", - "0x800000000000010fffffffffffffffffffffffffffffffffffffffffffffffb", - "0x402a7ffc7ffd7fff", - "0x208b7fff7fff7ffe", - "0x480680017fff8000", - "0x43616c6c436f6e7472616374", - "0x400280007ff97fff", - "0x400380017ff97ffa", - "0x400380027ff97ffb", - "0x400380037ff97ffc", - "0x400380047ff97ffd", - "0x482680017ff98000", - "0x7", - "0x480280057ff98000", - "0x480280067ff98000", - "0x208b7fff7fff7ffe", - "0x480680017fff8000", - "0x47657443616c6c657241646472657373", - "0x400280007ffd7fff", - "0x482680017ffd8000", - "0x2", - "0x480280017ffd8000", - "0x208b7fff7fff7ffe", - "0x480680017fff8000", - "0x476574436f6e747261637441646472657373", - "0x400280007ffd7fff", - "0x482680017ffd8000", - "0x2", - "0x480280017ffd8000", - "0x208b7fff7fff7ffe", - "0x480680017fff8000", - "0x53746f7261676552656164", - "0x400280007ffc7fff", - "0x400380017ffc7ffd", - "0x482680017ffc8000", - "0x3", - "0x480280027ffc8000", - "0x208b7fff7fff7ffe", - "0x480680017fff8000", - "0x53746f726167655772697465", - "0x400280007ffb7fff", - "0x400380017ffb7ffc", - "0x400380027ffb7ffd", - "0x482680017ffb8000", - "0x3", - "0x208b7fff7fff7ffe", - "0x480680017fff8000", - "0x4765745478496e666f", - "0x400280007ffd7fff", - "0x482680017ffd8000", - "0x2", - "0x480280017ffd8000", - "0x208b7fff7fff7ffe", - "0x400380007ffc7ffd", - "0x482680017ffc8000", - "0x1", - "0x208b7fff7fff7ffe", - "0x480a7ffb7fff8000", - "0x48297ffc80007ffd", - "0x1104800180018000", - "0x800000000000010fffffffffffffffffffffffffffffffffffffffffffffffb", - "0x208b7fff7fff7ffe", - "0x480280017ffc8000", - "0x484480017fff8000", - "0x100000000000000000000000000000000", - "0x480280007ffc8000", - "0x40317fff7ffe7ffd", - "0x480280017ffc8000", - "0x482480017fff8000", - "0x800000000000010fffffffffffffffff7ffffffffffffef0000000000000001", - "0x20680017fff7fff", - "0xb", - "0x482680017ffc8000", - "0x2", - "0x480280007ffc8000", - "0x480680017fff8000", - "0x0", - "0x1104800180018000", - "0x800000000000010ffffffffffffffffffffffffffffffffffffffffffffffed", - "0x10780017fff7fff", - "0x9", - "0x482680017ffc8000", - "0x2", - "0x480280017ffc8000", - "0x480680017fff8000", - "0x800000000000010ffffffffffffffff", - "0x1104800180018000", - "0x800000000000010ffffffffffffffffffffffffffffffffffffffffffffffe4", - "0x480280017ffc8000", - "0x480280007ffc8000", - "0x208b7fff7fff7ffe", - "0x480280007ffb8000", - "0x480280017ffb8000", - "0x484480017fff8000", - "0x2aaaaaaaaaaaab05555555555555556", - "0x48307fff7ffd8000", - "0x480280027ffb8000", - "0x480280037ffb8000", - "0x484480017fff8000", - "0x4000000000000088000000000000001", - "0x48307fff7ffd8000", - "0xa0680017fff8000", - "0xe", - "0x480680017fff8000", - "0x800000000000011000000000000000000000000000000000000000000000000", - "0x48287ffc80007fff", - "0x40307ffc7ff87fff", - "0x48297ffd80007ffc", - "0x482680017ffd8000", - "0x1", - "0x48507fff7ffe8000", - "0x40507ff97ff57fff", - "0x482680017ffb8000", - "0x4", - "0x208b7fff7fff7ffe", - "0xa0680017fff8000", - "0xc", - "0x480680017fff8000", - "0x800000000000011000000000000000000000000000000000000000000000000", - "0x48287ffd80007fff", - "0x48327fff7ffc8000", - "0x40307ffa7ff67fff", - "0x48527ffe7ffc8000", - "0x40507ff97ff57fff", - "0x482680017ffb8000", - "0x4", - "0x208b7fff7fff7ffe", - "0x40317ffd7ff97ffd", - "0x48297ffc80007ffd", - "0x48527fff7ffc8000", - "0x40507ffb7ff77fff", - "0x40780017fff7fff", - "0x2", - "0x482680017ffb8000", - "0x4", - "0x208b7fff7fff7ffe", - "0x482680017ffb8000", - "0x2", - "0x480280007ffb8000", - "0x482680017ffd8000", - "0x800000000000011000000000000000000000000000000000000000000000000", - "0x1104800180018000", - "0x800000000000010ffffffffffffffffffffffffffffffffffffffffffffffad", - "0x480280017ffb8000", - "0x48487ffd7fff8000", - "0x480280007ffb8000", - "0x40317fff7ffe7ffc", - "0x48127ffc7fff8000", - "0x480280017ffb8000", - "0x480280007ffb8000", - "0x208b7fff7fff7ffe", - "0x400380017ff97ffa", - "0x400380007ff97ffb", - "0x482680017ff98000", - "0x2", - "0x208b7fff7fff7ffe", - "0x20780017fff7ffd", - "0x5", - "0x480680017fff8000", - "0x0", - "0x208b7fff7fff7ffe", - "0x480680017fff8000", - "0x1", - "0x208b7fff7fff7ffe", - "0xa0680017fff8000", - "0xa", - "0x400380007ffc7ffd", - "0x40780017fff7fff", - "0x14", - "0x482680017ffc8000", - "0x1", - "0x480680017fff8000", - "0x1", - "0x208b7fff7fff7ffe", - "0xa0680017fff8000", - "0xe", - "0x484680017ffd8000", - "0x800000000000011000000000000000000000000000000000000000000000000", - "0x482480017fff8000", - "0x800000000000011000000000000000000000000000000000000000000000000", - "0x400280007ffc7fff", - "0x40780017fff7fff", - "0x11", - "0x482680017ffc8000", - "0x1", - "0x480680017fff8000", - "0x0", - "0x208b7fff7fff7ffe", - "0x480a7ffc7fff8000", - "0x480680017fff8000", - "0x100000000000000000000000000000000", - "0x480a7ffd7fff8000", - "0x1104800180018000", - "0x800000000000010ffffffffffffffffffffffffffffffffffffffffffffff9c", - "0x480680017fff8000", - "0x0", - "0x208b7fff7fff7ffe", - "0x480a7ffb7fff8000", - "0x48297ffc80007ffd", - "0x1104800180018000", - "0x800000000000010ffffffffffffffffffffffffffffffffffffffffffffffde", - "0x208b7fff7fff7ffe", - "0x40780017fff7fff", - "0x3", - "0x1104800180018000", - "0x800000000000010ffffffffffffffffffffffffffffffffffffffffffffff21", - "0x40137fff7fff8000", - "0x4003800080007ffc", - "0x400380007ffa7ffc", - "0x402780017ffa8001", - "0x1", - "0x4826800180008000", - "0x1", - "0x40297ffc7fff8002", - "0x4826800180008000", - "0x1", - "0x480a7ffd7fff8000", - "0x480a7ffc7fff8000", - "0x1104800180018000", - "0x800000000000010ffffffffffffffffffffffffffffffffffffffffffffff1c", - "0x480a7ff97fff8000", - "0x480a7ffb7fff8000", - "0x480680017fff8000", - "0x2e269d930f6d7ab92b15ce8ff9f5e63709391617e3465fff79ba6baf278ce60", - "0x4829800080008002", - "0x480a80007fff8000", - "0x1104800180018000", - "0x800000000000010ffffffffffffffffffffffffffffffffffffffffffffff23", - "0x482480017fff8000", - "0x1", - "0x40307ffe7ffd7fff", - "0x48127ffc7fff8000", - "0x480a80017fff8000", - "0x480080007ffc8000", - "0x208b7fff7fff7ffe", - "0x40780017fff7fff", - "0x3", - "0x1104800180018000", - "0x800000000000010ffffffffffffffffffffffffffffffffffffffffffffff00", - "0x40137fff7fff8000", - "0x4003800080007ffc", - "0x400380007ffa7ffc", - "0x402780017ffa8001", - "0x1", - "0x4826800180008000", - "0x1", - "0x40297ffc7fff8002", - "0x4826800180008000", - "0x1", - "0x480a7ffd7fff8000", - "0x480a7ffc7fff8000", - "0x1104800180018000", - "0x800000000000010fffffffffffffffffffffffffffffffffffffffffffffefb", - "0x480a7ff97fff8000", - "0x480a7ffb7fff8000", - "0x480680017fff8000", - "0xa28d3433f3627ce1ad3eed0bdb681000cc2053561e99f7e02c0a03581d2ffd", - "0x4829800080008002", - "0x480a80007fff8000", - "0x1104800180018000", - "0x800000000000010ffffffffffffffffffffffffffffffffffffffffffffff02", - "0x482480017fff8000", - "0x1", - "0x40307ffe7ffd7fff", - "0x48127ffc7fff8000", - "0x480a80017fff8000", - "0x480080007ffc8000", - "0x208b7fff7fff7ffe", - "0x40780017fff7fff", - "0x3", - "0x1104800180018000", - "0x800000000000010fffffffffffffffffffffffffffffffffffffffffffffedf", - "0x40137fff7fff8000", - "0x4003800080007ffb", - "0x400380007ff97ffb", - "0x402780017ff98001", - "0x1", - "0x4826800180008000", - "0x1", - "0x40297ffb7fff8002", - "0x4826800180008000", - "0x1", - "0x480a7ffc7fff8000", - "0x480a7ffb7fff8000", - "0x1104800180018000", - "0x800000000000010fffffffffffffffffffffffffffffffffffffffffffffeda", - "0x4003800080027ffd", - "0x4826800180028000", - "0x1", - "0x480a7ff87fff8000", - "0x480a7ffa7fff8000", - "0x480680017fff8000", - "0x38f73698882ba44a8855de072de1aa92ec9fb65f808e70c24b19039f64ed243", - "0x4828800080007ffc", - "0x480a80007fff8000", - "0x1104800180018000", - "0x800000000000010fffffffffffffffffffffffffffffffffffffffffffffede", - "0x48127ffd7fff8000", - "0x480a80017fff8000", - "0x208b7fff7fff7ffe", - "0x40780017fff7fff", - "0x3", - "0x1104800180018000", - "0x800000000000010fffffffffffffffffffffffffffffffffffffffffffffebf", - "0x40137fff7fff8000", - "0x4003800080007ffb", - "0x400380007ff97ffb", - "0x402780017ff98001", - "0x1", - "0x4826800180008000", - "0x1", - "0x40297ffb7fff8002", - "0x4826800180008000", - "0x1", - "0x480a7ffc7fff8000", - "0x480a7ffb7fff8000", - "0x1104800180018000", - "0x800000000000010fffffffffffffffffffffffffffffffffffffffffffffeba", - "0x4003800080027ffd", - "0x4826800180028000", - "0x1", - "0x480a7ff87fff8000", - "0x480a7ffa7fff8000", - "0x480680017fff8000", - "0x2d3d2db68dc0e27fd3a9410150f34d83b02afa5f143aa1f2318b27f4574b460", - "0x4828800080007ffc", - "0x480a80007fff8000", - "0x1104800180018000", - "0x800000000000010fffffffffffffffffffffffffffffffffffffffffffffebe", - "0x48127ffd7fff8000", - "0x480a80017fff8000", - "0x208b7fff7fff7ffe", - "0x40780017fff7fff", - "0x1", - "0x1104800180018000", - "0x800000000000010fffffffffffffffffffffffffffffffffffffffffffffe9f", - "0x40137fff7fff8000", - "0x4003800080007ffa", - "0x4003800180007ffb", - "0x4003800280007ffc", - "0x4003800380007ffd", - "0x4826800180008000", - "0x4", - "0x480a7ff77fff8000", - "0x480a7ff97fff8000", - "0x480680017fff8000", - "0x41b033f4a31df8067c24d1e9b550a2ce75fd4a29e1147af9752174f0e6cb20", - "0x4828800080007ffc", - "0x480a80007fff8000", - "0x1104800180018000", - "0x800000000000010fffffffffffffffffffffffffffffffffffffffffffffea8", - "0x48127ffd7fff8000", - "0x480a7ff87fff8000", - "0x208b7fff7fff7ffe", - "0x40780017fff7fff", - "0x1", - "0x1104800180018000", - "0x800000000000010fffffffffffffffffffffffffffffffffffffffffffffe89", - "0x40137fff7fff8000", - "0x4003800080007ffd", - "0x4826800180008000", - "0x1", - "0x480a7ffa7fff8000", - "0x480a7ffc7fff8000", - "0x480680017fff8000", - "0x2f0b3c5710379609eb5495f1ecd348cb28167711b73609fe565a72734550354", - "0x4828800080007ffc", - "0x480a80007fff8000", - "0x1104800180018000", - "0x800000000000010fffffffffffffffffffffffffffffffffffffffffffffe95", - "0x48127ffd7fff8000", - "0x480a7ffb7fff8000", - "0x208b7fff7fff7ffe", - "0x40780017fff7fff", - "0x1", - "0x1104800180018000", - "0x800000000000010fffffffffffffffffffffffffffffffffffffffffffffe76", - "0x40137fff7fff8000", - "0x480a7ffb7fff8000", - "0x480a7ffd7fff8000", - "0x480680017fff8000", - "0x2016836a56b71f0d02689e69e326f4f4c1b9057164ef592671cf0d37c8040c0", - "0x4829800080008000", - "0x480a80007fff8000", - "0x1104800180018000", - "0x800000000000010fffffffffffffffffffffffffffffffffffffffffffffe85", - "0x482480017fff8000", - "0x1", - "0x40307ffe7ffd7fff", - "0x48127ffc7fff8000", - "0x480a7ffc7fff8000", - "0x480080007ffc8000", - "0x208b7fff7fff7ffe", - "0x480a7ffc7fff8000", - "0x480a7ffd7fff8000", - "0x480680017fff8000", - "0x1d18a04b8eb1bb9052d072bf4e1f14558b62d3fc328183db8c9854bceb3b833", - "0x208b7fff7fff7ffe", - "0x480a7ffc7fff8000", - "0x480a7ffd7fff8000", - "0x1104800180018000", - "0x800000000000010fffffffffffffffffffffffffffffffffffffffffffffffa", - "0x480a7ffb7fff8000", - "0x48127ffe7fff8000", - "0x1104800180018000", - "0x800000000000010fffffffffffffffffffffffffffffffffffffffffffffe8b", - "0x48127ffe7fff8000", - "0x48127ff57fff8000", - "0x48127ff57fff8000", - "0x48127ffc7fff8000", - "0x208b7fff7fff7ffe", - "0x480a7ffb7fff8000", - "0x480a7ffc7fff8000", - "0x1104800180018000", - "0x800000000000010ffffffffffffffffffffffffffffffffffffffffffffffed", - "0x480a7ffa7fff8000", - "0x48127ffe7fff8000", - "0x480a7ffd7fff8000", - "0x1104800180018000", - "0x800000000000010fffffffffffffffffffffffffffffffffffffffffffffe85", - "0x48127ff67fff8000", - "0x48127ff67fff8000", - "0x208b7fff7fff7ffe", - "0x480a7ffc7fff8000", - "0x480a7ffd7fff8000", - "0x480680017fff8000", - "0x31f917e75b9a6fff1e72c4082876e7c9c6f7f4f4a9805b5c828d1c806a035a9", - "0x208b7fff7fff7ffe", - "0x480a7ffc7fff8000", - "0x480a7ffd7fff8000", - "0x1104800180018000", - "0x800000000000010fffffffffffffffffffffffffffffffffffffffffffffffa", - "0x480a7ffb7fff8000", - "0x48127ffe7fff8000", - "0x1104800180018000", - "0x800000000000010fffffffffffffffffffffffffffffffffffffffffffffe6d", - "0x48127ffe7fff8000", - "0x48127ff57fff8000", - "0x48127ff57fff8000", - "0x48127ffc7fff8000", - "0x208b7fff7fff7ffe", - "0x480a7ffb7fff8000", - "0x480a7ffc7fff8000", - "0x1104800180018000", - "0x800000000000010ffffffffffffffffffffffffffffffffffffffffffffffed", - "0x480a7ffa7fff8000", - "0x48127ffe7fff8000", - "0x480a7ffd7fff8000", - "0x1104800180018000", - "0x800000000000010fffffffffffffffffffffffffffffffffffffffffffffe67", - "0x48127ff67fff8000", - "0x48127ff67fff8000", - "0x208b7fff7fff7ffe", - "0x480a7ffc7fff8000", - "0x480a7ffd7fff8000", - "0x480680017fff8000", - "0x34c2c84899828e90b9ac9ddc42733e09cd4ea9e5482dc794da64d43d9b16bb1", - "0x208b7fff7fff7ffe", - "0x480a7ffc7fff8000", - "0x480a7ffd7fff8000", - "0x1104800180018000", - "0x800000000000010fffffffffffffffffffffffffffffffffffffffffffffffa", - "0x480a7ffb7fff8000", - "0x48127ffe7fff8000", - "0x1104800180018000", - "0x800000000000010fffffffffffffffffffffffffffffffffffffffffffffe4f", - "0x48127ffe7fff8000", - "0x48127ff57fff8000", - "0x48127ff57fff8000", - "0x48127ffc7fff8000", - "0x208b7fff7fff7ffe", - "0x480a7ffb7fff8000", - "0x480a7ffc7fff8000", - "0x1104800180018000", - "0x800000000000010ffffffffffffffffffffffffffffffffffffffffffffffed", - "0x480a7ffa7fff8000", - "0x48127ffe7fff8000", - "0x480a7ffd7fff8000", - "0x1104800180018000", - "0x800000000000010fffffffffffffffffffffffffffffffffffffffffffffe49", - "0x48127ff67fff8000", - "0x48127ff67fff8000", - "0x208b7fff7fff7ffe", - "0x480a7ffc7fff8000", - "0x480a7ffd7fff8000", - "0x480680017fff8000", - "0x120113e5a35b8a6dfe4527082e79ed55f9af5c735f8fd8cdaa7f4a6b52899d0", - "0x208b7fff7fff7ffe", - "0x480a7ffc7fff8000", - "0x480a7ffd7fff8000", - "0x1104800180018000", - "0x800000000000010fffffffffffffffffffffffffffffffffffffffffffffffa", - "0x480a7ffb7fff8000", - "0x48127ffe7fff8000", - "0x1104800180018000", - "0x800000000000010fffffffffffffffffffffffffffffffffffffffffffffe31", - "0x48127ffe7fff8000", - "0x48127ff57fff8000", - "0x48127ff57fff8000", - "0x48127ffc7fff8000", - "0x208b7fff7fff7ffe", - "0x480a7ffb7fff8000", - "0x480a7ffc7fff8000", - "0x1104800180018000", - "0x800000000000010ffffffffffffffffffffffffffffffffffffffffffffffed", - "0x480a7ffa7fff8000", - "0x48127ffe7fff8000", - "0x480a7ffd7fff8000", - "0x1104800180018000", - "0x800000000000010fffffffffffffffffffffffffffffffffffffffffffffe2b", - "0x48127ff67fff8000", - "0x48127ff67fff8000", - "0x208b7fff7fff7ffe", - "0x480a7ff87fff8000", - "0x480a7ff97fff8000", - "0x480a7ffa7fff8000", - "0x1104800180018000", - "0x800000000000010ffffffffffffffffffffffffffffffffffffffffffffffc7", - "0x400680017fff7fff", - "0x0", - "0x48127ffc7fff8000", - "0x48127ffc7fff8000", - "0x48127ffc7fff8000", - "0x480a7ffb7fff8000", - "0x1104800180018000", - "0x800000000000010ffffffffffffffffffffffffffffffffffffffffffffffcc", - "0x480a7ffd7fff8000", - "0x1104800180018000", - "0x800000000000010ffffffffffffffffffffffffffffffffffffffffffffff8d", - "0x480a7ffc7fff8000", - "0x1104800180018000", - "0x800000000000010ffffffffffffffffffffffffffffffffffffffffffffffa8", - "0x208b7fff7fff7ffe", - "0x482680017ffd8000", - "0x3", - "0x402a7ffd7ffc7fff", - "0x480280007ffb8000", - "0x480280017ffb8000", - "0x480280027ffb8000", - "0x480280007ffd8000", - "0x480280017ffd8000", - "0x480280027ffd8000", - "0x1104800180018000", - "0x800000000000010ffffffffffffffffffffffffffffffffffffffffffffffe4", - "0x40780017fff7fff", - "0x1", - "0x48127ffc7fff8000", - "0x48127ffc7fff8000", - "0x48127ffc7fff8000", - "0x480280037ffb8000", - "0x480680017fff8000", - "0x0", - "0x48127ffa7fff8000", - "0x208b7fff7fff7ffe", - "0x40780017fff7fff", - "0x4", - "0x480a7ff97fff8000", - "0x480a7ffa7fff8000", - "0x480a7ffb7fff8000", - "0x1104800180018000", - "0x160", - "0x48127ffd7fff8000", - "0x1104800180018000", - "0x800000000000010fffffffffffffffffffffffffffffffffffffffffffffddf", - "0x40137fff7fff8000", - "0x48127ffe7fff8000", - "0x48127ff77fff8000", - "0x48127ff77fff8000", - "0x1104800180018000", - "0x164", - "0x40137ffe7fff8001", - "0x40137ffd7fff8002", - "0x40137ffb7fff8003", - "0x48127ffa7fff8000", - "0x48127ffb7fff8000", - "0x48127ffd7fff8000", - "0x480a7ffc7fff8000", - "0x480a7ffd7fff8000", - "0x1104800180018000", - "0x800000000000010fffffffffffffffffffffffffffffffffffffffffffffeaa", - "0x48127ffd7fff8000", - "0x48127ffd7fff8000", - "0x480a80017fff8000", - "0x480a80027fff8000", - "0x480a80007fff8000", - "0x48127ffa7fff8000", - "0x480680017fff8000", - "0x0", - "0x1104800180018000", - "0x800000000000010ffffffffffffffffffffffffffffffffffffffffffffff01", - "0x48127ffe7fff8000", - "0x480a80037fff8000", - "0x48127ffd7fff8000", - "0x208b7fff7fff7ffe", - "0x480280027ffb8000", - "0x480280007ffd8000", - "0x400080007ffe7fff", - "0x482680017ffd8000", - "0x1", - "0x480280007ffd8000", - "0x48307fff7ffe8000", - "0x402a7ffd7ffc7fff", - "0x480280027ffb8000", - "0x480280007ffb8000", - "0x480280017ffb8000", - "0x482480017ffd8000", - "0x1", - "0x480280007ffd8000", - "0x482680017ffd8000", - "0x1", - "0x1104800180018000", - "0x800000000000010ffffffffffffffffffffffffffffffffffffffffffffffc9", - "0x40780017fff7fff", - "0x1", - "0x48127ffc7fff8000", - "0x48127ffc7fff8000", - "0x48127ffc7fff8000", - "0x480280037ffb8000", - "0x480680017fff8000", - "0x0", - "0x48127ffa7fff8000", - "0x208b7fff7fff7ffe", - "0x40780017fff7fff", - "0xa", - "0x480a7ff97fff8000", - "0x480a7ffa7fff8000", - "0x480a7ffb7fff8000", - "0x1104800180018000", - "0x800000000000010ffffffffffffffffffffffffffffffffffffffffffffff76", - "0x400680017fff7fff", - "0x1", - "0x48127ffc7fff8000", - "0x1104800180018000", - "0x800000000000010fffffffffffffffffffffffffffffffffffffffffffffd99", - "0x40137fff7fff8000", - "0x48127ffe7fff8000", - "0x1104800180018000", - "0x800000000000010fffffffffffffffffffffffffffffffffffffffffffffdb3", - "0x40137fff7fff8001", - "0x48127ffe7fff8000", - "0x48127ff17fff8000", - "0x480a80007fff8000", - "0x1104800180018000", - "0x800000000000010fffffffffffffffffffffffffffffffffffffffffffffef4", - "0x4002800180017fff", - "0x1104800180018000", - "0x800000000000010fffffffffffffffffffffffffffffffffffffffffffffd68", - "0x40137fff7fff8002", - "0x48127ffa7fff8000", - "0x48127fd57fff8000", - "0x48127ff97fff8000", - "0x480a7ffd7fff8000", - "0x480680017fff8000", - "0x0", - "0x1104800180018000", - "0x122", - "0x40137fff7fff8003", - "0x4003800080028003", - "0x480680017fff8000", - "0xd6543486c", - "0x4002800180027fff", - "0x48127ffb7fff8000", - "0x48127ffb7fff8000", - "0x48127ffb7fff8000", - "0x1104800180018000", - "0x800000000000010fffffffffffffffffffffffffffffffffffffffffffffef7", - "0x40137ffd7fff8004", - "0x40137fff7fff8005", - "0x48127ffc7fff8000", - "0x48127ffd7fff8000", - "0x480a80057fff8000", - "0x480680017fff8000", - "0x2", - "0x480a80027fff8000", - "0x1104800180018000", - "0x800000000000010fffffffffffffffffffffffffffffffffffffffffffffe29", - "0x1104800180018000", - "0x800000000000010fffffffffffffffffffffffffffffffffffffffffffffdf9", - "0x400680017fff7fff", - "0x0", - "0x48127ffa7fff8000", - "0x480a80047fff8000", - "0x48127ff97fff8000", - "0x1104800180018000", - "0x800000000000010ffffffffffffffffffffffffffffffffffffffffffffff02", - "0x40137fff7fff8006", - "0x40137ffd7fff8007", - "0x48127ffe7fff8000", - "0x480a80007fff8000", - "0x1104800180018000", - "0x800000000000010fffffffffffffffffffffffffffffffffffffffffffffd8e", - "0x48127ffd7fff8000", - "0x48127ffe7fff8000", - "0x480680017fff8000", - "0x10000000000000000", - "0x1104800180018000", - "0x800000000000010fffffffffffffffffffffffffffffffffffffffffffffdd2", - "0x4802800780018000", - "0x40317fff7ffe8008", - "0x48127fd17fff8000", - "0x1104800180018000", - "0x800000000000010fffffffffffffffffffffffffffffffffffffffffffffd5c", - "0x40137fff7fff8009", - "0x48127ffe7fff8000", - "0x48127ff57fff8000", - "0x480a80067fff8000", - "0x480a80087fff8000", - "0x1104800180018000", - "0x800000000000010fffffffffffffffffffffffffffffffffffffffffffffea0", - "0x480a80057fff8000", - "0x480680017fff8000", - "0x2", - "0x480a80027fff8000", - "0x480a80087fff8000", - "0x1104800180018000", - "0x800000000000010fffffffffffffffffffffffffffffffffffffffffffffe63", - "0x480a80057fff8000", - "0x480680017fff8000", - "0x2", - "0x480a80027fff8000", - "0x4802800180018000", - "0x1104800180018000", - "0x800000000000010fffffffffffffffffffffffffffffffffffffffffffffe3c", - "0x480a80067fff8000", - "0x480a80097fff8000", - "0x4802800180018000", - "0x480a80087fff8000", - "0x480680017fff8000", - "0x0", - "0x1104800180018000", - "0x800000000000010fffffffffffffffffffffffffffffffffffffffffffffe74", - "0x48127ffe7fff8000", - "0x480a80077fff8000", - "0x48127ffd7fff8000", - "0x480a7ffc7fff8000", - "0x480a80087fff8000", - "0x480680017fff8000", - "0x2", - "0x480a80027fff8000", - "0x208b7fff7fff7ffe", - "0x40780017fff7fff", - "0x3", - "0x4003800080007ffa", - "0x4003800180007ffb", - "0x400380007ffd7ffb", - "0x402780017ffd8001", - "0x1", - "0x4826800180008000", - "0x2", - "0x40297ffb7fff8002", - "0x4826800180008000", - "0x2", - "0x480a7ffc7fff8000", - "0x480a7ffb7fff8000", - "0x1104800180018000", - "0x800000000000010fffffffffffffffffffffffffffffffffffffffffffffd04", - "0x480a80017fff8000", - "0x4829800080008002", - "0x480a80007fff8000", - "0x208b7fff7fff7ffe", - "0x40780017fff7fff", - "0x3", - "0x482680017ffd8000", - "0x1", - "0x402a7ffd7ffc7fff", - "0x480280007ffb8000", - "0x480280017ffb8000", - "0x480280027ffb8000", - "0x480280037ffb8000", - "0x480280007ffd8000", - "0x1104800180018000", - "0x800000000000010ffffffffffffffffffffffffffffffffffffffffffffff6d", - "0x40137ff97fff8000", - "0x40137ffa7fff8001", - "0x40137ffc7fff8002", - "0x48127ffb7fff8000", - "0x1104800180018000", - "0x800000000000010ffffffffffffffffffffffffffffffffffffffffffffffdd", - "0x480a80007fff8000", - "0x480a80017fff8000", - "0x48127ffb7fff8000", - "0x480a80027fff8000", - "0x48127ffa7fff8000", - "0x48127ffa7fff8000", - "0x208b7fff7fff7ffe", - "0x480a7ffb7fff8000", - "0x480a7ffc7fff8000", - "0x480a7ffd7fff8000", - "0x1104800180018000", - "0x7b", - "0x480680017fff8000", - "0x1", - "0x1104800180018000", - "0x800000000000010fffffffffffffffffffffffffffffffffffffffffffffede", - "0x208b7fff7fff7ffe", - "0x402b7ffd7ffc7ffd", - "0x480280007ffb8000", - "0x480280017ffb8000", - "0x480280027ffb8000", - "0x1104800180018000", - "0x800000000000010fffffffffffffffffffffffffffffffffffffffffffffff3", - "0x40780017fff7fff", - "0x1", - "0x48127ffc7fff8000", - "0x48127ffc7fff8000", - "0x48127ffc7fff8000", - "0x480280037ffb8000", - "0x480680017fff8000", - "0x0", - "0x48127ffa7fff8000", - "0x208b7fff7fff7ffe", - "0x480a7ffb7fff8000", - "0x480a7ffc7fff8000", - "0x480a7ffd7fff8000", - "0x1104800180018000", - "0x61", - "0x480680017fff8000", - "0x0", - "0x1104800180018000", - "0x800000000000010fffffffffffffffffffffffffffffffffffffffffffffec4", - "0x208b7fff7fff7ffe", - "0x402b7ffd7ffc7ffd", - "0x480280007ffb8000", - "0x480280017ffb8000", - "0x480280027ffb8000", - "0x1104800180018000", - "0x800000000000010fffffffffffffffffffffffffffffffffffffffffffffff3", - "0x40780017fff7fff", - "0x1", - "0x48127ffc7fff8000", - "0x48127ffc7fff8000", - "0x48127ffc7fff8000", - "0x480280037ffb8000", - "0x480680017fff8000", - "0x0", - "0x48127ffa7fff8000", - "0x208b7fff7fff7ffe", - "0x480a7ffb7fff8000", - "0x480a7ffc7fff8000", - "0x480a7ffd7fff8000", - "0x1104800180018000", - "0x800000000000010fffffffffffffffffffffffffffffffffffffffffffffea1", - "0x208b7fff7fff7ffe", - "0x40780017fff7fff", - "0x1", - "0x4003800080007ffc", - "0x4826800180008000", - "0x1", - "0x480a7ffd7fff8000", - "0x4828800080007ffe", - "0x480a80007fff8000", - "0x208b7fff7fff7ffe", - "0x402b7ffd7ffc7ffd", - "0x480280007ffb8000", - "0x480280017ffb8000", - "0x480280027ffb8000", - "0x1104800180018000", - "0x800000000000010ffffffffffffffffffffffffffffffffffffffffffffffee", - "0x48127ffe7fff8000", - "0x1104800180018000", - "0x800000000000010fffffffffffffffffffffffffffffffffffffffffffffff1", - "0x48127ff47fff8000", - "0x48127ff47fff8000", - "0x48127ffb7fff8000", - "0x480280037ffb8000", - "0x48127ffa7fff8000", - "0x48127ffa7fff8000", - "0x208b7fff7fff7ffe", - "0x480a7ffc7fff8000", - "0x480a7ffd7fff8000", - "0x480680017fff8000", - "0x100000000000000000000000000000000", - "0x1104800180018000", - "0x800000000000010fffffffffffffffffffffffffffffffffffffffffffffcf4", - "0x480a7ffa7fff8000", - "0x480a7ffb7fff8000", - "0x48127ffd7fff8000", - "0x480a7ffd7fff8000", - "0x480680017fff8000", - "0x0", - "0x1104800180018000", - "0x40", - "0x208b7fff7fff7ffe", - "0x40780017fff7fff", - "0x1", - "0x4003800080007ffc", - "0x4826800180008000", - "0x1", - "0x480a7ffd7fff8000", - "0x4828800080007ffe", - "0x480a80007fff8000", - "0x208b7fff7fff7ffe", - "0x482680017ffd8000", - "0x1", - "0x402a7ffd7ffc7fff", - "0x480280007ffb8000", - "0x480280017ffb8000", - "0x480280027ffb8000", - "0x480280007ffd8000", - "0x1104800180018000", - "0x800000000000010ffffffffffffffffffffffffffffffffffffffffffffffe2", - "0x48127ffe7fff8000", - "0x1104800180018000", - "0x800000000000010ffffffffffffffffffffffffffffffffffffffffffffffee", - "0x48127ff47fff8000", - "0x48127ff47fff8000", - "0x48127ffb7fff8000", - "0x480280037ffb8000", - "0x48127ffa7fff8000", - "0x48127ffa7fff8000", - "0x208b7fff7fff7ffe", - "0x480a7ffb7fff8000", - "0x1104800180018000", - "0x800000000000010fffffffffffffffffffffffffffffffffffffffffffffc81", - "0x48127ffe7fff8000", - "0x480a7ffc7fff8000", - "0x480a7ffd7fff8000", - "0x1104800180018000", - "0x800000000000010fffffffffffffffffffffffffffffffffffffffffffffe36", - "0x40127fff7fff7fe8", - "0x48127ffc7fff8000", - "0x48127ffc7fff8000", - "0x48127ffc7fff8000", - "0x208b7fff7fff7ffe", - "0x480a7ffb7fff8000", - "0x1104800180018000", - "0x800000000000010fffffffffffffffffffffffffffffffffffffffffffffc7b", - "0x48127ffe7fff8000", - "0x480a7ffc7fff8000", - "0x480a7ffd7fff8000", - "0x1104800180018000", - "0x800000000000010fffffffffffffffffffffffffffffffffffffffffffffe0b", - "0x48127ffc7fff8000", - "0x48127ffc7fff8000", - "0x48127ffc7fff8000", - "0x1104800180018000", - "0x800000000000010fffffffffffffffffffffffffffffffffffffffffffffde8", - "0x48127ffc7fff8000", - "0x48127ffc7fff8000", - "0x48127ffc7fff8000", - "0x48127fce7fff8000", - "0x48127fe47fff8000", - "0x48127ffa7fff8000", - "0x208b7fff7fff7ffe", - "0x40780017fff7fff", - "0x1", - "0x480a7ffb7fff8000", - "0x480680017fff8000", - "0x100", - "0x480a7ffc7fff8000", - "0x1104800180018000", - "0x800000000000010fffffffffffffffffffffffffffffffffffffffffffffd10", - "0x20680017fff7fff", - "0xf", - "0x480a7ff97fff8000", - "0x480a7ffa7fff8000", - "0x48127ffc7fff8000", - "0x480a7ffc7fff8000", - "0x1104800180018000", - "0x20", - "0x484680017ffd8000", - "0x26", - "0x48127ffb7fff8000", - "0x48127ffb7fff8000", - "0x48127ffb7fff8000", - "0x48307ffb7ffc8000", - "0x208b7fff7fff7ffe", - "0x48127ffe7fff8000", - "0x480a7ffc7fff8000", - "0x480680017fff8000", - "0x100", - "0x1104800180018000", - "0x800000000000010fffffffffffffffffffffffffffffffffffffffffffffcbe", - "0x40137ffe7fff8000", - "0x480a7ff97fff8000", - "0x480a7ffa7fff8000", - "0x48127ffb7fff8000", - "0x48127ffc7fff8000", - "0x1104800180018000", - "0xc", - "0x484680017ffd8000", - "0x26", - "0x48127ffb7fff8000", - "0x48127ffb7fff8000", - "0x48127ffb7fff8000", - "0x480a80007fff8000", - "0x48307ffa7ffb8000", - "0x1104800180018000", - "0x800000000000010ffffffffffffffffffffffffffffffffffffffffffffffd6", - "0x208b7fff7fff7ffe", - "0x482680017ffd8000", - "0x800000000000010ffffffffffffffffffffffffffffffffffffffffffffffd4", - "0x20680017fff7fff", - "0x8", - "0x480a7ffa7fff8000", - "0x480a7ffb7fff8000", - "0x480a7ffc7fff8000", - "0x480680017fff8000", - "0x24", - "0x208b7fff7fff7ffe", - "0x480a7ffc7fff8000", - "0x480680017fff8000", - "0x61", - "0x480a7ffd7fff8000", - "0x1104800180018000", - "0x800000000000010fffffffffffffffffffffffffffffffffffffffffffffcda", - "0x20680017fff7fff", - "0x15", - "0x48127ffe7fff8000", - "0x482680017ffd8000", - "0x800000000000010ffffffffffffffffffffffffffffffffffffffffffffffeb", - "0x480680017fff8000", - "0x23", - "0x1104800180018000", - "0x800000000000010fffffffffffffffffffffffffffffffffffffffffffffc45", - "0x480680017fff8000", - "0x1a", - "0x482680017ffd8000", - "0x800000000000010ffffffffffffffffffffffffffffffffffffffffffffffeb", - "0x1104800180018000", - "0x800000000000010fffffffffffffffffffffffffffffffffffffffffffffc3f", - "0x480a7ffa7fff8000", - "0x480a7ffb7fff8000", - "0x48127ffd7fff8000", - "0x482680017ffd8000", - "0x800000000000010ffffffffffffffffffffffffffffffffffffffffffffffeb", - "0x208b7fff7fff7ffe", - "0x48127ffe7fff8000", - "0x482680017ffd8000", - "0x800000000000010ffffffffffffffffffffffffffffffffffffffffffffffa0", - "0x480680017fff8000", - "0x19", - "0x1104800180018000", - "0x800000000000010fffffffffffffffffffffffffffffffffffffffffffffc32", - "0x480a7ffa7fff8000", - "0x480a7ffb7fff8000", - "0x48127ffd7fff8000", - "0x482680017ffd8000", - "0x800000000000010ffffffffffffffffffffffffffffffffffffffffffffffa0", - "0x208b7fff7fff7ffe" - ], - "debug_info": { - "file_contents": { - "autogen/starknet/arg_processor/01cba52f8515996bb9d7070bde81ff39281d096d7024a558efcba6e1fd2402cf.cairo": "assert [cast(fp + (-4), felt*)] = __calldata_actual_size;\n", - "autogen/starknet/arg_processor/0ef30555f44496866ef53271b24c6311394b0d6b81c0271dfd0cac757a5d73dc.cairo": "let __calldata_arg_domain_ascii = [__calldata_ptr];\nlet __calldata_ptr = __calldata_ptr + 1;\n", - "autogen/starknet/arg_processor/2670bb539ede27446c75876e41bcf9ef5cab09b9eec143f3986635a545b089ab.cairo": "assert [__calldata_ptr] = to;\nlet __calldata_ptr = __calldata_ptr + 1;\n", - "autogen/starknet/arg_processor/288b895dd4d5c29bfd5d1dec1a501aae621b1c406a4ee12ad9564927a72fa9fb.cairo": "// Check that the length is non-negative.\nassert [range_check_ptr] = domain_len;\n// Store the updated range_check_ptr as a local variable to keep it available after\n// the memcpy.\nlocal range_check_ptr = range_check_ptr + 1;\n// Keep a reference to __calldata_ptr.\nlet __calldata_ptr_copy = __calldata_ptr;\n// Store the updated __calldata_ptr as a local variable to keep it available after\n// the memcpy.\nlocal __calldata_ptr: felt* = __calldata_ptr + domain_len * 1;\nmemcpy(\n dst=__calldata_ptr_copy,\n src=domain,\n len=domain_len * 1);\n", - "autogen/starknet/arg_processor/449208c737b8d9d843bae48e01259f0d046d686ea4fb71270f1ccf94f769682a.cairo": "// Create a reference to token_id as felt*.\nlet __calldata_tmp: felt* = cast(&token_id, felt*);\nassert [__calldata_ptr + 0] = [__calldata_tmp + 0];\nassert [__calldata_ptr + 1] = [__calldata_tmp + 1];\nlet __calldata_ptr = __calldata_ptr + 2;\n", - "autogen/starknet/arg_processor/4bc87a0745cafb7f774d18bc100e0d999cb382948c62740076908ead14382e84.cairo": "let __return_value_arg_address = [__return_value_ptr];\nlet __return_value_ptr = __return_value_ptr + 1;\n", - "autogen/starknet/arg_processor/53f1a6139553b3ccccc557cc464dc3ef40218c3505fcd39eef55d3609f01686d.cairo": "assert [__calldata_ptr] = address;\nlet __calldata_ptr = __calldata_ptr + 1;\n", - "autogen/starknet/arg_processor/5f0c0cbac20f85f9d9012917259eea8b3598d9c95a80a5250b7fcd42e1adec6f.cairo": "assert [__return_value_ptr] = ret_value.starknet_id_token;\nlet __return_value_ptr = __return_value_ptr + 1;\n", - "autogen/starknet/arg_processor/7364b55c8a3069b5cf0bda5d3d03d9395d135e0acbb8746666ea4565ccfe4587.cairo": "let __calldata_arg_starknetid_contract = [__calldata_ptr];\nlet __calldata_ptr = __calldata_ptr + 1;\n", - "autogen/starknet/arg_processor/8339a6640c627e9911eb5c59bed25870348dede436b3d376cff72949db1f150a.cairo": "assert [__calldata_ptr] = domain_len;\nlet __calldata_ptr = __calldata_ptr + 1;\n", - "autogen/starknet/arg_processor/8ec5ab086a6ec421b0d75ada64b1bb6ab10a137cbf2bed9df67abc2a3a603f5b.cairo": "assert [__calldata_ptr] = _from;\nlet __calldata_ptr = __calldata_ptr + 1;\n", - "autogen/starknet/arg_processor/96447016176d161dae83f414c4d3e33e78856e0ef69bc33f8d419f1c9b90f9c5.cairo": "assert retdata_size = __return_value_actual_size;\n", - "autogen/starknet/arg_processor/96b6d646a56c08f445e6e1857e912678843134b143f0b538a202cafa959fe18f.cairo": "let __calldata_arg_proxy_admin_address = [__calldata_ptr];\nlet __calldata_ptr = __calldata_ptr + 1;\n", - "autogen/starknet/arg_processor/accb388bcbbace5b6218198851efaad2a781c1339e305a37fab51afe90a3194a.cairo": "let __return_value_actual_size = __return_value_ptr - cast(retdata, felt*);\n", - "autogen/starknet/arg_processor/ad6ac0c85ad8739704cc5f4980561dd6bf7a6e3282834f8fb6bf7898431fc31a.cairo": "let __calldata_arg_naming_contract = [__calldata_ptr];\nlet __calldata_ptr = __calldata_ptr + 1;\n", - "autogen/starknet/arg_processor/b2cf08f23bd6d74eeb872bed49d06f4a7518757c8955198bd7ce9a52a9cf0046.cairo": "assert [__calldata_ptr] = token_id;\nlet __calldata_ptr = __calldata_ptr + 1;\n", - "autogen/starknet/arg_processor/b7edf9a707658e9625a029e4f8ceaf32e1a47f454aa4132472642fd2ef404947.cairo": "let __return_value_arg_owner = [__return_value_ptr];\nlet __return_value_ptr = __return_value_ptr + 1;\n", - "autogen/starknet/arg_processor/bfbc0c07adf06f8d40156630b0f75a4deaf72283241087f1612f8ae30e3a6e5e.cairo": "assert [__return_value_ptr] = ret_value.domain_encoded;\nlet __return_value_ptr = __return_value_ptr + 1;\n", - "autogen/starknet/arg_processor/c31620b02d4d706f0542c989b2aadc01b0981d1f6a5933a8fe4937ace3d70d92.cairo": "let __calldata_actual_size = __calldata_ptr - cast([cast(fp + (-3), felt**)], felt*);\n", - "autogen/starknet/arg_processor/c52d0b3b4b86a38cacd1d4ac89a0241623cad45a643a7142a6cf5f5594d46e8e.cairo": "assert [__calldata_ptr] = target_token_id;\nlet __calldata_ptr = __calldata_ptr + 1;\n", - "autogen/starknet/arg_processor/ce158bd77366de4fd9094e10e9c6b075083279651c19c6c5ca68af0dc3f7cbc3.cairo": "// Check that the length is non-negative.\nassert [range_check_ptr] = ret_value.domain_len;\n// Store the updated range_check_ptr as a local variable to keep it available after\n// the memcpy.\nlocal range_check_ptr = range_check_ptr + 1;\n// Keep a reference to __return_value_ptr.\nlet __return_value_ptr_copy = __return_value_ptr;\n// Store the updated __return_value_ptr as a local variable to keep it available after\n// the memcpy.\nlocal __return_value_ptr: felt* = __return_value_ptr + ret_value.domain_len * 1;\nmemcpy(\n dst=__return_value_ptr_copy,\n src=ret_value.domain,\n len=ret_value.domain_len * 1);\n", - "autogen/starknet/arg_processor/e7b3b829580644dc52a381033e280d055296419573a8f14b3b38653364d1eab5.cairo": "assert [__return_value_ptr] = ret_value.is_registration_open;\nlet __return_value_ptr = __return_value_ptr + 1;\n", - "autogen/starknet/arg_processor/ecf03f15152f9b4d2d3eb98ddd06a26dab9c64ca1c8ef3baff428e06f0676f44.cairo": "// Check that the length is non-negative.\nassert [range_check_ptr] = __calldata_arg_domain_len;\nlet range_check_ptr = range_check_ptr + 1;\n// Create the reference.\nlet __calldata_arg_domain = cast(__calldata_ptr, felt*);\n// Use 'tempvar' instead of 'let' to avoid repeating this computation for the\n// following arguments.\ntempvar __calldata_ptr = __calldata_ptr + __calldata_arg_domain_len * 1;\n", - "autogen/starknet/arg_processor/ed50269b72e425c5b3d67a4bb9888a6c7b7ffd156c3460ac766545cf8944b51c.cairo": "let __calldata_arg_domain_len = [__calldata_ptr];\nlet __calldata_ptr = __calldata_ptr + 1;\n", - "autogen/starknet/arg_processor/fda0377f98df47534d3f82c18ace9f8dd918a85588f088266053ca8d1244db2a.cairo": "assert [__return_value_ptr] = ret_value.domain_len;\nlet __return_value_ptr = __return_value_ptr + 1;\n", - "autogen/starknet/contract_interface/INaming/domain_to_address/64f7842b108e76706927b78270ac73c789c558c54431b3359e4441e63ec2a868.cairo": "\nalloc_locals;\nlet (local calldata_ptr_start: felt*) = alloc();\nlet __calldata_ptr = calldata_ptr_start;\n", - "autogen/starknet/contract_interface/INaming/domain_to_address/bf371099680e34ca6cf2304d3dbb8440b7edd177043cb2911538d9a8f3a352db.cairo": "\nlet (retdata_size, retdata) = call_contract(\n contract_address=contract_address,\n function_selector=DOMAIN_TO_ADDRESS_SELECTOR,\n calldata_size=__calldata_ptr - calldata_ptr_start,\n calldata=calldata_ptr_start);\n", - "autogen/starknet/contract_interface/INaming/domain_to_address/c7bccfe2278372ac44337810829ba4239dbbfdd698c174aa9639022183a1c840.cairo": "func domain_to_address{syscall_ptr: felt*, range_check_ptr}(\n contract_address: felt) {\n}\n", - "autogen/starknet/contract_interface/INaming/domain_to_address/e5339f61923a643d588142dd246c0bb4d236017fbb005eafc3038bc09cc8cbbb.cairo": "\nreturn (address=__return_value_arg_address,);\n", - "autogen/starknet/contract_interface/INaming/domain_to_token_id/64f7842b108e76706927b78270ac73c789c558c54431b3359e4441e63ec2a868.cairo": "\nalloc_locals;\nlet (local calldata_ptr_start: felt*) = alloc();\nlet __calldata_ptr = calldata_ptr_start;\n", - "autogen/starknet/contract_interface/INaming/domain_to_token_id/910d281591f877ec93ccb04ae97a6bd968ac0de23e7f59b370fc45289866e4d4.cairo": "func domain_to_token_id{syscall_ptr: felt*, range_check_ptr}(\n contract_address: felt) {\n}\n", - "autogen/starknet/contract_interface/INaming/domain_to_token_id/f27c943c049e684cf6ef28088e39c8bbdc73f90eb3516b19115b01ca89603a57.cairo": "\nlet (retdata_size, retdata) = call_contract(\n contract_address=contract_address,\n function_selector=DOMAIN_TO_TOKEN_ID_SELECTOR,\n calldata_size=__calldata_ptr - calldata_ptr_start,\n calldata=calldata_ptr_start);\n", - "autogen/starknet/contract_interface/INaming/domain_to_token_id/fca49af674c76ce3d2f65b1e9d948f7383b8387a04ac56bc19679709d3c57b4e.cairo": "\nreturn (owner=__return_value_arg_owner,);\n", - "autogen/starknet/contract_interface/INaming/set_domain_to_address/64f7842b108e76706927b78270ac73c789c558c54431b3359e4441e63ec2a868.cairo": "\nalloc_locals;\nlet (local calldata_ptr_start: felt*) = alloc();\nlet __calldata_ptr = calldata_ptr_start;\n", - "autogen/starknet/contract_interface/INaming/set_domain_to_address/6e3b2c7c15122d95bbbeb78003d636384c46739a2b98448d090ded5c462510f6.cairo": "\nlet (retdata_size, retdata) = call_contract(\n contract_address=contract_address,\n function_selector=SET_DOMAIN_TO_ADDRESS_SELECTOR,\n calldata_size=__calldata_ptr - calldata_ptr_start,\n calldata=calldata_ptr_start);\n", - "autogen/starknet/contract_interface/INaming/set_domain_to_address/b4a44cbba6decc6ac9fe1e03d0dcd9303042497629db7b6313ce132db96dfe50.cairo": "func set_domain_to_address{syscall_ptr: felt*, range_check_ptr}(\n contract_address: felt) {\n}\n", - "autogen/starknet/contract_interface/INaming/set_domain_to_address/fb06bdf6e8fa9c7ff7d919d712d494716b0b586b2a762687cfb72d93da06ab29.cairo": "\nreturn ();\n", - "autogen/starknet/contract_interface/INaming/transfer_domain/1ac7f3def7017dd84d1d43bd0c0df63c5e8f8614829ce8283341a52f61e1b1bf.cairo": "\nlet (retdata_size, retdata) = call_contract(\n contract_address=contract_address,\n function_selector=TRANSFER_DOMAIN_SELECTOR,\n calldata_size=__calldata_ptr - calldata_ptr_start,\n calldata=calldata_ptr_start);\n", - "autogen/starknet/contract_interface/INaming/transfer_domain/64f7842b108e76706927b78270ac73c789c558c54431b3359e4441e63ec2a868.cairo": "\nalloc_locals;\nlet (local calldata_ptr_start: felt*) = alloc();\nlet __calldata_ptr = calldata_ptr_start;\n", - "autogen/starknet/contract_interface/INaming/transfer_domain/dcd2de2795921cf268d664fe10ffb2ce1a12eaa8017646363f68c2db66ac764e.cairo": "func transfer_domain{syscall_ptr: felt*, range_check_ptr}(\n contract_address: felt) {\n}\n", - "autogen/starknet/contract_interface/INaming/transfer_domain/fb06bdf6e8fa9c7ff7d919d712d494716b0b586b2a762687cfb72d93da06ab29.cairo": "\nreturn ();\n", - "autogen/starknet/contract_interface/ISheet/owner/22582a63896341a02082fe651af1a1a0d12d424aa15261ad533b6f55c1ec75c3.cairo": "func owner{syscall_ptr: felt*, range_check_ptr}(\n contract_address: felt) {\n}\n", - "autogen/starknet/contract_interface/ISheet/owner/64f7842b108e76706927b78270ac73c789c558c54431b3359e4441e63ec2a868.cairo": "\nalloc_locals;\nlet (local calldata_ptr_start: felt*) = alloc();\nlet __calldata_ptr = calldata_ptr_start;\n", - "autogen/starknet/contract_interface/ISheet/owner/d6432f636a9cf469d5e047691edceee10efd4bb8aec9947429ec0a24226add14.cairo": "\nlet (retdata_size, retdata) = call_contract(\n contract_address=contract_address,\n function_selector=OWNER_SELECTOR,\n calldata_size=__calldata_ptr - calldata_ptr_start,\n calldata=calldata_ptr_start);\n", - "autogen/starknet/contract_interface/ISheet/owner/fca49af674c76ce3d2f65b1e9d948f7383b8387a04ac56bc19679709d3c57b4e.cairo": "\nreturn (owner=__return_value_arg_owner,);\n", - "autogen/starknet/contract_interface/IStarknetId/mint/304ae580b78eb48c6532c7788d73eef2a89dcd3c406dfb71c0bdbeacea1728ca.cairo": "\nlet (retdata_size, retdata) = call_contract(\n contract_address=contract_address,\n function_selector=MINT_SELECTOR,\n calldata_size=__calldata_ptr - calldata_ptr_start,\n calldata=calldata_ptr_start);\n", - "autogen/starknet/contract_interface/IStarknetId/mint/64f7842b108e76706927b78270ac73c789c558c54431b3359e4441e63ec2a868.cairo": "\nalloc_locals;\nlet (local calldata_ptr_start: felt*) = alloc();\nlet __calldata_ptr = calldata_ptr_start;\n", - "autogen/starknet/contract_interface/IStarknetId/mint/f331841f676ee38d6b90045cd4589cd9ff4e83c32234273d9e605b287d886cbc.cairo": "func mint{syscall_ptr: felt*, range_check_ptr}(\n contract_address: felt) {\n}\n", - "autogen/starknet/contract_interface/IStarknetId/mint/fb06bdf6e8fa9c7ff7d919d712d494716b0b586b2a762687cfb72d93da06ab29.cairo": "\nreturn ();\n", - "autogen/starknet/contract_interface/IStarknetId/transferFrom/64f7842b108e76706927b78270ac73c789c558c54431b3359e4441e63ec2a868.cairo": "\nalloc_locals;\nlet (local calldata_ptr_start: felt*) = alloc();\nlet __calldata_ptr = calldata_ptr_start;\n", - "autogen/starknet/contract_interface/IStarknetId/transferFrom/b016d077f46f58d4cffabd707b4d3495a859d0f543f418223b1ea57e409144f2.cairo": "\nlet (retdata_size, retdata) = call_contract(\n contract_address=contract_address,\n function_selector=TRANSFERFROM_SELECTOR,\n calldata_size=__calldata_ptr - calldata_ptr_start,\n calldata=calldata_ptr_start);\n", - "autogen/starknet/contract_interface/IStarknetId/transferFrom/f8c7980cd46ed6d764c999318b5692736b724dc08c1bf96e92d1b77ddf37af10.cairo": "func transferFrom{syscall_ptr: felt*, range_check_ptr}(\n contract_address: felt) {\n}\n", - "autogen/starknet/contract_interface/IStarknetId/transferFrom/fb06bdf6e8fa9c7ff7d919d712d494716b0b586b2a762687cfb72d93da06ab29.cairo": "\nreturn ();\n", - "autogen/starknet/external/basic_encoding/01db14bcdf92a2d5db6f044491da648d432aa9a2406f6b02dfbd2dc09c33d2e1.cairo": "let ret_value = __wrapped_func{syscall_ptr=syscall_ptr, pedersen_ptr=pedersen_ptr, range_check_ptr=range_check_ptr}(domain_ascii=__calldata_arg_domain_ascii,);\nlet (range_check_ptr, retdata_size, retdata) = basic_encoding_encode_return(ret_value, range_check_ptr);\n", - "autogen/starknet/external/basic_encoding/18019a070f24c7de62611d09a6e18dd11270f1df7385fbc9eb3519a719dbe8bc.cairo": "return (syscall_ptr,pedersen_ptr,range_check_ptr,ecdsa_ptr,retdata_size,retdata);\n", - "autogen/starknet/external/basic_encoding/741ea357d6336b0bed7bf0472425acd0311d543883b803388880e60a232040c7.cairo": "let range_check_ptr = [cast([cast(fp + (-5), felt**)] + 2, felt*)];\n", - "autogen/starknet/external/basic_encoding/9684a85e93c782014ca14293edea4eb2502039a5a7b6538ecd39c56faaf12529.cairo": "let pedersen_ptr = [cast([cast(fp + (-5), felt**)] + 1, starkware.cairo.common.cairo_builtins.HashBuiltin**)];\n", - "autogen/starknet/external/basic_encoding/b2c52ca2d2a8fc8791a983086d8716c5eacd0c3d62934914d2286f84b98ff4cb.cairo": "let syscall_ptr = [cast([cast(fp + (-5), felt**)] + 0, felt**)];\n", - "autogen/starknet/external/basic_encoding/c6c4d3a7a58c6b37d5fdd51b25e5ab9f3e75174b411ab503db3ce03636ed6e2a.cairo": "let ecdsa_ptr = [cast([cast(fp + (-5), felt**)] + 3, felt*)];\n", - "autogen/starknet/external/claim_domain_back/18019a070f24c7de62611d09a6e18dd11270f1df7385fbc9eb3519a719dbe8bc.cairo": "return (syscall_ptr,pedersen_ptr,range_check_ptr,ecdsa_ptr,retdata_size,retdata);\n", - "autogen/starknet/external/claim_domain_back/741ea357d6336b0bed7bf0472425acd0311d543883b803388880e60a232040c7.cairo": "let range_check_ptr = [cast([cast(fp + (-5), felt**)] + 2, felt*)];\n", - "autogen/starknet/external/claim_domain_back/9684a85e93c782014ca14293edea4eb2502039a5a7b6538ecd39c56faaf12529.cairo": "let pedersen_ptr = [cast([cast(fp + (-5), felt**)] + 1, starkware.cairo.common.cairo_builtins.HashBuiltin**)];\n", - "autogen/starknet/external/claim_domain_back/b2c52ca2d2a8fc8791a983086d8716c5eacd0c3d62934914d2286f84b98ff4cb.cairo": "let syscall_ptr = [cast([cast(fp + (-5), felt**)] + 0, felt**)];\n", - "autogen/starknet/external/claim_domain_back/c6c4d3a7a58c6b37d5fdd51b25e5ab9f3e75174b411ab503db3ce03636ed6e2a.cairo": "let ecdsa_ptr = [cast([cast(fp + (-5), felt**)] + 3, felt*)];\n", - "autogen/starknet/external/claim_domain_back/dc10af6be62e8f611b8e3807b3a1a1069d95a74e2750ea3f5c8b0b70134f16b5.cairo": "let ret_value = __wrapped_func{syscall_ptr=syscall_ptr, pedersen_ptr=pedersen_ptr, range_check_ptr=range_check_ptr}(domain_len=__calldata_arg_domain_len, domain=__calldata_arg_domain,);\n%{ memory[ap] = segments.add() %} // Allocate memory for return value.\ntempvar retdata: felt*;\nlet retdata_size = 0;\n", - "autogen/starknet/external/close_registration/18019a070f24c7de62611d09a6e18dd11270f1df7385fbc9eb3519a719dbe8bc.cairo": "return (syscall_ptr,pedersen_ptr,range_check_ptr,ecdsa_ptr,retdata_size,retdata);\n", - "autogen/starknet/external/close_registration/741ea357d6336b0bed7bf0472425acd0311d543883b803388880e60a232040c7.cairo": "let range_check_ptr = [cast([cast(fp + (-5), felt**)] + 2, felt*)];\n", - "autogen/starknet/external/close_registration/8f83d060e7e088c358526f8859eb82973ba2c094c7d9223df6230b744dfa211c.cairo": "let ret_value = __wrapped_func{syscall_ptr=syscall_ptr, pedersen_ptr=pedersen_ptr, range_check_ptr=range_check_ptr}();\n%{ memory[ap] = segments.add() %} // Allocate memory for return value.\ntempvar retdata: felt*;\nlet retdata_size = 0;\n", - "autogen/starknet/external/close_registration/9684a85e93c782014ca14293edea4eb2502039a5a7b6538ecd39c56faaf12529.cairo": "let pedersen_ptr = [cast([cast(fp + (-5), felt**)] + 1, starkware.cairo.common.cairo_builtins.HashBuiltin**)];\n", - "autogen/starknet/external/close_registration/b2c52ca2d2a8fc8791a983086d8716c5eacd0c3d62934914d2286f84b98ff4cb.cairo": "let syscall_ptr = [cast([cast(fp + (-5), felt**)] + 0, felt**)];\n", - "autogen/starknet/external/close_registration/c6c4d3a7a58c6b37d5fdd51b25e5ab9f3e75174b411ab503db3ce03636ed6e2a.cairo": "let ecdsa_ptr = [cast([cast(fp + (-5), felt**)] + 3, felt*)];\n", - "autogen/starknet/external/initializer/18019a070f24c7de62611d09a6e18dd11270f1df7385fbc9eb3519a719dbe8bc.cairo": "return (syscall_ptr,pedersen_ptr,range_check_ptr,ecdsa_ptr,retdata_size,retdata);\n", - "autogen/starknet/external/initializer/741ea357d6336b0bed7bf0472425acd0311d543883b803388880e60a232040c7.cairo": "let range_check_ptr = [cast([cast(fp + (-5), felt**)] + 2, felt*)];\n", - "autogen/starknet/external/initializer/9684a85e93c782014ca14293edea4eb2502039a5a7b6538ecd39c56faaf12529.cairo": "let pedersen_ptr = [cast([cast(fp + (-5), felt**)] + 1, starkware.cairo.common.cairo_builtins.HashBuiltin**)];\n", - "autogen/starknet/external/initializer/b2c52ca2d2a8fc8791a983086d8716c5eacd0c3d62934914d2286f84b98ff4cb.cairo": "let syscall_ptr = [cast([cast(fp + (-5), felt**)] + 0, felt**)];\n", - "autogen/starknet/external/initializer/b371deb94934188e323bef3fca0ac063ca8cf27f8d4df426eb7923d9ae8d7bea.cairo": "let ret_value = __wrapped_func{syscall_ptr=syscall_ptr, pedersen_ptr=pedersen_ptr, range_check_ptr=range_check_ptr}(proxy_admin_address=__calldata_arg_proxy_admin_address, starknetid_contract=__calldata_arg_starknetid_contract, naming_contract=__calldata_arg_naming_contract,);\n%{ memory[ap] = segments.add() %} // Allocate memory for return value.\ntempvar retdata: felt*;\nlet retdata_size = 0;\n", - "autogen/starknet/external/initializer/c6c4d3a7a58c6b37d5fdd51b25e5ab9f3e75174b411ab503db3ce03636ed6e2a.cairo": "let ecdsa_ptr = [cast([cast(fp + (-5), felt**)] + 3, felt*)];\n", - "autogen/starknet/external/is_registration_open/18019a070f24c7de62611d09a6e18dd11270f1df7385fbc9eb3519a719dbe8bc.cairo": "return (syscall_ptr,pedersen_ptr,range_check_ptr,ecdsa_ptr,retdata_size,retdata);\n", - "autogen/starknet/external/is_registration_open/50f43d1ea3cf09b4239367de266e40e917c2d6ad2beaddda2ea68d5342f004a2.cairo": "let ret_value = __wrapped_func{syscall_ptr=syscall_ptr, pedersen_ptr=pedersen_ptr, range_check_ptr=range_check_ptr}();\nlet (range_check_ptr, retdata_size, retdata) = is_registration_open_encode_return(ret_value, range_check_ptr);\n", - "autogen/starknet/external/is_registration_open/741ea357d6336b0bed7bf0472425acd0311d543883b803388880e60a232040c7.cairo": "let range_check_ptr = [cast([cast(fp + (-5), felt**)] + 2, felt*)];\n", - "autogen/starknet/external/is_registration_open/9684a85e93c782014ca14293edea4eb2502039a5a7b6538ecd39c56faaf12529.cairo": "let pedersen_ptr = [cast([cast(fp + (-5), felt**)] + 1, starkware.cairo.common.cairo_builtins.HashBuiltin**)];\n", - "autogen/starknet/external/is_registration_open/b2c52ca2d2a8fc8791a983086d8716c5eacd0c3d62934914d2286f84b98ff4cb.cairo": "let syscall_ptr = [cast([cast(fp + (-5), felt**)] + 0, felt**)];\n", - "autogen/starknet/external/is_registration_open/c6c4d3a7a58c6b37d5fdd51b25e5ab9f3e75174b411ab503db3ce03636ed6e2a.cairo": "let ecdsa_ptr = [cast([cast(fp + (-5), felt**)] + 3, felt*)];\n", - "autogen/starknet/external/open_registration/18019a070f24c7de62611d09a6e18dd11270f1df7385fbc9eb3519a719dbe8bc.cairo": "return (syscall_ptr,pedersen_ptr,range_check_ptr,ecdsa_ptr,retdata_size,retdata);\n", - "autogen/starknet/external/open_registration/741ea357d6336b0bed7bf0472425acd0311d543883b803388880e60a232040c7.cairo": "let range_check_ptr = [cast([cast(fp + (-5), felt**)] + 2, felt*)];\n", - "autogen/starknet/external/open_registration/8f83d060e7e088c358526f8859eb82973ba2c094c7d9223df6230b744dfa211c.cairo": "let ret_value = __wrapped_func{syscall_ptr=syscall_ptr, pedersen_ptr=pedersen_ptr, range_check_ptr=range_check_ptr}();\n%{ memory[ap] = segments.add() %} // Allocate memory for return value.\ntempvar retdata: felt*;\nlet retdata_size = 0;\n", - "autogen/starknet/external/open_registration/9684a85e93c782014ca14293edea4eb2502039a5a7b6538ecd39c56faaf12529.cairo": "let pedersen_ptr = [cast([cast(fp + (-5), felt**)] + 1, starkware.cairo.common.cairo_builtins.HashBuiltin**)];\n", - "autogen/starknet/external/open_registration/b2c52ca2d2a8fc8791a983086d8716c5eacd0c3d62934914d2286f84b98ff4cb.cairo": "let syscall_ptr = [cast([cast(fp + (-5), felt**)] + 0, felt**)];\n", - "autogen/starknet/external/open_registration/c6c4d3a7a58c6b37d5fdd51b25e5ab9f3e75174b411ab503db3ce03636ed6e2a.cairo": "let ecdsa_ptr = [cast([cast(fp + (-5), felt**)] + 3, felt*)];\n", - "autogen/starknet/external/register/18019a070f24c7de62611d09a6e18dd11270f1df7385fbc9eb3519a719dbe8bc.cairo": "return (syscall_ptr,pedersen_ptr,range_check_ptr,ecdsa_ptr,retdata_size,retdata);\n", - "autogen/starknet/external/register/716382761f0a42276cedc3c874cbfbfe0535570b13e7d1727a1af27600bb845a.cairo": "let ret_value = __wrapped_func{syscall_ptr=syscall_ptr, pedersen_ptr=pedersen_ptr, range_check_ptr=range_check_ptr, ecdsa_ptr=ecdsa_ptr}(domain_ascii=__calldata_arg_domain_ascii,);\nlet (range_check_ptr, retdata_size, retdata) = register_encode_return(ret_value, range_check_ptr);\n", - "autogen/starknet/external/register/741ea357d6336b0bed7bf0472425acd0311d543883b803388880e60a232040c7.cairo": "let range_check_ptr = [cast([cast(fp + (-5), felt**)] + 2, felt*)];\n", - "autogen/starknet/external/register/9684a85e93c782014ca14293edea4eb2502039a5a7b6538ecd39c56faaf12529.cairo": "let pedersen_ptr = [cast([cast(fp + (-5), felt**)] + 1, starkware.cairo.common.cairo_builtins.HashBuiltin**)];\n", - "autogen/starknet/external/register/972efe4adb0e1cedbdf0f0747cf1e121111a6180229de74773d49a6e595c4f3d.cairo": "let ecdsa_ptr = [cast([cast(fp + (-5), felt**)] + 3, starkware.cairo.common.cairo_builtins.SignatureBuiltin**)];\n", - "autogen/starknet/external/register/b2c52ca2d2a8fc8791a983086d8716c5eacd0c3d62934914d2286f84b98ff4cb.cairo": "let syscall_ptr = [cast([cast(fp + (-5), felt**)] + 0, felt**)];\n", - "autogen/starknet/external/register/e4065319506eee42a7d1a2e0cab4e10c7cb79d70fe881d4202843707088e4960.cairo": "func register() -> (syscall_ptr: felt*, pedersen_ptr: starkware.cairo.common.cairo_builtins.HashBuiltin*, range_check_ptr: felt, ecdsa_ptr: starkware.cairo.common.cairo_builtins.SignatureBuiltin*, size: felt, retdata: felt*) {\n alloc_locals;\n}\n", - "autogen/starknet/external/return/basic_encoding/dccbd32b47a884cb56e7cc4918eb25f2cb15fb4da50e06c86e179504ebfe06f1.cairo": "func basic_encoding_encode_return(ret_value: (domain_encoded: felt), range_check_ptr) -> (\n range_check_ptr: felt, data_len: felt, data: felt*) {\n %{ memory[ap] = segments.add() %}\n alloc_locals;\n local __return_value_ptr_start: felt*;\n let __return_value_ptr = __return_value_ptr_start;\n with range_check_ptr {\n }\n return (\n range_check_ptr=range_check_ptr,\n data_len=__return_value_ptr - __return_value_ptr_start,\n data=__return_value_ptr_start);\n}\n", - "autogen/starknet/external/return/is_registration_open/6c2ce11d920e19a1f41c21052bc809d7dc14e1a459bb56a08c1cefa9bfaaa2d7.cairo": "func is_registration_open_encode_return(ret_value: (is_registration_open: felt), range_check_ptr) -> (\n range_check_ptr: felt, data_len: felt, data: felt*) {\n %{ memory[ap] = segments.add() %}\n alloc_locals;\n local __return_value_ptr_start: felt*;\n let __return_value_ptr = __return_value_ptr_start;\n with range_check_ptr {\n }\n return (\n range_check_ptr=range_check_ptr,\n data_len=__return_value_ptr - __return_value_ptr_start,\n data=__return_value_ptr_start);\n}\n", - "autogen/starknet/external/return/register/618091d4f702cd5c5cf6df9bb974b394b4092b7fe617ff6e7cee1dd6af8b89b6.cairo": "func register_encode_return(ret_value: (starknet_id_token: felt, domain_len: felt, domain: felt*), range_check_ptr) -> (\n range_check_ptr: felt, data_len: felt, data: felt*) {\n %{ memory[ap] = segments.add() %}\n alloc_locals;\n local __return_value_ptr_start: felt*;\n let __return_value_ptr = __return_value_ptr_start;\n with range_check_ptr {\n }\n return (\n range_check_ptr=range_check_ptr,\n data_len=__return_value_ptr - __return_value_ptr_start,\n data=__return_value_ptr_start);\n}\n", - "autogen/starknet/storage_var/_admin_address/decl.cairo": "namespace _admin_address {\n from starkware.starknet.common.storage import normalize_address\n from starkware.starknet.common.syscalls import storage_read, storage_write\n from starkware.cairo.common.cairo_builtins import HashBuiltin\n from starkware.cairo.common.hash import hash2\n\n func addr{pedersen_ptr: HashBuiltin*, range_check_ptr}() -> (res: felt) {\n let res = 0;\n call hash2;\n call normalize_address;\n }\n\n func read{syscall_ptr: felt*, pedersen_ptr: HashBuiltin*, range_check_ptr}() -> (\n address: felt\n ) {\n let storage_addr = 0;\n call addr;\n call storage_read;\n }\n\n func write{syscall_ptr: felt*, pedersen_ptr: HashBuiltin*, range_check_ptr}(value: felt) {\n let storage_addr = 0;\n call addr;\n call storage_write;\n }\n}", - "autogen/starknet/storage_var/_admin_address/impl.cairo": "namespace _admin_address {\n from starkware.starknet.common.storage import normalize_address\n from starkware.starknet.common.syscalls import storage_read, storage_write\n from starkware.cairo.common.cairo_builtins import HashBuiltin\n from starkware.cairo.common.hash import hash2\n\n func addr{pedersen_ptr: HashBuiltin*, range_check_ptr}() -> (res: felt) {\n let res = 1491526172715554095000963239768432584597596201384604987713871121610219547569;\n return (res=res);\n }\n\n func read{syscall_ptr: felt*, pedersen_ptr: HashBuiltin*, range_check_ptr}() -> (\n address: felt\n ) {\n let (storage_addr) = addr();\n let (__storage_var_temp0) = storage_read(address=storage_addr + 0);\n\n tempvar syscall_ptr = syscall_ptr;\n tempvar pedersen_ptr = pedersen_ptr;\n tempvar range_check_ptr = range_check_ptr;\n tempvar __storage_var_temp0: felt = __storage_var_temp0;\n return ([cast(&__storage_var_temp0, felt*)],);\n }\n\n func write{syscall_ptr: felt*, pedersen_ptr: HashBuiltin*, range_check_ptr}(value: felt) {\n let (storage_addr) = addr();\n storage_write(address=storage_addr + 0, value=[cast(&value, felt) + 0]);\n return ();\n }\n}", - "autogen/starknet/storage_var/_is_registration_open/decl.cairo": "namespace _is_registration_open {\n from starkware.starknet.common.storage import normalize_address\n from starkware.starknet.common.syscalls import storage_read, storage_write\n from starkware.cairo.common.cairo_builtins import HashBuiltin\n from starkware.cairo.common.hash import hash2\n\n func addr{pedersen_ptr: HashBuiltin*, range_check_ptr}() -> (res: felt) {\n let res = 0;\n call hash2;\n call normalize_address;\n }\n\n func read{syscall_ptr: felt*, pedersen_ptr: HashBuiltin*, range_check_ptr}() -> (\n boolean: felt\n ) {\n let storage_addr = 0;\n call addr;\n call storage_read;\n }\n\n func write{syscall_ptr: felt*, pedersen_ptr: HashBuiltin*, range_check_ptr}(value: felt) {\n let storage_addr = 0;\n call addr;\n call storage_write;\n }\n}", - "autogen/starknet/storage_var/_is_registration_open/impl.cairo": "namespace _is_registration_open {\n from starkware.starknet.common.storage import normalize_address\n from starkware.starknet.common.syscalls import storage_read, storage_write\n from starkware.cairo.common.cairo_builtins import HashBuiltin\n from starkware.cairo.common.hash import hash2\n\n func addr{pedersen_ptr: HashBuiltin*, range_check_ptr}() -> (res: felt) {\n let res = 508970965360969399487540847234155691099104377176741728260914302282128464336;\n return (res=res);\n }\n\n func read{syscall_ptr: felt*, pedersen_ptr: HashBuiltin*, range_check_ptr}() -> (\n boolean: felt\n ) {\n let (storage_addr) = addr();\n let (__storage_var_temp0) = storage_read(address=storage_addr + 0);\n\n tempvar syscall_ptr = syscall_ptr;\n tempvar pedersen_ptr = pedersen_ptr;\n tempvar range_check_ptr = range_check_ptr;\n tempvar __storage_var_temp0: felt = __storage_var_temp0;\n return ([cast(&__storage_var_temp0, felt*)],);\n }\n\n func write{syscall_ptr: felt*, pedersen_ptr: HashBuiltin*, range_check_ptr}(value: felt) {\n let (storage_addr) = addr();\n storage_write(address=storage_addr + 0, value=[cast(&value, felt) + 0]);\n return ();\n }\n}", - "autogen/starknet/storage_var/_naming_contract/decl.cairo": "namespace _naming_contract {\n from starkware.starknet.common.storage import normalize_address\n from starkware.starknet.common.syscalls import storage_read, storage_write\n from starkware.cairo.common.cairo_builtins import HashBuiltin\n from starkware.cairo.common.hash import hash2\n\n func addr{pedersen_ptr: HashBuiltin*, range_check_ptr}() -> (res: felt) {\n let res = 0;\n call hash2;\n call normalize_address;\n }\n\n func read{syscall_ptr: felt*, pedersen_ptr: HashBuiltin*, range_check_ptr}() -> (\n address: felt\n ) {\n let storage_addr = 0;\n call addr;\n call storage_read;\n }\n\n func write{syscall_ptr: felt*, pedersen_ptr: HashBuiltin*, range_check_ptr}(value: felt) {\n let storage_addr = 0;\n call addr;\n call storage_write;\n }\n}", - "autogen/starknet/storage_var/_naming_contract/impl.cairo": "namespace _naming_contract {\n from starkware.starknet.common.storage import normalize_address\n from starkware.starknet.common.syscalls import storage_read, storage_write\n from starkware.cairo.common.cairo_builtins import HashBuiltin\n from starkware.cairo.common.hash import hash2\n\n func addr{pedersen_ptr: HashBuiltin*, range_check_ptr}() -> (res: felt) {\n let res = 822536453431772088136530229720907520017533955535900241622556034106502920243;\n return (res=res);\n }\n\n func read{syscall_ptr: felt*, pedersen_ptr: HashBuiltin*, range_check_ptr}() -> (\n address: felt\n ) {\n let (storage_addr) = addr();\n let (__storage_var_temp0) = storage_read(address=storage_addr + 0);\n\n tempvar syscall_ptr = syscall_ptr;\n tempvar pedersen_ptr = pedersen_ptr;\n tempvar range_check_ptr = range_check_ptr;\n tempvar __storage_var_temp0: felt = __storage_var_temp0;\n return ([cast(&__storage_var_temp0, felt*)],);\n }\n\n func write{syscall_ptr: felt*, pedersen_ptr: HashBuiltin*, range_check_ptr}(value: felt) {\n let (storage_addr) = addr();\n storage_write(address=storage_addr + 0, value=[cast(&value, felt) + 0]);\n return ();\n }\n}", - "autogen/starknet/storage_var/_starknetid_contract/decl.cairo": "namespace _starknetid_contract {\n from starkware.starknet.common.storage import normalize_address\n from starkware.starknet.common.syscalls import storage_read, storage_write\n from starkware.cairo.common.cairo_builtins import HashBuiltin\n from starkware.cairo.common.hash import hash2\n\n func addr{pedersen_ptr: HashBuiltin*, range_check_ptr}() -> (res: felt) {\n let res = 0;\n call hash2;\n call normalize_address;\n }\n\n func read{syscall_ptr: felt*, pedersen_ptr: HashBuiltin*, range_check_ptr}() -> (\n address: felt\n ) {\n let storage_addr = 0;\n call addr;\n call storage_read;\n }\n\n func write{syscall_ptr: felt*, pedersen_ptr: HashBuiltin*, range_check_ptr}(value: felt) {\n let storage_addr = 0;\n call addr;\n call storage_write;\n }\n}", - "autogen/starknet/storage_var/_starknetid_contract/impl.cairo": "namespace _starknetid_contract {\n from starkware.starknet.common.storage import normalize_address\n from starkware.starknet.common.syscalls import storage_read, storage_write\n from starkware.cairo.common.cairo_builtins import HashBuiltin\n from starkware.cairo.common.hash import hash2\n\n func addr{pedersen_ptr: HashBuiltin*, range_check_ptr}() -> (res: felt) {\n let res = 1412714967329404841371877776418789753080476957575564835088806127309330331049;\n return (res=res);\n }\n\n func read{syscall_ptr: felt*, pedersen_ptr: HashBuiltin*, range_check_ptr}() -> (\n address: felt\n ) {\n let (storage_addr) = addr();\n let (__storage_var_temp0) = storage_read(address=storage_addr + 0);\n\n tempvar syscall_ptr = syscall_ptr;\n tempvar pedersen_ptr = pedersen_ptr;\n tempvar range_check_ptr = range_check_ptr;\n tempvar __storage_var_temp0: felt = __storage_var_temp0;\n return ([cast(&__storage_var_temp0, felt*)],);\n }\n\n func write{syscall_ptr: felt*, pedersen_ptr: HashBuiltin*, range_check_ptr}(value: felt) {\n let (storage_addr) = addr();\n storage_write(address=storage_addr + 0, value=[cast(&value, felt) + 0]);\n return ();\n }\n}" - }, - "instruction_locations": { - "0": { - "accessible_scopes": [ - "starkware.cairo.common.alloc", - "starkware.cairo.common.alloc.alloc" - ], - "flow_tracking_data": null, - "hints": [ - { - "location": { - "end_col": 38, - "end_line": 3, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/alloc.cairo" - }, - "start_col": 5, - "start_line": 3 - }, - "n_prefix_newlines": 0 - } - ], - "inst": { - "end_col": 12, - "end_line": 4, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/alloc.cairo" - }, - "start_col": 5, - "start_line": 4 - } - }, - "2": { - "accessible_scopes": [ - "starkware.cairo.common.alloc", - "starkware.cairo.common.alloc.alloc" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 40, - "end_line": 5, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/alloc.cairo" - }, - "start_col": 5, - "start_line": 5 - } - }, - "3": { - "accessible_scopes": [ - "starkware.cairo.common.hash", - "starkware.cairo.common.hash.hash2" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 19, - "end_line": 14, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/hash.cairo" - }, - "start_col": 5, - "start_line": 14 - } - }, - "4": { - "accessible_scopes": [ - "starkware.cairo.common.hash", - "starkware.cairo.common.hash.hash2" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 19, - "end_line": 15, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/hash.cairo" - }, - "start_col": 5, - "start_line": 15 - } - }, - "5": { - "accessible_scopes": [ - "starkware.cairo.common.hash", - "starkware.cairo.common.hash.hash2" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 47, - "end_line": 17, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/hash.cairo" - }, - "parent_location": [ - { - "end_col": 34, - "end_line": 13, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/hash.cairo" - }, - "parent_location": [ - { - "end_col": 28, - "end_line": 18, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/hash.cairo" - }, - "start_col": 5, - "start_line": 18 - }, - "While trying to retrieve the implicit argument 'hash_ptr' in:" - ], - "start_col": 12, - "start_line": 13 - }, - "While expanding the reference 'hash_ptr' in:" - ], - "start_col": 20, - "start_line": 17 - } - }, - "7": { - "accessible_scopes": [ - "starkware.cairo.common.hash", - "starkware.cairo.common.hash.hash2" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 33, - "end_line": 16, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/hash.cairo" - }, - "parent_location": [ - { - "end_col": 26, - "end_line": 18, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/hash.cairo" - }, - "start_col": 20, - "start_line": 18 - }, - "While expanding the reference 'result' in:" - ], - "start_col": 18, - "start_line": 16 - } - }, - "8": { - "accessible_scopes": [ - "starkware.cairo.common.hash", - "starkware.cairo.common.hash.hash2" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 28, - "end_line": 18, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/hash.cairo" - }, - "start_col": 5, - "start_line": 18 - } - }, - "9": { - "accessible_scopes": [ - "starkware.cairo.common.memcpy", - "starkware.cairo.common.memcpy.memcpy" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 7, - "end_line": 8, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/memcpy.cairo" - }, - "start_col": 5, - "start_line": 8 - } - }, - "11": { - "accessible_scopes": [ - "starkware.cairo.common.memcpy", - "starkware.cairo.common.memcpy.memcpy" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 19, - "end_line": 9, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/memcpy.cairo" - }, - "start_col": 9, - "start_line": 9 - } - }, - "12": { - "accessible_scopes": [ - "starkware.cairo.common.memcpy", - "starkware.cairo.common.memcpy.memcpy" - ], - "flow_tracking_data": null, - "hints": [ - { - "location": { - "end_col": 41, - "end_line": 12, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/memcpy.cairo" - }, - "start_col": 5, - "start_line": 12 - }, - "n_prefix_newlines": 0 - } - ], - "inst": { - "end_col": 23, - "end_line": 2, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/memcpy.cairo" - }, - "parent_location": [ - { - "end_col": 38, - "end_line": 13, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/memcpy.cairo" - }, - "start_col": 35, - "start_line": 13 - }, - "While expanding the reference 'dst' in:" - ], - "start_col": 13, - "start_line": 2 - } - }, - "13": { - "accessible_scopes": [ - "starkware.cairo.common.memcpy", - "starkware.cairo.common.memcpy.memcpy" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 35, - "end_line": 2, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/memcpy.cairo" - }, - "parent_location": [ - { - "end_col": 47, - "end_line": 13, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/memcpy.cairo" - }, - "start_col": 44, - "start_line": 13 - }, - "While expanding the reference 'src' in:" - ], - "start_col": 25, - "start_line": 2 - } - }, - "14": { - "accessible_scopes": [ - "starkware.cairo.common.memcpy", - "starkware.cairo.common.memcpy.memcpy" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 37, - "end_line": 17, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/memcpy.cairo" - }, - "start_col": 26, - "start_line": 17 - } - }, - "15": { - "accessible_scopes": [ - "starkware.cairo.common.memcpy", - "starkware.cairo.common.memcpy.memcpy" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 38, - "end_line": 17, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/memcpy.cairo" - }, - "start_col": 5, - "start_line": 17 - } - }, - "16": { - "accessible_scopes": [ - "starkware.cairo.common.memcpy", - "starkware.cairo.common.memcpy.memcpy" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 41, - "end_line": 22, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/memcpy.cairo" - }, - "start_col": 5, - "start_line": 22 - } - }, - "18": { - "accessible_scopes": [ - "starkware.cairo.common.memcpy", - "starkware.cairo.common.memcpy.memcpy" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 41, - "end_line": 23, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/memcpy.cairo" - }, - "start_col": 5, - "start_line": 23 - } - }, - "20": { - "accessible_scopes": [ - "starkware.cairo.common.memcpy", - "starkware.cairo.common.memcpy.memcpy" - ], - "flow_tracking_data": null, - "hints": [ - { - "location": { - "end_col": 7, - "end_line": 27, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/memcpy.cairo" - }, - "start_col": 5, - "start_line": 24 - }, - "n_prefix_newlines": 1 - } - ], - "inst": { - "end_col": 44, - "end_line": 29, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/memcpy.cairo" - }, - "start_col": 5, - "start_line": 29 - } - }, - "22": { - "accessible_scopes": [ - "starkware.cairo.common.memcpy", - "starkware.cairo.common.memcpy.memcpy" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 55, - "end_line": 31, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/memcpy.cairo" - }, - "start_col": 5, - "start_line": 31 - } - }, - "23": { - "accessible_scopes": [ - "starkware.cairo.common.memcpy", - "starkware.cairo.common.memcpy.memcpy" - ], - "flow_tracking_data": null, - "hints": [ - { - "location": { - "end_col": 26, - "end_line": 33, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/memcpy.cairo" - }, - "start_col": 5, - "start_line": 33 - }, - "n_prefix_newlines": 0 - } - ], - "inst": { - "end_col": 15, - "end_line": 34, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/memcpy.cairo" - }, - "start_col": 5, - "start_line": 34 - } - }, - "24": { - "accessible_scopes": [ - "starkware.starknet.common.syscalls", - "starkware.starknet.common.syscalls.call_contract" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 40, - "end_line": 47, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/starknet/common/syscalls.cairo" - }, - "start_col": 18, - "start_line": 47 - } - }, - "26": { - "accessible_scopes": [ - "starkware.starknet.common.syscalls", - "starkware.starknet.common.syscalls.call_contract" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 7, - "end_line": 52, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/starknet/common/syscalls.cairo" - }, - "start_col": 5, - "start_line": 46 - } - }, - "27": { - "accessible_scopes": [ - "starkware.starknet.common.syscalls", - "starkware.starknet.common.syscalls.call_contract" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 7, - "end_line": 52, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/starknet/common/syscalls.cairo" - }, - "start_col": 5, - "start_line": 46 - } - }, - "28": { - "accessible_scopes": [ - "starkware.starknet.common.syscalls", - "starkware.starknet.common.syscalls.call_contract" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 7, - "end_line": 52, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/starknet/common/syscalls.cairo" - }, - "start_col": 5, - "start_line": 46 - } - }, - "29": { - "accessible_scopes": [ - "starkware.starknet.common.syscalls", - "starkware.starknet.common.syscalls.call_contract" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 7, - "end_line": 52, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/starknet/common/syscalls.cairo" - }, - "start_col": 5, - "start_line": 46 - } - }, - "30": { - "accessible_scopes": [ - "starkware.starknet.common.syscalls", - "starkware.starknet.common.syscalls.call_contract" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 7, - "end_line": 52, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/starknet/common/syscalls.cairo" - }, - "start_col": 5, - "start_line": 46 - } - }, - "31": { - "accessible_scopes": [ - "starkware.starknet.common.syscalls", - "starkware.starknet.common.syscalls.call_contract" - ], - "flow_tracking_data": null, - "hints": [ - { - "location": { - "end_col": 88, - "end_line": 53, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/starknet/common/syscalls.cairo" - }, - "start_col": 5, - "start_line": 53 - }, - "n_prefix_newlines": 0 - } - ], - "inst": { - "end_col": 54, - "end_line": 56, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/starknet/common/syscalls.cairo" - }, - "parent_location": [ - { - "end_col": 38, - "end_line": 42, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/starknet/common/syscalls.cairo" - }, - "parent_location": [ - { - "end_col": 75, - "end_line": 57, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/starknet/common/syscalls.cairo" - }, - "start_col": 5, - "start_line": 57 - }, - "While trying to retrieve the implicit argument 'syscall_ptr' in:" - ], - "start_col": 20, - "start_line": 42 - }, - "While expanding the reference 'syscall_ptr' in:" - ], - "start_col": 23, - "start_line": 56 - } - }, - "33": { - "accessible_scopes": [ - "starkware.starknet.common.syscalls", - "starkware.starknet.common.syscalls.call_contract" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 47, - "end_line": 57, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/starknet/common/syscalls.cairo" - }, - "start_col": 26, - "start_line": 57 - } - }, - "34": { - "accessible_scopes": [ - "starkware.starknet.common.syscalls", - "starkware.starknet.common.syscalls.call_contract" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 73, - "end_line": 57, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/starknet/common/syscalls.cairo" - }, - "start_col": 57, - "start_line": 57 - } - }, - "35": { - "accessible_scopes": [ - "starkware.starknet.common.syscalls", - "starkware.starknet.common.syscalls.call_contract" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 75, - "end_line": 57, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/starknet/common/syscalls.cairo" - }, - "start_col": 5, - "start_line": 57 - } - }, - "36": { - "accessible_scopes": [ - "starkware.starknet.common.syscalls", - "starkware.starknet.common.syscalls.get_caller_address" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 90, - "end_line": 202, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/starknet/common/syscalls.cairo" - }, - "start_col": 63, - "start_line": 202 - } - }, - "38": { - "accessible_scopes": [ - "starkware.starknet.common.syscalls", - "starkware.starknet.common.syscalls.get_caller_address" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 92, - "end_line": 202, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/starknet/common/syscalls.cairo" - }, - "start_col": 5, - "start_line": 202 - } - }, - "39": { - "accessible_scopes": [ - "starkware.starknet.common.syscalls", - "starkware.starknet.common.syscalls.get_caller_address" - ], - "flow_tracking_data": null, - "hints": [ - { - "location": { - "end_col": 93, - "end_line": 203, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/starknet/common/syscalls.cairo" - }, - "start_col": 5, - "start_line": 203 - }, - "n_prefix_newlines": 0 - } - ], - "inst": { - "end_col": 58, - "end_line": 204, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/starknet/common/syscalls.cairo" - }, - "parent_location": [ - { - "end_col": 43, - "end_line": 200, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/starknet/common/syscalls.cairo" - }, - "parent_location": [ - { - "end_col": 61, - "end_line": 205, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/starknet/common/syscalls.cairo" - }, - "start_col": 5, - "start_line": 205 - }, - "While trying to retrieve the implicit argument 'syscall_ptr' in:" - ], - "start_col": 25, - "start_line": 200 - }, - "While expanding the reference 'syscall_ptr' in:" - ], - "start_col": 23, - "start_line": 204 - } - }, - "41": { - "accessible_scopes": [ - "starkware.starknet.common.syscalls", - "starkware.starknet.common.syscalls.get_caller_address" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 59, - "end_line": 205, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/starknet/common/syscalls.cairo" - }, - "start_col": 28, - "start_line": 205 - } - }, - "42": { - "accessible_scopes": [ - "starkware.starknet.common.syscalls", - "starkware.starknet.common.syscalls.get_caller_address" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 61, - "end_line": 205, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/starknet/common/syscalls.cairo" - }, - "start_col": 5, - "start_line": 205 - } - }, - "43": { - "accessible_scopes": [ - "starkware.starknet.common.syscalls", - "starkware.starknet.common.syscalls.get_contract_address" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 94, - "end_line": 276, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/starknet/common/syscalls.cairo" - }, - "start_col": 65, - "start_line": 276 - } - }, - "45": { - "accessible_scopes": [ - "starkware.starknet.common.syscalls", - "starkware.starknet.common.syscalls.get_contract_address" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 96, - "end_line": 276, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/starknet/common/syscalls.cairo" - }, - "start_col": 5, - "start_line": 276 - } - }, - "46": { - "accessible_scopes": [ - "starkware.starknet.common.syscalls", - "starkware.starknet.common.syscalls.get_contract_address" - ], - "flow_tracking_data": null, - "hints": [ - { - "location": { - "end_col": 95, - "end_line": 277, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/starknet/common/syscalls.cairo" - }, - "start_col": 5, - "start_line": 277 - }, - "n_prefix_newlines": 0 - } - ], - "inst": { - "end_col": 60, - "end_line": 278, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/starknet/common/syscalls.cairo" - }, - "parent_location": [ - { - "end_col": 45, - "end_line": 274, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/starknet/common/syscalls.cairo" - }, - "parent_location": [ - { - "end_col": 65, - "end_line": 279, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/starknet/common/syscalls.cairo" - }, - "start_col": 5, - "start_line": 279 - }, - "While trying to retrieve the implicit argument 'syscall_ptr' in:" - ], - "start_col": 27, - "start_line": 274 - }, - "While expanding the reference 'syscall_ptr' in:" - ], - "start_col": 23, - "start_line": 278 - } - }, - "48": { - "accessible_scopes": [ - "starkware.starknet.common.syscalls", - "starkware.starknet.common.syscalls.get_contract_address" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 63, - "end_line": 279, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/starknet/common/syscalls.cairo" - }, - "start_col": 30, - "start_line": 279 - } - }, - "49": { - "accessible_scopes": [ - "starkware.starknet.common.syscalls", - "starkware.starknet.common.syscalls.get_contract_address" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 65, - "end_line": 279, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/starknet/common/syscalls.cairo" - }, - "start_col": 5, - "start_line": 279 - } - }, - "50": { - "accessible_scopes": [ - "starkware.starknet.common.syscalls", - "starkware.starknet.common.syscalls.storage_read" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 79, - "end_line": 354, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/starknet/common/syscalls.cairo" - }, - "start_col": 58, - "start_line": 354 - } - }, - "52": { - "accessible_scopes": [ - "starkware.starknet.common.syscalls", - "starkware.starknet.common.syscalls.storage_read" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 98, - "end_line": 354, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/starknet/common/syscalls.cairo" - }, - "start_col": 5, - "start_line": 354 - } - }, - "53": { - "accessible_scopes": [ - "starkware.starknet.common.syscalls", - "starkware.starknet.common.syscalls.storage_read" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 98, - "end_line": 354, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/starknet/common/syscalls.cairo" - }, - "start_col": 5, - "start_line": 354 - } - }, - "54": { - "accessible_scopes": [ - "starkware.starknet.common.syscalls", - "starkware.starknet.common.syscalls.storage_read" - ], - "flow_tracking_data": null, - "hints": [ - { - "location": { - "end_col": 87, - "end_line": 355, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/starknet/common/syscalls.cairo" - }, - "start_col": 5, - "start_line": 355 - }, - "n_prefix_newlines": 0 - } - ], - "inst": { - "end_col": 53, - "end_line": 357, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/starknet/common/syscalls.cairo" - }, - "parent_location": [ - { - "end_col": 37, - "end_line": 352, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/starknet/common/syscalls.cairo" - }, - "parent_location": [ - { - "end_col": 35, - "end_line": 358, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/starknet/common/syscalls.cairo" - }, - "start_col": 5, - "start_line": 358 - }, - "While trying to retrieve the implicit argument 'syscall_ptr' in:" - ], - "start_col": 19, - "start_line": 352 - }, - "While expanding the reference 'syscall_ptr' in:" - ], - "start_col": 23, - "start_line": 357 - } - }, - "56": { - "accessible_scopes": [ - "starkware.starknet.common.syscalls", - "starkware.starknet.common.syscalls.storage_read" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 33, - "end_line": 358, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/starknet/common/syscalls.cairo" - }, - "start_col": 19, - "start_line": 358 - } - }, - "57": { - "accessible_scopes": [ - "starkware.starknet.common.syscalls", - "starkware.starknet.common.syscalls.storage_read" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 35, - "end_line": 358, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/starknet/common/syscalls.cairo" - }, - "start_col": 5, - "start_line": 358 - } - }, - "58": { - "accessible_scopes": [ - "starkware.starknet.common.syscalls", - "starkware.starknet.common.syscalls.storage_write" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 40, - "end_line": 372, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/starknet/common/syscalls.cairo" - }, - "start_col": 18, - "start_line": 372 - } - }, - "60": { - "accessible_scopes": [ - "starkware.starknet.common.syscalls", - "starkware.starknet.common.syscalls.storage_write" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 7, - "end_line": 373, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/starknet/common/syscalls.cairo" - }, - "start_col": 5, - "start_line": 371 - } - }, - "61": { - "accessible_scopes": [ - "starkware.starknet.common.syscalls", - "starkware.starknet.common.syscalls.storage_write" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 7, - "end_line": 373, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/starknet/common/syscalls.cairo" - }, - "start_col": 5, - "start_line": 371 - } - }, - "62": { - "accessible_scopes": [ - "starkware.starknet.common.syscalls", - "starkware.starknet.common.syscalls.storage_write" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 7, - "end_line": 373, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/starknet/common/syscalls.cairo" - }, - "start_col": 5, - "start_line": 371 - } - }, - "63": { - "accessible_scopes": [ - "starkware.starknet.common.syscalls", - "starkware.starknet.common.syscalls.storage_write" - ], - "flow_tracking_data": null, - "hints": [ - { - "location": { - "end_col": 88, - "end_line": 374, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/starknet/common/syscalls.cairo" - }, - "start_col": 5, - "start_line": 374 - }, - "n_prefix_newlines": 0 - } - ], - "inst": { - "end_col": 54, - "end_line": 375, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/starknet/common/syscalls.cairo" - }, - "parent_location": [ - { - "end_col": 38, - "end_line": 370, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/starknet/common/syscalls.cairo" - }, - "parent_location": [ - { - "end_col": 15, - "end_line": 376, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/starknet/common/syscalls.cairo" - }, - "start_col": 5, - "start_line": 376 - }, - "While trying to retrieve the implicit argument 'syscall_ptr' in:" - ], - "start_col": 20, - "start_line": 370 - }, - "While expanding the reference 'syscall_ptr' in:" - ], - "start_col": 23, - "start_line": 375 - } - }, - "65": { - "accessible_scopes": [ - "starkware.starknet.common.syscalls", - "starkware.starknet.common.syscalls.storage_write" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 15, - "end_line": 376, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/starknet/common/syscalls.cairo" - }, - "start_col": 5, - "start_line": 376 - } - }, - "66": { - "accessible_scopes": [ - "starkware.starknet.common.syscalls", - "starkware.starknet.common.syscalls.get_tx_info" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 76, - "end_line": 446, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/starknet/common/syscalls.cairo" - }, - "start_col": 56, - "start_line": 446 - } - }, - "68": { - "accessible_scopes": [ - "starkware.starknet.common.syscalls", - "starkware.starknet.common.syscalls.get_tx_info" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 78, - "end_line": 446, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/starknet/common/syscalls.cairo" - }, - "start_col": 5, - "start_line": 446 - } - }, - "69": { - "accessible_scopes": [ - "starkware.starknet.common.syscalls", - "starkware.starknet.common.syscalls.get_tx_info" - ], - "flow_tracking_data": null, - "hints": [ - { - "location": { - "end_col": 86, - "end_line": 447, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/starknet/common/syscalls.cairo" - }, - "start_col": 5, - "start_line": 447 - }, - "n_prefix_newlines": 0 - } - ], - "inst": { - "end_col": 51, - "end_line": 449, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/starknet/common/syscalls.cairo" - }, - "parent_location": [ - { - "end_col": 36, - "end_line": 444, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/starknet/common/syscalls.cairo" - }, - "parent_location": [ - { - "end_col": 39, - "end_line": 450, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/starknet/common/syscalls.cairo" - }, - "start_col": 5, - "start_line": 450 - }, - "While trying to retrieve the implicit argument 'syscall_ptr' in:" - ], - "start_col": 18, - "start_line": 444 - }, - "While expanding the reference 'syscall_ptr' in:" - ], - "start_col": 23, - "start_line": 449 - } - }, - "71": { - "accessible_scopes": [ - "starkware.starknet.common.syscalls", - "starkware.starknet.common.syscalls.get_tx_info" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 37, - "end_line": 450, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/starknet/common/syscalls.cairo" - }, - "start_col": 21, - "start_line": 450 - } - }, - "72": { - "accessible_scopes": [ - "starkware.starknet.common.syscalls", - "starkware.starknet.common.syscalls.get_tx_info" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 39, - "end_line": 450, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/starknet/common/syscalls.cairo" - }, - "start_col": 5, - "start_line": 450 - } - }, - "73": { - "accessible_scopes": [ - "starkware.cairo.common.math", - "starkware.cairo.common.math.assert_nn" - ], - "flow_tracking_data": null, - "hints": [ - { - "location": { - "end_col": 7, - "end_line": 46, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/math.cairo" - }, - "start_col": 5, - "start_line": 42 - }, - "n_prefix_newlines": 1 - } - ], - "inst": { - "end_col": 26, - "end_line": 47, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/math.cairo" - }, - "start_col": 5, - "start_line": 47 - } - }, - "74": { - "accessible_scopes": [ - "starkware.cairo.common.math", - "starkware.cairo.common.math.assert_nn" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 46, - "end_line": 48, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/math.cairo" - }, - "parent_location": [ - { - "end_col": 31, - "end_line": 41, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/math.cairo" - }, - "parent_location": [ - { - "end_col": 15, - "end_line": 49, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/math.cairo" - }, - "start_col": 5, - "start_line": 49 - }, - "While trying to retrieve the implicit argument 'range_check_ptr' in:" - ], - "start_col": 16, - "start_line": 41 - }, - "While expanding the reference 'range_check_ptr' in:" - ], - "start_col": 27, - "start_line": 48 - } - }, - "76": { - "accessible_scopes": [ - "starkware.cairo.common.math", - "starkware.cairo.common.math.assert_nn" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 15, - "end_line": 49, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/math.cairo" - }, - "start_col": 5, - "start_line": 49 - } - }, - "77": { - "accessible_scopes": [ - "starkware.cairo.common.math", - "starkware.cairo.common.math.assert_le" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 31, - "end_line": 53, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/math.cairo" - }, - "parent_location": [ - { - "end_col": 31, - "end_line": 41, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/math.cairo" - }, - "parent_location": [ - { - "end_col": 21, - "end_line": 54, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/math.cairo" - }, - "start_col": 5, - "start_line": 54 - }, - "While trying to retrieve the implicit argument 'range_check_ptr' in:" - ], - "start_col": 16, - "start_line": 41 - }, - "While expanding the reference 'range_check_ptr' in:" - ], - "start_col": 16, - "start_line": 53 - } - }, - "78": { - "accessible_scopes": [ - "starkware.cairo.common.math", - "starkware.cairo.common.math.assert_le" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 20, - "end_line": 54, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/math.cairo" - }, - "start_col": 15, - "start_line": 54 - } - }, - "79": { - "accessible_scopes": [ - "starkware.cairo.common.math", - "starkware.cairo.common.math.assert_le" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 21, - "end_line": 54, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/math.cairo" - }, - "start_col": 5, - "start_line": 54 - } - }, - "81": { - "accessible_scopes": [ - "starkware.cairo.common.math", - "starkware.cairo.common.math.assert_le" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 15, - "end_line": 55, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/math.cairo" - }, - "start_col": 5, - "start_line": 55 - } - }, - "82": { - "accessible_scopes": [ - "starkware.cairo.common.math", - "starkware.cairo.common.math.split_felt" - ], - "flow_tracking_data": null, - "hints": [ - { - "location": { - "end_col": 7, - "end_line": 141, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/math.cairo" - }, - "start_col": 5, - "start_line": 134 - }, - "n_prefix_newlines": 1 - } - ], - "inst": { - "end_col": 37, - "end_line": 131, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/math.cairo" - }, - "parent_location": [ - { - "end_col": 24, - "end_line": 142, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/math.cairo" - }, - "start_col": 20, - "start_line": 142 - }, - "While expanding the reference 'high' in:" - ], - "start_col": 16, - "start_line": 131 - } - }, - "83": { - "accessible_scopes": [ - "starkware.cairo.common.math", - "starkware.cairo.common.math.split_felt" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 37, - "end_line": 142, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/math.cairo" - }, - "start_col": 20, - "start_line": 142 - } - }, - "85": { - "accessible_scopes": [ - "starkware.cairo.common.math", - "starkware.cairo.common.math.split_felt" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 32, - "end_line": 130, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/math.cairo" - }, - "parent_location": [ - { - "end_col": 43, - "end_line": 142, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/math.cairo" - }, - "start_col": 40, - "start_line": 142 - }, - "While expanding the reference 'low' in:" - ], - "start_col": 15, - "start_line": 130 - } - }, - "86": { - "accessible_scopes": [ - "starkware.cairo.common.math", - "starkware.cairo.common.math.split_felt" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 44, - "end_line": 142, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/math.cairo" - }, - "start_col": 5, - "start_line": 142 - } - }, - "87": { - "accessible_scopes": [ - "starkware.cairo.common.math", - "starkware.cairo.common.math.split_felt" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 37, - "end_line": 131, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/math.cairo" - }, - "parent_location": [ - { - "end_col": 13, - "end_line": 143, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/math.cairo" - }, - "start_col": 9, - "start_line": 143 - }, - "While expanding the reference 'high' in:" - ], - "start_col": 16, - "start_line": 131 - } - }, - "88": { - "accessible_scopes": [ - "starkware.cairo.common.math", - "starkware.cairo.common.math.split_felt" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 25, - "end_line": 143, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/math.cairo" - }, - "start_col": 9, - "start_line": 143 - } - }, - "90": { - "accessible_scopes": [ - "starkware.cairo.common.math", - "starkware.cairo.common.math.split_felt" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 7, - "end_line": 143, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/math.cairo" - }, - "start_col": 5, - "start_line": 143 - } - }, - "92": { - "accessible_scopes": [ - "starkware.cairo.common.math", - "starkware.cairo.common.math.split_felt" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 46, - "end_line": 132, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/math.cairo" - }, - "parent_location": [ - { - "end_col": 31, - "end_line": 53, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/math.cairo" - }, - "parent_location": [ - { - "end_col": 32, - "end_line": 144, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/math.cairo" - }, - "start_col": 9, - "start_line": 144 - }, - "While trying to retrieve the implicit argument 'range_check_ptr' in:" - ], - "start_col": 16, - "start_line": 53 - }, - "While expanding the reference 'range_check_ptr' in:" - ], - "start_col": 27, - "start_line": 132 - } - }, - "94": { - "accessible_scopes": [ - "starkware.cairo.common.math", - "starkware.cairo.common.math.split_felt" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 32, - "end_line": 130, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/math.cairo" - }, - "parent_location": [ - { - "end_col": 22, - "end_line": 144, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/math.cairo" - }, - "start_col": 19, - "start_line": 144 - }, - "While expanding the reference 'low' in:" - ], - "start_col": 15, - "start_line": 130 - } - }, - "95": { - "accessible_scopes": [ - "starkware.cairo.common.math", - "starkware.cairo.common.math.split_felt" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 31, - "end_line": 144, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/math.cairo" - }, - "start_col": 24, - "start_line": 144 - } - }, - "97": { - "accessible_scopes": [ - "starkware.cairo.common.math", - "starkware.cairo.common.math.split_felt" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 32, - "end_line": 144, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/math.cairo" - }, - "start_col": 9, - "start_line": 144 - } - }, - "99": { - "accessible_scopes": [ - "starkware.cairo.common.math", - "starkware.cairo.common.math.split_felt" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 7, - "end_line": 143, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/math.cairo" - }, - "start_col": 5, - "start_line": 143 - } - }, - "101": { - "accessible_scopes": [ - "starkware.cairo.common.math", - "starkware.cairo.common.math.split_felt" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 46, - "end_line": 132, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/math.cairo" - }, - "parent_location": [ - { - "end_col": 31, - "end_line": 53, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/math.cairo" - }, - "parent_location": [ - { - "end_col": 38, - "end_line": 146, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/math.cairo" - }, - "start_col": 9, - "start_line": 146 - }, - "While trying to retrieve the implicit argument 'range_check_ptr' in:" - ], - "start_col": 16, - "start_line": 53 - }, - "While expanding the reference 'range_check_ptr' in:" - ], - "start_col": 27, - "start_line": 132 - } - }, - "103": { - "accessible_scopes": [ - "starkware.cairo.common.math", - "starkware.cairo.common.math.split_felt" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 37, - "end_line": 131, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/math.cairo" - }, - "parent_location": [ - { - "end_col": 23, - "end_line": 146, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/math.cairo" - }, - "start_col": 19, - "start_line": 146 - }, - "While expanding the reference 'high' in:" - ], - "start_col": 16, - "start_line": 131 - } - }, - "104": { - "accessible_scopes": [ - "starkware.cairo.common.math", - "starkware.cairo.common.math.split_felt" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 37, - "end_line": 146, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/math.cairo" - }, - "start_col": 25, - "start_line": 146 - } - }, - "106": { - "accessible_scopes": [ - "starkware.cairo.common.math", - "starkware.cairo.common.math.split_felt" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 38, - "end_line": 146, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/math.cairo" - }, - "start_col": 9, - "start_line": 146 - } - }, - "108": { - "accessible_scopes": [ - "starkware.cairo.common.math", - "starkware.cairo.common.math.split_felt" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 37, - "end_line": 131, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/math.cairo" - }, - "parent_location": [ - { - "end_col": 22, - "end_line": 148, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/math.cairo" - }, - "start_col": 18, - "start_line": 148 - }, - "While expanding the reference 'high' in:" - ], - "start_col": 16, - "start_line": 131 - } - }, - "109": { - "accessible_scopes": [ - "starkware.cairo.common.math", - "starkware.cairo.common.math.split_felt" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 32, - "end_line": 130, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/math.cairo" - }, - "parent_location": [ - { - "end_col": 31, - "end_line": 148, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/math.cairo" - }, - "start_col": 28, - "start_line": 148 - }, - "While expanding the reference 'low' in:" - ], - "start_col": 15, - "start_line": 130 - } - }, - "110": { - "accessible_scopes": [ - "starkware.cairo.common.math", - "starkware.cairo.common.math.split_felt" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 33, - "end_line": 148, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/math.cairo" - }, - "start_col": 5, - "start_line": 148 - } - }, - "111": { - "accessible_scopes": [ - "starkware.cairo.common.math", - "starkware.cairo.common.math.assert_le_felt" - ], - "flow_tracking_data": null, - "hints": [ - { - "location": { - "end_col": 7, - "end_line": 184, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/math.cairo" - }, - "start_col": 5, - "start_line": 164 - }, - "n_prefix_newlines": 1 - } - ], - "inst": { - "end_col": 42, - "end_line": 186, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/math.cairo" - }, - "start_col": 25, - "start_line": 186 - } - }, - "112": { - "accessible_scopes": [ - "starkware.cairo.common.math", - "starkware.cairo.common.math.assert_le_felt" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 66, - "end_line": 186, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/math.cairo" - }, - "start_col": 45, - "start_line": 186 - } - }, - "113": { - "accessible_scopes": [ - "starkware.cairo.common.math", - "starkware.cairo.common.math.assert_le_felt" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 86, - "end_line": 186, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/math.cairo" - }, - "start_col": 45, - "start_line": 186 - } - }, - "115": { - "accessible_scopes": [ - "starkware.cairo.common.math", - "starkware.cairo.common.math.assert_le_felt" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 86, - "end_line": 186, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/math.cairo" - }, - "start_col": 25, - "start_line": 186 - } - }, - "116": { - "accessible_scopes": [ - "starkware.cairo.common.math", - "starkware.cairo.common.math.assert_le_felt" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 45, - "end_line": 187, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/math.cairo" - }, - "start_col": 24, - "start_line": 187 - } - }, - "117": { - "accessible_scopes": [ - "starkware.cairo.common.math", - "starkware.cairo.common.math.assert_le_felt" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 69, - "end_line": 187, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/math.cairo" - }, - "start_col": 48, - "start_line": 187 - } - }, - "118": { - "accessible_scopes": [ - "starkware.cairo.common.math", - "starkware.cairo.common.math.assert_le_felt" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 89, - "end_line": 187, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/math.cairo" - }, - "start_col": 48, - "start_line": 187 - } - }, - "120": { - "accessible_scopes": [ - "starkware.cairo.common.math", - "starkware.cairo.common.math.assert_le_felt" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 89, - "end_line": 187, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/math.cairo" - }, - "start_col": 24, - "start_line": 187 - } - }, - "121": { - "accessible_scopes": [ - "starkware.cairo.common.math", - "starkware.cairo.common.math.assert_le_felt" - ], - "flow_tracking_data": null, - "hints": [ - { - "location": { - "end_col": 49, - "end_line": 196, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/math.cairo" - }, - "start_col": 5, - "start_line": 196 - }, - "n_prefix_newlines": 0 - } - ], - "inst": { - "end_col": 42, - "end_line": 197, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/math.cairo" - }, - "start_col": 5, - "start_line": 197 - } - }, - "123": { - "accessible_scopes": [ - "starkware.cairo.common.math", - "starkware.cairo.common.math.assert_le_felt" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 25, - "end_line": 198, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/math.cairo" - }, - "start_col": 23, - "start_line": 198 - } - }, - "125": { - "accessible_scopes": [ - "starkware.cairo.common.math", - "starkware.cairo.common.math.assert_le_felt" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 30, - "end_line": 198, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/math.cairo" - }, - "start_col": 22, - "start_line": 198 - } - }, - "126": { - "accessible_scopes": [ - "starkware.cairo.common.math", - "starkware.cairo.common.math.assert_le_felt" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 31, - "end_line": 198, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/math.cairo" - }, - "start_col": 5, - "start_line": 198 - } - }, - "127": { - "accessible_scopes": [ - "starkware.cairo.common.math", - "starkware.cairo.common.math.assert_le_felt" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 29, - "end_line": 199, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/math.cairo" - }, - "start_col": 24, - "start_line": 199 - } - }, - "128": { - "accessible_scopes": [ - "starkware.cairo.common.math", - "starkware.cairo.common.math.assert_le_felt" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 39, - "end_line": 199, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/math.cairo" - }, - "start_col": 34, - "start_line": 199 - } - }, - "130": { - "accessible_scopes": [ - "starkware.cairo.common.math", - "starkware.cairo.common.math.assert_le_felt" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 40, - "end_line": 199, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/math.cairo" - }, - "start_col": 23, - "start_line": 199 - } - }, - "131": { - "accessible_scopes": [ - "starkware.cairo.common.math", - "starkware.cairo.common.math.assert_le_felt" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 41, - "end_line": 199, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/math.cairo" - }, - "start_col": 5, - "start_line": 199 - } - }, - "132": { - "accessible_scopes": [ - "starkware.cairo.common.math", - "starkware.cairo.common.math.assert_le_felt" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 46, - "end_line": 188, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/math.cairo" - }, - "parent_location": [ - { - "end_col": 36, - "end_line": 154, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/math.cairo" - }, - "parent_location": [ - { - "end_col": 15, - "end_line": 200, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/math.cairo" - }, - "start_col": 5, - "start_line": 200 - }, - "While trying to retrieve the implicit argument 'range_check_ptr' in:" - ], - "start_col": 21, - "start_line": 154 - }, - "While expanding the reference 'range_check_ptr' in:" - ], - "start_col": 27, - "start_line": 188 - } - }, - "134": { - "accessible_scopes": [ - "starkware.cairo.common.math", - "starkware.cairo.common.math.assert_le_felt" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 15, - "end_line": 200, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/math.cairo" - }, - "start_col": 5, - "start_line": 200 - } - }, - "135": { - "accessible_scopes": [ - "starkware.cairo.common.math", - "starkware.cairo.common.math.assert_le_felt" - ], - "flow_tracking_data": null, - "hints": [ - { - "location": { - "end_col": 49, - "end_line": 204, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/math.cairo" - }, - "start_col": 5, - "start_line": 204 - }, - "n_prefix_newlines": 0 - } - ], - "inst": { - "end_col": 50, - "end_line": 205, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/math.cairo" - }, - "start_col": 5, - "start_line": 205 - } - }, - "137": { - "accessible_scopes": [ - "starkware.cairo.common.math", - "starkware.cairo.common.math.assert_le_felt" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 23, - "end_line": 206, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/math.cairo" - }, - "start_col": 21, - "start_line": 206 - } - }, - "139": { - "accessible_scopes": [ - "starkware.cairo.common.math", - "starkware.cairo.common.math.assert_le_felt" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 28, - "end_line": 206, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/math.cairo" - }, - "start_col": 20, - "start_line": 206 - } - }, - "140": { - "accessible_scopes": [ - "starkware.cairo.common.math", - "starkware.cairo.common.math.assert_le_felt" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 30, - "end_line": 207, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/math.cairo" - }, - "start_col": 22, - "start_line": 207 - } - }, - "141": { - "accessible_scopes": [ - "starkware.cairo.common.math", - "starkware.cairo.common.math.assert_le_felt" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 31, - "end_line": 207, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/math.cairo" - }, - "start_col": 5, - "start_line": 207 - } - }, - "142": { - "accessible_scopes": [ - "starkware.cairo.common.math", - "starkware.cairo.common.math.assert_le_felt" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 31, - "end_line": 208, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/math.cairo" - }, - "start_col": 23, - "start_line": 208 - } - }, - "143": { - "accessible_scopes": [ - "starkware.cairo.common.math", - "starkware.cairo.common.math.assert_le_felt" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 32, - "end_line": 208, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/math.cairo" - }, - "start_col": 5, - "start_line": 208 - } - }, - "144": { - "accessible_scopes": [ - "starkware.cairo.common.math", - "starkware.cairo.common.math.assert_le_felt" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 46, - "end_line": 188, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/math.cairo" - }, - "parent_location": [ - { - "end_col": 36, - "end_line": 154, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/math.cairo" - }, - "parent_location": [ - { - "end_col": 15, - "end_line": 209, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/math.cairo" - }, - "start_col": 5, - "start_line": 209 - }, - "While trying to retrieve the implicit argument 'range_check_ptr' in:" - ], - "start_col": 21, - "start_line": 154 - }, - "While expanding the reference 'range_check_ptr' in:" - ], - "start_col": 27, - "start_line": 188 - } - }, - "146": { - "accessible_scopes": [ - "starkware.cairo.common.math", - "starkware.cairo.common.math.assert_le_felt" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 15, - "end_line": 209, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/math.cairo" - }, - "start_col": 5, - "start_line": 209 - } - }, - "147": { - "accessible_scopes": [ - "starkware.cairo.common.math", - "starkware.cairo.common.math.assert_le_felt" - ], - "flow_tracking_data": null, - "hints": [ - { - "location": { - "end_col": 31, - "end_line": 213, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/math.cairo" - }, - "start_col": 5, - "start_line": 213 - }, - "n_prefix_newlines": 0 - } - ], - "inst": { - "end_col": 24, - "end_line": 214, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/math.cairo" - }, - "start_col": 5, - "start_line": 214 - } - }, - "148": { - "accessible_scopes": [ - "starkware.cairo.common.math", - "starkware.cairo.common.math.assert_le_felt" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 33, - "end_line": 215, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/math.cairo" - }, - "start_col": 28, - "start_line": 215 - } - }, - "149": { - "accessible_scopes": [ - "starkware.cairo.common.math", - "starkware.cairo.common.math.assert_le_felt" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 34, - "end_line": 215, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/math.cairo" - }, - "start_col": 23, - "start_line": 215 - } - }, - "150": { - "accessible_scopes": [ - "starkware.cairo.common.math", - "starkware.cairo.common.math.assert_le_felt" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 35, - "end_line": 215, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/math.cairo" - }, - "start_col": 5, - "start_line": 215 - } - }, - "151": { - "accessible_scopes": [ - "starkware.cairo.common.math", - "starkware.cairo.common.math.assert_le_felt" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 12, - "end_line": 216, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/math.cairo" - }, - "start_col": 5, - "start_line": 216 - } - }, - "153": { - "accessible_scopes": [ - "starkware.cairo.common.math", - "starkware.cairo.common.math.assert_le_felt" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 46, - "end_line": 188, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/math.cairo" - }, - "parent_location": [ - { - "end_col": 36, - "end_line": 154, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/math.cairo" - }, - "parent_location": [ - { - "end_col": 15, - "end_line": 217, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/math.cairo" - }, - "start_col": 5, - "start_line": 217 - }, - "While trying to retrieve the implicit argument 'range_check_ptr' in:" - ], - "start_col": 21, - "start_line": 154 - }, - "While expanding the reference 'range_check_ptr' in:" - ], - "start_col": 27, - "start_line": 188 - } - }, - "155": { - "accessible_scopes": [ - "starkware.cairo.common.math", - "starkware.cairo.common.math.assert_le_felt" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 15, - "end_line": 217, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/math.cairo" - }, - "start_col": 5, - "start_line": 217 - } - }, - "156": { - "accessible_scopes": [ - "starkware.cairo.common.math", - "starkware.cairo.common.math.unsigned_div_rem" - ], - "flow_tracking_data": null, - "hints": [ - { - "location": { - "end_col": 7, - "end_line": 307, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/math.cairo" - }, - "start_col": 5, - "start_line": 301 - }, - "n_prefix_newlines": 1 - } - ], - "inst": { - "end_col": 46, - "end_line": 300, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/math.cairo" - }, - "parent_location": [ - { - "end_col": 31, - "end_line": 53, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/math.cairo" - }, - "parent_location": [ - { - "end_col": 26, - "end_line": 308, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/math.cairo" - }, - "start_col": 5, - "start_line": 308 - }, - "While trying to retrieve the implicit argument 'range_check_ptr' in:" - ], - "start_col": 16, - "start_line": 53 - }, - "While expanding the reference 'range_check_ptr' in:" - ], - "start_col": 27, - "start_line": 300 - } - }, - "158": { - "accessible_scopes": [ - "starkware.cairo.common.math", - "starkware.cairo.common.math.unsigned_div_rem" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 30, - "end_line": 298, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/math.cairo" - }, - "parent_location": [ - { - "end_col": 16, - "end_line": 308, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/math.cairo" - }, - "start_col": 15, - "start_line": 308 - }, - "While expanding the reference 'r' in:" - ], - "start_col": 13, - "start_line": 298 - } - }, - "159": { - "accessible_scopes": [ - "starkware.cairo.common.math", - "starkware.cairo.common.math.unsigned_div_rem" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 25, - "end_line": 308, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/math.cairo" - }, - "start_col": 18, - "start_line": 308 - } - }, - "161": { - "accessible_scopes": [ - "starkware.cairo.common.math", - "starkware.cairo.common.math.unsigned_div_rem" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 26, - "end_line": 308, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/math.cairo" - }, - "start_col": 5, - "start_line": 308 - } - }, - "163": { - "accessible_scopes": [ - "starkware.cairo.common.math", - "starkware.cairo.common.math.unsigned_div_rem" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 34, - "end_line": 299, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/math.cairo" - }, - "parent_location": [ - { - "end_col": 21, - "end_line": 310, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/math.cairo" - }, - "start_col": 20, - "start_line": 310 - }, - "While expanding the reference 'q' in:" - ], - "start_col": 13, - "start_line": 299 - } - }, - "164": { - "accessible_scopes": [ - "starkware.cairo.common.math", - "starkware.cairo.common.math.unsigned_div_rem" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 27, - "end_line": 310, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/math.cairo" - }, - "start_col": 20, - "start_line": 310 - } - }, - "165": { - "accessible_scopes": [ - "starkware.cairo.common.math", - "starkware.cairo.common.math.unsigned_div_rem" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 30, - "end_line": 298, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/math.cairo" - }, - "parent_location": [ - { - "end_col": 31, - "end_line": 310, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/math.cairo" - }, - "start_col": 30, - "start_line": 310 - }, - "While expanding the reference 'r' in:" - ], - "start_col": 13, - "start_line": 298 - } - }, - "166": { - "accessible_scopes": [ - "starkware.cairo.common.math", - "starkware.cairo.common.math.unsigned_div_rem" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 32, - "end_line": 310, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/math.cairo" - }, - "start_col": 5, - "start_line": 310 - } - }, - "167": { - "accessible_scopes": [ - "starkware.cairo.common.math", - "starkware.cairo.common.math.unsigned_div_rem" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 31, - "end_line": 53, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/math.cairo" - }, - "parent_location": [ - { - "end_col": 26, - "end_line": 308, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/math.cairo" - }, - "parent_location": [ - { - "end_col": 38, - "end_line": 297, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/math.cairo" - }, - "parent_location": [ - { - "end_col": 19, - "end_line": 311, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/math.cairo" - }, - "start_col": 5, - "start_line": 311 - }, - "While trying to retrieve the implicit argument 'range_check_ptr' in:" - ], - "start_col": 23, - "start_line": 297 - }, - "While expanding the reference 'range_check_ptr' in:" - ], - "start_col": 5, - "start_line": 308 - }, - "While trying to update the implicit return value 'range_check_ptr' in:" - ], - "start_col": 16, - "start_line": 53 - } - }, - "168": { - "accessible_scopes": [ - "starkware.cairo.common.math", - "starkware.cairo.common.math.unsigned_div_rem" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 34, - "end_line": 299, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/math.cairo" - }, - "parent_location": [ - { - "end_col": 14, - "end_line": 311, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/math.cairo" - }, - "start_col": 13, - "start_line": 311 - }, - "While expanding the reference 'q' in:" - ], - "start_col": 13, - "start_line": 299 - } - }, - "169": { - "accessible_scopes": [ - "starkware.cairo.common.math", - "starkware.cairo.common.math.unsigned_div_rem" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 30, - "end_line": 298, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/math.cairo" - }, - "parent_location": [ - { - "end_col": 17, - "end_line": 311, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/math.cairo" - }, - "start_col": 16, - "start_line": 311 - }, - "While expanding the reference 'r' in:" - ], - "start_col": 13, - "start_line": 298 - } - }, - "170": { - "accessible_scopes": [ - "starkware.cairo.common.math", - "starkware.cairo.common.math.unsigned_div_rem" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 19, - "end_line": 311, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/math.cairo" - }, - "start_col": 5, - "start_line": 311 - } - }, - "171": { - "accessible_scopes": [ - "starkware.cairo.common.signature", - "starkware.cairo.common.signature.verify_ecdsa_signature" - ], - "flow_tracking_data": null, - "hints": [ - { - "location": { - "end_col": 98, - "end_line": 13, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/signature.cairo" - }, - "start_col": 5, - "start_line": 13 - }, - "n_prefix_newlines": 0 - } - ], - "inst": { - "end_col": 40, - "end_line": 14, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/signature.cairo" - }, - "start_col": 5, - "start_line": 14 - } - }, - "172": { - "accessible_scopes": [ - "starkware.cairo.common.signature", - "starkware.cairo.common.signature.verify_ecdsa_signature" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 43, - "end_line": 15, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/signature.cairo" - }, - "start_col": 5, - "start_line": 15 - } - }, - "173": { - "accessible_scopes": [ - "starkware.cairo.common.signature", - "starkware.cairo.common.signature.verify_ecdsa_signature" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 54, - "end_line": 17, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/signature.cairo" - }, - "parent_location": [ - { - "end_col": 57, - "end_line": 10, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/signature.cairo" - }, - "parent_location": [ - { - "end_col": 15, - "end_line": 18, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/signature.cairo" - }, - "start_col": 5, - "start_line": 18 - }, - "While trying to retrieve the implicit argument 'ecdsa_ptr' in:" - ], - "start_col": 29, - "start_line": 10 - }, - "While expanding the reference 'ecdsa_ptr' in:" - ], - "start_col": 21, - "start_line": 17 - } - }, - "175": { - "accessible_scopes": [ - "starkware.cairo.common.signature", - "starkware.cairo.common.signature.verify_ecdsa_signature" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 15, - "end_line": 18, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/signature.cairo" - }, - "start_col": 5, - "start_line": 18 - } - }, - "176": { - "accessible_scopes": [ - "starkware.cairo.common.math_cmp", - "starkware.cairo.common.math_cmp.is_not_zero" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 7, - "end_line": 8, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/math_cmp.cairo" - }, - "start_col": 5, - "start_line": 8 - } - }, - "178": { - "accessible_scopes": [ - "starkware.cairo.common.math_cmp", - "starkware.cairo.common.math_cmp.is_not_zero" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 17, - "end_line": 9, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/math_cmp.cairo" - }, - "start_col": 16, - "start_line": 9 - } - }, - "180": { - "accessible_scopes": [ - "starkware.cairo.common.math_cmp", - "starkware.cairo.common.math_cmp.is_not_zero" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 18, - "end_line": 9, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/math_cmp.cairo" - }, - "start_col": 9, - "start_line": 9 - } - }, - "181": { - "accessible_scopes": [ - "starkware.cairo.common.math_cmp", - "starkware.cairo.common.math_cmp.is_not_zero" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 13, - "end_line": 12, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/math_cmp.cairo" - }, - "start_col": 12, - "start_line": 12 - } - }, - "183": { - "accessible_scopes": [ - "starkware.cairo.common.math_cmp", - "starkware.cairo.common.math_cmp.is_not_zero" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 14, - "end_line": 12, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/math_cmp.cairo" - }, - "start_col": 5, - "start_line": 12 - } - }, - "184": { - "accessible_scopes": [ - "starkware.cairo.common.math_cmp", - "starkware.cairo.common.math_cmp.is_nn" - ], - "flow_tracking_data": null, - "hints": [ - { - "location": { - "end_col": 84, - "end_line": 19, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/math_cmp.cairo" - }, - "start_col": 5, - "start_line": 19 - }, - "n_prefix_newlines": 0 - } - ], - "inst": { - "end_col": 40, - "end_line": 20, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/math_cmp.cairo" - }, - "start_col": 5, - "start_line": 20 - } - }, - "186": { - "accessible_scopes": [ - "starkware.cairo.common.math_cmp", - "starkware.cairo.common.math_cmp.is_nn" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 26, - "end_line": 21, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/math_cmp.cairo" - }, - "start_col": 5, - "start_line": 21 - } - }, - "187": { - "accessible_scopes": [ - "starkware.cairo.common.math_cmp", - "starkware.cairo.common.math_cmp.is_nn" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 13, - "end_line": 22, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/math_cmp.cairo" - }, - "start_col": 5, - "start_line": 22 - } - }, - "189": { - "accessible_scopes": [ - "starkware.cairo.common.math_cmp", - "starkware.cairo.common.math_cmp.is_nn" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 46, - "end_line": 23, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/math_cmp.cairo" - }, - "parent_location": [ - { - "end_col": 27, - "end_line": 18, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/math_cmp.cairo" - }, - "parent_location": [ - { - "end_col": 14, - "end_line": 24, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/math_cmp.cairo" - }, - "start_col": 5, - "start_line": 24 - }, - "While trying to retrieve the implicit argument 'range_check_ptr' in:" - ], - "start_col": 12, - "start_line": 18 - }, - "While expanding the reference 'range_check_ptr' in:" - ], - "start_col": 27, - "start_line": 23 - } - }, - "191": { - "accessible_scopes": [ - "starkware.cairo.common.math_cmp", - "starkware.cairo.common.math_cmp.is_nn" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 13, - "end_line": 24, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/math_cmp.cairo" - }, - "start_col": 12, - "start_line": 24 - } - }, - "193": { - "accessible_scopes": [ - "starkware.cairo.common.math_cmp", - "starkware.cairo.common.math_cmp.is_nn" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 14, - "end_line": 24, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/math_cmp.cairo" - }, - "start_col": 5, - "start_line": 24 - } - }, - "194": { - "accessible_scopes": [ - "starkware.cairo.common.math_cmp", - "starkware.cairo.common.math_cmp.is_nn" - ], - "flow_tracking_data": null, - "hints": [ - { - "location": { - "end_col": 91, - "end_line": 27, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/math_cmp.cairo" - }, - "start_col": 5, - "start_line": 27 - }, - "n_prefix_newlines": 0 - } - ], - "inst": { - "end_col": 48, - "end_line": 28, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/math_cmp.cairo" - }, - "start_col": 5, - "start_line": 28 - } - }, - "196": { - "accessible_scopes": [ - "starkware.cairo.common.math_cmp", - "starkware.cairo.common.math_cmp.is_nn" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 35, - "end_line": 29, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/math_cmp.cairo" - }, - "start_col": 33, - "start_line": 29 - } - }, - "198": { - "accessible_scopes": [ - "starkware.cairo.common.math_cmp", - "starkware.cairo.common.math_cmp.is_nn" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 40, - "end_line": 29, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/math_cmp.cairo" - }, - "start_col": 32, - "start_line": 29 - } - }, - "200": { - "accessible_scopes": [ - "starkware.cairo.common.math_cmp", - "starkware.cairo.common.math_cmp.is_nn" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 41, - "end_line": 29, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/math_cmp.cairo" - }, - "start_col": 5, - "start_line": 29 - } - }, - "201": { - "accessible_scopes": [ - "starkware.cairo.common.math_cmp", - "starkware.cairo.common.math_cmp.is_nn" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 13, - "end_line": 30, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/math_cmp.cairo" - }, - "start_col": 5, - "start_line": 30 - } - }, - "203": { - "accessible_scopes": [ - "starkware.cairo.common.math_cmp", - "starkware.cairo.common.math_cmp.is_nn" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 46, - "end_line": 31, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/math_cmp.cairo" - }, - "parent_location": [ - { - "end_col": 27, - "end_line": 18, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/math_cmp.cairo" - }, - "parent_location": [ - { - "end_col": 14, - "end_line": 32, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/math_cmp.cairo" - }, - "start_col": 5, - "start_line": 32 - }, - "While trying to retrieve the implicit argument 'range_check_ptr' in:" - ], - "start_col": 12, - "start_line": 18 - }, - "While expanding the reference 'range_check_ptr' in:" - ], - "start_col": 27, - "start_line": 31 - } - }, - "205": { - "accessible_scopes": [ - "starkware.cairo.common.math_cmp", - "starkware.cairo.common.math_cmp.is_nn" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 13, - "end_line": 32, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/math_cmp.cairo" - }, - "start_col": 12, - "start_line": 32 - } - }, - "207": { - "accessible_scopes": [ - "starkware.cairo.common.math_cmp", - "starkware.cairo.common.math_cmp.is_nn" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 14, - "end_line": 32, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/math_cmp.cairo" - }, - "start_col": 5, - "start_line": 32 - } - }, - "208": { - "accessible_scopes": [ - "starkware.cairo.common.math_cmp", - "starkware.cairo.common.math_cmp.is_nn" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 27, - "end_line": 18, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/math_cmp.cairo" - }, - "parent_location": [ - { - "end_col": 36, - "end_line": 154, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/math.cairo" - }, - "parent_location": [ - { - "end_col": 32, - "end_line": 35, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/math_cmp.cairo" - }, - "start_col": 5, - "start_line": 35 - }, - "While trying to retrieve the implicit argument 'range_check_ptr' in:" - ], - "start_col": 21, - "start_line": 154 - }, - "While expanding the reference 'range_check_ptr' in:" - ], - "start_col": 12, - "start_line": 18 - } - }, - "209": { - "accessible_scopes": [ - "starkware.cairo.common.math_cmp", - "starkware.cairo.common.math_cmp.is_nn" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 28, - "end_line": 35, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/math_cmp.cairo" - }, - "start_col": 20, - "start_line": 35 - } - }, - "211": { - "accessible_scopes": [ - "starkware.cairo.common.math_cmp", - "starkware.cairo.common.math_cmp.is_nn" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 30, - "end_line": 18, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/math_cmp.cairo" - }, - "parent_location": [ - { - "end_col": 31, - "end_line": 35, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/math_cmp.cairo" - }, - "start_col": 30, - "start_line": 35 - }, - "While expanding the reference 'a' in:" - ], - "start_col": 29, - "start_line": 18 - } - }, - "212": { - "accessible_scopes": [ - "starkware.cairo.common.math_cmp", - "starkware.cairo.common.math_cmp.is_nn" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 32, - "end_line": 35, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/math_cmp.cairo" - }, - "start_col": 5, - "start_line": 35 - } - }, - "214": { - "accessible_scopes": [ - "starkware.cairo.common.math_cmp", - "starkware.cairo.common.math_cmp.is_nn" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 13, - "end_line": 36, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/math_cmp.cairo" - }, - "start_col": 12, - "start_line": 36 - } - }, - "216": { - "accessible_scopes": [ - "starkware.cairo.common.math_cmp", - "starkware.cairo.common.math_cmp.is_nn" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 14, - "end_line": 36, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/math_cmp.cairo" - }, - "start_col": 5, - "start_line": 36 - } - }, - "217": { - "accessible_scopes": [ - "starkware.cairo.common.math_cmp", - "starkware.cairo.common.math_cmp.is_le" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 27, - "end_line": 42, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/math_cmp.cairo" - }, - "parent_location": [ - { - "end_col": 27, - "end_line": 18, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/math_cmp.cairo" - }, - "parent_location": [ - { - "end_col": 24, - "end_line": 43, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/math_cmp.cairo" - }, - "start_col": 12, - "start_line": 43 - }, - "While trying to retrieve the implicit argument 'range_check_ptr' in:" - ], - "start_col": 12, - "start_line": 18 - }, - "While expanding the reference 'range_check_ptr' in:" - ], - "start_col": 12, - "start_line": 42 - } - }, - "218": { - "accessible_scopes": [ - "starkware.cairo.common.math_cmp", - "starkware.cairo.common.math_cmp.is_le" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 23, - "end_line": 43, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/math_cmp.cairo" - }, - "start_col": 18, - "start_line": 43 - } - }, - "219": { - "accessible_scopes": [ - "starkware.cairo.common.math_cmp", - "starkware.cairo.common.math_cmp.is_le" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 24, - "end_line": 43, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/math_cmp.cairo" - }, - "start_col": 12, - "start_line": 43 - } - }, - "221": { - "accessible_scopes": [ - "starkware.cairo.common.math_cmp", - "starkware.cairo.common.math_cmp.is_le" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 25, - "end_line": 43, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/math_cmp.cairo" - }, - "start_col": 5, - "start_line": 43 - } - }, - "222": { - "accessible_scopes": [ - "interfaces", - "interfaces.INaming", - "interfaces.INaming.domain_to_address" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 14, - "end_line": 2, - "input_file": { - "filename": "autogen/starknet/contract_interface/INaming/domain_to_address/64f7842b108e76706927b78270ac73c789c558c54431b3359e4441e63ec2a868.cairo" - }, - "parent_location": [ - { - "end_col": 27, - "end_line": 22, - "input_file": { - "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/interfaces.cairo" - }, - "start_col": 10, - "start_line": 22 - }, - "While handling contract interface function:" - ], - "start_col": 1, - "start_line": 2 - } - }, - "224": { - "accessible_scopes": [ - "interfaces", - "interfaces.INaming", - "interfaces.INaming.domain_to_address" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 48, - "end_line": 3, - "input_file": { - "filename": "autogen/starknet/contract_interface/INaming/domain_to_address/64f7842b108e76706927b78270ac73c789c558c54431b3359e4441e63ec2a868.cairo" - }, - "parent_location": [ - { - "end_col": 27, - "end_line": 22, - "input_file": { - "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/interfaces.cairo" - }, - "start_col": 10, - "start_line": 22 - }, - "While handling contract interface function:" - ], - "start_col": 41, - "start_line": 3 - } - }, - "226": { - "accessible_scopes": [ - "interfaces", - "interfaces.INaming", - "interfaces.INaming.domain_to_address" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 37, - "end_line": 3, - "input_file": { - "filename": "autogen/starknet/contract_interface/INaming/domain_to_address/64f7842b108e76706927b78270ac73c789c558c54431b3359e4441e63ec2a868.cairo" - }, - "parent_location": [ - { - "end_col": 27, - "end_line": 22, - "input_file": { - "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/interfaces.cairo" - }, - "start_col": 10, - "start_line": 22 - }, - "While handling contract interface function:" - ], - "start_col": 6, - "start_line": 3 - } - }, - "227": { - "accessible_scopes": [ - "interfaces", - "interfaces.INaming", - "interfaces.INaming.domain_to_address" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 38, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/arg_processor/8339a6640c627e9911eb5c59bed25870348dede436b3d376cff72949db1f150a.cairo" - }, - "parent_location": [ - { - "end_col": 38, - "end_line": 22, - "input_file": { - "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/interfaces.cairo" - }, - "start_col": 28, - "start_line": 22 - }, - "While handling calldata argument 'domain_len'" - ], - "start_col": 1, - "start_line": 1 - } - }, - "228": { - "accessible_scopes": [ - "interfaces", - "interfaces.INaming", - "interfaces.INaming.domain_to_address" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 39, - "end_line": 2, - "input_file": { - "filename": "autogen/starknet/arg_processor/288b895dd4d5c29bfd5d1dec1a501aae621b1c406a4ee12ad9564927a72fa9fb.cairo" - }, - "parent_location": [ - { - "end_col": 52, - "end_line": 22, - "input_file": { - "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/interfaces.cairo" - }, - "start_col": 46, - "start_line": 22 - }, - "While handling calldata argument 'domain'" - ], - "start_col": 1, - "start_line": 2 - } - }, - "229": { - "accessible_scopes": [ - "interfaces", - "interfaces.INaming", - "interfaces.INaming.domain_to_address" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 45, - "end_line": 5, - "input_file": { - "filename": "autogen/starknet/arg_processor/288b895dd4d5c29bfd5d1dec1a501aae621b1c406a4ee12ad9564927a72fa9fb.cairo" - }, - "parent_location": [ - { - "end_col": 52, - "end_line": 22, - "input_file": { - "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/interfaces.cairo" - }, - "start_col": 46, - "start_line": 22 - }, - "While handling calldata argument 'domain'" - ], - "start_col": 1, - "start_line": 5 - } - }, - "231": { - "accessible_scopes": [ - "interfaces", - "interfaces.INaming", - "interfaces.INaming.domain_to_address" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 40, - "end_line": 2, - "input_file": { - "filename": "autogen/starknet/arg_processor/8339a6640c627e9911eb5c59bed25870348dede436b3d376cff72949db1f150a.cairo" - }, - "parent_location": [ - { - "end_col": 38, - "end_line": 22, - "input_file": { - "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/interfaces.cairo" - }, - "parent_location": [ - { - "end_col": 45, - "end_line": 10, - "input_file": { - "filename": "autogen/starknet/arg_processor/288b895dd4d5c29bfd5d1dec1a501aae621b1c406a4ee12ad9564927a72fa9fb.cairo" - }, - "parent_location": [ - { - "end_col": 52, - "end_line": 22, - "input_file": { - "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/interfaces.cairo" - }, - "start_col": 46, - "start_line": 22 - }, - "While handling calldata argument 'domain'" - ], - "start_col": 31, - "start_line": 10 - }, - "While expanding the reference '__calldata_ptr' in:" - ], - "start_col": 28, - "start_line": 22 - }, - "While handling calldata argument 'domain_len'" - ], - "start_col": 22, - "start_line": 2 - } - }, - "233": { - "accessible_scopes": [ - "interfaces", - "interfaces.INaming", - "interfaces.INaming.domain_to_address" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 63, - "end_line": 10, - "input_file": { - "filename": "autogen/starknet/arg_processor/288b895dd4d5c29bfd5d1dec1a501aae621b1c406a4ee12ad9564927a72fa9fb.cairo" - }, - "parent_location": [ - { - "end_col": 52, - "end_line": 22, - "input_file": { - "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/interfaces.cairo" - }, - "start_col": 46, - "start_line": 22 - }, - "While handling calldata argument 'domain'" - ], - "start_col": 1, - "start_line": 10 - } - }, - "234": { - "accessible_scopes": [ - "interfaces", - "interfaces.INaming", - "interfaces.INaming.domain_to_address" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 40, - "end_line": 2, - "input_file": { - "filename": "autogen/starknet/arg_processor/8339a6640c627e9911eb5c59bed25870348dede436b3d376cff72949db1f150a.cairo" - }, - "parent_location": [ - { - "end_col": 38, - "end_line": 22, - "input_file": { - "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/interfaces.cairo" - }, - "parent_location": [ - { - "end_col": 41, - "end_line": 7, - "input_file": { - "filename": "autogen/starknet/arg_processor/288b895dd4d5c29bfd5d1dec1a501aae621b1c406a4ee12ad9564927a72fa9fb.cairo" - }, - "parent_location": [ - { - "end_col": 52, - "end_line": 22, - "input_file": { - "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/interfaces.cairo" - }, - "parent_location": [ - { - "end_col": 28, - "end_line": 12, - "input_file": { - "filename": "autogen/starknet/arg_processor/288b895dd4d5c29bfd5d1dec1a501aae621b1c406a4ee12ad9564927a72fa9fb.cairo" - }, - "parent_location": [ - { - "end_col": 52, - "end_line": 22, - "input_file": { - "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/interfaces.cairo" - }, - "start_col": 46, - "start_line": 22 - }, - "While handling calldata argument 'domain'" - ], - "start_col": 9, - "start_line": 12 - }, - "While expanding the reference '__calldata_ptr_copy' in:" - ], - "start_col": 46, - "start_line": 22 - }, - "While handling calldata argument 'domain'" - ], - "start_col": 27, - "start_line": 7 - }, - "While expanding the reference '__calldata_ptr' in:" - ], - "start_col": 28, - "start_line": 22 - }, - "While handling calldata argument 'domain_len'" - ], - "start_col": 22, - "start_line": 2 - } - }, - "236": { - "accessible_scopes": [ - "interfaces", - "interfaces.INaming", - "interfaces.INaming.domain_to_address" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 59, - "end_line": 22, - "input_file": { - "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/interfaces.cairo" - }, - "parent_location": [ - { - "end_col": 15, - "end_line": 13, - "input_file": { - "filename": "autogen/starknet/arg_processor/288b895dd4d5c29bfd5d1dec1a501aae621b1c406a4ee12ad9564927a72fa9fb.cairo" - }, - "parent_location": [ - { - "end_col": 52, - "end_line": 22, - "input_file": { - "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/interfaces.cairo" - }, - "start_col": 46, - "start_line": 22 - }, - "While handling calldata argument 'domain'" - ], - "start_col": 9, - "start_line": 13 - }, - "While expanding the reference 'domain' in:" - ], - "start_col": 46, - "start_line": 22 - } - }, - "237": { - "accessible_scopes": [ - "interfaces", - "interfaces.INaming", - "interfaces.INaming.domain_to_address" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 44, - "end_line": 22, - "input_file": { - "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/interfaces.cairo" - }, - "parent_location": [ - { - "end_col": 19, - "end_line": 14, - "input_file": { - "filename": "autogen/starknet/arg_processor/288b895dd4d5c29bfd5d1dec1a501aae621b1c406a4ee12ad9564927a72fa9fb.cairo" - }, - "parent_location": [ - { - "end_col": 52, - "end_line": 22, - "input_file": { - "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/interfaces.cairo" - }, - "start_col": 46, - "start_line": 22 - }, - "While handling calldata argument 'domain'" - ], - "start_col": 9, - "start_line": 14 - }, - "While expanding the reference 'domain_len' in:" - ], - "start_col": 28, - "start_line": 22 - } - }, - "238": { - "accessible_scopes": [ - "interfaces", - "interfaces.INaming", - "interfaces.INaming.domain_to_address" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 24, - "end_line": 14, - "input_file": { - "filename": "autogen/starknet/arg_processor/288b895dd4d5c29bfd5d1dec1a501aae621b1c406a4ee12ad9564927a72fa9fb.cairo" - }, - "parent_location": [ - { - "end_col": 52, - "end_line": 22, - "input_file": { - "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/interfaces.cairo" - }, - "start_col": 46, - "start_line": 22 - }, - "While handling calldata argument 'domain'" - ], - "start_col": 1, - "start_line": 11 - } - }, - "240": { - "accessible_scopes": [ - "interfaces", - "interfaces.INaming", - "interfaces.INaming.domain_to_address" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 42, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/contract_interface/INaming/domain_to_address/c7bccfe2278372ac44337810829ba4239dbbfdd698c174aa9639022183a1c840.cairo" - }, - "parent_location": [ - { - "end_col": 27, - "end_line": 22, - "input_file": { - "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/interfaces.cairo" - }, - "parent_location": [ - { - "end_col": 38, - "end_line": 42, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/starknet/common/syscalls.cairo" - }, - "parent_location": [ - { - "end_col": 33, - "end_line": 6, - "input_file": { - "filename": "autogen/starknet/contract_interface/INaming/domain_to_address/bf371099680e34ca6cf2304d3dbb8440b7edd177043cb2911538d9a8f3a352db.cairo" - }, - "parent_location": [ - { - "end_col": 27, - "end_line": 22, - "input_file": { - "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/interfaces.cairo" - }, - "start_col": 10, - "start_line": 22 - }, - "While handling contract interface function:" - ], - "start_col": 31, - "start_line": 2 - }, - "While trying to retrieve the implicit argument 'syscall_ptr' in:" - ], - "start_col": 20, - "start_line": 42 - }, - "While expanding the reference 'syscall_ptr' in:" - ], - "start_col": 10, - "start_line": 22 - }, - "While handling contract interface function:" - ], - "start_col": 24, - "start_line": 1 - } - }, - "241": { - "accessible_scopes": [ - "interfaces", - "interfaces.INaming", - "interfaces.INaming.domain_to_address" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 27, - "end_line": 2, - "input_file": { - "filename": "autogen/starknet/contract_interface/INaming/domain_to_address/c7bccfe2278372ac44337810829ba4239dbbfdd698c174aa9639022183a1c840.cairo" - }, - "parent_location": [ - { - "end_col": 27, - "end_line": 22, - "input_file": { - "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/interfaces.cairo" - }, - "parent_location": [ - { - "end_col": 38, - "end_line": 3, - "input_file": { - "filename": "autogen/starknet/contract_interface/INaming/domain_to_address/bf371099680e34ca6cf2304d3dbb8440b7edd177043cb2911538d9a8f3a352db.cairo" - }, - "parent_location": [ - { - "end_col": 27, - "end_line": 22, - "input_file": { - "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/interfaces.cairo" - }, - "start_col": 10, - "start_line": 22 - }, - "While handling contract interface function:" - ], - "start_col": 22, - "start_line": 3 - }, - "While expanding the reference 'contract_address' in:" - ], - "start_col": 10, - "start_line": 22 - }, - "While handling contract interface function:" - ], - "start_col": 5, - "start_line": 2 - } - }, - "242": { - "accessible_scopes": [ - "interfaces", - "interfaces.INaming", - "interfaces.INaming.domain_to_address" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 49, - "end_line": 4, - "input_file": { - "filename": "autogen/starknet/contract_interface/INaming/domain_to_address/bf371099680e34ca6cf2304d3dbb8440b7edd177043cb2911538d9a8f3a352db.cairo" - }, - "parent_location": [ - { - "end_col": 27, - "end_line": 22, - "input_file": { - "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/interfaces.cairo" - }, - "start_col": 10, - "start_line": 22 - }, - "While handling contract interface function:" - ], - "start_col": 23, - "start_line": 4 - } - }, - "244": { - "accessible_scopes": [ - "interfaces", - "interfaces.INaming", - "interfaces.INaming.domain_to_address" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 54, - "end_line": 5, - "input_file": { - "filename": "autogen/starknet/contract_interface/INaming/domain_to_address/bf371099680e34ca6cf2304d3dbb8440b7edd177043cb2911538d9a8f3a352db.cairo" - }, - "parent_location": [ - { - "end_col": 27, - "end_line": 22, - "input_file": { - "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/interfaces.cairo" - }, - "start_col": 10, - "start_line": 22 - }, - "While handling contract interface function:" - ], - "start_col": 19, - "start_line": 5 - } - }, - "245": { - "accessible_scopes": [ - "interfaces", - "interfaces.INaming", - "interfaces.INaming.domain_to_address" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 30, - "end_line": 3, - "input_file": { - "filename": "autogen/starknet/contract_interface/INaming/domain_to_address/64f7842b108e76706927b78270ac73c789c558c54431b3359e4441e63ec2a868.cairo" - }, - "parent_location": [ - { - "end_col": 27, - "end_line": 22, - "input_file": { - "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/interfaces.cairo" - }, - "parent_location": [ - { - "end_col": 32, - "end_line": 6, - "input_file": { - "filename": "autogen/starknet/contract_interface/INaming/domain_to_address/bf371099680e34ca6cf2304d3dbb8440b7edd177043cb2911538d9a8f3a352db.cairo" - }, - "parent_location": [ - { - "end_col": 27, - "end_line": 22, - "input_file": { - "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/interfaces.cairo" - }, - "start_col": 10, - "start_line": 22 - }, - "While handling contract interface function:" - ], - "start_col": 14, - "start_line": 6 - }, - "While expanding the reference 'calldata_ptr_start' in:" - ], - "start_col": 10, - "start_line": 22 - }, - "While handling contract interface function:" - ], - "start_col": 12, - "start_line": 3 - } - }, - "246": { - "accessible_scopes": [ - "interfaces", - "interfaces.INaming", - "interfaces.INaming.domain_to_address" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 33, - "end_line": 6, - "input_file": { - "filename": "autogen/starknet/contract_interface/INaming/domain_to_address/bf371099680e34ca6cf2304d3dbb8440b7edd177043cb2911538d9a8f3a352db.cairo" - }, - "parent_location": [ - { - "end_col": 27, - "end_line": 22, - "input_file": { - "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/interfaces.cairo" - }, - "start_col": 10, - "start_line": 22 - }, - "While handling contract interface function:" - ], - "start_col": 31, - "start_line": 2 - } - }, - "248": { - "accessible_scopes": [ - "interfaces", - "interfaces.INaming", - "interfaces.INaming.domain_to_address" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 48, - "end_line": 2, - "input_file": { - "filename": "autogen/starknet/arg_processor/4bc87a0745cafb7f774d18bc100e0d999cb382948c62740076908ead14382e84.cairo" - }, - "parent_location": [ - { - "end_col": 78, - "end_line": 22, - "input_file": { - "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/interfaces.cairo" - }, - "parent_location": [ - { - "end_col": 53, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/arg_processor/accb388bcbbace5b6218198851efaad2a781c1339e305a37fab51afe90a3194a.cairo" - }, - "parent_location": [ - { - "end_col": 27, - "end_line": 22, - "input_file": { - "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/interfaces.cairo" - }, - "parent_location": [ - { - "end_col": 49, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/arg_processor/96447016176d161dae83f414c4d3e33e78856e0ef69bc33f8d419f1c9b90f9c5.cairo" - }, - "parent_location": [ - { - "end_col": 27, - "end_line": 22, - "input_file": { - "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/interfaces.cairo" - }, - "start_col": 10, - "start_line": 22 - }, - "While handling return values of" - ], - "start_col": 23, - "start_line": 1 - }, - "While expanding the reference '__return_value_actual_size' in:" - ], - "start_col": 10, - "start_line": 22 - }, - "While handling return values of" - ], - "start_col": 35, - "start_line": 1 - }, - "While expanding the reference '__return_value_ptr' in:" - ], - "start_col": 65, - "start_line": 22 - }, - "While handling return value 'address'" - ], - "start_col": 26, - "start_line": 2 - } - }, - "250": { - "accessible_scopes": [ - "interfaces", - "interfaces.INaming", - "interfaces.INaming.domain_to_address" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 50, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/arg_processor/96447016176d161dae83f414c4d3e33e78856e0ef69bc33f8d419f1c9b90f9c5.cairo" - }, - "parent_location": [ - { - "end_col": 27, - "end_line": 22, - "input_file": { - "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/interfaces.cairo" - }, - "start_col": 10, - "start_line": 22 - }, - "While handling return values of" - ], - "start_col": 1, - "start_line": 1 - } - }, - "251": { - "accessible_scopes": [ - "interfaces", - "interfaces.INaming", - "interfaces.INaming.domain_to_address" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 38, - "end_line": 42, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/starknet/common/syscalls.cairo" - }, - "parent_location": [ - { - "end_col": 33, - "end_line": 6, - "input_file": { - "filename": "autogen/starknet/contract_interface/INaming/domain_to_address/bf371099680e34ca6cf2304d3dbb8440b7edd177043cb2911538d9a8f3a352db.cairo" - }, - "parent_location": [ - { - "end_col": 27, - "end_line": 22, - "input_file": { - "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/interfaces.cairo" - }, - "parent_location": [ - { - "end_col": 42, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/contract_interface/INaming/domain_to_address/c7bccfe2278372ac44337810829ba4239dbbfdd698c174aa9639022183a1c840.cairo" - }, - "parent_location": [ - { - "end_col": 27, - "end_line": 22, - "input_file": { - "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/interfaces.cairo" - }, - "parent_location": [ - { - "end_col": 46, - "end_line": 2, - "input_file": { - "filename": "autogen/starknet/contract_interface/INaming/domain_to_address/e5339f61923a643d588142dd246c0bb4d236017fbb005eafc3038bc09cc8cbbb.cairo" - }, - "parent_location": [ - { - "end_col": 27, - "end_line": 22, - "input_file": { - "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/interfaces.cairo" - }, - "start_col": 10, - "start_line": 22 - }, - "While handling contract interface function:" - ], - "start_col": 1, - "start_line": 2 - }, - "While trying to retrieve the implicit argument 'syscall_ptr' in:" - ], - "start_col": 10, - "start_line": 22 - }, - "While handling contract interface function:" - ], - "start_col": 24, - "start_line": 1 - }, - "While expanding the reference 'syscall_ptr' in:" - ], - "start_col": 10, - "start_line": 22 - }, - "While handling contract interface function:" - ], - "start_col": 31, - "start_line": 2 - }, - "While trying to update the implicit return value 'syscall_ptr' in:" - ], - "start_col": 20, - "start_line": 42 - } - }, - "252": { - "accessible_scopes": [ - "interfaces", - "interfaces.INaming", - "interfaces.INaming.domain_to_address" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 22, - "end_line": 5, - "input_file": { - "filename": "autogen/starknet/arg_processor/288b895dd4d5c29bfd5d1dec1a501aae621b1c406a4ee12ad9564927a72fa9fb.cairo" - }, - "parent_location": [ - { - "end_col": 52, - "end_line": 22, - "input_file": { - "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/interfaces.cairo" - }, - "parent_location": [ - { - "end_col": 59, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/contract_interface/INaming/domain_to_address/c7bccfe2278372ac44337810829ba4239dbbfdd698c174aa9639022183a1c840.cairo" - }, - "parent_location": [ - { - "end_col": 27, - "end_line": 22, - "input_file": { - "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/interfaces.cairo" - }, - "parent_location": [ - { - "end_col": 46, - "end_line": 2, - "input_file": { - "filename": "autogen/starknet/contract_interface/INaming/domain_to_address/e5339f61923a643d588142dd246c0bb4d236017fbb005eafc3038bc09cc8cbbb.cairo" - }, - "parent_location": [ - { - "end_col": 27, - "end_line": 22, - "input_file": { - "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/interfaces.cairo" - }, - "start_col": 10, - "start_line": 22 - }, - "While handling contract interface function:" - ], - "start_col": 1, - "start_line": 2 - }, - "While trying to retrieve the implicit argument 'range_check_ptr' in:" - ], - "start_col": 10, - "start_line": 22 - }, - "While handling contract interface function:" - ], - "start_col": 44, - "start_line": 1 - }, - "While expanding the reference 'range_check_ptr' in:" - ], - "start_col": 46, - "start_line": 22 - }, - "While handling calldata argument 'domain'" - ], - "start_col": 7, - "start_line": 5 - } - }, - "253": { - "accessible_scopes": [ - "interfaces", - "interfaces.INaming", - "interfaces.INaming.domain_to_address" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 54, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/arg_processor/4bc87a0745cafb7f774d18bc100e0d999cb382948c62740076908ead14382e84.cairo" - }, - "parent_location": [ - { - "end_col": 78, - "end_line": 22, - "input_file": { - "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/interfaces.cairo" - }, - "parent_location": [ - { - "end_col": 43, - "end_line": 2, - "input_file": { - "filename": "autogen/starknet/contract_interface/INaming/domain_to_address/e5339f61923a643d588142dd246c0bb4d236017fbb005eafc3038bc09cc8cbbb.cairo" - }, - "parent_location": [ - { - "end_col": 27, - "end_line": 22, - "input_file": { - "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/interfaces.cairo" - }, - "start_col": 10, - "start_line": 22 - }, - "While handling contract interface function:" - ], - "start_col": 17, - "start_line": 2 - }, - "While expanding the reference '__return_value_arg_address' in:" - ], - "start_col": 65, - "start_line": 22 - }, - "While handling return value 'address'" - ], - "start_col": 34, - "start_line": 1 - } - }, - "254": { - "accessible_scopes": [ - "interfaces", - "interfaces.INaming", - "interfaces.INaming.domain_to_address" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 46, - "end_line": 2, - "input_file": { - "filename": "autogen/starknet/contract_interface/INaming/domain_to_address/e5339f61923a643d588142dd246c0bb4d236017fbb005eafc3038bc09cc8cbbb.cairo" - }, - "parent_location": [ - { - "end_col": 27, - "end_line": 22, - "input_file": { - "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/interfaces.cairo" - }, - "start_col": 10, - "start_line": 22 - }, - "While handling contract interface function:" - ], - "start_col": 1, - "start_line": 2 - } - }, - "255": { - "accessible_scopes": [ - "interfaces", - "interfaces.INaming", - "interfaces.INaming.domain_to_token_id" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 14, - "end_line": 2, - "input_file": { - "filename": "autogen/starknet/contract_interface/INaming/domain_to_token_id/64f7842b108e76706927b78270ac73c789c558c54431b3359e4441e63ec2a868.cairo" - }, - "parent_location": [ - { - "end_col": 28, - "end_line": 31, - "input_file": { - "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/interfaces.cairo" - }, - "start_col": 10, - "start_line": 31 - }, - "While handling contract interface function:" - ], - "start_col": 1, - "start_line": 2 - } - }, - "257": { - "accessible_scopes": [ - "interfaces", - "interfaces.INaming", - "interfaces.INaming.domain_to_token_id" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 48, - "end_line": 3, - "input_file": { - "filename": "autogen/starknet/contract_interface/INaming/domain_to_token_id/64f7842b108e76706927b78270ac73c789c558c54431b3359e4441e63ec2a868.cairo" - }, - "parent_location": [ - { - "end_col": 28, - "end_line": 31, - "input_file": { - "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/interfaces.cairo" - }, - "start_col": 10, - "start_line": 31 - }, - "While handling contract interface function:" - ], - "start_col": 41, - "start_line": 3 - } - }, - "259": { - "accessible_scopes": [ - "interfaces", - "interfaces.INaming", - "interfaces.INaming.domain_to_token_id" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 37, - "end_line": 3, - "input_file": { - "filename": "autogen/starknet/contract_interface/INaming/domain_to_token_id/64f7842b108e76706927b78270ac73c789c558c54431b3359e4441e63ec2a868.cairo" - }, - "parent_location": [ - { - "end_col": 28, - "end_line": 31, - "input_file": { - "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/interfaces.cairo" - }, - "start_col": 10, - "start_line": 31 - }, - "While handling contract interface function:" - ], - "start_col": 6, - "start_line": 3 - } - }, - "260": { - "accessible_scopes": [ - "interfaces", - "interfaces.INaming", - "interfaces.INaming.domain_to_token_id" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 38, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/arg_processor/8339a6640c627e9911eb5c59bed25870348dede436b3d376cff72949db1f150a.cairo" - }, - "parent_location": [ - { - "end_col": 39, - "end_line": 31, - "input_file": { - "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/interfaces.cairo" - }, - "start_col": 29, - "start_line": 31 - }, - "While handling calldata argument 'domain_len'" - ], - "start_col": 1, - "start_line": 1 - } - }, - "261": { - "accessible_scopes": [ - "interfaces", - "interfaces.INaming", - "interfaces.INaming.domain_to_token_id" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 39, - "end_line": 2, - "input_file": { - "filename": "autogen/starknet/arg_processor/288b895dd4d5c29bfd5d1dec1a501aae621b1c406a4ee12ad9564927a72fa9fb.cairo" - }, - "parent_location": [ - { - "end_col": 53, - "end_line": 31, - "input_file": { - "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/interfaces.cairo" - }, - "start_col": 47, - "start_line": 31 - }, - "While handling calldata argument 'domain'" - ], - "start_col": 1, - "start_line": 2 - } - }, - "262": { - "accessible_scopes": [ - "interfaces", - "interfaces.INaming", - "interfaces.INaming.domain_to_token_id" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 45, - "end_line": 5, - "input_file": { - "filename": "autogen/starknet/arg_processor/288b895dd4d5c29bfd5d1dec1a501aae621b1c406a4ee12ad9564927a72fa9fb.cairo" - }, - "parent_location": [ - { - "end_col": 53, - "end_line": 31, - "input_file": { - "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/interfaces.cairo" - }, - "start_col": 47, - "start_line": 31 - }, - "While handling calldata argument 'domain'" - ], - "start_col": 1, - "start_line": 5 - } - }, - "264": { - "accessible_scopes": [ - "interfaces", - "interfaces.INaming", - "interfaces.INaming.domain_to_token_id" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 40, - "end_line": 2, - "input_file": { - "filename": "autogen/starknet/arg_processor/8339a6640c627e9911eb5c59bed25870348dede436b3d376cff72949db1f150a.cairo" - }, - "parent_location": [ - { - "end_col": 39, - "end_line": 31, - "input_file": { - "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/interfaces.cairo" - }, - "parent_location": [ - { - "end_col": 45, - "end_line": 10, - "input_file": { - "filename": "autogen/starknet/arg_processor/288b895dd4d5c29bfd5d1dec1a501aae621b1c406a4ee12ad9564927a72fa9fb.cairo" - }, - "parent_location": [ - { - "end_col": 53, - "end_line": 31, - "input_file": { - "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/interfaces.cairo" - }, - "start_col": 47, - "start_line": 31 - }, - "While handling calldata argument 'domain'" - ], - "start_col": 31, - "start_line": 10 - }, - "While expanding the reference '__calldata_ptr' in:" - ], - "start_col": 29, - "start_line": 31 - }, - "While handling calldata argument 'domain_len'" - ], - "start_col": 22, - "start_line": 2 - } - }, - "266": { - "accessible_scopes": [ - "interfaces", - "interfaces.INaming", - "interfaces.INaming.domain_to_token_id" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 63, - "end_line": 10, - "input_file": { - "filename": "autogen/starknet/arg_processor/288b895dd4d5c29bfd5d1dec1a501aae621b1c406a4ee12ad9564927a72fa9fb.cairo" - }, - "parent_location": [ - { - "end_col": 53, - "end_line": 31, - "input_file": { - "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/interfaces.cairo" - }, - "start_col": 47, - "start_line": 31 - }, - "While handling calldata argument 'domain'" - ], - "start_col": 1, - "start_line": 10 - } - }, - "267": { - "accessible_scopes": [ - "interfaces", - "interfaces.INaming", - "interfaces.INaming.domain_to_token_id" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 40, - "end_line": 2, - "input_file": { - "filename": "autogen/starknet/arg_processor/8339a6640c627e9911eb5c59bed25870348dede436b3d376cff72949db1f150a.cairo" - }, - "parent_location": [ - { - "end_col": 39, - "end_line": 31, - "input_file": { - "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/interfaces.cairo" - }, - "parent_location": [ - { - "end_col": 41, - "end_line": 7, - "input_file": { - "filename": "autogen/starknet/arg_processor/288b895dd4d5c29bfd5d1dec1a501aae621b1c406a4ee12ad9564927a72fa9fb.cairo" - }, - "parent_location": [ - { - "end_col": 53, - "end_line": 31, - "input_file": { - "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/interfaces.cairo" - }, - "parent_location": [ - { - "end_col": 28, - "end_line": 12, - "input_file": { - "filename": "autogen/starknet/arg_processor/288b895dd4d5c29bfd5d1dec1a501aae621b1c406a4ee12ad9564927a72fa9fb.cairo" - }, - "parent_location": [ - { - "end_col": 53, - "end_line": 31, - "input_file": { - "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/interfaces.cairo" - }, - "start_col": 47, - "start_line": 31 - }, - "While handling calldata argument 'domain'" - ], - "start_col": 9, - "start_line": 12 - }, - "While expanding the reference '__calldata_ptr_copy' in:" - ], - "start_col": 47, - "start_line": 31 - }, - "While handling calldata argument 'domain'" - ], - "start_col": 27, - "start_line": 7 - }, - "While expanding the reference '__calldata_ptr' in:" - ], - "start_col": 29, - "start_line": 31 - }, - "While handling calldata argument 'domain_len'" - ], - "start_col": 22, - "start_line": 2 - } - }, - "269": { - "accessible_scopes": [ - "interfaces", - "interfaces.INaming", - "interfaces.INaming.domain_to_token_id" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 60, - "end_line": 31, - "input_file": { - "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/interfaces.cairo" - }, - "parent_location": [ - { - "end_col": 15, - "end_line": 13, - "input_file": { - "filename": "autogen/starknet/arg_processor/288b895dd4d5c29bfd5d1dec1a501aae621b1c406a4ee12ad9564927a72fa9fb.cairo" - }, - "parent_location": [ - { - "end_col": 53, - "end_line": 31, - "input_file": { - "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/interfaces.cairo" - }, - "start_col": 47, - "start_line": 31 - }, - "While handling calldata argument 'domain'" - ], - "start_col": 9, - "start_line": 13 - }, - "While expanding the reference 'domain' in:" - ], - "start_col": 47, - "start_line": 31 - } - }, - "270": { - "accessible_scopes": [ - "interfaces", - "interfaces.INaming", - "interfaces.INaming.domain_to_token_id" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 45, - "end_line": 31, - "input_file": { - "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/interfaces.cairo" - }, - "parent_location": [ - { - "end_col": 19, - "end_line": 14, - "input_file": { - "filename": "autogen/starknet/arg_processor/288b895dd4d5c29bfd5d1dec1a501aae621b1c406a4ee12ad9564927a72fa9fb.cairo" - }, - "parent_location": [ - { - "end_col": 53, - "end_line": 31, - "input_file": { - "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/interfaces.cairo" - }, - "start_col": 47, - "start_line": 31 - }, - "While handling calldata argument 'domain'" - ], - "start_col": 9, - "start_line": 14 - }, - "While expanding the reference 'domain_len' in:" - ], - "start_col": 29, - "start_line": 31 - } - }, - "271": { - "accessible_scopes": [ - "interfaces", - "interfaces.INaming", - "interfaces.INaming.domain_to_token_id" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 24, - "end_line": 14, - "input_file": { - "filename": "autogen/starknet/arg_processor/288b895dd4d5c29bfd5d1dec1a501aae621b1c406a4ee12ad9564927a72fa9fb.cairo" - }, - "parent_location": [ - { - "end_col": 53, - "end_line": 31, - "input_file": { - "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/interfaces.cairo" - }, - "start_col": 47, - "start_line": 31 - }, - "While handling calldata argument 'domain'" - ], - "start_col": 1, - "start_line": 11 - } - }, - "273": { - "accessible_scopes": [ - "interfaces", - "interfaces.INaming", - "interfaces.INaming.domain_to_token_id" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 43, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/contract_interface/INaming/domain_to_token_id/910d281591f877ec93ccb04ae97a6bd968ac0de23e7f59b370fc45289866e4d4.cairo" - }, - "parent_location": [ - { - "end_col": 28, - "end_line": 31, - "input_file": { - "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/interfaces.cairo" - }, - "parent_location": [ - { - "end_col": 38, - "end_line": 42, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/starknet/common/syscalls.cairo" - }, - "parent_location": [ - { - "end_col": 33, - "end_line": 6, - "input_file": { - "filename": "autogen/starknet/contract_interface/INaming/domain_to_token_id/f27c943c049e684cf6ef28088e39c8bbdc73f90eb3516b19115b01ca89603a57.cairo" - }, - "parent_location": [ - { - "end_col": 28, - "end_line": 31, - "input_file": { - "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/interfaces.cairo" - }, - "start_col": 10, - "start_line": 31 - }, - "While handling contract interface function:" - ], - "start_col": 31, - "start_line": 2 - }, - "While trying to retrieve the implicit argument 'syscall_ptr' in:" - ], - "start_col": 20, - "start_line": 42 - }, - "While expanding the reference 'syscall_ptr' in:" - ], - "start_col": 10, - "start_line": 31 - }, - "While handling contract interface function:" - ], - "start_col": 25, - "start_line": 1 - } - }, - "274": { - "accessible_scopes": [ - "interfaces", - "interfaces.INaming", - "interfaces.INaming.domain_to_token_id" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 27, - "end_line": 2, - "input_file": { - "filename": "autogen/starknet/contract_interface/INaming/domain_to_token_id/910d281591f877ec93ccb04ae97a6bd968ac0de23e7f59b370fc45289866e4d4.cairo" - }, - "parent_location": [ - { - "end_col": 28, - "end_line": 31, - "input_file": { - "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/interfaces.cairo" - }, - "parent_location": [ - { - "end_col": 38, - "end_line": 3, - "input_file": { - "filename": "autogen/starknet/contract_interface/INaming/domain_to_token_id/f27c943c049e684cf6ef28088e39c8bbdc73f90eb3516b19115b01ca89603a57.cairo" - }, - "parent_location": [ - { - "end_col": 28, - "end_line": 31, - "input_file": { - "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/interfaces.cairo" - }, - "start_col": 10, - "start_line": 31 - }, - "While handling contract interface function:" - ], - "start_col": 22, - "start_line": 3 - }, - "While expanding the reference 'contract_address' in:" - ], - "start_col": 10, - "start_line": 31 - }, - "While handling contract interface function:" - ], - "start_col": 5, - "start_line": 2 - } - }, - "275": { - "accessible_scopes": [ - "interfaces", - "interfaces.INaming", - "interfaces.INaming.domain_to_token_id" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 50, - "end_line": 4, - "input_file": { - "filename": "autogen/starknet/contract_interface/INaming/domain_to_token_id/f27c943c049e684cf6ef28088e39c8bbdc73f90eb3516b19115b01ca89603a57.cairo" - }, - "parent_location": [ - { - "end_col": 28, - "end_line": 31, - "input_file": { - "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/interfaces.cairo" - }, - "start_col": 10, - "start_line": 31 - }, - "While handling contract interface function:" - ], - "start_col": 23, - "start_line": 4 - } - }, - "277": { - "accessible_scopes": [ - "interfaces", - "interfaces.INaming", - "interfaces.INaming.domain_to_token_id" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 54, - "end_line": 5, - "input_file": { - "filename": "autogen/starknet/contract_interface/INaming/domain_to_token_id/f27c943c049e684cf6ef28088e39c8bbdc73f90eb3516b19115b01ca89603a57.cairo" - }, - "parent_location": [ - { - "end_col": 28, - "end_line": 31, - "input_file": { - "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/interfaces.cairo" - }, - "start_col": 10, - "start_line": 31 - }, - "While handling contract interface function:" - ], - "start_col": 19, - "start_line": 5 - } - }, - "278": { - "accessible_scopes": [ - "interfaces", - "interfaces.INaming", - "interfaces.INaming.domain_to_token_id" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 30, - "end_line": 3, - "input_file": { - "filename": "autogen/starknet/contract_interface/INaming/domain_to_token_id/64f7842b108e76706927b78270ac73c789c558c54431b3359e4441e63ec2a868.cairo" - }, - "parent_location": [ - { - "end_col": 28, - "end_line": 31, - "input_file": { - "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/interfaces.cairo" - }, - "parent_location": [ - { - "end_col": 32, - "end_line": 6, - "input_file": { - "filename": "autogen/starknet/contract_interface/INaming/domain_to_token_id/f27c943c049e684cf6ef28088e39c8bbdc73f90eb3516b19115b01ca89603a57.cairo" - }, - "parent_location": [ - { - "end_col": 28, - "end_line": 31, - "input_file": { - "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/interfaces.cairo" - }, - "start_col": 10, - "start_line": 31 - }, - "While handling contract interface function:" - ], - "start_col": 14, - "start_line": 6 - }, - "While expanding the reference 'calldata_ptr_start' in:" - ], - "start_col": 10, - "start_line": 31 - }, - "While handling contract interface function:" - ], - "start_col": 12, - "start_line": 3 - } - }, - "279": { - "accessible_scopes": [ - "interfaces", - "interfaces.INaming", - "interfaces.INaming.domain_to_token_id" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 33, - "end_line": 6, - "input_file": { - "filename": "autogen/starknet/contract_interface/INaming/domain_to_token_id/f27c943c049e684cf6ef28088e39c8bbdc73f90eb3516b19115b01ca89603a57.cairo" - }, - "parent_location": [ - { - "end_col": 28, - "end_line": 31, - "input_file": { - "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/interfaces.cairo" - }, - "start_col": 10, - "start_line": 31 - }, - "While handling contract interface function:" - ], - "start_col": 31, - "start_line": 2 - } - }, - "281": { - "accessible_scopes": [ - "interfaces", - "interfaces.INaming", - "interfaces.INaming.domain_to_token_id" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 48, - "end_line": 2, - "input_file": { - "filename": "autogen/starknet/arg_processor/b7edf9a707658e9625a029e4f8ceaf32e1a47f454aa4132472642fd2ef404947.cairo" - }, - "parent_location": [ - { - "end_col": 77, - "end_line": 31, - "input_file": { - "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/interfaces.cairo" - }, - "parent_location": [ - { - "end_col": 53, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/arg_processor/accb388bcbbace5b6218198851efaad2a781c1339e305a37fab51afe90a3194a.cairo" - }, - "parent_location": [ - { - "end_col": 28, - "end_line": 31, - "input_file": { - "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/interfaces.cairo" - }, - "parent_location": [ - { - "end_col": 49, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/arg_processor/96447016176d161dae83f414c4d3e33e78856e0ef69bc33f8d419f1c9b90f9c5.cairo" - }, - "parent_location": [ - { - "end_col": 28, - "end_line": 31, - "input_file": { - "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/interfaces.cairo" - }, - "start_col": 10, - "start_line": 31 - }, - "While handling return values of" - ], - "start_col": 23, - "start_line": 1 - }, - "While expanding the reference '__return_value_actual_size' in:" - ], - "start_col": 10, - "start_line": 31 - }, - "While handling return values of" - ], - "start_col": 35, - "start_line": 1 - }, - "While expanding the reference '__return_value_ptr' in:" - ], - "start_col": 66, - "start_line": 31 - }, - "While handling return value 'owner'" - ], - "start_col": 26, - "start_line": 2 - } - }, - "283": { - "accessible_scopes": [ - "interfaces", - "interfaces.INaming", - "interfaces.INaming.domain_to_token_id" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 50, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/arg_processor/96447016176d161dae83f414c4d3e33e78856e0ef69bc33f8d419f1c9b90f9c5.cairo" - }, - "parent_location": [ - { - "end_col": 28, - "end_line": 31, - "input_file": { - "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/interfaces.cairo" - }, - "start_col": 10, - "start_line": 31 - }, - "While handling return values of" - ], - "start_col": 1, - "start_line": 1 - } - }, - "284": { - "accessible_scopes": [ - "interfaces", - "interfaces.INaming", - "interfaces.INaming.domain_to_token_id" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 38, - "end_line": 42, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/starknet/common/syscalls.cairo" - }, - "parent_location": [ - { - "end_col": 33, - "end_line": 6, - "input_file": { - "filename": "autogen/starknet/contract_interface/INaming/domain_to_token_id/f27c943c049e684cf6ef28088e39c8bbdc73f90eb3516b19115b01ca89603a57.cairo" - }, - "parent_location": [ - { - "end_col": 28, - "end_line": 31, - "input_file": { - "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/interfaces.cairo" - }, - "parent_location": [ - { - "end_col": 43, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/contract_interface/INaming/domain_to_token_id/910d281591f877ec93ccb04ae97a6bd968ac0de23e7f59b370fc45289866e4d4.cairo" - }, - "parent_location": [ - { - "end_col": 28, - "end_line": 31, - "input_file": { - "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/interfaces.cairo" - }, - "parent_location": [ - { - "end_col": 42, - "end_line": 2, - "input_file": { - "filename": "autogen/starknet/contract_interface/INaming/domain_to_token_id/fca49af674c76ce3d2f65b1e9d948f7383b8387a04ac56bc19679709d3c57b4e.cairo" - }, - "parent_location": [ - { - "end_col": 28, - "end_line": 31, - "input_file": { - "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/interfaces.cairo" - }, - "start_col": 10, - "start_line": 31 - }, - "While handling contract interface function:" - ], - "start_col": 1, - "start_line": 2 - }, - "While trying to retrieve the implicit argument 'syscall_ptr' in:" - ], - "start_col": 10, - "start_line": 31 - }, - "While handling contract interface function:" - ], - "start_col": 25, - "start_line": 1 - }, - "While expanding the reference 'syscall_ptr' in:" - ], - "start_col": 10, - "start_line": 31 - }, - "While handling contract interface function:" - ], - "start_col": 31, - "start_line": 2 - }, - "While trying to update the implicit return value 'syscall_ptr' in:" - ], - "start_col": 20, - "start_line": 42 - } - }, - "285": { - "accessible_scopes": [ - "interfaces", - "interfaces.INaming", - "interfaces.INaming.domain_to_token_id" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 22, - "end_line": 5, - "input_file": { - "filename": "autogen/starknet/arg_processor/288b895dd4d5c29bfd5d1dec1a501aae621b1c406a4ee12ad9564927a72fa9fb.cairo" - }, - "parent_location": [ - { - "end_col": 53, - "end_line": 31, - "input_file": { - "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/interfaces.cairo" - }, - "parent_location": [ - { - "end_col": 60, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/contract_interface/INaming/domain_to_token_id/910d281591f877ec93ccb04ae97a6bd968ac0de23e7f59b370fc45289866e4d4.cairo" - }, - "parent_location": [ - { - "end_col": 28, - "end_line": 31, - "input_file": { - "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/interfaces.cairo" - }, - "parent_location": [ - { - "end_col": 42, - "end_line": 2, - "input_file": { - "filename": "autogen/starknet/contract_interface/INaming/domain_to_token_id/fca49af674c76ce3d2f65b1e9d948f7383b8387a04ac56bc19679709d3c57b4e.cairo" - }, - "parent_location": [ - { - "end_col": 28, - "end_line": 31, - "input_file": { - "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/interfaces.cairo" - }, - "start_col": 10, - "start_line": 31 - }, - "While handling contract interface function:" - ], - "start_col": 1, - "start_line": 2 - }, - "While trying to retrieve the implicit argument 'range_check_ptr' in:" - ], - "start_col": 10, - "start_line": 31 - }, - "While handling contract interface function:" - ], - "start_col": 45, - "start_line": 1 - }, - "While expanding the reference 'range_check_ptr' in:" - ], - "start_col": 47, - "start_line": 31 - }, - "While handling calldata argument 'domain'" - ], - "start_col": 7, - "start_line": 5 - } - }, - "286": { - "accessible_scopes": [ - "interfaces", - "interfaces.INaming", - "interfaces.INaming.domain_to_token_id" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 52, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/arg_processor/b7edf9a707658e9625a029e4f8ceaf32e1a47f454aa4132472642fd2ef404947.cairo" - }, - "parent_location": [ - { - "end_col": 77, - "end_line": 31, - "input_file": { - "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/interfaces.cairo" - }, - "parent_location": [ - { - "end_col": 39, - "end_line": 2, - "input_file": { - "filename": "autogen/starknet/contract_interface/INaming/domain_to_token_id/fca49af674c76ce3d2f65b1e9d948f7383b8387a04ac56bc19679709d3c57b4e.cairo" - }, - "parent_location": [ - { - "end_col": 28, - "end_line": 31, - "input_file": { - "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/interfaces.cairo" - }, - "start_col": 10, - "start_line": 31 - }, - "While handling contract interface function:" - ], - "start_col": 15, - "start_line": 2 - }, - "While expanding the reference '__return_value_arg_owner' in:" - ], - "start_col": 66, - "start_line": 31 - }, - "While handling return value 'owner'" - ], - "start_col": 32, - "start_line": 1 - } - }, - "287": { - "accessible_scopes": [ - "interfaces", - "interfaces.INaming", - "interfaces.INaming.domain_to_token_id" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 42, - "end_line": 2, - "input_file": { - "filename": "autogen/starknet/contract_interface/INaming/domain_to_token_id/fca49af674c76ce3d2f65b1e9d948f7383b8387a04ac56bc19679709d3c57b4e.cairo" - }, - "parent_location": [ - { - "end_col": 28, - "end_line": 31, - "input_file": { - "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/interfaces.cairo" - }, - "start_col": 10, - "start_line": 31 - }, - "While handling contract interface function:" - ], - "start_col": 1, - "start_line": 2 - } - }, - "288": { - "accessible_scopes": [ - "interfaces", - "interfaces.INaming", - "interfaces.INaming.set_domain_to_address" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 14, - "end_line": 2, - "input_file": { - "filename": "autogen/starknet/contract_interface/INaming/set_domain_to_address/64f7842b108e76706927b78270ac73c789c558c54431b3359e4441e63ec2a868.cairo" - }, - "parent_location": [ - { - "end_col": 31, - "end_line": 36, - "input_file": { - "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/interfaces.cairo" - }, - "start_col": 10, - "start_line": 36 - }, - "While handling contract interface function:" - ], - "start_col": 1, - "start_line": 2 - } - }, - "290": { - "accessible_scopes": [ - "interfaces", - "interfaces.INaming", - "interfaces.INaming.set_domain_to_address" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 48, - "end_line": 3, - "input_file": { - "filename": "autogen/starknet/contract_interface/INaming/set_domain_to_address/64f7842b108e76706927b78270ac73c789c558c54431b3359e4441e63ec2a868.cairo" - }, - "parent_location": [ - { - "end_col": 31, - "end_line": 36, - "input_file": { - "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/interfaces.cairo" - }, - "start_col": 10, - "start_line": 36 - }, - "While handling contract interface function:" - ], - "start_col": 41, - "start_line": 3 - } - }, - "292": { - "accessible_scopes": [ - "interfaces", - "interfaces.INaming", - "interfaces.INaming.set_domain_to_address" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 37, - "end_line": 3, - "input_file": { - "filename": "autogen/starknet/contract_interface/INaming/set_domain_to_address/64f7842b108e76706927b78270ac73c789c558c54431b3359e4441e63ec2a868.cairo" - }, - "parent_location": [ - { - "end_col": 31, - "end_line": 36, - "input_file": { - "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/interfaces.cairo" - }, - "start_col": 10, - "start_line": 36 - }, - "While handling contract interface function:" - ], - "start_col": 6, - "start_line": 3 - } - }, - "293": { - "accessible_scopes": [ - "interfaces", - "interfaces.INaming", - "interfaces.INaming.set_domain_to_address" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 38, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/arg_processor/8339a6640c627e9911eb5c59bed25870348dede436b3d376cff72949db1f150a.cairo" - }, - "parent_location": [ - { - "end_col": 42, - "end_line": 36, - "input_file": { - "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/interfaces.cairo" - }, - "start_col": 32, - "start_line": 36 - }, - "While handling calldata argument 'domain_len'" - ], - "start_col": 1, - "start_line": 1 - } - }, - "294": { - "accessible_scopes": [ - "interfaces", - "interfaces.INaming", - "interfaces.INaming.set_domain_to_address" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 39, - "end_line": 2, - "input_file": { - "filename": "autogen/starknet/arg_processor/288b895dd4d5c29bfd5d1dec1a501aae621b1c406a4ee12ad9564927a72fa9fb.cairo" - }, - "parent_location": [ - { - "end_col": 56, - "end_line": 36, - "input_file": { - "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/interfaces.cairo" - }, - "start_col": 50, - "start_line": 36 - }, - "While handling calldata argument 'domain'" - ], - "start_col": 1, - "start_line": 2 - } - }, - "295": { - "accessible_scopes": [ - "interfaces", - "interfaces.INaming", - "interfaces.INaming.set_domain_to_address" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 45, - "end_line": 5, - "input_file": { - "filename": "autogen/starknet/arg_processor/288b895dd4d5c29bfd5d1dec1a501aae621b1c406a4ee12ad9564927a72fa9fb.cairo" - }, - "parent_location": [ - { - "end_col": 56, - "end_line": 36, - "input_file": { - "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/interfaces.cairo" - }, - "start_col": 50, - "start_line": 36 - }, - "While handling calldata argument 'domain'" - ], - "start_col": 1, - "start_line": 5 - } - }, - "297": { - "accessible_scopes": [ - "interfaces", - "interfaces.INaming", - "interfaces.INaming.set_domain_to_address" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 40, - "end_line": 2, - "input_file": { - "filename": "autogen/starknet/arg_processor/8339a6640c627e9911eb5c59bed25870348dede436b3d376cff72949db1f150a.cairo" - }, - "parent_location": [ - { - "end_col": 42, - "end_line": 36, - "input_file": { - "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/interfaces.cairo" - }, - "parent_location": [ - { - "end_col": 45, - "end_line": 10, - "input_file": { - "filename": "autogen/starknet/arg_processor/288b895dd4d5c29bfd5d1dec1a501aae621b1c406a4ee12ad9564927a72fa9fb.cairo" - }, - "parent_location": [ - { - "end_col": 56, - "end_line": 36, - "input_file": { - "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/interfaces.cairo" - }, - "start_col": 50, - "start_line": 36 - }, - "While handling calldata argument 'domain'" - ], - "start_col": 31, - "start_line": 10 - }, - "While expanding the reference '__calldata_ptr' in:" - ], - "start_col": 32, - "start_line": 36 - }, - "While handling calldata argument 'domain_len'" - ], - "start_col": 22, - "start_line": 2 - } - }, - "299": { - "accessible_scopes": [ - "interfaces", - "interfaces.INaming", - "interfaces.INaming.set_domain_to_address" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 63, - "end_line": 10, - "input_file": { - "filename": "autogen/starknet/arg_processor/288b895dd4d5c29bfd5d1dec1a501aae621b1c406a4ee12ad9564927a72fa9fb.cairo" - }, - "parent_location": [ - { - "end_col": 56, - "end_line": 36, - "input_file": { - "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/interfaces.cairo" - }, - "start_col": 50, - "start_line": 36 - }, - "While handling calldata argument 'domain'" - ], - "start_col": 1, - "start_line": 10 - } - }, - "300": { - "accessible_scopes": [ - "interfaces", - "interfaces.INaming", - "interfaces.INaming.set_domain_to_address" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 40, - "end_line": 2, - "input_file": { - "filename": "autogen/starknet/arg_processor/8339a6640c627e9911eb5c59bed25870348dede436b3d376cff72949db1f150a.cairo" - }, - "parent_location": [ - { - "end_col": 42, - "end_line": 36, - "input_file": { - "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/interfaces.cairo" - }, - "parent_location": [ - { - "end_col": 41, - "end_line": 7, - "input_file": { - "filename": "autogen/starknet/arg_processor/288b895dd4d5c29bfd5d1dec1a501aae621b1c406a4ee12ad9564927a72fa9fb.cairo" - }, - "parent_location": [ - { - "end_col": 56, - "end_line": 36, - "input_file": { - "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/interfaces.cairo" - }, - "parent_location": [ - { - "end_col": 28, - "end_line": 12, - "input_file": { - "filename": "autogen/starknet/arg_processor/288b895dd4d5c29bfd5d1dec1a501aae621b1c406a4ee12ad9564927a72fa9fb.cairo" - }, - "parent_location": [ - { - "end_col": 56, - "end_line": 36, - "input_file": { - "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/interfaces.cairo" - }, - "start_col": 50, - "start_line": 36 - }, - "While handling calldata argument 'domain'" - ], - "start_col": 9, - "start_line": 12 - }, - "While expanding the reference '__calldata_ptr_copy' in:" - ], - "start_col": 50, - "start_line": 36 - }, - "While handling calldata argument 'domain'" - ], - "start_col": 27, - "start_line": 7 - }, - "While expanding the reference '__calldata_ptr' in:" - ], - "start_col": 32, - "start_line": 36 - }, - "While handling calldata argument 'domain_len'" - ], - "start_col": 22, - "start_line": 2 - } - }, - "302": { - "accessible_scopes": [ - "interfaces", - "interfaces.INaming", - "interfaces.INaming.set_domain_to_address" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 63, - "end_line": 36, - "input_file": { - "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/interfaces.cairo" - }, - "parent_location": [ - { - "end_col": 15, - "end_line": 13, - "input_file": { - "filename": "autogen/starknet/arg_processor/288b895dd4d5c29bfd5d1dec1a501aae621b1c406a4ee12ad9564927a72fa9fb.cairo" - }, - "parent_location": [ - { - "end_col": 56, - "end_line": 36, - "input_file": { - "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/interfaces.cairo" - }, - "start_col": 50, - "start_line": 36 - }, - "While handling calldata argument 'domain'" - ], - "start_col": 9, - "start_line": 13 - }, - "While expanding the reference 'domain' in:" - ], - "start_col": 50, - "start_line": 36 - } - }, - "303": { - "accessible_scopes": [ - "interfaces", - "interfaces.INaming", - "interfaces.INaming.set_domain_to_address" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 48, - "end_line": 36, - "input_file": { - "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/interfaces.cairo" - }, - "parent_location": [ - { - "end_col": 19, - "end_line": 14, - "input_file": { - "filename": "autogen/starknet/arg_processor/288b895dd4d5c29bfd5d1dec1a501aae621b1c406a4ee12ad9564927a72fa9fb.cairo" - }, - "parent_location": [ - { - "end_col": 56, - "end_line": 36, - "input_file": { - "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/interfaces.cairo" - }, - "start_col": 50, - "start_line": 36 - }, - "While handling calldata argument 'domain'" - ], - "start_col": 9, - "start_line": 14 - }, - "While expanding the reference 'domain_len' in:" - ], - "start_col": 32, - "start_line": 36 - } - }, - "304": { - "accessible_scopes": [ - "interfaces", - "interfaces.INaming", - "interfaces.INaming.set_domain_to_address" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 24, - "end_line": 14, - "input_file": { - "filename": "autogen/starknet/arg_processor/288b895dd4d5c29bfd5d1dec1a501aae621b1c406a4ee12ad9564927a72fa9fb.cairo" - }, - "parent_location": [ - { - "end_col": 56, - "end_line": 36, - "input_file": { - "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/interfaces.cairo" - }, - "start_col": 50, - "start_line": 36 - }, - "While handling calldata argument 'domain'" - ], - "start_col": 1, - "start_line": 11 - } - }, - "306": { - "accessible_scopes": [ - "interfaces", - "interfaces.INaming", - "interfaces.INaming.set_domain_to_address" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 35, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/arg_processor/53f1a6139553b3ccccc557cc464dc3ef40218c3505fcd39eef55d3609f01686d.cairo" - }, - "parent_location": [ - { - "end_col": 72, - "end_line": 36, - "input_file": { - "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/interfaces.cairo" - }, - "start_col": 65, - "start_line": 36 - }, - "While handling calldata argument 'address'" - ], - "start_col": 1, - "start_line": 1 - } - }, - "307": { - "accessible_scopes": [ - "interfaces", - "interfaces.INaming", - "interfaces.INaming.set_domain_to_address" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 40, - "end_line": 2, - "input_file": { - "filename": "autogen/starknet/arg_processor/53f1a6139553b3ccccc557cc464dc3ef40218c3505fcd39eef55d3609f01686d.cairo" - }, - "parent_location": [ - { - "end_col": 72, - "end_line": 36, - "input_file": { - "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/interfaces.cairo" - }, - "parent_location": [ - { - "end_col": 33, - "end_line": 5, - "input_file": { - "filename": "autogen/starknet/contract_interface/INaming/set_domain_to_address/6e3b2c7c15122d95bbbeb78003d636384c46739a2b98448d090ded5c462510f6.cairo" - }, - "parent_location": [ - { - "end_col": 31, - "end_line": 36, - "input_file": { - "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/interfaces.cairo" - }, - "start_col": 10, - "start_line": 36 - }, - "While handling contract interface function:" - ], - "start_col": 19, - "start_line": 5 - }, - "While expanding the reference '__calldata_ptr' in:" - ], - "start_col": 65, - "start_line": 36 - }, - "While handling calldata argument 'address'" - ], - "start_col": 22, - "start_line": 2 - } - }, - "309": { - "accessible_scopes": [ - "interfaces", - "interfaces.INaming", - "interfaces.INaming.set_domain_to_address" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 46, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/contract_interface/INaming/set_domain_to_address/b4a44cbba6decc6ac9fe1e03d0dcd9303042497629db7b6313ce132db96dfe50.cairo" - }, - "parent_location": [ - { - "end_col": 31, - "end_line": 36, - "input_file": { - "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/interfaces.cairo" - }, - "parent_location": [ - { - "end_col": 38, - "end_line": 42, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/starknet/common/syscalls.cairo" - }, - "parent_location": [ - { - "end_col": 33, - "end_line": 6, - "input_file": { - "filename": "autogen/starknet/contract_interface/INaming/set_domain_to_address/6e3b2c7c15122d95bbbeb78003d636384c46739a2b98448d090ded5c462510f6.cairo" - }, - "parent_location": [ - { - "end_col": 31, - "end_line": 36, - "input_file": { - "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/interfaces.cairo" - }, - "start_col": 10, - "start_line": 36 - }, - "While handling contract interface function:" - ], - "start_col": 31, - "start_line": 2 - }, - "While trying to retrieve the implicit argument 'syscall_ptr' in:" - ], - "start_col": 20, - "start_line": 42 - }, - "While expanding the reference 'syscall_ptr' in:" - ], - "start_col": 10, - "start_line": 36 - }, - "While handling contract interface function:" - ], - "start_col": 28, - "start_line": 1 - } - }, - "310": { - "accessible_scopes": [ - "interfaces", - "interfaces.INaming", - "interfaces.INaming.set_domain_to_address" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 27, - "end_line": 2, - "input_file": { - "filename": "autogen/starknet/contract_interface/INaming/set_domain_to_address/b4a44cbba6decc6ac9fe1e03d0dcd9303042497629db7b6313ce132db96dfe50.cairo" - }, - "parent_location": [ - { - "end_col": 31, - "end_line": 36, - "input_file": { - "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/interfaces.cairo" - }, - "parent_location": [ - { - "end_col": 38, - "end_line": 3, - "input_file": { - "filename": "autogen/starknet/contract_interface/INaming/set_domain_to_address/6e3b2c7c15122d95bbbeb78003d636384c46739a2b98448d090ded5c462510f6.cairo" - }, - "parent_location": [ - { - "end_col": 31, - "end_line": 36, - "input_file": { - "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/interfaces.cairo" - }, - "start_col": 10, - "start_line": 36 - }, - "While handling contract interface function:" - ], - "start_col": 22, - "start_line": 3 - }, - "While expanding the reference 'contract_address' in:" - ], - "start_col": 10, - "start_line": 36 - }, - "While handling contract interface function:" - ], - "start_col": 5, - "start_line": 2 - } - }, - "311": { - "accessible_scopes": [ - "interfaces", - "interfaces.INaming", - "interfaces.INaming.set_domain_to_address" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 53, - "end_line": 4, - "input_file": { - "filename": "autogen/starknet/contract_interface/INaming/set_domain_to_address/6e3b2c7c15122d95bbbeb78003d636384c46739a2b98448d090ded5c462510f6.cairo" - }, - "parent_location": [ - { - "end_col": 31, - "end_line": 36, - "input_file": { - "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/interfaces.cairo" - }, - "start_col": 10, - "start_line": 36 - }, - "While handling contract interface function:" - ], - "start_col": 23, - "start_line": 4 - } - }, - "313": { - "accessible_scopes": [ - "interfaces", - "interfaces.INaming", - "interfaces.INaming.set_domain_to_address" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 54, - "end_line": 5, - "input_file": { - "filename": "autogen/starknet/contract_interface/INaming/set_domain_to_address/6e3b2c7c15122d95bbbeb78003d636384c46739a2b98448d090ded5c462510f6.cairo" - }, - "parent_location": [ - { - "end_col": 31, - "end_line": 36, - "input_file": { - "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/interfaces.cairo" - }, - "start_col": 10, - "start_line": 36 - }, - "While handling contract interface function:" - ], - "start_col": 19, - "start_line": 5 - } - }, - "314": { - "accessible_scopes": [ - "interfaces", - "interfaces.INaming", - "interfaces.INaming.set_domain_to_address" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 30, - "end_line": 3, - "input_file": { - "filename": "autogen/starknet/contract_interface/INaming/set_domain_to_address/64f7842b108e76706927b78270ac73c789c558c54431b3359e4441e63ec2a868.cairo" - }, - "parent_location": [ - { - "end_col": 31, - "end_line": 36, - "input_file": { - "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/interfaces.cairo" - }, - "parent_location": [ - { - "end_col": 32, - "end_line": 6, - "input_file": { - "filename": "autogen/starknet/contract_interface/INaming/set_domain_to_address/6e3b2c7c15122d95bbbeb78003d636384c46739a2b98448d090ded5c462510f6.cairo" - }, - "parent_location": [ - { - "end_col": 31, - "end_line": 36, - "input_file": { - "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/interfaces.cairo" - }, - "start_col": 10, - "start_line": 36 - }, - "While handling contract interface function:" - ], - "start_col": 14, - "start_line": 6 - }, - "While expanding the reference 'calldata_ptr_start' in:" - ], - "start_col": 10, - "start_line": 36 - }, - "While handling contract interface function:" - ], - "start_col": 12, - "start_line": 3 - } - }, - "315": { - "accessible_scopes": [ - "interfaces", - "interfaces.INaming", - "interfaces.INaming.set_domain_to_address" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 33, - "end_line": 6, - "input_file": { - "filename": "autogen/starknet/contract_interface/INaming/set_domain_to_address/6e3b2c7c15122d95bbbeb78003d636384c46739a2b98448d090ded5c462510f6.cairo" - }, - "parent_location": [ - { - "end_col": 31, - "end_line": 36, - "input_file": { - "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/interfaces.cairo" - }, - "start_col": 10, - "start_line": 36 - }, - "While handling contract interface function:" - ], - "start_col": 31, - "start_line": 2 - } - }, - "317": { - "accessible_scopes": [ - "interfaces", - "interfaces.INaming", - "interfaces.INaming.set_domain_to_address" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 38, - "end_line": 42, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/starknet/common/syscalls.cairo" - }, - "parent_location": [ - { - "end_col": 33, - "end_line": 6, - "input_file": { - "filename": "autogen/starknet/contract_interface/INaming/set_domain_to_address/6e3b2c7c15122d95bbbeb78003d636384c46739a2b98448d090ded5c462510f6.cairo" - }, - "parent_location": [ - { - "end_col": 31, - "end_line": 36, - "input_file": { - "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/interfaces.cairo" - }, - "parent_location": [ - { - "end_col": 46, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/contract_interface/INaming/set_domain_to_address/b4a44cbba6decc6ac9fe1e03d0dcd9303042497629db7b6313ce132db96dfe50.cairo" - }, - "parent_location": [ - { - "end_col": 31, - "end_line": 36, - "input_file": { - "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/interfaces.cairo" - }, - "parent_location": [ - { - "end_col": 11, - "end_line": 2, - "input_file": { - "filename": "autogen/starknet/contract_interface/INaming/set_domain_to_address/fb06bdf6e8fa9c7ff7d919d712d494716b0b586b2a762687cfb72d93da06ab29.cairo" - }, - "parent_location": [ - { - "end_col": 31, - "end_line": 36, - "input_file": { - "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/interfaces.cairo" - }, - "start_col": 10, - "start_line": 36 - }, - "While handling contract interface function:" - ], - "start_col": 1, - "start_line": 2 - }, - "While trying to retrieve the implicit argument 'syscall_ptr' in:" - ], - "start_col": 10, - "start_line": 36 - }, - "While handling contract interface function:" - ], - "start_col": 28, - "start_line": 1 - }, - "While expanding the reference 'syscall_ptr' in:" - ], - "start_col": 10, - "start_line": 36 - }, - "While handling contract interface function:" - ], - "start_col": 31, - "start_line": 2 - }, - "While trying to update the implicit return value 'syscall_ptr' in:" - ], - "start_col": 20, - "start_line": 42 - } - }, - "318": { - "accessible_scopes": [ - "interfaces", - "interfaces.INaming", - "interfaces.INaming.set_domain_to_address" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 22, - "end_line": 5, - "input_file": { - "filename": "autogen/starknet/arg_processor/288b895dd4d5c29bfd5d1dec1a501aae621b1c406a4ee12ad9564927a72fa9fb.cairo" - }, - "parent_location": [ - { - "end_col": 56, - "end_line": 36, - "input_file": { - "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/interfaces.cairo" - }, - "parent_location": [ - { - "end_col": 63, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/contract_interface/INaming/set_domain_to_address/b4a44cbba6decc6ac9fe1e03d0dcd9303042497629db7b6313ce132db96dfe50.cairo" - }, - "parent_location": [ - { - "end_col": 31, - "end_line": 36, - "input_file": { - "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/interfaces.cairo" - }, - "parent_location": [ - { - "end_col": 11, - "end_line": 2, - "input_file": { - "filename": "autogen/starknet/contract_interface/INaming/set_domain_to_address/fb06bdf6e8fa9c7ff7d919d712d494716b0b586b2a762687cfb72d93da06ab29.cairo" - }, - "parent_location": [ - { - "end_col": 31, - "end_line": 36, - "input_file": { - "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/interfaces.cairo" - }, - "start_col": 10, - "start_line": 36 - }, - "While handling contract interface function:" - ], - "start_col": 1, - "start_line": 2 - }, - "While trying to retrieve the implicit argument 'range_check_ptr' in:" - ], - "start_col": 10, - "start_line": 36 - }, - "While handling contract interface function:" - ], - "start_col": 48, - "start_line": 1 - }, - "While expanding the reference 'range_check_ptr' in:" - ], - "start_col": 50, - "start_line": 36 - }, - "While handling calldata argument 'domain'" - ], - "start_col": 7, - "start_line": 5 - } - }, - "319": { - "accessible_scopes": [ - "interfaces", - "interfaces.INaming", - "interfaces.INaming.set_domain_to_address" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 11, - "end_line": 2, - "input_file": { - "filename": "autogen/starknet/contract_interface/INaming/set_domain_to_address/fb06bdf6e8fa9c7ff7d919d712d494716b0b586b2a762687cfb72d93da06ab29.cairo" - }, - "parent_location": [ - { - "end_col": 31, - "end_line": 36, - "input_file": { - "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/interfaces.cairo" - }, - "start_col": 10, - "start_line": 36 - }, - "While handling contract interface function:" - ], - "start_col": 1, - "start_line": 2 - } - }, - "320": { - "accessible_scopes": [ - "interfaces", - "interfaces.INaming", - "interfaces.INaming.transfer_domain" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 14, - "end_line": 2, - "input_file": { - "filename": "autogen/starknet/contract_interface/INaming/transfer_domain/64f7842b108e76706927b78270ac73c789c558c54431b3359e4441e63ec2a868.cairo" - }, - "parent_location": [ - { - "end_col": 25, - "end_line": 51, - "input_file": { - "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/interfaces.cairo" - }, - "start_col": 10, - "start_line": 51 - }, - "While handling contract interface function:" - ], - "start_col": 1, - "start_line": 2 - } - }, - "322": { - "accessible_scopes": [ - "interfaces", - "interfaces.INaming", - "interfaces.INaming.transfer_domain" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 48, - "end_line": 3, - "input_file": { - "filename": "autogen/starknet/contract_interface/INaming/transfer_domain/64f7842b108e76706927b78270ac73c789c558c54431b3359e4441e63ec2a868.cairo" - }, - "parent_location": [ - { - "end_col": 25, - "end_line": 51, - "input_file": { - "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/interfaces.cairo" - }, - "start_col": 10, - "start_line": 51 - }, - "While handling contract interface function:" - ], - "start_col": 41, - "start_line": 3 - } - }, - "324": { - "accessible_scopes": [ - "interfaces", - "interfaces.INaming", - "interfaces.INaming.transfer_domain" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 37, - "end_line": 3, - "input_file": { - "filename": "autogen/starknet/contract_interface/INaming/transfer_domain/64f7842b108e76706927b78270ac73c789c558c54431b3359e4441e63ec2a868.cairo" - }, - "parent_location": [ - { - "end_col": 25, - "end_line": 51, - "input_file": { - "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/interfaces.cairo" - }, - "start_col": 10, - "start_line": 51 - }, - "While handling contract interface function:" - ], - "start_col": 6, - "start_line": 3 - } - }, - "325": { - "accessible_scopes": [ - "interfaces", - "interfaces.INaming", - "interfaces.INaming.transfer_domain" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 38, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/arg_processor/8339a6640c627e9911eb5c59bed25870348dede436b3d376cff72949db1f150a.cairo" - }, - "parent_location": [ - { - "end_col": 36, - "end_line": 51, - "input_file": { - "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/interfaces.cairo" - }, - "start_col": 26, - "start_line": 51 - }, - "While handling calldata argument 'domain_len'" - ], - "start_col": 1, - "start_line": 1 - } - }, - "326": { - "accessible_scopes": [ - "interfaces", - "interfaces.INaming", - "interfaces.INaming.transfer_domain" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 39, - "end_line": 2, - "input_file": { - "filename": "autogen/starknet/arg_processor/288b895dd4d5c29bfd5d1dec1a501aae621b1c406a4ee12ad9564927a72fa9fb.cairo" - }, - "parent_location": [ - { - "end_col": 50, - "end_line": 51, - "input_file": { - "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/interfaces.cairo" - }, - "start_col": 44, - "start_line": 51 - }, - "While handling calldata argument 'domain'" - ], - "start_col": 1, - "start_line": 2 - } - }, - "327": { - "accessible_scopes": [ - "interfaces", - "interfaces.INaming", - "interfaces.INaming.transfer_domain" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 45, - "end_line": 5, - "input_file": { - "filename": "autogen/starknet/arg_processor/288b895dd4d5c29bfd5d1dec1a501aae621b1c406a4ee12ad9564927a72fa9fb.cairo" - }, - "parent_location": [ - { - "end_col": 50, - "end_line": 51, - "input_file": { - "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/interfaces.cairo" - }, - "start_col": 44, - "start_line": 51 - }, - "While handling calldata argument 'domain'" - ], - "start_col": 1, - "start_line": 5 - } - }, - "329": { - "accessible_scopes": [ - "interfaces", - "interfaces.INaming", - "interfaces.INaming.transfer_domain" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 40, - "end_line": 2, - "input_file": { - "filename": "autogen/starknet/arg_processor/8339a6640c627e9911eb5c59bed25870348dede436b3d376cff72949db1f150a.cairo" - }, - "parent_location": [ - { - "end_col": 36, - "end_line": 51, - "input_file": { - "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/interfaces.cairo" - }, - "parent_location": [ - { - "end_col": 45, - "end_line": 10, - "input_file": { - "filename": "autogen/starknet/arg_processor/288b895dd4d5c29bfd5d1dec1a501aae621b1c406a4ee12ad9564927a72fa9fb.cairo" - }, - "parent_location": [ - { - "end_col": 50, - "end_line": 51, - "input_file": { - "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/interfaces.cairo" - }, - "start_col": 44, - "start_line": 51 - }, - "While handling calldata argument 'domain'" - ], - "start_col": 31, - "start_line": 10 - }, - "While expanding the reference '__calldata_ptr' in:" - ], - "start_col": 26, - "start_line": 51 - }, - "While handling calldata argument 'domain_len'" - ], - "start_col": 22, - "start_line": 2 - } - }, - "331": { - "accessible_scopes": [ - "interfaces", - "interfaces.INaming", - "interfaces.INaming.transfer_domain" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 63, - "end_line": 10, - "input_file": { - "filename": "autogen/starknet/arg_processor/288b895dd4d5c29bfd5d1dec1a501aae621b1c406a4ee12ad9564927a72fa9fb.cairo" - }, - "parent_location": [ - { - "end_col": 50, - "end_line": 51, - "input_file": { - "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/interfaces.cairo" - }, - "start_col": 44, - "start_line": 51 - }, - "While handling calldata argument 'domain'" - ], - "start_col": 1, - "start_line": 10 - } - }, - "332": { - "accessible_scopes": [ - "interfaces", - "interfaces.INaming", - "interfaces.INaming.transfer_domain" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 40, - "end_line": 2, - "input_file": { - "filename": "autogen/starknet/arg_processor/8339a6640c627e9911eb5c59bed25870348dede436b3d376cff72949db1f150a.cairo" - }, - "parent_location": [ - { - "end_col": 36, - "end_line": 51, - "input_file": { - "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/interfaces.cairo" - }, - "parent_location": [ - { - "end_col": 41, - "end_line": 7, - "input_file": { - "filename": "autogen/starknet/arg_processor/288b895dd4d5c29bfd5d1dec1a501aae621b1c406a4ee12ad9564927a72fa9fb.cairo" - }, - "parent_location": [ - { - "end_col": 50, - "end_line": 51, - "input_file": { - "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/interfaces.cairo" - }, - "parent_location": [ - { - "end_col": 28, - "end_line": 12, - "input_file": { - "filename": "autogen/starknet/arg_processor/288b895dd4d5c29bfd5d1dec1a501aae621b1c406a4ee12ad9564927a72fa9fb.cairo" - }, - "parent_location": [ - { - "end_col": 50, - "end_line": 51, - "input_file": { - "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/interfaces.cairo" - }, - "start_col": 44, - "start_line": 51 - }, - "While handling calldata argument 'domain'" - ], - "start_col": 9, - "start_line": 12 - }, - "While expanding the reference '__calldata_ptr_copy' in:" - ], - "start_col": 44, - "start_line": 51 - }, - "While handling calldata argument 'domain'" - ], - "start_col": 27, - "start_line": 7 - }, - "While expanding the reference '__calldata_ptr' in:" - ], - "start_col": 26, - "start_line": 51 - }, - "While handling calldata argument 'domain_len'" - ], - "start_col": 22, - "start_line": 2 - } - }, - "334": { - "accessible_scopes": [ - "interfaces", - "interfaces.INaming", - "interfaces.INaming.transfer_domain" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 57, - "end_line": 51, - "input_file": { - "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/interfaces.cairo" - }, - "parent_location": [ - { - "end_col": 15, - "end_line": 13, - "input_file": { - "filename": "autogen/starknet/arg_processor/288b895dd4d5c29bfd5d1dec1a501aae621b1c406a4ee12ad9564927a72fa9fb.cairo" - }, - "parent_location": [ - { - "end_col": 50, - "end_line": 51, - "input_file": { - "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/interfaces.cairo" - }, - "start_col": 44, - "start_line": 51 - }, - "While handling calldata argument 'domain'" - ], - "start_col": 9, - "start_line": 13 - }, - "While expanding the reference 'domain' in:" - ], - "start_col": 44, - "start_line": 51 - } - }, - "335": { - "accessible_scopes": [ - "interfaces", - "interfaces.INaming", - "interfaces.INaming.transfer_domain" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 42, - "end_line": 51, - "input_file": { - "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/interfaces.cairo" - }, - "parent_location": [ - { - "end_col": 19, - "end_line": 14, - "input_file": { - "filename": "autogen/starknet/arg_processor/288b895dd4d5c29bfd5d1dec1a501aae621b1c406a4ee12ad9564927a72fa9fb.cairo" - }, - "parent_location": [ - { - "end_col": 50, - "end_line": 51, - "input_file": { - "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/interfaces.cairo" - }, - "start_col": 44, - "start_line": 51 - }, - "While handling calldata argument 'domain'" - ], - "start_col": 9, - "start_line": 14 - }, - "While expanding the reference 'domain_len' in:" - ], - "start_col": 26, - "start_line": 51 - } - }, - "336": { - "accessible_scopes": [ - "interfaces", - "interfaces.INaming", - "interfaces.INaming.transfer_domain" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 24, - "end_line": 14, - "input_file": { - "filename": "autogen/starknet/arg_processor/288b895dd4d5c29bfd5d1dec1a501aae621b1c406a4ee12ad9564927a72fa9fb.cairo" - }, - "parent_location": [ - { - "end_col": 50, - "end_line": 51, - "input_file": { - "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/interfaces.cairo" - }, - "start_col": 44, - "start_line": 51 - }, - "While handling calldata argument 'domain'" - ], - "start_col": 1, - "start_line": 11 - } - }, - "338": { - "accessible_scopes": [ - "interfaces", - "interfaces.INaming", - "interfaces.INaming.transfer_domain" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 43, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/arg_processor/c52d0b3b4b86a38cacd1d4ac89a0241623cad45a643a7142a6cf5f5594d46e8e.cairo" - }, - "parent_location": [ - { - "end_col": 74, - "end_line": 51, - "input_file": { - "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/interfaces.cairo" - }, - "start_col": 59, - "start_line": 51 - }, - "While handling calldata argument 'target_token_id'" - ], - "start_col": 1, - "start_line": 1 - } - }, - "339": { - "accessible_scopes": [ - "interfaces", - "interfaces.INaming", - "interfaces.INaming.transfer_domain" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 40, - "end_line": 2, - "input_file": { - "filename": "autogen/starknet/arg_processor/c52d0b3b4b86a38cacd1d4ac89a0241623cad45a643a7142a6cf5f5594d46e8e.cairo" - }, - "parent_location": [ - { - "end_col": 74, - "end_line": 51, - "input_file": { - "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/interfaces.cairo" - }, - "parent_location": [ - { - "end_col": 33, - "end_line": 5, - "input_file": { - "filename": "autogen/starknet/contract_interface/INaming/transfer_domain/1ac7f3def7017dd84d1d43bd0c0df63c5e8f8614829ce8283341a52f61e1b1bf.cairo" - }, - "parent_location": [ - { - "end_col": 25, - "end_line": 51, - "input_file": { - "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/interfaces.cairo" - }, - "start_col": 10, - "start_line": 51 - }, - "While handling contract interface function:" - ], - "start_col": 19, - "start_line": 5 - }, - "While expanding the reference '__calldata_ptr' in:" - ], - "start_col": 59, - "start_line": 51 - }, - "While handling calldata argument 'target_token_id'" - ], - "start_col": 22, - "start_line": 2 - } - }, - "341": { - "accessible_scopes": [ - "interfaces", - "interfaces.INaming", - "interfaces.INaming.transfer_domain" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 40, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/contract_interface/INaming/transfer_domain/dcd2de2795921cf268d664fe10ffb2ce1a12eaa8017646363f68c2db66ac764e.cairo" - }, - "parent_location": [ - { - "end_col": 25, - "end_line": 51, - "input_file": { - "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/interfaces.cairo" - }, - "parent_location": [ - { - "end_col": 38, - "end_line": 42, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/starknet/common/syscalls.cairo" - }, - "parent_location": [ - { - "end_col": 33, - "end_line": 6, - "input_file": { - "filename": "autogen/starknet/contract_interface/INaming/transfer_domain/1ac7f3def7017dd84d1d43bd0c0df63c5e8f8614829ce8283341a52f61e1b1bf.cairo" - }, - "parent_location": [ - { - "end_col": 25, - "end_line": 51, - "input_file": { - "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/interfaces.cairo" - }, - "start_col": 10, - "start_line": 51 - }, - "While handling contract interface function:" - ], - "start_col": 31, - "start_line": 2 - }, - "While trying to retrieve the implicit argument 'syscall_ptr' in:" - ], - "start_col": 20, - "start_line": 42 - }, - "While expanding the reference 'syscall_ptr' in:" - ], - "start_col": 10, - "start_line": 51 - }, - "While handling contract interface function:" - ], - "start_col": 22, - "start_line": 1 - } - }, - "342": { - "accessible_scopes": [ - "interfaces", - "interfaces.INaming", - "interfaces.INaming.transfer_domain" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 27, - "end_line": 2, - "input_file": { - "filename": "autogen/starknet/contract_interface/INaming/transfer_domain/dcd2de2795921cf268d664fe10ffb2ce1a12eaa8017646363f68c2db66ac764e.cairo" - }, - "parent_location": [ - { - "end_col": 25, - "end_line": 51, - "input_file": { - "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/interfaces.cairo" - }, - "parent_location": [ - { - "end_col": 38, - "end_line": 3, - "input_file": { - "filename": "autogen/starknet/contract_interface/INaming/transfer_domain/1ac7f3def7017dd84d1d43bd0c0df63c5e8f8614829ce8283341a52f61e1b1bf.cairo" - }, - "parent_location": [ - { - "end_col": 25, - "end_line": 51, - "input_file": { - "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/interfaces.cairo" - }, - "start_col": 10, - "start_line": 51 - }, - "While handling contract interface function:" - ], - "start_col": 22, - "start_line": 3 - }, - "While expanding the reference 'contract_address' in:" - ], - "start_col": 10, - "start_line": 51 - }, - "While handling contract interface function:" - ], - "start_col": 5, - "start_line": 2 - } - }, - "343": { - "accessible_scopes": [ - "interfaces", - "interfaces.INaming", - "interfaces.INaming.transfer_domain" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 47, - "end_line": 4, - "input_file": { - "filename": "autogen/starknet/contract_interface/INaming/transfer_domain/1ac7f3def7017dd84d1d43bd0c0df63c5e8f8614829ce8283341a52f61e1b1bf.cairo" - }, - "parent_location": [ - { - "end_col": 25, - "end_line": 51, - "input_file": { - "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/interfaces.cairo" - }, - "start_col": 10, - "start_line": 51 - }, - "While handling contract interface function:" - ], - "start_col": 23, - "start_line": 4 - } - }, - "345": { - "accessible_scopes": [ - "interfaces", - "interfaces.INaming", - "interfaces.INaming.transfer_domain" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 54, - "end_line": 5, - "input_file": { - "filename": "autogen/starknet/contract_interface/INaming/transfer_domain/1ac7f3def7017dd84d1d43bd0c0df63c5e8f8614829ce8283341a52f61e1b1bf.cairo" - }, - "parent_location": [ - { - "end_col": 25, - "end_line": 51, - "input_file": { - "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/interfaces.cairo" - }, - "start_col": 10, - "start_line": 51 - }, - "While handling contract interface function:" - ], - "start_col": 19, - "start_line": 5 - } - }, - "346": { - "accessible_scopes": [ - "interfaces", - "interfaces.INaming", - "interfaces.INaming.transfer_domain" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 30, - "end_line": 3, - "input_file": { - "filename": "autogen/starknet/contract_interface/INaming/transfer_domain/64f7842b108e76706927b78270ac73c789c558c54431b3359e4441e63ec2a868.cairo" - }, - "parent_location": [ - { - "end_col": 25, - "end_line": 51, - "input_file": { - "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/interfaces.cairo" - }, - "parent_location": [ - { - "end_col": 32, - "end_line": 6, - "input_file": { - "filename": "autogen/starknet/contract_interface/INaming/transfer_domain/1ac7f3def7017dd84d1d43bd0c0df63c5e8f8614829ce8283341a52f61e1b1bf.cairo" - }, - "parent_location": [ - { - "end_col": 25, - "end_line": 51, - "input_file": { - "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/interfaces.cairo" - }, - "start_col": 10, - "start_line": 51 - }, - "While handling contract interface function:" - ], - "start_col": 14, - "start_line": 6 - }, - "While expanding the reference 'calldata_ptr_start' in:" - ], - "start_col": 10, - "start_line": 51 - }, - "While handling contract interface function:" - ], - "start_col": 12, - "start_line": 3 - } - }, - "347": { - "accessible_scopes": [ - "interfaces", - "interfaces.INaming", - "interfaces.INaming.transfer_domain" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 33, - "end_line": 6, - "input_file": { - "filename": "autogen/starknet/contract_interface/INaming/transfer_domain/1ac7f3def7017dd84d1d43bd0c0df63c5e8f8614829ce8283341a52f61e1b1bf.cairo" - }, - "parent_location": [ - { - "end_col": 25, - "end_line": 51, - "input_file": { - "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/interfaces.cairo" - }, - "start_col": 10, - "start_line": 51 - }, - "While handling contract interface function:" - ], - "start_col": 31, - "start_line": 2 - } - }, - "349": { - "accessible_scopes": [ - "interfaces", - "interfaces.INaming", - "interfaces.INaming.transfer_domain" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 38, - "end_line": 42, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/starknet/common/syscalls.cairo" - }, - "parent_location": [ - { - "end_col": 33, - "end_line": 6, - "input_file": { - "filename": "autogen/starknet/contract_interface/INaming/transfer_domain/1ac7f3def7017dd84d1d43bd0c0df63c5e8f8614829ce8283341a52f61e1b1bf.cairo" - }, - "parent_location": [ - { - "end_col": 25, - "end_line": 51, - "input_file": { - "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/interfaces.cairo" - }, - "parent_location": [ - { - "end_col": 40, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/contract_interface/INaming/transfer_domain/dcd2de2795921cf268d664fe10ffb2ce1a12eaa8017646363f68c2db66ac764e.cairo" - }, - "parent_location": [ - { - "end_col": 25, - "end_line": 51, - "input_file": { - "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/interfaces.cairo" - }, - "parent_location": [ - { - "end_col": 11, - "end_line": 2, - "input_file": { - "filename": "autogen/starknet/contract_interface/INaming/transfer_domain/fb06bdf6e8fa9c7ff7d919d712d494716b0b586b2a762687cfb72d93da06ab29.cairo" - }, - "parent_location": [ - { - "end_col": 25, - "end_line": 51, - "input_file": { - "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/interfaces.cairo" - }, - "start_col": 10, - "start_line": 51 - }, - "While handling contract interface function:" - ], - "start_col": 1, - "start_line": 2 - }, - "While trying to retrieve the implicit argument 'syscall_ptr' in:" - ], - "start_col": 10, - "start_line": 51 - }, - "While handling contract interface function:" - ], - "start_col": 22, - "start_line": 1 - }, - "While expanding the reference 'syscall_ptr' in:" - ], - "start_col": 10, - "start_line": 51 - }, - "While handling contract interface function:" - ], - "start_col": 31, - "start_line": 2 - }, - "While trying to update the implicit return value 'syscall_ptr' in:" - ], - "start_col": 20, - "start_line": 42 - } - }, - "350": { - "accessible_scopes": [ - "interfaces", - "interfaces.INaming", - "interfaces.INaming.transfer_domain" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 22, - "end_line": 5, - "input_file": { - "filename": "autogen/starknet/arg_processor/288b895dd4d5c29bfd5d1dec1a501aae621b1c406a4ee12ad9564927a72fa9fb.cairo" - }, - "parent_location": [ - { - "end_col": 50, - "end_line": 51, - "input_file": { - "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/interfaces.cairo" - }, - "parent_location": [ - { - "end_col": 57, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/contract_interface/INaming/transfer_domain/dcd2de2795921cf268d664fe10ffb2ce1a12eaa8017646363f68c2db66ac764e.cairo" - }, - "parent_location": [ - { - "end_col": 25, - "end_line": 51, - "input_file": { - "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/interfaces.cairo" - }, - "parent_location": [ - { - "end_col": 11, - "end_line": 2, - "input_file": { - "filename": "autogen/starknet/contract_interface/INaming/transfer_domain/fb06bdf6e8fa9c7ff7d919d712d494716b0b586b2a762687cfb72d93da06ab29.cairo" - }, - "parent_location": [ - { - "end_col": 25, - "end_line": 51, - "input_file": { - "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/interfaces.cairo" - }, - "start_col": 10, - "start_line": 51 - }, - "While handling contract interface function:" - ], - "start_col": 1, - "start_line": 2 - }, - "While trying to retrieve the implicit argument 'range_check_ptr' in:" - ], - "start_col": 10, - "start_line": 51 - }, - "While handling contract interface function:" - ], - "start_col": 42, - "start_line": 1 - }, - "While expanding the reference 'range_check_ptr' in:" - ], - "start_col": 44, - "start_line": 51 - }, - "While handling calldata argument 'domain'" - ], - "start_col": 7, - "start_line": 5 - } - }, - "351": { - "accessible_scopes": [ - "interfaces", - "interfaces.INaming", - "interfaces.INaming.transfer_domain" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 11, - "end_line": 2, - "input_file": { - "filename": "autogen/starknet/contract_interface/INaming/transfer_domain/fb06bdf6e8fa9c7ff7d919d712d494716b0b586b2a762687cfb72d93da06ab29.cairo" - }, - "parent_location": [ - { - "end_col": 25, - "end_line": 51, - "input_file": { - "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/interfaces.cairo" - }, - "start_col": 10, - "start_line": 51 - }, - "While handling contract interface function:" - ], - "start_col": 1, - "start_line": 2 - } - }, - "352": { - "accessible_scopes": [ - "interfaces", - "interfaces.IStarknetId", - "interfaces.IStarknetId.transferFrom" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 14, - "end_line": 2, - "input_file": { - "filename": "autogen/starknet/contract_interface/IStarknetId/transferFrom/64f7842b108e76706927b78270ac73c789c558c54431b3359e4441e63ec2a868.cairo" - }, - "parent_location": [ - { - "end_col": 22, - "end_line": 125, - "input_file": { - "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/interfaces.cairo" - }, - "start_col": 10, - "start_line": 125 - }, - "While handling contract interface function:" - ], - "start_col": 1, - "start_line": 2 - } - }, - "354": { - "accessible_scopes": [ - "interfaces", - "interfaces.IStarknetId", - "interfaces.IStarknetId.transferFrom" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 48, - "end_line": 3, - "input_file": { - "filename": "autogen/starknet/contract_interface/IStarknetId/transferFrom/64f7842b108e76706927b78270ac73c789c558c54431b3359e4441e63ec2a868.cairo" - }, - "parent_location": [ - { - "end_col": 22, - "end_line": 125, - "input_file": { - "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/interfaces.cairo" - }, - "start_col": 10, - "start_line": 125 - }, - "While handling contract interface function:" - ], - "start_col": 41, - "start_line": 3 - } - }, - "356": { - "accessible_scopes": [ - "interfaces", - "interfaces.IStarknetId", - "interfaces.IStarknetId.transferFrom" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 37, - "end_line": 3, - "input_file": { - "filename": "autogen/starknet/contract_interface/IStarknetId/transferFrom/64f7842b108e76706927b78270ac73c789c558c54431b3359e4441e63ec2a868.cairo" - }, - "parent_location": [ - { - "end_col": 22, - "end_line": 125, - "input_file": { - "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/interfaces.cairo" - }, - "start_col": 10, - "start_line": 125 - }, - "While handling contract interface function:" - ], - "start_col": 6, - "start_line": 3 - } - }, - "357": { - "accessible_scopes": [ - "interfaces", - "interfaces.IStarknetId", - "interfaces.IStarknetId.transferFrom" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 33, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/arg_processor/8ec5ab086a6ec421b0d75ada64b1bb6ab10a137cbf2bed9df67abc2a3a603f5b.cairo" - }, - "parent_location": [ - { - "end_col": 28, - "end_line": 125, - "input_file": { - "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/interfaces.cairo" - }, - "start_col": 23, - "start_line": 125 - }, - "While handling calldata argument '_from'" - ], - "start_col": 1, - "start_line": 1 - } - }, - "358": { - "accessible_scopes": [ - "interfaces", - "interfaces.IStarknetId", - "interfaces.IStarknetId.transferFrom" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 30, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/arg_processor/2670bb539ede27446c75876e41bcf9ef5cab09b9eec143f3986635a545b089ab.cairo" - }, - "parent_location": [ - { - "end_col": 38, - "end_line": 125, - "input_file": { - "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/interfaces.cairo" - }, - "start_col": 36, - "start_line": 125 - }, - "While handling calldata argument 'to'" - ], - "start_col": 1, - "start_line": 1 - } - }, - "359": { - "accessible_scopes": [ - "interfaces", - "interfaces.IStarknetId", - "interfaces.IStarknetId.transferFrom" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 52, - "end_line": 3, - "input_file": { - "filename": "autogen/starknet/arg_processor/449208c737b8d9d843bae48e01259f0d046d686ea4fb71270f1ccf94f769682a.cairo" - }, - "parent_location": [ - { - "end_col": 54, - "end_line": 125, - "input_file": { - "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/interfaces.cairo" - }, - "start_col": 46, - "start_line": 125 - }, - "While handling calldata argument 'token_id'" - ], - "start_col": 1, - "start_line": 3 - } - }, - "360": { - "accessible_scopes": [ - "interfaces", - "interfaces.IStarknetId", - "interfaces.IStarknetId.transferFrom" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 52, - "end_line": 4, - "input_file": { - "filename": "autogen/starknet/arg_processor/449208c737b8d9d843bae48e01259f0d046d686ea4fb71270f1ccf94f769682a.cairo" - }, - "parent_location": [ - { - "end_col": 54, - "end_line": 125, - "input_file": { - "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/interfaces.cairo" - }, - "start_col": 46, - "start_line": 125 - }, - "While handling calldata argument 'token_id'" - ], - "start_col": 1, - "start_line": 4 - } - }, - "361": { - "accessible_scopes": [ - "interfaces", - "interfaces.IStarknetId", - "interfaces.IStarknetId.transferFrom" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 40, - "end_line": 5, - "input_file": { - "filename": "autogen/starknet/arg_processor/449208c737b8d9d843bae48e01259f0d046d686ea4fb71270f1ccf94f769682a.cairo" - }, - "parent_location": [ - { - "end_col": 54, - "end_line": 125, - "input_file": { - "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/interfaces.cairo" - }, - "parent_location": [ - { - "end_col": 33, - "end_line": 5, - "input_file": { - "filename": "autogen/starknet/contract_interface/IStarknetId/transferFrom/b016d077f46f58d4cffabd707b4d3495a859d0f543f418223b1ea57e409144f2.cairo" - }, - "parent_location": [ - { - "end_col": 22, - "end_line": 125, - "input_file": { - "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/interfaces.cairo" - }, - "start_col": 10, - "start_line": 125 - }, - "While handling contract interface function:" - ], - "start_col": 19, - "start_line": 5 - }, - "While expanding the reference '__calldata_ptr' in:" - ], - "start_col": 46, - "start_line": 125 - }, - "While handling calldata argument 'token_id'" - ], - "start_col": 22, - "start_line": 5 - } - }, - "363": { - "accessible_scopes": [ - "interfaces", - "interfaces.IStarknetId", - "interfaces.IStarknetId.transferFrom" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 37, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/contract_interface/IStarknetId/transferFrom/f8c7980cd46ed6d764c999318b5692736b724dc08c1bf96e92d1b77ddf37af10.cairo" - }, - "parent_location": [ - { - "end_col": 22, - "end_line": 125, - "input_file": { - "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/interfaces.cairo" - }, - "parent_location": [ - { - "end_col": 38, - "end_line": 42, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/starknet/common/syscalls.cairo" - }, - "parent_location": [ - { - "end_col": 33, - "end_line": 6, - "input_file": { - "filename": "autogen/starknet/contract_interface/IStarknetId/transferFrom/b016d077f46f58d4cffabd707b4d3495a859d0f543f418223b1ea57e409144f2.cairo" - }, - "parent_location": [ - { - "end_col": 22, - "end_line": 125, - "input_file": { - "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/interfaces.cairo" - }, - "start_col": 10, - "start_line": 125 - }, - "While handling contract interface function:" - ], - "start_col": 31, - "start_line": 2 - }, - "While trying to retrieve the implicit argument 'syscall_ptr' in:" - ], - "start_col": 20, - "start_line": 42 - }, - "While expanding the reference 'syscall_ptr' in:" - ], - "start_col": 10, - "start_line": 125 - }, - "While handling contract interface function:" - ], - "start_col": 19, - "start_line": 1 - } - }, - "364": { - "accessible_scopes": [ - "interfaces", - "interfaces.IStarknetId", - "interfaces.IStarknetId.transferFrom" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 27, - "end_line": 2, - "input_file": { - "filename": "autogen/starknet/contract_interface/IStarknetId/transferFrom/f8c7980cd46ed6d764c999318b5692736b724dc08c1bf96e92d1b77ddf37af10.cairo" - }, - "parent_location": [ - { - "end_col": 22, - "end_line": 125, - "input_file": { - "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/interfaces.cairo" - }, - "parent_location": [ - { - "end_col": 38, - "end_line": 3, - "input_file": { - "filename": "autogen/starknet/contract_interface/IStarknetId/transferFrom/b016d077f46f58d4cffabd707b4d3495a859d0f543f418223b1ea57e409144f2.cairo" - }, - "parent_location": [ - { - "end_col": 22, - "end_line": 125, - "input_file": { - "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/interfaces.cairo" - }, - "start_col": 10, - "start_line": 125 - }, - "While handling contract interface function:" - ], - "start_col": 22, - "start_line": 3 - }, - "While expanding the reference 'contract_address' in:" - ], - "start_col": 10, - "start_line": 125 - }, - "While handling contract interface function:" - ], - "start_col": 5, - "start_line": 2 - } - }, - "365": { - "accessible_scopes": [ - "interfaces", - "interfaces.IStarknetId", - "interfaces.IStarknetId.transferFrom" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 44, - "end_line": 4, - "input_file": { - "filename": "autogen/starknet/contract_interface/IStarknetId/transferFrom/b016d077f46f58d4cffabd707b4d3495a859d0f543f418223b1ea57e409144f2.cairo" - }, - "parent_location": [ - { - "end_col": 22, - "end_line": 125, - "input_file": { - "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/interfaces.cairo" - }, - "start_col": 10, - "start_line": 125 - }, - "While handling contract interface function:" - ], - "start_col": 23, - "start_line": 4 - } - }, - "367": { - "accessible_scopes": [ - "interfaces", - "interfaces.IStarknetId", - "interfaces.IStarknetId.transferFrom" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 54, - "end_line": 5, - "input_file": { - "filename": "autogen/starknet/contract_interface/IStarknetId/transferFrom/b016d077f46f58d4cffabd707b4d3495a859d0f543f418223b1ea57e409144f2.cairo" - }, - "parent_location": [ - { - "end_col": 22, - "end_line": 125, - "input_file": { - "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/interfaces.cairo" - }, - "start_col": 10, - "start_line": 125 - }, - "While handling contract interface function:" - ], - "start_col": 19, - "start_line": 5 - } - }, - "368": { - "accessible_scopes": [ - "interfaces", - "interfaces.IStarknetId", - "interfaces.IStarknetId.transferFrom" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 30, - "end_line": 3, - "input_file": { - "filename": "autogen/starknet/contract_interface/IStarknetId/transferFrom/64f7842b108e76706927b78270ac73c789c558c54431b3359e4441e63ec2a868.cairo" - }, - "parent_location": [ - { - "end_col": 22, - "end_line": 125, - "input_file": { - "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/interfaces.cairo" - }, - "parent_location": [ - { - "end_col": 32, - "end_line": 6, - "input_file": { - "filename": "autogen/starknet/contract_interface/IStarknetId/transferFrom/b016d077f46f58d4cffabd707b4d3495a859d0f543f418223b1ea57e409144f2.cairo" - }, - "parent_location": [ - { - "end_col": 22, - "end_line": 125, - "input_file": { - "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/interfaces.cairo" - }, - "start_col": 10, - "start_line": 125 - }, - "While handling contract interface function:" - ], - "start_col": 14, - "start_line": 6 - }, - "While expanding the reference 'calldata_ptr_start' in:" - ], - "start_col": 10, - "start_line": 125 - }, - "While handling contract interface function:" - ], - "start_col": 12, - "start_line": 3 - } - }, - "369": { - "accessible_scopes": [ - "interfaces", - "interfaces.IStarknetId", - "interfaces.IStarknetId.transferFrom" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 33, - "end_line": 6, - "input_file": { - "filename": "autogen/starknet/contract_interface/IStarknetId/transferFrom/b016d077f46f58d4cffabd707b4d3495a859d0f543f418223b1ea57e409144f2.cairo" - }, - "parent_location": [ - { - "end_col": 22, - "end_line": 125, - "input_file": { - "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/interfaces.cairo" - }, - "start_col": 10, - "start_line": 125 - }, - "While handling contract interface function:" - ], - "start_col": 31, - "start_line": 2 - } - }, - "371": { - "accessible_scopes": [ - "interfaces", - "interfaces.IStarknetId", - "interfaces.IStarknetId.transferFrom" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 38, - "end_line": 42, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/starknet/common/syscalls.cairo" - }, - "parent_location": [ - { - "end_col": 33, - "end_line": 6, - "input_file": { - "filename": "autogen/starknet/contract_interface/IStarknetId/transferFrom/b016d077f46f58d4cffabd707b4d3495a859d0f543f418223b1ea57e409144f2.cairo" - }, - "parent_location": [ - { - "end_col": 22, - "end_line": 125, - "input_file": { - "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/interfaces.cairo" - }, - "parent_location": [ - { - "end_col": 37, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/contract_interface/IStarknetId/transferFrom/f8c7980cd46ed6d764c999318b5692736b724dc08c1bf96e92d1b77ddf37af10.cairo" - }, - "parent_location": [ - { - "end_col": 22, - "end_line": 125, - "input_file": { - "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/interfaces.cairo" - }, - "parent_location": [ - { - "end_col": 11, - "end_line": 2, - "input_file": { - "filename": "autogen/starknet/contract_interface/IStarknetId/transferFrom/fb06bdf6e8fa9c7ff7d919d712d494716b0b586b2a762687cfb72d93da06ab29.cairo" - }, - "parent_location": [ - { - "end_col": 22, - "end_line": 125, - "input_file": { - "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/interfaces.cairo" - }, - "start_col": 10, - "start_line": 125 - }, - "While handling contract interface function:" - ], - "start_col": 1, - "start_line": 2 - }, - "While trying to retrieve the implicit argument 'syscall_ptr' in:" - ], - "start_col": 10, - "start_line": 125 - }, - "While handling contract interface function:" - ], - "start_col": 19, - "start_line": 1 - }, - "While expanding the reference 'syscall_ptr' in:" - ], - "start_col": 10, - "start_line": 125 - }, - "While handling contract interface function:" - ], - "start_col": 31, - "start_line": 2 - }, - "While trying to update the implicit return value 'syscall_ptr' in:" - ], - "start_col": 20, - "start_line": 42 - } - }, - "372": { - "accessible_scopes": [ - "interfaces", - "interfaces.IStarknetId", - "interfaces.IStarknetId.transferFrom" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 54, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/contract_interface/IStarknetId/transferFrom/f8c7980cd46ed6d764c999318b5692736b724dc08c1bf96e92d1b77ddf37af10.cairo" - }, - "parent_location": [ - { - "end_col": 22, - "end_line": 125, - "input_file": { - "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/interfaces.cairo" - }, - "parent_location": [ - { - "end_col": 54, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/contract_interface/IStarknetId/transferFrom/f8c7980cd46ed6d764c999318b5692736b724dc08c1bf96e92d1b77ddf37af10.cairo" - }, - "parent_location": [ - { - "end_col": 22, - "end_line": 125, - "input_file": { - "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/interfaces.cairo" - }, - "parent_location": [ - { - "end_col": 11, - "end_line": 2, - "input_file": { - "filename": "autogen/starknet/contract_interface/IStarknetId/transferFrom/fb06bdf6e8fa9c7ff7d919d712d494716b0b586b2a762687cfb72d93da06ab29.cairo" - }, - "parent_location": [ - { - "end_col": 22, - "end_line": 125, - "input_file": { - "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/interfaces.cairo" - }, - "start_col": 10, - "start_line": 125 - }, - "While handling contract interface function:" - ], - "start_col": 1, - "start_line": 2 - }, - "While trying to retrieve the implicit argument 'range_check_ptr' in:" - ], - "start_col": 10, - "start_line": 125 - }, - "While handling contract interface function:" - ], - "start_col": 39, - "start_line": 1 - }, - "While expanding the reference 'range_check_ptr' in:" - ], - "start_col": 10, - "start_line": 125 - }, - "While handling contract interface function:" - ], - "start_col": 39, - "start_line": 1 - } - }, - "373": { - "accessible_scopes": [ - "interfaces", - "interfaces.IStarknetId", - "interfaces.IStarknetId.transferFrom" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 11, - "end_line": 2, - "input_file": { - "filename": "autogen/starknet/contract_interface/IStarknetId/transferFrom/fb06bdf6e8fa9c7ff7d919d712d494716b0b586b2a762687cfb72d93da06ab29.cairo" - }, - "parent_location": [ - { - "end_col": 22, - "end_line": 125, - "input_file": { - "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/interfaces.cairo" - }, - "start_col": 10, - "start_line": 125 - }, - "While handling contract interface function:" - ], - "start_col": 1, - "start_line": 2 - } - }, - "374": { - "accessible_scopes": [ - "interfaces", - "interfaces.IStarknetId", - "interfaces.IStarknetId.mint" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 14, - "end_line": 2, - "input_file": { - "filename": "autogen/starknet/contract_interface/IStarknetId/mint/64f7842b108e76706927b78270ac73c789c558c54431b3359e4441e63ec2a868.cairo" - }, - "parent_location": [ - { - "end_col": 14, - "end_line": 131, - "input_file": { - "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/interfaces.cairo" - }, - "start_col": 10, - "start_line": 131 - }, - "While handling contract interface function:" - ], - "start_col": 1, - "start_line": 2 - } - }, - "376": { - "accessible_scopes": [ - "interfaces", - "interfaces.IStarknetId", - "interfaces.IStarknetId.mint" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 48, - "end_line": 3, - "input_file": { - "filename": "autogen/starknet/contract_interface/IStarknetId/mint/64f7842b108e76706927b78270ac73c789c558c54431b3359e4441e63ec2a868.cairo" - }, - "parent_location": [ - { - "end_col": 14, - "end_line": 131, - "input_file": { - "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/interfaces.cairo" - }, - "start_col": 10, - "start_line": 131 - }, - "While handling contract interface function:" - ], - "start_col": 41, - "start_line": 3 - } - }, - "378": { - "accessible_scopes": [ - "interfaces", - "interfaces.IStarknetId", - "interfaces.IStarknetId.mint" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 37, - "end_line": 3, - "input_file": { - "filename": "autogen/starknet/contract_interface/IStarknetId/mint/64f7842b108e76706927b78270ac73c789c558c54431b3359e4441e63ec2a868.cairo" - }, - "parent_location": [ - { - "end_col": 14, - "end_line": 131, - "input_file": { - "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/interfaces.cairo" - }, - "start_col": 10, - "start_line": 131 - }, - "While handling contract interface function:" - ], - "start_col": 6, - "start_line": 3 - } - }, - "379": { - "accessible_scopes": [ - "interfaces", - "interfaces.IStarknetId", - "interfaces.IStarknetId.mint" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 36, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/arg_processor/b2cf08f23bd6d74eeb872bed49d06f4a7518757c8955198bd7ce9a52a9cf0046.cairo" - }, - "parent_location": [ - { - "end_col": 23, - "end_line": 131, - "input_file": { - "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/interfaces.cairo" - }, - "start_col": 15, - "start_line": 131 - }, - "While handling calldata argument 'token_id'" - ], - "start_col": 1, - "start_line": 1 - } - }, - "380": { - "accessible_scopes": [ - "interfaces", - "interfaces.IStarknetId", - "interfaces.IStarknetId.mint" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 40, - "end_line": 2, - "input_file": { - "filename": "autogen/starknet/arg_processor/b2cf08f23bd6d74eeb872bed49d06f4a7518757c8955198bd7ce9a52a9cf0046.cairo" - }, - "parent_location": [ - { - "end_col": 23, - "end_line": 131, - "input_file": { - "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/interfaces.cairo" - }, - "parent_location": [ - { - "end_col": 33, - "end_line": 5, - "input_file": { - "filename": "autogen/starknet/contract_interface/IStarknetId/mint/304ae580b78eb48c6532c7788d73eef2a89dcd3c406dfb71c0bdbeacea1728ca.cairo" - }, - "parent_location": [ - { - "end_col": 14, - "end_line": 131, - "input_file": { - "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/interfaces.cairo" - }, - "start_col": 10, - "start_line": 131 - }, - "While handling contract interface function:" - ], - "start_col": 19, - "start_line": 5 - }, - "While expanding the reference '__calldata_ptr' in:" - ], - "start_col": 15, - "start_line": 131 - }, - "While handling calldata argument 'token_id'" - ], - "start_col": 22, - "start_line": 2 - } - }, - "382": { - "accessible_scopes": [ - "interfaces", - "interfaces.IStarknetId", - "interfaces.IStarknetId.mint" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 29, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/contract_interface/IStarknetId/mint/f331841f676ee38d6b90045cd4589cd9ff4e83c32234273d9e605b287d886cbc.cairo" - }, - "parent_location": [ - { - "end_col": 14, - "end_line": 131, - "input_file": { - "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/interfaces.cairo" - }, - "parent_location": [ - { - "end_col": 38, - "end_line": 42, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/starknet/common/syscalls.cairo" - }, - "parent_location": [ - { - "end_col": 33, - "end_line": 6, - "input_file": { - "filename": "autogen/starknet/contract_interface/IStarknetId/mint/304ae580b78eb48c6532c7788d73eef2a89dcd3c406dfb71c0bdbeacea1728ca.cairo" - }, - "parent_location": [ - { - "end_col": 14, - "end_line": 131, - "input_file": { - "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/interfaces.cairo" - }, - "start_col": 10, - "start_line": 131 - }, - "While handling contract interface function:" - ], - "start_col": 31, - "start_line": 2 - }, - "While trying to retrieve the implicit argument 'syscall_ptr' in:" - ], - "start_col": 20, - "start_line": 42 - }, - "While expanding the reference 'syscall_ptr' in:" - ], - "start_col": 10, - "start_line": 131 - }, - "While handling contract interface function:" - ], - "start_col": 11, - "start_line": 1 - } - }, - "383": { - "accessible_scopes": [ - "interfaces", - "interfaces.IStarknetId", - "interfaces.IStarknetId.mint" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 27, - "end_line": 2, - "input_file": { - "filename": "autogen/starknet/contract_interface/IStarknetId/mint/f331841f676ee38d6b90045cd4589cd9ff4e83c32234273d9e605b287d886cbc.cairo" - }, - "parent_location": [ - { - "end_col": 14, - "end_line": 131, - "input_file": { - "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/interfaces.cairo" - }, - "parent_location": [ - { - "end_col": 38, - "end_line": 3, - "input_file": { - "filename": "autogen/starknet/contract_interface/IStarknetId/mint/304ae580b78eb48c6532c7788d73eef2a89dcd3c406dfb71c0bdbeacea1728ca.cairo" - }, - "parent_location": [ - { - "end_col": 14, - "end_line": 131, - "input_file": { - "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/interfaces.cairo" - }, - "start_col": 10, - "start_line": 131 - }, - "While handling contract interface function:" - ], - "start_col": 22, - "start_line": 3 - }, - "While expanding the reference 'contract_address' in:" - ], - "start_col": 10, - "start_line": 131 - }, - "While handling contract interface function:" - ], - "start_col": 5, - "start_line": 2 - } - }, - "384": { - "accessible_scopes": [ - "interfaces", - "interfaces.IStarknetId", - "interfaces.IStarknetId.mint" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 36, - "end_line": 4, - "input_file": { - "filename": "autogen/starknet/contract_interface/IStarknetId/mint/304ae580b78eb48c6532c7788d73eef2a89dcd3c406dfb71c0bdbeacea1728ca.cairo" - }, - "parent_location": [ - { - "end_col": 14, - "end_line": 131, - "input_file": { - "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/interfaces.cairo" - }, - "start_col": 10, - "start_line": 131 - }, - "While handling contract interface function:" - ], - "start_col": 23, - "start_line": 4 - } - }, - "386": { - "accessible_scopes": [ - "interfaces", - "interfaces.IStarknetId", - "interfaces.IStarknetId.mint" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 54, - "end_line": 5, - "input_file": { - "filename": "autogen/starknet/contract_interface/IStarknetId/mint/304ae580b78eb48c6532c7788d73eef2a89dcd3c406dfb71c0bdbeacea1728ca.cairo" - }, - "parent_location": [ - { - "end_col": 14, - "end_line": 131, - "input_file": { - "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/interfaces.cairo" - }, - "start_col": 10, - "start_line": 131 - }, - "While handling contract interface function:" - ], - "start_col": 19, - "start_line": 5 - } - }, - "387": { - "accessible_scopes": [ - "interfaces", - "interfaces.IStarknetId", - "interfaces.IStarknetId.mint" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 30, - "end_line": 3, - "input_file": { - "filename": "autogen/starknet/contract_interface/IStarknetId/mint/64f7842b108e76706927b78270ac73c789c558c54431b3359e4441e63ec2a868.cairo" - }, - "parent_location": [ - { - "end_col": 14, - "end_line": 131, - "input_file": { - "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/interfaces.cairo" - }, - "parent_location": [ - { - "end_col": 32, - "end_line": 6, - "input_file": { - "filename": "autogen/starknet/contract_interface/IStarknetId/mint/304ae580b78eb48c6532c7788d73eef2a89dcd3c406dfb71c0bdbeacea1728ca.cairo" - }, - "parent_location": [ - { - "end_col": 14, - "end_line": 131, - "input_file": { - "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/interfaces.cairo" - }, - "start_col": 10, - "start_line": 131 - }, - "While handling contract interface function:" - ], - "start_col": 14, - "start_line": 6 - }, - "While expanding the reference 'calldata_ptr_start' in:" - ], - "start_col": 10, - "start_line": 131 - }, - "While handling contract interface function:" - ], - "start_col": 12, - "start_line": 3 - } - }, - "388": { - "accessible_scopes": [ - "interfaces", - "interfaces.IStarknetId", - "interfaces.IStarknetId.mint" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 33, - "end_line": 6, - "input_file": { - "filename": "autogen/starknet/contract_interface/IStarknetId/mint/304ae580b78eb48c6532c7788d73eef2a89dcd3c406dfb71c0bdbeacea1728ca.cairo" - }, - "parent_location": [ - { - "end_col": 14, - "end_line": 131, - "input_file": { - "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/interfaces.cairo" - }, - "start_col": 10, - "start_line": 131 - }, - "While handling contract interface function:" - ], - "start_col": 31, - "start_line": 2 - } - }, - "390": { - "accessible_scopes": [ - "interfaces", - "interfaces.IStarknetId", - "interfaces.IStarknetId.mint" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 38, - "end_line": 42, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/starknet/common/syscalls.cairo" - }, - "parent_location": [ - { - "end_col": 33, - "end_line": 6, - "input_file": { - "filename": "autogen/starknet/contract_interface/IStarknetId/mint/304ae580b78eb48c6532c7788d73eef2a89dcd3c406dfb71c0bdbeacea1728ca.cairo" - }, - "parent_location": [ - { - "end_col": 14, - "end_line": 131, - "input_file": { - "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/interfaces.cairo" - }, - "parent_location": [ - { - "end_col": 29, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/contract_interface/IStarknetId/mint/f331841f676ee38d6b90045cd4589cd9ff4e83c32234273d9e605b287d886cbc.cairo" - }, - "parent_location": [ - { - "end_col": 14, - "end_line": 131, - "input_file": { - "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/interfaces.cairo" - }, - "parent_location": [ - { - "end_col": 11, - "end_line": 2, - "input_file": { - "filename": "autogen/starknet/contract_interface/IStarknetId/mint/fb06bdf6e8fa9c7ff7d919d712d494716b0b586b2a762687cfb72d93da06ab29.cairo" - }, - "parent_location": [ - { - "end_col": 14, - "end_line": 131, - "input_file": { - "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/interfaces.cairo" - }, - "start_col": 10, - "start_line": 131 - }, - "While handling contract interface function:" - ], - "start_col": 1, - "start_line": 2 - }, - "While trying to retrieve the implicit argument 'syscall_ptr' in:" - ], - "start_col": 10, - "start_line": 131 - }, - "While handling contract interface function:" - ], - "start_col": 11, - "start_line": 1 - }, - "While expanding the reference 'syscall_ptr' in:" - ], - "start_col": 10, - "start_line": 131 - }, - "While handling contract interface function:" - ], - "start_col": 31, - "start_line": 2 - }, - "While trying to update the implicit return value 'syscall_ptr' in:" - ], - "start_col": 20, - "start_line": 42 - } - }, - "391": { - "accessible_scopes": [ - "interfaces", - "interfaces.IStarknetId", - "interfaces.IStarknetId.mint" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 46, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/contract_interface/IStarknetId/mint/f331841f676ee38d6b90045cd4589cd9ff4e83c32234273d9e605b287d886cbc.cairo" - }, - "parent_location": [ - { - "end_col": 14, - "end_line": 131, - "input_file": { - "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/interfaces.cairo" - }, - "parent_location": [ - { - "end_col": 46, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/contract_interface/IStarknetId/mint/f331841f676ee38d6b90045cd4589cd9ff4e83c32234273d9e605b287d886cbc.cairo" - }, - "parent_location": [ - { - "end_col": 14, - "end_line": 131, - "input_file": { - "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/interfaces.cairo" - }, - "parent_location": [ - { - "end_col": 11, - "end_line": 2, - "input_file": { - "filename": "autogen/starknet/contract_interface/IStarknetId/mint/fb06bdf6e8fa9c7ff7d919d712d494716b0b586b2a762687cfb72d93da06ab29.cairo" - }, - "parent_location": [ - { - "end_col": 14, - "end_line": 131, - "input_file": { - "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/interfaces.cairo" - }, - "start_col": 10, - "start_line": 131 - }, - "While handling contract interface function:" - ], - "start_col": 1, - "start_line": 2 - }, - "While trying to retrieve the implicit argument 'range_check_ptr' in:" - ], - "start_col": 10, - "start_line": 131 - }, - "While handling contract interface function:" - ], - "start_col": 31, - "start_line": 1 - }, - "While expanding the reference 'range_check_ptr' in:" - ], - "start_col": 10, - "start_line": 131 - }, - "While handling contract interface function:" - ], - "start_col": 31, - "start_line": 1 - } - }, - "392": { - "accessible_scopes": [ - "interfaces", - "interfaces.IStarknetId", - "interfaces.IStarknetId.mint" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 11, - "end_line": 2, - "input_file": { - "filename": "autogen/starknet/contract_interface/IStarknetId/mint/fb06bdf6e8fa9c7ff7d919d712d494716b0b586b2a762687cfb72d93da06ab29.cairo" - }, - "parent_location": [ - { - "end_col": 14, - "end_line": 131, - "input_file": { - "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/interfaces.cairo" - }, - "start_col": 10, - "start_line": 131 - }, - "While handling contract interface function:" - ], - "start_col": 1, - "start_line": 2 - } - }, - "393": { - "accessible_scopes": [ - "interfaces", - "interfaces.ISheet", - "interfaces.ISheet.owner" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 14, - "end_line": 2, - "input_file": { - "filename": "autogen/starknet/contract_interface/ISheet/owner/64f7842b108e76706927b78270ac73c789c558c54431b3359e4441e63ec2a868.cairo" - }, - "parent_location": [ - { - "end_col": 15, - "end_line": 148, - "input_file": { - "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/interfaces.cairo" - }, - "start_col": 10, - "start_line": 148 - }, - "While handling contract interface function:" - ], - "start_col": 1, - "start_line": 2 - } - }, - "395": { - "accessible_scopes": [ - "interfaces", - "interfaces.ISheet", - "interfaces.ISheet.owner" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 48, - "end_line": 3, - "input_file": { - "filename": "autogen/starknet/contract_interface/ISheet/owner/64f7842b108e76706927b78270ac73c789c558c54431b3359e4441e63ec2a868.cairo" - }, - "parent_location": [ - { - "end_col": 15, - "end_line": 148, - "input_file": { - "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/interfaces.cairo" - }, - "start_col": 10, - "start_line": 148 - }, - "While handling contract interface function:" - ], - "start_col": 41, - "start_line": 3 - } - }, - "397": { - "accessible_scopes": [ - "interfaces", - "interfaces.ISheet", - "interfaces.ISheet.owner" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 37, - "end_line": 3, - "input_file": { - "filename": "autogen/starknet/contract_interface/ISheet/owner/64f7842b108e76706927b78270ac73c789c558c54431b3359e4441e63ec2a868.cairo" - }, - "parent_location": [ - { - "end_col": 15, - "end_line": 148, - "input_file": { - "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/interfaces.cairo" - }, - "start_col": 10, - "start_line": 148 - }, - "While handling contract interface function:" - ], - "start_col": 6, - "start_line": 3 - } - }, - "398": { - "accessible_scopes": [ - "interfaces", - "interfaces.ISheet", - "interfaces.ISheet.owner" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 30, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/contract_interface/ISheet/owner/22582a63896341a02082fe651af1a1a0d12d424aa15261ad533b6f55c1ec75c3.cairo" - }, - "parent_location": [ - { - "end_col": 15, - "end_line": 148, - "input_file": { - "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/interfaces.cairo" - }, - "parent_location": [ - { - "end_col": 38, - "end_line": 42, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/starknet/common/syscalls.cairo" - }, - "parent_location": [ - { - "end_col": 33, - "end_line": 6, - "input_file": { - "filename": "autogen/starknet/contract_interface/ISheet/owner/d6432f636a9cf469d5e047691edceee10efd4bb8aec9947429ec0a24226add14.cairo" - }, - "parent_location": [ - { - "end_col": 15, - "end_line": 148, - "input_file": { - "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/interfaces.cairo" - }, - "start_col": 10, - "start_line": 148 - }, - "While handling contract interface function:" - ], - "start_col": 31, - "start_line": 2 - }, - "While trying to retrieve the implicit argument 'syscall_ptr' in:" - ], - "start_col": 20, - "start_line": 42 - }, - "While expanding the reference 'syscall_ptr' in:" - ], - "start_col": 10, - "start_line": 148 - }, - "While handling contract interface function:" - ], - "start_col": 12, - "start_line": 1 - } - }, - "399": { - "accessible_scopes": [ - "interfaces", - "interfaces.ISheet", - "interfaces.ISheet.owner" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 27, - "end_line": 2, - "input_file": { - "filename": "autogen/starknet/contract_interface/ISheet/owner/22582a63896341a02082fe651af1a1a0d12d424aa15261ad533b6f55c1ec75c3.cairo" - }, - "parent_location": [ - { - "end_col": 15, - "end_line": 148, - "input_file": { - "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/interfaces.cairo" - }, - "parent_location": [ - { - "end_col": 38, - "end_line": 3, - "input_file": { - "filename": "autogen/starknet/contract_interface/ISheet/owner/d6432f636a9cf469d5e047691edceee10efd4bb8aec9947429ec0a24226add14.cairo" - }, - "parent_location": [ - { - "end_col": 15, - "end_line": 148, - "input_file": { - "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/interfaces.cairo" - }, - "start_col": 10, - "start_line": 148 - }, - "While handling contract interface function:" - ], - "start_col": 22, - "start_line": 3 - }, - "While expanding the reference 'contract_address' in:" - ], - "start_col": 10, - "start_line": 148 - }, - "While handling contract interface function:" - ], - "start_col": 5, - "start_line": 2 - } - }, - "400": { - "accessible_scopes": [ - "interfaces", - "interfaces.ISheet", - "interfaces.ISheet.owner" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 37, - "end_line": 4, - "input_file": { - "filename": "autogen/starknet/contract_interface/ISheet/owner/d6432f636a9cf469d5e047691edceee10efd4bb8aec9947429ec0a24226add14.cairo" - }, - "parent_location": [ - { - "end_col": 15, - "end_line": 148, - "input_file": { - "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/interfaces.cairo" - }, - "start_col": 10, - "start_line": 148 - }, - "While handling contract interface function:" - ], - "start_col": 23, - "start_line": 4 - } - }, - "402": { - "accessible_scopes": [ - "interfaces", - "interfaces.ISheet", - "interfaces.ISheet.owner" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 54, - "end_line": 5, - "input_file": { - "filename": "autogen/starknet/contract_interface/ISheet/owner/d6432f636a9cf469d5e047691edceee10efd4bb8aec9947429ec0a24226add14.cairo" - }, - "parent_location": [ - { - "end_col": 15, - "end_line": 148, - "input_file": { - "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/interfaces.cairo" - }, - "start_col": 10, - "start_line": 148 - }, - "While handling contract interface function:" - ], - "start_col": 19, - "start_line": 5 - } - }, - "403": { - "accessible_scopes": [ - "interfaces", - "interfaces.ISheet", - "interfaces.ISheet.owner" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 30, - "end_line": 3, - "input_file": { - "filename": "autogen/starknet/contract_interface/ISheet/owner/64f7842b108e76706927b78270ac73c789c558c54431b3359e4441e63ec2a868.cairo" - }, - "parent_location": [ - { - "end_col": 15, - "end_line": 148, - "input_file": { - "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/interfaces.cairo" - }, - "parent_location": [ - { - "end_col": 32, - "end_line": 6, - "input_file": { - "filename": "autogen/starknet/contract_interface/ISheet/owner/d6432f636a9cf469d5e047691edceee10efd4bb8aec9947429ec0a24226add14.cairo" - }, - "parent_location": [ - { - "end_col": 15, - "end_line": 148, - "input_file": { - "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/interfaces.cairo" - }, - "start_col": 10, - "start_line": 148 - }, - "While handling contract interface function:" - ], - "start_col": 14, - "start_line": 6 - }, - "While expanding the reference 'calldata_ptr_start' in:" - ], - "start_col": 10, - "start_line": 148 - }, - "While handling contract interface function:" - ], - "start_col": 12, - "start_line": 3 - } - }, - "404": { - "accessible_scopes": [ - "interfaces", - "interfaces.ISheet", - "interfaces.ISheet.owner" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 33, - "end_line": 6, - "input_file": { - "filename": "autogen/starknet/contract_interface/ISheet/owner/d6432f636a9cf469d5e047691edceee10efd4bb8aec9947429ec0a24226add14.cairo" - }, - "parent_location": [ - { - "end_col": 15, - "end_line": 148, - "input_file": { - "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/interfaces.cairo" - }, - "start_col": 10, - "start_line": 148 - }, - "While handling contract interface function:" - ], - "start_col": 31, - "start_line": 2 - } - }, - "406": { - "accessible_scopes": [ - "interfaces", - "interfaces.ISheet", - "interfaces.ISheet.owner" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 48, - "end_line": 2, - "input_file": { - "filename": "autogen/starknet/arg_processor/b7edf9a707658e9625a029e4f8ceaf32e1a47f454aa4132472642fd2ef404947.cairo" - }, - "parent_location": [ - { - "end_col": 33, - "end_line": 148, - "input_file": { - "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/interfaces.cairo" - }, - "parent_location": [ - { - "end_col": 53, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/arg_processor/accb388bcbbace5b6218198851efaad2a781c1339e305a37fab51afe90a3194a.cairo" - }, - "parent_location": [ - { - "end_col": 15, - "end_line": 148, - "input_file": { - "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/interfaces.cairo" - }, - "parent_location": [ - { - "end_col": 49, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/arg_processor/96447016176d161dae83f414c4d3e33e78856e0ef69bc33f8d419f1c9b90f9c5.cairo" - }, - "parent_location": [ - { - "end_col": 15, - "end_line": 148, - "input_file": { - "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/interfaces.cairo" - }, - "start_col": 10, - "start_line": 148 - }, - "While handling return values of" - ], - "start_col": 23, - "start_line": 1 - }, - "While expanding the reference '__return_value_actual_size' in:" - ], - "start_col": 10, - "start_line": 148 - }, - "While handling return values of" - ], - "start_col": 35, - "start_line": 1 - }, - "While expanding the reference '__return_value_ptr' in:" - ], - "start_col": 22, - "start_line": 148 - }, - "While handling return value 'owner'" - ], - "start_col": 26, - "start_line": 2 - } - }, - "408": { - "accessible_scopes": [ - "interfaces", - "interfaces.ISheet", - "interfaces.ISheet.owner" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 50, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/arg_processor/96447016176d161dae83f414c4d3e33e78856e0ef69bc33f8d419f1c9b90f9c5.cairo" - }, - "parent_location": [ - { - "end_col": 15, - "end_line": 148, - "input_file": { - "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/interfaces.cairo" - }, - "start_col": 10, - "start_line": 148 - }, - "While handling return values of" - ], - "start_col": 1, - "start_line": 1 - } - }, - "409": { - "accessible_scopes": [ - "interfaces", - "interfaces.ISheet", - "interfaces.ISheet.owner" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 38, - "end_line": 42, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/starknet/common/syscalls.cairo" - }, - "parent_location": [ - { - "end_col": 33, - "end_line": 6, - "input_file": { - "filename": "autogen/starknet/contract_interface/ISheet/owner/d6432f636a9cf469d5e047691edceee10efd4bb8aec9947429ec0a24226add14.cairo" - }, - "parent_location": [ - { - "end_col": 15, - "end_line": 148, - "input_file": { - "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/interfaces.cairo" - }, - "parent_location": [ - { - "end_col": 30, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/contract_interface/ISheet/owner/22582a63896341a02082fe651af1a1a0d12d424aa15261ad533b6f55c1ec75c3.cairo" - }, - "parent_location": [ - { - "end_col": 15, - "end_line": 148, - "input_file": { - "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/interfaces.cairo" - }, - "parent_location": [ - { - "end_col": 42, - "end_line": 2, - "input_file": { - "filename": "autogen/starknet/contract_interface/ISheet/owner/fca49af674c76ce3d2f65b1e9d948f7383b8387a04ac56bc19679709d3c57b4e.cairo" - }, - "parent_location": [ - { - "end_col": 15, - "end_line": 148, - "input_file": { - "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/interfaces.cairo" - }, - "start_col": 10, - "start_line": 148 - }, - "While handling contract interface function:" - ], - "start_col": 1, - "start_line": 2 - }, - "While trying to retrieve the implicit argument 'syscall_ptr' in:" - ], - "start_col": 10, - "start_line": 148 - }, - "While handling contract interface function:" - ], - "start_col": 12, - "start_line": 1 - }, - "While expanding the reference 'syscall_ptr' in:" - ], - "start_col": 10, - "start_line": 148 - }, - "While handling contract interface function:" - ], - "start_col": 31, - "start_line": 2 - }, - "While trying to update the implicit return value 'syscall_ptr' in:" - ], - "start_col": 20, - "start_line": 42 - } - }, - "410": { - "accessible_scopes": [ - "interfaces", - "interfaces.ISheet", - "interfaces.ISheet.owner" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 47, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/contract_interface/ISheet/owner/22582a63896341a02082fe651af1a1a0d12d424aa15261ad533b6f55c1ec75c3.cairo" - }, - "parent_location": [ - { - "end_col": 15, - "end_line": 148, - "input_file": { - "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/interfaces.cairo" - }, - "parent_location": [ - { - "end_col": 47, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/contract_interface/ISheet/owner/22582a63896341a02082fe651af1a1a0d12d424aa15261ad533b6f55c1ec75c3.cairo" - }, - "parent_location": [ - { - "end_col": 15, - "end_line": 148, - "input_file": { - "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/interfaces.cairo" - }, - "parent_location": [ - { - "end_col": 42, - "end_line": 2, - "input_file": { - "filename": "autogen/starknet/contract_interface/ISheet/owner/fca49af674c76ce3d2f65b1e9d948f7383b8387a04ac56bc19679709d3c57b4e.cairo" - }, - "parent_location": [ - { - "end_col": 15, - "end_line": 148, - "input_file": { - "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/interfaces.cairo" - }, - "start_col": 10, - "start_line": 148 - }, - "While handling contract interface function:" - ], - "start_col": 1, - "start_line": 2 - }, - "While trying to retrieve the implicit argument 'range_check_ptr' in:" - ], - "start_col": 10, - "start_line": 148 - }, - "While handling contract interface function:" - ], - "start_col": 32, - "start_line": 1 - }, - "While expanding the reference 'range_check_ptr' in:" - ], - "start_col": 10, - "start_line": 148 - }, - "While handling contract interface function:" - ], - "start_col": 32, - "start_line": 1 - } - }, - "411": { - "accessible_scopes": [ - "interfaces", - "interfaces.ISheet", - "interfaces.ISheet.owner" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 52, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/arg_processor/b7edf9a707658e9625a029e4f8ceaf32e1a47f454aa4132472642fd2ef404947.cairo" - }, - "parent_location": [ - { - "end_col": 33, - "end_line": 148, - "input_file": { - "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/interfaces.cairo" - }, - "parent_location": [ - { - "end_col": 39, - "end_line": 2, - "input_file": { - "filename": "autogen/starknet/contract_interface/ISheet/owner/fca49af674c76ce3d2f65b1e9d948f7383b8387a04ac56bc19679709d3c57b4e.cairo" - }, - "parent_location": [ - { - "end_col": 15, - "end_line": 148, - "input_file": { - "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/interfaces.cairo" - }, - "start_col": 10, - "start_line": 148 - }, - "While handling contract interface function:" - ], - "start_col": 15, - "start_line": 2 - }, - "While expanding the reference '__return_value_arg_owner' in:" - ], - "start_col": 22, - "start_line": 148 - }, - "While handling return value 'owner'" - ], - "start_col": 32, - "start_line": 1 - } - }, - "412": { - "accessible_scopes": [ - "interfaces", - "interfaces.ISheet", - "interfaces.ISheet.owner" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 42, - "end_line": 2, - "input_file": { - "filename": "autogen/starknet/contract_interface/ISheet/owner/fca49af674c76ce3d2f65b1e9d948f7383b8387a04ac56bc19679709d3c57b4e.cairo" - }, - "parent_location": [ - { - "end_col": 15, - "end_line": 148, - "input_file": { - "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/interfaces.cairo" - }, - "start_col": 10, - "start_line": 148 - }, - "While handling contract interface function:" - ], - "start_col": 1, - "start_line": 2 - } - }, - "413": { - "accessible_scopes": [ - "__main__", - "__main__._naming_contract", - "__main__._naming_contract.addr" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 41, - "end_line": 7, - "input_file": { - "filename": "autogen/starknet/storage_var/_naming_contract/impl.cairo" - }, - "parent_location": [ - { - "end_col": 41, - "end_line": 7, - "input_file": { - "filename": "autogen/starknet/storage_var/_naming_contract/decl.cairo" - }, - "parent_location": [ - { - "end_col": 26, - "end_line": 9, - "input_file": { - "filename": "autogen/starknet/storage_var/_naming_contract/impl.cairo" - }, - "start_col": 9, - "start_line": 9 - }, - "While trying to retrieve the implicit argument 'pedersen_ptr' in:" - ], - "start_col": 15, - "start_line": 7 - }, - "While expanding the reference 'pedersen_ptr' in:" - ], - "start_col": 15, - "start_line": 7 - } - }, - "414": { - "accessible_scopes": [ - "__main__", - "__main__._naming_contract", - "__main__._naming_contract.addr" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 58, - "end_line": 7, - "input_file": { - "filename": "autogen/starknet/storage_var/_naming_contract/impl.cairo" - }, - "parent_location": [ - { - "end_col": 58, - "end_line": 7, - "input_file": { - "filename": "autogen/starknet/storage_var/_naming_contract/decl.cairo" - }, - "parent_location": [ - { - "end_col": 26, - "end_line": 9, - "input_file": { - "filename": "autogen/starknet/storage_var/_naming_contract/impl.cairo" - }, - "start_col": 9, - "start_line": 9 - }, - "While trying to retrieve the implicit argument 'range_check_ptr' in:" - ], - "start_col": 43, - "start_line": 7 - }, - "While expanding the reference 'range_check_ptr' in:" - ], - "start_col": 43, - "start_line": 7 - } - }, - "415": { - "accessible_scopes": [ - "__main__", - "__main__._naming_contract", - "__main__._naming_contract.addr" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 94, - "end_line": 8, - "input_file": { - "filename": "autogen/starknet/storage_var/_naming_contract/impl.cairo" - }, - "parent_location": [ - { - "end_col": 24, - "end_line": 9, - "input_file": { - "filename": "autogen/starknet/storage_var/_naming_contract/impl.cairo" - }, - "start_col": 21, - "start_line": 9 - }, - "While expanding the reference 'res' in:" - ], - "start_col": 19, - "start_line": 8 - } - }, - "417": { - "accessible_scopes": [ - "__main__", - "__main__._naming_contract", - "__main__._naming_contract.addr" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 26, - "end_line": 9, - "input_file": { - "filename": "autogen/starknet/storage_var/_naming_contract/impl.cairo" - }, - "start_col": 9, - "start_line": 9 - } - }, - "418": { - "accessible_scopes": [ - "__main__", - "__main__._naming_contract", - "__main__._naming_contract.read" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 61, - "end_line": 12, - "input_file": { - "filename": "autogen/starknet/storage_var/_naming_contract/impl.cairo" - }, - "parent_location": [ - { - "end_col": 41, - "end_line": 7, - "input_file": { - "filename": "autogen/starknet/storage_var/_naming_contract/decl.cairo" - }, - "parent_location": [ - { - "end_col": 36, - "end_line": 15, - "input_file": { - "filename": "autogen/starknet/storage_var/_naming_contract/impl.cairo" - }, - "start_col": 30, - "start_line": 15 - }, - "While trying to retrieve the implicit argument 'pedersen_ptr' in:" - ], - "start_col": 15, - "start_line": 7 - }, - "While expanding the reference 'pedersen_ptr' in:" - ], - "start_col": 35, - "start_line": 12 - } - }, - "419": { - "accessible_scopes": [ - "__main__", - "__main__._naming_contract", - "__main__._naming_contract.read" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 78, - "end_line": 12, - "input_file": { - "filename": "autogen/starknet/storage_var/_naming_contract/impl.cairo" - }, - "parent_location": [ - { - "end_col": 58, - "end_line": 7, - "input_file": { - "filename": "autogen/starknet/storage_var/_naming_contract/decl.cairo" - }, - "parent_location": [ - { - "end_col": 36, - "end_line": 15, - "input_file": { - "filename": "autogen/starknet/storage_var/_naming_contract/impl.cairo" - }, - "start_col": 30, - "start_line": 15 - }, - "While trying to retrieve the implicit argument 'range_check_ptr' in:" - ], - "start_col": 43, - "start_line": 7 - }, - "While expanding the reference 'range_check_ptr' in:" - ], - "start_col": 63, - "start_line": 12 - } - }, - "420": { - "accessible_scopes": [ - "__main__", - "__main__._naming_contract", - "__main__._naming_contract.read" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 36, - "end_line": 15, - "input_file": { - "filename": "autogen/starknet/storage_var/_naming_contract/impl.cairo" - }, - "start_col": 30, - "start_line": 15 - } - }, - "422": { - "accessible_scopes": [ - "__main__", - "__main__._naming_contract", - "__main__._naming_contract.read" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 33, - "end_line": 12, - "input_file": { - "filename": "autogen/starknet/storage_var/_naming_contract/impl.cairo" - }, - "parent_location": [ - { - "end_col": 37, - "end_line": 352, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/starknet/common/syscalls.cairo" - }, - "parent_location": [ - { - "end_col": 75, - "end_line": 16, - "input_file": { - "filename": "autogen/starknet/storage_var/_naming_contract/impl.cairo" - }, - "start_col": 37, - "start_line": 16 - }, - "While trying to retrieve the implicit argument 'syscall_ptr' in:" - ], - "start_col": 19, - "start_line": 352 - }, - "While expanding the reference 'syscall_ptr' in:" - ], - "start_col": 15, - "start_line": 12 - } - }, - "423": { - "accessible_scopes": [ - "__main__", - "__main__._naming_contract", - "__main__._naming_contract.read" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 26, - "end_line": 15, - "input_file": { - "filename": "autogen/starknet/storage_var/_naming_contract/impl.cairo" - }, - "parent_location": [ - { - "end_col": 70, - "end_line": 16, - "input_file": { - "filename": "autogen/starknet/storage_var/_naming_contract/impl.cairo" - }, - "start_col": 58, - "start_line": 16 - }, - "While expanding the reference 'storage_addr' in:" - ], - "start_col": 14, - "start_line": 15 - } - }, - "424": { - "accessible_scopes": [ - "__main__", - "__main__._naming_contract", - "__main__._naming_contract.read" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 75, - "end_line": 16, - "input_file": { - "filename": "autogen/starknet/storage_var/_naming_contract/impl.cairo" - }, - "start_col": 37, - "start_line": 16 - } - }, - "426": { - "accessible_scopes": [ - "__main__", - "__main__._naming_contract", - "__main__._naming_contract.read" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 37, - "end_line": 352, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/starknet/common/syscalls.cairo" - }, - "parent_location": [ - { - "end_col": 75, - "end_line": 16, - "input_file": { - "filename": "autogen/starknet/storage_var/_naming_contract/impl.cairo" - }, - "parent_location": [ - { - "end_col": 42, - "end_line": 18, - "input_file": { - "filename": "autogen/starknet/storage_var/_naming_contract/impl.cairo" - }, - "start_col": 31, - "start_line": 18 - }, - "While expanding the reference 'syscall_ptr' in:" - ], - "start_col": 37, - "start_line": 16 - }, - "While trying to update the implicit return value 'syscall_ptr' in:" - ], - "start_col": 19, - "start_line": 352 - } - }, - "427": { - "accessible_scopes": [ - "__main__", - "__main__._naming_contract", - "__main__._naming_contract.read" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 41, - "end_line": 7, - "input_file": { - "filename": "autogen/starknet/storage_var/_naming_contract/decl.cairo" - }, - "parent_location": [ - { - "end_col": 36, - "end_line": 15, - "input_file": { - "filename": "autogen/starknet/storage_var/_naming_contract/impl.cairo" - }, - "parent_location": [ - { - "end_col": 44, - "end_line": 19, - "input_file": { - "filename": "autogen/starknet/storage_var/_naming_contract/impl.cairo" - }, - "start_col": 32, - "start_line": 19 - }, - "While expanding the reference 'pedersen_ptr' in:" - ], - "start_col": 30, - "start_line": 15 - }, - "While trying to update the implicit return value 'pedersen_ptr' in:" - ], - "start_col": 15, - "start_line": 7 - } - }, - "428": { - "accessible_scopes": [ - "__main__", - "__main__._naming_contract", - "__main__._naming_contract.read" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 58, - "end_line": 7, - "input_file": { - "filename": "autogen/starknet/storage_var/_naming_contract/decl.cairo" - }, - "parent_location": [ - { - "end_col": 36, - "end_line": 15, - "input_file": { - "filename": "autogen/starknet/storage_var/_naming_contract/impl.cairo" - }, - "parent_location": [ - { - "end_col": 50, - "end_line": 20, - "input_file": { - "filename": "autogen/starknet/storage_var/_naming_contract/impl.cairo" - }, - "start_col": 35, - "start_line": 20 - }, - "While expanding the reference 'range_check_ptr' in:" - ], - "start_col": 30, - "start_line": 15 - }, - "While trying to update the implicit return value 'range_check_ptr' in:" - ], - "start_col": 43, - "start_line": 7 - } - }, - "429": { - "accessible_scopes": [ - "__main__", - "__main__._naming_contract", - "__main__._naming_contract.read" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 33, - "end_line": 16, - "input_file": { - "filename": "autogen/starknet/storage_var/_naming_contract/impl.cairo" - }, - "parent_location": [ - { - "end_col": 64, - "end_line": 21, - "input_file": { - "filename": "autogen/starknet/storage_var/_naming_contract/impl.cairo" - }, - "start_col": 45, - "start_line": 21 - }, - "While expanding the reference '__storage_var_temp0' in:" - ], - "start_col": 14, - "start_line": 16 - } - }, - "430": { - "accessible_scopes": [ - "__main__", - "__main__._naming_contract", - "__main__._naming_contract.read" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 55, - "end_line": 22, - "input_file": { - "filename": "autogen/starknet/storage_var/_naming_contract/impl.cairo" - }, - "start_col": 9, - "start_line": 22 - } - }, - "431": { - "accessible_scopes": [ - "__main__", - "__main__._naming_contract", - "__main__._naming_contract.write" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 62, - "end_line": 25, - "input_file": { - "filename": "autogen/starknet/storage_var/_naming_contract/impl.cairo" - }, - "parent_location": [ - { - "end_col": 41, - "end_line": 7, - "input_file": { - "filename": "autogen/starknet/storage_var/_naming_contract/decl.cairo" - }, - "parent_location": [ - { - "end_col": 36, - "end_line": 26, - "input_file": { - "filename": "autogen/starknet/storage_var/_naming_contract/impl.cairo" - }, - "start_col": 30, - "start_line": 26 - }, - "While trying to retrieve the implicit argument 'pedersen_ptr' in:" - ], - "start_col": 15, - "start_line": 7 - }, - "While expanding the reference 'pedersen_ptr' in:" - ], - "start_col": 36, - "start_line": 25 - } - }, - "432": { - "accessible_scopes": [ - "__main__", - "__main__._naming_contract", - "__main__._naming_contract.write" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 79, - "end_line": 25, - "input_file": { - "filename": "autogen/starknet/storage_var/_naming_contract/impl.cairo" - }, - "parent_location": [ - { - "end_col": 58, - "end_line": 7, - "input_file": { - "filename": "autogen/starknet/storage_var/_naming_contract/decl.cairo" - }, - "parent_location": [ - { - "end_col": 36, - "end_line": 26, - "input_file": { - "filename": "autogen/starknet/storage_var/_naming_contract/impl.cairo" - }, - "start_col": 30, - "start_line": 26 - }, - "While trying to retrieve the implicit argument 'range_check_ptr' in:" - ], - "start_col": 43, - "start_line": 7 - }, - "While expanding the reference 'range_check_ptr' in:" - ], - "start_col": 64, - "start_line": 25 - } - }, - "433": { - "accessible_scopes": [ - "__main__", - "__main__._naming_contract", - "__main__._naming_contract.write" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 36, - "end_line": 26, - "input_file": { - "filename": "autogen/starknet/storage_var/_naming_contract/impl.cairo" - }, - "start_col": 30, - "start_line": 26 - } - }, - "435": { - "accessible_scopes": [ - "__main__", - "__main__._naming_contract", - "__main__._naming_contract.write" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 34, - "end_line": 25, - "input_file": { - "filename": "autogen/starknet/storage_var/_naming_contract/impl.cairo" - }, - "parent_location": [ - { - "end_col": 38, - "end_line": 370, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/starknet/common/syscalls.cairo" - }, - "parent_location": [ - { - "end_col": 80, - "end_line": 27, - "input_file": { - "filename": "autogen/starknet/storage_var/_naming_contract/impl.cairo" - }, - "start_col": 9, - "start_line": 27 - }, - "While trying to retrieve the implicit argument 'syscall_ptr' in:" - ], - "start_col": 20, - "start_line": 370 - }, - "While expanding the reference 'syscall_ptr' in:" - ], - "start_col": 16, - "start_line": 25 - } - }, - "436": { - "accessible_scopes": [ - "__main__", - "__main__._naming_contract", - "__main__._naming_contract.write" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 26, - "end_line": 26, - "input_file": { - "filename": "autogen/starknet/storage_var/_naming_contract/impl.cairo" - }, - "parent_location": [ - { - "end_col": 43, - "end_line": 27, - "input_file": { - "filename": "autogen/starknet/storage_var/_naming_contract/impl.cairo" - }, - "start_col": 31, - "start_line": 27 - }, - "While expanding the reference 'storage_addr' in:" - ], - "start_col": 14, - "start_line": 26 - } - }, - "437": { - "accessible_scopes": [ - "__main__", - "__main__._naming_contract", - "__main__._naming_contract.write" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 79, - "end_line": 27, - "input_file": { - "filename": "autogen/starknet/storage_var/_naming_contract/impl.cairo" - }, - "start_col": 55, - "start_line": 27 - } - }, - "438": { - "accessible_scopes": [ - "__main__", - "__main__._naming_contract", - "__main__._naming_contract.write" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 80, - "end_line": 27, - "input_file": { - "filename": "autogen/starknet/storage_var/_naming_contract/impl.cairo" - }, - "start_col": 9, - "start_line": 27 - } - }, - "440": { - "accessible_scopes": [ - "__main__", - "__main__._naming_contract", - "__main__._naming_contract.write" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 41, - "end_line": 7, - "input_file": { - "filename": "autogen/starknet/storage_var/_naming_contract/decl.cairo" - }, - "parent_location": [ - { - "end_col": 36, - "end_line": 26, - "input_file": { - "filename": "autogen/starknet/storage_var/_naming_contract/impl.cairo" - }, - "parent_location": [ - { - "end_col": 62, - "end_line": 21, - "input_file": { - "filename": "autogen/starknet/storage_var/_naming_contract/decl.cairo" - }, - "parent_location": [ - { - "end_col": 19, - "end_line": 28, - "input_file": { - "filename": "autogen/starknet/storage_var/_naming_contract/impl.cairo" - }, - "start_col": 9, - "start_line": 28 - }, - "While trying to retrieve the implicit argument 'pedersen_ptr' in:" - ], - "start_col": 36, - "start_line": 21 - }, - "While expanding the reference 'pedersen_ptr' in:" - ], - "start_col": 30, - "start_line": 26 - }, - "While trying to update the implicit return value 'pedersen_ptr' in:" - ], - "start_col": 15, - "start_line": 7 - } - }, - "441": { - "accessible_scopes": [ - "__main__", - "__main__._naming_contract", - "__main__._naming_contract.write" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 58, - "end_line": 7, - "input_file": { - "filename": "autogen/starknet/storage_var/_naming_contract/decl.cairo" - }, - "parent_location": [ - { - "end_col": 36, - "end_line": 26, - "input_file": { - "filename": "autogen/starknet/storage_var/_naming_contract/impl.cairo" - }, - "parent_location": [ - { - "end_col": 79, - "end_line": 21, - "input_file": { - "filename": "autogen/starknet/storage_var/_naming_contract/decl.cairo" - }, - "parent_location": [ - { - "end_col": 19, - "end_line": 28, - "input_file": { - "filename": "autogen/starknet/storage_var/_naming_contract/impl.cairo" - }, - "start_col": 9, - "start_line": 28 - }, - "While trying to retrieve the implicit argument 'range_check_ptr' in:" - ], - "start_col": 64, - "start_line": 21 - }, - "While expanding the reference 'range_check_ptr' in:" - ], - "start_col": 30, - "start_line": 26 - }, - "While trying to update the implicit return value 'range_check_ptr' in:" - ], - "start_col": 43, - "start_line": 7 - } - }, - "442": { - "accessible_scopes": [ - "__main__", - "__main__._naming_contract", - "__main__._naming_contract.write" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 19, - "end_line": 28, - "input_file": { - "filename": "autogen/starknet/storage_var/_naming_contract/impl.cairo" - }, - "start_col": 9, - "start_line": 28 - } - }, - "443": { - "accessible_scopes": [ - "__main__", - "__main__._starknetid_contract", - "__main__._starknetid_contract.addr" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 41, - "end_line": 7, - "input_file": { - "filename": "autogen/starknet/storage_var/_starknetid_contract/impl.cairo" - }, - "parent_location": [ - { - "end_col": 41, - "end_line": 7, - "input_file": { - "filename": "autogen/starknet/storage_var/_starknetid_contract/decl.cairo" - }, - "parent_location": [ - { - "end_col": 26, - "end_line": 9, - "input_file": { - "filename": "autogen/starknet/storage_var/_starknetid_contract/impl.cairo" - }, - "start_col": 9, - "start_line": 9 - }, - "While trying to retrieve the implicit argument 'pedersen_ptr' in:" - ], - "start_col": 15, - "start_line": 7 - }, - "While expanding the reference 'pedersen_ptr' in:" - ], - "start_col": 15, - "start_line": 7 - } - }, - "444": { - "accessible_scopes": [ - "__main__", - "__main__._starknetid_contract", - "__main__._starknetid_contract.addr" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 58, - "end_line": 7, - "input_file": { - "filename": "autogen/starknet/storage_var/_starknetid_contract/impl.cairo" - }, - "parent_location": [ - { - "end_col": 58, - "end_line": 7, - "input_file": { - "filename": "autogen/starknet/storage_var/_starknetid_contract/decl.cairo" - }, - "parent_location": [ - { - "end_col": 26, - "end_line": 9, - "input_file": { - "filename": "autogen/starknet/storage_var/_starknetid_contract/impl.cairo" - }, - "start_col": 9, - "start_line": 9 - }, - "While trying to retrieve the implicit argument 'range_check_ptr' in:" - ], - "start_col": 43, - "start_line": 7 - }, - "While expanding the reference 'range_check_ptr' in:" - ], - "start_col": 43, - "start_line": 7 - } - }, - "445": { - "accessible_scopes": [ - "__main__", - "__main__._starknetid_contract", - "__main__._starknetid_contract.addr" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 95, - "end_line": 8, - "input_file": { - "filename": "autogen/starknet/storage_var/_starknetid_contract/impl.cairo" - }, - "parent_location": [ - { - "end_col": 24, - "end_line": 9, - "input_file": { - "filename": "autogen/starknet/storage_var/_starknetid_contract/impl.cairo" - }, - "start_col": 21, - "start_line": 9 - }, - "While expanding the reference 'res' in:" - ], - "start_col": 19, - "start_line": 8 - } - }, - "447": { - "accessible_scopes": [ - "__main__", - "__main__._starknetid_contract", - "__main__._starknetid_contract.addr" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 26, - "end_line": 9, - "input_file": { - "filename": "autogen/starknet/storage_var/_starknetid_contract/impl.cairo" - }, - "start_col": 9, - "start_line": 9 - } - }, - "448": { - "accessible_scopes": [ - "__main__", - "__main__._starknetid_contract", - "__main__._starknetid_contract.read" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 61, - "end_line": 12, - "input_file": { - "filename": "autogen/starknet/storage_var/_starknetid_contract/impl.cairo" - }, - "parent_location": [ - { - "end_col": 41, - "end_line": 7, - "input_file": { - "filename": "autogen/starknet/storage_var/_starknetid_contract/decl.cairo" - }, - "parent_location": [ - { - "end_col": 36, - "end_line": 15, - "input_file": { - "filename": "autogen/starknet/storage_var/_starknetid_contract/impl.cairo" - }, - "start_col": 30, - "start_line": 15 - }, - "While trying to retrieve the implicit argument 'pedersen_ptr' in:" - ], - "start_col": 15, - "start_line": 7 - }, - "While expanding the reference 'pedersen_ptr' in:" - ], - "start_col": 35, - "start_line": 12 - } - }, - "449": { - "accessible_scopes": [ - "__main__", - "__main__._starknetid_contract", - "__main__._starknetid_contract.read" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 78, - "end_line": 12, - "input_file": { - "filename": "autogen/starknet/storage_var/_starknetid_contract/impl.cairo" - }, - "parent_location": [ - { - "end_col": 58, - "end_line": 7, - "input_file": { - "filename": "autogen/starknet/storage_var/_starknetid_contract/decl.cairo" - }, - "parent_location": [ - { - "end_col": 36, - "end_line": 15, - "input_file": { - "filename": "autogen/starknet/storage_var/_starknetid_contract/impl.cairo" - }, - "start_col": 30, - "start_line": 15 - }, - "While trying to retrieve the implicit argument 'range_check_ptr' in:" - ], - "start_col": 43, - "start_line": 7 - }, - "While expanding the reference 'range_check_ptr' in:" - ], - "start_col": 63, - "start_line": 12 - } - }, - "450": { - "accessible_scopes": [ - "__main__", - "__main__._starknetid_contract", - "__main__._starknetid_contract.read" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 36, - "end_line": 15, - "input_file": { - "filename": "autogen/starknet/storage_var/_starknetid_contract/impl.cairo" - }, - "start_col": 30, - "start_line": 15 - } - }, - "452": { - "accessible_scopes": [ - "__main__", - "__main__._starknetid_contract", - "__main__._starknetid_contract.read" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 33, - "end_line": 12, - "input_file": { - "filename": "autogen/starknet/storage_var/_starknetid_contract/impl.cairo" - }, - "parent_location": [ - { - "end_col": 37, - "end_line": 352, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/starknet/common/syscalls.cairo" - }, - "parent_location": [ - { - "end_col": 75, - "end_line": 16, - "input_file": { - "filename": "autogen/starknet/storage_var/_starknetid_contract/impl.cairo" - }, - "start_col": 37, - "start_line": 16 - }, - "While trying to retrieve the implicit argument 'syscall_ptr' in:" - ], - "start_col": 19, - "start_line": 352 - }, - "While expanding the reference 'syscall_ptr' in:" - ], - "start_col": 15, - "start_line": 12 - } - }, - "453": { - "accessible_scopes": [ - "__main__", - "__main__._starknetid_contract", - "__main__._starknetid_contract.read" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 26, - "end_line": 15, - "input_file": { - "filename": "autogen/starknet/storage_var/_starknetid_contract/impl.cairo" - }, - "parent_location": [ - { - "end_col": 70, - "end_line": 16, - "input_file": { - "filename": "autogen/starknet/storage_var/_starknetid_contract/impl.cairo" - }, - "start_col": 58, - "start_line": 16 - }, - "While expanding the reference 'storage_addr' in:" - ], - "start_col": 14, - "start_line": 15 - } - }, - "454": { - "accessible_scopes": [ - "__main__", - "__main__._starknetid_contract", - "__main__._starknetid_contract.read" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 75, - "end_line": 16, - "input_file": { - "filename": "autogen/starknet/storage_var/_starknetid_contract/impl.cairo" - }, - "start_col": 37, - "start_line": 16 - } - }, - "456": { - "accessible_scopes": [ - "__main__", - "__main__._starknetid_contract", - "__main__._starknetid_contract.read" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 37, - "end_line": 352, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/starknet/common/syscalls.cairo" - }, - "parent_location": [ - { - "end_col": 75, - "end_line": 16, - "input_file": { - "filename": "autogen/starknet/storage_var/_starknetid_contract/impl.cairo" - }, - "parent_location": [ - { - "end_col": 42, - "end_line": 18, - "input_file": { - "filename": "autogen/starknet/storage_var/_starknetid_contract/impl.cairo" - }, - "start_col": 31, - "start_line": 18 - }, - "While expanding the reference 'syscall_ptr' in:" - ], - "start_col": 37, - "start_line": 16 - }, - "While trying to update the implicit return value 'syscall_ptr' in:" - ], - "start_col": 19, - "start_line": 352 - } - }, - "457": { - "accessible_scopes": [ - "__main__", - "__main__._starknetid_contract", - "__main__._starknetid_contract.read" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 41, - "end_line": 7, - "input_file": { - "filename": "autogen/starknet/storage_var/_starknetid_contract/decl.cairo" - }, - "parent_location": [ - { - "end_col": 36, - "end_line": 15, - "input_file": { - "filename": "autogen/starknet/storage_var/_starknetid_contract/impl.cairo" - }, - "parent_location": [ - { - "end_col": 44, - "end_line": 19, - "input_file": { - "filename": "autogen/starknet/storage_var/_starknetid_contract/impl.cairo" - }, - "start_col": 32, - "start_line": 19 - }, - "While expanding the reference 'pedersen_ptr' in:" - ], - "start_col": 30, - "start_line": 15 - }, - "While trying to update the implicit return value 'pedersen_ptr' in:" - ], - "start_col": 15, - "start_line": 7 - } - }, - "458": { - "accessible_scopes": [ - "__main__", - "__main__._starknetid_contract", - "__main__._starknetid_contract.read" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 58, - "end_line": 7, - "input_file": { - "filename": "autogen/starknet/storage_var/_starknetid_contract/decl.cairo" - }, - "parent_location": [ - { - "end_col": 36, - "end_line": 15, - "input_file": { - "filename": "autogen/starknet/storage_var/_starknetid_contract/impl.cairo" - }, - "parent_location": [ - { - "end_col": 50, - "end_line": 20, - "input_file": { - "filename": "autogen/starknet/storage_var/_starknetid_contract/impl.cairo" - }, - "start_col": 35, - "start_line": 20 - }, - "While expanding the reference 'range_check_ptr' in:" - ], - "start_col": 30, - "start_line": 15 - }, - "While trying to update the implicit return value 'range_check_ptr' in:" - ], - "start_col": 43, - "start_line": 7 - } - }, - "459": { - "accessible_scopes": [ - "__main__", - "__main__._starknetid_contract", - "__main__._starknetid_contract.read" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 33, - "end_line": 16, - "input_file": { - "filename": "autogen/starknet/storage_var/_starknetid_contract/impl.cairo" - }, - "parent_location": [ - { - "end_col": 64, - "end_line": 21, - "input_file": { - "filename": "autogen/starknet/storage_var/_starknetid_contract/impl.cairo" - }, - "start_col": 45, - "start_line": 21 - }, - "While expanding the reference '__storage_var_temp0' in:" - ], - "start_col": 14, - "start_line": 16 - } - }, - "460": { - "accessible_scopes": [ - "__main__", - "__main__._starknetid_contract", - "__main__._starknetid_contract.read" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 55, - "end_line": 22, - "input_file": { - "filename": "autogen/starknet/storage_var/_starknetid_contract/impl.cairo" - }, - "start_col": 9, - "start_line": 22 - } - }, - "461": { - "accessible_scopes": [ - "__main__", - "__main__._starknetid_contract", - "__main__._starknetid_contract.write" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 62, - "end_line": 25, - "input_file": { - "filename": "autogen/starknet/storage_var/_starknetid_contract/impl.cairo" - }, - "parent_location": [ - { - "end_col": 41, - "end_line": 7, - "input_file": { - "filename": "autogen/starknet/storage_var/_starknetid_contract/decl.cairo" - }, - "parent_location": [ - { - "end_col": 36, - "end_line": 26, - "input_file": { - "filename": "autogen/starknet/storage_var/_starknetid_contract/impl.cairo" - }, - "start_col": 30, - "start_line": 26 - }, - "While trying to retrieve the implicit argument 'pedersen_ptr' in:" - ], - "start_col": 15, - "start_line": 7 - }, - "While expanding the reference 'pedersen_ptr' in:" - ], - "start_col": 36, - "start_line": 25 - } - }, - "462": { - "accessible_scopes": [ - "__main__", - "__main__._starknetid_contract", - "__main__._starknetid_contract.write" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 79, - "end_line": 25, - "input_file": { - "filename": "autogen/starknet/storage_var/_starknetid_contract/impl.cairo" - }, - "parent_location": [ - { - "end_col": 58, - "end_line": 7, - "input_file": { - "filename": "autogen/starknet/storage_var/_starknetid_contract/decl.cairo" - }, - "parent_location": [ - { - "end_col": 36, - "end_line": 26, - "input_file": { - "filename": "autogen/starknet/storage_var/_starknetid_contract/impl.cairo" - }, - "start_col": 30, - "start_line": 26 - }, - "While trying to retrieve the implicit argument 'range_check_ptr' in:" - ], - "start_col": 43, - "start_line": 7 - }, - "While expanding the reference 'range_check_ptr' in:" - ], - "start_col": 64, - "start_line": 25 - } - }, - "463": { - "accessible_scopes": [ - "__main__", - "__main__._starknetid_contract", - "__main__._starknetid_contract.write" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 36, - "end_line": 26, - "input_file": { - "filename": "autogen/starknet/storage_var/_starknetid_contract/impl.cairo" - }, - "start_col": 30, - "start_line": 26 - } - }, - "465": { - "accessible_scopes": [ - "__main__", - "__main__._starknetid_contract", - "__main__._starknetid_contract.write" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 34, - "end_line": 25, - "input_file": { - "filename": "autogen/starknet/storage_var/_starknetid_contract/impl.cairo" - }, - "parent_location": [ - { - "end_col": 38, - "end_line": 370, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/starknet/common/syscalls.cairo" - }, - "parent_location": [ - { - "end_col": 80, - "end_line": 27, - "input_file": { - "filename": "autogen/starknet/storage_var/_starknetid_contract/impl.cairo" - }, - "start_col": 9, - "start_line": 27 - }, - "While trying to retrieve the implicit argument 'syscall_ptr' in:" - ], - "start_col": 20, - "start_line": 370 - }, - "While expanding the reference 'syscall_ptr' in:" - ], - "start_col": 16, - "start_line": 25 - } - }, - "466": { - "accessible_scopes": [ - "__main__", - "__main__._starknetid_contract", - "__main__._starknetid_contract.write" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 26, - "end_line": 26, - "input_file": { - "filename": "autogen/starknet/storage_var/_starknetid_contract/impl.cairo" - }, - "parent_location": [ - { - "end_col": 43, - "end_line": 27, - "input_file": { - "filename": "autogen/starknet/storage_var/_starknetid_contract/impl.cairo" - }, - "start_col": 31, - "start_line": 27 - }, - "While expanding the reference 'storage_addr' in:" - ], - "start_col": 14, - "start_line": 26 - } - }, - "467": { - "accessible_scopes": [ - "__main__", - "__main__._starknetid_contract", - "__main__._starknetid_contract.write" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 79, - "end_line": 27, - "input_file": { - "filename": "autogen/starknet/storage_var/_starknetid_contract/impl.cairo" - }, - "start_col": 55, - "start_line": 27 - } - }, - "468": { - "accessible_scopes": [ - "__main__", - "__main__._starknetid_contract", - "__main__._starknetid_contract.write" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 80, - "end_line": 27, - "input_file": { - "filename": "autogen/starknet/storage_var/_starknetid_contract/impl.cairo" - }, - "start_col": 9, - "start_line": 27 - } - }, - "470": { - "accessible_scopes": [ - "__main__", - "__main__._starknetid_contract", - "__main__._starknetid_contract.write" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 41, - "end_line": 7, - "input_file": { - "filename": "autogen/starknet/storage_var/_starknetid_contract/decl.cairo" - }, - "parent_location": [ - { - "end_col": 36, - "end_line": 26, - "input_file": { - "filename": "autogen/starknet/storage_var/_starknetid_contract/impl.cairo" - }, - "parent_location": [ - { - "end_col": 62, - "end_line": 21, - "input_file": { - "filename": "autogen/starknet/storage_var/_starknetid_contract/decl.cairo" - }, - "parent_location": [ - { - "end_col": 19, - "end_line": 28, - "input_file": { - "filename": "autogen/starknet/storage_var/_starknetid_contract/impl.cairo" - }, - "start_col": 9, - "start_line": 28 - }, - "While trying to retrieve the implicit argument 'pedersen_ptr' in:" - ], - "start_col": 36, - "start_line": 21 - }, - "While expanding the reference 'pedersen_ptr' in:" - ], - "start_col": 30, - "start_line": 26 - }, - "While trying to update the implicit return value 'pedersen_ptr' in:" - ], - "start_col": 15, - "start_line": 7 - } - }, - "471": { - "accessible_scopes": [ - "__main__", - "__main__._starknetid_contract", - "__main__._starknetid_contract.write" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 58, - "end_line": 7, - "input_file": { - "filename": "autogen/starknet/storage_var/_starknetid_contract/decl.cairo" - }, - "parent_location": [ - { - "end_col": 36, - "end_line": 26, - "input_file": { - "filename": "autogen/starknet/storage_var/_starknetid_contract/impl.cairo" - }, - "parent_location": [ - { - "end_col": 79, - "end_line": 21, - "input_file": { - "filename": "autogen/starknet/storage_var/_starknetid_contract/decl.cairo" - }, - "parent_location": [ - { - "end_col": 19, - "end_line": 28, - "input_file": { - "filename": "autogen/starknet/storage_var/_starknetid_contract/impl.cairo" - }, - "start_col": 9, - "start_line": 28 - }, - "While trying to retrieve the implicit argument 'range_check_ptr' in:" - ], - "start_col": 64, - "start_line": 21 - }, - "While expanding the reference 'range_check_ptr' in:" - ], - "start_col": 30, - "start_line": 26 - }, - "While trying to update the implicit return value 'range_check_ptr' in:" - ], - "start_col": 43, - "start_line": 7 - } - }, - "472": { - "accessible_scopes": [ - "__main__", - "__main__._starknetid_contract", - "__main__._starknetid_contract.write" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 19, - "end_line": 28, - "input_file": { - "filename": "autogen/starknet/storage_var/_starknetid_contract/impl.cairo" - }, - "start_col": 9, - "start_line": 28 - } - }, - "473": { - "accessible_scopes": [ - "__main__", - "__main__._admin_address", - "__main__._admin_address.addr" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 41, - "end_line": 7, - "input_file": { - "filename": "autogen/starknet/storage_var/_admin_address/impl.cairo" - }, - "parent_location": [ - { - "end_col": 41, - "end_line": 7, - "input_file": { - "filename": "autogen/starknet/storage_var/_admin_address/decl.cairo" - }, - "parent_location": [ - { - "end_col": 26, - "end_line": 9, - "input_file": { - "filename": "autogen/starknet/storage_var/_admin_address/impl.cairo" - }, - "start_col": 9, - "start_line": 9 - }, - "While trying to retrieve the implicit argument 'pedersen_ptr' in:" - ], - "start_col": 15, - "start_line": 7 - }, - "While expanding the reference 'pedersen_ptr' in:" - ], - "start_col": 15, - "start_line": 7 - } - }, - "474": { - "accessible_scopes": [ - "__main__", - "__main__._admin_address", - "__main__._admin_address.addr" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 58, - "end_line": 7, - "input_file": { - "filename": "autogen/starknet/storage_var/_admin_address/impl.cairo" - }, - "parent_location": [ - { - "end_col": 58, - "end_line": 7, - "input_file": { - "filename": "autogen/starknet/storage_var/_admin_address/decl.cairo" - }, - "parent_location": [ - { - "end_col": 26, - "end_line": 9, - "input_file": { - "filename": "autogen/starknet/storage_var/_admin_address/impl.cairo" - }, - "start_col": 9, - "start_line": 9 - }, - "While trying to retrieve the implicit argument 'range_check_ptr' in:" - ], - "start_col": 43, - "start_line": 7 - }, - "While expanding the reference 'range_check_ptr' in:" - ], - "start_col": 43, - "start_line": 7 - } - }, - "475": { - "accessible_scopes": [ - "__main__", - "__main__._admin_address", - "__main__._admin_address.addr" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 95, - "end_line": 8, - "input_file": { - "filename": "autogen/starknet/storage_var/_admin_address/impl.cairo" - }, - "parent_location": [ - { - "end_col": 24, - "end_line": 9, - "input_file": { - "filename": "autogen/starknet/storage_var/_admin_address/impl.cairo" - }, - "start_col": 21, - "start_line": 9 - }, - "While expanding the reference 'res' in:" - ], - "start_col": 19, - "start_line": 8 - } - }, - "477": { - "accessible_scopes": [ - "__main__", - "__main__._admin_address", - "__main__._admin_address.addr" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 26, - "end_line": 9, - "input_file": { - "filename": "autogen/starknet/storage_var/_admin_address/impl.cairo" - }, - "start_col": 9, - "start_line": 9 - } - }, - "478": { - "accessible_scopes": [ - "__main__", - "__main__._admin_address", - "__main__._admin_address.read" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 61, - "end_line": 12, - "input_file": { - "filename": "autogen/starknet/storage_var/_admin_address/impl.cairo" - }, - "parent_location": [ - { - "end_col": 41, - "end_line": 7, - "input_file": { - "filename": "autogen/starknet/storage_var/_admin_address/decl.cairo" - }, - "parent_location": [ - { - "end_col": 36, - "end_line": 15, - "input_file": { - "filename": "autogen/starknet/storage_var/_admin_address/impl.cairo" - }, - "start_col": 30, - "start_line": 15 - }, - "While trying to retrieve the implicit argument 'pedersen_ptr' in:" - ], - "start_col": 15, - "start_line": 7 - }, - "While expanding the reference 'pedersen_ptr' in:" - ], - "start_col": 35, - "start_line": 12 - } - }, - "479": { - "accessible_scopes": [ - "__main__", - "__main__._admin_address", - "__main__._admin_address.read" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 78, - "end_line": 12, - "input_file": { - "filename": "autogen/starknet/storage_var/_admin_address/impl.cairo" - }, - "parent_location": [ - { - "end_col": 58, - "end_line": 7, - "input_file": { - "filename": "autogen/starknet/storage_var/_admin_address/decl.cairo" - }, - "parent_location": [ - { - "end_col": 36, - "end_line": 15, - "input_file": { - "filename": "autogen/starknet/storage_var/_admin_address/impl.cairo" - }, - "start_col": 30, - "start_line": 15 - }, - "While trying to retrieve the implicit argument 'range_check_ptr' in:" - ], - "start_col": 43, - "start_line": 7 - }, - "While expanding the reference 'range_check_ptr' in:" - ], - "start_col": 63, - "start_line": 12 - } - }, - "480": { - "accessible_scopes": [ - "__main__", - "__main__._admin_address", - "__main__._admin_address.read" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 36, - "end_line": 15, - "input_file": { - "filename": "autogen/starknet/storage_var/_admin_address/impl.cairo" - }, - "start_col": 30, - "start_line": 15 - } - }, - "482": { - "accessible_scopes": [ - "__main__", - "__main__._admin_address", - "__main__._admin_address.read" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 33, - "end_line": 12, - "input_file": { - "filename": "autogen/starknet/storage_var/_admin_address/impl.cairo" - }, - "parent_location": [ - { - "end_col": 37, - "end_line": 352, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/starknet/common/syscalls.cairo" - }, - "parent_location": [ - { - "end_col": 75, - "end_line": 16, - "input_file": { - "filename": "autogen/starknet/storage_var/_admin_address/impl.cairo" - }, - "start_col": 37, - "start_line": 16 - }, - "While trying to retrieve the implicit argument 'syscall_ptr' in:" - ], - "start_col": 19, - "start_line": 352 - }, - "While expanding the reference 'syscall_ptr' in:" - ], - "start_col": 15, - "start_line": 12 - } - }, - "483": { - "accessible_scopes": [ - "__main__", - "__main__._admin_address", - "__main__._admin_address.read" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 26, - "end_line": 15, - "input_file": { - "filename": "autogen/starknet/storage_var/_admin_address/impl.cairo" - }, - "parent_location": [ - { - "end_col": 70, - "end_line": 16, - "input_file": { - "filename": "autogen/starknet/storage_var/_admin_address/impl.cairo" - }, - "start_col": 58, - "start_line": 16 - }, - "While expanding the reference 'storage_addr' in:" - ], - "start_col": 14, - "start_line": 15 - } - }, - "484": { - "accessible_scopes": [ - "__main__", - "__main__._admin_address", - "__main__._admin_address.read" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 75, - "end_line": 16, - "input_file": { - "filename": "autogen/starknet/storage_var/_admin_address/impl.cairo" - }, - "start_col": 37, - "start_line": 16 - } - }, - "486": { - "accessible_scopes": [ - "__main__", - "__main__._admin_address", - "__main__._admin_address.read" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 37, - "end_line": 352, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/starknet/common/syscalls.cairo" - }, - "parent_location": [ - { - "end_col": 75, - "end_line": 16, - "input_file": { - "filename": "autogen/starknet/storage_var/_admin_address/impl.cairo" - }, - "parent_location": [ - { - "end_col": 42, - "end_line": 18, - "input_file": { - "filename": "autogen/starknet/storage_var/_admin_address/impl.cairo" - }, - "start_col": 31, - "start_line": 18 - }, - "While expanding the reference 'syscall_ptr' in:" - ], - "start_col": 37, - "start_line": 16 - }, - "While trying to update the implicit return value 'syscall_ptr' in:" - ], - "start_col": 19, - "start_line": 352 - } - }, - "487": { - "accessible_scopes": [ - "__main__", - "__main__._admin_address", - "__main__._admin_address.read" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 41, - "end_line": 7, - "input_file": { - "filename": "autogen/starknet/storage_var/_admin_address/decl.cairo" - }, - "parent_location": [ - { - "end_col": 36, - "end_line": 15, - "input_file": { - "filename": "autogen/starknet/storage_var/_admin_address/impl.cairo" - }, - "parent_location": [ - { - "end_col": 44, - "end_line": 19, - "input_file": { - "filename": "autogen/starknet/storage_var/_admin_address/impl.cairo" - }, - "start_col": 32, - "start_line": 19 - }, - "While expanding the reference 'pedersen_ptr' in:" - ], - "start_col": 30, - "start_line": 15 - }, - "While trying to update the implicit return value 'pedersen_ptr' in:" - ], - "start_col": 15, - "start_line": 7 - } - }, - "488": { - "accessible_scopes": [ - "__main__", - "__main__._admin_address", - "__main__._admin_address.read" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 58, - "end_line": 7, - "input_file": { - "filename": "autogen/starknet/storage_var/_admin_address/decl.cairo" - }, - "parent_location": [ - { - "end_col": 36, - "end_line": 15, - "input_file": { - "filename": "autogen/starknet/storage_var/_admin_address/impl.cairo" - }, - "parent_location": [ - { - "end_col": 50, - "end_line": 20, - "input_file": { - "filename": "autogen/starknet/storage_var/_admin_address/impl.cairo" - }, - "start_col": 35, - "start_line": 20 - }, - "While expanding the reference 'range_check_ptr' in:" - ], - "start_col": 30, - "start_line": 15 - }, - "While trying to update the implicit return value 'range_check_ptr' in:" - ], - "start_col": 43, - "start_line": 7 - } - }, - "489": { - "accessible_scopes": [ - "__main__", - "__main__._admin_address", - "__main__._admin_address.read" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 33, - "end_line": 16, - "input_file": { - "filename": "autogen/starknet/storage_var/_admin_address/impl.cairo" - }, - "parent_location": [ - { - "end_col": 64, - "end_line": 21, - "input_file": { - "filename": "autogen/starknet/storage_var/_admin_address/impl.cairo" - }, - "start_col": 45, - "start_line": 21 - }, - "While expanding the reference '__storage_var_temp0' in:" - ], - "start_col": 14, - "start_line": 16 - } - }, - "490": { - "accessible_scopes": [ - "__main__", - "__main__._admin_address", - "__main__._admin_address.read" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 55, - "end_line": 22, - "input_file": { - "filename": "autogen/starknet/storage_var/_admin_address/impl.cairo" - }, - "start_col": 9, - "start_line": 22 - } - }, - "491": { - "accessible_scopes": [ - "__main__", - "__main__._admin_address", - "__main__._admin_address.write" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 62, - "end_line": 25, - "input_file": { - "filename": "autogen/starknet/storage_var/_admin_address/impl.cairo" - }, - "parent_location": [ - { - "end_col": 41, - "end_line": 7, - "input_file": { - "filename": "autogen/starknet/storage_var/_admin_address/decl.cairo" - }, - "parent_location": [ - { - "end_col": 36, - "end_line": 26, - "input_file": { - "filename": "autogen/starknet/storage_var/_admin_address/impl.cairo" - }, - "start_col": 30, - "start_line": 26 - }, - "While trying to retrieve the implicit argument 'pedersen_ptr' in:" - ], - "start_col": 15, - "start_line": 7 - }, - "While expanding the reference 'pedersen_ptr' in:" - ], - "start_col": 36, - "start_line": 25 - } - }, - "492": { - "accessible_scopes": [ - "__main__", - "__main__._admin_address", - "__main__._admin_address.write" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 79, - "end_line": 25, - "input_file": { - "filename": "autogen/starknet/storage_var/_admin_address/impl.cairo" - }, - "parent_location": [ - { - "end_col": 58, - "end_line": 7, - "input_file": { - "filename": "autogen/starknet/storage_var/_admin_address/decl.cairo" - }, - "parent_location": [ - { - "end_col": 36, - "end_line": 26, - "input_file": { - "filename": "autogen/starknet/storage_var/_admin_address/impl.cairo" - }, - "start_col": 30, - "start_line": 26 - }, - "While trying to retrieve the implicit argument 'range_check_ptr' in:" - ], - "start_col": 43, - "start_line": 7 - }, - "While expanding the reference 'range_check_ptr' in:" - ], - "start_col": 64, - "start_line": 25 - } - }, - "493": { - "accessible_scopes": [ - "__main__", - "__main__._admin_address", - "__main__._admin_address.write" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 36, - "end_line": 26, - "input_file": { - "filename": "autogen/starknet/storage_var/_admin_address/impl.cairo" - }, - "start_col": 30, - "start_line": 26 - } - }, - "495": { - "accessible_scopes": [ - "__main__", - "__main__._admin_address", - "__main__._admin_address.write" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 34, - "end_line": 25, - "input_file": { - "filename": "autogen/starknet/storage_var/_admin_address/impl.cairo" - }, - "parent_location": [ - { - "end_col": 38, - "end_line": 370, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/starknet/common/syscalls.cairo" - }, - "parent_location": [ - { - "end_col": 80, - "end_line": 27, - "input_file": { - "filename": "autogen/starknet/storage_var/_admin_address/impl.cairo" - }, - "start_col": 9, - "start_line": 27 - }, - "While trying to retrieve the implicit argument 'syscall_ptr' in:" - ], - "start_col": 20, - "start_line": 370 - }, - "While expanding the reference 'syscall_ptr' in:" - ], - "start_col": 16, - "start_line": 25 - } - }, - "496": { - "accessible_scopes": [ - "__main__", - "__main__._admin_address", - "__main__._admin_address.write" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 26, - "end_line": 26, - "input_file": { - "filename": "autogen/starknet/storage_var/_admin_address/impl.cairo" - }, - "parent_location": [ - { - "end_col": 43, - "end_line": 27, - "input_file": { - "filename": "autogen/starknet/storage_var/_admin_address/impl.cairo" - }, - "start_col": 31, - "start_line": 27 - }, - "While expanding the reference 'storage_addr' in:" - ], - "start_col": 14, - "start_line": 26 - } - }, - "497": { - "accessible_scopes": [ - "__main__", - "__main__._admin_address", - "__main__._admin_address.write" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 79, - "end_line": 27, - "input_file": { - "filename": "autogen/starknet/storage_var/_admin_address/impl.cairo" - }, - "start_col": 55, - "start_line": 27 - } - }, - "498": { - "accessible_scopes": [ - "__main__", - "__main__._admin_address", - "__main__._admin_address.write" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 80, - "end_line": 27, - "input_file": { - "filename": "autogen/starknet/storage_var/_admin_address/impl.cairo" - }, - "start_col": 9, - "start_line": 27 - } - }, - "500": { - "accessible_scopes": [ - "__main__", - "__main__._admin_address", - "__main__._admin_address.write" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 41, - "end_line": 7, - "input_file": { - "filename": "autogen/starknet/storage_var/_admin_address/decl.cairo" - }, - "parent_location": [ - { - "end_col": 36, - "end_line": 26, - "input_file": { - "filename": "autogen/starknet/storage_var/_admin_address/impl.cairo" - }, - "parent_location": [ - { - "end_col": 62, - "end_line": 21, - "input_file": { - "filename": "autogen/starknet/storage_var/_admin_address/decl.cairo" - }, - "parent_location": [ - { - "end_col": 19, - "end_line": 28, - "input_file": { - "filename": "autogen/starknet/storage_var/_admin_address/impl.cairo" - }, - "start_col": 9, - "start_line": 28 - }, - "While trying to retrieve the implicit argument 'pedersen_ptr' in:" - ], - "start_col": 36, - "start_line": 21 - }, - "While expanding the reference 'pedersen_ptr' in:" - ], - "start_col": 30, - "start_line": 26 - }, - "While trying to update the implicit return value 'pedersen_ptr' in:" - ], - "start_col": 15, - "start_line": 7 - } - }, - "501": { - "accessible_scopes": [ - "__main__", - "__main__._admin_address", - "__main__._admin_address.write" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 58, - "end_line": 7, - "input_file": { - "filename": "autogen/starknet/storage_var/_admin_address/decl.cairo" - }, - "parent_location": [ - { - "end_col": 36, - "end_line": 26, - "input_file": { - "filename": "autogen/starknet/storage_var/_admin_address/impl.cairo" - }, - "parent_location": [ - { - "end_col": 79, - "end_line": 21, - "input_file": { - "filename": "autogen/starknet/storage_var/_admin_address/decl.cairo" - }, - "parent_location": [ - { - "end_col": 19, - "end_line": 28, - "input_file": { - "filename": "autogen/starknet/storage_var/_admin_address/impl.cairo" - }, - "start_col": 9, - "start_line": 28 - }, - "While trying to retrieve the implicit argument 'range_check_ptr' in:" - ], - "start_col": 64, - "start_line": 21 - }, - "While expanding the reference 'range_check_ptr' in:" - ], - "start_col": 30, - "start_line": 26 - }, - "While trying to update the implicit return value 'range_check_ptr' in:" - ], - "start_col": 43, - "start_line": 7 - } - }, - "502": { - "accessible_scopes": [ - "__main__", - "__main__._admin_address", - "__main__._admin_address.write" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 19, - "end_line": 28, - "input_file": { - "filename": "autogen/starknet/storage_var/_admin_address/impl.cairo" - }, - "start_col": 9, - "start_line": 28 - } - }, - "503": { - "accessible_scopes": [ - "__main__", - "__main__._is_registration_open", - "__main__._is_registration_open.addr" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 41, - "end_line": 7, - "input_file": { - "filename": "autogen/starknet/storage_var/_is_registration_open/impl.cairo" - }, - "parent_location": [ - { - "end_col": 41, - "end_line": 7, - "input_file": { - "filename": "autogen/starknet/storage_var/_is_registration_open/decl.cairo" - }, - "parent_location": [ - { - "end_col": 26, - "end_line": 9, - "input_file": { - "filename": "autogen/starknet/storage_var/_is_registration_open/impl.cairo" - }, - "start_col": 9, - "start_line": 9 - }, - "While trying to retrieve the implicit argument 'pedersen_ptr' in:" - ], - "start_col": 15, - "start_line": 7 - }, - "While expanding the reference 'pedersen_ptr' in:" - ], - "start_col": 15, - "start_line": 7 - } - }, - "504": { - "accessible_scopes": [ - "__main__", - "__main__._is_registration_open", - "__main__._is_registration_open.addr" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 58, - "end_line": 7, - "input_file": { - "filename": "autogen/starknet/storage_var/_is_registration_open/impl.cairo" - }, - "parent_location": [ - { - "end_col": 58, - "end_line": 7, - "input_file": { - "filename": "autogen/starknet/storage_var/_is_registration_open/decl.cairo" - }, - "parent_location": [ - { - "end_col": 26, - "end_line": 9, - "input_file": { - "filename": "autogen/starknet/storage_var/_is_registration_open/impl.cairo" - }, - "start_col": 9, - "start_line": 9 - }, - "While trying to retrieve the implicit argument 'range_check_ptr' in:" - ], - "start_col": 43, - "start_line": 7 - }, - "While expanding the reference 'range_check_ptr' in:" - ], - "start_col": 43, - "start_line": 7 - } - }, - "505": { - "accessible_scopes": [ - "__main__", - "__main__._is_registration_open", - "__main__._is_registration_open.addr" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 94, - "end_line": 8, - "input_file": { - "filename": "autogen/starknet/storage_var/_is_registration_open/impl.cairo" - }, - "parent_location": [ - { - "end_col": 24, - "end_line": 9, - "input_file": { - "filename": "autogen/starknet/storage_var/_is_registration_open/impl.cairo" - }, - "start_col": 21, - "start_line": 9 - }, - "While expanding the reference 'res' in:" - ], - "start_col": 19, - "start_line": 8 - } - }, - "507": { - "accessible_scopes": [ - "__main__", - "__main__._is_registration_open", - "__main__._is_registration_open.addr" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 26, - "end_line": 9, - "input_file": { - "filename": "autogen/starknet/storage_var/_is_registration_open/impl.cairo" - }, - "start_col": 9, - "start_line": 9 - } - }, - "508": { - "accessible_scopes": [ - "__main__", - "__main__._is_registration_open", - "__main__._is_registration_open.read" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 61, - "end_line": 12, - "input_file": { - "filename": "autogen/starknet/storage_var/_is_registration_open/impl.cairo" - }, - "parent_location": [ - { - "end_col": 41, - "end_line": 7, - "input_file": { - "filename": "autogen/starknet/storage_var/_is_registration_open/decl.cairo" - }, - "parent_location": [ - { - "end_col": 36, - "end_line": 15, - "input_file": { - "filename": "autogen/starknet/storage_var/_is_registration_open/impl.cairo" - }, - "start_col": 30, - "start_line": 15 - }, - "While trying to retrieve the implicit argument 'pedersen_ptr' in:" - ], - "start_col": 15, - "start_line": 7 - }, - "While expanding the reference 'pedersen_ptr' in:" - ], - "start_col": 35, - "start_line": 12 - } - }, - "509": { - "accessible_scopes": [ - "__main__", - "__main__._is_registration_open", - "__main__._is_registration_open.read" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 78, - "end_line": 12, - "input_file": { - "filename": "autogen/starknet/storage_var/_is_registration_open/impl.cairo" - }, - "parent_location": [ - { - "end_col": 58, - "end_line": 7, - "input_file": { - "filename": "autogen/starknet/storage_var/_is_registration_open/decl.cairo" - }, - "parent_location": [ - { - "end_col": 36, - "end_line": 15, - "input_file": { - "filename": "autogen/starknet/storage_var/_is_registration_open/impl.cairo" - }, - "start_col": 30, - "start_line": 15 - }, - "While trying to retrieve the implicit argument 'range_check_ptr' in:" - ], - "start_col": 43, - "start_line": 7 - }, - "While expanding the reference 'range_check_ptr' in:" - ], - "start_col": 63, - "start_line": 12 - } - }, - "510": { - "accessible_scopes": [ - "__main__", - "__main__._is_registration_open", - "__main__._is_registration_open.read" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 36, - "end_line": 15, - "input_file": { - "filename": "autogen/starknet/storage_var/_is_registration_open/impl.cairo" - }, - "start_col": 30, - "start_line": 15 - } - }, - "512": { - "accessible_scopes": [ - "__main__", - "__main__._is_registration_open", - "__main__._is_registration_open.read" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 33, - "end_line": 12, - "input_file": { - "filename": "autogen/starknet/storage_var/_is_registration_open/impl.cairo" - }, - "parent_location": [ - { - "end_col": 37, - "end_line": 352, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/starknet/common/syscalls.cairo" - }, - "parent_location": [ - { - "end_col": 75, - "end_line": 16, - "input_file": { - "filename": "autogen/starknet/storage_var/_is_registration_open/impl.cairo" - }, - "start_col": 37, - "start_line": 16 - }, - "While trying to retrieve the implicit argument 'syscall_ptr' in:" - ], - "start_col": 19, - "start_line": 352 - }, - "While expanding the reference 'syscall_ptr' in:" - ], - "start_col": 15, - "start_line": 12 - } - }, - "513": { - "accessible_scopes": [ - "__main__", - "__main__._is_registration_open", - "__main__._is_registration_open.read" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 26, - "end_line": 15, - "input_file": { - "filename": "autogen/starknet/storage_var/_is_registration_open/impl.cairo" - }, - "parent_location": [ - { - "end_col": 70, - "end_line": 16, - "input_file": { - "filename": "autogen/starknet/storage_var/_is_registration_open/impl.cairo" - }, - "start_col": 58, - "start_line": 16 - }, - "While expanding the reference 'storage_addr' in:" - ], - "start_col": 14, - "start_line": 15 - } - }, - "514": { - "accessible_scopes": [ - "__main__", - "__main__._is_registration_open", - "__main__._is_registration_open.read" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 75, - "end_line": 16, - "input_file": { - "filename": "autogen/starknet/storage_var/_is_registration_open/impl.cairo" - }, - "start_col": 37, - "start_line": 16 - } - }, - "516": { - "accessible_scopes": [ - "__main__", - "__main__._is_registration_open", - "__main__._is_registration_open.read" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 37, - "end_line": 352, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/starknet/common/syscalls.cairo" - }, - "parent_location": [ - { - "end_col": 75, - "end_line": 16, - "input_file": { - "filename": "autogen/starknet/storage_var/_is_registration_open/impl.cairo" - }, - "parent_location": [ - { - "end_col": 42, - "end_line": 18, - "input_file": { - "filename": "autogen/starknet/storage_var/_is_registration_open/impl.cairo" - }, - "start_col": 31, - "start_line": 18 - }, - "While expanding the reference 'syscall_ptr' in:" - ], - "start_col": 37, - "start_line": 16 - }, - "While trying to update the implicit return value 'syscall_ptr' in:" - ], - "start_col": 19, - "start_line": 352 - } - }, - "517": { - "accessible_scopes": [ - "__main__", - "__main__._is_registration_open", - "__main__._is_registration_open.read" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 41, - "end_line": 7, - "input_file": { - "filename": "autogen/starknet/storage_var/_is_registration_open/decl.cairo" - }, - "parent_location": [ - { - "end_col": 36, - "end_line": 15, - "input_file": { - "filename": "autogen/starknet/storage_var/_is_registration_open/impl.cairo" - }, - "parent_location": [ - { - "end_col": 44, - "end_line": 19, - "input_file": { - "filename": "autogen/starknet/storage_var/_is_registration_open/impl.cairo" - }, - "start_col": 32, - "start_line": 19 - }, - "While expanding the reference 'pedersen_ptr' in:" - ], - "start_col": 30, - "start_line": 15 - }, - "While trying to update the implicit return value 'pedersen_ptr' in:" - ], - "start_col": 15, - "start_line": 7 - } - }, - "518": { - "accessible_scopes": [ - "__main__", - "__main__._is_registration_open", - "__main__._is_registration_open.read" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 58, - "end_line": 7, - "input_file": { - "filename": "autogen/starknet/storage_var/_is_registration_open/decl.cairo" - }, - "parent_location": [ - { - "end_col": 36, - "end_line": 15, - "input_file": { - "filename": "autogen/starknet/storage_var/_is_registration_open/impl.cairo" - }, - "parent_location": [ - { - "end_col": 50, - "end_line": 20, - "input_file": { - "filename": "autogen/starknet/storage_var/_is_registration_open/impl.cairo" - }, - "start_col": 35, - "start_line": 20 - }, - "While expanding the reference 'range_check_ptr' in:" - ], - "start_col": 30, - "start_line": 15 - }, - "While trying to update the implicit return value 'range_check_ptr' in:" - ], - "start_col": 43, - "start_line": 7 - } - }, - "519": { - "accessible_scopes": [ - "__main__", - "__main__._is_registration_open", - "__main__._is_registration_open.read" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 33, - "end_line": 16, - "input_file": { - "filename": "autogen/starknet/storage_var/_is_registration_open/impl.cairo" - }, - "parent_location": [ - { - "end_col": 64, - "end_line": 21, - "input_file": { - "filename": "autogen/starknet/storage_var/_is_registration_open/impl.cairo" - }, - "start_col": 45, - "start_line": 21 - }, - "While expanding the reference '__storage_var_temp0' in:" - ], - "start_col": 14, - "start_line": 16 - } - }, - "520": { - "accessible_scopes": [ - "__main__", - "__main__._is_registration_open", - "__main__._is_registration_open.read" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 55, - "end_line": 22, - "input_file": { - "filename": "autogen/starknet/storage_var/_is_registration_open/impl.cairo" - }, - "start_col": 9, - "start_line": 22 - } - }, - "521": { - "accessible_scopes": [ - "__main__", - "__main__._is_registration_open", - "__main__._is_registration_open.write" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 62, - "end_line": 25, - "input_file": { - "filename": "autogen/starknet/storage_var/_is_registration_open/impl.cairo" - }, - "parent_location": [ - { - "end_col": 41, - "end_line": 7, - "input_file": { - "filename": "autogen/starknet/storage_var/_is_registration_open/decl.cairo" - }, - "parent_location": [ - { - "end_col": 36, - "end_line": 26, - "input_file": { - "filename": "autogen/starknet/storage_var/_is_registration_open/impl.cairo" - }, - "start_col": 30, - "start_line": 26 - }, - "While trying to retrieve the implicit argument 'pedersen_ptr' in:" - ], - "start_col": 15, - "start_line": 7 - }, - "While expanding the reference 'pedersen_ptr' in:" - ], - "start_col": 36, - "start_line": 25 - } - }, - "522": { - "accessible_scopes": [ - "__main__", - "__main__._is_registration_open", - "__main__._is_registration_open.write" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 79, - "end_line": 25, - "input_file": { - "filename": "autogen/starknet/storage_var/_is_registration_open/impl.cairo" - }, - "parent_location": [ - { - "end_col": 58, - "end_line": 7, - "input_file": { - "filename": "autogen/starknet/storage_var/_is_registration_open/decl.cairo" - }, - "parent_location": [ - { - "end_col": 36, - "end_line": 26, - "input_file": { - "filename": "autogen/starknet/storage_var/_is_registration_open/impl.cairo" - }, - "start_col": 30, - "start_line": 26 - }, - "While trying to retrieve the implicit argument 'range_check_ptr' in:" - ], - "start_col": 43, - "start_line": 7 - }, - "While expanding the reference 'range_check_ptr' in:" - ], - "start_col": 64, - "start_line": 25 - } - }, - "523": { - "accessible_scopes": [ - "__main__", - "__main__._is_registration_open", - "__main__._is_registration_open.write" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 36, - "end_line": 26, - "input_file": { - "filename": "autogen/starknet/storage_var/_is_registration_open/impl.cairo" - }, - "start_col": 30, - "start_line": 26 - } - }, - "525": { - "accessible_scopes": [ - "__main__", - "__main__._is_registration_open", - "__main__._is_registration_open.write" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 34, - "end_line": 25, - "input_file": { - "filename": "autogen/starknet/storage_var/_is_registration_open/impl.cairo" - }, - "parent_location": [ - { - "end_col": 38, - "end_line": 370, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/starknet/common/syscalls.cairo" - }, - "parent_location": [ - { - "end_col": 80, - "end_line": 27, - "input_file": { - "filename": "autogen/starknet/storage_var/_is_registration_open/impl.cairo" - }, - "start_col": 9, - "start_line": 27 - }, - "While trying to retrieve the implicit argument 'syscall_ptr' in:" - ], - "start_col": 20, - "start_line": 370 - }, - "While expanding the reference 'syscall_ptr' in:" - ], - "start_col": 16, - "start_line": 25 - } - }, - "526": { - "accessible_scopes": [ - "__main__", - "__main__._is_registration_open", - "__main__._is_registration_open.write" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 26, - "end_line": 26, - "input_file": { - "filename": "autogen/starknet/storage_var/_is_registration_open/impl.cairo" - }, - "parent_location": [ - { - "end_col": 43, - "end_line": 27, - "input_file": { - "filename": "autogen/starknet/storage_var/_is_registration_open/impl.cairo" - }, - "start_col": 31, - "start_line": 27 - }, - "While expanding the reference 'storage_addr' in:" - ], - "start_col": 14, - "start_line": 26 - } - }, - "527": { - "accessible_scopes": [ - "__main__", - "__main__._is_registration_open", - "__main__._is_registration_open.write" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 79, - "end_line": 27, - "input_file": { - "filename": "autogen/starknet/storage_var/_is_registration_open/impl.cairo" - }, - "start_col": 55, - "start_line": 27 - } - }, - "528": { - "accessible_scopes": [ - "__main__", - "__main__._is_registration_open", - "__main__._is_registration_open.write" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 80, - "end_line": 27, - "input_file": { - "filename": "autogen/starknet/storage_var/_is_registration_open/impl.cairo" - }, - "start_col": 9, - "start_line": 27 - } - }, - "530": { - "accessible_scopes": [ - "__main__", - "__main__._is_registration_open", - "__main__._is_registration_open.write" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 41, - "end_line": 7, - "input_file": { - "filename": "autogen/starknet/storage_var/_is_registration_open/decl.cairo" - }, - "parent_location": [ - { - "end_col": 36, - "end_line": 26, - "input_file": { - "filename": "autogen/starknet/storage_var/_is_registration_open/impl.cairo" - }, - "parent_location": [ - { - "end_col": 62, - "end_line": 21, - "input_file": { - "filename": "autogen/starknet/storage_var/_is_registration_open/decl.cairo" - }, - "parent_location": [ - { - "end_col": 19, - "end_line": 28, - "input_file": { - "filename": "autogen/starknet/storage_var/_is_registration_open/impl.cairo" - }, - "start_col": 9, - "start_line": 28 - }, - "While trying to retrieve the implicit argument 'pedersen_ptr' in:" - ], - "start_col": 36, - "start_line": 21 - }, - "While expanding the reference 'pedersen_ptr' in:" - ], - "start_col": 30, - "start_line": 26 - }, - "While trying to update the implicit return value 'pedersen_ptr' in:" - ], - "start_col": 15, - "start_line": 7 - } - }, - "531": { - "accessible_scopes": [ - "__main__", - "__main__._is_registration_open", - "__main__._is_registration_open.write" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 58, - "end_line": 7, - "input_file": { - "filename": "autogen/starknet/storage_var/_is_registration_open/decl.cairo" - }, - "parent_location": [ - { - "end_col": 36, - "end_line": 26, - "input_file": { - "filename": "autogen/starknet/storage_var/_is_registration_open/impl.cairo" - }, - "parent_location": [ - { - "end_col": 79, - "end_line": 21, - "input_file": { - "filename": "autogen/starknet/storage_var/_is_registration_open/decl.cairo" - }, - "parent_location": [ - { - "end_col": 19, - "end_line": 28, - "input_file": { - "filename": "autogen/starknet/storage_var/_is_registration_open/impl.cairo" - }, - "start_col": 9, - "start_line": 28 - }, - "While trying to retrieve the implicit argument 'range_check_ptr' in:" - ], - "start_col": 64, - "start_line": 21 - }, - "While expanding the reference 'range_check_ptr' in:" - ], - "start_col": 30, - "start_line": 26 - }, - "While trying to update the implicit return value 'range_check_ptr' in:" - ], - "start_col": 43, - "start_line": 7 - } - }, - "532": { - "accessible_scopes": [ - "__main__", - "__main__._is_registration_open", - "__main__._is_registration_open.write" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 19, - "end_line": 28, - "input_file": { - "filename": "autogen/starknet/storage_var/_is_registration_open/impl.cairo" - }, - "start_col": 9, - "start_line": 28 - } - }, - "533": { - "accessible_scopes": [ - "__main__", - "__main__", - "__main__.initializer" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 36, - "end_line": 35, - "input_file": { - "filename": "src/subdomain/Subdomain.cairo" - }, - "parent_location": [ - { - "end_col": 33, - "end_line": 13, - "input_file": { - "filename": "autogen/starknet/storage_var/_admin_address/decl.cairo" - }, - "parent_location": [ - { - "end_col": 48, - "end_line": 39, - "input_file": { - "filename": "src/subdomain/Subdomain.cairo" - }, - "start_col": 27, - "start_line": 39 - }, - "While trying to retrieve the implicit argument 'syscall_ptr' in:" - ], - "start_col": 15, - "start_line": 13 - }, - "While expanding the reference 'syscall_ptr' in:" - ], - "start_col": 18, - "start_line": 35 - } - }, - "534": { - "accessible_scopes": [ - "__main__", - "__main__", - "__main__.initializer" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 64, - "end_line": 35, - "input_file": { - "filename": "src/subdomain/Subdomain.cairo" - }, - "parent_location": [ - { - "end_col": 61, - "end_line": 13, - "input_file": { - "filename": "autogen/starknet/storage_var/_admin_address/decl.cairo" - }, - "parent_location": [ - { - "end_col": 48, - "end_line": 39, - "input_file": { - "filename": "src/subdomain/Subdomain.cairo" - }, - "start_col": 27, - "start_line": 39 - }, - "While trying to retrieve the implicit argument 'pedersen_ptr' in:" - ], - "start_col": 35, - "start_line": 13 - }, - "While expanding the reference 'pedersen_ptr' in:" - ], - "start_col": 38, - "start_line": 35 - } - }, - "535": { - "accessible_scopes": [ - "__main__", - "__main__", - "__main__.initializer" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 81, - "end_line": 35, - "input_file": { - "filename": "src/subdomain/Subdomain.cairo" - }, - "parent_location": [ - { - "end_col": 78, - "end_line": 13, - "input_file": { - "filename": "autogen/starknet/storage_var/_admin_address/decl.cairo" - }, - "parent_location": [ - { - "end_col": 48, - "end_line": 39, - "input_file": { - "filename": "src/subdomain/Subdomain.cairo" - }, - "start_col": 27, - "start_line": 39 - }, - "While trying to retrieve the implicit argument 'range_check_ptr' in:" - ], - "start_col": 63, - "start_line": 13 - }, - "While expanding the reference 'range_check_ptr' in:" - ], - "start_col": 66, - "start_line": 35 - } - }, - "536": { - "accessible_scopes": [ - "__main__", - "__main__", - "__main__.initializer" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 48, - "end_line": 39, - "input_file": { - "filename": "src/subdomain/Subdomain.cairo" - }, - "start_col": 27, - "start_line": 39 - } - }, - "538": { - "accessible_scopes": [ - "__main__", - "__main__", - "__main__.initializer" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 30, - "end_line": 40, - "input_file": { - "filename": "src/subdomain/Subdomain.cairo" - }, - "start_col": 5, - "start_line": 40 - } - }, - "540": { - "accessible_scopes": [ - "__main__", - "__main__", - "__main__.initializer" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 33, - "end_line": 13, - "input_file": { - "filename": "autogen/starknet/storage_var/_admin_address/decl.cairo" - }, - "parent_location": [ - { - "end_col": 48, - "end_line": 39, - "input_file": { - "filename": "src/subdomain/Subdomain.cairo" - }, - "parent_location": [ - { - "end_col": 34, - "end_line": 21, - "input_file": { - "filename": "autogen/starknet/storage_var/_admin_address/decl.cairo" - }, - "parent_location": [ - { - "end_col": 46, - "end_line": 42, - "input_file": { - "filename": "src/subdomain/Subdomain.cairo" - }, - "start_col": 5, - "start_line": 42 - }, - "While trying to retrieve the implicit argument 'syscall_ptr' in:" - ], - "start_col": 16, - "start_line": 21 - }, - "While expanding the reference 'syscall_ptr' in:" - ], - "start_col": 27, - "start_line": 39 - }, - "While trying to update the implicit return value 'syscall_ptr' in:" - ], - "start_col": 15, - "start_line": 13 - } - }, - "541": { - "accessible_scopes": [ - "__main__", - "__main__", - "__main__.initializer" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 61, - "end_line": 13, - "input_file": { - "filename": "autogen/starknet/storage_var/_admin_address/decl.cairo" - }, - "parent_location": [ - { - "end_col": 48, - "end_line": 39, - "input_file": { - "filename": "src/subdomain/Subdomain.cairo" - }, - "parent_location": [ - { - "end_col": 62, - "end_line": 21, - "input_file": { - "filename": "autogen/starknet/storage_var/_admin_address/decl.cairo" - }, - "parent_location": [ - { - "end_col": 46, - "end_line": 42, - "input_file": { - "filename": "src/subdomain/Subdomain.cairo" - }, - "start_col": 5, - "start_line": 42 - }, - "While trying to retrieve the implicit argument 'pedersen_ptr' in:" - ], - "start_col": 36, - "start_line": 21 - }, - "While expanding the reference 'pedersen_ptr' in:" - ], - "start_col": 27, - "start_line": 39 - }, - "While trying to update the implicit return value 'pedersen_ptr' in:" - ], - "start_col": 35, - "start_line": 13 - } - }, - "542": { - "accessible_scopes": [ - "__main__", - "__main__", - "__main__.initializer" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 78, - "end_line": 13, - "input_file": { - "filename": "autogen/starknet/storage_var/_admin_address/decl.cairo" - }, - "parent_location": [ - { - "end_col": 48, - "end_line": 39, - "input_file": { - "filename": "src/subdomain/Subdomain.cairo" - }, - "parent_location": [ - { - "end_col": 79, - "end_line": 21, - "input_file": { - "filename": "autogen/starknet/storage_var/_admin_address/decl.cairo" - }, - "parent_location": [ - { - "end_col": 46, - "end_line": 42, - "input_file": { - "filename": "src/subdomain/Subdomain.cairo" - }, - "start_col": 5, - "start_line": 42 - }, - "While trying to retrieve the implicit argument 'range_check_ptr' in:" - ], - "start_col": 64, - "start_line": 21 - }, - "While expanding the reference 'range_check_ptr' in:" - ], - "start_col": 27, - "start_line": 39 - }, - "While trying to update the implicit return value 'range_check_ptr' in:" - ], - "start_col": 63, - "start_line": 13 - } - }, - "543": { - "accessible_scopes": [ - "__main__", - "__main__", - "__main__.initializer" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 30, - "end_line": 36, - "input_file": { - "filename": "src/subdomain/Subdomain.cairo" - }, - "parent_location": [ - { - "end_col": 45, - "end_line": 42, - "input_file": { - "filename": "src/subdomain/Subdomain.cairo" - }, - "start_col": 26, - "start_line": 42 - }, - "While expanding the reference 'proxy_admin_address' in:" - ], - "start_col": 5, - "start_line": 36 - } - }, - "544": { - "accessible_scopes": [ - "__main__", - "__main__", - "__main__.initializer" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 46, - "end_line": 42, - "input_file": { - "filename": "src/subdomain/Subdomain.cairo" - }, - "start_col": 5, - "start_line": 42 - } - }, - "546": { - "accessible_scopes": [ - "__main__", - "__main__", - "__main__.initializer" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 80, - "end_line": 36, - "input_file": { - "filename": "src/subdomain/Subdomain.cairo" - }, - "parent_location": [ - { - "end_col": 43, - "end_line": 43, - "input_file": { - "filename": "src/subdomain/Subdomain.cairo" - }, - "start_col": 28, - "start_line": 43 - }, - "While expanding the reference 'naming_contract' in:" - ], - "start_col": 59, - "start_line": 36 - } - }, - "547": { - "accessible_scopes": [ - "__main__", - "__main__", - "__main__.initializer" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 44, - "end_line": 43, - "input_file": { - "filename": "src/subdomain/Subdomain.cairo" - }, - "start_col": 5, - "start_line": 43 - } - }, - "549": { - "accessible_scopes": [ - "__main__", - "__main__", - "__main__.initializer" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 57, - "end_line": 36, - "input_file": { - "filename": "src/subdomain/Subdomain.cairo" - }, - "parent_location": [ - { - "end_col": 51, - "end_line": 44, - "input_file": { - "filename": "src/subdomain/Subdomain.cairo" - }, - "start_col": 32, - "start_line": 44 - }, - "While expanding the reference 'starknetid_contract' in:" - ], - "start_col": 32, - "start_line": 36 - } - }, - "550": { - "accessible_scopes": [ - "__main__", - "__main__", - "__main__.initializer" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 52, - "end_line": 44, - "input_file": { - "filename": "src/subdomain/Subdomain.cairo" - }, - "start_col": 5, - "start_line": 44 - } - }, - "552": { - "accessible_scopes": [ - "__main__", - "__main__", - "__main__.initializer" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 15, - "end_line": 46, - "input_file": { - "filename": "src/subdomain/Subdomain.cairo" - }, - "start_col": 5, - "start_line": 46 - } - }, - "553": { - "accessible_scopes": [ - "__main__", - "__main__", - "__wrappers__", - "__wrappers__.initializer" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 40, - "end_line": 2, - "input_file": { - "filename": "autogen/starknet/arg_processor/ad6ac0c85ad8739704cc5f4980561dd6bf7a6e3282834f8fb6bf7898431fc31a.cairo" - }, - "parent_location": [ - { - "end_col": 80, - "end_line": 36, - "input_file": { - "filename": "src/subdomain/Subdomain.cairo" - }, - "parent_location": [ - { - "end_col": 45, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/arg_processor/c31620b02d4d706f0542c989b2aadc01b0981d1f6a5933a8fe4937ace3d70d92.cairo" - }, - "parent_location": [ - { - "end_col": 17, - "end_line": 35, - "input_file": { - "filename": "src/subdomain/Subdomain.cairo" - }, - "parent_location": [ - { - "end_col": 57, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/arg_processor/01cba52f8515996bb9d7070bde81ff39281d096d7024a558efcba6e1fd2402cf.cairo" - }, - "parent_location": [ - { - "end_col": 17, - "end_line": 35, - "input_file": { - "filename": "src/subdomain/Subdomain.cairo" - }, - "start_col": 6, - "start_line": 35 - }, - "While handling calldata of" - ], - "start_col": 35, - "start_line": 1 - }, - "While expanding the reference '__calldata_actual_size' in:" - ], - "start_col": 6, - "start_line": 35 - }, - "While handling calldata of" - ], - "start_col": 31, - "start_line": 1 - }, - "While expanding the reference '__calldata_ptr' in:" - ], - "start_col": 59, - "start_line": 36 - }, - "While handling calldata argument 'naming_contract'" - ], - "start_col": 22, - "start_line": 2 - } - }, - "555": { - "accessible_scopes": [ - "__main__", - "__main__", - "__wrappers__", - "__wrappers__.initializer" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 58, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/arg_processor/01cba52f8515996bb9d7070bde81ff39281d096d7024a558efcba6e1fd2402cf.cairo" - }, - "parent_location": [ - { - "end_col": 17, - "end_line": 35, - "input_file": { - "filename": "src/subdomain/Subdomain.cairo" - }, - "start_col": 6, - "start_line": 35 - }, - "While handling calldata of" - ], - "start_col": 1, - "start_line": 1 - } - }, - "556": { - "accessible_scopes": [ - "__main__", - "__main__", - "__wrappers__", - "__wrappers__.initializer" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 64, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/external/initializer/b2c52ca2d2a8fc8791a983086d8716c5eacd0c3d62934914d2286f84b98ff4cb.cairo" - }, - "parent_location": [ - { - "end_col": 36, - "end_line": 35, - "input_file": { - "filename": "src/subdomain/Subdomain.cairo" - }, - "parent_location": [ - { - "end_col": 55, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/external/initializer/b371deb94934188e323bef3fca0ac063ca8cf27f8d4df426eb7923d9ae8d7bea.cairo" - }, - "parent_location": [ - { - "end_col": 17, - "end_line": 35, - "input_file": { - "filename": "src/subdomain/Subdomain.cairo" - }, - "start_col": 6, - "start_line": 35 - }, - "While constructing the external wrapper for:" - ], - "start_col": 44, - "start_line": 1 - }, - "While expanding the reference 'syscall_ptr' in:" - ], - "start_col": 18, - "start_line": 35 - }, - "While constructing the external wrapper for:" - ], - "start_col": 19, - "start_line": 1 - } - }, - "557": { - "accessible_scopes": [ - "__main__", - "__main__", - "__wrappers__", - "__wrappers__.initializer" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 110, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/external/initializer/9684a85e93c782014ca14293edea4eb2502039a5a7b6538ecd39c56faaf12529.cairo" - }, - "parent_location": [ - { - "end_col": 64, - "end_line": 35, - "input_file": { - "filename": "src/subdomain/Subdomain.cairo" - }, - "parent_location": [ - { - "end_col": 82, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/external/initializer/b371deb94934188e323bef3fca0ac063ca8cf27f8d4df426eb7923d9ae8d7bea.cairo" - }, - "parent_location": [ - { - "end_col": 17, - "end_line": 35, - "input_file": { - "filename": "src/subdomain/Subdomain.cairo" - }, - "start_col": 6, - "start_line": 35 - }, - "While constructing the external wrapper for:" - ], - "start_col": 70, - "start_line": 1 - }, - "While expanding the reference 'pedersen_ptr' in:" - ], - "start_col": 38, - "start_line": 35 - }, - "While constructing the external wrapper for:" - ], - "start_col": 20, - "start_line": 1 - } - }, - "558": { - "accessible_scopes": [ - "__main__", - "__main__", - "__wrappers__", - "__wrappers__.initializer" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 67, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/external/initializer/741ea357d6336b0bed7bf0472425acd0311d543883b803388880e60a232040c7.cairo" - }, - "parent_location": [ - { - "end_col": 81, - "end_line": 35, - "input_file": { - "filename": "src/subdomain/Subdomain.cairo" - }, - "parent_location": [ - { - "end_col": 115, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/external/initializer/b371deb94934188e323bef3fca0ac063ca8cf27f8d4df426eb7923d9ae8d7bea.cairo" - }, - "parent_location": [ - { - "end_col": 17, - "end_line": 35, - "input_file": { - "filename": "src/subdomain/Subdomain.cairo" - }, - "start_col": 6, - "start_line": 35 - }, - "While constructing the external wrapper for:" - ], - "start_col": 100, - "start_line": 1 - }, - "While expanding the reference 'range_check_ptr' in:" - ], - "start_col": 66, - "start_line": 35 - }, - "While constructing the external wrapper for:" - ], - "start_col": 23, - "start_line": 1 - } - }, - "559": { - "accessible_scopes": [ - "__main__", - "__main__", - "__wrappers__", - "__wrappers__.initializer" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 58, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/arg_processor/96b6d646a56c08f445e6e1857e912678843134b143f0b538a202cafa959fe18f.cairo" - }, - "parent_location": [ - { - "end_col": 30, - "end_line": 36, - "input_file": { - "filename": "src/subdomain/Subdomain.cairo" - }, - "parent_location": [ - { - "end_col": 171, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/external/initializer/b371deb94934188e323bef3fca0ac063ca8cf27f8d4df426eb7923d9ae8d7bea.cairo" - }, - "parent_location": [ - { - "end_col": 17, - "end_line": 35, - "input_file": { - "filename": "src/subdomain/Subdomain.cairo" - }, - "start_col": 6, - "start_line": 35 - }, - "While constructing the external wrapper for:" - ], - "start_col": 137, - "start_line": 1 - }, - "While expanding the reference '__calldata_arg_proxy_admin_address' in:" - ], - "start_col": 5, - "start_line": 36 - }, - "While handling calldata argument 'proxy_admin_address'" - ], - "start_col": 42, - "start_line": 1 - } - }, - "560": { - "accessible_scopes": [ - "__main__", - "__main__", - "__wrappers__", - "__wrappers__.initializer" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 58, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/arg_processor/7364b55c8a3069b5cf0bda5d3d03d9395d135e0acbb8746666ea4565ccfe4587.cairo" - }, - "parent_location": [ - { - "end_col": 57, - "end_line": 36, - "input_file": { - "filename": "src/subdomain/Subdomain.cairo" - }, - "parent_location": [ - { - "end_col": 227, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/external/initializer/b371deb94934188e323bef3fca0ac063ca8cf27f8d4df426eb7923d9ae8d7bea.cairo" - }, - "parent_location": [ - { - "end_col": 17, - "end_line": 35, - "input_file": { - "filename": "src/subdomain/Subdomain.cairo" - }, - "start_col": 6, - "start_line": 35 - }, - "While constructing the external wrapper for:" - ], - "start_col": 193, - "start_line": 1 - }, - "While expanding the reference '__calldata_arg_starknetid_contract' in:" - ], - "start_col": 32, - "start_line": 36 - }, - "While handling calldata argument 'starknetid_contract'" - ], - "start_col": 42, - "start_line": 1 - } - }, - "561": { - "accessible_scopes": [ - "__main__", - "__main__", - "__wrappers__", - "__wrappers__.initializer" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 54, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/arg_processor/ad6ac0c85ad8739704cc5f4980561dd6bf7a6e3282834f8fb6bf7898431fc31a.cairo" - }, - "parent_location": [ - { - "end_col": 80, - "end_line": 36, - "input_file": { - "filename": "src/subdomain/Subdomain.cairo" - }, - "parent_location": [ - { - "end_col": 275, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/external/initializer/b371deb94934188e323bef3fca0ac063ca8cf27f8d4df426eb7923d9ae8d7bea.cairo" - }, - "parent_location": [ - { - "end_col": 17, - "end_line": 35, - "input_file": { - "filename": "src/subdomain/Subdomain.cairo" - }, - "start_col": 6, - "start_line": 35 - }, - "While constructing the external wrapper for:" - ], - "start_col": 245, - "start_line": 1 - }, - "While expanding the reference '__calldata_arg_naming_contract' in:" - ], - "start_col": 59, - "start_line": 36 - }, - "While handling calldata argument 'naming_contract'" - ], - "start_col": 38, - "start_line": 1 - } - }, - "562": { - "accessible_scopes": [ - "__main__", - "__main__", - "__wrappers__", - "__wrappers__.initializer" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 17, - "end_line": 35, - "input_file": { - "filename": "src/subdomain/Subdomain.cairo" - }, - "start_col": 6, - "start_line": 35 - } - }, - "564": { - "accessible_scopes": [ - "__main__", - "__main__", - "__wrappers__", - "__wrappers__.initializer" - ], - "flow_tracking_data": null, - "hints": [ - { - "location": { - "end_col": 34, - "end_line": 2, - "input_file": { - "filename": "autogen/starknet/external/initializer/b371deb94934188e323bef3fca0ac063ca8cf27f8d4df426eb7923d9ae8d7bea.cairo" - }, - "parent_location": [ - { - "end_col": 17, - "end_line": 35, - "input_file": { - "filename": "src/subdomain/Subdomain.cairo" - }, - "start_col": 6, - "start_line": 35 - }, - "While constructing the external wrapper for:" - ], - "start_col": 1, - "start_line": 2 - }, - "n_prefix_newlines": 0 - } - ], - "inst": { - "end_col": 24, - "end_line": 3, - "input_file": { - "filename": "autogen/starknet/external/initializer/b371deb94934188e323bef3fca0ac063ca8cf27f8d4df426eb7923d9ae8d7bea.cairo" - }, - "parent_location": [ - { - "end_col": 17, - "end_line": 35, - "input_file": { - "filename": "src/subdomain/Subdomain.cairo" - }, - "start_col": 6, - "start_line": 35 - }, - "While constructing the external wrapper for:" - ], - "start_col": 1, - "start_line": 3 - } - }, - "566": { - "accessible_scopes": [ - "__main__", - "__main__", - "__wrappers__", - "__wrappers__.initializer" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 55, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/external/initializer/b371deb94934188e323bef3fca0ac063ca8cf27f8d4df426eb7923d9ae8d7bea.cairo" - }, - "parent_location": [ - { - "end_col": 17, - "end_line": 35, - "input_file": { - "filename": "src/subdomain/Subdomain.cairo" - }, - "parent_location": [ - { - "end_col": 20, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/external/initializer/18019a070f24c7de62611d09a6e18dd11270f1df7385fbc9eb3519a719dbe8bc.cairo" - }, - "parent_location": [ - { - "end_col": 17, - "end_line": 35, - "input_file": { - "filename": "src/subdomain/Subdomain.cairo" - }, - "start_col": 6, - "start_line": 35 - }, - "While constructing the external wrapper for:" - ], - "start_col": 9, - "start_line": 1 - }, - "While expanding the reference 'syscall_ptr' in:" - ], - "start_col": 6, - "start_line": 35 - }, - "While constructing the external wrapper for:" - ], - "start_col": 44, - "start_line": 1 - } - }, - "567": { - "accessible_scopes": [ - "__main__", - "__main__", - "__wrappers__", - "__wrappers__.initializer" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 82, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/external/initializer/b371deb94934188e323bef3fca0ac063ca8cf27f8d4df426eb7923d9ae8d7bea.cairo" - }, - "parent_location": [ - { - "end_col": 17, - "end_line": 35, - "input_file": { - "filename": "src/subdomain/Subdomain.cairo" - }, - "parent_location": [ - { - "end_col": 33, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/external/initializer/18019a070f24c7de62611d09a6e18dd11270f1df7385fbc9eb3519a719dbe8bc.cairo" - }, - "parent_location": [ - { - "end_col": 17, - "end_line": 35, - "input_file": { - "filename": "src/subdomain/Subdomain.cairo" - }, - "start_col": 6, - "start_line": 35 - }, - "While constructing the external wrapper for:" - ], - "start_col": 21, - "start_line": 1 - }, - "While expanding the reference 'pedersen_ptr' in:" - ], - "start_col": 6, - "start_line": 35 - }, - "While constructing the external wrapper for:" - ], - "start_col": 70, - "start_line": 1 - } - }, - "568": { - "accessible_scopes": [ - "__main__", - "__main__", - "__wrappers__", - "__wrappers__.initializer" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 115, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/external/initializer/b371deb94934188e323bef3fca0ac063ca8cf27f8d4df426eb7923d9ae8d7bea.cairo" - }, - "parent_location": [ - { - "end_col": 17, - "end_line": 35, - "input_file": { - "filename": "src/subdomain/Subdomain.cairo" - }, - "parent_location": [ - { - "end_col": 49, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/external/initializer/18019a070f24c7de62611d09a6e18dd11270f1df7385fbc9eb3519a719dbe8bc.cairo" - }, - "parent_location": [ - { - "end_col": 17, - "end_line": 35, - "input_file": { - "filename": "src/subdomain/Subdomain.cairo" - }, - "start_col": 6, - "start_line": 35 - }, - "While constructing the external wrapper for:" - ], - "start_col": 34, - "start_line": 1 - }, - "While expanding the reference 'range_check_ptr' in:" - ], - "start_col": 6, - "start_line": 35 - }, - "While constructing the external wrapper for:" - ], - "start_col": 100, - "start_line": 1 - } - }, - "569": { - "accessible_scopes": [ - "__main__", - "__main__", - "__wrappers__", - "__wrappers__.initializer" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 61, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/external/initializer/c6c4d3a7a58c6b37d5fdd51b25e5ab9f3e75174b411ab503db3ce03636ed6e2a.cairo" - }, - "parent_location": [ - { - "end_col": 17, - "end_line": 35, - "input_file": { - "filename": "src/subdomain/Subdomain.cairo" - }, - "parent_location": [ - { - "end_col": 59, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/external/initializer/18019a070f24c7de62611d09a6e18dd11270f1df7385fbc9eb3519a719dbe8bc.cairo" - }, - "parent_location": [ - { - "end_col": 17, - "end_line": 35, - "input_file": { - "filename": "src/subdomain/Subdomain.cairo" - }, - "start_col": 6, - "start_line": 35 - }, - "While constructing the external wrapper for:" - ], - "start_col": 50, - "start_line": 1 - }, - "While expanding the reference 'ecdsa_ptr' in:" - ], - "start_col": 6, - "start_line": 35 - }, - "While constructing the external wrapper for:" - ], - "start_col": 17, - "start_line": 1 - } - }, - "570": { - "accessible_scopes": [ - "__main__", - "__main__", - "__wrappers__", - "__wrappers__.initializer" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 21, - "end_line": 4, - "input_file": { - "filename": "autogen/starknet/external/initializer/b371deb94934188e323bef3fca0ac063ca8cf27f8d4df426eb7923d9ae8d7bea.cairo" - }, - "parent_location": [ - { - "end_col": 17, - "end_line": 35, - "input_file": { - "filename": "src/subdomain/Subdomain.cairo" - }, - "parent_location": [ - { - "end_col": 72, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/external/initializer/18019a070f24c7de62611d09a6e18dd11270f1df7385fbc9eb3519a719dbe8bc.cairo" - }, - "parent_location": [ - { - "end_col": 17, - "end_line": 35, - "input_file": { - "filename": "src/subdomain/Subdomain.cairo" - }, - "start_col": 6, - "start_line": 35 - }, - "While constructing the external wrapper for:" - ], - "start_col": 60, - "start_line": 1 - }, - "While expanding the reference 'retdata_size' in:" - ], - "start_col": 6, - "start_line": 35 - }, - "While constructing the external wrapper for:" - ], - "start_col": 20, - "start_line": 4 - } - }, - "572": { - "accessible_scopes": [ - "__main__", - "__main__", - "__wrappers__", - "__wrappers__.initializer" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 16, - "end_line": 3, - "input_file": { - "filename": "autogen/starknet/external/initializer/b371deb94934188e323bef3fca0ac063ca8cf27f8d4df426eb7923d9ae8d7bea.cairo" - }, - "parent_location": [ - { - "end_col": 17, - "end_line": 35, - "input_file": { - "filename": "src/subdomain/Subdomain.cairo" - }, - "parent_location": [ - { - "end_col": 80, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/external/initializer/18019a070f24c7de62611d09a6e18dd11270f1df7385fbc9eb3519a719dbe8bc.cairo" - }, - "parent_location": [ - { - "end_col": 17, - "end_line": 35, - "input_file": { - "filename": "src/subdomain/Subdomain.cairo" - }, - "start_col": 6, - "start_line": 35 - }, - "While constructing the external wrapper for:" - ], - "start_col": 73, - "start_line": 1 - }, - "While expanding the reference 'retdata' in:" - ], - "start_col": 6, - "start_line": 35 - }, - "While constructing the external wrapper for:" - ], - "start_col": 9, - "start_line": 3 - } - }, - "573": { - "accessible_scopes": [ - "__main__", - "__main__", - "__wrappers__", - "__wrappers__.initializer" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 82, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/external/initializer/18019a070f24c7de62611d09a6e18dd11270f1df7385fbc9eb3519a719dbe8bc.cairo" - }, - "parent_location": [ - { - "end_col": 17, - "end_line": 35, - "input_file": { - "filename": "src/subdomain/Subdomain.cairo" - }, - "start_col": 6, - "start_line": 35 - }, - "While constructing the external wrapper for:" - ], - "start_col": 1, - "start_line": 1 - } - }, - "574": { - "accessible_scopes": [ - "__main__", - "__main__", - "__main__.claim_domain_back" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 18, - "end_line": 54, - "input_file": { - "filename": "src/subdomain/Subdomain.cairo" - }, - "start_col": 5, - "start_line": 54 - } - }, - "576": { - "accessible_scopes": [ - "__main__", - "__main__", - "__main__.claim_domain_back" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 42, - "end_line": 51, - "input_file": { - "filename": "src/subdomain/Subdomain.cairo" - }, - "parent_location": [ - { - "end_col": 37, - "end_line": 168, - "input_file": { - "filename": "src/subdomain/Subdomain.cairo" - }, - "parent_location": [ - { - "end_col": 23, - "end_line": 58, - "input_file": { - "filename": "src/subdomain/Subdomain.cairo" - }, - "start_col": 9, - "start_line": 58 - }, - "While trying to retrieve the implicit argument 'syscall_ptr' in:" - ], - "start_col": 19, - "start_line": 168 - }, - "While expanding the reference 'syscall_ptr' in:" - ], - "start_col": 24, - "start_line": 51 - } - }, - "577": { - "accessible_scopes": [ - "__main__", - "__main__", - "__main__.claim_domain_back" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 70, - "end_line": 51, - "input_file": { - "filename": "src/subdomain/Subdomain.cairo" - }, - "parent_location": [ - { - "end_col": 65, - "end_line": 168, - "input_file": { - "filename": "src/subdomain/Subdomain.cairo" - }, - "parent_location": [ - { - "end_col": 23, - "end_line": 58, - "input_file": { - "filename": "src/subdomain/Subdomain.cairo" - }, - "start_col": 9, - "start_line": 58 - }, - "While trying to retrieve the implicit argument 'pedersen_ptr' in:" - ], - "start_col": 39, - "start_line": 168 - }, - "While expanding the reference 'pedersen_ptr' in:" - ], - "start_col": 44, - "start_line": 51 - } - }, - "578": { - "accessible_scopes": [ - "__main__", - "__main__", - "__main__.claim_domain_back" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 87, - "end_line": 51, - "input_file": { - "filename": "src/subdomain/Subdomain.cairo" - }, - "parent_location": [ - { - "end_col": 82, - "end_line": 168, - "input_file": { - "filename": "src/subdomain/Subdomain.cairo" - }, - "parent_location": [ - { - "end_col": 23, - "end_line": 58, - "input_file": { - "filename": "src/subdomain/Subdomain.cairo" - }, - "start_col": 9, - "start_line": 58 - }, - "While trying to retrieve the implicit argument 'range_check_ptr' in:" - ], - "start_col": 67, - "start_line": 168 - }, - "While expanding the reference 'range_check_ptr' in:" - ], - "start_col": 72, - "start_line": 51 - } - }, - "579": { - "accessible_scopes": [ - "__main__", - "__main__", - "__main__.claim_domain_back" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 23, - "end_line": 58, - "input_file": { - "filename": "src/subdomain/Subdomain.cairo" - }, - "start_col": 9, - "start_line": 58 - } - }, - "581": { - "accessible_scopes": [ - "__main__", - "__main__", - "__main__.claim_domain_back" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 37, - "end_line": 168, - "input_file": { - "filename": "src/subdomain/Subdomain.cairo" - }, - "parent_location": [ - { - "end_col": 23, - "end_line": 58, - "input_file": { - "filename": "src/subdomain/Subdomain.cairo" - }, - "parent_location": [ - { - "end_col": 43, - "end_line": 200, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/starknet/common/syscalls.cairo" - }, - "parent_location": [ - { - "end_col": 40, - "end_line": 62, - "input_file": { - "filename": "src/subdomain/Subdomain.cairo" - }, - "start_col": 20, - "start_line": 62 - }, - "While trying to retrieve the implicit argument 'syscall_ptr' in:" - ], - "start_col": 25, - "start_line": 200 - }, - "While expanding the reference 'syscall_ptr' in:" - ], - "start_col": 9, - "start_line": 58 - }, - "While trying to update the implicit return value 'syscall_ptr' in:" - ], - "start_col": 19, - "start_line": 168 - } - }, - "582": { - "accessible_scopes": [ - "__main__", - "__main__", - "__main__.claim_domain_back" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 40, - "end_line": 62, - "input_file": { - "filename": "src/subdomain/Subdomain.cairo" - }, - "start_col": 20, - "start_line": 62 - } - }, - "584": { - "accessible_scopes": [ - "__main__", - "__main__", - "__main__.claim_domain_back" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 16, - "end_line": 62, - "input_file": { - "filename": "src/subdomain/Subdomain.cairo" - }, - "parent_location": [ - { - "end_col": 16, - "end_line": 62, - "input_file": { - "filename": "src/subdomain/Subdomain.cairo" - }, - "start_col": 10, - "start_line": 62 - }, - "While auto generating local variable for 'caller'." - ], - "start_col": 10, - "start_line": 62 - } - }, - "585": { - "accessible_scopes": [ - "__main__", - "__main__", - "__main__.claim_domain_back" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 43, - "end_line": 200, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/starknet/common/syscalls.cairo" - }, - "parent_location": [ - { - "end_col": 40, - "end_line": 62, - "input_file": { - "filename": "src/subdomain/Subdomain.cairo" - }, - "parent_location": [ - { - "end_col": 49, - "end_line": 178, - "input_file": { - "filename": "src/subdomain/Subdomain.cairo" - }, - "parent_location": [ - { - "end_col": 94, - "end_line": 63, - "input_file": { - "filename": "src/subdomain/Subdomain.cairo" - }, - "start_col": 68, - "start_line": 63 - }, - "While trying to retrieve the implicit argument 'syscall_ptr' in:" - ], - "start_col": 31, - "start_line": 178 - }, - "While expanding the reference 'syscall_ptr' in:" - ], - "start_col": 20, - "start_line": 62 - }, - "While trying to update the implicit return value 'syscall_ptr' in:" - ], - "start_col": 25, - "start_line": 200 - } - }, - "586": { - "accessible_scopes": [ - "__main__", - "__main__", - "__main__.claim_domain_back" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 65, - "end_line": 168, - "input_file": { - "filename": "src/subdomain/Subdomain.cairo" - }, - "parent_location": [ - { - "end_col": 23, - "end_line": 58, - "input_file": { - "filename": "src/subdomain/Subdomain.cairo" - }, - "parent_location": [ - { - "end_col": 77, - "end_line": 178, - "input_file": { - "filename": "src/subdomain/Subdomain.cairo" - }, - "parent_location": [ - { - "end_col": 94, - "end_line": 63, - "input_file": { - "filename": "src/subdomain/Subdomain.cairo" - }, - "start_col": 68, - "start_line": 63 - }, - "While trying to retrieve the implicit argument 'pedersen_ptr' in:" - ], - "start_col": 51, - "start_line": 178 - }, - "While expanding the reference 'pedersen_ptr' in:" - ], - "start_col": 9, - "start_line": 58 - }, - "While trying to update the implicit return value 'pedersen_ptr' in:" - ], - "start_col": 39, - "start_line": 168 - } - }, - "587": { - "accessible_scopes": [ - "__main__", - "__main__", - "__main__.claim_domain_back" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 82, - "end_line": 168, - "input_file": { - "filename": "src/subdomain/Subdomain.cairo" - }, - "parent_location": [ - { - "end_col": 23, - "end_line": 58, - "input_file": { - "filename": "src/subdomain/Subdomain.cairo" - }, - "parent_location": [ - { - "end_col": 94, - "end_line": 178, - "input_file": { - "filename": "src/subdomain/Subdomain.cairo" - }, - "parent_location": [ - { - "end_col": 94, - "end_line": 63, - "input_file": { - "filename": "src/subdomain/Subdomain.cairo" - }, - "start_col": 68, - "start_line": 63 - }, - "While trying to retrieve the implicit argument 'range_check_ptr' in:" - ], - "start_col": 79, - "start_line": 178 - }, - "While expanding the reference 'range_check_ptr' in:" - ], - "start_col": 9, - "start_line": 58 - }, - "While trying to update the implicit return value 'range_check_ptr' in:" - ], - "start_col": 67, - "start_line": 168 - } - }, - "588": { - "accessible_scopes": [ - "__main__", - "__main__", - "__main__.claim_domain_back" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 94, - "end_line": 63, - "input_file": { - "filename": "src/subdomain/Subdomain.cairo" - }, - "start_col": 68, - "start_line": 63 - } - }, - "590": { - "accessible_scopes": [ - "__main__", - "__main__", - "__main__.claim_domain_back" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 47, - "end_line": 63, - "input_file": { - "filename": "src/subdomain/Subdomain.cairo" - }, - "parent_location": [ - { - "end_col": 47, - "end_line": 63, - "input_file": { - "filename": "src/subdomain/Subdomain.cairo" - }, - "start_col": 28, - "start_line": 63 - }, - "While auto generating local variable for 'starknetid_contract'." - ], - "start_col": 28, - "start_line": 63 - } - }, - "591": { - "accessible_scopes": [ - "__main__", - "__main__", - "__main__.claim_domain_back" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 26, - "end_line": 63, - "input_file": { - "filename": "src/subdomain/Subdomain.cairo" - }, - "parent_location": [ - { - "end_col": 26, - "end_line": 63, - "input_file": { - "filename": "src/subdomain/Subdomain.cairo" - }, - "start_col": 10, - "start_line": 63 - }, - "While auto generating local variable for 'current_contract'." - ], - "start_col": 10, - "start_line": 63 - } - }, - "592": { - "accessible_scopes": [ - "__main__", - "__main__", - "__main__.claim_domain_back" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 77, - "end_line": 178, - "input_file": { - "filename": "src/subdomain/Subdomain.cairo" - }, - "parent_location": [ - { - "end_col": 94, - "end_line": 63, - "input_file": { - "filename": "src/subdomain/Subdomain.cairo" - }, - "parent_location": [ - { - "end_col": 77, - "end_line": 178, - "input_file": { - "filename": "src/subdomain/Subdomain.cairo" - }, - "parent_location": [ - { - "end_col": 94, - "end_line": 63, - "input_file": { - "filename": "src/subdomain/Subdomain.cairo" - }, - "start_col": 68, - "start_line": 63 - }, - "While trying to update the implicit return value 'pedersen_ptr' in:" - ], - "start_col": 51, - "start_line": 178 - }, - "While auto generating local variable for 'pedersen_ptr'." - ], - "start_col": 68, - "start_line": 63 - }, - "While trying to update the implicit return value 'pedersen_ptr' in:" - ], - "start_col": 51, - "start_line": 178 - } - }, - "593": { - "accessible_scopes": [ - "__main__", - "__main__", - "__main__.claim_domain_back" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 49, - "end_line": 178, - "input_file": { - "filename": "src/subdomain/Subdomain.cairo" - }, - "parent_location": [ - { - "end_col": 94, - "end_line": 63, - "input_file": { - "filename": "src/subdomain/Subdomain.cairo" - }, - "parent_location": [ - { - "end_col": 43, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/contract_interface/INaming/domain_to_token_id/910d281591f877ec93ccb04ae97a6bd968ac0de23e7f59b370fc45289866e4d4.cairo" - }, - "parent_location": [ - { - "end_col": 28, - "end_line": 31, - "input_file": { - "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/interfaces.cairo" - }, - "parent_location": [ - { - "end_col": 85, - "end_line": 66, - "input_file": { - "filename": "src/subdomain/Subdomain.cairo" - }, - "start_col": 22, - "start_line": 66 - }, - "While trying to retrieve the implicit argument 'syscall_ptr' in:" - ], - "start_col": 10, - "start_line": 31 - }, - "While handling contract interface function:" - ], - "start_col": 25, - "start_line": 1 - }, - "While expanding the reference 'syscall_ptr' in:" - ], - "start_col": 68, - "start_line": 63 - }, - "While trying to update the implicit return value 'syscall_ptr' in:" - ], - "start_col": 31, - "start_line": 178 - } - }, - "594": { - "accessible_scopes": [ - "__main__", - "__main__", - "__main__.claim_domain_back" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 94, - "end_line": 178, - "input_file": { - "filename": "src/subdomain/Subdomain.cairo" - }, - "parent_location": [ - { - "end_col": 94, - "end_line": 63, - "input_file": { - "filename": "src/subdomain/Subdomain.cairo" - }, - "parent_location": [ - { - "end_col": 60, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/contract_interface/INaming/domain_to_token_id/910d281591f877ec93ccb04ae97a6bd968ac0de23e7f59b370fc45289866e4d4.cairo" - }, - "parent_location": [ - { - "end_col": 28, - "end_line": 31, - "input_file": { - "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/interfaces.cairo" - }, - "parent_location": [ - { - "end_col": 85, - "end_line": 66, - "input_file": { - "filename": "src/subdomain/Subdomain.cairo" - }, - "start_col": 22, - "start_line": 66 - }, - "While trying to retrieve the implicit argument 'range_check_ptr' in:" - ], - "start_col": 10, - "start_line": 31 - }, - "While handling contract interface function:" - ], - "start_col": 45, - "start_line": 1 - }, - "While expanding the reference 'range_check_ptr' in:" - ], - "start_col": 68, - "start_line": 63 - }, - "While trying to update the implicit return value 'range_check_ptr' in:" - ], - "start_col": 79, - "start_line": 178 - } - }, - "595": { - "accessible_scopes": [ - "__main__", - "__main__", - "__main__.claim_domain_back" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 64, - "end_line": 63, - "input_file": { - "filename": "src/subdomain/Subdomain.cairo" - }, - "parent_location": [ - { - "end_col": 64, - "end_line": 66, - "input_file": { - "filename": "src/subdomain/Subdomain.cairo" - }, - "start_col": 49, - "start_line": 66 - }, - "While expanding the reference 'naming_contract' in:" - ], - "start_col": 49, - "start_line": 63 - } - }, - "596": { - "accessible_scopes": [ - "__main__", - "__main__", - "__main__.claim_domain_back" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 21, - "end_line": 52, - "input_file": { - "filename": "src/subdomain/Subdomain.cairo" - }, - "parent_location": [ - { - "end_col": 76, - "end_line": 66, - "input_file": { - "filename": "src/subdomain/Subdomain.cairo" - }, - "start_col": 66, - "start_line": 66 - }, - "While expanding the reference 'domain_len' in:" - ], - "start_col": 5, - "start_line": 52 - } - }, - "597": { - "accessible_scopes": [ - "__main__", - "__main__", - "__main__.claim_domain_back" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 36, - "end_line": 52, - "input_file": { - "filename": "src/subdomain/Subdomain.cairo" - }, - "parent_location": [ - { - "end_col": 84, - "end_line": 66, - "input_file": { - "filename": "src/subdomain/Subdomain.cairo" - }, - "start_col": 78, - "start_line": 66 - }, - "While expanding the reference 'domain' in:" - ], - "start_col": 23, - "start_line": 52 - } - }, - "598": { - "accessible_scopes": [ - "__main__", - "__main__", - "__main__.claim_domain_back" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 85, - "end_line": 66, - "input_file": { - "filename": "src/subdomain/Subdomain.cairo" - }, - "start_col": 22, - "start_line": 66 - } - }, - "600": { - "accessible_scopes": [ - "__main__", - "__main__", - "__main__.claim_domain_back" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 43, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/contract_interface/INaming/domain_to_token_id/910d281591f877ec93ccb04ae97a6bd968ac0de23e7f59b370fc45289866e4d4.cairo" - }, - "parent_location": [ - { - "end_col": 28, - "end_line": 31, - "input_file": { - "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/interfaces.cairo" - }, - "parent_location": [ - { - "end_col": 85, - "end_line": 66, - "input_file": { - "filename": "src/subdomain/Subdomain.cairo" - }, - "parent_location": [ - { - "end_col": 37, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/contract_interface/IStarknetId/transferFrom/f8c7980cd46ed6d764c999318b5692736b724dc08c1bf96e92d1b77ddf37af10.cairo" - }, - "parent_location": [ - { - "end_col": 22, - "end_line": 125, - "input_file": { - "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/interfaces.cairo" - }, - "parent_location": [ - { - "end_col": 91, - "end_line": 68, - "input_file": { - "filename": "src/subdomain/Subdomain.cairo" - }, - "start_col": 5, - "start_line": 68 - }, - "While trying to retrieve the implicit argument 'syscall_ptr' in:" - ], - "start_col": 10, - "start_line": 125 - }, - "While handling contract interface function:" - ], - "start_col": 19, - "start_line": 1 - }, - "While expanding the reference 'syscall_ptr' in:" - ], - "start_col": 22, - "start_line": 66 - }, - "While trying to update the implicit return value 'syscall_ptr' in:" - ], - "start_col": 10, - "start_line": 31 - }, - "While handling contract interface function:" - ], - "start_col": 25, - "start_line": 1 - } - }, - "601": { - "accessible_scopes": [ - "__main__", - "__main__", - "__main__.claim_domain_back" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 60, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/contract_interface/INaming/domain_to_token_id/910d281591f877ec93ccb04ae97a6bd968ac0de23e7f59b370fc45289866e4d4.cairo" - }, - "parent_location": [ - { - "end_col": 28, - "end_line": 31, - "input_file": { - "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/interfaces.cairo" - }, - "parent_location": [ - { - "end_col": 85, - "end_line": 66, - "input_file": { - "filename": "src/subdomain/Subdomain.cairo" - }, - "parent_location": [ - { - "end_col": 54, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/contract_interface/IStarknetId/transferFrom/f8c7980cd46ed6d764c999318b5692736b724dc08c1bf96e92d1b77ddf37af10.cairo" - }, - "parent_location": [ - { - "end_col": 22, - "end_line": 125, - "input_file": { - "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/interfaces.cairo" - }, - "parent_location": [ - { - "end_col": 91, - "end_line": 68, - "input_file": { - "filename": "src/subdomain/Subdomain.cairo" - }, - "start_col": 5, - "start_line": 68 - }, - "While trying to retrieve the implicit argument 'range_check_ptr' in:" - ], - "start_col": 10, - "start_line": 125 - }, - "While handling contract interface function:" - ], - "start_col": 39, - "start_line": 1 - }, - "While expanding the reference 'range_check_ptr' in:" - ], - "start_col": 22, - "start_line": 66 - }, - "While trying to update the implicit return value 'range_check_ptr' in:" - ], - "start_col": 10, - "start_line": 31 - }, - "While handling contract interface function:" - ], - "start_col": 45, - "start_line": 1 - } - }, - "602": { - "accessible_scopes": [ - "__main__", - "__main__", - "__main__.claim_domain_back" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 47, - "end_line": 63, - "input_file": { - "filename": "src/subdomain/Subdomain.cairo" - }, - "parent_location": [ - { - "end_col": 47, - "end_line": 63, - "input_file": { - "filename": "src/subdomain/Subdomain.cairo" - }, - "parent_location": [ - { - "end_col": 49, - "end_line": 68, - "input_file": { - "filename": "src/subdomain/Subdomain.cairo" - }, - "start_col": 30, - "start_line": 68 - }, - "While expanding the reference 'starknetid_contract' in:" - ], - "start_col": 28, - "start_line": 63 - }, - "While auto generating local variable for 'starknetid_contract'." - ], - "start_col": 28, - "start_line": 63 - } - }, - "603": { - "accessible_scopes": [ - "__main__", - "__main__", - "__main__.claim_domain_back" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 26, - "end_line": 63, - "input_file": { - "filename": "src/subdomain/Subdomain.cairo" - }, - "parent_location": [ - { - "end_col": 26, - "end_line": 63, - "input_file": { - "filename": "src/subdomain/Subdomain.cairo" - }, - "parent_location": [ - { - "end_col": 67, - "end_line": 68, - "input_file": { - "filename": "src/subdomain/Subdomain.cairo" - }, - "start_col": 51, - "start_line": 68 - }, - "While expanding the reference 'current_contract' in:" - ], - "start_col": 10, - "start_line": 63 - }, - "While auto generating local variable for 'current_contract'." - ], - "start_col": 10, - "start_line": 63 - } - }, - "604": { - "accessible_scopes": [ - "__main__", - "__main__", - "__main__.claim_domain_back" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 16, - "end_line": 62, - "input_file": { - "filename": "src/subdomain/Subdomain.cairo" - }, - "parent_location": [ - { - "end_col": 16, - "end_line": 62, - "input_file": { - "filename": "src/subdomain/Subdomain.cairo" - }, - "parent_location": [ - { - "end_col": 75, - "end_line": 68, - "input_file": { - "filename": "src/subdomain/Subdomain.cairo" - }, - "start_col": 69, - "start_line": 68 - }, - "While expanding the reference 'caller' in:" - ], - "start_col": 10, - "start_line": 62 - }, - "While auto generating local variable for 'caller'." - ], - "start_col": 10, - "start_line": 62 - } - }, - "605": { - "accessible_scopes": [ - "__main__", - "__main__", - "__main__.claim_domain_back" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 18, - "end_line": 66, - "input_file": { - "filename": "src/subdomain/Subdomain.cairo" - }, - "parent_location": [ - { - "end_col": 41, - "end_line": 67, - "input_file": { - "filename": "src/subdomain/Subdomain.cairo" - }, - "parent_location": [ - { - "end_col": 90, - "end_line": 68, - "input_file": { - "filename": "src/subdomain/Subdomain.cairo" - }, - "start_col": 77, - "start_line": 68 - }, - "While expanding the reference 'token_id_uint' in:" - ], - "start_col": 33, - "start_line": 67 - }, - "While expanding the reference 'token_id' in:" - ], - "start_col": 10, - "start_line": 66 - } - }, - "606": { - "accessible_scopes": [ - "__main__", - "__main__", - "__main__.claim_domain_back" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 44, - "end_line": 67, - "input_file": { - "filename": "src/subdomain/Subdomain.cairo" - }, - "parent_location": [ - { - "end_col": 90, - "end_line": 68, - "input_file": { - "filename": "src/subdomain/Subdomain.cairo" - }, - "start_col": 77, - "start_line": 68 - }, - "While expanding the reference 'token_id_uint' in:" - ], - "start_col": 43, - "start_line": 67 - } - }, - "608": { - "accessible_scopes": [ - "__main__", - "__main__", - "__main__.claim_domain_back" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 91, - "end_line": 68, - "input_file": { - "filename": "src/subdomain/Subdomain.cairo" - }, - "start_col": 5, - "start_line": 68 - } - }, - "610": { - "accessible_scopes": [ - "__main__", - "__main__", - "__main__.claim_domain_back" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 37, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/contract_interface/IStarknetId/transferFrom/f8c7980cd46ed6d764c999318b5692736b724dc08c1bf96e92d1b77ddf37af10.cairo" - }, - "parent_location": [ - { - "end_col": 22, - "end_line": 125, - "input_file": { - "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/interfaces.cairo" - }, - "parent_location": [ - { - "end_col": 91, - "end_line": 68, - "input_file": { - "filename": "src/subdomain/Subdomain.cairo" - }, - "parent_location": [ - { - "end_col": 42, - "end_line": 51, - "input_file": { - "filename": "src/subdomain/Subdomain.cairo" - }, - "parent_location": [ - { - "end_col": 15, - "end_line": 70, - "input_file": { - "filename": "src/subdomain/Subdomain.cairo" - }, - "start_col": 5, - "start_line": 70 - }, - "While trying to retrieve the implicit argument 'syscall_ptr' in:" - ], - "start_col": 24, - "start_line": 51 - }, - "While expanding the reference 'syscall_ptr' in:" - ], - "start_col": 5, - "start_line": 68 - }, - "While trying to update the implicit return value 'syscall_ptr' in:" - ], - "start_col": 10, - "start_line": 125 - }, - "While handling contract interface function:" - ], - "start_col": 19, - "start_line": 1 - } - }, - "611": { - "accessible_scopes": [ - "__main__", - "__main__", - "__main__.claim_domain_back" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 77, - "end_line": 178, - "input_file": { - "filename": "src/subdomain/Subdomain.cairo" - }, - "parent_location": [ - { - "end_col": 94, - "end_line": 63, - "input_file": { - "filename": "src/subdomain/Subdomain.cairo" - }, - "parent_location": [ - { - "end_col": 77, - "end_line": 178, - "input_file": { - "filename": "src/subdomain/Subdomain.cairo" - }, - "parent_location": [ - { - "end_col": 94, - "end_line": 63, - "input_file": { - "filename": "src/subdomain/Subdomain.cairo" - }, - "parent_location": [ - { - "end_col": 70, - "end_line": 51, - "input_file": { - "filename": "src/subdomain/Subdomain.cairo" - }, - "parent_location": [ - { - "end_col": 15, - "end_line": 70, - "input_file": { - "filename": "src/subdomain/Subdomain.cairo" - }, - "start_col": 5, - "start_line": 70 - }, - "While trying to retrieve the implicit argument 'pedersen_ptr' in:" - ], - "start_col": 44, - "start_line": 51 - }, - "While expanding the reference 'pedersen_ptr' in:" - ], - "start_col": 68, - "start_line": 63 - }, - "While trying to update the implicit return value 'pedersen_ptr' in:" - ], - "start_col": 51, - "start_line": 178 - }, - "While auto generating local variable for 'pedersen_ptr'." - ], - "start_col": 68, - "start_line": 63 - }, - "While trying to update the implicit return value 'pedersen_ptr' in:" - ], - "start_col": 51, - "start_line": 178 - } - }, - "612": { - "accessible_scopes": [ - "__main__", - "__main__", - "__main__.claim_domain_back" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 54, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/contract_interface/IStarknetId/transferFrom/f8c7980cd46ed6d764c999318b5692736b724dc08c1bf96e92d1b77ddf37af10.cairo" - }, - "parent_location": [ - { - "end_col": 22, - "end_line": 125, - "input_file": { - "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/interfaces.cairo" - }, - "parent_location": [ - { - "end_col": 91, - "end_line": 68, - "input_file": { - "filename": "src/subdomain/Subdomain.cairo" - }, - "parent_location": [ - { - "end_col": 87, - "end_line": 51, - "input_file": { - "filename": "src/subdomain/Subdomain.cairo" - }, - "parent_location": [ - { - "end_col": 15, - "end_line": 70, - "input_file": { - "filename": "src/subdomain/Subdomain.cairo" - }, - "start_col": 5, - "start_line": 70 - }, - "While trying to retrieve the implicit argument 'range_check_ptr' in:" - ], - "start_col": 72, - "start_line": 51 - }, - "While expanding the reference 'range_check_ptr' in:" - ], - "start_col": 5, - "start_line": 68 - }, - "While trying to update the implicit return value 'range_check_ptr' in:" - ], - "start_col": 10, - "start_line": 125 - }, - "While handling contract interface function:" - ], - "start_col": 39, - "start_line": 1 - } - }, - "613": { - "accessible_scopes": [ - "__main__", - "__main__", - "__main__.claim_domain_back" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 15, - "end_line": 70, - "input_file": { - "filename": "src/subdomain/Subdomain.cairo" - }, - "start_col": 5, - "start_line": 70 - } - }, - "614": { - "accessible_scopes": [ - "__main__", - "__main__", - "__wrappers__", - "__wrappers__.claim_domain_back" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 67, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/external/claim_domain_back/741ea357d6336b0bed7bf0472425acd0311d543883b803388880e60a232040c7.cairo" - }, - "parent_location": [ - { - "end_col": 87, - "end_line": 51, - "input_file": { - "filename": "src/subdomain/Subdomain.cairo" - }, - "parent_location": [ - { - "end_col": 24, - "end_line": 2, - "input_file": { - "filename": "autogen/starknet/arg_processor/ecf03f15152f9b4d2d3eb98ddd06a26dab9c64ca1c8ef3baff428e06f0676f44.cairo" - }, - "parent_location": [ - { - "end_col": 36, - "end_line": 52, - "input_file": { - "filename": "src/subdomain/Subdomain.cairo" - }, - "start_col": 23, - "start_line": 52 - }, - "While handling calldata argument 'domain'" - ], - "start_col": 9, - "start_line": 2 - }, - "While expanding the reference 'range_check_ptr' in:" - ], - "start_col": 72, - "start_line": 51 - }, - "While constructing the external wrapper for:" - ], - "start_col": 23, - "start_line": 1 - } - }, - "615": { - "accessible_scopes": [ - "__main__", - "__main__", - "__wrappers__", - "__wrappers__.claim_domain_back" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 49, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/arg_processor/ed50269b72e425c5b3d67a4bb9888a6c7b7ffd156c3460ac766545cf8944b51c.cairo" - }, - "parent_location": [ - { - "end_col": 21, - "end_line": 52, - "input_file": { - "filename": "src/subdomain/Subdomain.cairo" - }, - "parent_location": [ - { - "end_col": 53, - "end_line": 2, - "input_file": { - "filename": "autogen/starknet/arg_processor/ecf03f15152f9b4d2d3eb98ddd06a26dab9c64ca1c8ef3baff428e06f0676f44.cairo" - }, - "parent_location": [ - { - "end_col": 36, - "end_line": 52, - "input_file": { - "filename": "src/subdomain/Subdomain.cairo" - }, - "start_col": 23, - "start_line": 52 - }, - "While handling calldata argument 'domain'" - ], - "start_col": 28, - "start_line": 2 - }, - "While expanding the reference '__calldata_arg_domain_len' in:" - ], - "start_col": 5, - "start_line": 52 - }, - "While handling calldata argument 'domain_len'" - ], - "start_col": 33, - "start_line": 1 - } - }, - "616": { - "accessible_scopes": [ - "__main__", - "__main__", - "__wrappers__", - "__wrappers__.claim_domain_back" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 54, - "end_line": 2, - "input_file": { - "filename": "autogen/starknet/arg_processor/ecf03f15152f9b4d2d3eb98ddd06a26dab9c64ca1c8ef3baff428e06f0676f44.cairo" - }, - "parent_location": [ - { - "end_col": 36, - "end_line": 52, - "input_file": { - "filename": "src/subdomain/Subdomain.cairo" - }, - "start_col": 23, - "start_line": 52 - }, - "While handling calldata argument 'domain'" - ], - "start_col": 1, - "start_line": 2 - } - }, - "617": { - "accessible_scopes": [ - "__main__", - "__main__", - "__wrappers__", - "__wrappers__.claim_domain_back" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 40, - "end_line": 2, - "input_file": { - "filename": "autogen/starknet/arg_processor/ed50269b72e425c5b3d67a4bb9888a6c7b7ffd156c3460ac766545cf8944b51c.cairo" - }, - "parent_location": [ - { - "end_col": 21, - "end_line": 52, - "input_file": { - "filename": "src/subdomain/Subdomain.cairo" - }, - "parent_location": [ - { - "end_col": 40, - "end_line": 8, - "input_file": { - "filename": "autogen/starknet/arg_processor/ecf03f15152f9b4d2d3eb98ddd06a26dab9c64ca1c8ef3baff428e06f0676f44.cairo" - }, - "parent_location": [ - { - "end_col": 36, - "end_line": 52, - "input_file": { - "filename": "src/subdomain/Subdomain.cairo" - }, - "start_col": 23, - "start_line": 52 - }, - "While handling calldata argument 'domain'" - ], - "start_col": 26, - "start_line": 8 - }, - "While expanding the reference '__calldata_ptr' in:" - ], - "start_col": 5, - "start_line": 52 - }, - "While handling calldata argument 'domain_len'" - ], - "start_col": 22, - "start_line": 2 - } - }, - "619": { - "accessible_scopes": [ - "__main__", - "__main__", - "__wrappers__", - "__wrappers__.claim_domain_back" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 49, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/arg_processor/ed50269b72e425c5b3d67a4bb9888a6c7b7ffd156c3460ac766545cf8944b51c.cairo" - }, - "parent_location": [ - { - "end_col": 21, - "end_line": 52, - "input_file": { - "filename": "src/subdomain/Subdomain.cairo" - }, - "parent_location": [ - { - "end_col": 68, - "end_line": 8, - "input_file": { - "filename": "autogen/starknet/arg_processor/ecf03f15152f9b4d2d3eb98ddd06a26dab9c64ca1c8ef3baff428e06f0676f44.cairo" - }, - "parent_location": [ - { - "end_col": 36, - "end_line": 52, - "input_file": { - "filename": "src/subdomain/Subdomain.cairo" - }, - "start_col": 23, - "start_line": 52 - }, - "While handling calldata argument 'domain'" - ], - "start_col": 43, - "start_line": 8 - }, - "While expanding the reference '__calldata_arg_domain_len' in:" - ], - "start_col": 5, - "start_line": 52 - }, - "While handling calldata argument 'domain_len'" - ], - "start_col": 33, - "start_line": 1 - } - }, - "620": { - "accessible_scopes": [ - "__main__", - "__main__", - "__wrappers__", - "__wrappers__.claim_domain_back" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 72, - "end_line": 8, - "input_file": { - "filename": "autogen/starknet/arg_processor/ecf03f15152f9b4d2d3eb98ddd06a26dab9c64ca1c8ef3baff428e06f0676f44.cairo" - }, - "parent_location": [ - { - "end_col": 36, - "end_line": 52, - "input_file": { - "filename": "src/subdomain/Subdomain.cairo" - }, - "start_col": 23, - "start_line": 52 - }, - "While handling calldata argument 'domain'" - ], - "start_col": 26, - "start_line": 8 - } - }, - "621": { - "accessible_scopes": [ - "__main__", - "__main__", - "__wrappers__", - "__wrappers__.claim_domain_back" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 58, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/arg_processor/01cba52f8515996bb9d7070bde81ff39281d096d7024a558efcba6e1fd2402cf.cairo" - }, - "parent_location": [ - { - "end_col": 23, - "end_line": 51, - "input_file": { - "filename": "src/subdomain/Subdomain.cairo" - }, - "start_col": 6, - "start_line": 51 - }, - "While handling calldata of" - ], - "start_col": 1, - "start_line": 1 - } - }, - "622": { - "accessible_scopes": [ - "__main__", - "__main__", - "__wrappers__", - "__wrappers__.claim_domain_back" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 67, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/external/claim_domain_back/741ea357d6336b0bed7bf0472425acd0311d543883b803388880e60a232040c7.cairo" - }, - "parent_location": [ - { - "end_col": 87, - "end_line": 51, - "input_file": { - "filename": "src/subdomain/Subdomain.cairo" - }, - "parent_location": [ - { - "end_col": 38, - "end_line": 3, - "input_file": { - "filename": "autogen/starknet/arg_processor/ecf03f15152f9b4d2d3eb98ddd06a26dab9c64ca1c8ef3baff428e06f0676f44.cairo" - }, - "parent_location": [ - { - "end_col": 36, - "end_line": 52, - "input_file": { - "filename": "src/subdomain/Subdomain.cairo" - }, - "parent_location": [ - { - "end_col": 115, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/external/claim_domain_back/dc10af6be62e8f611b8e3807b3a1a1069d95a74e2750ea3f5c8b0b70134f16b5.cairo" - }, - "parent_location": [ - { - "end_col": 23, - "end_line": 51, - "input_file": { - "filename": "src/subdomain/Subdomain.cairo" - }, - "start_col": 6, - "start_line": 51 - }, - "While constructing the external wrapper for:" - ], - "start_col": 100, - "start_line": 1 - }, - "While expanding the reference 'range_check_ptr' in:" - ], - "start_col": 23, - "start_line": 52 - }, - "While handling calldata argument 'domain'" - ], - "start_col": 23, - "start_line": 3 - }, - "While expanding the reference 'range_check_ptr' in:" - ], - "start_col": 72, - "start_line": 51 - }, - "While constructing the external wrapper for:" - ], - "start_col": 23, - "start_line": 1 - } - }, - "623": { - "accessible_scopes": [ - "__main__", - "__main__", - "__wrappers__", - "__wrappers__.claim_domain_back" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 64, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/external/claim_domain_back/b2c52ca2d2a8fc8791a983086d8716c5eacd0c3d62934914d2286f84b98ff4cb.cairo" - }, - "parent_location": [ - { - "end_col": 42, - "end_line": 51, - "input_file": { - "filename": "src/subdomain/Subdomain.cairo" - }, - "parent_location": [ - { - "end_col": 55, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/external/claim_domain_back/dc10af6be62e8f611b8e3807b3a1a1069d95a74e2750ea3f5c8b0b70134f16b5.cairo" - }, - "parent_location": [ - { - "end_col": 23, - "end_line": 51, - "input_file": { - "filename": "src/subdomain/Subdomain.cairo" - }, - "start_col": 6, - "start_line": 51 - }, - "While constructing the external wrapper for:" - ], - "start_col": 44, - "start_line": 1 - }, - "While expanding the reference 'syscall_ptr' in:" - ], - "start_col": 24, - "start_line": 51 - }, - "While constructing the external wrapper for:" - ], - "start_col": 19, - "start_line": 1 - } - }, - "624": { - "accessible_scopes": [ - "__main__", - "__main__", - "__wrappers__", - "__wrappers__.claim_domain_back" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 110, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/external/claim_domain_back/9684a85e93c782014ca14293edea4eb2502039a5a7b6538ecd39c56faaf12529.cairo" - }, - "parent_location": [ - { - "end_col": 70, - "end_line": 51, - "input_file": { - "filename": "src/subdomain/Subdomain.cairo" - }, - "parent_location": [ - { - "end_col": 82, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/external/claim_domain_back/dc10af6be62e8f611b8e3807b3a1a1069d95a74e2750ea3f5c8b0b70134f16b5.cairo" - }, - "parent_location": [ - { - "end_col": 23, - "end_line": 51, - "input_file": { - "filename": "src/subdomain/Subdomain.cairo" - }, - "start_col": 6, - "start_line": 51 - }, - "While constructing the external wrapper for:" - ], - "start_col": 70, - "start_line": 1 - }, - "While expanding the reference 'pedersen_ptr' in:" - ], - "start_col": 44, - "start_line": 51 - }, - "While constructing the external wrapper for:" - ], - "start_col": 20, - "start_line": 1 - } - }, - "625": { - "accessible_scopes": [ - "__main__", - "__main__", - "__wrappers__", - "__wrappers__.claim_domain_back" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 42, - "end_line": 3, - "input_file": { - "filename": "autogen/starknet/arg_processor/ecf03f15152f9b4d2d3eb98ddd06a26dab9c64ca1c8ef3baff428e06f0676f44.cairo" - }, - "parent_location": [ - { - "end_col": 36, - "end_line": 52, - "input_file": { - "filename": "src/subdomain/Subdomain.cairo" - }, - "parent_location": [ - { - "end_col": 115, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/external/claim_domain_back/dc10af6be62e8f611b8e3807b3a1a1069d95a74e2750ea3f5c8b0b70134f16b5.cairo" - }, - "parent_location": [ - { - "end_col": 23, - "end_line": 51, - "input_file": { - "filename": "src/subdomain/Subdomain.cairo" - }, - "start_col": 6, - "start_line": 51 - }, - "While constructing the external wrapper for:" - ], - "start_col": 100, - "start_line": 1 - }, - "While expanding the reference 'range_check_ptr' in:" - ], - "start_col": 23, - "start_line": 52 - }, - "While handling calldata argument 'domain'" - ], - "start_col": 23, - "start_line": 3 - } - }, - "627": { - "accessible_scopes": [ - "__main__", - "__main__", - "__wrappers__", - "__wrappers__.claim_domain_back" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 49, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/arg_processor/ed50269b72e425c5b3d67a4bb9888a6c7b7ffd156c3460ac766545cf8944b51c.cairo" - }, - "parent_location": [ - { - "end_col": 21, - "end_line": 52, - "input_file": { - "filename": "src/subdomain/Subdomain.cairo" - }, - "parent_location": [ - { - "end_col": 153, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/external/claim_domain_back/dc10af6be62e8f611b8e3807b3a1a1069d95a74e2750ea3f5c8b0b70134f16b5.cairo" - }, - "parent_location": [ - { - "end_col": 23, - "end_line": 51, - "input_file": { - "filename": "src/subdomain/Subdomain.cairo" - }, - "start_col": 6, - "start_line": 51 - }, - "While constructing the external wrapper for:" - ], - "start_col": 128, - "start_line": 1 - }, - "While expanding the reference '__calldata_arg_domain_len' in:" - ], - "start_col": 5, - "start_line": 52 - }, - "While handling calldata argument 'domain_len'" - ], - "start_col": 33, - "start_line": 1 - } - }, - "628": { - "accessible_scopes": [ - "__main__", - "__main__", - "__wrappers__", - "__wrappers__.claim_domain_back" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 56, - "end_line": 5, - "input_file": { - "filename": "autogen/starknet/arg_processor/ecf03f15152f9b4d2d3eb98ddd06a26dab9c64ca1c8ef3baff428e06f0676f44.cairo" - }, - "parent_location": [ - { - "end_col": 36, - "end_line": 52, - "input_file": { - "filename": "src/subdomain/Subdomain.cairo" - }, - "parent_location": [ - { - "end_col": 183, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/external/claim_domain_back/dc10af6be62e8f611b8e3807b3a1a1069d95a74e2750ea3f5c8b0b70134f16b5.cairo" - }, - "parent_location": [ - { - "end_col": 23, - "end_line": 51, - "input_file": { - "filename": "src/subdomain/Subdomain.cairo" - }, - "start_col": 6, - "start_line": 51 - }, - "While constructing the external wrapper for:" - ], - "start_col": 162, - "start_line": 1 - }, - "While expanding the reference '__calldata_arg_domain' in:" - ], - "start_col": 23, - "start_line": 52 - }, - "While handling calldata argument 'domain'" - ], - "start_col": 29, - "start_line": 5 - } - }, - "630": { - "accessible_scopes": [ - "__main__", - "__main__", - "__wrappers__", - "__wrappers__.claim_domain_back" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 23, - "end_line": 51, - "input_file": { - "filename": "src/subdomain/Subdomain.cairo" - }, - "start_col": 6, - "start_line": 51 - } - }, - "632": { - "accessible_scopes": [ - "__main__", - "__main__", - "__wrappers__", - "__wrappers__.claim_domain_back" - ], - "flow_tracking_data": null, - "hints": [ - { - "location": { - "end_col": 34, - "end_line": 2, - "input_file": { - "filename": "autogen/starknet/external/claim_domain_back/dc10af6be62e8f611b8e3807b3a1a1069d95a74e2750ea3f5c8b0b70134f16b5.cairo" - }, - "parent_location": [ - { - "end_col": 23, - "end_line": 51, - "input_file": { - "filename": "src/subdomain/Subdomain.cairo" - }, - "start_col": 6, - "start_line": 51 - }, - "While constructing the external wrapper for:" - ], - "start_col": 1, - "start_line": 2 - }, - "n_prefix_newlines": 0 - } - ], - "inst": { - "end_col": 24, - "end_line": 3, - "input_file": { - "filename": "autogen/starknet/external/claim_domain_back/dc10af6be62e8f611b8e3807b3a1a1069d95a74e2750ea3f5c8b0b70134f16b5.cairo" - }, - "parent_location": [ - { - "end_col": 23, - "end_line": 51, - "input_file": { - "filename": "src/subdomain/Subdomain.cairo" - }, - "start_col": 6, - "start_line": 51 - }, - "While constructing the external wrapper for:" - ], - "start_col": 1, - "start_line": 3 - } - }, - "634": { - "accessible_scopes": [ - "__main__", - "__main__", - "__wrappers__", - "__wrappers__.claim_domain_back" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 55, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/external/claim_domain_back/dc10af6be62e8f611b8e3807b3a1a1069d95a74e2750ea3f5c8b0b70134f16b5.cairo" - }, - "parent_location": [ - { - "end_col": 23, - "end_line": 51, - "input_file": { - "filename": "src/subdomain/Subdomain.cairo" - }, - "parent_location": [ - { - "end_col": 20, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/external/claim_domain_back/18019a070f24c7de62611d09a6e18dd11270f1df7385fbc9eb3519a719dbe8bc.cairo" - }, - "parent_location": [ - { - "end_col": 23, - "end_line": 51, - "input_file": { - "filename": "src/subdomain/Subdomain.cairo" - }, - "start_col": 6, - "start_line": 51 - }, - "While constructing the external wrapper for:" - ], - "start_col": 9, - "start_line": 1 - }, - "While expanding the reference 'syscall_ptr' in:" - ], - "start_col": 6, - "start_line": 51 - }, - "While constructing the external wrapper for:" - ], - "start_col": 44, - "start_line": 1 - } - }, - "635": { - "accessible_scopes": [ - "__main__", - "__main__", - "__wrappers__", - "__wrappers__.claim_domain_back" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 82, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/external/claim_domain_back/dc10af6be62e8f611b8e3807b3a1a1069d95a74e2750ea3f5c8b0b70134f16b5.cairo" - }, - "parent_location": [ - { - "end_col": 23, - "end_line": 51, - "input_file": { - "filename": "src/subdomain/Subdomain.cairo" - }, - "parent_location": [ - { - "end_col": 33, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/external/claim_domain_back/18019a070f24c7de62611d09a6e18dd11270f1df7385fbc9eb3519a719dbe8bc.cairo" - }, - "parent_location": [ - { - "end_col": 23, - "end_line": 51, - "input_file": { - "filename": "src/subdomain/Subdomain.cairo" - }, - "start_col": 6, - "start_line": 51 - }, - "While constructing the external wrapper for:" - ], - "start_col": 21, - "start_line": 1 - }, - "While expanding the reference 'pedersen_ptr' in:" - ], - "start_col": 6, - "start_line": 51 - }, - "While constructing the external wrapper for:" - ], - "start_col": 70, - "start_line": 1 - } - }, - "636": { - "accessible_scopes": [ - "__main__", - "__main__", - "__wrappers__", - "__wrappers__.claim_domain_back" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 115, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/external/claim_domain_back/dc10af6be62e8f611b8e3807b3a1a1069d95a74e2750ea3f5c8b0b70134f16b5.cairo" - }, - "parent_location": [ - { - "end_col": 23, - "end_line": 51, - "input_file": { - "filename": "src/subdomain/Subdomain.cairo" - }, - "parent_location": [ - { - "end_col": 49, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/external/claim_domain_back/18019a070f24c7de62611d09a6e18dd11270f1df7385fbc9eb3519a719dbe8bc.cairo" - }, - "parent_location": [ - { - "end_col": 23, - "end_line": 51, - "input_file": { - "filename": "src/subdomain/Subdomain.cairo" - }, - "start_col": 6, - "start_line": 51 - }, - "While constructing the external wrapper for:" - ], - "start_col": 34, - "start_line": 1 - }, - "While expanding the reference 'range_check_ptr' in:" - ], - "start_col": 6, - "start_line": 51 - }, - "While constructing the external wrapper for:" - ], - "start_col": 100, - "start_line": 1 - } - }, - "637": { - "accessible_scopes": [ - "__main__", - "__main__", - "__wrappers__", - "__wrappers__.claim_domain_back" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 61, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/external/claim_domain_back/c6c4d3a7a58c6b37d5fdd51b25e5ab9f3e75174b411ab503db3ce03636ed6e2a.cairo" - }, - "parent_location": [ - { - "end_col": 23, - "end_line": 51, - "input_file": { - "filename": "src/subdomain/Subdomain.cairo" - }, - "parent_location": [ - { - "end_col": 59, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/external/claim_domain_back/18019a070f24c7de62611d09a6e18dd11270f1df7385fbc9eb3519a719dbe8bc.cairo" - }, - "parent_location": [ - { - "end_col": 23, - "end_line": 51, - "input_file": { - "filename": "src/subdomain/Subdomain.cairo" - }, - "start_col": 6, - "start_line": 51 - }, - "While constructing the external wrapper for:" - ], - "start_col": 50, - "start_line": 1 - }, - "While expanding the reference 'ecdsa_ptr' in:" - ], - "start_col": 6, - "start_line": 51 - }, - "While constructing the external wrapper for:" - ], - "start_col": 17, - "start_line": 1 - } - }, - "638": { - "accessible_scopes": [ - "__main__", - "__main__", - "__wrappers__", - "__wrappers__.claim_domain_back" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 21, - "end_line": 4, - "input_file": { - "filename": "autogen/starknet/external/claim_domain_back/dc10af6be62e8f611b8e3807b3a1a1069d95a74e2750ea3f5c8b0b70134f16b5.cairo" - }, - "parent_location": [ - { - "end_col": 23, - "end_line": 51, - "input_file": { - "filename": "src/subdomain/Subdomain.cairo" - }, - "parent_location": [ - { - "end_col": 72, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/external/claim_domain_back/18019a070f24c7de62611d09a6e18dd11270f1df7385fbc9eb3519a719dbe8bc.cairo" - }, - "parent_location": [ - { - "end_col": 23, - "end_line": 51, - "input_file": { - "filename": "src/subdomain/Subdomain.cairo" - }, - "start_col": 6, - "start_line": 51 - }, - "While constructing the external wrapper for:" - ], - "start_col": 60, - "start_line": 1 - }, - "While expanding the reference 'retdata_size' in:" - ], - "start_col": 6, - "start_line": 51 - }, - "While constructing the external wrapper for:" - ], - "start_col": 20, - "start_line": 4 - } - }, - "640": { - "accessible_scopes": [ - "__main__", - "__main__", - "__wrappers__", - "__wrappers__.claim_domain_back" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 16, - "end_line": 3, - "input_file": { - "filename": "autogen/starknet/external/claim_domain_back/dc10af6be62e8f611b8e3807b3a1a1069d95a74e2750ea3f5c8b0b70134f16b5.cairo" - }, - "parent_location": [ - { - "end_col": 23, - "end_line": 51, - "input_file": { - "filename": "src/subdomain/Subdomain.cairo" - }, - "parent_location": [ - { - "end_col": 80, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/external/claim_domain_back/18019a070f24c7de62611d09a6e18dd11270f1df7385fbc9eb3519a719dbe8bc.cairo" - }, - "parent_location": [ - { - "end_col": 23, - "end_line": 51, - "input_file": { - "filename": "src/subdomain/Subdomain.cairo" - }, - "start_col": 6, - "start_line": 51 - }, - "While constructing the external wrapper for:" - ], - "start_col": 73, - "start_line": 1 - }, - "While expanding the reference 'retdata' in:" - ], - "start_col": 6, - "start_line": 51 - }, - "While constructing the external wrapper for:" - ], - "start_col": 9, - "start_line": 3 - } - }, - "641": { - "accessible_scopes": [ - "__main__", - "__main__", - "__wrappers__", - "__wrappers__.claim_domain_back" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 82, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/external/claim_domain_back/18019a070f24c7de62611d09a6e18dd11270f1df7385fbc9eb3519a719dbe8bc.cairo" - }, - "parent_location": [ - { - "end_col": 23, - "end_line": 51, - "input_file": { - "filename": "src/subdomain/Subdomain.cairo" - }, - "start_col": 6, - "start_line": 51 - }, - "While constructing the external wrapper for:" - ], - "start_col": 1, - "start_line": 1 - } - }, - "642": { - "accessible_scopes": [ - "__main__", - "__main__", - "__main__.register" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 18, - "end_line": 77, - "input_file": { - "filename": "src/subdomain/Subdomain.cairo" - }, - "start_col": 5, - "start_line": 77 - } - }, - "644": { - "accessible_scopes": [ - "__main__", - "__main__", - "__main__.register" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 23, - "end_line": 75, - "input_file": { - "filename": "src/subdomain/Subdomain.cairo" - }, - "parent_location": [ - { - "end_col": 33, - "end_line": 13, - "input_file": { - "filename": "autogen/starknet/storage_var/_is_registration_open/decl.cairo" - }, - "parent_location": [ - { - "end_col": 62, - "end_line": 80, - "input_file": { - "filename": "src/subdomain/Subdomain.cairo" - }, - "start_col": 34, - "start_line": 80 - }, - "While trying to retrieve the implicit argument 'syscall_ptr' in:" - ], - "start_col": 15, - "start_line": 13 - }, - "While expanding the reference 'syscall_ptr' in:" - ], - "start_col": 5, - "start_line": 75 - } - }, - "645": { - "accessible_scopes": [ - "__main__", - "__main__", - "__main__.register" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 51, - "end_line": 75, - "input_file": { - "filename": "src/subdomain/Subdomain.cairo" - }, - "parent_location": [ - { - "end_col": 61, - "end_line": 13, - "input_file": { - "filename": "autogen/starknet/storage_var/_is_registration_open/decl.cairo" - }, - "parent_location": [ - { - "end_col": 62, - "end_line": 80, - "input_file": { - "filename": "src/subdomain/Subdomain.cairo" - }, - "start_col": 34, - "start_line": 80 - }, - "While trying to retrieve the implicit argument 'pedersen_ptr' in:" - ], - "start_col": 35, - "start_line": 13 - }, - "While expanding the reference 'pedersen_ptr' in:" - ], - "start_col": 25, - "start_line": 75 - } - }, - "646": { - "accessible_scopes": [ - "__main__", - "__main__", - "__main__.register" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 68, - "end_line": 75, - "input_file": { - "filename": "src/subdomain/Subdomain.cairo" - }, - "parent_location": [ - { - "end_col": 78, - "end_line": 13, - "input_file": { - "filename": "autogen/starknet/storage_var/_is_registration_open/decl.cairo" - }, - "parent_location": [ - { - "end_col": 62, - "end_line": 80, - "input_file": { - "filename": "src/subdomain/Subdomain.cairo" - }, - "start_col": 34, - "start_line": 80 - }, - "While trying to retrieve the implicit argument 'range_check_ptr' in:" - ], - "start_col": 63, - "start_line": 13 - }, - "While expanding the reference 'range_check_ptr' in:" - ], - "start_col": 53, - "start_line": 75 - } - }, - "647": { - "accessible_scopes": [ - "__main__", - "__main__", - "__main__.register" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 62, - "end_line": 80, - "input_file": { - "filename": "src/subdomain/Subdomain.cairo" - }, - "start_col": 34, - "start_line": 80 - } - }, - "649": { - "accessible_scopes": [ - "__main__", - "__main__", - "__main__.register" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 41, - "end_line": 82, - "input_file": { - "filename": "src/subdomain/Subdomain.cairo" - }, - "start_col": 9, - "start_line": 82 - } - }, - "651": { - "accessible_scopes": [ - "__main__", - "__main__", - "__main__.register" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 33, - "end_line": 13, - "input_file": { - "filename": "autogen/starknet/storage_var/_is_registration_open/decl.cairo" - }, - "parent_location": [ - { - "end_col": 62, - "end_line": 80, - "input_file": { - "filename": "src/subdomain/Subdomain.cairo" - }, - "parent_location": [ - { - "end_col": 43, - "end_line": 200, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/starknet/common/syscalls.cairo" - }, - "parent_location": [ - { - "end_col": 40, - "end_line": 85, - "input_file": { - "filename": "src/subdomain/Subdomain.cairo" - }, - "start_col": 20, - "start_line": 85 - }, - "While trying to retrieve the implicit argument 'syscall_ptr' in:" - ], - "start_col": 25, - "start_line": 200 - }, - "While expanding the reference 'syscall_ptr' in:" - ], - "start_col": 34, - "start_line": 80 - }, - "While trying to update the implicit return value 'syscall_ptr' in:" - ], - "start_col": 15, - "start_line": 13 - } - }, - "652": { - "accessible_scopes": [ - "__main__", - "__main__", - "__main__.register" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 40, - "end_line": 85, - "input_file": { - "filename": "src/subdomain/Subdomain.cairo" - }, - "start_col": 20, - "start_line": 85 - } - }, - "654": { - "accessible_scopes": [ - "__main__", - "__main__", - "__main__.register" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 16, - "end_line": 85, - "input_file": { - "filename": "src/subdomain/Subdomain.cairo" - }, - "parent_location": [ - { - "end_col": 16, - "end_line": 85, - "input_file": { - "filename": "src/subdomain/Subdomain.cairo" - }, - "start_col": 10, - "start_line": 85 - }, - "While auto generating local variable for 'caller'." - ], - "start_col": 10, - "start_line": 85 - } - }, - "655": { - "accessible_scopes": [ - "__main__", - "__main__", - "__main__.register" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 43, - "end_line": 200, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/starknet/common/syscalls.cairo" - }, - "parent_location": [ - { - "end_col": 40, - "end_line": 85, - "input_file": { - "filename": "src/subdomain/Subdomain.cairo" - }, - "parent_location": [ - { - "end_col": 36, - "end_line": 444, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/starknet/common/syscalls.cairo" - }, - "parent_location": [ - { - "end_col": 34, - "end_line": 86, - "input_file": { - "filename": "src/subdomain/Subdomain.cairo" - }, - "start_col": 21, - "start_line": 86 - }, - "While trying to retrieve the implicit argument 'syscall_ptr' in:" - ], - "start_col": 18, - "start_line": 444 - }, - "While expanding the reference 'syscall_ptr' in:" - ], - "start_col": 20, - "start_line": 85 - }, - "While trying to update the implicit return value 'syscall_ptr' in:" - ], - "start_col": 25, - "start_line": 200 - } - }, - "656": { - "accessible_scopes": [ - "__main__", - "__main__", - "__main__.register" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 34, - "end_line": 86, - "input_file": { - "filename": "src/subdomain/Subdomain.cairo" - }, - "start_col": 21, - "start_line": 86 - } - }, - "658": { - "accessible_scopes": [ - "__main__", - "__main__", - "__main__.register" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 17, - "end_line": 86, - "input_file": { - "filename": "src/subdomain/Subdomain.cairo" - }, - "parent_location": [ - { - "end_col": 17, - "end_line": 86, - "input_file": { - "filename": "src/subdomain/Subdomain.cairo" - }, - "start_col": 10, - "start_line": 86 - }, - "While auto generating local variable for 'tx_info'." - ], - "start_col": 10, - "start_line": 86 - } - }, - "659": { - "accessible_scopes": [ - "__main__", - "__main__", - "__main__.register" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 36, - "end_line": 444, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/starknet/common/syscalls.cairo" - }, - "parent_location": [ - { - "end_col": 34, - "end_line": 86, - "input_file": { - "filename": "src/subdomain/Subdomain.cairo" - }, - "parent_location": [ - { - "end_col": 30, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/contract_interface/ISheet/owner/22582a63896341a02082fe651af1a1a0d12d424aa15261ad533b6f55c1ec75c3.cairo" - }, - "parent_location": [ - { - "end_col": 15, - "end_line": 148, - "input_file": { - "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/interfaces.cairo" - }, - "parent_location": [ - { - "end_col": 45, - "end_line": 89, - "input_file": { - "filename": "src/subdomain/Subdomain.cairo" - }, - "start_col": 25, - "start_line": 89 - }, - "While trying to retrieve the implicit argument 'syscall_ptr' in:" - ], - "start_col": 10, - "start_line": 148 - }, - "While handling contract interface function:" - ], - "start_col": 12, - "start_line": 1 - }, - "While expanding the reference 'syscall_ptr' in:" - ], - "start_col": 21, - "start_line": 86 - }, - "While trying to update the implicit return value 'syscall_ptr' in:" - ], - "start_col": 18, - "start_line": 444 - } - }, - "660": { - "accessible_scopes": [ - "__main__", - "__main__", - "__main__.register" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 78, - "end_line": 13, - "input_file": { - "filename": "autogen/starknet/storage_var/_is_registration_open/decl.cairo" - }, - "parent_location": [ - { - "end_col": 62, - "end_line": 80, - "input_file": { - "filename": "src/subdomain/Subdomain.cairo" - }, - "parent_location": [ - { - "end_col": 47, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/contract_interface/ISheet/owner/22582a63896341a02082fe651af1a1a0d12d424aa15261ad533b6f55c1ec75c3.cairo" - }, - "parent_location": [ - { - "end_col": 15, - "end_line": 148, - "input_file": { - "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/interfaces.cairo" - }, - "parent_location": [ - { - "end_col": 45, - "end_line": 89, - "input_file": { - "filename": "src/subdomain/Subdomain.cairo" - }, - "start_col": 25, - "start_line": 89 - }, - "While trying to retrieve the implicit argument 'range_check_ptr' in:" - ], - "start_col": 10, - "start_line": 148 - }, - "While handling contract interface function:" - ], - "start_col": 32, - "start_line": 1 - }, - "While expanding the reference 'range_check_ptr' in:" - ], - "start_col": 34, - "start_line": 80 - }, - "While trying to update the implicit return value 'range_check_ptr' in:" - ], - "start_col": 63, - "start_line": 13 - } - }, - "661": { - "accessible_scopes": [ - "__main__", - "__main__", - "__main__.register" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 16, - "end_line": 85, - "input_file": { - "filename": "src/subdomain/Subdomain.cairo" - }, - "parent_location": [ - { - "end_col": 16, - "end_line": 85, - "input_file": { - "filename": "src/subdomain/Subdomain.cairo" - }, - "parent_location": [ - { - "end_col": 44, - "end_line": 89, - "input_file": { - "filename": "src/subdomain/Subdomain.cairo" - }, - "start_col": 38, - "start_line": 89 - }, - "While expanding the reference 'caller' in:" - ], - "start_col": 10, - "start_line": 85 - }, - "While auto generating local variable for 'caller'." - ], - "start_col": 10, - "start_line": 85 - } - }, - "662": { - "accessible_scopes": [ - "__main__", - "__main__", - "__main__.register" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 45, - "end_line": 89, - "input_file": { - "filename": "src/subdomain/Subdomain.cairo" - }, - "start_col": 25, - "start_line": 89 - } - }, - "664": { - "accessible_scopes": [ - "__main__", - "__main__", - "__main__.register" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 59, - "end_line": 90, - "input_file": { - "filename": "src/subdomain/Subdomain.cairo" - }, - "start_col": 5, - "start_line": 90 - } - }, - "665": { - "accessible_scopes": [ - "__main__", - "__main__", - "__main__.register" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 38, - "end_line": 92, - "input_file": { - "filename": "src/subdomain/Subdomain.cairo" - }, - "start_col": 31, - "start_line": 92 - } - }, - "667": { - "accessible_scopes": [ - "__main__", - "__main__", - "__main__.register" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 27, - "end_line": 92, - "input_file": { - "filename": "src/subdomain/Subdomain.cairo" - }, - "start_col": 10, - "start_line": 92 - } - }, - "668": { - "accessible_scopes": [ - "__main__", - "__main__", - "__main__.register" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 30, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/contract_interface/ISheet/owner/22582a63896341a02082fe651af1a1a0d12d424aa15261ad533b6f55c1ec75c3.cairo" - }, - "parent_location": [ - { - "end_col": 15, - "end_line": 148, - "input_file": { - "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/interfaces.cairo" - }, - "parent_location": [ - { - "end_col": 45, - "end_line": 89, - "input_file": { - "filename": "src/subdomain/Subdomain.cairo" - }, - "parent_location": [ - { - "end_col": 40, - "end_line": 191, - "input_file": { - "filename": "src/subdomain/Subdomain.cairo" - }, - "parent_location": [ - { - "end_col": 58, - "end_line": 93, - "input_file": { - "filename": "src/subdomain/Subdomain.cairo" - }, - "start_col": 26, - "start_line": 93 - }, - "While trying to retrieve the implicit argument 'syscall_ptr' in:" - ], - "start_col": 22, - "start_line": 191 - }, - "While expanding the reference 'syscall_ptr' in:" - ], - "start_col": 25, - "start_line": 89 - }, - "While trying to update the implicit return value 'syscall_ptr' in:" - ], - "start_col": 10, - "start_line": 148 - }, - "While handling contract interface function:" - ], - "start_col": 12, - "start_line": 1 - } - }, - "669": { - "accessible_scopes": [ - "__main__", - "__main__", - "__main__.register" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 61, - "end_line": 13, - "input_file": { - "filename": "autogen/starknet/storage_var/_is_registration_open/decl.cairo" - }, - "parent_location": [ - { - "end_col": 62, - "end_line": 80, - "input_file": { - "filename": "src/subdomain/Subdomain.cairo" - }, - "parent_location": [ - { - "end_col": 68, - "end_line": 191, - "input_file": { - "filename": "src/subdomain/Subdomain.cairo" - }, - "parent_location": [ - { - "end_col": 58, - "end_line": 93, - "input_file": { - "filename": "src/subdomain/Subdomain.cairo" - }, - "start_col": 26, - "start_line": 93 - }, - "While trying to retrieve the implicit argument 'pedersen_ptr' in:" - ], - "start_col": 42, - "start_line": 191 - }, - "While expanding the reference 'pedersen_ptr' in:" - ], - "start_col": 34, - "start_line": 80 - }, - "While trying to update the implicit return value 'pedersen_ptr' in:" - ], - "start_col": 35, - "start_line": 13 - } - }, - "670": { - "accessible_scopes": [ - "__main__", - "__main__", - "__main__.register" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 47, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/contract_interface/ISheet/owner/22582a63896341a02082fe651af1a1a0d12d424aa15261ad533b6f55c1ec75c3.cairo" - }, - "parent_location": [ - { - "end_col": 15, - "end_line": 148, - "input_file": { - "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/interfaces.cairo" - }, - "parent_location": [ - { - "end_col": 45, - "end_line": 89, - "input_file": { - "filename": "src/subdomain/Subdomain.cairo" - }, - "parent_location": [ - { - "end_col": 85, - "end_line": 191, - "input_file": { - "filename": "src/subdomain/Subdomain.cairo" - }, - "parent_location": [ - { - "end_col": 58, - "end_line": 93, - "input_file": { - "filename": "src/subdomain/Subdomain.cairo" - }, - "start_col": 26, - "start_line": 93 - }, - "While trying to retrieve the implicit argument 'range_check_ptr' in:" - ], - "start_col": 70, - "start_line": 191 - }, - "While expanding the reference 'range_check_ptr' in:" - ], - "start_col": 25, - "start_line": 89 - }, - "While trying to update the implicit return value 'range_check_ptr' in:" - ], - "start_col": 10, - "start_line": 148 - }, - "While handling contract interface function:" - ], - "start_col": 32, - "start_line": 1 - } - }, - "671": { - "accessible_scopes": [ - "__main__", - "__main__", - "__main__.register" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 21, - "end_line": 76, - "input_file": { - "filename": "src/subdomain/Subdomain.cairo" - }, - "parent_location": [ - { - "end_col": 54, - "end_line": 93, - "input_file": { - "filename": "src/subdomain/Subdomain.cairo" - }, - "start_col": 42, - "start_line": 93 - }, - "While expanding the reference 'domain_ascii' in:" - ], - "start_col": 3, - "start_line": 76 - } - }, - "672": { - "accessible_scopes": [ - "__main__", - "__main__", - "__main__.register" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 57, - "end_line": 93, - "input_file": { - "filename": "src/subdomain/Subdomain.cairo" - }, - "start_col": 56, - "start_line": 93 - } - }, - "674": { - "accessible_scopes": [ - "__main__", - "__main__", - "__main__.register" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 58, - "end_line": 93, - "input_file": { - "filename": "src/subdomain/Subdomain.cairo" - }, - "start_col": 26, - "start_line": 93 - } - }, - "676": { - "accessible_scopes": [ - "__main__", - "__main__", - "__main__.register" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 22, - "end_line": 93, - "input_file": { - "filename": "src/subdomain/Subdomain.cairo" - }, - "start_col": 10, - "start_line": 93 - } - }, - "677": { - "accessible_scopes": [ - "__main__", - "__main__", - "__main__.register" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 35, - "end_line": 94, - "input_file": { - "filename": "src/subdomain/Subdomain.cairo" - }, - "start_col": 5, - "start_line": 94 - } - }, - "678": { - "accessible_scopes": [ - "__main__", - "__main__", - "__main__.register" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 43, - "end_line": 95, - "input_file": { - "filename": "src/subdomain/Subdomain.cairo" - }, - "start_col": 32, - "start_line": 95 - } - }, - "680": { - "accessible_scopes": [ - "__main__", - "__main__", - "__main__.register" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 44, - "end_line": 95, - "input_file": { - "filename": "src/subdomain/Subdomain.cairo" - }, - "start_col": 5, - "start_line": 95 - } - }, - "681": { - "accessible_scopes": [ - "__main__", - "__main__", - "__main__.register" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 40, - "end_line": 191, - "input_file": { - "filename": "src/subdomain/Subdomain.cairo" - }, - "parent_location": [ - { - "end_col": 58, - "end_line": 93, - "input_file": { - "filename": "src/subdomain/Subdomain.cairo" - }, - "parent_location": [ - { - "end_col": 33, - "end_line": 13, - "input_file": { - "filename": "autogen/starknet/storage_var/_naming_contract/decl.cairo" - }, - "parent_location": [ - { - "end_col": 56, - "end_line": 97, - "input_file": { - "filename": "src/subdomain/Subdomain.cairo" - }, - "start_col": 33, - "start_line": 97 - }, - "While trying to retrieve the implicit argument 'syscall_ptr' in:" - ], - "start_col": 15, - "start_line": 13 - }, - "While expanding the reference 'syscall_ptr' in:" - ], - "start_col": 26, - "start_line": 93 - }, - "While trying to update the implicit return value 'syscall_ptr' in:" - ], - "start_col": 22, - "start_line": 191 - } - }, - "682": { - "accessible_scopes": [ - "__main__", - "__main__", - "__main__.register" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 68, - "end_line": 191, - "input_file": { - "filename": "src/subdomain/Subdomain.cairo" - }, - "parent_location": [ - { - "end_col": 58, - "end_line": 93, - "input_file": { - "filename": "src/subdomain/Subdomain.cairo" - }, - "parent_location": [ - { - "end_col": 61, - "end_line": 13, - "input_file": { - "filename": "autogen/starknet/storage_var/_naming_contract/decl.cairo" - }, - "parent_location": [ - { - "end_col": 56, - "end_line": 97, - "input_file": { - "filename": "src/subdomain/Subdomain.cairo" - }, - "start_col": 33, - "start_line": 97 - }, - "While trying to retrieve the implicit argument 'pedersen_ptr' in:" - ], - "start_col": 35, - "start_line": 13 - }, - "While expanding the reference 'pedersen_ptr' in:" - ], - "start_col": 26, - "start_line": 93 - }, - "While trying to update the implicit return value 'pedersen_ptr' in:" - ], - "start_col": 42, - "start_line": 191 - } - }, - "683": { - "accessible_scopes": [ - "__main__", - "__main__", - "__main__.register" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 85, - "end_line": 191, - "input_file": { - "filename": "src/subdomain/Subdomain.cairo" - }, - "parent_location": [ - { - "end_col": 58, - "end_line": 93, - "input_file": { - "filename": "src/subdomain/Subdomain.cairo" - }, - "parent_location": [ - { - "end_col": 78, - "end_line": 13, - "input_file": { - "filename": "autogen/starknet/storage_var/_naming_contract/decl.cairo" - }, - "parent_location": [ - { - "end_col": 56, - "end_line": 97, - "input_file": { - "filename": "src/subdomain/Subdomain.cairo" - }, - "start_col": 33, - "start_line": 97 - }, - "While trying to retrieve the implicit argument 'range_check_ptr' in:" - ], - "start_col": 63, - "start_line": 13 - }, - "While expanding the reference 'range_check_ptr' in:" - ], - "start_col": 26, - "start_line": 93 - }, - "While trying to update the implicit return value 'range_check_ptr' in:" - ], - "start_col": 70, - "start_line": 191 - } - }, - "684": { - "accessible_scopes": [ - "__main__", - "__main__", - "__main__.register" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 56, - "end_line": 97, - "input_file": { - "filename": "src/subdomain/Subdomain.cairo" - }, - "start_col": 33, - "start_line": 97 - } - }, - "686": { - "accessible_scopes": [ - "__main__", - "__main__", - "__main__.register" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 61, - "end_line": 13, - "input_file": { - "filename": "autogen/starknet/storage_var/_naming_contract/decl.cairo" - }, - "parent_location": [ - { - "end_col": 56, - "end_line": 97, - "input_file": { - "filename": "src/subdomain/Subdomain.cairo" - }, - "parent_location": [ - { - "end_col": 61, - "end_line": 13, - "input_file": { - "filename": "autogen/starknet/storage_var/_naming_contract/decl.cairo" - }, - "parent_location": [ - { - "end_col": 56, - "end_line": 97, - "input_file": { - "filename": "src/subdomain/Subdomain.cairo" - }, - "start_col": 33, - "start_line": 97 - }, - "While trying to update the implicit return value 'pedersen_ptr' in:" - ], - "start_col": 35, - "start_line": 13 - }, - "While auto generating local variable for 'pedersen_ptr'." - ], - "start_col": 33, - "start_line": 97 - }, - "While trying to update the implicit return value 'pedersen_ptr' in:" - ], - "start_col": 35, - "start_line": 13 - } - }, - "687": { - "accessible_scopes": [ - "__main__", - "__main__", - "__main__.register" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 29, - "end_line": 97, - "input_file": { - "filename": "src/subdomain/Subdomain.cairo" - }, - "parent_location": [ - { - "end_col": 29, - "end_line": 97, - "input_file": { - "filename": "src/subdomain/Subdomain.cairo" - }, - "start_col": 14, - "start_line": 97 - }, - "While auto generating local variable for 'naming_contract'." - ], - "start_col": 14, - "start_line": 97 - } - }, - "688": { - "accessible_scopes": [ - "__main__", - "__main__", - "__main__.register" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 33, - "end_line": 13, - "input_file": { - "filename": "autogen/starknet/storage_var/_naming_contract/decl.cairo" - }, - "parent_location": [ - { - "end_col": 56, - "end_line": 97, - "input_file": { - "filename": "src/subdomain/Subdomain.cairo" - }, - "parent_location": [ - { - "end_col": 42, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/contract_interface/INaming/domain_to_address/c7bccfe2278372ac44337810829ba4239dbbfdd698c174aa9639022183a1c840.cairo" - }, - "parent_location": [ - { - "end_col": 27, - "end_line": 22, - "input_file": { - "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/interfaces.cairo" - }, - "parent_location": [ - { - "end_col": 83, - "end_line": 98, - "input_file": { - "filename": "src/subdomain/Subdomain.cairo" - }, - "start_col": 25, - "start_line": 98 - }, - "While trying to retrieve the implicit argument 'syscall_ptr' in:" - ], - "start_col": 10, - "start_line": 22 - }, - "While handling contract interface function:" - ], - "start_col": 24, - "start_line": 1 - }, - "While expanding the reference 'syscall_ptr' in:" - ], - "start_col": 33, - "start_line": 97 - }, - "While trying to update the implicit return value 'syscall_ptr' in:" - ], - "start_col": 15, - "start_line": 13 - } - }, - "689": { - "accessible_scopes": [ - "__main__", - "__main__", - "__main__.register" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 78, - "end_line": 13, - "input_file": { - "filename": "autogen/starknet/storage_var/_naming_contract/decl.cairo" - }, - "parent_location": [ - { - "end_col": 56, - "end_line": 97, - "input_file": { - "filename": "src/subdomain/Subdomain.cairo" - }, - "parent_location": [ - { - "end_col": 59, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/contract_interface/INaming/domain_to_address/c7bccfe2278372ac44337810829ba4239dbbfdd698c174aa9639022183a1c840.cairo" - }, - "parent_location": [ - { - "end_col": 27, - "end_line": 22, - "input_file": { - "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/interfaces.cairo" - }, - "parent_location": [ - { - "end_col": 83, - "end_line": 98, - "input_file": { - "filename": "src/subdomain/Subdomain.cairo" - }, - "start_col": 25, - "start_line": 98 - }, - "While trying to retrieve the implicit argument 'range_check_ptr' in:" - ], - "start_col": 10, - "start_line": 22 - }, - "While handling contract interface function:" - ], - "start_col": 44, - "start_line": 1 - }, - "While expanding the reference 'range_check_ptr' in:" - ], - "start_col": 33, - "start_line": 97 - }, - "While trying to update the implicit return value 'range_check_ptr' in:" - ], - "start_col": 63, - "start_line": 13 - } - }, - "690": { - "accessible_scopes": [ - "__main__", - "__main__", - "__main__.register" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 29, - "end_line": 97, - "input_file": { - "filename": "src/subdomain/Subdomain.cairo" - }, - "parent_location": [ - { - "end_col": 29, - "end_line": 97, - "input_file": { - "filename": "src/subdomain/Subdomain.cairo" - }, - "parent_location": [ - { - "end_col": 66, - "end_line": 98, - "input_file": { - "filename": "src/subdomain/Subdomain.cairo" - }, - "start_col": 51, - "start_line": 98 - }, - "While expanding the reference 'naming_contract' in:" - ], - "start_col": 14, - "start_line": 97 - }, - "While auto generating local variable for 'naming_contract'." - ], - "start_col": 14, - "start_line": 97 - } - }, - "691": { - "accessible_scopes": [ - "__main__", - "__main__", - "__main__.register" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 69, - "end_line": 98, - "input_file": { - "filename": "src/subdomain/Subdomain.cairo" - }, - "start_col": 68, - "start_line": 98 - } - }, - "693": { - "accessible_scopes": [ - "__main__", - "__main__", - "__main__.register" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 27, - "end_line": 92, - "input_file": { - "filename": "src/subdomain/Subdomain.cairo" - }, - "parent_location": [ - { - "end_col": 82, - "end_line": 98, - "input_file": { - "filename": "src/subdomain/Subdomain.cairo" - }, - "start_col": 71, - "start_line": 98 - }, - "While expanding the reference 'domain_full' in:" - ], - "start_col": 16, - "start_line": 92 - } - }, - "694": { - "accessible_scopes": [ - "__main__", - "__main__", - "__main__.register" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 83, - "end_line": 98, - "input_file": { - "filename": "src/subdomain/Subdomain.cairo" - }, - "start_col": 25, - "start_line": 98 - } - }, - "696": { - "accessible_scopes": [ - "__main__", - "__main__", - "__main__.register" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 49, - "end_line": 99, - "input_file": { - "filename": "src/subdomain/Subdomain.cairo" - }, - "start_col": 29, - "start_line": 99 - } - }, - "698": { - "accessible_scopes": [ - "__main__", - "__main__", - "__main__.register" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 38, - "end_line": 100, - "input_file": { - "filename": "src/subdomain/Subdomain.cairo" - }, - "start_col": 9, - "start_line": 100 - } - }, - "700": { - "accessible_scopes": [ - "__main__", - "__main__", - "__main__.register" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 42, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/contract_interface/INaming/domain_to_address/c7bccfe2278372ac44337810829ba4239dbbfdd698c174aa9639022183a1c840.cairo" - }, - "parent_location": [ - { - "end_col": 27, - "end_line": 22, - "input_file": { - "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/interfaces.cairo" - }, - "parent_location": [ - { - "end_col": 83, - "end_line": 98, - "input_file": { - "filename": "src/subdomain/Subdomain.cairo" - }, - "parent_location": [ - { - "end_col": 33, - "end_line": 13, - "input_file": { - "filename": "autogen/starknet/storage_var/_starknetid_contract/decl.cairo" - }, - "parent_location": [ - { - "end_col": 61, - "end_line": 103, - "input_file": { - "filename": "src/subdomain/Subdomain.cairo" - }, - "start_col": 34, - "start_line": 103 - }, - "While trying to retrieve the implicit argument 'syscall_ptr' in:" - ], - "start_col": 15, - "start_line": 13 - }, - "While expanding the reference 'syscall_ptr' in:" - ], - "start_col": 25, - "start_line": 98 - }, - "While trying to update the implicit return value 'syscall_ptr' in:" - ], - "start_col": 10, - "start_line": 22 - }, - "While handling contract interface function:" - ], - "start_col": 24, - "start_line": 1 - } - }, - "701": { - "accessible_scopes": [ - "__main__", - "__main__", - "__main__.register" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 61, - "end_line": 13, - "input_file": { - "filename": "autogen/starknet/storage_var/_naming_contract/decl.cairo" - }, - "parent_location": [ - { - "end_col": 56, - "end_line": 97, - "input_file": { - "filename": "src/subdomain/Subdomain.cairo" - }, - "parent_location": [ - { - "end_col": 61, - "end_line": 13, - "input_file": { - "filename": "autogen/starknet/storage_var/_naming_contract/decl.cairo" - }, - "parent_location": [ - { - "end_col": 56, - "end_line": 97, - "input_file": { - "filename": "src/subdomain/Subdomain.cairo" - }, - "parent_location": [ - { - "end_col": 61, - "end_line": 13, - "input_file": { - "filename": "autogen/starknet/storage_var/_starknetid_contract/decl.cairo" - }, - "parent_location": [ - { - "end_col": 61, - "end_line": 103, - "input_file": { - "filename": "src/subdomain/Subdomain.cairo" - }, - "start_col": 34, - "start_line": 103 - }, - "While trying to retrieve the implicit argument 'pedersen_ptr' in:" - ], - "start_col": 35, - "start_line": 13 - }, - "While expanding the reference 'pedersen_ptr' in:" - ], - "start_col": 33, - "start_line": 97 - }, - "While trying to update the implicit return value 'pedersen_ptr' in:" - ], - "start_col": 35, - "start_line": 13 - }, - "While auto generating local variable for 'pedersen_ptr'." - ], - "start_col": 33, - "start_line": 97 - }, - "While trying to update the implicit return value 'pedersen_ptr' in:" - ], - "start_col": 35, - "start_line": 13 - } - }, - "702": { - "accessible_scopes": [ - "__main__", - "__main__", - "__main__.register" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 59, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/contract_interface/INaming/domain_to_address/c7bccfe2278372ac44337810829ba4239dbbfdd698c174aa9639022183a1c840.cairo" - }, - "parent_location": [ - { - "end_col": 27, - "end_line": 22, - "input_file": { - "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/interfaces.cairo" - }, - "parent_location": [ - { - "end_col": 83, - "end_line": 98, - "input_file": { - "filename": "src/subdomain/Subdomain.cairo" - }, - "parent_location": [ - { - "end_col": 78, - "end_line": 13, - "input_file": { - "filename": "autogen/starknet/storage_var/_starknetid_contract/decl.cairo" - }, - "parent_location": [ - { - "end_col": 61, - "end_line": 103, - "input_file": { - "filename": "src/subdomain/Subdomain.cairo" - }, - "start_col": 34, - "start_line": 103 - }, - "While trying to retrieve the implicit argument 'range_check_ptr' in:" - ], - "start_col": 63, - "start_line": 13 - }, - "While expanding the reference 'range_check_ptr' in:" - ], - "start_col": 25, - "start_line": 98 - }, - "While trying to update the implicit return value 'range_check_ptr' in:" - ], - "start_col": 10, - "start_line": 22 - }, - "While handling contract interface function:" - ], - "start_col": 44, - "start_line": 1 - } - }, - "703": { - "accessible_scopes": [ - "__main__", - "__main__", - "__main__.register" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 61, - "end_line": 103, - "input_file": { - "filename": "src/subdomain/Subdomain.cairo" - }, - "start_col": 34, - "start_line": 103 - } - }, - "705": { - "accessible_scopes": [ - "__main__", - "__main__", - "__main__.register" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 30, - "end_line": 103, - "input_file": { - "filename": "src/subdomain/Subdomain.cairo" - }, - "parent_location": [ - { - "end_col": 30, - "end_line": 103, - "input_file": { - "filename": "src/subdomain/Subdomain.cairo" - }, - "start_col": 10, - "start_line": 103 - }, - "While auto generating local variable for 'starknet_id_contract'." - ], - "start_col": 10, - "start_line": 103 - } - }, - "706": { - "accessible_scopes": [ - "__main__", - "__main__", - "__main__.register" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 61, - "end_line": 13, - "input_file": { - "filename": "autogen/starknet/storage_var/_starknetid_contract/decl.cairo" - }, - "parent_location": [ - { - "end_col": 61, - "end_line": 103, - "input_file": { - "filename": "src/subdomain/Subdomain.cairo" - }, - "parent_location": [ - { - "end_col": 61, - "end_line": 13, - "input_file": { - "filename": "autogen/starknet/storage_var/_starknetid_contract/decl.cairo" - }, - "parent_location": [ - { - "end_col": 61, - "end_line": 103, - "input_file": { - "filename": "src/subdomain/Subdomain.cairo" - }, - "start_col": 34, - "start_line": 103 - }, - "While trying to update the implicit return value 'pedersen_ptr' in:" - ], - "start_col": 35, - "start_line": 13 - }, - "While auto generating local variable for 'pedersen_ptr'." - ], - "start_col": 34, - "start_line": 103 - }, - "While trying to update the implicit return value 'pedersen_ptr' in:" - ], - "start_col": 35, - "start_line": 13 - } - }, - "707": { - "accessible_scopes": [ - "__main__", - "__main__", - "__main__.register" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 78, - "end_line": 13, - "input_file": { - "filename": "autogen/starknet/storage_var/_starknetid_contract/decl.cairo" - }, - "parent_location": [ - { - "end_col": 61, - "end_line": 103, - "input_file": { - "filename": "src/subdomain/Subdomain.cairo" - }, - "parent_location": [ - { - "end_col": 32, - "end_line": 124, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/math.cairo" - }, - "parent_location": [ - { - "end_col": 38, - "end_line": 105, - "input_file": { - "filename": "src/subdomain/Subdomain.cairo" - }, - "start_col": 20, - "start_line": 105 - }, - "While trying to retrieve the implicit argument 'range_check_ptr' in:" - ], - "start_col": 17, - "start_line": 124 - }, - "While expanding the reference 'range_check_ptr' in:" - ], - "start_col": 34, - "start_line": 103 - }, - "While trying to update the implicit return value 'range_check_ptr' in:" - ], - "start_col": 63, - "start_line": 13 - } - }, - "708": { - "accessible_scopes": [ - "__main__", - "__main__", - "__main__.register" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 16, - "end_line": 85, - "input_file": { - "filename": "src/subdomain/Subdomain.cairo" - }, - "parent_location": [ - { - "end_col": 16, - "end_line": 85, - "input_file": { - "filename": "src/subdomain/Subdomain.cairo" - }, - "parent_location": [ - { - "end_col": 37, - "end_line": 105, - "input_file": { - "filename": "src/subdomain/Subdomain.cairo" - }, - "start_col": 31, - "start_line": 105 - }, - "While expanding the reference 'caller' in:" - ], - "start_col": 10, - "start_line": 85 - }, - "While auto generating local variable for 'caller'." - ], - "start_col": 10, - "start_line": 85 - } - }, - "709": { - "accessible_scopes": [ - "__main__", - "__main__", - "__main__.register" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 38, - "end_line": 105, - "input_file": { - "filename": "src/subdomain/Subdomain.cairo" - }, - "start_col": 20, - "start_line": 105 - } - }, - "711": { - "accessible_scopes": [ - "__main__", - "__main__", - "__main__.register" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 32, - "end_line": 124, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/math.cairo" - }, - "parent_location": [ - { - "end_col": 38, - "end_line": 105, - "input_file": { - "filename": "src/subdomain/Subdomain.cairo" - }, - "parent_location": [ - { - "end_col": 38, - "end_line": 297, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/math.cairo" - }, - "parent_location": [ - { - "end_col": 55, - "end_line": 106, - "input_file": { - "filename": "src/subdomain/Subdomain.cairo" - }, - "start_col": 25, - "start_line": 106 - }, - "While trying to retrieve the implicit argument 'range_check_ptr' in:" - ], - "start_col": 23, - "start_line": 297 - }, - "While expanding the reference 'range_check_ptr' in:" - ], - "start_col": 20, - "start_line": 105 - }, - "While trying to update the implicit return value 'range_check_ptr' in:" - ], - "start_col": 17, - "start_line": 124 - } - }, - "712": { - "accessible_scopes": [ - "__main__", - "__main__", - "__main__.register" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 16, - "end_line": 105, - "input_file": { - "filename": "src/subdomain/Subdomain.cairo" - }, - "parent_location": [ - { - "end_col": 45, - "end_line": 106, - "input_file": { - "filename": "src/subdomain/Subdomain.cairo" - }, - "start_col": 42, - "start_line": 106 - }, - "While expanding the reference 'low' in:" - ], - "start_col": 13, - "start_line": 105 - } - }, - "713": { - "accessible_scopes": [ - "__main__", - "__main__", - "__main__.register" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 54, - "end_line": 106, - "input_file": { - "filename": "src/subdomain/Subdomain.cairo" - }, - "start_col": 47, - "start_line": 106 - } - }, - "715": { - "accessible_scopes": [ - "__main__", - "__main__", - "__main__.register" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 55, - "end_line": 106, - "input_file": { - "filename": "src/subdomain/Subdomain.cairo" - }, - "start_col": 25, - "start_line": 106 - } - }, - "717": { - "accessible_scopes": [ - "__main__", - "__main__", - "__main__.register" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 44, - "end_line": 107, - "input_file": { - "filename": "src/subdomain/Subdomain.cairo" - }, - "parent_location": [ - { - "end_col": 17, - "end_line": 107, - "input_file": { - "filename": "src/subdomain/Subdomain.cairo" - }, - "parent_location": [ - { - "end_col": 17, - "end_line": 107, - "input_file": { - "filename": "src/subdomain/Subdomain.cairo" - }, - "start_col": 9, - "start_line": 107 - }, - "While auto generating local variable for 'token_id'." - ], - "start_col": 9, - "start_line": 107 - }, - "While expanding the reference 'token_id' in:" - ], - "start_col": 31, - "start_line": 107 - } - }, - "718": { - "accessible_scopes": [ - "__main__", - "__main__", - "__main__.register" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 17, - "end_line": 107, - "input_file": { - "filename": "src/subdomain/Subdomain.cairo" - }, - "parent_location": [ - { - "end_col": 17, - "end_line": 107, - "input_file": { - "filename": "src/subdomain/Subdomain.cairo" - }, - "start_col": 9, - "start_line": 107 - }, - "While auto generating local variable for 'token_id'." - ], - "start_col": 9, - "start_line": 107 - } - }, - "719": { - "accessible_scopes": [ - "__main__", - "__main__", - "__main__.register" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 33, - "end_line": 13, - "input_file": { - "filename": "autogen/starknet/storage_var/_starknetid_contract/decl.cairo" - }, - "parent_location": [ - { - "end_col": 61, - "end_line": 103, - "input_file": { - "filename": "src/subdomain/Subdomain.cairo" - }, - "parent_location": [ - { - "end_col": 45, - "end_line": 274, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/starknet/common/syscalls.cairo" - }, - "parent_location": [ - { - "end_col": 52, - "end_line": 108, - "input_file": { - "filename": "src/subdomain/Subdomain.cairo" - }, - "start_col": 30, - "start_line": 108 - }, - "While trying to retrieve the implicit argument 'syscall_ptr' in:" - ], - "start_col": 27, - "start_line": 274 - }, - "While expanding the reference 'syscall_ptr' in:" - ], - "start_col": 34, - "start_line": 103 - }, - "While trying to update the implicit return value 'syscall_ptr' in:" - ], - "start_col": 15, - "start_line": 13 - } - }, - "720": { - "accessible_scopes": [ - "__main__", - "__main__", - "__main__.register" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 52, - "end_line": 108, - "input_file": { - "filename": "src/subdomain/Subdomain.cairo" - }, - "start_col": 30, - "start_line": 108 - } - }, - "722": { - "accessible_scopes": [ - "__main__", - "__main__", - "__main__.register" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 26, - "end_line": 108, - "input_file": { - "filename": "src/subdomain/Subdomain.cairo" - }, - "parent_location": [ - { - "end_col": 26, - "end_line": 108, - "input_file": { - "filename": "src/subdomain/Subdomain.cairo" - }, - "start_col": 10, - "start_line": 108 - }, - "While auto generating local variable for 'current_contract'." - ], - "start_col": 10, - "start_line": 108 - } - }, - "723": { - "accessible_scopes": [ - "__main__", - "__main__", - "__main__.register" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 45, - "end_line": 274, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/starknet/common/syscalls.cairo" - }, - "parent_location": [ - { - "end_col": 52, - "end_line": 108, - "input_file": { - "filename": "src/subdomain/Subdomain.cairo" - }, - "parent_location": [ - { - "end_col": 29, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/contract_interface/IStarknetId/mint/f331841f676ee38d6b90045cd4589cd9ff4e83c32234273d9e605b287d886cbc.cairo" - }, - "parent_location": [ - { - "end_col": 14, - "end_line": 131, - "input_file": { - "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/interfaces.cairo" - }, - "parent_location": [ - { - "end_col": 57, - "end_line": 110, - "input_file": { - "filename": "src/subdomain/Subdomain.cairo" - }, - "start_col": 9, - "start_line": 110 - }, - "While trying to retrieve the implicit argument 'syscall_ptr' in:" - ], - "start_col": 10, - "start_line": 131 - }, - "While handling contract interface function:" - ], - "start_col": 11, - "start_line": 1 - }, - "While expanding the reference 'syscall_ptr' in:" - ], - "start_col": 30, - "start_line": 108 - }, - "While trying to update the implicit return value 'syscall_ptr' in:" - ], - "start_col": 27, - "start_line": 274 - } - }, - "724": { - "accessible_scopes": [ - "__main__", - "__main__", - "__main__.register" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 38, - "end_line": 297, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/math.cairo" - }, - "parent_location": [ - { - "end_col": 55, - "end_line": 106, - "input_file": { - "filename": "src/subdomain/Subdomain.cairo" - }, - "parent_location": [ - { - "end_col": 46, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/contract_interface/IStarknetId/mint/f331841f676ee38d6b90045cd4589cd9ff4e83c32234273d9e605b287d886cbc.cairo" - }, - "parent_location": [ - { - "end_col": 14, - "end_line": 131, - "input_file": { - "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/interfaces.cairo" - }, - "parent_location": [ - { - "end_col": 57, - "end_line": 110, - "input_file": { - "filename": "src/subdomain/Subdomain.cairo" - }, - "start_col": 9, - "start_line": 110 - }, - "While trying to retrieve the implicit argument 'range_check_ptr' in:" - ], - "start_col": 10, - "start_line": 131 - }, - "While handling contract interface function:" - ], - "start_col": 31, - "start_line": 1 - }, - "While expanding the reference 'range_check_ptr' in:" - ], - "start_col": 25, - "start_line": 106 - }, - "While trying to update the implicit return value 'range_check_ptr' in:" - ], - "start_col": 23, - "start_line": 297 - } - }, - "725": { - "accessible_scopes": [ - "__main__", - "__main__", - "__main__.register" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 30, - "end_line": 103, - "input_file": { - "filename": "src/subdomain/Subdomain.cairo" - }, - "parent_location": [ - { - "end_col": 30, - "end_line": 103, - "input_file": { - "filename": "src/subdomain/Subdomain.cairo" - }, - "parent_location": [ - { - "end_col": 46, - "end_line": 110, - "input_file": { - "filename": "src/subdomain/Subdomain.cairo" - }, - "start_col": 26, - "start_line": 110 - }, - "While expanding the reference 'starknet_id_contract' in:" - ], - "start_col": 10, - "start_line": 103 - }, - "While auto generating local variable for 'starknet_id_contract'." - ], - "start_col": 10, - "start_line": 103 - } - }, - "726": { - "accessible_scopes": [ - "__main__", - "__main__", - "__main__.register" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 17, - "end_line": 107, - "input_file": { - "filename": "src/subdomain/Subdomain.cairo" - }, - "parent_location": [ - { - "end_col": 17, - "end_line": 107, - "input_file": { - "filename": "src/subdomain/Subdomain.cairo" - }, - "parent_location": [ - { - "end_col": 56, - "end_line": 110, - "input_file": { - "filename": "src/subdomain/Subdomain.cairo" - }, - "start_col": 48, - "start_line": 110 - }, - "While expanding the reference 'token_id' in:" - ], - "start_col": 9, - "start_line": 107 - }, - "While auto generating local variable for 'token_id'." - ], - "start_col": 9, - "start_line": 107 - } - }, - "727": { - "accessible_scopes": [ - "__main__", - "__main__", - "__main__.register" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 57, - "end_line": 110, - "input_file": { - "filename": "src/subdomain/Subdomain.cairo" - }, - "start_col": 9, - "start_line": 110 - } - }, - "729": { - "accessible_scopes": [ - "__main__", - "__main__", - "__main__.register" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 29, - "end_line": 97, - "input_file": { - "filename": "src/subdomain/Subdomain.cairo" - }, - "parent_location": [ - { - "end_col": 29, - "end_line": 97, - "input_file": { - "filename": "src/subdomain/Subdomain.cairo" - }, - "parent_location": [ - { - "end_col": 48, - "end_line": 111, - "input_file": { - "filename": "src/subdomain/Subdomain.cairo" - }, - "start_col": 33, - "start_line": 111 - }, - "While expanding the reference 'naming_contract' in:" - ], - "start_col": 14, - "start_line": 97 - }, - "While auto generating local variable for 'naming_contract'." - ], - "start_col": 14, - "start_line": 97 - } - }, - "730": { - "accessible_scopes": [ - "__main__", - "__main__", - "__main__.register" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 51, - "end_line": 111, - "input_file": { - "filename": "src/subdomain/Subdomain.cairo" - }, - "start_col": 50, - "start_line": 111 - } - }, - "732": { - "accessible_scopes": [ - "__main__", - "__main__", - "__main__.register" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 27, - "end_line": 92, - "input_file": { - "filename": "src/subdomain/Subdomain.cairo" - }, - "parent_location": [ - { - "end_col": 64, - "end_line": 111, - "input_file": { - "filename": "src/subdomain/Subdomain.cairo" - }, - "start_col": 53, - "start_line": 111 - }, - "While expanding the reference 'domain_full' in:" - ], - "start_col": 16, - "start_line": 92 - } - }, - "733": { - "accessible_scopes": [ - "__main__", - "__main__", - "__main__.register" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 17, - "end_line": 107, - "input_file": { - "filename": "src/subdomain/Subdomain.cairo" - }, - "parent_location": [ - { - "end_col": 17, - "end_line": 107, - "input_file": { - "filename": "src/subdomain/Subdomain.cairo" - }, - "parent_location": [ - { - "end_col": 74, - "end_line": 111, - "input_file": { - "filename": "src/subdomain/Subdomain.cairo" - }, - "start_col": 66, - "start_line": 111 - }, - "While expanding the reference 'token_id' in:" - ], - "start_col": 9, - "start_line": 107 - }, - "While auto generating local variable for 'token_id'." - ], - "start_col": 9, - "start_line": 107 - } - }, - "734": { - "accessible_scopes": [ - "__main__", - "__main__", - "__main__.register" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 75, - "end_line": 111, - "input_file": { - "filename": "src/subdomain/Subdomain.cairo" - }, - "start_col": 9, - "start_line": 111 - } - }, - "736": { - "accessible_scopes": [ - "__main__", - "__main__", - "__main__.register" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 29, - "end_line": 97, - "input_file": { - "filename": "src/subdomain/Subdomain.cairo" - }, - "parent_location": [ - { - "end_col": 29, - "end_line": 97, - "input_file": { - "filename": "src/subdomain/Subdomain.cairo" - }, - "parent_location": [ - { - "end_col": 28, - "end_line": 113, - "input_file": { - "filename": "src/subdomain/Subdomain.cairo" - }, - "start_col": 13, - "start_line": 113 - }, - "While expanding the reference 'naming_contract' in:" - ], - "start_col": 14, - "start_line": 97 - }, - "While auto generating local variable for 'naming_contract'." - ], - "start_col": 14, - "start_line": 97 - } - }, - "737": { - "accessible_scopes": [ - "__main__", - "__main__", - "__main__.register" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 31, - "end_line": 113, - "input_file": { - "filename": "src/subdomain/Subdomain.cairo" - }, - "start_col": 30, - "start_line": 113 - } - }, - "739": { - "accessible_scopes": [ - "__main__", - "__main__", - "__main__.register" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 27, - "end_line": 92, - "input_file": { - "filename": "src/subdomain/Subdomain.cairo" - }, - "parent_location": [ - { - "end_col": 44, - "end_line": 113, - "input_file": { - "filename": "src/subdomain/Subdomain.cairo" - }, - "start_col": 33, - "start_line": 113 - }, - "While expanding the reference 'domain_full' in:" - ], - "start_col": 16, - "start_line": 92 - } - }, - "740": { - "accessible_scopes": [ - "__main__", - "__main__", - "__main__.register" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 78, - "end_line": 113, - "input_file": { - "filename": "src/subdomain/Subdomain.cairo" - }, - "start_col": 46, - "start_line": 113 - } - }, - "741": { - "accessible_scopes": [ - "__main__", - "__main__", - "__main__.register" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 10, - "end_line": 114, - "input_file": { - "filename": "src/subdomain/Subdomain.cairo" - }, - "start_col": 9, - "start_line": 112 - } - }, - "743": { - "accessible_scopes": [ - "__main__", - "__main__", - "__main__.register" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 30, - "end_line": 103, - "input_file": { - "filename": "src/subdomain/Subdomain.cairo" - }, - "parent_location": [ - { - "end_col": 30, - "end_line": 103, - "input_file": { - "filename": "src/subdomain/Subdomain.cairo" - }, - "parent_location": [ - { - "end_col": 33, - "end_line": 117, - "input_file": { - "filename": "src/subdomain/Subdomain.cairo" - }, - "start_col": 13, - "start_line": 117 - }, - "While expanding the reference 'starknet_id_contract' in:" - ], - "start_col": 10, - "start_line": 103 - }, - "While auto generating local variable for 'starknet_id_contract'." - ], - "start_col": 10, - "start_line": 103 - } - }, - "744": { - "accessible_scopes": [ - "__main__", - "__main__", - "__main__.register" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 26, - "end_line": 108, - "input_file": { - "filename": "src/subdomain/Subdomain.cairo" - }, - "parent_location": [ - { - "end_col": 26, - "end_line": 108, - "input_file": { - "filename": "src/subdomain/Subdomain.cairo" - }, - "parent_location": [ - { - "end_col": 51, - "end_line": 117, - "input_file": { - "filename": "src/subdomain/Subdomain.cairo" - }, - "start_col": 35, - "start_line": 117 - }, - "While expanding the reference 'current_contract' in:" - ], - "start_col": 10, - "start_line": 108 - }, - "While auto generating local variable for 'current_contract'." - ], - "start_col": 10, - "start_line": 108 - } - }, - "745": { - "accessible_scopes": [ - "__main__", - "__main__", - "__main__.register" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 85, - "end_line": 117, - "input_file": { - "filename": "src/subdomain/Subdomain.cairo" - }, - "start_col": 53, - "start_line": 117 - } - }, - "746": { - "accessible_scopes": [ - "__main__", - "__main__", - "__main__.register" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 17, - "end_line": 107, - "input_file": { - "filename": "src/subdomain/Subdomain.cairo" - }, - "parent_location": [ - { - "end_col": 17, - "end_line": 107, - "input_file": { - "filename": "src/subdomain/Subdomain.cairo" - }, - "parent_location": [ - { - "end_col": 45, - "end_line": 115, - "input_file": { - "filename": "src/subdomain/Subdomain.cairo" - }, - "parent_location": [ - { - "end_col": 100, - "end_line": 117, - "input_file": { - "filename": "src/subdomain/Subdomain.cairo" - }, - "start_col": 87, - "start_line": 117 - }, - "While expanding the reference 'token_id_u256' in:" - ], - "start_col": 37, - "start_line": 115 - }, - "While expanding the reference 'token_id' in:" - ], - "start_col": 9, - "start_line": 107 - }, - "While auto generating local variable for 'token_id'." - ], - "start_col": 9, - "start_line": 107 - } - }, - "747": { - "accessible_scopes": [ - "__main__", - "__main__", - "__main__.register" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 48, - "end_line": 115, - "input_file": { - "filename": "src/subdomain/Subdomain.cairo" - }, - "parent_location": [ - { - "end_col": 100, - "end_line": 117, - "input_file": { - "filename": "src/subdomain/Subdomain.cairo" - }, - "start_col": 87, - "start_line": 117 - }, - "While expanding the reference 'token_id_u256' in:" - ], - "start_col": 47, - "start_line": 115 - } - }, - "749": { - "accessible_scopes": [ - "__main__", - "__main__", - "__main__.register" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 10, - "end_line": 118, - "input_file": { - "filename": "src/subdomain/Subdomain.cairo" - }, - "start_col": 9, - "start_line": 116 - } - }, - "751": { - "accessible_scopes": [ - "__main__", - "__main__", - "__main__.register" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 37, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/contract_interface/IStarknetId/transferFrom/f8c7980cd46ed6d764c999318b5692736b724dc08c1bf96e92d1b77ddf37af10.cairo" - }, - "parent_location": [ - { - "end_col": 22, - "end_line": 125, - "input_file": { - "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/interfaces.cairo" - }, - "parent_location": [ - { - "end_col": 10, - "end_line": 118, - "input_file": { - "filename": "src/subdomain/Subdomain.cairo" - }, - "parent_location": [ - { - "end_col": 23, - "end_line": 75, - "input_file": { - "filename": "src/subdomain/Subdomain.cairo" - }, - "parent_location": [ - { - "end_col": 39, - "end_line": 121, - "input_file": { - "filename": "src/subdomain/Subdomain.cairo" - }, - "start_col": 5, - "start_line": 121 - }, - "While trying to retrieve the implicit argument 'syscall_ptr' in:" - ], - "start_col": 5, - "start_line": 75 - }, - "While expanding the reference 'syscall_ptr' in:" - ], - "start_col": 9, - "start_line": 116 - }, - "While trying to update the implicit return value 'syscall_ptr' in:" - ], - "start_col": 10, - "start_line": 125 - }, - "While handling contract interface function:" - ], - "start_col": 19, - "start_line": 1 - } - }, - "752": { - "accessible_scopes": [ - "__main__", - "__main__", - "__main__.register" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 61, - "end_line": 13, - "input_file": { - "filename": "autogen/starknet/storage_var/_starknetid_contract/decl.cairo" - }, - "parent_location": [ - { - "end_col": 61, - "end_line": 103, - "input_file": { - "filename": "src/subdomain/Subdomain.cairo" - }, - "parent_location": [ - { - "end_col": 61, - "end_line": 13, - "input_file": { - "filename": "autogen/starknet/storage_var/_starknetid_contract/decl.cairo" - }, - "parent_location": [ - { - "end_col": 61, - "end_line": 103, - "input_file": { - "filename": "src/subdomain/Subdomain.cairo" - }, - "parent_location": [ - { - "end_col": 51, - "end_line": 75, - "input_file": { - "filename": "src/subdomain/Subdomain.cairo" - }, - "parent_location": [ - { - "end_col": 39, - "end_line": 121, - "input_file": { - "filename": "src/subdomain/Subdomain.cairo" - }, - "start_col": 5, - "start_line": 121 - }, - "While trying to retrieve the implicit argument 'pedersen_ptr' in:" - ], - "start_col": 25, - "start_line": 75 - }, - "While expanding the reference 'pedersen_ptr' in:" - ], - "start_col": 34, - "start_line": 103 - }, - "While trying to update the implicit return value 'pedersen_ptr' in:" - ], - "start_col": 35, - "start_line": 13 - }, - "While auto generating local variable for 'pedersen_ptr'." - ], - "start_col": 34, - "start_line": 103 - }, - "While trying to update the implicit return value 'pedersen_ptr' in:" - ], - "start_col": 35, - "start_line": 13 - } - }, - "753": { - "accessible_scopes": [ - "__main__", - "__main__", - "__main__.register" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 54, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/contract_interface/IStarknetId/transferFrom/f8c7980cd46ed6d764c999318b5692736b724dc08c1bf96e92d1b77ddf37af10.cairo" - }, - "parent_location": [ - { - "end_col": 22, - "end_line": 125, - "input_file": { - "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/interfaces.cairo" - }, - "parent_location": [ - { - "end_col": 10, - "end_line": 118, - "input_file": { - "filename": "src/subdomain/Subdomain.cairo" - }, - "parent_location": [ - { - "end_col": 68, - "end_line": 75, - "input_file": { - "filename": "src/subdomain/Subdomain.cairo" - }, - "parent_location": [ - { - "end_col": 39, - "end_line": 121, - "input_file": { - "filename": "src/subdomain/Subdomain.cairo" - }, - "start_col": 5, - "start_line": 121 - }, - "While trying to retrieve the implicit argument 'range_check_ptr' in:" - ], - "start_col": 53, - "start_line": 75 - }, - "While expanding the reference 'range_check_ptr' in:" - ], - "start_col": 9, - "start_line": 116 - }, - "While trying to update the implicit return value 'range_check_ptr' in:" - ], - "start_col": 10, - "start_line": 125 - }, - "While handling contract interface function:" - ], - "start_col": 39, - "start_line": 1 - } - }, - "754": { - "accessible_scopes": [ - "__main__", - "__main__", - "__main__.register" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 98, - "end_line": 75, - "input_file": { - "filename": "src/subdomain/Subdomain.cairo" - }, - "parent_location": [ - { - "end_col": 98, - "end_line": 75, - "input_file": { - "filename": "src/subdomain/Subdomain.cairo" - }, - "parent_location": [ - { - "end_col": 39, - "end_line": 121, - "input_file": { - "filename": "src/subdomain/Subdomain.cairo" - }, - "start_col": 5, - "start_line": 121 - }, - "While trying to retrieve the implicit argument 'ecdsa_ptr' in:" - ], - "start_col": 70, - "start_line": 75 - }, - "While expanding the reference 'ecdsa_ptr' in:" - ], - "start_col": 70, - "start_line": 75 - } - }, - "755": { - "accessible_scopes": [ - "__main__", - "__main__", - "__main__.register" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 17, - "end_line": 107, - "input_file": { - "filename": "src/subdomain/Subdomain.cairo" - }, - "parent_location": [ - { - "end_col": 17, - "end_line": 107, - "input_file": { - "filename": "src/subdomain/Subdomain.cairo" - }, - "parent_location": [ - { - "end_col": 21, - "end_line": 121, - "input_file": { - "filename": "src/subdomain/Subdomain.cairo" - }, - "start_col": 13, - "start_line": 121 - }, - "While expanding the reference 'token_id' in:" - ], - "start_col": 9, - "start_line": 107 - }, - "While auto generating local variable for 'token_id'." - ], - "start_col": 9, - "start_line": 107 - } - }, - "756": { - "accessible_scopes": [ - "__main__", - "__main__", - "__main__.register" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 24, - "end_line": 121, - "input_file": { - "filename": "src/subdomain/Subdomain.cairo" - }, - "start_col": 23, - "start_line": 121 - } - }, - "758": { - "accessible_scopes": [ - "__main__", - "__main__", - "__main__.register" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 27, - "end_line": 92, - "input_file": { - "filename": "src/subdomain/Subdomain.cairo" - }, - "parent_location": [ - { - "end_col": 37, - "end_line": 121, - "input_file": { - "filename": "src/subdomain/Subdomain.cairo" - }, - "start_col": 26, - "start_line": 121 - }, - "While expanding the reference 'domain_full' in:" - ], - "start_col": 16, - "start_line": 92 - } - }, - "759": { - "accessible_scopes": [ - "__main__", - "__main__", - "__main__.register" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 39, - "end_line": 121, - "input_file": { - "filename": "src/subdomain/Subdomain.cairo" - }, - "start_col": 5, - "start_line": 121 - } - }, - "760": { - "accessible_scopes": [ - "__main__", - "__main__", - "__wrappers__", - "__wrappers__.register_encode_return" - ], - "flow_tracking_data": null, - "hints": [ - { - "location": { - "end_col": 38, - "end_line": 3, - "input_file": { - "filename": "autogen/starknet/external/return/register/618091d4f702cd5c5cf6df9bb974b394b4092b7fe617ff6e7cee1dd6af8b89b6.cairo" - }, - "parent_location": [ - { - "end_col": 14, - "end_line": 74, - "input_file": { - "filename": "src/subdomain/Subdomain.cairo" - }, - "start_col": 6, - "start_line": 74 - }, - "While handling return value of" - ], - "start_col": 5, - "start_line": 3 - }, - "n_prefix_newlines": 0 - } - ], - "inst": { - "end_col": 18, - "end_line": 4, - "input_file": { - "filename": "autogen/starknet/external/return/register/618091d4f702cd5c5cf6df9bb974b394b4092b7fe617ff6e7cee1dd6af8b89b6.cairo" - }, - "parent_location": [ - { - "end_col": 14, - "end_line": 74, - "input_file": { - "filename": "src/subdomain/Subdomain.cairo" - }, - "start_col": 6, - "start_line": 74 - }, - "While handling return value of" - ], - "start_col": 5, - "start_line": 4 - } - }, - "762": { - "accessible_scopes": [ - "__main__", - "__main__", - "__wrappers__", - "__wrappers__.register_encode_return" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 59, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/arg_processor/5f0c0cbac20f85f9d9012917259eea8b3598d9c95a80a5250b7fcd42e1adec6f.cairo" - }, - "parent_location": [ - { - "end_col": 50, - "end_line": 76, - "input_file": { - "filename": "src/subdomain/Subdomain.cairo" - }, - "start_col": 27, - "start_line": 76 - }, - "While handling return value 'starknet_id_token'" - ], - "start_col": 1, - "start_line": 1 - } - }, - "763": { - "accessible_scopes": [ - "__main__", - "__main__", - "__wrappers__", - "__wrappers__.register_encode_return" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 52, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/arg_processor/fda0377f98df47534d3f82c18ace9f8dd918a85588f088266053ca8d1244db2a.cairo" - }, - "parent_location": [ - { - "end_col": 68, - "end_line": 76, - "input_file": { - "filename": "src/subdomain/Subdomain.cairo" - }, - "start_col": 52, - "start_line": 76 - }, - "While handling return value 'domain_len'" - ], - "start_col": 1, - "start_line": 1 - } - }, - "764": { - "accessible_scopes": [ - "__main__", - "__main__", - "__wrappers__", - "__wrappers__.register_encode_return" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 49, - "end_line": 2, - "input_file": { - "filename": "autogen/starknet/arg_processor/ce158bd77366de4fd9094e10e9c6b075083279651c19c6c5ca68af0dc3f7cbc3.cairo" - }, - "parent_location": [ - { - "end_col": 83, - "end_line": 76, - "input_file": { - "filename": "src/subdomain/Subdomain.cairo" - }, - "start_col": 70, - "start_line": 76 - }, - "While handling return value 'domain'" - ], - "start_col": 1, - "start_line": 2 - } - }, - "765": { - "accessible_scopes": [ - "__main__", - "__main__", - "__wrappers__", - "__wrappers__.register_encode_return" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 45, - "end_line": 5, - "input_file": { - "filename": "autogen/starknet/arg_processor/ce158bd77366de4fd9094e10e9c6b075083279651c19c6c5ca68af0dc3f7cbc3.cairo" - }, - "parent_location": [ - { - "end_col": 83, - "end_line": 76, - "input_file": { - "filename": "src/subdomain/Subdomain.cairo" - }, - "start_col": 70, - "start_line": 76 - }, - "While handling return value 'domain'" - ], - "start_col": 1, - "start_line": 5 - } - }, - "767": { - "accessible_scopes": [ - "__main__", - "__main__", - "__wrappers__", - "__wrappers__.register_encode_return" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 48, - "end_line": 2, - "input_file": { - "filename": "autogen/starknet/arg_processor/fda0377f98df47534d3f82c18ace9f8dd918a85588f088266053ca8d1244db2a.cairo" - }, - "parent_location": [ - { - "end_col": 68, - "end_line": 76, - "input_file": { - "filename": "src/subdomain/Subdomain.cairo" - }, - "parent_location": [ - { - "end_col": 53, - "end_line": 10, - "input_file": { - "filename": "autogen/starknet/arg_processor/ce158bd77366de4fd9094e10e9c6b075083279651c19c6c5ca68af0dc3f7cbc3.cairo" - }, - "parent_location": [ - { - "end_col": 83, - "end_line": 76, - "input_file": { - "filename": "src/subdomain/Subdomain.cairo" - }, - "start_col": 70, - "start_line": 76 - }, - "While handling return value 'domain'" - ], - "start_col": 35, - "start_line": 10 - }, - "While expanding the reference '__return_value_ptr' in:" - ], - "start_col": 52, - "start_line": 76 - }, - "While handling return value 'domain_len'" - ], - "start_col": 26, - "start_line": 2 - } - }, - "769": { - "accessible_scopes": [ - "__main__", - "__main__", - "__wrappers__", - "__wrappers__.register_encode_return" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 81, - "end_line": 10, - "input_file": { - "filename": "autogen/starknet/arg_processor/ce158bd77366de4fd9094e10e9c6b075083279651c19c6c5ca68af0dc3f7cbc3.cairo" - }, - "parent_location": [ - { - "end_col": 83, - "end_line": 76, - "input_file": { - "filename": "src/subdomain/Subdomain.cairo" - }, - "start_col": 70, - "start_line": 76 - }, - "While handling return value 'domain'" - ], - "start_col": 1, - "start_line": 10 - } - }, - "770": { - "accessible_scopes": [ - "__main__", - "__main__", - "__wrappers__", - "__wrappers__.register_encode_return" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 48, - "end_line": 2, - "input_file": { - "filename": "autogen/starknet/arg_processor/fda0377f98df47534d3f82c18ace9f8dd918a85588f088266053ca8d1244db2a.cairo" - }, - "parent_location": [ - { - "end_col": 68, - "end_line": 76, - "input_file": { - "filename": "src/subdomain/Subdomain.cairo" - }, - "parent_location": [ - { - "end_col": 49, - "end_line": 7, - "input_file": { - "filename": "autogen/starknet/arg_processor/ce158bd77366de4fd9094e10e9c6b075083279651c19c6c5ca68af0dc3f7cbc3.cairo" - }, - "parent_location": [ - { - "end_col": 83, - "end_line": 76, - "input_file": { - "filename": "src/subdomain/Subdomain.cairo" - }, - "parent_location": [ - { - "end_col": 32, - "end_line": 12, - "input_file": { - "filename": "autogen/starknet/arg_processor/ce158bd77366de4fd9094e10e9c6b075083279651c19c6c5ca68af0dc3f7cbc3.cairo" - }, - "parent_location": [ - { - "end_col": 83, - "end_line": 76, - "input_file": { - "filename": "src/subdomain/Subdomain.cairo" - }, - "start_col": 70, - "start_line": 76 - }, - "While handling return value 'domain'" - ], - "start_col": 9, - "start_line": 12 - }, - "While expanding the reference '__return_value_ptr_copy' in:" - ], - "start_col": 70, - "start_line": 76 - }, - "While handling return value 'domain'" - ], - "start_col": 31, - "start_line": 7 - }, - "While expanding the reference '__return_value_ptr' in:" - ], - "start_col": 52, - "start_line": 76 - }, - "While handling return value 'domain_len'" - ], - "start_col": 26, - "start_line": 2 - } - }, - "772": { - "accessible_scopes": [ - "__main__", - "__main__", - "__wrappers__", - "__wrappers__.register_encode_return" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 25, - "end_line": 13, - "input_file": { - "filename": "autogen/starknet/arg_processor/ce158bd77366de4fd9094e10e9c6b075083279651c19c6c5ca68af0dc3f7cbc3.cairo" - }, - "parent_location": [ - { - "end_col": 83, - "end_line": 76, - "input_file": { - "filename": "src/subdomain/Subdomain.cairo" - }, - "start_col": 70, - "start_line": 76 - }, - "While handling return value 'domain'" - ], - "start_col": 9, - "start_line": 13 - } - }, - "773": { - "accessible_scopes": [ - "__main__", - "__main__", - "__wrappers__", - "__wrappers__.register_encode_return" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 29, - "end_line": 14, - "input_file": { - "filename": "autogen/starknet/arg_processor/ce158bd77366de4fd9094e10e9c6b075083279651c19c6c5ca68af0dc3f7cbc3.cairo" - }, - "parent_location": [ - { - "end_col": 83, - "end_line": 76, - "input_file": { - "filename": "src/subdomain/Subdomain.cairo" - }, - "start_col": 70, - "start_line": 76 - }, - "While handling return value 'domain'" - ], - "start_col": 9, - "start_line": 14 - } - }, - "774": { - "accessible_scopes": [ - "__main__", - "__main__", - "__wrappers__", - "__wrappers__.register_encode_return" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 34, - "end_line": 14, - "input_file": { - "filename": "autogen/starknet/arg_processor/ce158bd77366de4fd9094e10e9c6b075083279651c19c6c5ca68af0dc3f7cbc3.cairo" - }, - "parent_location": [ - { - "end_col": 83, - "end_line": 76, - "input_file": { - "filename": "src/subdomain/Subdomain.cairo" - }, - "start_col": 70, - "start_line": 76 - }, - "While handling return value 'domain'" - ], - "start_col": 1, - "start_line": 11 - } - }, - "776": { - "accessible_scopes": [ - "__main__", - "__main__", - "__wrappers__", - "__wrappers__.register_encode_return" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 22, - "end_line": 5, - "input_file": { - "filename": "autogen/starknet/arg_processor/ce158bd77366de4fd9094e10e9c6b075083279651c19c6c5ca68af0dc3f7cbc3.cairo" - }, - "parent_location": [ - { - "end_col": 83, - "end_line": 76, - "input_file": { - "filename": "src/subdomain/Subdomain.cairo" - }, - "parent_location": [ - { - "end_col": 40, - "end_line": 10, - "input_file": { - "filename": "autogen/starknet/external/return/register/618091d4f702cd5c5cf6df9bb974b394b4092b7fe617ff6e7cee1dd6af8b89b6.cairo" - }, - "parent_location": [ - { - "end_col": 14, - "end_line": 74, - "input_file": { - "filename": "src/subdomain/Subdomain.cairo" - }, - "start_col": 6, - "start_line": 74 - }, - "While handling return value of" - ], - "start_col": 25, - "start_line": 10 - }, - "While expanding the reference 'range_check_ptr' in:" - ], - "start_col": 70, - "start_line": 76 - }, - "While handling return value 'domain'" - ], - "start_col": 7, - "start_line": 5 - } - }, - "777": { - "accessible_scopes": [ - "__main__", - "__main__", - "__wrappers__", - "__wrappers__.register_encode_return" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 63, - "end_line": 11, - "input_file": { - "filename": "autogen/starknet/external/return/register/618091d4f702cd5c5cf6df9bb974b394b4092b7fe617ff6e7cee1dd6af8b89b6.cairo" - }, - "parent_location": [ - { - "end_col": 14, - "end_line": 74, - "input_file": { - "filename": "src/subdomain/Subdomain.cairo" - }, - "start_col": 6, - "start_line": 74 - }, - "While handling return value of" - ], - "start_col": 18, - "start_line": 11 - } - }, - "778": { - "accessible_scopes": [ - "__main__", - "__main__", - "__wrappers__", - "__wrappers__.register_encode_return" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 35, - "end_line": 5, - "input_file": { - "filename": "autogen/starknet/external/return/register/618091d4f702cd5c5cf6df9bb974b394b4092b7fe617ff6e7cee1dd6af8b89b6.cairo" - }, - "parent_location": [ - { - "end_col": 14, - "end_line": 74, - "input_file": { - "filename": "src/subdomain/Subdomain.cairo" - }, - "parent_location": [ - { - "end_col": 38, - "end_line": 12, - "input_file": { - "filename": "autogen/starknet/external/return/register/618091d4f702cd5c5cf6df9bb974b394b4092b7fe617ff6e7cee1dd6af8b89b6.cairo" - }, - "parent_location": [ - { - "end_col": 14, - "end_line": 74, - "input_file": { - "filename": "src/subdomain/Subdomain.cairo" - }, - "start_col": 6, - "start_line": 74 - }, - "While handling return value of" - ], - "start_col": 14, - "start_line": 12 - }, - "While expanding the reference '__return_value_ptr_start' in:" - ], - "start_col": 6, - "start_line": 74 - }, - "While handling return value of" - ], - "start_col": 11, - "start_line": 5 - } - }, - "779": { - "accessible_scopes": [ - "__main__", - "__main__", - "__wrappers__", - "__wrappers__.register_encode_return" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 40, - "end_line": 12, - "input_file": { - "filename": "autogen/starknet/external/return/register/618091d4f702cd5c5cf6df9bb974b394b4092b7fe617ff6e7cee1dd6af8b89b6.cairo" - }, - "parent_location": [ - { - "end_col": 14, - "end_line": 74, - "input_file": { - "filename": "src/subdomain/Subdomain.cairo" - }, - "start_col": 6, - "start_line": 74 - }, - "While handling return value of" - ], - "start_col": 5, - "start_line": 9 - } - }, - "780": { - "accessible_scopes": [ - "__main__", - "__main__", - "__wrappers__", - "__wrappers__.register" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 18, - "end_line": 2, - "input_file": { - "filename": "autogen/starknet/external/register/e4065319506eee42a7d1a2e0cab4e10c7cb79d70fe881d4202843707088e4960.cairo" - }, - "parent_location": [ - { - "end_col": 14, - "end_line": 74, - "input_file": { - "filename": "src/subdomain/Subdomain.cairo" - }, - "start_col": 6, - "start_line": 74 - }, - "While constructing the external wrapper for:" - ], - "start_col": 5, - "start_line": 2 - } - }, - "782": { - "accessible_scopes": [ - "__main__", - "__main__", - "__wrappers__", - "__wrappers__.register" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 40, - "end_line": 2, - "input_file": { - "filename": "autogen/starknet/arg_processor/0ef30555f44496866ef53271b24c6311394b0d6b81c0271dfd0cac757a5d73dc.cairo" - }, - "parent_location": [ - { - "end_col": 21, - "end_line": 76, - "input_file": { - "filename": "src/subdomain/Subdomain.cairo" - }, - "parent_location": [ - { - "end_col": 45, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/arg_processor/c31620b02d4d706f0542c989b2aadc01b0981d1f6a5933a8fe4937ace3d70d92.cairo" - }, - "parent_location": [ - { - "end_col": 14, - "end_line": 74, - "input_file": { - "filename": "src/subdomain/Subdomain.cairo" - }, - "parent_location": [ - { - "end_col": 57, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/arg_processor/01cba52f8515996bb9d7070bde81ff39281d096d7024a558efcba6e1fd2402cf.cairo" - }, - "parent_location": [ - { - "end_col": 14, - "end_line": 74, - "input_file": { - "filename": "src/subdomain/Subdomain.cairo" - }, - "start_col": 6, - "start_line": 74 - }, - "While handling calldata of" - ], - "start_col": 35, - "start_line": 1 - }, - "While expanding the reference '__calldata_actual_size' in:" - ], - "start_col": 6, - "start_line": 74 - }, - "While handling calldata of" - ], - "start_col": 31, - "start_line": 1 - }, - "While expanding the reference '__calldata_ptr' in:" - ], - "start_col": 3, - "start_line": 76 - }, - "While handling calldata argument 'domain_ascii'" - ], - "start_col": 22, - "start_line": 2 - } - }, - "784": { - "accessible_scopes": [ - "__main__", - "__main__", - "__wrappers__", - "__wrappers__.register" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 58, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/arg_processor/01cba52f8515996bb9d7070bde81ff39281d096d7024a558efcba6e1fd2402cf.cairo" - }, - "parent_location": [ - { - "end_col": 14, - "end_line": 74, - "input_file": { - "filename": "src/subdomain/Subdomain.cairo" - }, - "start_col": 6, - "start_line": 74 - }, - "While handling calldata of" - ], - "start_col": 1, - "start_line": 1 - } - }, - "785": { - "accessible_scopes": [ - "__main__", - "__main__", - "__wrappers__", - "__wrappers__.register" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 64, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/external/register/b2c52ca2d2a8fc8791a983086d8716c5eacd0c3d62934914d2286f84b98ff4cb.cairo" - }, - "parent_location": [ - { - "end_col": 23, - "end_line": 75, - "input_file": { - "filename": "src/subdomain/Subdomain.cairo" - }, - "parent_location": [ - { - "end_col": 55, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/external/register/716382761f0a42276cedc3c874cbfbfe0535570b13e7d1727a1af27600bb845a.cairo" - }, - "parent_location": [ - { - "end_col": 14, - "end_line": 74, - "input_file": { - "filename": "src/subdomain/Subdomain.cairo" - }, - "start_col": 6, - "start_line": 74 - }, - "While constructing the external wrapper for:" - ], - "start_col": 44, - "start_line": 1 - }, - "While expanding the reference 'syscall_ptr' in:" - ], - "start_col": 5, - "start_line": 75 - }, - "While constructing the external wrapper for:" - ], - "start_col": 19, - "start_line": 1 - } - }, - "786": { - "accessible_scopes": [ - "__main__", - "__main__", - "__wrappers__", - "__wrappers__.register" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 110, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/external/register/9684a85e93c782014ca14293edea4eb2502039a5a7b6538ecd39c56faaf12529.cairo" - }, - "parent_location": [ - { - "end_col": 51, - "end_line": 75, - "input_file": { - "filename": "src/subdomain/Subdomain.cairo" - }, - "parent_location": [ - { - "end_col": 82, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/external/register/716382761f0a42276cedc3c874cbfbfe0535570b13e7d1727a1af27600bb845a.cairo" - }, - "parent_location": [ - { - "end_col": 14, - "end_line": 74, - "input_file": { - "filename": "src/subdomain/Subdomain.cairo" - }, - "start_col": 6, - "start_line": 74 - }, - "While constructing the external wrapper for:" - ], - "start_col": 70, - "start_line": 1 - }, - "While expanding the reference 'pedersen_ptr' in:" - ], - "start_col": 25, - "start_line": 75 - }, - "While constructing the external wrapper for:" - ], - "start_col": 20, - "start_line": 1 - } - }, - "787": { - "accessible_scopes": [ - "__main__", - "__main__", - "__wrappers__", - "__wrappers__.register" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 67, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/external/register/741ea357d6336b0bed7bf0472425acd0311d543883b803388880e60a232040c7.cairo" - }, - "parent_location": [ - { - "end_col": 68, - "end_line": 75, - "input_file": { - "filename": "src/subdomain/Subdomain.cairo" - }, - "parent_location": [ - { - "end_col": 115, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/external/register/716382761f0a42276cedc3c874cbfbfe0535570b13e7d1727a1af27600bb845a.cairo" - }, - "parent_location": [ - { - "end_col": 14, - "end_line": 74, - "input_file": { - "filename": "src/subdomain/Subdomain.cairo" - }, - "start_col": 6, - "start_line": 74 - }, - "While constructing the external wrapper for:" - ], - "start_col": 100, - "start_line": 1 - }, - "While expanding the reference 'range_check_ptr' in:" - ], - "start_col": 53, - "start_line": 75 - }, - "While constructing the external wrapper for:" - ], - "start_col": 23, - "start_line": 1 - } - }, - "788": { - "accessible_scopes": [ - "__main__", - "__main__", - "__wrappers__", - "__wrappers__.register" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 112, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/external/register/972efe4adb0e1cedbdf0f0747cf1e121111a6180229de74773d49a6e595c4f3d.cairo" - }, - "parent_location": [ - { - "end_col": 98, - "end_line": 75, - "input_file": { - "filename": "src/subdomain/Subdomain.cairo" - }, - "parent_location": [ - { - "end_col": 136, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/external/register/716382761f0a42276cedc3c874cbfbfe0535570b13e7d1727a1af27600bb845a.cairo" - }, - "parent_location": [ - { - "end_col": 14, - "end_line": 74, - "input_file": { - "filename": "src/subdomain/Subdomain.cairo" - }, - "start_col": 6, - "start_line": 74 - }, - "While constructing the external wrapper for:" - ], - "start_col": 127, - "start_line": 1 - }, - "While expanding the reference 'ecdsa_ptr' in:" - ], - "start_col": 70, - "start_line": 75 - }, - "While constructing the external wrapper for:" - ], - "start_col": 17, - "start_line": 1 - } - }, - "789": { - "accessible_scopes": [ - "__main__", - "__main__", - "__wrappers__", - "__wrappers__.register" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 51, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/arg_processor/0ef30555f44496866ef53271b24c6311394b0d6b81c0271dfd0cac757a5d73dc.cairo" - }, - "parent_location": [ - { - "end_col": 21, - "end_line": 76, - "input_file": { - "filename": "src/subdomain/Subdomain.cairo" - }, - "parent_location": [ - { - "end_col": 178, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/external/register/716382761f0a42276cedc3c874cbfbfe0535570b13e7d1727a1af27600bb845a.cairo" - }, - "parent_location": [ - { - "end_col": 14, - "end_line": 74, - "input_file": { - "filename": "src/subdomain/Subdomain.cairo" - }, - "start_col": 6, - "start_line": 74 - }, - "While constructing the external wrapper for:" - ], - "start_col": 151, - "start_line": 1 - }, - "While expanding the reference '__calldata_arg_domain_ascii' in:" - ], - "start_col": 3, - "start_line": 76 - }, - "While handling calldata argument 'domain_ascii'" - ], - "start_col": 35, - "start_line": 1 - } - }, - "790": { - "accessible_scopes": [ - "__main__", - "__main__", - "__wrappers__", - "__wrappers__.register" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 14, - "end_line": 74, - "input_file": { - "filename": "src/subdomain/Subdomain.cairo" - }, - "start_col": 6, - "start_line": 74 - } - }, - "792": { - "accessible_scopes": [ - "__main__", - "__main__", - "__wrappers__", - "__wrappers__.register" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 55, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/external/register/716382761f0a42276cedc3c874cbfbfe0535570b13e7d1727a1af27600bb845a.cairo" - }, - "parent_location": [ - { - "end_col": 14, - "end_line": 74, - "input_file": { - "filename": "src/subdomain/Subdomain.cairo" - }, - "parent_location": [ - { - "end_col": 55, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/external/register/716382761f0a42276cedc3c874cbfbfe0535570b13e7d1727a1af27600bb845a.cairo" - }, - "parent_location": [ - { - "end_col": 14, - "end_line": 74, - "input_file": { - "filename": "src/subdomain/Subdomain.cairo" - }, - "start_col": 6, - "start_line": 74 - }, - "While constructing the external wrapper for:" - ], - "start_col": 44, - "start_line": 1 - }, - "While auto generating local variable for 'syscall_ptr'." - ], - "start_col": 6, - "start_line": 74 - }, - "While constructing the external wrapper for:" - ], - "start_col": 44, - "start_line": 1 - } - }, - "793": { - "accessible_scopes": [ - "__main__", - "__main__", - "__wrappers__", - "__wrappers__.register" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 82, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/external/register/716382761f0a42276cedc3c874cbfbfe0535570b13e7d1727a1af27600bb845a.cairo" - }, - "parent_location": [ - { - "end_col": 14, - "end_line": 74, - "input_file": { - "filename": "src/subdomain/Subdomain.cairo" - }, - "parent_location": [ - { - "end_col": 82, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/external/register/716382761f0a42276cedc3c874cbfbfe0535570b13e7d1727a1af27600bb845a.cairo" - }, - "parent_location": [ - { - "end_col": 14, - "end_line": 74, - "input_file": { - "filename": "src/subdomain/Subdomain.cairo" - }, - "start_col": 6, - "start_line": 74 - }, - "While constructing the external wrapper for:" - ], - "start_col": 70, - "start_line": 1 - }, - "While auto generating local variable for 'pedersen_ptr'." - ], - "start_col": 6, - "start_line": 74 - }, - "While constructing the external wrapper for:" - ], - "start_col": 70, - "start_line": 1 - } - }, - "794": { - "accessible_scopes": [ - "__main__", - "__main__", - "__wrappers__", - "__wrappers__.register" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 136, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/external/register/716382761f0a42276cedc3c874cbfbfe0535570b13e7d1727a1af27600bb845a.cairo" - }, - "parent_location": [ - { - "end_col": 14, - "end_line": 74, - "input_file": { - "filename": "src/subdomain/Subdomain.cairo" - }, - "parent_location": [ - { - "end_col": 136, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/external/register/716382761f0a42276cedc3c874cbfbfe0535570b13e7d1727a1af27600bb845a.cairo" - }, - "parent_location": [ - { - "end_col": 14, - "end_line": 74, - "input_file": { - "filename": "src/subdomain/Subdomain.cairo" - }, - "start_col": 6, - "start_line": 74 - }, - "While constructing the external wrapper for:" - ], - "start_col": 127, - "start_line": 1 - }, - "While auto generating local variable for 'ecdsa_ptr'." - ], - "start_col": 6, - "start_line": 74 - }, - "While constructing the external wrapper for:" - ], - "start_col": 127, - "start_line": 1 - } - }, - "795": { - "accessible_scopes": [ - "__main__", - "__main__", - "__wrappers__", - "__wrappers__.register" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 115, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/external/register/716382761f0a42276cedc3c874cbfbfe0535570b13e7d1727a1af27600bb845a.cairo" - }, - "parent_location": [ - { - "end_col": 14, - "end_line": 74, - "input_file": { - "filename": "src/subdomain/Subdomain.cairo" - }, - "parent_location": [ - { - "end_col": 97, - "end_line": 2, - "input_file": { - "filename": "autogen/starknet/external/register/716382761f0a42276cedc3c874cbfbfe0535570b13e7d1727a1af27600bb845a.cairo" - }, - "parent_location": [ - { - "end_col": 14, - "end_line": 74, - "input_file": { - "filename": "src/subdomain/Subdomain.cairo" - }, - "start_col": 6, - "start_line": 74 - }, - "While constructing the external wrapper for:" - ], - "start_col": 82, - "start_line": 2 - }, - "While expanding the reference 'range_check_ptr' in:" - ], - "start_col": 6, - "start_line": 74 - }, - "While constructing the external wrapper for:" - ], - "start_col": 100, - "start_line": 1 - } - }, - "796": { - "accessible_scopes": [ - "__main__", - "__main__", - "__wrappers__", - "__wrappers__.register" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 98, - "end_line": 2, - "input_file": { - "filename": "autogen/starknet/external/register/716382761f0a42276cedc3c874cbfbfe0535570b13e7d1727a1af27600bb845a.cairo" - }, - "parent_location": [ - { - "end_col": 14, - "end_line": 74, - "input_file": { - "filename": "src/subdomain/Subdomain.cairo" - }, - "start_col": 6, - "start_line": 74 - }, - "While constructing the external wrapper for:" - ], - "start_col": 48, - "start_line": 2 - } - }, - "798": { - "accessible_scopes": [ - "__main__", - "__main__", - "__wrappers__", - "__wrappers__.register" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 55, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/external/register/716382761f0a42276cedc3c874cbfbfe0535570b13e7d1727a1af27600bb845a.cairo" - }, - "parent_location": [ - { - "end_col": 14, - "end_line": 74, - "input_file": { - "filename": "src/subdomain/Subdomain.cairo" - }, - "parent_location": [ - { - "end_col": 55, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/external/register/716382761f0a42276cedc3c874cbfbfe0535570b13e7d1727a1af27600bb845a.cairo" - }, - "parent_location": [ - { - "end_col": 14, - "end_line": 74, - "input_file": { - "filename": "src/subdomain/Subdomain.cairo" - }, - "parent_location": [ - { - "end_col": 20, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/external/register/18019a070f24c7de62611d09a6e18dd11270f1df7385fbc9eb3519a719dbe8bc.cairo" - }, - "parent_location": [ - { - "end_col": 14, - "end_line": 74, - "input_file": { - "filename": "src/subdomain/Subdomain.cairo" - }, - "start_col": 6, - "start_line": 74 - }, - "While constructing the external wrapper for:" - ], - "start_col": 9, - "start_line": 1 - }, - "While expanding the reference 'syscall_ptr' in:" - ], - "start_col": 6, - "start_line": 74 - }, - "While constructing the external wrapper for:" - ], - "start_col": 44, - "start_line": 1 - }, - "While auto generating local variable for 'syscall_ptr'." - ], - "start_col": 6, - "start_line": 74 - }, - "While constructing the external wrapper for:" - ], - "start_col": 44, - "start_line": 1 - } - }, - "799": { - "accessible_scopes": [ - "__main__", - "__main__", - "__wrappers__", - "__wrappers__.register" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 82, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/external/register/716382761f0a42276cedc3c874cbfbfe0535570b13e7d1727a1af27600bb845a.cairo" - }, - "parent_location": [ - { - "end_col": 14, - "end_line": 74, - "input_file": { - "filename": "src/subdomain/Subdomain.cairo" - }, - "parent_location": [ - { - "end_col": 82, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/external/register/716382761f0a42276cedc3c874cbfbfe0535570b13e7d1727a1af27600bb845a.cairo" - }, - "parent_location": [ - { - "end_col": 14, - "end_line": 74, - "input_file": { - "filename": "src/subdomain/Subdomain.cairo" - }, - "parent_location": [ - { - "end_col": 33, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/external/register/18019a070f24c7de62611d09a6e18dd11270f1df7385fbc9eb3519a719dbe8bc.cairo" - }, - "parent_location": [ - { - "end_col": 14, - "end_line": 74, - "input_file": { - "filename": "src/subdomain/Subdomain.cairo" - }, - "start_col": 6, - "start_line": 74 - }, - "While constructing the external wrapper for:" - ], - "start_col": 21, - "start_line": 1 - }, - "While expanding the reference 'pedersen_ptr' in:" - ], - "start_col": 6, - "start_line": 74 - }, - "While constructing the external wrapper for:" - ], - "start_col": 70, - "start_line": 1 - }, - "While auto generating local variable for 'pedersen_ptr'." - ], - "start_col": 6, - "start_line": 74 - }, - "While constructing the external wrapper for:" - ], - "start_col": 70, - "start_line": 1 - } - }, - "800": { - "accessible_scopes": [ - "__main__", - "__main__", - "__wrappers__", - "__wrappers__.register" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 21, - "end_line": 2, - "input_file": { - "filename": "autogen/starknet/external/register/716382761f0a42276cedc3c874cbfbfe0535570b13e7d1727a1af27600bb845a.cairo" - }, - "parent_location": [ - { - "end_col": 14, - "end_line": 74, - "input_file": { - "filename": "src/subdomain/Subdomain.cairo" - }, - "parent_location": [ - { - "end_col": 49, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/external/register/18019a070f24c7de62611d09a6e18dd11270f1df7385fbc9eb3519a719dbe8bc.cairo" - }, - "parent_location": [ - { - "end_col": 14, - "end_line": 74, - "input_file": { - "filename": "src/subdomain/Subdomain.cairo" - }, - "start_col": 6, - "start_line": 74 - }, - "While constructing the external wrapper for:" - ], - "start_col": 34, - "start_line": 1 - }, - "While expanding the reference 'range_check_ptr' in:" - ], - "start_col": 6, - "start_line": 74 - }, - "While constructing the external wrapper for:" - ], - "start_col": 6, - "start_line": 2 - } - }, - "801": { - "accessible_scopes": [ - "__main__", - "__main__", - "__wrappers__", - "__wrappers__.register" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 136, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/external/register/716382761f0a42276cedc3c874cbfbfe0535570b13e7d1727a1af27600bb845a.cairo" - }, - "parent_location": [ - { - "end_col": 14, - "end_line": 74, - "input_file": { - "filename": "src/subdomain/Subdomain.cairo" - }, - "parent_location": [ - { - "end_col": 136, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/external/register/716382761f0a42276cedc3c874cbfbfe0535570b13e7d1727a1af27600bb845a.cairo" - }, - "parent_location": [ - { - "end_col": 14, - "end_line": 74, - "input_file": { - "filename": "src/subdomain/Subdomain.cairo" - }, - "parent_location": [ - { - "end_col": 59, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/external/register/18019a070f24c7de62611d09a6e18dd11270f1df7385fbc9eb3519a719dbe8bc.cairo" - }, - "parent_location": [ - { - "end_col": 14, - "end_line": 74, - "input_file": { - "filename": "src/subdomain/Subdomain.cairo" - }, - "start_col": 6, - "start_line": 74 - }, - "While constructing the external wrapper for:" - ], - "start_col": 50, - "start_line": 1 - }, - "While expanding the reference 'ecdsa_ptr' in:" - ], - "start_col": 6, - "start_line": 74 - }, - "While constructing the external wrapper for:" - ], - "start_col": 127, - "start_line": 1 - }, - "While auto generating local variable for 'ecdsa_ptr'." - ], - "start_col": 6, - "start_line": 74 - }, - "While constructing the external wrapper for:" - ], - "start_col": 127, - "start_line": 1 - } - }, - "802": { - "accessible_scopes": [ - "__main__", - "__main__", - "__wrappers__", - "__wrappers__.register" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 35, - "end_line": 2, - "input_file": { - "filename": "autogen/starknet/external/register/716382761f0a42276cedc3c874cbfbfe0535570b13e7d1727a1af27600bb845a.cairo" - }, - "parent_location": [ - { - "end_col": 14, - "end_line": 74, - "input_file": { - "filename": "src/subdomain/Subdomain.cairo" - }, - "parent_location": [ - { - "end_col": 72, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/external/register/18019a070f24c7de62611d09a6e18dd11270f1df7385fbc9eb3519a719dbe8bc.cairo" - }, - "parent_location": [ - { - "end_col": 14, - "end_line": 74, - "input_file": { - "filename": "src/subdomain/Subdomain.cairo" - }, - "start_col": 6, - "start_line": 74 - }, - "While constructing the external wrapper for:" - ], - "start_col": 60, - "start_line": 1 - }, - "While expanding the reference 'retdata_size' in:" - ], - "start_col": 6, - "start_line": 74 - }, - "While constructing the external wrapper for:" - ], - "start_col": 23, - "start_line": 2 - } - }, - "803": { - "accessible_scopes": [ - "__main__", - "__main__", - "__wrappers__", - "__wrappers__.register" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 44, - "end_line": 2, - "input_file": { - "filename": "autogen/starknet/external/register/716382761f0a42276cedc3c874cbfbfe0535570b13e7d1727a1af27600bb845a.cairo" - }, - "parent_location": [ - { - "end_col": 14, - "end_line": 74, - "input_file": { - "filename": "src/subdomain/Subdomain.cairo" - }, - "parent_location": [ - { - "end_col": 80, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/external/register/18019a070f24c7de62611d09a6e18dd11270f1df7385fbc9eb3519a719dbe8bc.cairo" - }, - "parent_location": [ - { - "end_col": 14, - "end_line": 74, - "input_file": { - "filename": "src/subdomain/Subdomain.cairo" - }, - "start_col": 6, - "start_line": 74 - }, - "While constructing the external wrapper for:" - ], - "start_col": 73, - "start_line": 1 - }, - "While expanding the reference 'retdata' in:" - ], - "start_col": 6, - "start_line": 74 - }, - "While constructing the external wrapper for:" - ], - "start_col": 37, - "start_line": 2 - } - }, - "804": { - "accessible_scopes": [ - "__main__", - "__main__", - "__wrappers__", - "__wrappers__.register" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 82, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/external/register/18019a070f24c7de62611d09a6e18dd11270f1df7385fbc9eb3519a719dbe8bc.cairo" - }, - "parent_location": [ - { - "end_col": 14, - "end_line": 74, - "input_file": { - "filename": "src/subdomain/Subdomain.cairo" - }, - "start_col": 6, - "start_line": 74 - }, - "While constructing the external wrapper for:" - ], - "start_col": 1, - "start_line": 1 - } - }, - "805": { - "accessible_scopes": [ - "__main__", - "__main__", - "__main__.open_registration" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 42, - "end_line": 129, - "input_file": { - "filename": "src/subdomain/Subdomain.cairo" - }, - "parent_location": [ - { - "end_col": 37, - "end_line": 168, - "input_file": { - "filename": "src/subdomain/Subdomain.cairo" - }, - "parent_location": [ - { - "end_col": 19, - "end_line": 130, - "input_file": { - "filename": "src/subdomain/Subdomain.cairo" - }, - "start_col": 5, - "start_line": 130 - }, - "While trying to retrieve the implicit argument 'syscall_ptr' in:" - ], - "start_col": 19, - "start_line": 168 - }, - "While expanding the reference 'syscall_ptr' in:" - ], - "start_col": 24, - "start_line": 129 - } - }, - "806": { - "accessible_scopes": [ - "__main__", - "__main__", - "__main__.open_registration" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 70, - "end_line": 129, - "input_file": { - "filename": "src/subdomain/Subdomain.cairo" - }, - "parent_location": [ - { - "end_col": 65, - "end_line": 168, - "input_file": { - "filename": "src/subdomain/Subdomain.cairo" - }, - "parent_location": [ - { - "end_col": 19, - "end_line": 130, - "input_file": { - "filename": "src/subdomain/Subdomain.cairo" - }, - "start_col": 5, - "start_line": 130 - }, - "While trying to retrieve the implicit argument 'pedersen_ptr' in:" - ], - "start_col": 39, - "start_line": 168 - }, - "While expanding the reference 'pedersen_ptr' in:" - ], - "start_col": 44, - "start_line": 129 - } - }, - "807": { - "accessible_scopes": [ - "__main__", - "__main__", - "__main__.open_registration" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 87, - "end_line": 129, - "input_file": { - "filename": "src/subdomain/Subdomain.cairo" - }, - "parent_location": [ - { - "end_col": 82, - "end_line": 168, - "input_file": { - "filename": "src/subdomain/Subdomain.cairo" - }, - "parent_location": [ - { - "end_col": 19, - "end_line": 130, - "input_file": { - "filename": "src/subdomain/Subdomain.cairo" - }, - "start_col": 5, - "start_line": 130 - }, - "While trying to retrieve the implicit argument 'range_check_ptr' in:" - ], - "start_col": 67, - "start_line": 168 - }, - "While expanding the reference 'range_check_ptr' in:" - ], - "start_col": 72, - "start_line": 129 - } - }, - "808": { - "accessible_scopes": [ - "__main__", - "__main__", - "__main__.open_registration" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 19, - "end_line": 130, - "input_file": { - "filename": "src/subdomain/Subdomain.cairo" - }, - "start_col": 5, - "start_line": 130 - } - }, - "810": { - "accessible_scopes": [ - "__main__", - "__main__", - "__main__.open_registration" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 34, - "end_line": 131, - "input_file": { - "filename": "src/subdomain/Subdomain.cairo" - }, - "start_col": 33, - "start_line": 131 - } - }, - "812": { - "accessible_scopes": [ - "__main__", - "__main__", - "__main__.open_registration" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 35, - "end_line": 131, - "input_file": { - "filename": "src/subdomain/Subdomain.cairo" - }, - "start_col": 5, - "start_line": 131 - } - }, - "814": { - "accessible_scopes": [ - "__main__", - "__main__", - "__main__.open_registration" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 15, - "end_line": 133, - "input_file": { - "filename": "src/subdomain/Subdomain.cairo" - }, - "start_col": 5, - "start_line": 133 - } - }, - "815": { - "accessible_scopes": [ - "__main__", - "__main__", - "__wrappers__", - "__wrappers__.open_registration" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 58, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/arg_processor/01cba52f8515996bb9d7070bde81ff39281d096d7024a558efcba6e1fd2402cf.cairo" - }, - "parent_location": [ - { - "end_col": 23, - "end_line": 129, - "input_file": { - "filename": "src/subdomain/Subdomain.cairo" - }, - "start_col": 6, - "start_line": 129 - }, - "While handling calldata of" - ], - "start_col": 1, - "start_line": 1 - } - }, - "816": { - "accessible_scopes": [ - "__main__", - "__main__", - "__wrappers__", - "__wrappers__.open_registration" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 64, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/external/open_registration/b2c52ca2d2a8fc8791a983086d8716c5eacd0c3d62934914d2286f84b98ff4cb.cairo" - }, - "parent_location": [ - { - "end_col": 42, - "end_line": 129, - "input_file": { - "filename": "src/subdomain/Subdomain.cairo" - }, - "parent_location": [ - { - "end_col": 55, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/external/open_registration/8f83d060e7e088c358526f8859eb82973ba2c094c7d9223df6230b744dfa211c.cairo" - }, - "parent_location": [ - { - "end_col": 23, - "end_line": 129, - "input_file": { - "filename": "src/subdomain/Subdomain.cairo" - }, - "start_col": 6, - "start_line": 129 - }, - "While constructing the external wrapper for:" - ], - "start_col": 44, - "start_line": 1 - }, - "While expanding the reference 'syscall_ptr' in:" - ], - "start_col": 24, - "start_line": 129 - }, - "While constructing the external wrapper for:" - ], - "start_col": 19, - "start_line": 1 - } - }, - "817": { - "accessible_scopes": [ - "__main__", - "__main__", - "__wrappers__", - "__wrappers__.open_registration" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 110, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/external/open_registration/9684a85e93c782014ca14293edea4eb2502039a5a7b6538ecd39c56faaf12529.cairo" - }, - "parent_location": [ - { - "end_col": 70, - "end_line": 129, - "input_file": { - "filename": "src/subdomain/Subdomain.cairo" - }, - "parent_location": [ - { - "end_col": 82, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/external/open_registration/8f83d060e7e088c358526f8859eb82973ba2c094c7d9223df6230b744dfa211c.cairo" - }, - "parent_location": [ - { - "end_col": 23, - "end_line": 129, - "input_file": { - "filename": "src/subdomain/Subdomain.cairo" - }, - "start_col": 6, - "start_line": 129 - }, - "While constructing the external wrapper for:" - ], - "start_col": 70, - "start_line": 1 - }, - "While expanding the reference 'pedersen_ptr' in:" - ], - "start_col": 44, - "start_line": 129 - }, - "While constructing the external wrapper for:" - ], - "start_col": 20, - "start_line": 1 - } - }, - "818": { - "accessible_scopes": [ - "__main__", - "__main__", - "__wrappers__", - "__wrappers__.open_registration" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 67, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/external/open_registration/741ea357d6336b0bed7bf0472425acd0311d543883b803388880e60a232040c7.cairo" - }, - "parent_location": [ - { - "end_col": 87, - "end_line": 129, - "input_file": { - "filename": "src/subdomain/Subdomain.cairo" - }, - "parent_location": [ - { - "end_col": 115, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/external/open_registration/8f83d060e7e088c358526f8859eb82973ba2c094c7d9223df6230b744dfa211c.cairo" - }, - "parent_location": [ - { - "end_col": 23, - "end_line": 129, - "input_file": { - "filename": "src/subdomain/Subdomain.cairo" - }, - "start_col": 6, - "start_line": 129 - }, - "While constructing the external wrapper for:" - ], - "start_col": 100, - "start_line": 1 - }, - "While expanding the reference 'range_check_ptr' in:" - ], - "start_col": 72, - "start_line": 129 - }, - "While constructing the external wrapper for:" - ], - "start_col": 23, - "start_line": 1 - } - }, - "819": { - "accessible_scopes": [ - "__main__", - "__main__", - "__wrappers__", - "__wrappers__.open_registration" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 23, - "end_line": 129, - "input_file": { - "filename": "src/subdomain/Subdomain.cairo" - }, - "start_col": 6, - "start_line": 129 - } - }, - "821": { - "accessible_scopes": [ - "__main__", - "__main__", - "__wrappers__", - "__wrappers__.open_registration" - ], - "flow_tracking_data": null, - "hints": [ - { - "location": { - "end_col": 34, - "end_line": 2, - "input_file": { - "filename": "autogen/starknet/external/open_registration/8f83d060e7e088c358526f8859eb82973ba2c094c7d9223df6230b744dfa211c.cairo" - }, - "parent_location": [ - { - "end_col": 23, - "end_line": 129, - "input_file": { - "filename": "src/subdomain/Subdomain.cairo" - }, - "start_col": 6, - "start_line": 129 - }, - "While constructing the external wrapper for:" - ], - "start_col": 1, - "start_line": 2 - }, - "n_prefix_newlines": 0 - } - ], - "inst": { - "end_col": 24, - "end_line": 3, - "input_file": { - "filename": "autogen/starknet/external/open_registration/8f83d060e7e088c358526f8859eb82973ba2c094c7d9223df6230b744dfa211c.cairo" - }, - "parent_location": [ - { - "end_col": 23, - "end_line": 129, - "input_file": { - "filename": "src/subdomain/Subdomain.cairo" - }, - "start_col": 6, - "start_line": 129 - }, - "While constructing the external wrapper for:" - ], - "start_col": 1, - "start_line": 3 - } - }, - "823": { - "accessible_scopes": [ - "__main__", - "__main__", - "__wrappers__", - "__wrappers__.open_registration" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 55, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/external/open_registration/8f83d060e7e088c358526f8859eb82973ba2c094c7d9223df6230b744dfa211c.cairo" - }, - "parent_location": [ - { - "end_col": 23, - "end_line": 129, - "input_file": { - "filename": "src/subdomain/Subdomain.cairo" - }, - "parent_location": [ - { - "end_col": 20, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/external/open_registration/18019a070f24c7de62611d09a6e18dd11270f1df7385fbc9eb3519a719dbe8bc.cairo" - }, - "parent_location": [ - { - "end_col": 23, - "end_line": 129, - "input_file": { - "filename": "src/subdomain/Subdomain.cairo" - }, - "start_col": 6, - "start_line": 129 - }, - "While constructing the external wrapper for:" - ], - "start_col": 9, - "start_line": 1 - }, - "While expanding the reference 'syscall_ptr' in:" - ], - "start_col": 6, - "start_line": 129 - }, - "While constructing the external wrapper for:" - ], - "start_col": 44, - "start_line": 1 - } - }, - "824": { - "accessible_scopes": [ - "__main__", - "__main__", - "__wrappers__", - "__wrappers__.open_registration" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 82, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/external/open_registration/8f83d060e7e088c358526f8859eb82973ba2c094c7d9223df6230b744dfa211c.cairo" - }, - "parent_location": [ - { - "end_col": 23, - "end_line": 129, - "input_file": { - "filename": "src/subdomain/Subdomain.cairo" - }, - "parent_location": [ - { - "end_col": 33, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/external/open_registration/18019a070f24c7de62611d09a6e18dd11270f1df7385fbc9eb3519a719dbe8bc.cairo" - }, - "parent_location": [ - { - "end_col": 23, - "end_line": 129, - "input_file": { - "filename": "src/subdomain/Subdomain.cairo" - }, - "start_col": 6, - "start_line": 129 - }, - "While constructing the external wrapper for:" - ], - "start_col": 21, - "start_line": 1 - }, - "While expanding the reference 'pedersen_ptr' in:" - ], - "start_col": 6, - "start_line": 129 - }, - "While constructing the external wrapper for:" - ], - "start_col": 70, - "start_line": 1 - } - }, - "825": { - "accessible_scopes": [ - "__main__", - "__main__", - "__wrappers__", - "__wrappers__.open_registration" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 115, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/external/open_registration/8f83d060e7e088c358526f8859eb82973ba2c094c7d9223df6230b744dfa211c.cairo" - }, - "parent_location": [ - { - "end_col": 23, - "end_line": 129, - "input_file": { - "filename": "src/subdomain/Subdomain.cairo" - }, - "parent_location": [ - { - "end_col": 49, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/external/open_registration/18019a070f24c7de62611d09a6e18dd11270f1df7385fbc9eb3519a719dbe8bc.cairo" - }, - "parent_location": [ - { - "end_col": 23, - "end_line": 129, - "input_file": { - "filename": "src/subdomain/Subdomain.cairo" - }, - "start_col": 6, - "start_line": 129 - }, - "While constructing the external wrapper for:" - ], - "start_col": 34, - "start_line": 1 - }, - "While expanding the reference 'range_check_ptr' in:" - ], - "start_col": 6, - "start_line": 129 - }, - "While constructing the external wrapper for:" - ], - "start_col": 100, - "start_line": 1 - } - }, - "826": { - "accessible_scopes": [ - "__main__", - "__main__", - "__wrappers__", - "__wrappers__.open_registration" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 61, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/external/open_registration/c6c4d3a7a58c6b37d5fdd51b25e5ab9f3e75174b411ab503db3ce03636ed6e2a.cairo" - }, - "parent_location": [ - { - "end_col": 23, - "end_line": 129, - "input_file": { - "filename": "src/subdomain/Subdomain.cairo" - }, - "parent_location": [ - { - "end_col": 59, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/external/open_registration/18019a070f24c7de62611d09a6e18dd11270f1df7385fbc9eb3519a719dbe8bc.cairo" - }, - "parent_location": [ - { - "end_col": 23, - "end_line": 129, - "input_file": { - "filename": "src/subdomain/Subdomain.cairo" - }, - "start_col": 6, - "start_line": 129 - }, - "While constructing the external wrapper for:" - ], - "start_col": 50, - "start_line": 1 - }, - "While expanding the reference 'ecdsa_ptr' in:" - ], - "start_col": 6, - "start_line": 129 - }, - "While constructing the external wrapper for:" - ], - "start_col": 17, - "start_line": 1 - } - }, - "827": { - "accessible_scopes": [ - "__main__", - "__main__", - "__wrappers__", - "__wrappers__.open_registration" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 21, - "end_line": 4, - "input_file": { - "filename": "autogen/starknet/external/open_registration/8f83d060e7e088c358526f8859eb82973ba2c094c7d9223df6230b744dfa211c.cairo" - }, - "parent_location": [ - { - "end_col": 23, - "end_line": 129, - "input_file": { - "filename": "src/subdomain/Subdomain.cairo" - }, - "parent_location": [ - { - "end_col": 72, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/external/open_registration/18019a070f24c7de62611d09a6e18dd11270f1df7385fbc9eb3519a719dbe8bc.cairo" - }, - "parent_location": [ - { - "end_col": 23, - "end_line": 129, - "input_file": { - "filename": "src/subdomain/Subdomain.cairo" - }, - "start_col": 6, - "start_line": 129 - }, - "While constructing the external wrapper for:" - ], - "start_col": 60, - "start_line": 1 - }, - "While expanding the reference 'retdata_size' in:" - ], - "start_col": 6, - "start_line": 129 - }, - "While constructing the external wrapper for:" - ], - "start_col": 20, - "start_line": 4 - } - }, - "829": { - "accessible_scopes": [ - "__main__", - "__main__", - "__wrappers__", - "__wrappers__.open_registration" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 16, - "end_line": 3, - "input_file": { - "filename": "autogen/starknet/external/open_registration/8f83d060e7e088c358526f8859eb82973ba2c094c7d9223df6230b744dfa211c.cairo" - }, - "parent_location": [ - { - "end_col": 23, - "end_line": 129, - "input_file": { - "filename": "src/subdomain/Subdomain.cairo" - }, - "parent_location": [ - { - "end_col": 80, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/external/open_registration/18019a070f24c7de62611d09a6e18dd11270f1df7385fbc9eb3519a719dbe8bc.cairo" - }, - "parent_location": [ - { - "end_col": 23, - "end_line": 129, - "input_file": { - "filename": "src/subdomain/Subdomain.cairo" - }, - "start_col": 6, - "start_line": 129 - }, - "While constructing the external wrapper for:" - ], - "start_col": 73, - "start_line": 1 - }, - "While expanding the reference 'retdata' in:" - ], - "start_col": 6, - "start_line": 129 - }, - "While constructing the external wrapper for:" - ], - "start_col": 9, - "start_line": 3 - } - }, - "830": { - "accessible_scopes": [ - "__main__", - "__main__", - "__wrappers__", - "__wrappers__.open_registration" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 82, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/external/open_registration/18019a070f24c7de62611d09a6e18dd11270f1df7385fbc9eb3519a719dbe8bc.cairo" - }, - "parent_location": [ - { - "end_col": 23, - "end_line": 129, - "input_file": { - "filename": "src/subdomain/Subdomain.cairo" - }, - "start_col": 6, - "start_line": 129 - }, - "While constructing the external wrapper for:" - ], - "start_col": 1, - "start_line": 1 - } - }, - "831": { - "accessible_scopes": [ - "__main__", - "__main__", - "__main__.close_registration" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 43, - "end_line": 137, - "input_file": { - "filename": "src/subdomain/Subdomain.cairo" - }, - "parent_location": [ - { - "end_col": 37, - "end_line": 168, - "input_file": { - "filename": "src/subdomain/Subdomain.cairo" - }, - "parent_location": [ - { - "end_col": 19, - "end_line": 138, - "input_file": { - "filename": "src/subdomain/Subdomain.cairo" - }, - "start_col": 5, - "start_line": 138 - }, - "While trying to retrieve the implicit argument 'syscall_ptr' in:" - ], - "start_col": 19, - "start_line": 168 - }, - "While expanding the reference 'syscall_ptr' in:" - ], - "start_col": 25, - "start_line": 137 - } - }, - "832": { - "accessible_scopes": [ - "__main__", - "__main__", - "__main__.close_registration" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 71, - "end_line": 137, - "input_file": { - "filename": "src/subdomain/Subdomain.cairo" - }, - "parent_location": [ - { - "end_col": 65, - "end_line": 168, - "input_file": { - "filename": "src/subdomain/Subdomain.cairo" - }, - "parent_location": [ - { - "end_col": 19, - "end_line": 138, - "input_file": { - "filename": "src/subdomain/Subdomain.cairo" - }, - "start_col": 5, - "start_line": 138 - }, - "While trying to retrieve the implicit argument 'pedersen_ptr' in:" - ], - "start_col": 39, - "start_line": 168 - }, - "While expanding the reference 'pedersen_ptr' in:" - ], - "start_col": 45, - "start_line": 137 - } - }, - "833": { - "accessible_scopes": [ - "__main__", - "__main__", - "__main__.close_registration" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 88, - "end_line": 137, - "input_file": { - "filename": "src/subdomain/Subdomain.cairo" - }, - "parent_location": [ - { - "end_col": 82, - "end_line": 168, - "input_file": { - "filename": "src/subdomain/Subdomain.cairo" - }, - "parent_location": [ - { - "end_col": 19, - "end_line": 138, - "input_file": { - "filename": "src/subdomain/Subdomain.cairo" - }, - "start_col": 5, - "start_line": 138 - }, - "While trying to retrieve the implicit argument 'range_check_ptr' in:" - ], - "start_col": 67, - "start_line": 168 - }, - "While expanding the reference 'range_check_ptr' in:" - ], - "start_col": 73, - "start_line": 137 - } - }, - "834": { - "accessible_scopes": [ - "__main__", - "__main__", - "__main__.close_registration" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 19, - "end_line": 138, - "input_file": { - "filename": "src/subdomain/Subdomain.cairo" - }, - "start_col": 5, - "start_line": 138 - } - }, - "836": { - "accessible_scopes": [ - "__main__", - "__main__", - "__main__.close_registration" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 34, - "end_line": 139, - "input_file": { - "filename": "src/subdomain/Subdomain.cairo" - }, - "start_col": 33, - "start_line": 139 - } - }, - "838": { - "accessible_scopes": [ - "__main__", - "__main__", - "__main__.close_registration" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 35, - "end_line": 139, - "input_file": { - "filename": "src/subdomain/Subdomain.cairo" - }, - "start_col": 5, - "start_line": 139 - } - }, - "840": { - "accessible_scopes": [ - "__main__", - "__main__", - "__main__.close_registration" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 15, - "end_line": 141, - "input_file": { - "filename": "src/subdomain/Subdomain.cairo" - }, - "start_col": 5, - "start_line": 141 - } - }, - "841": { - "accessible_scopes": [ - "__main__", - "__main__", - "__wrappers__", - "__wrappers__.close_registration" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 58, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/arg_processor/01cba52f8515996bb9d7070bde81ff39281d096d7024a558efcba6e1fd2402cf.cairo" - }, - "parent_location": [ - { - "end_col": 24, - "end_line": 137, - "input_file": { - "filename": "src/subdomain/Subdomain.cairo" - }, - "start_col": 6, - "start_line": 137 - }, - "While handling calldata of" - ], - "start_col": 1, - "start_line": 1 - } - }, - "842": { - "accessible_scopes": [ - "__main__", - "__main__", - "__wrappers__", - "__wrappers__.close_registration" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 64, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/external/close_registration/b2c52ca2d2a8fc8791a983086d8716c5eacd0c3d62934914d2286f84b98ff4cb.cairo" - }, - "parent_location": [ - { - "end_col": 43, - "end_line": 137, - "input_file": { - "filename": "src/subdomain/Subdomain.cairo" - }, - "parent_location": [ - { - "end_col": 55, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/external/close_registration/8f83d060e7e088c358526f8859eb82973ba2c094c7d9223df6230b744dfa211c.cairo" - }, - "parent_location": [ - { - "end_col": 24, - "end_line": 137, - "input_file": { - "filename": "src/subdomain/Subdomain.cairo" - }, - "start_col": 6, - "start_line": 137 - }, - "While constructing the external wrapper for:" - ], - "start_col": 44, - "start_line": 1 - }, - "While expanding the reference 'syscall_ptr' in:" - ], - "start_col": 25, - "start_line": 137 - }, - "While constructing the external wrapper for:" - ], - "start_col": 19, - "start_line": 1 - } - }, - "843": { - "accessible_scopes": [ - "__main__", - "__main__", - "__wrappers__", - "__wrappers__.close_registration" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 110, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/external/close_registration/9684a85e93c782014ca14293edea4eb2502039a5a7b6538ecd39c56faaf12529.cairo" - }, - "parent_location": [ - { - "end_col": 71, - "end_line": 137, - "input_file": { - "filename": "src/subdomain/Subdomain.cairo" - }, - "parent_location": [ - { - "end_col": 82, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/external/close_registration/8f83d060e7e088c358526f8859eb82973ba2c094c7d9223df6230b744dfa211c.cairo" - }, - "parent_location": [ - { - "end_col": 24, - "end_line": 137, - "input_file": { - "filename": "src/subdomain/Subdomain.cairo" - }, - "start_col": 6, - "start_line": 137 - }, - "While constructing the external wrapper for:" - ], - "start_col": 70, - "start_line": 1 - }, - "While expanding the reference 'pedersen_ptr' in:" - ], - "start_col": 45, - "start_line": 137 - }, - "While constructing the external wrapper for:" - ], - "start_col": 20, - "start_line": 1 - } - }, - "844": { - "accessible_scopes": [ - "__main__", - "__main__", - "__wrappers__", - "__wrappers__.close_registration" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 67, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/external/close_registration/741ea357d6336b0bed7bf0472425acd0311d543883b803388880e60a232040c7.cairo" - }, - "parent_location": [ - { - "end_col": 88, - "end_line": 137, - "input_file": { - "filename": "src/subdomain/Subdomain.cairo" - }, - "parent_location": [ - { - "end_col": 115, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/external/close_registration/8f83d060e7e088c358526f8859eb82973ba2c094c7d9223df6230b744dfa211c.cairo" - }, - "parent_location": [ - { - "end_col": 24, - "end_line": 137, - "input_file": { - "filename": "src/subdomain/Subdomain.cairo" - }, - "start_col": 6, - "start_line": 137 - }, - "While constructing the external wrapper for:" - ], - "start_col": 100, - "start_line": 1 - }, - "While expanding the reference 'range_check_ptr' in:" - ], - "start_col": 73, - "start_line": 137 - }, - "While constructing the external wrapper for:" - ], - "start_col": 23, - "start_line": 1 - } - }, - "845": { - "accessible_scopes": [ - "__main__", - "__main__", - "__wrappers__", - "__wrappers__.close_registration" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 24, - "end_line": 137, - "input_file": { - "filename": "src/subdomain/Subdomain.cairo" - }, - "start_col": 6, - "start_line": 137 - } - }, - "847": { - "accessible_scopes": [ - "__main__", - "__main__", - "__wrappers__", - "__wrappers__.close_registration" - ], - "flow_tracking_data": null, - "hints": [ - { - "location": { - "end_col": 34, - "end_line": 2, - "input_file": { - "filename": "autogen/starknet/external/close_registration/8f83d060e7e088c358526f8859eb82973ba2c094c7d9223df6230b744dfa211c.cairo" - }, - "parent_location": [ - { - "end_col": 24, - "end_line": 137, - "input_file": { - "filename": "src/subdomain/Subdomain.cairo" - }, - "start_col": 6, - "start_line": 137 - }, - "While constructing the external wrapper for:" - ], - "start_col": 1, - "start_line": 2 - }, - "n_prefix_newlines": 0 - } - ], - "inst": { - "end_col": 24, - "end_line": 3, - "input_file": { - "filename": "autogen/starknet/external/close_registration/8f83d060e7e088c358526f8859eb82973ba2c094c7d9223df6230b744dfa211c.cairo" - }, - "parent_location": [ - { - "end_col": 24, - "end_line": 137, - "input_file": { - "filename": "src/subdomain/Subdomain.cairo" - }, - "start_col": 6, - "start_line": 137 - }, - "While constructing the external wrapper for:" - ], - "start_col": 1, - "start_line": 3 - } - }, - "849": { - "accessible_scopes": [ - "__main__", - "__main__", - "__wrappers__", - "__wrappers__.close_registration" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 55, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/external/close_registration/8f83d060e7e088c358526f8859eb82973ba2c094c7d9223df6230b744dfa211c.cairo" - }, - "parent_location": [ - { - "end_col": 24, - "end_line": 137, - "input_file": { - "filename": "src/subdomain/Subdomain.cairo" - }, - "parent_location": [ - { - "end_col": 20, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/external/close_registration/18019a070f24c7de62611d09a6e18dd11270f1df7385fbc9eb3519a719dbe8bc.cairo" - }, - "parent_location": [ - { - "end_col": 24, - "end_line": 137, - "input_file": { - "filename": "src/subdomain/Subdomain.cairo" - }, - "start_col": 6, - "start_line": 137 - }, - "While constructing the external wrapper for:" - ], - "start_col": 9, - "start_line": 1 - }, - "While expanding the reference 'syscall_ptr' in:" - ], - "start_col": 6, - "start_line": 137 - }, - "While constructing the external wrapper for:" - ], - "start_col": 44, - "start_line": 1 - } - }, - "850": { - "accessible_scopes": [ - "__main__", - "__main__", - "__wrappers__", - "__wrappers__.close_registration" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 82, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/external/close_registration/8f83d060e7e088c358526f8859eb82973ba2c094c7d9223df6230b744dfa211c.cairo" - }, - "parent_location": [ - { - "end_col": 24, - "end_line": 137, - "input_file": { - "filename": "src/subdomain/Subdomain.cairo" - }, - "parent_location": [ - { - "end_col": 33, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/external/close_registration/18019a070f24c7de62611d09a6e18dd11270f1df7385fbc9eb3519a719dbe8bc.cairo" - }, - "parent_location": [ - { - "end_col": 24, - "end_line": 137, - "input_file": { - "filename": "src/subdomain/Subdomain.cairo" - }, - "start_col": 6, - "start_line": 137 - }, - "While constructing the external wrapper for:" - ], - "start_col": 21, - "start_line": 1 - }, - "While expanding the reference 'pedersen_ptr' in:" - ], - "start_col": 6, - "start_line": 137 - }, - "While constructing the external wrapper for:" - ], - "start_col": 70, - "start_line": 1 - } - }, - "851": { - "accessible_scopes": [ - "__main__", - "__main__", - "__wrappers__", - "__wrappers__.close_registration" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 115, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/external/close_registration/8f83d060e7e088c358526f8859eb82973ba2c094c7d9223df6230b744dfa211c.cairo" - }, - "parent_location": [ - { - "end_col": 24, - "end_line": 137, - "input_file": { - "filename": "src/subdomain/Subdomain.cairo" - }, - "parent_location": [ - { - "end_col": 49, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/external/close_registration/18019a070f24c7de62611d09a6e18dd11270f1df7385fbc9eb3519a719dbe8bc.cairo" - }, - "parent_location": [ - { - "end_col": 24, - "end_line": 137, - "input_file": { - "filename": "src/subdomain/Subdomain.cairo" - }, - "start_col": 6, - "start_line": 137 - }, - "While constructing the external wrapper for:" - ], - "start_col": 34, - "start_line": 1 - }, - "While expanding the reference 'range_check_ptr' in:" - ], - "start_col": 6, - "start_line": 137 - }, - "While constructing the external wrapper for:" - ], - "start_col": 100, - "start_line": 1 - } - }, - "852": { - "accessible_scopes": [ - "__main__", - "__main__", - "__wrappers__", - "__wrappers__.close_registration" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 61, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/external/close_registration/c6c4d3a7a58c6b37d5fdd51b25e5ab9f3e75174b411ab503db3ce03636ed6e2a.cairo" - }, - "parent_location": [ - { - "end_col": 24, - "end_line": 137, - "input_file": { - "filename": "src/subdomain/Subdomain.cairo" - }, - "parent_location": [ - { - "end_col": 59, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/external/close_registration/18019a070f24c7de62611d09a6e18dd11270f1df7385fbc9eb3519a719dbe8bc.cairo" - }, - "parent_location": [ - { - "end_col": 24, - "end_line": 137, - "input_file": { - "filename": "src/subdomain/Subdomain.cairo" - }, - "start_col": 6, - "start_line": 137 - }, - "While constructing the external wrapper for:" - ], - "start_col": 50, - "start_line": 1 - }, - "While expanding the reference 'ecdsa_ptr' in:" - ], - "start_col": 6, - "start_line": 137 - }, - "While constructing the external wrapper for:" - ], - "start_col": 17, - "start_line": 1 - } - }, - "853": { - "accessible_scopes": [ - "__main__", - "__main__", - "__wrappers__", - "__wrappers__.close_registration" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 21, - "end_line": 4, - "input_file": { - "filename": "autogen/starknet/external/close_registration/8f83d060e7e088c358526f8859eb82973ba2c094c7d9223df6230b744dfa211c.cairo" - }, - "parent_location": [ - { - "end_col": 24, - "end_line": 137, - "input_file": { - "filename": "src/subdomain/Subdomain.cairo" - }, - "parent_location": [ - { - "end_col": 72, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/external/close_registration/18019a070f24c7de62611d09a6e18dd11270f1df7385fbc9eb3519a719dbe8bc.cairo" - }, - "parent_location": [ - { - "end_col": 24, - "end_line": 137, - "input_file": { - "filename": "src/subdomain/Subdomain.cairo" - }, - "start_col": 6, - "start_line": 137 - }, - "While constructing the external wrapper for:" - ], - "start_col": 60, - "start_line": 1 - }, - "While expanding the reference 'retdata_size' in:" - ], - "start_col": 6, - "start_line": 137 - }, - "While constructing the external wrapper for:" - ], - "start_col": 20, - "start_line": 4 - } - }, - "855": { - "accessible_scopes": [ - "__main__", - "__main__", - "__wrappers__", - "__wrappers__.close_registration" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 16, - "end_line": 3, - "input_file": { - "filename": "autogen/starknet/external/close_registration/8f83d060e7e088c358526f8859eb82973ba2c094c7d9223df6230b744dfa211c.cairo" - }, - "parent_location": [ - { - "end_col": 24, - "end_line": 137, - "input_file": { - "filename": "src/subdomain/Subdomain.cairo" - }, - "parent_location": [ - { - "end_col": 80, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/external/close_registration/18019a070f24c7de62611d09a6e18dd11270f1df7385fbc9eb3519a719dbe8bc.cairo" - }, - "parent_location": [ - { - "end_col": 24, - "end_line": 137, - "input_file": { - "filename": "src/subdomain/Subdomain.cairo" - }, - "start_col": 6, - "start_line": 137 - }, - "While constructing the external wrapper for:" - ], - "start_col": 73, - "start_line": 1 - }, - "While expanding the reference 'retdata' in:" - ], - "start_col": 6, - "start_line": 137 - }, - "While constructing the external wrapper for:" - ], - "start_col": 9, - "start_line": 3 - } - }, - "856": { - "accessible_scopes": [ - "__main__", - "__main__", - "__wrappers__", - "__wrappers__.close_registration" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 82, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/external/close_registration/18019a070f24c7de62611d09a6e18dd11270f1df7385fbc9eb3519a719dbe8bc.cairo" - }, - "parent_location": [ - { - "end_col": 24, - "end_line": 137, - "input_file": { - "filename": "src/subdomain/Subdomain.cairo" - }, - "start_col": 6, - "start_line": 137 - }, - "While constructing the external wrapper for:" - ], - "start_col": 1, - "start_line": 1 - } - }, - "857": { - "accessible_scopes": [ - "__main__", - "__main__", - "__main__.is_registration_open" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 45, - "end_line": 149, - "input_file": { - "filename": "src/subdomain/Subdomain.cairo" - }, - "parent_location": [ - { - "end_col": 33, - "end_line": 13, - "input_file": { - "filename": "autogen/starknet/storage_var/_is_registration_open/decl.cairo" - }, - "parent_location": [ - { - "end_col": 62, - "end_line": 152, - "input_file": { - "filename": "src/subdomain/Subdomain.cairo" - }, - "start_col": 34, - "start_line": 152 - }, - "While trying to retrieve the implicit argument 'syscall_ptr' in:" - ], - "start_col": 15, - "start_line": 13 - }, - "While expanding the reference 'syscall_ptr' in:" - ], - "start_col": 27, - "start_line": 149 - } - }, - "858": { - "accessible_scopes": [ - "__main__", - "__main__", - "__main__.is_registration_open" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 73, - "end_line": 149, - "input_file": { - "filename": "src/subdomain/Subdomain.cairo" - }, - "parent_location": [ - { - "end_col": 61, - "end_line": 13, - "input_file": { - "filename": "autogen/starknet/storage_var/_is_registration_open/decl.cairo" - }, - "parent_location": [ - { - "end_col": 62, - "end_line": 152, - "input_file": { - "filename": "src/subdomain/Subdomain.cairo" - }, - "start_col": 34, - "start_line": 152 - }, - "While trying to retrieve the implicit argument 'pedersen_ptr' in:" - ], - "start_col": 35, - "start_line": 13 - }, - "While expanding the reference 'pedersen_ptr' in:" - ], - "start_col": 47, - "start_line": 149 - } - }, - "859": { - "accessible_scopes": [ - "__main__", - "__main__", - "__main__.is_registration_open" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 90, - "end_line": 149, - "input_file": { - "filename": "src/subdomain/Subdomain.cairo" - }, - "parent_location": [ - { - "end_col": 78, - "end_line": 13, - "input_file": { - "filename": "autogen/starknet/storage_var/_is_registration_open/decl.cairo" - }, - "parent_location": [ - { - "end_col": 62, - "end_line": 152, - "input_file": { - "filename": "src/subdomain/Subdomain.cairo" - }, - "start_col": 34, - "start_line": 152 - }, - "While trying to retrieve the implicit argument 'range_check_ptr' in:" - ], - "start_col": 63, - "start_line": 13 - }, - "While expanding the reference 'range_check_ptr' in:" - ], - "start_col": 75, - "start_line": 149 - } - }, - "860": { - "accessible_scopes": [ - "__main__", - "__main__", - "__main__.is_registration_open" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 62, - "end_line": 152, - "input_file": { - "filename": "src/subdomain/Subdomain.cairo" - }, - "start_col": 34, - "start_line": 152 - } - }, - "862": { - "accessible_scopes": [ - "__main__", - "__main__", - "__main__.is_registration_open" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 36, - "end_line": 154, - "input_file": { - "filename": "src/subdomain/Subdomain.cairo" - }, - "start_col": 5, - "start_line": 154 - } - }, - "863": { - "accessible_scopes": [ - "__main__", - "__main__", - "__wrappers__", - "__wrappers__.is_registration_open_encode_return" - ], - "flow_tracking_data": null, - "hints": [ - { - "location": { - "end_col": 38, - "end_line": 3, - "input_file": { - "filename": "autogen/starknet/external/return/is_registration_open/6c2ce11d920e19a1f41c21052bc809d7dc14e1a459bb56a08c1cefa9bfaaa2d7.cairo" - }, - "parent_location": [ - { - "end_col": 26, - "end_line": 149, - "input_file": { - "filename": "src/subdomain/Subdomain.cairo" - }, - "start_col": 6, - "start_line": 149 - }, - "While handling return value of" - ], - "start_col": 5, - "start_line": 3 - }, - "n_prefix_newlines": 0 - } - ], - "inst": { - "end_col": 18, - "end_line": 4, - "input_file": { - "filename": "autogen/starknet/external/return/is_registration_open/6c2ce11d920e19a1f41c21052bc809d7dc14e1a459bb56a08c1cefa9bfaaa2d7.cairo" - }, - "parent_location": [ - { - "end_col": 26, - "end_line": 149, - "input_file": { - "filename": "src/subdomain/Subdomain.cairo" - }, - "start_col": 6, - "start_line": 149 - }, - "While handling return value of" - ], - "start_col": 5, - "start_line": 4 - } - }, - "865": { - "accessible_scopes": [ - "__main__", - "__main__", - "__wrappers__", - "__wrappers__.is_registration_open_encode_return" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 62, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/arg_processor/e7b3b829580644dc52a381033e280d055296419573a8f14b3b38653364d1eab5.cairo" - }, - "parent_location": [ - { - "end_col": 31, - "end_line": 150, - "input_file": { - "filename": "src/subdomain/Subdomain.cairo" - }, - "start_col": 5, - "start_line": 150 - }, - "While handling return value 'is_registration_open'" - ], - "start_col": 1, - "start_line": 1 - } - }, - "866": { - "accessible_scopes": [ - "__main__", - "__main__", - "__wrappers__", - "__wrappers__.is_registration_open_encode_return" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 48, - "end_line": 2, - "input_file": { - "filename": "autogen/starknet/arg_processor/e7b3b829580644dc52a381033e280d055296419573a8f14b3b38653364d1eab5.cairo" - }, - "parent_location": [ - { - "end_col": 31, - "end_line": 150, - "input_file": { - "filename": "src/subdomain/Subdomain.cairo" - }, - "parent_location": [ - { - "end_col": 36, - "end_line": 11, - "input_file": { - "filename": "autogen/starknet/external/return/is_registration_open/6c2ce11d920e19a1f41c21052bc809d7dc14e1a459bb56a08c1cefa9bfaaa2d7.cairo" - }, - "parent_location": [ - { - "end_col": 26, - "end_line": 149, - "input_file": { - "filename": "src/subdomain/Subdomain.cairo" - }, - "start_col": 6, - "start_line": 149 - }, - "While handling return value of" - ], - "start_col": 18, - "start_line": 11 - }, - "While expanding the reference '__return_value_ptr' in:" - ], - "start_col": 5, - "start_line": 150 - }, - "While handling return value 'is_registration_open'" - ], - "start_col": 26, - "start_line": 2 - } - }, - "868": { - "accessible_scopes": [ - "__main__", - "__main__", - "__wrappers__", - "__wrappers__.is_registration_open_encode_return" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 97, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/external/return/is_registration_open/6c2ce11d920e19a1f41c21052bc809d7dc14e1a459bb56a08c1cefa9bfaaa2d7.cairo" - }, - "parent_location": [ - { - "end_col": 26, - "end_line": 149, - "input_file": { - "filename": "src/subdomain/Subdomain.cairo" - }, - "parent_location": [ - { - "end_col": 40, - "end_line": 10, - "input_file": { - "filename": "autogen/starknet/external/return/is_registration_open/6c2ce11d920e19a1f41c21052bc809d7dc14e1a459bb56a08c1cefa9bfaaa2d7.cairo" - }, - "parent_location": [ - { - "end_col": 26, - "end_line": 149, - "input_file": { - "filename": "src/subdomain/Subdomain.cairo" - }, - "start_col": 6, - "start_line": 149 - }, - "While handling return value of" - ], - "start_col": 25, - "start_line": 10 - }, - "While expanding the reference 'range_check_ptr' in:" - ], - "start_col": 6, - "start_line": 149 - }, - "While handling return value of" - ], - "start_col": 82, - "start_line": 1 - } - }, - "869": { - "accessible_scopes": [ - "__main__", - "__main__", - "__wrappers__", - "__wrappers__.is_registration_open_encode_return" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 63, - "end_line": 11, - "input_file": { - "filename": "autogen/starknet/external/return/is_registration_open/6c2ce11d920e19a1f41c21052bc809d7dc14e1a459bb56a08c1cefa9bfaaa2d7.cairo" - }, - "parent_location": [ - { - "end_col": 26, - "end_line": 149, - "input_file": { - "filename": "src/subdomain/Subdomain.cairo" - }, - "start_col": 6, - "start_line": 149 - }, - "While handling return value of" - ], - "start_col": 18, - "start_line": 11 - } - }, - "870": { - "accessible_scopes": [ - "__main__", - "__main__", - "__wrappers__", - "__wrappers__.is_registration_open_encode_return" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 35, - "end_line": 5, - "input_file": { - "filename": "autogen/starknet/external/return/is_registration_open/6c2ce11d920e19a1f41c21052bc809d7dc14e1a459bb56a08c1cefa9bfaaa2d7.cairo" - }, - "parent_location": [ - { - "end_col": 26, - "end_line": 149, - "input_file": { - "filename": "src/subdomain/Subdomain.cairo" - }, - "parent_location": [ - { - "end_col": 38, - "end_line": 12, - "input_file": { - "filename": "autogen/starknet/external/return/is_registration_open/6c2ce11d920e19a1f41c21052bc809d7dc14e1a459bb56a08c1cefa9bfaaa2d7.cairo" - }, - "parent_location": [ - { - "end_col": 26, - "end_line": 149, - "input_file": { - "filename": "src/subdomain/Subdomain.cairo" - }, - "start_col": 6, - "start_line": 149 - }, - "While handling return value of" - ], - "start_col": 14, - "start_line": 12 - }, - "While expanding the reference '__return_value_ptr_start' in:" - ], - "start_col": 6, - "start_line": 149 - }, - "While handling return value of" - ], - "start_col": 11, - "start_line": 5 - } - }, - "871": { - "accessible_scopes": [ - "__main__", - "__main__", - "__wrappers__", - "__wrappers__.is_registration_open_encode_return" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 40, - "end_line": 12, - "input_file": { - "filename": "autogen/starknet/external/return/is_registration_open/6c2ce11d920e19a1f41c21052bc809d7dc14e1a459bb56a08c1cefa9bfaaa2d7.cairo" - }, - "parent_location": [ - { - "end_col": 26, - "end_line": 149, - "input_file": { - "filename": "src/subdomain/Subdomain.cairo" - }, - "start_col": 6, - "start_line": 149 - }, - "While handling return value of" - ], - "start_col": 5, - "start_line": 9 - } - }, - "872": { - "accessible_scopes": [ - "__main__", - "__main__", - "__wrappers__", - "__wrappers__.is_registration_open" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 58, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/arg_processor/01cba52f8515996bb9d7070bde81ff39281d096d7024a558efcba6e1fd2402cf.cairo" - }, - "parent_location": [ - { - "end_col": 26, - "end_line": 149, - "input_file": { - "filename": "src/subdomain/Subdomain.cairo" - }, - "start_col": 6, - "start_line": 149 - }, - "While handling calldata of" - ], - "start_col": 1, - "start_line": 1 - } - }, - "873": { - "accessible_scopes": [ - "__main__", - "__main__", - "__wrappers__", - "__wrappers__.is_registration_open" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 64, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/external/is_registration_open/b2c52ca2d2a8fc8791a983086d8716c5eacd0c3d62934914d2286f84b98ff4cb.cairo" - }, - "parent_location": [ - { - "end_col": 45, - "end_line": 149, - "input_file": { - "filename": "src/subdomain/Subdomain.cairo" - }, - "parent_location": [ - { - "end_col": 55, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/external/is_registration_open/50f43d1ea3cf09b4239367de266e40e917c2d6ad2beaddda2ea68d5342f004a2.cairo" - }, - "parent_location": [ - { - "end_col": 26, - "end_line": 149, - "input_file": { - "filename": "src/subdomain/Subdomain.cairo" - }, - "start_col": 6, - "start_line": 149 - }, - "While constructing the external wrapper for:" - ], - "start_col": 44, - "start_line": 1 - }, - "While expanding the reference 'syscall_ptr' in:" - ], - "start_col": 27, - "start_line": 149 - }, - "While constructing the external wrapper for:" - ], - "start_col": 19, - "start_line": 1 - } - }, - "874": { - "accessible_scopes": [ - "__main__", - "__main__", - "__wrappers__", - "__wrappers__.is_registration_open" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 110, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/external/is_registration_open/9684a85e93c782014ca14293edea4eb2502039a5a7b6538ecd39c56faaf12529.cairo" - }, - "parent_location": [ - { - "end_col": 73, - "end_line": 149, - "input_file": { - "filename": "src/subdomain/Subdomain.cairo" - }, - "parent_location": [ - { - "end_col": 82, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/external/is_registration_open/50f43d1ea3cf09b4239367de266e40e917c2d6ad2beaddda2ea68d5342f004a2.cairo" - }, - "parent_location": [ - { - "end_col": 26, - "end_line": 149, - "input_file": { - "filename": "src/subdomain/Subdomain.cairo" - }, - "start_col": 6, - "start_line": 149 - }, - "While constructing the external wrapper for:" - ], - "start_col": 70, - "start_line": 1 - }, - "While expanding the reference 'pedersen_ptr' in:" - ], - "start_col": 47, - "start_line": 149 - }, - "While constructing the external wrapper for:" - ], - "start_col": 20, - "start_line": 1 - } - }, - "875": { - "accessible_scopes": [ - "__main__", - "__main__", - "__wrappers__", - "__wrappers__.is_registration_open" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 67, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/external/is_registration_open/741ea357d6336b0bed7bf0472425acd0311d543883b803388880e60a232040c7.cairo" - }, - "parent_location": [ - { - "end_col": 90, - "end_line": 149, - "input_file": { - "filename": "src/subdomain/Subdomain.cairo" - }, - "parent_location": [ - { - "end_col": 115, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/external/is_registration_open/50f43d1ea3cf09b4239367de266e40e917c2d6ad2beaddda2ea68d5342f004a2.cairo" - }, - "parent_location": [ - { - "end_col": 26, - "end_line": 149, - "input_file": { - "filename": "src/subdomain/Subdomain.cairo" - }, - "start_col": 6, - "start_line": 149 - }, - "While constructing the external wrapper for:" - ], - "start_col": 100, - "start_line": 1 - }, - "While expanding the reference 'range_check_ptr' in:" - ], - "start_col": 75, - "start_line": 149 - }, - "While constructing the external wrapper for:" - ], - "start_col": 23, - "start_line": 1 - } - }, - "876": { - "accessible_scopes": [ - "__main__", - "__main__", - "__wrappers__", - "__wrappers__.is_registration_open" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 26, - "end_line": 149, - "input_file": { - "filename": "src/subdomain/Subdomain.cairo" - }, - "start_col": 6, - "start_line": 149 - } - }, - "878": { - "accessible_scopes": [ - "__main__", - "__main__", - "__wrappers__", - "__wrappers__.is_registration_open" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 115, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/external/is_registration_open/50f43d1ea3cf09b4239367de266e40e917c2d6ad2beaddda2ea68d5342f004a2.cairo" - }, - "parent_location": [ - { - "end_col": 26, - "end_line": 149, - "input_file": { - "filename": "src/subdomain/Subdomain.cairo" - }, - "parent_location": [ - { - "end_col": 109, - "end_line": 2, - "input_file": { - "filename": "autogen/starknet/external/is_registration_open/50f43d1ea3cf09b4239367de266e40e917c2d6ad2beaddda2ea68d5342f004a2.cairo" - }, - "parent_location": [ - { - "end_col": 26, - "end_line": 149, - "input_file": { - "filename": "src/subdomain/Subdomain.cairo" - }, - "start_col": 6, - "start_line": 149 - }, - "While constructing the external wrapper for:" - ], - "start_col": 94, - "start_line": 2 - }, - "While expanding the reference 'range_check_ptr' in:" - ], - "start_col": 6, - "start_line": 149 - }, - "While constructing the external wrapper for:" - ], - "start_col": 100, - "start_line": 1 - } - }, - "879": { - "accessible_scopes": [ - "__main__", - "__main__", - "__wrappers__", - "__wrappers__.is_registration_open" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 110, - "end_line": 2, - "input_file": { - "filename": "autogen/starknet/external/is_registration_open/50f43d1ea3cf09b4239367de266e40e917c2d6ad2beaddda2ea68d5342f004a2.cairo" - }, - "parent_location": [ - { - "end_col": 26, - "end_line": 149, - "input_file": { - "filename": "src/subdomain/Subdomain.cairo" - }, - "start_col": 6, - "start_line": 149 - }, - "While constructing the external wrapper for:" - ], - "start_col": 48, - "start_line": 2 - } - }, - "881": { - "accessible_scopes": [ - "__main__", - "__main__", - "__wrappers__", - "__wrappers__.is_registration_open" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 55, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/external/is_registration_open/50f43d1ea3cf09b4239367de266e40e917c2d6ad2beaddda2ea68d5342f004a2.cairo" - }, - "parent_location": [ - { - "end_col": 26, - "end_line": 149, - "input_file": { - "filename": "src/subdomain/Subdomain.cairo" - }, - "parent_location": [ - { - "end_col": 20, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/external/is_registration_open/18019a070f24c7de62611d09a6e18dd11270f1df7385fbc9eb3519a719dbe8bc.cairo" - }, - "parent_location": [ - { - "end_col": 26, - "end_line": 149, - "input_file": { - "filename": "src/subdomain/Subdomain.cairo" - }, - "start_col": 6, - "start_line": 149 - }, - "While constructing the external wrapper for:" - ], - "start_col": 9, - "start_line": 1 - }, - "While expanding the reference 'syscall_ptr' in:" - ], - "start_col": 6, - "start_line": 149 - }, - "While constructing the external wrapper for:" - ], - "start_col": 44, - "start_line": 1 - } - }, - "882": { - "accessible_scopes": [ - "__main__", - "__main__", - "__wrappers__", - "__wrappers__.is_registration_open" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 82, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/external/is_registration_open/50f43d1ea3cf09b4239367de266e40e917c2d6ad2beaddda2ea68d5342f004a2.cairo" - }, - "parent_location": [ - { - "end_col": 26, - "end_line": 149, - "input_file": { - "filename": "src/subdomain/Subdomain.cairo" - }, - "parent_location": [ - { - "end_col": 33, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/external/is_registration_open/18019a070f24c7de62611d09a6e18dd11270f1df7385fbc9eb3519a719dbe8bc.cairo" - }, - "parent_location": [ - { - "end_col": 26, - "end_line": 149, - "input_file": { - "filename": "src/subdomain/Subdomain.cairo" - }, - "start_col": 6, - "start_line": 149 - }, - "While constructing the external wrapper for:" - ], - "start_col": 21, - "start_line": 1 - }, - "While expanding the reference 'pedersen_ptr' in:" - ], - "start_col": 6, - "start_line": 149 - }, - "While constructing the external wrapper for:" - ], - "start_col": 70, - "start_line": 1 - } - }, - "883": { - "accessible_scopes": [ - "__main__", - "__main__", - "__wrappers__", - "__wrappers__.is_registration_open" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 21, - "end_line": 2, - "input_file": { - "filename": "autogen/starknet/external/is_registration_open/50f43d1ea3cf09b4239367de266e40e917c2d6ad2beaddda2ea68d5342f004a2.cairo" - }, - "parent_location": [ - { - "end_col": 26, - "end_line": 149, - "input_file": { - "filename": "src/subdomain/Subdomain.cairo" - }, - "parent_location": [ - { - "end_col": 49, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/external/is_registration_open/18019a070f24c7de62611d09a6e18dd11270f1df7385fbc9eb3519a719dbe8bc.cairo" - }, - "parent_location": [ - { - "end_col": 26, - "end_line": 149, - "input_file": { - "filename": "src/subdomain/Subdomain.cairo" - }, - "start_col": 6, - "start_line": 149 - }, - "While constructing the external wrapper for:" - ], - "start_col": 34, - "start_line": 1 - }, - "While expanding the reference 'range_check_ptr' in:" - ], - "start_col": 6, - "start_line": 149 - }, - "While constructing the external wrapper for:" - ], - "start_col": 6, - "start_line": 2 - } - }, - "884": { - "accessible_scopes": [ - "__main__", - "__main__", - "__wrappers__", - "__wrappers__.is_registration_open" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 61, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/external/is_registration_open/c6c4d3a7a58c6b37d5fdd51b25e5ab9f3e75174b411ab503db3ce03636ed6e2a.cairo" - }, - "parent_location": [ - { - "end_col": 26, - "end_line": 149, - "input_file": { - "filename": "src/subdomain/Subdomain.cairo" - }, - "parent_location": [ - { - "end_col": 59, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/external/is_registration_open/18019a070f24c7de62611d09a6e18dd11270f1df7385fbc9eb3519a719dbe8bc.cairo" - }, - "parent_location": [ - { - "end_col": 26, - "end_line": 149, - "input_file": { - "filename": "src/subdomain/Subdomain.cairo" - }, - "start_col": 6, - "start_line": 149 - }, - "While constructing the external wrapper for:" - ], - "start_col": 50, - "start_line": 1 - }, - "While expanding the reference 'ecdsa_ptr' in:" - ], - "start_col": 6, - "start_line": 149 - }, - "While constructing the external wrapper for:" - ], - "start_col": 17, - "start_line": 1 - } - }, - "885": { - "accessible_scopes": [ - "__main__", - "__main__", - "__wrappers__", - "__wrappers__.is_registration_open" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 35, - "end_line": 2, - "input_file": { - "filename": "autogen/starknet/external/is_registration_open/50f43d1ea3cf09b4239367de266e40e917c2d6ad2beaddda2ea68d5342f004a2.cairo" - }, - "parent_location": [ - { - "end_col": 26, - "end_line": 149, - "input_file": { - "filename": "src/subdomain/Subdomain.cairo" - }, - "parent_location": [ - { - "end_col": 72, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/external/is_registration_open/18019a070f24c7de62611d09a6e18dd11270f1df7385fbc9eb3519a719dbe8bc.cairo" - }, - "parent_location": [ - { - "end_col": 26, - "end_line": 149, - "input_file": { - "filename": "src/subdomain/Subdomain.cairo" - }, - "start_col": 6, - "start_line": 149 - }, - "While constructing the external wrapper for:" - ], - "start_col": 60, - "start_line": 1 - }, - "While expanding the reference 'retdata_size' in:" - ], - "start_col": 6, - "start_line": 149 - }, - "While constructing the external wrapper for:" - ], - "start_col": 23, - "start_line": 2 - } - }, - "886": { - "accessible_scopes": [ - "__main__", - "__main__", - "__wrappers__", - "__wrappers__.is_registration_open" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 44, - "end_line": 2, - "input_file": { - "filename": "autogen/starknet/external/is_registration_open/50f43d1ea3cf09b4239367de266e40e917c2d6ad2beaddda2ea68d5342f004a2.cairo" - }, - "parent_location": [ - { - "end_col": 26, - "end_line": 149, - "input_file": { - "filename": "src/subdomain/Subdomain.cairo" - }, - "parent_location": [ - { - "end_col": 80, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/external/is_registration_open/18019a070f24c7de62611d09a6e18dd11270f1df7385fbc9eb3519a719dbe8bc.cairo" - }, - "parent_location": [ - { - "end_col": 26, - "end_line": 149, - "input_file": { - "filename": "src/subdomain/Subdomain.cairo" - }, - "start_col": 6, - "start_line": 149 - }, - "While constructing the external wrapper for:" - ], - "start_col": 73, - "start_line": 1 - }, - "While expanding the reference 'retdata' in:" - ], - "start_col": 6, - "start_line": 149 - }, - "While constructing the external wrapper for:" - ], - "start_col": 37, - "start_line": 2 - } - }, - "887": { - "accessible_scopes": [ - "__main__", - "__main__", - "__wrappers__", - "__wrappers__.is_registration_open" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 82, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/external/is_registration_open/18019a070f24c7de62611d09a6e18dd11270f1df7385fbc9eb3519a719dbe8bc.cairo" - }, - "parent_location": [ - { - "end_col": 26, - "end_line": 149, - "input_file": { - "filename": "src/subdomain/Subdomain.cairo" - }, - "start_col": 6, - "start_line": 149 - }, - "While constructing the external wrapper for:" - ], - "start_col": 1, - "start_line": 1 - } - }, - "888": { - "accessible_scopes": [ - "__main__", - "__main__", - "__main__.basic_encoding" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 84, - "end_line": 158, - "input_file": { - "filename": "src/subdomain/Subdomain.cairo" - }, - "parent_location": [ - { - "end_col": 36, - "end_line": 154, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/math.cairo" - }, - "parent_location": [ - { - "end_col": 43, - "end_line": 161, - "input_file": { - "filename": "src/subdomain/Subdomain.cairo" - }, - "start_col": 5, - "start_line": 161 - }, - "While trying to retrieve the implicit argument 'range_check_ptr' in:" - ], - "start_col": 21, - "start_line": 154 - }, - "While expanding the reference 'range_check_ptr' in:" - ], - "start_col": 69, - "start_line": 158 - } - }, - "889": { - "accessible_scopes": [ - "__main__", - "__main__", - "__main__.basic_encoding" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 23, - "end_line": 159, - "input_file": { - "filename": "src/subdomain/Subdomain.cairo" - }, - "parent_location": [ - { - "end_col": 32, - "end_line": 161, - "input_file": { - "filename": "src/subdomain/Subdomain.cairo" - }, - "start_col": 20, - "start_line": 161 - }, - "While expanding the reference 'domain_ascii' in:" - ], - "start_col": 5, - "start_line": 159 - } - }, - "890": { - "accessible_scopes": [ - "__main__", - "__main__", - "__main__.basic_encoding" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 42, - "end_line": 161, - "input_file": { - "filename": "src/subdomain/Subdomain.cairo" - }, - "start_col": 34, - "start_line": 161 - } - }, - "892": { - "accessible_scopes": [ - "__main__", - "__main__", - "__main__.basic_encoding" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 43, - "end_line": 161, - "input_file": { - "filename": "src/subdomain/Subdomain.cairo" - }, - "start_col": 5, - "start_line": 161 - } - }, - "894": { - "accessible_scopes": [ - "__main__", - "__main__", - "__main__.basic_encoding" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 39, - "end_line": 158, - "input_file": { - "filename": "src/subdomain/Subdomain.cairo" - }, - "parent_location": [ - { - "end_col": 40, - "end_line": 191, - "input_file": { - "filename": "src/subdomain/Subdomain.cairo" - }, - "parent_location": [ - { - "end_col": 44, - "end_line": 162, - "input_file": { - "filename": "src/subdomain/Subdomain.cairo" - }, - "start_col": 12, - "start_line": 162 - }, - "While trying to retrieve the implicit argument 'syscall_ptr' in:" - ], - "start_col": 22, - "start_line": 191 - }, - "While expanding the reference 'syscall_ptr' in:" - ], - "start_col": 21, - "start_line": 158 - } - }, - "895": { - "accessible_scopes": [ - "__main__", - "__main__", - "__main__.basic_encoding" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 67, - "end_line": 158, - "input_file": { - "filename": "src/subdomain/Subdomain.cairo" - }, - "parent_location": [ - { - "end_col": 68, - "end_line": 191, - "input_file": { - "filename": "src/subdomain/Subdomain.cairo" - }, - "parent_location": [ - { - "end_col": 44, - "end_line": 162, - "input_file": { - "filename": "src/subdomain/Subdomain.cairo" - }, - "start_col": 12, - "start_line": 162 - }, - "While trying to retrieve the implicit argument 'pedersen_ptr' in:" - ], - "start_col": 42, - "start_line": 191 - }, - "While expanding the reference 'pedersen_ptr' in:" - ], - "start_col": 41, - "start_line": 158 - } - }, - "896": { - "accessible_scopes": [ - "__main__", - "__main__", - "__main__.basic_encoding" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 36, - "end_line": 154, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/math.cairo" - }, - "parent_location": [ - { - "end_col": 43, - "end_line": 161, - "input_file": { - "filename": "src/subdomain/Subdomain.cairo" - }, - "parent_location": [ - { - "end_col": 85, - "end_line": 191, - "input_file": { - "filename": "src/subdomain/Subdomain.cairo" - }, - "parent_location": [ - { - "end_col": 44, - "end_line": 162, - "input_file": { - "filename": "src/subdomain/Subdomain.cairo" - }, - "start_col": 12, - "start_line": 162 - }, - "While trying to retrieve the implicit argument 'range_check_ptr' in:" - ], - "start_col": 70, - "start_line": 191 - }, - "While expanding the reference 'range_check_ptr' in:" - ], - "start_col": 5, - "start_line": 161 - }, - "While trying to update the implicit return value 'range_check_ptr' in:" - ], - "start_col": 21, - "start_line": 154 - } - }, - "897": { - "accessible_scopes": [ - "__main__", - "__main__", - "__main__.basic_encoding" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 23, - "end_line": 159, - "input_file": { - "filename": "src/subdomain/Subdomain.cairo" - }, - "parent_location": [ - { - "end_col": 40, - "end_line": 162, - "input_file": { - "filename": "src/subdomain/Subdomain.cairo" - }, - "start_col": 28, - "start_line": 162 - }, - "While expanding the reference 'domain_ascii' in:" - ], - "start_col": 5, - "start_line": 159 - } - }, - "898": { - "accessible_scopes": [ - "__main__", - "__main__", - "__main__.basic_encoding" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 43, - "end_line": 162, - "input_file": { - "filename": "src/subdomain/Subdomain.cairo" - }, - "start_col": 42, - "start_line": 162 - } - }, - "900": { - "accessible_scopes": [ - "__main__", - "__main__", - "__main__.basic_encoding" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 44, - "end_line": 162, - "input_file": { - "filename": "src/subdomain/Subdomain.cairo" - }, - "start_col": 12, - "start_line": 162 - } - }, - "902": { - "accessible_scopes": [ - "__main__", - "__main__", - "__main__.basic_encoding" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 45, - "end_line": 162, - "input_file": { - "filename": "src/subdomain/Subdomain.cairo" - }, - "start_col": 5, - "start_line": 162 - } - }, - "903": { - "accessible_scopes": [ - "__main__", - "__main__", - "__wrappers__", - "__wrappers__.basic_encoding_encode_return" - ], - "flow_tracking_data": null, - "hints": [ - { - "location": { - "end_col": 38, - "end_line": 3, - "input_file": { - "filename": "autogen/starknet/external/return/basic_encoding/dccbd32b47a884cb56e7cc4918eb25f2cb15fb4da50e06c86e179504ebfe06f1.cairo" - }, - "parent_location": [ - { - "end_col": 20, - "end_line": 158, - "input_file": { - "filename": "src/subdomain/Subdomain.cairo" - }, - "start_col": 6, - "start_line": 158 - }, - "While handling return value of" - ], - "start_col": 5, - "start_line": 3 - }, - "n_prefix_newlines": 0 - } - ], - "inst": { - "end_col": 18, - "end_line": 4, - "input_file": { - "filename": "autogen/starknet/external/return/basic_encoding/dccbd32b47a884cb56e7cc4918eb25f2cb15fb4da50e06c86e179504ebfe06f1.cairo" - }, - "parent_location": [ - { - "end_col": 20, - "end_line": 158, - "input_file": { - "filename": "src/subdomain/Subdomain.cairo" - }, - "start_col": 6, - "start_line": 158 - }, - "While handling return value of" - ], - "start_col": 5, - "start_line": 4 - } - }, - "905": { - "accessible_scopes": [ - "__main__", - "__main__", - "__wrappers__", - "__wrappers__.basic_encoding_encode_return" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 56, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/arg_processor/bfbc0c07adf06f8d40156630b0f75a4deaf72283241087f1612f8ae30e3a6e5e.cairo" - }, - "parent_location": [ - { - "end_col": 27, - "end_line": 160, - "input_file": { - "filename": "src/subdomain/Subdomain.cairo" - }, - "start_col": 7, - "start_line": 160 - }, - "While handling return value 'domain_encoded'" - ], - "start_col": 1, - "start_line": 1 - } - }, - "906": { - "accessible_scopes": [ - "__main__", - "__main__", - "__wrappers__", - "__wrappers__.basic_encoding_encode_return" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 48, - "end_line": 2, - "input_file": { - "filename": "autogen/starknet/arg_processor/bfbc0c07adf06f8d40156630b0f75a4deaf72283241087f1612f8ae30e3a6e5e.cairo" - }, - "parent_location": [ - { - "end_col": 27, - "end_line": 160, - "input_file": { - "filename": "src/subdomain/Subdomain.cairo" - }, - "parent_location": [ - { - "end_col": 36, - "end_line": 11, - "input_file": { - "filename": "autogen/starknet/external/return/basic_encoding/dccbd32b47a884cb56e7cc4918eb25f2cb15fb4da50e06c86e179504ebfe06f1.cairo" - }, - "parent_location": [ - { - "end_col": 20, - "end_line": 158, - "input_file": { - "filename": "src/subdomain/Subdomain.cairo" - }, - "start_col": 6, - "start_line": 158 - }, - "While handling return value of" - ], - "start_col": 18, - "start_line": 11 - }, - "While expanding the reference '__return_value_ptr' in:" - ], - "start_col": 7, - "start_line": 160 - }, - "While handling return value 'domain_encoded'" - ], - "start_col": 26, - "start_line": 2 - } - }, - "908": { - "accessible_scopes": [ - "__main__", - "__main__", - "__wrappers__", - "__wrappers__.basic_encoding_encode_return" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 85, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/external/return/basic_encoding/dccbd32b47a884cb56e7cc4918eb25f2cb15fb4da50e06c86e179504ebfe06f1.cairo" - }, - "parent_location": [ - { - "end_col": 20, - "end_line": 158, - "input_file": { - "filename": "src/subdomain/Subdomain.cairo" - }, - "parent_location": [ - { - "end_col": 40, - "end_line": 10, - "input_file": { - "filename": "autogen/starknet/external/return/basic_encoding/dccbd32b47a884cb56e7cc4918eb25f2cb15fb4da50e06c86e179504ebfe06f1.cairo" - }, - "parent_location": [ - { - "end_col": 20, - "end_line": 158, - "input_file": { - "filename": "src/subdomain/Subdomain.cairo" - }, - "start_col": 6, - "start_line": 158 - }, - "While handling return value of" - ], - "start_col": 25, - "start_line": 10 - }, - "While expanding the reference 'range_check_ptr' in:" - ], - "start_col": 6, - "start_line": 158 - }, - "While handling return value of" - ], - "start_col": 70, - "start_line": 1 - } - }, - "909": { - "accessible_scopes": [ - "__main__", - "__main__", - "__wrappers__", - "__wrappers__.basic_encoding_encode_return" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 63, - "end_line": 11, - "input_file": { - "filename": "autogen/starknet/external/return/basic_encoding/dccbd32b47a884cb56e7cc4918eb25f2cb15fb4da50e06c86e179504ebfe06f1.cairo" - }, - "parent_location": [ - { - "end_col": 20, - "end_line": 158, - "input_file": { - "filename": "src/subdomain/Subdomain.cairo" - }, - "start_col": 6, - "start_line": 158 - }, - "While handling return value of" - ], - "start_col": 18, - "start_line": 11 - } - }, - "910": { - "accessible_scopes": [ - "__main__", - "__main__", - "__wrappers__", - "__wrappers__.basic_encoding_encode_return" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 35, - "end_line": 5, - "input_file": { - "filename": "autogen/starknet/external/return/basic_encoding/dccbd32b47a884cb56e7cc4918eb25f2cb15fb4da50e06c86e179504ebfe06f1.cairo" - }, - "parent_location": [ - { - "end_col": 20, - "end_line": 158, - "input_file": { - "filename": "src/subdomain/Subdomain.cairo" - }, - "parent_location": [ - { - "end_col": 38, - "end_line": 12, - "input_file": { - "filename": "autogen/starknet/external/return/basic_encoding/dccbd32b47a884cb56e7cc4918eb25f2cb15fb4da50e06c86e179504ebfe06f1.cairo" - }, - "parent_location": [ - { - "end_col": 20, - "end_line": 158, - "input_file": { - "filename": "src/subdomain/Subdomain.cairo" - }, - "start_col": 6, - "start_line": 158 - }, - "While handling return value of" - ], - "start_col": 14, - "start_line": 12 - }, - "While expanding the reference '__return_value_ptr_start' in:" - ], - "start_col": 6, - "start_line": 158 - }, - "While handling return value of" - ], - "start_col": 11, - "start_line": 5 - } - }, - "911": { - "accessible_scopes": [ - "__main__", - "__main__", - "__wrappers__", - "__wrappers__.basic_encoding_encode_return" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 40, - "end_line": 12, - "input_file": { - "filename": "autogen/starknet/external/return/basic_encoding/dccbd32b47a884cb56e7cc4918eb25f2cb15fb4da50e06c86e179504ebfe06f1.cairo" - }, - "parent_location": [ - { - "end_col": 20, - "end_line": 158, - "input_file": { - "filename": "src/subdomain/Subdomain.cairo" - }, - "start_col": 6, - "start_line": 158 - }, - "While handling return value of" - ], - "start_col": 5, - "start_line": 9 - } - }, - "912": { - "accessible_scopes": [ - "__main__", - "__main__", - "__wrappers__", - "__wrappers__.basic_encoding" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 40, - "end_line": 2, - "input_file": { - "filename": "autogen/starknet/arg_processor/0ef30555f44496866ef53271b24c6311394b0d6b81c0271dfd0cac757a5d73dc.cairo" - }, - "parent_location": [ - { - "end_col": 23, - "end_line": 159, - "input_file": { - "filename": "src/subdomain/Subdomain.cairo" - }, - "parent_location": [ - { - "end_col": 45, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/arg_processor/c31620b02d4d706f0542c989b2aadc01b0981d1f6a5933a8fe4937ace3d70d92.cairo" - }, - "parent_location": [ - { - "end_col": 20, - "end_line": 158, - "input_file": { - "filename": "src/subdomain/Subdomain.cairo" - }, - "parent_location": [ - { - "end_col": 57, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/arg_processor/01cba52f8515996bb9d7070bde81ff39281d096d7024a558efcba6e1fd2402cf.cairo" - }, - "parent_location": [ - { - "end_col": 20, - "end_line": 158, - "input_file": { - "filename": "src/subdomain/Subdomain.cairo" - }, - "start_col": 6, - "start_line": 158 - }, - "While handling calldata of" - ], - "start_col": 35, - "start_line": 1 - }, - "While expanding the reference '__calldata_actual_size' in:" - ], - "start_col": 6, - "start_line": 158 - }, - "While handling calldata of" - ], - "start_col": 31, - "start_line": 1 - }, - "While expanding the reference '__calldata_ptr' in:" - ], - "start_col": 5, - "start_line": 159 - }, - "While handling calldata argument 'domain_ascii'" - ], - "start_col": 22, - "start_line": 2 - } - }, - "914": { - "accessible_scopes": [ - "__main__", - "__main__", - "__wrappers__", - "__wrappers__.basic_encoding" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 58, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/arg_processor/01cba52f8515996bb9d7070bde81ff39281d096d7024a558efcba6e1fd2402cf.cairo" - }, - "parent_location": [ - { - "end_col": 20, - "end_line": 158, - "input_file": { - "filename": "src/subdomain/Subdomain.cairo" - }, - "start_col": 6, - "start_line": 158 - }, - "While handling calldata of" - ], - "start_col": 1, - "start_line": 1 - } - }, - "915": { - "accessible_scopes": [ - "__main__", - "__main__", - "__wrappers__", - "__wrappers__.basic_encoding" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 64, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/external/basic_encoding/b2c52ca2d2a8fc8791a983086d8716c5eacd0c3d62934914d2286f84b98ff4cb.cairo" - }, - "parent_location": [ - { - "end_col": 39, - "end_line": 158, - "input_file": { - "filename": "src/subdomain/Subdomain.cairo" - }, - "parent_location": [ - { - "end_col": 55, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/external/basic_encoding/01db14bcdf92a2d5db6f044491da648d432aa9a2406f6b02dfbd2dc09c33d2e1.cairo" - }, - "parent_location": [ - { - "end_col": 20, - "end_line": 158, - "input_file": { - "filename": "src/subdomain/Subdomain.cairo" - }, - "start_col": 6, - "start_line": 158 - }, - "While constructing the external wrapper for:" - ], - "start_col": 44, - "start_line": 1 - }, - "While expanding the reference 'syscall_ptr' in:" - ], - "start_col": 21, - "start_line": 158 - }, - "While constructing the external wrapper for:" - ], - "start_col": 19, - "start_line": 1 - } - }, - "916": { - "accessible_scopes": [ - "__main__", - "__main__", - "__wrappers__", - "__wrappers__.basic_encoding" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 110, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/external/basic_encoding/9684a85e93c782014ca14293edea4eb2502039a5a7b6538ecd39c56faaf12529.cairo" - }, - "parent_location": [ - { - "end_col": 67, - "end_line": 158, - "input_file": { - "filename": "src/subdomain/Subdomain.cairo" - }, - "parent_location": [ - { - "end_col": 82, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/external/basic_encoding/01db14bcdf92a2d5db6f044491da648d432aa9a2406f6b02dfbd2dc09c33d2e1.cairo" - }, - "parent_location": [ - { - "end_col": 20, - "end_line": 158, - "input_file": { - "filename": "src/subdomain/Subdomain.cairo" - }, - "start_col": 6, - "start_line": 158 - }, - "While constructing the external wrapper for:" - ], - "start_col": 70, - "start_line": 1 - }, - "While expanding the reference 'pedersen_ptr' in:" - ], - "start_col": 41, - "start_line": 158 - }, - "While constructing the external wrapper for:" - ], - "start_col": 20, - "start_line": 1 - } - }, - "917": { - "accessible_scopes": [ - "__main__", - "__main__", - "__wrappers__", - "__wrappers__.basic_encoding" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 67, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/external/basic_encoding/741ea357d6336b0bed7bf0472425acd0311d543883b803388880e60a232040c7.cairo" - }, - "parent_location": [ - { - "end_col": 84, - "end_line": 158, - "input_file": { - "filename": "src/subdomain/Subdomain.cairo" - }, - "parent_location": [ - { - "end_col": 115, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/external/basic_encoding/01db14bcdf92a2d5db6f044491da648d432aa9a2406f6b02dfbd2dc09c33d2e1.cairo" - }, - "parent_location": [ - { - "end_col": 20, - "end_line": 158, - "input_file": { - "filename": "src/subdomain/Subdomain.cairo" - }, - "start_col": 6, - "start_line": 158 - }, - "While constructing the external wrapper for:" - ], - "start_col": 100, - "start_line": 1 - }, - "While expanding the reference 'range_check_ptr' in:" - ], - "start_col": 69, - "start_line": 158 - }, - "While constructing the external wrapper for:" - ], - "start_col": 23, - "start_line": 1 - } - }, - "918": { - "accessible_scopes": [ - "__main__", - "__main__", - "__wrappers__", - "__wrappers__.basic_encoding" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 51, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/arg_processor/0ef30555f44496866ef53271b24c6311394b0d6b81c0271dfd0cac757a5d73dc.cairo" - }, - "parent_location": [ - { - "end_col": 23, - "end_line": 159, - "input_file": { - "filename": "src/subdomain/Subdomain.cairo" - }, - "parent_location": [ - { - "end_col": 157, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/external/basic_encoding/01db14bcdf92a2d5db6f044491da648d432aa9a2406f6b02dfbd2dc09c33d2e1.cairo" - }, - "parent_location": [ - { - "end_col": 20, - "end_line": 158, - "input_file": { - "filename": "src/subdomain/Subdomain.cairo" - }, - "start_col": 6, - "start_line": 158 - }, - "While constructing the external wrapper for:" - ], - "start_col": 130, - "start_line": 1 - }, - "While expanding the reference '__calldata_arg_domain_ascii' in:" - ], - "start_col": 5, - "start_line": 159 - }, - "While handling calldata argument 'domain_ascii'" - ], - "start_col": 35, - "start_line": 1 - } - }, - "919": { - "accessible_scopes": [ - "__main__", - "__main__", - "__wrappers__", - "__wrappers__.basic_encoding" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 20, - "end_line": 158, - "input_file": { - "filename": "src/subdomain/Subdomain.cairo" - }, - "start_col": 6, - "start_line": 158 - } - }, - "921": { - "accessible_scopes": [ - "__main__", - "__main__", - "__wrappers__", - "__wrappers__.basic_encoding" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 115, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/external/basic_encoding/01db14bcdf92a2d5db6f044491da648d432aa9a2406f6b02dfbd2dc09c33d2e1.cairo" - }, - "parent_location": [ - { - "end_col": 20, - "end_line": 158, - "input_file": { - "filename": "src/subdomain/Subdomain.cairo" - }, - "parent_location": [ - { - "end_col": 103, - "end_line": 2, - "input_file": { - "filename": "autogen/starknet/external/basic_encoding/01db14bcdf92a2d5db6f044491da648d432aa9a2406f6b02dfbd2dc09c33d2e1.cairo" - }, - "parent_location": [ - { - "end_col": 20, - "end_line": 158, - "input_file": { - "filename": "src/subdomain/Subdomain.cairo" - }, - "start_col": 6, - "start_line": 158 - }, - "While constructing the external wrapper for:" - ], - "start_col": 88, - "start_line": 2 - }, - "While expanding the reference 'range_check_ptr' in:" - ], - "start_col": 6, - "start_line": 158 - }, - "While constructing the external wrapper for:" - ], - "start_col": 100, - "start_line": 1 - } - }, - "922": { - "accessible_scopes": [ - "__main__", - "__main__", - "__wrappers__", - "__wrappers__.basic_encoding" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 104, - "end_line": 2, - "input_file": { - "filename": "autogen/starknet/external/basic_encoding/01db14bcdf92a2d5db6f044491da648d432aa9a2406f6b02dfbd2dc09c33d2e1.cairo" - }, - "parent_location": [ - { - "end_col": 20, - "end_line": 158, - "input_file": { - "filename": "src/subdomain/Subdomain.cairo" - }, - "start_col": 6, - "start_line": 158 - }, - "While constructing the external wrapper for:" - ], - "start_col": 48, - "start_line": 2 - } - }, - "924": { - "accessible_scopes": [ - "__main__", - "__main__", - "__wrappers__", - "__wrappers__.basic_encoding" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 55, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/external/basic_encoding/01db14bcdf92a2d5db6f044491da648d432aa9a2406f6b02dfbd2dc09c33d2e1.cairo" - }, - "parent_location": [ - { - "end_col": 20, - "end_line": 158, - "input_file": { - "filename": "src/subdomain/Subdomain.cairo" - }, - "parent_location": [ - { - "end_col": 20, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/external/basic_encoding/18019a070f24c7de62611d09a6e18dd11270f1df7385fbc9eb3519a719dbe8bc.cairo" - }, - "parent_location": [ - { - "end_col": 20, - "end_line": 158, - "input_file": { - "filename": "src/subdomain/Subdomain.cairo" - }, - "start_col": 6, - "start_line": 158 - }, - "While constructing the external wrapper for:" - ], - "start_col": 9, - "start_line": 1 - }, - "While expanding the reference 'syscall_ptr' in:" - ], - "start_col": 6, - "start_line": 158 - }, - "While constructing the external wrapper for:" - ], - "start_col": 44, - "start_line": 1 - } - }, - "925": { - "accessible_scopes": [ - "__main__", - "__main__", - "__wrappers__", - "__wrappers__.basic_encoding" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 82, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/external/basic_encoding/01db14bcdf92a2d5db6f044491da648d432aa9a2406f6b02dfbd2dc09c33d2e1.cairo" - }, - "parent_location": [ - { - "end_col": 20, - "end_line": 158, - "input_file": { - "filename": "src/subdomain/Subdomain.cairo" - }, - "parent_location": [ - { - "end_col": 33, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/external/basic_encoding/18019a070f24c7de62611d09a6e18dd11270f1df7385fbc9eb3519a719dbe8bc.cairo" - }, - "parent_location": [ - { - "end_col": 20, - "end_line": 158, - "input_file": { - "filename": "src/subdomain/Subdomain.cairo" - }, - "start_col": 6, - "start_line": 158 - }, - "While constructing the external wrapper for:" - ], - "start_col": 21, - "start_line": 1 - }, - "While expanding the reference 'pedersen_ptr' in:" - ], - "start_col": 6, - "start_line": 158 - }, - "While constructing the external wrapper for:" - ], - "start_col": 70, - "start_line": 1 - } - }, - "926": { - "accessible_scopes": [ - "__main__", - "__main__", - "__wrappers__", - "__wrappers__.basic_encoding" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 21, - "end_line": 2, - "input_file": { - "filename": "autogen/starknet/external/basic_encoding/01db14bcdf92a2d5db6f044491da648d432aa9a2406f6b02dfbd2dc09c33d2e1.cairo" - }, - "parent_location": [ - { - "end_col": 20, - "end_line": 158, - "input_file": { - "filename": "src/subdomain/Subdomain.cairo" - }, - "parent_location": [ - { - "end_col": 49, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/external/basic_encoding/18019a070f24c7de62611d09a6e18dd11270f1df7385fbc9eb3519a719dbe8bc.cairo" - }, - "parent_location": [ - { - "end_col": 20, - "end_line": 158, - "input_file": { - "filename": "src/subdomain/Subdomain.cairo" - }, - "start_col": 6, - "start_line": 158 - }, - "While constructing the external wrapper for:" - ], - "start_col": 34, - "start_line": 1 - }, - "While expanding the reference 'range_check_ptr' in:" - ], - "start_col": 6, - "start_line": 158 - }, - "While constructing the external wrapper for:" - ], - "start_col": 6, - "start_line": 2 - } - }, - "927": { - "accessible_scopes": [ - "__main__", - "__main__", - "__wrappers__", - "__wrappers__.basic_encoding" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 61, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/external/basic_encoding/c6c4d3a7a58c6b37d5fdd51b25e5ab9f3e75174b411ab503db3ce03636ed6e2a.cairo" - }, - "parent_location": [ - { - "end_col": 20, - "end_line": 158, - "input_file": { - "filename": "src/subdomain/Subdomain.cairo" - }, - "parent_location": [ - { - "end_col": 59, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/external/basic_encoding/18019a070f24c7de62611d09a6e18dd11270f1df7385fbc9eb3519a719dbe8bc.cairo" - }, - "parent_location": [ - { - "end_col": 20, - "end_line": 158, - "input_file": { - "filename": "src/subdomain/Subdomain.cairo" - }, - "start_col": 6, - "start_line": 158 - }, - "While constructing the external wrapper for:" - ], - "start_col": 50, - "start_line": 1 - }, - "While expanding the reference 'ecdsa_ptr' in:" - ], - "start_col": 6, - "start_line": 158 - }, - "While constructing the external wrapper for:" - ], - "start_col": 17, - "start_line": 1 - } - }, - "928": { - "accessible_scopes": [ - "__main__", - "__main__", - "__wrappers__", - "__wrappers__.basic_encoding" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 35, - "end_line": 2, - "input_file": { - "filename": "autogen/starknet/external/basic_encoding/01db14bcdf92a2d5db6f044491da648d432aa9a2406f6b02dfbd2dc09c33d2e1.cairo" - }, - "parent_location": [ - { - "end_col": 20, - "end_line": 158, - "input_file": { - "filename": "src/subdomain/Subdomain.cairo" - }, - "parent_location": [ - { - "end_col": 72, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/external/basic_encoding/18019a070f24c7de62611d09a6e18dd11270f1df7385fbc9eb3519a719dbe8bc.cairo" - }, - "parent_location": [ - { - "end_col": 20, - "end_line": 158, - "input_file": { - "filename": "src/subdomain/Subdomain.cairo" - }, - "start_col": 6, - "start_line": 158 - }, - "While constructing the external wrapper for:" - ], - "start_col": 60, - "start_line": 1 - }, - "While expanding the reference 'retdata_size' in:" - ], - "start_col": 6, - "start_line": 158 - }, - "While constructing the external wrapper for:" - ], - "start_col": 23, - "start_line": 2 - } - }, - "929": { - "accessible_scopes": [ - "__main__", - "__main__", - "__wrappers__", - "__wrappers__.basic_encoding" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 44, - "end_line": 2, - "input_file": { - "filename": "autogen/starknet/external/basic_encoding/01db14bcdf92a2d5db6f044491da648d432aa9a2406f6b02dfbd2dc09c33d2e1.cairo" - }, - "parent_location": [ - { - "end_col": 20, - "end_line": 158, - "input_file": { - "filename": "src/subdomain/Subdomain.cairo" - }, - "parent_location": [ - { - "end_col": 80, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/external/basic_encoding/18019a070f24c7de62611d09a6e18dd11270f1df7385fbc9eb3519a719dbe8bc.cairo" - }, - "parent_location": [ - { - "end_col": 20, - "end_line": 158, - "input_file": { - "filename": "src/subdomain/Subdomain.cairo" - }, - "start_col": 6, - "start_line": 158 - }, - "While constructing the external wrapper for:" - ], - "start_col": 73, - "start_line": 1 - }, - "While expanding the reference 'retdata' in:" - ], - "start_col": 6, - "start_line": 158 - }, - "While constructing the external wrapper for:" - ], - "start_col": 37, - "start_line": 2 - } - }, - "930": { - "accessible_scopes": [ - "__main__", - "__main__", - "__wrappers__", - "__wrappers__.basic_encoding" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 82, - "end_line": 1, - "input_file": { - "filename": "autogen/starknet/external/basic_encoding/18019a070f24c7de62611d09a6e18dd11270f1df7385fbc9eb3519a719dbe8bc.cairo" - }, - "parent_location": [ - { - "end_col": 20, - "end_line": 158, - "input_file": { - "filename": "src/subdomain/Subdomain.cairo" - }, - "start_col": 6, - "start_line": 158 - }, - "While constructing the external wrapper for:" - ], - "start_col": 1, - "start_line": 1 - } - }, - "931": { - "accessible_scopes": [ - "__main__", - "__main__._check_admin" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 37, - "end_line": 168, - "input_file": { - "filename": "src/subdomain/Subdomain.cairo" - }, - "parent_location": [ - { - "end_col": 43, - "end_line": 200, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/starknet/common/syscalls.cairo" - }, - "parent_location": [ - { - "end_col": 40, - "end_line": 169, - "input_file": { - "filename": "src/subdomain/Subdomain.cairo" - }, - "start_col": 20, - "start_line": 169 - }, - "While trying to retrieve the implicit argument 'syscall_ptr' in:" - ], - "start_col": 25, - "start_line": 200 - }, - "While expanding the reference 'syscall_ptr' in:" - ], - "start_col": 19, - "start_line": 168 - } - }, - "932": { - "accessible_scopes": [ - "__main__", - "__main__._check_admin" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 40, - "end_line": 169, - "input_file": { - "filename": "src/subdomain/Subdomain.cairo" - }, - "start_col": 20, - "start_line": 169 - } - }, - "934": { - "accessible_scopes": [ - "__main__", - "__main__._check_admin" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 43, - "end_line": 200, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/starknet/common/syscalls.cairo" - }, - "parent_location": [ - { - "end_col": 40, - "end_line": 169, - "input_file": { - "filename": "src/subdomain/Subdomain.cairo" - }, - "parent_location": [ - { - "end_col": 33, - "end_line": 13, - "input_file": { - "filename": "autogen/starknet/storage_var/_admin_address/decl.cairo" - }, - "parent_location": [ - { - "end_col": 40, - "end_line": 170, - "input_file": { - "filename": "src/subdomain/Subdomain.cairo" - }, - "start_col": 19, - "start_line": 170 - }, - "While trying to retrieve the implicit argument 'syscall_ptr' in:" - ], - "start_col": 15, - "start_line": 13 - }, - "While expanding the reference 'syscall_ptr' in:" - ], - "start_col": 20, - "start_line": 169 - }, - "While trying to update the implicit return value 'syscall_ptr' in:" - ], - "start_col": 25, - "start_line": 200 - } - }, - "935": { - "accessible_scopes": [ - "__main__", - "__main__._check_admin" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 65, - "end_line": 168, - "input_file": { - "filename": "src/subdomain/Subdomain.cairo" - }, - "parent_location": [ - { - "end_col": 61, - "end_line": 13, - "input_file": { - "filename": "autogen/starknet/storage_var/_admin_address/decl.cairo" - }, - "parent_location": [ - { - "end_col": 40, - "end_line": 170, - "input_file": { - "filename": "src/subdomain/Subdomain.cairo" - }, - "start_col": 19, - "start_line": 170 - }, - "While trying to retrieve the implicit argument 'pedersen_ptr' in:" - ], - "start_col": 35, - "start_line": 13 - }, - "While expanding the reference 'pedersen_ptr' in:" - ], - "start_col": 39, - "start_line": 168 - } - }, - "936": { - "accessible_scopes": [ - "__main__", - "__main__._check_admin" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 82, - "end_line": 168, - "input_file": { - "filename": "src/subdomain/Subdomain.cairo" - }, - "parent_location": [ - { - "end_col": 78, - "end_line": 13, - "input_file": { - "filename": "autogen/starknet/storage_var/_admin_address/decl.cairo" - }, - "parent_location": [ - { - "end_col": 40, - "end_line": 170, - "input_file": { - "filename": "src/subdomain/Subdomain.cairo" - }, - "start_col": 19, - "start_line": 170 - }, - "While trying to retrieve the implicit argument 'range_check_ptr' in:" - ], - "start_col": 63, - "start_line": 13 - }, - "While expanding the reference 'range_check_ptr' in:" - ], - "start_col": 67, - "start_line": 168 - } - }, - "937": { - "accessible_scopes": [ - "__main__", - "__main__._check_admin" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 40, - "end_line": 170, - "input_file": { - "filename": "src/subdomain/Subdomain.cairo" - }, - "start_col": 19, - "start_line": 170 - } - }, - "939": { - "accessible_scopes": [ - "__main__", - "__main__._check_admin" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 31, - "end_line": 172, - "input_file": { - "filename": "src/subdomain/Subdomain.cairo" - }, - "start_col": 9, - "start_line": 172 - } - }, - "940": { - "accessible_scopes": [ - "__main__", - "__main__._check_admin" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 33, - "end_line": 13, - "input_file": { - "filename": "autogen/starknet/storage_var/_admin_address/decl.cairo" - }, - "parent_location": [ - { - "end_col": 40, - "end_line": 170, - "input_file": { - "filename": "src/subdomain/Subdomain.cairo" - }, - "parent_location": [ - { - "end_col": 37, - "end_line": 168, - "input_file": { - "filename": "src/subdomain/Subdomain.cairo" - }, - "parent_location": [ - { - "end_col": 15, - "end_line": 175, - "input_file": { - "filename": "src/subdomain/Subdomain.cairo" - }, - "start_col": 5, - "start_line": 175 - }, - "While trying to retrieve the implicit argument 'syscall_ptr' in:" - ], - "start_col": 19, - "start_line": 168 - }, - "While expanding the reference 'syscall_ptr' in:" - ], - "start_col": 19, - "start_line": 170 - }, - "While trying to update the implicit return value 'syscall_ptr' in:" - ], - "start_col": 15, - "start_line": 13 - } - }, - "941": { - "accessible_scopes": [ - "__main__", - "__main__._check_admin" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 61, - "end_line": 13, - "input_file": { - "filename": "autogen/starknet/storage_var/_admin_address/decl.cairo" - }, - "parent_location": [ - { - "end_col": 40, - "end_line": 170, - "input_file": { - "filename": "src/subdomain/Subdomain.cairo" - }, - "parent_location": [ - { - "end_col": 65, - "end_line": 168, - "input_file": { - "filename": "src/subdomain/Subdomain.cairo" - }, - "parent_location": [ - { - "end_col": 15, - "end_line": 175, - "input_file": { - "filename": "src/subdomain/Subdomain.cairo" - }, - "start_col": 5, - "start_line": 175 - }, - "While trying to retrieve the implicit argument 'pedersen_ptr' in:" - ], - "start_col": 39, - "start_line": 168 - }, - "While expanding the reference 'pedersen_ptr' in:" - ], - "start_col": 19, - "start_line": 170 - }, - "While trying to update the implicit return value 'pedersen_ptr' in:" - ], - "start_col": 35, - "start_line": 13 - } - }, - "942": { - "accessible_scopes": [ - "__main__", - "__main__._check_admin" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 78, - "end_line": 13, - "input_file": { - "filename": "autogen/starknet/storage_var/_admin_address/decl.cairo" - }, - "parent_location": [ - { - "end_col": 40, - "end_line": 170, - "input_file": { - "filename": "src/subdomain/Subdomain.cairo" - }, - "parent_location": [ - { - "end_col": 82, - "end_line": 168, - "input_file": { - "filename": "src/subdomain/Subdomain.cairo" - }, - "parent_location": [ - { - "end_col": 15, - "end_line": 175, - "input_file": { - "filename": "src/subdomain/Subdomain.cairo" - }, - "start_col": 5, - "start_line": 175 - }, - "While trying to retrieve the implicit argument 'range_check_ptr' in:" - ], - "start_col": 67, - "start_line": 168 - }, - "While expanding the reference 'range_check_ptr' in:" - ], - "start_col": 19, - "start_line": 170 - }, - "While trying to update the implicit return value 'range_check_ptr' in:" - ], - "start_col": 63, - "start_line": 13 - } - }, - "943": { - "accessible_scopes": [ - "__main__", - "__main__._check_admin" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 15, - "end_line": 175, - "input_file": { - "filename": "src/subdomain/Subdomain.cairo" - }, - "start_col": 5, - "start_line": 175 - } - }, - "944": { - "accessible_scopes": [ - "__main__", - "__main__._get_contracts_addresses" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 49, - "end_line": 178, - "input_file": { - "filename": "src/subdomain/Subdomain.cairo" - }, - "parent_location": [ - { - "end_col": 45, - "end_line": 274, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/starknet/common/syscalls.cairo" - }, - "parent_location": [ - { - "end_col": 52, - "end_line": 180, - "input_file": { - "filename": "src/subdomain/Subdomain.cairo" - }, - "start_col": 30, - "start_line": 180 - }, - "While trying to retrieve the implicit argument 'syscall_ptr' in:" - ], - "start_col": 27, - "start_line": 274 - }, - "While expanding the reference 'syscall_ptr' in:" - ], - "start_col": 31, - "start_line": 178 - } - }, - "945": { - "accessible_scopes": [ - "__main__", - "__main__._get_contracts_addresses" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 52, - "end_line": 180, - "input_file": { - "filename": "src/subdomain/Subdomain.cairo" - }, - "start_col": 30, - "start_line": 180 - } - }, - "947": { - "accessible_scopes": [ - "__main__", - "__main__._get_contracts_addresses" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 45, - "end_line": 274, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/starknet/common/syscalls.cairo" - }, - "parent_location": [ - { - "end_col": 52, - "end_line": 180, - "input_file": { - "filename": "src/subdomain/Subdomain.cairo" - }, - "parent_location": [ - { - "end_col": 33, - "end_line": 13, - "input_file": { - "filename": "autogen/starknet/storage_var/_starknetid_contract/decl.cairo" - }, - "parent_location": [ - { - "end_col": 60, - "end_line": 181, - "input_file": { - "filename": "src/subdomain/Subdomain.cairo" - }, - "start_col": 33, - "start_line": 181 - }, - "While trying to retrieve the implicit argument 'syscall_ptr' in:" - ], - "start_col": 15, - "start_line": 13 - }, - "While expanding the reference 'syscall_ptr' in:" - ], - "start_col": 30, - "start_line": 180 - }, - "While trying to update the implicit return value 'syscall_ptr' in:" - ], - "start_col": 27, - "start_line": 274 - } - }, - "948": { - "accessible_scopes": [ - "__main__", - "__main__._get_contracts_addresses" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 77, - "end_line": 178, - "input_file": { - "filename": "src/subdomain/Subdomain.cairo" - }, - "parent_location": [ - { - "end_col": 61, - "end_line": 13, - "input_file": { - "filename": "autogen/starknet/storage_var/_starknetid_contract/decl.cairo" - }, - "parent_location": [ - { - "end_col": 60, - "end_line": 181, - "input_file": { - "filename": "src/subdomain/Subdomain.cairo" - }, - "start_col": 33, - "start_line": 181 - }, - "While trying to retrieve the implicit argument 'pedersen_ptr' in:" - ], - "start_col": 35, - "start_line": 13 - }, - "While expanding the reference 'pedersen_ptr' in:" - ], - "start_col": 51, - "start_line": 178 - } - }, - "949": { - "accessible_scopes": [ - "__main__", - "__main__._get_contracts_addresses" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 94, - "end_line": 178, - "input_file": { - "filename": "src/subdomain/Subdomain.cairo" - }, - "parent_location": [ - { - "end_col": 78, - "end_line": 13, - "input_file": { - "filename": "autogen/starknet/storage_var/_starknetid_contract/decl.cairo" - }, - "parent_location": [ - { - "end_col": 60, - "end_line": 181, - "input_file": { - "filename": "src/subdomain/Subdomain.cairo" - }, - "start_col": 33, - "start_line": 181 - }, - "While trying to retrieve the implicit argument 'range_check_ptr' in:" - ], - "start_col": 63, - "start_line": 13 - }, - "While expanding the reference 'range_check_ptr' in:" - ], - "start_col": 79, - "start_line": 178 - } - }, - "950": { - "accessible_scopes": [ - "__main__", - "__main__._get_contracts_addresses" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 60, - "end_line": 181, - "input_file": { - "filename": "src/subdomain/Subdomain.cairo" - }, - "start_col": 33, - "start_line": 181 - } - }, - "952": { - "accessible_scopes": [ - "__main__", - "__main__._get_contracts_addresses" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 33, - "end_line": 13, - "input_file": { - "filename": "autogen/starknet/storage_var/_starknetid_contract/decl.cairo" - }, - "parent_location": [ - { - "end_col": 60, - "end_line": 181, - "input_file": { - "filename": "src/subdomain/Subdomain.cairo" - }, - "parent_location": [ - { - "end_col": 33, - "end_line": 13, - "input_file": { - "filename": "autogen/starknet/storage_var/_naming_contract/decl.cairo" - }, - "parent_location": [ - { - "end_col": 52, - "end_line": 182, - "input_file": { - "filename": "src/subdomain/Subdomain.cairo" - }, - "start_col": 29, - "start_line": 182 - }, - "While trying to retrieve the implicit argument 'syscall_ptr' in:" - ], - "start_col": 15, - "start_line": 13 - }, - "While expanding the reference 'syscall_ptr' in:" - ], - "start_col": 33, - "start_line": 181 - }, - "While trying to update the implicit return value 'syscall_ptr' in:" - ], - "start_col": 15, - "start_line": 13 - } - }, - "953": { - "accessible_scopes": [ - "__main__", - "__main__._get_contracts_addresses" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 61, - "end_line": 13, - "input_file": { - "filename": "autogen/starknet/storage_var/_starknetid_contract/decl.cairo" - }, - "parent_location": [ - { - "end_col": 60, - "end_line": 181, - "input_file": { - "filename": "src/subdomain/Subdomain.cairo" - }, - "parent_location": [ - { - "end_col": 61, - "end_line": 13, - "input_file": { - "filename": "autogen/starknet/storage_var/_naming_contract/decl.cairo" - }, - "parent_location": [ - { - "end_col": 52, - "end_line": 182, - "input_file": { - "filename": "src/subdomain/Subdomain.cairo" - }, - "start_col": 29, - "start_line": 182 - }, - "While trying to retrieve the implicit argument 'pedersen_ptr' in:" - ], - "start_col": 35, - "start_line": 13 - }, - "While expanding the reference 'pedersen_ptr' in:" - ], - "start_col": 33, - "start_line": 181 - }, - "While trying to update the implicit return value 'pedersen_ptr' in:" - ], - "start_col": 35, - "start_line": 13 - } - }, - "954": { - "accessible_scopes": [ - "__main__", - "__main__._get_contracts_addresses" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 78, - "end_line": 13, - "input_file": { - "filename": "autogen/starknet/storage_var/_starknetid_contract/decl.cairo" - }, - "parent_location": [ - { - "end_col": 60, - "end_line": 181, - "input_file": { - "filename": "src/subdomain/Subdomain.cairo" - }, - "parent_location": [ - { - "end_col": 78, - "end_line": 13, - "input_file": { - "filename": "autogen/starknet/storage_var/_naming_contract/decl.cairo" - }, - "parent_location": [ - { - "end_col": 52, - "end_line": 182, - "input_file": { - "filename": "src/subdomain/Subdomain.cairo" - }, - "start_col": 29, - "start_line": 182 - }, - "While trying to retrieve the implicit argument 'range_check_ptr' in:" - ], - "start_col": 63, - "start_line": 13 - }, - "While expanding the reference 'range_check_ptr' in:" - ], - "start_col": 33, - "start_line": 181 - }, - "While trying to update the implicit return value 'range_check_ptr' in:" - ], - "start_col": 63, - "start_line": 13 - } - }, - "955": { - "accessible_scopes": [ - "__main__", - "__main__._get_contracts_addresses" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 52, - "end_line": 182, - "input_file": { - "filename": "src/subdomain/Subdomain.cairo" - }, - "start_col": 29, - "start_line": 182 - } - }, - "957": { - "accessible_scopes": [ - "__main__", - "__main__._get_contracts_addresses" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 33, - "end_line": 13, - "input_file": { - "filename": "autogen/starknet/storage_var/_naming_contract/decl.cairo" - }, - "parent_location": [ - { - "end_col": 52, - "end_line": 182, - "input_file": { - "filename": "src/subdomain/Subdomain.cairo" - }, - "parent_location": [ - { - "end_col": 49, - "end_line": 178, - "input_file": { - "filename": "src/subdomain/Subdomain.cairo" - }, - "parent_location": [ - { - "end_col": 69, - "end_line": 184, - "input_file": { - "filename": "src/subdomain/Subdomain.cairo" - }, - "start_col": 5, - "start_line": 184 - }, - "While trying to retrieve the implicit argument 'syscall_ptr' in:" - ], - "start_col": 31, - "start_line": 178 - }, - "While expanding the reference 'syscall_ptr' in:" - ], - "start_col": 29, - "start_line": 182 - }, - "While trying to update the implicit return value 'syscall_ptr' in:" - ], - "start_col": 15, - "start_line": 13 - } - }, - "958": { - "accessible_scopes": [ - "__main__", - "__main__._get_contracts_addresses" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 61, - "end_line": 13, - "input_file": { - "filename": "autogen/starknet/storage_var/_naming_contract/decl.cairo" - }, - "parent_location": [ - { - "end_col": 52, - "end_line": 182, - "input_file": { - "filename": "src/subdomain/Subdomain.cairo" - }, - "parent_location": [ - { - "end_col": 77, - "end_line": 178, - "input_file": { - "filename": "src/subdomain/Subdomain.cairo" - }, - "parent_location": [ - { - "end_col": 69, - "end_line": 184, - "input_file": { - "filename": "src/subdomain/Subdomain.cairo" - }, - "start_col": 5, - "start_line": 184 - }, - "While trying to retrieve the implicit argument 'pedersen_ptr' in:" - ], - "start_col": 51, - "start_line": 178 - }, - "While expanding the reference 'pedersen_ptr' in:" - ], - "start_col": 29, - "start_line": 182 - }, - "While trying to update the implicit return value 'pedersen_ptr' in:" - ], - "start_col": 35, - "start_line": 13 - } - }, - "959": { - "accessible_scopes": [ - "__main__", - "__main__._get_contracts_addresses" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 78, - "end_line": 13, - "input_file": { - "filename": "autogen/starknet/storage_var/_naming_contract/decl.cairo" - }, - "parent_location": [ - { - "end_col": 52, - "end_line": 182, - "input_file": { - "filename": "src/subdomain/Subdomain.cairo" - }, - "parent_location": [ - { - "end_col": 94, - "end_line": 178, - "input_file": { - "filename": "src/subdomain/Subdomain.cairo" - }, - "parent_location": [ - { - "end_col": 69, - "end_line": 184, - "input_file": { - "filename": "src/subdomain/Subdomain.cairo" - }, - "start_col": 5, - "start_line": 184 - }, - "While trying to retrieve the implicit argument 'range_check_ptr' in:" - ], - "start_col": 79, - "start_line": 178 - }, - "While expanding the reference 'range_check_ptr' in:" - ], - "start_col": 29, - "start_line": 182 - }, - "While trying to update the implicit return value 'range_check_ptr' in:" - ], - "start_col": 63, - "start_line": 13 - } - }, - "960": { - "accessible_scopes": [ - "__main__", - "__main__._get_contracts_addresses" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 26, - "end_line": 180, - "input_file": { - "filename": "src/subdomain/Subdomain.cairo" - }, - "parent_location": [ - { - "end_col": 29, - "end_line": 184, - "input_file": { - "filename": "src/subdomain/Subdomain.cairo" - }, - "start_col": 13, - "start_line": 184 - }, - "While expanding the reference 'current_contract' in:" - ], - "start_col": 10, - "start_line": 180 - } - }, - "961": { - "accessible_scopes": [ - "__main__", - "__main__._get_contracts_addresses" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 29, - "end_line": 181, - "input_file": { - "filename": "src/subdomain/Subdomain.cairo" - }, - "parent_location": [ - { - "end_col": 50, - "end_line": 184, - "input_file": { - "filename": "src/subdomain/Subdomain.cairo" - }, - "start_col": 31, - "start_line": 184 - }, - "While expanding the reference 'starknetid_contract' in:" - ], - "start_col": 10, - "start_line": 181 - } - }, - "962": { - "accessible_scopes": [ - "__main__", - "__main__._get_contracts_addresses" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 25, - "end_line": 182, - "input_file": { - "filename": "src/subdomain/Subdomain.cairo" - }, - "parent_location": [ - { - "end_col": 67, - "end_line": 184, - "input_file": { - "filename": "src/subdomain/Subdomain.cairo" - }, - "start_col": 52, - "start_line": 184 - }, - "While expanding the reference 'naming_contract' in:" - ], - "start_col": 10, - "start_line": 182 - } - }, - "963": { - "accessible_scopes": [ - "__main__", - "__main__._get_contracts_addresses" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 69, - "end_line": 184, - "input_file": { - "filename": "src/subdomain/Subdomain.cairo" - }, - "start_col": 5, - "start_line": 184 - } - }, - "964": { - "accessible_scopes": [ - "__main__", - "__main__._basic_encoding" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 18, - "end_line": 194, - "input_file": { - "filename": "src/subdomain/Subdomain.cairo" - }, - "start_col": 5, - "start_line": 194 - } - }, - "966": { - "accessible_scopes": [ - "__main__", - "__main__._basic_encoding" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 85, - "end_line": 191, - "input_file": { - "filename": "src/subdomain/Subdomain.cairo" - }, - "parent_location": [ - { - "end_col": 27, - "end_line": 42, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/math_cmp.cairo" - }, - "parent_location": [ - { - "end_col": 50, - "end_line": 195, - "input_file": { - "filename": "src/subdomain/Subdomain.cairo" - }, - "start_col": 26, - "start_line": 195 - }, - "While trying to retrieve the implicit argument 'range_check_ptr' in:" - ], - "start_col": 12, - "start_line": 42 - }, - "While expanding the reference 'range_check_ptr' in:" - ], - "start_col": 70, - "start_line": 191 - } - }, - "967": { - "accessible_scopes": [ - "__main__", - "__main__._basic_encoding" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 35, - "end_line": 195, - "input_file": { - "filename": "src/subdomain/Subdomain.cairo" - }, - "start_col": 32, - "start_line": 195 - } - }, - "969": { - "accessible_scopes": [ - "__main__", - "__main__._basic_encoding" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 23, - "end_line": 192, - "input_file": { - "filename": "src/subdomain/Subdomain.cairo" - }, - "parent_location": [ - { - "end_col": 49, - "end_line": 195, - "input_file": { - "filename": "src/subdomain/Subdomain.cairo" - }, - "start_col": 37, - "start_line": 195 - }, - "While expanding the reference 'domain_ascii' in:" - ], - "start_col": 5, - "start_line": 192 - } - }, - "970": { - "accessible_scopes": [ - "__main__", - "__main__._basic_encoding" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 50, - "end_line": 195, - "input_file": { - "filename": "src/subdomain/Subdomain.cairo" - }, - "start_col": 26, - "start_line": 195 - } - }, - "972": { - "accessible_scopes": [ - "__main__", - "__main__._basic_encoding" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 7, - "end_line": 197, - "input_file": { - "filename": "src/subdomain/Subdomain.cairo" - }, - "start_col": 5, - "start_line": 197 - } - }, - "974": { - "accessible_scopes": [ - "__main__", - "__main__._basic_encoding" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 40, - "end_line": 191, - "input_file": { - "filename": "src/subdomain/Subdomain.cairo" - }, - "parent_location": [ - { - "end_col": 51, - "end_line": 207, - "input_file": { - "filename": "src/subdomain/Subdomain.cairo" - }, - "parent_location": [ - { - "end_col": 63, - "end_line": 198, - "input_file": { - "filename": "src/subdomain/Subdomain.cairo" - }, - "start_col": 23, - "start_line": 198 - }, - "While trying to retrieve the implicit argument 'syscall_ptr' in:" - ], - "start_col": 33, - "start_line": 207 - }, - "While expanding the reference 'syscall_ptr' in:" - ], - "start_col": 22, - "start_line": 191 - } - }, - "975": { - "accessible_scopes": [ - "__main__", - "__main__._basic_encoding" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 68, - "end_line": 191, - "input_file": { - "filename": "src/subdomain/Subdomain.cairo" - }, - "parent_location": [ - { - "end_col": 79, - "end_line": 207, - "input_file": { - "filename": "src/subdomain/Subdomain.cairo" - }, - "parent_location": [ - { - "end_col": 63, - "end_line": 198, - "input_file": { - "filename": "src/subdomain/Subdomain.cairo" - }, - "start_col": 23, - "start_line": 198 - }, - "While trying to retrieve the implicit argument 'pedersen_ptr' in:" - ], - "start_col": 53, - "start_line": 207 - }, - "While expanding the reference 'pedersen_ptr' in:" - ], - "start_col": 42, - "start_line": 191 - } - }, - "976": { - "accessible_scopes": [ - "__main__", - "__main__._basic_encoding" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 27, - "end_line": 42, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/math_cmp.cairo" - }, - "parent_location": [ - { - "end_col": 50, - "end_line": 195, - "input_file": { - "filename": "src/subdomain/Subdomain.cairo" - }, - "parent_location": [ - { - "end_col": 96, - "end_line": 207, - "input_file": { - "filename": "src/subdomain/Subdomain.cairo" - }, - "parent_location": [ - { - "end_col": 63, - "end_line": 198, - "input_file": { - "filename": "src/subdomain/Subdomain.cairo" - }, - "start_col": 23, - "start_line": 198 - }, - "While trying to retrieve the implicit argument 'range_check_ptr' in:" - ], - "start_col": 81, - "start_line": 207 - }, - "While expanding the reference 'range_check_ptr' in:" - ], - "start_col": 26, - "start_line": 195 - }, - "While trying to update the implicit return value 'range_check_ptr' in:" - ], - "start_col": 12, - "start_line": 42 - } - }, - "977": { - "accessible_scopes": [ - "__main__", - "__main__._basic_encoding" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 23, - "end_line": 192, - "input_file": { - "filename": "src/subdomain/Subdomain.cairo" - }, - "parent_location": [ - { - "end_col": 62, - "end_line": 198, - "input_file": { - "filename": "src/subdomain/Subdomain.cairo" - }, - "start_col": 50, - "start_line": 198 - }, - "While expanding the reference 'domain_ascii' in:" - ], - "start_col": 5, - "start_line": 192 - } - }, - "978": { - "accessible_scopes": [ - "__main__", - "__main__._basic_encoding" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 63, - "end_line": 198, - "input_file": { - "filename": "src/subdomain/Subdomain.cairo" - }, - "start_col": 23, - "start_line": 198 - } - }, - "980": { - "accessible_scopes": [ - "__main__", - "__main__._basic_encoding" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 51, - "end_line": 199, - "input_file": { - "filename": "src/subdomain/Subdomain.cairo" - }, - "start_col": 32, - "start_line": 199 - } - }, - "982": { - "accessible_scopes": [ - "__main__", - "__main__._basic_encoding" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 51, - "end_line": 207, - "input_file": { - "filename": "src/subdomain/Subdomain.cairo" - }, - "parent_location": [ - { - "end_col": 63, - "end_line": 198, - "input_file": { - "filename": "src/subdomain/Subdomain.cairo" - }, - "parent_location": [ - { - "end_col": 40, - "end_line": 191, - "input_file": { - "filename": "src/subdomain/Subdomain.cairo" - }, - "parent_location": [ - { - "end_col": 63, - "end_line": 199, - "input_file": { - "filename": "src/subdomain/Subdomain.cairo" - }, - "start_col": 9, - "start_line": 199 - }, - "While trying to retrieve the implicit argument 'syscall_ptr' in:" - ], - "start_col": 22, - "start_line": 191 - }, - "While expanding the reference 'syscall_ptr' in:" - ], - "start_col": 23, - "start_line": 198 - }, - "While trying to update the implicit return value 'syscall_ptr' in:" - ], - "start_col": 33, - "start_line": 207 - } - }, - "983": { - "accessible_scopes": [ - "__main__", - "__main__._basic_encoding" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 79, - "end_line": 207, - "input_file": { - "filename": "src/subdomain/Subdomain.cairo" - }, - "parent_location": [ - { - "end_col": 63, - "end_line": 198, - "input_file": { - "filename": "src/subdomain/Subdomain.cairo" - }, - "parent_location": [ - { - "end_col": 68, - "end_line": 191, - "input_file": { - "filename": "src/subdomain/Subdomain.cairo" - }, - "parent_location": [ - { - "end_col": 63, - "end_line": 199, - "input_file": { - "filename": "src/subdomain/Subdomain.cairo" - }, - "start_col": 9, - "start_line": 199 - }, - "While trying to retrieve the implicit argument 'pedersen_ptr' in:" - ], - "start_col": 42, - "start_line": 191 - }, - "While expanding the reference 'pedersen_ptr' in:" - ], - "start_col": 23, - "start_line": 198 - }, - "While trying to update the implicit return value 'pedersen_ptr' in:" - ], - "start_col": 53, - "start_line": 207 - } - }, - "984": { - "accessible_scopes": [ - "__main__", - "__main__._basic_encoding" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 96, - "end_line": 207, - "input_file": { - "filename": "src/subdomain/Subdomain.cairo" - }, - "parent_location": [ - { - "end_col": 63, - "end_line": 198, - "input_file": { - "filename": "src/subdomain/Subdomain.cairo" - }, - "parent_location": [ - { - "end_col": 85, - "end_line": 191, - "input_file": { - "filename": "src/subdomain/Subdomain.cairo" - }, - "parent_location": [ - { - "end_col": 63, - "end_line": 199, - "input_file": { - "filename": "src/subdomain/Subdomain.cairo" - }, - "start_col": 9, - "start_line": 199 - }, - "While trying to retrieve the implicit argument 'range_check_ptr' in:" - ], - "start_col": 70, - "start_line": 191 - }, - "While expanding the reference 'range_check_ptr' in:" - ], - "start_col": 23, - "start_line": 198 - }, - "While trying to update the implicit return value 'range_check_ptr' in:" - ], - "start_col": 81, - "start_line": 207 - } - }, - "985": { - "accessible_scopes": [ - "__main__", - "__main__._basic_encoding" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 61, - "end_line": 199, - "input_file": { - "filename": "src/subdomain/Subdomain.cairo" - }, - "start_col": 32, - "start_line": 199 - } - }, - "986": { - "accessible_scopes": [ - "__main__", - "__main__._basic_encoding" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 63, - "end_line": 199, - "input_file": { - "filename": "src/subdomain/Subdomain.cairo" - }, - "start_col": 9, - "start_line": 199 - } - }, - "987": { - "accessible_scopes": [ - "__main__", - "__main__._basic_encoding" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 27, - "end_line": 42, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/math_cmp.cairo" - }, - "parent_location": [ - { - "end_col": 50, - "end_line": 195, - "input_file": { - "filename": "src/subdomain/Subdomain.cairo" - }, - "parent_location": [ - { - "end_col": 38, - "end_line": 297, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/math.cairo" - }, - "parent_location": [ - { - "end_col": 64, - "end_line": 202, - "input_file": { - "filename": "src/subdomain/Subdomain.cairo" - }, - "start_col": 29, - "start_line": 202 - }, - "While trying to retrieve the implicit argument 'range_check_ptr' in:" - ], - "start_col": 23, - "start_line": 297 - }, - "While expanding the reference 'range_check_ptr' in:" - ], - "start_col": 26, - "start_line": 195 - }, - "While trying to update the implicit return value 'range_check_ptr' in:" - ], - "start_col": 12, - "start_line": 42 - } - }, - "988": { - "accessible_scopes": [ - "__main__", - "__main__._basic_encoding" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 23, - "end_line": 192, - "input_file": { - "filename": "src/subdomain/Subdomain.cairo" - }, - "parent_location": [ - { - "end_col": 58, - "end_line": 202, - "input_file": { - "filename": "src/subdomain/Subdomain.cairo" - }, - "start_col": 46, - "start_line": 202 - }, - "While expanding the reference 'domain_ascii' in:" - ], - "start_col": 5, - "start_line": 192 - } - }, - "989": { - "accessible_scopes": [ - "__main__", - "__main__._basic_encoding" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 63, - "end_line": 202, - "input_file": { - "filename": "src/subdomain/Subdomain.cairo" - }, - "start_col": 60, - "start_line": 202 - } - }, - "991": { - "accessible_scopes": [ - "__main__", - "__main__._basic_encoding" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 64, - "end_line": 202, - "input_file": { - "filename": "src/subdomain/Subdomain.cairo" - }, - "start_col": 29, - "start_line": 202 - } - }, - "993": { - "accessible_scopes": [ - "__main__", - "__main__._basic_encoding" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 19, - "end_line": 202, - "input_file": { - "filename": "src/subdomain/Subdomain.cairo" - }, - "start_col": 10, - "start_line": 202 - } - }, - "994": { - "accessible_scopes": [ - "__main__", - "__main__._basic_encoding" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 40, - "end_line": 191, - "input_file": { - "filename": "src/subdomain/Subdomain.cairo" - }, - "parent_location": [ - { - "end_col": 51, - "end_line": 207, - "input_file": { - "filename": "src/subdomain/Subdomain.cairo" - }, - "parent_location": [ - { - "end_col": 51, - "end_line": 203, - "input_file": { - "filename": "src/subdomain/Subdomain.cairo" - }, - "start_col": 19, - "start_line": 203 - }, - "While trying to retrieve the implicit argument 'syscall_ptr' in:" - ], - "start_col": 33, - "start_line": 207 - }, - "While expanding the reference 'syscall_ptr' in:" - ], - "start_col": 22, - "start_line": 191 - } - }, - "995": { - "accessible_scopes": [ - "__main__", - "__main__._basic_encoding" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 68, - "end_line": 191, - "input_file": { - "filename": "src/subdomain/Subdomain.cairo" - }, - "parent_location": [ - { - "end_col": 79, - "end_line": 207, - "input_file": { - "filename": "src/subdomain/Subdomain.cairo" - }, - "parent_location": [ - { - "end_col": 51, - "end_line": 203, - "input_file": { - "filename": "src/subdomain/Subdomain.cairo" - }, - "start_col": 19, - "start_line": 203 - }, - "While trying to retrieve the implicit argument 'pedersen_ptr' in:" - ], - "start_col": 53, - "start_line": 207 - }, - "While expanding the reference 'pedersen_ptr' in:" - ], - "start_col": 42, - "start_line": 191 - } - }, - "996": { - "accessible_scopes": [ - "__main__", - "__main__._basic_encoding" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 38, - "end_line": 297, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/math.cairo" - }, - "parent_location": [ - { - "end_col": 64, - "end_line": 202, - "input_file": { - "filename": "src/subdomain/Subdomain.cairo" - }, - "parent_location": [ - { - "end_col": 96, - "end_line": 207, - "input_file": { - "filename": "src/subdomain/Subdomain.cairo" - }, - "parent_location": [ - { - "end_col": 51, - "end_line": 203, - "input_file": { - "filename": "src/subdomain/Subdomain.cairo" - }, - "start_col": 19, - "start_line": 203 - }, - "While trying to retrieve the implicit argument 'range_check_ptr' in:" - ], - "start_col": 81, - "start_line": 207 - }, - "While expanding the reference 'range_check_ptr' in:" - ], - "start_col": 29, - "start_line": 202 - }, - "While trying to update the implicit return value 'range_check_ptr' in:" - ], - "start_col": 23, - "start_line": 297 - } - }, - "997": { - "accessible_scopes": [ - "__main__", - "__main__._basic_encoding" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 25, - "end_line": 202, - "input_file": { - "filename": "src/subdomain/Subdomain.cairo" - }, - "parent_location": [ - { - "end_col": 50, - "end_line": 203, - "input_file": { - "filename": "src/subdomain/Subdomain.cairo" - }, - "start_col": 46, - "start_line": 203 - }, - "While expanding the reference 'char' in:" - ], - "start_col": 21, - "start_line": 202 - } - }, - "998": { - "accessible_scopes": [ - "__main__", - "__main__._basic_encoding" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 51, - "end_line": 203, - "input_file": { - "filename": "src/subdomain/Subdomain.cairo" - }, - "start_col": 19, - "start_line": 203 - } - }, - "1000": { - "accessible_scopes": [ - "__main__", - "__main__._basic_encoding" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 52, - "end_line": 204, - "input_file": { - "filename": "src/subdomain/Subdomain.cairo" - }, - "start_col": 33, - "start_line": 204 - } - }, - "1002": { - "accessible_scopes": [ - "__main__", - "__main__._basic_encoding" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 51, - "end_line": 207, - "input_file": { - "filename": "src/subdomain/Subdomain.cairo" - }, - "parent_location": [ - { - "end_col": 51, - "end_line": 203, - "input_file": { - "filename": "src/subdomain/Subdomain.cairo" - }, - "parent_location": [ - { - "end_col": 40, - "end_line": 191, - "input_file": { - "filename": "src/subdomain/Subdomain.cairo" - }, - "parent_location": [ - { - "end_col": 63, - "end_line": 204, - "input_file": { - "filename": "src/subdomain/Subdomain.cairo" - }, - "start_col": 12, - "start_line": 204 - }, - "While trying to retrieve the implicit argument 'syscall_ptr' in:" - ], - "start_col": 22, - "start_line": 191 - }, - "While expanding the reference 'syscall_ptr' in:" - ], - "start_col": 19, - "start_line": 203 - }, - "While trying to update the implicit return value 'syscall_ptr' in:" - ], - "start_col": 33, - "start_line": 207 - } - }, - "1003": { - "accessible_scopes": [ - "__main__", - "__main__._basic_encoding" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 79, - "end_line": 207, - "input_file": { - "filename": "src/subdomain/Subdomain.cairo" - }, - "parent_location": [ - { - "end_col": 51, - "end_line": 203, - "input_file": { - "filename": "src/subdomain/Subdomain.cairo" - }, - "parent_location": [ - { - "end_col": 68, - "end_line": 191, - "input_file": { - "filename": "src/subdomain/Subdomain.cairo" - }, - "parent_location": [ - { - "end_col": 63, - "end_line": 204, - "input_file": { - "filename": "src/subdomain/Subdomain.cairo" - }, - "start_col": 12, - "start_line": 204 - }, - "While trying to retrieve the implicit argument 'pedersen_ptr' in:" - ], - "start_col": 42, - "start_line": 191 - }, - "While expanding the reference 'pedersen_ptr' in:" - ], - "start_col": 19, - "start_line": 203 - }, - "While trying to update the implicit return value 'pedersen_ptr' in:" - ], - "start_col": 53, - "start_line": 207 - } - }, - "1004": { - "accessible_scopes": [ - "__main__", - "__main__._basic_encoding" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 96, - "end_line": 207, - "input_file": { - "filename": "src/subdomain/Subdomain.cairo" - }, - "parent_location": [ - { - "end_col": 51, - "end_line": 203, - "input_file": { - "filename": "src/subdomain/Subdomain.cairo" - }, - "parent_location": [ - { - "end_col": 85, - "end_line": 191, - "input_file": { - "filename": "src/subdomain/Subdomain.cairo" - }, - "parent_location": [ - { - "end_col": 63, - "end_line": 204, - "input_file": { - "filename": "src/subdomain/Subdomain.cairo" - }, - "start_col": 12, - "start_line": 204 - }, - "While trying to retrieve the implicit argument 'range_check_ptr' in:" - ], - "start_col": 70, - "start_line": 191 - }, - "While expanding the reference 'range_check_ptr' in:" - ], - "start_col": 19, - "start_line": 203 - }, - "While trying to update the implicit return value 'range_check_ptr' in:" - ], - "start_col": 81, - "start_line": 207 - } - }, - "1005": { - "accessible_scopes": [ - "__main__", - "__main__._basic_encoding" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 19, - "end_line": 202, - "input_file": { - "filename": "src/subdomain/Subdomain.cairo" - }, - "parent_location": [ - { - "end_col": 31, - "end_line": 204, - "input_file": { - "filename": "src/subdomain/Subdomain.cairo" - }, - "start_col": 28, - "start_line": 204 - }, - "While expanding the reference 'str' in:" - ], - "start_col": 16, - "start_line": 202 - } - }, - "1006": { - "accessible_scopes": [ - "__main__", - "__main__._basic_encoding" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 62, - "end_line": 204, - "input_file": { - "filename": "src/subdomain/Subdomain.cairo" - }, - "start_col": 33, - "start_line": 204 - } - }, - "1007": { - "accessible_scopes": [ - "__main__", - "__main__._basic_encoding" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 63, - "end_line": 204, - "input_file": { - "filename": "src/subdomain/Subdomain.cairo" - }, - "start_col": 12, - "start_line": 204 - } - }, - "1009": { - "accessible_scopes": [ - "__main__", - "__main__._basic_encoding" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 64, - "end_line": 204, - "input_file": { - "filename": "src/subdomain/Subdomain.cairo" - }, - "start_col": 5, - "start_line": 204 - } - }, - "1010": { - "accessible_scopes": [ - "__main__", - "__main__._ascii_to_starknet_id_base" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 22, - "end_line": 211, - "input_file": { - "filename": "src/subdomain/Subdomain.cairo" - }, - "start_col": 9, - "start_line": 211 - } - }, - "1012": { - "accessible_scopes": [ - "__main__", - "__main__._ascii_to_starknet_id_base" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 7, - "end_line": 211, - "input_file": { - "filename": "src/subdomain/Subdomain.cairo" - }, - "start_col": 5, - "start_line": 211 - } - }, - "1014": { - "accessible_scopes": [ - "__main__", - "__main__._ascii_to_starknet_id_base" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 51, - "end_line": 207, - "input_file": { - "filename": "src/subdomain/Subdomain.cairo" - }, - "parent_location": [ - { - "end_col": 51, - "end_line": 207, - "input_file": { - "filename": "src/subdomain/Subdomain.cairo" - }, - "parent_location": [ - { - "end_col": 19, - "end_line": 212, - "input_file": { - "filename": "src/subdomain/Subdomain.cairo" - }, - "start_col": 9, - "start_line": 212 - }, - "While trying to retrieve the implicit argument 'syscall_ptr' in:" - ], - "start_col": 33, - "start_line": 207 - }, - "While expanding the reference 'syscall_ptr' in:" - ], - "start_col": 33, - "start_line": 207 - } - }, - "1015": { - "accessible_scopes": [ - "__main__", - "__main__._ascii_to_starknet_id_base" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 79, - "end_line": 207, - "input_file": { - "filename": "src/subdomain/Subdomain.cairo" - }, - "parent_location": [ - { - "end_col": 79, - "end_line": 207, - "input_file": { - "filename": "src/subdomain/Subdomain.cairo" - }, - "parent_location": [ - { - "end_col": 19, - "end_line": 212, - "input_file": { - "filename": "src/subdomain/Subdomain.cairo" - }, - "start_col": 9, - "start_line": 212 - }, - "While trying to retrieve the implicit argument 'pedersen_ptr' in:" - ], - "start_col": 53, - "start_line": 207 - }, - "While expanding the reference 'pedersen_ptr' in:" - ], - "start_col": 53, - "start_line": 207 - } - }, - "1016": { - "accessible_scopes": [ - "__main__", - "__main__._ascii_to_starknet_id_base" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 96, - "end_line": 207, - "input_file": { - "filename": "src/subdomain/Subdomain.cairo" - }, - "parent_location": [ - { - "end_col": 96, - "end_line": 207, - "input_file": { - "filename": "src/subdomain/Subdomain.cairo" - }, - "parent_location": [ - { - "end_col": 19, - "end_line": 212, - "input_file": { - "filename": "src/subdomain/Subdomain.cairo" - }, - "start_col": 9, - "start_line": 212 - }, - "While trying to retrieve the implicit argument 'range_check_ptr' in:" - ], - "start_col": 81, - "start_line": 207 - }, - "While expanding the reference 'range_check_ptr' in:" - ], - "start_col": 81, - "start_line": 207 - } - }, - "1017": { - "accessible_scopes": [ - "__main__", - "__main__._ascii_to_starknet_id_base" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 18, - "end_line": 212, - "input_file": { - "filename": "src/subdomain/Subdomain.cairo" - }, - "start_col": 16, - "start_line": 212 - } - }, - "1019": { - "accessible_scopes": [ - "__main__", - "__main__._ascii_to_starknet_id_base" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 19, - "end_line": 212, - "input_file": { - "filename": "src/subdomain/Subdomain.cairo" - }, - "start_col": 9, - "start_line": 212 - } - }, - "1020": { - "accessible_scopes": [ - "__main__", - "__main__._ascii_to_starknet_id_base" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 96, - "end_line": 207, - "input_file": { - "filename": "src/subdomain/Subdomain.cairo" - }, - "parent_location": [ - { - "end_col": 27, - "end_line": 42, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/math_cmp.cairo" - }, - "parent_location": [ - { - "end_col": 39, - "end_line": 214, - "input_file": { - "filename": "src/subdomain/Subdomain.cairo" - }, - "start_col": 21, - "start_line": 214 - }, - "While trying to retrieve the implicit argument 'range_check_ptr' in:" - ], - "start_col": 12, - "start_line": 42 - }, - "While expanding the reference 'range_check_ptr' in:" - ], - "start_col": 81, - "start_line": 207 - } - }, - "1021": { - "accessible_scopes": [ - "__main__", - "__main__._ascii_to_starknet_id_base" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 31, - "end_line": 214, - "input_file": { - "filename": "src/subdomain/Subdomain.cairo" - }, - "start_col": 27, - "start_line": 214 - } - }, - "1023": { - "accessible_scopes": [ - "__main__", - "__main__._ascii_to_starknet_id_base" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 16, - "end_line": 208, - "input_file": { - "filename": "src/subdomain/Subdomain.cairo" - }, - "parent_location": [ - { - "end_col": 38, - "end_line": 214, - "input_file": { - "filename": "src/subdomain/Subdomain.cairo" - }, - "start_col": 33, - "start_line": 214 - }, - "While expanding the reference 'ascii' in:" - ], - "start_col": 5, - "start_line": 208 - } - }, - "1024": { - "accessible_scopes": [ - "__main__", - "__main__._ascii_to_starknet_id_base" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 39, - "end_line": 214, - "input_file": { - "filename": "src/subdomain/Subdomain.cairo" - }, - "start_col": 21, - "start_line": 214 - } - }, - "1026": { - "accessible_scopes": [ - "__main__", - "__main__._ascii_to_starknet_id_base" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 7, - "end_line": 215, - "input_file": { - "filename": "src/subdomain/Subdomain.cairo" - }, - "start_col": 5, - "start_line": 215 - } - }, - "1028": { - "accessible_scopes": [ - "__main__", - "__main__._ascii_to_starknet_id_base" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 27, - "end_line": 42, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/math_cmp.cairo" - }, - "parent_location": [ - { - "end_col": 39, - "end_line": 214, - "input_file": { - "filename": "src/subdomain/Subdomain.cairo" - }, - "parent_location": [ - { - "end_col": 31, - "end_line": 53, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/math.cairo" - }, - "parent_location": [ - { - "end_col": 29, - "end_line": 219, - "input_file": { - "filename": "src/subdomain/Subdomain.cairo" - }, - "start_col": 9, - "start_line": 219 - }, - "While trying to retrieve the implicit argument 'range_check_ptr' in:" - ], - "start_col": 16, - "start_line": 53 - }, - "While expanding the reference 'range_check_ptr' in:" - ], - "start_col": 21, - "start_line": 214 - }, - "While trying to update the implicit return value 'range_check_ptr' in:" - ], - "start_col": 12, - "start_line": 42 - } - }, - "1029": { - "accessible_scopes": [ - "__main__", - "__main__._ascii_to_starknet_id_base" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 38, - "end_line": 218, - "input_file": { - "filename": "src/subdomain/Subdomain.cairo" - }, - "parent_location": [ - { - "end_col": 24, - "end_line": 219, - "input_file": { - "filename": "src/subdomain/Subdomain.cairo" - }, - "start_col": 19, - "start_line": 219 - }, - "While expanding the reference 'index' in:" - ], - "start_col": 21, - "start_line": 218 - } - }, - "1031": { - "accessible_scopes": [ - "__main__", - "__main__._ascii_to_starknet_id_base" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 28, - "end_line": 219, - "input_file": { - "filename": "src/subdomain/Subdomain.cairo" - }, - "start_col": 26, - "start_line": 219 - } - }, - "1033": { - "accessible_scopes": [ - "__main__", - "__main__._ascii_to_starknet_id_base" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 29, - "end_line": 219, - "input_file": { - "filename": "src/subdomain/Subdomain.cairo" - }, - "start_col": 9, - "start_line": 219 - } - }, - "1035": { - "accessible_scopes": [ - "__main__", - "__main__._ascii_to_starknet_id_base" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 21, - "end_line": 220, - "input_file": { - "filename": "src/subdomain/Subdomain.cairo" - }, - "start_col": 19, - "start_line": 220 - } - }, - "1037": { - "accessible_scopes": [ - "__main__", - "__main__._ascii_to_starknet_id_base" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 38, - "end_line": 218, - "input_file": { - "filename": "src/subdomain/Subdomain.cairo" - }, - "parent_location": [ - { - "end_col": 28, - "end_line": 220, - "input_file": { - "filename": "src/subdomain/Subdomain.cairo" - }, - "start_col": 23, - "start_line": 220 - }, - "While expanding the reference 'index' in:" - ], - "start_col": 21, - "start_line": 218 - } - }, - "1039": { - "accessible_scopes": [ - "__main__", - "__main__._ascii_to_starknet_id_base" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 29, - "end_line": 220, - "input_file": { - "filename": "src/subdomain/Subdomain.cairo" - }, - "start_col": 9, - "start_line": 220 - } - }, - "1041": { - "accessible_scopes": [ - "__main__", - "__main__._ascii_to_starknet_id_base" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 51, - "end_line": 207, - "input_file": { - "filename": "src/subdomain/Subdomain.cairo" - }, - "parent_location": [ - { - "end_col": 51, - "end_line": 207, - "input_file": { - "filename": "src/subdomain/Subdomain.cairo" - }, - "parent_location": [ - { - "end_col": 22, - "end_line": 221, - "input_file": { - "filename": "src/subdomain/Subdomain.cairo" - }, - "start_col": 9, - "start_line": 221 - }, - "While trying to retrieve the implicit argument 'syscall_ptr' in:" - ], - "start_col": 33, - "start_line": 207 - }, - "While expanding the reference 'syscall_ptr' in:" - ], - "start_col": 33, - "start_line": 207 - } - }, - "1042": { - "accessible_scopes": [ - "__main__", - "__main__._ascii_to_starknet_id_base" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 79, - "end_line": 207, - "input_file": { - "filename": "src/subdomain/Subdomain.cairo" - }, - "parent_location": [ - { - "end_col": 79, - "end_line": 207, - "input_file": { - "filename": "src/subdomain/Subdomain.cairo" - }, - "parent_location": [ - { - "end_col": 22, - "end_line": 221, - "input_file": { - "filename": "src/subdomain/Subdomain.cairo" - }, - "start_col": 9, - "start_line": 221 - }, - "While trying to retrieve the implicit argument 'pedersen_ptr' in:" - ], - "start_col": 53, - "start_line": 207 - }, - "While expanding the reference 'pedersen_ptr' in:" - ], - "start_col": 53, - "start_line": 207 - } - }, - "1043": { - "accessible_scopes": [ - "__main__", - "__main__._ascii_to_starknet_id_base" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 31, - "end_line": 53, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/math.cairo" - }, - "parent_location": [ - { - "end_col": 29, - "end_line": 220, - "input_file": { - "filename": "src/subdomain/Subdomain.cairo" - }, - "parent_location": [ - { - "end_col": 96, - "end_line": 207, - "input_file": { - "filename": "src/subdomain/Subdomain.cairo" - }, - "parent_location": [ - { - "end_col": 22, - "end_line": 221, - "input_file": { - "filename": "src/subdomain/Subdomain.cairo" - }, - "start_col": 9, - "start_line": 221 - }, - "While trying to retrieve the implicit argument 'range_check_ptr' in:" - ], - "start_col": 81, - "start_line": 207 - }, - "While expanding the reference 'range_check_ptr' in:" - ], - "start_col": 9, - "start_line": 220 - }, - "While trying to update the implicit return value 'range_check_ptr' in:" - ], - "start_col": 16, - "start_line": 53 - } - }, - "1044": { - "accessible_scopes": [ - "__main__", - "__main__._ascii_to_starknet_id_base" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 38, - "end_line": 218, - "input_file": { - "filename": "src/subdomain/Subdomain.cairo" - }, - "parent_location": [ - { - "end_col": 21, - "end_line": 221, - "input_file": { - "filename": "src/subdomain/Subdomain.cairo" - }, - "start_col": 16, - "start_line": 221 - }, - "While expanding the reference 'index' in:" - ], - "start_col": 21, - "start_line": 218 - } - }, - "1046": { - "accessible_scopes": [ - "__main__", - "__main__._ascii_to_starknet_id_base" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 22, - "end_line": 221, - "input_file": { - "filename": "src/subdomain/Subdomain.cairo" - }, - "start_col": 9, - "start_line": 221 - } - }, - "1047": { - "accessible_scopes": [ - "__main__", - "__main__._ascii_to_starknet_id_base" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 27, - "end_line": 42, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/math_cmp.cairo" - }, - "parent_location": [ - { - "end_col": 39, - "end_line": 214, - "input_file": { - "filename": "src/subdomain/Subdomain.cairo" - }, - "parent_location": [ - { - "end_col": 31, - "end_line": 53, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/math.cairo" - }, - "parent_location": [ - { - "end_col": 25, - "end_line": 224, - "input_file": { - "filename": "src/subdomain/Subdomain.cairo" - }, - "start_col": 5, - "start_line": 224 - }, - "While trying to retrieve the implicit argument 'range_check_ptr' in:" - ], - "start_col": 16, - "start_line": 53 - }, - "While expanding the reference 'range_check_ptr' in:" - ], - "start_col": 21, - "start_line": 214 - }, - "While trying to update the implicit return value 'range_check_ptr' in:" - ], - "start_col": 12, - "start_line": 42 - } - }, - "1048": { - "accessible_scopes": [ - "__main__", - "__main__._ascii_to_starknet_id_base" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 29, - "end_line": 223, - "input_file": { - "filename": "src/subdomain/Subdomain.cairo" - }, - "parent_location": [ - { - "end_col": 20, - "end_line": 224, - "input_file": { - "filename": "src/subdomain/Subdomain.cairo" - }, - "start_col": 15, - "start_line": 224 - }, - "While expanding the reference 'index' in:" - ], - "start_col": 17, - "start_line": 223 - } - }, - "1050": { - "accessible_scopes": [ - "__main__", - "__main__._ascii_to_starknet_id_base" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 24, - "end_line": 224, - "input_file": { - "filename": "src/subdomain/Subdomain.cairo" - }, - "start_col": 22, - "start_line": 224 - } - }, - "1052": { - "accessible_scopes": [ - "__main__", - "__main__._ascii_to_starknet_id_base" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 25, - "end_line": 224, - "input_file": { - "filename": "src/subdomain/Subdomain.cairo" - }, - "start_col": 5, - "start_line": 224 - } - }, - "1054": { - "accessible_scopes": [ - "__main__", - "__main__._ascii_to_starknet_id_base" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 51, - "end_line": 207, - "input_file": { - "filename": "src/subdomain/Subdomain.cairo" - }, - "parent_location": [ - { - "end_col": 51, - "end_line": 207, - "input_file": { - "filename": "src/subdomain/Subdomain.cairo" - }, - "parent_location": [ - { - "end_col": 18, - "end_line": 225, - "input_file": { - "filename": "src/subdomain/Subdomain.cairo" - }, - "start_col": 5, - "start_line": 225 - }, - "While trying to retrieve the implicit argument 'syscall_ptr' in:" - ], - "start_col": 33, - "start_line": 207 - }, - "While expanding the reference 'syscall_ptr' in:" - ], - "start_col": 33, - "start_line": 207 - } - }, - "1055": { - "accessible_scopes": [ - "__main__", - "__main__._ascii_to_starknet_id_base" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 79, - "end_line": 207, - "input_file": { - "filename": "src/subdomain/Subdomain.cairo" - }, - "parent_location": [ - { - "end_col": 79, - "end_line": 207, - "input_file": { - "filename": "src/subdomain/Subdomain.cairo" - }, - "parent_location": [ - { - "end_col": 18, - "end_line": 225, - "input_file": { - "filename": "src/subdomain/Subdomain.cairo" - }, - "start_col": 5, - "start_line": 225 - }, - "While trying to retrieve the implicit argument 'pedersen_ptr' in:" - ], - "start_col": 53, - "start_line": 207 - }, - "While expanding the reference 'pedersen_ptr' in:" - ], - "start_col": 53, - "start_line": 207 - } - }, - "1056": { - "accessible_scopes": [ - "__main__", - "__main__._ascii_to_starknet_id_base" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 31, - "end_line": 53, - "input_file": { - "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/math.cairo" - }, - "parent_location": [ - { - "end_col": 25, - "end_line": 224, - "input_file": { - "filename": "src/subdomain/Subdomain.cairo" - }, - "parent_location": [ - { - "end_col": 96, - "end_line": 207, - "input_file": { - "filename": "src/subdomain/Subdomain.cairo" - }, - "parent_location": [ - { - "end_col": 18, - "end_line": 225, - "input_file": { - "filename": "src/subdomain/Subdomain.cairo" - }, - "start_col": 5, - "start_line": 225 - }, - "While trying to retrieve the implicit argument 'range_check_ptr' in:" - ], - "start_col": 81, - "start_line": 207 - }, - "While expanding the reference 'range_check_ptr' in:" - ], - "start_col": 5, - "start_line": 224 - }, - "While trying to update the implicit return value 'range_check_ptr' in:" - ], - "start_col": 16, - "start_line": 53 - } - }, - "1057": { - "accessible_scopes": [ - "__main__", - "__main__._ascii_to_starknet_id_base" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 29, - "end_line": 223, - "input_file": { - "filename": "src/subdomain/Subdomain.cairo" - }, - "parent_location": [ - { - "end_col": 17, - "end_line": 225, - "input_file": { - "filename": "src/subdomain/Subdomain.cairo" - }, - "start_col": 12, - "start_line": 225 - }, - "While expanding the reference 'index' in:" - ], - "start_col": 17, - "start_line": 223 - } - }, - "1059": { - "accessible_scopes": [ - "__main__", - "__main__._ascii_to_starknet_id_base" - ], - "flow_tracking_data": null, - "hints": [], - "inst": { - "end_col": 18, - "end_line": 225, - "input_file": { - "filename": "src/subdomain/Subdomain.cairo" - }, - "start_col": 5, - "start_line": 225 - } - } - } - }, - "hints": { - "0": [ - { - "accessible_scopes": [ - "starkware.cairo.common.alloc", - "starkware.cairo.common.alloc.alloc" - ], - "code": "memory[ap] = segments.add()", - "flow_tracking_data": { - "ap_tracking": { - "group": 0, - "offset": 0 - }, - "reference_ids": {} - } - } - ], - "12": [ - { - "accessible_scopes": [ - "starkware.cairo.common.memcpy", - "starkware.cairo.common.memcpy.memcpy" - ], - "code": "vm_enter_scope({'n': ids.len})", - "flow_tracking_data": { - "ap_tracking": { - "group": 2, - "offset": 0 - }, - "reference_ids": { - "starkware.cairo.common.memcpy.memcpy.len": 0 - } - } - } - ], - "20": [ - { - "accessible_scopes": [ - "starkware.cairo.common.memcpy", - "starkware.cairo.common.memcpy.memcpy" - ], - "code": "n -= 1\nids.continue_copying = 1 if n > 0 else 0", - "flow_tracking_data": { - "ap_tracking": { - "group": 2, - "offset": 5 - }, - "reference_ids": { - "starkware.cairo.common.memcpy.memcpy.continue_copying": 1 - } - } - } - ], - "23": [ - { - "accessible_scopes": [ - "starkware.cairo.common.memcpy", - "starkware.cairo.common.memcpy.memcpy" - ], - "code": "vm_exit_scope()", - "flow_tracking_data": { - "ap_tracking": { - "group": 2, - "offset": 6 - }, - "reference_ids": {} - } - } - ], - "31": [ - { - "accessible_scopes": [ - "starkware.starknet.common.syscalls", - "starkware.starknet.common.syscalls.call_contract" - ], - "code": "syscall_handler.call_contract(segments=segments, syscall_ptr=ids.syscall_ptr)", - "flow_tracking_data": { - "ap_tracking": { - "group": 3, - "offset": 1 - }, - "reference_ids": { - "starkware.starknet.common.syscalls.call_contract.syscall_ptr": 2 - } - } - } - ], - "39": [ - { - "accessible_scopes": [ - "starkware.starknet.common.syscalls", - "starkware.starknet.common.syscalls.get_caller_address" - ], - "code": "syscall_handler.get_caller_address(segments=segments, syscall_ptr=ids.syscall_ptr)", - "flow_tracking_data": { - "ap_tracking": { - "group": 4, - "offset": 1 - }, - "reference_ids": { - "starkware.starknet.common.syscalls.get_caller_address.syscall_ptr": 3 - } - } - } - ], - "46": [ - { - "accessible_scopes": [ - "starkware.starknet.common.syscalls", - "starkware.starknet.common.syscalls.get_contract_address" - ], - "code": "syscall_handler.get_contract_address(segments=segments, syscall_ptr=ids.syscall_ptr)", - "flow_tracking_data": { - "ap_tracking": { - "group": 5, - "offset": 1 - }, - "reference_ids": { - "starkware.starknet.common.syscalls.get_contract_address.syscall_ptr": 4 - } - } - } - ], - "54": [ - { - "accessible_scopes": [ - "starkware.starknet.common.syscalls", - "starkware.starknet.common.syscalls.storage_read" - ], - "code": "syscall_handler.storage_read(segments=segments, syscall_ptr=ids.syscall_ptr)", - "flow_tracking_data": { - "ap_tracking": { - "group": 6, - "offset": 1 - }, - "reference_ids": { - "starkware.starknet.common.syscalls.storage_read.syscall_ptr": 5 - } - } - } - ], - "63": [ - { - "accessible_scopes": [ - "starkware.starknet.common.syscalls", - "starkware.starknet.common.syscalls.storage_write" - ], - "code": "syscall_handler.storage_write(segments=segments, syscall_ptr=ids.syscall_ptr)", - "flow_tracking_data": { - "ap_tracking": { - "group": 7, - "offset": 1 - }, - "reference_ids": { - "starkware.starknet.common.syscalls.storage_write.syscall_ptr": 6 - } - } - } - ], - "69": [ - { - "accessible_scopes": [ - "starkware.starknet.common.syscalls", - "starkware.starknet.common.syscalls.get_tx_info" - ], - "code": "syscall_handler.get_tx_info(segments=segments, syscall_ptr=ids.syscall_ptr)", - "flow_tracking_data": { - "ap_tracking": { - "group": 8, - "offset": 1 - }, - "reference_ids": { - "starkware.starknet.common.syscalls.get_tx_info.syscall_ptr": 7 - } - } - } - ], - "73": [ - { - "accessible_scopes": [ - "starkware.cairo.common.math", - "starkware.cairo.common.math.assert_nn" - ], - "code": "from starkware.cairo.common.math_utils import assert_integer\nassert_integer(ids.a)\nassert 0 <= ids.a % PRIME < range_check_builtin.bound, f'a = {ids.a} is out of range.'", - "flow_tracking_data": { - "ap_tracking": { - "group": 9, - "offset": 0 - }, - "reference_ids": { - "starkware.cairo.common.math.assert_nn.a": 8 - } - } - } - ], - "82": [ - { - "accessible_scopes": [ - "starkware.cairo.common.math", - "starkware.cairo.common.math.split_felt" - ], - "code": "from starkware.cairo.common.math_utils import assert_integer\nassert ids.MAX_HIGH < 2**128 and ids.MAX_LOW < 2**128\nassert PRIME - 1 == ids.MAX_HIGH * 2**128 + ids.MAX_LOW\nassert_integer(ids.value)\nids.low = ids.value & ((1 << 128) - 1)\nids.high = ids.value >> 128", - "flow_tracking_data": { - "ap_tracking": { - "group": 11, - "offset": 0 - }, - "reference_ids": { - "starkware.cairo.common.math.split_felt.high": 11, - "starkware.cairo.common.math.split_felt.low": 10, - "starkware.cairo.common.math.split_felt.value": 9 - } - } - } - ], - "111": [ - { - "accessible_scopes": [ - "starkware.cairo.common.math", - "starkware.cairo.common.math.assert_le_felt" - ], - "code": "import itertools\n\nfrom starkware.cairo.common.math_utils import assert_integer\nassert_integer(ids.a)\nassert_integer(ids.b)\na = ids.a % PRIME\nb = ids.b % PRIME\nassert a <= b, f'a = {a} is not less than or equal to b = {b}.'\n\n# Find an arc less than PRIME / 3, and another less than PRIME / 2.\nlengths_and_indices = [(a, 0), (b - a, 1), (PRIME - 1 - b, 2)]\nlengths_and_indices.sort()\nassert lengths_and_indices[0][0] <= PRIME // 3 and lengths_and_indices[1][0] <= PRIME // 2\nexcluded = lengths_and_indices[2][1]\n\nmemory[ids.range_check_ptr + 1], memory[ids.range_check_ptr + 0] = (\n divmod(lengths_and_indices[0][0], ids.PRIME_OVER_3_HIGH))\nmemory[ids.range_check_ptr + 3], memory[ids.range_check_ptr + 2] = (\n divmod(lengths_and_indices[1][0], ids.PRIME_OVER_2_HIGH))", - "flow_tracking_data": { - "ap_tracking": { - "group": 12, - "offset": 0 - }, - "reference_ids": { - "starkware.cairo.common.math.assert_le_felt.a": 12, - "starkware.cairo.common.math.assert_le_felt.b": 13, - "starkware.cairo.common.math.assert_le_felt.range_check_ptr": 14 - } - } - } - ], - "121": [ - { - "accessible_scopes": [ - "starkware.cairo.common.math", - "starkware.cairo.common.math.assert_le_felt" - ], - "code": "memory[ap] = 1 if excluded != 0 else 0", - "flow_tracking_data": { - "ap_tracking": { - "group": 12, - "offset": 8 - }, - "reference_ids": {} - } - } - ], - "135": [ - { - "accessible_scopes": [ - "starkware.cairo.common.math", - "starkware.cairo.common.math.assert_le_felt" - ], - "code": "memory[ap] = 1 if excluded != 1 else 0", - "flow_tracking_data": { - "ap_tracking": { - "group": 12, - "offset": 9 - }, - "reference_ids": {} - } - } - ], - "147": [ - { - "accessible_scopes": [ - "starkware.cairo.common.math", - "starkware.cairo.common.math.assert_le_felt" - ], - "code": "assert excluded == 2", - "flow_tracking_data": { - "ap_tracking": { - "group": 12, - "offset": 10 - }, - "reference_ids": {} - } - } - ], - "156": [ - { - "accessible_scopes": [ - "starkware.cairo.common.math", - "starkware.cairo.common.math.unsigned_div_rem" - ], - "code": "from starkware.cairo.common.math_utils import assert_integer\nassert_integer(ids.div)\nassert 0 < ids.div <= PRIME // range_check_builtin.bound, \\\n f'div={hex(ids.div)} is out of the valid range.'\nids.q, ids.r = divmod(ids.value, ids.div)", - "flow_tracking_data": { - "ap_tracking": { - "group": 13, - "offset": 0 - }, - "reference_ids": { - "starkware.cairo.common.math.unsigned_div_rem.div": 16, - "starkware.cairo.common.math.unsigned_div_rem.q": 18, - "starkware.cairo.common.math.unsigned_div_rem.r": 17, - "starkware.cairo.common.math.unsigned_div_rem.value": 15 - } - } - } - ], - "171": [ - { - "accessible_scopes": [ - "starkware.cairo.common.signature", - "starkware.cairo.common.signature.verify_ecdsa_signature" - ], - "code": "ecdsa_builtin.add_signature(ids.ecdsa_ptr.address_, (ids.signature_r, ids.signature_s))", - "flow_tracking_data": { - "ap_tracking": { - "group": 14, - "offset": 0 - }, - "reference_ids": { - "starkware.cairo.common.signature.verify_ecdsa_signature.ecdsa_ptr": 21, - "starkware.cairo.common.signature.verify_ecdsa_signature.signature_r": 19, - "starkware.cairo.common.signature.verify_ecdsa_signature.signature_s": 20 - } - } - } - ], - "184": [ - { - "accessible_scopes": [ - "starkware.cairo.common.math_cmp", - "starkware.cairo.common.math_cmp.is_nn" - ], - "code": "memory[ap] = 0 if 0 <= (ids.a % PRIME) < range_check_builtin.bound else 1", - "flow_tracking_data": { - "ap_tracking": { - "group": 16, - "offset": 0 - }, - "reference_ids": { - "starkware.cairo.common.math_cmp.is_nn.a": 22 - } - } - } - ], - "194": [ - { - "accessible_scopes": [ - "starkware.cairo.common.math_cmp", - "starkware.cairo.common.math_cmp.is_nn" - ], - "code": "memory[ap] = 0 if 0 <= ((-ids.a - 1) % PRIME) < range_check_builtin.bound else 1", - "flow_tracking_data": { - "ap_tracking": { - "group": 16, - "offset": 1 - }, - "reference_ids": { - "starkware.cairo.common.math_cmp.is_nn.a": 22 - } - } - } - ], - "564": [ - { - "accessible_scopes": [ - "__main__", - "__main__", - "__wrappers__", - "__wrappers__.initializer" - ], - "code": "memory[ap] = segments.add()", - "flow_tracking_data": { - "ap_tracking": { - "group": 42, - "offset": 92 - }, - "reference_ids": {} - } - } - ], - "632": [ - { - "accessible_scopes": [ - "__main__", - "__main__", - "__wrappers__", - "__wrappers__.claim_domain_back" - ], - "code": "memory[ap] = segments.add()", - "flow_tracking_data": { - "ap_tracking": { - "group": 48, - "offset": 0 - }, - "reference_ids": {} - } - } - ], - "760": [ - { - "accessible_scopes": [ - "__main__", - "__main__", - "__wrappers__", - "__wrappers__.register_encode_return" - ], - "code": "memory[ap] = segments.add()", - "flow_tracking_data": { - "ap_tracking": { - "group": 54, - "offset": 0 - }, - "reference_ids": {} - } - } - ], - "821": [ - { - "accessible_scopes": [ - "__main__", - "__main__", - "__wrappers__", - "__wrappers__.open_registration" - ], - "code": "memory[ap] = segments.add()", - "flow_tracking_data": { - "ap_tracking": { - "group": 62, - "offset": 0 - }, - "reference_ids": {} - } - } - ], - "847": [ - { - "accessible_scopes": [ - "__main__", - "__main__", - "__wrappers__", - "__wrappers__.close_registration" - ], - "code": "memory[ap] = segments.add()", - "flow_tracking_data": { - "ap_tracking": { - "group": 66, - "offset": 0 - }, - "reference_ids": {} - } - } - ], - "863": [ - { - "accessible_scopes": [ - "__main__", - "__main__", - "__wrappers__", - "__wrappers__.is_registration_open_encode_return" - ], - "code": "memory[ap] = segments.add()", - "flow_tracking_data": { - "ap_tracking": { - "group": 68, - "offset": 0 - }, - "reference_ids": {} - } - } - ], - "903": [ - { - "accessible_scopes": [ - "__main__", - "__main__", - "__wrappers__", - "__wrappers__.basic_encoding_encode_return" - ], - "code": "memory[ap] = segments.add()", - "flow_tracking_data": { - "ap_tracking": { - "group": 72, - "offset": 0 - }, - "reference_ids": {} - } - } - ] - }, - "identifiers": { - "__main__.FALSE": { - "destination": "starkware.cairo.common.bool.FALSE", - "type": "alias" - }, - "__main__.HashBuiltin": { - "destination": "starkware.cairo.common.cairo_builtins.HashBuiltin", - "type": "alias" - }, - "__main__.INaming": { - "destination": "interfaces.INaming", - "type": "alias" - }, - "__main__.ISheet": { - "destination": "interfaces.ISheet", - "type": "alias" - }, - "__main__.IStarknetId": { - "destination": "interfaces.IStarknetId", - "type": "alias" - }, - "__main__.Proxy": { - "destination": "openzeppelin.upgrades.library.Proxy", - "type": "alias" - }, - "__main__.SignatureBuiltin": { - "destination": "starkware.cairo.common.cairo_builtins.SignatureBuiltin", - "type": "alias" - }, - "__main__.TRUE": { - "destination": "starkware.cairo.common.bool.TRUE", - "type": "alias" - }, - "__main__.Uint256": { - "destination": "starkware.cairo.common.uint256.Uint256", - "type": "alias" - }, - "__main__._admin_address": { - "type": "namespace" - }, - "__main__._admin_address.Args": { - "full_name": "__main__._admin_address.Args", - "members": {}, - "size": 0, - "type": "struct" - }, - "__main__._admin_address.HashBuiltin": { - "destination": "starkware.cairo.common.cairo_builtins.HashBuiltin", - "type": "alias" - }, - "__main__._admin_address.ImplicitArgs": { - "full_name": "__main__._admin_address.ImplicitArgs", - "members": {}, - "size": 0, - "type": "struct" - }, - "__main__._admin_address.Return": { - "cairo_type": "()", - "type": "type_definition" - }, - "__main__._admin_address.SIZEOF_LOCALS": { - "type": "const", - "value": 0 - }, - "__main__._admin_address.addr": { - "decorators": [], - "pc": 473, - "type": "function" - }, - "__main__._admin_address.addr.Args": { - "full_name": "__main__._admin_address.addr.Args", - "members": {}, - "size": 0, - "type": "struct" - }, - "__main__._admin_address.addr.ImplicitArgs": { - "full_name": "__main__._admin_address.addr.ImplicitArgs", - "members": { - "pedersen_ptr": { - "cairo_type": "starkware.cairo.common.cairo_builtins.HashBuiltin*", - "offset": 0 - }, - "range_check_ptr": { - "cairo_type": "felt", - "offset": 1 - } - }, - "size": 2, - "type": "struct" - }, - "__main__._admin_address.addr.Return": { - "cairo_type": "(res: felt)", - "type": "type_definition" - }, - "__main__._admin_address.addr.SIZEOF_LOCALS": { - "type": "const", - "value": 0 - }, - "__main__._admin_address.hash2": { - "destination": "starkware.cairo.common.hash.hash2", - "type": "alias" - }, - "__main__._admin_address.normalize_address": { - "destination": "starkware.starknet.common.storage.normalize_address", - "type": "alias" - }, - "__main__._admin_address.read": { - "decorators": [], - "pc": 478, - "type": "function" - }, - "__main__._admin_address.read.Args": { - "full_name": "__main__._admin_address.read.Args", - "members": {}, - "size": 0, - "type": "struct" - }, - "__main__._admin_address.read.ImplicitArgs": { - "full_name": "__main__._admin_address.read.ImplicitArgs", - "members": { - "pedersen_ptr": { - "cairo_type": "starkware.cairo.common.cairo_builtins.HashBuiltin*", - "offset": 1 - }, - "range_check_ptr": { - "cairo_type": "felt", - "offset": 2 - }, - "syscall_ptr": { - "cairo_type": "felt*", - "offset": 0 - } - }, - "size": 3, - "type": "struct" - }, - "__main__._admin_address.read.Return": { - "cairo_type": "(address: felt)", - "type": "type_definition" - }, - "__main__._admin_address.read.SIZEOF_LOCALS": { - "type": "const", - "value": 0 - }, - "__main__._admin_address.storage_read": { - "destination": "starkware.starknet.common.syscalls.storage_read", - "type": "alias" - }, - "__main__._admin_address.storage_write": { - "destination": "starkware.starknet.common.syscalls.storage_write", - "type": "alias" - }, - "__main__._admin_address.write": { - "decorators": [], - "pc": 491, - "type": "function" - }, - "__main__._admin_address.write.Args": { - "full_name": "__main__._admin_address.write.Args", - "members": { - "value": { - "cairo_type": "felt", - "offset": 0 - } - }, - "size": 1, - "type": "struct" - }, - "__main__._admin_address.write.ImplicitArgs": { - "full_name": "__main__._admin_address.write.ImplicitArgs", - "members": { - "pedersen_ptr": { - "cairo_type": "starkware.cairo.common.cairo_builtins.HashBuiltin*", - "offset": 1 - }, - "range_check_ptr": { - "cairo_type": "felt", - "offset": 2 - }, - "syscall_ptr": { - "cairo_type": "felt*", - "offset": 0 - } - }, - "size": 3, - "type": "struct" - }, - "__main__._admin_address.write.Return": { - "cairo_type": "()", - "type": "type_definition" - }, - "__main__._admin_address.write.SIZEOF_LOCALS": { - "type": "const", - "value": 0 - }, - "__main__._ascii_to_starknet_id_base": { - "decorators": [], - "pc": 1010, - "type": "function" - }, - "__main__._ascii_to_starknet_id_base.Args": { - "full_name": "__main__._ascii_to_starknet_id_base.Args", - "members": { - "ascii": { - "cairo_type": "felt", - "offset": 0 - } - }, - "size": 1, - "type": "struct" - }, - "__main__._ascii_to_starknet_id_base.ImplicitArgs": { - "full_name": "__main__._ascii_to_starknet_id_base.ImplicitArgs", - "members": { - "pedersen_ptr": { - "cairo_type": "starkware.cairo.common.cairo_builtins.HashBuiltin*", - "offset": 1 - }, - "range_check_ptr": { - "cairo_type": "felt", - "offset": 2 - }, - "syscall_ptr": { - "cairo_type": "felt*", - "offset": 0 - } - }, - "size": 3, - "type": "struct" - }, - "__main__._ascii_to_starknet_id_base.Return": { - "cairo_type": "felt", - "type": "type_definition" - }, - "__main__._ascii_to_starknet_id_base.SIZEOF_LOCALS": { - "type": "const", - "value": 0 - }, - "__main__._basic_encoding": { - "decorators": [], - "pc": 964, - "type": "function" - }, - "__main__._basic_encoding.Args": { - "full_name": "__main__._basic_encoding.Args", - "members": { - "domain_ascii": { - "cairo_type": "felt", - "offset": 0 - }, - "domain_encoded": { - "cairo_type": "felt", - "offset": 1 - } - }, - "size": 2, - "type": "struct" - }, - "__main__._basic_encoding.ImplicitArgs": { - "full_name": "__main__._basic_encoding.ImplicitArgs", - "members": { - "pedersen_ptr": { - "cairo_type": "starkware.cairo.common.cairo_builtins.HashBuiltin*", - "offset": 1 - }, - "range_check_ptr": { - "cairo_type": "felt", - "offset": 2 - }, - "syscall_ptr": { - "cairo_type": "felt*", - "offset": 0 - } - }, - "size": 3, - "type": "struct" - }, - "__main__._basic_encoding.Return": { - "cairo_type": "(domain_encoded: felt)", - "type": "type_definition" - }, - "__main__._basic_encoding.SIZEOF_LOCALS": { - "type": "const", - "value": 1 - }, - "__main__._check_admin": { - "decorators": [], - "pc": 931, - "type": "function" - }, - "__main__._check_admin.Args": { - "full_name": "__main__._check_admin.Args", - "members": {}, - "size": 0, - "type": "struct" - }, - "__main__._check_admin.ImplicitArgs": { - "full_name": "__main__._check_admin.ImplicitArgs", - "members": { - "pedersen_ptr": { - "cairo_type": "starkware.cairo.common.cairo_builtins.HashBuiltin*", - "offset": 1 - }, - "range_check_ptr": { - "cairo_type": "felt", - "offset": 2 - }, - "syscall_ptr": { - "cairo_type": "felt*", - "offset": 0 - } - }, - "size": 3, - "type": "struct" - }, - "__main__._check_admin.Return": { - "cairo_type": "()", - "type": "type_definition" - }, - "__main__._check_admin.SIZEOF_LOCALS": { - "type": "const", - "value": 0 - }, - "__main__._get_contracts_addresses": { - "decorators": [], - "pc": 944, - "type": "function" - }, - "__main__._get_contracts_addresses.Args": { - "full_name": "__main__._get_contracts_addresses.Args", - "members": {}, - "size": 0, - "type": "struct" - }, - "__main__._get_contracts_addresses.ImplicitArgs": { - "full_name": "__main__._get_contracts_addresses.ImplicitArgs", - "members": { - "pedersen_ptr": { - "cairo_type": "starkware.cairo.common.cairo_builtins.HashBuiltin*", - "offset": 1 - }, - "range_check_ptr": { - "cairo_type": "felt", - "offset": 2 - }, - "syscall_ptr": { - "cairo_type": "felt*", - "offset": 0 - } - }, - "size": 3, - "type": "struct" - }, - "__main__._get_contracts_addresses.Return": { - "cairo_type": "(current_contract: felt, starknetid_contract: felt, naming_contract: felt)", - "type": "type_definition" - }, - "__main__._get_contracts_addresses.SIZEOF_LOCALS": { - "type": "const", - "value": 0 - }, - "__main__._is_registration_open": { - "type": "namespace" - }, - "__main__._is_registration_open.Args": { - "full_name": "__main__._is_registration_open.Args", - "members": {}, - "size": 0, - "type": "struct" - }, - "__main__._is_registration_open.HashBuiltin": { - "destination": "starkware.cairo.common.cairo_builtins.HashBuiltin", - "type": "alias" - }, - "__main__._is_registration_open.ImplicitArgs": { - "full_name": "__main__._is_registration_open.ImplicitArgs", - "members": {}, - "size": 0, - "type": "struct" - }, - "__main__._is_registration_open.Return": { - "cairo_type": "()", - "type": "type_definition" - }, - "__main__._is_registration_open.SIZEOF_LOCALS": { - "type": "const", - "value": 0 - }, - "__main__._is_registration_open.addr": { - "decorators": [], - "pc": 503, - "type": "function" - }, - "__main__._is_registration_open.addr.Args": { - "full_name": "__main__._is_registration_open.addr.Args", - "members": {}, - "size": 0, - "type": "struct" - }, - "__main__._is_registration_open.addr.ImplicitArgs": { - "full_name": "__main__._is_registration_open.addr.ImplicitArgs", - "members": { - "pedersen_ptr": { - "cairo_type": "starkware.cairo.common.cairo_builtins.HashBuiltin*", - "offset": 0 - }, - "range_check_ptr": { - "cairo_type": "felt", - "offset": 1 - } - }, - "size": 2, - "type": "struct" - }, - "__main__._is_registration_open.addr.Return": { - "cairo_type": "(res: felt)", - "type": "type_definition" - }, - "__main__._is_registration_open.addr.SIZEOF_LOCALS": { - "type": "const", - "value": 0 - }, - "__main__._is_registration_open.hash2": { - "destination": "starkware.cairo.common.hash.hash2", - "type": "alias" - }, - "__main__._is_registration_open.normalize_address": { - "destination": "starkware.starknet.common.storage.normalize_address", - "type": "alias" - }, - "__main__._is_registration_open.read": { - "decorators": [], - "pc": 508, - "type": "function" - }, - "__main__._is_registration_open.read.Args": { - "full_name": "__main__._is_registration_open.read.Args", - "members": {}, - "size": 0, - "type": "struct" - }, - "__main__._is_registration_open.read.ImplicitArgs": { - "full_name": "__main__._is_registration_open.read.ImplicitArgs", - "members": { - "pedersen_ptr": { - "cairo_type": "starkware.cairo.common.cairo_builtins.HashBuiltin*", - "offset": 1 - }, - "range_check_ptr": { - "cairo_type": "felt", - "offset": 2 - }, - "syscall_ptr": { - "cairo_type": "felt*", - "offset": 0 - } - }, - "size": 3, - "type": "struct" - }, - "__main__._is_registration_open.read.Return": { - "cairo_type": "(boolean: felt)", - "type": "type_definition" - }, - "__main__._is_registration_open.read.SIZEOF_LOCALS": { - "type": "const", - "value": 0 - }, - "__main__._is_registration_open.storage_read": { - "destination": "starkware.starknet.common.syscalls.storage_read", - "type": "alias" - }, - "__main__._is_registration_open.storage_write": { - "destination": "starkware.starknet.common.syscalls.storage_write", - "type": "alias" - }, - "__main__._is_registration_open.write": { - "decorators": [], - "pc": 521, - "type": "function" - }, - "__main__._is_registration_open.write.Args": { - "full_name": "__main__._is_registration_open.write.Args", - "members": { - "value": { - "cairo_type": "felt", - "offset": 0 - } - }, - "size": 1, - "type": "struct" - }, - "__main__._is_registration_open.write.ImplicitArgs": { - "full_name": "__main__._is_registration_open.write.ImplicitArgs", - "members": { - "pedersen_ptr": { - "cairo_type": "starkware.cairo.common.cairo_builtins.HashBuiltin*", - "offset": 1 - }, - "range_check_ptr": { - "cairo_type": "felt", - "offset": 2 - }, - "syscall_ptr": { - "cairo_type": "felt*", - "offset": 0 - } - }, - "size": 3, - "type": "struct" - }, - "__main__._is_registration_open.write.Return": { - "cairo_type": "()", - "type": "type_definition" - }, - "__main__._is_registration_open.write.SIZEOF_LOCALS": { - "type": "const", - "value": 0 - }, - "__main__._naming_contract": { - "type": "namespace" - }, - "__main__._naming_contract.Args": { - "full_name": "__main__._naming_contract.Args", - "members": {}, - "size": 0, - "type": "struct" - }, - "__main__._naming_contract.HashBuiltin": { - "destination": "starkware.cairo.common.cairo_builtins.HashBuiltin", - "type": "alias" - }, - "__main__._naming_contract.ImplicitArgs": { - "full_name": "__main__._naming_contract.ImplicitArgs", - "members": {}, - "size": 0, - "type": "struct" - }, - "__main__._naming_contract.Return": { - "cairo_type": "()", - "type": "type_definition" - }, - "__main__._naming_contract.SIZEOF_LOCALS": { - "type": "const", - "value": 0 - }, - "__main__._naming_contract.addr": { - "decorators": [], - "pc": 413, - "type": "function" - }, - "__main__._naming_contract.addr.Args": { - "full_name": "__main__._naming_contract.addr.Args", - "members": {}, - "size": 0, - "type": "struct" - }, - "__main__._naming_contract.addr.ImplicitArgs": { - "full_name": "__main__._naming_contract.addr.ImplicitArgs", - "members": { - "pedersen_ptr": { - "cairo_type": "starkware.cairo.common.cairo_builtins.HashBuiltin*", - "offset": 0 - }, - "range_check_ptr": { - "cairo_type": "felt", - "offset": 1 - } - }, - "size": 2, - "type": "struct" - }, - "__main__._naming_contract.addr.Return": { - "cairo_type": "(res: felt)", - "type": "type_definition" - }, - "__main__._naming_contract.addr.SIZEOF_LOCALS": { - "type": "const", - "value": 0 - }, - "__main__._naming_contract.hash2": { - "destination": "starkware.cairo.common.hash.hash2", - "type": "alias" - }, - "__main__._naming_contract.normalize_address": { - "destination": "starkware.starknet.common.storage.normalize_address", - "type": "alias" - }, - "__main__._naming_contract.read": { - "decorators": [], - "pc": 418, - "type": "function" - }, - "__main__._naming_contract.read.Args": { - "full_name": "__main__._naming_contract.read.Args", - "members": {}, - "size": 0, - "type": "struct" - }, - "__main__._naming_contract.read.ImplicitArgs": { - "full_name": "__main__._naming_contract.read.ImplicitArgs", - "members": { - "pedersen_ptr": { - "cairo_type": "starkware.cairo.common.cairo_builtins.HashBuiltin*", - "offset": 1 - }, - "range_check_ptr": { - "cairo_type": "felt", - "offset": 2 - }, - "syscall_ptr": { - "cairo_type": "felt*", - "offset": 0 - } - }, - "size": 3, - "type": "struct" - }, - "__main__._naming_contract.read.Return": { - "cairo_type": "(address: felt)", - "type": "type_definition" - }, - "__main__._naming_contract.read.SIZEOF_LOCALS": { - "type": "const", - "value": 0 - }, - "__main__._naming_contract.storage_read": { - "destination": "starkware.starknet.common.syscalls.storage_read", - "type": "alias" - }, - "__main__._naming_contract.storage_write": { - "destination": "starkware.starknet.common.syscalls.storage_write", - "type": "alias" - }, - "__main__._naming_contract.write": { - "decorators": [], - "pc": 431, - "type": "function" - }, - "__main__._naming_contract.write.Args": { - "full_name": "__main__._naming_contract.write.Args", - "members": { - "value": { - "cairo_type": "felt", - "offset": 0 - } - }, - "size": 1, - "type": "struct" - }, - "__main__._naming_contract.write.ImplicitArgs": { - "full_name": "__main__._naming_contract.write.ImplicitArgs", - "members": { - "pedersen_ptr": { - "cairo_type": "starkware.cairo.common.cairo_builtins.HashBuiltin*", - "offset": 1 - }, - "range_check_ptr": { - "cairo_type": "felt", - "offset": 2 - }, - "syscall_ptr": { - "cairo_type": "felt*", - "offset": 0 - } - }, - "size": 3, - "type": "struct" - }, - "__main__._naming_contract.write.Return": { - "cairo_type": "()", - "type": "type_definition" - }, - "__main__._naming_contract.write.SIZEOF_LOCALS": { - "type": "const", - "value": 0 - }, - "__main__._starknetid_contract": { - "type": "namespace" - }, - "__main__._starknetid_contract.Args": { - "full_name": "__main__._starknetid_contract.Args", - "members": {}, - "size": 0, - "type": "struct" - }, - "__main__._starknetid_contract.HashBuiltin": { - "destination": "starkware.cairo.common.cairo_builtins.HashBuiltin", - "type": "alias" - }, - "__main__._starknetid_contract.ImplicitArgs": { - "full_name": "__main__._starknetid_contract.ImplicitArgs", - "members": {}, - "size": 0, - "type": "struct" - }, - "__main__._starknetid_contract.Return": { - "cairo_type": "()", - "type": "type_definition" - }, - "__main__._starknetid_contract.SIZEOF_LOCALS": { - "type": "const", - "value": 0 - }, - "__main__._starknetid_contract.addr": { - "decorators": [], - "pc": 443, - "type": "function" - }, - "__main__._starknetid_contract.addr.Args": { - "full_name": "__main__._starknetid_contract.addr.Args", - "members": {}, - "size": 0, - "type": "struct" - }, - "__main__._starknetid_contract.addr.ImplicitArgs": { - "full_name": "__main__._starknetid_contract.addr.ImplicitArgs", - "members": { - "pedersen_ptr": { - "cairo_type": "starkware.cairo.common.cairo_builtins.HashBuiltin*", - "offset": 0 - }, - "range_check_ptr": { - "cairo_type": "felt", - "offset": 1 - } - }, - "size": 2, - "type": "struct" - }, - "__main__._starknetid_contract.addr.Return": { - "cairo_type": "(res: felt)", - "type": "type_definition" - }, - "__main__._starknetid_contract.addr.SIZEOF_LOCALS": { - "type": "const", - "value": 0 - }, - "__main__._starknetid_contract.hash2": { - "destination": "starkware.cairo.common.hash.hash2", - "type": "alias" - }, - "__main__._starknetid_contract.normalize_address": { - "destination": "starkware.starknet.common.storage.normalize_address", - "type": "alias" - }, - "__main__._starknetid_contract.read": { - "decorators": [], - "pc": 448, - "type": "function" - }, - "__main__._starknetid_contract.read.Args": { - "full_name": "__main__._starknetid_contract.read.Args", - "members": {}, - "size": 0, - "type": "struct" - }, - "__main__._starknetid_contract.read.ImplicitArgs": { - "full_name": "__main__._starknetid_contract.read.ImplicitArgs", - "members": { - "pedersen_ptr": { - "cairo_type": "starkware.cairo.common.cairo_builtins.HashBuiltin*", - "offset": 1 - }, - "range_check_ptr": { - "cairo_type": "felt", - "offset": 2 - }, - "syscall_ptr": { - "cairo_type": "felt*", - "offset": 0 - } - }, - "size": 3, - "type": "struct" - }, - "__main__._starknetid_contract.read.Return": { - "cairo_type": "(address: felt)", - "type": "type_definition" - }, - "__main__._starknetid_contract.read.SIZEOF_LOCALS": { - "type": "const", - "value": 0 - }, - "__main__._starknetid_contract.storage_read": { - "destination": "starkware.starknet.common.syscalls.storage_read", - "type": "alias" - }, - "__main__._starknetid_contract.storage_write": { - "destination": "starkware.starknet.common.syscalls.storage_write", - "type": "alias" - }, - "__main__._starknetid_contract.write": { - "decorators": [], - "pc": 461, - "type": "function" - }, - "__main__._starknetid_contract.write.Args": { - "full_name": "__main__._starknetid_contract.write.Args", - "members": { - "value": { - "cairo_type": "felt", - "offset": 0 - } - }, - "size": 1, - "type": "struct" - }, - "__main__._starknetid_contract.write.ImplicitArgs": { - "full_name": "__main__._starknetid_contract.write.ImplicitArgs", - "members": { - "pedersen_ptr": { - "cairo_type": "starkware.cairo.common.cairo_builtins.HashBuiltin*", - "offset": 1 - }, - "range_check_ptr": { - "cairo_type": "felt", - "offset": 2 - }, - "syscall_ptr": { - "cairo_type": "felt*", - "offset": 0 - } - }, - "size": 3, - "type": "struct" - }, - "__main__._starknetid_contract.write.Return": { - "cairo_type": "()", - "type": "type_definition" - }, - "__main__._starknetid_contract.write.SIZEOF_LOCALS": { - "type": "const", - "value": 0 - }, - "__main__.alloc": { - "destination": "starkware.cairo.common.alloc.alloc", - "type": "alias" - }, - "__main__.assert_le": { - "destination": "starkware.cairo.common.math.assert_le", - "type": "alias" - }, - "__main__.assert_le_felt": { - "destination": "starkware.cairo.common.math.assert_le_felt", - "type": "alias" - }, - "__main__.basic_encoding": { - "decorators": [ - "view" - ], - "pc": 888, - "type": "function" - }, - "__main__.basic_encoding.Args": { - "full_name": "__main__.basic_encoding.Args", - "members": { - "domain_ascii": { - "cairo_type": "felt", - "offset": 0 - } - }, - "size": 1, - "type": "struct" - }, - "__main__.basic_encoding.ImplicitArgs": { - "full_name": "__main__.basic_encoding.ImplicitArgs", - "members": { - "pedersen_ptr": { - "cairo_type": "starkware.cairo.common.cairo_builtins.HashBuiltin*", - "offset": 1 - }, - "range_check_ptr": { - "cairo_type": "felt", - "offset": 2 - }, - "syscall_ptr": { - "cairo_type": "felt*", - "offset": 0 - } - }, - "size": 3, - "type": "struct" - }, - "__main__.basic_encoding.Return": { - "cairo_type": "(domain_encoded: felt)", - "type": "type_definition" - }, - "__main__.basic_encoding.SIZEOF_LOCALS": { - "type": "const", - "value": 0 - }, - "__main__.claim_domain_back": { - "decorators": [ - "external" - ], - "pc": 574, - "type": "function" - }, - "__main__.claim_domain_back.Args": { - "full_name": "__main__.claim_domain_back.Args", - "members": { - "domain": { - "cairo_type": "felt*", - "offset": 1 - }, - "domain_len": { - "cairo_type": "felt", - "offset": 0 - } - }, - "size": 2, - "type": "struct" - }, - "__main__.claim_domain_back.ImplicitArgs": { - "full_name": "__main__.claim_domain_back.ImplicitArgs", - "members": { - "pedersen_ptr": { - "cairo_type": "starkware.cairo.common.cairo_builtins.HashBuiltin*", - "offset": 1 - }, - "range_check_ptr": { - "cairo_type": "felt", - "offset": 2 - }, - "syscall_ptr": { - "cairo_type": "felt*", - "offset": 0 - } - }, - "size": 3, - "type": "struct" - }, - "__main__.claim_domain_back.Return": { - "cairo_type": "()", - "type": "type_definition" - }, - "__main__.claim_domain_back.SIZEOF_LOCALS": { - "type": "const", - "value": 4 - }, - "__main__.close_registration": { - "decorators": [ - "external" - ], - "pc": 831, - "type": "function" - }, - "__main__.close_registration.Args": { - "full_name": "__main__.close_registration.Args", - "members": {}, - "size": 0, - "type": "struct" - }, - "__main__.close_registration.ImplicitArgs": { - "full_name": "__main__.close_registration.ImplicitArgs", - "members": { - "pedersen_ptr": { - "cairo_type": "starkware.cairo.common.cairo_builtins.HashBuiltin*", - "offset": 1 - }, - "range_check_ptr": { - "cairo_type": "felt", - "offset": 2 - }, - "syscall_ptr": { - "cairo_type": "felt*", - "offset": 0 - } - }, - "size": 3, - "type": "struct" - }, - "__main__.close_registration.Return": { - "cairo_type": "()", - "type": "type_definition" - }, - "__main__.close_registration.SIZEOF_LOCALS": { - "type": "const", - "value": 0 - }, - "__main__.get_caller_address": { - "destination": "starkware.starknet.common.syscalls.get_caller_address", - "type": "alias" - }, - "__main__.get_contract_address": { - "destination": "starkware.starknet.common.syscalls.get_contract_address", - "type": "alias" - }, - "__main__.get_tx_info": { - "destination": "starkware.starknet.common.syscalls.get_tx_info", - "type": "alias" - }, - "__main__.hash2": { - "destination": "starkware.cairo.common.hash.hash2", - "type": "alias" - }, - "__main__.initializer": { - "decorators": [ - "external" - ], - "pc": 533, - "type": "function" - }, - "__main__.initializer.Args": { - "full_name": "__main__.initializer.Args", - "members": { - "naming_contract": { - "cairo_type": "felt", - "offset": 2 - }, - "proxy_admin_address": { - "cairo_type": "felt", - "offset": 0 - }, - "starknetid_contract": { - "cairo_type": "felt", - "offset": 1 - } - }, - "size": 3, - "type": "struct" - }, - "__main__.initializer.ImplicitArgs": { - "full_name": "__main__.initializer.ImplicitArgs", - "members": { - "pedersen_ptr": { - "cairo_type": "starkware.cairo.common.cairo_builtins.HashBuiltin*", - "offset": 1 - }, - "range_check_ptr": { - "cairo_type": "felt", - "offset": 2 - }, - "syscall_ptr": { - "cairo_type": "felt*", - "offset": 0 - } - }, - "size": 3, - "type": "struct" - }, - "__main__.initializer.Return": { - "cairo_type": "()", - "type": "type_definition" - }, - "__main__.initializer.SIZEOF_LOCALS": { - "type": "const", - "value": 0 - }, - "__main__.is_le": { - "destination": "starkware.cairo.common.math_cmp.is_le", - "type": "alias" - }, - "__main__.is_not_zero": { - "destination": "starkware.cairo.common.math_cmp.is_not_zero", - "type": "alias" - }, - "__main__.is_registration_open": { - "decorators": [ - "view" - ], - "pc": 857, - "type": "function" - }, - "__main__.is_registration_open.Args": { - "full_name": "__main__.is_registration_open.Args", - "members": {}, - "size": 0, - "type": "struct" - }, - "__main__.is_registration_open.ImplicitArgs": { - "full_name": "__main__.is_registration_open.ImplicitArgs", - "members": { - "pedersen_ptr": { - "cairo_type": "starkware.cairo.common.cairo_builtins.HashBuiltin*", - "offset": 1 - }, - "range_check_ptr": { - "cairo_type": "felt", - "offset": 2 - }, - "syscall_ptr": { - "cairo_type": "felt*", - "offset": 0 - } - }, - "size": 3, - "type": "struct" - }, - "__main__.is_registration_open.Return": { - "cairo_type": "(is_registration_open: felt)", - "type": "type_definition" - }, - "__main__.is_registration_open.SIZEOF_LOCALS": { - "type": "const", - "value": 0 - }, - "__main__.open_registration": { - "decorators": [ - "external" - ], - "pc": 805, - "type": "function" - }, - "__main__.open_registration.Args": { - "full_name": "__main__.open_registration.Args", - "members": {}, - "size": 0, - "type": "struct" - }, - "__main__.open_registration.ImplicitArgs": { - "full_name": "__main__.open_registration.ImplicitArgs", - "members": { - "pedersen_ptr": { - "cairo_type": "starkware.cairo.common.cairo_builtins.HashBuiltin*", - "offset": 1 - }, - "range_check_ptr": { - "cairo_type": "felt", - "offset": 2 - }, - "syscall_ptr": { - "cairo_type": "felt*", - "offset": 0 - } - }, - "size": 3, - "type": "struct" - }, - "__main__.open_registration.Return": { - "cairo_type": "()", - "type": "type_definition" - }, - "__main__.open_registration.SIZEOF_LOCALS": { - "type": "const", - "value": 0 - }, - "__main__.register": { - "decorators": [ - "external" - ], - "pc": 642, - "type": "function" - }, - "__main__.register.Args": { - "full_name": "__main__.register.Args", - "members": { - "domain_ascii": { - "cairo_type": "felt", - "offset": 0 - } - }, - "size": 1, - "type": "struct" - }, - "__main__.register.ImplicitArgs": { - "full_name": "__main__.register.ImplicitArgs", - "members": { - "ecdsa_ptr": { - "cairo_type": "starkware.cairo.common.cairo_builtins.SignatureBuiltin*", - "offset": 3 - }, - "pedersen_ptr": { - "cairo_type": "starkware.cairo.common.cairo_builtins.HashBuiltin*", - "offset": 1 - }, - "range_check_ptr": { - "cairo_type": "felt", - "offset": 2 - }, - "syscall_ptr": { - "cairo_type": "felt*", - "offset": 0 - } - }, - "size": 4, - "type": "struct" - }, - "__main__.register.Return": { - "cairo_type": "(starknet_id_token: felt, domain_len: felt, domain: felt*)", - "type": "type_definition" - }, - "__main__.register.SIZEOF_LOCALS": { - "type": "const", - "value": 10 - }, - "__main__.register.domain": { - "cairo_type": "felt", - "full_name": "__main__.register.domain", - "references": [ - { - "ap_tracking_data": { - "group": 50, - "offset": 0 - }, - "pc": 676, - "value": "[cast(ap + (-1), felt*)]" - }, - { - "ap_tracking_data": { - "group": 50, - "offset": 0 - }, - "pc": 677, - "value": "[cast(fp + 3, felt*)]" - } - ], - "type": "reference" - }, - "__main__.register.token_id": { - "cairo_type": "felt", - "full_name": "__main__.register.token_id", - "references": [ - { - "ap_tracking_data": { - "group": 51, - "offset": 68 - }, - "pc": 717, - "value": "[cast(ap + (-1), felt*)]" - }, - { - "ap_tracking_data": { - "group": 51, - "offset": 68 - }, - "pc": 717, - "value": "cast([ap + (-1)] + [[fp + 1] + 7], felt)" - }, - { - "ap_tracking_data": { - "group": 51, - "offset": 69 - }, - "pc": 719, - "value": "[cast(fp + 8, felt*)]" - } - ], - "type": "reference" - }, - "__main__.split_felt": { - "destination": "starkware.cairo.common.math.split_felt", - "type": "alias" - }, - "__main__.unsigned_div_rem": { - "destination": "starkware.cairo.common.math.unsigned_div_rem", - "type": "alias" - }, - "__main__.verify_ecdsa_signature": { - "destination": "starkware.cairo.common.signature.verify_ecdsa_signature", - "type": "alias" - }, - "__wrappers__.basic_encoding": { - "decorators": [ - "view" - ], - "pc": 912, - "type": "function" - }, - "__wrappers__.basic_encoding.Args": { - "full_name": "__wrappers__.basic_encoding.Args", - "members": {}, - "size": 0, - "type": "struct" - }, - "__wrappers__.basic_encoding.ImplicitArgs": { - "full_name": "__wrappers__.basic_encoding.ImplicitArgs", - "members": {}, - "size": 0, - "type": "struct" - }, - "__wrappers__.basic_encoding.Return": { - "cairo_type": "(syscall_ptr: felt*, pedersen_ptr: starkware.cairo.common.cairo_builtins.HashBuiltin*, range_check_ptr: felt, ecdsa_ptr: felt, size: felt, retdata: felt*)", - "type": "type_definition" - }, - "__wrappers__.basic_encoding.SIZEOF_LOCALS": { - "type": "const", - "value": 0 - }, - "__wrappers__.basic_encoding.__wrapped_func": { - "destination": "__main__.basic_encoding", - "type": "alias" - }, - "__wrappers__.basic_encoding_encode_return": { - "decorators": [], - "pc": 903, - "type": "function" - }, - "__wrappers__.basic_encoding_encode_return.Args": { - "full_name": "__wrappers__.basic_encoding_encode_return.Args", - "members": { - "range_check_ptr": { - "cairo_type": "felt", - "offset": 1 - }, - "ret_value": { - "cairo_type": "(domain_encoded: felt)", - "offset": 0 - } - }, - "size": 2, - "type": "struct" - }, - "__wrappers__.basic_encoding_encode_return.ImplicitArgs": { - "full_name": "__wrappers__.basic_encoding_encode_return.ImplicitArgs", - "members": {}, - "size": 0, - "type": "struct" - }, - "__wrappers__.basic_encoding_encode_return.Return": { - "cairo_type": "(range_check_ptr: felt, data_len: felt, data: felt*)", - "type": "type_definition" - }, - "__wrappers__.basic_encoding_encode_return.SIZEOF_LOCALS": { - "type": "const", - "value": 1 - }, - "__wrappers__.basic_encoding_encode_return.memcpy": { - "destination": "starkware.cairo.common.memcpy.memcpy", - "type": "alias" - }, - "__wrappers__.claim_domain_back": { - "decorators": [ - "external" - ], - "pc": 614, - "type": "function" - }, - "__wrappers__.claim_domain_back.Args": { - "full_name": "__wrappers__.claim_domain_back.Args", - "members": {}, - "size": 0, - "type": "struct" - }, - "__wrappers__.claim_domain_back.ImplicitArgs": { - "full_name": "__wrappers__.claim_domain_back.ImplicitArgs", - "members": {}, - "size": 0, - "type": "struct" - }, - "__wrappers__.claim_domain_back.Return": { - "cairo_type": "(syscall_ptr: felt*, pedersen_ptr: starkware.cairo.common.cairo_builtins.HashBuiltin*, range_check_ptr: felt, ecdsa_ptr: felt, size: felt, retdata: felt*)", - "type": "type_definition" - }, - "__wrappers__.claim_domain_back.SIZEOF_LOCALS": { - "type": "const", - "value": 0 - }, - "__wrappers__.claim_domain_back.__wrapped_func": { - "destination": "__main__.claim_domain_back", - "type": "alias" - }, - "__wrappers__.claim_domain_back_encode_return.memcpy": { - "destination": "starkware.cairo.common.memcpy.memcpy", - "type": "alias" - }, - "__wrappers__.close_registration": { - "decorators": [ - "external" - ], - "pc": 841, - "type": "function" - }, - "__wrappers__.close_registration.Args": { - "full_name": "__wrappers__.close_registration.Args", - "members": {}, - "size": 0, - "type": "struct" - }, - "__wrappers__.close_registration.ImplicitArgs": { - "full_name": "__wrappers__.close_registration.ImplicitArgs", - "members": {}, - "size": 0, - "type": "struct" - }, - "__wrappers__.close_registration.Return": { - "cairo_type": "(syscall_ptr: felt*, pedersen_ptr: starkware.cairo.common.cairo_builtins.HashBuiltin*, range_check_ptr: felt, ecdsa_ptr: felt, size: felt, retdata: felt*)", - "type": "type_definition" - }, - "__wrappers__.close_registration.SIZEOF_LOCALS": { - "type": "const", - "value": 0 - }, - "__wrappers__.close_registration.__wrapped_func": { - "destination": "__main__.close_registration", - "type": "alias" - }, - "__wrappers__.close_registration_encode_return.memcpy": { - "destination": "starkware.cairo.common.memcpy.memcpy", - "type": "alias" - }, - "__wrappers__.initializer": { - "decorators": [ - "external" - ], - "pc": 553, - "type": "function" - }, - "__wrappers__.initializer.Args": { - "full_name": "__wrappers__.initializer.Args", - "members": {}, - "size": 0, - "type": "struct" - }, - "__wrappers__.initializer.ImplicitArgs": { - "full_name": "__wrappers__.initializer.ImplicitArgs", - "members": {}, - "size": 0, - "type": "struct" - }, - "__wrappers__.initializer.Return": { - "cairo_type": "(syscall_ptr: felt*, pedersen_ptr: starkware.cairo.common.cairo_builtins.HashBuiltin*, range_check_ptr: felt, ecdsa_ptr: felt, size: felt, retdata: felt*)", - "type": "type_definition" - }, - "__wrappers__.initializer.SIZEOF_LOCALS": { - "type": "const", - "value": 0 - }, - "__wrappers__.initializer.__wrapped_func": { - "destination": "__main__.initializer", - "type": "alias" - }, - "__wrappers__.initializer_encode_return.memcpy": { - "destination": "starkware.cairo.common.memcpy.memcpy", - "type": "alias" - }, - "__wrappers__.is_registration_open": { - "decorators": [ - "view" - ], - "pc": 872, - "type": "function" - }, - "__wrappers__.is_registration_open.Args": { - "full_name": "__wrappers__.is_registration_open.Args", - "members": {}, - "size": 0, - "type": "struct" - }, - "__wrappers__.is_registration_open.ImplicitArgs": { - "full_name": "__wrappers__.is_registration_open.ImplicitArgs", - "members": {}, - "size": 0, - "type": "struct" - }, - "__wrappers__.is_registration_open.Return": { - "cairo_type": "(syscall_ptr: felt*, pedersen_ptr: starkware.cairo.common.cairo_builtins.HashBuiltin*, range_check_ptr: felt, ecdsa_ptr: felt, size: felt, retdata: felt*)", - "type": "type_definition" - }, - "__wrappers__.is_registration_open.SIZEOF_LOCALS": { - "type": "const", - "value": 0 - }, - "__wrappers__.is_registration_open.__wrapped_func": { - "destination": "__main__.is_registration_open", - "type": "alias" - }, - "__wrappers__.is_registration_open_encode_return": { - "decorators": [], - "pc": 863, - "type": "function" - }, - "__wrappers__.is_registration_open_encode_return.Args": { - "full_name": "__wrappers__.is_registration_open_encode_return.Args", - "members": { - "range_check_ptr": { - "cairo_type": "felt", - "offset": 1 - }, - "ret_value": { - "cairo_type": "(is_registration_open: felt)", - "offset": 0 - } - }, - "size": 2, - "type": "struct" - }, - "__wrappers__.is_registration_open_encode_return.ImplicitArgs": { - "full_name": "__wrappers__.is_registration_open_encode_return.ImplicitArgs", - "members": {}, - "size": 0, - "type": "struct" - }, - "__wrappers__.is_registration_open_encode_return.Return": { - "cairo_type": "(range_check_ptr: felt, data_len: felt, data: felt*)", - "type": "type_definition" - }, - "__wrappers__.is_registration_open_encode_return.SIZEOF_LOCALS": { - "type": "const", - "value": 1 - }, - "__wrappers__.is_registration_open_encode_return.memcpy": { - "destination": "starkware.cairo.common.memcpy.memcpy", - "type": "alias" - }, - "__wrappers__.open_registration": { - "decorators": [ - "external" - ], - "pc": 815, - "type": "function" - }, - "__wrappers__.open_registration.Args": { - "full_name": "__wrappers__.open_registration.Args", - "members": {}, - "size": 0, - "type": "struct" - }, - "__wrappers__.open_registration.ImplicitArgs": { - "full_name": "__wrappers__.open_registration.ImplicitArgs", - "members": {}, - "size": 0, - "type": "struct" - }, - "__wrappers__.open_registration.Return": { - "cairo_type": "(syscall_ptr: felt*, pedersen_ptr: starkware.cairo.common.cairo_builtins.HashBuiltin*, range_check_ptr: felt, ecdsa_ptr: felt, size: felt, retdata: felt*)", - "type": "type_definition" - }, - "__wrappers__.open_registration.SIZEOF_LOCALS": { - "type": "const", - "value": 0 - }, - "__wrappers__.open_registration.__wrapped_func": { - "destination": "__main__.open_registration", - "type": "alias" - }, - "__wrappers__.open_registration_encode_return.memcpy": { - "destination": "starkware.cairo.common.memcpy.memcpy", - "type": "alias" - }, - "__wrappers__.register": { - "decorators": [ - "external" - ], - "pc": 780, - "type": "function" - }, - "__wrappers__.register.Args": { - "full_name": "__wrappers__.register.Args", - "members": {}, - "size": 0, - "type": "struct" - }, - "__wrappers__.register.ImplicitArgs": { - "full_name": "__wrappers__.register.ImplicitArgs", - "members": {}, - "size": 0, - "type": "struct" - }, - "__wrappers__.register.Return": { - "cairo_type": "(syscall_ptr: felt*, pedersen_ptr: starkware.cairo.common.cairo_builtins.HashBuiltin*, range_check_ptr: felt, ecdsa_ptr: starkware.cairo.common.cairo_builtins.SignatureBuiltin*, size: felt, retdata: felt*)", - "type": "type_definition" - }, - "__wrappers__.register.SIZEOF_LOCALS": { - "type": "const", - "value": 3 - }, - "__wrappers__.register.__wrapped_func": { - "destination": "__main__.register", - "type": "alias" - }, - "__wrappers__.register_encode_return": { - "decorators": [], - "pc": 760, - "type": "function" - }, - "__wrappers__.register_encode_return.Args": { - "full_name": "__wrappers__.register_encode_return.Args", - "members": { - "range_check_ptr": { - "cairo_type": "felt", - "offset": 3 - }, - "ret_value": { - "cairo_type": "(starknet_id_token: felt, domain_len: felt, domain: felt*)", - "offset": 0 - } - }, - "size": 4, - "type": "struct" - }, - "__wrappers__.register_encode_return.ImplicitArgs": { - "full_name": "__wrappers__.register_encode_return.ImplicitArgs", - "members": {}, - "size": 0, - "type": "struct" - }, - "__wrappers__.register_encode_return.Return": { - "cairo_type": "(range_check_ptr: felt, data_len: felt, data: felt*)", - "type": "type_definition" - }, - "__wrappers__.register_encode_return.SIZEOF_LOCALS": { - "type": "const", - "value": 3 - }, - "__wrappers__.register_encode_return.memcpy": { - "destination": "starkware.cairo.common.memcpy.memcpy", - "type": "alias" - }, - "interfaces.ICellRenderer": { - "type": "namespace" - }, - "interfaces.ICellRenderer.Args": { - "full_name": "interfaces.ICellRenderer.Args", - "members": {}, - "size": 0, - "type": "struct" - }, - "interfaces.ICellRenderer.ImplicitArgs": { - "full_name": "interfaces.ICellRenderer.ImplicitArgs", - "members": {}, - "size": 0, - "type": "struct" - }, - "interfaces.ICellRenderer.Return": { - "cairo_type": "()", - "type": "type_definition" - }, - "interfaces.ICellRenderer.SIZEOF_LOCALS": { - "type": "const", - "value": 0 - }, - "interfaces.ICellRenderer.TOKEN_URI_SELECTOR": { - "type": "const", - "value": 972963298680412523176499874437857470953299865468167336795334065766985940564 - }, - "interfaces.ICellRenderer.alloc": { - "destination": "starkware.cairo.common.alloc.alloc", - "type": "alias" - }, - "interfaces.ICellRenderer.call_contract": { - "destination": "starkware.starknet.common.syscalls.call_contract", - "type": "alias" - }, - "interfaces.ICellRenderer.library_call": { - "destination": "starkware.starknet.common.syscalls.library_call", - "type": "alias" - }, - "interfaces.ICellRenderer.memcpy": { - "destination": "starkware.cairo.common.memcpy.memcpy", - "type": "alias" - }, - "interfaces.IERC20": { - "type": "namespace" - }, - "interfaces.IERC20.Args": { - "full_name": "interfaces.IERC20.Args", - "members": {}, - "size": 0, - "type": "struct" - }, - "interfaces.IERC20.ImplicitArgs": { - "full_name": "interfaces.IERC20.ImplicitArgs", - "members": {}, - "size": 0, - "type": "struct" - }, - "interfaces.IERC20.Return": { - "cairo_type": "()", - "type": "type_definition" - }, - "interfaces.IERC20.SIZEOF_LOCALS": { - "type": "const", - "value": 0 - }, - "interfaces.IERC20.TRANSFERFROM_SELECTOR": { - "type": "const", - "value": 116061167288211781254449158074459916871457383008289084697957612485591092000 - }, - "interfaces.IERC20.alloc": { - "destination": "starkware.cairo.common.alloc.alloc", - "type": "alias" - }, - "interfaces.IERC20.call_contract": { - "destination": "starkware.starknet.common.syscalls.call_contract", - "type": "alias" - }, - "interfaces.IERC20.library_call": { - "destination": "starkware.starknet.common.syscalls.library_call", - "type": "alias" - }, - "interfaces.IERC20.memcpy": { - "destination": "starkware.cairo.common.memcpy.memcpy", - "type": "alias" - }, - "interfaces.INaming": { - "type": "namespace" - }, - "interfaces.INaming.ADDRESS_TO_DOMAIN_SELECTOR": { - "type": "const", - "value": 1603245472811392061809591067260089019426816523107069796238809492656815485546 - }, - "interfaces.INaming.Args": { - "full_name": "interfaces.INaming.Args", - "members": {}, - "size": 0, - "type": "struct" - }, - "interfaces.INaming.BOOK_DOMAIN_SELECTOR": { - "type": "const", - "value": 936186683880093131965099014648752254766233136099961890187205330811825921846 - }, - "interfaces.INaming.BUY_SELECTOR": { - "type": "const", - "value": 1287248338404847646550592163281630804549802830245792727739111870260704353484 - }, - "interfaces.INaming.DOMAIN_TO_ADDRESS_SELECTOR": { - "type": "const", - "value": 1304663672637822515145798791978169141181160723516306988875863115072156520032 - }, - "interfaces.INaming.DOMAIN_TO_EXPIRY_SELECTOR": { - "type": "const", - "value": 1688068772593240915304213064459924393639128458125446685210515793078781613139 - }, - "interfaces.INaming.DOMAIN_TO_TOKEN_ID_SELECTOR": { - "type": "const", - "value": 287203778117271963496001774582249906491145397282682300703398354179686477821 - }, - "interfaces.INaming.END_WHITELIST_SELECTOR": { - "type": "const", - "value": 430278271522566031738274479754686968816445504001052333064960814431997712491 - }, - "interfaces.INaming.ImplicitArgs": { - "full_name": "interfaces.INaming.ImplicitArgs", - "members": {}, - "size": 0, - "type": "struct" - }, - "interfaces.INaming.RENEW_SELECTOR": { - "type": "const", - "value": 930560540317825161694843407433987609535422044572966677410925679656498823082 - }, - "interfaces.INaming.RESET_SUBDOMAINS_SELECTOR": { - "type": "const", - "value": 126790722957066457440757403135463934732692534946350256483257019753141642677 - }, - "interfaces.INaming.Return": { - "cairo_type": "()", - "type": "type_definition" - }, - "interfaces.INaming.SET_ADDRESS_TO_DOMAIN_SELECTOR": { - "type": "const", - "value": 1272327425418240154350240722461747219123827088548848919054624593718880636642 - }, - "interfaces.INaming.SET_ADMIN_SELECTOR": { - "type": "const", - "value": 1643497262818327213033567936029803029001517427271096293547852372923525778830 - }, - "interfaces.INaming.SET_DOMAIN_OWNER_SELECTOR": { - "type": "const", - "value": 1657616985290299970565155922883425836620187549922238144093064068412290249085 - }, - "interfaces.INaming.SET_DOMAIN_TO_ADDRESS_SELECTOR": { - "type": "const", - "value": 1610394222013638976391106232404059096560849178173130090264042376853321601603 - }, - "interfaces.INaming.SET_L1_CONTRACT_SELECTOR": { - "type": "const", - "value": 458122530637151155520434043621120900362855539371259928133005713204644859413 - }, - "interfaces.INaming.SET_PRICING_CONTRACT_SELECTOR": { - "type": "const", - "value": 975234576296278877427218729874669435734165287699110428367360141295740789589 - }, - "interfaces.INaming.SIZEOF_LOCALS": { - "type": "const", - "value": 0 - }, - "interfaces.INaming.TRANSFER_BALANCE_SELECTOR": { - "type": "const", - "value": 1122072494608652793215368244817518736891471546633388220255683786620647808909 - }, - "interfaces.INaming.TRANSFER_DOMAIN_SELECTOR": { - "type": "const", - "value": 1278885709838921827005554121329964137868788698247768520021056154210563044448 - }, - "interfaces.INaming.UPGRADE_SELECTOR": { - "type": "const", - "value": 429286934060636239444256046255241512105662385954349596568652644383873724621 - }, - "interfaces.INaming.WHITELISTED_MINT_SELECTOR": { - "type": "const", - "value": 1539836454991056428460861901085714290318244964622763157349500142767310659373 - }, - "interfaces.INaming.alloc": { - "destination": "starkware.cairo.common.alloc.alloc", - "type": "alias" - }, - "interfaces.INaming.call_contract": { - "destination": "starkware.starknet.common.syscalls.call_contract", - "type": "alias" - }, - "interfaces.INaming.domain_to_address": { - "decorators": [], - "pc": 222, - "type": "function" - }, - "interfaces.INaming.domain_to_address.Args": { - "full_name": "interfaces.INaming.domain_to_address.Args", - "members": { - "contract_address": { - "cairo_type": "felt", - "offset": 0 - }, - "domain": { - "cairo_type": "felt*", - "offset": 2 - }, - "domain_len": { - "cairo_type": "felt", - "offset": 1 - } - }, - "size": 3, - "type": "struct" - }, - "interfaces.INaming.domain_to_address.ImplicitArgs": { - "full_name": "interfaces.INaming.domain_to_address.ImplicitArgs", - "members": { - "range_check_ptr": { - "cairo_type": "felt", - "offset": 1 - }, - "syscall_ptr": { - "cairo_type": "felt*", - "offset": 0 - } - }, - "size": 2, - "type": "struct" - }, - "interfaces.INaming.domain_to_address.Return": { - "cairo_type": "(address: felt)", - "type": "type_definition" - }, - "interfaces.INaming.domain_to_address.SIZEOF_LOCALS": { - "type": "const", - "value": 3 - }, - "interfaces.INaming.domain_to_token_id": { - "decorators": [], - "pc": 255, - "type": "function" - }, - "interfaces.INaming.domain_to_token_id.Args": { - "full_name": "interfaces.INaming.domain_to_token_id.Args", - "members": { - "contract_address": { - "cairo_type": "felt", - "offset": 0 - }, - "domain": { - "cairo_type": "felt*", - "offset": 2 - }, - "domain_len": { - "cairo_type": "felt", - "offset": 1 - } - }, - "size": 3, - "type": "struct" - }, - "interfaces.INaming.domain_to_token_id.ImplicitArgs": { - "full_name": "interfaces.INaming.domain_to_token_id.ImplicitArgs", - "members": { - "range_check_ptr": { - "cairo_type": "felt", - "offset": 1 - }, - "syscall_ptr": { - "cairo_type": "felt*", - "offset": 0 - } - }, - "size": 2, - "type": "struct" - }, - "interfaces.INaming.domain_to_token_id.Return": { - "cairo_type": "(owner: felt)", - "type": "type_definition" - }, - "interfaces.INaming.domain_to_token_id.SIZEOF_LOCALS": { - "type": "const", - "value": 3 - }, - "interfaces.INaming.library_call": { - "destination": "starkware.starknet.common.syscalls.library_call", - "type": "alias" - }, - "interfaces.INaming.memcpy": { - "destination": "starkware.cairo.common.memcpy.memcpy", - "type": "alias" - }, - "interfaces.INaming.set_domain_to_address": { - "decorators": [], - "pc": 288, - "type": "function" - }, - "interfaces.INaming.set_domain_to_address.Args": { - "full_name": "interfaces.INaming.set_domain_to_address.Args", - "members": { - "address": { - "cairo_type": "felt", - "offset": 3 - }, - "contract_address": { - "cairo_type": "felt", - "offset": 0 - }, - "domain": { - "cairo_type": "felt*", - "offset": 2 - }, - "domain_len": { - "cairo_type": "felt", - "offset": 1 - } - }, - "size": 4, - "type": "struct" - }, - "interfaces.INaming.set_domain_to_address.ImplicitArgs": { - "full_name": "interfaces.INaming.set_domain_to_address.ImplicitArgs", - "members": { - "range_check_ptr": { - "cairo_type": "felt", - "offset": 1 - }, - "syscall_ptr": { - "cairo_type": "felt*", - "offset": 0 - } - }, - "size": 2, - "type": "struct" - }, - "interfaces.INaming.set_domain_to_address.Return": { - "cairo_type": "()", - "type": "type_definition" - }, - "interfaces.INaming.set_domain_to_address.SIZEOF_LOCALS": { - "type": "const", - "value": 3 - }, - "interfaces.INaming.transfer_domain": { - "decorators": [], - "pc": 320, - "type": "function" - }, - "interfaces.INaming.transfer_domain.Args": { - "full_name": "interfaces.INaming.transfer_domain.Args", - "members": { - "contract_address": { - "cairo_type": "felt", - "offset": 0 - }, - "domain": { - "cairo_type": "felt*", - "offset": 2 - }, - "domain_len": { - "cairo_type": "felt", - "offset": 1 - }, - "target_token_id": { - "cairo_type": "felt", - "offset": 3 - } - }, - "size": 4, - "type": "struct" - }, - "interfaces.INaming.transfer_domain.ImplicitArgs": { - "full_name": "interfaces.INaming.transfer_domain.ImplicitArgs", - "members": { - "range_check_ptr": { - "cairo_type": "felt", - "offset": 1 - }, - "syscall_ptr": { - "cairo_type": "felt*", - "offset": 0 - } - }, - "size": 2, - "type": "struct" - }, - "interfaces.INaming.transfer_domain.Return": { - "cairo_type": "()", - "type": "type_definition" - }, - "interfaces.INaming.transfer_domain.SIZEOF_LOCALS": { - "type": "const", - "value": 3 - }, - "interfaces.ISheet": { - "type": "namespace" - }, - "interfaces.ISheet.Args": { - "full_name": "interfaces.ISheet.Args", - "members": {}, - "size": 0, - "type": "struct" - }, - "interfaces.ISheet.GETCELL_SELECTOR": { - "type": "const", - "value": 443075019000274462353429320046008552588058957208244535324287878716174949881 - }, - "interfaces.ISheet.ImplicitArgs": { - "full_name": "interfaces.ISheet.ImplicitArgs", - "members": {}, - "size": 0, - "type": "struct" - }, - "interfaces.ISheet.OWNER_SELECTOR": { - "type": "const", - "value": 907111799109225873672206001743429201758838553092777504370151546632448000192 - }, - "interfaces.ISheet.Return": { - "cairo_type": "()", - "type": "type_definition" - }, - "interfaces.ISheet.SIZEOF_LOCALS": { - "type": "const", - "value": 0 - }, - "interfaces.ISheet.alloc": { - "destination": "starkware.cairo.common.alloc.alloc", - "type": "alias" - }, - "interfaces.ISheet.call_contract": { - "destination": "starkware.starknet.common.syscalls.call_contract", - "type": "alias" - }, - "interfaces.ISheet.library_call": { - "destination": "starkware.starknet.common.syscalls.library_call", - "type": "alias" - }, - "interfaces.ISheet.memcpy": { - "destination": "starkware.cairo.common.memcpy.memcpy", - "type": "alias" - }, - "interfaces.ISheet.owner": { - "decorators": [], - "pc": 393, - "type": "function" - }, - "interfaces.ISheet.owner.Args": { - "full_name": "interfaces.ISheet.owner.Args", - "members": { - "contract_address": { - "cairo_type": "felt", - "offset": 0 - } - }, - "size": 1, - "type": "struct" - }, - "interfaces.ISheet.owner.ImplicitArgs": { - "full_name": "interfaces.ISheet.owner.ImplicitArgs", - "members": { - "range_check_ptr": { - "cairo_type": "felt", - "offset": 1 - }, - "syscall_ptr": { - "cairo_type": "felt*", - "offset": 0 - } - }, - "size": 2, - "type": "struct" - }, - "interfaces.ISheet.owner.Return": { - "cairo_type": "(owner: felt)", - "type": "type_definition" - }, - "interfaces.ISheet.owner.SIZEOF_LOCALS": { - "type": "const", - "value": 1 - }, - "interfaces.IStarknetId": { - "type": "namespace" - }, - "interfaces.IStarknetId.APPROVE_SELECTOR": { - "type": "const", - "value": 949021990203918389843157787496164629863144228991510976554585288817234167820 - }, - "interfaces.IStarknetId.Args": { - "full_name": "interfaces.IStarknetId.Args", - "members": {}, - "size": 0, - "type": "struct" - }, - "interfaces.IStarknetId.BALANCEOF_SELECTOR": { - "type": "const", - "value": 1307730684388977109649524593492043083703013045633289330664425380824804018030 - }, - "interfaces.IStarknetId.GETAPPROVED_SELECTOR": { - "type": "const", - "value": 313621473760873935122783910304240840031223477451753145243382550859039628062 - }, - "interfaces.IStarknetId.GET_CONFIRMED_DATA_SELECTOR": { - "type": "const", - "value": 530322796649034839128289081374954442593577033803314989864127372531780950730 - }, - "interfaces.IStarknetId.GET_USER_DATA_SELECTOR": { - "type": "const", - "value": 1609502682165887867679853017049770109196370572340175903006230372478665206036 - }, - "interfaces.IStarknetId.GET_VERIFIER_DATA_SELECTOR": { - "type": "const", - "value": 473330094356310390713628159409004218371996502787750188278167680893156793640 - }, - "interfaces.IStarknetId.ISAPPROVEDFORALL_SELECTOR": { - "type": "const", - "value": 955640681311292084896022829531366384024621189567662336953606158378698906672 - }, - "interfaces.IStarknetId.ImplicitArgs": { - "full_name": "interfaces.IStarknetId.ImplicitArgs", - "members": {}, - "size": 0, - "type": "struct" - }, - "interfaces.IStarknetId.MINT_SELECTOR": { - "type": "const", - "value": 1329909728320632088402217562277154056711815095720684343816173432540100887380 - }, - "interfaces.IStarknetId.NAME_SELECTOR": { - "type": "const", - "value": 1528802474226268325865027367859591458315299653151958663884057507666229546336 - }, - "interfaces.IStarknetId.OWNEROF_SELECTOR": { - "type": "const", - "value": 73122117822990066614852869276021392412342625629800410280609241172256672489 - }, - "interfaces.IStarknetId.OWNER_OF_SELECTOR": { - "type": "const", - "value": 1507437626807800615315004738637144922697981204057516501649517912180529424988 - }, - "interfaces.IStarknetId.Return": { - "cairo_type": "()", - "type": "type_definition" - }, - "interfaces.IStarknetId.SAFETRANSFERFROM_SELECTOR": { - "type": "const", - "value": 730327702935662484951878015260342994925824754530470619774470754812327453764 - }, - "interfaces.IStarknetId.SETAPPROVALFORALL_SELECTOR": { - "type": "const", - "value": 1280583940859288259579061247154630474140520431395903753515491282704959909530 - }, - "interfaces.IStarknetId.SET_USER_DATA_SELECTOR": { - "type": "const", - "value": 109892487981044272116361807154779435378309404389934353731864404719549138389 - }, - "interfaces.IStarknetId.SET_VERIFIER_DATA_SELECTOR": { - "type": "const", - "value": 910948863065477691329095938083983158593751349378422102074061168548026151635 - }, - "interfaces.IStarknetId.SIZEOF_LOCALS": { - "type": "const", - "value": 0 - }, - "interfaces.IStarknetId.SYMBOL_SELECTOR": { - "type": "const", - "value": 944713526212149105522785400348068751682982210605126537021911324578866405028 - }, - "interfaces.IStarknetId.TOKENURI_SELECTOR": { - "type": "const", - "value": 527349597080429316600677333550588288293424769527062261567739596074387138637 - }, - "interfaces.IStarknetId.TRANSFERFROM_SELECTOR": { - "type": "const", - "value": 116061167288211781254449158074459916871457383008289084697957612485591092000 - }, - "interfaces.IStarknetId.alloc": { - "destination": "starkware.cairo.common.alloc.alloc", - "type": "alias" - }, - "interfaces.IStarknetId.call_contract": { - "destination": "starkware.starknet.common.syscalls.call_contract", - "type": "alias" - }, - "interfaces.IStarknetId.library_call": { - "destination": "starkware.starknet.common.syscalls.library_call", - "type": "alias" - }, - "interfaces.IStarknetId.memcpy": { - "destination": "starkware.cairo.common.memcpy.memcpy", - "type": "alias" - }, - "interfaces.IStarknetId.mint": { - "decorators": [], - "pc": 374, - "type": "function" - }, - "interfaces.IStarknetId.mint.Args": { - "full_name": "interfaces.IStarknetId.mint.Args", - "members": { - "contract_address": { - "cairo_type": "felt", - "offset": 0 - }, - "token_id": { - "cairo_type": "felt", - "offset": 1 - } - }, - "size": 2, - "type": "struct" - }, - "interfaces.IStarknetId.mint.ImplicitArgs": { - "full_name": "interfaces.IStarknetId.mint.ImplicitArgs", - "members": { - "range_check_ptr": { - "cairo_type": "felt", - "offset": 1 - }, - "syscall_ptr": { - "cairo_type": "felt*", - "offset": 0 - } - }, - "size": 2, - "type": "struct" - }, - "interfaces.IStarknetId.mint.Return": { - "cairo_type": "()", - "type": "type_definition" - }, - "interfaces.IStarknetId.mint.SIZEOF_LOCALS": { - "type": "const", - "value": 1 - }, - "interfaces.IStarknetId.transferFrom": { - "decorators": [], - "pc": 352, - "type": "function" - }, - "interfaces.IStarknetId.transferFrom.Args": { - "full_name": "interfaces.IStarknetId.transferFrom.Args", - "members": { - "_from": { - "cairo_type": "felt", - "offset": 1 - }, - "contract_address": { - "cairo_type": "felt", - "offset": 0 - }, - "to": { - "cairo_type": "felt", - "offset": 2 - }, - "token_id": { - "cairo_type": "starkware.cairo.common.uint256.Uint256", - "offset": 3 - } - }, - "size": 5, - "type": "struct" - }, - "interfaces.IStarknetId.transferFrom.ImplicitArgs": { - "full_name": "interfaces.IStarknetId.transferFrom.ImplicitArgs", - "members": { - "range_check_ptr": { - "cairo_type": "felt", - "offset": 1 - }, - "syscall_ptr": { - "cairo_type": "felt*", - "offset": 0 - } - }, - "size": 2, - "type": "struct" - }, - "interfaces.IStarknetId.transferFrom.Return": { - "cairo_type": "()", - "type": "type_definition" - }, - "interfaces.IStarknetId.transferFrom.SIZEOF_LOCALS": { - "type": "const", - "value": 1 - }, - "interfaces.Uint256": { - "destination": "starkware.cairo.common.uint256.Uint256", - "type": "alias" - }, - "openzeppelin.upgrades.library.AdminChanged": { - "type": "namespace" - }, - "openzeppelin.upgrades.library.AdminChanged.Args": { - "full_name": "openzeppelin.upgrades.library.AdminChanged.Args", - "members": {}, - "size": 0, - "type": "struct" - }, - "openzeppelin.upgrades.library.AdminChanged.ImplicitArgs": { - "full_name": "openzeppelin.upgrades.library.AdminChanged.ImplicitArgs", - "members": {}, - "size": 0, - "type": "struct" - }, - "openzeppelin.upgrades.library.AdminChanged.Return": { - "cairo_type": "()", - "type": "type_definition" - }, - "openzeppelin.upgrades.library.AdminChanged.SELECTOR": { - "type": "const", - "value": 509549417648223859179470485411643110789099628436608877343164389163677637013 - }, - "openzeppelin.upgrades.library.AdminChanged.SIZEOF_LOCALS": { - "type": "const", - "value": 0 - }, - "openzeppelin.upgrades.library.AdminChanged.alloc": { - "destination": "starkware.cairo.common.alloc.alloc", - "type": "alias" - }, - "openzeppelin.upgrades.library.AdminChanged.emit_event": { - "destination": "starkware.starknet.common.syscalls.emit_event", - "type": "alias" - }, - "openzeppelin.upgrades.library.AdminChanged.memcpy": { - "destination": "starkware.cairo.common.memcpy.memcpy", - "type": "alias" - }, - "openzeppelin.upgrades.library.FALSE": { - "destination": "starkware.cairo.common.bool.FALSE", - "type": "alias" - }, - "openzeppelin.upgrades.library.HashBuiltin": { - "destination": "starkware.cairo.common.cairo_builtins.HashBuiltin", - "type": "alias" - }, - "openzeppelin.upgrades.library.Proxy": { - "type": "namespace" - }, - "openzeppelin.upgrades.library.Proxy.Args": { - "full_name": "openzeppelin.upgrades.library.Proxy.Args", - "members": {}, - "size": 0, - "type": "struct" - }, - "openzeppelin.upgrades.library.Proxy.ImplicitArgs": { - "full_name": "openzeppelin.upgrades.library.Proxy.ImplicitArgs", - "members": {}, - "size": 0, - "type": "struct" - }, - "openzeppelin.upgrades.library.Proxy.Return": { - "cairo_type": "()", - "type": "type_definition" - }, - "openzeppelin.upgrades.library.Proxy.SIZEOF_LOCALS": { - "type": "const", - "value": 0 - }, - "openzeppelin.upgrades.library.Proxy_admin": { - "type": "namespace" - }, - "openzeppelin.upgrades.library.Proxy_admin.Args": { - "full_name": "openzeppelin.upgrades.library.Proxy_admin.Args", - "members": {}, - "size": 0, - "type": "struct" - }, - "openzeppelin.upgrades.library.Proxy_admin.HashBuiltin": { - "destination": "starkware.cairo.common.cairo_builtins.HashBuiltin", - "type": "alias" - }, - "openzeppelin.upgrades.library.Proxy_admin.ImplicitArgs": { - "full_name": "openzeppelin.upgrades.library.Proxy_admin.ImplicitArgs", - "members": {}, - "size": 0, - "type": "struct" - }, - "openzeppelin.upgrades.library.Proxy_admin.Return": { - "cairo_type": "()", - "type": "type_definition" - }, - "openzeppelin.upgrades.library.Proxy_admin.SIZEOF_LOCALS": { - "type": "const", - "value": 0 - }, - "openzeppelin.upgrades.library.Proxy_admin.hash2": { - "destination": "starkware.cairo.common.hash.hash2", - "type": "alias" - }, - "openzeppelin.upgrades.library.Proxy_admin.normalize_address": { - "destination": "starkware.starknet.common.storage.normalize_address", - "type": "alias" - }, - "openzeppelin.upgrades.library.Proxy_admin.storage_read": { - "destination": "starkware.starknet.common.syscalls.storage_read", - "type": "alias" - }, - "openzeppelin.upgrades.library.Proxy_admin.storage_write": { - "destination": "starkware.starknet.common.syscalls.storage_write", - "type": "alias" - }, - "openzeppelin.upgrades.library.Proxy_implementation_hash": { - "type": "namespace" - }, - "openzeppelin.upgrades.library.Proxy_implementation_hash.Args": { - "full_name": "openzeppelin.upgrades.library.Proxy_implementation_hash.Args", - "members": {}, - "size": 0, - "type": "struct" - }, - "openzeppelin.upgrades.library.Proxy_implementation_hash.HashBuiltin": { - "destination": "starkware.cairo.common.cairo_builtins.HashBuiltin", - "type": "alias" - }, - "openzeppelin.upgrades.library.Proxy_implementation_hash.ImplicitArgs": { - "full_name": "openzeppelin.upgrades.library.Proxy_implementation_hash.ImplicitArgs", - "members": {}, - "size": 0, - "type": "struct" - }, - "openzeppelin.upgrades.library.Proxy_implementation_hash.Return": { - "cairo_type": "()", - "type": "type_definition" - }, - "openzeppelin.upgrades.library.Proxy_implementation_hash.SIZEOF_LOCALS": { - "type": "const", - "value": 0 - }, - "openzeppelin.upgrades.library.Proxy_implementation_hash.hash2": { - "destination": "starkware.cairo.common.hash.hash2", - "type": "alias" - }, - "openzeppelin.upgrades.library.Proxy_implementation_hash.normalize_address": { - "destination": "starkware.starknet.common.storage.normalize_address", - "type": "alias" - }, - "openzeppelin.upgrades.library.Proxy_implementation_hash.storage_read": { - "destination": "starkware.starknet.common.syscalls.storage_read", - "type": "alias" - }, - "openzeppelin.upgrades.library.Proxy_implementation_hash.storage_write": { - "destination": "starkware.starknet.common.syscalls.storage_write", - "type": "alias" - }, - "openzeppelin.upgrades.library.Proxy_initialized": { - "type": "namespace" - }, - "openzeppelin.upgrades.library.Proxy_initialized.Args": { - "full_name": "openzeppelin.upgrades.library.Proxy_initialized.Args", - "members": {}, - "size": 0, - "type": "struct" - }, - "openzeppelin.upgrades.library.Proxy_initialized.HashBuiltin": { - "destination": "starkware.cairo.common.cairo_builtins.HashBuiltin", - "type": "alias" - }, - "openzeppelin.upgrades.library.Proxy_initialized.ImplicitArgs": { - "full_name": "openzeppelin.upgrades.library.Proxy_initialized.ImplicitArgs", - "members": {}, - "size": 0, - "type": "struct" - }, - "openzeppelin.upgrades.library.Proxy_initialized.Return": { - "cairo_type": "()", - "type": "type_definition" - }, - "openzeppelin.upgrades.library.Proxy_initialized.SIZEOF_LOCALS": { - "type": "const", - "value": 0 - }, - "openzeppelin.upgrades.library.Proxy_initialized.hash2": { - "destination": "starkware.cairo.common.hash.hash2", - "type": "alias" - }, - "openzeppelin.upgrades.library.Proxy_initialized.normalize_address": { - "destination": "starkware.starknet.common.storage.normalize_address", - "type": "alias" - }, - "openzeppelin.upgrades.library.Proxy_initialized.storage_read": { - "destination": "starkware.starknet.common.syscalls.storage_read", - "type": "alias" - }, - "openzeppelin.upgrades.library.Proxy_initialized.storage_write": { - "destination": "starkware.starknet.common.syscalls.storage_write", - "type": "alias" - }, - "openzeppelin.upgrades.library.TRUE": { - "destination": "starkware.cairo.common.bool.TRUE", - "type": "alias" - }, - "openzeppelin.upgrades.library.Upgraded": { - "type": "namespace" - }, - "openzeppelin.upgrades.library.Upgraded.Args": { - "full_name": "openzeppelin.upgrades.library.Upgraded.Args", - "members": {}, - "size": 0, - "type": "struct" - }, - "openzeppelin.upgrades.library.Upgraded.ImplicitArgs": { - "full_name": "openzeppelin.upgrades.library.Upgraded.ImplicitArgs", - "members": {}, - "size": 0, - "type": "struct" - }, - "openzeppelin.upgrades.library.Upgraded.Return": { - "cairo_type": "()", - "type": "type_definition" - }, - "openzeppelin.upgrades.library.Upgraded.SELECTOR": { - "type": "const", - "value": 1291924484015741933195105472014600539495279993452337828418116470835452386035 - }, - "openzeppelin.upgrades.library.Upgraded.SIZEOF_LOCALS": { - "type": "const", - "value": 0 - }, - "openzeppelin.upgrades.library.Upgraded.alloc": { - "destination": "starkware.cairo.common.alloc.alloc", - "type": "alias" - }, - "openzeppelin.upgrades.library.Upgraded.emit_event": { - "destination": "starkware.starknet.common.syscalls.emit_event", - "type": "alias" - }, - "openzeppelin.upgrades.library.Upgraded.memcpy": { - "destination": "starkware.cairo.common.memcpy.memcpy", - "type": "alias" - }, - "openzeppelin.upgrades.library.assert_not_zero": { - "destination": "starkware.cairo.common.math.assert_not_zero", - "type": "alias" - }, - "openzeppelin.upgrades.library.get_caller_address": { - "destination": "starkware.starknet.common.syscalls.get_caller_address", - "type": "alias" - }, - "starkware.cairo.common.alloc.alloc": { - "decorators": [], - "pc": 0, - "type": "function" - }, - "starkware.cairo.common.alloc.alloc.Args": { - "full_name": "starkware.cairo.common.alloc.alloc.Args", - "members": {}, - "size": 0, - "type": "struct" - }, - "starkware.cairo.common.alloc.alloc.ImplicitArgs": { - "full_name": "starkware.cairo.common.alloc.alloc.ImplicitArgs", - "members": {}, - "size": 0, - "type": "struct" - }, - "starkware.cairo.common.alloc.alloc.Return": { - "cairo_type": "(ptr: felt*)", - "type": "type_definition" - }, - "starkware.cairo.common.alloc.alloc.SIZEOF_LOCALS": { - "type": "const", - "value": 0 - }, - "starkware.cairo.common.bitwise.ALL_ONES": { - "type": "const", - "value": -106710729501573572985208420194530329073740042555888586719234 - }, - "starkware.cairo.common.bitwise.BitwiseBuiltin": { - "destination": "starkware.cairo.common.cairo_builtins.BitwiseBuiltin", - "type": "alias" - }, - "starkware.cairo.common.bool.FALSE": { - "type": "const", - "value": 0 - }, - "starkware.cairo.common.bool.TRUE": { - "type": "const", - "value": 1 - }, - "starkware.cairo.common.cairo_builtins.BitwiseBuiltin": { - "full_name": "starkware.cairo.common.cairo_builtins.BitwiseBuiltin", - "members": { - "x": { - "cairo_type": "felt", - "offset": 0 - }, - "x_and_y": { - "cairo_type": "felt", - "offset": 2 - }, - "x_or_y": { - "cairo_type": "felt", - "offset": 4 - }, - "x_xor_y": { - "cairo_type": "felt", - "offset": 3 - }, - "y": { - "cairo_type": "felt", - "offset": 1 - } - }, - "size": 5, - "type": "struct" - }, - "starkware.cairo.common.cairo_builtins.EcOpBuiltin": { - "full_name": "starkware.cairo.common.cairo_builtins.EcOpBuiltin", - "members": { - "m": { - "cairo_type": "felt", - "offset": 4 - }, - "p": { - "cairo_type": "starkware.cairo.common.ec_point.EcPoint", - "offset": 0 - }, - "q": { - "cairo_type": "starkware.cairo.common.ec_point.EcPoint", - "offset": 2 - }, - "r": { - "cairo_type": "starkware.cairo.common.ec_point.EcPoint", - "offset": 5 - } - }, - "size": 7, - "type": "struct" - }, - "starkware.cairo.common.cairo_builtins.EcPoint": { - "destination": "starkware.cairo.common.ec_point.EcPoint", - "type": "alias" - }, - "starkware.cairo.common.cairo_builtins.HashBuiltin": { - "full_name": "starkware.cairo.common.cairo_builtins.HashBuiltin", - "members": { - "result": { - "cairo_type": "felt", - "offset": 2 - }, - "x": { - "cairo_type": "felt", - "offset": 0 - }, - "y": { - "cairo_type": "felt", - "offset": 1 - } - }, - "size": 3, - "type": "struct" - }, - "starkware.cairo.common.cairo_builtins.KeccakBuiltin": { - "full_name": "starkware.cairo.common.cairo_builtins.KeccakBuiltin", - "members": { - "input": { - "cairo_type": "starkware.cairo.common.keccak_state.KeccakBuiltinState", - "offset": 0 - }, - "output": { - "cairo_type": "starkware.cairo.common.keccak_state.KeccakBuiltinState", - "offset": 8 - } - }, - "size": 16, - "type": "struct" - }, - "starkware.cairo.common.cairo_builtins.KeccakBuiltinState": { - "destination": "starkware.cairo.common.keccak_state.KeccakBuiltinState", - "type": "alias" - }, - "starkware.cairo.common.cairo_builtins.PoseidonBuiltin": { - "full_name": "starkware.cairo.common.cairo_builtins.PoseidonBuiltin", - "members": { - "input": { - "cairo_type": "starkware.cairo.common.poseidon_state.PoseidonBuiltinState", - "offset": 0 - }, - "output": { - "cairo_type": "starkware.cairo.common.poseidon_state.PoseidonBuiltinState", - "offset": 3 - } - }, - "size": 6, - "type": "struct" - }, - "starkware.cairo.common.cairo_builtins.PoseidonBuiltinState": { - "destination": "starkware.cairo.common.poseidon_state.PoseidonBuiltinState", - "type": "alias" - }, - "starkware.cairo.common.cairo_builtins.SignatureBuiltin": { - "full_name": "starkware.cairo.common.cairo_builtins.SignatureBuiltin", - "members": { - "message": { - "cairo_type": "felt", - "offset": 1 - }, - "pub_key": { - "cairo_type": "felt", - "offset": 0 - } - }, - "size": 2, - "type": "struct" - }, - "starkware.cairo.common.dict_access.DictAccess": { - "full_name": "starkware.cairo.common.dict_access.DictAccess", - "members": { - "key": { - "cairo_type": "felt", - "offset": 0 - }, - "new_value": { - "cairo_type": "felt", - "offset": 2 - }, - "prev_value": { - "cairo_type": "felt", - "offset": 1 - } - }, - "size": 3, - "type": "struct" - }, - "starkware.cairo.common.ec.EcOpBuiltin": { - "destination": "starkware.cairo.common.cairo_builtins.EcOpBuiltin", - "type": "alias" - }, - "starkware.cairo.common.ec.EcPoint": { - "destination": "starkware.cairo.common.ec_point.EcPoint", - "type": "alias" - }, - "starkware.cairo.common.ec.StarkCurve": { - "type": "namespace" - }, - "starkware.cairo.common.ec.StarkCurve.ALPHA": { - "type": "const", - "value": 1 - }, - "starkware.cairo.common.ec.StarkCurve.Args": { - "full_name": "starkware.cairo.common.ec.StarkCurve.Args", - "members": {}, - "size": 0, - "type": "struct" - }, - "starkware.cairo.common.ec.StarkCurve.BETA": { - "type": "const", - "value": -476910135076337975234679399815567221425937815956490878998147463828055613816 - }, - "starkware.cairo.common.ec.StarkCurve.GEN_X": { - "type": "const", - "value": 874739451078007766457464989774322083649278607533249481151382481072868806602 - }, - "starkware.cairo.common.ec.StarkCurve.GEN_Y": { - "type": "const", - "value": 152666792071518830868575557812948353041420400780739481342941381225525861407 - }, - "starkware.cairo.common.ec.StarkCurve.ImplicitArgs": { - "full_name": "starkware.cairo.common.ec.StarkCurve.ImplicitArgs", - "members": {}, - "size": 0, - "type": "struct" - }, - "starkware.cairo.common.ec.StarkCurve.ORDER": { - "type": "const", - "value": -96363463615509210819012598251359154898 - }, - "starkware.cairo.common.ec.StarkCurve.Return": { - "cairo_type": "()", - "type": "type_definition" - }, - "starkware.cairo.common.ec.StarkCurve.SIZEOF_LOCALS": { - "type": "const", - "value": 0 - }, - "starkware.cairo.common.ec.is_quad_residue": { - "destination": "starkware.cairo.common.math.is_quad_residue", - "type": "alias" - }, - "starkware.cairo.common.ec_point.EcPoint": { - "full_name": "starkware.cairo.common.ec_point.EcPoint", - "members": { - "x": { - "cairo_type": "felt", - "offset": 0 - }, - "y": { - "cairo_type": "felt", - "offset": 1 - } - }, - "size": 2, - "type": "struct" - }, - "starkware.cairo.common.hash.HashBuiltin": { - "destination": "starkware.cairo.common.cairo_builtins.HashBuiltin", - "type": "alias" - }, - "starkware.cairo.common.hash.hash2": { - "decorators": [], - "pc": 3, - "type": "function" - }, - "starkware.cairo.common.hash.hash2.Args": { - "full_name": "starkware.cairo.common.hash.hash2.Args", - "members": { - "x": { - "cairo_type": "felt", - "offset": 0 - }, - "y": { - "cairo_type": "felt", - "offset": 1 - } - }, - "size": 2, - "type": "struct" - }, - "starkware.cairo.common.hash.hash2.ImplicitArgs": { - "full_name": "starkware.cairo.common.hash.hash2.ImplicitArgs", - "members": { - "hash_ptr": { - "cairo_type": "starkware.cairo.common.cairo_builtins.HashBuiltin*", - "offset": 0 - } - }, - "size": 1, - "type": "struct" - }, - "starkware.cairo.common.hash.hash2.Return": { - "cairo_type": "(result: felt)", - "type": "type_definition" - }, - "starkware.cairo.common.hash.hash2.SIZEOF_LOCALS": { - "type": "const", - "value": 0 - }, - "starkware.cairo.common.keccak_state.KeccakBuiltinState": { - "full_name": "starkware.cairo.common.keccak_state.KeccakBuiltinState", - "members": { - "s0": { - "cairo_type": "felt", - "offset": 0 - }, - "s1": { - "cairo_type": "felt", - "offset": 1 - }, - "s2": { - "cairo_type": "felt", - "offset": 2 - }, - "s3": { - "cairo_type": "felt", - "offset": 3 - }, - "s4": { - "cairo_type": "felt", - "offset": 4 - }, - "s5": { - "cairo_type": "felt", - "offset": 5 - }, - "s6": { - "cairo_type": "felt", - "offset": 6 - }, - "s7": { - "cairo_type": "felt", - "offset": 7 - } - }, - "size": 8, - "type": "struct" - }, - "starkware.cairo.common.math.FALSE": { - "destination": "starkware.cairo.common.bool.FALSE", - "type": "alias" - }, - "starkware.cairo.common.math.TRUE": { - "destination": "starkware.cairo.common.bool.TRUE", - "type": "alias" - }, - "starkware.cairo.common.math.assert_le": { - "decorators": [], - "pc": 77, - "type": "function" - }, - "starkware.cairo.common.math.assert_le.Args": { - "full_name": "starkware.cairo.common.math.assert_le.Args", - "members": { - "a": { - "cairo_type": "felt", - "offset": 0 - }, - "b": { - "cairo_type": "felt", - "offset": 1 - } - }, - "size": 2, - "type": "struct" - }, - "starkware.cairo.common.math.assert_le.ImplicitArgs": { - "full_name": "starkware.cairo.common.math.assert_le.ImplicitArgs", - "members": { - "range_check_ptr": { - "cairo_type": "felt", - "offset": 0 - } - }, - "size": 1, - "type": "struct" - }, - "starkware.cairo.common.math.assert_le.Return": { - "cairo_type": "()", - "type": "type_definition" - }, - "starkware.cairo.common.math.assert_le.SIZEOF_LOCALS": { - "type": "const", - "value": 0 - }, - "starkware.cairo.common.math.assert_le_felt": { - "decorators": [ - "known_ap_change" - ], - "pc": 111, - "type": "function" - }, - "starkware.cairo.common.math.assert_le_felt.Args": { - "full_name": "starkware.cairo.common.math.assert_le_felt.Args", - "members": { - "a": { - "cairo_type": "felt", - "offset": 0 - }, - "b": { - "cairo_type": "felt", - "offset": 1 - } - }, - "size": 2, - "type": "struct" - }, - "starkware.cairo.common.math.assert_le_felt.ImplicitArgs": { - "full_name": "starkware.cairo.common.math.assert_le_felt.ImplicitArgs", - "members": { - "range_check_ptr": { - "cairo_type": "felt", - "offset": 0 - } - }, - "size": 1, - "type": "struct" - }, - "starkware.cairo.common.math.assert_le_felt.PRIME_OVER_2_HIGH": { - "type": "const", - "value": 5316911983139663648412552867652567041 - }, - "starkware.cairo.common.math.assert_le_felt.PRIME_OVER_3_HIGH": { - "type": "const", - "value": 3544607988759775765608368578435044694 - }, - "starkware.cairo.common.math.assert_le_felt.Return": { - "cairo_type": "()", - "type": "type_definition" - }, - "starkware.cairo.common.math.assert_le_felt.SIZEOF_LOCALS": { - "type": "const", - "value": 0 - }, - "starkware.cairo.common.math.assert_le_felt.a": { - "cairo_type": "felt", - "full_name": "starkware.cairo.common.math.assert_le_felt.a", - "references": [ - { - "ap_tracking_data": { - "group": 12, - "offset": 0 - }, - "pc": 111, - "value": "[cast(fp + (-4), felt*)]" - } - ], - "type": "reference" - }, - "starkware.cairo.common.math.assert_le_felt.b": { - "cairo_type": "felt", - "full_name": "starkware.cairo.common.math.assert_le_felt.b", - "references": [ - { - "ap_tracking_data": { - "group": 12, - "offset": 0 - }, - "pc": 111, - "value": "[cast(fp + (-3), felt*)]" - } - ], - "type": "reference" - }, - "starkware.cairo.common.math.assert_le_felt.range_check_ptr": { - "cairo_type": "felt", - "full_name": "starkware.cairo.common.math.assert_le_felt.range_check_ptr", - "references": [ - { - "ap_tracking_data": { - "group": 12, - "offset": 0 - }, - "pc": 111, - "value": "[cast(fp + (-5), felt*)]" - }, - { - "ap_tracking_data": { - "group": 12, - "offset": 8 - }, - "pc": 121, - "value": "cast([fp + (-5)] + 4, felt)" - } - ], - "type": "reference" - }, - "starkware.cairo.common.math.assert_le_felt.skip_exclude_a": { - "pc": 135, - "type": "label" - }, - "starkware.cairo.common.math.assert_le_felt.skip_exclude_b_minus_a": { - "pc": 147, - "type": "label" - }, - "starkware.cairo.common.math.assert_nn": { - "decorators": [], - "pc": 73, - "type": "function" - }, - "starkware.cairo.common.math.assert_nn.Args": { - "full_name": "starkware.cairo.common.math.assert_nn.Args", - "members": { - "a": { - "cairo_type": "felt", - "offset": 0 - } - }, - "size": 1, - "type": "struct" - }, - "starkware.cairo.common.math.assert_nn.ImplicitArgs": { - "full_name": "starkware.cairo.common.math.assert_nn.ImplicitArgs", - "members": { - "range_check_ptr": { - "cairo_type": "felt", - "offset": 0 - } - }, - "size": 1, - "type": "struct" - }, - "starkware.cairo.common.math.assert_nn.Return": { - "cairo_type": "()", - "type": "type_definition" - }, - "starkware.cairo.common.math.assert_nn.SIZEOF_LOCALS": { - "type": "const", - "value": 0 - }, - "starkware.cairo.common.math.assert_nn.a": { - "cairo_type": "felt", - "full_name": "starkware.cairo.common.math.assert_nn.a", - "references": [ - { - "ap_tracking_data": { - "group": 9, - "offset": 0 - }, - "pc": 73, - "value": "[cast(fp + (-3), felt*)]" - } - ], - "type": "reference" - }, - "starkware.cairo.common.math.split_felt": { - "decorators": [ - "known_ap_change" - ], - "pc": 82, - "type": "function" - }, - "starkware.cairo.common.math.split_felt.Args": { - "full_name": "starkware.cairo.common.math.split_felt.Args", - "members": { - "value": { - "cairo_type": "felt", - "offset": 0 - } - }, - "size": 1, - "type": "struct" - }, - "starkware.cairo.common.math.split_felt.ImplicitArgs": { - "full_name": "starkware.cairo.common.math.split_felt.ImplicitArgs", - "members": { - "range_check_ptr": { - "cairo_type": "felt", - "offset": 0 - } - }, - "size": 1, - "type": "struct" - }, - "starkware.cairo.common.math.split_felt.MAX_HIGH": { - "type": "const", - "value": 10633823966279327296825105735305134080 - }, - "starkware.cairo.common.math.split_felt.MAX_LOW": { - "type": "const", - "value": 0 - }, - "starkware.cairo.common.math.split_felt.Return": { - "cairo_type": "(high: felt, low: felt)", - "type": "type_definition" - }, - "starkware.cairo.common.math.split_felt.SIZEOF_LOCALS": { - "type": "const", - "value": 0 - }, - "starkware.cairo.common.math.split_felt.high": { - "cairo_type": "felt", - "full_name": "starkware.cairo.common.math.split_felt.high", - "references": [ - { - "ap_tracking_data": { - "group": 11, - "offset": 0 - }, - "pc": 82, - "value": "[cast([fp + (-4)] + 1, felt*)]" - } - ], - "type": "reference" - }, - "starkware.cairo.common.math.split_felt.low": { - "cairo_type": "felt", - "full_name": "starkware.cairo.common.math.split_felt.low", - "references": [ - { - "ap_tracking_data": { - "group": 11, - "offset": 0 - }, - "pc": 82, - "value": "[cast([fp + (-4)], felt*)]" - } - ], - "type": "reference" - }, - "starkware.cairo.common.math.split_felt.value": { - "cairo_type": "felt", - "full_name": "starkware.cairo.common.math.split_felt.value", - "references": [ - { - "ap_tracking_data": { - "group": 11, - "offset": 0 - }, - "pc": 82, - "value": "[cast(fp + (-3), felt*)]" - } - ], - "type": "reference" - }, - "starkware.cairo.common.math.unsigned_div_rem": { - "decorators": [], - "pc": 156, - "type": "function" - }, - "starkware.cairo.common.math.unsigned_div_rem.Args": { - "full_name": "starkware.cairo.common.math.unsigned_div_rem.Args", - "members": { - "div": { - "cairo_type": "felt", - "offset": 1 - }, - "value": { - "cairo_type": "felt", - "offset": 0 - } - }, - "size": 2, - "type": "struct" - }, - "starkware.cairo.common.math.unsigned_div_rem.ImplicitArgs": { - "full_name": "starkware.cairo.common.math.unsigned_div_rem.ImplicitArgs", - "members": { - "range_check_ptr": { - "cairo_type": "felt", - "offset": 0 - } - }, - "size": 1, - "type": "struct" - }, - "starkware.cairo.common.math.unsigned_div_rem.Return": { - "cairo_type": "(q: felt, r: felt)", - "type": "type_definition" - }, - "starkware.cairo.common.math.unsigned_div_rem.SIZEOF_LOCALS": { - "type": "const", - "value": 0 - }, - "starkware.cairo.common.math.unsigned_div_rem.div": { - "cairo_type": "felt", - "full_name": "starkware.cairo.common.math.unsigned_div_rem.div", - "references": [ - { - "ap_tracking_data": { - "group": 13, - "offset": 0 - }, - "pc": 156, - "value": "[cast(fp + (-3), felt*)]" - } - ], - "type": "reference" - }, - "starkware.cairo.common.math.unsigned_div_rem.q": { - "cairo_type": "felt", - "full_name": "starkware.cairo.common.math.unsigned_div_rem.q", - "references": [ - { - "ap_tracking_data": { - "group": 13, - "offset": 0 - }, - "pc": 156, - "value": "[cast([fp + (-5)] + 1, felt*)]" - } - ], - "type": "reference" - }, - "starkware.cairo.common.math.unsigned_div_rem.r": { - "cairo_type": "felt", - "full_name": "starkware.cairo.common.math.unsigned_div_rem.r", - "references": [ - { - "ap_tracking_data": { - "group": 13, - "offset": 0 - }, - "pc": 156, - "value": "[cast([fp + (-5)], felt*)]" - } - ], - "type": "reference" - }, - "starkware.cairo.common.math.unsigned_div_rem.value": { - "cairo_type": "felt", - "full_name": "starkware.cairo.common.math.unsigned_div_rem.value", - "references": [ - { - "ap_tracking_data": { - "group": 13, - "offset": 0 - }, - "pc": 156, - "value": "[cast(fp + (-4), felt*)]" - } - ], - "type": "reference" - }, - "starkware.cairo.common.math_cmp.RC_BOUND": { - "type": "const", - "value": 340282366920938463463374607431768211456 - }, - "starkware.cairo.common.math_cmp.assert_le_felt": { - "destination": "starkware.cairo.common.math.assert_le_felt", - "type": "alias" - }, - "starkware.cairo.common.math_cmp.assert_lt_felt": { - "destination": "starkware.cairo.common.math.assert_lt_felt", - "type": "alias" - }, - "starkware.cairo.common.math_cmp.is_le": { - "decorators": [ - "known_ap_change" - ], - "pc": 217, - "type": "function" - }, - "starkware.cairo.common.math_cmp.is_le.Args": { - "full_name": "starkware.cairo.common.math_cmp.is_le.Args", - "members": { - "a": { - "cairo_type": "felt", - "offset": 0 - }, - "b": { - "cairo_type": "felt", - "offset": 1 - } - }, - "size": 2, - "type": "struct" - }, - "starkware.cairo.common.math_cmp.is_le.ImplicitArgs": { - "full_name": "starkware.cairo.common.math_cmp.is_le.ImplicitArgs", - "members": { - "range_check_ptr": { - "cairo_type": "felt", - "offset": 0 - } - }, - "size": 1, - "type": "struct" - }, - "starkware.cairo.common.math_cmp.is_le.Return": { - "cairo_type": "felt", - "type": "type_definition" - }, - "starkware.cairo.common.math_cmp.is_le.SIZEOF_LOCALS": { - "type": "const", - "value": 0 - }, - "starkware.cairo.common.math_cmp.is_nn": { - "decorators": [ - "known_ap_change" - ], - "pc": 184, - "type": "function" - }, - "starkware.cairo.common.math_cmp.is_nn.Args": { - "full_name": "starkware.cairo.common.math_cmp.is_nn.Args", - "members": { - "a": { - "cairo_type": "felt", - "offset": 0 - } - }, - "size": 1, - "type": "struct" - }, - "starkware.cairo.common.math_cmp.is_nn.ImplicitArgs": { - "full_name": "starkware.cairo.common.math_cmp.is_nn.ImplicitArgs", - "members": { - "range_check_ptr": { - "cairo_type": "felt", - "offset": 0 - } - }, - "size": 1, - "type": "struct" - }, - "starkware.cairo.common.math_cmp.is_nn.Return": { - "cairo_type": "felt", - "type": "type_definition" - }, - "starkware.cairo.common.math_cmp.is_nn.SIZEOF_LOCALS": { - "type": "const", - "value": 0 - }, - "starkware.cairo.common.math_cmp.is_nn.a": { - "cairo_type": "felt", - "full_name": "starkware.cairo.common.math_cmp.is_nn.a", - "references": [ - { - "ap_tracking_data": { - "group": 16, - "offset": 0 - }, - "pc": 184, - "value": "[cast(fp + (-3), felt*)]" - } - ], - "type": "reference" - }, - "starkware.cairo.common.math_cmp.is_nn.need_felt_comparison": { - "pc": 208, - "type": "label" - }, - "starkware.cairo.common.math_cmp.is_nn.out_of_range": { - "pc": 194, - "type": "label" - }, - "starkware.cairo.common.math_cmp.is_not_zero": { - "decorators": [ - "known_ap_change" - ], - "pc": 176, - "type": "function" - }, - "starkware.cairo.common.math_cmp.is_not_zero.Args": { - "full_name": "starkware.cairo.common.math_cmp.is_not_zero.Args", - "members": { - "value": { - "cairo_type": "felt", - "offset": 0 - } - }, - "size": 1, - "type": "struct" - }, - "starkware.cairo.common.math_cmp.is_not_zero.ImplicitArgs": { - "full_name": "starkware.cairo.common.math_cmp.is_not_zero.ImplicitArgs", - "members": {}, - "size": 0, - "type": "struct" - }, - "starkware.cairo.common.math_cmp.is_not_zero.Return": { - "cairo_type": "felt", - "type": "type_definition" - }, - "starkware.cairo.common.math_cmp.is_not_zero.SIZEOF_LOCALS": { - "type": "const", - "value": 0 - }, - "starkware.cairo.common.memcpy.memcpy": { - "decorators": [], - "pc": 9, - "type": "function" - }, - "starkware.cairo.common.memcpy.memcpy.Args": { - "full_name": "starkware.cairo.common.memcpy.memcpy.Args", - "members": { - "dst": { - "cairo_type": "felt*", - "offset": 0 - }, - "len": { - "cairo_type": "felt", - "offset": 2 - }, - "src": { - "cairo_type": "felt*", - "offset": 1 - } - }, - "size": 3, - "type": "struct" - }, - "starkware.cairo.common.memcpy.memcpy.ImplicitArgs": { - "full_name": "starkware.cairo.common.memcpy.memcpy.ImplicitArgs", - "members": {}, - "size": 0, - "type": "struct" - }, - "starkware.cairo.common.memcpy.memcpy.LoopFrame": { - "full_name": "starkware.cairo.common.memcpy.memcpy.LoopFrame", - "members": { - "dst": { - "cairo_type": "felt*", - "offset": 0 - }, - "src": { - "cairo_type": "felt*", - "offset": 1 - } - }, - "size": 2, - "type": "struct" - }, - "starkware.cairo.common.memcpy.memcpy.Return": { - "cairo_type": "()", - "type": "type_definition" - }, - "starkware.cairo.common.memcpy.memcpy.SIZEOF_LOCALS": { - "type": "const", - "value": 0 - }, - "starkware.cairo.common.memcpy.memcpy.continue_copying": { - "cairo_type": "felt", - "full_name": "starkware.cairo.common.memcpy.memcpy.continue_copying", - "references": [ - { - "ap_tracking_data": { - "group": 2, - "offset": 3 - }, - "pc": 16, - "value": "[cast(ap, felt*)]" - } - ], - "type": "reference" - }, - "starkware.cairo.common.memcpy.memcpy.len": { - "cairo_type": "felt", - "full_name": "starkware.cairo.common.memcpy.memcpy.len", - "references": [ - { - "ap_tracking_data": { - "group": 2, - "offset": 0 - }, - "pc": 9, - "value": "[cast(fp + (-3), felt*)]" - } - ], - "type": "reference" - }, - "starkware.cairo.common.memcpy.memcpy.loop": { - "pc": 14, - "type": "label" - }, - "starkware.cairo.common.poseidon_state.PoseidonBuiltinState": { - "full_name": "starkware.cairo.common.poseidon_state.PoseidonBuiltinState", - "members": { - "s0": { - "cairo_type": "felt", - "offset": 0 - }, - "s1": { - "cairo_type": "felt", - "offset": 1 - }, - "s2": { - "cairo_type": "felt", - "offset": 2 - } - }, - "size": 3, - "type": "struct" - }, - "starkware.cairo.common.pow.assert_le": { - "destination": "starkware.cairo.common.math.assert_le", - "type": "alias" - }, - "starkware.cairo.common.pow.get_ap": { - "destination": "starkware.cairo.common.registers.get_ap", - "type": "alias" - }, - "starkware.cairo.common.pow.get_fp_and_pc": { - "destination": "starkware.cairo.common.registers.get_fp_and_pc", - "type": "alias" - }, - "starkware.cairo.common.registers.get_ap": { - "destination": "starkware.cairo.lang.compiler.lib.registers.get_ap", - "type": "alias" - }, - "starkware.cairo.common.registers.get_fp_and_pc": { - "destination": "starkware.cairo.lang.compiler.lib.registers.get_fp_and_pc", - "type": "alias" - }, - "starkware.cairo.common.signature.EcOpBuiltin": { - "destination": "starkware.cairo.common.cairo_builtins.EcOpBuiltin", - "type": "alias" - }, - "starkware.cairo.common.signature.EcPoint": { - "destination": "starkware.cairo.common.ec_point.EcPoint", - "type": "alias" - }, - "starkware.cairo.common.signature.FALSE": { - "destination": "starkware.cairo.common.bool.FALSE", - "type": "alias" - }, - "starkware.cairo.common.signature.SignatureBuiltin": { - "destination": "starkware.cairo.common.cairo_builtins.SignatureBuiltin", - "type": "alias" - }, - "starkware.cairo.common.signature.StarkCurve": { - "destination": "starkware.cairo.common.ec.StarkCurve", - "type": "alias" - }, - "starkware.cairo.common.signature.TRUE": { - "destination": "starkware.cairo.common.bool.TRUE", - "type": "alias" - }, - "starkware.cairo.common.signature.ec_add": { - "destination": "starkware.cairo.common.ec.ec_add", - "type": "alias" - }, - "starkware.cairo.common.signature.ec_mul": { - "destination": "starkware.cairo.common.ec.ec_mul", - "type": "alias" - }, - "starkware.cairo.common.signature.ec_sub": { - "destination": "starkware.cairo.common.ec.ec_sub", - "type": "alias" - }, - "starkware.cairo.common.signature.is_x_on_curve": { - "destination": "starkware.cairo.common.ec.is_x_on_curve", - "type": "alias" - }, - "starkware.cairo.common.signature.recover_y": { - "destination": "starkware.cairo.common.ec.recover_y", - "type": "alias" - }, - "starkware.cairo.common.signature.verify_ecdsa_signature": { - "decorators": [], - "pc": 171, - "type": "function" - }, - "starkware.cairo.common.signature.verify_ecdsa_signature.Args": { - "full_name": "starkware.cairo.common.signature.verify_ecdsa_signature.Args", - "members": { - "message": { - "cairo_type": "felt", - "offset": 0 - }, - "public_key": { - "cairo_type": "felt", - "offset": 1 - }, - "signature_r": { - "cairo_type": "felt", - "offset": 2 - }, - "signature_s": { - "cairo_type": "felt", - "offset": 3 - } - }, - "size": 4, - "type": "struct" - }, - "starkware.cairo.common.signature.verify_ecdsa_signature.ImplicitArgs": { - "full_name": "starkware.cairo.common.signature.verify_ecdsa_signature.ImplicitArgs", - "members": { - "ecdsa_ptr": { - "cairo_type": "starkware.cairo.common.cairo_builtins.SignatureBuiltin*", - "offset": 0 - } - }, - "size": 1, - "type": "struct" - }, - "starkware.cairo.common.signature.verify_ecdsa_signature.Return": { - "cairo_type": "()", - "type": "type_definition" - }, - "starkware.cairo.common.signature.verify_ecdsa_signature.SIZEOF_LOCALS": { - "type": "const", - "value": 0 - }, - "starkware.cairo.common.signature.verify_ecdsa_signature.ecdsa_ptr": { - "cairo_type": "starkware.cairo.common.cairo_builtins.SignatureBuiltin*", - "full_name": "starkware.cairo.common.signature.verify_ecdsa_signature.ecdsa_ptr", - "references": [ - { - "ap_tracking_data": { - "group": 14, - "offset": 0 - }, - "pc": 171, - "value": "[cast(fp + (-7), starkware.cairo.common.cairo_builtins.SignatureBuiltin**)]" - }, - { - "ap_tracking_data": { - "group": 14, - "offset": 0 - }, - "pc": 173, - "value": "cast([fp + (-7)] + 2, starkware.cairo.common.cairo_builtins.SignatureBuiltin*)" - } - ], - "type": "reference" - }, - "starkware.cairo.common.signature.verify_ecdsa_signature.signature_r": { - "cairo_type": "felt", - "full_name": "starkware.cairo.common.signature.verify_ecdsa_signature.signature_r", - "references": [ - { - "ap_tracking_data": { - "group": 14, - "offset": 0 - }, - "pc": 171, - "value": "[cast(fp + (-4), felt*)]" - } - ], - "type": "reference" - }, - "starkware.cairo.common.signature.verify_ecdsa_signature.signature_s": { - "cairo_type": "felt", - "full_name": "starkware.cairo.common.signature.verify_ecdsa_signature.signature_s", - "references": [ - { - "ap_tracking_data": { - "group": 14, - "offset": 0 - }, - "pc": 171, - "value": "[cast(fp + (-3), felt*)]" - } - ], - "type": "reference" - }, - "starkware.cairo.common.uint256.ALL_ONES": { - "type": "const", - "value": 340282366920938463463374607431768211455 - }, - "starkware.cairo.common.uint256.BitwiseBuiltin": { - "destination": "starkware.cairo.common.cairo_builtins.BitwiseBuiltin", - "type": "alias" - }, - "starkware.cairo.common.uint256.HALF_SHIFT": { - "type": "const", - "value": 18446744073709551616 - }, - "starkware.cairo.common.uint256.SHIFT": { - "type": "const", - "value": 340282366920938463463374607431768211456 - }, - "starkware.cairo.common.uint256.Uint256": { - "full_name": "starkware.cairo.common.uint256.Uint256", - "members": { - "high": { - "cairo_type": "felt", - "offset": 1 - }, - "low": { - "cairo_type": "felt", - "offset": 0 - } - }, - "size": 2, - "type": "struct" - }, - "starkware.cairo.common.uint256.assert_in_range": { - "destination": "starkware.cairo.common.math.assert_in_range", - "type": "alias" - }, - "starkware.cairo.common.uint256.assert_le": { - "destination": "starkware.cairo.common.math.assert_le", - "type": "alias" - }, - "starkware.cairo.common.uint256.assert_nn_le": { - "destination": "starkware.cairo.common.math.assert_nn_le", - "type": "alias" - }, - "starkware.cairo.common.uint256.assert_not_zero": { - "destination": "starkware.cairo.common.math.assert_not_zero", - "type": "alias" - }, - "starkware.cairo.common.uint256.bitwise_and": { - "destination": "starkware.cairo.common.bitwise.bitwise_and", - "type": "alias" - }, - "starkware.cairo.common.uint256.bitwise_or": { - "destination": "starkware.cairo.common.bitwise.bitwise_or", - "type": "alias" - }, - "starkware.cairo.common.uint256.bitwise_xor": { - "destination": "starkware.cairo.common.bitwise.bitwise_xor", - "type": "alias" - }, - "starkware.cairo.common.uint256.get_ap": { - "destination": "starkware.cairo.common.registers.get_ap", - "type": "alias" - }, - "starkware.cairo.common.uint256.get_fp_and_pc": { - "destination": "starkware.cairo.common.registers.get_fp_and_pc", - "type": "alias" - }, - "starkware.cairo.common.uint256.is_le": { - "destination": "starkware.cairo.common.math_cmp.is_le", - "type": "alias" - }, - "starkware.cairo.common.uint256.pow": { - "destination": "starkware.cairo.common.pow.pow", - "type": "alias" - }, - "starkware.starknet.common.storage.ADDR_BOUND": { - "type": "const", - "value": -106710729501573572985208420194530329073740042555888586719489 - }, - "starkware.starknet.common.storage.MAX_STORAGE_ITEM_SIZE": { - "type": "const", - "value": 256 - }, - "starkware.starknet.common.storage.assert_250_bit": { - "destination": "starkware.cairo.common.math.assert_250_bit", - "type": "alias" - }, - "starkware.starknet.common.syscalls.CALL_CONTRACT_SELECTOR": { - "type": "const", - "value": 20853273475220472486191784820 - }, - "starkware.starknet.common.syscalls.CallContract": { - "full_name": "starkware.starknet.common.syscalls.CallContract", - "members": { - "request": { - "cairo_type": "starkware.starknet.common.syscalls.CallContractRequest", - "offset": 0 - }, - "response": { - "cairo_type": "starkware.starknet.common.syscalls.CallContractResponse", - "offset": 5 - } - }, - "size": 7, - "type": "struct" - }, - "starkware.starknet.common.syscalls.CallContractRequest": { - "full_name": "starkware.starknet.common.syscalls.CallContractRequest", - "members": { - "calldata": { - "cairo_type": "felt*", - "offset": 4 - }, - "calldata_size": { - "cairo_type": "felt", - "offset": 3 - }, - "contract_address": { - "cairo_type": "felt", - "offset": 1 - }, - "function_selector": { - "cairo_type": "felt", - "offset": 2 - }, - "selector": { - "cairo_type": "felt", - "offset": 0 - } - }, - "size": 5, - "type": "struct" - }, - "starkware.starknet.common.syscalls.CallContractResponse": { - "full_name": "starkware.starknet.common.syscalls.CallContractResponse", - "members": { - "retdata": { - "cairo_type": "felt*", - "offset": 1 - }, - "retdata_size": { - "cairo_type": "felt", - "offset": 0 - } - }, - "size": 2, - "type": "struct" - }, - "starkware.starknet.common.syscalls.DELEGATE_CALL_SELECTOR": { - "type": "const", - "value": 21167594061783206823196716140 - }, - "starkware.starknet.common.syscalls.DELEGATE_L1_HANDLER_SELECTOR": { - "type": "const", - "value": 23274015802972845247556842986379118667122 - }, - "starkware.starknet.common.syscalls.DEPLOY_SELECTOR": { - "type": "const", - "value": 75202468540281 - }, - "starkware.starknet.common.syscalls.Deploy": { - "full_name": "starkware.starknet.common.syscalls.Deploy", - "members": { - "request": { - "cairo_type": "starkware.starknet.common.syscalls.DeployRequest", - "offset": 0 - }, - "response": { - "cairo_type": "starkware.starknet.common.syscalls.DeployResponse", - "offset": 6 - } - }, - "size": 9, - "type": "struct" - }, - "starkware.starknet.common.syscalls.DeployRequest": { - "full_name": "starkware.starknet.common.syscalls.DeployRequest", - "members": { - "class_hash": { - "cairo_type": "felt", - "offset": 1 - }, - "constructor_calldata": { - "cairo_type": "felt*", - "offset": 4 - }, - "constructor_calldata_size": { - "cairo_type": "felt", - "offset": 3 - }, - "contract_address_salt": { - "cairo_type": "felt", - "offset": 2 - }, - "deploy_from_zero": { - "cairo_type": "felt", - "offset": 5 - }, - "selector": { - "cairo_type": "felt", - "offset": 0 - } - }, - "size": 6, - "type": "struct" - }, - "starkware.starknet.common.syscalls.DeployResponse": { - "full_name": "starkware.starknet.common.syscalls.DeployResponse", - "members": { - "constructor_retdata": { - "cairo_type": "felt*", - "offset": 2 - }, - "constructor_retdata_size": { - "cairo_type": "felt", - "offset": 1 - }, - "contract_address": { - "cairo_type": "felt", - "offset": 0 - } - }, - "size": 3, - "type": "struct" - }, - "starkware.starknet.common.syscalls.DictAccess": { - "destination": "starkware.cairo.common.dict_access.DictAccess", - "type": "alias" - }, - "starkware.starknet.common.syscalls.EMIT_EVENT_SELECTOR": { - "type": "const", - "value": 1280709301550335749748 - }, - "starkware.starknet.common.syscalls.EmitEvent": { - "full_name": "starkware.starknet.common.syscalls.EmitEvent", - "members": { - "data": { - "cairo_type": "felt*", - "offset": 4 - }, - "data_len": { - "cairo_type": "felt", - "offset": 3 - }, - "keys": { - "cairo_type": "felt*", - "offset": 2 - }, - "keys_len": { - "cairo_type": "felt", - "offset": 1 - }, - "selector": { - "cairo_type": "felt", - "offset": 0 - } - }, - "size": 5, - "type": "struct" - }, - "starkware.starknet.common.syscalls.GET_BLOCK_NUMBER_SELECTOR": { - "type": "const", - "value": 1448089106835523001438702345020786 - }, - "starkware.starknet.common.syscalls.GET_BLOCK_TIMESTAMP_SELECTOR": { - "type": "const", - "value": 24294903732626645868215235778792757751152 - }, - "starkware.starknet.common.syscalls.GET_CALLER_ADDRESS_SELECTOR": { - "type": "const", - "value": 94901967781393078444254803017658102643 - }, - "starkware.starknet.common.syscalls.GET_CONTRACT_ADDRESS_SELECTOR": { - "type": "const", - "value": 6219495360805491471215297013070624192820083 - }, - "starkware.starknet.common.syscalls.GET_SEQUENCER_ADDRESS_SELECTOR": { - "type": "const", - "value": 1592190833581991703053805829594610833820054387 - }, - "starkware.starknet.common.syscalls.GET_TX_INFO_SELECTOR": { - "type": "const", - "value": 1317029390204112103023 - }, - "starkware.starknet.common.syscalls.GET_TX_SIGNATURE_SELECTOR": { - "type": "const", - "value": 1448089128652340074717162277007973 - }, - "starkware.starknet.common.syscalls.GetBlockNumber": { - "full_name": "starkware.starknet.common.syscalls.GetBlockNumber", - "members": { - "request": { - "cairo_type": "starkware.starknet.common.syscalls.GetBlockNumberRequest", - "offset": 0 - }, - "response": { - "cairo_type": "starkware.starknet.common.syscalls.GetBlockNumberResponse", - "offset": 1 - } - }, - "size": 2, - "type": "struct" - }, - "starkware.starknet.common.syscalls.GetBlockNumberRequest": { - "full_name": "starkware.starknet.common.syscalls.GetBlockNumberRequest", - "members": { - "selector": { - "cairo_type": "felt", - "offset": 0 - } - }, - "size": 1, - "type": "struct" - }, - "starkware.starknet.common.syscalls.GetBlockNumberResponse": { - "full_name": "starkware.starknet.common.syscalls.GetBlockNumberResponse", - "members": { - "block_number": { - "cairo_type": "felt", - "offset": 0 - } - }, - "size": 1, - "type": "struct" - }, - "starkware.starknet.common.syscalls.GetBlockTimestamp": { - "full_name": "starkware.starknet.common.syscalls.GetBlockTimestamp", - "members": { - "request": { - "cairo_type": "starkware.starknet.common.syscalls.GetBlockTimestampRequest", - "offset": 0 - }, - "response": { - "cairo_type": "starkware.starknet.common.syscalls.GetBlockTimestampResponse", - "offset": 1 - } - }, - "size": 2, - "type": "struct" - }, - "starkware.starknet.common.syscalls.GetBlockTimestampRequest": { - "full_name": "starkware.starknet.common.syscalls.GetBlockTimestampRequest", - "members": { - "selector": { - "cairo_type": "felt", - "offset": 0 - } - }, - "size": 1, - "type": "struct" - }, - "starkware.starknet.common.syscalls.GetBlockTimestampResponse": { - "full_name": "starkware.starknet.common.syscalls.GetBlockTimestampResponse", - "members": { - "block_timestamp": { - "cairo_type": "felt", - "offset": 0 - } - }, - "size": 1, - "type": "struct" - }, - "starkware.starknet.common.syscalls.GetCallerAddress": { - "full_name": "starkware.starknet.common.syscalls.GetCallerAddress", - "members": { - "request": { - "cairo_type": "starkware.starknet.common.syscalls.GetCallerAddressRequest", - "offset": 0 - }, - "response": { - "cairo_type": "starkware.starknet.common.syscalls.GetCallerAddressResponse", - "offset": 1 - } - }, - "size": 2, - "type": "struct" - }, - "starkware.starknet.common.syscalls.GetCallerAddressRequest": { - "full_name": "starkware.starknet.common.syscalls.GetCallerAddressRequest", - "members": { - "selector": { - "cairo_type": "felt", - "offset": 0 - } - }, - "size": 1, - "type": "struct" - }, - "starkware.starknet.common.syscalls.GetCallerAddressResponse": { - "full_name": "starkware.starknet.common.syscalls.GetCallerAddressResponse", - "members": { - "caller_address": { - "cairo_type": "felt", - "offset": 0 - } - }, - "size": 1, - "type": "struct" - }, - "starkware.starknet.common.syscalls.GetContractAddress": { - "full_name": "starkware.starknet.common.syscalls.GetContractAddress", - "members": { - "request": { - "cairo_type": "starkware.starknet.common.syscalls.GetContractAddressRequest", - "offset": 0 - }, - "response": { - "cairo_type": "starkware.starknet.common.syscalls.GetContractAddressResponse", - "offset": 1 - } - }, - "size": 2, - "type": "struct" - }, - "starkware.starknet.common.syscalls.GetContractAddressRequest": { - "full_name": "starkware.starknet.common.syscalls.GetContractAddressRequest", - "members": { - "selector": { - "cairo_type": "felt", - "offset": 0 - } - }, - "size": 1, - "type": "struct" - }, - "starkware.starknet.common.syscalls.GetContractAddressResponse": { - "full_name": "starkware.starknet.common.syscalls.GetContractAddressResponse", - "members": { - "contract_address": { - "cairo_type": "felt", - "offset": 0 - } - }, - "size": 1, - "type": "struct" - }, - "starkware.starknet.common.syscalls.GetSequencerAddress": { - "full_name": "starkware.starknet.common.syscalls.GetSequencerAddress", - "members": { - "request": { - "cairo_type": "starkware.starknet.common.syscalls.GetSequencerAddressRequest", - "offset": 0 - }, - "response": { - "cairo_type": "starkware.starknet.common.syscalls.GetSequencerAddressResponse", - "offset": 1 - } - }, - "size": 2, - "type": "struct" - }, - "starkware.starknet.common.syscalls.GetSequencerAddressRequest": { - "full_name": "starkware.starknet.common.syscalls.GetSequencerAddressRequest", - "members": { - "selector": { - "cairo_type": "felt", - "offset": 0 - } - }, - "size": 1, - "type": "struct" - }, - "starkware.starknet.common.syscalls.GetSequencerAddressResponse": { - "full_name": "starkware.starknet.common.syscalls.GetSequencerAddressResponse", - "members": { - "sequencer_address": { - "cairo_type": "felt", - "offset": 0 - } - }, - "size": 1, - "type": "struct" - }, - "starkware.starknet.common.syscalls.GetTxInfo": { - "full_name": "starkware.starknet.common.syscalls.GetTxInfo", - "members": { - "request": { - "cairo_type": "starkware.starknet.common.syscalls.GetTxInfoRequest", - "offset": 0 - }, - "response": { - "cairo_type": "starkware.starknet.common.syscalls.GetTxInfoResponse", - "offset": 1 - } - }, - "size": 2, - "type": "struct" - }, - "starkware.starknet.common.syscalls.GetTxInfoRequest": { - "full_name": "starkware.starknet.common.syscalls.GetTxInfoRequest", - "members": { - "selector": { - "cairo_type": "felt", - "offset": 0 - } - }, - "size": 1, - "type": "struct" - }, - "starkware.starknet.common.syscalls.GetTxInfoResponse": { - "full_name": "starkware.starknet.common.syscalls.GetTxInfoResponse", - "members": { - "tx_info": { - "cairo_type": "starkware.starknet.common.syscalls.TxInfo*", - "offset": 0 - } - }, - "size": 1, - "type": "struct" - }, - "starkware.starknet.common.syscalls.GetTxSignature": { - "full_name": "starkware.starknet.common.syscalls.GetTxSignature", - "members": { - "request": { - "cairo_type": "starkware.starknet.common.syscalls.GetTxSignatureRequest", - "offset": 0 - }, - "response": { - "cairo_type": "starkware.starknet.common.syscalls.GetTxSignatureResponse", - "offset": 1 - } - }, - "size": 3, - "type": "struct" - }, - "starkware.starknet.common.syscalls.GetTxSignatureRequest": { - "full_name": "starkware.starknet.common.syscalls.GetTxSignatureRequest", - "members": { - "selector": { - "cairo_type": "felt", - "offset": 0 - } - }, - "size": 1, - "type": "struct" - }, - "starkware.starknet.common.syscalls.GetTxSignatureResponse": { - "full_name": "starkware.starknet.common.syscalls.GetTxSignatureResponse", - "members": { - "signature": { - "cairo_type": "felt*", - "offset": 1 - }, - "signature_len": { - "cairo_type": "felt", - "offset": 0 - } - }, - "size": 2, - "type": "struct" - }, - "starkware.starknet.common.syscalls.LIBRARY_CALL_L1_HANDLER_SELECTOR": { - "type": "const", - "value": 436233452754198157705746250789557519228244616562 - }, - "starkware.starknet.common.syscalls.LIBRARY_CALL_SELECTOR": { - "type": "const", - "value": 92376026794327011772951660 - }, - "starkware.starknet.common.syscalls.LibraryCall": { - "full_name": "starkware.starknet.common.syscalls.LibraryCall", - "members": { - "request": { - "cairo_type": "starkware.starknet.common.syscalls.LibraryCallRequest", - "offset": 0 - }, - "response": { - "cairo_type": "starkware.starknet.common.syscalls.CallContractResponse", - "offset": 5 - } - }, - "size": 7, - "type": "struct" - }, - "starkware.starknet.common.syscalls.LibraryCallRequest": { - "full_name": "starkware.starknet.common.syscalls.LibraryCallRequest", - "members": { - "calldata": { - "cairo_type": "felt*", - "offset": 4 - }, - "calldata_size": { - "cairo_type": "felt", - "offset": 3 - }, - "class_hash": { - "cairo_type": "felt", - "offset": 1 - }, - "function_selector": { - "cairo_type": "felt", - "offset": 2 - }, - "selector": { - "cairo_type": "felt", - "offset": 0 - } - }, - "size": 5, - "type": "struct" - }, - "starkware.starknet.common.syscalls.REPLACE_CLASS_SELECTOR": { - "type": "const", - "value": 25500403217443378527601783667 - }, - "starkware.starknet.common.syscalls.ReplaceClass": { - "full_name": "starkware.starknet.common.syscalls.ReplaceClass", - "members": { - "class_hash": { - "cairo_type": "felt", - "offset": 1 - }, - "selector": { - "cairo_type": "felt", - "offset": 0 - } - }, - "size": 2, - "type": "struct" - }, - "starkware.starknet.common.syscalls.SEND_MESSAGE_TO_L1_SELECTOR": { - "type": "const", - "value": 433017908768303439907196859243777073 - }, - "starkware.starknet.common.syscalls.STORAGE_READ_SELECTOR": { - "type": "const", - "value": 100890693370601760042082660 - }, - "starkware.starknet.common.syscalls.STORAGE_WRITE_SELECTOR": { - "type": "const", - "value": 25828017502874050592466629733 - }, - "starkware.starknet.common.syscalls.SendMessageToL1SysCall": { - "full_name": "starkware.starknet.common.syscalls.SendMessageToL1SysCall", - "members": { - "payload_ptr": { - "cairo_type": "felt*", - "offset": 3 - }, - "payload_size": { - "cairo_type": "felt", - "offset": 2 - }, - "selector": { - "cairo_type": "felt", - "offset": 0 - }, - "to_address": { - "cairo_type": "felt", - "offset": 1 - } - }, - "size": 4, - "type": "struct" - }, - "starkware.starknet.common.syscalls.StorageRead": { - "full_name": "starkware.starknet.common.syscalls.StorageRead", - "members": { - "request": { - "cairo_type": "starkware.starknet.common.syscalls.StorageReadRequest", - "offset": 0 - }, - "response": { - "cairo_type": "starkware.starknet.common.syscalls.StorageReadResponse", - "offset": 2 - } - }, - "size": 3, - "type": "struct" - }, - "starkware.starknet.common.syscalls.StorageReadRequest": { - "full_name": "starkware.starknet.common.syscalls.StorageReadRequest", - "members": { - "address": { - "cairo_type": "felt", - "offset": 1 - }, - "selector": { - "cairo_type": "felt", - "offset": 0 - } - }, - "size": 2, - "type": "struct" - }, - "starkware.starknet.common.syscalls.StorageReadResponse": { - "full_name": "starkware.starknet.common.syscalls.StorageReadResponse", - "members": { - "value": { - "cairo_type": "felt", - "offset": 0 - } - }, - "size": 1, - "type": "struct" - }, - "starkware.starknet.common.syscalls.StorageWrite": { - "full_name": "starkware.starknet.common.syscalls.StorageWrite", - "members": { - "address": { - "cairo_type": "felt", - "offset": 1 - }, - "selector": { - "cairo_type": "felt", - "offset": 0 - }, - "value": { - "cairo_type": "felt", - "offset": 2 - } - }, - "size": 3, - "type": "struct" - }, - "starkware.starknet.common.syscalls.TxInfo": { - "full_name": "starkware.starknet.common.syscalls.TxInfo", - "members": { - "account_contract_address": { - "cairo_type": "felt", - "offset": 1 - }, - "chain_id": { - "cairo_type": "felt", - "offset": 6 - }, - "max_fee": { - "cairo_type": "felt", - "offset": 2 - }, - "nonce": { - "cairo_type": "felt", - "offset": 7 - }, - "signature": { - "cairo_type": "felt*", - "offset": 4 - }, - "signature_len": { - "cairo_type": "felt", - "offset": 3 - }, - "transaction_hash": { - "cairo_type": "felt", - "offset": 5 - }, - "version": { - "cairo_type": "felt", - "offset": 0 - } - }, - "size": 8, - "type": "struct" - }, - "starkware.starknet.common.syscalls.call_contract": { - "decorators": [], - "pc": 24, - "type": "function" - }, - "starkware.starknet.common.syscalls.call_contract.Args": { - "full_name": "starkware.starknet.common.syscalls.call_contract.Args", - "members": { - "calldata": { - "cairo_type": "felt*", - "offset": 3 - }, - "calldata_size": { - "cairo_type": "felt", - "offset": 2 - }, - "contract_address": { - "cairo_type": "felt", - "offset": 0 - }, - "function_selector": { - "cairo_type": "felt", - "offset": 1 - } - }, - "size": 4, - "type": "struct" - }, - "starkware.starknet.common.syscalls.call_contract.ImplicitArgs": { - "full_name": "starkware.starknet.common.syscalls.call_contract.ImplicitArgs", - "members": { - "syscall_ptr": { - "cairo_type": "felt*", - "offset": 0 - } - }, - "size": 1, - "type": "struct" - }, - "starkware.starknet.common.syscalls.call_contract.Return": { - "cairo_type": "(retdata_size: felt, retdata: felt*)", - "type": "type_definition" - }, - "starkware.starknet.common.syscalls.call_contract.SIZEOF_LOCALS": { - "type": "const", - "value": 0 - }, - "starkware.starknet.common.syscalls.call_contract.syscall_ptr": { - "cairo_type": "felt*", - "full_name": "starkware.starknet.common.syscalls.call_contract.syscall_ptr", - "references": [ - { - "ap_tracking_data": { - "group": 3, - "offset": 0 - }, - "pc": 24, - "value": "[cast(fp + (-7), felt**)]" - }, - { - "ap_tracking_data": { - "group": 3, - "offset": 1 - }, - "pc": 31, - "value": "cast([fp + (-7)] + 7, felt*)" - } - ], - "type": "reference" - }, - "starkware.starknet.common.syscalls.get_caller_address": { - "decorators": [], - "pc": 36, - "type": "function" - }, - "starkware.starknet.common.syscalls.get_caller_address.Args": { - "full_name": "starkware.starknet.common.syscalls.get_caller_address.Args", - "members": {}, - "size": 0, - "type": "struct" - }, - "starkware.starknet.common.syscalls.get_caller_address.ImplicitArgs": { - "full_name": "starkware.starknet.common.syscalls.get_caller_address.ImplicitArgs", - "members": { - "syscall_ptr": { - "cairo_type": "felt*", - "offset": 0 - } - }, - "size": 1, - "type": "struct" - }, - "starkware.starknet.common.syscalls.get_caller_address.Return": { - "cairo_type": "(caller_address: felt)", - "type": "type_definition" - }, - "starkware.starknet.common.syscalls.get_caller_address.SIZEOF_LOCALS": { - "type": "const", - "value": 0 - }, - "starkware.starknet.common.syscalls.get_caller_address.syscall_ptr": { - "cairo_type": "felt*", - "full_name": "starkware.starknet.common.syscalls.get_caller_address.syscall_ptr", - "references": [ - { - "ap_tracking_data": { - "group": 4, - "offset": 0 - }, - "pc": 36, - "value": "[cast(fp + (-3), felt**)]" - }, - { - "ap_tracking_data": { - "group": 4, - "offset": 1 - }, - "pc": 39, - "value": "cast([fp + (-3)] + 2, felt*)" - } - ], - "type": "reference" - }, - "starkware.starknet.common.syscalls.get_contract_address": { - "decorators": [], - "pc": 43, - "type": "function" - }, - "starkware.starknet.common.syscalls.get_contract_address.Args": { - "full_name": "starkware.starknet.common.syscalls.get_contract_address.Args", - "members": {}, - "size": 0, - "type": "struct" - }, - "starkware.starknet.common.syscalls.get_contract_address.ImplicitArgs": { - "full_name": "starkware.starknet.common.syscalls.get_contract_address.ImplicitArgs", - "members": { - "syscall_ptr": { - "cairo_type": "felt*", - "offset": 0 - } - }, - "size": 1, - "type": "struct" - }, - "starkware.starknet.common.syscalls.get_contract_address.Return": { - "cairo_type": "(contract_address: felt)", - "type": "type_definition" - }, - "starkware.starknet.common.syscalls.get_contract_address.SIZEOF_LOCALS": { - "type": "const", - "value": 0 - }, - "starkware.starknet.common.syscalls.get_contract_address.syscall_ptr": { - "cairo_type": "felt*", - "full_name": "starkware.starknet.common.syscalls.get_contract_address.syscall_ptr", - "references": [ - { - "ap_tracking_data": { - "group": 5, - "offset": 0 - }, - "pc": 43, - "value": "[cast(fp + (-3), felt**)]" - }, - { - "ap_tracking_data": { - "group": 5, - "offset": 1 - }, - "pc": 46, - "value": "cast([fp + (-3)] + 2, felt*)" - } - ], - "type": "reference" - }, - "starkware.starknet.common.syscalls.get_tx_info": { - "decorators": [], - "pc": 66, - "type": "function" - }, - "starkware.starknet.common.syscalls.get_tx_info.Args": { - "full_name": "starkware.starknet.common.syscalls.get_tx_info.Args", - "members": {}, - "size": 0, - "type": "struct" - }, - "starkware.starknet.common.syscalls.get_tx_info.ImplicitArgs": { - "full_name": "starkware.starknet.common.syscalls.get_tx_info.ImplicitArgs", - "members": { - "syscall_ptr": { - "cairo_type": "felt*", - "offset": 0 - } - }, - "size": 1, - "type": "struct" - }, - "starkware.starknet.common.syscalls.get_tx_info.Return": { - "cairo_type": "(tx_info: starkware.starknet.common.syscalls.TxInfo*)", - "type": "type_definition" - }, - "starkware.starknet.common.syscalls.get_tx_info.SIZEOF_LOCALS": { - "type": "const", - "value": 0 - }, - "starkware.starknet.common.syscalls.get_tx_info.syscall_ptr": { - "cairo_type": "felt*", - "full_name": "starkware.starknet.common.syscalls.get_tx_info.syscall_ptr", - "references": [ - { - "ap_tracking_data": { - "group": 8, - "offset": 0 - }, - "pc": 66, - "value": "[cast(fp + (-3), felt**)]" - }, - { - "ap_tracking_data": { - "group": 8, - "offset": 1 - }, - "pc": 69, - "value": "cast([fp + (-3)] + 2, felt*)" - } - ], - "type": "reference" - }, - "starkware.starknet.common.syscalls.storage_read": { - "decorators": [], - "pc": 50, - "type": "function" - }, - "starkware.starknet.common.syscalls.storage_read.Args": { - "full_name": "starkware.starknet.common.syscalls.storage_read.Args", - "members": { - "address": { - "cairo_type": "felt", - "offset": 0 - } - }, - "size": 1, - "type": "struct" - }, - "starkware.starknet.common.syscalls.storage_read.ImplicitArgs": { - "full_name": "starkware.starknet.common.syscalls.storage_read.ImplicitArgs", - "members": { - "syscall_ptr": { - "cairo_type": "felt*", - "offset": 0 - } - }, - "size": 1, - "type": "struct" - }, - "starkware.starknet.common.syscalls.storage_read.Return": { - "cairo_type": "(value: felt)", - "type": "type_definition" - }, - "starkware.starknet.common.syscalls.storage_read.SIZEOF_LOCALS": { - "type": "const", - "value": 0 - }, - "starkware.starknet.common.syscalls.storage_read.syscall_ptr": { - "cairo_type": "felt*", - "full_name": "starkware.starknet.common.syscalls.storage_read.syscall_ptr", - "references": [ - { - "ap_tracking_data": { - "group": 6, - "offset": 0 - }, - "pc": 50, - "value": "[cast(fp + (-4), felt**)]" - }, - { - "ap_tracking_data": { - "group": 6, - "offset": 1 - }, - "pc": 54, - "value": "cast([fp + (-4)] + 3, felt*)" - } - ], - "type": "reference" - }, - "starkware.starknet.common.syscalls.storage_write": { - "decorators": [], - "pc": 58, - "type": "function" - }, - "starkware.starknet.common.syscalls.storage_write.Args": { - "full_name": "starkware.starknet.common.syscalls.storage_write.Args", - "members": { - "address": { - "cairo_type": "felt", - "offset": 0 - }, - "value": { - "cairo_type": "felt", - "offset": 1 - } - }, - "size": 2, - "type": "struct" - }, - "starkware.starknet.common.syscalls.storage_write.ImplicitArgs": { - "full_name": "starkware.starknet.common.syscalls.storage_write.ImplicitArgs", - "members": { - "syscall_ptr": { - "cairo_type": "felt*", - "offset": 0 - } - }, - "size": 1, - "type": "struct" - }, - "starkware.starknet.common.syscalls.storage_write.Return": { - "cairo_type": "()", - "type": "type_definition" - }, - "starkware.starknet.common.syscalls.storage_write.SIZEOF_LOCALS": { - "type": "const", - "value": 0 - }, - "starkware.starknet.common.syscalls.storage_write.syscall_ptr": { - "cairo_type": "felt*", - "full_name": "starkware.starknet.common.syscalls.storage_write.syscall_ptr", - "references": [ - { - "ap_tracking_data": { - "group": 7, - "offset": 0 - }, - "pc": 58, - "value": "[cast(fp + (-5), felt**)]" - }, - { - "ap_tracking_data": { - "group": 7, - "offset": 1 - }, - "pc": 63, - "value": "cast([fp + (-5)] + 3, felt*)" - } - ], - "type": "reference" - } - }, - "main_scope": "__main__", - "prime": "0x800000000000011000000000000000000000000000000000000000000000001", - "reference_manager": { - "references": [ - { - "ap_tracking_data": { - "group": 2, - "offset": 0 - }, - "pc": 9, - "value": "[cast(fp + (-3), felt*)]" - }, - { - "ap_tracking_data": { - "group": 2, - "offset": 3 - }, - "pc": 16, - "value": "[cast(ap, felt*)]" - }, - { - "ap_tracking_data": { - "group": 3, - "offset": 0 - }, - "pc": 24, - "value": "[cast(fp + (-7), felt**)]" - }, - { - "ap_tracking_data": { - "group": 4, - "offset": 0 - }, - "pc": 36, - "value": "[cast(fp + (-3), felt**)]" - }, - { - "ap_tracking_data": { - "group": 5, - "offset": 0 - }, - "pc": 43, - "value": "[cast(fp + (-3), felt**)]" - }, - { - "ap_tracking_data": { - "group": 6, - "offset": 0 - }, - "pc": 50, - "value": "[cast(fp + (-4), felt**)]" - }, - { - "ap_tracking_data": { - "group": 7, - "offset": 0 - }, - "pc": 58, - "value": "[cast(fp + (-5), felt**)]" - }, - { - "ap_tracking_data": { - "group": 8, - "offset": 0 - }, - "pc": 66, - "value": "[cast(fp + (-3), felt**)]" - }, - { - "ap_tracking_data": { - "group": 9, - "offset": 0 - }, - "pc": 73, - "value": "[cast(fp + (-3), felt*)]" - }, - { - "ap_tracking_data": { - "group": 11, - "offset": 0 - }, - "pc": 82, - "value": "[cast(fp + (-3), felt*)]" - }, - { - "ap_tracking_data": { - "group": 11, - "offset": 0 - }, - "pc": 82, - "value": "[cast([fp + (-4)], felt*)]" - }, - { - "ap_tracking_data": { - "group": 11, - "offset": 0 - }, - "pc": 82, - "value": "[cast([fp + (-4)] + 1, felt*)]" - }, - { - "ap_tracking_data": { - "group": 12, - "offset": 0 - }, - "pc": 111, - "value": "[cast(fp + (-4), felt*)]" - }, - { - "ap_tracking_data": { - "group": 12, - "offset": 0 - }, - "pc": 111, - "value": "[cast(fp + (-3), felt*)]" - }, - { - "ap_tracking_data": { - "group": 12, - "offset": 0 - }, - "pc": 111, - "value": "[cast(fp + (-5), felt*)]" - }, - { - "ap_tracking_data": { - "group": 13, - "offset": 0 - }, - "pc": 156, - "value": "[cast(fp + (-4), felt*)]" - }, - { - "ap_tracking_data": { - "group": 13, - "offset": 0 - }, - "pc": 156, - "value": "[cast(fp + (-3), felt*)]" - }, - { - "ap_tracking_data": { - "group": 13, - "offset": 0 - }, - "pc": 156, - "value": "[cast([fp + (-5)], felt*)]" - }, - { - "ap_tracking_data": { - "group": 13, - "offset": 0 - }, - "pc": 156, - "value": "[cast([fp + (-5)] + 1, felt*)]" - }, - { - "ap_tracking_data": { - "group": 14, - "offset": 0 - }, - "pc": 171, - "value": "[cast(fp + (-4), felt*)]" - }, - { - "ap_tracking_data": { - "group": 14, - "offset": 0 - }, - "pc": 171, - "value": "[cast(fp + (-3), felt*)]" - }, - { - "ap_tracking_data": { - "group": 14, - "offset": 0 - }, - "pc": 171, - "value": "[cast(fp + (-7), starkware.cairo.common.cairo_builtins.SignatureBuiltin**)]" - }, - { - "ap_tracking_data": { - "group": 16, - "offset": 0 - }, - "pc": 184, - "value": "[cast(fp + (-3), felt*)]" - }, - { - "ap_tracking_data": { - "group": 50, - "offset": 0 - }, - "pc": 677, - "value": "[cast(fp + 3, felt*)]" - }, - { - "ap_tracking_data": { - "group": 51, - "offset": 69 - }, - "pc": 719, - "value": "[cast(fp + 8, felt*)]" - } - ] - } - } -} diff --git a/packages/starksheet-cairo/build/Subdomain_abi.json b/packages/starksheet-cairo/build/Subdomain_abi.json deleted file mode 100644 index d761c298..00000000 --- a/packages/starksheet-cairo/build/Subdomain_abi.json +++ /dev/null @@ -1,127 +0,0 @@ -[ - { - "data": [ - { - "name": "implementation", - "type": "felt" - } - ], - "keys": [], - "name": "Upgraded", - "type": "event" - }, - { - "data": [ - { - "name": "previousAdmin", - "type": "felt" - }, - { - "name": "newAdmin", - "type": "felt" - } - ], - "keys": [], - "name": "AdminChanged", - "type": "event" - }, - { - "inputs": [ - { - "name": "proxy_admin_address", - "type": "felt" - }, - { - "name": "starknetid_contract", - "type": "felt" - }, - { - "name": "naming_contract", - "type": "felt" - } - ], - "name": "initializer", - "outputs": [], - "type": "function" - }, - { - "inputs": [ - { - "name": "domain_len", - "type": "felt" - }, - { - "name": "domain", - "type": "felt*" - } - ], - "name": "claim_domain_back", - "outputs": [], - "type": "function" - }, - { - "inputs": [ - { - "name": "domain_ascii", - "type": "felt" - } - ], - "name": "register", - "outputs": [ - { - "name": "starknet_id_token", - "type": "felt" - }, - { - "name": "domain_len", - "type": "felt" - }, - { - "name": "domain", - "type": "felt*" - } - ], - "type": "function" - }, - { - "inputs": [], - "name": "open_registration", - "outputs": [], - "type": "function" - }, - { - "inputs": [], - "name": "close_registration", - "outputs": [], - "type": "function" - }, - { - "inputs": [], - "name": "is_registration_open", - "outputs": [ - { - "name": "is_registration_open", - "type": "felt" - } - ], - "stateMutability": "view", - "type": "function" - }, - { - "inputs": [ - { - "name": "domain_ascii", - "type": "felt" - } - ], - "name": "basic_encoding", - "outputs": [ - { - "name": "domain_encoded", - "type": "felt" - } - ], - "stateMutability": "view", - "type": "function" - } -] diff --git a/packages/starksheet-cairo/build/UriRenderer.json b/packages/starksheet-cairo/build/UriRenderer.json index d8832c79..28117253 100644 --- a/packages/starksheet-cairo/build/UriRenderer.json +++ b/packages/starksheet-cairo/build/UriRenderer.json @@ -1144,7 +1144,24106 @@ "0x800000000000010ffffffffffffffffffffffffffffffffffffffffffffffe6", "0x208b7fff7fff7ffe" ], - "debug_info": null, + "debug_info": { + "file_contents": { + "autogen/starknet/arg_processor/01cba52f8515996bb9d7070bde81ff39281d096d7024a558efcba6e1fd2402cf.cairo": "assert [cast(fp + (-4), felt*)] = __calldata_actual_size;\n", + "autogen/starknet/arg_processor/1c2e215967869dc47206ad2fc37b17705811908cf20bd36317133d65ef250c93.cairo": "// Check that the length is non-negative.\nassert [range_check_ptr] = ret_value.base_uri_len;\n// Store the updated range_check_ptr as a local variable to keep it available after\n// the memcpy.\nlocal range_check_ptr = range_check_ptr + 1;\n// Keep a reference to __return_value_ptr.\nlet __return_value_ptr_copy = __return_value_ptr;\n// Store the updated __return_value_ptr as a local variable to keep it available after\n// the memcpy.\nlocal __return_value_ptr: felt* = __return_value_ptr + ret_value.base_uri_len * 1;\nmemcpy(\n dst=__return_value_ptr_copy,\n src=ret_value.base_uri,\n len=ret_value.base_uri_len * 1);\n", + "autogen/starknet/arg_processor/293368f3a0e12cfcf22314a31e13b9801e95a5b8b2b71822a2fbbdf5a01ea795.cairo": "assert [__return_value_ptr] = ret_value.res;\nlet __return_value_ptr = __return_value_ptr + 1;\n", + "autogen/starknet/arg_processor/2ea11611167ad2adf1bde16aaf7defdc99376674027d4f606d15ea375b9c77aa.cairo": "// Check that the length is non-negative.\nassert [range_check_ptr] = __calldata_arg_base_uri_len;\nlet range_check_ptr = range_check_ptr + 1;\n// Create the reference.\nlet __calldata_arg_base_uri = cast(__calldata_ptr, felt*);\n// Use 'tempvar' instead of 'let' to avoid repeating this computation for the\n// following arguments.\ntempvar __calldata_ptr = __calldata_ptr + __calldata_arg_base_uri_len * 1;\n", + "autogen/starknet/arg_processor/38a239a26cfcb3ccc2183e4192aef7ad6240192be6db2fef30c521ece6b8b11e.cairo": "assert [__return_value_ptr] = ret_value.base_uri_len;\nlet __return_value_ptr = __return_value_ptr + 1;\n", + "autogen/starknet/arg_processor/3e93b8906c329e7a5c33e020ce7a5a9c542c4444955be98eec5fcbef545a8662.cairo": "let __calldata_arg_value = [__calldata_ptr];\nlet __calldata_ptr = __calldata_ptr + 1;\n", + "autogen/starknet/arg_processor/445d818b0524d35ae3e73b7abec41731d1445f0ce6866ec5a3a8a871521799a0.cairo": "assert [__calldata_ptr] = newOwner;\nlet __calldata_ptr = __calldata_ptr + 1;\n", + "autogen/starknet/arg_processor/450f0509800d3afb78e5f375ff7b17115e6b5d0fd7e2bff94c78fdb15f5f2d10.cairo": "let __calldata_arg_new_owner = [__calldata_ptr];\nlet __calldata_ptr = __calldata_ptr + 1;\n", + "autogen/starknet/arg_processor/5462c9ea522f66a6a8b3de2f37f244c7074893fe5c8d0b413046098a1ccfc2ce.cairo": "assert [__return_value_ptr] = ret_value.token_uri_len;\nlet __return_value_ptr = __return_value_ptr + 1;\n", + "autogen/starknet/arg_processor/8d1ba44ec0b1d27c24688348db19d49f555faaa5454ce90a4e7ba33d6a63afea.cairo": "// Check that the length is non-negative.\nassert [range_check_ptr] = ret_value.token_uri_len;\n// Store the updated range_check_ptr as a local variable to keep it available after\n// the memcpy.\nlocal range_check_ptr = range_check_ptr + 1;\n// Keep a reference to __return_value_ptr.\nlet __return_value_ptr_copy = __return_value_ptr;\n// Store the updated __return_value_ptr as a local variable to keep it available after\n// the memcpy.\nlocal __return_value_ptr: felt* = __return_value_ptr + ret_value.token_uri_len * 1;\nmemcpy(\n dst=__return_value_ptr_copy,\n src=ret_value.token_uri,\n len=ret_value.token_uri_len * 1);\n", + "autogen/starknet/arg_processor/92bae94c430cca894eac466fa5be50d176f1f62e79244db218577fbac5e84220.cairo": "let __calldata_arg_token_id = [__calldata_ptr];\nlet __calldata_ptr = __calldata_ptr + 1;\n", + "autogen/starknet/arg_processor/b02ddc13e06346668d980e18c0fec90f17036d195bf95d21ac18e846a0a129f3.cairo": "assert [__return_value_ptr] = ret_value.owner;\nlet __return_value_ptr = __return_value_ptr + 1;\n", + "autogen/starknet/arg_processor/b414d12b4af9acec7cfcb353b241a319dcdd01ed9213f1ca1689d770e8f306a7.cairo": "let __calldata_arg_use = [__calldata_ptr];\nlet __calldata_ptr = __calldata_ptr + 1;\n", + "autogen/starknet/arg_processor/c31620b02d4d706f0542c989b2aadc01b0981d1f6a5933a8fe4937ace3d70d92.cairo": "let __calldata_actual_size = __calldata_ptr - cast([cast(fp + (-3), felt**)], felt*);\n", + "autogen/starknet/arg_processor/e0321294714e44f21aee810eefa3ed41d3a57effc1f0a060b66d6dd30ff97391.cairo": "let __calldata_arg_base_uri_len = [__calldata_ptr];\nlet __calldata_ptr = __calldata_ptr + 1;\n", + "autogen/starknet/arg_processor/e1eb73cd870ec466294c3700e77817cf3c039ac1384882ddb76383eb87a5da90.cairo": "let __calldata_arg_name = [__calldata_ptr];\nlet __calldata_ptr = __calldata_ptr + 1;\n", + "autogen/starknet/arg_processor/e2129a0023ce5f9e4c3de1d6fb100b2688dccff4a2ed2082db4a311f35c53e21.cairo": "assert [__calldata_ptr] = previousOwner;\nlet __calldata_ptr = __calldata_ptr + 1;\n", + "autogen/starknet/arg_processor/f6a4d9ae897caf37cefd18f7c8da7eee73157818279359aadee282f0fe59cdbc.cairo": "let __calldata_arg_owner = [__calldata_ptr];\nlet __calldata_ptr = __calldata_ptr + 1;\n", + "autogen/starknet/event/OwnershipTransferred/6150feec30bd48bfd0f446ed8c155a6d911a2c3fb3ec7a980733900416819259.cairo": "emit_event(keys_len=1, keys=__keys_ptr, data_len=__calldata_ptr - __data_ptr, data=__data_ptr);\nreturn ();\n", + "autogen/starknet/event/OwnershipTransferred/8220fde17ca5479f12ae71a8036f4d354fe722f2c036da610b53511924e4ee84.cairo": "alloc_locals;\nlet (local __keys_ptr: felt*) = alloc();\nassert [__keys_ptr] = SELECTOR;\nlet (local __data_ptr: felt*) = alloc();\nlet __calldata_ptr = __data_ptr;\n", + "autogen/starknet/event/OwnershipTransferred/a7a8ae41be29ac9f4f6c3b7837c448d787ca051dd1ade98f409e54d33d112504.cairo": "func emit{syscall_ptr: felt*, range_check_ptr}() {\n}\n", + "autogen/starknet/external/constructor/483047e0a34f31e3f8834df7727a14c79ab227c3526d22174c9d1610508a51cd.cairo": "let ret_value = __wrapped_func{syscall_ptr=syscall_ptr, pedersen_ptr=pedersen_ptr, range_check_ptr=range_check_ptr}(owner=__calldata_arg_owner, base_uri_len=__calldata_arg_base_uri_len, base_uri=__calldata_arg_base_uri,);\n%{ memory[ap] = segments.add() %} // Allocate memory for return value.\ntempvar retdata: felt*;\nlet retdata_size = 0;\n", + "autogen/starknet/external/constructor/741ea357d6336b0bed7bf0472425acd0311d543883b803388880e60a232040c7.cairo": "let range_check_ptr = [cast([cast(fp + (-5), felt**)] + 2, felt*)];\n", + "autogen/starknet/external/constructor/9684a85e93c782014ca14293edea4eb2502039a5a7b6538ecd39c56faaf12529.cairo": "let pedersen_ptr = [cast([cast(fp + (-5), felt**)] + 1, starkware.cairo.common.cairo_builtins.HashBuiltin**)];\n", + "autogen/starknet/external/constructor/b2c52ca2d2a8fc8791a983086d8716c5eacd0c3d62934914d2286f84b98ff4cb.cairo": "let syscall_ptr = [cast([cast(fp + (-5), felt**)] + 0, felt**)];\n", + "autogen/starknet/external/constructor/da17921a4e81c09e730800bbf23bfdbe5e9e6bfaedc59d80fbf62087fa43c27d.cairo": "return (syscall_ptr,pedersen_ptr,range_check_ptr,retdata_size,retdata);\n", + "autogen/starknet/external/getBaseUri/25a74036bfb5d6dfb2dd2a99570a3fecf2192fb3743317d46f3696a5f1e25471.cairo": "func getBaseUri() -> (syscall_ptr: felt*, pedersen_ptr: starkware.cairo.common.cairo_builtins.HashBuiltin*, range_check_ptr: felt, size: felt, retdata: felt*) {\n alloc_locals;\n}\n", + "autogen/starknet/external/getBaseUri/55fad17230449bf3d29b8bd4d584280159ccccf201aadaf0eb6ad5529bca5b96.cairo": "let ret_value = __wrapped_func{syscall_ptr=syscall_ptr, pedersen_ptr=pedersen_ptr, range_check_ptr=range_check_ptr}();\nlet (range_check_ptr, retdata_size, retdata) = getBaseUri_encode_return(ret_value, range_check_ptr);\n", + "autogen/starknet/external/getBaseUri/741ea357d6336b0bed7bf0472425acd0311d543883b803388880e60a232040c7.cairo": "let range_check_ptr = [cast([cast(fp + (-5), felt**)] + 2, felt*)];\n", + "autogen/starknet/external/getBaseUri/9684a85e93c782014ca14293edea4eb2502039a5a7b6538ecd39c56faaf12529.cairo": "let pedersen_ptr = [cast([cast(fp + (-5), felt**)] + 1, starkware.cairo.common.cairo_builtins.HashBuiltin**)];\n", + "autogen/starknet/external/getBaseUri/b2c52ca2d2a8fc8791a983086d8716c5eacd0c3d62934914d2286f84b98ff4cb.cairo": "let syscall_ptr = [cast([cast(fp + (-5), felt**)] + 0, felt**)];\n", + "autogen/starknet/external/getBaseUri/da17921a4e81c09e730800bbf23bfdbe5e9e6bfaedc59d80fbf62087fa43c27d.cairo": "return (syscall_ptr,pedersen_ptr,range_check_ptr,retdata_size,retdata);\n", + "autogen/starknet/external/getOwner/50eef2d703602d24c42df800878bfabc425ad0069960e1dc159c4d3bf27e35f6.cairo": "let ret_value = __wrapped_func{syscall_ptr=syscall_ptr, pedersen_ptr=pedersen_ptr, range_check_ptr=range_check_ptr}();\nlet (range_check_ptr, retdata_size, retdata) = getOwner_encode_return(ret_value, range_check_ptr);\n", + "autogen/starknet/external/getOwner/741ea357d6336b0bed7bf0472425acd0311d543883b803388880e60a232040c7.cairo": "let range_check_ptr = [cast([cast(fp + (-5), felt**)] + 2, felt*)];\n", + "autogen/starknet/external/getOwner/9684a85e93c782014ca14293edea4eb2502039a5a7b6538ecd39c56faaf12529.cairo": "let pedersen_ptr = [cast([cast(fp + (-5), felt**)] + 1, starkware.cairo.common.cairo_builtins.HashBuiltin**)];\n", + "autogen/starknet/external/getOwner/b2c52ca2d2a8fc8791a983086d8716c5eacd0c3d62934914d2286f84b98ff4cb.cairo": "let syscall_ptr = [cast([cast(fp + (-5), felt**)] + 0, felt**)];\n", + "autogen/starknet/external/getOwner/da17921a4e81c09e730800bbf23bfdbe5e9e6bfaedc59d80fbf62087fa43c27d.cairo": "return (syscall_ptr,pedersen_ptr,range_check_ptr,retdata_size,retdata);\n", + "autogen/starknet/external/getUseTokenId/741ea357d6336b0bed7bf0472425acd0311d543883b803388880e60a232040c7.cairo": "let range_check_ptr = [cast([cast(fp + (-5), felt**)] + 2, felt*)];\n", + "autogen/starknet/external/getUseTokenId/9684a85e93c782014ca14293edea4eb2502039a5a7b6538ecd39c56faaf12529.cairo": "let pedersen_ptr = [cast([cast(fp + (-5), felt**)] + 1, starkware.cairo.common.cairo_builtins.HashBuiltin**)];\n", + "autogen/starknet/external/getUseTokenId/aff68619e1badaf6a4cef08c4c59683b2aeb0cc2ee145684373ab802c70d5d49.cairo": "let ret_value = __wrapped_func{syscall_ptr=syscall_ptr, pedersen_ptr=pedersen_ptr, range_check_ptr=range_check_ptr}();\nlet (range_check_ptr, retdata_size, retdata) = getUseTokenId_encode_return(ret_value, range_check_ptr);\n", + "autogen/starknet/external/getUseTokenId/b2c52ca2d2a8fc8791a983086d8716c5eacd0c3d62934914d2286f84b98ff4cb.cairo": "let syscall_ptr = [cast([cast(fp + (-5), felt**)] + 0, felt**)];\n", + "autogen/starknet/external/getUseTokenId/da17921a4e81c09e730800bbf23bfdbe5e9e6bfaedc59d80fbf62087fa43c27d.cairo": "return (syscall_ptr,pedersen_ptr,range_check_ptr,retdata_size,retdata);\n", + "autogen/starknet/external/return/getBaseUri/061d593342abd5b2c4519e00e4e9d6bbfdd2431c405d1474e0b36cae966af3cc.cairo": "func getBaseUri_encode_return(ret_value: (base_uri_len: felt, base_uri: felt*), range_check_ptr) -> (\n range_check_ptr: felt, data_len: felt, data: felt*) {\n %{ memory[ap] = segments.add() %}\n alloc_locals;\n local __return_value_ptr_start: felt*;\n let __return_value_ptr = __return_value_ptr_start;\n with range_check_ptr {\n }\n return (\n range_check_ptr=range_check_ptr,\n data_len=__return_value_ptr - __return_value_ptr_start,\n data=__return_value_ptr_start);\n}\n", + "autogen/starknet/external/return/getOwner/b6df8dec790559c2c5b7a358af946adc3119f253addccded3beb4074a973d539.cairo": "func getOwner_encode_return(ret_value: (owner: felt), range_check_ptr) -> (\n range_check_ptr: felt, data_len: felt, data: felt*) {\n %{ memory[ap] = segments.add() %}\n alloc_locals;\n local __return_value_ptr_start: felt*;\n let __return_value_ptr = __return_value_ptr_start;\n with range_check_ptr {\n }\n return (\n range_check_ptr=range_check_ptr,\n data_len=__return_value_ptr - __return_value_ptr_start,\n data=__return_value_ptr_start);\n}\n", + "autogen/starknet/external/return/getUseTokenId/411937dfe4dbc88e28d049dee1bc1b1cc11c4ffd696a88d2f38d68dcc1736053.cairo": "func getUseTokenId_encode_return(ret_value: (res: felt), range_check_ptr) -> (\n range_check_ptr: felt, data_len: felt, data: felt*) {\n %{ memory[ap] = segments.add() %}\n alloc_locals;\n local __return_value_ptr_start: felt*;\n let __return_value_ptr = __return_value_ptr_start;\n with range_check_ptr {\n }\n return (\n range_check_ptr=range_check_ptr,\n data_len=__return_value_ptr - __return_value_ptr_start,\n data=__return_value_ptr_start);\n}\n", + "autogen/starknet/external/return/token_uri/f48cf5085ac07908983bbc364b0ba70d64fa7f2a9b8dc38e9d6fe3783bd626a8.cairo": "func token_uri_encode_return(ret_value: (token_uri_len: felt, token_uri: felt*), range_check_ptr) -> (\n range_check_ptr: felt, data_len: felt, data: felt*) {\n %{ memory[ap] = segments.add() %}\n alloc_locals;\n local __return_value_ptr_start: felt*;\n let __return_value_ptr = __return_value_ptr_start;\n with range_check_ptr {\n }\n return (\n range_check_ptr=range_check_ptr,\n data_len=__return_value_ptr - __return_value_ptr_start,\n data=__return_value_ptr_start);\n}\n", + "autogen/starknet/external/setBaseUri/741ea357d6336b0bed7bf0472425acd0311d543883b803388880e60a232040c7.cairo": "let range_check_ptr = [cast([cast(fp + (-5), felt**)] + 2, felt*)];\n", + "autogen/starknet/external/setBaseUri/9684a85e93c782014ca14293edea4eb2502039a5a7b6538ecd39c56faaf12529.cairo": "let pedersen_ptr = [cast([cast(fp + (-5), felt**)] + 1, starkware.cairo.common.cairo_builtins.HashBuiltin**)];\n", + "autogen/starknet/external/setBaseUri/b2c52ca2d2a8fc8791a983086d8716c5eacd0c3d62934914d2286f84b98ff4cb.cairo": "let syscall_ptr = [cast([cast(fp + (-5), felt**)] + 0, felt**)];\n", + "autogen/starknet/external/setBaseUri/da17921a4e81c09e730800bbf23bfdbe5e9e6bfaedc59d80fbf62087fa43c27d.cairo": "return (syscall_ptr,pedersen_ptr,range_check_ptr,retdata_size,retdata);\n", + "autogen/starknet/external/setBaseUri/e42c399428c1f7da70058d73d75baead4de2e744e0516d677b590ddf26bcdc83.cairo": "let ret_value = __wrapped_func{syscall_ptr=syscall_ptr, pedersen_ptr=pedersen_ptr, range_check_ptr=range_check_ptr}(base_uri_len=__calldata_arg_base_uri_len, base_uri=__calldata_arg_base_uri,);\n%{ memory[ap] = segments.add() %} // Allocate memory for return value.\ntempvar retdata: felt*;\nlet retdata_size = 0;\n", + "autogen/starknet/external/setUseTokenId/69b5a7d65653c60df2cf1d32381730a338dba0bd70ed0de3b1710d1de7fa32db.cairo": "let ret_value = __wrapped_func{syscall_ptr=syscall_ptr, pedersen_ptr=pedersen_ptr, range_check_ptr=range_check_ptr}(use=__calldata_arg_use,);\n%{ memory[ap] = segments.add() %} // Allocate memory for return value.\ntempvar retdata: felt*;\nlet retdata_size = 0;\n", + "autogen/starknet/external/setUseTokenId/741ea357d6336b0bed7bf0472425acd0311d543883b803388880e60a232040c7.cairo": "let range_check_ptr = [cast([cast(fp + (-5), felt**)] + 2, felt*)];\n", + "autogen/starknet/external/setUseTokenId/9684a85e93c782014ca14293edea4eb2502039a5a7b6538ecd39c56faaf12529.cairo": "let pedersen_ptr = [cast([cast(fp + (-5), felt**)] + 1, starkware.cairo.common.cairo_builtins.HashBuiltin**)];\n", + "autogen/starknet/external/setUseTokenId/b2c52ca2d2a8fc8791a983086d8716c5eacd0c3d62934914d2286f84b98ff4cb.cairo": "let syscall_ptr = [cast([cast(fp + (-5), felt**)] + 0, felt**)];\n", + "autogen/starknet/external/setUseTokenId/da17921a4e81c09e730800bbf23bfdbe5e9e6bfaedc59d80fbf62087fa43c27d.cairo": "return (syscall_ptr,pedersen_ptr,range_check_ptr,retdata_size,retdata);\n", + "autogen/starknet/external/token_uri/0e46c67014b1932c61618de0923cda1cd086d4d13ccfc96398cf52540cb66251.cairo": "func token_uri() -> (syscall_ptr: felt*, pedersen_ptr: starkware.cairo.common.cairo_builtins.HashBuiltin*, range_check_ptr: felt, size: felt, retdata: felt*) {\n alloc_locals;\n}\n", + "autogen/starknet/external/token_uri/3c45a718d5dec5c07bc4698665154ce6a53892dd6482470bafad1a3c27838e5e.cairo": "let ret_value = __wrapped_func{pedersen_ptr=pedersen_ptr, syscall_ptr=syscall_ptr, range_check_ptr=range_check_ptr}(token_id=__calldata_arg_token_id, value=__calldata_arg_value, name=__calldata_arg_name,);\nlet (range_check_ptr, retdata_size, retdata) = token_uri_encode_return(ret_value, range_check_ptr);\n", + "autogen/starknet/external/token_uri/741ea357d6336b0bed7bf0472425acd0311d543883b803388880e60a232040c7.cairo": "let range_check_ptr = [cast([cast(fp + (-5), felt**)] + 2, felt*)];\n", + "autogen/starknet/external/token_uri/9684a85e93c782014ca14293edea4eb2502039a5a7b6538ecd39c56faaf12529.cairo": "let pedersen_ptr = [cast([cast(fp + (-5), felt**)] + 1, starkware.cairo.common.cairo_builtins.HashBuiltin**)];\n", + "autogen/starknet/external/token_uri/b2c52ca2d2a8fc8791a983086d8716c5eacd0c3d62934914d2286f84b98ff4cb.cairo": "let syscall_ptr = [cast([cast(fp + (-5), felt**)] + 0, felt**)];\n", + "autogen/starknet/external/token_uri/da17921a4e81c09e730800bbf23bfdbe5e9e6bfaedc59d80fbf62087fa43c27d.cairo": "return (syscall_ptr,pedersen_ptr,range_check_ptr,retdata_size,retdata);\n", + "autogen/starknet/external/transferOwnership/741ea357d6336b0bed7bf0472425acd0311d543883b803388880e60a232040c7.cairo": "let range_check_ptr = [cast([cast(fp + (-5), felt**)] + 2, felt*)];\n", + "autogen/starknet/external/transferOwnership/9684a85e93c782014ca14293edea4eb2502039a5a7b6538ecd39c56faaf12529.cairo": "let pedersen_ptr = [cast([cast(fp + (-5), felt**)] + 1, starkware.cairo.common.cairo_builtins.HashBuiltin**)];\n", + "autogen/starknet/external/transferOwnership/b2c52ca2d2a8fc8791a983086d8716c5eacd0c3d62934914d2286f84b98ff4cb.cairo": "let syscall_ptr = [cast([cast(fp + (-5), felt**)] + 0, felt**)];\n", + "autogen/starknet/external/transferOwnership/c2abbdf6d40d1d1b0441e88eb8846ba0c3d55e5f282e3d3f8d0a35a43a9b3e33.cairo": "let ret_value = __wrapped_func{syscall_ptr=syscall_ptr, pedersen_ptr=pedersen_ptr, range_check_ptr=range_check_ptr}(new_owner=__calldata_arg_new_owner,);\n%{ memory[ap] = segments.add() %} // Allocate memory for return value.\ntempvar retdata: felt*;\nlet retdata_size = 0;\n", + "autogen/starknet/external/transferOwnership/da17921a4e81c09e730800bbf23bfdbe5e9e6bfaedc59d80fbf62087fa43c27d.cairo": "return (syscall_ptr,pedersen_ptr,range_check_ptr,retdata_size,retdata);\n", + "autogen/starknet/storage_var/Ownable_owner/decl.cairo": "namespace Ownable_owner {\n from starkware.starknet.common.storage import normalize_address\n from starkware.starknet.common.syscalls import storage_read, storage_write\n from starkware.cairo.common.cairo_builtins import HashBuiltin\n from starkware.cairo.common.hash import hash2\n\n func addr{pedersen_ptr: HashBuiltin*, range_check_ptr}() -> (res: felt) {\n let res = 0;\n call hash2;\n call normalize_address;\n }\n\n func read{syscall_ptr: felt*, pedersen_ptr: HashBuiltin*, range_check_ptr}() -> (owner: felt) {\n let storage_addr = 0;\n call addr;\n call storage_read;\n }\n\n func write{syscall_ptr: felt*, pedersen_ptr: HashBuiltin*, range_check_ptr}(value: felt) {\n let storage_addr = 0;\n call addr;\n call storage_write;\n }\n}", + "autogen/starknet/storage_var/Ownable_owner/impl.cairo": "namespace Ownable_owner {\n from starkware.starknet.common.storage import normalize_address\n from starkware.starknet.common.syscalls import storage_read, storage_write\n from starkware.cairo.common.cairo_builtins import HashBuiltin\n from starkware.cairo.common.hash import hash2\n\n func addr{pedersen_ptr: HashBuiltin*, range_check_ptr}() -> (res: felt) {\n let res = 1239149872729906871793169171313897310809028090219849129902089947133222824240;\n return (res=res);\n }\n\n func read{syscall_ptr: felt*, pedersen_ptr: HashBuiltin*, range_check_ptr}() -> (owner: felt) {\n let (storage_addr) = addr();\n let (__storage_var_temp0) = storage_read(address=storage_addr + 0);\n\n tempvar syscall_ptr = syscall_ptr;\n tempvar pedersen_ptr = pedersen_ptr;\n tempvar range_check_ptr = range_check_ptr;\n tempvar __storage_var_temp0: felt = __storage_var_temp0;\n return ([cast(&__storage_var_temp0, felt*)],);\n }\n\n func write{syscall_ptr: felt*, pedersen_ptr: HashBuiltin*, range_check_ptr}(value: felt) {\n let (storage_addr) = addr();\n storage_write(address=storage_addr + 0, value=[cast(&value, felt) + 0]);\n return ();\n }\n}", + "autogen/starknet/storage_var/_base_uri/decl.cairo": "namespace _base_uri {\n from starkware.starknet.common.storage import normalize_address\n from starkware.starknet.common.syscalls import storage_read, storage_write\n from starkware.cairo.common.cairo_builtins import HashBuiltin\n from starkware.cairo.common.hash import hash2\n\n func addr{pedersen_ptr: HashBuiltin*, range_check_ptr}(index: felt) -> (res: felt) {\n let res = 0;\n call hash2;\n call normalize_address;\n }\n\n func read{syscall_ptr: felt*, pedersen_ptr: HashBuiltin*, range_check_ptr}(index: felt) -> (\n value: felt\n ) {\n let storage_addr = 0;\n call addr;\n call storage_read;\n }\n\n func write{syscall_ptr: felt*, pedersen_ptr: HashBuiltin*, range_check_ptr}(\n index: felt, value: felt\n ) {\n let storage_addr = 0;\n call addr;\n call storage_write;\n }\n}", + "autogen/starknet/storage_var/_base_uri/impl.cairo": "namespace _base_uri {\n from starkware.starknet.common.storage import normalize_address\n from starkware.starknet.common.syscalls import storage_read, storage_write\n from starkware.cairo.common.cairo_builtins import HashBuiltin\n from starkware.cairo.common.hash import hash2\n\n func addr{pedersen_ptr: HashBuiltin*, range_check_ptr}(index: felt) -> (res: felt) {\n let res = 134767313100973427205527966081080038134321637805437992094645803142974793179;\n let (res) = hash2{hash_ptr=pedersen_ptr}(res, cast(&index, felt*)[0]);\n let (res) = normalize_address(addr=res);\n return (res=res);\n }\n\n func read{syscall_ptr: felt*, pedersen_ptr: HashBuiltin*, range_check_ptr}(index: felt) -> (\n value: felt\n ) {\n let (storage_addr) = addr(index);\n let (__storage_var_temp0) = storage_read(address=storage_addr + 0);\n\n tempvar syscall_ptr = syscall_ptr;\n tempvar pedersen_ptr = pedersen_ptr;\n tempvar range_check_ptr = range_check_ptr;\n tempvar __storage_var_temp0: felt = __storage_var_temp0;\n return ([cast(&__storage_var_temp0, felt*)],);\n }\n\n func write{syscall_ptr: felt*, pedersen_ptr: HashBuiltin*, range_check_ptr}(\n index: felt, value: felt\n ) {\n let (storage_addr) = addr(index);\n storage_write(address=storage_addr + 0, value=[cast(&value, felt) + 0]);\n return ();\n }\n}", + "autogen/starknet/storage_var/_base_uri_len/decl.cairo": "namespace _base_uri_len {\n from starkware.starknet.common.storage import normalize_address\n from starkware.starknet.common.syscalls import storage_read, storage_write\n from starkware.cairo.common.cairo_builtins import HashBuiltin\n from starkware.cairo.common.hash import hash2\n\n func addr{pedersen_ptr: HashBuiltin*, range_check_ptr}() -> (res: felt) {\n let res = 0;\n call hash2;\n call normalize_address;\n }\n\n func read{syscall_ptr: felt*, pedersen_ptr: HashBuiltin*, range_check_ptr}() -> (res: felt) {\n let storage_addr = 0;\n call addr;\n call storage_read;\n }\n\n func write{syscall_ptr: felt*, pedersen_ptr: HashBuiltin*, range_check_ptr}(value: felt) {\n let storage_addr = 0;\n call addr;\n call storage_write;\n }\n}", + "autogen/starknet/storage_var/_base_uri_len/impl.cairo": "namespace _base_uri_len {\n from starkware.starknet.common.storage import normalize_address\n from starkware.starknet.common.syscalls import storage_read, storage_write\n from starkware.cairo.common.cairo_builtins import HashBuiltin\n from starkware.cairo.common.hash import hash2\n\n func addr{pedersen_ptr: HashBuiltin*, range_check_ptr}() -> (res: felt) {\n let res = 1714071484102858854771826162550049782889591181437464779550590066987740849066;\n return (res=res);\n }\n\n func read{syscall_ptr: felt*, pedersen_ptr: HashBuiltin*, range_check_ptr}() -> (res: felt) {\n let (storage_addr) = addr();\n let (__storage_var_temp0) = storage_read(address=storage_addr + 0);\n\n tempvar syscall_ptr = syscall_ptr;\n tempvar pedersen_ptr = pedersen_ptr;\n tempvar range_check_ptr = range_check_ptr;\n tempvar __storage_var_temp0: felt = __storage_var_temp0;\n return ([cast(&__storage_var_temp0, felt*)],);\n }\n\n func write{syscall_ptr: felt*, pedersen_ptr: HashBuiltin*, range_check_ptr}(value: felt) {\n let (storage_addr) = addr();\n storage_write(address=storage_addr + 0, value=[cast(&value, felt) + 0]);\n return ();\n }\n}", + "autogen/starknet/storage_var/_use_token_id/decl.cairo": "namespace _use_token_id {\n from starkware.starknet.common.storage import normalize_address\n from starkware.starknet.common.syscalls import storage_read, storage_write\n from starkware.cairo.common.cairo_builtins import HashBuiltin\n from starkware.cairo.common.hash import hash2\n\n func addr{pedersen_ptr: HashBuiltin*, range_check_ptr}() -> (res: felt) {\n let res = 0;\n call hash2;\n call normalize_address;\n }\n\n func read{syscall_ptr: felt*, pedersen_ptr: HashBuiltin*, range_check_ptr}() -> (res: felt) {\n let storage_addr = 0;\n call addr;\n call storage_read;\n }\n\n func write{syscall_ptr: felt*, pedersen_ptr: HashBuiltin*, range_check_ptr}(value: felt) {\n let storage_addr = 0;\n call addr;\n call storage_write;\n }\n}", + "autogen/starknet/storage_var/_use_token_id/impl.cairo": "namespace _use_token_id {\n from starkware.starknet.common.storage import normalize_address\n from starkware.starknet.common.syscalls import storage_read, storage_write\n from starkware.cairo.common.cairo_builtins import HashBuiltin\n from starkware.cairo.common.hash import hash2\n\n func addr{pedersen_ptr: HashBuiltin*, range_check_ptr}() -> (res: felt) {\n let res = 56476088325363978068657236197078033870793119478655153765399997391799023516;\n return (res=res);\n }\n\n func read{syscall_ptr: felt*, pedersen_ptr: HashBuiltin*, range_check_ptr}() -> (res: felt) {\n let (storage_addr) = addr();\n let (__storage_var_temp0) = storage_read(address=storage_addr + 0);\n\n tempvar syscall_ptr = syscall_ptr;\n tempvar pedersen_ptr = pedersen_ptr;\n tempvar range_check_ptr = range_check_ptr;\n tempvar __storage_var_temp0: felt = __storage_var_temp0;\n return ([cast(&__storage_var_temp0, felt*)],);\n }\n\n func write{syscall_ptr: felt*, pedersen_ptr: HashBuiltin*, range_check_ptr}(value: felt) {\n let (storage_addr) = addr();\n storage_write(address=storage_addr + 0, value=[cast(&value, felt) + 0]);\n return ();\n }\n}" + }, + "instruction_locations": { + "0": { + "accessible_scopes": [ + "starkware.cairo.common.alloc", + "starkware.cairo.common.alloc.alloc" + ], + "flow_tracking_data": null, + "hints": [ + { + "location": { + "end_col": 38, + "end_line": 3, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/alloc.cairo" + }, + "start_col": 5, + "start_line": 3 + }, + "n_prefix_newlines": 0 + } + ], + "inst": { + "end_col": 12, + "end_line": 4, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/alloc.cairo" + }, + "start_col": 5, + "start_line": 4 + } + }, + "2": { + "accessible_scopes": [ + "starkware.cairo.common.alloc", + "starkware.cairo.common.alloc.alloc" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 40, + "end_line": 5, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/alloc.cairo" + }, + "start_col": 5, + "start_line": 5 + } + }, + "3": { + "accessible_scopes": [ + "starkware.cairo.common.hash", + "starkware.cairo.common.hash.hash2" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 19, + "end_line": 14, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/hash.cairo" + }, + "start_col": 5, + "start_line": 14 + } + }, + "4": { + "accessible_scopes": [ + "starkware.cairo.common.hash", + "starkware.cairo.common.hash.hash2" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 19, + "end_line": 15, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/hash.cairo" + }, + "start_col": 5, + "start_line": 15 + } + }, + "5": { + "accessible_scopes": [ + "starkware.cairo.common.hash", + "starkware.cairo.common.hash.hash2" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 47, + "end_line": 17, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/hash.cairo" + }, + "parent_location": [ + { + "end_col": 34, + "end_line": 13, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/hash.cairo" + }, + "parent_location": [ + { + "end_col": 28, + "end_line": 18, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/hash.cairo" + }, + "start_col": 5, + "start_line": 18 + }, + "While trying to retrieve the implicit argument 'hash_ptr' in:" + ], + "start_col": 12, + "start_line": 13 + }, + "While expanding the reference 'hash_ptr' in:" + ], + "start_col": 20, + "start_line": 17 + } + }, + "7": { + "accessible_scopes": [ + "starkware.cairo.common.hash", + "starkware.cairo.common.hash.hash2" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 33, + "end_line": 16, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/hash.cairo" + }, + "parent_location": [ + { + "end_col": 26, + "end_line": 18, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/hash.cairo" + }, + "start_col": 20, + "start_line": 18 + }, + "While expanding the reference 'result' in:" + ], + "start_col": 18, + "start_line": 16 + } + }, + "8": { + "accessible_scopes": [ + "starkware.cairo.common.hash", + "starkware.cairo.common.hash.hash2" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 28, + "end_line": 18, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/hash.cairo" + }, + "start_col": 5, + "start_line": 18 + } + }, + "9": { + "accessible_scopes": [ + "starkware.cairo.common.memcpy", + "starkware.cairo.common.memcpy.memcpy" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 7, + "end_line": 8, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/memcpy.cairo" + }, + "start_col": 5, + "start_line": 8 + } + }, + "11": { + "accessible_scopes": [ + "starkware.cairo.common.memcpy", + "starkware.cairo.common.memcpy.memcpy" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 19, + "end_line": 9, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/memcpy.cairo" + }, + "start_col": 9, + "start_line": 9 + } + }, + "12": { + "accessible_scopes": [ + "starkware.cairo.common.memcpy", + "starkware.cairo.common.memcpy.memcpy" + ], + "flow_tracking_data": null, + "hints": [ + { + "location": { + "end_col": 41, + "end_line": 12, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/memcpy.cairo" + }, + "start_col": 5, + "start_line": 12 + }, + "n_prefix_newlines": 0 + } + ], + "inst": { + "end_col": 23, + "end_line": 2, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/memcpy.cairo" + }, + "parent_location": [ + { + "end_col": 38, + "end_line": 13, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/memcpy.cairo" + }, + "start_col": 35, + "start_line": 13 + }, + "While expanding the reference 'dst' in:" + ], + "start_col": 13, + "start_line": 2 + } + }, + "13": { + "accessible_scopes": [ + "starkware.cairo.common.memcpy", + "starkware.cairo.common.memcpy.memcpy" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 35, + "end_line": 2, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/memcpy.cairo" + }, + "parent_location": [ + { + "end_col": 47, + "end_line": 13, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/memcpy.cairo" + }, + "start_col": 44, + "start_line": 13 + }, + "While expanding the reference 'src' in:" + ], + "start_col": 25, + "start_line": 2 + } + }, + "14": { + "accessible_scopes": [ + "starkware.cairo.common.memcpy", + "starkware.cairo.common.memcpy.memcpy" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 37, + "end_line": 17, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/memcpy.cairo" + }, + "start_col": 26, + "start_line": 17 + } + }, + "15": { + "accessible_scopes": [ + "starkware.cairo.common.memcpy", + "starkware.cairo.common.memcpy.memcpy" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 38, + "end_line": 17, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/memcpy.cairo" + }, + "start_col": 5, + "start_line": 17 + } + }, + "16": { + "accessible_scopes": [ + "starkware.cairo.common.memcpy", + "starkware.cairo.common.memcpy.memcpy" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 41, + "end_line": 22, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/memcpy.cairo" + }, + "start_col": 5, + "start_line": 22 + } + }, + "18": { + "accessible_scopes": [ + "starkware.cairo.common.memcpy", + "starkware.cairo.common.memcpy.memcpy" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 41, + "end_line": 23, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/memcpy.cairo" + }, + "start_col": 5, + "start_line": 23 + } + }, + "20": { + "accessible_scopes": [ + "starkware.cairo.common.memcpy", + "starkware.cairo.common.memcpy.memcpy" + ], + "flow_tracking_data": null, + "hints": [ + { + "location": { + "end_col": 7, + "end_line": 27, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/memcpy.cairo" + }, + "start_col": 5, + "start_line": 24 + }, + "n_prefix_newlines": 1 + } + ], + "inst": { + "end_col": 44, + "end_line": 29, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/memcpy.cairo" + }, + "start_col": 5, + "start_line": 29 + } + }, + "22": { + "accessible_scopes": [ + "starkware.cairo.common.memcpy", + "starkware.cairo.common.memcpy.memcpy" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 55, + "end_line": 31, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/memcpy.cairo" + }, + "start_col": 5, + "start_line": 31 + } + }, + "23": { + "accessible_scopes": [ + "starkware.cairo.common.memcpy", + "starkware.cairo.common.memcpy.memcpy" + ], + "flow_tracking_data": null, + "hints": [ + { + "location": { + "end_col": 26, + "end_line": 33, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/memcpy.cairo" + }, + "start_col": 5, + "start_line": 33 + }, + "n_prefix_newlines": 0 + } + ], + "inst": { + "end_col": 15, + "end_line": 34, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/memcpy.cairo" + }, + "start_col": 5, + "start_line": 34 + } + }, + "24": { + "accessible_scopes": [ + "starkware.starknet.common.syscalls", + "starkware.starknet.common.syscalls.get_caller_address" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 90, + "end_line": 202, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/starknet/common/syscalls.cairo" + }, + "start_col": 63, + "start_line": 202 + } + }, + "26": { + "accessible_scopes": [ + "starkware.starknet.common.syscalls", + "starkware.starknet.common.syscalls.get_caller_address" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 92, + "end_line": 202, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/starknet/common/syscalls.cairo" + }, + "start_col": 5, + "start_line": 202 + } + }, + "27": { + "accessible_scopes": [ + "starkware.starknet.common.syscalls", + "starkware.starknet.common.syscalls.get_caller_address" + ], + "flow_tracking_data": null, + "hints": [ + { + "location": { + "end_col": 93, + "end_line": 203, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/starknet/common/syscalls.cairo" + }, + "start_col": 5, + "start_line": 203 + }, + "n_prefix_newlines": 0 + } + ], + "inst": { + "end_col": 58, + "end_line": 204, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/starknet/common/syscalls.cairo" + }, + "parent_location": [ + { + "end_col": 43, + "end_line": 200, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/starknet/common/syscalls.cairo" + }, + "parent_location": [ + { + "end_col": 61, + "end_line": 205, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/starknet/common/syscalls.cairo" + }, + "start_col": 5, + "start_line": 205 + }, + "While trying to retrieve the implicit argument 'syscall_ptr' in:" + ], + "start_col": 25, + "start_line": 200 + }, + "While expanding the reference 'syscall_ptr' in:" + ], + "start_col": 23, + "start_line": 204 + } + }, + "29": { + "accessible_scopes": [ + "starkware.starknet.common.syscalls", + "starkware.starknet.common.syscalls.get_caller_address" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 59, + "end_line": 205, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/starknet/common/syscalls.cairo" + }, + "start_col": 28, + "start_line": 205 + } + }, + "30": { + "accessible_scopes": [ + "starkware.starknet.common.syscalls", + "starkware.starknet.common.syscalls.get_caller_address" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 61, + "end_line": 205, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/starknet/common/syscalls.cairo" + }, + "start_col": 5, + "start_line": 205 + } + }, + "31": { + "accessible_scopes": [ + "starkware.starknet.common.syscalls", + "starkware.starknet.common.syscalls.storage_read" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 79, + "end_line": 354, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/starknet/common/syscalls.cairo" + }, + "start_col": 58, + "start_line": 354 + } + }, + "33": { + "accessible_scopes": [ + "starkware.starknet.common.syscalls", + "starkware.starknet.common.syscalls.storage_read" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 98, + "end_line": 354, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/starknet/common/syscalls.cairo" + }, + "start_col": 5, + "start_line": 354 + } + }, + "34": { + "accessible_scopes": [ + "starkware.starknet.common.syscalls", + "starkware.starknet.common.syscalls.storage_read" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 98, + "end_line": 354, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/starknet/common/syscalls.cairo" + }, + "start_col": 5, + "start_line": 354 + } + }, + "35": { + "accessible_scopes": [ + "starkware.starknet.common.syscalls", + "starkware.starknet.common.syscalls.storage_read" + ], + "flow_tracking_data": null, + "hints": [ + { + "location": { + "end_col": 87, + "end_line": 355, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/starknet/common/syscalls.cairo" + }, + "start_col": 5, + "start_line": 355 + }, + "n_prefix_newlines": 0 + } + ], + "inst": { + "end_col": 53, + "end_line": 357, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/starknet/common/syscalls.cairo" + }, + "parent_location": [ + { + "end_col": 37, + "end_line": 352, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/starknet/common/syscalls.cairo" + }, + "parent_location": [ + { + "end_col": 35, + "end_line": 358, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/starknet/common/syscalls.cairo" + }, + "start_col": 5, + "start_line": 358 + }, + "While trying to retrieve the implicit argument 'syscall_ptr' in:" + ], + "start_col": 19, + "start_line": 352 + }, + "While expanding the reference 'syscall_ptr' in:" + ], + "start_col": 23, + "start_line": 357 + } + }, + "37": { + "accessible_scopes": [ + "starkware.starknet.common.syscalls", + "starkware.starknet.common.syscalls.storage_read" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 33, + "end_line": 358, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/starknet/common/syscalls.cairo" + }, + "start_col": 19, + "start_line": 358 + } + }, + "38": { + "accessible_scopes": [ + "starkware.starknet.common.syscalls", + "starkware.starknet.common.syscalls.storage_read" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 35, + "end_line": 358, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/starknet/common/syscalls.cairo" + }, + "start_col": 5, + "start_line": 358 + } + }, + "39": { + "accessible_scopes": [ + "starkware.starknet.common.syscalls", + "starkware.starknet.common.syscalls.storage_write" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 40, + "end_line": 372, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/starknet/common/syscalls.cairo" + }, + "start_col": 18, + "start_line": 372 + } + }, + "41": { + "accessible_scopes": [ + "starkware.starknet.common.syscalls", + "starkware.starknet.common.syscalls.storage_write" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 7, + "end_line": 373, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/starknet/common/syscalls.cairo" + }, + "start_col": 5, + "start_line": 371 + } + }, + "42": { + "accessible_scopes": [ + "starkware.starknet.common.syscalls", + "starkware.starknet.common.syscalls.storage_write" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 7, + "end_line": 373, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/starknet/common/syscalls.cairo" + }, + "start_col": 5, + "start_line": 371 + } + }, + "43": { + "accessible_scopes": [ + "starkware.starknet.common.syscalls", + "starkware.starknet.common.syscalls.storage_write" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 7, + "end_line": 373, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/starknet/common/syscalls.cairo" + }, + "start_col": 5, + "start_line": 371 + } + }, + "44": { + "accessible_scopes": [ + "starkware.starknet.common.syscalls", + "starkware.starknet.common.syscalls.storage_write" + ], + "flow_tracking_data": null, + "hints": [ + { + "location": { + "end_col": 88, + "end_line": 374, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/starknet/common/syscalls.cairo" + }, + "start_col": 5, + "start_line": 374 + }, + "n_prefix_newlines": 0 + } + ], + "inst": { + "end_col": 54, + "end_line": 375, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/starknet/common/syscalls.cairo" + }, + "parent_location": [ + { + "end_col": 38, + "end_line": 370, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/starknet/common/syscalls.cairo" + }, + "parent_location": [ + { + "end_col": 15, + "end_line": 376, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/starknet/common/syscalls.cairo" + }, + "start_col": 5, + "start_line": 376 + }, + "While trying to retrieve the implicit argument 'syscall_ptr' in:" + ], + "start_col": 20, + "start_line": 370 + }, + "While expanding the reference 'syscall_ptr' in:" + ], + "start_col": 23, + "start_line": 375 + } + }, + "46": { + "accessible_scopes": [ + "starkware.starknet.common.syscalls", + "starkware.starknet.common.syscalls.storage_write" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 15, + "end_line": 376, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/starknet/common/syscalls.cairo" + }, + "start_col": 5, + "start_line": 376 + } + }, + "47": { + "accessible_scopes": [ + "starkware.starknet.common.syscalls", + "starkware.starknet.common.syscalls.emit_event" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 37, + "end_line": 392, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/starknet/common/syscalls.cairo" + }, + "start_col": 18, + "start_line": 392 + } + }, + "49": { + "accessible_scopes": [ + "starkware.starknet.common.syscalls", + "starkware.starknet.common.syscalls.emit_event" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 7, + "end_line": 393, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/starknet/common/syscalls.cairo" + }, + "start_col": 5, + "start_line": 391 + } + }, + "50": { + "accessible_scopes": [ + "starkware.starknet.common.syscalls", + "starkware.starknet.common.syscalls.emit_event" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 7, + "end_line": 393, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/starknet/common/syscalls.cairo" + }, + "start_col": 5, + "start_line": 391 + } + }, + "51": { + "accessible_scopes": [ + "starkware.starknet.common.syscalls", + "starkware.starknet.common.syscalls.emit_event" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 7, + "end_line": 393, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/starknet/common/syscalls.cairo" + }, + "start_col": 5, + "start_line": 391 + } + }, + "52": { + "accessible_scopes": [ + "starkware.starknet.common.syscalls", + "starkware.starknet.common.syscalls.emit_event" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 7, + "end_line": 393, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/starknet/common/syscalls.cairo" + }, + "start_col": 5, + "start_line": 391 + } + }, + "53": { + "accessible_scopes": [ + "starkware.starknet.common.syscalls", + "starkware.starknet.common.syscalls.emit_event" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 7, + "end_line": 393, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/starknet/common/syscalls.cairo" + }, + "start_col": 5, + "start_line": 391 + } + }, + "54": { + "accessible_scopes": [ + "starkware.starknet.common.syscalls", + "starkware.starknet.common.syscalls.emit_event" + ], + "flow_tracking_data": null, + "hints": [ + { + "location": { + "end_col": 85, + "end_line": 394, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/starknet/common/syscalls.cairo" + }, + "start_col": 5, + "start_line": 394 + }, + "n_prefix_newlines": 0 + } + ], + "inst": { + "end_col": 51, + "end_line": 395, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/starknet/common/syscalls.cairo" + }, + "parent_location": [ + { + "end_col": 35, + "end_line": 390, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/starknet/common/syscalls.cairo" + }, + "parent_location": [ + { + "end_col": 15, + "end_line": 396, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/starknet/common/syscalls.cairo" + }, + "start_col": 5, + "start_line": 396 + }, + "While trying to retrieve the implicit argument 'syscall_ptr' in:" + ], + "start_col": 17, + "start_line": 390 + }, + "While expanding the reference 'syscall_ptr' in:" + ], + "start_col": 23, + "start_line": 395 + } + }, + "56": { + "accessible_scopes": [ + "starkware.starknet.common.syscalls", + "starkware.starknet.common.syscalls.emit_event" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 15, + "end_line": 396, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/starknet/common/syscalls.cairo" + }, + "start_col": 5, + "start_line": 396 + } + }, + "57": { + "accessible_scopes": [ + "starkware.cairo.common.math", + "starkware.cairo.common.math.assert_not_zero" + ], + "flow_tracking_data": null, + "hints": [ + { + "location": { + "end_col": 7, + "end_line": 11, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/math.cairo" + }, + "start_col": 5, + "start_line": 7 + }, + "n_prefix_newlines": 1 + } + ], + "inst": { + "end_col": 7, + "end_line": 12, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/math.cairo" + }, + "start_col": 5, + "start_line": 12 + } + }, + "59": { + "accessible_scopes": [ + "starkware.cairo.common.math", + "starkware.cairo.common.math.assert_not_zero" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 18, + "end_line": 14, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/math.cairo" + }, + "start_col": 9, + "start_line": 14 + } + }, + "61": { + "accessible_scopes": [ + "starkware.cairo.common.math", + "starkware.cairo.common.math.assert_not_zero" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 15, + "end_line": 17, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/math.cairo" + }, + "start_col": 5, + "start_line": 17 + } + }, + "62": { + "accessible_scopes": [ + "starkware.cairo.common.math", + "starkware.cairo.common.math.assert_nn" + ], + "flow_tracking_data": null, + "hints": [ + { + "location": { + "end_col": 7, + "end_line": 46, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/math.cairo" + }, + "start_col": 5, + "start_line": 42 + }, + "n_prefix_newlines": 1 + } + ], + "inst": { + "end_col": 26, + "end_line": 47, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/math.cairo" + }, + "start_col": 5, + "start_line": 47 + } + }, + "63": { + "accessible_scopes": [ + "starkware.cairo.common.math", + "starkware.cairo.common.math.assert_nn" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 46, + "end_line": 48, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/math.cairo" + }, + "parent_location": [ + { + "end_col": 31, + "end_line": 41, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/math.cairo" + }, + "parent_location": [ + { + "end_col": 15, + "end_line": 49, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/math.cairo" + }, + "start_col": 5, + "start_line": 49 + }, + "While trying to retrieve the implicit argument 'range_check_ptr' in:" + ], + "start_col": 16, + "start_line": 41 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 27, + "start_line": 48 + } + }, + "65": { + "accessible_scopes": [ + "starkware.cairo.common.math", + "starkware.cairo.common.math.assert_nn" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 15, + "end_line": 49, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/math.cairo" + }, + "start_col": 5, + "start_line": 49 + } + }, + "66": { + "accessible_scopes": [ + "starkware.cairo.common.math", + "starkware.cairo.common.math.assert_le" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 31, + "end_line": 53, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/math.cairo" + }, + "parent_location": [ + { + "end_col": 31, + "end_line": 41, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/math.cairo" + }, + "parent_location": [ + { + "end_col": 21, + "end_line": 54, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/math.cairo" + }, + "start_col": 5, + "start_line": 54 + }, + "While trying to retrieve the implicit argument 'range_check_ptr' in:" + ], + "start_col": 16, + "start_line": 41 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 16, + "start_line": 53 + } + }, + "67": { + "accessible_scopes": [ + "starkware.cairo.common.math", + "starkware.cairo.common.math.assert_le" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 20, + "end_line": 54, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/math.cairo" + }, + "start_col": 15, + "start_line": 54 + } + }, + "68": { + "accessible_scopes": [ + "starkware.cairo.common.math", + "starkware.cairo.common.math.assert_le" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 21, + "end_line": 54, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/math.cairo" + }, + "start_col": 5, + "start_line": 54 + } + }, + "70": { + "accessible_scopes": [ + "starkware.cairo.common.math", + "starkware.cairo.common.math.assert_le" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 15, + "end_line": 55, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/math.cairo" + }, + "start_col": 5, + "start_line": 55 + } + }, + "71": { + "accessible_scopes": [ + "starkware.cairo.common.math", + "starkware.cairo.common.math.assert_250_bit" + ], + "flow_tracking_data": null, + "hints": [ + { + "location": { + "end_col": 7, + "end_line": 106, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/math.cairo" + }, + "start_col": 5, + "start_line": 97 + }, + "n_prefix_newlines": 1 + } + ], + "inst": { + "end_col": 50, + "end_line": 108, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/math.cairo" + }, + "start_col": 36, + "start_line": 108 + } + }, + "73": { + "accessible_scopes": [ + "starkware.cairo.common.math", + "starkware.cairo.common.math.assert_250_bit" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 37, + "end_line": 95, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/math.cairo" + }, + "parent_location": [ + { + "end_col": 57, + "end_line": 108, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/math.cairo" + }, + "start_col": 53, + "start_line": 108 + }, + "While expanding the reference 'high' in:" + ], + "start_col": 16, + "start_line": 95 + } + }, + "74": { + "accessible_scopes": [ + "starkware.cairo.common.math", + "starkware.cairo.common.math.assert_250_bit" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 57, + "end_line": 108, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/math.cairo" + }, + "start_col": 36, + "start_line": 108 + } + }, + "75": { + "accessible_scopes": [ + "starkware.cairo.common.math", + "starkware.cairo.common.math.assert_250_bit" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 58, + "end_line": 108, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/math.cairo" + }, + "start_col": 5, + "start_line": 108 + } + }, + "76": { + "accessible_scopes": [ + "starkware.cairo.common.math", + "starkware.cairo.common.math.assert_250_bit" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 37, + "end_line": 95, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/math.cairo" + }, + "parent_location": [ + { + "end_col": 24, + "end_line": 113, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/math.cairo" + }, + "start_col": 20, + "start_line": 113 + }, + "While expanding the reference 'high' in:" + ], + "start_col": 16, + "start_line": 95 + } + }, + "77": { + "accessible_scopes": [ + "starkware.cairo.common.math", + "starkware.cairo.common.math.assert_250_bit" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 32, + "end_line": 113, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/math.cairo" + }, + "start_col": 20, + "start_line": 113 + } + }, + "79": { + "accessible_scopes": [ + "starkware.cairo.common.math", + "starkware.cairo.common.math.assert_250_bit" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 32, + "end_line": 94, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/math.cairo" + }, + "parent_location": [ + { + "end_col": 38, + "end_line": 113, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/math.cairo" + }, + "start_col": 35, + "start_line": 113 + }, + "While expanding the reference 'low' in:" + ], + "start_col": 15, + "start_line": 94 + } + }, + "80": { + "accessible_scopes": [ + "starkware.cairo.common.math", + "starkware.cairo.common.math.assert_250_bit" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 39, + "end_line": 113, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/math.cairo" + }, + "start_col": 5, + "start_line": 113 + } + }, + "81": { + "accessible_scopes": [ + "starkware.cairo.common.math", + "starkware.cairo.common.math.assert_250_bit" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 46, + "end_line": 115, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/math.cairo" + }, + "parent_location": [ + { + "end_col": 36, + "end_line": 89, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/math.cairo" + }, + "parent_location": [ + { + "end_col": 15, + "end_line": 116, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/math.cairo" + }, + "start_col": 5, + "start_line": 116 + }, + "While trying to retrieve the implicit argument 'range_check_ptr' in:" + ], + "start_col": 21, + "start_line": 89 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 27, + "start_line": 115 + } + }, + "83": { + "accessible_scopes": [ + "starkware.cairo.common.math", + "starkware.cairo.common.math.assert_250_bit" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 15, + "end_line": 116, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/math.cairo" + }, + "start_col": 5, + "start_line": 116 + } + }, + "84": { + "accessible_scopes": [ + "starkware.cairo.common.math", + "starkware.cairo.common.math.abs_value" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 31, + "end_line": 243, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/math.cairo" + }, + "start_col": 5, + "start_line": 243 + } + }, + "86": { + "accessible_scopes": [ + "starkware.cairo.common.math", + "starkware.cairo.common.math.abs_value" + ], + "flow_tracking_data": null, + "hints": [ + { + "location": { + "end_col": 7, + "end_line": 248, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/math.cairo" + }, + "start_col": 5, + "start_line": 244 + }, + "n_prefix_newlines": 1 + } + ], + "inst": { + "end_col": 7, + "end_line": 249, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/math.cairo" + }, + "start_col": 5, + "start_line": 249 + } + }, + "88": { + "accessible_scopes": [ + "starkware.cairo.common.math", + "starkware.cairo.common.math.abs_value" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 58, + "end_line": 250, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/math.cairo" + }, + "start_col": 39, + "start_line": 250 + } + }, + "90": { + "accessible_scopes": [ + "starkware.cairo.common.math", + "starkware.cairo.common.math.abs_value" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 41, + "end_line": 251, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/math.cairo" + }, + "start_col": 29, + "start_line": 251 + } + }, + "92": { + "accessible_scopes": [ + "starkware.cairo.common.math", + "starkware.cairo.common.math.abs_value" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 38, + "end_line": 252, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/math.cairo" + }, + "start_col": 9, + "start_line": 252 + } + }, + "93": { + "accessible_scopes": [ + "starkware.cairo.common.math", + "starkware.cairo.common.math.abs_value" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 26, + "end_line": 254, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/math.cairo" + }, + "start_col": 9, + "start_line": 254 + } + }, + "94": { + "accessible_scopes": [ + "starkware.cairo.common.math", + "starkware.cairo.common.math.abs_value" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 34, + "end_line": 256, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/math.cairo" + }, + "start_col": 9, + "start_line": 256 + } + }, + "95": { + "accessible_scopes": [ + "starkware.cairo.common.math", + "starkware.cairo.common.math.abs_value" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 50, + "end_line": 257, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/math.cairo" + }, + "parent_location": [ + { + "end_col": 31, + "end_line": 242, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/math.cairo" + }, + "parent_location": [ + { + "end_col": 22, + "end_line": 258, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/math.cairo" + }, + "start_col": 9, + "start_line": 258 + }, + "While trying to retrieve the implicit argument 'range_check_ptr' in:" + ], + "start_col": 16, + "start_line": 242 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 31, + "start_line": 257 + } + }, + "97": { + "accessible_scopes": [ + "starkware.cairo.common.math", + "starkware.cairo.common.math.abs_value" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 38, + "end_line": 242, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/math.cairo" + }, + "parent_location": [ + { + "end_col": 21, + "end_line": 258, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/math.cairo" + }, + "start_col": 16, + "start_line": 258 + }, + "While expanding the reference 'value' in:" + ], + "start_col": 33, + "start_line": 242 + } + }, + "98": { + "accessible_scopes": [ + "starkware.cairo.common.math", + "starkware.cairo.common.math.abs_value" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 22, + "end_line": 258, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/math.cairo" + }, + "start_col": 9, + "start_line": 258 + } + }, + "99": { + "accessible_scopes": [ + "starkware.cairo.common.math", + "starkware.cairo.common.math.sign" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 7, + "end_line": 266, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/math.cairo" + }, + "start_col": 5, + "start_line": 266 + } + }, + "101": { + "accessible_scopes": [ + "starkware.cairo.common.math", + "starkware.cairo.common.math.sign" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 16, + "end_line": 267, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/math.cairo" + }, + "start_col": 9, + "start_line": 267 + } + }, + "103": { + "accessible_scopes": [ + "starkware.cairo.common.math", + "starkware.cairo.common.math.sign" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 26, + "end_line": 265, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/math.cairo" + }, + "parent_location": [ + { + "end_col": 26, + "end_line": 265, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/math.cairo" + }, + "parent_location": [ + { + "end_col": 18, + "end_line": 268, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/math.cairo" + }, + "start_col": 9, + "start_line": 268 + }, + "While trying to retrieve the implicit argument 'range_check_ptr' in:" + ], + "start_col": 11, + "start_line": 265 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 11, + "start_line": 265 + } + }, + "104": { + "accessible_scopes": [ + "starkware.cairo.common.math", + "starkware.cairo.common.math.sign" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 17, + "end_line": 268, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/math.cairo" + }, + "start_col": 16, + "start_line": 268 + } + }, + "106": { + "accessible_scopes": [ + "starkware.cairo.common.math", + "starkware.cairo.common.math.sign" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 18, + "end_line": 268, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/math.cairo" + }, + "start_col": 9, + "start_line": 268 + } + }, + "107": { + "accessible_scopes": [ + "starkware.cairo.common.math", + "starkware.cairo.common.math.sign" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 31, + "end_line": 271, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/math.cairo" + }, + "start_col": 5, + "start_line": 271 + } + }, + "109": { + "accessible_scopes": [ + "starkware.cairo.common.math", + "starkware.cairo.common.math.sign" + ], + "flow_tracking_data": null, + "hints": [ + { + "location": { + "end_col": 7, + "end_line": 276, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/math.cairo" + }, + "start_col": 5, + "start_line": 272 + }, + "n_prefix_newlines": 1 + } + ], + "inst": { + "end_col": 7, + "end_line": 277, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/math.cairo" + }, + "start_col": 5, + "start_line": 277 + } + }, + "111": { + "accessible_scopes": [ + "starkware.cairo.common.math", + "starkware.cairo.common.math.sign" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 48, + "end_line": 278, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/math.cairo" + }, + "start_col": 36, + "start_line": 278 + } + }, + "113": { + "accessible_scopes": [ + "starkware.cairo.common.math", + "starkware.cairo.common.math.sign" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 49, + "end_line": 278, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/math.cairo" + }, + "start_col": 9, + "start_line": 278 + } + }, + "114": { + "accessible_scopes": [ + "starkware.cairo.common.math", + "starkware.cairo.common.math.sign" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 50, + "end_line": 279, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/math.cairo" + }, + "parent_location": [ + { + "end_col": 26, + "end_line": 265, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/math.cairo" + }, + "parent_location": [ + { + "end_col": 19, + "end_line": 280, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/math.cairo" + }, + "start_col": 9, + "start_line": 280 + }, + "While trying to retrieve the implicit argument 'range_check_ptr' in:" + ], + "start_col": 11, + "start_line": 265 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 31, + "start_line": 279 + } + }, + "116": { + "accessible_scopes": [ + "starkware.cairo.common.math", + "starkware.cairo.common.math.sign" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 18, + "end_line": 280, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/math.cairo" + }, + "start_col": 16, + "start_line": 280 + } + }, + "118": { + "accessible_scopes": [ + "starkware.cairo.common.math", + "starkware.cairo.common.math.sign" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 19, + "end_line": 280, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/math.cairo" + }, + "start_col": 9, + "start_line": 280 + } + }, + "119": { + "accessible_scopes": [ + "starkware.cairo.common.math", + "starkware.cairo.common.math.sign" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 16, + "end_line": 282, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/math.cairo" + }, + "start_col": 9, + "start_line": 282 + } + }, + "121": { + "accessible_scopes": [ + "starkware.cairo.common.math", + "starkware.cairo.common.math.sign" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 34, + "end_line": 283, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/math.cairo" + }, + "start_col": 9, + "start_line": 283 + } + }, + "122": { + "accessible_scopes": [ + "starkware.cairo.common.math", + "starkware.cairo.common.math.sign" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 50, + "end_line": 284, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/math.cairo" + }, + "parent_location": [ + { + "end_col": 26, + "end_line": 265, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/math.cairo" + }, + "parent_location": [ + { + "end_col": 18, + "end_line": 285, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/math.cairo" + }, + "start_col": 9, + "start_line": 285 + }, + "While trying to retrieve the implicit argument 'range_check_ptr' in:" + ], + "start_col": 11, + "start_line": 265 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 31, + "start_line": 284 + } + }, + "124": { + "accessible_scopes": [ + "starkware.cairo.common.math", + "starkware.cairo.common.math.sign" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 17, + "end_line": 285, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/math.cairo" + }, + "start_col": 16, + "start_line": 285 + } + }, + "126": { + "accessible_scopes": [ + "starkware.cairo.common.math", + "starkware.cairo.common.math.sign" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 18, + "end_line": 285, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/math.cairo" + }, + "start_col": 9, + "start_line": 285 + } + }, + "127": { + "accessible_scopes": [ + "starkware.cairo.common.math", + "starkware.cairo.common.math.unsigned_div_rem" + ], + "flow_tracking_data": null, + "hints": [ + { + "location": { + "end_col": 7, + "end_line": 307, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/math.cairo" + }, + "start_col": 5, + "start_line": 301 + }, + "n_prefix_newlines": 1 + } + ], + "inst": { + "end_col": 46, + "end_line": 300, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/math.cairo" + }, + "parent_location": [ + { + "end_col": 31, + "end_line": 53, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/math.cairo" + }, + "parent_location": [ + { + "end_col": 26, + "end_line": 308, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/math.cairo" + }, + "start_col": 5, + "start_line": 308 + }, + "While trying to retrieve the implicit argument 'range_check_ptr' in:" + ], + "start_col": 16, + "start_line": 53 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 27, + "start_line": 300 + } + }, + "129": { + "accessible_scopes": [ + "starkware.cairo.common.math", + "starkware.cairo.common.math.unsigned_div_rem" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 30, + "end_line": 298, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/math.cairo" + }, + "parent_location": [ + { + "end_col": 16, + "end_line": 308, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/math.cairo" + }, + "start_col": 15, + "start_line": 308 + }, + "While expanding the reference 'r' in:" + ], + "start_col": 13, + "start_line": 298 + } + }, + "130": { + "accessible_scopes": [ + "starkware.cairo.common.math", + "starkware.cairo.common.math.unsigned_div_rem" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 25, + "end_line": 308, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/math.cairo" + }, + "start_col": 18, + "start_line": 308 + } + }, + "132": { + "accessible_scopes": [ + "starkware.cairo.common.math", + "starkware.cairo.common.math.unsigned_div_rem" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 26, + "end_line": 308, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/math.cairo" + }, + "start_col": 5, + "start_line": 308 + } + }, + "134": { + "accessible_scopes": [ + "starkware.cairo.common.math", + "starkware.cairo.common.math.unsigned_div_rem" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 34, + "end_line": 299, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/math.cairo" + }, + "parent_location": [ + { + "end_col": 21, + "end_line": 310, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/math.cairo" + }, + "start_col": 20, + "start_line": 310 + }, + "While expanding the reference 'q' in:" + ], + "start_col": 13, + "start_line": 299 + } + }, + "135": { + "accessible_scopes": [ + "starkware.cairo.common.math", + "starkware.cairo.common.math.unsigned_div_rem" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 27, + "end_line": 310, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/math.cairo" + }, + "start_col": 20, + "start_line": 310 + } + }, + "136": { + "accessible_scopes": [ + "starkware.cairo.common.math", + "starkware.cairo.common.math.unsigned_div_rem" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 30, + "end_line": 298, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/math.cairo" + }, + "parent_location": [ + { + "end_col": 31, + "end_line": 310, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/math.cairo" + }, + "start_col": 30, + "start_line": 310 + }, + "While expanding the reference 'r' in:" + ], + "start_col": 13, + "start_line": 298 + } + }, + "137": { + "accessible_scopes": [ + "starkware.cairo.common.math", + "starkware.cairo.common.math.unsigned_div_rem" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 32, + "end_line": 310, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/math.cairo" + }, + "start_col": 5, + "start_line": 310 + } + }, + "138": { + "accessible_scopes": [ + "starkware.cairo.common.math", + "starkware.cairo.common.math.unsigned_div_rem" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 31, + "end_line": 53, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/math.cairo" + }, + "parent_location": [ + { + "end_col": 26, + "end_line": 308, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/math.cairo" + }, + "parent_location": [ + { + "end_col": 38, + "end_line": 297, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/math.cairo" + }, + "parent_location": [ + { + "end_col": 19, + "end_line": 311, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/math.cairo" + }, + "start_col": 5, + "start_line": 311 + }, + "While trying to retrieve the implicit argument 'range_check_ptr' in:" + ], + "start_col": 23, + "start_line": 297 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 5, + "start_line": 308 + }, + "While trying to update the implicit return value 'range_check_ptr' in:" + ], + "start_col": 16, + "start_line": 53 + } + }, + "139": { + "accessible_scopes": [ + "starkware.cairo.common.math", + "starkware.cairo.common.math.unsigned_div_rem" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 34, + "end_line": 299, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/math.cairo" + }, + "parent_location": [ + { + "end_col": 14, + "end_line": 311, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/math.cairo" + }, + "start_col": 13, + "start_line": 311 + }, + "While expanding the reference 'q' in:" + ], + "start_col": 13, + "start_line": 299 + } + }, + "140": { + "accessible_scopes": [ + "starkware.cairo.common.math", + "starkware.cairo.common.math.unsigned_div_rem" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 30, + "end_line": 298, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/math.cairo" + }, + "parent_location": [ + { + "end_col": 17, + "end_line": 311, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/math.cairo" + }, + "start_col": 16, + "start_line": 311 + }, + "While expanding the reference 'r' in:" + ], + "start_col": 13, + "start_line": 298 + } + }, + "141": { + "accessible_scopes": [ + "starkware.cairo.common.math", + "starkware.cairo.common.math.unsigned_div_rem" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 19, + "end_line": 311, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/math.cairo" + }, + "start_col": 5, + "start_line": 311 + } + }, + "142": { + "accessible_scopes": [ + "starkware.starknet.common.storage", + "starkware.starknet.common.storage.normalize_address" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 22, + "end_line": 13, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/starknet/common/storage.cairo" + }, + "start_col": 5, + "start_line": 13 + } + }, + "144": { + "accessible_scopes": [ + "starkware.starknet.common.storage", + "starkware.starknet.common.storage.normalize_address" + ], + "flow_tracking_data": null, + "hints": [ + { + "location": { + "end_col": 7, + "end_line": 21, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/starknet/common/storage.cairo" + }, + "start_col": 5, + "start_line": 14 + }, + "n_prefix_newlines": 1 + } + ], + "inst": { + "end_col": 7, + "end_line": 22, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/starknet/common/storage.cairo" + }, + "start_col": 5, + "start_line": 22 + } + }, + "146": { + "accessible_scopes": [ + "starkware.starknet.common.storage", + "starkware.starknet.common.storage.normalize_address" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 39, + "end_line": 12, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/starknet/common/storage.cairo" + }, + "parent_location": [ + { + "end_col": 36, + "end_line": 89, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/math.cairo" + }, + "parent_location": [ + { + "end_col": 26, + "end_line": 50, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/starknet/common/storage.cairo" + }, + "start_col": 9, + "start_line": 50 + }, + "While trying to retrieve the implicit argument 'range_check_ptr' in:" + ], + "start_col": 21, + "start_line": 89 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 24, + "start_line": 12 + } + }, + "147": { + "accessible_scopes": [ + "starkware.starknet.common.storage", + "starkware.starknet.common.storage.normalize_address" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 34, + "end_line": 48, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/starknet/common/storage.cairo" + }, + "parent_location": [ + { + "end_col": 25, + "end_line": 50, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/starknet/common/storage.cairo" + }, + "start_col": 24, + "start_line": 50 + }, + "While expanding the reference 'x' in:" + ], + "start_col": 17, + "start_line": 48 + } + }, + "149": { + "accessible_scopes": [ + "starkware.starknet.common.storage", + "starkware.starknet.common.storage.normalize_address" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 26, + "end_line": 50, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/starknet/common/storage.cairo" + }, + "start_col": 9, + "start_line": 50 + } + }, + "151": { + "accessible_scopes": [ + "starkware.starknet.common.storage", + "starkware.starknet.common.storage.normalize_address" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 20, + "end_line": 49, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/starknet/common/storage.cairo" + }, + "parent_location": [ + { + "end_col": 25, + "end_line": 51, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/starknet/common/storage.cairo" + }, + "start_col": 24, + "start_line": 51 + }, + "While expanding the reference 'y' in:" + ], + "start_col": 18, + "start_line": 49 + } + }, + "153": { + "accessible_scopes": [ + "starkware.starknet.common.storage", + "starkware.starknet.common.storage.normalize_address" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 36, + "end_line": 89, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/math.cairo" + }, + "parent_location": [ + { + "end_col": 26, + "end_line": 50, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/starknet/common/storage.cairo" + }, + "parent_location": [ + { + "end_col": 36, + "end_line": 89, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/math.cairo" + }, + "parent_location": [ + { + "end_col": 26, + "end_line": 51, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/starknet/common/storage.cairo" + }, + "start_col": 9, + "start_line": 51 + }, + "While trying to retrieve the implicit argument 'range_check_ptr' in:" + ], + "start_col": 21, + "start_line": 89 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 9, + "start_line": 50 + }, + "While trying to update the implicit return value 'range_check_ptr' in:" + ], + "start_col": 21, + "start_line": 89 + } + }, + "154": { + "accessible_scopes": [ + "starkware.starknet.common.storage", + "starkware.starknet.common.storage.normalize_address" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 28, + "end_line": 49, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/starknet/common/storage.cairo" + }, + "parent_location": [ + { + "end_col": 25, + "end_line": 51, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/starknet/common/storage.cairo" + }, + "start_col": 24, + "start_line": 51 + }, + "While expanding the reference 'y' in:" + ], + "start_col": 17, + "start_line": 49 + } + }, + "155": { + "accessible_scopes": [ + "starkware.starknet.common.storage", + "starkware.starknet.common.storage.normalize_address" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 26, + "end_line": 51, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/starknet/common/storage.cairo" + }, + "start_col": 9, + "start_line": 51 + } + }, + "157": { + "accessible_scopes": [ + "starkware.starknet.common.storage", + "starkware.starknet.common.storage.normalize_address" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 38, + "end_line": 52, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/starknet/common/storage.cairo" + }, + "start_col": 21, + "start_line": 52 + } + }, + "159": { + "accessible_scopes": [ + "starkware.starknet.common.storage", + "starkware.starknet.common.storage.normalize_address" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 40, + "end_line": 52, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/starknet/common/storage.cairo" + }, + "start_col": 9, + "start_line": 52 + } + }, + "160": { + "accessible_scopes": [ + "starkware.starknet.common.storage", + "starkware.starknet.common.storage.normalize_address" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 24, + "end_line": 23, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/starknet/common/storage.cairo" + }, + "start_col": 9, + "start_line": 23 + } + }, + "162": { + "accessible_scopes": [ + "starkware.starknet.common.storage", + "starkware.starknet.common.storage.normalize_address" + ], + "flow_tracking_data": null, + "hints": [ + { + "location": { + "end_col": 57, + "end_line": 24, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/starknet/common/storage.cairo" + }, + "start_col": 9, + "start_line": 24 + }, + "n_prefix_newlines": 0 + } + ], + "inst": { + "end_col": 11, + "end_line": 25, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/starknet/common/storage.cairo" + }, + "start_col": 9, + "start_line": 25 + } + }, + "164": { + "accessible_scopes": [ + "starkware.starknet.common.storage", + "starkware.starknet.common.storage.normalize_address" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 21, + "end_line": 30, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/starknet/common/storage.cairo" + }, + "start_col": 13, + "start_line": 30 + } + }, + "166": { + "accessible_scopes": [ + "starkware.starknet.common.storage", + "starkware.starknet.common.storage.normalize_address" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 42, + "end_line": 32, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/starknet/common/storage.cairo" + }, + "start_col": 28, + "start_line": 32 + } + }, + "168": { + "accessible_scopes": [ + "starkware.starknet.common.storage", + "starkware.starknet.common.storage.normalize_address" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 39, + "end_line": 12, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/starknet/common/storage.cairo" + }, + "parent_location": [ + { + "end_col": 36, + "end_line": 89, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/math.cairo" + }, + "parent_location": [ + { + "end_col": 50, + "end_line": 32, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/starknet/common/storage.cairo" + }, + "start_col": 13, + "start_line": 32 + }, + "While trying to retrieve the implicit argument 'range_check_ptr' in:" + ], + "start_col": 21, + "start_line": 89 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 24, + "start_line": 12 + } + }, + "169": { + "accessible_scopes": [ + "starkware.starknet.common.storage", + "starkware.starknet.common.storage.normalize_address" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 49, + "end_line": 32, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/starknet/common/storage.cairo" + }, + "start_col": 28, + "start_line": 32 + } + }, + "170": { + "accessible_scopes": [ + "starkware.starknet.common.storage", + "starkware.starknet.common.storage.normalize_address" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 50, + "end_line": 32, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/starknet/common/storage.cairo" + }, + "start_col": 13, + "start_line": 32 + } + }, + "172": { + "accessible_scopes": [ + "starkware.starknet.common.storage", + "starkware.starknet.common.storage.normalize_address" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 11, + "end_line": 25, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/starknet/common/storage.cairo" + }, + "start_col": 9, + "start_line": 25 + } + }, + "174": { + "accessible_scopes": [ + "starkware.starknet.common.storage", + "starkware.starknet.common.storage.normalize_address" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 21, + "end_line": 26, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/starknet/common/storage.cairo" + }, + "start_col": 13, + "start_line": 26 + } + }, + "176": { + "accessible_scopes": [ + "starkware.starknet.common.storage", + "starkware.starknet.common.storage.normalize_address" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 39, + "end_line": 12, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/starknet/common/storage.cairo" + }, + "parent_location": [ + { + "end_col": 36, + "end_line": 89, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/math.cairo" + }, + "parent_location": [ + { + "end_col": 33, + "end_line": 28, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/starknet/common/storage.cairo" + }, + "start_col": 13, + "start_line": 28 + }, + "While trying to retrieve the implicit argument 'range_check_ptr' in:" + ], + "start_col": 21, + "start_line": 89 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 24, + "start_line": 12 + } + }, + "177": { + "accessible_scopes": [ + "starkware.starknet.common.storage", + "starkware.starknet.common.storage.normalize_address" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 51, + "end_line": 12, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/starknet/common/storage.cairo" + }, + "parent_location": [ + { + "end_col": 32, + "end_line": 28, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/starknet/common/storage.cairo" + }, + "start_col": 28, + "start_line": 28 + }, + "While expanding the reference 'addr' in:" + ], + "start_col": 41, + "start_line": 12 + } + }, + "178": { + "accessible_scopes": [ + "starkware.starknet.common.storage", + "starkware.starknet.common.storage.normalize_address" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 33, + "end_line": 28, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/starknet/common/storage.cairo" + }, + "start_col": 13, + "start_line": 28 + } + }, + "180": { + "accessible_scopes": [ + "starkware.starknet.common.storage", + "starkware.starknet.common.storage.normalize_address" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 51, + "end_line": 12, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/starknet/common/storage.cairo" + }, + "parent_location": [ + { + "end_col": 25, + "end_line": 34, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/starknet/common/storage.cairo" + }, + "start_col": 21, + "start_line": 34 + }, + "While expanding the reference 'addr' in:" + ], + "start_col": 41, + "start_line": 12 + } + }, + "181": { + "accessible_scopes": [ + "starkware.starknet.common.storage", + "starkware.starknet.common.storage.normalize_address" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 27, + "end_line": 34, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/starknet/common/storage.cairo" + }, + "start_col": 9, + "start_line": 34 + } + }, + "182": { + "accessible_scopes": [ + "openzeppelin.access.ownable.library", + "openzeppelin.access.ownable.library.OwnershipTransferred", + "openzeppelin.access.ownable.library.OwnershipTransferred.emit" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 14, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/event/OwnershipTransferred/8220fde17ca5479f12ae71a8036f4d354fe722f2c036da610b53511924e4ee84.cairo" + }, + "parent_location": [ + { + "end_col": 26, + "end_line": 15, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/access/ownable/library.cairo" + }, + "start_col": 6, + "start_line": 15 + }, + "While handling event:" + ], + "start_col": 1, + "start_line": 1 + } + }, + "184": { + "accessible_scopes": [ + "openzeppelin.access.ownable.library", + "openzeppelin.access.ownable.library.OwnershipTransferred", + "openzeppelin.access.ownable.library.OwnershipTransferred.emit" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 40, + "end_line": 2, + "input_file": { + "filename": "autogen/starknet/event/OwnershipTransferred/8220fde17ca5479f12ae71a8036f4d354fe722f2c036da610b53511924e4ee84.cairo" + }, + "parent_location": [ + { + "end_col": 26, + "end_line": 15, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/access/ownable/library.cairo" + }, + "start_col": 6, + "start_line": 15 + }, + "While handling event:" + ], + "start_col": 33, + "start_line": 2 + } + }, + "186": { + "accessible_scopes": [ + "openzeppelin.access.ownable.library", + "openzeppelin.access.ownable.library.OwnershipTransferred", + "openzeppelin.access.ownable.library.OwnershipTransferred.emit" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 29, + "end_line": 2, + "input_file": { + "filename": "autogen/starknet/event/OwnershipTransferred/8220fde17ca5479f12ae71a8036f4d354fe722f2c036da610b53511924e4ee84.cairo" + }, + "parent_location": [ + { + "end_col": 26, + "end_line": 15, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/access/ownable/library.cairo" + }, + "start_col": 6, + "start_line": 15 + }, + "While handling event:" + ], + "start_col": 6, + "start_line": 2 + } + }, + "187": { + "accessible_scopes": [ + "openzeppelin.access.ownable.library", + "openzeppelin.access.ownable.library.OwnershipTransferred", + "openzeppelin.access.ownable.library.OwnershipTransferred.emit" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 31, + "end_line": 3, + "input_file": { + "filename": "autogen/starknet/event/OwnershipTransferred/8220fde17ca5479f12ae71a8036f4d354fe722f2c036da610b53511924e4ee84.cairo" + }, + "parent_location": [ + { + "end_col": 26, + "end_line": 15, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/access/ownable/library.cairo" + }, + "start_col": 6, + "start_line": 15 + }, + "While handling event:" + ], + "start_col": 23, + "start_line": 3 + } + }, + "189": { + "accessible_scopes": [ + "openzeppelin.access.ownable.library", + "openzeppelin.access.ownable.library.OwnershipTransferred", + "openzeppelin.access.ownable.library.OwnershipTransferred.emit" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 32, + "end_line": 3, + "input_file": { + "filename": "autogen/starknet/event/OwnershipTransferred/8220fde17ca5479f12ae71a8036f4d354fe722f2c036da610b53511924e4ee84.cairo" + }, + "parent_location": [ + { + "end_col": 26, + "end_line": 15, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/access/ownable/library.cairo" + }, + "start_col": 6, + "start_line": 15 + }, + "While handling event:" + ], + "start_col": 1, + "start_line": 3 + } + }, + "190": { + "accessible_scopes": [ + "openzeppelin.access.ownable.library", + "openzeppelin.access.ownable.library.OwnershipTransferred", + "openzeppelin.access.ownable.library.OwnershipTransferred.emit" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 40, + "end_line": 4, + "input_file": { + "filename": "autogen/starknet/event/OwnershipTransferred/8220fde17ca5479f12ae71a8036f4d354fe722f2c036da610b53511924e4ee84.cairo" + }, + "parent_location": [ + { + "end_col": 26, + "end_line": 15, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/access/ownable/library.cairo" + }, + "start_col": 6, + "start_line": 15 + }, + "While handling event:" + ], + "start_col": 33, + "start_line": 4 + } + }, + "192": { + "accessible_scopes": [ + "openzeppelin.access.ownable.library", + "openzeppelin.access.ownable.library.OwnershipTransferred", + "openzeppelin.access.ownable.library.OwnershipTransferred.emit" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 29, + "end_line": 4, + "input_file": { + "filename": "autogen/starknet/event/OwnershipTransferred/8220fde17ca5479f12ae71a8036f4d354fe722f2c036da610b53511924e4ee84.cairo" + }, + "parent_location": [ + { + "end_col": 26, + "end_line": 15, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/access/ownable/library.cairo" + }, + "start_col": 6, + "start_line": 15 + }, + "While handling event:" + ], + "start_col": 6, + "start_line": 4 + } + }, + "193": { + "accessible_scopes": [ + "openzeppelin.access.ownable.library", + "openzeppelin.access.ownable.library.OwnershipTransferred", + "openzeppelin.access.ownable.library.OwnershipTransferred.emit" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 41, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/arg_processor/e2129a0023ce5f9e4c3de1d6fb100b2688dccff4a2ed2082db4a311f35c53e21.cairo" + }, + "parent_location": [ + { + "end_col": 40, + "end_line": 15, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/access/ownable/library.cairo" + }, + "start_col": 27, + "start_line": 15 + }, + "While handling calldata argument 'previousOwner'" + ], + "start_col": 1, + "start_line": 1 + } + }, + "194": { + "accessible_scopes": [ + "openzeppelin.access.ownable.library", + "openzeppelin.access.ownable.library.OwnershipTransferred", + "openzeppelin.access.ownable.library.OwnershipTransferred.emit" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 36, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/arg_processor/445d818b0524d35ae3e73b7abec41731d1445f0ce6866ec5a3a8a871521799a0.cairo" + }, + "parent_location": [ + { + "end_col": 56, + "end_line": 15, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/access/ownable/library.cairo" + }, + "start_col": 48, + "start_line": 15 + }, + "While handling calldata argument 'newOwner'" + ], + "start_col": 1, + "start_line": 1 + } + }, + "195": { + "accessible_scopes": [ + "openzeppelin.access.ownable.library", + "openzeppelin.access.ownable.library.OwnershipTransferred", + "openzeppelin.access.ownable.library.OwnershipTransferred.emit" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 40, + "end_line": 2, + "input_file": { + "filename": "autogen/starknet/arg_processor/445d818b0524d35ae3e73b7abec41731d1445f0ce6866ec5a3a8a871521799a0.cairo" + }, + "parent_location": [ + { + "end_col": 56, + "end_line": 15, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/access/ownable/library.cairo" + }, + "parent_location": [ + { + "end_col": 64, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/event/OwnershipTransferred/6150feec30bd48bfd0f446ed8c155a6d911a2c3fb3ec7a980733900416819259.cairo" + }, + "parent_location": [ + { + "end_col": 26, + "end_line": 15, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/access/ownable/library.cairo" + }, + "start_col": 6, + "start_line": 15 + }, + "While handling event:" + ], + "start_col": 50, + "start_line": 1 + }, + "While expanding the reference '__calldata_ptr' in:" + ], + "start_col": 48, + "start_line": 15 + }, + "While handling calldata argument 'newOwner'" + ], + "start_col": 22, + "start_line": 2 + } + }, + "197": { + "accessible_scopes": [ + "openzeppelin.access.ownable.library", + "openzeppelin.access.ownable.library.OwnershipTransferred", + "openzeppelin.access.ownable.library.OwnershipTransferred.emit" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 29, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/event/OwnershipTransferred/a7a8ae41be29ac9f4f6c3b7837c448d787ca051dd1ade98f409e54d33d112504.cairo" + }, + "parent_location": [ + { + "end_col": 26, + "end_line": 15, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/access/ownable/library.cairo" + }, + "parent_location": [ + { + "end_col": 35, + "end_line": 390, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/starknet/common/syscalls.cairo" + }, + "parent_location": [ + { + "end_col": 95, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/event/OwnershipTransferred/6150feec30bd48bfd0f446ed8c155a6d911a2c3fb3ec7a980733900416819259.cairo" + }, + "parent_location": [ + { + "end_col": 26, + "end_line": 15, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/access/ownable/library.cairo" + }, + "start_col": 6, + "start_line": 15 + }, + "While handling event:" + ], + "start_col": 1, + "start_line": 1 + }, + "While trying to retrieve the implicit argument 'syscall_ptr' in:" + ], + "start_col": 17, + "start_line": 390 + }, + "While expanding the reference 'syscall_ptr' in:" + ], + "start_col": 6, + "start_line": 15 + }, + "While handling event:" + ], + "start_col": 11, + "start_line": 1 + } + }, + "198": { + "accessible_scopes": [ + "openzeppelin.access.ownable.library", + "openzeppelin.access.ownable.library.OwnershipTransferred", + "openzeppelin.access.ownable.library.OwnershipTransferred.emit" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 22, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/event/OwnershipTransferred/6150feec30bd48bfd0f446ed8c155a6d911a2c3fb3ec7a980733900416819259.cairo" + }, + "parent_location": [ + { + "end_col": 26, + "end_line": 15, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/access/ownable/library.cairo" + }, + "start_col": 6, + "start_line": 15 + }, + "While handling event:" + ], + "start_col": 21, + "start_line": 1 + } + }, + "200": { + "accessible_scopes": [ + "openzeppelin.access.ownable.library", + "openzeppelin.access.ownable.library.OwnershipTransferred", + "openzeppelin.access.ownable.library.OwnershipTransferred.emit" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 22, + "end_line": 2, + "input_file": { + "filename": "autogen/starknet/event/OwnershipTransferred/8220fde17ca5479f12ae71a8036f4d354fe722f2c036da610b53511924e4ee84.cairo" + }, + "parent_location": [ + { + "end_col": 26, + "end_line": 15, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/access/ownable/library.cairo" + }, + "parent_location": [ + { + "end_col": 39, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/event/OwnershipTransferred/6150feec30bd48bfd0f446ed8c155a6d911a2c3fb3ec7a980733900416819259.cairo" + }, + "parent_location": [ + { + "end_col": 26, + "end_line": 15, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/access/ownable/library.cairo" + }, + "start_col": 6, + "start_line": 15 + }, + "While handling event:" + ], + "start_col": 29, + "start_line": 1 + }, + "While expanding the reference '__keys_ptr' in:" + ], + "start_col": 6, + "start_line": 15 + }, + "While handling event:" + ], + "start_col": 12, + "start_line": 2 + } + }, + "201": { + "accessible_scopes": [ + "openzeppelin.access.ownable.library", + "openzeppelin.access.ownable.library.OwnershipTransferred", + "openzeppelin.access.ownable.library.OwnershipTransferred.emit" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 77, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/event/OwnershipTransferred/6150feec30bd48bfd0f446ed8c155a6d911a2c3fb3ec7a980733900416819259.cairo" + }, + "parent_location": [ + { + "end_col": 26, + "end_line": 15, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/access/ownable/library.cairo" + }, + "start_col": 6, + "start_line": 15 + }, + "While handling event:" + ], + "start_col": 50, + "start_line": 1 + } + }, + "202": { + "accessible_scopes": [ + "openzeppelin.access.ownable.library", + "openzeppelin.access.ownable.library.OwnershipTransferred", + "openzeppelin.access.ownable.library.OwnershipTransferred.emit" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 22, + "end_line": 4, + "input_file": { + "filename": "autogen/starknet/event/OwnershipTransferred/8220fde17ca5479f12ae71a8036f4d354fe722f2c036da610b53511924e4ee84.cairo" + }, + "parent_location": [ + { + "end_col": 26, + "end_line": 15, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/access/ownable/library.cairo" + }, + "parent_location": [ + { + "end_col": 94, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/event/OwnershipTransferred/6150feec30bd48bfd0f446ed8c155a6d911a2c3fb3ec7a980733900416819259.cairo" + }, + "parent_location": [ + { + "end_col": 26, + "end_line": 15, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/access/ownable/library.cairo" + }, + "start_col": 6, + "start_line": 15 + }, + "While handling event:" + ], + "start_col": 84, + "start_line": 1 + }, + "While expanding the reference '__data_ptr' in:" + ], + "start_col": 6, + "start_line": 15 + }, + "While handling event:" + ], + "start_col": 12, + "start_line": 4 + } + }, + "203": { + "accessible_scopes": [ + "openzeppelin.access.ownable.library", + "openzeppelin.access.ownable.library.OwnershipTransferred", + "openzeppelin.access.ownable.library.OwnershipTransferred.emit" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 95, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/event/OwnershipTransferred/6150feec30bd48bfd0f446ed8c155a6d911a2c3fb3ec7a980733900416819259.cairo" + }, + "parent_location": [ + { + "end_col": 26, + "end_line": 15, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/access/ownable/library.cairo" + }, + "start_col": 6, + "start_line": 15 + }, + "While handling event:" + ], + "start_col": 1, + "start_line": 1 + } + }, + "205": { + "accessible_scopes": [ + "openzeppelin.access.ownable.library", + "openzeppelin.access.ownable.library.OwnershipTransferred", + "openzeppelin.access.ownable.library.OwnershipTransferred.emit" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 46, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/event/OwnershipTransferred/a7a8ae41be29ac9f4f6c3b7837c448d787ca051dd1ade98f409e54d33d112504.cairo" + }, + "parent_location": [ + { + "end_col": 26, + "end_line": 15, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/access/ownable/library.cairo" + }, + "parent_location": [ + { + "end_col": 46, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/event/OwnershipTransferred/a7a8ae41be29ac9f4f6c3b7837c448d787ca051dd1ade98f409e54d33d112504.cairo" + }, + "parent_location": [ + { + "end_col": 26, + "end_line": 15, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/access/ownable/library.cairo" + }, + "parent_location": [ + { + "end_col": 11, + "end_line": 2, + "input_file": { + "filename": "autogen/starknet/event/OwnershipTransferred/6150feec30bd48bfd0f446ed8c155a6d911a2c3fb3ec7a980733900416819259.cairo" + }, + "parent_location": [ + { + "end_col": 26, + "end_line": 15, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/access/ownable/library.cairo" + }, + "start_col": 6, + "start_line": 15 + }, + "While handling event:" + ], + "start_col": 1, + "start_line": 2 + }, + "While trying to retrieve the implicit argument 'range_check_ptr' in:" + ], + "start_col": 6, + "start_line": 15 + }, + "While handling event:" + ], + "start_col": 31, + "start_line": 1 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 6, + "start_line": 15 + }, + "While handling event:" + ], + "start_col": 31, + "start_line": 1 + } + }, + "206": { + "accessible_scopes": [ + "openzeppelin.access.ownable.library", + "openzeppelin.access.ownable.library.OwnershipTransferred", + "openzeppelin.access.ownable.library.OwnershipTransferred.emit" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 11, + "end_line": 2, + "input_file": { + "filename": "autogen/starknet/event/OwnershipTransferred/6150feec30bd48bfd0f446ed8c155a6d911a2c3fb3ec7a980733900416819259.cairo" + }, + "parent_location": [ + { + "end_col": 26, + "end_line": 15, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/access/ownable/library.cairo" + }, + "start_col": 6, + "start_line": 15 + }, + "While handling event:" + ], + "start_col": 1, + "start_line": 2 + } + }, + "207": { + "accessible_scopes": [ + "openzeppelin.access.ownable.library", + "openzeppelin.access.ownable.library.Ownable_owner", + "openzeppelin.access.ownable.library.Ownable_owner.addr" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 41, + "end_line": 7, + "input_file": { + "filename": "autogen/starknet/storage_var/Ownable_owner/impl.cairo" + }, + "parent_location": [ + { + "end_col": 41, + "end_line": 7, + "input_file": { + "filename": "autogen/starknet/storage_var/Ownable_owner/decl.cairo" + }, + "parent_location": [ + { + "end_col": 26, + "end_line": 9, + "input_file": { + "filename": "autogen/starknet/storage_var/Ownable_owner/impl.cairo" + }, + "start_col": 9, + "start_line": 9 + }, + "While trying to retrieve the implicit argument 'pedersen_ptr' in:" + ], + "start_col": 15, + "start_line": 7 + }, + "While expanding the reference 'pedersen_ptr' in:" + ], + "start_col": 15, + "start_line": 7 + } + }, + "208": { + "accessible_scopes": [ + "openzeppelin.access.ownable.library", + "openzeppelin.access.ownable.library.Ownable_owner", + "openzeppelin.access.ownable.library.Ownable_owner.addr" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 58, + "end_line": 7, + "input_file": { + "filename": "autogen/starknet/storage_var/Ownable_owner/impl.cairo" + }, + "parent_location": [ + { + "end_col": 58, + "end_line": 7, + "input_file": { + "filename": "autogen/starknet/storage_var/Ownable_owner/decl.cairo" + }, + "parent_location": [ + { + "end_col": 26, + "end_line": 9, + "input_file": { + "filename": "autogen/starknet/storage_var/Ownable_owner/impl.cairo" + }, + "start_col": 9, + "start_line": 9 + }, + "While trying to retrieve the implicit argument 'range_check_ptr' in:" + ], + "start_col": 43, + "start_line": 7 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 43, + "start_line": 7 + } + }, + "209": { + "accessible_scopes": [ + "openzeppelin.access.ownable.library", + "openzeppelin.access.ownable.library.Ownable_owner", + "openzeppelin.access.ownable.library.Ownable_owner.addr" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 95, + "end_line": 8, + "input_file": { + "filename": "autogen/starknet/storage_var/Ownable_owner/impl.cairo" + }, + "parent_location": [ + { + "end_col": 24, + "end_line": 9, + "input_file": { + "filename": "autogen/starknet/storage_var/Ownable_owner/impl.cairo" + }, + "start_col": 21, + "start_line": 9 + }, + "While expanding the reference 'res' in:" + ], + "start_col": 19, + "start_line": 8 + } + }, + "211": { + "accessible_scopes": [ + "openzeppelin.access.ownable.library", + "openzeppelin.access.ownable.library.Ownable_owner", + "openzeppelin.access.ownable.library.Ownable_owner.addr" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 26, + "end_line": 9, + "input_file": { + "filename": "autogen/starknet/storage_var/Ownable_owner/impl.cairo" + }, + "start_col": 9, + "start_line": 9 + } + }, + "212": { + "accessible_scopes": [ + "openzeppelin.access.ownable.library", + "openzeppelin.access.ownable.library.Ownable_owner", + "openzeppelin.access.ownable.library.Ownable_owner.read" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 61, + "end_line": 12, + "input_file": { + "filename": "autogen/starknet/storage_var/Ownable_owner/impl.cairo" + }, + "parent_location": [ + { + "end_col": 41, + "end_line": 7, + "input_file": { + "filename": "autogen/starknet/storage_var/Ownable_owner/decl.cairo" + }, + "parent_location": [ + { + "end_col": 36, + "end_line": 13, + "input_file": { + "filename": "autogen/starknet/storage_var/Ownable_owner/impl.cairo" + }, + "start_col": 30, + "start_line": 13 + }, + "While trying to retrieve the implicit argument 'pedersen_ptr' in:" + ], + "start_col": 15, + "start_line": 7 + }, + "While expanding the reference 'pedersen_ptr' in:" + ], + "start_col": 35, + "start_line": 12 + } + }, + "213": { + "accessible_scopes": [ + "openzeppelin.access.ownable.library", + "openzeppelin.access.ownable.library.Ownable_owner", + "openzeppelin.access.ownable.library.Ownable_owner.read" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 78, + "end_line": 12, + "input_file": { + "filename": "autogen/starknet/storage_var/Ownable_owner/impl.cairo" + }, + "parent_location": [ + { + "end_col": 58, + "end_line": 7, + "input_file": { + "filename": "autogen/starknet/storage_var/Ownable_owner/decl.cairo" + }, + "parent_location": [ + { + "end_col": 36, + "end_line": 13, + "input_file": { + "filename": "autogen/starknet/storage_var/Ownable_owner/impl.cairo" + }, + "start_col": 30, + "start_line": 13 + }, + "While trying to retrieve the implicit argument 'range_check_ptr' in:" + ], + "start_col": 43, + "start_line": 7 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 63, + "start_line": 12 + } + }, + "214": { + "accessible_scopes": [ + "openzeppelin.access.ownable.library", + "openzeppelin.access.ownable.library.Ownable_owner", + "openzeppelin.access.ownable.library.Ownable_owner.read" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 36, + "end_line": 13, + "input_file": { + "filename": "autogen/starknet/storage_var/Ownable_owner/impl.cairo" + }, + "start_col": 30, + "start_line": 13 + } + }, + "216": { + "accessible_scopes": [ + "openzeppelin.access.ownable.library", + "openzeppelin.access.ownable.library.Ownable_owner", + "openzeppelin.access.ownable.library.Ownable_owner.read" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 33, + "end_line": 12, + "input_file": { + "filename": "autogen/starknet/storage_var/Ownable_owner/impl.cairo" + }, + "parent_location": [ + { + "end_col": 37, + "end_line": 352, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/starknet/common/syscalls.cairo" + }, + "parent_location": [ + { + "end_col": 75, + "end_line": 14, + "input_file": { + "filename": "autogen/starknet/storage_var/Ownable_owner/impl.cairo" + }, + "start_col": 37, + "start_line": 14 + }, + "While trying to retrieve the implicit argument 'syscall_ptr' in:" + ], + "start_col": 19, + "start_line": 352 + }, + "While expanding the reference 'syscall_ptr' in:" + ], + "start_col": 15, + "start_line": 12 + } + }, + "217": { + "accessible_scopes": [ + "openzeppelin.access.ownable.library", + "openzeppelin.access.ownable.library.Ownable_owner", + "openzeppelin.access.ownable.library.Ownable_owner.read" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 26, + "end_line": 13, + "input_file": { + "filename": "autogen/starknet/storage_var/Ownable_owner/impl.cairo" + }, + "parent_location": [ + { + "end_col": 70, + "end_line": 14, + "input_file": { + "filename": "autogen/starknet/storage_var/Ownable_owner/impl.cairo" + }, + "start_col": 58, + "start_line": 14 + }, + "While expanding the reference 'storage_addr' in:" + ], + "start_col": 14, + "start_line": 13 + } + }, + "218": { + "accessible_scopes": [ + "openzeppelin.access.ownable.library", + "openzeppelin.access.ownable.library.Ownable_owner", + "openzeppelin.access.ownable.library.Ownable_owner.read" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 75, + "end_line": 14, + "input_file": { + "filename": "autogen/starknet/storage_var/Ownable_owner/impl.cairo" + }, + "start_col": 37, + "start_line": 14 + } + }, + "220": { + "accessible_scopes": [ + "openzeppelin.access.ownable.library", + "openzeppelin.access.ownable.library.Ownable_owner", + "openzeppelin.access.ownable.library.Ownable_owner.read" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 37, + "end_line": 352, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/starknet/common/syscalls.cairo" + }, + "parent_location": [ + { + "end_col": 75, + "end_line": 14, + "input_file": { + "filename": "autogen/starknet/storage_var/Ownable_owner/impl.cairo" + }, + "parent_location": [ + { + "end_col": 42, + "end_line": 16, + "input_file": { + "filename": "autogen/starknet/storage_var/Ownable_owner/impl.cairo" + }, + "start_col": 31, + "start_line": 16 + }, + "While expanding the reference 'syscall_ptr' in:" + ], + "start_col": 37, + "start_line": 14 + }, + "While trying to update the implicit return value 'syscall_ptr' in:" + ], + "start_col": 19, + "start_line": 352 + } + }, + "221": { + "accessible_scopes": [ + "openzeppelin.access.ownable.library", + "openzeppelin.access.ownable.library.Ownable_owner", + "openzeppelin.access.ownable.library.Ownable_owner.read" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 41, + "end_line": 7, + "input_file": { + "filename": "autogen/starknet/storage_var/Ownable_owner/decl.cairo" + }, + "parent_location": [ + { + "end_col": 36, + "end_line": 13, + "input_file": { + "filename": "autogen/starknet/storage_var/Ownable_owner/impl.cairo" + }, + "parent_location": [ + { + "end_col": 44, + "end_line": 17, + "input_file": { + "filename": "autogen/starknet/storage_var/Ownable_owner/impl.cairo" + }, + "start_col": 32, + "start_line": 17 + }, + "While expanding the reference 'pedersen_ptr' in:" + ], + "start_col": 30, + "start_line": 13 + }, + "While trying to update the implicit return value 'pedersen_ptr' in:" + ], + "start_col": 15, + "start_line": 7 + } + }, + "222": { + "accessible_scopes": [ + "openzeppelin.access.ownable.library", + "openzeppelin.access.ownable.library.Ownable_owner", + "openzeppelin.access.ownable.library.Ownable_owner.read" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 58, + "end_line": 7, + "input_file": { + "filename": "autogen/starknet/storage_var/Ownable_owner/decl.cairo" + }, + "parent_location": [ + { + "end_col": 36, + "end_line": 13, + "input_file": { + "filename": "autogen/starknet/storage_var/Ownable_owner/impl.cairo" + }, + "parent_location": [ + { + "end_col": 50, + "end_line": 18, + "input_file": { + "filename": "autogen/starknet/storage_var/Ownable_owner/impl.cairo" + }, + "start_col": 35, + "start_line": 18 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 30, + "start_line": 13 + }, + "While trying to update the implicit return value 'range_check_ptr' in:" + ], + "start_col": 43, + "start_line": 7 + } + }, + "223": { + "accessible_scopes": [ + "openzeppelin.access.ownable.library", + "openzeppelin.access.ownable.library.Ownable_owner", + "openzeppelin.access.ownable.library.Ownable_owner.read" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 33, + "end_line": 14, + "input_file": { + "filename": "autogen/starknet/storage_var/Ownable_owner/impl.cairo" + }, + "parent_location": [ + { + "end_col": 64, + "end_line": 19, + "input_file": { + "filename": "autogen/starknet/storage_var/Ownable_owner/impl.cairo" + }, + "start_col": 45, + "start_line": 19 + }, + "While expanding the reference '__storage_var_temp0' in:" + ], + "start_col": 14, + "start_line": 14 + } + }, + "224": { + "accessible_scopes": [ + "openzeppelin.access.ownable.library", + "openzeppelin.access.ownable.library.Ownable_owner", + "openzeppelin.access.ownable.library.Ownable_owner.read" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 55, + "end_line": 20, + "input_file": { + "filename": "autogen/starknet/storage_var/Ownable_owner/impl.cairo" + }, + "start_col": 9, + "start_line": 20 + } + }, + "225": { + "accessible_scopes": [ + "openzeppelin.access.ownable.library", + "openzeppelin.access.ownable.library.Ownable_owner", + "openzeppelin.access.ownable.library.Ownable_owner.write" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 62, + "end_line": 23, + "input_file": { + "filename": "autogen/starknet/storage_var/Ownable_owner/impl.cairo" + }, + "parent_location": [ + { + "end_col": 41, + "end_line": 7, + "input_file": { + "filename": "autogen/starknet/storage_var/Ownable_owner/decl.cairo" + }, + "parent_location": [ + { + "end_col": 36, + "end_line": 24, + "input_file": { + "filename": "autogen/starknet/storage_var/Ownable_owner/impl.cairo" + }, + "start_col": 30, + "start_line": 24 + }, + "While trying to retrieve the implicit argument 'pedersen_ptr' in:" + ], + "start_col": 15, + "start_line": 7 + }, + "While expanding the reference 'pedersen_ptr' in:" + ], + "start_col": 36, + "start_line": 23 + } + }, + "226": { + "accessible_scopes": [ + "openzeppelin.access.ownable.library", + "openzeppelin.access.ownable.library.Ownable_owner", + "openzeppelin.access.ownable.library.Ownable_owner.write" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 79, + "end_line": 23, + "input_file": { + "filename": "autogen/starknet/storage_var/Ownable_owner/impl.cairo" + }, + "parent_location": [ + { + "end_col": 58, + "end_line": 7, + "input_file": { + "filename": "autogen/starknet/storage_var/Ownable_owner/decl.cairo" + }, + "parent_location": [ + { + "end_col": 36, + "end_line": 24, + "input_file": { + "filename": "autogen/starknet/storage_var/Ownable_owner/impl.cairo" + }, + "start_col": 30, + "start_line": 24 + }, + "While trying to retrieve the implicit argument 'range_check_ptr' in:" + ], + "start_col": 43, + "start_line": 7 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 64, + "start_line": 23 + } + }, + "227": { + "accessible_scopes": [ + "openzeppelin.access.ownable.library", + "openzeppelin.access.ownable.library.Ownable_owner", + "openzeppelin.access.ownable.library.Ownable_owner.write" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 36, + "end_line": 24, + "input_file": { + "filename": "autogen/starknet/storage_var/Ownable_owner/impl.cairo" + }, + "start_col": 30, + "start_line": 24 + } + }, + "229": { + "accessible_scopes": [ + "openzeppelin.access.ownable.library", + "openzeppelin.access.ownable.library.Ownable_owner", + "openzeppelin.access.ownable.library.Ownable_owner.write" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 34, + "end_line": 23, + "input_file": { + "filename": "autogen/starknet/storage_var/Ownable_owner/impl.cairo" + }, + "parent_location": [ + { + "end_col": 38, + "end_line": 370, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/starknet/common/syscalls.cairo" + }, + "parent_location": [ + { + "end_col": 80, + "end_line": 25, + "input_file": { + "filename": "autogen/starknet/storage_var/Ownable_owner/impl.cairo" + }, + "start_col": 9, + "start_line": 25 + }, + "While trying to retrieve the implicit argument 'syscall_ptr' in:" + ], + "start_col": 20, + "start_line": 370 + }, + "While expanding the reference 'syscall_ptr' in:" + ], + "start_col": 16, + "start_line": 23 + } + }, + "230": { + "accessible_scopes": [ + "openzeppelin.access.ownable.library", + "openzeppelin.access.ownable.library.Ownable_owner", + "openzeppelin.access.ownable.library.Ownable_owner.write" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 26, + "end_line": 24, + "input_file": { + "filename": "autogen/starknet/storage_var/Ownable_owner/impl.cairo" + }, + "parent_location": [ + { + "end_col": 43, + "end_line": 25, + "input_file": { + "filename": "autogen/starknet/storage_var/Ownable_owner/impl.cairo" + }, + "start_col": 31, + "start_line": 25 + }, + "While expanding the reference 'storage_addr' in:" + ], + "start_col": 14, + "start_line": 24 + } + }, + "231": { + "accessible_scopes": [ + "openzeppelin.access.ownable.library", + "openzeppelin.access.ownable.library.Ownable_owner", + "openzeppelin.access.ownable.library.Ownable_owner.write" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 79, + "end_line": 25, + "input_file": { + "filename": "autogen/starknet/storage_var/Ownable_owner/impl.cairo" + }, + "start_col": 55, + "start_line": 25 + } + }, + "232": { + "accessible_scopes": [ + "openzeppelin.access.ownable.library", + "openzeppelin.access.ownable.library.Ownable_owner", + "openzeppelin.access.ownable.library.Ownable_owner.write" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 80, + "end_line": 25, + "input_file": { + "filename": "autogen/starknet/storage_var/Ownable_owner/impl.cairo" + }, + "start_col": 9, + "start_line": 25 + } + }, + "234": { + "accessible_scopes": [ + "openzeppelin.access.ownable.library", + "openzeppelin.access.ownable.library.Ownable_owner", + "openzeppelin.access.ownable.library.Ownable_owner.write" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 41, + "end_line": 7, + "input_file": { + "filename": "autogen/starknet/storage_var/Ownable_owner/decl.cairo" + }, + "parent_location": [ + { + "end_col": 36, + "end_line": 24, + "input_file": { + "filename": "autogen/starknet/storage_var/Ownable_owner/impl.cairo" + }, + "parent_location": [ + { + "end_col": 62, + "end_line": 19, + "input_file": { + "filename": "autogen/starknet/storage_var/Ownable_owner/decl.cairo" + }, + "parent_location": [ + { + "end_col": 19, + "end_line": 26, + "input_file": { + "filename": "autogen/starknet/storage_var/Ownable_owner/impl.cairo" + }, + "start_col": 9, + "start_line": 26 + }, + "While trying to retrieve the implicit argument 'pedersen_ptr' in:" + ], + "start_col": 36, + "start_line": 19 + }, + "While expanding the reference 'pedersen_ptr' in:" + ], + "start_col": 30, + "start_line": 24 + }, + "While trying to update the implicit return value 'pedersen_ptr' in:" + ], + "start_col": 15, + "start_line": 7 + } + }, + "235": { + "accessible_scopes": [ + "openzeppelin.access.ownable.library", + "openzeppelin.access.ownable.library.Ownable_owner", + "openzeppelin.access.ownable.library.Ownable_owner.write" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 58, + "end_line": 7, + "input_file": { + "filename": "autogen/starknet/storage_var/Ownable_owner/decl.cairo" + }, + "parent_location": [ + { + "end_col": 36, + "end_line": 24, + "input_file": { + "filename": "autogen/starknet/storage_var/Ownable_owner/impl.cairo" + }, + "parent_location": [ + { + "end_col": 79, + "end_line": 19, + "input_file": { + "filename": "autogen/starknet/storage_var/Ownable_owner/decl.cairo" + }, + "parent_location": [ + { + "end_col": 19, + "end_line": 26, + "input_file": { + "filename": "autogen/starknet/storage_var/Ownable_owner/impl.cairo" + }, + "start_col": 9, + "start_line": 26 + }, + "While trying to retrieve the implicit argument 'range_check_ptr' in:" + ], + "start_col": 64, + "start_line": 19 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 30, + "start_line": 24 + }, + "While trying to update the implicit return value 'range_check_ptr' in:" + ], + "start_col": 43, + "start_line": 7 + } + }, + "236": { + "accessible_scopes": [ + "openzeppelin.access.ownable.library", + "openzeppelin.access.ownable.library.Ownable_owner", + "openzeppelin.access.ownable.library.Ownable_owner.write" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 19, + "end_line": 26, + "input_file": { + "filename": "autogen/starknet/storage_var/Ownable_owner/impl.cairo" + }, + "start_col": 9, + "start_line": 26 + } + }, + "237": { + "accessible_scopes": [ + "openzeppelin.access.ownable.library", + "openzeppelin.access.ownable.library.Ownable", + "openzeppelin.access.ownable.library.Ownable.initializer" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 40, + "end_line": 31, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/access/ownable/library.cairo" + }, + "parent_location": [ + { + "end_col": 48, + "end_line": 81, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/access/ownable/library.cairo" + }, + "parent_location": [ + { + "end_col": 35, + "end_line": 32, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/access/ownable/library.cairo" + }, + "start_col": 9, + "start_line": 32 + }, + "While trying to retrieve the implicit argument 'syscall_ptr' in:" + ], + "start_col": 30, + "start_line": 81 + }, + "While expanding the reference 'syscall_ptr' in:" + ], + "start_col": 22, + "start_line": 31 + } + }, + "238": { + "accessible_scopes": [ + "openzeppelin.access.ownable.library", + "openzeppelin.access.ownable.library.Ownable", + "openzeppelin.access.ownable.library.Ownable.initializer" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 68, + "end_line": 31, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/access/ownable/library.cairo" + }, + "parent_location": [ + { + "end_col": 76, + "end_line": 81, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/access/ownable/library.cairo" + }, + "parent_location": [ + { + "end_col": 35, + "end_line": 32, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/access/ownable/library.cairo" + }, + "start_col": 9, + "start_line": 32 + }, + "While trying to retrieve the implicit argument 'pedersen_ptr' in:" + ], + "start_col": 50, + "start_line": 81 + }, + "While expanding the reference 'pedersen_ptr' in:" + ], + "start_col": 42, + "start_line": 31 + } + }, + "239": { + "accessible_scopes": [ + "openzeppelin.access.ownable.library", + "openzeppelin.access.ownable.library.Ownable", + "openzeppelin.access.ownable.library.Ownable.initializer" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 85, + "end_line": 31, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/access/ownable/library.cairo" + }, + "parent_location": [ + { + "end_col": 93, + "end_line": 81, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/access/ownable/library.cairo" + }, + "parent_location": [ + { + "end_col": 35, + "end_line": 32, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/access/ownable/library.cairo" + }, + "start_col": 9, + "start_line": 32 + }, + "While trying to retrieve the implicit argument 'range_check_ptr' in:" + ], + "start_col": 78, + "start_line": 81 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 70, + "start_line": 31 + } + }, + "240": { + "accessible_scopes": [ + "openzeppelin.access.ownable.library", + "openzeppelin.access.ownable.library.Ownable", + "openzeppelin.access.ownable.library.Ownable.initializer" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 98, + "end_line": 31, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/access/ownable/library.cairo" + }, + "parent_location": [ + { + "end_col": 34, + "end_line": 32, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/access/ownable/library.cairo" + }, + "start_col": 29, + "start_line": 32 + }, + "While expanding the reference 'owner' in:" + ], + "start_col": 87, + "start_line": 31 + } + }, + "241": { + "accessible_scopes": [ + "openzeppelin.access.ownable.library", + "openzeppelin.access.ownable.library.Ownable", + "openzeppelin.access.ownable.library.Ownable.initializer" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 35, + "end_line": 32, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/access/ownable/library.cairo" + }, + "start_col": 9, + "start_line": 32 + } + }, + "243": { + "accessible_scopes": [ + "openzeppelin.access.ownable.library", + "openzeppelin.access.ownable.library.Ownable", + "openzeppelin.access.ownable.library.Ownable.initializer" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 19, + "end_line": 33, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/access/ownable/library.cairo" + }, + "start_col": 9, + "start_line": 33 + } + }, + "244": { + "accessible_scopes": [ + "openzeppelin.access.ownable.library", + "openzeppelin.access.ownable.library.Ownable", + "openzeppelin.access.ownable.library.Ownable.assert_only_owner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 46, + "end_line": 40, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/access/ownable/library.cairo" + }, + "parent_location": [ + { + "end_col": 34, + "end_line": 56, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/access/ownable/library.cairo" + }, + "parent_location": [ + { + "end_col": 38, + "end_line": 41, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/access/ownable/library.cairo" + }, + "start_col": 23, + "start_line": 41 + }, + "While trying to retrieve the implicit argument 'syscall_ptr' in:" + ], + "start_col": 16, + "start_line": 56 + }, + "While expanding the reference 'syscall_ptr' in:" + ], + "start_col": 28, + "start_line": 40 + } + }, + "245": { + "accessible_scopes": [ + "openzeppelin.access.ownable.library", + "openzeppelin.access.ownable.library.Ownable", + "openzeppelin.access.ownable.library.Ownable.assert_only_owner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 74, + "end_line": 40, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/access/ownable/library.cairo" + }, + "parent_location": [ + { + "end_col": 62, + "end_line": 56, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/access/ownable/library.cairo" + }, + "parent_location": [ + { + "end_col": 38, + "end_line": 41, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/access/ownable/library.cairo" + }, + "start_col": 23, + "start_line": 41 + }, + "While trying to retrieve the implicit argument 'pedersen_ptr' in:" + ], + "start_col": 36, + "start_line": 56 + }, + "While expanding the reference 'pedersen_ptr' in:" + ], + "start_col": 48, + "start_line": 40 + } + }, + "246": { + "accessible_scopes": [ + "openzeppelin.access.ownable.library", + "openzeppelin.access.ownable.library.Ownable", + "openzeppelin.access.ownable.library.Ownable.assert_only_owner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 91, + "end_line": 40, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/access/ownable/library.cairo" + }, + "parent_location": [ + { + "end_col": 79, + "end_line": 56, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/access/ownable/library.cairo" + }, + "parent_location": [ + { + "end_col": 38, + "end_line": 41, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/access/ownable/library.cairo" + }, + "start_col": 23, + "start_line": 41 + }, + "While trying to retrieve the implicit argument 'range_check_ptr' in:" + ], + "start_col": 64, + "start_line": 56 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 76, + "start_line": 40 + } + }, + "247": { + "accessible_scopes": [ + "openzeppelin.access.ownable.library", + "openzeppelin.access.ownable.library.Ownable", + "openzeppelin.access.ownable.library.Ownable.assert_only_owner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 38, + "end_line": 41, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/access/ownable/library.cairo" + }, + "start_col": 23, + "start_line": 41 + } + }, + "249": { + "accessible_scopes": [ + "openzeppelin.access.ownable.library", + "openzeppelin.access.ownable.library.Ownable", + "openzeppelin.access.ownable.library.Ownable.assert_only_owner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 34, + "end_line": 56, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/access/ownable/library.cairo" + }, + "parent_location": [ + { + "end_col": 38, + "end_line": 41, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/access/ownable/library.cairo" + }, + "parent_location": [ + { + "end_col": 43, + "end_line": 200, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/starknet/common/syscalls.cairo" + }, + "parent_location": [ + { + "end_col": 44, + "end_line": 42, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/access/ownable/library.cairo" + }, + "start_col": 24, + "start_line": 42 + }, + "While trying to retrieve the implicit argument 'syscall_ptr' in:" + ], + "start_col": 25, + "start_line": 200 + }, + "While expanding the reference 'syscall_ptr' in:" + ], + "start_col": 23, + "start_line": 41 + }, + "While trying to update the implicit return value 'syscall_ptr' in:" + ], + "start_col": 16, + "start_line": 56 + } + }, + "250": { + "accessible_scopes": [ + "openzeppelin.access.ownable.library", + "openzeppelin.access.ownable.library.Ownable", + "openzeppelin.access.ownable.library.Ownable.assert_only_owner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 44, + "end_line": 42, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/access/ownable/library.cairo" + }, + "start_col": 24, + "start_line": 42 + } + }, + "252": { + "accessible_scopes": [ + "openzeppelin.access.ownable.library", + "openzeppelin.access.ownable.library.Ownable", + "openzeppelin.access.ownable.library.Ownable.assert_only_owner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 36, + "end_line": 44, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/access/ownable/library.cairo" + }, + "start_col": 13, + "start_line": 44 + } + }, + "254": { + "accessible_scopes": [ + "openzeppelin.access.ownable.library", + "openzeppelin.access.ownable.library.Ownable", + "openzeppelin.access.ownable.library.Ownable.assert_only_owner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 35, + "end_line": 47, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/access/ownable/library.cairo" + }, + "start_col": 13, + "start_line": 47 + } + }, + "255": { + "accessible_scopes": [ + "openzeppelin.access.ownable.library", + "openzeppelin.access.ownable.library.Ownable", + "openzeppelin.access.ownable.library.Ownable.assert_only_owner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 43, + "end_line": 200, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/starknet/common/syscalls.cairo" + }, + "parent_location": [ + { + "end_col": 44, + "end_line": 42, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/access/ownable/library.cairo" + }, + "parent_location": [ + { + "end_col": 46, + "end_line": 40, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/access/ownable/library.cairo" + }, + "parent_location": [ + { + "end_col": 19, + "end_line": 49, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/access/ownable/library.cairo" + }, + "start_col": 9, + "start_line": 49 + }, + "While trying to retrieve the implicit argument 'syscall_ptr' in:" + ], + "start_col": 28, + "start_line": 40 + }, + "While expanding the reference 'syscall_ptr' in:" + ], + "start_col": 24, + "start_line": 42 + }, + "While trying to update the implicit return value 'syscall_ptr' in:" + ], + "start_col": 25, + "start_line": 200 + } + }, + "256": { + "accessible_scopes": [ + "openzeppelin.access.ownable.library", + "openzeppelin.access.ownable.library.Ownable", + "openzeppelin.access.ownable.library.Ownable.assert_only_owner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 62, + "end_line": 56, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/access/ownable/library.cairo" + }, + "parent_location": [ + { + "end_col": 38, + "end_line": 41, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/access/ownable/library.cairo" + }, + "parent_location": [ + { + "end_col": 74, + "end_line": 40, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/access/ownable/library.cairo" + }, + "parent_location": [ + { + "end_col": 19, + "end_line": 49, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/access/ownable/library.cairo" + }, + "start_col": 9, + "start_line": 49 + }, + "While trying to retrieve the implicit argument 'pedersen_ptr' in:" + ], + "start_col": 48, + "start_line": 40 + }, + "While expanding the reference 'pedersen_ptr' in:" + ], + "start_col": 23, + "start_line": 41 + }, + "While trying to update the implicit return value 'pedersen_ptr' in:" + ], + "start_col": 36, + "start_line": 56 + } + }, + "257": { + "accessible_scopes": [ + "openzeppelin.access.ownable.library", + "openzeppelin.access.ownable.library.Ownable", + "openzeppelin.access.ownable.library.Ownable.assert_only_owner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 79, + "end_line": 56, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/access/ownable/library.cairo" + }, + "parent_location": [ + { + "end_col": 38, + "end_line": 41, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/access/ownable/library.cairo" + }, + "parent_location": [ + { + "end_col": 91, + "end_line": 40, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/access/ownable/library.cairo" + }, + "parent_location": [ + { + "end_col": 19, + "end_line": 49, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/access/ownable/library.cairo" + }, + "start_col": 9, + "start_line": 49 + }, + "While trying to retrieve the implicit argument 'range_check_ptr' in:" + ], + "start_col": 76, + "start_line": 40 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 23, + "start_line": 41 + }, + "While trying to update the implicit return value 'range_check_ptr' in:" + ], + "start_col": 64, + "start_line": 56 + } + }, + "258": { + "accessible_scopes": [ + "openzeppelin.access.ownable.library", + "openzeppelin.access.ownable.library.Ownable", + "openzeppelin.access.ownable.library.Ownable.assert_only_owner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 19, + "end_line": 49, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/access/ownable/library.cairo" + }, + "start_col": 9, + "start_line": 49 + } + }, + "259": { + "accessible_scopes": [ + "openzeppelin.access.ownable.library", + "openzeppelin.access.ownable.library.Ownable", + "openzeppelin.access.ownable.library.Ownable.owner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 34, + "end_line": 56, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/access/ownable/library.cairo" + }, + "parent_location": [ + { + "end_col": 33, + "end_line": 13, + "input_file": { + "filename": "autogen/starknet/storage_var/Ownable_owner/decl.cairo" + }, + "parent_location": [ + { + "end_col": 36, + "end_line": 57, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/access/ownable/library.cairo" + }, + "start_col": 16, + "start_line": 57 + }, + "While trying to retrieve the implicit argument 'syscall_ptr' in:" + ], + "start_col": 15, + "start_line": 13 + }, + "While expanding the reference 'syscall_ptr' in:" + ], + "start_col": 16, + "start_line": 56 + } + }, + "260": { + "accessible_scopes": [ + "openzeppelin.access.ownable.library", + "openzeppelin.access.ownable.library.Ownable", + "openzeppelin.access.ownable.library.Ownable.owner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 62, + "end_line": 56, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/access/ownable/library.cairo" + }, + "parent_location": [ + { + "end_col": 61, + "end_line": 13, + "input_file": { + "filename": "autogen/starknet/storage_var/Ownable_owner/decl.cairo" + }, + "parent_location": [ + { + "end_col": 36, + "end_line": 57, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/access/ownable/library.cairo" + }, + "start_col": 16, + "start_line": 57 + }, + "While trying to retrieve the implicit argument 'pedersen_ptr' in:" + ], + "start_col": 35, + "start_line": 13 + }, + "While expanding the reference 'pedersen_ptr' in:" + ], + "start_col": 36, + "start_line": 56 + } + }, + "261": { + "accessible_scopes": [ + "openzeppelin.access.ownable.library", + "openzeppelin.access.ownable.library.Ownable", + "openzeppelin.access.ownable.library.Ownable.owner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 79, + "end_line": 56, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/access/ownable/library.cairo" + }, + "parent_location": [ + { + "end_col": 78, + "end_line": 13, + "input_file": { + "filename": "autogen/starknet/storage_var/Ownable_owner/decl.cairo" + }, + "parent_location": [ + { + "end_col": 36, + "end_line": 57, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/access/ownable/library.cairo" + }, + "start_col": 16, + "start_line": 57 + }, + "While trying to retrieve the implicit argument 'range_check_ptr' in:" + ], + "start_col": 63, + "start_line": 13 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 64, + "start_line": 56 + } + }, + "262": { + "accessible_scopes": [ + "openzeppelin.access.ownable.library", + "openzeppelin.access.ownable.library.Ownable", + "openzeppelin.access.ownable.library.Ownable.owner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 36, + "end_line": 57, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/access/ownable/library.cairo" + }, + "start_col": 16, + "start_line": 57 + } + }, + "264": { + "accessible_scopes": [ + "openzeppelin.access.ownable.library", + "openzeppelin.access.ownable.library.Ownable", + "openzeppelin.access.ownable.library.Ownable.owner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 37, + "end_line": 57, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/access/ownable/library.cairo" + }, + "start_col": 9, + "start_line": 57 + } + }, + "265": { + "accessible_scopes": [ + "openzeppelin.access.ownable.library", + "openzeppelin.access.ownable.library.Ownable", + "openzeppelin.access.ownable.library.Ownable.transfer_ownership" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 24, + "end_line": 61, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/access/ownable/library.cairo" + }, + "parent_location": [ + { + "end_col": 38, + "end_line": 64, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/access/ownable/library.cairo" + }, + "start_col": 29, + "start_line": 64 + }, + "While expanding the reference 'new_owner' in:" + ], + "start_col": 9, + "start_line": 61 + } + }, + "266": { + "accessible_scopes": [ + "openzeppelin.access.ownable.library", + "openzeppelin.access.ownable.library.Ownable", + "openzeppelin.access.ownable.library.Ownable.transfer_ownership" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 39, + "end_line": 64, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/access/ownable/library.cairo" + }, + "start_col": 13, + "start_line": 64 + } + }, + "268": { + "accessible_scopes": [ + "openzeppelin.access.ownable.library", + "openzeppelin.access.ownable.library.Ownable", + "openzeppelin.access.ownable.library.Ownable.transfer_ownership" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 47, + "end_line": 60, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/access/ownable/library.cairo" + }, + "parent_location": [ + { + "end_col": 46, + "end_line": 40, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/access/ownable/library.cairo" + }, + "parent_location": [ + { + "end_col": 28, + "end_line": 66, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/access/ownable/library.cairo" + }, + "start_col": 9, + "start_line": 66 + }, + "While trying to retrieve the implicit argument 'syscall_ptr' in:" + ], + "start_col": 28, + "start_line": 40 + }, + "While expanding the reference 'syscall_ptr' in:" + ], + "start_col": 29, + "start_line": 60 + } + }, + "269": { + "accessible_scopes": [ + "openzeppelin.access.ownable.library", + "openzeppelin.access.ownable.library.Ownable", + "openzeppelin.access.ownable.library.Ownable.transfer_ownership" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 75, + "end_line": 60, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/access/ownable/library.cairo" + }, + "parent_location": [ + { + "end_col": 74, + "end_line": 40, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/access/ownable/library.cairo" + }, + "parent_location": [ + { + "end_col": 28, + "end_line": 66, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/access/ownable/library.cairo" + }, + "start_col": 9, + "start_line": 66 + }, + "While trying to retrieve the implicit argument 'pedersen_ptr' in:" + ], + "start_col": 48, + "start_line": 40 + }, + "While expanding the reference 'pedersen_ptr' in:" + ], + "start_col": 49, + "start_line": 60 + } + }, + "270": { + "accessible_scopes": [ + "openzeppelin.access.ownable.library", + "openzeppelin.access.ownable.library.Ownable", + "openzeppelin.access.ownable.library.Ownable.transfer_ownership" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 92, + "end_line": 60, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/access/ownable/library.cairo" + }, + "parent_location": [ + { + "end_col": 91, + "end_line": 40, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/access/ownable/library.cairo" + }, + "parent_location": [ + { + "end_col": 28, + "end_line": 66, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/access/ownable/library.cairo" + }, + "start_col": 9, + "start_line": 66 + }, + "While trying to retrieve the implicit argument 'range_check_ptr' in:" + ], + "start_col": 76, + "start_line": 40 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 77, + "start_line": 60 + } + }, + "271": { + "accessible_scopes": [ + "openzeppelin.access.ownable.library", + "openzeppelin.access.ownable.library.Ownable", + "openzeppelin.access.ownable.library.Ownable.transfer_ownership" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 28, + "end_line": 66, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/access/ownable/library.cairo" + }, + "start_col": 9, + "start_line": 66 + } + }, + "273": { + "accessible_scopes": [ + "openzeppelin.access.ownable.library", + "openzeppelin.access.ownable.library.Ownable", + "openzeppelin.access.ownable.library.Ownable.transfer_ownership" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 24, + "end_line": 61, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/access/ownable/library.cairo" + }, + "parent_location": [ + { + "end_col": 38, + "end_line": 67, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/access/ownable/library.cairo" + }, + "start_col": 29, + "start_line": 67 + }, + "While expanding the reference 'new_owner' in:" + ], + "start_col": 9, + "start_line": 61 + } + }, + "274": { + "accessible_scopes": [ + "openzeppelin.access.ownable.library", + "openzeppelin.access.ownable.library.Ownable", + "openzeppelin.access.ownable.library.Ownable.transfer_ownership" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 39, + "end_line": 67, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/access/ownable/library.cairo" + }, + "start_col": 9, + "start_line": 67 + } + }, + "276": { + "accessible_scopes": [ + "openzeppelin.access.ownable.library", + "openzeppelin.access.ownable.library.Ownable", + "openzeppelin.access.ownable.library.Ownable.transfer_ownership" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 19, + "end_line": 68, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/access/ownable/library.cairo" + }, + "start_col": 9, + "start_line": 68 + } + }, + "277": { + "accessible_scopes": [ + "openzeppelin.access.ownable.library", + "openzeppelin.access.ownable.library.Ownable", + "openzeppelin.access.ownable.library.Ownable._transfer_ownership" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 48, + "end_line": 81, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/access/ownable/library.cairo" + }, + "parent_location": [ + { + "end_col": 34, + "end_line": 56, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/access/ownable/library.cairo" + }, + "parent_location": [ + { + "end_col": 53, + "end_line": 84, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/access/ownable/library.cairo" + }, + "start_col": 38, + "start_line": 84 + }, + "While trying to retrieve the implicit argument 'syscall_ptr' in:" + ], + "start_col": 16, + "start_line": 56 + }, + "While expanding the reference 'syscall_ptr' in:" + ], + "start_col": 30, + "start_line": 81 + } + }, + "278": { + "accessible_scopes": [ + "openzeppelin.access.ownable.library", + "openzeppelin.access.ownable.library.Ownable", + "openzeppelin.access.ownable.library.Ownable._transfer_ownership" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 76, + "end_line": 81, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/access/ownable/library.cairo" + }, + "parent_location": [ + { + "end_col": 62, + "end_line": 56, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/access/ownable/library.cairo" + }, + "parent_location": [ + { + "end_col": 53, + "end_line": 84, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/access/ownable/library.cairo" + }, + "start_col": 38, + "start_line": 84 + }, + "While trying to retrieve the implicit argument 'pedersen_ptr' in:" + ], + "start_col": 36, + "start_line": 56 + }, + "While expanding the reference 'pedersen_ptr' in:" + ], + "start_col": 50, + "start_line": 81 + } + }, + "279": { + "accessible_scopes": [ + "openzeppelin.access.ownable.library", + "openzeppelin.access.ownable.library.Ownable", + "openzeppelin.access.ownable.library.Ownable._transfer_ownership" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 93, + "end_line": 81, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/access/ownable/library.cairo" + }, + "parent_location": [ + { + "end_col": 79, + "end_line": 56, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/access/ownable/library.cairo" + }, + "parent_location": [ + { + "end_col": 53, + "end_line": 84, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/access/ownable/library.cairo" + }, + "start_col": 38, + "start_line": 84 + }, + "While trying to retrieve the implicit argument 'range_check_ptr' in:" + ], + "start_col": 64, + "start_line": 56 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 78, + "start_line": 81 + } + }, + "280": { + "accessible_scopes": [ + "openzeppelin.access.ownable.library", + "openzeppelin.access.ownable.library.Ownable", + "openzeppelin.access.ownable.library.Ownable._transfer_ownership" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 53, + "end_line": 84, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/access/ownable/library.cairo" + }, + "start_col": 38, + "start_line": 84 + } + }, + "282": { + "accessible_scopes": [ + "openzeppelin.access.ownable.library", + "openzeppelin.access.ownable.library.Ownable", + "openzeppelin.access.ownable.library.Ownable._transfer_ownership" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 34, + "end_line": 56, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/access/ownable/library.cairo" + }, + "parent_location": [ + { + "end_col": 53, + "end_line": 84, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/access/ownable/library.cairo" + }, + "parent_location": [ + { + "end_col": 34, + "end_line": 19, + "input_file": { + "filename": "autogen/starknet/storage_var/Ownable_owner/decl.cairo" + }, + "parent_location": [ + { + "end_col": 39, + "end_line": 85, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/access/ownable/library.cairo" + }, + "start_col": 9, + "start_line": 85 + }, + "While trying to retrieve the implicit argument 'syscall_ptr' in:" + ], + "start_col": 16, + "start_line": 19 + }, + "While expanding the reference 'syscall_ptr' in:" + ], + "start_col": 38, + "start_line": 84 + }, + "While trying to update the implicit return value 'syscall_ptr' in:" + ], + "start_col": 16, + "start_line": 56 + } + }, + "283": { + "accessible_scopes": [ + "openzeppelin.access.ownable.library", + "openzeppelin.access.ownable.library.Ownable", + "openzeppelin.access.ownable.library.Ownable._transfer_ownership" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 62, + "end_line": 56, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/access/ownable/library.cairo" + }, + "parent_location": [ + { + "end_col": 53, + "end_line": 84, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/access/ownable/library.cairo" + }, + "parent_location": [ + { + "end_col": 62, + "end_line": 19, + "input_file": { + "filename": "autogen/starknet/storage_var/Ownable_owner/decl.cairo" + }, + "parent_location": [ + { + "end_col": 39, + "end_line": 85, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/access/ownable/library.cairo" + }, + "start_col": 9, + "start_line": 85 + }, + "While trying to retrieve the implicit argument 'pedersen_ptr' in:" + ], + "start_col": 36, + "start_line": 19 + }, + "While expanding the reference 'pedersen_ptr' in:" + ], + "start_col": 38, + "start_line": 84 + }, + "While trying to update the implicit return value 'pedersen_ptr' in:" + ], + "start_col": 36, + "start_line": 56 + } + }, + "284": { + "accessible_scopes": [ + "openzeppelin.access.ownable.library", + "openzeppelin.access.ownable.library.Ownable", + "openzeppelin.access.ownable.library.Ownable._transfer_ownership" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 79, + "end_line": 56, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/access/ownable/library.cairo" + }, + "parent_location": [ + { + "end_col": 53, + "end_line": 84, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/access/ownable/library.cairo" + }, + "parent_location": [ + { + "end_col": 79, + "end_line": 19, + "input_file": { + "filename": "autogen/starknet/storage_var/Ownable_owner/decl.cairo" + }, + "parent_location": [ + { + "end_col": 39, + "end_line": 85, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/access/ownable/library.cairo" + }, + "start_col": 9, + "start_line": 85 + }, + "While trying to retrieve the implicit argument 'range_check_ptr' in:" + ], + "start_col": 64, + "start_line": 19 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 38, + "start_line": 84 + }, + "While trying to update the implicit return value 'range_check_ptr' in:" + ], + "start_col": 64, + "start_line": 56 + } + }, + "285": { + "accessible_scopes": [ + "openzeppelin.access.ownable.library", + "openzeppelin.access.ownable.library.Ownable", + "openzeppelin.access.ownable.library.Ownable._transfer_ownership" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 24, + "end_line": 82, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/access/ownable/library.cairo" + }, + "parent_location": [ + { + "end_col": 38, + "end_line": 85, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/access/ownable/library.cairo" + }, + "start_col": 29, + "start_line": 85 + }, + "While expanding the reference 'new_owner' in:" + ], + "start_col": 9, + "start_line": 82 + } + }, + "286": { + "accessible_scopes": [ + "openzeppelin.access.ownable.library", + "openzeppelin.access.ownable.library.Ownable", + "openzeppelin.access.ownable.library.Ownable._transfer_ownership" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 39, + "end_line": 85, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/access/ownable/library.cairo" + }, + "start_col": 9, + "start_line": 85 + } + }, + "288": { + "accessible_scopes": [ + "openzeppelin.access.ownable.library", + "openzeppelin.access.ownable.library.Ownable", + "openzeppelin.access.ownable.library.Ownable._transfer_ownership" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 34, + "end_line": 19, + "input_file": { + "filename": "autogen/starknet/storage_var/Ownable_owner/decl.cairo" + }, + "parent_location": [ + { + "end_col": 39, + "end_line": 85, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/access/ownable/library.cairo" + }, + "parent_location": [ + { + "end_col": 29, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/event/OwnershipTransferred/a7a8ae41be29ac9f4f6c3b7837c448d787ca051dd1ade98f409e54d33d112504.cairo" + }, + "parent_location": [ + { + "end_col": 26, + "end_line": 15, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/access/ownable/library.cairo" + }, + "parent_location": [ + { + "end_col": 61, + "end_line": 86, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/access/ownable/library.cairo" + }, + "start_col": 9, + "start_line": 86 + }, + "While trying to retrieve the implicit argument 'syscall_ptr' in:" + ], + "start_col": 6, + "start_line": 15 + }, + "While handling event:" + ], + "start_col": 11, + "start_line": 1 + }, + "While expanding the reference 'syscall_ptr' in:" + ], + "start_col": 9, + "start_line": 85 + }, + "While trying to update the implicit return value 'syscall_ptr' in:" + ], + "start_col": 16, + "start_line": 19 + } + }, + "289": { + "accessible_scopes": [ + "openzeppelin.access.ownable.library", + "openzeppelin.access.ownable.library.Ownable", + "openzeppelin.access.ownable.library.Ownable._transfer_ownership" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 79, + "end_line": 19, + "input_file": { + "filename": "autogen/starknet/storage_var/Ownable_owner/decl.cairo" + }, + "parent_location": [ + { + "end_col": 39, + "end_line": 85, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/access/ownable/library.cairo" + }, + "parent_location": [ + { + "end_col": 46, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/event/OwnershipTransferred/a7a8ae41be29ac9f4f6c3b7837c448d787ca051dd1ade98f409e54d33d112504.cairo" + }, + "parent_location": [ + { + "end_col": 26, + "end_line": 15, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/access/ownable/library.cairo" + }, + "parent_location": [ + { + "end_col": 61, + "end_line": 86, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/access/ownable/library.cairo" + }, + "start_col": 9, + "start_line": 86 + }, + "While trying to retrieve the implicit argument 'range_check_ptr' in:" + ], + "start_col": 6, + "start_line": 15 + }, + "While handling event:" + ], + "start_col": 31, + "start_line": 1 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 9, + "start_line": 85 + }, + "While trying to update the implicit return value 'range_check_ptr' in:" + ], + "start_col": 64, + "start_line": 19 + } + }, + "290": { + "accessible_scopes": [ + "openzeppelin.access.ownable.library", + "openzeppelin.access.ownable.library.Ownable", + "openzeppelin.access.ownable.library.Ownable._transfer_ownership" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 34, + "end_line": 84, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/access/ownable/library.cairo" + }, + "parent_location": [ + { + "end_col": 49, + "end_line": 86, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/access/ownable/library.cairo" + }, + "start_col": 35, + "start_line": 86 + }, + "While expanding the reference 'previous_owner' in:" + ], + "start_col": 14, + "start_line": 84 + } + }, + "291": { + "accessible_scopes": [ + "openzeppelin.access.ownable.library", + "openzeppelin.access.ownable.library.Ownable", + "openzeppelin.access.ownable.library.Ownable._transfer_ownership" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 24, + "end_line": 82, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/access/ownable/library.cairo" + }, + "parent_location": [ + { + "end_col": 60, + "end_line": 86, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/access/ownable/library.cairo" + }, + "start_col": 51, + "start_line": 86 + }, + "While expanding the reference 'new_owner' in:" + ], + "start_col": 9, + "start_line": 82 + } + }, + "292": { + "accessible_scopes": [ + "openzeppelin.access.ownable.library", + "openzeppelin.access.ownable.library.Ownable", + "openzeppelin.access.ownable.library.Ownable._transfer_ownership" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 61, + "end_line": 86, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/access/ownable/library.cairo" + }, + "start_col": 9, + "start_line": 86 + } + }, + "294": { + "accessible_scopes": [ + "openzeppelin.access.ownable.library", + "openzeppelin.access.ownable.library.Ownable", + "openzeppelin.access.ownable.library.Ownable._transfer_ownership" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 29, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/event/OwnershipTransferred/a7a8ae41be29ac9f4f6c3b7837c448d787ca051dd1ade98f409e54d33d112504.cairo" + }, + "parent_location": [ + { + "end_col": 26, + "end_line": 15, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/access/ownable/library.cairo" + }, + "parent_location": [ + { + "end_col": 61, + "end_line": 86, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/access/ownable/library.cairo" + }, + "parent_location": [ + { + "end_col": 48, + "end_line": 81, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/access/ownable/library.cairo" + }, + "parent_location": [ + { + "end_col": 19, + "end_line": 87, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/access/ownable/library.cairo" + }, + "start_col": 9, + "start_line": 87 + }, + "While trying to retrieve the implicit argument 'syscall_ptr' in:" + ], + "start_col": 30, + "start_line": 81 + }, + "While expanding the reference 'syscall_ptr' in:" + ], + "start_col": 9, + "start_line": 86 + }, + "While trying to update the implicit return value 'syscall_ptr' in:" + ], + "start_col": 6, + "start_line": 15 + }, + "While handling event:" + ], + "start_col": 11, + "start_line": 1 + } + }, + "295": { + "accessible_scopes": [ + "openzeppelin.access.ownable.library", + "openzeppelin.access.ownable.library.Ownable", + "openzeppelin.access.ownable.library.Ownable._transfer_ownership" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 62, + "end_line": 19, + "input_file": { + "filename": "autogen/starknet/storage_var/Ownable_owner/decl.cairo" + }, + "parent_location": [ + { + "end_col": 39, + "end_line": 85, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/access/ownable/library.cairo" + }, + "parent_location": [ + { + "end_col": 76, + "end_line": 81, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/access/ownable/library.cairo" + }, + "parent_location": [ + { + "end_col": 19, + "end_line": 87, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/access/ownable/library.cairo" + }, + "start_col": 9, + "start_line": 87 + }, + "While trying to retrieve the implicit argument 'pedersen_ptr' in:" + ], + "start_col": 50, + "start_line": 81 + }, + "While expanding the reference 'pedersen_ptr' in:" + ], + "start_col": 9, + "start_line": 85 + }, + "While trying to update the implicit return value 'pedersen_ptr' in:" + ], + "start_col": 36, + "start_line": 19 + } + }, + "296": { + "accessible_scopes": [ + "openzeppelin.access.ownable.library", + "openzeppelin.access.ownable.library.Ownable", + "openzeppelin.access.ownable.library.Ownable._transfer_ownership" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 46, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/event/OwnershipTransferred/a7a8ae41be29ac9f4f6c3b7837c448d787ca051dd1ade98f409e54d33d112504.cairo" + }, + "parent_location": [ + { + "end_col": 26, + "end_line": 15, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/access/ownable/library.cairo" + }, + "parent_location": [ + { + "end_col": 61, + "end_line": 86, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/access/ownable/library.cairo" + }, + "parent_location": [ + { + "end_col": 93, + "end_line": 81, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/access/ownable/library.cairo" + }, + "parent_location": [ + { + "end_col": 19, + "end_line": 87, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/access/ownable/library.cairo" + }, + "start_col": 9, + "start_line": 87 + }, + "While trying to retrieve the implicit argument 'range_check_ptr' in:" + ], + "start_col": 78, + "start_line": 81 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 9, + "start_line": 86 + }, + "While trying to update the implicit return value 'range_check_ptr' in:" + ], + "start_col": 6, + "start_line": 15 + }, + "While handling event:" + ], + "start_col": 31, + "start_line": 1 + } + }, + "297": { + "accessible_scopes": [ + "openzeppelin.access.ownable.library", + "openzeppelin.access.ownable.library.Ownable", + "openzeppelin.access.ownable.library.Ownable._transfer_ownership" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 19, + "end_line": 87, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/access/ownable/library.cairo" + }, + "start_col": 9, + "start_line": 87 + } + }, + "298": { + "accessible_scopes": [ + "utils.string", + "utils.string.str" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 18, + "end_line": 14, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/utils/string.cairo" + }, + "start_col": 5, + "start_line": 14 + } + }, + "300": { + "accessible_scopes": [ + "utils.string", + "utils.string.str" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 7, + "end_line": 16, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/utils/string.cairo" + }, + "start_col": 5, + "start_line": 16 + } + }, + "302": { + "accessible_scopes": [ + "utils.string", + "utils.string.str" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 25, + "end_line": 13, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/utils/string.cairo" + }, + "parent_location": [ + { + "end_col": 25, + "end_line": 13, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/utils/string.cairo" + }, + "parent_location": [ + { + "end_col": 23, + "end_line": 17, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/utils/string.cairo" + }, + "start_col": 9, + "start_line": 17 + }, + "While trying to retrieve the implicit argument 'range_check_ptr' in:" + ], + "start_col": 10, + "start_line": 13 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 10, + "start_line": 13 + } + }, + "303": { + "accessible_scopes": [ + "utils.string", + "utils.string.str" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 20, + "end_line": 17, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/utils/string.cairo" + }, + "start_col": 17, + "start_line": 17 + } + }, + "305": { + "accessible_scopes": [ + "utils.string", + "utils.string.str" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 23, + "end_line": 17, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/utils/string.cairo" + }, + "start_col": 9, + "start_line": 17 + } + }, + "306": { + "accessible_scopes": [ + "utils.string", + "utils.string.str" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 30, + "end_line": 20, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/utils/string.cairo" + }, + "start_col": 23, + "start_line": 20 + } + }, + "308": { + "accessible_scopes": [ + "utils.string", + "utils.string.str" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 19, + "end_line": 20, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/utils/string.cairo" + }, + "parent_location": [ + { + "end_col": 19, + "end_line": 20, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/utils/string.cairo" + }, + "start_col": 10, + "start_line": 20 + }, + "While auto generating local variable for 'arr_ascii'." + ], + "start_col": 10, + "start_line": 20 + } + }, + "309": { + "accessible_scopes": [ + "utils.string", + "utils.string.str" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 25, + "end_line": 13, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/utils/string.cairo" + }, + "parent_location": [ + { + "end_col": 31, + "end_line": 242, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/math.cairo" + }, + "parent_location": [ + { + "end_col": 33, + "end_line": 21, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/utils/string.cairo" + }, + "start_col": 19, + "start_line": 21 + }, + "While trying to retrieve the implicit argument 'range_check_ptr' in:" + ], + "start_col": 16, + "start_line": 242 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 10, + "start_line": 13 + } + }, + "310": { + "accessible_scopes": [ + "utils.string", + "utils.string.str" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 36, + "end_line": 13, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/utils/string.cairo" + }, + "parent_location": [ + { + "end_col": 32, + "end_line": 21, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/utils/string.cairo" + }, + "start_col": 29, + "start_line": 21 + }, + "While expanding the reference 'num' in:" + ], + "start_col": 27, + "start_line": 13 + } + }, + "311": { + "accessible_scopes": [ + "utils.string", + "utils.string.str" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 33, + "end_line": 21, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/utils/string.cairo" + }, + "start_col": 19, + "start_line": 21 + } + }, + "313": { + "accessible_scopes": [ + "utils.string", + "utils.string.str" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 40, + "end_line": 23, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/utils/string.cairo" + }, + "start_col": 39, + "start_line": 23 + } + }, + "315": { + "accessible_scopes": [ + "utils.string", + "utils.string.str" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 19, + "end_line": 20, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/utils/string.cairo" + }, + "parent_location": [ + { + "end_col": 19, + "end_line": 20, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/utils/string.cairo" + }, + "parent_location": [ + { + "end_col": 61, + "end_line": 23, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/utils/string.cairo" + }, + "start_col": 52, + "start_line": 23 + }, + "While expanding the reference 'arr_ascii' in:" + ], + "start_col": 10, + "start_line": 20 + }, + "While auto generating local variable for 'arr_ascii'." + ], + "start_col": 10, + "start_line": 20 + } + }, + "316": { + "accessible_scopes": [ + "utils.string", + "utils.string.str" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 6, + "end_line": 24, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/utils/string.cairo" + }, + "start_col": 33, + "start_line": 22 + } + }, + "318": { + "accessible_scopes": [ + "utils.string", + "utils.string.str" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 54, + "end_line": 49, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/utils/string.cairo" + }, + "parent_location": [ + { + "end_col": 6, + "end_line": 24, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/utils/string.cairo" + }, + "parent_location": [ + { + "end_col": 26, + "end_line": 265, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/math.cairo" + }, + "parent_location": [ + { + "end_col": 22, + "end_line": 26, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/utils/string.cairo" + }, + "start_col": 13, + "start_line": 26 + }, + "While trying to retrieve the implicit argument 'range_check_ptr' in:" + ], + "start_col": 11, + "start_line": 265 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 33, + "start_line": 22 + }, + "While trying to update the implicit return value 'range_check_ptr' in:" + ], + "start_col": 39, + "start_line": 49 + } + }, + "319": { + "accessible_scopes": [ + "utils.string", + "utils.string.str" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 36, + "end_line": 13, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/utils/string.cairo" + }, + "parent_location": [ + { + "end_col": 21, + "end_line": 26, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/utils/string.cairo" + }, + "start_col": 18, + "start_line": 26 + }, + "While expanding the reference 'num' in:" + ], + "start_col": 27, + "start_line": 13 + } + }, + "320": { + "accessible_scopes": [ + "utils.string", + "utils.string.str" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 22, + "end_line": 26, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/utils/string.cairo" + }, + "start_col": 13, + "start_line": 26 + } + }, + "322": { + "accessible_scopes": [ + "utils.string", + "utils.string.str" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 16, + "end_line": 28, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/utils/string.cairo" + }, + "start_col": 9, + "start_line": 28 + } + }, + "324": { + "accessible_scopes": [ + "utils.string", + "utils.string.str" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 7, + "end_line": 28, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/utils/string.cairo" + }, + "start_col": 5, + "start_line": 28 + } + }, + "326": { + "accessible_scopes": [ + "utils.string", + "utils.string.str" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 19, + "end_line": 29, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/utils/string.cairo" + }, + "start_col": 9, + "start_line": 29 + } + }, + "328": { + "accessible_scopes": [ + "utils.string", + "utils.string.str" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 7, + "end_line": 28, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/utils/string.cairo" + }, + "start_col": 5, + "start_line": 28 + } + }, + "330": { + "accessible_scopes": [ + "utils.string", + "utils.string.str" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 18, + "end_line": 31, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/utils/string.cairo" + }, + "start_col": 9, + "start_line": 31 + } + }, + "332": { + "accessible_scopes": [ + "utils.string", + "utils.string.str" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 26, + "end_line": 265, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/math.cairo" + }, + "parent_location": [ + { + "end_col": 22, + "end_line": 26, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/utils/string.cairo" + }, + "parent_location": [ + { + "end_col": 61, + "end_line": 71, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/utils/string.cairo" + }, + "parent_location": [ + { + "end_col": 6, + "end_line": 36, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/utils/string.cairo" + }, + "start_col": 19, + "start_line": 34 + }, + "While trying to retrieve the implicit argument 'range_check_ptr' in:" + ], + "start_col": 46, + "start_line": 71 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 13, + "start_line": 26 + }, + "While trying to update the implicit return value 'range_check_ptr' in:" + ], + "start_col": 11, + "start_line": 265 + } + }, + "333": { + "accessible_scopes": [ + "utils.string", + "utils.string.str" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 15, + "end_line": 27, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/utils/string.cairo" + }, + "parent_location": [ + { + "end_col": 19, + "end_line": 35, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/utils/string.cairo" + }, + "start_col": 15, + "start_line": 35 + }, + "While expanding the reference 'init' in:" + ], + "start_col": 11, + "start_line": 27 + } + }, + "334": { + "accessible_scopes": [ + "utils.string", + "utils.string.str" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 29, + "end_line": 22, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/utils/string.cairo" + }, + "parent_location": [ + { + "end_col": 38, + "end_line": 35, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/utils/string.cairo" + }, + "start_col": 25, + "start_line": 35 + }, + "While expanding the reference 'arr_ascii_len' in:" + ], + "start_col": 10, + "start_line": 22 + } + }, + "335": { + "accessible_scopes": [ + "utils.string", + "utils.string.str" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 19, + "end_line": 20, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/utils/string.cairo" + }, + "parent_location": [ + { + "end_col": 19, + "end_line": 20, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/utils/string.cairo" + }, + "parent_location": [ + { + "end_col": 53, + "end_line": 35, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/utils/string.cairo" + }, + "start_col": 44, + "start_line": 35 + }, + "While expanding the reference 'arr_ascii' in:" + ], + "start_col": 10, + "start_line": 20 + }, + "While auto generating local variable for 'arr_ascii'." + ], + "start_col": 10, + "start_line": 20 + } + }, + "336": { + "accessible_scopes": [ + "utils.string", + "utils.string.str" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 60, + "end_line": 35, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/utils/string.cairo" + }, + "start_col": 59, + "start_line": 35 + } + }, + "338": { + "accessible_scopes": [ + "utils.string", + "utils.string.str" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 6, + "end_line": 36, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/utils/string.cairo" + }, + "start_col": 19, + "start_line": 34 + } + }, + "340": { + "accessible_scopes": [ + "utils.string", + "utils.string.str" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 21, + "end_line": 38, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/utils/string.cairo" + }, + "start_col": 5, + "start_line": 38 + } + }, + "341": { + "accessible_scopes": [ + "utils.string", + "utils.string._ascii_from_digit" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 24, + "end_line": 46, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/utils/string.cairo" + }, + "start_col": 13, + "start_line": 46 + } + }, + "343": { + "accessible_scopes": [ + "utils.string", + "utils.string._ascii_from_digit" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 27, + "end_line": 46, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/utils/string.cairo" + }, + "start_col": 5, + "start_line": 46 + } + }, + "344": { + "accessible_scopes": [ + "utils.string", + "utils.string._recurse_ascii_array_from_number" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 18, + "end_line": 52, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/utils/string.cairo" + }, + "start_col": 5, + "start_line": 52 + } + }, + "346": { + "accessible_scopes": [ + "utils.string", + "utils.string._recurse_ascii_array_from_number" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 7, + "end_line": 54, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/utils/string.cairo" + }, + "start_col": 5, + "start_line": 54 + } + }, + "348": { + "accessible_scopes": [ + "utils.string", + "utils.string._recurse_ascii_array_from_number" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 54, + "end_line": 49, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/utils/string.cairo" + }, + "parent_location": [ + { + "end_col": 54, + "end_line": 49, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/utils/string.cairo" + }, + "parent_location": [ + { + "end_col": 33, + "end_line": 55, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/utils/string.cairo" + }, + "start_col": 9, + "start_line": 55 + }, + "While trying to retrieve the implicit argument 'range_check_ptr' in:" + ], + "start_col": 39, + "start_line": 49 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 39, + "start_line": 49 + } + }, + "349": { + "accessible_scopes": [ + "utils.string", + "utils.string._recurse_ascii_array_from_number" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 38, + "end_line": 50, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/utils/string.cairo" + }, + "parent_location": [ + { + "end_col": 30, + "end_line": 55, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/utils/string.cairo" + }, + "start_col": 17, + "start_line": 55 + }, + "While expanding the reference 'arr_ascii_len' in:" + ], + "start_col": 19, + "start_line": 50 + } + }, + "350": { + "accessible_scopes": [ + "utils.string", + "utils.string._recurse_ascii_array_from_number" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 33, + "end_line": 55, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/utils/string.cairo" + }, + "start_col": 9, + "start_line": 55 + } + }, + "351": { + "accessible_scopes": [ + "utils.string", + "utils.string._recurse_ascii_array_from_number" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 54, + "end_line": 49, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/utils/string.cairo" + }, + "parent_location": [ + { + "end_col": 38, + "end_line": 297, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/math.cairo" + }, + "parent_location": [ + { + "end_col": 59, + "end_line": 58, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/utils/string.cairo" + }, + "start_col": 31, + "start_line": 58 + }, + "While trying to retrieve the implicit argument 'range_check_ptr' in:" + ], + "start_col": 23, + "start_line": 297 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 39, + "start_line": 49 + } + }, + "352": { + "accessible_scopes": [ + "utils.string", + "utils.string._recurse_ascii_array_from_number" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 17, + "end_line": 50, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/utils/string.cairo" + }, + "parent_location": [ + { + "end_col": 54, + "end_line": 58, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/utils/string.cairo" + }, + "start_col": 48, + "start_line": 58 + }, + "While expanding the reference 'remain' in:" + ], + "start_col": 5, + "start_line": 50 + } + }, + "353": { + "accessible_scopes": [ + "utils.string", + "utils.string._recurse_ascii_array_from_number" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 58, + "end_line": 58, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/utils/string.cairo" + }, + "start_col": 56, + "start_line": 58 + } + }, + "355": { + "accessible_scopes": [ + "utils.string", + "utils.string._recurse_ascii_array_from_number" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 59, + "end_line": 58, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/utils/string.cairo" + }, + "start_col": 31, + "start_line": 58 + } + }, + "357": { + "accessible_scopes": [ + "utils.string", + "utils.string._recurse_ascii_array_from_number" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 43, + "end_line": 59, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/utils/string.cairo" + }, + "start_col": 19, + "start_line": 59 + } + }, + "359": { + "accessible_scopes": [ + "utils.string", + "utils.string._recurse_ascii_array_from_number" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 36, + "end_line": 60, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/utils/string.cairo" + }, + "start_col": 12, + "start_line": 60 + } + }, + "360": { + "accessible_scopes": [ + "utils.string", + "utils.string._recurse_ascii_array_from_number" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 45, + "end_line": 60, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/utils/string.cairo" + }, + "start_col": 5, + "start_line": 60 + } + }, + "361": { + "accessible_scopes": [ + "utils.string", + "utils.string._recurse_ascii_array_from_number" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 38, + "end_line": 297, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/math.cairo" + }, + "parent_location": [ + { + "end_col": 59, + "end_line": 58, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/utils/string.cairo" + }, + "parent_location": [ + { + "end_col": 54, + "end_line": 49, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/utils/string.cairo" + }, + "parent_location": [ + { + "end_col": 6, + "end_line": 67, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/utils/string.cairo" + }, + "start_col": 33, + "start_line": 65 + }, + "While trying to retrieve the implicit argument 'range_check_ptr' in:" + ], + "start_col": 39, + "start_line": 49 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 31, + "start_line": 58 + }, + "While trying to update the implicit return value 'range_check_ptr' in:" + ], + "start_col": 23, + "start_line": 297 + } + }, + "362": { + "accessible_scopes": [ + "utils.string", + "utils.string._recurse_ascii_array_from_number" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 20, + "end_line": 58, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/utils/string.cairo" + }, + "parent_location": [ + { + "end_col": 26, + "end_line": 66, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/utils/string.cairo" + }, + "start_col": 16, + "start_line": 66 + }, + "While expanding the reference 'remain_nxt' in:" + ], + "start_col": 10, + "start_line": 58 + } + }, + "363": { + "accessible_scopes": [ + "utils.string", + "utils.string._recurse_ascii_array_from_number" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 59, + "end_line": 66, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/utils/string.cairo" + }, + "start_col": 42, + "start_line": 66 + } + }, + "365": { + "accessible_scopes": [ + "utils.string", + "utils.string._recurse_ascii_array_from_number" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 56, + "end_line": 50, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/utils/string.cairo" + }, + "parent_location": [ + { + "end_col": 80, + "end_line": 66, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/utils/string.cairo" + }, + "start_col": 71, + "start_line": 66 + }, + "While expanding the reference 'arr_ascii' in:" + ], + "start_col": 40, + "start_line": 50 + } + }, + "366": { + "accessible_scopes": [ + "utils.string", + "utils.string._recurse_ascii_array_from_number" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 6, + "end_line": 67, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/utils/string.cairo" + }, + "start_col": 33, + "start_line": 65 + } + }, + "368": { + "accessible_scopes": [ + "utils.string", + "utils.string._recurse_ascii_array_from_number" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 35, + "end_line": 68, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/utils/string.cairo" + }, + "start_col": 5, + "start_line": 68 + } + }, + "369": { + "accessible_scopes": [ + "utils.string", + "utils.string._recurse_ascii_from_ascii_array_inverse" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 19, + "end_line": 74, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/utils/string.cairo" + }, + "start_col": 9, + "start_line": 74 + } + }, + "370": { + "accessible_scopes": [ + "utils.string", + "utils.string._recurse_ascii_from_ascii_array_inverse" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 7, + "end_line": 74, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/utils/string.cairo" + }, + "start_col": 5, + "start_line": 74 + } + }, + "372": { + "accessible_scopes": [ + "utils.string", + "utils.string._recurse_ascii_from_ascii_array_inverse" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 61, + "end_line": 71, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/utils/string.cairo" + }, + "parent_location": [ + { + "end_col": 61, + "end_line": 71, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/utils/string.cairo" + }, + "parent_location": [ + { + "end_col": 25, + "end_line": 75, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/utils/string.cairo" + }, + "start_col": 9, + "start_line": 75 + }, + "While trying to retrieve the implicit argument 'range_check_ptr' in:" + ], + "start_col": 46, + "start_line": 71 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 46, + "start_line": 71 + } + }, + "373": { + "accessible_scopes": [ + "utils.string", + "utils.string._recurse_ascii_from_ascii_array_inverse" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 16, + "end_line": 72, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/utils/string.cairo" + }, + "parent_location": [ + { + "end_col": 22, + "end_line": 75, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/utils/string.cairo" + }, + "start_col": 17, + "start_line": 75 + }, + "While expanding the reference 'ascii' in:" + ], + "start_col": 5, + "start_line": 72 + } + }, + "374": { + "accessible_scopes": [ + "utils.string", + "utils.string._recurse_ascii_from_ascii_array_inverse" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 25, + "end_line": 75, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/utils/string.cairo" + }, + "start_col": 9, + "start_line": 75 + } + }, + "375": { + "accessible_scopes": [ + "utils.string", + "utils.string._recurse_ascii_from_ascii_array_inverse" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 32, + "end_line": 78, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/utils/string.cairo" + }, + "parent_location": [ + { + "end_col": 24, + "end_line": 84, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/utils/string.cairo" + }, + "start_col": 15, + "start_line": 84 + }, + "While expanding the reference 'ascii_nxt' in:" + ], + "start_col": 21, + "start_line": 78 + } + }, + "377": { + "accessible_scopes": [ + "utils.string", + "utils.string._recurse_ascii_from_ascii_array_inverse" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 52, + "end_line": 78, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/utils/string.cairo" + }, + "parent_location": [ + { + "end_col": 24, + "end_line": 84, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/utils/string.cairo" + }, + "start_col": 15, + "start_line": 84 + }, + "While expanding the reference 'ascii_nxt' in:" + ], + "start_col": 39, + "start_line": 78 + } + }, + "379": { + "accessible_scopes": [ + "utils.string", + "utils.string._recurse_ascii_from_ascii_array_inverse" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 52, + "end_line": 78, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/utils/string.cairo" + }, + "parent_location": [ + { + "end_col": 24, + "end_line": 84, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/utils/string.cairo" + }, + "start_col": 15, + "start_line": 84 + }, + "While expanding the reference 'ascii_nxt' in:" + ], + "start_col": 39, + "start_line": 78 + } + }, + "380": { + "accessible_scopes": [ + "utils.string", + "utils.string._recurse_ascii_from_ascii_array_inverse" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 53, + "end_line": 78, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/utils/string.cairo" + }, + "parent_location": [ + { + "end_col": 24, + "end_line": 84, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/utils/string.cairo" + }, + "start_col": 15, + "start_line": 84 + }, + "While expanding the reference 'ascii_nxt' in:" + ], + "start_col": 35, + "start_line": 78 + } + }, + "381": { + "accessible_scopes": [ + "utils.string", + "utils.string._recurse_ascii_from_ascii_array_inverse" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 53, + "end_line": 78, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/utils/string.cairo" + }, + "parent_location": [ + { + "end_col": 24, + "end_line": 84, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/utils/string.cairo" + }, + "start_col": 15, + "start_line": 84 + }, + "While expanding the reference 'ascii_nxt' in:" + ], + "start_col": 35, + "start_line": 78 + } + }, + "382": { + "accessible_scopes": [ + "utils.string", + "utils.string._recurse_ascii_from_ascii_array_inverse" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 61, + "end_line": 71, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/utils/string.cairo" + }, + "parent_location": [ + { + "end_col": 61, + "end_line": 71, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/utils/string.cairo" + }, + "parent_location": [ + { + "end_col": 6, + "end_line": 85, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/utils/string.cairo" + }, + "start_col": 25, + "start_line": 83 + }, + "While trying to retrieve the implicit argument 'range_check_ptr' in:" + ], + "start_col": 46, + "start_line": 71 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 46, + "start_line": 71 + } + }, + "383": { + "accessible_scopes": [ + "utils.string", + "utils.string._recurse_ascii_from_ascii_array_inverse" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 53, + "end_line": 78, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/utils/string.cairo" + }, + "parent_location": [ + { + "end_col": 24, + "end_line": 84, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/utils/string.cairo" + }, + "start_col": 15, + "start_line": 84 + }, + "While expanding the reference 'ascii_nxt' in:" + ], + "start_col": 21, + "start_line": 78 + } + }, + "384": { + "accessible_scopes": [ + "utils.string", + "utils.string._recurse_ascii_from_ascii_array_inverse" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 27, + "end_line": 72, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/utils/string.cairo" + }, + "parent_location": [ + { + "end_col": 33, + "end_line": 84, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/utils/string.cairo" + }, + "start_col": 30, + "start_line": 84 + }, + "While expanding the reference 'len' in:" + ], + "start_col": 18, + "start_line": 72 + } + }, + "385": { + "accessible_scopes": [ + "utils.string", + "utils.string._recurse_ascii_from_ascii_array_inverse" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 39, + "end_line": 72, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/utils/string.cairo" + }, + "parent_location": [ + { + "end_col": 42, + "end_line": 84, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/utils/string.cairo" + }, + "start_col": 39, + "start_line": 84 + }, + "While expanding the reference 'arr' in:" + ], + "start_col": 29, + "start_line": 72 + } + }, + "386": { + "accessible_scopes": [ + "utils.string", + "utils.string._recurse_ascii_from_ascii_array_inverse" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 55, + "end_line": 84, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/utils/string.cairo" + }, + "start_col": 48, + "start_line": 84 + } + }, + "388": { + "accessible_scopes": [ + "utils.string", + "utils.string._recurse_ascii_from_ascii_array_inverse" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 6, + "end_line": 85, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/utils/string.cairo" + }, + "start_col": 25, + "start_line": 83 + } + }, + "390": { + "accessible_scopes": [ + "utils.string", + "utils.string._recurse_ascii_from_ascii_array_inverse" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 27, + "end_line": 86, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/utils/string.cairo" + }, + "start_col": 5, + "start_line": 86 + } + }, + "391": { + "accessible_scopes": [ + "__main__", + "__main__._use_token_id", + "__main__._use_token_id.addr" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 41, + "end_line": 7, + "input_file": { + "filename": "autogen/starknet/storage_var/_use_token_id/impl.cairo" + }, + "parent_location": [ + { + "end_col": 41, + "end_line": 7, + "input_file": { + "filename": "autogen/starknet/storage_var/_use_token_id/decl.cairo" + }, + "parent_location": [ + { + "end_col": 26, + "end_line": 9, + "input_file": { + "filename": "autogen/starknet/storage_var/_use_token_id/impl.cairo" + }, + "start_col": 9, + "start_line": 9 + }, + "While trying to retrieve the implicit argument 'pedersen_ptr' in:" + ], + "start_col": 15, + "start_line": 7 + }, + "While expanding the reference 'pedersen_ptr' in:" + ], + "start_col": 15, + "start_line": 7 + } + }, + "392": { + "accessible_scopes": [ + "__main__", + "__main__._use_token_id", + "__main__._use_token_id.addr" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 58, + "end_line": 7, + "input_file": { + "filename": "autogen/starknet/storage_var/_use_token_id/impl.cairo" + }, + "parent_location": [ + { + "end_col": 58, + "end_line": 7, + "input_file": { + "filename": "autogen/starknet/storage_var/_use_token_id/decl.cairo" + }, + "parent_location": [ + { + "end_col": 26, + "end_line": 9, + "input_file": { + "filename": "autogen/starknet/storage_var/_use_token_id/impl.cairo" + }, + "start_col": 9, + "start_line": 9 + }, + "While trying to retrieve the implicit argument 'range_check_ptr' in:" + ], + "start_col": 43, + "start_line": 7 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 43, + "start_line": 7 + } + }, + "393": { + "accessible_scopes": [ + "__main__", + "__main__._use_token_id", + "__main__._use_token_id.addr" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 93, + "end_line": 8, + "input_file": { + "filename": "autogen/starknet/storage_var/_use_token_id/impl.cairo" + }, + "parent_location": [ + { + "end_col": 24, + "end_line": 9, + "input_file": { + "filename": "autogen/starknet/storage_var/_use_token_id/impl.cairo" + }, + "start_col": 21, + "start_line": 9 + }, + "While expanding the reference 'res' in:" + ], + "start_col": 19, + "start_line": 8 + } + }, + "395": { + "accessible_scopes": [ + "__main__", + "__main__._use_token_id", + "__main__._use_token_id.addr" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 26, + "end_line": 9, + "input_file": { + "filename": "autogen/starknet/storage_var/_use_token_id/impl.cairo" + }, + "start_col": 9, + "start_line": 9 + } + }, + "396": { + "accessible_scopes": [ + "__main__", + "__main__._use_token_id", + "__main__._use_token_id.read" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 61, + "end_line": 12, + "input_file": { + "filename": "autogen/starknet/storage_var/_use_token_id/impl.cairo" + }, + "parent_location": [ + { + "end_col": 41, + "end_line": 7, + "input_file": { + "filename": "autogen/starknet/storage_var/_use_token_id/decl.cairo" + }, + "parent_location": [ + { + "end_col": 36, + "end_line": 13, + "input_file": { + "filename": "autogen/starknet/storage_var/_use_token_id/impl.cairo" + }, + "start_col": 30, + "start_line": 13 + }, + "While trying to retrieve the implicit argument 'pedersen_ptr' in:" + ], + "start_col": 15, + "start_line": 7 + }, + "While expanding the reference 'pedersen_ptr' in:" + ], + "start_col": 35, + "start_line": 12 + } + }, + "397": { + "accessible_scopes": [ + "__main__", + "__main__._use_token_id", + "__main__._use_token_id.read" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 78, + "end_line": 12, + "input_file": { + "filename": "autogen/starknet/storage_var/_use_token_id/impl.cairo" + }, + "parent_location": [ + { + "end_col": 58, + "end_line": 7, + "input_file": { + "filename": "autogen/starknet/storage_var/_use_token_id/decl.cairo" + }, + "parent_location": [ + { + "end_col": 36, + "end_line": 13, + "input_file": { + "filename": "autogen/starknet/storage_var/_use_token_id/impl.cairo" + }, + "start_col": 30, + "start_line": 13 + }, + "While trying to retrieve the implicit argument 'range_check_ptr' in:" + ], + "start_col": 43, + "start_line": 7 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 63, + "start_line": 12 + } + }, + "398": { + "accessible_scopes": [ + "__main__", + "__main__._use_token_id", + "__main__._use_token_id.read" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 36, + "end_line": 13, + "input_file": { + "filename": "autogen/starknet/storage_var/_use_token_id/impl.cairo" + }, + "start_col": 30, + "start_line": 13 + } + }, + "400": { + "accessible_scopes": [ + "__main__", + "__main__._use_token_id", + "__main__._use_token_id.read" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 33, + "end_line": 12, + "input_file": { + "filename": "autogen/starknet/storage_var/_use_token_id/impl.cairo" + }, + "parent_location": [ + { + "end_col": 37, + "end_line": 352, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/starknet/common/syscalls.cairo" + }, + "parent_location": [ + { + "end_col": 75, + "end_line": 14, + "input_file": { + "filename": "autogen/starknet/storage_var/_use_token_id/impl.cairo" + }, + "start_col": 37, + "start_line": 14 + }, + "While trying to retrieve the implicit argument 'syscall_ptr' in:" + ], + "start_col": 19, + "start_line": 352 + }, + "While expanding the reference 'syscall_ptr' in:" + ], + "start_col": 15, + "start_line": 12 + } + }, + "401": { + "accessible_scopes": [ + "__main__", + "__main__._use_token_id", + "__main__._use_token_id.read" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 26, + "end_line": 13, + "input_file": { + "filename": "autogen/starknet/storage_var/_use_token_id/impl.cairo" + }, + "parent_location": [ + { + "end_col": 70, + "end_line": 14, + "input_file": { + "filename": "autogen/starknet/storage_var/_use_token_id/impl.cairo" + }, + "start_col": 58, + "start_line": 14 + }, + "While expanding the reference 'storage_addr' in:" + ], + "start_col": 14, + "start_line": 13 + } + }, + "402": { + "accessible_scopes": [ + "__main__", + "__main__._use_token_id", + "__main__._use_token_id.read" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 75, + "end_line": 14, + "input_file": { + "filename": "autogen/starknet/storage_var/_use_token_id/impl.cairo" + }, + "start_col": 37, + "start_line": 14 + } + }, + "404": { + "accessible_scopes": [ + "__main__", + "__main__._use_token_id", + "__main__._use_token_id.read" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 37, + "end_line": 352, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/starknet/common/syscalls.cairo" + }, + "parent_location": [ + { + "end_col": 75, + "end_line": 14, + "input_file": { + "filename": "autogen/starknet/storage_var/_use_token_id/impl.cairo" + }, + "parent_location": [ + { + "end_col": 42, + "end_line": 16, + "input_file": { + "filename": "autogen/starknet/storage_var/_use_token_id/impl.cairo" + }, + "start_col": 31, + "start_line": 16 + }, + "While expanding the reference 'syscall_ptr' in:" + ], + "start_col": 37, + "start_line": 14 + }, + "While trying to update the implicit return value 'syscall_ptr' in:" + ], + "start_col": 19, + "start_line": 352 + } + }, + "405": { + "accessible_scopes": [ + "__main__", + "__main__._use_token_id", + "__main__._use_token_id.read" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 41, + "end_line": 7, + "input_file": { + "filename": "autogen/starknet/storage_var/_use_token_id/decl.cairo" + }, + "parent_location": [ + { + "end_col": 36, + "end_line": 13, + "input_file": { + "filename": "autogen/starknet/storage_var/_use_token_id/impl.cairo" + }, + "parent_location": [ + { + "end_col": 44, + "end_line": 17, + "input_file": { + "filename": "autogen/starknet/storage_var/_use_token_id/impl.cairo" + }, + "start_col": 32, + "start_line": 17 + }, + "While expanding the reference 'pedersen_ptr' in:" + ], + "start_col": 30, + "start_line": 13 + }, + "While trying to update the implicit return value 'pedersen_ptr' in:" + ], + "start_col": 15, + "start_line": 7 + } + }, + "406": { + "accessible_scopes": [ + "__main__", + "__main__._use_token_id", + "__main__._use_token_id.read" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 58, + "end_line": 7, + "input_file": { + "filename": "autogen/starknet/storage_var/_use_token_id/decl.cairo" + }, + "parent_location": [ + { + "end_col": 36, + "end_line": 13, + "input_file": { + "filename": "autogen/starknet/storage_var/_use_token_id/impl.cairo" + }, + "parent_location": [ + { + "end_col": 50, + "end_line": 18, + "input_file": { + "filename": "autogen/starknet/storage_var/_use_token_id/impl.cairo" + }, + "start_col": 35, + "start_line": 18 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 30, + "start_line": 13 + }, + "While trying to update the implicit return value 'range_check_ptr' in:" + ], + "start_col": 43, + "start_line": 7 + } + }, + "407": { + "accessible_scopes": [ + "__main__", + "__main__._use_token_id", + "__main__._use_token_id.read" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 33, + "end_line": 14, + "input_file": { + "filename": "autogen/starknet/storage_var/_use_token_id/impl.cairo" + }, + "parent_location": [ + { + "end_col": 64, + "end_line": 19, + "input_file": { + "filename": "autogen/starknet/storage_var/_use_token_id/impl.cairo" + }, + "start_col": 45, + "start_line": 19 + }, + "While expanding the reference '__storage_var_temp0' in:" + ], + "start_col": 14, + "start_line": 14 + } + }, + "408": { + "accessible_scopes": [ + "__main__", + "__main__._use_token_id", + "__main__._use_token_id.read" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 55, + "end_line": 20, + "input_file": { + "filename": "autogen/starknet/storage_var/_use_token_id/impl.cairo" + }, + "start_col": 9, + "start_line": 20 + } + }, + "409": { + "accessible_scopes": [ + "__main__", + "__main__._use_token_id", + "__main__._use_token_id.write" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 62, + "end_line": 23, + "input_file": { + "filename": "autogen/starknet/storage_var/_use_token_id/impl.cairo" + }, + "parent_location": [ + { + "end_col": 41, + "end_line": 7, + "input_file": { + "filename": "autogen/starknet/storage_var/_use_token_id/decl.cairo" + }, + "parent_location": [ + { + "end_col": 36, + "end_line": 24, + "input_file": { + "filename": "autogen/starknet/storage_var/_use_token_id/impl.cairo" + }, + "start_col": 30, + "start_line": 24 + }, + "While trying to retrieve the implicit argument 'pedersen_ptr' in:" + ], + "start_col": 15, + "start_line": 7 + }, + "While expanding the reference 'pedersen_ptr' in:" + ], + "start_col": 36, + "start_line": 23 + } + }, + "410": { + "accessible_scopes": [ + "__main__", + "__main__._use_token_id", + "__main__._use_token_id.write" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 79, + "end_line": 23, + "input_file": { + "filename": "autogen/starknet/storage_var/_use_token_id/impl.cairo" + }, + "parent_location": [ + { + "end_col": 58, + "end_line": 7, + "input_file": { + "filename": "autogen/starknet/storage_var/_use_token_id/decl.cairo" + }, + "parent_location": [ + { + "end_col": 36, + "end_line": 24, + "input_file": { + "filename": "autogen/starknet/storage_var/_use_token_id/impl.cairo" + }, + "start_col": 30, + "start_line": 24 + }, + "While trying to retrieve the implicit argument 'range_check_ptr' in:" + ], + "start_col": 43, + "start_line": 7 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 64, + "start_line": 23 + } + }, + "411": { + "accessible_scopes": [ + "__main__", + "__main__._use_token_id", + "__main__._use_token_id.write" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 36, + "end_line": 24, + "input_file": { + "filename": "autogen/starknet/storage_var/_use_token_id/impl.cairo" + }, + "start_col": 30, + "start_line": 24 + } + }, + "413": { + "accessible_scopes": [ + "__main__", + "__main__._use_token_id", + "__main__._use_token_id.write" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 34, + "end_line": 23, + "input_file": { + "filename": "autogen/starknet/storage_var/_use_token_id/impl.cairo" + }, + "parent_location": [ + { + "end_col": 38, + "end_line": 370, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/starknet/common/syscalls.cairo" + }, + "parent_location": [ + { + "end_col": 80, + "end_line": 25, + "input_file": { + "filename": "autogen/starknet/storage_var/_use_token_id/impl.cairo" + }, + "start_col": 9, + "start_line": 25 + }, + "While trying to retrieve the implicit argument 'syscall_ptr' in:" + ], + "start_col": 20, + "start_line": 370 + }, + "While expanding the reference 'syscall_ptr' in:" + ], + "start_col": 16, + "start_line": 23 + } + }, + "414": { + "accessible_scopes": [ + "__main__", + "__main__._use_token_id", + "__main__._use_token_id.write" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 26, + "end_line": 24, + "input_file": { + "filename": "autogen/starknet/storage_var/_use_token_id/impl.cairo" + }, + "parent_location": [ + { + "end_col": 43, + "end_line": 25, + "input_file": { + "filename": "autogen/starknet/storage_var/_use_token_id/impl.cairo" + }, + "start_col": 31, + "start_line": 25 + }, + "While expanding the reference 'storage_addr' in:" + ], + "start_col": 14, + "start_line": 24 + } + }, + "415": { + "accessible_scopes": [ + "__main__", + "__main__._use_token_id", + "__main__._use_token_id.write" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 79, + "end_line": 25, + "input_file": { + "filename": "autogen/starknet/storage_var/_use_token_id/impl.cairo" + }, + "start_col": 55, + "start_line": 25 + } + }, + "416": { + "accessible_scopes": [ + "__main__", + "__main__._use_token_id", + "__main__._use_token_id.write" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 80, + "end_line": 25, + "input_file": { + "filename": "autogen/starknet/storage_var/_use_token_id/impl.cairo" + }, + "start_col": 9, + "start_line": 25 + } + }, + "418": { + "accessible_scopes": [ + "__main__", + "__main__._use_token_id", + "__main__._use_token_id.write" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 41, + "end_line": 7, + "input_file": { + "filename": "autogen/starknet/storage_var/_use_token_id/decl.cairo" + }, + "parent_location": [ + { + "end_col": 36, + "end_line": 24, + "input_file": { + "filename": "autogen/starknet/storage_var/_use_token_id/impl.cairo" + }, + "parent_location": [ + { + "end_col": 62, + "end_line": 19, + "input_file": { + "filename": "autogen/starknet/storage_var/_use_token_id/decl.cairo" + }, + "parent_location": [ + { + "end_col": 19, + "end_line": 26, + "input_file": { + "filename": "autogen/starknet/storage_var/_use_token_id/impl.cairo" + }, + "start_col": 9, + "start_line": 26 + }, + "While trying to retrieve the implicit argument 'pedersen_ptr' in:" + ], + "start_col": 36, + "start_line": 19 + }, + "While expanding the reference 'pedersen_ptr' in:" + ], + "start_col": 30, + "start_line": 24 + }, + "While trying to update the implicit return value 'pedersen_ptr' in:" + ], + "start_col": 15, + "start_line": 7 + } + }, + "419": { + "accessible_scopes": [ + "__main__", + "__main__._use_token_id", + "__main__._use_token_id.write" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 58, + "end_line": 7, + "input_file": { + "filename": "autogen/starknet/storage_var/_use_token_id/decl.cairo" + }, + "parent_location": [ + { + "end_col": 36, + "end_line": 24, + "input_file": { + "filename": "autogen/starknet/storage_var/_use_token_id/impl.cairo" + }, + "parent_location": [ + { + "end_col": 79, + "end_line": 19, + "input_file": { + "filename": "autogen/starknet/storage_var/_use_token_id/decl.cairo" + }, + "parent_location": [ + { + "end_col": 19, + "end_line": 26, + "input_file": { + "filename": "autogen/starknet/storage_var/_use_token_id/impl.cairo" + }, + "start_col": 9, + "start_line": 26 + }, + "While trying to retrieve the implicit argument 'range_check_ptr' in:" + ], + "start_col": 64, + "start_line": 19 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 30, + "start_line": 24 + }, + "While trying to update the implicit return value 'range_check_ptr' in:" + ], + "start_col": 43, + "start_line": 7 + } + }, + "420": { + "accessible_scopes": [ + "__main__", + "__main__._use_token_id", + "__main__._use_token_id.write" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 19, + "end_line": 26, + "input_file": { + "filename": "autogen/starknet/storage_var/_use_token_id/impl.cairo" + }, + "start_col": 9, + "start_line": 26 + } + }, + "421": { + "accessible_scopes": [ + "__main__", + "__main__._base_uri_len", + "__main__._base_uri_len.addr" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 41, + "end_line": 7, + "input_file": { + "filename": "autogen/starknet/storage_var/_base_uri_len/impl.cairo" + }, + "parent_location": [ + { + "end_col": 41, + "end_line": 7, + "input_file": { + "filename": "autogen/starknet/storage_var/_base_uri_len/decl.cairo" + }, + "parent_location": [ + { + "end_col": 26, + "end_line": 9, + "input_file": { + "filename": "autogen/starknet/storage_var/_base_uri_len/impl.cairo" + }, + "start_col": 9, + "start_line": 9 + }, + "While trying to retrieve the implicit argument 'pedersen_ptr' in:" + ], + "start_col": 15, + "start_line": 7 + }, + "While expanding the reference 'pedersen_ptr' in:" + ], + "start_col": 15, + "start_line": 7 + } + }, + "422": { + "accessible_scopes": [ + "__main__", + "__main__._base_uri_len", + "__main__._base_uri_len.addr" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 58, + "end_line": 7, + "input_file": { + "filename": "autogen/starknet/storage_var/_base_uri_len/impl.cairo" + }, + "parent_location": [ + { + "end_col": 58, + "end_line": 7, + "input_file": { + "filename": "autogen/starknet/storage_var/_base_uri_len/decl.cairo" + }, + "parent_location": [ + { + "end_col": 26, + "end_line": 9, + "input_file": { + "filename": "autogen/starknet/storage_var/_base_uri_len/impl.cairo" + }, + "start_col": 9, + "start_line": 9 + }, + "While trying to retrieve the implicit argument 'range_check_ptr' in:" + ], + "start_col": 43, + "start_line": 7 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 43, + "start_line": 7 + } + }, + "423": { + "accessible_scopes": [ + "__main__", + "__main__._base_uri_len", + "__main__._base_uri_len.addr" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 95, + "end_line": 8, + "input_file": { + "filename": "autogen/starknet/storage_var/_base_uri_len/impl.cairo" + }, + "parent_location": [ + { + "end_col": 24, + "end_line": 9, + "input_file": { + "filename": "autogen/starknet/storage_var/_base_uri_len/impl.cairo" + }, + "start_col": 21, + "start_line": 9 + }, + "While expanding the reference 'res' in:" + ], + "start_col": 19, + "start_line": 8 + } + }, + "425": { + "accessible_scopes": [ + "__main__", + "__main__._base_uri_len", + "__main__._base_uri_len.addr" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 26, + "end_line": 9, + "input_file": { + "filename": "autogen/starknet/storage_var/_base_uri_len/impl.cairo" + }, + "start_col": 9, + "start_line": 9 + } + }, + "426": { + "accessible_scopes": [ + "__main__", + "__main__._base_uri_len", + "__main__._base_uri_len.read" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 61, + "end_line": 12, + "input_file": { + "filename": "autogen/starknet/storage_var/_base_uri_len/impl.cairo" + }, + "parent_location": [ + { + "end_col": 41, + "end_line": 7, + "input_file": { + "filename": "autogen/starknet/storage_var/_base_uri_len/decl.cairo" + }, + "parent_location": [ + { + "end_col": 36, + "end_line": 13, + "input_file": { + "filename": "autogen/starknet/storage_var/_base_uri_len/impl.cairo" + }, + "start_col": 30, + "start_line": 13 + }, + "While trying to retrieve the implicit argument 'pedersen_ptr' in:" + ], + "start_col": 15, + "start_line": 7 + }, + "While expanding the reference 'pedersen_ptr' in:" + ], + "start_col": 35, + "start_line": 12 + } + }, + "427": { + "accessible_scopes": [ + "__main__", + "__main__._base_uri_len", + "__main__._base_uri_len.read" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 78, + "end_line": 12, + "input_file": { + "filename": "autogen/starknet/storage_var/_base_uri_len/impl.cairo" + }, + "parent_location": [ + { + "end_col": 58, + "end_line": 7, + "input_file": { + "filename": "autogen/starknet/storage_var/_base_uri_len/decl.cairo" + }, + "parent_location": [ + { + "end_col": 36, + "end_line": 13, + "input_file": { + "filename": "autogen/starknet/storage_var/_base_uri_len/impl.cairo" + }, + "start_col": 30, + "start_line": 13 + }, + "While trying to retrieve the implicit argument 'range_check_ptr' in:" + ], + "start_col": 43, + "start_line": 7 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 63, + "start_line": 12 + } + }, + "428": { + "accessible_scopes": [ + "__main__", + "__main__._base_uri_len", + "__main__._base_uri_len.read" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 36, + "end_line": 13, + "input_file": { + "filename": "autogen/starknet/storage_var/_base_uri_len/impl.cairo" + }, + "start_col": 30, + "start_line": 13 + } + }, + "430": { + "accessible_scopes": [ + "__main__", + "__main__._base_uri_len", + "__main__._base_uri_len.read" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 33, + "end_line": 12, + "input_file": { + "filename": "autogen/starknet/storage_var/_base_uri_len/impl.cairo" + }, + "parent_location": [ + { + "end_col": 37, + "end_line": 352, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/starknet/common/syscalls.cairo" + }, + "parent_location": [ + { + "end_col": 75, + "end_line": 14, + "input_file": { + "filename": "autogen/starknet/storage_var/_base_uri_len/impl.cairo" + }, + "start_col": 37, + "start_line": 14 + }, + "While trying to retrieve the implicit argument 'syscall_ptr' in:" + ], + "start_col": 19, + "start_line": 352 + }, + "While expanding the reference 'syscall_ptr' in:" + ], + "start_col": 15, + "start_line": 12 + } + }, + "431": { + "accessible_scopes": [ + "__main__", + "__main__._base_uri_len", + "__main__._base_uri_len.read" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 26, + "end_line": 13, + "input_file": { + "filename": "autogen/starknet/storage_var/_base_uri_len/impl.cairo" + }, + "parent_location": [ + { + "end_col": 70, + "end_line": 14, + "input_file": { + "filename": "autogen/starknet/storage_var/_base_uri_len/impl.cairo" + }, + "start_col": 58, + "start_line": 14 + }, + "While expanding the reference 'storage_addr' in:" + ], + "start_col": 14, + "start_line": 13 + } + }, + "432": { + "accessible_scopes": [ + "__main__", + "__main__._base_uri_len", + "__main__._base_uri_len.read" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 75, + "end_line": 14, + "input_file": { + "filename": "autogen/starknet/storage_var/_base_uri_len/impl.cairo" + }, + "start_col": 37, + "start_line": 14 + } + }, + "434": { + "accessible_scopes": [ + "__main__", + "__main__._base_uri_len", + "__main__._base_uri_len.read" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 37, + "end_line": 352, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/starknet/common/syscalls.cairo" + }, + "parent_location": [ + { + "end_col": 75, + "end_line": 14, + "input_file": { + "filename": "autogen/starknet/storage_var/_base_uri_len/impl.cairo" + }, + "parent_location": [ + { + "end_col": 42, + "end_line": 16, + "input_file": { + "filename": "autogen/starknet/storage_var/_base_uri_len/impl.cairo" + }, + "start_col": 31, + "start_line": 16 + }, + "While expanding the reference 'syscall_ptr' in:" + ], + "start_col": 37, + "start_line": 14 + }, + "While trying to update the implicit return value 'syscall_ptr' in:" + ], + "start_col": 19, + "start_line": 352 + } + }, + "435": { + "accessible_scopes": [ + "__main__", + "__main__._base_uri_len", + "__main__._base_uri_len.read" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 41, + "end_line": 7, + "input_file": { + "filename": "autogen/starknet/storage_var/_base_uri_len/decl.cairo" + }, + "parent_location": [ + { + "end_col": 36, + "end_line": 13, + "input_file": { + "filename": "autogen/starknet/storage_var/_base_uri_len/impl.cairo" + }, + "parent_location": [ + { + "end_col": 44, + "end_line": 17, + "input_file": { + "filename": "autogen/starknet/storage_var/_base_uri_len/impl.cairo" + }, + "start_col": 32, + "start_line": 17 + }, + "While expanding the reference 'pedersen_ptr' in:" + ], + "start_col": 30, + "start_line": 13 + }, + "While trying to update the implicit return value 'pedersen_ptr' in:" + ], + "start_col": 15, + "start_line": 7 + } + }, + "436": { + "accessible_scopes": [ + "__main__", + "__main__._base_uri_len", + "__main__._base_uri_len.read" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 58, + "end_line": 7, + "input_file": { + "filename": "autogen/starknet/storage_var/_base_uri_len/decl.cairo" + }, + "parent_location": [ + { + "end_col": 36, + "end_line": 13, + "input_file": { + "filename": "autogen/starknet/storage_var/_base_uri_len/impl.cairo" + }, + "parent_location": [ + { + "end_col": 50, + "end_line": 18, + "input_file": { + "filename": "autogen/starknet/storage_var/_base_uri_len/impl.cairo" + }, + "start_col": 35, + "start_line": 18 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 30, + "start_line": 13 + }, + "While trying to update the implicit return value 'range_check_ptr' in:" + ], + "start_col": 43, + "start_line": 7 + } + }, + "437": { + "accessible_scopes": [ + "__main__", + "__main__._base_uri_len", + "__main__._base_uri_len.read" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 33, + "end_line": 14, + "input_file": { + "filename": "autogen/starknet/storage_var/_base_uri_len/impl.cairo" + }, + "parent_location": [ + { + "end_col": 64, + "end_line": 19, + "input_file": { + "filename": "autogen/starknet/storage_var/_base_uri_len/impl.cairo" + }, + "start_col": 45, + "start_line": 19 + }, + "While expanding the reference '__storage_var_temp0' in:" + ], + "start_col": 14, + "start_line": 14 + } + }, + "438": { + "accessible_scopes": [ + "__main__", + "__main__._base_uri_len", + "__main__._base_uri_len.read" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 55, + "end_line": 20, + "input_file": { + "filename": "autogen/starknet/storage_var/_base_uri_len/impl.cairo" + }, + "start_col": 9, + "start_line": 20 + } + }, + "439": { + "accessible_scopes": [ + "__main__", + "__main__._base_uri_len", + "__main__._base_uri_len.write" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 62, + "end_line": 23, + "input_file": { + "filename": "autogen/starknet/storage_var/_base_uri_len/impl.cairo" + }, + "parent_location": [ + { + "end_col": 41, + "end_line": 7, + "input_file": { + "filename": "autogen/starknet/storage_var/_base_uri_len/decl.cairo" + }, + "parent_location": [ + { + "end_col": 36, + "end_line": 24, + "input_file": { + "filename": "autogen/starknet/storage_var/_base_uri_len/impl.cairo" + }, + "start_col": 30, + "start_line": 24 + }, + "While trying to retrieve the implicit argument 'pedersen_ptr' in:" + ], + "start_col": 15, + "start_line": 7 + }, + "While expanding the reference 'pedersen_ptr' in:" + ], + "start_col": 36, + "start_line": 23 + } + }, + "440": { + "accessible_scopes": [ + "__main__", + "__main__._base_uri_len", + "__main__._base_uri_len.write" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 79, + "end_line": 23, + "input_file": { + "filename": "autogen/starknet/storage_var/_base_uri_len/impl.cairo" + }, + "parent_location": [ + { + "end_col": 58, + "end_line": 7, + "input_file": { + "filename": "autogen/starknet/storage_var/_base_uri_len/decl.cairo" + }, + "parent_location": [ + { + "end_col": 36, + "end_line": 24, + "input_file": { + "filename": "autogen/starknet/storage_var/_base_uri_len/impl.cairo" + }, + "start_col": 30, + "start_line": 24 + }, + "While trying to retrieve the implicit argument 'range_check_ptr' in:" + ], + "start_col": 43, + "start_line": 7 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 64, + "start_line": 23 + } + }, + "441": { + "accessible_scopes": [ + "__main__", + "__main__._base_uri_len", + "__main__._base_uri_len.write" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 36, + "end_line": 24, + "input_file": { + "filename": "autogen/starknet/storage_var/_base_uri_len/impl.cairo" + }, + "start_col": 30, + "start_line": 24 + } + }, + "443": { + "accessible_scopes": [ + "__main__", + "__main__._base_uri_len", + "__main__._base_uri_len.write" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 34, + "end_line": 23, + "input_file": { + "filename": "autogen/starknet/storage_var/_base_uri_len/impl.cairo" + }, + "parent_location": [ + { + "end_col": 38, + "end_line": 370, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/starknet/common/syscalls.cairo" + }, + "parent_location": [ + { + "end_col": 80, + "end_line": 25, + "input_file": { + "filename": "autogen/starknet/storage_var/_base_uri_len/impl.cairo" + }, + "start_col": 9, + "start_line": 25 + }, + "While trying to retrieve the implicit argument 'syscall_ptr' in:" + ], + "start_col": 20, + "start_line": 370 + }, + "While expanding the reference 'syscall_ptr' in:" + ], + "start_col": 16, + "start_line": 23 + } + }, + "444": { + "accessible_scopes": [ + "__main__", + "__main__._base_uri_len", + "__main__._base_uri_len.write" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 26, + "end_line": 24, + "input_file": { + "filename": "autogen/starknet/storage_var/_base_uri_len/impl.cairo" + }, + "parent_location": [ + { + "end_col": 43, + "end_line": 25, + "input_file": { + "filename": "autogen/starknet/storage_var/_base_uri_len/impl.cairo" + }, + "start_col": 31, + "start_line": 25 + }, + "While expanding the reference 'storage_addr' in:" + ], + "start_col": 14, + "start_line": 24 + } + }, + "445": { + "accessible_scopes": [ + "__main__", + "__main__._base_uri_len", + "__main__._base_uri_len.write" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 79, + "end_line": 25, + "input_file": { + "filename": "autogen/starknet/storage_var/_base_uri_len/impl.cairo" + }, + "start_col": 55, + "start_line": 25 + } + }, + "446": { + "accessible_scopes": [ + "__main__", + "__main__._base_uri_len", + "__main__._base_uri_len.write" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 80, + "end_line": 25, + "input_file": { + "filename": "autogen/starknet/storage_var/_base_uri_len/impl.cairo" + }, + "start_col": 9, + "start_line": 25 + } + }, + "448": { + "accessible_scopes": [ + "__main__", + "__main__._base_uri_len", + "__main__._base_uri_len.write" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 41, + "end_line": 7, + "input_file": { + "filename": "autogen/starknet/storage_var/_base_uri_len/decl.cairo" + }, + "parent_location": [ + { + "end_col": 36, + "end_line": 24, + "input_file": { + "filename": "autogen/starknet/storage_var/_base_uri_len/impl.cairo" + }, + "parent_location": [ + { + "end_col": 62, + "end_line": 19, + "input_file": { + "filename": "autogen/starknet/storage_var/_base_uri_len/decl.cairo" + }, + "parent_location": [ + { + "end_col": 19, + "end_line": 26, + "input_file": { + "filename": "autogen/starknet/storage_var/_base_uri_len/impl.cairo" + }, + "start_col": 9, + "start_line": 26 + }, + "While trying to retrieve the implicit argument 'pedersen_ptr' in:" + ], + "start_col": 36, + "start_line": 19 + }, + "While expanding the reference 'pedersen_ptr' in:" + ], + "start_col": 30, + "start_line": 24 + }, + "While trying to update the implicit return value 'pedersen_ptr' in:" + ], + "start_col": 15, + "start_line": 7 + } + }, + "449": { + "accessible_scopes": [ + "__main__", + "__main__._base_uri_len", + "__main__._base_uri_len.write" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 58, + "end_line": 7, + "input_file": { + "filename": "autogen/starknet/storage_var/_base_uri_len/decl.cairo" + }, + "parent_location": [ + { + "end_col": 36, + "end_line": 24, + "input_file": { + "filename": "autogen/starknet/storage_var/_base_uri_len/impl.cairo" + }, + "parent_location": [ + { + "end_col": 79, + "end_line": 19, + "input_file": { + "filename": "autogen/starknet/storage_var/_base_uri_len/decl.cairo" + }, + "parent_location": [ + { + "end_col": 19, + "end_line": 26, + "input_file": { + "filename": "autogen/starknet/storage_var/_base_uri_len/impl.cairo" + }, + "start_col": 9, + "start_line": 26 + }, + "While trying to retrieve the implicit argument 'range_check_ptr' in:" + ], + "start_col": 64, + "start_line": 19 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 30, + "start_line": 24 + }, + "While trying to update the implicit return value 'range_check_ptr' in:" + ], + "start_col": 43, + "start_line": 7 + } + }, + "450": { + "accessible_scopes": [ + "__main__", + "__main__._base_uri_len", + "__main__._base_uri_len.write" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 19, + "end_line": 26, + "input_file": { + "filename": "autogen/starknet/storage_var/_base_uri_len/impl.cairo" + }, + "start_col": 9, + "start_line": 26 + } + }, + "451": { + "accessible_scopes": [ + "__main__", + "__main__._base_uri", + "__main__._base_uri.addr" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 41, + "end_line": 7, + "input_file": { + "filename": "autogen/starknet/storage_var/_base_uri/impl.cairo" + }, + "parent_location": [ + { + "end_col": 48, + "end_line": 9, + "input_file": { + "filename": "autogen/starknet/storage_var/_base_uri/impl.cairo" + }, + "start_col": 36, + "start_line": 9 + }, + "While expanding the reference 'pedersen_ptr' in:" + ], + "start_col": 15, + "start_line": 7 + } + }, + "452": { + "accessible_scopes": [ + "__main__", + "__main__._base_uri", + "__main__._base_uri.addr" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 94, + "end_line": 8, + "input_file": { + "filename": "autogen/starknet/storage_var/_base_uri/impl.cairo" + }, + "parent_location": [ + { + "end_col": 53, + "end_line": 9, + "input_file": { + "filename": "autogen/starknet/storage_var/_base_uri/impl.cairo" + }, + "start_col": 50, + "start_line": 9 + }, + "While expanding the reference 'res' in:" + ], + "start_col": 19, + "start_line": 8 + } + }, + "454": { + "accessible_scopes": [ + "__main__", + "__main__._base_uri", + "__main__._base_uri.addr" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 77, + "end_line": 9, + "input_file": { + "filename": "autogen/starknet/storage_var/_base_uri/impl.cairo" + }, + "start_col": 55, + "start_line": 9 + } + }, + "455": { + "accessible_scopes": [ + "__main__", + "__main__._base_uri", + "__main__._base_uri.addr" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 78, + "end_line": 9, + "input_file": { + "filename": "autogen/starknet/storage_var/_base_uri/impl.cairo" + }, + "start_col": 21, + "start_line": 9 + } + }, + "457": { + "accessible_scopes": [ + "__main__", + "__main__._base_uri", + "__main__._base_uri.addr" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 58, + "end_line": 7, + "input_file": { + "filename": "autogen/starknet/storage_var/_base_uri/impl.cairo" + }, + "parent_location": [ + { + "end_col": 39, + "end_line": 12, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/starknet/common/storage.cairo" + }, + "parent_location": [ + { + "end_col": 48, + "end_line": 10, + "input_file": { + "filename": "autogen/starknet/storage_var/_base_uri/impl.cairo" + }, + "start_col": 21, + "start_line": 10 + }, + "While trying to retrieve the implicit argument 'range_check_ptr' in:" + ], + "start_col": 24, + "start_line": 12 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 43, + "start_line": 7 + } + }, + "458": { + "accessible_scopes": [ + "__main__", + "__main__._base_uri", + "__main__._base_uri.addr" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 17, + "end_line": 9, + "input_file": { + "filename": "autogen/starknet/storage_var/_base_uri/impl.cairo" + }, + "parent_location": [ + { + "end_col": 47, + "end_line": 10, + "input_file": { + "filename": "autogen/starknet/storage_var/_base_uri/impl.cairo" + }, + "start_col": 44, + "start_line": 10 + }, + "While expanding the reference 'res' in:" + ], + "start_col": 14, + "start_line": 9 + } + }, + "459": { + "accessible_scopes": [ + "__main__", + "__main__._base_uri", + "__main__._base_uri.addr" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 48, + "end_line": 10, + "input_file": { + "filename": "autogen/starknet/storage_var/_base_uri/impl.cairo" + }, + "start_col": 21, + "start_line": 10 + } + }, + "461": { + "accessible_scopes": [ + "__main__", + "__main__._base_uri", + "__main__._base_uri.addr" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 48, + "end_line": 9, + "input_file": { + "filename": "autogen/starknet/storage_var/_base_uri/impl.cairo" + }, + "parent_location": [ + { + "end_col": 41, + "end_line": 7, + "input_file": { + "filename": "autogen/starknet/storage_var/_base_uri/decl.cairo" + }, + "parent_location": [ + { + "end_col": 26, + "end_line": 11, + "input_file": { + "filename": "autogen/starknet/storage_var/_base_uri/impl.cairo" + }, + "start_col": 9, + "start_line": 11 + }, + "While trying to retrieve the implicit argument 'pedersen_ptr' in:" + ], + "start_col": 15, + "start_line": 7 + }, + "While expanding the reference 'pedersen_ptr' in:" + ], + "start_col": 36, + "start_line": 9 + } + }, + "462": { + "accessible_scopes": [ + "__main__", + "__main__._base_uri", + "__main__._base_uri.addr" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 39, + "end_line": 12, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/starknet/common/storage.cairo" + }, + "parent_location": [ + { + "end_col": 48, + "end_line": 10, + "input_file": { + "filename": "autogen/starknet/storage_var/_base_uri/impl.cairo" + }, + "parent_location": [ + { + "end_col": 58, + "end_line": 7, + "input_file": { + "filename": "autogen/starknet/storage_var/_base_uri/decl.cairo" + }, + "parent_location": [ + { + "end_col": 26, + "end_line": 11, + "input_file": { + "filename": "autogen/starknet/storage_var/_base_uri/impl.cairo" + }, + "start_col": 9, + "start_line": 11 + }, + "While trying to retrieve the implicit argument 'range_check_ptr' in:" + ], + "start_col": 43, + "start_line": 7 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 21, + "start_line": 10 + }, + "While trying to update the implicit return value 'range_check_ptr' in:" + ], + "start_col": 24, + "start_line": 12 + } + }, + "463": { + "accessible_scopes": [ + "__main__", + "__main__._base_uri", + "__main__._base_uri.addr" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 17, + "end_line": 10, + "input_file": { + "filename": "autogen/starknet/storage_var/_base_uri/impl.cairo" + }, + "parent_location": [ + { + "end_col": 24, + "end_line": 11, + "input_file": { + "filename": "autogen/starknet/storage_var/_base_uri/impl.cairo" + }, + "start_col": 21, + "start_line": 11 + }, + "While expanding the reference 'res' in:" + ], + "start_col": 14, + "start_line": 10 + } + }, + "464": { + "accessible_scopes": [ + "__main__", + "__main__._base_uri", + "__main__._base_uri.addr" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 26, + "end_line": 11, + "input_file": { + "filename": "autogen/starknet/storage_var/_base_uri/impl.cairo" + }, + "start_col": 9, + "start_line": 11 + } + }, + "465": { + "accessible_scopes": [ + "__main__", + "__main__._base_uri", + "__main__._base_uri.read" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 61, + "end_line": 14, + "input_file": { + "filename": "autogen/starknet/storage_var/_base_uri/impl.cairo" + }, + "parent_location": [ + { + "end_col": 41, + "end_line": 7, + "input_file": { + "filename": "autogen/starknet/storage_var/_base_uri/decl.cairo" + }, + "parent_location": [ + { + "end_col": 41, + "end_line": 17, + "input_file": { + "filename": "autogen/starknet/storage_var/_base_uri/impl.cairo" + }, + "start_col": 30, + "start_line": 17 + }, + "While trying to retrieve the implicit argument 'pedersen_ptr' in:" + ], + "start_col": 15, + "start_line": 7 + }, + "While expanding the reference 'pedersen_ptr' in:" + ], + "start_col": 35, + "start_line": 14 + } + }, + "466": { + "accessible_scopes": [ + "__main__", + "__main__._base_uri", + "__main__._base_uri.read" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 78, + "end_line": 14, + "input_file": { + "filename": "autogen/starknet/storage_var/_base_uri/impl.cairo" + }, + "parent_location": [ + { + "end_col": 58, + "end_line": 7, + "input_file": { + "filename": "autogen/starknet/storage_var/_base_uri/decl.cairo" + }, + "parent_location": [ + { + "end_col": 41, + "end_line": 17, + "input_file": { + "filename": "autogen/starknet/storage_var/_base_uri/impl.cairo" + }, + "start_col": 30, + "start_line": 17 + }, + "While trying to retrieve the implicit argument 'range_check_ptr' in:" + ], + "start_col": 43, + "start_line": 7 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 63, + "start_line": 14 + } + }, + "467": { + "accessible_scopes": [ + "__main__", + "__main__._base_uri", + "__main__._base_uri.read" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 91, + "end_line": 14, + "input_file": { + "filename": "autogen/starknet/storage_var/_base_uri/impl.cairo" + }, + "parent_location": [ + { + "end_col": 40, + "end_line": 17, + "input_file": { + "filename": "autogen/starknet/storage_var/_base_uri/impl.cairo" + }, + "start_col": 35, + "start_line": 17 + }, + "While expanding the reference 'index' in:" + ], + "start_col": 80, + "start_line": 14 + } + }, + "468": { + "accessible_scopes": [ + "__main__", + "__main__._base_uri", + "__main__._base_uri.read" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 41, + "end_line": 17, + "input_file": { + "filename": "autogen/starknet/storage_var/_base_uri/impl.cairo" + }, + "start_col": 30, + "start_line": 17 + } + }, + "470": { + "accessible_scopes": [ + "__main__", + "__main__._base_uri", + "__main__._base_uri.read" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 33, + "end_line": 14, + "input_file": { + "filename": "autogen/starknet/storage_var/_base_uri/impl.cairo" + }, + "parent_location": [ + { + "end_col": 37, + "end_line": 352, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/starknet/common/syscalls.cairo" + }, + "parent_location": [ + { + "end_col": 75, + "end_line": 18, + "input_file": { + "filename": "autogen/starknet/storage_var/_base_uri/impl.cairo" + }, + "start_col": 37, + "start_line": 18 + }, + "While trying to retrieve the implicit argument 'syscall_ptr' in:" + ], + "start_col": 19, + "start_line": 352 + }, + "While expanding the reference 'syscall_ptr' in:" + ], + "start_col": 15, + "start_line": 14 + } + }, + "471": { + "accessible_scopes": [ + "__main__", + "__main__._base_uri", + "__main__._base_uri.read" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 26, + "end_line": 17, + "input_file": { + "filename": "autogen/starknet/storage_var/_base_uri/impl.cairo" + }, + "parent_location": [ + { + "end_col": 70, + "end_line": 18, + "input_file": { + "filename": "autogen/starknet/storage_var/_base_uri/impl.cairo" + }, + "start_col": 58, + "start_line": 18 + }, + "While expanding the reference 'storage_addr' in:" + ], + "start_col": 14, + "start_line": 17 + } + }, + "472": { + "accessible_scopes": [ + "__main__", + "__main__._base_uri", + "__main__._base_uri.read" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 75, + "end_line": 18, + "input_file": { + "filename": "autogen/starknet/storage_var/_base_uri/impl.cairo" + }, + "start_col": 37, + "start_line": 18 + } + }, + "474": { + "accessible_scopes": [ + "__main__", + "__main__._base_uri", + "__main__._base_uri.read" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 37, + "end_line": 352, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/starknet/common/syscalls.cairo" + }, + "parent_location": [ + { + "end_col": 75, + "end_line": 18, + "input_file": { + "filename": "autogen/starknet/storage_var/_base_uri/impl.cairo" + }, + "parent_location": [ + { + "end_col": 42, + "end_line": 20, + "input_file": { + "filename": "autogen/starknet/storage_var/_base_uri/impl.cairo" + }, + "start_col": 31, + "start_line": 20 + }, + "While expanding the reference 'syscall_ptr' in:" + ], + "start_col": 37, + "start_line": 18 + }, + "While trying to update the implicit return value 'syscall_ptr' in:" + ], + "start_col": 19, + "start_line": 352 + } + }, + "475": { + "accessible_scopes": [ + "__main__", + "__main__._base_uri", + "__main__._base_uri.read" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 41, + "end_line": 7, + "input_file": { + "filename": "autogen/starknet/storage_var/_base_uri/decl.cairo" + }, + "parent_location": [ + { + "end_col": 41, + "end_line": 17, + "input_file": { + "filename": "autogen/starknet/storage_var/_base_uri/impl.cairo" + }, + "parent_location": [ + { + "end_col": 44, + "end_line": 21, + "input_file": { + "filename": "autogen/starknet/storage_var/_base_uri/impl.cairo" + }, + "start_col": 32, + "start_line": 21 + }, + "While expanding the reference 'pedersen_ptr' in:" + ], + "start_col": 30, + "start_line": 17 + }, + "While trying to update the implicit return value 'pedersen_ptr' in:" + ], + "start_col": 15, + "start_line": 7 + } + }, + "476": { + "accessible_scopes": [ + "__main__", + "__main__._base_uri", + "__main__._base_uri.read" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 58, + "end_line": 7, + "input_file": { + "filename": "autogen/starknet/storage_var/_base_uri/decl.cairo" + }, + "parent_location": [ + { + "end_col": 41, + "end_line": 17, + "input_file": { + "filename": "autogen/starknet/storage_var/_base_uri/impl.cairo" + }, + "parent_location": [ + { + "end_col": 50, + "end_line": 22, + "input_file": { + "filename": "autogen/starknet/storage_var/_base_uri/impl.cairo" + }, + "start_col": 35, + "start_line": 22 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 30, + "start_line": 17 + }, + "While trying to update the implicit return value 'range_check_ptr' in:" + ], + "start_col": 43, + "start_line": 7 + } + }, + "477": { + "accessible_scopes": [ + "__main__", + "__main__._base_uri", + "__main__._base_uri.read" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 33, + "end_line": 18, + "input_file": { + "filename": "autogen/starknet/storage_var/_base_uri/impl.cairo" + }, + "parent_location": [ + { + "end_col": 64, + "end_line": 23, + "input_file": { + "filename": "autogen/starknet/storage_var/_base_uri/impl.cairo" + }, + "start_col": 45, + "start_line": 23 + }, + "While expanding the reference '__storage_var_temp0' in:" + ], + "start_col": 14, + "start_line": 18 + } + }, + "478": { + "accessible_scopes": [ + "__main__", + "__main__._base_uri", + "__main__._base_uri.read" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 55, + "end_line": 24, + "input_file": { + "filename": "autogen/starknet/storage_var/_base_uri/impl.cairo" + }, + "start_col": 9, + "start_line": 24 + } + }, + "479": { + "accessible_scopes": [ + "__main__", + "__main__._base_uri", + "__main__._base_uri.write" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 62, + "end_line": 27, + "input_file": { + "filename": "autogen/starknet/storage_var/_base_uri/impl.cairo" + }, + "parent_location": [ + { + "end_col": 41, + "end_line": 7, + "input_file": { + "filename": "autogen/starknet/storage_var/_base_uri/decl.cairo" + }, + "parent_location": [ + { + "end_col": 41, + "end_line": 30, + "input_file": { + "filename": "autogen/starknet/storage_var/_base_uri/impl.cairo" + }, + "start_col": 30, + "start_line": 30 + }, + "While trying to retrieve the implicit argument 'pedersen_ptr' in:" + ], + "start_col": 15, + "start_line": 7 + }, + "While expanding the reference 'pedersen_ptr' in:" + ], + "start_col": 36, + "start_line": 27 + } + }, + "480": { + "accessible_scopes": [ + "__main__", + "__main__._base_uri", + "__main__._base_uri.write" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 79, + "end_line": 27, + "input_file": { + "filename": "autogen/starknet/storage_var/_base_uri/impl.cairo" + }, + "parent_location": [ + { + "end_col": 58, + "end_line": 7, + "input_file": { + "filename": "autogen/starknet/storage_var/_base_uri/decl.cairo" + }, + "parent_location": [ + { + "end_col": 41, + "end_line": 30, + "input_file": { + "filename": "autogen/starknet/storage_var/_base_uri/impl.cairo" + }, + "start_col": 30, + "start_line": 30 + }, + "While trying to retrieve the implicit argument 'range_check_ptr' in:" + ], + "start_col": 43, + "start_line": 7 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 64, + "start_line": 27 + } + }, + "481": { + "accessible_scopes": [ + "__main__", + "__main__._base_uri", + "__main__._base_uri.write" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 20, + "end_line": 28, + "input_file": { + "filename": "autogen/starknet/storage_var/_base_uri/impl.cairo" + }, + "parent_location": [ + { + "end_col": 40, + "end_line": 30, + "input_file": { + "filename": "autogen/starknet/storage_var/_base_uri/impl.cairo" + }, + "start_col": 35, + "start_line": 30 + }, + "While expanding the reference 'index' in:" + ], + "start_col": 9, + "start_line": 28 + } + }, + "482": { + "accessible_scopes": [ + "__main__", + "__main__._base_uri", + "__main__._base_uri.write" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 41, + "end_line": 30, + "input_file": { + "filename": "autogen/starknet/storage_var/_base_uri/impl.cairo" + }, + "start_col": 30, + "start_line": 30 + } + }, + "484": { + "accessible_scopes": [ + "__main__", + "__main__._base_uri", + "__main__._base_uri.write" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 34, + "end_line": 27, + "input_file": { + "filename": "autogen/starknet/storage_var/_base_uri/impl.cairo" + }, + "parent_location": [ + { + "end_col": 38, + "end_line": 370, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/starknet/common/syscalls.cairo" + }, + "parent_location": [ + { + "end_col": 80, + "end_line": 31, + "input_file": { + "filename": "autogen/starknet/storage_var/_base_uri/impl.cairo" + }, + "start_col": 9, + "start_line": 31 + }, + "While trying to retrieve the implicit argument 'syscall_ptr' in:" + ], + "start_col": 20, + "start_line": 370 + }, + "While expanding the reference 'syscall_ptr' in:" + ], + "start_col": 16, + "start_line": 27 + } + }, + "485": { + "accessible_scopes": [ + "__main__", + "__main__._base_uri", + "__main__._base_uri.write" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 26, + "end_line": 30, + "input_file": { + "filename": "autogen/starknet/storage_var/_base_uri/impl.cairo" + }, + "parent_location": [ + { + "end_col": 43, + "end_line": 31, + "input_file": { + "filename": "autogen/starknet/storage_var/_base_uri/impl.cairo" + }, + "start_col": 31, + "start_line": 31 + }, + "While expanding the reference 'storage_addr' in:" + ], + "start_col": 14, + "start_line": 30 + } + }, + "486": { + "accessible_scopes": [ + "__main__", + "__main__._base_uri", + "__main__._base_uri.write" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 79, + "end_line": 31, + "input_file": { + "filename": "autogen/starknet/storage_var/_base_uri/impl.cairo" + }, + "start_col": 55, + "start_line": 31 + } + }, + "487": { + "accessible_scopes": [ + "__main__", + "__main__._base_uri", + "__main__._base_uri.write" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 80, + "end_line": 31, + "input_file": { + "filename": "autogen/starknet/storage_var/_base_uri/impl.cairo" + }, + "start_col": 9, + "start_line": 31 + } + }, + "489": { + "accessible_scopes": [ + "__main__", + "__main__._base_uri", + "__main__._base_uri.write" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 41, + "end_line": 7, + "input_file": { + "filename": "autogen/starknet/storage_var/_base_uri/decl.cairo" + }, + "parent_location": [ + { + "end_col": 41, + "end_line": 30, + "input_file": { + "filename": "autogen/starknet/storage_var/_base_uri/impl.cairo" + }, + "parent_location": [ + { + "end_col": 62, + "end_line": 21, + "input_file": { + "filename": "autogen/starknet/storage_var/_base_uri/decl.cairo" + }, + "parent_location": [ + { + "end_col": 19, + "end_line": 32, + "input_file": { + "filename": "autogen/starknet/storage_var/_base_uri/impl.cairo" + }, + "start_col": 9, + "start_line": 32 + }, + "While trying to retrieve the implicit argument 'pedersen_ptr' in:" + ], + "start_col": 36, + "start_line": 21 + }, + "While expanding the reference 'pedersen_ptr' in:" + ], + "start_col": 30, + "start_line": 30 + }, + "While trying to update the implicit return value 'pedersen_ptr' in:" + ], + "start_col": 15, + "start_line": 7 + } + }, + "490": { + "accessible_scopes": [ + "__main__", + "__main__._base_uri", + "__main__._base_uri.write" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 58, + "end_line": 7, + "input_file": { + "filename": "autogen/starknet/storage_var/_base_uri/decl.cairo" + }, + "parent_location": [ + { + "end_col": 41, + "end_line": 30, + "input_file": { + "filename": "autogen/starknet/storage_var/_base_uri/impl.cairo" + }, + "parent_location": [ + { + "end_col": 79, + "end_line": 21, + "input_file": { + "filename": "autogen/starknet/storage_var/_base_uri/decl.cairo" + }, + "parent_location": [ + { + "end_col": 19, + "end_line": 32, + "input_file": { + "filename": "autogen/starknet/storage_var/_base_uri/impl.cairo" + }, + "start_col": 9, + "start_line": 32 + }, + "While trying to retrieve the implicit argument 'range_check_ptr' in:" + ], + "start_col": 64, + "start_line": 21 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 30, + "start_line": 30 + }, + "While trying to update the implicit return value 'range_check_ptr' in:" + ], + "start_col": 43, + "start_line": 7 + } + }, + "491": { + "accessible_scopes": [ + "__main__", + "__main__._base_uri", + "__main__._base_uri.write" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 19, + "end_line": 32, + "input_file": { + "filename": "autogen/starknet/storage_var/_base_uri/impl.cairo" + }, + "start_col": 9, + "start_line": 32 + } + }, + "492": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.getUseTokenId" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 38, + "end_line": 21, + "input_file": { + "filename": "src/renderers/UriRenderer.cairo" + }, + "parent_location": [ + { + "end_col": 33, + "end_line": 13, + "input_file": { + "filename": "autogen/starknet/storage_var/_use_token_id/decl.cairo" + }, + "parent_location": [ + { + "end_col": 32, + "end_line": 24, + "input_file": { + "filename": "src/renderers/UriRenderer.cairo" + }, + "start_col": 12, + "start_line": 24 + }, + "While trying to retrieve the implicit argument 'syscall_ptr' in:" + ], + "start_col": 15, + "start_line": 13 + }, + "While expanding the reference 'syscall_ptr' in:" + ], + "start_col": 20, + "start_line": 21 + } + }, + "493": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.getUseTokenId" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 66, + "end_line": 21, + "input_file": { + "filename": "src/renderers/UriRenderer.cairo" + }, + "parent_location": [ + { + "end_col": 61, + "end_line": 13, + "input_file": { + "filename": "autogen/starknet/storage_var/_use_token_id/decl.cairo" + }, + "parent_location": [ + { + "end_col": 32, + "end_line": 24, + "input_file": { + "filename": "src/renderers/UriRenderer.cairo" + }, + "start_col": 12, + "start_line": 24 + }, + "While trying to retrieve the implicit argument 'pedersen_ptr' in:" + ], + "start_col": 35, + "start_line": 13 + }, + "While expanding the reference 'pedersen_ptr' in:" + ], + "start_col": 40, + "start_line": 21 + } + }, + "494": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.getUseTokenId" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 83, + "end_line": 21, + "input_file": { + "filename": "src/renderers/UriRenderer.cairo" + }, + "parent_location": [ + { + "end_col": 78, + "end_line": 13, + "input_file": { + "filename": "autogen/starknet/storage_var/_use_token_id/decl.cairo" + }, + "parent_location": [ + { + "end_col": 32, + "end_line": 24, + "input_file": { + "filename": "src/renderers/UriRenderer.cairo" + }, + "start_col": 12, + "start_line": 24 + }, + "While trying to retrieve the implicit argument 'range_check_ptr' in:" + ], + "start_col": 63, + "start_line": 13 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 68, + "start_line": 21 + } + }, + "495": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.getUseTokenId" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 32, + "end_line": 24, + "input_file": { + "filename": "src/renderers/UriRenderer.cairo" + }, + "start_col": 12, + "start_line": 24 + } + }, + "497": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.getUseTokenId" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 33, + "end_line": 24, + "input_file": { + "filename": "src/renderers/UriRenderer.cairo" + }, + "start_col": 5, + "start_line": 24 + } + }, + "498": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.getUseTokenId_encode_return" + ], + "flow_tracking_data": null, + "hints": [ + { + "location": { + "end_col": 38, + "end_line": 3, + "input_file": { + "filename": "autogen/starknet/external/return/getUseTokenId/411937dfe4dbc88e28d049dee1bc1b1cc11c4ffd696a88d2f38d68dcc1736053.cairo" + }, + "parent_location": [ + { + "end_col": 19, + "end_line": 21, + "input_file": { + "filename": "src/renderers/UriRenderer.cairo" + }, + "start_col": 6, + "start_line": 21 + }, + "While handling return value of" + ], + "start_col": 5, + "start_line": 3 + }, + "n_prefix_newlines": 0 + } + ], + "inst": { + "end_col": 18, + "end_line": 4, + "input_file": { + "filename": "autogen/starknet/external/return/getUseTokenId/411937dfe4dbc88e28d049dee1bc1b1cc11c4ffd696a88d2f38d68dcc1736053.cairo" + }, + "parent_location": [ + { + "end_col": 19, + "end_line": 21, + "input_file": { + "filename": "src/renderers/UriRenderer.cairo" + }, + "start_col": 6, + "start_line": 21 + }, + "While handling return value of" + ], + "start_col": 5, + "start_line": 4 + } + }, + "500": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.getUseTokenId_encode_return" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 45, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/arg_processor/293368f3a0e12cfcf22314a31e13b9801e95a5b8b2b71822a2fbbdf5a01ea795.cairo" + }, + "parent_location": [ + { + "end_col": 14, + "end_line": 22, + "input_file": { + "filename": "src/renderers/UriRenderer.cairo" + }, + "start_col": 5, + "start_line": 22 + }, + "While handling return value 'res'" + ], + "start_col": 1, + "start_line": 1 + } + }, + "501": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.getUseTokenId_encode_return" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 48, + "end_line": 2, + "input_file": { + "filename": "autogen/starknet/arg_processor/293368f3a0e12cfcf22314a31e13b9801e95a5b8b2b71822a2fbbdf5a01ea795.cairo" + }, + "parent_location": [ + { + "end_col": 14, + "end_line": 22, + "input_file": { + "filename": "src/renderers/UriRenderer.cairo" + }, + "parent_location": [ + { + "end_col": 36, + "end_line": 11, + "input_file": { + "filename": "autogen/starknet/external/return/getUseTokenId/411937dfe4dbc88e28d049dee1bc1b1cc11c4ffd696a88d2f38d68dcc1736053.cairo" + }, + "parent_location": [ + { + "end_col": 19, + "end_line": 21, + "input_file": { + "filename": "src/renderers/UriRenderer.cairo" + }, + "start_col": 6, + "start_line": 21 + }, + "While handling return value of" + ], + "start_col": 18, + "start_line": 11 + }, + "While expanding the reference '__return_value_ptr' in:" + ], + "start_col": 5, + "start_line": 22 + }, + "While handling return value 'res'" + ], + "start_col": 26, + "start_line": 2 + } + }, + "503": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.getUseTokenId_encode_return" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 73, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/return/getUseTokenId/411937dfe4dbc88e28d049dee1bc1b1cc11c4ffd696a88d2f38d68dcc1736053.cairo" + }, + "parent_location": [ + { + "end_col": 19, + "end_line": 21, + "input_file": { + "filename": "src/renderers/UriRenderer.cairo" + }, + "parent_location": [ + { + "end_col": 40, + "end_line": 10, + "input_file": { + "filename": "autogen/starknet/external/return/getUseTokenId/411937dfe4dbc88e28d049dee1bc1b1cc11c4ffd696a88d2f38d68dcc1736053.cairo" + }, + "parent_location": [ + { + "end_col": 19, + "end_line": 21, + "input_file": { + "filename": "src/renderers/UriRenderer.cairo" + }, + "start_col": 6, + "start_line": 21 + }, + "While handling return value of" + ], + "start_col": 25, + "start_line": 10 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 6, + "start_line": 21 + }, + "While handling return value of" + ], + "start_col": 58, + "start_line": 1 + } + }, + "504": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.getUseTokenId_encode_return" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 63, + "end_line": 11, + "input_file": { + "filename": "autogen/starknet/external/return/getUseTokenId/411937dfe4dbc88e28d049dee1bc1b1cc11c4ffd696a88d2f38d68dcc1736053.cairo" + }, + "parent_location": [ + { + "end_col": 19, + "end_line": 21, + "input_file": { + "filename": "src/renderers/UriRenderer.cairo" + }, + "start_col": 6, + "start_line": 21 + }, + "While handling return value of" + ], + "start_col": 18, + "start_line": 11 + } + }, + "505": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.getUseTokenId_encode_return" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 35, + "end_line": 5, + "input_file": { + "filename": "autogen/starknet/external/return/getUseTokenId/411937dfe4dbc88e28d049dee1bc1b1cc11c4ffd696a88d2f38d68dcc1736053.cairo" + }, + "parent_location": [ + { + "end_col": 19, + "end_line": 21, + "input_file": { + "filename": "src/renderers/UriRenderer.cairo" + }, + "parent_location": [ + { + "end_col": 38, + "end_line": 12, + "input_file": { + "filename": "autogen/starknet/external/return/getUseTokenId/411937dfe4dbc88e28d049dee1bc1b1cc11c4ffd696a88d2f38d68dcc1736053.cairo" + }, + "parent_location": [ + { + "end_col": 19, + "end_line": 21, + "input_file": { + "filename": "src/renderers/UriRenderer.cairo" + }, + "start_col": 6, + "start_line": 21 + }, + "While handling return value of" + ], + "start_col": 14, + "start_line": 12 + }, + "While expanding the reference '__return_value_ptr_start' in:" + ], + "start_col": 6, + "start_line": 21 + }, + "While handling return value of" + ], + "start_col": 11, + "start_line": 5 + } + }, + "506": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.getUseTokenId_encode_return" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 40, + "end_line": 12, + "input_file": { + "filename": "autogen/starknet/external/return/getUseTokenId/411937dfe4dbc88e28d049dee1bc1b1cc11c4ffd696a88d2f38d68dcc1736053.cairo" + }, + "parent_location": [ + { + "end_col": 19, + "end_line": 21, + "input_file": { + "filename": "src/renderers/UriRenderer.cairo" + }, + "start_col": 6, + "start_line": 21 + }, + "While handling return value of" + ], + "start_col": 5, + "start_line": 9 + } + }, + "507": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.getUseTokenId" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 58, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/arg_processor/01cba52f8515996bb9d7070bde81ff39281d096d7024a558efcba6e1fd2402cf.cairo" + }, + "parent_location": [ + { + "end_col": 19, + "end_line": 21, + "input_file": { + "filename": "src/renderers/UriRenderer.cairo" + }, + "start_col": 6, + "start_line": 21 + }, + "While handling calldata of" + ], + "start_col": 1, + "start_line": 1 + } + }, + "508": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.getUseTokenId" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 64, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/getUseTokenId/b2c52ca2d2a8fc8791a983086d8716c5eacd0c3d62934914d2286f84b98ff4cb.cairo" + }, + "parent_location": [ + { + "end_col": 38, + "end_line": 21, + "input_file": { + "filename": "src/renderers/UriRenderer.cairo" + }, + "parent_location": [ + { + "end_col": 55, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/getUseTokenId/aff68619e1badaf6a4cef08c4c59683b2aeb0cc2ee145684373ab802c70d5d49.cairo" + }, + "parent_location": [ + { + "end_col": 19, + "end_line": 21, + "input_file": { + "filename": "src/renderers/UriRenderer.cairo" + }, + "start_col": 6, + "start_line": 21 + }, + "While constructing the external wrapper for:" + ], + "start_col": 44, + "start_line": 1 + }, + "While expanding the reference 'syscall_ptr' in:" + ], + "start_col": 20, + "start_line": 21 + }, + "While constructing the external wrapper for:" + ], + "start_col": 19, + "start_line": 1 + } + }, + "509": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.getUseTokenId" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 110, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/getUseTokenId/9684a85e93c782014ca14293edea4eb2502039a5a7b6538ecd39c56faaf12529.cairo" + }, + "parent_location": [ + { + "end_col": 66, + "end_line": 21, + "input_file": { + "filename": "src/renderers/UriRenderer.cairo" + }, + "parent_location": [ + { + "end_col": 82, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/getUseTokenId/aff68619e1badaf6a4cef08c4c59683b2aeb0cc2ee145684373ab802c70d5d49.cairo" + }, + "parent_location": [ + { + "end_col": 19, + "end_line": 21, + "input_file": { + "filename": "src/renderers/UriRenderer.cairo" + }, + "start_col": 6, + "start_line": 21 + }, + "While constructing the external wrapper for:" + ], + "start_col": 70, + "start_line": 1 + }, + "While expanding the reference 'pedersen_ptr' in:" + ], + "start_col": 40, + "start_line": 21 + }, + "While constructing the external wrapper for:" + ], + "start_col": 20, + "start_line": 1 + } + }, + "510": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.getUseTokenId" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 67, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/getUseTokenId/741ea357d6336b0bed7bf0472425acd0311d543883b803388880e60a232040c7.cairo" + }, + "parent_location": [ + { + "end_col": 83, + "end_line": 21, + "input_file": { + "filename": "src/renderers/UriRenderer.cairo" + }, + "parent_location": [ + { + "end_col": 115, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/getUseTokenId/aff68619e1badaf6a4cef08c4c59683b2aeb0cc2ee145684373ab802c70d5d49.cairo" + }, + "parent_location": [ + { + "end_col": 19, + "end_line": 21, + "input_file": { + "filename": "src/renderers/UriRenderer.cairo" + }, + "start_col": 6, + "start_line": 21 + }, + "While constructing the external wrapper for:" + ], + "start_col": 100, + "start_line": 1 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 68, + "start_line": 21 + }, + "While constructing the external wrapper for:" + ], + "start_col": 23, + "start_line": 1 + } + }, + "511": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.getUseTokenId" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 19, + "end_line": 21, + "input_file": { + "filename": "src/renderers/UriRenderer.cairo" + }, + "start_col": 6, + "start_line": 21 + } + }, + "513": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.getUseTokenId" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 115, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/getUseTokenId/aff68619e1badaf6a4cef08c4c59683b2aeb0cc2ee145684373ab802c70d5d49.cairo" + }, + "parent_location": [ + { + "end_col": 19, + "end_line": 21, + "input_file": { + "filename": "src/renderers/UriRenderer.cairo" + }, + "parent_location": [ + { + "end_col": 102, + "end_line": 2, + "input_file": { + "filename": "autogen/starknet/external/getUseTokenId/aff68619e1badaf6a4cef08c4c59683b2aeb0cc2ee145684373ab802c70d5d49.cairo" + }, + "parent_location": [ + { + "end_col": 19, + "end_line": 21, + "input_file": { + "filename": "src/renderers/UriRenderer.cairo" + }, + "start_col": 6, + "start_line": 21 + }, + "While constructing the external wrapper for:" + ], + "start_col": 87, + "start_line": 2 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 6, + "start_line": 21 + }, + "While constructing the external wrapper for:" + ], + "start_col": 100, + "start_line": 1 + } + }, + "514": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.getUseTokenId" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 103, + "end_line": 2, + "input_file": { + "filename": "autogen/starknet/external/getUseTokenId/aff68619e1badaf6a4cef08c4c59683b2aeb0cc2ee145684373ab802c70d5d49.cairo" + }, + "parent_location": [ + { + "end_col": 19, + "end_line": 21, + "input_file": { + "filename": "src/renderers/UriRenderer.cairo" + }, + "start_col": 6, + "start_line": 21 + }, + "While constructing the external wrapper for:" + ], + "start_col": 48, + "start_line": 2 + } + }, + "516": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.getUseTokenId" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 55, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/getUseTokenId/aff68619e1badaf6a4cef08c4c59683b2aeb0cc2ee145684373ab802c70d5d49.cairo" + }, + "parent_location": [ + { + "end_col": 19, + "end_line": 21, + "input_file": { + "filename": "src/renderers/UriRenderer.cairo" + }, + "parent_location": [ + { + "end_col": 20, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/getUseTokenId/da17921a4e81c09e730800bbf23bfdbe5e9e6bfaedc59d80fbf62087fa43c27d.cairo" + }, + "parent_location": [ + { + "end_col": 19, + "end_line": 21, + "input_file": { + "filename": "src/renderers/UriRenderer.cairo" + }, + "start_col": 6, + "start_line": 21 + }, + "While constructing the external wrapper for:" + ], + "start_col": 9, + "start_line": 1 + }, + "While expanding the reference 'syscall_ptr' in:" + ], + "start_col": 6, + "start_line": 21 + }, + "While constructing the external wrapper for:" + ], + "start_col": 44, + "start_line": 1 + } + }, + "517": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.getUseTokenId" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 82, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/getUseTokenId/aff68619e1badaf6a4cef08c4c59683b2aeb0cc2ee145684373ab802c70d5d49.cairo" + }, + "parent_location": [ + { + "end_col": 19, + "end_line": 21, + "input_file": { + "filename": "src/renderers/UriRenderer.cairo" + }, + "parent_location": [ + { + "end_col": 33, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/getUseTokenId/da17921a4e81c09e730800bbf23bfdbe5e9e6bfaedc59d80fbf62087fa43c27d.cairo" + }, + "parent_location": [ + { + "end_col": 19, + "end_line": 21, + "input_file": { + "filename": "src/renderers/UriRenderer.cairo" + }, + "start_col": 6, + "start_line": 21 + }, + "While constructing the external wrapper for:" + ], + "start_col": 21, + "start_line": 1 + }, + "While expanding the reference 'pedersen_ptr' in:" + ], + "start_col": 6, + "start_line": 21 + }, + "While constructing the external wrapper for:" + ], + "start_col": 70, + "start_line": 1 + } + }, + "518": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.getUseTokenId" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 21, + "end_line": 2, + "input_file": { + "filename": "autogen/starknet/external/getUseTokenId/aff68619e1badaf6a4cef08c4c59683b2aeb0cc2ee145684373ab802c70d5d49.cairo" + }, + "parent_location": [ + { + "end_col": 19, + "end_line": 21, + "input_file": { + "filename": "src/renderers/UriRenderer.cairo" + }, + "parent_location": [ + { + "end_col": 49, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/getUseTokenId/da17921a4e81c09e730800bbf23bfdbe5e9e6bfaedc59d80fbf62087fa43c27d.cairo" + }, + "parent_location": [ + { + "end_col": 19, + "end_line": 21, + "input_file": { + "filename": "src/renderers/UriRenderer.cairo" + }, + "start_col": 6, + "start_line": 21 + }, + "While constructing the external wrapper for:" + ], + "start_col": 34, + "start_line": 1 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 6, + "start_line": 21 + }, + "While constructing the external wrapper for:" + ], + "start_col": 6, + "start_line": 2 + } + }, + "519": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.getUseTokenId" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 35, + "end_line": 2, + "input_file": { + "filename": "autogen/starknet/external/getUseTokenId/aff68619e1badaf6a4cef08c4c59683b2aeb0cc2ee145684373ab802c70d5d49.cairo" + }, + "parent_location": [ + { + "end_col": 19, + "end_line": 21, + "input_file": { + "filename": "src/renderers/UriRenderer.cairo" + }, + "parent_location": [ + { + "end_col": 62, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/getUseTokenId/da17921a4e81c09e730800bbf23bfdbe5e9e6bfaedc59d80fbf62087fa43c27d.cairo" + }, + "parent_location": [ + { + "end_col": 19, + "end_line": 21, + "input_file": { + "filename": "src/renderers/UriRenderer.cairo" + }, + "start_col": 6, + "start_line": 21 + }, + "While constructing the external wrapper for:" + ], + "start_col": 50, + "start_line": 1 + }, + "While expanding the reference 'retdata_size' in:" + ], + "start_col": 6, + "start_line": 21 + }, + "While constructing the external wrapper for:" + ], + "start_col": 23, + "start_line": 2 + } + }, + "520": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.getUseTokenId" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 44, + "end_line": 2, + "input_file": { + "filename": "autogen/starknet/external/getUseTokenId/aff68619e1badaf6a4cef08c4c59683b2aeb0cc2ee145684373ab802c70d5d49.cairo" + }, + "parent_location": [ + { + "end_col": 19, + "end_line": 21, + "input_file": { + "filename": "src/renderers/UriRenderer.cairo" + }, + "parent_location": [ + { + "end_col": 70, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/getUseTokenId/da17921a4e81c09e730800bbf23bfdbe5e9e6bfaedc59d80fbf62087fa43c27d.cairo" + }, + "parent_location": [ + { + "end_col": 19, + "end_line": 21, + "input_file": { + "filename": "src/renderers/UriRenderer.cairo" + }, + "start_col": 6, + "start_line": 21 + }, + "While constructing the external wrapper for:" + ], + "start_col": 63, + "start_line": 1 + }, + "While expanding the reference 'retdata' in:" + ], + "start_col": 6, + "start_line": 21 + }, + "While constructing the external wrapper for:" + ], + "start_col": 37, + "start_line": 2 + } + }, + "521": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.getUseTokenId" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 72, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/getUseTokenId/da17921a4e81c09e730800bbf23bfdbe5e9e6bfaedc59d80fbf62087fa43c27d.cairo" + }, + "parent_location": [ + { + "end_col": 19, + "end_line": 21, + "input_file": { + "filename": "src/renderers/UriRenderer.cairo" + }, + "start_col": 6, + "start_line": 21 + }, + "While constructing the external wrapper for:" + ], + "start_col": 1, + "start_line": 1 + } + }, + "522": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.setUseTokenId" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 38, + "end_line": 28, + "input_file": { + "filename": "src/renderers/UriRenderer.cairo" + }, + "parent_location": [ + { + "end_col": 46, + "end_line": 40, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/access/ownable/library.cairo" + }, + "parent_location": [ + { + "end_col": 32, + "end_line": 29, + "input_file": { + "filename": "src/renderers/UriRenderer.cairo" + }, + "start_col": 5, + "start_line": 29 + }, + "While trying to retrieve the implicit argument 'syscall_ptr' in:" + ], + "start_col": 28, + "start_line": 40 + }, + "While expanding the reference 'syscall_ptr' in:" + ], + "start_col": 20, + "start_line": 28 + } + }, + "523": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.setUseTokenId" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 66, + "end_line": 28, + "input_file": { + "filename": "src/renderers/UriRenderer.cairo" + }, + "parent_location": [ + { + "end_col": 74, + "end_line": 40, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/access/ownable/library.cairo" + }, + "parent_location": [ + { + "end_col": 32, + "end_line": 29, + "input_file": { + "filename": "src/renderers/UriRenderer.cairo" + }, + "start_col": 5, + "start_line": 29 + }, + "While trying to retrieve the implicit argument 'pedersen_ptr' in:" + ], + "start_col": 48, + "start_line": 40 + }, + "While expanding the reference 'pedersen_ptr' in:" + ], + "start_col": 40, + "start_line": 28 + } + }, + "524": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.setUseTokenId" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 83, + "end_line": 28, + "input_file": { + "filename": "src/renderers/UriRenderer.cairo" + }, + "parent_location": [ + { + "end_col": 91, + "end_line": 40, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/access/ownable/library.cairo" + }, + "parent_location": [ + { + "end_col": 32, + "end_line": 29, + "input_file": { + "filename": "src/renderers/UriRenderer.cairo" + }, + "start_col": 5, + "start_line": 29 + }, + "While trying to retrieve the implicit argument 'range_check_ptr' in:" + ], + "start_col": 76, + "start_line": 40 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 68, + "start_line": 28 + } + }, + "525": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.setUseTokenId" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 32, + "end_line": 29, + "input_file": { + "filename": "src/renderers/UriRenderer.cairo" + }, + "start_col": 5, + "start_line": 29 + } + }, + "527": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.setUseTokenId" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 94, + "end_line": 28, + "input_file": { + "filename": "src/renderers/UriRenderer.cairo" + }, + "parent_location": [ + { + "end_col": 28, + "end_line": 30, + "input_file": { + "filename": "src/renderers/UriRenderer.cairo" + }, + "start_col": 25, + "start_line": 30 + }, + "While expanding the reference 'use' in:" + ], + "start_col": 85, + "start_line": 28 + } + }, + "528": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.setUseTokenId" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 29, + "end_line": 30, + "input_file": { + "filename": "src/renderers/UriRenderer.cairo" + }, + "start_col": 5, + "start_line": 30 + } + }, + "530": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.setUseTokenId" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 15, + "end_line": 31, + "input_file": { + "filename": "src/renderers/UriRenderer.cairo" + }, + "start_col": 5, + "start_line": 31 + } + }, + "531": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.setUseTokenId" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 40, + "end_line": 2, + "input_file": { + "filename": "autogen/starknet/arg_processor/b414d12b4af9acec7cfcb353b241a319dcdd01ed9213f1ca1689d770e8f306a7.cairo" + }, + "parent_location": [ + { + "end_col": 94, + "end_line": 28, + "input_file": { + "filename": "src/renderers/UriRenderer.cairo" + }, + "parent_location": [ + { + "end_col": 45, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/arg_processor/c31620b02d4d706f0542c989b2aadc01b0981d1f6a5933a8fe4937ace3d70d92.cairo" + }, + "parent_location": [ + { + "end_col": 19, + "end_line": 28, + "input_file": { + "filename": "src/renderers/UriRenderer.cairo" + }, + "parent_location": [ + { + "end_col": 57, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/arg_processor/01cba52f8515996bb9d7070bde81ff39281d096d7024a558efcba6e1fd2402cf.cairo" + }, + "parent_location": [ + { + "end_col": 19, + "end_line": 28, + "input_file": { + "filename": "src/renderers/UriRenderer.cairo" + }, + "start_col": 6, + "start_line": 28 + }, + "While handling calldata of" + ], + "start_col": 35, + "start_line": 1 + }, + "While expanding the reference '__calldata_actual_size' in:" + ], + "start_col": 6, + "start_line": 28 + }, + "While handling calldata of" + ], + "start_col": 31, + "start_line": 1 + }, + "While expanding the reference '__calldata_ptr' in:" + ], + "start_col": 85, + "start_line": 28 + }, + "While handling calldata argument 'use'" + ], + "start_col": 22, + "start_line": 2 + } + }, + "533": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.setUseTokenId" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 58, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/arg_processor/01cba52f8515996bb9d7070bde81ff39281d096d7024a558efcba6e1fd2402cf.cairo" + }, + "parent_location": [ + { + "end_col": 19, + "end_line": 28, + "input_file": { + "filename": "src/renderers/UriRenderer.cairo" + }, + "start_col": 6, + "start_line": 28 + }, + "While handling calldata of" + ], + "start_col": 1, + "start_line": 1 + } + }, + "534": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.setUseTokenId" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 64, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/setUseTokenId/b2c52ca2d2a8fc8791a983086d8716c5eacd0c3d62934914d2286f84b98ff4cb.cairo" + }, + "parent_location": [ + { + "end_col": 38, + "end_line": 28, + "input_file": { + "filename": "src/renderers/UriRenderer.cairo" + }, + "parent_location": [ + { + "end_col": 55, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/setUseTokenId/69b5a7d65653c60df2cf1d32381730a338dba0bd70ed0de3b1710d1de7fa32db.cairo" + }, + "parent_location": [ + { + "end_col": 19, + "end_line": 28, + "input_file": { + "filename": "src/renderers/UriRenderer.cairo" + }, + "start_col": 6, + "start_line": 28 + }, + "While constructing the external wrapper for:" + ], + "start_col": 44, + "start_line": 1 + }, + "While expanding the reference 'syscall_ptr' in:" + ], + "start_col": 20, + "start_line": 28 + }, + "While constructing the external wrapper for:" + ], + "start_col": 19, + "start_line": 1 + } + }, + "535": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.setUseTokenId" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 110, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/setUseTokenId/9684a85e93c782014ca14293edea4eb2502039a5a7b6538ecd39c56faaf12529.cairo" + }, + "parent_location": [ + { + "end_col": 66, + "end_line": 28, + "input_file": { + "filename": "src/renderers/UriRenderer.cairo" + }, + "parent_location": [ + { + "end_col": 82, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/setUseTokenId/69b5a7d65653c60df2cf1d32381730a338dba0bd70ed0de3b1710d1de7fa32db.cairo" + }, + "parent_location": [ + { + "end_col": 19, + "end_line": 28, + "input_file": { + "filename": "src/renderers/UriRenderer.cairo" + }, + "start_col": 6, + "start_line": 28 + }, + "While constructing the external wrapper for:" + ], + "start_col": 70, + "start_line": 1 + }, + "While expanding the reference 'pedersen_ptr' in:" + ], + "start_col": 40, + "start_line": 28 + }, + "While constructing the external wrapper for:" + ], + "start_col": 20, + "start_line": 1 + } + }, + "536": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.setUseTokenId" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 67, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/setUseTokenId/741ea357d6336b0bed7bf0472425acd0311d543883b803388880e60a232040c7.cairo" + }, + "parent_location": [ + { + "end_col": 83, + "end_line": 28, + "input_file": { + "filename": "src/renderers/UriRenderer.cairo" + }, + "parent_location": [ + { + "end_col": 115, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/setUseTokenId/69b5a7d65653c60df2cf1d32381730a338dba0bd70ed0de3b1710d1de7fa32db.cairo" + }, + "parent_location": [ + { + "end_col": 19, + "end_line": 28, + "input_file": { + "filename": "src/renderers/UriRenderer.cairo" + }, + "start_col": 6, + "start_line": 28 + }, + "While constructing the external wrapper for:" + ], + "start_col": 100, + "start_line": 1 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 68, + "start_line": 28 + }, + "While constructing the external wrapper for:" + ], + "start_col": 23, + "start_line": 1 + } + }, + "537": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.setUseTokenId" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 42, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/arg_processor/b414d12b4af9acec7cfcb353b241a319dcdd01ed9213f1ca1689d770e8f306a7.cairo" + }, + "parent_location": [ + { + "end_col": 94, + "end_line": 28, + "input_file": { + "filename": "src/renderers/UriRenderer.cairo" + }, + "parent_location": [ + { + "end_col": 139, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/setUseTokenId/69b5a7d65653c60df2cf1d32381730a338dba0bd70ed0de3b1710d1de7fa32db.cairo" + }, + "parent_location": [ + { + "end_col": 19, + "end_line": 28, + "input_file": { + "filename": "src/renderers/UriRenderer.cairo" + }, + "start_col": 6, + "start_line": 28 + }, + "While constructing the external wrapper for:" + ], + "start_col": 121, + "start_line": 1 + }, + "While expanding the reference '__calldata_arg_use' in:" + ], + "start_col": 85, + "start_line": 28 + }, + "While handling calldata argument 'use'" + ], + "start_col": 26, + "start_line": 1 + } + }, + "538": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.setUseTokenId" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 19, + "end_line": 28, + "input_file": { + "filename": "src/renderers/UriRenderer.cairo" + }, + "start_col": 6, + "start_line": 28 + } + }, + "540": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.setUseTokenId" + ], + "flow_tracking_data": null, + "hints": [ + { + "location": { + "end_col": 34, + "end_line": 2, + "input_file": { + "filename": "autogen/starknet/external/setUseTokenId/69b5a7d65653c60df2cf1d32381730a338dba0bd70ed0de3b1710d1de7fa32db.cairo" + }, + "parent_location": [ + { + "end_col": 19, + "end_line": 28, + "input_file": { + "filename": "src/renderers/UriRenderer.cairo" + }, + "start_col": 6, + "start_line": 28 + }, + "While constructing the external wrapper for:" + ], + "start_col": 1, + "start_line": 2 + }, + "n_prefix_newlines": 0 + } + ], + "inst": { + "end_col": 24, + "end_line": 3, + "input_file": { + "filename": "autogen/starknet/external/setUseTokenId/69b5a7d65653c60df2cf1d32381730a338dba0bd70ed0de3b1710d1de7fa32db.cairo" + }, + "parent_location": [ + { + "end_col": 19, + "end_line": 28, + "input_file": { + "filename": "src/renderers/UriRenderer.cairo" + }, + "start_col": 6, + "start_line": 28 + }, + "While constructing the external wrapper for:" + ], + "start_col": 1, + "start_line": 3 + } + }, + "542": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.setUseTokenId" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 55, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/setUseTokenId/69b5a7d65653c60df2cf1d32381730a338dba0bd70ed0de3b1710d1de7fa32db.cairo" + }, + "parent_location": [ + { + "end_col": 19, + "end_line": 28, + "input_file": { + "filename": "src/renderers/UriRenderer.cairo" + }, + "parent_location": [ + { + "end_col": 20, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/setUseTokenId/da17921a4e81c09e730800bbf23bfdbe5e9e6bfaedc59d80fbf62087fa43c27d.cairo" + }, + "parent_location": [ + { + "end_col": 19, + "end_line": 28, + "input_file": { + "filename": "src/renderers/UriRenderer.cairo" + }, + "start_col": 6, + "start_line": 28 + }, + "While constructing the external wrapper for:" + ], + "start_col": 9, + "start_line": 1 + }, + "While expanding the reference 'syscall_ptr' in:" + ], + "start_col": 6, + "start_line": 28 + }, + "While constructing the external wrapper for:" + ], + "start_col": 44, + "start_line": 1 + } + }, + "543": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.setUseTokenId" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 82, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/setUseTokenId/69b5a7d65653c60df2cf1d32381730a338dba0bd70ed0de3b1710d1de7fa32db.cairo" + }, + "parent_location": [ + { + "end_col": 19, + "end_line": 28, + "input_file": { + "filename": "src/renderers/UriRenderer.cairo" + }, + "parent_location": [ + { + "end_col": 33, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/setUseTokenId/da17921a4e81c09e730800bbf23bfdbe5e9e6bfaedc59d80fbf62087fa43c27d.cairo" + }, + "parent_location": [ + { + "end_col": 19, + "end_line": 28, + "input_file": { + "filename": "src/renderers/UriRenderer.cairo" + }, + "start_col": 6, + "start_line": 28 + }, + "While constructing the external wrapper for:" + ], + "start_col": 21, + "start_line": 1 + }, + "While expanding the reference 'pedersen_ptr' in:" + ], + "start_col": 6, + "start_line": 28 + }, + "While constructing the external wrapper for:" + ], + "start_col": 70, + "start_line": 1 + } + }, + "544": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.setUseTokenId" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 115, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/setUseTokenId/69b5a7d65653c60df2cf1d32381730a338dba0bd70ed0de3b1710d1de7fa32db.cairo" + }, + "parent_location": [ + { + "end_col": 19, + "end_line": 28, + "input_file": { + "filename": "src/renderers/UriRenderer.cairo" + }, + "parent_location": [ + { + "end_col": 49, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/setUseTokenId/da17921a4e81c09e730800bbf23bfdbe5e9e6bfaedc59d80fbf62087fa43c27d.cairo" + }, + "parent_location": [ + { + "end_col": 19, + "end_line": 28, + "input_file": { + "filename": "src/renderers/UriRenderer.cairo" + }, + "start_col": 6, + "start_line": 28 + }, + "While constructing the external wrapper for:" + ], + "start_col": 34, + "start_line": 1 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 6, + "start_line": 28 + }, + "While constructing the external wrapper for:" + ], + "start_col": 100, + "start_line": 1 + } + }, + "545": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.setUseTokenId" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 21, + "end_line": 4, + "input_file": { + "filename": "autogen/starknet/external/setUseTokenId/69b5a7d65653c60df2cf1d32381730a338dba0bd70ed0de3b1710d1de7fa32db.cairo" + }, + "parent_location": [ + { + "end_col": 19, + "end_line": 28, + "input_file": { + "filename": "src/renderers/UriRenderer.cairo" + }, + "parent_location": [ + { + "end_col": 62, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/setUseTokenId/da17921a4e81c09e730800bbf23bfdbe5e9e6bfaedc59d80fbf62087fa43c27d.cairo" + }, + "parent_location": [ + { + "end_col": 19, + "end_line": 28, + "input_file": { + "filename": "src/renderers/UriRenderer.cairo" + }, + "start_col": 6, + "start_line": 28 + }, + "While constructing the external wrapper for:" + ], + "start_col": 50, + "start_line": 1 + }, + "While expanding the reference 'retdata_size' in:" + ], + "start_col": 6, + "start_line": 28 + }, + "While constructing the external wrapper for:" + ], + "start_col": 20, + "start_line": 4 + } + }, + "547": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.setUseTokenId" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 16, + "end_line": 3, + "input_file": { + "filename": "autogen/starknet/external/setUseTokenId/69b5a7d65653c60df2cf1d32381730a338dba0bd70ed0de3b1710d1de7fa32db.cairo" + }, + "parent_location": [ + { + "end_col": 19, + "end_line": 28, + "input_file": { + "filename": "src/renderers/UriRenderer.cairo" + }, + "parent_location": [ + { + "end_col": 70, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/setUseTokenId/da17921a4e81c09e730800bbf23bfdbe5e9e6bfaedc59d80fbf62087fa43c27d.cairo" + }, + "parent_location": [ + { + "end_col": 19, + "end_line": 28, + "input_file": { + "filename": "src/renderers/UriRenderer.cairo" + }, + "start_col": 6, + "start_line": 28 + }, + "While constructing the external wrapper for:" + ], + "start_col": 63, + "start_line": 1 + }, + "While expanding the reference 'retdata' in:" + ], + "start_col": 6, + "start_line": 28 + }, + "While constructing the external wrapper for:" + ], + "start_col": 9, + "start_line": 3 + } + }, + "548": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.setUseTokenId" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 72, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/setUseTokenId/da17921a4e81c09e730800bbf23bfdbe5e9e6bfaedc59d80fbf62087fa43c27d.cairo" + }, + "parent_location": [ + { + "end_col": 19, + "end_line": 28, + "input_file": { + "filename": "src/renderers/UriRenderer.cairo" + }, + "start_col": 6, + "start_line": 28 + }, + "While constructing the external wrapper for:" + ], + "start_col": 1, + "start_line": 1 + } + }, + "549": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.getOwner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 33, + "end_line": 35, + "input_file": { + "filename": "src/renderers/UriRenderer.cairo" + }, + "parent_location": [ + { + "end_col": 34, + "end_line": 56, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/access/ownable/library.cairo" + }, + "parent_location": [ + { + "end_col": 27, + "end_line": 36, + "input_file": { + "filename": "src/renderers/UriRenderer.cairo" + }, + "start_col": 12, + "start_line": 36 + }, + "While trying to retrieve the implicit argument 'syscall_ptr' in:" + ], + "start_col": 16, + "start_line": 56 + }, + "While expanding the reference 'syscall_ptr' in:" + ], + "start_col": 15, + "start_line": 35 + } + }, + "550": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.getOwner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 61, + "end_line": 35, + "input_file": { + "filename": "src/renderers/UriRenderer.cairo" + }, + "parent_location": [ + { + "end_col": 62, + "end_line": 56, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/access/ownable/library.cairo" + }, + "parent_location": [ + { + "end_col": 27, + "end_line": 36, + "input_file": { + "filename": "src/renderers/UriRenderer.cairo" + }, + "start_col": 12, + "start_line": 36 + }, + "While trying to retrieve the implicit argument 'pedersen_ptr' in:" + ], + "start_col": 36, + "start_line": 56 + }, + "While expanding the reference 'pedersen_ptr' in:" + ], + "start_col": 35, + "start_line": 35 + } + }, + "551": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.getOwner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 78, + "end_line": 35, + "input_file": { + "filename": "src/renderers/UriRenderer.cairo" + }, + "parent_location": [ + { + "end_col": 79, + "end_line": 56, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/access/ownable/library.cairo" + }, + "parent_location": [ + { + "end_col": 27, + "end_line": 36, + "input_file": { + "filename": "src/renderers/UriRenderer.cairo" + }, + "start_col": 12, + "start_line": 36 + }, + "While trying to retrieve the implicit argument 'range_check_ptr' in:" + ], + "start_col": 64, + "start_line": 56 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 63, + "start_line": 35 + } + }, + "552": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.getOwner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 27, + "end_line": 36, + "input_file": { + "filename": "src/renderers/UriRenderer.cairo" + }, + "start_col": 12, + "start_line": 36 + } + }, + "554": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.getOwner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 28, + "end_line": 36, + "input_file": { + "filename": "src/renderers/UriRenderer.cairo" + }, + "start_col": 5, + "start_line": 36 + } + }, + "555": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.getOwner_encode_return" + ], + "flow_tracking_data": null, + "hints": [ + { + "location": { + "end_col": 38, + "end_line": 3, + "input_file": { + "filename": "autogen/starknet/external/return/getOwner/b6df8dec790559c2c5b7a358af946adc3119f253addccded3beb4074a973d539.cairo" + }, + "parent_location": [ + { + "end_col": 14, + "end_line": 35, + "input_file": { + "filename": "src/renderers/UriRenderer.cairo" + }, + "start_col": 6, + "start_line": 35 + }, + "While handling return value of" + ], + "start_col": 5, + "start_line": 3 + }, + "n_prefix_newlines": 0 + } + ], + "inst": { + "end_col": 18, + "end_line": 4, + "input_file": { + "filename": "autogen/starknet/external/return/getOwner/b6df8dec790559c2c5b7a358af946adc3119f253addccded3beb4074a973d539.cairo" + }, + "parent_location": [ + { + "end_col": 14, + "end_line": 35, + "input_file": { + "filename": "src/renderers/UriRenderer.cairo" + }, + "start_col": 6, + "start_line": 35 + }, + "While handling return value of" + ], + "start_col": 5, + "start_line": 4 + } + }, + "557": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.getOwner_encode_return" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 47, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/arg_processor/b02ddc13e06346668d980e18c0fec90f17036d195bf95d21ac18e846a0a129f3.cairo" + }, + "parent_location": [ + { + "end_col": 97, + "end_line": 35, + "input_file": { + "filename": "src/renderers/UriRenderer.cairo" + }, + "start_col": 86, + "start_line": 35 + }, + "While handling return value 'owner'" + ], + "start_col": 1, + "start_line": 1 + } + }, + "558": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.getOwner_encode_return" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 48, + "end_line": 2, + "input_file": { + "filename": "autogen/starknet/arg_processor/b02ddc13e06346668d980e18c0fec90f17036d195bf95d21ac18e846a0a129f3.cairo" + }, + "parent_location": [ + { + "end_col": 97, + "end_line": 35, + "input_file": { + "filename": "src/renderers/UriRenderer.cairo" + }, + "parent_location": [ + { + "end_col": 36, + "end_line": 11, + "input_file": { + "filename": "autogen/starknet/external/return/getOwner/b6df8dec790559c2c5b7a358af946adc3119f253addccded3beb4074a973d539.cairo" + }, + "parent_location": [ + { + "end_col": 14, + "end_line": 35, + "input_file": { + "filename": "src/renderers/UriRenderer.cairo" + }, + "start_col": 6, + "start_line": 35 + }, + "While handling return value of" + ], + "start_col": 18, + "start_line": 11 + }, + "While expanding the reference '__return_value_ptr' in:" + ], + "start_col": 86, + "start_line": 35 + }, + "While handling return value 'owner'" + ], + "start_col": 26, + "start_line": 2 + } + }, + "560": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.getOwner_encode_return" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 70, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/return/getOwner/b6df8dec790559c2c5b7a358af946adc3119f253addccded3beb4074a973d539.cairo" + }, + "parent_location": [ + { + "end_col": 14, + "end_line": 35, + "input_file": { + "filename": "src/renderers/UriRenderer.cairo" + }, + "parent_location": [ + { + "end_col": 40, + "end_line": 10, + "input_file": { + "filename": "autogen/starknet/external/return/getOwner/b6df8dec790559c2c5b7a358af946adc3119f253addccded3beb4074a973d539.cairo" + }, + "parent_location": [ + { + "end_col": 14, + "end_line": 35, + "input_file": { + "filename": "src/renderers/UriRenderer.cairo" + }, + "start_col": 6, + "start_line": 35 + }, + "While handling return value of" + ], + "start_col": 25, + "start_line": 10 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 6, + "start_line": 35 + }, + "While handling return value of" + ], + "start_col": 55, + "start_line": 1 + } + }, + "561": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.getOwner_encode_return" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 63, + "end_line": 11, + "input_file": { + "filename": "autogen/starknet/external/return/getOwner/b6df8dec790559c2c5b7a358af946adc3119f253addccded3beb4074a973d539.cairo" + }, + "parent_location": [ + { + "end_col": 14, + "end_line": 35, + "input_file": { + "filename": "src/renderers/UriRenderer.cairo" + }, + "start_col": 6, + "start_line": 35 + }, + "While handling return value of" + ], + "start_col": 18, + "start_line": 11 + } + }, + "562": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.getOwner_encode_return" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 35, + "end_line": 5, + "input_file": { + "filename": "autogen/starknet/external/return/getOwner/b6df8dec790559c2c5b7a358af946adc3119f253addccded3beb4074a973d539.cairo" + }, + "parent_location": [ + { + "end_col": 14, + "end_line": 35, + "input_file": { + "filename": "src/renderers/UriRenderer.cairo" + }, + "parent_location": [ + { + "end_col": 38, + "end_line": 12, + "input_file": { + "filename": "autogen/starknet/external/return/getOwner/b6df8dec790559c2c5b7a358af946adc3119f253addccded3beb4074a973d539.cairo" + }, + "parent_location": [ + { + "end_col": 14, + "end_line": 35, + "input_file": { + "filename": "src/renderers/UriRenderer.cairo" + }, + "start_col": 6, + "start_line": 35 + }, + "While handling return value of" + ], + "start_col": 14, + "start_line": 12 + }, + "While expanding the reference '__return_value_ptr_start' in:" + ], + "start_col": 6, + "start_line": 35 + }, + "While handling return value of" + ], + "start_col": 11, + "start_line": 5 + } + }, + "563": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.getOwner_encode_return" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 40, + "end_line": 12, + "input_file": { + "filename": "autogen/starknet/external/return/getOwner/b6df8dec790559c2c5b7a358af946adc3119f253addccded3beb4074a973d539.cairo" + }, + "parent_location": [ + { + "end_col": 14, + "end_line": 35, + "input_file": { + "filename": "src/renderers/UriRenderer.cairo" + }, + "start_col": 6, + "start_line": 35 + }, + "While handling return value of" + ], + "start_col": 5, + "start_line": 9 + } + }, + "564": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.getOwner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 58, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/arg_processor/01cba52f8515996bb9d7070bde81ff39281d096d7024a558efcba6e1fd2402cf.cairo" + }, + "parent_location": [ + { + "end_col": 14, + "end_line": 35, + "input_file": { + "filename": "src/renderers/UriRenderer.cairo" + }, + "start_col": 6, + "start_line": 35 + }, + "While handling calldata of" + ], + "start_col": 1, + "start_line": 1 + } + }, + "565": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.getOwner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 64, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/getOwner/b2c52ca2d2a8fc8791a983086d8716c5eacd0c3d62934914d2286f84b98ff4cb.cairo" + }, + "parent_location": [ + { + "end_col": 33, + "end_line": 35, + "input_file": { + "filename": "src/renderers/UriRenderer.cairo" + }, + "parent_location": [ + { + "end_col": 55, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/getOwner/50eef2d703602d24c42df800878bfabc425ad0069960e1dc159c4d3bf27e35f6.cairo" + }, + "parent_location": [ + { + "end_col": 14, + "end_line": 35, + "input_file": { + "filename": "src/renderers/UriRenderer.cairo" + }, + "start_col": 6, + "start_line": 35 + }, + "While constructing the external wrapper for:" + ], + "start_col": 44, + "start_line": 1 + }, + "While expanding the reference 'syscall_ptr' in:" + ], + "start_col": 15, + "start_line": 35 + }, + "While constructing the external wrapper for:" + ], + "start_col": 19, + "start_line": 1 + } + }, + "566": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.getOwner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 110, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/getOwner/9684a85e93c782014ca14293edea4eb2502039a5a7b6538ecd39c56faaf12529.cairo" + }, + "parent_location": [ + { + "end_col": 61, + "end_line": 35, + "input_file": { + "filename": "src/renderers/UriRenderer.cairo" + }, + "parent_location": [ + { + "end_col": 82, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/getOwner/50eef2d703602d24c42df800878bfabc425ad0069960e1dc159c4d3bf27e35f6.cairo" + }, + "parent_location": [ + { + "end_col": 14, + "end_line": 35, + "input_file": { + "filename": "src/renderers/UriRenderer.cairo" + }, + "start_col": 6, + "start_line": 35 + }, + "While constructing the external wrapper for:" + ], + "start_col": 70, + "start_line": 1 + }, + "While expanding the reference 'pedersen_ptr' in:" + ], + "start_col": 35, + "start_line": 35 + }, + "While constructing the external wrapper for:" + ], + "start_col": 20, + "start_line": 1 + } + }, + "567": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.getOwner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 67, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/getOwner/741ea357d6336b0bed7bf0472425acd0311d543883b803388880e60a232040c7.cairo" + }, + "parent_location": [ + { + "end_col": 78, + "end_line": 35, + "input_file": { + "filename": "src/renderers/UriRenderer.cairo" + }, + "parent_location": [ + { + "end_col": 115, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/getOwner/50eef2d703602d24c42df800878bfabc425ad0069960e1dc159c4d3bf27e35f6.cairo" + }, + "parent_location": [ + { + "end_col": 14, + "end_line": 35, + "input_file": { + "filename": "src/renderers/UriRenderer.cairo" + }, + "start_col": 6, + "start_line": 35 + }, + "While constructing the external wrapper for:" + ], + "start_col": 100, + "start_line": 1 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 63, + "start_line": 35 + }, + "While constructing the external wrapper for:" + ], + "start_col": 23, + "start_line": 1 + } + }, + "568": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.getOwner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 14, + "end_line": 35, + "input_file": { + "filename": "src/renderers/UriRenderer.cairo" + }, + "start_col": 6, + "start_line": 35 + } + }, + "570": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.getOwner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 115, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/getOwner/50eef2d703602d24c42df800878bfabc425ad0069960e1dc159c4d3bf27e35f6.cairo" + }, + "parent_location": [ + { + "end_col": 14, + "end_line": 35, + "input_file": { + "filename": "src/renderers/UriRenderer.cairo" + }, + "parent_location": [ + { + "end_col": 97, + "end_line": 2, + "input_file": { + "filename": "autogen/starknet/external/getOwner/50eef2d703602d24c42df800878bfabc425ad0069960e1dc159c4d3bf27e35f6.cairo" + }, + "parent_location": [ + { + "end_col": 14, + "end_line": 35, + "input_file": { + "filename": "src/renderers/UriRenderer.cairo" + }, + "start_col": 6, + "start_line": 35 + }, + "While constructing the external wrapper for:" + ], + "start_col": 82, + "start_line": 2 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 6, + "start_line": 35 + }, + "While constructing the external wrapper for:" + ], + "start_col": 100, + "start_line": 1 + } + }, + "571": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.getOwner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 98, + "end_line": 2, + "input_file": { + "filename": "autogen/starknet/external/getOwner/50eef2d703602d24c42df800878bfabc425ad0069960e1dc159c4d3bf27e35f6.cairo" + }, + "parent_location": [ + { + "end_col": 14, + "end_line": 35, + "input_file": { + "filename": "src/renderers/UriRenderer.cairo" + }, + "start_col": 6, + "start_line": 35 + }, + "While constructing the external wrapper for:" + ], + "start_col": 48, + "start_line": 2 + } + }, + "573": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.getOwner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 55, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/getOwner/50eef2d703602d24c42df800878bfabc425ad0069960e1dc159c4d3bf27e35f6.cairo" + }, + "parent_location": [ + { + "end_col": 14, + "end_line": 35, + "input_file": { + "filename": "src/renderers/UriRenderer.cairo" + }, + "parent_location": [ + { + "end_col": 20, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/getOwner/da17921a4e81c09e730800bbf23bfdbe5e9e6bfaedc59d80fbf62087fa43c27d.cairo" + }, + "parent_location": [ + { + "end_col": 14, + "end_line": 35, + "input_file": { + "filename": "src/renderers/UriRenderer.cairo" + }, + "start_col": 6, + "start_line": 35 + }, + "While constructing the external wrapper for:" + ], + "start_col": 9, + "start_line": 1 + }, + "While expanding the reference 'syscall_ptr' in:" + ], + "start_col": 6, + "start_line": 35 + }, + "While constructing the external wrapper for:" + ], + "start_col": 44, + "start_line": 1 + } + }, + "574": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.getOwner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 82, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/getOwner/50eef2d703602d24c42df800878bfabc425ad0069960e1dc159c4d3bf27e35f6.cairo" + }, + "parent_location": [ + { + "end_col": 14, + "end_line": 35, + "input_file": { + "filename": "src/renderers/UriRenderer.cairo" + }, + "parent_location": [ + { + "end_col": 33, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/getOwner/da17921a4e81c09e730800bbf23bfdbe5e9e6bfaedc59d80fbf62087fa43c27d.cairo" + }, + "parent_location": [ + { + "end_col": 14, + "end_line": 35, + "input_file": { + "filename": "src/renderers/UriRenderer.cairo" + }, + "start_col": 6, + "start_line": 35 + }, + "While constructing the external wrapper for:" + ], + "start_col": 21, + "start_line": 1 + }, + "While expanding the reference 'pedersen_ptr' in:" + ], + "start_col": 6, + "start_line": 35 + }, + "While constructing the external wrapper for:" + ], + "start_col": 70, + "start_line": 1 + } + }, + "575": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.getOwner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 21, + "end_line": 2, + "input_file": { + "filename": "autogen/starknet/external/getOwner/50eef2d703602d24c42df800878bfabc425ad0069960e1dc159c4d3bf27e35f6.cairo" + }, + "parent_location": [ + { + "end_col": 14, + "end_line": 35, + "input_file": { + "filename": "src/renderers/UriRenderer.cairo" + }, + "parent_location": [ + { + "end_col": 49, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/getOwner/da17921a4e81c09e730800bbf23bfdbe5e9e6bfaedc59d80fbf62087fa43c27d.cairo" + }, + "parent_location": [ + { + "end_col": 14, + "end_line": 35, + "input_file": { + "filename": "src/renderers/UriRenderer.cairo" + }, + "start_col": 6, + "start_line": 35 + }, + "While constructing the external wrapper for:" + ], + "start_col": 34, + "start_line": 1 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 6, + "start_line": 35 + }, + "While constructing the external wrapper for:" + ], + "start_col": 6, + "start_line": 2 + } + }, + "576": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.getOwner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 35, + "end_line": 2, + "input_file": { + "filename": "autogen/starknet/external/getOwner/50eef2d703602d24c42df800878bfabc425ad0069960e1dc159c4d3bf27e35f6.cairo" + }, + "parent_location": [ + { + "end_col": 14, + "end_line": 35, + "input_file": { + "filename": "src/renderers/UriRenderer.cairo" + }, + "parent_location": [ + { + "end_col": 62, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/getOwner/da17921a4e81c09e730800bbf23bfdbe5e9e6bfaedc59d80fbf62087fa43c27d.cairo" + }, + "parent_location": [ + { + "end_col": 14, + "end_line": 35, + "input_file": { + "filename": "src/renderers/UriRenderer.cairo" + }, + "start_col": 6, + "start_line": 35 + }, + "While constructing the external wrapper for:" + ], + "start_col": 50, + "start_line": 1 + }, + "While expanding the reference 'retdata_size' in:" + ], + "start_col": 6, + "start_line": 35 + }, + "While constructing the external wrapper for:" + ], + "start_col": 23, + "start_line": 2 + } + }, + "577": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.getOwner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 44, + "end_line": 2, + "input_file": { + "filename": "autogen/starknet/external/getOwner/50eef2d703602d24c42df800878bfabc425ad0069960e1dc159c4d3bf27e35f6.cairo" + }, + "parent_location": [ + { + "end_col": 14, + "end_line": 35, + "input_file": { + "filename": "src/renderers/UriRenderer.cairo" + }, + "parent_location": [ + { + "end_col": 70, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/getOwner/da17921a4e81c09e730800bbf23bfdbe5e9e6bfaedc59d80fbf62087fa43c27d.cairo" + }, + "parent_location": [ + { + "end_col": 14, + "end_line": 35, + "input_file": { + "filename": "src/renderers/UriRenderer.cairo" + }, + "start_col": 6, + "start_line": 35 + }, + "While constructing the external wrapper for:" + ], + "start_col": 63, + "start_line": 1 + }, + "While expanding the reference 'retdata' in:" + ], + "start_col": 6, + "start_line": 35 + }, + "While constructing the external wrapper for:" + ], + "start_col": 37, + "start_line": 2 + } + }, + "578": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.getOwner" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 72, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/getOwner/da17921a4e81c09e730800bbf23bfdbe5e9e6bfaedc59d80fbf62087fa43c27d.cairo" + }, + "parent_location": [ + { + "end_col": 14, + "end_line": 35, + "input_file": { + "filename": "src/renderers/UriRenderer.cairo" + }, + "start_col": 6, + "start_line": 35 + }, + "While constructing the external wrapper for:" + ], + "start_col": 1, + "start_line": 1 + } + }, + "579": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.transferOwnership" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 42, + "end_line": 40, + "input_file": { + "filename": "src/renderers/UriRenderer.cairo" + }, + "parent_location": [ + { + "end_col": 47, + "end_line": 60, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/access/ownable/library.cairo" + }, + "parent_location": [ + { + "end_col": 42, + "end_line": 43, + "input_file": { + "filename": "src/renderers/UriRenderer.cairo" + }, + "start_col": 5, + "start_line": 43 + }, + "While trying to retrieve the implicit argument 'syscall_ptr' in:" + ], + "start_col": 29, + "start_line": 60 + }, + "While expanding the reference 'syscall_ptr' in:" + ], + "start_col": 24, + "start_line": 40 + } + }, + "580": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.transferOwnership" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 70, + "end_line": 40, + "input_file": { + "filename": "src/renderers/UriRenderer.cairo" + }, + "parent_location": [ + { + "end_col": 75, + "end_line": 60, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/access/ownable/library.cairo" + }, + "parent_location": [ + { + "end_col": 42, + "end_line": 43, + "input_file": { + "filename": "src/renderers/UriRenderer.cairo" + }, + "start_col": 5, + "start_line": 43 + }, + "While trying to retrieve the implicit argument 'pedersen_ptr' in:" + ], + "start_col": 49, + "start_line": 60 + }, + "While expanding the reference 'pedersen_ptr' in:" + ], + "start_col": 44, + "start_line": 40 + } + }, + "581": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.transferOwnership" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 87, + "end_line": 40, + "input_file": { + "filename": "src/renderers/UriRenderer.cairo" + }, + "parent_location": [ + { + "end_col": 92, + "end_line": 60, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/access/ownable/library.cairo" + }, + "parent_location": [ + { + "end_col": 42, + "end_line": 43, + "input_file": { + "filename": "src/renderers/UriRenderer.cairo" + }, + "start_col": 5, + "start_line": 43 + }, + "While trying to retrieve the implicit argument 'range_check_ptr' in:" + ], + "start_col": 77, + "start_line": 60 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 72, + "start_line": 40 + } + }, + "582": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.transferOwnership" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 20, + "end_line": 41, + "input_file": { + "filename": "src/renderers/UriRenderer.cairo" + }, + "parent_location": [ + { + "end_col": 41, + "end_line": 43, + "input_file": { + "filename": "src/renderers/UriRenderer.cairo" + }, + "start_col": 32, + "start_line": 43 + }, + "While expanding the reference 'new_owner' in:" + ], + "start_col": 5, + "start_line": 41 + } + }, + "583": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.transferOwnership" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 42, + "end_line": 43, + "input_file": { + "filename": "src/renderers/UriRenderer.cairo" + }, + "start_col": 5, + "start_line": 43 + } + }, + "585": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.transferOwnership" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 15, + "end_line": 44, + "input_file": { + "filename": "src/renderers/UriRenderer.cairo" + }, + "start_col": 5, + "start_line": 44 + } + }, + "586": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.transferOwnership" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 40, + "end_line": 2, + "input_file": { + "filename": "autogen/starknet/arg_processor/450f0509800d3afb78e5f375ff7b17115e6b5d0fd7e2bff94c78fdb15f5f2d10.cairo" + }, + "parent_location": [ + { + "end_col": 20, + "end_line": 41, + "input_file": { + "filename": "src/renderers/UriRenderer.cairo" + }, + "parent_location": [ + { + "end_col": 45, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/arg_processor/c31620b02d4d706f0542c989b2aadc01b0981d1f6a5933a8fe4937ace3d70d92.cairo" + }, + "parent_location": [ + { + "end_col": 23, + "end_line": 40, + "input_file": { + "filename": "src/renderers/UriRenderer.cairo" + }, + "parent_location": [ + { + "end_col": 57, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/arg_processor/01cba52f8515996bb9d7070bde81ff39281d096d7024a558efcba6e1fd2402cf.cairo" + }, + "parent_location": [ + { + "end_col": 23, + "end_line": 40, + "input_file": { + "filename": "src/renderers/UriRenderer.cairo" + }, + "start_col": 6, + "start_line": 40 + }, + "While handling calldata of" + ], + "start_col": 35, + "start_line": 1 + }, + "While expanding the reference '__calldata_actual_size' in:" + ], + "start_col": 6, + "start_line": 40 + }, + "While handling calldata of" + ], + "start_col": 31, + "start_line": 1 + }, + "While expanding the reference '__calldata_ptr' in:" + ], + "start_col": 5, + "start_line": 41 + }, + "While handling calldata argument 'new_owner'" + ], + "start_col": 22, + "start_line": 2 + } + }, + "588": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.transferOwnership" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 58, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/arg_processor/01cba52f8515996bb9d7070bde81ff39281d096d7024a558efcba6e1fd2402cf.cairo" + }, + "parent_location": [ + { + "end_col": 23, + "end_line": 40, + "input_file": { + "filename": "src/renderers/UriRenderer.cairo" + }, + "start_col": 6, + "start_line": 40 + }, + "While handling calldata of" + ], + "start_col": 1, + "start_line": 1 + } + }, + "589": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.transferOwnership" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 64, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/transferOwnership/b2c52ca2d2a8fc8791a983086d8716c5eacd0c3d62934914d2286f84b98ff4cb.cairo" + }, + "parent_location": [ + { + "end_col": 42, + "end_line": 40, + "input_file": { + "filename": "src/renderers/UriRenderer.cairo" + }, + "parent_location": [ + { + "end_col": 55, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/transferOwnership/c2abbdf6d40d1d1b0441e88eb8846ba0c3d55e5f282e3d3f8d0a35a43a9b3e33.cairo" + }, + "parent_location": [ + { + "end_col": 23, + "end_line": 40, + "input_file": { + "filename": "src/renderers/UriRenderer.cairo" + }, + "start_col": 6, + "start_line": 40 + }, + "While constructing the external wrapper for:" + ], + "start_col": 44, + "start_line": 1 + }, + "While expanding the reference 'syscall_ptr' in:" + ], + "start_col": 24, + "start_line": 40 + }, + "While constructing the external wrapper for:" + ], + "start_col": 19, + "start_line": 1 + } + }, + "590": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.transferOwnership" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 110, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/transferOwnership/9684a85e93c782014ca14293edea4eb2502039a5a7b6538ecd39c56faaf12529.cairo" + }, + "parent_location": [ + { + "end_col": 70, + "end_line": 40, + "input_file": { + "filename": "src/renderers/UriRenderer.cairo" + }, + "parent_location": [ + { + "end_col": 82, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/transferOwnership/c2abbdf6d40d1d1b0441e88eb8846ba0c3d55e5f282e3d3f8d0a35a43a9b3e33.cairo" + }, + "parent_location": [ + { + "end_col": 23, + "end_line": 40, + "input_file": { + "filename": "src/renderers/UriRenderer.cairo" + }, + "start_col": 6, + "start_line": 40 + }, + "While constructing the external wrapper for:" + ], + "start_col": 70, + "start_line": 1 + }, + "While expanding the reference 'pedersen_ptr' in:" + ], + "start_col": 44, + "start_line": 40 + }, + "While constructing the external wrapper for:" + ], + "start_col": 20, + "start_line": 1 + } + }, + "591": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.transferOwnership" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 67, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/transferOwnership/741ea357d6336b0bed7bf0472425acd0311d543883b803388880e60a232040c7.cairo" + }, + "parent_location": [ + { + "end_col": 87, + "end_line": 40, + "input_file": { + "filename": "src/renderers/UriRenderer.cairo" + }, + "parent_location": [ + { + "end_col": 115, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/transferOwnership/c2abbdf6d40d1d1b0441e88eb8846ba0c3d55e5f282e3d3f8d0a35a43a9b3e33.cairo" + }, + "parent_location": [ + { + "end_col": 23, + "end_line": 40, + "input_file": { + "filename": "src/renderers/UriRenderer.cairo" + }, + "start_col": 6, + "start_line": 40 + }, + "While constructing the external wrapper for:" + ], + "start_col": 100, + "start_line": 1 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 72, + "start_line": 40 + }, + "While constructing the external wrapper for:" + ], + "start_col": 23, + "start_line": 1 + } + }, + "592": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.transferOwnership" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 48, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/arg_processor/450f0509800d3afb78e5f375ff7b17115e6b5d0fd7e2bff94c78fdb15f5f2d10.cairo" + }, + "parent_location": [ + { + "end_col": 20, + "end_line": 41, + "input_file": { + "filename": "src/renderers/UriRenderer.cairo" + }, + "parent_location": [ + { + "end_col": 151, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/transferOwnership/c2abbdf6d40d1d1b0441e88eb8846ba0c3d55e5f282e3d3f8d0a35a43a9b3e33.cairo" + }, + "parent_location": [ + { + "end_col": 23, + "end_line": 40, + "input_file": { + "filename": "src/renderers/UriRenderer.cairo" + }, + "start_col": 6, + "start_line": 40 + }, + "While constructing the external wrapper for:" + ], + "start_col": 127, + "start_line": 1 + }, + "While expanding the reference '__calldata_arg_new_owner' in:" + ], + "start_col": 5, + "start_line": 41 + }, + "While handling calldata argument 'new_owner'" + ], + "start_col": 32, + "start_line": 1 + } + }, + "593": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.transferOwnership" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 23, + "end_line": 40, + "input_file": { + "filename": "src/renderers/UriRenderer.cairo" + }, + "start_col": 6, + "start_line": 40 + } + }, + "595": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.transferOwnership" + ], + "flow_tracking_data": null, + "hints": [ + { + "location": { + "end_col": 34, + "end_line": 2, + "input_file": { + "filename": "autogen/starknet/external/transferOwnership/c2abbdf6d40d1d1b0441e88eb8846ba0c3d55e5f282e3d3f8d0a35a43a9b3e33.cairo" + }, + "parent_location": [ + { + "end_col": 23, + "end_line": 40, + "input_file": { + "filename": "src/renderers/UriRenderer.cairo" + }, + "start_col": 6, + "start_line": 40 + }, + "While constructing the external wrapper for:" + ], + "start_col": 1, + "start_line": 2 + }, + "n_prefix_newlines": 0 + } + ], + "inst": { + "end_col": 24, + "end_line": 3, + "input_file": { + "filename": "autogen/starknet/external/transferOwnership/c2abbdf6d40d1d1b0441e88eb8846ba0c3d55e5f282e3d3f8d0a35a43a9b3e33.cairo" + }, + "parent_location": [ + { + "end_col": 23, + "end_line": 40, + "input_file": { + "filename": "src/renderers/UriRenderer.cairo" + }, + "start_col": 6, + "start_line": 40 + }, + "While constructing the external wrapper for:" + ], + "start_col": 1, + "start_line": 3 + } + }, + "597": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.transferOwnership" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 55, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/transferOwnership/c2abbdf6d40d1d1b0441e88eb8846ba0c3d55e5f282e3d3f8d0a35a43a9b3e33.cairo" + }, + "parent_location": [ + { + "end_col": 23, + "end_line": 40, + "input_file": { + "filename": "src/renderers/UriRenderer.cairo" + }, + "parent_location": [ + { + "end_col": 20, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/transferOwnership/da17921a4e81c09e730800bbf23bfdbe5e9e6bfaedc59d80fbf62087fa43c27d.cairo" + }, + "parent_location": [ + { + "end_col": 23, + "end_line": 40, + "input_file": { + "filename": "src/renderers/UriRenderer.cairo" + }, + "start_col": 6, + "start_line": 40 + }, + "While constructing the external wrapper for:" + ], + "start_col": 9, + "start_line": 1 + }, + "While expanding the reference 'syscall_ptr' in:" + ], + "start_col": 6, + "start_line": 40 + }, + "While constructing the external wrapper for:" + ], + "start_col": 44, + "start_line": 1 + } + }, + "598": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.transferOwnership" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 82, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/transferOwnership/c2abbdf6d40d1d1b0441e88eb8846ba0c3d55e5f282e3d3f8d0a35a43a9b3e33.cairo" + }, + "parent_location": [ + { + "end_col": 23, + "end_line": 40, + "input_file": { + "filename": "src/renderers/UriRenderer.cairo" + }, + "parent_location": [ + { + "end_col": 33, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/transferOwnership/da17921a4e81c09e730800bbf23bfdbe5e9e6bfaedc59d80fbf62087fa43c27d.cairo" + }, + "parent_location": [ + { + "end_col": 23, + "end_line": 40, + "input_file": { + "filename": "src/renderers/UriRenderer.cairo" + }, + "start_col": 6, + "start_line": 40 + }, + "While constructing the external wrapper for:" + ], + "start_col": 21, + "start_line": 1 + }, + "While expanding the reference 'pedersen_ptr' in:" + ], + "start_col": 6, + "start_line": 40 + }, + "While constructing the external wrapper for:" + ], + "start_col": 70, + "start_line": 1 + } + }, + "599": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.transferOwnership" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 115, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/transferOwnership/c2abbdf6d40d1d1b0441e88eb8846ba0c3d55e5f282e3d3f8d0a35a43a9b3e33.cairo" + }, + "parent_location": [ + { + "end_col": 23, + "end_line": 40, + "input_file": { + "filename": "src/renderers/UriRenderer.cairo" + }, + "parent_location": [ + { + "end_col": 49, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/transferOwnership/da17921a4e81c09e730800bbf23bfdbe5e9e6bfaedc59d80fbf62087fa43c27d.cairo" + }, + "parent_location": [ + { + "end_col": 23, + "end_line": 40, + "input_file": { + "filename": "src/renderers/UriRenderer.cairo" + }, + "start_col": 6, + "start_line": 40 + }, + "While constructing the external wrapper for:" + ], + "start_col": 34, + "start_line": 1 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 6, + "start_line": 40 + }, + "While constructing the external wrapper for:" + ], + "start_col": 100, + "start_line": 1 + } + }, + "600": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.transferOwnership" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 21, + "end_line": 4, + "input_file": { + "filename": "autogen/starknet/external/transferOwnership/c2abbdf6d40d1d1b0441e88eb8846ba0c3d55e5f282e3d3f8d0a35a43a9b3e33.cairo" + }, + "parent_location": [ + { + "end_col": 23, + "end_line": 40, + "input_file": { + "filename": "src/renderers/UriRenderer.cairo" + }, + "parent_location": [ + { + "end_col": 62, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/transferOwnership/da17921a4e81c09e730800bbf23bfdbe5e9e6bfaedc59d80fbf62087fa43c27d.cairo" + }, + "parent_location": [ + { + "end_col": 23, + "end_line": 40, + "input_file": { + "filename": "src/renderers/UriRenderer.cairo" + }, + "start_col": 6, + "start_line": 40 + }, + "While constructing the external wrapper for:" + ], + "start_col": 50, + "start_line": 1 + }, + "While expanding the reference 'retdata_size' in:" + ], + "start_col": 6, + "start_line": 40 + }, + "While constructing the external wrapper for:" + ], + "start_col": 20, + "start_line": 4 + } + }, + "602": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.transferOwnership" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 16, + "end_line": 3, + "input_file": { + "filename": "autogen/starknet/external/transferOwnership/c2abbdf6d40d1d1b0441e88eb8846ba0c3d55e5f282e3d3f8d0a35a43a9b3e33.cairo" + }, + "parent_location": [ + { + "end_col": 23, + "end_line": 40, + "input_file": { + "filename": "src/renderers/UriRenderer.cairo" + }, + "parent_location": [ + { + "end_col": 70, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/transferOwnership/da17921a4e81c09e730800bbf23bfdbe5e9e6bfaedc59d80fbf62087fa43c27d.cairo" + }, + "parent_location": [ + { + "end_col": 23, + "end_line": 40, + "input_file": { + "filename": "src/renderers/UriRenderer.cairo" + }, + "start_col": 6, + "start_line": 40 + }, + "While constructing the external wrapper for:" + ], + "start_col": 63, + "start_line": 1 + }, + "While expanding the reference 'retdata' in:" + ], + "start_col": 6, + "start_line": 40 + }, + "While constructing the external wrapper for:" + ], + "start_col": 9, + "start_line": 3 + } + }, + "603": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.transferOwnership" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 72, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/transferOwnership/da17921a4e81c09e730800bbf23bfdbe5e9e6bfaedc59d80fbf62087fa43c27d.cairo" + }, + "parent_location": [ + { + "end_col": 23, + "end_line": 40, + "input_file": { + "filename": "src/renderers/UriRenderer.cairo" + }, + "start_col": 6, + "start_line": 40 + }, + "While constructing the external wrapper for:" + ], + "start_col": 1, + "start_line": 1 + } + }, + "604": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.constructor" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 36, + "end_line": 48, + "input_file": { + "filename": "src/renderers/UriRenderer.cairo" + }, + "parent_location": [ + { + "end_col": 40, + "end_line": 31, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/access/ownable/library.cairo" + }, + "parent_location": [ + { + "end_col": 31, + "end_line": 51, + "input_file": { + "filename": "src/renderers/UriRenderer.cairo" + }, + "start_col": 5, + "start_line": 51 + }, + "While trying to retrieve the implicit argument 'syscall_ptr' in:" + ], + "start_col": 22, + "start_line": 31 + }, + "While expanding the reference 'syscall_ptr' in:" + ], + "start_col": 18, + "start_line": 48 + } + }, + "605": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.constructor" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 64, + "end_line": 48, + "input_file": { + "filename": "src/renderers/UriRenderer.cairo" + }, + "parent_location": [ + { + "end_col": 68, + "end_line": 31, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/access/ownable/library.cairo" + }, + "parent_location": [ + { + "end_col": 31, + "end_line": 51, + "input_file": { + "filename": "src/renderers/UriRenderer.cairo" + }, + "start_col": 5, + "start_line": 51 + }, + "While trying to retrieve the implicit argument 'pedersen_ptr' in:" + ], + "start_col": 42, + "start_line": 31 + }, + "While expanding the reference 'pedersen_ptr' in:" + ], + "start_col": 38, + "start_line": 48 + } + }, + "606": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.constructor" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 81, + "end_line": 48, + "input_file": { + "filename": "src/renderers/UriRenderer.cairo" + }, + "parent_location": [ + { + "end_col": 85, + "end_line": 31, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/access/ownable/library.cairo" + }, + "parent_location": [ + { + "end_col": 31, + "end_line": 51, + "input_file": { + "filename": "src/renderers/UriRenderer.cairo" + }, + "start_col": 5, + "start_line": 51 + }, + "While trying to retrieve the implicit argument 'range_check_ptr' in:" + ], + "start_col": 70, + "start_line": 31 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 66, + "start_line": 48 + } + }, + "607": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.constructor" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 16, + "end_line": 49, + "input_file": { + "filename": "src/renderers/UriRenderer.cairo" + }, + "parent_location": [ + { + "end_col": 30, + "end_line": 51, + "input_file": { + "filename": "src/renderers/UriRenderer.cairo" + }, + "start_col": 25, + "start_line": 51 + }, + "While expanding the reference 'owner' in:" + ], + "start_col": 5, + "start_line": 49 + } + }, + "608": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.constructor" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 31, + "end_line": 51, + "input_file": { + "filename": "src/renderers/UriRenderer.cairo" + }, + "start_col": 5, + "start_line": 51 + } + }, + "610": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.constructor" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 36, + "end_line": 49, + "input_file": { + "filename": "src/renderers/UriRenderer.cairo" + }, + "parent_location": [ + { + "end_col": 37, + "end_line": 52, + "input_file": { + "filename": "src/renderers/UriRenderer.cairo" + }, + "start_col": 25, + "start_line": 52 + }, + "While expanding the reference 'base_uri_len' in:" + ], + "start_col": 18, + "start_line": 49 + } + }, + "611": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.constructor" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 38, + "end_line": 52, + "input_file": { + "filename": "src/renderers/UriRenderer.cairo" + }, + "start_col": 5, + "start_line": 52 + } + }, + "613": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.constructor" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 22, + "end_line": 53, + "input_file": { + "filename": "src/renderers/UriRenderer.cairo" + }, + "start_col": 21, + "start_line": 53 + } + }, + "615": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.constructor" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 36, + "end_line": 49, + "input_file": { + "filename": "src/renderers/UriRenderer.cairo" + }, + "parent_location": [ + { + "end_col": 36, + "end_line": 53, + "input_file": { + "filename": "src/renderers/UriRenderer.cairo" + }, + "start_col": 24, + "start_line": 53 + }, + "While expanding the reference 'base_uri_len' in:" + ], + "start_col": 18, + "start_line": 49 + } + }, + "616": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.constructor" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 53, + "end_line": 49, + "input_file": { + "filename": "src/renderers/UriRenderer.cairo" + }, + "parent_location": [ + { + "end_col": 46, + "end_line": 53, + "input_file": { + "filename": "src/renderers/UriRenderer.cairo" + }, + "start_col": 38, + "start_line": 53 + }, + "While expanding the reference 'base_uri' in:" + ], + "start_col": 38, + "start_line": 49 + } + }, + "617": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.constructor" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 47, + "end_line": 53, + "input_file": { + "filename": "src/renderers/UriRenderer.cairo" + }, + "start_col": 5, + "start_line": 53 + } + }, + "619": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.constructor" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 26, + "end_line": 54, + "input_file": { + "filename": "src/renderers/UriRenderer.cairo" + }, + "start_col": 25, + "start_line": 54 + } + }, + "621": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.constructor" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 27, + "end_line": 54, + "input_file": { + "filename": "src/renderers/UriRenderer.cairo" + }, + "start_col": 5, + "start_line": 54 + } + }, + "623": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.constructor" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 15, + "end_line": 55, + "input_file": { + "filename": "src/renderers/UriRenderer.cairo" + }, + "start_col": 5, + "start_line": 55 + } + }, + "624": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.constructor" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 67, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/constructor/741ea357d6336b0bed7bf0472425acd0311d543883b803388880e60a232040c7.cairo" + }, + "parent_location": [ + { + "end_col": 81, + "end_line": 48, + "input_file": { + "filename": "src/renderers/UriRenderer.cairo" + }, + "parent_location": [ + { + "end_col": 24, + "end_line": 2, + "input_file": { + "filename": "autogen/starknet/arg_processor/2ea11611167ad2adf1bde16aaf7defdc99376674027d4f606d15ea375b9c77aa.cairo" + }, + "parent_location": [ + { + "end_col": 53, + "end_line": 49, + "input_file": { + "filename": "src/renderers/UriRenderer.cairo" + }, + "start_col": 38, + "start_line": 49 + }, + "While handling calldata argument 'base_uri'" + ], + "start_col": 9, + "start_line": 2 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 66, + "start_line": 48 + }, + "While constructing the external wrapper for:" + ], + "start_col": 23, + "start_line": 1 + } + }, + "625": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.constructor" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 51, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/arg_processor/e0321294714e44f21aee810eefa3ed41d3a57effc1f0a060b66d6dd30ff97391.cairo" + }, + "parent_location": [ + { + "end_col": 36, + "end_line": 49, + "input_file": { + "filename": "src/renderers/UriRenderer.cairo" + }, + "parent_location": [ + { + "end_col": 55, + "end_line": 2, + "input_file": { + "filename": "autogen/starknet/arg_processor/2ea11611167ad2adf1bde16aaf7defdc99376674027d4f606d15ea375b9c77aa.cairo" + }, + "parent_location": [ + { + "end_col": 53, + "end_line": 49, + "input_file": { + "filename": "src/renderers/UriRenderer.cairo" + }, + "start_col": 38, + "start_line": 49 + }, + "While handling calldata argument 'base_uri'" + ], + "start_col": 28, + "start_line": 2 + }, + "While expanding the reference '__calldata_arg_base_uri_len' in:" + ], + "start_col": 18, + "start_line": 49 + }, + "While handling calldata argument 'base_uri_len'" + ], + "start_col": 35, + "start_line": 1 + } + }, + "626": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.constructor" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 56, + "end_line": 2, + "input_file": { + "filename": "autogen/starknet/arg_processor/2ea11611167ad2adf1bde16aaf7defdc99376674027d4f606d15ea375b9c77aa.cairo" + }, + "parent_location": [ + { + "end_col": 53, + "end_line": 49, + "input_file": { + "filename": "src/renderers/UriRenderer.cairo" + }, + "start_col": 38, + "start_line": 49 + }, + "While handling calldata argument 'base_uri'" + ], + "start_col": 1, + "start_line": 2 + } + }, + "627": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.constructor" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 40, + "end_line": 2, + "input_file": { + "filename": "autogen/starknet/arg_processor/e0321294714e44f21aee810eefa3ed41d3a57effc1f0a060b66d6dd30ff97391.cairo" + }, + "parent_location": [ + { + "end_col": 36, + "end_line": 49, + "input_file": { + "filename": "src/renderers/UriRenderer.cairo" + }, + "parent_location": [ + { + "end_col": 40, + "end_line": 8, + "input_file": { + "filename": "autogen/starknet/arg_processor/2ea11611167ad2adf1bde16aaf7defdc99376674027d4f606d15ea375b9c77aa.cairo" + }, + "parent_location": [ + { + "end_col": 53, + "end_line": 49, + "input_file": { + "filename": "src/renderers/UriRenderer.cairo" + }, + "start_col": 38, + "start_line": 49 + }, + "While handling calldata argument 'base_uri'" + ], + "start_col": 26, + "start_line": 8 + }, + "While expanding the reference '__calldata_ptr' in:" + ], + "start_col": 18, + "start_line": 49 + }, + "While handling calldata argument 'base_uri_len'" + ], + "start_col": 22, + "start_line": 2 + } + }, + "629": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.constructor" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 51, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/arg_processor/e0321294714e44f21aee810eefa3ed41d3a57effc1f0a060b66d6dd30ff97391.cairo" + }, + "parent_location": [ + { + "end_col": 36, + "end_line": 49, + "input_file": { + "filename": "src/renderers/UriRenderer.cairo" + }, + "parent_location": [ + { + "end_col": 70, + "end_line": 8, + "input_file": { + "filename": "autogen/starknet/arg_processor/2ea11611167ad2adf1bde16aaf7defdc99376674027d4f606d15ea375b9c77aa.cairo" + }, + "parent_location": [ + { + "end_col": 53, + "end_line": 49, + "input_file": { + "filename": "src/renderers/UriRenderer.cairo" + }, + "start_col": 38, + "start_line": 49 + }, + "While handling calldata argument 'base_uri'" + ], + "start_col": 43, + "start_line": 8 + }, + "While expanding the reference '__calldata_arg_base_uri_len' in:" + ], + "start_col": 18, + "start_line": 49 + }, + "While handling calldata argument 'base_uri_len'" + ], + "start_col": 35, + "start_line": 1 + } + }, + "630": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.constructor" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 74, + "end_line": 8, + "input_file": { + "filename": "autogen/starknet/arg_processor/2ea11611167ad2adf1bde16aaf7defdc99376674027d4f606d15ea375b9c77aa.cairo" + }, + "parent_location": [ + { + "end_col": 53, + "end_line": 49, + "input_file": { + "filename": "src/renderers/UriRenderer.cairo" + }, + "start_col": 38, + "start_line": 49 + }, + "While handling calldata argument 'base_uri'" + ], + "start_col": 26, + "start_line": 8 + } + }, + "631": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.constructor" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 58, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/arg_processor/01cba52f8515996bb9d7070bde81ff39281d096d7024a558efcba6e1fd2402cf.cairo" + }, + "parent_location": [ + { + "end_col": 17, + "end_line": 48, + "input_file": { + "filename": "src/renderers/UriRenderer.cairo" + }, + "start_col": 6, + "start_line": 48 + }, + "While handling calldata of" + ], + "start_col": 1, + "start_line": 1 + } + }, + "632": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.constructor" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 67, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/constructor/741ea357d6336b0bed7bf0472425acd0311d543883b803388880e60a232040c7.cairo" + }, + "parent_location": [ + { + "end_col": 81, + "end_line": 48, + "input_file": { + "filename": "src/renderers/UriRenderer.cairo" + }, + "parent_location": [ + { + "end_col": 38, + "end_line": 3, + "input_file": { + "filename": "autogen/starknet/arg_processor/2ea11611167ad2adf1bde16aaf7defdc99376674027d4f606d15ea375b9c77aa.cairo" + }, + "parent_location": [ + { + "end_col": 53, + "end_line": 49, + "input_file": { + "filename": "src/renderers/UriRenderer.cairo" + }, + "parent_location": [ + { + "end_col": 115, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/constructor/483047e0a34f31e3f8834df7727a14c79ab227c3526d22174c9d1610508a51cd.cairo" + }, + "parent_location": [ + { + "end_col": 17, + "end_line": 48, + "input_file": { + "filename": "src/renderers/UriRenderer.cairo" + }, + "start_col": 6, + "start_line": 48 + }, + "While constructing the external wrapper for:" + ], + "start_col": 100, + "start_line": 1 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 38, + "start_line": 49 + }, + "While handling calldata argument 'base_uri'" + ], + "start_col": 23, + "start_line": 3 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 66, + "start_line": 48 + }, + "While constructing the external wrapper for:" + ], + "start_col": 23, + "start_line": 1 + } + }, + "633": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.constructor" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 64, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/constructor/b2c52ca2d2a8fc8791a983086d8716c5eacd0c3d62934914d2286f84b98ff4cb.cairo" + }, + "parent_location": [ + { + "end_col": 36, + "end_line": 48, + "input_file": { + "filename": "src/renderers/UriRenderer.cairo" + }, + "parent_location": [ + { + "end_col": 55, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/constructor/483047e0a34f31e3f8834df7727a14c79ab227c3526d22174c9d1610508a51cd.cairo" + }, + "parent_location": [ + { + "end_col": 17, + "end_line": 48, + "input_file": { + "filename": "src/renderers/UriRenderer.cairo" + }, + "start_col": 6, + "start_line": 48 + }, + "While constructing the external wrapper for:" + ], + "start_col": 44, + "start_line": 1 + }, + "While expanding the reference 'syscall_ptr' in:" + ], + "start_col": 18, + "start_line": 48 + }, + "While constructing the external wrapper for:" + ], + "start_col": 19, + "start_line": 1 + } + }, + "634": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.constructor" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 110, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/constructor/9684a85e93c782014ca14293edea4eb2502039a5a7b6538ecd39c56faaf12529.cairo" + }, + "parent_location": [ + { + "end_col": 64, + "end_line": 48, + "input_file": { + "filename": "src/renderers/UriRenderer.cairo" + }, + "parent_location": [ + { + "end_col": 82, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/constructor/483047e0a34f31e3f8834df7727a14c79ab227c3526d22174c9d1610508a51cd.cairo" + }, + "parent_location": [ + { + "end_col": 17, + "end_line": 48, + "input_file": { + "filename": "src/renderers/UriRenderer.cairo" + }, + "start_col": 6, + "start_line": 48 + }, + "While constructing the external wrapper for:" + ], + "start_col": 70, + "start_line": 1 + }, + "While expanding the reference 'pedersen_ptr' in:" + ], + "start_col": 38, + "start_line": 48 + }, + "While constructing the external wrapper for:" + ], + "start_col": 20, + "start_line": 1 + } + }, + "635": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.constructor" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 42, + "end_line": 3, + "input_file": { + "filename": "autogen/starknet/arg_processor/2ea11611167ad2adf1bde16aaf7defdc99376674027d4f606d15ea375b9c77aa.cairo" + }, + "parent_location": [ + { + "end_col": 53, + "end_line": 49, + "input_file": { + "filename": "src/renderers/UriRenderer.cairo" + }, + "parent_location": [ + { + "end_col": 115, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/constructor/483047e0a34f31e3f8834df7727a14c79ab227c3526d22174c9d1610508a51cd.cairo" + }, + "parent_location": [ + { + "end_col": 17, + "end_line": 48, + "input_file": { + "filename": "src/renderers/UriRenderer.cairo" + }, + "start_col": 6, + "start_line": 48 + }, + "While constructing the external wrapper for:" + ], + "start_col": 100, + "start_line": 1 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 38, + "start_line": 49 + }, + "While handling calldata argument 'base_uri'" + ], + "start_col": 23, + "start_line": 3 + } + }, + "637": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.constructor" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 44, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/arg_processor/f6a4d9ae897caf37cefd18f7c8da7eee73157818279359aadee282f0fe59cdbc.cairo" + }, + "parent_location": [ + { + "end_col": 16, + "end_line": 49, + "input_file": { + "filename": "src/renderers/UriRenderer.cairo" + }, + "parent_location": [ + { + "end_col": 143, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/constructor/483047e0a34f31e3f8834df7727a14c79ab227c3526d22174c9d1610508a51cd.cairo" + }, + "parent_location": [ + { + "end_col": 17, + "end_line": 48, + "input_file": { + "filename": "src/renderers/UriRenderer.cairo" + }, + "start_col": 6, + "start_line": 48 + }, + "While constructing the external wrapper for:" + ], + "start_col": 123, + "start_line": 1 + }, + "While expanding the reference '__calldata_arg_owner' in:" + ], + "start_col": 5, + "start_line": 49 + }, + "While handling calldata argument 'owner'" + ], + "start_col": 28, + "start_line": 1 + } + }, + "638": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.constructor" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 51, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/arg_processor/e0321294714e44f21aee810eefa3ed41d3a57effc1f0a060b66d6dd30ff97391.cairo" + }, + "parent_location": [ + { + "end_col": 36, + "end_line": 49, + "input_file": { + "filename": "src/renderers/UriRenderer.cairo" + }, + "parent_location": [ + { + "end_col": 185, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/constructor/483047e0a34f31e3f8834df7727a14c79ab227c3526d22174c9d1610508a51cd.cairo" + }, + "parent_location": [ + { + "end_col": 17, + "end_line": 48, + "input_file": { + "filename": "src/renderers/UriRenderer.cairo" + }, + "start_col": 6, + "start_line": 48 + }, + "While constructing the external wrapper for:" + ], + "start_col": 158, + "start_line": 1 + }, + "While expanding the reference '__calldata_arg_base_uri_len' in:" + ], + "start_col": 18, + "start_line": 49 + }, + "While handling calldata argument 'base_uri_len'" + ], + "start_col": 35, + "start_line": 1 + } + }, + "639": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.constructor" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 58, + "end_line": 5, + "input_file": { + "filename": "autogen/starknet/arg_processor/2ea11611167ad2adf1bde16aaf7defdc99376674027d4f606d15ea375b9c77aa.cairo" + }, + "parent_location": [ + { + "end_col": 53, + "end_line": 49, + "input_file": { + "filename": "src/renderers/UriRenderer.cairo" + }, + "parent_location": [ + { + "end_col": 219, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/constructor/483047e0a34f31e3f8834df7727a14c79ab227c3526d22174c9d1610508a51cd.cairo" + }, + "parent_location": [ + { + "end_col": 17, + "end_line": 48, + "input_file": { + "filename": "src/renderers/UriRenderer.cairo" + }, + "start_col": 6, + "start_line": 48 + }, + "While constructing the external wrapper for:" + ], + "start_col": 196, + "start_line": 1 + }, + "While expanding the reference '__calldata_arg_base_uri' in:" + ], + "start_col": 38, + "start_line": 49 + }, + "While handling calldata argument 'base_uri'" + ], + "start_col": 31, + "start_line": 5 + } + }, + "641": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.constructor" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 17, + "end_line": 48, + "input_file": { + "filename": "src/renderers/UriRenderer.cairo" + }, + "start_col": 6, + "start_line": 48 + } + }, + "643": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.constructor" + ], + "flow_tracking_data": null, + "hints": [ + { + "location": { + "end_col": 34, + "end_line": 2, + "input_file": { + "filename": "autogen/starknet/external/constructor/483047e0a34f31e3f8834df7727a14c79ab227c3526d22174c9d1610508a51cd.cairo" + }, + "parent_location": [ + { + "end_col": 17, + "end_line": 48, + "input_file": { + "filename": "src/renderers/UriRenderer.cairo" + }, + "start_col": 6, + "start_line": 48 + }, + "While constructing the external wrapper for:" + ], + "start_col": 1, + "start_line": 2 + }, + "n_prefix_newlines": 0 + } + ], + "inst": { + "end_col": 24, + "end_line": 3, + "input_file": { + "filename": "autogen/starknet/external/constructor/483047e0a34f31e3f8834df7727a14c79ab227c3526d22174c9d1610508a51cd.cairo" + }, + "parent_location": [ + { + "end_col": 17, + "end_line": 48, + "input_file": { + "filename": "src/renderers/UriRenderer.cairo" + }, + "start_col": 6, + "start_line": 48 + }, + "While constructing the external wrapper for:" + ], + "start_col": 1, + "start_line": 3 + } + }, + "645": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.constructor" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 55, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/constructor/483047e0a34f31e3f8834df7727a14c79ab227c3526d22174c9d1610508a51cd.cairo" + }, + "parent_location": [ + { + "end_col": 17, + "end_line": 48, + "input_file": { + "filename": "src/renderers/UriRenderer.cairo" + }, + "parent_location": [ + { + "end_col": 20, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/constructor/da17921a4e81c09e730800bbf23bfdbe5e9e6bfaedc59d80fbf62087fa43c27d.cairo" + }, + "parent_location": [ + { + "end_col": 17, + "end_line": 48, + "input_file": { + "filename": "src/renderers/UriRenderer.cairo" + }, + "start_col": 6, + "start_line": 48 + }, + "While constructing the external wrapper for:" + ], + "start_col": 9, + "start_line": 1 + }, + "While expanding the reference 'syscall_ptr' in:" + ], + "start_col": 6, + "start_line": 48 + }, + "While constructing the external wrapper for:" + ], + "start_col": 44, + "start_line": 1 + } + }, + "646": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.constructor" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 82, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/constructor/483047e0a34f31e3f8834df7727a14c79ab227c3526d22174c9d1610508a51cd.cairo" + }, + "parent_location": [ + { + "end_col": 17, + "end_line": 48, + "input_file": { + "filename": "src/renderers/UriRenderer.cairo" + }, + "parent_location": [ + { + "end_col": 33, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/constructor/da17921a4e81c09e730800bbf23bfdbe5e9e6bfaedc59d80fbf62087fa43c27d.cairo" + }, + "parent_location": [ + { + "end_col": 17, + "end_line": 48, + "input_file": { + "filename": "src/renderers/UriRenderer.cairo" + }, + "start_col": 6, + "start_line": 48 + }, + "While constructing the external wrapper for:" + ], + "start_col": 21, + "start_line": 1 + }, + "While expanding the reference 'pedersen_ptr' in:" + ], + "start_col": 6, + "start_line": 48 + }, + "While constructing the external wrapper for:" + ], + "start_col": 70, + "start_line": 1 + } + }, + "647": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.constructor" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 115, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/constructor/483047e0a34f31e3f8834df7727a14c79ab227c3526d22174c9d1610508a51cd.cairo" + }, + "parent_location": [ + { + "end_col": 17, + "end_line": 48, + "input_file": { + "filename": "src/renderers/UriRenderer.cairo" + }, + "parent_location": [ + { + "end_col": 49, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/constructor/da17921a4e81c09e730800bbf23bfdbe5e9e6bfaedc59d80fbf62087fa43c27d.cairo" + }, + "parent_location": [ + { + "end_col": 17, + "end_line": 48, + "input_file": { + "filename": "src/renderers/UriRenderer.cairo" + }, + "start_col": 6, + "start_line": 48 + }, + "While constructing the external wrapper for:" + ], + "start_col": 34, + "start_line": 1 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 6, + "start_line": 48 + }, + "While constructing the external wrapper for:" + ], + "start_col": 100, + "start_line": 1 + } + }, + "648": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.constructor" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 21, + "end_line": 4, + "input_file": { + "filename": "autogen/starknet/external/constructor/483047e0a34f31e3f8834df7727a14c79ab227c3526d22174c9d1610508a51cd.cairo" + }, + "parent_location": [ + { + "end_col": 17, + "end_line": 48, + "input_file": { + "filename": "src/renderers/UriRenderer.cairo" + }, + "parent_location": [ + { + "end_col": 62, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/constructor/da17921a4e81c09e730800bbf23bfdbe5e9e6bfaedc59d80fbf62087fa43c27d.cairo" + }, + "parent_location": [ + { + "end_col": 17, + "end_line": 48, + "input_file": { + "filename": "src/renderers/UriRenderer.cairo" + }, + "start_col": 6, + "start_line": 48 + }, + "While constructing the external wrapper for:" + ], + "start_col": 50, + "start_line": 1 + }, + "While expanding the reference 'retdata_size' in:" + ], + "start_col": 6, + "start_line": 48 + }, + "While constructing the external wrapper for:" + ], + "start_col": 20, + "start_line": 4 + } + }, + "650": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.constructor" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 16, + "end_line": 3, + "input_file": { + "filename": "autogen/starknet/external/constructor/483047e0a34f31e3f8834df7727a14c79ab227c3526d22174c9d1610508a51cd.cairo" + }, + "parent_location": [ + { + "end_col": 17, + "end_line": 48, + "input_file": { + "filename": "src/renderers/UriRenderer.cairo" + }, + "parent_location": [ + { + "end_col": 70, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/constructor/da17921a4e81c09e730800bbf23bfdbe5e9e6bfaedc59d80fbf62087fa43c27d.cairo" + }, + "parent_location": [ + { + "end_col": 17, + "end_line": 48, + "input_file": { + "filename": "src/renderers/UriRenderer.cairo" + }, + "start_col": 6, + "start_line": 48 + }, + "While constructing the external wrapper for:" + ], + "start_col": 63, + "start_line": 1 + }, + "While expanding the reference 'retdata' in:" + ], + "start_col": 6, + "start_line": 48 + }, + "While constructing the external wrapper for:" + ], + "start_col": 9, + "start_line": 3 + } + }, + "651": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.constructor" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 72, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/constructor/da17921a4e81c09e730800bbf23bfdbe5e9e6bfaedc59d80fbf62087fa43c27d.cairo" + }, + "parent_location": [ + { + "end_col": 17, + "end_line": 48, + "input_file": { + "filename": "src/renderers/UriRenderer.cairo" + }, + "start_col": 6, + "start_line": 48 + }, + "While constructing the external wrapper for:" + ], + "start_col": 1, + "start_line": 1 + } + }, + "652": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.getBaseUri" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 18, + "end_line": 62, + "input_file": { + "filename": "src/renderers/UriRenderer.cairo" + }, + "start_col": 5, + "start_line": 62 + } + }, + "654": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.getBaseUri" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 29, + "end_line": 63, + "input_file": { + "filename": "src/renderers/UriRenderer.cairo" + }, + "start_col": 22, + "start_line": 63 + } + }, + "656": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.getBaseUri" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 18, + "end_line": 63, + "input_file": { + "filename": "src/renderers/UriRenderer.cairo" + }, + "parent_location": [ + { + "end_col": 18, + "end_line": 63, + "input_file": { + "filename": "src/renderers/UriRenderer.cairo" + }, + "start_col": 10, + "start_line": 63 + }, + "While auto generating local variable for 'base_uri'." + ], + "start_col": 10, + "start_line": 63 + } + }, + "657": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.getBaseUri" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 35, + "end_line": 59, + "input_file": { + "filename": "src/renderers/UriRenderer.cairo" + }, + "parent_location": [ + { + "end_col": 39, + "end_line": 109, + "input_file": { + "filename": "src/renderers/UriRenderer.cairo" + }, + "parent_location": [ + { + "end_col": 46, + "end_line": 64, + "input_file": { + "filename": "src/renderers/UriRenderer.cairo" + }, + "start_col": 19, + "start_line": 64 + }, + "While trying to retrieve the implicit argument 'syscall_ptr' in:" + ], + "start_col": 21, + "start_line": 109 + }, + "While expanding the reference 'syscall_ptr' in:" + ], + "start_col": 17, + "start_line": 59 + } + }, + "658": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.getBaseUri" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 63, + "end_line": 59, + "input_file": { + "filename": "src/renderers/UriRenderer.cairo" + }, + "parent_location": [ + { + "end_col": 67, + "end_line": 109, + "input_file": { + "filename": "src/renderers/UriRenderer.cairo" + }, + "parent_location": [ + { + "end_col": 46, + "end_line": 64, + "input_file": { + "filename": "src/renderers/UriRenderer.cairo" + }, + "start_col": 19, + "start_line": 64 + }, + "While trying to retrieve the implicit argument 'pedersen_ptr' in:" + ], + "start_col": 41, + "start_line": 109 + }, + "While expanding the reference 'pedersen_ptr' in:" + ], + "start_col": 37, + "start_line": 59 + } + }, + "659": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.getBaseUri" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 80, + "end_line": 59, + "input_file": { + "filename": "src/renderers/UriRenderer.cairo" + }, + "parent_location": [ + { + "end_col": 84, + "end_line": 109, + "input_file": { + "filename": "src/renderers/UriRenderer.cairo" + }, + "parent_location": [ + { + "end_col": 46, + "end_line": 64, + "input_file": { + "filename": "src/renderers/UriRenderer.cairo" + }, + "start_col": 19, + "start_line": 64 + }, + "While trying to retrieve the implicit argument 'range_check_ptr' in:" + ], + "start_col": 69, + "start_line": 109 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 65, + "start_line": 59 + } + }, + "660": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.getBaseUri" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 35, + "end_line": 64, + "input_file": { + "filename": "src/renderers/UriRenderer.cairo" + }, + "start_col": 34, + "start_line": 64 + } + }, + "662": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.getBaseUri" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 18, + "end_line": 63, + "input_file": { + "filename": "src/renderers/UriRenderer.cairo" + }, + "parent_location": [ + { + "end_col": 18, + "end_line": 63, + "input_file": { + "filename": "src/renderers/UriRenderer.cairo" + }, + "parent_location": [ + { + "end_col": 45, + "end_line": 64, + "input_file": { + "filename": "src/renderers/UriRenderer.cairo" + }, + "start_col": 37, + "start_line": 64 + }, + "While expanding the reference 'base_uri' in:" + ], + "start_col": 10, + "start_line": 63 + }, + "While auto generating local variable for 'base_uri'." + ], + "start_col": 10, + "start_line": 63 + } + }, + "663": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.getBaseUri" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 46, + "end_line": 64, + "input_file": { + "filename": "src/renderers/UriRenderer.cairo" + }, + "start_col": 19, + "start_line": 64 + } + }, + "665": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.getBaseUri" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 39, + "end_line": 109, + "input_file": { + "filename": "src/renderers/UriRenderer.cairo" + }, + "parent_location": [ + { + "end_col": 46, + "end_line": 64, + "input_file": { + "filename": "src/renderers/UriRenderer.cairo" + }, + "parent_location": [ + { + "end_col": 33, + "end_line": 13, + "input_file": { + "filename": "autogen/starknet/storage_var/_base_uri_len/decl.cairo" + }, + "parent_location": [ + { + "end_col": 46, + "end_line": 65, + "input_file": { + "filename": "src/renderers/UriRenderer.cairo" + }, + "start_col": 26, + "start_line": 65 + }, + "While trying to retrieve the implicit argument 'syscall_ptr' in:" + ], + "start_col": 15, + "start_line": 13 + }, + "While expanding the reference 'syscall_ptr' in:" + ], + "start_col": 19, + "start_line": 64 + }, + "While trying to update the implicit return value 'syscall_ptr' in:" + ], + "start_col": 21, + "start_line": 109 + } + }, + "666": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.getBaseUri" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 67, + "end_line": 109, + "input_file": { + "filename": "src/renderers/UriRenderer.cairo" + }, + "parent_location": [ + { + "end_col": 46, + "end_line": 64, + "input_file": { + "filename": "src/renderers/UriRenderer.cairo" + }, + "parent_location": [ + { + "end_col": 61, + "end_line": 13, + "input_file": { + "filename": "autogen/starknet/storage_var/_base_uri_len/decl.cairo" + }, + "parent_location": [ + { + "end_col": 46, + "end_line": 65, + "input_file": { + "filename": "src/renderers/UriRenderer.cairo" + }, + "start_col": 26, + "start_line": 65 + }, + "While trying to retrieve the implicit argument 'pedersen_ptr' in:" + ], + "start_col": 35, + "start_line": 13 + }, + "While expanding the reference 'pedersen_ptr' in:" + ], + "start_col": 19, + "start_line": 64 + }, + "While trying to update the implicit return value 'pedersen_ptr' in:" + ], + "start_col": 41, + "start_line": 109 + } + }, + "667": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.getBaseUri" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 84, + "end_line": 109, + "input_file": { + "filename": "src/renderers/UriRenderer.cairo" + }, + "parent_location": [ + { + "end_col": 46, + "end_line": 64, + "input_file": { + "filename": "src/renderers/UriRenderer.cairo" + }, + "parent_location": [ + { + "end_col": 78, + "end_line": 13, + "input_file": { + "filename": "autogen/starknet/storage_var/_base_uri_len/decl.cairo" + }, + "parent_location": [ + { + "end_col": 46, + "end_line": 65, + "input_file": { + "filename": "src/renderers/UriRenderer.cairo" + }, + "start_col": 26, + "start_line": 65 + }, + "While trying to retrieve the implicit argument 'range_check_ptr' in:" + ], + "start_col": 63, + "start_line": 13 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 19, + "start_line": 64 + }, + "While trying to update the implicit return value 'range_check_ptr' in:" + ], + "start_col": 69, + "start_line": 109 + } + }, + "668": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.getBaseUri" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 46, + "end_line": 65, + "input_file": { + "filename": "src/renderers/UriRenderer.cairo" + }, + "start_col": 26, + "start_line": 65 + } + }, + "670": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.getBaseUri" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 18, + "end_line": 63, + "input_file": { + "filename": "src/renderers/UriRenderer.cairo" + }, + "parent_location": [ + { + "end_col": 18, + "end_line": 63, + "input_file": { + "filename": "src/renderers/UriRenderer.cairo" + }, + "parent_location": [ + { + "end_col": 35, + "end_line": 66, + "input_file": { + "filename": "src/renderers/UriRenderer.cairo" + }, + "start_col": 27, + "start_line": 66 + }, + "While expanding the reference 'base_uri' in:" + ], + "start_col": 10, + "start_line": 63 + }, + "While auto generating local variable for 'base_uri'." + ], + "start_col": 10, + "start_line": 63 + } + }, + "671": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.getBaseUri" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 37, + "end_line": 66, + "input_file": { + "filename": "src/renderers/UriRenderer.cairo" + }, + "start_col": 5, + "start_line": 66 + } + }, + "672": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.getBaseUri_encode_return" + ], + "flow_tracking_data": null, + "hints": [ + { + "location": { + "end_col": 38, + "end_line": 3, + "input_file": { + "filename": "autogen/starknet/external/return/getBaseUri/061d593342abd5b2c4519e00e4e9d6bbfdd2431c405d1474e0b36cae966af3cc.cairo" + }, + "parent_location": [ + { + "end_col": 16, + "end_line": 59, + "input_file": { + "filename": "src/renderers/UriRenderer.cairo" + }, + "start_col": 6, + "start_line": 59 + }, + "While handling return value of" + ], + "start_col": 5, + "start_line": 3 + }, + "n_prefix_newlines": 0 + } + ], + "inst": { + "end_col": 18, + "end_line": 4, + "input_file": { + "filename": "autogen/starknet/external/return/getBaseUri/061d593342abd5b2c4519e00e4e9d6bbfdd2431c405d1474e0b36cae966af3cc.cairo" + }, + "parent_location": [ + { + "end_col": 16, + "end_line": 59, + "input_file": { + "filename": "src/renderers/UriRenderer.cairo" + }, + "start_col": 6, + "start_line": 59 + }, + "While handling return value of" + ], + "start_col": 5, + "start_line": 4 + } + }, + "674": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.getBaseUri_encode_return" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 54, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/arg_processor/38a239a26cfcb3ccc2183e4192aef7ad6240192be6db2fef30c521ece6b8b11e.cairo" + }, + "parent_location": [ + { + "end_col": 23, + "end_line": 60, + "input_file": { + "filename": "src/renderers/UriRenderer.cairo" + }, + "start_col": 5, + "start_line": 60 + }, + "While handling return value 'base_uri_len'" + ], + "start_col": 1, + "start_line": 1 + } + }, + "675": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.getBaseUri_encode_return" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 51, + "end_line": 2, + "input_file": { + "filename": "autogen/starknet/arg_processor/1c2e215967869dc47206ad2fc37b17705811908cf20bd36317133d65ef250c93.cairo" + }, + "parent_location": [ + { + "end_col": 40, + "end_line": 60, + "input_file": { + "filename": "src/renderers/UriRenderer.cairo" + }, + "start_col": 25, + "start_line": 60 + }, + "While handling return value 'base_uri'" + ], + "start_col": 1, + "start_line": 2 + } + }, + "676": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.getBaseUri_encode_return" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 45, + "end_line": 5, + "input_file": { + "filename": "autogen/starknet/arg_processor/1c2e215967869dc47206ad2fc37b17705811908cf20bd36317133d65ef250c93.cairo" + }, + "parent_location": [ + { + "end_col": 40, + "end_line": 60, + "input_file": { + "filename": "src/renderers/UriRenderer.cairo" + }, + "start_col": 25, + "start_line": 60 + }, + "While handling return value 'base_uri'" + ], + "start_col": 1, + "start_line": 5 + } + }, + "678": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.getBaseUri_encode_return" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 48, + "end_line": 2, + "input_file": { + "filename": "autogen/starknet/arg_processor/38a239a26cfcb3ccc2183e4192aef7ad6240192be6db2fef30c521ece6b8b11e.cairo" + }, + "parent_location": [ + { + "end_col": 23, + "end_line": 60, + "input_file": { + "filename": "src/renderers/UriRenderer.cairo" + }, + "parent_location": [ + { + "end_col": 53, + "end_line": 10, + "input_file": { + "filename": "autogen/starknet/arg_processor/1c2e215967869dc47206ad2fc37b17705811908cf20bd36317133d65ef250c93.cairo" + }, + "parent_location": [ + { + "end_col": 40, + "end_line": 60, + "input_file": { + "filename": "src/renderers/UriRenderer.cairo" + }, + "start_col": 25, + "start_line": 60 + }, + "While handling return value 'base_uri'" + ], + "start_col": 35, + "start_line": 10 + }, + "While expanding the reference '__return_value_ptr' in:" + ], + "start_col": 5, + "start_line": 60 + }, + "While handling return value 'base_uri_len'" + ], + "start_col": 26, + "start_line": 2 + } + }, + "680": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.getBaseUri_encode_return" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 83, + "end_line": 10, + "input_file": { + "filename": "autogen/starknet/arg_processor/1c2e215967869dc47206ad2fc37b17705811908cf20bd36317133d65ef250c93.cairo" + }, + "parent_location": [ + { + "end_col": 40, + "end_line": 60, + "input_file": { + "filename": "src/renderers/UriRenderer.cairo" + }, + "start_col": 25, + "start_line": 60 + }, + "While handling return value 'base_uri'" + ], + "start_col": 1, + "start_line": 10 + } + }, + "681": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.getBaseUri_encode_return" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 48, + "end_line": 2, + "input_file": { + "filename": "autogen/starknet/arg_processor/38a239a26cfcb3ccc2183e4192aef7ad6240192be6db2fef30c521ece6b8b11e.cairo" + }, + "parent_location": [ + { + "end_col": 23, + "end_line": 60, + "input_file": { + "filename": "src/renderers/UriRenderer.cairo" + }, + "parent_location": [ + { + "end_col": 49, + "end_line": 7, + "input_file": { + "filename": "autogen/starknet/arg_processor/1c2e215967869dc47206ad2fc37b17705811908cf20bd36317133d65ef250c93.cairo" + }, + "parent_location": [ + { + "end_col": 40, + "end_line": 60, + "input_file": { + "filename": "src/renderers/UriRenderer.cairo" + }, + "parent_location": [ + { + "end_col": 32, + "end_line": 12, + "input_file": { + "filename": "autogen/starknet/arg_processor/1c2e215967869dc47206ad2fc37b17705811908cf20bd36317133d65ef250c93.cairo" + }, + "parent_location": [ + { + "end_col": 40, + "end_line": 60, + "input_file": { + "filename": "src/renderers/UriRenderer.cairo" + }, + "start_col": 25, + "start_line": 60 + }, + "While handling return value 'base_uri'" + ], + "start_col": 9, + "start_line": 12 + }, + "While expanding the reference '__return_value_ptr_copy' in:" + ], + "start_col": 25, + "start_line": 60 + }, + "While handling return value 'base_uri'" + ], + "start_col": 31, + "start_line": 7 + }, + "While expanding the reference '__return_value_ptr' in:" + ], + "start_col": 5, + "start_line": 60 + }, + "While handling return value 'base_uri_len'" + ], + "start_col": 26, + "start_line": 2 + } + }, + "683": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.getBaseUri_encode_return" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 27, + "end_line": 13, + "input_file": { + "filename": "autogen/starknet/arg_processor/1c2e215967869dc47206ad2fc37b17705811908cf20bd36317133d65ef250c93.cairo" + }, + "parent_location": [ + { + "end_col": 40, + "end_line": 60, + "input_file": { + "filename": "src/renderers/UriRenderer.cairo" + }, + "start_col": 25, + "start_line": 60 + }, + "While handling return value 'base_uri'" + ], + "start_col": 9, + "start_line": 13 + } + }, + "684": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.getBaseUri_encode_return" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 31, + "end_line": 14, + "input_file": { + "filename": "autogen/starknet/arg_processor/1c2e215967869dc47206ad2fc37b17705811908cf20bd36317133d65ef250c93.cairo" + }, + "parent_location": [ + { + "end_col": 40, + "end_line": 60, + "input_file": { + "filename": "src/renderers/UriRenderer.cairo" + }, + "start_col": 25, + "start_line": 60 + }, + "While handling return value 'base_uri'" + ], + "start_col": 9, + "start_line": 14 + } + }, + "685": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.getBaseUri_encode_return" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 36, + "end_line": 14, + "input_file": { + "filename": "autogen/starknet/arg_processor/1c2e215967869dc47206ad2fc37b17705811908cf20bd36317133d65ef250c93.cairo" + }, + "parent_location": [ + { + "end_col": 40, + "end_line": 60, + "input_file": { + "filename": "src/renderers/UriRenderer.cairo" + }, + "start_col": 25, + "start_line": 60 + }, + "While handling return value 'base_uri'" + ], + "start_col": 1, + "start_line": 11 + } + }, + "687": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.getBaseUri_encode_return" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 22, + "end_line": 5, + "input_file": { + "filename": "autogen/starknet/arg_processor/1c2e215967869dc47206ad2fc37b17705811908cf20bd36317133d65ef250c93.cairo" + }, + "parent_location": [ + { + "end_col": 40, + "end_line": 60, + "input_file": { + "filename": "src/renderers/UriRenderer.cairo" + }, + "parent_location": [ + { + "end_col": 40, + "end_line": 10, + "input_file": { + "filename": "autogen/starknet/external/return/getBaseUri/061d593342abd5b2c4519e00e4e9d6bbfdd2431c405d1474e0b36cae966af3cc.cairo" + }, + "parent_location": [ + { + "end_col": 16, + "end_line": 59, + "input_file": { + "filename": "src/renderers/UriRenderer.cairo" + }, + "start_col": 6, + "start_line": 59 + }, + "While handling return value of" + ], + "start_col": 25, + "start_line": 10 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 25, + "start_line": 60 + }, + "While handling return value 'base_uri'" + ], + "start_col": 7, + "start_line": 5 + } + }, + "688": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.getBaseUri_encode_return" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 63, + "end_line": 11, + "input_file": { + "filename": "autogen/starknet/external/return/getBaseUri/061d593342abd5b2c4519e00e4e9d6bbfdd2431c405d1474e0b36cae966af3cc.cairo" + }, + "parent_location": [ + { + "end_col": 16, + "end_line": 59, + "input_file": { + "filename": "src/renderers/UriRenderer.cairo" + }, + "start_col": 6, + "start_line": 59 + }, + "While handling return value of" + ], + "start_col": 18, + "start_line": 11 + } + }, + "689": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.getBaseUri_encode_return" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 35, + "end_line": 5, + "input_file": { + "filename": "autogen/starknet/external/return/getBaseUri/061d593342abd5b2c4519e00e4e9d6bbfdd2431c405d1474e0b36cae966af3cc.cairo" + }, + "parent_location": [ + { + "end_col": 16, + "end_line": 59, + "input_file": { + "filename": "src/renderers/UriRenderer.cairo" + }, + "parent_location": [ + { + "end_col": 38, + "end_line": 12, + "input_file": { + "filename": "autogen/starknet/external/return/getBaseUri/061d593342abd5b2c4519e00e4e9d6bbfdd2431c405d1474e0b36cae966af3cc.cairo" + }, + "parent_location": [ + { + "end_col": 16, + "end_line": 59, + "input_file": { + "filename": "src/renderers/UriRenderer.cairo" + }, + "start_col": 6, + "start_line": 59 + }, + "While handling return value of" + ], + "start_col": 14, + "start_line": 12 + }, + "While expanding the reference '__return_value_ptr_start' in:" + ], + "start_col": 6, + "start_line": 59 + }, + "While handling return value of" + ], + "start_col": 11, + "start_line": 5 + } + }, + "690": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.getBaseUri_encode_return" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 40, + "end_line": 12, + "input_file": { + "filename": "autogen/starknet/external/return/getBaseUri/061d593342abd5b2c4519e00e4e9d6bbfdd2431c405d1474e0b36cae966af3cc.cairo" + }, + "parent_location": [ + { + "end_col": 16, + "end_line": 59, + "input_file": { + "filename": "src/renderers/UriRenderer.cairo" + }, + "start_col": 6, + "start_line": 59 + }, + "While handling return value of" + ], + "start_col": 5, + "start_line": 9 + } + }, + "691": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.getBaseUri" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 18, + "end_line": 2, + "input_file": { + "filename": "autogen/starknet/external/getBaseUri/25a74036bfb5d6dfb2dd2a99570a3fecf2192fb3743317d46f3696a5f1e25471.cairo" + }, + "parent_location": [ + { + "end_col": 16, + "end_line": 59, + "input_file": { + "filename": "src/renderers/UriRenderer.cairo" + }, + "start_col": 6, + "start_line": 59 + }, + "While constructing the external wrapper for:" + ], + "start_col": 5, + "start_line": 2 + } + }, + "693": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.getBaseUri" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 58, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/arg_processor/01cba52f8515996bb9d7070bde81ff39281d096d7024a558efcba6e1fd2402cf.cairo" + }, + "parent_location": [ + { + "end_col": 16, + "end_line": 59, + "input_file": { + "filename": "src/renderers/UriRenderer.cairo" + }, + "start_col": 6, + "start_line": 59 + }, + "While handling calldata of" + ], + "start_col": 1, + "start_line": 1 + } + }, + "694": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.getBaseUri" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 64, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/getBaseUri/b2c52ca2d2a8fc8791a983086d8716c5eacd0c3d62934914d2286f84b98ff4cb.cairo" + }, + "parent_location": [ + { + "end_col": 35, + "end_line": 59, + "input_file": { + "filename": "src/renderers/UriRenderer.cairo" + }, + "parent_location": [ + { + "end_col": 55, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/getBaseUri/55fad17230449bf3d29b8bd4d584280159ccccf201aadaf0eb6ad5529bca5b96.cairo" + }, + "parent_location": [ + { + "end_col": 16, + "end_line": 59, + "input_file": { + "filename": "src/renderers/UriRenderer.cairo" + }, + "start_col": 6, + "start_line": 59 + }, + "While constructing the external wrapper for:" + ], + "start_col": 44, + "start_line": 1 + }, + "While expanding the reference 'syscall_ptr' in:" + ], + "start_col": 17, + "start_line": 59 + }, + "While constructing the external wrapper for:" + ], + "start_col": 19, + "start_line": 1 + } + }, + "695": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.getBaseUri" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 110, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/getBaseUri/9684a85e93c782014ca14293edea4eb2502039a5a7b6538ecd39c56faaf12529.cairo" + }, + "parent_location": [ + { + "end_col": 63, + "end_line": 59, + "input_file": { + "filename": "src/renderers/UriRenderer.cairo" + }, + "parent_location": [ + { + "end_col": 82, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/getBaseUri/55fad17230449bf3d29b8bd4d584280159ccccf201aadaf0eb6ad5529bca5b96.cairo" + }, + "parent_location": [ + { + "end_col": 16, + "end_line": 59, + "input_file": { + "filename": "src/renderers/UriRenderer.cairo" + }, + "start_col": 6, + "start_line": 59 + }, + "While constructing the external wrapper for:" + ], + "start_col": 70, + "start_line": 1 + }, + "While expanding the reference 'pedersen_ptr' in:" + ], + "start_col": 37, + "start_line": 59 + }, + "While constructing the external wrapper for:" + ], + "start_col": 20, + "start_line": 1 + } + }, + "696": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.getBaseUri" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 67, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/getBaseUri/741ea357d6336b0bed7bf0472425acd0311d543883b803388880e60a232040c7.cairo" + }, + "parent_location": [ + { + "end_col": 80, + "end_line": 59, + "input_file": { + "filename": "src/renderers/UriRenderer.cairo" + }, + "parent_location": [ + { + "end_col": 115, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/getBaseUri/55fad17230449bf3d29b8bd4d584280159ccccf201aadaf0eb6ad5529bca5b96.cairo" + }, + "parent_location": [ + { + "end_col": 16, + "end_line": 59, + "input_file": { + "filename": "src/renderers/UriRenderer.cairo" + }, + "start_col": 6, + "start_line": 59 + }, + "While constructing the external wrapper for:" + ], + "start_col": 100, + "start_line": 1 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 65, + "start_line": 59 + }, + "While constructing the external wrapper for:" + ], + "start_col": 23, + "start_line": 1 + } + }, + "697": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.getBaseUri" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 16, + "end_line": 59, + "input_file": { + "filename": "src/renderers/UriRenderer.cairo" + }, + "start_col": 6, + "start_line": 59 + } + }, + "699": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.getBaseUri" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 55, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/getBaseUri/55fad17230449bf3d29b8bd4d584280159ccccf201aadaf0eb6ad5529bca5b96.cairo" + }, + "parent_location": [ + { + "end_col": 16, + "end_line": 59, + "input_file": { + "filename": "src/renderers/UriRenderer.cairo" + }, + "parent_location": [ + { + "end_col": 55, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/getBaseUri/55fad17230449bf3d29b8bd4d584280159ccccf201aadaf0eb6ad5529bca5b96.cairo" + }, + "parent_location": [ + { + "end_col": 16, + "end_line": 59, + "input_file": { + "filename": "src/renderers/UriRenderer.cairo" + }, + "start_col": 6, + "start_line": 59 + }, + "While constructing the external wrapper for:" + ], + "start_col": 44, + "start_line": 1 + }, + "While auto generating local variable for 'syscall_ptr'." + ], + "start_col": 6, + "start_line": 59 + }, + "While constructing the external wrapper for:" + ], + "start_col": 44, + "start_line": 1 + } + }, + "700": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.getBaseUri" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 82, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/getBaseUri/55fad17230449bf3d29b8bd4d584280159ccccf201aadaf0eb6ad5529bca5b96.cairo" + }, + "parent_location": [ + { + "end_col": 16, + "end_line": 59, + "input_file": { + "filename": "src/renderers/UriRenderer.cairo" + }, + "parent_location": [ + { + "end_col": 82, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/getBaseUri/55fad17230449bf3d29b8bd4d584280159ccccf201aadaf0eb6ad5529bca5b96.cairo" + }, + "parent_location": [ + { + "end_col": 16, + "end_line": 59, + "input_file": { + "filename": "src/renderers/UriRenderer.cairo" + }, + "start_col": 6, + "start_line": 59 + }, + "While constructing the external wrapper for:" + ], + "start_col": 70, + "start_line": 1 + }, + "While auto generating local variable for 'pedersen_ptr'." + ], + "start_col": 6, + "start_line": 59 + }, + "While constructing the external wrapper for:" + ], + "start_col": 70, + "start_line": 1 + } + }, + "701": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.getBaseUri" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 115, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/getBaseUri/55fad17230449bf3d29b8bd4d584280159ccccf201aadaf0eb6ad5529bca5b96.cairo" + }, + "parent_location": [ + { + "end_col": 16, + "end_line": 59, + "input_file": { + "filename": "src/renderers/UriRenderer.cairo" + }, + "parent_location": [ + { + "end_col": 99, + "end_line": 2, + "input_file": { + "filename": "autogen/starknet/external/getBaseUri/55fad17230449bf3d29b8bd4d584280159ccccf201aadaf0eb6ad5529bca5b96.cairo" + }, + "parent_location": [ + { + "end_col": 16, + "end_line": 59, + "input_file": { + "filename": "src/renderers/UriRenderer.cairo" + }, + "start_col": 6, + "start_line": 59 + }, + "While constructing the external wrapper for:" + ], + "start_col": 84, + "start_line": 2 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 6, + "start_line": 59 + }, + "While constructing the external wrapper for:" + ], + "start_col": 100, + "start_line": 1 + } + }, + "702": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.getBaseUri" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 100, + "end_line": 2, + "input_file": { + "filename": "autogen/starknet/external/getBaseUri/55fad17230449bf3d29b8bd4d584280159ccccf201aadaf0eb6ad5529bca5b96.cairo" + }, + "parent_location": [ + { + "end_col": 16, + "end_line": 59, + "input_file": { + "filename": "src/renderers/UriRenderer.cairo" + }, + "start_col": 6, + "start_line": 59 + }, + "While constructing the external wrapper for:" + ], + "start_col": 48, + "start_line": 2 + } + }, + "704": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.getBaseUri" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 55, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/getBaseUri/55fad17230449bf3d29b8bd4d584280159ccccf201aadaf0eb6ad5529bca5b96.cairo" + }, + "parent_location": [ + { + "end_col": 16, + "end_line": 59, + "input_file": { + "filename": "src/renderers/UriRenderer.cairo" + }, + "parent_location": [ + { + "end_col": 55, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/getBaseUri/55fad17230449bf3d29b8bd4d584280159ccccf201aadaf0eb6ad5529bca5b96.cairo" + }, + "parent_location": [ + { + "end_col": 16, + "end_line": 59, + "input_file": { + "filename": "src/renderers/UriRenderer.cairo" + }, + "parent_location": [ + { + "end_col": 20, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/getBaseUri/da17921a4e81c09e730800bbf23bfdbe5e9e6bfaedc59d80fbf62087fa43c27d.cairo" + }, + "parent_location": [ + { + "end_col": 16, + "end_line": 59, + "input_file": { + "filename": "src/renderers/UriRenderer.cairo" + }, + "start_col": 6, + "start_line": 59 + }, + "While constructing the external wrapper for:" + ], + "start_col": 9, + "start_line": 1 + }, + "While expanding the reference 'syscall_ptr' in:" + ], + "start_col": 6, + "start_line": 59 + }, + "While constructing the external wrapper for:" + ], + "start_col": 44, + "start_line": 1 + }, + "While auto generating local variable for 'syscall_ptr'." + ], + "start_col": 6, + "start_line": 59 + }, + "While constructing the external wrapper for:" + ], + "start_col": 44, + "start_line": 1 + } + }, + "705": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.getBaseUri" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 82, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/getBaseUri/55fad17230449bf3d29b8bd4d584280159ccccf201aadaf0eb6ad5529bca5b96.cairo" + }, + "parent_location": [ + { + "end_col": 16, + "end_line": 59, + "input_file": { + "filename": "src/renderers/UriRenderer.cairo" + }, + "parent_location": [ + { + "end_col": 82, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/getBaseUri/55fad17230449bf3d29b8bd4d584280159ccccf201aadaf0eb6ad5529bca5b96.cairo" + }, + "parent_location": [ + { + "end_col": 16, + "end_line": 59, + "input_file": { + "filename": "src/renderers/UriRenderer.cairo" + }, + "parent_location": [ + { + "end_col": 33, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/getBaseUri/da17921a4e81c09e730800bbf23bfdbe5e9e6bfaedc59d80fbf62087fa43c27d.cairo" + }, + "parent_location": [ + { + "end_col": 16, + "end_line": 59, + "input_file": { + "filename": "src/renderers/UriRenderer.cairo" + }, + "start_col": 6, + "start_line": 59 + }, + "While constructing the external wrapper for:" + ], + "start_col": 21, + "start_line": 1 + }, + "While expanding the reference 'pedersen_ptr' in:" + ], + "start_col": 6, + "start_line": 59 + }, + "While constructing the external wrapper for:" + ], + "start_col": 70, + "start_line": 1 + }, + "While auto generating local variable for 'pedersen_ptr'." + ], + "start_col": 6, + "start_line": 59 + }, + "While constructing the external wrapper for:" + ], + "start_col": 70, + "start_line": 1 + } + }, + "706": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.getBaseUri" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 21, + "end_line": 2, + "input_file": { + "filename": "autogen/starknet/external/getBaseUri/55fad17230449bf3d29b8bd4d584280159ccccf201aadaf0eb6ad5529bca5b96.cairo" + }, + "parent_location": [ + { + "end_col": 16, + "end_line": 59, + "input_file": { + "filename": "src/renderers/UriRenderer.cairo" + }, + "parent_location": [ + { + "end_col": 49, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/getBaseUri/da17921a4e81c09e730800bbf23bfdbe5e9e6bfaedc59d80fbf62087fa43c27d.cairo" + }, + "parent_location": [ + { + "end_col": 16, + "end_line": 59, + "input_file": { + "filename": "src/renderers/UriRenderer.cairo" + }, + "start_col": 6, + "start_line": 59 + }, + "While constructing the external wrapper for:" + ], + "start_col": 34, + "start_line": 1 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 6, + "start_line": 59 + }, + "While constructing the external wrapper for:" + ], + "start_col": 6, + "start_line": 2 + } + }, + "707": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.getBaseUri" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 35, + "end_line": 2, + "input_file": { + "filename": "autogen/starknet/external/getBaseUri/55fad17230449bf3d29b8bd4d584280159ccccf201aadaf0eb6ad5529bca5b96.cairo" + }, + "parent_location": [ + { + "end_col": 16, + "end_line": 59, + "input_file": { + "filename": "src/renderers/UriRenderer.cairo" + }, + "parent_location": [ + { + "end_col": 62, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/getBaseUri/da17921a4e81c09e730800bbf23bfdbe5e9e6bfaedc59d80fbf62087fa43c27d.cairo" + }, + "parent_location": [ + { + "end_col": 16, + "end_line": 59, + "input_file": { + "filename": "src/renderers/UriRenderer.cairo" + }, + "start_col": 6, + "start_line": 59 + }, + "While constructing the external wrapper for:" + ], + "start_col": 50, + "start_line": 1 + }, + "While expanding the reference 'retdata_size' in:" + ], + "start_col": 6, + "start_line": 59 + }, + "While constructing the external wrapper for:" + ], + "start_col": 23, + "start_line": 2 + } + }, + "708": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.getBaseUri" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 44, + "end_line": 2, + "input_file": { + "filename": "autogen/starknet/external/getBaseUri/55fad17230449bf3d29b8bd4d584280159ccccf201aadaf0eb6ad5529bca5b96.cairo" + }, + "parent_location": [ + { + "end_col": 16, + "end_line": 59, + "input_file": { + "filename": "src/renderers/UriRenderer.cairo" + }, + "parent_location": [ + { + "end_col": 70, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/getBaseUri/da17921a4e81c09e730800bbf23bfdbe5e9e6bfaedc59d80fbf62087fa43c27d.cairo" + }, + "parent_location": [ + { + "end_col": 16, + "end_line": 59, + "input_file": { + "filename": "src/renderers/UriRenderer.cairo" + }, + "start_col": 6, + "start_line": 59 + }, + "While constructing the external wrapper for:" + ], + "start_col": 63, + "start_line": 1 + }, + "While expanding the reference 'retdata' in:" + ], + "start_col": 6, + "start_line": 59 + }, + "While constructing the external wrapper for:" + ], + "start_col": 37, + "start_line": 2 + } + }, + "709": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.getBaseUri" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 72, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/getBaseUri/da17921a4e81c09e730800bbf23bfdbe5e9e6bfaedc59d80fbf62087fa43c27d.cairo" + }, + "parent_location": [ + { + "end_col": 16, + "end_line": 59, + "input_file": { + "filename": "src/renderers/UriRenderer.cairo" + }, + "start_col": 6, + "start_line": 59 + }, + "While constructing the external wrapper for:" + ], + "start_col": 1, + "start_line": 1 + } + }, + "710": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.setBaseUri" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 35, + "end_line": 70, + "input_file": { + "filename": "src/renderers/UriRenderer.cairo" + }, + "parent_location": [ + { + "end_col": 46, + "end_line": 40, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/access/ownable/library.cairo" + }, + "parent_location": [ + { + "end_col": 32, + "end_line": 73, + "input_file": { + "filename": "src/renderers/UriRenderer.cairo" + }, + "start_col": 5, + "start_line": 73 + }, + "While trying to retrieve the implicit argument 'syscall_ptr' in:" + ], + "start_col": 28, + "start_line": 40 + }, + "While expanding the reference 'syscall_ptr' in:" + ], + "start_col": 17, + "start_line": 70 + } + }, + "711": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.setBaseUri" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 63, + "end_line": 70, + "input_file": { + "filename": "src/renderers/UriRenderer.cairo" + }, + "parent_location": [ + { + "end_col": 74, + "end_line": 40, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/access/ownable/library.cairo" + }, + "parent_location": [ + { + "end_col": 32, + "end_line": 73, + "input_file": { + "filename": "src/renderers/UriRenderer.cairo" + }, + "start_col": 5, + "start_line": 73 + }, + "While trying to retrieve the implicit argument 'pedersen_ptr' in:" + ], + "start_col": 48, + "start_line": 40 + }, + "While expanding the reference 'pedersen_ptr' in:" + ], + "start_col": 37, + "start_line": 70 + } + }, + "712": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.setBaseUri" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 80, + "end_line": 70, + "input_file": { + "filename": "src/renderers/UriRenderer.cairo" + }, + "parent_location": [ + { + "end_col": 91, + "end_line": 40, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/access/ownable/library.cairo" + }, + "parent_location": [ + { + "end_col": 32, + "end_line": 73, + "input_file": { + "filename": "src/renderers/UriRenderer.cairo" + }, + "start_col": 5, + "start_line": 73 + }, + "While trying to retrieve the implicit argument 'range_check_ptr' in:" + ], + "start_col": 76, + "start_line": 40 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 65, + "start_line": 70 + } + }, + "713": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.setBaseUri" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 32, + "end_line": 73, + "input_file": { + "filename": "src/renderers/UriRenderer.cairo" + }, + "start_col": 5, + "start_line": 73 + } + }, + "715": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.setBaseUri" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 23, + "end_line": 71, + "input_file": { + "filename": "src/renderers/UriRenderer.cairo" + }, + "parent_location": [ + { + "end_col": 37, + "end_line": 74, + "input_file": { + "filename": "src/renderers/UriRenderer.cairo" + }, + "start_col": 25, + "start_line": 74 + }, + "While expanding the reference 'base_uri_len' in:" + ], + "start_col": 5, + "start_line": 71 + } + }, + "716": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.setBaseUri" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 38, + "end_line": 74, + "input_file": { + "filename": "src/renderers/UriRenderer.cairo" + }, + "start_col": 5, + "start_line": 74 + } + }, + "718": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.setBaseUri" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 22, + "end_line": 75, + "input_file": { + "filename": "src/renderers/UriRenderer.cairo" + }, + "start_col": 21, + "start_line": 75 + } + }, + "720": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.setBaseUri" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 23, + "end_line": 71, + "input_file": { + "filename": "src/renderers/UriRenderer.cairo" + }, + "parent_location": [ + { + "end_col": 36, + "end_line": 75, + "input_file": { + "filename": "src/renderers/UriRenderer.cairo" + }, + "start_col": 24, + "start_line": 75 + }, + "While expanding the reference 'base_uri_len' in:" + ], + "start_col": 5, + "start_line": 71 + } + }, + "721": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.setBaseUri" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 40, + "end_line": 71, + "input_file": { + "filename": "src/renderers/UriRenderer.cairo" + }, + "parent_location": [ + { + "end_col": 46, + "end_line": 75, + "input_file": { + "filename": "src/renderers/UriRenderer.cairo" + }, + "start_col": 38, + "start_line": 75 + }, + "While expanding the reference 'base_uri' in:" + ], + "start_col": 25, + "start_line": 71 + } + }, + "722": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.setBaseUri" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 47, + "end_line": 75, + "input_file": { + "filename": "src/renderers/UriRenderer.cairo" + }, + "start_col": 5, + "start_line": 75 + } + }, + "724": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.setBaseUri" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 15, + "end_line": 76, + "input_file": { + "filename": "src/renderers/UriRenderer.cairo" + }, + "start_col": 5, + "start_line": 76 + } + }, + "725": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.setBaseUri" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 67, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/setBaseUri/741ea357d6336b0bed7bf0472425acd0311d543883b803388880e60a232040c7.cairo" + }, + "parent_location": [ + { + "end_col": 80, + "end_line": 70, + "input_file": { + "filename": "src/renderers/UriRenderer.cairo" + }, + "parent_location": [ + { + "end_col": 24, + "end_line": 2, + "input_file": { + "filename": "autogen/starknet/arg_processor/2ea11611167ad2adf1bde16aaf7defdc99376674027d4f606d15ea375b9c77aa.cairo" + }, + "parent_location": [ + { + "end_col": 40, + "end_line": 71, + "input_file": { + "filename": "src/renderers/UriRenderer.cairo" + }, + "start_col": 25, + "start_line": 71 + }, + "While handling calldata argument 'base_uri'" + ], + "start_col": 9, + "start_line": 2 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 65, + "start_line": 70 + }, + "While constructing the external wrapper for:" + ], + "start_col": 23, + "start_line": 1 + } + }, + "726": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.setBaseUri" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 51, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/arg_processor/e0321294714e44f21aee810eefa3ed41d3a57effc1f0a060b66d6dd30ff97391.cairo" + }, + "parent_location": [ + { + "end_col": 23, + "end_line": 71, + "input_file": { + "filename": "src/renderers/UriRenderer.cairo" + }, + "parent_location": [ + { + "end_col": 55, + "end_line": 2, + "input_file": { + "filename": "autogen/starknet/arg_processor/2ea11611167ad2adf1bde16aaf7defdc99376674027d4f606d15ea375b9c77aa.cairo" + }, + "parent_location": [ + { + "end_col": 40, + "end_line": 71, + "input_file": { + "filename": "src/renderers/UriRenderer.cairo" + }, + "start_col": 25, + "start_line": 71 + }, + "While handling calldata argument 'base_uri'" + ], + "start_col": 28, + "start_line": 2 + }, + "While expanding the reference '__calldata_arg_base_uri_len' in:" + ], + "start_col": 5, + "start_line": 71 + }, + "While handling calldata argument 'base_uri_len'" + ], + "start_col": 35, + "start_line": 1 + } + }, + "727": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.setBaseUri" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 56, + "end_line": 2, + "input_file": { + "filename": "autogen/starknet/arg_processor/2ea11611167ad2adf1bde16aaf7defdc99376674027d4f606d15ea375b9c77aa.cairo" + }, + "parent_location": [ + { + "end_col": 40, + "end_line": 71, + "input_file": { + "filename": "src/renderers/UriRenderer.cairo" + }, + "start_col": 25, + "start_line": 71 + }, + "While handling calldata argument 'base_uri'" + ], + "start_col": 1, + "start_line": 2 + } + }, + "728": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.setBaseUri" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 40, + "end_line": 2, + "input_file": { + "filename": "autogen/starknet/arg_processor/e0321294714e44f21aee810eefa3ed41d3a57effc1f0a060b66d6dd30ff97391.cairo" + }, + "parent_location": [ + { + "end_col": 23, + "end_line": 71, + "input_file": { + "filename": "src/renderers/UriRenderer.cairo" + }, + "parent_location": [ + { + "end_col": 40, + "end_line": 8, + "input_file": { + "filename": "autogen/starknet/arg_processor/2ea11611167ad2adf1bde16aaf7defdc99376674027d4f606d15ea375b9c77aa.cairo" + }, + "parent_location": [ + { + "end_col": 40, + "end_line": 71, + "input_file": { + "filename": "src/renderers/UriRenderer.cairo" + }, + "start_col": 25, + "start_line": 71 + }, + "While handling calldata argument 'base_uri'" + ], + "start_col": 26, + "start_line": 8 + }, + "While expanding the reference '__calldata_ptr' in:" + ], + "start_col": 5, + "start_line": 71 + }, + "While handling calldata argument 'base_uri_len'" + ], + "start_col": 22, + "start_line": 2 + } + }, + "730": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.setBaseUri" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 51, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/arg_processor/e0321294714e44f21aee810eefa3ed41d3a57effc1f0a060b66d6dd30ff97391.cairo" + }, + "parent_location": [ + { + "end_col": 23, + "end_line": 71, + "input_file": { + "filename": "src/renderers/UriRenderer.cairo" + }, + "parent_location": [ + { + "end_col": 70, + "end_line": 8, + "input_file": { + "filename": "autogen/starknet/arg_processor/2ea11611167ad2adf1bde16aaf7defdc99376674027d4f606d15ea375b9c77aa.cairo" + }, + "parent_location": [ + { + "end_col": 40, + "end_line": 71, + "input_file": { + "filename": "src/renderers/UriRenderer.cairo" + }, + "start_col": 25, + "start_line": 71 + }, + "While handling calldata argument 'base_uri'" + ], + "start_col": 43, + "start_line": 8 + }, + "While expanding the reference '__calldata_arg_base_uri_len' in:" + ], + "start_col": 5, + "start_line": 71 + }, + "While handling calldata argument 'base_uri_len'" + ], + "start_col": 35, + "start_line": 1 + } + }, + "731": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.setBaseUri" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 74, + "end_line": 8, + "input_file": { + "filename": "autogen/starknet/arg_processor/2ea11611167ad2adf1bde16aaf7defdc99376674027d4f606d15ea375b9c77aa.cairo" + }, + "parent_location": [ + { + "end_col": 40, + "end_line": 71, + "input_file": { + "filename": "src/renderers/UriRenderer.cairo" + }, + "start_col": 25, + "start_line": 71 + }, + "While handling calldata argument 'base_uri'" + ], + "start_col": 26, + "start_line": 8 + } + }, + "732": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.setBaseUri" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 58, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/arg_processor/01cba52f8515996bb9d7070bde81ff39281d096d7024a558efcba6e1fd2402cf.cairo" + }, + "parent_location": [ + { + "end_col": 16, + "end_line": 70, + "input_file": { + "filename": "src/renderers/UriRenderer.cairo" + }, + "start_col": 6, + "start_line": 70 + }, + "While handling calldata of" + ], + "start_col": 1, + "start_line": 1 + } + }, + "733": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.setBaseUri" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 67, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/setBaseUri/741ea357d6336b0bed7bf0472425acd0311d543883b803388880e60a232040c7.cairo" + }, + "parent_location": [ + { + "end_col": 80, + "end_line": 70, + "input_file": { + "filename": "src/renderers/UriRenderer.cairo" + }, + "parent_location": [ + { + "end_col": 38, + "end_line": 3, + "input_file": { + "filename": "autogen/starknet/arg_processor/2ea11611167ad2adf1bde16aaf7defdc99376674027d4f606d15ea375b9c77aa.cairo" + }, + "parent_location": [ + { + "end_col": 40, + "end_line": 71, + "input_file": { + "filename": "src/renderers/UriRenderer.cairo" + }, + "parent_location": [ + { + "end_col": 115, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/setBaseUri/e42c399428c1f7da70058d73d75baead4de2e744e0516d677b590ddf26bcdc83.cairo" + }, + "parent_location": [ + { + "end_col": 16, + "end_line": 70, + "input_file": { + "filename": "src/renderers/UriRenderer.cairo" + }, + "start_col": 6, + "start_line": 70 + }, + "While constructing the external wrapper for:" + ], + "start_col": 100, + "start_line": 1 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 25, + "start_line": 71 + }, + "While handling calldata argument 'base_uri'" + ], + "start_col": 23, + "start_line": 3 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 65, + "start_line": 70 + }, + "While constructing the external wrapper for:" + ], + "start_col": 23, + "start_line": 1 + } + }, + "734": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.setBaseUri" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 64, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/setBaseUri/b2c52ca2d2a8fc8791a983086d8716c5eacd0c3d62934914d2286f84b98ff4cb.cairo" + }, + "parent_location": [ + { + "end_col": 35, + "end_line": 70, + "input_file": { + "filename": "src/renderers/UriRenderer.cairo" + }, + "parent_location": [ + { + "end_col": 55, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/setBaseUri/e42c399428c1f7da70058d73d75baead4de2e744e0516d677b590ddf26bcdc83.cairo" + }, + "parent_location": [ + { + "end_col": 16, + "end_line": 70, + "input_file": { + "filename": "src/renderers/UriRenderer.cairo" + }, + "start_col": 6, + "start_line": 70 + }, + "While constructing the external wrapper for:" + ], + "start_col": 44, + "start_line": 1 + }, + "While expanding the reference 'syscall_ptr' in:" + ], + "start_col": 17, + "start_line": 70 + }, + "While constructing the external wrapper for:" + ], + "start_col": 19, + "start_line": 1 + } + }, + "735": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.setBaseUri" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 110, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/setBaseUri/9684a85e93c782014ca14293edea4eb2502039a5a7b6538ecd39c56faaf12529.cairo" + }, + "parent_location": [ + { + "end_col": 63, + "end_line": 70, + "input_file": { + "filename": "src/renderers/UriRenderer.cairo" + }, + "parent_location": [ + { + "end_col": 82, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/setBaseUri/e42c399428c1f7da70058d73d75baead4de2e744e0516d677b590ddf26bcdc83.cairo" + }, + "parent_location": [ + { + "end_col": 16, + "end_line": 70, + "input_file": { + "filename": "src/renderers/UriRenderer.cairo" + }, + "start_col": 6, + "start_line": 70 + }, + "While constructing the external wrapper for:" + ], + "start_col": 70, + "start_line": 1 + }, + "While expanding the reference 'pedersen_ptr' in:" + ], + "start_col": 37, + "start_line": 70 + }, + "While constructing the external wrapper for:" + ], + "start_col": 20, + "start_line": 1 + } + }, + "736": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.setBaseUri" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 42, + "end_line": 3, + "input_file": { + "filename": "autogen/starknet/arg_processor/2ea11611167ad2adf1bde16aaf7defdc99376674027d4f606d15ea375b9c77aa.cairo" + }, + "parent_location": [ + { + "end_col": 40, + "end_line": 71, + "input_file": { + "filename": "src/renderers/UriRenderer.cairo" + }, + "parent_location": [ + { + "end_col": 115, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/setBaseUri/e42c399428c1f7da70058d73d75baead4de2e744e0516d677b590ddf26bcdc83.cairo" + }, + "parent_location": [ + { + "end_col": 16, + "end_line": 70, + "input_file": { + "filename": "src/renderers/UriRenderer.cairo" + }, + "start_col": 6, + "start_line": 70 + }, + "While constructing the external wrapper for:" + ], + "start_col": 100, + "start_line": 1 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 25, + "start_line": 71 + }, + "While handling calldata argument 'base_uri'" + ], + "start_col": 23, + "start_line": 3 + } + }, + "738": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.setBaseUri" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 51, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/arg_processor/e0321294714e44f21aee810eefa3ed41d3a57effc1f0a060b66d6dd30ff97391.cairo" + }, + "parent_location": [ + { + "end_col": 23, + "end_line": 71, + "input_file": { + "filename": "src/renderers/UriRenderer.cairo" + }, + "parent_location": [ + { + "end_col": 157, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/setBaseUri/e42c399428c1f7da70058d73d75baead4de2e744e0516d677b590ddf26bcdc83.cairo" + }, + "parent_location": [ + { + "end_col": 16, + "end_line": 70, + "input_file": { + "filename": "src/renderers/UriRenderer.cairo" + }, + "start_col": 6, + "start_line": 70 + }, + "While constructing the external wrapper for:" + ], + "start_col": 130, + "start_line": 1 + }, + "While expanding the reference '__calldata_arg_base_uri_len' in:" + ], + "start_col": 5, + "start_line": 71 + }, + "While handling calldata argument 'base_uri_len'" + ], + "start_col": 35, + "start_line": 1 + } + }, + "739": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.setBaseUri" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 58, + "end_line": 5, + "input_file": { + "filename": "autogen/starknet/arg_processor/2ea11611167ad2adf1bde16aaf7defdc99376674027d4f606d15ea375b9c77aa.cairo" + }, + "parent_location": [ + { + "end_col": 40, + "end_line": 71, + "input_file": { + "filename": "src/renderers/UriRenderer.cairo" + }, + "parent_location": [ + { + "end_col": 191, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/setBaseUri/e42c399428c1f7da70058d73d75baead4de2e744e0516d677b590ddf26bcdc83.cairo" + }, + "parent_location": [ + { + "end_col": 16, + "end_line": 70, + "input_file": { + "filename": "src/renderers/UriRenderer.cairo" + }, + "start_col": 6, + "start_line": 70 + }, + "While constructing the external wrapper for:" + ], + "start_col": 168, + "start_line": 1 + }, + "While expanding the reference '__calldata_arg_base_uri' in:" + ], + "start_col": 25, + "start_line": 71 + }, + "While handling calldata argument 'base_uri'" + ], + "start_col": 31, + "start_line": 5 + } + }, + "741": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.setBaseUri" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 16, + "end_line": 70, + "input_file": { + "filename": "src/renderers/UriRenderer.cairo" + }, + "start_col": 6, + "start_line": 70 + } + }, + "743": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.setBaseUri" + ], + "flow_tracking_data": null, + "hints": [ + { + "location": { + "end_col": 34, + "end_line": 2, + "input_file": { + "filename": "autogen/starknet/external/setBaseUri/e42c399428c1f7da70058d73d75baead4de2e744e0516d677b590ddf26bcdc83.cairo" + }, + "parent_location": [ + { + "end_col": 16, + "end_line": 70, + "input_file": { + "filename": "src/renderers/UriRenderer.cairo" + }, + "start_col": 6, + "start_line": 70 + }, + "While constructing the external wrapper for:" + ], + "start_col": 1, + "start_line": 2 + }, + "n_prefix_newlines": 0 + } + ], + "inst": { + "end_col": 24, + "end_line": 3, + "input_file": { + "filename": "autogen/starknet/external/setBaseUri/e42c399428c1f7da70058d73d75baead4de2e744e0516d677b590ddf26bcdc83.cairo" + }, + "parent_location": [ + { + "end_col": 16, + "end_line": 70, + "input_file": { + "filename": "src/renderers/UriRenderer.cairo" + }, + "start_col": 6, + "start_line": 70 + }, + "While constructing the external wrapper for:" + ], + "start_col": 1, + "start_line": 3 + } + }, + "745": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.setBaseUri" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 55, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/setBaseUri/e42c399428c1f7da70058d73d75baead4de2e744e0516d677b590ddf26bcdc83.cairo" + }, + "parent_location": [ + { + "end_col": 16, + "end_line": 70, + "input_file": { + "filename": "src/renderers/UriRenderer.cairo" + }, + "parent_location": [ + { + "end_col": 20, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/setBaseUri/da17921a4e81c09e730800bbf23bfdbe5e9e6bfaedc59d80fbf62087fa43c27d.cairo" + }, + "parent_location": [ + { + "end_col": 16, + "end_line": 70, + "input_file": { + "filename": "src/renderers/UriRenderer.cairo" + }, + "start_col": 6, + "start_line": 70 + }, + "While constructing the external wrapper for:" + ], + "start_col": 9, + "start_line": 1 + }, + "While expanding the reference 'syscall_ptr' in:" + ], + "start_col": 6, + "start_line": 70 + }, + "While constructing the external wrapper for:" + ], + "start_col": 44, + "start_line": 1 + } + }, + "746": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.setBaseUri" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 82, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/setBaseUri/e42c399428c1f7da70058d73d75baead4de2e744e0516d677b590ddf26bcdc83.cairo" + }, + "parent_location": [ + { + "end_col": 16, + "end_line": 70, + "input_file": { + "filename": "src/renderers/UriRenderer.cairo" + }, + "parent_location": [ + { + "end_col": 33, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/setBaseUri/da17921a4e81c09e730800bbf23bfdbe5e9e6bfaedc59d80fbf62087fa43c27d.cairo" + }, + "parent_location": [ + { + "end_col": 16, + "end_line": 70, + "input_file": { + "filename": "src/renderers/UriRenderer.cairo" + }, + "start_col": 6, + "start_line": 70 + }, + "While constructing the external wrapper for:" + ], + "start_col": 21, + "start_line": 1 + }, + "While expanding the reference 'pedersen_ptr' in:" + ], + "start_col": 6, + "start_line": 70 + }, + "While constructing the external wrapper for:" + ], + "start_col": 70, + "start_line": 1 + } + }, + "747": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.setBaseUri" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 115, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/setBaseUri/e42c399428c1f7da70058d73d75baead4de2e744e0516d677b590ddf26bcdc83.cairo" + }, + "parent_location": [ + { + "end_col": 16, + "end_line": 70, + "input_file": { + "filename": "src/renderers/UriRenderer.cairo" + }, + "parent_location": [ + { + "end_col": 49, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/setBaseUri/da17921a4e81c09e730800bbf23bfdbe5e9e6bfaedc59d80fbf62087fa43c27d.cairo" + }, + "parent_location": [ + { + "end_col": 16, + "end_line": 70, + "input_file": { + "filename": "src/renderers/UriRenderer.cairo" + }, + "start_col": 6, + "start_line": 70 + }, + "While constructing the external wrapper for:" + ], + "start_col": 34, + "start_line": 1 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 6, + "start_line": 70 + }, + "While constructing the external wrapper for:" + ], + "start_col": 100, + "start_line": 1 + } + }, + "748": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.setBaseUri" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 21, + "end_line": 4, + "input_file": { + "filename": "autogen/starknet/external/setBaseUri/e42c399428c1f7da70058d73d75baead4de2e744e0516d677b590ddf26bcdc83.cairo" + }, + "parent_location": [ + { + "end_col": 16, + "end_line": 70, + "input_file": { + "filename": "src/renderers/UriRenderer.cairo" + }, + "parent_location": [ + { + "end_col": 62, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/setBaseUri/da17921a4e81c09e730800bbf23bfdbe5e9e6bfaedc59d80fbf62087fa43c27d.cairo" + }, + "parent_location": [ + { + "end_col": 16, + "end_line": 70, + "input_file": { + "filename": "src/renderers/UriRenderer.cairo" + }, + "start_col": 6, + "start_line": 70 + }, + "While constructing the external wrapper for:" + ], + "start_col": 50, + "start_line": 1 + }, + "While expanding the reference 'retdata_size' in:" + ], + "start_col": 6, + "start_line": 70 + }, + "While constructing the external wrapper for:" + ], + "start_col": 20, + "start_line": 4 + } + }, + "750": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.setBaseUri" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 16, + "end_line": 3, + "input_file": { + "filename": "autogen/starknet/external/setBaseUri/e42c399428c1f7da70058d73d75baead4de2e744e0516d677b590ddf26bcdc83.cairo" + }, + "parent_location": [ + { + "end_col": 16, + "end_line": 70, + "input_file": { + "filename": "src/renderers/UriRenderer.cairo" + }, + "parent_location": [ + { + "end_col": 70, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/setBaseUri/da17921a4e81c09e730800bbf23bfdbe5e9e6bfaedc59d80fbf62087fa43c27d.cairo" + }, + "parent_location": [ + { + "end_col": 16, + "end_line": 70, + "input_file": { + "filename": "src/renderers/UriRenderer.cairo" + }, + "start_col": 6, + "start_line": 70 + }, + "While constructing the external wrapper for:" + ], + "start_col": 63, + "start_line": 1 + }, + "While expanding the reference 'retdata' in:" + ], + "start_col": 6, + "start_line": 70 + }, + "While constructing the external wrapper for:" + ], + "start_col": 9, + "start_line": 3 + } + }, + "751": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.setBaseUri" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 72, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/setBaseUri/da17921a4e81c09e730800bbf23bfdbe5e9e6bfaedc59d80fbf62087fa43c27d.cairo" + }, + "parent_location": [ + { + "end_col": 16, + "end_line": 70, + "input_file": { + "filename": "src/renderers/UriRenderer.cairo" + }, + "start_col": 6, + "start_line": 70 + }, + "While constructing the external wrapper for:" + ], + "start_col": 1, + "start_line": 1 + } + }, + "752": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.token_uri" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 18, + "end_line": 83, + "input_file": { + "filename": "src/renderers/UriRenderer.cairo" + }, + "start_col": 5, + "start_line": 83 + } + }, + "754": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.token_uri" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 30, + "end_line": 84, + "input_file": { + "filename": "src/renderers/UriRenderer.cairo" + }, + "start_col": 23, + "start_line": 84 + } + }, + "756": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.token_uri" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 19, + "end_line": 84, + "input_file": { + "filename": "src/renderers/UriRenderer.cairo" + }, + "parent_location": [ + { + "end_col": 19, + "end_line": 84, + "input_file": { + "filename": "src/renderers/UriRenderer.cairo" + }, + "start_col": 10, + "start_line": 84 + }, + "While auto generating local variable for 'token_uri'." + ], + "start_col": 10, + "start_line": 84 + } + }, + "757": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.token_uri" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 62, + "end_line": 80, + "input_file": { + "filename": "src/renderers/UriRenderer.cairo" + }, + "parent_location": [ + { + "end_col": 39, + "end_line": 109, + "input_file": { + "filename": "src/renderers/UriRenderer.cairo" + }, + "parent_location": [ + { + "end_col": 47, + "end_line": 85, + "input_file": { + "filename": "src/renderers/UriRenderer.cairo" + }, + "start_col": 19, + "start_line": 85 + }, + "While trying to retrieve the implicit argument 'syscall_ptr' in:" + ], + "start_col": 21, + "start_line": 109 + }, + "While expanding the reference 'syscall_ptr' in:" + ], + "start_col": 44, + "start_line": 80 + } + }, + "758": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.token_uri" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 42, + "end_line": 80, + "input_file": { + "filename": "src/renderers/UriRenderer.cairo" + }, + "parent_location": [ + { + "end_col": 67, + "end_line": 109, + "input_file": { + "filename": "src/renderers/UriRenderer.cairo" + }, + "parent_location": [ + { + "end_col": 47, + "end_line": 85, + "input_file": { + "filename": "src/renderers/UriRenderer.cairo" + }, + "start_col": 19, + "start_line": 85 + }, + "While trying to retrieve the implicit argument 'pedersen_ptr' in:" + ], + "start_col": 41, + "start_line": 109 + }, + "While expanding the reference 'pedersen_ptr' in:" + ], + "start_col": 16, + "start_line": 80 + } + }, + "759": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.token_uri" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 79, + "end_line": 80, + "input_file": { + "filename": "src/renderers/UriRenderer.cairo" + }, + "parent_location": [ + { + "end_col": 84, + "end_line": 109, + "input_file": { + "filename": "src/renderers/UriRenderer.cairo" + }, + "parent_location": [ + { + "end_col": 47, + "end_line": 85, + "input_file": { + "filename": "src/renderers/UriRenderer.cairo" + }, + "start_col": 19, + "start_line": 85 + }, + "While trying to retrieve the implicit argument 'range_check_ptr' in:" + ], + "start_col": 69, + "start_line": 109 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 64, + "start_line": 80 + } + }, + "760": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.token_uri" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 35, + "end_line": 85, + "input_file": { + "filename": "src/renderers/UriRenderer.cairo" + }, + "start_col": 34, + "start_line": 85 + } + }, + "762": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.token_uri" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 19, + "end_line": 84, + "input_file": { + "filename": "src/renderers/UriRenderer.cairo" + }, + "parent_location": [ + { + "end_col": 19, + "end_line": 84, + "input_file": { + "filename": "src/renderers/UriRenderer.cairo" + }, + "parent_location": [ + { + "end_col": 46, + "end_line": 85, + "input_file": { + "filename": "src/renderers/UriRenderer.cairo" + }, + "start_col": 37, + "start_line": 85 + }, + "While expanding the reference 'token_uri' in:" + ], + "start_col": 10, + "start_line": 84 + }, + "While auto generating local variable for 'token_uri'." + ], + "start_col": 10, + "start_line": 84 + } + }, + "763": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.token_uri" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 47, + "end_line": 85, + "input_file": { + "filename": "src/renderers/UriRenderer.cairo" + }, + "start_col": 19, + "start_line": 85 + } + }, + "765": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.token_uri" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 15, + "end_line": 85, + "input_file": { + "filename": "src/renderers/UriRenderer.cairo" + }, + "parent_location": [ + { + "end_col": 15, + "end_line": 85, + "input_file": { + "filename": "src/renderers/UriRenderer.cairo" + }, + "start_col": 10, + "start_line": 85 + }, + "While auto generating local variable for 'final'." + ], + "start_col": 10, + "start_line": 85 + } + }, + "766": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.token_uri" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 39, + "end_line": 109, + "input_file": { + "filename": "src/renderers/UriRenderer.cairo" + }, + "parent_location": [ + { + "end_col": 47, + "end_line": 85, + "input_file": { + "filename": "src/renderers/UriRenderer.cairo" + }, + "parent_location": [ + { + "end_col": 33, + "end_line": 13, + "input_file": { + "filename": "autogen/starknet/storage_var/_base_uri_len/decl.cairo" + }, + "parent_location": [ + { + "end_col": 47, + "end_line": 86, + "input_file": { + "filename": "src/renderers/UriRenderer.cairo" + }, + "start_col": 27, + "start_line": 86 + }, + "While trying to retrieve the implicit argument 'syscall_ptr' in:" + ], + "start_col": 15, + "start_line": 13 + }, + "While expanding the reference 'syscall_ptr' in:" + ], + "start_col": 19, + "start_line": 85 + }, + "While trying to update the implicit return value 'syscall_ptr' in:" + ], + "start_col": 21, + "start_line": 109 + } + }, + "767": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.token_uri" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 67, + "end_line": 109, + "input_file": { + "filename": "src/renderers/UriRenderer.cairo" + }, + "parent_location": [ + { + "end_col": 47, + "end_line": 85, + "input_file": { + "filename": "src/renderers/UriRenderer.cairo" + }, + "parent_location": [ + { + "end_col": 61, + "end_line": 13, + "input_file": { + "filename": "autogen/starknet/storage_var/_base_uri_len/decl.cairo" + }, + "parent_location": [ + { + "end_col": 47, + "end_line": 86, + "input_file": { + "filename": "src/renderers/UriRenderer.cairo" + }, + "start_col": 27, + "start_line": 86 + }, + "While trying to retrieve the implicit argument 'pedersen_ptr' in:" + ], + "start_col": 35, + "start_line": 13 + }, + "While expanding the reference 'pedersen_ptr' in:" + ], + "start_col": 19, + "start_line": 85 + }, + "While trying to update the implicit return value 'pedersen_ptr' in:" + ], + "start_col": 41, + "start_line": 109 + } + }, + "768": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.token_uri" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 84, + "end_line": 109, + "input_file": { + "filename": "src/renderers/UriRenderer.cairo" + }, + "parent_location": [ + { + "end_col": 47, + "end_line": 85, + "input_file": { + "filename": "src/renderers/UriRenderer.cairo" + }, + "parent_location": [ + { + "end_col": 78, + "end_line": 13, + "input_file": { + "filename": "autogen/starknet/storage_var/_base_uri_len/decl.cairo" + }, + "parent_location": [ + { + "end_col": 47, + "end_line": 86, + "input_file": { + "filename": "src/renderers/UriRenderer.cairo" + }, + "start_col": 27, + "start_line": 86 + }, + "While trying to retrieve the implicit argument 'range_check_ptr' in:" + ], + "start_col": 63, + "start_line": 13 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 19, + "start_line": 85 + }, + "While trying to update the implicit return value 'range_check_ptr' in:" + ], + "start_col": 69, + "start_line": 109 + } + }, + "769": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.token_uri" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 47, + "end_line": 86, + "input_file": { + "filename": "src/renderers/UriRenderer.cairo" + }, + "start_col": 27, + "start_line": 86 + } + }, + "771": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.token_uri" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 23, + "end_line": 86, + "input_file": { + "filename": "src/renderers/UriRenderer.cairo" + }, + "parent_location": [ + { + "end_col": 23, + "end_line": 86, + "input_file": { + "filename": "src/renderers/UriRenderer.cairo" + }, + "start_col": 10, + "start_line": 86 + }, + "While auto generating local variable for 'token_uri_len'." + ], + "start_col": 10, + "start_line": 86 + } + }, + "772": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.token_uri" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 33, + "end_line": 13, + "input_file": { + "filename": "autogen/starknet/storage_var/_base_uri_len/decl.cairo" + }, + "parent_location": [ + { + "end_col": 47, + "end_line": 86, + "input_file": { + "filename": "src/renderers/UriRenderer.cairo" + }, + "parent_location": [ + { + "end_col": 33, + "end_line": 13, + "input_file": { + "filename": "autogen/starknet/storage_var/_use_token_id/decl.cairo" + }, + "parent_location": [ + { + "end_col": 37, + "end_line": 87, + "input_file": { + "filename": "src/renderers/UriRenderer.cairo" + }, + "start_col": 17, + "start_line": 87 + }, + "While trying to retrieve the implicit argument 'syscall_ptr' in:" + ], + "start_col": 15, + "start_line": 13 + }, + "While expanding the reference 'syscall_ptr' in:" + ], + "start_col": 27, + "start_line": 86 + }, + "While trying to update the implicit return value 'syscall_ptr' in:" + ], + "start_col": 15, + "start_line": 13 + } + }, + "773": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.token_uri" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 61, + "end_line": 13, + "input_file": { + "filename": "autogen/starknet/storage_var/_base_uri_len/decl.cairo" + }, + "parent_location": [ + { + "end_col": 47, + "end_line": 86, + "input_file": { + "filename": "src/renderers/UriRenderer.cairo" + }, + "parent_location": [ + { + "end_col": 61, + "end_line": 13, + "input_file": { + "filename": "autogen/starknet/storage_var/_use_token_id/decl.cairo" + }, + "parent_location": [ + { + "end_col": 37, + "end_line": 87, + "input_file": { + "filename": "src/renderers/UriRenderer.cairo" + }, + "start_col": 17, + "start_line": 87 + }, + "While trying to retrieve the implicit argument 'pedersen_ptr' in:" + ], + "start_col": 35, + "start_line": 13 + }, + "While expanding the reference 'pedersen_ptr' in:" + ], + "start_col": 27, + "start_line": 86 + }, + "While trying to update the implicit return value 'pedersen_ptr' in:" + ], + "start_col": 35, + "start_line": 13 + } + }, + "774": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.token_uri" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 78, + "end_line": 13, + "input_file": { + "filename": "autogen/starknet/storage_var/_base_uri_len/decl.cairo" + }, + "parent_location": [ + { + "end_col": 47, + "end_line": 86, + "input_file": { + "filename": "src/renderers/UriRenderer.cairo" + }, + "parent_location": [ + { + "end_col": 78, + "end_line": 13, + "input_file": { + "filename": "autogen/starknet/storage_var/_use_token_id/decl.cairo" + }, + "parent_location": [ + { + "end_col": 37, + "end_line": 87, + "input_file": { + "filename": "src/renderers/UriRenderer.cairo" + }, + "start_col": 17, + "start_line": 87 + }, + "While trying to retrieve the implicit argument 'range_check_ptr' in:" + ], + "start_col": 63, + "start_line": 13 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 27, + "start_line": 86 + }, + "While trying to update the implicit return value 'range_check_ptr' in:" + ], + "start_col": 63, + "start_line": 13 + } + }, + "775": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.token_uri" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 37, + "end_line": 87, + "input_file": { + "filename": "src/renderers/UriRenderer.cairo" + }, + "start_col": 17, + "start_line": 87 + } + }, + "777": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.token_uri" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 61, + "end_line": 13, + "input_file": { + "filename": "autogen/starknet/storage_var/_use_token_id/decl.cairo" + }, + "parent_location": [ + { + "end_col": 37, + "end_line": 87, + "input_file": { + "filename": "src/renderers/UriRenderer.cairo" + }, + "parent_location": [ + { + "end_col": 61, + "end_line": 13, + "input_file": { + "filename": "autogen/starknet/storage_var/_use_token_id/decl.cairo" + }, + "parent_location": [ + { + "end_col": 37, + "end_line": 87, + "input_file": { + "filename": "src/renderers/UriRenderer.cairo" + }, + "start_col": 17, + "start_line": 87 + }, + "While trying to update the implicit return value 'pedersen_ptr' in:" + ], + "start_col": 35, + "start_line": 13 + }, + "While auto generating local variable for 'pedersen_ptr'." + ], + "start_col": 17, + "start_line": 87 + }, + "While trying to update the implicit return value 'pedersen_ptr' in:" + ], + "start_col": 35, + "start_line": 13 + } + }, + "778": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.token_uri" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 33, + "end_line": 13, + "input_file": { + "filename": "autogen/starknet/storage_var/_use_token_id/decl.cairo" + }, + "parent_location": [ + { + "end_col": 37, + "end_line": 87, + "input_file": { + "filename": "src/renderers/UriRenderer.cairo" + }, + "parent_location": [ + { + "end_col": 33, + "end_line": 13, + "input_file": { + "filename": "autogen/starknet/storage_var/_use_token_id/decl.cairo" + }, + "parent_location": [ + { + "end_col": 37, + "end_line": 87, + "input_file": { + "filename": "src/renderers/UriRenderer.cairo" + }, + "start_col": 17, + "start_line": 87 + }, + "While trying to update the implicit return value 'syscall_ptr' in:" + ], + "start_col": 15, + "start_line": 13 + }, + "While auto generating local variable for 'syscall_ptr'." + ], + "start_col": 17, + "start_line": 87 + }, + "While trying to update the implicit return value 'syscall_ptr' in:" + ], + "start_col": 15, + "start_line": 13 + } + }, + "779": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.token_uri" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 7, + "end_line": 88, + "input_file": { + "filename": "src/renderers/UriRenderer.cairo" + }, + "start_col": 5, + "start_line": 88 + } + }, + "781": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.token_uri" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 61, + "end_line": 13, + "input_file": { + "filename": "autogen/starknet/storage_var/_use_token_id/decl.cairo" + }, + "parent_location": [ + { + "end_col": 37, + "end_line": 87, + "input_file": { + "filename": "src/renderers/UriRenderer.cairo" + }, + "parent_location": [ + { + "end_col": 61, + "end_line": 13, + "input_file": { + "filename": "autogen/starknet/storage_var/_use_token_id/decl.cairo" + }, + "parent_location": [ + { + "end_col": 37, + "end_line": 87, + "input_file": { + "filename": "src/renderers/UriRenderer.cairo" + }, + "parent_location": [ + { + "end_col": 42, + "end_line": 80, + "input_file": { + "filename": "src/renderers/UriRenderer.cairo" + }, + "parent_location": [ + { + "end_col": 43, + "end_line": 89, + "input_file": { + "filename": "src/renderers/UriRenderer.cairo" + }, + "start_col": 9, + "start_line": 89 + }, + "While trying to retrieve the implicit argument 'pedersen_ptr' in:" + ], + "start_col": 16, + "start_line": 80 + }, + "While expanding the reference 'pedersen_ptr' in:" + ], + "start_col": 17, + "start_line": 87 + }, + "While trying to update the implicit return value 'pedersen_ptr' in:" + ], + "start_col": 35, + "start_line": 13 + }, + "While auto generating local variable for 'pedersen_ptr'." + ], + "start_col": 17, + "start_line": 87 + }, + "While trying to update the implicit return value 'pedersen_ptr' in:" + ], + "start_col": 35, + "start_line": 13 + } + }, + "782": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.token_uri" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 33, + "end_line": 13, + "input_file": { + "filename": "autogen/starknet/storage_var/_use_token_id/decl.cairo" + }, + "parent_location": [ + { + "end_col": 37, + "end_line": 87, + "input_file": { + "filename": "src/renderers/UriRenderer.cairo" + }, + "parent_location": [ + { + "end_col": 33, + "end_line": 13, + "input_file": { + "filename": "autogen/starknet/storage_var/_use_token_id/decl.cairo" + }, + "parent_location": [ + { + "end_col": 37, + "end_line": 87, + "input_file": { + "filename": "src/renderers/UriRenderer.cairo" + }, + "parent_location": [ + { + "end_col": 62, + "end_line": 80, + "input_file": { + "filename": "src/renderers/UriRenderer.cairo" + }, + "parent_location": [ + { + "end_col": 43, + "end_line": 89, + "input_file": { + "filename": "src/renderers/UriRenderer.cairo" + }, + "start_col": 9, + "start_line": 89 + }, + "While trying to retrieve the implicit argument 'syscall_ptr' in:" + ], + "start_col": 44, + "start_line": 80 + }, + "While expanding the reference 'syscall_ptr' in:" + ], + "start_col": 17, + "start_line": 87 + }, + "While trying to update the implicit return value 'syscall_ptr' in:" + ], + "start_col": 15, + "start_line": 13 + }, + "While auto generating local variable for 'syscall_ptr'." + ], + "start_col": 17, + "start_line": 87 + }, + "While trying to update the implicit return value 'syscall_ptr' in:" + ], + "start_col": 15, + "start_line": 13 + } + }, + "783": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.token_uri" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 78, + "end_line": 13, + "input_file": { + "filename": "autogen/starknet/storage_var/_use_token_id/decl.cairo" + }, + "parent_location": [ + { + "end_col": 37, + "end_line": 87, + "input_file": { + "filename": "src/renderers/UriRenderer.cairo" + }, + "parent_location": [ + { + "end_col": 79, + "end_line": 80, + "input_file": { + "filename": "src/renderers/UriRenderer.cairo" + }, + "parent_location": [ + { + "end_col": 43, + "end_line": 89, + "input_file": { + "filename": "src/renderers/UriRenderer.cairo" + }, + "start_col": 9, + "start_line": 89 + }, + "While trying to retrieve the implicit argument 'range_check_ptr' in:" + ], + "start_col": 64, + "start_line": 80 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 17, + "start_line": 87 + }, + "While trying to update the implicit return value 'range_check_ptr' in:" + ], + "start_col": 63, + "start_line": 13 + } + }, + "784": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.token_uri" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 23, + "end_line": 86, + "input_file": { + "filename": "src/renderers/UriRenderer.cairo" + }, + "parent_location": [ + { + "end_col": 23, + "end_line": 86, + "input_file": { + "filename": "src/renderers/UriRenderer.cairo" + }, + "parent_location": [ + { + "end_col": 30, + "end_line": 89, + "input_file": { + "filename": "src/renderers/UriRenderer.cairo" + }, + "start_col": 17, + "start_line": 89 + }, + "While expanding the reference 'token_uri_len' in:" + ], + "start_col": 10, + "start_line": 86 + }, + "While auto generating local variable for 'token_uri_len'." + ], + "start_col": 10, + "start_line": 86 + } + }, + "785": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.token_uri" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 19, + "end_line": 84, + "input_file": { + "filename": "src/renderers/UriRenderer.cairo" + }, + "parent_location": [ + { + "end_col": 19, + "end_line": 84, + "input_file": { + "filename": "src/renderers/UriRenderer.cairo" + }, + "parent_location": [ + { + "end_col": 41, + "end_line": 89, + "input_file": { + "filename": "src/renderers/UriRenderer.cairo" + }, + "start_col": 32, + "start_line": 89 + }, + "While expanding the reference 'token_uri' in:" + ], + "start_col": 10, + "start_line": 84 + }, + "While auto generating local variable for 'token_uri'." + ], + "start_col": 10, + "start_line": 84 + } + }, + "786": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.token_uri" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 43, + "end_line": 89, + "input_file": { + "filename": "src/renderers/UriRenderer.cairo" + }, + "start_col": 9, + "start_line": 89 + } + }, + "787": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.token_uri" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 78, + "end_line": 13, + "input_file": { + "filename": "autogen/starknet/storage_var/_use_token_id/decl.cairo" + }, + "parent_location": [ + { + "end_col": 37, + "end_line": 87, + "input_file": { + "filename": "src/renderers/UriRenderer.cairo" + }, + "parent_location": [ + { + "end_col": 25, + "end_line": 13, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/utils/string.cairo" + }, + "parent_location": [ + { + "end_col": 41, + "end_line": 91, + "input_file": { + "filename": "src/renderers/UriRenderer.cairo" + }, + "start_col": 28, + "start_line": 91 + }, + "While trying to retrieve the implicit argument 'range_check_ptr' in:" + ], + "start_col": 10, + "start_line": 13 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 17, + "start_line": 87 + }, + "While trying to update the implicit return value 'range_check_ptr' in:" + ], + "start_col": 63, + "start_line": 13 + } + }, + "788": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.token_uri" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 19, + "end_line": 81, + "input_file": { + "filename": "src/renderers/UriRenderer.cairo" + }, + "parent_location": [ + { + "end_col": 40, + "end_line": 91, + "input_file": { + "filename": "src/renderers/UriRenderer.cairo" + }, + "start_col": 32, + "start_line": 91 + }, + "While expanding the reference 'token_id' in:" + ], + "start_col": 5, + "start_line": 81 + } + }, + "789": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.token_uri" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 41, + "end_line": 91, + "input_file": { + "filename": "src/renderers/UriRenderer.cairo" + }, + "start_col": 28, + "start_line": 91 + } + }, + "791": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.token_uri" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 25, + "end_line": 92, + "input_file": { + "filename": "src/renderers/UriRenderer.cairo" + }, + "start_col": 22, + "start_line": 92 + } + }, + "793": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.token_uri" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 26, + "end_line": 92, + "input_file": { + "filename": "src/renderers/UriRenderer.cairo" + }, + "start_col": 5, + "start_line": 92 + } + }, + "794": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.token_uri" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 41, + "end_line": 93, + "input_file": { + "filename": "src/renderers/UriRenderer.cairo" + }, + "start_col": 5, + "start_line": 93 + } + }, + "795": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.token_uri" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 33, + "end_line": 94, + "input_file": { + "filename": "src/renderers/UriRenderer.cairo" + }, + "start_col": 26, + "start_line": 94 + } + }, + "797": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.token_uri" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 34, + "end_line": 94, + "input_file": { + "filename": "src/renderers/UriRenderer.cairo" + }, + "start_col": 5, + "start_line": 94 + } + }, + "798": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.token_uri" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 61, + "end_line": 13, + "input_file": { + "filename": "autogen/starknet/storage_var/_use_token_id/decl.cairo" + }, + "parent_location": [ + { + "end_col": 37, + "end_line": 87, + "input_file": { + "filename": "src/renderers/UriRenderer.cairo" + }, + "parent_location": [ + { + "end_col": 61, + "end_line": 13, + "input_file": { + "filename": "autogen/starknet/storage_var/_use_token_id/decl.cairo" + }, + "parent_location": [ + { + "end_col": 37, + "end_line": 87, + "input_file": { + "filename": "src/renderers/UriRenderer.cairo" + }, + "parent_location": [ + { + "end_col": 42, + "end_line": 80, + "input_file": { + "filename": "src/renderers/UriRenderer.cairo" + }, + "parent_location": [ + { + "end_col": 43, + "end_line": 95, + "input_file": { + "filename": "src/renderers/UriRenderer.cairo" + }, + "start_col": 5, + "start_line": 95 + }, + "While trying to retrieve the implicit argument 'pedersen_ptr' in:" + ], + "start_col": 16, + "start_line": 80 + }, + "While expanding the reference 'pedersen_ptr' in:" + ], + "start_col": 17, + "start_line": 87 + }, + "While trying to update the implicit return value 'pedersen_ptr' in:" + ], + "start_col": 35, + "start_line": 13 + }, + "While auto generating local variable for 'pedersen_ptr'." + ], + "start_col": 17, + "start_line": 87 + }, + "While trying to update the implicit return value 'pedersen_ptr' in:" + ], + "start_col": 35, + "start_line": 13 + } + }, + "799": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.token_uri" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 33, + "end_line": 13, + "input_file": { + "filename": "autogen/starknet/storage_var/_use_token_id/decl.cairo" + }, + "parent_location": [ + { + "end_col": 37, + "end_line": 87, + "input_file": { + "filename": "src/renderers/UriRenderer.cairo" + }, + "parent_location": [ + { + "end_col": 33, + "end_line": 13, + "input_file": { + "filename": "autogen/starknet/storage_var/_use_token_id/decl.cairo" + }, + "parent_location": [ + { + "end_col": 37, + "end_line": 87, + "input_file": { + "filename": "src/renderers/UriRenderer.cairo" + }, + "parent_location": [ + { + "end_col": 62, + "end_line": 80, + "input_file": { + "filename": "src/renderers/UriRenderer.cairo" + }, + "parent_location": [ + { + "end_col": 43, + "end_line": 95, + "input_file": { + "filename": "src/renderers/UriRenderer.cairo" + }, + "start_col": 5, + "start_line": 95 + }, + "While trying to retrieve the implicit argument 'syscall_ptr' in:" + ], + "start_col": 44, + "start_line": 80 + }, + "While expanding the reference 'syscall_ptr' in:" + ], + "start_col": 17, + "start_line": 87 + }, + "While trying to update the implicit return value 'syscall_ptr' in:" + ], + "start_col": 15, + "start_line": 13 + }, + "While auto generating local variable for 'syscall_ptr'." + ], + "start_col": 17, + "start_line": 87 + }, + "While trying to update the implicit return value 'syscall_ptr' in:" + ], + "start_col": 15, + "start_line": 13 + } + }, + "800": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.token_uri" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 25, + "end_line": 13, + "input_file": { + "filename": "/Users/clementwalter/Documents/the-candy-shop/starksheet-monorepo/packages/starksheet-cairo/src/utils/string.cairo" + }, + "parent_location": [ + { + "end_col": 41, + "end_line": 91, + "input_file": { + "filename": "src/renderers/UriRenderer.cairo" + }, + "parent_location": [ + { + "end_col": 79, + "end_line": 80, + "input_file": { + "filename": "src/renderers/UriRenderer.cairo" + }, + "parent_location": [ + { + "end_col": 43, + "end_line": 95, + "input_file": { + "filename": "src/renderers/UriRenderer.cairo" + }, + "start_col": 5, + "start_line": 95 + }, + "While trying to retrieve the implicit argument 'range_check_ptr' in:" + ], + "start_col": 64, + "start_line": 80 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 28, + "start_line": 91 + }, + "While trying to update the implicit return value 'range_check_ptr' in:" + ], + "start_col": 10, + "start_line": 13 + } + }, + "801": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.token_uri" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 30, + "end_line": 95, + "input_file": { + "filename": "src/renderers/UriRenderer.cairo" + }, + "start_col": 13, + "start_line": 95 + } + }, + "803": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.token_uri" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 19, + "end_line": 84, + "input_file": { + "filename": "src/renderers/UriRenderer.cairo" + }, + "parent_location": [ + { + "end_col": 19, + "end_line": 84, + "input_file": { + "filename": "src/renderers/UriRenderer.cairo" + }, + "parent_location": [ + { + "end_col": 41, + "end_line": 95, + "input_file": { + "filename": "src/renderers/UriRenderer.cairo" + }, + "start_col": 32, + "start_line": 95 + }, + "While expanding the reference 'token_uri' in:" + ], + "start_col": 10, + "start_line": 84 + }, + "While auto generating local variable for 'token_uri'." + ], + "start_col": 10, + "start_line": 84 + } + }, + "804": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.token_uri" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 43, + "end_line": 95, + "input_file": { + "filename": "src/renderers/UriRenderer.cairo" + }, + "start_col": 5, + "start_line": 95 + } + }, + "805": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.token_uri_encode_return" + ], + "flow_tracking_data": null, + "hints": [ + { + "location": { + "end_col": 38, + "end_line": 3, + "input_file": { + "filename": "autogen/starknet/external/return/token_uri/f48cf5085ac07908983bbc364b0ba70d64fa7f2a9b8dc38e9d6fe3783bd626a8.cairo" + }, + "parent_location": [ + { + "end_col": 15, + "end_line": 80, + "input_file": { + "filename": "src/renderers/UriRenderer.cairo" + }, + "start_col": 6, + "start_line": 80 + }, + "While handling return value of" + ], + "start_col": 5, + "start_line": 3 + }, + "n_prefix_newlines": 0 + } + ], + "inst": { + "end_col": 18, + "end_line": 4, + "input_file": { + "filename": "autogen/starknet/external/return/token_uri/f48cf5085ac07908983bbc364b0ba70d64fa7f2a9b8dc38e9d6fe3783bd626a8.cairo" + }, + "parent_location": [ + { + "end_col": 15, + "end_line": 80, + "input_file": { + "filename": "src/renderers/UriRenderer.cairo" + }, + "start_col": 6, + "start_line": 80 + }, + "While handling return value of" + ], + "start_col": 5, + "start_line": 4 + } + }, + "807": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.token_uri_encode_return" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 55, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/arg_processor/5462c9ea522f66a6a8b3de2f37f244c7074893fe5c8d0b413046098a1ccfc2ce.cairo" + }, + "parent_location": [ + { + "end_col": 26, + "end_line": 82, + "input_file": { + "filename": "src/renderers/UriRenderer.cairo" + }, + "start_col": 7, + "start_line": 82 + }, + "While handling return value 'token_uri_len'" + ], + "start_col": 1, + "start_line": 1 + } + }, + "808": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.token_uri_encode_return" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 52, + "end_line": 2, + "input_file": { + "filename": "autogen/starknet/arg_processor/8d1ba44ec0b1d27c24688348db19d49f555faaa5454ce90a4e7ba33d6a63afea.cairo" + }, + "parent_location": [ + { + "end_col": 44, + "end_line": 82, + "input_file": { + "filename": "src/renderers/UriRenderer.cairo" + }, + "start_col": 28, + "start_line": 82 + }, + "While handling return value 'token_uri'" + ], + "start_col": 1, + "start_line": 2 + } + }, + "809": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.token_uri_encode_return" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 45, + "end_line": 5, + "input_file": { + "filename": "autogen/starknet/arg_processor/8d1ba44ec0b1d27c24688348db19d49f555faaa5454ce90a4e7ba33d6a63afea.cairo" + }, + "parent_location": [ + { + "end_col": 44, + "end_line": 82, + "input_file": { + "filename": "src/renderers/UriRenderer.cairo" + }, + "start_col": 28, + "start_line": 82 + }, + "While handling return value 'token_uri'" + ], + "start_col": 1, + "start_line": 5 + } + }, + "811": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.token_uri_encode_return" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 48, + "end_line": 2, + "input_file": { + "filename": "autogen/starknet/arg_processor/5462c9ea522f66a6a8b3de2f37f244c7074893fe5c8d0b413046098a1ccfc2ce.cairo" + }, + "parent_location": [ + { + "end_col": 26, + "end_line": 82, + "input_file": { + "filename": "src/renderers/UriRenderer.cairo" + }, + "parent_location": [ + { + "end_col": 53, + "end_line": 10, + "input_file": { + "filename": "autogen/starknet/arg_processor/8d1ba44ec0b1d27c24688348db19d49f555faaa5454ce90a4e7ba33d6a63afea.cairo" + }, + "parent_location": [ + { + "end_col": 44, + "end_line": 82, + "input_file": { + "filename": "src/renderers/UriRenderer.cairo" + }, + "start_col": 28, + "start_line": 82 + }, + "While handling return value 'token_uri'" + ], + "start_col": 35, + "start_line": 10 + }, + "While expanding the reference '__return_value_ptr' in:" + ], + "start_col": 7, + "start_line": 82 + }, + "While handling return value 'token_uri_len'" + ], + "start_col": 26, + "start_line": 2 + } + }, + "813": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.token_uri_encode_return" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 84, + "end_line": 10, + "input_file": { + "filename": "autogen/starknet/arg_processor/8d1ba44ec0b1d27c24688348db19d49f555faaa5454ce90a4e7ba33d6a63afea.cairo" + }, + "parent_location": [ + { + "end_col": 44, + "end_line": 82, + "input_file": { + "filename": "src/renderers/UriRenderer.cairo" + }, + "start_col": 28, + "start_line": 82 + }, + "While handling return value 'token_uri'" + ], + "start_col": 1, + "start_line": 10 + } + }, + "814": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.token_uri_encode_return" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 48, + "end_line": 2, + "input_file": { + "filename": "autogen/starknet/arg_processor/5462c9ea522f66a6a8b3de2f37f244c7074893fe5c8d0b413046098a1ccfc2ce.cairo" + }, + "parent_location": [ + { + "end_col": 26, + "end_line": 82, + "input_file": { + "filename": "src/renderers/UriRenderer.cairo" + }, + "parent_location": [ + { + "end_col": 49, + "end_line": 7, + "input_file": { + "filename": "autogen/starknet/arg_processor/8d1ba44ec0b1d27c24688348db19d49f555faaa5454ce90a4e7ba33d6a63afea.cairo" + }, + "parent_location": [ + { + "end_col": 44, + "end_line": 82, + "input_file": { + "filename": "src/renderers/UriRenderer.cairo" + }, + "parent_location": [ + { + "end_col": 32, + "end_line": 12, + "input_file": { + "filename": "autogen/starknet/arg_processor/8d1ba44ec0b1d27c24688348db19d49f555faaa5454ce90a4e7ba33d6a63afea.cairo" + }, + "parent_location": [ + { + "end_col": 44, + "end_line": 82, + "input_file": { + "filename": "src/renderers/UriRenderer.cairo" + }, + "start_col": 28, + "start_line": 82 + }, + "While handling return value 'token_uri'" + ], + "start_col": 9, + "start_line": 12 + }, + "While expanding the reference '__return_value_ptr_copy' in:" + ], + "start_col": 28, + "start_line": 82 + }, + "While handling return value 'token_uri'" + ], + "start_col": 31, + "start_line": 7 + }, + "While expanding the reference '__return_value_ptr' in:" + ], + "start_col": 7, + "start_line": 82 + }, + "While handling return value 'token_uri_len'" + ], + "start_col": 26, + "start_line": 2 + } + }, + "816": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.token_uri_encode_return" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 28, + "end_line": 13, + "input_file": { + "filename": "autogen/starknet/arg_processor/8d1ba44ec0b1d27c24688348db19d49f555faaa5454ce90a4e7ba33d6a63afea.cairo" + }, + "parent_location": [ + { + "end_col": 44, + "end_line": 82, + "input_file": { + "filename": "src/renderers/UriRenderer.cairo" + }, + "start_col": 28, + "start_line": 82 + }, + "While handling return value 'token_uri'" + ], + "start_col": 9, + "start_line": 13 + } + }, + "817": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.token_uri_encode_return" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 32, + "end_line": 14, + "input_file": { + "filename": "autogen/starknet/arg_processor/8d1ba44ec0b1d27c24688348db19d49f555faaa5454ce90a4e7ba33d6a63afea.cairo" + }, + "parent_location": [ + { + "end_col": 44, + "end_line": 82, + "input_file": { + "filename": "src/renderers/UriRenderer.cairo" + }, + "start_col": 28, + "start_line": 82 + }, + "While handling return value 'token_uri'" + ], + "start_col": 9, + "start_line": 14 + } + }, + "818": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.token_uri_encode_return" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 37, + "end_line": 14, + "input_file": { + "filename": "autogen/starknet/arg_processor/8d1ba44ec0b1d27c24688348db19d49f555faaa5454ce90a4e7ba33d6a63afea.cairo" + }, + "parent_location": [ + { + "end_col": 44, + "end_line": 82, + "input_file": { + "filename": "src/renderers/UriRenderer.cairo" + }, + "start_col": 28, + "start_line": 82 + }, + "While handling return value 'token_uri'" + ], + "start_col": 1, + "start_line": 11 + } + }, + "820": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.token_uri_encode_return" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 22, + "end_line": 5, + "input_file": { + "filename": "autogen/starknet/arg_processor/8d1ba44ec0b1d27c24688348db19d49f555faaa5454ce90a4e7ba33d6a63afea.cairo" + }, + "parent_location": [ + { + "end_col": 44, + "end_line": 82, + "input_file": { + "filename": "src/renderers/UriRenderer.cairo" + }, + "parent_location": [ + { + "end_col": 40, + "end_line": 10, + "input_file": { + "filename": "autogen/starknet/external/return/token_uri/f48cf5085ac07908983bbc364b0ba70d64fa7f2a9b8dc38e9d6fe3783bd626a8.cairo" + }, + "parent_location": [ + { + "end_col": 15, + "end_line": 80, + "input_file": { + "filename": "src/renderers/UriRenderer.cairo" + }, + "start_col": 6, + "start_line": 80 + }, + "While handling return value of" + ], + "start_col": 25, + "start_line": 10 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 28, + "start_line": 82 + }, + "While handling return value 'token_uri'" + ], + "start_col": 7, + "start_line": 5 + } + }, + "821": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.token_uri_encode_return" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 63, + "end_line": 11, + "input_file": { + "filename": "autogen/starknet/external/return/token_uri/f48cf5085ac07908983bbc364b0ba70d64fa7f2a9b8dc38e9d6fe3783bd626a8.cairo" + }, + "parent_location": [ + { + "end_col": 15, + "end_line": 80, + "input_file": { + "filename": "src/renderers/UriRenderer.cairo" + }, + "start_col": 6, + "start_line": 80 + }, + "While handling return value of" + ], + "start_col": 18, + "start_line": 11 + } + }, + "822": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.token_uri_encode_return" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 35, + "end_line": 5, + "input_file": { + "filename": "autogen/starknet/external/return/token_uri/f48cf5085ac07908983bbc364b0ba70d64fa7f2a9b8dc38e9d6fe3783bd626a8.cairo" + }, + "parent_location": [ + { + "end_col": 15, + "end_line": 80, + "input_file": { + "filename": "src/renderers/UriRenderer.cairo" + }, + "parent_location": [ + { + "end_col": 38, + "end_line": 12, + "input_file": { + "filename": "autogen/starknet/external/return/token_uri/f48cf5085ac07908983bbc364b0ba70d64fa7f2a9b8dc38e9d6fe3783bd626a8.cairo" + }, + "parent_location": [ + { + "end_col": 15, + "end_line": 80, + "input_file": { + "filename": "src/renderers/UriRenderer.cairo" + }, + "start_col": 6, + "start_line": 80 + }, + "While handling return value of" + ], + "start_col": 14, + "start_line": 12 + }, + "While expanding the reference '__return_value_ptr_start' in:" + ], + "start_col": 6, + "start_line": 80 + }, + "While handling return value of" + ], + "start_col": 11, + "start_line": 5 + } + }, + "823": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.token_uri_encode_return" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 40, + "end_line": 12, + "input_file": { + "filename": "autogen/starknet/external/return/token_uri/f48cf5085ac07908983bbc364b0ba70d64fa7f2a9b8dc38e9d6fe3783bd626a8.cairo" + }, + "parent_location": [ + { + "end_col": 15, + "end_line": 80, + "input_file": { + "filename": "src/renderers/UriRenderer.cairo" + }, + "start_col": 6, + "start_line": 80 + }, + "While handling return value of" + ], + "start_col": 5, + "start_line": 9 + } + }, + "824": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.token_uri" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 18, + "end_line": 2, + "input_file": { + "filename": "autogen/starknet/external/token_uri/0e46c67014b1932c61618de0923cda1cd086d4d13ccfc96398cf52540cb66251.cairo" + }, + "parent_location": [ + { + "end_col": 15, + "end_line": 80, + "input_file": { + "filename": "src/renderers/UriRenderer.cairo" + }, + "start_col": 6, + "start_line": 80 + }, + "While constructing the external wrapper for:" + ], + "start_col": 5, + "start_line": 2 + } + }, + "826": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.token_uri" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 40, + "end_line": 2, + "input_file": { + "filename": "autogen/starknet/arg_processor/e1eb73cd870ec466294c3700e77817cf3c039ac1384882ddb76383eb87a5da90.cairo" + }, + "parent_location": [ + { + "end_col": 44, + "end_line": 81, + "input_file": { + "filename": "src/renderers/UriRenderer.cairo" + }, + "parent_location": [ + { + "end_col": 45, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/arg_processor/c31620b02d4d706f0542c989b2aadc01b0981d1f6a5933a8fe4937ace3d70d92.cairo" + }, + "parent_location": [ + { + "end_col": 15, + "end_line": 80, + "input_file": { + "filename": "src/renderers/UriRenderer.cairo" + }, + "parent_location": [ + { + "end_col": 57, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/arg_processor/01cba52f8515996bb9d7070bde81ff39281d096d7024a558efcba6e1fd2402cf.cairo" + }, + "parent_location": [ + { + "end_col": 15, + "end_line": 80, + "input_file": { + "filename": "src/renderers/UriRenderer.cairo" + }, + "start_col": 6, + "start_line": 80 + }, + "While handling calldata of" + ], + "start_col": 35, + "start_line": 1 + }, + "While expanding the reference '__calldata_actual_size' in:" + ], + "start_col": 6, + "start_line": 80 + }, + "While handling calldata of" + ], + "start_col": 31, + "start_line": 1 + }, + "While expanding the reference '__calldata_ptr' in:" + ], + "start_col": 34, + "start_line": 81 + }, + "While handling calldata argument 'name'" + ], + "start_col": 22, + "start_line": 2 + } + }, + "828": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.token_uri" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 58, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/arg_processor/01cba52f8515996bb9d7070bde81ff39281d096d7024a558efcba6e1fd2402cf.cairo" + }, + "parent_location": [ + { + "end_col": 15, + "end_line": 80, + "input_file": { + "filename": "src/renderers/UriRenderer.cairo" + }, + "start_col": 6, + "start_line": 80 + }, + "While handling calldata of" + ], + "start_col": 1, + "start_line": 1 + } + }, + "829": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.token_uri" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 110, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/token_uri/9684a85e93c782014ca14293edea4eb2502039a5a7b6538ecd39c56faaf12529.cairo" + }, + "parent_location": [ + { + "end_col": 42, + "end_line": 80, + "input_file": { + "filename": "src/renderers/UriRenderer.cairo" + }, + "parent_location": [ + { + "end_col": 57, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/token_uri/3c45a718d5dec5c07bc4698665154ce6a53892dd6482470bafad1a3c27838e5e.cairo" + }, + "parent_location": [ + { + "end_col": 15, + "end_line": 80, + "input_file": { + "filename": "src/renderers/UriRenderer.cairo" + }, + "start_col": 6, + "start_line": 80 + }, + "While constructing the external wrapper for:" + ], + "start_col": 45, + "start_line": 1 + }, + "While expanding the reference 'pedersen_ptr' in:" + ], + "start_col": 16, + "start_line": 80 + }, + "While constructing the external wrapper for:" + ], + "start_col": 20, + "start_line": 1 + } + }, + "830": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.token_uri" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 64, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/token_uri/b2c52ca2d2a8fc8791a983086d8716c5eacd0c3d62934914d2286f84b98ff4cb.cairo" + }, + "parent_location": [ + { + "end_col": 62, + "end_line": 80, + "input_file": { + "filename": "src/renderers/UriRenderer.cairo" + }, + "parent_location": [ + { + "end_col": 82, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/token_uri/3c45a718d5dec5c07bc4698665154ce6a53892dd6482470bafad1a3c27838e5e.cairo" + }, + "parent_location": [ + { + "end_col": 15, + "end_line": 80, + "input_file": { + "filename": "src/renderers/UriRenderer.cairo" + }, + "start_col": 6, + "start_line": 80 + }, + "While constructing the external wrapper for:" + ], + "start_col": 71, + "start_line": 1 + }, + "While expanding the reference 'syscall_ptr' in:" + ], + "start_col": 44, + "start_line": 80 + }, + "While constructing the external wrapper for:" + ], + "start_col": 19, + "start_line": 1 + } + }, + "831": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.token_uri" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 67, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/token_uri/741ea357d6336b0bed7bf0472425acd0311d543883b803388880e60a232040c7.cairo" + }, + "parent_location": [ + { + "end_col": 79, + "end_line": 80, + "input_file": { + "filename": "src/renderers/UriRenderer.cairo" + }, + "parent_location": [ + { + "end_col": 115, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/token_uri/3c45a718d5dec5c07bc4698665154ce6a53892dd6482470bafad1a3c27838e5e.cairo" + }, + "parent_location": [ + { + "end_col": 15, + "end_line": 80, + "input_file": { + "filename": "src/renderers/UriRenderer.cairo" + }, + "start_col": 6, + "start_line": 80 + }, + "While constructing the external wrapper for:" + ], + "start_col": 100, + "start_line": 1 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 64, + "start_line": 80 + }, + "While constructing the external wrapper for:" + ], + "start_col": 23, + "start_line": 1 + } + }, + "832": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.token_uri" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 47, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/arg_processor/92bae94c430cca894eac466fa5be50d176f1f62e79244db218577fbac5e84220.cairo" + }, + "parent_location": [ + { + "end_col": 19, + "end_line": 81, + "input_file": { + "filename": "src/renderers/UriRenderer.cairo" + }, + "parent_location": [ + { + "end_col": 149, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/token_uri/3c45a718d5dec5c07bc4698665154ce6a53892dd6482470bafad1a3c27838e5e.cairo" + }, + "parent_location": [ + { + "end_col": 15, + "end_line": 80, + "input_file": { + "filename": "src/renderers/UriRenderer.cairo" + }, + "start_col": 6, + "start_line": 80 + }, + "While constructing the external wrapper for:" + ], + "start_col": 126, + "start_line": 1 + }, + "While expanding the reference '__calldata_arg_token_id' in:" + ], + "start_col": 5, + "start_line": 81 + }, + "While handling calldata argument 'token_id'" + ], + "start_col": 31, + "start_line": 1 + } + }, + "833": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.token_uri" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 44, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/arg_processor/3e93b8906c329e7a5c33e020ce7a5a9c542c4444955be98eec5fcbef545a8662.cairo" + }, + "parent_location": [ + { + "end_col": 32, + "end_line": 81, + "input_file": { + "filename": "src/renderers/UriRenderer.cairo" + }, + "parent_location": [ + { + "end_col": 177, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/token_uri/3c45a718d5dec5c07bc4698665154ce6a53892dd6482470bafad1a3c27838e5e.cairo" + }, + "parent_location": [ + { + "end_col": 15, + "end_line": 80, + "input_file": { + "filename": "src/renderers/UriRenderer.cairo" + }, + "start_col": 6, + "start_line": 80 + }, + "While constructing the external wrapper for:" + ], + "start_col": 157, + "start_line": 1 + }, + "While expanding the reference '__calldata_arg_value' in:" + ], + "start_col": 21, + "start_line": 81 + }, + "While handling calldata argument 'value'" + ], + "start_col": 28, + "start_line": 1 + } + }, + "834": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.token_uri" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 43, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/arg_processor/e1eb73cd870ec466294c3700e77817cf3c039ac1384882ddb76383eb87a5da90.cairo" + }, + "parent_location": [ + { + "end_col": 44, + "end_line": 81, + "input_file": { + "filename": "src/renderers/UriRenderer.cairo" + }, + "parent_location": [ + { + "end_col": 203, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/token_uri/3c45a718d5dec5c07bc4698665154ce6a53892dd6482470bafad1a3c27838e5e.cairo" + }, + "parent_location": [ + { + "end_col": 15, + "end_line": 80, + "input_file": { + "filename": "src/renderers/UriRenderer.cairo" + }, + "start_col": 6, + "start_line": 80 + }, + "While constructing the external wrapper for:" + ], + "start_col": 184, + "start_line": 1 + }, + "While expanding the reference '__calldata_arg_name' in:" + ], + "start_col": 34, + "start_line": 81 + }, + "While handling calldata argument 'name'" + ], + "start_col": 27, + "start_line": 1 + } + }, + "835": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.token_uri" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 15, + "end_line": 80, + "input_file": { + "filename": "src/renderers/UriRenderer.cairo" + }, + "start_col": 6, + "start_line": 80 + } + }, + "837": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.token_uri" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 82, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/token_uri/3c45a718d5dec5c07bc4698665154ce6a53892dd6482470bafad1a3c27838e5e.cairo" + }, + "parent_location": [ + { + "end_col": 15, + "end_line": 80, + "input_file": { + "filename": "src/renderers/UriRenderer.cairo" + }, + "parent_location": [ + { + "end_col": 82, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/token_uri/3c45a718d5dec5c07bc4698665154ce6a53892dd6482470bafad1a3c27838e5e.cairo" + }, + "parent_location": [ + { + "end_col": 15, + "end_line": 80, + "input_file": { + "filename": "src/renderers/UriRenderer.cairo" + }, + "start_col": 6, + "start_line": 80 + }, + "While constructing the external wrapper for:" + ], + "start_col": 71, + "start_line": 1 + }, + "While auto generating local variable for 'syscall_ptr'." + ], + "start_col": 6, + "start_line": 80 + }, + "While constructing the external wrapper for:" + ], + "start_col": 71, + "start_line": 1 + } + }, + "838": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.token_uri" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 57, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/token_uri/3c45a718d5dec5c07bc4698665154ce6a53892dd6482470bafad1a3c27838e5e.cairo" + }, + "parent_location": [ + { + "end_col": 15, + "end_line": 80, + "input_file": { + "filename": "src/renderers/UriRenderer.cairo" + }, + "parent_location": [ + { + "end_col": 57, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/token_uri/3c45a718d5dec5c07bc4698665154ce6a53892dd6482470bafad1a3c27838e5e.cairo" + }, + "parent_location": [ + { + "end_col": 15, + "end_line": 80, + "input_file": { + "filename": "src/renderers/UriRenderer.cairo" + }, + "start_col": 6, + "start_line": 80 + }, + "While constructing the external wrapper for:" + ], + "start_col": 45, + "start_line": 1 + }, + "While auto generating local variable for 'pedersen_ptr'." + ], + "start_col": 6, + "start_line": 80 + }, + "While constructing the external wrapper for:" + ], + "start_col": 45, + "start_line": 1 + } + }, + "839": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.token_uri" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 115, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/token_uri/3c45a718d5dec5c07bc4698665154ce6a53892dd6482470bafad1a3c27838e5e.cairo" + }, + "parent_location": [ + { + "end_col": 15, + "end_line": 80, + "input_file": { + "filename": "src/renderers/UriRenderer.cairo" + }, + "parent_location": [ + { + "end_col": 98, + "end_line": 2, + "input_file": { + "filename": "autogen/starknet/external/token_uri/3c45a718d5dec5c07bc4698665154ce6a53892dd6482470bafad1a3c27838e5e.cairo" + }, + "parent_location": [ + { + "end_col": 15, + "end_line": 80, + "input_file": { + "filename": "src/renderers/UriRenderer.cairo" + }, + "start_col": 6, + "start_line": 80 + }, + "While constructing the external wrapper for:" + ], + "start_col": 83, + "start_line": 2 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 6, + "start_line": 80 + }, + "While constructing the external wrapper for:" + ], + "start_col": 100, + "start_line": 1 + } + }, + "840": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.token_uri" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 99, + "end_line": 2, + "input_file": { + "filename": "autogen/starknet/external/token_uri/3c45a718d5dec5c07bc4698665154ce6a53892dd6482470bafad1a3c27838e5e.cairo" + }, + "parent_location": [ + { + "end_col": 15, + "end_line": 80, + "input_file": { + "filename": "src/renderers/UriRenderer.cairo" + }, + "start_col": 6, + "start_line": 80 + }, + "While constructing the external wrapper for:" + ], + "start_col": 48, + "start_line": 2 + } + }, + "842": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.token_uri" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 82, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/token_uri/3c45a718d5dec5c07bc4698665154ce6a53892dd6482470bafad1a3c27838e5e.cairo" + }, + "parent_location": [ + { + "end_col": 15, + "end_line": 80, + "input_file": { + "filename": "src/renderers/UriRenderer.cairo" + }, + "parent_location": [ + { + "end_col": 82, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/token_uri/3c45a718d5dec5c07bc4698665154ce6a53892dd6482470bafad1a3c27838e5e.cairo" + }, + "parent_location": [ + { + "end_col": 15, + "end_line": 80, + "input_file": { + "filename": "src/renderers/UriRenderer.cairo" + }, + "parent_location": [ + { + "end_col": 20, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/token_uri/da17921a4e81c09e730800bbf23bfdbe5e9e6bfaedc59d80fbf62087fa43c27d.cairo" + }, + "parent_location": [ + { + "end_col": 15, + "end_line": 80, + "input_file": { + "filename": "src/renderers/UriRenderer.cairo" + }, + "start_col": 6, + "start_line": 80 + }, + "While constructing the external wrapper for:" + ], + "start_col": 9, + "start_line": 1 + }, + "While expanding the reference 'syscall_ptr' in:" + ], + "start_col": 6, + "start_line": 80 + }, + "While constructing the external wrapper for:" + ], + "start_col": 71, + "start_line": 1 + }, + "While auto generating local variable for 'syscall_ptr'." + ], + "start_col": 6, + "start_line": 80 + }, + "While constructing the external wrapper for:" + ], + "start_col": 71, + "start_line": 1 + } + }, + "843": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.token_uri" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 57, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/token_uri/3c45a718d5dec5c07bc4698665154ce6a53892dd6482470bafad1a3c27838e5e.cairo" + }, + "parent_location": [ + { + "end_col": 15, + "end_line": 80, + "input_file": { + "filename": "src/renderers/UriRenderer.cairo" + }, + "parent_location": [ + { + "end_col": 57, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/token_uri/3c45a718d5dec5c07bc4698665154ce6a53892dd6482470bafad1a3c27838e5e.cairo" + }, + "parent_location": [ + { + "end_col": 15, + "end_line": 80, + "input_file": { + "filename": "src/renderers/UriRenderer.cairo" + }, + "parent_location": [ + { + "end_col": 33, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/token_uri/da17921a4e81c09e730800bbf23bfdbe5e9e6bfaedc59d80fbf62087fa43c27d.cairo" + }, + "parent_location": [ + { + "end_col": 15, + "end_line": 80, + "input_file": { + "filename": "src/renderers/UriRenderer.cairo" + }, + "start_col": 6, + "start_line": 80 + }, + "While constructing the external wrapper for:" + ], + "start_col": 21, + "start_line": 1 + }, + "While expanding the reference 'pedersen_ptr' in:" + ], + "start_col": 6, + "start_line": 80 + }, + "While constructing the external wrapper for:" + ], + "start_col": 45, + "start_line": 1 + }, + "While auto generating local variable for 'pedersen_ptr'." + ], + "start_col": 6, + "start_line": 80 + }, + "While constructing the external wrapper for:" + ], + "start_col": 45, + "start_line": 1 + } + }, + "844": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.token_uri" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 21, + "end_line": 2, + "input_file": { + "filename": "autogen/starknet/external/token_uri/3c45a718d5dec5c07bc4698665154ce6a53892dd6482470bafad1a3c27838e5e.cairo" + }, + "parent_location": [ + { + "end_col": 15, + "end_line": 80, + "input_file": { + "filename": "src/renderers/UriRenderer.cairo" + }, + "parent_location": [ + { + "end_col": 49, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/token_uri/da17921a4e81c09e730800bbf23bfdbe5e9e6bfaedc59d80fbf62087fa43c27d.cairo" + }, + "parent_location": [ + { + "end_col": 15, + "end_line": 80, + "input_file": { + "filename": "src/renderers/UriRenderer.cairo" + }, + "start_col": 6, + "start_line": 80 + }, + "While constructing the external wrapper for:" + ], + "start_col": 34, + "start_line": 1 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 6, + "start_line": 80 + }, + "While constructing the external wrapper for:" + ], + "start_col": 6, + "start_line": 2 + } + }, + "845": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.token_uri" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 35, + "end_line": 2, + "input_file": { + "filename": "autogen/starknet/external/token_uri/3c45a718d5dec5c07bc4698665154ce6a53892dd6482470bafad1a3c27838e5e.cairo" + }, + "parent_location": [ + { + "end_col": 15, + "end_line": 80, + "input_file": { + "filename": "src/renderers/UriRenderer.cairo" + }, + "parent_location": [ + { + "end_col": 62, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/token_uri/da17921a4e81c09e730800bbf23bfdbe5e9e6bfaedc59d80fbf62087fa43c27d.cairo" + }, + "parent_location": [ + { + "end_col": 15, + "end_line": 80, + "input_file": { + "filename": "src/renderers/UriRenderer.cairo" + }, + "start_col": 6, + "start_line": 80 + }, + "While constructing the external wrapper for:" + ], + "start_col": 50, + "start_line": 1 + }, + "While expanding the reference 'retdata_size' in:" + ], + "start_col": 6, + "start_line": 80 + }, + "While constructing the external wrapper for:" + ], + "start_col": 23, + "start_line": 2 + } + }, + "846": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.token_uri" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 44, + "end_line": 2, + "input_file": { + "filename": "autogen/starknet/external/token_uri/3c45a718d5dec5c07bc4698665154ce6a53892dd6482470bafad1a3c27838e5e.cairo" + }, + "parent_location": [ + { + "end_col": 15, + "end_line": 80, + "input_file": { + "filename": "src/renderers/UriRenderer.cairo" + }, + "parent_location": [ + { + "end_col": 70, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/token_uri/da17921a4e81c09e730800bbf23bfdbe5e9e6bfaedc59d80fbf62087fa43c27d.cairo" + }, + "parent_location": [ + { + "end_col": 15, + "end_line": 80, + "input_file": { + "filename": "src/renderers/UriRenderer.cairo" + }, + "start_col": 6, + "start_line": 80 + }, + "While constructing the external wrapper for:" + ], + "start_col": 63, + "start_line": 1 + }, + "While expanding the reference 'retdata' in:" + ], + "start_col": 6, + "start_line": 80 + }, + "While constructing the external wrapper for:" + ], + "start_col": 37, + "start_line": 2 + } + }, + "847": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.token_uri" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 72, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/token_uri/da17921a4e81c09e730800bbf23bfdbe5e9e6bfaedc59d80fbf62087fa43c27d.cairo" + }, + "parent_location": [ + { + "end_col": 15, + "end_line": 80, + "input_file": { + "filename": "src/renderers/UriRenderer.cairo" + }, + "start_col": 6, + "start_line": 80 + }, + "While constructing the external wrapper for:" + ], + "start_col": 1, + "start_line": 1 + } + }, + "848": { + "accessible_scopes": [ + "__main__", + "__main__._base_uri_write" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 30, + "end_line": 101, + "input_file": { + "filename": "src/renderers/UriRenderer.cairo" + }, + "start_col": 9, + "start_line": 101 + } + }, + "849": { + "accessible_scopes": [ + "__main__", + "__main__._base_uri_write" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 7, + "end_line": 101, + "input_file": { + "filename": "src/renderers/UriRenderer.cairo" + }, + "start_col": 5, + "start_line": 101 + } + }, + "851": { + "accessible_scopes": [ + "__main__", + "__main__._base_uri_write" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 40, + "end_line": 98, + "input_file": { + "filename": "src/renderers/UriRenderer.cairo" + }, + "parent_location": [ + { + "end_col": 40, + "end_line": 98, + "input_file": { + "filename": "src/renderers/UriRenderer.cairo" + }, + "parent_location": [ + { + "end_col": 19, + "end_line": 102, + "input_file": { + "filename": "src/renderers/UriRenderer.cairo" + }, + "start_col": 9, + "start_line": 102 + }, + "While trying to retrieve the implicit argument 'syscall_ptr' in:" + ], + "start_col": 22, + "start_line": 98 + }, + "While expanding the reference 'syscall_ptr' in:" + ], + "start_col": 22, + "start_line": 98 + } + }, + "852": { + "accessible_scopes": [ + "__main__", + "__main__._base_uri_write" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 68, + "end_line": 98, + "input_file": { + "filename": "src/renderers/UriRenderer.cairo" + }, + "parent_location": [ + { + "end_col": 68, + "end_line": 98, + "input_file": { + "filename": "src/renderers/UriRenderer.cairo" + }, + "parent_location": [ + { + "end_col": 19, + "end_line": 102, + "input_file": { + "filename": "src/renderers/UriRenderer.cairo" + }, + "start_col": 9, + "start_line": 102 + }, + "While trying to retrieve the implicit argument 'pedersen_ptr' in:" + ], + "start_col": 42, + "start_line": 98 + }, + "While expanding the reference 'pedersen_ptr' in:" + ], + "start_col": 42, + "start_line": 98 + } + }, + "853": { + "accessible_scopes": [ + "__main__", + "__main__._base_uri_write" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 85, + "end_line": 98, + "input_file": { + "filename": "src/renderers/UriRenderer.cairo" + }, + "parent_location": [ + { + "end_col": 85, + "end_line": 98, + "input_file": { + "filename": "src/renderers/UriRenderer.cairo" + }, + "parent_location": [ + { + "end_col": 19, + "end_line": 102, + "input_file": { + "filename": "src/renderers/UriRenderer.cairo" + }, + "start_col": 9, + "start_line": 102 + }, + "While trying to retrieve the implicit argument 'range_check_ptr' in:" + ], + "start_col": 70, + "start_line": 98 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 70, + "start_line": 98 + } + }, + "854": { + "accessible_scopes": [ + "__main__", + "__main__._base_uri_write" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 19, + "end_line": 102, + "input_file": { + "filename": "src/renderers/UriRenderer.cairo" + }, + "start_col": 9, + "start_line": 102 + } + }, + "855": { + "accessible_scopes": [ + "__main__", + "__main__._base_uri_write" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 34, + "end_line": 104, + "input_file": { + "filename": "src/renderers/UriRenderer.cairo" + }, + "parent_location": [ + { + "end_col": 35, + "end_line": 105, + "input_file": { + "filename": "src/renderers/UriRenderer.cairo" + }, + "start_col": 28, + "start_line": 105 + }, + "While expanding the reference 'current' in:" + ], + "start_col": 19, + "start_line": 104 + } + }, + "856": { + "accessible_scopes": [ + "__main__", + "__main__._base_uri_write" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 40, + "end_line": 98, + "input_file": { + "filename": "src/renderers/UriRenderer.cairo" + }, + "parent_location": [ + { + "end_col": 34, + "end_line": 21, + "input_file": { + "filename": "autogen/starknet/storage_var/_base_uri/decl.cairo" + }, + "parent_location": [ + { + "end_col": 36, + "end_line": 105, + "input_file": { + "filename": "src/renderers/UriRenderer.cairo" + }, + "start_col": 5, + "start_line": 105 + }, + "While trying to retrieve the implicit argument 'syscall_ptr' in:" + ], + "start_col": 16, + "start_line": 21 + }, + "While expanding the reference 'syscall_ptr' in:" + ], + "start_col": 22, + "start_line": 98 + } + }, + "857": { + "accessible_scopes": [ + "__main__", + "__main__._base_uri_write" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 68, + "end_line": 98, + "input_file": { + "filename": "src/renderers/UriRenderer.cairo" + }, + "parent_location": [ + { + "end_col": 62, + "end_line": 21, + "input_file": { + "filename": "autogen/starknet/storage_var/_base_uri/decl.cairo" + }, + "parent_location": [ + { + "end_col": 36, + "end_line": 105, + "input_file": { + "filename": "src/renderers/UriRenderer.cairo" + }, + "start_col": 5, + "start_line": 105 + }, + "While trying to retrieve the implicit argument 'pedersen_ptr' in:" + ], + "start_col": 36, + "start_line": 21 + }, + "While expanding the reference 'pedersen_ptr' in:" + ], + "start_col": 42, + "start_line": 98 + } + }, + "858": { + "accessible_scopes": [ + "__main__", + "__main__._base_uri_write" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 85, + "end_line": 98, + "input_file": { + "filename": "src/renderers/UriRenderer.cairo" + }, + "parent_location": [ + { + "end_col": 79, + "end_line": 21, + "input_file": { + "filename": "autogen/starknet/storage_var/_base_uri/decl.cairo" + }, + "parent_location": [ + { + "end_col": 36, + "end_line": 105, + "input_file": { + "filename": "src/renderers/UriRenderer.cairo" + }, + "start_col": 5, + "start_line": 105 + }, + "While trying to retrieve the implicit argument 'range_check_ptr' in:" + ], + "start_col": 64, + "start_line": 21 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 70, + "start_line": 98 + } + }, + "859": { + "accessible_scopes": [ + "__main__", + "__main__._base_uri_write" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 16, + "end_line": 99, + "input_file": { + "filename": "src/renderers/UriRenderer.cairo" + }, + "parent_location": [ + { + "end_col": 26, + "end_line": 105, + "input_file": { + "filename": "src/renderers/UriRenderer.cairo" + }, + "start_col": 21, + "start_line": 105 + }, + "While expanding the reference 'index' in:" + ], + "start_col": 5, + "start_line": 99 + } + }, + "860": { + "accessible_scopes": [ + "__main__", + "__main__._base_uri_write" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 34, + "end_line": 104, + "input_file": { + "filename": "src/renderers/UriRenderer.cairo" + }, + "parent_location": [ + { + "end_col": 35, + "end_line": 105, + "input_file": { + "filename": "src/renderers/UriRenderer.cairo" + }, + "start_col": 28, + "start_line": 105 + }, + "While expanding the reference 'current' in:" + ], + "start_col": 19, + "start_line": 104 + } + }, + "861": { + "accessible_scopes": [ + "__main__", + "__main__._base_uri_write" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 36, + "end_line": 105, + "input_file": { + "filename": "src/renderers/UriRenderer.cairo" + }, + "start_col": 5, + "start_line": 105 + } + }, + "863": { + "accessible_scopes": [ + "__main__", + "__main__._base_uri_write" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 37, + "end_line": 106, + "input_file": { + "filename": "src/renderers/UriRenderer.cairo" + }, + "start_col": 28, + "start_line": 106 + } + }, + "865": { + "accessible_scopes": [ + "__main__", + "__main__._base_uri_write" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 36, + "end_line": 99, + "input_file": { + "filename": "src/renderers/UriRenderer.cairo" + }, + "parent_location": [ + { + "end_col": 51, + "end_line": 106, + "input_file": { + "filename": "src/renderers/UriRenderer.cairo" + }, + "start_col": 39, + "start_line": 106 + }, + "While expanding the reference 'base_uri_len' in:" + ], + "start_col": 18, + "start_line": 99 + } + }, + "866": { + "accessible_scopes": [ + "__main__", + "__main__._base_uri_write" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 53, + "end_line": 99, + "input_file": { + "filename": "src/renderers/UriRenderer.cairo" + }, + "parent_location": [ + { + "end_col": 61, + "end_line": 106, + "input_file": { + "filename": "src/renderers/UriRenderer.cairo" + }, + "start_col": 53, + "start_line": 106 + }, + "While expanding the reference 'base_uri' in:" + ], + "start_col": 38, + "start_line": 99 + } + }, + "867": { + "accessible_scopes": [ + "__main__", + "__main__._base_uri_write" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 62, + "end_line": 106, + "input_file": { + "filename": "src/renderers/UriRenderer.cairo" + }, + "start_col": 12, + "start_line": 106 + } + }, + "869": { + "accessible_scopes": [ + "__main__", + "__main__._base_uri_write" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 63, + "end_line": 106, + "input_file": { + "filename": "src/renderers/UriRenderer.cairo" + }, + "start_col": 5, + "start_line": 106 + } + }, + "870": { + "accessible_scopes": [ + "__main__", + "__main__._base_uri_read" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 39, + "end_line": 109, + "input_file": { + "filename": "src/renderers/UriRenderer.cairo" + }, + "parent_location": [ + { + "end_col": 33, + "end_line": 13, + "input_file": { + "filename": "autogen/starknet/storage_var/_base_uri_len/decl.cairo" + }, + "parent_location": [ + { + "end_col": 41, + "end_line": 112, + "input_file": { + "filename": "src/renderers/UriRenderer.cairo" + }, + "start_col": 21, + "start_line": 112 + }, + "While trying to retrieve the implicit argument 'syscall_ptr' in:" + ], + "start_col": 15, + "start_line": 13 + }, + "While expanding the reference 'syscall_ptr' in:" + ], + "start_col": 21, + "start_line": 109 + } + }, + "871": { + "accessible_scopes": [ + "__main__", + "__main__._base_uri_read" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 67, + "end_line": 109, + "input_file": { + "filename": "src/renderers/UriRenderer.cairo" + }, + "parent_location": [ + { + "end_col": 61, + "end_line": 13, + "input_file": { + "filename": "autogen/starknet/storage_var/_base_uri_len/decl.cairo" + }, + "parent_location": [ + { + "end_col": 41, + "end_line": 112, + "input_file": { + "filename": "src/renderers/UriRenderer.cairo" + }, + "start_col": 21, + "start_line": 112 + }, + "While trying to retrieve the implicit argument 'pedersen_ptr' in:" + ], + "start_col": 35, + "start_line": 13 + }, + "While expanding the reference 'pedersen_ptr' in:" + ], + "start_col": 41, + "start_line": 109 + } + }, + "872": { + "accessible_scopes": [ + "__main__", + "__main__._base_uri_read" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 84, + "end_line": 109, + "input_file": { + "filename": "src/renderers/UriRenderer.cairo" + }, + "parent_location": [ + { + "end_col": 78, + "end_line": 13, + "input_file": { + "filename": "autogen/starknet/storage_var/_base_uri_len/decl.cairo" + }, + "parent_location": [ + { + "end_col": 41, + "end_line": 112, + "input_file": { + "filename": "src/renderers/UriRenderer.cairo" + }, + "start_col": 21, + "start_line": 112 + }, + "While trying to retrieve the implicit argument 'range_check_ptr' in:" + ], + "start_col": 63, + "start_line": 13 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 69, + "start_line": 109 + } + }, + "873": { + "accessible_scopes": [ + "__main__", + "__main__._base_uri_read" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 41, + "end_line": 112, + "input_file": { + "filename": "src/renderers/UriRenderer.cairo" + }, + "start_col": 21, + "start_line": 112 + } + }, + "875": { + "accessible_scopes": [ + "__main__", + "__main__._base_uri_read" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 25, + "end_line": 113, + "input_file": { + "filename": "src/renderers/UriRenderer.cairo" + }, + "start_col": 9, + "start_line": 113 + } + }, + "876": { + "accessible_scopes": [ + "__main__", + "__main__._base_uri_read" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 7, + "end_line": 113, + "input_file": { + "filename": "src/renderers/UriRenderer.cairo" + }, + "start_col": 5, + "start_line": 113 + } + }, + "878": { + "accessible_scopes": [ + "__main__", + "__main__._base_uri_read" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 33, + "end_line": 13, + "input_file": { + "filename": "autogen/starknet/storage_var/_base_uri_len/decl.cairo" + }, + "parent_location": [ + { + "end_col": 41, + "end_line": 112, + "input_file": { + "filename": "src/renderers/UriRenderer.cairo" + }, + "parent_location": [ + { + "end_col": 39, + "end_line": 109, + "input_file": { + "filename": "src/renderers/UriRenderer.cairo" + }, + "parent_location": [ + { + "end_col": 36, + "end_line": 114, + "input_file": { + "filename": "src/renderers/UriRenderer.cairo" + }, + "start_col": 9, + "start_line": 114 + }, + "While trying to retrieve the implicit argument 'syscall_ptr' in:" + ], + "start_col": 21, + "start_line": 109 + }, + "While expanding the reference 'syscall_ptr' in:" + ], + "start_col": 21, + "start_line": 112 + }, + "While trying to update the implicit return value 'syscall_ptr' in:" + ], + "start_col": 15, + "start_line": 13 + } + }, + "879": { + "accessible_scopes": [ + "__main__", + "__main__._base_uri_read" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 61, + "end_line": 13, + "input_file": { + "filename": "autogen/starknet/storage_var/_base_uri_len/decl.cairo" + }, + "parent_location": [ + { + "end_col": 41, + "end_line": 112, + "input_file": { + "filename": "src/renderers/UriRenderer.cairo" + }, + "parent_location": [ + { + "end_col": 67, + "end_line": 109, + "input_file": { + "filename": "src/renderers/UriRenderer.cairo" + }, + "parent_location": [ + { + "end_col": 36, + "end_line": 114, + "input_file": { + "filename": "src/renderers/UriRenderer.cairo" + }, + "start_col": 9, + "start_line": 114 + }, + "While trying to retrieve the implicit argument 'pedersen_ptr' in:" + ], + "start_col": 41, + "start_line": 109 + }, + "While expanding the reference 'pedersen_ptr' in:" + ], + "start_col": 21, + "start_line": 112 + }, + "While trying to update the implicit return value 'pedersen_ptr' in:" + ], + "start_col": 35, + "start_line": 13 + } + }, + "880": { + "accessible_scopes": [ + "__main__", + "__main__._base_uri_read" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 78, + "end_line": 13, + "input_file": { + "filename": "autogen/starknet/storage_var/_base_uri_len/decl.cairo" + }, + "parent_location": [ + { + "end_col": 41, + "end_line": 112, + "input_file": { + "filename": "src/renderers/UriRenderer.cairo" + }, + "parent_location": [ + { + "end_col": 84, + "end_line": 109, + "input_file": { + "filename": "src/renderers/UriRenderer.cairo" + }, + "parent_location": [ + { + "end_col": 36, + "end_line": 114, + "input_file": { + "filename": "src/renderers/UriRenderer.cairo" + }, + "start_col": 9, + "start_line": 114 + }, + "While trying to retrieve the implicit argument 'range_check_ptr' in:" + ], + "start_col": 69, + "start_line": 109 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 21, + "start_line": 112 + }, + "While trying to update the implicit return value 'range_check_ptr' in:" + ], + "start_col": 63, + "start_line": 13 + } + }, + "881": { + "accessible_scopes": [ + "__main__", + "__main__._base_uri_read" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 33, + "end_line": 110, + "input_file": { + "filename": "src/renderers/UriRenderer.cairo" + }, + "parent_location": [ + { + "end_col": 34, + "end_line": 114, + "input_file": { + "filename": "src/renderers/UriRenderer.cairo" + }, + "start_col": 26, + "start_line": 114 + }, + "While expanding the reference 'base_uri' in:" + ], + "start_col": 18, + "start_line": 110 + } + }, + "882": { + "accessible_scopes": [ + "__main__", + "__main__._base_uri_read" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 36, + "end_line": 114, + "input_file": { + "filename": "src/renderers/UriRenderer.cairo" + }, + "start_col": 9, + "start_line": 114 + } + }, + "883": { + "accessible_scopes": [ + "__main__", + "__main__._base_uri_read" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 33, + "end_line": 13, + "input_file": { + "filename": "autogen/starknet/storage_var/_base_uri_len/decl.cairo" + }, + "parent_location": [ + { + "end_col": 41, + "end_line": 112, + "input_file": { + "filename": "src/renderers/UriRenderer.cairo" + }, + "parent_location": [ + { + "end_col": 33, + "end_line": 13, + "input_file": { + "filename": "autogen/starknet/storage_var/_base_uri/decl.cairo" + }, + "parent_location": [ + { + "end_col": 42, + "end_line": 116, + "input_file": { + "filename": "src/renderers/UriRenderer.cairo" + }, + "start_col": 21, + "start_line": 116 + }, + "While trying to retrieve the implicit argument 'syscall_ptr' in:" + ], + "start_col": 15, + "start_line": 13 + }, + "While expanding the reference 'syscall_ptr' in:" + ], + "start_col": 21, + "start_line": 112 + }, + "While trying to update the implicit return value 'syscall_ptr' in:" + ], + "start_col": 15, + "start_line": 13 + } + }, + "884": { + "accessible_scopes": [ + "__main__", + "__main__._base_uri_read" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 61, + "end_line": 13, + "input_file": { + "filename": "autogen/starknet/storage_var/_base_uri_len/decl.cairo" + }, + "parent_location": [ + { + "end_col": 41, + "end_line": 112, + "input_file": { + "filename": "src/renderers/UriRenderer.cairo" + }, + "parent_location": [ + { + "end_col": 61, + "end_line": 13, + "input_file": { + "filename": "autogen/starknet/storage_var/_base_uri/decl.cairo" + }, + "parent_location": [ + { + "end_col": 42, + "end_line": 116, + "input_file": { + "filename": "src/renderers/UriRenderer.cairo" + }, + "start_col": 21, + "start_line": 116 + }, + "While trying to retrieve the implicit argument 'pedersen_ptr' in:" + ], + "start_col": 35, + "start_line": 13 + }, + "While expanding the reference 'pedersen_ptr' in:" + ], + "start_col": 21, + "start_line": 112 + }, + "While trying to update the implicit return value 'pedersen_ptr' in:" + ], + "start_col": 35, + "start_line": 13 + } + }, + "885": { + "accessible_scopes": [ + "__main__", + "__main__._base_uri_read" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 78, + "end_line": 13, + "input_file": { + "filename": "autogen/starknet/storage_var/_base_uri_len/decl.cairo" + }, + "parent_location": [ + { + "end_col": 41, + "end_line": 112, + "input_file": { + "filename": "src/renderers/UriRenderer.cairo" + }, + "parent_location": [ + { + "end_col": 78, + "end_line": 13, + "input_file": { + "filename": "autogen/starknet/storage_var/_base_uri/decl.cairo" + }, + "parent_location": [ + { + "end_col": 42, + "end_line": 116, + "input_file": { + "filename": "src/renderers/UriRenderer.cairo" + }, + "start_col": 21, + "start_line": 116 + }, + "While trying to retrieve the implicit argument 'range_check_ptr' in:" + ], + "start_col": 63, + "start_line": 13 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 21, + "start_line": 112 + }, + "While trying to update the implicit return value 'range_check_ptr' in:" + ], + "start_col": 63, + "start_line": 13 + } + }, + "886": { + "accessible_scopes": [ + "__main__", + "__main__._base_uri_read" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 16, + "end_line": 110, + "input_file": { + "filename": "src/renderers/UriRenderer.cairo" + }, + "parent_location": [ + { + "end_col": 41, + "end_line": 116, + "input_file": { + "filename": "src/renderers/UriRenderer.cairo" + }, + "start_col": 36, + "start_line": 116 + }, + "While expanding the reference 'index' in:" + ], + "start_col": 5, + "start_line": 110 + } + }, + "887": { + "accessible_scopes": [ + "__main__", + "__main__._base_uri_read" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 42, + "end_line": 116, + "input_file": { + "filename": "src/renderers/UriRenderer.cairo" + }, + "start_col": 21, + "start_line": 116 + } + }, + "889": { + "accessible_scopes": [ + "__main__", + "__main__._base_uri_read" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 33, + "end_line": 117, + "input_file": { + "filename": "src/renderers/UriRenderer.cairo" + }, + "start_col": 5, + "start_line": 117 + } + }, + "890": { + "accessible_scopes": [ + "__main__", + "__main__._base_uri_read" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 33, + "end_line": 13, + "input_file": { + "filename": "autogen/starknet/storage_var/_base_uri/decl.cairo" + }, + "parent_location": [ + { + "end_col": 42, + "end_line": 116, + "input_file": { + "filename": "src/renderers/UriRenderer.cairo" + }, + "parent_location": [ + { + "end_col": 39, + "end_line": 109, + "input_file": { + "filename": "src/renderers/UriRenderer.cairo" + }, + "parent_location": [ + { + "end_col": 51, + "end_line": 118, + "input_file": { + "filename": "src/renderers/UriRenderer.cairo" + }, + "start_col": 12, + "start_line": 118 + }, + "While trying to retrieve the implicit argument 'syscall_ptr' in:" + ], + "start_col": 21, + "start_line": 109 + }, + "While expanding the reference 'syscall_ptr' in:" + ], + "start_col": 21, + "start_line": 116 + }, + "While trying to update the implicit return value 'syscall_ptr' in:" + ], + "start_col": 15, + "start_line": 13 + } + }, + "891": { + "accessible_scopes": [ + "__main__", + "__main__._base_uri_read" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 61, + "end_line": 13, + "input_file": { + "filename": "autogen/starknet/storage_var/_base_uri/decl.cairo" + }, + "parent_location": [ + { + "end_col": 42, + "end_line": 116, + "input_file": { + "filename": "src/renderers/UriRenderer.cairo" + }, + "parent_location": [ + { + "end_col": 67, + "end_line": 109, + "input_file": { + "filename": "src/renderers/UriRenderer.cairo" + }, + "parent_location": [ + { + "end_col": 51, + "end_line": 118, + "input_file": { + "filename": "src/renderers/UriRenderer.cairo" + }, + "start_col": 12, + "start_line": 118 + }, + "While trying to retrieve the implicit argument 'pedersen_ptr' in:" + ], + "start_col": 41, + "start_line": 109 + }, + "While expanding the reference 'pedersen_ptr' in:" + ], + "start_col": 21, + "start_line": 116 + }, + "While trying to update the implicit return value 'pedersen_ptr' in:" + ], + "start_col": 35, + "start_line": 13 + } + }, + "892": { + "accessible_scopes": [ + "__main__", + "__main__._base_uri_read" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 78, + "end_line": 13, + "input_file": { + "filename": "autogen/starknet/storage_var/_base_uri/decl.cairo" + }, + "parent_location": [ + { + "end_col": 42, + "end_line": 116, + "input_file": { + "filename": "src/renderers/UriRenderer.cairo" + }, + "parent_location": [ + { + "end_col": 84, + "end_line": 109, + "input_file": { + "filename": "src/renderers/UriRenderer.cairo" + }, + "parent_location": [ + { + "end_col": 51, + "end_line": 118, + "input_file": { + "filename": "src/renderers/UriRenderer.cairo" + }, + "start_col": 12, + "start_line": 118 + }, + "While trying to retrieve the implicit argument 'range_check_ptr' in:" + ], + "start_col": 69, + "start_line": 109 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 21, + "start_line": 116 + }, + "While trying to update the implicit return value 'range_check_ptr' in:" + ], + "start_col": 63, + "start_line": 13 + } + }, + "893": { + "accessible_scopes": [ + "__main__", + "__main__._base_uri_read" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 36, + "end_line": 118, + "input_file": { + "filename": "src/renderers/UriRenderer.cairo" + }, + "start_col": 27, + "start_line": 118 + } + }, + "895": { + "accessible_scopes": [ + "__main__", + "__main__._base_uri_read" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 50, + "end_line": 118, + "input_file": { + "filename": "src/renderers/UriRenderer.cairo" + }, + "start_col": 38, + "start_line": 118 + } + }, + "897": { + "accessible_scopes": [ + "__main__", + "__main__._base_uri_read" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 51, + "end_line": 118, + "input_file": { + "filename": "src/renderers/UriRenderer.cairo" + }, + "start_col": 12, + "start_line": 118 + } + }, + "899": { + "accessible_scopes": [ + "__main__", + "__main__._base_uri_read" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 52, + "end_line": 118, + "input_file": { + "filename": "src/renderers/UriRenderer.cairo" + }, + "start_col": 5, + "start_line": 118 + } + } + } + }, "hints": { "0": [ { diff --git a/packages/starksheet-cairo/build/UriRenderer_abi.json b/packages/starksheet-cairo/build/UriRenderer_abi.json deleted file mode 100644 index bc735f2b..00000000 --- a/packages/starksheet-cairo/build/UriRenderer_abi.json +++ /dev/null @@ -1,142 +0,0 @@ -[ - { - "data": [ - { - "name": "previousOwner", - "type": "felt" - }, - { - "name": "newOwner", - "type": "felt" - } - ], - "keys": [], - "name": "OwnershipTransferred", - "type": "event" - }, - { - "inputs": [], - "name": "getUseTokenId", - "outputs": [ - { - "name": "res", - "type": "felt" - } - ], - "stateMutability": "view", - "type": "function" - }, - { - "inputs": [ - { - "name": "use", - "type": "felt" - } - ], - "name": "setUseTokenId", - "outputs": [], - "type": "function" - }, - { - "inputs": [], - "name": "getOwner", - "outputs": [ - { - "name": "owner", - "type": "felt" - } - ], - "stateMutability": "view", - "type": "function" - }, - { - "inputs": [ - { - "name": "new_owner", - "type": "felt" - } - ], - "name": "transferOwnership", - "outputs": [], - "type": "function" - }, - { - "inputs": [ - { - "name": "owner", - "type": "felt" - }, - { - "name": "base_uri_len", - "type": "felt" - }, - { - "name": "base_uri", - "type": "felt*" - } - ], - "name": "constructor", - "outputs": [], - "type": "constructor" - }, - { - "inputs": [], - "name": "getBaseUri", - "outputs": [ - { - "name": "base_uri_len", - "type": "felt" - }, - { - "name": "base_uri", - "type": "felt*" - } - ], - "stateMutability": "view", - "type": "function" - }, - { - "inputs": [ - { - "name": "base_uri_len", - "type": "felt" - }, - { - "name": "base_uri", - "type": "felt*" - } - ], - "name": "setBaseUri", - "outputs": [], - "type": "function" - }, - { - "inputs": [ - { - "name": "token_id", - "type": "felt" - }, - { - "name": "value", - "type": "felt" - }, - { - "name": "name", - "type": "felt" - } - ], - "name": "token_uri", - "outputs": [ - { - "name": "token_uri_len", - "type": "felt" - }, - { - "name": "token_uri", - "type": "felt*" - } - ], - "stateMutability": "view", - "type": "function" - } -] diff --git a/packages/starksheet-cairo/build/execute.json b/packages/starksheet-cairo/build/execute.json index 750fb5de..2cb8ef2c 100644 --- a/packages/starksheet-cairo/build/execute.json +++ b/packages/starksheet-cairo/build/execute.json @@ -141,7 +141,2646 @@ "0x48127ffc7fff8000", "0x208b7fff7fff7ffe" ], - "debug_info": null, + "debug_info": { + "file_contents": { + "autogen/starknet/arg_processor/01cba52f8515996bb9d7070bde81ff39281d096d7024a558efcba6e1fd2402cf.cairo": "assert [cast(fp + (-4), felt*)] = __calldata_actual_size;\n", + "autogen/starknet/arg_processor/7046cc4c88ba6611470227deea5f06538d5ea2f7e7ad1dafc673340fa91e3ce0.cairo": "assert [__return_value_ptr] = ret_value.arr_len;\nlet __return_value_ptr = __return_value_ptr + 1;\n", + "autogen/starknet/arg_processor/7441d406a9dddc153e843ef4bae777d3135e9f94650aa19a4c12b346a202f55a.cairo": "let __calldata_arg_arr_len = [__calldata_ptr];\nlet __calldata_ptr = __calldata_ptr + 1;\n", + "autogen/starknet/arg_processor/9dacaab8f7a7d69909dd09ce33021ec07bdc209218193ce77523c8f4f86440ab.cairo": "// Check that the length is non-negative.\nassert [range_check_ptr] = ret_value.arr_len;\n// Store the updated range_check_ptr as a local variable to keep it available after\n// the memcpy.\nlocal range_check_ptr = range_check_ptr + 1;\n// Keep a reference to __return_value_ptr.\nlet __return_value_ptr_copy = __return_value_ptr;\n// Store the updated __return_value_ptr as a local variable to keep it available after\n// the memcpy.\nlocal __return_value_ptr: felt* = __return_value_ptr + ret_value.arr_len * 1;\nmemcpy(\n dst=__return_value_ptr_copy,\n src=ret_value.arr,\n len=ret_value.arr_len * 1);\n", + "autogen/starknet/arg_processor/fea0fa4d5b8fa7ee6c308136c9e398c54fa29cc00c6b3467d383d54910b51adf.cairo": "// Check that the length is non-negative.\nassert [range_check_ptr] = __calldata_arg_arr_len;\nlet range_check_ptr = range_check_ptr + 1;\n// Create the reference.\nlet __calldata_arg_arr = cast(__calldata_ptr, felt*);\n// Use 'tempvar' instead of 'let' to avoid repeating this computation for the\n// following arguments.\ntempvar __calldata_ptr = __calldata_ptr + __calldata_arg_arr_len * 1;\n", + "autogen/starknet/external/all/3f2c77ab4e9866f148094b3f3c2497496b7ce8700b8370e7f1bc10658a33d640.cairo": "let syscall_ptr = [cast([cast(fp + (-5), felt**)] + 0, felt*)];\n", + "autogen/starknet/external/all/89ba067284d46fbe51a23c1257bffbcccb64e31022e5e287f90757bf52cf63a6.cairo": "let ret_value = __wrapped_func{}(arr_len=__calldata_arg_arr_len, arr=__calldata_arg_arr,);\nlet (range_check_ptr, retdata_size, retdata) = all_encode_return(ret_value, range_check_ptr);\n", + "autogen/starknet/external/all/93099bea078b47105ec080392b498d5fa602cf51e6076f4584216f16f5b4c273.cairo": "return (syscall_ptr,range_check_ptr,retdata_size,retdata);\n", + "autogen/starknet/external/all/fd099223670ab5d428127810c2328d37c65c29951c7abc7cebaa651b40be0a6a.cairo": "let range_check_ptr = [cast([cast(fp + (-5), felt**)] + 1, felt*)];\n", + "autogen/starknet/external/return/all/416ea443ea4b4be4f370a482600a73a72572faec4d8e2a618ebc634d614fa4e7.cairo": "func all_encode_return(ret_value: (arr_len: felt, arr: felt*), range_check_ptr) -> (\n range_check_ptr: felt, data_len: felt, data: felt*) {\n %{ memory[ap] = segments.add() %}\n alloc_locals;\n local __return_value_ptr_start: felt*;\n let __return_value_ptr = __return_value_ptr_start;\n with range_check_ptr {\n }\n return (\n range_check_ptr=range_check_ptr,\n data_len=__return_value_ptr - __return_value_ptr_start,\n data=__return_value_ptr_start);\n}\n" + }, + "instruction_locations": { + "0": { + "accessible_scopes": [ + "starkware.cairo.common.memcpy", + "starkware.cairo.common.memcpy.memcpy" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 7, + "end_line": 8, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/memcpy.cairo" + }, + "start_col": 5, + "start_line": 8 + } + }, + "2": { + "accessible_scopes": [ + "starkware.cairo.common.memcpy", + "starkware.cairo.common.memcpy.memcpy" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 19, + "end_line": 9, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/memcpy.cairo" + }, + "start_col": 9, + "start_line": 9 + } + }, + "3": { + "accessible_scopes": [ + "starkware.cairo.common.memcpy", + "starkware.cairo.common.memcpy.memcpy" + ], + "flow_tracking_data": null, + "hints": [ + { + "location": { + "end_col": 41, + "end_line": 12, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/memcpy.cairo" + }, + "start_col": 5, + "start_line": 12 + }, + "n_prefix_newlines": 0 + } + ], + "inst": { + "end_col": 23, + "end_line": 2, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/memcpy.cairo" + }, + "parent_location": [ + { + "end_col": 38, + "end_line": 13, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/memcpy.cairo" + }, + "start_col": 35, + "start_line": 13 + }, + "While expanding the reference 'dst' in:" + ], + "start_col": 13, + "start_line": 2 + } + }, + "4": { + "accessible_scopes": [ + "starkware.cairo.common.memcpy", + "starkware.cairo.common.memcpy.memcpy" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 35, + "end_line": 2, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/memcpy.cairo" + }, + "parent_location": [ + { + "end_col": 47, + "end_line": 13, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/memcpy.cairo" + }, + "start_col": 44, + "start_line": 13 + }, + "While expanding the reference 'src' in:" + ], + "start_col": 25, + "start_line": 2 + } + }, + "5": { + "accessible_scopes": [ + "starkware.cairo.common.memcpy", + "starkware.cairo.common.memcpy.memcpy" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 37, + "end_line": 17, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/memcpy.cairo" + }, + "start_col": 26, + "start_line": 17 + } + }, + "6": { + "accessible_scopes": [ + "starkware.cairo.common.memcpy", + "starkware.cairo.common.memcpy.memcpy" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 38, + "end_line": 17, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/memcpy.cairo" + }, + "start_col": 5, + "start_line": 17 + } + }, + "7": { + "accessible_scopes": [ + "starkware.cairo.common.memcpy", + "starkware.cairo.common.memcpy.memcpy" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 41, + "end_line": 22, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/memcpy.cairo" + }, + "start_col": 5, + "start_line": 22 + } + }, + "9": { + "accessible_scopes": [ + "starkware.cairo.common.memcpy", + "starkware.cairo.common.memcpy.memcpy" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 41, + "end_line": 23, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/memcpy.cairo" + }, + "start_col": 5, + "start_line": 23 + } + }, + "11": { + "accessible_scopes": [ + "starkware.cairo.common.memcpy", + "starkware.cairo.common.memcpy.memcpy" + ], + "flow_tracking_data": null, + "hints": [ + { + "location": { + "end_col": 7, + "end_line": 27, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/memcpy.cairo" + }, + "start_col": 5, + "start_line": 24 + }, + "n_prefix_newlines": 1 + } + ], + "inst": { + "end_col": 44, + "end_line": 29, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/memcpy.cairo" + }, + "start_col": 5, + "start_line": 29 + } + }, + "13": { + "accessible_scopes": [ + "starkware.cairo.common.memcpy", + "starkware.cairo.common.memcpy.memcpy" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 55, + "end_line": 31, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/memcpy.cairo" + }, + "start_col": 5, + "start_line": 31 + } + }, + "14": { + "accessible_scopes": [ + "starkware.cairo.common.memcpy", + "starkware.cairo.common.memcpy.memcpy" + ], + "flow_tracking_data": null, + "hints": [ + { + "location": { + "end_col": 26, + "end_line": 33, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/memcpy.cairo" + }, + "start_col": 5, + "start_line": 33 + }, + "n_prefix_newlines": 0 + } + ], + "inst": { + "end_col": 15, + "end_line": 34, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/memcpy.cairo" + }, + "start_col": 5, + "start_line": 34 + } + }, + "15": { + "accessible_scopes": [ + "starkware.cairo.common.math", + "starkware.cairo.common.math.assert_nn" + ], + "flow_tracking_data": null, + "hints": [ + { + "location": { + "end_col": 7, + "end_line": 46, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/math.cairo" + }, + "start_col": 5, + "start_line": 42 + }, + "n_prefix_newlines": 1 + } + ], + "inst": { + "end_col": 26, + "end_line": 47, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/math.cairo" + }, + "start_col": 5, + "start_line": 47 + } + }, + "16": { + "accessible_scopes": [ + "starkware.cairo.common.math", + "starkware.cairo.common.math.assert_nn" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 46, + "end_line": 48, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/math.cairo" + }, + "parent_location": [ + { + "end_col": 31, + "end_line": 41, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/math.cairo" + }, + "parent_location": [ + { + "end_col": 15, + "end_line": 49, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/math.cairo" + }, + "start_col": 5, + "start_line": 49 + }, + "While trying to retrieve the implicit argument 'range_check_ptr' in:" + ], + "start_col": 16, + "start_line": 41 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 27, + "start_line": 48 + } + }, + "18": { + "accessible_scopes": [ + "starkware.cairo.common.math", + "starkware.cairo.common.math.assert_nn" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 15, + "end_line": 49, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/math.cairo" + }, + "start_col": 5, + "start_line": 49 + } + }, + "19": { + "accessible_scopes": [ + "starkware.cairo.common.math", + "starkware.cairo.common.math.assert_le" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 31, + "end_line": 53, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/math.cairo" + }, + "parent_location": [ + { + "end_col": 31, + "end_line": 41, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/math.cairo" + }, + "parent_location": [ + { + "end_col": 21, + "end_line": 54, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/math.cairo" + }, + "start_col": 5, + "start_line": 54 + }, + "While trying to retrieve the implicit argument 'range_check_ptr' in:" + ], + "start_col": 16, + "start_line": 41 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 16, + "start_line": 53 + } + }, + "20": { + "accessible_scopes": [ + "starkware.cairo.common.math", + "starkware.cairo.common.math.assert_le" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 20, + "end_line": 54, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/math.cairo" + }, + "start_col": 15, + "start_line": 54 + } + }, + "21": { + "accessible_scopes": [ + "starkware.cairo.common.math", + "starkware.cairo.common.math.assert_le" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 21, + "end_line": 54, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/math.cairo" + }, + "start_col": 5, + "start_line": 54 + } + }, + "23": { + "accessible_scopes": [ + "starkware.cairo.common.math", + "starkware.cairo.common.math.assert_le" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 15, + "end_line": 55, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/math.cairo" + }, + "start_col": 5, + "start_line": 55 + } + }, + "24": { + "accessible_scopes": [ + "starkware.cairo.common.math", + "starkware.cairo.common.math.signed_div_rem" + ], + "flow_tracking_data": null, + "hints": [ + { + "location": { + "end_col": 7, + "end_line": 347, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/math.cairo" + }, + "start_col": 5, + "start_line": 329 + }, + "n_prefix_newlines": 1 + } + ], + "inst": { + "end_col": 41, + "end_line": 327, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/math.cairo" + }, + "parent_location": [ + { + "end_col": 21, + "end_line": 348, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/math.cairo" + }, + "parent_location": [ + { + "end_col": 21, + "end_line": 349, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/math.cairo" + }, + "start_col": 20, + "start_line": 349 + }, + "While expanding the reference 'q' in:" + ], + "start_col": 13, + "start_line": 348 + }, + "While expanding the reference 'biased_q' in:" + ], + "start_col": 20, + "start_line": 327 + } + }, + "25": { + "accessible_scopes": [ + "starkware.cairo.common.math", + "starkware.cairo.common.math.signed_div_rem" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 29, + "end_line": 348, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/math.cairo" + }, + "parent_location": [ + { + "end_col": 21, + "end_line": 349, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/math.cairo" + }, + "start_col": 20, + "start_line": 349 + }, + "While expanding the reference 'q' in:" + ], + "start_col": 13, + "start_line": 348 + } + }, + "26": { + "accessible_scopes": [ + "starkware.cairo.common.math", + "starkware.cairo.common.math.signed_div_rem" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 27, + "end_line": 349, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/math.cairo" + }, + "start_col": 20, + "start_line": 349 + } + }, + "27": { + "accessible_scopes": [ + "starkware.cairo.common.math", + "starkware.cairo.common.math.signed_div_rem" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 30, + "end_line": 326, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/math.cairo" + }, + "parent_location": [ + { + "end_col": 31, + "end_line": 349, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/math.cairo" + }, + "start_col": 30, + "start_line": 349 + }, + "While expanding the reference 'r' in:" + ], + "start_col": 13, + "start_line": 326 + } + }, + "28": { + "accessible_scopes": [ + "starkware.cairo.common.math", + "starkware.cairo.common.math.signed_div_rem" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 32, + "end_line": 349, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/math.cairo" + }, + "start_col": 5, + "start_line": 349 + } + }, + "29": { + "accessible_scopes": [ + "starkware.cairo.common.math", + "starkware.cairo.common.math.signed_div_rem" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 46, + "end_line": 328, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/math.cairo" + }, + "parent_location": [ + { + "end_col": 31, + "end_line": 53, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/math.cairo" + }, + "parent_location": [ + { + "end_col": 26, + "end_line": 350, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/math.cairo" + }, + "start_col": 5, + "start_line": 350 + }, + "While trying to retrieve the implicit argument 'range_check_ptr' in:" + ], + "start_col": 16, + "start_line": 53 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 27, + "start_line": 328 + } + }, + "31": { + "accessible_scopes": [ + "starkware.cairo.common.math", + "starkware.cairo.common.math.signed_div_rem" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 30, + "end_line": 326, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/math.cairo" + }, + "parent_location": [ + { + "end_col": 16, + "end_line": 350, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/math.cairo" + }, + "start_col": 15, + "start_line": 350 + }, + "While expanding the reference 'r' in:" + ], + "start_col": 13, + "start_line": 326 + } + }, + "32": { + "accessible_scopes": [ + "starkware.cairo.common.math", + "starkware.cairo.common.math.signed_div_rem" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 25, + "end_line": 350, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/math.cairo" + }, + "start_col": 18, + "start_line": 350 + } + }, + "34": { + "accessible_scopes": [ + "starkware.cairo.common.math", + "starkware.cairo.common.math.signed_div_rem" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 26, + "end_line": 350, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/math.cairo" + }, + "start_col": 5, + "start_line": 350 + } + }, + "36": { + "accessible_scopes": [ + "starkware.cairo.common.math", + "starkware.cairo.common.math.signed_div_rem" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 26, + "end_line": 351, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/math.cairo" + }, + "start_col": 25, + "start_line": 351 + } + }, + "38": { + "accessible_scopes": [ + "starkware.cairo.common.math", + "starkware.cairo.common.math.signed_div_rem" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 34, + "end_line": 351, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/math.cairo" + }, + "start_col": 25, + "start_line": 351 + } + }, + "39": { + "accessible_scopes": [ + "starkware.cairo.common.math", + "starkware.cairo.common.math.signed_div_rem" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 31, + "end_line": 53, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/math.cairo" + }, + "parent_location": [ + { + "end_col": 26, + "end_line": 350, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/math.cairo" + }, + "parent_location": [ + { + "end_col": 31, + "end_line": 53, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/math.cairo" + }, + "parent_location": [ + { + "end_col": 39, + "end_line": 351, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/math.cairo" + }, + "start_col": 5, + "start_line": 351 + }, + "While trying to retrieve the implicit argument 'range_check_ptr' in:" + ], + "start_col": 16, + "start_line": 53 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 5, + "start_line": 350 + }, + "While trying to update the implicit return value 'range_check_ptr' in:" + ], + "start_col": 16, + "start_line": 53 + } + }, + "40": { + "accessible_scopes": [ + "starkware.cairo.common.math", + "starkware.cairo.common.math.signed_div_rem" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 41, + "end_line": 327, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/math.cairo" + }, + "parent_location": [ + { + "end_col": 23, + "end_line": 351, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/math.cairo" + }, + "start_col": 15, + "start_line": 351 + }, + "While expanding the reference 'biased_q' in:" + ], + "start_col": 20, + "start_line": 327 + } + }, + "41": { + "accessible_scopes": [ + "starkware.cairo.common.math", + "starkware.cairo.common.math.signed_div_rem" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 38, + "end_line": 351, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/math.cairo" + }, + "start_col": 25, + "start_line": 351 + } + }, + "43": { + "accessible_scopes": [ + "starkware.cairo.common.math", + "starkware.cairo.common.math.signed_div_rem" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 39, + "end_line": 351, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/math.cairo" + }, + "start_col": 5, + "start_line": 351 + } + }, + "45": { + "accessible_scopes": [ + "starkware.cairo.common.math", + "starkware.cairo.common.math.signed_div_rem" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 41, + "end_line": 327, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/math.cairo" + }, + "parent_location": [ + { + "end_col": 21, + "end_line": 348, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/math.cairo" + }, + "parent_location": [ + { + "end_col": 14, + "end_line": 352, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/math.cairo" + }, + "start_col": 13, + "start_line": 352 + }, + "While expanding the reference 'q' in:" + ], + "start_col": 13, + "start_line": 348 + }, + "While expanding the reference 'biased_q' in:" + ], + "start_col": 20, + "start_line": 327 + } + }, + "46": { + "accessible_scopes": [ + "starkware.cairo.common.math", + "starkware.cairo.common.math.signed_div_rem" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 31, + "end_line": 53, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/math.cairo" + }, + "parent_location": [ + { + "end_col": 39, + "end_line": 351, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/math.cairo" + }, + "parent_location": [ + { + "end_col": 36, + "end_line": 325, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/math.cairo" + }, + "parent_location": [ + { + "end_col": 19, + "end_line": 352, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/math.cairo" + }, + "start_col": 5, + "start_line": 352 + }, + "While trying to retrieve the implicit argument 'range_check_ptr' in:" + ], + "start_col": 21, + "start_line": 325 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 5, + "start_line": 351 + }, + "While trying to update the implicit return value 'range_check_ptr' in:" + ], + "start_col": 16, + "start_line": 53 + } + }, + "47": { + "accessible_scopes": [ + "starkware.cairo.common.math", + "starkware.cairo.common.math.signed_div_rem" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 29, + "end_line": 348, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/math.cairo" + }, + "parent_location": [ + { + "end_col": 14, + "end_line": 352, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/math.cairo" + }, + "start_col": 13, + "start_line": 352 + }, + "While expanding the reference 'q' in:" + ], + "start_col": 13, + "start_line": 348 + } + }, + "48": { + "accessible_scopes": [ + "starkware.cairo.common.math", + "starkware.cairo.common.math.signed_div_rem" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 30, + "end_line": 326, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/math.cairo" + }, + "parent_location": [ + { + "end_col": 17, + "end_line": 352, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/math.cairo" + }, + "start_col": 16, + "start_line": 352 + }, + "While expanding the reference 'r' in:" + ], + "start_col": 13, + "start_line": 326 + } + }, + "49": { + "accessible_scopes": [ + "starkware.cairo.common.math", + "starkware.cairo.common.math.signed_div_rem" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 19, + "end_line": 352, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/math.cairo" + }, + "start_col": 5, + "start_line": 352 + } + }, + "50": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.all" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 23, + "end_line": 7, + "input_file": { + "filename": "src/utils/execute.cairo" + }, + "parent_location": [ + { + "end_col": 20, + "end_line": 8, + "input_file": { + "filename": "src/utils/execute.cairo" + }, + "start_col": 13, + "start_line": 8 + }, + "While expanding the reference 'arr_len' in:" + ], + "start_col": 10, + "start_line": 7 + } + }, + "51": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.all" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 35, + "end_line": 7, + "input_file": { + "filename": "src/utils/execute.cairo" + }, + "parent_location": [ + { + "end_col": 25, + "end_line": 8, + "input_file": { + "filename": "src/utils/execute.cairo" + }, + "start_col": 22, + "start_line": 8 + }, + "While expanding the reference 'arr' in:" + ], + "start_col": 25, + "start_line": 7 + } + }, + "52": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.all" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 27, + "end_line": 8, + "input_file": { + "filename": "src/utils/execute.cairo" + }, + "start_col": 5, + "start_line": 8 + } + }, + "53": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.all_encode_return" + ], + "flow_tracking_data": null, + "hints": [ + { + "location": { + "end_col": 38, + "end_line": 3, + "input_file": { + "filename": "autogen/starknet/external/return/all/416ea443ea4b4be4f370a482600a73a72572faec4d8e2a618ebc634d614fa4e7.cairo" + }, + "parent_location": [ + { + "end_col": 9, + "end_line": 7, + "input_file": { + "filename": "src/utils/execute.cairo" + }, + "start_col": 6, + "start_line": 7 + }, + "While handling return value of" + ], + "start_col": 5, + "start_line": 3 + }, + "n_prefix_newlines": 0 + } + ], + "inst": { + "end_col": 18, + "end_line": 4, + "input_file": { + "filename": "autogen/starknet/external/return/all/416ea443ea4b4be4f370a482600a73a72572faec4d8e2a618ebc634d614fa4e7.cairo" + }, + "parent_location": [ + { + "end_col": 9, + "end_line": 7, + "input_file": { + "filename": "src/utils/execute.cairo" + }, + "start_col": 6, + "start_line": 7 + }, + "While handling return value of" + ], + "start_col": 5, + "start_line": 4 + } + }, + "55": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.all_encode_return" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 49, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/arg_processor/7046cc4c88ba6611470227deea5f06538d5ea2f7e7ad1dafc673340fa91e3ce0.cairo" + }, + "parent_location": [ + { + "end_col": 54, + "end_line": 7, + "input_file": { + "filename": "src/utils/execute.cairo" + }, + "start_col": 41, + "start_line": 7 + }, + "While handling return value 'arr_len'" + ], + "start_col": 1, + "start_line": 1 + } + }, + "56": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.all_encode_return" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 46, + "end_line": 2, + "input_file": { + "filename": "autogen/starknet/arg_processor/9dacaab8f7a7d69909dd09ce33021ec07bdc209218193ce77523c8f4f86440ab.cairo" + }, + "parent_location": [ + { + "end_col": 66, + "end_line": 7, + "input_file": { + "filename": "src/utils/execute.cairo" + }, + "start_col": 56, + "start_line": 7 + }, + "While handling return value 'arr'" + ], + "start_col": 1, + "start_line": 2 + } + }, + "57": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.all_encode_return" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 45, + "end_line": 5, + "input_file": { + "filename": "autogen/starknet/arg_processor/9dacaab8f7a7d69909dd09ce33021ec07bdc209218193ce77523c8f4f86440ab.cairo" + }, + "parent_location": [ + { + "end_col": 66, + "end_line": 7, + "input_file": { + "filename": "src/utils/execute.cairo" + }, + "start_col": 56, + "start_line": 7 + }, + "While handling return value 'arr'" + ], + "start_col": 1, + "start_line": 5 + } + }, + "59": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.all_encode_return" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 48, + "end_line": 2, + "input_file": { + "filename": "autogen/starknet/arg_processor/7046cc4c88ba6611470227deea5f06538d5ea2f7e7ad1dafc673340fa91e3ce0.cairo" + }, + "parent_location": [ + { + "end_col": 54, + "end_line": 7, + "input_file": { + "filename": "src/utils/execute.cairo" + }, + "parent_location": [ + { + "end_col": 53, + "end_line": 10, + "input_file": { + "filename": "autogen/starknet/arg_processor/9dacaab8f7a7d69909dd09ce33021ec07bdc209218193ce77523c8f4f86440ab.cairo" + }, + "parent_location": [ + { + "end_col": 66, + "end_line": 7, + "input_file": { + "filename": "src/utils/execute.cairo" + }, + "start_col": 56, + "start_line": 7 + }, + "While handling return value 'arr'" + ], + "start_col": 35, + "start_line": 10 + }, + "While expanding the reference '__return_value_ptr' in:" + ], + "start_col": 41, + "start_line": 7 + }, + "While handling return value 'arr_len'" + ], + "start_col": 26, + "start_line": 2 + } + }, + "61": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.all_encode_return" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 78, + "end_line": 10, + "input_file": { + "filename": "autogen/starknet/arg_processor/9dacaab8f7a7d69909dd09ce33021ec07bdc209218193ce77523c8f4f86440ab.cairo" + }, + "parent_location": [ + { + "end_col": 66, + "end_line": 7, + "input_file": { + "filename": "src/utils/execute.cairo" + }, + "start_col": 56, + "start_line": 7 + }, + "While handling return value 'arr'" + ], + "start_col": 1, + "start_line": 10 + } + }, + "62": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.all_encode_return" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 48, + "end_line": 2, + "input_file": { + "filename": "autogen/starknet/arg_processor/7046cc4c88ba6611470227deea5f06538d5ea2f7e7ad1dafc673340fa91e3ce0.cairo" + }, + "parent_location": [ + { + "end_col": 54, + "end_line": 7, + "input_file": { + "filename": "src/utils/execute.cairo" + }, + "parent_location": [ + { + "end_col": 49, + "end_line": 7, + "input_file": { + "filename": "autogen/starknet/arg_processor/9dacaab8f7a7d69909dd09ce33021ec07bdc209218193ce77523c8f4f86440ab.cairo" + }, + "parent_location": [ + { + "end_col": 66, + "end_line": 7, + "input_file": { + "filename": "src/utils/execute.cairo" + }, + "parent_location": [ + { + "end_col": 32, + "end_line": 12, + "input_file": { + "filename": "autogen/starknet/arg_processor/9dacaab8f7a7d69909dd09ce33021ec07bdc209218193ce77523c8f4f86440ab.cairo" + }, + "parent_location": [ + { + "end_col": 66, + "end_line": 7, + "input_file": { + "filename": "src/utils/execute.cairo" + }, + "start_col": 56, + "start_line": 7 + }, + "While handling return value 'arr'" + ], + "start_col": 9, + "start_line": 12 + }, + "While expanding the reference '__return_value_ptr_copy' in:" + ], + "start_col": 56, + "start_line": 7 + }, + "While handling return value 'arr'" + ], + "start_col": 31, + "start_line": 7 + }, + "While expanding the reference '__return_value_ptr' in:" + ], + "start_col": 41, + "start_line": 7 + }, + "While handling return value 'arr_len'" + ], + "start_col": 26, + "start_line": 2 + } + }, + "64": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.all_encode_return" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 22, + "end_line": 13, + "input_file": { + "filename": "autogen/starknet/arg_processor/9dacaab8f7a7d69909dd09ce33021ec07bdc209218193ce77523c8f4f86440ab.cairo" + }, + "parent_location": [ + { + "end_col": 66, + "end_line": 7, + "input_file": { + "filename": "src/utils/execute.cairo" + }, + "start_col": 56, + "start_line": 7 + }, + "While handling return value 'arr'" + ], + "start_col": 9, + "start_line": 13 + } + }, + "65": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.all_encode_return" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 26, + "end_line": 14, + "input_file": { + "filename": "autogen/starknet/arg_processor/9dacaab8f7a7d69909dd09ce33021ec07bdc209218193ce77523c8f4f86440ab.cairo" + }, + "parent_location": [ + { + "end_col": 66, + "end_line": 7, + "input_file": { + "filename": "src/utils/execute.cairo" + }, + "start_col": 56, + "start_line": 7 + }, + "While handling return value 'arr'" + ], + "start_col": 9, + "start_line": 14 + } + }, + "66": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.all_encode_return" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 31, + "end_line": 14, + "input_file": { + "filename": "autogen/starknet/arg_processor/9dacaab8f7a7d69909dd09ce33021ec07bdc209218193ce77523c8f4f86440ab.cairo" + }, + "parent_location": [ + { + "end_col": 66, + "end_line": 7, + "input_file": { + "filename": "src/utils/execute.cairo" + }, + "start_col": 56, + "start_line": 7 + }, + "While handling return value 'arr'" + ], + "start_col": 1, + "start_line": 11 + } + }, + "68": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.all_encode_return" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 22, + "end_line": 5, + "input_file": { + "filename": "autogen/starknet/arg_processor/9dacaab8f7a7d69909dd09ce33021ec07bdc209218193ce77523c8f4f86440ab.cairo" + }, + "parent_location": [ + { + "end_col": 66, + "end_line": 7, + "input_file": { + "filename": "src/utils/execute.cairo" + }, + "parent_location": [ + { + "end_col": 40, + "end_line": 10, + "input_file": { + "filename": "autogen/starknet/external/return/all/416ea443ea4b4be4f370a482600a73a72572faec4d8e2a618ebc634d614fa4e7.cairo" + }, + "parent_location": [ + { + "end_col": 9, + "end_line": 7, + "input_file": { + "filename": "src/utils/execute.cairo" + }, + "start_col": 6, + "start_line": 7 + }, + "While handling return value of" + ], + "start_col": 25, + "start_line": 10 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 56, + "start_line": 7 + }, + "While handling return value 'arr'" + ], + "start_col": 7, + "start_line": 5 + } + }, + "69": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.all_encode_return" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 63, + "end_line": 11, + "input_file": { + "filename": "autogen/starknet/external/return/all/416ea443ea4b4be4f370a482600a73a72572faec4d8e2a618ebc634d614fa4e7.cairo" + }, + "parent_location": [ + { + "end_col": 9, + "end_line": 7, + "input_file": { + "filename": "src/utils/execute.cairo" + }, + "start_col": 6, + "start_line": 7 + }, + "While handling return value of" + ], + "start_col": 18, + "start_line": 11 + } + }, + "70": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.all_encode_return" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 35, + "end_line": 5, + "input_file": { + "filename": "autogen/starknet/external/return/all/416ea443ea4b4be4f370a482600a73a72572faec4d8e2a618ebc634d614fa4e7.cairo" + }, + "parent_location": [ + { + "end_col": 9, + "end_line": 7, + "input_file": { + "filename": "src/utils/execute.cairo" + }, + "parent_location": [ + { + "end_col": 38, + "end_line": 12, + "input_file": { + "filename": "autogen/starknet/external/return/all/416ea443ea4b4be4f370a482600a73a72572faec4d8e2a618ebc634d614fa4e7.cairo" + }, + "parent_location": [ + { + "end_col": 9, + "end_line": 7, + "input_file": { + "filename": "src/utils/execute.cairo" + }, + "start_col": 6, + "start_line": 7 + }, + "While handling return value of" + ], + "start_col": 14, + "start_line": 12 + }, + "While expanding the reference '__return_value_ptr_start' in:" + ], + "start_col": 6, + "start_line": 7 + }, + "While handling return value of" + ], + "start_col": 11, + "start_line": 5 + } + }, + "71": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.all_encode_return" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 40, + "end_line": 12, + "input_file": { + "filename": "autogen/starknet/external/return/all/416ea443ea4b4be4f370a482600a73a72572faec4d8e2a618ebc634d614fa4e7.cairo" + }, + "parent_location": [ + { + "end_col": 9, + "end_line": 7, + "input_file": { + "filename": "src/utils/execute.cairo" + }, + "start_col": 6, + "start_line": 7 + }, + "While handling return value of" + ], + "start_col": 5, + "start_line": 9 + } + }, + "72": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.all" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 67, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/all/fd099223670ab5d428127810c2328d37c65c29951c7abc7cebaa651b40be0a6a.cairo" + }, + "parent_location": [ + { + "end_col": 9, + "end_line": 7, + "input_file": { + "filename": "src/utils/execute.cairo" + }, + "parent_location": [ + { + "end_col": 24, + "end_line": 2, + "input_file": { + "filename": "autogen/starknet/arg_processor/fea0fa4d5b8fa7ee6c308136c9e398c54fa29cc00c6b3467d383d54910b51adf.cairo" + }, + "parent_location": [ + { + "end_col": 35, + "end_line": 7, + "input_file": { + "filename": "src/utils/execute.cairo" + }, + "start_col": 25, + "start_line": 7 + }, + "While handling calldata argument 'arr'" + ], + "start_col": 9, + "start_line": 2 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 6, + "start_line": 7 + }, + "While constructing the external wrapper for:" + ], + "start_col": 23, + "start_line": 1 + } + }, + "73": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.all" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 46, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/arg_processor/7441d406a9dddc153e843ef4bae777d3135e9f94650aa19a4c12b346a202f55a.cairo" + }, + "parent_location": [ + { + "end_col": 23, + "end_line": 7, + "input_file": { + "filename": "src/utils/execute.cairo" + }, + "parent_location": [ + { + "end_col": 50, + "end_line": 2, + "input_file": { + "filename": "autogen/starknet/arg_processor/fea0fa4d5b8fa7ee6c308136c9e398c54fa29cc00c6b3467d383d54910b51adf.cairo" + }, + "parent_location": [ + { + "end_col": 35, + "end_line": 7, + "input_file": { + "filename": "src/utils/execute.cairo" + }, + "start_col": 25, + "start_line": 7 + }, + "While handling calldata argument 'arr'" + ], + "start_col": 28, + "start_line": 2 + }, + "While expanding the reference '__calldata_arg_arr_len' in:" + ], + "start_col": 10, + "start_line": 7 + }, + "While handling calldata argument 'arr_len'" + ], + "start_col": 30, + "start_line": 1 + } + }, + "74": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.all" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 51, + "end_line": 2, + "input_file": { + "filename": "autogen/starknet/arg_processor/fea0fa4d5b8fa7ee6c308136c9e398c54fa29cc00c6b3467d383d54910b51adf.cairo" + }, + "parent_location": [ + { + "end_col": 35, + "end_line": 7, + "input_file": { + "filename": "src/utils/execute.cairo" + }, + "start_col": 25, + "start_line": 7 + }, + "While handling calldata argument 'arr'" + ], + "start_col": 1, + "start_line": 2 + } + }, + "75": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.all" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 40, + "end_line": 2, + "input_file": { + "filename": "autogen/starknet/arg_processor/7441d406a9dddc153e843ef4bae777d3135e9f94650aa19a4c12b346a202f55a.cairo" + }, + "parent_location": [ + { + "end_col": 23, + "end_line": 7, + "input_file": { + "filename": "src/utils/execute.cairo" + }, + "parent_location": [ + { + "end_col": 40, + "end_line": 8, + "input_file": { + "filename": "autogen/starknet/arg_processor/fea0fa4d5b8fa7ee6c308136c9e398c54fa29cc00c6b3467d383d54910b51adf.cairo" + }, + "parent_location": [ + { + "end_col": 35, + "end_line": 7, + "input_file": { + "filename": "src/utils/execute.cairo" + }, + "start_col": 25, + "start_line": 7 + }, + "While handling calldata argument 'arr'" + ], + "start_col": 26, + "start_line": 8 + }, + "While expanding the reference '__calldata_ptr' in:" + ], + "start_col": 10, + "start_line": 7 + }, + "While handling calldata argument 'arr_len'" + ], + "start_col": 22, + "start_line": 2 + } + }, + "77": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.all" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 46, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/arg_processor/7441d406a9dddc153e843ef4bae777d3135e9f94650aa19a4c12b346a202f55a.cairo" + }, + "parent_location": [ + { + "end_col": 23, + "end_line": 7, + "input_file": { + "filename": "src/utils/execute.cairo" + }, + "parent_location": [ + { + "end_col": 65, + "end_line": 8, + "input_file": { + "filename": "autogen/starknet/arg_processor/fea0fa4d5b8fa7ee6c308136c9e398c54fa29cc00c6b3467d383d54910b51adf.cairo" + }, + "parent_location": [ + { + "end_col": 35, + "end_line": 7, + "input_file": { + "filename": "src/utils/execute.cairo" + }, + "start_col": 25, + "start_line": 7 + }, + "While handling calldata argument 'arr'" + ], + "start_col": 43, + "start_line": 8 + }, + "While expanding the reference '__calldata_arg_arr_len' in:" + ], + "start_col": 10, + "start_line": 7 + }, + "While handling calldata argument 'arr_len'" + ], + "start_col": 30, + "start_line": 1 + } + }, + "78": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.all" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 69, + "end_line": 8, + "input_file": { + "filename": "autogen/starknet/arg_processor/fea0fa4d5b8fa7ee6c308136c9e398c54fa29cc00c6b3467d383d54910b51adf.cairo" + }, + "parent_location": [ + { + "end_col": 35, + "end_line": 7, + "input_file": { + "filename": "src/utils/execute.cairo" + }, + "start_col": 25, + "start_line": 7 + }, + "While handling calldata argument 'arr'" + ], + "start_col": 26, + "start_line": 8 + } + }, + "79": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.all" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 58, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/arg_processor/01cba52f8515996bb9d7070bde81ff39281d096d7024a558efcba6e1fd2402cf.cairo" + }, + "parent_location": [ + { + "end_col": 9, + "end_line": 7, + "input_file": { + "filename": "src/utils/execute.cairo" + }, + "start_col": 6, + "start_line": 7 + }, + "While handling calldata of" + ], + "start_col": 1, + "start_line": 1 + } + }, + "80": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.all" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 46, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/arg_processor/7441d406a9dddc153e843ef4bae777d3135e9f94650aa19a4c12b346a202f55a.cairo" + }, + "parent_location": [ + { + "end_col": 23, + "end_line": 7, + "input_file": { + "filename": "src/utils/execute.cairo" + }, + "parent_location": [ + { + "end_col": 64, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/all/89ba067284d46fbe51a23c1257bffbcccb64e31022e5e287f90757bf52cf63a6.cairo" + }, + "parent_location": [ + { + "end_col": 9, + "end_line": 7, + "input_file": { + "filename": "src/utils/execute.cairo" + }, + "start_col": 6, + "start_line": 7 + }, + "While constructing the external wrapper for:" + ], + "start_col": 42, + "start_line": 1 + }, + "While expanding the reference '__calldata_arg_arr_len' in:" + ], + "start_col": 10, + "start_line": 7 + }, + "While handling calldata argument 'arr_len'" + ], + "start_col": 30, + "start_line": 1 + } + }, + "81": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.all" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 53, + "end_line": 5, + "input_file": { + "filename": "autogen/starknet/arg_processor/fea0fa4d5b8fa7ee6c308136c9e398c54fa29cc00c6b3467d383d54910b51adf.cairo" + }, + "parent_location": [ + { + "end_col": 35, + "end_line": 7, + "input_file": { + "filename": "src/utils/execute.cairo" + }, + "parent_location": [ + { + "end_col": 88, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/all/89ba067284d46fbe51a23c1257bffbcccb64e31022e5e287f90757bf52cf63a6.cairo" + }, + "parent_location": [ + { + "end_col": 9, + "end_line": 7, + "input_file": { + "filename": "src/utils/execute.cairo" + }, + "start_col": 6, + "start_line": 7 + }, + "While constructing the external wrapper for:" + ], + "start_col": 70, + "start_line": 1 + }, + "While expanding the reference '__calldata_arg_arr' in:" + ], + "start_col": 25, + "start_line": 7 + }, + "While handling calldata argument 'arr'" + ], + "start_col": 26, + "start_line": 5 + } + }, + "83": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.all" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 9, + "end_line": 7, + "input_file": { + "filename": "src/utils/execute.cairo" + }, + "start_col": 6, + "start_line": 7 + } + }, + "85": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.all" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 67, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/all/fd099223670ab5d428127810c2328d37c65c29951c7abc7cebaa651b40be0a6a.cairo" + }, + "parent_location": [ + { + "end_col": 9, + "end_line": 7, + "input_file": { + "filename": "src/utils/execute.cairo" + }, + "parent_location": [ + { + "end_col": 38, + "end_line": 3, + "input_file": { + "filename": "autogen/starknet/arg_processor/fea0fa4d5b8fa7ee6c308136c9e398c54fa29cc00c6b3467d383d54910b51adf.cairo" + }, + "parent_location": [ + { + "end_col": 35, + "end_line": 7, + "input_file": { + "filename": "src/utils/execute.cairo" + }, + "parent_location": [ + { + "end_col": 92, + "end_line": 2, + "input_file": { + "filename": "autogen/starknet/external/all/89ba067284d46fbe51a23c1257bffbcccb64e31022e5e287f90757bf52cf63a6.cairo" + }, + "parent_location": [ + { + "end_col": 9, + "end_line": 7, + "input_file": { + "filename": "src/utils/execute.cairo" + }, + "start_col": 6, + "start_line": 7 + }, + "While constructing the external wrapper for:" + ], + "start_col": 77, + "start_line": 2 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 25, + "start_line": 7 + }, + "While handling calldata argument 'arr'" + ], + "start_col": 23, + "start_line": 3 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 6, + "start_line": 7 + }, + "While constructing the external wrapper for:" + ], + "start_col": 23, + "start_line": 1 + } + }, + "86": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.all" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 14, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/all/89ba067284d46fbe51a23c1257bffbcccb64e31022e5e287f90757bf52cf63a6.cairo" + }, + "parent_location": [ + { + "end_col": 9, + "end_line": 7, + "input_file": { + "filename": "src/utils/execute.cairo" + }, + "parent_location": [ + { + "end_col": 75, + "end_line": 2, + "input_file": { + "filename": "autogen/starknet/external/all/89ba067284d46fbe51a23c1257bffbcccb64e31022e5e287f90757bf52cf63a6.cairo" + }, + "parent_location": [ + { + "end_col": 9, + "end_line": 7, + "input_file": { + "filename": "src/utils/execute.cairo" + }, + "start_col": 6, + "start_line": 7 + }, + "While constructing the external wrapper for:" + ], + "start_col": 66, + "start_line": 2 + }, + "While expanding the reference 'ret_value' in:" + ], + "start_col": 6, + "start_line": 7 + }, + "While constructing the external wrapper for:" + ], + "start_col": 5, + "start_line": 1 + } + }, + "87": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.all" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 14, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/all/89ba067284d46fbe51a23c1257bffbcccb64e31022e5e287f90757bf52cf63a6.cairo" + }, + "parent_location": [ + { + "end_col": 9, + "end_line": 7, + "input_file": { + "filename": "src/utils/execute.cairo" + }, + "parent_location": [ + { + "end_col": 75, + "end_line": 2, + "input_file": { + "filename": "autogen/starknet/external/all/89ba067284d46fbe51a23c1257bffbcccb64e31022e5e287f90757bf52cf63a6.cairo" + }, + "parent_location": [ + { + "end_col": 9, + "end_line": 7, + "input_file": { + "filename": "src/utils/execute.cairo" + }, + "start_col": 6, + "start_line": 7 + }, + "While constructing the external wrapper for:" + ], + "start_col": 66, + "start_line": 2 + }, + "While expanding the reference 'ret_value' in:" + ], + "start_col": 6, + "start_line": 7 + }, + "While constructing the external wrapper for:" + ], + "start_col": 5, + "start_line": 1 + } + }, + "88": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.all" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 42, + "end_line": 3, + "input_file": { + "filename": "autogen/starknet/arg_processor/fea0fa4d5b8fa7ee6c308136c9e398c54fa29cc00c6b3467d383d54910b51adf.cairo" + }, + "parent_location": [ + { + "end_col": 35, + "end_line": 7, + "input_file": { + "filename": "src/utils/execute.cairo" + }, + "parent_location": [ + { + "end_col": 92, + "end_line": 2, + "input_file": { + "filename": "autogen/starknet/external/all/89ba067284d46fbe51a23c1257bffbcccb64e31022e5e287f90757bf52cf63a6.cairo" + }, + "parent_location": [ + { + "end_col": 9, + "end_line": 7, + "input_file": { + "filename": "src/utils/execute.cairo" + }, + "start_col": 6, + "start_line": 7 + }, + "While constructing the external wrapper for:" + ], + "start_col": 77, + "start_line": 2 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 25, + "start_line": 7 + }, + "While handling calldata argument 'arr'" + ], + "start_col": 23, + "start_line": 3 + } + }, + "90": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.all" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 93, + "end_line": 2, + "input_file": { + "filename": "autogen/starknet/external/all/89ba067284d46fbe51a23c1257bffbcccb64e31022e5e287f90757bf52cf63a6.cairo" + }, + "parent_location": [ + { + "end_col": 9, + "end_line": 7, + "input_file": { + "filename": "src/utils/execute.cairo" + }, + "start_col": 6, + "start_line": 7 + }, + "While constructing the external wrapper for:" + ], + "start_col": 48, + "start_line": 2 + } + }, + "92": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.all" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 63, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/all/3f2c77ab4e9866f148094b3f3c2497496b7ce8700b8370e7f1bc10658a33d640.cairo" + }, + "parent_location": [ + { + "end_col": 9, + "end_line": 7, + "input_file": { + "filename": "src/utils/execute.cairo" + }, + "parent_location": [ + { + "end_col": 20, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/all/93099bea078b47105ec080392b498d5fa602cf51e6076f4584216f16f5b4c273.cairo" + }, + "parent_location": [ + { + "end_col": 9, + "end_line": 7, + "input_file": { + "filename": "src/utils/execute.cairo" + }, + "start_col": 6, + "start_line": 7 + }, + "While constructing the external wrapper for:" + ], + "start_col": 9, + "start_line": 1 + }, + "While expanding the reference 'syscall_ptr' in:" + ], + "start_col": 6, + "start_line": 7 + }, + "While constructing the external wrapper for:" + ], + "start_col": 19, + "start_line": 1 + } + }, + "93": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.all" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 21, + "end_line": 2, + "input_file": { + "filename": "autogen/starknet/external/all/89ba067284d46fbe51a23c1257bffbcccb64e31022e5e287f90757bf52cf63a6.cairo" + }, + "parent_location": [ + { + "end_col": 9, + "end_line": 7, + "input_file": { + "filename": "src/utils/execute.cairo" + }, + "parent_location": [ + { + "end_col": 36, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/all/93099bea078b47105ec080392b498d5fa602cf51e6076f4584216f16f5b4c273.cairo" + }, + "parent_location": [ + { + "end_col": 9, + "end_line": 7, + "input_file": { + "filename": "src/utils/execute.cairo" + }, + "start_col": 6, + "start_line": 7 + }, + "While constructing the external wrapper for:" + ], + "start_col": 21, + "start_line": 1 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 6, + "start_line": 7 + }, + "While constructing the external wrapper for:" + ], + "start_col": 6, + "start_line": 2 + } + }, + "94": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.all" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 35, + "end_line": 2, + "input_file": { + "filename": "autogen/starknet/external/all/89ba067284d46fbe51a23c1257bffbcccb64e31022e5e287f90757bf52cf63a6.cairo" + }, + "parent_location": [ + { + "end_col": 9, + "end_line": 7, + "input_file": { + "filename": "src/utils/execute.cairo" + }, + "parent_location": [ + { + "end_col": 49, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/all/93099bea078b47105ec080392b498d5fa602cf51e6076f4584216f16f5b4c273.cairo" + }, + "parent_location": [ + { + "end_col": 9, + "end_line": 7, + "input_file": { + "filename": "src/utils/execute.cairo" + }, + "start_col": 6, + "start_line": 7 + }, + "While constructing the external wrapper for:" + ], + "start_col": 37, + "start_line": 1 + }, + "While expanding the reference 'retdata_size' in:" + ], + "start_col": 6, + "start_line": 7 + }, + "While constructing the external wrapper for:" + ], + "start_col": 23, + "start_line": 2 + } + }, + "95": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.all" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 44, + "end_line": 2, + "input_file": { + "filename": "autogen/starknet/external/all/89ba067284d46fbe51a23c1257bffbcccb64e31022e5e287f90757bf52cf63a6.cairo" + }, + "parent_location": [ + { + "end_col": 9, + "end_line": 7, + "input_file": { + "filename": "src/utils/execute.cairo" + }, + "parent_location": [ + { + "end_col": 57, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/all/93099bea078b47105ec080392b498d5fa602cf51e6076f4584216f16f5b4c273.cairo" + }, + "parent_location": [ + { + "end_col": 9, + "end_line": 7, + "input_file": { + "filename": "src/utils/execute.cairo" + }, + "start_col": 6, + "start_line": 7 + }, + "While constructing the external wrapper for:" + ], + "start_col": 50, + "start_line": 1 + }, + "While expanding the reference 'retdata' in:" + ], + "start_col": 6, + "start_line": 7 + }, + "While constructing the external wrapper for:" + ], + "start_col": 37, + "start_line": 2 + } + }, + "96": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.all" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 59, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/all/93099bea078b47105ec080392b498d5fa602cf51e6076f4584216f16f5b4c273.cairo" + }, + "parent_location": [ + { + "end_col": 9, + "end_line": 7, + "input_file": { + "filename": "src/utils/execute.cairo" + }, + "start_col": 6, + "start_line": 7 + }, + "While constructing the external wrapper for:" + ], + "start_col": 1, + "start_line": 1 + } + } + } + }, "hints": { "3": [ { diff --git a/packages/starksheet-cairo/build/execute_abi.json b/packages/starksheet-cairo/build/execute_abi.json deleted file mode 100644 index 3ebca9fe..00000000 --- a/packages/starksheet-cairo/build/execute_abi.json +++ /dev/null @@ -1,27 +0,0 @@ -[ - { - "inputs": [ - { - "name": "arr_len", - "type": "felt" - }, - { - "name": "arr", - "type": "felt*" - } - ], - "name": "all", - "outputs": [ - { - "name": "arr_len", - "type": "felt" - }, - { - "name": "arr", - "type": "felt*" - } - ], - "stateMutability": "view", - "type": "function" - } -] diff --git a/packages/starksheet-cairo/build/math.json b/packages/starksheet-cairo/build/math.json index 8a1b6dd1..de01ea30 100644 --- a/packages/starksheet-cairo/build/math.json +++ b/packages/starksheet-cairo/build/math.json @@ -474,7 +474,8068 @@ "0x48127ffc7fff8000", "0x208b7fff7fff7ffe" ], - "debug_info": null, + "debug_info": { + "file_contents": { + "autogen/starknet/arg_processor/01cba52f8515996bb9d7070bde81ff39281d096d7024a558efcba6e1fd2402cf.cairo": "assert [cast(fp + (-4), felt*)] = __calldata_actual_size;\n", + "autogen/starknet/arg_processor/293368f3a0e12cfcf22314a31e13b9801e95a5b8b2b71822a2fbbdf5a01ea795.cairo": "assert [__return_value_ptr] = ret_value.res;\nlet __return_value_ptr = __return_value_ptr + 1;\n", + "autogen/starknet/arg_processor/4939ae560bdb24e16025ed1d1573d03742bf719fd4f0c0e5fee3c2d9a7686134.cairo": "let __calldata_arg_exp = [__calldata_ptr];\nlet __calldata_ptr = __calldata_ptr + 1;\n", + "autogen/starknet/arg_processor/7441d406a9dddc153e843ef4bae777d3135e9f94650aa19a4c12b346a202f55a.cairo": "let __calldata_arg_arr_len = [__calldata_ptr];\nlet __calldata_ptr = __calldata_ptr + 1;\n", + "autogen/starknet/arg_processor/85fad649bf7f135456d173552226a6477267725f1aebea2c7719da647e19c5f6.cairo": "let __calldata_arg_base = [__calldata_ptr];\nlet __calldata_ptr = __calldata_ptr + 1;\n", + "autogen/starknet/arg_processor/c31620b02d4d706f0542c989b2aadc01b0981d1f6a5933a8fe4937ace3d70d92.cairo": "let __calldata_actual_size = __calldata_ptr - cast([cast(fp + (-3), felt**)], felt*);\n", + "autogen/starknet/arg_processor/fea0fa4d5b8fa7ee6c308136c9e398c54fa29cc00c6b3467d383d54910b51adf.cairo": "// Check that the length is non-negative.\nassert [range_check_ptr] = __calldata_arg_arr_len;\nlet range_check_ptr = range_check_ptr + 1;\n// Create the reference.\nlet __calldata_arg_arr = cast(__calldata_ptr, felt*);\n// Use 'tempvar' instead of 'let' to avoid repeating this computation for the\n// following arguments.\ntempvar __calldata_ptr = __calldata_ptr + __calldata_arg_arr_len * 1;\n", + "autogen/starknet/external/div/3f2c77ab4e9866f148094b3f3c2497496b7ce8700b8370e7f1bc10658a33d640.cairo": "let syscall_ptr = [cast([cast(fp + (-5), felt**)] + 0, felt*)];\n", + "autogen/starknet/external/div/93099bea078b47105ec080392b498d5fa602cf51e6076f4584216f16f5b4c273.cairo": "return (syscall_ptr,range_check_ptr,retdata_size,retdata);\n", + "autogen/starknet/external/div/bfe1b38271338a63ef6042076dbbb3f22f12f4fc176aae7d723f95fbd138c4a4.cairo": "let ret_value = __wrapped_func{range_check_ptr=range_check_ptr}(arr_len=__calldata_arg_arr_len, arr=__calldata_arg_arr,);\nlet (range_check_ptr, retdata_size, retdata) = div_encode_return(ret_value, range_check_ptr);\n", + "autogen/starknet/external/div/fd099223670ab5d428127810c2328d37c65c29951c7abc7cebaa651b40be0a6a.cairo": "let range_check_ptr = [cast([cast(fp + (-5), felt**)] + 1, felt*)];\n", + "autogen/starknet/external/pow/3f2c77ab4e9866f148094b3f3c2497496b7ce8700b8370e7f1bc10658a33d640.cairo": "let syscall_ptr = [cast([cast(fp + (-5), felt**)] + 0, felt*)];\n", + "autogen/starknet/external/pow/93099bea078b47105ec080392b498d5fa602cf51e6076f4584216f16f5b4c273.cairo": "return (syscall_ptr,range_check_ptr,retdata_size,retdata);\n", + "autogen/starknet/external/pow/f09f5ed3abc6fbf830770837aa52b004bb2591cf40f6ecccefa42e8e0bcc85c2.cairo": "let ret_value = __wrapped_func{range_check_ptr=range_check_ptr}(base=__calldata_arg_base, exp=__calldata_arg_exp,);\nlet (range_check_ptr, retdata_size, retdata) = pow_encode_return(ret_value, range_check_ptr);\n", + "autogen/starknet/external/pow/fd099223670ab5d428127810c2328d37c65c29951c7abc7cebaa651b40be0a6a.cairo": "let range_check_ptr = [cast([cast(fp + (-5), felt**)] + 1, felt*)];\n", + "autogen/starknet/external/prod/3f2c77ab4e9866f148094b3f3c2497496b7ce8700b8370e7f1bc10658a33d640.cairo": "let syscall_ptr = [cast([cast(fp + (-5), felt**)] + 0, felt*)];\n", + "autogen/starknet/external/prod/93099bea078b47105ec080392b498d5fa602cf51e6076f4584216f16f5b4c273.cairo": "return (syscall_ptr,range_check_ptr,retdata_size,retdata);\n", + "autogen/starknet/external/prod/eb3529d693d1c3d05528614e52f001d1abd60a45747e2918bba36cceb2df824a.cairo": "let ret_value = __wrapped_func{}(arr_len=__calldata_arg_arr_len, arr=__calldata_arg_arr,);\nlet (range_check_ptr, retdata_size, retdata) = prod_encode_return(ret_value, range_check_ptr);\n", + "autogen/starknet/external/prod/fd099223670ab5d428127810c2328d37c65c29951c7abc7cebaa651b40be0a6a.cairo": "let range_check_ptr = [cast([cast(fp + (-5), felt**)] + 1, felt*)];\n", + "autogen/starknet/external/return/div/73094ee324ecd9a9a075757b1d41982131a0a18789cec6dfcba8030fda7a3307.cairo": "func div_encode_return(ret_value: (res: felt), range_check_ptr) -> (\n range_check_ptr: felt, data_len: felt, data: felt*) {\n %{ memory[ap] = segments.add() %}\n alloc_locals;\n local __return_value_ptr_start: felt*;\n let __return_value_ptr = __return_value_ptr_start;\n with range_check_ptr {\n }\n return (\n range_check_ptr=range_check_ptr,\n data_len=__return_value_ptr - __return_value_ptr_start,\n data=__return_value_ptr_start);\n}\n", + "autogen/starknet/external/return/pow/a76eb4a6ee5ad9d7978800a136a736d7f23e909556d3620925d8b0f2246f336d.cairo": "func pow_encode_return(ret_value: (res: felt), range_check_ptr) -> (\n range_check_ptr: felt, data_len: felt, data: felt*) {\n %{ memory[ap] = segments.add() %}\n alloc_locals;\n local __return_value_ptr_start: felt*;\n let __return_value_ptr = __return_value_ptr_start;\n with range_check_ptr {\n }\n return (\n range_check_ptr=range_check_ptr,\n data_len=__return_value_ptr - __return_value_ptr_start,\n data=__return_value_ptr_start);\n}\n", + "autogen/starknet/external/return/prod/aec5907d709edb2d196c3a75dc47135cf159bb79a5d667458c14ff102c5c1749.cairo": "func prod_encode_return(ret_value: (res: felt), range_check_ptr) -> (\n range_check_ptr: felt, data_len: felt, data: felt*) {\n %{ memory[ap] = segments.add() %}\n alloc_locals;\n local __return_value_ptr_start: felt*;\n let __return_value_ptr = __return_value_ptr_start;\n with range_check_ptr {\n }\n return (\n range_check_ptr=range_check_ptr,\n data_len=__return_value_ptr - __return_value_ptr_start,\n data=__return_value_ptr_start);\n}\n", + "autogen/starknet/external/return/sub/f0caf8ec7a40214b768d1febe7d36b9b851da014c637ad4c898d4fc6e0c7be79.cairo": "func sub_encode_return(ret_value: (res: felt), range_check_ptr) -> (\n range_check_ptr: felt, data_len: felt, data: felt*) {\n %{ memory[ap] = segments.add() %}\n alloc_locals;\n local __return_value_ptr_start: felt*;\n let __return_value_ptr = __return_value_ptr_start;\n with range_check_ptr {\n }\n return (\n range_check_ptr=range_check_ptr,\n data_len=__return_value_ptr - __return_value_ptr_start,\n data=__return_value_ptr_start);\n}\n", + "autogen/starknet/external/return/sum/faf05455aa366818f74c466c8c94987c24676514c5a9f7934f7b72228c21d810.cairo": "func sum_encode_return(ret_value: (res: felt), range_check_ptr) -> (\n range_check_ptr: felt, data_len: felt, data: felt*) {\n %{ memory[ap] = segments.add() %}\n alloc_locals;\n local __return_value_ptr_start: felt*;\n let __return_value_ptr = __return_value_ptr_start;\n with range_check_ptr {\n }\n return (\n range_check_ptr=range_check_ptr,\n data_len=__return_value_ptr - __return_value_ptr_start,\n data=__return_value_ptr_start);\n}\n", + "autogen/starknet/external/sub/3f2c77ab4e9866f148094b3f3c2497496b7ce8700b8370e7f1bc10658a33d640.cairo": "let syscall_ptr = [cast([cast(fp + (-5), felt**)] + 0, felt*)];\n", + "autogen/starknet/external/sub/93099bea078b47105ec080392b498d5fa602cf51e6076f4584216f16f5b4c273.cairo": "return (syscall_ptr,range_check_ptr,retdata_size,retdata);\n", + "autogen/starknet/external/sub/a49f9d6b25691b4ace0e3e73a0d33c62f2c75dda12a30f4c46963454ebdd630b.cairo": "let ret_value = __wrapped_func{}(arr_len=__calldata_arg_arr_len, arr=__calldata_arg_arr,);\nlet (range_check_ptr, retdata_size, retdata) = sub_encode_return(ret_value, range_check_ptr);\n", + "autogen/starknet/external/sub/fd099223670ab5d428127810c2328d37c65c29951c7abc7cebaa651b40be0a6a.cairo": "let range_check_ptr = [cast([cast(fp + (-5), felt**)] + 1, felt*)];\n", + "autogen/starknet/external/sum/3f2c77ab4e9866f148094b3f3c2497496b7ce8700b8370e7f1bc10658a33d640.cairo": "let syscall_ptr = [cast([cast(fp + (-5), felt**)] + 0, felt*)];\n", + "autogen/starknet/external/sum/9200521254c96a79bb547b478eae4d75a252cb747d7615078acccd332144c338.cairo": "let ret_value = __wrapped_func{}(arr_len=__calldata_arg_arr_len, arr=__calldata_arg_arr,);\nlet (range_check_ptr, retdata_size, retdata) = sum_encode_return(ret_value, range_check_ptr);\n", + "autogen/starknet/external/sum/93099bea078b47105ec080392b498d5fa602cf51e6076f4584216f16f5b4c273.cairo": "return (syscall_ptr,range_check_ptr,retdata_size,retdata);\n", + "autogen/starknet/external/sum/fd099223670ab5d428127810c2328d37c65c29951c7abc7cebaa651b40be0a6a.cairo": "let range_check_ptr = [cast([cast(fp + (-5), felt**)] + 1, felt*)];\n" + }, + "instruction_locations": { + "0": { + "accessible_scopes": [ + "starkware.cairo.lang.compiler.lib.registers", + "starkware.cairo.lang.compiler.lib.registers.get_fp_and_pc" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 73, + "end_line": 7, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/lang/compiler/lib/registers.cairo" + }, + "start_col": 5, + "start_line": 7 + } + }, + "1": { + "accessible_scopes": [ + "starkware.cairo.lang.compiler.lib.registers", + "starkware.cairo.lang.compiler.lib.registers.get_ap" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 43, + "end_line": 16, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/lang/compiler/lib/registers.cairo" + }, + "start_col": 28, + "start_line": 16 + } + }, + "3": { + "accessible_scopes": [ + "starkware.cairo.lang.compiler.lib.registers", + "starkware.cairo.lang.compiler.lib.registers.get_ap" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 30, + "end_line": 17, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/lang/compiler/lib/registers.cairo" + }, + "start_col": 20, + "start_line": 17 + } + }, + "5": { + "accessible_scopes": [ + "starkware.cairo.lang.compiler.lib.registers", + "starkware.cairo.lang.compiler.lib.registers.get_ap" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 32, + "end_line": 17, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/lang/compiler/lib/registers.cairo" + }, + "start_col": 5, + "start_line": 17 + } + }, + "6": { + "accessible_scopes": [ + "starkware.cairo.common.math", + "starkware.cairo.common.math.assert_nn" + ], + "flow_tracking_data": null, + "hints": [ + { + "location": { + "end_col": 7, + "end_line": 46, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/math.cairo" + }, + "start_col": 5, + "start_line": 42 + }, + "n_prefix_newlines": 1 + } + ], + "inst": { + "end_col": 26, + "end_line": 47, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/math.cairo" + }, + "start_col": 5, + "start_line": 47 + } + }, + "7": { + "accessible_scopes": [ + "starkware.cairo.common.math", + "starkware.cairo.common.math.assert_nn" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 46, + "end_line": 48, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/math.cairo" + }, + "parent_location": [ + { + "end_col": 31, + "end_line": 41, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/math.cairo" + }, + "parent_location": [ + { + "end_col": 15, + "end_line": 49, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/math.cairo" + }, + "start_col": 5, + "start_line": 49 + }, + "While trying to retrieve the implicit argument 'range_check_ptr' in:" + ], + "start_col": 16, + "start_line": 41 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 27, + "start_line": 48 + } + }, + "9": { + "accessible_scopes": [ + "starkware.cairo.common.math", + "starkware.cairo.common.math.assert_nn" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 15, + "end_line": 49, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/math.cairo" + }, + "start_col": 5, + "start_line": 49 + } + }, + "10": { + "accessible_scopes": [ + "starkware.cairo.common.math", + "starkware.cairo.common.math.assert_le" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 31, + "end_line": 53, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/math.cairo" + }, + "parent_location": [ + { + "end_col": 31, + "end_line": 41, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/math.cairo" + }, + "parent_location": [ + { + "end_col": 21, + "end_line": 54, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/math.cairo" + }, + "start_col": 5, + "start_line": 54 + }, + "While trying to retrieve the implicit argument 'range_check_ptr' in:" + ], + "start_col": 16, + "start_line": 41 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 16, + "start_line": 53 + } + }, + "11": { + "accessible_scopes": [ + "starkware.cairo.common.math", + "starkware.cairo.common.math.assert_le" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 20, + "end_line": 54, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/math.cairo" + }, + "start_col": 15, + "start_line": 54 + } + }, + "12": { + "accessible_scopes": [ + "starkware.cairo.common.math", + "starkware.cairo.common.math.assert_le" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 21, + "end_line": 54, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/math.cairo" + }, + "start_col": 5, + "start_line": 54 + } + }, + "14": { + "accessible_scopes": [ + "starkware.cairo.common.math", + "starkware.cairo.common.math.assert_le" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 15, + "end_line": 55, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/math.cairo" + }, + "start_col": 5, + "start_line": 55 + } + }, + "15": { + "accessible_scopes": [ + "starkware.cairo.common.math", + "starkware.cairo.common.math.signed_div_rem" + ], + "flow_tracking_data": null, + "hints": [ + { + "location": { + "end_col": 7, + "end_line": 347, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/math.cairo" + }, + "start_col": 5, + "start_line": 329 + }, + "n_prefix_newlines": 1 + } + ], + "inst": { + "end_col": 41, + "end_line": 327, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/math.cairo" + }, + "parent_location": [ + { + "end_col": 21, + "end_line": 348, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/math.cairo" + }, + "parent_location": [ + { + "end_col": 21, + "end_line": 349, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/math.cairo" + }, + "start_col": 20, + "start_line": 349 + }, + "While expanding the reference 'q' in:" + ], + "start_col": 13, + "start_line": 348 + }, + "While expanding the reference 'biased_q' in:" + ], + "start_col": 20, + "start_line": 327 + } + }, + "16": { + "accessible_scopes": [ + "starkware.cairo.common.math", + "starkware.cairo.common.math.signed_div_rem" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 29, + "end_line": 348, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/math.cairo" + }, + "parent_location": [ + { + "end_col": 21, + "end_line": 349, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/math.cairo" + }, + "start_col": 20, + "start_line": 349 + }, + "While expanding the reference 'q' in:" + ], + "start_col": 13, + "start_line": 348 + } + }, + "17": { + "accessible_scopes": [ + "starkware.cairo.common.math", + "starkware.cairo.common.math.signed_div_rem" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 27, + "end_line": 349, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/math.cairo" + }, + "start_col": 20, + "start_line": 349 + } + }, + "18": { + "accessible_scopes": [ + "starkware.cairo.common.math", + "starkware.cairo.common.math.signed_div_rem" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 30, + "end_line": 326, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/math.cairo" + }, + "parent_location": [ + { + "end_col": 31, + "end_line": 349, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/math.cairo" + }, + "start_col": 30, + "start_line": 349 + }, + "While expanding the reference 'r' in:" + ], + "start_col": 13, + "start_line": 326 + } + }, + "19": { + "accessible_scopes": [ + "starkware.cairo.common.math", + "starkware.cairo.common.math.signed_div_rem" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 32, + "end_line": 349, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/math.cairo" + }, + "start_col": 5, + "start_line": 349 + } + }, + "20": { + "accessible_scopes": [ + "starkware.cairo.common.math", + "starkware.cairo.common.math.signed_div_rem" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 46, + "end_line": 328, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/math.cairo" + }, + "parent_location": [ + { + "end_col": 31, + "end_line": 53, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/math.cairo" + }, + "parent_location": [ + { + "end_col": 26, + "end_line": 350, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/math.cairo" + }, + "start_col": 5, + "start_line": 350 + }, + "While trying to retrieve the implicit argument 'range_check_ptr' in:" + ], + "start_col": 16, + "start_line": 53 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 27, + "start_line": 328 + } + }, + "22": { + "accessible_scopes": [ + "starkware.cairo.common.math", + "starkware.cairo.common.math.signed_div_rem" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 30, + "end_line": 326, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/math.cairo" + }, + "parent_location": [ + { + "end_col": 16, + "end_line": 350, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/math.cairo" + }, + "start_col": 15, + "start_line": 350 + }, + "While expanding the reference 'r' in:" + ], + "start_col": 13, + "start_line": 326 + } + }, + "23": { + "accessible_scopes": [ + "starkware.cairo.common.math", + "starkware.cairo.common.math.signed_div_rem" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 25, + "end_line": 350, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/math.cairo" + }, + "start_col": 18, + "start_line": 350 + } + }, + "25": { + "accessible_scopes": [ + "starkware.cairo.common.math", + "starkware.cairo.common.math.signed_div_rem" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 26, + "end_line": 350, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/math.cairo" + }, + "start_col": 5, + "start_line": 350 + } + }, + "27": { + "accessible_scopes": [ + "starkware.cairo.common.math", + "starkware.cairo.common.math.signed_div_rem" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 26, + "end_line": 351, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/math.cairo" + }, + "start_col": 25, + "start_line": 351 + } + }, + "29": { + "accessible_scopes": [ + "starkware.cairo.common.math", + "starkware.cairo.common.math.signed_div_rem" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 34, + "end_line": 351, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/math.cairo" + }, + "start_col": 25, + "start_line": 351 + } + }, + "30": { + "accessible_scopes": [ + "starkware.cairo.common.math", + "starkware.cairo.common.math.signed_div_rem" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 31, + "end_line": 53, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/math.cairo" + }, + "parent_location": [ + { + "end_col": 26, + "end_line": 350, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/math.cairo" + }, + "parent_location": [ + { + "end_col": 31, + "end_line": 53, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/math.cairo" + }, + "parent_location": [ + { + "end_col": 39, + "end_line": 351, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/math.cairo" + }, + "start_col": 5, + "start_line": 351 + }, + "While trying to retrieve the implicit argument 'range_check_ptr' in:" + ], + "start_col": 16, + "start_line": 53 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 5, + "start_line": 350 + }, + "While trying to update the implicit return value 'range_check_ptr' in:" + ], + "start_col": 16, + "start_line": 53 + } + }, + "31": { + "accessible_scopes": [ + "starkware.cairo.common.math", + "starkware.cairo.common.math.signed_div_rem" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 41, + "end_line": 327, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/math.cairo" + }, + "parent_location": [ + { + "end_col": 23, + "end_line": 351, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/math.cairo" + }, + "start_col": 15, + "start_line": 351 + }, + "While expanding the reference 'biased_q' in:" + ], + "start_col": 20, + "start_line": 327 + } + }, + "32": { + "accessible_scopes": [ + "starkware.cairo.common.math", + "starkware.cairo.common.math.signed_div_rem" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 38, + "end_line": 351, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/math.cairo" + }, + "start_col": 25, + "start_line": 351 + } + }, + "34": { + "accessible_scopes": [ + "starkware.cairo.common.math", + "starkware.cairo.common.math.signed_div_rem" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 39, + "end_line": 351, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/math.cairo" + }, + "start_col": 5, + "start_line": 351 + } + }, + "36": { + "accessible_scopes": [ + "starkware.cairo.common.math", + "starkware.cairo.common.math.signed_div_rem" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 41, + "end_line": 327, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/math.cairo" + }, + "parent_location": [ + { + "end_col": 21, + "end_line": 348, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/math.cairo" + }, + "parent_location": [ + { + "end_col": 14, + "end_line": 352, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/math.cairo" + }, + "start_col": 13, + "start_line": 352 + }, + "While expanding the reference 'q' in:" + ], + "start_col": 13, + "start_line": 348 + }, + "While expanding the reference 'biased_q' in:" + ], + "start_col": 20, + "start_line": 327 + } + }, + "37": { + "accessible_scopes": [ + "starkware.cairo.common.math", + "starkware.cairo.common.math.signed_div_rem" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 31, + "end_line": 53, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/math.cairo" + }, + "parent_location": [ + { + "end_col": 39, + "end_line": 351, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/math.cairo" + }, + "parent_location": [ + { + "end_col": 36, + "end_line": 325, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/math.cairo" + }, + "parent_location": [ + { + "end_col": 19, + "end_line": 352, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/math.cairo" + }, + "start_col": 5, + "start_line": 352 + }, + "While trying to retrieve the implicit argument 'range_check_ptr' in:" + ], + "start_col": 21, + "start_line": 325 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 5, + "start_line": 351 + }, + "While trying to update the implicit return value 'range_check_ptr' in:" + ], + "start_col": 16, + "start_line": 53 + } + }, + "38": { + "accessible_scopes": [ + "starkware.cairo.common.math", + "starkware.cairo.common.math.signed_div_rem" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 29, + "end_line": 348, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/math.cairo" + }, + "parent_location": [ + { + "end_col": 14, + "end_line": 352, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/math.cairo" + }, + "start_col": 13, + "start_line": 352 + }, + "While expanding the reference 'q' in:" + ], + "start_col": 13, + "start_line": 348 + } + }, + "39": { + "accessible_scopes": [ + "starkware.cairo.common.math", + "starkware.cairo.common.math.signed_div_rem" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 30, + "end_line": 326, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/math.cairo" + }, + "parent_location": [ + { + "end_col": 17, + "end_line": 352, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/math.cairo" + }, + "start_col": 16, + "start_line": 352 + }, + "While expanding the reference 'r' in:" + ], + "start_col": 13, + "start_line": 326 + } + }, + "40": { + "accessible_scopes": [ + "starkware.cairo.common.math", + "starkware.cairo.common.math.signed_div_rem" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 19, + "end_line": 352, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/math.cairo" + }, + "start_col": 5, + "start_line": 352 + } + }, + "41": { + "accessible_scopes": [ + "starkware.cairo.common.pow", + "starkware.cairo.common.pow.pow" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 7, + "end_line": 15, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/pow.cairo" + }, + "start_col": 5, + "start_line": 15 + } + }, + "43": { + "accessible_scopes": [ + "starkware.cairo.common.pow", + "starkware.cairo.common.pow.pow" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 25, + "end_line": 5, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/pow.cairo" + }, + "parent_location": [ + { + "end_col": 25, + "end_line": 5, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/pow.cairo" + }, + "parent_location": [ + { + "end_col": 24, + "end_line": 16, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/pow.cairo" + }, + "start_col": 9, + "start_line": 16 + }, + "While trying to retrieve the implicit argument 'range_check_ptr' in:" + ], + "start_col": 10, + "start_line": 5 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 10, + "start_line": 5 + } + }, + "44": { + "accessible_scopes": [ + "starkware.cairo.common.pow", + "starkware.cairo.common.pow.pow" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 22, + "end_line": 16, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/pow.cairo" + }, + "start_col": 21, + "start_line": 16 + } + }, + "46": { + "accessible_scopes": [ + "starkware.cairo.common.pow", + "starkware.cairo.common.pow.pow" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 24, + "end_line": 16, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/pow.cairo" + }, + "start_col": 9, + "start_line": 16 + } + }, + "47": { + "accessible_scopes": [ + "starkware.cairo.common.pow", + "starkware.cairo.common.pow.pow" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 31, + "end_line": 20, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/pow.cairo" + }, + "start_col": 5, + "start_line": 20 + } + }, + "49": { + "accessible_scopes": [ + "starkware.cairo.common.pow", + "starkware.cairo.common.pow.pow" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 35, + "end_line": 21, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/pow.cairo" + }, + "start_col": 5, + "start_line": 21 + } + }, + "50": { + "accessible_scopes": [ + "starkware.cairo.common.pow", + "starkware.cairo.common.pow.pow" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 33, + "end_line": 22, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/pow.cairo" + }, + "start_col": 5, + "start_line": 22 + } + }, + "51": { + "accessible_scopes": [ + "starkware.cairo.common.pow", + "starkware.cairo.common.pow.pow" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 54, + "end_line": 27, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/pow.cairo" + }, + "start_col": 5, + "start_line": 27 + } + }, + "52": { + "accessible_scopes": [ + "starkware.cairo.common.pow", + "starkware.cairo.common.pow.pow" + ], + "flow_tracking_data": null, + "hints": [ + { + "location": { + "end_col": 57, + "end_line": 28, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/pow.cairo" + }, + "start_col": 5, + "start_line": 28 + }, + "n_prefix_newlines": 0 + } + ], + "inst": { + "end_col": 35, + "end_line": 29, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/pow.cairo" + }, + "start_col": 5, + "start_line": 29 + } + }, + "54": { + "accessible_scopes": [ + "starkware.cairo.common.pow", + "starkware.cairo.common.pow.pow" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 39, + "end_line": 32, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/pow.cairo" + }, + "start_col": 5, + "start_line": 32 + } + }, + "56": { + "accessible_scopes": [ + "starkware.cairo.common.pow", + "starkware.cairo.common.pow.pow" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 35, + "end_line": 33, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/pow.cairo" + }, + "start_col": 5, + "start_line": 33 + } + }, + "57": { + "accessible_scopes": [ + "starkware.cairo.common.pow", + "starkware.cairo.common.pow.pow" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 19, + "end_line": 36, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/pow.cairo" + }, + "start_col": 5, + "start_line": 36 + } + }, + "59": { + "accessible_scopes": [ + "starkware.cairo.common.pow", + "starkware.cairo.common.pow.pow" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 35, + "end_line": 39, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/pow.cairo" + }, + "start_col": 5, + "start_line": 39 + } + }, + "61": { + "accessible_scopes": [ + "starkware.cairo.common.pow", + "starkware.cairo.common.pow.pow" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 36, + "end_line": 40, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/pow.cairo" + }, + "start_col": 5, + "start_line": 40 + } + }, + "63": { + "accessible_scopes": [ + "starkware.cairo.common.pow", + "starkware.cairo.common.pow.pow" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 52, + "end_line": 41, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/pow.cairo" + }, + "start_col": 5, + "start_line": 41 + } + }, + "64": { + "accessible_scopes": [ + "starkware.cairo.common.pow", + "starkware.cairo.common.pow.pow" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 36, + "end_line": 43, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/pow.cairo" + }, + "start_col": 5, + "start_line": 43 + } + }, + "66": { + "accessible_scopes": [ + "starkware.cairo.common.pow", + "starkware.cairo.common.pow.pow" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 28, + "end_line": 46, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/pow.cairo" + }, + "start_col": 20, + "start_line": 46 + } + }, + "68": { + "accessible_scopes": [ + "starkware.cairo.common.pow", + "starkware.cairo.common.pow.pow" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 38, + "end_line": 47, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/pow.cairo" + }, + "start_col": 23, + "start_line": 47 + } + }, + "70": { + "accessible_scopes": [ + "starkware.cairo.common.pow", + "starkware.cairo.common.pow.pow" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 54, + "end_line": 48, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/pow.cairo" + }, + "parent_location": [ + { + "end_col": 22, + "end_line": 49, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/pow.cairo" + }, + "start_col": 15, + "start_line": 49 + }, + "While expanding the reference 'n_steps' in:" + ], + "start_col": 29, + "start_line": 48 + } + }, + "72": { + "accessible_scopes": [ + "starkware.cairo.common.pow", + "starkware.cairo.common.pow.pow" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 54, + "end_line": 48, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/pow.cairo" + }, + "parent_location": [ + { + "end_col": 22, + "end_line": 49, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/pow.cairo" + }, + "start_col": 15, + "start_line": 49 + }, + "While expanding the reference 'n_steps' in:" + ], + "start_col": 20, + "start_line": 48 + } + }, + "73": { + "accessible_scopes": [ + "starkware.cairo.common.pow", + "starkware.cairo.common.pow.pow" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 73, + "end_line": 48, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/pow.cairo" + }, + "parent_location": [ + { + "end_col": 22, + "end_line": 49, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/pow.cairo" + }, + "start_col": 15, + "start_line": 49 + }, + "While expanding the reference 'n_steps' in:" + ], + "start_col": 19, + "start_line": 48 + } + }, + "75": { + "accessible_scopes": [ + "starkware.cairo.common.pow", + "starkware.cairo.common.pow.pow" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 25, + "end_line": 5, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/pow.cairo" + }, + "parent_location": [ + { + "end_col": 31, + "end_line": 53, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/math.cairo" + }, + "parent_location": [ + { + "end_col": 28, + "end_line": 49, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/pow.cairo" + }, + "start_col": 5, + "start_line": 49 + }, + "While trying to retrieve the implicit argument 'range_check_ptr' in:" + ], + "start_col": 16, + "start_line": 53 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 10, + "start_line": 5 + } + }, + "76": { + "accessible_scopes": [ + "starkware.cairo.common.pow", + "starkware.cairo.common.pow.pow" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 77, + "end_line": 48, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/pow.cairo" + }, + "parent_location": [ + { + "end_col": 22, + "end_line": 49, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/pow.cairo" + }, + "start_col": 15, + "start_line": 49 + }, + "While expanding the reference 'n_steps' in:" + ], + "start_col": 19, + "start_line": 48 + } + }, + "78": { + "accessible_scopes": [ + "starkware.cairo.common.pow", + "starkware.cairo.common.pow.pow" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 27, + "end_line": 49, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/pow.cairo" + }, + "start_col": 24, + "start_line": 49 + } + }, + "80": { + "accessible_scopes": [ + "starkware.cairo.common.pow", + "starkware.cairo.common.pow.pow" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 28, + "end_line": 49, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/pow.cairo" + }, + "start_col": 5, + "start_line": 49 + } + }, + "82": { + "accessible_scopes": [ + "starkware.cairo.common.pow", + "starkware.cairo.common.pow.pow" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 25, + "end_line": 50, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/pow.cairo" + }, + "start_col": 17, + "start_line": 50 + } + }, + "83": { + "accessible_scopes": [ + "starkware.cairo.common.pow", + "starkware.cairo.common.pow.pow" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 27, + "end_line": 50, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/pow.cairo" + }, + "start_col": 5, + "start_line": 50 + } + }, + "84": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.sum" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 7, + "end_line": 9, + "input_file": { + "filename": "src/utils/math.cairo" + }, + "start_col": 5, + "start_line": 9 + } + }, + "86": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.sum" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 18, + "end_line": 10, + "input_file": { + "filename": "src/utils/math.cairo" + }, + "start_col": 17, + "start_line": 10 + } + }, + "88": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.sum" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 21, + "end_line": 10, + "input_file": { + "filename": "src/utils/math.cairo" + }, + "start_col": 9, + "start_line": 10 + } + }, + "89": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.sum" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 48, + "end_line": 13, + "input_file": { + "filename": "src/utils/math.cairo" + }, + "start_col": 37, + "start_line": 13 + } + }, + "91": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.sum" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 61, + "end_line": 13, + "input_file": { + "filename": "src/utils/math.cairo" + }, + "start_col": 54, + "start_line": 13 + } + }, + "93": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.sum" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 62, + "end_line": 13, + "input_file": { + "filename": "src/utils/math.cairo" + }, + "start_col": 25, + "start_line": 13 + } + }, + "95": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.sum" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 18, + "end_line": 14, + "input_file": { + "filename": "src/utils/math.cairo" + }, + "start_col": 13, + "start_line": 14 + } + }, + "96": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.sum" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 32, + "end_line": 14, + "input_file": { + "filename": "src/utils/math.cairo" + }, + "start_col": 13, + "start_line": 14 + } + }, + "97": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.sum" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 35, + "end_line": 14, + "input_file": { + "filename": "src/utils/math.cairo" + }, + "start_col": 5, + "start_line": 14 + } + }, + "98": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.sum_encode_return" + ], + "flow_tracking_data": null, + "hints": [ + { + "location": { + "end_col": 38, + "end_line": 3, + "input_file": { + "filename": "autogen/starknet/external/return/sum/faf05455aa366818f74c466c8c94987c24676514c5a9f7934f7b72228c21d810.cairo" + }, + "parent_location": [ + { + "end_col": 9, + "end_line": 8, + "input_file": { + "filename": "src/utils/math.cairo" + }, + "start_col": 6, + "start_line": 8 + }, + "While handling return value of" + ], + "start_col": 5, + "start_line": 3 + }, + "n_prefix_newlines": 0 + } + ], + "inst": { + "end_col": 18, + "end_line": 4, + "input_file": { + "filename": "autogen/starknet/external/return/sum/faf05455aa366818f74c466c8c94987c24676514c5a9f7934f7b72228c21d810.cairo" + }, + "parent_location": [ + { + "end_col": 9, + "end_line": 8, + "input_file": { + "filename": "src/utils/math.cairo" + }, + "start_col": 6, + "start_line": 8 + }, + "While handling return value of" + ], + "start_col": 5, + "start_line": 4 + } + }, + "100": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.sum_encode_return" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 45, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/arg_processor/293368f3a0e12cfcf22314a31e13b9801e95a5b8b2b71822a2fbbdf5a01ea795.cairo" + }, + "parent_location": [ + { + "end_col": 50, + "end_line": 8, + "input_file": { + "filename": "src/utils/math.cairo" + }, + "start_col": 41, + "start_line": 8 + }, + "While handling return value 'res'" + ], + "start_col": 1, + "start_line": 1 + } + }, + "101": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.sum_encode_return" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 48, + "end_line": 2, + "input_file": { + "filename": "autogen/starknet/arg_processor/293368f3a0e12cfcf22314a31e13b9801e95a5b8b2b71822a2fbbdf5a01ea795.cairo" + }, + "parent_location": [ + { + "end_col": 50, + "end_line": 8, + "input_file": { + "filename": "src/utils/math.cairo" + }, + "parent_location": [ + { + "end_col": 36, + "end_line": 11, + "input_file": { + "filename": "autogen/starknet/external/return/sum/faf05455aa366818f74c466c8c94987c24676514c5a9f7934f7b72228c21d810.cairo" + }, + "parent_location": [ + { + "end_col": 9, + "end_line": 8, + "input_file": { + "filename": "src/utils/math.cairo" + }, + "start_col": 6, + "start_line": 8 + }, + "While handling return value of" + ], + "start_col": 18, + "start_line": 11 + }, + "While expanding the reference '__return_value_ptr' in:" + ], + "start_col": 41, + "start_line": 8 + }, + "While handling return value 'res'" + ], + "start_col": 26, + "start_line": 2 + } + }, + "103": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.sum_encode_return" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 63, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/return/sum/faf05455aa366818f74c466c8c94987c24676514c5a9f7934f7b72228c21d810.cairo" + }, + "parent_location": [ + { + "end_col": 9, + "end_line": 8, + "input_file": { + "filename": "src/utils/math.cairo" + }, + "parent_location": [ + { + "end_col": 40, + "end_line": 10, + "input_file": { + "filename": "autogen/starknet/external/return/sum/faf05455aa366818f74c466c8c94987c24676514c5a9f7934f7b72228c21d810.cairo" + }, + "parent_location": [ + { + "end_col": 9, + "end_line": 8, + "input_file": { + "filename": "src/utils/math.cairo" + }, + "start_col": 6, + "start_line": 8 + }, + "While handling return value of" + ], + "start_col": 25, + "start_line": 10 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 6, + "start_line": 8 + }, + "While handling return value of" + ], + "start_col": 48, + "start_line": 1 + } + }, + "104": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.sum_encode_return" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 63, + "end_line": 11, + "input_file": { + "filename": "autogen/starknet/external/return/sum/faf05455aa366818f74c466c8c94987c24676514c5a9f7934f7b72228c21d810.cairo" + }, + "parent_location": [ + { + "end_col": 9, + "end_line": 8, + "input_file": { + "filename": "src/utils/math.cairo" + }, + "start_col": 6, + "start_line": 8 + }, + "While handling return value of" + ], + "start_col": 18, + "start_line": 11 + } + }, + "105": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.sum_encode_return" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 35, + "end_line": 5, + "input_file": { + "filename": "autogen/starknet/external/return/sum/faf05455aa366818f74c466c8c94987c24676514c5a9f7934f7b72228c21d810.cairo" + }, + "parent_location": [ + { + "end_col": 9, + "end_line": 8, + "input_file": { + "filename": "src/utils/math.cairo" + }, + "parent_location": [ + { + "end_col": 38, + "end_line": 12, + "input_file": { + "filename": "autogen/starknet/external/return/sum/faf05455aa366818f74c466c8c94987c24676514c5a9f7934f7b72228c21d810.cairo" + }, + "parent_location": [ + { + "end_col": 9, + "end_line": 8, + "input_file": { + "filename": "src/utils/math.cairo" + }, + "start_col": 6, + "start_line": 8 + }, + "While handling return value of" + ], + "start_col": 14, + "start_line": 12 + }, + "While expanding the reference '__return_value_ptr_start' in:" + ], + "start_col": 6, + "start_line": 8 + }, + "While handling return value of" + ], + "start_col": 11, + "start_line": 5 + } + }, + "106": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.sum_encode_return" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 40, + "end_line": 12, + "input_file": { + "filename": "autogen/starknet/external/return/sum/faf05455aa366818f74c466c8c94987c24676514c5a9f7934f7b72228c21d810.cairo" + }, + "parent_location": [ + { + "end_col": 9, + "end_line": 8, + "input_file": { + "filename": "src/utils/math.cairo" + }, + "start_col": 6, + "start_line": 8 + }, + "While handling return value of" + ], + "start_col": 5, + "start_line": 9 + } + }, + "107": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.sum" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 67, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/sum/fd099223670ab5d428127810c2328d37c65c29951c7abc7cebaa651b40be0a6a.cairo" + }, + "parent_location": [ + { + "end_col": 9, + "end_line": 8, + "input_file": { + "filename": "src/utils/math.cairo" + }, + "parent_location": [ + { + "end_col": 24, + "end_line": 2, + "input_file": { + "filename": "autogen/starknet/arg_processor/fea0fa4d5b8fa7ee6c308136c9e398c54fa29cc00c6b3467d383d54910b51adf.cairo" + }, + "parent_location": [ + { + "end_col": 35, + "end_line": 8, + "input_file": { + "filename": "src/utils/math.cairo" + }, + "start_col": 25, + "start_line": 8 + }, + "While handling calldata argument 'arr'" + ], + "start_col": 9, + "start_line": 2 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 6, + "start_line": 8 + }, + "While constructing the external wrapper for:" + ], + "start_col": 23, + "start_line": 1 + } + }, + "108": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.sum" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 46, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/arg_processor/7441d406a9dddc153e843ef4bae777d3135e9f94650aa19a4c12b346a202f55a.cairo" + }, + "parent_location": [ + { + "end_col": 23, + "end_line": 8, + "input_file": { + "filename": "src/utils/math.cairo" + }, + "parent_location": [ + { + "end_col": 50, + "end_line": 2, + "input_file": { + "filename": "autogen/starknet/arg_processor/fea0fa4d5b8fa7ee6c308136c9e398c54fa29cc00c6b3467d383d54910b51adf.cairo" + }, + "parent_location": [ + { + "end_col": 35, + "end_line": 8, + "input_file": { + "filename": "src/utils/math.cairo" + }, + "start_col": 25, + "start_line": 8 + }, + "While handling calldata argument 'arr'" + ], + "start_col": 28, + "start_line": 2 + }, + "While expanding the reference '__calldata_arg_arr_len' in:" + ], + "start_col": 10, + "start_line": 8 + }, + "While handling calldata argument 'arr_len'" + ], + "start_col": 30, + "start_line": 1 + } + }, + "109": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.sum" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 51, + "end_line": 2, + "input_file": { + "filename": "autogen/starknet/arg_processor/fea0fa4d5b8fa7ee6c308136c9e398c54fa29cc00c6b3467d383d54910b51adf.cairo" + }, + "parent_location": [ + { + "end_col": 35, + "end_line": 8, + "input_file": { + "filename": "src/utils/math.cairo" + }, + "start_col": 25, + "start_line": 8 + }, + "While handling calldata argument 'arr'" + ], + "start_col": 1, + "start_line": 2 + } + }, + "110": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.sum" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 40, + "end_line": 2, + "input_file": { + "filename": "autogen/starknet/arg_processor/7441d406a9dddc153e843ef4bae777d3135e9f94650aa19a4c12b346a202f55a.cairo" + }, + "parent_location": [ + { + "end_col": 23, + "end_line": 8, + "input_file": { + "filename": "src/utils/math.cairo" + }, + "parent_location": [ + { + "end_col": 40, + "end_line": 8, + "input_file": { + "filename": "autogen/starknet/arg_processor/fea0fa4d5b8fa7ee6c308136c9e398c54fa29cc00c6b3467d383d54910b51adf.cairo" + }, + "parent_location": [ + { + "end_col": 35, + "end_line": 8, + "input_file": { + "filename": "src/utils/math.cairo" + }, + "start_col": 25, + "start_line": 8 + }, + "While handling calldata argument 'arr'" + ], + "start_col": 26, + "start_line": 8 + }, + "While expanding the reference '__calldata_ptr' in:" + ], + "start_col": 10, + "start_line": 8 + }, + "While handling calldata argument 'arr_len'" + ], + "start_col": 22, + "start_line": 2 + } + }, + "112": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.sum" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 46, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/arg_processor/7441d406a9dddc153e843ef4bae777d3135e9f94650aa19a4c12b346a202f55a.cairo" + }, + "parent_location": [ + { + "end_col": 23, + "end_line": 8, + "input_file": { + "filename": "src/utils/math.cairo" + }, + "parent_location": [ + { + "end_col": 65, + "end_line": 8, + "input_file": { + "filename": "autogen/starknet/arg_processor/fea0fa4d5b8fa7ee6c308136c9e398c54fa29cc00c6b3467d383d54910b51adf.cairo" + }, + "parent_location": [ + { + "end_col": 35, + "end_line": 8, + "input_file": { + "filename": "src/utils/math.cairo" + }, + "start_col": 25, + "start_line": 8 + }, + "While handling calldata argument 'arr'" + ], + "start_col": 43, + "start_line": 8 + }, + "While expanding the reference '__calldata_arg_arr_len' in:" + ], + "start_col": 10, + "start_line": 8 + }, + "While handling calldata argument 'arr_len'" + ], + "start_col": 30, + "start_line": 1 + } + }, + "113": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.sum" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 69, + "end_line": 8, + "input_file": { + "filename": "autogen/starknet/arg_processor/fea0fa4d5b8fa7ee6c308136c9e398c54fa29cc00c6b3467d383d54910b51adf.cairo" + }, + "parent_location": [ + { + "end_col": 35, + "end_line": 8, + "input_file": { + "filename": "src/utils/math.cairo" + }, + "start_col": 25, + "start_line": 8 + }, + "While handling calldata argument 'arr'" + ], + "start_col": 26, + "start_line": 8 + } + }, + "114": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.sum" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 58, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/arg_processor/01cba52f8515996bb9d7070bde81ff39281d096d7024a558efcba6e1fd2402cf.cairo" + }, + "parent_location": [ + { + "end_col": 9, + "end_line": 8, + "input_file": { + "filename": "src/utils/math.cairo" + }, + "start_col": 6, + "start_line": 8 + }, + "While handling calldata of" + ], + "start_col": 1, + "start_line": 1 + } + }, + "115": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.sum" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 46, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/arg_processor/7441d406a9dddc153e843ef4bae777d3135e9f94650aa19a4c12b346a202f55a.cairo" + }, + "parent_location": [ + { + "end_col": 23, + "end_line": 8, + "input_file": { + "filename": "src/utils/math.cairo" + }, + "parent_location": [ + { + "end_col": 64, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/sum/9200521254c96a79bb547b478eae4d75a252cb747d7615078acccd332144c338.cairo" + }, + "parent_location": [ + { + "end_col": 9, + "end_line": 8, + "input_file": { + "filename": "src/utils/math.cairo" + }, + "start_col": 6, + "start_line": 8 + }, + "While constructing the external wrapper for:" + ], + "start_col": 42, + "start_line": 1 + }, + "While expanding the reference '__calldata_arg_arr_len' in:" + ], + "start_col": 10, + "start_line": 8 + }, + "While handling calldata argument 'arr_len'" + ], + "start_col": 30, + "start_line": 1 + } + }, + "116": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.sum" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 53, + "end_line": 5, + "input_file": { + "filename": "autogen/starknet/arg_processor/fea0fa4d5b8fa7ee6c308136c9e398c54fa29cc00c6b3467d383d54910b51adf.cairo" + }, + "parent_location": [ + { + "end_col": 35, + "end_line": 8, + "input_file": { + "filename": "src/utils/math.cairo" + }, + "parent_location": [ + { + "end_col": 88, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/sum/9200521254c96a79bb547b478eae4d75a252cb747d7615078acccd332144c338.cairo" + }, + "parent_location": [ + { + "end_col": 9, + "end_line": 8, + "input_file": { + "filename": "src/utils/math.cairo" + }, + "start_col": 6, + "start_line": 8 + }, + "While constructing the external wrapper for:" + ], + "start_col": 70, + "start_line": 1 + }, + "While expanding the reference '__calldata_arg_arr' in:" + ], + "start_col": 25, + "start_line": 8 + }, + "While handling calldata argument 'arr'" + ], + "start_col": 26, + "start_line": 5 + } + }, + "118": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.sum" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 9, + "end_line": 8, + "input_file": { + "filename": "src/utils/math.cairo" + }, + "start_col": 6, + "start_line": 8 + } + }, + "120": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.sum" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 67, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/sum/fd099223670ab5d428127810c2328d37c65c29951c7abc7cebaa651b40be0a6a.cairo" + }, + "parent_location": [ + { + "end_col": 9, + "end_line": 8, + "input_file": { + "filename": "src/utils/math.cairo" + }, + "parent_location": [ + { + "end_col": 38, + "end_line": 3, + "input_file": { + "filename": "autogen/starknet/arg_processor/fea0fa4d5b8fa7ee6c308136c9e398c54fa29cc00c6b3467d383d54910b51adf.cairo" + }, + "parent_location": [ + { + "end_col": 35, + "end_line": 8, + "input_file": { + "filename": "src/utils/math.cairo" + }, + "parent_location": [ + { + "end_col": 92, + "end_line": 2, + "input_file": { + "filename": "autogen/starknet/external/sum/9200521254c96a79bb547b478eae4d75a252cb747d7615078acccd332144c338.cairo" + }, + "parent_location": [ + { + "end_col": 9, + "end_line": 8, + "input_file": { + "filename": "src/utils/math.cairo" + }, + "start_col": 6, + "start_line": 8 + }, + "While constructing the external wrapper for:" + ], + "start_col": 77, + "start_line": 2 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 25, + "start_line": 8 + }, + "While handling calldata argument 'arr'" + ], + "start_col": 23, + "start_line": 3 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 6, + "start_line": 8 + }, + "While constructing the external wrapper for:" + ], + "start_col": 23, + "start_line": 1 + } + }, + "121": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.sum" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 14, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/sum/9200521254c96a79bb547b478eae4d75a252cb747d7615078acccd332144c338.cairo" + }, + "parent_location": [ + { + "end_col": 9, + "end_line": 8, + "input_file": { + "filename": "src/utils/math.cairo" + }, + "parent_location": [ + { + "end_col": 75, + "end_line": 2, + "input_file": { + "filename": "autogen/starknet/external/sum/9200521254c96a79bb547b478eae4d75a252cb747d7615078acccd332144c338.cairo" + }, + "parent_location": [ + { + "end_col": 9, + "end_line": 8, + "input_file": { + "filename": "src/utils/math.cairo" + }, + "start_col": 6, + "start_line": 8 + }, + "While constructing the external wrapper for:" + ], + "start_col": 66, + "start_line": 2 + }, + "While expanding the reference 'ret_value' in:" + ], + "start_col": 6, + "start_line": 8 + }, + "While constructing the external wrapper for:" + ], + "start_col": 5, + "start_line": 1 + } + }, + "122": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.sum" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 42, + "end_line": 3, + "input_file": { + "filename": "autogen/starknet/arg_processor/fea0fa4d5b8fa7ee6c308136c9e398c54fa29cc00c6b3467d383d54910b51adf.cairo" + }, + "parent_location": [ + { + "end_col": 35, + "end_line": 8, + "input_file": { + "filename": "src/utils/math.cairo" + }, + "parent_location": [ + { + "end_col": 92, + "end_line": 2, + "input_file": { + "filename": "autogen/starknet/external/sum/9200521254c96a79bb547b478eae4d75a252cb747d7615078acccd332144c338.cairo" + }, + "parent_location": [ + { + "end_col": 9, + "end_line": 8, + "input_file": { + "filename": "src/utils/math.cairo" + }, + "start_col": 6, + "start_line": 8 + }, + "While constructing the external wrapper for:" + ], + "start_col": 77, + "start_line": 2 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 25, + "start_line": 8 + }, + "While handling calldata argument 'arr'" + ], + "start_col": 23, + "start_line": 3 + } + }, + "124": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.sum" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 93, + "end_line": 2, + "input_file": { + "filename": "autogen/starknet/external/sum/9200521254c96a79bb547b478eae4d75a252cb747d7615078acccd332144c338.cairo" + }, + "parent_location": [ + { + "end_col": 9, + "end_line": 8, + "input_file": { + "filename": "src/utils/math.cairo" + }, + "start_col": 6, + "start_line": 8 + }, + "While constructing the external wrapper for:" + ], + "start_col": 48, + "start_line": 2 + } + }, + "126": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.sum" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 63, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/sum/3f2c77ab4e9866f148094b3f3c2497496b7ce8700b8370e7f1bc10658a33d640.cairo" + }, + "parent_location": [ + { + "end_col": 9, + "end_line": 8, + "input_file": { + "filename": "src/utils/math.cairo" + }, + "parent_location": [ + { + "end_col": 20, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/sum/93099bea078b47105ec080392b498d5fa602cf51e6076f4584216f16f5b4c273.cairo" + }, + "parent_location": [ + { + "end_col": 9, + "end_line": 8, + "input_file": { + "filename": "src/utils/math.cairo" + }, + "start_col": 6, + "start_line": 8 + }, + "While constructing the external wrapper for:" + ], + "start_col": 9, + "start_line": 1 + }, + "While expanding the reference 'syscall_ptr' in:" + ], + "start_col": 6, + "start_line": 8 + }, + "While constructing the external wrapper for:" + ], + "start_col": 19, + "start_line": 1 + } + }, + "127": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.sum" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 21, + "end_line": 2, + "input_file": { + "filename": "autogen/starknet/external/sum/9200521254c96a79bb547b478eae4d75a252cb747d7615078acccd332144c338.cairo" + }, + "parent_location": [ + { + "end_col": 9, + "end_line": 8, + "input_file": { + "filename": "src/utils/math.cairo" + }, + "parent_location": [ + { + "end_col": 36, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/sum/93099bea078b47105ec080392b498d5fa602cf51e6076f4584216f16f5b4c273.cairo" + }, + "parent_location": [ + { + "end_col": 9, + "end_line": 8, + "input_file": { + "filename": "src/utils/math.cairo" + }, + "start_col": 6, + "start_line": 8 + }, + "While constructing the external wrapper for:" + ], + "start_col": 21, + "start_line": 1 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 6, + "start_line": 8 + }, + "While constructing the external wrapper for:" + ], + "start_col": 6, + "start_line": 2 + } + }, + "128": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.sum" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 35, + "end_line": 2, + "input_file": { + "filename": "autogen/starknet/external/sum/9200521254c96a79bb547b478eae4d75a252cb747d7615078acccd332144c338.cairo" + }, + "parent_location": [ + { + "end_col": 9, + "end_line": 8, + "input_file": { + "filename": "src/utils/math.cairo" + }, + "parent_location": [ + { + "end_col": 49, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/sum/93099bea078b47105ec080392b498d5fa602cf51e6076f4584216f16f5b4c273.cairo" + }, + "parent_location": [ + { + "end_col": 9, + "end_line": 8, + "input_file": { + "filename": "src/utils/math.cairo" + }, + "start_col": 6, + "start_line": 8 + }, + "While constructing the external wrapper for:" + ], + "start_col": 37, + "start_line": 1 + }, + "While expanding the reference 'retdata_size' in:" + ], + "start_col": 6, + "start_line": 8 + }, + "While constructing the external wrapper for:" + ], + "start_col": 23, + "start_line": 2 + } + }, + "129": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.sum" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 44, + "end_line": 2, + "input_file": { + "filename": "autogen/starknet/external/sum/9200521254c96a79bb547b478eae4d75a252cb747d7615078acccd332144c338.cairo" + }, + "parent_location": [ + { + "end_col": 9, + "end_line": 8, + "input_file": { + "filename": "src/utils/math.cairo" + }, + "parent_location": [ + { + "end_col": 57, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/sum/93099bea078b47105ec080392b498d5fa602cf51e6076f4584216f16f5b4c273.cairo" + }, + "parent_location": [ + { + "end_col": 9, + "end_line": 8, + "input_file": { + "filename": "src/utils/math.cairo" + }, + "start_col": 6, + "start_line": 8 + }, + "While constructing the external wrapper for:" + ], + "start_col": 50, + "start_line": 1 + }, + "While expanding the reference 'retdata' in:" + ], + "start_col": 6, + "start_line": 8 + }, + "While constructing the external wrapper for:" + ], + "start_col": 37, + "start_line": 2 + } + }, + "130": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.sum" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 59, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/sum/93099bea078b47105ec080392b498d5fa602cf51e6076f4584216f16f5b4c273.cairo" + }, + "parent_location": [ + { + "end_col": 9, + "end_line": 8, + "input_file": { + "filename": "src/utils/math.cairo" + }, + "start_col": 6, + "start_line": 8 + }, + "While constructing the external wrapper for:" + ], + "start_col": 1, + "start_line": 1 + } + }, + "131": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.prod" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 7, + "end_line": 19, + "input_file": { + "filename": "src/utils/math.cairo" + }, + "start_col": 5, + "start_line": 19 + } + }, + "133": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.prod" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 18, + "end_line": 20, + "input_file": { + "filename": "src/utils/math.cairo" + }, + "start_col": 17, + "start_line": 20 + } + }, + "135": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.prod" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 21, + "end_line": 20, + "input_file": { + "filename": "src/utils/math.cairo" + }, + "start_col": 9, + "start_line": 20 + } + }, + "136": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.prod" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 50, + "end_line": 23, + "input_file": { + "filename": "src/utils/math.cairo" + }, + "start_col": 39, + "start_line": 23 + } + }, + "138": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.prod" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 63, + "end_line": 23, + "input_file": { + "filename": "src/utils/math.cairo" + }, + "start_col": 56, + "start_line": 23 + } + }, + "140": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.prod" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 64, + "end_line": 23, + "input_file": { + "filename": "src/utils/math.cairo" + }, + "start_col": 26, + "start_line": 23 + } + }, + "142": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.prod" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 18, + "end_line": 24, + "input_file": { + "filename": "src/utils/math.cairo" + }, + "start_col": 13, + "start_line": 24 + } + }, + "143": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.prod" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 33, + "end_line": 24, + "input_file": { + "filename": "src/utils/math.cairo" + }, + "start_col": 13, + "start_line": 24 + } + }, + "144": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.prod" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 36, + "end_line": 24, + "input_file": { + "filename": "src/utils/math.cairo" + }, + "start_col": 5, + "start_line": 24 + } + }, + "145": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.prod_encode_return" + ], + "flow_tracking_data": null, + "hints": [ + { + "location": { + "end_col": 38, + "end_line": 3, + "input_file": { + "filename": "autogen/starknet/external/return/prod/aec5907d709edb2d196c3a75dc47135cf159bb79a5d667458c14ff102c5c1749.cairo" + }, + "parent_location": [ + { + "end_col": 10, + "end_line": 18, + "input_file": { + "filename": "src/utils/math.cairo" + }, + "start_col": 6, + "start_line": 18 + }, + "While handling return value of" + ], + "start_col": 5, + "start_line": 3 + }, + "n_prefix_newlines": 0 + } + ], + "inst": { + "end_col": 18, + "end_line": 4, + "input_file": { + "filename": "autogen/starknet/external/return/prod/aec5907d709edb2d196c3a75dc47135cf159bb79a5d667458c14ff102c5c1749.cairo" + }, + "parent_location": [ + { + "end_col": 10, + "end_line": 18, + "input_file": { + "filename": "src/utils/math.cairo" + }, + "start_col": 6, + "start_line": 18 + }, + "While handling return value of" + ], + "start_col": 5, + "start_line": 4 + } + }, + "147": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.prod_encode_return" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 45, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/arg_processor/293368f3a0e12cfcf22314a31e13b9801e95a5b8b2b71822a2fbbdf5a01ea795.cairo" + }, + "parent_location": [ + { + "end_col": 51, + "end_line": 18, + "input_file": { + "filename": "src/utils/math.cairo" + }, + "start_col": 42, + "start_line": 18 + }, + "While handling return value 'res'" + ], + "start_col": 1, + "start_line": 1 + } + }, + "148": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.prod_encode_return" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 48, + "end_line": 2, + "input_file": { + "filename": "autogen/starknet/arg_processor/293368f3a0e12cfcf22314a31e13b9801e95a5b8b2b71822a2fbbdf5a01ea795.cairo" + }, + "parent_location": [ + { + "end_col": 51, + "end_line": 18, + "input_file": { + "filename": "src/utils/math.cairo" + }, + "parent_location": [ + { + "end_col": 36, + "end_line": 11, + "input_file": { + "filename": "autogen/starknet/external/return/prod/aec5907d709edb2d196c3a75dc47135cf159bb79a5d667458c14ff102c5c1749.cairo" + }, + "parent_location": [ + { + "end_col": 10, + "end_line": 18, + "input_file": { + "filename": "src/utils/math.cairo" + }, + "start_col": 6, + "start_line": 18 + }, + "While handling return value of" + ], + "start_col": 18, + "start_line": 11 + }, + "While expanding the reference '__return_value_ptr' in:" + ], + "start_col": 42, + "start_line": 18 + }, + "While handling return value 'res'" + ], + "start_col": 26, + "start_line": 2 + } + }, + "150": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.prod_encode_return" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 64, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/return/prod/aec5907d709edb2d196c3a75dc47135cf159bb79a5d667458c14ff102c5c1749.cairo" + }, + "parent_location": [ + { + "end_col": 10, + "end_line": 18, + "input_file": { + "filename": "src/utils/math.cairo" + }, + "parent_location": [ + { + "end_col": 40, + "end_line": 10, + "input_file": { + "filename": "autogen/starknet/external/return/prod/aec5907d709edb2d196c3a75dc47135cf159bb79a5d667458c14ff102c5c1749.cairo" + }, + "parent_location": [ + { + "end_col": 10, + "end_line": 18, + "input_file": { + "filename": "src/utils/math.cairo" + }, + "start_col": 6, + "start_line": 18 + }, + "While handling return value of" + ], + "start_col": 25, + "start_line": 10 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 6, + "start_line": 18 + }, + "While handling return value of" + ], + "start_col": 49, + "start_line": 1 + } + }, + "151": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.prod_encode_return" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 63, + "end_line": 11, + "input_file": { + "filename": "autogen/starknet/external/return/prod/aec5907d709edb2d196c3a75dc47135cf159bb79a5d667458c14ff102c5c1749.cairo" + }, + "parent_location": [ + { + "end_col": 10, + "end_line": 18, + "input_file": { + "filename": "src/utils/math.cairo" + }, + "start_col": 6, + "start_line": 18 + }, + "While handling return value of" + ], + "start_col": 18, + "start_line": 11 + } + }, + "152": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.prod_encode_return" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 35, + "end_line": 5, + "input_file": { + "filename": "autogen/starknet/external/return/prod/aec5907d709edb2d196c3a75dc47135cf159bb79a5d667458c14ff102c5c1749.cairo" + }, + "parent_location": [ + { + "end_col": 10, + "end_line": 18, + "input_file": { + "filename": "src/utils/math.cairo" + }, + "parent_location": [ + { + "end_col": 38, + "end_line": 12, + "input_file": { + "filename": "autogen/starknet/external/return/prod/aec5907d709edb2d196c3a75dc47135cf159bb79a5d667458c14ff102c5c1749.cairo" + }, + "parent_location": [ + { + "end_col": 10, + "end_line": 18, + "input_file": { + "filename": "src/utils/math.cairo" + }, + "start_col": 6, + "start_line": 18 + }, + "While handling return value of" + ], + "start_col": 14, + "start_line": 12 + }, + "While expanding the reference '__return_value_ptr_start' in:" + ], + "start_col": 6, + "start_line": 18 + }, + "While handling return value of" + ], + "start_col": 11, + "start_line": 5 + } + }, + "153": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.prod_encode_return" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 40, + "end_line": 12, + "input_file": { + "filename": "autogen/starknet/external/return/prod/aec5907d709edb2d196c3a75dc47135cf159bb79a5d667458c14ff102c5c1749.cairo" + }, + "parent_location": [ + { + "end_col": 10, + "end_line": 18, + "input_file": { + "filename": "src/utils/math.cairo" + }, + "start_col": 6, + "start_line": 18 + }, + "While handling return value of" + ], + "start_col": 5, + "start_line": 9 + } + }, + "154": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.prod" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 67, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/prod/fd099223670ab5d428127810c2328d37c65c29951c7abc7cebaa651b40be0a6a.cairo" + }, + "parent_location": [ + { + "end_col": 10, + "end_line": 18, + "input_file": { + "filename": "src/utils/math.cairo" + }, + "parent_location": [ + { + "end_col": 24, + "end_line": 2, + "input_file": { + "filename": "autogen/starknet/arg_processor/fea0fa4d5b8fa7ee6c308136c9e398c54fa29cc00c6b3467d383d54910b51adf.cairo" + }, + "parent_location": [ + { + "end_col": 36, + "end_line": 18, + "input_file": { + "filename": "src/utils/math.cairo" + }, + "start_col": 26, + "start_line": 18 + }, + "While handling calldata argument 'arr'" + ], + "start_col": 9, + "start_line": 2 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 6, + "start_line": 18 + }, + "While constructing the external wrapper for:" + ], + "start_col": 23, + "start_line": 1 + } + }, + "155": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.prod" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 46, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/arg_processor/7441d406a9dddc153e843ef4bae777d3135e9f94650aa19a4c12b346a202f55a.cairo" + }, + "parent_location": [ + { + "end_col": 24, + "end_line": 18, + "input_file": { + "filename": "src/utils/math.cairo" + }, + "parent_location": [ + { + "end_col": 50, + "end_line": 2, + "input_file": { + "filename": "autogen/starknet/arg_processor/fea0fa4d5b8fa7ee6c308136c9e398c54fa29cc00c6b3467d383d54910b51adf.cairo" + }, + "parent_location": [ + { + "end_col": 36, + "end_line": 18, + "input_file": { + "filename": "src/utils/math.cairo" + }, + "start_col": 26, + "start_line": 18 + }, + "While handling calldata argument 'arr'" + ], + "start_col": 28, + "start_line": 2 + }, + "While expanding the reference '__calldata_arg_arr_len' in:" + ], + "start_col": 11, + "start_line": 18 + }, + "While handling calldata argument 'arr_len'" + ], + "start_col": 30, + "start_line": 1 + } + }, + "156": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.prod" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 51, + "end_line": 2, + "input_file": { + "filename": "autogen/starknet/arg_processor/fea0fa4d5b8fa7ee6c308136c9e398c54fa29cc00c6b3467d383d54910b51adf.cairo" + }, + "parent_location": [ + { + "end_col": 36, + "end_line": 18, + "input_file": { + "filename": "src/utils/math.cairo" + }, + "start_col": 26, + "start_line": 18 + }, + "While handling calldata argument 'arr'" + ], + "start_col": 1, + "start_line": 2 + } + }, + "157": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.prod" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 40, + "end_line": 2, + "input_file": { + "filename": "autogen/starknet/arg_processor/7441d406a9dddc153e843ef4bae777d3135e9f94650aa19a4c12b346a202f55a.cairo" + }, + "parent_location": [ + { + "end_col": 24, + "end_line": 18, + "input_file": { + "filename": "src/utils/math.cairo" + }, + "parent_location": [ + { + "end_col": 40, + "end_line": 8, + "input_file": { + "filename": "autogen/starknet/arg_processor/fea0fa4d5b8fa7ee6c308136c9e398c54fa29cc00c6b3467d383d54910b51adf.cairo" + }, + "parent_location": [ + { + "end_col": 36, + "end_line": 18, + "input_file": { + "filename": "src/utils/math.cairo" + }, + "start_col": 26, + "start_line": 18 + }, + "While handling calldata argument 'arr'" + ], + "start_col": 26, + "start_line": 8 + }, + "While expanding the reference '__calldata_ptr' in:" + ], + "start_col": 11, + "start_line": 18 + }, + "While handling calldata argument 'arr_len'" + ], + "start_col": 22, + "start_line": 2 + } + }, + "159": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.prod" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 46, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/arg_processor/7441d406a9dddc153e843ef4bae777d3135e9f94650aa19a4c12b346a202f55a.cairo" + }, + "parent_location": [ + { + "end_col": 24, + "end_line": 18, + "input_file": { + "filename": "src/utils/math.cairo" + }, + "parent_location": [ + { + "end_col": 65, + "end_line": 8, + "input_file": { + "filename": "autogen/starknet/arg_processor/fea0fa4d5b8fa7ee6c308136c9e398c54fa29cc00c6b3467d383d54910b51adf.cairo" + }, + "parent_location": [ + { + "end_col": 36, + "end_line": 18, + "input_file": { + "filename": "src/utils/math.cairo" + }, + "start_col": 26, + "start_line": 18 + }, + "While handling calldata argument 'arr'" + ], + "start_col": 43, + "start_line": 8 + }, + "While expanding the reference '__calldata_arg_arr_len' in:" + ], + "start_col": 11, + "start_line": 18 + }, + "While handling calldata argument 'arr_len'" + ], + "start_col": 30, + "start_line": 1 + } + }, + "160": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.prod" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 69, + "end_line": 8, + "input_file": { + "filename": "autogen/starknet/arg_processor/fea0fa4d5b8fa7ee6c308136c9e398c54fa29cc00c6b3467d383d54910b51adf.cairo" + }, + "parent_location": [ + { + "end_col": 36, + "end_line": 18, + "input_file": { + "filename": "src/utils/math.cairo" + }, + "start_col": 26, + "start_line": 18 + }, + "While handling calldata argument 'arr'" + ], + "start_col": 26, + "start_line": 8 + } + }, + "161": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.prod" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 58, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/arg_processor/01cba52f8515996bb9d7070bde81ff39281d096d7024a558efcba6e1fd2402cf.cairo" + }, + "parent_location": [ + { + "end_col": 10, + "end_line": 18, + "input_file": { + "filename": "src/utils/math.cairo" + }, + "start_col": 6, + "start_line": 18 + }, + "While handling calldata of" + ], + "start_col": 1, + "start_line": 1 + } + }, + "162": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.prod" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 46, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/arg_processor/7441d406a9dddc153e843ef4bae777d3135e9f94650aa19a4c12b346a202f55a.cairo" + }, + "parent_location": [ + { + "end_col": 24, + "end_line": 18, + "input_file": { + "filename": "src/utils/math.cairo" + }, + "parent_location": [ + { + "end_col": 64, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/prod/eb3529d693d1c3d05528614e52f001d1abd60a45747e2918bba36cceb2df824a.cairo" + }, + "parent_location": [ + { + "end_col": 10, + "end_line": 18, + "input_file": { + "filename": "src/utils/math.cairo" + }, + "start_col": 6, + "start_line": 18 + }, + "While constructing the external wrapper for:" + ], + "start_col": 42, + "start_line": 1 + }, + "While expanding the reference '__calldata_arg_arr_len' in:" + ], + "start_col": 11, + "start_line": 18 + }, + "While handling calldata argument 'arr_len'" + ], + "start_col": 30, + "start_line": 1 + } + }, + "163": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.prod" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 53, + "end_line": 5, + "input_file": { + "filename": "autogen/starknet/arg_processor/fea0fa4d5b8fa7ee6c308136c9e398c54fa29cc00c6b3467d383d54910b51adf.cairo" + }, + "parent_location": [ + { + "end_col": 36, + "end_line": 18, + "input_file": { + "filename": "src/utils/math.cairo" + }, + "parent_location": [ + { + "end_col": 88, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/prod/eb3529d693d1c3d05528614e52f001d1abd60a45747e2918bba36cceb2df824a.cairo" + }, + "parent_location": [ + { + "end_col": 10, + "end_line": 18, + "input_file": { + "filename": "src/utils/math.cairo" + }, + "start_col": 6, + "start_line": 18 + }, + "While constructing the external wrapper for:" + ], + "start_col": 70, + "start_line": 1 + }, + "While expanding the reference '__calldata_arg_arr' in:" + ], + "start_col": 26, + "start_line": 18 + }, + "While handling calldata argument 'arr'" + ], + "start_col": 26, + "start_line": 5 + } + }, + "165": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.prod" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 10, + "end_line": 18, + "input_file": { + "filename": "src/utils/math.cairo" + }, + "start_col": 6, + "start_line": 18 + } + }, + "167": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.prod" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 67, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/prod/fd099223670ab5d428127810c2328d37c65c29951c7abc7cebaa651b40be0a6a.cairo" + }, + "parent_location": [ + { + "end_col": 10, + "end_line": 18, + "input_file": { + "filename": "src/utils/math.cairo" + }, + "parent_location": [ + { + "end_col": 38, + "end_line": 3, + "input_file": { + "filename": "autogen/starknet/arg_processor/fea0fa4d5b8fa7ee6c308136c9e398c54fa29cc00c6b3467d383d54910b51adf.cairo" + }, + "parent_location": [ + { + "end_col": 36, + "end_line": 18, + "input_file": { + "filename": "src/utils/math.cairo" + }, + "parent_location": [ + { + "end_col": 93, + "end_line": 2, + "input_file": { + "filename": "autogen/starknet/external/prod/eb3529d693d1c3d05528614e52f001d1abd60a45747e2918bba36cceb2df824a.cairo" + }, + "parent_location": [ + { + "end_col": 10, + "end_line": 18, + "input_file": { + "filename": "src/utils/math.cairo" + }, + "start_col": 6, + "start_line": 18 + }, + "While constructing the external wrapper for:" + ], + "start_col": 78, + "start_line": 2 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 26, + "start_line": 18 + }, + "While handling calldata argument 'arr'" + ], + "start_col": 23, + "start_line": 3 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 6, + "start_line": 18 + }, + "While constructing the external wrapper for:" + ], + "start_col": 23, + "start_line": 1 + } + }, + "168": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.prod" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 14, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/prod/eb3529d693d1c3d05528614e52f001d1abd60a45747e2918bba36cceb2df824a.cairo" + }, + "parent_location": [ + { + "end_col": 10, + "end_line": 18, + "input_file": { + "filename": "src/utils/math.cairo" + }, + "parent_location": [ + { + "end_col": 76, + "end_line": 2, + "input_file": { + "filename": "autogen/starknet/external/prod/eb3529d693d1c3d05528614e52f001d1abd60a45747e2918bba36cceb2df824a.cairo" + }, + "parent_location": [ + { + "end_col": 10, + "end_line": 18, + "input_file": { + "filename": "src/utils/math.cairo" + }, + "start_col": 6, + "start_line": 18 + }, + "While constructing the external wrapper for:" + ], + "start_col": 67, + "start_line": 2 + }, + "While expanding the reference 'ret_value' in:" + ], + "start_col": 6, + "start_line": 18 + }, + "While constructing the external wrapper for:" + ], + "start_col": 5, + "start_line": 1 + } + }, + "169": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.prod" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 42, + "end_line": 3, + "input_file": { + "filename": "autogen/starknet/arg_processor/fea0fa4d5b8fa7ee6c308136c9e398c54fa29cc00c6b3467d383d54910b51adf.cairo" + }, + "parent_location": [ + { + "end_col": 36, + "end_line": 18, + "input_file": { + "filename": "src/utils/math.cairo" + }, + "parent_location": [ + { + "end_col": 93, + "end_line": 2, + "input_file": { + "filename": "autogen/starknet/external/prod/eb3529d693d1c3d05528614e52f001d1abd60a45747e2918bba36cceb2df824a.cairo" + }, + "parent_location": [ + { + "end_col": 10, + "end_line": 18, + "input_file": { + "filename": "src/utils/math.cairo" + }, + "start_col": 6, + "start_line": 18 + }, + "While constructing the external wrapper for:" + ], + "start_col": 78, + "start_line": 2 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 26, + "start_line": 18 + }, + "While handling calldata argument 'arr'" + ], + "start_col": 23, + "start_line": 3 + } + }, + "171": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.prod" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 94, + "end_line": 2, + "input_file": { + "filename": "autogen/starknet/external/prod/eb3529d693d1c3d05528614e52f001d1abd60a45747e2918bba36cceb2df824a.cairo" + }, + "parent_location": [ + { + "end_col": 10, + "end_line": 18, + "input_file": { + "filename": "src/utils/math.cairo" + }, + "start_col": 6, + "start_line": 18 + }, + "While constructing the external wrapper for:" + ], + "start_col": 48, + "start_line": 2 + } + }, + "173": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.prod" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 63, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/prod/3f2c77ab4e9866f148094b3f3c2497496b7ce8700b8370e7f1bc10658a33d640.cairo" + }, + "parent_location": [ + { + "end_col": 10, + "end_line": 18, + "input_file": { + "filename": "src/utils/math.cairo" + }, + "parent_location": [ + { + "end_col": 20, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/prod/93099bea078b47105ec080392b498d5fa602cf51e6076f4584216f16f5b4c273.cairo" + }, + "parent_location": [ + { + "end_col": 10, + "end_line": 18, + "input_file": { + "filename": "src/utils/math.cairo" + }, + "start_col": 6, + "start_line": 18 + }, + "While constructing the external wrapper for:" + ], + "start_col": 9, + "start_line": 1 + }, + "While expanding the reference 'syscall_ptr' in:" + ], + "start_col": 6, + "start_line": 18 + }, + "While constructing the external wrapper for:" + ], + "start_col": 19, + "start_line": 1 + } + }, + "174": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.prod" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 21, + "end_line": 2, + "input_file": { + "filename": "autogen/starknet/external/prod/eb3529d693d1c3d05528614e52f001d1abd60a45747e2918bba36cceb2df824a.cairo" + }, + "parent_location": [ + { + "end_col": 10, + "end_line": 18, + "input_file": { + "filename": "src/utils/math.cairo" + }, + "parent_location": [ + { + "end_col": 36, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/prod/93099bea078b47105ec080392b498d5fa602cf51e6076f4584216f16f5b4c273.cairo" + }, + "parent_location": [ + { + "end_col": 10, + "end_line": 18, + "input_file": { + "filename": "src/utils/math.cairo" + }, + "start_col": 6, + "start_line": 18 + }, + "While constructing the external wrapper for:" + ], + "start_col": 21, + "start_line": 1 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 6, + "start_line": 18 + }, + "While constructing the external wrapper for:" + ], + "start_col": 6, + "start_line": 2 + } + }, + "175": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.prod" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 35, + "end_line": 2, + "input_file": { + "filename": "autogen/starknet/external/prod/eb3529d693d1c3d05528614e52f001d1abd60a45747e2918bba36cceb2df824a.cairo" + }, + "parent_location": [ + { + "end_col": 10, + "end_line": 18, + "input_file": { + "filename": "src/utils/math.cairo" + }, + "parent_location": [ + { + "end_col": 49, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/prod/93099bea078b47105ec080392b498d5fa602cf51e6076f4584216f16f5b4c273.cairo" + }, + "parent_location": [ + { + "end_col": 10, + "end_line": 18, + "input_file": { + "filename": "src/utils/math.cairo" + }, + "start_col": 6, + "start_line": 18 + }, + "While constructing the external wrapper for:" + ], + "start_col": 37, + "start_line": 1 + }, + "While expanding the reference 'retdata_size' in:" + ], + "start_col": 6, + "start_line": 18 + }, + "While constructing the external wrapper for:" + ], + "start_col": 23, + "start_line": 2 + } + }, + "176": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.prod" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 44, + "end_line": 2, + "input_file": { + "filename": "autogen/starknet/external/prod/eb3529d693d1c3d05528614e52f001d1abd60a45747e2918bba36cceb2df824a.cairo" + }, + "parent_location": [ + { + "end_col": 10, + "end_line": 18, + "input_file": { + "filename": "src/utils/math.cairo" + }, + "parent_location": [ + { + "end_col": 57, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/prod/93099bea078b47105ec080392b498d5fa602cf51e6076f4584216f16f5b4c273.cairo" + }, + "parent_location": [ + { + "end_col": 10, + "end_line": 18, + "input_file": { + "filename": "src/utils/math.cairo" + }, + "start_col": 6, + "start_line": 18 + }, + "While constructing the external wrapper for:" + ], + "start_col": 50, + "start_line": 1 + }, + "While expanding the reference 'retdata' in:" + ], + "start_col": 6, + "start_line": 18 + }, + "While constructing the external wrapper for:" + ], + "start_col": 37, + "start_line": 2 + } + }, + "177": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.prod" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 59, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/prod/93099bea078b47105ec080392b498d5fa602cf51e6076f4584216f16f5b4c273.cairo" + }, + "parent_location": [ + { + "end_col": 10, + "end_line": 18, + "input_file": { + "filename": "src/utils/math.cairo" + }, + "start_col": 6, + "start_line": 18 + }, + "While constructing the external wrapper for:" + ], + "start_col": 1, + "start_line": 1 + } + }, + "178": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.div" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 28, + "end_line": 30, + "input_file": { + "filename": "src/utils/math.cairo" + }, + "start_col": 9, + "start_line": 30 + } + }, + "180": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.div" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 25, + "end_line": 28, + "input_file": { + "filename": "src/utils/math.cairo" + }, + "parent_location": [ + { + "end_col": 36, + "end_line": 325, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/math.cairo" + }, + "parent_location": [ + { + "end_col": 62, + "end_line": 32, + "input_file": { + "filename": "src/utils/math.cairo" + }, + "start_col": 18, + "start_line": 32 + }, + "While trying to retrieve the implicit argument 'range_check_ptr' in:" + ], + "start_col": 21, + "start_line": 325 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 10, + "start_line": 28 + } + }, + "181": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.div" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 39, + "end_line": 32, + "input_file": { + "filename": "src/utils/math.cairo" + }, + "start_col": 33, + "start_line": 32 + } + }, + "182": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.div" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 47, + "end_line": 32, + "input_file": { + "filename": "src/utils/math.cairo" + }, + "start_col": 41, + "start_line": 32 + } + }, + "183": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.div" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 61, + "end_line": 32, + "input_file": { + "filename": "src/utils/math.cairo" + }, + "start_col": 49, + "start_line": 32 + } + }, + "185": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.div" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 62, + "end_line": 32, + "input_file": { + "filename": "src/utils/math.cairo" + }, + "start_col": 18, + "start_line": 32 + } + }, + "187": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.div" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 36, + "end_line": 325, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/math.cairo" + }, + "parent_location": [ + { + "end_col": 62, + "end_line": 32, + "input_file": { + "filename": "src/utils/math.cairo" + }, + "parent_location": [ + { + "end_col": 25, + "end_line": 28, + "input_file": { + "filename": "src/utils/math.cairo" + }, + "parent_location": [ + { + "end_col": 17, + "end_line": 33, + "input_file": { + "filename": "src/utils/math.cairo" + }, + "start_col": 5, + "start_line": 33 + }, + "While trying to retrieve the implicit argument 'range_check_ptr' in:" + ], + "start_col": 10, + "start_line": 28 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 18, + "start_line": 32 + }, + "While trying to update the implicit return value 'range_check_ptr' in:" + ], + "start_col": 21, + "start_line": 325 + } + }, + "188": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.div" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 11, + "end_line": 32, + "input_file": { + "filename": "src/utils/math.cairo" + }, + "parent_location": [ + { + "end_col": 14, + "end_line": 33, + "input_file": { + "filename": "src/utils/math.cairo" + }, + "start_col": 13, + "start_line": 33 + }, + "While expanding the reference 'q' in:" + ], + "start_col": 10, + "start_line": 32 + } + }, + "189": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.div" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 17, + "end_line": 33, + "input_file": { + "filename": "src/utils/math.cairo" + }, + "start_col": 5, + "start_line": 33 + } + }, + "190": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.div_encode_return" + ], + "flow_tracking_data": null, + "hints": [ + { + "location": { + "end_col": 38, + "end_line": 3, + "input_file": { + "filename": "autogen/starknet/external/return/div/73094ee324ecd9a9a075757b1d41982131a0a18789cec6dfcba8030fda7a3307.cairo" + }, + "parent_location": [ + { + "end_col": 9, + "end_line": 28, + "input_file": { + "filename": "src/utils/math.cairo" + }, + "start_col": 6, + "start_line": 28 + }, + "While handling return value of" + ], + "start_col": 5, + "start_line": 3 + }, + "n_prefix_newlines": 0 + } + ], + "inst": { + "end_col": 18, + "end_line": 4, + "input_file": { + "filename": "autogen/starknet/external/return/div/73094ee324ecd9a9a075757b1d41982131a0a18789cec6dfcba8030fda7a3307.cairo" + }, + "parent_location": [ + { + "end_col": 9, + "end_line": 28, + "input_file": { + "filename": "src/utils/math.cairo" + }, + "start_col": 6, + "start_line": 28 + }, + "While handling return value of" + ], + "start_col": 5, + "start_line": 4 + } + }, + "192": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.div_encode_return" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 45, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/arg_processor/293368f3a0e12cfcf22314a31e13b9801e95a5b8b2b71822a2fbbdf5a01ea795.cairo" + }, + "parent_location": [ + { + "end_col": 67, + "end_line": 28, + "input_file": { + "filename": "src/utils/math.cairo" + }, + "start_col": 58, + "start_line": 28 + }, + "While handling return value 'res'" + ], + "start_col": 1, + "start_line": 1 + } + }, + "193": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.div_encode_return" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 48, + "end_line": 2, + "input_file": { + "filename": "autogen/starknet/arg_processor/293368f3a0e12cfcf22314a31e13b9801e95a5b8b2b71822a2fbbdf5a01ea795.cairo" + }, + "parent_location": [ + { + "end_col": 67, + "end_line": 28, + "input_file": { + "filename": "src/utils/math.cairo" + }, + "parent_location": [ + { + "end_col": 36, + "end_line": 11, + "input_file": { + "filename": "autogen/starknet/external/return/div/73094ee324ecd9a9a075757b1d41982131a0a18789cec6dfcba8030fda7a3307.cairo" + }, + "parent_location": [ + { + "end_col": 9, + "end_line": 28, + "input_file": { + "filename": "src/utils/math.cairo" + }, + "start_col": 6, + "start_line": 28 + }, + "While handling return value of" + ], + "start_col": 18, + "start_line": 11 + }, + "While expanding the reference '__return_value_ptr' in:" + ], + "start_col": 58, + "start_line": 28 + }, + "While handling return value 'res'" + ], + "start_col": 26, + "start_line": 2 + } + }, + "195": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.div_encode_return" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 63, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/return/div/73094ee324ecd9a9a075757b1d41982131a0a18789cec6dfcba8030fda7a3307.cairo" + }, + "parent_location": [ + { + "end_col": 9, + "end_line": 28, + "input_file": { + "filename": "src/utils/math.cairo" + }, + "parent_location": [ + { + "end_col": 40, + "end_line": 10, + "input_file": { + "filename": "autogen/starknet/external/return/div/73094ee324ecd9a9a075757b1d41982131a0a18789cec6dfcba8030fda7a3307.cairo" + }, + "parent_location": [ + { + "end_col": 9, + "end_line": 28, + "input_file": { + "filename": "src/utils/math.cairo" + }, + "start_col": 6, + "start_line": 28 + }, + "While handling return value of" + ], + "start_col": 25, + "start_line": 10 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 6, + "start_line": 28 + }, + "While handling return value of" + ], + "start_col": 48, + "start_line": 1 + } + }, + "196": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.div_encode_return" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 63, + "end_line": 11, + "input_file": { + "filename": "autogen/starknet/external/return/div/73094ee324ecd9a9a075757b1d41982131a0a18789cec6dfcba8030fda7a3307.cairo" + }, + "parent_location": [ + { + "end_col": 9, + "end_line": 28, + "input_file": { + "filename": "src/utils/math.cairo" + }, + "start_col": 6, + "start_line": 28 + }, + "While handling return value of" + ], + "start_col": 18, + "start_line": 11 + } + }, + "197": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.div_encode_return" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 35, + "end_line": 5, + "input_file": { + "filename": "autogen/starknet/external/return/div/73094ee324ecd9a9a075757b1d41982131a0a18789cec6dfcba8030fda7a3307.cairo" + }, + "parent_location": [ + { + "end_col": 9, + "end_line": 28, + "input_file": { + "filename": "src/utils/math.cairo" + }, + "parent_location": [ + { + "end_col": 38, + "end_line": 12, + "input_file": { + "filename": "autogen/starknet/external/return/div/73094ee324ecd9a9a075757b1d41982131a0a18789cec6dfcba8030fda7a3307.cairo" + }, + "parent_location": [ + { + "end_col": 9, + "end_line": 28, + "input_file": { + "filename": "src/utils/math.cairo" + }, + "start_col": 6, + "start_line": 28 + }, + "While handling return value of" + ], + "start_col": 14, + "start_line": 12 + }, + "While expanding the reference '__return_value_ptr_start' in:" + ], + "start_col": 6, + "start_line": 28 + }, + "While handling return value of" + ], + "start_col": 11, + "start_line": 5 + } + }, + "198": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.div_encode_return" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 40, + "end_line": 12, + "input_file": { + "filename": "autogen/starknet/external/return/div/73094ee324ecd9a9a075757b1d41982131a0a18789cec6dfcba8030fda7a3307.cairo" + }, + "parent_location": [ + { + "end_col": 9, + "end_line": 28, + "input_file": { + "filename": "src/utils/math.cairo" + }, + "start_col": 6, + "start_line": 28 + }, + "While handling return value of" + ], + "start_col": 5, + "start_line": 9 + } + }, + "199": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.div" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 67, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/div/fd099223670ab5d428127810c2328d37c65c29951c7abc7cebaa651b40be0a6a.cairo" + }, + "parent_location": [ + { + "end_col": 25, + "end_line": 28, + "input_file": { + "filename": "src/utils/math.cairo" + }, + "parent_location": [ + { + "end_col": 24, + "end_line": 2, + "input_file": { + "filename": "autogen/starknet/arg_processor/fea0fa4d5b8fa7ee6c308136c9e398c54fa29cc00c6b3467d383d54910b51adf.cairo" + }, + "parent_location": [ + { + "end_col": 52, + "end_line": 28, + "input_file": { + "filename": "src/utils/math.cairo" + }, + "start_col": 42, + "start_line": 28 + }, + "While handling calldata argument 'arr'" + ], + "start_col": 9, + "start_line": 2 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 10, + "start_line": 28 + }, + "While constructing the external wrapper for:" + ], + "start_col": 23, + "start_line": 1 + } + }, + "200": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.div" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 46, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/arg_processor/7441d406a9dddc153e843ef4bae777d3135e9f94650aa19a4c12b346a202f55a.cairo" + }, + "parent_location": [ + { + "end_col": 40, + "end_line": 28, + "input_file": { + "filename": "src/utils/math.cairo" + }, + "parent_location": [ + { + "end_col": 50, + "end_line": 2, + "input_file": { + "filename": "autogen/starknet/arg_processor/fea0fa4d5b8fa7ee6c308136c9e398c54fa29cc00c6b3467d383d54910b51adf.cairo" + }, + "parent_location": [ + { + "end_col": 52, + "end_line": 28, + "input_file": { + "filename": "src/utils/math.cairo" + }, + "start_col": 42, + "start_line": 28 + }, + "While handling calldata argument 'arr'" + ], + "start_col": 28, + "start_line": 2 + }, + "While expanding the reference '__calldata_arg_arr_len' in:" + ], + "start_col": 27, + "start_line": 28 + }, + "While handling calldata argument 'arr_len'" + ], + "start_col": 30, + "start_line": 1 + } + }, + "201": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.div" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 51, + "end_line": 2, + "input_file": { + "filename": "autogen/starknet/arg_processor/fea0fa4d5b8fa7ee6c308136c9e398c54fa29cc00c6b3467d383d54910b51adf.cairo" + }, + "parent_location": [ + { + "end_col": 52, + "end_line": 28, + "input_file": { + "filename": "src/utils/math.cairo" + }, + "start_col": 42, + "start_line": 28 + }, + "While handling calldata argument 'arr'" + ], + "start_col": 1, + "start_line": 2 + } + }, + "202": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.div" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 40, + "end_line": 2, + "input_file": { + "filename": "autogen/starknet/arg_processor/7441d406a9dddc153e843ef4bae777d3135e9f94650aa19a4c12b346a202f55a.cairo" + }, + "parent_location": [ + { + "end_col": 40, + "end_line": 28, + "input_file": { + "filename": "src/utils/math.cairo" + }, + "parent_location": [ + { + "end_col": 40, + "end_line": 8, + "input_file": { + "filename": "autogen/starknet/arg_processor/fea0fa4d5b8fa7ee6c308136c9e398c54fa29cc00c6b3467d383d54910b51adf.cairo" + }, + "parent_location": [ + { + "end_col": 52, + "end_line": 28, + "input_file": { + "filename": "src/utils/math.cairo" + }, + "start_col": 42, + "start_line": 28 + }, + "While handling calldata argument 'arr'" + ], + "start_col": 26, + "start_line": 8 + }, + "While expanding the reference '__calldata_ptr' in:" + ], + "start_col": 27, + "start_line": 28 + }, + "While handling calldata argument 'arr_len'" + ], + "start_col": 22, + "start_line": 2 + } + }, + "204": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.div" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 46, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/arg_processor/7441d406a9dddc153e843ef4bae777d3135e9f94650aa19a4c12b346a202f55a.cairo" + }, + "parent_location": [ + { + "end_col": 40, + "end_line": 28, + "input_file": { + "filename": "src/utils/math.cairo" + }, + "parent_location": [ + { + "end_col": 65, + "end_line": 8, + "input_file": { + "filename": "autogen/starknet/arg_processor/fea0fa4d5b8fa7ee6c308136c9e398c54fa29cc00c6b3467d383d54910b51adf.cairo" + }, + "parent_location": [ + { + "end_col": 52, + "end_line": 28, + "input_file": { + "filename": "src/utils/math.cairo" + }, + "start_col": 42, + "start_line": 28 + }, + "While handling calldata argument 'arr'" + ], + "start_col": 43, + "start_line": 8 + }, + "While expanding the reference '__calldata_arg_arr_len' in:" + ], + "start_col": 27, + "start_line": 28 + }, + "While handling calldata argument 'arr_len'" + ], + "start_col": 30, + "start_line": 1 + } + }, + "205": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.div" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 69, + "end_line": 8, + "input_file": { + "filename": "autogen/starknet/arg_processor/fea0fa4d5b8fa7ee6c308136c9e398c54fa29cc00c6b3467d383d54910b51adf.cairo" + }, + "parent_location": [ + { + "end_col": 52, + "end_line": 28, + "input_file": { + "filename": "src/utils/math.cairo" + }, + "start_col": 42, + "start_line": 28 + }, + "While handling calldata argument 'arr'" + ], + "start_col": 26, + "start_line": 8 + } + }, + "206": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.div" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 58, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/arg_processor/01cba52f8515996bb9d7070bde81ff39281d096d7024a558efcba6e1fd2402cf.cairo" + }, + "parent_location": [ + { + "end_col": 9, + "end_line": 28, + "input_file": { + "filename": "src/utils/math.cairo" + }, + "start_col": 6, + "start_line": 28 + }, + "While handling calldata of" + ], + "start_col": 1, + "start_line": 1 + } + }, + "207": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.div" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 67, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/div/fd099223670ab5d428127810c2328d37c65c29951c7abc7cebaa651b40be0a6a.cairo" + }, + "parent_location": [ + { + "end_col": 25, + "end_line": 28, + "input_file": { + "filename": "src/utils/math.cairo" + }, + "parent_location": [ + { + "end_col": 38, + "end_line": 3, + "input_file": { + "filename": "autogen/starknet/arg_processor/fea0fa4d5b8fa7ee6c308136c9e398c54fa29cc00c6b3467d383d54910b51adf.cairo" + }, + "parent_location": [ + { + "end_col": 52, + "end_line": 28, + "input_file": { + "filename": "src/utils/math.cairo" + }, + "parent_location": [ + { + "end_col": 63, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/div/bfe1b38271338a63ef6042076dbbb3f22f12f4fc176aae7d723f95fbd138c4a4.cairo" + }, + "parent_location": [ + { + "end_col": 9, + "end_line": 28, + "input_file": { + "filename": "src/utils/math.cairo" + }, + "start_col": 6, + "start_line": 28 + }, + "While constructing the external wrapper for:" + ], + "start_col": 48, + "start_line": 1 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 42, + "start_line": 28 + }, + "While handling calldata argument 'arr'" + ], + "start_col": 23, + "start_line": 3 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 10, + "start_line": 28 + }, + "While constructing the external wrapper for:" + ], + "start_col": 23, + "start_line": 1 + } + }, + "208": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.div" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 42, + "end_line": 3, + "input_file": { + "filename": "autogen/starknet/arg_processor/fea0fa4d5b8fa7ee6c308136c9e398c54fa29cc00c6b3467d383d54910b51adf.cairo" + }, + "parent_location": [ + { + "end_col": 52, + "end_line": 28, + "input_file": { + "filename": "src/utils/math.cairo" + }, + "parent_location": [ + { + "end_col": 63, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/div/bfe1b38271338a63ef6042076dbbb3f22f12f4fc176aae7d723f95fbd138c4a4.cairo" + }, + "parent_location": [ + { + "end_col": 9, + "end_line": 28, + "input_file": { + "filename": "src/utils/math.cairo" + }, + "start_col": 6, + "start_line": 28 + }, + "While constructing the external wrapper for:" + ], + "start_col": 48, + "start_line": 1 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 42, + "start_line": 28 + }, + "While handling calldata argument 'arr'" + ], + "start_col": 23, + "start_line": 3 + } + }, + "210": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.div" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 46, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/arg_processor/7441d406a9dddc153e843ef4bae777d3135e9f94650aa19a4c12b346a202f55a.cairo" + }, + "parent_location": [ + { + "end_col": 40, + "end_line": 28, + "input_file": { + "filename": "src/utils/math.cairo" + }, + "parent_location": [ + { + "end_col": 95, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/div/bfe1b38271338a63ef6042076dbbb3f22f12f4fc176aae7d723f95fbd138c4a4.cairo" + }, + "parent_location": [ + { + "end_col": 9, + "end_line": 28, + "input_file": { + "filename": "src/utils/math.cairo" + }, + "start_col": 6, + "start_line": 28 + }, + "While constructing the external wrapper for:" + ], + "start_col": 73, + "start_line": 1 + }, + "While expanding the reference '__calldata_arg_arr_len' in:" + ], + "start_col": 27, + "start_line": 28 + }, + "While handling calldata argument 'arr_len'" + ], + "start_col": 30, + "start_line": 1 + } + }, + "211": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.div" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 53, + "end_line": 5, + "input_file": { + "filename": "autogen/starknet/arg_processor/fea0fa4d5b8fa7ee6c308136c9e398c54fa29cc00c6b3467d383d54910b51adf.cairo" + }, + "parent_location": [ + { + "end_col": 52, + "end_line": 28, + "input_file": { + "filename": "src/utils/math.cairo" + }, + "parent_location": [ + { + "end_col": 119, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/div/bfe1b38271338a63ef6042076dbbb3f22f12f4fc176aae7d723f95fbd138c4a4.cairo" + }, + "parent_location": [ + { + "end_col": 9, + "end_line": 28, + "input_file": { + "filename": "src/utils/math.cairo" + }, + "start_col": 6, + "start_line": 28 + }, + "While constructing the external wrapper for:" + ], + "start_col": 101, + "start_line": 1 + }, + "While expanding the reference '__calldata_arg_arr' in:" + ], + "start_col": 42, + "start_line": 28 + }, + "While handling calldata argument 'arr'" + ], + "start_col": 26, + "start_line": 5 + } + }, + "213": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.div" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 9, + "end_line": 28, + "input_file": { + "filename": "src/utils/math.cairo" + }, + "start_col": 6, + "start_line": 28 + } + }, + "215": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.div" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 63, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/div/bfe1b38271338a63ef6042076dbbb3f22f12f4fc176aae7d723f95fbd138c4a4.cairo" + }, + "parent_location": [ + { + "end_col": 9, + "end_line": 28, + "input_file": { + "filename": "src/utils/math.cairo" + }, + "parent_location": [ + { + "end_col": 92, + "end_line": 2, + "input_file": { + "filename": "autogen/starknet/external/div/bfe1b38271338a63ef6042076dbbb3f22f12f4fc176aae7d723f95fbd138c4a4.cairo" + }, + "parent_location": [ + { + "end_col": 9, + "end_line": 28, + "input_file": { + "filename": "src/utils/math.cairo" + }, + "start_col": 6, + "start_line": 28 + }, + "While constructing the external wrapper for:" + ], + "start_col": 77, + "start_line": 2 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 6, + "start_line": 28 + }, + "While constructing the external wrapper for:" + ], + "start_col": 48, + "start_line": 1 + } + }, + "216": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.div" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 93, + "end_line": 2, + "input_file": { + "filename": "autogen/starknet/external/div/bfe1b38271338a63ef6042076dbbb3f22f12f4fc176aae7d723f95fbd138c4a4.cairo" + }, + "parent_location": [ + { + "end_col": 9, + "end_line": 28, + "input_file": { + "filename": "src/utils/math.cairo" + }, + "start_col": 6, + "start_line": 28 + }, + "While constructing the external wrapper for:" + ], + "start_col": 48, + "start_line": 2 + } + }, + "218": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.div" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 63, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/div/3f2c77ab4e9866f148094b3f3c2497496b7ce8700b8370e7f1bc10658a33d640.cairo" + }, + "parent_location": [ + { + "end_col": 9, + "end_line": 28, + "input_file": { + "filename": "src/utils/math.cairo" + }, + "parent_location": [ + { + "end_col": 20, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/div/93099bea078b47105ec080392b498d5fa602cf51e6076f4584216f16f5b4c273.cairo" + }, + "parent_location": [ + { + "end_col": 9, + "end_line": 28, + "input_file": { + "filename": "src/utils/math.cairo" + }, + "start_col": 6, + "start_line": 28 + }, + "While constructing the external wrapper for:" + ], + "start_col": 9, + "start_line": 1 + }, + "While expanding the reference 'syscall_ptr' in:" + ], + "start_col": 6, + "start_line": 28 + }, + "While constructing the external wrapper for:" + ], + "start_col": 19, + "start_line": 1 + } + }, + "219": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.div" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 21, + "end_line": 2, + "input_file": { + "filename": "autogen/starknet/external/div/bfe1b38271338a63ef6042076dbbb3f22f12f4fc176aae7d723f95fbd138c4a4.cairo" + }, + "parent_location": [ + { + "end_col": 9, + "end_line": 28, + "input_file": { + "filename": "src/utils/math.cairo" + }, + "parent_location": [ + { + "end_col": 36, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/div/93099bea078b47105ec080392b498d5fa602cf51e6076f4584216f16f5b4c273.cairo" + }, + "parent_location": [ + { + "end_col": 9, + "end_line": 28, + "input_file": { + "filename": "src/utils/math.cairo" + }, + "start_col": 6, + "start_line": 28 + }, + "While constructing the external wrapper for:" + ], + "start_col": 21, + "start_line": 1 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 6, + "start_line": 28 + }, + "While constructing the external wrapper for:" + ], + "start_col": 6, + "start_line": 2 + } + }, + "220": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.div" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 35, + "end_line": 2, + "input_file": { + "filename": "autogen/starknet/external/div/bfe1b38271338a63ef6042076dbbb3f22f12f4fc176aae7d723f95fbd138c4a4.cairo" + }, + "parent_location": [ + { + "end_col": 9, + "end_line": 28, + "input_file": { + "filename": "src/utils/math.cairo" + }, + "parent_location": [ + { + "end_col": 49, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/div/93099bea078b47105ec080392b498d5fa602cf51e6076f4584216f16f5b4c273.cairo" + }, + "parent_location": [ + { + "end_col": 9, + "end_line": 28, + "input_file": { + "filename": "src/utils/math.cairo" + }, + "start_col": 6, + "start_line": 28 + }, + "While constructing the external wrapper for:" + ], + "start_col": 37, + "start_line": 1 + }, + "While expanding the reference 'retdata_size' in:" + ], + "start_col": 6, + "start_line": 28 + }, + "While constructing the external wrapper for:" + ], + "start_col": 23, + "start_line": 2 + } + }, + "221": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.div" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 44, + "end_line": 2, + "input_file": { + "filename": "autogen/starknet/external/div/bfe1b38271338a63ef6042076dbbb3f22f12f4fc176aae7d723f95fbd138c4a4.cairo" + }, + "parent_location": [ + { + "end_col": 9, + "end_line": 28, + "input_file": { + "filename": "src/utils/math.cairo" + }, + "parent_location": [ + { + "end_col": 57, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/div/93099bea078b47105ec080392b498d5fa602cf51e6076f4584216f16f5b4c273.cairo" + }, + "parent_location": [ + { + "end_col": 9, + "end_line": 28, + "input_file": { + "filename": "src/utils/math.cairo" + }, + "start_col": 6, + "start_line": 28 + }, + "While constructing the external wrapper for:" + ], + "start_col": 50, + "start_line": 1 + }, + "While expanding the reference 'retdata' in:" + ], + "start_col": 6, + "start_line": 28 + }, + "While constructing the external wrapper for:" + ], + "start_col": 37, + "start_line": 2 + } + }, + "222": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.div" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 59, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/div/93099bea078b47105ec080392b498d5fa602cf51e6076f4584216f16f5b4c273.cairo" + }, + "parent_location": [ + { + "end_col": 9, + "end_line": 28, + "input_file": { + "filename": "src/utils/math.cairo" + }, + "start_col": 6, + "start_line": 28 + }, + "While constructing the external wrapper for:" + ], + "start_col": 1, + "start_line": 1 + } + }, + "223": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.sub" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 28, + "end_line": 39, + "input_file": { + "filename": "src/utils/math.cairo" + }, + "start_col": 9, + "start_line": 39 + } + }, + "225": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.sub" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 19, + "end_line": 41, + "input_file": { + "filename": "src/utils/math.cairo" + }, + "start_col": 13, + "start_line": 41 + } + }, + "226": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.sub" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 28, + "end_line": 41, + "input_file": { + "filename": "src/utils/math.cairo" + }, + "start_col": 22, + "start_line": 41 + } + }, + "227": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.sub" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 28, + "end_line": 41, + "input_file": { + "filename": "src/utils/math.cairo" + }, + "start_col": 13, + "start_line": 41 + } + }, + "228": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.sub" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 31, + "end_line": 41, + "input_file": { + "filename": "src/utils/math.cairo" + }, + "start_col": 5, + "start_line": 41 + } + }, + "229": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.sub_encode_return" + ], + "flow_tracking_data": null, + "hints": [ + { + "location": { + "end_col": 38, + "end_line": 3, + "input_file": { + "filename": "autogen/starknet/external/return/sub/f0caf8ec7a40214b768d1febe7d36b9b851da014c637ad4c898d4fc6e0c7be79.cairo" + }, + "parent_location": [ + { + "end_col": 9, + "end_line": 37, + "input_file": { + "filename": "src/utils/math.cairo" + }, + "start_col": 6, + "start_line": 37 + }, + "While handling return value of" + ], + "start_col": 5, + "start_line": 3 + }, + "n_prefix_newlines": 0 + } + ], + "inst": { + "end_col": 18, + "end_line": 4, + "input_file": { + "filename": "autogen/starknet/external/return/sub/f0caf8ec7a40214b768d1febe7d36b9b851da014c637ad4c898d4fc6e0c7be79.cairo" + }, + "parent_location": [ + { + "end_col": 9, + "end_line": 37, + "input_file": { + "filename": "src/utils/math.cairo" + }, + "start_col": 6, + "start_line": 37 + }, + "While handling return value of" + ], + "start_col": 5, + "start_line": 4 + } + }, + "231": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.sub_encode_return" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 45, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/arg_processor/293368f3a0e12cfcf22314a31e13b9801e95a5b8b2b71822a2fbbdf5a01ea795.cairo" + }, + "parent_location": [ + { + "end_col": 50, + "end_line": 37, + "input_file": { + "filename": "src/utils/math.cairo" + }, + "start_col": 41, + "start_line": 37 + }, + "While handling return value 'res'" + ], + "start_col": 1, + "start_line": 1 + } + }, + "232": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.sub_encode_return" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 48, + "end_line": 2, + "input_file": { + "filename": "autogen/starknet/arg_processor/293368f3a0e12cfcf22314a31e13b9801e95a5b8b2b71822a2fbbdf5a01ea795.cairo" + }, + "parent_location": [ + { + "end_col": 50, + "end_line": 37, + "input_file": { + "filename": "src/utils/math.cairo" + }, + "parent_location": [ + { + "end_col": 36, + "end_line": 11, + "input_file": { + "filename": "autogen/starknet/external/return/sub/f0caf8ec7a40214b768d1febe7d36b9b851da014c637ad4c898d4fc6e0c7be79.cairo" + }, + "parent_location": [ + { + "end_col": 9, + "end_line": 37, + "input_file": { + "filename": "src/utils/math.cairo" + }, + "start_col": 6, + "start_line": 37 + }, + "While handling return value of" + ], + "start_col": 18, + "start_line": 11 + }, + "While expanding the reference '__return_value_ptr' in:" + ], + "start_col": 41, + "start_line": 37 + }, + "While handling return value 'res'" + ], + "start_col": 26, + "start_line": 2 + } + }, + "234": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.sub_encode_return" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 63, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/return/sub/f0caf8ec7a40214b768d1febe7d36b9b851da014c637ad4c898d4fc6e0c7be79.cairo" + }, + "parent_location": [ + { + "end_col": 9, + "end_line": 37, + "input_file": { + "filename": "src/utils/math.cairo" + }, + "parent_location": [ + { + "end_col": 40, + "end_line": 10, + "input_file": { + "filename": "autogen/starknet/external/return/sub/f0caf8ec7a40214b768d1febe7d36b9b851da014c637ad4c898d4fc6e0c7be79.cairo" + }, + "parent_location": [ + { + "end_col": 9, + "end_line": 37, + "input_file": { + "filename": "src/utils/math.cairo" + }, + "start_col": 6, + "start_line": 37 + }, + "While handling return value of" + ], + "start_col": 25, + "start_line": 10 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 6, + "start_line": 37 + }, + "While handling return value of" + ], + "start_col": 48, + "start_line": 1 + } + }, + "235": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.sub_encode_return" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 63, + "end_line": 11, + "input_file": { + "filename": "autogen/starknet/external/return/sub/f0caf8ec7a40214b768d1febe7d36b9b851da014c637ad4c898d4fc6e0c7be79.cairo" + }, + "parent_location": [ + { + "end_col": 9, + "end_line": 37, + "input_file": { + "filename": "src/utils/math.cairo" + }, + "start_col": 6, + "start_line": 37 + }, + "While handling return value of" + ], + "start_col": 18, + "start_line": 11 + } + }, + "236": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.sub_encode_return" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 35, + "end_line": 5, + "input_file": { + "filename": "autogen/starknet/external/return/sub/f0caf8ec7a40214b768d1febe7d36b9b851da014c637ad4c898d4fc6e0c7be79.cairo" + }, + "parent_location": [ + { + "end_col": 9, + "end_line": 37, + "input_file": { + "filename": "src/utils/math.cairo" + }, + "parent_location": [ + { + "end_col": 38, + "end_line": 12, + "input_file": { + "filename": "autogen/starknet/external/return/sub/f0caf8ec7a40214b768d1febe7d36b9b851da014c637ad4c898d4fc6e0c7be79.cairo" + }, + "parent_location": [ + { + "end_col": 9, + "end_line": 37, + "input_file": { + "filename": "src/utils/math.cairo" + }, + "start_col": 6, + "start_line": 37 + }, + "While handling return value of" + ], + "start_col": 14, + "start_line": 12 + }, + "While expanding the reference '__return_value_ptr_start' in:" + ], + "start_col": 6, + "start_line": 37 + }, + "While handling return value of" + ], + "start_col": 11, + "start_line": 5 + } + }, + "237": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.sub_encode_return" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 40, + "end_line": 12, + "input_file": { + "filename": "autogen/starknet/external/return/sub/f0caf8ec7a40214b768d1febe7d36b9b851da014c637ad4c898d4fc6e0c7be79.cairo" + }, + "parent_location": [ + { + "end_col": 9, + "end_line": 37, + "input_file": { + "filename": "src/utils/math.cairo" + }, + "start_col": 6, + "start_line": 37 + }, + "While handling return value of" + ], + "start_col": 5, + "start_line": 9 + } + }, + "238": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.sub" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 67, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/sub/fd099223670ab5d428127810c2328d37c65c29951c7abc7cebaa651b40be0a6a.cairo" + }, + "parent_location": [ + { + "end_col": 9, + "end_line": 37, + "input_file": { + "filename": "src/utils/math.cairo" + }, + "parent_location": [ + { + "end_col": 24, + "end_line": 2, + "input_file": { + "filename": "autogen/starknet/arg_processor/fea0fa4d5b8fa7ee6c308136c9e398c54fa29cc00c6b3467d383d54910b51adf.cairo" + }, + "parent_location": [ + { + "end_col": 35, + "end_line": 37, + "input_file": { + "filename": "src/utils/math.cairo" + }, + "start_col": 25, + "start_line": 37 + }, + "While handling calldata argument 'arr'" + ], + "start_col": 9, + "start_line": 2 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 6, + "start_line": 37 + }, + "While constructing the external wrapper for:" + ], + "start_col": 23, + "start_line": 1 + } + }, + "239": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.sub" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 46, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/arg_processor/7441d406a9dddc153e843ef4bae777d3135e9f94650aa19a4c12b346a202f55a.cairo" + }, + "parent_location": [ + { + "end_col": 23, + "end_line": 37, + "input_file": { + "filename": "src/utils/math.cairo" + }, + "parent_location": [ + { + "end_col": 50, + "end_line": 2, + "input_file": { + "filename": "autogen/starknet/arg_processor/fea0fa4d5b8fa7ee6c308136c9e398c54fa29cc00c6b3467d383d54910b51adf.cairo" + }, + "parent_location": [ + { + "end_col": 35, + "end_line": 37, + "input_file": { + "filename": "src/utils/math.cairo" + }, + "start_col": 25, + "start_line": 37 + }, + "While handling calldata argument 'arr'" + ], + "start_col": 28, + "start_line": 2 + }, + "While expanding the reference '__calldata_arg_arr_len' in:" + ], + "start_col": 10, + "start_line": 37 + }, + "While handling calldata argument 'arr_len'" + ], + "start_col": 30, + "start_line": 1 + } + }, + "240": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.sub" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 51, + "end_line": 2, + "input_file": { + "filename": "autogen/starknet/arg_processor/fea0fa4d5b8fa7ee6c308136c9e398c54fa29cc00c6b3467d383d54910b51adf.cairo" + }, + "parent_location": [ + { + "end_col": 35, + "end_line": 37, + "input_file": { + "filename": "src/utils/math.cairo" + }, + "start_col": 25, + "start_line": 37 + }, + "While handling calldata argument 'arr'" + ], + "start_col": 1, + "start_line": 2 + } + }, + "241": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.sub" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 40, + "end_line": 2, + "input_file": { + "filename": "autogen/starknet/arg_processor/7441d406a9dddc153e843ef4bae777d3135e9f94650aa19a4c12b346a202f55a.cairo" + }, + "parent_location": [ + { + "end_col": 23, + "end_line": 37, + "input_file": { + "filename": "src/utils/math.cairo" + }, + "parent_location": [ + { + "end_col": 40, + "end_line": 8, + "input_file": { + "filename": "autogen/starknet/arg_processor/fea0fa4d5b8fa7ee6c308136c9e398c54fa29cc00c6b3467d383d54910b51adf.cairo" + }, + "parent_location": [ + { + "end_col": 35, + "end_line": 37, + "input_file": { + "filename": "src/utils/math.cairo" + }, + "start_col": 25, + "start_line": 37 + }, + "While handling calldata argument 'arr'" + ], + "start_col": 26, + "start_line": 8 + }, + "While expanding the reference '__calldata_ptr' in:" + ], + "start_col": 10, + "start_line": 37 + }, + "While handling calldata argument 'arr_len'" + ], + "start_col": 22, + "start_line": 2 + } + }, + "243": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.sub" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 46, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/arg_processor/7441d406a9dddc153e843ef4bae777d3135e9f94650aa19a4c12b346a202f55a.cairo" + }, + "parent_location": [ + { + "end_col": 23, + "end_line": 37, + "input_file": { + "filename": "src/utils/math.cairo" + }, + "parent_location": [ + { + "end_col": 65, + "end_line": 8, + "input_file": { + "filename": "autogen/starknet/arg_processor/fea0fa4d5b8fa7ee6c308136c9e398c54fa29cc00c6b3467d383d54910b51adf.cairo" + }, + "parent_location": [ + { + "end_col": 35, + "end_line": 37, + "input_file": { + "filename": "src/utils/math.cairo" + }, + "start_col": 25, + "start_line": 37 + }, + "While handling calldata argument 'arr'" + ], + "start_col": 43, + "start_line": 8 + }, + "While expanding the reference '__calldata_arg_arr_len' in:" + ], + "start_col": 10, + "start_line": 37 + }, + "While handling calldata argument 'arr_len'" + ], + "start_col": 30, + "start_line": 1 + } + }, + "244": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.sub" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 69, + "end_line": 8, + "input_file": { + "filename": "autogen/starknet/arg_processor/fea0fa4d5b8fa7ee6c308136c9e398c54fa29cc00c6b3467d383d54910b51adf.cairo" + }, + "parent_location": [ + { + "end_col": 35, + "end_line": 37, + "input_file": { + "filename": "src/utils/math.cairo" + }, + "start_col": 25, + "start_line": 37 + }, + "While handling calldata argument 'arr'" + ], + "start_col": 26, + "start_line": 8 + } + }, + "245": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.sub" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 58, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/arg_processor/01cba52f8515996bb9d7070bde81ff39281d096d7024a558efcba6e1fd2402cf.cairo" + }, + "parent_location": [ + { + "end_col": 9, + "end_line": 37, + "input_file": { + "filename": "src/utils/math.cairo" + }, + "start_col": 6, + "start_line": 37 + }, + "While handling calldata of" + ], + "start_col": 1, + "start_line": 1 + } + }, + "246": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.sub" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 46, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/arg_processor/7441d406a9dddc153e843ef4bae777d3135e9f94650aa19a4c12b346a202f55a.cairo" + }, + "parent_location": [ + { + "end_col": 23, + "end_line": 37, + "input_file": { + "filename": "src/utils/math.cairo" + }, + "parent_location": [ + { + "end_col": 64, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/sub/a49f9d6b25691b4ace0e3e73a0d33c62f2c75dda12a30f4c46963454ebdd630b.cairo" + }, + "parent_location": [ + { + "end_col": 9, + "end_line": 37, + "input_file": { + "filename": "src/utils/math.cairo" + }, + "start_col": 6, + "start_line": 37 + }, + "While constructing the external wrapper for:" + ], + "start_col": 42, + "start_line": 1 + }, + "While expanding the reference '__calldata_arg_arr_len' in:" + ], + "start_col": 10, + "start_line": 37 + }, + "While handling calldata argument 'arr_len'" + ], + "start_col": 30, + "start_line": 1 + } + }, + "247": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.sub" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 53, + "end_line": 5, + "input_file": { + "filename": "autogen/starknet/arg_processor/fea0fa4d5b8fa7ee6c308136c9e398c54fa29cc00c6b3467d383d54910b51adf.cairo" + }, + "parent_location": [ + { + "end_col": 35, + "end_line": 37, + "input_file": { + "filename": "src/utils/math.cairo" + }, + "parent_location": [ + { + "end_col": 88, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/sub/a49f9d6b25691b4ace0e3e73a0d33c62f2c75dda12a30f4c46963454ebdd630b.cairo" + }, + "parent_location": [ + { + "end_col": 9, + "end_line": 37, + "input_file": { + "filename": "src/utils/math.cairo" + }, + "start_col": 6, + "start_line": 37 + }, + "While constructing the external wrapper for:" + ], + "start_col": 70, + "start_line": 1 + }, + "While expanding the reference '__calldata_arg_arr' in:" + ], + "start_col": 25, + "start_line": 37 + }, + "While handling calldata argument 'arr'" + ], + "start_col": 26, + "start_line": 5 + } + }, + "249": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.sub" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 9, + "end_line": 37, + "input_file": { + "filename": "src/utils/math.cairo" + }, + "start_col": 6, + "start_line": 37 + } + }, + "251": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.sub" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 67, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/sub/fd099223670ab5d428127810c2328d37c65c29951c7abc7cebaa651b40be0a6a.cairo" + }, + "parent_location": [ + { + "end_col": 9, + "end_line": 37, + "input_file": { + "filename": "src/utils/math.cairo" + }, + "parent_location": [ + { + "end_col": 38, + "end_line": 3, + "input_file": { + "filename": "autogen/starknet/arg_processor/fea0fa4d5b8fa7ee6c308136c9e398c54fa29cc00c6b3467d383d54910b51adf.cairo" + }, + "parent_location": [ + { + "end_col": 35, + "end_line": 37, + "input_file": { + "filename": "src/utils/math.cairo" + }, + "parent_location": [ + { + "end_col": 92, + "end_line": 2, + "input_file": { + "filename": "autogen/starknet/external/sub/a49f9d6b25691b4ace0e3e73a0d33c62f2c75dda12a30f4c46963454ebdd630b.cairo" + }, + "parent_location": [ + { + "end_col": 9, + "end_line": 37, + "input_file": { + "filename": "src/utils/math.cairo" + }, + "start_col": 6, + "start_line": 37 + }, + "While constructing the external wrapper for:" + ], + "start_col": 77, + "start_line": 2 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 25, + "start_line": 37 + }, + "While handling calldata argument 'arr'" + ], + "start_col": 23, + "start_line": 3 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 6, + "start_line": 37 + }, + "While constructing the external wrapper for:" + ], + "start_col": 23, + "start_line": 1 + } + }, + "252": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.sub" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 14, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/sub/a49f9d6b25691b4ace0e3e73a0d33c62f2c75dda12a30f4c46963454ebdd630b.cairo" + }, + "parent_location": [ + { + "end_col": 9, + "end_line": 37, + "input_file": { + "filename": "src/utils/math.cairo" + }, + "parent_location": [ + { + "end_col": 75, + "end_line": 2, + "input_file": { + "filename": "autogen/starknet/external/sub/a49f9d6b25691b4ace0e3e73a0d33c62f2c75dda12a30f4c46963454ebdd630b.cairo" + }, + "parent_location": [ + { + "end_col": 9, + "end_line": 37, + "input_file": { + "filename": "src/utils/math.cairo" + }, + "start_col": 6, + "start_line": 37 + }, + "While constructing the external wrapper for:" + ], + "start_col": 66, + "start_line": 2 + }, + "While expanding the reference 'ret_value' in:" + ], + "start_col": 6, + "start_line": 37 + }, + "While constructing the external wrapper for:" + ], + "start_col": 5, + "start_line": 1 + } + }, + "253": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.sub" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 42, + "end_line": 3, + "input_file": { + "filename": "autogen/starknet/arg_processor/fea0fa4d5b8fa7ee6c308136c9e398c54fa29cc00c6b3467d383d54910b51adf.cairo" + }, + "parent_location": [ + { + "end_col": 35, + "end_line": 37, + "input_file": { + "filename": "src/utils/math.cairo" + }, + "parent_location": [ + { + "end_col": 92, + "end_line": 2, + "input_file": { + "filename": "autogen/starknet/external/sub/a49f9d6b25691b4ace0e3e73a0d33c62f2c75dda12a30f4c46963454ebdd630b.cairo" + }, + "parent_location": [ + { + "end_col": 9, + "end_line": 37, + "input_file": { + "filename": "src/utils/math.cairo" + }, + "start_col": 6, + "start_line": 37 + }, + "While constructing the external wrapper for:" + ], + "start_col": 77, + "start_line": 2 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 25, + "start_line": 37 + }, + "While handling calldata argument 'arr'" + ], + "start_col": 23, + "start_line": 3 + } + }, + "255": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.sub" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 93, + "end_line": 2, + "input_file": { + "filename": "autogen/starknet/external/sub/a49f9d6b25691b4ace0e3e73a0d33c62f2c75dda12a30f4c46963454ebdd630b.cairo" + }, + "parent_location": [ + { + "end_col": 9, + "end_line": 37, + "input_file": { + "filename": "src/utils/math.cairo" + }, + "start_col": 6, + "start_line": 37 + }, + "While constructing the external wrapper for:" + ], + "start_col": 48, + "start_line": 2 + } + }, + "257": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.sub" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 63, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/sub/3f2c77ab4e9866f148094b3f3c2497496b7ce8700b8370e7f1bc10658a33d640.cairo" + }, + "parent_location": [ + { + "end_col": 9, + "end_line": 37, + "input_file": { + "filename": "src/utils/math.cairo" + }, + "parent_location": [ + { + "end_col": 20, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/sub/93099bea078b47105ec080392b498d5fa602cf51e6076f4584216f16f5b4c273.cairo" + }, + "parent_location": [ + { + "end_col": 9, + "end_line": 37, + "input_file": { + "filename": "src/utils/math.cairo" + }, + "start_col": 6, + "start_line": 37 + }, + "While constructing the external wrapper for:" + ], + "start_col": 9, + "start_line": 1 + }, + "While expanding the reference 'syscall_ptr' in:" + ], + "start_col": 6, + "start_line": 37 + }, + "While constructing the external wrapper for:" + ], + "start_col": 19, + "start_line": 1 + } + }, + "258": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.sub" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 21, + "end_line": 2, + "input_file": { + "filename": "autogen/starknet/external/sub/a49f9d6b25691b4ace0e3e73a0d33c62f2c75dda12a30f4c46963454ebdd630b.cairo" + }, + "parent_location": [ + { + "end_col": 9, + "end_line": 37, + "input_file": { + "filename": "src/utils/math.cairo" + }, + "parent_location": [ + { + "end_col": 36, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/sub/93099bea078b47105ec080392b498d5fa602cf51e6076f4584216f16f5b4c273.cairo" + }, + "parent_location": [ + { + "end_col": 9, + "end_line": 37, + "input_file": { + "filename": "src/utils/math.cairo" + }, + "start_col": 6, + "start_line": 37 + }, + "While constructing the external wrapper for:" + ], + "start_col": 21, + "start_line": 1 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 6, + "start_line": 37 + }, + "While constructing the external wrapper for:" + ], + "start_col": 6, + "start_line": 2 + } + }, + "259": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.sub" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 35, + "end_line": 2, + "input_file": { + "filename": "autogen/starknet/external/sub/a49f9d6b25691b4ace0e3e73a0d33c62f2c75dda12a30f4c46963454ebdd630b.cairo" + }, + "parent_location": [ + { + "end_col": 9, + "end_line": 37, + "input_file": { + "filename": "src/utils/math.cairo" + }, + "parent_location": [ + { + "end_col": 49, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/sub/93099bea078b47105ec080392b498d5fa602cf51e6076f4584216f16f5b4c273.cairo" + }, + "parent_location": [ + { + "end_col": 9, + "end_line": 37, + "input_file": { + "filename": "src/utils/math.cairo" + }, + "start_col": 6, + "start_line": 37 + }, + "While constructing the external wrapper for:" + ], + "start_col": 37, + "start_line": 1 + }, + "While expanding the reference 'retdata_size' in:" + ], + "start_col": 6, + "start_line": 37 + }, + "While constructing the external wrapper for:" + ], + "start_col": 23, + "start_line": 2 + } + }, + "260": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.sub" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 44, + "end_line": 2, + "input_file": { + "filename": "autogen/starknet/external/sub/a49f9d6b25691b4ace0e3e73a0d33c62f2c75dda12a30f4c46963454ebdd630b.cairo" + }, + "parent_location": [ + { + "end_col": 9, + "end_line": 37, + "input_file": { + "filename": "src/utils/math.cairo" + }, + "parent_location": [ + { + "end_col": 57, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/sub/93099bea078b47105ec080392b498d5fa602cf51e6076f4584216f16f5b4c273.cairo" + }, + "parent_location": [ + { + "end_col": 9, + "end_line": 37, + "input_file": { + "filename": "src/utils/math.cairo" + }, + "start_col": 6, + "start_line": 37 + }, + "While constructing the external wrapper for:" + ], + "start_col": 50, + "start_line": 1 + }, + "While expanding the reference 'retdata' in:" + ], + "start_col": 6, + "start_line": 37 + }, + "While constructing the external wrapper for:" + ], + "start_col": 37, + "start_line": 2 + } + }, + "261": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.sub" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 59, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/sub/93099bea078b47105ec080392b498d5fa602cf51e6076f4584216f16f5b4c273.cairo" + }, + "parent_location": [ + { + "end_col": 9, + "end_line": 37, + "input_file": { + "filename": "src/utils/math.cairo" + }, + "start_col": 6, + "start_line": 37 + }, + "While constructing the external wrapper for:" + ], + "start_col": 1, + "start_line": 1 + } + }, + "262": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.pow" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 25, + "end_line": 45, + "input_file": { + "filename": "src/utils/math.cairo" + }, + "parent_location": [ + { + "end_col": 25, + "end_line": 5, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/pow.cairo" + }, + "parent_location": [ + { + "end_col": 27, + "end_line": 46, + "input_file": { + "filename": "src/utils/math.cairo" + }, + "start_col": 12, + "start_line": 46 + }, + "While trying to retrieve the implicit argument 'range_check_ptr' in:" + ], + "start_col": 10, + "start_line": 5 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 10, + "start_line": 45 + } + }, + "263": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.pow" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 31, + "end_line": 45, + "input_file": { + "filename": "src/utils/math.cairo" + }, + "parent_location": [ + { + "end_col": 21, + "end_line": 46, + "input_file": { + "filename": "src/utils/math.cairo" + }, + "start_col": 17, + "start_line": 46 + }, + "While expanding the reference 'base' in:" + ], + "start_col": 27, + "start_line": 45 + } + }, + "264": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.pow" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 36, + "end_line": 45, + "input_file": { + "filename": "src/utils/math.cairo" + }, + "parent_location": [ + { + "end_col": 26, + "end_line": 46, + "input_file": { + "filename": "src/utils/math.cairo" + }, + "start_col": 23, + "start_line": 46 + }, + "While expanding the reference 'exp' in:" + ], + "start_col": 33, + "start_line": 45 + } + }, + "265": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.pow" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 27, + "end_line": 46, + "input_file": { + "filename": "src/utils/math.cairo" + }, + "start_col": 12, + "start_line": 46 + } + }, + "267": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.pow" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 28, + "end_line": 46, + "input_file": { + "filename": "src/utils/math.cairo" + }, + "start_col": 5, + "start_line": 46 + } + }, + "268": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.pow_encode_return" + ], + "flow_tracking_data": null, + "hints": [ + { + "location": { + "end_col": 38, + "end_line": 3, + "input_file": { + "filename": "autogen/starknet/external/return/pow/a76eb4a6ee5ad9d7978800a136a736d7f23e909556d3620925d8b0f2246f336d.cairo" + }, + "parent_location": [ + { + "end_col": 9, + "end_line": 45, + "input_file": { + "filename": "src/utils/math.cairo" + }, + "start_col": 6, + "start_line": 45 + }, + "While handling return value of" + ], + "start_col": 5, + "start_line": 3 + }, + "n_prefix_newlines": 0 + } + ], + "inst": { + "end_col": 18, + "end_line": 4, + "input_file": { + "filename": "autogen/starknet/external/return/pow/a76eb4a6ee5ad9d7978800a136a736d7f23e909556d3620925d8b0f2246f336d.cairo" + }, + "parent_location": [ + { + "end_col": 9, + "end_line": 45, + "input_file": { + "filename": "src/utils/math.cairo" + }, + "start_col": 6, + "start_line": 45 + }, + "While handling return value of" + ], + "start_col": 5, + "start_line": 4 + } + }, + "270": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.pow_encode_return" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 45, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/arg_processor/293368f3a0e12cfcf22314a31e13b9801e95a5b8b2b71822a2fbbdf5a01ea795.cairo" + }, + "parent_location": [ + { + "end_col": 51, + "end_line": 45, + "input_file": { + "filename": "src/utils/math.cairo" + }, + "start_col": 42, + "start_line": 45 + }, + "While handling return value 'res'" + ], + "start_col": 1, + "start_line": 1 + } + }, + "271": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.pow_encode_return" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 48, + "end_line": 2, + "input_file": { + "filename": "autogen/starknet/arg_processor/293368f3a0e12cfcf22314a31e13b9801e95a5b8b2b71822a2fbbdf5a01ea795.cairo" + }, + "parent_location": [ + { + "end_col": 51, + "end_line": 45, + "input_file": { + "filename": "src/utils/math.cairo" + }, + "parent_location": [ + { + "end_col": 36, + "end_line": 11, + "input_file": { + "filename": "autogen/starknet/external/return/pow/a76eb4a6ee5ad9d7978800a136a736d7f23e909556d3620925d8b0f2246f336d.cairo" + }, + "parent_location": [ + { + "end_col": 9, + "end_line": 45, + "input_file": { + "filename": "src/utils/math.cairo" + }, + "start_col": 6, + "start_line": 45 + }, + "While handling return value of" + ], + "start_col": 18, + "start_line": 11 + }, + "While expanding the reference '__return_value_ptr' in:" + ], + "start_col": 42, + "start_line": 45 + }, + "While handling return value 'res'" + ], + "start_col": 26, + "start_line": 2 + } + }, + "273": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.pow_encode_return" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 63, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/return/pow/a76eb4a6ee5ad9d7978800a136a736d7f23e909556d3620925d8b0f2246f336d.cairo" + }, + "parent_location": [ + { + "end_col": 9, + "end_line": 45, + "input_file": { + "filename": "src/utils/math.cairo" + }, + "parent_location": [ + { + "end_col": 40, + "end_line": 10, + "input_file": { + "filename": "autogen/starknet/external/return/pow/a76eb4a6ee5ad9d7978800a136a736d7f23e909556d3620925d8b0f2246f336d.cairo" + }, + "parent_location": [ + { + "end_col": 9, + "end_line": 45, + "input_file": { + "filename": "src/utils/math.cairo" + }, + "start_col": 6, + "start_line": 45 + }, + "While handling return value of" + ], + "start_col": 25, + "start_line": 10 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 6, + "start_line": 45 + }, + "While handling return value of" + ], + "start_col": 48, + "start_line": 1 + } + }, + "274": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.pow_encode_return" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 63, + "end_line": 11, + "input_file": { + "filename": "autogen/starknet/external/return/pow/a76eb4a6ee5ad9d7978800a136a736d7f23e909556d3620925d8b0f2246f336d.cairo" + }, + "parent_location": [ + { + "end_col": 9, + "end_line": 45, + "input_file": { + "filename": "src/utils/math.cairo" + }, + "start_col": 6, + "start_line": 45 + }, + "While handling return value of" + ], + "start_col": 18, + "start_line": 11 + } + }, + "275": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.pow_encode_return" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 35, + "end_line": 5, + "input_file": { + "filename": "autogen/starknet/external/return/pow/a76eb4a6ee5ad9d7978800a136a736d7f23e909556d3620925d8b0f2246f336d.cairo" + }, + "parent_location": [ + { + "end_col": 9, + "end_line": 45, + "input_file": { + "filename": "src/utils/math.cairo" + }, + "parent_location": [ + { + "end_col": 38, + "end_line": 12, + "input_file": { + "filename": "autogen/starknet/external/return/pow/a76eb4a6ee5ad9d7978800a136a736d7f23e909556d3620925d8b0f2246f336d.cairo" + }, + "parent_location": [ + { + "end_col": 9, + "end_line": 45, + "input_file": { + "filename": "src/utils/math.cairo" + }, + "start_col": 6, + "start_line": 45 + }, + "While handling return value of" + ], + "start_col": 14, + "start_line": 12 + }, + "While expanding the reference '__return_value_ptr_start' in:" + ], + "start_col": 6, + "start_line": 45 + }, + "While handling return value of" + ], + "start_col": 11, + "start_line": 5 + } + }, + "276": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.pow_encode_return" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 40, + "end_line": 12, + "input_file": { + "filename": "autogen/starknet/external/return/pow/a76eb4a6ee5ad9d7978800a136a736d7f23e909556d3620925d8b0f2246f336d.cairo" + }, + "parent_location": [ + { + "end_col": 9, + "end_line": 45, + "input_file": { + "filename": "src/utils/math.cairo" + }, + "start_col": 6, + "start_line": 45 + }, + "While handling return value of" + ], + "start_col": 5, + "start_line": 9 + } + }, + "277": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.pow" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 40, + "end_line": 2, + "input_file": { + "filename": "autogen/starknet/arg_processor/4939ae560bdb24e16025ed1d1573d03742bf719fd4f0c0e5fee3c2d9a7686134.cairo" + }, + "parent_location": [ + { + "end_col": 36, + "end_line": 45, + "input_file": { + "filename": "src/utils/math.cairo" + }, + "parent_location": [ + { + "end_col": 45, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/arg_processor/c31620b02d4d706f0542c989b2aadc01b0981d1f6a5933a8fe4937ace3d70d92.cairo" + }, + "parent_location": [ + { + "end_col": 9, + "end_line": 45, + "input_file": { + "filename": "src/utils/math.cairo" + }, + "parent_location": [ + { + "end_col": 57, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/arg_processor/01cba52f8515996bb9d7070bde81ff39281d096d7024a558efcba6e1fd2402cf.cairo" + }, + "parent_location": [ + { + "end_col": 9, + "end_line": 45, + "input_file": { + "filename": "src/utils/math.cairo" + }, + "start_col": 6, + "start_line": 45 + }, + "While handling calldata of" + ], + "start_col": 35, + "start_line": 1 + }, + "While expanding the reference '__calldata_actual_size' in:" + ], + "start_col": 6, + "start_line": 45 + }, + "While handling calldata of" + ], + "start_col": 31, + "start_line": 1 + }, + "While expanding the reference '__calldata_ptr' in:" + ], + "start_col": 33, + "start_line": 45 + }, + "While handling calldata argument 'exp'" + ], + "start_col": 22, + "start_line": 2 + } + }, + "279": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.pow" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 58, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/arg_processor/01cba52f8515996bb9d7070bde81ff39281d096d7024a558efcba6e1fd2402cf.cairo" + }, + "parent_location": [ + { + "end_col": 9, + "end_line": 45, + "input_file": { + "filename": "src/utils/math.cairo" + }, + "start_col": 6, + "start_line": 45 + }, + "While handling calldata of" + ], + "start_col": 1, + "start_line": 1 + } + }, + "280": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.pow" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 67, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/pow/fd099223670ab5d428127810c2328d37c65c29951c7abc7cebaa651b40be0a6a.cairo" + }, + "parent_location": [ + { + "end_col": 25, + "end_line": 45, + "input_file": { + "filename": "src/utils/math.cairo" + }, + "parent_location": [ + { + "end_col": 63, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/pow/f09f5ed3abc6fbf830770837aa52b004bb2591cf40f6ecccefa42e8e0bcc85c2.cairo" + }, + "parent_location": [ + { + "end_col": 9, + "end_line": 45, + "input_file": { + "filename": "src/utils/math.cairo" + }, + "start_col": 6, + "start_line": 45 + }, + "While constructing the external wrapper for:" + ], + "start_col": 48, + "start_line": 1 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 10, + "start_line": 45 + }, + "While constructing the external wrapper for:" + ], + "start_col": 23, + "start_line": 1 + } + }, + "281": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.pow" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 43, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/arg_processor/85fad649bf7f135456d173552226a6477267725f1aebea2c7719da647e19c5f6.cairo" + }, + "parent_location": [ + { + "end_col": 31, + "end_line": 45, + "input_file": { + "filename": "src/utils/math.cairo" + }, + "parent_location": [ + { + "end_col": 89, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/pow/f09f5ed3abc6fbf830770837aa52b004bb2591cf40f6ecccefa42e8e0bcc85c2.cairo" + }, + "parent_location": [ + { + "end_col": 9, + "end_line": 45, + "input_file": { + "filename": "src/utils/math.cairo" + }, + "start_col": 6, + "start_line": 45 + }, + "While constructing the external wrapper for:" + ], + "start_col": 70, + "start_line": 1 + }, + "While expanding the reference '__calldata_arg_base' in:" + ], + "start_col": 27, + "start_line": 45 + }, + "While handling calldata argument 'base'" + ], + "start_col": 27, + "start_line": 1 + } + }, + "282": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.pow" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 42, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/arg_processor/4939ae560bdb24e16025ed1d1573d03742bf719fd4f0c0e5fee3c2d9a7686134.cairo" + }, + "parent_location": [ + { + "end_col": 36, + "end_line": 45, + "input_file": { + "filename": "src/utils/math.cairo" + }, + "parent_location": [ + { + "end_col": 113, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/pow/f09f5ed3abc6fbf830770837aa52b004bb2591cf40f6ecccefa42e8e0bcc85c2.cairo" + }, + "parent_location": [ + { + "end_col": 9, + "end_line": 45, + "input_file": { + "filename": "src/utils/math.cairo" + }, + "start_col": 6, + "start_line": 45 + }, + "While constructing the external wrapper for:" + ], + "start_col": 95, + "start_line": 1 + }, + "While expanding the reference '__calldata_arg_exp' in:" + ], + "start_col": 33, + "start_line": 45 + }, + "While handling calldata argument 'exp'" + ], + "start_col": 26, + "start_line": 1 + } + }, + "283": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.pow" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 9, + "end_line": 45, + "input_file": { + "filename": "src/utils/math.cairo" + }, + "start_col": 6, + "start_line": 45 + } + }, + "285": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.pow" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 63, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/pow/f09f5ed3abc6fbf830770837aa52b004bb2591cf40f6ecccefa42e8e0bcc85c2.cairo" + }, + "parent_location": [ + { + "end_col": 9, + "end_line": 45, + "input_file": { + "filename": "src/utils/math.cairo" + }, + "parent_location": [ + { + "end_col": 92, + "end_line": 2, + "input_file": { + "filename": "autogen/starknet/external/pow/f09f5ed3abc6fbf830770837aa52b004bb2591cf40f6ecccefa42e8e0bcc85c2.cairo" + }, + "parent_location": [ + { + "end_col": 9, + "end_line": 45, + "input_file": { + "filename": "src/utils/math.cairo" + }, + "start_col": 6, + "start_line": 45 + }, + "While constructing the external wrapper for:" + ], + "start_col": 77, + "start_line": 2 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 6, + "start_line": 45 + }, + "While constructing the external wrapper for:" + ], + "start_col": 48, + "start_line": 1 + } + }, + "286": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.pow" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 93, + "end_line": 2, + "input_file": { + "filename": "autogen/starknet/external/pow/f09f5ed3abc6fbf830770837aa52b004bb2591cf40f6ecccefa42e8e0bcc85c2.cairo" + }, + "parent_location": [ + { + "end_col": 9, + "end_line": 45, + "input_file": { + "filename": "src/utils/math.cairo" + }, + "start_col": 6, + "start_line": 45 + }, + "While constructing the external wrapper for:" + ], + "start_col": 48, + "start_line": 2 + } + }, + "288": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.pow" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 63, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/pow/3f2c77ab4e9866f148094b3f3c2497496b7ce8700b8370e7f1bc10658a33d640.cairo" + }, + "parent_location": [ + { + "end_col": 9, + "end_line": 45, + "input_file": { + "filename": "src/utils/math.cairo" + }, + "parent_location": [ + { + "end_col": 20, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/pow/93099bea078b47105ec080392b498d5fa602cf51e6076f4584216f16f5b4c273.cairo" + }, + "parent_location": [ + { + "end_col": 9, + "end_line": 45, + "input_file": { + "filename": "src/utils/math.cairo" + }, + "start_col": 6, + "start_line": 45 + }, + "While constructing the external wrapper for:" + ], + "start_col": 9, + "start_line": 1 + }, + "While expanding the reference 'syscall_ptr' in:" + ], + "start_col": 6, + "start_line": 45 + }, + "While constructing the external wrapper for:" + ], + "start_col": 19, + "start_line": 1 + } + }, + "289": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.pow" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 21, + "end_line": 2, + "input_file": { + "filename": "autogen/starknet/external/pow/f09f5ed3abc6fbf830770837aa52b004bb2591cf40f6ecccefa42e8e0bcc85c2.cairo" + }, + "parent_location": [ + { + "end_col": 9, + "end_line": 45, + "input_file": { + "filename": "src/utils/math.cairo" + }, + "parent_location": [ + { + "end_col": 36, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/pow/93099bea078b47105ec080392b498d5fa602cf51e6076f4584216f16f5b4c273.cairo" + }, + "parent_location": [ + { + "end_col": 9, + "end_line": 45, + "input_file": { + "filename": "src/utils/math.cairo" + }, + "start_col": 6, + "start_line": 45 + }, + "While constructing the external wrapper for:" + ], + "start_col": 21, + "start_line": 1 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 6, + "start_line": 45 + }, + "While constructing the external wrapper for:" + ], + "start_col": 6, + "start_line": 2 + } + }, + "290": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.pow" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 35, + "end_line": 2, + "input_file": { + "filename": "autogen/starknet/external/pow/f09f5ed3abc6fbf830770837aa52b004bb2591cf40f6ecccefa42e8e0bcc85c2.cairo" + }, + "parent_location": [ + { + "end_col": 9, + "end_line": 45, + "input_file": { + "filename": "src/utils/math.cairo" + }, + "parent_location": [ + { + "end_col": 49, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/pow/93099bea078b47105ec080392b498d5fa602cf51e6076f4584216f16f5b4c273.cairo" + }, + "parent_location": [ + { + "end_col": 9, + "end_line": 45, + "input_file": { + "filename": "src/utils/math.cairo" + }, + "start_col": 6, + "start_line": 45 + }, + "While constructing the external wrapper for:" + ], + "start_col": 37, + "start_line": 1 + }, + "While expanding the reference 'retdata_size' in:" + ], + "start_col": 6, + "start_line": 45 + }, + "While constructing the external wrapper for:" + ], + "start_col": 23, + "start_line": 2 + } + }, + "291": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.pow" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 44, + "end_line": 2, + "input_file": { + "filename": "autogen/starknet/external/pow/f09f5ed3abc6fbf830770837aa52b004bb2591cf40f6ecccefa42e8e0bcc85c2.cairo" + }, + "parent_location": [ + { + "end_col": 9, + "end_line": 45, + "input_file": { + "filename": "src/utils/math.cairo" + }, + "parent_location": [ + { + "end_col": 57, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/pow/93099bea078b47105ec080392b498d5fa602cf51e6076f4584216f16f5b4c273.cairo" + }, + "parent_location": [ + { + "end_col": 9, + "end_line": 45, + "input_file": { + "filename": "src/utils/math.cairo" + }, + "start_col": 6, + "start_line": 45 + }, + "While constructing the external wrapper for:" + ], + "start_col": 50, + "start_line": 1 + }, + "While expanding the reference 'retdata' in:" + ], + "start_col": 6, + "start_line": 45 + }, + "While constructing the external wrapper for:" + ], + "start_col": 37, + "start_line": 2 + } + }, + "292": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.pow" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 59, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/pow/93099bea078b47105ec080392b498d5fa602cf51e6076f4584216f16f5b4c273.cairo" + }, + "parent_location": [ + { + "end_col": 9, + "end_line": 45, + "input_file": { + "filename": "src/utils/math.cairo" + }, + "start_col": 6, + "start_line": 45 + }, + "While constructing the external wrapper for:" + ], + "start_col": 1, + "start_line": 1 + } + } + } + }, "hints": { "6": [ { diff --git a/packages/starksheet-cairo/build/math_abi.json b/packages/starksheet-cairo/build/math_abi.json deleted file mode 100644 index 58778b0b..00000000 --- a/packages/starksheet-cairo/build/math_abi.json +++ /dev/null @@ -1,107 +0,0 @@ -[ - { - "inputs": [ - { - "name": "arr_len", - "type": "felt" - }, - { - "name": "arr", - "type": "felt*" - } - ], - "name": "sum", - "outputs": [ - { - "name": "res", - "type": "felt" - } - ], - "stateMutability": "view", - "type": "function" - }, - { - "inputs": [ - { - "name": "arr_len", - "type": "felt" - }, - { - "name": "arr", - "type": "felt*" - } - ], - "name": "prod", - "outputs": [ - { - "name": "res", - "type": "felt" - } - ], - "stateMutability": "view", - "type": "function" - }, - { - "inputs": [ - { - "name": "arr_len", - "type": "felt" - }, - { - "name": "arr", - "type": "felt*" - } - ], - "name": "div", - "outputs": [ - { - "name": "res", - "type": "felt" - } - ], - "stateMutability": "view", - "type": "function" - }, - { - "inputs": [ - { - "name": "arr_len", - "type": "felt" - }, - { - "name": "arr", - "type": "felt*" - } - ], - "name": "sub", - "outputs": [ - { - "name": "res", - "type": "felt" - } - ], - "stateMutability": "view", - "type": "function" - }, - { - "inputs": [ - { - "name": "base", - "type": "felt" - }, - { - "name": "exp", - "type": "felt" - } - ], - "name": "pow", - "outputs": [ - { - "name": "res", - "type": "felt" - } - ], - "stateMutability": "view", - "type": "function" - } -] diff --git a/packages/starksheet-cairo/build/proxy.json b/packages/starksheet-cairo/build/proxy.json index a1e2ceaa..191bd88b 100644 --- a/packages/starksheet-cairo/build/proxy.json +++ b/packages/starksheet-cairo/build/proxy.json @@ -677,7 +677,13622 @@ "0x48127ffb7fff8000", "0x208b7fff7fff7ffe" ], - "debug_info": null, + "debug_info": { + "file_contents": { + "autogen/starknet/arg_processor/01cba52f8515996bb9d7070bde81ff39281d096d7024a558efcba6e1fd2402cf.cairo": "assert [cast(fp + (-4), felt*)] = __calldata_actual_size;\n", + "autogen/starknet/arg_processor/1b89ef2fbbb6943f8dd42dcbdc1e699db576228e665ff8b5ae3c1c3c39cb1777.cairo": "assert [__calldata_ptr] = newAdmin;\nlet __calldata_ptr = __calldata_ptr + 1;\n", + "autogen/starknet/arg_processor/34daa67a71080d8fd9f43eba24edcda1398bd08222cccf4a6b905a714e6e9afa.cairo": "assert [__return_value_ptr] = ret_value.class_hash;\nlet __return_value_ptr = __return_value_ptr + 1;\n", + "autogen/starknet/arg_processor/3f2af33c875170cc67ae2f432d9bbef7059830e387aaef0a4e6fb0dbf7fc2331.cairo": "let __calldata_arg_proxy_admin = [__calldata_ptr];\nlet __calldata_ptr = __calldata_ptr + 1;\n", + "autogen/starknet/arg_processor/60a1d0127411d0a1f9a364f5245ae52da8e752ea42edf6ddaf5217c8bdeb8bad.cairo": "// Check that the length is non-negative.\nassert [range_check_ptr] = __calldata_arg_calldata_len;\nlet range_check_ptr = range_check_ptr + 1;\n// Create the reference.\nlet __calldata_arg_calldata = cast(__calldata_ptr, felt*);\n// Use 'tempvar' instead of 'let' to avoid repeating this computation for the\n// following arguments.\ntempvar __calldata_ptr = __calldata_ptr + __calldata_arg_calldata_len * 1;\n", + "autogen/starknet/arg_processor/635ec603a576c378b96508409ebffc1de2cc10639922f57a6f56f1417ab7afa6.cairo": "assert [__calldata_ptr] = previousAdmin;\nlet __calldata_ptr = __calldata_ptr + 1;\n", + "autogen/starknet/arg_processor/6a5e642bec1f7526308a73478077ef051a66625a56a9015e448ad8b892166ca8.cairo": "let __calldata_arg_class_hash = [__calldata_ptr];\nlet __calldata_ptr = __calldata_ptr + 1;\n", + "autogen/starknet/arg_processor/8ec556ced0db43684bb87c7dc80e7b39277fb7b45da4a9dc079ccdf1e7642479.cairo": "assert [__calldata_ptr] = implementation;\nlet __calldata_ptr = __calldata_ptr + 1;\n", + "autogen/starknet/arg_processor/b3680ca562908399dc897f0a23ed55686e0fba9ab4a18330c139e561aa7b41d8.cairo": "let __calldata_arg_calldata_len = [__calldata_ptr];\nlet __calldata_ptr = __calldata_ptr + 1;\n", + "autogen/starknet/arg_processor/c31620b02d4d706f0542c989b2aadc01b0981d1f6a5933a8fe4937ace3d70d92.cairo": "let __calldata_actual_size = __calldata_ptr - cast([cast(fp + (-3), felt**)], felt*);\n", + "autogen/starknet/arg_processor/c7e46960a2fa69d5c0a7282c1f15259a900e9ff0845fd5fc8eb52633fe023f7c.cairo": "let __calldata_arg_implementation_hash = [__calldata_ptr];\nlet __calldata_ptr = __calldata_ptr + 1;\n", + "autogen/starknet/arg_processor/efce3bc97e0a7923c6699414008fef8ca0564718704acd4ae52e0b77f0a7c01e.cairo": "let __calldata_arg_selector = [__calldata_ptr];\nlet __calldata_ptr = __calldata_ptr + 1;\n", + "autogen/starknet/event/AdminChanged/6150feec30bd48bfd0f446ed8c155a6d911a2c3fb3ec7a980733900416819259.cairo": "emit_event(keys_len=1, keys=__keys_ptr, data_len=__calldata_ptr - __data_ptr, data=__data_ptr);\nreturn ();\n", + "autogen/starknet/event/AdminChanged/8220fde17ca5479f12ae71a8036f4d354fe722f2c036da610b53511924e4ee84.cairo": "alloc_locals;\nlet (local __keys_ptr: felt*) = alloc();\nassert [__keys_ptr] = SELECTOR;\nlet (local __data_ptr: felt*) = alloc();\nlet __calldata_ptr = __data_ptr;\n", + "autogen/starknet/event/AdminChanged/a7a8ae41be29ac9f4f6c3b7837c448d787ca051dd1ade98f409e54d33d112504.cairo": "func emit{syscall_ptr: felt*, range_check_ptr}() {\n}\n", + "autogen/starknet/event/Upgraded/6150feec30bd48bfd0f446ed8c155a6d911a2c3fb3ec7a980733900416819259.cairo": "emit_event(keys_len=1, keys=__keys_ptr, data_len=__calldata_ptr - __data_ptr, data=__data_ptr);\nreturn ();\n", + "autogen/starknet/event/Upgraded/8220fde17ca5479f12ae71a8036f4d354fe722f2c036da610b53511924e4ee84.cairo": "alloc_locals;\nlet (local __keys_ptr: felt*) = alloc();\nassert [__keys_ptr] = SELECTOR;\nlet (local __data_ptr: felt*) = alloc();\nlet __calldata_ptr = __data_ptr;\n", + "autogen/starknet/event/Upgraded/a7a8ae41be29ac9f4f6c3b7837c448d787ca051dd1ade98f409e54d33d112504.cairo": "func emit{syscall_ptr: felt*, range_check_ptr}() {\n}\n", + "autogen/starknet/external/__default__/741ea357d6336b0bed7bf0472425acd0311d543883b803388880e60a232040c7.cairo": "let range_check_ptr = [cast([cast(fp + (-5), felt**)] + 2, felt*)];\n", + "autogen/starknet/external/__default__/74d1912275914830da60365bd64f810a85eb6f691ab84ce92d5eb5e532ea2828.cairo": "let ret_value = __wrapped_func{syscall_ptr=syscall_ptr, pedersen_ptr=pedersen_ptr, range_check_ptr=range_check_ptr}(selector=[cast(fp + (-6), felt*)], calldata_size=[cast(fp + (-4), felt*)], calldata=[cast(fp + (-3), felt**)],);\nlet retdata_size = ret_value.retdata_size;\nlet retdata = ret_value.retdata;\n", + "autogen/starknet/external/__default__/9684a85e93c782014ca14293edea4eb2502039a5a7b6538ecd39c56faaf12529.cairo": "let pedersen_ptr = [cast([cast(fp + (-5), felt**)] + 1, starkware.cairo.common.cairo_builtins.HashBuiltin**)];\n", + "autogen/starknet/external/__default__/b2c52ca2d2a8fc8791a983086d8716c5eacd0c3d62934914d2286f84b98ff4cb.cairo": "let syscall_ptr = [cast([cast(fp + (-5), felt**)] + 0, felt**)];\n", + "autogen/starknet/external/__default__/da17921a4e81c09e730800bbf23bfdbe5e9e6bfaedc59d80fbf62087fa43c27d.cairo": "return (syscall_ptr,pedersen_ptr,range_check_ptr,retdata_size,retdata);\n", + "autogen/starknet/external/__l1_default__/3a69c47091149a3803fd6768a1d0ff324fc3fd5dd88bf37077db49b57745357c.cairo": "let ret_value = __wrapped_func{syscall_ptr=syscall_ptr, pedersen_ptr=pedersen_ptr, range_check_ptr=range_check_ptr}(selector=[cast(fp + (-6), felt*)], calldata_size=[cast(fp + (-4), felt*)], calldata=[cast(fp + (-3), felt**)],);\n%{ memory[ap] = segments.add() %} // Allocate memory for return value.\ntempvar retdata: felt*;\nlet retdata_size = 0;\n", + "autogen/starknet/external/__l1_default__/741ea357d6336b0bed7bf0472425acd0311d543883b803388880e60a232040c7.cairo": "let range_check_ptr = [cast([cast(fp + (-5), felt**)] + 2, felt*)];\n", + "autogen/starknet/external/__l1_default__/9684a85e93c782014ca14293edea4eb2502039a5a7b6538ecd39c56faaf12529.cairo": "let pedersen_ptr = [cast([cast(fp + (-5), felt**)] + 1, starkware.cairo.common.cairo_builtins.HashBuiltin**)];\n", + "autogen/starknet/external/__l1_default__/b2c52ca2d2a8fc8791a983086d8716c5eacd0c3d62934914d2286f84b98ff4cb.cairo": "let syscall_ptr = [cast([cast(fp + (-5), felt**)] + 0, felt**)];\n", + "autogen/starknet/external/__l1_default__/da17921a4e81c09e730800bbf23bfdbe5e9e6bfaedc59d80fbf62087fa43c27d.cairo": "return (syscall_ptr,pedersen_ptr,range_check_ptr,retdata_size,retdata);\n", + "autogen/starknet/external/constructor/741ea357d6336b0bed7bf0472425acd0311d543883b803388880e60a232040c7.cairo": "let range_check_ptr = [cast([cast(fp + (-5), felt**)] + 2, felt*)];\n", + "autogen/starknet/external/constructor/9684a85e93c782014ca14293edea4eb2502039a5a7b6538ecd39c56faaf12529.cairo": "let pedersen_ptr = [cast([cast(fp + (-5), felt**)] + 1, starkware.cairo.common.cairo_builtins.HashBuiltin**)];\n", + "autogen/starknet/external/constructor/a63470f916c9fc15a1cdacb13e6bca67fadb791bed8c7bda38a4b758694cd880.cairo": "let ret_value = __wrapped_func{syscall_ptr=syscall_ptr, pedersen_ptr=pedersen_ptr, range_check_ptr=range_check_ptr}(proxy_admin=__calldata_arg_proxy_admin, implementation_hash=__calldata_arg_implementation_hash, selector=__calldata_arg_selector, calldata_len=__calldata_arg_calldata_len, calldata=__calldata_arg_calldata,);\n%{ memory[ap] = segments.add() %} // Allocate memory for return value.\ntempvar retdata: felt*;\nlet retdata_size = 0;\n", + "autogen/starknet/external/constructor/b2c52ca2d2a8fc8791a983086d8716c5eacd0c3d62934914d2286f84b98ff4cb.cairo": "let syscall_ptr = [cast([cast(fp + (-5), felt**)] + 0, felt**)];\n", + "autogen/starknet/external/constructor/da17921a4e81c09e730800bbf23bfdbe5e9e6bfaedc59d80fbf62087fa43c27d.cairo": "return (syscall_ptr,pedersen_ptr,range_check_ptr,retdata_size,retdata);\n", + "autogen/starknet/external/get_implementation_hash/741ea357d6336b0bed7bf0472425acd0311d543883b803388880e60a232040c7.cairo": "let range_check_ptr = [cast([cast(fp + (-5), felt**)] + 2, felt*)];\n", + "autogen/starknet/external/get_implementation_hash/8e6af712eb2d55b31152ae8d0e9d45fa59efd85e61cbd269d4a00bfc7cfab13d.cairo": "let ret_value = __wrapped_func{syscall_ptr=syscall_ptr, pedersen_ptr=pedersen_ptr, range_check_ptr=range_check_ptr}();\nlet (range_check_ptr, retdata_size, retdata) = get_implementation_hash_encode_return(ret_value, range_check_ptr);\n", + "autogen/starknet/external/get_implementation_hash/9684a85e93c782014ca14293edea4eb2502039a5a7b6538ecd39c56faaf12529.cairo": "let pedersen_ptr = [cast([cast(fp + (-5), felt**)] + 1, starkware.cairo.common.cairo_builtins.HashBuiltin**)];\n", + "autogen/starknet/external/get_implementation_hash/b2c52ca2d2a8fc8791a983086d8716c5eacd0c3d62934914d2286f84b98ff4cb.cairo": "let syscall_ptr = [cast([cast(fp + (-5), felt**)] + 0, felt**)];\n", + "autogen/starknet/external/get_implementation_hash/da17921a4e81c09e730800bbf23bfdbe5e9e6bfaedc59d80fbf62087fa43c27d.cairo": "return (syscall_ptr,pedersen_ptr,range_check_ptr,retdata_size,retdata);\n", + "autogen/starknet/external/return/get_implementation_hash/0cddee7ff6a1a85d58b0d111d66ddbe9f647369acbda388d9de2599ddee9feff.cairo": "func get_implementation_hash_encode_return(ret_value: (class_hash: felt), range_check_ptr) -> (\n range_check_ptr: felt, data_len: felt, data: felt*) {\n %{ memory[ap] = segments.add() %}\n alloc_locals;\n local __return_value_ptr_start: felt*;\n let __return_value_ptr = __return_value_ptr_start;\n with range_check_ptr {\n }\n return (\n range_check_ptr=range_check_ptr,\n data_len=__return_value_ptr - __return_value_ptr_start,\n data=__return_value_ptr_start);\n}\n", + "autogen/starknet/external/set_implementation_hash/741ea357d6336b0bed7bf0472425acd0311d543883b803388880e60a232040c7.cairo": "let range_check_ptr = [cast([cast(fp + (-5), felt**)] + 2, felt*)];\n", + "autogen/starknet/external/set_implementation_hash/9684a85e93c782014ca14293edea4eb2502039a5a7b6538ecd39c56faaf12529.cairo": "let pedersen_ptr = [cast([cast(fp + (-5), felt**)] + 1, starkware.cairo.common.cairo_builtins.HashBuiltin**)];\n", + "autogen/starknet/external/set_implementation_hash/b2c52ca2d2a8fc8791a983086d8716c5eacd0c3d62934914d2286f84b98ff4cb.cairo": "let syscall_ptr = [cast([cast(fp + (-5), felt**)] + 0, felt**)];\n", + "autogen/starknet/external/set_implementation_hash/da17921a4e81c09e730800bbf23bfdbe5e9e6bfaedc59d80fbf62087fa43c27d.cairo": "return (syscall_ptr,pedersen_ptr,range_check_ptr,retdata_size,retdata);\n", + "autogen/starknet/external/set_implementation_hash/eedf6b4a90e176edbee387bcb2f48c00e957556d2a843e7a72a612c8f792df2a.cairo": "let ret_value = __wrapped_func{syscall_ptr=syscall_ptr, pedersen_ptr=pedersen_ptr, range_check_ptr=range_check_ptr}(class_hash=__calldata_arg_class_hash,);\n%{ memory[ap] = segments.add() %} // Allocate memory for return value.\ntempvar retdata: felt*;\nlet retdata_size = 0;\n", + "autogen/starknet/storage_var/Proxy_admin/decl.cairo": "namespace Proxy_admin {\n from starkware.starknet.common.storage import normalize_address\n from starkware.starknet.common.syscalls import storage_read, storage_write\n from starkware.cairo.common.cairo_builtins import HashBuiltin\n from starkware.cairo.common.hash import hash2\n\n func addr{pedersen_ptr: HashBuiltin*, range_check_ptr}() -> (res: felt) {\n let res = 0;\n call hash2;\n call normalize_address;\n }\n\n func read{syscall_ptr: felt*, pedersen_ptr: HashBuiltin*, range_check_ptr}() -> (admin: felt) {\n let storage_addr = 0;\n call addr;\n call storage_read;\n }\n\n func write{syscall_ptr: felt*, pedersen_ptr: HashBuiltin*, range_check_ptr}(value: felt) {\n let storage_addr = 0;\n call addr;\n call storage_write;\n }\n}", + "autogen/starknet/storage_var/Proxy_admin/impl.cairo": "namespace Proxy_admin {\n from starkware.starknet.common.storage import normalize_address\n from starkware.starknet.common.syscalls import storage_read, storage_write\n from starkware.cairo.common.cairo_builtins import HashBuiltin\n from starkware.cairo.common.hash import hash2\n\n func addr{pedersen_ptr: HashBuiltin*, range_check_ptr}() -> (res: felt) {\n let res = 420809302088575566661732159258626015934899866033455122060647015585080981641;\n return (res=res);\n }\n\n func read{syscall_ptr: felt*, pedersen_ptr: HashBuiltin*, range_check_ptr}() -> (admin: felt) {\n let (storage_addr) = addr();\n let (__storage_var_temp0) = storage_read(address=storage_addr + 0);\n\n tempvar syscall_ptr = syscall_ptr;\n tempvar pedersen_ptr = pedersen_ptr;\n tempvar range_check_ptr = range_check_ptr;\n tempvar __storage_var_temp0: felt = __storage_var_temp0;\n return ([cast(&__storage_var_temp0, felt*)],);\n }\n\n func write{syscall_ptr: felt*, pedersen_ptr: HashBuiltin*, range_check_ptr}(value: felt) {\n let (storage_addr) = addr();\n storage_write(address=storage_addr + 0, value=[cast(&value, felt) + 0]);\n return ();\n }\n}", + "autogen/starknet/storage_var/Proxy_implementation_hash/decl.cairo": "namespace Proxy_implementation_hash {\n from starkware.starknet.common.storage import normalize_address\n from starkware.starknet.common.syscalls import storage_read, storage_write\n from starkware.cairo.common.cairo_builtins import HashBuiltin\n from starkware.cairo.common.hash import hash2\n\n func addr{pedersen_ptr: HashBuiltin*, range_check_ptr}() -> (res: felt) {\n let res = 0;\n call hash2;\n call normalize_address;\n }\n\n func read{syscall_ptr: felt*, pedersen_ptr: HashBuiltin*, range_check_ptr}() -> (\n implementation: felt\n ) {\n let storage_addr = 0;\n call addr;\n call storage_read;\n }\n\n func write{syscall_ptr: felt*, pedersen_ptr: HashBuiltin*, range_check_ptr}(value: felt) {\n let storage_addr = 0;\n call addr;\n call storage_write;\n }\n}", + "autogen/starknet/storage_var/Proxy_implementation_hash/impl.cairo": "namespace Proxy_implementation_hash {\n from starkware.starknet.common.storage import normalize_address\n from starkware.starknet.common.syscalls import storage_read, storage_write\n from starkware.cairo.common.cairo_builtins import HashBuiltin\n from starkware.cairo.common.hash import hash2\n\n func addr{pedersen_ptr: HashBuiltin*, range_check_ptr}() -> (res: felt) {\n let res = 1783935019461685855687084032167085762428877981963606680389089912112530844880;\n return (res=res);\n }\n\n func read{syscall_ptr: felt*, pedersen_ptr: HashBuiltin*, range_check_ptr}() -> (\n implementation: felt\n ) {\n let (storage_addr) = addr();\n let (__storage_var_temp0) = storage_read(address=storage_addr + 0);\n\n tempvar syscall_ptr = syscall_ptr;\n tempvar pedersen_ptr = pedersen_ptr;\n tempvar range_check_ptr = range_check_ptr;\n tempvar __storage_var_temp0: felt = __storage_var_temp0;\n return ([cast(&__storage_var_temp0, felt*)],);\n }\n\n func write{syscall_ptr: felt*, pedersen_ptr: HashBuiltin*, range_check_ptr}(value: felt) {\n let (storage_addr) = addr();\n storage_write(address=storage_addr + 0, value=[cast(&value, felt) + 0]);\n return ();\n }\n}", + "autogen/starknet/storage_var/Proxy_initialized/decl.cairo": "namespace Proxy_initialized {\n from starkware.starknet.common.storage import normalize_address\n from starkware.starknet.common.syscalls import storage_read, storage_write\n from starkware.cairo.common.cairo_builtins import HashBuiltin\n from starkware.cairo.common.hash import hash2\n\n func addr{pedersen_ptr: HashBuiltin*, range_check_ptr}() -> (res: felt) {\n let res = 0;\n call hash2;\n call normalize_address;\n }\n\n func read{syscall_ptr: felt*, pedersen_ptr: HashBuiltin*, range_check_ptr}() -> (\n initialized: felt\n ) {\n let storage_addr = 0;\n call addr;\n call storage_read;\n }\n\n func write{syscall_ptr: felt*, pedersen_ptr: HashBuiltin*, range_check_ptr}(value: felt) {\n let storage_addr = 0;\n call addr;\n call storage_write;\n }\n}", + "autogen/starknet/storage_var/Proxy_initialized/impl.cairo": "namespace Proxy_initialized {\n from starkware.starknet.common.storage import normalize_address\n from starkware.starknet.common.syscalls import storage_read, storage_write\n from starkware.cairo.common.cairo_builtins import HashBuiltin\n from starkware.cairo.common.hash import hash2\n\n func addr{pedersen_ptr: HashBuiltin*, range_check_ptr}() -> (res: felt) {\n let res = 1596797181605835465375385856756254615380245139672087060603160900530960374661;\n return (res=res);\n }\n\n func read{syscall_ptr: felt*, pedersen_ptr: HashBuiltin*, range_check_ptr}() -> (\n initialized: felt\n ) {\n let (storage_addr) = addr();\n let (__storage_var_temp0) = storage_read(address=storage_addr + 0);\n\n tempvar syscall_ptr = syscall_ptr;\n tempvar pedersen_ptr = pedersen_ptr;\n tempvar range_check_ptr = range_check_ptr;\n tempvar __storage_var_temp0: felt = __storage_var_temp0;\n return ([cast(&__storage_var_temp0, felt*)],);\n }\n\n func write{syscall_ptr: felt*, pedersen_ptr: HashBuiltin*, range_check_ptr}(value: felt) {\n let (storage_addr) = addr();\n storage_write(address=storage_addr + 0, value=[cast(&value, felt) + 0]);\n return ();\n }\n}" + }, + "instruction_locations": { + "0": { + "accessible_scopes": [ + "starkware.cairo.common.alloc", + "starkware.cairo.common.alloc.alloc" + ], + "flow_tracking_data": null, + "hints": [ + { + "location": { + "end_col": 38, + "end_line": 3, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/alloc.cairo" + }, + "start_col": 5, + "start_line": 3 + }, + "n_prefix_newlines": 0 + } + ], + "inst": { + "end_col": 12, + "end_line": 4, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/alloc.cairo" + }, + "start_col": 5, + "start_line": 4 + } + }, + "2": { + "accessible_scopes": [ + "starkware.cairo.common.alloc", + "starkware.cairo.common.alloc.alloc" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 40, + "end_line": 5, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/alloc.cairo" + }, + "start_col": 5, + "start_line": 5 + } + }, + "3": { + "accessible_scopes": [ + "starkware.starknet.common.syscalls", + "starkware.starknet.common.syscalls.library_call" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 39, + "end_line": 90, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/starknet/common/syscalls.cairo" + }, + "start_col": 18, + "start_line": 90 + } + }, + "5": { + "accessible_scopes": [ + "starkware.starknet.common.syscalls", + "starkware.starknet.common.syscalls.library_call" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 7, + "end_line": 95, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/starknet/common/syscalls.cairo" + }, + "start_col": 5, + "start_line": 89 + } + }, + "6": { + "accessible_scopes": [ + "starkware.starknet.common.syscalls", + "starkware.starknet.common.syscalls.library_call" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 7, + "end_line": 95, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/starknet/common/syscalls.cairo" + }, + "start_col": 5, + "start_line": 89 + } + }, + "7": { + "accessible_scopes": [ + "starkware.starknet.common.syscalls", + "starkware.starknet.common.syscalls.library_call" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 7, + "end_line": 95, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/starknet/common/syscalls.cairo" + }, + "start_col": 5, + "start_line": 89 + } + }, + "8": { + "accessible_scopes": [ + "starkware.starknet.common.syscalls", + "starkware.starknet.common.syscalls.library_call" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 7, + "end_line": 95, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/starknet/common/syscalls.cairo" + }, + "start_col": 5, + "start_line": 89 + } + }, + "9": { + "accessible_scopes": [ + "starkware.starknet.common.syscalls", + "starkware.starknet.common.syscalls.library_call" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 7, + "end_line": 95, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/starknet/common/syscalls.cairo" + }, + "start_col": 5, + "start_line": 89 + } + }, + "10": { + "accessible_scopes": [ + "starkware.starknet.common.syscalls", + "starkware.starknet.common.syscalls.library_call" + ], + "flow_tracking_data": null, + "hints": [ + { + "location": { + "end_col": 87, + "end_line": 96, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/starknet/common/syscalls.cairo" + }, + "start_col": 5, + "start_line": 96 + }, + "n_prefix_newlines": 0 + } + ], + "inst": { + "end_col": 53, + "end_line": 99, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/starknet/common/syscalls.cairo" + }, + "parent_location": [ + { + "end_col": 37, + "end_line": 85, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/starknet/common/syscalls.cairo" + }, + "parent_location": [ + { + "end_col": 75, + "end_line": 100, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/starknet/common/syscalls.cairo" + }, + "start_col": 5, + "start_line": 100 + }, + "While trying to retrieve the implicit argument 'syscall_ptr' in:" + ], + "start_col": 19, + "start_line": 85 + }, + "While expanding the reference 'syscall_ptr' in:" + ], + "start_col": 23, + "start_line": 99 + } + }, + "12": { + "accessible_scopes": [ + "starkware.starknet.common.syscalls", + "starkware.starknet.common.syscalls.library_call" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 47, + "end_line": 100, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/starknet/common/syscalls.cairo" + }, + "start_col": 26, + "start_line": 100 + } + }, + "13": { + "accessible_scopes": [ + "starkware.starknet.common.syscalls", + "starkware.starknet.common.syscalls.library_call" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 73, + "end_line": 100, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/starknet/common/syscalls.cairo" + }, + "start_col": 57, + "start_line": 100 + } + }, + "14": { + "accessible_scopes": [ + "starkware.starknet.common.syscalls", + "starkware.starknet.common.syscalls.library_call" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 75, + "end_line": 100, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/starknet/common/syscalls.cairo" + }, + "start_col": 5, + "start_line": 100 + } + }, + "15": { + "accessible_scopes": [ + "starkware.starknet.common.syscalls", + "starkware.starknet.common.syscalls.library_call_l1_handler" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 50, + "end_line": 112, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/starknet/common/syscalls.cairo" + }, + "start_col": 18, + "start_line": 112 + } + }, + "17": { + "accessible_scopes": [ + "starkware.starknet.common.syscalls", + "starkware.starknet.common.syscalls.library_call_l1_handler" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 7, + "end_line": 117, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/starknet/common/syscalls.cairo" + }, + "start_col": 5, + "start_line": 111 + } + }, + "18": { + "accessible_scopes": [ + "starkware.starknet.common.syscalls", + "starkware.starknet.common.syscalls.library_call_l1_handler" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 7, + "end_line": 117, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/starknet/common/syscalls.cairo" + }, + "start_col": 5, + "start_line": 111 + } + }, + "19": { + "accessible_scopes": [ + "starkware.starknet.common.syscalls", + "starkware.starknet.common.syscalls.library_call_l1_handler" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 7, + "end_line": 117, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/starknet/common/syscalls.cairo" + }, + "start_col": 5, + "start_line": 111 + } + }, + "20": { + "accessible_scopes": [ + "starkware.starknet.common.syscalls", + "starkware.starknet.common.syscalls.library_call_l1_handler" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 7, + "end_line": 117, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/starknet/common/syscalls.cairo" + }, + "start_col": 5, + "start_line": 111 + } + }, + "21": { + "accessible_scopes": [ + "starkware.starknet.common.syscalls", + "starkware.starknet.common.syscalls.library_call_l1_handler" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 7, + "end_line": 117, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/starknet/common/syscalls.cairo" + }, + "start_col": 5, + "start_line": 111 + } + }, + "22": { + "accessible_scopes": [ + "starkware.starknet.common.syscalls", + "starkware.starknet.common.syscalls.library_call_l1_handler" + ], + "flow_tracking_data": null, + "hints": [ + { + "location": { + "end_col": 98, + "end_line": 118, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/starknet/common/syscalls.cairo" + }, + "start_col": 5, + "start_line": 118 + }, + "n_prefix_newlines": 0 + } + ], + "inst": { + "end_col": 53, + "end_line": 121, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/starknet/common/syscalls.cairo" + }, + "parent_location": [ + { + "end_col": 48, + "end_line": 107, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/starknet/common/syscalls.cairo" + }, + "parent_location": [ + { + "end_col": 75, + "end_line": 122, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/starknet/common/syscalls.cairo" + }, + "start_col": 5, + "start_line": 122 + }, + "While trying to retrieve the implicit argument 'syscall_ptr' in:" + ], + "start_col": 30, + "start_line": 107 + }, + "While expanding the reference 'syscall_ptr' in:" + ], + "start_col": 23, + "start_line": 121 + } + }, + "24": { + "accessible_scopes": [ + "starkware.starknet.common.syscalls", + "starkware.starknet.common.syscalls.library_call_l1_handler" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 47, + "end_line": 122, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/starknet/common/syscalls.cairo" + }, + "start_col": 26, + "start_line": 122 + } + }, + "25": { + "accessible_scopes": [ + "starkware.starknet.common.syscalls", + "starkware.starknet.common.syscalls.library_call_l1_handler" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 73, + "end_line": 122, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/starknet/common/syscalls.cairo" + }, + "start_col": 57, + "start_line": 122 + } + }, + "26": { + "accessible_scopes": [ + "starkware.starknet.common.syscalls", + "starkware.starknet.common.syscalls.library_call_l1_handler" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 75, + "end_line": 122, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/starknet/common/syscalls.cairo" + }, + "start_col": 5, + "start_line": 122 + } + }, + "27": { + "accessible_scopes": [ + "starkware.starknet.common.syscalls", + "starkware.starknet.common.syscalls.get_caller_address" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 90, + "end_line": 202, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/starknet/common/syscalls.cairo" + }, + "start_col": 63, + "start_line": 202 + } + }, + "29": { + "accessible_scopes": [ + "starkware.starknet.common.syscalls", + "starkware.starknet.common.syscalls.get_caller_address" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 92, + "end_line": 202, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/starknet/common/syscalls.cairo" + }, + "start_col": 5, + "start_line": 202 + } + }, + "30": { + "accessible_scopes": [ + "starkware.starknet.common.syscalls", + "starkware.starknet.common.syscalls.get_caller_address" + ], + "flow_tracking_data": null, + "hints": [ + { + "location": { + "end_col": 93, + "end_line": 203, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/starknet/common/syscalls.cairo" + }, + "start_col": 5, + "start_line": 203 + }, + "n_prefix_newlines": 0 + } + ], + "inst": { + "end_col": 58, + "end_line": 204, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/starknet/common/syscalls.cairo" + }, + "parent_location": [ + { + "end_col": 43, + "end_line": 200, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/starknet/common/syscalls.cairo" + }, + "parent_location": [ + { + "end_col": 61, + "end_line": 205, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/starknet/common/syscalls.cairo" + }, + "start_col": 5, + "start_line": 205 + }, + "While trying to retrieve the implicit argument 'syscall_ptr' in:" + ], + "start_col": 25, + "start_line": 200 + }, + "While expanding the reference 'syscall_ptr' in:" + ], + "start_col": 23, + "start_line": 204 + } + }, + "32": { + "accessible_scopes": [ + "starkware.starknet.common.syscalls", + "starkware.starknet.common.syscalls.get_caller_address" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 59, + "end_line": 205, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/starknet/common/syscalls.cairo" + }, + "start_col": 28, + "start_line": 205 + } + }, + "33": { + "accessible_scopes": [ + "starkware.starknet.common.syscalls", + "starkware.starknet.common.syscalls.get_caller_address" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 61, + "end_line": 205, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/starknet/common/syscalls.cairo" + }, + "start_col": 5, + "start_line": 205 + } + }, + "34": { + "accessible_scopes": [ + "starkware.starknet.common.syscalls", + "starkware.starknet.common.syscalls.storage_read" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 79, + "end_line": 354, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/starknet/common/syscalls.cairo" + }, + "start_col": 58, + "start_line": 354 + } + }, + "36": { + "accessible_scopes": [ + "starkware.starknet.common.syscalls", + "starkware.starknet.common.syscalls.storage_read" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 98, + "end_line": 354, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/starknet/common/syscalls.cairo" + }, + "start_col": 5, + "start_line": 354 + } + }, + "37": { + "accessible_scopes": [ + "starkware.starknet.common.syscalls", + "starkware.starknet.common.syscalls.storage_read" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 98, + "end_line": 354, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/starknet/common/syscalls.cairo" + }, + "start_col": 5, + "start_line": 354 + } + }, + "38": { + "accessible_scopes": [ + "starkware.starknet.common.syscalls", + "starkware.starknet.common.syscalls.storage_read" + ], + "flow_tracking_data": null, + "hints": [ + { + "location": { + "end_col": 87, + "end_line": 355, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/starknet/common/syscalls.cairo" + }, + "start_col": 5, + "start_line": 355 + }, + "n_prefix_newlines": 0 + } + ], + "inst": { + "end_col": 53, + "end_line": 357, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/starknet/common/syscalls.cairo" + }, + "parent_location": [ + { + "end_col": 37, + "end_line": 352, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/starknet/common/syscalls.cairo" + }, + "parent_location": [ + { + "end_col": 35, + "end_line": 358, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/starknet/common/syscalls.cairo" + }, + "start_col": 5, + "start_line": 358 + }, + "While trying to retrieve the implicit argument 'syscall_ptr' in:" + ], + "start_col": 19, + "start_line": 352 + }, + "While expanding the reference 'syscall_ptr' in:" + ], + "start_col": 23, + "start_line": 357 + } + }, + "40": { + "accessible_scopes": [ + "starkware.starknet.common.syscalls", + "starkware.starknet.common.syscalls.storage_read" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 33, + "end_line": 358, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/starknet/common/syscalls.cairo" + }, + "start_col": 19, + "start_line": 358 + } + }, + "41": { + "accessible_scopes": [ + "starkware.starknet.common.syscalls", + "starkware.starknet.common.syscalls.storage_read" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 35, + "end_line": 358, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/starknet/common/syscalls.cairo" + }, + "start_col": 5, + "start_line": 358 + } + }, + "42": { + "accessible_scopes": [ + "starkware.starknet.common.syscalls", + "starkware.starknet.common.syscalls.storage_write" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 40, + "end_line": 372, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/starknet/common/syscalls.cairo" + }, + "start_col": 18, + "start_line": 372 + } + }, + "44": { + "accessible_scopes": [ + "starkware.starknet.common.syscalls", + "starkware.starknet.common.syscalls.storage_write" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 7, + "end_line": 373, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/starknet/common/syscalls.cairo" + }, + "start_col": 5, + "start_line": 371 + } + }, + "45": { + "accessible_scopes": [ + "starkware.starknet.common.syscalls", + "starkware.starknet.common.syscalls.storage_write" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 7, + "end_line": 373, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/starknet/common/syscalls.cairo" + }, + "start_col": 5, + "start_line": 371 + } + }, + "46": { + "accessible_scopes": [ + "starkware.starknet.common.syscalls", + "starkware.starknet.common.syscalls.storage_write" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 7, + "end_line": 373, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/starknet/common/syscalls.cairo" + }, + "start_col": 5, + "start_line": 371 + } + }, + "47": { + "accessible_scopes": [ + "starkware.starknet.common.syscalls", + "starkware.starknet.common.syscalls.storage_write" + ], + "flow_tracking_data": null, + "hints": [ + { + "location": { + "end_col": 88, + "end_line": 374, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/starknet/common/syscalls.cairo" + }, + "start_col": 5, + "start_line": 374 + }, + "n_prefix_newlines": 0 + } + ], + "inst": { + "end_col": 54, + "end_line": 375, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/starknet/common/syscalls.cairo" + }, + "parent_location": [ + { + "end_col": 38, + "end_line": 370, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/starknet/common/syscalls.cairo" + }, + "parent_location": [ + { + "end_col": 15, + "end_line": 376, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/starknet/common/syscalls.cairo" + }, + "start_col": 5, + "start_line": 376 + }, + "While trying to retrieve the implicit argument 'syscall_ptr' in:" + ], + "start_col": 20, + "start_line": 370 + }, + "While expanding the reference 'syscall_ptr' in:" + ], + "start_col": 23, + "start_line": 375 + } + }, + "49": { + "accessible_scopes": [ + "starkware.starknet.common.syscalls", + "starkware.starknet.common.syscalls.storage_write" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 15, + "end_line": 376, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/starknet/common/syscalls.cairo" + }, + "start_col": 5, + "start_line": 376 + } + }, + "50": { + "accessible_scopes": [ + "starkware.starknet.common.syscalls", + "starkware.starknet.common.syscalls.emit_event" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 37, + "end_line": 392, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/starknet/common/syscalls.cairo" + }, + "start_col": 18, + "start_line": 392 + } + }, + "52": { + "accessible_scopes": [ + "starkware.starknet.common.syscalls", + "starkware.starknet.common.syscalls.emit_event" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 7, + "end_line": 393, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/starknet/common/syscalls.cairo" + }, + "start_col": 5, + "start_line": 391 + } + }, + "53": { + "accessible_scopes": [ + "starkware.starknet.common.syscalls", + "starkware.starknet.common.syscalls.emit_event" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 7, + "end_line": 393, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/starknet/common/syscalls.cairo" + }, + "start_col": 5, + "start_line": 391 + } + }, + "54": { + "accessible_scopes": [ + "starkware.starknet.common.syscalls", + "starkware.starknet.common.syscalls.emit_event" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 7, + "end_line": 393, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/starknet/common/syscalls.cairo" + }, + "start_col": 5, + "start_line": 391 + } + }, + "55": { + "accessible_scopes": [ + "starkware.starknet.common.syscalls", + "starkware.starknet.common.syscalls.emit_event" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 7, + "end_line": 393, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/starknet/common/syscalls.cairo" + }, + "start_col": 5, + "start_line": 391 + } + }, + "56": { + "accessible_scopes": [ + "starkware.starknet.common.syscalls", + "starkware.starknet.common.syscalls.emit_event" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 7, + "end_line": 393, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/starknet/common/syscalls.cairo" + }, + "start_col": 5, + "start_line": 391 + } + }, + "57": { + "accessible_scopes": [ + "starkware.starknet.common.syscalls", + "starkware.starknet.common.syscalls.emit_event" + ], + "flow_tracking_data": null, + "hints": [ + { + "location": { + "end_col": 85, + "end_line": 394, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/starknet/common/syscalls.cairo" + }, + "start_col": 5, + "start_line": 394 + }, + "n_prefix_newlines": 0 + } + ], + "inst": { + "end_col": 51, + "end_line": 395, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/starknet/common/syscalls.cairo" + }, + "parent_location": [ + { + "end_col": 35, + "end_line": 390, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/starknet/common/syscalls.cairo" + }, + "parent_location": [ + { + "end_col": 15, + "end_line": 396, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/starknet/common/syscalls.cairo" + }, + "start_col": 5, + "start_line": 396 + }, + "While trying to retrieve the implicit argument 'syscall_ptr' in:" + ], + "start_col": 17, + "start_line": 390 + }, + "While expanding the reference 'syscall_ptr' in:" + ], + "start_col": 23, + "start_line": 395 + } + }, + "59": { + "accessible_scopes": [ + "starkware.starknet.common.syscalls", + "starkware.starknet.common.syscalls.emit_event" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 15, + "end_line": 396, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/starknet/common/syscalls.cairo" + }, + "start_col": 5, + "start_line": 396 + } + }, + "60": { + "accessible_scopes": [ + "starkware.cairo.common.math", + "starkware.cairo.common.math.assert_not_zero" + ], + "flow_tracking_data": null, + "hints": [ + { + "location": { + "end_col": 7, + "end_line": 11, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/math.cairo" + }, + "start_col": 5, + "start_line": 7 + }, + "n_prefix_newlines": 1 + } + ], + "inst": { + "end_col": 7, + "end_line": 12, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/math.cairo" + }, + "start_col": 5, + "start_line": 12 + } + }, + "62": { + "accessible_scopes": [ + "starkware.cairo.common.math", + "starkware.cairo.common.math.assert_not_zero" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 18, + "end_line": 14, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/math.cairo" + }, + "start_col": 9, + "start_line": 14 + } + }, + "64": { + "accessible_scopes": [ + "starkware.cairo.common.math", + "starkware.cairo.common.math.assert_not_zero" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 15, + "end_line": 17, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/cairo/common/math.cairo" + }, + "start_col": 5, + "start_line": 17 + } + }, + "65": { + "accessible_scopes": [ + "openzeppelin.upgrades.library", + "openzeppelin.upgrades.library.Upgraded", + "openzeppelin.upgrades.library.Upgraded.emit" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 14, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/event/Upgraded/8220fde17ca5479f12ae71a8036f4d354fe722f2c036da610b53511924e4ee84.cairo" + }, + "parent_location": [ + { + "end_col": 14, + "end_line": 16, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/upgrades/library.cairo" + }, + "start_col": 6, + "start_line": 16 + }, + "While handling event:" + ], + "start_col": 1, + "start_line": 1 + } + }, + "67": { + "accessible_scopes": [ + "openzeppelin.upgrades.library", + "openzeppelin.upgrades.library.Upgraded", + "openzeppelin.upgrades.library.Upgraded.emit" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 40, + "end_line": 2, + "input_file": { + "filename": "autogen/starknet/event/Upgraded/8220fde17ca5479f12ae71a8036f4d354fe722f2c036da610b53511924e4ee84.cairo" + }, + "parent_location": [ + { + "end_col": 14, + "end_line": 16, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/upgrades/library.cairo" + }, + "start_col": 6, + "start_line": 16 + }, + "While handling event:" + ], + "start_col": 33, + "start_line": 2 + } + }, + "69": { + "accessible_scopes": [ + "openzeppelin.upgrades.library", + "openzeppelin.upgrades.library.Upgraded", + "openzeppelin.upgrades.library.Upgraded.emit" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 29, + "end_line": 2, + "input_file": { + "filename": "autogen/starknet/event/Upgraded/8220fde17ca5479f12ae71a8036f4d354fe722f2c036da610b53511924e4ee84.cairo" + }, + "parent_location": [ + { + "end_col": 14, + "end_line": 16, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/upgrades/library.cairo" + }, + "start_col": 6, + "start_line": 16 + }, + "While handling event:" + ], + "start_col": 6, + "start_line": 2 + } + }, + "70": { + "accessible_scopes": [ + "openzeppelin.upgrades.library", + "openzeppelin.upgrades.library.Upgraded", + "openzeppelin.upgrades.library.Upgraded.emit" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 31, + "end_line": 3, + "input_file": { + "filename": "autogen/starknet/event/Upgraded/8220fde17ca5479f12ae71a8036f4d354fe722f2c036da610b53511924e4ee84.cairo" + }, + "parent_location": [ + { + "end_col": 14, + "end_line": 16, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/upgrades/library.cairo" + }, + "start_col": 6, + "start_line": 16 + }, + "While handling event:" + ], + "start_col": 23, + "start_line": 3 + } + }, + "72": { + "accessible_scopes": [ + "openzeppelin.upgrades.library", + "openzeppelin.upgrades.library.Upgraded", + "openzeppelin.upgrades.library.Upgraded.emit" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 32, + "end_line": 3, + "input_file": { + "filename": "autogen/starknet/event/Upgraded/8220fde17ca5479f12ae71a8036f4d354fe722f2c036da610b53511924e4ee84.cairo" + }, + "parent_location": [ + { + "end_col": 14, + "end_line": 16, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/upgrades/library.cairo" + }, + "start_col": 6, + "start_line": 16 + }, + "While handling event:" + ], + "start_col": 1, + "start_line": 3 + } + }, + "73": { + "accessible_scopes": [ + "openzeppelin.upgrades.library", + "openzeppelin.upgrades.library.Upgraded", + "openzeppelin.upgrades.library.Upgraded.emit" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 40, + "end_line": 4, + "input_file": { + "filename": "autogen/starknet/event/Upgraded/8220fde17ca5479f12ae71a8036f4d354fe722f2c036da610b53511924e4ee84.cairo" + }, + "parent_location": [ + { + "end_col": 14, + "end_line": 16, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/upgrades/library.cairo" + }, + "start_col": 6, + "start_line": 16 + }, + "While handling event:" + ], + "start_col": 33, + "start_line": 4 + } + }, + "75": { + "accessible_scopes": [ + "openzeppelin.upgrades.library", + "openzeppelin.upgrades.library.Upgraded", + "openzeppelin.upgrades.library.Upgraded.emit" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 29, + "end_line": 4, + "input_file": { + "filename": "autogen/starknet/event/Upgraded/8220fde17ca5479f12ae71a8036f4d354fe722f2c036da610b53511924e4ee84.cairo" + }, + "parent_location": [ + { + "end_col": 14, + "end_line": 16, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/upgrades/library.cairo" + }, + "start_col": 6, + "start_line": 16 + }, + "While handling event:" + ], + "start_col": 6, + "start_line": 4 + } + }, + "76": { + "accessible_scopes": [ + "openzeppelin.upgrades.library", + "openzeppelin.upgrades.library.Upgraded", + "openzeppelin.upgrades.library.Upgraded.emit" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 42, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/arg_processor/8ec556ced0db43684bb87c7dc80e7b39277fb7b45da4a9dc079ccdf1e7642479.cairo" + }, + "parent_location": [ + { + "end_col": 29, + "end_line": 16, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/upgrades/library.cairo" + }, + "start_col": 15, + "start_line": 16 + }, + "While handling calldata argument 'implementation'" + ], + "start_col": 1, + "start_line": 1 + } + }, + "77": { + "accessible_scopes": [ + "openzeppelin.upgrades.library", + "openzeppelin.upgrades.library.Upgraded", + "openzeppelin.upgrades.library.Upgraded.emit" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 40, + "end_line": 2, + "input_file": { + "filename": "autogen/starknet/arg_processor/8ec556ced0db43684bb87c7dc80e7b39277fb7b45da4a9dc079ccdf1e7642479.cairo" + }, + "parent_location": [ + { + "end_col": 29, + "end_line": 16, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/upgrades/library.cairo" + }, + "parent_location": [ + { + "end_col": 64, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/event/Upgraded/6150feec30bd48bfd0f446ed8c155a6d911a2c3fb3ec7a980733900416819259.cairo" + }, + "parent_location": [ + { + "end_col": 14, + "end_line": 16, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/upgrades/library.cairo" + }, + "start_col": 6, + "start_line": 16 + }, + "While handling event:" + ], + "start_col": 50, + "start_line": 1 + }, + "While expanding the reference '__calldata_ptr' in:" + ], + "start_col": 15, + "start_line": 16 + }, + "While handling calldata argument 'implementation'" + ], + "start_col": 22, + "start_line": 2 + } + }, + "79": { + "accessible_scopes": [ + "openzeppelin.upgrades.library", + "openzeppelin.upgrades.library.Upgraded", + "openzeppelin.upgrades.library.Upgraded.emit" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 29, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/event/Upgraded/a7a8ae41be29ac9f4f6c3b7837c448d787ca051dd1ade98f409e54d33d112504.cairo" + }, + "parent_location": [ + { + "end_col": 14, + "end_line": 16, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/upgrades/library.cairo" + }, + "parent_location": [ + { + "end_col": 35, + "end_line": 390, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/starknet/common/syscalls.cairo" + }, + "parent_location": [ + { + "end_col": 95, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/event/Upgraded/6150feec30bd48bfd0f446ed8c155a6d911a2c3fb3ec7a980733900416819259.cairo" + }, + "parent_location": [ + { + "end_col": 14, + "end_line": 16, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/upgrades/library.cairo" + }, + "start_col": 6, + "start_line": 16 + }, + "While handling event:" + ], + "start_col": 1, + "start_line": 1 + }, + "While trying to retrieve the implicit argument 'syscall_ptr' in:" + ], + "start_col": 17, + "start_line": 390 + }, + "While expanding the reference 'syscall_ptr' in:" + ], + "start_col": 6, + "start_line": 16 + }, + "While handling event:" + ], + "start_col": 11, + "start_line": 1 + } + }, + "80": { + "accessible_scopes": [ + "openzeppelin.upgrades.library", + "openzeppelin.upgrades.library.Upgraded", + "openzeppelin.upgrades.library.Upgraded.emit" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 22, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/event/Upgraded/6150feec30bd48bfd0f446ed8c155a6d911a2c3fb3ec7a980733900416819259.cairo" + }, + "parent_location": [ + { + "end_col": 14, + "end_line": 16, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/upgrades/library.cairo" + }, + "start_col": 6, + "start_line": 16 + }, + "While handling event:" + ], + "start_col": 21, + "start_line": 1 + } + }, + "82": { + "accessible_scopes": [ + "openzeppelin.upgrades.library", + "openzeppelin.upgrades.library.Upgraded", + "openzeppelin.upgrades.library.Upgraded.emit" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 22, + "end_line": 2, + "input_file": { + "filename": "autogen/starknet/event/Upgraded/8220fde17ca5479f12ae71a8036f4d354fe722f2c036da610b53511924e4ee84.cairo" + }, + "parent_location": [ + { + "end_col": 14, + "end_line": 16, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/upgrades/library.cairo" + }, + "parent_location": [ + { + "end_col": 39, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/event/Upgraded/6150feec30bd48bfd0f446ed8c155a6d911a2c3fb3ec7a980733900416819259.cairo" + }, + "parent_location": [ + { + "end_col": 14, + "end_line": 16, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/upgrades/library.cairo" + }, + "start_col": 6, + "start_line": 16 + }, + "While handling event:" + ], + "start_col": 29, + "start_line": 1 + }, + "While expanding the reference '__keys_ptr' in:" + ], + "start_col": 6, + "start_line": 16 + }, + "While handling event:" + ], + "start_col": 12, + "start_line": 2 + } + }, + "83": { + "accessible_scopes": [ + "openzeppelin.upgrades.library", + "openzeppelin.upgrades.library.Upgraded", + "openzeppelin.upgrades.library.Upgraded.emit" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 77, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/event/Upgraded/6150feec30bd48bfd0f446ed8c155a6d911a2c3fb3ec7a980733900416819259.cairo" + }, + "parent_location": [ + { + "end_col": 14, + "end_line": 16, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/upgrades/library.cairo" + }, + "start_col": 6, + "start_line": 16 + }, + "While handling event:" + ], + "start_col": 50, + "start_line": 1 + } + }, + "84": { + "accessible_scopes": [ + "openzeppelin.upgrades.library", + "openzeppelin.upgrades.library.Upgraded", + "openzeppelin.upgrades.library.Upgraded.emit" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 22, + "end_line": 4, + "input_file": { + "filename": "autogen/starknet/event/Upgraded/8220fde17ca5479f12ae71a8036f4d354fe722f2c036da610b53511924e4ee84.cairo" + }, + "parent_location": [ + { + "end_col": 14, + "end_line": 16, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/upgrades/library.cairo" + }, + "parent_location": [ + { + "end_col": 94, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/event/Upgraded/6150feec30bd48bfd0f446ed8c155a6d911a2c3fb3ec7a980733900416819259.cairo" + }, + "parent_location": [ + { + "end_col": 14, + "end_line": 16, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/upgrades/library.cairo" + }, + "start_col": 6, + "start_line": 16 + }, + "While handling event:" + ], + "start_col": 84, + "start_line": 1 + }, + "While expanding the reference '__data_ptr' in:" + ], + "start_col": 6, + "start_line": 16 + }, + "While handling event:" + ], + "start_col": 12, + "start_line": 4 + } + }, + "85": { + "accessible_scopes": [ + "openzeppelin.upgrades.library", + "openzeppelin.upgrades.library.Upgraded", + "openzeppelin.upgrades.library.Upgraded.emit" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 95, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/event/Upgraded/6150feec30bd48bfd0f446ed8c155a6d911a2c3fb3ec7a980733900416819259.cairo" + }, + "parent_location": [ + { + "end_col": 14, + "end_line": 16, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/upgrades/library.cairo" + }, + "start_col": 6, + "start_line": 16 + }, + "While handling event:" + ], + "start_col": 1, + "start_line": 1 + } + }, + "87": { + "accessible_scopes": [ + "openzeppelin.upgrades.library", + "openzeppelin.upgrades.library.Upgraded", + "openzeppelin.upgrades.library.Upgraded.emit" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 46, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/event/Upgraded/a7a8ae41be29ac9f4f6c3b7837c448d787ca051dd1ade98f409e54d33d112504.cairo" + }, + "parent_location": [ + { + "end_col": 14, + "end_line": 16, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/upgrades/library.cairo" + }, + "parent_location": [ + { + "end_col": 46, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/event/Upgraded/a7a8ae41be29ac9f4f6c3b7837c448d787ca051dd1ade98f409e54d33d112504.cairo" + }, + "parent_location": [ + { + "end_col": 14, + "end_line": 16, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/upgrades/library.cairo" + }, + "parent_location": [ + { + "end_col": 11, + "end_line": 2, + "input_file": { + "filename": "autogen/starknet/event/Upgraded/6150feec30bd48bfd0f446ed8c155a6d911a2c3fb3ec7a980733900416819259.cairo" + }, + "parent_location": [ + { + "end_col": 14, + "end_line": 16, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/upgrades/library.cairo" + }, + "start_col": 6, + "start_line": 16 + }, + "While handling event:" + ], + "start_col": 1, + "start_line": 2 + }, + "While trying to retrieve the implicit argument 'range_check_ptr' in:" + ], + "start_col": 6, + "start_line": 16 + }, + "While handling event:" + ], + "start_col": 31, + "start_line": 1 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 6, + "start_line": 16 + }, + "While handling event:" + ], + "start_col": 31, + "start_line": 1 + } + }, + "88": { + "accessible_scopes": [ + "openzeppelin.upgrades.library", + "openzeppelin.upgrades.library.Upgraded", + "openzeppelin.upgrades.library.Upgraded.emit" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 11, + "end_line": 2, + "input_file": { + "filename": "autogen/starknet/event/Upgraded/6150feec30bd48bfd0f446ed8c155a6d911a2c3fb3ec7a980733900416819259.cairo" + }, + "parent_location": [ + { + "end_col": 14, + "end_line": 16, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/upgrades/library.cairo" + }, + "start_col": 6, + "start_line": 16 + }, + "While handling event:" + ], + "start_col": 1, + "start_line": 2 + } + }, + "89": { + "accessible_scopes": [ + "openzeppelin.upgrades.library", + "openzeppelin.upgrades.library.AdminChanged", + "openzeppelin.upgrades.library.AdminChanged.emit" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 14, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/event/AdminChanged/8220fde17ca5479f12ae71a8036f4d354fe722f2c036da610b53511924e4ee84.cairo" + }, + "parent_location": [ + { + "end_col": 18, + "end_line": 20, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/upgrades/library.cairo" + }, + "start_col": 6, + "start_line": 20 + }, + "While handling event:" + ], + "start_col": 1, + "start_line": 1 + } + }, + "91": { + "accessible_scopes": [ + "openzeppelin.upgrades.library", + "openzeppelin.upgrades.library.AdminChanged", + "openzeppelin.upgrades.library.AdminChanged.emit" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 40, + "end_line": 2, + "input_file": { + "filename": "autogen/starknet/event/AdminChanged/8220fde17ca5479f12ae71a8036f4d354fe722f2c036da610b53511924e4ee84.cairo" + }, + "parent_location": [ + { + "end_col": 18, + "end_line": 20, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/upgrades/library.cairo" + }, + "start_col": 6, + "start_line": 20 + }, + "While handling event:" + ], + "start_col": 33, + "start_line": 2 + } + }, + "93": { + "accessible_scopes": [ + "openzeppelin.upgrades.library", + "openzeppelin.upgrades.library.AdminChanged", + "openzeppelin.upgrades.library.AdminChanged.emit" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 29, + "end_line": 2, + "input_file": { + "filename": "autogen/starknet/event/AdminChanged/8220fde17ca5479f12ae71a8036f4d354fe722f2c036da610b53511924e4ee84.cairo" + }, + "parent_location": [ + { + "end_col": 18, + "end_line": 20, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/upgrades/library.cairo" + }, + "start_col": 6, + "start_line": 20 + }, + "While handling event:" + ], + "start_col": 6, + "start_line": 2 + } + }, + "94": { + "accessible_scopes": [ + "openzeppelin.upgrades.library", + "openzeppelin.upgrades.library.AdminChanged", + "openzeppelin.upgrades.library.AdminChanged.emit" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 31, + "end_line": 3, + "input_file": { + "filename": "autogen/starknet/event/AdminChanged/8220fde17ca5479f12ae71a8036f4d354fe722f2c036da610b53511924e4ee84.cairo" + }, + "parent_location": [ + { + "end_col": 18, + "end_line": 20, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/upgrades/library.cairo" + }, + "start_col": 6, + "start_line": 20 + }, + "While handling event:" + ], + "start_col": 23, + "start_line": 3 + } + }, + "96": { + "accessible_scopes": [ + "openzeppelin.upgrades.library", + "openzeppelin.upgrades.library.AdminChanged", + "openzeppelin.upgrades.library.AdminChanged.emit" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 32, + "end_line": 3, + "input_file": { + "filename": "autogen/starknet/event/AdminChanged/8220fde17ca5479f12ae71a8036f4d354fe722f2c036da610b53511924e4ee84.cairo" + }, + "parent_location": [ + { + "end_col": 18, + "end_line": 20, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/upgrades/library.cairo" + }, + "start_col": 6, + "start_line": 20 + }, + "While handling event:" + ], + "start_col": 1, + "start_line": 3 + } + }, + "97": { + "accessible_scopes": [ + "openzeppelin.upgrades.library", + "openzeppelin.upgrades.library.AdminChanged", + "openzeppelin.upgrades.library.AdminChanged.emit" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 40, + "end_line": 4, + "input_file": { + "filename": "autogen/starknet/event/AdminChanged/8220fde17ca5479f12ae71a8036f4d354fe722f2c036da610b53511924e4ee84.cairo" + }, + "parent_location": [ + { + "end_col": 18, + "end_line": 20, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/upgrades/library.cairo" + }, + "start_col": 6, + "start_line": 20 + }, + "While handling event:" + ], + "start_col": 33, + "start_line": 4 + } + }, + "99": { + "accessible_scopes": [ + "openzeppelin.upgrades.library", + "openzeppelin.upgrades.library.AdminChanged", + "openzeppelin.upgrades.library.AdminChanged.emit" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 29, + "end_line": 4, + "input_file": { + "filename": "autogen/starknet/event/AdminChanged/8220fde17ca5479f12ae71a8036f4d354fe722f2c036da610b53511924e4ee84.cairo" + }, + "parent_location": [ + { + "end_col": 18, + "end_line": 20, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/upgrades/library.cairo" + }, + "start_col": 6, + "start_line": 20 + }, + "While handling event:" + ], + "start_col": 6, + "start_line": 4 + } + }, + "100": { + "accessible_scopes": [ + "openzeppelin.upgrades.library", + "openzeppelin.upgrades.library.AdminChanged", + "openzeppelin.upgrades.library.AdminChanged.emit" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 41, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/arg_processor/635ec603a576c378b96508409ebffc1de2cc10639922f57a6f56f1417ab7afa6.cairo" + }, + "parent_location": [ + { + "end_col": 32, + "end_line": 20, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/upgrades/library.cairo" + }, + "start_col": 19, + "start_line": 20 + }, + "While handling calldata argument 'previousAdmin'" + ], + "start_col": 1, + "start_line": 1 + } + }, + "101": { + "accessible_scopes": [ + "openzeppelin.upgrades.library", + "openzeppelin.upgrades.library.AdminChanged", + "openzeppelin.upgrades.library.AdminChanged.emit" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 36, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/arg_processor/1b89ef2fbbb6943f8dd42dcbdc1e699db576228e665ff8b5ae3c1c3c39cb1777.cairo" + }, + "parent_location": [ + { + "end_col": 48, + "end_line": 20, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/upgrades/library.cairo" + }, + "start_col": 40, + "start_line": 20 + }, + "While handling calldata argument 'newAdmin'" + ], + "start_col": 1, + "start_line": 1 + } + }, + "102": { + "accessible_scopes": [ + "openzeppelin.upgrades.library", + "openzeppelin.upgrades.library.AdminChanged", + "openzeppelin.upgrades.library.AdminChanged.emit" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 40, + "end_line": 2, + "input_file": { + "filename": "autogen/starknet/arg_processor/1b89ef2fbbb6943f8dd42dcbdc1e699db576228e665ff8b5ae3c1c3c39cb1777.cairo" + }, + "parent_location": [ + { + "end_col": 48, + "end_line": 20, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/upgrades/library.cairo" + }, + "parent_location": [ + { + "end_col": 64, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/event/AdminChanged/6150feec30bd48bfd0f446ed8c155a6d911a2c3fb3ec7a980733900416819259.cairo" + }, + "parent_location": [ + { + "end_col": 18, + "end_line": 20, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/upgrades/library.cairo" + }, + "start_col": 6, + "start_line": 20 + }, + "While handling event:" + ], + "start_col": 50, + "start_line": 1 + }, + "While expanding the reference '__calldata_ptr' in:" + ], + "start_col": 40, + "start_line": 20 + }, + "While handling calldata argument 'newAdmin'" + ], + "start_col": 22, + "start_line": 2 + } + }, + "104": { + "accessible_scopes": [ + "openzeppelin.upgrades.library", + "openzeppelin.upgrades.library.AdminChanged", + "openzeppelin.upgrades.library.AdminChanged.emit" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 29, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/event/AdminChanged/a7a8ae41be29ac9f4f6c3b7837c448d787ca051dd1ade98f409e54d33d112504.cairo" + }, + "parent_location": [ + { + "end_col": 18, + "end_line": 20, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/upgrades/library.cairo" + }, + "parent_location": [ + { + "end_col": 35, + "end_line": 390, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/starknet/common/syscalls.cairo" + }, + "parent_location": [ + { + "end_col": 95, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/event/AdminChanged/6150feec30bd48bfd0f446ed8c155a6d911a2c3fb3ec7a980733900416819259.cairo" + }, + "parent_location": [ + { + "end_col": 18, + "end_line": 20, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/upgrades/library.cairo" + }, + "start_col": 6, + "start_line": 20 + }, + "While handling event:" + ], + "start_col": 1, + "start_line": 1 + }, + "While trying to retrieve the implicit argument 'syscall_ptr' in:" + ], + "start_col": 17, + "start_line": 390 + }, + "While expanding the reference 'syscall_ptr' in:" + ], + "start_col": 6, + "start_line": 20 + }, + "While handling event:" + ], + "start_col": 11, + "start_line": 1 + } + }, + "105": { + "accessible_scopes": [ + "openzeppelin.upgrades.library", + "openzeppelin.upgrades.library.AdminChanged", + "openzeppelin.upgrades.library.AdminChanged.emit" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 22, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/event/AdminChanged/6150feec30bd48bfd0f446ed8c155a6d911a2c3fb3ec7a980733900416819259.cairo" + }, + "parent_location": [ + { + "end_col": 18, + "end_line": 20, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/upgrades/library.cairo" + }, + "start_col": 6, + "start_line": 20 + }, + "While handling event:" + ], + "start_col": 21, + "start_line": 1 + } + }, + "107": { + "accessible_scopes": [ + "openzeppelin.upgrades.library", + "openzeppelin.upgrades.library.AdminChanged", + "openzeppelin.upgrades.library.AdminChanged.emit" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 22, + "end_line": 2, + "input_file": { + "filename": "autogen/starknet/event/AdminChanged/8220fde17ca5479f12ae71a8036f4d354fe722f2c036da610b53511924e4ee84.cairo" + }, + "parent_location": [ + { + "end_col": 18, + "end_line": 20, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/upgrades/library.cairo" + }, + "parent_location": [ + { + "end_col": 39, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/event/AdminChanged/6150feec30bd48bfd0f446ed8c155a6d911a2c3fb3ec7a980733900416819259.cairo" + }, + "parent_location": [ + { + "end_col": 18, + "end_line": 20, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/upgrades/library.cairo" + }, + "start_col": 6, + "start_line": 20 + }, + "While handling event:" + ], + "start_col": 29, + "start_line": 1 + }, + "While expanding the reference '__keys_ptr' in:" + ], + "start_col": 6, + "start_line": 20 + }, + "While handling event:" + ], + "start_col": 12, + "start_line": 2 + } + }, + "108": { + "accessible_scopes": [ + "openzeppelin.upgrades.library", + "openzeppelin.upgrades.library.AdminChanged", + "openzeppelin.upgrades.library.AdminChanged.emit" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 77, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/event/AdminChanged/6150feec30bd48bfd0f446ed8c155a6d911a2c3fb3ec7a980733900416819259.cairo" + }, + "parent_location": [ + { + "end_col": 18, + "end_line": 20, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/upgrades/library.cairo" + }, + "start_col": 6, + "start_line": 20 + }, + "While handling event:" + ], + "start_col": 50, + "start_line": 1 + } + }, + "109": { + "accessible_scopes": [ + "openzeppelin.upgrades.library", + "openzeppelin.upgrades.library.AdminChanged", + "openzeppelin.upgrades.library.AdminChanged.emit" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 22, + "end_line": 4, + "input_file": { + "filename": "autogen/starknet/event/AdminChanged/8220fde17ca5479f12ae71a8036f4d354fe722f2c036da610b53511924e4ee84.cairo" + }, + "parent_location": [ + { + "end_col": 18, + "end_line": 20, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/upgrades/library.cairo" + }, + "parent_location": [ + { + "end_col": 94, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/event/AdminChanged/6150feec30bd48bfd0f446ed8c155a6d911a2c3fb3ec7a980733900416819259.cairo" + }, + "parent_location": [ + { + "end_col": 18, + "end_line": 20, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/upgrades/library.cairo" + }, + "start_col": 6, + "start_line": 20 + }, + "While handling event:" + ], + "start_col": 84, + "start_line": 1 + }, + "While expanding the reference '__data_ptr' in:" + ], + "start_col": 6, + "start_line": 20 + }, + "While handling event:" + ], + "start_col": 12, + "start_line": 4 + } + }, + "110": { + "accessible_scopes": [ + "openzeppelin.upgrades.library", + "openzeppelin.upgrades.library.AdminChanged", + "openzeppelin.upgrades.library.AdminChanged.emit" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 95, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/event/AdminChanged/6150feec30bd48bfd0f446ed8c155a6d911a2c3fb3ec7a980733900416819259.cairo" + }, + "parent_location": [ + { + "end_col": 18, + "end_line": 20, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/upgrades/library.cairo" + }, + "start_col": 6, + "start_line": 20 + }, + "While handling event:" + ], + "start_col": 1, + "start_line": 1 + } + }, + "112": { + "accessible_scopes": [ + "openzeppelin.upgrades.library", + "openzeppelin.upgrades.library.AdminChanged", + "openzeppelin.upgrades.library.AdminChanged.emit" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 46, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/event/AdminChanged/a7a8ae41be29ac9f4f6c3b7837c448d787ca051dd1ade98f409e54d33d112504.cairo" + }, + "parent_location": [ + { + "end_col": 18, + "end_line": 20, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/upgrades/library.cairo" + }, + "parent_location": [ + { + "end_col": 46, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/event/AdminChanged/a7a8ae41be29ac9f4f6c3b7837c448d787ca051dd1ade98f409e54d33d112504.cairo" + }, + "parent_location": [ + { + "end_col": 18, + "end_line": 20, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/upgrades/library.cairo" + }, + "parent_location": [ + { + "end_col": 11, + "end_line": 2, + "input_file": { + "filename": "autogen/starknet/event/AdminChanged/6150feec30bd48bfd0f446ed8c155a6d911a2c3fb3ec7a980733900416819259.cairo" + }, + "parent_location": [ + { + "end_col": 18, + "end_line": 20, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/upgrades/library.cairo" + }, + "start_col": 6, + "start_line": 20 + }, + "While handling event:" + ], + "start_col": 1, + "start_line": 2 + }, + "While trying to retrieve the implicit argument 'range_check_ptr' in:" + ], + "start_col": 6, + "start_line": 20 + }, + "While handling event:" + ], + "start_col": 31, + "start_line": 1 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 6, + "start_line": 20 + }, + "While handling event:" + ], + "start_col": 31, + "start_line": 1 + } + }, + "113": { + "accessible_scopes": [ + "openzeppelin.upgrades.library", + "openzeppelin.upgrades.library.AdminChanged", + "openzeppelin.upgrades.library.AdminChanged.emit" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 11, + "end_line": 2, + "input_file": { + "filename": "autogen/starknet/event/AdminChanged/6150feec30bd48bfd0f446ed8c155a6d911a2c3fb3ec7a980733900416819259.cairo" + }, + "parent_location": [ + { + "end_col": 18, + "end_line": 20, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/upgrades/library.cairo" + }, + "start_col": 6, + "start_line": 20 + }, + "While handling event:" + ], + "start_col": 1, + "start_line": 2 + } + }, + "114": { + "accessible_scopes": [ + "openzeppelin.upgrades.library", + "openzeppelin.upgrades.library.Proxy_implementation_hash", + "openzeppelin.upgrades.library.Proxy_implementation_hash.addr" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 41, + "end_line": 7, + "input_file": { + "filename": "autogen/starknet/storage_var/Proxy_implementation_hash/impl.cairo" + }, + "parent_location": [ + { + "end_col": 41, + "end_line": 7, + "input_file": { + "filename": "autogen/starknet/storage_var/Proxy_implementation_hash/decl.cairo" + }, + "parent_location": [ + { + "end_col": 26, + "end_line": 9, + "input_file": { + "filename": "autogen/starknet/storage_var/Proxy_implementation_hash/impl.cairo" + }, + "start_col": 9, + "start_line": 9 + }, + "While trying to retrieve the implicit argument 'pedersen_ptr' in:" + ], + "start_col": 15, + "start_line": 7 + }, + "While expanding the reference 'pedersen_ptr' in:" + ], + "start_col": 15, + "start_line": 7 + } + }, + "115": { + "accessible_scopes": [ + "openzeppelin.upgrades.library", + "openzeppelin.upgrades.library.Proxy_implementation_hash", + "openzeppelin.upgrades.library.Proxy_implementation_hash.addr" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 58, + "end_line": 7, + "input_file": { + "filename": "autogen/starknet/storage_var/Proxy_implementation_hash/impl.cairo" + }, + "parent_location": [ + { + "end_col": 58, + "end_line": 7, + "input_file": { + "filename": "autogen/starknet/storage_var/Proxy_implementation_hash/decl.cairo" + }, + "parent_location": [ + { + "end_col": 26, + "end_line": 9, + "input_file": { + "filename": "autogen/starknet/storage_var/Proxy_implementation_hash/impl.cairo" + }, + "start_col": 9, + "start_line": 9 + }, + "While trying to retrieve the implicit argument 'range_check_ptr' in:" + ], + "start_col": 43, + "start_line": 7 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 43, + "start_line": 7 + } + }, + "116": { + "accessible_scopes": [ + "openzeppelin.upgrades.library", + "openzeppelin.upgrades.library.Proxy_implementation_hash", + "openzeppelin.upgrades.library.Proxy_implementation_hash.addr" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 95, + "end_line": 8, + "input_file": { + "filename": "autogen/starknet/storage_var/Proxy_implementation_hash/impl.cairo" + }, + "parent_location": [ + { + "end_col": 24, + "end_line": 9, + "input_file": { + "filename": "autogen/starknet/storage_var/Proxy_implementation_hash/impl.cairo" + }, + "start_col": 21, + "start_line": 9 + }, + "While expanding the reference 'res' in:" + ], + "start_col": 19, + "start_line": 8 + } + }, + "118": { + "accessible_scopes": [ + "openzeppelin.upgrades.library", + "openzeppelin.upgrades.library.Proxy_implementation_hash", + "openzeppelin.upgrades.library.Proxy_implementation_hash.addr" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 26, + "end_line": 9, + "input_file": { + "filename": "autogen/starknet/storage_var/Proxy_implementation_hash/impl.cairo" + }, + "start_col": 9, + "start_line": 9 + } + }, + "119": { + "accessible_scopes": [ + "openzeppelin.upgrades.library", + "openzeppelin.upgrades.library.Proxy_implementation_hash", + "openzeppelin.upgrades.library.Proxy_implementation_hash.read" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 61, + "end_line": 12, + "input_file": { + "filename": "autogen/starknet/storage_var/Proxy_implementation_hash/impl.cairo" + }, + "parent_location": [ + { + "end_col": 41, + "end_line": 7, + "input_file": { + "filename": "autogen/starknet/storage_var/Proxy_implementation_hash/decl.cairo" + }, + "parent_location": [ + { + "end_col": 36, + "end_line": 15, + "input_file": { + "filename": "autogen/starknet/storage_var/Proxy_implementation_hash/impl.cairo" + }, + "start_col": 30, + "start_line": 15 + }, + "While trying to retrieve the implicit argument 'pedersen_ptr' in:" + ], + "start_col": 15, + "start_line": 7 + }, + "While expanding the reference 'pedersen_ptr' in:" + ], + "start_col": 35, + "start_line": 12 + } + }, + "120": { + "accessible_scopes": [ + "openzeppelin.upgrades.library", + "openzeppelin.upgrades.library.Proxy_implementation_hash", + "openzeppelin.upgrades.library.Proxy_implementation_hash.read" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 78, + "end_line": 12, + "input_file": { + "filename": "autogen/starknet/storage_var/Proxy_implementation_hash/impl.cairo" + }, + "parent_location": [ + { + "end_col": 58, + "end_line": 7, + "input_file": { + "filename": "autogen/starknet/storage_var/Proxy_implementation_hash/decl.cairo" + }, + "parent_location": [ + { + "end_col": 36, + "end_line": 15, + "input_file": { + "filename": "autogen/starknet/storage_var/Proxy_implementation_hash/impl.cairo" + }, + "start_col": 30, + "start_line": 15 + }, + "While trying to retrieve the implicit argument 'range_check_ptr' in:" + ], + "start_col": 43, + "start_line": 7 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 63, + "start_line": 12 + } + }, + "121": { + "accessible_scopes": [ + "openzeppelin.upgrades.library", + "openzeppelin.upgrades.library.Proxy_implementation_hash", + "openzeppelin.upgrades.library.Proxy_implementation_hash.read" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 36, + "end_line": 15, + "input_file": { + "filename": "autogen/starknet/storage_var/Proxy_implementation_hash/impl.cairo" + }, + "start_col": 30, + "start_line": 15 + } + }, + "123": { + "accessible_scopes": [ + "openzeppelin.upgrades.library", + "openzeppelin.upgrades.library.Proxy_implementation_hash", + "openzeppelin.upgrades.library.Proxy_implementation_hash.read" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 33, + "end_line": 12, + "input_file": { + "filename": "autogen/starknet/storage_var/Proxy_implementation_hash/impl.cairo" + }, + "parent_location": [ + { + "end_col": 37, + "end_line": 352, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/starknet/common/syscalls.cairo" + }, + "parent_location": [ + { + "end_col": 75, + "end_line": 16, + "input_file": { + "filename": "autogen/starknet/storage_var/Proxy_implementation_hash/impl.cairo" + }, + "start_col": 37, + "start_line": 16 + }, + "While trying to retrieve the implicit argument 'syscall_ptr' in:" + ], + "start_col": 19, + "start_line": 352 + }, + "While expanding the reference 'syscall_ptr' in:" + ], + "start_col": 15, + "start_line": 12 + } + }, + "124": { + "accessible_scopes": [ + "openzeppelin.upgrades.library", + "openzeppelin.upgrades.library.Proxy_implementation_hash", + "openzeppelin.upgrades.library.Proxy_implementation_hash.read" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 26, + "end_line": 15, + "input_file": { + "filename": "autogen/starknet/storage_var/Proxy_implementation_hash/impl.cairo" + }, + "parent_location": [ + { + "end_col": 70, + "end_line": 16, + "input_file": { + "filename": "autogen/starknet/storage_var/Proxy_implementation_hash/impl.cairo" + }, + "start_col": 58, + "start_line": 16 + }, + "While expanding the reference 'storage_addr' in:" + ], + "start_col": 14, + "start_line": 15 + } + }, + "125": { + "accessible_scopes": [ + "openzeppelin.upgrades.library", + "openzeppelin.upgrades.library.Proxy_implementation_hash", + "openzeppelin.upgrades.library.Proxy_implementation_hash.read" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 75, + "end_line": 16, + "input_file": { + "filename": "autogen/starknet/storage_var/Proxy_implementation_hash/impl.cairo" + }, + "start_col": 37, + "start_line": 16 + } + }, + "127": { + "accessible_scopes": [ + "openzeppelin.upgrades.library", + "openzeppelin.upgrades.library.Proxy_implementation_hash", + "openzeppelin.upgrades.library.Proxy_implementation_hash.read" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 37, + "end_line": 352, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/starknet/common/syscalls.cairo" + }, + "parent_location": [ + { + "end_col": 75, + "end_line": 16, + "input_file": { + "filename": "autogen/starknet/storage_var/Proxy_implementation_hash/impl.cairo" + }, + "parent_location": [ + { + "end_col": 42, + "end_line": 18, + "input_file": { + "filename": "autogen/starknet/storage_var/Proxy_implementation_hash/impl.cairo" + }, + "start_col": 31, + "start_line": 18 + }, + "While expanding the reference 'syscall_ptr' in:" + ], + "start_col": 37, + "start_line": 16 + }, + "While trying to update the implicit return value 'syscall_ptr' in:" + ], + "start_col": 19, + "start_line": 352 + } + }, + "128": { + "accessible_scopes": [ + "openzeppelin.upgrades.library", + "openzeppelin.upgrades.library.Proxy_implementation_hash", + "openzeppelin.upgrades.library.Proxy_implementation_hash.read" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 41, + "end_line": 7, + "input_file": { + "filename": "autogen/starknet/storage_var/Proxy_implementation_hash/decl.cairo" + }, + "parent_location": [ + { + "end_col": 36, + "end_line": 15, + "input_file": { + "filename": "autogen/starknet/storage_var/Proxy_implementation_hash/impl.cairo" + }, + "parent_location": [ + { + "end_col": 44, + "end_line": 19, + "input_file": { + "filename": "autogen/starknet/storage_var/Proxy_implementation_hash/impl.cairo" + }, + "start_col": 32, + "start_line": 19 + }, + "While expanding the reference 'pedersen_ptr' in:" + ], + "start_col": 30, + "start_line": 15 + }, + "While trying to update the implicit return value 'pedersen_ptr' in:" + ], + "start_col": 15, + "start_line": 7 + } + }, + "129": { + "accessible_scopes": [ + "openzeppelin.upgrades.library", + "openzeppelin.upgrades.library.Proxy_implementation_hash", + "openzeppelin.upgrades.library.Proxy_implementation_hash.read" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 58, + "end_line": 7, + "input_file": { + "filename": "autogen/starknet/storage_var/Proxy_implementation_hash/decl.cairo" + }, + "parent_location": [ + { + "end_col": 36, + "end_line": 15, + "input_file": { + "filename": "autogen/starknet/storage_var/Proxy_implementation_hash/impl.cairo" + }, + "parent_location": [ + { + "end_col": 50, + "end_line": 20, + "input_file": { + "filename": "autogen/starknet/storage_var/Proxy_implementation_hash/impl.cairo" + }, + "start_col": 35, + "start_line": 20 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 30, + "start_line": 15 + }, + "While trying to update the implicit return value 'range_check_ptr' in:" + ], + "start_col": 43, + "start_line": 7 + } + }, + "130": { + "accessible_scopes": [ + "openzeppelin.upgrades.library", + "openzeppelin.upgrades.library.Proxy_implementation_hash", + "openzeppelin.upgrades.library.Proxy_implementation_hash.read" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 33, + "end_line": 16, + "input_file": { + "filename": "autogen/starknet/storage_var/Proxy_implementation_hash/impl.cairo" + }, + "parent_location": [ + { + "end_col": 64, + "end_line": 21, + "input_file": { + "filename": "autogen/starknet/storage_var/Proxy_implementation_hash/impl.cairo" + }, + "start_col": 45, + "start_line": 21 + }, + "While expanding the reference '__storage_var_temp0' in:" + ], + "start_col": 14, + "start_line": 16 + } + }, + "131": { + "accessible_scopes": [ + "openzeppelin.upgrades.library", + "openzeppelin.upgrades.library.Proxy_implementation_hash", + "openzeppelin.upgrades.library.Proxy_implementation_hash.read" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 55, + "end_line": 22, + "input_file": { + "filename": "autogen/starknet/storage_var/Proxy_implementation_hash/impl.cairo" + }, + "start_col": 9, + "start_line": 22 + } + }, + "132": { + "accessible_scopes": [ + "openzeppelin.upgrades.library", + "openzeppelin.upgrades.library.Proxy_implementation_hash", + "openzeppelin.upgrades.library.Proxy_implementation_hash.write" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 62, + "end_line": 25, + "input_file": { + "filename": "autogen/starknet/storage_var/Proxy_implementation_hash/impl.cairo" + }, + "parent_location": [ + { + "end_col": 41, + "end_line": 7, + "input_file": { + "filename": "autogen/starknet/storage_var/Proxy_implementation_hash/decl.cairo" + }, + "parent_location": [ + { + "end_col": 36, + "end_line": 26, + "input_file": { + "filename": "autogen/starknet/storage_var/Proxy_implementation_hash/impl.cairo" + }, + "start_col": 30, + "start_line": 26 + }, + "While trying to retrieve the implicit argument 'pedersen_ptr' in:" + ], + "start_col": 15, + "start_line": 7 + }, + "While expanding the reference 'pedersen_ptr' in:" + ], + "start_col": 36, + "start_line": 25 + } + }, + "133": { + "accessible_scopes": [ + "openzeppelin.upgrades.library", + "openzeppelin.upgrades.library.Proxy_implementation_hash", + "openzeppelin.upgrades.library.Proxy_implementation_hash.write" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 79, + "end_line": 25, + "input_file": { + "filename": "autogen/starknet/storage_var/Proxy_implementation_hash/impl.cairo" + }, + "parent_location": [ + { + "end_col": 58, + "end_line": 7, + "input_file": { + "filename": "autogen/starknet/storage_var/Proxy_implementation_hash/decl.cairo" + }, + "parent_location": [ + { + "end_col": 36, + "end_line": 26, + "input_file": { + "filename": "autogen/starknet/storage_var/Proxy_implementation_hash/impl.cairo" + }, + "start_col": 30, + "start_line": 26 + }, + "While trying to retrieve the implicit argument 'range_check_ptr' in:" + ], + "start_col": 43, + "start_line": 7 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 64, + "start_line": 25 + } + }, + "134": { + "accessible_scopes": [ + "openzeppelin.upgrades.library", + "openzeppelin.upgrades.library.Proxy_implementation_hash", + "openzeppelin.upgrades.library.Proxy_implementation_hash.write" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 36, + "end_line": 26, + "input_file": { + "filename": "autogen/starknet/storage_var/Proxy_implementation_hash/impl.cairo" + }, + "start_col": 30, + "start_line": 26 + } + }, + "136": { + "accessible_scopes": [ + "openzeppelin.upgrades.library", + "openzeppelin.upgrades.library.Proxy_implementation_hash", + "openzeppelin.upgrades.library.Proxy_implementation_hash.write" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 34, + "end_line": 25, + "input_file": { + "filename": "autogen/starknet/storage_var/Proxy_implementation_hash/impl.cairo" + }, + "parent_location": [ + { + "end_col": 38, + "end_line": 370, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/starknet/common/syscalls.cairo" + }, + "parent_location": [ + { + "end_col": 80, + "end_line": 27, + "input_file": { + "filename": "autogen/starknet/storage_var/Proxy_implementation_hash/impl.cairo" + }, + "start_col": 9, + "start_line": 27 + }, + "While trying to retrieve the implicit argument 'syscall_ptr' in:" + ], + "start_col": 20, + "start_line": 370 + }, + "While expanding the reference 'syscall_ptr' in:" + ], + "start_col": 16, + "start_line": 25 + } + }, + "137": { + "accessible_scopes": [ + "openzeppelin.upgrades.library", + "openzeppelin.upgrades.library.Proxy_implementation_hash", + "openzeppelin.upgrades.library.Proxy_implementation_hash.write" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 26, + "end_line": 26, + "input_file": { + "filename": "autogen/starknet/storage_var/Proxy_implementation_hash/impl.cairo" + }, + "parent_location": [ + { + "end_col": 43, + "end_line": 27, + "input_file": { + "filename": "autogen/starknet/storage_var/Proxy_implementation_hash/impl.cairo" + }, + "start_col": 31, + "start_line": 27 + }, + "While expanding the reference 'storage_addr' in:" + ], + "start_col": 14, + "start_line": 26 + } + }, + "138": { + "accessible_scopes": [ + "openzeppelin.upgrades.library", + "openzeppelin.upgrades.library.Proxy_implementation_hash", + "openzeppelin.upgrades.library.Proxy_implementation_hash.write" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 79, + "end_line": 27, + "input_file": { + "filename": "autogen/starknet/storage_var/Proxy_implementation_hash/impl.cairo" + }, + "start_col": 55, + "start_line": 27 + } + }, + "139": { + "accessible_scopes": [ + "openzeppelin.upgrades.library", + "openzeppelin.upgrades.library.Proxy_implementation_hash", + "openzeppelin.upgrades.library.Proxy_implementation_hash.write" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 80, + "end_line": 27, + "input_file": { + "filename": "autogen/starknet/storage_var/Proxy_implementation_hash/impl.cairo" + }, + "start_col": 9, + "start_line": 27 + } + }, + "141": { + "accessible_scopes": [ + "openzeppelin.upgrades.library", + "openzeppelin.upgrades.library.Proxy_implementation_hash", + "openzeppelin.upgrades.library.Proxy_implementation_hash.write" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 41, + "end_line": 7, + "input_file": { + "filename": "autogen/starknet/storage_var/Proxy_implementation_hash/decl.cairo" + }, + "parent_location": [ + { + "end_col": 36, + "end_line": 26, + "input_file": { + "filename": "autogen/starknet/storage_var/Proxy_implementation_hash/impl.cairo" + }, + "parent_location": [ + { + "end_col": 62, + "end_line": 21, + "input_file": { + "filename": "autogen/starknet/storage_var/Proxy_implementation_hash/decl.cairo" + }, + "parent_location": [ + { + "end_col": 19, + "end_line": 28, + "input_file": { + "filename": "autogen/starknet/storage_var/Proxy_implementation_hash/impl.cairo" + }, + "start_col": 9, + "start_line": 28 + }, + "While trying to retrieve the implicit argument 'pedersen_ptr' in:" + ], + "start_col": 36, + "start_line": 21 + }, + "While expanding the reference 'pedersen_ptr' in:" + ], + "start_col": 30, + "start_line": 26 + }, + "While trying to update the implicit return value 'pedersen_ptr' in:" + ], + "start_col": 15, + "start_line": 7 + } + }, + "142": { + "accessible_scopes": [ + "openzeppelin.upgrades.library", + "openzeppelin.upgrades.library.Proxy_implementation_hash", + "openzeppelin.upgrades.library.Proxy_implementation_hash.write" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 58, + "end_line": 7, + "input_file": { + "filename": "autogen/starknet/storage_var/Proxy_implementation_hash/decl.cairo" + }, + "parent_location": [ + { + "end_col": 36, + "end_line": 26, + "input_file": { + "filename": "autogen/starknet/storage_var/Proxy_implementation_hash/impl.cairo" + }, + "parent_location": [ + { + "end_col": 79, + "end_line": 21, + "input_file": { + "filename": "autogen/starknet/storage_var/Proxy_implementation_hash/decl.cairo" + }, + "parent_location": [ + { + "end_col": 19, + "end_line": 28, + "input_file": { + "filename": "autogen/starknet/storage_var/Proxy_implementation_hash/impl.cairo" + }, + "start_col": 9, + "start_line": 28 + }, + "While trying to retrieve the implicit argument 'range_check_ptr' in:" + ], + "start_col": 64, + "start_line": 21 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 30, + "start_line": 26 + }, + "While trying to update the implicit return value 'range_check_ptr' in:" + ], + "start_col": 43, + "start_line": 7 + } + }, + "143": { + "accessible_scopes": [ + "openzeppelin.upgrades.library", + "openzeppelin.upgrades.library.Proxy_implementation_hash", + "openzeppelin.upgrades.library.Proxy_implementation_hash.write" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 19, + "end_line": 28, + "input_file": { + "filename": "autogen/starknet/storage_var/Proxy_implementation_hash/impl.cairo" + }, + "start_col": 9, + "start_line": 28 + } + }, + "144": { + "accessible_scopes": [ + "openzeppelin.upgrades.library", + "openzeppelin.upgrades.library.Proxy_admin", + "openzeppelin.upgrades.library.Proxy_admin.addr" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 41, + "end_line": 7, + "input_file": { + "filename": "autogen/starknet/storage_var/Proxy_admin/impl.cairo" + }, + "parent_location": [ + { + "end_col": 41, + "end_line": 7, + "input_file": { + "filename": "autogen/starknet/storage_var/Proxy_admin/decl.cairo" + }, + "parent_location": [ + { + "end_col": 26, + "end_line": 9, + "input_file": { + "filename": "autogen/starknet/storage_var/Proxy_admin/impl.cairo" + }, + "start_col": 9, + "start_line": 9 + }, + "While trying to retrieve the implicit argument 'pedersen_ptr' in:" + ], + "start_col": 15, + "start_line": 7 + }, + "While expanding the reference 'pedersen_ptr' in:" + ], + "start_col": 15, + "start_line": 7 + } + }, + "145": { + "accessible_scopes": [ + "openzeppelin.upgrades.library", + "openzeppelin.upgrades.library.Proxy_admin", + "openzeppelin.upgrades.library.Proxy_admin.addr" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 58, + "end_line": 7, + "input_file": { + "filename": "autogen/starknet/storage_var/Proxy_admin/impl.cairo" + }, + "parent_location": [ + { + "end_col": 58, + "end_line": 7, + "input_file": { + "filename": "autogen/starknet/storage_var/Proxy_admin/decl.cairo" + }, + "parent_location": [ + { + "end_col": 26, + "end_line": 9, + "input_file": { + "filename": "autogen/starknet/storage_var/Proxy_admin/impl.cairo" + }, + "start_col": 9, + "start_line": 9 + }, + "While trying to retrieve the implicit argument 'range_check_ptr' in:" + ], + "start_col": 43, + "start_line": 7 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 43, + "start_line": 7 + } + }, + "146": { + "accessible_scopes": [ + "openzeppelin.upgrades.library", + "openzeppelin.upgrades.library.Proxy_admin", + "openzeppelin.upgrades.library.Proxy_admin.addr" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 94, + "end_line": 8, + "input_file": { + "filename": "autogen/starknet/storage_var/Proxy_admin/impl.cairo" + }, + "parent_location": [ + { + "end_col": 24, + "end_line": 9, + "input_file": { + "filename": "autogen/starknet/storage_var/Proxy_admin/impl.cairo" + }, + "start_col": 21, + "start_line": 9 + }, + "While expanding the reference 'res' in:" + ], + "start_col": 19, + "start_line": 8 + } + }, + "148": { + "accessible_scopes": [ + "openzeppelin.upgrades.library", + "openzeppelin.upgrades.library.Proxy_admin", + "openzeppelin.upgrades.library.Proxy_admin.addr" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 26, + "end_line": 9, + "input_file": { + "filename": "autogen/starknet/storage_var/Proxy_admin/impl.cairo" + }, + "start_col": 9, + "start_line": 9 + } + }, + "149": { + "accessible_scopes": [ + "openzeppelin.upgrades.library", + "openzeppelin.upgrades.library.Proxy_admin", + "openzeppelin.upgrades.library.Proxy_admin.read" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 61, + "end_line": 12, + "input_file": { + "filename": "autogen/starknet/storage_var/Proxy_admin/impl.cairo" + }, + "parent_location": [ + { + "end_col": 41, + "end_line": 7, + "input_file": { + "filename": "autogen/starknet/storage_var/Proxy_admin/decl.cairo" + }, + "parent_location": [ + { + "end_col": 36, + "end_line": 13, + "input_file": { + "filename": "autogen/starknet/storage_var/Proxy_admin/impl.cairo" + }, + "start_col": 30, + "start_line": 13 + }, + "While trying to retrieve the implicit argument 'pedersen_ptr' in:" + ], + "start_col": 15, + "start_line": 7 + }, + "While expanding the reference 'pedersen_ptr' in:" + ], + "start_col": 35, + "start_line": 12 + } + }, + "150": { + "accessible_scopes": [ + "openzeppelin.upgrades.library", + "openzeppelin.upgrades.library.Proxy_admin", + "openzeppelin.upgrades.library.Proxy_admin.read" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 78, + "end_line": 12, + "input_file": { + "filename": "autogen/starknet/storage_var/Proxy_admin/impl.cairo" + }, + "parent_location": [ + { + "end_col": 58, + "end_line": 7, + "input_file": { + "filename": "autogen/starknet/storage_var/Proxy_admin/decl.cairo" + }, + "parent_location": [ + { + "end_col": 36, + "end_line": 13, + "input_file": { + "filename": "autogen/starknet/storage_var/Proxy_admin/impl.cairo" + }, + "start_col": 30, + "start_line": 13 + }, + "While trying to retrieve the implicit argument 'range_check_ptr' in:" + ], + "start_col": 43, + "start_line": 7 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 63, + "start_line": 12 + } + }, + "151": { + "accessible_scopes": [ + "openzeppelin.upgrades.library", + "openzeppelin.upgrades.library.Proxy_admin", + "openzeppelin.upgrades.library.Proxy_admin.read" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 36, + "end_line": 13, + "input_file": { + "filename": "autogen/starknet/storage_var/Proxy_admin/impl.cairo" + }, + "start_col": 30, + "start_line": 13 + } + }, + "153": { + "accessible_scopes": [ + "openzeppelin.upgrades.library", + "openzeppelin.upgrades.library.Proxy_admin", + "openzeppelin.upgrades.library.Proxy_admin.read" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 33, + "end_line": 12, + "input_file": { + "filename": "autogen/starknet/storage_var/Proxy_admin/impl.cairo" + }, + "parent_location": [ + { + "end_col": 37, + "end_line": 352, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/starknet/common/syscalls.cairo" + }, + "parent_location": [ + { + "end_col": 75, + "end_line": 14, + "input_file": { + "filename": "autogen/starknet/storage_var/Proxy_admin/impl.cairo" + }, + "start_col": 37, + "start_line": 14 + }, + "While trying to retrieve the implicit argument 'syscall_ptr' in:" + ], + "start_col": 19, + "start_line": 352 + }, + "While expanding the reference 'syscall_ptr' in:" + ], + "start_col": 15, + "start_line": 12 + } + }, + "154": { + "accessible_scopes": [ + "openzeppelin.upgrades.library", + "openzeppelin.upgrades.library.Proxy_admin", + "openzeppelin.upgrades.library.Proxy_admin.read" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 26, + "end_line": 13, + "input_file": { + "filename": "autogen/starknet/storage_var/Proxy_admin/impl.cairo" + }, + "parent_location": [ + { + "end_col": 70, + "end_line": 14, + "input_file": { + "filename": "autogen/starknet/storage_var/Proxy_admin/impl.cairo" + }, + "start_col": 58, + "start_line": 14 + }, + "While expanding the reference 'storage_addr' in:" + ], + "start_col": 14, + "start_line": 13 + } + }, + "155": { + "accessible_scopes": [ + "openzeppelin.upgrades.library", + "openzeppelin.upgrades.library.Proxy_admin", + "openzeppelin.upgrades.library.Proxy_admin.read" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 75, + "end_line": 14, + "input_file": { + "filename": "autogen/starknet/storage_var/Proxy_admin/impl.cairo" + }, + "start_col": 37, + "start_line": 14 + } + }, + "157": { + "accessible_scopes": [ + "openzeppelin.upgrades.library", + "openzeppelin.upgrades.library.Proxy_admin", + "openzeppelin.upgrades.library.Proxy_admin.read" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 37, + "end_line": 352, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/starknet/common/syscalls.cairo" + }, + "parent_location": [ + { + "end_col": 75, + "end_line": 14, + "input_file": { + "filename": "autogen/starknet/storage_var/Proxy_admin/impl.cairo" + }, + "parent_location": [ + { + "end_col": 42, + "end_line": 16, + "input_file": { + "filename": "autogen/starknet/storage_var/Proxy_admin/impl.cairo" + }, + "start_col": 31, + "start_line": 16 + }, + "While expanding the reference 'syscall_ptr' in:" + ], + "start_col": 37, + "start_line": 14 + }, + "While trying to update the implicit return value 'syscall_ptr' in:" + ], + "start_col": 19, + "start_line": 352 + } + }, + "158": { + "accessible_scopes": [ + "openzeppelin.upgrades.library", + "openzeppelin.upgrades.library.Proxy_admin", + "openzeppelin.upgrades.library.Proxy_admin.read" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 41, + "end_line": 7, + "input_file": { + "filename": "autogen/starknet/storage_var/Proxy_admin/decl.cairo" + }, + "parent_location": [ + { + "end_col": 36, + "end_line": 13, + "input_file": { + "filename": "autogen/starknet/storage_var/Proxy_admin/impl.cairo" + }, + "parent_location": [ + { + "end_col": 44, + "end_line": 17, + "input_file": { + "filename": "autogen/starknet/storage_var/Proxy_admin/impl.cairo" + }, + "start_col": 32, + "start_line": 17 + }, + "While expanding the reference 'pedersen_ptr' in:" + ], + "start_col": 30, + "start_line": 13 + }, + "While trying to update the implicit return value 'pedersen_ptr' in:" + ], + "start_col": 15, + "start_line": 7 + } + }, + "159": { + "accessible_scopes": [ + "openzeppelin.upgrades.library", + "openzeppelin.upgrades.library.Proxy_admin", + "openzeppelin.upgrades.library.Proxy_admin.read" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 58, + "end_line": 7, + "input_file": { + "filename": "autogen/starknet/storage_var/Proxy_admin/decl.cairo" + }, + "parent_location": [ + { + "end_col": 36, + "end_line": 13, + "input_file": { + "filename": "autogen/starknet/storage_var/Proxy_admin/impl.cairo" + }, + "parent_location": [ + { + "end_col": 50, + "end_line": 18, + "input_file": { + "filename": "autogen/starknet/storage_var/Proxy_admin/impl.cairo" + }, + "start_col": 35, + "start_line": 18 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 30, + "start_line": 13 + }, + "While trying to update the implicit return value 'range_check_ptr' in:" + ], + "start_col": 43, + "start_line": 7 + } + }, + "160": { + "accessible_scopes": [ + "openzeppelin.upgrades.library", + "openzeppelin.upgrades.library.Proxy_admin", + "openzeppelin.upgrades.library.Proxy_admin.read" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 33, + "end_line": 14, + "input_file": { + "filename": "autogen/starknet/storage_var/Proxy_admin/impl.cairo" + }, + "parent_location": [ + { + "end_col": 64, + "end_line": 19, + "input_file": { + "filename": "autogen/starknet/storage_var/Proxy_admin/impl.cairo" + }, + "start_col": 45, + "start_line": 19 + }, + "While expanding the reference '__storage_var_temp0' in:" + ], + "start_col": 14, + "start_line": 14 + } + }, + "161": { + "accessible_scopes": [ + "openzeppelin.upgrades.library", + "openzeppelin.upgrades.library.Proxy_admin", + "openzeppelin.upgrades.library.Proxy_admin.read" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 55, + "end_line": 20, + "input_file": { + "filename": "autogen/starknet/storage_var/Proxy_admin/impl.cairo" + }, + "start_col": 9, + "start_line": 20 + } + }, + "162": { + "accessible_scopes": [ + "openzeppelin.upgrades.library", + "openzeppelin.upgrades.library.Proxy_admin", + "openzeppelin.upgrades.library.Proxy_admin.write" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 62, + "end_line": 23, + "input_file": { + "filename": "autogen/starknet/storage_var/Proxy_admin/impl.cairo" + }, + "parent_location": [ + { + "end_col": 41, + "end_line": 7, + "input_file": { + "filename": "autogen/starknet/storage_var/Proxy_admin/decl.cairo" + }, + "parent_location": [ + { + "end_col": 36, + "end_line": 24, + "input_file": { + "filename": "autogen/starknet/storage_var/Proxy_admin/impl.cairo" + }, + "start_col": 30, + "start_line": 24 + }, + "While trying to retrieve the implicit argument 'pedersen_ptr' in:" + ], + "start_col": 15, + "start_line": 7 + }, + "While expanding the reference 'pedersen_ptr' in:" + ], + "start_col": 36, + "start_line": 23 + } + }, + "163": { + "accessible_scopes": [ + "openzeppelin.upgrades.library", + "openzeppelin.upgrades.library.Proxy_admin", + "openzeppelin.upgrades.library.Proxy_admin.write" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 79, + "end_line": 23, + "input_file": { + "filename": "autogen/starknet/storage_var/Proxy_admin/impl.cairo" + }, + "parent_location": [ + { + "end_col": 58, + "end_line": 7, + "input_file": { + "filename": "autogen/starknet/storage_var/Proxy_admin/decl.cairo" + }, + "parent_location": [ + { + "end_col": 36, + "end_line": 24, + "input_file": { + "filename": "autogen/starknet/storage_var/Proxy_admin/impl.cairo" + }, + "start_col": 30, + "start_line": 24 + }, + "While trying to retrieve the implicit argument 'range_check_ptr' in:" + ], + "start_col": 43, + "start_line": 7 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 64, + "start_line": 23 + } + }, + "164": { + "accessible_scopes": [ + "openzeppelin.upgrades.library", + "openzeppelin.upgrades.library.Proxy_admin", + "openzeppelin.upgrades.library.Proxy_admin.write" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 36, + "end_line": 24, + "input_file": { + "filename": "autogen/starknet/storage_var/Proxy_admin/impl.cairo" + }, + "start_col": 30, + "start_line": 24 + } + }, + "166": { + "accessible_scopes": [ + "openzeppelin.upgrades.library", + "openzeppelin.upgrades.library.Proxy_admin", + "openzeppelin.upgrades.library.Proxy_admin.write" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 34, + "end_line": 23, + "input_file": { + "filename": "autogen/starknet/storage_var/Proxy_admin/impl.cairo" + }, + "parent_location": [ + { + "end_col": 38, + "end_line": 370, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/starknet/common/syscalls.cairo" + }, + "parent_location": [ + { + "end_col": 80, + "end_line": 25, + "input_file": { + "filename": "autogen/starknet/storage_var/Proxy_admin/impl.cairo" + }, + "start_col": 9, + "start_line": 25 + }, + "While trying to retrieve the implicit argument 'syscall_ptr' in:" + ], + "start_col": 20, + "start_line": 370 + }, + "While expanding the reference 'syscall_ptr' in:" + ], + "start_col": 16, + "start_line": 23 + } + }, + "167": { + "accessible_scopes": [ + "openzeppelin.upgrades.library", + "openzeppelin.upgrades.library.Proxy_admin", + "openzeppelin.upgrades.library.Proxy_admin.write" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 26, + "end_line": 24, + "input_file": { + "filename": "autogen/starknet/storage_var/Proxy_admin/impl.cairo" + }, + "parent_location": [ + { + "end_col": 43, + "end_line": 25, + "input_file": { + "filename": "autogen/starknet/storage_var/Proxy_admin/impl.cairo" + }, + "start_col": 31, + "start_line": 25 + }, + "While expanding the reference 'storage_addr' in:" + ], + "start_col": 14, + "start_line": 24 + } + }, + "168": { + "accessible_scopes": [ + "openzeppelin.upgrades.library", + "openzeppelin.upgrades.library.Proxy_admin", + "openzeppelin.upgrades.library.Proxy_admin.write" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 79, + "end_line": 25, + "input_file": { + "filename": "autogen/starknet/storage_var/Proxy_admin/impl.cairo" + }, + "start_col": 55, + "start_line": 25 + } + }, + "169": { + "accessible_scopes": [ + "openzeppelin.upgrades.library", + "openzeppelin.upgrades.library.Proxy_admin", + "openzeppelin.upgrades.library.Proxy_admin.write" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 80, + "end_line": 25, + "input_file": { + "filename": "autogen/starknet/storage_var/Proxy_admin/impl.cairo" + }, + "start_col": 9, + "start_line": 25 + } + }, + "171": { + "accessible_scopes": [ + "openzeppelin.upgrades.library", + "openzeppelin.upgrades.library.Proxy_admin", + "openzeppelin.upgrades.library.Proxy_admin.write" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 41, + "end_line": 7, + "input_file": { + "filename": "autogen/starknet/storage_var/Proxy_admin/decl.cairo" + }, + "parent_location": [ + { + "end_col": 36, + "end_line": 24, + "input_file": { + "filename": "autogen/starknet/storage_var/Proxy_admin/impl.cairo" + }, + "parent_location": [ + { + "end_col": 62, + "end_line": 19, + "input_file": { + "filename": "autogen/starknet/storage_var/Proxy_admin/decl.cairo" + }, + "parent_location": [ + { + "end_col": 19, + "end_line": 26, + "input_file": { + "filename": "autogen/starknet/storage_var/Proxy_admin/impl.cairo" + }, + "start_col": 9, + "start_line": 26 + }, + "While trying to retrieve the implicit argument 'pedersen_ptr' in:" + ], + "start_col": 36, + "start_line": 19 + }, + "While expanding the reference 'pedersen_ptr' in:" + ], + "start_col": 30, + "start_line": 24 + }, + "While trying to update the implicit return value 'pedersen_ptr' in:" + ], + "start_col": 15, + "start_line": 7 + } + }, + "172": { + "accessible_scopes": [ + "openzeppelin.upgrades.library", + "openzeppelin.upgrades.library.Proxy_admin", + "openzeppelin.upgrades.library.Proxy_admin.write" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 58, + "end_line": 7, + "input_file": { + "filename": "autogen/starknet/storage_var/Proxy_admin/decl.cairo" + }, + "parent_location": [ + { + "end_col": 36, + "end_line": 24, + "input_file": { + "filename": "autogen/starknet/storage_var/Proxy_admin/impl.cairo" + }, + "parent_location": [ + { + "end_col": 79, + "end_line": 19, + "input_file": { + "filename": "autogen/starknet/storage_var/Proxy_admin/decl.cairo" + }, + "parent_location": [ + { + "end_col": 19, + "end_line": 26, + "input_file": { + "filename": "autogen/starknet/storage_var/Proxy_admin/impl.cairo" + }, + "start_col": 9, + "start_line": 26 + }, + "While trying to retrieve the implicit argument 'range_check_ptr' in:" + ], + "start_col": 64, + "start_line": 19 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 30, + "start_line": 24 + }, + "While trying to update the implicit return value 'range_check_ptr' in:" + ], + "start_col": 43, + "start_line": 7 + } + }, + "173": { + "accessible_scopes": [ + "openzeppelin.upgrades.library", + "openzeppelin.upgrades.library.Proxy_admin", + "openzeppelin.upgrades.library.Proxy_admin.write" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 19, + "end_line": 26, + "input_file": { + "filename": "autogen/starknet/storage_var/Proxy_admin/impl.cairo" + }, + "start_col": 9, + "start_line": 26 + } + }, + "174": { + "accessible_scopes": [ + "openzeppelin.upgrades.library", + "openzeppelin.upgrades.library.Proxy_initialized", + "openzeppelin.upgrades.library.Proxy_initialized.addr" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 41, + "end_line": 7, + "input_file": { + "filename": "autogen/starknet/storage_var/Proxy_initialized/impl.cairo" + }, + "parent_location": [ + { + "end_col": 41, + "end_line": 7, + "input_file": { + "filename": "autogen/starknet/storage_var/Proxy_initialized/decl.cairo" + }, + "parent_location": [ + { + "end_col": 26, + "end_line": 9, + "input_file": { + "filename": "autogen/starknet/storage_var/Proxy_initialized/impl.cairo" + }, + "start_col": 9, + "start_line": 9 + }, + "While trying to retrieve the implicit argument 'pedersen_ptr' in:" + ], + "start_col": 15, + "start_line": 7 + }, + "While expanding the reference 'pedersen_ptr' in:" + ], + "start_col": 15, + "start_line": 7 + } + }, + "175": { + "accessible_scopes": [ + "openzeppelin.upgrades.library", + "openzeppelin.upgrades.library.Proxy_initialized", + "openzeppelin.upgrades.library.Proxy_initialized.addr" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 58, + "end_line": 7, + "input_file": { + "filename": "autogen/starknet/storage_var/Proxy_initialized/impl.cairo" + }, + "parent_location": [ + { + "end_col": 58, + "end_line": 7, + "input_file": { + "filename": "autogen/starknet/storage_var/Proxy_initialized/decl.cairo" + }, + "parent_location": [ + { + "end_col": 26, + "end_line": 9, + "input_file": { + "filename": "autogen/starknet/storage_var/Proxy_initialized/impl.cairo" + }, + "start_col": 9, + "start_line": 9 + }, + "While trying to retrieve the implicit argument 'range_check_ptr' in:" + ], + "start_col": 43, + "start_line": 7 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 43, + "start_line": 7 + } + }, + "176": { + "accessible_scopes": [ + "openzeppelin.upgrades.library", + "openzeppelin.upgrades.library.Proxy_initialized", + "openzeppelin.upgrades.library.Proxy_initialized.addr" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 95, + "end_line": 8, + "input_file": { + "filename": "autogen/starknet/storage_var/Proxy_initialized/impl.cairo" + }, + "parent_location": [ + { + "end_col": 24, + "end_line": 9, + "input_file": { + "filename": "autogen/starknet/storage_var/Proxy_initialized/impl.cairo" + }, + "start_col": 21, + "start_line": 9 + }, + "While expanding the reference 'res' in:" + ], + "start_col": 19, + "start_line": 8 + } + }, + "178": { + "accessible_scopes": [ + "openzeppelin.upgrades.library", + "openzeppelin.upgrades.library.Proxy_initialized", + "openzeppelin.upgrades.library.Proxy_initialized.addr" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 26, + "end_line": 9, + "input_file": { + "filename": "autogen/starknet/storage_var/Proxy_initialized/impl.cairo" + }, + "start_col": 9, + "start_line": 9 + } + }, + "179": { + "accessible_scopes": [ + "openzeppelin.upgrades.library", + "openzeppelin.upgrades.library.Proxy_initialized", + "openzeppelin.upgrades.library.Proxy_initialized.read" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 61, + "end_line": 12, + "input_file": { + "filename": "autogen/starknet/storage_var/Proxy_initialized/impl.cairo" + }, + "parent_location": [ + { + "end_col": 41, + "end_line": 7, + "input_file": { + "filename": "autogen/starknet/storage_var/Proxy_initialized/decl.cairo" + }, + "parent_location": [ + { + "end_col": 36, + "end_line": 15, + "input_file": { + "filename": "autogen/starknet/storage_var/Proxy_initialized/impl.cairo" + }, + "start_col": 30, + "start_line": 15 + }, + "While trying to retrieve the implicit argument 'pedersen_ptr' in:" + ], + "start_col": 15, + "start_line": 7 + }, + "While expanding the reference 'pedersen_ptr' in:" + ], + "start_col": 35, + "start_line": 12 + } + }, + "180": { + "accessible_scopes": [ + "openzeppelin.upgrades.library", + "openzeppelin.upgrades.library.Proxy_initialized", + "openzeppelin.upgrades.library.Proxy_initialized.read" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 78, + "end_line": 12, + "input_file": { + "filename": "autogen/starknet/storage_var/Proxy_initialized/impl.cairo" + }, + "parent_location": [ + { + "end_col": 58, + "end_line": 7, + "input_file": { + "filename": "autogen/starknet/storage_var/Proxy_initialized/decl.cairo" + }, + "parent_location": [ + { + "end_col": 36, + "end_line": 15, + "input_file": { + "filename": "autogen/starknet/storage_var/Proxy_initialized/impl.cairo" + }, + "start_col": 30, + "start_line": 15 + }, + "While trying to retrieve the implicit argument 'range_check_ptr' in:" + ], + "start_col": 43, + "start_line": 7 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 63, + "start_line": 12 + } + }, + "181": { + "accessible_scopes": [ + "openzeppelin.upgrades.library", + "openzeppelin.upgrades.library.Proxy_initialized", + "openzeppelin.upgrades.library.Proxy_initialized.read" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 36, + "end_line": 15, + "input_file": { + "filename": "autogen/starknet/storage_var/Proxy_initialized/impl.cairo" + }, + "start_col": 30, + "start_line": 15 + } + }, + "183": { + "accessible_scopes": [ + "openzeppelin.upgrades.library", + "openzeppelin.upgrades.library.Proxy_initialized", + "openzeppelin.upgrades.library.Proxy_initialized.read" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 33, + "end_line": 12, + "input_file": { + "filename": "autogen/starknet/storage_var/Proxy_initialized/impl.cairo" + }, + "parent_location": [ + { + "end_col": 37, + "end_line": 352, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/starknet/common/syscalls.cairo" + }, + "parent_location": [ + { + "end_col": 75, + "end_line": 16, + "input_file": { + "filename": "autogen/starknet/storage_var/Proxy_initialized/impl.cairo" + }, + "start_col": 37, + "start_line": 16 + }, + "While trying to retrieve the implicit argument 'syscall_ptr' in:" + ], + "start_col": 19, + "start_line": 352 + }, + "While expanding the reference 'syscall_ptr' in:" + ], + "start_col": 15, + "start_line": 12 + } + }, + "184": { + "accessible_scopes": [ + "openzeppelin.upgrades.library", + "openzeppelin.upgrades.library.Proxy_initialized", + "openzeppelin.upgrades.library.Proxy_initialized.read" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 26, + "end_line": 15, + "input_file": { + "filename": "autogen/starknet/storage_var/Proxy_initialized/impl.cairo" + }, + "parent_location": [ + { + "end_col": 70, + "end_line": 16, + "input_file": { + "filename": "autogen/starknet/storage_var/Proxy_initialized/impl.cairo" + }, + "start_col": 58, + "start_line": 16 + }, + "While expanding the reference 'storage_addr' in:" + ], + "start_col": 14, + "start_line": 15 + } + }, + "185": { + "accessible_scopes": [ + "openzeppelin.upgrades.library", + "openzeppelin.upgrades.library.Proxy_initialized", + "openzeppelin.upgrades.library.Proxy_initialized.read" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 75, + "end_line": 16, + "input_file": { + "filename": "autogen/starknet/storage_var/Proxy_initialized/impl.cairo" + }, + "start_col": 37, + "start_line": 16 + } + }, + "187": { + "accessible_scopes": [ + "openzeppelin.upgrades.library", + "openzeppelin.upgrades.library.Proxy_initialized", + "openzeppelin.upgrades.library.Proxy_initialized.read" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 37, + "end_line": 352, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/starknet/common/syscalls.cairo" + }, + "parent_location": [ + { + "end_col": 75, + "end_line": 16, + "input_file": { + "filename": "autogen/starknet/storage_var/Proxy_initialized/impl.cairo" + }, + "parent_location": [ + { + "end_col": 42, + "end_line": 18, + "input_file": { + "filename": "autogen/starknet/storage_var/Proxy_initialized/impl.cairo" + }, + "start_col": 31, + "start_line": 18 + }, + "While expanding the reference 'syscall_ptr' in:" + ], + "start_col": 37, + "start_line": 16 + }, + "While trying to update the implicit return value 'syscall_ptr' in:" + ], + "start_col": 19, + "start_line": 352 + } + }, + "188": { + "accessible_scopes": [ + "openzeppelin.upgrades.library", + "openzeppelin.upgrades.library.Proxy_initialized", + "openzeppelin.upgrades.library.Proxy_initialized.read" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 41, + "end_line": 7, + "input_file": { + "filename": "autogen/starknet/storage_var/Proxy_initialized/decl.cairo" + }, + "parent_location": [ + { + "end_col": 36, + "end_line": 15, + "input_file": { + "filename": "autogen/starknet/storage_var/Proxy_initialized/impl.cairo" + }, + "parent_location": [ + { + "end_col": 44, + "end_line": 19, + "input_file": { + "filename": "autogen/starknet/storage_var/Proxy_initialized/impl.cairo" + }, + "start_col": 32, + "start_line": 19 + }, + "While expanding the reference 'pedersen_ptr' in:" + ], + "start_col": 30, + "start_line": 15 + }, + "While trying to update the implicit return value 'pedersen_ptr' in:" + ], + "start_col": 15, + "start_line": 7 + } + }, + "189": { + "accessible_scopes": [ + "openzeppelin.upgrades.library", + "openzeppelin.upgrades.library.Proxy_initialized", + "openzeppelin.upgrades.library.Proxy_initialized.read" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 58, + "end_line": 7, + "input_file": { + "filename": "autogen/starknet/storage_var/Proxy_initialized/decl.cairo" + }, + "parent_location": [ + { + "end_col": 36, + "end_line": 15, + "input_file": { + "filename": "autogen/starknet/storage_var/Proxy_initialized/impl.cairo" + }, + "parent_location": [ + { + "end_col": 50, + "end_line": 20, + "input_file": { + "filename": "autogen/starknet/storage_var/Proxy_initialized/impl.cairo" + }, + "start_col": 35, + "start_line": 20 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 30, + "start_line": 15 + }, + "While trying to update the implicit return value 'range_check_ptr' in:" + ], + "start_col": 43, + "start_line": 7 + } + }, + "190": { + "accessible_scopes": [ + "openzeppelin.upgrades.library", + "openzeppelin.upgrades.library.Proxy_initialized", + "openzeppelin.upgrades.library.Proxy_initialized.read" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 33, + "end_line": 16, + "input_file": { + "filename": "autogen/starknet/storage_var/Proxy_initialized/impl.cairo" + }, + "parent_location": [ + { + "end_col": 64, + "end_line": 21, + "input_file": { + "filename": "autogen/starknet/storage_var/Proxy_initialized/impl.cairo" + }, + "start_col": 45, + "start_line": 21 + }, + "While expanding the reference '__storage_var_temp0' in:" + ], + "start_col": 14, + "start_line": 16 + } + }, + "191": { + "accessible_scopes": [ + "openzeppelin.upgrades.library", + "openzeppelin.upgrades.library.Proxy_initialized", + "openzeppelin.upgrades.library.Proxy_initialized.read" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 55, + "end_line": 22, + "input_file": { + "filename": "autogen/starknet/storage_var/Proxy_initialized/impl.cairo" + }, + "start_col": 9, + "start_line": 22 + } + }, + "192": { + "accessible_scopes": [ + "openzeppelin.upgrades.library", + "openzeppelin.upgrades.library.Proxy_initialized", + "openzeppelin.upgrades.library.Proxy_initialized.write" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 62, + "end_line": 25, + "input_file": { + "filename": "autogen/starknet/storage_var/Proxy_initialized/impl.cairo" + }, + "parent_location": [ + { + "end_col": 41, + "end_line": 7, + "input_file": { + "filename": "autogen/starknet/storage_var/Proxy_initialized/decl.cairo" + }, + "parent_location": [ + { + "end_col": 36, + "end_line": 26, + "input_file": { + "filename": "autogen/starknet/storage_var/Proxy_initialized/impl.cairo" + }, + "start_col": 30, + "start_line": 26 + }, + "While trying to retrieve the implicit argument 'pedersen_ptr' in:" + ], + "start_col": 15, + "start_line": 7 + }, + "While expanding the reference 'pedersen_ptr' in:" + ], + "start_col": 36, + "start_line": 25 + } + }, + "193": { + "accessible_scopes": [ + "openzeppelin.upgrades.library", + "openzeppelin.upgrades.library.Proxy_initialized", + "openzeppelin.upgrades.library.Proxy_initialized.write" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 79, + "end_line": 25, + "input_file": { + "filename": "autogen/starknet/storage_var/Proxy_initialized/impl.cairo" + }, + "parent_location": [ + { + "end_col": 58, + "end_line": 7, + "input_file": { + "filename": "autogen/starknet/storage_var/Proxy_initialized/decl.cairo" + }, + "parent_location": [ + { + "end_col": 36, + "end_line": 26, + "input_file": { + "filename": "autogen/starknet/storage_var/Proxy_initialized/impl.cairo" + }, + "start_col": 30, + "start_line": 26 + }, + "While trying to retrieve the implicit argument 'range_check_ptr' in:" + ], + "start_col": 43, + "start_line": 7 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 64, + "start_line": 25 + } + }, + "194": { + "accessible_scopes": [ + "openzeppelin.upgrades.library", + "openzeppelin.upgrades.library.Proxy_initialized", + "openzeppelin.upgrades.library.Proxy_initialized.write" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 36, + "end_line": 26, + "input_file": { + "filename": "autogen/starknet/storage_var/Proxy_initialized/impl.cairo" + }, + "start_col": 30, + "start_line": 26 + } + }, + "196": { + "accessible_scopes": [ + "openzeppelin.upgrades.library", + "openzeppelin.upgrades.library.Proxy_initialized", + "openzeppelin.upgrades.library.Proxy_initialized.write" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 34, + "end_line": 25, + "input_file": { + "filename": "autogen/starknet/storage_var/Proxy_initialized/impl.cairo" + }, + "parent_location": [ + { + "end_col": 38, + "end_line": 370, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/starknet/common/syscalls.cairo" + }, + "parent_location": [ + { + "end_col": 80, + "end_line": 27, + "input_file": { + "filename": "autogen/starknet/storage_var/Proxy_initialized/impl.cairo" + }, + "start_col": 9, + "start_line": 27 + }, + "While trying to retrieve the implicit argument 'syscall_ptr' in:" + ], + "start_col": 20, + "start_line": 370 + }, + "While expanding the reference 'syscall_ptr' in:" + ], + "start_col": 16, + "start_line": 25 + } + }, + "197": { + "accessible_scopes": [ + "openzeppelin.upgrades.library", + "openzeppelin.upgrades.library.Proxy_initialized", + "openzeppelin.upgrades.library.Proxy_initialized.write" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 26, + "end_line": 26, + "input_file": { + "filename": "autogen/starknet/storage_var/Proxy_initialized/impl.cairo" + }, + "parent_location": [ + { + "end_col": 43, + "end_line": 27, + "input_file": { + "filename": "autogen/starknet/storage_var/Proxy_initialized/impl.cairo" + }, + "start_col": 31, + "start_line": 27 + }, + "While expanding the reference 'storage_addr' in:" + ], + "start_col": 14, + "start_line": 26 + } + }, + "198": { + "accessible_scopes": [ + "openzeppelin.upgrades.library", + "openzeppelin.upgrades.library.Proxy_initialized", + "openzeppelin.upgrades.library.Proxy_initialized.write" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 79, + "end_line": 27, + "input_file": { + "filename": "autogen/starknet/storage_var/Proxy_initialized/impl.cairo" + }, + "start_col": 55, + "start_line": 27 + } + }, + "199": { + "accessible_scopes": [ + "openzeppelin.upgrades.library", + "openzeppelin.upgrades.library.Proxy_initialized", + "openzeppelin.upgrades.library.Proxy_initialized.write" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 80, + "end_line": 27, + "input_file": { + "filename": "autogen/starknet/storage_var/Proxy_initialized/impl.cairo" + }, + "start_col": 9, + "start_line": 27 + } + }, + "201": { + "accessible_scopes": [ + "openzeppelin.upgrades.library", + "openzeppelin.upgrades.library.Proxy_initialized", + "openzeppelin.upgrades.library.Proxy_initialized.write" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 41, + "end_line": 7, + "input_file": { + "filename": "autogen/starknet/storage_var/Proxy_initialized/decl.cairo" + }, + "parent_location": [ + { + "end_col": 36, + "end_line": 26, + "input_file": { + "filename": "autogen/starknet/storage_var/Proxy_initialized/impl.cairo" + }, + "parent_location": [ + { + "end_col": 62, + "end_line": 21, + "input_file": { + "filename": "autogen/starknet/storage_var/Proxy_initialized/decl.cairo" + }, + "parent_location": [ + { + "end_col": 19, + "end_line": 28, + "input_file": { + "filename": "autogen/starknet/storage_var/Proxy_initialized/impl.cairo" + }, + "start_col": 9, + "start_line": 28 + }, + "While trying to retrieve the implicit argument 'pedersen_ptr' in:" + ], + "start_col": 36, + "start_line": 21 + }, + "While expanding the reference 'pedersen_ptr' in:" + ], + "start_col": 30, + "start_line": 26 + }, + "While trying to update the implicit return value 'pedersen_ptr' in:" + ], + "start_col": 15, + "start_line": 7 + } + }, + "202": { + "accessible_scopes": [ + "openzeppelin.upgrades.library", + "openzeppelin.upgrades.library.Proxy_initialized", + "openzeppelin.upgrades.library.Proxy_initialized.write" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 58, + "end_line": 7, + "input_file": { + "filename": "autogen/starknet/storage_var/Proxy_initialized/decl.cairo" + }, + "parent_location": [ + { + "end_col": 36, + "end_line": 26, + "input_file": { + "filename": "autogen/starknet/storage_var/Proxy_initialized/impl.cairo" + }, + "parent_location": [ + { + "end_col": 79, + "end_line": 21, + "input_file": { + "filename": "autogen/starknet/storage_var/Proxy_initialized/decl.cairo" + }, + "parent_location": [ + { + "end_col": 19, + "end_line": 28, + "input_file": { + "filename": "autogen/starknet/storage_var/Proxy_initialized/impl.cairo" + }, + "start_col": 9, + "start_line": 28 + }, + "While trying to retrieve the implicit argument 'range_check_ptr' in:" + ], + "start_col": 64, + "start_line": 21 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 30, + "start_line": 26 + }, + "While trying to update the implicit return value 'range_check_ptr' in:" + ], + "start_col": 43, + "start_line": 7 + } + }, + "203": { + "accessible_scopes": [ + "openzeppelin.upgrades.library", + "openzeppelin.upgrades.library.Proxy_initialized", + "openzeppelin.upgrades.library.Proxy_initialized.write" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 19, + "end_line": 28, + "input_file": { + "filename": "autogen/starknet/storage_var/Proxy_initialized/impl.cairo" + }, + "start_col": 9, + "start_line": 28 + } + }, + "204": { + "accessible_scopes": [ + "openzeppelin.upgrades.library", + "openzeppelin.upgrades.library.Proxy", + "openzeppelin.upgrades.library.Proxy.initializer" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 40, + "end_line": 44, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/upgrades/library.cairo" + }, + "parent_location": [ + { + "end_col": 33, + "end_line": 13, + "input_file": { + "filename": "autogen/starknet/storage_var/Proxy_initialized/decl.cairo" + }, + "parent_location": [ + { + "end_col": 53, + "end_line": 47, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/upgrades/library.cairo" + }, + "start_col": 29, + "start_line": 47 + }, + "While trying to retrieve the implicit argument 'syscall_ptr' in:" + ], + "start_col": 15, + "start_line": 13 + }, + "While expanding the reference 'syscall_ptr' in:" + ], + "start_col": 22, + "start_line": 44 + } + }, + "205": { + "accessible_scopes": [ + "openzeppelin.upgrades.library", + "openzeppelin.upgrades.library.Proxy", + "openzeppelin.upgrades.library.Proxy.initializer" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 68, + "end_line": 44, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/upgrades/library.cairo" + }, + "parent_location": [ + { + "end_col": 61, + "end_line": 13, + "input_file": { + "filename": "autogen/starknet/storage_var/Proxy_initialized/decl.cairo" + }, + "parent_location": [ + { + "end_col": 53, + "end_line": 47, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/upgrades/library.cairo" + }, + "start_col": 29, + "start_line": 47 + }, + "While trying to retrieve the implicit argument 'pedersen_ptr' in:" + ], + "start_col": 35, + "start_line": 13 + }, + "While expanding the reference 'pedersen_ptr' in:" + ], + "start_col": 42, + "start_line": 44 + } + }, + "206": { + "accessible_scopes": [ + "openzeppelin.upgrades.library", + "openzeppelin.upgrades.library.Proxy", + "openzeppelin.upgrades.library.Proxy.initializer" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 85, + "end_line": 44, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/upgrades/library.cairo" + }, + "parent_location": [ + { + "end_col": 78, + "end_line": 13, + "input_file": { + "filename": "autogen/starknet/storage_var/Proxy_initialized/decl.cairo" + }, + "parent_location": [ + { + "end_col": 53, + "end_line": 47, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/upgrades/library.cairo" + }, + "start_col": 29, + "start_line": 47 + }, + "While trying to retrieve the implicit argument 'range_check_ptr' in:" + ], + "start_col": 63, + "start_line": 13 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 70, + "start_line": 44 + } + }, + "207": { + "accessible_scopes": [ + "openzeppelin.upgrades.library", + "openzeppelin.upgrades.library.Proxy", + "openzeppelin.upgrades.library.Proxy.initializer" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 53, + "end_line": 47, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/upgrades/library.cairo" + }, + "start_col": 29, + "start_line": 47 + } + }, + "209": { + "accessible_scopes": [ + "openzeppelin.upgrades.library", + "openzeppelin.upgrades.library.Proxy", + "openzeppelin.upgrades.library.Proxy.initializer" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 40, + "end_line": 49, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/upgrades/library.cairo" + }, + "start_col": 13, + "start_line": 49 + } + }, + "211": { + "accessible_scopes": [ + "openzeppelin.upgrades.library", + "openzeppelin.upgrades.library.Proxy", + "openzeppelin.upgrades.library.Proxy.initializer" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 33, + "end_line": 13, + "input_file": { + "filename": "autogen/starknet/storage_var/Proxy_initialized/decl.cairo" + }, + "parent_location": [ + { + "end_col": 53, + "end_line": 47, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/upgrades/library.cairo" + }, + "parent_location": [ + { + "end_col": 34, + "end_line": 21, + "input_file": { + "filename": "autogen/starknet/storage_var/Proxy_initialized/decl.cairo" + }, + "parent_location": [ + { + "end_col": 38, + "end_line": 52, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/upgrades/library.cairo" + }, + "start_col": 9, + "start_line": 52 + }, + "While trying to retrieve the implicit argument 'syscall_ptr' in:" + ], + "start_col": 16, + "start_line": 21 + }, + "While expanding the reference 'syscall_ptr' in:" + ], + "start_col": 29, + "start_line": 47 + }, + "While trying to update the implicit return value 'syscall_ptr' in:" + ], + "start_col": 15, + "start_line": 13 + } + }, + "212": { + "accessible_scopes": [ + "openzeppelin.upgrades.library", + "openzeppelin.upgrades.library.Proxy", + "openzeppelin.upgrades.library.Proxy.initializer" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 61, + "end_line": 13, + "input_file": { + "filename": "autogen/starknet/storage_var/Proxy_initialized/decl.cairo" + }, + "parent_location": [ + { + "end_col": 53, + "end_line": 47, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/upgrades/library.cairo" + }, + "parent_location": [ + { + "end_col": 62, + "end_line": 21, + "input_file": { + "filename": "autogen/starknet/storage_var/Proxy_initialized/decl.cairo" + }, + "parent_location": [ + { + "end_col": 38, + "end_line": 52, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/upgrades/library.cairo" + }, + "start_col": 9, + "start_line": 52 + }, + "While trying to retrieve the implicit argument 'pedersen_ptr' in:" + ], + "start_col": 36, + "start_line": 21 + }, + "While expanding the reference 'pedersen_ptr' in:" + ], + "start_col": 29, + "start_line": 47 + }, + "While trying to update the implicit return value 'pedersen_ptr' in:" + ], + "start_col": 35, + "start_line": 13 + } + }, + "213": { + "accessible_scopes": [ + "openzeppelin.upgrades.library", + "openzeppelin.upgrades.library.Proxy", + "openzeppelin.upgrades.library.Proxy.initializer" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 78, + "end_line": 13, + "input_file": { + "filename": "autogen/starknet/storage_var/Proxy_initialized/decl.cairo" + }, + "parent_location": [ + { + "end_col": 53, + "end_line": 47, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/upgrades/library.cairo" + }, + "parent_location": [ + { + "end_col": 79, + "end_line": 21, + "input_file": { + "filename": "autogen/starknet/storage_var/Proxy_initialized/decl.cairo" + }, + "parent_location": [ + { + "end_col": 38, + "end_line": 52, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/upgrades/library.cairo" + }, + "start_col": 9, + "start_line": 52 + }, + "While trying to retrieve the implicit argument 'range_check_ptr' in:" + ], + "start_col": 64, + "start_line": 21 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 29, + "start_line": 47 + }, + "While trying to update the implicit return value 'range_check_ptr' in:" + ], + "start_col": 63, + "start_line": 13 + } + }, + "214": { + "accessible_scopes": [ + "openzeppelin.upgrades.library", + "openzeppelin.upgrades.library.Proxy", + "openzeppelin.upgrades.library.Proxy.initializer" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 37, + "end_line": 52, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/upgrades/library.cairo" + }, + "start_col": 33, + "start_line": 52 + } + }, + "216": { + "accessible_scopes": [ + "openzeppelin.upgrades.library", + "openzeppelin.upgrades.library.Proxy", + "openzeppelin.upgrades.library.Proxy.initializer" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 38, + "end_line": 52, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/upgrades/library.cairo" + }, + "start_col": 9, + "start_line": 52 + } + }, + "218": { + "accessible_scopes": [ + "openzeppelin.upgrades.library", + "openzeppelin.upgrades.library.Proxy", + "openzeppelin.upgrades.library.Proxy.initializer" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 26, + "end_line": 45, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/upgrades/library.cairo" + }, + "parent_location": [ + { + "end_col": 31, + "end_line": 53, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/upgrades/library.cairo" + }, + "start_col": 20, + "start_line": 53 + }, + "While expanding the reference 'proxy_admin' in:" + ], + "start_col": 9, + "start_line": 45 + } + }, + "219": { + "accessible_scopes": [ + "openzeppelin.upgrades.library", + "openzeppelin.upgrades.library.Proxy", + "openzeppelin.upgrades.library.Proxy.initializer" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 32, + "end_line": 53, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/upgrades/library.cairo" + }, + "start_col": 9, + "start_line": 53 + } + }, + "221": { + "accessible_scopes": [ + "openzeppelin.upgrades.library", + "openzeppelin.upgrades.library.Proxy", + "openzeppelin.upgrades.library.Proxy.initializer" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 19, + "end_line": 54, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/upgrades/library.cairo" + }, + "start_col": 9, + "start_line": 54 + } + }, + "222": { + "accessible_scopes": [ + "openzeppelin.upgrades.library", + "openzeppelin.upgrades.library.Proxy", + "openzeppelin.upgrades.library.Proxy.assert_only_admin" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 46, + "end_line": 61, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/upgrades/library.cairo" + }, + "parent_location": [ + { + "end_col": 43, + "end_line": 200, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/starknet/common/syscalls.cairo" + }, + "parent_location": [ + { + "end_col": 44, + "end_line": 62, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/upgrades/library.cairo" + }, + "start_col": 24, + "start_line": 62 + }, + "While trying to retrieve the implicit argument 'syscall_ptr' in:" + ], + "start_col": 25, + "start_line": 200 + }, + "While expanding the reference 'syscall_ptr' in:" + ], + "start_col": 28, + "start_line": 61 + } + }, + "223": { + "accessible_scopes": [ + "openzeppelin.upgrades.library", + "openzeppelin.upgrades.library.Proxy", + "openzeppelin.upgrades.library.Proxy.assert_only_admin" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 44, + "end_line": 62, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/upgrades/library.cairo" + }, + "start_col": 24, + "start_line": 62 + } + }, + "225": { + "accessible_scopes": [ + "openzeppelin.upgrades.library", + "openzeppelin.upgrades.library.Proxy", + "openzeppelin.upgrades.library.Proxy.assert_only_admin" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 43, + "end_line": 200, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/starknet/common/syscalls.cairo" + }, + "parent_location": [ + { + "end_col": 44, + "end_line": 62, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/upgrades/library.cairo" + }, + "parent_location": [ + { + "end_col": 33, + "end_line": 13, + "input_file": { + "filename": "autogen/starknet/storage_var/Proxy_admin/decl.cairo" + }, + "parent_location": [ + { + "end_col": 41, + "end_line": 63, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/upgrades/library.cairo" + }, + "start_col": 23, + "start_line": 63 + }, + "While trying to retrieve the implicit argument 'syscall_ptr' in:" + ], + "start_col": 15, + "start_line": 13 + }, + "While expanding the reference 'syscall_ptr' in:" + ], + "start_col": 24, + "start_line": 62 + }, + "While trying to update the implicit return value 'syscall_ptr' in:" + ], + "start_col": 25, + "start_line": 200 + } + }, + "226": { + "accessible_scopes": [ + "openzeppelin.upgrades.library", + "openzeppelin.upgrades.library.Proxy", + "openzeppelin.upgrades.library.Proxy.assert_only_admin" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 74, + "end_line": 61, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/upgrades/library.cairo" + }, + "parent_location": [ + { + "end_col": 61, + "end_line": 13, + "input_file": { + "filename": "autogen/starknet/storage_var/Proxy_admin/decl.cairo" + }, + "parent_location": [ + { + "end_col": 41, + "end_line": 63, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/upgrades/library.cairo" + }, + "start_col": 23, + "start_line": 63 + }, + "While trying to retrieve the implicit argument 'pedersen_ptr' in:" + ], + "start_col": 35, + "start_line": 13 + }, + "While expanding the reference 'pedersen_ptr' in:" + ], + "start_col": 48, + "start_line": 61 + } + }, + "227": { + "accessible_scopes": [ + "openzeppelin.upgrades.library", + "openzeppelin.upgrades.library.Proxy", + "openzeppelin.upgrades.library.Proxy.assert_only_admin" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 91, + "end_line": 61, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/upgrades/library.cairo" + }, + "parent_location": [ + { + "end_col": 78, + "end_line": 13, + "input_file": { + "filename": "autogen/starknet/storage_var/Proxy_admin/decl.cairo" + }, + "parent_location": [ + { + "end_col": 41, + "end_line": 63, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/upgrades/library.cairo" + }, + "start_col": 23, + "start_line": 63 + }, + "While trying to retrieve the implicit argument 'range_check_ptr' in:" + ], + "start_col": 63, + "start_line": 13 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 76, + "start_line": 61 + } + }, + "228": { + "accessible_scopes": [ + "openzeppelin.upgrades.library", + "openzeppelin.upgrades.library.Proxy", + "openzeppelin.upgrades.library.Proxy.assert_only_admin" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 41, + "end_line": 63, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/upgrades/library.cairo" + }, + "start_col": 23, + "start_line": 63 + } + }, + "230": { + "accessible_scopes": [ + "openzeppelin.upgrades.library", + "openzeppelin.upgrades.library.Proxy", + "openzeppelin.upgrades.library.Proxy.assert_only_admin" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 35, + "end_line": 65, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/upgrades/library.cairo" + }, + "start_col": 13, + "start_line": 65 + } + }, + "231": { + "accessible_scopes": [ + "openzeppelin.upgrades.library", + "openzeppelin.upgrades.library.Proxy", + "openzeppelin.upgrades.library.Proxy.assert_only_admin" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 33, + "end_line": 13, + "input_file": { + "filename": "autogen/starknet/storage_var/Proxy_admin/decl.cairo" + }, + "parent_location": [ + { + "end_col": 41, + "end_line": 63, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/upgrades/library.cairo" + }, + "parent_location": [ + { + "end_col": 46, + "end_line": 61, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/upgrades/library.cairo" + }, + "parent_location": [ + { + "end_col": 19, + "end_line": 67, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/upgrades/library.cairo" + }, + "start_col": 9, + "start_line": 67 + }, + "While trying to retrieve the implicit argument 'syscall_ptr' in:" + ], + "start_col": 28, + "start_line": 61 + }, + "While expanding the reference 'syscall_ptr' in:" + ], + "start_col": 23, + "start_line": 63 + }, + "While trying to update the implicit return value 'syscall_ptr' in:" + ], + "start_col": 15, + "start_line": 13 + } + }, + "232": { + "accessible_scopes": [ + "openzeppelin.upgrades.library", + "openzeppelin.upgrades.library.Proxy", + "openzeppelin.upgrades.library.Proxy.assert_only_admin" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 61, + "end_line": 13, + "input_file": { + "filename": "autogen/starknet/storage_var/Proxy_admin/decl.cairo" + }, + "parent_location": [ + { + "end_col": 41, + "end_line": 63, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/upgrades/library.cairo" + }, + "parent_location": [ + { + "end_col": 74, + "end_line": 61, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/upgrades/library.cairo" + }, + "parent_location": [ + { + "end_col": 19, + "end_line": 67, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/upgrades/library.cairo" + }, + "start_col": 9, + "start_line": 67 + }, + "While trying to retrieve the implicit argument 'pedersen_ptr' in:" + ], + "start_col": 48, + "start_line": 61 + }, + "While expanding the reference 'pedersen_ptr' in:" + ], + "start_col": 23, + "start_line": 63 + }, + "While trying to update the implicit return value 'pedersen_ptr' in:" + ], + "start_col": 35, + "start_line": 13 + } + }, + "233": { + "accessible_scopes": [ + "openzeppelin.upgrades.library", + "openzeppelin.upgrades.library.Proxy", + "openzeppelin.upgrades.library.Proxy.assert_only_admin" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 78, + "end_line": 13, + "input_file": { + "filename": "autogen/starknet/storage_var/Proxy_admin/decl.cairo" + }, + "parent_location": [ + { + "end_col": 41, + "end_line": 63, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/upgrades/library.cairo" + }, + "parent_location": [ + { + "end_col": 91, + "end_line": 61, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/upgrades/library.cairo" + }, + "parent_location": [ + { + "end_col": 19, + "end_line": 67, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/upgrades/library.cairo" + }, + "start_col": 9, + "start_line": 67 + }, + "While trying to retrieve the implicit argument 'range_check_ptr' in:" + ], + "start_col": 76, + "start_line": 61 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 23, + "start_line": 63 + }, + "While trying to update the implicit return value 'range_check_ptr' in:" + ], + "start_col": 63, + "start_line": 13 + } + }, + "234": { + "accessible_scopes": [ + "openzeppelin.upgrades.library", + "openzeppelin.upgrades.library.Proxy", + "openzeppelin.upgrades.library.Proxy.assert_only_admin" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 19, + "end_line": 67, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/upgrades/library.cairo" + }, + "start_col": 9, + "start_line": 67 + } + }, + "235": { + "accessible_scopes": [ + "openzeppelin.upgrades.library", + "openzeppelin.upgrades.library.Proxy", + "openzeppelin.upgrades.library.Proxy.get_implementation_hash" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 52, + "end_line": 74, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/upgrades/library.cairo" + }, + "parent_location": [ + { + "end_col": 33, + "end_line": 13, + "input_file": { + "filename": "autogen/starknet/storage_var/Proxy_implementation_hash/decl.cairo" + }, + "parent_location": [ + { + "end_col": 48, + "end_line": 76, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/upgrades/library.cairo" + }, + "start_col": 16, + "start_line": 76 + }, + "While trying to retrieve the implicit argument 'syscall_ptr' in:" + ], + "start_col": 15, + "start_line": 13 + }, + "While expanding the reference 'syscall_ptr' in:" + ], + "start_col": 34, + "start_line": 74 + } + }, + "236": { + "accessible_scopes": [ + "openzeppelin.upgrades.library", + "openzeppelin.upgrades.library.Proxy", + "openzeppelin.upgrades.library.Proxy.get_implementation_hash" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 80, + "end_line": 74, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/upgrades/library.cairo" + }, + "parent_location": [ + { + "end_col": 61, + "end_line": 13, + "input_file": { + "filename": "autogen/starknet/storage_var/Proxy_implementation_hash/decl.cairo" + }, + "parent_location": [ + { + "end_col": 48, + "end_line": 76, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/upgrades/library.cairo" + }, + "start_col": 16, + "start_line": 76 + }, + "While trying to retrieve the implicit argument 'pedersen_ptr' in:" + ], + "start_col": 35, + "start_line": 13 + }, + "While expanding the reference 'pedersen_ptr' in:" + ], + "start_col": 54, + "start_line": 74 + } + }, + "237": { + "accessible_scopes": [ + "openzeppelin.upgrades.library", + "openzeppelin.upgrades.library.Proxy", + "openzeppelin.upgrades.library.Proxy.get_implementation_hash" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 97, + "end_line": 74, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/upgrades/library.cairo" + }, + "parent_location": [ + { + "end_col": 78, + "end_line": 13, + "input_file": { + "filename": "autogen/starknet/storage_var/Proxy_implementation_hash/decl.cairo" + }, + "parent_location": [ + { + "end_col": 48, + "end_line": 76, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/upgrades/library.cairo" + }, + "start_col": 16, + "start_line": 76 + }, + "While trying to retrieve the implicit argument 'range_check_ptr' in:" + ], + "start_col": 63, + "start_line": 13 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 82, + "start_line": 74 + } + }, + "238": { + "accessible_scopes": [ + "openzeppelin.upgrades.library", + "openzeppelin.upgrades.library.Proxy", + "openzeppelin.upgrades.library.Proxy.get_implementation_hash" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 48, + "end_line": 76, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/upgrades/library.cairo" + }, + "start_col": 16, + "start_line": 76 + } + }, + "240": { + "accessible_scopes": [ + "openzeppelin.upgrades.library", + "openzeppelin.upgrades.library.Proxy", + "openzeppelin.upgrades.library.Proxy.get_implementation_hash" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 49, + "end_line": 76, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/upgrades/library.cairo" + }, + "start_col": 9, + "start_line": 76 + } + }, + "241": { + "accessible_scopes": [ + "openzeppelin.upgrades.library", + "openzeppelin.upgrades.library.Proxy", + "openzeppelin.upgrades.library.Proxy.get_admin" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 38, + "end_line": 79, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/upgrades/library.cairo" + }, + "parent_location": [ + { + "end_col": 33, + "end_line": 13, + "input_file": { + "filename": "autogen/starknet/storage_var/Proxy_admin/decl.cairo" + }, + "parent_location": [ + { + "end_col": 34, + "end_line": 82, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/upgrades/library.cairo" + }, + "start_col": 16, + "start_line": 82 + }, + "While trying to retrieve the implicit argument 'syscall_ptr' in:" + ], + "start_col": 15, + "start_line": 13 + }, + "While expanding the reference 'syscall_ptr' in:" + ], + "start_col": 20, + "start_line": 79 + } + }, + "242": { + "accessible_scopes": [ + "openzeppelin.upgrades.library", + "openzeppelin.upgrades.library.Proxy", + "openzeppelin.upgrades.library.Proxy.get_admin" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 66, + "end_line": 79, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/upgrades/library.cairo" + }, + "parent_location": [ + { + "end_col": 61, + "end_line": 13, + "input_file": { + "filename": "autogen/starknet/storage_var/Proxy_admin/decl.cairo" + }, + "parent_location": [ + { + "end_col": 34, + "end_line": 82, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/upgrades/library.cairo" + }, + "start_col": 16, + "start_line": 82 + }, + "While trying to retrieve the implicit argument 'pedersen_ptr' in:" + ], + "start_col": 35, + "start_line": 13 + }, + "While expanding the reference 'pedersen_ptr' in:" + ], + "start_col": 40, + "start_line": 79 + } + }, + "243": { + "accessible_scopes": [ + "openzeppelin.upgrades.library", + "openzeppelin.upgrades.library.Proxy", + "openzeppelin.upgrades.library.Proxy.get_admin" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 83, + "end_line": 79, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/upgrades/library.cairo" + }, + "parent_location": [ + { + "end_col": 78, + "end_line": 13, + "input_file": { + "filename": "autogen/starknet/storage_var/Proxy_admin/decl.cairo" + }, + "parent_location": [ + { + "end_col": 34, + "end_line": 82, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/upgrades/library.cairo" + }, + "start_col": 16, + "start_line": 82 + }, + "While trying to retrieve the implicit argument 'range_check_ptr' in:" + ], + "start_col": 63, + "start_line": 13 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 68, + "start_line": 79 + } + }, + "244": { + "accessible_scopes": [ + "openzeppelin.upgrades.library", + "openzeppelin.upgrades.library.Proxy", + "openzeppelin.upgrades.library.Proxy.get_admin" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 34, + "end_line": 82, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/upgrades/library.cairo" + }, + "start_col": 16, + "start_line": 82 + } + }, + "246": { + "accessible_scopes": [ + "openzeppelin.upgrades.library", + "openzeppelin.upgrades.library.Proxy", + "openzeppelin.upgrades.library.Proxy.get_admin" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 35, + "end_line": 82, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/upgrades/library.cairo" + }, + "start_col": 9, + "start_line": 82 + } + }, + "247": { + "accessible_scopes": [ + "openzeppelin.upgrades.library", + "openzeppelin.upgrades.library.Proxy", + "openzeppelin.upgrades.library.Proxy._set_admin" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 39, + "end_line": 89, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/upgrades/library.cairo" + }, + "parent_location": [ + { + "end_col": 38, + "end_line": 79, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/upgrades/library.cairo" + }, + "parent_location": [ + { + "end_col": 43, + "end_line": 92, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/upgrades/library.cairo" + }, + "start_col": 32, + "start_line": 92 + }, + "While trying to retrieve the implicit argument 'syscall_ptr' in:" + ], + "start_col": 20, + "start_line": 79 + }, + "While expanding the reference 'syscall_ptr' in:" + ], + "start_col": 21, + "start_line": 89 + } + }, + "248": { + "accessible_scopes": [ + "openzeppelin.upgrades.library", + "openzeppelin.upgrades.library.Proxy", + "openzeppelin.upgrades.library.Proxy._set_admin" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 67, + "end_line": 89, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/upgrades/library.cairo" + }, + "parent_location": [ + { + "end_col": 66, + "end_line": 79, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/upgrades/library.cairo" + }, + "parent_location": [ + { + "end_col": 43, + "end_line": 92, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/upgrades/library.cairo" + }, + "start_col": 32, + "start_line": 92 + }, + "While trying to retrieve the implicit argument 'pedersen_ptr' in:" + ], + "start_col": 40, + "start_line": 79 + }, + "While expanding the reference 'pedersen_ptr' in:" + ], + "start_col": 41, + "start_line": 89 + } + }, + "249": { + "accessible_scopes": [ + "openzeppelin.upgrades.library", + "openzeppelin.upgrades.library.Proxy", + "openzeppelin.upgrades.library.Proxy._set_admin" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 84, + "end_line": 89, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/upgrades/library.cairo" + }, + "parent_location": [ + { + "end_col": 83, + "end_line": 79, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/upgrades/library.cairo" + }, + "parent_location": [ + { + "end_col": 43, + "end_line": 92, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/upgrades/library.cairo" + }, + "start_col": 32, + "start_line": 92 + }, + "While trying to retrieve the implicit argument 'range_check_ptr' in:" + ], + "start_col": 68, + "start_line": 79 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 69, + "start_line": 89 + } + }, + "250": { + "accessible_scopes": [ + "openzeppelin.upgrades.library", + "openzeppelin.upgrades.library.Proxy", + "openzeppelin.upgrades.library.Proxy._set_admin" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 43, + "end_line": 92, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/upgrades/library.cairo" + }, + "start_col": 32, + "start_line": 92 + } + }, + "252": { + "accessible_scopes": [ + "openzeppelin.upgrades.library", + "openzeppelin.upgrades.library.Proxy", + "openzeppelin.upgrades.library.Proxy._set_admin" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 38, + "end_line": 79, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/upgrades/library.cairo" + }, + "parent_location": [ + { + "end_col": 43, + "end_line": 92, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/upgrades/library.cairo" + }, + "parent_location": [ + { + "end_col": 34, + "end_line": 19, + "input_file": { + "filename": "autogen/starknet/storage_var/Proxy_admin/decl.cairo" + }, + "parent_location": [ + { + "end_col": 37, + "end_line": 93, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/upgrades/library.cairo" + }, + "start_col": 9, + "start_line": 93 + }, + "While trying to retrieve the implicit argument 'syscall_ptr' in:" + ], + "start_col": 16, + "start_line": 19 + }, + "While expanding the reference 'syscall_ptr' in:" + ], + "start_col": 32, + "start_line": 92 + }, + "While trying to update the implicit return value 'syscall_ptr' in:" + ], + "start_col": 20, + "start_line": 79 + } + }, + "253": { + "accessible_scopes": [ + "openzeppelin.upgrades.library", + "openzeppelin.upgrades.library.Proxy", + "openzeppelin.upgrades.library.Proxy._set_admin" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 66, + "end_line": 79, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/upgrades/library.cairo" + }, + "parent_location": [ + { + "end_col": 43, + "end_line": 92, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/upgrades/library.cairo" + }, + "parent_location": [ + { + "end_col": 62, + "end_line": 19, + "input_file": { + "filename": "autogen/starknet/storage_var/Proxy_admin/decl.cairo" + }, + "parent_location": [ + { + "end_col": 37, + "end_line": 93, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/upgrades/library.cairo" + }, + "start_col": 9, + "start_line": 93 + }, + "While trying to retrieve the implicit argument 'pedersen_ptr' in:" + ], + "start_col": 36, + "start_line": 19 + }, + "While expanding the reference 'pedersen_ptr' in:" + ], + "start_col": 32, + "start_line": 92 + }, + "While trying to update the implicit return value 'pedersen_ptr' in:" + ], + "start_col": 40, + "start_line": 79 + } + }, + "254": { + "accessible_scopes": [ + "openzeppelin.upgrades.library", + "openzeppelin.upgrades.library.Proxy", + "openzeppelin.upgrades.library.Proxy._set_admin" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 83, + "end_line": 79, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/upgrades/library.cairo" + }, + "parent_location": [ + { + "end_col": 43, + "end_line": 92, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/upgrades/library.cairo" + }, + "parent_location": [ + { + "end_col": 79, + "end_line": 19, + "input_file": { + "filename": "autogen/starknet/storage_var/Proxy_admin/decl.cairo" + }, + "parent_location": [ + { + "end_col": 37, + "end_line": 93, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/upgrades/library.cairo" + }, + "start_col": 9, + "start_line": 93 + }, + "While trying to retrieve the implicit argument 'range_check_ptr' in:" + ], + "start_col": 64, + "start_line": 19 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 32, + "start_line": 92 + }, + "While trying to update the implicit return value 'range_check_ptr' in:" + ], + "start_col": 68, + "start_line": 79 + } + }, + "255": { + "accessible_scopes": [ + "openzeppelin.upgrades.library", + "openzeppelin.upgrades.library.Proxy", + "openzeppelin.upgrades.library.Proxy._set_admin" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 24, + "end_line": 90, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/upgrades/library.cairo" + }, + "parent_location": [ + { + "end_col": 36, + "end_line": 93, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/upgrades/library.cairo" + }, + "start_col": 27, + "start_line": 93 + }, + "While expanding the reference 'new_admin' in:" + ], + "start_col": 9, + "start_line": 90 + } + }, + "256": { + "accessible_scopes": [ + "openzeppelin.upgrades.library", + "openzeppelin.upgrades.library.Proxy", + "openzeppelin.upgrades.library.Proxy._set_admin" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 37, + "end_line": 93, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/upgrades/library.cairo" + }, + "start_col": 9, + "start_line": 93 + } + }, + "258": { + "accessible_scopes": [ + "openzeppelin.upgrades.library", + "openzeppelin.upgrades.library.Proxy", + "openzeppelin.upgrades.library.Proxy._set_admin" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 34, + "end_line": 19, + "input_file": { + "filename": "autogen/starknet/storage_var/Proxy_admin/decl.cairo" + }, + "parent_location": [ + { + "end_col": 37, + "end_line": 93, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/upgrades/library.cairo" + }, + "parent_location": [ + { + "end_col": 29, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/event/AdminChanged/a7a8ae41be29ac9f4f6c3b7837c448d787ca051dd1ade98f409e54d33d112504.cairo" + }, + "parent_location": [ + { + "end_col": 18, + "end_line": 20, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/upgrades/library.cairo" + }, + "parent_location": [ + { + "end_col": 53, + "end_line": 94, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/upgrades/library.cairo" + }, + "start_col": 9, + "start_line": 94 + }, + "While trying to retrieve the implicit argument 'syscall_ptr' in:" + ], + "start_col": 6, + "start_line": 20 + }, + "While handling event:" + ], + "start_col": 11, + "start_line": 1 + }, + "While expanding the reference 'syscall_ptr' in:" + ], + "start_col": 9, + "start_line": 93 + }, + "While trying to update the implicit return value 'syscall_ptr' in:" + ], + "start_col": 16, + "start_line": 19 + } + }, + "259": { + "accessible_scopes": [ + "openzeppelin.upgrades.library", + "openzeppelin.upgrades.library.Proxy", + "openzeppelin.upgrades.library.Proxy._set_admin" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 79, + "end_line": 19, + "input_file": { + "filename": "autogen/starknet/storage_var/Proxy_admin/decl.cairo" + }, + "parent_location": [ + { + "end_col": 37, + "end_line": 93, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/upgrades/library.cairo" + }, + "parent_location": [ + { + "end_col": 46, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/event/AdminChanged/a7a8ae41be29ac9f4f6c3b7837c448d787ca051dd1ade98f409e54d33d112504.cairo" + }, + "parent_location": [ + { + "end_col": 18, + "end_line": 20, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/upgrades/library.cairo" + }, + "parent_location": [ + { + "end_col": 53, + "end_line": 94, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/upgrades/library.cairo" + }, + "start_col": 9, + "start_line": 94 + }, + "While trying to retrieve the implicit argument 'range_check_ptr' in:" + ], + "start_col": 6, + "start_line": 20 + }, + "While handling event:" + ], + "start_col": 31, + "start_line": 1 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 9, + "start_line": 93 + }, + "While trying to update the implicit return value 'range_check_ptr' in:" + ], + "start_col": 64, + "start_line": 19 + } + }, + "260": { + "accessible_scopes": [ + "openzeppelin.upgrades.library", + "openzeppelin.upgrades.library.Proxy", + "openzeppelin.upgrades.library.Proxy._set_admin" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 28, + "end_line": 92, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/upgrades/library.cairo" + }, + "parent_location": [ + { + "end_col": 41, + "end_line": 94, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/upgrades/library.cairo" + }, + "start_col": 27, + "start_line": 94 + }, + "While expanding the reference 'previous_admin' in:" + ], + "start_col": 14, + "start_line": 92 + } + }, + "261": { + "accessible_scopes": [ + "openzeppelin.upgrades.library", + "openzeppelin.upgrades.library.Proxy", + "openzeppelin.upgrades.library.Proxy._set_admin" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 24, + "end_line": 90, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/upgrades/library.cairo" + }, + "parent_location": [ + { + "end_col": 52, + "end_line": 94, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/upgrades/library.cairo" + }, + "start_col": 43, + "start_line": 94 + }, + "While expanding the reference 'new_admin' in:" + ], + "start_col": 9, + "start_line": 90 + } + }, + "262": { + "accessible_scopes": [ + "openzeppelin.upgrades.library", + "openzeppelin.upgrades.library.Proxy", + "openzeppelin.upgrades.library.Proxy._set_admin" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 53, + "end_line": 94, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/upgrades/library.cairo" + }, + "start_col": 9, + "start_line": 94 + } + }, + "264": { + "accessible_scopes": [ + "openzeppelin.upgrades.library", + "openzeppelin.upgrades.library.Proxy", + "openzeppelin.upgrades.library.Proxy._set_admin" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 29, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/event/AdminChanged/a7a8ae41be29ac9f4f6c3b7837c448d787ca051dd1ade98f409e54d33d112504.cairo" + }, + "parent_location": [ + { + "end_col": 18, + "end_line": 20, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/upgrades/library.cairo" + }, + "parent_location": [ + { + "end_col": 53, + "end_line": 94, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/upgrades/library.cairo" + }, + "parent_location": [ + { + "end_col": 39, + "end_line": 89, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/upgrades/library.cairo" + }, + "parent_location": [ + { + "end_col": 19, + "end_line": 95, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/upgrades/library.cairo" + }, + "start_col": 9, + "start_line": 95 + }, + "While trying to retrieve the implicit argument 'syscall_ptr' in:" + ], + "start_col": 21, + "start_line": 89 + }, + "While expanding the reference 'syscall_ptr' in:" + ], + "start_col": 9, + "start_line": 94 + }, + "While trying to update the implicit return value 'syscall_ptr' in:" + ], + "start_col": 6, + "start_line": 20 + }, + "While handling event:" + ], + "start_col": 11, + "start_line": 1 + } + }, + "265": { + "accessible_scopes": [ + "openzeppelin.upgrades.library", + "openzeppelin.upgrades.library.Proxy", + "openzeppelin.upgrades.library.Proxy._set_admin" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 62, + "end_line": 19, + "input_file": { + "filename": "autogen/starknet/storage_var/Proxy_admin/decl.cairo" + }, + "parent_location": [ + { + "end_col": 37, + "end_line": 93, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/upgrades/library.cairo" + }, + "parent_location": [ + { + "end_col": 67, + "end_line": 89, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/upgrades/library.cairo" + }, + "parent_location": [ + { + "end_col": 19, + "end_line": 95, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/upgrades/library.cairo" + }, + "start_col": 9, + "start_line": 95 + }, + "While trying to retrieve the implicit argument 'pedersen_ptr' in:" + ], + "start_col": 41, + "start_line": 89 + }, + "While expanding the reference 'pedersen_ptr' in:" + ], + "start_col": 9, + "start_line": 93 + }, + "While trying to update the implicit return value 'pedersen_ptr' in:" + ], + "start_col": 36, + "start_line": 19 + } + }, + "266": { + "accessible_scopes": [ + "openzeppelin.upgrades.library", + "openzeppelin.upgrades.library.Proxy", + "openzeppelin.upgrades.library.Proxy._set_admin" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 46, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/event/AdminChanged/a7a8ae41be29ac9f4f6c3b7837c448d787ca051dd1ade98f409e54d33d112504.cairo" + }, + "parent_location": [ + { + "end_col": 18, + "end_line": 20, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/upgrades/library.cairo" + }, + "parent_location": [ + { + "end_col": 53, + "end_line": 94, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/upgrades/library.cairo" + }, + "parent_location": [ + { + "end_col": 84, + "end_line": 89, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/upgrades/library.cairo" + }, + "parent_location": [ + { + "end_col": 19, + "end_line": 95, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/upgrades/library.cairo" + }, + "start_col": 9, + "start_line": 95 + }, + "While trying to retrieve the implicit argument 'range_check_ptr' in:" + ], + "start_col": 69, + "start_line": 89 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 9, + "start_line": 94 + }, + "While trying to update the implicit return value 'range_check_ptr' in:" + ], + "start_col": 6, + "start_line": 20 + }, + "While handling event:" + ], + "start_col": 31, + "start_line": 1 + } + }, + "267": { + "accessible_scopes": [ + "openzeppelin.upgrades.library", + "openzeppelin.upgrades.library.Proxy", + "openzeppelin.upgrades.library.Proxy._set_admin" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 19, + "end_line": 95, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/upgrades/library.cairo" + }, + "start_col": 9, + "start_line": 95 + } + }, + "268": { + "accessible_scopes": [ + "openzeppelin.upgrades.library", + "openzeppelin.upgrades.library.Proxy", + "openzeppelin.upgrades.library.Proxy._set_implementation_hash" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 33, + "end_line": 103, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/upgrades/library.cairo" + }, + "parent_location": [ + { + "end_col": 47, + "end_line": 106, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/upgrades/library.cairo" + }, + "start_col": 29, + "start_line": 106 + }, + "While expanding the reference 'new_implementation' in:" + ], + "start_col": 9, + "start_line": 103 + } + }, + "269": { + "accessible_scopes": [ + "openzeppelin.upgrades.library", + "openzeppelin.upgrades.library.Proxy", + "openzeppelin.upgrades.library.Proxy._set_implementation_hash" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 48, + "end_line": 106, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/upgrades/library.cairo" + }, + "start_col": 13, + "start_line": 106 + } + }, + "271": { + "accessible_scopes": [ + "openzeppelin.upgrades.library", + "openzeppelin.upgrades.library.Proxy", + "openzeppelin.upgrades.library.Proxy._set_implementation_hash" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 53, + "end_line": 102, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/upgrades/library.cairo" + }, + "parent_location": [ + { + "end_col": 34, + "end_line": 21, + "input_file": { + "filename": "autogen/starknet/storage_var/Proxy_implementation_hash/decl.cairo" + }, + "parent_location": [ + { + "end_col": 60, + "end_line": 109, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/upgrades/library.cairo" + }, + "start_col": 9, + "start_line": 109 + }, + "While trying to retrieve the implicit argument 'syscall_ptr' in:" + ], + "start_col": 16, + "start_line": 21 + }, + "While expanding the reference 'syscall_ptr' in:" + ], + "start_col": 35, + "start_line": 102 + } + }, + "272": { + "accessible_scopes": [ + "openzeppelin.upgrades.library", + "openzeppelin.upgrades.library.Proxy", + "openzeppelin.upgrades.library.Proxy._set_implementation_hash" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 81, + "end_line": 102, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/upgrades/library.cairo" + }, + "parent_location": [ + { + "end_col": 62, + "end_line": 21, + "input_file": { + "filename": "autogen/starknet/storage_var/Proxy_implementation_hash/decl.cairo" + }, + "parent_location": [ + { + "end_col": 60, + "end_line": 109, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/upgrades/library.cairo" + }, + "start_col": 9, + "start_line": 109 + }, + "While trying to retrieve the implicit argument 'pedersen_ptr' in:" + ], + "start_col": 36, + "start_line": 21 + }, + "While expanding the reference 'pedersen_ptr' in:" + ], + "start_col": 55, + "start_line": 102 + } + }, + "273": { + "accessible_scopes": [ + "openzeppelin.upgrades.library", + "openzeppelin.upgrades.library.Proxy", + "openzeppelin.upgrades.library.Proxy._set_implementation_hash" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 98, + "end_line": 102, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/upgrades/library.cairo" + }, + "parent_location": [ + { + "end_col": 79, + "end_line": 21, + "input_file": { + "filename": "autogen/starknet/storage_var/Proxy_implementation_hash/decl.cairo" + }, + "parent_location": [ + { + "end_col": 60, + "end_line": 109, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/upgrades/library.cairo" + }, + "start_col": 9, + "start_line": 109 + }, + "While trying to retrieve the implicit argument 'range_check_ptr' in:" + ], + "start_col": 64, + "start_line": 21 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 83, + "start_line": 102 + } + }, + "274": { + "accessible_scopes": [ + "openzeppelin.upgrades.library", + "openzeppelin.upgrades.library.Proxy", + "openzeppelin.upgrades.library.Proxy._set_implementation_hash" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 33, + "end_line": 103, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/upgrades/library.cairo" + }, + "parent_location": [ + { + "end_col": 59, + "end_line": 109, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/upgrades/library.cairo" + }, + "start_col": 41, + "start_line": 109 + }, + "While expanding the reference 'new_implementation' in:" + ], + "start_col": 9, + "start_line": 103 + } + }, + "275": { + "accessible_scopes": [ + "openzeppelin.upgrades.library", + "openzeppelin.upgrades.library.Proxy", + "openzeppelin.upgrades.library.Proxy._set_implementation_hash" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 60, + "end_line": 109, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/upgrades/library.cairo" + }, + "start_col": 9, + "start_line": 109 + } + }, + "277": { + "accessible_scopes": [ + "openzeppelin.upgrades.library", + "openzeppelin.upgrades.library.Proxy", + "openzeppelin.upgrades.library.Proxy._set_implementation_hash" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 34, + "end_line": 21, + "input_file": { + "filename": "autogen/starknet/storage_var/Proxy_implementation_hash/decl.cairo" + }, + "parent_location": [ + { + "end_col": 60, + "end_line": 109, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/upgrades/library.cairo" + }, + "parent_location": [ + { + "end_col": 29, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/event/Upgraded/a7a8ae41be29ac9f4f6c3b7837c448d787ca051dd1ade98f409e54d33d112504.cairo" + }, + "parent_location": [ + { + "end_col": 14, + "end_line": 16, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/upgrades/library.cairo" + }, + "parent_location": [ + { + "end_col": 42, + "end_line": 110, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/upgrades/library.cairo" + }, + "start_col": 9, + "start_line": 110 + }, + "While trying to retrieve the implicit argument 'syscall_ptr' in:" + ], + "start_col": 6, + "start_line": 16 + }, + "While handling event:" + ], + "start_col": 11, + "start_line": 1 + }, + "While expanding the reference 'syscall_ptr' in:" + ], + "start_col": 9, + "start_line": 109 + }, + "While trying to update the implicit return value 'syscall_ptr' in:" + ], + "start_col": 16, + "start_line": 21 + } + }, + "278": { + "accessible_scopes": [ + "openzeppelin.upgrades.library", + "openzeppelin.upgrades.library.Proxy", + "openzeppelin.upgrades.library.Proxy._set_implementation_hash" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 79, + "end_line": 21, + "input_file": { + "filename": "autogen/starknet/storage_var/Proxy_implementation_hash/decl.cairo" + }, + "parent_location": [ + { + "end_col": 60, + "end_line": 109, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/upgrades/library.cairo" + }, + "parent_location": [ + { + "end_col": 46, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/event/Upgraded/a7a8ae41be29ac9f4f6c3b7837c448d787ca051dd1ade98f409e54d33d112504.cairo" + }, + "parent_location": [ + { + "end_col": 14, + "end_line": 16, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/upgrades/library.cairo" + }, + "parent_location": [ + { + "end_col": 42, + "end_line": 110, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/upgrades/library.cairo" + }, + "start_col": 9, + "start_line": 110 + }, + "While trying to retrieve the implicit argument 'range_check_ptr' in:" + ], + "start_col": 6, + "start_line": 16 + }, + "While handling event:" + ], + "start_col": 31, + "start_line": 1 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 9, + "start_line": 109 + }, + "While trying to update the implicit return value 'range_check_ptr' in:" + ], + "start_col": 64, + "start_line": 21 + } + }, + "279": { + "accessible_scopes": [ + "openzeppelin.upgrades.library", + "openzeppelin.upgrades.library.Proxy", + "openzeppelin.upgrades.library.Proxy._set_implementation_hash" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 33, + "end_line": 103, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/upgrades/library.cairo" + }, + "parent_location": [ + { + "end_col": 41, + "end_line": 110, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/upgrades/library.cairo" + }, + "start_col": 23, + "start_line": 110 + }, + "While expanding the reference 'new_implementation' in:" + ], + "start_col": 9, + "start_line": 103 + } + }, + "280": { + "accessible_scopes": [ + "openzeppelin.upgrades.library", + "openzeppelin.upgrades.library.Proxy", + "openzeppelin.upgrades.library.Proxy._set_implementation_hash" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 42, + "end_line": 110, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/upgrades/library.cairo" + }, + "start_col": 9, + "start_line": 110 + } + }, + "282": { + "accessible_scopes": [ + "openzeppelin.upgrades.library", + "openzeppelin.upgrades.library.Proxy", + "openzeppelin.upgrades.library.Proxy._set_implementation_hash" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 29, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/event/Upgraded/a7a8ae41be29ac9f4f6c3b7837c448d787ca051dd1ade98f409e54d33d112504.cairo" + }, + "parent_location": [ + { + "end_col": 14, + "end_line": 16, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/upgrades/library.cairo" + }, + "parent_location": [ + { + "end_col": 42, + "end_line": 110, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/upgrades/library.cairo" + }, + "parent_location": [ + { + "end_col": 53, + "end_line": 102, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/upgrades/library.cairo" + }, + "parent_location": [ + { + "end_col": 19, + "end_line": 111, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/upgrades/library.cairo" + }, + "start_col": 9, + "start_line": 111 + }, + "While trying to retrieve the implicit argument 'syscall_ptr' in:" + ], + "start_col": 35, + "start_line": 102 + }, + "While expanding the reference 'syscall_ptr' in:" + ], + "start_col": 9, + "start_line": 110 + }, + "While trying to update the implicit return value 'syscall_ptr' in:" + ], + "start_col": 6, + "start_line": 16 + }, + "While handling event:" + ], + "start_col": 11, + "start_line": 1 + } + }, + "283": { + "accessible_scopes": [ + "openzeppelin.upgrades.library", + "openzeppelin.upgrades.library.Proxy", + "openzeppelin.upgrades.library.Proxy._set_implementation_hash" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 62, + "end_line": 21, + "input_file": { + "filename": "autogen/starknet/storage_var/Proxy_implementation_hash/decl.cairo" + }, + "parent_location": [ + { + "end_col": 60, + "end_line": 109, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/upgrades/library.cairo" + }, + "parent_location": [ + { + "end_col": 81, + "end_line": 102, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/upgrades/library.cairo" + }, + "parent_location": [ + { + "end_col": 19, + "end_line": 111, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/upgrades/library.cairo" + }, + "start_col": 9, + "start_line": 111 + }, + "While trying to retrieve the implicit argument 'pedersen_ptr' in:" + ], + "start_col": 55, + "start_line": 102 + }, + "While expanding the reference 'pedersen_ptr' in:" + ], + "start_col": 9, + "start_line": 109 + }, + "While trying to update the implicit return value 'pedersen_ptr' in:" + ], + "start_col": 36, + "start_line": 21 + } + }, + "284": { + "accessible_scopes": [ + "openzeppelin.upgrades.library", + "openzeppelin.upgrades.library.Proxy", + "openzeppelin.upgrades.library.Proxy._set_implementation_hash" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 46, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/event/Upgraded/a7a8ae41be29ac9f4f6c3b7837c448d787ca051dd1ade98f409e54d33d112504.cairo" + }, + "parent_location": [ + { + "end_col": 14, + "end_line": 16, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/upgrades/library.cairo" + }, + "parent_location": [ + { + "end_col": 42, + "end_line": 110, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/upgrades/library.cairo" + }, + "parent_location": [ + { + "end_col": 98, + "end_line": 102, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/upgrades/library.cairo" + }, + "parent_location": [ + { + "end_col": 19, + "end_line": 111, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/upgrades/library.cairo" + }, + "start_col": 9, + "start_line": 111 + }, + "While trying to retrieve the implicit argument 'range_check_ptr' in:" + ], + "start_col": 83, + "start_line": 102 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 9, + "start_line": 110 + }, + "While trying to update the implicit return value 'range_check_ptr' in:" + ], + "start_col": 6, + "start_line": 16 + }, + "While handling event:" + ], + "start_col": 31, + "start_line": 1 + } + }, + "285": { + "accessible_scopes": [ + "openzeppelin.upgrades.library", + "openzeppelin.upgrades.library.Proxy", + "openzeppelin.upgrades.library.Proxy._set_implementation_hash" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 19, + "end_line": 111, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/upgrades/library.cairo" + }, + "start_col": 9, + "start_line": 111 + } + }, + "286": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.constructor" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 18, + "end_line": 25, + "input_file": { + "filename": "src/utils/proxy.cairo" + }, + "start_col": 5, + "start_line": 25 + } + }, + "288": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.constructor" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 36, + "end_line": 18, + "input_file": { + "filename": "src/utils/proxy.cairo" + }, + "parent_location": [ + { + "end_col": 40, + "end_line": 44, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/upgrades/library.cairo" + }, + "parent_location": [ + { + "end_col": 35, + "end_line": 26, + "input_file": { + "filename": "src/utils/proxy.cairo" + }, + "start_col": 5, + "start_line": 26 + }, + "While trying to retrieve the implicit argument 'syscall_ptr' in:" + ], + "start_col": 22, + "start_line": 44 + }, + "While expanding the reference 'syscall_ptr' in:" + ], + "start_col": 18, + "start_line": 18 + } + }, + "289": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.constructor" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 64, + "end_line": 18, + "input_file": { + "filename": "src/utils/proxy.cairo" + }, + "parent_location": [ + { + "end_col": 68, + "end_line": 44, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/upgrades/library.cairo" + }, + "parent_location": [ + { + "end_col": 35, + "end_line": 26, + "input_file": { + "filename": "src/utils/proxy.cairo" + }, + "start_col": 5, + "start_line": 26 + }, + "While trying to retrieve the implicit argument 'pedersen_ptr' in:" + ], + "start_col": 42, + "start_line": 44 + }, + "While expanding the reference 'pedersen_ptr' in:" + ], + "start_col": 38, + "start_line": 18 + } + }, + "290": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.constructor" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 81, + "end_line": 18, + "input_file": { + "filename": "src/utils/proxy.cairo" + }, + "parent_location": [ + { + "end_col": 85, + "end_line": 44, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/upgrades/library.cairo" + }, + "parent_location": [ + { + "end_col": 35, + "end_line": 26, + "input_file": { + "filename": "src/utils/proxy.cairo" + }, + "start_col": 5, + "start_line": 26 + }, + "While trying to retrieve the implicit argument 'range_check_ptr' in:" + ], + "start_col": 70, + "start_line": 44 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 66, + "start_line": 18 + } + }, + "291": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.constructor" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 22, + "end_line": 19, + "input_file": { + "filename": "src/utils/proxy.cairo" + }, + "parent_location": [ + { + "end_col": 34, + "end_line": 26, + "input_file": { + "filename": "src/utils/proxy.cairo" + }, + "start_col": 23, + "start_line": 26 + }, + "While expanding the reference 'proxy_admin' in:" + ], + "start_col": 5, + "start_line": 19 + } + }, + "292": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.constructor" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 35, + "end_line": 26, + "input_file": { + "filename": "src/utils/proxy.cairo" + }, + "start_col": 5, + "start_line": 26 + } + }, + "294": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.constructor" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 30, + "end_line": 20, + "input_file": { + "filename": "src/utils/proxy.cairo" + }, + "parent_location": [ + { + "end_col": 55, + "end_line": 27, + "input_file": { + "filename": "src/utils/proxy.cairo" + }, + "start_col": 36, + "start_line": 27 + }, + "While expanding the reference 'implementation_hash' in:" + ], + "start_col": 5, + "start_line": 20 + } + }, + "295": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.constructor" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 56, + "end_line": 27, + "input_file": { + "filename": "src/utils/proxy.cairo" + }, + "start_col": 5, + "start_line": 27 + } + }, + "297": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.constructor" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 81, + "end_line": 102, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/upgrades/library.cairo" + }, + "parent_location": [ + { + "end_col": 56, + "end_line": 27, + "input_file": { + "filename": "src/utils/proxy.cairo" + }, + "parent_location": [ + { + "end_col": 81, + "end_line": 102, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/upgrades/library.cairo" + }, + "parent_location": [ + { + "end_col": 56, + "end_line": 27, + "input_file": { + "filename": "src/utils/proxy.cairo" + }, + "start_col": 5, + "start_line": 27 + }, + "While trying to update the implicit return value 'pedersen_ptr' in:" + ], + "start_col": 55, + "start_line": 102 + }, + "While auto generating local variable for 'pedersen_ptr'." + ], + "start_col": 5, + "start_line": 27 + }, + "While trying to update the implicit return value 'pedersen_ptr' in:" + ], + "start_col": 55, + "start_line": 102 + } + }, + "298": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.constructor" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 98, + "end_line": 102, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/upgrades/library.cairo" + }, + "parent_location": [ + { + "end_col": 56, + "end_line": 27, + "input_file": { + "filename": "src/utils/proxy.cairo" + }, + "parent_location": [ + { + "end_col": 98, + "end_line": 102, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/upgrades/library.cairo" + }, + "parent_location": [ + { + "end_col": 56, + "end_line": 27, + "input_file": { + "filename": "src/utils/proxy.cairo" + }, + "start_col": 5, + "start_line": 27 + }, + "While trying to update the implicit return value 'range_check_ptr' in:" + ], + "start_col": 83, + "start_line": 102 + }, + "While auto generating local variable for 'range_check_ptr'." + ], + "start_col": 5, + "start_line": 27 + }, + "While trying to update the implicit return value 'range_check_ptr' in:" + ], + "start_col": 83, + "start_line": 102 + } + }, + "299": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.constructor" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 7, + "end_line": 29, + "input_file": { + "filename": "src/utils/proxy.cairo" + }, + "start_col": 5, + "start_line": 29 + } + }, + "301": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.constructor" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 7, + "end_line": 29, + "input_file": { + "filename": "src/utils/proxy.cairo" + }, + "start_col": 5, + "start_line": 29 + } + }, + "303": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.constructor" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 53, + "end_line": 102, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/upgrades/library.cairo" + }, + "parent_location": [ + { + "end_col": 56, + "end_line": 27, + "input_file": { + "filename": "src/utils/proxy.cairo" + }, + "parent_location": [ + { + "end_col": 37, + "end_line": 85, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/starknet/common/syscalls.cairo" + }, + "parent_location": [ + { + "end_col": 10, + "end_line": 36, + "input_file": { + "filename": "src/utils/proxy.cairo" + }, + "start_col": 9, + "start_line": 31 + }, + "While trying to retrieve the implicit argument 'syscall_ptr' in:" + ], + "start_col": 19, + "start_line": 85 + }, + "While expanding the reference 'syscall_ptr' in:" + ], + "start_col": 5, + "start_line": 27 + }, + "While trying to update the implicit return value 'syscall_ptr' in:" + ], + "start_col": 35, + "start_line": 102 + } + }, + "304": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.constructor" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 30, + "end_line": 20, + "input_file": { + "filename": "src/utils/proxy.cairo" + }, + "parent_location": [ + { + "end_col": 43, + "end_line": 32, + "input_file": { + "filename": "src/utils/proxy.cairo" + }, + "start_col": 24, + "start_line": 32 + }, + "While expanding the reference 'implementation_hash' in:" + ], + "start_col": 5, + "start_line": 20 + } + }, + "305": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.constructor" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 19, + "end_line": 21, + "input_file": { + "filename": "src/utils/proxy.cairo" + }, + "parent_location": [ + { + "end_col": 39, + "end_line": 33, + "input_file": { + "filename": "src/utils/proxy.cairo" + }, + "start_col": 31, + "start_line": 33 + }, + "While expanding the reference 'selector' in:" + ], + "start_col": 5, + "start_line": 21 + } + }, + "306": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.constructor" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 23, + "end_line": 22, + "input_file": { + "filename": "src/utils/proxy.cairo" + }, + "parent_location": [ + { + "end_col": 39, + "end_line": 34, + "input_file": { + "filename": "src/utils/proxy.cairo" + }, + "start_col": 27, + "start_line": 34 + }, + "While expanding the reference 'calldata_len' in:" + ], + "start_col": 5, + "start_line": 22 + } + }, + "307": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.constructor" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 20, + "end_line": 23, + "input_file": { + "filename": "src/utils/proxy.cairo" + }, + "parent_location": [ + { + "end_col": 30, + "end_line": 35, + "input_file": { + "filename": "src/utils/proxy.cairo" + }, + "start_col": 22, + "start_line": 35 + }, + "While expanding the reference 'calldata' in:" + ], + "start_col": 5, + "start_line": 23 + } + }, + "308": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.constructor" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 10, + "end_line": 36, + "input_file": { + "filename": "src/utils/proxy.cairo" + }, + "start_col": 9, + "start_line": 31 + } + }, + "310": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.constructor" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 37, + "end_line": 85, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/starknet/common/syscalls.cairo" + }, + "parent_location": [ + { + "end_col": 10, + "end_line": 36, + "input_file": { + "filename": "src/utils/proxy.cairo" + }, + "parent_location": [ + { + "end_col": 36, + "end_line": 18, + "input_file": { + "filename": "src/utils/proxy.cairo" + }, + "parent_location": [ + { + "end_col": 15, + "end_line": 39, + "input_file": { + "filename": "src/utils/proxy.cairo" + }, + "start_col": 5, + "start_line": 39 + }, + "While trying to retrieve the implicit argument 'syscall_ptr' in:" + ], + "start_col": 18, + "start_line": 18 + }, + "While expanding the reference 'syscall_ptr' in:" + ], + "start_col": 9, + "start_line": 31 + }, + "While trying to update the implicit return value 'syscall_ptr' in:" + ], + "start_col": 19, + "start_line": 85 + } + }, + "311": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.constructor" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 81, + "end_line": 102, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/upgrades/library.cairo" + }, + "parent_location": [ + { + "end_col": 56, + "end_line": 27, + "input_file": { + "filename": "src/utils/proxy.cairo" + }, + "parent_location": [ + { + "end_col": 81, + "end_line": 102, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/upgrades/library.cairo" + }, + "parent_location": [ + { + "end_col": 56, + "end_line": 27, + "input_file": { + "filename": "src/utils/proxy.cairo" + }, + "parent_location": [ + { + "end_col": 64, + "end_line": 18, + "input_file": { + "filename": "src/utils/proxy.cairo" + }, + "parent_location": [ + { + "end_col": 15, + "end_line": 39, + "input_file": { + "filename": "src/utils/proxy.cairo" + }, + "start_col": 5, + "start_line": 39 + }, + "While trying to retrieve the implicit argument 'pedersen_ptr' in:" + ], + "start_col": 38, + "start_line": 18 + }, + "While expanding the reference 'pedersen_ptr' in:" + ], + "start_col": 5, + "start_line": 27 + }, + "While trying to update the implicit return value 'pedersen_ptr' in:" + ], + "start_col": 55, + "start_line": 102 + }, + "While auto generating local variable for 'pedersen_ptr'." + ], + "start_col": 5, + "start_line": 27 + }, + "While trying to update the implicit return value 'pedersen_ptr' in:" + ], + "start_col": 55, + "start_line": 102 + } + }, + "312": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.constructor" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 98, + "end_line": 102, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/upgrades/library.cairo" + }, + "parent_location": [ + { + "end_col": 56, + "end_line": 27, + "input_file": { + "filename": "src/utils/proxy.cairo" + }, + "parent_location": [ + { + "end_col": 98, + "end_line": 102, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/upgrades/library.cairo" + }, + "parent_location": [ + { + "end_col": 56, + "end_line": 27, + "input_file": { + "filename": "src/utils/proxy.cairo" + }, + "parent_location": [ + { + "end_col": 81, + "end_line": 18, + "input_file": { + "filename": "src/utils/proxy.cairo" + }, + "parent_location": [ + { + "end_col": 15, + "end_line": 39, + "input_file": { + "filename": "src/utils/proxy.cairo" + }, + "start_col": 5, + "start_line": 39 + }, + "While trying to retrieve the implicit argument 'range_check_ptr' in:" + ], + "start_col": 66, + "start_line": 18 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 5, + "start_line": 27 + }, + "While trying to update the implicit return value 'range_check_ptr' in:" + ], + "start_col": 83, + "start_line": 102 + }, + "While auto generating local variable for 'range_check_ptr'." + ], + "start_col": 5, + "start_line": 27 + }, + "While trying to update the implicit return value 'range_check_ptr' in:" + ], + "start_col": 83, + "start_line": 102 + } + }, + "313": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.constructor" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 15, + "end_line": 39, + "input_file": { + "filename": "src/utils/proxy.cairo" + }, + "start_col": 5, + "start_line": 39 + } + }, + "314": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.constructor" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 67, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/constructor/741ea357d6336b0bed7bf0472425acd0311d543883b803388880e60a232040c7.cairo" + }, + "parent_location": [ + { + "end_col": 81, + "end_line": 18, + "input_file": { + "filename": "src/utils/proxy.cairo" + }, + "parent_location": [ + { + "end_col": 24, + "end_line": 2, + "input_file": { + "filename": "autogen/starknet/arg_processor/60a1d0127411d0a1f9a364f5245ae52da8e752ea42edf6ddaf5217c8bdeb8bad.cairo" + }, + "parent_location": [ + { + "end_col": 20, + "end_line": 23, + "input_file": { + "filename": "src/utils/proxy.cairo" + }, + "start_col": 5, + "start_line": 23 + }, + "While handling calldata argument 'calldata'" + ], + "start_col": 9, + "start_line": 2 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 66, + "start_line": 18 + }, + "While constructing the external wrapper for:" + ], + "start_col": 23, + "start_line": 1 + } + }, + "315": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.constructor" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 51, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/arg_processor/b3680ca562908399dc897f0a23ed55686e0fba9ab4a18330c139e561aa7b41d8.cairo" + }, + "parent_location": [ + { + "end_col": 23, + "end_line": 22, + "input_file": { + "filename": "src/utils/proxy.cairo" + }, + "parent_location": [ + { + "end_col": 55, + "end_line": 2, + "input_file": { + "filename": "autogen/starknet/arg_processor/60a1d0127411d0a1f9a364f5245ae52da8e752ea42edf6ddaf5217c8bdeb8bad.cairo" + }, + "parent_location": [ + { + "end_col": 20, + "end_line": 23, + "input_file": { + "filename": "src/utils/proxy.cairo" + }, + "start_col": 5, + "start_line": 23 + }, + "While handling calldata argument 'calldata'" + ], + "start_col": 28, + "start_line": 2 + }, + "While expanding the reference '__calldata_arg_calldata_len' in:" + ], + "start_col": 5, + "start_line": 22 + }, + "While handling calldata argument 'calldata_len'" + ], + "start_col": 35, + "start_line": 1 + } + }, + "316": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.constructor" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 56, + "end_line": 2, + "input_file": { + "filename": "autogen/starknet/arg_processor/60a1d0127411d0a1f9a364f5245ae52da8e752ea42edf6ddaf5217c8bdeb8bad.cairo" + }, + "parent_location": [ + { + "end_col": 20, + "end_line": 23, + "input_file": { + "filename": "src/utils/proxy.cairo" + }, + "start_col": 5, + "start_line": 23 + }, + "While handling calldata argument 'calldata'" + ], + "start_col": 1, + "start_line": 2 + } + }, + "317": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.constructor" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 40, + "end_line": 2, + "input_file": { + "filename": "autogen/starknet/arg_processor/b3680ca562908399dc897f0a23ed55686e0fba9ab4a18330c139e561aa7b41d8.cairo" + }, + "parent_location": [ + { + "end_col": 23, + "end_line": 22, + "input_file": { + "filename": "src/utils/proxy.cairo" + }, + "parent_location": [ + { + "end_col": 40, + "end_line": 8, + "input_file": { + "filename": "autogen/starknet/arg_processor/60a1d0127411d0a1f9a364f5245ae52da8e752ea42edf6ddaf5217c8bdeb8bad.cairo" + }, + "parent_location": [ + { + "end_col": 20, + "end_line": 23, + "input_file": { + "filename": "src/utils/proxy.cairo" + }, + "start_col": 5, + "start_line": 23 + }, + "While handling calldata argument 'calldata'" + ], + "start_col": 26, + "start_line": 8 + }, + "While expanding the reference '__calldata_ptr' in:" + ], + "start_col": 5, + "start_line": 22 + }, + "While handling calldata argument 'calldata_len'" + ], + "start_col": 22, + "start_line": 2 + } + }, + "319": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.constructor" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 51, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/arg_processor/b3680ca562908399dc897f0a23ed55686e0fba9ab4a18330c139e561aa7b41d8.cairo" + }, + "parent_location": [ + { + "end_col": 23, + "end_line": 22, + "input_file": { + "filename": "src/utils/proxy.cairo" + }, + "parent_location": [ + { + "end_col": 70, + "end_line": 8, + "input_file": { + "filename": "autogen/starknet/arg_processor/60a1d0127411d0a1f9a364f5245ae52da8e752ea42edf6ddaf5217c8bdeb8bad.cairo" + }, + "parent_location": [ + { + "end_col": 20, + "end_line": 23, + "input_file": { + "filename": "src/utils/proxy.cairo" + }, + "start_col": 5, + "start_line": 23 + }, + "While handling calldata argument 'calldata'" + ], + "start_col": 43, + "start_line": 8 + }, + "While expanding the reference '__calldata_arg_calldata_len' in:" + ], + "start_col": 5, + "start_line": 22 + }, + "While handling calldata argument 'calldata_len'" + ], + "start_col": 35, + "start_line": 1 + } + }, + "320": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.constructor" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 74, + "end_line": 8, + "input_file": { + "filename": "autogen/starknet/arg_processor/60a1d0127411d0a1f9a364f5245ae52da8e752ea42edf6ddaf5217c8bdeb8bad.cairo" + }, + "parent_location": [ + { + "end_col": 20, + "end_line": 23, + "input_file": { + "filename": "src/utils/proxy.cairo" + }, + "start_col": 5, + "start_line": 23 + }, + "While handling calldata argument 'calldata'" + ], + "start_col": 26, + "start_line": 8 + } + }, + "321": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.constructor" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 58, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/arg_processor/01cba52f8515996bb9d7070bde81ff39281d096d7024a558efcba6e1fd2402cf.cairo" + }, + "parent_location": [ + { + "end_col": 17, + "end_line": 18, + "input_file": { + "filename": "src/utils/proxy.cairo" + }, + "start_col": 6, + "start_line": 18 + }, + "While handling calldata of" + ], + "start_col": 1, + "start_line": 1 + } + }, + "322": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.constructor" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 67, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/constructor/741ea357d6336b0bed7bf0472425acd0311d543883b803388880e60a232040c7.cairo" + }, + "parent_location": [ + { + "end_col": 81, + "end_line": 18, + "input_file": { + "filename": "src/utils/proxy.cairo" + }, + "parent_location": [ + { + "end_col": 38, + "end_line": 3, + "input_file": { + "filename": "autogen/starknet/arg_processor/60a1d0127411d0a1f9a364f5245ae52da8e752ea42edf6ddaf5217c8bdeb8bad.cairo" + }, + "parent_location": [ + { + "end_col": 20, + "end_line": 23, + "input_file": { + "filename": "src/utils/proxy.cairo" + }, + "parent_location": [ + { + "end_col": 115, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/constructor/a63470f916c9fc15a1cdacb13e6bca67fadb791bed8c7bda38a4b758694cd880.cairo" + }, + "parent_location": [ + { + "end_col": 17, + "end_line": 18, + "input_file": { + "filename": "src/utils/proxy.cairo" + }, + "start_col": 6, + "start_line": 18 + }, + "While constructing the external wrapper for:" + ], + "start_col": 100, + "start_line": 1 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 5, + "start_line": 23 + }, + "While handling calldata argument 'calldata'" + ], + "start_col": 23, + "start_line": 3 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 66, + "start_line": 18 + }, + "While constructing the external wrapper for:" + ], + "start_col": 23, + "start_line": 1 + } + }, + "323": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.constructor" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 64, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/constructor/b2c52ca2d2a8fc8791a983086d8716c5eacd0c3d62934914d2286f84b98ff4cb.cairo" + }, + "parent_location": [ + { + "end_col": 36, + "end_line": 18, + "input_file": { + "filename": "src/utils/proxy.cairo" + }, + "parent_location": [ + { + "end_col": 55, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/constructor/a63470f916c9fc15a1cdacb13e6bca67fadb791bed8c7bda38a4b758694cd880.cairo" + }, + "parent_location": [ + { + "end_col": 17, + "end_line": 18, + "input_file": { + "filename": "src/utils/proxy.cairo" + }, + "start_col": 6, + "start_line": 18 + }, + "While constructing the external wrapper for:" + ], + "start_col": 44, + "start_line": 1 + }, + "While expanding the reference 'syscall_ptr' in:" + ], + "start_col": 18, + "start_line": 18 + }, + "While constructing the external wrapper for:" + ], + "start_col": 19, + "start_line": 1 + } + }, + "324": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.constructor" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 110, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/constructor/9684a85e93c782014ca14293edea4eb2502039a5a7b6538ecd39c56faaf12529.cairo" + }, + "parent_location": [ + { + "end_col": 64, + "end_line": 18, + "input_file": { + "filename": "src/utils/proxy.cairo" + }, + "parent_location": [ + { + "end_col": 82, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/constructor/a63470f916c9fc15a1cdacb13e6bca67fadb791bed8c7bda38a4b758694cd880.cairo" + }, + "parent_location": [ + { + "end_col": 17, + "end_line": 18, + "input_file": { + "filename": "src/utils/proxy.cairo" + }, + "start_col": 6, + "start_line": 18 + }, + "While constructing the external wrapper for:" + ], + "start_col": 70, + "start_line": 1 + }, + "While expanding the reference 'pedersen_ptr' in:" + ], + "start_col": 38, + "start_line": 18 + }, + "While constructing the external wrapper for:" + ], + "start_col": 20, + "start_line": 1 + } + }, + "325": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.constructor" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 42, + "end_line": 3, + "input_file": { + "filename": "autogen/starknet/arg_processor/60a1d0127411d0a1f9a364f5245ae52da8e752ea42edf6ddaf5217c8bdeb8bad.cairo" + }, + "parent_location": [ + { + "end_col": 20, + "end_line": 23, + "input_file": { + "filename": "src/utils/proxy.cairo" + }, + "parent_location": [ + { + "end_col": 115, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/constructor/a63470f916c9fc15a1cdacb13e6bca67fadb791bed8c7bda38a4b758694cd880.cairo" + }, + "parent_location": [ + { + "end_col": 17, + "end_line": 18, + "input_file": { + "filename": "src/utils/proxy.cairo" + }, + "start_col": 6, + "start_line": 18 + }, + "While constructing the external wrapper for:" + ], + "start_col": 100, + "start_line": 1 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 5, + "start_line": 23 + }, + "While handling calldata argument 'calldata'" + ], + "start_col": 23, + "start_line": 3 + } + }, + "327": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.constructor" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 50, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/arg_processor/3f2af33c875170cc67ae2f432d9bbef7059830e387aaef0a4e6fb0dbf7fc2331.cairo" + }, + "parent_location": [ + { + "end_col": 22, + "end_line": 19, + "input_file": { + "filename": "src/utils/proxy.cairo" + }, + "parent_location": [ + { + "end_col": 155, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/constructor/a63470f916c9fc15a1cdacb13e6bca67fadb791bed8c7bda38a4b758694cd880.cairo" + }, + "parent_location": [ + { + "end_col": 17, + "end_line": 18, + "input_file": { + "filename": "src/utils/proxy.cairo" + }, + "start_col": 6, + "start_line": 18 + }, + "While constructing the external wrapper for:" + ], + "start_col": 129, + "start_line": 1 + }, + "While expanding the reference '__calldata_arg_proxy_admin' in:" + ], + "start_col": 5, + "start_line": 19 + }, + "While handling calldata argument 'proxy_admin'" + ], + "start_col": 34, + "start_line": 1 + } + }, + "328": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.constructor" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 58, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/arg_processor/c7e46960a2fa69d5c0a7282c1f15259a900e9ff0845fd5fc8eb52633fe023f7c.cairo" + }, + "parent_location": [ + { + "end_col": 30, + "end_line": 20, + "input_file": { + "filename": "src/utils/proxy.cairo" + }, + "parent_location": [ + { + "end_col": 211, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/constructor/a63470f916c9fc15a1cdacb13e6bca67fadb791bed8c7bda38a4b758694cd880.cairo" + }, + "parent_location": [ + { + "end_col": 17, + "end_line": 18, + "input_file": { + "filename": "src/utils/proxy.cairo" + }, + "start_col": 6, + "start_line": 18 + }, + "While constructing the external wrapper for:" + ], + "start_col": 177, + "start_line": 1 + }, + "While expanding the reference '__calldata_arg_implementation_hash' in:" + ], + "start_col": 5, + "start_line": 20 + }, + "While handling calldata argument 'implementation_hash'" + ], + "start_col": 42, + "start_line": 1 + } + }, + "329": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.constructor" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 47, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/arg_processor/efce3bc97e0a7923c6699414008fef8ca0564718704acd4ae52e0b77f0a7c01e.cairo" + }, + "parent_location": [ + { + "end_col": 19, + "end_line": 21, + "input_file": { + "filename": "src/utils/proxy.cairo" + }, + "parent_location": [ + { + "end_col": 245, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/constructor/a63470f916c9fc15a1cdacb13e6bca67fadb791bed8c7bda38a4b758694cd880.cairo" + }, + "parent_location": [ + { + "end_col": 17, + "end_line": 18, + "input_file": { + "filename": "src/utils/proxy.cairo" + }, + "start_col": 6, + "start_line": 18 + }, + "While constructing the external wrapper for:" + ], + "start_col": 222, + "start_line": 1 + }, + "While expanding the reference '__calldata_arg_selector' in:" + ], + "start_col": 5, + "start_line": 21 + }, + "While handling calldata argument 'selector'" + ], + "start_col": 31, + "start_line": 1 + } + }, + "330": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.constructor" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 51, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/arg_processor/b3680ca562908399dc897f0a23ed55686e0fba9ab4a18330c139e561aa7b41d8.cairo" + }, + "parent_location": [ + { + "end_col": 23, + "end_line": 22, + "input_file": { + "filename": "src/utils/proxy.cairo" + }, + "parent_location": [ + { + "end_col": 287, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/constructor/a63470f916c9fc15a1cdacb13e6bca67fadb791bed8c7bda38a4b758694cd880.cairo" + }, + "parent_location": [ + { + "end_col": 17, + "end_line": 18, + "input_file": { + "filename": "src/utils/proxy.cairo" + }, + "start_col": 6, + "start_line": 18 + }, + "While constructing the external wrapper for:" + ], + "start_col": 260, + "start_line": 1 + }, + "While expanding the reference '__calldata_arg_calldata_len' in:" + ], + "start_col": 5, + "start_line": 22 + }, + "While handling calldata argument 'calldata_len'" + ], + "start_col": 35, + "start_line": 1 + } + }, + "331": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.constructor" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 58, + "end_line": 5, + "input_file": { + "filename": "autogen/starknet/arg_processor/60a1d0127411d0a1f9a364f5245ae52da8e752ea42edf6ddaf5217c8bdeb8bad.cairo" + }, + "parent_location": [ + { + "end_col": 20, + "end_line": 23, + "input_file": { + "filename": "src/utils/proxy.cairo" + }, + "parent_location": [ + { + "end_col": 321, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/constructor/a63470f916c9fc15a1cdacb13e6bca67fadb791bed8c7bda38a4b758694cd880.cairo" + }, + "parent_location": [ + { + "end_col": 17, + "end_line": 18, + "input_file": { + "filename": "src/utils/proxy.cairo" + }, + "start_col": 6, + "start_line": 18 + }, + "While constructing the external wrapper for:" + ], + "start_col": 298, + "start_line": 1 + }, + "While expanding the reference '__calldata_arg_calldata' in:" + ], + "start_col": 5, + "start_line": 23 + }, + "While handling calldata argument 'calldata'" + ], + "start_col": 31, + "start_line": 5 + } + }, + "333": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.constructor" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 17, + "end_line": 18, + "input_file": { + "filename": "src/utils/proxy.cairo" + }, + "start_col": 6, + "start_line": 18 + } + }, + "335": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.constructor" + ], + "flow_tracking_data": null, + "hints": [ + { + "location": { + "end_col": 34, + "end_line": 2, + "input_file": { + "filename": "autogen/starknet/external/constructor/a63470f916c9fc15a1cdacb13e6bca67fadb791bed8c7bda38a4b758694cd880.cairo" + }, + "parent_location": [ + { + "end_col": 17, + "end_line": 18, + "input_file": { + "filename": "src/utils/proxy.cairo" + }, + "start_col": 6, + "start_line": 18 + }, + "While constructing the external wrapper for:" + ], + "start_col": 1, + "start_line": 2 + }, + "n_prefix_newlines": 0 + } + ], + "inst": { + "end_col": 24, + "end_line": 3, + "input_file": { + "filename": "autogen/starknet/external/constructor/a63470f916c9fc15a1cdacb13e6bca67fadb791bed8c7bda38a4b758694cd880.cairo" + }, + "parent_location": [ + { + "end_col": 17, + "end_line": 18, + "input_file": { + "filename": "src/utils/proxy.cairo" + }, + "start_col": 6, + "start_line": 18 + }, + "While constructing the external wrapper for:" + ], + "start_col": 1, + "start_line": 3 + } + }, + "337": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.constructor" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 55, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/constructor/a63470f916c9fc15a1cdacb13e6bca67fadb791bed8c7bda38a4b758694cd880.cairo" + }, + "parent_location": [ + { + "end_col": 17, + "end_line": 18, + "input_file": { + "filename": "src/utils/proxy.cairo" + }, + "parent_location": [ + { + "end_col": 20, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/constructor/da17921a4e81c09e730800bbf23bfdbe5e9e6bfaedc59d80fbf62087fa43c27d.cairo" + }, + "parent_location": [ + { + "end_col": 17, + "end_line": 18, + "input_file": { + "filename": "src/utils/proxy.cairo" + }, + "start_col": 6, + "start_line": 18 + }, + "While constructing the external wrapper for:" + ], + "start_col": 9, + "start_line": 1 + }, + "While expanding the reference 'syscall_ptr' in:" + ], + "start_col": 6, + "start_line": 18 + }, + "While constructing the external wrapper for:" + ], + "start_col": 44, + "start_line": 1 + } + }, + "338": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.constructor" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 82, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/constructor/a63470f916c9fc15a1cdacb13e6bca67fadb791bed8c7bda38a4b758694cd880.cairo" + }, + "parent_location": [ + { + "end_col": 17, + "end_line": 18, + "input_file": { + "filename": "src/utils/proxy.cairo" + }, + "parent_location": [ + { + "end_col": 33, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/constructor/da17921a4e81c09e730800bbf23bfdbe5e9e6bfaedc59d80fbf62087fa43c27d.cairo" + }, + "parent_location": [ + { + "end_col": 17, + "end_line": 18, + "input_file": { + "filename": "src/utils/proxy.cairo" + }, + "start_col": 6, + "start_line": 18 + }, + "While constructing the external wrapper for:" + ], + "start_col": 21, + "start_line": 1 + }, + "While expanding the reference 'pedersen_ptr' in:" + ], + "start_col": 6, + "start_line": 18 + }, + "While constructing the external wrapper for:" + ], + "start_col": 70, + "start_line": 1 + } + }, + "339": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.constructor" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 115, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/constructor/a63470f916c9fc15a1cdacb13e6bca67fadb791bed8c7bda38a4b758694cd880.cairo" + }, + "parent_location": [ + { + "end_col": 17, + "end_line": 18, + "input_file": { + "filename": "src/utils/proxy.cairo" + }, + "parent_location": [ + { + "end_col": 49, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/constructor/da17921a4e81c09e730800bbf23bfdbe5e9e6bfaedc59d80fbf62087fa43c27d.cairo" + }, + "parent_location": [ + { + "end_col": 17, + "end_line": 18, + "input_file": { + "filename": "src/utils/proxy.cairo" + }, + "start_col": 6, + "start_line": 18 + }, + "While constructing the external wrapper for:" + ], + "start_col": 34, + "start_line": 1 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 6, + "start_line": 18 + }, + "While constructing the external wrapper for:" + ], + "start_col": 100, + "start_line": 1 + } + }, + "340": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.constructor" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 21, + "end_line": 4, + "input_file": { + "filename": "autogen/starknet/external/constructor/a63470f916c9fc15a1cdacb13e6bca67fadb791bed8c7bda38a4b758694cd880.cairo" + }, + "parent_location": [ + { + "end_col": 17, + "end_line": 18, + "input_file": { + "filename": "src/utils/proxy.cairo" + }, + "parent_location": [ + { + "end_col": 62, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/constructor/da17921a4e81c09e730800bbf23bfdbe5e9e6bfaedc59d80fbf62087fa43c27d.cairo" + }, + "parent_location": [ + { + "end_col": 17, + "end_line": 18, + "input_file": { + "filename": "src/utils/proxy.cairo" + }, + "start_col": 6, + "start_line": 18 + }, + "While constructing the external wrapper for:" + ], + "start_col": 50, + "start_line": 1 + }, + "While expanding the reference 'retdata_size' in:" + ], + "start_col": 6, + "start_line": 18 + }, + "While constructing the external wrapper for:" + ], + "start_col": 20, + "start_line": 4 + } + }, + "342": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.constructor" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 16, + "end_line": 3, + "input_file": { + "filename": "autogen/starknet/external/constructor/a63470f916c9fc15a1cdacb13e6bca67fadb791bed8c7bda38a4b758694cd880.cairo" + }, + "parent_location": [ + { + "end_col": 17, + "end_line": 18, + "input_file": { + "filename": "src/utils/proxy.cairo" + }, + "parent_location": [ + { + "end_col": 70, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/constructor/da17921a4e81c09e730800bbf23bfdbe5e9e6bfaedc59d80fbf62087fa43c27d.cairo" + }, + "parent_location": [ + { + "end_col": 17, + "end_line": 18, + "input_file": { + "filename": "src/utils/proxy.cairo" + }, + "start_col": 6, + "start_line": 18 + }, + "While constructing the external wrapper for:" + ], + "start_col": 63, + "start_line": 1 + }, + "While expanding the reference 'retdata' in:" + ], + "start_col": 6, + "start_line": 18 + }, + "While constructing the external wrapper for:" + ], + "start_col": 9, + "start_line": 3 + } + }, + "343": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.constructor" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 72, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/constructor/da17921a4e81c09e730800bbf23bfdbe5e9e6bfaedc59d80fbf62087fa43c27d.cairo" + }, + "parent_location": [ + { + "end_col": 17, + "end_line": 18, + "input_file": { + "filename": "src/utils/proxy.cairo" + }, + "start_col": 6, + "start_line": 18 + }, + "While constructing the external wrapper for:" + ], + "start_col": 1, + "start_line": 1 + } + }, + "344": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.__default__" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 36, + "end_line": 49, + "input_file": { + "filename": "src/utils/proxy.cairo" + }, + "parent_location": [ + { + "end_col": 52, + "end_line": 74, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/upgrades/library.cairo" + }, + "parent_location": [ + { + "end_col": 55, + "end_line": 52, + "input_file": { + "filename": "src/utils/proxy.cairo" + }, + "start_col": 24, + "start_line": 52 + }, + "While trying to retrieve the implicit argument 'syscall_ptr' in:" + ], + "start_col": 34, + "start_line": 74 + }, + "While expanding the reference 'syscall_ptr' in:" + ], + "start_col": 18, + "start_line": 49 + } + }, + "345": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.__default__" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 64, + "end_line": 49, + "input_file": { + "filename": "src/utils/proxy.cairo" + }, + "parent_location": [ + { + "end_col": 80, + "end_line": 74, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/upgrades/library.cairo" + }, + "parent_location": [ + { + "end_col": 55, + "end_line": 52, + "input_file": { + "filename": "src/utils/proxy.cairo" + }, + "start_col": 24, + "start_line": 52 + }, + "While trying to retrieve the implicit argument 'pedersen_ptr' in:" + ], + "start_col": 54, + "start_line": 74 + }, + "While expanding the reference 'pedersen_ptr' in:" + ], + "start_col": 38, + "start_line": 49 + } + }, + "346": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.__default__" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 81, + "end_line": 49, + "input_file": { + "filename": "src/utils/proxy.cairo" + }, + "parent_location": [ + { + "end_col": 97, + "end_line": 74, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/upgrades/library.cairo" + }, + "parent_location": [ + { + "end_col": 55, + "end_line": 52, + "input_file": { + "filename": "src/utils/proxy.cairo" + }, + "start_col": 24, + "start_line": 52 + }, + "While trying to retrieve the implicit argument 'range_check_ptr' in:" + ], + "start_col": 82, + "start_line": 74 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 66, + "start_line": 49 + } + }, + "347": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.__default__" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 55, + "end_line": 52, + "input_file": { + "filename": "src/utils/proxy.cairo" + }, + "start_col": 24, + "start_line": 52 + } + }, + "349": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.__default__" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 52, + "end_line": 74, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/upgrades/library.cairo" + }, + "parent_location": [ + { + "end_col": 55, + "end_line": 52, + "input_file": { + "filename": "src/utils/proxy.cairo" + }, + "parent_location": [ + { + "end_col": 37, + "end_line": 85, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/starknet/common/syscalls.cairo" + }, + "parent_location": [ + { + "end_col": 6, + "end_line": 59, + "input_file": { + "filename": "src/utils/proxy.cairo" + }, + "start_col": 48, + "start_line": 54 + }, + "While trying to retrieve the implicit argument 'syscall_ptr' in:" + ], + "start_col": 19, + "start_line": 85 + }, + "While expanding the reference 'syscall_ptr' in:" + ], + "start_col": 24, + "start_line": 52 + }, + "While trying to update the implicit return value 'syscall_ptr' in:" + ], + "start_col": 34, + "start_line": 74 + } + }, + "350": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.__default__" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 20, + "end_line": 52, + "input_file": { + "filename": "src/utils/proxy.cairo" + }, + "parent_location": [ + { + "end_col": 30, + "end_line": 55, + "input_file": { + "filename": "src/utils/proxy.cairo" + }, + "start_col": 20, + "start_line": 55 + }, + "While expanding the reference 'class_hash' in:" + ], + "start_col": 10, + "start_line": 52 + } + }, + "351": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.__default__" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 19, + "end_line": 50, + "input_file": { + "filename": "src/utils/proxy.cairo" + }, + "parent_location": [ + { + "end_col": 35, + "end_line": 56, + "input_file": { + "filename": "src/utils/proxy.cairo" + }, + "start_col": 27, + "start_line": 56 + }, + "While expanding the reference 'selector' in:" + ], + "start_col": 5, + "start_line": 50 + } + }, + "352": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.__default__" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 40, + "end_line": 50, + "input_file": { + "filename": "src/utils/proxy.cairo" + }, + "parent_location": [ + { + "end_col": 36, + "end_line": 57, + "input_file": { + "filename": "src/utils/proxy.cairo" + }, + "start_col": 23, + "start_line": 57 + }, + "While expanding the reference 'calldata_size' in:" + ], + "start_col": 21, + "start_line": 50 + } + }, + "353": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.__default__" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 57, + "end_line": 50, + "input_file": { + "filename": "src/utils/proxy.cairo" + }, + "parent_location": [ + { + "end_col": 26, + "end_line": 58, + "input_file": { + "filename": "src/utils/proxy.cairo" + }, + "start_col": 18, + "start_line": 58 + }, + "While expanding the reference 'calldata' in:" + ], + "start_col": 42, + "start_line": 50 + } + }, + "354": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.__default__" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 6, + "end_line": 59, + "input_file": { + "filename": "src/utils/proxy.cairo" + }, + "start_col": 48, + "start_line": 54 + } + }, + "356": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.__default__" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 37, + "end_line": 85, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/starknet/common/syscalls.cairo" + }, + "parent_location": [ + { + "end_col": 6, + "end_line": 59, + "input_file": { + "filename": "src/utils/proxy.cairo" + }, + "parent_location": [ + { + "end_col": 36, + "end_line": 49, + "input_file": { + "filename": "src/utils/proxy.cairo" + }, + "parent_location": [ + { + "end_col": 36, + "end_line": 60, + "input_file": { + "filename": "src/utils/proxy.cairo" + }, + "start_col": 5, + "start_line": 60 + }, + "While trying to retrieve the implicit argument 'syscall_ptr' in:" + ], + "start_col": 18, + "start_line": 49 + }, + "While expanding the reference 'syscall_ptr' in:" + ], + "start_col": 48, + "start_line": 54 + }, + "While trying to update the implicit return value 'syscall_ptr' in:" + ], + "start_col": 19, + "start_line": 85 + } + }, + "357": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.__default__" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 80, + "end_line": 74, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/upgrades/library.cairo" + }, + "parent_location": [ + { + "end_col": 55, + "end_line": 52, + "input_file": { + "filename": "src/utils/proxy.cairo" + }, + "parent_location": [ + { + "end_col": 64, + "end_line": 49, + "input_file": { + "filename": "src/utils/proxy.cairo" + }, + "parent_location": [ + { + "end_col": 36, + "end_line": 60, + "input_file": { + "filename": "src/utils/proxy.cairo" + }, + "start_col": 5, + "start_line": 60 + }, + "While trying to retrieve the implicit argument 'pedersen_ptr' in:" + ], + "start_col": 38, + "start_line": 49 + }, + "While expanding the reference 'pedersen_ptr' in:" + ], + "start_col": 24, + "start_line": 52 + }, + "While trying to update the implicit return value 'pedersen_ptr' in:" + ], + "start_col": 54, + "start_line": 74 + } + }, + "358": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.__default__" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 97, + "end_line": 74, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/upgrades/library.cairo" + }, + "parent_location": [ + { + "end_col": 55, + "end_line": 52, + "input_file": { + "filename": "src/utils/proxy.cairo" + }, + "parent_location": [ + { + "end_col": 81, + "end_line": 49, + "input_file": { + "filename": "src/utils/proxy.cairo" + }, + "parent_location": [ + { + "end_col": 36, + "end_line": 60, + "input_file": { + "filename": "src/utils/proxy.cairo" + }, + "start_col": 5, + "start_line": 60 + }, + "While trying to retrieve the implicit argument 'range_check_ptr' in:" + ], + "start_col": 66, + "start_line": 49 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 24, + "start_line": 52 + }, + "While trying to update the implicit return value 'range_check_ptr' in:" + ], + "start_col": 82, + "start_line": 74 + } + }, + "359": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.__default__" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 28, + "end_line": 54, + "input_file": { + "filename": "src/utils/proxy.cairo" + }, + "parent_location": [ + { + "end_col": 25, + "end_line": 60, + "input_file": { + "filename": "src/utils/proxy.cairo" + }, + "start_col": 13, + "start_line": 60 + }, + "While expanding the reference 'retdata_size' in:" + ], + "start_col": 10, + "start_line": 54 + } + }, + "360": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.__default__" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 44, + "end_line": 54, + "input_file": { + "filename": "src/utils/proxy.cairo" + }, + "parent_location": [ + { + "end_col": 34, + "end_line": 60, + "input_file": { + "filename": "src/utils/proxy.cairo" + }, + "start_col": 27, + "start_line": 60 + }, + "While expanding the reference 'retdata' in:" + ], + "start_col": 30, + "start_line": 54 + } + }, + "361": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.__default__" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 36, + "end_line": 60, + "input_file": { + "filename": "src/utils/proxy.cairo" + }, + "start_col": 5, + "start_line": 60 + } + }, + "362": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.__default__" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 64, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/__default__/b2c52ca2d2a8fc8791a983086d8716c5eacd0c3d62934914d2286f84b98ff4cb.cairo" + }, + "parent_location": [ + { + "end_col": 36, + "end_line": 49, + "input_file": { + "filename": "src/utils/proxy.cairo" + }, + "parent_location": [ + { + "end_col": 55, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/__default__/74d1912275914830da60365bd64f810a85eb6f691ab84ce92d5eb5e532ea2828.cairo" + }, + "parent_location": [ + { + "end_col": 17, + "end_line": 49, + "input_file": { + "filename": "src/utils/proxy.cairo" + }, + "start_col": 6, + "start_line": 49 + }, + "While constructing the external wrapper for:" + ], + "start_col": 44, + "start_line": 1 + }, + "While expanding the reference 'syscall_ptr' in:" + ], + "start_col": 18, + "start_line": 49 + }, + "While constructing the external wrapper for:" + ], + "start_col": 19, + "start_line": 1 + } + }, + "363": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.__default__" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 110, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/__default__/9684a85e93c782014ca14293edea4eb2502039a5a7b6538ecd39c56faaf12529.cairo" + }, + "parent_location": [ + { + "end_col": 64, + "end_line": 49, + "input_file": { + "filename": "src/utils/proxy.cairo" + }, + "parent_location": [ + { + "end_col": 82, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/__default__/74d1912275914830da60365bd64f810a85eb6f691ab84ce92d5eb5e532ea2828.cairo" + }, + "parent_location": [ + { + "end_col": 17, + "end_line": 49, + "input_file": { + "filename": "src/utils/proxy.cairo" + }, + "start_col": 6, + "start_line": 49 + }, + "While constructing the external wrapper for:" + ], + "start_col": 70, + "start_line": 1 + }, + "While expanding the reference 'pedersen_ptr' in:" + ], + "start_col": 38, + "start_line": 49 + }, + "While constructing the external wrapper for:" + ], + "start_col": 20, + "start_line": 1 + } + }, + "364": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.__default__" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 67, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/__default__/741ea357d6336b0bed7bf0472425acd0311d543883b803388880e60a232040c7.cairo" + }, + "parent_location": [ + { + "end_col": 81, + "end_line": 49, + "input_file": { + "filename": "src/utils/proxy.cairo" + }, + "parent_location": [ + { + "end_col": 115, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/__default__/74d1912275914830da60365bd64f810a85eb6f691ab84ce92d5eb5e532ea2828.cairo" + }, + "parent_location": [ + { + "end_col": 17, + "end_line": 49, + "input_file": { + "filename": "src/utils/proxy.cairo" + }, + "start_col": 6, + "start_line": 49 + }, + "While constructing the external wrapper for:" + ], + "start_col": 100, + "start_line": 1 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 66, + "start_line": 49 + }, + "While constructing the external wrapper for:" + ], + "start_col": 23, + "start_line": 1 + } + }, + "365": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.__default__" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 150, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/__default__/74d1912275914830da60365bd64f810a85eb6f691ab84ce92d5eb5e532ea2828.cairo" + }, + "parent_location": [ + { + "end_col": 17, + "end_line": 49, + "input_file": { + "filename": "src/utils/proxy.cairo" + }, + "start_col": 6, + "start_line": 49 + }, + "While constructing the external wrapper for:" + ], + "start_col": 126, + "start_line": 1 + } + }, + "366": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.__default__" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 190, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/__default__/74d1912275914830da60365bd64f810a85eb6f691ab84ce92d5eb5e532ea2828.cairo" + }, + "parent_location": [ + { + "end_col": 17, + "end_line": 49, + "input_file": { + "filename": "src/utils/proxy.cairo" + }, + "start_col": 6, + "start_line": 49 + }, + "While constructing the external wrapper for:" + ], + "start_col": 166, + "start_line": 1 + } + }, + "367": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.__default__" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 226, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/__default__/74d1912275914830da60365bd64f810a85eb6f691ab84ce92d5eb5e532ea2828.cairo" + }, + "parent_location": [ + { + "end_col": 17, + "end_line": 49, + "input_file": { + "filename": "src/utils/proxy.cairo" + }, + "start_col": 6, + "start_line": 49 + }, + "While constructing the external wrapper for:" + ], + "start_col": 201, + "start_line": 1 + } + }, + "368": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.__default__" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 17, + "end_line": 49, + "input_file": { + "filename": "src/utils/proxy.cairo" + }, + "start_col": 6, + "start_line": 49 + } + }, + "370": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.__default__" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 72, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/__default__/da17921a4e81c09e730800bbf23bfdbe5e9e6bfaedc59d80fbf62087fa43c27d.cairo" + }, + "parent_location": [ + { + "end_col": 17, + "end_line": 49, + "input_file": { + "filename": "src/utils/proxy.cairo" + }, + "start_col": 6, + "start_line": 49 + }, + "While constructing the external wrapper for:" + ], + "start_col": 1, + "start_line": 1 + } + }, + "371": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.__l1_default__" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 39, + "end_line": 65, + "input_file": { + "filename": "src/utils/proxy.cairo" + }, + "parent_location": [ + { + "end_col": 52, + "end_line": 74, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/upgrades/library.cairo" + }, + "parent_location": [ + { + "end_col": 55, + "end_line": 68, + "input_file": { + "filename": "src/utils/proxy.cairo" + }, + "start_col": 24, + "start_line": 68 + }, + "While trying to retrieve the implicit argument 'syscall_ptr' in:" + ], + "start_col": 34, + "start_line": 74 + }, + "While expanding the reference 'syscall_ptr' in:" + ], + "start_col": 21, + "start_line": 65 + } + }, + "372": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.__l1_default__" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 67, + "end_line": 65, + "input_file": { + "filename": "src/utils/proxy.cairo" + }, + "parent_location": [ + { + "end_col": 80, + "end_line": 74, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/upgrades/library.cairo" + }, + "parent_location": [ + { + "end_col": 55, + "end_line": 68, + "input_file": { + "filename": "src/utils/proxy.cairo" + }, + "start_col": 24, + "start_line": 68 + }, + "While trying to retrieve the implicit argument 'pedersen_ptr' in:" + ], + "start_col": 54, + "start_line": 74 + }, + "While expanding the reference 'pedersen_ptr' in:" + ], + "start_col": 41, + "start_line": 65 + } + }, + "373": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.__l1_default__" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 84, + "end_line": 65, + "input_file": { + "filename": "src/utils/proxy.cairo" + }, + "parent_location": [ + { + "end_col": 97, + "end_line": 74, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/upgrades/library.cairo" + }, + "parent_location": [ + { + "end_col": 55, + "end_line": 68, + "input_file": { + "filename": "src/utils/proxy.cairo" + }, + "start_col": 24, + "start_line": 68 + }, + "While trying to retrieve the implicit argument 'range_check_ptr' in:" + ], + "start_col": 82, + "start_line": 74 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 69, + "start_line": 65 + } + }, + "374": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.__l1_default__" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 55, + "end_line": 68, + "input_file": { + "filename": "src/utils/proxy.cairo" + }, + "start_col": 24, + "start_line": 68 + } + }, + "376": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.__l1_default__" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 52, + "end_line": 74, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/upgrades/library.cairo" + }, + "parent_location": [ + { + "end_col": 55, + "end_line": 68, + "input_file": { + "filename": "src/utils/proxy.cairo" + }, + "parent_location": [ + { + "end_col": 48, + "end_line": 107, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/starknet/common/syscalls.cairo" + }, + "parent_location": [ + { + "end_col": 6, + "end_line": 75, + "input_file": { + "filename": "src/utils/proxy.cairo" + }, + "start_col": 5, + "start_line": 70 + }, + "While trying to retrieve the implicit argument 'syscall_ptr' in:" + ], + "start_col": 30, + "start_line": 107 + }, + "While expanding the reference 'syscall_ptr' in:" + ], + "start_col": 24, + "start_line": 68 + }, + "While trying to update the implicit return value 'syscall_ptr' in:" + ], + "start_col": 34, + "start_line": 74 + } + }, + "377": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.__l1_default__" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 20, + "end_line": 68, + "input_file": { + "filename": "src/utils/proxy.cairo" + }, + "parent_location": [ + { + "end_col": 30, + "end_line": 71, + "input_file": { + "filename": "src/utils/proxy.cairo" + }, + "start_col": 20, + "start_line": 71 + }, + "While expanding the reference 'class_hash' in:" + ], + "start_col": 10, + "start_line": 68 + } + }, + "378": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.__l1_default__" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 19, + "end_line": 66, + "input_file": { + "filename": "src/utils/proxy.cairo" + }, + "parent_location": [ + { + "end_col": 35, + "end_line": 72, + "input_file": { + "filename": "src/utils/proxy.cairo" + }, + "start_col": 27, + "start_line": 72 + }, + "While expanding the reference 'selector' in:" + ], + "start_col": 5, + "start_line": 66 + } + }, + "379": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.__l1_default__" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 40, + "end_line": 66, + "input_file": { + "filename": "src/utils/proxy.cairo" + }, + "parent_location": [ + { + "end_col": 36, + "end_line": 73, + "input_file": { + "filename": "src/utils/proxy.cairo" + }, + "start_col": 23, + "start_line": 73 + }, + "While expanding the reference 'calldata_size' in:" + ], + "start_col": 21, + "start_line": 66 + } + }, + "380": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.__l1_default__" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 57, + "end_line": 66, + "input_file": { + "filename": "src/utils/proxy.cairo" + }, + "parent_location": [ + { + "end_col": 26, + "end_line": 74, + "input_file": { + "filename": "src/utils/proxy.cairo" + }, + "start_col": 18, + "start_line": 74 + }, + "While expanding the reference 'calldata' in:" + ], + "start_col": 42, + "start_line": 66 + } + }, + "381": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.__l1_default__" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 6, + "end_line": 75, + "input_file": { + "filename": "src/utils/proxy.cairo" + }, + "start_col": 5, + "start_line": 70 + } + }, + "383": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.__l1_default__" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 48, + "end_line": 107, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/starkware/starknet/common/syscalls.cairo" + }, + "parent_location": [ + { + "end_col": 6, + "end_line": 75, + "input_file": { + "filename": "src/utils/proxy.cairo" + }, + "parent_location": [ + { + "end_col": 39, + "end_line": 65, + "input_file": { + "filename": "src/utils/proxy.cairo" + }, + "parent_location": [ + { + "end_col": 15, + "end_line": 76, + "input_file": { + "filename": "src/utils/proxy.cairo" + }, + "start_col": 5, + "start_line": 76 + }, + "While trying to retrieve the implicit argument 'syscall_ptr' in:" + ], + "start_col": 21, + "start_line": 65 + }, + "While expanding the reference 'syscall_ptr' in:" + ], + "start_col": 5, + "start_line": 70 + }, + "While trying to update the implicit return value 'syscall_ptr' in:" + ], + "start_col": 30, + "start_line": 107 + } + }, + "384": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.__l1_default__" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 80, + "end_line": 74, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/upgrades/library.cairo" + }, + "parent_location": [ + { + "end_col": 55, + "end_line": 68, + "input_file": { + "filename": "src/utils/proxy.cairo" + }, + "parent_location": [ + { + "end_col": 67, + "end_line": 65, + "input_file": { + "filename": "src/utils/proxy.cairo" + }, + "parent_location": [ + { + "end_col": 15, + "end_line": 76, + "input_file": { + "filename": "src/utils/proxy.cairo" + }, + "start_col": 5, + "start_line": 76 + }, + "While trying to retrieve the implicit argument 'pedersen_ptr' in:" + ], + "start_col": 41, + "start_line": 65 + }, + "While expanding the reference 'pedersen_ptr' in:" + ], + "start_col": 24, + "start_line": 68 + }, + "While trying to update the implicit return value 'pedersen_ptr' in:" + ], + "start_col": 54, + "start_line": 74 + } + }, + "385": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.__l1_default__" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 97, + "end_line": 74, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/upgrades/library.cairo" + }, + "parent_location": [ + { + "end_col": 55, + "end_line": 68, + "input_file": { + "filename": "src/utils/proxy.cairo" + }, + "parent_location": [ + { + "end_col": 84, + "end_line": 65, + "input_file": { + "filename": "src/utils/proxy.cairo" + }, + "parent_location": [ + { + "end_col": 15, + "end_line": 76, + "input_file": { + "filename": "src/utils/proxy.cairo" + }, + "start_col": 5, + "start_line": 76 + }, + "While trying to retrieve the implicit argument 'range_check_ptr' in:" + ], + "start_col": 69, + "start_line": 65 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 24, + "start_line": 68 + }, + "While trying to update the implicit return value 'range_check_ptr' in:" + ], + "start_col": 82, + "start_line": 74 + } + }, + "386": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.__l1_default__" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 15, + "end_line": 76, + "input_file": { + "filename": "src/utils/proxy.cairo" + }, + "start_col": 5, + "start_line": 76 + } + }, + "387": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.__l1_default__" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 64, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/__l1_default__/b2c52ca2d2a8fc8791a983086d8716c5eacd0c3d62934914d2286f84b98ff4cb.cairo" + }, + "parent_location": [ + { + "end_col": 39, + "end_line": 65, + "input_file": { + "filename": "src/utils/proxy.cairo" + }, + "parent_location": [ + { + "end_col": 55, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/__l1_default__/3a69c47091149a3803fd6768a1d0ff324fc3fd5dd88bf37077db49b57745357c.cairo" + }, + "parent_location": [ + { + "end_col": 20, + "end_line": 65, + "input_file": { + "filename": "src/utils/proxy.cairo" + }, + "start_col": 6, + "start_line": 65 + }, + "While constructing the external wrapper for:" + ], + "start_col": 44, + "start_line": 1 + }, + "While expanding the reference 'syscall_ptr' in:" + ], + "start_col": 21, + "start_line": 65 + }, + "While constructing the external wrapper for:" + ], + "start_col": 19, + "start_line": 1 + } + }, + "388": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.__l1_default__" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 110, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/__l1_default__/9684a85e93c782014ca14293edea4eb2502039a5a7b6538ecd39c56faaf12529.cairo" + }, + "parent_location": [ + { + "end_col": 67, + "end_line": 65, + "input_file": { + "filename": "src/utils/proxy.cairo" + }, + "parent_location": [ + { + "end_col": 82, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/__l1_default__/3a69c47091149a3803fd6768a1d0ff324fc3fd5dd88bf37077db49b57745357c.cairo" + }, + "parent_location": [ + { + "end_col": 20, + "end_line": 65, + "input_file": { + "filename": "src/utils/proxy.cairo" + }, + "start_col": 6, + "start_line": 65 + }, + "While constructing the external wrapper for:" + ], + "start_col": 70, + "start_line": 1 + }, + "While expanding the reference 'pedersen_ptr' in:" + ], + "start_col": 41, + "start_line": 65 + }, + "While constructing the external wrapper for:" + ], + "start_col": 20, + "start_line": 1 + } + }, + "389": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.__l1_default__" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 67, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/__l1_default__/741ea357d6336b0bed7bf0472425acd0311d543883b803388880e60a232040c7.cairo" + }, + "parent_location": [ + { + "end_col": 84, + "end_line": 65, + "input_file": { + "filename": "src/utils/proxy.cairo" + }, + "parent_location": [ + { + "end_col": 115, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/__l1_default__/3a69c47091149a3803fd6768a1d0ff324fc3fd5dd88bf37077db49b57745357c.cairo" + }, + "parent_location": [ + { + "end_col": 20, + "end_line": 65, + "input_file": { + "filename": "src/utils/proxy.cairo" + }, + "start_col": 6, + "start_line": 65 + }, + "While constructing the external wrapper for:" + ], + "start_col": 100, + "start_line": 1 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 69, + "start_line": 65 + }, + "While constructing the external wrapper for:" + ], + "start_col": 23, + "start_line": 1 + } + }, + "390": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.__l1_default__" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 150, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/__l1_default__/3a69c47091149a3803fd6768a1d0ff324fc3fd5dd88bf37077db49b57745357c.cairo" + }, + "parent_location": [ + { + "end_col": 20, + "end_line": 65, + "input_file": { + "filename": "src/utils/proxy.cairo" + }, + "start_col": 6, + "start_line": 65 + }, + "While constructing the external wrapper for:" + ], + "start_col": 126, + "start_line": 1 + } + }, + "391": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.__l1_default__" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 190, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/__l1_default__/3a69c47091149a3803fd6768a1d0ff324fc3fd5dd88bf37077db49b57745357c.cairo" + }, + "parent_location": [ + { + "end_col": 20, + "end_line": 65, + "input_file": { + "filename": "src/utils/proxy.cairo" + }, + "start_col": 6, + "start_line": 65 + }, + "While constructing the external wrapper for:" + ], + "start_col": 166, + "start_line": 1 + } + }, + "392": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.__l1_default__" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 226, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/__l1_default__/3a69c47091149a3803fd6768a1d0ff324fc3fd5dd88bf37077db49b57745357c.cairo" + }, + "parent_location": [ + { + "end_col": 20, + "end_line": 65, + "input_file": { + "filename": "src/utils/proxy.cairo" + }, + "start_col": 6, + "start_line": 65 + }, + "While constructing the external wrapper for:" + ], + "start_col": 201, + "start_line": 1 + } + }, + "393": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.__l1_default__" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 20, + "end_line": 65, + "input_file": { + "filename": "src/utils/proxy.cairo" + }, + "start_col": 6, + "start_line": 65 + } + }, + "395": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.__l1_default__" + ], + "flow_tracking_data": null, + "hints": [ + { + "location": { + "end_col": 34, + "end_line": 2, + "input_file": { + "filename": "autogen/starknet/external/__l1_default__/3a69c47091149a3803fd6768a1d0ff324fc3fd5dd88bf37077db49b57745357c.cairo" + }, + "parent_location": [ + { + "end_col": 20, + "end_line": 65, + "input_file": { + "filename": "src/utils/proxy.cairo" + }, + "start_col": 6, + "start_line": 65 + }, + "While constructing the external wrapper for:" + ], + "start_col": 1, + "start_line": 2 + }, + "n_prefix_newlines": 0 + } + ], + "inst": { + "end_col": 24, + "end_line": 3, + "input_file": { + "filename": "autogen/starknet/external/__l1_default__/3a69c47091149a3803fd6768a1d0ff324fc3fd5dd88bf37077db49b57745357c.cairo" + }, + "parent_location": [ + { + "end_col": 20, + "end_line": 65, + "input_file": { + "filename": "src/utils/proxy.cairo" + }, + "start_col": 6, + "start_line": 65 + }, + "While constructing the external wrapper for:" + ], + "start_col": 1, + "start_line": 3 + } + }, + "397": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.__l1_default__" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 55, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/__l1_default__/3a69c47091149a3803fd6768a1d0ff324fc3fd5dd88bf37077db49b57745357c.cairo" + }, + "parent_location": [ + { + "end_col": 20, + "end_line": 65, + "input_file": { + "filename": "src/utils/proxy.cairo" + }, + "parent_location": [ + { + "end_col": 20, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/__l1_default__/da17921a4e81c09e730800bbf23bfdbe5e9e6bfaedc59d80fbf62087fa43c27d.cairo" + }, + "parent_location": [ + { + "end_col": 20, + "end_line": 65, + "input_file": { + "filename": "src/utils/proxy.cairo" + }, + "start_col": 6, + "start_line": 65 + }, + "While constructing the external wrapper for:" + ], + "start_col": 9, + "start_line": 1 + }, + "While expanding the reference 'syscall_ptr' in:" + ], + "start_col": 6, + "start_line": 65 + }, + "While constructing the external wrapper for:" + ], + "start_col": 44, + "start_line": 1 + } + }, + "398": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.__l1_default__" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 82, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/__l1_default__/3a69c47091149a3803fd6768a1d0ff324fc3fd5dd88bf37077db49b57745357c.cairo" + }, + "parent_location": [ + { + "end_col": 20, + "end_line": 65, + "input_file": { + "filename": "src/utils/proxy.cairo" + }, + "parent_location": [ + { + "end_col": 33, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/__l1_default__/da17921a4e81c09e730800bbf23bfdbe5e9e6bfaedc59d80fbf62087fa43c27d.cairo" + }, + "parent_location": [ + { + "end_col": 20, + "end_line": 65, + "input_file": { + "filename": "src/utils/proxy.cairo" + }, + "start_col": 6, + "start_line": 65 + }, + "While constructing the external wrapper for:" + ], + "start_col": 21, + "start_line": 1 + }, + "While expanding the reference 'pedersen_ptr' in:" + ], + "start_col": 6, + "start_line": 65 + }, + "While constructing the external wrapper for:" + ], + "start_col": 70, + "start_line": 1 + } + }, + "399": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.__l1_default__" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 115, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/__l1_default__/3a69c47091149a3803fd6768a1d0ff324fc3fd5dd88bf37077db49b57745357c.cairo" + }, + "parent_location": [ + { + "end_col": 20, + "end_line": 65, + "input_file": { + "filename": "src/utils/proxy.cairo" + }, + "parent_location": [ + { + "end_col": 49, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/__l1_default__/da17921a4e81c09e730800bbf23bfdbe5e9e6bfaedc59d80fbf62087fa43c27d.cairo" + }, + "parent_location": [ + { + "end_col": 20, + "end_line": 65, + "input_file": { + "filename": "src/utils/proxy.cairo" + }, + "start_col": 6, + "start_line": 65 + }, + "While constructing the external wrapper for:" + ], + "start_col": 34, + "start_line": 1 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 6, + "start_line": 65 + }, + "While constructing the external wrapper for:" + ], + "start_col": 100, + "start_line": 1 + } + }, + "400": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.__l1_default__" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 21, + "end_line": 4, + "input_file": { + "filename": "autogen/starknet/external/__l1_default__/3a69c47091149a3803fd6768a1d0ff324fc3fd5dd88bf37077db49b57745357c.cairo" + }, + "parent_location": [ + { + "end_col": 20, + "end_line": 65, + "input_file": { + "filename": "src/utils/proxy.cairo" + }, + "parent_location": [ + { + "end_col": 62, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/__l1_default__/da17921a4e81c09e730800bbf23bfdbe5e9e6bfaedc59d80fbf62087fa43c27d.cairo" + }, + "parent_location": [ + { + "end_col": 20, + "end_line": 65, + "input_file": { + "filename": "src/utils/proxy.cairo" + }, + "start_col": 6, + "start_line": 65 + }, + "While constructing the external wrapper for:" + ], + "start_col": 50, + "start_line": 1 + }, + "While expanding the reference 'retdata_size' in:" + ], + "start_col": 6, + "start_line": 65 + }, + "While constructing the external wrapper for:" + ], + "start_col": 20, + "start_line": 4 + } + }, + "402": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.__l1_default__" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 16, + "end_line": 3, + "input_file": { + "filename": "autogen/starknet/external/__l1_default__/3a69c47091149a3803fd6768a1d0ff324fc3fd5dd88bf37077db49b57745357c.cairo" + }, + "parent_location": [ + { + "end_col": 20, + "end_line": 65, + "input_file": { + "filename": "src/utils/proxy.cairo" + }, + "parent_location": [ + { + "end_col": 70, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/__l1_default__/da17921a4e81c09e730800bbf23bfdbe5e9e6bfaedc59d80fbf62087fa43c27d.cairo" + }, + "parent_location": [ + { + "end_col": 20, + "end_line": 65, + "input_file": { + "filename": "src/utils/proxy.cairo" + }, + "start_col": 6, + "start_line": 65 + }, + "While constructing the external wrapper for:" + ], + "start_col": 63, + "start_line": 1 + }, + "While expanding the reference 'retdata' in:" + ], + "start_col": 6, + "start_line": 65 + }, + "While constructing the external wrapper for:" + ], + "start_col": 9, + "start_line": 3 + } + }, + "403": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.__l1_default__" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 72, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/__l1_default__/da17921a4e81c09e730800bbf23bfdbe5e9e6bfaedc59d80fbf62087fa43c27d.cairo" + }, + "parent_location": [ + { + "end_col": 20, + "end_line": 65, + "input_file": { + "filename": "src/utils/proxy.cairo" + }, + "start_col": 6, + "start_line": 65 + }, + "While constructing the external wrapper for:" + ], + "start_col": 1, + "start_line": 1 + } + }, + "404": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.get_implementation_hash" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 48, + "end_line": 80, + "input_file": { + "filename": "src/utils/proxy.cairo" + }, + "parent_location": [ + { + "end_col": 52, + "end_line": 74, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/upgrades/library.cairo" + }, + "parent_location": [ + { + "end_col": 55, + "end_line": 83, + "input_file": { + "filename": "src/utils/proxy.cairo" + }, + "start_col": 24, + "start_line": 83 + }, + "While trying to retrieve the implicit argument 'syscall_ptr' in:" + ], + "start_col": 34, + "start_line": 74 + }, + "While expanding the reference 'syscall_ptr' in:" + ], + "start_col": 30, + "start_line": 80 + } + }, + "405": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.get_implementation_hash" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 76, + "end_line": 80, + "input_file": { + "filename": "src/utils/proxy.cairo" + }, + "parent_location": [ + { + "end_col": 80, + "end_line": 74, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/upgrades/library.cairo" + }, + "parent_location": [ + { + "end_col": 55, + "end_line": 83, + "input_file": { + "filename": "src/utils/proxy.cairo" + }, + "start_col": 24, + "start_line": 83 + }, + "While trying to retrieve the implicit argument 'pedersen_ptr' in:" + ], + "start_col": 54, + "start_line": 74 + }, + "While expanding the reference 'pedersen_ptr' in:" + ], + "start_col": 50, + "start_line": 80 + } + }, + "406": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.get_implementation_hash" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 93, + "end_line": 80, + "input_file": { + "filename": "src/utils/proxy.cairo" + }, + "parent_location": [ + { + "end_col": 97, + "end_line": 74, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/upgrades/library.cairo" + }, + "parent_location": [ + { + "end_col": 55, + "end_line": 83, + "input_file": { + "filename": "src/utils/proxy.cairo" + }, + "start_col": 24, + "start_line": 83 + }, + "While trying to retrieve the implicit argument 'range_check_ptr' in:" + ], + "start_col": 82, + "start_line": 74 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 78, + "start_line": 80 + } + }, + "407": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.get_implementation_hash" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 55, + "end_line": 83, + "input_file": { + "filename": "src/utils/proxy.cairo" + }, + "start_col": 24, + "start_line": 83 + } + }, + "409": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.get_implementation_hash" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 36, + "end_line": 84, + "input_file": { + "filename": "src/utils/proxy.cairo" + }, + "start_col": 5, + "start_line": 84 + } + }, + "410": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.get_implementation_hash_encode_return" + ], + "flow_tracking_data": null, + "hints": [ + { + "location": { + "end_col": 38, + "end_line": 3, + "input_file": { + "filename": "autogen/starknet/external/return/get_implementation_hash/0cddee7ff6a1a85d58b0d111d66ddbe9f647369acbda388d9de2599ddee9feff.cairo" + }, + "parent_location": [ + { + "end_col": 29, + "end_line": 80, + "input_file": { + "filename": "src/utils/proxy.cairo" + }, + "start_col": 6, + "start_line": 80 + }, + "While handling return value of" + ], + "start_col": 5, + "start_line": 3 + }, + "n_prefix_newlines": 0 + } + ], + "inst": { + "end_col": 18, + "end_line": 4, + "input_file": { + "filename": "autogen/starknet/external/return/get_implementation_hash/0cddee7ff6a1a85d58b0d111d66ddbe9f647369acbda388d9de2599ddee9feff.cairo" + }, + "parent_location": [ + { + "end_col": 29, + "end_line": 80, + "input_file": { + "filename": "src/utils/proxy.cairo" + }, + "start_col": 6, + "start_line": 80 + }, + "While handling return value of" + ], + "start_col": 5, + "start_line": 4 + } + }, + "412": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.get_implementation_hash_encode_return" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 52, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/arg_processor/34daa67a71080d8fd9f43eba24edcda1398bd08222cccf4a6b905a714e6e9afa.cairo" + }, + "parent_location": [ + { + "end_col": 21, + "end_line": 81, + "input_file": { + "filename": "src/utils/proxy.cairo" + }, + "start_col": 5, + "start_line": 81 + }, + "While handling return value 'class_hash'" + ], + "start_col": 1, + "start_line": 1 + } + }, + "413": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.get_implementation_hash_encode_return" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 48, + "end_line": 2, + "input_file": { + "filename": "autogen/starknet/arg_processor/34daa67a71080d8fd9f43eba24edcda1398bd08222cccf4a6b905a714e6e9afa.cairo" + }, + "parent_location": [ + { + "end_col": 21, + "end_line": 81, + "input_file": { + "filename": "src/utils/proxy.cairo" + }, + "parent_location": [ + { + "end_col": 36, + "end_line": 11, + "input_file": { + "filename": "autogen/starknet/external/return/get_implementation_hash/0cddee7ff6a1a85d58b0d111d66ddbe9f647369acbda388d9de2599ddee9feff.cairo" + }, + "parent_location": [ + { + "end_col": 29, + "end_line": 80, + "input_file": { + "filename": "src/utils/proxy.cairo" + }, + "start_col": 6, + "start_line": 80 + }, + "While handling return value of" + ], + "start_col": 18, + "start_line": 11 + }, + "While expanding the reference '__return_value_ptr' in:" + ], + "start_col": 5, + "start_line": 81 + }, + "While handling return value 'class_hash'" + ], + "start_col": 26, + "start_line": 2 + } + }, + "415": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.get_implementation_hash_encode_return" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 90, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/return/get_implementation_hash/0cddee7ff6a1a85d58b0d111d66ddbe9f647369acbda388d9de2599ddee9feff.cairo" + }, + "parent_location": [ + { + "end_col": 29, + "end_line": 80, + "input_file": { + "filename": "src/utils/proxy.cairo" + }, + "parent_location": [ + { + "end_col": 40, + "end_line": 10, + "input_file": { + "filename": "autogen/starknet/external/return/get_implementation_hash/0cddee7ff6a1a85d58b0d111d66ddbe9f647369acbda388d9de2599ddee9feff.cairo" + }, + "parent_location": [ + { + "end_col": 29, + "end_line": 80, + "input_file": { + "filename": "src/utils/proxy.cairo" + }, + "start_col": 6, + "start_line": 80 + }, + "While handling return value of" + ], + "start_col": 25, + "start_line": 10 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 6, + "start_line": 80 + }, + "While handling return value of" + ], + "start_col": 75, + "start_line": 1 + } + }, + "416": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.get_implementation_hash_encode_return" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 63, + "end_line": 11, + "input_file": { + "filename": "autogen/starknet/external/return/get_implementation_hash/0cddee7ff6a1a85d58b0d111d66ddbe9f647369acbda388d9de2599ddee9feff.cairo" + }, + "parent_location": [ + { + "end_col": 29, + "end_line": 80, + "input_file": { + "filename": "src/utils/proxy.cairo" + }, + "start_col": 6, + "start_line": 80 + }, + "While handling return value of" + ], + "start_col": 18, + "start_line": 11 + } + }, + "417": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.get_implementation_hash_encode_return" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 35, + "end_line": 5, + "input_file": { + "filename": "autogen/starknet/external/return/get_implementation_hash/0cddee7ff6a1a85d58b0d111d66ddbe9f647369acbda388d9de2599ddee9feff.cairo" + }, + "parent_location": [ + { + "end_col": 29, + "end_line": 80, + "input_file": { + "filename": "src/utils/proxy.cairo" + }, + "parent_location": [ + { + "end_col": 38, + "end_line": 12, + "input_file": { + "filename": "autogen/starknet/external/return/get_implementation_hash/0cddee7ff6a1a85d58b0d111d66ddbe9f647369acbda388d9de2599ddee9feff.cairo" + }, + "parent_location": [ + { + "end_col": 29, + "end_line": 80, + "input_file": { + "filename": "src/utils/proxy.cairo" + }, + "start_col": 6, + "start_line": 80 + }, + "While handling return value of" + ], + "start_col": 14, + "start_line": 12 + }, + "While expanding the reference '__return_value_ptr_start' in:" + ], + "start_col": 6, + "start_line": 80 + }, + "While handling return value of" + ], + "start_col": 11, + "start_line": 5 + } + }, + "418": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.get_implementation_hash_encode_return" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 40, + "end_line": 12, + "input_file": { + "filename": "autogen/starknet/external/return/get_implementation_hash/0cddee7ff6a1a85d58b0d111d66ddbe9f647369acbda388d9de2599ddee9feff.cairo" + }, + "parent_location": [ + { + "end_col": 29, + "end_line": 80, + "input_file": { + "filename": "src/utils/proxy.cairo" + }, + "start_col": 6, + "start_line": 80 + }, + "While handling return value of" + ], + "start_col": 5, + "start_line": 9 + } + }, + "419": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.get_implementation_hash" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 58, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/arg_processor/01cba52f8515996bb9d7070bde81ff39281d096d7024a558efcba6e1fd2402cf.cairo" + }, + "parent_location": [ + { + "end_col": 29, + "end_line": 80, + "input_file": { + "filename": "src/utils/proxy.cairo" + }, + "start_col": 6, + "start_line": 80 + }, + "While handling calldata of" + ], + "start_col": 1, + "start_line": 1 + } + }, + "420": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.get_implementation_hash" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 64, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/get_implementation_hash/b2c52ca2d2a8fc8791a983086d8716c5eacd0c3d62934914d2286f84b98ff4cb.cairo" + }, + "parent_location": [ + { + "end_col": 48, + "end_line": 80, + "input_file": { + "filename": "src/utils/proxy.cairo" + }, + "parent_location": [ + { + "end_col": 55, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/get_implementation_hash/8e6af712eb2d55b31152ae8d0e9d45fa59efd85e61cbd269d4a00bfc7cfab13d.cairo" + }, + "parent_location": [ + { + "end_col": 29, + "end_line": 80, + "input_file": { + "filename": "src/utils/proxy.cairo" + }, + "start_col": 6, + "start_line": 80 + }, + "While constructing the external wrapper for:" + ], + "start_col": 44, + "start_line": 1 + }, + "While expanding the reference 'syscall_ptr' in:" + ], + "start_col": 30, + "start_line": 80 + }, + "While constructing the external wrapper for:" + ], + "start_col": 19, + "start_line": 1 + } + }, + "421": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.get_implementation_hash" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 110, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/get_implementation_hash/9684a85e93c782014ca14293edea4eb2502039a5a7b6538ecd39c56faaf12529.cairo" + }, + "parent_location": [ + { + "end_col": 76, + "end_line": 80, + "input_file": { + "filename": "src/utils/proxy.cairo" + }, + "parent_location": [ + { + "end_col": 82, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/get_implementation_hash/8e6af712eb2d55b31152ae8d0e9d45fa59efd85e61cbd269d4a00bfc7cfab13d.cairo" + }, + "parent_location": [ + { + "end_col": 29, + "end_line": 80, + "input_file": { + "filename": "src/utils/proxy.cairo" + }, + "start_col": 6, + "start_line": 80 + }, + "While constructing the external wrapper for:" + ], + "start_col": 70, + "start_line": 1 + }, + "While expanding the reference 'pedersen_ptr' in:" + ], + "start_col": 50, + "start_line": 80 + }, + "While constructing the external wrapper for:" + ], + "start_col": 20, + "start_line": 1 + } + }, + "422": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.get_implementation_hash" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 67, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/get_implementation_hash/741ea357d6336b0bed7bf0472425acd0311d543883b803388880e60a232040c7.cairo" + }, + "parent_location": [ + { + "end_col": 93, + "end_line": 80, + "input_file": { + "filename": "src/utils/proxy.cairo" + }, + "parent_location": [ + { + "end_col": 115, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/get_implementation_hash/8e6af712eb2d55b31152ae8d0e9d45fa59efd85e61cbd269d4a00bfc7cfab13d.cairo" + }, + "parent_location": [ + { + "end_col": 29, + "end_line": 80, + "input_file": { + "filename": "src/utils/proxy.cairo" + }, + "start_col": 6, + "start_line": 80 + }, + "While constructing the external wrapper for:" + ], + "start_col": 100, + "start_line": 1 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 78, + "start_line": 80 + }, + "While constructing the external wrapper for:" + ], + "start_col": 23, + "start_line": 1 + } + }, + "423": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.get_implementation_hash" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 29, + "end_line": 80, + "input_file": { + "filename": "src/utils/proxy.cairo" + }, + "start_col": 6, + "start_line": 80 + } + }, + "425": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.get_implementation_hash" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 115, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/get_implementation_hash/8e6af712eb2d55b31152ae8d0e9d45fa59efd85e61cbd269d4a00bfc7cfab13d.cairo" + }, + "parent_location": [ + { + "end_col": 29, + "end_line": 80, + "input_file": { + "filename": "src/utils/proxy.cairo" + }, + "parent_location": [ + { + "end_col": 112, + "end_line": 2, + "input_file": { + "filename": "autogen/starknet/external/get_implementation_hash/8e6af712eb2d55b31152ae8d0e9d45fa59efd85e61cbd269d4a00bfc7cfab13d.cairo" + }, + "parent_location": [ + { + "end_col": 29, + "end_line": 80, + "input_file": { + "filename": "src/utils/proxy.cairo" + }, + "start_col": 6, + "start_line": 80 + }, + "While constructing the external wrapper for:" + ], + "start_col": 97, + "start_line": 2 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 6, + "start_line": 80 + }, + "While constructing the external wrapper for:" + ], + "start_col": 100, + "start_line": 1 + } + }, + "426": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.get_implementation_hash" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 113, + "end_line": 2, + "input_file": { + "filename": "autogen/starknet/external/get_implementation_hash/8e6af712eb2d55b31152ae8d0e9d45fa59efd85e61cbd269d4a00bfc7cfab13d.cairo" + }, + "parent_location": [ + { + "end_col": 29, + "end_line": 80, + "input_file": { + "filename": "src/utils/proxy.cairo" + }, + "start_col": 6, + "start_line": 80 + }, + "While constructing the external wrapper for:" + ], + "start_col": 48, + "start_line": 2 + } + }, + "428": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.get_implementation_hash" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 55, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/get_implementation_hash/8e6af712eb2d55b31152ae8d0e9d45fa59efd85e61cbd269d4a00bfc7cfab13d.cairo" + }, + "parent_location": [ + { + "end_col": 29, + "end_line": 80, + "input_file": { + "filename": "src/utils/proxy.cairo" + }, + "parent_location": [ + { + "end_col": 20, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/get_implementation_hash/da17921a4e81c09e730800bbf23bfdbe5e9e6bfaedc59d80fbf62087fa43c27d.cairo" + }, + "parent_location": [ + { + "end_col": 29, + "end_line": 80, + "input_file": { + "filename": "src/utils/proxy.cairo" + }, + "start_col": 6, + "start_line": 80 + }, + "While constructing the external wrapper for:" + ], + "start_col": 9, + "start_line": 1 + }, + "While expanding the reference 'syscall_ptr' in:" + ], + "start_col": 6, + "start_line": 80 + }, + "While constructing the external wrapper for:" + ], + "start_col": 44, + "start_line": 1 + } + }, + "429": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.get_implementation_hash" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 82, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/get_implementation_hash/8e6af712eb2d55b31152ae8d0e9d45fa59efd85e61cbd269d4a00bfc7cfab13d.cairo" + }, + "parent_location": [ + { + "end_col": 29, + "end_line": 80, + "input_file": { + "filename": "src/utils/proxy.cairo" + }, + "parent_location": [ + { + "end_col": 33, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/get_implementation_hash/da17921a4e81c09e730800bbf23bfdbe5e9e6bfaedc59d80fbf62087fa43c27d.cairo" + }, + "parent_location": [ + { + "end_col": 29, + "end_line": 80, + "input_file": { + "filename": "src/utils/proxy.cairo" + }, + "start_col": 6, + "start_line": 80 + }, + "While constructing the external wrapper for:" + ], + "start_col": 21, + "start_line": 1 + }, + "While expanding the reference 'pedersen_ptr' in:" + ], + "start_col": 6, + "start_line": 80 + }, + "While constructing the external wrapper for:" + ], + "start_col": 70, + "start_line": 1 + } + }, + "430": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.get_implementation_hash" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 21, + "end_line": 2, + "input_file": { + "filename": "autogen/starknet/external/get_implementation_hash/8e6af712eb2d55b31152ae8d0e9d45fa59efd85e61cbd269d4a00bfc7cfab13d.cairo" + }, + "parent_location": [ + { + "end_col": 29, + "end_line": 80, + "input_file": { + "filename": "src/utils/proxy.cairo" + }, + "parent_location": [ + { + "end_col": 49, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/get_implementation_hash/da17921a4e81c09e730800bbf23bfdbe5e9e6bfaedc59d80fbf62087fa43c27d.cairo" + }, + "parent_location": [ + { + "end_col": 29, + "end_line": 80, + "input_file": { + "filename": "src/utils/proxy.cairo" + }, + "start_col": 6, + "start_line": 80 + }, + "While constructing the external wrapper for:" + ], + "start_col": 34, + "start_line": 1 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 6, + "start_line": 80 + }, + "While constructing the external wrapper for:" + ], + "start_col": 6, + "start_line": 2 + } + }, + "431": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.get_implementation_hash" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 35, + "end_line": 2, + "input_file": { + "filename": "autogen/starknet/external/get_implementation_hash/8e6af712eb2d55b31152ae8d0e9d45fa59efd85e61cbd269d4a00bfc7cfab13d.cairo" + }, + "parent_location": [ + { + "end_col": 29, + "end_line": 80, + "input_file": { + "filename": "src/utils/proxy.cairo" + }, + "parent_location": [ + { + "end_col": 62, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/get_implementation_hash/da17921a4e81c09e730800bbf23bfdbe5e9e6bfaedc59d80fbf62087fa43c27d.cairo" + }, + "parent_location": [ + { + "end_col": 29, + "end_line": 80, + "input_file": { + "filename": "src/utils/proxy.cairo" + }, + "start_col": 6, + "start_line": 80 + }, + "While constructing the external wrapper for:" + ], + "start_col": 50, + "start_line": 1 + }, + "While expanding the reference 'retdata_size' in:" + ], + "start_col": 6, + "start_line": 80 + }, + "While constructing the external wrapper for:" + ], + "start_col": 23, + "start_line": 2 + } + }, + "432": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.get_implementation_hash" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 44, + "end_line": 2, + "input_file": { + "filename": "autogen/starknet/external/get_implementation_hash/8e6af712eb2d55b31152ae8d0e9d45fa59efd85e61cbd269d4a00bfc7cfab13d.cairo" + }, + "parent_location": [ + { + "end_col": 29, + "end_line": 80, + "input_file": { + "filename": "src/utils/proxy.cairo" + }, + "parent_location": [ + { + "end_col": 70, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/get_implementation_hash/da17921a4e81c09e730800bbf23bfdbe5e9e6bfaedc59d80fbf62087fa43c27d.cairo" + }, + "parent_location": [ + { + "end_col": 29, + "end_line": 80, + "input_file": { + "filename": "src/utils/proxy.cairo" + }, + "start_col": 6, + "start_line": 80 + }, + "While constructing the external wrapper for:" + ], + "start_col": 63, + "start_line": 1 + }, + "While expanding the reference 'retdata' in:" + ], + "start_col": 6, + "start_line": 80 + }, + "While constructing the external wrapper for:" + ], + "start_col": 37, + "start_line": 2 + } + }, + "433": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.get_implementation_hash" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 72, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/get_implementation_hash/da17921a4e81c09e730800bbf23bfdbe5e9e6bfaedc59d80fbf62087fa43c27d.cairo" + }, + "parent_location": [ + { + "end_col": 29, + "end_line": 80, + "input_file": { + "filename": "src/utils/proxy.cairo" + }, + "start_col": 6, + "start_line": 80 + }, + "While constructing the external wrapper for:" + ], + "start_col": 1, + "start_line": 1 + } + }, + "434": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.set_implementation_hash" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 48, + "end_line": 88, + "input_file": { + "filename": "src/utils/proxy.cairo" + }, + "parent_location": [ + { + "end_col": 46, + "end_line": 61, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/upgrades/library.cairo" + }, + "parent_location": [ + { + "end_col": 30, + "end_line": 91, + "input_file": { + "filename": "src/utils/proxy.cairo" + }, + "start_col": 5, + "start_line": 91 + }, + "While trying to retrieve the implicit argument 'syscall_ptr' in:" + ], + "start_col": 28, + "start_line": 61 + }, + "While expanding the reference 'syscall_ptr' in:" + ], + "start_col": 30, + "start_line": 88 + } + }, + "435": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.set_implementation_hash" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 76, + "end_line": 88, + "input_file": { + "filename": "src/utils/proxy.cairo" + }, + "parent_location": [ + { + "end_col": 74, + "end_line": 61, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/upgrades/library.cairo" + }, + "parent_location": [ + { + "end_col": 30, + "end_line": 91, + "input_file": { + "filename": "src/utils/proxy.cairo" + }, + "start_col": 5, + "start_line": 91 + }, + "While trying to retrieve the implicit argument 'pedersen_ptr' in:" + ], + "start_col": 48, + "start_line": 61 + }, + "While expanding the reference 'pedersen_ptr' in:" + ], + "start_col": 50, + "start_line": 88 + } + }, + "436": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.set_implementation_hash" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 93, + "end_line": 88, + "input_file": { + "filename": "src/utils/proxy.cairo" + }, + "parent_location": [ + { + "end_col": 91, + "end_line": 61, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/starksheet/lib/python3.9/site-packages/openzeppelin/upgrades/library.cairo" + }, + "parent_location": [ + { + "end_col": 30, + "end_line": 91, + "input_file": { + "filename": "src/utils/proxy.cairo" + }, + "start_col": 5, + "start_line": 91 + }, + "While trying to retrieve the implicit argument 'range_check_ptr' in:" + ], + "start_col": 76, + "start_line": 61 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 78, + "start_line": 88 + } + }, + "437": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.set_implementation_hash" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 30, + "end_line": 91, + "input_file": { + "filename": "src/utils/proxy.cairo" + }, + "start_col": 5, + "start_line": 91 + } + }, + "439": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.set_implementation_hash" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 21, + "end_line": 89, + "input_file": { + "filename": "src/utils/proxy.cairo" + }, + "parent_location": [ + { + "end_col": 46, + "end_line": 92, + "input_file": { + "filename": "src/utils/proxy.cairo" + }, + "start_col": 36, + "start_line": 92 + }, + "While expanding the reference 'class_hash' in:" + ], + "start_col": 5, + "start_line": 89 + } + }, + "440": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.set_implementation_hash" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 47, + "end_line": 92, + "input_file": { + "filename": "src/utils/proxy.cairo" + }, + "start_col": 5, + "start_line": 92 + } + }, + "442": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.set_implementation_hash" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 15, + "end_line": 93, + "input_file": { + "filename": "src/utils/proxy.cairo" + }, + "start_col": 5, + "start_line": 93 + } + }, + "443": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.set_implementation_hash" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 40, + "end_line": 2, + "input_file": { + "filename": "autogen/starknet/arg_processor/6a5e642bec1f7526308a73478077ef051a66625a56a9015e448ad8b892166ca8.cairo" + }, + "parent_location": [ + { + "end_col": 21, + "end_line": 89, + "input_file": { + "filename": "src/utils/proxy.cairo" + }, + "parent_location": [ + { + "end_col": 45, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/arg_processor/c31620b02d4d706f0542c989b2aadc01b0981d1f6a5933a8fe4937ace3d70d92.cairo" + }, + "parent_location": [ + { + "end_col": 29, + "end_line": 88, + "input_file": { + "filename": "src/utils/proxy.cairo" + }, + "parent_location": [ + { + "end_col": 57, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/arg_processor/01cba52f8515996bb9d7070bde81ff39281d096d7024a558efcba6e1fd2402cf.cairo" + }, + "parent_location": [ + { + "end_col": 29, + "end_line": 88, + "input_file": { + "filename": "src/utils/proxy.cairo" + }, + "start_col": 6, + "start_line": 88 + }, + "While handling calldata of" + ], + "start_col": 35, + "start_line": 1 + }, + "While expanding the reference '__calldata_actual_size' in:" + ], + "start_col": 6, + "start_line": 88 + }, + "While handling calldata of" + ], + "start_col": 31, + "start_line": 1 + }, + "While expanding the reference '__calldata_ptr' in:" + ], + "start_col": 5, + "start_line": 89 + }, + "While handling calldata argument 'class_hash'" + ], + "start_col": 22, + "start_line": 2 + } + }, + "445": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.set_implementation_hash" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 58, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/arg_processor/01cba52f8515996bb9d7070bde81ff39281d096d7024a558efcba6e1fd2402cf.cairo" + }, + "parent_location": [ + { + "end_col": 29, + "end_line": 88, + "input_file": { + "filename": "src/utils/proxy.cairo" + }, + "start_col": 6, + "start_line": 88 + }, + "While handling calldata of" + ], + "start_col": 1, + "start_line": 1 + } + }, + "446": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.set_implementation_hash" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 64, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/set_implementation_hash/b2c52ca2d2a8fc8791a983086d8716c5eacd0c3d62934914d2286f84b98ff4cb.cairo" + }, + "parent_location": [ + { + "end_col": 48, + "end_line": 88, + "input_file": { + "filename": "src/utils/proxy.cairo" + }, + "parent_location": [ + { + "end_col": 55, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/set_implementation_hash/eedf6b4a90e176edbee387bcb2f48c00e957556d2a843e7a72a612c8f792df2a.cairo" + }, + "parent_location": [ + { + "end_col": 29, + "end_line": 88, + "input_file": { + "filename": "src/utils/proxy.cairo" + }, + "start_col": 6, + "start_line": 88 + }, + "While constructing the external wrapper for:" + ], + "start_col": 44, + "start_line": 1 + }, + "While expanding the reference 'syscall_ptr' in:" + ], + "start_col": 30, + "start_line": 88 + }, + "While constructing the external wrapper for:" + ], + "start_col": 19, + "start_line": 1 + } + }, + "447": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.set_implementation_hash" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 110, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/set_implementation_hash/9684a85e93c782014ca14293edea4eb2502039a5a7b6538ecd39c56faaf12529.cairo" + }, + "parent_location": [ + { + "end_col": 76, + "end_line": 88, + "input_file": { + "filename": "src/utils/proxy.cairo" + }, + "parent_location": [ + { + "end_col": 82, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/set_implementation_hash/eedf6b4a90e176edbee387bcb2f48c00e957556d2a843e7a72a612c8f792df2a.cairo" + }, + "parent_location": [ + { + "end_col": 29, + "end_line": 88, + "input_file": { + "filename": "src/utils/proxy.cairo" + }, + "start_col": 6, + "start_line": 88 + }, + "While constructing the external wrapper for:" + ], + "start_col": 70, + "start_line": 1 + }, + "While expanding the reference 'pedersen_ptr' in:" + ], + "start_col": 50, + "start_line": 88 + }, + "While constructing the external wrapper for:" + ], + "start_col": 20, + "start_line": 1 + } + }, + "448": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.set_implementation_hash" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 67, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/set_implementation_hash/741ea357d6336b0bed7bf0472425acd0311d543883b803388880e60a232040c7.cairo" + }, + "parent_location": [ + { + "end_col": 93, + "end_line": 88, + "input_file": { + "filename": "src/utils/proxy.cairo" + }, + "parent_location": [ + { + "end_col": 115, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/set_implementation_hash/eedf6b4a90e176edbee387bcb2f48c00e957556d2a843e7a72a612c8f792df2a.cairo" + }, + "parent_location": [ + { + "end_col": 29, + "end_line": 88, + "input_file": { + "filename": "src/utils/proxy.cairo" + }, + "start_col": 6, + "start_line": 88 + }, + "While constructing the external wrapper for:" + ], + "start_col": 100, + "start_line": 1 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 78, + "start_line": 88 + }, + "While constructing the external wrapper for:" + ], + "start_col": 23, + "start_line": 1 + } + }, + "449": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.set_implementation_hash" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 49, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/arg_processor/6a5e642bec1f7526308a73478077ef051a66625a56a9015e448ad8b892166ca8.cairo" + }, + "parent_location": [ + { + "end_col": 21, + "end_line": 89, + "input_file": { + "filename": "src/utils/proxy.cairo" + }, + "parent_location": [ + { + "end_col": 153, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/set_implementation_hash/eedf6b4a90e176edbee387bcb2f48c00e957556d2a843e7a72a612c8f792df2a.cairo" + }, + "parent_location": [ + { + "end_col": 29, + "end_line": 88, + "input_file": { + "filename": "src/utils/proxy.cairo" + }, + "start_col": 6, + "start_line": 88 + }, + "While constructing the external wrapper for:" + ], + "start_col": 128, + "start_line": 1 + }, + "While expanding the reference '__calldata_arg_class_hash' in:" + ], + "start_col": 5, + "start_line": 89 + }, + "While handling calldata argument 'class_hash'" + ], + "start_col": 33, + "start_line": 1 + } + }, + "450": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.set_implementation_hash" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 29, + "end_line": 88, + "input_file": { + "filename": "src/utils/proxy.cairo" + }, + "start_col": 6, + "start_line": 88 + } + }, + "452": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.set_implementation_hash" + ], + "flow_tracking_data": null, + "hints": [ + { + "location": { + "end_col": 34, + "end_line": 2, + "input_file": { + "filename": "autogen/starknet/external/set_implementation_hash/eedf6b4a90e176edbee387bcb2f48c00e957556d2a843e7a72a612c8f792df2a.cairo" + }, + "parent_location": [ + { + "end_col": 29, + "end_line": 88, + "input_file": { + "filename": "src/utils/proxy.cairo" + }, + "start_col": 6, + "start_line": 88 + }, + "While constructing the external wrapper for:" + ], + "start_col": 1, + "start_line": 2 + }, + "n_prefix_newlines": 0 + } + ], + "inst": { + "end_col": 24, + "end_line": 3, + "input_file": { + "filename": "autogen/starknet/external/set_implementation_hash/eedf6b4a90e176edbee387bcb2f48c00e957556d2a843e7a72a612c8f792df2a.cairo" + }, + "parent_location": [ + { + "end_col": 29, + "end_line": 88, + "input_file": { + "filename": "src/utils/proxy.cairo" + }, + "start_col": 6, + "start_line": 88 + }, + "While constructing the external wrapper for:" + ], + "start_col": 1, + "start_line": 3 + } + }, + "454": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.set_implementation_hash" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 55, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/set_implementation_hash/eedf6b4a90e176edbee387bcb2f48c00e957556d2a843e7a72a612c8f792df2a.cairo" + }, + "parent_location": [ + { + "end_col": 29, + "end_line": 88, + "input_file": { + "filename": "src/utils/proxy.cairo" + }, + "parent_location": [ + { + "end_col": 20, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/set_implementation_hash/da17921a4e81c09e730800bbf23bfdbe5e9e6bfaedc59d80fbf62087fa43c27d.cairo" + }, + "parent_location": [ + { + "end_col": 29, + "end_line": 88, + "input_file": { + "filename": "src/utils/proxy.cairo" + }, + "start_col": 6, + "start_line": 88 + }, + "While constructing the external wrapper for:" + ], + "start_col": 9, + "start_line": 1 + }, + "While expanding the reference 'syscall_ptr' in:" + ], + "start_col": 6, + "start_line": 88 + }, + "While constructing the external wrapper for:" + ], + "start_col": 44, + "start_line": 1 + } + }, + "455": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.set_implementation_hash" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 82, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/set_implementation_hash/eedf6b4a90e176edbee387bcb2f48c00e957556d2a843e7a72a612c8f792df2a.cairo" + }, + "parent_location": [ + { + "end_col": 29, + "end_line": 88, + "input_file": { + "filename": "src/utils/proxy.cairo" + }, + "parent_location": [ + { + "end_col": 33, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/set_implementation_hash/da17921a4e81c09e730800bbf23bfdbe5e9e6bfaedc59d80fbf62087fa43c27d.cairo" + }, + "parent_location": [ + { + "end_col": 29, + "end_line": 88, + "input_file": { + "filename": "src/utils/proxy.cairo" + }, + "start_col": 6, + "start_line": 88 + }, + "While constructing the external wrapper for:" + ], + "start_col": 21, + "start_line": 1 + }, + "While expanding the reference 'pedersen_ptr' in:" + ], + "start_col": 6, + "start_line": 88 + }, + "While constructing the external wrapper for:" + ], + "start_col": 70, + "start_line": 1 + } + }, + "456": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.set_implementation_hash" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 115, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/set_implementation_hash/eedf6b4a90e176edbee387bcb2f48c00e957556d2a843e7a72a612c8f792df2a.cairo" + }, + "parent_location": [ + { + "end_col": 29, + "end_line": 88, + "input_file": { + "filename": "src/utils/proxy.cairo" + }, + "parent_location": [ + { + "end_col": 49, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/set_implementation_hash/da17921a4e81c09e730800bbf23bfdbe5e9e6bfaedc59d80fbf62087fa43c27d.cairo" + }, + "parent_location": [ + { + "end_col": 29, + "end_line": 88, + "input_file": { + "filename": "src/utils/proxy.cairo" + }, + "start_col": 6, + "start_line": 88 + }, + "While constructing the external wrapper for:" + ], + "start_col": 34, + "start_line": 1 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 6, + "start_line": 88 + }, + "While constructing the external wrapper for:" + ], + "start_col": 100, + "start_line": 1 + } + }, + "457": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.set_implementation_hash" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 21, + "end_line": 4, + "input_file": { + "filename": "autogen/starknet/external/set_implementation_hash/eedf6b4a90e176edbee387bcb2f48c00e957556d2a843e7a72a612c8f792df2a.cairo" + }, + "parent_location": [ + { + "end_col": 29, + "end_line": 88, + "input_file": { + "filename": "src/utils/proxy.cairo" + }, + "parent_location": [ + { + "end_col": 62, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/set_implementation_hash/da17921a4e81c09e730800bbf23bfdbe5e9e6bfaedc59d80fbf62087fa43c27d.cairo" + }, + "parent_location": [ + { + "end_col": 29, + "end_line": 88, + "input_file": { + "filename": "src/utils/proxy.cairo" + }, + "start_col": 6, + "start_line": 88 + }, + "While constructing the external wrapper for:" + ], + "start_col": 50, + "start_line": 1 + }, + "While expanding the reference 'retdata_size' in:" + ], + "start_col": 6, + "start_line": 88 + }, + "While constructing the external wrapper for:" + ], + "start_col": 20, + "start_line": 4 + } + }, + "459": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.set_implementation_hash" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 16, + "end_line": 3, + "input_file": { + "filename": "autogen/starknet/external/set_implementation_hash/eedf6b4a90e176edbee387bcb2f48c00e957556d2a843e7a72a612c8f792df2a.cairo" + }, + "parent_location": [ + { + "end_col": 29, + "end_line": 88, + "input_file": { + "filename": "src/utils/proxy.cairo" + }, + "parent_location": [ + { + "end_col": 70, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/set_implementation_hash/da17921a4e81c09e730800bbf23bfdbe5e9e6bfaedc59d80fbf62087fa43c27d.cairo" + }, + "parent_location": [ + { + "end_col": 29, + "end_line": 88, + "input_file": { + "filename": "src/utils/proxy.cairo" + }, + "start_col": 6, + "start_line": 88 + }, + "While constructing the external wrapper for:" + ], + "start_col": 63, + "start_line": 1 + }, + "While expanding the reference 'retdata' in:" + ], + "start_col": 6, + "start_line": 88 + }, + "While constructing the external wrapper for:" + ], + "start_col": 9, + "start_line": 3 + } + }, + "460": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.set_implementation_hash" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 72, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/set_implementation_hash/da17921a4e81c09e730800bbf23bfdbe5e9e6bfaedc59d80fbf62087fa43c27d.cairo" + }, + "parent_location": [ + { + "end_col": 29, + "end_line": 88, + "input_file": { + "filename": "src/utils/proxy.cairo" + }, + "start_col": 6, + "start_line": 88 + }, + "While constructing the external wrapper for:" + ], + "start_col": 1, + "start_line": 1 + } + } + } + }, "hints": { "0": [ { diff --git a/packages/starksheet-cairo/build/proxy_abi.json b/packages/starksheet-cairo/build/proxy_abi.json deleted file mode 100644 index c516436c..00000000 --- a/packages/starksheet-cairo/build/proxy_abi.json +++ /dev/null @@ -1,125 +0,0 @@ -[ - { - "data": [ - { - "name": "implementation", - "type": "felt" - } - ], - "keys": [], - "name": "Upgraded", - "type": "event" - }, - { - "data": [ - { - "name": "previousAdmin", - "type": "felt" - }, - { - "name": "newAdmin", - "type": "felt" - } - ], - "keys": [], - "name": "AdminChanged", - "type": "event" - }, - { - "inputs": [ - { - "name": "proxy_admin", - "type": "felt" - }, - { - "name": "implementation_hash", - "type": "felt" - }, - { - "name": "selector", - "type": "felt" - }, - { - "name": "calldata_len", - "type": "felt" - }, - { - "name": "calldata", - "type": "felt*" - } - ], - "name": "constructor", - "outputs": [], - "type": "constructor" - }, - { - "inputs": [ - { - "name": "selector", - "type": "felt" - }, - { - "name": "calldata_size", - "type": "felt" - }, - { - "name": "calldata", - "type": "felt*" - } - ], - "name": "__default__", - "outputs": [ - { - "name": "retdata_size", - "type": "felt" - }, - { - "name": "retdata", - "type": "felt*" - } - ], - "type": "function" - }, - { - "inputs": [ - { - "name": "selector", - "type": "felt" - }, - { - "name": "calldata_size", - "type": "felt" - }, - { - "name": "calldata", - "type": "felt*" - } - ], - "name": "__l1_default__", - "outputs": [], - "type": "l1_handler" - }, - { - "inputs": [], - "name": "get_implementation_hash", - "outputs": [ - { - "name": "class_hash", - "type": "felt" - } - ], - "stateMutability": "view", - "type": "function" - }, - { - "inputs": [ - { - "name": "class_hash", - "type": "felt" - } - ], - "name": "set_implementation_hash", - "outputs": [], - "type": "function" - } -] diff --git a/packages/starksheet-cairo/deploy/starksheet.py b/packages/starksheet-cairo/deploy/starksheet.py deleted file mode 100644 index f200de83..00000000 --- a/packages/starksheet-cairo/deploy/starksheet.py +++ /dev/null @@ -1,95 +0,0 @@ -# %% Imports -import logging -from asyncio import run -from datetime import datetime - -from dotenv import load_dotenv -from utils.constants import COMPILED_CONTRACTS, NETWORK -from utils.deployment import ( - compile_contract, - declare, - deploy, - deploy_starknet_account, - dump_declarations, - dump_deployments, - get_account, - get_alias, - get_artifact, - get_declarations, - get_deployments, -) - -load_dotenv() -logging.basicConfig() -logger = logging.getLogger(__name__) -logger.setLevel(logging.INFO) - - -# %% Main -async def main(): - # %% Compile - logger.info(f"ℹ️ Compiling contracts for network {NETWORK['name']}") - initial_time = datetime.now() - for contract in COMPILED_CONTRACTS: - logger.info(f"⏳ Compiling {contract}") - start = datetime.now() - compile_contract(contract) - elapsed = datetime.now() - start - logger.info(f"✅ Compiled in {elapsed.total_seconds():.2f}s") - - logger.info( - f"✅ Compiled all in {(datetime.now() - initial_time).total_seconds():.2f}s" - ) - - # %% Declarations - if NETWORK["name"] in ["madara", "sharingan"]: - await deploy_starknet_account(amount=100) - account = await get_account() - logger.info(f"ℹ️ Using account {hex(account.address)} as deployer") - - class_hash = { - contract["contract_name"]: await declare(contract["contract_name"]) - for contract in COMPILED_CONTRACTS - } - dump_declarations(class_hash) - - # %% Deploy contracts - class_hash = get_declarations() - deployments = get_deployments() - deployments = { - contract_name: { - **dict(zip(["address", "tx"], await deploy(contract_name))), - "artifact": get_artifact(contract_name), - "alias": get_alias(contract_name), - } - for contract_name in [ - "BasicCellRenderer", - "math", - "execute", - ] - } - deployments["Starksheet"] = { - **dict( - zip( - ["address", "tx"], - await deploy( - "Starksheet", - (await get_account()).address, # owner - class_hash["Sheet"], # sheet_class_hash - class_hash["proxy"], # proxy_class_hash - deployments["BasicCellRenderer"][ - "address" - ], # default_renderer_address - int(0.01 * 1e18), # sheet_price - ), - ) - ), - "artifact": get_artifact("Starksheet"), - "alias": get_alias("Starksheet"), - } - dump_deployments(deployments) - - -# %% Main -if __name__ == "__main__": - run(main()) diff --git a/packages/starksheet-cairo/deployments/katana/deployments.json b/packages/starksheet-cairo/deployments/katana/deployments.json index fb07a326..ee9d84e7 100644 --- a/packages/starksheet-cairo/deployments/katana/deployments.json +++ b/packages/starksheet-cairo/deployments/katana/deployments.json @@ -1,26 +1,22 @@ { "BasicCellRenderer": { - "address": "0x7a594e86cc7b3aca304c5d930173b9edf012c32cdabc56d6a0839028db16046", - "tx": "0x28ce03e5620fd8fa46950cae8662f02dd29ed8915b5b1c0d360d456eb020935", - "artifact": "build/BasicCellRenderer.json", - "alias": "basic_cell_renderer" + "address": "0x47ae818d59330d63ba514a2822179b01313a9f9bf38fc2aa2c71fce1a965721", + "tx": "0x1831e5720f59268f506318bae81de4598abbb012cca9cb1544561ac1648ee35", + "artifact": "build/BasicCellRenderer.json" }, "math": { - "address": "0x90804b8614b751c99c4000cfc114d21e258864515171042f93d082fcb3bb11", - "tx": "0x7a7c24760fea164abe754d15b414a883377f7d6a2ede5a2d33a5daff7026eac", - "artifact": "build/math.json", - "alias": "math" + "address": "0x1885ddc5917c19b1fb805bbe6a2d41abf221aff0c9610793faff9a3529f2994", + "tx": "0x23226e2763cde9f709ae77effb23c74c631e9d693ccfda9d44db281ad2233cd", + "artifact": "build/math.json" }, "execute": { - "address": "0x1ee218aac697527a6f2ed647f4589fcb1a914bd61e45ad781af8f3807e17e7f", - "tx": "0x2b29413355992e917407f0593b03a65abcb133e9c2a2cea0ad44d053b763fee", - "artifact": "build/execute.json", - "alias": "execute" + "address": "0x1f2cae998679b9a469156a08b99d8247ece51644ccb60625c65f68d15ecd4b0", + "tx": "0x4737b2541fd141fd2e1c96d382bd5f8a7e1b59ed16b1ebd594bf996c7502440", + "artifact": "build/execute.json" }, "Starksheet": { - "address": "0x2c21a6d5a4183f377de248d5ba8041a2b50bb2e0ec982f4e71e5b60cc60758c", - "tx": "0xdf8b871ffb47cbf13d114729672c0630adaee0babe1a4b2ddd2655fdf54332", - "artifact": "build/Starksheet.json", - "alias": "starksheet" + "address": "0x540abc165710b1637d28c3a4f26a5d925b8fd79dbe6e0b8eb8d813c40683967", + "tx": "0x2ae87193d5214bddb08b792fc99f8ea3b43782afec4b9d6f5bac2bfa7d44500", + "artifact": "build/Starksheet.json" } } \ No newline at end of file diff --git a/packages/starksheet-cairo/deployments/madara/deployments.json b/packages/starksheet-cairo/deployments/madara/deployments.json index ae0906ff..fdc386aa 100644 --- a/packages/starksheet-cairo/deployments/madara/deployments.json +++ b/packages/starksheet-cairo/deployments/madara/deployments.json @@ -1,25 +1,25 @@ { "BasicCellRenderer": { - "address": "0x7aaaf70d3154b71750665b89fd8dd86e79ea7e9f673f2f33a0e3ea025a2bc90", - "tx": "0x4335f368647ba65b1588bd6d71c6a9cfeb40e9b12119dfef0eb8d12531b8227", + "address": "0x457c1cb9fe8df874d48b76999b2501a01b6843b3e427f4bc3b5e468f15ebdf1", + "tx": "0x7e61f571445cf9ba77c53c690d93be1816f201219a524a15b3d06cf1b57c2d", "artifact": "build/BasicCellRenderer.json", "alias": "basic_cell_renderer" }, "math": { - "address": "0x7e28503600cc4533145d53db41fd975a424d198982178c34f1f15870fde281b", - "tx": "0x4e4a10da785f9a0ad6e8ba06a16146563316e550320e13da72512fb83fca38e", + "address": "0x79ad412d4ceb0e5925ef20be5a6759e4e7f4b560f39c9800e5dc88296fe0f32", + "tx": "0x4a2e9796daaa6b02a363b94d2be10a9010a36669d157b9317438c87da3861ab", "artifact": "build/math.json", "alias": "math" }, "execute": { - "address": "0x138d4e2d306c0a9ef84dff00f6cc5e4d7b6f2329c9f88690ec6b8057e5e72f3", - "tx": "0x3448424346bc091ece116155d291b64c7a7f1028b76ca62cf65c71c1ddeae4e", + "address": "0x1c00165896eca925da88caa5544508d28ba0d24b595674b9af80bb855ba310b", + "tx": "0xadf459677acc1faba4d39adeb9f766ecbf006929f562045714b4d0fe319f33", "artifact": "build/execute.json", "alias": "execute" }, "Starksheet": { - "address": "0x4c60a51592fb92fdc7a70cd07efcd31ccced5d67bba5d153ffce673ed29e389", - "tx": "0x7ee5b01be2972ed6391cb6a3f002ac18aa72725c721c0de9522b36dccd73e2c", + "address": "0x1f0e3fde6b6f1edf1871d07382f06eb69471b9b998fa0770880308b0da7b6b0", + "tx": "0x3079825b26f1459b716a81dc34caebb10ec99c56e62d1b4529c3b6fcd40d2c3", "artifact": "build/Starksheet.json", "alias": "starksheet" } diff --git a/packages/starksheet-cairo/deployments/starknet-devnet/declarations.json b/packages/starksheet-cairo/deployments/starknet-devnet/declarations.json new file mode 100644 index 00000000..ce477290 --- /dev/null +++ b/packages/starksheet-cairo/deployments/starknet-devnet/declarations.json @@ -0,0 +1,10 @@ +{ + "Sheet": "0x1759e57ef31878f7dc5695b7095a174997da09fde32e5bc1aeb2c9b70fcc56c", + "Starksheet": "0x38e88274237b46e2296ee0109f3c0c6e7791afb54a3a0623d66b926a02eac2e", + "BasicCellRenderer": "0x2694071ff6342f6d05f4ae54ebd48533fb7be2a6056b07fa22520e08f4bca89", + "UriRenderer": "0x7a7c733fa4802f34d06d87fb990d5766ea4971f5ead396cbb655b2824d3235a", + "math": "0x65585eab9a699786217dfd49573fe81108ea59ec398fce4292908accd526aa4", + "execute": "0x6d959eb4c0fb37f5a975c1b2a5b3f55ad7dc3c64a88c19fcd95fa159fa81e", + "proxy": "0x7657c969f82c665731ea2cbd29e5063a72375a113443e48013c9a7cee16c31b", + "ERC20": "0x76927a7de4cf94327fb0a74097bb43b8d28ea062e35abfde9ab189d1ef16ee" +} \ No newline at end of file diff --git a/packages/starksheet-cairo/deployments/starknet-devnet/deployments.json b/packages/starksheet-cairo/deployments/starknet-devnet/deployments.json new file mode 100644 index 00000000..c8980ddf --- /dev/null +++ b/packages/starksheet-cairo/deployments/starknet-devnet/deployments.json @@ -0,0 +1,22 @@ +{ + "BasicCellRenderer": { + "address": "0x6417125a687b9eed5b3e8b3fc27ba6f979fbeff7af64d670d40b2c9cc7d4e38", + "tx": "0x2f52f3f7b64aee693d178bce094dd6fc768a8bc6c70b9d4be8a2b4f1280759e", + "artifact": "build/BasicCellRenderer.json" + }, + "math": { + "address": "0x3874e59f4298ca5607b93740b05ec24596769cad30a3ece3c6da0ee5660ea56", + "tx": "0x6f69b775f5d0a92b0673fe17de20c94ee2be27c3de7faf52e32a2249d42bde", + "artifact": "build/math.json" + }, + "execute": { + "address": "0x5a70ffe7b9f974639e5dc77a40ad6728f90bc227f9b2d1a76390d20e306ec39", + "tx": "0xc8a355d5912d43f2e4f4ef20ac844d85159124cd76f27dc898c7998321f285", + "artifact": "build/execute.json" + }, + "Starksheet": { + "address": "0x7886c3fc01a3197a18fb280267d0db4ea08814902cc7dd58634a1855fa54d4b", + "tx": "0x31c221f2cdebddcdb21227f52ecfd8fb62d447a2696024d85a10cd001680589", + "artifact": "build/Starksheet.json" + } +} \ No newline at end of file diff --git a/packages/starksheet-cairo/deployments/testnet/declarations.json b/packages/starksheet-cairo/deployments/testnet/declarations.json index 72cb62e1..ce477290 100644 --- a/packages/starksheet-cairo/deployments/testnet/declarations.json +++ b/packages/starksheet-cairo/deployments/testnet/declarations.json @@ -1,3 +1,10 @@ { - "Counter": "0x4d29ab4f79e1c72cdcd754bda4769f113e81fa90ef2400766bd3672f4be3a3d" + "Sheet": "0x1759e57ef31878f7dc5695b7095a174997da09fde32e5bc1aeb2c9b70fcc56c", + "Starksheet": "0x38e88274237b46e2296ee0109f3c0c6e7791afb54a3a0623d66b926a02eac2e", + "BasicCellRenderer": "0x2694071ff6342f6d05f4ae54ebd48533fb7be2a6056b07fa22520e08f4bca89", + "UriRenderer": "0x7a7c733fa4802f34d06d87fb990d5766ea4971f5ead396cbb655b2824d3235a", + "math": "0x65585eab9a699786217dfd49573fe81108ea59ec398fce4292908accd526aa4", + "execute": "0x6d959eb4c0fb37f5a975c1b2a5b3f55ad7dc3c64a88c19fcd95fa159fa81e", + "proxy": "0x7657c969f82c665731ea2cbd29e5063a72375a113443e48013c9a7cee16c31b", + "ERC20": "0x76927a7de4cf94327fb0a74097bb43b8d28ea062e35abfde9ab189d1ef16ee" } \ No newline at end of file diff --git a/packages/starksheet-cairo/deployments/testnet/deployments.json b/packages/starksheet-cairo/deployments/testnet/deployments.json index e5bfd629..964177e0 100644 --- a/packages/starksheet-cairo/deployments/testnet/deployments.json +++ b/packages/starksheet-cairo/deployments/testnet/deployments.json @@ -1,26 +1,22 @@ { "BasicCellRenderer": { - "address": "0x3705b3c6bbec245f3dcf0d3f9dbcd67557230f39680771a2fd94eb3e8a2744c", - "tx": "0x1d1cabf8bda6ed7bc59c6601fed7e427033d0dfce447069bdb8e28945a71ba5", - "artifact": "build/BasicCellRenderer.json", - "alias": "basic_cell_renderer" + "address": "0x6237eeb7702ef3035290a9794385b3754fc572ebd5d4cae9aa41a6c95612749", + "tx": "0x22b43a0cd75f3cd48465d83eba46ab7f58b879034c186b8b59b950b01d3ed84", + "artifact": "build/BasicCellRenderer.json" }, "math": { - "address": "0x7709c1d56dac93dd957ff025ac4a076ba37dd7d5d8bbce104099d87389fe060", - "tx": "0x3ca1019c8cfb04d5ee6c04a0f84b1e02bcd3c93b57b145a6bde042d8142e9aa", - "artifact": "build/math.json", - "alias": "math" + "address": "0x4c9f7e187a3901e9159306f56ed9432a95bf6cc51a22772193ff6da0118650b", + "tx": "0x36964d61d13a79130a517916a7daf8a8fef8f9d4136b6b5b97884840d799c60", + "artifact": "build/math.json" }, "execute": { - "address": "0x1f9a78ee2722601b7b95cde1aea43d5009254cca0c40d4a83c081bba05e5dda", - "tx": "0x7257084ac34bcdc5ef442af2cff7ffb99b149c90270e1e7159f6149067c3c39", - "artifact": "build/execute.json", - "alias": "execute" + "address": "0xfd903f33ef17ae68926c946fb7e6e4274a19464e1442116b9c920ba797703b", + "tx": "0x383dcd3bc190f365a00592a9c5907f318a8d984b4284bff1bf0b617131e043", + "artifact": "build/execute.json" }, "Starksheet": { - "address": "0x2fd144c654da1e2aae1f88ee0985a61d1f75f0230b0301857ab3da7b916ee1e", - "tx": "0x53b667ec839384d11abf9b9a3145f765b65b133acc296127d1fdee8b32f28ea", - "artifact": "build/Starksheet.json", - "alias": "starksheet" + "address": "0x4d33345d5e0dd5e6b53317c2f1d11f148ecd9bce6a3dfa4870145080b6efbd5", + "tx": "0x5c0239f4af21a48b183333a469a2790fb0d0be3d39218b449aa01b8b2669d33", + "artifact": "build/Starksheet.json" } } \ No newline at end of file diff --git a/packages/starksheet-cairo/deployments/testnet2/declarations.json b/packages/starksheet-cairo/deployments/testnet2/declarations.json index f9fc3c6c..ce477290 100644 --- a/packages/starksheet-cairo/deployments/testnet2/declarations.json +++ b/packages/starksheet-cairo/deployments/testnet2/declarations.json @@ -1,8 +1,10 @@ { - "Sheet": "0x1443581b36b9e0aa2fee085b5cb74e6ad0b31768b12f7a9f0620ecc545dff60", - "Starksheet": "0x261c2d8cf5b427bd8406c11645c6d120dbc6811da54316b9a51dcbcb0196293", - "BasicCellRenderer": "0x5b69b81eb1f6922bf361f338cb145d33514155d2a3f4338062ab269c73f14e8", - "math": "0x3ab57f7a5fff45e003af70d595bc4d3c2b491c8489569034a930be77d62b2fc", - "execute": "0x1d241d13714aed330309576b6af8f9fd0c20e6cbdd561244abee2bd36bd1140", - "proxy": "0x1909a2c8952c9750517dee8705f4f56fa13f3c08bce4ea12064a301807bd74d" + "Sheet": "0x1759e57ef31878f7dc5695b7095a174997da09fde32e5bc1aeb2c9b70fcc56c", + "Starksheet": "0x38e88274237b46e2296ee0109f3c0c6e7791afb54a3a0623d66b926a02eac2e", + "BasicCellRenderer": "0x2694071ff6342f6d05f4ae54ebd48533fb7be2a6056b07fa22520e08f4bca89", + "UriRenderer": "0x7a7c733fa4802f34d06d87fb990d5766ea4971f5ead396cbb655b2824d3235a", + "math": "0x65585eab9a699786217dfd49573fe81108ea59ec398fce4292908accd526aa4", + "execute": "0x6d959eb4c0fb37f5a975c1b2a5b3f55ad7dc3c64a88c19fcd95fa159fa81e", + "proxy": "0x7657c969f82c665731ea2cbd29e5063a72375a113443e48013c9a7cee16c31b", + "ERC20": "0x76927a7de4cf94327fb0a74097bb43b8d28ea062e35abfde9ab189d1ef16ee" } \ No newline at end of file diff --git a/packages/starksheet-cairo/deployments/testnet2/deployments.json b/packages/starksheet-cairo/deployments/testnet2/deployments.json index 906e481a..e2476137 100644 --- a/packages/starksheet-cairo/deployments/testnet2/deployments.json +++ b/packages/starksheet-cairo/deployments/testnet2/deployments.json @@ -1,26 +1,22 @@ { "BasicCellRenderer": { - "address": "0x3d1b36a9e5a6ce00f1cef365974c1a1364a54b2d3de6a488ebf827df886a52a", - "tx": "0x1cc09300bbfa491b5ac939dbd7f6459f130faa217c88a97e15877c332a41737", - "artifact": "build/BasicCellRenderer.json", - "alias": "basic_cell_renderer" + "address": "0x1152e2d3dd5dff367dacc884d17af4fd3b883e07e09edeefcd63fd6f0ab6d1a", + "tx": "0x3b5274b925505b90b5a4abe3b36df38371899dacc9e409cd88785436f62a6fe", + "artifact": "build/BasicCellRenderer.json" }, "math": { - "address": "0x534ef4adc677999df5d2c12e7a79299e7aaed6d36e3c64c4e1ff61536b284b0", - "tx": "0x295334035ff50c17edb22e592a5d864f0270926deb77d712bfc57b9c113ba36", - "artifact": "build/math.json", - "alias": "math" + "address": "0x21223730872c32c4c998b5b22ab109aba77032035e993d52f2d24e09f1ef69f", + "tx": "0x6b8ce902533ef7908db25462c0b5d695c0f035376f1b8c2bd1820b727113033", + "artifact": "build/math.json" }, "execute": { - "address": "0x506632ea6381f39420fefba8c98783521536ba2c93492a72baaf7fe73bac268", - "tx": "0x480b17c005df8d14512cec97adb7a143689bad1e14490475e52e5eac8113f9d", - "artifact": "build/execute.json", - "alias": "execute" + "address": "0x605182739e1abd0288912fe5be52c3d0f909dc489831cb89602e52ec21ba3c6", + "tx": "0x4b9937653fb4a0499de0b3fe105f409f517ddd82062f56d0274ac3f11ed2c3d", + "artifact": "build/execute.json" }, "Starksheet": { - "address": "0x15e21c7965522f25a65aae2a479001ab897f5900a53651fec2c02236c61e560", - "tx": "0x59381098ab6b9bf41cfc20e161d7bf0b5c3e496fc6641a94e55758632668244", - "artifact": "build/Starksheet.json", - "alias": "starksheet" + "address": "0x5cbb31331c3469fe76d9f1e1e1c01ee40569676e4b9c2638f037c5cd32b662f", + "tx": "0x7024bb4eabcc9d4c4c8a0de53250bb1849c73ab11490085f601483da2dd152d", + "artifact": "build/Starksheet.json" } } \ No newline at end of file diff --git a/packages/starksheet-cairo/notebooks/.gitignore b/packages/starksheet-cairo/notebooks/.gitignore index 280317ea..a2d76076 100644 --- a/packages/starksheet-cairo/notebooks/.gitignore +++ b/packages/starksheet-cairo/notebooks/.gitignore @@ -1 +1,2 @@ people.csv +accounting.py diff --git a/packages/starksheet-cairo/notebooks/sheets.py b/packages/starksheet-cairo/notebooks/sheets.py index 0f124ec5..0f968fe2 100644 --- a/packages/starksheet-cairo/notebooks/sheets.py +++ b/packages/starksheet-cairo/notebooks/sheets.py @@ -135,6 +135,18 @@ plt.savefig("daily_sheets.png") # %% Plot hourly sheet creation -(calls.timestamp.dt.strftime("%H").value_counts().sort_index().plot.bar(xlabel="Hour")) +plt.clf() +ax = ( + calls.timestamp.dt.strftime("%H") + .value_counts() + .sort_index() + .plot.bar(xlabel="Hour") +) +plt.tight_layout() +plt.savefig("hourly_sheets.png") -# %% +# %% Plot cumsum +plt.clf() +ax = counts.cumsum().plot.area(grid=True) +plt.tight_layout() +plt.savefig("cumsum_sheets.png") diff --git a/packages/starksheet-cairo/scripts/add_accounts.py b/packages/starksheet-cairo/scripts/add_accounts.py new file mode 100644 index 00000000..c49c0bcf --- /dev/null +++ b/packages/starksheet-cairo/scripts/add_accounts.py @@ -0,0 +1,38 @@ +# %% Imports +import logging +import os +import random +from asyncio import run +from pathlib import Path + +from dotenv import load_dotenv +from utils.starknet import deploy_starknet_account + +load_dotenv() +logging.basicConfig() +logger = logging.getLogger(__name__) +logger.setLevel(logging.INFO) + + +# %% Main +async def main(): + # %% Get parameters from env + amount = float(os.getenv("AMOUNT", 0.01)) + count = int(os.getenv("COUNT", 1)) + + # %% Deploy accounts + for i in range(count): + private_key = random.randbytes(31).hex() + account = await deploy_starknet_account( + private_key=private_key, amount=amount, update_default=False + ) + Path(f"{i}").mkdir(exist_ok=True, parents=True) + (Path(f"{i}") / ".env").write_text( + f"ACCOUNT_ADDRESS=0x{account.address:x}\nPRIVATE_KEY=0x{private_key}\n" + f"STARKNET_ACCOUNT_ADDRESS=0x{account.address:x}\nSTARKNET_PRIVATE_KEY=0x{private_key}\n" + ) + + +# %% Main +if __name__ == "__main__": + run(main()) diff --git a/packages/starksheet-cairo/scripts/compile_starksheet.py b/packages/starksheet-cairo/scripts/compile_starksheet.py new file mode 100644 index 00000000..eeaa932e --- /dev/null +++ b/packages/starksheet-cairo/scripts/compile_starksheet.py @@ -0,0 +1,33 @@ +# %% Imports +import logging +from asyncio import run +from datetime import datetime + +from utils.constants import COMPILED_CONTRACTS, NETWORK +from utils.starknet import compile_contract + +logging.basicConfig() +logger = logging.getLogger(__name__) +logger.setLevel(logging.INFO) + + +# %% Main +async def main(): + # %% Compile + logger.info(f"ℹ️ Compiling contracts for network {NETWORK['name']}") + initial_time = datetime.now() + for contract in COMPILED_CONTRACTS: + logger.info(f"⏳ Compiling {contract}") + start = datetime.now() + compile_contract(contract) + elapsed = datetime.now() - start + logger.info(f"✅ Compiled in {elapsed.total_seconds():.2f}s") + + logger.info( + f"✅ Compiled all in {(datetime.now() - initial_time).total_seconds():.2f}s" + ) + + +# %% Run +if __name__ == "__main__": + run(main()) diff --git a/packages/starksheet-cairo/scripts/deploy_starksheet.py b/packages/starksheet-cairo/scripts/deploy_starksheet.py new file mode 100644 index 00000000..e5970f9b --- /dev/null +++ b/packages/starksheet-cairo/scripts/deploy_starksheet.py @@ -0,0 +1,59 @@ +# %% Imports +import logging +from asyncio import run + +from dotenv import load_dotenv +from utils.constants import COMPILED_CONTRACTS +from utils.starknet import ( + declare, + deploy, + dump_declarations, + dump_deployments, + get_declarations, + get_deployments, + get_starknet_account, +) + +load_dotenv() +logging.basicConfig() +logger = logging.getLogger(__name__) +logger.setLevel(logging.INFO) + + +# %% Main +async def main(): + # %% Declarations + account = await get_starknet_account() + logger.info(f"ℹ️ Using account {hex(account.address)} as deployer") + + class_hash = { + contract["contract_name"]: await declare(contract["contract_name"]) + for contract in COMPILED_CONTRACTS + } + dump_declarations(class_hash) + + # %% Deploy contracts + class_hash = get_declarations() + deployments = get_deployments() + deployments = { + contract_name: await deploy(contract_name) + for contract_name in [ + "BasicCellRenderer", + "math", + "execute", + ] + } + deployments["Starksheet"] = await deploy( + "Starksheet", + (await get_starknet_account()).address, # owner + class_hash["Sheet"], # sheet_class_hash + class_hash["proxy"], # proxy_class_hash + deployments["BasicCellRenderer"]["address"], # default_renderer_address + int(0.01 * 1e18), # sheet_price + ) + dump_deployments(deployments) + + +# %% Main +if __name__ == "__main__": + run(main()) diff --git a/packages/starksheet-cairo/deploy/dusty_pilots.py b/packages/starksheet-cairo/scripts/dusty_pilots.py similarity index 100% rename from packages/starksheet-cairo/deploy/dusty_pilots.py rename to packages/starksheet-cairo/scripts/dusty_pilots.py diff --git a/packages/starksheet-cairo/deploy/random_renderer.py b/packages/starksheet-cairo/scripts/random_renderer.py similarity index 100% rename from packages/starksheet-cairo/deploy/random_renderer.py rename to packages/starksheet-cairo/scripts/random_renderer.py diff --git a/packages/starksheet-cairo/deploy/sheet.py b/packages/starksheet-cairo/scripts/sheet.py similarity index 100% rename from packages/starksheet-cairo/deploy/sheet.py rename to packages/starksheet-cairo/scripts/sheet.py diff --git a/packages/starksheet-cairo/deploy/subdomain.py b/packages/starksheet-cairo/scripts/subdomain.py similarity index 100% rename from packages/starksheet-cairo/deploy/subdomain.py rename to packages/starksheet-cairo/scripts/subdomain.py diff --git a/packages/starksheet-cairo/deploy/uri_renderer.py b/packages/starksheet-cairo/scripts/uri_renderer.py similarity index 100% rename from packages/starksheet-cairo/deploy/uri_renderer.py rename to packages/starksheet-cairo/scripts/uri_renderer.py diff --git a/packages/starksheet-cairo/scripts/utils/erc20.json b/packages/starksheet-cairo/scripts/utils/erc20.json new file mode 100644 index 00000000..4ba4c29c --- /dev/null +++ b/packages/starksheet-cairo/scripts/utils/erc20.json @@ -0,0 +1,49559 @@ +{ + "abi": [ + { + "members": [ + { + "name": "low", + "offset": 0, + "type": "felt" + }, + { + "name": "high", + "offset": 1, + "type": "felt" + } + ], + "name": "Uint256", + "size": 2, + "type": "struct" + }, + { + "data": [ + { + "name": "from_", + "type": "felt" + }, + { + "name": "to", + "type": "felt" + }, + { + "name": "value", + "type": "Uint256" + } + ], + "keys": [], + "name": "Transfer", + "type": "event" + }, + { + "data": [ + { + "name": "owner", + "type": "felt" + }, + { + "name": "spender", + "type": "felt" + }, + { + "name": "value", + "type": "Uint256" + } + ], + "keys": [], + "name": "Approval", + "type": "event" + }, + { + "inputs": [ + { + "name": "name", + "type": "felt" + }, + { + "name": "symbol", + "type": "felt" + }, + { + "name": "decimals", + "type": "felt" + } + ], + "name": "constructor", + "outputs": [], + "type": "constructor" + }, + { + "inputs": [], + "name": "name", + "outputs": [ + { + "name": "name", + "type": "felt" + } + ], + "stateMutability": "view", + "type": "function" + }, + { + "inputs": [], + "name": "symbol", + "outputs": [ + { + "name": "symbol", + "type": "felt" + } + ], + "stateMutability": "view", + "type": "function" + }, + { + "inputs": [], + "name": "totalSupply", + "outputs": [ + { + "name": "totalSupply", + "type": "Uint256" + } + ], + "stateMutability": "view", + "type": "function" + }, + { + "inputs": [], + "name": "decimals", + "outputs": [ + { + "name": "decimals", + "type": "felt" + } + ], + "stateMutability": "view", + "type": "function" + }, + { + "inputs": [ + { + "name": "account", + "type": "felt" + } + ], + "name": "balanceOf", + "outputs": [ + { + "name": "balance", + "type": "Uint256" + } + ], + "stateMutability": "view", + "type": "function" + }, + { + "inputs": [ + { + "name": "owner", + "type": "felt" + }, + { + "name": "spender", + "type": "felt" + } + ], + "name": "allowance", + "outputs": [ + { + "name": "remaining", + "type": "Uint256" + } + ], + "stateMutability": "view", + "type": "function" + }, + { + "inputs": [ + { + "name": "to", + "type": "felt" + }, + { + "name": "amount", + "type": "Uint256" + } + ], + "name": "mint", + "outputs": [], + "type": "function" + }, + { + "inputs": [ + { + "name": "recipient", + "type": "felt" + }, + { + "name": "amount", + "type": "Uint256" + } + ], + "name": "transfer", + "outputs": [ + { + "name": "success", + "type": "felt" + } + ], + "type": "function" + }, + { + "inputs": [ + { + "name": "sender", + "type": "felt" + }, + { + "name": "recipient", + "type": "felt" + }, + { + "name": "amount", + "type": "Uint256" + } + ], + "name": "transferFrom", + "outputs": [ + { + "name": "success", + "type": "felt" + } + ], + "type": "function" + }, + { + "inputs": [ + { + "name": "spender", + "type": "felt" + }, + { + "name": "amount", + "type": "Uint256" + } + ], + "name": "approve", + "outputs": [ + { + "name": "success", + "type": "felt" + } + ], + "type": "function" + }, + { + "inputs": [ + { + "name": "spender", + "type": "felt" + }, + { + "name": "added_value", + "type": "Uint256" + } + ], + "name": "increaseAllowance", + "outputs": [ + { + "name": "success", + "type": "felt" + } + ], + "type": "function" + }, + { + "inputs": [ + { + "name": "spender", + "type": "felt" + }, + { + "name": "subtracted_value", + "type": "Uint256" + } + ], + "name": "decreaseAllowance", + "outputs": [ + { + "name": "success", + "type": "felt" + } + ], + "type": "function" + } + ], + "entry_points_by_type": { + "CONSTRUCTOR": [ + { + "offset": 1035, + "selector": "0x28ffe4ff0f226a9107253e17a904099aa4f63a02a5621de0576e5aa71bc5194" + } + ], + "EXTERNAL": [ + { + "offset": 1334, + "selector": "0x41b033f4a31df8067c24d1e9b550a2ce75fd4a29e1147af9752174f0e6cb20" + }, + { + "offset": 1161, + "selector": "0x4c4fb1ab068f6039d5780c68dd0fa2f8742cceb3426d19667778ca7f3518a9" + }, + { + "offset": 1131, + "selector": "0x80aa9fdbfaf9615e4afc7f5f722e265daca5ccc655360fa5ccacf9c267936d" + }, + { + "offset": 1295, + "selector": "0x83afd3f4caedc6eebf44246fe54e38c95e3179a5ec9ea81740eca5b482d12e" + }, + { + "offset": 1411, + "selector": "0x16cc063b8338363cf388ce7fe1df408bf10f16cd51635d392e21d852fafb683" + }, + { + "offset": 1449, + "selector": "0x1aaf3e6107dd1349c81543ff4221a326814f77dadcc5810807b74f1a49ded4e" + }, + { + "offset": 1229, + "selector": "0x1e888a1026b19c8c0b57c72d63ed1737106aa10034105b980ba117bd0c29fe1" + }, + { + "offset": 1100, + "selector": "0x216b05c387bab9ac31918a3e61672f4618601f3c598a2f3f2710f37053e1ea4" + }, + { + "offset": 1373, + "selector": "0x219209e083275171774dab1df80982e9df2096516f06319c5c6d71ae0a8480c" + }, + { + "offset": 1193, + "selector": "0x2e4263afad30923c891518314c3c95dbe830a16874e8abc5777a9a20b54c76e" + }, + { + "offset": 1257, + "selector": "0x2f0b3c5710379609eb5495f1ecd348cb28167711b73609fe565a72734550354" + }, + { + "offset": 1070, + "selector": "0x361458367e696363fbcc70777d07ebbd2394e89fd0adcaf147faccd1d294d60" + } + ], + "L1_HANDLER": [] + }, + "program": { + "attributes": [ + { + "accessible_scopes": [ + "openzeppelin.security.safemath.library", + "openzeppelin.security.safemath.library.SafeUint256", + "openzeppelin.security.safemath.library.SafeUint256.add" + ], + "end_pc": 326, + "flow_tracking_data": { + "ap_tracking": { + "group": 22, + "offset": 35 + }, + "reference_ids": {} + }, + "name": "error_message", + "start_pc": 324, + "value": "SafeUint256: addition overflow" + }, + { + "accessible_scopes": [ + "openzeppelin.security.safemath.library", + "openzeppelin.security.safemath.library.SafeUint256", + "openzeppelin.security.safemath.library.SafeUint256.sub_le" + ], + "end_pc": 349, + "flow_tracking_data": { + "ap_tracking": { + "group": 23, + "offset": 60 + }, + "reference_ids": {} + }, + "name": "error_message", + "start_pc": 347, + "value": "SafeUint256: subtraction overflow" + }, + { + "accessible_scopes": [ + "openzeppelin.token.erc20.library", + "openzeppelin.token.erc20.library.ERC20", + "openzeppelin.token.erc20.library.ERC20.initializer" + ], + "end_pc": 665, + "flow_tracking_data": { + "ap_tracking": { + "group": 44, + "offset": 41 + }, + "reference_ids": {} + }, + "name": "error_message", + "start_pc": 660, + "value": "ERC20: decimals exceed 2^8" + }, + { + "accessible_scopes": [ + "openzeppelin.token.erc20.library", + "openzeppelin.token.erc20.library.ERC20", + "openzeppelin.token.erc20.library.ERC20.approve" + ], + "end_pc": 752, + "flow_tracking_data": { + "ap_tracking": { + "group": 56, + "offset": 0 + }, + "reference_ids": {} + }, + "name": "error_message", + "start_pc": 747, + "value": "ERC20: amount is not a valid Uint256" + }, + { + "accessible_scopes": [ + "openzeppelin.token.erc20.library", + "openzeppelin.token.erc20.library.ERC20", + "openzeppelin.token.erc20.library.ERC20.increase_allowance" + ], + "end_pc": 772, + "flow_tracking_data": { + "ap_tracking": { + "group": 58, + "offset": 0 + }, + "reference_ids": {} + }, + "name": "error", + "start_pc": 767, + "value": "ERC20: added_value is not a valid Uint256" + }, + { + "accessible_scopes": [ + "openzeppelin.token.erc20.library", + "openzeppelin.token.erc20.library.ERC20", + "openzeppelin.token.erc20.library.ERC20.increase_allowance" + ], + "end_pc": 786, + "flow_tracking_data": { + "ap_tracking": { + "group": 58, + "offset": 88 + }, + "reference_ids": {} + }, + "name": "error_message", + "start_pc": 782, + "value": "ERC20: allowance overflow" + }, + { + "accessible_scopes": [ + "openzeppelin.token.erc20.library", + "openzeppelin.token.erc20.library.ERC20", + "openzeppelin.token.erc20.library.ERC20.decrease_allowance" + ], + "end_pc": 805, + "flow_tracking_data": { + "ap_tracking": { + "group": 60, + "offset": 0 + }, + "reference_ids": {} + }, + "name": "error_message", + "start_pc": 800, + "value": "ERC20: subtracted_value is not a valid Uint256" + }, + { + "accessible_scopes": [ + "openzeppelin.token.erc20.library", + "openzeppelin.token.erc20.library.ERC20", + "openzeppelin.token.erc20.library.ERC20.decrease_allowance" + ], + "end_pc": 819, + "flow_tracking_data": { + "ap_tracking": { + "group": 60, + "offset": 88 + }, + "reference_ids": {} + }, + "name": "error_message", + "start_pc": 815, + "value": "ERC20: allowance below zero" + }, + { + "accessible_scopes": [ + "openzeppelin.token.erc20.library", + "openzeppelin.token.erc20.library.ERC20", + "openzeppelin.token.erc20.library.ERC20._mint" + ], + "end_pc": 836, + "flow_tracking_data": { + "ap_tracking": { + "group": 62, + "offset": 0 + }, + "reference_ids": {} + }, + "name": "error_message", + "start_pc": 831, + "value": "ERC20: amount is not a valid Uint256" + }, + { + "accessible_scopes": [ + "openzeppelin.token.erc20.library", + "openzeppelin.token.erc20.library.ERC20", + "openzeppelin.token.erc20.library.ERC20._mint" + ], + "end_pc": 839, + "flow_tracking_data": { + "ap_tracking": { + "group": 62, + "offset": 6 + }, + "reference_ids": {} + }, + "name": "error_message", + "start_pc": 836, + "value": "ERC20: cannot mint to the zero address" + }, + { + "accessible_scopes": [ + "openzeppelin.token.erc20.library", + "openzeppelin.token.erc20.library.ERC20", + "openzeppelin.token.erc20.library.ERC20._mint" + ], + "end_pc": 848, + "flow_tracking_data": { + "ap_tracking": { + "group": 62, + "offset": 40 + }, + "reference_ids": {} + }, + "name": "error_message", + "start_pc": 844, + "value": "ERC20: mint overflow" + }, + { + "accessible_scopes": [ + "openzeppelin.token.erc20.library", + "openzeppelin.token.erc20.library.ERC20", + "openzeppelin.token.erc20.library.ERC20._transfer" + ], + "end_pc": 888, + "flow_tracking_data": { + "ap_tracking": { + "group": 63, + "offset": 0 + }, + "reference_ids": {} + }, + "name": "error_message", + "start_pc": 883, + "value": "ERC20: amount is not a valid Uint256" + }, + { + "accessible_scopes": [ + "openzeppelin.token.erc20.library", + "openzeppelin.token.erc20.library.ERC20", + "openzeppelin.token.erc20.library.ERC20._transfer" + ], + "end_pc": 891, + "flow_tracking_data": { + "ap_tracking": { + "group": 63, + "offset": 6 + }, + "reference_ids": {} + }, + "name": "error_message", + "start_pc": 888, + "value": "ERC20: cannot transfer from the zero address" + }, + { + "accessible_scopes": [ + "openzeppelin.token.erc20.library", + "openzeppelin.token.erc20.library.ERC20", + "openzeppelin.token.erc20.library.ERC20._transfer" + ], + "end_pc": 894, + "flow_tracking_data": { + "ap_tracking": { + "group": 63, + "offset": 9 + }, + "reference_ids": {} + }, + "name": "error_message", + "start_pc": 891, + "value": "ERC20: cannot transfer to the zero address" + }, + { + "accessible_scopes": [ + "openzeppelin.token.erc20.library", + "openzeppelin.token.erc20.library.ERC20", + "openzeppelin.token.erc20.library.ERC20._transfer" + ], + "end_pc": 904, + "flow_tracking_data": { + "ap_tracking": { + "group": 63, + "offset": 81 + }, + "reference_ids": {} + }, + "name": "error_message", + "start_pc": 900, + "value": "ERC20: transfer amount exceeds balance" + }, + { + "accessible_scopes": [ + "openzeppelin.token.erc20.library", + "openzeppelin.token.erc20.library.ERC20", + "openzeppelin.token.erc20.library.ERC20._approve" + ], + "end_pc": 944, + "flow_tracking_data": { + "ap_tracking": { + "group": 64, + "offset": 0 + }, + "reference_ids": {} + }, + "name": "error_message", + "start_pc": 939, + "value": "ERC20: amount is not a valid Uint256" + }, + { + "accessible_scopes": [ + "openzeppelin.token.erc20.library", + "openzeppelin.token.erc20.library.ERC20", + "openzeppelin.token.erc20.library.ERC20._approve" + ], + "end_pc": 947, + "flow_tracking_data": { + "ap_tracking": { + "group": 64, + "offset": 6 + }, + "reference_ids": {} + }, + "name": "error_message", + "start_pc": 944, + "value": "ERC20: cannot approve from the zero address" + }, + { + "accessible_scopes": [ + "openzeppelin.token.erc20.library", + "openzeppelin.token.erc20.library.ERC20", + "openzeppelin.token.erc20.library.ERC20._approve" + ], + "end_pc": 950, + "flow_tracking_data": { + "ap_tracking": { + "group": 64, + "offset": 9 + }, + "reference_ids": {} + }, + "name": "error_message", + "start_pc": 947, + "value": "ERC20: cannot approve to the zero address" + }, + { + "accessible_scopes": [ + "openzeppelin.token.erc20.library", + "openzeppelin.token.erc20.library.ERC20", + "openzeppelin.token.erc20.library.ERC20._spend_allowance" + ], + "end_pc": 978, + "flow_tracking_data": { + "ap_tracking": { + "group": 65, + "offset": 4 + }, + "reference_ids": {} + }, + "name": "error_message", + "start_pc": 973, + "value": "ERC20: amount is not a valid Uint256" + }, + { + "accessible_scopes": [ + "openzeppelin.token.erc20.library", + "openzeppelin.token.erc20.library.ERC20", + "openzeppelin.token.erc20.library.ERC20._spend_allowance" + ], + "end_pc": 1012, + "flow_tracking_data": { + "ap_tracking": { + "group": 66, + "offset": 0 + }, + "reference_ids": {} + }, + "name": "error_message", + "start_pc": 1005, + "value": "ERC20: insufficient allowance" + } + ], + "builtins": [ + "pedersen", + "range_check" + ], + "compiler_version": "0.11.2", + "data": [ + "0x40780017fff7fff", + "0x1", + "0x208b7fff7fff7ffe", + "0x400380007ffb7ffc", + "0x400380017ffb7ffd", + "0x482680017ffb8000", + "0x3", + "0x480280027ffb8000", + "0x208b7fff7fff7ffe", + "0x480680017fff8000", + "0x47657443616c6c657241646472657373", + "0x400280007ffd7fff", + "0x482680017ffd8000", + "0x2", + "0x480280017ffd8000", + "0x208b7fff7fff7ffe", + "0x480680017fff8000", + "0x53746f7261676552656164", + "0x400280007ffc7fff", + "0x400380017ffc7ffd", + "0x482680017ffc8000", + "0x3", + "0x480280027ffc8000", + "0x208b7fff7fff7ffe", + "0x480680017fff8000", + "0x53746f726167655772697465", + "0x400280007ffb7fff", + "0x400380017ffb7ffc", + "0x400380027ffb7ffd", + "0x482680017ffb8000", + "0x3", + "0x208b7fff7fff7ffe", + "0x480680017fff8000", + "0x456d69744576656e74", + "0x400280007ff97fff", + "0x400380017ff97ffa", + "0x400380027ff97ffb", + "0x400380037ff97ffc", + "0x400380047ff97ffd", + "0x482680017ff98000", + "0x5", + "0x208b7fff7fff7ffe", + "0x20780017fff7ffd", + "0x4", + "0x400780017fff7ffd", + "0x1", + "0x208b7fff7fff7ffe", + "0x400380007ffc7ffd", + "0x482680017ffc8000", + "0x1", + "0x208b7fff7fff7ffe", + "0x480a7ffb7fff8000", + "0x48297ffc80007ffd", + "0x1104800180018000", + "0x800000000000010fffffffffffffffffffffffffffffffffffffffffffffffb", + "0x208b7fff7fff7ffe", + "0x480680017fff8000", + "0x3ffffffffffffffffffffffffffffff", + "0x480280017ffc8000", + "0x48307fff80007ffe", + "0x400280027ffc7fff", + "0x480280017ffc8000", + "0x484480017fff8000", + "0x100000000000000000000000000000000", + "0x480280007ffc8000", + "0x40317fff7ffe7ffd", + "0x482680017ffc8000", + "0x3", + "0x208b7fff7fff7ffe", + "0x480280007ffb8000", + "0x480280017ffb8000", + "0x484480017fff8000", + "0x2aaaaaaaaaaaab05555555555555556", + "0x48307fff7ffd8000", + "0x480280027ffb8000", + "0x480280037ffb8000", + "0x484480017fff8000", + "0x4000000000000088000000000000001", + "0x48307fff7ffd8000", + "0xa0680017fff8000", + "0xe", + "0x480680017fff8000", + "0x800000000000011000000000000000000000000000000000000000000000000", + "0x48287ffc80007fff", + "0x40307ffc7ff87fff", + "0x48297ffd80007ffc", + "0x482680017ffd8000", + "0x1", + "0x48507fff7ffe8000", + "0x40507ff97ff57fff", + "0x482680017ffb8000", + "0x4", + "0x208b7fff7fff7ffe", + "0xa0680017fff8000", + "0xc", + "0x480680017fff8000", + "0x800000000000011000000000000000000000000000000000000000000000000", + "0x48287ffd80007fff", + "0x48327fff7ffc8000", + "0x40307ffa7ff67fff", + "0x48527ffe7ffc8000", + "0x40507ff97ff57fff", + "0x482680017ffb8000", + "0x4", + "0x208b7fff7fff7ffe", + "0x40317ffd7ff97ffd", + "0x48297ffc80007ffd", + "0x48527fff7ffc8000", + "0x40507ffb7ff77fff", + "0x40780017fff7fff", + "0x2", + "0x482680017ffb8000", + "0x4", + "0x208b7fff7fff7ffe", + "0x40780017fff7fff", + "0x1", + "0x20680017fff7fff", + "0x10", + "0x480a7ffc7fff8000", + "0x482680017ffd8000", + "0x11000000000000000000000000000000000000000000000101", + "0x1104800180018000", + "0x800000000000010ffffffffffffffffffffffffffffffffffffffffffffffc0", + "0x480680017fff8000", + "0x800000000000011000000000000000000000000000000000000000000000000", + "0x48127ffe7fff8000", + "0x48287ffd80007ffe", + "0x1104800180018000", + "0x800000000000010ffffffffffffffffffffffffffffffffffffffffffffffba", + "0x482680017ffd8000", + "0x11000000000000000000000000000000000000000000000101", + "0x208b7fff7fff7ffe", + "0x40780017fff7fff", + "0x1", + "0x20680017fff7fff", + "0xc", + "0x40780017fff7fff", + "0xa", + "0x480680017fff8000", + "0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffeff", + "0x480a7ffc7fff8000", + "0x48287ffd80007ffe", + "0x1104800180018000", + "0x800000000000010ffffffffffffffffffffffffffffffffffffffffffffffab", + "0x10780017fff7fff", + "0x8", + "0x40780017fff7fff", + "0xb", + "0x480a7ffc7fff8000", + "0x480a7ffd7fff8000", + "0x1104800180018000", + "0x800000000000010ffffffffffffffffffffffffffffffffffffffffffffffa3", + "0x480a7ffd7fff8000", + "0x208b7fff7fff7ffe", + "0xa0680017fff8000", + "0xa", + "0x400380007ffc7ffd", + "0x40780017fff7fff", + "0x14", + "0x482680017ffc8000", + "0x1", + "0x480680017fff8000", + "0x1", + "0x208b7fff7fff7ffe", + "0xa0680017fff8000", + "0xe", + "0x484680017ffd8000", + "0x800000000000011000000000000000000000000000000000000000000000000", + "0x482480017fff8000", + "0x800000000000011000000000000000000000000000000000000000000000000", + "0x400280007ffc7fff", + "0x40780017fff7fff", + "0x11", + "0x482680017ffc8000", + "0x1", + "0x480680017fff8000", + "0x0", + "0x208b7fff7fff7ffe", + "0x480a7ffc7fff8000", + "0x480680017fff8000", + "0x100000000000000000000000000000000", + "0x480a7ffd7fff8000", + "0x1104800180018000", + "0x800000000000010ffffffffffffffffffffffffffffffffffffffffffffff90", + "0x480680017fff8000", + "0x0", + "0x208b7fff7fff7ffe", + "0x480a7ffb7fff8000", + "0x48297ffc80007ffd", + "0x1104800180018000", + "0x800000000000010ffffffffffffffffffffffffffffffffffffffffffffffde", + "0x208b7fff7fff7ffe", + "0x400380007ffb7ffc", + "0x400380017ffb7ffd", + "0x482680017ffb8000", + "0x2", + "0x208b7fff7fff7ffe", + "0x40780017fff7fff", + "0x4", + "0x404b800280028002", + "0x404b800380038003", + "0x482a7ffc7ffa8000", + "0x4846800180028000", + "0x100000000000000000000000000000000", + "0x40327fff80007ffe", + "0x482a7ffd7ffb8000", + "0x482880027fff8000", + "0x4846800180038000", + "0x100000000000000000000000000000000", + "0x40327fff80017ffe", + "0x480a7ff97fff8000", + "0x480a80007fff8000", + "0x480a80017fff8000", + "0x1104800180018000", + "0x800000000000010ffffffffffffffffffffffffffffffffffffffffffffffec", + "0x480a80007fff8000", + "0x480a80017fff8000", + "0x480a80037fff8000", + "0x208b7fff7fff7ffe", + "0x48297ffd80007ffb", + "0x20680017fff7fff", + "0x9", + "0x480a7ff97fff8000", + "0x482680017ffa8000", + "0x1", + "0x480a7ffc7fff8000", + "0x1104800180018000", + "0x800000000000010ffffffffffffffffffffffffffffffffffffffffffffffda", + "0x208b7fff7fff7ffe", + "0x480a7ff97fff8000", + "0x482680017ffb8000", + "0x1", + "0x480a7ffd7fff8000", + "0x1104800180018000", + "0x800000000000010ffffffffffffffffffffffffffffffffffffffffffffffd3", + "0x208b7fff7fff7ffe", + "0x480a7ff97fff8000", + "0x480a7ffc7fff8000", + "0x480a7ffd7fff8000", + "0x480a7ffa7fff8000", + "0x480a7ffb7fff8000", + "0x1104800180018000", + "0x800000000000010ffffffffffffffffffffffffffffffffffffffffffffffeb", + "0x480680017fff8000", + "0x1", + "0x48127ffd7fff8000", + "0x48307ffd80007ffe", + "0x208b7fff7fff7ffe", + "0x480680017fff8000", + "0xffffffffffffffffffffffffffffffff", + "0x480680017fff8000", + "0xffffffffffffffffffffffffffffffff", + "0x480a7ffb7fff8000", + "0x48287ffc80007ffd", + "0x48287ffd80007ffd", + "0x208b7fff7fff7ffe", + "0x480a7ffb7fff8000", + "0x480a7ffc7fff8000", + "0x480a7ffd7fff8000", + "0x1104800180018000", + "0x800000000000010fffffffffffffffffffffffffffffffffffffffffffffff6", + "0x480680017fff8000", + "0x1", + "0x480680017fff8000", + "0x0", + "0x1104800180018000", + "0x800000000000010ffffffffffffffffffffffffffffffffffffffffffffffbd", + "0x48127ffc7fff8000", + "0x48127ffc7fff8000", + "0x48127ffc7fff8000", + "0x208b7fff7fff7ffe", + "0x480a7ff97fff8000", + "0x480a7ffc7fff8000", + "0x480a7ffd7fff8000", + "0x1104800180018000", + "0x800000000000010ffffffffffffffffffffffffffffffffffffffffffffffef", + "0x48127ffd7fff8000", + "0x480a7ffa7fff8000", + "0x480a7ffb7fff8000", + "0x48127ffb7fff8000", + "0x48127ffb7fff8000", + "0x1104800180018000", + "0x800000000000010ffffffffffffffffffffffffffffffffffffffffffffffad", + "0x48127ffc7fff8000", + "0x48127ffc7fff8000", + "0x48127ffc7fff8000", + "0x208b7fff7fff7ffe", + "0x48297ffd80007ffb", + "0x20680017fff7fff", + "0x4", + "0x10780017fff7fff", + "0x6", + "0x480a7ff97fff8000", + "0x480680017fff8000", + "0x0", + "0x208b7fff7fff7ffe", + "0x48297ffc80007ffa", + "0x20680017fff7fff", + "0x4", + "0x10780017fff7fff", + "0x6", + "0x480a7ff97fff8000", + "0x480680017fff8000", + "0x0", + "0x208b7fff7fff7ffe", + "0x480a7ff97fff8000", + "0x480680017fff8000", + "0x1", + "0x208b7fff7fff7ffe", + "0x480a7ff97fff8000", + "0x480a7ffa7fff8000", + "0x480a7ffb7fff8000", + "0x1104800180018000", + "0x800000000000010ffffffffffffffffffffffffffffffffffffffffffffff89", + "0x480a7ffc7fff8000", + "0x480a7ffd7fff8000", + "0x1104800180018000", + "0x800000000000010ffffffffffffffffffffffffffffffffffffffffffffff85", + "0x480a7ffa7fff8000", + "0x480a7ffb7fff8000", + "0x480a7ffc7fff8000", + "0x480a7ffd7fff8000", + "0x1104800180018000", + "0x800000000000010ffffffffffffffffffffffffffffffffffffffffffffff84", + "0x400680017fff7fff", + "0x0", + "0x48127ffc7fff8000", + "0x48127ffc7fff8000", + "0x48127ffc7fff8000", + "0x208b7fff7fff7ffe", + "0x40780017fff7fff", + "0x0", + "0x480a7ff97fff8000", + "0x480a7ffa7fff8000", + "0x480a7ffb7fff8000", + "0x1104800180018000", + "0x800000000000010ffffffffffffffffffffffffffffffffffffffffffffff72", + "0x480a7ffc7fff8000", + "0x480a7ffd7fff8000", + "0x1104800180018000", + "0x800000000000010ffffffffffffffffffffffffffffffffffffffffffffff6e", + "0x480a7ffc7fff8000", + "0x480a7ffd7fff8000", + "0x480a7ffa7fff8000", + "0x480a7ffb7fff8000", + "0x1104800180018000", + "0x800000000000010ffffffffffffffffffffffffffffffffffffffffffffff94", + "0x400680017fff7fff", + "0x1", + "0x48127ffe7fff8000", + "0x480a7ffa7fff8000", + "0x480a7ffb7fff8000", + "0x480a7ffc7fff8000", + "0x480a7ffd7fff8000", + "0x1104800180018000", + "0x800000000000010ffffffffffffffffffffffffffffffffffffffffffffffae", + "0x208b7fff7fff7ffe", + "0x40780017fff7fff", + "0x2", + "0x1104800180018000", + "0x800000000000010fffffffffffffffffffffffffffffffffffffffffffffe9a", + "0x40137fff7fff8000", + "0x480680017fff8000", + "0x99cd8bde557814842a3121e8ddfd433a539b8c9f14bf31ebf108d12e6196e9", + "0x4002800080007fff", + "0x1104800180018000", + "0x800000000000010fffffffffffffffffffffffffffffffffffffffffffffe94", + "0x40137fff7fff8001", + "0x4003800080017ffa", + "0x4003800180017ffb", + "0x4003800280017ffc", + "0x4003800380017ffd", + "0x4826800180018000", + "0x4", + "0x480a7ff87fff8000", + "0x480680017fff8000", + "0x1", + "0x480a80007fff8000", + "0x4828800180007ffc", + "0x480a80017fff8000", + "0x1104800180018000", + "0x800000000000010fffffffffffffffffffffffffffffffffffffffffffffea5", + "0x480a7ff97fff8000", + "0x208b7fff7fff7ffe", + "0x40780017fff7fff", + "0x2", + "0x1104800180018000", + "0x800000000000010fffffffffffffffffffffffffffffffffffffffffffffe7f", + "0x40137fff7fff8000", + "0x480680017fff8000", + "0x134692b230b9e1ffa39098904722134159652b09c5bc41d88d6698779d228ff", + "0x4002800080007fff", + "0x1104800180018000", + "0x800000000000010fffffffffffffffffffffffffffffffffffffffffffffe79", + "0x40137fff7fff8001", + "0x4003800080017ffa", + "0x4003800180017ffb", + "0x4003800280017ffc", + "0x4003800380017ffd", + "0x4826800180018000", + "0x4", + "0x480a7ff87fff8000", + "0x480680017fff8000", + "0x1", + "0x480a80007fff8000", + "0x4828800180007ffc", + "0x480a80017fff8000", + "0x1104800180018000", + "0x800000000000010fffffffffffffffffffffffffffffffffffffffffffffe8a", + "0x480a7ff97fff8000", + "0x208b7fff7fff7ffe", + "0x480a7ffc7fff8000", + "0x480a7ffd7fff8000", + "0x480680017fff8000", + "0x341c1bdfd89f69748aa00b5742b03adbffd79b8e80cab5c50d91cd8c2a79be1", + "0x208b7fff7fff7ffe", + "0x480a7ffc7fff8000", + "0x480a7ffd7fff8000", + "0x1104800180018000", + "0x800000000000010fffffffffffffffffffffffffffffffffffffffffffffffa", + "0x480a7ffb7fff8000", + "0x48127ffe7fff8000", + "0x1104800180018000", + "0x800000000000010fffffffffffffffffffffffffffffffffffffffffffffe6b", + "0x48127ffe7fff8000", + "0x48127ff57fff8000", + "0x48127ff57fff8000", + "0x48127ffc7fff8000", + "0x208b7fff7fff7ffe", + "0x480a7ffb7fff8000", + "0x480a7ffc7fff8000", + "0x1104800180018000", + "0x800000000000010ffffffffffffffffffffffffffffffffffffffffffffffed", + "0x480a7ffa7fff8000", + "0x48127ffe7fff8000", + "0x480a7ffd7fff8000", + "0x1104800180018000", + "0x800000000000010fffffffffffffffffffffffffffffffffffffffffffffe65", + "0x48127ff67fff8000", + "0x48127ff67fff8000", + "0x208b7fff7fff7ffe", + "0x480a7ffc7fff8000", + "0x480a7ffd7fff8000", + "0x480680017fff8000", + "0xb6ce5410fca59d078ee9b2a4371a9d684c530d697c64fbef0ae6d5e8f0ac72", + "0x208b7fff7fff7ffe", + "0x480a7ffc7fff8000", + "0x480a7ffd7fff8000", + "0x1104800180018000", + "0x800000000000010fffffffffffffffffffffffffffffffffffffffffffffffa", + "0x480a7ffb7fff8000", + "0x48127ffe7fff8000", + "0x1104800180018000", + "0x800000000000010fffffffffffffffffffffffffffffffffffffffffffffe4d", + "0x48127ffe7fff8000", + "0x48127ff57fff8000", + "0x48127ff57fff8000", + "0x48127ffc7fff8000", + "0x208b7fff7fff7ffe", + "0x480a7ffb7fff8000", + "0x480a7ffc7fff8000", + "0x1104800180018000", + "0x800000000000010ffffffffffffffffffffffffffffffffffffffffffffffed", + "0x480a7ffa7fff8000", + "0x48127ffe7fff8000", + "0x480a7ffd7fff8000", + "0x1104800180018000", + "0x800000000000010fffffffffffffffffffffffffffffffffffffffffffffe47", + "0x48127ff67fff8000", + "0x48127ff67fff8000", + "0x208b7fff7fff7ffe", + "0x480a7ffc7fff8000", + "0x480a7ffd7fff8000", + "0x480680017fff8000", + "0x1f0d4aa99431d246bac9b8e48c33e888245b15e9678f64f9bdfc8823dc8f979", + "0x208b7fff7fff7ffe", + "0x480a7ffc7fff8000", + "0x480a7ffd7fff8000", + "0x1104800180018000", + "0x800000000000010fffffffffffffffffffffffffffffffffffffffffffffffa", + "0x480a7ffb7fff8000", + "0x48127ffe7fff8000", + "0x1104800180018000", + "0x800000000000010fffffffffffffffffffffffffffffffffffffffffffffe2f", + "0x48127ffe7fff8000", + "0x48127ff57fff8000", + "0x48127ff57fff8000", + "0x48127ffc7fff8000", + "0x208b7fff7fff7ffe", + "0x480a7ffb7fff8000", + "0x480a7ffc7fff8000", + "0x1104800180018000", + "0x800000000000010ffffffffffffffffffffffffffffffffffffffffffffffed", + "0x480a7ffa7fff8000", + "0x48127ffe7fff8000", + "0x480a7ffd7fff8000", + "0x1104800180018000", + "0x800000000000010fffffffffffffffffffffffffffffffffffffffffffffe29", + "0x48127ff67fff8000", + "0x48127ff67fff8000", + "0x208b7fff7fff7ffe", + "0x480a7ffc7fff8000", + "0x480a7ffd7fff8000", + "0x480680017fff8000", + "0x110e2f729c9c2b988559994a3daccd838cf52faf88e18101373e67dd061455a", + "0x208b7fff7fff7ffe", + "0x480a7ffc7fff8000", + "0x480a7ffd7fff8000", + "0x1104800180018000", + "0x800000000000010fffffffffffffffffffffffffffffffffffffffffffffffa", + "0x480a7ffb7fff8000", + "0x48127ffe7fff8000", + "0x1104800180018000", + "0x800000000000010fffffffffffffffffffffffffffffffffffffffffffffe11", + "0x48127ffe7fff8000", + "0x482480017ff78000", + "0x1", + "0x1104800180018000", + "0x800000000000010fffffffffffffffffffffffffffffffffffffffffffffe0c", + "0x48127ffe7fff8000", + "0x48127fee7fff8000", + "0x48127fee7fff8000", + "0x48127ff57fff8000", + "0x48127ffb7fff8000", + "0x208b7fff7fff7ffe", + "0x480a7ffa7fff8000", + "0x480a7ffb7fff8000", + "0x1104800180018000", + "0x800000000000010ffffffffffffffffffffffffffffffffffffffffffffffe7", + "0x480a7ff97fff8000", + "0x48127ffe7fff8000", + "0x480a7ffc7fff8000", + "0x1104800180018000", + "0x800000000000010fffffffffffffffffffffffffffffffffffffffffffffe05", + "0x482480017ff88000", + "0x1", + "0x480a7ffd7fff8000", + "0x1104800180018000", + "0x800000000000010fffffffffffffffffffffffffffffffffffffffffffffe00", + "0x48127ff07fff8000", + "0x48127ff07fff8000", + "0x208b7fff7fff7ffe", + "0x480a7ffb7fff8000", + "0x480680017fff8000", + "0x3a4e8ec16e258a799fe707996fd5d21d42b29adc1499a370edf7f809d8c458a", + "0x480a7ffd7fff8000", + "0x1104800180018000", + "0x800000000000010fffffffffffffffffffffffffffffffffffffffffffffde2", + "0x480a7ffc7fff8000", + "0x48127ffe7fff8000", + "0x1104800180018000", + "0x800000000000010fffffffffffffffffffffffffffffffffffffffffffffe4d", + "0x48127fe17fff8000", + "0x48127ffd7fff8000", + "0x48127ffd7fff8000", + "0x208b7fff7fff7ffe", + "0x480a7ffb7fff8000", + "0x480a7ffc7fff8000", + "0x480a7ffd7fff8000", + "0x1104800180018000", + "0x800000000000010fffffffffffffffffffffffffffffffffffffffffffffff0", + "0x480a7ffa7fff8000", + "0x48127ffe7fff8000", + "0x1104800180018000", + "0x800000000000010fffffffffffffffffffffffffffffffffffffffffffffdde", + "0x48127ffe7fff8000", + "0x482480017ff78000", + "0x1", + "0x1104800180018000", + "0x800000000000010fffffffffffffffffffffffffffffffffffffffffffffdd9", + "0x48127ffe7fff8000", + "0x48127fee7fff8000", + "0x48127fee7fff8000", + "0x48127ff57fff8000", + "0x48127ffb7fff8000", + "0x208b7fff7fff7ffe", + "0x480a7ff97fff8000", + "0x480a7ffa7fff8000", + "0x480a7ffb7fff8000", + "0x1104800180018000", + "0x800000000000010ffffffffffffffffffffffffffffffffffffffffffffffdc", + "0x480a7ff87fff8000", + "0x48127ffe7fff8000", + "0x480a7ffc7fff8000", + "0x1104800180018000", + "0x800000000000010fffffffffffffffffffffffffffffffffffffffffffffdd1", + "0x482480017ff88000", + "0x1", + "0x480a7ffd7fff8000", + "0x1104800180018000", + "0x800000000000010fffffffffffffffffffffffffffffffffffffffffffffdcc", + "0x48127ff07fff8000", + "0x48127ff07fff8000", + "0x208b7fff7fff7ffe", + "0x480a7ffa7fff8000", + "0x480680017fff8000", + "0x3c87bf42ed4f01f11883bf54f43d91d2cbbd5fec26d1df9c74c57ae138800a4", + "0x480a7ffc7fff8000", + "0x1104800180018000", + "0x800000000000010fffffffffffffffffffffffffffffffffffffffffffffdae", + "0x480a7ffd7fff8000", + "0x1104800180018000", + "0x800000000000010fffffffffffffffffffffffffffffffffffffffffffffdab", + "0x480a7ffb7fff8000", + "0x48127ffe7fff8000", + "0x1104800180018000", + "0x800000000000010fffffffffffffffffffffffffffffffffffffffffffffe16", + "0x48127fe17fff8000", + "0x48127ffd7fff8000", + "0x48127ffd7fff8000", + "0x208b7fff7fff7ffe", + "0x480a7ffa7fff8000", + "0x480a7ffb7fff8000", + "0x480a7ffc7fff8000", + "0x480a7ffd7fff8000", + "0x1104800180018000", + "0x800000000000010ffffffffffffffffffffffffffffffffffffffffffffffec", + "0x480a7ff97fff8000", + "0x48127ffe7fff8000", + "0x1104800180018000", + "0x800000000000010fffffffffffffffffffffffffffffffffffffffffffffda6", + "0x48127ffe7fff8000", + "0x482480017ff78000", + "0x1", + "0x1104800180018000", + "0x800000000000010fffffffffffffffffffffffffffffffffffffffffffffda1", + "0x48127ffe7fff8000", + "0x48127fee7fff8000", + "0x48127fee7fff8000", + "0x48127ff57fff8000", + "0x48127ffb7fff8000", + "0x208b7fff7fff7ffe", + "0x480a7ff87fff8000", + "0x480a7ff97fff8000", + "0x480a7ffa7fff8000", + "0x480a7ffb7fff8000", + "0x1104800180018000", + "0x800000000000010ffffffffffffffffffffffffffffffffffffffffffffffd7", + "0x480a7ff77fff8000", + "0x48127ffe7fff8000", + "0x480a7ffc7fff8000", + "0x1104800180018000", + "0x800000000000010fffffffffffffffffffffffffffffffffffffffffffffd98", + "0x482480017ff88000", + "0x1", + "0x480a7ffd7fff8000", + "0x1104800180018000", + "0x800000000000010fffffffffffffffffffffffffffffffffffffffffffffd93", + "0x48127ff07fff8000", + "0x48127ff07fff8000", + "0x208b7fff7fff7ffe", + "0x480a7ff87fff8000", + "0x480a7ff97fff8000", + "0x480a7ffa7fff8000", + "0x480a7ffb7fff8000", + "0x1104800180018000", + "0x800000000000010ffffffffffffffffffffffffffffffffffffffffffffff1f", + "0x480a7ffc7fff8000", + "0x1104800180018000", + "0x800000000000010ffffffffffffffffffffffffffffffffffffffffffffff3a", + "0x480a7ffd7fff8000", + "0x480680017fff8000", + "0xff", + "0x1104800180018000", + "0x800000000000010fffffffffffffffffffffffffffffffffffffffffffffd9d", + "0x48127ff47fff8000", + "0x48127ff47fff8000", + "0x48127ffd7fff8000", + "0x480a7ffd7fff8000", + "0x1104800180018000", + "0x800000000000010ffffffffffffffffffffffffffffffffffffffffffffff4d", + "0x208b7fff7fff7ffe", + "0x480a7ffb7fff8000", + "0x480a7ffc7fff8000", + "0x480a7ffd7fff8000", + "0x1104800180018000", + "0x800000000000010fffffffffffffffffffffffffffffffffffffffffffffefe", + "0x208b7fff7fff7ffe", + "0x480a7ffb7fff8000", + "0x480a7ffc7fff8000", + "0x480a7ffd7fff8000", + "0x1104800180018000", + "0x800000000000010ffffffffffffffffffffffffffffffffffffffffffffff16", + "0x208b7fff7fff7ffe", + "0x480a7ffb7fff8000", + "0x480a7ffc7fff8000", + "0x480a7ffd7fff8000", + "0x1104800180018000", + "0x800000000000010ffffffffffffffffffffffffffffffffffffffffffffff4c", + "0x208b7fff7fff7ffe", + "0x480a7ffb7fff8000", + "0x480a7ffc7fff8000", + "0x480a7ffd7fff8000", + "0x1104800180018000", + "0x800000000000010ffffffffffffffffffffffffffffffffffffffffffffff28", + "0x208b7fff7fff7ffe", + "0x480a7ffa7fff8000", + "0x480a7ffb7fff8000", + "0x480a7ffc7fff8000", + "0x480a7ffd7fff8000", + "0x1104800180018000", + "0x800000000000010ffffffffffffffffffffffffffffffffffffffffffffff71", + "0x208b7fff7fff7ffe", + "0x480a7ff97fff8000", + "0x480a7ffa7fff8000", + "0x480a7ffb7fff8000", + "0x480a7ffc7fff8000", + "0x480a7ffd7fff8000", + "0x1104800180018000", + "0x800000000000010ffffffffffffffffffffffffffffffffffffffffffffffa0", + "0x208b7fff7fff7ffe", + "0x480a7ff87fff8000", + "0x1104800180018000", + "0x800000000000010fffffffffffffffffffffffffffffffffffffffffffffd42", + "0x48127ffe7fff8000", + "0x480a7ff97fff8000", + "0x480a7ffa7fff8000", + "0x48127ffc7fff8000", + "0x480a7ffb7fff8000", + "0x480a7ffc7fff8000", + "0x480a7ffd7fff8000", + "0x1104800180018000", + "0xa2", + "0x480680017fff8000", + "0x1", + "0x208b7fff7fff7ffe", + "0x480a7ff77fff8000", + "0x1104800180018000", + "0x800000000000010fffffffffffffffffffffffffffffffffffffffffffffd33", + "0x48127ffe7fff8000", + "0x480a7ff87fff8000", + "0x480a7ff97fff8000", + "0x480a7ffa7fff8000", + "0x48127ffb7fff8000", + "0x480a7ffc7fff8000", + "0x480a7ffd7fff8000", + "0x1104800180018000", + "0xeb", + "0x480a7ffa7fff8000", + "0x480a7ffb7fff8000", + "0x480a7ffc7fff8000", + "0x480a7ffd7fff8000", + "0x1104800180018000", + "0x8d", + "0x480680017fff8000", + "0x1", + "0x208b7fff7fff7ffe", + "0x480a7ffa7fff8000", + "0x480a7ffc7fff8000", + "0x480a7ffd7fff8000", + "0x1104800180018000", + "0x800000000000010fffffffffffffffffffffffffffffffffffffffffffffdd3", + "0x480a7ff87fff8000", + "0x1104800180018000", + "0x800000000000010fffffffffffffffffffffffffffffffffffffffffffffd19", + "0x48127ffe7fff8000", + "0x480a7ff97fff8000", + "0x48127ff77fff8000", + "0x48127ffc7fff8000", + "0x480a7ffb7fff8000", + "0x480a7ffc7fff8000", + "0x480a7ffd7fff8000", + "0x1104800180018000", + "0xb1", + "0x480680017fff8000", + "0x1", + "0x208b7fff7fff7ffe", + "0x480a7ffa7fff8000", + "0x480a7ffc7fff8000", + "0x480a7ffd7fff8000", + "0x1104800180018000", + "0x800000000000010fffffffffffffffffffffffffffffffffffffffffffffdbf", + "0x480a7ff87fff8000", + "0x1104800180018000", + "0x800000000000010fffffffffffffffffffffffffffffffffffffffffffffd05", + "0x48127ffe7fff8000", + "0x480a7ff97fff8000", + "0x48127ff77fff8000", + "0x48127ffc7fff8000", + "0x480a7ffb7fff8000", + "0x1104800180018000", + "0x800000000000010ffffffffffffffffffffffffffffffffffffffffffffff58", + "0x480a7ffc7fff8000", + "0x480a7ffd7fff8000", + "0x1104800180018000", + "0x800000000000010fffffffffffffffffffffffffffffffffffffffffffffe26", + "0x48127fd17fff8000", + "0x48127fd17fff8000", + "0x48127ffb7fff8000", + "0x48127f867fff8000", + "0x480a7ffb7fff8000", + "0x48127ff97fff8000", + "0x48127ff97fff8000", + "0x1104800180018000", + "0x92", + "0x480680017fff8000", + "0x1", + "0x208b7fff7fff7ffe", + "0x40780017fff7fff", + "0x0", + "0x480a7ffa7fff8000", + "0x480a7ffc7fff8000", + "0x480a7ffd7fff8000", + "0x1104800180018000", + "0x800000000000010fffffffffffffffffffffffffffffffffffffffffffffd9e", + "0x480a7ff87fff8000", + "0x1104800180018000", + "0x800000000000010fffffffffffffffffffffffffffffffffffffffffffffce4", + "0x48127ffe7fff8000", + "0x480a7ff97fff8000", + "0x48127ff77fff8000", + "0x48127ffc7fff8000", + "0x480a7ffb7fff8000", + "0x1104800180018000", + "0x800000000000010ffffffffffffffffffffffffffffffffffffffffffffff37", + "0x480a7ffc7fff8000", + "0x480a7ffd7fff8000", + "0x1104800180018000", + "0x800000000000010fffffffffffffffffffffffffffffffffffffffffffffe1a", + "0x48127f707fff8000", + "0x48127f707fff8000", + "0x48127ffb7fff8000", + "0x48127f257fff8000", + "0x480a7ffb7fff8000", + "0x48127ff97fff8000", + "0x48127ff97fff8000", + "0x1104800180018000", + "0x71", + "0x480680017fff8000", + "0x1", + "0x208b7fff7fff7ffe", + "0x480a7ffa7fff8000", + "0x480a7ffc7fff8000", + "0x480a7ffd7fff8000", + "0x1104800180018000", + "0x800000000000010fffffffffffffffffffffffffffffffffffffffffffffd7f", + "0x480a7ffb7fff8000", + "0x1104800180018000", + "0x800000000000010fffffffffffffffffffffffffffffffffffffffffffffce6", + "0x480a7ff87fff8000", + "0x480a7ff97fff8000", + "0x48127ffa7fff8000", + "0x1104800180018000", + "0x800000000000010fffffffffffffffffffffffffffffffffffffffffffffeb1", + "0x480a7ffc7fff8000", + "0x480a7ffd7fff8000", + "0x1104800180018000", + "0x800000000000010fffffffffffffffffffffffffffffffffffffffffffffde8", + "0x48127fd17fff8000", + "0x48127fd17fff8000", + "0x48127ffb7fff8000", + "0x48127ffb7fff8000", + "0x48127ffb7fff8000", + "0x1104800180018000", + "0x800000000000010fffffffffffffffffffffffffffffffffffffffffffffeb9", + "0x480a7ffb7fff8000", + "0x1104800180018000", + "0x800000000000010fffffffffffffffffffffffffffffffffffffffffffffed5", + "0x480a7ffc7fff8000", + "0x480a7ffd7fff8000", + "0x1104800180018000", + "0x800000000000010fffffffffffffffffffffffffffffffffffffffffffffdda", + "0x48127fd17fff8000", + "0x48127fd17fff8000", + "0x48127ffb7fff8000", + "0x480a7ffb7fff8000", + "0x48127ffa7fff8000", + "0x48127ffa7fff8000", + "0x1104800180018000", + "0x800000000000010fffffffffffffffffffffffffffffffffffffffffffffedd", + "0x48127ffd7fff8000", + "0x48127ffe7fff8000", + "0x480680017fff8000", + "0x0", + "0x480a7ffb7fff8000", + "0x480a7ffc7fff8000", + "0x480a7ffd7fff8000", + "0x1104800180018000", + "0x800000000000010fffffffffffffffffffffffffffffffffffffffffffffdf9", + "0x48127ffe7fff8000", + "0x48127fe17fff8000", + "0x48127ffd7fff8000", + "0x208b7fff7fff7ffe", + "0x480a7ff97fff8000", + "0x480a7ffc7fff8000", + "0x480a7ffd7fff8000", + "0x1104800180018000", + "0x800000000000010fffffffffffffffffffffffffffffffffffffffffffffd4b", + "0x480a7ffa7fff8000", + "0x1104800180018000", + "0x800000000000010fffffffffffffffffffffffffffffffffffffffffffffcb2", + "0x480a7ffb7fff8000", + "0x1104800180018000", + "0x800000000000010fffffffffffffffffffffffffffffffffffffffffffffcaf", + "0x480a7ff77fff8000", + "0x480a7ff87fff8000", + "0x48127ff77fff8000", + "0x480a7ffa7fff8000", + "0x1104800180018000", + "0x800000000000010fffffffffffffffffffffffffffffffffffffffffffffeab", + "0x480a7ffc7fff8000", + "0x480a7ffd7fff8000", + "0x1104800180018000", + "0x800000000000010fffffffffffffffffffffffffffffffffffffffffffffdc5", + "0x48127f707fff8000", + "0x48127f707fff8000", + "0x48127ffb7fff8000", + "0x480a7ffa7fff8000", + "0x48127ffa7fff8000", + "0x48127ffa7fff8000", + "0x1104800180018000", + "0x800000000000010fffffffffffffffffffffffffffffffffffffffffffffeb3", + "0x480a7ffb7fff8000", + "0x1104800180018000", + "0x800000000000010fffffffffffffffffffffffffffffffffffffffffffffe9c", + "0x480a7ffc7fff8000", + "0x480a7ffd7fff8000", + "0x1104800180018000", + "0x800000000000010fffffffffffffffffffffffffffffffffffffffffffffda1", + "0x48127fd17fff8000", + "0x48127fd17fff8000", + "0x48127ffb7fff8000", + "0x480a7ffb7fff8000", + "0x48127ffa7fff8000", + "0x48127ffa7fff8000", + "0x1104800180018000", + "0x800000000000010fffffffffffffffffffffffffffffffffffffffffffffea4", + "0x48127ffd7fff8000", + "0x48127ffe7fff8000", + "0x480a7ffa7fff8000", + "0x480a7ffb7fff8000", + "0x480a7ffc7fff8000", + "0x480a7ffd7fff8000", + "0x1104800180018000", + "0x800000000000010fffffffffffffffffffffffffffffffffffffffffffffdc1", + "0x48127ffe7fff8000", + "0x48127fe17fff8000", + "0x48127ffd7fff8000", + "0x208b7fff7fff7ffe", + "0x480a7ff97fff8000", + "0x480a7ffc7fff8000", + "0x480a7ffd7fff8000", + "0x1104800180018000", + "0x800000000000010fffffffffffffffffffffffffffffffffffffffffffffd13", + "0x480a7ffa7fff8000", + "0x1104800180018000", + "0x800000000000010fffffffffffffffffffffffffffffffffffffffffffffc7a", + "0x480a7ffb7fff8000", + "0x1104800180018000", + "0x800000000000010fffffffffffffffffffffffffffffffffffffffffffffc77", + "0x480a7ff77fff8000", + "0x480a7ff87fff8000", + "0x48127ff77fff8000", + "0x480a7ffa7fff8000", + "0x480a7ffb7fff8000", + "0x480a7ffc7fff8000", + "0x480a7ffd7fff8000", + "0x1104800180018000", + "0x800000000000010fffffffffffffffffffffffffffffffffffffffffffffebc", + "0x48127ffd7fff8000", + "0x48127ffe7fff8000", + "0x480a7ffa7fff8000", + "0x480a7ffb7fff8000", + "0x480a7ffc7fff8000", + "0x480a7ffd7fff8000", + "0x1104800180018000", + "0x800000000000010fffffffffffffffffffffffffffffffffffffffffffffdbc", + "0x48127ffe7fff8000", + "0x48127fe17fff8000", + "0x48127ffd7fff8000", + "0x208b7fff7fff7ffe", + "0x40780017fff7fff", + "0x4", + "0x480a7ff97fff8000", + "0x480a7ffc7fff8000", + "0x480a7ffd7fff8000", + "0x1104800180018000", + "0x800000000000010fffffffffffffffffffffffffffffffffffffffffffffcf1", + "0x480a7ff77fff8000", + "0x480a7ff87fff8000", + "0x48127ffd7fff8000", + "0x480a7ffa7fff8000", + "0x480a7ffb7fff8000", + "0x1104800180018000", + "0x800000000000010fffffffffffffffffffffffffffffffffffffffffffffe8d", + "0x40137ffe7fff8000", + "0x40137fff7fff8001", + "0x40137ffb7fff8002", + "0x40137ffc7fff8003", + "0x48127ffd7fff8000", + "0x480680017fff8000", + "0x0", + "0x480680017fff8000", + "0x0", + "0x1104800180018000", + "0x800000000000010fffffffffffffffffffffffffffffffffffffffffffffd17", + "0x48127ffd7fff8000", + "0x480a80007fff8000", + "0x480a80017fff8000", + "0x48127ffb7fff8000", + "0x48127ffb7fff8000", + "0x1104800180018000", + "0x800000000000010fffffffffffffffffffffffffffffffffffffffffffffd37", + "0x20680017fff7fff", + "0x13", + "0x48127ffe7fff8000", + "0x480a80007fff8000", + "0x480a80017fff8000", + "0x480a7ffc7fff8000", + "0x480a7ffd7fff8000", + "0x1104800180018000", + "0x800000000000010fffffffffffffffffffffffffffffffffffffffffffffd59", + "0x480a80027fff8000", + "0x480a80037fff8000", + "0x48127ffb7fff8000", + "0x480a7ffa7fff8000", + "0x480a7ffb7fff8000", + "0x48127ff97fff8000", + "0x48127ff97fff8000", + "0x1104800180018000", + "0x800000000000010ffffffffffffffffffffffffffffffffffffffffffffffb1", + "0x208b7fff7fff7ffe", + "0x480a80027fff8000", + "0x480a80037fff8000", + "0x48127ffc7fff8000", + "0x208b7fff7fff7ffe", + "0x480a7ff87fff8000", + "0x480a7ff97fff8000", + "0x480a7ffa7fff8000", + "0x480a7ffb7fff8000", + "0x480a7ffc7fff8000", + "0x480a7ffd7fff8000", + "0x1104800180018000", + "0x800000000000010fffffffffffffffffffffffffffffffffffffffffffffe84", + "0x208b7fff7fff7ffe", + "0x482680017ffd8000", + "0x3", + "0x402a7ffd7ffc7fff", + "0x480280007ffb8000", + "0x480280017ffb8000", + "0x480280027ffb8000", + "0x480280007ffd8000", + "0x480280017ffd8000", + "0x480280027ffd8000", + "0x1104800180018000", + "0x800000000000010ffffffffffffffffffffffffffffffffffffffffffffffef", + "0x40780017fff7fff", + "0x1", + "0x48127ffc7fff8000", + "0x48127ffc7fff8000", + "0x48127ffc7fff8000", + "0x480680017fff8000", + "0x0", + "0x48127ffb7fff8000", + "0x208b7fff7fff7ffe", + "0x480a7ffb7fff8000", + "0x480a7ffc7fff8000", + "0x480a7ffd7fff8000", + "0x1104800180018000", + "0x800000000000010fffffffffffffffffffffffffffffffffffffffffffffe7f", + "0x208b7fff7fff7ffe", + "0x40780017fff7fff", + "0x1", + "0x4003800080007ffc", + "0x4826800180008000", + "0x1", + "0x480a7ffd7fff8000", + "0x4828800080007ffe", + "0x480a80007fff8000", + "0x208b7fff7fff7ffe", + "0x402b7ffd7ffc7ffd", + "0x480280007ffb8000", + "0x480280017ffb8000", + "0x480280027ffb8000", + "0x1104800180018000", + "0x800000000000010ffffffffffffffffffffffffffffffffffffffffffffffee", + "0x48127ffe7fff8000", + "0x1104800180018000", + "0x800000000000010fffffffffffffffffffffffffffffffffffffffffffffff1", + "0x48127ff47fff8000", + "0x48127ff47fff8000", + "0x48127ffb7fff8000", + "0x48127ffb7fff8000", + "0x48127ffb7fff8000", + "0x208b7fff7fff7ffe", + "0x480a7ffb7fff8000", + "0x480a7ffc7fff8000", + "0x480a7ffd7fff8000", + "0x1104800180018000", + "0x800000000000010fffffffffffffffffffffffffffffffffffffffffffffe67", + "0x208b7fff7fff7ffe", + "0x40780017fff7fff", + "0x1", + "0x4003800080007ffc", + "0x4826800180008000", + "0x1", + "0x480a7ffd7fff8000", + "0x4828800080007ffe", + "0x480a80007fff8000", + "0x208b7fff7fff7ffe", + "0x402b7ffd7ffc7ffd", + "0x480280007ffb8000", + "0x480280017ffb8000", + "0x480280027ffb8000", + "0x1104800180018000", + "0x800000000000010ffffffffffffffffffffffffffffffffffffffffffffffee", + "0x48127ffe7fff8000", + "0x1104800180018000", + "0x800000000000010fffffffffffffffffffffffffffffffffffffffffffffff1", + "0x48127ff47fff8000", + "0x48127ff47fff8000", + "0x48127ffb7fff8000", + "0x48127ffb7fff8000", + "0x48127ffb7fff8000", + "0x208b7fff7fff7ffe", + "0x480a7ffb7fff8000", + "0x480a7ffc7fff8000", + "0x480a7ffd7fff8000", + "0x1104800180018000", + "0x800000000000010fffffffffffffffffffffffffffffffffffffffffffffe4f", + "0x208b7fff7fff7ffe", + "0x40780017fff7fff", + "0x1", + "0x4003800080007ffb", + "0x4003800180007ffc", + "0x4826800180008000", + "0x2", + "0x480a7ffd7fff8000", + "0x4828800080007ffe", + "0x480a80007fff8000", + "0x208b7fff7fff7ffe", + "0x402b7ffd7ffc7ffd", + "0x480280007ffb8000", + "0x480280017ffb8000", + "0x480280027ffb8000", + "0x1104800180018000", + "0x800000000000010ffffffffffffffffffffffffffffffffffffffffffffffed", + "0x48127ffd7fff8000", + "0x1104800180018000", + "0x800000000000010fffffffffffffffffffffffffffffffffffffffffffffff0", + "0x48127ff37fff8000", + "0x48127ff37fff8000", + "0x48127ffb7fff8000", + "0x48127ffb7fff8000", + "0x48127ffb7fff8000", + "0x208b7fff7fff7ffe", + "0x480a7ffb7fff8000", + "0x480a7ffc7fff8000", + "0x480a7ffd7fff8000", + "0x1104800180018000", + "0x800000000000010fffffffffffffffffffffffffffffffffffffffffffffe36", + "0x208b7fff7fff7ffe", + "0x40780017fff7fff", + "0x1", + "0x4003800080007ffc", + "0x4826800180008000", + "0x1", + "0x480a7ffd7fff8000", + "0x4828800080007ffe", + "0x480a80007fff8000", + "0x208b7fff7fff7ffe", + "0x402b7ffd7ffc7ffd", + "0x480280007ffb8000", + "0x480280017ffb8000", + "0x480280027ffb8000", + "0x1104800180018000", + "0x800000000000010ffffffffffffffffffffffffffffffffffffffffffffffee", + "0x48127ffe7fff8000", + "0x1104800180018000", + "0x800000000000010fffffffffffffffffffffffffffffffffffffffffffffff1", + "0x48127ff47fff8000", + "0x48127ff47fff8000", + "0x48127ffb7fff8000", + "0x48127ffb7fff8000", + "0x48127ffb7fff8000", + "0x208b7fff7fff7ffe", + "0x480a7ffa7fff8000", + "0x480a7ffb7fff8000", + "0x480a7ffc7fff8000", + "0x480a7ffd7fff8000", + "0x1104800180018000", + "0x800000000000010fffffffffffffffffffffffffffffffffffffffffffffe1d", + "0x208b7fff7fff7ffe", + "0x40780017fff7fff", + "0x1", + "0x4003800080007ffb", + "0x4003800180007ffc", + "0x4826800180008000", + "0x2", + "0x480a7ffd7fff8000", + "0x4828800080007ffe", + "0x480a80007fff8000", + "0x208b7fff7fff7ffe", + "0x482680017ffd8000", + "0x1", + "0x402a7ffd7ffc7fff", + "0x480280007ffb8000", + "0x480280017ffb8000", + "0x480280027ffb8000", + "0x480280007ffd8000", + "0x1104800180018000", + "0x800000000000010ffffffffffffffffffffffffffffffffffffffffffffffe9", + "0x48127ffd7fff8000", + "0x1104800180018000", + "0x800000000000010ffffffffffffffffffffffffffffffffffffffffffffffed", + "0x48127ff37fff8000", + "0x48127ff37fff8000", + "0x48127ffb7fff8000", + "0x48127ffb7fff8000", + "0x48127ffb7fff8000", + "0x208b7fff7fff7ffe", + "0x480a7ff97fff8000", + "0x480a7ffa7fff8000", + "0x480a7ffb7fff8000", + "0x480a7ffc7fff8000", + "0x480a7ffd7fff8000", + "0x1104800180018000", + "0x800000000000010fffffffffffffffffffffffffffffffffffffffffffffe00", + "0x208b7fff7fff7ffe", + "0x40780017fff7fff", + "0x1", + "0x4003800080007ffb", + "0x4003800180007ffc", + "0x4826800180008000", + "0x2", + "0x480a7ffd7fff8000", + "0x4828800080007ffe", + "0x480a80007fff8000", + "0x208b7fff7fff7ffe", + "0x482680017ffd8000", + "0x2", + "0x402a7ffd7ffc7fff", + "0x480280007ffb8000", + "0x480280017ffb8000", + "0x480280027ffb8000", + "0x480280007ffd8000", + "0x480280017ffd8000", + "0x1104800180018000", + "0x800000000000010ffffffffffffffffffffffffffffffffffffffffffffffe7", + "0x48127ffd7fff8000", + "0x1104800180018000", + "0x800000000000010ffffffffffffffffffffffffffffffffffffffffffffffec", + "0x48127ff37fff8000", + "0x48127ff37fff8000", + "0x48127ffb7fff8000", + "0x48127ffb7fff8000", + "0x48127ffb7fff8000", + "0x208b7fff7fff7ffe", + "0x480a7ff87fff8000", + "0x480a7ff97fff8000", + "0x480a7ffa7fff8000", + "0x480a7ffb7fff8000", + "0x480a7ffc7fff8000", + "0x480a7ffd7fff8000", + "0x1104800180018000", + "0x800000000000010fffffffffffffffffffffffffffffffffffffffffffffe5a", + "0x208b7fff7fff7ffe", + "0x482680017ffd8000", + "0x3", + "0x402a7ffd7ffc7fff", + "0x480280007ffb8000", + "0x480280017ffb8000", + "0x480280027ffb8000", + "0x480280007ffd8000", + "0x480280017ffd8000", + "0x480280027ffd8000", + "0x1104800180018000", + "0x800000000000010ffffffffffffffffffffffffffffffffffffffffffffffef", + "0x40780017fff7fff", + "0x1", + "0x48127ffc7fff8000", + "0x48127ffc7fff8000", + "0x48127ffc7fff8000", + "0x480680017fff8000", + "0x0", + "0x48127ffb7fff8000", + "0x208b7fff7fff7ffe", + "0x480a7ff87fff8000", + "0x480a7ff97fff8000", + "0x480a7ffa7fff8000", + "0x480a7ffb7fff8000", + "0x480a7ffc7fff8000", + "0x480a7ffd7fff8000", + "0x1104800180018000", + "0x800000000000010fffffffffffffffffffffffffffffffffffffffffffffdc5", + "0x208b7fff7fff7ffe", + "0x40780017fff7fff", + "0x1", + "0x4003800080007ffc", + "0x4826800180008000", + "0x1", + "0x480a7ffd7fff8000", + "0x4828800080007ffe", + "0x480a80007fff8000", + "0x208b7fff7fff7ffe", + "0x482680017ffd8000", + "0x3", + "0x402a7ffd7ffc7fff", + "0x480280007ffb8000", + "0x480280017ffb8000", + "0x480280027ffb8000", + "0x480280007ffd8000", + "0x480280017ffd8000", + "0x480280027ffd8000", + "0x1104800180018000", + "0x800000000000010ffffffffffffffffffffffffffffffffffffffffffffffe6", + "0x48127ffe7fff8000", + "0x1104800180018000", + "0x800000000000010ffffffffffffffffffffffffffffffffffffffffffffffec", + "0x48127ff47fff8000", + "0x48127ff47fff8000", + "0x48127ffb7fff8000", + "0x48127ffb7fff8000", + "0x48127ffb7fff8000", + "0x208b7fff7fff7ffe", + "0x480a7ff77fff8000", + "0x480a7ff87fff8000", + "0x480a7ff97fff8000", + "0x480a7ffa7fff8000", + "0x480a7ffb7fff8000", + "0x480a7ffc7fff8000", + "0x480a7ffd7fff8000", + "0x1104800180018000", + "0x800000000000010fffffffffffffffffffffffffffffffffffffffffffffdad", + "0x208b7fff7fff7ffe", + "0x40780017fff7fff", + "0x1", + "0x4003800080007ffc", + "0x4826800180008000", + "0x1", + "0x480a7ffd7fff8000", + "0x4828800080007ffe", + "0x480a80007fff8000", + "0x208b7fff7fff7ffe", + "0x482680017ffd8000", + "0x4", + "0x402a7ffd7ffc7fff", + "0x480280007ffb8000", + "0x480280017ffb8000", + "0x480280027ffb8000", + "0x480280007ffd8000", + "0x480280017ffd8000", + "0x480280027ffd8000", + "0x480280037ffd8000", + "0x1104800180018000", + "0x800000000000010ffffffffffffffffffffffffffffffffffffffffffffffe4", + "0x48127ffe7fff8000", + "0x1104800180018000", + "0x800000000000010ffffffffffffffffffffffffffffffffffffffffffffffeb", + "0x48127ff47fff8000", + "0x48127ff47fff8000", + "0x48127ffb7fff8000", + "0x48127ffb7fff8000", + "0x48127ffb7fff8000", + "0x208b7fff7fff7ffe", + "0x480a7ff87fff8000", + "0x480a7ff97fff8000", + "0x480a7ffa7fff8000", + "0x480a7ffb7fff8000", + "0x480a7ffc7fff8000", + "0x480a7ffd7fff8000", + "0x1104800180018000", + "0x800000000000010fffffffffffffffffffffffffffffffffffffffffffffd9b", + "0x208b7fff7fff7ffe", + "0x40780017fff7fff", + "0x1", + "0x4003800080007ffc", + "0x4826800180008000", + "0x1", + "0x480a7ffd7fff8000", + "0x4828800080007ffe", + "0x480a80007fff8000", + "0x208b7fff7fff7ffe", + "0x482680017ffd8000", + "0x3", + "0x402a7ffd7ffc7fff", + "0x480280007ffb8000", + "0x480280017ffb8000", + "0x480280027ffb8000", + "0x480280007ffd8000", + "0x480280017ffd8000", + "0x480280027ffd8000", + "0x1104800180018000", + "0x800000000000010ffffffffffffffffffffffffffffffffffffffffffffffe6", + "0x48127ffe7fff8000", + "0x1104800180018000", + "0x800000000000010ffffffffffffffffffffffffffffffffffffffffffffffec", + "0x48127ff47fff8000", + "0x48127ff47fff8000", + "0x48127ffb7fff8000", + "0x48127ffb7fff8000", + "0x48127ffb7fff8000", + "0x208b7fff7fff7ffe", + "0x480a7ff87fff8000", + "0x480a7ff97fff8000", + "0x480a7ffa7fff8000", + "0x480a7ffb7fff8000", + "0x480a7ffc7fff8000", + "0x480a7ffd7fff8000", + "0x1104800180018000", + "0x800000000000010fffffffffffffffffffffffffffffffffffffffffffffd89", + "0x208b7fff7fff7ffe", + "0x40780017fff7fff", + "0x1", + "0x4003800080007ffc", + "0x4826800180008000", + "0x1", + "0x480a7ffd7fff8000", + "0x4828800080007ffe", + "0x480a80007fff8000", + "0x208b7fff7fff7ffe", + "0x482680017ffd8000", + "0x3", + "0x402a7ffd7ffc7fff", + "0x480280007ffb8000", + "0x480280017ffb8000", + "0x480280027ffb8000", + "0x480280007ffd8000", + "0x480280017ffd8000", + "0x480280027ffd8000", + "0x1104800180018000", + "0x800000000000010ffffffffffffffffffffffffffffffffffffffffffffffe6", + "0x48127ffe7fff8000", + "0x1104800180018000", + "0x800000000000010ffffffffffffffffffffffffffffffffffffffffffffffec", + "0x48127ff47fff8000", + "0x48127ff47fff8000", + "0x48127ffb7fff8000", + "0x48127ffb7fff8000", + "0x48127ffb7fff8000", + "0x208b7fff7fff7ffe", + "0x480a7ff87fff8000", + "0x480a7ff97fff8000", + "0x480a7ffa7fff8000", + "0x480a7ffb7fff8000", + "0x480a7ffc7fff8000", + "0x480a7ffd7fff8000", + "0x1104800180018000", + "0x800000000000010fffffffffffffffffffffffffffffffffffffffffffffd82", + "0x208b7fff7fff7ffe", + "0x40780017fff7fff", + "0x1", + "0x4003800080007ffc", + "0x4826800180008000", + "0x1", + "0x480a7ffd7fff8000", + "0x4828800080007ffe", + "0x480a80007fff8000", + "0x208b7fff7fff7ffe", + "0x482680017ffd8000", + "0x3", + "0x402a7ffd7ffc7fff", + "0x480280007ffb8000", + "0x480280017ffb8000", + "0x480280027ffb8000", + "0x480280007ffd8000", + "0x480280017ffd8000", + "0x480280027ffd8000", + "0x1104800180018000", + "0x800000000000010ffffffffffffffffffffffffffffffffffffffffffffffe6", + "0x48127ffe7fff8000", + "0x1104800180018000", + "0x800000000000010ffffffffffffffffffffffffffffffffffffffffffffffec", + "0x48127ff47fff8000", + "0x48127ff47fff8000", + "0x48127ffb7fff8000", + "0x48127ffb7fff8000", + "0x48127ffb7fff8000", + "0x208b7fff7fff7ffe" + ], + "debug_info": { + "file_contents": { + "autogen/starknet/arg_processor/01cba52f8515996bb9d7070bde81ff39281d096d7024a558efcba6e1fd2402cf.cairo": "assert [cast(fp + (-4), felt*)] = __calldata_actual_size;\n", + "autogen/starknet/arg_processor/088fc10f121c4edf0412d2bc1088f20f4b09fa1a3902dfc21b754224dcfd427e.cairo": "let __calldata_arg_subtracted_value = [\n cast(__calldata_ptr, starkware.cairo.common.uint256.Uint256*)];\nlet __calldata_ptr = __calldata_ptr + 2;\n", + "autogen/starknet/arg_processor/144fa44c78b9ff9755794c84d3169b8c097256057e7a09154cdae1a978b57fed.cairo": "let __calldata_arg_spender = [__calldata_ptr];\nlet __calldata_ptr = __calldata_ptr + 1;\n", + "autogen/starknet/arg_processor/2670bb539ede27446c75876e41bcf9ef5cab09b9eec143f3986635a545b089ab.cairo": "assert [__calldata_ptr] = to;\nlet __calldata_ptr = __calldata_ptr + 1;\n", + "autogen/starknet/arg_processor/2a6553d1cb026d6d486f03ea4f3c4e23a17d2c2fada60e20573741cc8edfdb84.cairo": "let __calldata_arg_sender = [__calldata_ptr];\nlet __calldata_ptr = __calldata_ptr + 1;\n", + "autogen/starknet/arg_processor/3635b1d7caa543a52376beeb37a143262ea6ffdf923d8e3676d9b27787e943c8.cairo": "assert [__return_value_ptr] = ret_value.symbol;\nlet __return_value_ptr = __return_value_ptr + 1;\n", + "autogen/starknet/arg_processor/4ea8e9956f949bdcf8a2402f5fbdc50c902b2a9cd6640c5bec657657d079f916.cairo": "let __calldata_arg_added_value = [\n cast(__calldata_ptr, starkware.cairo.common.uint256.Uint256*)];\nlet __calldata_ptr = __calldata_ptr + 2;\n", + "autogen/starknet/arg_processor/5c10028f67364b153272aa9b4cbc0fb78920a40fab821ac7257b0069e0773b49.cairo": "assert [__return_value_ptr] = ret_value.success;\nlet __return_value_ptr = __return_value_ptr + 1;\n", + "autogen/starknet/arg_processor/6f345e20daf86e05c346aa1f6a9eeaa296a59eb71a12784c017d25ed5b25ff32.cairo": "assert [__return_value_ptr] = ret_value.name;\nlet __return_value_ptr = __return_value_ptr + 1;\n", + "autogen/starknet/arg_processor/7e247556a8b9bc505c1e503bda1dbcb424caa8925f45ae18cdde008e8b84b376.cairo": "assert [__calldata_ptr] = owner;\nlet __calldata_ptr = __calldata_ptr + 1;\n", + "autogen/starknet/arg_processor/7f5020813ab1b343debcc3300c737c940210993d2fe101134705622a3d36fb93.cairo": "// Create a reference to ret_value.remaining as felt*.\nlet __return_value_tmp: felt* = cast(&ret_value.remaining, felt*);\nassert [__return_value_ptr + 0] = [__return_value_tmp + 0];\nassert [__return_value_ptr + 1] = [__return_value_tmp + 1];\nlet __return_value_ptr = __return_value_ptr + 2;\n", + "autogen/starknet/arg_processor/86b8ce991898641b73ad3eb5d907f86c73139c426526138c35901b17a2d6334d.cairo": "assert [__calldata_ptr] = spender;\nlet __calldata_ptr = __calldata_ptr + 1;\n", + "autogen/starknet/arg_processor/95ae8cb44b0755388c1e634980ee8b2634c31b1a198c799f64c304663bce699a.cairo": "let __calldata_arg_decimals = [__calldata_ptr];\nlet __calldata_ptr = __calldata_ptr + 1;\n", + "autogen/starknet/arg_processor/969c7e319d46ceb58852dd3a77ddee2803f411e321ab446a930b3d3df7862483.cairo": "// Create a reference to value as felt*.\nlet __calldata_tmp: felt* = cast(&value, felt*);\nassert [__calldata_ptr + 0] = [__calldata_tmp + 0];\nassert [__calldata_ptr + 1] = [__calldata_tmp + 1];\nlet __calldata_ptr = __calldata_ptr + 2;\n", + "autogen/starknet/arg_processor/9822619206729a9eadcae854c851238a68f93e9dbd956bc4fa147da27ae12e2e.cairo": "// Create a reference to ret_value.totalSupply as felt*.\nlet __return_value_tmp: felt* = cast(&ret_value.totalSupply, felt*);\nassert [__return_value_ptr + 0] = [__return_value_tmp + 0];\nassert [__return_value_ptr + 1] = [__return_value_tmp + 1];\nlet __return_value_ptr = __return_value_ptr + 2;\n", + "autogen/starknet/arg_processor/98feb0f4c88833fb7f82ddd66d06f84d8ffb64f877c6f94e214b61af32d58c29.cairo": "let __calldata_arg_amount = [\n cast(__calldata_ptr, starkware.cairo.common.uint256.Uint256*)];\nlet __calldata_ptr = __calldata_ptr + 2;\n", + "autogen/starknet/arg_processor/99058c0781745b3c0332799d723549974cbf489b623dde03906204304de60803.cairo": "let __calldata_arg_symbol = [__calldata_ptr];\nlet __calldata_ptr = __calldata_ptr + 1;\n", + "autogen/starknet/arg_processor/a81bcec621a2ff03486299e6a77ac9e0b035697b74f8a9b599dbb1c25229a3e2.cairo": "assert [__return_value_ptr] = ret_value.decimals;\nlet __return_value_ptr = __return_value_ptr + 1;\n", + "autogen/starknet/arg_processor/ad6bf90c88bb84c90b568cfe0e89ce22c3213011f6c9cc8bf0b75066ae521c26.cairo": "assert [__calldata_ptr] = from_;\nlet __calldata_ptr = __calldata_ptr + 1;\n", + "autogen/starknet/arg_processor/c31620b02d4d706f0542c989b2aadc01b0981d1f6a5933a8fe4937ace3d70d92.cairo": "let __calldata_actual_size = __calldata_ptr - cast([cast(fp + (-3), felt**)], felt*);\n", + "autogen/starknet/arg_processor/d8c30f4879932288f1bfa4e0e453592d3ebb5ca98ed0660bf066319d88c0297f.cairo": "let __calldata_arg_recipient = [__calldata_ptr];\nlet __calldata_ptr = __calldata_ptr + 1;\n", + "autogen/starknet/arg_processor/dceaabc265216c0ff87c509d90446554648ec4d692c521cda952464d1fc22972.cairo": "let __calldata_arg_to = [__calldata_ptr];\nlet __calldata_ptr = __calldata_ptr + 1;\n", + "autogen/starknet/arg_processor/e1eb73cd870ec466294c3700e77817cf3c039ac1384882ddb76383eb87a5da90.cairo": "let __calldata_arg_name = [__calldata_ptr];\nlet __calldata_ptr = __calldata_ptr + 1;\n", + "autogen/starknet/arg_processor/e4d5d41a9286852ceee2d8a1fbac026532bda7bb0e3a6ccfcbfb5e7dd12aa070.cairo": "let __calldata_arg_account = [__calldata_ptr];\nlet __calldata_ptr = __calldata_ptr + 1;\n", + "autogen/starknet/arg_processor/f013cc89754bf613d36aa163a5014b518987d20a85394ebbe3c47c5cdb0a38b1.cairo": "// Create a reference to ret_value.balance as felt*.\nlet __return_value_tmp: felt* = cast(&ret_value.balance, felt*);\nassert [__return_value_ptr + 0] = [__return_value_tmp + 0];\nassert [__return_value_ptr + 1] = [__return_value_tmp + 1];\nlet __return_value_ptr = __return_value_ptr + 2;\n", + "autogen/starknet/arg_processor/f6a4d9ae897caf37cefd18f7c8da7eee73157818279359aadee282f0fe59cdbc.cairo": "let __calldata_arg_owner = [__calldata_ptr];\nlet __calldata_ptr = __calldata_ptr + 1;\n", + "autogen/starknet/event/Approval/6150feec30bd48bfd0f446ed8c155a6d911a2c3fb3ec7a980733900416819259.cairo": "emit_event(keys_len=1, keys=__keys_ptr, data_len=__calldata_ptr - __data_ptr, data=__data_ptr);\nreturn ();\n", + "autogen/starknet/event/Approval/8220fde17ca5479f12ae71a8036f4d354fe722f2c036da610b53511924e4ee84.cairo": "alloc_locals;\nlet (local __keys_ptr: felt*) = alloc();\nassert [__keys_ptr] = SELECTOR;\nlet (local __data_ptr: felt*) = alloc();\nlet __calldata_ptr = __data_ptr;\n", + "autogen/starknet/event/Approval/a7a8ae41be29ac9f4f6c3b7837c448d787ca051dd1ade98f409e54d33d112504.cairo": "func emit{syscall_ptr: felt*, range_check_ptr}() {\n}\n", + "autogen/starknet/event/Transfer/6150feec30bd48bfd0f446ed8c155a6d911a2c3fb3ec7a980733900416819259.cairo": "emit_event(keys_len=1, keys=__keys_ptr, data_len=__calldata_ptr - __data_ptr, data=__data_ptr);\nreturn ();\n", + "autogen/starknet/event/Transfer/8220fde17ca5479f12ae71a8036f4d354fe722f2c036da610b53511924e4ee84.cairo": "alloc_locals;\nlet (local __keys_ptr: felt*) = alloc();\nassert [__keys_ptr] = SELECTOR;\nlet (local __data_ptr: felt*) = alloc();\nlet __calldata_ptr = __data_ptr;\n", + "autogen/starknet/event/Transfer/a7a8ae41be29ac9f4f6c3b7837c448d787ca051dd1ade98f409e54d33d112504.cairo": "func emit{syscall_ptr: felt*, range_check_ptr}() {\n}\n", + "autogen/starknet/external/allowance/741ea357d6336b0bed7bf0472425acd0311d543883b803388880e60a232040c7.cairo": "let range_check_ptr = [cast([cast(fp + (-5), felt**)] + 2, felt*)];\n", + "autogen/starknet/external/allowance/9684a85e93c782014ca14293edea4eb2502039a5a7b6538ecd39c56faaf12529.cairo": "let pedersen_ptr = [cast([cast(fp + (-5), felt**)] + 1, starkware.cairo.common.cairo_builtins.HashBuiltin**)];\n", + "autogen/starknet/external/allowance/b2c52ca2d2a8fc8791a983086d8716c5eacd0c3d62934914d2286f84b98ff4cb.cairo": "let syscall_ptr = [cast([cast(fp + (-5), felt**)] + 0, felt**)];\n", + "autogen/starknet/external/allowance/b9fcb8ecdea98769098e96bc325b933a3fc26ae3a72192935855b4e6bcd89176.cairo": "let ret_value = __wrapped_func{syscall_ptr=syscall_ptr, pedersen_ptr=pedersen_ptr, range_check_ptr=range_check_ptr}(owner=__calldata_arg_owner, spender=__calldata_arg_spender,);\nlet (range_check_ptr, retdata_size, retdata) = allowance_encode_return(ret_value, range_check_ptr);\n", + "autogen/starknet/external/allowance/da17921a4e81c09e730800bbf23bfdbe5e9e6bfaedc59d80fbf62087fa43c27d.cairo": "return (syscall_ptr,pedersen_ptr,range_check_ptr,retdata_size,retdata);\n", + "autogen/starknet/external/approve/741ea357d6336b0bed7bf0472425acd0311d543883b803388880e60a232040c7.cairo": "let range_check_ptr = [cast([cast(fp + (-5), felt**)] + 2, felt*)];\n", + "autogen/starknet/external/approve/77db5444148929462fbd4e3283726f95bc7cab75ff04d74c8603aa9c36044b9f.cairo": "let ret_value = __wrapped_func{syscall_ptr=syscall_ptr, pedersen_ptr=pedersen_ptr, range_check_ptr=range_check_ptr}(spender=__calldata_arg_spender, amount=__calldata_arg_amount,);\nlet (range_check_ptr, retdata_size, retdata) = approve_encode_return(ret_value, range_check_ptr);\n", + "autogen/starknet/external/approve/9684a85e93c782014ca14293edea4eb2502039a5a7b6538ecd39c56faaf12529.cairo": "let pedersen_ptr = [cast([cast(fp + (-5), felt**)] + 1, starkware.cairo.common.cairo_builtins.HashBuiltin**)];\n", + "autogen/starknet/external/approve/b2c52ca2d2a8fc8791a983086d8716c5eacd0c3d62934914d2286f84b98ff4cb.cairo": "let syscall_ptr = [cast([cast(fp + (-5), felt**)] + 0, felt**)];\n", + "autogen/starknet/external/approve/da17921a4e81c09e730800bbf23bfdbe5e9e6bfaedc59d80fbf62087fa43c27d.cairo": "return (syscall_ptr,pedersen_ptr,range_check_ptr,retdata_size,retdata);\n", + "autogen/starknet/external/balanceOf/4159e40bee40bab5fc59447feb2a61119cdf9ab6c0a14ebaa0f9e280a5469c22.cairo": "let ret_value = __wrapped_func{syscall_ptr=syscall_ptr, pedersen_ptr=pedersen_ptr, range_check_ptr=range_check_ptr}(account=__calldata_arg_account,);\nlet (range_check_ptr, retdata_size, retdata) = balanceOf_encode_return(ret_value, range_check_ptr);\n", + "autogen/starknet/external/balanceOf/741ea357d6336b0bed7bf0472425acd0311d543883b803388880e60a232040c7.cairo": "let range_check_ptr = [cast([cast(fp + (-5), felt**)] + 2, felt*)];\n", + "autogen/starknet/external/balanceOf/9684a85e93c782014ca14293edea4eb2502039a5a7b6538ecd39c56faaf12529.cairo": "let pedersen_ptr = [cast([cast(fp + (-5), felt**)] + 1, starkware.cairo.common.cairo_builtins.HashBuiltin**)];\n", + "autogen/starknet/external/balanceOf/b2c52ca2d2a8fc8791a983086d8716c5eacd0c3d62934914d2286f84b98ff4cb.cairo": "let syscall_ptr = [cast([cast(fp + (-5), felt**)] + 0, felt**)];\n", + "autogen/starknet/external/balanceOf/da17921a4e81c09e730800bbf23bfdbe5e9e6bfaedc59d80fbf62087fa43c27d.cairo": "return (syscall_ptr,pedersen_ptr,range_check_ptr,retdata_size,retdata);\n", + "autogen/starknet/external/constructor/345960abffbc803563766b5ab8cf26002716e66518f667801beb34e2c871a161.cairo": "let ret_value = __wrapped_func{syscall_ptr=syscall_ptr, pedersen_ptr=pedersen_ptr, range_check_ptr=range_check_ptr}(name=__calldata_arg_name, symbol=__calldata_arg_symbol, decimals=__calldata_arg_decimals,);\n%{ memory[ap] = segments.add() %} // Allocate memory for return value.\ntempvar retdata: felt*;\nlet retdata_size = 0;\n", + "autogen/starknet/external/constructor/741ea357d6336b0bed7bf0472425acd0311d543883b803388880e60a232040c7.cairo": "let range_check_ptr = [cast([cast(fp + (-5), felt**)] + 2, felt*)];\n", + "autogen/starknet/external/constructor/9684a85e93c782014ca14293edea4eb2502039a5a7b6538ecd39c56faaf12529.cairo": "let pedersen_ptr = [cast([cast(fp + (-5), felt**)] + 1, starkware.cairo.common.cairo_builtins.HashBuiltin**)];\n", + "autogen/starknet/external/constructor/b2c52ca2d2a8fc8791a983086d8716c5eacd0c3d62934914d2286f84b98ff4cb.cairo": "let syscall_ptr = [cast([cast(fp + (-5), felt**)] + 0, felt**)];\n", + "autogen/starknet/external/constructor/da17921a4e81c09e730800bbf23bfdbe5e9e6bfaedc59d80fbf62087fa43c27d.cairo": "return (syscall_ptr,pedersen_ptr,range_check_ptr,retdata_size,retdata);\n", + "autogen/starknet/external/decimals/741ea357d6336b0bed7bf0472425acd0311d543883b803388880e60a232040c7.cairo": "let range_check_ptr = [cast([cast(fp + (-5), felt**)] + 2, felt*)];\n", + "autogen/starknet/external/decimals/9684a85e93c782014ca14293edea4eb2502039a5a7b6538ecd39c56faaf12529.cairo": "let pedersen_ptr = [cast([cast(fp + (-5), felt**)] + 1, starkware.cairo.common.cairo_builtins.HashBuiltin**)];\n", + "autogen/starknet/external/decimals/b2c52ca2d2a8fc8791a983086d8716c5eacd0c3d62934914d2286f84b98ff4cb.cairo": "let syscall_ptr = [cast([cast(fp + (-5), felt**)] + 0, felt**)];\n", + "autogen/starknet/external/decimals/b895732858337deae88cb0106f94dcac8575befa3b4c84c0fc6c096df9053938.cairo": "let ret_value = __wrapped_func{syscall_ptr=syscall_ptr, pedersen_ptr=pedersen_ptr, range_check_ptr=range_check_ptr}();\nlet (range_check_ptr, retdata_size, retdata) = decimals_encode_return(ret_value, range_check_ptr);\n", + "autogen/starknet/external/decimals/da17921a4e81c09e730800bbf23bfdbe5e9e6bfaedc59d80fbf62087fa43c27d.cairo": "return (syscall_ptr,pedersen_ptr,range_check_ptr,retdata_size,retdata);\n", + "autogen/starknet/external/decreaseAllowance/741ea357d6336b0bed7bf0472425acd0311d543883b803388880e60a232040c7.cairo": "let range_check_ptr = [cast([cast(fp + (-5), felt**)] + 2, felt*)];\n", + "autogen/starknet/external/decreaseAllowance/9684a85e93c782014ca14293edea4eb2502039a5a7b6538ecd39c56faaf12529.cairo": "let pedersen_ptr = [cast([cast(fp + (-5), felt**)] + 1, starkware.cairo.common.cairo_builtins.HashBuiltin**)];\n", + "autogen/starknet/external/decreaseAllowance/b2c52ca2d2a8fc8791a983086d8716c5eacd0c3d62934914d2286f84b98ff4cb.cairo": "let syscall_ptr = [cast([cast(fp + (-5), felt**)] + 0, felt**)];\n", + "autogen/starknet/external/decreaseAllowance/da17921a4e81c09e730800bbf23bfdbe5e9e6bfaedc59d80fbf62087fa43c27d.cairo": "return (syscall_ptr,pedersen_ptr,range_check_ptr,retdata_size,retdata);\n", + "autogen/starknet/external/decreaseAllowance/e44e20cea14fd052bfd56e74769715e588b4185c73d4812f14a6aed701cae62f.cairo": "let ret_value = __wrapped_func{syscall_ptr=syscall_ptr, pedersen_ptr=pedersen_ptr, range_check_ptr=range_check_ptr}(spender=__calldata_arg_spender, subtracted_value=__calldata_arg_subtracted_value,);\nlet (range_check_ptr, retdata_size, retdata) = decreaseAllowance_encode_return(ret_value, range_check_ptr);\n", + "autogen/starknet/external/increaseAllowance/3ee5a1f75ea35dfd778b0e9549bbe425c46c16ef9e6ffc2d363bf13e9473f34c.cairo": "let ret_value = __wrapped_func{syscall_ptr=syscall_ptr, pedersen_ptr=pedersen_ptr, range_check_ptr=range_check_ptr}(spender=__calldata_arg_spender, added_value=__calldata_arg_added_value,);\nlet (range_check_ptr, retdata_size, retdata) = increaseAllowance_encode_return(ret_value, range_check_ptr);\n", + "autogen/starknet/external/increaseAllowance/741ea357d6336b0bed7bf0472425acd0311d543883b803388880e60a232040c7.cairo": "let range_check_ptr = [cast([cast(fp + (-5), felt**)] + 2, felt*)];\n", + "autogen/starknet/external/increaseAllowance/9684a85e93c782014ca14293edea4eb2502039a5a7b6538ecd39c56faaf12529.cairo": "let pedersen_ptr = [cast([cast(fp + (-5), felt**)] + 1, starkware.cairo.common.cairo_builtins.HashBuiltin**)];\n", + "autogen/starknet/external/increaseAllowance/b2c52ca2d2a8fc8791a983086d8716c5eacd0c3d62934914d2286f84b98ff4cb.cairo": "let syscall_ptr = [cast([cast(fp + (-5), felt**)] + 0, felt**)];\n", + "autogen/starknet/external/increaseAllowance/da17921a4e81c09e730800bbf23bfdbe5e9e6bfaedc59d80fbf62087fa43c27d.cairo": "return (syscall_ptr,pedersen_ptr,range_check_ptr,retdata_size,retdata);\n", + "autogen/starknet/external/mint/741ea357d6336b0bed7bf0472425acd0311d543883b803388880e60a232040c7.cairo": "let range_check_ptr = [cast([cast(fp + (-5), felt**)] + 2, felt*)];\n", + "autogen/starknet/external/mint/9684a85e93c782014ca14293edea4eb2502039a5a7b6538ecd39c56faaf12529.cairo": "let pedersen_ptr = [cast([cast(fp + (-5), felt**)] + 1, starkware.cairo.common.cairo_builtins.HashBuiltin**)];\n", + "autogen/starknet/external/mint/b2c52ca2d2a8fc8791a983086d8716c5eacd0c3d62934914d2286f84b98ff4cb.cairo": "let syscall_ptr = [cast([cast(fp + (-5), felt**)] + 0, felt**)];\n", + "autogen/starknet/external/mint/da17921a4e81c09e730800bbf23bfdbe5e9e6bfaedc59d80fbf62087fa43c27d.cairo": "return (syscall_ptr,pedersen_ptr,range_check_ptr,retdata_size,retdata);\n", + "autogen/starknet/external/mint/f0817dfa2c98850e1eb19517a614f53ca2fc862d58ee9b66a55ba584a8fd9ccc.cairo": "let ret_value = __wrapped_func{syscall_ptr=syscall_ptr, pedersen_ptr=pedersen_ptr, range_check_ptr=range_check_ptr}(to=__calldata_arg_to, amount=__calldata_arg_amount,);\n%{ memory[ap] = segments.add() %} // Allocate memory for return value.\ntempvar retdata: felt*;\nlet retdata_size = 0;\n", + "autogen/starknet/external/name/3034a84ffbc2cc9a83b0bdb0bf6aadae87a5c63f8544f4bc76a18d60221f0e94.cairo": "let ret_value = __wrapped_func{syscall_ptr=syscall_ptr, pedersen_ptr=pedersen_ptr, range_check_ptr=range_check_ptr}();\nlet (range_check_ptr, retdata_size, retdata) = name_encode_return(ret_value, range_check_ptr);\n", + "autogen/starknet/external/name/741ea357d6336b0bed7bf0472425acd0311d543883b803388880e60a232040c7.cairo": "let range_check_ptr = [cast([cast(fp + (-5), felt**)] + 2, felt*)];\n", + "autogen/starknet/external/name/9684a85e93c782014ca14293edea4eb2502039a5a7b6538ecd39c56faaf12529.cairo": "let pedersen_ptr = [cast([cast(fp + (-5), felt**)] + 1, starkware.cairo.common.cairo_builtins.HashBuiltin**)];\n", + "autogen/starknet/external/name/b2c52ca2d2a8fc8791a983086d8716c5eacd0c3d62934914d2286f84b98ff4cb.cairo": "let syscall_ptr = [cast([cast(fp + (-5), felt**)] + 0, felt**)];\n", + "autogen/starknet/external/name/da17921a4e81c09e730800bbf23bfdbe5e9e6bfaedc59d80fbf62087fa43c27d.cairo": "return (syscall_ptr,pedersen_ptr,range_check_ptr,retdata_size,retdata);\n", + "autogen/starknet/external/return/allowance/1cb7294a6f22e622b9ef012b5a4d2faa6b7630d9f34fee6abcca00d90029b02c.cairo": "func allowance_encode_return(ret_value: (remaining: starkware.cairo.common.uint256.Uint256), range_check_ptr) -> (\n range_check_ptr: felt, data_len: felt, data: felt*) {\n %{ memory[ap] = segments.add() %}\n alloc_locals;\n local __return_value_ptr_start: felt*;\n let __return_value_ptr = __return_value_ptr_start;\n with range_check_ptr {\n }\n return (\n range_check_ptr=range_check_ptr,\n data_len=__return_value_ptr - __return_value_ptr_start,\n data=__return_value_ptr_start);\n}\n", + "autogen/starknet/external/return/approve/3bfbf1e209a2919256f756d0aba26a37c16e14592de6048b15605ba53b428eb5.cairo": "func approve_encode_return(ret_value: (success: felt), range_check_ptr) -> (\n range_check_ptr: felt, data_len: felt, data: felt*) {\n %{ memory[ap] = segments.add() %}\n alloc_locals;\n local __return_value_ptr_start: felt*;\n let __return_value_ptr = __return_value_ptr_start;\n with range_check_ptr {\n }\n return (\n range_check_ptr=range_check_ptr,\n data_len=__return_value_ptr - __return_value_ptr_start,\n data=__return_value_ptr_start);\n}\n", + "autogen/starknet/external/return/balanceOf/6be46755be2f937558932379e9c42b1ab153e2ba499cd66beb178511b2106ad9.cairo": "func balanceOf_encode_return(ret_value: (balance: starkware.cairo.common.uint256.Uint256), range_check_ptr) -> (\n range_check_ptr: felt, data_len: felt, data: felt*) {\n %{ memory[ap] = segments.add() %}\n alloc_locals;\n local __return_value_ptr_start: felt*;\n let __return_value_ptr = __return_value_ptr_start;\n with range_check_ptr {\n }\n return (\n range_check_ptr=range_check_ptr,\n data_len=__return_value_ptr - __return_value_ptr_start,\n data=__return_value_ptr_start);\n}\n", + "autogen/starknet/external/return/decimals/a97d2b6786c76802562faf3a37a632fd604ff18dde35a5c92ee6960b683ee2dd.cairo": "func decimals_encode_return(ret_value: (decimals: felt), range_check_ptr) -> (\n range_check_ptr: felt, data_len: felt, data: felt*) {\n %{ memory[ap] = segments.add() %}\n alloc_locals;\n local __return_value_ptr_start: felt*;\n let __return_value_ptr = __return_value_ptr_start;\n with range_check_ptr {\n }\n return (\n range_check_ptr=range_check_ptr,\n data_len=__return_value_ptr - __return_value_ptr_start,\n data=__return_value_ptr_start);\n}\n", + "autogen/starknet/external/return/decreaseAllowance/fa23cad4bedb82a75f6cde39bb37d0da695f0c4ce70ab41f6b2240cbbdb1c250.cairo": "func decreaseAllowance_encode_return(ret_value: (success: felt), range_check_ptr) -> (\n range_check_ptr: felt, data_len: felt, data: felt*) {\n %{ memory[ap] = segments.add() %}\n alloc_locals;\n local __return_value_ptr_start: felt*;\n let __return_value_ptr = __return_value_ptr_start;\n with range_check_ptr {\n }\n return (\n range_check_ptr=range_check_ptr,\n data_len=__return_value_ptr - __return_value_ptr_start,\n data=__return_value_ptr_start);\n}\n", + "autogen/starknet/external/return/increaseAllowance/78c2ccee093b5589a139bd81b558b403837f815524d6dfc3d4af5f60c03fbc80.cairo": "func increaseAllowance_encode_return(ret_value: (success: felt), range_check_ptr) -> (\n range_check_ptr: felt, data_len: felt, data: felt*) {\n %{ memory[ap] = segments.add() %}\n alloc_locals;\n local __return_value_ptr_start: felt*;\n let __return_value_ptr = __return_value_ptr_start;\n with range_check_ptr {\n }\n return (\n range_check_ptr=range_check_ptr,\n data_len=__return_value_ptr - __return_value_ptr_start,\n data=__return_value_ptr_start);\n}\n", + "autogen/starknet/external/return/name/c8fcd0b2b3f24b16bed33f1349d99fe0bde24b7764fe1bdc31d37b9ddca24adc.cairo": "func name_encode_return(ret_value: (name: felt), range_check_ptr) -> (\n range_check_ptr: felt, data_len: felt, data: felt*) {\n %{ memory[ap] = segments.add() %}\n alloc_locals;\n local __return_value_ptr_start: felt*;\n let __return_value_ptr = __return_value_ptr_start;\n with range_check_ptr {\n }\n return (\n range_check_ptr=range_check_ptr,\n data_len=__return_value_ptr - __return_value_ptr_start,\n data=__return_value_ptr_start);\n}\n", + "autogen/starknet/external/return/symbol/a0ae85480af0490479ac55aa0fb10c479d3c551bd5d0b449dafe97eed061cca1.cairo": "func symbol_encode_return(ret_value: (symbol: felt), range_check_ptr) -> (\n range_check_ptr: felt, data_len: felt, data: felt*) {\n %{ memory[ap] = segments.add() %}\n alloc_locals;\n local __return_value_ptr_start: felt*;\n let __return_value_ptr = __return_value_ptr_start;\n with range_check_ptr {\n }\n return (\n range_check_ptr=range_check_ptr,\n data_len=__return_value_ptr - __return_value_ptr_start,\n data=__return_value_ptr_start);\n}\n", + "autogen/starknet/external/return/totalSupply/eeeda446bdea67b39cd9f67678f4dfc35c6c1d0744df18691bf4ede77f67f604.cairo": "func totalSupply_encode_return(ret_value: (totalSupply: starkware.cairo.common.uint256.Uint256), range_check_ptr) -> (\n range_check_ptr: felt, data_len: felt, data: felt*) {\n %{ memory[ap] = segments.add() %}\n alloc_locals;\n local __return_value_ptr_start: felt*;\n let __return_value_ptr = __return_value_ptr_start;\n with range_check_ptr {\n }\n return (\n range_check_ptr=range_check_ptr,\n data_len=__return_value_ptr - __return_value_ptr_start,\n data=__return_value_ptr_start);\n}\n", + "autogen/starknet/external/return/transfer/63591275573bc8b26ecb0c55e4fb63e8afcdbb2de92a6d653dea4d28256a7673.cairo": "func transfer_encode_return(ret_value: (success: felt), range_check_ptr) -> (\n range_check_ptr: felt, data_len: felt, data: felt*) {\n %{ memory[ap] = segments.add() %}\n alloc_locals;\n local __return_value_ptr_start: felt*;\n let __return_value_ptr = __return_value_ptr_start;\n with range_check_ptr {\n }\n return (\n range_check_ptr=range_check_ptr,\n data_len=__return_value_ptr - __return_value_ptr_start,\n data=__return_value_ptr_start);\n}\n", + "autogen/starknet/external/return/transferFrom/5b2c37cd8026aa4af7cd3c9f7917d8ea869eaee537bea84bfb17d9a4e9947d8f.cairo": "func transferFrom_encode_return(ret_value: (success: felt), range_check_ptr) -> (\n range_check_ptr: felt, data_len: felt, data: felt*) {\n %{ memory[ap] = segments.add() %}\n alloc_locals;\n local __return_value_ptr_start: felt*;\n let __return_value_ptr = __return_value_ptr_start;\n with range_check_ptr {\n }\n return (\n range_check_ptr=range_check_ptr,\n data_len=__return_value_ptr - __return_value_ptr_start,\n data=__return_value_ptr_start);\n}\n", + "autogen/starknet/external/symbol/741ea357d6336b0bed7bf0472425acd0311d543883b803388880e60a232040c7.cairo": "let range_check_ptr = [cast([cast(fp + (-5), felt**)] + 2, felt*)];\n", + "autogen/starknet/external/symbol/9684a85e93c782014ca14293edea4eb2502039a5a7b6538ecd39c56faaf12529.cairo": "let pedersen_ptr = [cast([cast(fp + (-5), felt**)] + 1, starkware.cairo.common.cairo_builtins.HashBuiltin**)];\n", + "autogen/starknet/external/symbol/b2c52ca2d2a8fc8791a983086d8716c5eacd0c3d62934914d2286f84b98ff4cb.cairo": "let syscall_ptr = [cast([cast(fp + (-5), felt**)] + 0, felt**)];\n", + "autogen/starknet/external/symbol/d8aa55fbbc45562d781915a1c7930fc50b33d8bd29db7102b5c44cbfd8b54639.cairo": "let ret_value = __wrapped_func{syscall_ptr=syscall_ptr, pedersen_ptr=pedersen_ptr, range_check_ptr=range_check_ptr}();\nlet (range_check_ptr, retdata_size, retdata) = symbol_encode_return(ret_value, range_check_ptr);\n", + "autogen/starknet/external/symbol/da17921a4e81c09e730800bbf23bfdbe5e9e6bfaedc59d80fbf62087fa43c27d.cairo": "return (syscall_ptr,pedersen_ptr,range_check_ptr,retdata_size,retdata);\n", + "autogen/starknet/external/totalSupply/741ea357d6336b0bed7bf0472425acd0311d543883b803388880e60a232040c7.cairo": "let range_check_ptr = [cast([cast(fp + (-5), felt**)] + 2, felt*)];\n", + "autogen/starknet/external/totalSupply/9684a85e93c782014ca14293edea4eb2502039a5a7b6538ecd39c56faaf12529.cairo": "let pedersen_ptr = [cast([cast(fp + (-5), felt**)] + 1, starkware.cairo.common.cairo_builtins.HashBuiltin**)];\n", + "autogen/starknet/external/totalSupply/b2c52ca2d2a8fc8791a983086d8716c5eacd0c3d62934914d2286f84b98ff4cb.cairo": "let syscall_ptr = [cast([cast(fp + (-5), felt**)] + 0, felt**)];\n", + "autogen/starknet/external/totalSupply/da17921a4e81c09e730800bbf23bfdbe5e9e6bfaedc59d80fbf62087fa43c27d.cairo": "return (syscall_ptr,pedersen_ptr,range_check_ptr,retdata_size,retdata);\n", + "autogen/starknet/external/totalSupply/f9521ee04dab7f503e72addd131262b31983f1e13ea962eb0b121959d1008326.cairo": "let ret_value = __wrapped_func{syscall_ptr=syscall_ptr, pedersen_ptr=pedersen_ptr, range_check_ptr=range_check_ptr}();\nlet (range_check_ptr, retdata_size, retdata) = totalSupply_encode_return(ret_value, range_check_ptr);\n", + "autogen/starknet/external/transfer/741ea357d6336b0bed7bf0472425acd0311d543883b803388880e60a232040c7.cairo": "let range_check_ptr = [cast([cast(fp + (-5), felt**)] + 2, felt*)];\n", + "autogen/starknet/external/transfer/9684a85e93c782014ca14293edea4eb2502039a5a7b6538ecd39c56faaf12529.cairo": "let pedersen_ptr = [cast([cast(fp + (-5), felt**)] + 1, starkware.cairo.common.cairo_builtins.HashBuiltin**)];\n", + "autogen/starknet/external/transfer/b2c52ca2d2a8fc8791a983086d8716c5eacd0c3d62934914d2286f84b98ff4cb.cairo": "let syscall_ptr = [cast([cast(fp + (-5), felt**)] + 0, felt**)];\n", + "autogen/starknet/external/transfer/c082162ad81beaa225935c0230f7dc617871352643864a2e3e4881b50b0a949d.cairo": "let ret_value = __wrapped_func{syscall_ptr=syscall_ptr, pedersen_ptr=pedersen_ptr, range_check_ptr=range_check_ptr}(recipient=__calldata_arg_recipient, amount=__calldata_arg_amount,);\nlet (range_check_ptr, retdata_size, retdata) = transfer_encode_return(ret_value, range_check_ptr);\n", + "autogen/starknet/external/transfer/da17921a4e81c09e730800bbf23bfdbe5e9e6bfaedc59d80fbf62087fa43c27d.cairo": "return (syscall_ptr,pedersen_ptr,range_check_ptr,retdata_size,retdata);\n", + "autogen/starknet/external/transferFrom/69679d187ee7bc1a9c951eacaca8de24948b900bc226162c0bad133868537b48.cairo": "let ret_value = __wrapped_func{syscall_ptr=syscall_ptr, pedersen_ptr=pedersen_ptr, range_check_ptr=range_check_ptr}(sender=__calldata_arg_sender, recipient=__calldata_arg_recipient, amount=__calldata_arg_amount,);\nlet (range_check_ptr, retdata_size, retdata) = transferFrom_encode_return(ret_value, range_check_ptr);\n", + "autogen/starknet/external/transferFrom/741ea357d6336b0bed7bf0472425acd0311d543883b803388880e60a232040c7.cairo": "let range_check_ptr = [cast([cast(fp + (-5), felt**)] + 2, felt*)];\n", + "autogen/starknet/external/transferFrom/9684a85e93c782014ca14293edea4eb2502039a5a7b6538ecd39c56faaf12529.cairo": "let pedersen_ptr = [cast([cast(fp + (-5), felt**)] + 1, starkware.cairo.common.cairo_builtins.HashBuiltin**)];\n", + "autogen/starknet/external/transferFrom/b2c52ca2d2a8fc8791a983086d8716c5eacd0c3d62934914d2286f84b98ff4cb.cairo": "let syscall_ptr = [cast([cast(fp + (-5), felt**)] + 0, felt**)];\n", + "autogen/starknet/external/transferFrom/da17921a4e81c09e730800bbf23bfdbe5e9e6bfaedc59d80fbf62087fa43c27d.cairo": "return (syscall_ptr,pedersen_ptr,range_check_ptr,retdata_size,retdata);\n", + "autogen/starknet/storage_var/ERC20_allowances/decl.cairo": "namespace ERC20_allowances {\n from starkware.starknet.common.storage import normalize_address\n from starkware.starknet.common.syscalls import storage_read, storage_write\n from starkware.cairo.common.cairo_builtins import HashBuiltin\n from starkware.cairo.common.hash import hash2\n\n func addr{pedersen_ptr: HashBuiltin*, range_check_ptr}(owner: felt, spender: felt) -> (\n res: felt\n ) {\n let res = 0;\n call hash2;\n call normalize_address;\n }\n\n func read{syscall_ptr: felt*, pedersen_ptr: HashBuiltin*, range_check_ptr}(\n owner: felt, spender: felt\n ) -> (remaining: Uint256) {\n let storage_addr = 0;\n call addr;\n call storage_read;\n }\n\n func write{syscall_ptr: felt*, pedersen_ptr: HashBuiltin*, range_check_ptr}(\n owner: felt, spender: felt, value: Uint256\n ) {\n let storage_addr = 0;\n call addr;\n call storage_write;\n }\n}", + "autogen/starknet/storage_var/ERC20_allowances/impl.cairo": "namespace ERC20_allowances {\n from starkware.starknet.common.storage import normalize_address\n from starkware.starknet.common.syscalls import storage_read, storage_write\n from starkware.cairo.common.cairo_builtins import HashBuiltin\n from starkware.cairo.common.hash import hash2\n\n func addr{pedersen_ptr: HashBuiltin*, range_check_ptr}(owner: felt, spender: felt) -> (\n res: felt\n ) {\n let res = 1711163456665081073580914249687599371093043615922190105609691201034487595172;\n let (res) = hash2{hash_ptr=pedersen_ptr}(res, cast(&owner, felt*)[0]);\n let (res) = hash2{hash_ptr=pedersen_ptr}(res, cast(&spender, felt*)[0]);\n let (res) = normalize_address(addr=res);\n return (res=res);\n }\n\n func read{syscall_ptr: felt*, pedersen_ptr: HashBuiltin*, range_check_ptr}(\n owner: felt, spender: felt\n ) -> (remaining: Uint256) {\n let (storage_addr) = addr(owner, spender);\n let (__storage_var_temp0) = storage_read(address=storage_addr + 0);\n let (__storage_var_temp1) = storage_read(address=storage_addr + 1);\n\n tempvar syscall_ptr = syscall_ptr;\n tempvar pedersen_ptr = pedersen_ptr;\n tempvar range_check_ptr = range_check_ptr;\n tempvar __storage_var_temp0: felt = __storage_var_temp0;\n tempvar __storage_var_temp1: felt = __storage_var_temp1;\n return ([cast(&__storage_var_temp0, Uint256*)],);\n }\n\n func write{syscall_ptr: felt*, pedersen_ptr: HashBuiltin*, range_check_ptr}(\n owner: felt, spender: felt, value: Uint256\n ) {\n let (storage_addr) = addr(owner, spender);\n storage_write(address=storage_addr + 0, value=[cast(&value, felt) + 0]);\n storage_write(address=storage_addr + 1, value=[cast(&value, felt) + 1]);\n return ();\n }\n}", + "autogen/starknet/storage_var/ERC20_balances/decl.cairo": "namespace ERC20_balances {\n from starkware.starknet.common.storage import normalize_address\n from starkware.starknet.common.syscalls import storage_read, storage_write\n from starkware.cairo.common.cairo_builtins import HashBuiltin\n from starkware.cairo.common.hash import hash2\n\n func addr{pedersen_ptr: HashBuiltin*, range_check_ptr}(account: felt) -> (res: felt) {\n let res = 0;\n call hash2;\n call normalize_address;\n }\n\n func read{syscall_ptr: felt*, pedersen_ptr: HashBuiltin*, range_check_ptr}(account: felt) -> (\n balance: Uint256\n ) {\n let storage_addr = 0;\n call addr;\n call storage_read;\n }\n\n func write{syscall_ptr: felt*, pedersen_ptr: HashBuiltin*, range_check_ptr}(\n account: felt, value: Uint256\n ) {\n let storage_addr = 0;\n call addr;\n call storage_write;\n }\n}", + "autogen/starknet/storage_var/ERC20_balances/impl.cairo": "namespace ERC20_balances {\n from starkware.starknet.common.storage import normalize_address\n from starkware.starknet.common.syscalls import storage_read, storage_write\n from starkware.cairo.common.cairo_builtins import HashBuiltin\n from starkware.cairo.common.hash import hash2\n\n func addr{pedersen_ptr: HashBuiltin*, range_check_ptr}(account: felt) -> (res: felt) {\n let res = 1648309034483306940318020057553480881073352647889682838905012914068126451082;\n let (res) = hash2{hash_ptr=pedersen_ptr}(res, cast(&account, felt*)[0]);\n let (res) = normalize_address(addr=res);\n return (res=res);\n }\n\n func read{syscall_ptr: felt*, pedersen_ptr: HashBuiltin*, range_check_ptr}(account: felt) -> (\n balance: Uint256\n ) {\n let (storage_addr) = addr(account);\n let (__storage_var_temp0) = storage_read(address=storage_addr + 0);\n let (__storage_var_temp1) = storage_read(address=storage_addr + 1);\n\n tempvar syscall_ptr = syscall_ptr;\n tempvar pedersen_ptr = pedersen_ptr;\n tempvar range_check_ptr = range_check_ptr;\n tempvar __storage_var_temp0: felt = __storage_var_temp0;\n tempvar __storage_var_temp1: felt = __storage_var_temp1;\n return ([cast(&__storage_var_temp0, Uint256*)],);\n }\n\n func write{syscall_ptr: felt*, pedersen_ptr: HashBuiltin*, range_check_ptr}(\n account: felt, value: Uint256\n ) {\n let (storage_addr) = addr(account);\n storage_write(address=storage_addr + 0, value=[cast(&value, felt) + 0]);\n storage_write(address=storage_addr + 1, value=[cast(&value, felt) + 1]);\n return ();\n }\n}", + "autogen/starknet/storage_var/ERC20_decimals/decl.cairo": "namespace ERC20_decimals {\n from starkware.starknet.common.storage import normalize_address\n from starkware.starknet.common.syscalls import storage_read, storage_write\n from starkware.cairo.common.cairo_builtins import HashBuiltin\n from starkware.cairo.common.hash import hash2\n\n func addr{pedersen_ptr: HashBuiltin*, range_check_ptr}() -> (res: felt) {\n let res = 0;\n call hash2;\n call normalize_address;\n }\n\n func read{syscall_ptr: felt*, pedersen_ptr: HashBuiltin*, range_check_ptr}() -> (\n decimals: felt\n ) {\n let storage_addr = 0;\n call addr;\n call storage_read;\n }\n\n func write{syscall_ptr: felt*, pedersen_ptr: HashBuiltin*, range_check_ptr}(value: felt) {\n let storage_addr = 0;\n call addr;\n call storage_write;\n }\n}", + "autogen/starknet/storage_var/ERC20_decimals/impl.cairo": "namespace ERC20_decimals {\n from starkware.starknet.common.storage import normalize_address\n from starkware.starknet.common.syscalls import storage_read, storage_write\n from starkware.cairo.common.cairo_builtins import HashBuiltin\n from starkware.cairo.common.hash import hash2\n\n func addr{pedersen_ptr: HashBuiltin*, range_check_ptr}() -> (res: felt) {\n let res = 877823913686921299048507465990220541161247202424540097559864758276037605753;\n return (res=res);\n }\n\n func read{syscall_ptr: felt*, pedersen_ptr: HashBuiltin*, range_check_ptr}() -> (\n decimals: felt\n ) {\n let (storage_addr) = addr();\n let (__storage_var_temp0) = storage_read(address=storage_addr + 0);\n\n tempvar syscall_ptr = syscall_ptr;\n tempvar pedersen_ptr = pedersen_ptr;\n tempvar range_check_ptr = range_check_ptr;\n tempvar __storage_var_temp0: felt = __storage_var_temp0;\n return ([cast(&__storage_var_temp0, felt*)],);\n }\n\n func write{syscall_ptr: felt*, pedersen_ptr: HashBuiltin*, range_check_ptr}(value: felt) {\n let (storage_addr) = addr();\n storage_write(address=storage_addr + 0, value=[cast(&value, felt) + 0]);\n return ();\n }\n}", + "autogen/starknet/storage_var/ERC20_name/decl.cairo": "namespace ERC20_name {\n from starkware.starknet.common.storage import normalize_address\n from starkware.starknet.common.syscalls import storage_read, storage_write\n from starkware.cairo.common.cairo_builtins import HashBuiltin\n from starkware.cairo.common.hash import hash2\n\n func addr{pedersen_ptr: HashBuiltin*, range_check_ptr}() -> (res: felt) {\n let res = 0;\n call hash2;\n call normalize_address;\n }\n\n func read{syscall_ptr: felt*, pedersen_ptr: HashBuiltin*, range_check_ptr}() -> (name: felt) {\n let storage_addr = 0;\n call addr;\n call storage_read;\n }\n\n func write{syscall_ptr: felt*, pedersen_ptr: HashBuiltin*, range_check_ptr}(value: felt) {\n let storage_addr = 0;\n call addr;\n call storage_write;\n }\n}", + "autogen/starknet/storage_var/ERC20_name/impl.cairo": "namespace ERC20_name {\n from starkware.starknet.common.storage import normalize_address\n from starkware.starknet.common.syscalls import storage_read, storage_write\n from starkware.cairo.common.cairo_builtins import HashBuiltin\n from starkware.cairo.common.hash import hash2\n\n func addr{pedersen_ptr: HashBuiltin*, range_check_ptr}() -> (res: felt) {\n let res = 1473120764136009396440970107973971969419251478021578277222806501183556393953;\n return (res=res);\n }\n\n func read{syscall_ptr: felt*, pedersen_ptr: HashBuiltin*, range_check_ptr}() -> (name: felt) {\n let (storage_addr) = addr();\n let (__storage_var_temp0) = storage_read(address=storage_addr + 0);\n\n tempvar syscall_ptr = syscall_ptr;\n tempvar pedersen_ptr = pedersen_ptr;\n tempvar range_check_ptr = range_check_ptr;\n tempvar __storage_var_temp0: felt = __storage_var_temp0;\n return ([cast(&__storage_var_temp0, felt*)],);\n }\n\n func write{syscall_ptr: felt*, pedersen_ptr: HashBuiltin*, range_check_ptr}(value: felt) {\n let (storage_addr) = addr();\n storage_write(address=storage_addr + 0, value=[cast(&value, felt) + 0]);\n return ();\n }\n}", + "autogen/starknet/storage_var/ERC20_symbol/decl.cairo": "namespace ERC20_symbol {\n from starkware.starknet.common.storage import normalize_address\n from starkware.starknet.common.syscalls import storage_read, storage_write\n from starkware.cairo.common.cairo_builtins import HashBuiltin\n from starkware.cairo.common.hash import hash2\n\n func addr{pedersen_ptr: HashBuiltin*, range_check_ptr}() -> (res: felt) {\n let res = 0;\n call hash2;\n call normalize_address;\n }\n\n func read{syscall_ptr: felt*, pedersen_ptr: HashBuiltin*, range_check_ptr}() -> (symbol: felt) {\n let storage_addr = 0;\n call addr;\n call storage_read;\n }\n\n func write{syscall_ptr: felt*, pedersen_ptr: HashBuiltin*, range_check_ptr}(value: felt) {\n let storage_addr = 0;\n call addr;\n call storage_write;\n }\n}", + "autogen/starknet/storage_var/ERC20_symbol/impl.cairo": "namespace ERC20_symbol {\n from starkware.starknet.common.storage import normalize_address\n from starkware.starknet.common.syscalls import storage_read, storage_write\n from starkware.cairo.common.cairo_builtins import HashBuiltin\n from starkware.cairo.common.hash import hash2\n\n func addr{pedersen_ptr: HashBuiltin*, range_check_ptr}() -> (res: felt) {\n let res = 322990191961554429053868449035526014412279677330895387449703561219527453810;\n return (res=res);\n }\n\n func read{syscall_ptr: felt*, pedersen_ptr: HashBuiltin*, range_check_ptr}() -> (symbol: felt) {\n let (storage_addr) = addr();\n let (__storage_var_temp0) = storage_read(address=storage_addr + 0);\n\n tempvar syscall_ptr = syscall_ptr;\n tempvar pedersen_ptr = pedersen_ptr;\n tempvar range_check_ptr = range_check_ptr;\n tempvar __storage_var_temp0: felt = __storage_var_temp0;\n return ([cast(&__storage_var_temp0, felt*)],);\n }\n\n func write{syscall_ptr: felt*, pedersen_ptr: HashBuiltin*, range_check_ptr}(value: felt) {\n let (storage_addr) = addr();\n storage_write(address=storage_addr + 0, value=[cast(&value, felt) + 0]);\n return ();\n }\n}", + "autogen/starknet/storage_var/ERC20_total_supply/decl.cairo": "namespace ERC20_total_supply {\n from starkware.starknet.common.storage import normalize_address\n from starkware.starknet.common.syscalls import storage_read, storage_write\n from starkware.cairo.common.cairo_builtins import HashBuiltin\n from starkware.cairo.common.hash import hash2\n\n func addr{pedersen_ptr: HashBuiltin*, range_check_ptr}() -> (res: felt) {\n let res = 0;\n call hash2;\n call normalize_address;\n }\n\n func read{syscall_ptr: felt*, pedersen_ptr: HashBuiltin*, range_check_ptr}() -> (\n total_supply: Uint256\n ) {\n let storage_addr = 0;\n call addr;\n call storage_read;\n }\n\n func write{syscall_ptr: felt*, pedersen_ptr: HashBuiltin*, range_check_ptr}(value: Uint256) {\n let storage_addr = 0;\n call addr;\n call storage_write;\n }\n}", + "autogen/starknet/storage_var/ERC20_total_supply/impl.cairo": "namespace ERC20_total_supply {\n from starkware.starknet.common.storage import normalize_address\n from starkware.starknet.common.syscalls import storage_read, storage_write\n from starkware.cairo.common.cairo_builtins import HashBuiltin\n from starkware.cairo.common.hash import hash2\n\n func addr{pedersen_ptr: HashBuiltin*, range_check_ptr}() -> (res: felt) {\n let res = 482148859801725464274198147480840119334382080162606228723774290742111978842;\n return (res=res);\n }\n\n func read{syscall_ptr: felt*, pedersen_ptr: HashBuiltin*, range_check_ptr}() -> (\n total_supply: Uint256\n ) {\n let (storage_addr) = addr();\n let (__storage_var_temp0) = storage_read(address=storage_addr + 0);\n let (__storage_var_temp1) = storage_read(address=storage_addr + 1);\n\n tempvar syscall_ptr = syscall_ptr;\n tempvar pedersen_ptr = pedersen_ptr;\n tempvar range_check_ptr = range_check_ptr;\n tempvar __storage_var_temp0: felt = __storage_var_temp0;\n tempvar __storage_var_temp1: felt = __storage_var_temp1;\n return ([cast(&__storage_var_temp0, Uint256*)],);\n }\n\n func write{syscall_ptr: felt*, pedersen_ptr: HashBuiltin*, range_check_ptr}(value: Uint256) {\n let (storage_addr) = addr();\n storage_write(address=storage_addr + 0, value=[cast(&value, felt) + 0]);\n storage_write(address=storage_addr + 1, value=[cast(&value, felt) + 1]);\n return ();\n }\n}" + }, + "instruction_locations": { + "0": { + "accessible_scopes": [ + "starkware.cairo.common.alloc", + "starkware.cairo.common.alloc.alloc" + ], + "flow_tracking_data": null, + "hints": [ + { + "location": { + "end_col": 38, + "end_line": 3, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/3.9.13/envs/kakarot/lib/python3.9/site-packages/starkware/cairo/common/alloc.cairo" + }, + "start_col": 5, + "start_line": 3 + }, + "n_prefix_newlines": 0 + } + ], + "inst": { + "end_col": 12, + "end_line": 4, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/3.9.13/envs/kakarot/lib/python3.9/site-packages/starkware/cairo/common/alloc.cairo" + }, + "start_col": 5, + "start_line": 4 + } + }, + "2": { + "accessible_scopes": [ + "starkware.cairo.common.alloc", + "starkware.cairo.common.alloc.alloc" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 40, + "end_line": 5, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/3.9.13/envs/kakarot/lib/python3.9/site-packages/starkware/cairo/common/alloc.cairo" + }, + "start_col": 5, + "start_line": 5 + } + }, + "3": { + "accessible_scopes": [ + "starkware.cairo.common.hash", + "starkware.cairo.common.hash.hash2" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 19, + "end_line": 14, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/3.9.13/envs/kakarot/lib/python3.9/site-packages/starkware/cairo/common/hash.cairo" + }, + "start_col": 5, + "start_line": 14 + } + }, + "4": { + "accessible_scopes": [ + "starkware.cairo.common.hash", + "starkware.cairo.common.hash.hash2" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 19, + "end_line": 15, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/3.9.13/envs/kakarot/lib/python3.9/site-packages/starkware/cairo/common/hash.cairo" + }, + "start_col": 5, + "start_line": 15 + } + }, + "5": { + "accessible_scopes": [ + "starkware.cairo.common.hash", + "starkware.cairo.common.hash.hash2" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 47, + "end_line": 17, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/3.9.13/envs/kakarot/lib/python3.9/site-packages/starkware/cairo/common/hash.cairo" + }, + "parent_location": [ + { + "end_col": 34, + "end_line": 13, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/3.9.13/envs/kakarot/lib/python3.9/site-packages/starkware/cairo/common/hash.cairo" + }, + "parent_location": [ + { + "end_col": 28, + "end_line": 18, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/3.9.13/envs/kakarot/lib/python3.9/site-packages/starkware/cairo/common/hash.cairo" + }, + "start_col": 5, + "start_line": 18 + }, + "While trying to retrieve the implicit argument 'hash_ptr' in:" + ], + "start_col": 12, + "start_line": 13 + }, + "While expanding the reference 'hash_ptr' in:" + ], + "start_col": 20, + "start_line": 17 + } + }, + "7": { + "accessible_scopes": [ + "starkware.cairo.common.hash", + "starkware.cairo.common.hash.hash2" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 33, + "end_line": 16, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/3.9.13/envs/kakarot/lib/python3.9/site-packages/starkware/cairo/common/hash.cairo" + }, + "parent_location": [ + { + "end_col": 26, + "end_line": 18, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/3.9.13/envs/kakarot/lib/python3.9/site-packages/starkware/cairo/common/hash.cairo" + }, + "start_col": 20, + "start_line": 18 + }, + "While expanding the reference 'result' in:" + ], + "start_col": 18, + "start_line": 16 + } + }, + "8": { + "accessible_scopes": [ + "starkware.cairo.common.hash", + "starkware.cairo.common.hash.hash2" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 28, + "end_line": 18, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/3.9.13/envs/kakarot/lib/python3.9/site-packages/starkware/cairo/common/hash.cairo" + }, + "start_col": 5, + "start_line": 18 + } + }, + "9": { + "accessible_scopes": [ + "starkware.starknet.common.syscalls", + "starkware.starknet.common.syscalls.get_caller_address" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 90, + "end_line": 202, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/3.9.13/envs/kakarot/lib/python3.9/site-packages/starkware/starknet/common/syscalls.cairo" + }, + "start_col": 63, + "start_line": 202 + } + }, + "11": { + "accessible_scopes": [ + "starkware.starknet.common.syscalls", + "starkware.starknet.common.syscalls.get_caller_address" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 92, + "end_line": 202, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/3.9.13/envs/kakarot/lib/python3.9/site-packages/starkware/starknet/common/syscalls.cairo" + }, + "start_col": 5, + "start_line": 202 + } + }, + "12": { + "accessible_scopes": [ + "starkware.starknet.common.syscalls", + "starkware.starknet.common.syscalls.get_caller_address" + ], + "flow_tracking_data": null, + "hints": [ + { + "location": { + "end_col": 93, + "end_line": 203, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/3.9.13/envs/kakarot/lib/python3.9/site-packages/starkware/starknet/common/syscalls.cairo" + }, + "start_col": 5, + "start_line": 203 + }, + "n_prefix_newlines": 0 + } + ], + "inst": { + "end_col": 58, + "end_line": 204, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/3.9.13/envs/kakarot/lib/python3.9/site-packages/starkware/starknet/common/syscalls.cairo" + }, + "parent_location": [ + { + "end_col": 43, + "end_line": 200, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/3.9.13/envs/kakarot/lib/python3.9/site-packages/starkware/starknet/common/syscalls.cairo" + }, + "parent_location": [ + { + "end_col": 61, + "end_line": 205, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/3.9.13/envs/kakarot/lib/python3.9/site-packages/starkware/starknet/common/syscalls.cairo" + }, + "start_col": 5, + "start_line": 205 + }, + "While trying to retrieve the implicit argument 'syscall_ptr' in:" + ], + "start_col": 25, + "start_line": 200 + }, + "While expanding the reference 'syscall_ptr' in:" + ], + "start_col": 23, + "start_line": 204 + } + }, + "14": { + "accessible_scopes": [ + "starkware.starknet.common.syscalls", + "starkware.starknet.common.syscalls.get_caller_address" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 59, + "end_line": 205, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/3.9.13/envs/kakarot/lib/python3.9/site-packages/starkware/starknet/common/syscalls.cairo" + }, + "start_col": 28, + "start_line": 205 + } + }, + "15": { + "accessible_scopes": [ + "starkware.starknet.common.syscalls", + "starkware.starknet.common.syscalls.get_caller_address" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 61, + "end_line": 205, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/3.9.13/envs/kakarot/lib/python3.9/site-packages/starkware/starknet/common/syscalls.cairo" + }, + "start_col": 5, + "start_line": 205 + } + }, + "16": { + "accessible_scopes": [ + "starkware.starknet.common.syscalls", + "starkware.starknet.common.syscalls.storage_read" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 79, + "end_line": 354, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/3.9.13/envs/kakarot/lib/python3.9/site-packages/starkware/starknet/common/syscalls.cairo" + }, + "start_col": 58, + "start_line": 354 + } + }, + "18": { + "accessible_scopes": [ + "starkware.starknet.common.syscalls", + "starkware.starknet.common.syscalls.storage_read" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 98, + "end_line": 354, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/3.9.13/envs/kakarot/lib/python3.9/site-packages/starkware/starknet/common/syscalls.cairo" + }, + "start_col": 5, + "start_line": 354 + } + }, + "19": { + "accessible_scopes": [ + "starkware.starknet.common.syscalls", + "starkware.starknet.common.syscalls.storage_read" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 98, + "end_line": 354, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/3.9.13/envs/kakarot/lib/python3.9/site-packages/starkware/starknet/common/syscalls.cairo" + }, + "start_col": 5, + "start_line": 354 + } + }, + "20": { + "accessible_scopes": [ + "starkware.starknet.common.syscalls", + "starkware.starknet.common.syscalls.storage_read" + ], + "flow_tracking_data": null, + "hints": [ + { + "location": { + "end_col": 87, + "end_line": 355, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/3.9.13/envs/kakarot/lib/python3.9/site-packages/starkware/starknet/common/syscalls.cairo" + }, + "start_col": 5, + "start_line": 355 + }, + "n_prefix_newlines": 0 + } + ], + "inst": { + "end_col": 53, + "end_line": 357, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/3.9.13/envs/kakarot/lib/python3.9/site-packages/starkware/starknet/common/syscalls.cairo" + }, + "parent_location": [ + { + "end_col": 37, + "end_line": 352, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/3.9.13/envs/kakarot/lib/python3.9/site-packages/starkware/starknet/common/syscalls.cairo" + }, + "parent_location": [ + { + "end_col": 35, + "end_line": 358, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/3.9.13/envs/kakarot/lib/python3.9/site-packages/starkware/starknet/common/syscalls.cairo" + }, + "start_col": 5, + "start_line": 358 + }, + "While trying to retrieve the implicit argument 'syscall_ptr' in:" + ], + "start_col": 19, + "start_line": 352 + }, + "While expanding the reference 'syscall_ptr' in:" + ], + "start_col": 23, + "start_line": 357 + } + }, + "22": { + "accessible_scopes": [ + "starkware.starknet.common.syscalls", + "starkware.starknet.common.syscalls.storage_read" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 33, + "end_line": 358, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/3.9.13/envs/kakarot/lib/python3.9/site-packages/starkware/starknet/common/syscalls.cairo" + }, + "start_col": 19, + "start_line": 358 + } + }, + "23": { + "accessible_scopes": [ + "starkware.starknet.common.syscalls", + "starkware.starknet.common.syscalls.storage_read" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 35, + "end_line": 358, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/3.9.13/envs/kakarot/lib/python3.9/site-packages/starkware/starknet/common/syscalls.cairo" + }, + "start_col": 5, + "start_line": 358 + } + }, + "24": { + "accessible_scopes": [ + "starkware.starknet.common.syscalls", + "starkware.starknet.common.syscalls.storage_write" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 40, + "end_line": 372, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/3.9.13/envs/kakarot/lib/python3.9/site-packages/starkware/starknet/common/syscalls.cairo" + }, + "start_col": 18, + "start_line": 372 + } + }, + "26": { + "accessible_scopes": [ + "starkware.starknet.common.syscalls", + "starkware.starknet.common.syscalls.storage_write" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 7, + "end_line": 373, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/3.9.13/envs/kakarot/lib/python3.9/site-packages/starkware/starknet/common/syscalls.cairo" + }, + "start_col": 5, + "start_line": 371 + } + }, + "27": { + "accessible_scopes": [ + "starkware.starknet.common.syscalls", + "starkware.starknet.common.syscalls.storage_write" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 7, + "end_line": 373, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/3.9.13/envs/kakarot/lib/python3.9/site-packages/starkware/starknet/common/syscalls.cairo" + }, + "start_col": 5, + "start_line": 371 + } + }, + "28": { + "accessible_scopes": [ + "starkware.starknet.common.syscalls", + "starkware.starknet.common.syscalls.storage_write" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 7, + "end_line": 373, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/3.9.13/envs/kakarot/lib/python3.9/site-packages/starkware/starknet/common/syscalls.cairo" + }, + "start_col": 5, + "start_line": 371 + } + }, + "29": { + "accessible_scopes": [ + "starkware.starknet.common.syscalls", + "starkware.starknet.common.syscalls.storage_write" + ], + "flow_tracking_data": null, + "hints": [ + { + "location": { + "end_col": 88, + "end_line": 374, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/3.9.13/envs/kakarot/lib/python3.9/site-packages/starkware/starknet/common/syscalls.cairo" + }, + "start_col": 5, + "start_line": 374 + }, + "n_prefix_newlines": 0 + } + ], + "inst": { + "end_col": 54, + "end_line": 375, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/3.9.13/envs/kakarot/lib/python3.9/site-packages/starkware/starknet/common/syscalls.cairo" + }, + "parent_location": [ + { + "end_col": 38, + "end_line": 370, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/3.9.13/envs/kakarot/lib/python3.9/site-packages/starkware/starknet/common/syscalls.cairo" + }, + "parent_location": [ + { + "end_col": 15, + "end_line": 376, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/3.9.13/envs/kakarot/lib/python3.9/site-packages/starkware/starknet/common/syscalls.cairo" + }, + "start_col": 5, + "start_line": 376 + }, + "While trying to retrieve the implicit argument 'syscall_ptr' in:" + ], + "start_col": 20, + "start_line": 370 + }, + "While expanding the reference 'syscall_ptr' in:" + ], + "start_col": 23, + "start_line": 375 + } + }, + "31": { + "accessible_scopes": [ + "starkware.starknet.common.syscalls", + "starkware.starknet.common.syscalls.storage_write" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 15, + "end_line": 376, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/3.9.13/envs/kakarot/lib/python3.9/site-packages/starkware/starknet/common/syscalls.cairo" + }, + "start_col": 5, + "start_line": 376 + } + }, + "32": { + "accessible_scopes": [ + "starkware.starknet.common.syscalls", + "starkware.starknet.common.syscalls.emit_event" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 37, + "end_line": 392, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/3.9.13/envs/kakarot/lib/python3.9/site-packages/starkware/starknet/common/syscalls.cairo" + }, + "start_col": 18, + "start_line": 392 + } + }, + "34": { + "accessible_scopes": [ + "starkware.starknet.common.syscalls", + "starkware.starknet.common.syscalls.emit_event" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 7, + "end_line": 393, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/3.9.13/envs/kakarot/lib/python3.9/site-packages/starkware/starknet/common/syscalls.cairo" + }, + "start_col": 5, + "start_line": 391 + } + }, + "35": { + "accessible_scopes": [ + "starkware.starknet.common.syscalls", + "starkware.starknet.common.syscalls.emit_event" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 7, + "end_line": 393, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/3.9.13/envs/kakarot/lib/python3.9/site-packages/starkware/starknet/common/syscalls.cairo" + }, + "start_col": 5, + "start_line": 391 + } + }, + "36": { + "accessible_scopes": [ + "starkware.starknet.common.syscalls", + "starkware.starknet.common.syscalls.emit_event" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 7, + "end_line": 393, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/3.9.13/envs/kakarot/lib/python3.9/site-packages/starkware/starknet/common/syscalls.cairo" + }, + "start_col": 5, + "start_line": 391 + } + }, + "37": { + "accessible_scopes": [ + "starkware.starknet.common.syscalls", + "starkware.starknet.common.syscalls.emit_event" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 7, + "end_line": 393, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/3.9.13/envs/kakarot/lib/python3.9/site-packages/starkware/starknet/common/syscalls.cairo" + }, + "start_col": 5, + "start_line": 391 + } + }, + "38": { + "accessible_scopes": [ + "starkware.starknet.common.syscalls", + "starkware.starknet.common.syscalls.emit_event" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 7, + "end_line": 393, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/3.9.13/envs/kakarot/lib/python3.9/site-packages/starkware/starknet/common/syscalls.cairo" + }, + "start_col": 5, + "start_line": 391 + } + }, + "39": { + "accessible_scopes": [ + "starkware.starknet.common.syscalls", + "starkware.starknet.common.syscalls.emit_event" + ], + "flow_tracking_data": null, + "hints": [ + { + "location": { + "end_col": 85, + "end_line": 394, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/3.9.13/envs/kakarot/lib/python3.9/site-packages/starkware/starknet/common/syscalls.cairo" + }, + "start_col": 5, + "start_line": 394 + }, + "n_prefix_newlines": 0 + } + ], + "inst": { + "end_col": 51, + "end_line": 395, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/3.9.13/envs/kakarot/lib/python3.9/site-packages/starkware/starknet/common/syscalls.cairo" + }, + "parent_location": [ + { + "end_col": 35, + "end_line": 390, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/3.9.13/envs/kakarot/lib/python3.9/site-packages/starkware/starknet/common/syscalls.cairo" + }, + "parent_location": [ + { + "end_col": 15, + "end_line": 396, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/3.9.13/envs/kakarot/lib/python3.9/site-packages/starkware/starknet/common/syscalls.cairo" + }, + "start_col": 5, + "start_line": 396 + }, + "While trying to retrieve the implicit argument 'syscall_ptr' in:" + ], + "start_col": 17, + "start_line": 390 + }, + "While expanding the reference 'syscall_ptr' in:" + ], + "start_col": 23, + "start_line": 395 + } + }, + "41": { + "accessible_scopes": [ + "starkware.starknet.common.syscalls", + "starkware.starknet.common.syscalls.emit_event" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 15, + "end_line": 396, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/3.9.13/envs/kakarot/lib/python3.9/site-packages/starkware/starknet/common/syscalls.cairo" + }, + "start_col": 5, + "start_line": 396 + } + }, + "42": { + "accessible_scopes": [ + "starkware.cairo.common.math", + "starkware.cairo.common.math.assert_not_zero" + ], + "flow_tracking_data": null, + "hints": [ + { + "location": { + "end_col": 7, + "end_line": 11, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/3.9.13/envs/kakarot/lib/python3.9/site-packages/starkware/cairo/common/math.cairo" + }, + "start_col": 5, + "start_line": 7 + }, + "n_prefix_newlines": 1 + } + ], + "inst": { + "end_col": 7, + "end_line": 12, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/3.9.13/envs/kakarot/lib/python3.9/site-packages/starkware/cairo/common/math.cairo" + }, + "start_col": 5, + "start_line": 12 + } + }, + "44": { + "accessible_scopes": [ + "starkware.cairo.common.math", + "starkware.cairo.common.math.assert_not_zero" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 18, + "end_line": 14, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/3.9.13/envs/kakarot/lib/python3.9/site-packages/starkware/cairo/common/math.cairo" + }, + "start_col": 9, + "start_line": 14 + } + }, + "46": { + "accessible_scopes": [ + "starkware.cairo.common.math", + "starkware.cairo.common.math.assert_not_zero" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 15, + "end_line": 17, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/3.9.13/envs/kakarot/lib/python3.9/site-packages/starkware/cairo/common/math.cairo" + }, + "start_col": 5, + "start_line": 17 + } + }, + "47": { + "accessible_scopes": [ + "starkware.cairo.common.math", + "starkware.cairo.common.math.assert_nn" + ], + "flow_tracking_data": null, + "hints": [ + { + "location": { + "end_col": 7, + "end_line": 46, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/3.9.13/envs/kakarot/lib/python3.9/site-packages/starkware/cairo/common/math.cairo" + }, + "start_col": 5, + "start_line": 42 + }, + "n_prefix_newlines": 1 + } + ], + "inst": { + "end_col": 26, + "end_line": 47, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/3.9.13/envs/kakarot/lib/python3.9/site-packages/starkware/cairo/common/math.cairo" + }, + "start_col": 5, + "start_line": 47 + } + }, + "48": { + "accessible_scopes": [ + "starkware.cairo.common.math", + "starkware.cairo.common.math.assert_nn" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 46, + "end_line": 48, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/3.9.13/envs/kakarot/lib/python3.9/site-packages/starkware/cairo/common/math.cairo" + }, + "parent_location": [ + { + "end_col": 31, + "end_line": 41, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/3.9.13/envs/kakarot/lib/python3.9/site-packages/starkware/cairo/common/math.cairo" + }, + "parent_location": [ + { + "end_col": 15, + "end_line": 49, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/3.9.13/envs/kakarot/lib/python3.9/site-packages/starkware/cairo/common/math.cairo" + }, + "start_col": 5, + "start_line": 49 + }, + "While trying to retrieve the implicit argument 'range_check_ptr' in:" + ], + "start_col": 16, + "start_line": 41 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 27, + "start_line": 48 + } + }, + "50": { + "accessible_scopes": [ + "starkware.cairo.common.math", + "starkware.cairo.common.math.assert_nn" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 15, + "end_line": 49, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/3.9.13/envs/kakarot/lib/python3.9/site-packages/starkware/cairo/common/math.cairo" + }, + "start_col": 5, + "start_line": 49 + } + }, + "51": { + "accessible_scopes": [ + "starkware.cairo.common.math", + "starkware.cairo.common.math.assert_le" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 31, + "end_line": 53, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/3.9.13/envs/kakarot/lib/python3.9/site-packages/starkware/cairo/common/math.cairo" + }, + "parent_location": [ + { + "end_col": 31, + "end_line": 41, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/3.9.13/envs/kakarot/lib/python3.9/site-packages/starkware/cairo/common/math.cairo" + }, + "parent_location": [ + { + "end_col": 21, + "end_line": 54, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/3.9.13/envs/kakarot/lib/python3.9/site-packages/starkware/cairo/common/math.cairo" + }, + "start_col": 5, + "start_line": 54 + }, + "While trying to retrieve the implicit argument 'range_check_ptr' in:" + ], + "start_col": 16, + "start_line": 41 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 16, + "start_line": 53 + } + }, + "52": { + "accessible_scopes": [ + "starkware.cairo.common.math", + "starkware.cairo.common.math.assert_le" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 20, + "end_line": 54, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/3.9.13/envs/kakarot/lib/python3.9/site-packages/starkware/cairo/common/math.cairo" + }, + "start_col": 15, + "start_line": 54 + } + }, + "53": { + "accessible_scopes": [ + "starkware.cairo.common.math", + "starkware.cairo.common.math.assert_le" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 21, + "end_line": 54, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/3.9.13/envs/kakarot/lib/python3.9/site-packages/starkware/cairo/common/math.cairo" + }, + "start_col": 5, + "start_line": 54 + } + }, + "55": { + "accessible_scopes": [ + "starkware.cairo.common.math", + "starkware.cairo.common.math.assert_le" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 15, + "end_line": 55, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/3.9.13/envs/kakarot/lib/python3.9/site-packages/starkware/cairo/common/math.cairo" + }, + "start_col": 5, + "start_line": 55 + } + }, + "56": { + "accessible_scopes": [ + "starkware.cairo.common.math", + "starkware.cairo.common.math.assert_250_bit" + ], + "flow_tracking_data": null, + "hints": [ + { + "location": { + "end_col": 7, + "end_line": 106, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/3.9.13/envs/kakarot/lib/python3.9/site-packages/starkware/cairo/common/math.cairo" + }, + "start_col": 5, + "start_line": 97 + }, + "n_prefix_newlines": 1 + } + ], + "inst": { + "end_col": 50, + "end_line": 108, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/3.9.13/envs/kakarot/lib/python3.9/site-packages/starkware/cairo/common/math.cairo" + }, + "start_col": 36, + "start_line": 108 + } + }, + "58": { + "accessible_scopes": [ + "starkware.cairo.common.math", + "starkware.cairo.common.math.assert_250_bit" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 37, + "end_line": 95, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/3.9.13/envs/kakarot/lib/python3.9/site-packages/starkware/cairo/common/math.cairo" + }, + "parent_location": [ + { + "end_col": 57, + "end_line": 108, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/3.9.13/envs/kakarot/lib/python3.9/site-packages/starkware/cairo/common/math.cairo" + }, + "start_col": 53, + "start_line": 108 + }, + "While expanding the reference 'high' in:" + ], + "start_col": 16, + "start_line": 95 + } + }, + "59": { + "accessible_scopes": [ + "starkware.cairo.common.math", + "starkware.cairo.common.math.assert_250_bit" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 57, + "end_line": 108, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/3.9.13/envs/kakarot/lib/python3.9/site-packages/starkware/cairo/common/math.cairo" + }, + "start_col": 36, + "start_line": 108 + } + }, + "60": { + "accessible_scopes": [ + "starkware.cairo.common.math", + "starkware.cairo.common.math.assert_250_bit" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 58, + "end_line": 108, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/3.9.13/envs/kakarot/lib/python3.9/site-packages/starkware/cairo/common/math.cairo" + }, + "start_col": 5, + "start_line": 108 + } + }, + "61": { + "accessible_scopes": [ + "starkware.cairo.common.math", + "starkware.cairo.common.math.assert_250_bit" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 37, + "end_line": 95, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/3.9.13/envs/kakarot/lib/python3.9/site-packages/starkware/cairo/common/math.cairo" + }, + "parent_location": [ + { + "end_col": 24, + "end_line": 113, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/3.9.13/envs/kakarot/lib/python3.9/site-packages/starkware/cairo/common/math.cairo" + }, + "start_col": 20, + "start_line": 113 + }, + "While expanding the reference 'high' in:" + ], + "start_col": 16, + "start_line": 95 + } + }, + "62": { + "accessible_scopes": [ + "starkware.cairo.common.math", + "starkware.cairo.common.math.assert_250_bit" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 32, + "end_line": 113, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/3.9.13/envs/kakarot/lib/python3.9/site-packages/starkware/cairo/common/math.cairo" + }, + "start_col": 20, + "start_line": 113 + } + }, + "64": { + "accessible_scopes": [ + "starkware.cairo.common.math", + "starkware.cairo.common.math.assert_250_bit" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 32, + "end_line": 94, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/3.9.13/envs/kakarot/lib/python3.9/site-packages/starkware/cairo/common/math.cairo" + }, + "parent_location": [ + { + "end_col": 38, + "end_line": 113, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/3.9.13/envs/kakarot/lib/python3.9/site-packages/starkware/cairo/common/math.cairo" + }, + "start_col": 35, + "start_line": 113 + }, + "While expanding the reference 'low' in:" + ], + "start_col": 15, + "start_line": 94 + } + }, + "65": { + "accessible_scopes": [ + "starkware.cairo.common.math", + "starkware.cairo.common.math.assert_250_bit" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 39, + "end_line": 113, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/3.9.13/envs/kakarot/lib/python3.9/site-packages/starkware/cairo/common/math.cairo" + }, + "start_col": 5, + "start_line": 113 + } + }, + "66": { + "accessible_scopes": [ + "starkware.cairo.common.math", + "starkware.cairo.common.math.assert_250_bit" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 46, + "end_line": 115, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/3.9.13/envs/kakarot/lib/python3.9/site-packages/starkware/cairo/common/math.cairo" + }, + "parent_location": [ + { + "end_col": 36, + "end_line": 89, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/3.9.13/envs/kakarot/lib/python3.9/site-packages/starkware/cairo/common/math.cairo" + }, + "parent_location": [ + { + "end_col": 15, + "end_line": 116, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/3.9.13/envs/kakarot/lib/python3.9/site-packages/starkware/cairo/common/math.cairo" + }, + "start_col": 5, + "start_line": 116 + }, + "While trying to retrieve the implicit argument 'range_check_ptr' in:" + ], + "start_col": 21, + "start_line": 89 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 27, + "start_line": 115 + } + }, + "68": { + "accessible_scopes": [ + "starkware.cairo.common.math", + "starkware.cairo.common.math.assert_250_bit" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 15, + "end_line": 116, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/3.9.13/envs/kakarot/lib/python3.9/site-packages/starkware/cairo/common/math.cairo" + }, + "start_col": 5, + "start_line": 116 + } + }, + "69": { + "accessible_scopes": [ + "starkware.cairo.common.math", + "starkware.cairo.common.math.assert_le_felt" + ], + "flow_tracking_data": null, + "hints": [ + { + "location": { + "end_col": 7, + "end_line": 184, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/3.9.13/envs/kakarot/lib/python3.9/site-packages/starkware/cairo/common/math.cairo" + }, + "start_col": 5, + "start_line": 164 + }, + "n_prefix_newlines": 1 + } + ], + "inst": { + "end_col": 42, + "end_line": 186, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/3.9.13/envs/kakarot/lib/python3.9/site-packages/starkware/cairo/common/math.cairo" + }, + "start_col": 25, + "start_line": 186 + } + }, + "70": { + "accessible_scopes": [ + "starkware.cairo.common.math", + "starkware.cairo.common.math.assert_le_felt" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 66, + "end_line": 186, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/3.9.13/envs/kakarot/lib/python3.9/site-packages/starkware/cairo/common/math.cairo" + }, + "start_col": 45, + "start_line": 186 + } + }, + "71": { + "accessible_scopes": [ + "starkware.cairo.common.math", + "starkware.cairo.common.math.assert_le_felt" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 86, + "end_line": 186, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/3.9.13/envs/kakarot/lib/python3.9/site-packages/starkware/cairo/common/math.cairo" + }, + "start_col": 45, + "start_line": 186 + } + }, + "73": { + "accessible_scopes": [ + "starkware.cairo.common.math", + "starkware.cairo.common.math.assert_le_felt" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 86, + "end_line": 186, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/3.9.13/envs/kakarot/lib/python3.9/site-packages/starkware/cairo/common/math.cairo" + }, + "start_col": 25, + "start_line": 186 + } + }, + "74": { + "accessible_scopes": [ + "starkware.cairo.common.math", + "starkware.cairo.common.math.assert_le_felt" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 45, + "end_line": 187, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/3.9.13/envs/kakarot/lib/python3.9/site-packages/starkware/cairo/common/math.cairo" + }, + "start_col": 24, + "start_line": 187 + } + }, + "75": { + "accessible_scopes": [ + "starkware.cairo.common.math", + "starkware.cairo.common.math.assert_le_felt" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 69, + "end_line": 187, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/3.9.13/envs/kakarot/lib/python3.9/site-packages/starkware/cairo/common/math.cairo" + }, + "start_col": 48, + "start_line": 187 + } + }, + "76": { + "accessible_scopes": [ + "starkware.cairo.common.math", + "starkware.cairo.common.math.assert_le_felt" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 89, + "end_line": 187, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/3.9.13/envs/kakarot/lib/python3.9/site-packages/starkware/cairo/common/math.cairo" + }, + "start_col": 48, + "start_line": 187 + } + }, + "78": { + "accessible_scopes": [ + "starkware.cairo.common.math", + "starkware.cairo.common.math.assert_le_felt" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 89, + "end_line": 187, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/3.9.13/envs/kakarot/lib/python3.9/site-packages/starkware/cairo/common/math.cairo" + }, + "start_col": 24, + "start_line": 187 + } + }, + "79": { + "accessible_scopes": [ + "starkware.cairo.common.math", + "starkware.cairo.common.math.assert_le_felt" + ], + "flow_tracking_data": null, + "hints": [ + { + "location": { + "end_col": 49, + "end_line": 196, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/3.9.13/envs/kakarot/lib/python3.9/site-packages/starkware/cairo/common/math.cairo" + }, + "start_col": 5, + "start_line": 196 + }, + "n_prefix_newlines": 0 + } + ], + "inst": { + "end_col": 42, + "end_line": 197, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/3.9.13/envs/kakarot/lib/python3.9/site-packages/starkware/cairo/common/math.cairo" + }, + "start_col": 5, + "start_line": 197 + } + }, + "81": { + "accessible_scopes": [ + "starkware.cairo.common.math", + "starkware.cairo.common.math.assert_le_felt" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 25, + "end_line": 198, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/3.9.13/envs/kakarot/lib/python3.9/site-packages/starkware/cairo/common/math.cairo" + }, + "start_col": 23, + "start_line": 198 + } + }, + "83": { + "accessible_scopes": [ + "starkware.cairo.common.math", + "starkware.cairo.common.math.assert_le_felt" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 30, + "end_line": 198, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/3.9.13/envs/kakarot/lib/python3.9/site-packages/starkware/cairo/common/math.cairo" + }, + "start_col": 22, + "start_line": 198 + } + }, + "84": { + "accessible_scopes": [ + "starkware.cairo.common.math", + "starkware.cairo.common.math.assert_le_felt" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 31, + "end_line": 198, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/3.9.13/envs/kakarot/lib/python3.9/site-packages/starkware/cairo/common/math.cairo" + }, + "start_col": 5, + "start_line": 198 + } + }, + "85": { + "accessible_scopes": [ + "starkware.cairo.common.math", + "starkware.cairo.common.math.assert_le_felt" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 29, + "end_line": 199, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/3.9.13/envs/kakarot/lib/python3.9/site-packages/starkware/cairo/common/math.cairo" + }, + "start_col": 24, + "start_line": 199 + } + }, + "86": { + "accessible_scopes": [ + "starkware.cairo.common.math", + "starkware.cairo.common.math.assert_le_felt" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 39, + "end_line": 199, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/3.9.13/envs/kakarot/lib/python3.9/site-packages/starkware/cairo/common/math.cairo" + }, + "start_col": 34, + "start_line": 199 + } + }, + "88": { + "accessible_scopes": [ + "starkware.cairo.common.math", + "starkware.cairo.common.math.assert_le_felt" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 40, + "end_line": 199, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/3.9.13/envs/kakarot/lib/python3.9/site-packages/starkware/cairo/common/math.cairo" + }, + "start_col": 23, + "start_line": 199 + } + }, + "89": { + "accessible_scopes": [ + "starkware.cairo.common.math", + "starkware.cairo.common.math.assert_le_felt" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 41, + "end_line": 199, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/3.9.13/envs/kakarot/lib/python3.9/site-packages/starkware/cairo/common/math.cairo" + }, + "start_col": 5, + "start_line": 199 + } + }, + "90": { + "accessible_scopes": [ + "starkware.cairo.common.math", + "starkware.cairo.common.math.assert_le_felt" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 46, + "end_line": 188, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/3.9.13/envs/kakarot/lib/python3.9/site-packages/starkware/cairo/common/math.cairo" + }, + "parent_location": [ + { + "end_col": 36, + "end_line": 154, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/3.9.13/envs/kakarot/lib/python3.9/site-packages/starkware/cairo/common/math.cairo" + }, + "parent_location": [ + { + "end_col": 15, + "end_line": 200, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/3.9.13/envs/kakarot/lib/python3.9/site-packages/starkware/cairo/common/math.cairo" + }, + "start_col": 5, + "start_line": 200 + }, + "While trying to retrieve the implicit argument 'range_check_ptr' in:" + ], + "start_col": 21, + "start_line": 154 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 27, + "start_line": 188 + } + }, + "92": { + "accessible_scopes": [ + "starkware.cairo.common.math", + "starkware.cairo.common.math.assert_le_felt" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 15, + "end_line": 200, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/3.9.13/envs/kakarot/lib/python3.9/site-packages/starkware/cairo/common/math.cairo" + }, + "start_col": 5, + "start_line": 200 + } + }, + "93": { + "accessible_scopes": [ + "starkware.cairo.common.math", + "starkware.cairo.common.math.assert_le_felt" + ], + "flow_tracking_data": null, + "hints": [ + { + "location": { + "end_col": 49, + "end_line": 204, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/3.9.13/envs/kakarot/lib/python3.9/site-packages/starkware/cairo/common/math.cairo" + }, + "start_col": 5, + "start_line": 204 + }, + "n_prefix_newlines": 0 + } + ], + "inst": { + "end_col": 50, + "end_line": 205, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/3.9.13/envs/kakarot/lib/python3.9/site-packages/starkware/cairo/common/math.cairo" + }, + "start_col": 5, + "start_line": 205 + } + }, + "95": { + "accessible_scopes": [ + "starkware.cairo.common.math", + "starkware.cairo.common.math.assert_le_felt" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 23, + "end_line": 206, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/3.9.13/envs/kakarot/lib/python3.9/site-packages/starkware/cairo/common/math.cairo" + }, + "start_col": 21, + "start_line": 206 + } + }, + "97": { + "accessible_scopes": [ + "starkware.cairo.common.math", + "starkware.cairo.common.math.assert_le_felt" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 28, + "end_line": 206, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/3.9.13/envs/kakarot/lib/python3.9/site-packages/starkware/cairo/common/math.cairo" + }, + "start_col": 20, + "start_line": 206 + } + }, + "98": { + "accessible_scopes": [ + "starkware.cairo.common.math", + "starkware.cairo.common.math.assert_le_felt" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 30, + "end_line": 207, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/3.9.13/envs/kakarot/lib/python3.9/site-packages/starkware/cairo/common/math.cairo" + }, + "start_col": 22, + "start_line": 207 + } + }, + "99": { + "accessible_scopes": [ + "starkware.cairo.common.math", + "starkware.cairo.common.math.assert_le_felt" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 31, + "end_line": 207, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/3.9.13/envs/kakarot/lib/python3.9/site-packages/starkware/cairo/common/math.cairo" + }, + "start_col": 5, + "start_line": 207 + } + }, + "100": { + "accessible_scopes": [ + "starkware.cairo.common.math", + "starkware.cairo.common.math.assert_le_felt" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 31, + "end_line": 208, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/3.9.13/envs/kakarot/lib/python3.9/site-packages/starkware/cairo/common/math.cairo" + }, + "start_col": 23, + "start_line": 208 + } + }, + "101": { + "accessible_scopes": [ + "starkware.cairo.common.math", + "starkware.cairo.common.math.assert_le_felt" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 32, + "end_line": 208, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/3.9.13/envs/kakarot/lib/python3.9/site-packages/starkware/cairo/common/math.cairo" + }, + "start_col": 5, + "start_line": 208 + } + }, + "102": { + "accessible_scopes": [ + "starkware.cairo.common.math", + "starkware.cairo.common.math.assert_le_felt" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 46, + "end_line": 188, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/3.9.13/envs/kakarot/lib/python3.9/site-packages/starkware/cairo/common/math.cairo" + }, + "parent_location": [ + { + "end_col": 36, + "end_line": 154, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/3.9.13/envs/kakarot/lib/python3.9/site-packages/starkware/cairo/common/math.cairo" + }, + "parent_location": [ + { + "end_col": 15, + "end_line": 209, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/3.9.13/envs/kakarot/lib/python3.9/site-packages/starkware/cairo/common/math.cairo" + }, + "start_col": 5, + "start_line": 209 + }, + "While trying to retrieve the implicit argument 'range_check_ptr' in:" + ], + "start_col": 21, + "start_line": 154 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 27, + "start_line": 188 + } + }, + "104": { + "accessible_scopes": [ + "starkware.cairo.common.math", + "starkware.cairo.common.math.assert_le_felt" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 15, + "end_line": 209, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/3.9.13/envs/kakarot/lib/python3.9/site-packages/starkware/cairo/common/math.cairo" + }, + "start_col": 5, + "start_line": 209 + } + }, + "105": { + "accessible_scopes": [ + "starkware.cairo.common.math", + "starkware.cairo.common.math.assert_le_felt" + ], + "flow_tracking_data": null, + "hints": [ + { + "location": { + "end_col": 31, + "end_line": 213, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/3.9.13/envs/kakarot/lib/python3.9/site-packages/starkware/cairo/common/math.cairo" + }, + "start_col": 5, + "start_line": 213 + }, + "n_prefix_newlines": 0 + } + ], + "inst": { + "end_col": 24, + "end_line": 214, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/3.9.13/envs/kakarot/lib/python3.9/site-packages/starkware/cairo/common/math.cairo" + }, + "start_col": 5, + "start_line": 214 + } + }, + "106": { + "accessible_scopes": [ + "starkware.cairo.common.math", + "starkware.cairo.common.math.assert_le_felt" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 33, + "end_line": 215, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/3.9.13/envs/kakarot/lib/python3.9/site-packages/starkware/cairo/common/math.cairo" + }, + "start_col": 28, + "start_line": 215 + } + }, + "107": { + "accessible_scopes": [ + "starkware.cairo.common.math", + "starkware.cairo.common.math.assert_le_felt" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 34, + "end_line": 215, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/3.9.13/envs/kakarot/lib/python3.9/site-packages/starkware/cairo/common/math.cairo" + }, + "start_col": 23, + "start_line": 215 + } + }, + "108": { + "accessible_scopes": [ + "starkware.cairo.common.math", + "starkware.cairo.common.math.assert_le_felt" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 35, + "end_line": 215, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/3.9.13/envs/kakarot/lib/python3.9/site-packages/starkware/cairo/common/math.cairo" + }, + "start_col": 5, + "start_line": 215 + } + }, + "109": { + "accessible_scopes": [ + "starkware.cairo.common.math", + "starkware.cairo.common.math.assert_le_felt" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 12, + "end_line": 216, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/3.9.13/envs/kakarot/lib/python3.9/site-packages/starkware/cairo/common/math.cairo" + }, + "start_col": 5, + "start_line": 216 + } + }, + "111": { + "accessible_scopes": [ + "starkware.cairo.common.math", + "starkware.cairo.common.math.assert_le_felt" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 46, + "end_line": 188, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/3.9.13/envs/kakarot/lib/python3.9/site-packages/starkware/cairo/common/math.cairo" + }, + "parent_location": [ + { + "end_col": 36, + "end_line": 154, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/3.9.13/envs/kakarot/lib/python3.9/site-packages/starkware/cairo/common/math.cairo" + }, + "parent_location": [ + { + "end_col": 15, + "end_line": 217, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/3.9.13/envs/kakarot/lib/python3.9/site-packages/starkware/cairo/common/math.cairo" + }, + "start_col": 5, + "start_line": 217 + }, + "While trying to retrieve the implicit argument 'range_check_ptr' in:" + ], + "start_col": 21, + "start_line": 154 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 27, + "start_line": 188 + } + }, + "113": { + "accessible_scopes": [ + "starkware.cairo.common.math", + "starkware.cairo.common.math.assert_le_felt" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 15, + "end_line": 217, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/3.9.13/envs/kakarot/lib/python3.9/site-packages/starkware/cairo/common/math.cairo" + }, + "start_col": 5, + "start_line": 217 + } + }, + "114": { + "accessible_scopes": [ + "starkware.starknet.common.storage", + "starkware.starknet.common.storage.normalize_address" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 22, + "end_line": 13, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/3.9.13/envs/kakarot/lib/python3.9/site-packages/starkware/starknet/common/storage.cairo" + }, + "start_col": 5, + "start_line": 13 + } + }, + "116": { + "accessible_scopes": [ + "starkware.starknet.common.storage", + "starkware.starknet.common.storage.normalize_address" + ], + "flow_tracking_data": null, + "hints": [ + { + "location": { + "end_col": 7, + "end_line": 21, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/3.9.13/envs/kakarot/lib/python3.9/site-packages/starkware/starknet/common/storage.cairo" + }, + "start_col": 5, + "start_line": 14 + }, + "n_prefix_newlines": 1 + } + ], + "inst": { + "end_col": 7, + "end_line": 22, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/3.9.13/envs/kakarot/lib/python3.9/site-packages/starkware/starknet/common/storage.cairo" + }, + "start_col": 5, + "start_line": 22 + } + }, + "118": { + "accessible_scopes": [ + "starkware.starknet.common.storage", + "starkware.starknet.common.storage.normalize_address" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 39, + "end_line": 12, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/3.9.13/envs/kakarot/lib/python3.9/site-packages/starkware/starknet/common/storage.cairo" + }, + "parent_location": [ + { + "end_col": 36, + "end_line": 89, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/3.9.13/envs/kakarot/lib/python3.9/site-packages/starkware/cairo/common/math.cairo" + }, + "parent_location": [ + { + "end_col": 26, + "end_line": 50, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/3.9.13/envs/kakarot/lib/python3.9/site-packages/starkware/starknet/common/storage.cairo" + }, + "start_col": 9, + "start_line": 50 + }, + "While trying to retrieve the implicit argument 'range_check_ptr' in:" + ], + "start_col": 21, + "start_line": 89 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 24, + "start_line": 12 + } + }, + "119": { + "accessible_scopes": [ + "starkware.starknet.common.storage", + "starkware.starknet.common.storage.normalize_address" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 34, + "end_line": 48, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/3.9.13/envs/kakarot/lib/python3.9/site-packages/starkware/starknet/common/storage.cairo" + }, + "parent_location": [ + { + "end_col": 25, + "end_line": 50, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/3.9.13/envs/kakarot/lib/python3.9/site-packages/starkware/starknet/common/storage.cairo" + }, + "start_col": 24, + "start_line": 50 + }, + "While expanding the reference 'x' in:" + ], + "start_col": 17, + "start_line": 48 + } + }, + "121": { + "accessible_scopes": [ + "starkware.starknet.common.storage", + "starkware.starknet.common.storage.normalize_address" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 26, + "end_line": 50, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/3.9.13/envs/kakarot/lib/python3.9/site-packages/starkware/starknet/common/storage.cairo" + }, + "start_col": 9, + "start_line": 50 + } + }, + "123": { + "accessible_scopes": [ + "starkware.starknet.common.storage", + "starkware.starknet.common.storage.normalize_address" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 20, + "end_line": 49, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/3.9.13/envs/kakarot/lib/python3.9/site-packages/starkware/starknet/common/storage.cairo" + }, + "parent_location": [ + { + "end_col": 25, + "end_line": 51, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/3.9.13/envs/kakarot/lib/python3.9/site-packages/starkware/starknet/common/storage.cairo" + }, + "start_col": 24, + "start_line": 51 + }, + "While expanding the reference 'y' in:" + ], + "start_col": 18, + "start_line": 49 + } + }, + "125": { + "accessible_scopes": [ + "starkware.starknet.common.storage", + "starkware.starknet.common.storage.normalize_address" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 36, + "end_line": 89, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/3.9.13/envs/kakarot/lib/python3.9/site-packages/starkware/cairo/common/math.cairo" + }, + "parent_location": [ + { + "end_col": 26, + "end_line": 50, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/3.9.13/envs/kakarot/lib/python3.9/site-packages/starkware/starknet/common/storage.cairo" + }, + "parent_location": [ + { + "end_col": 36, + "end_line": 89, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/3.9.13/envs/kakarot/lib/python3.9/site-packages/starkware/cairo/common/math.cairo" + }, + "parent_location": [ + { + "end_col": 26, + "end_line": 51, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/3.9.13/envs/kakarot/lib/python3.9/site-packages/starkware/starknet/common/storage.cairo" + }, + "start_col": 9, + "start_line": 51 + }, + "While trying to retrieve the implicit argument 'range_check_ptr' in:" + ], + "start_col": 21, + "start_line": 89 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 9, + "start_line": 50 + }, + "While trying to update the implicit return value 'range_check_ptr' in:" + ], + "start_col": 21, + "start_line": 89 + } + }, + "126": { + "accessible_scopes": [ + "starkware.starknet.common.storage", + "starkware.starknet.common.storage.normalize_address" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 28, + "end_line": 49, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/3.9.13/envs/kakarot/lib/python3.9/site-packages/starkware/starknet/common/storage.cairo" + }, + "parent_location": [ + { + "end_col": 25, + "end_line": 51, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/3.9.13/envs/kakarot/lib/python3.9/site-packages/starkware/starknet/common/storage.cairo" + }, + "start_col": 24, + "start_line": 51 + }, + "While expanding the reference 'y' in:" + ], + "start_col": 17, + "start_line": 49 + } + }, + "127": { + "accessible_scopes": [ + "starkware.starknet.common.storage", + "starkware.starknet.common.storage.normalize_address" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 26, + "end_line": 51, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/3.9.13/envs/kakarot/lib/python3.9/site-packages/starkware/starknet/common/storage.cairo" + }, + "start_col": 9, + "start_line": 51 + } + }, + "129": { + "accessible_scopes": [ + "starkware.starknet.common.storage", + "starkware.starknet.common.storage.normalize_address" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 38, + "end_line": 52, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/3.9.13/envs/kakarot/lib/python3.9/site-packages/starkware/starknet/common/storage.cairo" + }, + "start_col": 21, + "start_line": 52 + } + }, + "131": { + "accessible_scopes": [ + "starkware.starknet.common.storage", + "starkware.starknet.common.storage.normalize_address" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 40, + "end_line": 52, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/3.9.13/envs/kakarot/lib/python3.9/site-packages/starkware/starknet/common/storage.cairo" + }, + "start_col": 9, + "start_line": 52 + } + }, + "132": { + "accessible_scopes": [ + "starkware.starknet.common.storage", + "starkware.starknet.common.storage.normalize_address" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 24, + "end_line": 23, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/3.9.13/envs/kakarot/lib/python3.9/site-packages/starkware/starknet/common/storage.cairo" + }, + "start_col": 9, + "start_line": 23 + } + }, + "134": { + "accessible_scopes": [ + "starkware.starknet.common.storage", + "starkware.starknet.common.storage.normalize_address" + ], + "flow_tracking_data": null, + "hints": [ + { + "location": { + "end_col": 57, + "end_line": 24, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/3.9.13/envs/kakarot/lib/python3.9/site-packages/starkware/starknet/common/storage.cairo" + }, + "start_col": 9, + "start_line": 24 + }, + "n_prefix_newlines": 0 + } + ], + "inst": { + "end_col": 11, + "end_line": 25, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/3.9.13/envs/kakarot/lib/python3.9/site-packages/starkware/starknet/common/storage.cairo" + }, + "start_col": 9, + "start_line": 25 + } + }, + "136": { + "accessible_scopes": [ + "starkware.starknet.common.storage", + "starkware.starknet.common.storage.normalize_address" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 21, + "end_line": 30, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/3.9.13/envs/kakarot/lib/python3.9/site-packages/starkware/starknet/common/storage.cairo" + }, + "start_col": 13, + "start_line": 30 + } + }, + "138": { + "accessible_scopes": [ + "starkware.starknet.common.storage", + "starkware.starknet.common.storage.normalize_address" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 42, + "end_line": 32, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/3.9.13/envs/kakarot/lib/python3.9/site-packages/starkware/starknet/common/storage.cairo" + }, + "start_col": 28, + "start_line": 32 + } + }, + "140": { + "accessible_scopes": [ + "starkware.starknet.common.storage", + "starkware.starknet.common.storage.normalize_address" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 39, + "end_line": 12, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/3.9.13/envs/kakarot/lib/python3.9/site-packages/starkware/starknet/common/storage.cairo" + }, + "parent_location": [ + { + "end_col": 36, + "end_line": 89, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/3.9.13/envs/kakarot/lib/python3.9/site-packages/starkware/cairo/common/math.cairo" + }, + "parent_location": [ + { + "end_col": 50, + "end_line": 32, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/3.9.13/envs/kakarot/lib/python3.9/site-packages/starkware/starknet/common/storage.cairo" + }, + "start_col": 13, + "start_line": 32 + }, + "While trying to retrieve the implicit argument 'range_check_ptr' in:" + ], + "start_col": 21, + "start_line": 89 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 24, + "start_line": 12 + } + }, + "141": { + "accessible_scopes": [ + "starkware.starknet.common.storage", + "starkware.starknet.common.storage.normalize_address" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 49, + "end_line": 32, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/3.9.13/envs/kakarot/lib/python3.9/site-packages/starkware/starknet/common/storage.cairo" + }, + "start_col": 28, + "start_line": 32 + } + }, + "142": { + "accessible_scopes": [ + "starkware.starknet.common.storage", + "starkware.starknet.common.storage.normalize_address" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 50, + "end_line": 32, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/3.9.13/envs/kakarot/lib/python3.9/site-packages/starkware/starknet/common/storage.cairo" + }, + "start_col": 13, + "start_line": 32 + } + }, + "144": { + "accessible_scopes": [ + "starkware.starknet.common.storage", + "starkware.starknet.common.storage.normalize_address" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 11, + "end_line": 25, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/3.9.13/envs/kakarot/lib/python3.9/site-packages/starkware/starknet/common/storage.cairo" + }, + "start_col": 9, + "start_line": 25 + } + }, + "146": { + "accessible_scopes": [ + "starkware.starknet.common.storage", + "starkware.starknet.common.storage.normalize_address" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 21, + "end_line": 26, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/3.9.13/envs/kakarot/lib/python3.9/site-packages/starkware/starknet/common/storage.cairo" + }, + "start_col": 13, + "start_line": 26 + } + }, + "148": { + "accessible_scopes": [ + "starkware.starknet.common.storage", + "starkware.starknet.common.storage.normalize_address" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 39, + "end_line": 12, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/3.9.13/envs/kakarot/lib/python3.9/site-packages/starkware/starknet/common/storage.cairo" + }, + "parent_location": [ + { + "end_col": 36, + "end_line": 89, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/3.9.13/envs/kakarot/lib/python3.9/site-packages/starkware/cairo/common/math.cairo" + }, + "parent_location": [ + { + "end_col": 33, + "end_line": 28, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/3.9.13/envs/kakarot/lib/python3.9/site-packages/starkware/starknet/common/storage.cairo" + }, + "start_col": 13, + "start_line": 28 + }, + "While trying to retrieve the implicit argument 'range_check_ptr' in:" + ], + "start_col": 21, + "start_line": 89 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 24, + "start_line": 12 + } + }, + "149": { + "accessible_scopes": [ + "starkware.starknet.common.storage", + "starkware.starknet.common.storage.normalize_address" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 51, + "end_line": 12, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/3.9.13/envs/kakarot/lib/python3.9/site-packages/starkware/starknet/common/storage.cairo" + }, + "parent_location": [ + { + "end_col": 32, + "end_line": 28, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/3.9.13/envs/kakarot/lib/python3.9/site-packages/starkware/starknet/common/storage.cairo" + }, + "start_col": 28, + "start_line": 28 + }, + "While expanding the reference 'addr' in:" + ], + "start_col": 41, + "start_line": 12 + } + }, + "150": { + "accessible_scopes": [ + "starkware.starknet.common.storage", + "starkware.starknet.common.storage.normalize_address" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 33, + "end_line": 28, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/3.9.13/envs/kakarot/lib/python3.9/site-packages/starkware/starknet/common/storage.cairo" + }, + "start_col": 13, + "start_line": 28 + } + }, + "152": { + "accessible_scopes": [ + "starkware.starknet.common.storage", + "starkware.starknet.common.storage.normalize_address" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 51, + "end_line": 12, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/3.9.13/envs/kakarot/lib/python3.9/site-packages/starkware/starknet/common/storage.cairo" + }, + "parent_location": [ + { + "end_col": 25, + "end_line": 34, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/3.9.13/envs/kakarot/lib/python3.9/site-packages/starkware/starknet/common/storage.cairo" + }, + "start_col": 21, + "start_line": 34 + }, + "While expanding the reference 'addr' in:" + ], + "start_col": 41, + "start_line": 12 + } + }, + "153": { + "accessible_scopes": [ + "starkware.starknet.common.storage", + "starkware.starknet.common.storage.normalize_address" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 27, + "end_line": 34, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/3.9.13/envs/kakarot/lib/python3.9/site-packages/starkware/starknet/common/storage.cairo" + }, + "start_col": 9, + "start_line": 34 + } + }, + "154": { + "accessible_scopes": [ + "starkware.cairo.common.math_cmp", + "starkware.cairo.common.math_cmp.is_nn" + ], + "flow_tracking_data": null, + "hints": [ + { + "location": { + "end_col": 84, + "end_line": 19, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/3.9.13/envs/kakarot/lib/python3.9/site-packages/starkware/cairo/common/math_cmp.cairo" + }, + "start_col": 5, + "start_line": 19 + }, + "n_prefix_newlines": 0 + } + ], + "inst": { + "end_col": 40, + "end_line": 20, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/3.9.13/envs/kakarot/lib/python3.9/site-packages/starkware/cairo/common/math_cmp.cairo" + }, + "start_col": 5, + "start_line": 20 + } + }, + "156": { + "accessible_scopes": [ + "starkware.cairo.common.math_cmp", + "starkware.cairo.common.math_cmp.is_nn" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 26, + "end_line": 21, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/3.9.13/envs/kakarot/lib/python3.9/site-packages/starkware/cairo/common/math_cmp.cairo" + }, + "start_col": 5, + "start_line": 21 + } + }, + "157": { + "accessible_scopes": [ + "starkware.cairo.common.math_cmp", + "starkware.cairo.common.math_cmp.is_nn" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 13, + "end_line": 22, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/3.9.13/envs/kakarot/lib/python3.9/site-packages/starkware/cairo/common/math_cmp.cairo" + }, + "start_col": 5, + "start_line": 22 + } + }, + "159": { + "accessible_scopes": [ + "starkware.cairo.common.math_cmp", + "starkware.cairo.common.math_cmp.is_nn" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 46, + "end_line": 23, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/3.9.13/envs/kakarot/lib/python3.9/site-packages/starkware/cairo/common/math_cmp.cairo" + }, + "parent_location": [ + { + "end_col": 27, + "end_line": 18, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/3.9.13/envs/kakarot/lib/python3.9/site-packages/starkware/cairo/common/math_cmp.cairo" + }, + "parent_location": [ + { + "end_col": 14, + "end_line": 24, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/3.9.13/envs/kakarot/lib/python3.9/site-packages/starkware/cairo/common/math_cmp.cairo" + }, + "start_col": 5, + "start_line": 24 + }, + "While trying to retrieve the implicit argument 'range_check_ptr' in:" + ], + "start_col": 12, + "start_line": 18 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 27, + "start_line": 23 + } + }, + "161": { + "accessible_scopes": [ + "starkware.cairo.common.math_cmp", + "starkware.cairo.common.math_cmp.is_nn" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 13, + "end_line": 24, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/3.9.13/envs/kakarot/lib/python3.9/site-packages/starkware/cairo/common/math_cmp.cairo" + }, + "start_col": 12, + "start_line": 24 + } + }, + "163": { + "accessible_scopes": [ + "starkware.cairo.common.math_cmp", + "starkware.cairo.common.math_cmp.is_nn" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 14, + "end_line": 24, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/3.9.13/envs/kakarot/lib/python3.9/site-packages/starkware/cairo/common/math_cmp.cairo" + }, + "start_col": 5, + "start_line": 24 + } + }, + "164": { + "accessible_scopes": [ + "starkware.cairo.common.math_cmp", + "starkware.cairo.common.math_cmp.is_nn" + ], + "flow_tracking_data": null, + "hints": [ + { + "location": { + "end_col": 91, + "end_line": 27, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/3.9.13/envs/kakarot/lib/python3.9/site-packages/starkware/cairo/common/math_cmp.cairo" + }, + "start_col": 5, + "start_line": 27 + }, + "n_prefix_newlines": 0 + } + ], + "inst": { + "end_col": 48, + "end_line": 28, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/3.9.13/envs/kakarot/lib/python3.9/site-packages/starkware/cairo/common/math_cmp.cairo" + }, + "start_col": 5, + "start_line": 28 + } + }, + "166": { + "accessible_scopes": [ + "starkware.cairo.common.math_cmp", + "starkware.cairo.common.math_cmp.is_nn" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 35, + "end_line": 29, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/3.9.13/envs/kakarot/lib/python3.9/site-packages/starkware/cairo/common/math_cmp.cairo" + }, + "start_col": 33, + "start_line": 29 + } + }, + "168": { + "accessible_scopes": [ + "starkware.cairo.common.math_cmp", + "starkware.cairo.common.math_cmp.is_nn" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 40, + "end_line": 29, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/3.9.13/envs/kakarot/lib/python3.9/site-packages/starkware/cairo/common/math_cmp.cairo" + }, + "start_col": 32, + "start_line": 29 + } + }, + "170": { + "accessible_scopes": [ + "starkware.cairo.common.math_cmp", + "starkware.cairo.common.math_cmp.is_nn" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 41, + "end_line": 29, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/3.9.13/envs/kakarot/lib/python3.9/site-packages/starkware/cairo/common/math_cmp.cairo" + }, + "start_col": 5, + "start_line": 29 + } + }, + "171": { + "accessible_scopes": [ + "starkware.cairo.common.math_cmp", + "starkware.cairo.common.math_cmp.is_nn" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 13, + "end_line": 30, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/3.9.13/envs/kakarot/lib/python3.9/site-packages/starkware/cairo/common/math_cmp.cairo" + }, + "start_col": 5, + "start_line": 30 + } + }, + "173": { + "accessible_scopes": [ + "starkware.cairo.common.math_cmp", + "starkware.cairo.common.math_cmp.is_nn" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 46, + "end_line": 31, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/3.9.13/envs/kakarot/lib/python3.9/site-packages/starkware/cairo/common/math_cmp.cairo" + }, + "parent_location": [ + { + "end_col": 27, + "end_line": 18, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/3.9.13/envs/kakarot/lib/python3.9/site-packages/starkware/cairo/common/math_cmp.cairo" + }, + "parent_location": [ + { + "end_col": 14, + "end_line": 32, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/3.9.13/envs/kakarot/lib/python3.9/site-packages/starkware/cairo/common/math_cmp.cairo" + }, + "start_col": 5, + "start_line": 32 + }, + "While trying to retrieve the implicit argument 'range_check_ptr' in:" + ], + "start_col": 12, + "start_line": 18 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 27, + "start_line": 31 + } + }, + "175": { + "accessible_scopes": [ + "starkware.cairo.common.math_cmp", + "starkware.cairo.common.math_cmp.is_nn" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 13, + "end_line": 32, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/3.9.13/envs/kakarot/lib/python3.9/site-packages/starkware/cairo/common/math_cmp.cairo" + }, + "start_col": 12, + "start_line": 32 + } + }, + "177": { + "accessible_scopes": [ + "starkware.cairo.common.math_cmp", + "starkware.cairo.common.math_cmp.is_nn" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 14, + "end_line": 32, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/3.9.13/envs/kakarot/lib/python3.9/site-packages/starkware/cairo/common/math_cmp.cairo" + }, + "start_col": 5, + "start_line": 32 + } + }, + "178": { + "accessible_scopes": [ + "starkware.cairo.common.math_cmp", + "starkware.cairo.common.math_cmp.is_nn" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 27, + "end_line": 18, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/3.9.13/envs/kakarot/lib/python3.9/site-packages/starkware/cairo/common/math_cmp.cairo" + }, + "parent_location": [ + { + "end_col": 36, + "end_line": 154, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/3.9.13/envs/kakarot/lib/python3.9/site-packages/starkware/cairo/common/math.cairo" + }, + "parent_location": [ + { + "end_col": 32, + "end_line": 35, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/3.9.13/envs/kakarot/lib/python3.9/site-packages/starkware/cairo/common/math_cmp.cairo" + }, + "start_col": 5, + "start_line": 35 + }, + "While trying to retrieve the implicit argument 'range_check_ptr' in:" + ], + "start_col": 21, + "start_line": 154 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 12, + "start_line": 18 + } + }, + "179": { + "accessible_scopes": [ + "starkware.cairo.common.math_cmp", + "starkware.cairo.common.math_cmp.is_nn" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 28, + "end_line": 35, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/3.9.13/envs/kakarot/lib/python3.9/site-packages/starkware/cairo/common/math_cmp.cairo" + }, + "start_col": 20, + "start_line": 35 + } + }, + "181": { + "accessible_scopes": [ + "starkware.cairo.common.math_cmp", + "starkware.cairo.common.math_cmp.is_nn" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 30, + "end_line": 18, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/3.9.13/envs/kakarot/lib/python3.9/site-packages/starkware/cairo/common/math_cmp.cairo" + }, + "parent_location": [ + { + "end_col": 31, + "end_line": 35, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/3.9.13/envs/kakarot/lib/python3.9/site-packages/starkware/cairo/common/math_cmp.cairo" + }, + "start_col": 30, + "start_line": 35 + }, + "While expanding the reference 'a' in:" + ], + "start_col": 29, + "start_line": 18 + } + }, + "182": { + "accessible_scopes": [ + "starkware.cairo.common.math_cmp", + "starkware.cairo.common.math_cmp.is_nn" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 32, + "end_line": 35, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/3.9.13/envs/kakarot/lib/python3.9/site-packages/starkware/cairo/common/math_cmp.cairo" + }, + "start_col": 5, + "start_line": 35 + } + }, + "184": { + "accessible_scopes": [ + "starkware.cairo.common.math_cmp", + "starkware.cairo.common.math_cmp.is_nn" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 13, + "end_line": 36, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/3.9.13/envs/kakarot/lib/python3.9/site-packages/starkware/cairo/common/math_cmp.cairo" + }, + "start_col": 12, + "start_line": 36 + } + }, + "186": { + "accessible_scopes": [ + "starkware.cairo.common.math_cmp", + "starkware.cairo.common.math_cmp.is_nn" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 14, + "end_line": 36, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/3.9.13/envs/kakarot/lib/python3.9/site-packages/starkware/cairo/common/math_cmp.cairo" + }, + "start_col": 5, + "start_line": 36 + } + }, + "187": { + "accessible_scopes": [ + "starkware.cairo.common.math_cmp", + "starkware.cairo.common.math_cmp.is_le" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 27, + "end_line": 42, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/3.9.13/envs/kakarot/lib/python3.9/site-packages/starkware/cairo/common/math_cmp.cairo" + }, + "parent_location": [ + { + "end_col": 27, + "end_line": 18, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/3.9.13/envs/kakarot/lib/python3.9/site-packages/starkware/cairo/common/math_cmp.cairo" + }, + "parent_location": [ + { + "end_col": 24, + "end_line": 43, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/3.9.13/envs/kakarot/lib/python3.9/site-packages/starkware/cairo/common/math_cmp.cairo" + }, + "start_col": 12, + "start_line": 43 + }, + "While trying to retrieve the implicit argument 'range_check_ptr' in:" + ], + "start_col": 12, + "start_line": 18 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 12, + "start_line": 42 + } + }, + "188": { + "accessible_scopes": [ + "starkware.cairo.common.math_cmp", + "starkware.cairo.common.math_cmp.is_le" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 23, + "end_line": 43, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/3.9.13/envs/kakarot/lib/python3.9/site-packages/starkware/cairo/common/math_cmp.cairo" + }, + "start_col": 18, + "start_line": 43 + } + }, + "189": { + "accessible_scopes": [ + "starkware.cairo.common.math_cmp", + "starkware.cairo.common.math_cmp.is_le" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 24, + "end_line": 43, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/3.9.13/envs/kakarot/lib/python3.9/site-packages/starkware/cairo/common/math_cmp.cairo" + }, + "start_col": 12, + "start_line": 43 + } + }, + "191": { + "accessible_scopes": [ + "starkware.cairo.common.math_cmp", + "starkware.cairo.common.math_cmp.is_le" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 25, + "end_line": 43, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/3.9.13/envs/kakarot/lib/python3.9/site-packages/starkware/cairo/common/math_cmp.cairo" + }, + "start_col": 5, + "start_line": 43 + } + }, + "192": { + "accessible_scopes": [ + "starkware.cairo.common.uint256", + "starkware.cairo.common.uint256.uint256_check" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 30, + "end_line": 22, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/3.9.13/envs/kakarot/lib/python3.9/site-packages/starkware/cairo/common/uint256.cairo" + }, + "start_col": 5, + "start_line": 22 + } + }, + "193": { + "accessible_scopes": [ + "starkware.cairo.common.uint256", + "starkware.cairo.common.uint256.uint256_check" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 35, + "end_line": 23, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/3.9.13/envs/kakarot/lib/python3.9/site-packages/starkware/cairo/common/uint256.cairo" + }, + "start_col": 5, + "start_line": 23 + } + }, + "194": { + "accessible_scopes": [ + "starkware.cairo.common.uint256", + "starkware.cairo.common.uint256.uint256_check" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 46, + "end_line": 24, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/3.9.13/envs/kakarot/lib/python3.9/site-packages/starkware/cairo/common/uint256.cairo" + }, + "parent_location": [ + { + "end_col": 35, + "end_line": 21, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/3.9.13/envs/kakarot/lib/python3.9/site-packages/starkware/cairo/common/uint256.cairo" + }, + "parent_location": [ + { + "end_col": 15, + "end_line": 25, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/3.9.13/envs/kakarot/lib/python3.9/site-packages/starkware/cairo/common/uint256.cairo" + }, + "start_col": 5, + "start_line": 25 + }, + "While trying to retrieve the implicit argument 'range_check_ptr' in:" + ], + "start_col": 20, + "start_line": 21 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 27, + "start_line": 24 + } + }, + "196": { + "accessible_scopes": [ + "starkware.cairo.common.uint256", + "starkware.cairo.common.uint256.uint256_check" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 15, + "end_line": 25, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/3.9.13/envs/kakarot/lib/python3.9/site-packages/starkware/cairo/common/uint256.cairo" + }, + "start_col": 5, + "start_line": 25 + } + }, + "197": { + "accessible_scopes": [ + "starkware.cairo.common.uint256", + "starkware.cairo.common.uint256.uint256_add" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 18, + "end_line": 32, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/3.9.13/envs/kakarot/lib/python3.9/site-packages/starkware/cairo/common/uint256.cairo" + }, + "start_col": 5, + "start_line": 32 + } + }, + "199": { + "accessible_scopes": [ + "starkware.cairo.common.uint256", + "starkware.cairo.common.uint256.uint256_add" + ], + "flow_tracking_data": null, + "hints": [ + { + "location": { + "end_col": 7, + "end_line": 41, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/3.9.13/envs/kakarot/lib/python3.9/site-packages/starkware/cairo/common/uint256.cairo" + }, + "start_col": 5, + "start_line": 36 + }, + "n_prefix_newlines": 1 + } + ], + "inst": { + "end_col": 46, + "end_line": 43, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/3.9.13/envs/kakarot/lib/python3.9/site-packages/starkware/cairo/common/uint256.cairo" + }, + "start_col": 5, + "start_line": 43 + } + }, + "200": { + "accessible_scopes": [ + "starkware.cairo.common.uint256", + "starkware.cairo.common.uint256.uint256_add" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 49, + "end_line": 44, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/3.9.13/envs/kakarot/lib/python3.9/site-packages/starkware/cairo/common/uint256.cairo" + }, + "start_col": 5, + "start_line": 44 + } + }, + "201": { + "accessible_scopes": [ + "starkware.cairo.common.uint256", + "starkware.cairo.common.uint256.uint256_add" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 35, + "end_line": 46, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/3.9.13/envs/kakarot/lib/python3.9/site-packages/starkware/cairo/common/uint256.cairo" + }, + "start_col": 22, + "start_line": 46 + } + }, + "202": { + "accessible_scopes": [ + "starkware.cairo.common.uint256", + "starkware.cairo.common.uint256.uint256_add" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 55, + "end_line": 46, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/3.9.13/envs/kakarot/lib/python3.9/site-packages/starkware/cairo/common/uint256.cairo" + }, + "start_col": 38, + "start_line": 46 + } + }, + "204": { + "accessible_scopes": [ + "starkware.cairo.common.uint256", + "starkware.cairo.common.uint256.uint256_add" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 56, + "end_line": 46, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/3.9.13/envs/kakarot/lib/python3.9/site-packages/starkware/cairo/common/uint256.cairo" + }, + "start_col": 5, + "start_line": 46 + } + }, + "205": { + "accessible_scopes": [ + "starkware.cairo.common.uint256", + "starkware.cairo.common.uint256.uint256_add" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 38, + "end_line": 47, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/3.9.13/envs/kakarot/lib/python3.9/site-packages/starkware/cairo/common/uint256.cairo" + }, + "start_col": 23, + "start_line": 47 + } + }, + "206": { + "accessible_scopes": [ + "starkware.cairo.common.uint256", + "starkware.cairo.common.uint256.uint256_add" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 50, + "end_line": 47, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/3.9.13/envs/kakarot/lib/python3.9/site-packages/starkware/cairo/common/uint256.cairo" + }, + "start_col": 23, + "start_line": 47 + } + }, + "207": { + "accessible_scopes": [ + "starkware.cairo.common.uint256", + "starkware.cairo.common.uint256.uint256_add" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 71, + "end_line": 47, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/3.9.13/envs/kakarot/lib/python3.9/site-packages/starkware/cairo/common/uint256.cairo" + }, + "start_col": 53, + "start_line": 47 + } + }, + "209": { + "accessible_scopes": [ + "starkware.cairo.common.uint256", + "starkware.cairo.common.uint256.uint256_add" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 72, + "end_line": 47, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/3.9.13/envs/kakarot/lib/python3.9/site-packages/starkware/cairo/common/uint256.cairo" + }, + "start_col": 5, + "start_line": 47 + } + }, + "210": { + "accessible_scopes": [ + "starkware.cairo.common.uint256", + "starkware.cairo.common.uint256.uint256_add" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 33, + "end_line": 31, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/3.9.13/envs/kakarot/lib/python3.9/site-packages/starkware/cairo/common/uint256.cairo" + }, + "parent_location": [ + { + "end_col": 35, + "end_line": 21, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/3.9.13/envs/kakarot/lib/python3.9/site-packages/starkware/cairo/common/uint256.cairo" + }, + "parent_location": [ + { + "end_col": 23, + "end_line": 48, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/3.9.13/envs/kakarot/lib/python3.9/site-packages/starkware/cairo/common/uint256.cairo" + }, + "start_col": 5, + "start_line": 48 + }, + "While trying to retrieve the implicit argument 'range_check_ptr' in:" + ], + "start_col": 20, + "start_line": 21 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 18, + "start_line": 31 + } + }, + "211": { + "accessible_scopes": [ + "starkware.cairo.common.uint256", + "starkware.cairo.common.uint256.uint256_add" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 14, + "end_line": 33, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/3.9.13/envs/kakarot/lib/python3.9/site-packages/starkware/cairo/common/uint256.cairo" + }, + "parent_location": [ + { + "end_col": 22, + "end_line": 48, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/3.9.13/envs/kakarot/lib/python3.9/site-packages/starkware/cairo/common/uint256.cairo" + }, + "start_col": 19, + "start_line": 48 + }, + "While expanding the reference 'res' in:" + ], + "start_col": 11, + "start_line": 33 + } + }, + "212": { + "accessible_scopes": [ + "starkware.cairo.common.uint256", + "starkware.cairo.common.uint256.uint256_add" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 14, + "end_line": 33, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/3.9.13/envs/kakarot/lib/python3.9/site-packages/starkware/cairo/common/uint256.cairo" + }, + "parent_location": [ + { + "end_col": 22, + "end_line": 48, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/3.9.13/envs/kakarot/lib/python3.9/site-packages/starkware/cairo/common/uint256.cairo" + }, + "start_col": 19, + "start_line": 48 + }, + "While expanding the reference 'res' in:" + ], + "start_col": 11, + "start_line": 33 + } + }, + "213": { + "accessible_scopes": [ + "starkware.cairo.common.uint256", + "starkware.cairo.common.uint256.uint256_add" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 23, + "end_line": 48, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/3.9.13/envs/kakarot/lib/python3.9/site-packages/starkware/cairo/common/uint256.cairo" + }, + "start_col": 5, + "start_line": 48 + } + }, + "215": { + "accessible_scopes": [ + "starkware.cairo.common.uint256", + "starkware.cairo.common.uint256.uint256_add" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 14, + "end_line": 33, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/3.9.13/envs/kakarot/lib/python3.9/site-packages/starkware/cairo/common/uint256.cairo" + }, + "parent_location": [ + { + "end_col": 16, + "end_line": 50, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/3.9.13/envs/kakarot/lib/python3.9/site-packages/starkware/cairo/common/uint256.cairo" + }, + "start_col": 13, + "start_line": 50 + }, + "While expanding the reference 'res' in:" + ], + "start_col": 11, + "start_line": 33 + } + }, + "216": { + "accessible_scopes": [ + "starkware.cairo.common.uint256", + "starkware.cairo.common.uint256.uint256_add" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 14, + "end_line": 33, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/3.9.13/envs/kakarot/lib/python3.9/site-packages/starkware/cairo/common/uint256.cairo" + }, + "parent_location": [ + { + "end_col": 16, + "end_line": 50, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/3.9.13/envs/kakarot/lib/python3.9/site-packages/starkware/cairo/common/uint256.cairo" + }, + "start_col": 13, + "start_line": 50 + }, + "While expanding the reference 'res' in:" + ], + "start_col": 11, + "start_line": 33 + } + }, + "217": { + "accessible_scopes": [ + "starkware.cairo.common.uint256", + "starkware.cairo.common.uint256.uint256_add" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 21, + "end_line": 35, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/3.9.13/envs/kakarot/lib/python3.9/site-packages/starkware/cairo/common/uint256.cairo" + }, + "parent_location": [ + { + "end_col": 28, + "end_line": 50, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/3.9.13/envs/kakarot/lib/python3.9/site-packages/starkware/cairo/common/uint256.cairo" + }, + "start_col": 18, + "start_line": 50 + }, + "While expanding the reference 'carry_high' in:" + ], + "start_col": 11, + "start_line": 35 + } + }, + "218": { + "accessible_scopes": [ + "starkware.cairo.common.uint256", + "starkware.cairo.common.uint256.uint256_add" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 30, + "end_line": 50, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/3.9.13/envs/kakarot/lib/python3.9/site-packages/starkware/cairo/common/uint256.cairo" + }, + "start_col": 5, + "start_line": 50 + } + }, + "219": { + "accessible_scopes": [ + "starkware.cairo.common.uint256", + "starkware.cairo.common.uint256.uint256_lt" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 25, + "end_line": 134, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/3.9.13/envs/kakarot/lib/python3.9/site-packages/starkware/cairo/common/uint256.cairo" + }, + "start_col": 9, + "start_line": 134 + } + }, + "220": { + "accessible_scopes": [ + "starkware.cairo.common.uint256", + "starkware.cairo.common.uint256.uint256_lt" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 7, + "end_line": 134, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/3.9.13/envs/kakarot/lib/python3.9/site-packages/starkware/cairo/common/uint256.cairo" + }, + "start_col": 5, + "start_line": 134 + } + }, + "222": { + "accessible_scopes": [ + "starkware.cairo.common.uint256", + "starkware.cairo.common.uint256.uint256_lt" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 32, + "end_line": 133, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/3.9.13/envs/kakarot/lib/python3.9/site-packages/starkware/cairo/common/uint256.cairo" + }, + "parent_location": [ + { + "end_col": 27, + "end_line": 42, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/3.9.13/envs/kakarot/lib/python3.9/site-packages/starkware/cairo/common/math_cmp.cairo" + }, + "parent_location": [ + { + "end_col": 40, + "end_line": 135, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/3.9.13/envs/kakarot/lib/python3.9/site-packages/starkware/cairo/common/uint256.cairo" + }, + "start_col": 17, + "start_line": 135 + }, + "While trying to retrieve the implicit argument 'range_check_ptr' in:" + ], + "start_col": 12, + "start_line": 42 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 17, + "start_line": 133 + } + }, + "223": { + "accessible_scopes": [ + "starkware.cairo.common.uint256", + "starkware.cairo.common.uint256.uint256_lt" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 32, + "end_line": 135, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/3.9.13/envs/kakarot/lib/python3.9/site-packages/starkware/cairo/common/uint256.cairo" + }, + "start_col": 23, + "start_line": 135 + } + }, + "225": { + "accessible_scopes": [ + "starkware.cairo.common.uint256", + "starkware.cairo.common.uint256.uint256_lt" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 39, + "end_line": 135, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/3.9.13/envs/kakarot/lib/python3.9/site-packages/starkware/cairo/common/uint256.cairo" + }, + "start_col": 34, + "start_line": 135 + } + }, + "226": { + "accessible_scopes": [ + "starkware.cairo.common.uint256", + "starkware.cairo.common.uint256.uint256_lt" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 40, + "end_line": 135, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/3.9.13/envs/kakarot/lib/python3.9/site-packages/starkware/cairo/common/uint256.cairo" + }, + "start_col": 17, + "start_line": 135 + } + }, + "228": { + "accessible_scopes": [ + "starkware.cairo.common.uint256", + "starkware.cairo.common.uint256.uint256_lt" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 43, + "end_line": 135, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/3.9.13/envs/kakarot/lib/python3.9/site-packages/starkware/cairo/common/uint256.cairo" + }, + "start_col": 9, + "start_line": 135 + } + }, + "229": { + "accessible_scopes": [ + "starkware.cairo.common.uint256", + "starkware.cairo.common.uint256.uint256_lt" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 32, + "end_line": 133, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/3.9.13/envs/kakarot/lib/python3.9/site-packages/starkware/cairo/common/uint256.cairo" + }, + "parent_location": [ + { + "end_col": 27, + "end_line": 42, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/3.9.13/envs/kakarot/lib/python3.9/site-packages/starkware/cairo/common/math_cmp.cairo" + }, + "parent_location": [ + { + "end_col": 38, + "end_line": 137, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/3.9.13/envs/kakarot/lib/python3.9/site-packages/starkware/cairo/common/uint256.cairo" + }, + "start_col": 13, + "start_line": 137 + }, + "While trying to retrieve the implicit argument 'range_check_ptr' in:" + ], + "start_col": 12, + "start_line": 42 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 17, + "start_line": 133 + } + }, + "230": { + "accessible_scopes": [ + "starkware.cairo.common.uint256", + "starkware.cairo.common.uint256.uint256_lt" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 29, + "end_line": 137, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/3.9.13/envs/kakarot/lib/python3.9/site-packages/starkware/cairo/common/uint256.cairo" + }, + "start_col": 19, + "start_line": 137 + } + }, + "232": { + "accessible_scopes": [ + "starkware.cairo.common.uint256", + "starkware.cairo.common.uint256.uint256_lt" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 37, + "end_line": 137, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/3.9.13/envs/kakarot/lib/python3.9/site-packages/starkware/cairo/common/uint256.cairo" + }, + "start_col": 31, + "start_line": 137 + } + }, + "233": { + "accessible_scopes": [ + "starkware.cairo.common.uint256", + "starkware.cairo.common.uint256.uint256_lt" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 38, + "end_line": 137, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/3.9.13/envs/kakarot/lib/python3.9/site-packages/starkware/cairo/common/uint256.cairo" + }, + "start_col": 13, + "start_line": 137 + } + }, + "235": { + "accessible_scopes": [ + "starkware.cairo.common.uint256", + "starkware.cairo.common.uint256.uint256_lt" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 41, + "end_line": 137, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/3.9.13/envs/kakarot/lib/python3.9/site-packages/starkware/cairo/common/uint256.cairo" + }, + "start_col": 5, + "start_line": 137 + } + }, + "236": { + "accessible_scopes": [ + "starkware.cairo.common.uint256", + "starkware.cairo.common.uint256.uint256_le" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 32, + "end_line": 148, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/3.9.13/envs/kakarot/lib/python3.9/site-packages/starkware/cairo/common/uint256.cairo" + }, + "parent_location": [ + { + "end_col": 32, + "end_line": 133, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/3.9.13/envs/kakarot/lib/python3.9/site-packages/starkware/cairo/common/uint256.cairo" + }, + "parent_location": [ + { + "end_col": 40, + "end_line": 149, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/3.9.13/envs/kakarot/lib/python3.9/site-packages/starkware/cairo/common/uint256.cairo" + }, + "start_col": 20, + "start_line": 149 + }, + "While trying to retrieve the implicit argument 'range_check_ptr' in:" + ], + "start_col": 17, + "start_line": 133 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 17, + "start_line": 148 + } + }, + "237": { + "accessible_scopes": [ + "starkware.cairo.common.uint256", + "starkware.cairo.common.uint256.uint256_le" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 56, + "end_line": 148, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/3.9.13/envs/kakarot/lib/python3.9/site-packages/starkware/cairo/common/uint256.cairo" + }, + "parent_location": [ + { + "end_col": 34, + "end_line": 149, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/3.9.13/envs/kakarot/lib/python3.9/site-packages/starkware/cairo/common/uint256.cairo" + }, + "start_col": 33, + "start_line": 149 + }, + "While expanding the reference 'b' in:" + ], + "start_col": 46, + "start_line": 148 + } + }, + "238": { + "accessible_scopes": [ + "starkware.cairo.common.uint256", + "starkware.cairo.common.uint256.uint256_le" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 56, + "end_line": 148, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/3.9.13/envs/kakarot/lib/python3.9/site-packages/starkware/cairo/common/uint256.cairo" + }, + "parent_location": [ + { + "end_col": 34, + "end_line": 149, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/3.9.13/envs/kakarot/lib/python3.9/site-packages/starkware/cairo/common/uint256.cairo" + }, + "start_col": 33, + "start_line": 149 + }, + "While expanding the reference 'b' in:" + ], + "start_col": 46, + "start_line": 148 + } + }, + "239": { + "accessible_scopes": [ + "starkware.cairo.common.uint256", + "starkware.cairo.common.uint256.uint256_le" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 44, + "end_line": 148, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/3.9.13/envs/kakarot/lib/python3.9/site-packages/starkware/cairo/common/uint256.cairo" + }, + "parent_location": [ + { + "end_col": 39, + "end_line": 149, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/3.9.13/envs/kakarot/lib/python3.9/site-packages/starkware/cairo/common/uint256.cairo" + }, + "start_col": 38, + "start_line": 149 + }, + "While expanding the reference 'a' in:" + ], + "start_col": 34, + "start_line": 148 + } + }, + "240": { + "accessible_scopes": [ + "starkware.cairo.common.uint256", + "starkware.cairo.common.uint256.uint256_le" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 44, + "end_line": 148, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/3.9.13/envs/kakarot/lib/python3.9/site-packages/starkware/cairo/common/uint256.cairo" + }, + "parent_location": [ + { + "end_col": 39, + "end_line": 149, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/3.9.13/envs/kakarot/lib/python3.9/site-packages/starkware/cairo/common/uint256.cairo" + }, + "start_col": 38, + "start_line": 149 + }, + "While expanding the reference 'a' in:" + ], + "start_col": 34, + "start_line": 148 + } + }, + "241": { + "accessible_scopes": [ + "starkware.cairo.common.uint256", + "starkware.cairo.common.uint256.uint256_le" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 40, + "end_line": 149, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/3.9.13/envs/kakarot/lib/python3.9/site-packages/starkware/cairo/common/uint256.cairo" + }, + "start_col": 20, + "start_line": 149 + } + }, + "243": { + "accessible_scopes": [ + "starkware.cairo.common.uint256", + "starkware.cairo.common.uint256.uint256_le" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 18, + "end_line": 150, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/3.9.13/envs/kakarot/lib/python3.9/site-packages/starkware/cairo/common/uint256.cairo" + }, + "start_col": 17, + "start_line": 150 + } + }, + "245": { + "accessible_scopes": [ + "starkware.cairo.common.uint256", + "starkware.cairo.common.uint256.uint256_le" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 32, + "end_line": 133, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/3.9.13/envs/kakarot/lib/python3.9/site-packages/starkware/cairo/common/uint256.cairo" + }, + "parent_location": [ + { + "end_col": 40, + "end_line": 149, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/3.9.13/envs/kakarot/lib/python3.9/site-packages/starkware/cairo/common/uint256.cairo" + }, + "parent_location": [ + { + "end_col": 32, + "end_line": 148, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/3.9.13/envs/kakarot/lib/python3.9/site-packages/starkware/cairo/common/uint256.cairo" + }, + "parent_location": [ + { + "end_col": 29, + "end_line": 150, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/3.9.13/envs/kakarot/lib/python3.9/site-packages/starkware/cairo/common/uint256.cairo" + }, + "start_col": 5, + "start_line": 150 + }, + "While trying to retrieve the implicit argument 'range_check_ptr' in:" + ], + "start_col": 17, + "start_line": 148 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 20, + "start_line": 149 + }, + "While trying to update the implicit return value 'range_check_ptr' in:" + ], + "start_col": 17, + "start_line": 133 + } + }, + "246": { + "accessible_scopes": [ + "starkware.cairo.common.uint256", + "starkware.cairo.common.uint256.uint256_le" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 27, + "end_line": 150, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/3.9.13/envs/kakarot/lib/python3.9/site-packages/starkware/cairo/common/uint256.cairo" + }, + "start_col": 17, + "start_line": 150 + } + }, + "247": { + "accessible_scopes": [ + "starkware.cairo.common.uint256", + "starkware.cairo.common.uint256.uint256_le" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 29, + "end_line": 150, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/3.9.13/envs/kakarot/lib/python3.9/site-packages/starkware/cairo/common/uint256.cairo" + }, + "start_col": 5, + "start_line": 150 + } + }, + "248": { + "accessible_scopes": [ + "starkware.cairo.common.uint256", + "starkware.cairo.common.uint256.uint256_not" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 37, + "end_line": 285, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/3.9.13/envs/kakarot/lib/python3.9/site-packages/starkware/cairo/common/uint256.cairo" + }, + "start_col": 29, + "start_line": 285 + } + }, + "250": { + "accessible_scopes": [ + "starkware.cairo.common.uint256", + "starkware.cairo.common.uint256.uint256_not" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 60, + "end_line": 285, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/3.9.13/envs/kakarot/lib/python3.9/site-packages/starkware/cairo/common/uint256.cairo" + }, + "start_col": 52, + "start_line": 285 + } + }, + "252": { + "accessible_scopes": [ + "starkware.cairo.common.uint256", + "starkware.cairo.common.uint256.uint256_not" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 33, + "end_line": 284, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/3.9.13/envs/kakarot/lib/python3.9/site-packages/starkware/cairo/common/uint256.cairo" + }, + "parent_location": [ + { + "end_col": 33, + "end_line": 284, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/3.9.13/envs/kakarot/lib/python3.9/site-packages/starkware/cairo/common/uint256.cairo" + }, + "parent_location": [ + { + "end_col": 72, + "end_line": 285, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/3.9.13/envs/kakarot/lib/python3.9/site-packages/starkware/cairo/common/uint256.cairo" + }, + "start_col": 5, + "start_line": 285 + }, + "While trying to retrieve the implicit argument 'range_check_ptr' in:" + ], + "start_col": 18, + "start_line": 284 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 18, + "start_line": 284 + } + }, + "253": { + "accessible_scopes": [ + "starkware.cairo.common.uint256", + "starkware.cairo.common.uint256.uint256_not" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 45, + "end_line": 285, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/3.9.13/envs/kakarot/lib/python3.9/site-packages/starkware/cairo/common/uint256.cairo" + }, + "start_col": 29, + "start_line": 285 + } + }, + "254": { + "accessible_scopes": [ + "starkware.cairo.common.uint256", + "starkware.cairo.common.uint256.uint256_not" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 69, + "end_line": 285, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/3.9.13/envs/kakarot/lib/python3.9/site-packages/starkware/cairo/common/uint256.cairo" + }, + "start_col": 52, + "start_line": 285 + } + }, + "255": { + "accessible_scopes": [ + "starkware.cairo.common.uint256", + "starkware.cairo.common.uint256.uint256_not" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 72, + "end_line": 285, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/3.9.13/envs/kakarot/lib/python3.9/site-packages/starkware/cairo/common/uint256.cairo" + }, + "start_col": 5, + "start_line": 285 + } + }, + "256": { + "accessible_scopes": [ + "starkware.cairo.common.uint256", + "starkware.cairo.common.uint256.uint256_neg" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 33, + "end_line": 290, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/3.9.13/envs/kakarot/lib/python3.9/site-packages/starkware/cairo/common/uint256.cairo" + }, + "parent_location": [ + { + "end_col": 33, + "end_line": 284, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/3.9.13/envs/kakarot/lib/python3.9/site-packages/starkware/cairo/common/uint256.cairo" + }, + "parent_location": [ + { + "end_col": 35, + "end_line": 291, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/3.9.13/envs/kakarot/lib/python3.9/site-packages/starkware/cairo/common/uint256.cairo" + }, + "start_col": 21, + "start_line": 291 + }, + "While trying to retrieve the implicit argument 'range_check_ptr' in:" + ], + "start_col": 18, + "start_line": 284 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 18, + "start_line": 290 + } + }, + "257": { + "accessible_scopes": [ + "starkware.cairo.common.uint256", + "starkware.cairo.common.uint256.uint256_neg" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 45, + "end_line": 290, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/3.9.13/envs/kakarot/lib/python3.9/site-packages/starkware/cairo/common/uint256.cairo" + }, + "parent_location": [ + { + "end_col": 34, + "end_line": 291, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/3.9.13/envs/kakarot/lib/python3.9/site-packages/starkware/cairo/common/uint256.cairo" + }, + "start_col": 33, + "start_line": 291 + }, + "While expanding the reference 'a' in:" + ], + "start_col": 35, + "start_line": 290 + } + }, + "258": { + "accessible_scopes": [ + "starkware.cairo.common.uint256", + "starkware.cairo.common.uint256.uint256_neg" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 45, + "end_line": 290, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/3.9.13/envs/kakarot/lib/python3.9/site-packages/starkware/cairo/common/uint256.cairo" + }, + "parent_location": [ + { + "end_col": 34, + "end_line": 291, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/3.9.13/envs/kakarot/lib/python3.9/site-packages/starkware/cairo/common/uint256.cairo" + }, + "start_col": 33, + "start_line": 291 + }, + "While expanding the reference 'a' in:" + ], + "start_col": 35, + "start_line": 290 + } + }, + "259": { + "accessible_scopes": [ + "starkware.cairo.common.uint256", + "starkware.cairo.common.uint256.uint256_neg" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 35, + "end_line": 291, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/3.9.13/envs/kakarot/lib/python3.9/site-packages/starkware/cairo/common/uint256.cairo" + }, + "start_col": 21, + "start_line": 291 + } + }, + "261": { + "accessible_scopes": [ + "starkware.cairo.common.uint256", + "starkware.cairo.common.uint256.uint256_neg" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 54, + "end_line": 292, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/3.9.13/envs/kakarot/lib/python3.9/site-packages/starkware/cairo/common/uint256.cairo" + }, + "start_col": 53, + "start_line": 292 + } + }, + "263": { + "accessible_scopes": [ + "starkware.cairo.common.uint256", + "starkware.cairo.common.uint256.uint256_neg" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 62, + "end_line": 292, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/3.9.13/envs/kakarot/lib/python3.9/site-packages/starkware/cairo/common/uint256.cairo" + }, + "start_col": 61, + "start_line": 292 + } + }, + "265": { + "accessible_scopes": [ + "starkware.cairo.common.uint256", + "starkware.cairo.common.uint256.uint256_neg" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 64, + "end_line": 292, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/3.9.13/envs/kakarot/lib/python3.9/site-packages/starkware/cairo/common/uint256.cairo" + }, + "start_col": 20, + "start_line": 292 + } + }, + "267": { + "accessible_scopes": [ + "starkware.cairo.common.uint256", + "starkware.cairo.common.uint256.uint256_neg" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 33, + "end_line": 31, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/3.9.13/envs/kakarot/lib/python3.9/site-packages/starkware/cairo/common/uint256.cairo" + }, + "parent_location": [ + { + "end_col": 64, + "end_line": 292, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/3.9.13/envs/kakarot/lib/python3.9/site-packages/starkware/cairo/common/uint256.cairo" + }, + "parent_location": [ + { + "end_col": 33, + "end_line": 290, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/3.9.13/envs/kakarot/lib/python3.9/site-packages/starkware/cairo/common/uint256.cairo" + }, + "parent_location": [ + { + "end_col": 22, + "end_line": 293, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/3.9.13/envs/kakarot/lib/python3.9/site-packages/starkware/cairo/common/uint256.cairo" + }, + "start_col": 5, + "start_line": 293 + }, + "While trying to retrieve the implicit argument 'range_check_ptr' in:" + ], + "start_col": 18, + "start_line": 290 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 20, + "start_line": 292 + }, + "While trying to update the implicit return value 'range_check_ptr' in:" + ], + "start_col": 18, + "start_line": 31 + } + }, + "268": { + "accessible_scopes": [ + "starkware.cairo.common.uint256", + "starkware.cairo.common.uint256.uint256_neg" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 13, + "end_line": 292, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/3.9.13/envs/kakarot/lib/python3.9/site-packages/starkware/cairo/common/uint256.cairo" + }, + "parent_location": [ + { + "end_col": 20, + "end_line": 293, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/3.9.13/envs/kakarot/lib/python3.9/site-packages/starkware/cairo/common/uint256.cairo" + }, + "start_col": 17, + "start_line": 293 + }, + "While expanding the reference 'res' in:" + ], + "start_col": 10, + "start_line": 292 + } + }, + "269": { + "accessible_scopes": [ + "starkware.cairo.common.uint256", + "starkware.cairo.common.uint256.uint256_neg" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 13, + "end_line": 292, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/3.9.13/envs/kakarot/lib/python3.9/site-packages/starkware/cairo/common/uint256.cairo" + }, + "parent_location": [ + { + "end_col": 20, + "end_line": 293, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/3.9.13/envs/kakarot/lib/python3.9/site-packages/starkware/cairo/common/uint256.cairo" + }, + "start_col": 17, + "start_line": 293 + }, + "While expanding the reference 'res' in:" + ], + "start_col": 10, + "start_line": 292 + } + }, + "270": { + "accessible_scopes": [ + "starkware.cairo.common.uint256", + "starkware.cairo.common.uint256.uint256_neg" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 22, + "end_line": 293, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/3.9.13/envs/kakarot/lib/python3.9/site-packages/starkware/cairo/common/uint256.cairo" + }, + "start_col": 5, + "start_line": 293 + } + }, + "271": { + "accessible_scopes": [ + "starkware.cairo.common.uint256", + "starkware.cairo.common.uint256.uint256_sub" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 33, + "end_line": 348, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/3.9.13/envs/kakarot/lib/python3.9/site-packages/starkware/cairo/common/uint256.cairo" + }, + "parent_location": [ + { + "end_col": 33, + "end_line": 290, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/3.9.13/envs/kakarot/lib/python3.9/site-packages/starkware/cairo/common/uint256.cairo" + }, + "parent_location": [ + { + "end_col": 33, + "end_line": 349, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/3.9.13/envs/kakarot/lib/python3.9/site-packages/starkware/cairo/common/uint256.cairo" + }, + "start_col": 19, + "start_line": 349 + }, + "While trying to retrieve the implicit argument 'range_check_ptr' in:" + ], + "start_col": 18, + "start_line": 290 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 18, + "start_line": 348 + } + }, + "272": { + "accessible_scopes": [ + "starkware.cairo.common.uint256", + "starkware.cairo.common.uint256.uint256_sub" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 57, + "end_line": 348, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/3.9.13/envs/kakarot/lib/python3.9/site-packages/starkware/cairo/common/uint256.cairo" + }, + "parent_location": [ + { + "end_col": 32, + "end_line": 349, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/3.9.13/envs/kakarot/lib/python3.9/site-packages/starkware/cairo/common/uint256.cairo" + }, + "start_col": 31, + "start_line": 349 + }, + "While expanding the reference 'b' in:" + ], + "start_col": 47, + "start_line": 348 + } + }, + "273": { + "accessible_scopes": [ + "starkware.cairo.common.uint256", + "starkware.cairo.common.uint256.uint256_sub" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 57, + "end_line": 348, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/3.9.13/envs/kakarot/lib/python3.9/site-packages/starkware/cairo/common/uint256.cairo" + }, + "parent_location": [ + { + "end_col": 32, + "end_line": 349, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/3.9.13/envs/kakarot/lib/python3.9/site-packages/starkware/cairo/common/uint256.cairo" + }, + "start_col": 31, + "start_line": 349 + }, + "While expanding the reference 'b' in:" + ], + "start_col": 47, + "start_line": 348 + } + }, + "274": { + "accessible_scopes": [ + "starkware.cairo.common.uint256", + "starkware.cairo.common.uint256.uint256_sub" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 33, + "end_line": 349, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/3.9.13/envs/kakarot/lib/python3.9/site-packages/starkware/cairo/common/uint256.cairo" + }, + "start_col": 19, + "start_line": 349 + } + }, + "276": { + "accessible_scopes": [ + "starkware.cairo.common.uint256", + "starkware.cairo.common.uint256.uint256_sub" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 33, + "end_line": 290, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/3.9.13/envs/kakarot/lib/python3.9/site-packages/starkware/cairo/common/uint256.cairo" + }, + "parent_location": [ + { + "end_col": 33, + "end_line": 349, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/3.9.13/envs/kakarot/lib/python3.9/site-packages/starkware/cairo/common/uint256.cairo" + }, + "parent_location": [ + { + "end_col": 33, + "end_line": 31, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/3.9.13/envs/kakarot/lib/python3.9/site-packages/starkware/cairo/common/uint256.cairo" + }, + "parent_location": [ + { + "end_col": 41, + "end_line": 350, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/3.9.13/envs/kakarot/lib/python3.9/site-packages/starkware/cairo/common/uint256.cairo" + }, + "start_col": 20, + "start_line": 350 + }, + "While trying to retrieve the implicit argument 'range_check_ptr' in:" + ], + "start_col": 18, + "start_line": 31 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 19, + "start_line": 349 + }, + "While trying to update the implicit return value 'range_check_ptr' in:" + ], + "start_col": 18, + "start_line": 290 + } + }, + "277": { + "accessible_scopes": [ + "starkware.cairo.common.uint256", + "starkware.cairo.common.uint256.uint256_sub" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 45, + "end_line": 348, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/3.9.13/envs/kakarot/lib/python3.9/site-packages/starkware/cairo/common/uint256.cairo" + }, + "parent_location": [ + { + "end_col": 33, + "end_line": 350, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/3.9.13/envs/kakarot/lib/python3.9/site-packages/starkware/cairo/common/uint256.cairo" + }, + "start_col": 32, + "start_line": 350 + }, + "While expanding the reference 'a' in:" + ], + "start_col": 35, + "start_line": 348 + } + }, + "278": { + "accessible_scopes": [ + "starkware.cairo.common.uint256", + "starkware.cairo.common.uint256.uint256_sub" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 45, + "end_line": 348, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/3.9.13/envs/kakarot/lib/python3.9/site-packages/starkware/cairo/common/uint256.cairo" + }, + "parent_location": [ + { + "end_col": 33, + "end_line": 350, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/3.9.13/envs/kakarot/lib/python3.9/site-packages/starkware/cairo/common/uint256.cairo" + }, + "start_col": 32, + "start_line": 350 + }, + "While expanding the reference 'a' in:" + ], + "start_col": 35, + "start_line": 348 + } + }, + "279": { + "accessible_scopes": [ + "starkware.cairo.common.uint256", + "starkware.cairo.common.uint256.uint256_sub" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 15, + "end_line": 349, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/3.9.13/envs/kakarot/lib/python3.9/site-packages/starkware/cairo/common/uint256.cairo" + }, + "parent_location": [ + { + "end_col": 40, + "end_line": 350, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/3.9.13/envs/kakarot/lib/python3.9/site-packages/starkware/cairo/common/uint256.cairo" + }, + "start_col": 35, + "start_line": 350 + }, + "While expanding the reference 'b_neg' in:" + ], + "start_col": 10, + "start_line": 349 + } + }, + "280": { + "accessible_scopes": [ + "starkware.cairo.common.uint256", + "starkware.cairo.common.uint256.uint256_sub" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 15, + "end_line": 349, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/3.9.13/envs/kakarot/lib/python3.9/site-packages/starkware/cairo/common/uint256.cairo" + }, + "parent_location": [ + { + "end_col": 40, + "end_line": 350, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/3.9.13/envs/kakarot/lib/python3.9/site-packages/starkware/cairo/common/uint256.cairo" + }, + "start_col": 35, + "start_line": 350 + }, + "While expanding the reference 'b_neg' in:" + ], + "start_col": 10, + "start_line": 349 + } + }, + "281": { + "accessible_scopes": [ + "starkware.cairo.common.uint256", + "starkware.cairo.common.uint256.uint256_sub" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 41, + "end_line": 350, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/3.9.13/envs/kakarot/lib/python3.9/site-packages/starkware/cairo/common/uint256.cairo" + }, + "start_col": 20, + "start_line": 350 + } + }, + "283": { + "accessible_scopes": [ + "starkware.cairo.common.uint256", + "starkware.cairo.common.uint256.uint256_sub" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 33, + "end_line": 31, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/3.9.13/envs/kakarot/lib/python3.9/site-packages/starkware/cairo/common/uint256.cairo" + }, + "parent_location": [ + { + "end_col": 41, + "end_line": 350, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/3.9.13/envs/kakarot/lib/python3.9/site-packages/starkware/cairo/common/uint256.cairo" + }, + "parent_location": [ + { + "end_col": 33, + "end_line": 348, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/3.9.13/envs/kakarot/lib/python3.9/site-packages/starkware/cairo/common/uint256.cairo" + }, + "parent_location": [ + { + "end_col": 22, + "end_line": 351, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/3.9.13/envs/kakarot/lib/python3.9/site-packages/starkware/cairo/common/uint256.cairo" + }, + "start_col": 5, + "start_line": 351 + }, + "While trying to retrieve the implicit argument 'range_check_ptr' in:" + ], + "start_col": 18, + "start_line": 348 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 20, + "start_line": 350 + }, + "While trying to update the implicit return value 'range_check_ptr' in:" + ], + "start_col": 18, + "start_line": 31 + } + }, + "284": { + "accessible_scopes": [ + "starkware.cairo.common.uint256", + "starkware.cairo.common.uint256.uint256_sub" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 13, + "end_line": 350, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/3.9.13/envs/kakarot/lib/python3.9/site-packages/starkware/cairo/common/uint256.cairo" + }, + "parent_location": [ + { + "end_col": 20, + "end_line": 351, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/3.9.13/envs/kakarot/lib/python3.9/site-packages/starkware/cairo/common/uint256.cairo" + }, + "start_col": 17, + "start_line": 351 + }, + "While expanding the reference 'res' in:" + ], + "start_col": 10, + "start_line": 350 + } + }, + "285": { + "accessible_scopes": [ + "starkware.cairo.common.uint256", + "starkware.cairo.common.uint256.uint256_sub" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 13, + "end_line": 350, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/3.9.13/envs/kakarot/lib/python3.9/site-packages/starkware/cairo/common/uint256.cairo" + }, + "parent_location": [ + { + "end_col": 20, + "end_line": 351, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/3.9.13/envs/kakarot/lib/python3.9/site-packages/starkware/cairo/common/uint256.cairo" + }, + "start_col": 17, + "start_line": 351 + }, + "While expanding the reference 'res' in:" + ], + "start_col": 10, + "start_line": 350 + } + }, + "286": { + "accessible_scopes": [ + "starkware.cairo.common.uint256", + "starkware.cairo.common.uint256.uint256_sub" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 22, + "end_line": 351, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/3.9.13/envs/kakarot/lib/python3.9/site-packages/starkware/cairo/common/uint256.cairo" + }, + "start_col": 5, + "start_line": 351 + } + }, + "287": { + "accessible_scopes": [ + "starkware.cairo.common.uint256", + "starkware.cairo.common.uint256.uint256_eq" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 25, + "end_line": 358, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/3.9.13/envs/kakarot/lib/python3.9/site-packages/starkware/cairo/common/uint256.cairo" + }, + "start_col": 9, + "start_line": 358 + } + }, + "288": { + "accessible_scopes": [ + "starkware.cairo.common.uint256", + "starkware.cairo.common.uint256.uint256_eq" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 7, + "end_line": 358, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/3.9.13/envs/kakarot/lib/python3.9/site-packages/starkware/cairo/common/uint256.cairo" + }, + "start_col": 5, + "start_line": 358 + } + }, + "290": { + "accessible_scopes": [ + "starkware.cairo.common.uint256", + "starkware.cairo.common.uint256.uint256_eq" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 7, + "end_line": 358, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/3.9.13/envs/kakarot/lib/python3.9/site-packages/starkware/cairo/common/uint256.cairo" + }, + "start_col": 5, + "start_line": 358 + } + }, + "292": { + "accessible_scopes": [ + "starkware.cairo.common.uint256", + "starkware.cairo.common.uint256.uint256_eq" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 32, + "end_line": 357, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/3.9.13/envs/kakarot/lib/python3.9/site-packages/starkware/cairo/common/uint256.cairo" + }, + "parent_location": [ + { + "end_col": 32, + "end_line": 357, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/3.9.13/envs/kakarot/lib/python3.9/site-packages/starkware/cairo/common/uint256.cairo" + }, + "parent_location": [ + { + "end_col": 24, + "end_line": 359, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/3.9.13/envs/kakarot/lib/python3.9/site-packages/starkware/cairo/common/uint256.cairo" + }, + "start_col": 9, + "start_line": 359 + }, + "While trying to retrieve the implicit argument 'range_check_ptr' in:" + ], + "start_col": 17, + "start_line": 357 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 17, + "start_line": 357 + } + }, + "293": { + "accessible_scopes": [ + "starkware.cairo.common.uint256", + "starkware.cairo.common.uint256.uint256_eq" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 22, + "end_line": 359, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/3.9.13/envs/kakarot/lib/python3.9/site-packages/starkware/cairo/common/uint256.cairo" + }, + "start_col": 21, + "start_line": 359 + } + }, + "295": { + "accessible_scopes": [ + "starkware.cairo.common.uint256", + "starkware.cairo.common.uint256.uint256_eq" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 24, + "end_line": 359, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/3.9.13/envs/kakarot/lib/python3.9/site-packages/starkware/cairo/common/uint256.cairo" + }, + "start_col": 9, + "start_line": 359 + } + }, + "296": { + "accessible_scopes": [ + "starkware.cairo.common.uint256", + "starkware.cairo.common.uint256.uint256_eq" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 23, + "end_line": 361, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/3.9.13/envs/kakarot/lib/python3.9/site-packages/starkware/cairo/common/uint256.cairo" + }, + "start_col": 9, + "start_line": 361 + } + }, + "297": { + "accessible_scopes": [ + "starkware.cairo.common.uint256", + "starkware.cairo.common.uint256.uint256_eq" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 7, + "end_line": 361, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/3.9.13/envs/kakarot/lib/python3.9/site-packages/starkware/cairo/common/uint256.cairo" + }, + "start_col": 5, + "start_line": 361 + } + }, + "299": { + "accessible_scopes": [ + "starkware.cairo.common.uint256", + "starkware.cairo.common.uint256.uint256_eq" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 7, + "end_line": 361, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/3.9.13/envs/kakarot/lib/python3.9/site-packages/starkware/cairo/common/uint256.cairo" + }, + "start_col": 5, + "start_line": 361 + } + }, + "301": { + "accessible_scopes": [ + "starkware.cairo.common.uint256", + "starkware.cairo.common.uint256.uint256_eq" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 32, + "end_line": 357, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/3.9.13/envs/kakarot/lib/python3.9/site-packages/starkware/cairo/common/uint256.cairo" + }, + "parent_location": [ + { + "end_col": 32, + "end_line": 357, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/3.9.13/envs/kakarot/lib/python3.9/site-packages/starkware/cairo/common/uint256.cairo" + }, + "parent_location": [ + { + "end_col": 24, + "end_line": 362, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/3.9.13/envs/kakarot/lib/python3.9/site-packages/starkware/cairo/common/uint256.cairo" + }, + "start_col": 9, + "start_line": 362 + }, + "While trying to retrieve the implicit argument 'range_check_ptr' in:" + ], + "start_col": 17, + "start_line": 357 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 17, + "start_line": 357 + } + }, + "302": { + "accessible_scopes": [ + "starkware.cairo.common.uint256", + "starkware.cairo.common.uint256.uint256_eq" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 22, + "end_line": 362, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/3.9.13/envs/kakarot/lib/python3.9/site-packages/starkware/cairo/common/uint256.cairo" + }, + "start_col": 21, + "start_line": 362 + } + }, + "304": { + "accessible_scopes": [ + "starkware.cairo.common.uint256", + "starkware.cairo.common.uint256.uint256_eq" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 24, + "end_line": 362, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/3.9.13/envs/kakarot/lib/python3.9/site-packages/starkware/cairo/common/uint256.cairo" + }, + "start_col": 9, + "start_line": 362 + } + }, + "305": { + "accessible_scopes": [ + "starkware.cairo.common.uint256", + "starkware.cairo.common.uint256.uint256_eq" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 32, + "end_line": 357, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/3.9.13/envs/kakarot/lib/python3.9/site-packages/starkware/cairo/common/uint256.cairo" + }, + "parent_location": [ + { + "end_col": 32, + "end_line": 357, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/3.9.13/envs/kakarot/lib/python3.9/site-packages/starkware/cairo/common/uint256.cairo" + }, + "parent_location": [ + { + "end_col": 20, + "end_line": 364, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/3.9.13/envs/kakarot/lib/python3.9/site-packages/starkware/cairo/common/uint256.cairo" + }, + "start_col": 5, + "start_line": 364 + }, + "While trying to retrieve the implicit argument 'range_check_ptr' in:" + ], + "start_col": 17, + "start_line": 357 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 17, + "start_line": 357 + } + }, + "306": { + "accessible_scopes": [ + "starkware.cairo.common.uint256", + "starkware.cairo.common.uint256.uint256_eq" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 18, + "end_line": 364, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/3.9.13/envs/kakarot/lib/python3.9/site-packages/starkware/cairo/common/uint256.cairo" + }, + "start_col": 17, + "start_line": 364 + } + }, + "308": { + "accessible_scopes": [ + "starkware.cairo.common.uint256", + "starkware.cairo.common.uint256.uint256_eq" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 20, + "end_line": 364, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/3.9.13/envs/kakarot/lib/python3.9/site-packages/starkware/cairo/common/uint256.cairo" + }, + "start_col": 5, + "start_line": 364 + } + }, + "309": { + "accessible_scopes": [ + "openzeppelin.security.safemath.library", + "openzeppelin.security.safemath.library.SafeUint256", + "openzeppelin.security.safemath.library.SafeUint256.add" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 29, + "end_line": 23, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/3.9.13/envs/kakarot/lib/python3.9/site-packages/openzeppelin/security/safemath/library.cairo" + }, + "parent_location": [ + { + "end_col": 35, + "end_line": 21, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/3.9.13/envs/kakarot/lib/python3.9/site-packages/starkware/cairo/common/uint256.cairo" + }, + "parent_location": [ + { + "end_col": 25, + "end_line": 24, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/3.9.13/envs/kakarot/lib/python3.9/site-packages/openzeppelin/security/safemath/library.cairo" + }, + "start_col": 9, + "start_line": 24 + }, + "While trying to retrieve the implicit argument 'range_check_ptr' in:" + ], + "start_col": 20, + "start_line": 21 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 14, + "start_line": 23 + } + }, + "310": { + "accessible_scopes": [ + "openzeppelin.security.safemath.library", + "openzeppelin.security.safemath.library.SafeUint256", + "openzeppelin.security.safemath.library.SafeUint256.add" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 41, + "end_line": 23, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/3.9.13/envs/kakarot/lib/python3.9/site-packages/openzeppelin/security/safemath/library.cairo" + }, + "parent_location": [ + { + "end_col": 24, + "end_line": 24, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/3.9.13/envs/kakarot/lib/python3.9/site-packages/openzeppelin/security/safemath/library.cairo" + }, + "start_col": 23, + "start_line": 24 + }, + "While expanding the reference 'a' in:" + ], + "start_col": 31, + "start_line": 23 + } + }, + "311": { + "accessible_scopes": [ + "openzeppelin.security.safemath.library", + "openzeppelin.security.safemath.library.SafeUint256", + "openzeppelin.security.safemath.library.SafeUint256.add" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 41, + "end_line": 23, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/3.9.13/envs/kakarot/lib/python3.9/site-packages/openzeppelin/security/safemath/library.cairo" + }, + "parent_location": [ + { + "end_col": 24, + "end_line": 24, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/3.9.13/envs/kakarot/lib/python3.9/site-packages/openzeppelin/security/safemath/library.cairo" + }, + "start_col": 23, + "start_line": 24 + }, + "While expanding the reference 'a' in:" + ], + "start_col": 31, + "start_line": 23 + } + }, + "312": { + "accessible_scopes": [ + "openzeppelin.security.safemath.library", + "openzeppelin.security.safemath.library.SafeUint256", + "openzeppelin.security.safemath.library.SafeUint256.add" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 25, + "end_line": 24, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/3.9.13/envs/kakarot/lib/python3.9/site-packages/openzeppelin/security/safemath/library.cairo" + }, + "start_col": 9, + "start_line": 24 + } + }, + "314": { + "accessible_scopes": [ + "openzeppelin.security.safemath.library", + "openzeppelin.security.safemath.library.SafeUint256", + "openzeppelin.security.safemath.library.SafeUint256.add" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 53, + "end_line": 23, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/3.9.13/envs/kakarot/lib/python3.9/site-packages/openzeppelin/security/safemath/library.cairo" + }, + "parent_location": [ + { + "end_col": 24, + "end_line": 25, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/3.9.13/envs/kakarot/lib/python3.9/site-packages/openzeppelin/security/safemath/library.cairo" + }, + "start_col": 23, + "start_line": 25 + }, + "While expanding the reference 'b' in:" + ], + "start_col": 43, + "start_line": 23 + } + }, + "315": { + "accessible_scopes": [ + "openzeppelin.security.safemath.library", + "openzeppelin.security.safemath.library.SafeUint256", + "openzeppelin.security.safemath.library.SafeUint256.add" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 53, + "end_line": 23, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/3.9.13/envs/kakarot/lib/python3.9/site-packages/openzeppelin/security/safemath/library.cairo" + }, + "parent_location": [ + { + "end_col": 24, + "end_line": 25, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/3.9.13/envs/kakarot/lib/python3.9/site-packages/openzeppelin/security/safemath/library.cairo" + }, + "start_col": 23, + "start_line": 25 + }, + "While expanding the reference 'b' in:" + ], + "start_col": 43, + "start_line": 23 + } + }, + "316": { + "accessible_scopes": [ + "openzeppelin.security.safemath.library", + "openzeppelin.security.safemath.library.SafeUint256", + "openzeppelin.security.safemath.library.SafeUint256.add" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 25, + "end_line": 25, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/3.9.13/envs/kakarot/lib/python3.9/site-packages/openzeppelin/security/safemath/library.cairo" + }, + "start_col": 9, + "start_line": 25 + } + }, + "318": { + "accessible_scopes": [ + "openzeppelin.security.safemath.library", + "openzeppelin.security.safemath.library.SafeUint256", + "openzeppelin.security.safemath.library.SafeUint256.add" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 41, + "end_line": 23, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/3.9.13/envs/kakarot/lib/python3.9/site-packages/openzeppelin/security/safemath/library.cairo" + }, + "parent_location": [ + { + "end_col": 54, + "end_line": 26, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/3.9.13/envs/kakarot/lib/python3.9/site-packages/openzeppelin/security/safemath/library.cairo" + }, + "start_col": 53, + "start_line": 26 + }, + "While expanding the reference 'a' in:" + ], + "start_col": 31, + "start_line": 23 + } + }, + "319": { + "accessible_scopes": [ + "openzeppelin.security.safemath.library", + "openzeppelin.security.safemath.library.SafeUint256", + "openzeppelin.security.safemath.library.SafeUint256.add" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 41, + "end_line": 23, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/3.9.13/envs/kakarot/lib/python3.9/site-packages/openzeppelin/security/safemath/library.cairo" + }, + "parent_location": [ + { + "end_col": 54, + "end_line": 26, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/3.9.13/envs/kakarot/lib/python3.9/site-packages/openzeppelin/security/safemath/library.cairo" + }, + "start_col": 53, + "start_line": 26 + }, + "While expanding the reference 'a' in:" + ], + "start_col": 31, + "start_line": 23 + } + }, + "320": { + "accessible_scopes": [ + "openzeppelin.security.safemath.library", + "openzeppelin.security.safemath.library.SafeUint256", + "openzeppelin.security.safemath.library.SafeUint256.add" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 53, + "end_line": 23, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/3.9.13/envs/kakarot/lib/python3.9/site-packages/openzeppelin/security/safemath/library.cairo" + }, + "parent_location": [ + { + "end_col": 57, + "end_line": 26, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/3.9.13/envs/kakarot/lib/python3.9/site-packages/openzeppelin/security/safemath/library.cairo" + }, + "start_col": 56, + "start_line": 26 + }, + "While expanding the reference 'b' in:" + ], + "start_col": 43, + "start_line": 23 + } + }, + "321": { + "accessible_scopes": [ + "openzeppelin.security.safemath.library", + "openzeppelin.security.safemath.library.SafeUint256", + "openzeppelin.security.safemath.library.SafeUint256.add" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 53, + "end_line": 23, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/3.9.13/envs/kakarot/lib/python3.9/site-packages/openzeppelin/security/safemath/library.cairo" + }, + "parent_location": [ + { + "end_col": 57, + "end_line": 26, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/3.9.13/envs/kakarot/lib/python3.9/site-packages/openzeppelin/security/safemath/library.cairo" + }, + "start_col": 56, + "start_line": 26 + }, + "While expanding the reference 'b' in:" + ], + "start_col": 43, + "start_line": 23 + } + }, + "322": { + "accessible_scopes": [ + "openzeppelin.security.safemath.library", + "openzeppelin.security.safemath.library.SafeUint256", + "openzeppelin.security.safemath.library.SafeUint256.add" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 58, + "end_line": 26, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/3.9.13/envs/kakarot/lib/python3.9/site-packages/openzeppelin/security/safemath/library.cairo" + }, + "start_col": 41, + "start_line": 26 + } + }, + "324": { + "accessible_scopes": [ + "openzeppelin.security.safemath.library", + "openzeppelin.security.safemath.library.SafeUint256", + "openzeppelin.security.safemath.library.SafeUint256.add" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 40, + "end_line": 28, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/3.9.13/envs/kakarot/lib/python3.9/site-packages/openzeppelin/security/safemath/library.cairo" + }, + "start_col": 13, + "start_line": 28 + } + }, + "326": { + "accessible_scopes": [ + "openzeppelin.security.safemath.library", + "openzeppelin.security.safemath.library.SafeUint256", + "openzeppelin.security.safemath.library.SafeUint256.add" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 33, + "end_line": 31, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/3.9.13/envs/kakarot/lib/python3.9/site-packages/starkware/cairo/common/uint256.cairo" + }, + "parent_location": [ + { + "end_col": 58, + "end_line": 26, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/3.9.13/envs/kakarot/lib/python3.9/site-packages/openzeppelin/security/safemath/library.cairo" + }, + "parent_location": [ + { + "end_col": 29, + "end_line": 23, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/3.9.13/envs/kakarot/lib/python3.9/site-packages/openzeppelin/security/safemath/library.cairo" + }, + "parent_location": [ + { + "end_col": 22, + "end_line": 30, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/3.9.13/envs/kakarot/lib/python3.9/site-packages/openzeppelin/security/safemath/library.cairo" + }, + "start_col": 9, + "start_line": 30 + }, + "While trying to retrieve the implicit argument 'range_check_ptr' in:" + ], + "start_col": 14, + "start_line": 23 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 41, + "start_line": 26 + }, + "While trying to update the implicit return value 'range_check_ptr' in:" + ], + "start_col": 18, + "start_line": 31 + } + }, + "327": { + "accessible_scopes": [ + "openzeppelin.security.safemath.library", + "openzeppelin.security.safemath.library.SafeUint256", + "openzeppelin.security.safemath.library.SafeUint256.add" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 24, + "end_line": 26, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/3.9.13/envs/kakarot/lib/python3.9/site-packages/openzeppelin/security/safemath/library.cairo" + }, + "parent_location": [ + { + "end_col": 20, + "end_line": 30, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/3.9.13/envs/kakarot/lib/python3.9/site-packages/openzeppelin/security/safemath/library.cairo" + }, + "start_col": 19, + "start_line": 30 + }, + "While expanding the reference 'c' in:" + ], + "start_col": 14, + "start_line": 26 + } + }, + "328": { + "accessible_scopes": [ + "openzeppelin.security.safemath.library", + "openzeppelin.security.safemath.library.SafeUint256", + "openzeppelin.security.safemath.library.SafeUint256.add" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 24, + "end_line": 26, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/3.9.13/envs/kakarot/lib/python3.9/site-packages/openzeppelin/security/safemath/library.cairo" + }, + "parent_location": [ + { + "end_col": 20, + "end_line": 30, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/3.9.13/envs/kakarot/lib/python3.9/site-packages/openzeppelin/security/safemath/library.cairo" + }, + "start_col": 19, + "start_line": 30 + }, + "While expanding the reference 'c' in:" + ], + "start_col": 14, + "start_line": 26 + } + }, + "329": { + "accessible_scopes": [ + "openzeppelin.security.safemath.library", + "openzeppelin.security.safemath.library.SafeUint256", + "openzeppelin.security.safemath.library.SafeUint256.add" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 22, + "end_line": 30, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/3.9.13/envs/kakarot/lib/python3.9/site-packages/openzeppelin/security/safemath/library.cairo" + }, + "start_col": 9, + "start_line": 30 + } + }, + "330": { + "accessible_scopes": [ + "openzeppelin.security.safemath.library", + "openzeppelin.security.safemath.library.SafeUint256", + "openzeppelin.security.safemath.library.SafeUint256.sub_le" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 22, + "end_line": 36, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/3.9.13/envs/kakarot/lib/python3.9/site-packages/openzeppelin/security/safemath/library.cairo" + }, + "start_col": 9, + "start_line": 36 + } + }, + "332": { + "accessible_scopes": [ + "openzeppelin.security.safemath.library", + "openzeppelin.security.safemath.library.SafeUint256", + "openzeppelin.security.safemath.library.SafeUint256.sub_le" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 32, + "end_line": 35, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/3.9.13/envs/kakarot/lib/python3.9/site-packages/openzeppelin/security/safemath/library.cairo" + }, + "parent_location": [ + { + "end_col": 35, + "end_line": 21, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/3.9.13/envs/kakarot/lib/python3.9/site-packages/starkware/cairo/common/uint256.cairo" + }, + "parent_location": [ + { + "end_col": 25, + "end_line": 37, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/3.9.13/envs/kakarot/lib/python3.9/site-packages/openzeppelin/security/safemath/library.cairo" + }, + "start_col": 9, + "start_line": 37 + }, + "While trying to retrieve the implicit argument 'range_check_ptr' in:" + ], + "start_col": 20, + "start_line": 21 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 17, + "start_line": 35 + } + }, + "333": { + "accessible_scopes": [ + "openzeppelin.security.safemath.library", + "openzeppelin.security.safemath.library.SafeUint256", + "openzeppelin.security.safemath.library.SafeUint256.sub_le" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 44, + "end_line": 35, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/3.9.13/envs/kakarot/lib/python3.9/site-packages/openzeppelin/security/safemath/library.cairo" + }, + "parent_location": [ + { + "end_col": 24, + "end_line": 37, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/3.9.13/envs/kakarot/lib/python3.9/site-packages/openzeppelin/security/safemath/library.cairo" + }, + "start_col": 23, + "start_line": 37 + }, + "While expanding the reference 'a' in:" + ], + "start_col": 34, + "start_line": 35 + } + }, + "334": { + "accessible_scopes": [ + "openzeppelin.security.safemath.library", + "openzeppelin.security.safemath.library.SafeUint256", + "openzeppelin.security.safemath.library.SafeUint256.sub_le" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 44, + "end_line": 35, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/3.9.13/envs/kakarot/lib/python3.9/site-packages/openzeppelin/security/safemath/library.cairo" + }, + "parent_location": [ + { + "end_col": 24, + "end_line": 37, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/3.9.13/envs/kakarot/lib/python3.9/site-packages/openzeppelin/security/safemath/library.cairo" + }, + "start_col": 23, + "start_line": 37 + }, + "While expanding the reference 'a' in:" + ], + "start_col": 34, + "start_line": 35 + } + }, + "335": { + "accessible_scopes": [ + "openzeppelin.security.safemath.library", + "openzeppelin.security.safemath.library.SafeUint256", + "openzeppelin.security.safemath.library.SafeUint256.sub_le" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 25, + "end_line": 37, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/3.9.13/envs/kakarot/lib/python3.9/site-packages/openzeppelin/security/safemath/library.cairo" + }, + "start_col": 9, + "start_line": 37 + } + }, + "337": { + "accessible_scopes": [ + "openzeppelin.security.safemath.library", + "openzeppelin.security.safemath.library.SafeUint256", + "openzeppelin.security.safemath.library.SafeUint256.sub_le" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 56, + "end_line": 35, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/3.9.13/envs/kakarot/lib/python3.9/site-packages/openzeppelin/security/safemath/library.cairo" + }, + "parent_location": [ + { + "end_col": 24, + "end_line": 38, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/3.9.13/envs/kakarot/lib/python3.9/site-packages/openzeppelin/security/safemath/library.cairo" + }, + "start_col": 23, + "start_line": 38 + }, + "While expanding the reference 'b' in:" + ], + "start_col": 46, + "start_line": 35 + } + }, + "338": { + "accessible_scopes": [ + "openzeppelin.security.safemath.library", + "openzeppelin.security.safemath.library.SafeUint256", + "openzeppelin.security.safemath.library.SafeUint256.sub_le" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 56, + "end_line": 35, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/3.9.13/envs/kakarot/lib/python3.9/site-packages/openzeppelin/security/safemath/library.cairo" + }, + "parent_location": [ + { + "end_col": 24, + "end_line": 38, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/3.9.13/envs/kakarot/lib/python3.9/site-packages/openzeppelin/security/safemath/library.cairo" + }, + "start_col": 23, + "start_line": 38 + }, + "While expanding the reference 'b' in:" + ], + "start_col": 46, + "start_line": 35 + } + }, + "339": { + "accessible_scopes": [ + "openzeppelin.security.safemath.library", + "openzeppelin.security.safemath.library.SafeUint256", + "openzeppelin.security.safemath.library.SafeUint256.sub_le" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 25, + "end_line": 38, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/3.9.13/envs/kakarot/lib/python3.9/site-packages/openzeppelin/security/safemath/library.cairo" + }, + "start_col": 9, + "start_line": 38 + } + }, + "341": { + "accessible_scopes": [ + "openzeppelin.security.safemath.library", + "openzeppelin.security.safemath.library.SafeUint256", + "openzeppelin.security.safemath.library.SafeUint256.sub_le" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 56, + "end_line": 35, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/3.9.13/envs/kakarot/lib/python3.9/site-packages/openzeppelin/security/safemath/library.cairo" + }, + "parent_location": [ + { + "end_col": 35, + "end_line": 39, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/3.9.13/envs/kakarot/lib/python3.9/site-packages/openzeppelin/security/safemath/library.cairo" + }, + "start_col": 34, + "start_line": 39 + }, + "While expanding the reference 'b' in:" + ], + "start_col": 46, + "start_line": 35 + } + }, + "342": { + "accessible_scopes": [ + "openzeppelin.security.safemath.library", + "openzeppelin.security.safemath.library.SafeUint256", + "openzeppelin.security.safemath.library.SafeUint256.sub_le" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 56, + "end_line": 35, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/3.9.13/envs/kakarot/lib/python3.9/site-packages/openzeppelin/security/safemath/library.cairo" + }, + "parent_location": [ + { + "end_col": 35, + "end_line": 39, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/3.9.13/envs/kakarot/lib/python3.9/site-packages/openzeppelin/security/safemath/library.cairo" + }, + "start_col": 34, + "start_line": 39 + }, + "While expanding the reference 'b' in:" + ], + "start_col": 46, + "start_line": 35 + } + }, + "343": { + "accessible_scopes": [ + "openzeppelin.security.safemath.library", + "openzeppelin.security.safemath.library.SafeUint256", + "openzeppelin.security.safemath.library.SafeUint256.sub_le" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 44, + "end_line": 35, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/3.9.13/envs/kakarot/lib/python3.9/site-packages/openzeppelin/security/safemath/library.cairo" + }, + "parent_location": [ + { + "end_col": 38, + "end_line": 39, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/3.9.13/envs/kakarot/lib/python3.9/site-packages/openzeppelin/security/safemath/library.cairo" + }, + "start_col": 37, + "start_line": 39 + }, + "While expanding the reference 'a' in:" + ], + "start_col": 34, + "start_line": 35 + } + }, + "344": { + "accessible_scopes": [ + "openzeppelin.security.safemath.library", + "openzeppelin.security.safemath.library.SafeUint256", + "openzeppelin.security.safemath.library.SafeUint256.sub_le" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 44, + "end_line": 35, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/3.9.13/envs/kakarot/lib/python3.9/site-packages/openzeppelin/security/safemath/library.cairo" + }, + "parent_location": [ + { + "end_col": 38, + "end_line": 39, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/3.9.13/envs/kakarot/lib/python3.9/site-packages/openzeppelin/security/safemath/library.cairo" + }, + "start_col": 37, + "start_line": 39 + }, + "While expanding the reference 'a' in:" + ], + "start_col": 34, + "start_line": 35 + } + }, + "345": { + "accessible_scopes": [ + "openzeppelin.security.safemath.library", + "openzeppelin.security.safemath.library.SafeUint256", + "openzeppelin.security.safemath.library.SafeUint256.sub_le" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 39, + "end_line": 39, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/3.9.13/envs/kakarot/lib/python3.9/site-packages/openzeppelin/security/safemath/library.cairo" + }, + "start_col": 23, + "start_line": 39 + } + }, + "347": { + "accessible_scopes": [ + "openzeppelin.security.safemath.library", + "openzeppelin.security.safemath.library.SafeUint256", + "openzeppelin.security.safemath.library.SafeUint256.sub_le" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 33, + "end_line": 41, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/3.9.13/envs/kakarot/lib/python3.9/site-packages/openzeppelin/security/safemath/library.cairo" + }, + "start_col": 13, + "start_line": 41 + } + }, + "349": { + "accessible_scopes": [ + "openzeppelin.security.safemath.library", + "openzeppelin.security.safemath.library.SafeUint256", + "openzeppelin.security.safemath.library.SafeUint256.sub_le" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 32, + "end_line": 148, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/3.9.13/envs/kakarot/lib/python3.9/site-packages/starkware/cairo/common/uint256.cairo" + }, + "parent_location": [ + { + "end_col": 39, + "end_line": 39, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/3.9.13/envs/kakarot/lib/python3.9/site-packages/openzeppelin/security/safemath/library.cairo" + }, + "parent_location": [ + { + "end_col": 33, + "end_line": 348, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/3.9.13/envs/kakarot/lib/python3.9/site-packages/starkware/cairo/common/uint256.cairo" + }, + "parent_location": [ + { + "end_col": 45, + "end_line": 43, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/3.9.13/envs/kakarot/lib/python3.9/site-packages/openzeppelin/security/safemath/library.cairo" + }, + "start_col": 28, + "start_line": 43 + }, + "While trying to retrieve the implicit argument 'range_check_ptr' in:" + ], + "start_col": 18, + "start_line": 348 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 23, + "start_line": 39 + }, + "While trying to update the implicit return value 'range_check_ptr' in:" + ], + "start_col": 17, + "start_line": 148 + } + }, + "350": { + "accessible_scopes": [ + "openzeppelin.security.safemath.library", + "openzeppelin.security.safemath.library.SafeUint256", + "openzeppelin.security.safemath.library.SafeUint256.sub_le" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 44, + "end_line": 35, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/3.9.13/envs/kakarot/lib/python3.9/site-packages/openzeppelin/security/safemath/library.cairo" + }, + "parent_location": [ + { + "end_col": 41, + "end_line": 43, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/3.9.13/envs/kakarot/lib/python3.9/site-packages/openzeppelin/security/safemath/library.cairo" + }, + "start_col": 40, + "start_line": 43 + }, + "While expanding the reference 'a' in:" + ], + "start_col": 34, + "start_line": 35 + } + }, + "351": { + "accessible_scopes": [ + "openzeppelin.security.safemath.library", + "openzeppelin.security.safemath.library.SafeUint256", + "openzeppelin.security.safemath.library.SafeUint256.sub_le" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 44, + "end_line": 35, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/3.9.13/envs/kakarot/lib/python3.9/site-packages/openzeppelin/security/safemath/library.cairo" + }, + "parent_location": [ + { + "end_col": 41, + "end_line": 43, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/3.9.13/envs/kakarot/lib/python3.9/site-packages/openzeppelin/security/safemath/library.cairo" + }, + "start_col": 40, + "start_line": 43 + }, + "While expanding the reference 'a' in:" + ], + "start_col": 34, + "start_line": 35 + } + }, + "352": { + "accessible_scopes": [ + "openzeppelin.security.safemath.library", + "openzeppelin.security.safemath.library.SafeUint256", + "openzeppelin.security.safemath.library.SafeUint256.sub_le" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 56, + "end_line": 35, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/3.9.13/envs/kakarot/lib/python3.9/site-packages/openzeppelin/security/safemath/library.cairo" + }, + "parent_location": [ + { + "end_col": 44, + "end_line": 43, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/3.9.13/envs/kakarot/lib/python3.9/site-packages/openzeppelin/security/safemath/library.cairo" + }, + "start_col": 43, + "start_line": 43 + }, + "While expanding the reference 'b' in:" + ], + "start_col": 46, + "start_line": 35 + } + }, + "353": { + "accessible_scopes": [ + "openzeppelin.security.safemath.library", + "openzeppelin.security.safemath.library.SafeUint256", + "openzeppelin.security.safemath.library.SafeUint256.sub_le" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 56, + "end_line": 35, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/3.9.13/envs/kakarot/lib/python3.9/site-packages/openzeppelin/security/safemath/library.cairo" + }, + "parent_location": [ + { + "end_col": 44, + "end_line": 43, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/3.9.13/envs/kakarot/lib/python3.9/site-packages/openzeppelin/security/safemath/library.cairo" + }, + "start_col": 43, + "start_line": 43 + }, + "While expanding the reference 'b' in:" + ], + "start_col": 46, + "start_line": 35 + } + }, + "354": { + "accessible_scopes": [ + "openzeppelin.security.safemath.library", + "openzeppelin.security.safemath.library.SafeUint256", + "openzeppelin.security.safemath.library.SafeUint256.sub_le" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 45, + "end_line": 43, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/3.9.13/envs/kakarot/lib/python3.9/site-packages/openzeppelin/security/safemath/library.cairo" + }, + "start_col": 28, + "start_line": 43 + } + }, + "356": { + "accessible_scopes": [ + "openzeppelin.security.safemath.library", + "openzeppelin.security.safemath.library.SafeUint256", + "openzeppelin.security.safemath.library.SafeUint256.sub_le" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 22, + "end_line": 44, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/3.9.13/envs/kakarot/lib/python3.9/site-packages/openzeppelin/security/safemath/library.cairo" + }, + "start_col": 9, + "start_line": 44 + } + }, + "357": { + "accessible_scopes": [ + "openzeppelin.token.erc20.library", + "openzeppelin.token.erc20.library.Transfer", + "openzeppelin.token.erc20.library.Transfer.emit" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 14, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/event/Transfer/8220fde17ca5479f12ae71a8036f4d354fe722f2c036da610b53511924e4ee84.cairo" + }, + "parent_location": [ + { + "end_col": 14, + "end_line": 20, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/3.9.13/envs/kakarot/lib/python3.9/site-packages/openzeppelin/token/erc20/library.cairo" + }, + "start_col": 6, + "start_line": 20 + }, + "While handling event:" + ], + "start_col": 1, + "start_line": 1 + } + }, + "359": { + "accessible_scopes": [ + "openzeppelin.token.erc20.library", + "openzeppelin.token.erc20.library.Transfer", + "openzeppelin.token.erc20.library.Transfer.emit" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 40, + "end_line": 2, + "input_file": { + "filename": "autogen/starknet/event/Transfer/8220fde17ca5479f12ae71a8036f4d354fe722f2c036da610b53511924e4ee84.cairo" + }, + "parent_location": [ + { + "end_col": 14, + "end_line": 20, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/3.9.13/envs/kakarot/lib/python3.9/site-packages/openzeppelin/token/erc20/library.cairo" + }, + "start_col": 6, + "start_line": 20 + }, + "While handling event:" + ], + "start_col": 33, + "start_line": 2 + } + }, + "361": { + "accessible_scopes": [ + "openzeppelin.token.erc20.library", + "openzeppelin.token.erc20.library.Transfer", + "openzeppelin.token.erc20.library.Transfer.emit" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 29, + "end_line": 2, + "input_file": { + "filename": "autogen/starknet/event/Transfer/8220fde17ca5479f12ae71a8036f4d354fe722f2c036da610b53511924e4ee84.cairo" + }, + "parent_location": [ + { + "end_col": 14, + "end_line": 20, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/3.9.13/envs/kakarot/lib/python3.9/site-packages/openzeppelin/token/erc20/library.cairo" + }, + "start_col": 6, + "start_line": 20 + }, + "While handling event:" + ], + "start_col": 6, + "start_line": 2 + } + }, + "362": { + "accessible_scopes": [ + "openzeppelin.token.erc20.library", + "openzeppelin.token.erc20.library.Transfer", + "openzeppelin.token.erc20.library.Transfer.emit" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 31, + "end_line": 3, + "input_file": { + "filename": "autogen/starknet/event/Transfer/8220fde17ca5479f12ae71a8036f4d354fe722f2c036da610b53511924e4ee84.cairo" + }, + "parent_location": [ + { + "end_col": 14, + "end_line": 20, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/3.9.13/envs/kakarot/lib/python3.9/site-packages/openzeppelin/token/erc20/library.cairo" + }, + "start_col": 6, + "start_line": 20 + }, + "While handling event:" + ], + "start_col": 23, + "start_line": 3 + } + }, + "364": { + "accessible_scopes": [ + "openzeppelin.token.erc20.library", + "openzeppelin.token.erc20.library.Transfer", + "openzeppelin.token.erc20.library.Transfer.emit" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 32, + "end_line": 3, + "input_file": { + "filename": "autogen/starknet/event/Transfer/8220fde17ca5479f12ae71a8036f4d354fe722f2c036da610b53511924e4ee84.cairo" + }, + "parent_location": [ + { + "end_col": 14, + "end_line": 20, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/3.9.13/envs/kakarot/lib/python3.9/site-packages/openzeppelin/token/erc20/library.cairo" + }, + "start_col": 6, + "start_line": 20 + }, + "While handling event:" + ], + "start_col": 1, + "start_line": 3 + } + }, + "365": { + "accessible_scopes": [ + "openzeppelin.token.erc20.library", + "openzeppelin.token.erc20.library.Transfer", + "openzeppelin.token.erc20.library.Transfer.emit" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 40, + "end_line": 4, + "input_file": { + "filename": "autogen/starknet/event/Transfer/8220fde17ca5479f12ae71a8036f4d354fe722f2c036da610b53511924e4ee84.cairo" + }, + "parent_location": [ + { + "end_col": 14, + "end_line": 20, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/3.9.13/envs/kakarot/lib/python3.9/site-packages/openzeppelin/token/erc20/library.cairo" + }, + "start_col": 6, + "start_line": 20 + }, + "While handling event:" + ], + "start_col": 33, + "start_line": 4 + } + }, + "367": { + "accessible_scopes": [ + "openzeppelin.token.erc20.library", + "openzeppelin.token.erc20.library.Transfer", + "openzeppelin.token.erc20.library.Transfer.emit" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 29, + "end_line": 4, + "input_file": { + "filename": "autogen/starknet/event/Transfer/8220fde17ca5479f12ae71a8036f4d354fe722f2c036da610b53511924e4ee84.cairo" + }, + "parent_location": [ + { + "end_col": 14, + "end_line": 20, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/3.9.13/envs/kakarot/lib/python3.9/site-packages/openzeppelin/token/erc20/library.cairo" + }, + "start_col": 6, + "start_line": 20 + }, + "While handling event:" + ], + "start_col": 6, + "start_line": 4 + } + }, + "368": { + "accessible_scopes": [ + "openzeppelin.token.erc20.library", + "openzeppelin.token.erc20.library.Transfer", + "openzeppelin.token.erc20.library.Transfer.emit" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 33, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/arg_processor/ad6bf90c88bb84c90b568cfe0e89ce22c3213011f6c9cc8bf0b75066ae521c26.cairo" + }, + "parent_location": [ + { + "end_col": 20, + "end_line": 20, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/3.9.13/envs/kakarot/lib/python3.9/site-packages/openzeppelin/token/erc20/library.cairo" + }, + "start_col": 15, + "start_line": 20 + }, + "While handling calldata argument 'from_'" + ], + "start_col": 1, + "start_line": 1 + } + }, + "369": { + "accessible_scopes": [ + "openzeppelin.token.erc20.library", + "openzeppelin.token.erc20.library.Transfer", + "openzeppelin.token.erc20.library.Transfer.emit" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 30, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/arg_processor/2670bb539ede27446c75876e41bcf9ef5cab09b9eec143f3986635a545b089ab.cairo" + }, + "parent_location": [ + { + "end_col": 30, + "end_line": 20, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/3.9.13/envs/kakarot/lib/python3.9/site-packages/openzeppelin/token/erc20/library.cairo" + }, + "start_col": 28, + "start_line": 20 + }, + "While handling calldata argument 'to'" + ], + "start_col": 1, + "start_line": 1 + } + }, + "370": { + "accessible_scopes": [ + "openzeppelin.token.erc20.library", + "openzeppelin.token.erc20.library.Transfer", + "openzeppelin.token.erc20.library.Transfer.emit" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 52, + "end_line": 3, + "input_file": { + "filename": "autogen/starknet/arg_processor/969c7e319d46ceb58852dd3a77ddee2803f411e321ab446a930b3d3df7862483.cairo" + }, + "parent_location": [ + { + "end_col": 43, + "end_line": 20, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/3.9.13/envs/kakarot/lib/python3.9/site-packages/openzeppelin/token/erc20/library.cairo" + }, + "start_col": 38, + "start_line": 20 + }, + "While handling calldata argument 'value'" + ], + "start_col": 1, + "start_line": 3 + } + }, + "371": { + "accessible_scopes": [ + "openzeppelin.token.erc20.library", + "openzeppelin.token.erc20.library.Transfer", + "openzeppelin.token.erc20.library.Transfer.emit" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 52, + "end_line": 4, + "input_file": { + "filename": "autogen/starknet/arg_processor/969c7e319d46ceb58852dd3a77ddee2803f411e321ab446a930b3d3df7862483.cairo" + }, + "parent_location": [ + { + "end_col": 43, + "end_line": 20, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/3.9.13/envs/kakarot/lib/python3.9/site-packages/openzeppelin/token/erc20/library.cairo" + }, + "start_col": 38, + "start_line": 20 + }, + "While handling calldata argument 'value'" + ], + "start_col": 1, + "start_line": 4 + } + }, + "372": { + "accessible_scopes": [ + "openzeppelin.token.erc20.library", + "openzeppelin.token.erc20.library.Transfer", + "openzeppelin.token.erc20.library.Transfer.emit" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 40, + "end_line": 5, + "input_file": { + "filename": "autogen/starknet/arg_processor/969c7e319d46ceb58852dd3a77ddee2803f411e321ab446a930b3d3df7862483.cairo" + }, + "parent_location": [ + { + "end_col": 43, + "end_line": 20, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/3.9.13/envs/kakarot/lib/python3.9/site-packages/openzeppelin/token/erc20/library.cairo" + }, + "parent_location": [ + { + "end_col": 64, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/event/Transfer/6150feec30bd48bfd0f446ed8c155a6d911a2c3fb3ec7a980733900416819259.cairo" + }, + "parent_location": [ + { + "end_col": 14, + "end_line": 20, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/3.9.13/envs/kakarot/lib/python3.9/site-packages/openzeppelin/token/erc20/library.cairo" + }, + "start_col": 6, + "start_line": 20 + }, + "While handling event:" + ], + "start_col": 50, + "start_line": 1 + }, + "While expanding the reference '__calldata_ptr' in:" + ], + "start_col": 38, + "start_line": 20 + }, + "While handling calldata argument 'value'" + ], + "start_col": 22, + "start_line": 5 + } + }, + "374": { + "accessible_scopes": [ + "openzeppelin.token.erc20.library", + "openzeppelin.token.erc20.library.Transfer", + "openzeppelin.token.erc20.library.Transfer.emit" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 29, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/event/Transfer/a7a8ae41be29ac9f4f6c3b7837c448d787ca051dd1ade98f409e54d33d112504.cairo" + }, + "parent_location": [ + { + "end_col": 14, + "end_line": 20, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/3.9.13/envs/kakarot/lib/python3.9/site-packages/openzeppelin/token/erc20/library.cairo" + }, + "parent_location": [ + { + "end_col": 35, + "end_line": 390, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/3.9.13/envs/kakarot/lib/python3.9/site-packages/starkware/starknet/common/syscalls.cairo" + }, + "parent_location": [ + { + "end_col": 95, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/event/Transfer/6150feec30bd48bfd0f446ed8c155a6d911a2c3fb3ec7a980733900416819259.cairo" + }, + "parent_location": [ + { + "end_col": 14, + "end_line": 20, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/3.9.13/envs/kakarot/lib/python3.9/site-packages/openzeppelin/token/erc20/library.cairo" + }, + "start_col": 6, + "start_line": 20 + }, + "While handling event:" + ], + "start_col": 1, + "start_line": 1 + }, + "While trying to retrieve the implicit argument 'syscall_ptr' in:" + ], + "start_col": 17, + "start_line": 390 + }, + "While expanding the reference 'syscall_ptr' in:" + ], + "start_col": 6, + "start_line": 20 + }, + "While handling event:" + ], + "start_col": 11, + "start_line": 1 + } + }, + "375": { + "accessible_scopes": [ + "openzeppelin.token.erc20.library", + "openzeppelin.token.erc20.library.Transfer", + "openzeppelin.token.erc20.library.Transfer.emit" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 22, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/event/Transfer/6150feec30bd48bfd0f446ed8c155a6d911a2c3fb3ec7a980733900416819259.cairo" + }, + "parent_location": [ + { + "end_col": 14, + "end_line": 20, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/3.9.13/envs/kakarot/lib/python3.9/site-packages/openzeppelin/token/erc20/library.cairo" + }, + "start_col": 6, + "start_line": 20 + }, + "While handling event:" + ], + "start_col": 21, + "start_line": 1 + } + }, + "377": { + "accessible_scopes": [ + "openzeppelin.token.erc20.library", + "openzeppelin.token.erc20.library.Transfer", + "openzeppelin.token.erc20.library.Transfer.emit" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 22, + "end_line": 2, + "input_file": { + "filename": "autogen/starknet/event/Transfer/8220fde17ca5479f12ae71a8036f4d354fe722f2c036da610b53511924e4ee84.cairo" + }, + "parent_location": [ + { + "end_col": 14, + "end_line": 20, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/3.9.13/envs/kakarot/lib/python3.9/site-packages/openzeppelin/token/erc20/library.cairo" + }, + "parent_location": [ + { + "end_col": 39, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/event/Transfer/6150feec30bd48bfd0f446ed8c155a6d911a2c3fb3ec7a980733900416819259.cairo" + }, + "parent_location": [ + { + "end_col": 14, + "end_line": 20, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/3.9.13/envs/kakarot/lib/python3.9/site-packages/openzeppelin/token/erc20/library.cairo" + }, + "start_col": 6, + "start_line": 20 + }, + "While handling event:" + ], + "start_col": 29, + "start_line": 1 + }, + "While expanding the reference '__keys_ptr' in:" + ], + "start_col": 6, + "start_line": 20 + }, + "While handling event:" + ], + "start_col": 12, + "start_line": 2 + } + }, + "378": { + "accessible_scopes": [ + "openzeppelin.token.erc20.library", + "openzeppelin.token.erc20.library.Transfer", + "openzeppelin.token.erc20.library.Transfer.emit" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 77, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/event/Transfer/6150feec30bd48bfd0f446ed8c155a6d911a2c3fb3ec7a980733900416819259.cairo" + }, + "parent_location": [ + { + "end_col": 14, + "end_line": 20, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/3.9.13/envs/kakarot/lib/python3.9/site-packages/openzeppelin/token/erc20/library.cairo" + }, + "start_col": 6, + "start_line": 20 + }, + "While handling event:" + ], + "start_col": 50, + "start_line": 1 + } + }, + "379": { + "accessible_scopes": [ + "openzeppelin.token.erc20.library", + "openzeppelin.token.erc20.library.Transfer", + "openzeppelin.token.erc20.library.Transfer.emit" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 22, + "end_line": 4, + "input_file": { + "filename": "autogen/starknet/event/Transfer/8220fde17ca5479f12ae71a8036f4d354fe722f2c036da610b53511924e4ee84.cairo" + }, + "parent_location": [ + { + "end_col": 14, + "end_line": 20, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/3.9.13/envs/kakarot/lib/python3.9/site-packages/openzeppelin/token/erc20/library.cairo" + }, + "parent_location": [ + { + "end_col": 94, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/event/Transfer/6150feec30bd48bfd0f446ed8c155a6d911a2c3fb3ec7a980733900416819259.cairo" + }, + "parent_location": [ + { + "end_col": 14, + "end_line": 20, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/3.9.13/envs/kakarot/lib/python3.9/site-packages/openzeppelin/token/erc20/library.cairo" + }, + "start_col": 6, + "start_line": 20 + }, + "While handling event:" + ], + "start_col": 84, + "start_line": 1 + }, + "While expanding the reference '__data_ptr' in:" + ], + "start_col": 6, + "start_line": 20 + }, + "While handling event:" + ], + "start_col": 12, + "start_line": 4 + } + }, + "380": { + "accessible_scopes": [ + "openzeppelin.token.erc20.library", + "openzeppelin.token.erc20.library.Transfer", + "openzeppelin.token.erc20.library.Transfer.emit" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 95, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/event/Transfer/6150feec30bd48bfd0f446ed8c155a6d911a2c3fb3ec7a980733900416819259.cairo" + }, + "parent_location": [ + { + "end_col": 14, + "end_line": 20, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/3.9.13/envs/kakarot/lib/python3.9/site-packages/openzeppelin/token/erc20/library.cairo" + }, + "start_col": 6, + "start_line": 20 + }, + "While handling event:" + ], + "start_col": 1, + "start_line": 1 + } + }, + "382": { + "accessible_scopes": [ + "openzeppelin.token.erc20.library", + "openzeppelin.token.erc20.library.Transfer", + "openzeppelin.token.erc20.library.Transfer.emit" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 46, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/event/Transfer/a7a8ae41be29ac9f4f6c3b7837c448d787ca051dd1ade98f409e54d33d112504.cairo" + }, + "parent_location": [ + { + "end_col": 14, + "end_line": 20, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/3.9.13/envs/kakarot/lib/python3.9/site-packages/openzeppelin/token/erc20/library.cairo" + }, + "parent_location": [ + { + "end_col": 46, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/event/Transfer/a7a8ae41be29ac9f4f6c3b7837c448d787ca051dd1ade98f409e54d33d112504.cairo" + }, + "parent_location": [ + { + "end_col": 14, + "end_line": 20, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/3.9.13/envs/kakarot/lib/python3.9/site-packages/openzeppelin/token/erc20/library.cairo" + }, + "parent_location": [ + { + "end_col": 11, + "end_line": 2, + "input_file": { + "filename": "autogen/starknet/event/Transfer/6150feec30bd48bfd0f446ed8c155a6d911a2c3fb3ec7a980733900416819259.cairo" + }, + "parent_location": [ + { + "end_col": 14, + "end_line": 20, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/3.9.13/envs/kakarot/lib/python3.9/site-packages/openzeppelin/token/erc20/library.cairo" + }, + "start_col": 6, + "start_line": 20 + }, + "While handling event:" + ], + "start_col": 1, + "start_line": 2 + }, + "While trying to retrieve the implicit argument 'range_check_ptr' in:" + ], + "start_col": 6, + "start_line": 20 + }, + "While handling event:" + ], + "start_col": 31, + "start_line": 1 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 6, + "start_line": 20 + }, + "While handling event:" + ], + "start_col": 31, + "start_line": 1 + } + }, + "383": { + "accessible_scopes": [ + "openzeppelin.token.erc20.library", + "openzeppelin.token.erc20.library.Transfer", + "openzeppelin.token.erc20.library.Transfer.emit" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 11, + "end_line": 2, + "input_file": { + "filename": "autogen/starknet/event/Transfer/6150feec30bd48bfd0f446ed8c155a6d911a2c3fb3ec7a980733900416819259.cairo" + }, + "parent_location": [ + { + "end_col": 14, + "end_line": 20, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/3.9.13/envs/kakarot/lib/python3.9/site-packages/openzeppelin/token/erc20/library.cairo" + }, + "start_col": 6, + "start_line": 20 + }, + "While handling event:" + ], + "start_col": 1, + "start_line": 2 + } + }, + "384": { + "accessible_scopes": [ + "openzeppelin.token.erc20.library", + "openzeppelin.token.erc20.library.Approval", + "openzeppelin.token.erc20.library.Approval.emit" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 14, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/event/Approval/8220fde17ca5479f12ae71a8036f4d354fe722f2c036da610b53511924e4ee84.cairo" + }, + "parent_location": [ + { + "end_col": 14, + "end_line": 24, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/3.9.13/envs/kakarot/lib/python3.9/site-packages/openzeppelin/token/erc20/library.cairo" + }, + "start_col": 6, + "start_line": 24 + }, + "While handling event:" + ], + "start_col": 1, + "start_line": 1 + } + }, + "386": { + "accessible_scopes": [ + "openzeppelin.token.erc20.library", + "openzeppelin.token.erc20.library.Approval", + "openzeppelin.token.erc20.library.Approval.emit" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 40, + "end_line": 2, + "input_file": { + "filename": "autogen/starknet/event/Approval/8220fde17ca5479f12ae71a8036f4d354fe722f2c036da610b53511924e4ee84.cairo" + }, + "parent_location": [ + { + "end_col": 14, + "end_line": 24, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/3.9.13/envs/kakarot/lib/python3.9/site-packages/openzeppelin/token/erc20/library.cairo" + }, + "start_col": 6, + "start_line": 24 + }, + "While handling event:" + ], + "start_col": 33, + "start_line": 2 + } + }, + "388": { + "accessible_scopes": [ + "openzeppelin.token.erc20.library", + "openzeppelin.token.erc20.library.Approval", + "openzeppelin.token.erc20.library.Approval.emit" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 29, + "end_line": 2, + "input_file": { + "filename": "autogen/starknet/event/Approval/8220fde17ca5479f12ae71a8036f4d354fe722f2c036da610b53511924e4ee84.cairo" + }, + "parent_location": [ + { + "end_col": 14, + "end_line": 24, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/3.9.13/envs/kakarot/lib/python3.9/site-packages/openzeppelin/token/erc20/library.cairo" + }, + "start_col": 6, + "start_line": 24 + }, + "While handling event:" + ], + "start_col": 6, + "start_line": 2 + } + }, + "389": { + "accessible_scopes": [ + "openzeppelin.token.erc20.library", + "openzeppelin.token.erc20.library.Approval", + "openzeppelin.token.erc20.library.Approval.emit" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 31, + "end_line": 3, + "input_file": { + "filename": "autogen/starknet/event/Approval/8220fde17ca5479f12ae71a8036f4d354fe722f2c036da610b53511924e4ee84.cairo" + }, + "parent_location": [ + { + "end_col": 14, + "end_line": 24, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/3.9.13/envs/kakarot/lib/python3.9/site-packages/openzeppelin/token/erc20/library.cairo" + }, + "start_col": 6, + "start_line": 24 + }, + "While handling event:" + ], + "start_col": 23, + "start_line": 3 + } + }, + "391": { + "accessible_scopes": [ + "openzeppelin.token.erc20.library", + "openzeppelin.token.erc20.library.Approval", + "openzeppelin.token.erc20.library.Approval.emit" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 32, + "end_line": 3, + "input_file": { + "filename": "autogen/starknet/event/Approval/8220fde17ca5479f12ae71a8036f4d354fe722f2c036da610b53511924e4ee84.cairo" + }, + "parent_location": [ + { + "end_col": 14, + "end_line": 24, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/3.9.13/envs/kakarot/lib/python3.9/site-packages/openzeppelin/token/erc20/library.cairo" + }, + "start_col": 6, + "start_line": 24 + }, + "While handling event:" + ], + "start_col": 1, + "start_line": 3 + } + }, + "392": { + "accessible_scopes": [ + "openzeppelin.token.erc20.library", + "openzeppelin.token.erc20.library.Approval", + "openzeppelin.token.erc20.library.Approval.emit" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 40, + "end_line": 4, + "input_file": { + "filename": "autogen/starknet/event/Approval/8220fde17ca5479f12ae71a8036f4d354fe722f2c036da610b53511924e4ee84.cairo" + }, + "parent_location": [ + { + "end_col": 14, + "end_line": 24, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/3.9.13/envs/kakarot/lib/python3.9/site-packages/openzeppelin/token/erc20/library.cairo" + }, + "start_col": 6, + "start_line": 24 + }, + "While handling event:" + ], + "start_col": 33, + "start_line": 4 + } + }, + "394": { + "accessible_scopes": [ + "openzeppelin.token.erc20.library", + "openzeppelin.token.erc20.library.Approval", + "openzeppelin.token.erc20.library.Approval.emit" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 29, + "end_line": 4, + "input_file": { + "filename": "autogen/starknet/event/Approval/8220fde17ca5479f12ae71a8036f4d354fe722f2c036da610b53511924e4ee84.cairo" + }, + "parent_location": [ + { + "end_col": 14, + "end_line": 24, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/3.9.13/envs/kakarot/lib/python3.9/site-packages/openzeppelin/token/erc20/library.cairo" + }, + "start_col": 6, + "start_line": 24 + }, + "While handling event:" + ], + "start_col": 6, + "start_line": 4 + } + }, + "395": { + "accessible_scopes": [ + "openzeppelin.token.erc20.library", + "openzeppelin.token.erc20.library.Approval", + "openzeppelin.token.erc20.library.Approval.emit" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 33, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/arg_processor/7e247556a8b9bc505c1e503bda1dbcb424caa8925f45ae18cdde008e8b84b376.cairo" + }, + "parent_location": [ + { + "end_col": 20, + "end_line": 24, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/3.9.13/envs/kakarot/lib/python3.9/site-packages/openzeppelin/token/erc20/library.cairo" + }, + "start_col": 15, + "start_line": 24 + }, + "While handling calldata argument 'owner'" + ], + "start_col": 1, + "start_line": 1 + } + }, + "396": { + "accessible_scopes": [ + "openzeppelin.token.erc20.library", + "openzeppelin.token.erc20.library.Approval", + "openzeppelin.token.erc20.library.Approval.emit" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 35, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/arg_processor/86b8ce991898641b73ad3eb5d907f86c73139c426526138c35901b17a2d6334d.cairo" + }, + "parent_location": [ + { + "end_col": 35, + "end_line": 24, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/3.9.13/envs/kakarot/lib/python3.9/site-packages/openzeppelin/token/erc20/library.cairo" + }, + "start_col": 28, + "start_line": 24 + }, + "While handling calldata argument 'spender'" + ], + "start_col": 1, + "start_line": 1 + } + }, + "397": { + "accessible_scopes": [ + "openzeppelin.token.erc20.library", + "openzeppelin.token.erc20.library.Approval", + "openzeppelin.token.erc20.library.Approval.emit" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 52, + "end_line": 3, + "input_file": { + "filename": "autogen/starknet/arg_processor/969c7e319d46ceb58852dd3a77ddee2803f411e321ab446a930b3d3df7862483.cairo" + }, + "parent_location": [ + { + "end_col": 48, + "end_line": 24, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/3.9.13/envs/kakarot/lib/python3.9/site-packages/openzeppelin/token/erc20/library.cairo" + }, + "start_col": 43, + "start_line": 24 + }, + "While handling calldata argument 'value'" + ], + "start_col": 1, + "start_line": 3 + } + }, + "398": { + "accessible_scopes": [ + "openzeppelin.token.erc20.library", + "openzeppelin.token.erc20.library.Approval", + "openzeppelin.token.erc20.library.Approval.emit" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 52, + "end_line": 4, + "input_file": { + "filename": "autogen/starknet/arg_processor/969c7e319d46ceb58852dd3a77ddee2803f411e321ab446a930b3d3df7862483.cairo" + }, + "parent_location": [ + { + "end_col": 48, + "end_line": 24, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/3.9.13/envs/kakarot/lib/python3.9/site-packages/openzeppelin/token/erc20/library.cairo" + }, + "start_col": 43, + "start_line": 24 + }, + "While handling calldata argument 'value'" + ], + "start_col": 1, + "start_line": 4 + } + }, + "399": { + "accessible_scopes": [ + "openzeppelin.token.erc20.library", + "openzeppelin.token.erc20.library.Approval", + "openzeppelin.token.erc20.library.Approval.emit" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 40, + "end_line": 5, + "input_file": { + "filename": "autogen/starknet/arg_processor/969c7e319d46ceb58852dd3a77ddee2803f411e321ab446a930b3d3df7862483.cairo" + }, + "parent_location": [ + { + "end_col": 48, + "end_line": 24, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/3.9.13/envs/kakarot/lib/python3.9/site-packages/openzeppelin/token/erc20/library.cairo" + }, + "parent_location": [ + { + "end_col": 64, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/event/Approval/6150feec30bd48bfd0f446ed8c155a6d911a2c3fb3ec7a980733900416819259.cairo" + }, + "parent_location": [ + { + "end_col": 14, + "end_line": 24, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/3.9.13/envs/kakarot/lib/python3.9/site-packages/openzeppelin/token/erc20/library.cairo" + }, + "start_col": 6, + "start_line": 24 + }, + "While handling event:" + ], + "start_col": 50, + "start_line": 1 + }, + "While expanding the reference '__calldata_ptr' in:" + ], + "start_col": 43, + "start_line": 24 + }, + "While handling calldata argument 'value'" + ], + "start_col": 22, + "start_line": 5 + } + }, + "401": { + "accessible_scopes": [ + "openzeppelin.token.erc20.library", + "openzeppelin.token.erc20.library.Approval", + "openzeppelin.token.erc20.library.Approval.emit" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 29, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/event/Approval/a7a8ae41be29ac9f4f6c3b7837c448d787ca051dd1ade98f409e54d33d112504.cairo" + }, + "parent_location": [ + { + "end_col": 14, + "end_line": 24, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/3.9.13/envs/kakarot/lib/python3.9/site-packages/openzeppelin/token/erc20/library.cairo" + }, + "parent_location": [ + { + "end_col": 35, + "end_line": 390, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/3.9.13/envs/kakarot/lib/python3.9/site-packages/starkware/starknet/common/syscalls.cairo" + }, + "parent_location": [ + { + "end_col": 95, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/event/Approval/6150feec30bd48bfd0f446ed8c155a6d911a2c3fb3ec7a980733900416819259.cairo" + }, + "parent_location": [ + { + "end_col": 14, + "end_line": 24, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/3.9.13/envs/kakarot/lib/python3.9/site-packages/openzeppelin/token/erc20/library.cairo" + }, + "start_col": 6, + "start_line": 24 + }, + "While handling event:" + ], + "start_col": 1, + "start_line": 1 + }, + "While trying to retrieve the implicit argument 'syscall_ptr' in:" + ], + "start_col": 17, + "start_line": 390 + }, + "While expanding the reference 'syscall_ptr' in:" + ], + "start_col": 6, + "start_line": 24 + }, + "While handling event:" + ], + "start_col": 11, + "start_line": 1 + } + }, + "402": { + "accessible_scopes": [ + "openzeppelin.token.erc20.library", + "openzeppelin.token.erc20.library.Approval", + "openzeppelin.token.erc20.library.Approval.emit" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 22, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/event/Approval/6150feec30bd48bfd0f446ed8c155a6d911a2c3fb3ec7a980733900416819259.cairo" + }, + "parent_location": [ + { + "end_col": 14, + "end_line": 24, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/3.9.13/envs/kakarot/lib/python3.9/site-packages/openzeppelin/token/erc20/library.cairo" + }, + "start_col": 6, + "start_line": 24 + }, + "While handling event:" + ], + "start_col": 21, + "start_line": 1 + } + }, + "404": { + "accessible_scopes": [ + "openzeppelin.token.erc20.library", + "openzeppelin.token.erc20.library.Approval", + "openzeppelin.token.erc20.library.Approval.emit" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 22, + "end_line": 2, + "input_file": { + "filename": "autogen/starknet/event/Approval/8220fde17ca5479f12ae71a8036f4d354fe722f2c036da610b53511924e4ee84.cairo" + }, + "parent_location": [ + { + "end_col": 14, + "end_line": 24, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/3.9.13/envs/kakarot/lib/python3.9/site-packages/openzeppelin/token/erc20/library.cairo" + }, + "parent_location": [ + { + "end_col": 39, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/event/Approval/6150feec30bd48bfd0f446ed8c155a6d911a2c3fb3ec7a980733900416819259.cairo" + }, + "parent_location": [ + { + "end_col": 14, + "end_line": 24, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/3.9.13/envs/kakarot/lib/python3.9/site-packages/openzeppelin/token/erc20/library.cairo" + }, + "start_col": 6, + "start_line": 24 + }, + "While handling event:" + ], + "start_col": 29, + "start_line": 1 + }, + "While expanding the reference '__keys_ptr' in:" + ], + "start_col": 6, + "start_line": 24 + }, + "While handling event:" + ], + "start_col": 12, + "start_line": 2 + } + }, + "405": { + "accessible_scopes": [ + "openzeppelin.token.erc20.library", + "openzeppelin.token.erc20.library.Approval", + "openzeppelin.token.erc20.library.Approval.emit" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 77, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/event/Approval/6150feec30bd48bfd0f446ed8c155a6d911a2c3fb3ec7a980733900416819259.cairo" + }, + "parent_location": [ + { + "end_col": 14, + "end_line": 24, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/3.9.13/envs/kakarot/lib/python3.9/site-packages/openzeppelin/token/erc20/library.cairo" + }, + "start_col": 6, + "start_line": 24 + }, + "While handling event:" + ], + "start_col": 50, + "start_line": 1 + } + }, + "406": { + "accessible_scopes": [ + "openzeppelin.token.erc20.library", + "openzeppelin.token.erc20.library.Approval", + "openzeppelin.token.erc20.library.Approval.emit" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 22, + "end_line": 4, + "input_file": { + "filename": "autogen/starknet/event/Approval/8220fde17ca5479f12ae71a8036f4d354fe722f2c036da610b53511924e4ee84.cairo" + }, + "parent_location": [ + { + "end_col": 14, + "end_line": 24, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/3.9.13/envs/kakarot/lib/python3.9/site-packages/openzeppelin/token/erc20/library.cairo" + }, + "parent_location": [ + { + "end_col": 94, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/event/Approval/6150feec30bd48bfd0f446ed8c155a6d911a2c3fb3ec7a980733900416819259.cairo" + }, + "parent_location": [ + { + "end_col": 14, + "end_line": 24, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/3.9.13/envs/kakarot/lib/python3.9/site-packages/openzeppelin/token/erc20/library.cairo" + }, + "start_col": 6, + "start_line": 24 + }, + "While handling event:" + ], + "start_col": 84, + "start_line": 1 + }, + "While expanding the reference '__data_ptr' in:" + ], + "start_col": 6, + "start_line": 24 + }, + "While handling event:" + ], + "start_col": 12, + "start_line": 4 + } + }, + "407": { + "accessible_scopes": [ + "openzeppelin.token.erc20.library", + "openzeppelin.token.erc20.library.Approval", + "openzeppelin.token.erc20.library.Approval.emit" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 95, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/event/Approval/6150feec30bd48bfd0f446ed8c155a6d911a2c3fb3ec7a980733900416819259.cairo" + }, + "parent_location": [ + { + "end_col": 14, + "end_line": 24, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/3.9.13/envs/kakarot/lib/python3.9/site-packages/openzeppelin/token/erc20/library.cairo" + }, + "start_col": 6, + "start_line": 24 + }, + "While handling event:" + ], + "start_col": 1, + "start_line": 1 + } + }, + "409": { + "accessible_scopes": [ + "openzeppelin.token.erc20.library", + "openzeppelin.token.erc20.library.Approval", + "openzeppelin.token.erc20.library.Approval.emit" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 46, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/event/Approval/a7a8ae41be29ac9f4f6c3b7837c448d787ca051dd1ade98f409e54d33d112504.cairo" + }, + "parent_location": [ + { + "end_col": 14, + "end_line": 24, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/3.9.13/envs/kakarot/lib/python3.9/site-packages/openzeppelin/token/erc20/library.cairo" + }, + "parent_location": [ + { + "end_col": 46, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/event/Approval/a7a8ae41be29ac9f4f6c3b7837c448d787ca051dd1ade98f409e54d33d112504.cairo" + }, + "parent_location": [ + { + "end_col": 14, + "end_line": 24, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/3.9.13/envs/kakarot/lib/python3.9/site-packages/openzeppelin/token/erc20/library.cairo" + }, + "parent_location": [ + { + "end_col": 11, + "end_line": 2, + "input_file": { + "filename": "autogen/starknet/event/Approval/6150feec30bd48bfd0f446ed8c155a6d911a2c3fb3ec7a980733900416819259.cairo" + }, + "parent_location": [ + { + "end_col": 14, + "end_line": 24, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/3.9.13/envs/kakarot/lib/python3.9/site-packages/openzeppelin/token/erc20/library.cairo" + }, + "start_col": 6, + "start_line": 24 + }, + "While handling event:" + ], + "start_col": 1, + "start_line": 2 + }, + "While trying to retrieve the implicit argument 'range_check_ptr' in:" + ], + "start_col": 6, + "start_line": 24 + }, + "While handling event:" + ], + "start_col": 31, + "start_line": 1 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 6, + "start_line": 24 + }, + "While handling event:" + ], + "start_col": 31, + "start_line": 1 + } + }, + "410": { + "accessible_scopes": [ + "openzeppelin.token.erc20.library", + "openzeppelin.token.erc20.library.Approval", + "openzeppelin.token.erc20.library.Approval.emit" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 11, + "end_line": 2, + "input_file": { + "filename": "autogen/starknet/event/Approval/6150feec30bd48bfd0f446ed8c155a6d911a2c3fb3ec7a980733900416819259.cairo" + }, + "parent_location": [ + { + "end_col": 14, + "end_line": 24, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/3.9.13/envs/kakarot/lib/python3.9/site-packages/openzeppelin/token/erc20/library.cairo" + }, + "start_col": 6, + "start_line": 24 + }, + "While handling event:" + ], + "start_col": 1, + "start_line": 2 + } + }, + "411": { + "accessible_scopes": [ + "openzeppelin.token.erc20.library", + "openzeppelin.token.erc20.library.ERC20_name", + "openzeppelin.token.erc20.library.ERC20_name.addr" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 41, + "end_line": 7, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC20_name/impl.cairo" + }, + "parent_location": [ + { + "end_col": 41, + "end_line": 7, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC20_name/decl.cairo" + }, + "parent_location": [ + { + "end_col": 26, + "end_line": 9, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC20_name/impl.cairo" + }, + "start_col": 9, + "start_line": 9 + }, + "While trying to retrieve the implicit argument 'pedersen_ptr' in:" + ], + "start_col": 15, + "start_line": 7 + }, + "While expanding the reference 'pedersen_ptr' in:" + ], + "start_col": 15, + "start_line": 7 + } + }, + "412": { + "accessible_scopes": [ + "openzeppelin.token.erc20.library", + "openzeppelin.token.erc20.library.ERC20_name", + "openzeppelin.token.erc20.library.ERC20_name.addr" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 58, + "end_line": 7, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC20_name/impl.cairo" + }, + "parent_location": [ + { + "end_col": 58, + "end_line": 7, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC20_name/decl.cairo" + }, + "parent_location": [ + { + "end_col": 26, + "end_line": 9, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC20_name/impl.cairo" + }, + "start_col": 9, + "start_line": 9 + }, + "While trying to retrieve the implicit argument 'range_check_ptr' in:" + ], + "start_col": 43, + "start_line": 7 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 43, + "start_line": 7 + } + }, + "413": { + "accessible_scopes": [ + "openzeppelin.token.erc20.library", + "openzeppelin.token.erc20.library.ERC20_name", + "openzeppelin.token.erc20.library.ERC20_name.addr" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 95, + "end_line": 8, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC20_name/impl.cairo" + }, + "parent_location": [ + { + "end_col": 24, + "end_line": 9, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC20_name/impl.cairo" + }, + "start_col": 21, + "start_line": 9 + }, + "While expanding the reference 'res' in:" + ], + "start_col": 19, + "start_line": 8 + } + }, + "415": { + "accessible_scopes": [ + "openzeppelin.token.erc20.library", + "openzeppelin.token.erc20.library.ERC20_name", + "openzeppelin.token.erc20.library.ERC20_name.addr" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 26, + "end_line": 9, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC20_name/impl.cairo" + }, + "start_col": 9, + "start_line": 9 + } + }, + "416": { + "accessible_scopes": [ + "openzeppelin.token.erc20.library", + "openzeppelin.token.erc20.library.ERC20_name", + "openzeppelin.token.erc20.library.ERC20_name.read" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 61, + "end_line": 12, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC20_name/impl.cairo" + }, + "parent_location": [ + { + "end_col": 41, + "end_line": 7, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC20_name/decl.cairo" + }, + "parent_location": [ + { + "end_col": 36, + "end_line": 13, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC20_name/impl.cairo" + }, + "start_col": 30, + "start_line": 13 + }, + "While trying to retrieve the implicit argument 'pedersen_ptr' in:" + ], + "start_col": 15, + "start_line": 7 + }, + "While expanding the reference 'pedersen_ptr' in:" + ], + "start_col": 35, + "start_line": 12 + } + }, + "417": { + "accessible_scopes": [ + "openzeppelin.token.erc20.library", + "openzeppelin.token.erc20.library.ERC20_name", + "openzeppelin.token.erc20.library.ERC20_name.read" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 78, + "end_line": 12, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC20_name/impl.cairo" + }, + "parent_location": [ + { + "end_col": 58, + "end_line": 7, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC20_name/decl.cairo" + }, + "parent_location": [ + { + "end_col": 36, + "end_line": 13, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC20_name/impl.cairo" + }, + "start_col": 30, + "start_line": 13 + }, + "While trying to retrieve the implicit argument 'range_check_ptr' in:" + ], + "start_col": 43, + "start_line": 7 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 63, + "start_line": 12 + } + }, + "418": { + "accessible_scopes": [ + "openzeppelin.token.erc20.library", + "openzeppelin.token.erc20.library.ERC20_name", + "openzeppelin.token.erc20.library.ERC20_name.read" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 36, + "end_line": 13, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC20_name/impl.cairo" + }, + "start_col": 30, + "start_line": 13 + } + }, + "420": { + "accessible_scopes": [ + "openzeppelin.token.erc20.library", + "openzeppelin.token.erc20.library.ERC20_name", + "openzeppelin.token.erc20.library.ERC20_name.read" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 33, + "end_line": 12, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC20_name/impl.cairo" + }, + "parent_location": [ + { + "end_col": 37, + "end_line": 352, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/3.9.13/envs/kakarot/lib/python3.9/site-packages/starkware/starknet/common/syscalls.cairo" + }, + "parent_location": [ + { + "end_col": 75, + "end_line": 14, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC20_name/impl.cairo" + }, + "start_col": 37, + "start_line": 14 + }, + "While trying to retrieve the implicit argument 'syscall_ptr' in:" + ], + "start_col": 19, + "start_line": 352 + }, + "While expanding the reference 'syscall_ptr' in:" + ], + "start_col": 15, + "start_line": 12 + } + }, + "421": { + "accessible_scopes": [ + "openzeppelin.token.erc20.library", + "openzeppelin.token.erc20.library.ERC20_name", + "openzeppelin.token.erc20.library.ERC20_name.read" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 26, + "end_line": 13, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC20_name/impl.cairo" + }, + "parent_location": [ + { + "end_col": 70, + "end_line": 14, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC20_name/impl.cairo" + }, + "start_col": 58, + "start_line": 14 + }, + "While expanding the reference 'storage_addr' in:" + ], + "start_col": 14, + "start_line": 13 + } + }, + "422": { + "accessible_scopes": [ + "openzeppelin.token.erc20.library", + "openzeppelin.token.erc20.library.ERC20_name", + "openzeppelin.token.erc20.library.ERC20_name.read" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 75, + "end_line": 14, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC20_name/impl.cairo" + }, + "start_col": 37, + "start_line": 14 + } + }, + "424": { + "accessible_scopes": [ + "openzeppelin.token.erc20.library", + "openzeppelin.token.erc20.library.ERC20_name", + "openzeppelin.token.erc20.library.ERC20_name.read" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 37, + "end_line": 352, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/3.9.13/envs/kakarot/lib/python3.9/site-packages/starkware/starknet/common/syscalls.cairo" + }, + "parent_location": [ + { + "end_col": 75, + "end_line": 14, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC20_name/impl.cairo" + }, + "parent_location": [ + { + "end_col": 42, + "end_line": 16, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC20_name/impl.cairo" + }, + "start_col": 31, + "start_line": 16 + }, + "While expanding the reference 'syscall_ptr' in:" + ], + "start_col": 37, + "start_line": 14 + }, + "While trying to update the implicit return value 'syscall_ptr' in:" + ], + "start_col": 19, + "start_line": 352 + } + }, + "425": { + "accessible_scopes": [ + "openzeppelin.token.erc20.library", + "openzeppelin.token.erc20.library.ERC20_name", + "openzeppelin.token.erc20.library.ERC20_name.read" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 41, + "end_line": 7, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC20_name/decl.cairo" + }, + "parent_location": [ + { + "end_col": 36, + "end_line": 13, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC20_name/impl.cairo" + }, + "parent_location": [ + { + "end_col": 44, + "end_line": 17, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC20_name/impl.cairo" + }, + "start_col": 32, + "start_line": 17 + }, + "While expanding the reference 'pedersen_ptr' in:" + ], + "start_col": 30, + "start_line": 13 + }, + "While trying to update the implicit return value 'pedersen_ptr' in:" + ], + "start_col": 15, + "start_line": 7 + } + }, + "426": { + "accessible_scopes": [ + "openzeppelin.token.erc20.library", + "openzeppelin.token.erc20.library.ERC20_name", + "openzeppelin.token.erc20.library.ERC20_name.read" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 58, + "end_line": 7, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC20_name/decl.cairo" + }, + "parent_location": [ + { + "end_col": 36, + "end_line": 13, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC20_name/impl.cairo" + }, + "parent_location": [ + { + "end_col": 50, + "end_line": 18, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC20_name/impl.cairo" + }, + "start_col": 35, + "start_line": 18 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 30, + "start_line": 13 + }, + "While trying to update the implicit return value 'range_check_ptr' in:" + ], + "start_col": 43, + "start_line": 7 + } + }, + "427": { + "accessible_scopes": [ + "openzeppelin.token.erc20.library", + "openzeppelin.token.erc20.library.ERC20_name", + "openzeppelin.token.erc20.library.ERC20_name.read" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 33, + "end_line": 14, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC20_name/impl.cairo" + }, + "parent_location": [ + { + "end_col": 64, + "end_line": 19, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC20_name/impl.cairo" + }, + "start_col": 45, + "start_line": 19 + }, + "While expanding the reference '__storage_var_temp0' in:" + ], + "start_col": 14, + "start_line": 14 + } + }, + "428": { + "accessible_scopes": [ + "openzeppelin.token.erc20.library", + "openzeppelin.token.erc20.library.ERC20_name", + "openzeppelin.token.erc20.library.ERC20_name.read" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 55, + "end_line": 20, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC20_name/impl.cairo" + }, + "start_col": 9, + "start_line": 20 + } + }, + "429": { + "accessible_scopes": [ + "openzeppelin.token.erc20.library", + "openzeppelin.token.erc20.library.ERC20_name", + "openzeppelin.token.erc20.library.ERC20_name.write" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 62, + "end_line": 23, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC20_name/impl.cairo" + }, + "parent_location": [ + { + "end_col": 41, + "end_line": 7, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC20_name/decl.cairo" + }, + "parent_location": [ + { + "end_col": 36, + "end_line": 24, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC20_name/impl.cairo" + }, + "start_col": 30, + "start_line": 24 + }, + "While trying to retrieve the implicit argument 'pedersen_ptr' in:" + ], + "start_col": 15, + "start_line": 7 + }, + "While expanding the reference 'pedersen_ptr' in:" + ], + "start_col": 36, + "start_line": 23 + } + }, + "430": { + "accessible_scopes": [ + "openzeppelin.token.erc20.library", + "openzeppelin.token.erc20.library.ERC20_name", + "openzeppelin.token.erc20.library.ERC20_name.write" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 79, + "end_line": 23, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC20_name/impl.cairo" + }, + "parent_location": [ + { + "end_col": 58, + "end_line": 7, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC20_name/decl.cairo" + }, + "parent_location": [ + { + "end_col": 36, + "end_line": 24, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC20_name/impl.cairo" + }, + "start_col": 30, + "start_line": 24 + }, + "While trying to retrieve the implicit argument 'range_check_ptr' in:" + ], + "start_col": 43, + "start_line": 7 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 64, + "start_line": 23 + } + }, + "431": { + "accessible_scopes": [ + "openzeppelin.token.erc20.library", + "openzeppelin.token.erc20.library.ERC20_name", + "openzeppelin.token.erc20.library.ERC20_name.write" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 36, + "end_line": 24, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC20_name/impl.cairo" + }, + "start_col": 30, + "start_line": 24 + } + }, + "433": { + "accessible_scopes": [ + "openzeppelin.token.erc20.library", + "openzeppelin.token.erc20.library.ERC20_name", + "openzeppelin.token.erc20.library.ERC20_name.write" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 34, + "end_line": 23, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC20_name/impl.cairo" + }, + "parent_location": [ + { + "end_col": 38, + "end_line": 370, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/3.9.13/envs/kakarot/lib/python3.9/site-packages/starkware/starknet/common/syscalls.cairo" + }, + "parent_location": [ + { + "end_col": 80, + "end_line": 25, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC20_name/impl.cairo" + }, + "start_col": 9, + "start_line": 25 + }, + "While trying to retrieve the implicit argument 'syscall_ptr' in:" + ], + "start_col": 20, + "start_line": 370 + }, + "While expanding the reference 'syscall_ptr' in:" + ], + "start_col": 16, + "start_line": 23 + } + }, + "434": { + "accessible_scopes": [ + "openzeppelin.token.erc20.library", + "openzeppelin.token.erc20.library.ERC20_name", + "openzeppelin.token.erc20.library.ERC20_name.write" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 26, + "end_line": 24, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC20_name/impl.cairo" + }, + "parent_location": [ + { + "end_col": 43, + "end_line": 25, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC20_name/impl.cairo" + }, + "start_col": 31, + "start_line": 25 + }, + "While expanding the reference 'storage_addr' in:" + ], + "start_col": 14, + "start_line": 24 + } + }, + "435": { + "accessible_scopes": [ + "openzeppelin.token.erc20.library", + "openzeppelin.token.erc20.library.ERC20_name", + "openzeppelin.token.erc20.library.ERC20_name.write" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 79, + "end_line": 25, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC20_name/impl.cairo" + }, + "start_col": 55, + "start_line": 25 + } + }, + "436": { + "accessible_scopes": [ + "openzeppelin.token.erc20.library", + "openzeppelin.token.erc20.library.ERC20_name", + "openzeppelin.token.erc20.library.ERC20_name.write" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 80, + "end_line": 25, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC20_name/impl.cairo" + }, + "start_col": 9, + "start_line": 25 + } + }, + "438": { + "accessible_scopes": [ + "openzeppelin.token.erc20.library", + "openzeppelin.token.erc20.library.ERC20_name", + "openzeppelin.token.erc20.library.ERC20_name.write" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 41, + "end_line": 7, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC20_name/decl.cairo" + }, + "parent_location": [ + { + "end_col": 36, + "end_line": 24, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC20_name/impl.cairo" + }, + "parent_location": [ + { + "end_col": 62, + "end_line": 19, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC20_name/decl.cairo" + }, + "parent_location": [ + { + "end_col": 19, + "end_line": 26, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC20_name/impl.cairo" + }, + "start_col": 9, + "start_line": 26 + }, + "While trying to retrieve the implicit argument 'pedersen_ptr' in:" + ], + "start_col": 36, + "start_line": 19 + }, + "While expanding the reference 'pedersen_ptr' in:" + ], + "start_col": 30, + "start_line": 24 + }, + "While trying to update the implicit return value 'pedersen_ptr' in:" + ], + "start_col": 15, + "start_line": 7 + } + }, + "439": { + "accessible_scopes": [ + "openzeppelin.token.erc20.library", + "openzeppelin.token.erc20.library.ERC20_name", + "openzeppelin.token.erc20.library.ERC20_name.write" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 58, + "end_line": 7, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC20_name/decl.cairo" + }, + "parent_location": [ + { + "end_col": 36, + "end_line": 24, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC20_name/impl.cairo" + }, + "parent_location": [ + { + "end_col": 79, + "end_line": 19, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC20_name/decl.cairo" + }, + "parent_location": [ + { + "end_col": 19, + "end_line": 26, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC20_name/impl.cairo" + }, + "start_col": 9, + "start_line": 26 + }, + "While trying to retrieve the implicit argument 'range_check_ptr' in:" + ], + "start_col": 64, + "start_line": 19 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 30, + "start_line": 24 + }, + "While trying to update the implicit return value 'range_check_ptr' in:" + ], + "start_col": 43, + "start_line": 7 + } + }, + "440": { + "accessible_scopes": [ + "openzeppelin.token.erc20.library", + "openzeppelin.token.erc20.library.ERC20_name", + "openzeppelin.token.erc20.library.ERC20_name.write" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 19, + "end_line": 26, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC20_name/impl.cairo" + }, + "start_col": 9, + "start_line": 26 + } + }, + "441": { + "accessible_scopes": [ + "openzeppelin.token.erc20.library", + "openzeppelin.token.erc20.library.ERC20_symbol", + "openzeppelin.token.erc20.library.ERC20_symbol.addr" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 41, + "end_line": 7, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC20_symbol/impl.cairo" + }, + "parent_location": [ + { + "end_col": 41, + "end_line": 7, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC20_symbol/decl.cairo" + }, + "parent_location": [ + { + "end_col": 26, + "end_line": 9, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC20_symbol/impl.cairo" + }, + "start_col": 9, + "start_line": 9 + }, + "While trying to retrieve the implicit argument 'pedersen_ptr' in:" + ], + "start_col": 15, + "start_line": 7 + }, + "While expanding the reference 'pedersen_ptr' in:" + ], + "start_col": 15, + "start_line": 7 + } + }, + "442": { + "accessible_scopes": [ + "openzeppelin.token.erc20.library", + "openzeppelin.token.erc20.library.ERC20_symbol", + "openzeppelin.token.erc20.library.ERC20_symbol.addr" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 58, + "end_line": 7, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC20_symbol/impl.cairo" + }, + "parent_location": [ + { + "end_col": 58, + "end_line": 7, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC20_symbol/decl.cairo" + }, + "parent_location": [ + { + "end_col": 26, + "end_line": 9, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC20_symbol/impl.cairo" + }, + "start_col": 9, + "start_line": 9 + }, + "While trying to retrieve the implicit argument 'range_check_ptr' in:" + ], + "start_col": 43, + "start_line": 7 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 43, + "start_line": 7 + } + }, + "443": { + "accessible_scopes": [ + "openzeppelin.token.erc20.library", + "openzeppelin.token.erc20.library.ERC20_symbol", + "openzeppelin.token.erc20.library.ERC20_symbol.addr" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 94, + "end_line": 8, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC20_symbol/impl.cairo" + }, + "parent_location": [ + { + "end_col": 24, + "end_line": 9, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC20_symbol/impl.cairo" + }, + "start_col": 21, + "start_line": 9 + }, + "While expanding the reference 'res' in:" + ], + "start_col": 19, + "start_line": 8 + } + }, + "445": { + "accessible_scopes": [ + "openzeppelin.token.erc20.library", + "openzeppelin.token.erc20.library.ERC20_symbol", + "openzeppelin.token.erc20.library.ERC20_symbol.addr" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 26, + "end_line": 9, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC20_symbol/impl.cairo" + }, + "start_col": 9, + "start_line": 9 + } + }, + "446": { + "accessible_scopes": [ + "openzeppelin.token.erc20.library", + "openzeppelin.token.erc20.library.ERC20_symbol", + "openzeppelin.token.erc20.library.ERC20_symbol.read" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 61, + "end_line": 12, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC20_symbol/impl.cairo" + }, + "parent_location": [ + { + "end_col": 41, + "end_line": 7, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC20_symbol/decl.cairo" + }, + "parent_location": [ + { + "end_col": 36, + "end_line": 13, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC20_symbol/impl.cairo" + }, + "start_col": 30, + "start_line": 13 + }, + "While trying to retrieve the implicit argument 'pedersen_ptr' in:" + ], + "start_col": 15, + "start_line": 7 + }, + "While expanding the reference 'pedersen_ptr' in:" + ], + "start_col": 35, + "start_line": 12 + } + }, + "447": { + "accessible_scopes": [ + "openzeppelin.token.erc20.library", + "openzeppelin.token.erc20.library.ERC20_symbol", + "openzeppelin.token.erc20.library.ERC20_symbol.read" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 78, + "end_line": 12, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC20_symbol/impl.cairo" + }, + "parent_location": [ + { + "end_col": 58, + "end_line": 7, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC20_symbol/decl.cairo" + }, + "parent_location": [ + { + "end_col": 36, + "end_line": 13, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC20_symbol/impl.cairo" + }, + "start_col": 30, + "start_line": 13 + }, + "While trying to retrieve the implicit argument 'range_check_ptr' in:" + ], + "start_col": 43, + "start_line": 7 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 63, + "start_line": 12 + } + }, + "448": { + "accessible_scopes": [ + "openzeppelin.token.erc20.library", + "openzeppelin.token.erc20.library.ERC20_symbol", + "openzeppelin.token.erc20.library.ERC20_symbol.read" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 36, + "end_line": 13, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC20_symbol/impl.cairo" + }, + "start_col": 30, + "start_line": 13 + } + }, + "450": { + "accessible_scopes": [ + "openzeppelin.token.erc20.library", + "openzeppelin.token.erc20.library.ERC20_symbol", + "openzeppelin.token.erc20.library.ERC20_symbol.read" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 33, + "end_line": 12, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC20_symbol/impl.cairo" + }, + "parent_location": [ + { + "end_col": 37, + "end_line": 352, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/3.9.13/envs/kakarot/lib/python3.9/site-packages/starkware/starknet/common/syscalls.cairo" + }, + "parent_location": [ + { + "end_col": 75, + "end_line": 14, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC20_symbol/impl.cairo" + }, + "start_col": 37, + "start_line": 14 + }, + "While trying to retrieve the implicit argument 'syscall_ptr' in:" + ], + "start_col": 19, + "start_line": 352 + }, + "While expanding the reference 'syscall_ptr' in:" + ], + "start_col": 15, + "start_line": 12 + } + }, + "451": { + "accessible_scopes": [ + "openzeppelin.token.erc20.library", + "openzeppelin.token.erc20.library.ERC20_symbol", + "openzeppelin.token.erc20.library.ERC20_symbol.read" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 26, + "end_line": 13, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC20_symbol/impl.cairo" + }, + "parent_location": [ + { + "end_col": 70, + "end_line": 14, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC20_symbol/impl.cairo" + }, + "start_col": 58, + "start_line": 14 + }, + "While expanding the reference 'storage_addr' in:" + ], + "start_col": 14, + "start_line": 13 + } + }, + "452": { + "accessible_scopes": [ + "openzeppelin.token.erc20.library", + "openzeppelin.token.erc20.library.ERC20_symbol", + "openzeppelin.token.erc20.library.ERC20_symbol.read" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 75, + "end_line": 14, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC20_symbol/impl.cairo" + }, + "start_col": 37, + "start_line": 14 + } + }, + "454": { + "accessible_scopes": [ + "openzeppelin.token.erc20.library", + "openzeppelin.token.erc20.library.ERC20_symbol", + "openzeppelin.token.erc20.library.ERC20_symbol.read" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 37, + "end_line": 352, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/3.9.13/envs/kakarot/lib/python3.9/site-packages/starkware/starknet/common/syscalls.cairo" + }, + "parent_location": [ + { + "end_col": 75, + "end_line": 14, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC20_symbol/impl.cairo" + }, + "parent_location": [ + { + "end_col": 42, + "end_line": 16, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC20_symbol/impl.cairo" + }, + "start_col": 31, + "start_line": 16 + }, + "While expanding the reference 'syscall_ptr' in:" + ], + "start_col": 37, + "start_line": 14 + }, + "While trying to update the implicit return value 'syscall_ptr' in:" + ], + "start_col": 19, + "start_line": 352 + } + }, + "455": { + "accessible_scopes": [ + "openzeppelin.token.erc20.library", + "openzeppelin.token.erc20.library.ERC20_symbol", + "openzeppelin.token.erc20.library.ERC20_symbol.read" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 41, + "end_line": 7, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC20_symbol/decl.cairo" + }, + "parent_location": [ + { + "end_col": 36, + "end_line": 13, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC20_symbol/impl.cairo" + }, + "parent_location": [ + { + "end_col": 44, + "end_line": 17, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC20_symbol/impl.cairo" + }, + "start_col": 32, + "start_line": 17 + }, + "While expanding the reference 'pedersen_ptr' in:" + ], + "start_col": 30, + "start_line": 13 + }, + "While trying to update the implicit return value 'pedersen_ptr' in:" + ], + "start_col": 15, + "start_line": 7 + } + }, + "456": { + "accessible_scopes": [ + "openzeppelin.token.erc20.library", + "openzeppelin.token.erc20.library.ERC20_symbol", + "openzeppelin.token.erc20.library.ERC20_symbol.read" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 58, + "end_line": 7, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC20_symbol/decl.cairo" + }, + "parent_location": [ + { + "end_col": 36, + "end_line": 13, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC20_symbol/impl.cairo" + }, + "parent_location": [ + { + "end_col": 50, + "end_line": 18, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC20_symbol/impl.cairo" + }, + "start_col": 35, + "start_line": 18 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 30, + "start_line": 13 + }, + "While trying to update the implicit return value 'range_check_ptr' in:" + ], + "start_col": 43, + "start_line": 7 + } + }, + "457": { + "accessible_scopes": [ + "openzeppelin.token.erc20.library", + "openzeppelin.token.erc20.library.ERC20_symbol", + "openzeppelin.token.erc20.library.ERC20_symbol.read" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 33, + "end_line": 14, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC20_symbol/impl.cairo" + }, + "parent_location": [ + { + "end_col": 64, + "end_line": 19, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC20_symbol/impl.cairo" + }, + "start_col": 45, + "start_line": 19 + }, + "While expanding the reference '__storage_var_temp0' in:" + ], + "start_col": 14, + "start_line": 14 + } + }, + "458": { + "accessible_scopes": [ + "openzeppelin.token.erc20.library", + "openzeppelin.token.erc20.library.ERC20_symbol", + "openzeppelin.token.erc20.library.ERC20_symbol.read" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 55, + "end_line": 20, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC20_symbol/impl.cairo" + }, + "start_col": 9, + "start_line": 20 + } + }, + "459": { + "accessible_scopes": [ + "openzeppelin.token.erc20.library", + "openzeppelin.token.erc20.library.ERC20_symbol", + "openzeppelin.token.erc20.library.ERC20_symbol.write" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 62, + "end_line": 23, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC20_symbol/impl.cairo" + }, + "parent_location": [ + { + "end_col": 41, + "end_line": 7, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC20_symbol/decl.cairo" + }, + "parent_location": [ + { + "end_col": 36, + "end_line": 24, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC20_symbol/impl.cairo" + }, + "start_col": 30, + "start_line": 24 + }, + "While trying to retrieve the implicit argument 'pedersen_ptr' in:" + ], + "start_col": 15, + "start_line": 7 + }, + "While expanding the reference 'pedersen_ptr' in:" + ], + "start_col": 36, + "start_line": 23 + } + }, + "460": { + "accessible_scopes": [ + "openzeppelin.token.erc20.library", + "openzeppelin.token.erc20.library.ERC20_symbol", + "openzeppelin.token.erc20.library.ERC20_symbol.write" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 79, + "end_line": 23, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC20_symbol/impl.cairo" + }, + "parent_location": [ + { + "end_col": 58, + "end_line": 7, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC20_symbol/decl.cairo" + }, + "parent_location": [ + { + "end_col": 36, + "end_line": 24, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC20_symbol/impl.cairo" + }, + "start_col": 30, + "start_line": 24 + }, + "While trying to retrieve the implicit argument 'range_check_ptr' in:" + ], + "start_col": 43, + "start_line": 7 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 64, + "start_line": 23 + } + }, + "461": { + "accessible_scopes": [ + "openzeppelin.token.erc20.library", + "openzeppelin.token.erc20.library.ERC20_symbol", + "openzeppelin.token.erc20.library.ERC20_symbol.write" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 36, + "end_line": 24, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC20_symbol/impl.cairo" + }, + "start_col": 30, + "start_line": 24 + } + }, + "463": { + "accessible_scopes": [ + "openzeppelin.token.erc20.library", + "openzeppelin.token.erc20.library.ERC20_symbol", + "openzeppelin.token.erc20.library.ERC20_symbol.write" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 34, + "end_line": 23, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC20_symbol/impl.cairo" + }, + "parent_location": [ + { + "end_col": 38, + "end_line": 370, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/3.9.13/envs/kakarot/lib/python3.9/site-packages/starkware/starknet/common/syscalls.cairo" + }, + "parent_location": [ + { + "end_col": 80, + "end_line": 25, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC20_symbol/impl.cairo" + }, + "start_col": 9, + "start_line": 25 + }, + "While trying to retrieve the implicit argument 'syscall_ptr' in:" + ], + "start_col": 20, + "start_line": 370 + }, + "While expanding the reference 'syscall_ptr' in:" + ], + "start_col": 16, + "start_line": 23 + } + }, + "464": { + "accessible_scopes": [ + "openzeppelin.token.erc20.library", + "openzeppelin.token.erc20.library.ERC20_symbol", + "openzeppelin.token.erc20.library.ERC20_symbol.write" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 26, + "end_line": 24, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC20_symbol/impl.cairo" + }, + "parent_location": [ + { + "end_col": 43, + "end_line": 25, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC20_symbol/impl.cairo" + }, + "start_col": 31, + "start_line": 25 + }, + "While expanding the reference 'storage_addr' in:" + ], + "start_col": 14, + "start_line": 24 + } + }, + "465": { + "accessible_scopes": [ + "openzeppelin.token.erc20.library", + "openzeppelin.token.erc20.library.ERC20_symbol", + "openzeppelin.token.erc20.library.ERC20_symbol.write" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 79, + "end_line": 25, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC20_symbol/impl.cairo" + }, + "start_col": 55, + "start_line": 25 + } + }, + "466": { + "accessible_scopes": [ + "openzeppelin.token.erc20.library", + "openzeppelin.token.erc20.library.ERC20_symbol", + "openzeppelin.token.erc20.library.ERC20_symbol.write" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 80, + "end_line": 25, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC20_symbol/impl.cairo" + }, + "start_col": 9, + "start_line": 25 + } + }, + "468": { + "accessible_scopes": [ + "openzeppelin.token.erc20.library", + "openzeppelin.token.erc20.library.ERC20_symbol", + "openzeppelin.token.erc20.library.ERC20_symbol.write" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 41, + "end_line": 7, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC20_symbol/decl.cairo" + }, + "parent_location": [ + { + "end_col": 36, + "end_line": 24, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC20_symbol/impl.cairo" + }, + "parent_location": [ + { + "end_col": 62, + "end_line": 19, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC20_symbol/decl.cairo" + }, + "parent_location": [ + { + "end_col": 19, + "end_line": 26, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC20_symbol/impl.cairo" + }, + "start_col": 9, + "start_line": 26 + }, + "While trying to retrieve the implicit argument 'pedersen_ptr' in:" + ], + "start_col": 36, + "start_line": 19 + }, + "While expanding the reference 'pedersen_ptr' in:" + ], + "start_col": 30, + "start_line": 24 + }, + "While trying to update the implicit return value 'pedersen_ptr' in:" + ], + "start_col": 15, + "start_line": 7 + } + }, + "469": { + "accessible_scopes": [ + "openzeppelin.token.erc20.library", + "openzeppelin.token.erc20.library.ERC20_symbol", + "openzeppelin.token.erc20.library.ERC20_symbol.write" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 58, + "end_line": 7, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC20_symbol/decl.cairo" + }, + "parent_location": [ + { + "end_col": 36, + "end_line": 24, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC20_symbol/impl.cairo" + }, + "parent_location": [ + { + "end_col": 79, + "end_line": 19, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC20_symbol/decl.cairo" + }, + "parent_location": [ + { + "end_col": 19, + "end_line": 26, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC20_symbol/impl.cairo" + }, + "start_col": 9, + "start_line": 26 + }, + "While trying to retrieve the implicit argument 'range_check_ptr' in:" + ], + "start_col": 64, + "start_line": 19 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 30, + "start_line": 24 + }, + "While trying to update the implicit return value 'range_check_ptr' in:" + ], + "start_col": 43, + "start_line": 7 + } + }, + "470": { + "accessible_scopes": [ + "openzeppelin.token.erc20.library", + "openzeppelin.token.erc20.library.ERC20_symbol", + "openzeppelin.token.erc20.library.ERC20_symbol.write" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 19, + "end_line": 26, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC20_symbol/impl.cairo" + }, + "start_col": 9, + "start_line": 26 + } + }, + "471": { + "accessible_scopes": [ + "openzeppelin.token.erc20.library", + "openzeppelin.token.erc20.library.ERC20_decimals", + "openzeppelin.token.erc20.library.ERC20_decimals.addr" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 41, + "end_line": 7, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC20_decimals/impl.cairo" + }, + "parent_location": [ + { + "end_col": 41, + "end_line": 7, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC20_decimals/decl.cairo" + }, + "parent_location": [ + { + "end_col": 26, + "end_line": 9, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC20_decimals/impl.cairo" + }, + "start_col": 9, + "start_line": 9 + }, + "While trying to retrieve the implicit argument 'pedersen_ptr' in:" + ], + "start_col": 15, + "start_line": 7 + }, + "While expanding the reference 'pedersen_ptr' in:" + ], + "start_col": 15, + "start_line": 7 + } + }, + "472": { + "accessible_scopes": [ + "openzeppelin.token.erc20.library", + "openzeppelin.token.erc20.library.ERC20_decimals", + "openzeppelin.token.erc20.library.ERC20_decimals.addr" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 58, + "end_line": 7, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC20_decimals/impl.cairo" + }, + "parent_location": [ + { + "end_col": 58, + "end_line": 7, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC20_decimals/decl.cairo" + }, + "parent_location": [ + { + "end_col": 26, + "end_line": 9, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC20_decimals/impl.cairo" + }, + "start_col": 9, + "start_line": 9 + }, + "While trying to retrieve the implicit argument 'range_check_ptr' in:" + ], + "start_col": 43, + "start_line": 7 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 43, + "start_line": 7 + } + }, + "473": { + "accessible_scopes": [ + "openzeppelin.token.erc20.library", + "openzeppelin.token.erc20.library.ERC20_decimals", + "openzeppelin.token.erc20.library.ERC20_decimals.addr" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 94, + "end_line": 8, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC20_decimals/impl.cairo" + }, + "parent_location": [ + { + "end_col": 24, + "end_line": 9, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC20_decimals/impl.cairo" + }, + "start_col": 21, + "start_line": 9 + }, + "While expanding the reference 'res' in:" + ], + "start_col": 19, + "start_line": 8 + } + }, + "475": { + "accessible_scopes": [ + "openzeppelin.token.erc20.library", + "openzeppelin.token.erc20.library.ERC20_decimals", + "openzeppelin.token.erc20.library.ERC20_decimals.addr" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 26, + "end_line": 9, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC20_decimals/impl.cairo" + }, + "start_col": 9, + "start_line": 9 + } + }, + "476": { + "accessible_scopes": [ + "openzeppelin.token.erc20.library", + "openzeppelin.token.erc20.library.ERC20_decimals", + "openzeppelin.token.erc20.library.ERC20_decimals.read" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 61, + "end_line": 12, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC20_decimals/impl.cairo" + }, + "parent_location": [ + { + "end_col": 41, + "end_line": 7, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC20_decimals/decl.cairo" + }, + "parent_location": [ + { + "end_col": 36, + "end_line": 15, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC20_decimals/impl.cairo" + }, + "start_col": 30, + "start_line": 15 + }, + "While trying to retrieve the implicit argument 'pedersen_ptr' in:" + ], + "start_col": 15, + "start_line": 7 + }, + "While expanding the reference 'pedersen_ptr' in:" + ], + "start_col": 35, + "start_line": 12 + } + }, + "477": { + "accessible_scopes": [ + "openzeppelin.token.erc20.library", + "openzeppelin.token.erc20.library.ERC20_decimals", + "openzeppelin.token.erc20.library.ERC20_decimals.read" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 78, + "end_line": 12, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC20_decimals/impl.cairo" + }, + "parent_location": [ + { + "end_col": 58, + "end_line": 7, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC20_decimals/decl.cairo" + }, + "parent_location": [ + { + "end_col": 36, + "end_line": 15, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC20_decimals/impl.cairo" + }, + "start_col": 30, + "start_line": 15 + }, + "While trying to retrieve the implicit argument 'range_check_ptr' in:" + ], + "start_col": 43, + "start_line": 7 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 63, + "start_line": 12 + } + }, + "478": { + "accessible_scopes": [ + "openzeppelin.token.erc20.library", + "openzeppelin.token.erc20.library.ERC20_decimals", + "openzeppelin.token.erc20.library.ERC20_decimals.read" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 36, + "end_line": 15, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC20_decimals/impl.cairo" + }, + "start_col": 30, + "start_line": 15 + } + }, + "480": { + "accessible_scopes": [ + "openzeppelin.token.erc20.library", + "openzeppelin.token.erc20.library.ERC20_decimals", + "openzeppelin.token.erc20.library.ERC20_decimals.read" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 33, + "end_line": 12, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC20_decimals/impl.cairo" + }, + "parent_location": [ + { + "end_col": 37, + "end_line": 352, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/3.9.13/envs/kakarot/lib/python3.9/site-packages/starkware/starknet/common/syscalls.cairo" + }, + "parent_location": [ + { + "end_col": 75, + "end_line": 16, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC20_decimals/impl.cairo" + }, + "start_col": 37, + "start_line": 16 + }, + "While trying to retrieve the implicit argument 'syscall_ptr' in:" + ], + "start_col": 19, + "start_line": 352 + }, + "While expanding the reference 'syscall_ptr' in:" + ], + "start_col": 15, + "start_line": 12 + } + }, + "481": { + "accessible_scopes": [ + "openzeppelin.token.erc20.library", + "openzeppelin.token.erc20.library.ERC20_decimals", + "openzeppelin.token.erc20.library.ERC20_decimals.read" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 26, + "end_line": 15, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC20_decimals/impl.cairo" + }, + "parent_location": [ + { + "end_col": 70, + "end_line": 16, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC20_decimals/impl.cairo" + }, + "start_col": 58, + "start_line": 16 + }, + "While expanding the reference 'storage_addr' in:" + ], + "start_col": 14, + "start_line": 15 + } + }, + "482": { + "accessible_scopes": [ + "openzeppelin.token.erc20.library", + "openzeppelin.token.erc20.library.ERC20_decimals", + "openzeppelin.token.erc20.library.ERC20_decimals.read" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 75, + "end_line": 16, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC20_decimals/impl.cairo" + }, + "start_col": 37, + "start_line": 16 + } + }, + "484": { + "accessible_scopes": [ + "openzeppelin.token.erc20.library", + "openzeppelin.token.erc20.library.ERC20_decimals", + "openzeppelin.token.erc20.library.ERC20_decimals.read" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 37, + "end_line": 352, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/3.9.13/envs/kakarot/lib/python3.9/site-packages/starkware/starknet/common/syscalls.cairo" + }, + "parent_location": [ + { + "end_col": 75, + "end_line": 16, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC20_decimals/impl.cairo" + }, + "parent_location": [ + { + "end_col": 42, + "end_line": 18, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC20_decimals/impl.cairo" + }, + "start_col": 31, + "start_line": 18 + }, + "While expanding the reference 'syscall_ptr' in:" + ], + "start_col": 37, + "start_line": 16 + }, + "While trying to update the implicit return value 'syscall_ptr' in:" + ], + "start_col": 19, + "start_line": 352 + } + }, + "485": { + "accessible_scopes": [ + "openzeppelin.token.erc20.library", + "openzeppelin.token.erc20.library.ERC20_decimals", + "openzeppelin.token.erc20.library.ERC20_decimals.read" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 41, + "end_line": 7, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC20_decimals/decl.cairo" + }, + "parent_location": [ + { + "end_col": 36, + "end_line": 15, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC20_decimals/impl.cairo" + }, + "parent_location": [ + { + "end_col": 44, + "end_line": 19, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC20_decimals/impl.cairo" + }, + "start_col": 32, + "start_line": 19 + }, + "While expanding the reference 'pedersen_ptr' in:" + ], + "start_col": 30, + "start_line": 15 + }, + "While trying to update the implicit return value 'pedersen_ptr' in:" + ], + "start_col": 15, + "start_line": 7 + } + }, + "486": { + "accessible_scopes": [ + "openzeppelin.token.erc20.library", + "openzeppelin.token.erc20.library.ERC20_decimals", + "openzeppelin.token.erc20.library.ERC20_decimals.read" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 58, + "end_line": 7, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC20_decimals/decl.cairo" + }, + "parent_location": [ + { + "end_col": 36, + "end_line": 15, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC20_decimals/impl.cairo" + }, + "parent_location": [ + { + "end_col": 50, + "end_line": 20, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC20_decimals/impl.cairo" + }, + "start_col": 35, + "start_line": 20 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 30, + "start_line": 15 + }, + "While trying to update the implicit return value 'range_check_ptr' in:" + ], + "start_col": 43, + "start_line": 7 + } + }, + "487": { + "accessible_scopes": [ + "openzeppelin.token.erc20.library", + "openzeppelin.token.erc20.library.ERC20_decimals", + "openzeppelin.token.erc20.library.ERC20_decimals.read" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 33, + "end_line": 16, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC20_decimals/impl.cairo" + }, + "parent_location": [ + { + "end_col": 64, + "end_line": 21, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC20_decimals/impl.cairo" + }, + "start_col": 45, + "start_line": 21 + }, + "While expanding the reference '__storage_var_temp0' in:" + ], + "start_col": 14, + "start_line": 16 + } + }, + "488": { + "accessible_scopes": [ + "openzeppelin.token.erc20.library", + "openzeppelin.token.erc20.library.ERC20_decimals", + "openzeppelin.token.erc20.library.ERC20_decimals.read" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 55, + "end_line": 22, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC20_decimals/impl.cairo" + }, + "start_col": 9, + "start_line": 22 + } + }, + "489": { + "accessible_scopes": [ + "openzeppelin.token.erc20.library", + "openzeppelin.token.erc20.library.ERC20_decimals", + "openzeppelin.token.erc20.library.ERC20_decimals.write" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 62, + "end_line": 25, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC20_decimals/impl.cairo" + }, + "parent_location": [ + { + "end_col": 41, + "end_line": 7, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC20_decimals/decl.cairo" + }, + "parent_location": [ + { + "end_col": 36, + "end_line": 26, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC20_decimals/impl.cairo" + }, + "start_col": 30, + "start_line": 26 + }, + "While trying to retrieve the implicit argument 'pedersen_ptr' in:" + ], + "start_col": 15, + "start_line": 7 + }, + "While expanding the reference 'pedersen_ptr' in:" + ], + "start_col": 36, + "start_line": 25 + } + }, + "490": { + "accessible_scopes": [ + "openzeppelin.token.erc20.library", + "openzeppelin.token.erc20.library.ERC20_decimals", + "openzeppelin.token.erc20.library.ERC20_decimals.write" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 79, + "end_line": 25, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC20_decimals/impl.cairo" + }, + "parent_location": [ + { + "end_col": 58, + "end_line": 7, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC20_decimals/decl.cairo" + }, + "parent_location": [ + { + "end_col": 36, + "end_line": 26, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC20_decimals/impl.cairo" + }, + "start_col": 30, + "start_line": 26 + }, + "While trying to retrieve the implicit argument 'range_check_ptr' in:" + ], + "start_col": 43, + "start_line": 7 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 64, + "start_line": 25 + } + }, + "491": { + "accessible_scopes": [ + "openzeppelin.token.erc20.library", + "openzeppelin.token.erc20.library.ERC20_decimals", + "openzeppelin.token.erc20.library.ERC20_decimals.write" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 36, + "end_line": 26, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC20_decimals/impl.cairo" + }, + "start_col": 30, + "start_line": 26 + } + }, + "493": { + "accessible_scopes": [ + "openzeppelin.token.erc20.library", + "openzeppelin.token.erc20.library.ERC20_decimals", + "openzeppelin.token.erc20.library.ERC20_decimals.write" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 34, + "end_line": 25, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC20_decimals/impl.cairo" + }, + "parent_location": [ + { + "end_col": 38, + "end_line": 370, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/3.9.13/envs/kakarot/lib/python3.9/site-packages/starkware/starknet/common/syscalls.cairo" + }, + "parent_location": [ + { + "end_col": 80, + "end_line": 27, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC20_decimals/impl.cairo" + }, + "start_col": 9, + "start_line": 27 + }, + "While trying to retrieve the implicit argument 'syscall_ptr' in:" + ], + "start_col": 20, + "start_line": 370 + }, + "While expanding the reference 'syscall_ptr' in:" + ], + "start_col": 16, + "start_line": 25 + } + }, + "494": { + "accessible_scopes": [ + "openzeppelin.token.erc20.library", + "openzeppelin.token.erc20.library.ERC20_decimals", + "openzeppelin.token.erc20.library.ERC20_decimals.write" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 26, + "end_line": 26, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC20_decimals/impl.cairo" + }, + "parent_location": [ + { + "end_col": 43, + "end_line": 27, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC20_decimals/impl.cairo" + }, + "start_col": 31, + "start_line": 27 + }, + "While expanding the reference 'storage_addr' in:" + ], + "start_col": 14, + "start_line": 26 + } + }, + "495": { + "accessible_scopes": [ + "openzeppelin.token.erc20.library", + "openzeppelin.token.erc20.library.ERC20_decimals", + "openzeppelin.token.erc20.library.ERC20_decimals.write" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 79, + "end_line": 27, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC20_decimals/impl.cairo" + }, + "start_col": 55, + "start_line": 27 + } + }, + "496": { + "accessible_scopes": [ + "openzeppelin.token.erc20.library", + "openzeppelin.token.erc20.library.ERC20_decimals", + "openzeppelin.token.erc20.library.ERC20_decimals.write" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 80, + "end_line": 27, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC20_decimals/impl.cairo" + }, + "start_col": 9, + "start_line": 27 + } + }, + "498": { + "accessible_scopes": [ + "openzeppelin.token.erc20.library", + "openzeppelin.token.erc20.library.ERC20_decimals", + "openzeppelin.token.erc20.library.ERC20_decimals.write" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 41, + "end_line": 7, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC20_decimals/decl.cairo" + }, + "parent_location": [ + { + "end_col": 36, + "end_line": 26, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC20_decimals/impl.cairo" + }, + "parent_location": [ + { + "end_col": 62, + "end_line": 21, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC20_decimals/decl.cairo" + }, + "parent_location": [ + { + "end_col": 19, + "end_line": 28, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC20_decimals/impl.cairo" + }, + "start_col": 9, + "start_line": 28 + }, + "While trying to retrieve the implicit argument 'pedersen_ptr' in:" + ], + "start_col": 36, + "start_line": 21 + }, + "While expanding the reference 'pedersen_ptr' in:" + ], + "start_col": 30, + "start_line": 26 + }, + "While trying to update the implicit return value 'pedersen_ptr' in:" + ], + "start_col": 15, + "start_line": 7 + } + }, + "499": { + "accessible_scopes": [ + "openzeppelin.token.erc20.library", + "openzeppelin.token.erc20.library.ERC20_decimals", + "openzeppelin.token.erc20.library.ERC20_decimals.write" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 58, + "end_line": 7, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC20_decimals/decl.cairo" + }, + "parent_location": [ + { + "end_col": 36, + "end_line": 26, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC20_decimals/impl.cairo" + }, + "parent_location": [ + { + "end_col": 79, + "end_line": 21, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC20_decimals/decl.cairo" + }, + "parent_location": [ + { + "end_col": 19, + "end_line": 28, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC20_decimals/impl.cairo" + }, + "start_col": 9, + "start_line": 28 + }, + "While trying to retrieve the implicit argument 'range_check_ptr' in:" + ], + "start_col": 64, + "start_line": 21 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 30, + "start_line": 26 + }, + "While trying to update the implicit return value 'range_check_ptr' in:" + ], + "start_col": 43, + "start_line": 7 + } + }, + "500": { + "accessible_scopes": [ + "openzeppelin.token.erc20.library", + "openzeppelin.token.erc20.library.ERC20_decimals", + "openzeppelin.token.erc20.library.ERC20_decimals.write" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 19, + "end_line": 28, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC20_decimals/impl.cairo" + }, + "start_col": 9, + "start_line": 28 + } + }, + "501": { + "accessible_scopes": [ + "openzeppelin.token.erc20.library", + "openzeppelin.token.erc20.library.ERC20_total_supply", + "openzeppelin.token.erc20.library.ERC20_total_supply.addr" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 41, + "end_line": 7, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC20_total_supply/impl.cairo" + }, + "parent_location": [ + { + "end_col": 41, + "end_line": 7, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC20_total_supply/decl.cairo" + }, + "parent_location": [ + { + "end_col": 26, + "end_line": 9, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC20_total_supply/impl.cairo" + }, + "start_col": 9, + "start_line": 9 + }, + "While trying to retrieve the implicit argument 'pedersen_ptr' in:" + ], + "start_col": 15, + "start_line": 7 + }, + "While expanding the reference 'pedersen_ptr' in:" + ], + "start_col": 15, + "start_line": 7 + } + }, + "502": { + "accessible_scopes": [ + "openzeppelin.token.erc20.library", + "openzeppelin.token.erc20.library.ERC20_total_supply", + "openzeppelin.token.erc20.library.ERC20_total_supply.addr" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 58, + "end_line": 7, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC20_total_supply/impl.cairo" + }, + "parent_location": [ + { + "end_col": 58, + "end_line": 7, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC20_total_supply/decl.cairo" + }, + "parent_location": [ + { + "end_col": 26, + "end_line": 9, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC20_total_supply/impl.cairo" + }, + "start_col": 9, + "start_line": 9 + }, + "While trying to retrieve the implicit argument 'range_check_ptr' in:" + ], + "start_col": 43, + "start_line": 7 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 43, + "start_line": 7 + } + }, + "503": { + "accessible_scopes": [ + "openzeppelin.token.erc20.library", + "openzeppelin.token.erc20.library.ERC20_total_supply", + "openzeppelin.token.erc20.library.ERC20_total_supply.addr" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 94, + "end_line": 8, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC20_total_supply/impl.cairo" + }, + "parent_location": [ + { + "end_col": 24, + "end_line": 9, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC20_total_supply/impl.cairo" + }, + "start_col": 21, + "start_line": 9 + }, + "While expanding the reference 'res' in:" + ], + "start_col": 19, + "start_line": 8 + } + }, + "505": { + "accessible_scopes": [ + "openzeppelin.token.erc20.library", + "openzeppelin.token.erc20.library.ERC20_total_supply", + "openzeppelin.token.erc20.library.ERC20_total_supply.addr" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 26, + "end_line": 9, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC20_total_supply/impl.cairo" + }, + "start_col": 9, + "start_line": 9 + } + }, + "506": { + "accessible_scopes": [ + "openzeppelin.token.erc20.library", + "openzeppelin.token.erc20.library.ERC20_total_supply", + "openzeppelin.token.erc20.library.ERC20_total_supply.read" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 61, + "end_line": 12, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC20_total_supply/impl.cairo" + }, + "parent_location": [ + { + "end_col": 41, + "end_line": 7, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC20_total_supply/decl.cairo" + }, + "parent_location": [ + { + "end_col": 36, + "end_line": 15, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC20_total_supply/impl.cairo" + }, + "start_col": 30, + "start_line": 15 + }, + "While trying to retrieve the implicit argument 'pedersen_ptr' in:" + ], + "start_col": 15, + "start_line": 7 + }, + "While expanding the reference 'pedersen_ptr' in:" + ], + "start_col": 35, + "start_line": 12 + } + }, + "507": { + "accessible_scopes": [ + "openzeppelin.token.erc20.library", + "openzeppelin.token.erc20.library.ERC20_total_supply", + "openzeppelin.token.erc20.library.ERC20_total_supply.read" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 78, + "end_line": 12, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC20_total_supply/impl.cairo" + }, + "parent_location": [ + { + "end_col": 58, + "end_line": 7, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC20_total_supply/decl.cairo" + }, + "parent_location": [ + { + "end_col": 36, + "end_line": 15, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC20_total_supply/impl.cairo" + }, + "start_col": 30, + "start_line": 15 + }, + "While trying to retrieve the implicit argument 'range_check_ptr' in:" + ], + "start_col": 43, + "start_line": 7 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 63, + "start_line": 12 + } + }, + "508": { + "accessible_scopes": [ + "openzeppelin.token.erc20.library", + "openzeppelin.token.erc20.library.ERC20_total_supply", + "openzeppelin.token.erc20.library.ERC20_total_supply.read" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 36, + "end_line": 15, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC20_total_supply/impl.cairo" + }, + "start_col": 30, + "start_line": 15 + } + }, + "510": { + "accessible_scopes": [ + "openzeppelin.token.erc20.library", + "openzeppelin.token.erc20.library.ERC20_total_supply", + "openzeppelin.token.erc20.library.ERC20_total_supply.read" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 33, + "end_line": 12, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC20_total_supply/impl.cairo" + }, + "parent_location": [ + { + "end_col": 37, + "end_line": 352, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/3.9.13/envs/kakarot/lib/python3.9/site-packages/starkware/starknet/common/syscalls.cairo" + }, + "parent_location": [ + { + "end_col": 75, + "end_line": 16, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC20_total_supply/impl.cairo" + }, + "start_col": 37, + "start_line": 16 + }, + "While trying to retrieve the implicit argument 'syscall_ptr' in:" + ], + "start_col": 19, + "start_line": 352 + }, + "While expanding the reference 'syscall_ptr' in:" + ], + "start_col": 15, + "start_line": 12 + } + }, + "511": { + "accessible_scopes": [ + "openzeppelin.token.erc20.library", + "openzeppelin.token.erc20.library.ERC20_total_supply", + "openzeppelin.token.erc20.library.ERC20_total_supply.read" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 26, + "end_line": 15, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC20_total_supply/impl.cairo" + }, + "parent_location": [ + { + "end_col": 70, + "end_line": 16, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC20_total_supply/impl.cairo" + }, + "start_col": 58, + "start_line": 16 + }, + "While expanding the reference 'storage_addr' in:" + ], + "start_col": 14, + "start_line": 15 + } + }, + "512": { + "accessible_scopes": [ + "openzeppelin.token.erc20.library", + "openzeppelin.token.erc20.library.ERC20_total_supply", + "openzeppelin.token.erc20.library.ERC20_total_supply.read" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 75, + "end_line": 16, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC20_total_supply/impl.cairo" + }, + "start_col": 37, + "start_line": 16 + } + }, + "514": { + "accessible_scopes": [ + "openzeppelin.token.erc20.library", + "openzeppelin.token.erc20.library.ERC20_total_supply", + "openzeppelin.token.erc20.library.ERC20_total_supply.read" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 37, + "end_line": 352, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/3.9.13/envs/kakarot/lib/python3.9/site-packages/starkware/starknet/common/syscalls.cairo" + }, + "parent_location": [ + { + "end_col": 75, + "end_line": 16, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC20_total_supply/impl.cairo" + }, + "parent_location": [ + { + "end_col": 37, + "end_line": 352, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/3.9.13/envs/kakarot/lib/python3.9/site-packages/starkware/starknet/common/syscalls.cairo" + }, + "parent_location": [ + { + "end_col": 75, + "end_line": 17, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC20_total_supply/impl.cairo" + }, + "start_col": 37, + "start_line": 17 + }, + "While trying to retrieve the implicit argument 'syscall_ptr' in:" + ], + "start_col": 19, + "start_line": 352 + }, + "While expanding the reference 'syscall_ptr' in:" + ], + "start_col": 37, + "start_line": 16 + }, + "While trying to update the implicit return value 'syscall_ptr' in:" + ], + "start_col": 19, + "start_line": 352 + } + }, + "515": { + "accessible_scopes": [ + "openzeppelin.token.erc20.library", + "openzeppelin.token.erc20.library.ERC20_total_supply", + "openzeppelin.token.erc20.library.ERC20_total_supply.read" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 74, + "end_line": 17, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC20_total_supply/impl.cairo" + }, + "start_col": 58, + "start_line": 17 + } + }, + "517": { + "accessible_scopes": [ + "openzeppelin.token.erc20.library", + "openzeppelin.token.erc20.library.ERC20_total_supply", + "openzeppelin.token.erc20.library.ERC20_total_supply.read" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 75, + "end_line": 17, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC20_total_supply/impl.cairo" + }, + "start_col": 37, + "start_line": 17 + } + }, + "519": { + "accessible_scopes": [ + "openzeppelin.token.erc20.library", + "openzeppelin.token.erc20.library.ERC20_total_supply", + "openzeppelin.token.erc20.library.ERC20_total_supply.read" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 37, + "end_line": 352, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/3.9.13/envs/kakarot/lib/python3.9/site-packages/starkware/starknet/common/syscalls.cairo" + }, + "parent_location": [ + { + "end_col": 75, + "end_line": 17, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC20_total_supply/impl.cairo" + }, + "parent_location": [ + { + "end_col": 42, + "end_line": 19, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC20_total_supply/impl.cairo" + }, + "start_col": 31, + "start_line": 19 + }, + "While expanding the reference 'syscall_ptr' in:" + ], + "start_col": 37, + "start_line": 17 + }, + "While trying to update the implicit return value 'syscall_ptr' in:" + ], + "start_col": 19, + "start_line": 352 + } + }, + "520": { + "accessible_scopes": [ + "openzeppelin.token.erc20.library", + "openzeppelin.token.erc20.library.ERC20_total_supply", + "openzeppelin.token.erc20.library.ERC20_total_supply.read" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 41, + "end_line": 7, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC20_total_supply/decl.cairo" + }, + "parent_location": [ + { + "end_col": 36, + "end_line": 15, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC20_total_supply/impl.cairo" + }, + "parent_location": [ + { + "end_col": 44, + "end_line": 20, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC20_total_supply/impl.cairo" + }, + "start_col": 32, + "start_line": 20 + }, + "While expanding the reference 'pedersen_ptr' in:" + ], + "start_col": 30, + "start_line": 15 + }, + "While trying to update the implicit return value 'pedersen_ptr' in:" + ], + "start_col": 15, + "start_line": 7 + } + }, + "521": { + "accessible_scopes": [ + "openzeppelin.token.erc20.library", + "openzeppelin.token.erc20.library.ERC20_total_supply", + "openzeppelin.token.erc20.library.ERC20_total_supply.read" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 58, + "end_line": 7, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC20_total_supply/decl.cairo" + }, + "parent_location": [ + { + "end_col": 36, + "end_line": 15, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC20_total_supply/impl.cairo" + }, + "parent_location": [ + { + "end_col": 50, + "end_line": 21, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC20_total_supply/impl.cairo" + }, + "start_col": 35, + "start_line": 21 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 30, + "start_line": 15 + }, + "While trying to update the implicit return value 'range_check_ptr' in:" + ], + "start_col": 43, + "start_line": 7 + } + }, + "522": { + "accessible_scopes": [ + "openzeppelin.token.erc20.library", + "openzeppelin.token.erc20.library.ERC20_total_supply", + "openzeppelin.token.erc20.library.ERC20_total_supply.read" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 33, + "end_line": 16, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC20_total_supply/impl.cairo" + }, + "parent_location": [ + { + "end_col": 64, + "end_line": 22, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC20_total_supply/impl.cairo" + }, + "start_col": 45, + "start_line": 22 + }, + "While expanding the reference '__storage_var_temp0' in:" + ], + "start_col": 14, + "start_line": 16 + } + }, + "523": { + "accessible_scopes": [ + "openzeppelin.token.erc20.library", + "openzeppelin.token.erc20.library.ERC20_total_supply", + "openzeppelin.token.erc20.library.ERC20_total_supply.read" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 33, + "end_line": 17, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC20_total_supply/impl.cairo" + }, + "parent_location": [ + { + "end_col": 64, + "end_line": 23, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC20_total_supply/impl.cairo" + }, + "start_col": 45, + "start_line": 23 + }, + "While expanding the reference '__storage_var_temp1' in:" + ], + "start_col": 14, + "start_line": 17 + } + }, + "524": { + "accessible_scopes": [ + "openzeppelin.token.erc20.library", + "openzeppelin.token.erc20.library.ERC20_total_supply", + "openzeppelin.token.erc20.library.ERC20_total_supply.read" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 58, + "end_line": 24, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC20_total_supply/impl.cairo" + }, + "start_col": 9, + "start_line": 24 + } + }, + "525": { + "accessible_scopes": [ + "openzeppelin.token.erc20.library", + "openzeppelin.token.erc20.library.ERC20_total_supply", + "openzeppelin.token.erc20.library.ERC20_total_supply.write" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 62, + "end_line": 27, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC20_total_supply/impl.cairo" + }, + "parent_location": [ + { + "end_col": 41, + "end_line": 7, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC20_total_supply/decl.cairo" + }, + "parent_location": [ + { + "end_col": 36, + "end_line": 28, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC20_total_supply/impl.cairo" + }, + "start_col": 30, + "start_line": 28 + }, + "While trying to retrieve the implicit argument 'pedersen_ptr' in:" + ], + "start_col": 15, + "start_line": 7 + }, + "While expanding the reference 'pedersen_ptr' in:" + ], + "start_col": 36, + "start_line": 27 + } + }, + "526": { + "accessible_scopes": [ + "openzeppelin.token.erc20.library", + "openzeppelin.token.erc20.library.ERC20_total_supply", + "openzeppelin.token.erc20.library.ERC20_total_supply.write" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 79, + "end_line": 27, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC20_total_supply/impl.cairo" + }, + "parent_location": [ + { + "end_col": 58, + "end_line": 7, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC20_total_supply/decl.cairo" + }, + "parent_location": [ + { + "end_col": 36, + "end_line": 28, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC20_total_supply/impl.cairo" + }, + "start_col": 30, + "start_line": 28 + }, + "While trying to retrieve the implicit argument 'range_check_ptr' in:" + ], + "start_col": 43, + "start_line": 7 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 64, + "start_line": 27 + } + }, + "527": { + "accessible_scopes": [ + "openzeppelin.token.erc20.library", + "openzeppelin.token.erc20.library.ERC20_total_supply", + "openzeppelin.token.erc20.library.ERC20_total_supply.write" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 36, + "end_line": 28, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC20_total_supply/impl.cairo" + }, + "start_col": 30, + "start_line": 28 + } + }, + "529": { + "accessible_scopes": [ + "openzeppelin.token.erc20.library", + "openzeppelin.token.erc20.library.ERC20_total_supply", + "openzeppelin.token.erc20.library.ERC20_total_supply.write" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 34, + "end_line": 27, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC20_total_supply/impl.cairo" + }, + "parent_location": [ + { + "end_col": 38, + "end_line": 370, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/3.9.13/envs/kakarot/lib/python3.9/site-packages/starkware/starknet/common/syscalls.cairo" + }, + "parent_location": [ + { + "end_col": 80, + "end_line": 29, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC20_total_supply/impl.cairo" + }, + "start_col": 9, + "start_line": 29 + }, + "While trying to retrieve the implicit argument 'syscall_ptr' in:" + ], + "start_col": 20, + "start_line": 370 + }, + "While expanding the reference 'syscall_ptr' in:" + ], + "start_col": 16, + "start_line": 27 + } + }, + "530": { + "accessible_scopes": [ + "openzeppelin.token.erc20.library", + "openzeppelin.token.erc20.library.ERC20_total_supply", + "openzeppelin.token.erc20.library.ERC20_total_supply.write" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 26, + "end_line": 28, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC20_total_supply/impl.cairo" + }, + "parent_location": [ + { + "end_col": 43, + "end_line": 29, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC20_total_supply/impl.cairo" + }, + "start_col": 31, + "start_line": 29 + }, + "While expanding the reference 'storage_addr' in:" + ], + "start_col": 14, + "start_line": 28 + } + }, + "531": { + "accessible_scopes": [ + "openzeppelin.token.erc20.library", + "openzeppelin.token.erc20.library.ERC20_total_supply", + "openzeppelin.token.erc20.library.ERC20_total_supply.write" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 79, + "end_line": 29, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC20_total_supply/impl.cairo" + }, + "start_col": 55, + "start_line": 29 + } + }, + "532": { + "accessible_scopes": [ + "openzeppelin.token.erc20.library", + "openzeppelin.token.erc20.library.ERC20_total_supply", + "openzeppelin.token.erc20.library.ERC20_total_supply.write" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 80, + "end_line": 29, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC20_total_supply/impl.cairo" + }, + "start_col": 9, + "start_line": 29 + } + }, + "534": { + "accessible_scopes": [ + "openzeppelin.token.erc20.library", + "openzeppelin.token.erc20.library.ERC20_total_supply", + "openzeppelin.token.erc20.library.ERC20_total_supply.write" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 47, + "end_line": 30, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC20_total_supply/impl.cairo" + }, + "start_col": 31, + "start_line": 30 + } + }, + "536": { + "accessible_scopes": [ + "openzeppelin.token.erc20.library", + "openzeppelin.token.erc20.library.ERC20_total_supply", + "openzeppelin.token.erc20.library.ERC20_total_supply.write" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 79, + "end_line": 30, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC20_total_supply/impl.cairo" + }, + "start_col": 55, + "start_line": 30 + } + }, + "537": { + "accessible_scopes": [ + "openzeppelin.token.erc20.library", + "openzeppelin.token.erc20.library.ERC20_total_supply", + "openzeppelin.token.erc20.library.ERC20_total_supply.write" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 80, + "end_line": 30, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC20_total_supply/impl.cairo" + }, + "start_col": 9, + "start_line": 30 + } + }, + "539": { + "accessible_scopes": [ + "openzeppelin.token.erc20.library", + "openzeppelin.token.erc20.library.ERC20_total_supply", + "openzeppelin.token.erc20.library.ERC20_total_supply.write" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 41, + "end_line": 7, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC20_total_supply/decl.cairo" + }, + "parent_location": [ + { + "end_col": 36, + "end_line": 28, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC20_total_supply/impl.cairo" + }, + "parent_location": [ + { + "end_col": 62, + "end_line": 21, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC20_total_supply/decl.cairo" + }, + "parent_location": [ + { + "end_col": 19, + "end_line": 31, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC20_total_supply/impl.cairo" + }, + "start_col": 9, + "start_line": 31 + }, + "While trying to retrieve the implicit argument 'pedersen_ptr' in:" + ], + "start_col": 36, + "start_line": 21 + }, + "While expanding the reference 'pedersen_ptr' in:" + ], + "start_col": 30, + "start_line": 28 + }, + "While trying to update the implicit return value 'pedersen_ptr' in:" + ], + "start_col": 15, + "start_line": 7 + } + }, + "540": { + "accessible_scopes": [ + "openzeppelin.token.erc20.library", + "openzeppelin.token.erc20.library.ERC20_total_supply", + "openzeppelin.token.erc20.library.ERC20_total_supply.write" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 58, + "end_line": 7, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC20_total_supply/decl.cairo" + }, + "parent_location": [ + { + "end_col": 36, + "end_line": 28, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC20_total_supply/impl.cairo" + }, + "parent_location": [ + { + "end_col": 79, + "end_line": 21, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC20_total_supply/decl.cairo" + }, + "parent_location": [ + { + "end_col": 19, + "end_line": 31, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC20_total_supply/impl.cairo" + }, + "start_col": 9, + "start_line": 31 + }, + "While trying to retrieve the implicit argument 'range_check_ptr' in:" + ], + "start_col": 64, + "start_line": 21 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 30, + "start_line": 28 + }, + "While trying to update the implicit return value 'range_check_ptr' in:" + ], + "start_col": 43, + "start_line": 7 + } + }, + "541": { + "accessible_scopes": [ + "openzeppelin.token.erc20.library", + "openzeppelin.token.erc20.library.ERC20_total_supply", + "openzeppelin.token.erc20.library.ERC20_total_supply.write" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 19, + "end_line": 31, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC20_total_supply/impl.cairo" + }, + "start_col": 9, + "start_line": 31 + } + }, + "542": { + "accessible_scopes": [ + "openzeppelin.token.erc20.library", + "openzeppelin.token.erc20.library.ERC20_balances", + "openzeppelin.token.erc20.library.ERC20_balances.addr" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 41, + "end_line": 7, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC20_balances/impl.cairo" + }, + "parent_location": [ + { + "end_col": 48, + "end_line": 9, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC20_balances/impl.cairo" + }, + "start_col": 36, + "start_line": 9 + }, + "While expanding the reference 'pedersen_ptr' in:" + ], + "start_col": 15, + "start_line": 7 + } + }, + "543": { + "accessible_scopes": [ + "openzeppelin.token.erc20.library", + "openzeppelin.token.erc20.library.ERC20_balances", + "openzeppelin.token.erc20.library.ERC20_balances.addr" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 95, + "end_line": 8, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC20_balances/impl.cairo" + }, + "parent_location": [ + { + "end_col": 53, + "end_line": 9, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC20_balances/impl.cairo" + }, + "start_col": 50, + "start_line": 9 + }, + "While expanding the reference 'res' in:" + ], + "start_col": 19, + "start_line": 8 + } + }, + "545": { + "accessible_scopes": [ + "openzeppelin.token.erc20.library", + "openzeppelin.token.erc20.library.ERC20_balances", + "openzeppelin.token.erc20.library.ERC20_balances.addr" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 79, + "end_line": 9, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC20_balances/impl.cairo" + }, + "start_col": 55, + "start_line": 9 + } + }, + "546": { + "accessible_scopes": [ + "openzeppelin.token.erc20.library", + "openzeppelin.token.erc20.library.ERC20_balances", + "openzeppelin.token.erc20.library.ERC20_balances.addr" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 80, + "end_line": 9, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC20_balances/impl.cairo" + }, + "start_col": 21, + "start_line": 9 + } + }, + "548": { + "accessible_scopes": [ + "openzeppelin.token.erc20.library", + "openzeppelin.token.erc20.library.ERC20_balances", + "openzeppelin.token.erc20.library.ERC20_balances.addr" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 58, + "end_line": 7, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC20_balances/impl.cairo" + }, + "parent_location": [ + { + "end_col": 39, + "end_line": 12, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/3.9.13/envs/kakarot/lib/python3.9/site-packages/starkware/starknet/common/storage.cairo" + }, + "parent_location": [ + { + "end_col": 48, + "end_line": 10, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC20_balances/impl.cairo" + }, + "start_col": 21, + "start_line": 10 + }, + "While trying to retrieve the implicit argument 'range_check_ptr' in:" + ], + "start_col": 24, + "start_line": 12 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 43, + "start_line": 7 + } + }, + "549": { + "accessible_scopes": [ + "openzeppelin.token.erc20.library", + "openzeppelin.token.erc20.library.ERC20_balances", + "openzeppelin.token.erc20.library.ERC20_balances.addr" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 17, + "end_line": 9, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC20_balances/impl.cairo" + }, + "parent_location": [ + { + "end_col": 47, + "end_line": 10, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC20_balances/impl.cairo" + }, + "start_col": 44, + "start_line": 10 + }, + "While expanding the reference 'res' in:" + ], + "start_col": 14, + "start_line": 9 + } + }, + "550": { + "accessible_scopes": [ + "openzeppelin.token.erc20.library", + "openzeppelin.token.erc20.library.ERC20_balances", + "openzeppelin.token.erc20.library.ERC20_balances.addr" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 48, + "end_line": 10, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC20_balances/impl.cairo" + }, + "start_col": 21, + "start_line": 10 + } + }, + "552": { + "accessible_scopes": [ + "openzeppelin.token.erc20.library", + "openzeppelin.token.erc20.library.ERC20_balances", + "openzeppelin.token.erc20.library.ERC20_balances.addr" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 48, + "end_line": 9, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC20_balances/impl.cairo" + }, + "parent_location": [ + { + "end_col": 41, + "end_line": 7, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC20_balances/decl.cairo" + }, + "parent_location": [ + { + "end_col": 26, + "end_line": 11, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC20_balances/impl.cairo" + }, + "start_col": 9, + "start_line": 11 + }, + "While trying to retrieve the implicit argument 'pedersen_ptr' in:" + ], + "start_col": 15, + "start_line": 7 + }, + "While expanding the reference 'pedersen_ptr' in:" + ], + "start_col": 36, + "start_line": 9 + } + }, + "553": { + "accessible_scopes": [ + "openzeppelin.token.erc20.library", + "openzeppelin.token.erc20.library.ERC20_balances", + "openzeppelin.token.erc20.library.ERC20_balances.addr" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 39, + "end_line": 12, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/3.9.13/envs/kakarot/lib/python3.9/site-packages/starkware/starknet/common/storage.cairo" + }, + "parent_location": [ + { + "end_col": 48, + "end_line": 10, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC20_balances/impl.cairo" + }, + "parent_location": [ + { + "end_col": 58, + "end_line": 7, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC20_balances/decl.cairo" + }, + "parent_location": [ + { + "end_col": 26, + "end_line": 11, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC20_balances/impl.cairo" + }, + "start_col": 9, + "start_line": 11 + }, + "While trying to retrieve the implicit argument 'range_check_ptr' in:" + ], + "start_col": 43, + "start_line": 7 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 21, + "start_line": 10 + }, + "While trying to update the implicit return value 'range_check_ptr' in:" + ], + "start_col": 24, + "start_line": 12 + } + }, + "554": { + "accessible_scopes": [ + "openzeppelin.token.erc20.library", + "openzeppelin.token.erc20.library.ERC20_balances", + "openzeppelin.token.erc20.library.ERC20_balances.addr" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 17, + "end_line": 10, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC20_balances/impl.cairo" + }, + "parent_location": [ + { + "end_col": 24, + "end_line": 11, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC20_balances/impl.cairo" + }, + "start_col": 21, + "start_line": 11 + }, + "While expanding the reference 'res' in:" + ], + "start_col": 14, + "start_line": 10 + } + }, + "555": { + "accessible_scopes": [ + "openzeppelin.token.erc20.library", + "openzeppelin.token.erc20.library.ERC20_balances", + "openzeppelin.token.erc20.library.ERC20_balances.addr" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 26, + "end_line": 11, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC20_balances/impl.cairo" + }, + "start_col": 9, + "start_line": 11 + } + }, + "556": { + "accessible_scopes": [ + "openzeppelin.token.erc20.library", + "openzeppelin.token.erc20.library.ERC20_balances", + "openzeppelin.token.erc20.library.ERC20_balances.read" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 61, + "end_line": 14, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC20_balances/impl.cairo" + }, + "parent_location": [ + { + "end_col": 41, + "end_line": 7, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC20_balances/decl.cairo" + }, + "parent_location": [ + { + "end_col": 43, + "end_line": 17, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC20_balances/impl.cairo" + }, + "start_col": 30, + "start_line": 17 + }, + "While trying to retrieve the implicit argument 'pedersen_ptr' in:" + ], + "start_col": 15, + "start_line": 7 + }, + "While expanding the reference 'pedersen_ptr' in:" + ], + "start_col": 35, + "start_line": 14 + } + }, + "557": { + "accessible_scopes": [ + "openzeppelin.token.erc20.library", + "openzeppelin.token.erc20.library.ERC20_balances", + "openzeppelin.token.erc20.library.ERC20_balances.read" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 78, + "end_line": 14, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC20_balances/impl.cairo" + }, + "parent_location": [ + { + "end_col": 58, + "end_line": 7, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC20_balances/decl.cairo" + }, + "parent_location": [ + { + "end_col": 43, + "end_line": 17, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC20_balances/impl.cairo" + }, + "start_col": 30, + "start_line": 17 + }, + "While trying to retrieve the implicit argument 'range_check_ptr' in:" + ], + "start_col": 43, + "start_line": 7 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 63, + "start_line": 14 + } + }, + "558": { + "accessible_scopes": [ + "openzeppelin.token.erc20.library", + "openzeppelin.token.erc20.library.ERC20_balances", + "openzeppelin.token.erc20.library.ERC20_balances.read" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 93, + "end_line": 14, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC20_balances/impl.cairo" + }, + "parent_location": [ + { + "end_col": 42, + "end_line": 17, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC20_balances/impl.cairo" + }, + "start_col": 35, + "start_line": 17 + }, + "While expanding the reference 'account' in:" + ], + "start_col": 80, + "start_line": 14 + } + }, + "559": { + "accessible_scopes": [ + "openzeppelin.token.erc20.library", + "openzeppelin.token.erc20.library.ERC20_balances", + "openzeppelin.token.erc20.library.ERC20_balances.read" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 43, + "end_line": 17, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC20_balances/impl.cairo" + }, + "start_col": 30, + "start_line": 17 + } + }, + "561": { + "accessible_scopes": [ + "openzeppelin.token.erc20.library", + "openzeppelin.token.erc20.library.ERC20_balances", + "openzeppelin.token.erc20.library.ERC20_balances.read" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 33, + "end_line": 14, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC20_balances/impl.cairo" + }, + "parent_location": [ + { + "end_col": 37, + "end_line": 352, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/3.9.13/envs/kakarot/lib/python3.9/site-packages/starkware/starknet/common/syscalls.cairo" + }, + "parent_location": [ + { + "end_col": 75, + "end_line": 18, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC20_balances/impl.cairo" + }, + "start_col": 37, + "start_line": 18 + }, + "While trying to retrieve the implicit argument 'syscall_ptr' in:" + ], + "start_col": 19, + "start_line": 352 + }, + "While expanding the reference 'syscall_ptr' in:" + ], + "start_col": 15, + "start_line": 14 + } + }, + "562": { + "accessible_scopes": [ + "openzeppelin.token.erc20.library", + "openzeppelin.token.erc20.library.ERC20_balances", + "openzeppelin.token.erc20.library.ERC20_balances.read" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 26, + "end_line": 17, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC20_balances/impl.cairo" + }, + "parent_location": [ + { + "end_col": 70, + "end_line": 18, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC20_balances/impl.cairo" + }, + "start_col": 58, + "start_line": 18 + }, + "While expanding the reference 'storage_addr' in:" + ], + "start_col": 14, + "start_line": 17 + } + }, + "563": { + "accessible_scopes": [ + "openzeppelin.token.erc20.library", + "openzeppelin.token.erc20.library.ERC20_balances", + "openzeppelin.token.erc20.library.ERC20_balances.read" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 75, + "end_line": 18, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC20_balances/impl.cairo" + }, + "start_col": 37, + "start_line": 18 + } + }, + "565": { + "accessible_scopes": [ + "openzeppelin.token.erc20.library", + "openzeppelin.token.erc20.library.ERC20_balances", + "openzeppelin.token.erc20.library.ERC20_balances.read" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 37, + "end_line": 352, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/3.9.13/envs/kakarot/lib/python3.9/site-packages/starkware/starknet/common/syscalls.cairo" + }, + "parent_location": [ + { + "end_col": 75, + "end_line": 18, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC20_balances/impl.cairo" + }, + "parent_location": [ + { + "end_col": 37, + "end_line": 352, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/3.9.13/envs/kakarot/lib/python3.9/site-packages/starkware/starknet/common/syscalls.cairo" + }, + "parent_location": [ + { + "end_col": 75, + "end_line": 19, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC20_balances/impl.cairo" + }, + "start_col": 37, + "start_line": 19 + }, + "While trying to retrieve the implicit argument 'syscall_ptr' in:" + ], + "start_col": 19, + "start_line": 352 + }, + "While expanding the reference 'syscall_ptr' in:" + ], + "start_col": 37, + "start_line": 18 + }, + "While trying to update the implicit return value 'syscall_ptr' in:" + ], + "start_col": 19, + "start_line": 352 + } + }, + "566": { + "accessible_scopes": [ + "openzeppelin.token.erc20.library", + "openzeppelin.token.erc20.library.ERC20_balances", + "openzeppelin.token.erc20.library.ERC20_balances.read" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 74, + "end_line": 19, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC20_balances/impl.cairo" + }, + "start_col": 58, + "start_line": 19 + } + }, + "568": { + "accessible_scopes": [ + "openzeppelin.token.erc20.library", + "openzeppelin.token.erc20.library.ERC20_balances", + "openzeppelin.token.erc20.library.ERC20_balances.read" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 75, + "end_line": 19, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC20_balances/impl.cairo" + }, + "start_col": 37, + "start_line": 19 + } + }, + "570": { + "accessible_scopes": [ + "openzeppelin.token.erc20.library", + "openzeppelin.token.erc20.library.ERC20_balances", + "openzeppelin.token.erc20.library.ERC20_balances.read" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 37, + "end_line": 352, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/3.9.13/envs/kakarot/lib/python3.9/site-packages/starkware/starknet/common/syscalls.cairo" + }, + "parent_location": [ + { + "end_col": 75, + "end_line": 19, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC20_balances/impl.cairo" + }, + "parent_location": [ + { + "end_col": 42, + "end_line": 21, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC20_balances/impl.cairo" + }, + "start_col": 31, + "start_line": 21 + }, + "While expanding the reference 'syscall_ptr' in:" + ], + "start_col": 37, + "start_line": 19 + }, + "While trying to update the implicit return value 'syscall_ptr' in:" + ], + "start_col": 19, + "start_line": 352 + } + }, + "571": { + "accessible_scopes": [ + "openzeppelin.token.erc20.library", + "openzeppelin.token.erc20.library.ERC20_balances", + "openzeppelin.token.erc20.library.ERC20_balances.read" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 41, + "end_line": 7, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC20_balances/decl.cairo" + }, + "parent_location": [ + { + "end_col": 43, + "end_line": 17, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC20_balances/impl.cairo" + }, + "parent_location": [ + { + "end_col": 44, + "end_line": 22, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC20_balances/impl.cairo" + }, + "start_col": 32, + "start_line": 22 + }, + "While expanding the reference 'pedersen_ptr' in:" + ], + "start_col": 30, + "start_line": 17 + }, + "While trying to update the implicit return value 'pedersen_ptr' in:" + ], + "start_col": 15, + "start_line": 7 + } + }, + "572": { + "accessible_scopes": [ + "openzeppelin.token.erc20.library", + "openzeppelin.token.erc20.library.ERC20_balances", + "openzeppelin.token.erc20.library.ERC20_balances.read" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 58, + "end_line": 7, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC20_balances/decl.cairo" + }, + "parent_location": [ + { + "end_col": 43, + "end_line": 17, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC20_balances/impl.cairo" + }, + "parent_location": [ + { + "end_col": 50, + "end_line": 23, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC20_balances/impl.cairo" + }, + "start_col": 35, + "start_line": 23 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 30, + "start_line": 17 + }, + "While trying to update the implicit return value 'range_check_ptr' in:" + ], + "start_col": 43, + "start_line": 7 + } + }, + "573": { + "accessible_scopes": [ + "openzeppelin.token.erc20.library", + "openzeppelin.token.erc20.library.ERC20_balances", + "openzeppelin.token.erc20.library.ERC20_balances.read" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 33, + "end_line": 18, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC20_balances/impl.cairo" + }, + "parent_location": [ + { + "end_col": 64, + "end_line": 24, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC20_balances/impl.cairo" + }, + "start_col": 45, + "start_line": 24 + }, + "While expanding the reference '__storage_var_temp0' in:" + ], + "start_col": 14, + "start_line": 18 + } + }, + "574": { + "accessible_scopes": [ + "openzeppelin.token.erc20.library", + "openzeppelin.token.erc20.library.ERC20_balances", + "openzeppelin.token.erc20.library.ERC20_balances.read" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 33, + "end_line": 19, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC20_balances/impl.cairo" + }, + "parent_location": [ + { + "end_col": 64, + "end_line": 25, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC20_balances/impl.cairo" + }, + "start_col": 45, + "start_line": 25 + }, + "While expanding the reference '__storage_var_temp1' in:" + ], + "start_col": 14, + "start_line": 19 + } + }, + "575": { + "accessible_scopes": [ + "openzeppelin.token.erc20.library", + "openzeppelin.token.erc20.library.ERC20_balances", + "openzeppelin.token.erc20.library.ERC20_balances.read" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 58, + "end_line": 26, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC20_balances/impl.cairo" + }, + "start_col": 9, + "start_line": 26 + } + }, + "576": { + "accessible_scopes": [ + "openzeppelin.token.erc20.library", + "openzeppelin.token.erc20.library.ERC20_balances", + "openzeppelin.token.erc20.library.ERC20_balances.write" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 62, + "end_line": 29, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC20_balances/impl.cairo" + }, + "parent_location": [ + { + "end_col": 41, + "end_line": 7, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC20_balances/decl.cairo" + }, + "parent_location": [ + { + "end_col": 43, + "end_line": 32, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC20_balances/impl.cairo" + }, + "start_col": 30, + "start_line": 32 + }, + "While trying to retrieve the implicit argument 'pedersen_ptr' in:" + ], + "start_col": 15, + "start_line": 7 + }, + "While expanding the reference 'pedersen_ptr' in:" + ], + "start_col": 36, + "start_line": 29 + } + }, + "577": { + "accessible_scopes": [ + "openzeppelin.token.erc20.library", + "openzeppelin.token.erc20.library.ERC20_balances", + "openzeppelin.token.erc20.library.ERC20_balances.write" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 79, + "end_line": 29, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC20_balances/impl.cairo" + }, + "parent_location": [ + { + "end_col": 58, + "end_line": 7, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC20_balances/decl.cairo" + }, + "parent_location": [ + { + "end_col": 43, + "end_line": 32, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC20_balances/impl.cairo" + }, + "start_col": 30, + "start_line": 32 + }, + "While trying to retrieve the implicit argument 'range_check_ptr' in:" + ], + "start_col": 43, + "start_line": 7 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 64, + "start_line": 29 + } + }, + "578": { + "accessible_scopes": [ + "openzeppelin.token.erc20.library", + "openzeppelin.token.erc20.library.ERC20_balances", + "openzeppelin.token.erc20.library.ERC20_balances.write" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 22, + "end_line": 30, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC20_balances/impl.cairo" + }, + "parent_location": [ + { + "end_col": 42, + "end_line": 32, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC20_balances/impl.cairo" + }, + "start_col": 35, + "start_line": 32 + }, + "While expanding the reference 'account' in:" + ], + "start_col": 9, + "start_line": 30 + } + }, + "579": { + "accessible_scopes": [ + "openzeppelin.token.erc20.library", + "openzeppelin.token.erc20.library.ERC20_balances", + "openzeppelin.token.erc20.library.ERC20_balances.write" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 43, + "end_line": 32, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC20_balances/impl.cairo" + }, + "start_col": 30, + "start_line": 32 + } + }, + "581": { + "accessible_scopes": [ + "openzeppelin.token.erc20.library", + "openzeppelin.token.erc20.library.ERC20_balances", + "openzeppelin.token.erc20.library.ERC20_balances.write" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 34, + "end_line": 29, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC20_balances/impl.cairo" + }, + "parent_location": [ + { + "end_col": 38, + "end_line": 370, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/3.9.13/envs/kakarot/lib/python3.9/site-packages/starkware/starknet/common/syscalls.cairo" + }, + "parent_location": [ + { + "end_col": 80, + "end_line": 33, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC20_balances/impl.cairo" + }, + "start_col": 9, + "start_line": 33 + }, + "While trying to retrieve the implicit argument 'syscall_ptr' in:" + ], + "start_col": 20, + "start_line": 370 + }, + "While expanding the reference 'syscall_ptr' in:" + ], + "start_col": 16, + "start_line": 29 + } + }, + "582": { + "accessible_scopes": [ + "openzeppelin.token.erc20.library", + "openzeppelin.token.erc20.library.ERC20_balances", + "openzeppelin.token.erc20.library.ERC20_balances.write" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 26, + "end_line": 32, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC20_balances/impl.cairo" + }, + "parent_location": [ + { + "end_col": 43, + "end_line": 33, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC20_balances/impl.cairo" + }, + "start_col": 31, + "start_line": 33 + }, + "While expanding the reference 'storage_addr' in:" + ], + "start_col": 14, + "start_line": 32 + } + }, + "583": { + "accessible_scopes": [ + "openzeppelin.token.erc20.library", + "openzeppelin.token.erc20.library.ERC20_balances", + "openzeppelin.token.erc20.library.ERC20_balances.write" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 79, + "end_line": 33, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC20_balances/impl.cairo" + }, + "start_col": 55, + "start_line": 33 + } + }, + "584": { + "accessible_scopes": [ + "openzeppelin.token.erc20.library", + "openzeppelin.token.erc20.library.ERC20_balances", + "openzeppelin.token.erc20.library.ERC20_balances.write" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 80, + "end_line": 33, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC20_balances/impl.cairo" + }, + "start_col": 9, + "start_line": 33 + } + }, + "586": { + "accessible_scopes": [ + "openzeppelin.token.erc20.library", + "openzeppelin.token.erc20.library.ERC20_balances", + "openzeppelin.token.erc20.library.ERC20_balances.write" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 47, + "end_line": 34, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC20_balances/impl.cairo" + }, + "start_col": 31, + "start_line": 34 + } + }, + "588": { + "accessible_scopes": [ + "openzeppelin.token.erc20.library", + "openzeppelin.token.erc20.library.ERC20_balances", + "openzeppelin.token.erc20.library.ERC20_balances.write" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 79, + "end_line": 34, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC20_balances/impl.cairo" + }, + "start_col": 55, + "start_line": 34 + } + }, + "589": { + "accessible_scopes": [ + "openzeppelin.token.erc20.library", + "openzeppelin.token.erc20.library.ERC20_balances", + "openzeppelin.token.erc20.library.ERC20_balances.write" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 80, + "end_line": 34, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC20_balances/impl.cairo" + }, + "start_col": 9, + "start_line": 34 + } + }, + "591": { + "accessible_scopes": [ + "openzeppelin.token.erc20.library", + "openzeppelin.token.erc20.library.ERC20_balances", + "openzeppelin.token.erc20.library.ERC20_balances.write" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 41, + "end_line": 7, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC20_balances/decl.cairo" + }, + "parent_location": [ + { + "end_col": 43, + "end_line": 32, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC20_balances/impl.cairo" + }, + "parent_location": [ + { + "end_col": 62, + "end_line": 21, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC20_balances/decl.cairo" + }, + "parent_location": [ + { + "end_col": 19, + "end_line": 35, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC20_balances/impl.cairo" + }, + "start_col": 9, + "start_line": 35 + }, + "While trying to retrieve the implicit argument 'pedersen_ptr' in:" + ], + "start_col": 36, + "start_line": 21 + }, + "While expanding the reference 'pedersen_ptr' in:" + ], + "start_col": 30, + "start_line": 32 + }, + "While trying to update the implicit return value 'pedersen_ptr' in:" + ], + "start_col": 15, + "start_line": 7 + } + }, + "592": { + "accessible_scopes": [ + "openzeppelin.token.erc20.library", + "openzeppelin.token.erc20.library.ERC20_balances", + "openzeppelin.token.erc20.library.ERC20_balances.write" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 58, + "end_line": 7, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC20_balances/decl.cairo" + }, + "parent_location": [ + { + "end_col": 43, + "end_line": 32, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC20_balances/impl.cairo" + }, + "parent_location": [ + { + "end_col": 79, + "end_line": 21, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC20_balances/decl.cairo" + }, + "parent_location": [ + { + "end_col": 19, + "end_line": 35, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC20_balances/impl.cairo" + }, + "start_col": 9, + "start_line": 35 + }, + "While trying to retrieve the implicit argument 'range_check_ptr' in:" + ], + "start_col": 64, + "start_line": 21 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 30, + "start_line": 32 + }, + "While trying to update the implicit return value 'range_check_ptr' in:" + ], + "start_col": 43, + "start_line": 7 + } + }, + "593": { + "accessible_scopes": [ + "openzeppelin.token.erc20.library", + "openzeppelin.token.erc20.library.ERC20_balances", + "openzeppelin.token.erc20.library.ERC20_balances.write" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 19, + "end_line": 35, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC20_balances/impl.cairo" + }, + "start_col": 9, + "start_line": 35 + } + }, + "594": { + "accessible_scopes": [ + "openzeppelin.token.erc20.library", + "openzeppelin.token.erc20.library.ERC20_allowances", + "openzeppelin.token.erc20.library.ERC20_allowances.addr" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 41, + "end_line": 7, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC20_allowances/impl.cairo" + }, + "parent_location": [ + { + "end_col": 48, + "end_line": 11, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC20_allowances/impl.cairo" + }, + "start_col": 36, + "start_line": 11 + }, + "While expanding the reference 'pedersen_ptr' in:" + ], + "start_col": 15, + "start_line": 7 + } + }, + "595": { + "accessible_scopes": [ + "openzeppelin.token.erc20.library", + "openzeppelin.token.erc20.library.ERC20_allowances", + "openzeppelin.token.erc20.library.ERC20_allowances.addr" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 95, + "end_line": 10, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC20_allowances/impl.cairo" + }, + "parent_location": [ + { + "end_col": 53, + "end_line": 11, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC20_allowances/impl.cairo" + }, + "start_col": 50, + "start_line": 11 + }, + "While expanding the reference 'res' in:" + ], + "start_col": 19, + "start_line": 10 + } + }, + "597": { + "accessible_scopes": [ + "openzeppelin.token.erc20.library", + "openzeppelin.token.erc20.library.ERC20_allowances", + "openzeppelin.token.erc20.library.ERC20_allowances.addr" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 77, + "end_line": 11, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC20_allowances/impl.cairo" + }, + "start_col": 55, + "start_line": 11 + } + }, + "598": { + "accessible_scopes": [ + "openzeppelin.token.erc20.library", + "openzeppelin.token.erc20.library.ERC20_allowances", + "openzeppelin.token.erc20.library.ERC20_allowances.addr" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 78, + "end_line": 11, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC20_allowances/impl.cairo" + }, + "start_col": 21, + "start_line": 11 + } + }, + "600": { + "accessible_scopes": [ + "openzeppelin.token.erc20.library", + "openzeppelin.token.erc20.library.ERC20_allowances", + "openzeppelin.token.erc20.library.ERC20_allowances.addr" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 79, + "end_line": 12, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC20_allowances/impl.cairo" + }, + "start_col": 55, + "start_line": 12 + } + }, + "601": { + "accessible_scopes": [ + "openzeppelin.token.erc20.library", + "openzeppelin.token.erc20.library.ERC20_allowances", + "openzeppelin.token.erc20.library.ERC20_allowances.addr" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 80, + "end_line": 12, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC20_allowances/impl.cairo" + }, + "start_col": 21, + "start_line": 12 + } + }, + "603": { + "accessible_scopes": [ + "openzeppelin.token.erc20.library", + "openzeppelin.token.erc20.library.ERC20_allowances", + "openzeppelin.token.erc20.library.ERC20_allowances.addr" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 58, + "end_line": 7, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC20_allowances/impl.cairo" + }, + "parent_location": [ + { + "end_col": 39, + "end_line": 12, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/3.9.13/envs/kakarot/lib/python3.9/site-packages/starkware/starknet/common/storage.cairo" + }, + "parent_location": [ + { + "end_col": 48, + "end_line": 13, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC20_allowances/impl.cairo" + }, + "start_col": 21, + "start_line": 13 + }, + "While trying to retrieve the implicit argument 'range_check_ptr' in:" + ], + "start_col": 24, + "start_line": 12 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 43, + "start_line": 7 + } + }, + "604": { + "accessible_scopes": [ + "openzeppelin.token.erc20.library", + "openzeppelin.token.erc20.library.ERC20_allowances", + "openzeppelin.token.erc20.library.ERC20_allowances.addr" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 17, + "end_line": 12, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC20_allowances/impl.cairo" + }, + "parent_location": [ + { + "end_col": 47, + "end_line": 13, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC20_allowances/impl.cairo" + }, + "start_col": 44, + "start_line": 13 + }, + "While expanding the reference 'res' in:" + ], + "start_col": 14, + "start_line": 12 + } + }, + "605": { + "accessible_scopes": [ + "openzeppelin.token.erc20.library", + "openzeppelin.token.erc20.library.ERC20_allowances", + "openzeppelin.token.erc20.library.ERC20_allowances.addr" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 48, + "end_line": 13, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC20_allowances/impl.cairo" + }, + "start_col": 21, + "start_line": 13 + } + }, + "607": { + "accessible_scopes": [ + "openzeppelin.token.erc20.library", + "openzeppelin.token.erc20.library.ERC20_allowances", + "openzeppelin.token.erc20.library.ERC20_allowances.addr" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 48, + "end_line": 12, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC20_allowances/impl.cairo" + }, + "parent_location": [ + { + "end_col": 41, + "end_line": 7, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC20_allowances/decl.cairo" + }, + "parent_location": [ + { + "end_col": 26, + "end_line": 14, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC20_allowances/impl.cairo" + }, + "start_col": 9, + "start_line": 14 + }, + "While trying to retrieve the implicit argument 'pedersen_ptr' in:" + ], + "start_col": 15, + "start_line": 7 + }, + "While expanding the reference 'pedersen_ptr' in:" + ], + "start_col": 36, + "start_line": 12 + } + }, + "608": { + "accessible_scopes": [ + "openzeppelin.token.erc20.library", + "openzeppelin.token.erc20.library.ERC20_allowances", + "openzeppelin.token.erc20.library.ERC20_allowances.addr" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 39, + "end_line": 12, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/3.9.13/envs/kakarot/lib/python3.9/site-packages/starkware/starknet/common/storage.cairo" + }, + "parent_location": [ + { + "end_col": 48, + "end_line": 13, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC20_allowances/impl.cairo" + }, + "parent_location": [ + { + "end_col": 58, + "end_line": 7, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC20_allowances/decl.cairo" + }, + "parent_location": [ + { + "end_col": 26, + "end_line": 14, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC20_allowances/impl.cairo" + }, + "start_col": 9, + "start_line": 14 + }, + "While trying to retrieve the implicit argument 'range_check_ptr' in:" + ], + "start_col": 43, + "start_line": 7 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 21, + "start_line": 13 + }, + "While trying to update the implicit return value 'range_check_ptr' in:" + ], + "start_col": 24, + "start_line": 12 + } + }, + "609": { + "accessible_scopes": [ + "openzeppelin.token.erc20.library", + "openzeppelin.token.erc20.library.ERC20_allowances", + "openzeppelin.token.erc20.library.ERC20_allowances.addr" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 17, + "end_line": 13, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC20_allowances/impl.cairo" + }, + "parent_location": [ + { + "end_col": 24, + "end_line": 14, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC20_allowances/impl.cairo" + }, + "start_col": 21, + "start_line": 14 + }, + "While expanding the reference 'res' in:" + ], + "start_col": 14, + "start_line": 13 + } + }, + "610": { + "accessible_scopes": [ + "openzeppelin.token.erc20.library", + "openzeppelin.token.erc20.library.ERC20_allowances", + "openzeppelin.token.erc20.library.ERC20_allowances.addr" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 26, + "end_line": 14, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC20_allowances/impl.cairo" + }, + "start_col": 9, + "start_line": 14 + } + }, + "611": { + "accessible_scopes": [ + "openzeppelin.token.erc20.library", + "openzeppelin.token.erc20.library.ERC20_allowances", + "openzeppelin.token.erc20.library.ERC20_allowances.read" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 61, + "end_line": 17, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC20_allowances/impl.cairo" + }, + "parent_location": [ + { + "end_col": 41, + "end_line": 7, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC20_allowances/decl.cairo" + }, + "parent_location": [ + { + "end_col": 50, + "end_line": 20, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC20_allowances/impl.cairo" + }, + "start_col": 30, + "start_line": 20 + }, + "While trying to retrieve the implicit argument 'pedersen_ptr' in:" + ], + "start_col": 15, + "start_line": 7 + }, + "While expanding the reference 'pedersen_ptr' in:" + ], + "start_col": 35, + "start_line": 17 + } + }, + "612": { + "accessible_scopes": [ + "openzeppelin.token.erc20.library", + "openzeppelin.token.erc20.library.ERC20_allowances", + "openzeppelin.token.erc20.library.ERC20_allowances.read" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 78, + "end_line": 17, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC20_allowances/impl.cairo" + }, + "parent_location": [ + { + "end_col": 58, + "end_line": 7, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC20_allowances/decl.cairo" + }, + "parent_location": [ + { + "end_col": 50, + "end_line": 20, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC20_allowances/impl.cairo" + }, + "start_col": 30, + "start_line": 20 + }, + "While trying to retrieve the implicit argument 'range_check_ptr' in:" + ], + "start_col": 43, + "start_line": 7 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 63, + "start_line": 17 + } + }, + "613": { + "accessible_scopes": [ + "openzeppelin.token.erc20.library", + "openzeppelin.token.erc20.library.ERC20_allowances", + "openzeppelin.token.erc20.library.ERC20_allowances.read" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 20, + "end_line": 18, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC20_allowances/impl.cairo" + }, + "parent_location": [ + { + "end_col": 40, + "end_line": 20, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC20_allowances/impl.cairo" + }, + "start_col": 35, + "start_line": 20 + }, + "While expanding the reference 'owner' in:" + ], + "start_col": 9, + "start_line": 18 + } + }, + "614": { + "accessible_scopes": [ + "openzeppelin.token.erc20.library", + "openzeppelin.token.erc20.library.ERC20_allowances", + "openzeppelin.token.erc20.library.ERC20_allowances.read" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 35, + "end_line": 18, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC20_allowances/impl.cairo" + }, + "parent_location": [ + { + "end_col": 49, + "end_line": 20, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC20_allowances/impl.cairo" + }, + "start_col": 42, + "start_line": 20 + }, + "While expanding the reference 'spender' in:" + ], + "start_col": 22, + "start_line": 18 + } + }, + "615": { + "accessible_scopes": [ + "openzeppelin.token.erc20.library", + "openzeppelin.token.erc20.library.ERC20_allowances", + "openzeppelin.token.erc20.library.ERC20_allowances.read" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 50, + "end_line": 20, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC20_allowances/impl.cairo" + }, + "start_col": 30, + "start_line": 20 + } + }, + "617": { + "accessible_scopes": [ + "openzeppelin.token.erc20.library", + "openzeppelin.token.erc20.library.ERC20_allowances", + "openzeppelin.token.erc20.library.ERC20_allowances.read" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 33, + "end_line": 17, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC20_allowances/impl.cairo" + }, + "parent_location": [ + { + "end_col": 37, + "end_line": 352, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/3.9.13/envs/kakarot/lib/python3.9/site-packages/starkware/starknet/common/syscalls.cairo" + }, + "parent_location": [ + { + "end_col": 75, + "end_line": 21, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC20_allowances/impl.cairo" + }, + "start_col": 37, + "start_line": 21 + }, + "While trying to retrieve the implicit argument 'syscall_ptr' in:" + ], + "start_col": 19, + "start_line": 352 + }, + "While expanding the reference 'syscall_ptr' in:" + ], + "start_col": 15, + "start_line": 17 + } + }, + "618": { + "accessible_scopes": [ + "openzeppelin.token.erc20.library", + "openzeppelin.token.erc20.library.ERC20_allowances", + "openzeppelin.token.erc20.library.ERC20_allowances.read" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 26, + "end_line": 20, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC20_allowances/impl.cairo" + }, + "parent_location": [ + { + "end_col": 70, + "end_line": 21, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC20_allowances/impl.cairo" + }, + "start_col": 58, + "start_line": 21 + }, + "While expanding the reference 'storage_addr' in:" + ], + "start_col": 14, + "start_line": 20 + } + }, + "619": { + "accessible_scopes": [ + "openzeppelin.token.erc20.library", + "openzeppelin.token.erc20.library.ERC20_allowances", + "openzeppelin.token.erc20.library.ERC20_allowances.read" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 75, + "end_line": 21, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC20_allowances/impl.cairo" + }, + "start_col": 37, + "start_line": 21 + } + }, + "621": { + "accessible_scopes": [ + "openzeppelin.token.erc20.library", + "openzeppelin.token.erc20.library.ERC20_allowances", + "openzeppelin.token.erc20.library.ERC20_allowances.read" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 37, + "end_line": 352, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/3.9.13/envs/kakarot/lib/python3.9/site-packages/starkware/starknet/common/syscalls.cairo" + }, + "parent_location": [ + { + "end_col": 75, + "end_line": 21, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC20_allowances/impl.cairo" + }, + "parent_location": [ + { + "end_col": 37, + "end_line": 352, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/3.9.13/envs/kakarot/lib/python3.9/site-packages/starkware/starknet/common/syscalls.cairo" + }, + "parent_location": [ + { + "end_col": 75, + "end_line": 22, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC20_allowances/impl.cairo" + }, + "start_col": 37, + "start_line": 22 + }, + "While trying to retrieve the implicit argument 'syscall_ptr' in:" + ], + "start_col": 19, + "start_line": 352 + }, + "While expanding the reference 'syscall_ptr' in:" + ], + "start_col": 37, + "start_line": 21 + }, + "While trying to update the implicit return value 'syscall_ptr' in:" + ], + "start_col": 19, + "start_line": 352 + } + }, + "622": { + "accessible_scopes": [ + "openzeppelin.token.erc20.library", + "openzeppelin.token.erc20.library.ERC20_allowances", + "openzeppelin.token.erc20.library.ERC20_allowances.read" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 74, + "end_line": 22, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC20_allowances/impl.cairo" + }, + "start_col": 58, + "start_line": 22 + } + }, + "624": { + "accessible_scopes": [ + "openzeppelin.token.erc20.library", + "openzeppelin.token.erc20.library.ERC20_allowances", + "openzeppelin.token.erc20.library.ERC20_allowances.read" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 75, + "end_line": 22, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC20_allowances/impl.cairo" + }, + "start_col": 37, + "start_line": 22 + } + }, + "626": { + "accessible_scopes": [ + "openzeppelin.token.erc20.library", + "openzeppelin.token.erc20.library.ERC20_allowances", + "openzeppelin.token.erc20.library.ERC20_allowances.read" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 37, + "end_line": 352, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/3.9.13/envs/kakarot/lib/python3.9/site-packages/starkware/starknet/common/syscalls.cairo" + }, + "parent_location": [ + { + "end_col": 75, + "end_line": 22, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC20_allowances/impl.cairo" + }, + "parent_location": [ + { + "end_col": 42, + "end_line": 24, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC20_allowances/impl.cairo" + }, + "start_col": 31, + "start_line": 24 + }, + "While expanding the reference 'syscall_ptr' in:" + ], + "start_col": 37, + "start_line": 22 + }, + "While trying to update the implicit return value 'syscall_ptr' in:" + ], + "start_col": 19, + "start_line": 352 + } + }, + "627": { + "accessible_scopes": [ + "openzeppelin.token.erc20.library", + "openzeppelin.token.erc20.library.ERC20_allowances", + "openzeppelin.token.erc20.library.ERC20_allowances.read" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 41, + "end_line": 7, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC20_allowances/decl.cairo" + }, + "parent_location": [ + { + "end_col": 50, + "end_line": 20, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC20_allowances/impl.cairo" + }, + "parent_location": [ + { + "end_col": 44, + "end_line": 25, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC20_allowances/impl.cairo" + }, + "start_col": 32, + "start_line": 25 + }, + "While expanding the reference 'pedersen_ptr' in:" + ], + "start_col": 30, + "start_line": 20 + }, + "While trying to update the implicit return value 'pedersen_ptr' in:" + ], + "start_col": 15, + "start_line": 7 + } + }, + "628": { + "accessible_scopes": [ + "openzeppelin.token.erc20.library", + "openzeppelin.token.erc20.library.ERC20_allowances", + "openzeppelin.token.erc20.library.ERC20_allowances.read" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 58, + "end_line": 7, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC20_allowances/decl.cairo" + }, + "parent_location": [ + { + "end_col": 50, + "end_line": 20, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC20_allowances/impl.cairo" + }, + "parent_location": [ + { + "end_col": 50, + "end_line": 26, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC20_allowances/impl.cairo" + }, + "start_col": 35, + "start_line": 26 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 30, + "start_line": 20 + }, + "While trying to update the implicit return value 'range_check_ptr' in:" + ], + "start_col": 43, + "start_line": 7 + } + }, + "629": { + "accessible_scopes": [ + "openzeppelin.token.erc20.library", + "openzeppelin.token.erc20.library.ERC20_allowances", + "openzeppelin.token.erc20.library.ERC20_allowances.read" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 33, + "end_line": 21, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC20_allowances/impl.cairo" + }, + "parent_location": [ + { + "end_col": 64, + "end_line": 27, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC20_allowances/impl.cairo" + }, + "start_col": 45, + "start_line": 27 + }, + "While expanding the reference '__storage_var_temp0' in:" + ], + "start_col": 14, + "start_line": 21 + } + }, + "630": { + "accessible_scopes": [ + "openzeppelin.token.erc20.library", + "openzeppelin.token.erc20.library.ERC20_allowances", + "openzeppelin.token.erc20.library.ERC20_allowances.read" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 33, + "end_line": 22, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC20_allowances/impl.cairo" + }, + "parent_location": [ + { + "end_col": 64, + "end_line": 28, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC20_allowances/impl.cairo" + }, + "start_col": 45, + "start_line": 28 + }, + "While expanding the reference '__storage_var_temp1' in:" + ], + "start_col": 14, + "start_line": 22 + } + }, + "631": { + "accessible_scopes": [ + "openzeppelin.token.erc20.library", + "openzeppelin.token.erc20.library.ERC20_allowances", + "openzeppelin.token.erc20.library.ERC20_allowances.read" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 58, + "end_line": 29, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC20_allowances/impl.cairo" + }, + "start_col": 9, + "start_line": 29 + } + }, + "632": { + "accessible_scopes": [ + "openzeppelin.token.erc20.library", + "openzeppelin.token.erc20.library.ERC20_allowances", + "openzeppelin.token.erc20.library.ERC20_allowances.write" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 62, + "end_line": 32, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC20_allowances/impl.cairo" + }, + "parent_location": [ + { + "end_col": 41, + "end_line": 7, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC20_allowances/decl.cairo" + }, + "parent_location": [ + { + "end_col": 50, + "end_line": 35, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC20_allowances/impl.cairo" + }, + "start_col": 30, + "start_line": 35 + }, + "While trying to retrieve the implicit argument 'pedersen_ptr' in:" + ], + "start_col": 15, + "start_line": 7 + }, + "While expanding the reference 'pedersen_ptr' in:" + ], + "start_col": 36, + "start_line": 32 + } + }, + "633": { + "accessible_scopes": [ + "openzeppelin.token.erc20.library", + "openzeppelin.token.erc20.library.ERC20_allowances", + "openzeppelin.token.erc20.library.ERC20_allowances.write" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 79, + "end_line": 32, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC20_allowances/impl.cairo" + }, + "parent_location": [ + { + "end_col": 58, + "end_line": 7, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC20_allowances/decl.cairo" + }, + "parent_location": [ + { + "end_col": 50, + "end_line": 35, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC20_allowances/impl.cairo" + }, + "start_col": 30, + "start_line": 35 + }, + "While trying to retrieve the implicit argument 'range_check_ptr' in:" + ], + "start_col": 43, + "start_line": 7 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 64, + "start_line": 32 + } + }, + "634": { + "accessible_scopes": [ + "openzeppelin.token.erc20.library", + "openzeppelin.token.erc20.library.ERC20_allowances", + "openzeppelin.token.erc20.library.ERC20_allowances.write" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 20, + "end_line": 33, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC20_allowances/impl.cairo" + }, + "parent_location": [ + { + "end_col": 40, + "end_line": 35, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC20_allowances/impl.cairo" + }, + "start_col": 35, + "start_line": 35 + }, + "While expanding the reference 'owner' in:" + ], + "start_col": 9, + "start_line": 33 + } + }, + "635": { + "accessible_scopes": [ + "openzeppelin.token.erc20.library", + "openzeppelin.token.erc20.library.ERC20_allowances", + "openzeppelin.token.erc20.library.ERC20_allowances.write" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 35, + "end_line": 33, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC20_allowances/impl.cairo" + }, + "parent_location": [ + { + "end_col": 49, + "end_line": 35, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC20_allowances/impl.cairo" + }, + "start_col": 42, + "start_line": 35 + }, + "While expanding the reference 'spender' in:" + ], + "start_col": 22, + "start_line": 33 + } + }, + "636": { + "accessible_scopes": [ + "openzeppelin.token.erc20.library", + "openzeppelin.token.erc20.library.ERC20_allowances", + "openzeppelin.token.erc20.library.ERC20_allowances.write" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 50, + "end_line": 35, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC20_allowances/impl.cairo" + }, + "start_col": 30, + "start_line": 35 + } + }, + "638": { + "accessible_scopes": [ + "openzeppelin.token.erc20.library", + "openzeppelin.token.erc20.library.ERC20_allowances", + "openzeppelin.token.erc20.library.ERC20_allowances.write" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 34, + "end_line": 32, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC20_allowances/impl.cairo" + }, + "parent_location": [ + { + "end_col": 38, + "end_line": 370, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/3.9.13/envs/kakarot/lib/python3.9/site-packages/starkware/starknet/common/syscalls.cairo" + }, + "parent_location": [ + { + "end_col": 80, + "end_line": 36, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC20_allowances/impl.cairo" + }, + "start_col": 9, + "start_line": 36 + }, + "While trying to retrieve the implicit argument 'syscall_ptr' in:" + ], + "start_col": 20, + "start_line": 370 + }, + "While expanding the reference 'syscall_ptr' in:" + ], + "start_col": 16, + "start_line": 32 + } + }, + "639": { + "accessible_scopes": [ + "openzeppelin.token.erc20.library", + "openzeppelin.token.erc20.library.ERC20_allowances", + "openzeppelin.token.erc20.library.ERC20_allowances.write" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 26, + "end_line": 35, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC20_allowances/impl.cairo" + }, + "parent_location": [ + { + "end_col": 43, + "end_line": 36, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC20_allowances/impl.cairo" + }, + "start_col": 31, + "start_line": 36 + }, + "While expanding the reference 'storage_addr' in:" + ], + "start_col": 14, + "start_line": 35 + } + }, + "640": { + "accessible_scopes": [ + "openzeppelin.token.erc20.library", + "openzeppelin.token.erc20.library.ERC20_allowances", + "openzeppelin.token.erc20.library.ERC20_allowances.write" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 79, + "end_line": 36, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC20_allowances/impl.cairo" + }, + "start_col": 55, + "start_line": 36 + } + }, + "641": { + "accessible_scopes": [ + "openzeppelin.token.erc20.library", + "openzeppelin.token.erc20.library.ERC20_allowances", + "openzeppelin.token.erc20.library.ERC20_allowances.write" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 80, + "end_line": 36, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC20_allowances/impl.cairo" + }, + "start_col": 9, + "start_line": 36 + } + }, + "643": { + "accessible_scopes": [ + "openzeppelin.token.erc20.library", + "openzeppelin.token.erc20.library.ERC20_allowances", + "openzeppelin.token.erc20.library.ERC20_allowances.write" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 47, + "end_line": 37, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC20_allowances/impl.cairo" + }, + "start_col": 31, + "start_line": 37 + } + }, + "645": { + "accessible_scopes": [ + "openzeppelin.token.erc20.library", + "openzeppelin.token.erc20.library.ERC20_allowances", + "openzeppelin.token.erc20.library.ERC20_allowances.write" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 79, + "end_line": 37, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC20_allowances/impl.cairo" + }, + "start_col": 55, + "start_line": 37 + } + }, + "646": { + "accessible_scopes": [ + "openzeppelin.token.erc20.library", + "openzeppelin.token.erc20.library.ERC20_allowances", + "openzeppelin.token.erc20.library.ERC20_allowances.write" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 80, + "end_line": 37, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC20_allowances/impl.cairo" + }, + "start_col": 9, + "start_line": 37 + } + }, + "648": { + "accessible_scopes": [ + "openzeppelin.token.erc20.library", + "openzeppelin.token.erc20.library.ERC20_allowances", + "openzeppelin.token.erc20.library.ERC20_allowances.write" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 41, + "end_line": 7, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC20_allowances/decl.cairo" + }, + "parent_location": [ + { + "end_col": 50, + "end_line": 35, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC20_allowances/impl.cairo" + }, + "parent_location": [ + { + "end_col": 62, + "end_line": 23, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC20_allowances/decl.cairo" + }, + "parent_location": [ + { + "end_col": 19, + "end_line": 38, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC20_allowances/impl.cairo" + }, + "start_col": 9, + "start_line": 38 + }, + "While trying to retrieve the implicit argument 'pedersen_ptr' in:" + ], + "start_col": 36, + "start_line": 23 + }, + "While expanding the reference 'pedersen_ptr' in:" + ], + "start_col": 30, + "start_line": 35 + }, + "While trying to update the implicit return value 'pedersen_ptr' in:" + ], + "start_col": 15, + "start_line": 7 + } + }, + "649": { + "accessible_scopes": [ + "openzeppelin.token.erc20.library", + "openzeppelin.token.erc20.library.ERC20_allowances", + "openzeppelin.token.erc20.library.ERC20_allowances.write" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 58, + "end_line": 7, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC20_allowances/decl.cairo" + }, + "parent_location": [ + { + "end_col": 50, + "end_line": 35, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC20_allowances/impl.cairo" + }, + "parent_location": [ + { + "end_col": 79, + "end_line": 23, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC20_allowances/decl.cairo" + }, + "parent_location": [ + { + "end_col": 19, + "end_line": 38, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC20_allowances/impl.cairo" + }, + "start_col": 9, + "start_line": 38 + }, + "While trying to retrieve the implicit argument 'range_check_ptr' in:" + ], + "start_col": 64, + "start_line": 23 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 30, + "start_line": 35 + }, + "While trying to update the implicit return value 'range_check_ptr' in:" + ], + "start_col": 43, + "start_line": 7 + } + }, + "650": { + "accessible_scopes": [ + "openzeppelin.token.erc20.library", + "openzeppelin.token.erc20.library.ERC20_allowances", + "openzeppelin.token.erc20.library.ERC20_allowances.write" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 19, + "end_line": 38, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC20_allowances/impl.cairo" + }, + "start_col": 9, + "start_line": 38 + } + }, + "651": { + "accessible_scopes": [ + "openzeppelin.token.erc20.library", + "openzeppelin.token.erc20.library.ERC20", + "openzeppelin.token.erc20.library.ERC20.initializer" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 40, + "end_line": 60, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/3.9.13/envs/kakarot/lib/python3.9/site-packages/openzeppelin/token/erc20/library.cairo" + }, + "parent_location": [ + { + "end_col": 34, + "end_line": 19, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC20_name/decl.cairo" + }, + "parent_location": [ + { + "end_col": 31, + "end_line": 63, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/3.9.13/envs/kakarot/lib/python3.9/site-packages/openzeppelin/token/erc20/library.cairo" + }, + "start_col": 9, + "start_line": 63 + }, + "While trying to retrieve the implicit argument 'syscall_ptr' in:" + ], + "start_col": 16, + "start_line": 19 + }, + "While expanding the reference 'syscall_ptr' in:" + ], + "start_col": 22, + "start_line": 60 + } + }, + "652": { + "accessible_scopes": [ + "openzeppelin.token.erc20.library", + "openzeppelin.token.erc20.library.ERC20", + "openzeppelin.token.erc20.library.ERC20.initializer" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 68, + "end_line": 60, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/3.9.13/envs/kakarot/lib/python3.9/site-packages/openzeppelin/token/erc20/library.cairo" + }, + "parent_location": [ + { + "end_col": 62, + "end_line": 19, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC20_name/decl.cairo" + }, + "parent_location": [ + { + "end_col": 31, + "end_line": 63, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/3.9.13/envs/kakarot/lib/python3.9/site-packages/openzeppelin/token/erc20/library.cairo" + }, + "start_col": 9, + "start_line": 63 + }, + "While trying to retrieve the implicit argument 'pedersen_ptr' in:" + ], + "start_col": 36, + "start_line": 19 + }, + "While expanding the reference 'pedersen_ptr' in:" + ], + "start_col": 42, + "start_line": 60 + } + }, + "653": { + "accessible_scopes": [ + "openzeppelin.token.erc20.library", + "openzeppelin.token.erc20.library.ERC20", + "openzeppelin.token.erc20.library.ERC20.initializer" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 85, + "end_line": 60, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/3.9.13/envs/kakarot/lib/python3.9/site-packages/openzeppelin/token/erc20/library.cairo" + }, + "parent_location": [ + { + "end_col": 79, + "end_line": 19, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC20_name/decl.cairo" + }, + "parent_location": [ + { + "end_col": 31, + "end_line": 63, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/3.9.13/envs/kakarot/lib/python3.9/site-packages/openzeppelin/token/erc20/library.cairo" + }, + "start_col": 9, + "start_line": 63 + }, + "While trying to retrieve the implicit argument 'range_check_ptr' in:" + ], + "start_col": 64, + "start_line": 19 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 70, + "start_line": 60 + } + }, + "654": { + "accessible_scopes": [ + "openzeppelin.token.erc20.library", + "openzeppelin.token.erc20.library.ERC20", + "openzeppelin.token.erc20.library.ERC20.initializer" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 19, + "end_line": 61, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/3.9.13/envs/kakarot/lib/python3.9/site-packages/openzeppelin/token/erc20/library.cairo" + }, + "parent_location": [ + { + "end_col": 30, + "end_line": 63, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/3.9.13/envs/kakarot/lib/python3.9/site-packages/openzeppelin/token/erc20/library.cairo" + }, + "start_col": 26, + "start_line": 63 + }, + "While expanding the reference 'name' in:" + ], + "start_col": 9, + "start_line": 61 + } + }, + "655": { + "accessible_scopes": [ + "openzeppelin.token.erc20.library", + "openzeppelin.token.erc20.library.ERC20", + "openzeppelin.token.erc20.library.ERC20.initializer" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 31, + "end_line": 63, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/3.9.13/envs/kakarot/lib/python3.9/site-packages/openzeppelin/token/erc20/library.cairo" + }, + "start_col": 9, + "start_line": 63 + } + }, + "657": { + "accessible_scopes": [ + "openzeppelin.token.erc20.library", + "openzeppelin.token.erc20.library.ERC20", + "openzeppelin.token.erc20.library.ERC20.initializer" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 33, + "end_line": 61, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/3.9.13/envs/kakarot/lib/python3.9/site-packages/openzeppelin/token/erc20/library.cairo" + }, + "parent_location": [ + { + "end_col": 34, + "end_line": 64, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/3.9.13/envs/kakarot/lib/python3.9/site-packages/openzeppelin/token/erc20/library.cairo" + }, + "start_col": 28, + "start_line": 64 + }, + "While expanding the reference 'symbol' in:" + ], + "start_col": 21, + "start_line": 61 + } + }, + "658": { + "accessible_scopes": [ + "openzeppelin.token.erc20.library", + "openzeppelin.token.erc20.library.ERC20", + "openzeppelin.token.erc20.library.ERC20.initializer" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 35, + "end_line": 64, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/3.9.13/envs/kakarot/lib/python3.9/site-packages/openzeppelin/token/erc20/library.cairo" + }, + "start_col": 9, + "start_line": 64 + } + }, + "660": { + "accessible_scopes": [ + "openzeppelin.token.erc20.library", + "openzeppelin.token.erc20.library.ERC20", + "openzeppelin.token.erc20.library.ERC20.initializer" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 49, + "end_line": 61, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/3.9.13/envs/kakarot/lib/python3.9/site-packages/openzeppelin/token/erc20/library.cairo" + }, + "parent_location": [ + { + "end_col": 31, + "end_line": 66, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/3.9.13/envs/kakarot/lib/python3.9/site-packages/openzeppelin/token/erc20/library.cairo" + }, + "start_col": 23, + "start_line": 66 + }, + "While expanding the reference 'decimals' in:" + ], + "start_col": 35, + "start_line": 61 + } + }, + "661": { + "accessible_scopes": [ + "openzeppelin.token.erc20.library", + "openzeppelin.token.erc20.library.ERC20", + "openzeppelin.token.erc20.library.ERC20.initializer" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 42, + "end_line": 66, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/3.9.13/envs/kakarot/lib/python3.9/site-packages/openzeppelin/token/erc20/library.cairo" + }, + "start_col": 33, + "start_line": 66 + } + }, + "663": { + "accessible_scopes": [ + "openzeppelin.token.erc20.library", + "openzeppelin.token.erc20.library.ERC20", + "openzeppelin.token.erc20.library.ERC20.initializer" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 43, + "end_line": 66, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/3.9.13/envs/kakarot/lib/python3.9/site-packages/openzeppelin/token/erc20/library.cairo" + }, + "start_col": 13, + "start_line": 66 + } + }, + "665": { + "accessible_scopes": [ + "openzeppelin.token.erc20.library", + "openzeppelin.token.erc20.library.ERC20", + "openzeppelin.token.erc20.library.ERC20.initializer" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 34, + "end_line": 19, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC20_symbol/decl.cairo" + }, + "parent_location": [ + { + "end_col": 35, + "end_line": 64, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/3.9.13/envs/kakarot/lib/python3.9/site-packages/openzeppelin/token/erc20/library.cairo" + }, + "parent_location": [ + { + "end_col": 34, + "end_line": 21, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC20_decimals/decl.cairo" + }, + "parent_location": [ + { + "end_col": 39, + "end_line": 68, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/3.9.13/envs/kakarot/lib/python3.9/site-packages/openzeppelin/token/erc20/library.cairo" + }, + "start_col": 9, + "start_line": 68 + }, + "While trying to retrieve the implicit argument 'syscall_ptr' in:" + ], + "start_col": 16, + "start_line": 21 + }, + "While expanding the reference 'syscall_ptr' in:" + ], + "start_col": 9, + "start_line": 64 + }, + "While trying to update the implicit return value 'syscall_ptr' in:" + ], + "start_col": 16, + "start_line": 19 + } + }, + "666": { + "accessible_scopes": [ + "openzeppelin.token.erc20.library", + "openzeppelin.token.erc20.library.ERC20", + "openzeppelin.token.erc20.library.ERC20.initializer" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 62, + "end_line": 19, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC20_symbol/decl.cairo" + }, + "parent_location": [ + { + "end_col": 35, + "end_line": 64, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/3.9.13/envs/kakarot/lib/python3.9/site-packages/openzeppelin/token/erc20/library.cairo" + }, + "parent_location": [ + { + "end_col": 62, + "end_line": 21, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC20_decimals/decl.cairo" + }, + "parent_location": [ + { + "end_col": 39, + "end_line": 68, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/3.9.13/envs/kakarot/lib/python3.9/site-packages/openzeppelin/token/erc20/library.cairo" + }, + "start_col": 9, + "start_line": 68 + }, + "While trying to retrieve the implicit argument 'pedersen_ptr' in:" + ], + "start_col": 36, + "start_line": 21 + }, + "While expanding the reference 'pedersen_ptr' in:" + ], + "start_col": 9, + "start_line": 64 + }, + "While trying to update the implicit return value 'pedersen_ptr' in:" + ], + "start_col": 36, + "start_line": 19 + } + }, + "667": { + "accessible_scopes": [ + "openzeppelin.token.erc20.library", + "openzeppelin.token.erc20.library.ERC20", + "openzeppelin.token.erc20.library.ERC20.initializer" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 31, + "end_line": 53, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/3.9.13/envs/kakarot/lib/python3.9/site-packages/starkware/cairo/common/math.cairo" + }, + "parent_location": [ + { + "end_col": 43, + "end_line": 66, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/3.9.13/envs/kakarot/lib/python3.9/site-packages/openzeppelin/token/erc20/library.cairo" + }, + "parent_location": [ + { + "end_col": 79, + "end_line": 21, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC20_decimals/decl.cairo" + }, + "parent_location": [ + { + "end_col": 39, + "end_line": 68, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/3.9.13/envs/kakarot/lib/python3.9/site-packages/openzeppelin/token/erc20/library.cairo" + }, + "start_col": 9, + "start_line": 68 + }, + "While trying to retrieve the implicit argument 'range_check_ptr' in:" + ], + "start_col": 64, + "start_line": 21 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 13, + "start_line": 66 + }, + "While trying to update the implicit return value 'range_check_ptr' in:" + ], + "start_col": 16, + "start_line": 53 + } + }, + "668": { + "accessible_scopes": [ + "openzeppelin.token.erc20.library", + "openzeppelin.token.erc20.library.ERC20", + "openzeppelin.token.erc20.library.ERC20.initializer" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 49, + "end_line": 61, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/3.9.13/envs/kakarot/lib/python3.9/site-packages/openzeppelin/token/erc20/library.cairo" + }, + "parent_location": [ + { + "end_col": 38, + "end_line": 68, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/3.9.13/envs/kakarot/lib/python3.9/site-packages/openzeppelin/token/erc20/library.cairo" + }, + "start_col": 30, + "start_line": 68 + }, + "While expanding the reference 'decimals' in:" + ], + "start_col": 35, + "start_line": 61 + } + }, + "669": { + "accessible_scopes": [ + "openzeppelin.token.erc20.library", + "openzeppelin.token.erc20.library.ERC20", + "openzeppelin.token.erc20.library.ERC20.initializer" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 39, + "end_line": 68, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/3.9.13/envs/kakarot/lib/python3.9/site-packages/openzeppelin/token/erc20/library.cairo" + }, + "start_col": 9, + "start_line": 68 + } + }, + "671": { + "accessible_scopes": [ + "openzeppelin.token.erc20.library", + "openzeppelin.token.erc20.library.ERC20", + "openzeppelin.token.erc20.library.ERC20.initializer" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 19, + "end_line": 69, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/3.9.13/envs/kakarot/lib/python3.9/site-packages/openzeppelin/token/erc20/library.cairo" + }, + "start_col": 9, + "start_line": 69 + } + }, + "672": { + "accessible_scopes": [ + "openzeppelin.token.erc20.library", + "openzeppelin.token.erc20.library.ERC20", + "openzeppelin.token.erc20.library.ERC20.name" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 33, + "end_line": 76, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/3.9.13/envs/kakarot/lib/python3.9/site-packages/openzeppelin/token/erc20/library.cairo" + }, + "parent_location": [ + { + "end_col": 33, + "end_line": 13, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC20_name/decl.cairo" + }, + "parent_location": [ + { + "end_col": 33, + "end_line": 77, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/3.9.13/envs/kakarot/lib/python3.9/site-packages/openzeppelin/token/erc20/library.cairo" + }, + "start_col": 16, + "start_line": 77 + }, + "While trying to retrieve the implicit argument 'syscall_ptr' in:" + ], + "start_col": 15, + "start_line": 13 + }, + "While expanding the reference 'syscall_ptr' in:" + ], + "start_col": 15, + "start_line": 76 + } + }, + "673": { + "accessible_scopes": [ + "openzeppelin.token.erc20.library", + "openzeppelin.token.erc20.library.ERC20", + "openzeppelin.token.erc20.library.ERC20.name" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 61, + "end_line": 76, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/3.9.13/envs/kakarot/lib/python3.9/site-packages/openzeppelin/token/erc20/library.cairo" + }, + "parent_location": [ + { + "end_col": 61, + "end_line": 13, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC20_name/decl.cairo" + }, + "parent_location": [ + { + "end_col": 33, + "end_line": 77, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/3.9.13/envs/kakarot/lib/python3.9/site-packages/openzeppelin/token/erc20/library.cairo" + }, + "start_col": 16, + "start_line": 77 + }, + "While trying to retrieve the implicit argument 'pedersen_ptr' in:" + ], + "start_col": 35, + "start_line": 13 + }, + "While expanding the reference 'pedersen_ptr' in:" + ], + "start_col": 35, + "start_line": 76 + } + }, + "674": { + "accessible_scopes": [ + "openzeppelin.token.erc20.library", + "openzeppelin.token.erc20.library.ERC20", + "openzeppelin.token.erc20.library.ERC20.name" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 78, + "end_line": 76, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/3.9.13/envs/kakarot/lib/python3.9/site-packages/openzeppelin/token/erc20/library.cairo" + }, + "parent_location": [ + { + "end_col": 78, + "end_line": 13, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC20_name/decl.cairo" + }, + "parent_location": [ + { + "end_col": 33, + "end_line": 77, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/3.9.13/envs/kakarot/lib/python3.9/site-packages/openzeppelin/token/erc20/library.cairo" + }, + "start_col": 16, + "start_line": 77 + }, + "While trying to retrieve the implicit argument 'range_check_ptr' in:" + ], + "start_col": 63, + "start_line": 13 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 63, + "start_line": 76 + } + }, + "675": { + "accessible_scopes": [ + "openzeppelin.token.erc20.library", + "openzeppelin.token.erc20.library.ERC20", + "openzeppelin.token.erc20.library.ERC20.name" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 33, + "end_line": 77, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/3.9.13/envs/kakarot/lib/python3.9/site-packages/openzeppelin/token/erc20/library.cairo" + }, + "start_col": 16, + "start_line": 77 + } + }, + "677": { + "accessible_scopes": [ + "openzeppelin.token.erc20.library", + "openzeppelin.token.erc20.library.ERC20", + "openzeppelin.token.erc20.library.ERC20.name" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 34, + "end_line": 77, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/3.9.13/envs/kakarot/lib/python3.9/site-packages/openzeppelin/token/erc20/library.cairo" + }, + "start_col": 9, + "start_line": 77 + } + }, + "678": { + "accessible_scopes": [ + "openzeppelin.token.erc20.library", + "openzeppelin.token.erc20.library.ERC20", + "openzeppelin.token.erc20.library.ERC20.symbol" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 35, + "end_line": 80, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/3.9.13/envs/kakarot/lib/python3.9/site-packages/openzeppelin/token/erc20/library.cairo" + }, + "parent_location": [ + { + "end_col": 33, + "end_line": 13, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC20_symbol/decl.cairo" + }, + "parent_location": [ + { + "end_col": 35, + "end_line": 83, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/3.9.13/envs/kakarot/lib/python3.9/site-packages/openzeppelin/token/erc20/library.cairo" + }, + "start_col": 16, + "start_line": 83 + }, + "While trying to retrieve the implicit argument 'syscall_ptr' in:" + ], + "start_col": 15, + "start_line": 13 + }, + "While expanding the reference 'syscall_ptr' in:" + ], + "start_col": 17, + "start_line": 80 + } + }, + "679": { + "accessible_scopes": [ + "openzeppelin.token.erc20.library", + "openzeppelin.token.erc20.library.ERC20", + "openzeppelin.token.erc20.library.ERC20.symbol" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 63, + "end_line": 80, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/3.9.13/envs/kakarot/lib/python3.9/site-packages/openzeppelin/token/erc20/library.cairo" + }, + "parent_location": [ + { + "end_col": 61, + "end_line": 13, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC20_symbol/decl.cairo" + }, + "parent_location": [ + { + "end_col": 35, + "end_line": 83, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/3.9.13/envs/kakarot/lib/python3.9/site-packages/openzeppelin/token/erc20/library.cairo" + }, + "start_col": 16, + "start_line": 83 + }, + "While trying to retrieve the implicit argument 'pedersen_ptr' in:" + ], + "start_col": 35, + "start_line": 13 + }, + "While expanding the reference 'pedersen_ptr' in:" + ], + "start_col": 37, + "start_line": 80 + } + }, + "680": { + "accessible_scopes": [ + "openzeppelin.token.erc20.library", + "openzeppelin.token.erc20.library.ERC20", + "openzeppelin.token.erc20.library.ERC20.symbol" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 80, + "end_line": 80, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/3.9.13/envs/kakarot/lib/python3.9/site-packages/openzeppelin/token/erc20/library.cairo" + }, + "parent_location": [ + { + "end_col": 78, + "end_line": 13, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC20_symbol/decl.cairo" + }, + "parent_location": [ + { + "end_col": 35, + "end_line": 83, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/3.9.13/envs/kakarot/lib/python3.9/site-packages/openzeppelin/token/erc20/library.cairo" + }, + "start_col": 16, + "start_line": 83 + }, + "While trying to retrieve the implicit argument 'range_check_ptr' in:" + ], + "start_col": 63, + "start_line": 13 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 65, + "start_line": 80 + } + }, + "681": { + "accessible_scopes": [ + "openzeppelin.token.erc20.library", + "openzeppelin.token.erc20.library.ERC20", + "openzeppelin.token.erc20.library.ERC20.symbol" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 35, + "end_line": 83, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/3.9.13/envs/kakarot/lib/python3.9/site-packages/openzeppelin/token/erc20/library.cairo" + }, + "start_col": 16, + "start_line": 83 + } + }, + "683": { + "accessible_scopes": [ + "openzeppelin.token.erc20.library", + "openzeppelin.token.erc20.library.ERC20", + "openzeppelin.token.erc20.library.ERC20.symbol" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 36, + "end_line": 83, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/3.9.13/envs/kakarot/lib/python3.9/site-packages/openzeppelin/token/erc20/library.cairo" + }, + "start_col": 9, + "start_line": 83 + } + }, + "684": { + "accessible_scopes": [ + "openzeppelin.token.erc20.library", + "openzeppelin.token.erc20.library.ERC20", + "openzeppelin.token.erc20.library.ERC20.total_supply" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 41, + "end_line": 86, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/3.9.13/envs/kakarot/lib/python3.9/site-packages/openzeppelin/token/erc20/library.cairo" + }, + "parent_location": [ + { + "end_col": 33, + "end_line": 13, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC20_total_supply/decl.cairo" + }, + "parent_location": [ + { + "end_col": 41, + "end_line": 89, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/3.9.13/envs/kakarot/lib/python3.9/site-packages/openzeppelin/token/erc20/library.cairo" + }, + "start_col": 16, + "start_line": 89 + }, + "While trying to retrieve the implicit argument 'syscall_ptr' in:" + ], + "start_col": 15, + "start_line": 13 + }, + "While expanding the reference 'syscall_ptr' in:" + ], + "start_col": 23, + "start_line": 86 + } + }, + "685": { + "accessible_scopes": [ + "openzeppelin.token.erc20.library", + "openzeppelin.token.erc20.library.ERC20", + "openzeppelin.token.erc20.library.ERC20.total_supply" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 69, + "end_line": 86, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/3.9.13/envs/kakarot/lib/python3.9/site-packages/openzeppelin/token/erc20/library.cairo" + }, + "parent_location": [ + { + "end_col": 61, + "end_line": 13, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC20_total_supply/decl.cairo" + }, + "parent_location": [ + { + "end_col": 41, + "end_line": 89, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/3.9.13/envs/kakarot/lib/python3.9/site-packages/openzeppelin/token/erc20/library.cairo" + }, + "start_col": 16, + "start_line": 89 + }, + "While trying to retrieve the implicit argument 'pedersen_ptr' in:" + ], + "start_col": 35, + "start_line": 13 + }, + "While expanding the reference 'pedersen_ptr' in:" + ], + "start_col": 43, + "start_line": 86 + } + }, + "686": { + "accessible_scopes": [ + "openzeppelin.token.erc20.library", + "openzeppelin.token.erc20.library.ERC20", + "openzeppelin.token.erc20.library.ERC20.total_supply" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 86, + "end_line": 86, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/3.9.13/envs/kakarot/lib/python3.9/site-packages/openzeppelin/token/erc20/library.cairo" + }, + "parent_location": [ + { + "end_col": 78, + "end_line": 13, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC20_total_supply/decl.cairo" + }, + "parent_location": [ + { + "end_col": 41, + "end_line": 89, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/3.9.13/envs/kakarot/lib/python3.9/site-packages/openzeppelin/token/erc20/library.cairo" + }, + "start_col": 16, + "start_line": 89 + }, + "While trying to retrieve the implicit argument 'range_check_ptr' in:" + ], + "start_col": 63, + "start_line": 13 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 71, + "start_line": 86 + } + }, + "687": { + "accessible_scopes": [ + "openzeppelin.token.erc20.library", + "openzeppelin.token.erc20.library.ERC20", + "openzeppelin.token.erc20.library.ERC20.total_supply" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 41, + "end_line": 89, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/3.9.13/envs/kakarot/lib/python3.9/site-packages/openzeppelin/token/erc20/library.cairo" + }, + "start_col": 16, + "start_line": 89 + } + }, + "689": { + "accessible_scopes": [ + "openzeppelin.token.erc20.library", + "openzeppelin.token.erc20.library.ERC20", + "openzeppelin.token.erc20.library.ERC20.total_supply" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 42, + "end_line": 89, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/3.9.13/envs/kakarot/lib/python3.9/site-packages/openzeppelin/token/erc20/library.cairo" + }, + "start_col": 9, + "start_line": 89 + } + }, + "690": { + "accessible_scopes": [ + "openzeppelin.token.erc20.library", + "openzeppelin.token.erc20.library.ERC20", + "openzeppelin.token.erc20.library.ERC20.decimals" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 37, + "end_line": 92, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/3.9.13/envs/kakarot/lib/python3.9/site-packages/openzeppelin/token/erc20/library.cairo" + }, + "parent_location": [ + { + "end_col": 33, + "end_line": 13, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC20_decimals/decl.cairo" + }, + "parent_location": [ + { + "end_col": 37, + "end_line": 95, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/3.9.13/envs/kakarot/lib/python3.9/site-packages/openzeppelin/token/erc20/library.cairo" + }, + "start_col": 16, + "start_line": 95 + }, + "While trying to retrieve the implicit argument 'syscall_ptr' in:" + ], + "start_col": 15, + "start_line": 13 + }, + "While expanding the reference 'syscall_ptr' in:" + ], + "start_col": 19, + "start_line": 92 + } + }, + "691": { + "accessible_scopes": [ + "openzeppelin.token.erc20.library", + "openzeppelin.token.erc20.library.ERC20", + "openzeppelin.token.erc20.library.ERC20.decimals" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 65, + "end_line": 92, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/3.9.13/envs/kakarot/lib/python3.9/site-packages/openzeppelin/token/erc20/library.cairo" + }, + "parent_location": [ + { + "end_col": 61, + "end_line": 13, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC20_decimals/decl.cairo" + }, + "parent_location": [ + { + "end_col": 37, + "end_line": 95, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/3.9.13/envs/kakarot/lib/python3.9/site-packages/openzeppelin/token/erc20/library.cairo" + }, + "start_col": 16, + "start_line": 95 + }, + "While trying to retrieve the implicit argument 'pedersen_ptr' in:" + ], + "start_col": 35, + "start_line": 13 + }, + "While expanding the reference 'pedersen_ptr' in:" + ], + "start_col": 39, + "start_line": 92 + } + }, + "692": { + "accessible_scopes": [ + "openzeppelin.token.erc20.library", + "openzeppelin.token.erc20.library.ERC20", + "openzeppelin.token.erc20.library.ERC20.decimals" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 82, + "end_line": 92, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/3.9.13/envs/kakarot/lib/python3.9/site-packages/openzeppelin/token/erc20/library.cairo" + }, + "parent_location": [ + { + "end_col": 78, + "end_line": 13, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC20_decimals/decl.cairo" + }, + "parent_location": [ + { + "end_col": 37, + "end_line": 95, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/3.9.13/envs/kakarot/lib/python3.9/site-packages/openzeppelin/token/erc20/library.cairo" + }, + "start_col": 16, + "start_line": 95 + }, + "While trying to retrieve the implicit argument 'range_check_ptr' in:" + ], + "start_col": 63, + "start_line": 13 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 67, + "start_line": 92 + } + }, + "693": { + "accessible_scopes": [ + "openzeppelin.token.erc20.library", + "openzeppelin.token.erc20.library.ERC20", + "openzeppelin.token.erc20.library.ERC20.decimals" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 37, + "end_line": 95, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/3.9.13/envs/kakarot/lib/python3.9/site-packages/openzeppelin/token/erc20/library.cairo" + }, + "start_col": 16, + "start_line": 95 + } + }, + "695": { + "accessible_scopes": [ + "openzeppelin.token.erc20.library", + "openzeppelin.token.erc20.library.ERC20", + "openzeppelin.token.erc20.library.ERC20.decimals" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 38, + "end_line": 95, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/3.9.13/envs/kakarot/lib/python3.9/site-packages/openzeppelin/token/erc20/library.cairo" + }, + "start_col": 9, + "start_line": 95 + } + }, + "696": { + "accessible_scopes": [ + "openzeppelin.token.erc20.library", + "openzeppelin.token.erc20.library.ERC20", + "openzeppelin.token.erc20.library.ERC20.balance_of" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 39, + "end_line": 98, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/3.9.13/envs/kakarot/lib/python3.9/site-packages/openzeppelin/token/erc20/library.cairo" + }, + "parent_location": [ + { + "end_col": 33, + "end_line": 13, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC20_balances/decl.cairo" + }, + "parent_location": [ + { + "end_col": 44, + "end_line": 101, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/3.9.13/envs/kakarot/lib/python3.9/site-packages/openzeppelin/token/erc20/library.cairo" + }, + "start_col": 16, + "start_line": 101 + }, + "While trying to retrieve the implicit argument 'syscall_ptr' in:" + ], + "start_col": 15, + "start_line": 13 + }, + "While expanding the reference 'syscall_ptr' in:" + ], + "start_col": 21, + "start_line": 98 + } + }, + "697": { + "accessible_scopes": [ + "openzeppelin.token.erc20.library", + "openzeppelin.token.erc20.library.ERC20", + "openzeppelin.token.erc20.library.ERC20.balance_of" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 67, + "end_line": 98, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/3.9.13/envs/kakarot/lib/python3.9/site-packages/openzeppelin/token/erc20/library.cairo" + }, + "parent_location": [ + { + "end_col": 61, + "end_line": 13, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC20_balances/decl.cairo" + }, + "parent_location": [ + { + "end_col": 44, + "end_line": 101, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/3.9.13/envs/kakarot/lib/python3.9/site-packages/openzeppelin/token/erc20/library.cairo" + }, + "start_col": 16, + "start_line": 101 + }, + "While trying to retrieve the implicit argument 'pedersen_ptr' in:" + ], + "start_col": 35, + "start_line": 13 + }, + "While expanding the reference 'pedersen_ptr' in:" + ], + "start_col": 41, + "start_line": 98 + } + }, + "698": { + "accessible_scopes": [ + "openzeppelin.token.erc20.library", + "openzeppelin.token.erc20.library.ERC20", + "openzeppelin.token.erc20.library.ERC20.balance_of" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 84, + "end_line": 98, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/3.9.13/envs/kakarot/lib/python3.9/site-packages/openzeppelin/token/erc20/library.cairo" + }, + "parent_location": [ + { + "end_col": 78, + "end_line": 13, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC20_balances/decl.cairo" + }, + "parent_location": [ + { + "end_col": 44, + "end_line": 101, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/3.9.13/envs/kakarot/lib/python3.9/site-packages/openzeppelin/token/erc20/library.cairo" + }, + "start_col": 16, + "start_line": 101 + }, + "While trying to retrieve the implicit argument 'range_check_ptr' in:" + ], + "start_col": 63, + "start_line": 13 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 69, + "start_line": 98 + } + }, + "699": { + "accessible_scopes": [ + "openzeppelin.token.erc20.library", + "openzeppelin.token.erc20.library.ERC20", + "openzeppelin.token.erc20.library.ERC20.balance_of" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 22, + "end_line": 99, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/3.9.13/envs/kakarot/lib/python3.9/site-packages/openzeppelin/token/erc20/library.cairo" + }, + "parent_location": [ + { + "end_col": 43, + "end_line": 101, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/3.9.13/envs/kakarot/lib/python3.9/site-packages/openzeppelin/token/erc20/library.cairo" + }, + "start_col": 36, + "start_line": 101 + }, + "While expanding the reference 'account' in:" + ], + "start_col": 9, + "start_line": 99 + } + }, + "700": { + "accessible_scopes": [ + "openzeppelin.token.erc20.library", + "openzeppelin.token.erc20.library.ERC20", + "openzeppelin.token.erc20.library.ERC20.balance_of" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 44, + "end_line": 101, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/3.9.13/envs/kakarot/lib/python3.9/site-packages/openzeppelin/token/erc20/library.cairo" + }, + "start_col": 16, + "start_line": 101 + } + }, + "702": { + "accessible_scopes": [ + "openzeppelin.token.erc20.library", + "openzeppelin.token.erc20.library.ERC20", + "openzeppelin.token.erc20.library.ERC20.balance_of" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 45, + "end_line": 101, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/3.9.13/envs/kakarot/lib/python3.9/site-packages/openzeppelin/token/erc20/library.cairo" + }, + "start_col": 9, + "start_line": 101 + } + }, + "703": { + "accessible_scopes": [ + "openzeppelin.token.erc20.library", + "openzeppelin.token.erc20.library.ERC20", + "openzeppelin.token.erc20.library.ERC20.allowance" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 38, + "end_line": 104, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/3.9.13/envs/kakarot/lib/python3.9/site-packages/openzeppelin/token/erc20/library.cairo" + }, + "parent_location": [ + { + "end_col": 33, + "end_line": 15, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC20_allowances/decl.cairo" + }, + "parent_location": [ + { + "end_col": 53, + "end_line": 107, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/3.9.13/envs/kakarot/lib/python3.9/site-packages/openzeppelin/token/erc20/library.cairo" + }, + "start_col": 16, + "start_line": 107 + }, + "While trying to retrieve the implicit argument 'syscall_ptr' in:" + ], + "start_col": 15, + "start_line": 15 + }, + "While expanding the reference 'syscall_ptr' in:" + ], + "start_col": 20, + "start_line": 104 + } + }, + "704": { + "accessible_scopes": [ + "openzeppelin.token.erc20.library", + "openzeppelin.token.erc20.library.ERC20", + "openzeppelin.token.erc20.library.ERC20.allowance" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 66, + "end_line": 104, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/3.9.13/envs/kakarot/lib/python3.9/site-packages/openzeppelin/token/erc20/library.cairo" + }, + "parent_location": [ + { + "end_col": 61, + "end_line": 15, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC20_allowances/decl.cairo" + }, + "parent_location": [ + { + "end_col": 53, + "end_line": 107, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/3.9.13/envs/kakarot/lib/python3.9/site-packages/openzeppelin/token/erc20/library.cairo" + }, + "start_col": 16, + "start_line": 107 + }, + "While trying to retrieve the implicit argument 'pedersen_ptr' in:" + ], + "start_col": 35, + "start_line": 15 + }, + "While expanding the reference 'pedersen_ptr' in:" + ], + "start_col": 40, + "start_line": 104 + } + }, + "705": { + "accessible_scopes": [ + "openzeppelin.token.erc20.library", + "openzeppelin.token.erc20.library.ERC20", + "openzeppelin.token.erc20.library.ERC20.allowance" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 83, + "end_line": 104, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/3.9.13/envs/kakarot/lib/python3.9/site-packages/openzeppelin/token/erc20/library.cairo" + }, + "parent_location": [ + { + "end_col": 78, + "end_line": 15, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC20_allowances/decl.cairo" + }, + "parent_location": [ + { + "end_col": 53, + "end_line": 107, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/3.9.13/envs/kakarot/lib/python3.9/site-packages/openzeppelin/token/erc20/library.cairo" + }, + "start_col": 16, + "start_line": 107 + }, + "While trying to retrieve the implicit argument 'range_check_ptr' in:" + ], + "start_col": 63, + "start_line": 15 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 68, + "start_line": 104 + } + }, + "706": { + "accessible_scopes": [ + "openzeppelin.token.erc20.library", + "openzeppelin.token.erc20.library.ERC20", + "openzeppelin.token.erc20.library.ERC20.allowance" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 20, + "end_line": 105, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/3.9.13/envs/kakarot/lib/python3.9/site-packages/openzeppelin/token/erc20/library.cairo" + }, + "parent_location": [ + { + "end_col": 43, + "end_line": 107, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/3.9.13/envs/kakarot/lib/python3.9/site-packages/openzeppelin/token/erc20/library.cairo" + }, + "start_col": 38, + "start_line": 107 + }, + "While expanding the reference 'owner' in:" + ], + "start_col": 9, + "start_line": 105 + } + }, + "707": { + "accessible_scopes": [ + "openzeppelin.token.erc20.library", + "openzeppelin.token.erc20.library.ERC20", + "openzeppelin.token.erc20.library.ERC20.allowance" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 35, + "end_line": 105, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/3.9.13/envs/kakarot/lib/python3.9/site-packages/openzeppelin/token/erc20/library.cairo" + }, + "parent_location": [ + { + "end_col": 52, + "end_line": 107, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/3.9.13/envs/kakarot/lib/python3.9/site-packages/openzeppelin/token/erc20/library.cairo" + }, + "start_col": 45, + "start_line": 107 + }, + "While expanding the reference 'spender' in:" + ], + "start_col": 22, + "start_line": 105 + } + }, + "708": { + "accessible_scopes": [ + "openzeppelin.token.erc20.library", + "openzeppelin.token.erc20.library.ERC20", + "openzeppelin.token.erc20.library.ERC20.allowance" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 53, + "end_line": 107, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/3.9.13/envs/kakarot/lib/python3.9/site-packages/openzeppelin/token/erc20/library.cairo" + }, + "start_col": 16, + "start_line": 107 + } + }, + "710": { + "accessible_scopes": [ + "openzeppelin.token.erc20.library", + "openzeppelin.token.erc20.library.ERC20", + "openzeppelin.token.erc20.library.ERC20.allowance" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 54, + "end_line": 107, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/3.9.13/envs/kakarot/lib/python3.9/site-packages/openzeppelin/token/erc20/library.cairo" + }, + "start_col": 9, + "start_line": 107 + } + }, + "711": { + "accessible_scopes": [ + "openzeppelin.token.erc20.library", + "openzeppelin.token.erc20.library.ERC20", + "openzeppelin.token.erc20.library.ERC20.transfer" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 37, + "end_line": 110, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/3.9.13/envs/kakarot/lib/python3.9/site-packages/openzeppelin/token/erc20/library.cairo" + }, + "parent_location": [ + { + "end_col": 43, + "end_line": 200, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/3.9.13/envs/kakarot/lib/python3.9/site-packages/starkware/starknet/common/syscalls.cairo" + }, + "parent_location": [ + { + "end_col": 44, + "end_line": 113, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/3.9.13/envs/kakarot/lib/python3.9/site-packages/openzeppelin/token/erc20/library.cairo" + }, + "start_col": 24, + "start_line": 113 + }, + "While trying to retrieve the implicit argument 'syscall_ptr' in:" + ], + "start_col": 25, + "start_line": 200 + }, + "While expanding the reference 'syscall_ptr' in:" + ], + "start_col": 19, + "start_line": 110 + } + }, + "712": { + "accessible_scopes": [ + "openzeppelin.token.erc20.library", + "openzeppelin.token.erc20.library.ERC20", + "openzeppelin.token.erc20.library.ERC20.transfer" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 44, + "end_line": 113, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/3.9.13/envs/kakarot/lib/python3.9/site-packages/openzeppelin/token/erc20/library.cairo" + }, + "start_col": 24, + "start_line": 113 + } + }, + "714": { + "accessible_scopes": [ + "openzeppelin.token.erc20.library", + "openzeppelin.token.erc20.library.ERC20", + "openzeppelin.token.erc20.library.ERC20.transfer" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 43, + "end_line": 200, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/3.9.13/envs/kakarot/lib/python3.9/site-packages/starkware/starknet/common/syscalls.cairo" + }, + "parent_location": [ + { + "end_col": 44, + "end_line": 113, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/3.9.13/envs/kakarot/lib/python3.9/site-packages/openzeppelin/token/erc20/library.cairo" + }, + "parent_location": [ + { + "end_col": 38, + "end_line": 233, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/3.9.13/envs/kakarot/lib/python3.9/site-packages/openzeppelin/token/erc20/library.cairo" + }, + "parent_location": [ + { + "end_col": 45, + "end_line": 114, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/3.9.13/envs/kakarot/lib/python3.9/site-packages/openzeppelin/token/erc20/library.cairo" + }, + "start_col": 9, + "start_line": 114 + }, + "While trying to retrieve the implicit argument 'syscall_ptr' in:" + ], + "start_col": 20, + "start_line": 233 + }, + "While expanding the reference 'syscall_ptr' in:" + ], + "start_col": 24, + "start_line": 113 + }, + "While trying to update the implicit return value 'syscall_ptr' in:" + ], + "start_col": 25, + "start_line": 200 + } + }, + "715": { + "accessible_scopes": [ + "openzeppelin.token.erc20.library", + "openzeppelin.token.erc20.library.ERC20", + "openzeppelin.token.erc20.library.ERC20.transfer" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 65, + "end_line": 110, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/3.9.13/envs/kakarot/lib/python3.9/site-packages/openzeppelin/token/erc20/library.cairo" + }, + "parent_location": [ + { + "end_col": 66, + "end_line": 233, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/3.9.13/envs/kakarot/lib/python3.9/site-packages/openzeppelin/token/erc20/library.cairo" + }, + "parent_location": [ + { + "end_col": 45, + "end_line": 114, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/3.9.13/envs/kakarot/lib/python3.9/site-packages/openzeppelin/token/erc20/library.cairo" + }, + "start_col": 9, + "start_line": 114 + }, + "While trying to retrieve the implicit argument 'pedersen_ptr' in:" + ], + "start_col": 40, + "start_line": 233 + }, + "While expanding the reference 'pedersen_ptr' in:" + ], + "start_col": 39, + "start_line": 110 + } + }, + "716": { + "accessible_scopes": [ + "openzeppelin.token.erc20.library", + "openzeppelin.token.erc20.library.ERC20", + "openzeppelin.token.erc20.library.ERC20.transfer" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 82, + "end_line": 110, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/3.9.13/envs/kakarot/lib/python3.9/site-packages/openzeppelin/token/erc20/library.cairo" + }, + "parent_location": [ + { + "end_col": 83, + "end_line": 233, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/3.9.13/envs/kakarot/lib/python3.9/site-packages/openzeppelin/token/erc20/library.cairo" + }, + "parent_location": [ + { + "end_col": 45, + "end_line": 114, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/3.9.13/envs/kakarot/lib/python3.9/site-packages/openzeppelin/token/erc20/library.cairo" + }, + "start_col": 9, + "start_line": 114 + }, + "While trying to retrieve the implicit argument 'range_check_ptr' in:" + ], + "start_col": 68, + "start_line": 233 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 67, + "start_line": 110 + } + }, + "717": { + "accessible_scopes": [ + "openzeppelin.token.erc20.library", + "openzeppelin.token.erc20.library.ERC20", + "openzeppelin.token.erc20.library.ERC20.transfer" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 20, + "end_line": 113, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/3.9.13/envs/kakarot/lib/python3.9/site-packages/openzeppelin/token/erc20/library.cairo" + }, + "parent_location": [ + { + "end_col": 25, + "end_line": 114, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/3.9.13/envs/kakarot/lib/python3.9/site-packages/openzeppelin/token/erc20/library.cairo" + }, + "start_col": 19, + "start_line": 114 + }, + "While expanding the reference 'sender' in:" + ], + "start_col": 14, + "start_line": 113 + } + }, + "718": { + "accessible_scopes": [ + "openzeppelin.token.erc20.library", + "openzeppelin.token.erc20.library.ERC20", + "openzeppelin.token.erc20.library.ERC20.transfer" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 24, + "end_line": 111, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/3.9.13/envs/kakarot/lib/python3.9/site-packages/openzeppelin/token/erc20/library.cairo" + }, + "parent_location": [ + { + "end_col": 36, + "end_line": 114, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/3.9.13/envs/kakarot/lib/python3.9/site-packages/openzeppelin/token/erc20/library.cairo" + }, + "start_col": 27, + "start_line": 114 + }, + "While expanding the reference 'recipient' in:" + ], + "start_col": 9, + "start_line": 111 + } + }, + "719": { + "accessible_scopes": [ + "openzeppelin.token.erc20.library", + "openzeppelin.token.erc20.library.ERC20", + "openzeppelin.token.erc20.library.ERC20.transfer" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 41, + "end_line": 111, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/3.9.13/envs/kakarot/lib/python3.9/site-packages/openzeppelin/token/erc20/library.cairo" + }, + "parent_location": [ + { + "end_col": 44, + "end_line": 114, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/3.9.13/envs/kakarot/lib/python3.9/site-packages/openzeppelin/token/erc20/library.cairo" + }, + "start_col": 38, + "start_line": 114 + }, + "While expanding the reference 'amount' in:" + ], + "start_col": 26, + "start_line": 111 + } + }, + "720": { + "accessible_scopes": [ + "openzeppelin.token.erc20.library", + "openzeppelin.token.erc20.library.ERC20", + "openzeppelin.token.erc20.library.ERC20.transfer" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 41, + "end_line": 111, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/3.9.13/envs/kakarot/lib/python3.9/site-packages/openzeppelin/token/erc20/library.cairo" + }, + "parent_location": [ + { + "end_col": 44, + "end_line": 114, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/3.9.13/envs/kakarot/lib/python3.9/site-packages/openzeppelin/token/erc20/library.cairo" + }, + "start_col": 38, + "start_line": 114 + }, + "While expanding the reference 'amount' in:" + ], + "start_col": 26, + "start_line": 111 + } + }, + "721": { + "accessible_scopes": [ + "openzeppelin.token.erc20.library", + "openzeppelin.token.erc20.library.ERC20", + "openzeppelin.token.erc20.library.ERC20.transfer" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 45, + "end_line": 114, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/3.9.13/envs/kakarot/lib/python3.9/site-packages/openzeppelin/token/erc20/library.cairo" + }, + "start_col": 9, + "start_line": 114 + } + }, + "723": { + "accessible_scopes": [ + "openzeppelin.token.erc20.library", + "openzeppelin.token.erc20.library.ERC20", + "openzeppelin.token.erc20.library.ERC20.transfer" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 29, + "end_line": 115, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/3.9.13/envs/kakarot/lib/python3.9/site-packages/openzeppelin/token/erc20/library.cairo" + }, + "start_col": 25, + "start_line": 115 + } + }, + "725": { + "accessible_scopes": [ + "openzeppelin.token.erc20.library", + "openzeppelin.token.erc20.library.ERC20", + "openzeppelin.token.erc20.library.ERC20.transfer" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 31, + "end_line": 115, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/3.9.13/envs/kakarot/lib/python3.9/site-packages/openzeppelin/token/erc20/library.cairo" + }, + "start_col": 9, + "start_line": 115 + } + }, + "726": { + "accessible_scopes": [ + "openzeppelin.token.erc20.library", + "openzeppelin.token.erc20.library.ERC20", + "openzeppelin.token.erc20.library.ERC20.transfer_from" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 42, + "end_line": 118, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/3.9.13/envs/kakarot/lib/python3.9/site-packages/openzeppelin/token/erc20/library.cairo" + }, + "parent_location": [ + { + "end_col": 43, + "end_line": 200, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/3.9.13/envs/kakarot/lib/python3.9/site-packages/starkware/starknet/common/syscalls.cairo" + }, + "parent_location": [ + { + "end_col": 44, + "end_line": 121, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/3.9.13/envs/kakarot/lib/python3.9/site-packages/openzeppelin/token/erc20/library.cairo" + }, + "start_col": 24, + "start_line": 121 + }, + "While trying to retrieve the implicit argument 'syscall_ptr' in:" + ], + "start_col": 25, + "start_line": 200 + }, + "While expanding the reference 'syscall_ptr' in:" + ], + "start_col": 24, + "start_line": 118 + } + }, + "727": { + "accessible_scopes": [ + "openzeppelin.token.erc20.library", + "openzeppelin.token.erc20.library.ERC20", + "openzeppelin.token.erc20.library.ERC20.transfer_from" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 44, + "end_line": 121, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/3.9.13/envs/kakarot/lib/python3.9/site-packages/openzeppelin/token/erc20/library.cairo" + }, + "start_col": 24, + "start_line": 121 + } + }, + "729": { + "accessible_scopes": [ + "openzeppelin.token.erc20.library", + "openzeppelin.token.erc20.library.ERC20", + "openzeppelin.token.erc20.library.ERC20.transfer_from" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 43, + "end_line": 200, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/3.9.13/envs/kakarot/lib/python3.9/site-packages/starkware/starknet/common/syscalls.cairo" + }, + "parent_location": [ + { + "end_col": 44, + "end_line": 121, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/3.9.13/envs/kakarot/lib/python3.9/site-packages/openzeppelin/token/erc20/library.cairo" + }, + "parent_location": [ + { + "end_col": 45, + "end_line": 284, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/3.9.13/envs/kakarot/lib/python3.9/site-packages/openzeppelin/token/erc20/library.cairo" + }, + "parent_location": [ + { + "end_col": 49, + "end_line": 122, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/3.9.13/envs/kakarot/lib/python3.9/site-packages/openzeppelin/token/erc20/library.cairo" + }, + "start_col": 9, + "start_line": 122 + }, + "While trying to retrieve the implicit argument 'syscall_ptr' in:" + ], + "start_col": 27, + "start_line": 284 + }, + "While expanding the reference 'syscall_ptr' in:" + ], + "start_col": 24, + "start_line": 121 + }, + "While trying to update the implicit return value 'syscall_ptr' in:" + ], + "start_col": 25, + "start_line": 200 + } + }, + "730": { + "accessible_scopes": [ + "openzeppelin.token.erc20.library", + "openzeppelin.token.erc20.library.ERC20", + "openzeppelin.token.erc20.library.ERC20.transfer_from" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 70, + "end_line": 118, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/3.9.13/envs/kakarot/lib/python3.9/site-packages/openzeppelin/token/erc20/library.cairo" + }, + "parent_location": [ + { + "end_col": 73, + "end_line": 284, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/3.9.13/envs/kakarot/lib/python3.9/site-packages/openzeppelin/token/erc20/library.cairo" + }, + "parent_location": [ + { + "end_col": 49, + "end_line": 122, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/3.9.13/envs/kakarot/lib/python3.9/site-packages/openzeppelin/token/erc20/library.cairo" + }, + "start_col": 9, + "start_line": 122 + }, + "While trying to retrieve the implicit argument 'pedersen_ptr' in:" + ], + "start_col": 47, + "start_line": 284 + }, + "While expanding the reference 'pedersen_ptr' in:" + ], + "start_col": 44, + "start_line": 118 + } + }, + "731": { + "accessible_scopes": [ + "openzeppelin.token.erc20.library", + "openzeppelin.token.erc20.library.ERC20", + "openzeppelin.token.erc20.library.ERC20.transfer_from" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 87, + "end_line": 118, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/3.9.13/envs/kakarot/lib/python3.9/site-packages/openzeppelin/token/erc20/library.cairo" + }, + "parent_location": [ + { + "end_col": 90, + "end_line": 284, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/3.9.13/envs/kakarot/lib/python3.9/site-packages/openzeppelin/token/erc20/library.cairo" + }, + "parent_location": [ + { + "end_col": 49, + "end_line": 122, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/3.9.13/envs/kakarot/lib/python3.9/site-packages/openzeppelin/token/erc20/library.cairo" + }, + "start_col": 9, + "start_line": 122 + }, + "While trying to retrieve the implicit argument 'range_check_ptr' in:" + ], + "start_col": 75, + "start_line": 284 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 72, + "start_line": 118 + } + }, + "732": { + "accessible_scopes": [ + "openzeppelin.token.erc20.library", + "openzeppelin.token.erc20.library.ERC20", + "openzeppelin.token.erc20.library.ERC20.transfer_from" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 21, + "end_line": 119, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/3.9.13/envs/kakarot/lib/python3.9/site-packages/openzeppelin/token/erc20/library.cairo" + }, + "parent_location": [ + { + "end_col": 32, + "end_line": 122, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/3.9.13/envs/kakarot/lib/python3.9/site-packages/openzeppelin/token/erc20/library.cairo" + }, + "start_col": 26, + "start_line": 122 + }, + "While expanding the reference 'sender' in:" + ], + "start_col": 9, + "start_line": 119 + } + }, + "733": { + "accessible_scopes": [ + "openzeppelin.token.erc20.library", + "openzeppelin.token.erc20.library.ERC20", + "openzeppelin.token.erc20.library.ERC20.transfer_from" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 20, + "end_line": 121, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/3.9.13/envs/kakarot/lib/python3.9/site-packages/openzeppelin/token/erc20/library.cairo" + }, + "parent_location": [ + { + "end_col": 40, + "end_line": 122, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/3.9.13/envs/kakarot/lib/python3.9/site-packages/openzeppelin/token/erc20/library.cairo" + }, + "start_col": 34, + "start_line": 122 + }, + "While expanding the reference 'caller' in:" + ], + "start_col": 14, + "start_line": 121 + } + }, + "734": { + "accessible_scopes": [ + "openzeppelin.token.erc20.library", + "openzeppelin.token.erc20.library.ERC20", + "openzeppelin.token.erc20.library.ERC20.transfer_from" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 55, + "end_line": 119, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/3.9.13/envs/kakarot/lib/python3.9/site-packages/openzeppelin/token/erc20/library.cairo" + }, + "parent_location": [ + { + "end_col": 48, + "end_line": 122, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/3.9.13/envs/kakarot/lib/python3.9/site-packages/openzeppelin/token/erc20/library.cairo" + }, + "start_col": 42, + "start_line": 122 + }, + "While expanding the reference 'amount' in:" + ], + "start_col": 40, + "start_line": 119 + } + }, + "735": { + "accessible_scopes": [ + "openzeppelin.token.erc20.library", + "openzeppelin.token.erc20.library.ERC20", + "openzeppelin.token.erc20.library.ERC20.transfer_from" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 55, + "end_line": 119, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/3.9.13/envs/kakarot/lib/python3.9/site-packages/openzeppelin/token/erc20/library.cairo" + }, + "parent_location": [ + { + "end_col": 48, + "end_line": 122, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/3.9.13/envs/kakarot/lib/python3.9/site-packages/openzeppelin/token/erc20/library.cairo" + }, + "start_col": 42, + "start_line": 122 + }, + "While expanding the reference 'amount' in:" + ], + "start_col": 40, + "start_line": 119 + } + }, + "736": { + "accessible_scopes": [ + "openzeppelin.token.erc20.library", + "openzeppelin.token.erc20.library.ERC20", + "openzeppelin.token.erc20.library.ERC20.transfer_from" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 49, + "end_line": 122, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/3.9.13/envs/kakarot/lib/python3.9/site-packages/openzeppelin/token/erc20/library.cairo" + }, + "start_col": 9, + "start_line": 122 + } + }, + "738": { + "accessible_scopes": [ + "openzeppelin.token.erc20.library", + "openzeppelin.token.erc20.library.ERC20", + "openzeppelin.token.erc20.library.ERC20.transfer_from" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 21, + "end_line": 119, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/3.9.13/envs/kakarot/lib/python3.9/site-packages/openzeppelin/token/erc20/library.cairo" + }, + "parent_location": [ + { + "end_col": 25, + "end_line": 123, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/3.9.13/envs/kakarot/lib/python3.9/site-packages/openzeppelin/token/erc20/library.cairo" + }, + "start_col": 19, + "start_line": 123 + }, + "While expanding the reference 'sender' in:" + ], + "start_col": 9, + "start_line": 119 + } + }, + "739": { + "accessible_scopes": [ + "openzeppelin.token.erc20.library", + "openzeppelin.token.erc20.library.ERC20", + "openzeppelin.token.erc20.library.ERC20.transfer_from" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 38, + "end_line": 119, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/3.9.13/envs/kakarot/lib/python3.9/site-packages/openzeppelin/token/erc20/library.cairo" + }, + "parent_location": [ + { + "end_col": 36, + "end_line": 123, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/3.9.13/envs/kakarot/lib/python3.9/site-packages/openzeppelin/token/erc20/library.cairo" + }, + "start_col": 27, + "start_line": 123 + }, + "While expanding the reference 'recipient' in:" + ], + "start_col": 23, + "start_line": 119 + } + }, + "740": { + "accessible_scopes": [ + "openzeppelin.token.erc20.library", + "openzeppelin.token.erc20.library.ERC20", + "openzeppelin.token.erc20.library.ERC20.transfer_from" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 55, + "end_line": 119, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/3.9.13/envs/kakarot/lib/python3.9/site-packages/openzeppelin/token/erc20/library.cairo" + }, + "parent_location": [ + { + "end_col": 44, + "end_line": 123, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/3.9.13/envs/kakarot/lib/python3.9/site-packages/openzeppelin/token/erc20/library.cairo" + }, + "start_col": 38, + "start_line": 123 + }, + "While expanding the reference 'amount' in:" + ], + "start_col": 40, + "start_line": 119 + } + }, + "741": { + "accessible_scopes": [ + "openzeppelin.token.erc20.library", + "openzeppelin.token.erc20.library.ERC20", + "openzeppelin.token.erc20.library.ERC20.transfer_from" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 55, + "end_line": 119, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/3.9.13/envs/kakarot/lib/python3.9/site-packages/openzeppelin/token/erc20/library.cairo" + }, + "parent_location": [ + { + "end_col": 44, + "end_line": 123, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/3.9.13/envs/kakarot/lib/python3.9/site-packages/openzeppelin/token/erc20/library.cairo" + }, + "start_col": 38, + "start_line": 123 + }, + "While expanding the reference 'amount' in:" + ], + "start_col": 40, + "start_line": 119 + } + }, + "742": { + "accessible_scopes": [ + "openzeppelin.token.erc20.library", + "openzeppelin.token.erc20.library.ERC20", + "openzeppelin.token.erc20.library.ERC20.transfer_from" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 45, + "end_line": 123, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/3.9.13/envs/kakarot/lib/python3.9/site-packages/openzeppelin/token/erc20/library.cairo" + }, + "start_col": 9, + "start_line": 123 + } + }, + "744": { + "accessible_scopes": [ + "openzeppelin.token.erc20.library", + "openzeppelin.token.erc20.library.ERC20", + "openzeppelin.token.erc20.library.ERC20.transfer_from" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 29, + "end_line": 124, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/3.9.13/envs/kakarot/lib/python3.9/site-packages/openzeppelin/token/erc20/library.cairo" + }, + "start_col": 25, + "start_line": 124 + } + }, + "746": { + "accessible_scopes": [ + "openzeppelin.token.erc20.library", + "openzeppelin.token.erc20.library.ERC20", + "openzeppelin.token.erc20.library.ERC20.transfer_from" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 31, + "end_line": 124, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/3.9.13/envs/kakarot/lib/python3.9/site-packages/openzeppelin/token/erc20/library.cairo" + }, + "start_col": 9, + "start_line": 124 + } + }, + "747": { + "accessible_scopes": [ + "openzeppelin.token.erc20.library", + "openzeppelin.token.erc20.library.ERC20", + "openzeppelin.token.erc20.library.ERC20.approve" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 81, + "end_line": 127, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/3.9.13/envs/kakarot/lib/python3.9/site-packages/openzeppelin/token/erc20/library.cairo" + }, + "parent_location": [ + { + "end_col": 35, + "end_line": 21, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/3.9.13/envs/kakarot/lib/python3.9/site-packages/starkware/cairo/common/uint256.cairo" + }, + "parent_location": [ + { + "end_col": 34, + "end_line": 131, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/3.9.13/envs/kakarot/lib/python3.9/site-packages/openzeppelin/token/erc20/library.cairo" + }, + "start_col": 13, + "start_line": 131 + }, + "While trying to retrieve the implicit argument 'range_check_ptr' in:" + ], + "start_col": 20, + "start_line": 21 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 66, + "start_line": 127 + } + }, + "748": { + "accessible_scopes": [ + "openzeppelin.token.erc20.library", + "openzeppelin.token.erc20.library.ERC20", + "openzeppelin.token.erc20.library.ERC20.approve" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 39, + "end_line": 128, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/3.9.13/envs/kakarot/lib/python3.9/site-packages/openzeppelin/token/erc20/library.cairo" + }, + "parent_location": [ + { + "end_col": 33, + "end_line": 131, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/3.9.13/envs/kakarot/lib/python3.9/site-packages/openzeppelin/token/erc20/library.cairo" + }, + "start_col": 27, + "start_line": 131 + }, + "While expanding the reference 'amount' in:" + ], + "start_col": 24, + "start_line": 128 + } + }, + "749": { + "accessible_scopes": [ + "openzeppelin.token.erc20.library", + "openzeppelin.token.erc20.library.ERC20", + "openzeppelin.token.erc20.library.ERC20.approve" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 39, + "end_line": 128, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/3.9.13/envs/kakarot/lib/python3.9/site-packages/openzeppelin/token/erc20/library.cairo" + }, + "parent_location": [ + { + "end_col": 33, + "end_line": 131, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/3.9.13/envs/kakarot/lib/python3.9/site-packages/openzeppelin/token/erc20/library.cairo" + }, + "start_col": 27, + "start_line": 131 + }, + "While expanding the reference 'amount' in:" + ], + "start_col": 24, + "start_line": 128 + } + }, + "750": { + "accessible_scopes": [ + "openzeppelin.token.erc20.library", + "openzeppelin.token.erc20.library.ERC20", + "openzeppelin.token.erc20.library.ERC20.approve" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 34, + "end_line": 131, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/3.9.13/envs/kakarot/lib/python3.9/site-packages/openzeppelin/token/erc20/library.cairo" + }, + "start_col": 13, + "start_line": 131 + } + }, + "752": { + "accessible_scopes": [ + "openzeppelin.token.erc20.library", + "openzeppelin.token.erc20.library.ERC20", + "openzeppelin.token.erc20.library.ERC20.approve" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 36, + "end_line": 127, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/3.9.13/envs/kakarot/lib/python3.9/site-packages/openzeppelin/token/erc20/library.cairo" + }, + "parent_location": [ + { + "end_col": 43, + "end_line": 200, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/3.9.13/envs/kakarot/lib/python3.9/site-packages/starkware/starknet/common/syscalls.cairo" + }, + "parent_location": [ + { + "end_col": 44, + "end_line": 134, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/3.9.13/envs/kakarot/lib/python3.9/site-packages/openzeppelin/token/erc20/library.cairo" + }, + "start_col": 24, + "start_line": 134 + }, + "While trying to retrieve the implicit argument 'syscall_ptr' in:" + ], + "start_col": 25, + "start_line": 200 + }, + "While expanding the reference 'syscall_ptr' in:" + ], + "start_col": 18, + "start_line": 127 + } + }, + "753": { + "accessible_scopes": [ + "openzeppelin.token.erc20.library", + "openzeppelin.token.erc20.library.ERC20", + "openzeppelin.token.erc20.library.ERC20.approve" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 44, + "end_line": 134, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/3.9.13/envs/kakarot/lib/python3.9/site-packages/openzeppelin/token/erc20/library.cairo" + }, + "start_col": 24, + "start_line": 134 + } + }, + "755": { + "accessible_scopes": [ + "openzeppelin.token.erc20.library", + "openzeppelin.token.erc20.library.ERC20", + "openzeppelin.token.erc20.library.ERC20.approve" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 43, + "end_line": 200, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/3.9.13/envs/kakarot/lib/python3.9/site-packages/starkware/starknet/common/syscalls.cairo" + }, + "parent_location": [ + { + "end_col": 44, + "end_line": 134, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/3.9.13/envs/kakarot/lib/python3.9/site-packages/openzeppelin/token/erc20/library.cairo" + }, + "parent_location": [ + { + "end_col": 37, + "end_line": 264, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/3.9.13/envs/kakarot/lib/python3.9/site-packages/openzeppelin/token/erc20/library.cairo" + }, + "parent_location": [ + { + "end_col": 42, + "end_line": 135, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/3.9.13/envs/kakarot/lib/python3.9/site-packages/openzeppelin/token/erc20/library.cairo" + }, + "start_col": 9, + "start_line": 135 + }, + "While trying to retrieve the implicit argument 'syscall_ptr' in:" + ], + "start_col": 19, + "start_line": 264 + }, + "While expanding the reference 'syscall_ptr' in:" + ], + "start_col": 24, + "start_line": 134 + }, + "While trying to update the implicit return value 'syscall_ptr' in:" + ], + "start_col": 25, + "start_line": 200 + } + }, + "756": { + "accessible_scopes": [ + "openzeppelin.token.erc20.library", + "openzeppelin.token.erc20.library.ERC20", + "openzeppelin.token.erc20.library.ERC20.approve" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 64, + "end_line": 127, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/3.9.13/envs/kakarot/lib/python3.9/site-packages/openzeppelin/token/erc20/library.cairo" + }, + "parent_location": [ + { + "end_col": 65, + "end_line": 264, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/3.9.13/envs/kakarot/lib/python3.9/site-packages/openzeppelin/token/erc20/library.cairo" + }, + "parent_location": [ + { + "end_col": 42, + "end_line": 135, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/3.9.13/envs/kakarot/lib/python3.9/site-packages/openzeppelin/token/erc20/library.cairo" + }, + "start_col": 9, + "start_line": 135 + }, + "While trying to retrieve the implicit argument 'pedersen_ptr' in:" + ], + "start_col": 39, + "start_line": 264 + }, + "While expanding the reference 'pedersen_ptr' in:" + ], + "start_col": 38, + "start_line": 127 + } + }, + "757": { + "accessible_scopes": [ + "openzeppelin.token.erc20.library", + "openzeppelin.token.erc20.library.ERC20", + "openzeppelin.token.erc20.library.ERC20.approve" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 35, + "end_line": 21, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/3.9.13/envs/kakarot/lib/python3.9/site-packages/starkware/cairo/common/uint256.cairo" + }, + "parent_location": [ + { + "end_col": 34, + "end_line": 131, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/3.9.13/envs/kakarot/lib/python3.9/site-packages/openzeppelin/token/erc20/library.cairo" + }, + "parent_location": [ + { + "end_col": 82, + "end_line": 264, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/3.9.13/envs/kakarot/lib/python3.9/site-packages/openzeppelin/token/erc20/library.cairo" + }, + "parent_location": [ + { + "end_col": 42, + "end_line": 135, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/3.9.13/envs/kakarot/lib/python3.9/site-packages/openzeppelin/token/erc20/library.cairo" + }, + "start_col": 9, + "start_line": 135 + }, + "While trying to retrieve the implicit argument 'range_check_ptr' in:" + ], + "start_col": 67, + "start_line": 264 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 13, + "start_line": 131 + }, + "While trying to update the implicit return value 'range_check_ptr' in:" + ], + "start_col": 20, + "start_line": 21 + } + }, + "758": { + "accessible_scopes": [ + "openzeppelin.token.erc20.library", + "openzeppelin.token.erc20.library.ERC20", + "openzeppelin.token.erc20.library.ERC20.approve" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 20, + "end_line": 134, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/3.9.13/envs/kakarot/lib/python3.9/site-packages/openzeppelin/token/erc20/library.cairo" + }, + "parent_location": [ + { + "end_col": 24, + "end_line": 135, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/3.9.13/envs/kakarot/lib/python3.9/site-packages/openzeppelin/token/erc20/library.cairo" + }, + "start_col": 18, + "start_line": 135 + }, + "While expanding the reference 'caller' in:" + ], + "start_col": 14, + "start_line": 134 + } + }, + "759": { + "accessible_scopes": [ + "openzeppelin.token.erc20.library", + "openzeppelin.token.erc20.library.ERC20", + "openzeppelin.token.erc20.library.ERC20.approve" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 22, + "end_line": 128, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/3.9.13/envs/kakarot/lib/python3.9/site-packages/openzeppelin/token/erc20/library.cairo" + }, + "parent_location": [ + { + "end_col": 33, + "end_line": 135, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/3.9.13/envs/kakarot/lib/python3.9/site-packages/openzeppelin/token/erc20/library.cairo" + }, + "start_col": 26, + "start_line": 135 + }, + "While expanding the reference 'spender' in:" + ], + "start_col": 9, + "start_line": 128 + } + }, + "760": { + "accessible_scopes": [ + "openzeppelin.token.erc20.library", + "openzeppelin.token.erc20.library.ERC20", + "openzeppelin.token.erc20.library.ERC20.approve" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 39, + "end_line": 128, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/3.9.13/envs/kakarot/lib/python3.9/site-packages/openzeppelin/token/erc20/library.cairo" + }, + "parent_location": [ + { + "end_col": 41, + "end_line": 135, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/3.9.13/envs/kakarot/lib/python3.9/site-packages/openzeppelin/token/erc20/library.cairo" + }, + "start_col": 35, + "start_line": 135 + }, + "While expanding the reference 'amount' in:" + ], + "start_col": 24, + "start_line": 128 + } + }, + "761": { + "accessible_scopes": [ + "openzeppelin.token.erc20.library", + "openzeppelin.token.erc20.library.ERC20", + "openzeppelin.token.erc20.library.ERC20.approve" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 39, + "end_line": 128, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/3.9.13/envs/kakarot/lib/python3.9/site-packages/openzeppelin/token/erc20/library.cairo" + }, + "parent_location": [ + { + "end_col": 41, + "end_line": 135, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/3.9.13/envs/kakarot/lib/python3.9/site-packages/openzeppelin/token/erc20/library.cairo" + }, + "start_col": 35, + "start_line": 135 + }, + "While expanding the reference 'amount' in:" + ], + "start_col": 24, + "start_line": 128 + } + }, + "762": { + "accessible_scopes": [ + "openzeppelin.token.erc20.library", + "openzeppelin.token.erc20.library.ERC20", + "openzeppelin.token.erc20.library.ERC20.approve" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 42, + "end_line": 135, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/3.9.13/envs/kakarot/lib/python3.9/site-packages/openzeppelin/token/erc20/library.cairo" + }, + "start_col": 9, + "start_line": 135 + } + }, + "764": { + "accessible_scopes": [ + "openzeppelin.token.erc20.library", + "openzeppelin.token.erc20.library.ERC20", + "openzeppelin.token.erc20.library.ERC20.approve" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 29, + "end_line": 136, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/3.9.13/envs/kakarot/lib/python3.9/site-packages/openzeppelin/token/erc20/library.cairo" + }, + "start_col": 25, + "start_line": 136 + } + }, + "766": { + "accessible_scopes": [ + "openzeppelin.token.erc20.library", + "openzeppelin.token.erc20.library.ERC20", + "openzeppelin.token.erc20.library.ERC20.approve" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 31, + "end_line": 136, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/3.9.13/envs/kakarot/lib/python3.9/site-packages/openzeppelin/token/erc20/library.cairo" + }, + "start_col": 9, + "start_line": 136 + } + }, + "767": { + "accessible_scopes": [ + "openzeppelin.token.erc20.library", + "openzeppelin.token.erc20.library.ERC20", + "openzeppelin.token.erc20.library.ERC20.increase_allowance" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 92, + "end_line": 139, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/3.9.13/envs/kakarot/lib/python3.9/site-packages/openzeppelin/token/erc20/library.cairo" + }, + "parent_location": [ + { + "end_col": 35, + "end_line": 21, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/3.9.13/envs/kakarot/lib/python3.9/site-packages/starkware/cairo/common/uint256.cairo" + }, + "parent_location": [ + { + "end_col": 39, + "end_line": 143, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/3.9.13/envs/kakarot/lib/python3.9/site-packages/openzeppelin/token/erc20/library.cairo" + }, + "start_col": 13, + "start_line": 143 + }, + "While trying to retrieve the implicit argument 'range_check_ptr' in:" + ], + "start_col": 20, + "start_line": 21 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 77, + "start_line": 139 + } + }, + "768": { + "accessible_scopes": [ + "openzeppelin.token.erc20.library", + "openzeppelin.token.erc20.library.ERC20", + "openzeppelin.token.erc20.library.ERC20.increase_allowance" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 44, + "end_line": 140, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/3.9.13/envs/kakarot/lib/python3.9/site-packages/openzeppelin/token/erc20/library.cairo" + }, + "parent_location": [ + { + "end_col": 38, + "end_line": 143, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/3.9.13/envs/kakarot/lib/python3.9/site-packages/openzeppelin/token/erc20/library.cairo" + }, + "start_col": 27, + "start_line": 143 + }, + "While expanding the reference 'added_value' in:" + ], + "start_col": 24, + "start_line": 140 + } + }, + "769": { + "accessible_scopes": [ + "openzeppelin.token.erc20.library", + "openzeppelin.token.erc20.library.ERC20", + "openzeppelin.token.erc20.library.ERC20.increase_allowance" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 44, + "end_line": 140, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/3.9.13/envs/kakarot/lib/python3.9/site-packages/openzeppelin/token/erc20/library.cairo" + }, + "parent_location": [ + { + "end_col": 38, + "end_line": 143, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/3.9.13/envs/kakarot/lib/python3.9/site-packages/openzeppelin/token/erc20/library.cairo" + }, + "start_col": 27, + "start_line": 143 + }, + "While expanding the reference 'added_value' in:" + ], + "start_col": 24, + "start_line": 140 + } + }, + "770": { + "accessible_scopes": [ + "openzeppelin.token.erc20.library", + "openzeppelin.token.erc20.library.ERC20", + "openzeppelin.token.erc20.library.ERC20.increase_allowance" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 39, + "end_line": 143, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/3.9.13/envs/kakarot/lib/python3.9/site-packages/openzeppelin/token/erc20/library.cairo" + }, + "start_col": 13, + "start_line": 143 + } + }, + "772": { + "accessible_scopes": [ + "openzeppelin.token.erc20.library", + "openzeppelin.token.erc20.library.ERC20", + "openzeppelin.token.erc20.library.ERC20.increase_allowance" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 47, + "end_line": 139, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/3.9.13/envs/kakarot/lib/python3.9/site-packages/openzeppelin/token/erc20/library.cairo" + }, + "parent_location": [ + { + "end_col": 43, + "end_line": 200, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/3.9.13/envs/kakarot/lib/python3.9/site-packages/starkware/starknet/common/syscalls.cairo" + }, + "parent_location": [ + { + "end_col": 44, + "end_line": 146, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/3.9.13/envs/kakarot/lib/python3.9/site-packages/openzeppelin/token/erc20/library.cairo" + }, + "start_col": 24, + "start_line": 146 + }, + "While trying to retrieve the implicit argument 'syscall_ptr' in:" + ], + "start_col": 25, + "start_line": 200 + }, + "While expanding the reference 'syscall_ptr' in:" + ], + "start_col": 29, + "start_line": 139 + } + }, + "773": { + "accessible_scopes": [ + "openzeppelin.token.erc20.library", + "openzeppelin.token.erc20.library.ERC20", + "openzeppelin.token.erc20.library.ERC20.increase_allowance" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 44, + "end_line": 146, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/3.9.13/envs/kakarot/lib/python3.9/site-packages/openzeppelin/token/erc20/library.cairo" + }, + "start_col": 24, + "start_line": 146 + } + }, + "775": { + "accessible_scopes": [ + "openzeppelin.token.erc20.library", + "openzeppelin.token.erc20.library.ERC20", + "openzeppelin.token.erc20.library.ERC20.increase_allowance" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 43, + "end_line": 200, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/3.9.13/envs/kakarot/lib/python3.9/site-packages/starkware/starknet/common/syscalls.cairo" + }, + "parent_location": [ + { + "end_col": 44, + "end_line": 146, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/3.9.13/envs/kakarot/lib/python3.9/site-packages/openzeppelin/token/erc20/library.cairo" + }, + "parent_location": [ + { + "end_col": 33, + "end_line": 15, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC20_allowances/decl.cairo" + }, + "parent_location": [ + { + "end_col": 82, + "end_line": 147, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/3.9.13/envs/kakarot/lib/python3.9/site-packages/openzeppelin/token/erc20/library.cairo" + }, + "start_col": 44, + "start_line": 147 + }, + "While trying to retrieve the implicit argument 'syscall_ptr' in:" + ], + "start_col": 15, + "start_line": 15 + }, + "While expanding the reference 'syscall_ptr' in:" + ], + "start_col": 24, + "start_line": 146 + }, + "While trying to update the implicit return value 'syscall_ptr' in:" + ], + "start_col": 25, + "start_line": 200 + } + }, + "776": { + "accessible_scopes": [ + "openzeppelin.token.erc20.library", + "openzeppelin.token.erc20.library.ERC20", + "openzeppelin.token.erc20.library.ERC20.increase_allowance" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 75, + "end_line": 139, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/3.9.13/envs/kakarot/lib/python3.9/site-packages/openzeppelin/token/erc20/library.cairo" + }, + "parent_location": [ + { + "end_col": 61, + "end_line": 15, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC20_allowances/decl.cairo" + }, + "parent_location": [ + { + "end_col": 82, + "end_line": 147, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/3.9.13/envs/kakarot/lib/python3.9/site-packages/openzeppelin/token/erc20/library.cairo" + }, + "start_col": 44, + "start_line": 147 + }, + "While trying to retrieve the implicit argument 'pedersen_ptr' in:" + ], + "start_col": 35, + "start_line": 15 + }, + "While expanding the reference 'pedersen_ptr' in:" + ], + "start_col": 49, + "start_line": 139 + } + }, + "777": { + "accessible_scopes": [ + "openzeppelin.token.erc20.library", + "openzeppelin.token.erc20.library.ERC20", + "openzeppelin.token.erc20.library.ERC20.increase_allowance" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 35, + "end_line": 21, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/3.9.13/envs/kakarot/lib/python3.9/site-packages/starkware/cairo/common/uint256.cairo" + }, + "parent_location": [ + { + "end_col": 39, + "end_line": 143, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/3.9.13/envs/kakarot/lib/python3.9/site-packages/openzeppelin/token/erc20/library.cairo" + }, + "parent_location": [ + { + "end_col": 78, + "end_line": 15, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC20_allowances/decl.cairo" + }, + "parent_location": [ + { + "end_col": 82, + "end_line": 147, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/3.9.13/envs/kakarot/lib/python3.9/site-packages/openzeppelin/token/erc20/library.cairo" + }, + "start_col": 44, + "start_line": 147 + }, + "While trying to retrieve the implicit argument 'range_check_ptr' in:" + ], + "start_col": 63, + "start_line": 15 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 13, + "start_line": 143 + }, + "While trying to update the implicit return value 'range_check_ptr' in:" + ], + "start_col": 20, + "start_line": 21 + } + }, + "778": { + "accessible_scopes": [ + "openzeppelin.token.erc20.library", + "openzeppelin.token.erc20.library.ERC20", + "openzeppelin.token.erc20.library.ERC20.increase_allowance" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 20, + "end_line": 146, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/3.9.13/envs/kakarot/lib/python3.9/site-packages/openzeppelin/token/erc20/library.cairo" + }, + "parent_location": [ + { + "end_col": 72, + "end_line": 147, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/3.9.13/envs/kakarot/lib/python3.9/site-packages/openzeppelin/token/erc20/library.cairo" + }, + "start_col": 66, + "start_line": 147 + }, + "While expanding the reference 'caller' in:" + ], + "start_col": 14, + "start_line": 146 + } + }, + "779": { + "accessible_scopes": [ + "openzeppelin.token.erc20.library", + "openzeppelin.token.erc20.library.ERC20", + "openzeppelin.token.erc20.library.ERC20.increase_allowance" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 22, + "end_line": 140, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/3.9.13/envs/kakarot/lib/python3.9/site-packages/openzeppelin/token/erc20/library.cairo" + }, + "parent_location": [ + { + "end_col": 81, + "end_line": 147, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/3.9.13/envs/kakarot/lib/python3.9/site-packages/openzeppelin/token/erc20/library.cairo" + }, + "start_col": 74, + "start_line": 147 + }, + "While expanding the reference 'spender' in:" + ], + "start_col": 9, + "start_line": 140 + } + }, + "780": { + "accessible_scopes": [ + "openzeppelin.token.erc20.library", + "openzeppelin.token.erc20.library.ERC20", + "openzeppelin.token.erc20.library.ERC20.increase_allowance" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 82, + "end_line": 147, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/3.9.13/envs/kakarot/lib/python3.9/site-packages/openzeppelin/token/erc20/library.cairo" + }, + "start_col": 44, + "start_line": 147 + } + }, + "782": { + "accessible_scopes": [ + "openzeppelin.token.erc20.library", + "openzeppelin.token.erc20.library.ERC20", + "openzeppelin.token.erc20.library.ERC20.increase_allowance" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 44, + "end_line": 140, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/3.9.13/envs/kakarot/lib/python3.9/site-packages/openzeppelin/token/erc20/library.cairo" + }, + "parent_location": [ + { + "end_col": 90, + "end_line": 151, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/3.9.13/envs/kakarot/lib/python3.9/site-packages/openzeppelin/token/erc20/library.cairo" + }, + "start_col": 79, + "start_line": 151 + }, + "While expanding the reference 'added_value' in:" + ], + "start_col": 24, + "start_line": 140 + } + }, + "783": { + "accessible_scopes": [ + "openzeppelin.token.erc20.library", + "openzeppelin.token.erc20.library.ERC20", + "openzeppelin.token.erc20.library.ERC20.increase_allowance" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 44, + "end_line": 140, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/3.9.13/envs/kakarot/lib/python3.9/site-packages/openzeppelin/token/erc20/library.cairo" + }, + "parent_location": [ + { + "end_col": 90, + "end_line": 151, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/3.9.13/envs/kakarot/lib/python3.9/site-packages/openzeppelin/token/erc20/library.cairo" + }, + "start_col": 79, + "start_line": 151 + }, + "While expanding the reference 'added_value' in:" + ], + "start_col": 24, + "start_line": 140 + } + }, + "784": { + "accessible_scopes": [ + "openzeppelin.token.erc20.library", + "openzeppelin.token.erc20.library.ERC20", + "openzeppelin.token.erc20.library.ERC20.increase_allowance" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 91, + "end_line": 151, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/3.9.13/envs/kakarot/lib/python3.9/site-packages/openzeppelin/token/erc20/library.cairo" + }, + "start_col": 44, + "start_line": 151 + } + }, + "786": { + "accessible_scopes": [ + "openzeppelin.token.erc20.library", + "openzeppelin.token.erc20.library.ERC20", + "openzeppelin.token.erc20.library.ERC20.increase_allowance" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 33, + "end_line": 15, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC20_allowances/decl.cairo" + }, + "parent_location": [ + { + "end_col": 82, + "end_line": 147, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/3.9.13/envs/kakarot/lib/python3.9/site-packages/openzeppelin/token/erc20/library.cairo" + }, + "parent_location": [ + { + "end_col": 37, + "end_line": 264, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/3.9.13/envs/kakarot/lib/python3.9/site-packages/openzeppelin/token/erc20/library.cairo" + }, + "parent_location": [ + { + "end_col": 49, + "end_line": 154, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/3.9.13/envs/kakarot/lib/python3.9/site-packages/openzeppelin/token/erc20/library.cairo" + }, + "start_col": 9, + "start_line": 154 + }, + "While trying to retrieve the implicit argument 'syscall_ptr' in:" + ], + "start_col": 19, + "start_line": 264 + }, + "While expanding the reference 'syscall_ptr' in:" + ], + "start_col": 44, + "start_line": 147 + }, + "While trying to update the implicit return value 'syscall_ptr' in:" + ], + "start_col": 15, + "start_line": 15 + } + }, + "787": { + "accessible_scopes": [ + "openzeppelin.token.erc20.library", + "openzeppelin.token.erc20.library.ERC20", + "openzeppelin.token.erc20.library.ERC20.increase_allowance" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 61, + "end_line": 15, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC20_allowances/decl.cairo" + }, + "parent_location": [ + { + "end_col": 82, + "end_line": 147, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/3.9.13/envs/kakarot/lib/python3.9/site-packages/openzeppelin/token/erc20/library.cairo" + }, + "parent_location": [ + { + "end_col": 65, + "end_line": 264, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/3.9.13/envs/kakarot/lib/python3.9/site-packages/openzeppelin/token/erc20/library.cairo" + }, + "parent_location": [ + { + "end_col": 49, + "end_line": 154, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/3.9.13/envs/kakarot/lib/python3.9/site-packages/openzeppelin/token/erc20/library.cairo" + }, + "start_col": 9, + "start_line": 154 + }, + "While trying to retrieve the implicit argument 'pedersen_ptr' in:" + ], + "start_col": 39, + "start_line": 264 + }, + "While expanding the reference 'pedersen_ptr' in:" + ], + "start_col": 44, + "start_line": 147 + }, + "While trying to update the implicit return value 'pedersen_ptr' in:" + ], + "start_col": 35, + "start_line": 15 + } + }, + "788": { + "accessible_scopes": [ + "openzeppelin.token.erc20.library", + "openzeppelin.token.erc20.library.ERC20", + "openzeppelin.token.erc20.library.ERC20.increase_allowance" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 29, + "end_line": 23, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/3.9.13/envs/kakarot/lib/python3.9/site-packages/openzeppelin/security/safemath/library.cairo" + }, + "parent_location": [ + { + "end_col": 91, + "end_line": 151, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/3.9.13/envs/kakarot/lib/python3.9/site-packages/openzeppelin/token/erc20/library.cairo" + }, + "parent_location": [ + { + "end_col": 82, + "end_line": 264, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/3.9.13/envs/kakarot/lib/python3.9/site-packages/openzeppelin/token/erc20/library.cairo" + }, + "parent_location": [ + { + "end_col": 49, + "end_line": 154, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/3.9.13/envs/kakarot/lib/python3.9/site-packages/openzeppelin/token/erc20/library.cairo" + }, + "start_col": 9, + "start_line": 154 + }, + "While trying to retrieve the implicit argument 'range_check_ptr' in:" + ], + "start_col": 67, + "start_line": 264 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 44, + "start_line": 151 + }, + "While trying to update the implicit return value 'range_check_ptr' in:" + ], + "start_col": 14, + "start_line": 23 + } + }, + "789": { + "accessible_scopes": [ + "openzeppelin.token.erc20.library", + "openzeppelin.token.erc20.library.ERC20", + "openzeppelin.token.erc20.library.ERC20.increase_allowance" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 20, + "end_line": 146, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/3.9.13/envs/kakarot/lib/python3.9/site-packages/openzeppelin/token/erc20/library.cairo" + }, + "parent_location": [ + { + "end_col": 24, + "end_line": 154, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/3.9.13/envs/kakarot/lib/python3.9/site-packages/openzeppelin/token/erc20/library.cairo" + }, + "start_col": 18, + "start_line": 154 + }, + "While expanding the reference 'caller' in:" + ], + "start_col": 14, + "start_line": 146 + } + }, + "790": { + "accessible_scopes": [ + "openzeppelin.token.erc20.library", + "openzeppelin.token.erc20.library.ERC20", + "openzeppelin.token.erc20.library.ERC20.increase_allowance" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 22, + "end_line": 140, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/3.9.13/envs/kakarot/lib/python3.9/site-packages/openzeppelin/token/erc20/library.cairo" + }, + "parent_location": [ + { + "end_col": 33, + "end_line": 154, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/3.9.13/envs/kakarot/lib/python3.9/site-packages/openzeppelin/token/erc20/library.cairo" + }, + "start_col": 26, + "start_line": 154 + }, + "While expanding the reference 'spender' in:" + ], + "start_col": 9, + "start_line": 140 + } + }, + "791": { + "accessible_scopes": [ + "openzeppelin.token.erc20.library", + "openzeppelin.token.erc20.library.ERC20", + "openzeppelin.token.erc20.library.ERC20.increase_allowance" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 40, + "end_line": 151, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/3.9.13/envs/kakarot/lib/python3.9/site-packages/openzeppelin/token/erc20/library.cairo" + }, + "parent_location": [ + { + "end_col": 48, + "end_line": 154, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/3.9.13/envs/kakarot/lib/python3.9/site-packages/openzeppelin/token/erc20/library.cairo" + }, + "start_col": 35, + "start_line": 154 + }, + "While expanding the reference 'new_allowance' in:" + ], + "start_col": 18, + "start_line": 151 + } + }, + "792": { + "accessible_scopes": [ + "openzeppelin.token.erc20.library", + "openzeppelin.token.erc20.library.ERC20", + "openzeppelin.token.erc20.library.ERC20.increase_allowance" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 40, + "end_line": 151, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/3.9.13/envs/kakarot/lib/python3.9/site-packages/openzeppelin/token/erc20/library.cairo" + }, + "parent_location": [ + { + "end_col": 48, + "end_line": 154, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/3.9.13/envs/kakarot/lib/python3.9/site-packages/openzeppelin/token/erc20/library.cairo" + }, + "start_col": 35, + "start_line": 154 + }, + "While expanding the reference 'new_allowance' in:" + ], + "start_col": 18, + "start_line": 151 + } + }, + "793": { + "accessible_scopes": [ + "openzeppelin.token.erc20.library", + "openzeppelin.token.erc20.library.ERC20", + "openzeppelin.token.erc20.library.ERC20.increase_allowance" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 49, + "end_line": 154, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/3.9.13/envs/kakarot/lib/python3.9/site-packages/openzeppelin/token/erc20/library.cairo" + }, + "start_col": 9, + "start_line": 154 + } + }, + "795": { + "accessible_scopes": [ + "openzeppelin.token.erc20.library", + "openzeppelin.token.erc20.library.ERC20", + "openzeppelin.token.erc20.library.ERC20.increase_allowance" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 29, + "end_line": 155, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/3.9.13/envs/kakarot/lib/python3.9/site-packages/openzeppelin/token/erc20/library.cairo" + }, + "start_col": 25, + "start_line": 155 + } + }, + "797": { + "accessible_scopes": [ + "openzeppelin.token.erc20.library", + "openzeppelin.token.erc20.library.ERC20", + "openzeppelin.token.erc20.library.ERC20.increase_allowance" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 31, + "end_line": 155, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/3.9.13/envs/kakarot/lib/python3.9/site-packages/openzeppelin/token/erc20/library.cairo" + }, + "start_col": 9, + "start_line": 155 + } + }, + "798": { + "accessible_scopes": [ + "openzeppelin.token.erc20.library", + "openzeppelin.token.erc20.library.ERC20", + "openzeppelin.token.erc20.library.ERC20.decrease_allowance" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 22, + "end_line": 161, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/3.9.13/envs/kakarot/lib/python3.9/site-packages/openzeppelin/token/erc20/library.cairo" + }, + "start_col": 9, + "start_line": 161 + } + }, + "800": { + "accessible_scopes": [ + "openzeppelin.token.erc20.library", + "openzeppelin.token.erc20.library.ERC20", + "openzeppelin.token.erc20.library.ERC20.decrease_allowance" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 92, + "end_line": 158, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/3.9.13/envs/kakarot/lib/python3.9/site-packages/openzeppelin/token/erc20/library.cairo" + }, + "parent_location": [ + { + "end_col": 35, + "end_line": 21, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/3.9.13/envs/kakarot/lib/python3.9/site-packages/starkware/cairo/common/uint256.cairo" + }, + "parent_location": [ + { + "end_col": 44, + "end_line": 163, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/3.9.13/envs/kakarot/lib/python3.9/site-packages/openzeppelin/token/erc20/library.cairo" + }, + "start_col": 13, + "start_line": 163 + }, + "While trying to retrieve the implicit argument 'range_check_ptr' in:" + ], + "start_col": 20, + "start_line": 21 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 77, + "start_line": 158 + } + }, + "801": { + "accessible_scopes": [ + "openzeppelin.token.erc20.library", + "openzeppelin.token.erc20.library.ERC20", + "openzeppelin.token.erc20.library.ERC20.decrease_allowance" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 49, + "end_line": 159, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/3.9.13/envs/kakarot/lib/python3.9/site-packages/openzeppelin/token/erc20/library.cairo" + }, + "parent_location": [ + { + "end_col": 43, + "end_line": 163, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/3.9.13/envs/kakarot/lib/python3.9/site-packages/openzeppelin/token/erc20/library.cairo" + }, + "start_col": 27, + "start_line": 163 + }, + "While expanding the reference 'subtracted_value' in:" + ], + "start_col": 24, + "start_line": 159 + } + }, + "802": { + "accessible_scopes": [ + "openzeppelin.token.erc20.library", + "openzeppelin.token.erc20.library.ERC20", + "openzeppelin.token.erc20.library.ERC20.decrease_allowance" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 49, + "end_line": 159, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/3.9.13/envs/kakarot/lib/python3.9/site-packages/openzeppelin/token/erc20/library.cairo" + }, + "parent_location": [ + { + "end_col": 43, + "end_line": 163, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/3.9.13/envs/kakarot/lib/python3.9/site-packages/openzeppelin/token/erc20/library.cairo" + }, + "start_col": 27, + "start_line": 163 + }, + "While expanding the reference 'subtracted_value' in:" + ], + "start_col": 24, + "start_line": 159 + } + }, + "803": { + "accessible_scopes": [ + "openzeppelin.token.erc20.library", + "openzeppelin.token.erc20.library.ERC20", + "openzeppelin.token.erc20.library.ERC20.decrease_allowance" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 44, + "end_line": 163, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/3.9.13/envs/kakarot/lib/python3.9/site-packages/openzeppelin/token/erc20/library.cairo" + }, + "start_col": 13, + "start_line": 163 + } + }, + "805": { + "accessible_scopes": [ + "openzeppelin.token.erc20.library", + "openzeppelin.token.erc20.library.ERC20", + "openzeppelin.token.erc20.library.ERC20.decrease_allowance" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 47, + "end_line": 158, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/3.9.13/envs/kakarot/lib/python3.9/site-packages/openzeppelin/token/erc20/library.cairo" + }, + "parent_location": [ + { + "end_col": 43, + "end_line": 200, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/3.9.13/envs/kakarot/lib/python3.9/site-packages/starkware/starknet/common/syscalls.cairo" + }, + "parent_location": [ + { + "end_col": 44, + "end_line": 166, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/3.9.13/envs/kakarot/lib/python3.9/site-packages/openzeppelin/token/erc20/library.cairo" + }, + "start_col": 24, + "start_line": 166 + }, + "While trying to retrieve the implicit argument 'syscall_ptr' in:" + ], + "start_col": 25, + "start_line": 200 + }, + "While expanding the reference 'syscall_ptr' in:" + ], + "start_col": 29, + "start_line": 158 + } + }, + "806": { + "accessible_scopes": [ + "openzeppelin.token.erc20.library", + "openzeppelin.token.erc20.library.ERC20", + "openzeppelin.token.erc20.library.ERC20.decrease_allowance" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 44, + "end_line": 166, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/3.9.13/envs/kakarot/lib/python3.9/site-packages/openzeppelin/token/erc20/library.cairo" + }, + "start_col": 24, + "start_line": 166 + } + }, + "808": { + "accessible_scopes": [ + "openzeppelin.token.erc20.library", + "openzeppelin.token.erc20.library.ERC20", + "openzeppelin.token.erc20.library.ERC20.decrease_allowance" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 43, + "end_line": 200, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/3.9.13/envs/kakarot/lib/python3.9/site-packages/starkware/starknet/common/syscalls.cairo" + }, + "parent_location": [ + { + "end_col": 44, + "end_line": 166, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/3.9.13/envs/kakarot/lib/python3.9/site-packages/openzeppelin/token/erc20/library.cairo" + }, + "parent_location": [ + { + "end_col": 33, + "end_line": 15, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC20_allowances/decl.cairo" + }, + "parent_location": [ + { + "end_col": 96, + "end_line": 167, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/3.9.13/envs/kakarot/lib/python3.9/site-packages/openzeppelin/token/erc20/library.cairo" + }, + "start_col": 44, + "start_line": 167 + }, + "While trying to retrieve the implicit argument 'syscall_ptr' in:" + ], + "start_col": 15, + "start_line": 15 + }, + "While expanding the reference 'syscall_ptr' in:" + ], + "start_col": 24, + "start_line": 166 + }, + "While trying to update the implicit return value 'syscall_ptr' in:" + ], + "start_col": 25, + "start_line": 200 + } + }, + "809": { + "accessible_scopes": [ + "openzeppelin.token.erc20.library", + "openzeppelin.token.erc20.library.ERC20", + "openzeppelin.token.erc20.library.ERC20.decrease_allowance" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 75, + "end_line": 158, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/3.9.13/envs/kakarot/lib/python3.9/site-packages/openzeppelin/token/erc20/library.cairo" + }, + "parent_location": [ + { + "end_col": 61, + "end_line": 15, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC20_allowances/decl.cairo" + }, + "parent_location": [ + { + "end_col": 96, + "end_line": 167, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/3.9.13/envs/kakarot/lib/python3.9/site-packages/openzeppelin/token/erc20/library.cairo" + }, + "start_col": 44, + "start_line": 167 + }, + "While trying to retrieve the implicit argument 'pedersen_ptr' in:" + ], + "start_col": 35, + "start_line": 15 + }, + "While expanding the reference 'pedersen_ptr' in:" + ], + "start_col": 49, + "start_line": 158 + } + }, + "810": { + "accessible_scopes": [ + "openzeppelin.token.erc20.library", + "openzeppelin.token.erc20.library.ERC20", + "openzeppelin.token.erc20.library.ERC20.decrease_allowance" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 35, + "end_line": 21, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/3.9.13/envs/kakarot/lib/python3.9/site-packages/starkware/cairo/common/uint256.cairo" + }, + "parent_location": [ + { + "end_col": 44, + "end_line": 163, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/3.9.13/envs/kakarot/lib/python3.9/site-packages/openzeppelin/token/erc20/library.cairo" + }, + "parent_location": [ + { + "end_col": 78, + "end_line": 15, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC20_allowances/decl.cairo" + }, + "parent_location": [ + { + "end_col": 96, + "end_line": 167, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/3.9.13/envs/kakarot/lib/python3.9/site-packages/openzeppelin/token/erc20/library.cairo" + }, + "start_col": 44, + "start_line": 167 + }, + "While trying to retrieve the implicit argument 'range_check_ptr' in:" + ], + "start_col": 63, + "start_line": 15 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 13, + "start_line": 163 + }, + "While trying to update the implicit return value 'range_check_ptr' in:" + ], + "start_col": 20, + "start_line": 21 + } + }, + "811": { + "accessible_scopes": [ + "openzeppelin.token.erc20.library", + "openzeppelin.token.erc20.library.ERC20", + "openzeppelin.token.erc20.library.ERC20.decrease_allowance" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 20, + "end_line": 166, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/3.9.13/envs/kakarot/lib/python3.9/site-packages/openzeppelin/token/erc20/library.cairo" + }, + "parent_location": [ + { + "end_col": 78, + "end_line": 167, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/3.9.13/envs/kakarot/lib/python3.9/site-packages/openzeppelin/token/erc20/library.cairo" + }, + "start_col": 72, + "start_line": 167 + }, + "While expanding the reference 'caller' in:" + ], + "start_col": 14, + "start_line": 166 + } + }, + "812": { + "accessible_scopes": [ + "openzeppelin.token.erc20.library", + "openzeppelin.token.erc20.library.ERC20", + "openzeppelin.token.erc20.library.ERC20.decrease_allowance" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 22, + "end_line": 159, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/3.9.13/envs/kakarot/lib/python3.9/site-packages/openzeppelin/token/erc20/library.cairo" + }, + "parent_location": [ + { + "end_col": 95, + "end_line": 167, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/3.9.13/envs/kakarot/lib/python3.9/site-packages/openzeppelin/token/erc20/library.cairo" + }, + "start_col": 88, + "start_line": 167 + }, + "While expanding the reference 'spender' in:" + ], + "start_col": 9, + "start_line": 159 + } + }, + "813": { + "accessible_scopes": [ + "openzeppelin.token.erc20.library", + "openzeppelin.token.erc20.library.ERC20", + "openzeppelin.token.erc20.library.ERC20.decrease_allowance" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 96, + "end_line": 167, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/3.9.13/envs/kakarot/lib/python3.9/site-packages/openzeppelin/token/erc20/library.cairo" + }, + "start_col": 44, + "start_line": 167 + } + }, + "815": { + "accessible_scopes": [ + "openzeppelin.token.erc20.library", + "openzeppelin.token.erc20.library.ERC20", + "openzeppelin.token.erc20.library.ERC20.decrease_allowance" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 49, + "end_line": 159, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/3.9.13/envs/kakarot/lib/python3.9/site-packages/openzeppelin/token/erc20/library.cairo" + }, + "parent_location": [ + { + "end_col": 98, + "end_line": 170, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/3.9.13/envs/kakarot/lib/python3.9/site-packages/openzeppelin/token/erc20/library.cairo" + }, + "start_col": 82, + "start_line": 170 + }, + "While expanding the reference 'subtracted_value' in:" + ], + "start_col": 24, + "start_line": 159 + } + }, + "816": { + "accessible_scopes": [ + "openzeppelin.token.erc20.library", + "openzeppelin.token.erc20.library.ERC20", + "openzeppelin.token.erc20.library.ERC20.decrease_allowance" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 49, + "end_line": 159, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/3.9.13/envs/kakarot/lib/python3.9/site-packages/openzeppelin/token/erc20/library.cairo" + }, + "parent_location": [ + { + "end_col": 98, + "end_line": 170, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/3.9.13/envs/kakarot/lib/python3.9/site-packages/openzeppelin/token/erc20/library.cairo" + }, + "start_col": 82, + "start_line": 170 + }, + "While expanding the reference 'subtracted_value' in:" + ], + "start_col": 24, + "start_line": 159 + } + }, + "817": { + "accessible_scopes": [ + "openzeppelin.token.erc20.library", + "openzeppelin.token.erc20.library.ERC20", + "openzeppelin.token.erc20.library.ERC20.decrease_allowance" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 99, + "end_line": 170, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/3.9.13/envs/kakarot/lib/python3.9/site-packages/openzeppelin/token/erc20/library.cairo" + }, + "start_col": 44, + "start_line": 170 + } + }, + "819": { + "accessible_scopes": [ + "openzeppelin.token.erc20.library", + "openzeppelin.token.erc20.library.ERC20", + "openzeppelin.token.erc20.library.ERC20.decrease_allowance" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 33, + "end_line": 15, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC20_allowances/decl.cairo" + }, + "parent_location": [ + { + "end_col": 96, + "end_line": 167, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/3.9.13/envs/kakarot/lib/python3.9/site-packages/openzeppelin/token/erc20/library.cairo" + }, + "parent_location": [ + { + "end_col": 37, + "end_line": 264, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/3.9.13/envs/kakarot/lib/python3.9/site-packages/openzeppelin/token/erc20/library.cairo" + }, + "parent_location": [ + { + "end_col": 49, + "end_line": 173, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/3.9.13/envs/kakarot/lib/python3.9/site-packages/openzeppelin/token/erc20/library.cairo" + }, + "start_col": 9, + "start_line": 173 + }, + "While trying to retrieve the implicit argument 'syscall_ptr' in:" + ], + "start_col": 19, + "start_line": 264 + }, + "While expanding the reference 'syscall_ptr' in:" + ], + "start_col": 44, + "start_line": 167 + }, + "While trying to update the implicit return value 'syscall_ptr' in:" + ], + "start_col": 15, + "start_line": 15 + } + }, + "820": { + "accessible_scopes": [ + "openzeppelin.token.erc20.library", + "openzeppelin.token.erc20.library.ERC20", + "openzeppelin.token.erc20.library.ERC20.decrease_allowance" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 61, + "end_line": 15, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC20_allowances/decl.cairo" + }, + "parent_location": [ + { + "end_col": 96, + "end_line": 167, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/3.9.13/envs/kakarot/lib/python3.9/site-packages/openzeppelin/token/erc20/library.cairo" + }, + "parent_location": [ + { + "end_col": 65, + "end_line": 264, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/3.9.13/envs/kakarot/lib/python3.9/site-packages/openzeppelin/token/erc20/library.cairo" + }, + "parent_location": [ + { + "end_col": 49, + "end_line": 173, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/3.9.13/envs/kakarot/lib/python3.9/site-packages/openzeppelin/token/erc20/library.cairo" + }, + "start_col": 9, + "start_line": 173 + }, + "While trying to retrieve the implicit argument 'pedersen_ptr' in:" + ], + "start_col": 39, + "start_line": 264 + }, + "While expanding the reference 'pedersen_ptr' in:" + ], + "start_col": 44, + "start_line": 167 + }, + "While trying to update the implicit return value 'pedersen_ptr' in:" + ], + "start_col": 35, + "start_line": 15 + } + }, + "821": { + "accessible_scopes": [ + "openzeppelin.token.erc20.library", + "openzeppelin.token.erc20.library.ERC20", + "openzeppelin.token.erc20.library.ERC20.decrease_allowance" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 32, + "end_line": 35, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/3.9.13/envs/kakarot/lib/python3.9/site-packages/openzeppelin/security/safemath/library.cairo" + }, + "parent_location": [ + { + "end_col": 99, + "end_line": 170, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/3.9.13/envs/kakarot/lib/python3.9/site-packages/openzeppelin/token/erc20/library.cairo" + }, + "parent_location": [ + { + "end_col": 82, + "end_line": 264, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/3.9.13/envs/kakarot/lib/python3.9/site-packages/openzeppelin/token/erc20/library.cairo" + }, + "parent_location": [ + { + "end_col": 49, + "end_line": 173, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/3.9.13/envs/kakarot/lib/python3.9/site-packages/openzeppelin/token/erc20/library.cairo" + }, + "start_col": 9, + "start_line": 173 + }, + "While trying to retrieve the implicit argument 'range_check_ptr' in:" + ], + "start_col": 67, + "start_line": 264 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 44, + "start_line": 170 + }, + "While trying to update the implicit return value 'range_check_ptr' in:" + ], + "start_col": 17, + "start_line": 35 + } + }, + "822": { + "accessible_scopes": [ + "openzeppelin.token.erc20.library", + "openzeppelin.token.erc20.library.ERC20", + "openzeppelin.token.erc20.library.ERC20.decrease_allowance" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 20, + "end_line": 166, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/3.9.13/envs/kakarot/lib/python3.9/site-packages/openzeppelin/token/erc20/library.cairo" + }, + "parent_location": [ + { + "end_col": 24, + "end_line": 173, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/3.9.13/envs/kakarot/lib/python3.9/site-packages/openzeppelin/token/erc20/library.cairo" + }, + "start_col": 18, + "start_line": 173 + }, + "While expanding the reference 'caller' in:" + ], + "start_col": 14, + "start_line": 166 + } + }, + "823": { + "accessible_scopes": [ + "openzeppelin.token.erc20.library", + "openzeppelin.token.erc20.library.ERC20", + "openzeppelin.token.erc20.library.ERC20.decrease_allowance" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 22, + "end_line": 159, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/3.9.13/envs/kakarot/lib/python3.9/site-packages/openzeppelin/token/erc20/library.cairo" + }, + "parent_location": [ + { + "end_col": 33, + "end_line": 173, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/3.9.13/envs/kakarot/lib/python3.9/site-packages/openzeppelin/token/erc20/library.cairo" + }, + "start_col": 26, + "start_line": 173 + }, + "While expanding the reference 'spender' in:" + ], + "start_col": 9, + "start_line": 159 + } + }, + "824": { + "accessible_scopes": [ + "openzeppelin.token.erc20.library", + "openzeppelin.token.erc20.library.ERC20", + "openzeppelin.token.erc20.library.ERC20.decrease_allowance" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 40, + "end_line": 170, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/3.9.13/envs/kakarot/lib/python3.9/site-packages/openzeppelin/token/erc20/library.cairo" + }, + "parent_location": [ + { + "end_col": 48, + "end_line": 173, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/3.9.13/envs/kakarot/lib/python3.9/site-packages/openzeppelin/token/erc20/library.cairo" + }, + "start_col": 35, + "start_line": 173 + }, + "While expanding the reference 'new_allowance' in:" + ], + "start_col": 18, + "start_line": 170 + } + }, + "825": { + "accessible_scopes": [ + "openzeppelin.token.erc20.library", + "openzeppelin.token.erc20.library.ERC20", + "openzeppelin.token.erc20.library.ERC20.decrease_allowance" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 40, + "end_line": 170, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/3.9.13/envs/kakarot/lib/python3.9/site-packages/openzeppelin/token/erc20/library.cairo" + }, + "parent_location": [ + { + "end_col": 48, + "end_line": 173, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/3.9.13/envs/kakarot/lib/python3.9/site-packages/openzeppelin/token/erc20/library.cairo" + }, + "start_col": 35, + "start_line": 173 + }, + "While expanding the reference 'new_allowance' in:" + ], + "start_col": 18, + "start_line": 170 + } + }, + "826": { + "accessible_scopes": [ + "openzeppelin.token.erc20.library", + "openzeppelin.token.erc20.library.ERC20", + "openzeppelin.token.erc20.library.ERC20.decrease_allowance" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 49, + "end_line": 173, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/3.9.13/envs/kakarot/lib/python3.9/site-packages/openzeppelin/token/erc20/library.cairo" + }, + "start_col": 9, + "start_line": 173 + } + }, + "828": { + "accessible_scopes": [ + "openzeppelin.token.erc20.library", + "openzeppelin.token.erc20.library.ERC20", + "openzeppelin.token.erc20.library.ERC20.decrease_allowance" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 29, + "end_line": 174, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/3.9.13/envs/kakarot/lib/python3.9/site-packages/openzeppelin/token/erc20/library.cairo" + }, + "start_col": 25, + "start_line": 174 + } + }, + "830": { + "accessible_scopes": [ + "openzeppelin.token.erc20.library", + "openzeppelin.token.erc20.library.ERC20", + "openzeppelin.token.erc20.library.ERC20.decrease_allowance" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 31, + "end_line": 174, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/3.9.13/envs/kakarot/lib/python3.9/site-packages/openzeppelin/token/erc20/library.cairo" + }, + "start_col": 9, + "start_line": 174 + } + }, + "831": { + "accessible_scopes": [ + "openzeppelin.token.erc20.library", + "openzeppelin.token.erc20.library.ERC20", + "openzeppelin.token.erc20.library.ERC20._mint" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 79, + "end_line": 181, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/3.9.13/envs/kakarot/lib/python3.9/site-packages/openzeppelin/token/erc20/library.cairo" + }, + "parent_location": [ + { + "end_col": 35, + "end_line": 21, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/3.9.13/envs/kakarot/lib/python3.9/site-packages/starkware/cairo/common/uint256.cairo" + }, + "parent_location": [ + { + "end_col": 34, + "end_line": 185, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/3.9.13/envs/kakarot/lib/python3.9/site-packages/openzeppelin/token/erc20/library.cairo" + }, + "start_col": 13, + "start_line": 185 + }, + "While trying to retrieve the implicit argument 'range_check_ptr' in:" + ], + "start_col": 20, + "start_line": 21 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 64, + "start_line": 181 + } + }, + "832": { + "accessible_scopes": [ + "openzeppelin.token.erc20.library", + "openzeppelin.token.erc20.library.ERC20", + "openzeppelin.token.erc20.library.ERC20._mint" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 41, + "end_line": 182, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/3.9.13/envs/kakarot/lib/python3.9/site-packages/openzeppelin/token/erc20/library.cairo" + }, + "parent_location": [ + { + "end_col": 33, + "end_line": 185, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/3.9.13/envs/kakarot/lib/python3.9/site-packages/openzeppelin/token/erc20/library.cairo" + }, + "start_col": 27, + "start_line": 185 + }, + "While expanding the reference 'amount' in:" + ], + "start_col": 26, + "start_line": 182 + } + }, + "833": { + "accessible_scopes": [ + "openzeppelin.token.erc20.library", + "openzeppelin.token.erc20.library.ERC20", + "openzeppelin.token.erc20.library.ERC20._mint" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 41, + "end_line": 182, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/3.9.13/envs/kakarot/lib/python3.9/site-packages/openzeppelin/token/erc20/library.cairo" + }, + "parent_location": [ + { + "end_col": 33, + "end_line": 185, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/3.9.13/envs/kakarot/lib/python3.9/site-packages/openzeppelin/token/erc20/library.cairo" + }, + "start_col": 27, + "start_line": 185 + }, + "While expanding the reference 'amount' in:" + ], + "start_col": 26, + "start_line": 182 + } + }, + "834": { + "accessible_scopes": [ + "openzeppelin.token.erc20.library", + "openzeppelin.token.erc20.library.ERC20", + "openzeppelin.token.erc20.library.ERC20._mint" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 34, + "end_line": 185, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/3.9.13/envs/kakarot/lib/python3.9/site-packages/openzeppelin/token/erc20/library.cairo" + }, + "start_col": 13, + "start_line": 185 + } + }, + "836": { + "accessible_scopes": [ + "openzeppelin.token.erc20.library", + "openzeppelin.token.erc20.library.ERC20", + "openzeppelin.token.erc20.library.ERC20._mint" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 24, + "end_line": 182, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/3.9.13/envs/kakarot/lib/python3.9/site-packages/openzeppelin/token/erc20/library.cairo" + }, + "parent_location": [ + { + "end_col": 38, + "end_line": 189, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/3.9.13/envs/kakarot/lib/python3.9/site-packages/openzeppelin/token/erc20/library.cairo" + }, + "start_col": 29, + "start_line": 189 + }, + "While expanding the reference 'recipient' in:" + ], + "start_col": 9, + "start_line": 182 + } + }, + "837": { + "accessible_scopes": [ + "openzeppelin.token.erc20.library", + "openzeppelin.token.erc20.library.ERC20", + "openzeppelin.token.erc20.library.ERC20._mint" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 39, + "end_line": 189, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/3.9.13/envs/kakarot/lib/python3.9/site-packages/openzeppelin/token/erc20/library.cairo" + }, + "start_col": 13, + "start_line": 189 + } + }, + "839": { + "accessible_scopes": [ + "openzeppelin.token.erc20.library", + "openzeppelin.token.erc20.library.ERC20", + "openzeppelin.token.erc20.library.ERC20._mint" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 34, + "end_line": 181, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/3.9.13/envs/kakarot/lib/python3.9/site-packages/openzeppelin/token/erc20/library.cairo" + }, + "parent_location": [ + { + "end_col": 33, + "end_line": 13, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC20_total_supply/decl.cairo" + }, + "parent_location": [ + { + "end_col": 58, + "end_line": 192, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/3.9.13/envs/kakarot/lib/python3.9/site-packages/openzeppelin/token/erc20/library.cairo" + }, + "start_col": 33, + "start_line": 192 + }, + "While trying to retrieve the implicit argument 'syscall_ptr' in:" + ], + "start_col": 15, + "start_line": 13 + }, + "While expanding the reference 'syscall_ptr' in:" + ], + "start_col": 16, + "start_line": 181 + } + }, + "840": { + "accessible_scopes": [ + "openzeppelin.token.erc20.library", + "openzeppelin.token.erc20.library.ERC20", + "openzeppelin.token.erc20.library.ERC20._mint" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 62, + "end_line": 181, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/3.9.13/envs/kakarot/lib/python3.9/site-packages/openzeppelin/token/erc20/library.cairo" + }, + "parent_location": [ + { + "end_col": 61, + "end_line": 13, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC20_total_supply/decl.cairo" + }, + "parent_location": [ + { + "end_col": 58, + "end_line": 192, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/3.9.13/envs/kakarot/lib/python3.9/site-packages/openzeppelin/token/erc20/library.cairo" + }, + "start_col": 33, + "start_line": 192 + }, + "While trying to retrieve the implicit argument 'pedersen_ptr' in:" + ], + "start_col": 35, + "start_line": 13 + }, + "While expanding the reference 'pedersen_ptr' in:" + ], + "start_col": 36, + "start_line": 181 + } + }, + "841": { + "accessible_scopes": [ + "openzeppelin.token.erc20.library", + "openzeppelin.token.erc20.library.ERC20", + "openzeppelin.token.erc20.library.ERC20._mint" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 35, + "end_line": 21, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/3.9.13/envs/kakarot/lib/python3.9/site-packages/starkware/cairo/common/uint256.cairo" + }, + "parent_location": [ + { + "end_col": 34, + "end_line": 185, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/3.9.13/envs/kakarot/lib/python3.9/site-packages/openzeppelin/token/erc20/library.cairo" + }, + "parent_location": [ + { + "end_col": 78, + "end_line": 13, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC20_total_supply/decl.cairo" + }, + "parent_location": [ + { + "end_col": 58, + "end_line": 192, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/3.9.13/envs/kakarot/lib/python3.9/site-packages/openzeppelin/token/erc20/library.cairo" + }, + "start_col": 33, + "start_line": 192 + }, + "While trying to retrieve the implicit argument 'range_check_ptr' in:" + ], + "start_col": 63, + "start_line": 13 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 13, + "start_line": 185 + }, + "While trying to update the implicit return value 'range_check_ptr' in:" + ], + "start_col": 20, + "start_line": 21 + } + }, + "842": { + "accessible_scopes": [ + "openzeppelin.token.erc20.library", + "openzeppelin.token.erc20.library.ERC20", + "openzeppelin.token.erc20.library.ERC20._mint" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 58, + "end_line": 192, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/3.9.13/envs/kakarot/lib/python3.9/site-packages/openzeppelin/token/erc20/library.cairo" + }, + "start_col": 33, + "start_line": 192 + } + }, + "844": { + "accessible_scopes": [ + "openzeppelin.token.erc20.library", + "openzeppelin.token.erc20.library.ERC20", + "openzeppelin.token.erc20.library.ERC20._mint" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 41, + "end_line": 182, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/3.9.13/envs/kakarot/lib/python3.9/site-packages/openzeppelin/token/erc20/library.cairo" + }, + "parent_location": [ + { + "end_col": 71, + "end_line": 194, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/3.9.13/envs/kakarot/lib/python3.9/site-packages/openzeppelin/token/erc20/library.cairo" + }, + "start_col": 65, + "start_line": 194 + }, + "While expanding the reference 'amount' in:" + ], + "start_col": 26, + "start_line": 182 + } + }, + "845": { + "accessible_scopes": [ + "openzeppelin.token.erc20.library", + "openzeppelin.token.erc20.library.ERC20", + "openzeppelin.token.erc20.library.ERC20._mint" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 41, + "end_line": 182, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/3.9.13/envs/kakarot/lib/python3.9/site-packages/openzeppelin/token/erc20/library.cairo" + }, + "parent_location": [ + { + "end_col": 71, + "end_line": 194, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/3.9.13/envs/kakarot/lib/python3.9/site-packages/openzeppelin/token/erc20/library.cairo" + }, + "start_col": 65, + "start_line": 194 + }, + "While expanding the reference 'amount' in:" + ], + "start_col": 26, + "start_line": 182 + } + }, + "846": { + "accessible_scopes": [ + "openzeppelin.token.erc20.library", + "openzeppelin.token.erc20.library.ERC20", + "openzeppelin.token.erc20.library.ERC20._mint" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 72, + "end_line": 194, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/3.9.13/envs/kakarot/lib/python3.9/site-packages/openzeppelin/token/erc20/library.cairo" + }, + "start_col": 41, + "start_line": 194 + } + }, + "848": { + "accessible_scopes": [ + "openzeppelin.token.erc20.library", + "openzeppelin.token.erc20.library.ERC20", + "openzeppelin.token.erc20.library.ERC20._mint" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 33, + "end_line": 13, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC20_total_supply/decl.cairo" + }, + "parent_location": [ + { + "end_col": 58, + "end_line": 192, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/3.9.13/envs/kakarot/lib/python3.9/site-packages/openzeppelin/token/erc20/library.cairo" + }, + "parent_location": [ + { + "end_col": 34, + "end_line": 21, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC20_total_supply/decl.cairo" + }, + "parent_location": [ + { + "end_col": 45, + "end_line": 196, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/3.9.13/envs/kakarot/lib/python3.9/site-packages/openzeppelin/token/erc20/library.cairo" + }, + "start_col": 9, + "start_line": 196 + }, + "While trying to retrieve the implicit argument 'syscall_ptr' in:" + ], + "start_col": 16, + "start_line": 21 + }, + "While expanding the reference 'syscall_ptr' in:" + ], + "start_col": 33, + "start_line": 192 + }, + "While trying to update the implicit return value 'syscall_ptr' in:" + ], + "start_col": 15, + "start_line": 13 + } + }, + "849": { + "accessible_scopes": [ + "openzeppelin.token.erc20.library", + "openzeppelin.token.erc20.library.ERC20", + "openzeppelin.token.erc20.library.ERC20._mint" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 61, + "end_line": 13, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC20_total_supply/decl.cairo" + }, + "parent_location": [ + { + "end_col": 58, + "end_line": 192, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/3.9.13/envs/kakarot/lib/python3.9/site-packages/openzeppelin/token/erc20/library.cairo" + }, + "parent_location": [ + { + "end_col": 62, + "end_line": 21, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC20_total_supply/decl.cairo" + }, + "parent_location": [ + { + "end_col": 45, + "end_line": 196, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/3.9.13/envs/kakarot/lib/python3.9/site-packages/openzeppelin/token/erc20/library.cairo" + }, + "start_col": 9, + "start_line": 196 + }, + "While trying to retrieve the implicit argument 'pedersen_ptr' in:" + ], + "start_col": 36, + "start_line": 21 + }, + "While expanding the reference 'pedersen_ptr' in:" + ], + "start_col": 33, + "start_line": 192 + }, + "While trying to update the implicit return value 'pedersen_ptr' in:" + ], + "start_col": 35, + "start_line": 13 + } + }, + "850": { + "accessible_scopes": [ + "openzeppelin.token.erc20.library", + "openzeppelin.token.erc20.library.ERC20", + "openzeppelin.token.erc20.library.ERC20._mint" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 29, + "end_line": 23, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/3.9.13/envs/kakarot/lib/python3.9/site-packages/openzeppelin/security/safemath/library.cairo" + }, + "parent_location": [ + { + "end_col": 72, + "end_line": 194, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/3.9.13/envs/kakarot/lib/python3.9/site-packages/openzeppelin/token/erc20/library.cairo" + }, + "parent_location": [ + { + "end_col": 79, + "end_line": 21, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC20_total_supply/decl.cairo" + }, + "parent_location": [ + { + "end_col": 45, + "end_line": 196, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/3.9.13/envs/kakarot/lib/python3.9/site-packages/openzeppelin/token/erc20/library.cairo" + }, + "start_col": 9, + "start_line": 196 + }, + "While trying to retrieve the implicit argument 'range_check_ptr' in:" + ], + "start_col": 64, + "start_line": 21 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 41, + "start_line": 194 + }, + "While trying to update the implicit return value 'range_check_ptr' in:" + ], + "start_col": 14, + "start_line": 23 + } + }, + "851": { + "accessible_scopes": [ + "openzeppelin.token.erc20.library", + "openzeppelin.token.erc20.library.ERC20", + "openzeppelin.token.erc20.library.ERC20._mint" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 37, + "end_line": 194, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/3.9.13/envs/kakarot/lib/python3.9/site-packages/openzeppelin/token/erc20/library.cairo" + }, + "parent_location": [ + { + "end_col": 44, + "end_line": 196, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/3.9.13/envs/kakarot/lib/python3.9/site-packages/openzeppelin/token/erc20/library.cairo" + }, + "start_col": 34, + "start_line": 196 + }, + "While expanding the reference 'new_supply' in:" + ], + "start_col": 18, + "start_line": 194 + } + }, + "852": { + "accessible_scopes": [ + "openzeppelin.token.erc20.library", + "openzeppelin.token.erc20.library.ERC20", + "openzeppelin.token.erc20.library.ERC20._mint" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 37, + "end_line": 194, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/3.9.13/envs/kakarot/lib/python3.9/site-packages/openzeppelin/token/erc20/library.cairo" + }, + "parent_location": [ + { + "end_col": 44, + "end_line": 196, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/3.9.13/envs/kakarot/lib/python3.9/site-packages/openzeppelin/token/erc20/library.cairo" + }, + "start_col": 34, + "start_line": 196 + }, + "While expanding the reference 'new_supply' in:" + ], + "start_col": 18, + "start_line": 194 + } + }, + "853": { + "accessible_scopes": [ + "openzeppelin.token.erc20.library", + "openzeppelin.token.erc20.library.ERC20", + "openzeppelin.token.erc20.library.ERC20._mint" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 45, + "end_line": 196, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/3.9.13/envs/kakarot/lib/python3.9/site-packages/openzeppelin/token/erc20/library.cairo" + }, + "start_col": 9, + "start_line": 196 + } + }, + "855": { + "accessible_scopes": [ + "openzeppelin.token.erc20.library", + "openzeppelin.token.erc20.library.ERC20", + "openzeppelin.token.erc20.library.ERC20._mint" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 24, + "end_line": 182, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/3.9.13/envs/kakarot/lib/python3.9/site-packages/openzeppelin/token/erc20/library.cairo" + }, + "parent_location": [ + { + "end_col": 71, + "end_line": 198, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/3.9.13/envs/kakarot/lib/python3.9/site-packages/openzeppelin/token/erc20/library.cairo" + }, + "start_col": 62, + "start_line": 198 + }, + "While expanding the reference 'recipient' in:" + ], + "start_col": 9, + "start_line": 182 + } + }, + "856": { + "accessible_scopes": [ + "openzeppelin.token.erc20.library", + "openzeppelin.token.erc20.library.ERC20", + "openzeppelin.token.erc20.library.ERC20._mint" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 72, + "end_line": 198, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/3.9.13/envs/kakarot/lib/python3.9/site-packages/openzeppelin/token/erc20/library.cairo" + }, + "start_col": 34, + "start_line": 198 + } + }, + "858": { + "accessible_scopes": [ + "openzeppelin.token.erc20.library", + "openzeppelin.token.erc20.library.ERC20", + "openzeppelin.token.erc20.library.ERC20._mint" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 41, + "end_line": 182, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/3.9.13/envs/kakarot/lib/python3.9/site-packages/openzeppelin/token/erc20/library.cairo" + }, + "parent_location": [ + { + "end_col": 69, + "end_line": 201, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/3.9.13/envs/kakarot/lib/python3.9/site-packages/openzeppelin/token/erc20/library.cairo" + }, + "start_col": 63, + "start_line": 201 + }, + "While expanding the reference 'amount' in:" + ], + "start_col": 26, + "start_line": 182 + } + }, + "859": { + "accessible_scopes": [ + "openzeppelin.token.erc20.library", + "openzeppelin.token.erc20.library.ERC20", + "openzeppelin.token.erc20.library.ERC20._mint" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 41, + "end_line": 182, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/3.9.13/envs/kakarot/lib/python3.9/site-packages/openzeppelin/token/erc20/library.cairo" + }, + "parent_location": [ + { + "end_col": 69, + "end_line": 201, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/3.9.13/envs/kakarot/lib/python3.9/site-packages/openzeppelin/token/erc20/library.cairo" + }, + "start_col": 63, + "start_line": 201 + }, + "While expanding the reference 'amount' in:" + ], + "start_col": 26, + "start_line": 182 + } + }, + "860": { + "accessible_scopes": [ + "openzeppelin.token.erc20.library", + "openzeppelin.token.erc20.library.ERC20", + "openzeppelin.token.erc20.library.ERC20._mint" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 70, + "end_line": 201, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/3.9.13/envs/kakarot/lib/python3.9/site-packages/openzeppelin/token/erc20/library.cairo" + }, + "start_col": 38, + "start_line": 201 + } + }, + "862": { + "accessible_scopes": [ + "openzeppelin.token.erc20.library", + "openzeppelin.token.erc20.library.ERC20", + "openzeppelin.token.erc20.library.ERC20._mint" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 33, + "end_line": 13, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC20_balances/decl.cairo" + }, + "parent_location": [ + { + "end_col": 72, + "end_line": 198, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/3.9.13/envs/kakarot/lib/python3.9/site-packages/openzeppelin/token/erc20/library.cairo" + }, + "parent_location": [ + { + "end_col": 34, + "end_line": 21, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC20_balances/decl.cairo" + }, + "parent_location": [ + { + "end_col": 53, + "end_line": 202, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/3.9.13/envs/kakarot/lib/python3.9/site-packages/openzeppelin/token/erc20/library.cairo" + }, + "start_col": 9, + "start_line": 202 + }, + "While trying to retrieve the implicit argument 'syscall_ptr' in:" + ], + "start_col": 16, + "start_line": 21 + }, + "While expanding the reference 'syscall_ptr' in:" + ], + "start_col": 34, + "start_line": 198 + }, + "While trying to update the implicit return value 'syscall_ptr' in:" + ], + "start_col": 15, + "start_line": 13 + } + }, + "863": { + "accessible_scopes": [ + "openzeppelin.token.erc20.library", + "openzeppelin.token.erc20.library.ERC20", + "openzeppelin.token.erc20.library.ERC20._mint" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 61, + "end_line": 13, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC20_balances/decl.cairo" + }, + "parent_location": [ + { + "end_col": 72, + "end_line": 198, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/3.9.13/envs/kakarot/lib/python3.9/site-packages/openzeppelin/token/erc20/library.cairo" + }, + "parent_location": [ + { + "end_col": 62, + "end_line": 21, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC20_balances/decl.cairo" + }, + "parent_location": [ + { + "end_col": 53, + "end_line": 202, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/3.9.13/envs/kakarot/lib/python3.9/site-packages/openzeppelin/token/erc20/library.cairo" + }, + "start_col": 9, + "start_line": 202 + }, + "While trying to retrieve the implicit argument 'pedersen_ptr' in:" + ], + "start_col": 36, + "start_line": 21 + }, + "While expanding the reference 'pedersen_ptr' in:" + ], + "start_col": 34, + "start_line": 198 + }, + "While trying to update the implicit return value 'pedersen_ptr' in:" + ], + "start_col": 35, + "start_line": 13 + } + }, + "864": { + "accessible_scopes": [ + "openzeppelin.token.erc20.library", + "openzeppelin.token.erc20.library.ERC20", + "openzeppelin.token.erc20.library.ERC20._mint" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 29, + "end_line": 23, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/3.9.13/envs/kakarot/lib/python3.9/site-packages/openzeppelin/security/safemath/library.cairo" + }, + "parent_location": [ + { + "end_col": 70, + "end_line": 201, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/3.9.13/envs/kakarot/lib/python3.9/site-packages/openzeppelin/token/erc20/library.cairo" + }, + "parent_location": [ + { + "end_col": 79, + "end_line": 21, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC20_balances/decl.cairo" + }, + "parent_location": [ + { + "end_col": 53, + "end_line": 202, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/3.9.13/envs/kakarot/lib/python3.9/site-packages/openzeppelin/token/erc20/library.cairo" + }, + "start_col": 9, + "start_line": 202 + }, + "While trying to retrieve the implicit argument 'range_check_ptr' in:" + ], + "start_col": 64, + "start_line": 21 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 38, + "start_line": 201 + }, + "While trying to update the implicit return value 'range_check_ptr' in:" + ], + "start_col": 14, + "start_line": 23 + } + }, + "865": { + "accessible_scopes": [ + "openzeppelin.token.erc20.library", + "openzeppelin.token.erc20.library.ERC20", + "openzeppelin.token.erc20.library.ERC20._mint" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 24, + "end_line": 182, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/3.9.13/envs/kakarot/lib/python3.9/site-packages/openzeppelin/token/erc20/library.cairo" + }, + "parent_location": [ + { + "end_col": 39, + "end_line": 202, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/3.9.13/envs/kakarot/lib/python3.9/site-packages/openzeppelin/token/erc20/library.cairo" + }, + "start_col": 30, + "start_line": 202 + }, + "While expanding the reference 'recipient' in:" + ], + "start_col": 9, + "start_line": 182 + } + }, + "866": { + "accessible_scopes": [ + "openzeppelin.token.erc20.library", + "openzeppelin.token.erc20.library.ERC20", + "openzeppelin.token.erc20.library.ERC20._mint" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 34, + "end_line": 201, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/3.9.13/envs/kakarot/lib/python3.9/site-packages/openzeppelin/token/erc20/library.cairo" + }, + "parent_location": [ + { + "end_col": 52, + "end_line": 202, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/3.9.13/envs/kakarot/lib/python3.9/site-packages/openzeppelin/token/erc20/library.cairo" + }, + "start_col": 41, + "start_line": 202 + }, + "While expanding the reference 'new_balance' in:" + ], + "start_col": 14, + "start_line": 201 + } + }, + "867": { + "accessible_scopes": [ + "openzeppelin.token.erc20.library", + "openzeppelin.token.erc20.library.ERC20", + "openzeppelin.token.erc20.library.ERC20._mint" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 34, + "end_line": 201, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/3.9.13/envs/kakarot/lib/python3.9/site-packages/openzeppelin/token/erc20/library.cairo" + }, + "parent_location": [ + { + "end_col": 52, + "end_line": 202, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/3.9.13/envs/kakarot/lib/python3.9/site-packages/openzeppelin/token/erc20/library.cairo" + }, + "start_col": 41, + "start_line": 202 + }, + "While expanding the reference 'new_balance' in:" + ], + "start_col": 14, + "start_line": 201 + } + }, + "868": { + "accessible_scopes": [ + "openzeppelin.token.erc20.library", + "openzeppelin.token.erc20.library.ERC20", + "openzeppelin.token.erc20.library.ERC20._mint" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 53, + "end_line": 202, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/3.9.13/envs/kakarot/lib/python3.9/site-packages/openzeppelin/token/erc20/library.cairo" + }, + "start_col": 9, + "start_line": 202 + } + }, + "870": { + "accessible_scopes": [ + "openzeppelin.token.erc20.library", + "openzeppelin.token.erc20.library.ERC20", + "openzeppelin.token.erc20.library.ERC20._mint" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 34, + "end_line": 21, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC20_balances/decl.cairo" + }, + "parent_location": [ + { + "end_col": 53, + "end_line": 202, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/3.9.13/envs/kakarot/lib/python3.9/site-packages/openzeppelin/token/erc20/library.cairo" + }, + "parent_location": [ + { + "end_col": 29, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/event/Transfer/a7a8ae41be29ac9f4f6c3b7837c448d787ca051dd1ade98f409e54d33d112504.cairo" + }, + "parent_location": [ + { + "end_col": 14, + "end_line": 20, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/3.9.13/envs/kakarot/lib/python3.9/site-packages/openzeppelin/token/erc20/library.cairo" + }, + "parent_location": [ + { + "end_col": 44, + "end_line": 204, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/3.9.13/envs/kakarot/lib/python3.9/site-packages/openzeppelin/token/erc20/library.cairo" + }, + "start_col": 9, + "start_line": 204 + }, + "While trying to retrieve the implicit argument 'syscall_ptr' in:" + ], + "start_col": 6, + "start_line": 20 + }, + "While handling event:" + ], + "start_col": 11, + "start_line": 1 + }, + "While expanding the reference 'syscall_ptr' in:" + ], + "start_col": 9, + "start_line": 202 + }, + "While trying to update the implicit return value 'syscall_ptr' in:" + ], + "start_col": 16, + "start_line": 21 + } + }, + "871": { + "accessible_scopes": [ + "openzeppelin.token.erc20.library", + "openzeppelin.token.erc20.library.ERC20", + "openzeppelin.token.erc20.library.ERC20._mint" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 79, + "end_line": 21, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC20_balances/decl.cairo" + }, + "parent_location": [ + { + "end_col": 53, + "end_line": 202, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/3.9.13/envs/kakarot/lib/python3.9/site-packages/openzeppelin/token/erc20/library.cairo" + }, + "parent_location": [ + { + "end_col": 46, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/event/Transfer/a7a8ae41be29ac9f4f6c3b7837c448d787ca051dd1ade98f409e54d33d112504.cairo" + }, + "parent_location": [ + { + "end_col": 14, + "end_line": 20, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/3.9.13/envs/kakarot/lib/python3.9/site-packages/openzeppelin/token/erc20/library.cairo" + }, + "parent_location": [ + { + "end_col": 44, + "end_line": 204, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/3.9.13/envs/kakarot/lib/python3.9/site-packages/openzeppelin/token/erc20/library.cairo" + }, + "start_col": 9, + "start_line": 204 + }, + "While trying to retrieve the implicit argument 'range_check_ptr' in:" + ], + "start_col": 6, + "start_line": 20 + }, + "While handling event:" + ], + "start_col": 31, + "start_line": 1 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 9, + "start_line": 202 + }, + "While trying to update the implicit return value 'range_check_ptr' in:" + ], + "start_col": 64, + "start_line": 21 + } + }, + "872": { + "accessible_scopes": [ + "openzeppelin.token.erc20.library", + "openzeppelin.token.erc20.library.ERC20", + "openzeppelin.token.erc20.library.ERC20._mint" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 24, + "end_line": 204, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/3.9.13/envs/kakarot/lib/python3.9/site-packages/openzeppelin/token/erc20/library.cairo" + }, + "start_col": 23, + "start_line": 204 + } + }, + "874": { + "accessible_scopes": [ + "openzeppelin.token.erc20.library", + "openzeppelin.token.erc20.library.ERC20", + "openzeppelin.token.erc20.library.ERC20._mint" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 24, + "end_line": 182, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/3.9.13/envs/kakarot/lib/python3.9/site-packages/openzeppelin/token/erc20/library.cairo" + }, + "parent_location": [ + { + "end_col": 35, + "end_line": 204, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/3.9.13/envs/kakarot/lib/python3.9/site-packages/openzeppelin/token/erc20/library.cairo" + }, + "start_col": 26, + "start_line": 204 + }, + "While expanding the reference 'recipient' in:" + ], + "start_col": 9, + "start_line": 182 + } + }, + "875": { + "accessible_scopes": [ + "openzeppelin.token.erc20.library", + "openzeppelin.token.erc20.library.ERC20", + "openzeppelin.token.erc20.library.ERC20._mint" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 41, + "end_line": 182, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/3.9.13/envs/kakarot/lib/python3.9/site-packages/openzeppelin/token/erc20/library.cairo" + }, + "parent_location": [ + { + "end_col": 43, + "end_line": 204, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/3.9.13/envs/kakarot/lib/python3.9/site-packages/openzeppelin/token/erc20/library.cairo" + }, + "start_col": 37, + "start_line": 204 + }, + "While expanding the reference 'amount' in:" + ], + "start_col": 26, + "start_line": 182 + } + }, + "876": { + "accessible_scopes": [ + "openzeppelin.token.erc20.library", + "openzeppelin.token.erc20.library.ERC20", + "openzeppelin.token.erc20.library.ERC20._mint" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 41, + "end_line": 182, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/3.9.13/envs/kakarot/lib/python3.9/site-packages/openzeppelin/token/erc20/library.cairo" + }, + "parent_location": [ + { + "end_col": 43, + "end_line": 204, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/3.9.13/envs/kakarot/lib/python3.9/site-packages/openzeppelin/token/erc20/library.cairo" + }, + "start_col": 37, + "start_line": 204 + }, + "While expanding the reference 'amount' in:" + ], + "start_col": 26, + "start_line": 182 + } + }, + "877": { + "accessible_scopes": [ + "openzeppelin.token.erc20.library", + "openzeppelin.token.erc20.library.ERC20", + "openzeppelin.token.erc20.library.ERC20._mint" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 44, + "end_line": 204, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/3.9.13/envs/kakarot/lib/python3.9/site-packages/openzeppelin/token/erc20/library.cairo" + }, + "start_col": 9, + "start_line": 204 + } + }, + "879": { + "accessible_scopes": [ + "openzeppelin.token.erc20.library", + "openzeppelin.token.erc20.library.ERC20", + "openzeppelin.token.erc20.library.ERC20._mint" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 29, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/event/Transfer/a7a8ae41be29ac9f4f6c3b7837c448d787ca051dd1ade98f409e54d33d112504.cairo" + }, + "parent_location": [ + { + "end_col": 14, + "end_line": 20, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/3.9.13/envs/kakarot/lib/python3.9/site-packages/openzeppelin/token/erc20/library.cairo" + }, + "parent_location": [ + { + "end_col": 44, + "end_line": 204, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/3.9.13/envs/kakarot/lib/python3.9/site-packages/openzeppelin/token/erc20/library.cairo" + }, + "parent_location": [ + { + "end_col": 34, + "end_line": 181, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/3.9.13/envs/kakarot/lib/python3.9/site-packages/openzeppelin/token/erc20/library.cairo" + }, + "parent_location": [ + { + "end_col": 19, + "end_line": 205, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/3.9.13/envs/kakarot/lib/python3.9/site-packages/openzeppelin/token/erc20/library.cairo" + }, + "start_col": 9, + "start_line": 205 + }, + "While trying to retrieve the implicit argument 'syscall_ptr' in:" + ], + "start_col": 16, + "start_line": 181 + }, + "While expanding the reference 'syscall_ptr' in:" + ], + "start_col": 9, + "start_line": 204 + }, + "While trying to update the implicit return value 'syscall_ptr' in:" + ], + "start_col": 6, + "start_line": 20 + }, + "While handling event:" + ], + "start_col": 11, + "start_line": 1 + } + }, + "880": { + "accessible_scopes": [ + "openzeppelin.token.erc20.library", + "openzeppelin.token.erc20.library.ERC20", + "openzeppelin.token.erc20.library.ERC20._mint" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 62, + "end_line": 21, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC20_balances/decl.cairo" + }, + "parent_location": [ + { + "end_col": 53, + "end_line": 202, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/3.9.13/envs/kakarot/lib/python3.9/site-packages/openzeppelin/token/erc20/library.cairo" + }, + "parent_location": [ + { + "end_col": 62, + "end_line": 181, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/3.9.13/envs/kakarot/lib/python3.9/site-packages/openzeppelin/token/erc20/library.cairo" + }, + "parent_location": [ + { + "end_col": 19, + "end_line": 205, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/3.9.13/envs/kakarot/lib/python3.9/site-packages/openzeppelin/token/erc20/library.cairo" + }, + "start_col": 9, + "start_line": 205 + }, + "While trying to retrieve the implicit argument 'pedersen_ptr' in:" + ], + "start_col": 36, + "start_line": 181 + }, + "While expanding the reference 'pedersen_ptr' in:" + ], + "start_col": 9, + "start_line": 202 + }, + "While trying to update the implicit return value 'pedersen_ptr' in:" + ], + "start_col": 36, + "start_line": 21 + } + }, + "881": { + "accessible_scopes": [ + "openzeppelin.token.erc20.library", + "openzeppelin.token.erc20.library.ERC20", + "openzeppelin.token.erc20.library.ERC20._mint" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 46, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/event/Transfer/a7a8ae41be29ac9f4f6c3b7837c448d787ca051dd1ade98f409e54d33d112504.cairo" + }, + "parent_location": [ + { + "end_col": 14, + "end_line": 20, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/3.9.13/envs/kakarot/lib/python3.9/site-packages/openzeppelin/token/erc20/library.cairo" + }, + "parent_location": [ + { + "end_col": 44, + "end_line": 204, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/3.9.13/envs/kakarot/lib/python3.9/site-packages/openzeppelin/token/erc20/library.cairo" + }, + "parent_location": [ + { + "end_col": 79, + "end_line": 181, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/3.9.13/envs/kakarot/lib/python3.9/site-packages/openzeppelin/token/erc20/library.cairo" + }, + "parent_location": [ + { + "end_col": 19, + "end_line": 205, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/3.9.13/envs/kakarot/lib/python3.9/site-packages/openzeppelin/token/erc20/library.cairo" + }, + "start_col": 9, + "start_line": 205 + }, + "While trying to retrieve the implicit argument 'range_check_ptr' in:" + ], + "start_col": 64, + "start_line": 181 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 9, + "start_line": 204 + }, + "While trying to update the implicit return value 'range_check_ptr' in:" + ], + "start_col": 6, + "start_line": 20 + }, + "While handling event:" + ], + "start_col": 31, + "start_line": 1 + } + }, + "882": { + "accessible_scopes": [ + "openzeppelin.token.erc20.library", + "openzeppelin.token.erc20.library.ERC20", + "openzeppelin.token.erc20.library.ERC20._mint" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 19, + "end_line": 205, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/3.9.13/envs/kakarot/lib/python3.9/site-packages/openzeppelin/token/erc20/library.cairo" + }, + "start_col": 9, + "start_line": 205 + } + }, + "883": { + "accessible_scopes": [ + "openzeppelin.token.erc20.library", + "openzeppelin.token.erc20.library.ERC20", + "openzeppelin.token.erc20.library.ERC20._transfer" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 83, + "end_line": 233, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/3.9.13/envs/kakarot/lib/python3.9/site-packages/openzeppelin/token/erc20/library.cairo" + }, + "parent_location": [ + { + "end_col": 35, + "end_line": 21, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/3.9.13/envs/kakarot/lib/python3.9/site-packages/starkware/cairo/common/uint256.cairo" + }, + "parent_location": [ + { + "end_col": 34, + "end_line": 237, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/3.9.13/envs/kakarot/lib/python3.9/site-packages/openzeppelin/token/erc20/library.cairo" + }, + "start_col": 13, + "start_line": 237 + }, + "While trying to retrieve the implicit argument 'range_check_ptr' in:" + ], + "start_col": 20, + "start_line": 21 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 68, + "start_line": 233 + } + }, + "884": { + "accessible_scopes": [ + "openzeppelin.token.erc20.library", + "openzeppelin.token.erc20.library.ERC20", + "openzeppelin.token.erc20.library.ERC20._transfer" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 55, + "end_line": 234, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/3.9.13/envs/kakarot/lib/python3.9/site-packages/openzeppelin/token/erc20/library.cairo" + }, + "parent_location": [ + { + "end_col": 33, + "end_line": 237, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/3.9.13/envs/kakarot/lib/python3.9/site-packages/openzeppelin/token/erc20/library.cairo" + }, + "start_col": 27, + "start_line": 237 + }, + "While expanding the reference 'amount' in:" + ], + "start_col": 40, + "start_line": 234 + } + }, + "885": { + "accessible_scopes": [ + "openzeppelin.token.erc20.library", + "openzeppelin.token.erc20.library.ERC20", + "openzeppelin.token.erc20.library.ERC20._transfer" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 55, + "end_line": 234, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/3.9.13/envs/kakarot/lib/python3.9/site-packages/openzeppelin/token/erc20/library.cairo" + }, + "parent_location": [ + { + "end_col": 33, + "end_line": 237, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/3.9.13/envs/kakarot/lib/python3.9/site-packages/openzeppelin/token/erc20/library.cairo" + }, + "start_col": 27, + "start_line": 237 + }, + "While expanding the reference 'amount' in:" + ], + "start_col": 40, + "start_line": 234 + } + }, + "886": { + "accessible_scopes": [ + "openzeppelin.token.erc20.library", + "openzeppelin.token.erc20.library.ERC20", + "openzeppelin.token.erc20.library.ERC20._transfer" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 34, + "end_line": 237, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/3.9.13/envs/kakarot/lib/python3.9/site-packages/openzeppelin/token/erc20/library.cairo" + }, + "start_col": 13, + "start_line": 237 + } + }, + "888": { + "accessible_scopes": [ + "openzeppelin.token.erc20.library", + "openzeppelin.token.erc20.library.ERC20", + "openzeppelin.token.erc20.library.ERC20._transfer" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 21, + "end_line": 234, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/3.9.13/envs/kakarot/lib/python3.9/site-packages/openzeppelin/token/erc20/library.cairo" + }, + "parent_location": [ + { + "end_col": 35, + "end_line": 241, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/3.9.13/envs/kakarot/lib/python3.9/site-packages/openzeppelin/token/erc20/library.cairo" + }, + "start_col": 29, + "start_line": 241 + }, + "While expanding the reference 'sender' in:" + ], + "start_col": 9, + "start_line": 234 + } + }, + "889": { + "accessible_scopes": [ + "openzeppelin.token.erc20.library", + "openzeppelin.token.erc20.library.ERC20", + "openzeppelin.token.erc20.library.ERC20._transfer" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 36, + "end_line": 241, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/3.9.13/envs/kakarot/lib/python3.9/site-packages/openzeppelin/token/erc20/library.cairo" + }, + "start_col": 13, + "start_line": 241 + } + }, + "891": { + "accessible_scopes": [ + "openzeppelin.token.erc20.library", + "openzeppelin.token.erc20.library.ERC20", + "openzeppelin.token.erc20.library.ERC20._transfer" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 38, + "end_line": 234, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/3.9.13/envs/kakarot/lib/python3.9/site-packages/openzeppelin/token/erc20/library.cairo" + }, + "parent_location": [ + { + "end_col": 38, + "end_line": 245, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/3.9.13/envs/kakarot/lib/python3.9/site-packages/openzeppelin/token/erc20/library.cairo" + }, + "start_col": 29, + "start_line": 245 + }, + "While expanding the reference 'recipient' in:" + ], + "start_col": 23, + "start_line": 234 + } + }, + "892": { + "accessible_scopes": [ + "openzeppelin.token.erc20.library", + "openzeppelin.token.erc20.library.ERC20", + "openzeppelin.token.erc20.library.ERC20._transfer" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 39, + "end_line": 245, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/3.9.13/envs/kakarot/lib/python3.9/site-packages/openzeppelin/token/erc20/library.cairo" + }, + "start_col": 13, + "start_line": 245 + } + }, + "894": { + "accessible_scopes": [ + "openzeppelin.token.erc20.library", + "openzeppelin.token.erc20.library.ERC20", + "openzeppelin.token.erc20.library.ERC20._transfer" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 38, + "end_line": 233, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/3.9.13/envs/kakarot/lib/python3.9/site-packages/openzeppelin/token/erc20/library.cairo" + }, + "parent_location": [ + { + "end_col": 33, + "end_line": 13, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC20_balances/decl.cairo" + }, + "parent_location": [ + { + "end_col": 76, + "end_line": 248, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/3.9.13/envs/kakarot/lib/python3.9/site-packages/openzeppelin/token/erc20/library.cairo" + }, + "start_col": 41, + "start_line": 248 + }, + "While trying to retrieve the implicit argument 'syscall_ptr' in:" + ], + "start_col": 15, + "start_line": 13 + }, + "While expanding the reference 'syscall_ptr' in:" + ], + "start_col": 20, + "start_line": 233 + } + }, + "895": { + "accessible_scopes": [ + "openzeppelin.token.erc20.library", + "openzeppelin.token.erc20.library.ERC20", + "openzeppelin.token.erc20.library.ERC20._transfer" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 66, + "end_line": 233, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/3.9.13/envs/kakarot/lib/python3.9/site-packages/openzeppelin/token/erc20/library.cairo" + }, + "parent_location": [ + { + "end_col": 61, + "end_line": 13, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC20_balances/decl.cairo" + }, + "parent_location": [ + { + "end_col": 76, + "end_line": 248, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/3.9.13/envs/kakarot/lib/python3.9/site-packages/openzeppelin/token/erc20/library.cairo" + }, + "start_col": 41, + "start_line": 248 + }, + "While trying to retrieve the implicit argument 'pedersen_ptr' in:" + ], + "start_col": 35, + "start_line": 13 + }, + "While expanding the reference 'pedersen_ptr' in:" + ], + "start_col": 40, + "start_line": 233 + } + }, + "896": { + "accessible_scopes": [ + "openzeppelin.token.erc20.library", + "openzeppelin.token.erc20.library.ERC20", + "openzeppelin.token.erc20.library.ERC20._transfer" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 35, + "end_line": 21, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/3.9.13/envs/kakarot/lib/python3.9/site-packages/starkware/cairo/common/uint256.cairo" + }, + "parent_location": [ + { + "end_col": 34, + "end_line": 237, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/3.9.13/envs/kakarot/lib/python3.9/site-packages/openzeppelin/token/erc20/library.cairo" + }, + "parent_location": [ + { + "end_col": 78, + "end_line": 13, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC20_balances/decl.cairo" + }, + "parent_location": [ + { + "end_col": 76, + "end_line": 248, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/3.9.13/envs/kakarot/lib/python3.9/site-packages/openzeppelin/token/erc20/library.cairo" + }, + "start_col": 41, + "start_line": 248 + }, + "While trying to retrieve the implicit argument 'range_check_ptr' in:" + ], + "start_col": 63, + "start_line": 13 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 13, + "start_line": 237 + }, + "While trying to update the implicit return value 'range_check_ptr' in:" + ], + "start_col": 20, + "start_line": 21 + } + }, + "897": { + "accessible_scopes": [ + "openzeppelin.token.erc20.library", + "openzeppelin.token.erc20.library.ERC20", + "openzeppelin.token.erc20.library.ERC20._transfer" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 21, + "end_line": 234, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/3.9.13/envs/kakarot/lib/python3.9/site-packages/openzeppelin/token/erc20/library.cairo" + }, + "parent_location": [ + { + "end_col": 75, + "end_line": 248, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/3.9.13/envs/kakarot/lib/python3.9/site-packages/openzeppelin/token/erc20/library.cairo" + }, + "start_col": 69, + "start_line": 248 + }, + "While expanding the reference 'sender' in:" + ], + "start_col": 9, + "start_line": 234 + } + }, + "898": { + "accessible_scopes": [ + "openzeppelin.token.erc20.library", + "openzeppelin.token.erc20.library.ERC20", + "openzeppelin.token.erc20.library.ERC20._transfer" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 76, + "end_line": 248, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/3.9.13/envs/kakarot/lib/python3.9/site-packages/openzeppelin/token/erc20/library.cairo" + }, + "start_col": 41, + "start_line": 248 + } + }, + "900": { + "accessible_scopes": [ + "openzeppelin.token.erc20.library", + "openzeppelin.token.erc20.library.ERC20", + "openzeppelin.token.erc20.library.ERC20._transfer" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 55, + "end_line": 234, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/3.9.13/envs/kakarot/lib/python3.9/site-packages/openzeppelin/token/erc20/library.cairo" + }, + "parent_location": [ + { + "end_col": 90, + "end_line": 250, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/3.9.13/envs/kakarot/lib/python3.9/site-packages/openzeppelin/token/erc20/library.cairo" + }, + "start_col": 84, + "start_line": 250 + }, + "While expanding the reference 'amount' in:" + ], + "start_col": 40, + "start_line": 234 + } + }, + "901": { + "accessible_scopes": [ + "openzeppelin.token.erc20.library", + "openzeppelin.token.erc20.library.ERC20", + "openzeppelin.token.erc20.library.ERC20._transfer" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 55, + "end_line": 234, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/3.9.13/envs/kakarot/lib/python3.9/site-packages/openzeppelin/token/erc20/library.cairo" + }, + "parent_location": [ + { + "end_col": 90, + "end_line": 250, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/3.9.13/envs/kakarot/lib/python3.9/site-packages/openzeppelin/token/erc20/library.cairo" + }, + "start_col": 84, + "start_line": 250 + }, + "While expanding the reference 'amount' in:" + ], + "start_col": 40, + "start_line": 234 + } + }, + "902": { + "accessible_scopes": [ + "openzeppelin.token.erc20.library", + "openzeppelin.token.erc20.library.ERC20", + "openzeppelin.token.erc20.library.ERC20._transfer" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 91, + "end_line": 250, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/3.9.13/envs/kakarot/lib/python3.9/site-packages/openzeppelin/token/erc20/library.cairo" + }, + "start_col": 49, + "start_line": 250 + } + }, + "904": { + "accessible_scopes": [ + "openzeppelin.token.erc20.library", + "openzeppelin.token.erc20.library.ERC20", + "openzeppelin.token.erc20.library.ERC20._transfer" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 33, + "end_line": 13, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC20_balances/decl.cairo" + }, + "parent_location": [ + { + "end_col": 76, + "end_line": 248, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/3.9.13/envs/kakarot/lib/python3.9/site-packages/openzeppelin/token/erc20/library.cairo" + }, + "parent_location": [ + { + "end_col": 34, + "end_line": 21, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC20_balances/decl.cairo" + }, + "parent_location": [ + { + "end_col": 57, + "end_line": 253, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/3.9.13/envs/kakarot/lib/python3.9/site-packages/openzeppelin/token/erc20/library.cairo" + }, + "start_col": 9, + "start_line": 253 + }, + "While trying to retrieve the implicit argument 'syscall_ptr' in:" + ], + "start_col": 16, + "start_line": 21 + }, + "While expanding the reference 'syscall_ptr' in:" + ], + "start_col": 41, + "start_line": 248 + }, + "While trying to update the implicit return value 'syscall_ptr' in:" + ], + "start_col": 15, + "start_line": 13 + } + }, + "905": { + "accessible_scopes": [ + "openzeppelin.token.erc20.library", + "openzeppelin.token.erc20.library.ERC20", + "openzeppelin.token.erc20.library.ERC20._transfer" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 61, + "end_line": 13, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC20_balances/decl.cairo" + }, + "parent_location": [ + { + "end_col": 76, + "end_line": 248, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/3.9.13/envs/kakarot/lib/python3.9/site-packages/openzeppelin/token/erc20/library.cairo" + }, + "parent_location": [ + { + "end_col": 62, + "end_line": 21, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC20_balances/decl.cairo" + }, + "parent_location": [ + { + "end_col": 57, + "end_line": 253, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/3.9.13/envs/kakarot/lib/python3.9/site-packages/openzeppelin/token/erc20/library.cairo" + }, + "start_col": 9, + "start_line": 253 + }, + "While trying to retrieve the implicit argument 'pedersen_ptr' in:" + ], + "start_col": 36, + "start_line": 21 + }, + "While expanding the reference 'pedersen_ptr' in:" + ], + "start_col": 41, + "start_line": 248 + }, + "While trying to update the implicit return value 'pedersen_ptr' in:" + ], + "start_col": 35, + "start_line": 13 + } + }, + "906": { + "accessible_scopes": [ + "openzeppelin.token.erc20.library", + "openzeppelin.token.erc20.library.ERC20", + "openzeppelin.token.erc20.library.ERC20._transfer" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 32, + "end_line": 35, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/3.9.13/envs/kakarot/lib/python3.9/site-packages/openzeppelin/security/safemath/library.cairo" + }, + "parent_location": [ + { + "end_col": 91, + "end_line": 250, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/3.9.13/envs/kakarot/lib/python3.9/site-packages/openzeppelin/token/erc20/library.cairo" + }, + "parent_location": [ + { + "end_col": 79, + "end_line": 21, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC20_balances/decl.cairo" + }, + "parent_location": [ + { + "end_col": 57, + "end_line": 253, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/3.9.13/envs/kakarot/lib/python3.9/site-packages/openzeppelin/token/erc20/library.cairo" + }, + "start_col": 9, + "start_line": 253 + }, + "While trying to retrieve the implicit argument 'range_check_ptr' in:" + ], + "start_col": 64, + "start_line": 21 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 49, + "start_line": 250 + }, + "While trying to update the implicit return value 'range_check_ptr' in:" + ], + "start_col": 17, + "start_line": 35 + } + }, + "907": { + "accessible_scopes": [ + "openzeppelin.token.erc20.library", + "openzeppelin.token.erc20.library.ERC20", + "openzeppelin.token.erc20.library.ERC20._transfer" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 21, + "end_line": 234, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/3.9.13/envs/kakarot/lib/python3.9/site-packages/openzeppelin/token/erc20/library.cairo" + }, + "parent_location": [ + { + "end_col": 36, + "end_line": 253, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/3.9.13/envs/kakarot/lib/python3.9/site-packages/openzeppelin/token/erc20/library.cairo" + }, + "start_col": 30, + "start_line": 253 + }, + "While expanding the reference 'sender' in:" + ], + "start_col": 9, + "start_line": 234 + } + }, + "908": { + "accessible_scopes": [ + "openzeppelin.token.erc20.library", + "openzeppelin.token.erc20.library.ERC20", + "openzeppelin.token.erc20.library.ERC20._transfer" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 45, + "end_line": 250, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/3.9.13/envs/kakarot/lib/python3.9/site-packages/openzeppelin/token/erc20/library.cairo" + }, + "parent_location": [ + { + "end_col": 56, + "end_line": 253, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/3.9.13/envs/kakarot/lib/python3.9/site-packages/openzeppelin/token/erc20/library.cairo" + }, + "start_col": 38, + "start_line": 253 + }, + "While expanding the reference 'new_sender_balance' in:" + ], + "start_col": 18, + "start_line": 250 + } + }, + "909": { + "accessible_scopes": [ + "openzeppelin.token.erc20.library", + "openzeppelin.token.erc20.library.ERC20", + "openzeppelin.token.erc20.library.ERC20._transfer" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 45, + "end_line": 250, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/3.9.13/envs/kakarot/lib/python3.9/site-packages/openzeppelin/token/erc20/library.cairo" + }, + "parent_location": [ + { + "end_col": 56, + "end_line": 253, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/3.9.13/envs/kakarot/lib/python3.9/site-packages/openzeppelin/token/erc20/library.cairo" + }, + "start_col": 38, + "start_line": 253 + }, + "While expanding the reference 'new_sender_balance' in:" + ], + "start_col": 18, + "start_line": 250 + } + }, + "910": { + "accessible_scopes": [ + "openzeppelin.token.erc20.library", + "openzeppelin.token.erc20.library.ERC20", + "openzeppelin.token.erc20.library.ERC20._transfer" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 57, + "end_line": 253, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/3.9.13/envs/kakarot/lib/python3.9/site-packages/openzeppelin/token/erc20/library.cairo" + }, + "start_col": 9, + "start_line": 253 + } + }, + "912": { + "accessible_scopes": [ + "openzeppelin.token.erc20.library", + "openzeppelin.token.erc20.library.ERC20", + "openzeppelin.token.erc20.library.ERC20._transfer" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 38, + "end_line": 234, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/3.9.13/envs/kakarot/lib/python3.9/site-packages/openzeppelin/token/erc20/library.cairo" + }, + "parent_location": [ + { + "end_col": 81, + "end_line": 256, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/3.9.13/envs/kakarot/lib/python3.9/site-packages/openzeppelin/token/erc20/library.cairo" + }, + "start_col": 72, + "start_line": 256 + }, + "While expanding the reference 'recipient' in:" + ], + "start_col": 23, + "start_line": 234 + } + }, + "913": { + "accessible_scopes": [ + "openzeppelin.token.erc20.library", + "openzeppelin.token.erc20.library.ERC20", + "openzeppelin.token.erc20.library.ERC20._transfer" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 82, + "end_line": 256, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/3.9.13/envs/kakarot/lib/python3.9/site-packages/openzeppelin/token/erc20/library.cairo" + }, + "start_col": 44, + "start_line": 256 + } + }, + "915": { + "accessible_scopes": [ + "openzeppelin.token.erc20.library", + "openzeppelin.token.erc20.library.ERC20", + "openzeppelin.token.erc20.library.ERC20._transfer" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 55, + "end_line": 234, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/3.9.13/envs/kakarot/lib/python3.9/site-packages/openzeppelin/token/erc20/library.cairo" + }, + "parent_location": [ + { + "end_col": 89, + "end_line": 258, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/3.9.13/envs/kakarot/lib/python3.9/site-packages/openzeppelin/token/erc20/library.cairo" + }, + "start_col": 83, + "start_line": 258 + }, + "While expanding the reference 'amount' in:" + ], + "start_col": 40, + "start_line": 234 + } + }, + "916": { + "accessible_scopes": [ + "openzeppelin.token.erc20.library", + "openzeppelin.token.erc20.library.ERC20", + "openzeppelin.token.erc20.library.ERC20._transfer" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 55, + "end_line": 234, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/3.9.13/envs/kakarot/lib/python3.9/site-packages/openzeppelin/token/erc20/library.cairo" + }, + "parent_location": [ + { + "end_col": 89, + "end_line": 258, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/3.9.13/envs/kakarot/lib/python3.9/site-packages/openzeppelin/token/erc20/library.cairo" + }, + "start_col": 83, + "start_line": 258 + }, + "While expanding the reference 'amount' in:" + ], + "start_col": 40, + "start_line": 234 + } + }, + "917": { + "accessible_scopes": [ + "openzeppelin.token.erc20.library", + "openzeppelin.token.erc20.library.ERC20", + "openzeppelin.token.erc20.library.ERC20._transfer" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 90, + "end_line": 258, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/3.9.13/envs/kakarot/lib/python3.9/site-packages/openzeppelin/token/erc20/library.cairo" + }, + "start_col": 48, + "start_line": 258 + } + }, + "919": { + "accessible_scopes": [ + "openzeppelin.token.erc20.library", + "openzeppelin.token.erc20.library.ERC20", + "openzeppelin.token.erc20.library.ERC20._transfer" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 33, + "end_line": 13, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC20_balances/decl.cairo" + }, + "parent_location": [ + { + "end_col": 82, + "end_line": 256, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/3.9.13/envs/kakarot/lib/python3.9/site-packages/openzeppelin/token/erc20/library.cairo" + }, + "parent_location": [ + { + "end_col": 34, + "end_line": 21, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC20_balances/decl.cairo" + }, + "parent_location": [ + { + "end_col": 63, + "end_line": 259, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/3.9.13/envs/kakarot/lib/python3.9/site-packages/openzeppelin/token/erc20/library.cairo" + }, + "start_col": 9, + "start_line": 259 + }, + "While trying to retrieve the implicit argument 'syscall_ptr' in:" + ], + "start_col": 16, + "start_line": 21 + }, + "While expanding the reference 'syscall_ptr' in:" + ], + "start_col": 44, + "start_line": 256 + }, + "While trying to update the implicit return value 'syscall_ptr' in:" + ], + "start_col": 15, + "start_line": 13 + } + }, + "920": { + "accessible_scopes": [ + "openzeppelin.token.erc20.library", + "openzeppelin.token.erc20.library.ERC20", + "openzeppelin.token.erc20.library.ERC20._transfer" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 61, + "end_line": 13, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC20_balances/decl.cairo" + }, + "parent_location": [ + { + "end_col": 82, + "end_line": 256, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/3.9.13/envs/kakarot/lib/python3.9/site-packages/openzeppelin/token/erc20/library.cairo" + }, + "parent_location": [ + { + "end_col": 62, + "end_line": 21, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC20_balances/decl.cairo" + }, + "parent_location": [ + { + "end_col": 63, + "end_line": 259, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/3.9.13/envs/kakarot/lib/python3.9/site-packages/openzeppelin/token/erc20/library.cairo" + }, + "start_col": 9, + "start_line": 259 + }, + "While trying to retrieve the implicit argument 'pedersen_ptr' in:" + ], + "start_col": 36, + "start_line": 21 + }, + "While expanding the reference 'pedersen_ptr' in:" + ], + "start_col": 44, + "start_line": 256 + }, + "While trying to update the implicit return value 'pedersen_ptr' in:" + ], + "start_col": 35, + "start_line": 13 + } + }, + "921": { + "accessible_scopes": [ + "openzeppelin.token.erc20.library", + "openzeppelin.token.erc20.library.ERC20", + "openzeppelin.token.erc20.library.ERC20._transfer" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 29, + "end_line": 23, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/3.9.13/envs/kakarot/lib/python3.9/site-packages/openzeppelin/security/safemath/library.cairo" + }, + "parent_location": [ + { + "end_col": 90, + "end_line": 258, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/3.9.13/envs/kakarot/lib/python3.9/site-packages/openzeppelin/token/erc20/library.cairo" + }, + "parent_location": [ + { + "end_col": 79, + "end_line": 21, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC20_balances/decl.cairo" + }, + "parent_location": [ + { + "end_col": 63, + "end_line": 259, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/3.9.13/envs/kakarot/lib/python3.9/site-packages/openzeppelin/token/erc20/library.cairo" + }, + "start_col": 9, + "start_line": 259 + }, + "While trying to retrieve the implicit argument 'range_check_ptr' in:" + ], + "start_col": 64, + "start_line": 21 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 48, + "start_line": 258 + }, + "While trying to update the implicit return value 'range_check_ptr' in:" + ], + "start_col": 14, + "start_line": 23 + } + }, + "922": { + "accessible_scopes": [ + "openzeppelin.token.erc20.library", + "openzeppelin.token.erc20.library.ERC20", + "openzeppelin.token.erc20.library.ERC20._transfer" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 38, + "end_line": 234, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/3.9.13/envs/kakarot/lib/python3.9/site-packages/openzeppelin/token/erc20/library.cairo" + }, + "parent_location": [ + { + "end_col": 39, + "end_line": 259, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/3.9.13/envs/kakarot/lib/python3.9/site-packages/openzeppelin/token/erc20/library.cairo" + }, + "start_col": 30, + "start_line": 259 + }, + "While expanding the reference 'recipient' in:" + ], + "start_col": 23, + "start_line": 234 + } + }, + "923": { + "accessible_scopes": [ + "openzeppelin.token.erc20.library", + "openzeppelin.token.erc20.library.ERC20", + "openzeppelin.token.erc20.library.ERC20._transfer" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 44, + "end_line": 258, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/3.9.13/envs/kakarot/lib/python3.9/site-packages/openzeppelin/token/erc20/library.cairo" + }, + "parent_location": [ + { + "end_col": 62, + "end_line": 259, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/3.9.13/envs/kakarot/lib/python3.9/site-packages/openzeppelin/token/erc20/library.cairo" + }, + "start_col": 41, + "start_line": 259 + }, + "While expanding the reference 'new_recipient_balance' in:" + ], + "start_col": 14, + "start_line": 258 + } + }, + "924": { + "accessible_scopes": [ + "openzeppelin.token.erc20.library", + "openzeppelin.token.erc20.library.ERC20", + "openzeppelin.token.erc20.library.ERC20._transfer" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 44, + "end_line": 258, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/3.9.13/envs/kakarot/lib/python3.9/site-packages/openzeppelin/token/erc20/library.cairo" + }, + "parent_location": [ + { + "end_col": 62, + "end_line": 259, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/3.9.13/envs/kakarot/lib/python3.9/site-packages/openzeppelin/token/erc20/library.cairo" + }, + "start_col": 41, + "start_line": 259 + }, + "While expanding the reference 'new_recipient_balance' in:" + ], + "start_col": 14, + "start_line": 258 + } + }, + "925": { + "accessible_scopes": [ + "openzeppelin.token.erc20.library", + "openzeppelin.token.erc20.library.ERC20", + "openzeppelin.token.erc20.library.ERC20._transfer" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 63, + "end_line": 259, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/3.9.13/envs/kakarot/lib/python3.9/site-packages/openzeppelin/token/erc20/library.cairo" + }, + "start_col": 9, + "start_line": 259 + } + }, + "927": { + "accessible_scopes": [ + "openzeppelin.token.erc20.library", + "openzeppelin.token.erc20.library.ERC20", + "openzeppelin.token.erc20.library.ERC20._transfer" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 34, + "end_line": 21, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC20_balances/decl.cairo" + }, + "parent_location": [ + { + "end_col": 63, + "end_line": 259, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/3.9.13/envs/kakarot/lib/python3.9/site-packages/openzeppelin/token/erc20/library.cairo" + }, + "parent_location": [ + { + "end_col": 29, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/event/Transfer/a7a8ae41be29ac9f4f6c3b7837c448d787ca051dd1ade98f409e54d33d112504.cairo" + }, + "parent_location": [ + { + "end_col": 14, + "end_line": 20, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/3.9.13/envs/kakarot/lib/python3.9/site-packages/openzeppelin/token/erc20/library.cairo" + }, + "parent_location": [ + { + "end_col": 49, + "end_line": 260, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/3.9.13/envs/kakarot/lib/python3.9/site-packages/openzeppelin/token/erc20/library.cairo" + }, + "start_col": 9, + "start_line": 260 + }, + "While trying to retrieve the implicit argument 'syscall_ptr' in:" + ], + "start_col": 6, + "start_line": 20 + }, + "While handling event:" + ], + "start_col": 11, + "start_line": 1 + }, + "While expanding the reference 'syscall_ptr' in:" + ], + "start_col": 9, + "start_line": 259 + }, + "While trying to update the implicit return value 'syscall_ptr' in:" + ], + "start_col": 16, + "start_line": 21 + } + }, + "928": { + "accessible_scopes": [ + "openzeppelin.token.erc20.library", + "openzeppelin.token.erc20.library.ERC20", + "openzeppelin.token.erc20.library.ERC20._transfer" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 79, + "end_line": 21, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC20_balances/decl.cairo" + }, + "parent_location": [ + { + "end_col": 63, + "end_line": 259, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/3.9.13/envs/kakarot/lib/python3.9/site-packages/openzeppelin/token/erc20/library.cairo" + }, + "parent_location": [ + { + "end_col": 46, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/event/Transfer/a7a8ae41be29ac9f4f6c3b7837c448d787ca051dd1ade98f409e54d33d112504.cairo" + }, + "parent_location": [ + { + "end_col": 14, + "end_line": 20, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/3.9.13/envs/kakarot/lib/python3.9/site-packages/openzeppelin/token/erc20/library.cairo" + }, + "parent_location": [ + { + "end_col": 49, + "end_line": 260, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/3.9.13/envs/kakarot/lib/python3.9/site-packages/openzeppelin/token/erc20/library.cairo" + }, + "start_col": 9, + "start_line": 260 + }, + "While trying to retrieve the implicit argument 'range_check_ptr' in:" + ], + "start_col": 6, + "start_line": 20 + }, + "While handling event:" + ], + "start_col": 31, + "start_line": 1 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 9, + "start_line": 259 + }, + "While trying to update the implicit return value 'range_check_ptr' in:" + ], + "start_col": 64, + "start_line": 21 + } + }, + "929": { + "accessible_scopes": [ + "openzeppelin.token.erc20.library", + "openzeppelin.token.erc20.library.ERC20", + "openzeppelin.token.erc20.library.ERC20._transfer" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 21, + "end_line": 234, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/3.9.13/envs/kakarot/lib/python3.9/site-packages/openzeppelin/token/erc20/library.cairo" + }, + "parent_location": [ + { + "end_col": 29, + "end_line": 260, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/3.9.13/envs/kakarot/lib/python3.9/site-packages/openzeppelin/token/erc20/library.cairo" + }, + "start_col": 23, + "start_line": 260 + }, + "While expanding the reference 'sender' in:" + ], + "start_col": 9, + "start_line": 234 + } + }, + "930": { + "accessible_scopes": [ + "openzeppelin.token.erc20.library", + "openzeppelin.token.erc20.library.ERC20", + "openzeppelin.token.erc20.library.ERC20._transfer" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 38, + "end_line": 234, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/3.9.13/envs/kakarot/lib/python3.9/site-packages/openzeppelin/token/erc20/library.cairo" + }, + "parent_location": [ + { + "end_col": 40, + "end_line": 260, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/3.9.13/envs/kakarot/lib/python3.9/site-packages/openzeppelin/token/erc20/library.cairo" + }, + "start_col": 31, + "start_line": 260 + }, + "While expanding the reference 'recipient' in:" + ], + "start_col": 23, + "start_line": 234 + } + }, + "931": { + "accessible_scopes": [ + "openzeppelin.token.erc20.library", + "openzeppelin.token.erc20.library.ERC20", + "openzeppelin.token.erc20.library.ERC20._transfer" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 55, + "end_line": 234, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/3.9.13/envs/kakarot/lib/python3.9/site-packages/openzeppelin/token/erc20/library.cairo" + }, + "parent_location": [ + { + "end_col": 48, + "end_line": 260, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/3.9.13/envs/kakarot/lib/python3.9/site-packages/openzeppelin/token/erc20/library.cairo" + }, + "start_col": 42, + "start_line": 260 + }, + "While expanding the reference 'amount' in:" + ], + "start_col": 40, + "start_line": 234 + } + }, + "932": { + "accessible_scopes": [ + "openzeppelin.token.erc20.library", + "openzeppelin.token.erc20.library.ERC20", + "openzeppelin.token.erc20.library.ERC20._transfer" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 55, + "end_line": 234, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/3.9.13/envs/kakarot/lib/python3.9/site-packages/openzeppelin/token/erc20/library.cairo" + }, + "parent_location": [ + { + "end_col": 48, + "end_line": 260, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/3.9.13/envs/kakarot/lib/python3.9/site-packages/openzeppelin/token/erc20/library.cairo" + }, + "start_col": 42, + "start_line": 260 + }, + "While expanding the reference 'amount' in:" + ], + "start_col": 40, + "start_line": 234 + } + }, + "933": { + "accessible_scopes": [ + "openzeppelin.token.erc20.library", + "openzeppelin.token.erc20.library.ERC20", + "openzeppelin.token.erc20.library.ERC20._transfer" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 49, + "end_line": 260, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/3.9.13/envs/kakarot/lib/python3.9/site-packages/openzeppelin/token/erc20/library.cairo" + }, + "start_col": 9, + "start_line": 260 + } + }, + "935": { + "accessible_scopes": [ + "openzeppelin.token.erc20.library", + "openzeppelin.token.erc20.library.ERC20", + "openzeppelin.token.erc20.library.ERC20._transfer" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 29, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/event/Transfer/a7a8ae41be29ac9f4f6c3b7837c448d787ca051dd1ade98f409e54d33d112504.cairo" + }, + "parent_location": [ + { + "end_col": 14, + "end_line": 20, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/3.9.13/envs/kakarot/lib/python3.9/site-packages/openzeppelin/token/erc20/library.cairo" + }, + "parent_location": [ + { + "end_col": 49, + "end_line": 260, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/3.9.13/envs/kakarot/lib/python3.9/site-packages/openzeppelin/token/erc20/library.cairo" + }, + "parent_location": [ + { + "end_col": 38, + "end_line": 233, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/3.9.13/envs/kakarot/lib/python3.9/site-packages/openzeppelin/token/erc20/library.cairo" + }, + "parent_location": [ + { + "end_col": 19, + "end_line": 261, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/3.9.13/envs/kakarot/lib/python3.9/site-packages/openzeppelin/token/erc20/library.cairo" + }, + "start_col": 9, + "start_line": 261 + }, + "While trying to retrieve the implicit argument 'syscall_ptr' in:" + ], + "start_col": 20, + "start_line": 233 + }, + "While expanding the reference 'syscall_ptr' in:" + ], + "start_col": 9, + "start_line": 260 + }, + "While trying to update the implicit return value 'syscall_ptr' in:" + ], + "start_col": 6, + "start_line": 20 + }, + "While handling event:" + ], + "start_col": 11, + "start_line": 1 + } + }, + "936": { + "accessible_scopes": [ + "openzeppelin.token.erc20.library", + "openzeppelin.token.erc20.library.ERC20", + "openzeppelin.token.erc20.library.ERC20._transfer" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 62, + "end_line": 21, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC20_balances/decl.cairo" + }, + "parent_location": [ + { + "end_col": 63, + "end_line": 259, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/3.9.13/envs/kakarot/lib/python3.9/site-packages/openzeppelin/token/erc20/library.cairo" + }, + "parent_location": [ + { + "end_col": 66, + "end_line": 233, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/3.9.13/envs/kakarot/lib/python3.9/site-packages/openzeppelin/token/erc20/library.cairo" + }, + "parent_location": [ + { + "end_col": 19, + "end_line": 261, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/3.9.13/envs/kakarot/lib/python3.9/site-packages/openzeppelin/token/erc20/library.cairo" + }, + "start_col": 9, + "start_line": 261 + }, + "While trying to retrieve the implicit argument 'pedersen_ptr' in:" + ], + "start_col": 40, + "start_line": 233 + }, + "While expanding the reference 'pedersen_ptr' in:" + ], + "start_col": 9, + "start_line": 259 + }, + "While trying to update the implicit return value 'pedersen_ptr' in:" + ], + "start_col": 36, + "start_line": 21 + } + }, + "937": { + "accessible_scopes": [ + "openzeppelin.token.erc20.library", + "openzeppelin.token.erc20.library.ERC20", + "openzeppelin.token.erc20.library.ERC20._transfer" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 46, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/event/Transfer/a7a8ae41be29ac9f4f6c3b7837c448d787ca051dd1ade98f409e54d33d112504.cairo" + }, + "parent_location": [ + { + "end_col": 14, + "end_line": 20, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/3.9.13/envs/kakarot/lib/python3.9/site-packages/openzeppelin/token/erc20/library.cairo" + }, + "parent_location": [ + { + "end_col": 49, + "end_line": 260, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/3.9.13/envs/kakarot/lib/python3.9/site-packages/openzeppelin/token/erc20/library.cairo" + }, + "parent_location": [ + { + "end_col": 83, + "end_line": 233, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/3.9.13/envs/kakarot/lib/python3.9/site-packages/openzeppelin/token/erc20/library.cairo" + }, + "parent_location": [ + { + "end_col": 19, + "end_line": 261, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/3.9.13/envs/kakarot/lib/python3.9/site-packages/openzeppelin/token/erc20/library.cairo" + }, + "start_col": 9, + "start_line": 261 + }, + "While trying to retrieve the implicit argument 'range_check_ptr' in:" + ], + "start_col": 68, + "start_line": 233 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 9, + "start_line": 260 + }, + "While trying to update the implicit return value 'range_check_ptr' in:" + ], + "start_col": 6, + "start_line": 20 + }, + "While handling event:" + ], + "start_col": 31, + "start_line": 1 + } + }, + "938": { + "accessible_scopes": [ + "openzeppelin.token.erc20.library", + "openzeppelin.token.erc20.library.ERC20", + "openzeppelin.token.erc20.library.ERC20._transfer" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 19, + "end_line": 261, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/3.9.13/envs/kakarot/lib/python3.9/site-packages/openzeppelin/token/erc20/library.cairo" + }, + "start_col": 9, + "start_line": 261 + } + }, + "939": { + "accessible_scopes": [ + "openzeppelin.token.erc20.library", + "openzeppelin.token.erc20.library.ERC20", + "openzeppelin.token.erc20.library.ERC20._approve" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 82, + "end_line": 264, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/3.9.13/envs/kakarot/lib/python3.9/site-packages/openzeppelin/token/erc20/library.cairo" + }, + "parent_location": [ + { + "end_col": 35, + "end_line": 21, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/3.9.13/envs/kakarot/lib/python3.9/site-packages/starkware/cairo/common/uint256.cairo" + }, + "parent_location": [ + { + "end_col": 34, + "end_line": 268, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/3.9.13/envs/kakarot/lib/python3.9/site-packages/openzeppelin/token/erc20/library.cairo" + }, + "start_col": 13, + "start_line": 268 + }, + "While trying to retrieve the implicit argument 'range_check_ptr' in:" + ], + "start_col": 20, + "start_line": 21 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 67, + "start_line": 264 + } + }, + "940": { + "accessible_scopes": [ + "openzeppelin.token.erc20.library", + "openzeppelin.token.erc20.library.ERC20", + "openzeppelin.token.erc20.library.ERC20._approve" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 52, + "end_line": 265, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/3.9.13/envs/kakarot/lib/python3.9/site-packages/openzeppelin/token/erc20/library.cairo" + }, + "parent_location": [ + { + "end_col": 33, + "end_line": 268, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/3.9.13/envs/kakarot/lib/python3.9/site-packages/openzeppelin/token/erc20/library.cairo" + }, + "start_col": 27, + "start_line": 268 + }, + "While expanding the reference 'amount' in:" + ], + "start_col": 37, + "start_line": 265 + } + }, + "941": { + "accessible_scopes": [ + "openzeppelin.token.erc20.library", + "openzeppelin.token.erc20.library.ERC20", + "openzeppelin.token.erc20.library.ERC20._approve" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 52, + "end_line": 265, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/3.9.13/envs/kakarot/lib/python3.9/site-packages/openzeppelin/token/erc20/library.cairo" + }, + "parent_location": [ + { + "end_col": 33, + "end_line": 268, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/3.9.13/envs/kakarot/lib/python3.9/site-packages/openzeppelin/token/erc20/library.cairo" + }, + "start_col": 27, + "start_line": 268 + }, + "While expanding the reference 'amount' in:" + ], + "start_col": 37, + "start_line": 265 + } + }, + "942": { + "accessible_scopes": [ + "openzeppelin.token.erc20.library", + "openzeppelin.token.erc20.library.ERC20", + "openzeppelin.token.erc20.library.ERC20._approve" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 34, + "end_line": 268, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/3.9.13/envs/kakarot/lib/python3.9/site-packages/openzeppelin/token/erc20/library.cairo" + }, + "start_col": 13, + "start_line": 268 + } + }, + "944": { + "accessible_scopes": [ + "openzeppelin.token.erc20.library", + "openzeppelin.token.erc20.library.ERC20", + "openzeppelin.token.erc20.library.ERC20._approve" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 20, + "end_line": 265, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/3.9.13/envs/kakarot/lib/python3.9/site-packages/openzeppelin/token/erc20/library.cairo" + }, + "parent_location": [ + { + "end_col": 34, + "end_line": 272, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/3.9.13/envs/kakarot/lib/python3.9/site-packages/openzeppelin/token/erc20/library.cairo" + }, + "start_col": 29, + "start_line": 272 + }, + "While expanding the reference 'owner' in:" + ], + "start_col": 9, + "start_line": 265 + } + }, + "945": { + "accessible_scopes": [ + "openzeppelin.token.erc20.library", + "openzeppelin.token.erc20.library.ERC20", + "openzeppelin.token.erc20.library.ERC20._approve" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 35, + "end_line": 272, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/3.9.13/envs/kakarot/lib/python3.9/site-packages/openzeppelin/token/erc20/library.cairo" + }, + "start_col": 13, + "start_line": 272 + } + }, + "947": { + "accessible_scopes": [ + "openzeppelin.token.erc20.library", + "openzeppelin.token.erc20.library.ERC20", + "openzeppelin.token.erc20.library.ERC20._approve" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 35, + "end_line": 265, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/3.9.13/envs/kakarot/lib/python3.9/site-packages/openzeppelin/token/erc20/library.cairo" + }, + "parent_location": [ + { + "end_col": 36, + "end_line": 276, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/3.9.13/envs/kakarot/lib/python3.9/site-packages/openzeppelin/token/erc20/library.cairo" + }, + "start_col": 29, + "start_line": 276 + }, + "While expanding the reference 'spender' in:" + ], + "start_col": 22, + "start_line": 265 + } + }, + "948": { + "accessible_scopes": [ + "openzeppelin.token.erc20.library", + "openzeppelin.token.erc20.library.ERC20", + "openzeppelin.token.erc20.library.ERC20._approve" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 37, + "end_line": 276, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/3.9.13/envs/kakarot/lib/python3.9/site-packages/openzeppelin/token/erc20/library.cairo" + }, + "start_col": 13, + "start_line": 276 + } + }, + "950": { + "accessible_scopes": [ + "openzeppelin.token.erc20.library", + "openzeppelin.token.erc20.library.ERC20", + "openzeppelin.token.erc20.library.ERC20._approve" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 37, + "end_line": 264, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/3.9.13/envs/kakarot/lib/python3.9/site-packages/openzeppelin/token/erc20/library.cairo" + }, + "parent_location": [ + { + "end_col": 34, + "end_line": 23, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC20_allowances/decl.cairo" + }, + "parent_location": [ + { + "end_col": 55, + "end_line": 279, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/3.9.13/envs/kakarot/lib/python3.9/site-packages/openzeppelin/token/erc20/library.cairo" + }, + "start_col": 9, + "start_line": 279 + }, + "While trying to retrieve the implicit argument 'syscall_ptr' in:" + ], + "start_col": 16, + "start_line": 23 + }, + "While expanding the reference 'syscall_ptr' in:" + ], + "start_col": 19, + "start_line": 264 + } + }, + "951": { + "accessible_scopes": [ + "openzeppelin.token.erc20.library", + "openzeppelin.token.erc20.library.ERC20", + "openzeppelin.token.erc20.library.ERC20._approve" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 65, + "end_line": 264, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/3.9.13/envs/kakarot/lib/python3.9/site-packages/openzeppelin/token/erc20/library.cairo" + }, + "parent_location": [ + { + "end_col": 62, + "end_line": 23, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC20_allowances/decl.cairo" + }, + "parent_location": [ + { + "end_col": 55, + "end_line": 279, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/3.9.13/envs/kakarot/lib/python3.9/site-packages/openzeppelin/token/erc20/library.cairo" + }, + "start_col": 9, + "start_line": 279 + }, + "While trying to retrieve the implicit argument 'pedersen_ptr' in:" + ], + "start_col": 36, + "start_line": 23 + }, + "While expanding the reference 'pedersen_ptr' in:" + ], + "start_col": 39, + "start_line": 264 + } + }, + "952": { + "accessible_scopes": [ + "openzeppelin.token.erc20.library", + "openzeppelin.token.erc20.library.ERC20", + "openzeppelin.token.erc20.library.ERC20._approve" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 35, + "end_line": 21, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/3.9.13/envs/kakarot/lib/python3.9/site-packages/starkware/cairo/common/uint256.cairo" + }, + "parent_location": [ + { + "end_col": 34, + "end_line": 268, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/3.9.13/envs/kakarot/lib/python3.9/site-packages/openzeppelin/token/erc20/library.cairo" + }, + "parent_location": [ + { + "end_col": 79, + "end_line": 23, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC20_allowances/decl.cairo" + }, + "parent_location": [ + { + "end_col": 55, + "end_line": 279, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/3.9.13/envs/kakarot/lib/python3.9/site-packages/openzeppelin/token/erc20/library.cairo" + }, + "start_col": 9, + "start_line": 279 + }, + "While trying to retrieve the implicit argument 'range_check_ptr' in:" + ], + "start_col": 64, + "start_line": 23 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 13, + "start_line": 268 + }, + "While trying to update the implicit return value 'range_check_ptr' in:" + ], + "start_col": 20, + "start_line": 21 + } + }, + "953": { + "accessible_scopes": [ + "openzeppelin.token.erc20.library", + "openzeppelin.token.erc20.library.ERC20", + "openzeppelin.token.erc20.library.ERC20._approve" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 20, + "end_line": 265, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/3.9.13/envs/kakarot/lib/python3.9/site-packages/openzeppelin/token/erc20/library.cairo" + }, + "parent_location": [ + { + "end_col": 37, + "end_line": 279, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/3.9.13/envs/kakarot/lib/python3.9/site-packages/openzeppelin/token/erc20/library.cairo" + }, + "start_col": 32, + "start_line": 279 + }, + "While expanding the reference 'owner' in:" + ], + "start_col": 9, + "start_line": 265 + } + }, + "954": { + "accessible_scopes": [ + "openzeppelin.token.erc20.library", + "openzeppelin.token.erc20.library.ERC20", + "openzeppelin.token.erc20.library.ERC20._approve" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 35, + "end_line": 265, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/3.9.13/envs/kakarot/lib/python3.9/site-packages/openzeppelin/token/erc20/library.cairo" + }, + "parent_location": [ + { + "end_col": 46, + "end_line": 279, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/3.9.13/envs/kakarot/lib/python3.9/site-packages/openzeppelin/token/erc20/library.cairo" + }, + "start_col": 39, + "start_line": 279 + }, + "While expanding the reference 'spender' in:" + ], + "start_col": 22, + "start_line": 265 + } + }, + "955": { + "accessible_scopes": [ + "openzeppelin.token.erc20.library", + "openzeppelin.token.erc20.library.ERC20", + "openzeppelin.token.erc20.library.ERC20._approve" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 52, + "end_line": 265, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/3.9.13/envs/kakarot/lib/python3.9/site-packages/openzeppelin/token/erc20/library.cairo" + }, + "parent_location": [ + { + "end_col": 54, + "end_line": 279, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/3.9.13/envs/kakarot/lib/python3.9/site-packages/openzeppelin/token/erc20/library.cairo" + }, + "start_col": 48, + "start_line": 279 + }, + "While expanding the reference 'amount' in:" + ], + "start_col": 37, + "start_line": 265 + } + }, + "956": { + "accessible_scopes": [ + "openzeppelin.token.erc20.library", + "openzeppelin.token.erc20.library.ERC20", + "openzeppelin.token.erc20.library.ERC20._approve" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 52, + "end_line": 265, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/3.9.13/envs/kakarot/lib/python3.9/site-packages/openzeppelin/token/erc20/library.cairo" + }, + "parent_location": [ + { + "end_col": 54, + "end_line": 279, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/3.9.13/envs/kakarot/lib/python3.9/site-packages/openzeppelin/token/erc20/library.cairo" + }, + "start_col": 48, + "start_line": 279 + }, + "While expanding the reference 'amount' in:" + ], + "start_col": 37, + "start_line": 265 + } + }, + "957": { + "accessible_scopes": [ + "openzeppelin.token.erc20.library", + "openzeppelin.token.erc20.library.ERC20", + "openzeppelin.token.erc20.library.ERC20._approve" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 55, + "end_line": 279, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/3.9.13/envs/kakarot/lib/python3.9/site-packages/openzeppelin/token/erc20/library.cairo" + }, + "start_col": 9, + "start_line": 279 + } + }, + "959": { + "accessible_scopes": [ + "openzeppelin.token.erc20.library", + "openzeppelin.token.erc20.library.ERC20", + "openzeppelin.token.erc20.library.ERC20._approve" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 34, + "end_line": 23, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC20_allowances/decl.cairo" + }, + "parent_location": [ + { + "end_col": 55, + "end_line": 279, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/3.9.13/envs/kakarot/lib/python3.9/site-packages/openzeppelin/token/erc20/library.cairo" + }, + "parent_location": [ + { + "end_col": 29, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/event/Approval/a7a8ae41be29ac9f4f6c3b7837c448d787ca051dd1ade98f409e54d33d112504.cairo" + }, + "parent_location": [ + { + "end_col": 14, + "end_line": 24, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/3.9.13/envs/kakarot/lib/python3.9/site-packages/openzeppelin/token/erc20/library.cairo" + }, + "parent_location": [ + { + "end_col": 46, + "end_line": 280, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/3.9.13/envs/kakarot/lib/python3.9/site-packages/openzeppelin/token/erc20/library.cairo" + }, + "start_col": 9, + "start_line": 280 + }, + "While trying to retrieve the implicit argument 'syscall_ptr' in:" + ], + "start_col": 6, + "start_line": 24 + }, + "While handling event:" + ], + "start_col": 11, + "start_line": 1 + }, + "While expanding the reference 'syscall_ptr' in:" + ], + "start_col": 9, + "start_line": 279 + }, + "While trying to update the implicit return value 'syscall_ptr' in:" + ], + "start_col": 16, + "start_line": 23 + } + }, + "960": { + "accessible_scopes": [ + "openzeppelin.token.erc20.library", + "openzeppelin.token.erc20.library.ERC20", + "openzeppelin.token.erc20.library.ERC20._approve" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 79, + "end_line": 23, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC20_allowances/decl.cairo" + }, + "parent_location": [ + { + "end_col": 55, + "end_line": 279, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/3.9.13/envs/kakarot/lib/python3.9/site-packages/openzeppelin/token/erc20/library.cairo" + }, + "parent_location": [ + { + "end_col": 46, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/event/Approval/a7a8ae41be29ac9f4f6c3b7837c448d787ca051dd1ade98f409e54d33d112504.cairo" + }, + "parent_location": [ + { + "end_col": 14, + "end_line": 24, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/3.9.13/envs/kakarot/lib/python3.9/site-packages/openzeppelin/token/erc20/library.cairo" + }, + "parent_location": [ + { + "end_col": 46, + "end_line": 280, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/3.9.13/envs/kakarot/lib/python3.9/site-packages/openzeppelin/token/erc20/library.cairo" + }, + "start_col": 9, + "start_line": 280 + }, + "While trying to retrieve the implicit argument 'range_check_ptr' in:" + ], + "start_col": 6, + "start_line": 24 + }, + "While handling event:" + ], + "start_col": 31, + "start_line": 1 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 9, + "start_line": 279 + }, + "While trying to update the implicit return value 'range_check_ptr' in:" + ], + "start_col": 64, + "start_line": 23 + } + }, + "961": { + "accessible_scopes": [ + "openzeppelin.token.erc20.library", + "openzeppelin.token.erc20.library.ERC20", + "openzeppelin.token.erc20.library.ERC20._approve" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 20, + "end_line": 265, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/3.9.13/envs/kakarot/lib/python3.9/site-packages/openzeppelin/token/erc20/library.cairo" + }, + "parent_location": [ + { + "end_col": 28, + "end_line": 280, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/3.9.13/envs/kakarot/lib/python3.9/site-packages/openzeppelin/token/erc20/library.cairo" + }, + "start_col": 23, + "start_line": 280 + }, + "While expanding the reference 'owner' in:" + ], + "start_col": 9, + "start_line": 265 + } + }, + "962": { + "accessible_scopes": [ + "openzeppelin.token.erc20.library", + "openzeppelin.token.erc20.library.ERC20", + "openzeppelin.token.erc20.library.ERC20._approve" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 35, + "end_line": 265, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/3.9.13/envs/kakarot/lib/python3.9/site-packages/openzeppelin/token/erc20/library.cairo" + }, + "parent_location": [ + { + "end_col": 37, + "end_line": 280, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/3.9.13/envs/kakarot/lib/python3.9/site-packages/openzeppelin/token/erc20/library.cairo" + }, + "start_col": 30, + "start_line": 280 + }, + "While expanding the reference 'spender' in:" + ], + "start_col": 22, + "start_line": 265 + } + }, + "963": { + "accessible_scopes": [ + "openzeppelin.token.erc20.library", + "openzeppelin.token.erc20.library.ERC20", + "openzeppelin.token.erc20.library.ERC20._approve" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 52, + "end_line": 265, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/3.9.13/envs/kakarot/lib/python3.9/site-packages/openzeppelin/token/erc20/library.cairo" + }, + "parent_location": [ + { + "end_col": 45, + "end_line": 280, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/3.9.13/envs/kakarot/lib/python3.9/site-packages/openzeppelin/token/erc20/library.cairo" + }, + "start_col": 39, + "start_line": 280 + }, + "While expanding the reference 'amount' in:" + ], + "start_col": 37, + "start_line": 265 + } + }, + "964": { + "accessible_scopes": [ + "openzeppelin.token.erc20.library", + "openzeppelin.token.erc20.library.ERC20", + "openzeppelin.token.erc20.library.ERC20._approve" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 52, + "end_line": 265, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/3.9.13/envs/kakarot/lib/python3.9/site-packages/openzeppelin/token/erc20/library.cairo" + }, + "parent_location": [ + { + "end_col": 45, + "end_line": 280, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/3.9.13/envs/kakarot/lib/python3.9/site-packages/openzeppelin/token/erc20/library.cairo" + }, + "start_col": 39, + "start_line": 280 + }, + "While expanding the reference 'amount' in:" + ], + "start_col": 37, + "start_line": 265 + } + }, + "965": { + "accessible_scopes": [ + "openzeppelin.token.erc20.library", + "openzeppelin.token.erc20.library.ERC20", + "openzeppelin.token.erc20.library.ERC20._approve" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 46, + "end_line": 280, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/3.9.13/envs/kakarot/lib/python3.9/site-packages/openzeppelin/token/erc20/library.cairo" + }, + "start_col": 9, + "start_line": 280 + } + }, + "967": { + "accessible_scopes": [ + "openzeppelin.token.erc20.library", + "openzeppelin.token.erc20.library.ERC20", + "openzeppelin.token.erc20.library.ERC20._approve" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 29, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/event/Approval/a7a8ae41be29ac9f4f6c3b7837c448d787ca051dd1ade98f409e54d33d112504.cairo" + }, + "parent_location": [ + { + "end_col": 14, + "end_line": 24, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/3.9.13/envs/kakarot/lib/python3.9/site-packages/openzeppelin/token/erc20/library.cairo" + }, + "parent_location": [ + { + "end_col": 46, + "end_line": 280, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/3.9.13/envs/kakarot/lib/python3.9/site-packages/openzeppelin/token/erc20/library.cairo" + }, + "parent_location": [ + { + "end_col": 37, + "end_line": 264, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/3.9.13/envs/kakarot/lib/python3.9/site-packages/openzeppelin/token/erc20/library.cairo" + }, + "parent_location": [ + { + "end_col": 19, + "end_line": 281, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/3.9.13/envs/kakarot/lib/python3.9/site-packages/openzeppelin/token/erc20/library.cairo" + }, + "start_col": 9, + "start_line": 281 + }, + "While trying to retrieve the implicit argument 'syscall_ptr' in:" + ], + "start_col": 19, + "start_line": 264 + }, + "While expanding the reference 'syscall_ptr' in:" + ], + "start_col": 9, + "start_line": 280 + }, + "While trying to update the implicit return value 'syscall_ptr' in:" + ], + "start_col": 6, + "start_line": 24 + }, + "While handling event:" + ], + "start_col": 11, + "start_line": 1 + } + }, + "968": { + "accessible_scopes": [ + "openzeppelin.token.erc20.library", + "openzeppelin.token.erc20.library.ERC20", + "openzeppelin.token.erc20.library.ERC20._approve" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 62, + "end_line": 23, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC20_allowances/decl.cairo" + }, + "parent_location": [ + { + "end_col": 55, + "end_line": 279, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/3.9.13/envs/kakarot/lib/python3.9/site-packages/openzeppelin/token/erc20/library.cairo" + }, + "parent_location": [ + { + "end_col": 65, + "end_line": 264, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/3.9.13/envs/kakarot/lib/python3.9/site-packages/openzeppelin/token/erc20/library.cairo" + }, + "parent_location": [ + { + "end_col": 19, + "end_line": 281, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/3.9.13/envs/kakarot/lib/python3.9/site-packages/openzeppelin/token/erc20/library.cairo" + }, + "start_col": 9, + "start_line": 281 + }, + "While trying to retrieve the implicit argument 'pedersen_ptr' in:" + ], + "start_col": 39, + "start_line": 264 + }, + "While expanding the reference 'pedersen_ptr' in:" + ], + "start_col": 9, + "start_line": 279 + }, + "While trying to update the implicit return value 'pedersen_ptr' in:" + ], + "start_col": 36, + "start_line": 23 + } + }, + "969": { + "accessible_scopes": [ + "openzeppelin.token.erc20.library", + "openzeppelin.token.erc20.library.ERC20", + "openzeppelin.token.erc20.library.ERC20._approve" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 46, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/event/Approval/a7a8ae41be29ac9f4f6c3b7837c448d787ca051dd1ade98f409e54d33d112504.cairo" + }, + "parent_location": [ + { + "end_col": 14, + "end_line": 24, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/3.9.13/envs/kakarot/lib/python3.9/site-packages/openzeppelin/token/erc20/library.cairo" + }, + "parent_location": [ + { + "end_col": 46, + "end_line": 280, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/3.9.13/envs/kakarot/lib/python3.9/site-packages/openzeppelin/token/erc20/library.cairo" + }, + "parent_location": [ + { + "end_col": 82, + "end_line": 264, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/3.9.13/envs/kakarot/lib/python3.9/site-packages/openzeppelin/token/erc20/library.cairo" + }, + "parent_location": [ + { + "end_col": 19, + "end_line": 281, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/3.9.13/envs/kakarot/lib/python3.9/site-packages/openzeppelin/token/erc20/library.cairo" + }, + "start_col": 9, + "start_line": 281 + }, + "While trying to retrieve the implicit argument 'range_check_ptr' in:" + ], + "start_col": 67, + "start_line": 264 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 9, + "start_line": 280 + }, + "While trying to update the implicit return value 'range_check_ptr' in:" + ], + "start_col": 6, + "start_line": 24 + }, + "While handling event:" + ], + "start_col": 31, + "start_line": 1 + } + }, + "970": { + "accessible_scopes": [ + "openzeppelin.token.erc20.library", + "openzeppelin.token.erc20.library.ERC20", + "openzeppelin.token.erc20.library.ERC20._approve" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 19, + "end_line": 281, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/3.9.13/envs/kakarot/lib/python3.9/site-packages/openzeppelin/token/erc20/library.cairo" + }, + "start_col": 9, + "start_line": 281 + } + }, + "971": { + "accessible_scopes": [ + "openzeppelin.token.erc20.library", + "openzeppelin.token.erc20.library.ERC20", + "openzeppelin.token.erc20.library.ERC20._spend_allowance" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 22, + "end_line": 287, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/3.9.13/envs/kakarot/lib/python3.9/site-packages/openzeppelin/token/erc20/library.cairo" + }, + "start_col": 9, + "start_line": 287 + } + }, + "973": { + "accessible_scopes": [ + "openzeppelin.token.erc20.library", + "openzeppelin.token.erc20.library.ERC20", + "openzeppelin.token.erc20.library.ERC20._spend_allowance" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 90, + "end_line": 284, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/3.9.13/envs/kakarot/lib/python3.9/site-packages/openzeppelin/token/erc20/library.cairo" + }, + "parent_location": [ + { + "end_col": 35, + "end_line": 21, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/3.9.13/envs/kakarot/lib/python3.9/site-packages/starkware/cairo/common/uint256.cairo" + }, + "parent_location": [ + { + "end_col": 34, + "end_line": 289, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/3.9.13/envs/kakarot/lib/python3.9/site-packages/openzeppelin/token/erc20/library.cairo" + }, + "start_col": 13, + "start_line": 289 + }, + "While trying to retrieve the implicit argument 'range_check_ptr' in:" + ], + "start_col": 20, + "start_line": 21 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 75, + "start_line": 284 + } + }, + "974": { + "accessible_scopes": [ + "openzeppelin.token.erc20.library", + "openzeppelin.token.erc20.library.ERC20", + "openzeppelin.token.erc20.library.ERC20._spend_allowance" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 52, + "end_line": 285, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/3.9.13/envs/kakarot/lib/python3.9/site-packages/openzeppelin/token/erc20/library.cairo" + }, + "parent_location": [ + { + "end_col": 33, + "end_line": 289, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/3.9.13/envs/kakarot/lib/python3.9/site-packages/openzeppelin/token/erc20/library.cairo" + }, + "start_col": 27, + "start_line": 289 + }, + "While expanding the reference 'amount' in:" + ], + "start_col": 37, + "start_line": 285 + } + }, + "975": { + "accessible_scopes": [ + "openzeppelin.token.erc20.library", + "openzeppelin.token.erc20.library.ERC20", + "openzeppelin.token.erc20.library.ERC20._spend_allowance" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 52, + "end_line": 285, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/3.9.13/envs/kakarot/lib/python3.9/site-packages/openzeppelin/token/erc20/library.cairo" + }, + "parent_location": [ + { + "end_col": 33, + "end_line": 289, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/3.9.13/envs/kakarot/lib/python3.9/site-packages/openzeppelin/token/erc20/library.cairo" + }, + "start_col": 27, + "start_line": 289 + }, + "While expanding the reference 'amount' in:" + ], + "start_col": 37, + "start_line": 285 + } + }, + "976": { + "accessible_scopes": [ + "openzeppelin.token.erc20.library", + "openzeppelin.token.erc20.library.ERC20", + "openzeppelin.token.erc20.library.ERC20._spend_allowance" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 34, + "end_line": 289, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/3.9.13/envs/kakarot/lib/python3.9/site-packages/openzeppelin/token/erc20/library.cairo" + }, + "start_col": 13, + "start_line": 289 + } + }, + "978": { + "accessible_scopes": [ + "openzeppelin.token.erc20.library", + "openzeppelin.token.erc20.library.ERC20", + "openzeppelin.token.erc20.library.ERC20._spend_allowance" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 45, + "end_line": 284, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/3.9.13/envs/kakarot/lib/python3.9/site-packages/openzeppelin/token/erc20/library.cairo" + }, + "parent_location": [ + { + "end_col": 33, + "end_line": 15, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC20_allowances/decl.cairo" + }, + "parent_location": [ + { + "end_col": 81, + "end_line": 292, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/3.9.13/envs/kakarot/lib/python3.9/site-packages/openzeppelin/token/erc20/library.cairo" + }, + "start_col": 44, + "start_line": 292 + }, + "While trying to retrieve the implicit argument 'syscall_ptr' in:" + ], + "start_col": 15, + "start_line": 15 + }, + "While expanding the reference 'syscall_ptr' in:" + ], + "start_col": 27, + "start_line": 284 + } + }, + "979": { + "accessible_scopes": [ + "openzeppelin.token.erc20.library", + "openzeppelin.token.erc20.library.ERC20", + "openzeppelin.token.erc20.library.ERC20._spend_allowance" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 73, + "end_line": 284, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/3.9.13/envs/kakarot/lib/python3.9/site-packages/openzeppelin/token/erc20/library.cairo" + }, + "parent_location": [ + { + "end_col": 61, + "end_line": 15, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC20_allowances/decl.cairo" + }, + "parent_location": [ + { + "end_col": 81, + "end_line": 292, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/3.9.13/envs/kakarot/lib/python3.9/site-packages/openzeppelin/token/erc20/library.cairo" + }, + "start_col": 44, + "start_line": 292 + }, + "While trying to retrieve the implicit argument 'pedersen_ptr' in:" + ], + "start_col": 35, + "start_line": 15 + }, + "While expanding the reference 'pedersen_ptr' in:" + ], + "start_col": 47, + "start_line": 284 + } + }, + "980": { + "accessible_scopes": [ + "openzeppelin.token.erc20.library", + "openzeppelin.token.erc20.library.ERC20", + "openzeppelin.token.erc20.library.ERC20._spend_allowance" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 35, + "end_line": 21, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/3.9.13/envs/kakarot/lib/python3.9/site-packages/starkware/cairo/common/uint256.cairo" + }, + "parent_location": [ + { + "end_col": 34, + "end_line": 289, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/3.9.13/envs/kakarot/lib/python3.9/site-packages/openzeppelin/token/erc20/library.cairo" + }, + "parent_location": [ + { + "end_col": 78, + "end_line": 15, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC20_allowances/decl.cairo" + }, + "parent_location": [ + { + "end_col": 81, + "end_line": 292, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/3.9.13/envs/kakarot/lib/python3.9/site-packages/openzeppelin/token/erc20/library.cairo" + }, + "start_col": 44, + "start_line": 292 + }, + "While trying to retrieve the implicit argument 'range_check_ptr' in:" + ], + "start_col": 63, + "start_line": 15 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 13, + "start_line": 289 + }, + "While trying to update the implicit return value 'range_check_ptr' in:" + ], + "start_col": 20, + "start_line": 21 + } + }, + "981": { + "accessible_scopes": [ + "openzeppelin.token.erc20.library", + "openzeppelin.token.erc20.library.ERC20", + "openzeppelin.token.erc20.library.ERC20._spend_allowance" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 20, + "end_line": 285, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/3.9.13/envs/kakarot/lib/python3.9/site-packages/openzeppelin/token/erc20/library.cairo" + }, + "parent_location": [ + { + "end_col": 71, + "end_line": 292, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/3.9.13/envs/kakarot/lib/python3.9/site-packages/openzeppelin/token/erc20/library.cairo" + }, + "start_col": 66, + "start_line": 292 + }, + "While expanding the reference 'owner' in:" + ], + "start_col": 9, + "start_line": 285 + } + }, + "982": { + "accessible_scopes": [ + "openzeppelin.token.erc20.library", + "openzeppelin.token.erc20.library.ERC20", + "openzeppelin.token.erc20.library.ERC20._spend_allowance" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 35, + "end_line": 285, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/3.9.13/envs/kakarot/lib/python3.9/site-packages/openzeppelin/token/erc20/library.cairo" + }, + "parent_location": [ + { + "end_col": 80, + "end_line": 292, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/3.9.13/envs/kakarot/lib/python3.9/site-packages/openzeppelin/token/erc20/library.cairo" + }, + "start_col": 73, + "start_line": 292 + }, + "While expanding the reference 'spender' in:" + ], + "start_col": 22, + "start_line": 285 + } + }, + "983": { + "accessible_scopes": [ + "openzeppelin.token.erc20.library", + "openzeppelin.token.erc20.library.ERC20", + "openzeppelin.token.erc20.library.ERC20._spend_allowance" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 81, + "end_line": 292, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/3.9.13/envs/kakarot/lib/python3.9/site-packages/openzeppelin/token/erc20/library.cairo" + }, + "start_col": 44, + "start_line": 292 + } + }, + "985": { + "accessible_scopes": [ + "openzeppelin.token.erc20.library", + "openzeppelin.token.erc20.library.ERC20", + "openzeppelin.token.erc20.library.ERC20._spend_allowance" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 40, + "end_line": 292, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/3.9.13/envs/kakarot/lib/python3.9/site-packages/openzeppelin/token/erc20/library.cairo" + }, + "parent_location": [ + { + "end_col": 40, + "end_line": 292, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/3.9.13/envs/kakarot/lib/python3.9/site-packages/openzeppelin/token/erc20/library.cairo" + }, + "start_col": 14, + "start_line": 292 + }, + "While auto generating local variable for 'current_allowance'." + ], + "start_col": 14, + "start_line": 292 + } + }, + "986": { + "accessible_scopes": [ + "openzeppelin.token.erc20.library", + "openzeppelin.token.erc20.library.ERC20", + "openzeppelin.token.erc20.library.ERC20._spend_allowance" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 40, + "end_line": 292, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/3.9.13/envs/kakarot/lib/python3.9/site-packages/openzeppelin/token/erc20/library.cairo" + }, + "parent_location": [ + { + "end_col": 40, + "end_line": 292, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/3.9.13/envs/kakarot/lib/python3.9/site-packages/openzeppelin/token/erc20/library.cairo" + }, + "start_col": 14, + "start_line": 292 + }, + "While auto generating local variable for 'current_allowance'." + ], + "start_col": 14, + "start_line": 292 + } + }, + "987": { + "accessible_scopes": [ + "openzeppelin.token.erc20.library", + "openzeppelin.token.erc20.library.ERC20", + "openzeppelin.token.erc20.library.ERC20._spend_allowance" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 33, + "end_line": 15, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC20_allowances/decl.cairo" + }, + "parent_location": [ + { + "end_col": 81, + "end_line": 292, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/3.9.13/envs/kakarot/lib/python3.9/site-packages/openzeppelin/token/erc20/library.cairo" + }, + "parent_location": [ + { + "end_col": 33, + "end_line": 15, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC20_allowances/decl.cairo" + }, + "parent_location": [ + { + "end_col": 81, + "end_line": 292, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/3.9.13/envs/kakarot/lib/python3.9/site-packages/openzeppelin/token/erc20/library.cairo" + }, + "start_col": 44, + "start_line": 292 + }, + "While trying to update the implicit return value 'syscall_ptr' in:" + ], + "start_col": 15, + "start_line": 15 + }, + "While auto generating local variable for 'syscall_ptr'." + ], + "start_col": 44, + "start_line": 292 + }, + "While trying to update the implicit return value 'syscall_ptr' in:" + ], + "start_col": 15, + "start_line": 15 + } + }, + "988": { + "accessible_scopes": [ + "openzeppelin.token.erc20.library", + "openzeppelin.token.erc20.library.ERC20", + "openzeppelin.token.erc20.library.ERC20._spend_allowance" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 61, + "end_line": 15, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC20_allowances/decl.cairo" + }, + "parent_location": [ + { + "end_col": 81, + "end_line": 292, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/3.9.13/envs/kakarot/lib/python3.9/site-packages/openzeppelin/token/erc20/library.cairo" + }, + "parent_location": [ + { + "end_col": 61, + "end_line": 15, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC20_allowances/decl.cairo" + }, + "parent_location": [ + { + "end_col": 81, + "end_line": 292, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/3.9.13/envs/kakarot/lib/python3.9/site-packages/openzeppelin/token/erc20/library.cairo" + }, + "start_col": 44, + "start_line": 292 + }, + "While trying to update the implicit return value 'pedersen_ptr' in:" + ], + "start_col": 35, + "start_line": 15 + }, + "While auto generating local variable for 'pedersen_ptr'." + ], + "start_col": 44, + "start_line": 292 + }, + "While trying to update the implicit return value 'pedersen_ptr' in:" + ], + "start_col": 35, + "start_line": 15 + } + }, + "989": { + "accessible_scopes": [ + "openzeppelin.token.erc20.library", + "openzeppelin.token.erc20.library.ERC20", + "openzeppelin.token.erc20.library.ERC20._spend_allowance" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 78, + "end_line": 15, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC20_allowances/decl.cairo" + }, + "parent_location": [ + { + "end_col": 81, + "end_line": 292, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/3.9.13/envs/kakarot/lib/python3.9/site-packages/openzeppelin/token/erc20/library.cairo" + }, + "parent_location": [ + { + "end_col": 33, + "end_line": 284, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/3.9.13/envs/kakarot/lib/python3.9/site-packages/starkware/cairo/common/uint256.cairo" + }, + "parent_location": [ + { + "end_col": 61, + "end_line": 293, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/3.9.13/envs/kakarot/lib/python3.9/site-packages/openzeppelin/token/erc20/library.cairo" + }, + "start_col": 35, + "start_line": 293 + }, + "While trying to retrieve the implicit argument 'range_check_ptr' in:" + ], + "start_col": 18, + "start_line": 284 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 44, + "start_line": 292 + }, + "While trying to update the implicit return value 'range_check_ptr' in:" + ], + "start_col": 63, + "start_line": 15 + } + }, + "990": { + "accessible_scopes": [ + "openzeppelin.token.erc20.library", + "openzeppelin.token.erc20.library.ERC20", + "openzeppelin.token.erc20.library.ERC20._spend_allowance" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 56, + "end_line": 293, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/3.9.13/envs/kakarot/lib/python3.9/site-packages/openzeppelin/token/erc20/library.cairo" + }, + "start_col": 55, + "start_line": 293 + } + }, + "992": { + "accessible_scopes": [ + "openzeppelin.token.erc20.library", + "openzeppelin.token.erc20.library.ERC20", + "openzeppelin.token.erc20.library.ERC20._spend_allowance" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 59, + "end_line": 293, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/3.9.13/envs/kakarot/lib/python3.9/site-packages/openzeppelin/token/erc20/library.cairo" + }, + "start_col": 58, + "start_line": 293 + } + }, + "994": { + "accessible_scopes": [ + "openzeppelin.token.erc20.library", + "openzeppelin.token.erc20.library.ERC20", + "openzeppelin.token.erc20.library.ERC20._spend_allowance" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 61, + "end_line": 293, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/3.9.13/envs/kakarot/lib/python3.9/site-packages/openzeppelin/token/erc20/library.cairo" + }, + "start_col": 35, + "start_line": 293 + } + }, + "996": { + "accessible_scopes": [ + "openzeppelin.token.erc20.library", + "openzeppelin.token.erc20.library.ERC20", + "openzeppelin.token.erc20.library.ERC20._spend_allowance" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 33, + "end_line": 284, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/3.9.13/envs/kakarot/lib/python3.9/site-packages/starkware/cairo/common/uint256.cairo" + }, + "parent_location": [ + { + "end_col": 61, + "end_line": 293, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/3.9.13/envs/kakarot/lib/python3.9/site-packages/openzeppelin/token/erc20/library.cairo" + }, + "parent_location": [ + { + "end_col": 32, + "end_line": 357, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/3.9.13/envs/kakarot/lib/python3.9/site-packages/starkware/cairo/common/uint256.cairo" + }, + "parent_location": [ + { + "end_col": 74, + "end_line": 294, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/3.9.13/envs/kakarot/lib/python3.9/site-packages/openzeppelin/token/erc20/library.cairo" + }, + "start_col": 35, + "start_line": 294 + }, + "While trying to retrieve the implicit argument 'range_check_ptr' in:" + ], + "start_col": 17, + "start_line": 357 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 35, + "start_line": 293 + }, + "While trying to update the implicit return value 'range_check_ptr' in:" + ], + "start_col": 18, + "start_line": 284 + } + }, + "997": { + "accessible_scopes": [ + "openzeppelin.token.erc20.library", + "openzeppelin.token.erc20.library.ERC20", + "openzeppelin.token.erc20.library.ERC20._spend_allowance" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 40, + "end_line": 292, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/3.9.13/envs/kakarot/lib/python3.9/site-packages/openzeppelin/token/erc20/library.cairo" + }, + "parent_location": [ + { + "end_col": 40, + "end_line": 292, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/3.9.13/envs/kakarot/lib/python3.9/site-packages/openzeppelin/token/erc20/library.cairo" + }, + "parent_location": [ + { + "end_col": 63, + "end_line": 294, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/3.9.13/envs/kakarot/lib/python3.9/site-packages/openzeppelin/token/erc20/library.cairo" + }, + "start_col": 46, + "start_line": 294 + }, + "While expanding the reference 'current_allowance' in:" + ], + "start_col": 14, + "start_line": 292 + }, + "While auto generating local variable for 'current_allowance'." + ], + "start_col": 14, + "start_line": 292 + } + }, + "998": { + "accessible_scopes": [ + "openzeppelin.token.erc20.library", + "openzeppelin.token.erc20.library.ERC20", + "openzeppelin.token.erc20.library.ERC20._spend_allowance" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 40, + "end_line": 292, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/3.9.13/envs/kakarot/lib/python3.9/site-packages/openzeppelin/token/erc20/library.cairo" + }, + "parent_location": [ + { + "end_col": 40, + "end_line": 292, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/3.9.13/envs/kakarot/lib/python3.9/site-packages/openzeppelin/token/erc20/library.cairo" + }, + "parent_location": [ + { + "end_col": 63, + "end_line": 294, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/3.9.13/envs/kakarot/lib/python3.9/site-packages/openzeppelin/token/erc20/library.cairo" + }, + "start_col": 46, + "start_line": 294 + }, + "While expanding the reference 'current_allowance' in:" + ], + "start_col": 14, + "start_line": 292 + }, + "While auto generating local variable for 'current_allowance'." + ], + "start_col": 14, + "start_line": 292 + } + }, + "999": { + "accessible_scopes": [ + "openzeppelin.token.erc20.library", + "openzeppelin.token.erc20.library.ERC20", + "openzeppelin.token.erc20.library.ERC20._spend_allowance" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 31, + "end_line": 293, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/3.9.13/envs/kakarot/lib/python3.9/site-packages/openzeppelin/token/erc20/library.cairo" + }, + "parent_location": [ + { + "end_col": 73, + "end_line": 294, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/3.9.13/envs/kakarot/lib/python3.9/site-packages/openzeppelin/token/erc20/library.cairo" + }, + "start_col": 65, + "start_line": 294 + }, + "While expanding the reference 'infinite' in:" + ], + "start_col": 14, + "start_line": 293 + } + }, + "1000": { + "accessible_scopes": [ + "openzeppelin.token.erc20.library", + "openzeppelin.token.erc20.library.ERC20", + "openzeppelin.token.erc20.library.ERC20._spend_allowance" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 31, + "end_line": 293, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/3.9.13/envs/kakarot/lib/python3.9/site-packages/openzeppelin/token/erc20/library.cairo" + }, + "parent_location": [ + { + "end_col": 73, + "end_line": 294, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/3.9.13/envs/kakarot/lib/python3.9/site-packages/openzeppelin/token/erc20/library.cairo" + }, + "start_col": 65, + "start_line": 294 + }, + "While expanding the reference 'infinite' in:" + ], + "start_col": 14, + "start_line": 293 + } + }, + "1001": { + "accessible_scopes": [ + "openzeppelin.token.erc20.library", + "openzeppelin.token.erc20.library.ERC20", + "openzeppelin.token.erc20.library.ERC20._spend_allowance" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 74, + "end_line": 294, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/3.9.13/envs/kakarot/lib/python3.9/site-packages/openzeppelin/token/erc20/library.cairo" + }, + "start_col": 35, + "start_line": 294 + } + }, + "1003": { + "accessible_scopes": [ + "openzeppelin.token.erc20.library", + "openzeppelin.token.erc20.library.ERC20", + "openzeppelin.token.erc20.library.ERC20._spend_allowance" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 11, + "end_line": 296, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/3.9.13/envs/kakarot/lib/python3.9/site-packages/openzeppelin/token/erc20/library.cairo" + }, + "start_col": 9, + "start_line": 296 + } + }, + "1005": { + "accessible_scopes": [ + "openzeppelin.token.erc20.library", + "openzeppelin.token.erc20.library.ERC20", + "openzeppelin.token.erc20.library.ERC20._spend_allowance" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 32, + "end_line": 357, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/3.9.13/envs/kakarot/lib/python3.9/site-packages/starkware/cairo/common/uint256.cairo" + }, + "parent_location": [ + { + "end_col": 74, + "end_line": 294, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/3.9.13/envs/kakarot/lib/python3.9/site-packages/openzeppelin/token/erc20/library.cairo" + }, + "parent_location": [ + { + "end_col": 32, + "end_line": 35, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/3.9.13/envs/kakarot/lib/python3.9/site-packages/openzeppelin/security/safemath/library.cairo" + }, + "parent_location": [ + { + "end_col": 93, + "end_line": 298, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/3.9.13/envs/kakarot/lib/python3.9/site-packages/openzeppelin/token/erc20/library.cairo" + }, + "start_col": 48, + "start_line": 298 + }, + "While trying to retrieve the implicit argument 'range_check_ptr' in:" + ], + "start_col": 17, + "start_line": 35 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 35, + "start_line": 294 + }, + "While trying to update the implicit return value 'range_check_ptr' in:" + ], + "start_col": 17, + "start_line": 357 + } + }, + "1006": { + "accessible_scopes": [ + "openzeppelin.token.erc20.library", + "openzeppelin.token.erc20.library.ERC20", + "openzeppelin.token.erc20.library.ERC20._spend_allowance" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 40, + "end_line": 292, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/3.9.13/envs/kakarot/lib/python3.9/site-packages/openzeppelin/token/erc20/library.cairo" + }, + "parent_location": [ + { + "end_col": 40, + "end_line": 292, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/3.9.13/envs/kakarot/lib/python3.9/site-packages/openzeppelin/token/erc20/library.cairo" + }, + "parent_location": [ + { + "end_col": 84, + "end_line": 298, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/3.9.13/envs/kakarot/lib/python3.9/site-packages/openzeppelin/token/erc20/library.cairo" + }, + "start_col": 67, + "start_line": 298 + }, + "While expanding the reference 'current_allowance' in:" + ], + "start_col": 14, + "start_line": 292 + }, + "While auto generating local variable for 'current_allowance'." + ], + "start_col": 14, + "start_line": 292 + } + }, + "1007": { + "accessible_scopes": [ + "openzeppelin.token.erc20.library", + "openzeppelin.token.erc20.library.ERC20", + "openzeppelin.token.erc20.library.ERC20._spend_allowance" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 40, + "end_line": 292, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/3.9.13/envs/kakarot/lib/python3.9/site-packages/openzeppelin/token/erc20/library.cairo" + }, + "parent_location": [ + { + "end_col": 40, + "end_line": 292, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/3.9.13/envs/kakarot/lib/python3.9/site-packages/openzeppelin/token/erc20/library.cairo" + }, + "parent_location": [ + { + "end_col": 84, + "end_line": 298, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/3.9.13/envs/kakarot/lib/python3.9/site-packages/openzeppelin/token/erc20/library.cairo" + }, + "start_col": 67, + "start_line": 298 + }, + "While expanding the reference 'current_allowance' in:" + ], + "start_col": 14, + "start_line": 292 + }, + "While auto generating local variable for 'current_allowance'." + ], + "start_col": 14, + "start_line": 292 + } + }, + "1008": { + "accessible_scopes": [ + "openzeppelin.token.erc20.library", + "openzeppelin.token.erc20.library.ERC20", + "openzeppelin.token.erc20.library.ERC20._spend_allowance" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 52, + "end_line": 285, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/3.9.13/envs/kakarot/lib/python3.9/site-packages/openzeppelin/token/erc20/library.cairo" + }, + "parent_location": [ + { + "end_col": 92, + "end_line": 298, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/3.9.13/envs/kakarot/lib/python3.9/site-packages/openzeppelin/token/erc20/library.cairo" + }, + "start_col": 86, + "start_line": 298 + }, + "While expanding the reference 'amount' in:" + ], + "start_col": 37, + "start_line": 285 + } + }, + "1009": { + "accessible_scopes": [ + "openzeppelin.token.erc20.library", + "openzeppelin.token.erc20.library.ERC20", + "openzeppelin.token.erc20.library.ERC20._spend_allowance" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 52, + "end_line": 285, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/3.9.13/envs/kakarot/lib/python3.9/site-packages/openzeppelin/token/erc20/library.cairo" + }, + "parent_location": [ + { + "end_col": 92, + "end_line": 298, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/3.9.13/envs/kakarot/lib/python3.9/site-packages/openzeppelin/token/erc20/library.cairo" + }, + "start_col": 86, + "start_line": 298 + }, + "While expanding the reference 'amount' in:" + ], + "start_col": 37, + "start_line": 285 + } + }, + "1010": { + "accessible_scopes": [ + "openzeppelin.token.erc20.library", + "openzeppelin.token.erc20.library.ERC20", + "openzeppelin.token.erc20.library.ERC20._spend_allowance" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 93, + "end_line": 298, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/3.9.13/envs/kakarot/lib/python3.9/site-packages/openzeppelin/token/erc20/library.cairo" + }, + "start_col": 48, + "start_line": 298 + } + }, + "1012": { + "accessible_scopes": [ + "openzeppelin.token.erc20.library", + "openzeppelin.token.erc20.library.ERC20", + "openzeppelin.token.erc20.library.ERC20._spend_allowance" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 33, + "end_line": 15, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC20_allowances/decl.cairo" + }, + "parent_location": [ + { + "end_col": 81, + "end_line": 292, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/3.9.13/envs/kakarot/lib/python3.9/site-packages/openzeppelin/token/erc20/library.cairo" + }, + "parent_location": [ + { + "end_col": 33, + "end_line": 15, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC20_allowances/decl.cairo" + }, + "parent_location": [ + { + "end_col": 81, + "end_line": 292, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/3.9.13/envs/kakarot/lib/python3.9/site-packages/openzeppelin/token/erc20/library.cairo" + }, + "parent_location": [ + { + "end_col": 37, + "end_line": 264, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/3.9.13/envs/kakarot/lib/python3.9/site-packages/openzeppelin/token/erc20/library.cairo" + }, + "parent_location": [ + { + "end_col": 52, + "end_line": 301, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/3.9.13/envs/kakarot/lib/python3.9/site-packages/openzeppelin/token/erc20/library.cairo" + }, + "start_col": 13, + "start_line": 301 + }, + "While trying to retrieve the implicit argument 'syscall_ptr' in:" + ], + "start_col": 19, + "start_line": 264 + }, + "While expanding the reference 'syscall_ptr' in:" + ], + "start_col": 44, + "start_line": 292 + }, + "While trying to update the implicit return value 'syscall_ptr' in:" + ], + "start_col": 15, + "start_line": 15 + }, + "While auto generating local variable for 'syscall_ptr'." + ], + "start_col": 44, + "start_line": 292 + }, + "While trying to update the implicit return value 'syscall_ptr' in:" + ], + "start_col": 15, + "start_line": 15 + } + }, + "1013": { + "accessible_scopes": [ + "openzeppelin.token.erc20.library", + "openzeppelin.token.erc20.library.ERC20", + "openzeppelin.token.erc20.library.ERC20._spend_allowance" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 61, + "end_line": 15, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC20_allowances/decl.cairo" + }, + "parent_location": [ + { + "end_col": 81, + "end_line": 292, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/3.9.13/envs/kakarot/lib/python3.9/site-packages/openzeppelin/token/erc20/library.cairo" + }, + "parent_location": [ + { + "end_col": 61, + "end_line": 15, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC20_allowances/decl.cairo" + }, + "parent_location": [ + { + "end_col": 81, + "end_line": 292, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/3.9.13/envs/kakarot/lib/python3.9/site-packages/openzeppelin/token/erc20/library.cairo" + }, + "parent_location": [ + { + "end_col": 65, + "end_line": 264, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/3.9.13/envs/kakarot/lib/python3.9/site-packages/openzeppelin/token/erc20/library.cairo" + }, + "parent_location": [ + { + "end_col": 52, + "end_line": 301, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/3.9.13/envs/kakarot/lib/python3.9/site-packages/openzeppelin/token/erc20/library.cairo" + }, + "start_col": 13, + "start_line": 301 + }, + "While trying to retrieve the implicit argument 'pedersen_ptr' in:" + ], + "start_col": 39, + "start_line": 264 + }, + "While expanding the reference 'pedersen_ptr' in:" + ], + "start_col": 44, + "start_line": 292 + }, + "While trying to update the implicit return value 'pedersen_ptr' in:" + ], + "start_col": 35, + "start_line": 15 + }, + "While auto generating local variable for 'pedersen_ptr'." + ], + "start_col": 44, + "start_line": 292 + }, + "While trying to update the implicit return value 'pedersen_ptr' in:" + ], + "start_col": 35, + "start_line": 15 + } + }, + "1014": { + "accessible_scopes": [ + "openzeppelin.token.erc20.library", + "openzeppelin.token.erc20.library.ERC20", + "openzeppelin.token.erc20.library.ERC20._spend_allowance" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 32, + "end_line": 35, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/3.9.13/envs/kakarot/lib/python3.9/site-packages/openzeppelin/security/safemath/library.cairo" + }, + "parent_location": [ + { + "end_col": 93, + "end_line": 298, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/3.9.13/envs/kakarot/lib/python3.9/site-packages/openzeppelin/token/erc20/library.cairo" + }, + "parent_location": [ + { + "end_col": 82, + "end_line": 264, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/3.9.13/envs/kakarot/lib/python3.9/site-packages/openzeppelin/token/erc20/library.cairo" + }, + "parent_location": [ + { + "end_col": 52, + "end_line": 301, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/3.9.13/envs/kakarot/lib/python3.9/site-packages/openzeppelin/token/erc20/library.cairo" + }, + "start_col": 13, + "start_line": 301 + }, + "While trying to retrieve the implicit argument 'range_check_ptr' in:" + ], + "start_col": 67, + "start_line": 264 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 48, + "start_line": 298 + }, + "While trying to update the implicit return value 'range_check_ptr' in:" + ], + "start_col": 17, + "start_line": 35 + } + }, + "1015": { + "accessible_scopes": [ + "openzeppelin.token.erc20.library", + "openzeppelin.token.erc20.library.ERC20", + "openzeppelin.token.erc20.library.ERC20._spend_allowance" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 20, + "end_line": 285, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/3.9.13/envs/kakarot/lib/python3.9/site-packages/openzeppelin/token/erc20/library.cairo" + }, + "parent_location": [ + { + "end_col": 27, + "end_line": 301, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/3.9.13/envs/kakarot/lib/python3.9/site-packages/openzeppelin/token/erc20/library.cairo" + }, + "start_col": 22, + "start_line": 301 + }, + "While expanding the reference 'owner' in:" + ], + "start_col": 9, + "start_line": 285 + } + }, + "1016": { + "accessible_scopes": [ + "openzeppelin.token.erc20.library", + "openzeppelin.token.erc20.library.ERC20", + "openzeppelin.token.erc20.library.ERC20._spend_allowance" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 35, + "end_line": 285, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/3.9.13/envs/kakarot/lib/python3.9/site-packages/openzeppelin/token/erc20/library.cairo" + }, + "parent_location": [ + { + "end_col": 36, + "end_line": 301, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/3.9.13/envs/kakarot/lib/python3.9/site-packages/openzeppelin/token/erc20/library.cairo" + }, + "start_col": 29, + "start_line": 301 + }, + "While expanding the reference 'spender' in:" + ], + "start_col": 22, + "start_line": 285 + } + }, + "1017": { + "accessible_scopes": [ + "openzeppelin.token.erc20.library", + "openzeppelin.token.erc20.library.ERC20", + "openzeppelin.token.erc20.library.ERC20._spend_allowance" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 44, + "end_line": 298, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/3.9.13/envs/kakarot/lib/python3.9/site-packages/openzeppelin/token/erc20/library.cairo" + }, + "parent_location": [ + { + "end_col": 51, + "end_line": 301, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/3.9.13/envs/kakarot/lib/python3.9/site-packages/openzeppelin/token/erc20/library.cairo" + }, + "start_col": 38, + "start_line": 301 + }, + "While expanding the reference 'new_allowance' in:" + ], + "start_col": 22, + "start_line": 298 + } + }, + "1018": { + "accessible_scopes": [ + "openzeppelin.token.erc20.library", + "openzeppelin.token.erc20.library.ERC20", + "openzeppelin.token.erc20.library.ERC20._spend_allowance" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 44, + "end_line": 298, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/3.9.13/envs/kakarot/lib/python3.9/site-packages/openzeppelin/token/erc20/library.cairo" + }, + "parent_location": [ + { + "end_col": 51, + "end_line": 301, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/3.9.13/envs/kakarot/lib/python3.9/site-packages/openzeppelin/token/erc20/library.cairo" + }, + "start_col": 38, + "start_line": 301 + }, + "While expanding the reference 'new_allowance' in:" + ], + "start_col": 22, + "start_line": 298 + } + }, + "1019": { + "accessible_scopes": [ + "openzeppelin.token.erc20.library", + "openzeppelin.token.erc20.library.ERC20", + "openzeppelin.token.erc20.library.ERC20._spend_allowance" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 52, + "end_line": 301, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/3.9.13/envs/kakarot/lib/python3.9/site-packages/openzeppelin/token/erc20/library.cairo" + }, + "start_col": 13, + "start_line": 301 + } + }, + "1021": { + "accessible_scopes": [ + "openzeppelin.token.erc20.library", + "openzeppelin.token.erc20.library.ERC20", + "openzeppelin.token.erc20.library.ERC20._spend_allowance" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 23, + "end_line": 302, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/3.9.13/envs/kakarot/lib/python3.9/site-packages/openzeppelin/token/erc20/library.cairo" + }, + "start_col": 13, + "start_line": 302 + } + }, + "1022": { + "accessible_scopes": [ + "openzeppelin.token.erc20.library", + "openzeppelin.token.erc20.library.ERC20", + "openzeppelin.token.erc20.library.ERC20._spend_allowance" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 33, + "end_line": 15, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC20_allowances/decl.cairo" + }, + "parent_location": [ + { + "end_col": 81, + "end_line": 292, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/3.9.13/envs/kakarot/lib/python3.9/site-packages/openzeppelin/token/erc20/library.cairo" + }, + "parent_location": [ + { + "end_col": 33, + "end_line": 15, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC20_allowances/decl.cairo" + }, + "parent_location": [ + { + "end_col": 81, + "end_line": 292, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/3.9.13/envs/kakarot/lib/python3.9/site-packages/openzeppelin/token/erc20/library.cairo" + }, + "parent_location": [ + { + "end_col": 45, + "end_line": 284, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/3.9.13/envs/kakarot/lib/python3.9/site-packages/openzeppelin/token/erc20/library.cairo" + }, + "parent_location": [ + { + "end_col": 19, + "end_line": 304, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/3.9.13/envs/kakarot/lib/python3.9/site-packages/openzeppelin/token/erc20/library.cairo" + }, + "start_col": 9, + "start_line": 304 + }, + "While trying to retrieve the implicit argument 'syscall_ptr' in:" + ], + "start_col": 27, + "start_line": 284 + }, + "While expanding the reference 'syscall_ptr' in:" + ], + "start_col": 44, + "start_line": 292 + }, + "While trying to update the implicit return value 'syscall_ptr' in:" + ], + "start_col": 15, + "start_line": 15 + }, + "While auto generating local variable for 'syscall_ptr'." + ], + "start_col": 44, + "start_line": 292 + }, + "While trying to update the implicit return value 'syscall_ptr' in:" + ], + "start_col": 15, + "start_line": 15 + } + }, + "1023": { + "accessible_scopes": [ + "openzeppelin.token.erc20.library", + "openzeppelin.token.erc20.library.ERC20", + "openzeppelin.token.erc20.library.ERC20._spend_allowance" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 61, + "end_line": 15, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC20_allowances/decl.cairo" + }, + "parent_location": [ + { + "end_col": 81, + "end_line": 292, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/3.9.13/envs/kakarot/lib/python3.9/site-packages/openzeppelin/token/erc20/library.cairo" + }, + "parent_location": [ + { + "end_col": 61, + "end_line": 15, + "input_file": { + "filename": "autogen/starknet/storage_var/ERC20_allowances/decl.cairo" + }, + "parent_location": [ + { + "end_col": 81, + "end_line": 292, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/3.9.13/envs/kakarot/lib/python3.9/site-packages/openzeppelin/token/erc20/library.cairo" + }, + "parent_location": [ + { + "end_col": 73, + "end_line": 284, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/3.9.13/envs/kakarot/lib/python3.9/site-packages/openzeppelin/token/erc20/library.cairo" + }, + "parent_location": [ + { + "end_col": 19, + "end_line": 304, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/3.9.13/envs/kakarot/lib/python3.9/site-packages/openzeppelin/token/erc20/library.cairo" + }, + "start_col": 9, + "start_line": 304 + }, + "While trying to retrieve the implicit argument 'pedersen_ptr' in:" + ], + "start_col": 47, + "start_line": 284 + }, + "While expanding the reference 'pedersen_ptr' in:" + ], + "start_col": 44, + "start_line": 292 + }, + "While trying to update the implicit return value 'pedersen_ptr' in:" + ], + "start_col": 35, + "start_line": 15 + }, + "While auto generating local variable for 'pedersen_ptr'." + ], + "start_col": 44, + "start_line": 292 + }, + "While trying to update the implicit return value 'pedersen_ptr' in:" + ], + "start_col": 35, + "start_line": 15 + } + }, + "1024": { + "accessible_scopes": [ + "openzeppelin.token.erc20.library", + "openzeppelin.token.erc20.library.ERC20", + "openzeppelin.token.erc20.library.ERC20._spend_allowance" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 32, + "end_line": 357, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/3.9.13/envs/kakarot/lib/python3.9/site-packages/starkware/cairo/common/uint256.cairo" + }, + "parent_location": [ + { + "end_col": 74, + "end_line": 294, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/3.9.13/envs/kakarot/lib/python3.9/site-packages/openzeppelin/token/erc20/library.cairo" + }, + "parent_location": [ + { + "end_col": 90, + "end_line": 284, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/3.9.13/envs/kakarot/lib/python3.9/site-packages/openzeppelin/token/erc20/library.cairo" + }, + "parent_location": [ + { + "end_col": 19, + "end_line": 304, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/3.9.13/envs/kakarot/lib/python3.9/site-packages/openzeppelin/token/erc20/library.cairo" + }, + "start_col": 9, + "start_line": 304 + }, + "While trying to retrieve the implicit argument 'range_check_ptr' in:" + ], + "start_col": 75, + "start_line": 284 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 35, + "start_line": 294 + }, + "While trying to update the implicit return value 'range_check_ptr' in:" + ], + "start_col": 17, + "start_line": 357 + } + }, + "1025": { + "accessible_scopes": [ + "openzeppelin.token.erc20.library", + "openzeppelin.token.erc20.library.ERC20", + "openzeppelin.token.erc20.library.ERC20._spend_allowance" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 19, + "end_line": 304, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/3.9.13/envs/kakarot/lib/python3.9/site-packages/openzeppelin/token/erc20/library.cairo" + }, + "start_col": 9, + "start_line": 304 + } + }, + "1026": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.constructor" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 36, + "end_line": 12, + "input_file": { + "filename": "./tests/fixtures/ERC20.cairo" + }, + "parent_location": [ + { + "end_col": 40, + "end_line": 60, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/3.9.13/envs/kakarot/lib/python3.9/site-packages/openzeppelin/token/erc20/library.cairo" + }, + "parent_location": [ + { + "end_col": 46, + "end_line": 15, + "input_file": { + "filename": "./tests/fixtures/ERC20.cairo" + }, + "start_col": 5, + "start_line": 15 + }, + "While trying to retrieve the implicit argument 'syscall_ptr' in:" + ], + "start_col": 22, + "start_line": 60 + }, + "While expanding the reference 'syscall_ptr' in:" + ], + "start_col": 18, + "start_line": 12 + } + }, + "1027": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.constructor" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 64, + "end_line": 12, + "input_file": { + "filename": "./tests/fixtures/ERC20.cairo" + }, + "parent_location": [ + { + "end_col": 68, + "end_line": 60, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/3.9.13/envs/kakarot/lib/python3.9/site-packages/openzeppelin/token/erc20/library.cairo" + }, + "parent_location": [ + { + "end_col": 46, + "end_line": 15, + "input_file": { + "filename": "./tests/fixtures/ERC20.cairo" + }, + "start_col": 5, + "start_line": 15 + }, + "While trying to retrieve the implicit argument 'pedersen_ptr' in:" + ], + "start_col": 42, + "start_line": 60 + }, + "While expanding the reference 'pedersen_ptr' in:" + ], + "start_col": 38, + "start_line": 12 + } + }, + "1028": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.constructor" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 81, + "end_line": 12, + "input_file": { + "filename": "./tests/fixtures/ERC20.cairo" + }, + "parent_location": [ + { + "end_col": 85, + "end_line": 60, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/3.9.13/envs/kakarot/lib/python3.9/site-packages/openzeppelin/token/erc20/library.cairo" + }, + "parent_location": [ + { + "end_col": 46, + "end_line": 15, + "input_file": { + "filename": "./tests/fixtures/ERC20.cairo" + }, + "start_col": 5, + "start_line": 15 + }, + "While trying to retrieve the implicit argument 'range_check_ptr' in:" + ], + "start_col": 70, + "start_line": 60 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 66, + "start_line": 12 + } + }, + "1029": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.constructor" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 15, + "end_line": 13, + "input_file": { + "filename": "./tests/fixtures/ERC20.cairo" + }, + "parent_location": [ + { + "end_col": 27, + "end_line": 15, + "input_file": { + "filename": "./tests/fixtures/ERC20.cairo" + }, + "start_col": 23, + "start_line": 15 + }, + "While expanding the reference 'name' in:" + ], + "start_col": 5, + "start_line": 13 + } + }, + "1030": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.constructor" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 29, + "end_line": 13, + "input_file": { + "filename": "./tests/fixtures/ERC20.cairo" + }, + "parent_location": [ + { + "end_col": 35, + "end_line": 15, + "input_file": { + "filename": "./tests/fixtures/ERC20.cairo" + }, + "start_col": 29, + "start_line": 15 + }, + "While expanding the reference 'symbol' in:" + ], + "start_col": 17, + "start_line": 13 + } + }, + "1031": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.constructor" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 45, + "end_line": 13, + "input_file": { + "filename": "./tests/fixtures/ERC20.cairo" + }, + "parent_location": [ + { + "end_col": 45, + "end_line": 15, + "input_file": { + "filename": "./tests/fixtures/ERC20.cairo" + }, + "start_col": 37, + "start_line": 15 + }, + "While expanding the reference 'decimals' in:" + ], + "start_col": 31, + "start_line": 13 + } + }, + "1032": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.constructor" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 46, + "end_line": 15, + "input_file": { + "filename": "./tests/fixtures/ERC20.cairo" + }, + "start_col": 5, + "start_line": 15 + } + }, + "1034": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.constructor" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 15, + "end_line": 16, + "input_file": { + "filename": "./tests/fixtures/ERC20.cairo" + }, + "start_col": 5, + "start_line": 16 + } + }, + "1035": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.constructor" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 40, + "end_line": 2, + "input_file": { + "filename": "autogen/starknet/arg_processor/95ae8cb44b0755388c1e634980ee8b2634c31b1a198c799f64c304663bce699a.cairo" + }, + "parent_location": [ + { + "end_col": 45, + "end_line": 13, + "input_file": { + "filename": "./tests/fixtures/ERC20.cairo" + }, + "parent_location": [ + { + "end_col": 45, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/arg_processor/c31620b02d4d706f0542c989b2aadc01b0981d1f6a5933a8fe4937ace3d70d92.cairo" + }, + "parent_location": [ + { + "end_col": 17, + "end_line": 12, + "input_file": { + "filename": "./tests/fixtures/ERC20.cairo" + }, + "parent_location": [ + { + "end_col": 57, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/arg_processor/01cba52f8515996bb9d7070bde81ff39281d096d7024a558efcba6e1fd2402cf.cairo" + }, + "parent_location": [ + { + "end_col": 17, + "end_line": 12, + "input_file": { + "filename": "./tests/fixtures/ERC20.cairo" + }, + "start_col": 6, + "start_line": 12 + }, + "While handling calldata of" + ], + "start_col": 35, + "start_line": 1 + }, + "While expanding the reference '__calldata_actual_size' in:" + ], + "start_col": 6, + "start_line": 12 + }, + "While handling calldata of" + ], + "start_col": 31, + "start_line": 1 + }, + "While expanding the reference '__calldata_ptr' in:" + ], + "start_col": 31, + "start_line": 13 + }, + "While handling calldata argument 'decimals'" + ], + "start_col": 22, + "start_line": 2 + } + }, + "1037": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.constructor" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 58, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/arg_processor/01cba52f8515996bb9d7070bde81ff39281d096d7024a558efcba6e1fd2402cf.cairo" + }, + "parent_location": [ + { + "end_col": 17, + "end_line": 12, + "input_file": { + "filename": "./tests/fixtures/ERC20.cairo" + }, + "start_col": 6, + "start_line": 12 + }, + "While handling calldata of" + ], + "start_col": 1, + "start_line": 1 + } + }, + "1038": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.constructor" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 64, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/constructor/b2c52ca2d2a8fc8791a983086d8716c5eacd0c3d62934914d2286f84b98ff4cb.cairo" + }, + "parent_location": [ + { + "end_col": 36, + "end_line": 12, + "input_file": { + "filename": "./tests/fixtures/ERC20.cairo" + }, + "parent_location": [ + { + "end_col": 55, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/constructor/345960abffbc803563766b5ab8cf26002716e66518f667801beb34e2c871a161.cairo" + }, + "parent_location": [ + { + "end_col": 17, + "end_line": 12, + "input_file": { + "filename": "./tests/fixtures/ERC20.cairo" + }, + "start_col": 6, + "start_line": 12 + }, + "While constructing the external wrapper for:" + ], + "start_col": 44, + "start_line": 1 + }, + "While expanding the reference 'syscall_ptr' in:" + ], + "start_col": 18, + "start_line": 12 + }, + "While constructing the external wrapper for:" + ], + "start_col": 19, + "start_line": 1 + } + }, + "1039": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.constructor" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 110, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/constructor/9684a85e93c782014ca14293edea4eb2502039a5a7b6538ecd39c56faaf12529.cairo" + }, + "parent_location": [ + { + "end_col": 64, + "end_line": 12, + "input_file": { + "filename": "./tests/fixtures/ERC20.cairo" + }, + "parent_location": [ + { + "end_col": 82, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/constructor/345960abffbc803563766b5ab8cf26002716e66518f667801beb34e2c871a161.cairo" + }, + "parent_location": [ + { + "end_col": 17, + "end_line": 12, + "input_file": { + "filename": "./tests/fixtures/ERC20.cairo" + }, + "start_col": 6, + "start_line": 12 + }, + "While constructing the external wrapper for:" + ], + "start_col": 70, + "start_line": 1 + }, + "While expanding the reference 'pedersen_ptr' in:" + ], + "start_col": 38, + "start_line": 12 + }, + "While constructing the external wrapper for:" + ], + "start_col": 20, + "start_line": 1 + } + }, + "1040": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.constructor" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 67, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/constructor/741ea357d6336b0bed7bf0472425acd0311d543883b803388880e60a232040c7.cairo" + }, + "parent_location": [ + { + "end_col": 81, + "end_line": 12, + "input_file": { + "filename": "./tests/fixtures/ERC20.cairo" + }, + "parent_location": [ + { + "end_col": 115, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/constructor/345960abffbc803563766b5ab8cf26002716e66518f667801beb34e2c871a161.cairo" + }, + "parent_location": [ + { + "end_col": 17, + "end_line": 12, + "input_file": { + "filename": "./tests/fixtures/ERC20.cairo" + }, + "start_col": 6, + "start_line": 12 + }, + "While constructing the external wrapper for:" + ], + "start_col": 100, + "start_line": 1 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 66, + "start_line": 12 + }, + "While constructing the external wrapper for:" + ], + "start_col": 23, + "start_line": 1 + } + }, + "1041": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.constructor" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 43, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/arg_processor/e1eb73cd870ec466294c3700e77817cf3c039ac1384882ddb76383eb87a5da90.cairo" + }, + "parent_location": [ + { + "end_col": 15, + "end_line": 13, + "input_file": { + "filename": "./tests/fixtures/ERC20.cairo" + }, + "parent_location": [ + { + "end_col": 141, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/constructor/345960abffbc803563766b5ab8cf26002716e66518f667801beb34e2c871a161.cairo" + }, + "parent_location": [ + { + "end_col": 17, + "end_line": 12, + "input_file": { + "filename": "./tests/fixtures/ERC20.cairo" + }, + "start_col": 6, + "start_line": 12 + }, + "While constructing the external wrapper for:" + ], + "start_col": 122, + "start_line": 1 + }, + "While expanding the reference '__calldata_arg_name' in:" + ], + "start_col": 5, + "start_line": 13 + }, + "While handling calldata argument 'name'" + ], + "start_col": 27, + "start_line": 1 + } + }, + "1042": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.constructor" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 45, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/arg_processor/99058c0781745b3c0332799d723549974cbf489b623dde03906204304de60803.cairo" + }, + "parent_location": [ + { + "end_col": 29, + "end_line": 13, + "input_file": { + "filename": "./tests/fixtures/ERC20.cairo" + }, + "parent_location": [ + { + "end_col": 171, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/constructor/345960abffbc803563766b5ab8cf26002716e66518f667801beb34e2c871a161.cairo" + }, + "parent_location": [ + { + "end_col": 17, + "end_line": 12, + "input_file": { + "filename": "./tests/fixtures/ERC20.cairo" + }, + "start_col": 6, + "start_line": 12 + }, + "While constructing the external wrapper for:" + ], + "start_col": 150, + "start_line": 1 + }, + "While expanding the reference '__calldata_arg_symbol' in:" + ], + "start_col": 17, + "start_line": 13 + }, + "While handling calldata argument 'symbol'" + ], + "start_col": 29, + "start_line": 1 + } + }, + "1043": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.constructor" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 47, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/arg_processor/95ae8cb44b0755388c1e634980ee8b2634c31b1a198c799f64c304663bce699a.cairo" + }, + "parent_location": [ + { + "end_col": 45, + "end_line": 13, + "input_file": { + "filename": "./tests/fixtures/ERC20.cairo" + }, + "parent_location": [ + { + "end_col": 205, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/constructor/345960abffbc803563766b5ab8cf26002716e66518f667801beb34e2c871a161.cairo" + }, + "parent_location": [ + { + "end_col": 17, + "end_line": 12, + "input_file": { + "filename": "./tests/fixtures/ERC20.cairo" + }, + "start_col": 6, + "start_line": 12 + }, + "While constructing the external wrapper for:" + ], + "start_col": 182, + "start_line": 1 + }, + "While expanding the reference '__calldata_arg_decimals' in:" + ], + "start_col": 31, + "start_line": 13 + }, + "While handling calldata argument 'decimals'" + ], + "start_col": 31, + "start_line": 1 + } + }, + "1044": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.constructor" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 17, + "end_line": 12, + "input_file": { + "filename": "./tests/fixtures/ERC20.cairo" + }, + "start_col": 6, + "start_line": 12 + } + }, + "1046": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.constructor" + ], + "flow_tracking_data": null, + "hints": [ + { + "location": { + "end_col": 34, + "end_line": 2, + "input_file": { + "filename": "autogen/starknet/external/constructor/345960abffbc803563766b5ab8cf26002716e66518f667801beb34e2c871a161.cairo" + }, + "parent_location": [ + { + "end_col": 17, + "end_line": 12, + "input_file": { + "filename": "./tests/fixtures/ERC20.cairo" + }, + "start_col": 6, + "start_line": 12 + }, + "While constructing the external wrapper for:" + ], + "start_col": 1, + "start_line": 2 + }, + "n_prefix_newlines": 0 + } + ], + "inst": { + "end_col": 24, + "end_line": 3, + "input_file": { + "filename": "autogen/starknet/external/constructor/345960abffbc803563766b5ab8cf26002716e66518f667801beb34e2c871a161.cairo" + }, + "parent_location": [ + { + "end_col": 17, + "end_line": 12, + "input_file": { + "filename": "./tests/fixtures/ERC20.cairo" + }, + "start_col": 6, + "start_line": 12 + }, + "While constructing the external wrapper for:" + ], + "start_col": 1, + "start_line": 3 + } + }, + "1048": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.constructor" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 55, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/constructor/345960abffbc803563766b5ab8cf26002716e66518f667801beb34e2c871a161.cairo" + }, + "parent_location": [ + { + "end_col": 17, + "end_line": 12, + "input_file": { + "filename": "./tests/fixtures/ERC20.cairo" + }, + "parent_location": [ + { + "end_col": 20, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/constructor/da17921a4e81c09e730800bbf23bfdbe5e9e6bfaedc59d80fbf62087fa43c27d.cairo" + }, + "parent_location": [ + { + "end_col": 17, + "end_line": 12, + "input_file": { + "filename": "./tests/fixtures/ERC20.cairo" + }, + "start_col": 6, + "start_line": 12 + }, + "While constructing the external wrapper for:" + ], + "start_col": 9, + "start_line": 1 + }, + "While expanding the reference 'syscall_ptr' in:" + ], + "start_col": 6, + "start_line": 12 + }, + "While constructing the external wrapper for:" + ], + "start_col": 44, + "start_line": 1 + } + }, + "1049": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.constructor" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 82, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/constructor/345960abffbc803563766b5ab8cf26002716e66518f667801beb34e2c871a161.cairo" + }, + "parent_location": [ + { + "end_col": 17, + "end_line": 12, + "input_file": { + "filename": "./tests/fixtures/ERC20.cairo" + }, + "parent_location": [ + { + "end_col": 33, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/constructor/da17921a4e81c09e730800bbf23bfdbe5e9e6bfaedc59d80fbf62087fa43c27d.cairo" + }, + "parent_location": [ + { + "end_col": 17, + "end_line": 12, + "input_file": { + "filename": "./tests/fixtures/ERC20.cairo" + }, + "start_col": 6, + "start_line": 12 + }, + "While constructing the external wrapper for:" + ], + "start_col": 21, + "start_line": 1 + }, + "While expanding the reference 'pedersen_ptr' in:" + ], + "start_col": 6, + "start_line": 12 + }, + "While constructing the external wrapper for:" + ], + "start_col": 70, + "start_line": 1 + } + }, + "1050": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.constructor" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 115, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/constructor/345960abffbc803563766b5ab8cf26002716e66518f667801beb34e2c871a161.cairo" + }, + "parent_location": [ + { + "end_col": 17, + "end_line": 12, + "input_file": { + "filename": "./tests/fixtures/ERC20.cairo" + }, + "parent_location": [ + { + "end_col": 49, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/constructor/da17921a4e81c09e730800bbf23bfdbe5e9e6bfaedc59d80fbf62087fa43c27d.cairo" + }, + "parent_location": [ + { + "end_col": 17, + "end_line": 12, + "input_file": { + "filename": "./tests/fixtures/ERC20.cairo" + }, + "start_col": 6, + "start_line": 12 + }, + "While constructing the external wrapper for:" + ], + "start_col": 34, + "start_line": 1 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 6, + "start_line": 12 + }, + "While constructing the external wrapper for:" + ], + "start_col": 100, + "start_line": 1 + } + }, + "1051": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.constructor" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 21, + "end_line": 4, + "input_file": { + "filename": "autogen/starknet/external/constructor/345960abffbc803563766b5ab8cf26002716e66518f667801beb34e2c871a161.cairo" + }, + "parent_location": [ + { + "end_col": 17, + "end_line": 12, + "input_file": { + "filename": "./tests/fixtures/ERC20.cairo" + }, + "parent_location": [ + { + "end_col": 62, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/constructor/da17921a4e81c09e730800bbf23bfdbe5e9e6bfaedc59d80fbf62087fa43c27d.cairo" + }, + "parent_location": [ + { + "end_col": 17, + "end_line": 12, + "input_file": { + "filename": "./tests/fixtures/ERC20.cairo" + }, + "start_col": 6, + "start_line": 12 + }, + "While constructing the external wrapper for:" + ], + "start_col": 50, + "start_line": 1 + }, + "While expanding the reference 'retdata_size' in:" + ], + "start_col": 6, + "start_line": 12 + }, + "While constructing the external wrapper for:" + ], + "start_col": 20, + "start_line": 4 + } + }, + "1053": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.constructor" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 16, + "end_line": 3, + "input_file": { + "filename": "autogen/starknet/external/constructor/345960abffbc803563766b5ab8cf26002716e66518f667801beb34e2c871a161.cairo" + }, + "parent_location": [ + { + "end_col": 17, + "end_line": 12, + "input_file": { + "filename": "./tests/fixtures/ERC20.cairo" + }, + "parent_location": [ + { + "end_col": 70, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/constructor/da17921a4e81c09e730800bbf23bfdbe5e9e6bfaedc59d80fbf62087fa43c27d.cairo" + }, + "parent_location": [ + { + "end_col": 17, + "end_line": 12, + "input_file": { + "filename": "./tests/fixtures/ERC20.cairo" + }, + "start_col": 6, + "start_line": 12 + }, + "While constructing the external wrapper for:" + ], + "start_col": 63, + "start_line": 1 + }, + "While expanding the reference 'retdata' in:" + ], + "start_col": 6, + "start_line": 12 + }, + "While constructing the external wrapper for:" + ], + "start_col": 9, + "start_line": 3 + } + }, + "1054": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.constructor" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 72, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/constructor/da17921a4e81c09e730800bbf23bfdbe5e9e6bfaedc59d80fbf62087fa43c27d.cairo" + }, + "parent_location": [ + { + "end_col": 17, + "end_line": 12, + "input_file": { + "filename": "./tests/fixtures/ERC20.cairo" + }, + "start_col": 6, + "start_line": 12 + }, + "While constructing the external wrapper for:" + ], + "start_col": 1, + "start_line": 1 + } + }, + "1055": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.name" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 29, + "end_line": 24, + "input_file": { + "filename": "./tests/fixtures/ERC20.cairo" + }, + "parent_location": [ + { + "end_col": 33, + "end_line": 76, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/3.9.13/envs/kakarot/lib/python3.9/site-packages/openzeppelin/token/erc20/library.cairo" + }, + "parent_location": [ + { + "end_col": 24, + "end_line": 25, + "input_file": { + "filename": "./tests/fixtures/ERC20.cairo" + }, + "start_col": 12, + "start_line": 25 + }, + "While trying to retrieve the implicit argument 'syscall_ptr' in:" + ], + "start_col": 15, + "start_line": 76 + }, + "While expanding the reference 'syscall_ptr' in:" + ], + "start_col": 11, + "start_line": 24 + } + }, + "1056": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.name" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 57, + "end_line": 24, + "input_file": { + "filename": "./tests/fixtures/ERC20.cairo" + }, + "parent_location": [ + { + "end_col": 61, + "end_line": 76, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/3.9.13/envs/kakarot/lib/python3.9/site-packages/openzeppelin/token/erc20/library.cairo" + }, + "parent_location": [ + { + "end_col": 24, + "end_line": 25, + "input_file": { + "filename": "./tests/fixtures/ERC20.cairo" + }, + "start_col": 12, + "start_line": 25 + }, + "While trying to retrieve the implicit argument 'pedersen_ptr' in:" + ], + "start_col": 35, + "start_line": 76 + }, + "While expanding the reference 'pedersen_ptr' in:" + ], + "start_col": 31, + "start_line": 24 + } + }, + "1057": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.name" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 74, + "end_line": 24, + "input_file": { + "filename": "./tests/fixtures/ERC20.cairo" + }, + "parent_location": [ + { + "end_col": 78, + "end_line": 76, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/3.9.13/envs/kakarot/lib/python3.9/site-packages/openzeppelin/token/erc20/library.cairo" + }, + "parent_location": [ + { + "end_col": 24, + "end_line": 25, + "input_file": { + "filename": "./tests/fixtures/ERC20.cairo" + }, + "start_col": 12, + "start_line": 25 + }, + "While trying to retrieve the implicit argument 'range_check_ptr' in:" + ], + "start_col": 63, + "start_line": 76 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 59, + "start_line": 24 + } + }, + "1058": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.name" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 24, + "end_line": 25, + "input_file": { + "filename": "./tests/fixtures/ERC20.cairo" + }, + "start_col": 12, + "start_line": 25 + } + }, + "1060": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.name" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 25, + "end_line": 25, + "input_file": { + "filename": "./tests/fixtures/ERC20.cairo" + }, + "start_col": 5, + "start_line": 25 + } + }, + "1061": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.name_encode_return" + ], + "flow_tracking_data": null, + "hints": [ + { + "location": { + "end_col": 38, + "end_line": 3, + "input_file": { + "filename": "autogen/starknet/external/return/name/c8fcd0b2b3f24b16bed33f1349d99fe0bde24b7764fe1bdc31d37b9ddca24adc.cairo" + }, + "parent_location": [ + { + "end_col": 10, + "end_line": 24, + "input_file": { + "filename": "./tests/fixtures/ERC20.cairo" + }, + "start_col": 6, + "start_line": 24 + }, + "While handling return value of" + ], + "start_col": 5, + "start_line": 3 + }, + "n_prefix_newlines": 0 + } + ], + "inst": { + "end_col": 18, + "end_line": 4, + "input_file": { + "filename": "autogen/starknet/external/return/name/c8fcd0b2b3f24b16bed33f1349d99fe0bde24b7764fe1bdc31d37b9ddca24adc.cairo" + }, + "parent_location": [ + { + "end_col": 10, + "end_line": 24, + "input_file": { + "filename": "./tests/fixtures/ERC20.cairo" + }, + "start_col": 6, + "start_line": 24 + }, + "While handling return value of" + ], + "start_col": 5, + "start_line": 4 + } + }, + "1063": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.name_encode_return" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 46, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/arg_processor/6f345e20daf86e05c346aa1f6a9eeaa296a59eb71a12784c017d25ed5b25ff32.cairo" + }, + "parent_location": [ + { + "end_col": 92, + "end_line": 24, + "input_file": { + "filename": "./tests/fixtures/ERC20.cairo" + }, + "start_col": 82, + "start_line": 24 + }, + "While handling return value 'name'" + ], + "start_col": 1, + "start_line": 1 + } + }, + "1064": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.name_encode_return" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 48, + "end_line": 2, + "input_file": { + "filename": "autogen/starknet/arg_processor/6f345e20daf86e05c346aa1f6a9eeaa296a59eb71a12784c017d25ed5b25ff32.cairo" + }, + "parent_location": [ + { + "end_col": 92, + "end_line": 24, + "input_file": { + "filename": "./tests/fixtures/ERC20.cairo" + }, + "parent_location": [ + { + "end_col": 36, + "end_line": 11, + "input_file": { + "filename": "autogen/starknet/external/return/name/c8fcd0b2b3f24b16bed33f1349d99fe0bde24b7764fe1bdc31d37b9ddca24adc.cairo" + }, + "parent_location": [ + { + "end_col": 10, + "end_line": 24, + "input_file": { + "filename": "./tests/fixtures/ERC20.cairo" + }, + "start_col": 6, + "start_line": 24 + }, + "While handling return value of" + ], + "start_col": 18, + "start_line": 11 + }, + "While expanding the reference '__return_value_ptr' in:" + ], + "start_col": 82, + "start_line": 24 + }, + "While handling return value 'name'" + ], + "start_col": 26, + "start_line": 2 + } + }, + "1066": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.name_encode_return" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 65, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/return/name/c8fcd0b2b3f24b16bed33f1349d99fe0bde24b7764fe1bdc31d37b9ddca24adc.cairo" + }, + "parent_location": [ + { + "end_col": 10, + "end_line": 24, + "input_file": { + "filename": "./tests/fixtures/ERC20.cairo" + }, + "parent_location": [ + { + "end_col": 40, + "end_line": 10, + "input_file": { + "filename": "autogen/starknet/external/return/name/c8fcd0b2b3f24b16bed33f1349d99fe0bde24b7764fe1bdc31d37b9ddca24adc.cairo" + }, + "parent_location": [ + { + "end_col": 10, + "end_line": 24, + "input_file": { + "filename": "./tests/fixtures/ERC20.cairo" + }, + "start_col": 6, + "start_line": 24 + }, + "While handling return value of" + ], + "start_col": 25, + "start_line": 10 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 6, + "start_line": 24 + }, + "While handling return value of" + ], + "start_col": 50, + "start_line": 1 + } + }, + "1067": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.name_encode_return" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 63, + "end_line": 11, + "input_file": { + "filename": "autogen/starknet/external/return/name/c8fcd0b2b3f24b16bed33f1349d99fe0bde24b7764fe1bdc31d37b9ddca24adc.cairo" + }, + "parent_location": [ + { + "end_col": 10, + "end_line": 24, + "input_file": { + "filename": "./tests/fixtures/ERC20.cairo" + }, + "start_col": 6, + "start_line": 24 + }, + "While handling return value of" + ], + "start_col": 18, + "start_line": 11 + } + }, + "1068": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.name_encode_return" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 35, + "end_line": 5, + "input_file": { + "filename": "autogen/starknet/external/return/name/c8fcd0b2b3f24b16bed33f1349d99fe0bde24b7764fe1bdc31d37b9ddca24adc.cairo" + }, + "parent_location": [ + { + "end_col": 10, + "end_line": 24, + "input_file": { + "filename": "./tests/fixtures/ERC20.cairo" + }, + "parent_location": [ + { + "end_col": 38, + "end_line": 12, + "input_file": { + "filename": "autogen/starknet/external/return/name/c8fcd0b2b3f24b16bed33f1349d99fe0bde24b7764fe1bdc31d37b9ddca24adc.cairo" + }, + "parent_location": [ + { + "end_col": 10, + "end_line": 24, + "input_file": { + "filename": "./tests/fixtures/ERC20.cairo" + }, + "start_col": 6, + "start_line": 24 + }, + "While handling return value of" + ], + "start_col": 14, + "start_line": 12 + }, + "While expanding the reference '__return_value_ptr_start' in:" + ], + "start_col": 6, + "start_line": 24 + }, + "While handling return value of" + ], + "start_col": 11, + "start_line": 5 + } + }, + "1069": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.name_encode_return" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 40, + "end_line": 12, + "input_file": { + "filename": "autogen/starknet/external/return/name/c8fcd0b2b3f24b16bed33f1349d99fe0bde24b7764fe1bdc31d37b9ddca24adc.cairo" + }, + "parent_location": [ + { + "end_col": 10, + "end_line": 24, + "input_file": { + "filename": "./tests/fixtures/ERC20.cairo" + }, + "start_col": 6, + "start_line": 24 + }, + "While handling return value of" + ], + "start_col": 5, + "start_line": 9 + } + }, + "1070": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.name" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 58, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/arg_processor/01cba52f8515996bb9d7070bde81ff39281d096d7024a558efcba6e1fd2402cf.cairo" + }, + "parent_location": [ + { + "end_col": 10, + "end_line": 24, + "input_file": { + "filename": "./tests/fixtures/ERC20.cairo" + }, + "start_col": 6, + "start_line": 24 + }, + "While handling calldata of" + ], + "start_col": 1, + "start_line": 1 + } + }, + "1071": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.name" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 64, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/name/b2c52ca2d2a8fc8791a983086d8716c5eacd0c3d62934914d2286f84b98ff4cb.cairo" + }, + "parent_location": [ + { + "end_col": 29, + "end_line": 24, + "input_file": { + "filename": "./tests/fixtures/ERC20.cairo" + }, + "parent_location": [ + { + "end_col": 55, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/name/3034a84ffbc2cc9a83b0bdb0bf6aadae87a5c63f8544f4bc76a18d60221f0e94.cairo" + }, + "parent_location": [ + { + "end_col": 10, + "end_line": 24, + "input_file": { + "filename": "./tests/fixtures/ERC20.cairo" + }, + "start_col": 6, + "start_line": 24 + }, + "While constructing the external wrapper for:" + ], + "start_col": 44, + "start_line": 1 + }, + "While expanding the reference 'syscall_ptr' in:" + ], + "start_col": 11, + "start_line": 24 + }, + "While constructing the external wrapper for:" + ], + "start_col": 19, + "start_line": 1 + } + }, + "1072": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.name" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 110, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/name/9684a85e93c782014ca14293edea4eb2502039a5a7b6538ecd39c56faaf12529.cairo" + }, + "parent_location": [ + { + "end_col": 57, + "end_line": 24, + "input_file": { + "filename": "./tests/fixtures/ERC20.cairo" + }, + "parent_location": [ + { + "end_col": 82, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/name/3034a84ffbc2cc9a83b0bdb0bf6aadae87a5c63f8544f4bc76a18d60221f0e94.cairo" + }, + "parent_location": [ + { + "end_col": 10, + "end_line": 24, + "input_file": { + "filename": "./tests/fixtures/ERC20.cairo" + }, + "start_col": 6, + "start_line": 24 + }, + "While constructing the external wrapper for:" + ], + "start_col": 70, + "start_line": 1 + }, + "While expanding the reference 'pedersen_ptr' in:" + ], + "start_col": 31, + "start_line": 24 + }, + "While constructing the external wrapper for:" + ], + "start_col": 20, + "start_line": 1 + } + }, + "1073": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.name" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 67, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/name/741ea357d6336b0bed7bf0472425acd0311d543883b803388880e60a232040c7.cairo" + }, + "parent_location": [ + { + "end_col": 74, + "end_line": 24, + "input_file": { + "filename": "./tests/fixtures/ERC20.cairo" + }, + "parent_location": [ + { + "end_col": 115, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/name/3034a84ffbc2cc9a83b0bdb0bf6aadae87a5c63f8544f4bc76a18d60221f0e94.cairo" + }, + "parent_location": [ + { + "end_col": 10, + "end_line": 24, + "input_file": { + "filename": "./tests/fixtures/ERC20.cairo" + }, + "start_col": 6, + "start_line": 24 + }, + "While constructing the external wrapper for:" + ], + "start_col": 100, + "start_line": 1 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 59, + "start_line": 24 + }, + "While constructing the external wrapper for:" + ], + "start_col": 23, + "start_line": 1 + } + }, + "1074": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.name" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 10, + "end_line": 24, + "input_file": { + "filename": "./tests/fixtures/ERC20.cairo" + }, + "start_col": 6, + "start_line": 24 + } + }, + "1076": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.name" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 115, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/name/3034a84ffbc2cc9a83b0bdb0bf6aadae87a5c63f8544f4bc76a18d60221f0e94.cairo" + }, + "parent_location": [ + { + "end_col": 10, + "end_line": 24, + "input_file": { + "filename": "./tests/fixtures/ERC20.cairo" + }, + "parent_location": [ + { + "end_col": 93, + "end_line": 2, + "input_file": { + "filename": "autogen/starknet/external/name/3034a84ffbc2cc9a83b0bdb0bf6aadae87a5c63f8544f4bc76a18d60221f0e94.cairo" + }, + "parent_location": [ + { + "end_col": 10, + "end_line": 24, + "input_file": { + "filename": "./tests/fixtures/ERC20.cairo" + }, + "start_col": 6, + "start_line": 24 + }, + "While constructing the external wrapper for:" + ], + "start_col": 78, + "start_line": 2 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 6, + "start_line": 24 + }, + "While constructing the external wrapper for:" + ], + "start_col": 100, + "start_line": 1 + } + }, + "1077": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.name" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 94, + "end_line": 2, + "input_file": { + "filename": "autogen/starknet/external/name/3034a84ffbc2cc9a83b0bdb0bf6aadae87a5c63f8544f4bc76a18d60221f0e94.cairo" + }, + "parent_location": [ + { + "end_col": 10, + "end_line": 24, + "input_file": { + "filename": "./tests/fixtures/ERC20.cairo" + }, + "start_col": 6, + "start_line": 24 + }, + "While constructing the external wrapper for:" + ], + "start_col": 48, + "start_line": 2 + } + }, + "1079": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.name" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 55, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/name/3034a84ffbc2cc9a83b0bdb0bf6aadae87a5c63f8544f4bc76a18d60221f0e94.cairo" + }, + "parent_location": [ + { + "end_col": 10, + "end_line": 24, + "input_file": { + "filename": "./tests/fixtures/ERC20.cairo" + }, + "parent_location": [ + { + "end_col": 20, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/name/da17921a4e81c09e730800bbf23bfdbe5e9e6bfaedc59d80fbf62087fa43c27d.cairo" + }, + "parent_location": [ + { + "end_col": 10, + "end_line": 24, + "input_file": { + "filename": "./tests/fixtures/ERC20.cairo" + }, + "start_col": 6, + "start_line": 24 + }, + "While constructing the external wrapper for:" + ], + "start_col": 9, + "start_line": 1 + }, + "While expanding the reference 'syscall_ptr' in:" + ], + "start_col": 6, + "start_line": 24 + }, + "While constructing the external wrapper for:" + ], + "start_col": 44, + "start_line": 1 + } + }, + "1080": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.name" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 82, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/name/3034a84ffbc2cc9a83b0bdb0bf6aadae87a5c63f8544f4bc76a18d60221f0e94.cairo" + }, + "parent_location": [ + { + "end_col": 10, + "end_line": 24, + "input_file": { + "filename": "./tests/fixtures/ERC20.cairo" + }, + "parent_location": [ + { + "end_col": 33, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/name/da17921a4e81c09e730800bbf23bfdbe5e9e6bfaedc59d80fbf62087fa43c27d.cairo" + }, + "parent_location": [ + { + "end_col": 10, + "end_line": 24, + "input_file": { + "filename": "./tests/fixtures/ERC20.cairo" + }, + "start_col": 6, + "start_line": 24 + }, + "While constructing the external wrapper for:" + ], + "start_col": 21, + "start_line": 1 + }, + "While expanding the reference 'pedersen_ptr' in:" + ], + "start_col": 6, + "start_line": 24 + }, + "While constructing the external wrapper for:" + ], + "start_col": 70, + "start_line": 1 + } + }, + "1081": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.name" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 21, + "end_line": 2, + "input_file": { + "filename": "autogen/starknet/external/name/3034a84ffbc2cc9a83b0bdb0bf6aadae87a5c63f8544f4bc76a18d60221f0e94.cairo" + }, + "parent_location": [ + { + "end_col": 10, + "end_line": 24, + "input_file": { + "filename": "./tests/fixtures/ERC20.cairo" + }, + "parent_location": [ + { + "end_col": 49, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/name/da17921a4e81c09e730800bbf23bfdbe5e9e6bfaedc59d80fbf62087fa43c27d.cairo" + }, + "parent_location": [ + { + "end_col": 10, + "end_line": 24, + "input_file": { + "filename": "./tests/fixtures/ERC20.cairo" + }, + "start_col": 6, + "start_line": 24 + }, + "While constructing the external wrapper for:" + ], + "start_col": 34, + "start_line": 1 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 6, + "start_line": 24 + }, + "While constructing the external wrapper for:" + ], + "start_col": 6, + "start_line": 2 + } + }, + "1082": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.name" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 35, + "end_line": 2, + "input_file": { + "filename": "autogen/starknet/external/name/3034a84ffbc2cc9a83b0bdb0bf6aadae87a5c63f8544f4bc76a18d60221f0e94.cairo" + }, + "parent_location": [ + { + "end_col": 10, + "end_line": 24, + "input_file": { + "filename": "./tests/fixtures/ERC20.cairo" + }, + "parent_location": [ + { + "end_col": 62, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/name/da17921a4e81c09e730800bbf23bfdbe5e9e6bfaedc59d80fbf62087fa43c27d.cairo" + }, + "parent_location": [ + { + "end_col": 10, + "end_line": 24, + "input_file": { + "filename": "./tests/fixtures/ERC20.cairo" + }, + "start_col": 6, + "start_line": 24 + }, + "While constructing the external wrapper for:" + ], + "start_col": 50, + "start_line": 1 + }, + "While expanding the reference 'retdata_size' in:" + ], + "start_col": 6, + "start_line": 24 + }, + "While constructing the external wrapper for:" + ], + "start_col": 23, + "start_line": 2 + } + }, + "1083": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.name" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 44, + "end_line": 2, + "input_file": { + "filename": "autogen/starknet/external/name/3034a84ffbc2cc9a83b0bdb0bf6aadae87a5c63f8544f4bc76a18d60221f0e94.cairo" + }, + "parent_location": [ + { + "end_col": 10, + "end_line": 24, + "input_file": { + "filename": "./tests/fixtures/ERC20.cairo" + }, + "parent_location": [ + { + "end_col": 70, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/name/da17921a4e81c09e730800bbf23bfdbe5e9e6bfaedc59d80fbf62087fa43c27d.cairo" + }, + "parent_location": [ + { + "end_col": 10, + "end_line": 24, + "input_file": { + "filename": "./tests/fixtures/ERC20.cairo" + }, + "start_col": 6, + "start_line": 24 + }, + "While constructing the external wrapper for:" + ], + "start_col": 63, + "start_line": 1 + }, + "While expanding the reference 'retdata' in:" + ], + "start_col": 6, + "start_line": 24 + }, + "While constructing the external wrapper for:" + ], + "start_col": 37, + "start_line": 2 + } + }, + "1084": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.name" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 72, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/name/da17921a4e81c09e730800bbf23bfdbe5e9e6bfaedc59d80fbf62087fa43c27d.cairo" + }, + "parent_location": [ + { + "end_col": 10, + "end_line": 24, + "input_file": { + "filename": "./tests/fixtures/ERC20.cairo" + }, + "start_col": 6, + "start_line": 24 + }, + "While constructing the external wrapper for:" + ], + "start_col": 1, + "start_line": 1 + } + }, + "1085": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.symbol" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 31, + "end_line": 29, + "input_file": { + "filename": "./tests/fixtures/ERC20.cairo" + }, + "parent_location": [ + { + "end_col": 35, + "end_line": 80, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/3.9.13/envs/kakarot/lib/python3.9/site-packages/openzeppelin/token/erc20/library.cairo" + }, + "parent_location": [ + { + "end_col": 26, + "end_line": 30, + "input_file": { + "filename": "./tests/fixtures/ERC20.cairo" + }, + "start_col": 12, + "start_line": 30 + }, + "While trying to retrieve the implicit argument 'syscall_ptr' in:" + ], + "start_col": 17, + "start_line": 80 + }, + "While expanding the reference 'syscall_ptr' in:" + ], + "start_col": 13, + "start_line": 29 + } + }, + "1086": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.symbol" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 59, + "end_line": 29, + "input_file": { + "filename": "./tests/fixtures/ERC20.cairo" + }, + "parent_location": [ + { + "end_col": 63, + "end_line": 80, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/3.9.13/envs/kakarot/lib/python3.9/site-packages/openzeppelin/token/erc20/library.cairo" + }, + "parent_location": [ + { + "end_col": 26, + "end_line": 30, + "input_file": { + "filename": "./tests/fixtures/ERC20.cairo" + }, + "start_col": 12, + "start_line": 30 + }, + "While trying to retrieve the implicit argument 'pedersen_ptr' in:" + ], + "start_col": 37, + "start_line": 80 + }, + "While expanding the reference 'pedersen_ptr' in:" + ], + "start_col": 33, + "start_line": 29 + } + }, + "1087": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.symbol" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 76, + "end_line": 29, + "input_file": { + "filename": "./tests/fixtures/ERC20.cairo" + }, + "parent_location": [ + { + "end_col": 80, + "end_line": 80, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/3.9.13/envs/kakarot/lib/python3.9/site-packages/openzeppelin/token/erc20/library.cairo" + }, + "parent_location": [ + { + "end_col": 26, + "end_line": 30, + "input_file": { + "filename": "./tests/fixtures/ERC20.cairo" + }, + "start_col": 12, + "start_line": 30 + }, + "While trying to retrieve the implicit argument 'range_check_ptr' in:" + ], + "start_col": 65, + "start_line": 80 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 61, + "start_line": 29 + } + }, + "1088": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.symbol" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 26, + "end_line": 30, + "input_file": { + "filename": "./tests/fixtures/ERC20.cairo" + }, + "start_col": 12, + "start_line": 30 + } + }, + "1090": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.symbol" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 27, + "end_line": 30, + "input_file": { + "filename": "./tests/fixtures/ERC20.cairo" + }, + "start_col": 5, + "start_line": 30 + } + }, + "1091": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.symbol_encode_return" + ], + "flow_tracking_data": null, + "hints": [ + { + "location": { + "end_col": 38, + "end_line": 3, + "input_file": { + "filename": "autogen/starknet/external/return/symbol/a0ae85480af0490479ac55aa0fb10c479d3c551bd5d0b449dafe97eed061cca1.cairo" + }, + "parent_location": [ + { + "end_col": 12, + "end_line": 29, + "input_file": { + "filename": "./tests/fixtures/ERC20.cairo" + }, + "start_col": 6, + "start_line": 29 + }, + "While handling return value of" + ], + "start_col": 5, + "start_line": 3 + }, + "n_prefix_newlines": 0 + } + ], + "inst": { + "end_col": 18, + "end_line": 4, + "input_file": { + "filename": "autogen/starknet/external/return/symbol/a0ae85480af0490479ac55aa0fb10c479d3c551bd5d0b449dafe97eed061cca1.cairo" + }, + "parent_location": [ + { + "end_col": 12, + "end_line": 29, + "input_file": { + "filename": "./tests/fixtures/ERC20.cairo" + }, + "start_col": 6, + "start_line": 29 + }, + "While handling return value of" + ], + "start_col": 5, + "start_line": 4 + } + }, + "1093": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.symbol_encode_return" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 48, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/arg_processor/3635b1d7caa543a52376beeb37a143262ea6ffdf923d8e3676d9b27787e943c8.cairo" + }, + "parent_location": [ + { + "end_col": 96, + "end_line": 29, + "input_file": { + "filename": "./tests/fixtures/ERC20.cairo" + }, + "start_col": 84, + "start_line": 29 + }, + "While handling return value 'symbol'" + ], + "start_col": 1, + "start_line": 1 + } + }, + "1094": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.symbol_encode_return" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 48, + "end_line": 2, + "input_file": { + "filename": "autogen/starknet/arg_processor/3635b1d7caa543a52376beeb37a143262ea6ffdf923d8e3676d9b27787e943c8.cairo" + }, + "parent_location": [ + { + "end_col": 96, + "end_line": 29, + "input_file": { + "filename": "./tests/fixtures/ERC20.cairo" + }, + "parent_location": [ + { + "end_col": 36, + "end_line": 11, + "input_file": { + "filename": "autogen/starknet/external/return/symbol/a0ae85480af0490479ac55aa0fb10c479d3c551bd5d0b449dafe97eed061cca1.cairo" + }, + "parent_location": [ + { + "end_col": 12, + "end_line": 29, + "input_file": { + "filename": "./tests/fixtures/ERC20.cairo" + }, + "start_col": 6, + "start_line": 29 + }, + "While handling return value of" + ], + "start_col": 18, + "start_line": 11 + }, + "While expanding the reference '__return_value_ptr' in:" + ], + "start_col": 84, + "start_line": 29 + }, + "While handling return value 'symbol'" + ], + "start_col": 26, + "start_line": 2 + } + }, + "1096": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.symbol_encode_return" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 69, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/return/symbol/a0ae85480af0490479ac55aa0fb10c479d3c551bd5d0b449dafe97eed061cca1.cairo" + }, + "parent_location": [ + { + "end_col": 12, + "end_line": 29, + "input_file": { + "filename": "./tests/fixtures/ERC20.cairo" + }, + "parent_location": [ + { + "end_col": 40, + "end_line": 10, + "input_file": { + "filename": "autogen/starknet/external/return/symbol/a0ae85480af0490479ac55aa0fb10c479d3c551bd5d0b449dafe97eed061cca1.cairo" + }, + "parent_location": [ + { + "end_col": 12, + "end_line": 29, + "input_file": { + "filename": "./tests/fixtures/ERC20.cairo" + }, + "start_col": 6, + "start_line": 29 + }, + "While handling return value of" + ], + "start_col": 25, + "start_line": 10 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 6, + "start_line": 29 + }, + "While handling return value of" + ], + "start_col": 54, + "start_line": 1 + } + }, + "1097": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.symbol_encode_return" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 63, + "end_line": 11, + "input_file": { + "filename": "autogen/starknet/external/return/symbol/a0ae85480af0490479ac55aa0fb10c479d3c551bd5d0b449dafe97eed061cca1.cairo" + }, + "parent_location": [ + { + "end_col": 12, + "end_line": 29, + "input_file": { + "filename": "./tests/fixtures/ERC20.cairo" + }, + "start_col": 6, + "start_line": 29 + }, + "While handling return value of" + ], + "start_col": 18, + "start_line": 11 + } + }, + "1098": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.symbol_encode_return" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 35, + "end_line": 5, + "input_file": { + "filename": "autogen/starknet/external/return/symbol/a0ae85480af0490479ac55aa0fb10c479d3c551bd5d0b449dafe97eed061cca1.cairo" + }, + "parent_location": [ + { + "end_col": 12, + "end_line": 29, + "input_file": { + "filename": "./tests/fixtures/ERC20.cairo" + }, + "parent_location": [ + { + "end_col": 38, + "end_line": 12, + "input_file": { + "filename": "autogen/starknet/external/return/symbol/a0ae85480af0490479ac55aa0fb10c479d3c551bd5d0b449dafe97eed061cca1.cairo" + }, + "parent_location": [ + { + "end_col": 12, + "end_line": 29, + "input_file": { + "filename": "./tests/fixtures/ERC20.cairo" + }, + "start_col": 6, + "start_line": 29 + }, + "While handling return value of" + ], + "start_col": 14, + "start_line": 12 + }, + "While expanding the reference '__return_value_ptr_start' in:" + ], + "start_col": 6, + "start_line": 29 + }, + "While handling return value of" + ], + "start_col": 11, + "start_line": 5 + } + }, + "1099": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.symbol_encode_return" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 40, + "end_line": 12, + "input_file": { + "filename": "autogen/starknet/external/return/symbol/a0ae85480af0490479ac55aa0fb10c479d3c551bd5d0b449dafe97eed061cca1.cairo" + }, + "parent_location": [ + { + "end_col": 12, + "end_line": 29, + "input_file": { + "filename": "./tests/fixtures/ERC20.cairo" + }, + "start_col": 6, + "start_line": 29 + }, + "While handling return value of" + ], + "start_col": 5, + "start_line": 9 + } + }, + "1100": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.symbol" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 58, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/arg_processor/01cba52f8515996bb9d7070bde81ff39281d096d7024a558efcba6e1fd2402cf.cairo" + }, + "parent_location": [ + { + "end_col": 12, + "end_line": 29, + "input_file": { + "filename": "./tests/fixtures/ERC20.cairo" + }, + "start_col": 6, + "start_line": 29 + }, + "While handling calldata of" + ], + "start_col": 1, + "start_line": 1 + } + }, + "1101": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.symbol" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 64, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/symbol/b2c52ca2d2a8fc8791a983086d8716c5eacd0c3d62934914d2286f84b98ff4cb.cairo" + }, + "parent_location": [ + { + "end_col": 31, + "end_line": 29, + "input_file": { + "filename": "./tests/fixtures/ERC20.cairo" + }, + "parent_location": [ + { + "end_col": 55, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/symbol/d8aa55fbbc45562d781915a1c7930fc50b33d8bd29db7102b5c44cbfd8b54639.cairo" + }, + "parent_location": [ + { + "end_col": 12, + "end_line": 29, + "input_file": { + "filename": "./tests/fixtures/ERC20.cairo" + }, + "start_col": 6, + "start_line": 29 + }, + "While constructing the external wrapper for:" + ], + "start_col": 44, + "start_line": 1 + }, + "While expanding the reference 'syscall_ptr' in:" + ], + "start_col": 13, + "start_line": 29 + }, + "While constructing the external wrapper for:" + ], + "start_col": 19, + "start_line": 1 + } + }, + "1102": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.symbol" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 110, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/symbol/9684a85e93c782014ca14293edea4eb2502039a5a7b6538ecd39c56faaf12529.cairo" + }, + "parent_location": [ + { + "end_col": 59, + "end_line": 29, + "input_file": { + "filename": "./tests/fixtures/ERC20.cairo" + }, + "parent_location": [ + { + "end_col": 82, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/symbol/d8aa55fbbc45562d781915a1c7930fc50b33d8bd29db7102b5c44cbfd8b54639.cairo" + }, + "parent_location": [ + { + "end_col": 12, + "end_line": 29, + "input_file": { + "filename": "./tests/fixtures/ERC20.cairo" + }, + "start_col": 6, + "start_line": 29 + }, + "While constructing the external wrapper for:" + ], + "start_col": 70, + "start_line": 1 + }, + "While expanding the reference 'pedersen_ptr' in:" + ], + "start_col": 33, + "start_line": 29 + }, + "While constructing the external wrapper for:" + ], + "start_col": 20, + "start_line": 1 + } + }, + "1103": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.symbol" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 67, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/symbol/741ea357d6336b0bed7bf0472425acd0311d543883b803388880e60a232040c7.cairo" + }, + "parent_location": [ + { + "end_col": 76, + "end_line": 29, + "input_file": { + "filename": "./tests/fixtures/ERC20.cairo" + }, + "parent_location": [ + { + "end_col": 115, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/symbol/d8aa55fbbc45562d781915a1c7930fc50b33d8bd29db7102b5c44cbfd8b54639.cairo" + }, + "parent_location": [ + { + "end_col": 12, + "end_line": 29, + "input_file": { + "filename": "./tests/fixtures/ERC20.cairo" + }, + "start_col": 6, + "start_line": 29 + }, + "While constructing the external wrapper for:" + ], + "start_col": 100, + "start_line": 1 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 61, + "start_line": 29 + }, + "While constructing the external wrapper for:" + ], + "start_col": 23, + "start_line": 1 + } + }, + "1104": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.symbol" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 12, + "end_line": 29, + "input_file": { + "filename": "./tests/fixtures/ERC20.cairo" + }, + "start_col": 6, + "start_line": 29 + } + }, + "1106": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.symbol" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 115, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/symbol/d8aa55fbbc45562d781915a1c7930fc50b33d8bd29db7102b5c44cbfd8b54639.cairo" + }, + "parent_location": [ + { + "end_col": 12, + "end_line": 29, + "input_file": { + "filename": "./tests/fixtures/ERC20.cairo" + }, + "parent_location": [ + { + "end_col": 95, + "end_line": 2, + "input_file": { + "filename": "autogen/starknet/external/symbol/d8aa55fbbc45562d781915a1c7930fc50b33d8bd29db7102b5c44cbfd8b54639.cairo" + }, + "parent_location": [ + { + "end_col": 12, + "end_line": 29, + "input_file": { + "filename": "./tests/fixtures/ERC20.cairo" + }, + "start_col": 6, + "start_line": 29 + }, + "While constructing the external wrapper for:" + ], + "start_col": 80, + "start_line": 2 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 6, + "start_line": 29 + }, + "While constructing the external wrapper for:" + ], + "start_col": 100, + "start_line": 1 + } + }, + "1107": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.symbol" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 96, + "end_line": 2, + "input_file": { + "filename": "autogen/starknet/external/symbol/d8aa55fbbc45562d781915a1c7930fc50b33d8bd29db7102b5c44cbfd8b54639.cairo" + }, + "parent_location": [ + { + "end_col": 12, + "end_line": 29, + "input_file": { + "filename": "./tests/fixtures/ERC20.cairo" + }, + "start_col": 6, + "start_line": 29 + }, + "While constructing the external wrapper for:" + ], + "start_col": 48, + "start_line": 2 + } + }, + "1109": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.symbol" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 55, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/symbol/d8aa55fbbc45562d781915a1c7930fc50b33d8bd29db7102b5c44cbfd8b54639.cairo" + }, + "parent_location": [ + { + "end_col": 12, + "end_line": 29, + "input_file": { + "filename": "./tests/fixtures/ERC20.cairo" + }, + "parent_location": [ + { + "end_col": 20, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/symbol/da17921a4e81c09e730800bbf23bfdbe5e9e6bfaedc59d80fbf62087fa43c27d.cairo" + }, + "parent_location": [ + { + "end_col": 12, + "end_line": 29, + "input_file": { + "filename": "./tests/fixtures/ERC20.cairo" + }, + "start_col": 6, + "start_line": 29 + }, + "While constructing the external wrapper for:" + ], + "start_col": 9, + "start_line": 1 + }, + "While expanding the reference 'syscall_ptr' in:" + ], + "start_col": 6, + "start_line": 29 + }, + "While constructing the external wrapper for:" + ], + "start_col": 44, + "start_line": 1 + } + }, + "1110": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.symbol" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 82, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/symbol/d8aa55fbbc45562d781915a1c7930fc50b33d8bd29db7102b5c44cbfd8b54639.cairo" + }, + "parent_location": [ + { + "end_col": 12, + "end_line": 29, + "input_file": { + "filename": "./tests/fixtures/ERC20.cairo" + }, + "parent_location": [ + { + "end_col": 33, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/symbol/da17921a4e81c09e730800bbf23bfdbe5e9e6bfaedc59d80fbf62087fa43c27d.cairo" + }, + "parent_location": [ + { + "end_col": 12, + "end_line": 29, + "input_file": { + "filename": "./tests/fixtures/ERC20.cairo" + }, + "start_col": 6, + "start_line": 29 + }, + "While constructing the external wrapper for:" + ], + "start_col": 21, + "start_line": 1 + }, + "While expanding the reference 'pedersen_ptr' in:" + ], + "start_col": 6, + "start_line": 29 + }, + "While constructing the external wrapper for:" + ], + "start_col": 70, + "start_line": 1 + } + }, + "1111": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.symbol" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 21, + "end_line": 2, + "input_file": { + "filename": "autogen/starknet/external/symbol/d8aa55fbbc45562d781915a1c7930fc50b33d8bd29db7102b5c44cbfd8b54639.cairo" + }, + "parent_location": [ + { + "end_col": 12, + "end_line": 29, + "input_file": { + "filename": "./tests/fixtures/ERC20.cairo" + }, + "parent_location": [ + { + "end_col": 49, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/symbol/da17921a4e81c09e730800bbf23bfdbe5e9e6bfaedc59d80fbf62087fa43c27d.cairo" + }, + "parent_location": [ + { + "end_col": 12, + "end_line": 29, + "input_file": { + "filename": "./tests/fixtures/ERC20.cairo" + }, + "start_col": 6, + "start_line": 29 + }, + "While constructing the external wrapper for:" + ], + "start_col": 34, + "start_line": 1 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 6, + "start_line": 29 + }, + "While constructing the external wrapper for:" + ], + "start_col": 6, + "start_line": 2 + } + }, + "1112": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.symbol" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 35, + "end_line": 2, + "input_file": { + "filename": "autogen/starknet/external/symbol/d8aa55fbbc45562d781915a1c7930fc50b33d8bd29db7102b5c44cbfd8b54639.cairo" + }, + "parent_location": [ + { + "end_col": 12, + "end_line": 29, + "input_file": { + "filename": "./tests/fixtures/ERC20.cairo" + }, + "parent_location": [ + { + "end_col": 62, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/symbol/da17921a4e81c09e730800bbf23bfdbe5e9e6bfaedc59d80fbf62087fa43c27d.cairo" + }, + "parent_location": [ + { + "end_col": 12, + "end_line": 29, + "input_file": { + "filename": "./tests/fixtures/ERC20.cairo" + }, + "start_col": 6, + "start_line": 29 + }, + "While constructing the external wrapper for:" + ], + "start_col": 50, + "start_line": 1 + }, + "While expanding the reference 'retdata_size' in:" + ], + "start_col": 6, + "start_line": 29 + }, + "While constructing the external wrapper for:" + ], + "start_col": 23, + "start_line": 2 + } + }, + "1113": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.symbol" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 44, + "end_line": 2, + "input_file": { + "filename": "autogen/starknet/external/symbol/d8aa55fbbc45562d781915a1c7930fc50b33d8bd29db7102b5c44cbfd8b54639.cairo" + }, + "parent_location": [ + { + "end_col": 12, + "end_line": 29, + "input_file": { + "filename": "./tests/fixtures/ERC20.cairo" + }, + "parent_location": [ + { + "end_col": 70, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/symbol/da17921a4e81c09e730800bbf23bfdbe5e9e6bfaedc59d80fbf62087fa43c27d.cairo" + }, + "parent_location": [ + { + "end_col": 12, + "end_line": 29, + "input_file": { + "filename": "./tests/fixtures/ERC20.cairo" + }, + "start_col": 6, + "start_line": 29 + }, + "While constructing the external wrapper for:" + ], + "start_col": 63, + "start_line": 1 + }, + "While expanding the reference 'retdata' in:" + ], + "start_col": 6, + "start_line": 29 + }, + "While constructing the external wrapper for:" + ], + "start_col": 37, + "start_line": 2 + } + }, + "1114": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.symbol" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 72, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/symbol/da17921a4e81c09e730800bbf23bfdbe5e9e6bfaedc59d80fbf62087fa43c27d.cairo" + }, + "parent_location": [ + { + "end_col": 12, + "end_line": 29, + "input_file": { + "filename": "./tests/fixtures/ERC20.cairo" + }, + "start_col": 6, + "start_line": 29 + }, + "While constructing the external wrapper for:" + ], + "start_col": 1, + "start_line": 1 + } + }, + "1115": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.totalSupply" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 36, + "end_line": 34, + "input_file": { + "filename": "./tests/fixtures/ERC20.cairo" + }, + "parent_location": [ + { + "end_col": 41, + "end_line": 86, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/3.9.13/envs/kakarot/lib/python3.9/site-packages/openzeppelin/token/erc20/library.cairo" + }, + "parent_location": [ + { + "end_col": 54, + "end_line": 37, + "input_file": { + "filename": "./tests/fixtures/ERC20.cairo" + }, + "start_col": 34, + "start_line": 37 + }, + "While trying to retrieve the implicit argument 'syscall_ptr' in:" + ], + "start_col": 23, + "start_line": 86 + }, + "While expanding the reference 'syscall_ptr' in:" + ], + "start_col": 18, + "start_line": 34 + } + }, + "1116": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.totalSupply" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 64, + "end_line": 34, + "input_file": { + "filename": "./tests/fixtures/ERC20.cairo" + }, + "parent_location": [ + { + "end_col": 69, + "end_line": 86, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/3.9.13/envs/kakarot/lib/python3.9/site-packages/openzeppelin/token/erc20/library.cairo" + }, + "parent_location": [ + { + "end_col": 54, + "end_line": 37, + "input_file": { + "filename": "./tests/fixtures/ERC20.cairo" + }, + "start_col": 34, + "start_line": 37 + }, + "While trying to retrieve the implicit argument 'pedersen_ptr' in:" + ], + "start_col": 43, + "start_line": 86 + }, + "While expanding the reference 'pedersen_ptr' in:" + ], + "start_col": 38, + "start_line": 34 + } + }, + "1117": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.totalSupply" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 81, + "end_line": 34, + "input_file": { + "filename": "./tests/fixtures/ERC20.cairo" + }, + "parent_location": [ + { + "end_col": 86, + "end_line": 86, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/3.9.13/envs/kakarot/lib/python3.9/site-packages/openzeppelin/token/erc20/library.cairo" + }, + "parent_location": [ + { + "end_col": 54, + "end_line": 37, + "input_file": { + "filename": "./tests/fixtures/ERC20.cairo" + }, + "start_col": 34, + "start_line": 37 + }, + "While trying to retrieve the implicit argument 'range_check_ptr' in:" + ], + "start_col": 71, + "start_line": 86 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 66, + "start_line": 34 + } + }, + "1118": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.totalSupply" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 54, + "end_line": 37, + "input_file": { + "filename": "./tests/fixtures/ERC20.cairo" + }, + "start_col": 34, + "start_line": 37 + } + }, + "1120": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.totalSupply" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 38, + "end_line": 38, + "input_file": { + "filename": "./tests/fixtures/ERC20.cairo" + }, + "start_col": 5, + "start_line": 38 + } + }, + "1121": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.totalSupply_encode_return" + ], + "flow_tracking_data": null, + "hints": [ + { + "location": { + "end_col": 38, + "end_line": 3, + "input_file": { + "filename": "autogen/starknet/external/return/totalSupply/eeeda446bdea67b39cd9f67678f4dfc35c6c1d0744df18691bf4ede77f67f604.cairo" + }, + "parent_location": [ + { + "end_col": 17, + "end_line": 34, + "input_file": { + "filename": "./tests/fixtures/ERC20.cairo" + }, + "start_col": 6, + "start_line": 34 + }, + "While handling return value of" + ], + "start_col": 5, + "start_line": 3 + }, + "n_prefix_newlines": 0 + } + ], + "inst": { + "end_col": 18, + "end_line": 4, + "input_file": { + "filename": "autogen/starknet/external/return/totalSupply/eeeda446bdea67b39cd9f67678f4dfc35c6c1d0744df18691bf4ede77f67f604.cairo" + }, + "parent_location": [ + { + "end_col": 17, + "end_line": 34, + "input_file": { + "filename": "./tests/fixtures/ERC20.cairo" + }, + "start_col": 6, + "start_line": 34 + }, + "While handling return value of" + ], + "start_col": 5, + "start_line": 4 + } + }, + "1123": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.totalSupply_encode_return" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 60, + "end_line": 3, + "input_file": { + "filename": "autogen/starknet/arg_processor/9822619206729a9eadcae854c851238a68f93e9dbd956bc4fa147da27ae12e2e.cairo" + }, + "parent_location": [ + { + "end_col": 25, + "end_line": 35, + "input_file": { + "filename": "./tests/fixtures/ERC20.cairo" + }, + "start_col": 5, + "start_line": 35 + }, + "While handling return value 'totalSupply'" + ], + "start_col": 1, + "start_line": 3 + } + }, + "1124": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.totalSupply_encode_return" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 60, + "end_line": 4, + "input_file": { + "filename": "autogen/starknet/arg_processor/9822619206729a9eadcae854c851238a68f93e9dbd956bc4fa147da27ae12e2e.cairo" + }, + "parent_location": [ + { + "end_col": 25, + "end_line": 35, + "input_file": { + "filename": "./tests/fixtures/ERC20.cairo" + }, + "start_col": 5, + "start_line": 35 + }, + "While handling return value 'totalSupply'" + ], + "start_col": 1, + "start_line": 4 + } + }, + "1125": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.totalSupply_encode_return" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 48, + "end_line": 5, + "input_file": { + "filename": "autogen/starknet/arg_processor/9822619206729a9eadcae854c851238a68f93e9dbd956bc4fa147da27ae12e2e.cairo" + }, + "parent_location": [ + { + "end_col": 25, + "end_line": 35, + "input_file": { + "filename": "./tests/fixtures/ERC20.cairo" + }, + "parent_location": [ + { + "end_col": 36, + "end_line": 11, + "input_file": { + "filename": "autogen/starknet/external/return/totalSupply/eeeda446bdea67b39cd9f67678f4dfc35c6c1d0744df18691bf4ede77f67f604.cairo" + }, + "parent_location": [ + { + "end_col": 17, + "end_line": 34, + "input_file": { + "filename": "./tests/fixtures/ERC20.cairo" + }, + "start_col": 6, + "start_line": 34 + }, + "While handling return value of" + ], + "start_col": 18, + "start_line": 11 + }, + "While expanding the reference '__return_value_ptr' in:" + ], + "start_col": 5, + "start_line": 35 + }, + "While handling return value 'totalSupply'" + ], + "start_col": 26, + "start_line": 5 + } + }, + "1127": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.totalSupply_encode_return" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 113, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/return/totalSupply/eeeda446bdea67b39cd9f67678f4dfc35c6c1d0744df18691bf4ede77f67f604.cairo" + }, + "parent_location": [ + { + "end_col": 17, + "end_line": 34, + "input_file": { + "filename": "./tests/fixtures/ERC20.cairo" + }, + "parent_location": [ + { + "end_col": 40, + "end_line": 10, + "input_file": { + "filename": "autogen/starknet/external/return/totalSupply/eeeda446bdea67b39cd9f67678f4dfc35c6c1d0744df18691bf4ede77f67f604.cairo" + }, + "parent_location": [ + { + "end_col": 17, + "end_line": 34, + "input_file": { + "filename": "./tests/fixtures/ERC20.cairo" + }, + "start_col": 6, + "start_line": 34 + }, + "While handling return value of" + ], + "start_col": 25, + "start_line": 10 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 6, + "start_line": 34 + }, + "While handling return value of" + ], + "start_col": 98, + "start_line": 1 + } + }, + "1128": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.totalSupply_encode_return" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 63, + "end_line": 11, + "input_file": { + "filename": "autogen/starknet/external/return/totalSupply/eeeda446bdea67b39cd9f67678f4dfc35c6c1d0744df18691bf4ede77f67f604.cairo" + }, + "parent_location": [ + { + "end_col": 17, + "end_line": 34, + "input_file": { + "filename": "./tests/fixtures/ERC20.cairo" + }, + "start_col": 6, + "start_line": 34 + }, + "While handling return value of" + ], + "start_col": 18, + "start_line": 11 + } + }, + "1129": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.totalSupply_encode_return" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 35, + "end_line": 5, + "input_file": { + "filename": "autogen/starknet/external/return/totalSupply/eeeda446bdea67b39cd9f67678f4dfc35c6c1d0744df18691bf4ede77f67f604.cairo" + }, + "parent_location": [ + { + "end_col": 17, + "end_line": 34, + "input_file": { + "filename": "./tests/fixtures/ERC20.cairo" + }, + "parent_location": [ + { + "end_col": 38, + "end_line": 12, + "input_file": { + "filename": "autogen/starknet/external/return/totalSupply/eeeda446bdea67b39cd9f67678f4dfc35c6c1d0744df18691bf4ede77f67f604.cairo" + }, + "parent_location": [ + { + "end_col": 17, + "end_line": 34, + "input_file": { + "filename": "./tests/fixtures/ERC20.cairo" + }, + "start_col": 6, + "start_line": 34 + }, + "While handling return value of" + ], + "start_col": 14, + "start_line": 12 + }, + "While expanding the reference '__return_value_ptr_start' in:" + ], + "start_col": 6, + "start_line": 34 + }, + "While handling return value of" + ], + "start_col": 11, + "start_line": 5 + } + }, + "1130": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.totalSupply_encode_return" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 40, + "end_line": 12, + "input_file": { + "filename": "autogen/starknet/external/return/totalSupply/eeeda446bdea67b39cd9f67678f4dfc35c6c1d0744df18691bf4ede77f67f604.cairo" + }, + "parent_location": [ + { + "end_col": 17, + "end_line": 34, + "input_file": { + "filename": "./tests/fixtures/ERC20.cairo" + }, + "start_col": 6, + "start_line": 34 + }, + "While handling return value of" + ], + "start_col": 5, + "start_line": 9 + } + }, + "1131": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.totalSupply" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 58, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/arg_processor/01cba52f8515996bb9d7070bde81ff39281d096d7024a558efcba6e1fd2402cf.cairo" + }, + "parent_location": [ + { + "end_col": 17, + "end_line": 34, + "input_file": { + "filename": "./tests/fixtures/ERC20.cairo" + }, + "start_col": 6, + "start_line": 34 + }, + "While handling calldata of" + ], + "start_col": 1, + "start_line": 1 + } + }, + "1132": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.totalSupply" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 64, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/totalSupply/b2c52ca2d2a8fc8791a983086d8716c5eacd0c3d62934914d2286f84b98ff4cb.cairo" + }, + "parent_location": [ + { + "end_col": 36, + "end_line": 34, + "input_file": { + "filename": "./tests/fixtures/ERC20.cairo" + }, + "parent_location": [ + { + "end_col": 55, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/totalSupply/f9521ee04dab7f503e72addd131262b31983f1e13ea962eb0b121959d1008326.cairo" + }, + "parent_location": [ + { + "end_col": 17, + "end_line": 34, + "input_file": { + "filename": "./tests/fixtures/ERC20.cairo" + }, + "start_col": 6, + "start_line": 34 + }, + "While constructing the external wrapper for:" + ], + "start_col": 44, + "start_line": 1 + }, + "While expanding the reference 'syscall_ptr' in:" + ], + "start_col": 18, + "start_line": 34 + }, + "While constructing the external wrapper for:" + ], + "start_col": 19, + "start_line": 1 + } + }, + "1133": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.totalSupply" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 110, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/totalSupply/9684a85e93c782014ca14293edea4eb2502039a5a7b6538ecd39c56faaf12529.cairo" + }, + "parent_location": [ + { + "end_col": 64, + "end_line": 34, + "input_file": { + "filename": "./tests/fixtures/ERC20.cairo" + }, + "parent_location": [ + { + "end_col": 82, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/totalSupply/f9521ee04dab7f503e72addd131262b31983f1e13ea962eb0b121959d1008326.cairo" + }, + "parent_location": [ + { + "end_col": 17, + "end_line": 34, + "input_file": { + "filename": "./tests/fixtures/ERC20.cairo" + }, + "start_col": 6, + "start_line": 34 + }, + "While constructing the external wrapper for:" + ], + "start_col": 70, + "start_line": 1 + }, + "While expanding the reference 'pedersen_ptr' in:" + ], + "start_col": 38, + "start_line": 34 + }, + "While constructing the external wrapper for:" + ], + "start_col": 20, + "start_line": 1 + } + }, + "1134": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.totalSupply" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 67, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/totalSupply/741ea357d6336b0bed7bf0472425acd0311d543883b803388880e60a232040c7.cairo" + }, + "parent_location": [ + { + "end_col": 81, + "end_line": 34, + "input_file": { + "filename": "./tests/fixtures/ERC20.cairo" + }, + "parent_location": [ + { + "end_col": 115, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/totalSupply/f9521ee04dab7f503e72addd131262b31983f1e13ea962eb0b121959d1008326.cairo" + }, + "parent_location": [ + { + "end_col": 17, + "end_line": 34, + "input_file": { + "filename": "./tests/fixtures/ERC20.cairo" + }, + "start_col": 6, + "start_line": 34 + }, + "While constructing the external wrapper for:" + ], + "start_col": 100, + "start_line": 1 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 66, + "start_line": 34 + }, + "While constructing the external wrapper for:" + ], + "start_col": 23, + "start_line": 1 + } + }, + "1135": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.totalSupply" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 17, + "end_line": 34, + "input_file": { + "filename": "./tests/fixtures/ERC20.cairo" + }, + "start_col": 6, + "start_line": 34 + } + }, + "1137": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.totalSupply" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 115, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/totalSupply/f9521ee04dab7f503e72addd131262b31983f1e13ea962eb0b121959d1008326.cairo" + }, + "parent_location": [ + { + "end_col": 17, + "end_line": 34, + "input_file": { + "filename": "./tests/fixtures/ERC20.cairo" + }, + "parent_location": [ + { + "end_col": 100, + "end_line": 2, + "input_file": { + "filename": "autogen/starknet/external/totalSupply/f9521ee04dab7f503e72addd131262b31983f1e13ea962eb0b121959d1008326.cairo" + }, + "parent_location": [ + { + "end_col": 17, + "end_line": 34, + "input_file": { + "filename": "./tests/fixtures/ERC20.cairo" + }, + "start_col": 6, + "start_line": 34 + }, + "While constructing the external wrapper for:" + ], + "start_col": 85, + "start_line": 2 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 6, + "start_line": 34 + }, + "While constructing the external wrapper for:" + ], + "start_col": 100, + "start_line": 1 + } + }, + "1138": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.totalSupply" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 101, + "end_line": 2, + "input_file": { + "filename": "autogen/starknet/external/totalSupply/f9521ee04dab7f503e72addd131262b31983f1e13ea962eb0b121959d1008326.cairo" + }, + "parent_location": [ + { + "end_col": 17, + "end_line": 34, + "input_file": { + "filename": "./tests/fixtures/ERC20.cairo" + }, + "start_col": 6, + "start_line": 34 + }, + "While constructing the external wrapper for:" + ], + "start_col": 48, + "start_line": 2 + } + }, + "1140": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.totalSupply" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 55, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/totalSupply/f9521ee04dab7f503e72addd131262b31983f1e13ea962eb0b121959d1008326.cairo" + }, + "parent_location": [ + { + "end_col": 17, + "end_line": 34, + "input_file": { + "filename": "./tests/fixtures/ERC20.cairo" + }, + "parent_location": [ + { + "end_col": 20, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/totalSupply/da17921a4e81c09e730800bbf23bfdbe5e9e6bfaedc59d80fbf62087fa43c27d.cairo" + }, + "parent_location": [ + { + "end_col": 17, + "end_line": 34, + "input_file": { + "filename": "./tests/fixtures/ERC20.cairo" + }, + "start_col": 6, + "start_line": 34 + }, + "While constructing the external wrapper for:" + ], + "start_col": 9, + "start_line": 1 + }, + "While expanding the reference 'syscall_ptr' in:" + ], + "start_col": 6, + "start_line": 34 + }, + "While constructing the external wrapper for:" + ], + "start_col": 44, + "start_line": 1 + } + }, + "1141": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.totalSupply" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 82, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/totalSupply/f9521ee04dab7f503e72addd131262b31983f1e13ea962eb0b121959d1008326.cairo" + }, + "parent_location": [ + { + "end_col": 17, + "end_line": 34, + "input_file": { + "filename": "./tests/fixtures/ERC20.cairo" + }, + "parent_location": [ + { + "end_col": 33, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/totalSupply/da17921a4e81c09e730800bbf23bfdbe5e9e6bfaedc59d80fbf62087fa43c27d.cairo" + }, + "parent_location": [ + { + "end_col": 17, + "end_line": 34, + "input_file": { + "filename": "./tests/fixtures/ERC20.cairo" + }, + "start_col": 6, + "start_line": 34 + }, + "While constructing the external wrapper for:" + ], + "start_col": 21, + "start_line": 1 + }, + "While expanding the reference 'pedersen_ptr' in:" + ], + "start_col": 6, + "start_line": 34 + }, + "While constructing the external wrapper for:" + ], + "start_col": 70, + "start_line": 1 + } + }, + "1142": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.totalSupply" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 21, + "end_line": 2, + "input_file": { + "filename": "autogen/starknet/external/totalSupply/f9521ee04dab7f503e72addd131262b31983f1e13ea962eb0b121959d1008326.cairo" + }, + "parent_location": [ + { + "end_col": 17, + "end_line": 34, + "input_file": { + "filename": "./tests/fixtures/ERC20.cairo" + }, + "parent_location": [ + { + "end_col": 49, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/totalSupply/da17921a4e81c09e730800bbf23bfdbe5e9e6bfaedc59d80fbf62087fa43c27d.cairo" + }, + "parent_location": [ + { + "end_col": 17, + "end_line": 34, + "input_file": { + "filename": "./tests/fixtures/ERC20.cairo" + }, + "start_col": 6, + "start_line": 34 + }, + "While constructing the external wrapper for:" + ], + "start_col": 34, + "start_line": 1 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 6, + "start_line": 34 + }, + "While constructing the external wrapper for:" + ], + "start_col": 6, + "start_line": 2 + } + }, + "1143": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.totalSupply" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 35, + "end_line": 2, + "input_file": { + "filename": "autogen/starknet/external/totalSupply/f9521ee04dab7f503e72addd131262b31983f1e13ea962eb0b121959d1008326.cairo" + }, + "parent_location": [ + { + "end_col": 17, + "end_line": 34, + "input_file": { + "filename": "./tests/fixtures/ERC20.cairo" + }, + "parent_location": [ + { + "end_col": 62, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/totalSupply/da17921a4e81c09e730800bbf23bfdbe5e9e6bfaedc59d80fbf62087fa43c27d.cairo" + }, + "parent_location": [ + { + "end_col": 17, + "end_line": 34, + "input_file": { + "filename": "./tests/fixtures/ERC20.cairo" + }, + "start_col": 6, + "start_line": 34 + }, + "While constructing the external wrapper for:" + ], + "start_col": 50, + "start_line": 1 + }, + "While expanding the reference 'retdata_size' in:" + ], + "start_col": 6, + "start_line": 34 + }, + "While constructing the external wrapper for:" + ], + "start_col": 23, + "start_line": 2 + } + }, + "1144": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.totalSupply" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 44, + "end_line": 2, + "input_file": { + "filename": "autogen/starknet/external/totalSupply/f9521ee04dab7f503e72addd131262b31983f1e13ea962eb0b121959d1008326.cairo" + }, + "parent_location": [ + { + "end_col": 17, + "end_line": 34, + "input_file": { + "filename": "./tests/fixtures/ERC20.cairo" + }, + "parent_location": [ + { + "end_col": 70, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/totalSupply/da17921a4e81c09e730800bbf23bfdbe5e9e6bfaedc59d80fbf62087fa43c27d.cairo" + }, + "parent_location": [ + { + "end_col": 17, + "end_line": 34, + "input_file": { + "filename": "./tests/fixtures/ERC20.cairo" + }, + "start_col": 6, + "start_line": 34 + }, + "While constructing the external wrapper for:" + ], + "start_col": 63, + "start_line": 1 + }, + "While expanding the reference 'retdata' in:" + ], + "start_col": 6, + "start_line": 34 + }, + "While constructing the external wrapper for:" + ], + "start_col": 37, + "start_line": 2 + } + }, + "1145": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.totalSupply" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 72, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/totalSupply/da17921a4e81c09e730800bbf23bfdbe5e9e6bfaedc59d80fbf62087fa43c27d.cairo" + }, + "parent_location": [ + { + "end_col": 17, + "end_line": 34, + "input_file": { + "filename": "./tests/fixtures/ERC20.cairo" + }, + "start_col": 6, + "start_line": 34 + }, + "While constructing the external wrapper for:" + ], + "start_col": 1, + "start_line": 1 + } + }, + "1146": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.decimals" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 33, + "end_line": 42, + "input_file": { + "filename": "./tests/fixtures/ERC20.cairo" + }, + "parent_location": [ + { + "end_col": 37, + "end_line": 92, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/3.9.13/envs/kakarot/lib/python3.9/site-packages/openzeppelin/token/erc20/library.cairo" + }, + "parent_location": [ + { + "end_col": 28, + "end_line": 45, + "input_file": { + "filename": "./tests/fixtures/ERC20.cairo" + }, + "start_col": 12, + "start_line": 45 + }, + "While trying to retrieve the implicit argument 'syscall_ptr' in:" + ], + "start_col": 19, + "start_line": 92 + }, + "While expanding the reference 'syscall_ptr' in:" + ], + "start_col": 15, + "start_line": 42 + } + }, + "1147": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.decimals" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 61, + "end_line": 42, + "input_file": { + "filename": "./tests/fixtures/ERC20.cairo" + }, + "parent_location": [ + { + "end_col": 65, + "end_line": 92, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/3.9.13/envs/kakarot/lib/python3.9/site-packages/openzeppelin/token/erc20/library.cairo" + }, + "parent_location": [ + { + "end_col": 28, + "end_line": 45, + "input_file": { + "filename": "./tests/fixtures/ERC20.cairo" + }, + "start_col": 12, + "start_line": 45 + }, + "While trying to retrieve the implicit argument 'pedersen_ptr' in:" + ], + "start_col": 39, + "start_line": 92 + }, + "While expanding the reference 'pedersen_ptr' in:" + ], + "start_col": 35, + "start_line": 42 + } + }, + "1148": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.decimals" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 78, + "end_line": 42, + "input_file": { + "filename": "./tests/fixtures/ERC20.cairo" + }, + "parent_location": [ + { + "end_col": 82, + "end_line": 92, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/3.9.13/envs/kakarot/lib/python3.9/site-packages/openzeppelin/token/erc20/library.cairo" + }, + "parent_location": [ + { + "end_col": 28, + "end_line": 45, + "input_file": { + "filename": "./tests/fixtures/ERC20.cairo" + }, + "start_col": 12, + "start_line": 45 + }, + "While trying to retrieve the implicit argument 'range_check_ptr' in:" + ], + "start_col": 67, + "start_line": 92 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 63, + "start_line": 42 + } + }, + "1149": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.decimals" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 28, + "end_line": 45, + "input_file": { + "filename": "./tests/fixtures/ERC20.cairo" + }, + "start_col": 12, + "start_line": 45 + } + }, + "1151": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.decimals" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 29, + "end_line": 45, + "input_file": { + "filename": "./tests/fixtures/ERC20.cairo" + }, + "start_col": 5, + "start_line": 45 + } + }, + "1152": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.decimals_encode_return" + ], + "flow_tracking_data": null, + "hints": [ + { + "location": { + "end_col": 38, + "end_line": 3, + "input_file": { + "filename": "autogen/starknet/external/return/decimals/a97d2b6786c76802562faf3a37a632fd604ff18dde35a5c92ee6960b683ee2dd.cairo" + }, + "parent_location": [ + { + "end_col": 14, + "end_line": 42, + "input_file": { + "filename": "./tests/fixtures/ERC20.cairo" + }, + "start_col": 6, + "start_line": 42 + }, + "While handling return value of" + ], + "start_col": 5, + "start_line": 3 + }, + "n_prefix_newlines": 0 + } + ], + "inst": { + "end_col": 18, + "end_line": 4, + "input_file": { + "filename": "autogen/starknet/external/return/decimals/a97d2b6786c76802562faf3a37a632fd604ff18dde35a5c92ee6960b683ee2dd.cairo" + }, + "parent_location": [ + { + "end_col": 14, + "end_line": 42, + "input_file": { + "filename": "./tests/fixtures/ERC20.cairo" + }, + "start_col": 6, + "start_line": 42 + }, + "While handling return value of" + ], + "start_col": 5, + "start_line": 4 + } + }, + "1154": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.decimals_encode_return" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 50, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/arg_processor/a81bcec621a2ff03486299e6a77ac9e0b035697b74f8a9b599dbb1c25229a3e2.cairo" + }, + "parent_location": [ + { + "end_col": 19, + "end_line": 43, + "input_file": { + "filename": "./tests/fixtures/ERC20.cairo" + }, + "start_col": 5, + "start_line": 43 + }, + "While handling return value 'decimals'" + ], + "start_col": 1, + "start_line": 1 + } + }, + "1155": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.decimals_encode_return" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 48, + "end_line": 2, + "input_file": { + "filename": "autogen/starknet/arg_processor/a81bcec621a2ff03486299e6a77ac9e0b035697b74f8a9b599dbb1c25229a3e2.cairo" + }, + "parent_location": [ + { + "end_col": 19, + "end_line": 43, + "input_file": { + "filename": "./tests/fixtures/ERC20.cairo" + }, + "parent_location": [ + { + "end_col": 36, + "end_line": 11, + "input_file": { + "filename": "autogen/starknet/external/return/decimals/a97d2b6786c76802562faf3a37a632fd604ff18dde35a5c92ee6960b683ee2dd.cairo" + }, + "parent_location": [ + { + "end_col": 14, + "end_line": 42, + "input_file": { + "filename": "./tests/fixtures/ERC20.cairo" + }, + "start_col": 6, + "start_line": 42 + }, + "While handling return value of" + ], + "start_col": 18, + "start_line": 11 + }, + "While expanding the reference '__return_value_ptr' in:" + ], + "start_col": 5, + "start_line": 43 + }, + "While handling return value 'decimals'" + ], + "start_col": 26, + "start_line": 2 + } + }, + "1157": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.decimals_encode_return" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 73, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/return/decimals/a97d2b6786c76802562faf3a37a632fd604ff18dde35a5c92ee6960b683ee2dd.cairo" + }, + "parent_location": [ + { + "end_col": 14, + "end_line": 42, + "input_file": { + "filename": "./tests/fixtures/ERC20.cairo" + }, + "parent_location": [ + { + "end_col": 40, + "end_line": 10, + "input_file": { + "filename": "autogen/starknet/external/return/decimals/a97d2b6786c76802562faf3a37a632fd604ff18dde35a5c92ee6960b683ee2dd.cairo" + }, + "parent_location": [ + { + "end_col": 14, + "end_line": 42, + "input_file": { + "filename": "./tests/fixtures/ERC20.cairo" + }, + "start_col": 6, + "start_line": 42 + }, + "While handling return value of" + ], + "start_col": 25, + "start_line": 10 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 6, + "start_line": 42 + }, + "While handling return value of" + ], + "start_col": 58, + "start_line": 1 + } + }, + "1158": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.decimals_encode_return" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 63, + "end_line": 11, + "input_file": { + "filename": "autogen/starknet/external/return/decimals/a97d2b6786c76802562faf3a37a632fd604ff18dde35a5c92ee6960b683ee2dd.cairo" + }, + "parent_location": [ + { + "end_col": 14, + "end_line": 42, + "input_file": { + "filename": "./tests/fixtures/ERC20.cairo" + }, + "start_col": 6, + "start_line": 42 + }, + "While handling return value of" + ], + "start_col": 18, + "start_line": 11 + } + }, + "1159": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.decimals_encode_return" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 35, + "end_line": 5, + "input_file": { + "filename": "autogen/starknet/external/return/decimals/a97d2b6786c76802562faf3a37a632fd604ff18dde35a5c92ee6960b683ee2dd.cairo" + }, + "parent_location": [ + { + "end_col": 14, + "end_line": 42, + "input_file": { + "filename": "./tests/fixtures/ERC20.cairo" + }, + "parent_location": [ + { + "end_col": 38, + "end_line": 12, + "input_file": { + "filename": "autogen/starknet/external/return/decimals/a97d2b6786c76802562faf3a37a632fd604ff18dde35a5c92ee6960b683ee2dd.cairo" + }, + "parent_location": [ + { + "end_col": 14, + "end_line": 42, + "input_file": { + "filename": "./tests/fixtures/ERC20.cairo" + }, + "start_col": 6, + "start_line": 42 + }, + "While handling return value of" + ], + "start_col": 14, + "start_line": 12 + }, + "While expanding the reference '__return_value_ptr_start' in:" + ], + "start_col": 6, + "start_line": 42 + }, + "While handling return value of" + ], + "start_col": 11, + "start_line": 5 + } + }, + "1160": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.decimals_encode_return" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 40, + "end_line": 12, + "input_file": { + "filename": "autogen/starknet/external/return/decimals/a97d2b6786c76802562faf3a37a632fd604ff18dde35a5c92ee6960b683ee2dd.cairo" + }, + "parent_location": [ + { + "end_col": 14, + "end_line": 42, + "input_file": { + "filename": "./tests/fixtures/ERC20.cairo" + }, + "start_col": 6, + "start_line": 42 + }, + "While handling return value of" + ], + "start_col": 5, + "start_line": 9 + } + }, + "1161": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.decimals" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 58, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/arg_processor/01cba52f8515996bb9d7070bde81ff39281d096d7024a558efcba6e1fd2402cf.cairo" + }, + "parent_location": [ + { + "end_col": 14, + "end_line": 42, + "input_file": { + "filename": "./tests/fixtures/ERC20.cairo" + }, + "start_col": 6, + "start_line": 42 + }, + "While handling calldata of" + ], + "start_col": 1, + "start_line": 1 + } + }, + "1162": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.decimals" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 64, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/decimals/b2c52ca2d2a8fc8791a983086d8716c5eacd0c3d62934914d2286f84b98ff4cb.cairo" + }, + "parent_location": [ + { + "end_col": 33, + "end_line": 42, + "input_file": { + "filename": "./tests/fixtures/ERC20.cairo" + }, + "parent_location": [ + { + "end_col": 55, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/decimals/b895732858337deae88cb0106f94dcac8575befa3b4c84c0fc6c096df9053938.cairo" + }, + "parent_location": [ + { + "end_col": 14, + "end_line": 42, + "input_file": { + "filename": "./tests/fixtures/ERC20.cairo" + }, + "start_col": 6, + "start_line": 42 + }, + "While constructing the external wrapper for:" + ], + "start_col": 44, + "start_line": 1 + }, + "While expanding the reference 'syscall_ptr' in:" + ], + "start_col": 15, + "start_line": 42 + }, + "While constructing the external wrapper for:" + ], + "start_col": 19, + "start_line": 1 + } + }, + "1163": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.decimals" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 110, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/decimals/9684a85e93c782014ca14293edea4eb2502039a5a7b6538ecd39c56faaf12529.cairo" + }, + "parent_location": [ + { + "end_col": 61, + "end_line": 42, + "input_file": { + "filename": "./tests/fixtures/ERC20.cairo" + }, + "parent_location": [ + { + "end_col": 82, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/decimals/b895732858337deae88cb0106f94dcac8575befa3b4c84c0fc6c096df9053938.cairo" + }, + "parent_location": [ + { + "end_col": 14, + "end_line": 42, + "input_file": { + "filename": "./tests/fixtures/ERC20.cairo" + }, + "start_col": 6, + "start_line": 42 + }, + "While constructing the external wrapper for:" + ], + "start_col": 70, + "start_line": 1 + }, + "While expanding the reference 'pedersen_ptr' in:" + ], + "start_col": 35, + "start_line": 42 + }, + "While constructing the external wrapper for:" + ], + "start_col": 20, + "start_line": 1 + } + }, + "1164": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.decimals" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 67, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/decimals/741ea357d6336b0bed7bf0472425acd0311d543883b803388880e60a232040c7.cairo" + }, + "parent_location": [ + { + "end_col": 78, + "end_line": 42, + "input_file": { + "filename": "./tests/fixtures/ERC20.cairo" + }, + "parent_location": [ + { + "end_col": 115, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/decimals/b895732858337deae88cb0106f94dcac8575befa3b4c84c0fc6c096df9053938.cairo" + }, + "parent_location": [ + { + "end_col": 14, + "end_line": 42, + "input_file": { + "filename": "./tests/fixtures/ERC20.cairo" + }, + "start_col": 6, + "start_line": 42 + }, + "While constructing the external wrapper for:" + ], + "start_col": 100, + "start_line": 1 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 63, + "start_line": 42 + }, + "While constructing the external wrapper for:" + ], + "start_col": 23, + "start_line": 1 + } + }, + "1165": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.decimals" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 14, + "end_line": 42, + "input_file": { + "filename": "./tests/fixtures/ERC20.cairo" + }, + "start_col": 6, + "start_line": 42 + } + }, + "1167": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.decimals" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 115, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/decimals/b895732858337deae88cb0106f94dcac8575befa3b4c84c0fc6c096df9053938.cairo" + }, + "parent_location": [ + { + "end_col": 14, + "end_line": 42, + "input_file": { + "filename": "./tests/fixtures/ERC20.cairo" + }, + "parent_location": [ + { + "end_col": 97, + "end_line": 2, + "input_file": { + "filename": "autogen/starknet/external/decimals/b895732858337deae88cb0106f94dcac8575befa3b4c84c0fc6c096df9053938.cairo" + }, + "parent_location": [ + { + "end_col": 14, + "end_line": 42, + "input_file": { + "filename": "./tests/fixtures/ERC20.cairo" + }, + "start_col": 6, + "start_line": 42 + }, + "While constructing the external wrapper for:" + ], + "start_col": 82, + "start_line": 2 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 6, + "start_line": 42 + }, + "While constructing the external wrapper for:" + ], + "start_col": 100, + "start_line": 1 + } + }, + "1168": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.decimals" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 98, + "end_line": 2, + "input_file": { + "filename": "autogen/starknet/external/decimals/b895732858337deae88cb0106f94dcac8575befa3b4c84c0fc6c096df9053938.cairo" + }, + "parent_location": [ + { + "end_col": 14, + "end_line": 42, + "input_file": { + "filename": "./tests/fixtures/ERC20.cairo" + }, + "start_col": 6, + "start_line": 42 + }, + "While constructing the external wrapper for:" + ], + "start_col": 48, + "start_line": 2 + } + }, + "1170": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.decimals" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 55, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/decimals/b895732858337deae88cb0106f94dcac8575befa3b4c84c0fc6c096df9053938.cairo" + }, + "parent_location": [ + { + "end_col": 14, + "end_line": 42, + "input_file": { + "filename": "./tests/fixtures/ERC20.cairo" + }, + "parent_location": [ + { + "end_col": 20, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/decimals/da17921a4e81c09e730800bbf23bfdbe5e9e6bfaedc59d80fbf62087fa43c27d.cairo" + }, + "parent_location": [ + { + "end_col": 14, + "end_line": 42, + "input_file": { + "filename": "./tests/fixtures/ERC20.cairo" + }, + "start_col": 6, + "start_line": 42 + }, + "While constructing the external wrapper for:" + ], + "start_col": 9, + "start_line": 1 + }, + "While expanding the reference 'syscall_ptr' in:" + ], + "start_col": 6, + "start_line": 42 + }, + "While constructing the external wrapper for:" + ], + "start_col": 44, + "start_line": 1 + } + }, + "1171": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.decimals" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 82, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/decimals/b895732858337deae88cb0106f94dcac8575befa3b4c84c0fc6c096df9053938.cairo" + }, + "parent_location": [ + { + "end_col": 14, + "end_line": 42, + "input_file": { + "filename": "./tests/fixtures/ERC20.cairo" + }, + "parent_location": [ + { + "end_col": 33, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/decimals/da17921a4e81c09e730800bbf23bfdbe5e9e6bfaedc59d80fbf62087fa43c27d.cairo" + }, + "parent_location": [ + { + "end_col": 14, + "end_line": 42, + "input_file": { + "filename": "./tests/fixtures/ERC20.cairo" + }, + "start_col": 6, + "start_line": 42 + }, + "While constructing the external wrapper for:" + ], + "start_col": 21, + "start_line": 1 + }, + "While expanding the reference 'pedersen_ptr' in:" + ], + "start_col": 6, + "start_line": 42 + }, + "While constructing the external wrapper for:" + ], + "start_col": 70, + "start_line": 1 + } + }, + "1172": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.decimals" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 21, + "end_line": 2, + "input_file": { + "filename": "autogen/starknet/external/decimals/b895732858337deae88cb0106f94dcac8575befa3b4c84c0fc6c096df9053938.cairo" + }, + "parent_location": [ + { + "end_col": 14, + "end_line": 42, + "input_file": { + "filename": "./tests/fixtures/ERC20.cairo" + }, + "parent_location": [ + { + "end_col": 49, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/decimals/da17921a4e81c09e730800bbf23bfdbe5e9e6bfaedc59d80fbf62087fa43c27d.cairo" + }, + "parent_location": [ + { + "end_col": 14, + "end_line": 42, + "input_file": { + "filename": "./tests/fixtures/ERC20.cairo" + }, + "start_col": 6, + "start_line": 42 + }, + "While constructing the external wrapper for:" + ], + "start_col": 34, + "start_line": 1 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 6, + "start_line": 42 + }, + "While constructing the external wrapper for:" + ], + "start_col": 6, + "start_line": 2 + } + }, + "1173": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.decimals" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 35, + "end_line": 2, + "input_file": { + "filename": "autogen/starknet/external/decimals/b895732858337deae88cb0106f94dcac8575befa3b4c84c0fc6c096df9053938.cairo" + }, + "parent_location": [ + { + "end_col": 14, + "end_line": 42, + "input_file": { + "filename": "./tests/fixtures/ERC20.cairo" + }, + "parent_location": [ + { + "end_col": 62, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/decimals/da17921a4e81c09e730800bbf23bfdbe5e9e6bfaedc59d80fbf62087fa43c27d.cairo" + }, + "parent_location": [ + { + "end_col": 14, + "end_line": 42, + "input_file": { + "filename": "./tests/fixtures/ERC20.cairo" + }, + "start_col": 6, + "start_line": 42 + }, + "While constructing the external wrapper for:" + ], + "start_col": 50, + "start_line": 1 + }, + "While expanding the reference 'retdata_size' in:" + ], + "start_col": 6, + "start_line": 42 + }, + "While constructing the external wrapper for:" + ], + "start_col": 23, + "start_line": 2 + } + }, + "1174": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.decimals" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 44, + "end_line": 2, + "input_file": { + "filename": "autogen/starknet/external/decimals/b895732858337deae88cb0106f94dcac8575befa3b4c84c0fc6c096df9053938.cairo" + }, + "parent_location": [ + { + "end_col": 14, + "end_line": 42, + "input_file": { + "filename": "./tests/fixtures/ERC20.cairo" + }, + "parent_location": [ + { + "end_col": 70, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/decimals/da17921a4e81c09e730800bbf23bfdbe5e9e6bfaedc59d80fbf62087fa43c27d.cairo" + }, + "parent_location": [ + { + "end_col": 14, + "end_line": 42, + "input_file": { + "filename": "./tests/fixtures/ERC20.cairo" + }, + "start_col": 6, + "start_line": 42 + }, + "While constructing the external wrapper for:" + ], + "start_col": 63, + "start_line": 1 + }, + "While expanding the reference 'retdata' in:" + ], + "start_col": 6, + "start_line": 42 + }, + "While constructing the external wrapper for:" + ], + "start_col": 37, + "start_line": 2 + } + }, + "1175": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.decimals" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 72, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/decimals/da17921a4e81c09e730800bbf23bfdbe5e9e6bfaedc59d80fbf62087fa43c27d.cairo" + }, + "parent_location": [ + { + "end_col": 14, + "end_line": 42, + "input_file": { + "filename": "./tests/fixtures/ERC20.cairo" + }, + "start_col": 6, + "start_line": 42 + }, + "While constructing the external wrapper for:" + ], + "start_col": 1, + "start_line": 1 + } + }, + "1176": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.balanceOf" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 34, + "end_line": 49, + "input_file": { + "filename": "./tests/fixtures/ERC20.cairo" + }, + "parent_location": [ + { + "end_col": 39, + "end_line": 98, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/3.9.13/envs/kakarot/lib/python3.9/site-packages/openzeppelin/token/erc20/library.cairo" + }, + "parent_location": [ + { + "end_col": 37, + "end_line": 52, + "input_file": { + "filename": "./tests/fixtures/ERC20.cairo" + }, + "start_col": 12, + "start_line": 52 + }, + "While trying to retrieve the implicit argument 'syscall_ptr' in:" + ], + "start_col": 21, + "start_line": 98 + }, + "While expanding the reference 'syscall_ptr' in:" + ], + "start_col": 16, + "start_line": 49 + } + }, + "1177": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.balanceOf" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 62, + "end_line": 49, + "input_file": { + "filename": "./tests/fixtures/ERC20.cairo" + }, + "parent_location": [ + { + "end_col": 67, + "end_line": 98, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/3.9.13/envs/kakarot/lib/python3.9/site-packages/openzeppelin/token/erc20/library.cairo" + }, + "parent_location": [ + { + "end_col": 37, + "end_line": 52, + "input_file": { + "filename": "./tests/fixtures/ERC20.cairo" + }, + "start_col": 12, + "start_line": 52 + }, + "While trying to retrieve the implicit argument 'pedersen_ptr' in:" + ], + "start_col": 41, + "start_line": 98 + }, + "While expanding the reference 'pedersen_ptr' in:" + ], + "start_col": 36, + "start_line": 49 + } + }, + "1178": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.balanceOf" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 79, + "end_line": 49, + "input_file": { + "filename": "./tests/fixtures/ERC20.cairo" + }, + "parent_location": [ + { + "end_col": 84, + "end_line": 98, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/3.9.13/envs/kakarot/lib/python3.9/site-packages/openzeppelin/token/erc20/library.cairo" + }, + "parent_location": [ + { + "end_col": 37, + "end_line": 52, + "input_file": { + "filename": "./tests/fixtures/ERC20.cairo" + }, + "start_col": 12, + "start_line": 52 + }, + "While trying to retrieve the implicit argument 'range_check_ptr' in:" + ], + "start_col": 69, + "start_line": 98 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 64, + "start_line": 49 + } + }, + "1179": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.balanceOf" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 94, + "end_line": 49, + "input_file": { + "filename": "./tests/fixtures/ERC20.cairo" + }, + "parent_location": [ + { + "end_col": 36, + "end_line": 52, + "input_file": { + "filename": "./tests/fixtures/ERC20.cairo" + }, + "start_col": 29, + "start_line": 52 + }, + "While expanding the reference 'account' in:" + ], + "start_col": 81, + "start_line": 49 + } + }, + "1180": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.balanceOf" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 37, + "end_line": 52, + "input_file": { + "filename": "./tests/fixtures/ERC20.cairo" + }, + "start_col": 12, + "start_line": 52 + } + }, + "1182": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.balanceOf" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 38, + "end_line": 52, + "input_file": { + "filename": "./tests/fixtures/ERC20.cairo" + }, + "start_col": 5, + "start_line": 52 + } + }, + "1183": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.balanceOf_encode_return" + ], + "flow_tracking_data": null, + "hints": [ + { + "location": { + "end_col": 38, + "end_line": 3, + "input_file": { + "filename": "autogen/starknet/external/return/balanceOf/6be46755be2f937558932379e9c42b1ab153e2ba499cd66beb178511b2106ad9.cairo" + }, + "parent_location": [ + { + "end_col": 15, + "end_line": 49, + "input_file": { + "filename": "./tests/fixtures/ERC20.cairo" + }, + "start_col": 6, + "start_line": 49 + }, + "While handling return value of" + ], + "start_col": 5, + "start_line": 3 + }, + "n_prefix_newlines": 0 + } + ], + "inst": { + "end_col": 18, + "end_line": 4, + "input_file": { + "filename": "autogen/starknet/external/return/balanceOf/6be46755be2f937558932379e9c42b1ab153e2ba499cd66beb178511b2106ad9.cairo" + }, + "parent_location": [ + { + "end_col": 15, + "end_line": 49, + "input_file": { + "filename": "./tests/fixtures/ERC20.cairo" + }, + "start_col": 6, + "start_line": 49 + }, + "While handling return value of" + ], + "start_col": 5, + "start_line": 4 + } + }, + "1185": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.balanceOf_encode_return" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 60, + "end_line": 3, + "input_file": { + "filename": "autogen/starknet/arg_processor/f013cc89754bf613d36aa163a5014b518987d20a85394ebbe3c47c5cdb0a38b1.cairo" + }, + "parent_location": [ + { + "end_col": 21, + "end_line": 50, + "input_file": { + "filename": "./tests/fixtures/ERC20.cairo" + }, + "start_col": 5, + "start_line": 50 + }, + "While handling return value 'balance'" + ], + "start_col": 1, + "start_line": 3 + } + }, + "1186": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.balanceOf_encode_return" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 60, + "end_line": 4, + "input_file": { + "filename": "autogen/starknet/arg_processor/f013cc89754bf613d36aa163a5014b518987d20a85394ebbe3c47c5cdb0a38b1.cairo" + }, + "parent_location": [ + { + "end_col": 21, + "end_line": 50, + "input_file": { + "filename": "./tests/fixtures/ERC20.cairo" + }, + "start_col": 5, + "start_line": 50 + }, + "While handling return value 'balance'" + ], + "start_col": 1, + "start_line": 4 + } + }, + "1187": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.balanceOf_encode_return" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 48, + "end_line": 5, + "input_file": { + "filename": "autogen/starknet/arg_processor/f013cc89754bf613d36aa163a5014b518987d20a85394ebbe3c47c5cdb0a38b1.cairo" + }, + "parent_location": [ + { + "end_col": 21, + "end_line": 50, + "input_file": { + "filename": "./tests/fixtures/ERC20.cairo" + }, + "parent_location": [ + { + "end_col": 36, + "end_line": 11, + "input_file": { + "filename": "autogen/starknet/external/return/balanceOf/6be46755be2f937558932379e9c42b1ab153e2ba499cd66beb178511b2106ad9.cairo" + }, + "parent_location": [ + { + "end_col": 15, + "end_line": 49, + "input_file": { + "filename": "./tests/fixtures/ERC20.cairo" + }, + "start_col": 6, + "start_line": 49 + }, + "While handling return value of" + ], + "start_col": 18, + "start_line": 11 + }, + "While expanding the reference '__return_value_ptr' in:" + ], + "start_col": 5, + "start_line": 50 + }, + "While handling return value 'balance'" + ], + "start_col": 26, + "start_line": 5 + } + }, + "1189": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.balanceOf_encode_return" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 107, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/return/balanceOf/6be46755be2f937558932379e9c42b1ab153e2ba499cd66beb178511b2106ad9.cairo" + }, + "parent_location": [ + { + "end_col": 15, + "end_line": 49, + "input_file": { + "filename": "./tests/fixtures/ERC20.cairo" + }, + "parent_location": [ + { + "end_col": 40, + "end_line": 10, + "input_file": { + "filename": "autogen/starknet/external/return/balanceOf/6be46755be2f937558932379e9c42b1ab153e2ba499cd66beb178511b2106ad9.cairo" + }, + "parent_location": [ + { + "end_col": 15, + "end_line": 49, + "input_file": { + "filename": "./tests/fixtures/ERC20.cairo" + }, + "start_col": 6, + "start_line": 49 + }, + "While handling return value of" + ], + "start_col": 25, + "start_line": 10 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 6, + "start_line": 49 + }, + "While handling return value of" + ], + "start_col": 92, + "start_line": 1 + } + }, + "1190": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.balanceOf_encode_return" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 63, + "end_line": 11, + "input_file": { + "filename": "autogen/starknet/external/return/balanceOf/6be46755be2f937558932379e9c42b1ab153e2ba499cd66beb178511b2106ad9.cairo" + }, + "parent_location": [ + { + "end_col": 15, + "end_line": 49, + "input_file": { + "filename": "./tests/fixtures/ERC20.cairo" + }, + "start_col": 6, + "start_line": 49 + }, + "While handling return value of" + ], + "start_col": 18, + "start_line": 11 + } + }, + "1191": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.balanceOf_encode_return" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 35, + "end_line": 5, + "input_file": { + "filename": "autogen/starknet/external/return/balanceOf/6be46755be2f937558932379e9c42b1ab153e2ba499cd66beb178511b2106ad9.cairo" + }, + "parent_location": [ + { + "end_col": 15, + "end_line": 49, + "input_file": { + "filename": "./tests/fixtures/ERC20.cairo" + }, + "parent_location": [ + { + "end_col": 38, + "end_line": 12, + "input_file": { + "filename": "autogen/starknet/external/return/balanceOf/6be46755be2f937558932379e9c42b1ab153e2ba499cd66beb178511b2106ad9.cairo" + }, + "parent_location": [ + { + "end_col": 15, + "end_line": 49, + "input_file": { + "filename": "./tests/fixtures/ERC20.cairo" + }, + "start_col": 6, + "start_line": 49 + }, + "While handling return value of" + ], + "start_col": 14, + "start_line": 12 + }, + "While expanding the reference '__return_value_ptr_start' in:" + ], + "start_col": 6, + "start_line": 49 + }, + "While handling return value of" + ], + "start_col": 11, + "start_line": 5 + } + }, + "1192": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.balanceOf_encode_return" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 40, + "end_line": 12, + "input_file": { + "filename": "autogen/starknet/external/return/balanceOf/6be46755be2f937558932379e9c42b1ab153e2ba499cd66beb178511b2106ad9.cairo" + }, + "parent_location": [ + { + "end_col": 15, + "end_line": 49, + "input_file": { + "filename": "./tests/fixtures/ERC20.cairo" + }, + "start_col": 6, + "start_line": 49 + }, + "While handling return value of" + ], + "start_col": 5, + "start_line": 9 + } + }, + "1193": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.balanceOf" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 40, + "end_line": 2, + "input_file": { + "filename": "autogen/starknet/arg_processor/e4d5d41a9286852ceee2d8a1fbac026532bda7bb0e3a6ccfcbfb5e7dd12aa070.cairo" + }, + "parent_location": [ + { + "end_col": 94, + "end_line": 49, + "input_file": { + "filename": "./tests/fixtures/ERC20.cairo" + }, + "parent_location": [ + { + "end_col": 45, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/arg_processor/c31620b02d4d706f0542c989b2aadc01b0981d1f6a5933a8fe4937ace3d70d92.cairo" + }, + "parent_location": [ + { + "end_col": 15, + "end_line": 49, + "input_file": { + "filename": "./tests/fixtures/ERC20.cairo" + }, + "parent_location": [ + { + "end_col": 57, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/arg_processor/01cba52f8515996bb9d7070bde81ff39281d096d7024a558efcba6e1fd2402cf.cairo" + }, + "parent_location": [ + { + "end_col": 15, + "end_line": 49, + "input_file": { + "filename": "./tests/fixtures/ERC20.cairo" + }, + "start_col": 6, + "start_line": 49 + }, + "While handling calldata of" + ], + "start_col": 35, + "start_line": 1 + }, + "While expanding the reference '__calldata_actual_size' in:" + ], + "start_col": 6, + "start_line": 49 + }, + "While handling calldata of" + ], + "start_col": 31, + "start_line": 1 + }, + "While expanding the reference '__calldata_ptr' in:" + ], + "start_col": 81, + "start_line": 49 + }, + "While handling calldata argument 'account'" + ], + "start_col": 22, + "start_line": 2 + } + }, + "1195": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.balanceOf" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 58, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/arg_processor/01cba52f8515996bb9d7070bde81ff39281d096d7024a558efcba6e1fd2402cf.cairo" + }, + "parent_location": [ + { + "end_col": 15, + "end_line": 49, + "input_file": { + "filename": "./tests/fixtures/ERC20.cairo" + }, + "start_col": 6, + "start_line": 49 + }, + "While handling calldata of" + ], + "start_col": 1, + "start_line": 1 + } + }, + "1196": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.balanceOf" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 64, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/balanceOf/b2c52ca2d2a8fc8791a983086d8716c5eacd0c3d62934914d2286f84b98ff4cb.cairo" + }, + "parent_location": [ + { + "end_col": 34, + "end_line": 49, + "input_file": { + "filename": "./tests/fixtures/ERC20.cairo" + }, + "parent_location": [ + { + "end_col": 55, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/balanceOf/4159e40bee40bab5fc59447feb2a61119cdf9ab6c0a14ebaa0f9e280a5469c22.cairo" + }, + "parent_location": [ + { + "end_col": 15, + "end_line": 49, + "input_file": { + "filename": "./tests/fixtures/ERC20.cairo" + }, + "start_col": 6, + "start_line": 49 + }, + "While constructing the external wrapper for:" + ], + "start_col": 44, + "start_line": 1 + }, + "While expanding the reference 'syscall_ptr' in:" + ], + "start_col": 16, + "start_line": 49 + }, + "While constructing the external wrapper for:" + ], + "start_col": 19, + "start_line": 1 + } + }, + "1197": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.balanceOf" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 110, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/balanceOf/9684a85e93c782014ca14293edea4eb2502039a5a7b6538ecd39c56faaf12529.cairo" + }, + "parent_location": [ + { + "end_col": 62, + "end_line": 49, + "input_file": { + "filename": "./tests/fixtures/ERC20.cairo" + }, + "parent_location": [ + { + "end_col": 82, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/balanceOf/4159e40bee40bab5fc59447feb2a61119cdf9ab6c0a14ebaa0f9e280a5469c22.cairo" + }, + "parent_location": [ + { + "end_col": 15, + "end_line": 49, + "input_file": { + "filename": "./tests/fixtures/ERC20.cairo" + }, + "start_col": 6, + "start_line": 49 + }, + "While constructing the external wrapper for:" + ], + "start_col": 70, + "start_line": 1 + }, + "While expanding the reference 'pedersen_ptr' in:" + ], + "start_col": 36, + "start_line": 49 + }, + "While constructing the external wrapper for:" + ], + "start_col": 20, + "start_line": 1 + } + }, + "1198": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.balanceOf" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 67, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/balanceOf/741ea357d6336b0bed7bf0472425acd0311d543883b803388880e60a232040c7.cairo" + }, + "parent_location": [ + { + "end_col": 79, + "end_line": 49, + "input_file": { + "filename": "./tests/fixtures/ERC20.cairo" + }, + "parent_location": [ + { + "end_col": 115, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/balanceOf/4159e40bee40bab5fc59447feb2a61119cdf9ab6c0a14ebaa0f9e280a5469c22.cairo" + }, + "parent_location": [ + { + "end_col": 15, + "end_line": 49, + "input_file": { + "filename": "./tests/fixtures/ERC20.cairo" + }, + "start_col": 6, + "start_line": 49 + }, + "While constructing the external wrapper for:" + ], + "start_col": 100, + "start_line": 1 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 64, + "start_line": 49 + }, + "While constructing the external wrapper for:" + ], + "start_col": 23, + "start_line": 1 + } + }, + "1199": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.balanceOf" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 46, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/arg_processor/e4d5d41a9286852ceee2d8a1fbac026532bda7bb0e3a6ccfcbfb5e7dd12aa070.cairo" + }, + "parent_location": [ + { + "end_col": 94, + "end_line": 49, + "input_file": { + "filename": "./tests/fixtures/ERC20.cairo" + }, + "parent_location": [ + { + "end_col": 147, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/balanceOf/4159e40bee40bab5fc59447feb2a61119cdf9ab6c0a14ebaa0f9e280a5469c22.cairo" + }, + "parent_location": [ + { + "end_col": 15, + "end_line": 49, + "input_file": { + "filename": "./tests/fixtures/ERC20.cairo" + }, + "start_col": 6, + "start_line": 49 + }, + "While constructing the external wrapper for:" + ], + "start_col": 125, + "start_line": 1 + }, + "While expanding the reference '__calldata_arg_account' in:" + ], + "start_col": 81, + "start_line": 49 + }, + "While handling calldata argument 'account'" + ], + "start_col": 30, + "start_line": 1 + } + }, + "1200": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.balanceOf" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 15, + "end_line": 49, + "input_file": { + "filename": "./tests/fixtures/ERC20.cairo" + }, + "start_col": 6, + "start_line": 49 + } + }, + "1202": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.balanceOf" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 115, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/balanceOf/4159e40bee40bab5fc59447feb2a61119cdf9ab6c0a14ebaa0f9e280a5469c22.cairo" + }, + "parent_location": [ + { + "end_col": 15, + "end_line": 49, + "input_file": { + "filename": "./tests/fixtures/ERC20.cairo" + }, + "parent_location": [ + { + "end_col": 98, + "end_line": 2, + "input_file": { + "filename": "autogen/starknet/external/balanceOf/4159e40bee40bab5fc59447feb2a61119cdf9ab6c0a14ebaa0f9e280a5469c22.cairo" + }, + "parent_location": [ + { + "end_col": 15, + "end_line": 49, + "input_file": { + "filename": "./tests/fixtures/ERC20.cairo" + }, + "start_col": 6, + "start_line": 49 + }, + "While constructing the external wrapper for:" + ], + "start_col": 83, + "start_line": 2 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 6, + "start_line": 49 + }, + "While constructing the external wrapper for:" + ], + "start_col": 100, + "start_line": 1 + } + }, + "1203": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.balanceOf" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 99, + "end_line": 2, + "input_file": { + "filename": "autogen/starknet/external/balanceOf/4159e40bee40bab5fc59447feb2a61119cdf9ab6c0a14ebaa0f9e280a5469c22.cairo" + }, + "parent_location": [ + { + "end_col": 15, + "end_line": 49, + "input_file": { + "filename": "./tests/fixtures/ERC20.cairo" + }, + "start_col": 6, + "start_line": 49 + }, + "While constructing the external wrapper for:" + ], + "start_col": 48, + "start_line": 2 + } + }, + "1205": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.balanceOf" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 55, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/balanceOf/4159e40bee40bab5fc59447feb2a61119cdf9ab6c0a14ebaa0f9e280a5469c22.cairo" + }, + "parent_location": [ + { + "end_col": 15, + "end_line": 49, + "input_file": { + "filename": "./tests/fixtures/ERC20.cairo" + }, + "parent_location": [ + { + "end_col": 20, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/balanceOf/da17921a4e81c09e730800bbf23bfdbe5e9e6bfaedc59d80fbf62087fa43c27d.cairo" + }, + "parent_location": [ + { + "end_col": 15, + "end_line": 49, + "input_file": { + "filename": "./tests/fixtures/ERC20.cairo" + }, + "start_col": 6, + "start_line": 49 + }, + "While constructing the external wrapper for:" + ], + "start_col": 9, + "start_line": 1 + }, + "While expanding the reference 'syscall_ptr' in:" + ], + "start_col": 6, + "start_line": 49 + }, + "While constructing the external wrapper for:" + ], + "start_col": 44, + "start_line": 1 + } + }, + "1206": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.balanceOf" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 82, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/balanceOf/4159e40bee40bab5fc59447feb2a61119cdf9ab6c0a14ebaa0f9e280a5469c22.cairo" + }, + "parent_location": [ + { + "end_col": 15, + "end_line": 49, + "input_file": { + "filename": "./tests/fixtures/ERC20.cairo" + }, + "parent_location": [ + { + "end_col": 33, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/balanceOf/da17921a4e81c09e730800bbf23bfdbe5e9e6bfaedc59d80fbf62087fa43c27d.cairo" + }, + "parent_location": [ + { + "end_col": 15, + "end_line": 49, + "input_file": { + "filename": "./tests/fixtures/ERC20.cairo" + }, + "start_col": 6, + "start_line": 49 + }, + "While constructing the external wrapper for:" + ], + "start_col": 21, + "start_line": 1 + }, + "While expanding the reference 'pedersen_ptr' in:" + ], + "start_col": 6, + "start_line": 49 + }, + "While constructing the external wrapper for:" + ], + "start_col": 70, + "start_line": 1 + } + }, + "1207": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.balanceOf" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 21, + "end_line": 2, + "input_file": { + "filename": "autogen/starknet/external/balanceOf/4159e40bee40bab5fc59447feb2a61119cdf9ab6c0a14ebaa0f9e280a5469c22.cairo" + }, + "parent_location": [ + { + "end_col": 15, + "end_line": 49, + "input_file": { + "filename": "./tests/fixtures/ERC20.cairo" + }, + "parent_location": [ + { + "end_col": 49, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/balanceOf/da17921a4e81c09e730800bbf23bfdbe5e9e6bfaedc59d80fbf62087fa43c27d.cairo" + }, + "parent_location": [ + { + "end_col": 15, + "end_line": 49, + "input_file": { + "filename": "./tests/fixtures/ERC20.cairo" + }, + "start_col": 6, + "start_line": 49 + }, + "While constructing the external wrapper for:" + ], + "start_col": 34, + "start_line": 1 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 6, + "start_line": 49 + }, + "While constructing the external wrapper for:" + ], + "start_col": 6, + "start_line": 2 + } + }, + "1208": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.balanceOf" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 35, + "end_line": 2, + "input_file": { + "filename": "autogen/starknet/external/balanceOf/4159e40bee40bab5fc59447feb2a61119cdf9ab6c0a14ebaa0f9e280a5469c22.cairo" + }, + "parent_location": [ + { + "end_col": 15, + "end_line": 49, + "input_file": { + "filename": "./tests/fixtures/ERC20.cairo" + }, + "parent_location": [ + { + "end_col": 62, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/balanceOf/da17921a4e81c09e730800bbf23bfdbe5e9e6bfaedc59d80fbf62087fa43c27d.cairo" + }, + "parent_location": [ + { + "end_col": 15, + "end_line": 49, + "input_file": { + "filename": "./tests/fixtures/ERC20.cairo" + }, + "start_col": 6, + "start_line": 49 + }, + "While constructing the external wrapper for:" + ], + "start_col": 50, + "start_line": 1 + }, + "While expanding the reference 'retdata_size' in:" + ], + "start_col": 6, + "start_line": 49 + }, + "While constructing the external wrapper for:" + ], + "start_col": 23, + "start_line": 2 + } + }, + "1209": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.balanceOf" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 44, + "end_line": 2, + "input_file": { + "filename": "autogen/starknet/external/balanceOf/4159e40bee40bab5fc59447feb2a61119cdf9ab6c0a14ebaa0f9e280a5469c22.cairo" + }, + "parent_location": [ + { + "end_col": 15, + "end_line": 49, + "input_file": { + "filename": "./tests/fixtures/ERC20.cairo" + }, + "parent_location": [ + { + "end_col": 70, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/balanceOf/da17921a4e81c09e730800bbf23bfdbe5e9e6bfaedc59d80fbf62087fa43c27d.cairo" + }, + "parent_location": [ + { + "end_col": 15, + "end_line": 49, + "input_file": { + "filename": "./tests/fixtures/ERC20.cairo" + }, + "start_col": 6, + "start_line": 49 + }, + "While constructing the external wrapper for:" + ], + "start_col": 63, + "start_line": 1 + }, + "While expanding the reference 'retdata' in:" + ], + "start_col": 6, + "start_line": 49 + }, + "While constructing the external wrapper for:" + ], + "start_col": 37, + "start_line": 2 + } + }, + "1210": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.balanceOf" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 72, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/balanceOf/da17921a4e81c09e730800bbf23bfdbe5e9e6bfaedc59d80fbf62087fa43c27d.cairo" + }, + "parent_location": [ + { + "end_col": 15, + "end_line": 49, + "input_file": { + "filename": "./tests/fixtures/ERC20.cairo" + }, + "start_col": 6, + "start_line": 49 + }, + "While constructing the external wrapper for:" + ], + "start_col": 1, + "start_line": 1 + } + }, + "1211": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.allowance" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 34, + "end_line": 56, + "input_file": { + "filename": "./tests/fixtures/ERC20.cairo" + }, + "parent_location": [ + { + "end_col": 38, + "end_line": 104, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/3.9.13/envs/kakarot/lib/python3.9/site-packages/openzeppelin/token/erc20/library.cairo" + }, + "parent_location": [ + { + "end_col": 43, + "end_line": 59, + "input_file": { + "filename": "./tests/fixtures/ERC20.cairo" + }, + "start_col": 12, + "start_line": 59 + }, + "While trying to retrieve the implicit argument 'syscall_ptr' in:" + ], + "start_col": 20, + "start_line": 104 + }, + "While expanding the reference 'syscall_ptr' in:" + ], + "start_col": 16, + "start_line": 56 + } + }, + "1212": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.allowance" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 62, + "end_line": 56, + "input_file": { + "filename": "./tests/fixtures/ERC20.cairo" + }, + "parent_location": [ + { + "end_col": 66, + "end_line": 104, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/3.9.13/envs/kakarot/lib/python3.9/site-packages/openzeppelin/token/erc20/library.cairo" + }, + "parent_location": [ + { + "end_col": 43, + "end_line": 59, + "input_file": { + "filename": "./tests/fixtures/ERC20.cairo" + }, + "start_col": 12, + "start_line": 59 + }, + "While trying to retrieve the implicit argument 'pedersen_ptr' in:" + ], + "start_col": 40, + "start_line": 104 + }, + "While expanding the reference 'pedersen_ptr' in:" + ], + "start_col": 36, + "start_line": 56 + } + }, + "1213": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.allowance" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 79, + "end_line": 56, + "input_file": { + "filename": "./tests/fixtures/ERC20.cairo" + }, + "parent_location": [ + { + "end_col": 83, + "end_line": 104, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/3.9.13/envs/kakarot/lib/python3.9/site-packages/openzeppelin/token/erc20/library.cairo" + }, + "parent_location": [ + { + "end_col": 43, + "end_line": 59, + "input_file": { + "filename": "./tests/fixtures/ERC20.cairo" + }, + "start_col": 12, + "start_line": 59 + }, + "While trying to retrieve the implicit argument 'range_check_ptr' in:" + ], + "start_col": 68, + "start_line": 104 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 64, + "start_line": 56 + } + }, + "1214": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.allowance" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 16, + "end_line": 57, + "input_file": { + "filename": "./tests/fixtures/ERC20.cairo" + }, + "parent_location": [ + { + "end_col": 33, + "end_line": 59, + "input_file": { + "filename": "./tests/fixtures/ERC20.cairo" + }, + "start_col": 28, + "start_line": 59 + }, + "While expanding the reference 'owner' in:" + ], + "start_col": 5, + "start_line": 57 + } + }, + "1215": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.allowance" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 31, + "end_line": 57, + "input_file": { + "filename": "./tests/fixtures/ERC20.cairo" + }, + "parent_location": [ + { + "end_col": 42, + "end_line": 59, + "input_file": { + "filename": "./tests/fixtures/ERC20.cairo" + }, + "start_col": 35, + "start_line": 59 + }, + "While expanding the reference 'spender' in:" + ], + "start_col": 18, + "start_line": 57 + } + }, + "1216": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.allowance" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 43, + "end_line": 59, + "input_file": { + "filename": "./tests/fixtures/ERC20.cairo" + }, + "start_col": 12, + "start_line": 59 + } + }, + "1218": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.allowance" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 44, + "end_line": 59, + "input_file": { + "filename": "./tests/fixtures/ERC20.cairo" + }, + "start_col": 5, + "start_line": 59 + } + }, + "1219": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.allowance_encode_return" + ], + "flow_tracking_data": null, + "hints": [ + { + "location": { + "end_col": 38, + "end_line": 3, + "input_file": { + "filename": "autogen/starknet/external/return/allowance/1cb7294a6f22e622b9ef012b5a4d2faa6b7630d9f34fee6abcca00d90029b02c.cairo" + }, + "parent_location": [ + { + "end_col": 15, + "end_line": 56, + "input_file": { + "filename": "./tests/fixtures/ERC20.cairo" + }, + "start_col": 6, + "start_line": 56 + }, + "While handling return value of" + ], + "start_col": 5, + "start_line": 3 + }, + "n_prefix_newlines": 0 + } + ], + "inst": { + "end_col": 18, + "end_line": 4, + "input_file": { + "filename": "autogen/starknet/external/return/allowance/1cb7294a6f22e622b9ef012b5a4d2faa6b7630d9f34fee6abcca00d90029b02c.cairo" + }, + "parent_location": [ + { + "end_col": 15, + "end_line": 56, + "input_file": { + "filename": "./tests/fixtures/ERC20.cairo" + }, + "start_col": 6, + "start_line": 56 + }, + "While handling return value of" + ], + "start_col": 5, + "start_line": 4 + } + }, + "1221": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.allowance_encode_return" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 60, + "end_line": 3, + "input_file": { + "filename": "autogen/starknet/arg_processor/7f5020813ab1b343debcc3300c737c940210993d2fe101134705622a3d36fb93.cairo" + }, + "parent_location": [ + { + "end_col": 25, + "end_line": 58, + "input_file": { + "filename": "./tests/fixtures/ERC20.cairo" + }, + "start_col": 7, + "start_line": 58 + }, + "While handling return value 'remaining'" + ], + "start_col": 1, + "start_line": 3 + } + }, + "1222": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.allowance_encode_return" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 60, + "end_line": 4, + "input_file": { + "filename": "autogen/starknet/arg_processor/7f5020813ab1b343debcc3300c737c940210993d2fe101134705622a3d36fb93.cairo" + }, + "parent_location": [ + { + "end_col": 25, + "end_line": 58, + "input_file": { + "filename": "./tests/fixtures/ERC20.cairo" + }, + "start_col": 7, + "start_line": 58 + }, + "While handling return value 'remaining'" + ], + "start_col": 1, + "start_line": 4 + } + }, + "1223": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.allowance_encode_return" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 48, + "end_line": 5, + "input_file": { + "filename": "autogen/starknet/arg_processor/7f5020813ab1b343debcc3300c737c940210993d2fe101134705622a3d36fb93.cairo" + }, + "parent_location": [ + { + "end_col": 25, + "end_line": 58, + "input_file": { + "filename": "./tests/fixtures/ERC20.cairo" + }, + "parent_location": [ + { + "end_col": 36, + "end_line": 11, + "input_file": { + "filename": "autogen/starknet/external/return/allowance/1cb7294a6f22e622b9ef012b5a4d2faa6b7630d9f34fee6abcca00d90029b02c.cairo" + }, + "parent_location": [ + { + "end_col": 15, + "end_line": 56, + "input_file": { + "filename": "./tests/fixtures/ERC20.cairo" + }, + "start_col": 6, + "start_line": 56 + }, + "While handling return value of" + ], + "start_col": 18, + "start_line": 11 + }, + "While expanding the reference '__return_value_ptr' in:" + ], + "start_col": 7, + "start_line": 58 + }, + "While handling return value 'remaining'" + ], + "start_col": 26, + "start_line": 5 + } + }, + "1225": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.allowance_encode_return" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 109, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/return/allowance/1cb7294a6f22e622b9ef012b5a4d2faa6b7630d9f34fee6abcca00d90029b02c.cairo" + }, + "parent_location": [ + { + "end_col": 15, + "end_line": 56, + "input_file": { + "filename": "./tests/fixtures/ERC20.cairo" + }, + "parent_location": [ + { + "end_col": 40, + "end_line": 10, + "input_file": { + "filename": "autogen/starknet/external/return/allowance/1cb7294a6f22e622b9ef012b5a4d2faa6b7630d9f34fee6abcca00d90029b02c.cairo" + }, + "parent_location": [ + { + "end_col": 15, + "end_line": 56, + "input_file": { + "filename": "./tests/fixtures/ERC20.cairo" + }, + "start_col": 6, + "start_line": 56 + }, + "While handling return value of" + ], + "start_col": 25, + "start_line": 10 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 6, + "start_line": 56 + }, + "While handling return value of" + ], + "start_col": 94, + "start_line": 1 + } + }, + "1226": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.allowance_encode_return" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 63, + "end_line": 11, + "input_file": { + "filename": "autogen/starknet/external/return/allowance/1cb7294a6f22e622b9ef012b5a4d2faa6b7630d9f34fee6abcca00d90029b02c.cairo" + }, + "parent_location": [ + { + "end_col": 15, + "end_line": 56, + "input_file": { + "filename": "./tests/fixtures/ERC20.cairo" + }, + "start_col": 6, + "start_line": 56 + }, + "While handling return value of" + ], + "start_col": 18, + "start_line": 11 + } + }, + "1227": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.allowance_encode_return" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 35, + "end_line": 5, + "input_file": { + "filename": "autogen/starknet/external/return/allowance/1cb7294a6f22e622b9ef012b5a4d2faa6b7630d9f34fee6abcca00d90029b02c.cairo" + }, + "parent_location": [ + { + "end_col": 15, + "end_line": 56, + "input_file": { + "filename": "./tests/fixtures/ERC20.cairo" + }, + "parent_location": [ + { + "end_col": 38, + "end_line": 12, + "input_file": { + "filename": "autogen/starknet/external/return/allowance/1cb7294a6f22e622b9ef012b5a4d2faa6b7630d9f34fee6abcca00d90029b02c.cairo" + }, + "parent_location": [ + { + "end_col": 15, + "end_line": 56, + "input_file": { + "filename": "./tests/fixtures/ERC20.cairo" + }, + "start_col": 6, + "start_line": 56 + }, + "While handling return value of" + ], + "start_col": 14, + "start_line": 12 + }, + "While expanding the reference '__return_value_ptr_start' in:" + ], + "start_col": 6, + "start_line": 56 + }, + "While handling return value of" + ], + "start_col": 11, + "start_line": 5 + } + }, + "1228": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.allowance_encode_return" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 40, + "end_line": 12, + "input_file": { + "filename": "autogen/starknet/external/return/allowance/1cb7294a6f22e622b9ef012b5a4d2faa6b7630d9f34fee6abcca00d90029b02c.cairo" + }, + "parent_location": [ + { + "end_col": 15, + "end_line": 56, + "input_file": { + "filename": "./tests/fixtures/ERC20.cairo" + }, + "start_col": 6, + "start_line": 56 + }, + "While handling return value of" + ], + "start_col": 5, + "start_line": 9 + } + }, + "1229": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.allowance" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 40, + "end_line": 2, + "input_file": { + "filename": "autogen/starknet/arg_processor/144fa44c78b9ff9755794c84d3169b8c097256057e7a09154cdae1a978b57fed.cairo" + }, + "parent_location": [ + { + "end_col": 31, + "end_line": 57, + "input_file": { + "filename": "./tests/fixtures/ERC20.cairo" + }, + "parent_location": [ + { + "end_col": 45, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/arg_processor/c31620b02d4d706f0542c989b2aadc01b0981d1f6a5933a8fe4937ace3d70d92.cairo" + }, + "parent_location": [ + { + "end_col": 15, + "end_line": 56, + "input_file": { + "filename": "./tests/fixtures/ERC20.cairo" + }, + "parent_location": [ + { + "end_col": 57, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/arg_processor/01cba52f8515996bb9d7070bde81ff39281d096d7024a558efcba6e1fd2402cf.cairo" + }, + "parent_location": [ + { + "end_col": 15, + "end_line": 56, + "input_file": { + "filename": "./tests/fixtures/ERC20.cairo" + }, + "start_col": 6, + "start_line": 56 + }, + "While handling calldata of" + ], + "start_col": 35, + "start_line": 1 + }, + "While expanding the reference '__calldata_actual_size' in:" + ], + "start_col": 6, + "start_line": 56 + }, + "While handling calldata of" + ], + "start_col": 31, + "start_line": 1 + }, + "While expanding the reference '__calldata_ptr' in:" + ], + "start_col": 18, + "start_line": 57 + }, + "While handling calldata argument 'spender'" + ], + "start_col": 22, + "start_line": 2 + } + }, + "1231": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.allowance" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 58, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/arg_processor/01cba52f8515996bb9d7070bde81ff39281d096d7024a558efcba6e1fd2402cf.cairo" + }, + "parent_location": [ + { + "end_col": 15, + "end_line": 56, + "input_file": { + "filename": "./tests/fixtures/ERC20.cairo" + }, + "start_col": 6, + "start_line": 56 + }, + "While handling calldata of" + ], + "start_col": 1, + "start_line": 1 + } + }, + "1232": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.allowance" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 64, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/allowance/b2c52ca2d2a8fc8791a983086d8716c5eacd0c3d62934914d2286f84b98ff4cb.cairo" + }, + "parent_location": [ + { + "end_col": 34, + "end_line": 56, + "input_file": { + "filename": "./tests/fixtures/ERC20.cairo" + }, + "parent_location": [ + { + "end_col": 55, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/allowance/b9fcb8ecdea98769098e96bc325b933a3fc26ae3a72192935855b4e6bcd89176.cairo" + }, + "parent_location": [ + { + "end_col": 15, + "end_line": 56, + "input_file": { + "filename": "./tests/fixtures/ERC20.cairo" + }, + "start_col": 6, + "start_line": 56 + }, + "While constructing the external wrapper for:" + ], + "start_col": 44, + "start_line": 1 + }, + "While expanding the reference 'syscall_ptr' in:" + ], + "start_col": 16, + "start_line": 56 + }, + "While constructing the external wrapper for:" + ], + "start_col": 19, + "start_line": 1 + } + }, + "1233": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.allowance" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 110, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/allowance/9684a85e93c782014ca14293edea4eb2502039a5a7b6538ecd39c56faaf12529.cairo" + }, + "parent_location": [ + { + "end_col": 62, + "end_line": 56, + "input_file": { + "filename": "./tests/fixtures/ERC20.cairo" + }, + "parent_location": [ + { + "end_col": 82, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/allowance/b9fcb8ecdea98769098e96bc325b933a3fc26ae3a72192935855b4e6bcd89176.cairo" + }, + "parent_location": [ + { + "end_col": 15, + "end_line": 56, + "input_file": { + "filename": "./tests/fixtures/ERC20.cairo" + }, + "start_col": 6, + "start_line": 56 + }, + "While constructing the external wrapper for:" + ], + "start_col": 70, + "start_line": 1 + }, + "While expanding the reference 'pedersen_ptr' in:" + ], + "start_col": 36, + "start_line": 56 + }, + "While constructing the external wrapper for:" + ], + "start_col": 20, + "start_line": 1 + } + }, + "1234": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.allowance" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 67, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/allowance/741ea357d6336b0bed7bf0472425acd0311d543883b803388880e60a232040c7.cairo" + }, + "parent_location": [ + { + "end_col": 79, + "end_line": 56, + "input_file": { + "filename": "./tests/fixtures/ERC20.cairo" + }, + "parent_location": [ + { + "end_col": 115, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/allowance/b9fcb8ecdea98769098e96bc325b933a3fc26ae3a72192935855b4e6bcd89176.cairo" + }, + "parent_location": [ + { + "end_col": 15, + "end_line": 56, + "input_file": { + "filename": "./tests/fixtures/ERC20.cairo" + }, + "start_col": 6, + "start_line": 56 + }, + "While constructing the external wrapper for:" + ], + "start_col": 100, + "start_line": 1 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 64, + "start_line": 56 + }, + "While constructing the external wrapper for:" + ], + "start_col": 23, + "start_line": 1 + } + }, + "1235": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.allowance" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 44, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/arg_processor/f6a4d9ae897caf37cefd18f7c8da7eee73157818279359aadee282f0fe59cdbc.cairo" + }, + "parent_location": [ + { + "end_col": 16, + "end_line": 57, + "input_file": { + "filename": "./tests/fixtures/ERC20.cairo" + }, + "parent_location": [ + { + "end_col": 143, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/allowance/b9fcb8ecdea98769098e96bc325b933a3fc26ae3a72192935855b4e6bcd89176.cairo" + }, + "parent_location": [ + { + "end_col": 15, + "end_line": 56, + "input_file": { + "filename": "./tests/fixtures/ERC20.cairo" + }, + "start_col": 6, + "start_line": 56 + }, + "While constructing the external wrapper for:" + ], + "start_col": 123, + "start_line": 1 + }, + "While expanding the reference '__calldata_arg_owner' in:" + ], + "start_col": 5, + "start_line": 57 + }, + "While handling calldata argument 'owner'" + ], + "start_col": 28, + "start_line": 1 + } + }, + "1236": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.allowance" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 46, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/arg_processor/144fa44c78b9ff9755794c84d3169b8c097256057e7a09154cdae1a978b57fed.cairo" + }, + "parent_location": [ + { + "end_col": 31, + "end_line": 57, + "input_file": { + "filename": "./tests/fixtures/ERC20.cairo" + }, + "parent_location": [ + { + "end_col": 175, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/allowance/b9fcb8ecdea98769098e96bc325b933a3fc26ae3a72192935855b4e6bcd89176.cairo" + }, + "parent_location": [ + { + "end_col": 15, + "end_line": 56, + "input_file": { + "filename": "./tests/fixtures/ERC20.cairo" + }, + "start_col": 6, + "start_line": 56 + }, + "While constructing the external wrapper for:" + ], + "start_col": 153, + "start_line": 1 + }, + "While expanding the reference '__calldata_arg_spender' in:" + ], + "start_col": 18, + "start_line": 57 + }, + "While handling calldata argument 'spender'" + ], + "start_col": 30, + "start_line": 1 + } + }, + "1237": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.allowance" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 15, + "end_line": 56, + "input_file": { + "filename": "./tests/fixtures/ERC20.cairo" + }, + "start_col": 6, + "start_line": 56 + } + }, + "1239": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.allowance" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 115, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/allowance/b9fcb8ecdea98769098e96bc325b933a3fc26ae3a72192935855b4e6bcd89176.cairo" + }, + "parent_location": [ + { + "end_col": 15, + "end_line": 56, + "input_file": { + "filename": "./tests/fixtures/ERC20.cairo" + }, + "parent_location": [ + { + "end_col": 98, + "end_line": 2, + "input_file": { + "filename": "autogen/starknet/external/allowance/b9fcb8ecdea98769098e96bc325b933a3fc26ae3a72192935855b4e6bcd89176.cairo" + }, + "parent_location": [ + { + "end_col": 15, + "end_line": 56, + "input_file": { + "filename": "./tests/fixtures/ERC20.cairo" + }, + "start_col": 6, + "start_line": 56 + }, + "While constructing the external wrapper for:" + ], + "start_col": 83, + "start_line": 2 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 6, + "start_line": 56 + }, + "While constructing the external wrapper for:" + ], + "start_col": 100, + "start_line": 1 + } + }, + "1240": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.allowance" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 99, + "end_line": 2, + "input_file": { + "filename": "autogen/starknet/external/allowance/b9fcb8ecdea98769098e96bc325b933a3fc26ae3a72192935855b4e6bcd89176.cairo" + }, + "parent_location": [ + { + "end_col": 15, + "end_line": 56, + "input_file": { + "filename": "./tests/fixtures/ERC20.cairo" + }, + "start_col": 6, + "start_line": 56 + }, + "While constructing the external wrapper for:" + ], + "start_col": 48, + "start_line": 2 + } + }, + "1242": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.allowance" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 55, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/allowance/b9fcb8ecdea98769098e96bc325b933a3fc26ae3a72192935855b4e6bcd89176.cairo" + }, + "parent_location": [ + { + "end_col": 15, + "end_line": 56, + "input_file": { + "filename": "./tests/fixtures/ERC20.cairo" + }, + "parent_location": [ + { + "end_col": 20, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/allowance/da17921a4e81c09e730800bbf23bfdbe5e9e6bfaedc59d80fbf62087fa43c27d.cairo" + }, + "parent_location": [ + { + "end_col": 15, + "end_line": 56, + "input_file": { + "filename": "./tests/fixtures/ERC20.cairo" + }, + "start_col": 6, + "start_line": 56 + }, + "While constructing the external wrapper for:" + ], + "start_col": 9, + "start_line": 1 + }, + "While expanding the reference 'syscall_ptr' in:" + ], + "start_col": 6, + "start_line": 56 + }, + "While constructing the external wrapper for:" + ], + "start_col": 44, + "start_line": 1 + } + }, + "1243": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.allowance" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 82, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/allowance/b9fcb8ecdea98769098e96bc325b933a3fc26ae3a72192935855b4e6bcd89176.cairo" + }, + "parent_location": [ + { + "end_col": 15, + "end_line": 56, + "input_file": { + "filename": "./tests/fixtures/ERC20.cairo" + }, + "parent_location": [ + { + "end_col": 33, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/allowance/da17921a4e81c09e730800bbf23bfdbe5e9e6bfaedc59d80fbf62087fa43c27d.cairo" + }, + "parent_location": [ + { + "end_col": 15, + "end_line": 56, + "input_file": { + "filename": "./tests/fixtures/ERC20.cairo" + }, + "start_col": 6, + "start_line": 56 + }, + "While constructing the external wrapper for:" + ], + "start_col": 21, + "start_line": 1 + }, + "While expanding the reference 'pedersen_ptr' in:" + ], + "start_col": 6, + "start_line": 56 + }, + "While constructing the external wrapper for:" + ], + "start_col": 70, + "start_line": 1 + } + }, + "1244": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.allowance" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 21, + "end_line": 2, + "input_file": { + "filename": "autogen/starknet/external/allowance/b9fcb8ecdea98769098e96bc325b933a3fc26ae3a72192935855b4e6bcd89176.cairo" + }, + "parent_location": [ + { + "end_col": 15, + "end_line": 56, + "input_file": { + "filename": "./tests/fixtures/ERC20.cairo" + }, + "parent_location": [ + { + "end_col": 49, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/allowance/da17921a4e81c09e730800bbf23bfdbe5e9e6bfaedc59d80fbf62087fa43c27d.cairo" + }, + "parent_location": [ + { + "end_col": 15, + "end_line": 56, + "input_file": { + "filename": "./tests/fixtures/ERC20.cairo" + }, + "start_col": 6, + "start_line": 56 + }, + "While constructing the external wrapper for:" + ], + "start_col": 34, + "start_line": 1 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 6, + "start_line": 56 + }, + "While constructing the external wrapper for:" + ], + "start_col": 6, + "start_line": 2 + } + }, + "1245": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.allowance" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 35, + "end_line": 2, + "input_file": { + "filename": "autogen/starknet/external/allowance/b9fcb8ecdea98769098e96bc325b933a3fc26ae3a72192935855b4e6bcd89176.cairo" + }, + "parent_location": [ + { + "end_col": 15, + "end_line": 56, + "input_file": { + "filename": "./tests/fixtures/ERC20.cairo" + }, + "parent_location": [ + { + "end_col": 62, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/allowance/da17921a4e81c09e730800bbf23bfdbe5e9e6bfaedc59d80fbf62087fa43c27d.cairo" + }, + "parent_location": [ + { + "end_col": 15, + "end_line": 56, + "input_file": { + "filename": "./tests/fixtures/ERC20.cairo" + }, + "start_col": 6, + "start_line": 56 + }, + "While constructing the external wrapper for:" + ], + "start_col": 50, + "start_line": 1 + }, + "While expanding the reference 'retdata_size' in:" + ], + "start_col": 6, + "start_line": 56 + }, + "While constructing the external wrapper for:" + ], + "start_col": 23, + "start_line": 2 + } + }, + "1246": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.allowance" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 44, + "end_line": 2, + "input_file": { + "filename": "autogen/starknet/external/allowance/b9fcb8ecdea98769098e96bc325b933a3fc26ae3a72192935855b4e6bcd89176.cairo" + }, + "parent_location": [ + { + "end_col": 15, + "end_line": 56, + "input_file": { + "filename": "./tests/fixtures/ERC20.cairo" + }, + "parent_location": [ + { + "end_col": 70, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/allowance/da17921a4e81c09e730800bbf23bfdbe5e9e6bfaedc59d80fbf62087fa43c27d.cairo" + }, + "parent_location": [ + { + "end_col": 15, + "end_line": 56, + "input_file": { + "filename": "./tests/fixtures/ERC20.cairo" + }, + "start_col": 6, + "start_line": 56 + }, + "While constructing the external wrapper for:" + ], + "start_col": 63, + "start_line": 1 + }, + "While expanding the reference 'retdata' in:" + ], + "start_col": 6, + "start_line": 56 + }, + "While constructing the external wrapper for:" + ], + "start_col": 37, + "start_line": 2 + } + }, + "1247": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.allowance" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 72, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/allowance/da17921a4e81c09e730800bbf23bfdbe5e9e6bfaedc59d80fbf62087fa43c27d.cairo" + }, + "parent_location": [ + { + "end_col": 15, + "end_line": 56, + "input_file": { + "filename": "./tests/fixtures/ERC20.cairo" + }, + "start_col": 6, + "start_line": 56 + }, + "While constructing the external wrapper for:" + ], + "start_col": 1, + "start_line": 1 + } + }, + "1248": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.mint" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 29, + "end_line": 68, + "input_file": { + "filename": "./tests/fixtures/ERC20.cairo" + }, + "parent_location": [ + { + "end_col": 34, + "end_line": 181, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/3.9.13/envs/kakarot/lib/python3.9/site-packages/openzeppelin/token/erc20/library.cairo" + }, + "parent_location": [ + { + "end_col": 35, + "end_line": 71, + "input_file": { + "filename": "./tests/fixtures/ERC20.cairo" + }, + "start_col": 12, + "start_line": 71 + }, + "While trying to retrieve the implicit argument 'syscall_ptr' in:" + ], + "start_col": 16, + "start_line": 181 + }, + "While expanding the reference 'syscall_ptr' in:" + ], + "start_col": 11, + "start_line": 68 + } + }, + "1249": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.mint" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 57, + "end_line": 68, + "input_file": { + "filename": "./tests/fixtures/ERC20.cairo" + }, + "parent_location": [ + { + "end_col": 62, + "end_line": 181, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/3.9.13/envs/kakarot/lib/python3.9/site-packages/openzeppelin/token/erc20/library.cairo" + }, + "parent_location": [ + { + "end_col": 35, + "end_line": 71, + "input_file": { + "filename": "./tests/fixtures/ERC20.cairo" + }, + "start_col": 12, + "start_line": 71 + }, + "While trying to retrieve the implicit argument 'pedersen_ptr' in:" + ], + "start_col": 36, + "start_line": 181 + }, + "While expanding the reference 'pedersen_ptr' in:" + ], + "start_col": 31, + "start_line": 68 + } + }, + "1250": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.mint" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 74, + "end_line": 68, + "input_file": { + "filename": "./tests/fixtures/ERC20.cairo" + }, + "parent_location": [ + { + "end_col": 79, + "end_line": 181, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/3.9.13/envs/kakarot/lib/python3.9/site-packages/openzeppelin/token/erc20/library.cairo" + }, + "parent_location": [ + { + "end_col": 35, + "end_line": 71, + "input_file": { + "filename": "./tests/fixtures/ERC20.cairo" + }, + "start_col": 12, + "start_line": 71 + }, + "While trying to retrieve the implicit argument 'range_check_ptr' in:" + ], + "start_col": 64, + "start_line": 181 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 59, + "start_line": 68 + } + }, + "1251": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.mint" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 13, + "end_line": 69, + "input_file": { + "filename": "./tests/fixtures/ERC20.cairo" + }, + "parent_location": [ + { + "end_col": 26, + "end_line": 71, + "input_file": { + "filename": "./tests/fixtures/ERC20.cairo" + }, + "start_col": 24, + "start_line": 71 + }, + "While expanding the reference 'to' in:" + ], + "start_col": 5, + "start_line": 69 + } + }, + "1252": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.mint" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 30, + "end_line": 69, + "input_file": { + "filename": "./tests/fixtures/ERC20.cairo" + }, + "parent_location": [ + { + "end_col": 34, + "end_line": 71, + "input_file": { + "filename": "./tests/fixtures/ERC20.cairo" + }, + "start_col": 28, + "start_line": 71 + }, + "While expanding the reference 'amount' in:" + ], + "start_col": 15, + "start_line": 69 + } + }, + "1253": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.mint" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 30, + "end_line": 69, + "input_file": { + "filename": "./tests/fixtures/ERC20.cairo" + }, + "parent_location": [ + { + "end_col": 34, + "end_line": 71, + "input_file": { + "filename": "./tests/fixtures/ERC20.cairo" + }, + "start_col": 28, + "start_line": 71 + }, + "While expanding the reference 'amount' in:" + ], + "start_col": 15, + "start_line": 69 + } + }, + "1254": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.mint" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 35, + "end_line": 71, + "input_file": { + "filename": "./tests/fixtures/ERC20.cairo" + }, + "start_col": 12, + "start_line": 71 + } + }, + "1256": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.mint" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 36, + "end_line": 71, + "input_file": { + "filename": "./tests/fixtures/ERC20.cairo" + }, + "start_col": 5, + "start_line": 71 + } + }, + "1257": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.mint" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 40, + "end_line": 3, + "input_file": { + "filename": "autogen/starknet/arg_processor/98feb0f4c88833fb7f82ddd66d06f84d8ffb64f877c6f94e214b61af32d58c29.cairo" + }, + "parent_location": [ + { + "end_col": 30, + "end_line": 69, + "input_file": { + "filename": "./tests/fixtures/ERC20.cairo" + }, + "parent_location": [ + { + "end_col": 45, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/arg_processor/c31620b02d4d706f0542c989b2aadc01b0981d1f6a5933a8fe4937ace3d70d92.cairo" + }, + "parent_location": [ + { + "end_col": 10, + "end_line": 68, + "input_file": { + "filename": "./tests/fixtures/ERC20.cairo" + }, + "parent_location": [ + { + "end_col": 57, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/arg_processor/01cba52f8515996bb9d7070bde81ff39281d096d7024a558efcba6e1fd2402cf.cairo" + }, + "parent_location": [ + { + "end_col": 10, + "end_line": 68, + "input_file": { + "filename": "./tests/fixtures/ERC20.cairo" + }, + "start_col": 6, + "start_line": 68 + }, + "While handling calldata of" + ], + "start_col": 35, + "start_line": 1 + }, + "While expanding the reference '__calldata_actual_size' in:" + ], + "start_col": 6, + "start_line": 68 + }, + "While handling calldata of" + ], + "start_col": 31, + "start_line": 1 + }, + "While expanding the reference '__calldata_ptr' in:" + ], + "start_col": 15, + "start_line": 69 + }, + "While handling calldata argument 'amount'" + ], + "start_col": 22, + "start_line": 3 + } + }, + "1259": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.mint" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 58, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/arg_processor/01cba52f8515996bb9d7070bde81ff39281d096d7024a558efcba6e1fd2402cf.cairo" + }, + "parent_location": [ + { + "end_col": 10, + "end_line": 68, + "input_file": { + "filename": "./tests/fixtures/ERC20.cairo" + }, + "start_col": 6, + "start_line": 68 + }, + "While handling calldata of" + ], + "start_col": 1, + "start_line": 1 + } + }, + "1260": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.mint" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 64, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/mint/b2c52ca2d2a8fc8791a983086d8716c5eacd0c3d62934914d2286f84b98ff4cb.cairo" + }, + "parent_location": [ + { + "end_col": 29, + "end_line": 68, + "input_file": { + "filename": "./tests/fixtures/ERC20.cairo" + }, + "parent_location": [ + { + "end_col": 55, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/mint/f0817dfa2c98850e1eb19517a614f53ca2fc862d58ee9b66a55ba584a8fd9ccc.cairo" + }, + "parent_location": [ + { + "end_col": 10, + "end_line": 68, + "input_file": { + "filename": "./tests/fixtures/ERC20.cairo" + }, + "start_col": 6, + "start_line": 68 + }, + "While constructing the external wrapper for:" + ], + "start_col": 44, + "start_line": 1 + }, + "While expanding the reference 'syscall_ptr' in:" + ], + "start_col": 11, + "start_line": 68 + }, + "While constructing the external wrapper for:" + ], + "start_col": 19, + "start_line": 1 + } + }, + "1261": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.mint" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 110, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/mint/9684a85e93c782014ca14293edea4eb2502039a5a7b6538ecd39c56faaf12529.cairo" + }, + "parent_location": [ + { + "end_col": 57, + "end_line": 68, + "input_file": { + "filename": "./tests/fixtures/ERC20.cairo" + }, + "parent_location": [ + { + "end_col": 82, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/mint/f0817dfa2c98850e1eb19517a614f53ca2fc862d58ee9b66a55ba584a8fd9ccc.cairo" + }, + "parent_location": [ + { + "end_col": 10, + "end_line": 68, + "input_file": { + "filename": "./tests/fixtures/ERC20.cairo" + }, + "start_col": 6, + "start_line": 68 + }, + "While constructing the external wrapper for:" + ], + "start_col": 70, + "start_line": 1 + }, + "While expanding the reference 'pedersen_ptr' in:" + ], + "start_col": 31, + "start_line": 68 + }, + "While constructing the external wrapper for:" + ], + "start_col": 20, + "start_line": 1 + } + }, + "1262": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.mint" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 67, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/mint/741ea357d6336b0bed7bf0472425acd0311d543883b803388880e60a232040c7.cairo" + }, + "parent_location": [ + { + "end_col": 74, + "end_line": 68, + "input_file": { + "filename": "./tests/fixtures/ERC20.cairo" + }, + "parent_location": [ + { + "end_col": 115, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/mint/f0817dfa2c98850e1eb19517a614f53ca2fc862d58ee9b66a55ba584a8fd9ccc.cairo" + }, + "parent_location": [ + { + "end_col": 10, + "end_line": 68, + "input_file": { + "filename": "./tests/fixtures/ERC20.cairo" + }, + "start_col": 6, + "start_line": 68 + }, + "While constructing the external wrapper for:" + ], + "start_col": 100, + "start_line": 1 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 59, + "start_line": 68 + }, + "While constructing the external wrapper for:" + ], + "start_col": 23, + "start_line": 1 + } + }, + "1263": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.mint" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 41, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/arg_processor/dceaabc265216c0ff87c509d90446554648ec4d692c521cda952464d1fc22972.cairo" + }, + "parent_location": [ + { + "end_col": 13, + "end_line": 69, + "input_file": { + "filename": "./tests/fixtures/ERC20.cairo" + }, + "parent_location": [ + { + "end_col": 137, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/mint/f0817dfa2c98850e1eb19517a614f53ca2fc862d58ee9b66a55ba584a8fd9ccc.cairo" + }, + "parent_location": [ + { + "end_col": 10, + "end_line": 68, + "input_file": { + "filename": "./tests/fixtures/ERC20.cairo" + }, + "start_col": 6, + "start_line": 68 + }, + "While constructing the external wrapper for:" + ], + "start_col": 120, + "start_line": 1 + }, + "While expanding the reference '__calldata_arg_to' in:" + ], + "start_col": 5, + "start_line": 69 + }, + "While handling calldata argument 'to'" + ], + "start_col": 25, + "start_line": 1 + } + }, + "1264": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.mint" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 67, + "end_line": 2, + "input_file": { + "filename": "autogen/starknet/arg_processor/98feb0f4c88833fb7f82ddd66d06f84d8ffb64f877c6f94e214b61af32d58c29.cairo" + }, + "parent_location": [ + { + "end_col": 30, + "end_line": 69, + "input_file": { + "filename": "./tests/fixtures/ERC20.cairo" + }, + "parent_location": [ + { + "end_col": 167, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/mint/f0817dfa2c98850e1eb19517a614f53ca2fc862d58ee9b66a55ba584a8fd9ccc.cairo" + }, + "parent_location": [ + { + "end_col": 10, + "end_line": 68, + "input_file": { + "filename": "./tests/fixtures/ERC20.cairo" + }, + "start_col": 6, + "start_line": 68 + }, + "While constructing the external wrapper for:" + ], + "start_col": 146, + "start_line": 1 + }, + "While expanding the reference '__calldata_arg_amount' in:" + ], + "start_col": 15, + "start_line": 69 + }, + "While handling calldata argument 'amount'" + ], + "start_col": 29, + "start_line": 1 + } + }, + "1265": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.mint" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 67, + "end_line": 2, + "input_file": { + "filename": "autogen/starknet/arg_processor/98feb0f4c88833fb7f82ddd66d06f84d8ffb64f877c6f94e214b61af32d58c29.cairo" + }, + "parent_location": [ + { + "end_col": 30, + "end_line": 69, + "input_file": { + "filename": "./tests/fixtures/ERC20.cairo" + }, + "parent_location": [ + { + "end_col": 167, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/mint/f0817dfa2c98850e1eb19517a614f53ca2fc862d58ee9b66a55ba584a8fd9ccc.cairo" + }, + "parent_location": [ + { + "end_col": 10, + "end_line": 68, + "input_file": { + "filename": "./tests/fixtures/ERC20.cairo" + }, + "start_col": 6, + "start_line": 68 + }, + "While constructing the external wrapper for:" + ], + "start_col": 146, + "start_line": 1 + }, + "While expanding the reference '__calldata_arg_amount' in:" + ], + "start_col": 15, + "start_line": 69 + }, + "While handling calldata argument 'amount'" + ], + "start_col": 29, + "start_line": 1 + } + }, + "1266": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.mint" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 10, + "end_line": 68, + "input_file": { + "filename": "./tests/fixtures/ERC20.cairo" + }, + "start_col": 6, + "start_line": 68 + } + }, + "1268": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.mint" + ], + "flow_tracking_data": null, + "hints": [ + { + "location": { + "end_col": 34, + "end_line": 2, + "input_file": { + "filename": "autogen/starknet/external/mint/f0817dfa2c98850e1eb19517a614f53ca2fc862d58ee9b66a55ba584a8fd9ccc.cairo" + }, + "parent_location": [ + { + "end_col": 10, + "end_line": 68, + "input_file": { + "filename": "./tests/fixtures/ERC20.cairo" + }, + "start_col": 6, + "start_line": 68 + }, + "While constructing the external wrapper for:" + ], + "start_col": 1, + "start_line": 2 + }, + "n_prefix_newlines": 0 + } + ], + "inst": { + "end_col": 24, + "end_line": 3, + "input_file": { + "filename": "autogen/starknet/external/mint/f0817dfa2c98850e1eb19517a614f53ca2fc862d58ee9b66a55ba584a8fd9ccc.cairo" + }, + "parent_location": [ + { + "end_col": 10, + "end_line": 68, + "input_file": { + "filename": "./tests/fixtures/ERC20.cairo" + }, + "start_col": 6, + "start_line": 68 + }, + "While constructing the external wrapper for:" + ], + "start_col": 1, + "start_line": 3 + } + }, + "1270": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.mint" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 55, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/mint/f0817dfa2c98850e1eb19517a614f53ca2fc862d58ee9b66a55ba584a8fd9ccc.cairo" + }, + "parent_location": [ + { + "end_col": 10, + "end_line": 68, + "input_file": { + "filename": "./tests/fixtures/ERC20.cairo" + }, + "parent_location": [ + { + "end_col": 20, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/mint/da17921a4e81c09e730800bbf23bfdbe5e9e6bfaedc59d80fbf62087fa43c27d.cairo" + }, + "parent_location": [ + { + "end_col": 10, + "end_line": 68, + "input_file": { + "filename": "./tests/fixtures/ERC20.cairo" + }, + "start_col": 6, + "start_line": 68 + }, + "While constructing the external wrapper for:" + ], + "start_col": 9, + "start_line": 1 + }, + "While expanding the reference 'syscall_ptr' in:" + ], + "start_col": 6, + "start_line": 68 + }, + "While constructing the external wrapper for:" + ], + "start_col": 44, + "start_line": 1 + } + }, + "1271": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.mint" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 82, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/mint/f0817dfa2c98850e1eb19517a614f53ca2fc862d58ee9b66a55ba584a8fd9ccc.cairo" + }, + "parent_location": [ + { + "end_col": 10, + "end_line": 68, + "input_file": { + "filename": "./tests/fixtures/ERC20.cairo" + }, + "parent_location": [ + { + "end_col": 33, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/mint/da17921a4e81c09e730800bbf23bfdbe5e9e6bfaedc59d80fbf62087fa43c27d.cairo" + }, + "parent_location": [ + { + "end_col": 10, + "end_line": 68, + "input_file": { + "filename": "./tests/fixtures/ERC20.cairo" + }, + "start_col": 6, + "start_line": 68 + }, + "While constructing the external wrapper for:" + ], + "start_col": 21, + "start_line": 1 + }, + "While expanding the reference 'pedersen_ptr' in:" + ], + "start_col": 6, + "start_line": 68 + }, + "While constructing the external wrapper for:" + ], + "start_col": 70, + "start_line": 1 + } + }, + "1272": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.mint" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 115, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/mint/f0817dfa2c98850e1eb19517a614f53ca2fc862d58ee9b66a55ba584a8fd9ccc.cairo" + }, + "parent_location": [ + { + "end_col": 10, + "end_line": 68, + "input_file": { + "filename": "./tests/fixtures/ERC20.cairo" + }, + "parent_location": [ + { + "end_col": 49, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/mint/da17921a4e81c09e730800bbf23bfdbe5e9e6bfaedc59d80fbf62087fa43c27d.cairo" + }, + "parent_location": [ + { + "end_col": 10, + "end_line": 68, + "input_file": { + "filename": "./tests/fixtures/ERC20.cairo" + }, + "start_col": 6, + "start_line": 68 + }, + "While constructing the external wrapper for:" + ], + "start_col": 34, + "start_line": 1 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 6, + "start_line": 68 + }, + "While constructing the external wrapper for:" + ], + "start_col": 100, + "start_line": 1 + } + }, + "1273": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.mint" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 21, + "end_line": 4, + "input_file": { + "filename": "autogen/starknet/external/mint/f0817dfa2c98850e1eb19517a614f53ca2fc862d58ee9b66a55ba584a8fd9ccc.cairo" + }, + "parent_location": [ + { + "end_col": 10, + "end_line": 68, + "input_file": { + "filename": "./tests/fixtures/ERC20.cairo" + }, + "parent_location": [ + { + "end_col": 62, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/mint/da17921a4e81c09e730800bbf23bfdbe5e9e6bfaedc59d80fbf62087fa43c27d.cairo" + }, + "parent_location": [ + { + "end_col": 10, + "end_line": 68, + "input_file": { + "filename": "./tests/fixtures/ERC20.cairo" + }, + "start_col": 6, + "start_line": 68 + }, + "While constructing the external wrapper for:" + ], + "start_col": 50, + "start_line": 1 + }, + "While expanding the reference 'retdata_size' in:" + ], + "start_col": 6, + "start_line": 68 + }, + "While constructing the external wrapper for:" + ], + "start_col": 20, + "start_line": 4 + } + }, + "1275": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.mint" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 16, + "end_line": 3, + "input_file": { + "filename": "autogen/starknet/external/mint/f0817dfa2c98850e1eb19517a614f53ca2fc862d58ee9b66a55ba584a8fd9ccc.cairo" + }, + "parent_location": [ + { + "end_col": 10, + "end_line": 68, + "input_file": { + "filename": "./tests/fixtures/ERC20.cairo" + }, + "parent_location": [ + { + "end_col": 70, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/mint/da17921a4e81c09e730800bbf23bfdbe5e9e6bfaedc59d80fbf62087fa43c27d.cairo" + }, + "parent_location": [ + { + "end_col": 10, + "end_line": 68, + "input_file": { + "filename": "./tests/fixtures/ERC20.cairo" + }, + "start_col": 6, + "start_line": 68 + }, + "While constructing the external wrapper for:" + ], + "start_col": 63, + "start_line": 1 + }, + "While expanding the reference 'retdata' in:" + ], + "start_col": 6, + "start_line": 68 + }, + "While constructing the external wrapper for:" + ], + "start_col": 9, + "start_line": 3 + } + }, + "1276": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.mint" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 72, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/mint/da17921a4e81c09e730800bbf23bfdbe5e9e6bfaedc59d80fbf62087fa43c27d.cairo" + }, + "parent_location": [ + { + "end_col": 10, + "end_line": 68, + "input_file": { + "filename": "./tests/fixtures/ERC20.cairo" + }, + "start_col": 6, + "start_line": 68 + }, + "While constructing the external wrapper for:" + ], + "start_col": 1, + "start_line": 1 + } + }, + "1277": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.transfer" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 33, + "end_line": 75, + "input_file": { + "filename": "./tests/fixtures/ERC20.cairo" + }, + "parent_location": [ + { + "end_col": 37, + "end_line": 110, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/3.9.13/envs/kakarot/lib/python3.9/site-packages/openzeppelin/token/erc20/library.cairo" + }, + "parent_location": [ + { + "end_col": 45, + "end_line": 78, + "input_file": { + "filename": "./tests/fixtures/ERC20.cairo" + }, + "start_col": 12, + "start_line": 78 + }, + "While trying to retrieve the implicit argument 'syscall_ptr' in:" + ], + "start_col": 19, + "start_line": 110 + }, + "While expanding the reference 'syscall_ptr' in:" + ], + "start_col": 15, + "start_line": 75 + } + }, + "1278": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.transfer" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 61, + "end_line": 75, + "input_file": { + "filename": "./tests/fixtures/ERC20.cairo" + }, + "parent_location": [ + { + "end_col": 65, + "end_line": 110, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/3.9.13/envs/kakarot/lib/python3.9/site-packages/openzeppelin/token/erc20/library.cairo" + }, + "parent_location": [ + { + "end_col": 45, + "end_line": 78, + "input_file": { + "filename": "./tests/fixtures/ERC20.cairo" + }, + "start_col": 12, + "start_line": 78 + }, + "While trying to retrieve the implicit argument 'pedersen_ptr' in:" + ], + "start_col": 39, + "start_line": 110 + }, + "While expanding the reference 'pedersen_ptr' in:" + ], + "start_col": 35, + "start_line": 75 + } + }, + "1279": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.transfer" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 78, + "end_line": 75, + "input_file": { + "filename": "./tests/fixtures/ERC20.cairo" + }, + "parent_location": [ + { + "end_col": 82, + "end_line": 110, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/3.9.13/envs/kakarot/lib/python3.9/site-packages/openzeppelin/token/erc20/library.cairo" + }, + "parent_location": [ + { + "end_col": 45, + "end_line": 78, + "input_file": { + "filename": "./tests/fixtures/ERC20.cairo" + }, + "start_col": 12, + "start_line": 78 + }, + "While trying to retrieve the implicit argument 'range_check_ptr' in:" + ], + "start_col": 67, + "start_line": 110 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 63, + "start_line": 75 + } + }, + "1280": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.transfer" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 20, + "end_line": 76, + "input_file": { + "filename": "./tests/fixtures/ERC20.cairo" + }, + "parent_location": [ + { + "end_col": 36, + "end_line": 78, + "input_file": { + "filename": "./tests/fixtures/ERC20.cairo" + }, + "start_col": 27, + "start_line": 78 + }, + "While expanding the reference 'recipient' in:" + ], + "start_col": 5, + "start_line": 76 + } + }, + "1281": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.transfer" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 37, + "end_line": 76, + "input_file": { + "filename": "./tests/fixtures/ERC20.cairo" + }, + "parent_location": [ + { + "end_col": 44, + "end_line": 78, + "input_file": { + "filename": "./tests/fixtures/ERC20.cairo" + }, + "start_col": 38, + "start_line": 78 + }, + "While expanding the reference 'amount' in:" + ], + "start_col": 22, + "start_line": 76 + } + }, + "1282": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.transfer" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 37, + "end_line": 76, + "input_file": { + "filename": "./tests/fixtures/ERC20.cairo" + }, + "parent_location": [ + { + "end_col": 44, + "end_line": 78, + "input_file": { + "filename": "./tests/fixtures/ERC20.cairo" + }, + "start_col": 38, + "start_line": 78 + }, + "While expanding the reference 'amount' in:" + ], + "start_col": 22, + "start_line": 76 + } + }, + "1283": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.transfer" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 45, + "end_line": 78, + "input_file": { + "filename": "./tests/fixtures/ERC20.cairo" + }, + "start_col": 12, + "start_line": 78 + } + }, + "1285": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.transfer" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 46, + "end_line": 78, + "input_file": { + "filename": "./tests/fixtures/ERC20.cairo" + }, + "start_col": 5, + "start_line": 78 + } + }, + "1286": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.transfer_encode_return" + ], + "flow_tracking_data": null, + "hints": [ + { + "location": { + "end_col": 38, + "end_line": 3, + "input_file": { + "filename": "autogen/starknet/external/return/transfer/63591275573bc8b26ecb0c55e4fb63e8afcdbb2de92a6d653dea4d28256a7673.cairo" + }, + "parent_location": [ + { + "end_col": 14, + "end_line": 75, + "input_file": { + "filename": "./tests/fixtures/ERC20.cairo" + }, + "start_col": 6, + "start_line": 75 + }, + "While handling return value of" + ], + "start_col": 5, + "start_line": 3 + }, + "n_prefix_newlines": 0 + } + ], + "inst": { + "end_col": 18, + "end_line": 4, + "input_file": { + "filename": "autogen/starknet/external/return/transfer/63591275573bc8b26ecb0c55e4fb63e8afcdbb2de92a6d653dea4d28256a7673.cairo" + }, + "parent_location": [ + { + "end_col": 14, + "end_line": 75, + "input_file": { + "filename": "./tests/fixtures/ERC20.cairo" + }, + "start_col": 6, + "start_line": 75 + }, + "While handling return value of" + ], + "start_col": 5, + "start_line": 4 + } + }, + "1288": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.transfer_encode_return" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 49, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/arg_processor/5c10028f67364b153272aa9b4cbc0fb78920a40fab821ac7257b0069e0773b49.cairo" + }, + "parent_location": [ + { + "end_col": 20, + "end_line": 77, + "input_file": { + "filename": "./tests/fixtures/ERC20.cairo" + }, + "start_col": 7, + "start_line": 77 + }, + "While handling return value 'success'" + ], + "start_col": 1, + "start_line": 1 + } + }, + "1289": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.transfer_encode_return" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 48, + "end_line": 2, + "input_file": { + "filename": "autogen/starknet/arg_processor/5c10028f67364b153272aa9b4cbc0fb78920a40fab821ac7257b0069e0773b49.cairo" + }, + "parent_location": [ + { + "end_col": 20, + "end_line": 77, + "input_file": { + "filename": "./tests/fixtures/ERC20.cairo" + }, + "parent_location": [ + { + "end_col": 36, + "end_line": 11, + "input_file": { + "filename": "autogen/starknet/external/return/transfer/63591275573bc8b26ecb0c55e4fb63e8afcdbb2de92a6d653dea4d28256a7673.cairo" + }, + "parent_location": [ + { + "end_col": 14, + "end_line": 75, + "input_file": { + "filename": "./tests/fixtures/ERC20.cairo" + }, + "start_col": 6, + "start_line": 75 + }, + "While handling return value of" + ], + "start_col": 18, + "start_line": 11 + }, + "While expanding the reference '__return_value_ptr' in:" + ], + "start_col": 7, + "start_line": 77 + }, + "While handling return value 'success'" + ], + "start_col": 26, + "start_line": 2 + } + }, + "1291": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.transfer_encode_return" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 72, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/return/transfer/63591275573bc8b26ecb0c55e4fb63e8afcdbb2de92a6d653dea4d28256a7673.cairo" + }, + "parent_location": [ + { + "end_col": 14, + "end_line": 75, + "input_file": { + "filename": "./tests/fixtures/ERC20.cairo" + }, + "parent_location": [ + { + "end_col": 40, + "end_line": 10, + "input_file": { + "filename": "autogen/starknet/external/return/transfer/63591275573bc8b26ecb0c55e4fb63e8afcdbb2de92a6d653dea4d28256a7673.cairo" + }, + "parent_location": [ + { + "end_col": 14, + "end_line": 75, + "input_file": { + "filename": "./tests/fixtures/ERC20.cairo" + }, + "start_col": 6, + "start_line": 75 + }, + "While handling return value of" + ], + "start_col": 25, + "start_line": 10 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 6, + "start_line": 75 + }, + "While handling return value of" + ], + "start_col": 57, + "start_line": 1 + } + }, + "1292": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.transfer_encode_return" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 63, + "end_line": 11, + "input_file": { + "filename": "autogen/starknet/external/return/transfer/63591275573bc8b26ecb0c55e4fb63e8afcdbb2de92a6d653dea4d28256a7673.cairo" + }, + "parent_location": [ + { + "end_col": 14, + "end_line": 75, + "input_file": { + "filename": "./tests/fixtures/ERC20.cairo" + }, + "start_col": 6, + "start_line": 75 + }, + "While handling return value of" + ], + "start_col": 18, + "start_line": 11 + } + }, + "1293": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.transfer_encode_return" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 35, + "end_line": 5, + "input_file": { + "filename": "autogen/starknet/external/return/transfer/63591275573bc8b26ecb0c55e4fb63e8afcdbb2de92a6d653dea4d28256a7673.cairo" + }, + "parent_location": [ + { + "end_col": 14, + "end_line": 75, + "input_file": { + "filename": "./tests/fixtures/ERC20.cairo" + }, + "parent_location": [ + { + "end_col": 38, + "end_line": 12, + "input_file": { + "filename": "autogen/starknet/external/return/transfer/63591275573bc8b26ecb0c55e4fb63e8afcdbb2de92a6d653dea4d28256a7673.cairo" + }, + "parent_location": [ + { + "end_col": 14, + "end_line": 75, + "input_file": { + "filename": "./tests/fixtures/ERC20.cairo" + }, + "start_col": 6, + "start_line": 75 + }, + "While handling return value of" + ], + "start_col": 14, + "start_line": 12 + }, + "While expanding the reference '__return_value_ptr_start' in:" + ], + "start_col": 6, + "start_line": 75 + }, + "While handling return value of" + ], + "start_col": 11, + "start_line": 5 + } + }, + "1294": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.transfer_encode_return" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 40, + "end_line": 12, + "input_file": { + "filename": "autogen/starknet/external/return/transfer/63591275573bc8b26ecb0c55e4fb63e8afcdbb2de92a6d653dea4d28256a7673.cairo" + }, + "parent_location": [ + { + "end_col": 14, + "end_line": 75, + "input_file": { + "filename": "./tests/fixtures/ERC20.cairo" + }, + "start_col": 6, + "start_line": 75 + }, + "While handling return value of" + ], + "start_col": 5, + "start_line": 9 + } + }, + "1295": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.transfer" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 40, + "end_line": 3, + "input_file": { + "filename": "autogen/starknet/arg_processor/98feb0f4c88833fb7f82ddd66d06f84d8ffb64f877c6f94e214b61af32d58c29.cairo" + }, + "parent_location": [ + { + "end_col": 37, + "end_line": 76, + "input_file": { + "filename": "./tests/fixtures/ERC20.cairo" + }, + "parent_location": [ + { + "end_col": 45, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/arg_processor/c31620b02d4d706f0542c989b2aadc01b0981d1f6a5933a8fe4937ace3d70d92.cairo" + }, + "parent_location": [ + { + "end_col": 14, + "end_line": 75, + "input_file": { + "filename": "./tests/fixtures/ERC20.cairo" + }, + "parent_location": [ + { + "end_col": 57, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/arg_processor/01cba52f8515996bb9d7070bde81ff39281d096d7024a558efcba6e1fd2402cf.cairo" + }, + "parent_location": [ + { + "end_col": 14, + "end_line": 75, + "input_file": { + "filename": "./tests/fixtures/ERC20.cairo" + }, + "start_col": 6, + "start_line": 75 + }, + "While handling calldata of" + ], + "start_col": 35, + "start_line": 1 + }, + "While expanding the reference '__calldata_actual_size' in:" + ], + "start_col": 6, + "start_line": 75 + }, + "While handling calldata of" + ], + "start_col": 31, + "start_line": 1 + }, + "While expanding the reference '__calldata_ptr' in:" + ], + "start_col": 22, + "start_line": 76 + }, + "While handling calldata argument 'amount'" + ], + "start_col": 22, + "start_line": 3 + } + }, + "1297": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.transfer" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 58, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/arg_processor/01cba52f8515996bb9d7070bde81ff39281d096d7024a558efcba6e1fd2402cf.cairo" + }, + "parent_location": [ + { + "end_col": 14, + "end_line": 75, + "input_file": { + "filename": "./tests/fixtures/ERC20.cairo" + }, + "start_col": 6, + "start_line": 75 + }, + "While handling calldata of" + ], + "start_col": 1, + "start_line": 1 + } + }, + "1298": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.transfer" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 64, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/transfer/b2c52ca2d2a8fc8791a983086d8716c5eacd0c3d62934914d2286f84b98ff4cb.cairo" + }, + "parent_location": [ + { + "end_col": 33, + "end_line": 75, + "input_file": { + "filename": "./tests/fixtures/ERC20.cairo" + }, + "parent_location": [ + { + "end_col": 55, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/transfer/c082162ad81beaa225935c0230f7dc617871352643864a2e3e4881b50b0a949d.cairo" + }, + "parent_location": [ + { + "end_col": 14, + "end_line": 75, + "input_file": { + "filename": "./tests/fixtures/ERC20.cairo" + }, + "start_col": 6, + "start_line": 75 + }, + "While constructing the external wrapper for:" + ], + "start_col": 44, + "start_line": 1 + }, + "While expanding the reference 'syscall_ptr' in:" + ], + "start_col": 15, + "start_line": 75 + }, + "While constructing the external wrapper for:" + ], + "start_col": 19, + "start_line": 1 + } + }, + "1299": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.transfer" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 110, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/transfer/9684a85e93c782014ca14293edea4eb2502039a5a7b6538ecd39c56faaf12529.cairo" + }, + "parent_location": [ + { + "end_col": 61, + "end_line": 75, + "input_file": { + "filename": "./tests/fixtures/ERC20.cairo" + }, + "parent_location": [ + { + "end_col": 82, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/transfer/c082162ad81beaa225935c0230f7dc617871352643864a2e3e4881b50b0a949d.cairo" + }, + "parent_location": [ + { + "end_col": 14, + "end_line": 75, + "input_file": { + "filename": "./tests/fixtures/ERC20.cairo" + }, + "start_col": 6, + "start_line": 75 + }, + "While constructing the external wrapper for:" + ], + "start_col": 70, + "start_line": 1 + }, + "While expanding the reference 'pedersen_ptr' in:" + ], + "start_col": 35, + "start_line": 75 + }, + "While constructing the external wrapper for:" + ], + "start_col": 20, + "start_line": 1 + } + }, + "1300": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.transfer" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 67, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/transfer/741ea357d6336b0bed7bf0472425acd0311d543883b803388880e60a232040c7.cairo" + }, + "parent_location": [ + { + "end_col": 78, + "end_line": 75, + "input_file": { + "filename": "./tests/fixtures/ERC20.cairo" + }, + "parent_location": [ + { + "end_col": 115, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/transfer/c082162ad81beaa225935c0230f7dc617871352643864a2e3e4881b50b0a949d.cairo" + }, + "parent_location": [ + { + "end_col": 14, + "end_line": 75, + "input_file": { + "filename": "./tests/fixtures/ERC20.cairo" + }, + "start_col": 6, + "start_line": 75 + }, + "While constructing the external wrapper for:" + ], + "start_col": 100, + "start_line": 1 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 63, + "start_line": 75 + }, + "While constructing the external wrapper for:" + ], + "start_col": 23, + "start_line": 1 + } + }, + "1301": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.transfer" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 48, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/arg_processor/d8c30f4879932288f1bfa4e0e453592d3ebb5ca98ed0660bf066319d88c0297f.cairo" + }, + "parent_location": [ + { + "end_col": 20, + "end_line": 76, + "input_file": { + "filename": "./tests/fixtures/ERC20.cairo" + }, + "parent_location": [ + { + "end_col": 151, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/transfer/c082162ad81beaa225935c0230f7dc617871352643864a2e3e4881b50b0a949d.cairo" + }, + "parent_location": [ + { + "end_col": 14, + "end_line": 75, + "input_file": { + "filename": "./tests/fixtures/ERC20.cairo" + }, + "start_col": 6, + "start_line": 75 + }, + "While constructing the external wrapper for:" + ], + "start_col": 127, + "start_line": 1 + }, + "While expanding the reference '__calldata_arg_recipient' in:" + ], + "start_col": 5, + "start_line": 76 + }, + "While handling calldata argument 'recipient'" + ], + "start_col": 32, + "start_line": 1 + } + }, + "1302": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.transfer" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 67, + "end_line": 2, + "input_file": { + "filename": "autogen/starknet/arg_processor/98feb0f4c88833fb7f82ddd66d06f84d8ffb64f877c6f94e214b61af32d58c29.cairo" + }, + "parent_location": [ + { + "end_col": 37, + "end_line": 76, + "input_file": { + "filename": "./tests/fixtures/ERC20.cairo" + }, + "parent_location": [ + { + "end_col": 181, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/transfer/c082162ad81beaa225935c0230f7dc617871352643864a2e3e4881b50b0a949d.cairo" + }, + "parent_location": [ + { + "end_col": 14, + "end_line": 75, + "input_file": { + "filename": "./tests/fixtures/ERC20.cairo" + }, + "start_col": 6, + "start_line": 75 + }, + "While constructing the external wrapper for:" + ], + "start_col": 160, + "start_line": 1 + }, + "While expanding the reference '__calldata_arg_amount' in:" + ], + "start_col": 22, + "start_line": 76 + }, + "While handling calldata argument 'amount'" + ], + "start_col": 29, + "start_line": 1 + } + }, + "1303": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.transfer" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 67, + "end_line": 2, + "input_file": { + "filename": "autogen/starknet/arg_processor/98feb0f4c88833fb7f82ddd66d06f84d8ffb64f877c6f94e214b61af32d58c29.cairo" + }, + "parent_location": [ + { + "end_col": 37, + "end_line": 76, + "input_file": { + "filename": "./tests/fixtures/ERC20.cairo" + }, + "parent_location": [ + { + "end_col": 181, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/transfer/c082162ad81beaa225935c0230f7dc617871352643864a2e3e4881b50b0a949d.cairo" + }, + "parent_location": [ + { + "end_col": 14, + "end_line": 75, + "input_file": { + "filename": "./tests/fixtures/ERC20.cairo" + }, + "start_col": 6, + "start_line": 75 + }, + "While constructing the external wrapper for:" + ], + "start_col": 160, + "start_line": 1 + }, + "While expanding the reference '__calldata_arg_amount' in:" + ], + "start_col": 22, + "start_line": 76 + }, + "While handling calldata argument 'amount'" + ], + "start_col": 29, + "start_line": 1 + } + }, + "1304": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.transfer" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 14, + "end_line": 75, + "input_file": { + "filename": "./tests/fixtures/ERC20.cairo" + }, + "start_col": 6, + "start_line": 75 + } + }, + "1306": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.transfer" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 115, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/transfer/c082162ad81beaa225935c0230f7dc617871352643864a2e3e4881b50b0a949d.cairo" + }, + "parent_location": [ + { + "end_col": 14, + "end_line": 75, + "input_file": { + "filename": "./tests/fixtures/ERC20.cairo" + }, + "parent_location": [ + { + "end_col": 97, + "end_line": 2, + "input_file": { + "filename": "autogen/starknet/external/transfer/c082162ad81beaa225935c0230f7dc617871352643864a2e3e4881b50b0a949d.cairo" + }, + "parent_location": [ + { + "end_col": 14, + "end_line": 75, + "input_file": { + "filename": "./tests/fixtures/ERC20.cairo" + }, + "start_col": 6, + "start_line": 75 + }, + "While constructing the external wrapper for:" + ], + "start_col": 82, + "start_line": 2 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 6, + "start_line": 75 + }, + "While constructing the external wrapper for:" + ], + "start_col": 100, + "start_line": 1 + } + }, + "1307": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.transfer" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 98, + "end_line": 2, + "input_file": { + "filename": "autogen/starknet/external/transfer/c082162ad81beaa225935c0230f7dc617871352643864a2e3e4881b50b0a949d.cairo" + }, + "parent_location": [ + { + "end_col": 14, + "end_line": 75, + "input_file": { + "filename": "./tests/fixtures/ERC20.cairo" + }, + "start_col": 6, + "start_line": 75 + }, + "While constructing the external wrapper for:" + ], + "start_col": 48, + "start_line": 2 + } + }, + "1309": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.transfer" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 55, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/transfer/c082162ad81beaa225935c0230f7dc617871352643864a2e3e4881b50b0a949d.cairo" + }, + "parent_location": [ + { + "end_col": 14, + "end_line": 75, + "input_file": { + "filename": "./tests/fixtures/ERC20.cairo" + }, + "parent_location": [ + { + "end_col": 20, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/transfer/da17921a4e81c09e730800bbf23bfdbe5e9e6bfaedc59d80fbf62087fa43c27d.cairo" + }, + "parent_location": [ + { + "end_col": 14, + "end_line": 75, + "input_file": { + "filename": "./tests/fixtures/ERC20.cairo" + }, + "start_col": 6, + "start_line": 75 + }, + "While constructing the external wrapper for:" + ], + "start_col": 9, + "start_line": 1 + }, + "While expanding the reference 'syscall_ptr' in:" + ], + "start_col": 6, + "start_line": 75 + }, + "While constructing the external wrapper for:" + ], + "start_col": 44, + "start_line": 1 + } + }, + "1310": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.transfer" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 82, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/transfer/c082162ad81beaa225935c0230f7dc617871352643864a2e3e4881b50b0a949d.cairo" + }, + "parent_location": [ + { + "end_col": 14, + "end_line": 75, + "input_file": { + "filename": "./tests/fixtures/ERC20.cairo" + }, + "parent_location": [ + { + "end_col": 33, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/transfer/da17921a4e81c09e730800bbf23bfdbe5e9e6bfaedc59d80fbf62087fa43c27d.cairo" + }, + "parent_location": [ + { + "end_col": 14, + "end_line": 75, + "input_file": { + "filename": "./tests/fixtures/ERC20.cairo" + }, + "start_col": 6, + "start_line": 75 + }, + "While constructing the external wrapper for:" + ], + "start_col": 21, + "start_line": 1 + }, + "While expanding the reference 'pedersen_ptr' in:" + ], + "start_col": 6, + "start_line": 75 + }, + "While constructing the external wrapper for:" + ], + "start_col": 70, + "start_line": 1 + } + }, + "1311": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.transfer" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 21, + "end_line": 2, + "input_file": { + "filename": "autogen/starknet/external/transfer/c082162ad81beaa225935c0230f7dc617871352643864a2e3e4881b50b0a949d.cairo" + }, + "parent_location": [ + { + "end_col": 14, + "end_line": 75, + "input_file": { + "filename": "./tests/fixtures/ERC20.cairo" + }, + "parent_location": [ + { + "end_col": 49, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/transfer/da17921a4e81c09e730800bbf23bfdbe5e9e6bfaedc59d80fbf62087fa43c27d.cairo" + }, + "parent_location": [ + { + "end_col": 14, + "end_line": 75, + "input_file": { + "filename": "./tests/fixtures/ERC20.cairo" + }, + "start_col": 6, + "start_line": 75 + }, + "While constructing the external wrapper for:" + ], + "start_col": 34, + "start_line": 1 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 6, + "start_line": 75 + }, + "While constructing the external wrapper for:" + ], + "start_col": 6, + "start_line": 2 + } + }, + "1312": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.transfer" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 35, + "end_line": 2, + "input_file": { + "filename": "autogen/starknet/external/transfer/c082162ad81beaa225935c0230f7dc617871352643864a2e3e4881b50b0a949d.cairo" + }, + "parent_location": [ + { + "end_col": 14, + "end_line": 75, + "input_file": { + "filename": "./tests/fixtures/ERC20.cairo" + }, + "parent_location": [ + { + "end_col": 62, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/transfer/da17921a4e81c09e730800bbf23bfdbe5e9e6bfaedc59d80fbf62087fa43c27d.cairo" + }, + "parent_location": [ + { + "end_col": 14, + "end_line": 75, + "input_file": { + "filename": "./tests/fixtures/ERC20.cairo" + }, + "start_col": 6, + "start_line": 75 + }, + "While constructing the external wrapper for:" + ], + "start_col": 50, + "start_line": 1 + }, + "While expanding the reference 'retdata_size' in:" + ], + "start_col": 6, + "start_line": 75 + }, + "While constructing the external wrapper for:" + ], + "start_col": 23, + "start_line": 2 + } + }, + "1313": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.transfer" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 44, + "end_line": 2, + "input_file": { + "filename": "autogen/starknet/external/transfer/c082162ad81beaa225935c0230f7dc617871352643864a2e3e4881b50b0a949d.cairo" + }, + "parent_location": [ + { + "end_col": 14, + "end_line": 75, + "input_file": { + "filename": "./tests/fixtures/ERC20.cairo" + }, + "parent_location": [ + { + "end_col": 70, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/transfer/da17921a4e81c09e730800bbf23bfdbe5e9e6bfaedc59d80fbf62087fa43c27d.cairo" + }, + "parent_location": [ + { + "end_col": 14, + "end_line": 75, + "input_file": { + "filename": "./tests/fixtures/ERC20.cairo" + }, + "start_col": 6, + "start_line": 75 + }, + "While constructing the external wrapper for:" + ], + "start_col": 63, + "start_line": 1 + }, + "While expanding the reference 'retdata' in:" + ], + "start_col": 6, + "start_line": 75 + }, + "While constructing the external wrapper for:" + ], + "start_col": 37, + "start_line": 2 + } + }, + "1314": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.transfer" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 72, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/transfer/da17921a4e81c09e730800bbf23bfdbe5e9e6bfaedc59d80fbf62087fa43c27d.cairo" + }, + "parent_location": [ + { + "end_col": 14, + "end_line": 75, + "input_file": { + "filename": "./tests/fixtures/ERC20.cairo" + }, + "start_col": 6, + "start_line": 75 + }, + "While constructing the external wrapper for:" + ], + "start_col": 1, + "start_line": 1 + } + }, + "1315": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.transferFrom" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 37, + "end_line": 82, + "input_file": { + "filename": "./tests/fixtures/ERC20.cairo" + }, + "parent_location": [ + { + "end_col": 42, + "end_line": 118, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/3.9.13/envs/kakarot/lib/python3.9/site-packages/openzeppelin/token/erc20/library.cairo" + }, + "parent_location": [ + { + "end_col": 58, + "end_line": 85, + "input_file": { + "filename": "./tests/fixtures/ERC20.cairo" + }, + "start_col": 12, + "start_line": 85 + }, + "While trying to retrieve the implicit argument 'syscall_ptr' in:" + ], + "start_col": 24, + "start_line": 118 + }, + "While expanding the reference 'syscall_ptr' in:" + ], + "start_col": 19, + "start_line": 82 + } + }, + "1316": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.transferFrom" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 65, + "end_line": 82, + "input_file": { + "filename": "./tests/fixtures/ERC20.cairo" + }, + "parent_location": [ + { + "end_col": 70, + "end_line": 118, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/3.9.13/envs/kakarot/lib/python3.9/site-packages/openzeppelin/token/erc20/library.cairo" + }, + "parent_location": [ + { + "end_col": 58, + "end_line": 85, + "input_file": { + "filename": "./tests/fixtures/ERC20.cairo" + }, + "start_col": 12, + "start_line": 85 + }, + "While trying to retrieve the implicit argument 'pedersen_ptr' in:" + ], + "start_col": 44, + "start_line": 118 + }, + "While expanding the reference 'pedersen_ptr' in:" + ], + "start_col": 39, + "start_line": 82 + } + }, + "1317": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.transferFrom" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 82, + "end_line": 82, + "input_file": { + "filename": "./tests/fixtures/ERC20.cairo" + }, + "parent_location": [ + { + "end_col": 87, + "end_line": 118, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/3.9.13/envs/kakarot/lib/python3.9/site-packages/openzeppelin/token/erc20/library.cairo" + }, + "parent_location": [ + { + "end_col": 58, + "end_line": 85, + "input_file": { + "filename": "./tests/fixtures/ERC20.cairo" + }, + "start_col": 12, + "start_line": 85 + }, + "While trying to retrieve the implicit argument 'range_check_ptr' in:" + ], + "start_col": 72, + "start_line": 118 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 67, + "start_line": 82 + } + }, + "1318": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.transferFrom" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 17, + "end_line": 83, + "input_file": { + "filename": "./tests/fixtures/ERC20.cairo" + }, + "parent_location": [ + { + "end_col": 38, + "end_line": 85, + "input_file": { + "filename": "./tests/fixtures/ERC20.cairo" + }, + "start_col": 32, + "start_line": 85 + }, + "While expanding the reference 'sender' in:" + ], + "start_col": 5, + "start_line": 83 + } + }, + "1319": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.transferFrom" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 34, + "end_line": 83, + "input_file": { + "filename": "./tests/fixtures/ERC20.cairo" + }, + "parent_location": [ + { + "end_col": 49, + "end_line": 85, + "input_file": { + "filename": "./tests/fixtures/ERC20.cairo" + }, + "start_col": 40, + "start_line": 85 + }, + "While expanding the reference 'recipient' in:" + ], + "start_col": 19, + "start_line": 83 + } + }, + "1320": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.transferFrom" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 51, + "end_line": 83, + "input_file": { + "filename": "./tests/fixtures/ERC20.cairo" + }, + "parent_location": [ + { + "end_col": 57, + "end_line": 85, + "input_file": { + "filename": "./tests/fixtures/ERC20.cairo" + }, + "start_col": 51, + "start_line": 85 + }, + "While expanding the reference 'amount' in:" + ], + "start_col": 36, + "start_line": 83 + } + }, + "1321": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.transferFrom" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 51, + "end_line": 83, + "input_file": { + "filename": "./tests/fixtures/ERC20.cairo" + }, + "parent_location": [ + { + "end_col": 57, + "end_line": 85, + "input_file": { + "filename": "./tests/fixtures/ERC20.cairo" + }, + "start_col": 51, + "start_line": 85 + }, + "While expanding the reference 'amount' in:" + ], + "start_col": 36, + "start_line": 83 + } + }, + "1322": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.transferFrom" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 58, + "end_line": 85, + "input_file": { + "filename": "./tests/fixtures/ERC20.cairo" + }, + "start_col": 12, + "start_line": 85 + } + }, + "1324": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.transferFrom" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 59, + "end_line": 85, + "input_file": { + "filename": "./tests/fixtures/ERC20.cairo" + }, + "start_col": 5, + "start_line": 85 + } + }, + "1325": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.transferFrom_encode_return" + ], + "flow_tracking_data": null, + "hints": [ + { + "location": { + "end_col": 38, + "end_line": 3, + "input_file": { + "filename": "autogen/starknet/external/return/transferFrom/5b2c37cd8026aa4af7cd3c9f7917d8ea869eaee537bea84bfb17d9a4e9947d8f.cairo" + }, + "parent_location": [ + { + "end_col": 18, + "end_line": 82, + "input_file": { + "filename": "./tests/fixtures/ERC20.cairo" + }, + "start_col": 6, + "start_line": 82 + }, + "While handling return value of" + ], + "start_col": 5, + "start_line": 3 + }, + "n_prefix_newlines": 0 + } + ], + "inst": { + "end_col": 18, + "end_line": 4, + "input_file": { + "filename": "autogen/starknet/external/return/transferFrom/5b2c37cd8026aa4af7cd3c9f7917d8ea869eaee537bea84bfb17d9a4e9947d8f.cairo" + }, + "parent_location": [ + { + "end_col": 18, + "end_line": 82, + "input_file": { + "filename": "./tests/fixtures/ERC20.cairo" + }, + "start_col": 6, + "start_line": 82 + }, + "While handling return value of" + ], + "start_col": 5, + "start_line": 4 + } + }, + "1327": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.transferFrom_encode_return" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 49, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/arg_processor/5c10028f67364b153272aa9b4cbc0fb78920a40fab821ac7257b0069e0773b49.cairo" + }, + "parent_location": [ + { + "end_col": 20, + "end_line": 84, + "input_file": { + "filename": "./tests/fixtures/ERC20.cairo" + }, + "start_col": 7, + "start_line": 84 + }, + "While handling return value 'success'" + ], + "start_col": 1, + "start_line": 1 + } + }, + "1328": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.transferFrom_encode_return" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 48, + "end_line": 2, + "input_file": { + "filename": "autogen/starknet/arg_processor/5c10028f67364b153272aa9b4cbc0fb78920a40fab821ac7257b0069e0773b49.cairo" + }, + "parent_location": [ + { + "end_col": 20, + "end_line": 84, + "input_file": { + "filename": "./tests/fixtures/ERC20.cairo" + }, + "parent_location": [ + { + "end_col": 36, + "end_line": 11, + "input_file": { + "filename": "autogen/starknet/external/return/transferFrom/5b2c37cd8026aa4af7cd3c9f7917d8ea869eaee537bea84bfb17d9a4e9947d8f.cairo" + }, + "parent_location": [ + { + "end_col": 18, + "end_line": 82, + "input_file": { + "filename": "./tests/fixtures/ERC20.cairo" + }, + "start_col": 6, + "start_line": 82 + }, + "While handling return value of" + ], + "start_col": 18, + "start_line": 11 + }, + "While expanding the reference '__return_value_ptr' in:" + ], + "start_col": 7, + "start_line": 84 + }, + "While handling return value 'success'" + ], + "start_col": 26, + "start_line": 2 + } + }, + "1330": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.transferFrom_encode_return" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 76, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/return/transferFrom/5b2c37cd8026aa4af7cd3c9f7917d8ea869eaee537bea84bfb17d9a4e9947d8f.cairo" + }, + "parent_location": [ + { + "end_col": 18, + "end_line": 82, + "input_file": { + "filename": "./tests/fixtures/ERC20.cairo" + }, + "parent_location": [ + { + "end_col": 40, + "end_line": 10, + "input_file": { + "filename": "autogen/starknet/external/return/transferFrom/5b2c37cd8026aa4af7cd3c9f7917d8ea869eaee537bea84bfb17d9a4e9947d8f.cairo" + }, + "parent_location": [ + { + "end_col": 18, + "end_line": 82, + "input_file": { + "filename": "./tests/fixtures/ERC20.cairo" + }, + "start_col": 6, + "start_line": 82 + }, + "While handling return value of" + ], + "start_col": 25, + "start_line": 10 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 6, + "start_line": 82 + }, + "While handling return value of" + ], + "start_col": 61, + "start_line": 1 + } + }, + "1331": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.transferFrom_encode_return" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 63, + "end_line": 11, + "input_file": { + "filename": "autogen/starknet/external/return/transferFrom/5b2c37cd8026aa4af7cd3c9f7917d8ea869eaee537bea84bfb17d9a4e9947d8f.cairo" + }, + "parent_location": [ + { + "end_col": 18, + "end_line": 82, + "input_file": { + "filename": "./tests/fixtures/ERC20.cairo" + }, + "start_col": 6, + "start_line": 82 + }, + "While handling return value of" + ], + "start_col": 18, + "start_line": 11 + } + }, + "1332": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.transferFrom_encode_return" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 35, + "end_line": 5, + "input_file": { + "filename": "autogen/starknet/external/return/transferFrom/5b2c37cd8026aa4af7cd3c9f7917d8ea869eaee537bea84bfb17d9a4e9947d8f.cairo" + }, + "parent_location": [ + { + "end_col": 18, + "end_line": 82, + "input_file": { + "filename": "./tests/fixtures/ERC20.cairo" + }, + "parent_location": [ + { + "end_col": 38, + "end_line": 12, + "input_file": { + "filename": "autogen/starknet/external/return/transferFrom/5b2c37cd8026aa4af7cd3c9f7917d8ea869eaee537bea84bfb17d9a4e9947d8f.cairo" + }, + "parent_location": [ + { + "end_col": 18, + "end_line": 82, + "input_file": { + "filename": "./tests/fixtures/ERC20.cairo" + }, + "start_col": 6, + "start_line": 82 + }, + "While handling return value of" + ], + "start_col": 14, + "start_line": 12 + }, + "While expanding the reference '__return_value_ptr_start' in:" + ], + "start_col": 6, + "start_line": 82 + }, + "While handling return value of" + ], + "start_col": 11, + "start_line": 5 + } + }, + "1333": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.transferFrom_encode_return" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 40, + "end_line": 12, + "input_file": { + "filename": "autogen/starknet/external/return/transferFrom/5b2c37cd8026aa4af7cd3c9f7917d8ea869eaee537bea84bfb17d9a4e9947d8f.cairo" + }, + "parent_location": [ + { + "end_col": 18, + "end_line": 82, + "input_file": { + "filename": "./tests/fixtures/ERC20.cairo" + }, + "start_col": 6, + "start_line": 82 + }, + "While handling return value of" + ], + "start_col": 5, + "start_line": 9 + } + }, + "1334": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.transferFrom" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 40, + "end_line": 3, + "input_file": { + "filename": "autogen/starknet/arg_processor/98feb0f4c88833fb7f82ddd66d06f84d8ffb64f877c6f94e214b61af32d58c29.cairo" + }, + "parent_location": [ + { + "end_col": 51, + "end_line": 83, + "input_file": { + "filename": "./tests/fixtures/ERC20.cairo" + }, + "parent_location": [ + { + "end_col": 45, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/arg_processor/c31620b02d4d706f0542c989b2aadc01b0981d1f6a5933a8fe4937ace3d70d92.cairo" + }, + "parent_location": [ + { + "end_col": 18, + "end_line": 82, + "input_file": { + "filename": "./tests/fixtures/ERC20.cairo" + }, + "parent_location": [ + { + "end_col": 57, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/arg_processor/01cba52f8515996bb9d7070bde81ff39281d096d7024a558efcba6e1fd2402cf.cairo" + }, + "parent_location": [ + { + "end_col": 18, + "end_line": 82, + "input_file": { + "filename": "./tests/fixtures/ERC20.cairo" + }, + "start_col": 6, + "start_line": 82 + }, + "While handling calldata of" + ], + "start_col": 35, + "start_line": 1 + }, + "While expanding the reference '__calldata_actual_size' in:" + ], + "start_col": 6, + "start_line": 82 + }, + "While handling calldata of" + ], + "start_col": 31, + "start_line": 1 + }, + "While expanding the reference '__calldata_ptr' in:" + ], + "start_col": 36, + "start_line": 83 + }, + "While handling calldata argument 'amount'" + ], + "start_col": 22, + "start_line": 3 + } + }, + "1336": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.transferFrom" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 58, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/arg_processor/01cba52f8515996bb9d7070bde81ff39281d096d7024a558efcba6e1fd2402cf.cairo" + }, + "parent_location": [ + { + "end_col": 18, + "end_line": 82, + "input_file": { + "filename": "./tests/fixtures/ERC20.cairo" + }, + "start_col": 6, + "start_line": 82 + }, + "While handling calldata of" + ], + "start_col": 1, + "start_line": 1 + } + }, + "1337": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.transferFrom" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 64, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/transferFrom/b2c52ca2d2a8fc8791a983086d8716c5eacd0c3d62934914d2286f84b98ff4cb.cairo" + }, + "parent_location": [ + { + "end_col": 37, + "end_line": 82, + "input_file": { + "filename": "./tests/fixtures/ERC20.cairo" + }, + "parent_location": [ + { + "end_col": 55, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/transferFrom/69679d187ee7bc1a9c951eacaca8de24948b900bc226162c0bad133868537b48.cairo" + }, + "parent_location": [ + { + "end_col": 18, + "end_line": 82, + "input_file": { + "filename": "./tests/fixtures/ERC20.cairo" + }, + "start_col": 6, + "start_line": 82 + }, + "While constructing the external wrapper for:" + ], + "start_col": 44, + "start_line": 1 + }, + "While expanding the reference 'syscall_ptr' in:" + ], + "start_col": 19, + "start_line": 82 + }, + "While constructing the external wrapper for:" + ], + "start_col": 19, + "start_line": 1 + } + }, + "1338": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.transferFrom" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 110, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/transferFrom/9684a85e93c782014ca14293edea4eb2502039a5a7b6538ecd39c56faaf12529.cairo" + }, + "parent_location": [ + { + "end_col": 65, + "end_line": 82, + "input_file": { + "filename": "./tests/fixtures/ERC20.cairo" + }, + "parent_location": [ + { + "end_col": 82, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/transferFrom/69679d187ee7bc1a9c951eacaca8de24948b900bc226162c0bad133868537b48.cairo" + }, + "parent_location": [ + { + "end_col": 18, + "end_line": 82, + "input_file": { + "filename": "./tests/fixtures/ERC20.cairo" + }, + "start_col": 6, + "start_line": 82 + }, + "While constructing the external wrapper for:" + ], + "start_col": 70, + "start_line": 1 + }, + "While expanding the reference 'pedersen_ptr' in:" + ], + "start_col": 39, + "start_line": 82 + }, + "While constructing the external wrapper for:" + ], + "start_col": 20, + "start_line": 1 + } + }, + "1339": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.transferFrom" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 67, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/transferFrom/741ea357d6336b0bed7bf0472425acd0311d543883b803388880e60a232040c7.cairo" + }, + "parent_location": [ + { + "end_col": 82, + "end_line": 82, + "input_file": { + "filename": "./tests/fixtures/ERC20.cairo" + }, + "parent_location": [ + { + "end_col": 115, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/transferFrom/69679d187ee7bc1a9c951eacaca8de24948b900bc226162c0bad133868537b48.cairo" + }, + "parent_location": [ + { + "end_col": 18, + "end_line": 82, + "input_file": { + "filename": "./tests/fixtures/ERC20.cairo" + }, + "start_col": 6, + "start_line": 82 + }, + "While constructing the external wrapper for:" + ], + "start_col": 100, + "start_line": 1 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 67, + "start_line": 82 + }, + "While constructing the external wrapper for:" + ], + "start_col": 23, + "start_line": 1 + } + }, + "1340": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.transferFrom" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 45, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/arg_processor/2a6553d1cb026d6d486f03ea4f3c4e23a17d2c2fada60e20573741cc8edfdb84.cairo" + }, + "parent_location": [ + { + "end_col": 17, + "end_line": 83, + "input_file": { + "filename": "./tests/fixtures/ERC20.cairo" + }, + "parent_location": [ + { + "end_col": 145, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/transferFrom/69679d187ee7bc1a9c951eacaca8de24948b900bc226162c0bad133868537b48.cairo" + }, + "parent_location": [ + { + "end_col": 18, + "end_line": 82, + "input_file": { + "filename": "./tests/fixtures/ERC20.cairo" + }, + "start_col": 6, + "start_line": 82 + }, + "While constructing the external wrapper for:" + ], + "start_col": 124, + "start_line": 1 + }, + "While expanding the reference '__calldata_arg_sender' in:" + ], + "start_col": 5, + "start_line": 83 + }, + "While handling calldata argument 'sender'" + ], + "start_col": 29, + "start_line": 1 + } + }, + "1341": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.transferFrom" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 48, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/arg_processor/d8c30f4879932288f1bfa4e0e453592d3ebb5ca98ed0660bf066319d88c0297f.cairo" + }, + "parent_location": [ + { + "end_col": 34, + "end_line": 83, + "input_file": { + "filename": "./tests/fixtures/ERC20.cairo" + }, + "parent_location": [ + { + "end_col": 181, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/transferFrom/69679d187ee7bc1a9c951eacaca8de24948b900bc226162c0bad133868537b48.cairo" + }, + "parent_location": [ + { + "end_col": 18, + "end_line": 82, + "input_file": { + "filename": "./tests/fixtures/ERC20.cairo" + }, + "start_col": 6, + "start_line": 82 + }, + "While constructing the external wrapper for:" + ], + "start_col": 157, + "start_line": 1 + }, + "While expanding the reference '__calldata_arg_recipient' in:" + ], + "start_col": 19, + "start_line": 83 + }, + "While handling calldata argument 'recipient'" + ], + "start_col": 32, + "start_line": 1 + } + }, + "1342": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.transferFrom" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 67, + "end_line": 2, + "input_file": { + "filename": "autogen/starknet/arg_processor/98feb0f4c88833fb7f82ddd66d06f84d8ffb64f877c6f94e214b61af32d58c29.cairo" + }, + "parent_location": [ + { + "end_col": 51, + "end_line": 83, + "input_file": { + "filename": "./tests/fixtures/ERC20.cairo" + }, + "parent_location": [ + { + "end_col": 211, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/transferFrom/69679d187ee7bc1a9c951eacaca8de24948b900bc226162c0bad133868537b48.cairo" + }, + "parent_location": [ + { + "end_col": 18, + "end_line": 82, + "input_file": { + "filename": "./tests/fixtures/ERC20.cairo" + }, + "start_col": 6, + "start_line": 82 + }, + "While constructing the external wrapper for:" + ], + "start_col": 190, + "start_line": 1 + }, + "While expanding the reference '__calldata_arg_amount' in:" + ], + "start_col": 36, + "start_line": 83 + }, + "While handling calldata argument 'amount'" + ], + "start_col": 29, + "start_line": 1 + } + }, + "1343": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.transferFrom" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 67, + "end_line": 2, + "input_file": { + "filename": "autogen/starknet/arg_processor/98feb0f4c88833fb7f82ddd66d06f84d8ffb64f877c6f94e214b61af32d58c29.cairo" + }, + "parent_location": [ + { + "end_col": 51, + "end_line": 83, + "input_file": { + "filename": "./tests/fixtures/ERC20.cairo" + }, + "parent_location": [ + { + "end_col": 211, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/transferFrom/69679d187ee7bc1a9c951eacaca8de24948b900bc226162c0bad133868537b48.cairo" + }, + "parent_location": [ + { + "end_col": 18, + "end_line": 82, + "input_file": { + "filename": "./tests/fixtures/ERC20.cairo" + }, + "start_col": 6, + "start_line": 82 + }, + "While constructing the external wrapper for:" + ], + "start_col": 190, + "start_line": 1 + }, + "While expanding the reference '__calldata_arg_amount' in:" + ], + "start_col": 36, + "start_line": 83 + }, + "While handling calldata argument 'amount'" + ], + "start_col": 29, + "start_line": 1 + } + }, + "1344": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.transferFrom" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 18, + "end_line": 82, + "input_file": { + "filename": "./tests/fixtures/ERC20.cairo" + }, + "start_col": 6, + "start_line": 82 + } + }, + "1346": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.transferFrom" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 115, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/transferFrom/69679d187ee7bc1a9c951eacaca8de24948b900bc226162c0bad133868537b48.cairo" + }, + "parent_location": [ + { + "end_col": 18, + "end_line": 82, + "input_file": { + "filename": "./tests/fixtures/ERC20.cairo" + }, + "parent_location": [ + { + "end_col": 101, + "end_line": 2, + "input_file": { + "filename": "autogen/starknet/external/transferFrom/69679d187ee7bc1a9c951eacaca8de24948b900bc226162c0bad133868537b48.cairo" + }, + "parent_location": [ + { + "end_col": 18, + "end_line": 82, + "input_file": { + "filename": "./tests/fixtures/ERC20.cairo" + }, + "start_col": 6, + "start_line": 82 + }, + "While constructing the external wrapper for:" + ], + "start_col": 86, + "start_line": 2 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 6, + "start_line": 82 + }, + "While constructing the external wrapper for:" + ], + "start_col": 100, + "start_line": 1 + } + }, + "1347": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.transferFrom" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 102, + "end_line": 2, + "input_file": { + "filename": "autogen/starknet/external/transferFrom/69679d187ee7bc1a9c951eacaca8de24948b900bc226162c0bad133868537b48.cairo" + }, + "parent_location": [ + { + "end_col": 18, + "end_line": 82, + "input_file": { + "filename": "./tests/fixtures/ERC20.cairo" + }, + "start_col": 6, + "start_line": 82 + }, + "While constructing the external wrapper for:" + ], + "start_col": 48, + "start_line": 2 + } + }, + "1349": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.transferFrom" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 55, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/transferFrom/69679d187ee7bc1a9c951eacaca8de24948b900bc226162c0bad133868537b48.cairo" + }, + "parent_location": [ + { + "end_col": 18, + "end_line": 82, + "input_file": { + "filename": "./tests/fixtures/ERC20.cairo" + }, + "parent_location": [ + { + "end_col": 20, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/transferFrom/da17921a4e81c09e730800bbf23bfdbe5e9e6bfaedc59d80fbf62087fa43c27d.cairo" + }, + "parent_location": [ + { + "end_col": 18, + "end_line": 82, + "input_file": { + "filename": "./tests/fixtures/ERC20.cairo" + }, + "start_col": 6, + "start_line": 82 + }, + "While constructing the external wrapper for:" + ], + "start_col": 9, + "start_line": 1 + }, + "While expanding the reference 'syscall_ptr' in:" + ], + "start_col": 6, + "start_line": 82 + }, + "While constructing the external wrapper for:" + ], + "start_col": 44, + "start_line": 1 + } + }, + "1350": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.transferFrom" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 82, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/transferFrom/69679d187ee7bc1a9c951eacaca8de24948b900bc226162c0bad133868537b48.cairo" + }, + "parent_location": [ + { + "end_col": 18, + "end_line": 82, + "input_file": { + "filename": "./tests/fixtures/ERC20.cairo" + }, + "parent_location": [ + { + "end_col": 33, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/transferFrom/da17921a4e81c09e730800bbf23bfdbe5e9e6bfaedc59d80fbf62087fa43c27d.cairo" + }, + "parent_location": [ + { + "end_col": 18, + "end_line": 82, + "input_file": { + "filename": "./tests/fixtures/ERC20.cairo" + }, + "start_col": 6, + "start_line": 82 + }, + "While constructing the external wrapper for:" + ], + "start_col": 21, + "start_line": 1 + }, + "While expanding the reference 'pedersen_ptr' in:" + ], + "start_col": 6, + "start_line": 82 + }, + "While constructing the external wrapper for:" + ], + "start_col": 70, + "start_line": 1 + } + }, + "1351": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.transferFrom" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 21, + "end_line": 2, + "input_file": { + "filename": "autogen/starknet/external/transferFrom/69679d187ee7bc1a9c951eacaca8de24948b900bc226162c0bad133868537b48.cairo" + }, + "parent_location": [ + { + "end_col": 18, + "end_line": 82, + "input_file": { + "filename": "./tests/fixtures/ERC20.cairo" + }, + "parent_location": [ + { + "end_col": 49, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/transferFrom/da17921a4e81c09e730800bbf23bfdbe5e9e6bfaedc59d80fbf62087fa43c27d.cairo" + }, + "parent_location": [ + { + "end_col": 18, + "end_line": 82, + "input_file": { + "filename": "./tests/fixtures/ERC20.cairo" + }, + "start_col": 6, + "start_line": 82 + }, + "While constructing the external wrapper for:" + ], + "start_col": 34, + "start_line": 1 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 6, + "start_line": 82 + }, + "While constructing the external wrapper for:" + ], + "start_col": 6, + "start_line": 2 + } + }, + "1352": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.transferFrom" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 35, + "end_line": 2, + "input_file": { + "filename": "autogen/starknet/external/transferFrom/69679d187ee7bc1a9c951eacaca8de24948b900bc226162c0bad133868537b48.cairo" + }, + "parent_location": [ + { + "end_col": 18, + "end_line": 82, + "input_file": { + "filename": "./tests/fixtures/ERC20.cairo" + }, + "parent_location": [ + { + "end_col": 62, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/transferFrom/da17921a4e81c09e730800bbf23bfdbe5e9e6bfaedc59d80fbf62087fa43c27d.cairo" + }, + "parent_location": [ + { + "end_col": 18, + "end_line": 82, + "input_file": { + "filename": "./tests/fixtures/ERC20.cairo" + }, + "start_col": 6, + "start_line": 82 + }, + "While constructing the external wrapper for:" + ], + "start_col": 50, + "start_line": 1 + }, + "While expanding the reference 'retdata_size' in:" + ], + "start_col": 6, + "start_line": 82 + }, + "While constructing the external wrapper for:" + ], + "start_col": 23, + "start_line": 2 + } + }, + "1353": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.transferFrom" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 44, + "end_line": 2, + "input_file": { + "filename": "autogen/starknet/external/transferFrom/69679d187ee7bc1a9c951eacaca8de24948b900bc226162c0bad133868537b48.cairo" + }, + "parent_location": [ + { + "end_col": 18, + "end_line": 82, + "input_file": { + "filename": "./tests/fixtures/ERC20.cairo" + }, + "parent_location": [ + { + "end_col": 70, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/transferFrom/da17921a4e81c09e730800bbf23bfdbe5e9e6bfaedc59d80fbf62087fa43c27d.cairo" + }, + "parent_location": [ + { + "end_col": 18, + "end_line": 82, + "input_file": { + "filename": "./tests/fixtures/ERC20.cairo" + }, + "start_col": 6, + "start_line": 82 + }, + "While constructing the external wrapper for:" + ], + "start_col": 63, + "start_line": 1 + }, + "While expanding the reference 'retdata' in:" + ], + "start_col": 6, + "start_line": 82 + }, + "While constructing the external wrapper for:" + ], + "start_col": 37, + "start_line": 2 + } + }, + "1354": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.transferFrom" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 72, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/transferFrom/da17921a4e81c09e730800bbf23bfdbe5e9e6bfaedc59d80fbf62087fa43c27d.cairo" + }, + "parent_location": [ + { + "end_col": 18, + "end_line": 82, + "input_file": { + "filename": "./tests/fixtures/ERC20.cairo" + }, + "start_col": 6, + "start_line": 82 + }, + "While constructing the external wrapper for:" + ], + "start_col": 1, + "start_line": 1 + } + }, + "1355": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.approve" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 32, + "end_line": 89, + "input_file": { + "filename": "./tests/fixtures/ERC20.cairo" + }, + "parent_location": [ + { + "end_col": 36, + "end_line": 127, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/3.9.13/envs/kakarot/lib/python3.9/site-packages/openzeppelin/token/erc20/library.cairo" + }, + "parent_location": [ + { + "end_col": 42, + "end_line": 92, + "input_file": { + "filename": "./tests/fixtures/ERC20.cairo" + }, + "start_col": 12, + "start_line": 92 + }, + "While trying to retrieve the implicit argument 'syscall_ptr' in:" + ], + "start_col": 18, + "start_line": 127 + }, + "While expanding the reference 'syscall_ptr' in:" + ], + "start_col": 14, + "start_line": 89 + } + }, + "1356": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.approve" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 60, + "end_line": 89, + "input_file": { + "filename": "./tests/fixtures/ERC20.cairo" + }, + "parent_location": [ + { + "end_col": 64, + "end_line": 127, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/3.9.13/envs/kakarot/lib/python3.9/site-packages/openzeppelin/token/erc20/library.cairo" + }, + "parent_location": [ + { + "end_col": 42, + "end_line": 92, + "input_file": { + "filename": "./tests/fixtures/ERC20.cairo" + }, + "start_col": 12, + "start_line": 92 + }, + "While trying to retrieve the implicit argument 'pedersen_ptr' in:" + ], + "start_col": 38, + "start_line": 127 + }, + "While expanding the reference 'pedersen_ptr' in:" + ], + "start_col": 34, + "start_line": 89 + } + }, + "1357": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.approve" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 77, + "end_line": 89, + "input_file": { + "filename": "./tests/fixtures/ERC20.cairo" + }, + "parent_location": [ + { + "end_col": 81, + "end_line": 127, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/3.9.13/envs/kakarot/lib/python3.9/site-packages/openzeppelin/token/erc20/library.cairo" + }, + "parent_location": [ + { + "end_col": 42, + "end_line": 92, + "input_file": { + "filename": "./tests/fixtures/ERC20.cairo" + }, + "start_col": 12, + "start_line": 92 + }, + "While trying to retrieve the implicit argument 'range_check_ptr' in:" + ], + "start_col": 66, + "start_line": 127 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 62, + "start_line": 89 + } + }, + "1358": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.approve" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 18, + "end_line": 90, + "input_file": { + "filename": "./tests/fixtures/ERC20.cairo" + }, + "parent_location": [ + { + "end_col": 33, + "end_line": 92, + "input_file": { + "filename": "./tests/fixtures/ERC20.cairo" + }, + "start_col": 26, + "start_line": 92 + }, + "While expanding the reference 'spender' in:" + ], + "start_col": 5, + "start_line": 90 + } + }, + "1359": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.approve" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 35, + "end_line": 90, + "input_file": { + "filename": "./tests/fixtures/ERC20.cairo" + }, + "parent_location": [ + { + "end_col": 41, + "end_line": 92, + "input_file": { + "filename": "./tests/fixtures/ERC20.cairo" + }, + "start_col": 35, + "start_line": 92 + }, + "While expanding the reference 'amount' in:" + ], + "start_col": 20, + "start_line": 90 + } + }, + "1360": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.approve" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 35, + "end_line": 90, + "input_file": { + "filename": "./tests/fixtures/ERC20.cairo" + }, + "parent_location": [ + { + "end_col": 41, + "end_line": 92, + "input_file": { + "filename": "./tests/fixtures/ERC20.cairo" + }, + "start_col": 35, + "start_line": 92 + }, + "While expanding the reference 'amount' in:" + ], + "start_col": 20, + "start_line": 90 + } + }, + "1361": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.approve" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 42, + "end_line": 92, + "input_file": { + "filename": "./tests/fixtures/ERC20.cairo" + }, + "start_col": 12, + "start_line": 92 + } + }, + "1363": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.approve" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 43, + "end_line": 92, + "input_file": { + "filename": "./tests/fixtures/ERC20.cairo" + }, + "start_col": 5, + "start_line": 92 + } + }, + "1364": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.approve_encode_return" + ], + "flow_tracking_data": null, + "hints": [ + { + "location": { + "end_col": 38, + "end_line": 3, + "input_file": { + "filename": "autogen/starknet/external/return/approve/3bfbf1e209a2919256f756d0aba26a37c16e14592de6048b15605ba53b428eb5.cairo" + }, + "parent_location": [ + { + "end_col": 13, + "end_line": 89, + "input_file": { + "filename": "./tests/fixtures/ERC20.cairo" + }, + "start_col": 6, + "start_line": 89 + }, + "While handling return value of" + ], + "start_col": 5, + "start_line": 3 + }, + "n_prefix_newlines": 0 + } + ], + "inst": { + "end_col": 18, + "end_line": 4, + "input_file": { + "filename": "autogen/starknet/external/return/approve/3bfbf1e209a2919256f756d0aba26a37c16e14592de6048b15605ba53b428eb5.cairo" + }, + "parent_location": [ + { + "end_col": 13, + "end_line": 89, + "input_file": { + "filename": "./tests/fixtures/ERC20.cairo" + }, + "start_col": 6, + "start_line": 89 + }, + "While handling return value of" + ], + "start_col": 5, + "start_line": 4 + } + }, + "1366": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.approve_encode_return" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 49, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/arg_processor/5c10028f67364b153272aa9b4cbc0fb78920a40fab821ac7257b0069e0773b49.cairo" + }, + "parent_location": [ + { + "end_col": 20, + "end_line": 91, + "input_file": { + "filename": "./tests/fixtures/ERC20.cairo" + }, + "start_col": 7, + "start_line": 91 + }, + "While handling return value 'success'" + ], + "start_col": 1, + "start_line": 1 + } + }, + "1367": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.approve_encode_return" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 48, + "end_line": 2, + "input_file": { + "filename": "autogen/starknet/arg_processor/5c10028f67364b153272aa9b4cbc0fb78920a40fab821ac7257b0069e0773b49.cairo" + }, + "parent_location": [ + { + "end_col": 20, + "end_line": 91, + "input_file": { + "filename": "./tests/fixtures/ERC20.cairo" + }, + "parent_location": [ + { + "end_col": 36, + "end_line": 11, + "input_file": { + "filename": "autogen/starknet/external/return/approve/3bfbf1e209a2919256f756d0aba26a37c16e14592de6048b15605ba53b428eb5.cairo" + }, + "parent_location": [ + { + "end_col": 13, + "end_line": 89, + "input_file": { + "filename": "./tests/fixtures/ERC20.cairo" + }, + "start_col": 6, + "start_line": 89 + }, + "While handling return value of" + ], + "start_col": 18, + "start_line": 11 + }, + "While expanding the reference '__return_value_ptr' in:" + ], + "start_col": 7, + "start_line": 91 + }, + "While handling return value 'success'" + ], + "start_col": 26, + "start_line": 2 + } + }, + "1369": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.approve_encode_return" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 71, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/return/approve/3bfbf1e209a2919256f756d0aba26a37c16e14592de6048b15605ba53b428eb5.cairo" + }, + "parent_location": [ + { + "end_col": 13, + "end_line": 89, + "input_file": { + "filename": "./tests/fixtures/ERC20.cairo" + }, + "parent_location": [ + { + "end_col": 40, + "end_line": 10, + "input_file": { + "filename": "autogen/starknet/external/return/approve/3bfbf1e209a2919256f756d0aba26a37c16e14592de6048b15605ba53b428eb5.cairo" + }, + "parent_location": [ + { + "end_col": 13, + "end_line": 89, + "input_file": { + "filename": "./tests/fixtures/ERC20.cairo" + }, + "start_col": 6, + "start_line": 89 + }, + "While handling return value of" + ], + "start_col": 25, + "start_line": 10 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 6, + "start_line": 89 + }, + "While handling return value of" + ], + "start_col": 56, + "start_line": 1 + } + }, + "1370": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.approve_encode_return" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 63, + "end_line": 11, + "input_file": { + "filename": "autogen/starknet/external/return/approve/3bfbf1e209a2919256f756d0aba26a37c16e14592de6048b15605ba53b428eb5.cairo" + }, + "parent_location": [ + { + "end_col": 13, + "end_line": 89, + "input_file": { + "filename": "./tests/fixtures/ERC20.cairo" + }, + "start_col": 6, + "start_line": 89 + }, + "While handling return value of" + ], + "start_col": 18, + "start_line": 11 + } + }, + "1371": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.approve_encode_return" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 35, + "end_line": 5, + "input_file": { + "filename": "autogen/starknet/external/return/approve/3bfbf1e209a2919256f756d0aba26a37c16e14592de6048b15605ba53b428eb5.cairo" + }, + "parent_location": [ + { + "end_col": 13, + "end_line": 89, + "input_file": { + "filename": "./tests/fixtures/ERC20.cairo" + }, + "parent_location": [ + { + "end_col": 38, + "end_line": 12, + "input_file": { + "filename": "autogen/starknet/external/return/approve/3bfbf1e209a2919256f756d0aba26a37c16e14592de6048b15605ba53b428eb5.cairo" + }, + "parent_location": [ + { + "end_col": 13, + "end_line": 89, + "input_file": { + "filename": "./tests/fixtures/ERC20.cairo" + }, + "start_col": 6, + "start_line": 89 + }, + "While handling return value of" + ], + "start_col": 14, + "start_line": 12 + }, + "While expanding the reference '__return_value_ptr_start' in:" + ], + "start_col": 6, + "start_line": 89 + }, + "While handling return value of" + ], + "start_col": 11, + "start_line": 5 + } + }, + "1372": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.approve_encode_return" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 40, + "end_line": 12, + "input_file": { + "filename": "autogen/starknet/external/return/approve/3bfbf1e209a2919256f756d0aba26a37c16e14592de6048b15605ba53b428eb5.cairo" + }, + "parent_location": [ + { + "end_col": 13, + "end_line": 89, + "input_file": { + "filename": "./tests/fixtures/ERC20.cairo" + }, + "start_col": 6, + "start_line": 89 + }, + "While handling return value of" + ], + "start_col": 5, + "start_line": 9 + } + }, + "1373": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.approve" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 40, + "end_line": 3, + "input_file": { + "filename": "autogen/starknet/arg_processor/98feb0f4c88833fb7f82ddd66d06f84d8ffb64f877c6f94e214b61af32d58c29.cairo" + }, + "parent_location": [ + { + "end_col": 35, + "end_line": 90, + "input_file": { + "filename": "./tests/fixtures/ERC20.cairo" + }, + "parent_location": [ + { + "end_col": 45, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/arg_processor/c31620b02d4d706f0542c989b2aadc01b0981d1f6a5933a8fe4937ace3d70d92.cairo" + }, + "parent_location": [ + { + "end_col": 13, + "end_line": 89, + "input_file": { + "filename": "./tests/fixtures/ERC20.cairo" + }, + "parent_location": [ + { + "end_col": 57, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/arg_processor/01cba52f8515996bb9d7070bde81ff39281d096d7024a558efcba6e1fd2402cf.cairo" + }, + "parent_location": [ + { + "end_col": 13, + "end_line": 89, + "input_file": { + "filename": "./tests/fixtures/ERC20.cairo" + }, + "start_col": 6, + "start_line": 89 + }, + "While handling calldata of" + ], + "start_col": 35, + "start_line": 1 + }, + "While expanding the reference '__calldata_actual_size' in:" + ], + "start_col": 6, + "start_line": 89 + }, + "While handling calldata of" + ], + "start_col": 31, + "start_line": 1 + }, + "While expanding the reference '__calldata_ptr' in:" + ], + "start_col": 20, + "start_line": 90 + }, + "While handling calldata argument 'amount'" + ], + "start_col": 22, + "start_line": 3 + } + }, + "1375": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.approve" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 58, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/arg_processor/01cba52f8515996bb9d7070bde81ff39281d096d7024a558efcba6e1fd2402cf.cairo" + }, + "parent_location": [ + { + "end_col": 13, + "end_line": 89, + "input_file": { + "filename": "./tests/fixtures/ERC20.cairo" + }, + "start_col": 6, + "start_line": 89 + }, + "While handling calldata of" + ], + "start_col": 1, + "start_line": 1 + } + }, + "1376": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.approve" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 64, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/approve/b2c52ca2d2a8fc8791a983086d8716c5eacd0c3d62934914d2286f84b98ff4cb.cairo" + }, + "parent_location": [ + { + "end_col": 32, + "end_line": 89, + "input_file": { + "filename": "./tests/fixtures/ERC20.cairo" + }, + "parent_location": [ + { + "end_col": 55, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/approve/77db5444148929462fbd4e3283726f95bc7cab75ff04d74c8603aa9c36044b9f.cairo" + }, + "parent_location": [ + { + "end_col": 13, + "end_line": 89, + "input_file": { + "filename": "./tests/fixtures/ERC20.cairo" + }, + "start_col": 6, + "start_line": 89 + }, + "While constructing the external wrapper for:" + ], + "start_col": 44, + "start_line": 1 + }, + "While expanding the reference 'syscall_ptr' in:" + ], + "start_col": 14, + "start_line": 89 + }, + "While constructing the external wrapper for:" + ], + "start_col": 19, + "start_line": 1 + } + }, + "1377": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.approve" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 110, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/approve/9684a85e93c782014ca14293edea4eb2502039a5a7b6538ecd39c56faaf12529.cairo" + }, + "parent_location": [ + { + "end_col": 60, + "end_line": 89, + "input_file": { + "filename": "./tests/fixtures/ERC20.cairo" + }, + "parent_location": [ + { + "end_col": 82, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/approve/77db5444148929462fbd4e3283726f95bc7cab75ff04d74c8603aa9c36044b9f.cairo" + }, + "parent_location": [ + { + "end_col": 13, + "end_line": 89, + "input_file": { + "filename": "./tests/fixtures/ERC20.cairo" + }, + "start_col": 6, + "start_line": 89 + }, + "While constructing the external wrapper for:" + ], + "start_col": 70, + "start_line": 1 + }, + "While expanding the reference 'pedersen_ptr' in:" + ], + "start_col": 34, + "start_line": 89 + }, + "While constructing the external wrapper for:" + ], + "start_col": 20, + "start_line": 1 + } + }, + "1378": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.approve" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 67, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/approve/741ea357d6336b0bed7bf0472425acd0311d543883b803388880e60a232040c7.cairo" + }, + "parent_location": [ + { + "end_col": 77, + "end_line": 89, + "input_file": { + "filename": "./tests/fixtures/ERC20.cairo" + }, + "parent_location": [ + { + "end_col": 115, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/approve/77db5444148929462fbd4e3283726f95bc7cab75ff04d74c8603aa9c36044b9f.cairo" + }, + "parent_location": [ + { + "end_col": 13, + "end_line": 89, + "input_file": { + "filename": "./tests/fixtures/ERC20.cairo" + }, + "start_col": 6, + "start_line": 89 + }, + "While constructing the external wrapper for:" + ], + "start_col": 100, + "start_line": 1 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 62, + "start_line": 89 + }, + "While constructing the external wrapper for:" + ], + "start_col": 23, + "start_line": 1 + } + }, + "1379": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.approve" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 46, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/arg_processor/144fa44c78b9ff9755794c84d3169b8c097256057e7a09154cdae1a978b57fed.cairo" + }, + "parent_location": [ + { + "end_col": 18, + "end_line": 90, + "input_file": { + "filename": "./tests/fixtures/ERC20.cairo" + }, + "parent_location": [ + { + "end_col": 147, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/approve/77db5444148929462fbd4e3283726f95bc7cab75ff04d74c8603aa9c36044b9f.cairo" + }, + "parent_location": [ + { + "end_col": 13, + "end_line": 89, + "input_file": { + "filename": "./tests/fixtures/ERC20.cairo" + }, + "start_col": 6, + "start_line": 89 + }, + "While constructing the external wrapper for:" + ], + "start_col": 125, + "start_line": 1 + }, + "While expanding the reference '__calldata_arg_spender' in:" + ], + "start_col": 5, + "start_line": 90 + }, + "While handling calldata argument 'spender'" + ], + "start_col": 30, + "start_line": 1 + } + }, + "1380": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.approve" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 67, + "end_line": 2, + "input_file": { + "filename": "autogen/starknet/arg_processor/98feb0f4c88833fb7f82ddd66d06f84d8ffb64f877c6f94e214b61af32d58c29.cairo" + }, + "parent_location": [ + { + "end_col": 35, + "end_line": 90, + "input_file": { + "filename": "./tests/fixtures/ERC20.cairo" + }, + "parent_location": [ + { + "end_col": 177, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/approve/77db5444148929462fbd4e3283726f95bc7cab75ff04d74c8603aa9c36044b9f.cairo" + }, + "parent_location": [ + { + "end_col": 13, + "end_line": 89, + "input_file": { + "filename": "./tests/fixtures/ERC20.cairo" + }, + "start_col": 6, + "start_line": 89 + }, + "While constructing the external wrapper for:" + ], + "start_col": 156, + "start_line": 1 + }, + "While expanding the reference '__calldata_arg_amount' in:" + ], + "start_col": 20, + "start_line": 90 + }, + "While handling calldata argument 'amount'" + ], + "start_col": 29, + "start_line": 1 + } + }, + "1381": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.approve" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 67, + "end_line": 2, + "input_file": { + "filename": "autogen/starknet/arg_processor/98feb0f4c88833fb7f82ddd66d06f84d8ffb64f877c6f94e214b61af32d58c29.cairo" + }, + "parent_location": [ + { + "end_col": 35, + "end_line": 90, + "input_file": { + "filename": "./tests/fixtures/ERC20.cairo" + }, + "parent_location": [ + { + "end_col": 177, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/approve/77db5444148929462fbd4e3283726f95bc7cab75ff04d74c8603aa9c36044b9f.cairo" + }, + "parent_location": [ + { + "end_col": 13, + "end_line": 89, + "input_file": { + "filename": "./tests/fixtures/ERC20.cairo" + }, + "start_col": 6, + "start_line": 89 + }, + "While constructing the external wrapper for:" + ], + "start_col": 156, + "start_line": 1 + }, + "While expanding the reference '__calldata_arg_amount' in:" + ], + "start_col": 20, + "start_line": 90 + }, + "While handling calldata argument 'amount'" + ], + "start_col": 29, + "start_line": 1 + } + }, + "1382": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.approve" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 13, + "end_line": 89, + "input_file": { + "filename": "./tests/fixtures/ERC20.cairo" + }, + "start_col": 6, + "start_line": 89 + } + }, + "1384": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.approve" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 115, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/approve/77db5444148929462fbd4e3283726f95bc7cab75ff04d74c8603aa9c36044b9f.cairo" + }, + "parent_location": [ + { + "end_col": 13, + "end_line": 89, + "input_file": { + "filename": "./tests/fixtures/ERC20.cairo" + }, + "parent_location": [ + { + "end_col": 96, + "end_line": 2, + "input_file": { + "filename": "autogen/starknet/external/approve/77db5444148929462fbd4e3283726f95bc7cab75ff04d74c8603aa9c36044b9f.cairo" + }, + "parent_location": [ + { + "end_col": 13, + "end_line": 89, + "input_file": { + "filename": "./tests/fixtures/ERC20.cairo" + }, + "start_col": 6, + "start_line": 89 + }, + "While constructing the external wrapper for:" + ], + "start_col": 81, + "start_line": 2 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 6, + "start_line": 89 + }, + "While constructing the external wrapper for:" + ], + "start_col": 100, + "start_line": 1 + } + }, + "1385": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.approve" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 97, + "end_line": 2, + "input_file": { + "filename": "autogen/starknet/external/approve/77db5444148929462fbd4e3283726f95bc7cab75ff04d74c8603aa9c36044b9f.cairo" + }, + "parent_location": [ + { + "end_col": 13, + "end_line": 89, + "input_file": { + "filename": "./tests/fixtures/ERC20.cairo" + }, + "start_col": 6, + "start_line": 89 + }, + "While constructing the external wrapper for:" + ], + "start_col": 48, + "start_line": 2 + } + }, + "1387": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.approve" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 55, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/approve/77db5444148929462fbd4e3283726f95bc7cab75ff04d74c8603aa9c36044b9f.cairo" + }, + "parent_location": [ + { + "end_col": 13, + "end_line": 89, + "input_file": { + "filename": "./tests/fixtures/ERC20.cairo" + }, + "parent_location": [ + { + "end_col": 20, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/approve/da17921a4e81c09e730800bbf23bfdbe5e9e6bfaedc59d80fbf62087fa43c27d.cairo" + }, + "parent_location": [ + { + "end_col": 13, + "end_line": 89, + "input_file": { + "filename": "./tests/fixtures/ERC20.cairo" + }, + "start_col": 6, + "start_line": 89 + }, + "While constructing the external wrapper for:" + ], + "start_col": 9, + "start_line": 1 + }, + "While expanding the reference 'syscall_ptr' in:" + ], + "start_col": 6, + "start_line": 89 + }, + "While constructing the external wrapper for:" + ], + "start_col": 44, + "start_line": 1 + } + }, + "1388": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.approve" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 82, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/approve/77db5444148929462fbd4e3283726f95bc7cab75ff04d74c8603aa9c36044b9f.cairo" + }, + "parent_location": [ + { + "end_col": 13, + "end_line": 89, + "input_file": { + "filename": "./tests/fixtures/ERC20.cairo" + }, + "parent_location": [ + { + "end_col": 33, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/approve/da17921a4e81c09e730800bbf23bfdbe5e9e6bfaedc59d80fbf62087fa43c27d.cairo" + }, + "parent_location": [ + { + "end_col": 13, + "end_line": 89, + "input_file": { + "filename": "./tests/fixtures/ERC20.cairo" + }, + "start_col": 6, + "start_line": 89 + }, + "While constructing the external wrapper for:" + ], + "start_col": 21, + "start_line": 1 + }, + "While expanding the reference 'pedersen_ptr' in:" + ], + "start_col": 6, + "start_line": 89 + }, + "While constructing the external wrapper for:" + ], + "start_col": 70, + "start_line": 1 + } + }, + "1389": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.approve" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 21, + "end_line": 2, + "input_file": { + "filename": "autogen/starknet/external/approve/77db5444148929462fbd4e3283726f95bc7cab75ff04d74c8603aa9c36044b9f.cairo" + }, + "parent_location": [ + { + "end_col": 13, + "end_line": 89, + "input_file": { + "filename": "./tests/fixtures/ERC20.cairo" + }, + "parent_location": [ + { + "end_col": 49, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/approve/da17921a4e81c09e730800bbf23bfdbe5e9e6bfaedc59d80fbf62087fa43c27d.cairo" + }, + "parent_location": [ + { + "end_col": 13, + "end_line": 89, + "input_file": { + "filename": "./tests/fixtures/ERC20.cairo" + }, + "start_col": 6, + "start_line": 89 + }, + "While constructing the external wrapper for:" + ], + "start_col": 34, + "start_line": 1 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 6, + "start_line": 89 + }, + "While constructing the external wrapper for:" + ], + "start_col": 6, + "start_line": 2 + } + }, + "1390": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.approve" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 35, + "end_line": 2, + "input_file": { + "filename": "autogen/starknet/external/approve/77db5444148929462fbd4e3283726f95bc7cab75ff04d74c8603aa9c36044b9f.cairo" + }, + "parent_location": [ + { + "end_col": 13, + "end_line": 89, + "input_file": { + "filename": "./tests/fixtures/ERC20.cairo" + }, + "parent_location": [ + { + "end_col": 62, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/approve/da17921a4e81c09e730800bbf23bfdbe5e9e6bfaedc59d80fbf62087fa43c27d.cairo" + }, + "parent_location": [ + { + "end_col": 13, + "end_line": 89, + "input_file": { + "filename": "./tests/fixtures/ERC20.cairo" + }, + "start_col": 6, + "start_line": 89 + }, + "While constructing the external wrapper for:" + ], + "start_col": 50, + "start_line": 1 + }, + "While expanding the reference 'retdata_size' in:" + ], + "start_col": 6, + "start_line": 89 + }, + "While constructing the external wrapper for:" + ], + "start_col": 23, + "start_line": 2 + } + }, + "1391": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.approve" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 44, + "end_line": 2, + "input_file": { + "filename": "autogen/starknet/external/approve/77db5444148929462fbd4e3283726f95bc7cab75ff04d74c8603aa9c36044b9f.cairo" + }, + "parent_location": [ + { + "end_col": 13, + "end_line": 89, + "input_file": { + "filename": "./tests/fixtures/ERC20.cairo" + }, + "parent_location": [ + { + "end_col": 70, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/approve/da17921a4e81c09e730800bbf23bfdbe5e9e6bfaedc59d80fbf62087fa43c27d.cairo" + }, + "parent_location": [ + { + "end_col": 13, + "end_line": 89, + "input_file": { + "filename": "./tests/fixtures/ERC20.cairo" + }, + "start_col": 6, + "start_line": 89 + }, + "While constructing the external wrapper for:" + ], + "start_col": 63, + "start_line": 1 + }, + "While expanding the reference 'retdata' in:" + ], + "start_col": 6, + "start_line": 89 + }, + "While constructing the external wrapper for:" + ], + "start_col": 37, + "start_line": 2 + } + }, + "1392": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.approve" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 72, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/approve/da17921a4e81c09e730800bbf23bfdbe5e9e6bfaedc59d80fbf62087fa43c27d.cairo" + }, + "parent_location": [ + { + "end_col": 13, + "end_line": 89, + "input_file": { + "filename": "./tests/fixtures/ERC20.cairo" + }, + "start_col": 6, + "start_line": 89 + }, + "While constructing the external wrapper for:" + ], + "start_col": 1, + "start_line": 1 + } + }, + "1393": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.increaseAllowance" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 42, + "end_line": 96, + "input_file": { + "filename": "./tests/fixtures/ERC20.cairo" + }, + "parent_location": [ + { + "end_col": 47, + "end_line": 139, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/3.9.13/envs/kakarot/lib/python3.9/site-packages/openzeppelin/token/erc20/library.cairo" + }, + "parent_location": [ + { + "end_col": 58, + "end_line": 99, + "input_file": { + "filename": "./tests/fixtures/ERC20.cairo" + }, + "start_col": 12, + "start_line": 99 + }, + "While trying to retrieve the implicit argument 'syscall_ptr' in:" + ], + "start_col": 29, + "start_line": 139 + }, + "While expanding the reference 'syscall_ptr' in:" + ], + "start_col": 24, + "start_line": 96 + } + }, + "1394": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.increaseAllowance" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 70, + "end_line": 96, + "input_file": { + "filename": "./tests/fixtures/ERC20.cairo" + }, + "parent_location": [ + { + "end_col": 75, + "end_line": 139, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/3.9.13/envs/kakarot/lib/python3.9/site-packages/openzeppelin/token/erc20/library.cairo" + }, + "parent_location": [ + { + "end_col": 58, + "end_line": 99, + "input_file": { + "filename": "./tests/fixtures/ERC20.cairo" + }, + "start_col": 12, + "start_line": 99 + }, + "While trying to retrieve the implicit argument 'pedersen_ptr' in:" + ], + "start_col": 49, + "start_line": 139 + }, + "While expanding the reference 'pedersen_ptr' in:" + ], + "start_col": 44, + "start_line": 96 + } + }, + "1395": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.increaseAllowance" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 87, + "end_line": 96, + "input_file": { + "filename": "./tests/fixtures/ERC20.cairo" + }, + "parent_location": [ + { + "end_col": 92, + "end_line": 139, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/3.9.13/envs/kakarot/lib/python3.9/site-packages/openzeppelin/token/erc20/library.cairo" + }, + "parent_location": [ + { + "end_col": 58, + "end_line": 99, + "input_file": { + "filename": "./tests/fixtures/ERC20.cairo" + }, + "start_col": 12, + "start_line": 99 + }, + "While trying to retrieve the implicit argument 'range_check_ptr' in:" + ], + "start_col": 77, + "start_line": 139 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 72, + "start_line": 96 + } + }, + "1396": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.increaseAllowance" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 18, + "end_line": 97, + "input_file": { + "filename": "./tests/fixtures/ERC20.cairo" + }, + "parent_location": [ + { + "end_col": 44, + "end_line": 99, + "input_file": { + "filename": "./tests/fixtures/ERC20.cairo" + }, + "start_col": 37, + "start_line": 99 + }, + "While expanding the reference 'spender' in:" + ], + "start_col": 5, + "start_line": 97 + } + }, + "1397": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.increaseAllowance" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 40, + "end_line": 97, + "input_file": { + "filename": "./tests/fixtures/ERC20.cairo" + }, + "parent_location": [ + { + "end_col": 57, + "end_line": 99, + "input_file": { + "filename": "./tests/fixtures/ERC20.cairo" + }, + "start_col": 46, + "start_line": 99 + }, + "While expanding the reference 'added_value' in:" + ], + "start_col": 20, + "start_line": 97 + } + }, + "1398": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.increaseAllowance" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 40, + "end_line": 97, + "input_file": { + "filename": "./tests/fixtures/ERC20.cairo" + }, + "parent_location": [ + { + "end_col": 57, + "end_line": 99, + "input_file": { + "filename": "./tests/fixtures/ERC20.cairo" + }, + "start_col": 46, + "start_line": 99 + }, + "While expanding the reference 'added_value' in:" + ], + "start_col": 20, + "start_line": 97 + } + }, + "1399": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.increaseAllowance" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 58, + "end_line": 99, + "input_file": { + "filename": "./tests/fixtures/ERC20.cairo" + }, + "start_col": 12, + "start_line": 99 + } + }, + "1401": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.increaseAllowance" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 59, + "end_line": 99, + "input_file": { + "filename": "./tests/fixtures/ERC20.cairo" + }, + "start_col": 5, + "start_line": 99 + } + }, + "1402": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.increaseAllowance_encode_return" + ], + "flow_tracking_data": null, + "hints": [ + { + "location": { + "end_col": 38, + "end_line": 3, + "input_file": { + "filename": "autogen/starknet/external/return/increaseAllowance/78c2ccee093b5589a139bd81b558b403837f815524d6dfc3d4af5f60c03fbc80.cairo" + }, + "parent_location": [ + { + "end_col": 23, + "end_line": 96, + "input_file": { + "filename": "./tests/fixtures/ERC20.cairo" + }, + "start_col": 6, + "start_line": 96 + }, + "While handling return value of" + ], + "start_col": 5, + "start_line": 3 + }, + "n_prefix_newlines": 0 + } + ], + "inst": { + "end_col": 18, + "end_line": 4, + "input_file": { + "filename": "autogen/starknet/external/return/increaseAllowance/78c2ccee093b5589a139bd81b558b403837f815524d6dfc3d4af5f60c03fbc80.cairo" + }, + "parent_location": [ + { + "end_col": 23, + "end_line": 96, + "input_file": { + "filename": "./tests/fixtures/ERC20.cairo" + }, + "start_col": 6, + "start_line": 96 + }, + "While handling return value of" + ], + "start_col": 5, + "start_line": 4 + } + }, + "1404": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.increaseAllowance_encode_return" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 49, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/arg_processor/5c10028f67364b153272aa9b4cbc0fb78920a40fab821ac7257b0069e0773b49.cairo" + }, + "parent_location": [ + { + "end_col": 20, + "end_line": 98, + "input_file": { + "filename": "./tests/fixtures/ERC20.cairo" + }, + "start_col": 7, + "start_line": 98 + }, + "While handling return value 'success'" + ], + "start_col": 1, + "start_line": 1 + } + }, + "1405": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.increaseAllowance_encode_return" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 48, + "end_line": 2, + "input_file": { + "filename": "autogen/starknet/arg_processor/5c10028f67364b153272aa9b4cbc0fb78920a40fab821ac7257b0069e0773b49.cairo" + }, + "parent_location": [ + { + "end_col": 20, + "end_line": 98, + "input_file": { + "filename": "./tests/fixtures/ERC20.cairo" + }, + "parent_location": [ + { + "end_col": 36, + "end_line": 11, + "input_file": { + "filename": "autogen/starknet/external/return/increaseAllowance/78c2ccee093b5589a139bd81b558b403837f815524d6dfc3d4af5f60c03fbc80.cairo" + }, + "parent_location": [ + { + "end_col": 23, + "end_line": 96, + "input_file": { + "filename": "./tests/fixtures/ERC20.cairo" + }, + "start_col": 6, + "start_line": 96 + }, + "While handling return value of" + ], + "start_col": 18, + "start_line": 11 + }, + "While expanding the reference '__return_value_ptr' in:" + ], + "start_col": 7, + "start_line": 98 + }, + "While handling return value 'success'" + ], + "start_col": 26, + "start_line": 2 + } + }, + "1407": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.increaseAllowance_encode_return" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 81, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/return/increaseAllowance/78c2ccee093b5589a139bd81b558b403837f815524d6dfc3d4af5f60c03fbc80.cairo" + }, + "parent_location": [ + { + "end_col": 23, + "end_line": 96, + "input_file": { + "filename": "./tests/fixtures/ERC20.cairo" + }, + "parent_location": [ + { + "end_col": 40, + "end_line": 10, + "input_file": { + "filename": "autogen/starknet/external/return/increaseAllowance/78c2ccee093b5589a139bd81b558b403837f815524d6dfc3d4af5f60c03fbc80.cairo" + }, + "parent_location": [ + { + "end_col": 23, + "end_line": 96, + "input_file": { + "filename": "./tests/fixtures/ERC20.cairo" + }, + "start_col": 6, + "start_line": 96 + }, + "While handling return value of" + ], + "start_col": 25, + "start_line": 10 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 6, + "start_line": 96 + }, + "While handling return value of" + ], + "start_col": 66, + "start_line": 1 + } + }, + "1408": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.increaseAllowance_encode_return" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 63, + "end_line": 11, + "input_file": { + "filename": "autogen/starknet/external/return/increaseAllowance/78c2ccee093b5589a139bd81b558b403837f815524d6dfc3d4af5f60c03fbc80.cairo" + }, + "parent_location": [ + { + "end_col": 23, + "end_line": 96, + "input_file": { + "filename": "./tests/fixtures/ERC20.cairo" + }, + "start_col": 6, + "start_line": 96 + }, + "While handling return value of" + ], + "start_col": 18, + "start_line": 11 + } + }, + "1409": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.increaseAllowance_encode_return" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 35, + "end_line": 5, + "input_file": { + "filename": "autogen/starknet/external/return/increaseAllowance/78c2ccee093b5589a139bd81b558b403837f815524d6dfc3d4af5f60c03fbc80.cairo" + }, + "parent_location": [ + { + "end_col": 23, + "end_line": 96, + "input_file": { + "filename": "./tests/fixtures/ERC20.cairo" + }, + "parent_location": [ + { + "end_col": 38, + "end_line": 12, + "input_file": { + "filename": "autogen/starknet/external/return/increaseAllowance/78c2ccee093b5589a139bd81b558b403837f815524d6dfc3d4af5f60c03fbc80.cairo" + }, + "parent_location": [ + { + "end_col": 23, + "end_line": 96, + "input_file": { + "filename": "./tests/fixtures/ERC20.cairo" + }, + "start_col": 6, + "start_line": 96 + }, + "While handling return value of" + ], + "start_col": 14, + "start_line": 12 + }, + "While expanding the reference '__return_value_ptr_start' in:" + ], + "start_col": 6, + "start_line": 96 + }, + "While handling return value of" + ], + "start_col": 11, + "start_line": 5 + } + }, + "1410": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.increaseAllowance_encode_return" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 40, + "end_line": 12, + "input_file": { + "filename": "autogen/starknet/external/return/increaseAllowance/78c2ccee093b5589a139bd81b558b403837f815524d6dfc3d4af5f60c03fbc80.cairo" + }, + "parent_location": [ + { + "end_col": 23, + "end_line": 96, + "input_file": { + "filename": "./tests/fixtures/ERC20.cairo" + }, + "start_col": 6, + "start_line": 96 + }, + "While handling return value of" + ], + "start_col": 5, + "start_line": 9 + } + }, + "1411": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.increaseAllowance" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 40, + "end_line": 3, + "input_file": { + "filename": "autogen/starknet/arg_processor/4ea8e9956f949bdcf8a2402f5fbdc50c902b2a9cd6640c5bec657657d079f916.cairo" + }, + "parent_location": [ + { + "end_col": 40, + "end_line": 97, + "input_file": { + "filename": "./tests/fixtures/ERC20.cairo" + }, + "parent_location": [ + { + "end_col": 45, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/arg_processor/c31620b02d4d706f0542c989b2aadc01b0981d1f6a5933a8fe4937ace3d70d92.cairo" + }, + "parent_location": [ + { + "end_col": 23, + "end_line": 96, + "input_file": { + "filename": "./tests/fixtures/ERC20.cairo" + }, + "parent_location": [ + { + "end_col": 57, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/arg_processor/01cba52f8515996bb9d7070bde81ff39281d096d7024a558efcba6e1fd2402cf.cairo" + }, + "parent_location": [ + { + "end_col": 23, + "end_line": 96, + "input_file": { + "filename": "./tests/fixtures/ERC20.cairo" + }, + "start_col": 6, + "start_line": 96 + }, + "While handling calldata of" + ], + "start_col": 35, + "start_line": 1 + }, + "While expanding the reference '__calldata_actual_size' in:" + ], + "start_col": 6, + "start_line": 96 + }, + "While handling calldata of" + ], + "start_col": 31, + "start_line": 1 + }, + "While expanding the reference '__calldata_ptr' in:" + ], + "start_col": 20, + "start_line": 97 + }, + "While handling calldata argument 'added_value'" + ], + "start_col": 22, + "start_line": 3 + } + }, + "1413": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.increaseAllowance" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 58, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/arg_processor/01cba52f8515996bb9d7070bde81ff39281d096d7024a558efcba6e1fd2402cf.cairo" + }, + "parent_location": [ + { + "end_col": 23, + "end_line": 96, + "input_file": { + "filename": "./tests/fixtures/ERC20.cairo" + }, + "start_col": 6, + "start_line": 96 + }, + "While handling calldata of" + ], + "start_col": 1, + "start_line": 1 + } + }, + "1414": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.increaseAllowance" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 64, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/increaseAllowance/b2c52ca2d2a8fc8791a983086d8716c5eacd0c3d62934914d2286f84b98ff4cb.cairo" + }, + "parent_location": [ + { + "end_col": 42, + "end_line": 96, + "input_file": { + "filename": "./tests/fixtures/ERC20.cairo" + }, + "parent_location": [ + { + "end_col": 55, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/increaseAllowance/3ee5a1f75ea35dfd778b0e9549bbe425c46c16ef9e6ffc2d363bf13e9473f34c.cairo" + }, + "parent_location": [ + { + "end_col": 23, + "end_line": 96, + "input_file": { + "filename": "./tests/fixtures/ERC20.cairo" + }, + "start_col": 6, + "start_line": 96 + }, + "While constructing the external wrapper for:" + ], + "start_col": 44, + "start_line": 1 + }, + "While expanding the reference 'syscall_ptr' in:" + ], + "start_col": 24, + "start_line": 96 + }, + "While constructing the external wrapper for:" + ], + "start_col": 19, + "start_line": 1 + } + }, + "1415": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.increaseAllowance" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 110, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/increaseAllowance/9684a85e93c782014ca14293edea4eb2502039a5a7b6538ecd39c56faaf12529.cairo" + }, + "parent_location": [ + { + "end_col": 70, + "end_line": 96, + "input_file": { + "filename": "./tests/fixtures/ERC20.cairo" + }, + "parent_location": [ + { + "end_col": 82, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/increaseAllowance/3ee5a1f75ea35dfd778b0e9549bbe425c46c16ef9e6ffc2d363bf13e9473f34c.cairo" + }, + "parent_location": [ + { + "end_col": 23, + "end_line": 96, + "input_file": { + "filename": "./tests/fixtures/ERC20.cairo" + }, + "start_col": 6, + "start_line": 96 + }, + "While constructing the external wrapper for:" + ], + "start_col": 70, + "start_line": 1 + }, + "While expanding the reference 'pedersen_ptr' in:" + ], + "start_col": 44, + "start_line": 96 + }, + "While constructing the external wrapper for:" + ], + "start_col": 20, + "start_line": 1 + } + }, + "1416": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.increaseAllowance" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 67, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/increaseAllowance/741ea357d6336b0bed7bf0472425acd0311d543883b803388880e60a232040c7.cairo" + }, + "parent_location": [ + { + "end_col": 87, + "end_line": 96, + "input_file": { + "filename": "./tests/fixtures/ERC20.cairo" + }, + "parent_location": [ + { + "end_col": 115, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/increaseAllowance/3ee5a1f75ea35dfd778b0e9549bbe425c46c16ef9e6ffc2d363bf13e9473f34c.cairo" + }, + "parent_location": [ + { + "end_col": 23, + "end_line": 96, + "input_file": { + "filename": "./tests/fixtures/ERC20.cairo" + }, + "start_col": 6, + "start_line": 96 + }, + "While constructing the external wrapper for:" + ], + "start_col": 100, + "start_line": 1 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 72, + "start_line": 96 + }, + "While constructing the external wrapper for:" + ], + "start_col": 23, + "start_line": 1 + } + }, + "1417": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.increaseAllowance" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 46, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/arg_processor/144fa44c78b9ff9755794c84d3169b8c097256057e7a09154cdae1a978b57fed.cairo" + }, + "parent_location": [ + { + "end_col": 18, + "end_line": 97, + "input_file": { + "filename": "./tests/fixtures/ERC20.cairo" + }, + "parent_location": [ + { + "end_col": 147, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/increaseAllowance/3ee5a1f75ea35dfd778b0e9549bbe425c46c16ef9e6ffc2d363bf13e9473f34c.cairo" + }, + "parent_location": [ + { + "end_col": 23, + "end_line": 96, + "input_file": { + "filename": "./tests/fixtures/ERC20.cairo" + }, + "start_col": 6, + "start_line": 96 + }, + "While constructing the external wrapper for:" + ], + "start_col": 125, + "start_line": 1 + }, + "While expanding the reference '__calldata_arg_spender' in:" + ], + "start_col": 5, + "start_line": 97 + }, + "While handling calldata argument 'spender'" + ], + "start_col": 30, + "start_line": 1 + } + }, + "1418": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.increaseAllowance" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 67, + "end_line": 2, + "input_file": { + "filename": "autogen/starknet/arg_processor/4ea8e9956f949bdcf8a2402f5fbdc50c902b2a9cd6640c5bec657657d079f916.cairo" + }, + "parent_location": [ + { + "end_col": 40, + "end_line": 97, + "input_file": { + "filename": "./tests/fixtures/ERC20.cairo" + }, + "parent_location": [ + { + "end_col": 187, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/increaseAllowance/3ee5a1f75ea35dfd778b0e9549bbe425c46c16ef9e6ffc2d363bf13e9473f34c.cairo" + }, + "parent_location": [ + { + "end_col": 23, + "end_line": 96, + "input_file": { + "filename": "./tests/fixtures/ERC20.cairo" + }, + "start_col": 6, + "start_line": 96 + }, + "While constructing the external wrapper for:" + ], + "start_col": 161, + "start_line": 1 + }, + "While expanding the reference '__calldata_arg_added_value' in:" + ], + "start_col": 20, + "start_line": 97 + }, + "While handling calldata argument 'added_value'" + ], + "start_col": 34, + "start_line": 1 + } + }, + "1419": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.increaseAllowance" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 67, + "end_line": 2, + "input_file": { + "filename": "autogen/starknet/arg_processor/4ea8e9956f949bdcf8a2402f5fbdc50c902b2a9cd6640c5bec657657d079f916.cairo" + }, + "parent_location": [ + { + "end_col": 40, + "end_line": 97, + "input_file": { + "filename": "./tests/fixtures/ERC20.cairo" + }, + "parent_location": [ + { + "end_col": 187, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/increaseAllowance/3ee5a1f75ea35dfd778b0e9549bbe425c46c16ef9e6ffc2d363bf13e9473f34c.cairo" + }, + "parent_location": [ + { + "end_col": 23, + "end_line": 96, + "input_file": { + "filename": "./tests/fixtures/ERC20.cairo" + }, + "start_col": 6, + "start_line": 96 + }, + "While constructing the external wrapper for:" + ], + "start_col": 161, + "start_line": 1 + }, + "While expanding the reference '__calldata_arg_added_value' in:" + ], + "start_col": 20, + "start_line": 97 + }, + "While handling calldata argument 'added_value'" + ], + "start_col": 34, + "start_line": 1 + } + }, + "1420": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.increaseAllowance" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 23, + "end_line": 96, + "input_file": { + "filename": "./tests/fixtures/ERC20.cairo" + }, + "start_col": 6, + "start_line": 96 + } + }, + "1422": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.increaseAllowance" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 115, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/increaseAllowance/3ee5a1f75ea35dfd778b0e9549bbe425c46c16ef9e6ffc2d363bf13e9473f34c.cairo" + }, + "parent_location": [ + { + "end_col": 23, + "end_line": 96, + "input_file": { + "filename": "./tests/fixtures/ERC20.cairo" + }, + "parent_location": [ + { + "end_col": 106, + "end_line": 2, + "input_file": { + "filename": "autogen/starknet/external/increaseAllowance/3ee5a1f75ea35dfd778b0e9549bbe425c46c16ef9e6ffc2d363bf13e9473f34c.cairo" + }, + "parent_location": [ + { + "end_col": 23, + "end_line": 96, + "input_file": { + "filename": "./tests/fixtures/ERC20.cairo" + }, + "start_col": 6, + "start_line": 96 + }, + "While constructing the external wrapper for:" + ], + "start_col": 91, + "start_line": 2 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 6, + "start_line": 96 + }, + "While constructing the external wrapper for:" + ], + "start_col": 100, + "start_line": 1 + } + }, + "1423": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.increaseAllowance" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 107, + "end_line": 2, + "input_file": { + "filename": "autogen/starknet/external/increaseAllowance/3ee5a1f75ea35dfd778b0e9549bbe425c46c16ef9e6ffc2d363bf13e9473f34c.cairo" + }, + "parent_location": [ + { + "end_col": 23, + "end_line": 96, + "input_file": { + "filename": "./tests/fixtures/ERC20.cairo" + }, + "start_col": 6, + "start_line": 96 + }, + "While constructing the external wrapper for:" + ], + "start_col": 48, + "start_line": 2 + } + }, + "1425": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.increaseAllowance" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 55, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/increaseAllowance/3ee5a1f75ea35dfd778b0e9549bbe425c46c16ef9e6ffc2d363bf13e9473f34c.cairo" + }, + "parent_location": [ + { + "end_col": 23, + "end_line": 96, + "input_file": { + "filename": "./tests/fixtures/ERC20.cairo" + }, + "parent_location": [ + { + "end_col": 20, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/increaseAllowance/da17921a4e81c09e730800bbf23bfdbe5e9e6bfaedc59d80fbf62087fa43c27d.cairo" + }, + "parent_location": [ + { + "end_col": 23, + "end_line": 96, + "input_file": { + "filename": "./tests/fixtures/ERC20.cairo" + }, + "start_col": 6, + "start_line": 96 + }, + "While constructing the external wrapper for:" + ], + "start_col": 9, + "start_line": 1 + }, + "While expanding the reference 'syscall_ptr' in:" + ], + "start_col": 6, + "start_line": 96 + }, + "While constructing the external wrapper for:" + ], + "start_col": 44, + "start_line": 1 + } + }, + "1426": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.increaseAllowance" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 82, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/increaseAllowance/3ee5a1f75ea35dfd778b0e9549bbe425c46c16ef9e6ffc2d363bf13e9473f34c.cairo" + }, + "parent_location": [ + { + "end_col": 23, + "end_line": 96, + "input_file": { + "filename": "./tests/fixtures/ERC20.cairo" + }, + "parent_location": [ + { + "end_col": 33, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/increaseAllowance/da17921a4e81c09e730800bbf23bfdbe5e9e6bfaedc59d80fbf62087fa43c27d.cairo" + }, + "parent_location": [ + { + "end_col": 23, + "end_line": 96, + "input_file": { + "filename": "./tests/fixtures/ERC20.cairo" + }, + "start_col": 6, + "start_line": 96 + }, + "While constructing the external wrapper for:" + ], + "start_col": 21, + "start_line": 1 + }, + "While expanding the reference 'pedersen_ptr' in:" + ], + "start_col": 6, + "start_line": 96 + }, + "While constructing the external wrapper for:" + ], + "start_col": 70, + "start_line": 1 + } + }, + "1427": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.increaseAllowance" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 21, + "end_line": 2, + "input_file": { + "filename": "autogen/starknet/external/increaseAllowance/3ee5a1f75ea35dfd778b0e9549bbe425c46c16ef9e6ffc2d363bf13e9473f34c.cairo" + }, + "parent_location": [ + { + "end_col": 23, + "end_line": 96, + "input_file": { + "filename": "./tests/fixtures/ERC20.cairo" + }, + "parent_location": [ + { + "end_col": 49, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/increaseAllowance/da17921a4e81c09e730800bbf23bfdbe5e9e6bfaedc59d80fbf62087fa43c27d.cairo" + }, + "parent_location": [ + { + "end_col": 23, + "end_line": 96, + "input_file": { + "filename": "./tests/fixtures/ERC20.cairo" + }, + "start_col": 6, + "start_line": 96 + }, + "While constructing the external wrapper for:" + ], + "start_col": 34, + "start_line": 1 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 6, + "start_line": 96 + }, + "While constructing the external wrapper for:" + ], + "start_col": 6, + "start_line": 2 + } + }, + "1428": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.increaseAllowance" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 35, + "end_line": 2, + "input_file": { + "filename": "autogen/starknet/external/increaseAllowance/3ee5a1f75ea35dfd778b0e9549bbe425c46c16ef9e6ffc2d363bf13e9473f34c.cairo" + }, + "parent_location": [ + { + "end_col": 23, + "end_line": 96, + "input_file": { + "filename": "./tests/fixtures/ERC20.cairo" + }, + "parent_location": [ + { + "end_col": 62, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/increaseAllowance/da17921a4e81c09e730800bbf23bfdbe5e9e6bfaedc59d80fbf62087fa43c27d.cairo" + }, + "parent_location": [ + { + "end_col": 23, + "end_line": 96, + "input_file": { + "filename": "./tests/fixtures/ERC20.cairo" + }, + "start_col": 6, + "start_line": 96 + }, + "While constructing the external wrapper for:" + ], + "start_col": 50, + "start_line": 1 + }, + "While expanding the reference 'retdata_size' in:" + ], + "start_col": 6, + "start_line": 96 + }, + "While constructing the external wrapper for:" + ], + "start_col": 23, + "start_line": 2 + } + }, + "1429": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.increaseAllowance" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 44, + "end_line": 2, + "input_file": { + "filename": "autogen/starknet/external/increaseAllowance/3ee5a1f75ea35dfd778b0e9549bbe425c46c16ef9e6ffc2d363bf13e9473f34c.cairo" + }, + "parent_location": [ + { + "end_col": 23, + "end_line": 96, + "input_file": { + "filename": "./tests/fixtures/ERC20.cairo" + }, + "parent_location": [ + { + "end_col": 70, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/increaseAllowance/da17921a4e81c09e730800bbf23bfdbe5e9e6bfaedc59d80fbf62087fa43c27d.cairo" + }, + "parent_location": [ + { + "end_col": 23, + "end_line": 96, + "input_file": { + "filename": "./tests/fixtures/ERC20.cairo" + }, + "start_col": 6, + "start_line": 96 + }, + "While constructing the external wrapper for:" + ], + "start_col": 63, + "start_line": 1 + }, + "While expanding the reference 'retdata' in:" + ], + "start_col": 6, + "start_line": 96 + }, + "While constructing the external wrapper for:" + ], + "start_col": 37, + "start_line": 2 + } + }, + "1430": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.increaseAllowance" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 72, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/increaseAllowance/da17921a4e81c09e730800bbf23bfdbe5e9e6bfaedc59d80fbf62087fa43c27d.cairo" + }, + "parent_location": [ + { + "end_col": 23, + "end_line": 96, + "input_file": { + "filename": "./tests/fixtures/ERC20.cairo" + }, + "start_col": 6, + "start_line": 96 + }, + "While constructing the external wrapper for:" + ], + "start_col": 1, + "start_line": 1 + } + }, + "1431": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.decreaseAllowance" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 42, + "end_line": 103, + "input_file": { + "filename": "./tests/fixtures/ERC20.cairo" + }, + "parent_location": [ + { + "end_col": 47, + "end_line": 158, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/3.9.13/envs/kakarot/lib/python3.9/site-packages/openzeppelin/token/erc20/library.cairo" + }, + "parent_location": [ + { + "end_col": 63, + "end_line": 106, + "input_file": { + "filename": "./tests/fixtures/ERC20.cairo" + }, + "start_col": 12, + "start_line": 106 + }, + "While trying to retrieve the implicit argument 'syscall_ptr' in:" + ], + "start_col": 29, + "start_line": 158 + }, + "While expanding the reference 'syscall_ptr' in:" + ], + "start_col": 24, + "start_line": 103 + } + }, + "1432": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.decreaseAllowance" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 70, + "end_line": 103, + "input_file": { + "filename": "./tests/fixtures/ERC20.cairo" + }, + "parent_location": [ + { + "end_col": 75, + "end_line": 158, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/3.9.13/envs/kakarot/lib/python3.9/site-packages/openzeppelin/token/erc20/library.cairo" + }, + "parent_location": [ + { + "end_col": 63, + "end_line": 106, + "input_file": { + "filename": "./tests/fixtures/ERC20.cairo" + }, + "start_col": 12, + "start_line": 106 + }, + "While trying to retrieve the implicit argument 'pedersen_ptr' in:" + ], + "start_col": 49, + "start_line": 158 + }, + "While expanding the reference 'pedersen_ptr' in:" + ], + "start_col": 44, + "start_line": 103 + } + }, + "1433": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.decreaseAllowance" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 87, + "end_line": 103, + "input_file": { + "filename": "./tests/fixtures/ERC20.cairo" + }, + "parent_location": [ + { + "end_col": 92, + "end_line": 158, + "input_file": { + "filename": "/Users/clementwalter/.pyenv/versions/3.9.13/envs/kakarot/lib/python3.9/site-packages/openzeppelin/token/erc20/library.cairo" + }, + "parent_location": [ + { + "end_col": 63, + "end_line": 106, + "input_file": { + "filename": "./tests/fixtures/ERC20.cairo" + }, + "start_col": 12, + "start_line": 106 + }, + "While trying to retrieve the implicit argument 'range_check_ptr' in:" + ], + "start_col": 77, + "start_line": 158 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 72, + "start_line": 103 + } + }, + "1434": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.decreaseAllowance" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 18, + "end_line": 104, + "input_file": { + "filename": "./tests/fixtures/ERC20.cairo" + }, + "parent_location": [ + { + "end_col": 44, + "end_line": 106, + "input_file": { + "filename": "./tests/fixtures/ERC20.cairo" + }, + "start_col": 37, + "start_line": 106 + }, + "While expanding the reference 'spender' in:" + ], + "start_col": 5, + "start_line": 104 + } + }, + "1435": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.decreaseAllowance" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 45, + "end_line": 104, + "input_file": { + "filename": "./tests/fixtures/ERC20.cairo" + }, + "parent_location": [ + { + "end_col": 62, + "end_line": 106, + "input_file": { + "filename": "./tests/fixtures/ERC20.cairo" + }, + "start_col": 46, + "start_line": 106 + }, + "While expanding the reference 'subtracted_value' in:" + ], + "start_col": 20, + "start_line": 104 + } + }, + "1436": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.decreaseAllowance" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 45, + "end_line": 104, + "input_file": { + "filename": "./tests/fixtures/ERC20.cairo" + }, + "parent_location": [ + { + "end_col": 62, + "end_line": 106, + "input_file": { + "filename": "./tests/fixtures/ERC20.cairo" + }, + "start_col": 46, + "start_line": 106 + }, + "While expanding the reference 'subtracted_value' in:" + ], + "start_col": 20, + "start_line": 104 + } + }, + "1437": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.decreaseAllowance" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 63, + "end_line": 106, + "input_file": { + "filename": "./tests/fixtures/ERC20.cairo" + }, + "start_col": 12, + "start_line": 106 + } + }, + "1439": { + "accessible_scopes": [ + "__main__", + "__main__", + "__main__.decreaseAllowance" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 64, + "end_line": 106, + "input_file": { + "filename": "./tests/fixtures/ERC20.cairo" + }, + "start_col": 5, + "start_line": 106 + } + }, + "1440": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.decreaseAllowance_encode_return" + ], + "flow_tracking_data": null, + "hints": [ + { + "location": { + "end_col": 38, + "end_line": 3, + "input_file": { + "filename": "autogen/starknet/external/return/decreaseAllowance/fa23cad4bedb82a75f6cde39bb37d0da695f0c4ce70ab41f6b2240cbbdb1c250.cairo" + }, + "parent_location": [ + { + "end_col": 23, + "end_line": 103, + "input_file": { + "filename": "./tests/fixtures/ERC20.cairo" + }, + "start_col": 6, + "start_line": 103 + }, + "While handling return value of" + ], + "start_col": 5, + "start_line": 3 + }, + "n_prefix_newlines": 0 + } + ], + "inst": { + "end_col": 18, + "end_line": 4, + "input_file": { + "filename": "autogen/starknet/external/return/decreaseAllowance/fa23cad4bedb82a75f6cde39bb37d0da695f0c4ce70ab41f6b2240cbbdb1c250.cairo" + }, + "parent_location": [ + { + "end_col": 23, + "end_line": 103, + "input_file": { + "filename": "./tests/fixtures/ERC20.cairo" + }, + "start_col": 6, + "start_line": 103 + }, + "While handling return value of" + ], + "start_col": 5, + "start_line": 4 + } + }, + "1442": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.decreaseAllowance_encode_return" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 49, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/arg_processor/5c10028f67364b153272aa9b4cbc0fb78920a40fab821ac7257b0069e0773b49.cairo" + }, + "parent_location": [ + { + "end_col": 20, + "end_line": 105, + "input_file": { + "filename": "./tests/fixtures/ERC20.cairo" + }, + "start_col": 7, + "start_line": 105 + }, + "While handling return value 'success'" + ], + "start_col": 1, + "start_line": 1 + } + }, + "1443": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.decreaseAllowance_encode_return" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 48, + "end_line": 2, + "input_file": { + "filename": "autogen/starknet/arg_processor/5c10028f67364b153272aa9b4cbc0fb78920a40fab821ac7257b0069e0773b49.cairo" + }, + "parent_location": [ + { + "end_col": 20, + "end_line": 105, + "input_file": { + "filename": "./tests/fixtures/ERC20.cairo" + }, + "parent_location": [ + { + "end_col": 36, + "end_line": 11, + "input_file": { + "filename": "autogen/starknet/external/return/decreaseAllowance/fa23cad4bedb82a75f6cde39bb37d0da695f0c4ce70ab41f6b2240cbbdb1c250.cairo" + }, + "parent_location": [ + { + "end_col": 23, + "end_line": 103, + "input_file": { + "filename": "./tests/fixtures/ERC20.cairo" + }, + "start_col": 6, + "start_line": 103 + }, + "While handling return value of" + ], + "start_col": 18, + "start_line": 11 + }, + "While expanding the reference '__return_value_ptr' in:" + ], + "start_col": 7, + "start_line": 105 + }, + "While handling return value 'success'" + ], + "start_col": 26, + "start_line": 2 + } + }, + "1445": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.decreaseAllowance_encode_return" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 81, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/return/decreaseAllowance/fa23cad4bedb82a75f6cde39bb37d0da695f0c4ce70ab41f6b2240cbbdb1c250.cairo" + }, + "parent_location": [ + { + "end_col": 23, + "end_line": 103, + "input_file": { + "filename": "./tests/fixtures/ERC20.cairo" + }, + "parent_location": [ + { + "end_col": 40, + "end_line": 10, + "input_file": { + "filename": "autogen/starknet/external/return/decreaseAllowance/fa23cad4bedb82a75f6cde39bb37d0da695f0c4ce70ab41f6b2240cbbdb1c250.cairo" + }, + "parent_location": [ + { + "end_col": 23, + "end_line": 103, + "input_file": { + "filename": "./tests/fixtures/ERC20.cairo" + }, + "start_col": 6, + "start_line": 103 + }, + "While handling return value of" + ], + "start_col": 25, + "start_line": 10 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 6, + "start_line": 103 + }, + "While handling return value of" + ], + "start_col": 66, + "start_line": 1 + } + }, + "1446": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.decreaseAllowance_encode_return" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 63, + "end_line": 11, + "input_file": { + "filename": "autogen/starknet/external/return/decreaseAllowance/fa23cad4bedb82a75f6cde39bb37d0da695f0c4ce70ab41f6b2240cbbdb1c250.cairo" + }, + "parent_location": [ + { + "end_col": 23, + "end_line": 103, + "input_file": { + "filename": "./tests/fixtures/ERC20.cairo" + }, + "start_col": 6, + "start_line": 103 + }, + "While handling return value of" + ], + "start_col": 18, + "start_line": 11 + } + }, + "1447": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.decreaseAllowance_encode_return" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 35, + "end_line": 5, + "input_file": { + "filename": "autogen/starknet/external/return/decreaseAllowance/fa23cad4bedb82a75f6cde39bb37d0da695f0c4ce70ab41f6b2240cbbdb1c250.cairo" + }, + "parent_location": [ + { + "end_col": 23, + "end_line": 103, + "input_file": { + "filename": "./tests/fixtures/ERC20.cairo" + }, + "parent_location": [ + { + "end_col": 38, + "end_line": 12, + "input_file": { + "filename": "autogen/starknet/external/return/decreaseAllowance/fa23cad4bedb82a75f6cde39bb37d0da695f0c4ce70ab41f6b2240cbbdb1c250.cairo" + }, + "parent_location": [ + { + "end_col": 23, + "end_line": 103, + "input_file": { + "filename": "./tests/fixtures/ERC20.cairo" + }, + "start_col": 6, + "start_line": 103 + }, + "While handling return value of" + ], + "start_col": 14, + "start_line": 12 + }, + "While expanding the reference '__return_value_ptr_start' in:" + ], + "start_col": 6, + "start_line": 103 + }, + "While handling return value of" + ], + "start_col": 11, + "start_line": 5 + } + }, + "1448": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.decreaseAllowance_encode_return" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 40, + "end_line": 12, + "input_file": { + "filename": "autogen/starknet/external/return/decreaseAllowance/fa23cad4bedb82a75f6cde39bb37d0da695f0c4ce70ab41f6b2240cbbdb1c250.cairo" + }, + "parent_location": [ + { + "end_col": 23, + "end_line": 103, + "input_file": { + "filename": "./tests/fixtures/ERC20.cairo" + }, + "start_col": 6, + "start_line": 103 + }, + "While handling return value of" + ], + "start_col": 5, + "start_line": 9 + } + }, + "1449": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.decreaseAllowance" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 40, + "end_line": 3, + "input_file": { + "filename": "autogen/starknet/arg_processor/088fc10f121c4edf0412d2bc1088f20f4b09fa1a3902dfc21b754224dcfd427e.cairo" + }, + "parent_location": [ + { + "end_col": 45, + "end_line": 104, + "input_file": { + "filename": "./tests/fixtures/ERC20.cairo" + }, + "parent_location": [ + { + "end_col": 45, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/arg_processor/c31620b02d4d706f0542c989b2aadc01b0981d1f6a5933a8fe4937ace3d70d92.cairo" + }, + "parent_location": [ + { + "end_col": 23, + "end_line": 103, + "input_file": { + "filename": "./tests/fixtures/ERC20.cairo" + }, + "parent_location": [ + { + "end_col": 57, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/arg_processor/01cba52f8515996bb9d7070bde81ff39281d096d7024a558efcba6e1fd2402cf.cairo" + }, + "parent_location": [ + { + "end_col": 23, + "end_line": 103, + "input_file": { + "filename": "./tests/fixtures/ERC20.cairo" + }, + "start_col": 6, + "start_line": 103 + }, + "While handling calldata of" + ], + "start_col": 35, + "start_line": 1 + }, + "While expanding the reference '__calldata_actual_size' in:" + ], + "start_col": 6, + "start_line": 103 + }, + "While handling calldata of" + ], + "start_col": 31, + "start_line": 1 + }, + "While expanding the reference '__calldata_ptr' in:" + ], + "start_col": 20, + "start_line": 104 + }, + "While handling calldata argument 'subtracted_value'" + ], + "start_col": 22, + "start_line": 3 + } + }, + "1451": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.decreaseAllowance" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 58, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/arg_processor/01cba52f8515996bb9d7070bde81ff39281d096d7024a558efcba6e1fd2402cf.cairo" + }, + "parent_location": [ + { + "end_col": 23, + "end_line": 103, + "input_file": { + "filename": "./tests/fixtures/ERC20.cairo" + }, + "start_col": 6, + "start_line": 103 + }, + "While handling calldata of" + ], + "start_col": 1, + "start_line": 1 + } + }, + "1452": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.decreaseAllowance" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 64, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/decreaseAllowance/b2c52ca2d2a8fc8791a983086d8716c5eacd0c3d62934914d2286f84b98ff4cb.cairo" + }, + "parent_location": [ + { + "end_col": 42, + "end_line": 103, + "input_file": { + "filename": "./tests/fixtures/ERC20.cairo" + }, + "parent_location": [ + { + "end_col": 55, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/decreaseAllowance/e44e20cea14fd052bfd56e74769715e588b4185c73d4812f14a6aed701cae62f.cairo" + }, + "parent_location": [ + { + "end_col": 23, + "end_line": 103, + "input_file": { + "filename": "./tests/fixtures/ERC20.cairo" + }, + "start_col": 6, + "start_line": 103 + }, + "While constructing the external wrapper for:" + ], + "start_col": 44, + "start_line": 1 + }, + "While expanding the reference 'syscall_ptr' in:" + ], + "start_col": 24, + "start_line": 103 + }, + "While constructing the external wrapper for:" + ], + "start_col": 19, + "start_line": 1 + } + }, + "1453": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.decreaseAllowance" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 110, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/decreaseAllowance/9684a85e93c782014ca14293edea4eb2502039a5a7b6538ecd39c56faaf12529.cairo" + }, + "parent_location": [ + { + "end_col": 70, + "end_line": 103, + "input_file": { + "filename": "./tests/fixtures/ERC20.cairo" + }, + "parent_location": [ + { + "end_col": 82, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/decreaseAllowance/e44e20cea14fd052bfd56e74769715e588b4185c73d4812f14a6aed701cae62f.cairo" + }, + "parent_location": [ + { + "end_col": 23, + "end_line": 103, + "input_file": { + "filename": "./tests/fixtures/ERC20.cairo" + }, + "start_col": 6, + "start_line": 103 + }, + "While constructing the external wrapper for:" + ], + "start_col": 70, + "start_line": 1 + }, + "While expanding the reference 'pedersen_ptr' in:" + ], + "start_col": 44, + "start_line": 103 + }, + "While constructing the external wrapper for:" + ], + "start_col": 20, + "start_line": 1 + } + }, + "1454": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.decreaseAllowance" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 67, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/decreaseAllowance/741ea357d6336b0bed7bf0472425acd0311d543883b803388880e60a232040c7.cairo" + }, + "parent_location": [ + { + "end_col": 87, + "end_line": 103, + "input_file": { + "filename": "./tests/fixtures/ERC20.cairo" + }, + "parent_location": [ + { + "end_col": 115, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/decreaseAllowance/e44e20cea14fd052bfd56e74769715e588b4185c73d4812f14a6aed701cae62f.cairo" + }, + "parent_location": [ + { + "end_col": 23, + "end_line": 103, + "input_file": { + "filename": "./tests/fixtures/ERC20.cairo" + }, + "start_col": 6, + "start_line": 103 + }, + "While constructing the external wrapper for:" + ], + "start_col": 100, + "start_line": 1 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 72, + "start_line": 103 + }, + "While constructing the external wrapper for:" + ], + "start_col": 23, + "start_line": 1 + } + }, + "1455": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.decreaseAllowance" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 46, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/arg_processor/144fa44c78b9ff9755794c84d3169b8c097256057e7a09154cdae1a978b57fed.cairo" + }, + "parent_location": [ + { + "end_col": 18, + "end_line": 104, + "input_file": { + "filename": "./tests/fixtures/ERC20.cairo" + }, + "parent_location": [ + { + "end_col": 147, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/decreaseAllowance/e44e20cea14fd052bfd56e74769715e588b4185c73d4812f14a6aed701cae62f.cairo" + }, + "parent_location": [ + { + "end_col": 23, + "end_line": 103, + "input_file": { + "filename": "./tests/fixtures/ERC20.cairo" + }, + "start_col": 6, + "start_line": 103 + }, + "While constructing the external wrapper for:" + ], + "start_col": 125, + "start_line": 1 + }, + "While expanding the reference '__calldata_arg_spender' in:" + ], + "start_col": 5, + "start_line": 104 + }, + "While handling calldata argument 'spender'" + ], + "start_col": 30, + "start_line": 1 + } + }, + "1456": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.decreaseAllowance" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 67, + "end_line": 2, + "input_file": { + "filename": "autogen/starknet/arg_processor/088fc10f121c4edf0412d2bc1088f20f4b09fa1a3902dfc21b754224dcfd427e.cairo" + }, + "parent_location": [ + { + "end_col": 45, + "end_line": 104, + "input_file": { + "filename": "./tests/fixtures/ERC20.cairo" + }, + "parent_location": [ + { + "end_col": 197, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/decreaseAllowance/e44e20cea14fd052bfd56e74769715e588b4185c73d4812f14a6aed701cae62f.cairo" + }, + "parent_location": [ + { + "end_col": 23, + "end_line": 103, + "input_file": { + "filename": "./tests/fixtures/ERC20.cairo" + }, + "start_col": 6, + "start_line": 103 + }, + "While constructing the external wrapper for:" + ], + "start_col": 166, + "start_line": 1 + }, + "While expanding the reference '__calldata_arg_subtracted_value' in:" + ], + "start_col": 20, + "start_line": 104 + }, + "While handling calldata argument 'subtracted_value'" + ], + "start_col": 39, + "start_line": 1 + } + }, + "1457": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.decreaseAllowance" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 67, + "end_line": 2, + "input_file": { + "filename": "autogen/starknet/arg_processor/088fc10f121c4edf0412d2bc1088f20f4b09fa1a3902dfc21b754224dcfd427e.cairo" + }, + "parent_location": [ + { + "end_col": 45, + "end_line": 104, + "input_file": { + "filename": "./tests/fixtures/ERC20.cairo" + }, + "parent_location": [ + { + "end_col": 197, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/decreaseAllowance/e44e20cea14fd052bfd56e74769715e588b4185c73d4812f14a6aed701cae62f.cairo" + }, + "parent_location": [ + { + "end_col": 23, + "end_line": 103, + "input_file": { + "filename": "./tests/fixtures/ERC20.cairo" + }, + "start_col": 6, + "start_line": 103 + }, + "While constructing the external wrapper for:" + ], + "start_col": 166, + "start_line": 1 + }, + "While expanding the reference '__calldata_arg_subtracted_value' in:" + ], + "start_col": 20, + "start_line": 104 + }, + "While handling calldata argument 'subtracted_value'" + ], + "start_col": 39, + "start_line": 1 + } + }, + "1458": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.decreaseAllowance" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 23, + "end_line": 103, + "input_file": { + "filename": "./tests/fixtures/ERC20.cairo" + }, + "start_col": 6, + "start_line": 103 + } + }, + "1460": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.decreaseAllowance" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 115, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/decreaseAllowance/e44e20cea14fd052bfd56e74769715e588b4185c73d4812f14a6aed701cae62f.cairo" + }, + "parent_location": [ + { + "end_col": 23, + "end_line": 103, + "input_file": { + "filename": "./tests/fixtures/ERC20.cairo" + }, + "parent_location": [ + { + "end_col": 106, + "end_line": 2, + "input_file": { + "filename": "autogen/starknet/external/decreaseAllowance/e44e20cea14fd052bfd56e74769715e588b4185c73d4812f14a6aed701cae62f.cairo" + }, + "parent_location": [ + { + "end_col": 23, + "end_line": 103, + "input_file": { + "filename": "./tests/fixtures/ERC20.cairo" + }, + "start_col": 6, + "start_line": 103 + }, + "While constructing the external wrapper for:" + ], + "start_col": 91, + "start_line": 2 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 6, + "start_line": 103 + }, + "While constructing the external wrapper for:" + ], + "start_col": 100, + "start_line": 1 + } + }, + "1461": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.decreaseAllowance" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 107, + "end_line": 2, + "input_file": { + "filename": "autogen/starknet/external/decreaseAllowance/e44e20cea14fd052bfd56e74769715e588b4185c73d4812f14a6aed701cae62f.cairo" + }, + "parent_location": [ + { + "end_col": 23, + "end_line": 103, + "input_file": { + "filename": "./tests/fixtures/ERC20.cairo" + }, + "start_col": 6, + "start_line": 103 + }, + "While constructing the external wrapper for:" + ], + "start_col": 48, + "start_line": 2 + } + }, + "1463": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.decreaseAllowance" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 55, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/decreaseAllowance/e44e20cea14fd052bfd56e74769715e588b4185c73d4812f14a6aed701cae62f.cairo" + }, + "parent_location": [ + { + "end_col": 23, + "end_line": 103, + "input_file": { + "filename": "./tests/fixtures/ERC20.cairo" + }, + "parent_location": [ + { + "end_col": 20, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/decreaseAllowance/da17921a4e81c09e730800bbf23bfdbe5e9e6bfaedc59d80fbf62087fa43c27d.cairo" + }, + "parent_location": [ + { + "end_col": 23, + "end_line": 103, + "input_file": { + "filename": "./tests/fixtures/ERC20.cairo" + }, + "start_col": 6, + "start_line": 103 + }, + "While constructing the external wrapper for:" + ], + "start_col": 9, + "start_line": 1 + }, + "While expanding the reference 'syscall_ptr' in:" + ], + "start_col": 6, + "start_line": 103 + }, + "While constructing the external wrapper for:" + ], + "start_col": 44, + "start_line": 1 + } + }, + "1464": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.decreaseAllowance" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 82, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/decreaseAllowance/e44e20cea14fd052bfd56e74769715e588b4185c73d4812f14a6aed701cae62f.cairo" + }, + "parent_location": [ + { + "end_col": 23, + "end_line": 103, + "input_file": { + "filename": "./tests/fixtures/ERC20.cairo" + }, + "parent_location": [ + { + "end_col": 33, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/decreaseAllowance/da17921a4e81c09e730800bbf23bfdbe5e9e6bfaedc59d80fbf62087fa43c27d.cairo" + }, + "parent_location": [ + { + "end_col": 23, + "end_line": 103, + "input_file": { + "filename": "./tests/fixtures/ERC20.cairo" + }, + "start_col": 6, + "start_line": 103 + }, + "While constructing the external wrapper for:" + ], + "start_col": 21, + "start_line": 1 + }, + "While expanding the reference 'pedersen_ptr' in:" + ], + "start_col": 6, + "start_line": 103 + }, + "While constructing the external wrapper for:" + ], + "start_col": 70, + "start_line": 1 + } + }, + "1465": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.decreaseAllowance" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 21, + "end_line": 2, + "input_file": { + "filename": "autogen/starknet/external/decreaseAllowance/e44e20cea14fd052bfd56e74769715e588b4185c73d4812f14a6aed701cae62f.cairo" + }, + "parent_location": [ + { + "end_col": 23, + "end_line": 103, + "input_file": { + "filename": "./tests/fixtures/ERC20.cairo" + }, + "parent_location": [ + { + "end_col": 49, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/decreaseAllowance/da17921a4e81c09e730800bbf23bfdbe5e9e6bfaedc59d80fbf62087fa43c27d.cairo" + }, + "parent_location": [ + { + "end_col": 23, + "end_line": 103, + "input_file": { + "filename": "./tests/fixtures/ERC20.cairo" + }, + "start_col": 6, + "start_line": 103 + }, + "While constructing the external wrapper for:" + ], + "start_col": 34, + "start_line": 1 + }, + "While expanding the reference 'range_check_ptr' in:" + ], + "start_col": 6, + "start_line": 103 + }, + "While constructing the external wrapper for:" + ], + "start_col": 6, + "start_line": 2 + } + }, + "1466": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.decreaseAllowance" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 35, + "end_line": 2, + "input_file": { + "filename": "autogen/starknet/external/decreaseAllowance/e44e20cea14fd052bfd56e74769715e588b4185c73d4812f14a6aed701cae62f.cairo" + }, + "parent_location": [ + { + "end_col": 23, + "end_line": 103, + "input_file": { + "filename": "./tests/fixtures/ERC20.cairo" + }, + "parent_location": [ + { + "end_col": 62, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/decreaseAllowance/da17921a4e81c09e730800bbf23bfdbe5e9e6bfaedc59d80fbf62087fa43c27d.cairo" + }, + "parent_location": [ + { + "end_col": 23, + "end_line": 103, + "input_file": { + "filename": "./tests/fixtures/ERC20.cairo" + }, + "start_col": 6, + "start_line": 103 + }, + "While constructing the external wrapper for:" + ], + "start_col": 50, + "start_line": 1 + }, + "While expanding the reference 'retdata_size' in:" + ], + "start_col": 6, + "start_line": 103 + }, + "While constructing the external wrapper for:" + ], + "start_col": 23, + "start_line": 2 + } + }, + "1467": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.decreaseAllowance" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 44, + "end_line": 2, + "input_file": { + "filename": "autogen/starknet/external/decreaseAllowance/e44e20cea14fd052bfd56e74769715e588b4185c73d4812f14a6aed701cae62f.cairo" + }, + "parent_location": [ + { + "end_col": 23, + "end_line": 103, + "input_file": { + "filename": "./tests/fixtures/ERC20.cairo" + }, + "parent_location": [ + { + "end_col": 70, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/decreaseAllowance/da17921a4e81c09e730800bbf23bfdbe5e9e6bfaedc59d80fbf62087fa43c27d.cairo" + }, + "parent_location": [ + { + "end_col": 23, + "end_line": 103, + "input_file": { + "filename": "./tests/fixtures/ERC20.cairo" + }, + "start_col": 6, + "start_line": 103 + }, + "While constructing the external wrapper for:" + ], + "start_col": 63, + "start_line": 1 + }, + "While expanding the reference 'retdata' in:" + ], + "start_col": 6, + "start_line": 103 + }, + "While constructing the external wrapper for:" + ], + "start_col": 37, + "start_line": 2 + } + }, + "1468": { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.decreaseAllowance" + ], + "flow_tracking_data": null, + "hints": [], + "inst": { + "end_col": 72, + "end_line": 1, + "input_file": { + "filename": "autogen/starknet/external/decreaseAllowance/da17921a4e81c09e730800bbf23bfdbe5e9e6bfaedc59d80fbf62087fa43c27d.cairo" + }, + "parent_location": [ + { + "end_col": 23, + "end_line": 103, + "input_file": { + "filename": "./tests/fixtures/ERC20.cairo" + }, + "start_col": 6, + "start_line": 103 + }, + "While constructing the external wrapper for:" + ], + "start_col": 1, + "start_line": 1 + } + } + } + }, + "hints": { + "0": [ + { + "accessible_scopes": [ + "starkware.cairo.common.alloc", + "starkware.cairo.common.alloc.alloc" + ], + "code": "memory[ap] = segments.add()", + "flow_tracking_data": { + "ap_tracking": { + "group": 0, + "offset": 0 + }, + "reference_ids": {} + } + } + ], + "12": [ + { + "accessible_scopes": [ + "starkware.starknet.common.syscalls", + "starkware.starknet.common.syscalls.get_caller_address" + ], + "code": "syscall_handler.get_caller_address(segments=segments, syscall_ptr=ids.syscall_ptr)", + "flow_tracking_data": { + "ap_tracking": { + "group": 2, + "offset": 1 + }, + "reference_ids": { + "starkware.starknet.common.syscalls.get_caller_address.syscall_ptr": 0 + } + } + } + ], + "20": [ + { + "accessible_scopes": [ + "starkware.starknet.common.syscalls", + "starkware.starknet.common.syscalls.storage_read" + ], + "code": "syscall_handler.storage_read(segments=segments, syscall_ptr=ids.syscall_ptr)", + "flow_tracking_data": { + "ap_tracking": { + "group": 3, + "offset": 1 + }, + "reference_ids": { + "starkware.starknet.common.syscalls.storage_read.syscall_ptr": 1 + } + } + } + ], + "29": [ + { + "accessible_scopes": [ + "starkware.starknet.common.syscalls", + "starkware.starknet.common.syscalls.storage_write" + ], + "code": "syscall_handler.storage_write(segments=segments, syscall_ptr=ids.syscall_ptr)", + "flow_tracking_data": { + "ap_tracking": { + "group": 4, + "offset": 1 + }, + "reference_ids": { + "starkware.starknet.common.syscalls.storage_write.syscall_ptr": 2 + } + } + } + ], + "39": [ + { + "accessible_scopes": [ + "starkware.starknet.common.syscalls", + "starkware.starknet.common.syscalls.emit_event" + ], + "code": "syscall_handler.emit_event(segments=segments, syscall_ptr=ids.syscall_ptr)", + "flow_tracking_data": { + "ap_tracking": { + "group": 5, + "offset": 1 + }, + "reference_ids": { + "starkware.starknet.common.syscalls.emit_event.syscall_ptr": 3 + } + } + } + ], + "42": [ + { + "accessible_scopes": [ + "starkware.cairo.common.math", + "starkware.cairo.common.math.assert_not_zero" + ], + "code": "from starkware.cairo.common.math_utils import assert_integer\nassert_integer(ids.value)\nassert ids.value % PRIME != 0, f'assert_not_zero failed: {ids.value} = 0.'", + "flow_tracking_data": { + "ap_tracking": { + "group": 6, + "offset": 0 + }, + "reference_ids": { + "starkware.cairo.common.math.assert_not_zero.value": 4 + } + } + } + ], + "47": [ + { + "accessible_scopes": [ + "starkware.cairo.common.math", + "starkware.cairo.common.math.assert_nn" + ], + "code": "from starkware.cairo.common.math_utils import assert_integer\nassert_integer(ids.a)\nassert 0 <= ids.a % PRIME < range_check_builtin.bound, f'a = {ids.a} is out of range.'", + "flow_tracking_data": { + "ap_tracking": { + "group": 7, + "offset": 0 + }, + "reference_ids": { + "starkware.cairo.common.math.assert_nn.a": 5 + } + } + } + ], + "56": [ + { + "accessible_scopes": [ + "starkware.cairo.common.math", + "starkware.cairo.common.math.assert_250_bit" + ], + "code": "from starkware.cairo.common.math_utils import as_int\n\n# Correctness check.\nvalue = as_int(ids.value, PRIME) % PRIME\nassert value < ids.UPPER_BOUND, f'{value} is outside of the range [0, 2**250).'\n\n# Calculation for the assertion.\nids.high, ids.low = divmod(ids.value, ids.SHIFT)", + "flow_tracking_data": { + "ap_tracking": { + "group": 9, + "offset": 0 + }, + "reference_ids": { + "starkware.cairo.common.math.assert_250_bit.high": 8, + "starkware.cairo.common.math.assert_250_bit.low": 7, + "starkware.cairo.common.math.assert_250_bit.value": 6 + } + } + } + ], + "69": [ + { + "accessible_scopes": [ + "starkware.cairo.common.math", + "starkware.cairo.common.math.assert_le_felt" + ], + "code": "import itertools\n\nfrom starkware.cairo.common.math_utils import assert_integer\nassert_integer(ids.a)\nassert_integer(ids.b)\na = ids.a % PRIME\nb = ids.b % PRIME\nassert a <= b, f'a = {a} is not less than or equal to b = {b}.'\n\n# Find an arc less than PRIME / 3, and another less than PRIME / 2.\nlengths_and_indices = [(a, 0), (b - a, 1), (PRIME - 1 - b, 2)]\nlengths_and_indices.sort()\nassert lengths_and_indices[0][0] <= PRIME // 3 and lengths_and_indices[1][0] <= PRIME // 2\nexcluded = lengths_and_indices[2][1]\n\nmemory[ids.range_check_ptr + 1], memory[ids.range_check_ptr + 0] = (\n divmod(lengths_and_indices[0][0], ids.PRIME_OVER_3_HIGH))\nmemory[ids.range_check_ptr + 3], memory[ids.range_check_ptr + 2] = (\n divmod(lengths_and_indices[1][0], ids.PRIME_OVER_2_HIGH))", + "flow_tracking_data": { + "ap_tracking": { + "group": 10, + "offset": 0 + }, + "reference_ids": { + "starkware.cairo.common.math.assert_le_felt.a": 9, + "starkware.cairo.common.math.assert_le_felt.b": 10, + "starkware.cairo.common.math.assert_le_felt.range_check_ptr": 11 + } + } + } + ], + "79": [ + { + "accessible_scopes": [ + "starkware.cairo.common.math", + "starkware.cairo.common.math.assert_le_felt" + ], + "code": "memory[ap] = 1 if excluded != 0 else 0", + "flow_tracking_data": { + "ap_tracking": { + "group": 10, + "offset": 8 + }, + "reference_ids": {} + } + } + ], + "93": [ + { + "accessible_scopes": [ + "starkware.cairo.common.math", + "starkware.cairo.common.math.assert_le_felt" + ], + "code": "memory[ap] = 1 if excluded != 1 else 0", + "flow_tracking_data": { + "ap_tracking": { + "group": 10, + "offset": 9 + }, + "reference_ids": {} + } + } + ], + "105": [ + { + "accessible_scopes": [ + "starkware.cairo.common.math", + "starkware.cairo.common.math.assert_le_felt" + ], + "code": "assert excluded == 2", + "flow_tracking_data": { + "ap_tracking": { + "group": 10, + "offset": 10 + }, + "reference_ids": {} + } + } + ], + "116": [ + { + "accessible_scopes": [ + "starkware.starknet.common.storage", + "starkware.starknet.common.storage.normalize_address" + ], + "code": "# Verify the assumptions on the relationship between 2**250, ADDR_BOUND and PRIME.\nADDR_BOUND = ids.ADDR_BOUND % PRIME\nassert (2**250 < ADDR_BOUND <= 2**251) and (2 * 2**250 < PRIME) and (\n ADDR_BOUND * 2 > PRIME), \\\n 'normalize_address() cannot be used with the current constants.'\nids.is_small = 1 if ids.addr < ADDR_BOUND else 0", + "flow_tracking_data": { + "ap_tracking": { + "group": 11, + "offset": 1 + }, + "reference_ids": { + "starkware.starknet.common.storage.normalize_address.addr": 12, + "starkware.starknet.common.storage.normalize_address.is_small": 13 + } + } + } + ], + "134": [ + { + "accessible_scopes": [ + "starkware.starknet.common.storage", + "starkware.starknet.common.storage.normalize_address" + ], + "code": "ids.is_250 = 1 if ids.addr < 2**250 else 0", + "flow_tracking_data": { + "ap_tracking": { + "group": 11, + "offset": 2 + }, + "reference_ids": { + "starkware.starknet.common.storage.normalize_address.addr": 12, + "starkware.starknet.common.storage.normalize_address.is_250": 14 + } + } + } + ], + "154": [ + { + "accessible_scopes": [ + "starkware.cairo.common.math_cmp", + "starkware.cairo.common.math_cmp.is_nn" + ], + "code": "memory[ap] = 0 if 0 <= (ids.a % PRIME) < range_check_builtin.bound else 1", + "flow_tracking_data": { + "ap_tracking": { + "group": 12, + "offset": 0 + }, + "reference_ids": { + "starkware.cairo.common.math_cmp.is_nn.a": 15 + } + } + } + ], + "164": [ + { + "accessible_scopes": [ + "starkware.cairo.common.math_cmp", + "starkware.cairo.common.math_cmp.is_nn" + ], + "code": "memory[ap] = 0 if 0 <= ((-ids.a - 1) % PRIME) < range_check_builtin.bound else 1", + "flow_tracking_data": { + "ap_tracking": { + "group": 12, + "offset": 1 + }, + "reference_ids": { + "starkware.cairo.common.math_cmp.is_nn.a": 15 + } + } + } + ], + "199": [ + { + "accessible_scopes": [ + "starkware.cairo.common.uint256", + "starkware.cairo.common.uint256.uint256_add" + ], + "code": "sum_low = ids.a.low + ids.b.low\nids.carry_low = 1 if sum_low >= ids.SHIFT else 0\nsum_high = ids.a.high + ids.b.high + ids.carry_low\nids.carry_high = 1 if sum_high >= ids.SHIFT else 0", + "flow_tracking_data": { + "ap_tracking": { + "group": 15, + "offset": 4 + }, + "reference_ids": { + "starkware.cairo.common.uint256.uint256_add.a": 16, + "starkware.cairo.common.uint256.uint256_add.b": 17, + "starkware.cairo.common.uint256.uint256_add.carry_high": 19, + "starkware.cairo.common.uint256.uint256_add.carry_low": 18 + } + } + } + ], + "1046": [ + { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.constructor" + ], + "code": "memory[ap] = segments.add()", + "flow_tracking_data": { + "ap_tracking": { + "group": 68, + "offset": 89 + }, + "reference_ids": {} + } + } + ], + "1061": [ + { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.name_encode_return" + ], + "code": "memory[ap] = segments.add()", + "flow_tracking_data": { + "ap_tracking": { + "group": 70, + "offset": 0 + }, + "reference_ids": {} + } + } + ], + "1091": [ + { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.symbol_encode_return" + ], + "code": "memory[ap] = segments.add()", + "flow_tracking_data": { + "ap_tracking": { + "group": 73, + "offset": 0 + }, + "reference_ids": {} + } + } + ], + "1121": [ + { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.totalSupply_encode_return" + ], + "code": "memory[ap] = segments.add()", + "flow_tracking_data": { + "ap_tracking": { + "group": 76, + "offset": 0 + }, + "reference_ids": {} + } + } + ], + "1152": [ + { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.decimals_encode_return" + ], + "code": "memory[ap] = segments.add()", + "flow_tracking_data": { + "ap_tracking": { + "group": 79, + "offset": 0 + }, + "reference_ids": {} + } + } + ], + "1183": [ + { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.balanceOf_encode_return" + ], + "code": "memory[ap] = segments.add()", + "flow_tracking_data": { + "ap_tracking": { + "group": 82, + "offset": 0 + }, + "reference_ids": {} + } + } + ], + "1219": [ + { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.allowance_encode_return" + ], + "code": "memory[ap] = segments.add()", + "flow_tracking_data": { + "ap_tracking": { + "group": 85, + "offset": 0 + }, + "reference_ids": {} + } + } + ], + "1268": [ + { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.mint" + ], + "code": "memory[ap] = segments.add()", + "flow_tracking_data": { + "ap_tracking": { + "group": 88, + "offset": 334 + }, + "reference_ids": {} + } + } + ], + "1286": [ + { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.transfer_encode_return" + ], + "code": "memory[ap] = segments.add()", + "flow_tracking_data": { + "ap_tracking": { + "group": 91, + "offset": 0 + }, + "reference_ids": {} + } + } + ], + "1325": [ + { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.transferFrom_encode_return" + ], + "code": "memory[ap] = segments.add()", + "flow_tracking_data": { + "ap_tracking": { + "group": 96, + "offset": 0 + }, + "reference_ids": {} + } + } + ], + "1364": [ + { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.approve_encode_return" + ], + "code": "memory[ap] = segments.add()", + "flow_tracking_data": { + "ap_tracking": { + "group": 101, + "offset": 0 + }, + "reference_ids": {} + } + } + ], + "1402": [ + { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.increaseAllowance_encode_return" + ], + "code": "memory[ap] = segments.add()", + "flow_tracking_data": { + "ap_tracking": { + "group": 106, + "offset": 0 + }, + "reference_ids": {} + } + } + ], + "1440": [ + { + "accessible_scopes": [ + "__main__", + "__main__", + "__wrappers__", + "__wrappers__.decreaseAllowance_encode_return" + ], + "code": "memory[ap] = segments.add()", + "flow_tracking_data": { + "ap_tracking": { + "group": 111, + "offset": 0 + }, + "reference_ids": {} + } + } + ] + }, + "identifiers": { + "__main__.ERC20": { + "destination": "openzeppelin.token.erc20.library.ERC20", + "type": "alias" + }, + "__main__.HashBuiltin": { + "destination": "starkware.cairo.common.cairo_builtins.HashBuiltin", + "type": "alias" + }, + "__main__.Uint256": { + "destination": "starkware.cairo.common.uint256.Uint256", + "type": "alias" + }, + "__main__.allowance": { + "decorators": [ + "view" + ], + "pc": 1211, + "type": "function" + }, + "__main__.allowance.Args": { + "full_name": "__main__.allowance.Args", + "members": { + "owner": { + "cairo_type": "felt", + "offset": 0 + }, + "spender": { + "cairo_type": "felt", + "offset": 1 + } + }, + "size": 2, + "type": "struct" + }, + "__main__.allowance.ImplicitArgs": { + "full_name": "__main__.allowance.ImplicitArgs", + "members": { + "pedersen_ptr": { + "cairo_type": "starkware.cairo.common.cairo_builtins.HashBuiltin*", + "offset": 1 + }, + "range_check_ptr": { + "cairo_type": "felt", + "offset": 2 + }, + "syscall_ptr": { + "cairo_type": "felt*", + "offset": 0 + } + }, + "size": 3, + "type": "struct" + }, + "__main__.allowance.Return": { + "cairo_type": "(remaining: starkware.cairo.common.uint256.Uint256)", + "type": "type_definition" + }, + "__main__.allowance.SIZEOF_LOCALS": { + "type": "const", + "value": 0 + }, + "__main__.approve": { + "decorators": [ + "external" + ], + "pc": 1355, + "type": "function" + }, + "__main__.approve.Args": { + "full_name": "__main__.approve.Args", + "members": { + "amount": { + "cairo_type": "starkware.cairo.common.uint256.Uint256", + "offset": 1 + }, + "spender": { + "cairo_type": "felt", + "offset": 0 + } + }, + "size": 3, + "type": "struct" + }, + "__main__.approve.ImplicitArgs": { + "full_name": "__main__.approve.ImplicitArgs", + "members": { + "pedersen_ptr": { + "cairo_type": "starkware.cairo.common.cairo_builtins.HashBuiltin*", + "offset": 1 + }, + "range_check_ptr": { + "cairo_type": "felt", + "offset": 2 + }, + "syscall_ptr": { + "cairo_type": "felt*", + "offset": 0 + } + }, + "size": 3, + "type": "struct" + }, + "__main__.approve.Return": { + "cairo_type": "(success: felt)", + "type": "type_definition" + }, + "__main__.approve.SIZEOF_LOCALS": { + "type": "const", + "value": 0 + }, + "__main__.balanceOf": { + "decorators": [ + "view" + ], + "pc": 1176, + "type": "function" + }, + "__main__.balanceOf.Args": { + "full_name": "__main__.balanceOf.Args", + "members": { + "account": { + "cairo_type": "felt", + "offset": 0 + } + }, + "size": 1, + "type": "struct" + }, + "__main__.balanceOf.ImplicitArgs": { + "full_name": "__main__.balanceOf.ImplicitArgs", + "members": { + "pedersen_ptr": { + "cairo_type": "starkware.cairo.common.cairo_builtins.HashBuiltin*", + "offset": 1 + }, + "range_check_ptr": { + "cairo_type": "felt", + "offset": 2 + }, + "syscall_ptr": { + "cairo_type": "felt*", + "offset": 0 + } + }, + "size": 3, + "type": "struct" + }, + "__main__.balanceOf.Return": { + "cairo_type": "(balance: starkware.cairo.common.uint256.Uint256)", + "type": "type_definition" + }, + "__main__.balanceOf.SIZEOF_LOCALS": { + "type": "const", + "value": 0 + }, + "__main__.constructor": { + "decorators": [ + "constructor" + ], + "pc": 1026, + "type": "function" + }, + "__main__.constructor.Args": { + "full_name": "__main__.constructor.Args", + "members": { + "decimals": { + "cairo_type": "felt", + "offset": 2 + }, + "name": { + "cairo_type": "felt", + "offset": 0 + }, + "symbol": { + "cairo_type": "felt", + "offset": 1 + } + }, + "size": 3, + "type": "struct" + }, + "__main__.constructor.ImplicitArgs": { + "full_name": "__main__.constructor.ImplicitArgs", + "members": { + "pedersen_ptr": { + "cairo_type": "starkware.cairo.common.cairo_builtins.HashBuiltin*", + "offset": 1 + }, + "range_check_ptr": { + "cairo_type": "felt", + "offset": 2 + }, + "syscall_ptr": { + "cairo_type": "felt*", + "offset": 0 + } + }, + "size": 3, + "type": "struct" + }, + "__main__.constructor.Return": { + "cairo_type": "()", + "type": "type_definition" + }, + "__main__.constructor.SIZEOF_LOCALS": { + "type": "const", + "value": 0 + }, + "__main__.decimals": { + "decorators": [ + "view" + ], + "pc": 1146, + "type": "function" + }, + "__main__.decimals.Args": { + "full_name": "__main__.decimals.Args", + "members": {}, + "size": 0, + "type": "struct" + }, + "__main__.decimals.ImplicitArgs": { + "full_name": "__main__.decimals.ImplicitArgs", + "members": { + "pedersen_ptr": { + "cairo_type": "starkware.cairo.common.cairo_builtins.HashBuiltin*", + "offset": 1 + }, + "range_check_ptr": { + "cairo_type": "felt", + "offset": 2 + }, + "syscall_ptr": { + "cairo_type": "felt*", + "offset": 0 + } + }, + "size": 3, + "type": "struct" + }, + "__main__.decimals.Return": { + "cairo_type": "(decimals: felt)", + "type": "type_definition" + }, + "__main__.decimals.SIZEOF_LOCALS": { + "type": "const", + "value": 0 + }, + "__main__.decreaseAllowance": { + "decorators": [ + "external" + ], + "pc": 1431, + "type": "function" + }, + "__main__.decreaseAllowance.Args": { + "full_name": "__main__.decreaseAllowance.Args", + "members": { + "spender": { + "cairo_type": "felt", + "offset": 0 + }, + "subtracted_value": { + "cairo_type": "starkware.cairo.common.uint256.Uint256", + "offset": 1 + } + }, + "size": 3, + "type": "struct" + }, + "__main__.decreaseAllowance.ImplicitArgs": { + "full_name": "__main__.decreaseAllowance.ImplicitArgs", + "members": { + "pedersen_ptr": { + "cairo_type": "starkware.cairo.common.cairo_builtins.HashBuiltin*", + "offset": 1 + }, + "range_check_ptr": { + "cairo_type": "felt", + "offset": 2 + }, + "syscall_ptr": { + "cairo_type": "felt*", + "offset": 0 + } + }, + "size": 3, + "type": "struct" + }, + "__main__.decreaseAllowance.Return": { + "cairo_type": "(success: felt)", + "type": "type_definition" + }, + "__main__.decreaseAllowance.SIZEOF_LOCALS": { + "type": "const", + "value": 0 + }, + "__main__.increaseAllowance": { + "decorators": [ + "external" + ], + "pc": 1393, + "type": "function" + }, + "__main__.increaseAllowance.Args": { + "full_name": "__main__.increaseAllowance.Args", + "members": { + "added_value": { + "cairo_type": "starkware.cairo.common.uint256.Uint256", + "offset": 1 + }, + "spender": { + "cairo_type": "felt", + "offset": 0 + } + }, + "size": 3, + "type": "struct" + }, + "__main__.increaseAllowance.ImplicitArgs": { + "full_name": "__main__.increaseAllowance.ImplicitArgs", + "members": { + "pedersen_ptr": { + "cairo_type": "starkware.cairo.common.cairo_builtins.HashBuiltin*", + "offset": 1 + }, + "range_check_ptr": { + "cairo_type": "felt", + "offset": 2 + }, + "syscall_ptr": { + "cairo_type": "felt*", + "offset": 0 + } + }, + "size": 3, + "type": "struct" + }, + "__main__.increaseAllowance.Return": { + "cairo_type": "(success: felt)", + "type": "type_definition" + }, + "__main__.increaseAllowance.SIZEOF_LOCALS": { + "type": "const", + "value": 0 + }, + "__main__.mint": { + "decorators": [ + "external" + ], + "pc": 1248, + "type": "function" + }, + "__main__.mint.Args": { + "full_name": "__main__.mint.Args", + "members": { + "amount": { + "cairo_type": "starkware.cairo.common.uint256.Uint256", + "offset": 1 + }, + "to": { + "cairo_type": "felt", + "offset": 0 + } + }, + "size": 3, + "type": "struct" + }, + "__main__.mint.ImplicitArgs": { + "full_name": "__main__.mint.ImplicitArgs", + "members": { + "pedersen_ptr": { + "cairo_type": "starkware.cairo.common.cairo_builtins.HashBuiltin*", + "offset": 1 + }, + "range_check_ptr": { + "cairo_type": "felt", + "offset": 2 + }, + "syscall_ptr": { + "cairo_type": "felt*", + "offset": 0 + } + }, + "size": 3, + "type": "struct" + }, + "__main__.mint.Return": { + "cairo_type": "()", + "type": "type_definition" + }, + "__main__.mint.SIZEOF_LOCALS": { + "type": "const", + "value": 0 + }, + "__main__.name": { + "decorators": [ + "view" + ], + "pc": 1055, + "type": "function" + }, + "__main__.name.Args": { + "full_name": "__main__.name.Args", + "members": {}, + "size": 0, + "type": "struct" + }, + "__main__.name.ImplicitArgs": { + "full_name": "__main__.name.ImplicitArgs", + "members": { + "pedersen_ptr": { + "cairo_type": "starkware.cairo.common.cairo_builtins.HashBuiltin*", + "offset": 1 + }, + "range_check_ptr": { + "cairo_type": "felt", + "offset": 2 + }, + "syscall_ptr": { + "cairo_type": "felt*", + "offset": 0 + } + }, + "size": 3, + "type": "struct" + }, + "__main__.name.Return": { + "cairo_type": "(name: felt)", + "type": "type_definition" + }, + "__main__.name.SIZEOF_LOCALS": { + "type": "const", + "value": 0 + }, + "__main__.symbol": { + "decorators": [ + "view" + ], + "pc": 1085, + "type": "function" + }, + "__main__.symbol.Args": { + "full_name": "__main__.symbol.Args", + "members": {}, + "size": 0, + "type": "struct" + }, + "__main__.symbol.ImplicitArgs": { + "full_name": "__main__.symbol.ImplicitArgs", + "members": { + "pedersen_ptr": { + "cairo_type": "starkware.cairo.common.cairo_builtins.HashBuiltin*", + "offset": 1 + }, + "range_check_ptr": { + "cairo_type": "felt", + "offset": 2 + }, + "syscall_ptr": { + "cairo_type": "felt*", + "offset": 0 + } + }, + "size": 3, + "type": "struct" + }, + "__main__.symbol.Return": { + "cairo_type": "(symbol: felt)", + "type": "type_definition" + }, + "__main__.symbol.SIZEOF_LOCALS": { + "type": "const", + "value": 0 + }, + "__main__.totalSupply": { + "decorators": [ + "view" + ], + "pc": 1115, + "type": "function" + }, + "__main__.totalSupply.Args": { + "full_name": "__main__.totalSupply.Args", + "members": {}, + "size": 0, + "type": "struct" + }, + "__main__.totalSupply.ImplicitArgs": { + "full_name": "__main__.totalSupply.ImplicitArgs", + "members": { + "pedersen_ptr": { + "cairo_type": "starkware.cairo.common.cairo_builtins.HashBuiltin*", + "offset": 1 + }, + "range_check_ptr": { + "cairo_type": "felt", + "offset": 2 + }, + "syscall_ptr": { + "cairo_type": "felt*", + "offset": 0 + } + }, + "size": 3, + "type": "struct" + }, + "__main__.totalSupply.Return": { + "cairo_type": "(totalSupply: starkware.cairo.common.uint256.Uint256)", + "type": "type_definition" + }, + "__main__.totalSupply.SIZEOF_LOCALS": { + "type": "const", + "value": 0 + }, + "__main__.transfer": { + "decorators": [ + "external" + ], + "pc": 1277, + "type": "function" + }, + "__main__.transfer.Args": { + "full_name": "__main__.transfer.Args", + "members": { + "amount": { + "cairo_type": "starkware.cairo.common.uint256.Uint256", + "offset": 1 + }, + "recipient": { + "cairo_type": "felt", + "offset": 0 + } + }, + "size": 3, + "type": "struct" + }, + "__main__.transfer.ImplicitArgs": { + "full_name": "__main__.transfer.ImplicitArgs", + "members": { + "pedersen_ptr": { + "cairo_type": "starkware.cairo.common.cairo_builtins.HashBuiltin*", + "offset": 1 + }, + "range_check_ptr": { + "cairo_type": "felt", + "offset": 2 + }, + "syscall_ptr": { + "cairo_type": "felt*", + "offset": 0 + } + }, + "size": 3, + "type": "struct" + }, + "__main__.transfer.Return": { + "cairo_type": "(success: felt)", + "type": "type_definition" + }, + "__main__.transfer.SIZEOF_LOCALS": { + "type": "const", + "value": 0 + }, + "__main__.transferFrom": { + "decorators": [ + "external" + ], + "pc": 1315, + "type": "function" + }, + "__main__.transferFrom.Args": { + "full_name": "__main__.transferFrom.Args", + "members": { + "amount": { + "cairo_type": "starkware.cairo.common.uint256.Uint256", + "offset": 2 + }, + "recipient": { + "cairo_type": "felt", + "offset": 1 + }, + "sender": { + "cairo_type": "felt", + "offset": 0 + } + }, + "size": 4, + "type": "struct" + }, + "__main__.transferFrom.ImplicitArgs": { + "full_name": "__main__.transferFrom.ImplicitArgs", + "members": { + "pedersen_ptr": { + "cairo_type": "starkware.cairo.common.cairo_builtins.HashBuiltin*", + "offset": 1 + }, + "range_check_ptr": { + "cairo_type": "felt", + "offset": 2 + }, + "syscall_ptr": { + "cairo_type": "felt*", + "offset": 0 + } + }, + "size": 3, + "type": "struct" + }, + "__main__.transferFrom.Return": { + "cairo_type": "(success: felt)", + "type": "type_definition" + }, + "__main__.transferFrom.SIZEOF_LOCALS": { + "type": "const", + "value": 0 + }, + "__wrappers__.allowance": { + "decorators": [ + "view" + ], + "pc": 1229, + "type": "function" + }, + "__wrappers__.allowance.Args": { + "full_name": "__wrappers__.allowance.Args", + "members": {}, + "size": 0, + "type": "struct" + }, + "__wrappers__.allowance.ImplicitArgs": { + "full_name": "__wrappers__.allowance.ImplicitArgs", + "members": {}, + "size": 0, + "type": "struct" + }, + "__wrappers__.allowance.Return": { + "cairo_type": "(syscall_ptr: felt*, pedersen_ptr: starkware.cairo.common.cairo_builtins.HashBuiltin*, range_check_ptr: felt, size: felt, retdata: felt*)", + "type": "type_definition" + }, + "__wrappers__.allowance.SIZEOF_LOCALS": { + "type": "const", + "value": 0 + }, + "__wrappers__.allowance.__wrapped_func": { + "destination": "__main__.allowance", + "type": "alias" + }, + "__wrappers__.allowance_encode_return": { + "decorators": [], + "pc": 1219, + "type": "function" + }, + "__wrappers__.allowance_encode_return.Args": { + "full_name": "__wrappers__.allowance_encode_return.Args", + "members": { + "range_check_ptr": { + "cairo_type": "felt", + "offset": 2 + }, + "ret_value": { + "cairo_type": "(remaining: starkware.cairo.common.uint256.Uint256)", + "offset": 0 + } + }, + "size": 3, + "type": "struct" + }, + "__wrappers__.allowance_encode_return.ImplicitArgs": { + "full_name": "__wrappers__.allowance_encode_return.ImplicitArgs", + "members": {}, + "size": 0, + "type": "struct" + }, + "__wrappers__.allowance_encode_return.Return": { + "cairo_type": "(range_check_ptr: felt, data_len: felt, data: felt*)", + "type": "type_definition" + }, + "__wrappers__.allowance_encode_return.SIZEOF_LOCALS": { + "type": "const", + "value": 1 + }, + "__wrappers__.allowance_encode_return.memcpy": { + "destination": "starkware.cairo.common.memcpy.memcpy", + "type": "alias" + }, + "__wrappers__.approve": { + "decorators": [ + "external" + ], + "pc": 1373, + "type": "function" + }, + "__wrappers__.approve.Args": { + "full_name": "__wrappers__.approve.Args", + "members": {}, + "size": 0, + "type": "struct" + }, + "__wrappers__.approve.ImplicitArgs": { + "full_name": "__wrappers__.approve.ImplicitArgs", + "members": {}, + "size": 0, + "type": "struct" + }, + "__wrappers__.approve.Return": { + "cairo_type": "(syscall_ptr: felt*, pedersen_ptr: starkware.cairo.common.cairo_builtins.HashBuiltin*, range_check_ptr: felt, size: felt, retdata: felt*)", + "type": "type_definition" + }, + "__wrappers__.approve.SIZEOF_LOCALS": { + "type": "const", + "value": 0 + }, + "__wrappers__.approve.__wrapped_func": { + "destination": "__main__.approve", + "type": "alias" + }, + "__wrappers__.approve_encode_return": { + "decorators": [], + "pc": 1364, + "type": "function" + }, + "__wrappers__.approve_encode_return.Args": { + "full_name": "__wrappers__.approve_encode_return.Args", + "members": { + "range_check_ptr": { + "cairo_type": "felt", + "offset": 1 + }, + "ret_value": { + "cairo_type": "(success: felt)", + "offset": 0 + } + }, + "size": 2, + "type": "struct" + }, + "__wrappers__.approve_encode_return.ImplicitArgs": { + "full_name": "__wrappers__.approve_encode_return.ImplicitArgs", + "members": {}, + "size": 0, + "type": "struct" + }, + "__wrappers__.approve_encode_return.Return": { + "cairo_type": "(range_check_ptr: felt, data_len: felt, data: felt*)", + "type": "type_definition" + }, + "__wrappers__.approve_encode_return.SIZEOF_LOCALS": { + "type": "const", + "value": 1 + }, + "__wrappers__.approve_encode_return.memcpy": { + "destination": "starkware.cairo.common.memcpy.memcpy", + "type": "alias" + }, + "__wrappers__.balanceOf": { + "decorators": [ + "view" + ], + "pc": 1193, + "type": "function" + }, + "__wrappers__.balanceOf.Args": { + "full_name": "__wrappers__.balanceOf.Args", + "members": {}, + "size": 0, + "type": "struct" + }, + "__wrappers__.balanceOf.ImplicitArgs": { + "full_name": "__wrappers__.balanceOf.ImplicitArgs", + "members": {}, + "size": 0, + "type": "struct" + }, + "__wrappers__.balanceOf.Return": { + "cairo_type": "(syscall_ptr: felt*, pedersen_ptr: starkware.cairo.common.cairo_builtins.HashBuiltin*, range_check_ptr: felt, size: felt, retdata: felt*)", + "type": "type_definition" + }, + "__wrappers__.balanceOf.SIZEOF_LOCALS": { + "type": "const", + "value": 0 + }, + "__wrappers__.balanceOf.__wrapped_func": { + "destination": "__main__.balanceOf", + "type": "alias" + }, + "__wrappers__.balanceOf_encode_return": { + "decorators": [], + "pc": 1183, + "type": "function" + }, + "__wrappers__.balanceOf_encode_return.Args": { + "full_name": "__wrappers__.balanceOf_encode_return.Args", + "members": { + "range_check_ptr": { + "cairo_type": "felt", + "offset": 2 + }, + "ret_value": { + "cairo_type": "(balance: starkware.cairo.common.uint256.Uint256)", + "offset": 0 + } + }, + "size": 3, + "type": "struct" + }, + "__wrappers__.balanceOf_encode_return.ImplicitArgs": { + "full_name": "__wrappers__.balanceOf_encode_return.ImplicitArgs", + "members": {}, + "size": 0, + "type": "struct" + }, + "__wrappers__.balanceOf_encode_return.Return": { + "cairo_type": "(range_check_ptr: felt, data_len: felt, data: felt*)", + "type": "type_definition" + }, + "__wrappers__.balanceOf_encode_return.SIZEOF_LOCALS": { + "type": "const", + "value": 1 + }, + "__wrappers__.balanceOf_encode_return.memcpy": { + "destination": "starkware.cairo.common.memcpy.memcpy", + "type": "alias" + }, + "__wrappers__.constructor": { + "decorators": [ + "constructor" + ], + "pc": 1035, + "type": "function" + }, + "__wrappers__.constructor.Args": { + "full_name": "__wrappers__.constructor.Args", + "members": {}, + "size": 0, + "type": "struct" + }, + "__wrappers__.constructor.ImplicitArgs": { + "full_name": "__wrappers__.constructor.ImplicitArgs", + "members": {}, + "size": 0, + "type": "struct" + }, + "__wrappers__.constructor.Return": { + "cairo_type": "(syscall_ptr: felt*, pedersen_ptr: starkware.cairo.common.cairo_builtins.HashBuiltin*, range_check_ptr: felt, size: felt, retdata: felt*)", + "type": "type_definition" + }, + "__wrappers__.constructor.SIZEOF_LOCALS": { + "type": "const", + "value": 0 + }, + "__wrappers__.constructor.__wrapped_func": { + "destination": "__main__.constructor", + "type": "alias" + }, + "__wrappers__.constructor_encode_return.memcpy": { + "destination": "starkware.cairo.common.memcpy.memcpy", + "type": "alias" + }, + "__wrappers__.decimals": { + "decorators": [ + "view" + ], + "pc": 1161, + "type": "function" + }, + "__wrappers__.decimals.Args": { + "full_name": "__wrappers__.decimals.Args", + "members": {}, + "size": 0, + "type": "struct" + }, + "__wrappers__.decimals.ImplicitArgs": { + "full_name": "__wrappers__.decimals.ImplicitArgs", + "members": {}, + "size": 0, + "type": "struct" + }, + "__wrappers__.decimals.Return": { + "cairo_type": "(syscall_ptr: felt*, pedersen_ptr: starkware.cairo.common.cairo_builtins.HashBuiltin*, range_check_ptr: felt, size: felt, retdata: felt*)", + "type": "type_definition" + }, + "__wrappers__.decimals.SIZEOF_LOCALS": { + "type": "const", + "value": 0 + }, + "__wrappers__.decimals.__wrapped_func": { + "destination": "__main__.decimals", + "type": "alias" + }, + "__wrappers__.decimals_encode_return": { + "decorators": [], + "pc": 1152, + "type": "function" + }, + "__wrappers__.decimals_encode_return.Args": { + "full_name": "__wrappers__.decimals_encode_return.Args", + "members": { + "range_check_ptr": { + "cairo_type": "felt", + "offset": 1 + }, + "ret_value": { + "cairo_type": "(decimals: felt)", + "offset": 0 + } + }, + "size": 2, + "type": "struct" + }, + "__wrappers__.decimals_encode_return.ImplicitArgs": { + "full_name": "__wrappers__.decimals_encode_return.ImplicitArgs", + "members": {}, + "size": 0, + "type": "struct" + }, + "__wrappers__.decimals_encode_return.Return": { + "cairo_type": "(range_check_ptr: felt, data_len: felt, data: felt*)", + "type": "type_definition" + }, + "__wrappers__.decimals_encode_return.SIZEOF_LOCALS": { + "type": "const", + "value": 1 + }, + "__wrappers__.decimals_encode_return.memcpy": { + "destination": "starkware.cairo.common.memcpy.memcpy", + "type": "alias" + }, + "__wrappers__.decreaseAllowance": { + "decorators": [ + "external" + ], + "pc": 1449, + "type": "function" + }, + "__wrappers__.decreaseAllowance.Args": { + "full_name": "__wrappers__.decreaseAllowance.Args", + "members": {}, + "size": 0, + "type": "struct" + }, + "__wrappers__.decreaseAllowance.ImplicitArgs": { + "full_name": "__wrappers__.decreaseAllowance.ImplicitArgs", + "members": {}, + "size": 0, + "type": "struct" + }, + "__wrappers__.decreaseAllowance.Return": { + "cairo_type": "(syscall_ptr: felt*, pedersen_ptr: starkware.cairo.common.cairo_builtins.HashBuiltin*, range_check_ptr: felt, size: felt, retdata: felt*)", + "type": "type_definition" + }, + "__wrappers__.decreaseAllowance.SIZEOF_LOCALS": { + "type": "const", + "value": 0 + }, + "__wrappers__.decreaseAllowance.__wrapped_func": { + "destination": "__main__.decreaseAllowance", + "type": "alias" + }, + "__wrappers__.decreaseAllowance_encode_return": { + "decorators": [], + "pc": 1440, + "type": "function" + }, + "__wrappers__.decreaseAllowance_encode_return.Args": { + "full_name": "__wrappers__.decreaseAllowance_encode_return.Args", + "members": { + "range_check_ptr": { + "cairo_type": "felt", + "offset": 1 + }, + "ret_value": { + "cairo_type": "(success: felt)", + "offset": 0 + } + }, + "size": 2, + "type": "struct" + }, + "__wrappers__.decreaseAllowance_encode_return.ImplicitArgs": { + "full_name": "__wrappers__.decreaseAllowance_encode_return.ImplicitArgs", + "members": {}, + "size": 0, + "type": "struct" + }, + "__wrappers__.decreaseAllowance_encode_return.Return": { + "cairo_type": "(range_check_ptr: felt, data_len: felt, data: felt*)", + "type": "type_definition" + }, + "__wrappers__.decreaseAllowance_encode_return.SIZEOF_LOCALS": { + "type": "const", + "value": 1 + }, + "__wrappers__.decreaseAllowance_encode_return.memcpy": { + "destination": "starkware.cairo.common.memcpy.memcpy", + "type": "alias" + }, + "__wrappers__.increaseAllowance": { + "decorators": [ + "external" + ], + "pc": 1411, + "type": "function" + }, + "__wrappers__.increaseAllowance.Args": { + "full_name": "__wrappers__.increaseAllowance.Args", + "members": {}, + "size": 0, + "type": "struct" + }, + "__wrappers__.increaseAllowance.ImplicitArgs": { + "full_name": "__wrappers__.increaseAllowance.ImplicitArgs", + "members": {}, + "size": 0, + "type": "struct" + }, + "__wrappers__.increaseAllowance.Return": { + "cairo_type": "(syscall_ptr: felt*, pedersen_ptr: starkware.cairo.common.cairo_builtins.HashBuiltin*, range_check_ptr: felt, size: felt, retdata: felt*)", + "type": "type_definition" + }, + "__wrappers__.increaseAllowance.SIZEOF_LOCALS": { + "type": "const", + "value": 0 + }, + "__wrappers__.increaseAllowance.__wrapped_func": { + "destination": "__main__.increaseAllowance", + "type": "alias" + }, + "__wrappers__.increaseAllowance_encode_return": { + "decorators": [], + "pc": 1402, + "type": "function" + }, + "__wrappers__.increaseAllowance_encode_return.Args": { + "full_name": "__wrappers__.increaseAllowance_encode_return.Args", + "members": { + "range_check_ptr": { + "cairo_type": "felt", + "offset": 1 + }, + "ret_value": { + "cairo_type": "(success: felt)", + "offset": 0 + } + }, + "size": 2, + "type": "struct" + }, + "__wrappers__.increaseAllowance_encode_return.ImplicitArgs": { + "full_name": "__wrappers__.increaseAllowance_encode_return.ImplicitArgs", + "members": {}, + "size": 0, + "type": "struct" + }, + "__wrappers__.increaseAllowance_encode_return.Return": { + "cairo_type": "(range_check_ptr: felt, data_len: felt, data: felt*)", + "type": "type_definition" + }, + "__wrappers__.increaseAllowance_encode_return.SIZEOF_LOCALS": { + "type": "const", + "value": 1 + }, + "__wrappers__.increaseAllowance_encode_return.memcpy": { + "destination": "starkware.cairo.common.memcpy.memcpy", + "type": "alias" + }, + "__wrappers__.mint": { + "decorators": [ + "external" + ], + "pc": 1257, + "type": "function" + }, + "__wrappers__.mint.Args": { + "full_name": "__wrappers__.mint.Args", + "members": {}, + "size": 0, + "type": "struct" + }, + "__wrappers__.mint.ImplicitArgs": { + "full_name": "__wrappers__.mint.ImplicitArgs", + "members": {}, + "size": 0, + "type": "struct" + }, + "__wrappers__.mint.Return": { + "cairo_type": "(syscall_ptr: felt*, pedersen_ptr: starkware.cairo.common.cairo_builtins.HashBuiltin*, range_check_ptr: felt, size: felt, retdata: felt*)", + "type": "type_definition" + }, + "__wrappers__.mint.SIZEOF_LOCALS": { + "type": "const", + "value": 0 + }, + "__wrappers__.mint.__wrapped_func": { + "destination": "__main__.mint", + "type": "alias" + }, + "__wrappers__.mint_encode_return.memcpy": { + "destination": "starkware.cairo.common.memcpy.memcpy", + "type": "alias" + }, + "__wrappers__.name": { + "decorators": [ + "view" + ], + "pc": 1070, + "type": "function" + }, + "__wrappers__.name.Args": { + "full_name": "__wrappers__.name.Args", + "members": {}, + "size": 0, + "type": "struct" + }, + "__wrappers__.name.ImplicitArgs": { + "full_name": "__wrappers__.name.ImplicitArgs", + "members": {}, + "size": 0, + "type": "struct" + }, + "__wrappers__.name.Return": { + "cairo_type": "(syscall_ptr: felt*, pedersen_ptr: starkware.cairo.common.cairo_builtins.HashBuiltin*, range_check_ptr: felt, size: felt, retdata: felt*)", + "type": "type_definition" + }, + "__wrappers__.name.SIZEOF_LOCALS": { + "type": "const", + "value": 0 + }, + "__wrappers__.name.__wrapped_func": { + "destination": "__main__.name", + "type": "alias" + }, + "__wrappers__.name_encode_return": { + "decorators": [], + "pc": 1061, + "type": "function" + }, + "__wrappers__.name_encode_return.Args": { + "full_name": "__wrappers__.name_encode_return.Args", + "members": { + "range_check_ptr": { + "cairo_type": "felt", + "offset": 1 + }, + "ret_value": { + "cairo_type": "(name: felt)", + "offset": 0 + } + }, + "size": 2, + "type": "struct" + }, + "__wrappers__.name_encode_return.ImplicitArgs": { + "full_name": "__wrappers__.name_encode_return.ImplicitArgs", + "members": {}, + "size": 0, + "type": "struct" + }, + "__wrappers__.name_encode_return.Return": { + "cairo_type": "(range_check_ptr: felt, data_len: felt, data: felt*)", + "type": "type_definition" + }, + "__wrappers__.name_encode_return.SIZEOF_LOCALS": { + "type": "const", + "value": 1 + }, + "__wrappers__.name_encode_return.memcpy": { + "destination": "starkware.cairo.common.memcpy.memcpy", + "type": "alias" + }, + "__wrappers__.symbol": { + "decorators": [ + "view" + ], + "pc": 1100, + "type": "function" + }, + "__wrappers__.symbol.Args": { + "full_name": "__wrappers__.symbol.Args", + "members": {}, + "size": 0, + "type": "struct" + }, + "__wrappers__.symbol.ImplicitArgs": { + "full_name": "__wrappers__.symbol.ImplicitArgs", + "members": {}, + "size": 0, + "type": "struct" + }, + "__wrappers__.symbol.Return": { + "cairo_type": "(syscall_ptr: felt*, pedersen_ptr: starkware.cairo.common.cairo_builtins.HashBuiltin*, range_check_ptr: felt, size: felt, retdata: felt*)", + "type": "type_definition" + }, + "__wrappers__.symbol.SIZEOF_LOCALS": { + "type": "const", + "value": 0 + }, + "__wrappers__.symbol.__wrapped_func": { + "destination": "__main__.symbol", + "type": "alias" + }, + "__wrappers__.symbol_encode_return": { + "decorators": [], + "pc": 1091, + "type": "function" + }, + "__wrappers__.symbol_encode_return.Args": { + "full_name": "__wrappers__.symbol_encode_return.Args", + "members": { + "range_check_ptr": { + "cairo_type": "felt", + "offset": 1 + }, + "ret_value": { + "cairo_type": "(symbol: felt)", + "offset": 0 + } + }, + "size": 2, + "type": "struct" + }, + "__wrappers__.symbol_encode_return.ImplicitArgs": { + "full_name": "__wrappers__.symbol_encode_return.ImplicitArgs", + "members": {}, + "size": 0, + "type": "struct" + }, + "__wrappers__.symbol_encode_return.Return": { + "cairo_type": "(range_check_ptr: felt, data_len: felt, data: felt*)", + "type": "type_definition" + }, + "__wrappers__.symbol_encode_return.SIZEOF_LOCALS": { + "type": "const", + "value": 1 + }, + "__wrappers__.symbol_encode_return.memcpy": { + "destination": "starkware.cairo.common.memcpy.memcpy", + "type": "alias" + }, + "__wrappers__.totalSupply": { + "decorators": [ + "view" + ], + "pc": 1131, + "type": "function" + }, + "__wrappers__.totalSupply.Args": { + "full_name": "__wrappers__.totalSupply.Args", + "members": {}, + "size": 0, + "type": "struct" + }, + "__wrappers__.totalSupply.ImplicitArgs": { + "full_name": "__wrappers__.totalSupply.ImplicitArgs", + "members": {}, + "size": 0, + "type": "struct" + }, + "__wrappers__.totalSupply.Return": { + "cairo_type": "(syscall_ptr: felt*, pedersen_ptr: starkware.cairo.common.cairo_builtins.HashBuiltin*, range_check_ptr: felt, size: felt, retdata: felt*)", + "type": "type_definition" + }, + "__wrappers__.totalSupply.SIZEOF_LOCALS": { + "type": "const", + "value": 0 + }, + "__wrappers__.totalSupply.__wrapped_func": { + "destination": "__main__.totalSupply", + "type": "alias" + }, + "__wrappers__.totalSupply_encode_return": { + "decorators": [], + "pc": 1121, + "type": "function" + }, + "__wrappers__.totalSupply_encode_return.Args": { + "full_name": "__wrappers__.totalSupply_encode_return.Args", + "members": { + "range_check_ptr": { + "cairo_type": "felt", + "offset": 2 + }, + "ret_value": { + "cairo_type": "(totalSupply: starkware.cairo.common.uint256.Uint256)", + "offset": 0 + } + }, + "size": 3, + "type": "struct" + }, + "__wrappers__.totalSupply_encode_return.ImplicitArgs": { + "full_name": "__wrappers__.totalSupply_encode_return.ImplicitArgs", + "members": {}, + "size": 0, + "type": "struct" + }, + "__wrappers__.totalSupply_encode_return.Return": { + "cairo_type": "(range_check_ptr: felt, data_len: felt, data: felt*)", + "type": "type_definition" + }, + "__wrappers__.totalSupply_encode_return.SIZEOF_LOCALS": { + "type": "const", + "value": 1 + }, + "__wrappers__.totalSupply_encode_return.memcpy": { + "destination": "starkware.cairo.common.memcpy.memcpy", + "type": "alias" + }, + "__wrappers__.transfer": { + "decorators": [ + "external" + ], + "pc": 1295, + "type": "function" + }, + "__wrappers__.transfer.Args": { + "full_name": "__wrappers__.transfer.Args", + "members": {}, + "size": 0, + "type": "struct" + }, + "__wrappers__.transfer.ImplicitArgs": { + "full_name": "__wrappers__.transfer.ImplicitArgs", + "members": {}, + "size": 0, + "type": "struct" + }, + "__wrappers__.transfer.Return": { + "cairo_type": "(syscall_ptr: felt*, pedersen_ptr: starkware.cairo.common.cairo_builtins.HashBuiltin*, range_check_ptr: felt, size: felt, retdata: felt*)", + "type": "type_definition" + }, + "__wrappers__.transfer.SIZEOF_LOCALS": { + "type": "const", + "value": 0 + }, + "__wrappers__.transfer.__wrapped_func": { + "destination": "__main__.transfer", + "type": "alias" + }, + "__wrappers__.transferFrom": { + "decorators": [ + "external" + ], + "pc": 1334, + "type": "function" + }, + "__wrappers__.transferFrom.Args": { + "full_name": "__wrappers__.transferFrom.Args", + "members": {}, + "size": 0, + "type": "struct" + }, + "__wrappers__.transferFrom.ImplicitArgs": { + "full_name": "__wrappers__.transferFrom.ImplicitArgs", + "members": {}, + "size": 0, + "type": "struct" + }, + "__wrappers__.transferFrom.Return": { + "cairo_type": "(syscall_ptr: felt*, pedersen_ptr: starkware.cairo.common.cairo_builtins.HashBuiltin*, range_check_ptr: felt, size: felt, retdata: felt*)", + "type": "type_definition" + }, + "__wrappers__.transferFrom.SIZEOF_LOCALS": { + "type": "const", + "value": 0 + }, + "__wrappers__.transferFrom.__wrapped_func": { + "destination": "__main__.transferFrom", + "type": "alias" + }, + "__wrappers__.transferFrom_encode_return": { + "decorators": [], + "pc": 1325, + "type": "function" + }, + "__wrappers__.transferFrom_encode_return.Args": { + "full_name": "__wrappers__.transferFrom_encode_return.Args", + "members": { + "range_check_ptr": { + "cairo_type": "felt", + "offset": 1 + }, + "ret_value": { + "cairo_type": "(success: felt)", + "offset": 0 + } + }, + "size": 2, + "type": "struct" + }, + "__wrappers__.transferFrom_encode_return.ImplicitArgs": { + "full_name": "__wrappers__.transferFrom_encode_return.ImplicitArgs", + "members": {}, + "size": 0, + "type": "struct" + }, + "__wrappers__.transferFrom_encode_return.Return": { + "cairo_type": "(range_check_ptr: felt, data_len: felt, data: felt*)", + "type": "type_definition" + }, + "__wrappers__.transferFrom_encode_return.SIZEOF_LOCALS": { + "type": "const", + "value": 1 + }, + "__wrappers__.transferFrom_encode_return.memcpy": { + "destination": "starkware.cairo.common.memcpy.memcpy", + "type": "alias" + }, + "__wrappers__.transfer_encode_return": { + "decorators": [], + "pc": 1286, + "type": "function" + }, + "__wrappers__.transfer_encode_return.Args": { + "full_name": "__wrappers__.transfer_encode_return.Args", + "members": { + "range_check_ptr": { + "cairo_type": "felt", + "offset": 1 + }, + "ret_value": { + "cairo_type": "(success: felt)", + "offset": 0 + } + }, + "size": 2, + "type": "struct" + }, + "__wrappers__.transfer_encode_return.ImplicitArgs": { + "full_name": "__wrappers__.transfer_encode_return.ImplicitArgs", + "members": {}, + "size": 0, + "type": "struct" + }, + "__wrappers__.transfer_encode_return.Return": { + "cairo_type": "(range_check_ptr: felt, data_len: felt, data: felt*)", + "type": "type_definition" + }, + "__wrappers__.transfer_encode_return.SIZEOF_LOCALS": { + "type": "const", + "value": 1 + }, + "__wrappers__.transfer_encode_return.memcpy": { + "destination": "starkware.cairo.common.memcpy.memcpy", + "type": "alias" + }, + "openzeppelin.security.safemath.library.FALSE": { + "destination": "starkware.cairo.common.bool.FALSE", + "type": "alias" + }, + "openzeppelin.security.safemath.library.HashBuiltin": { + "destination": "starkware.cairo.common.cairo_builtins.HashBuiltin", + "type": "alias" + }, + "openzeppelin.security.safemath.library.SafeUint256": { + "type": "namespace" + }, + "openzeppelin.security.safemath.library.SafeUint256.Args": { + "full_name": "openzeppelin.security.safemath.library.SafeUint256.Args", + "members": {}, + "size": 0, + "type": "struct" + }, + "openzeppelin.security.safemath.library.SafeUint256.ImplicitArgs": { + "full_name": "openzeppelin.security.safemath.library.SafeUint256.ImplicitArgs", + "members": {}, + "size": 0, + "type": "struct" + }, + "openzeppelin.security.safemath.library.SafeUint256.Return": { + "cairo_type": "()", + "type": "type_definition" + }, + "openzeppelin.security.safemath.library.SafeUint256.SIZEOF_LOCALS": { + "type": "const", + "value": 0 + }, + "openzeppelin.security.safemath.library.SafeUint256.add": { + "decorators": [], + "pc": 309, + "type": "function" + }, + "openzeppelin.security.safemath.library.SafeUint256.add.Args": { + "full_name": "openzeppelin.security.safemath.library.SafeUint256.add.Args", + "members": { + "a": { + "cairo_type": "starkware.cairo.common.uint256.Uint256", + "offset": 0 + }, + "b": { + "cairo_type": "starkware.cairo.common.uint256.Uint256", + "offset": 2 + } + }, + "size": 4, + "type": "struct" + }, + "openzeppelin.security.safemath.library.SafeUint256.add.ImplicitArgs": { + "full_name": "openzeppelin.security.safemath.library.SafeUint256.add.ImplicitArgs", + "members": { + "range_check_ptr": { + "cairo_type": "felt", + "offset": 0 + } + }, + "size": 1, + "type": "struct" + }, + "openzeppelin.security.safemath.library.SafeUint256.add.Return": { + "cairo_type": "(c: starkware.cairo.common.uint256.Uint256)", + "type": "type_definition" + }, + "openzeppelin.security.safemath.library.SafeUint256.add.SIZEOF_LOCALS": { + "type": "const", + "value": 0 + }, + "openzeppelin.security.safemath.library.SafeUint256.sub_le": { + "decorators": [], + "pc": 330, + "type": "function" + }, + "openzeppelin.security.safemath.library.SafeUint256.sub_le.Args": { + "full_name": "openzeppelin.security.safemath.library.SafeUint256.sub_le.Args", + "members": { + "a": { + "cairo_type": "starkware.cairo.common.uint256.Uint256", + "offset": 0 + }, + "b": { + "cairo_type": "starkware.cairo.common.uint256.Uint256", + "offset": 2 + } + }, + "size": 4, + "type": "struct" + }, + "openzeppelin.security.safemath.library.SafeUint256.sub_le.ImplicitArgs": { + "full_name": "openzeppelin.security.safemath.library.SafeUint256.sub_le.ImplicitArgs", + "members": { + "range_check_ptr": { + "cairo_type": "felt", + "offset": 0 + } + }, + "size": 1, + "type": "struct" + }, + "openzeppelin.security.safemath.library.SafeUint256.sub_le.Return": { + "cairo_type": "(c: starkware.cairo.common.uint256.Uint256)", + "type": "type_definition" + }, + "openzeppelin.security.safemath.library.SafeUint256.sub_le.SIZEOF_LOCALS": { + "type": "const", + "value": 0 + }, + "openzeppelin.security.safemath.library.TRUE": { + "destination": "starkware.cairo.common.bool.TRUE", + "type": "alias" + }, + "openzeppelin.security.safemath.library.Uint256": { + "destination": "starkware.cairo.common.uint256.Uint256", + "type": "alias" + }, + "openzeppelin.security.safemath.library.uint256_add": { + "destination": "starkware.cairo.common.uint256.uint256_add", + "type": "alias" + }, + "openzeppelin.security.safemath.library.uint256_check": { + "destination": "starkware.cairo.common.uint256.uint256_check", + "type": "alias" + }, + "openzeppelin.security.safemath.library.uint256_eq": { + "destination": "starkware.cairo.common.uint256.uint256_eq", + "type": "alias" + }, + "openzeppelin.security.safemath.library.uint256_le": { + "destination": "starkware.cairo.common.uint256.uint256_le", + "type": "alias" + }, + "openzeppelin.security.safemath.library.uint256_lt": { + "destination": "starkware.cairo.common.uint256.uint256_lt", + "type": "alias" + }, + "openzeppelin.security.safemath.library.uint256_mul": { + "destination": "starkware.cairo.common.uint256.uint256_mul", + "type": "alias" + }, + "openzeppelin.security.safemath.library.uint256_sub": { + "destination": "starkware.cairo.common.uint256.uint256_sub", + "type": "alias" + }, + "openzeppelin.security.safemath.library.uint256_unsigned_div_rem": { + "destination": "starkware.cairo.common.uint256.uint256_unsigned_div_rem", + "type": "alias" + }, + "openzeppelin.token.erc20.library.Approval": { + "type": "namespace" + }, + "openzeppelin.token.erc20.library.Approval.Args": { + "full_name": "openzeppelin.token.erc20.library.Approval.Args", + "members": {}, + "size": 0, + "type": "struct" + }, + "openzeppelin.token.erc20.library.Approval.ImplicitArgs": { + "full_name": "openzeppelin.token.erc20.library.Approval.ImplicitArgs", + "members": {}, + "size": 0, + "type": "struct" + }, + "openzeppelin.token.erc20.library.Approval.Return": { + "cairo_type": "()", + "type": "type_definition" + }, + "openzeppelin.token.erc20.library.Approval.SELECTOR": { + "type": "const", + "value": 544914742286571513055574265148471203182105283038408585630116262969508767999 + }, + "openzeppelin.token.erc20.library.Approval.SIZEOF_LOCALS": { + "type": "const", + "value": 0 + }, + "openzeppelin.token.erc20.library.Approval.alloc": { + "destination": "starkware.cairo.common.alloc.alloc", + "type": "alias" + }, + "openzeppelin.token.erc20.library.Approval.emit": { + "decorators": [], + "pc": 384, + "type": "function" + }, + "openzeppelin.token.erc20.library.Approval.emit.Args": { + "full_name": "openzeppelin.token.erc20.library.Approval.emit.Args", + "members": { + "owner": { + "cairo_type": "felt", + "offset": 0 + }, + "spender": { + "cairo_type": "felt", + "offset": 1 + }, + "value": { + "cairo_type": "starkware.cairo.common.uint256.Uint256", + "offset": 2 + } + }, + "size": 4, + "type": "struct" + }, + "openzeppelin.token.erc20.library.Approval.emit.ImplicitArgs": { + "full_name": "openzeppelin.token.erc20.library.Approval.emit.ImplicitArgs", + "members": { + "range_check_ptr": { + "cairo_type": "felt", + "offset": 1 + }, + "syscall_ptr": { + "cairo_type": "felt*", + "offset": 0 + } + }, + "size": 2, + "type": "struct" + }, + "openzeppelin.token.erc20.library.Approval.emit.Return": { + "cairo_type": "()", + "type": "type_definition" + }, + "openzeppelin.token.erc20.library.Approval.emit.SIZEOF_LOCALS": { + "type": "const", + "value": 2 + }, + "openzeppelin.token.erc20.library.Approval.emit_event": { + "destination": "starkware.starknet.common.syscalls.emit_event", + "type": "alias" + }, + "openzeppelin.token.erc20.library.Approval.memcpy": { + "destination": "starkware.cairo.common.memcpy.memcpy", + "type": "alias" + }, + "openzeppelin.token.erc20.library.ERC20": { + "type": "namespace" + }, + "openzeppelin.token.erc20.library.ERC20.Args": { + "full_name": "openzeppelin.token.erc20.library.ERC20.Args", + "members": {}, + "size": 0, + "type": "struct" + }, + "openzeppelin.token.erc20.library.ERC20.ImplicitArgs": { + "full_name": "openzeppelin.token.erc20.library.ERC20.ImplicitArgs", + "members": {}, + "size": 0, + "type": "struct" + }, + "openzeppelin.token.erc20.library.ERC20.Return": { + "cairo_type": "()", + "type": "type_definition" + }, + "openzeppelin.token.erc20.library.ERC20.SIZEOF_LOCALS": { + "type": "const", + "value": 0 + }, + "openzeppelin.token.erc20.library.ERC20._approve": { + "decorators": [], + "pc": 939, + "type": "function" + }, + "openzeppelin.token.erc20.library.ERC20._approve.Args": { + "full_name": "openzeppelin.token.erc20.library.ERC20._approve.Args", + "members": { + "amount": { + "cairo_type": "starkware.cairo.common.uint256.Uint256", + "offset": 2 + }, + "owner": { + "cairo_type": "felt", + "offset": 0 + }, + "spender": { + "cairo_type": "felt", + "offset": 1 + } + }, + "size": 4, + "type": "struct" + }, + "openzeppelin.token.erc20.library.ERC20._approve.ImplicitArgs": { + "full_name": "openzeppelin.token.erc20.library.ERC20._approve.ImplicitArgs", + "members": { + "pedersen_ptr": { + "cairo_type": "starkware.cairo.common.cairo_builtins.HashBuiltin*", + "offset": 1 + }, + "range_check_ptr": { + "cairo_type": "felt", + "offset": 2 + }, + "syscall_ptr": { + "cairo_type": "felt*", + "offset": 0 + } + }, + "size": 3, + "type": "struct" + }, + "openzeppelin.token.erc20.library.ERC20._approve.Return": { + "cairo_type": "()", + "type": "type_definition" + }, + "openzeppelin.token.erc20.library.ERC20._approve.SIZEOF_LOCALS": { + "type": "const", + "value": 0 + }, + "openzeppelin.token.erc20.library.ERC20._mint": { + "decorators": [], + "pc": 831, + "type": "function" + }, + "openzeppelin.token.erc20.library.ERC20._mint.Args": { + "full_name": "openzeppelin.token.erc20.library.ERC20._mint.Args", + "members": { + "amount": { + "cairo_type": "starkware.cairo.common.uint256.Uint256", + "offset": 1 + }, + "recipient": { + "cairo_type": "felt", + "offset": 0 + } + }, + "size": 3, + "type": "struct" + }, + "openzeppelin.token.erc20.library.ERC20._mint.ImplicitArgs": { + "full_name": "openzeppelin.token.erc20.library.ERC20._mint.ImplicitArgs", + "members": { + "pedersen_ptr": { + "cairo_type": "starkware.cairo.common.cairo_builtins.HashBuiltin*", + "offset": 1 + }, + "range_check_ptr": { + "cairo_type": "felt", + "offset": 2 + }, + "syscall_ptr": { + "cairo_type": "felt*", + "offset": 0 + } + }, + "size": 3, + "type": "struct" + }, + "openzeppelin.token.erc20.library.ERC20._mint.Return": { + "cairo_type": "()", + "type": "type_definition" + }, + "openzeppelin.token.erc20.library.ERC20._mint.SIZEOF_LOCALS": { + "type": "const", + "value": 0 + }, + "openzeppelin.token.erc20.library.ERC20._spend_allowance": { + "decorators": [], + "pc": 971, + "type": "function" + }, + "openzeppelin.token.erc20.library.ERC20._spend_allowance.Args": { + "full_name": "openzeppelin.token.erc20.library.ERC20._spend_allowance.Args", + "members": { + "amount": { + "cairo_type": "starkware.cairo.common.uint256.Uint256", + "offset": 2 + }, + "owner": { + "cairo_type": "felt", + "offset": 0 + }, + "spender": { + "cairo_type": "felt", + "offset": 1 + } + }, + "size": 4, + "type": "struct" + }, + "openzeppelin.token.erc20.library.ERC20._spend_allowance.ImplicitArgs": { + "full_name": "openzeppelin.token.erc20.library.ERC20._spend_allowance.ImplicitArgs", + "members": { + "pedersen_ptr": { + "cairo_type": "starkware.cairo.common.cairo_builtins.HashBuiltin*", + "offset": 1 + }, + "range_check_ptr": { + "cairo_type": "felt", + "offset": 2 + }, + "syscall_ptr": { + "cairo_type": "felt*", + "offset": 0 + } + }, + "size": 3, + "type": "struct" + }, + "openzeppelin.token.erc20.library.ERC20._spend_allowance.Return": { + "cairo_type": "()", + "type": "type_definition" + }, + "openzeppelin.token.erc20.library.ERC20._spend_allowance.SIZEOF_LOCALS": { + "type": "const", + "value": 4 + }, + "openzeppelin.token.erc20.library.ERC20._transfer": { + "decorators": [], + "pc": 883, + "type": "function" + }, + "openzeppelin.token.erc20.library.ERC20._transfer.Args": { + "full_name": "openzeppelin.token.erc20.library.ERC20._transfer.Args", + "members": { + "amount": { + "cairo_type": "starkware.cairo.common.uint256.Uint256", + "offset": 2 + }, + "recipient": { + "cairo_type": "felt", + "offset": 1 + }, + "sender": { + "cairo_type": "felt", + "offset": 0 + } + }, + "size": 4, + "type": "struct" + }, + "openzeppelin.token.erc20.library.ERC20._transfer.ImplicitArgs": { + "full_name": "openzeppelin.token.erc20.library.ERC20._transfer.ImplicitArgs", + "members": { + "pedersen_ptr": { + "cairo_type": "starkware.cairo.common.cairo_builtins.HashBuiltin*", + "offset": 1 + }, + "range_check_ptr": { + "cairo_type": "felt", + "offset": 2 + }, + "syscall_ptr": { + "cairo_type": "felt*", + "offset": 0 + } + }, + "size": 3, + "type": "struct" + }, + "openzeppelin.token.erc20.library.ERC20._transfer.Return": { + "cairo_type": "()", + "type": "type_definition" + }, + "openzeppelin.token.erc20.library.ERC20._transfer.SIZEOF_LOCALS": { + "type": "const", + "value": 0 + }, + "openzeppelin.token.erc20.library.ERC20.allowance": { + "decorators": [], + "pc": 703, + "type": "function" + }, + "openzeppelin.token.erc20.library.ERC20.allowance.Args": { + "full_name": "openzeppelin.token.erc20.library.ERC20.allowance.Args", + "members": { + "owner": { + "cairo_type": "felt", + "offset": 0 + }, + "spender": { + "cairo_type": "felt", + "offset": 1 + } + }, + "size": 2, + "type": "struct" + }, + "openzeppelin.token.erc20.library.ERC20.allowance.ImplicitArgs": { + "full_name": "openzeppelin.token.erc20.library.ERC20.allowance.ImplicitArgs", + "members": { + "pedersen_ptr": { + "cairo_type": "starkware.cairo.common.cairo_builtins.HashBuiltin*", + "offset": 1 + }, + "range_check_ptr": { + "cairo_type": "felt", + "offset": 2 + }, + "syscall_ptr": { + "cairo_type": "felt*", + "offset": 0 + } + }, + "size": 3, + "type": "struct" + }, + "openzeppelin.token.erc20.library.ERC20.allowance.Return": { + "cairo_type": "(remaining: starkware.cairo.common.uint256.Uint256)", + "type": "type_definition" + }, + "openzeppelin.token.erc20.library.ERC20.allowance.SIZEOF_LOCALS": { + "type": "const", + "value": 0 + }, + "openzeppelin.token.erc20.library.ERC20.approve": { + "decorators": [], + "pc": 747, + "type": "function" + }, + "openzeppelin.token.erc20.library.ERC20.approve.Args": { + "full_name": "openzeppelin.token.erc20.library.ERC20.approve.Args", + "members": { + "amount": { + "cairo_type": "starkware.cairo.common.uint256.Uint256", + "offset": 1 + }, + "spender": { + "cairo_type": "felt", + "offset": 0 + } + }, + "size": 3, + "type": "struct" + }, + "openzeppelin.token.erc20.library.ERC20.approve.ImplicitArgs": { + "full_name": "openzeppelin.token.erc20.library.ERC20.approve.ImplicitArgs", + "members": { + "pedersen_ptr": { + "cairo_type": "starkware.cairo.common.cairo_builtins.HashBuiltin*", + "offset": 1 + }, + "range_check_ptr": { + "cairo_type": "felt", + "offset": 2 + }, + "syscall_ptr": { + "cairo_type": "felt*", + "offset": 0 + } + }, + "size": 3, + "type": "struct" + }, + "openzeppelin.token.erc20.library.ERC20.approve.Return": { + "cairo_type": "(success: felt)", + "type": "type_definition" + }, + "openzeppelin.token.erc20.library.ERC20.approve.SIZEOF_LOCALS": { + "type": "const", + "value": 0 + }, + "openzeppelin.token.erc20.library.ERC20.balance_of": { + "decorators": [], + "pc": 696, + "type": "function" + }, + "openzeppelin.token.erc20.library.ERC20.balance_of.Args": { + "full_name": "openzeppelin.token.erc20.library.ERC20.balance_of.Args", + "members": { + "account": { + "cairo_type": "felt", + "offset": 0 + } + }, + "size": 1, + "type": "struct" + }, + "openzeppelin.token.erc20.library.ERC20.balance_of.ImplicitArgs": { + "full_name": "openzeppelin.token.erc20.library.ERC20.balance_of.ImplicitArgs", + "members": { + "pedersen_ptr": { + "cairo_type": "starkware.cairo.common.cairo_builtins.HashBuiltin*", + "offset": 1 + }, + "range_check_ptr": { + "cairo_type": "felt", + "offset": 2 + }, + "syscall_ptr": { + "cairo_type": "felt*", + "offset": 0 + } + }, + "size": 3, + "type": "struct" + }, + "openzeppelin.token.erc20.library.ERC20.balance_of.Return": { + "cairo_type": "(balance: starkware.cairo.common.uint256.Uint256)", + "type": "type_definition" + }, + "openzeppelin.token.erc20.library.ERC20.balance_of.SIZEOF_LOCALS": { + "type": "const", + "value": 0 + }, + "openzeppelin.token.erc20.library.ERC20.decimals": { + "decorators": [], + "pc": 690, + "type": "function" + }, + "openzeppelin.token.erc20.library.ERC20.decimals.Args": { + "full_name": "openzeppelin.token.erc20.library.ERC20.decimals.Args", + "members": {}, + "size": 0, + "type": "struct" + }, + "openzeppelin.token.erc20.library.ERC20.decimals.ImplicitArgs": { + "full_name": "openzeppelin.token.erc20.library.ERC20.decimals.ImplicitArgs", + "members": { + "pedersen_ptr": { + "cairo_type": "starkware.cairo.common.cairo_builtins.HashBuiltin*", + "offset": 1 + }, + "range_check_ptr": { + "cairo_type": "felt", + "offset": 2 + }, + "syscall_ptr": { + "cairo_type": "felt*", + "offset": 0 + } + }, + "size": 3, + "type": "struct" + }, + "openzeppelin.token.erc20.library.ERC20.decimals.Return": { + "cairo_type": "(decimals: felt)", + "type": "type_definition" + }, + "openzeppelin.token.erc20.library.ERC20.decimals.SIZEOF_LOCALS": { + "type": "const", + "value": 0 + }, + "openzeppelin.token.erc20.library.ERC20.decrease_allowance": { + "decorators": [], + "pc": 798, + "type": "function" + }, + "openzeppelin.token.erc20.library.ERC20.decrease_allowance.Args": { + "full_name": "openzeppelin.token.erc20.library.ERC20.decrease_allowance.Args", + "members": { + "spender": { + "cairo_type": "felt", + "offset": 0 + }, + "subtracted_value": { + "cairo_type": "starkware.cairo.common.uint256.Uint256", + "offset": 1 + } + }, + "size": 3, + "type": "struct" + }, + "openzeppelin.token.erc20.library.ERC20.decrease_allowance.ImplicitArgs": { + "full_name": "openzeppelin.token.erc20.library.ERC20.decrease_allowance.ImplicitArgs", + "members": { + "pedersen_ptr": { + "cairo_type": "starkware.cairo.common.cairo_builtins.HashBuiltin*", + "offset": 1 + }, + "range_check_ptr": { + "cairo_type": "felt", + "offset": 2 + }, + "syscall_ptr": { + "cairo_type": "felt*", + "offset": 0 + } + }, + "size": 3, + "type": "struct" + }, + "openzeppelin.token.erc20.library.ERC20.decrease_allowance.Return": { + "cairo_type": "(success: felt)", + "type": "type_definition" + }, + "openzeppelin.token.erc20.library.ERC20.decrease_allowance.SIZEOF_LOCALS": { + "type": "const", + "value": 0 + }, + "openzeppelin.token.erc20.library.ERC20.increase_allowance": { + "decorators": [], + "pc": 767, + "type": "function" + }, + "openzeppelin.token.erc20.library.ERC20.increase_allowance.Args": { + "full_name": "openzeppelin.token.erc20.library.ERC20.increase_allowance.Args", + "members": { + "added_value": { + "cairo_type": "starkware.cairo.common.uint256.Uint256", + "offset": 1 + }, + "spender": { + "cairo_type": "felt", + "offset": 0 + } + }, + "size": 3, + "type": "struct" + }, + "openzeppelin.token.erc20.library.ERC20.increase_allowance.ImplicitArgs": { + "full_name": "openzeppelin.token.erc20.library.ERC20.increase_allowance.ImplicitArgs", + "members": { + "pedersen_ptr": { + "cairo_type": "starkware.cairo.common.cairo_builtins.HashBuiltin*", + "offset": 1 + }, + "range_check_ptr": { + "cairo_type": "felt", + "offset": 2 + }, + "syscall_ptr": { + "cairo_type": "felt*", + "offset": 0 + } + }, + "size": 3, + "type": "struct" + }, + "openzeppelin.token.erc20.library.ERC20.increase_allowance.Return": { + "cairo_type": "(success: felt)", + "type": "type_definition" + }, + "openzeppelin.token.erc20.library.ERC20.increase_allowance.SIZEOF_LOCALS": { + "type": "const", + "value": 0 + }, + "openzeppelin.token.erc20.library.ERC20.initializer": { + "decorators": [], + "pc": 651, + "type": "function" + }, + "openzeppelin.token.erc20.library.ERC20.initializer.Args": { + "full_name": "openzeppelin.token.erc20.library.ERC20.initializer.Args", + "members": { + "decimals": { + "cairo_type": "felt", + "offset": 2 + }, + "name": { + "cairo_type": "felt", + "offset": 0 + }, + "symbol": { + "cairo_type": "felt", + "offset": 1 + } + }, + "size": 3, + "type": "struct" + }, + "openzeppelin.token.erc20.library.ERC20.initializer.ImplicitArgs": { + "full_name": "openzeppelin.token.erc20.library.ERC20.initializer.ImplicitArgs", + "members": { + "pedersen_ptr": { + "cairo_type": "starkware.cairo.common.cairo_builtins.HashBuiltin*", + "offset": 1 + }, + "range_check_ptr": { + "cairo_type": "felt", + "offset": 2 + }, + "syscall_ptr": { + "cairo_type": "felt*", + "offset": 0 + } + }, + "size": 3, + "type": "struct" + }, + "openzeppelin.token.erc20.library.ERC20.initializer.Return": { + "cairo_type": "()", + "type": "type_definition" + }, + "openzeppelin.token.erc20.library.ERC20.initializer.SIZEOF_LOCALS": { + "type": "const", + "value": 0 + }, + "openzeppelin.token.erc20.library.ERC20.name": { + "decorators": [], + "pc": 672, + "type": "function" + }, + "openzeppelin.token.erc20.library.ERC20.name.Args": { + "full_name": "openzeppelin.token.erc20.library.ERC20.name.Args", + "members": {}, + "size": 0, + "type": "struct" + }, + "openzeppelin.token.erc20.library.ERC20.name.ImplicitArgs": { + "full_name": "openzeppelin.token.erc20.library.ERC20.name.ImplicitArgs", + "members": { + "pedersen_ptr": { + "cairo_type": "starkware.cairo.common.cairo_builtins.HashBuiltin*", + "offset": 1 + }, + "range_check_ptr": { + "cairo_type": "felt", + "offset": 2 + }, + "syscall_ptr": { + "cairo_type": "felt*", + "offset": 0 + } + }, + "size": 3, + "type": "struct" + }, + "openzeppelin.token.erc20.library.ERC20.name.Return": { + "cairo_type": "(name: felt)", + "type": "type_definition" + }, + "openzeppelin.token.erc20.library.ERC20.name.SIZEOF_LOCALS": { + "type": "const", + "value": 0 + }, + "openzeppelin.token.erc20.library.ERC20.symbol": { + "decorators": [], + "pc": 678, + "type": "function" + }, + "openzeppelin.token.erc20.library.ERC20.symbol.Args": { + "full_name": "openzeppelin.token.erc20.library.ERC20.symbol.Args", + "members": {}, + "size": 0, + "type": "struct" + }, + "openzeppelin.token.erc20.library.ERC20.symbol.ImplicitArgs": { + "full_name": "openzeppelin.token.erc20.library.ERC20.symbol.ImplicitArgs", + "members": { + "pedersen_ptr": { + "cairo_type": "starkware.cairo.common.cairo_builtins.HashBuiltin*", + "offset": 1 + }, + "range_check_ptr": { + "cairo_type": "felt", + "offset": 2 + }, + "syscall_ptr": { + "cairo_type": "felt*", + "offset": 0 + } + }, + "size": 3, + "type": "struct" + }, + "openzeppelin.token.erc20.library.ERC20.symbol.Return": { + "cairo_type": "(symbol: felt)", + "type": "type_definition" + }, + "openzeppelin.token.erc20.library.ERC20.symbol.SIZEOF_LOCALS": { + "type": "const", + "value": 0 + }, + "openzeppelin.token.erc20.library.ERC20.total_supply": { + "decorators": [], + "pc": 684, + "type": "function" + }, + "openzeppelin.token.erc20.library.ERC20.total_supply.Args": { + "full_name": "openzeppelin.token.erc20.library.ERC20.total_supply.Args", + "members": {}, + "size": 0, + "type": "struct" + }, + "openzeppelin.token.erc20.library.ERC20.total_supply.ImplicitArgs": { + "full_name": "openzeppelin.token.erc20.library.ERC20.total_supply.ImplicitArgs", + "members": { + "pedersen_ptr": { + "cairo_type": "starkware.cairo.common.cairo_builtins.HashBuiltin*", + "offset": 1 + }, + "range_check_ptr": { + "cairo_type": "felt", + "offset": 2 + }, + "syscall_ptr": { + "cairo_type": "felt*", + "offset": 0 + } + }, + "size": 3, + "type": "struct" + }, + "openzeppelin.token.erc20.library.ERC20.total_supply.Return": { + "cairo_type": "(total_supply: starkware.cairo.common.uint256.Uint256)", + "type": "type_definition" + }, + "openzeppelin.token.erc20.library.ERC20.total_supply.SIZEOF_LOCALS": { + "type": "const", + "value": 0 + }, + "openzeppelin.token.erc20.library.ERC20.transfer": { + "decorators": [], + "pc": 711, + "type": "function" + }, + "openzeppelin.token.erc20.library.ERC20.transfer.Args": { + "full_name": "openzeppelin.token.erc20.library.ERC20.transfer.Args", + "members": { + "amount": { + "cairo_type": "starkware.cairo.common.uint256.Uint256", + "offset": 1 + }, + "recipient": { + "cairo_type": "felt", + "offset": 0 + } + }, + "size": 3, + "type": "struct" + }, + "openzeppelin.token.erc20.library.ERC20.transfer.ImplicitArgs": { + "full_name": "openzeppelin.token.erc20.library.ERC20.transfer.ImplicitArgs", + "members": { + "pedersen_ptr": { + "cairo_type": "starkware.cairo.common.cairo_builtins.HashBuiltin*", + "offset": 1 + }, + "range_check_ptr": { + "cairo_type": "felt", + "offset": 2 + }, + "syscall_ptr": { + "cairo_type": "felt*", + "offset": 0 + } + }, + "size": 3, + "type": "struct" + }, + "openzeppelin.token.erc20.library.ERC20.transfer.Return": { + "cairo_type": "(success: felt)", + "type": "type_definition" + }, + "openzeppelin.token.erc20.library.ERC20.transfer.SIZEOF_LOCALS": { + "type": "const", + "value": 0 + }, + "openzeppelin.token.erc20.library.ERC20.transfer_from": { + "decorators": [], + "pc": 726, + "type": "function" + }, + "openzeppelin.token.erc20.library.ERC20.transfer_from.Args": { + "full_name": "openzeppelin.token.erc20.library.ERC20.transfer_from.Args", + "members": { + "amount": { + "cairo_type": "starkware.cairo.common.uint256.Uint256", + "offset": 2 + }, + "recipient": { + "cairo_type": "felt", + "offset": 1 + }, + "sender": { + "cairo_type": "felt", + "offset": 0 + } + }, + "size": 4, + "type": "struct" + }, + "openzeppelin.token.erc20.library.ERC20.transfer_from.ImplicitArgs": { + "full_name": "openzeppelin.token.erc20.library.ERC20.transfer_from.ImplicitArgs", + "members": { + "pedersen_ptr": { + "cairo_type": "starkware.cairo.common.cairo_builtins.HashBuiltin*", + "offset": 1 + }, + "range_check_ptr": { + "cairo_type": "felt", + "offset": 2 + }, + "syscall_ptr": { + "cairo_type": "felt*", + "offset": 0 + } + }, + "size": 3, + "type": "struct" + }, + "openzeppelin.token.erc20.library.ERC20.transfer_from.Return": { + "cairo_type": "(success: felt)", + "type": "type_definition" + }, + "openzeppelin.token.erc20.library.ERC20.transfer_from.SIZEOF_LOCALS": { + "type": "const", + "value": 0 + }, + "openzeppelin.token.erc20.library.ERC20_allowances": { + "type": "namespace" + }, + "openzeppelin.token.erc20.library.ERC20_allowances.Args": { + "full_name": "openzeppelin.token.erc20.library.ERC20_allowances.Args", + "members": {}, + "size": 0, + "type": "struct" + }, + "openzeppelin.token.erc20.library.ERC20_allowances.HashBuiltin": { + "destination": "starkware.cairo.common.cairo_builtins.HashBuiltin", + "type": "alias" + }, + "openzeppelin.token.erc20.library.ERC20_allowances.ImplicitArgs": { + "full_name": "openzeppelin.token.erc20.library.ERC20_allowances.ImplicitArgs", + "members": {}, + "size": 0, + "type": "struct" + }, + "openzeppelin.token.erc20.library.ERC20_allowances.Return": { + "cairo_type": "()", + "type": "type_definition" + }, + "openzeppelin.token.erc20.library.ERC20_allowances.SIZEOF_LOCALS": { + "type": "const", + "value": 0 + }, + "openzeppelin.token.erc20.library.ERC20_allowances.addr": { + "decorators": [], + "pc": 594, + "type": "function" + }, + "openzeppelin.token.erc20.library.ERC20_allowances.addr.Args": { + "full_name": "openzeppelin.token.erc20.library.ERC20_allowances.addr.Args", + "members": { + "owner": { + "cairo_type": "felt", + "offset": 0 + }, + "spender": { + "cairo_type": "felt", + "offset": 1 + } + }, + "size": 2, + "type": "struct" + }, + "openzeppelin.token.erc20.library.ERC20_allowances.addr.ImplicitArgs": { + "full_name": "openzeppelin.token.erc20.library.ERC20_allowances.addr.ImplicitArgs", + "members": { + "pedersen_ptr": { + "cairo_type": "starkware.cairo.common.cairo_builtins.HashBuiltin*", + "offset": 0 + }, + "range_check_ptr": { + "cairo_type": "felt", + "offset": 1 + } + }, + "size": 2, + "type": "struct" + }, + "openzeppelin.token.erc20.library.ERC20_allowances.addr.Return": { + "cairo_type": "(res: felt)", + "type": "type_definition" + }, + "openzeppelin.token.erc20.library.ERC20_allowances.addr.SIZEOF_LOCALS": { + "type": "const", + "value": 0 + }, + "openzeppelin.token.erc20.library.ERC20_allowances.hash2": { + "destination": "starkware.cairo.common.hash.hash2", + "type": "alias" + }, + "openzeppelin.token.erc20.library.ERC20_allowances.normalize_address": { + "destination": "starkware.starknet.common.storage.normalize_address", + "type": "alias" + }, + "openzeppelin.token.erc20.library.ERC20_allowances.read": { + "decorators": [], + "pc": 611, + "type": "function" + }, + "openzeppelin.token.erc20.library.ERC20_allowances.read.Args": { + "full_name": "openzeppelin.token.erc20.library.ERC20_allowances.read.Args", + "members": { + "owner": { + "cairo_type": "felt", + "offset": 0 + }, + "spender": { + "cairo_type": "felt", + "offset": 1 + } + }, + "size": 2, + "type": "struct" + }, + "openzeppelin.token.erc20.library.ERC20_allowances.read.ImplicitArgs": { + "full_name": "openzeppelin.token.erc20.library.ERC20_allowances.read.ImplicitArgs", + "members": { + "pedersen_ptr": { + "cairo_type": "starkware.cairo.common.cairo_builtins.HashBuiltin*", + "offset": 1 + }, + "range_check_ptr": { + "cairo_type": "felt", + "offset": 2 + }, + "syscall_ptr": { + "cairo_type": "felt*", + "offset": 0 + } + }, + "size": 3, + "type": "struct" + }, + "openzeppelin.token.erc20.library.ERC20_allowances.read.Return": { + "cairo_type": "(remaining: starkware.cairo.common.uint256.Uint256)", + "type": "type_definition" + }, + "openzeppelin.token.erc20.library.ERC20_allowances.read.SIZEOF_LOCALS": { + "type": "const", + "value": 0 + }, + "openzeppelin.token.erc20.library.ERC20_allowances.storage_read": { + "destination": "starkware.starknet.common.syscalls.storage_read", + "type": "alias" + }, + "openzeppelin.token.erc20.library.ERC20_allowances.storage_write": { + "destination": "starkware.starknet.common.syscalls.storage_write", + "type": "alias" + }, + "openzeppelin.token.erc20.library.ERC20_allowances.write": { + "decorators": [], + "pc": 632, + "type": "function" + }, + "openzeppelin.token.erc20.library.ERC20_allowances.write.Args": { + "full_name": "openzeppelin.token.erc20.library.ERC20_allowances.write.Args", + "members": { + "owner": { + "cairo_type": "felt", + "offset": 0 + }, + "spender": { + "cairo_type": "felt", + "offset": 1 + }, + "value": { + "cairo_type": "starkware.cairo.common.uint256.Uint256", + "offset": 2 + } + }, + "size": 4, + "type": "struct" + }, + "openzeppelin.token.erc20.library.ERC20_allowances.write.ImplicitArgs": { + "full_name": "openzeppelin.token.erc20.library.ERC20_allowances.write.ImplicitArgs", + "members": { + "pedersen_ptr": { + "cairo_type": "starkware.cairo.common.cairo_builtins.HashBuiltin*", + "offset": 1 + }, + "range_check_ptr": { + "cairo_type": "felt", + "offset": 2 + }, + "syscall_ptr": { + "cairo_type": "felt*", + "offset": 0 + } + }, + "size": 3, + "type": "struct" + }, + "openzeppelin.token.erc20.library.ERC20_allowances.write.Return": { + "cairo_type": "()", + "type": "type_definition" + }, + "openzeppelin.token.erc20.library.ERC20_allowances.write.SIZEOF_LOCALS": { + "type": "const", + "value": 0 + }, + "openzeppelin.token.erc20.library.ERC20_balances": { + "type": "namespace" + }, + "openzeppelin.token.erc20.library.ERC20_balances.Args": { + "full_name": "openzeppelin.token.erc20.library.ERC20_balances.Args", + "members": {}, + "size": 0, + "type": "struct" + }, + "openzeppelin.token.erc20.library.ERC20_balances.HashBuiltin": { + "destination": "starkware.cairo.common.cairo_builtins.HashBuiltin", + "type": "alias" + }, + "openzeppelin.token.erc20.library.ERC20_balances.ImplicitArgs": { + "full_name": "openzeppelin.token.erc20.library.ERC20_balances.ImplicitArgs", + "members": {}, + "size": 0, + "type": "struct" + }, + "openzeppelin.token.erc20.library.ERC20_balances.Return": { + "cairo_type": "()", + "type": "type_definition" + }, + "openzeppelin.token.erc20.library.ERC20_balances.SIZEOF_LOCALS": { + "type": "const", + "value": 0 + }, + "openzeppelin.token.erc20.library.ERC20_balances.addr": { + "decorators": [], + "pc": 542, + "type": "function" + }, + "openzeppelin.token.erc20.library.ERC20_balances.addr.Args": { + "full_name": "openzeppelin.token.erc20.library.ERC20_balances.addr.Args", + "members": { + "account": { + "cairo_type": "felt", + "offset": 0 + } + }, + "size": 1, + "type": "struct" + }, + "openzeppelin.token.erc20.library.ERC20_balances.addr.ImplicitArgs": { + "full_name": "openzeppelin.token.erc20.library.ERC20_balances.addr.ImplicitArgs", + "members": { + "pedersen_ptr": { + "cairo_type": "starkware.cairo.common.cairo_builtins.HashBuiltin*", + "offset": 0 + }, + "range_check_ptr": { + "cairo_type": "felt", + "offset": 1 + } + }, + "size": 2, + "type": "struct" + }, + "openzeppelin.token.erc20.library.ERC20_balances.addr.Return": { + "cairo_type": "(res: felt)", + "type": "type_definition" + }, + "openzeppelin.token.erc20.library.ERC20_balances.addr.SIZEOF_LOCALS": { + "type": "const", + "value": 0 + }, + "openzeppelin.token.erc20.library.ERC20_balances.hash2": { + "destination": "starkware.cairo.common.hash.hash2", + "type": "alias" + }, + "openzeppelin.token.erc20.library.ERC20_balances.normalize_address": { + "destination": "starkware.starknet.common.storage.normalize_address", + "type": "alias" + }, + "openzeppelin.token.erc20.library.ERC20_balances.read": { + "decorators": [], + "pc": 556, + "type": "function" + }, + "openzeppelin.token.erc20.library.ERC20_balances.read.Args": { + "full_name": "openzeppelin.token.erc20.library.ERC20_balances.read.Args", + "members": { + "account": { + "cairo_type": "felt", + "offset": 0 + } + }, + "size": 1, + "type": "struct" + }, + "openzeppelin.token.erc20.library.ERC20_balances.read.ImplicitArgs": { + "full_name": "openzeppelin.token.erc20.library.ERC20_balances.read.ImplicitArgs", + "members": { + "pedersen_ptr": { + "cairo_type": "starkware.cairo.common.cairo_builtins.HashBuiltin*", + "offset": 1 + }, + "range_check_ptr": { + "cairo_type": "felt", + "offset": 2 + }, + "syscall_ptr": { + "cairo_type": "felt*", + "offset": 0 + } + }, + "size": 3, + "type": "struct" + }, + "openzeppelin.token.erc20.library.ERC20_balances.read.Return": { + "cairo_type": "(balance: starkware.cairo.common.uint256.Uint256)", + "type": "type_definition" + }, + "openzeppelin.token.erc20.library.ERC20_balances.read.SIZEOF_LOCALS": { + "type": "const", + "value": 0 + }, + "openzeppelin.token.erc20.library.ERC20_balances.storage_read": { + "destination": "starkware.starknet.common.syscalls.storage_read", + "type": "alias" + }, + "openzeppelin.token.erc20.library.ERC20_balances.storage_write": { + "destination": "starkware.starknet.common.syscalls.storage_write", + "type": "alias" + }, + "openzeppelin.token.erc20.library.ERC20_balances.write": { + "decorators": [], + "pc": 576, + "type": "function" + }, + "openzeppelin.token.erc20.library.ERC20_balances.write.Args": { + "full_name": "openzeppelin.token.erc20.library.ERC20_balances.write.Args", + "members": { + "account": { + "cairo_type": "felt", + "offset": 0 + }, + "value": { + "cairo_type": "starkware.cairo.common.uint256.Uint256", + "offset": 1 + } + }, + "size": 3, + "type": "struct" + }, + "openzeppelin.token.erc20.library.ERC20_balances.write.ImplicitArgs": { + "full_name": "openzeppelin.token.erc20.library.ERC20_balances.write.ImplicitArgs", + "members": { + "pedersen_ptr": { + "cairo_type": "starkware.cairo.common.cairo_builtins.HashBuiltin*", + "offset": 1 + }, + "range_check_ptr": { + "cairo_type": "felt", + "offset": 2 + }, + "syscall_ptr": { + "cairo_type": "felt*", + "offset": 0 + } + }, + "size": 3, + "type": "struct" + }, + "openzeppelin.token.erc20.library.ERC20_balances.write.Return": { + "cairo_type": "()", + "type": "type_definition" + }, + "openzeppelin.token.erc20.library.ERC20_balances.write.SIZEOF_LOCALS": { + "type": "const", + "value": 0 + }, + "openzeppelin.token.erc20.library.ERC20_decimals": { + "type": "namespace" + }, + "openzeppelin.token.erc20.library.ERC20_decimals.Args": { + "full_name": "openzeppelin.token.erc20.library.ERC20_decimals.Args", + "members": {}, + "size": 0, + "type": "struct" + }, + "openzeppelin.token.erc20.library.ERC20_decimals.HashBuiltin": { + "destination": "starkware.cairo.common.cairo_builtins.HashBuiltin", + "type": "alias" + }, + "openzeppelin.token.erc20.library.ERC20_decimals.ImplicitArgs": { + "full_name": "openzeppelin.token.erc20.library.ERC20_decimals.ImplicitArgs", + "members": {}, + "size": 0, + "type": "struct" + }, + "openzeppelin.token.erc20.library.ERC20_decimals.Return": { + "cairo_type": "()", + "type": "type_definition" + }, + "openzeppelin.token.erc20.library.ERC20_decimals.SIZEOF_LOCALS": { + "type": "const", + "value": 0 + }, + "openzeppelin.token.erc20.library.ERC20_decimals.addr": { + "decorators": [], + "pc": 471, + "type": "function" + }, + "openzeppelin.token.erc20.library.ERC20_decimals.addr.Args": { + "full_name": "openzeppelin.token.erc20.library.ERC20_decimals.addr.Args", + "members": {}, + "size": 0, + "type": "struct" + }, + "openzeppelin.token.erc20.library.ERC20_decimals.addr.ImplicitArgs": { + "full_name": "openzeppelin.token.erc20.library.ERC20_decimals.addr.ImplicitArgs", + "members": { + "pedersen_ptr": { + "cairo_type": "starkware.cairo.common.cairo_builtins.HashBuiltin*", + "offset": 0 + }, + "range_check_ptr": { + "cairo_type": "felt", + "offset": 1 + } + }, + "size": 2, + "type": "struct" + }, + "openzeppelin.token.erc20.library.ERC20_decimals.addr.Return": { + "cairo_type": "(res: felt)", + "type": "type_definition" + }, + "openzeppelin.token.erc20.library.ERC20_decimals.addr.SIZEOF_LOCALS": { + "type": "const", + "value": 0 + }, + "openzeppelin.token.erc20.library.ERC20_decimals.hash2": { + "destination": "starkware.cairo.common.hash.hash2", + "type": "alias" + }, + "openzeppelin.token.erc20.library.ERC20_decimals.normalize_address": { + "destination": "starkware.starknet.common.storage.normalize_address", + "type": "alias" + }, + "openzeppelin.token.erc20.library.ERC20_decimals.read": { + "decorators": [], + "pc": 476, + "type": "function" + }, + "openzeppelin.token.erc20.library.ERC20_decimals.read.Args": { + "full_name": "openzeppelin.token.erc20.library.ERC20_decimals.read.Args", + "members": {}, + "size": 0, + "type": "struct" + }, + "openzeppelin.token.erc20.library.ERC20_decimals.read.ImplicitArgs": { + "full_name": "openzeppelin.token.erc20.library.ERC20_decimals.read.ImplicitArgs", + "members": { + "pedersen_ptr": { + "cairo_type": "starkware.cairo.common.cairo_builtins.HashBuiltin*", + "offset": 1 + }, + "range_check_ptr": { + "cairo_type": "felt", + "offset": 2 + }, + "syscall_ptr": { + "cairo_type": "felt*", + "offset": 0 + } + }, + "size": 3, + "type": "struct" + }, + "openzeppelin.token.erc20.library.ERC20_decimals.read.Return": { + "cairo_type": "(decimals: felt)", + "type": "type_definition" + }, + "openzeppelin.token.erc20.library.ERC20_decimals.read.SIZEOF_LOCALS": { + "type": "const", + "value": 0 + }, + "openzeppelin.token.erc20.library.ERC20_decimals.storage_read": { + "destination": "starkware.starknet.common.syscalls.storage_read", + "type": "alias" + }, + "openzeppelin.token.erc20.library.ERC20_decimals.storage_write": { + "destination": "starkware.starknet.common.syscalls.storage_write", + "type": "alias" + }, + "openzeppelin.token.erc20.library.ERC20_decimals.write": { + "decorators": [], + "pc": 489, + "type": "function" + }, + "openzeppelin.token.erc20.library.ERC20_decimals.write.Args": { + "full_name": "openzeppelin.token.erc20.library.ERC20_decimals.write.Args", + "members": { + "value": { + "cairo_type": "felt", + "offset": 0 + } + }, + "size": 1, + "type": "struct" + }, + "openzeppelin.token.erc20.library.ERC20_decimals.write.ImplicitArgs": { + "full_name": "openzeppelin.token.erc20.library.ERC20_decimals.write.ImplicitArgs", + "members": { + "pedersen_ptr": { + "cairo_type": "starkware.cairo.common.cairo_builtins.HashBuiltin*", + "offset": 1 + }, + "range_check_ptr": { + "cairo_type": "felt", + "offset": 2 + }, + "syscall_ptr": { + "cairo_type": "felt*", + "offset": 0 + } + }, + "size": 3, + "type": "struct" + }, + "openzeppelin.token.erc20.library.ERC20_decimals.write.Return": { + "cairo_type": "()", + "type": "type_definition" + }, + "openzeppelin.token.erc20.library.ERC20_decimals.write.SIZEOF_LOCALS": { + "type": "const", + "value": 0 + }, + "openzeppelin.token.erc20.library.ERC20_name": { + "type": "namespace" + }, + "openzeppelin.token.erc20.library.ERC20_name.Args": { + "full_name": "openzeppelin.token.erc20.library.ERC20_name.Args", + "members": {}, + "size": 0, + "type": "struct" + }, + "openzeppelin.token.erc20.library.ERC20_name.HashBuiltin": { + "destination": "starkware.cairo.common.cairo_builtins.HashBuiltin", + "type": "alias" + }, + "openzeppelin.token.erc20.library.ERC20_name.ImplicitArgs": { + "full_name": "openzeppelin.token.erc20.library.ERC20_name.ImplicitArgs", + "members": {}, + "size": 0, + "type": "struct" + }, + "openzeppelin.token.erc20.library.ERC20_name.Return": { + "cairo_type": "()", + "type": "type_definition" + }, + "openzeppelin.token.erc20.library.ERC20_name.SIZEOF_LOCALS": { + "type": "const", + "value": 0 + }, + "openzeppelin.token.erc20.library.ERC20_name.addr": { + "decorators": [], + "pc": 411, + "type": "function" + }, + "openzeppelin.token.erc20.library.ERC20_name.addr.Args": { + "full_name": "openzeppelin.token.erc20.library.ERC20_name.addr.Args", + "members": {}, + "size": 0, + "type": "struct" + }, + "openzeppelin.token.erc20.library.ERC20_name.addr.ImplicitArgs": { + "full_name": "openzeppelin.token.erc20.library.ERC20_name.addr.ImplicitArgs", + "members": { + "pedersen_ptr": { + "cairo_type": "starkware.cairo.common.cairo_builtins.HashBuiltin*", + "offset": 0 + }, + "range_check_ptr": { + "cairo_type": "felt", + "offset": 1 + } + }, + "size": 2, + "type": "struct" + }, + "openzeppelin.token.erc20.library.ERC20_name.addr.Return": { + "cairo_type": "(res: felt)", + "type": "type_definition" + }, + "openzeppelin.token.erc20.library.ERC20_name.addr.SIZEOF_LOCALS": { + "type": "const", + "value": 0 + }, + "openzeppelin.token.erc20.library.ERC20_name.hash2": { + "destination": "starkware.cairo.common.hash.hash2", + "type": "alias" + }, + "openzeppelin.token.erc20.library.ERC20_name.normalize_address": { + "destination": "starkware.starknet.common.storage.normalize_address", + "type": "alias" + }, + "openzeppelin.token.erc20.library.ERC20_name.read": { + "decorators": [], + "pc": 416, + "type": "function" + }, + "openzeppelin.token.erc20.library.ERC20_name.read.Args": { + "full_name": "openzeppelin.token.erc20.library.ERC20_name.read.Args", + "members": {}, + "size": 0, + "type": "struct" + }, + "openzeppelin.token.erc20.library.ERC20_name.read.ImplicitArgs": { + "full_name": "openzeppelin.token.erc20.library.ERC20_name.read.ImplicitArgs", + "members": { + "pedersen_ptr": { + "cairo_type": "starkware.cairo.common.cairo_builtins.HashBuiltin*", + "offset": 1 + }, + "range_check_ptr": { + "cairo_type": "felt", + "offset": 2 + }, + "syscall_ptr": { + "cairo_type": "felt*", + "offset": 0 + } + }, + "size": 3, + "type": "struct" + }, + "openzeppelin.token.erc20.library.ERC20_name.read.Return": { + "cairo_type": "(name: felt)", + "type": "type_definition" + }, + "openzeppelin.token.erc20.library.ERC20_name.read.SIZEOF_LOCALS": { + "type": "const", + "value": 0 + }, + "openzeppelin.token.erc20.library.ERC20_name.storage_read": { + "destination": "starkware.starknet.common.syscalls.storage_read", + "type": "alias" + }, + "openzeppelin.token.erc20.library.ERC20_name.storage_write": { + "destination": "starkware.starknet.common.syscalls.storage_write", + "type": "alias" + }, + "openzeppelin.token.erc20.library.ERC20_name.write": { + "decorators": [], + "pc": 429, + "type": "function" + }, + "openzeppelin.token.erc20.library.ERC20_name.write.Args": { + "full_name": "openzeppelin.token.erc20.library.ERC20_name.write.Args", + "members": { + "value": { + "cairo_type": "felt", + "offset": 0 + } + }, + "size": 1, + "type": "struct" + }, + "openzeppelin.token.erc20.library.ERC20_name.write.ImplicitArgs": { + "full_name": "openzeppelin.token.erc20.library.ERC20_name.write.ImplicitArgs", + "members": { + "pedersen_ptr": { + "cairo_type": "starkware.cairo.common.cairo_builtins.HashBuiltin*", + "offset": 1 + }, + "range_check_ptr": { + "cairo_type": "felt", + "offset": 2 + }, + "syscall_ptr": { + "cairo_type": "felt*", + "offset": 0 + } + }, + "size": 3, + "type": "struct" + }, + "openzeppelin.token.erc20.library.ERC20_name.write.Return": { + "cairo_type": "()", + "type": "type_definition" + }, + "openzeppelin.token.erc20.library.ERC20_name.write.SIZEOF_LOCALS": { + "type": "const", + "value": 0 + }, + "openzeppelin.token.erc20.library.ERC20_symbol": { + "type": "namespace" + }, + "openzeppelin.token.erc20.library.ERC20_symbol.Args": { + "full_name": "openzeppelin.token.erc20.library.ERC20_symbol.Args", + "members": {}, + "size": 0, + "type": "struct" + }, + "openzeppelin.token.erc20.library.ERC20_symbol.HashBuiltin": { + "destination": "starkware.cairo.common.cairo_builtins.HashBuiltin", + "type": "alias" + }, + "openzeppelin.token.erc20.library.ERC20_symbol.ImplicitArgs": { + "full_name": "openzeppelin.token.erc20.library.ERC20_symbol.ImplicitArgs", + "members": {}, + "size": 0, + "type": "struct" + }, + "openzeppelin.token.erc20.library.ERC20_symbol.Return": { + "cairo_type": "()", + "type": "type_definition" + }, + "openzeppelin.token.erc20.library.ERC20_symbol.SIZEOF_LOCALS": { + "type": "const", + "value": 0 + }, + "openzeppelin.token.erc20.library.ERC20_symbol.addr": { + "decorators": [], + "pc": 441, + "type": "function" + }, + "openzeppelin.token.erc20.library.ERC20_symbol.addr.Args": { + "full_name": "openzeppelin.token.erc20.library.ERC20_symbol.addr.Args", + "members": {}, + "size": 0, + "type": "struct" + }, + "openzeppelin.token.erc20.library.ERC20_symbol.addr.ImplicitArgs": { + "full_name": "openzeppelin.token.erc20.library.ERC20_symbol.addr.ImplicitArgs", + "members": { + "pedersen_ptr": { + "cairo_type": "starkware.cairo.common.cairo_builtins.HashBuiltin*", + "offset": 0 + }, + "range_check_ptr": { + "cairo_type": "felt", + "offset": 1 + } + }, + "size": 2, + "type": "struct" + }, + "openzeppelin.token.erc20.library.ERC20_symbol.addr.Return": { + "cairo_type": "(res: felt)", + "type": "type_definition" + }, + "openzeppelin.token.erc20.library.ERC20_symbol.addr.SIZEOF_LOCALS": { + "type": "const", + "value": 0 + }, + "openzeppelin.token.erc20.library.ERC20_symbol.hash2": { + "destination": "starkware.cairo.common.hash.hash2", + "type": "alias" + }, + "openzeppelin.token.erc20.library.ERC20_symbol.normalize_address": { + "destination": "starkware.starknet.common.storage.normalize_address", + "type": "alias" + }, + "openzeppelin.token.erc20.library.ERC20_symbol.read": { + "decorators": [], + "pc": 446, + "type": "function" + }, + "openzeppelin.token.erc20.library.ERC20_symbol.read.Args": { + "full_name": "openzeppelin.token.erc20.library.ERC20_symbol.read.Args", + "members": {}, + "size": 0, + "type": "struct" + }, + "openzeppelin.token.erc20.library.ERC20_symbol.read.ImplicitArgs": { + "full_name": "openzeppelin.token.erc20.library.ERC20_symbol.read.ImplicitArgs", + "members": { + "pedersen_ptr": { + "cairo_type": "starkware.cairo.common.cairo_builtins.HashBuiltin*", + "offset": 1 + }, + "range_check_ptr": { + "cairo_type": "felt", + "offset": 2 + }, + "syscall_ptr": { + "cairo_type": "felt*", + "offset": 0 + } + }, + "size": 3, + "type": "struct" + }, + "openzeppelin.token.erc20.library.ERC20_symbol.read.Return": { + "cairo_type": "(symbol: felt)", + "type": "type_definition" + }, + "openzeppelin.token.erc20.library.ERC20_symbol.read.SIZEOF_LOCALS": { + "type": "const", + "value": 0 + }, + "openzeppelin.token.erc20.library.ERC20_symbol.storage_read": { + "destination": "starkware.starknet.common.syscalls.storage_read", + "type": "alias" + }, + "openzeppelin.token.erc20.library.ERC20_symbol.storage_write": { + "destination": "starkware.starknet.common.syscalls.storage_write", + "type": "alias" + }, + "openzeppelin.token.erc20.library.ERC20_symbol.write": { + "decorators": [], + "pc": 459, + "type": "function" + }, + "openzeppelin.token.erc20.library.ERC20_symbol.write.Args": { + "full_name": "openzeppelin.token.erc20.library.ERC20_symbol.write.Args", + "members": { + "value": { + "cairo_type": "felt", + "offset": 0 + } + }, + "size": 1, + "type": "struct" + }, + "openzeppelin.token.erc20.library.ERC20_symbol.write.ImplicitArgs": { + "full_name": "openzeppelin.token.erc20.library.ERC20_symbol.write.ImplicitArgs", + "members": { + "pedersen_ptr": { + "cairo_type": "starkware.cairo.common.cairo_builtins.HashBuiltin*", + "offset": 1 + }, + "range_check_ptr": { + "cairo_type": "felt", + "offset": 2 + }, + "syscall_ptr": { + "cairo_type": "felt*", + "offset": 0 + } + }, + "size": 3, + "type": "struct" + }, + "openzeppelin.token.erc20.library.ERC20_symbol.write.Return": { + "cairo_type": "()", + "type": "type_definition" + }, + "openzeppelin.token.erc20.library.ERC20_symbol.write.SIZEOF_LOCALS": { + "type": "const", + "value": 0 + }, + "openzeppelin.token.erc20.library.ERC20_total_supply": { + "type": "namespace" + }, + "openzeppelin.token.erc20.library.ERC20_total_supply.Args": { + "full_name": "openzeppelin.token.erc20.library.ERC20_total_supply.Args", + "members": {}, + "size": 0, + "type": "struct" + }, + "openzeppelin.token.erc20.library.ERC20_total_supply.HashBuiltin": { + "destination": "starkware.cairo.common.cairo_builtins.HashBuiltin", + "type": "alias" + }, + "openzeppelin.token.erc20.library.ERC20_total_supply.ImplicitArgs": { + "full_name": "openzeppelin.token.erc20.library.ERC20_total_supply.ImplicitArgs", + "members": {}, + "size": 0, + "type": "struct" + }, + "openzeppelin.token.erc20.library.ERC20_total_supply.Return": { + "cairo_type": "()", + "type": "type_definition" + }, + "openzeppelin.token.erc20.library.ERC20_total_supply.SIZEOF_LOCALS": { + "type": "const", + "value": 0 + }, + "openzeppelin.token.erc20.library.ERC20_total_supply.addr": { + "decorators": [], + "pc": 501, + "type": "function" + }, + "openzeppelin.token.erc20.library.ERC20_total_supply.addr.Args": { + "full_name": "openzeppelin.token.erc20.library.ERC20_total_supply.addr.Args", + "members": {}, + "size": 0, + "type": "struct" + }, + "openzeppelin.token.erc20.library.ERC20_total_supply.addr.ImplicitArgs": { + "full_name": "openzeppelin.token.erc20.library.ERC20_total_supply.addr.ImplicitArgs", + "members": { + "pedersen_ptr": { + "cairo_type": "starkware.cairo.common.cairo_builtins.HashBuiltin*", + "offset": 0 + }, + "range_check_ptr": { + "cairo_type": "felt", + "offset": 1 + } + }, + "size": 2, + "type": "struct" + }, + "openzeppelin.token.erc20.library.ERC20_total_supply.addr.Return": { + "cairo_type": "(res: felt)", + "type": "type_definition" + }, + "openzeppelin.token.erc20.library.ERC20_total_supply.addr.SIZEOF_LOCALS": { + "type": "const", + "value": 0 + }, + "openzeppelin.token.erc20.library.ERC20_total_supply.hash2": { + "destination": "starkware.cairo.common.hash.hash2", + "type": "alias" + }, + "openzeppelin.token.erc20.library.ERC20_total_supply.normalize_address": { + "destination": "starkware.starknet.common.storage.normalize_address", + "type": "alias" + }, + "openzeppelin.token.erc20.library.ERC20_total_supply.read": { + "decorators": [], + "pc": 506, + "type": "function" + }, + "openzeppelin.token.erc20.library.ERC20_total_supply.read.Args": { + "full_name": "openzeppelin.token.erc20.library.ERC20_total_supply.read.Args", + "members": {}, + "size": 0, + "type": "struct" + }, + "openzeppelin.token.erc20.library.ERC20_total_supply.read.ImplicitArgs": { + "full_name": "openzeppelin.token.erc20.library.ERC20_total_supply.read.ImplicitArgs", + "members": { + "pedersen_ptr": { + "cairo_type": "starkware.cairo.common.cairo_builtins.HashBuiltin*", + "offset": 1 + }, + "range_check_ptr": { + "cairo_type": "felt", + "offset": 2 + }, + "syscall_ptr": { + "cairo_type": "felt*", + "offset": 0 + } + }, + "size": 3, + "type": "struct" + }, + "openzeppelin.token.erc20.library.ERC20_total_supply.read.Return": { + "cairo_type": "(total_supply: starkware.cairo.common.uint256.Uint256)", + "type": "type_definition" + }, + "openzeppelin.token.erc20.library.ERC20_total_supply.read.SIZEOF_LOCALS": { + "type": "const", + "value": 0 + }, + "openzeppelin.token.erc20.library.ERC20_total_supply.storage_read": { + "destination": "starkware.starknet.common.syscalls.storage_read", + "type": "alias" + }, + "openzeppelin.token.erc20.library.ERC20_total_supply.storage_write": { + "destination": "starkware.starknet.common.syscalls.storage_write", + "type": "alias" + }, + "openzeppelin.token.erc20.library.ERC20_total_supply.write": { + "decorators": [], + "pc": 525, + "type": "function" + }, + "openzeppelin.token.erc20.library.ERC20_total_supply.write.Args": { + "full_name": "openzeppelin.token.erc20.library.ERC20_total_supply.write.Args", + "members": { + "value": { + "cairo_type": "starkware.cairo.common.uint256.Uint256", + "offset": 0 + } + }, + "size": 2, + "type": "struct" + }, + "openzeppelin.token.erc20.library.ERC20_total_supply.write.ImplicitArgs": { + "full_name": "openzeppelin.token.erc20.library.ERC20_total_supply.write.ImplicitArgs", + "members": { + "pedersen_ptr": { + "cairo_type": "starkware.cairo.common.cairo_builtins.HashBuiltin*", + "offset": 1 + }, + "range_check_ptr": { + "cairo_type": "felt", + "offset": 2 + }, + "syscall_ptr": { + "cairo_type": "felt*", + "offset": 0 + } + }, + "size": 3, + "type": "struct" + }, + "openzeppelin.token.erc20.library.ERC20_total_supply.write.Return": { + "cairo_type": "()", + "type": "type_definition" + }, + "openzeppelin.token.erc20.library.ERC20_total_supply.write.SIZEOF_LOCALS": { + "type": "const", + "value": 0 + }, + "openzeppelin.token.erc20.library.FALSE": { + "destination": "starkware.cairo.common.bool.FALSE", + "type": "alias" + }, + "openzeppelin.token.erc20.library.HashBuiltin": { + "destination": "starkware.cairo.common.cairo_builtins.HashBuiltin", + "type": "alias" + }, + "openzeppelin.token.erc20.library.SafeUint256": { + "destination": "openzeppelin.security.safemath.library.SafeUint256", + "type": "alias" + }, + "openzeppelin.token.erc20.library.TRUE": { + "destination": "starkware.cairo.common.bool.TRUE", + "type": "alias" + }, + "openzeppelin.token.erc20.library.Transfer": { + "type": "namespace" + }, + "openzeppelin.token.erc20.library.Transfer.Args": { + "full_name": "openzeppelin.token.erc20.library.Transfer.Args", + "members": {}, + "size": 0, + "type": "struct" + }, + "openzeppelin.token.erc20.library.Transfer.ImplicitArgs": { + "full_name": "openzeppelin.token.erc20.library.Transfer.ImplicitArgs", + "members": {}, + "size": 0, + "type": "struct" + }, + "openzeppelin.token.erc20.library.Transfer.Return": { + "cairo_type": "()", + "type": "type_definition" + }, + "openzeppelin.token.erc20.library.Transfer.SELECTOR": { + "type": "const", + "value": 271746229759260285552388728919865295615886751538523744128730118297934206697 + }, + "openzeppelin.token.erc20.library.Transfer.SIZEOF_LOCALS": { + "type": "const", + "value": 0 + }, + "openzeppelin.token.erc20.library.Transfer.alloc": { + "destination": "starkware.cairo.common.alloc.alloc", + "type": "alias" + }, + "openzeppelin.token.erc20.library.Transfer.emit": { + "decorators": [], + "pc": 357, + "type": "function" + }, + "openzeppelin.token.erc20.library.Transfer.emit.Args": { + "full_name": "openzeppelin.token.erc20.library.Transfer.emit.Args", + "members": { + "from_": { + "cairo_type": "felt", + "offset": 0 + }, + "to": { + "cairo_type": "felt", + "offset": 1 + }, + "value": { + "cairo_type": "starkware.cairo.common.uint256.Uint256", + "offset": 2 + } + }, + "size": 4, + "type": "struct" + }, + "openzeppelin.token.erc20.library.Transfer.emit.ImplicitArgs": { + "full_name": "openzeppelin.token.erc20.library.Transfer.emit.ImplicitArgs", + "members": { + "range_check_ptr": { + "cairo_type": "felt", + "offset": 1 + }, + "syscall_ptr": { + "cairo_type": "felt*", + "offset": 0 + } + }, + "size": 2, + "type": "struct" + }, + "openzeppelin.token.erc20.library.Transfer.emit.Return": { + "cairo_type": "()", + "type": "type_definition" + }, + "openzeppelin.token.erc20.library.Transfer.emit.SIZEOF_LOCALS": { + "type": "const", + "value": 2 + }, + "openzeppelin.token.erc20.library.Transfer.emit_event": { + "destination": "starkware.starknet.common.syscalls.emit_event", + "type": "alias" + }, + "openzeppelin.token.erc20.library.Transfer.memcpy": { + "destination": "starkware.cairo.common.memcpy.memcpy", + "type": "alias" + }, + "openzeppelin.token.erc20.library.UINT8_MAX": { + "destination": "openzeppelin.utils.constants.library.UINT8_MAX", + "type": "alias" + }, + "openzeppelin.token.erc20.library.Uint256": { + "destination": "starkware.cairo.common.uint256.Uint256", + "type": "alias" + }, + "openzeppelin.token.erc20.library.assert_le": { + "destination": "starkware.cairo.common.math.assert_le", + "type": "alias" + }, + "openzeppelin.token.erc20.library.assert_not_zero": { + "destination": "starkware.cairo.common.math.assert_not_zero", + "type": "alias" + }, + "openzeppelin.token.erc20.library.get_caller_address": { + "destination": "starkware.starknet.common.syscalls.get_caller_address", + "type": "alias" + }, + "openzeppelin.token.erc20.library.uint256_check": { + "destination": "starkware.cairo.common.uint256.uint256_check", + "type": "alias" + }, + "openzeppelin.token.erc20.library.uint256_eq": { + "destination": "starkware.cairo.common.uint256.uint256_eq", + "type": "alias" + }, + "openzeppelin.token.erc20.library.uint256_not": { + "destination": "starkware.cairo.common.uint256.uint256_not", + "type": "alias" + }, + "openzeppelin.utils.constants.library.DEFAULT_ADMIN_ROLE": { + "type": "const", + "value": 0 + }, + "openzeppelin.utils.constants.library.IACCESSCONTROL_ID": { + "type": "const", + "value": 2036718347 + }, + "openzeppelin.utils.constants.library.IACCOUNT_ID": { + "type": "const", + "value": 2792084853 + }, + "openzeppelin.utils.constants.library.IERC165_ID": { + "type": "const", + "value": 33540519 + }, + "openzeppelin.utils.constants.library.IERC721_ENUMERABLE_ID": { + "type": "const", + "value": 2014223715 + }, + "openzeppelin.utils.constants.library.IERC721_ID": { + "type": "const", + "value": 2158778573 + }, + "openzeppelin.utils.constants.library.IERC721_METADATA_ID": { + "type": "const", + "value": 1532892063 + }, + "openzeppelin.utils.constants.library.IERC721_RECEIVER_ID": { + "type": "const", + "value": 353073666 + }, + "openzeppelin.utils.constants.library.INVALID_ID": { + "type": "const", + "value": 4294967295 + }, + "openzeppelin.utils.constants.library.TRANSACTION_VERSION": { + "type": "const", + "value": 1 + }, + "openzeppelin.utils.constants.library.UINT8_MAX": { + "type": "const", + "value": 255 + }, + "starkware.cairo.common.alloc.alloc": { + "decorators": [], + "pc": 0, + "type": "function" + }, + "starkware.cairo.common.alloc.alloc.Args": { + "full_name": "starkware.cairo.common.alloc.alloc.Args", + "members": {}, + "size": 0, + "type": "struct" + }, + "starkware.cairo.common.alloc.alloc.ImplicitArgs": { + "full_name": "starkware.cairo.common.alloc.alloc.ImplicitArgs", + "members": {}, + "size": 0, + "type": "struct" + }, + "starkware.cairo.common.alloc.alloc.Return": { + "cairo_type": "(ptr: felt*)", + "type": "type_definition" + }, + "starkware.cairo.common.alloc.alloc.SIZEOF_LOCALS": { + "type": "const", + "value": 0 + }, + "starkware.cairo.common.bitwise.ALL_ONES": { + "type": "const", + "value": -106710729501573572985208420194530329073740042555888586719234 + }, + "starkware.cairo.common.bitwise.BitwiseBuiltin": { + "destination": "starkware.cairo.common.cairo_builtins.BitwiseBuiltin", + "type": "alias" + }, + "starkware.cairo.common.bool.FALSE": { + "type": "const", + "value": 0 + }, + "starkware.cairo.common.bool.TRUE": { + "type": "const", + "value": 1 + }, + "starkware.cairo.common.cairo_builtins.BitwiseBuiltin": { + "full_name": "starkware.cairo.common.cairo_builtins.BitwiseBuiltin", + "members": { + "x": { + "cairo_type": "felt", + "offset": 0 + }, + "x_and_y": { + "cairo_type": "felt", + "offset": 2 + }, + "x_or_y": { + "cairo_type": "felt", + "offset": 4 + }, + "x_xor_y": { + "cairo_type": "felt", + "offset": 3 + }, + "y": { + "cairo_type": "felt", + "offset": 1 + } + }, + "size": 5, + "type": "struct" + }, + "starkware.cairo.common.cairo_builtins.EcOpBuiltin": { + "full_name": "starkware.cairo.common.cairo_builtins.EcOpBuiltin", + "members": { + "m": { + "cairo_type": "felt", + "offset": 4 + }, + "p": { + "cairo_type": "starkware.cairo.common.ec_point.EcPoint", + "offset": 0 + }, + "q": { + "cairo_type": "starkware.cairo.common.ec_point.EcPoint", + "offset": 2 + }, + "r": { + "cairo_type": "starkware.cairo.common.ec_point.EcPoint", + "offset": 5 + } + }, + "size": 7, + "type": "struct" + }, + "starkware.cairo.common.cairo_builtins.EcPoint": { + "destination": "starkware.cairo.common.ec_point.EcPoint", + "type": "alias" + }, + "starkware.cairo.common.cairo_builtins.HashBuiltin": { + "full_name": "starkware.cairo.common.cairo_builtins.HashBuiltin", + "members": { + "result": { + "cairo_type": "felt", + "offset": 2 + }, + "x": { + "cairo_type": "felt", + "offset": 0 + }, + "y": { + "cairo_type": "felt", + "offset": 1 + } + }, + "size": 3, + "type": "struct" + }, + "starkware.cairo.common.cairo_builtins.KeccakBuiltin": { + "full_name": "starkware.cairo.common.cairo_builtins.KeccakBuiltin", + "members": { + "input": { + "cairo_type": "starkware.cairo.common.keccak_state.KeccakBuiltinState", + "offset": 0 + }, + "output": { + "cairo_type": "starkware.cairo.common.keccak_state.KeccakBuiltinState", + "offset": 8 + } + }, + "size": 16, + "type": "struct" + }, + "starkware.cairo.common.cairo_builtins.KeccakBuiltinState": { + "destination": "starkware.cairo.common.keccak_state.KeccakBuiltinState", + "type": "alias" + }, + "starkware.cairo.common.cairo_builtins.PoseidonBuiltin": { + "full_name": "starkware.cairo.common.cairo_builtins.PoseidonBuiltin", + "members": { + "input": { + "cairo_type": "starkware.cairo.common.poseidon_state.PoseidonBuiltinState", + "offset": 0 + }, + "output": { + "cairo_type": "starkware.cairo.common.poseidon_state.PoseidonBuiltinState", + "offset": 3 + } + }, + "size": 6, + "type": "struct" + }, + "starkware.cairo.common.cairo_builtins.PoseidonBuiltinState": { + "destination": "starkware.cairo.common.poseidon_state.PoseidonBuiltinState", + "type": "alias" + }, + "starkware.cairo.common.cairo_builtins.SignatureBuiltin": { + "full_name": "starkware.cairo.common.cairo_builtins.SignatureBuiltin", + "members": { + "message": { + "cairo_type": "felt", + "offset": 1 + }, + "pub_key": { + "cairo_type": "felt", + "offset": 0 + } + }, + "size": 2, + "type": "struct" + }, + "starkware.cairo.common.dict_access.DictAccess": { + "full_name": "starkware.cairo.common.dict_access.DictAccess", + "members": { + "key": { + "cairo_type": "felt", + "offset": 0 + }, + "new_value": { + "cairo_type": "felt", + "offset": 2 + }, + "prev_value": { + "cairo_type": "felt", + "offset": 1 + } + }, + "size": 3, + "type": "struct" + }, + "starkware.cairo.common.ec_point.EcPoint": { + "full_name": "starkware.cairo.common.ec_point.EcPoint", + "members": { + "x": { + "cairo_type": "felt", + "offset": 0 + }, + "y": { + "cairo_type": "felt", + "offset": 1 + } + }, + "size": 2, + "type": "struct" + }, + "starkware.cairo.common.hash.HashBuiltin": { + "destination": "starkware.cairo.common.cairo_builtins.HashBuiltin", + "type": "alias" + }, + "starkware.cairo.common.hash.hash2": { + "decorators": [], + "pc": 3, + "type": "function" + }, + "starkware.cairo.common.hash.hash2.Args": { + "full_name": "starkware.cairo.common.hash.hash2.Args", + "members": { + "x": { + "cairo_type": "felt", + "offset": 0 + }, + "y": { + "cairo_type": "felt", + "offset": 1 + } + }, + "size": 2, + "type": "struct" + }, + "starkware.cairo.common.hash.hash2.ImplicitArgs": { + "full_name": "starkware.cairo.common.hash.hash2.ImplicitArgs", + "members": { + "hash_ptr": { + "cairo_type": "starkware.cairo.common.cairo_builtins.HashBuiltin*", + "offset": 0 + } + }, + "size": 1, + "type": "struct" + }, + "starkware.cairo.common.hash.hash2.Return": { + "cairo_type": "(result: felt)", + "type": "type_definition" + }, + "starkware.cairo.common.hash.hash2.SIZEOF_LOCALS": { + "type": "const", + "value": 0 + }, + "starkware.cairo.common.keccak_state.KeccakBuiltinState": { + "full_name": "starkware.cairo.common.keccak_state.KeccakBuiltinState", + "members": { + "s0": { + "cairo_type": "felt", + "offset": 0 + }, + "s1": { + "cairo_type": "felt", + "offset": 1 + }, + "s2": { + "cairo_type": "felt", + "offset": 2 + }, + "s3": { + "cairo_type": "felt", + "offset": 3 + }, + "s4": { + "cairo_type": "felt", + "offset": 4 + }, + "s5": { + "cairo_type": "felt", + "offset": 5 + }, + "s6": { + "cairo_type": "felt", + "offset": 6 + }, + "s7": { + "cairo_type": "felt", + "offset": 7 + } + }, + "size": 8, + "type": "struct" + }, + "starkware.cairo.common.math.FALSE": { + "destination": "starkware.cairo.common.bool.FALSE", + "type": "alias" + }, + "starkware.cairo.common.math.TRUE": { + "destination": "starkware.cairo.common.bool.TRUE", + "type": "alias" + }, + "starkware.cairo.common.math.assert_250_bit": { + "decorators": [ + "known_ap_change" + ], + "pc": 56, + "type": "function" + }, + "starkware.cairo.common.math.assert_250_bit.Args": { + "full_name": "starkware.cairo.common.math.assert_250_bit.Args", + "members": { + "value": { + "cairo_type": "felt", + "offset": 0 + } + }, + "size": 1, + "type": "struct" + }, + "starkware.cairo.common.math.assert_250_bit.HIGH_BOUND": { + "type": "const", + "value": 5316911983139663491615228241121378304 + }, + "starkware.cairo.common.math.assert_250_bit.ImplicitArgs": { + "full_name": "starkware.cairo.common.math.assert_250_bit.ImplicitArgs", + "members": { + "range_check_ptr": { + "cairo_type": "felt", + "offset": 0 + } + }, + "size": 1, + "type": "struct" + }, + "starkware.cairo.common.math.assert_250_bit.Return": { + "cairo_type": "()", + "type": "type_definition" + }, + "starkware.cairo.common.math.assert_250_bit.SHIFT": { + "type": "const", + "value": 340282366920938463463374607431768211456 + }, + "starkware.cairo.common.math.assert_250_bit.SIZEOF_LOCALS": { + "type": "const", + "value": 0 + }, + "starkware.cairo.common.math.assert_250_bit.UPPER_BOUND": { + "type": "const", + "value": 1809251394333065553493296640760748560207343510400633813116524750123642650624 + }, + "starkware.cairo.common.math.assert_250_bit.high": { + "cairo_type": "felt", + "full_name": "starkware.cairo.common.math.assert_250_bit.high", + "references": [ + { + "ap_tracking_data": { + "group": 9, + "offset": 0 + }, + "pc": 56, + "value": "[cast([fp + (-4)] + 1, felt*)]" + } + ], + "type": "reference" + }, + "starkware.cairo.common.math.assert_250_bit.low": { + "cairo_type": "felt", + "full_name": "starkware.cairo.common.math.assert_250_bit.low", + "references": [ + { + "ap_tracking_data": { + "group": 9, + "offset": 0 + }, + "pc": 56, + "value": "[cast([fp + (-4)], felt*)]" + } + ], + "type": "reference" + }, + "starkware.cairo.common.math.assert_250_bit.value": { + "cairo_type": "felt", + "full_name": "starkware.cairo.common.math.assert_250_bit.value", + "references": [ + { + "ap_tracking_data": { + "group": 9, + "offset": 0 + }, + "pc": 56, + "value": "[cast(fp + (-3), felt*)]" + } + ], + "type": "reference" + }, + "starkware.cairo.common.math.assert_le": { + "decorators": [], + "pc": 51, + "type": "function" + }, + "starkware.cairo.common.math.assert_le.Args": { + "full_name": "starkware.cairo.common.math.assert_le.Args", + "members": { + "a": { + "cairo_type": "felt", + "offset": 0 + }, + "b": { + "cairo_type": "felt", + "offset": 1 + } + }, + "size": 2, + "type": "struct" + }, + "starkware.cairo.common.math.assert_le.ImplicitArgs": { + "full_name": "starkware.cairo.common.math.assert_le.ImplicitArgs", + "members": { + "range_check_ptr": { + "cairo_type": "felt", + "offset": 0 + } + }, + "size": 1, + "type": "struct" + }, + "starkware.cairo.common.math.assert_le.Return": { + "cairo_type": "()", + "type": "type_definition" + }, + "starkware.cairo.common.math.assert_le.SIZEOF_LOCALS": { + "type": "const", + "value": 0 + }, + "starkware.cairo.common.math.assert_le_felt": { + "decorators": [ + "known_ap_change" + ], + "pc": 69, + "type": "function" + }, + "starkware.cairo.common.math.assert_le_felt.Args": { + "full_name": "starkware.cairo.common.math.assert_le_felt.Args", + "members": { + "a": { + "cairo_type": "felt", + "offset": 0 + }, + "b": { + "cairo_type": "felt", + "offset": 1 + } + }, + "size": 2, + "type": "struct" + }, + "starkware.cairo.common.math.assert_le_felt.ImplicitArgs": { + "full_name": "starkware.cairo.common.math.assert_le_felt.ImplicitArgs", + "members": { + "range_check_ptr": { + "cairo_type": "felt", + "offset": 0 + } + }, + "size": 1, + "type": "struct" + }, + "starkware.cairo.common.math.assert_le_felt.PRIME_OVER_2_HIGH": { + "type": "const", + "value": 5316911983139663648412552867652567041 + }, + "starkware.cairo.common.math.assert_le_felt.PRIME_OVER_3_HIGH": { + "type": "const", + "value": 3544607988759775765608368578435044694 + }, + "starkware.cairo.common.math.assert_le_felt.Return": { + "cairo_type": "()", + "type": "type_definition" + }, + "starkware.cairo.common.math.assert_le_felt.SIZEOF_LOCALS": { + "type": "const", + "value": 0 + }, + "starkware.cairo.common.math.assert_le_felt.a": { + "cairo_type": "felt", + "full_name": "starkware.cairo.common.math.assert_le_felt.a", + "references": [ + { + "ap_tracking_data": { + "group": 10, + "offset": 0 + }, + "pc": 69, + "value": "[cast(fp + (-4), felt*)]" + } + ], + "type": "reference" + }, + "starkware.cairo.common.math.assert_le_felt.b": { + "cairo_type": "felt", + "full_name": "starkware.cairo.common.math.assert_le_felt.b", + "references": [ + { + "ap_tracking_data": { + "group": 10, + "offset": 0 + }, + "pc": 69, + "value": "[cast(fp + (-3), felt*)]" + } + ], + "type": "reference" + }, + "starkware.cairo.common.math.assert_le_felt.range_check_ptr": { + "cairo_type": "felt", + "full_name": "starkware.cairo.common.math.assert_le_felt.range_check_ptr", + "references": [ + { + "ap_tracking_data": { + "group": 10, + "offset": 0 + }, + "pc": 69, + "value": "[cast(fp + (-5), felt*)]" + }, + { + "ap_tracking_data": { + "group": 10, + "offset": 8 + }, + "pc": 79, + "value": "cast([fp + (-5)] + 4, felt)" + } + ], + "type": "reference" + }, + "starkware.cairo.common.math.assert_le_felt.skip_exclude_a": { + "pc": 93, + "type": "label" + }, + "starkware.cairo.common.math.assert_le_felt.skip_exclude_b_minus_a": { + "pc": 105, + "type": "label" + }, + "starkware.cairo.common.math.assert_nn": { + "decorators": [], + "pc": 47, + "type": "function" + }, + "starkware.cairo.common.math.assert_nn.Args": { + "full_name": "starkware.cairo.common.math.assert_nn.Args", + "members": { + "a": { + "cairo_type": "felt", + "offset": 0 + } + }, + "size": 1, + "type": "struct" + }, + "starkware.cairo.common.math.assert_nn.ImplicitArgs": { + "full_name": "starkware.cairo.common.math.assert_nn.ImplicitArgs", + "members": { + "range_check_ptr": { + "cairo_type": "felt", + "offset": 0 + } + }, + "size": 1, + "type": "struct" + }, + "starkware.cairo.common.math.assert_nn.Return": { + "cairo_type": "()", + "type": "type_definition" + }, + "starkware.cairo.common.math.assert_nn.SIZEOF_LOCALS": { + "type": "const", + "value": 0 + }, + "starkware.cairo.common.math.assert_nn.a": { + "cairo_type": "felt", + "full_name": "starkware.cairo.common.math.assert_nn.a", + "references": [ + { + "ap_tracking_data": { + "group": 7, + "offset": 0 + }, + "pc": 47, + "value": "[cast(fp + (-3), felt*)]" + } + ], + "type": "reference" + }, + "starkware.cairo.common.math.assert_not_zero": { + "decorators": [], + "pc": 42, + "type": "function" + }, + "starkware.cairo.common.math.assert_not_zero.Args": { + "full_name": "starkware.cairo.common.math.assert_not_zero.Args", + "members": { + "value": { + "cairo_type": "felt", + "offset": 0 + } + }, + "size": 1, + "type": "struct" + }, + "starkware.cairo.common.math.assert_not_zero.ImplicitArgs": { + "full_name": "starkware.cairo.common.math.assert_not_zero.ImplicitArgs", + "members": {}, + "size": 0, + "type": "struct" + }, + "starkware.cairo.common.math.assert_not_zero.Return": { + "cairo_type": "()", + "type": "type_definition" + }, + "starkware.cairo.common.math.assert_not_zero.SIZEOF_LOCALS": { + "type": "const", + "value": 0 + }, + "starkware.cairo.common.math.assert_not_zero.value": { + "cairo_type": "felt", + "full_name": "starkware.cairo.common.math.assert_not_zero.value", + "references": [ + { + "ap_tracking_data": { + "group": 6, + "offset": 0 + }, + "pc": 42, + "value": "[cast(fp + (-3), felt*)]" + } + ], + "type": "reference" + }, + "starkware.cairo.common.math_cmp.RC_BOUND": { + "type": "const", + "value": 340282366920938463463374607431768211456 + }, + "starkware.cairo.common.math_cmp.assert_le_felt": { + "destination": "starkware.cairo.common.math.assert_le_felt", + "type": "alias" + }, + "starkware.cairo.common.math_cmp.assert_lt_felt": { + "destination": "starkware.cairo.common.math.assert_lt_felt", + "type": "alias" + }, + "starkware.cairo.common.math_cmp.is_le": { + "decorators": [ + "known_ap_change" + ], + "pc": 187, + "type": "function" + }, + "starkware.cairo.common.math_cmp.is_le.Args": { + "full_name": "starkware.cairo.common.math_cmp.is_le.Args", + "members": { + "a": { + "cairo_type": "felt", + "offset": 0 + }, + "b": { + "cairo_type": "felt", + "offset": 1 + } + }, + "size": 2, + "type": "struct" + }, + "starkware.cairo.common.math_cmp.is_le.ImplicitArgs": { + "full_name": "starkware.cairo.common.math_cmp.is_le.ImplicitArgs", + "members": { + "range_check_ptr": { + "cairo_type": "felt", + "offset": 0 + } + }, + "size": 1, + "type": "struct" + }, + "starkware.cairo.common.math_cmp.is_le.Return": { + "cairo_type": "felt", + "type": "type_definition" + }, + "starkware.cairo.common.math_cmp.is_le.SIZEOF_LOCALS": { + "type": "const", + "value": 0 + }, + "starkware.cairo.common.math_cmp.is_nn": { + "decorators": [ + "known_ap_change" + ], + "pc": 154, + "type": "function" + }, + "starkware.cairo.common.math_cmp.is_nn.Args": { + "full_name": "starkware.cairo.common.math_cmp.is_nn.Args", + "members": { + "a": { + "cairo_type": "felt", + "offset": 0 + } + }, + "size": 1, + "type": "struct" + }, + "starkware.cairo.common.math_cmp.is_nn.ImplicitArgs": { + "full_name": "starkware.cairo.common.math_cmp.is_nn.ImplicitArgs", + "members": { + "range_check_ptr": { + "cairo_type": "felt", + "offset": 0 + } + }, + "size": 1, + "type": "struct" + }, + "starkware.cairo.common.math_cmp.is_nn.Return": { + "cairo_type": "felt", + "type": "type_definition" + }, + "starkware.cairo.common.math_cmp.is_nn.SIZEOF_LOCALS": { + "type": "const", + "value": 0 + }, + "starkware.cairo.common.math_cmp.is_nn.a": { + "cairo_type": "felt", + "full_name": "starkware.cairo.common.math_cmp.is_nn.a", + "references": [ + { + "ap_tracking_data": { + "group": 12, + "offset": 0 + }, + "pc": 154, + "value": "[cast(fp + (-3), felt*)]" + } + ], + "type": "reference" + }, + "starkware.cairo.common.math_cmp.is_nn.need_felt_comparison": { + "pc": 178, + "type": "label" + }, + "starkware.cairo.common.math_cmp.is_nn.out_of_range": { + "pc": 164, + "type": "label" + }, + "starkware.cairo.common.poseidon_state.PoseidonBuiltinState": { + "full_name": "starkware.cairo.common.poseidon_state.PoseidonBuiltinState", + "members": { + "s0": { + "cairo_type": "felt", + "offset": 0 + }, + "s1": { + "cairo_type": "felt", + "offset": 1 + }, + "s2": { + "cairo_type": "felt", + "offset": 2 + } + }, + "size": 3, + "type": "struct" + }, + "starkware.cairo.common.pow.assert_le": { + "destination": "starkware.cairo.common.math.assert_le", + "type": "alias" + }, + "starkware.cairo.common.pow.get_ap": { + "destination": "starkware.cairo.common.registers.get_ap", + "type": "alias" + }, + "starkware.cairo.common.pow.get_fp_and_pc": { + "destination": "starkware.cairo.common.registers.get_fp_and_pc", + "type": "alias" + }, + "starkware.cairo.common.registers.get_ap": { + "destination": "starkware.cairo.lang.compiler.lib.registers.get_ap", + "type": "alias" + }, + "starkware.cairo.common.registers.get_fp_and_pc": { + "destination": "starkware.cairo.lang.compiler.lib.registers.get_fp_and_pc", + "type": "alias" + }, + "starkware.cairo.common.uint256.ALL_ONES": { + "type": "const", + "value": 340282366920938463463374607431768211455 + }, + "starkware.cairo.common.uint256.BitwiseBuiltin": { + "destination": "starkware.cairo.common.cairo_builtins.BitwiseBuiltin", + "type": "alias" + }, + "starkware.cairo.common.uint256.HALF_SHIFT": { + "type": "const", + "value": 18446744073709551616 + }, + "starkware.cairo.common.uint256.SHIFT": { + "type": "const", + "value": 340282366920938463463374607431768211456 + }, + "starkware.cairo.common.uint256.Uint256": { + "full_name": "starkware.cairo.common.uint256.Uint256", + "members": { + "high": { + "cairo_type": "felt", + "offset": 1 + }, + "low": { + "cairo_type": "felt", + "offset": 0 + } + }, + "size": 2, + "type": "struct" + }, + "starkware.cairo.common.uint256.assert_in_range": { + "destination": "starkware.cairo.common.math.assert_in_range", + "type": "alias" + }, + "starkware.cairo.common.uint256.assert_le": { + "destination": "starkware.cairo.common.math.assert_le", + "type": "alias" + }, + "starkware.cairo.common.uint256.assert_nn_le": { + "destination": "starkware.cairo.common.math.assert_nn_le", + "type": "alias" + }, + "starkware.cairo.common.uint256.assert_not_zero": { + "destination": "starkware.cairo.common.math.assert_not_zero", + "type": "alias" + }, + "starkware.cairo.common.uint256.bitwise_and": { + "destination": "starkware.cairo.common.bitwise.bitwise_and", + "type": "alias" + }, + "starkware.cairo.common.uint256.bitwise_or": { + "destination": "starkware.cairo.common.bitwise.bitwise_or", + "type": "alias" + }, + "starkware.cairo.common.uint256.bitwise_xor": { + "destination": "starkware.cairo.common.bitwise.bitwise_xor", + "type": "alias" + }, + "starkware.cairo.common.uint256.get_ap": { + "destination": "starkware.cairo.common.registers.get_ap", + "type": "alias" + }, + "starkware.cairo.common.uint256.get_fp_and_pc": { + "destination": "starkware.cairo.common.registers.get_fp_and_pc", + "type": "alias" + }, + "starkware.cairo.common.uint256.is_le": { + "destination": "starkware.cairo.common.math_cmp.is_le", + "type": "alias" + }, + "starkware.cairo.common.uint256.pow": { + "destination": "starkware.cairo.common.pow.pow", + "type": "alias" + }, + "starkware.cairo.common.uint256.uint256_add": { + "decorators": [], + "pc": 197, + "type": "function" + }, + "starkware.cairo.common.uint256.uint256_add.Args": { + "full_name": "starkware.cairo.common.uint256.uint256_add.Args", + "members": { + "a": { + "cairo_type": "starkware.cairo.common.uint256.Uint256", + "offset": 0 + }, + "b": { + "cairo_type": "starkware.cairo.common.uint256.Uint256", + "offset": 2 + } + }, + "size": 4, + "type": "struct" + }, + "starkware.cairo.common.uint256.uint256_add.ImplicitArgs": { + "full_name": "starkware.cairo.common.uint256.uint256_add.ImplicitArgs", + "members": { + "range_check_ptr": { + "cairo_type": "felt", + "offset": 0 + } + }, + "size": 1, + "type": "struct" + }, + "starkware.cairo.common.uint256.uint256_add.Return": { + "cairo_type": "(res: starkware.cairo.common.uint256.Uint256, carry: felt)", + "type": "type_definition" + }, + "starkware.cairo.common.uint256.uint256_add.SIZEOF_LOCALS": { + "type": "const", + "value": 4 + }, + "starkware.cairo.common.uint256.uint256_add.a": { + "cairo_type": "starkware.cairo.common.uint256.Uint256", + "full_name": "starkware.cairo.common.uint256.uint256_add.a", + "references": [ + { + "ap_tracking_data": { + "group": 15, + "offset": 0 + }, + "pc": 197, + "value": "[cast(fp + (-6), starkware.cairo.common.uint256.Uint256*)]" + } + ], + "type": "reference" + }, + "starkware.cairo.common.uint256.uint256_add.b": { + "cairo_type": "starkware.cairo.common.uint256.Uint256", + "full_name": "starkware.cairo.common.uint256.uint256_add.b", + "references": [ + { + "ap_tracking_data": { + "group": 15, + "offset": 0 + }, + "pc": 197, + "value": "[cast(fp + (-4), starkware.cairo.common.uint256.Uint256*)]" + } + ], + "type": "reference" + }, + "starkware.cairo.common.uint256.uint256_add.carry_high": { + "cairo_type": "felt", + "full_name": "starkware.cairo.common.uint256.uint256_add.carry_high", + "references": [ + { + "ap_tracking_data": { + "group": 15, + "offset": 4 + }, + "pc": 199, + "value": "[cast(fp + 3, felt*)]" + } + ], + "type": "reference" + }, + "starkware.cairo.common.uint256.uint256_add.carry_low": { + "cairo_type": "felt", + "full_name": "starkware.cairo.common.uint256.uint256_add.carry_low", + "references": [ + { + "ap_tracking_data": { + "group": 15, + "offset": 4 + }, + "pc": 199, + "value": "[cast(fp + 2, felt*)]" + } + ], + "type": "reference" + }, + "starkware.cairo.common.uint256.uint256_check": { + "decorators": [], + "pc": 192, + "type": "function" + }, + "starkware.cairo.common.uint256.uint256_check.Args": { + "full_name": "starkware.cairo.common.uint256.uint256_check.Args", + "members": { + "a": { + "cairo_type": "starkware.cairo.common.uint256.Uint256", + "offset": 0 + } + }, + "size": 2, + "type": "struct" + }, + "starkware.cairo.common.uint256.uint256_check.ImplicitArgs": { + "full_name": "starkware.cairo.common.uint256.uint256_check.ImplicitArgs", + "members": { + "range_check_ptr": { + "cairo_type": "felt", + "offset": 0 + } + }, + "size": 1, + "type": "struct" + }, + "starkware.cairo.common.uint256.uint256_check.Return": { + "cairo_type": "()", + "type": "type_definition" + }, + "starkware.cairo.common.uint256.uint256_check.SIZEOF_LOCALS": { + "type": "const", + "value": 0 + }, + "starkware.cairo.common.uint256.uint256_eq": { + "decorators": [], + "pc": 287, + "type": "function" + }, + "starkware.cairo.common.uint256.uint256_eq.Args": { + "full_name": "starkware.cairo.common.uint256.uint256_eq.Args", + "members": { + "a": { + "cairo_type": "starkware.cairo.common.uint256.Uint256", + "offset": 0 + }, + "b": { + "cairo_type": "starkware.cairo.common.uint256.Uint256", + "offset": 2 + } + }, + "size": 4, + "type": "struct" + }, + "starkware.cairo.common.uint256.uint256_eq.ImplicitArgs": { + "full_name": "starkware.cairo.common.uint256.uint256_eq.ImplicitArgs", + "members": { + "range_check_ptr": { + "cairo_type": "felt", + "offset": 0 + } + }, + "size": 1, + "type": "struct" + }, + "starkware.cairo.common.uint256.uint256_eq.Return": { + "cairo_type": "(res: felt)", + "type": "type_definition" + }, + "starkware.cairo.common.uint256.uint256_eq.SIZEOF_LOCALS": { + "type": "const", + "value": 0 + }, + "starkware.cairo.common.uint256.uint256_le": { + "decorators": [], + "pc": 236, + "type": "function" + }, + "starkware.cairo.common.uint256.uint256_le.Args": { + "full_name": "starkware.cairo.common.uint256.uint256_le.Args", + "members": { + "a": { + "cairo_type": "starkware.cairo.common.uint256.Uint256", + "offset": 0 + }, + "b": { + "cairo_type": "starkware.cairo.common.uint256.Uint256", + "offset": 2 + } + }, + "size": 4, + "type": "struct" + }, + "starkware.cairo.common.uint256.uint256_le.ImplicitArgs": { + "full_name": "starkware.cairo.common.uint256.uint256_le.ImplicitArgs", + "members": { + "range_check_ptr": { + "cairo_type": "felt", + "offset": 0 + } + }, + "size": 1, + "type": "struct" + }, + "starkware.cairo.common.uint256.uint256_le.Return": { + "cairo_type": "(res: felt)", + "type": "type_definition" + }, + "starkware.cairo.common.uint256.uint256_le.SIZEOF_LOCALS": { + "type": "const", + "value": 0 + }, + "starkware.cairo.common.uint256.uint256_lt": { + "decorators": [], + "pc": 219, + "type": "function" + }, + "starkware.cairo.common.uint256.uint256_lt.Args": { + "full_name": "starkware.cairo.common.uint256.uint256_lt.Args", + "members": { + "a": { + "cairo_type": "starkware.cairo.common.uint256.Uint256", + "offset": 0 + }, + "b": { + "cairo_type": "starkware.cairo.common.uint256.Uint256", + "offset": 2 + } + }, + "size": 4, + "type": "struct" + }, + "starkware.cairo.common.uint256.uint256_lt.ImplicitArgs": { + "full_name": "starkware.cairo.common.uint256.uint256_lt.ImplicitArgs", + "members": { + "range_check_ptr": { + "cairo_type": "felt", + "offset": 0 + } + }, + "size": 1, + "type": "struct" + }, + "starkware.cairo.common.uint256.uint256_lt.Return": { + "cairo_type": "(res: felt)", + "type": "type_definition" + }, + "starkware.cairo.common.uint256.uint256_lt.SIZEOF_LOCALS": { + "type": "const", + "value": 0 + }, + "starkware.cairo.common.uint256.uint256_neg": { + "decorators": [], + "pc": 256, + "type": "function" + }, + "starkware.cairo.common.uint256.uint256_neg.Args": { + "full_name": "starkware.cairo.common.uint256.uint256_neg.Args", + "members": { + "a": { + "cairo_type": "starkware.cairo.common.uint256.Uint256", + "offset": 0 + } + }, + "size": 2, + "type": "struct" + }, + "starkware.cairo.common.uint256.uint256_neg.ImplicitArgs": { + "full_name": "starkware.cairo.common.uint256.uint256_neg.ImplicitArgs", + "members": { + "range_check_ptr": { + "cairo_type": "felt", + "offset": 0 + } + }, + "size": 1, + "type": "struct" + }, + "starkware.cairo.common.uint256.uint256_neg.Return": { + "cairo_type": "(res: starkware.cairo.common.uint256.Uint256)", + "type": "type_definition" + }, + "starkware.cairo.common.uint256.uint256_neg.SIZEOF_LOCALS": { + "type": "const", + "value": 0 + }, + "starkware.cairo.common.uint256.uint256_not": { + "decorators": [], + "pc": 248, + "type": "function" + }, + "starkware.cairo.common.uint256.uint256_not.Args": { + "full_name": "starkware.cairo.common.uint256.uint256_not.Args", + "members": { + "a": { + "cairo_type": "starkware.cairo.common.uint256.Uint256", + "offset": 0 + } + }, + "size": 2, + "type": "struct" + }, + "starkware.cairo.common.uint256.uint256_not.ImplicitArgs": { + "full_name": "starkware.cairo.common.uint256.uint256_not.ImplicitArgs", + "members": { + "range_check_ptr": { + "cairo_type": "felt", + "offset": 0 + } + }, + "size": 1, + "type": "struct" + }, + "starkware.cairo.common.uint256.uint256_not.Return": { + "cairo_type": "(res: starkware.cairo.common.uint256.Uint256)", + "type": "type_definition" + }, + "starkware.cairo.common.uint256.uint256_not.SIZEOF_LOCALS": { + "type": "const", + "value": 0 + }, + "starkware.cairo.common.uint256.uint256_sub": { + "decorators": [], + "pc": 271, + "type": "function" + }, + "starkware.cairo.common.uint256.uint256_sub.Args": { + "full_name": "starkware.cairo.common.uint256.uint256_sub.Args", + "members": { + "a": { + "cairo_type": "starkware.cairo.common.uint256.Uint256", + "offset": 0 + }, + "b": { + "cairo_type": "starkware.cairo.common.uint256.Uint256", + "offset": 2 + } + }, + "size": 4, + "type": "struct" + }, + "starkware.cairo.common.uint256.uint256_sub.ImplicitArgs": { + "full_name": "starkware.cairo.common.uint256.uint256_sub.ImplicitArgs", + "members": { + "range_check_ptr": { + "cairo_type": "felt", + "offset": 0 + } + }, + "size": 1, + "type": "struct" + }, + "starkware.cairo.common.uint256.uint256_sub.Return": { + "cairo_type": "(res: starkware.cairo.common.uint256.Uint256)", + "type": "type_definition" + }, + "starkware.cairo.common.uint256.uint256_sub.SIZEOF_LOCALS": { + "type": "const", + "value": 0 + }, + "starkware.starknet.common.storage.ADDR_BOUND": { + "type": "const", + "value": -106710729501573572985208420194530329073740042555888586719489 + }, + "starkware.starknet.common.storage.MAX_STORAGE_ITEM_SIZE": { + "type": "const", + "value": 256 + }, + "starkware.starknet.common.storage.assert_250_bit": { + "destination": "starkware.cairo.common.math.assert_250_bit", + "type": "alias" + }, + "starkware.starknet.common.storage.normalize_address": { + "decorators": [ + "known_ap_change" + ], + "pc": 114, + "type": "function" + }, + "starkware.starknet.common.storage.normalize_address.Args": { + "full_name": "starkware.starknet.common.storage.normalize_address.Args", + "members": { + "addr": { + "cairo_type": "felt", + "offset": 0 + } + }, + "size": 1, + "type": "struct" + }, + "starkware.starknet.common.storage.normalize_address.ImplicitArgs": { + "full_name": "starkware.starknet.common.storage.normalize_address.ImplicitArgs", + "members": { + "range_check_ptr": { + "cairo_type": "felt", + "offset": 0 + } + }, + "size": 1, + "type": "struct" + }, + "starkware.starknet.common.storage.normalize_address.Return": { + "cairo_type": "(res: felt)", + "type": "type_definition" + }, + "starkware.starknet.common.storage.normalize_address.SIZEOF_LOCALS": { + "type": "const", + "value": 0 + }, + "starkware.starknet.common.storage.normalize_address.addr": { + "cairo_type": "felt", + "full_name": "starkware.starknet.common.storage.normalize_address.addr", + "references": [ + { + "ap_tracking_data": { + "group": 11, + "offset": 0 + }, + "pc": 114, + "value": "[cast(fp + (-3), felt*)]" + } + ], + "type": "reference" + }, + "starkware.starknet.common.storage.normalize_address.is_250": { + "cairo_type": "felt", + "full_name": "starkware.starknet.common.storage.normalize_address.is_250", + "references": [ + { + "ap_tracking_data": { + "group": 11, + "offset": 2 + }, + "pc": 134, + "value": "[cast(ap + (-1), felt*)]" + } + ], + "type": "reference" + }, + "starkware.starknet.common.storage.normalize_address.is_small": { + "cairo_type": "felt", + "full_name": "starkware.starknet.common.storage.normalize_address.is_small", + "references": [ + { + "ap_tracking_data": { + "group": 11, + "offset": 1 + }, + "pc": 116, + "value": "[cast(ap + (-1), felt*)]" + } + ], + "type": "reference" + }, + "starkware.starknet.common.syscalls.CALL_CONTRACT_SELECTOR": { + "type": "const", + "value": 20853273475220472486191784820 + }, + "starkware.starknet.common.syscalls.CallContract": { + "full_name": "starkware.starknet.common.syscalls.CallContract", + "members": { + "request": { + "cairo_type": "starkware.starknet.common.syscalls.CallContractRequest", + "offset": 0 + }, + "response": { + "cairo_type": "starkware.starknet.common.syscalls.CallContractResponse", + "offset": 5 + } + }, + "size": 7, + "type": "struct" + }, + "starkware.starknet.common.syscalls.CallContractRequest": { + "full_name": "starkware.starknet.common.syscalls.CallContractRequest", + "members": { + "calldata": { + "cairo_type": "felt*", + "offset": 4 + }, + "calldata_size": { + "cairo_type": "felt", + "offset": 3 + }, + "contract_address": { + "cairo_type": "felt", + "offset": 1 + }, + "function_selector": { + "cairo_type": "felt", + "offset": 2 + }, + "selector": { + "cairo_type": "felt", + "offset": 0 + } + }, + "size": 5, + "type": "struct" + }, + "starkware.starknet.common.syscalls.CallContractResponse": { + "full_name": "starkware.starknet.common.syscalls.CallContractResponse", + "members": { + "retdata": { + "cairo_type": "felt*", + "offset": 1 + }, + "retdata_size": { + "cairo_type": "felt", + "offset": 0 + } + }, + "size": 2, + "type": "struct" + }, + "starkware.starknet.common.syscalls.DELEGATE_CALL_SELECTOR": { + "type": "const", + "value": 21167594061783206823196716140 + }, + "starkware.starknet.common.syscalls.DELEGATE_L1_HANDLER_SELECTOR": { + "type": "const", + "value": 23274015802972845247556842986379118667122 + }, + "starkware.starknet.common.syscalls.DEPLOY_SELECTOR": { + "type": "const", + "value": 75202468540281 + }, + "starkware.starknet.common.syscalls.Deploy": { + "full_name": "starkware.starknet.common.syscalls.Deploy", + "members": { + "request": { + "cairo_type": "starkware.starknet.common.syscalls.DeployRequest", + "offset": 0 + }, + "response": { + "cairo_type": "starkware.starknet.common.syscalls.DeployResponse", + "offset": 6 + } + }, + "size": 9, + "type": "struct" + }, + "starkware.starknet.common.syscalls.DeployRequest": { + "full_name": "starkware.starknet.common.syscalls.DeployRequest", + "members": { + "class_hash": { + "cairo_type": "felt", + "offset": 1 + }, + "constructor_calldata": { + "cairo_type": "felt*", + "offset": 4 + }, + "constructor_calldata_size": { + "cairo_type": "felt", + "offset": 3 + }, + "contract_address_salt": { + "cairo_type": "felt", + "offset": 2 + }, + "deploy_from_zero": { + "cairo_type": "felt", + "offset": 5 + }, + "selector": { + "cairo_type": "felt", + "offset": 0 + } + }, + "size": 6, + "type": "struct" + }, + "starkware.starknet.common.syscalls.DeployResponse": { + "full_name": "starkware.starknet.common.syscalls.DeployResponse", + "members": { + "constructor_retdata": { + "cairo_type": "felt*", + "offset": 2 + }, + "constructor_retdata_size": { + "cairo_type": "felt", + "offset": 1 + }, + "contract_address": { + "cairo_type": "felt", + "offset": 0 + } + }, + "size": 3, + "type": "struct" + }, + "starkware.starknet.common.syscalls.DictAccess": { + "destination": "starkware.cairo.common.dict_access.DictAccess", + "type": "alias" + }, + "starkware.starknet.common.syscalls.EMIT_EVENT_SELECTOR": { + "type": "const", + "value": 1280709301550335749748 + }, + "starkware.starknet.common.syscalls.EmitEvent": { + "full_name": "starkware.starknet.common.syscalls.EmitEvent", + "members": { + "data": { + "cairo_type": "felt*", + "offset": 4 + }, + "data_len": { + "cairo_type": "felt", + "offset": 3 + }, + "keys": { + "cairo_type": "felt*", + "offset": 2 + }, + "keys_len": { + "cairo_type": "felt", + "offset": 1 + }, + "selector": { + "cairo_type": "felt", + "offset": 0 + } + }, + "size": 5, + "type": "struct" + }, + "starkware.starknet.common.syscalls.GET_BLOCK_NUMBER_SELECTOR": { + "type": "const", + "value": 1448089106835523001438702345020786 + }, + "starkware.starknet.common.syscalls.GET_BLOCK_TIMESTAMP_SELECTOR": { + "type": "const", + "value": 24294903732626645868215235778792757751152 + }, + "starkware.starknet.common.syscalls.GET_CALLER_ADDRESS_SELECTOR": { + "type": "const", + "value": 94901967781393078444254803017658102643 + }, + "starkware.starknet.common.syscalls.GET_CONTRACT_ADDRESS_SELECTOR": { + "type": "const", + "value": 6219495360805491471215297013070624192820083 + }, + "starkware.starknet.common.syscalls.GET_SEQUENCER_ADDRESS_SELECTOR": { + "type": "const", + "value": 1592190833581991703053805829594610833820054387 + }, + "starkware.starknet.common.syscalls.GET_TX_INFO_SELECTOR": { + "type": "const", + "value": 1317029390204112103023 + }, + "starkware.starknet.common.syscalls.GET_TX_SIGNATURE_SELECTOR": { + "type": "const", + "value": 1448089128652340074717162277007973 + }, + "starkware.starknet.common.syscalls.GetBlockNumber": { + "full_name": "starkware.starknet.common.syscalls.GetBlockNumber", + "members": { + "request": { + "cairo_type": "starkware.starknet.common.syscalls.GetBlockNumberRequest", + "offset": 0 + }, + "response": { + "cairo_type": "starkware.starknet.common.syscalls.GetBlockNumberResponse", + "offset": 1 + } + }, + "size": 2, + "type": "struct" + }, + "starkware.starknet.common.syscalls.GetBlockNumberRequest": { + "full_name": "starkware.starknet.common.syscalls.GetBlockNumberRequest", + "members": { + "selector": { + "cairo_type": "felt", + "offset": 0 + } + }, + "size": 1, + "type": "struct" + }, + "starkware.starknet.common.syscalls.GetBlockNumberResponse": { + "full_name": "starkware.starknet.common.syscalls.GetBlockNumberResponse", + "members": { + "block_number": { + "cairo_type": "felt", + "offset": 0 + } + }, + "size": 1, + "type": "struct" + }, + "starkware.starknet.common.syscalls.GetBlockTimestamp": { + "full_name": "starkware.starknet.common.syscalls.GetBlockTimestamp", + "members": { + "request": { + "cairo_type": "starkware.starknet.common.syscalls.GetBlockTimestampRequest", + "offset": 0 + }, + "response": { + "cairo_type": "starkware.starknet.common.syscalls.GetBlockTimestampResponse", + "offset": 1 + } + }, + "size": 2, + "type": "struct" + }, + "starkware.starknet.common.syscalls.GetBlockTimestampRequest": { + "full_name": "starkware.starknet.common.syscalls.GetBlockTimestampRequest", + "members": { + "selector": { + "cairo_type": "felt", + "offset": 0 + } + }, + "size": 1, + "type": "struct" + }, + "starkware.starknet.common.syscalls.GetBlockTimestampResponse": { + "full_name": "starkware.starknet.common.syscalls.GetBlockTimestampResponse", + "members": { + "block_timestamp": { + "cairo_type": "felt", + "offset": 0 + } + }, + "size": 1, + "type": "struct" + }, + "starkware.starknet.common.syscalls.GetCallerAddress": { + "full_name": "starkware.starknet.common.syscalls.GetCallerAddress", + "members": { + "request": { + "cairo_type": "starkware.starknet.common.syscalls.GetCallerAddressRequest", + "offset": 0 + }, + "response": { + "cairo_type": "starkware.starknet.common.syscalls.GetCallerAddressResponse", + "offset": 1 + } + }, + "size": 2, + "type": "struct" + }, + "starkware.starknet.common.syscalls.GetCallerAddressRequest": { + "full_name": "starkware.starknet.common.syscalls.GetCallerAddressRequest", + "members": { + "selector": { + "cairo_type": "felt", + "offset": 0 + } + }, + "size": 1, + "type": "struct" + }, + "starkware.starknet.common.syscalls.GetCallerAddressResponse": { + "full_name": "starkware.starknet.common.syscalls.GetCallerAddressResponse", + "members": { + "caller_address": { + "cairo_type": "felt", + "offset": 0 + } + }, + "size": 1, + "type": "struct" + }, + "starkware.starknet.common.syscalls.GetContractAddress": { + "full_name": "starkware.starknet.common.syscalls.GetContractAddress", + "members": { + "request": { + "cairo_type": "starkware.starknet.common.syscalls.GetContractAddressRequest", + "offset": 0 + }, + "response": { + "cairo_type": "starkware.starknet.common.syscalls.GetContractAddressResponse", + "offset": 1 + } + }, + "size": 2, + "type": "struct" + }, + "starkware.starknet.common.syscalls.GetContractAddressRequest": { + "full_name": "starkware.starknet.common.syscalls.GetContractAddressRequest", + "members": { + "selector": { + "cairo_type": "felt", + "offset": 0 + } + }, + "size": 1, + "type": "struct" + }, + "starkware.starknet.common.syscalls.GetContractAddressResponse": { + "full_name": "starkware.starknet.common.syscalls.GetContractAddressResponse", + "members": { + "contract_address": { + "cairo_type": "felt", + "offset": 0 + } + }, + "size": 1, + "type": "struct" + }, + "starkware.starknet.common.syscalls.GetSequencerAddress": { + "full_name": "starkware.starknet.common.syscalls.GetSequencerAddress", + "members": { + "request": { + "cairo_type": "starkware.starknet.common.syscalls.GetSequencerAddressRequest", + "offset": 0 + }, + "response": { + "cairo_type": "starkware.starknet.common.syscalls.GetSequencerAddressResponse", + "offset": 1 + } + }, + "size": 2, + "type": "struct" + }, + "starkware.starknet.common.syscalls.GetSequencerAddressRequest": { + "full_name": "starkware.starknet.common.syscalls.GetSequencerAddressRequest", + "members": { + "selector": { + "cairo_type": "felt", + "offset": 0 + } + }, + "size": 1, + "type": "struct" + }, + "starkware.starknet.common.syscalls.GetSequencerAddressResponse": { + "full_name": "starkware.starknet.common.syscalls.GetSequencerAddressResponse", + "members": { + "sequencer_address": { + "cairo_type": "felt", + "offset": 0 + } + }, + "size": 1, + "type": "struct" + }, + "starkware.starknet.common.syscalls.GetTxInfo": { + "full_name": "starkware.starknet.common.syscalls.GetTxInfo", + "members": { + "request": { + "cairo_type": "starkware.starknet.common.syscalls.GetTxInfoRequest", + "offset": 0 + }, + "response": { + "cairo_type": "starkware.starknet.common.syscalls.GetTxInfoResponse", + "offset": 1 + } + }, + "size": 2, + "type": "struct" + }, + "starkware.starknet.common.syscalls.GetTxInfoRequest": { + "full_name": "starkware.starknet.common.syscalls.GetTxInfoRequest", + "members": { + "selector": { + "cairo_type": "felt", + "offset": 0 + } + }, + "size": 1, + "type": "struct" + }, + "starkware.starknet.common.syscalls.GetTxInfoResponse": { + "full_name": "starkware.starknet.common.syscalls.GetTxInfoResponse", + "members": { + "tx_info": { + "cairo_type": "starkware.starknet.common.syscalls.TxInfo*", + "offset": 0 + } + }, + "size": 1, + "type": "struct" + }, + "starkware.starknet.common.syscalls.GetTxSignature": { + "full_name": "starkware.starknet.common.syscalls.GetTxSignature", + "members": { + "request": { + "cairo_type": "starkware.starknet.common.syscalls.GetTxSignatureRequest", + "offset": 0 + }, + "response": { + "cairo_type": "starkware.starknet.common.syscalls.GetTxSignatureResponse", + "offset": 1 + } + }, + "size": 3, + "type": "struct" + }, + "starkware.starknet.common.syscalls.GetTxSignatureRequest": { + "full_name": "starkware.starknet.common.syscalls.GetTxSignatureRequest", + "members": { + "selector": { + "cairo_type": "felt", + "offset": 0 + } + }, + "size": 1, + "type": "struct" + }, + "starkware.starknet.common.syscalls.GetTxSignatureResponse": { + "full_name": "starkware.starknet.common.syscalls.GetTxSignatureResponse", + "members": { + "signature": { + "cairo_type": "felt*", + "offset": 1 + }, + "signature_len": { + "cairo_type": "felt", + "offset": 0 + } + }, + "size": 2, + "type": "struct" + }, + "starkware.starknet.common.syscalls.LIBRARY_CALL_L1_HANDLER_SELECTOR": { + "type": "const", + "value": 436233452754198157705746250789557519228244616562 + }, + "starkware.starknet.common.syscalls.LIBRARY_CALL_SELECTOR": { + "type": "const", + "value": 92376026794327011772951660 + }, + "starkware.starknet.common.syscalls.LibraryCall": { + "full_name": "starkware.starknet.common.syscalls.LibraryCall", + "members": { + "request": { + "cairo_type": "starkware.starknet.common.syscalls.LibraryCallRequest", + "offset": 0 + }, + "response": { + "cairo_type": "starkware.starknet.common.syscalls.CallContractResponse", + "offset": 5 + } + }, + "size": 7, + "type": "struct" + }, + "starkware.starknet.common.syscalls.LibraryCallRequest": { + "full_name": "starkware.starknet.common.syscalls.LibraryCallRequest", + "members": { + "calldata": { + "cairo_type": "felt*", + "offset": 4 + }, + "calldata_size": { + "cairo_type": "felt", + "offset": 3 + }, + "class_hash": { + "cairo_type": "felt", + "offset": 1 + }, + "function_selector": { + "cairo_type": "felt", + "offset": 2 + }, + "selector": { + "cairo_type": "felt", + "offset": 0 + } + }, + "size": 5, + "type": "struct" + }, + "starkware.starknet.common.syscalls.REPLACE_CLASS_SELECTOR": { + "type": "const", + "value": 25500403217443378527601783667 + }, + "starkware.starknet.common.syscalls.ReplaceClass": { + "full_name": "starkware.starknet.common.syscalls.ReplaceClass", + "members": { + "class_hash": { + "cairo_type": "felt", + "offset": 1 + }, + "selector": { + "cairo_type": "felt", + "offset": 0 + } + }, + "size": 2, + "type": "struct" + }, + "starkware.starknet.common.syscalls.SEND_MESSAGE_TO_L1_SELECTOR": { + "type": "const", + "value": 433017908768303439907196859243777073 + }, + "starkware.starknet.common.syscalls.STORAGE_READ_SELECTOR": { + "type": "const", + "value": 100890693370601760042082660 + }, + "starkware.starknet.common.syscalls.STORAGE_WRITE_SELECTOR": { + "type": "const", + "value": 25828017502874050592466629733 + }, + "starkware.starknet.common.syscalls.SendMessageToL1SysCall": { + "full_name": "starkware.starknet.common.syscalls.SendMessageToL1SysCall", + "members": { + "payload_ptr": { + "cairo_type": "felt*", + "offset": 3 + }, + "payload_size": { + "cairo_type": "felt", + "offset": 2 + }, + "selector": { + "cairo_type": "felt", + "offset": 0 + }, + "to_address": { + "cairo_type": "felt", + "offset": 1 + } + }, + "size": 4, + "type": "struct" + }, + "starkware.starknet.common.syscalls.StorageRead": { + "full_name": "starkware.starknet.common.syscalls.StorageRead", + "members": { + "request": { + "cairo_type": "starkware.starknet.common.syscalls.StorageReadRequest", + "offset": 0 + }, + "response": { + "cairo_type": "starkware.starknet.common.syscalls.StorageReadResponse", + "offset": 2 + } + }, + "size": 3, + "type": "struct" + }, + "starkware.starknet.common.syscalls.StorageReadRequest": { + "full_name": "starkware.starknet.common.syscalls.StorageReadRequest", + "members": { + "address": { + "cairo_type": "felt", + "offset": 1 + }, + "selector": { + "cairo_type": "felt", + "offset": 0 + } + }, + "size": 2, + "type": "struct" + }, + "starkware.starknet.common.syscalls.StorageReadResponse": { + "full_name": "starkware.starknet.common.syscalls.StorageReadResponse", + "members": { + "value": { + "cairo_type": "felt", + "offset": 0 + } + }, + "size": 1, + "type": "struct" + }, + "starkware.starknet.common.syscalls.StorageWrite": { + "full_name": "starkware.starknet.common.syscalls.StorageWrite", + "members": { + "address": { + "cairo_type": "felt", + "offset": 1 + }, + "selector": { + "cairo_type": "felt", + "offset": 0 + }, + "value": { + "cairo_type": "felt", + "offset": 2 + } + }, + "size": 3, + "type": "struct" + }, + "starkware.starknet.common.syscalls.TxInfo": { + "full_name": "starkware.starknet.common.syscalls.TxInfo", + "members": { + "account_contract_address": { + "cairo_type": "felt", + "offset": 1 + }, + "chain_id": { + "cairo_type": "felt", + "offset": 6 + }, + "max_fee": { + "cairo_type": "felt", + "offset": 2 + }, + "nonce": { + "cairo_type": "felt", + "offset": 7 + }, + "signature": { + "cairo_type": "felt*", + "offset": 4 + }, + "signature_len": { + "cairo_type": "felt", + "offset": 3 + }, + "transaction_hash": { + "cairo_type": "felt", + "offset": 5 + }, + "version": { + "cairo_type": "felt", + "offset": 0 + } + }, + "size": 8, + "type": "struct" + }, + "starkware.starknet.common.syscalls.emit_event": { + "decorators": [], + "pc": 32, + "type": "function" + }, + "starkware.starknet.common.syscalls.emit_event.Args": { + "full_name": "starkware.starknet.common.syscalls.emit_event.Args", + "members": { + "data": { + "cairo_type": "felt*", + "offset": 3 + }, + "data_len": { + "cairo_type": "felt", + "offset": 2 + }, + "keys": { + "cairo_type": "felt*", + "offset": 1 + }, + "keys_len": { + "cairo_type": "felt", + "offset": 0 + } + }, + "size": 4, + "type": "struct" + }, + "starkware.starknet.common.syscalls.emit_event.ImplicitArgs": { + "full_name": "starkware.starknet.common.syscalls.emit_event.ImplicitArgs", + "members": { + "syscall_ptr": { + "cairo_type": "felt*", + "offset": 0 + } + }, + "size": 1, + "type": "struct" + }, + "starkware.starknet.common.syscalls.emit_event.Return": { + "cairo_type": "()", + "type": "type_definition" + }, + "starkware.starknet.common.syscalls.emit_event.SIZEOF_LOCALS": { + "type": "const", + "value": 0 + }, + "starkware.starknet.common.syscalls.emit_event.syscall_ptr": { + "cairo_type": "felt*", + "full_name": "starkware.starknet.common.syscalls.emit_event.syscall_ptr", + "references": [ + { + "ap_tracking_data": { + "group": 5, + "offset": 0 + }, + "pc": 32, + "value": "[cast(fp + (-7), felt**)]" + }, + { + "ap_tracking_data": { + "group": 5, + "offset": 1 + }, + "pc": 39, + "value": "cast([fp + (-7)] + 5, felt*)" + } + ], + "type": "reference" + }, + "starkware.starknet.common.syscalls.get_caller_address": { + "decorators": [], + "pc": 9, + "type": "function" + }, + "starkware.starknet.common.syscalls.get_caller_address.Args": { + "full_name": "starkware.starknet.common.syscalls.get_caller_address.Args", + "members": {}, + "size": 0, + "type": "struct" + }, + "starkware.starknet.common.syscalls.get_caller_address.ImplicitArgs": { + "full_name": "starkware.starknet.common.syscalls.get_caller_address.ImplicitArgs", + "members": { + "syscall_ptr": { + "cairo_type": "felt*", + "offset": 0 + } + }, + "size": 1, + "type": "struct" + }, + "starkware.starknet.common.syscalls.get_caller_address.Return": { + "cairo_type": "(caller_address: felt)", + "type": "type_definition" + }, + "starkware.starknet.common.syscalls.get_caller_address.SIZEOF_LOCALS": { + "type": "const", + "value": 0 + }, + "starkware.starknet.common.syscalls.get_caller_address.syscall_ptr": { + "cairo_type": "felt*", + "full_name": "starkware.starknet.common.syscalls.get_caller_address.syscall_ptr", + "references": [ + { + "ap_tracking_data": { + "group": 2, + "offset": 0 + }, + "pc": 9, + "value": "[cast(fp + (-3), felt**)]" + }, + { + "ap_tracking_data": { + "group": 2, + "offset": 1 + }, + "pc": 12, + "value": "cast([fp + (-3)] + 2, felt*)" + } + ], + "type": "reference" + }, + "starkware.starknet.common.syscalls.storage_read": { + "decorators": [], + "pc": 16, + "type": "function" + }, + "starkware.starknet.common.syscalls.storage_read.Args": { + "full_name": "starkware.starknet.common.syscalls.storage_read.Args", + "members": { + "address": { + "cairo_type": "felt", + "offset": 0 + } + }, + "size": 1, + "type": "struct" + }, + "starkware.starknet.common.syscalls.storage_read.ImplicitArgs": { + "full_name": "starkware.starknet.common.syscalls.storage_read.ImplicitArgs", + "members": { + "syscall_ptr": { + "cairo_type": "felt*", + "offset": 0 + } + }, + "size": 1, + "type": "struct" + }, + "starkware.starknet.common.syscalls.storage_read.Return": { + "cairo_type": "(value: felt)", + "type": "type_definition" + }, + "starkware.starknet.common.syscalls.storage_read.SIZEOF_LOCALS": { + "type": "const", + "value": 0 + }, + "starkware.starknet.common.syscalls.storage_read.syscall_ptr": { + "cairo_type": "felt*", + "full_name": "starkware.starknet.common.syscalls.storage_read.syscall_ptr", + "references": [ + { + "ap_tracking_data": { + "group": 3, + "offset": 0 + }, + "pc": 16, + "value": "[cast(fp + (-4), felt**)]" + }, + { + "ap_tracking_data": { + "group": 3, + "offset": 1 + }, + "pc": 20, + "value": "cast([fp + (-4)] + 3, felt*)" + } + ], + "type": "reference" + }, + "starkware.starknet.common.syscalls.storage_write": { + "decorators": [], + "pc": 24, + "type": "function" + }, + "starkware.starknet.common.syscalls.storage_write.Args": { + "full_name": "starkware.starknet.common.syscalls.storage_write.Args", + "members": { + "address": { + "cairo_type": "felt", + "offset": 0 + }, + "value": { + "cairo_type": "felt", + "offset": 1 + } + }, + "size": 2, + "type": "struct" + }, + "starkware.starknet.common.syscalls.storage_write.ImplicitArgs": { + "full_name": "starkware.starknet.common.syscalls.storage_write.ImplicitArgs", + "members": { + "syscall_ptr": { + "cairo_type": "felt*", + "offset": 0 + } + }, + "size": 1, + "type": "struct" + }, + "starkware.starknet.common.syscalls.storage_write.Return": { + "cairo_type": "()", + "type": "type_definition" + }, + "starkware.starknet.common.syscalls.storage_write.SIZEOF_LOCALS": { + "type": "const", + "value": 0 + }, + "starkware.starknet.common.syscalls.storage_write.syscall_ptr": { + "cairo_type": "felt*", + "full_name": "starkware.starknet.common.syscalls.storage_write.syscall_ptr", + "references": [ + { + "ap_tracking_data": { + "group": 4, + "offset": 0 + }, + "pc": 24, + "value": "[cast(fp + (-5), felt**)]" + }, + { + "ap_tracking_data": { + "group": 4, + "offset": 1 + }, + "pc": 29, + "value": "cast([fp + (-5)] + 3, felt*)" + } + ], + "type": "reference" + } + }, + "main_scope": "__main__", + "prime": "0x800000000000011000000000000000000000000000000000000000000000001", + "reference_manager": { + "references": [ + { + "ap_tracking_data": { + "group": 2, + "offset": 0 + }, + "pc": 9, + "value": "[cast(fp + (-3), felt**)]" + }, + { + "ap_tracking_data": { + "group": 3, + "offset": 0 + }, + "pc": 16, + "value": "[cast(fp + (-4), felt**)]" + }, + { + "ap_tracking_data": { + "group": 4, + "offset": 0 + }, + "pc": 24, + "value": "[cast(fp + (-5), felt**)]" + }, + { + "ap_tracking_data": { + "group": 5, + "offset": 0 + }, + "pc": 32, + "value": "[cast(fp + (-7), felt**)]" + }, + { + "ap_tracking_data": { + "group": 6, + "offset": 0 + }, + "pc": 42, + "value": "[cast(fp + (-3), felt*)]" + }, + { + "ap_tracking_data": { + "group": 7, + "offset": 0 + }, + "pc": 47, + "value": "[cast(fp + (-3), felt*)]" + }, + { + "ap_tracking_data": { + "group": 9, + "offset": 0 + }, + "pc": 56, + "value": "[cast(fp + (-3), felt*)]" + }, + { + "ap_tracking_data": { + "group": 9, + "offset": 0 + }, + "pc": 56, + "value": "[cast([fp + (-4)], felt*)]" + }, + { + "ap_tracking_data": { + "group": 9, + "offset": 0 + }, + "pc": 56, + "value": "[cast([fp + (-4)] + 1, felt*)]" + }, + { + "ap_tracking_data": { + "group": 10, + "offset": 0 + }, + "pc": 69, + "value": "[cast(fp + (-4), felt*)]" + }, + { + "ap_tracking_data": { + "group": 10, + "offset": 0 + }, + "pc": 69, + "value": "[cast(fp + (-3), felt*)]" + }, + { + "ap_tracking_data": { + "group": 10, + "offset": 0 + }, + "pc": 69, + "value": "[cast(fp + (-5), felt*)]" + }, + { + "ap_tracking_data": { + "group": 11, + "offset": 0 + }, + "pc": 114, + "value": "[cast(fp + (-3), felt*)]" + }, + { + "ap_tracking_data": { + "group": 11, + "offset": 1 + }, + "pc": 116, + "value": "[cast(ap + (-1), felt*)]" + }, + { + "ap_tracking_data": { + "group": 11, + "offset": 2 + }, + "pc": 134, + "value": "[cast(ap + (-1), felt*)]" + }, + { + "ap_tracking_data": { + "group": 12, + "offset": 0 + }, + "pc": 154, + "value": "[cast(fp + (-3), felt*)]" + }, + { + "ap_tracking_data": { + "group": 15, + "offset": 0 + }, + "pc": 197, + "value": "[cast(fp + (-6), starkware.cairo.common.uint256.Uint256*)]" + }, + { + "ap_tracking_data": { + "group": 15, + "offset": 0 + }, + "pc": 197, + "value": "[cast(fp + (-4), starkware.cairo.common.uint256.Uint256*)]" + }, + { + "ap_tracking_data": { + "group": 15, + "offset": 4 + }, + "pc": 199, + "value": "[cast(fp + 2, felt*)]" + }, + { + "ap_tracking_data": { + "group": 15, + "offset": 4 + }, + "pc": 199, + "value": "[cast(fp + 3, felt*)]" + } + ] + } + } +} diff --git a/packages/starksheet-cairo/utils/constants.py b/packages/starksheet-cairo/utils/constants.py index ff111766..986ef749 100644 --- a/packages/starksheet-cairo/utils/constants.py +++ b/packages/starksheet-cairo/utils/constants.py @@ -1,11 +1,16 @@ +import json import logging import os -import re from enum import Enum +from math import ceil, log from pathlib import Path +import requests from dotenv import load_dotenv +from eth_keys import keys from starknet_py.net.full_node_client import FullNodeClient +from starknet_py.net.gateway_client import GatewayClient +from starknet_py.net.models.chains import StarknetChainId logging.basicConfig() logger = logging.getLogger(__name__) @@ -13,92 +18,131 @@ load_dotenv() -class ChainId(Enum): - mainnet = int.from_bytes(b"SN_MAIN", "big") - testnet = int.from_bytes(b"SN_GOERLI", "big") - testnet2 = int.from_bytes(b"SN_GOERLI2", "big") - katana = int.from_bytes(b"KATANA", "big") - - NETWORKS = { "mainnet": { "name": "mainnet", "explorer_url": "https://starkscan.co", "rpc_url": f"https://starknet-mainnet.infura.io/v3/{os.getenv('INFURA_KEY')}", - "chain_id": ChainId.mainnet, - "starknet_id_address": 0x05DBDEDC203E92749E2E746E2D40A768D966BD243DF04A6B712E222BC040A9AF, - "starknet_id_naming": 0x06AC597F8116F886FA1C97A23FA4E08299975ECAF6B598873CA6792B9BBFB678, + "gateway": "mainnet", + "devnet": False, + "chain_id": StarknetChainId.MAINNET, }, "testnet": { "name": "testnet", "explorer_url": "https://testnet.starkscan.co", "rpc_url": f"https://starknet-goerli.infura.io/v3/{os.getenv('INFURA_KEY')}", - "chain_id": ChainId.testnet, - "starknet_id_address": 0x0783A9097B26EAE0586373B2CE0ED3529DDC44069D1E0FBC4F66D42B69D6850D, - "starknet_id_naming": 0x003BAB268E932D2CECD1946F100AE67CE3DFF9FD234119EA2F6DA57D16D29FCE, + "gateway": "testnet", + "devnet": False, + "chain_id": StarknetChainId.TESTNET, }, "testnet2": { "name": "testnet2", "explorer_url": "https://testnet-2.starkscan.co", "rpc_url": f"https://starknet-goerli2.infura.io/v3/{os.getenv('INFURA_KEY')}", - "chain_id": ChainId.testnet2, - "starknet_id_address": "", - "starknet_id_naming": "", + "gateway": "testnet2", + "devnet": False, + "chain_id": StarknetChainId.TESTNET2, }, - "devnet": { - "name": "devnet", + "starknet-devnet": { + "name": "starknet-devnet", "explorer_url": "", "rpc_url": "http://127.0.0.1:5050/rpc", - "chain_id": ChainId.testnet, - "starknet_id_address": 0x0783A9097B26EAE0586373B2CE0ED3529DDC44069D1E0FBC4F66D42B69D6850D, - "starknet_id_naming": 0x003BAB268E932D2CECD1946F100AE67CE3DFF9FD234119EA2F6DA57D16D29FCE, - }, - "docker": { - "name": "docker", - "explorer_url": "https://devnet.starkscan.co", - "rpc_url": "http://127.0.0.1:5050/rpc", - "chain_id": ChainId.testnet, - "starknet_id_address": 0x0783A9097B26EAE0586373B2CE0ED3529DDC44069D1E0FBC4F66D42B69D6850D, - "starknet_id_naming": 0x003BAB268E932D2CECD1946F100AE67CE3DFF9FD234119EA2F6DA57D16D29FCE, + "devnet": True, + "check_interval": 0.1, + "max_wait": 1, }, "katana": { "name": "katana", "explorer_url": "", "rpc_url": "http://127.0.0.1:5050", - "chain_id": ChainId.katana, - "starknet_id_address": "", - "starknet_id_naming": "", + "devnet": True, + "check_interval": 0.1, + "max_wait": 1, }, "madara": { "name": "madara", "explorer_url": "", "rpc_url": "http://127.0.0.1:9944", - "chain_id": ChainId.testnet, - "starknet_id_address": "", - "starknet_id_naming": "", + "devnet": False, + "check_interval": 6, + "max_wait": 30, }, "sharingan": { "name": "sharingan", "explorer_url": "", "rpc_url": os.getenv("SHARINGAN_RPC_URL"), - "chain_id": ChainId.testnet, - "starknet_id_address": "", - "starknet_id_naming": "", + "devnet": False, + "check_interval": 6, + "max_wait": 30, }, } -NETWORK = NETWORKS[os.getenv("STARKNET_NETWORK", "devnet")] -NETWORK["account_address"] = os.environ.get( - f"{NETWORK['name'].upper()}_ACCOUNT_ADDRESS" -) or os.environ.get("ACCOUNT_ADDRESS") -NETWORK["private_key"] = os.environ.get( - f"{NETWORK['name'].upper()}_PRIVATE_KEY" -) or os.environ.get("PRIVATE_KEY") +if os.getenv("STARKNET_NETWORK") is not None: + if NETWORKS.get(os.environ["STARKNET_NETWORK"]) is not None: + NETWORK = NETWORKS[os.environ["STARKNET_NETWORK"]] + else: + raise ValueError( + f"STARKNET_NETWORK {os.environ['STARKNET_NETWORK']} given in env variable unknown" + ) +else: + NETWORK = { + "name": "", + "rpc_url": os.getenv("RPC_URL"), + "explorer_url": "", + "devnet": False, + "check_interval": float(os.getenv("CHECK_INTERVAL", 6)), + "max_wait": float(os.getenv("MAX_WAIT", 30)), + } + +prefix = NETWORK["name"].upper().replace("-", "_") +NETWORK["account_address"] = os.environ.get(f"{prefix}_ACCOUNT_ADDRESS") +if NETWORK["account_address"] is None: + logger.warning( + f"⚠️ {prefix}_ACCOUNT_ADDRESS not set, defaulting to ACCOUNT_ADDRESS" + ) + NETWORK["account_address"] = os.getenv("ACCOUNT_ADDRESS") +NETWORK["private_key"] = os.environ.get(f"{prefix}_PRIVATE_KEY") +if NETWORK["private_key"] is None: + logger.warning(f"⚠️ {prefix}_PRIVATE_KEY not set, defaulting to PRIVATE_KEY") + NETWORK["private_key"] = os.getenv("PRIVATE_KEY") + RPC_CLIENT = FullNodeClient(node_url=NETWORK["rpc_url"]) +GATEWAY_CLIENT = GatewayClient(NETWORK["gateway"]) if NETWORK.get("gateway") else None +CLIENT = GATEWAY_CLIENT if GATEWAY_CLIENT is not None else RPC_CLIENT + +try: + response = requests.post( + RPC_CLIENT.url, + json={ + "jsonrpc": "2.0", + "method": f"starknet_chainId", + "params": [], + "id": 0, + }, + ) + payload = json.loads(response.text) + + class ChainId(Enum): + chain_id = int(payload["result"], 16) + + NETWORK["chain_id"] = ChainId.chain_id +except: + pass + ETH_TOKEN_ADDRESS = 0x49D36570D4E46F48E99674BD3FCC84644DDD6B96F7C741B1562B82F9E004DC7 SOURCE_DIR = Path("src") +SOURCE_DIR_FIXTURES = Path("tests/fixtures") CONTRACTS = {p.stem: p for p in list(SOURCE_DIR.glob("**/*.cairo"))} +CONTRACTS_FIXTURES = {p.stem: p for p in list(SOURCE_DIR_FIXTURES.glob("**/*.cairo"))} + +BUILD_DIR = Path("build") +BUILD_DIR_FIXTURES = BUILD_DIR / "fixtures" +BUILD_DIR.mkdir(exist_ok=True, parents=True) +BUILD_DIR_FIXTURES.mkdir(exist_ok=True, parents=True) +DEPLOYMENTS_DIR = Path("deployments") / NETWORK["name"] +DEPLOYMENTS_DIR.mkdir(exist_ok=True, parents=True) + COMPILED_CONTRACTS = [ {"contract_name": "Sheet", "is_account_contract": False}, {"contract_name": "Starksheet", "is_account_contract": False}, @@ -110,14 +154,13 @@ class ChainId(Enum): {"contract_name": "ERC20", "is_account_contract": False}, ] -BUILD_DIR = Path("build") -BUILD_DIR.mkdir(exist_ok=True, parents=True) -DEPLOYMENTS_DIR = Path("deployments") / NETWORK["name"] -DEPLOYMENTS_DIR.mkdir(exist_ok=True, parents=True) - N_COLS = 15 N_ROWS = 15 ALLOW_LIST = [] -logger.info(f"ℹ️ Using Chain id {NETWORK['chain_id'].name} with RPC {RPC_CLIENT.url}") +if NETWORK.get("chain_id"): + logger.info( + f"ℹ️ Connected to CHAIN_ID {NETWORK['chain_id'].value.to_bytes(ceil(log(NETWORK['chain_id'].value, 256)), 'big')} " + f"with {f'Gateway {GATEWAY_CLIENT.net}' if GATEWAY_CLIENT is not None else f'RPC {RPC_CLIENT.url}'}" + ) diff --git a/packages/starksheet-cairo/utils/deployment.py b/packages/starksheet-cairo/utils/starknet.py similarity index 67% rename from packages/starksheet-cairo/utils/deployment.py rename to packages/starksheet-cairo/utils/starknet.py index 75891b7b..08f38247 100644 --- a/packages/starksheet-cairo/utils/deployment.py +++ b/packages/starksheet-cairo/utils/starknet.py @@ -11,10 +11,9 @@ import requests from caseconverter import snakecase -from dotenv import load_dotenv from marshmallow import EXCLUDE from starknet_py.common import create_compiled_contract -from starknet_py.contract import Contract, InvokeResult +from starknet_py.contract import Contract from starknet_py.hash.address import compute_address from starknet_py.hash.class_hash import compute_class_hash from starknet_py.hash.transaction import compute_declare_transaction_hash @@ -26,21 +25,19 @@ TransactionStatus, ) from starknet_py.net.full_node_client import _create_broadcasted_txn -from starknet_py.net.models.transaction import Declare, Invoke +from starknet_py.net.models.transaction import Declare from starknet_py.net.schemas.rpc import DeclareTransactionResponseSchema from starknet_py.net.signer.stark_curve_signer import KeyPair -from starkware.starknet.core.os.contract_address.contract_address import ( - calculate_contract_address_from_hash, -) from starkware.starknet.public.abi import get_selector_from_name - -load_dotenv() - from utils.constants import ( BUILD_DIR, + BUILD_DIR_FIXTURES, + CLIENT, CONTRACTS, + CONTRACTS_FIXTURES, DEPLOYMENTS_DIR, ETH_TOKEN_ADDRESS, + GATEWAY_CLIENT, NETWORK, RPC_CLIENT, SOURCE_DIR, @@ -49,7 +46,11 @@ logging.basicConfig() logger = logging.getLogger(__name__) logger.setLevel(logging.INFO) -account_verified = False + +# Due to some fee estimation issues, we skip it in all the calls and set instead +# this hardcoded value. This has no impact apart from enforcing the signing wallet +# to have at least 0.1 ETH +_max_fee = int(1e17) def int_to_uint256(value): @@ -59,7 +60,7 @@ def int_to_uint256(value): return {"low": low, "high": high} -async def get_account( +async def get_starknet_account( address=None, private_key=None, ) -> Account: @@ -84,14 +85,14 @@ async def get_account( selector=get_selector_from_name(selector), calldata=[], ) - public_key = ( - await RPC_CLIENT.call_contract(call=call, block_hash="latest") - )[0] + public_key = (await CLIENT.call_contract(call=call, block_hash="latest"))[0] + break except Exception as err: if ( err.message == "Client failed with code 40: Contract error." or err.message == "Client failed with code 21: Invalid message selector." + or "StarknetErrorCode.ENTRY_POINT_NOT_FOUND_IN_CONTRACT" in err.message ): continue else: @@ -110,7 +111,7 @@ async def get_account( return Account( address=address, - client=RPC_CLIENT, + client=CLIENT, chain=NETWORK["chain_id"], key_pair=key_pair, ) @@ -120,8 +121,17 @@ async def get_eth_contract() -> Contract: # TODO: use .from_address when katana implements getClass return Contract( ETH_TOKEN_ADDRESS, - json.loads(get_artifact("ERC20").read_text())["abi"], - await get_account(), + json.loads((Path("scripts") / "utils" / "erc20.json").read_text())["abi"], + await get_starknet_account(), + ) + + +async def get_contract(contract_name) -> Contract: + # TODO: use .from_address when katana implements getClass + return Contract( + get_deployments()[contract_name]["address"], + json.loads(get_artifact(contract_name).read_text())["abi"], + await get_starknet_account(), ) @@ -131,7 +141,7 @@ async def fund_address(address: Union[int, str], amount: float): """ address = int(address, 16) if isinstance(address, str) else address amount = amount * 1e18 - if NETWORK["name"] == "devnet": + if NETWORK["name"] == "starknet-devnet": response = requests.post( f"http://127.0.0.1:5050/mint", json={"address": hex(address), "amount": amount}, @@ -140,47 +150,25 @@ async def fund_address(address: Union[int, str], amount: float): logger.error(f"Cannot mint token to {address}: {response.text}") logger.info(f"{amount / 1e18} ETH minted to {hex(address)}") else: - account = await get_account() + account = await get_starknet_account() eth_contract = await get_eth_contract() balance = (await eth_contract.functions["balanceOf"].call(account.address)).balance # type: ignore if balance < amount: raise ValueError( f"Cannot send {amount / 1e18} ETH from default account with current balance {balance / 1e18} ETH" ) - prepared = eth_contract.functions["transfer"].prepare(address, int(amount)) - # TODO: remove when madara has a regular default account - if NETWORK["name"] in ["madara", "sharingan"] and account.address == 1: - transaction = Invoke( - calldata=[ - prepared.to_addr, - prepared.selector, - len(prepared.calldata), - *prepared.calldata, - ], - signature=[], - max_fee=0, - version=1, - nonce=await account.get_nonce(), - sender_address=account.address, - ) - _add_signature_to_transaction( - transaction, account.signer.sign_transaction(transaction) - ) - response = await RPC_CLIENT.send_transaction(transaction) - tx = InvokeResult( - hash=response.transaction_hash, # noinspection PyTypeChecker - _client=prepared._client, - contract=prepared._contract_data, - invoke_transaction=transaction, - ) - else: - tx = await prepared.invoke(max_fee=int(1e17)) + prepared = eth_contract.functions["transfer"].prepare( + address, int_to_uint256(amount) + ) + tx = await prepared.invoke(max_fee=_max_fee) - await wait_for_transaction(tx.hash) - balance = (await eth_contract.functions["balanceOf"].call(address)).balance # type: ignore + status = await wait_for_transaction(tx.hash) + status = "✅" if status == TransactionStatus.ACCEPTED_ON_L2 else "❌" logger.info( - f"{amount / 1e18} ETH sent from {hex(account.address)} to {hex(address)}; new balance {balance / 1e18}" + f"{status} {amount / 1e18} ETH sent from {hex(account.address)} to {hex(address)}" ) + balance = (await eth_contract.functions["balanceOf"].call(address)).balance # type: ignore + logger.info(f"💰 Balance of {hex(address)}: {balance / 1e18}") def dump_declarations(declarations): @@ -192,16 +180,12 @@ def dump_declarations(declarations): def get_declarations(): - return ( - { - name: int(class_hash, 16) - for name, class_hash in json.load( - open(DEPLOYMENTS_DIR / "declarations.json") - ).items() - } - if (DEPLOYMENTS_DIR / "declarations.json").is_file() - else {} - ) + return { + name: int(class_hash, 16) + for name, class_hash in json.load( + open(DEPLOYMENTS_DIR / "declarations.json") + ).items() + } def dump_deployments(deployments): @@ -221,42 +205,54 @@ def dump_deployments(deployments): def get_deployments(): - def parse_hex_strings(obj): - if "address" in obj: - obj["address"] = int(obj["address"], 16) - if "tx" in obj: - obj["tx"] = int(obj["tx"], 16) - return obj - - return ( - json.load( - open(DEPLOYMENTS_DIR / "deployments.json"), object_hook=parse_hex_strings - ) - if (DEPLOYMENTS_DIR / "deployments.json").is_file() - else {} - ) + try: + return json.load(open(DEPLOYMENTS_DIR / "deployments.json", "r")) + except FileNotFoundError: + return {} def get_artifact(contract_name): - return BUILD_DIR / f"{contract_name}.json" + is_fixture = is_fixture_contract(contract_name) + return ( + BUILD_DIR / f"{contract_name}.json" + if not is_fixture + else BUILD_DIR_FIXTURES / f"{contract_name}.json" + ) def get_alias(contract_name): return snakecase(contract_name) +def get_tx_url(tx_hash: int) -> str: + return f"{NETWORK['explorer_url']}/tx/0x{tx_hash:064x}" + + +def is_fixture_contract(contract_name): + return CONTRACTS_FIXTURES.get(contract_name) is not None + + def compile_contract(contract): + is_fixture = is_fixture_contract(contract["contract_name"]) + contract_build_path = get_artifact(contract["contract_name"]) + output = subprocess.run( [ "starknet-compile-deprecated", - CONTRACTS[contract["contract_name"]], + CONTRACTS[contract["contract_name"]] + if not is_fixture + else CONTRACTS_FIXTURES[contract["contract_name"]], "--output", - BUILD_DIR / f"{contract['contract_name']}.json", + contract_build_path, "--cairo_path", str(SOURCE_DIR), - "--no_debug_info", + *(["--no_debug_info"] if not NETWORK["devnet"] else []), *(["--account_contract"] if contract["is_account_contract"] else []), - *(["--disable_hint_validation"] if NETWORK["name"] == "devnet" else []), + *( + ["--disable_hint_validation"] + if NETWORK["name"] == "starknet-devnet" + else [] + ), ], capture_output=True, ) @@ -272,7 +268,7 @@ def _convert_offset_to_hex(obj): return hex(obj) return obj - compiled = json.loads((BUILD_DIR / f"{contract['contract_name']}.json").read_text()) + compiled = json.loads(contract_build_path.read_text()) compiled = { **compiled, "entry_points_by_type": _convert_offset_to_hex( @@ -280,10 +276,59 @@ def _convert_offset_to_hex(obj): ), } json.dump( - compiled, open(BUILD_DIR / f"{contract['contract_name']}.json", "w"), indent=2 + compiled, + open( + contract_build_path, + "w", + ), + indent=2, ) +async def deploy_starknet_account( + private_key=None, amount: Union[int, float] = 1, update_default=True +) -> Account: + compile_contract( + {"contract_name": "OpenzeppelinAccount", "is_account_contract": True} + ) + class_hash = await declare("OpenzeppelinAccount") + salt = random.randint(0, 2**251) + private_key = private_key or NETWORK["private_key"] + if private_key is None: + raise ValueError( + "private_key was not given in arg nor in env variable, see README.md#Deploy" + ) + key_pair = KeyPair.from_private_key(int(private_key, 16)) + constructor_calldata = [key_pair.public_key] + address = compute_address( + salt=salt, + class_hash=class_hash, + constructor_calldata=constructor_calldata, + deployer_address=0, + ) + logger.info(f"ℹ️ Funding account {hex(address)} with {amount} ETH") + await fund_address(address, amount=amount) + logger.info(f"ℹ️ Deploying account") + res = await Account.deploy_account( + address=address, + class_hash=class_hash, + salt=salt, + key_pair=key_pair, + client=CLIENT, + chain=NETWORK["chain_id"], + constructor_calldata=constructor_calldata, + max_fee=_max_fee, + ) + status = await wait_for_transaction(res.hash) + status = "✅" if status == TransactionStatus.ACCEPTED_ON_L2 else "❌" + logger.info(f"{status} Account deployed at address {hex(res.account.address)}") + + if update_default: + NETWORK["account_address"] = hex(res.account.address) + NETWORK["private_key"] = hex(key_pair.private_key) + return res.account + + async def declare(contract_name): logger.info(f"ℹ️ Declaring {contract_name}") artifact = get_artifact(contract_name) @@ -291,16 +336,16 @@ async def declare(contract_name): contract_class = create_compiled_contract(compiled_contract=compiled_contract) class_hash = compute_class_hash(contract_class=deepcopy(contract_class)) try: - await RPC_CLIENT.get_class_by_hash(class_hash) + await CLIENT.get_class_by_hash(class_hash) logger.info(f"✅ Class already declared, skipping") return class_hash except Exception: pass - account = await get_account() + account = await get_starknet_account() transaction = Declare( contract_class=contract_class, sender_address=account.address, - max_fee=int(1e17), + max_fee=_max_fee, signature=[], nonce=await account.get_nonce(), version=1, @@ -315,44 +360,51 @@ async def declare(contract_name): ) signature = message_signature(msg_hash=tx_hash, priv_key=account.signer.private_key) transaction = _add_signature_to_transaction(transaction, signature) - params = _create_broadcasted_txn(transaction=transaction) + if GATEWAY_CLIENT is not None: + resp = await GATEWAY_CLIENT.declare(transaction) + else: + params = _create_broadcasted_txn(transaction=transaction) - res = await RPC_CLIENT._client.call( - method_name="addDeclareTransaction", - params=[params], - ) - resp = cast( - DeclareTransactionResponse, - DeclareTransactionResponseSchema().load(res, unknown=EXCLUDE), - ) + res = await RPC_CLIENT._client.call( + method_name="addDeclareTransaction", + params=[params], + ) + resp = cast( + DeclareTransactionResponse, + DeclareTransactionResponseSchema().load(res, unknown=EXCLUDE), + ) - await wait_for_transaction(resp.transaction_hash) - logger.info(f"✅ {contract_name} class hash: {hex(resp.class_hash)}") + status = await wait_for_transaction(resp.transaction_hash) + status = "✅" if status == TransactionStatus.ACCEPTED_ON_L2 else "❌" + logger.info(f"{status} {contract_name} class hash: {hex(resp.class_hash)}") return resp.class_hash async def deploy(contract_name, *args): logger.info(f"ℹ️ Deploying {contract_name}") - account = await get_account() - abi = json.loads(Path(get_abi(contract_name)).read_text()) - + abi = json.loads(Path(get_artifact(contract_name)).read_text())["abi"] + account = await get_starknet_account() deploy_result = await Contract.deploy_contract( account=account, class_hash=get_declarations()[contract_name], abi=abi, constructor_args=list(args), - max_fee=int(1e16), + max_fee=_max_fee, ) - logger.info(f"⏳ Waiting for tx {get_tx_url(deploy_result.hash)}") - await wait_for_transaction(deploy_result.hash) + status = await wait_for_transaction(deploy_result.hash) + status = "✅" if status == TransactionStatus.ACCEPTED_ON_L2 else "❌" logger.info( - f"✅ {contract_name} deployed at: {hex(deploy_result.deployed_contract.address)}" + f"{status} {contract_name} deployed at: {hex(deploy_result.deployed_contract.address)}" ) - return deploy_result.deployed_contract.address, deploy_result.hash + return { + "address": deploy_result.deployed_contract.address, + "tx": deploy_result.hash, + "artifact": get_artifact(contract_name), + } async def invoke_address(contract_address, function_name, *calldata, account=None): - account = account or (await get_account()) + account = account or (await get_starknet_account()) logger.info( f"ℹ️ Invoking {function_name}({json.dumps(calldata) if calldata else ''}) " f"at address {hex(contract_address)[:10]}" @@ -363,25 +415,25 @@ async def invoke_address(contract_address, function_name, *calldata, account=Non selector=get_selector_from_name(function_name), calldata=cast(List[int], calldata), ), - max_fee=int(1e16), + max_fee=_max_fee, ) async def invoke_contract( contract_name, function_name, *inputs, address=None, account=None ): - account = account or (await get_account()) + account = account or (await get_starknet_account()) deployments = get_deployments() contract = Contract( deployments[contract_name]["address"] if address is None else address, json.load(open(get_artifact(contract_name)))["abi"], account, ) - call = contract.functions[function_name].prepare(*inputs, max_fee=int(1e16)) + call = contract.functions[function_name].prepare(*inputs, max_fee=_max_fee) logger.info( f"ℹ️ Invoking {contract_name}.{function_name}({json.dumps(inputs) if inputs else ''})" ) - return await account.execute(call, max_fee=int(1e16)) + return await account.execute(call, max_fee=_max_fee) async def invoke(contract, *args, **kwargs): @@ -401,7 +453,7 @@ async def invoke(contract, *args, **kwargs): async def call_address(contract_address, function_name, *calldata): - account = await get_account() + account = await get_starknet_account() return await account.client.call_contract( Call( to_addr=contract_address, @@ -413,7 +465,7 @@ async def call_address(contract_address, function_name, *calldata): async def call_contract(contract_name, function_name, *inputs, address=None): deployments = get_deployments() - account = await get_account() + account = await get_starknet_account() contract = Contract( deployments[contract_name]["address"] if address is None else address, json.load(open(get_artifact(contract_name)))["abi"], @@ -438,20 +490,15 @@ async def wait_for_transaction(*args, **kwargs): We need to write this custom hacky wait_for_transaction instead of using the one from starknet-py because the RPCs don't know RECEIVED, PENDING and REJECTED states currently """ + if GATEWAY_CLIENT is not None: + # Gateway case, just use it + _, status = await GATEWAY_CLIENT.wait_for_tx(*args, **kwargs) + return status + start = datetime.now() elapsed = 0 - check_interval = kwargs.get( - "check_interval", - 0.1 - if NETWORK["name"] in ["devnet", "katana"] - else 6 - if NETWORK["name"] in ["madara", "sharingan"] - else 15, - ) - max_wait = kwargs.get( - "max_wait", - 60 * 5 if NETWORK["name"] not in ["devnet", "katana", "madara"] else 30, - ) + check_interval = kwargs.get("check_interval", NETWORK.get("check_interval", 15)) + max_wait = kwargs.get("max_wait", NETWORK.get("max_wait", 30)) transaction_hash = args[0] if args else kwargs["tx_hash"] status = None logger.info(f"⏳ Waiting for tx {get_tx_url(transaction_hash)}") @@ -459,7 +506,9 @@ async def wait_for_transaction(*args, **kwargs): status not in [TransactionStatus.ACCEPTED_ON_L2, TransactionStatus.REJECTED] and elapsed < max_wait ): - logger.info(f"ℹ️ Current status: {status}") + if elapsed > 0: + # don't log at the first iteration + logger.info(f"ℹ️ Current status: {status}") logger.info(f"ℹ️ Sleeping for {check_interval}s") time.sleep(check_interval) response = requests.post( @@ -479,83 +528,10 @@ async def wait_for_transaction(*args, **kwargs): status = payload.get("result", {}).get("status") if status is not None: status = TransactionStatus(status) + else: + # no status, but RPC currently doesn't return status for ACCEPTED_ON_L2 still PENDING + # we take actual_fee as a proxy for ACCEPTED_ON_L2 + if payload.get("result", {}).get("actual_fee"): + status = TransactionStatus.ACCEPTED_ON_L2 elapsed = (datetime.now() - start).total_seconds() return status - - -def get_tx_url(tx_hash: int) -> str: - return f"{NETWORK['explorer_url']}/tx/0x{tx_hash:064x}" - - -def get_abi(contract_name): - return BUILD_DIR / f"{contract_name}_abi.json" - - -async def compute_sheet_address(name, symbol): - renderer_address = ( - await call("Starksheet", "getSheetDefaultRendererAddress") - ).address - sheet_class_hash = (await call("Starksheet", "getSheetClassHash")).hash - proxy_class_hash = (await call("Starksheet", "getProxyClassHash")).hash - owner = await get_account() - deployments = get_deployments() - calldata = { - "proxyAdmin": owner.address, - "implementation": sheet_class_hash, - "selector": get_selector_from_name("initialize"), - "calldataLen": 6, - "name": int(name.encode().hex(), 16), - "symbol": int(symbol.encode().hex(), 16), - "owner": owner.address, - "merkleRoot": 0, - "maxPerWallet": 0, - "rendererAddress": renderer_address, - } - return calculate_contract_address_from_hash( - owner.address, - proxy_class_hash, - list(calldata.values()), - deployments["Starksheet"]["address"], - ) - - -async def deploy_starknet_account(private_key=None, amount=1) -> Account: - compile_contract( - {"contract_name": "OpenzeppelinAccount", "is_account_contract": True} - ) - class_hash = await declare("OpenzeppelinAccount") - salt = random.randint(0, 2**251) - private_key = private_key or NETWORK["private_key"] - if private_key is None: - raise ValueError( - "private_key was not given in arg nor in env variable, see README.md#Deploy" - ) - key_pair = KeyPair.from_private_key(int(private_key, 16)) - constructor_calldata = [key_pair.public_key] - address = compute_address( - salt=salt, - class_hash=class_hash, - constructor_calldata=constructor_calldata, - deployer_address=0, - ) - logger.info(f"ℹ️ Funding account {hex(address)} with {amount} ETH") - await fund_address(address, amount=amount) - logger.info(f"ℹ️ Deploying account") - res = await Account.deploy_account( - address=address, - class_hash=class_hash, - salt=salt, - key_pair=key_pair, - client=RPC_CLIENT, - chain=NETWORK["chain_id"], - constructor_calldata=constructor_calldata, - max_fee=int(1e17), - ) - status = await wait_for_transaction(res.hash) - if status == TransactionStatus.REJECTED: - logger.warning("⚠️ Transaction REJECTED") - - logger.info(f"✅ Account deployed at address {hex(res.account.address)}") - NETWORK["account_address"] = hex(res.account.address) - NETWORK["private_key"] = hex(key_pair.private_key) - return res.account diff --git a/packages/starksheet-cairo/utils/starksheet.py b/packages/starksheet-cairo/utils/starksheet.py new file mode 100644 index 00000000..1bb44384 --- /dev/null +++ b/packages/starksheet-cairo/utils/starksheet.py @@ -0,0 +1,99 @@ +import logging +import random + +from dotenv import load_dotenv +from starknet_py.hash.address import compute_address +from starknet_py.net.account.account import Account +from starknet_py.net.client_models import TransactionStatus +from starknet_py.net.signer.stark_curve_signer import KeyPair +from starkware.starknet.core.os.contract_address.contract_address import ( + calculate_contract_address_from_hash, +) +from starkware.starknet.public.abi import get_selector_from_name + +load_dotenv() + +from utils.constants import NETWORK, RPC_CLIENT +from utils.starknet import ( + call, + compile_contract, + declare, + fund_address, + get_deployments, + get_starknet_account, + wait_for_transaction, +) + +logging.basicConfig() +logger = logging.getLogger(__name__) +logger.setLevel(logging.INFO) + + +async def compute_sheet_address(name, symbol): + renderer_address = ( + await call("Starksheet", "getSheetDefaultRendererAddress") + ).address + sheet_class_hash = (await call("Starksheet", "getSheetClassHash")).hash + proxy_class_hash = (await call("Starksheet", "getProxyClassHash")).hash + owner = await get_starknet_account() + deployments = get_deployments() + calldata = { + "proxyAdmin": owner.address, + "implementation": sheet_class_hash, + "selector": get_selector_from_name("initialize"), + "calldataLen": 6, + "name": int(name.encode().hex(), 16), + "symbol": int(symbol.encode().hex(), 16), + "owner": owner.address, + "merkleRoot": 0, + "maxPerWallet": 0, + "rendererAddress": renderer_address, + } + return calculate_contract_address_from_hash( + owner.address, + proxy_class_hash, + list(calldata.values()), + deployments["Starksheet"]["address"], + ) + + +async def deploy_starknet_account(private_key=None, amount=1) -> Account: + compile_contract( + {"contract_name": "OpenzeppelinAccount", "is_account_contract": True} + ) + class_hash = await declare("OpenzeppelinAccount") + salt = random.randint(0, 2**251) + private_key = private_key or NETWORK["private_key"] + if private_key is None: + raise ValueError( + "private_key was not given in arg nor in env variable, see README.md#Deploy" + ) + key_pair = KeyPair.from_private_key(int(private_key, 16)) + constructor_calldata = [key_pair.public_key] + address = compute_address( + salt=salt, + class_hash=class_hash, + constructor_calldata=constructor_calldata, + deployer_address=0, + ) + logger.info(f"ℹ️ Funding account {hex(address)} with {amount} ETH") + await fund_address(address, amount=amount) + logger.info(f"ℹ️ Deploying account") + res = await Account.deploy_account( + address=address, + class_hash=class_hash, + salt=salt, + key_pair=key_pair, + client=RPC_CLIENT, + chain=NETWORK["chain_id"], + constructor_calldata=constructor_calldata, + max_fee=int(1e17), + ) + status = await wait_for_transaction(res.hash) + if status == TransactionStatus.REJECTED: + logger.warning("⚠️ Transaction REJECTED") + + logger.info(f"✅ Account deployed at address {hex(res.account.address)}") + NETWORK["account_address"] = hex(res.account.address) + NETWORK["private_key"] = hex(key_pair.private_key) + return res.account diff --git a/packages/starksheet-solidity/Dockerfile b/packages/starksheet-solidity/Dockerfile new file mode 100644 index 00000000..beeabc05 --- /dev/null +++ b/packages/starksheet-solidity/Dockerfile @@ -0,0 +1,15 @@ +FROM ghcr.io/foundry-rs/foundry + +WORKDIR /app/starksheet +COPY .git .git +COPY .gitmodules .gitmodules +COPY ./packages/starksheet-solidity ./packages/starksheet-solidity + +WORKDIR /app/starksheet/packages/starksheet-solidity +ENV ETHERSCAN_API_KEY= +ENV FOUNDRY_PROFILE=docker + +RUN forge build --names --force + +ENTRYPOINT [ "forge" ] +CMD ["script", "script/Evmsheet.s.sol", "--broadcast"] diff --git a/packages/starksheet-solidity/README.md b/packages/starksheet-solidity/README.md index 37717c74..ace7614c 100644 --- a/packages/starksheet-solidity/README.md +++ b/packages/starksheet-solidity/README.md @@ -20,10 +20,10 @@ anvil to start anvil, and: ```bash -PRIVATE_KEY=0xac0974bec39a17e36ba4a6b4d238ff944bacb478cbed5efcae784d7bf4f2ff80 forge script script/Evmsheet.s.sol --broadcast --rpc-url http://127.0.0.1:8545 +PRIVATE_KEY=0xac0974bec39a17e36ba4a6b4d238ff944bacb478cbed5efcae784d7bf4f2ff80 forge script script/Evmsheet.s.sol --broadcast ``` -to deploy the contracts. +to deploy the contracts to `anvil` (default endpoint). ## Test diff --git a/packages/starksheet-solidity/broadcast/Evmsheet.s.sol/1263227476/run-1689177966.json b/packages/starksheet-solidity/broadcast/Evmsheet.s.sol/1263227476/run-1689177966.json new file mode 100644 index 00000000..0c13e29d --- /dev/null +++ b/packages/starksheet-solidity/broadcast/Evmsheet.s.sol/1263227476/run-1689177966.json @@ -0,0 +1,112 @@ +{ + "transactions": [ + { + "hash": "0x030c68fd0a213dc6a8a9fc6cffeff1a98228e34ca37ff69f185df015fe1ab3f1", + "transactionType": "CREATE", + "contractName": "Bytes", + "contractAddress": "0x5FbDB2315678afecb367f032d93F642f64180aa3", + "function": null, + "arguments": null, + "transaction": { + "type": "0x00", + "from": "0xf39fd6e51aad88f6f4ce6ab8827279cfffb92266", + "gas": "0x1387ed", + "data": "0x6110d661003a600b82828239805160001a60731461002d57634e487b7160e01b600052600060045260246000fd5b30600052607381538281f3fe73000000000000000000000000000000000000000030146080604052600436106101625760003560e01c8063a5eb31ee116100cd578063d1ffb56111610086578063d1ffb561146103fb578063d442584f1461042b578063e004139614610454578063f1142fb314610474578063f647f8fb14610487578063f83b670f146104b257600080fd5b8063a5eb31ee14610344578063a8d8f00f1461036b578063b5cdf92414610396578063b63711df146103a9578063be8b3430146103bc578063c29616bd146103cf57600080fd5b80635ef849301161011f5780635ef8493014610241578063913c97b41461026b57806397e6175c1461029f57806399dd9bd7146102cb5780639ae4c3d1146102ec5780639cee499e1461031857600080fd5b8063042aa0841461016757806305d3bb74146101985780631a7431ef146101c0578063235266d2146101e357806348137709146101f65780634d66a2ae1461021b575b600080fd5b61017a610175366004610ec0565b6104de565b6040516001600160d01b031990911681526020015b60405180910390f35b6101ab6101a6366004610ec0565b610540565b60405163ffffffff909116815260200161018f565b6101d36101ce366004610f05565b61059d565b604051901515815260200161018f565b6101d36101f1366004610f4c565b610652565b610209610204366004610ec0565b6106b5565b60405160ff909116815260200161018f565b61022e610229366004610fa6565b610711565b60405161ffff909116815260200161018f565b61025461024f366004610ec0565b61071e565b60405165ffffffffffff909116815260200161018f565b61027e610279366004610ec0565b610772565b6040516fffffffffffffffffffffffffffffffff909116815260200161018f565b6102b26102ad366004610ec0565b6107d0565b6040516001600160a01b0319909116815260200161018f565b6102de6102d9366004610ec0565b61082e565b60405190815260200161018f565b6102ff6102fa366004610ec0565b61088c565b60405167ffffffffffffffff909116815260200161018f565b61032b610326366004610ec0565b6108e9565b6040516001600160d81b0319909116815260200161018f565b610357610352366004610ec0565b610946565b60405162ffffff909116815260200161018f565b61037e610379366004610ec0565b6109a3565b60405166ffffffffffffff909116815260200161018f565b6102de6103a4366004610ec0565b610a00565b6102ff6103b7366004610ec0565b610a55565b61022e6103ca366004610ec0565b610aa9565b6103e26103dd366004610ec0565b610b06565b6040516001600160c81b0319909116815260200161018f565b61040e610409366004610ec0565b610b5a565b6040516bffffffffffffffffffffffff909116815260200161018f565b61043e610439366004610ec0565b610bae565b60405164ffffffffff909116815260200161018f565b610467610462366004610fe3565b610c02565b60405161018f9190611031565b6102b2610482366004610ec0565b610d0f565b61049a610495366004610ec0565b610d64565b6040516001600160a01b03909116815260200161018f565b6104c56104c0366004610ec0565b610dc9565b6040516001600160f81b0319909116815260200161018f565b60006104eb82600661107f565b835110156105375760405162461bcd60e51b8152602060048201526014602482015273746f4279746573365f6f75744f66426f756e647360601b60448201526064015b60405180910390fd5b50016006015190565b600061054d82600461107f565b835110156105945760405162461bcd60e51b8152602060048201526014602482015273746f55696e7433325f6f75744f66426f756e647360601b604482015260640161052e565b50016004015190565b600080600190508354600260018083161561010002038216048451808214600181146105cc5760009450610644565b821561064457602083106001811461062957600189600052602060002060208a018581015b600284828410010361062057815183541461060f5760009950600093505b6001830192506020820191506105f1565b50505050610642565b6101008086040294506020880151851461064257600095505b505b509293505050505b92915050565b81518151600091600191811480831461066e57600092506106ab565b600160208701838101602088015b60028483851001036106a657805183511461069a5760009650600093505b6020928301920161067c565b505050505b5090949350505050565b60006106c282600161107f565b835110156107085760405162461bcd60e51b8152602060048201526013602482015272746f55696e74385f6f75744f66426f756e647360681b604482015260640161052e565b50016001015190565b600061064c826000610aa9565b600061072b82600661107f565b835110156105375760405162461bcd60e51b8152602060048201526014602482015273746f55696e7434385f6f75744f66426f756e647360601b604482015260640161052e565b600061077f82601061107f565b835110156107c75760405162461bcd60e51b8152602060048201526015602482015274746f55696e743132385f6f75744f66426f756e647360581b604482015260640161052e565b50016010015190565b60006107dd82600c61107f565b835110156108255760405162461bcd60e51b8152602060048201526015602482015274746f427974657331325f6f75744f66426f756e647360581b604482015260640161052e565b5001600c015190565b600061083b82602061107f565b835110156108835760405162461bcd60e51b8152602060048201526015602482015274746f427974657333325f6f75744f66426f756e647360581b604482015260640161052e565b50016020015190565b600061089982600861107f565b835110156108e05760405162461bcd60e51b8152602060048201526014602482015273746f55696e7436345f6f75744f66426f756e647360601b604482015260640161052e565b50016008015190565b60006108f682600561107f565b8351101561093d5760405162461bcd60e51b8152602060048201526014602482015273746f4279746573355f6f75744f66426f756e647360601b604482015260640161052e565b50016005015190565b600061095382600361107f565b8351101561099a5760405162461bcd60e51b8152602060048201526014602482015273746f55696e7432345f6f75744f66426f756e647360601b604482015260640161052e565b50016003015190565b60006109b082600761107f565b835110156109f75760405162461bcd60e51b8152602060048201526014602482015273746f55696e7435365f6f75744f66426f756e647360601b604482015260640161052e565b50016007015190565b6000610a0d82602061107f565b835110156108835760405162461bcd60e51b8152602060048201526015602482015274746f55696e743235365f6f75744f66426f756e647360581b604482015260640161052e565b6000610a6282600861107f565b835110156108e05760405162461bcd60e51b8152602060048201526014602482015273746f4279746573385f6f75744f66426f756e647360601b604482015260640161052e565b6000610ab682600261107f565b83511015610afd5760405162461bcd60e51b8152602060048201526014602482015273746f55696e7431365f6f75744f66426f756e647360601b604482015260640161052e565b50016002015190565b6000610b1382600761107f565b835110156109f75760405162461bcd60e51b8152602060048201526014602482015273746f4279746573375f6f75744f66426f756e647360601b604482015260640161052e565b6000610b6782600c61107f565b835110156108255760405162461bcd60e51b8152602060048201526014602482015273746f55696e7439365f6f75744f66426f756e647360601b604482015260640161052e565b6000610bbb82600561107f565b8351101561093d5760405162461bcd60e51b8152602060048201526014602482015273746f55696e7434305f6f75744f66426f756e647360601b604482015260640161052e565b606081610c1081601f61107f565b1015610c4f5760405162461bcd60e51b815260206004820152600e60248201526d736c6963655f6f766572666c6f7760901b604482015260640161052e565b610c59828461107f565b84511015610c9d5760405162461bcd60e51b8152602060048201526011602482015270736c6963655f6f75744f66426f756e647360781b604482015260640161052e565b606082158015610cbc5760405191506000825260208201604052610d06565b6040519150601f8416801560200281840101858101878315602002848b0101015b81831015610cf5578051835260209283019201610cdd565b5050858452601f01601f1916604052505b50949350505050565b6000610d1c82601061107f565b835110156107c75760405162461bcd60e51b8152602060048201526015602482015274746f427974657331365f6f75744f66426f756e647360581b604482015260640161052e565b6000610d7182601461107f565b83511015610db95760405162461bcd60e51b8152602060048201526015602482015274746f416464726573735f6f75744f66426f756e647360581b604482015260640161052e565b500160200151600160601b900490565b6000610dd682600161107f565b835110156107085760405162461bcd60e51b8152602060048201526014602482015273746f4279746573315f6f75744f66426f756e647360601b604482015260640161052e565b634e487b7160e01b600052604160045260246000fd5b600082601f830112610e4457600080fd5b813567ffffffffffffffff80821115610e5f57610e5f610e1d565b604051601f8301601f19908116603f01168101908282118183101715610e8757610e87610e1d565b81604052838152866020858801011115610ea057600080fd5b836020870160208301376000602085830101528094505050505092915050565b60008060408385031215610ed357600080fd5b823567ffffffffffffffff811115610eea57600080fd5b610ef685828601610e33565b95602094909401359450505050565b60008060408385031215610f1857600080fd5b82359150602083013567ffffffffffffffff811115610f3657600080fd5b610f4285828601610e33565b9150509250929050565b60008060408385031215610f5f57600080fd5b823567ffffffffffffffff80821115610f7757600080fd5b610f8386838701610e33565b93506020850135915080821115610f9957600080fd5b50610f4285828601610e33565b600060208284031215610fb857600080fd5b813567ffffffffffffffff811115610fcf57600080fd5b610fdb84828501610e33565b949350505050565b600080600060608486031215610ff857600080fd5b833567ffffffffffffffff81111561100f57600080fd5b61101b86828701610e33565b9660208601359650604090950135949350505050565b600060208083528351808285015260005b8181101561105e57858101830151858201604001528201611042565b506000604082860101526040601f19601f8301168501019250505092915050565b8082018082111561064c57634e487b7160e01b600052601160045260246000fdfea26469706673582212205bdf5bc4551862519f5370e0dcec38eefbbbe11b6a5bf19ce2846b4f8831a5dc64736f6c63430008110033", + "nonce": "0x0" + }, + "additionalContracts": [], + "isFixedGasLimit": false + }, + { + "hash": "0x01c6eb7c01a0621ca049c2e22b2eccee52cd6af087ff9db93a13e4f3de2ac66a", + "transactionType": "CREATE", + "contractName": "MultiSendCallOnly", + "contractAddress": "0xe7f1725E7734CE288F8367e1Bb143E90bb3F0512", + "function": null, + "arguments": null, + "transaction": { + "type": "0x00", + "from": "0xf39fd6e51aad88f6f4ce6ab8827279cfffb92266", + "gas": "0x2e5c4", + "value": "0x0", + "data": "0x608060405234801561001057600080fd5b506101ae806100206000396000f3fe60806040526004361061001e5760003560e01c80638d80ff0a14610023575b600080fd5b6100366100313660046100c7565b610038565b005b805160205b818110156100ac578083015160f81c6001820184015160601c601583018501516035840186015160558501870160008560008114610082576001811461001e5761008e565b6000808585888a5af191505b508061009957600080fd5b505080605501850194505050505061003d565b505050565b634e487b7160e01b600052604160045260246000fd5b6000602082840312156100d957600080fd5b813567ffffffffffffffff808211156100f157600080fd5b818401915084601f83011261010557600080fd5b813581811115610117576101176100b1565b604051601f8201601f19908116603f0116810190838211818310171561013f5761013f6100b1565b8160405282815287602084870101111561015857600080fd5b82602086016020830137600092810160200192909252509594505050505056fea2646970667358221220c15490bbb756a4c3c49d6335b2e81d2d098647b0ea70174c2279f199b1d0800364736f6c63430008110033", + "nonce": "0x1" + }, + "additionalContracts": [], + "isFixedGasLimit": false + }, + { + "hash": "0x03e703754fab191f461e3372a6921dd773d04d1d84c3b272a00cdd3047b521e9", + "transactionType": "CREATE", + "contractName": "BasicCellRenderer", + "contractAddress": "0x9fE46736679d2D9a65F0992F2272dE9f3c7fa6e0", + "function": null, + "arguments": null, + "transaction": { + "type": "0x00", + "from": "0xf39fd6e51aad88f6f4ce6ab8827279cfffb92266", + "gas": "0x3180ad", + "value": "0x0", + "data": "0x608060405234801561001057600080fd5b50612c25806100206000396000f3fe608060405234801561001057600080fd5b50600436106100365760003560e01c806306d4cd8b1461003b57806328de0f2f14610064575b600080fd5b61004e610049366004610322565b610077565b60405161005b919061038b565b60405180910390f35b61004e610072366004610404565b6100f1565b60606000610086600f846104fc565b90506000610095600f8361051e565b61009f9085610535565b905060006100ae826041610548565b60f81b9050806100c76100c2856001610548565b6101b6565b6040516020016100d8929190610577565b6040516020818303038152906040529350505050919050565b606060006100fe86610077565b905083838261018388735fbdb2315678afecb367f032d93f642f64180aa363b5cdf924909160006040518363ffffffff1660e01b81526004016101429291906105a8565b602060405180830381865af415801561015f573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906100c291906105ca565b87878660405160200161019c97969594939291906105f2565b604051602081830303815290604052915050949350505050565b606060006101c383610249565b600101905060008167ffffffffffffffff8111156101e3576101e36103a5565b6040519080825280601f01601f19166020018201604052801561020d576020820181803683370190505b5090508181016020015b600019016f181899199a1a9b1b9c1cb0b131b232b360811b600a86061a8153600a850494508461021757509392505050565b60008072184f03e93ff9f4daa797ed6e38ed64bf6a1f0160401b83106102885772184f03e93ff9f4daa797ed6e38ed64bf6a1f0160401b830492506040015b6d04ee2d6d415b85acef810000000083106102b4576d04ee2d6d415b85acef8100000000830492506020015b662386f26fc1000083106102d257662386f26fc10000830492506010015b6305f5e10083106102ea576305f5e100830492506008015b61271083106102fe57612710830492506004015b60648310610310576064830492506002015b600a831061031c576001015b92915050565b60006020828403121561033457600080fd5b5035919050565b60005b8381101561035657818101518382015260200161033e565b50506000910152565b6000815180845261037781602086016020860161033b565b601f01601f19169290920160200192915050565b60208152600061039e602083018461035f565b9392505050565b634e487b7160e01b600052604160045260246000fd5b60008083601f8401126103cd57600080fd5b50813567ffffffffffffffff8111156103e557600080fd5b6020830191508360208285010111156103fd57600080fd5b9250929050565b6000806000806060858703121561041a57600080fd5b84359350602085013567ffffffffffffffff8082111561043957600080fd5b818701915087601f83011261044d57600080fd5b81358181111561045f5761045f6103a5565b604051601f8201601f19908116603f01168101908382118183101715610487576104876103a5565b816040528281528a60208487010111156104a057600080fd5b8260208601602083013760006020848301015280975050505060408701359150808211156104cd57600080fd5b506104da878288016103bb565b95989497509550505050565b634e487b7160e01b600052601160045260246000fd5b60008261051957634e487b7160e01b600052601260045260246000fd5b500490565b808202811582820484141761031c5761031c6104e6565b8181038181111561031c5761031c6104e6565b8082018082111561031c5761031c6104e6565b6000815161056d81856020860161033b565b9290920192915050565b6001600160f81b031983168152815160009061059a81600185016020870161033b565b919091016001019392505050565b6040815260006105bb604083018561035f565b90508260208301529392505050565b6000602082840312156105dc57600080fd5b5051919050565b81818437506000910190815290565b7f646174613a6170706c69636174696f6e2f6a736f6e2c7b22646573637269707481527f696f6e223a2022537461726b7368656574222c20226e616d65223a202200000060208201528688603d8301376000878201602160f81b603d820152875161066481603e840160208c0161033b565b7f222c22696d616765223a2022646174613a696d6167652f7376672b786d6c2c25603e92909101918201527f334373766725323076696577426f782533442532373025323030253230383925605e8201527f3230353525323725323066696c6c2533442532376e6f6e65253237253230786d607e8201527f6c6e73253344253237687474702533412f2f7777772e77332e6f72672f323030609e8201527f302f737667253237253345253343646566732533452533437374796c6525334560be8201527f253430666f6e742d66616365253230253742666f6e742d66616d696c7925334160de8201527f253230253237507265737325323053746172742532303250253237253342737260fe8201527f6325334125323075726c25323825323764617461253341666f6e742f776f666661011e8201527f32253342626173653634253243643039474d6741424141414141424c3841413861013e8201527f41414141415235774141424b674141454141414141414141414141414141414161015e8201527f4141414141414141414141414150305a4756453063476a41624d42794358675a61017e8201527f6741494e794551674b3846545361517544524141424e67496b41344e4d42434161019e8201527f46687a5148684649623644566c42306a314f4d4253336f4f4953744562732f2f6101be8201527f2f6c4a776356727a47634f30676f684c45484d6369694443434e57695a6761306101de8201527f79625345555954514f6a4b427038546c737a7344526438716174586c333058746101fe8201527f30645a47467952305668444b776c62746c25324272734643773945316e64655961021e8201527f4a74732f37527762305673784d71576c636a6a775445537a2f5568752f77337361023e8201527f33746b6f496d70343464515168576f456d54337579526d70746f7553446b7a5761025e8201527f454138762f3932364a4b7539486f696e6e3673376674336d4965476c7737547161027e8201527f6437456f326a46517849766a5642494a70563269614f62547a68575932314e7461029e8201527f476772687434704d4b3457556a34624c7967542f51253242514c7879253242336102be8201527f6c482f362f6b6275496444497239446a724a496a6f394a7336524d58253242456102de8201527f6b37424f545a6b6d70397a347455524652566656307148504448375a7462364a6102fe8201527f616f6130684c335975616232473373667a72365776394536793569767025324261031e8201527f7135564c74426a514478476f5345304150313762336466376c61726a6525324261033e8201527f73637a6b7241744a334b6657304a342532424b323365744b4b556a383554616f61035e8201527f57473453346158436c427743413268676141652532423658396f696e32304e6261037e8201527f554a7264466767517049686d5247494d30372f7025324277375a7058316c473161039e8201527f6a6a51787073435141423438714445415042346950312f6a39592f4261686a356103be8201527f5943414e302f78714157496852616a6c6e694e654f50396e78433466667932556103de8201527f694843304e47386b686f6f567a6f7459334445417a417a41356b473735337a6a6103fe8201527f4853354d6e6d586b69496a6d54554d36556d4d3025324256346976752f48377861041e8201527f6a364666322f6b343472787a6449324141676742492f4c48416b394a7a35554d61043e8201527f496f4c7755344146455435725a464f33444d616655633061777351434879497061045e8201527f557a546b30784a474a454f6a4e6871436b474570496153474f6a714e466d2f5761047e8201527f4e434e3569636b71434d6e414165564c4d4c655867356971386b365752585a5261049e8201527f326c337042393831427a73475a743225324256696c4342723954494a674b67786104be8201527f365542514446253242566a4b44714e7741414948386a6949664d6e75384b68666104de8201527f584b486f4e3348634134477245786842324155442f795a554d423857547579496104fe8201527f413444634f4b656434397939504249616e426967734d454e38556b30766c547661051e8201527f304a58334e394d795a75544d763573655357413525324238556538504465547261053e8201527f645467474973566d4e33635856586a6463795275633434385866664176506e7361055e8201527f3575324d4531722532426a4731703137767a3849704f416e483444427367793361057e8201527f512f54376b33646d2f3846334232377355694877464631414f6c683055646e4961059e8201527f4471494e5164506355393145786f2f346252696a6a5169704e4e307a4c646c7a6105be8201527f504438496f547449734c38717162746f4f5149514a5a567849705931315073536105de8201527f55533231397a4c585066642f507667765751346372464d2532425769755671706105fe8201527f645a6f4e6475645872632f4745324d4a36656e3575635746694763375274364f61061e8201527f487676354d674c2532427a44733578444277696141315433554877326b63594361063e8201527f312f55666453316645316d37763742346537653350574848786533594f32483561065e8201527f25324241504f5a7965503025324251506553425468793078713965363241486a61067e8201527f6141556842432f364144484c6f476f4f657636412532426867487369317a613861069e8201527f71355a4e4d716a596c575a4d713867354248445574495370574a73526f52544a6106be8201527f56613049305a3957546b5371564b73507a3464586a7648746449684c6e7670746106de8201527f554c4330753542567579414d544b4a513930594b5267546e5769476b6d7153456106fe8201527f714b6d7256685259674b6b335443686255573671456f45637665577a6859535461071e8201527f4c32484e706735452f6d7151393956564467763352475435586d33637a68754c61073e8201527f3972685864316132372f736c5130686959366a643739614f5a43746a6f52687261075e8201527f623136575676514b725734477a786a7869723238494d697a2f7155447973495761077e8201527f7037516a667765347a556437614a735651575179524c554b484b42577938577661079e8201527f45565333584d53353656337757644f442532424638757639645477496d4b722f6107be8201527f5064626d5763775176456641616a7975566a70784e32704f56635769336c38776107de8201527f454c2f6d395070646f55494536253242504b5838315041546d67654f304231736107fe8201527f47454825324261707a353466646d534a7a333741686635366a4c7739756e504561081e8201527f35644d4b3025324237544639563843435466523979664e7355493474557a464661083e8201527f42326e536e384b4f626a64446964554c7034494a6873777878595172595a643661085e8201527f4e76436e55394d445825324252654c6e4d546d6c315a453972306b5077334e3261087e8201527f6752253242736a4573596d4953706b356c31497333594e614a4b6f6e7a65703761089e8201527f56637354316e556b62347048774b5a41796b614b6f43504630506f6d456876496108be8201527f5758656e6f5a767836774f4b313070316c3274546858793850316555776473766108de8201527f53715157766f424d7473674851554a614774494273756861776450545a5378596108fe8201527f707257757734647a7231564755744449465871726f4d4d69597346783857695461091e8201527f336463574b6f376d50554c79715657413972305974524a4c626957766a6e4c2561093e8201527f324272633452646767624e516c514141613264306d616236364d48447074314361095e8201527f6477626b51436253375053445a4d7a3746724f51713165636153304a6c74644161097e8201527f6c44527941587173364130586247707748676b70367572557757416272464d3361099e8201527f75794d764e4b6c344d6c435548537950416d3931776144454a3559595148754a6109be8201527f4d32304b575251737637486b61334770686c533258444b714f4b4245554753316109de8201527f65306b63316f323449494166486c4449794278584a4a656767423369386174566109fe8201527f67434f3064444f5a484a57596a564c416a6a397137765673456e72684b374568610a1e8201527f4c75427a42586d4d674554634531636d61436976504b6f4a766670466c794935610a3e8201527f4d70584234454325324245672f596d303454787843354e6c73596b74646f5951610a5e8201527f55656c38624673456c3748345a36734377622f38626b347458574658504b6a71610a7e8201527f5462526e64336e4c5770394f784941706c664b586747684e6c72443462354a4c610a9e8201527f5a367055753441726756614d366561357844574244476f7a707a4641376e6747610abe8201527f74596334486141775269475576637653653652414177335a576b564f4667764b610ade8201527f46364955696c4d49394964715155345134585264484866736666517770313955610afe8201527f434a49306a5773725433356f5578303678507268473271364d4533554f306c63610b1e8201527f635a557354454351784a44527854444b6c334c4948722f6162546f73686c6466610b3e8201527f51786a364f57745273466e6966444373473674336b426f344e6d424a6d615556610b5e8201527f54636c794951414a4c6a6e723042365a3859464d6e396b397967703752727848610b7e8201527f36766877624a4e41654b4d554436353974386746514a4d5377652f434f624850610b9e8201527f467671484746554e5266253242737245663354584b42725a76676b6369396972610bbe8201527f426d63442f7458616754474358634e68432532424f3539754c706e6673796f71610bde8201527f4c53313238374552776d38666165564f6d3857634437386c5a36594232793938610bfe8201527f5a4c6c4d3972557264324c514e6c324956643454727376675139363079377573610c1e8201527f5965306854506170576a71726c2532425837784665424e54253242315a644a4a610c3e8201527f572532424678745737584e7774634e7a7761672532425256656a6d4a6839656d610c5e8201527f6c495a4b69694e63694b3849554f4d33556a4a376342554e5847505853326c68610c7e8201527f253242687770676f4836567348524f63764569723372585970344c7769435a77610c9e8201527f3176486c43623552314d68623564536e4f326d6e6f475a6f5846315765574757610cbe8201527f6d7a694a314a555534715072306e694a536c4e424331636b4b6d4a6657625877610cde8201527f5577757449547a456d6a776770776142753464525066746a2f4e384143526e64610cfe8201527f616b2f4641674b674c37305058577839767a6b59322532426d34355473496b4c610d1e8201527f3037616f70444e6f676830535262535a534f397a744657516a376e574c676275610d3e8201527f364325324254374b6a44715a3667456e5277674d78306b4c5a77797962514f76610d5e8201527f514130773054782f354a42722f63595a6453574f546a774446364e6f586b796a610d7e8201527f33566a484e4751494e76426a5a734a4a3377466141516d6f5a575a5970416961610d9e8201527f574f466e6e686455524176576b557a77693062677a5a4158796f445545714863610dbe8201527f57307069454c574f777168773365765478444957724e32495371525151454c41610dde8201527f4d32365334486c723548552f48784a43436844424a6b756b6341573856415430610dfe8201527f6770545a544b4e48677a444f7234314751656a4f34677a416e6b577077464752610e1e8201527f43334c625231787a4b434875365635694674674c704f384b51596d5965467868610e3e8201527f4c32643838736469506a2f76306b427a636c51637954735766324d6445394944610e5e8201527f386d5858576a72434b253242354532756e336e6976656973526e726971317548610e7e8201527f594d6a6a69694945304b6466674d6f3163476d6b557254624f30356732737633610e9e8201527f477673525971762f61457736375472644f705435567a4641364131417939634b610ebe8201527f6f44667762544a64445750524e57517354796a6d3772486249734b466b6f4f2f610ede8201527f5a4c4376735966785973337768534338614c49344b765677373773336e347a48610efe8201527f67697061634a6e435362463945727a53357069386343577655597a4f5064327a610f1e8201527f684a2f4750437a53684f453378596c634f3350796164586a54334f6b68706841610f3e8201527f58465853766865544e5355525446565641486f4a6d7949726b6a454b6f517746610f5e8201527f4730303554334158643935764e30446d336d427332786746546c253242513572610f7e8201527f73416a6e744768707a6f62643642374e7a52664e56653130446f4e5639343753610f9e8201527f59646f635252624776636d785456786f61367a717756376d416e773544314745610fbe8201527f5474327a48382532425476514256356e37672f32615768743979794e594c3974610fde8201527f4f42744167384846435945316d4e775432454232467538544968543776565241610ffe8201527f3461587a6e6b3670545a4e6779696f73747749364b654655374c696c7041253261101e8201527f42334234474a794277574d327062466a4876734a3747754f6f616b6a6d46746a61103e8201527f59344c6254396c323239253242453646374c4475577a744c6e333749786b386a61105e8201527f356c42564b33774c7369362f416641756f6a34396c4d6b5653545045396b704761107e8201527f64304c724555534a4941413070596c4178414d642f4e4f46776f4a446458466961109e8201527f307a4f5744422f54464a705666575642574f516274724a556230636c663369256110be8201527f3242575072446f596c65545674564f45306d36793564487444725551776f414c6110de8201527f7455523365585364444d4e785866656a594674764c626c726c4a7777484b2f456110fe8201527f6957504a616b32574b35386e684e6f4c6a615a55475841756f32656f5777464561111e8201527f66612f445334496958717246714779633348726939785132693243352f73357661113e8201527f7a424d30793777334d4473774d3759325247427172464d6778374f696325324261115e8201527f30497a736d5678617a5473305263666a324f3334532f525639503269486f427561117e8201527f6c4b49594244665a46654c53356439725379664a64536c67683268644d72324f61119e8201527f5552334b6e6c506e4f41785477314a384c4d325a776e4671765a745a4a6c78786111be8201527f343873776243743272316b664875443756624831326159383849437456734b786111de8201527f4b742f31726b616c42414d74782f6f6f6d43445059626b556f4c6344624b436a6111fe8201527f7675713953544467746a584744715735564b36686347654f46697a6a3643714c61121e8201527f4f49716b57783477733245504d444e7378253242613661533230384f39784c3061123e8201527f526146586f394241645530706e452532424c695359334b536f4a41525978646e61125e8201527f7a69545a4d706961442f3438496969393834446151357976656378414673735761127e8201527f792f686274696d63253242704c386b35796f70496d4a627948712f6138797a6c61129e8201527f6c37726f4f7a586d786d4163337459585363546b65734d6344324939315a36336112be8201527f6549312f394a627755716b36737863394b52677277574d414e6543314e6e39756112de8201527f4779775473706d5538712532426c5a6d43714d674153363662674841476a514b6112fe8201527f73754a334451416a5235346d356a4c7a5a616e546c62646530253242726e663461131e8201527f385a574138546c32673277414779427748516e3552322532424e6a726542677861133e8201527f626c734e46627554776d6862414a48737a2f72416f61764c4f34317874767a5961135e8201527f4768336e4c4a426b41506a7578424a445248333048426575385567436978464e61137e8201527f437951322f4b253242385157372f6530253242664f2532423436524e5730657961139e8201527f4c726f39446a5467704a4e4d3547385179306c54644f756d73773066715045696113be8201527f393646702532424830634d774e6f376a787a596d6e4e664d5a6d64506c7932706113de8201527f6f7132575065476d67507136474c78504e34536c4b486e7870624f69754c58516113fe8201527f75583155715031676a6f38426136536c55314f416d5267707a7531735444584a61141e8201527f50754d3338546f387130344c324e777970653837327777556741675a6c70386461143e8201527f6b5166397a38544d43624d6b596b3758484375333564375a5a41656f346b5a4b61145e8201527f68784953386945354c546a334c4f6976485a7268394a3870337a4c5a436a776361147e8201527f6970354452694b6e576e49664c33386b4a684d7452776a67553525324256726d61149e8201527f714b6c6739307a376a64732f4238444b646b464c76483353253242376f4838616114be8201527f6c445a6c626734533155583574434d445342324f364b756c7a41344b763067376114de8201527f314251643054464b7733685358696e62374e6c304258725873514e6376436b386114fe8201527f6d6f394f786965783559627a78564e2f6b3738336f48545a495777393079495a61151e8201527f777672697164475473586e54384965705437597946434f4a6741395a3042794961153e8201527f455956735478522f6b73616b324268376f4b767034766e695530364d57317a4261155e8201527f4672746568647a306b6b587951786a426d7965645636644d596545386146787461157e8201527f6575777355466136466c6c54446c716430707a525a77473663467266574d627061159e8201527f384738587a6a66624d253242354658657076356f457273696c363458783663376115be8201527f5841576275696d3666387347494d58666f334a6971476b703333376854536a676115de8201527f65636862364f42472f327a31376a6f6d4469476d253242476c623146553069656115fe8201527f6e7552796977654c576767447a6d4655765545556a5a6f377356544877684f4661161e8201527f504d6b4e737146423977796d6b45307639666d7477453854377135384e594f3761163e8201527f787534623833766e46766c35755378446c472532426b4f51675249644f346a6761165e8201527f7a786a53486a4b4c7332742f6c684f647771766131415744437072763344345361167e8201527f34523741625934544362664b4637744265363554343551347a7a49714433316161169e8201527f79797557716a692532424636585337535439483943314f342f694b366b4775766116be8201527f6b512f664e3537487837456533373435622f76766e2f62482f58253242392f256116de8201527f32426762656d684f416d49705576755157757344764b517578394a44564e734b6116fe8201527f673651636d6b73515341445530346347524c523768466f5a326337785545664761171e8201527f253242776b755459474d764c6a422f6550634936416847686e5735717a45416961173e8201527f4a586377564545775869654e70536c317a6a457253253242435325324248634c61175e8201527f6f52506d7661324d6767412f69794c67536f544a555767733442794149514f3061177e8201527f4f6f705a487656627a6844494c65557155677a7a48492f667950474e7879777361179e8201527f6f796c6865534639577662795363336b4544716b32415636436c4364635535536117be8201527f6e6c4e6e4963394b794d63384c79622532423867484f4a795173466c4c6250526117de8201527f796d6d374a42743349545a544162314732444252496b514b51705451396939626117fe8201527f3665435353387a4d366161525364544b5657524d336663454a4c644b61746e7361181e8201527f724959774e4a55253242733048364461757832775a35686733706c653042474861183e8201527f756b316b4543734859446461496d4b7025324233463542317859763763486b7161185e8201527f644475306a4b645273657a3531376d63563641685148346931484e3173766c6a61187e8201527f5248366845454672682532426e72726d47316e33307a4d346749776d694d774561189e8201527f624b6842545564423141486f582532424b6741517a4f48543946494f71436b526118be8201527f4e4e623273397170496943534f753167576868497343564a73765771457175356118de8201527f47624a514b4e6a61427465394c4f69676368414a7665475773394332323033766118fe8201527f6f6e476c6b77725251323464646732796345646157554456734441785548734961191e8201527f77773665615234464665336d4a416b66426d5a6452395264774a485a6d47645261193e8201527f7950436a706a627a31712f584a34534949446b66384b4b6e6e32456c4b6d794c61195e8201527f69573442513836733151554b2f76426867524e776548766c5968687a7238706361197e8201527f67704b4b6d6f61576a7036426b594f48446c7835734b5647336365474539657661199e8201527f506e773563646667454242676f554946536238587632504553314772446a78456119be8201527f69524b6b697846716a54704d6d544b6b693148726a7a354368517155717845716119de8201527f544c6c4b6c53715571314772547231476a527130717846717a62744f6e5347656119fe8201527f3668374a6d627a4968355a6544696c315a58536a7430774375616b336c6e476f611a1e8201527f5655506f53734e663337394b326a6274716d44674d69485a42665a6c68324839611a3e8201527f75773738495469314a466a585653662f4336634f55667a346f30644178305447611a5e8201527f777448446863666a3443516d49694531444d5a42546b6c4e5a557065566f614f611a7e8201527f6e717633733234314e50503965766574594768435a50576a4979747332706173611a9e8201527f436a25324270556a54596c336b615574374f744b4a6136355850396d356e6367611abe8201527f364e686a685a587032762532426d57724341545a754a303368316b6a55756976611ade8201527f5067596e6a6e35744b4a4f6b326e6362703251414559585a69304b496d50356b611afe8201527f744961466e366b5a397743253237253239253230666f726d6174253238253237611b1e8201527f776f666632253237253239253342666f6e742d7765696768742533412532306e611b3e8201527f6f726d616c253342666f6e742d7374796c652533412532306e6f726d616c2533611b5e8201527f42666f6e742d646973706c617925334125323073776170253342253744746578611b7e8201527f74253230253742666f6e742d66616d696c792533412532302532375072657373611b9e8201527f2532305374617274253230325025323725334266696c6c253341253230776869611bbe8201527f74652537442e76616c7565253230253742666f6e742d73697a65253341253230611bde8201527f313070782533422537442e6e616d65253230253742666f6e742d73697a652533611bfe8201527f412532303470782533422537442533432f7374796c652533452533432f646566611c1e8201527f7325334525334372656374253230776964746825334425323738392532372532611c3e8201527f30686569676874253344253237353525323725323066696c6c25334425323762611c5e8201527f6c61636b2532372532302f253345253343726563742532307825334425323735611c7e8201527f2e3525323725323079253344253237352e352532372532307769647468253344611c9e8201527f2532373738253237253230686569676874253344253237343425323725323066611cbe8201527f696c6c2533442532372532333030303046462532372532302f25334525334374611cde8201527f657874253230746578742d616e63686f722533442532376d6964646c65253237611cfe8201527f2532307825334425323734342e35253237253230792533442532373333253237611d1e8201527f253230636c61737325334425323776616c756525323725334500000000000000611d3e820152612ba5612b9e6129f5611d5784018a61055b565b7f2533432f746578742533452533437265637425323078253344253237352e352581527f323725323079253344253237352e35253237253230776964746825334425323760208201527f373825323725323068656967687425334425323734342532372532307374726f60408201527f6b652533442532372532334646344630412532372532307374726f6b652d776960608201527f647468253344253237332532372532302f25334525334372656374253230782560808201527f334425323733302532372532307925334425323734352e35253237253230776960a08201527f647468253344253237353825323725323068656967687425334425323738253260c08201527f3725323066696c6c2533442532372532334646344630412532372532302f253360e08201527f4525334374657874253230746578742d616e63686f72253344253237656e64256101008201527f32372532307825334425323738372532372532307925334425323735322532376101208201527f253230636c6173732533442532376e616d6525323725334500000000000000006101408201526101580190565b86886105e3565b602160f81b81529050612bbb600182018561055b565b7f2533432f746578742533452533432f737667253345227d00000000000000000081526017019a995050505050505050505056fea26469706673582212206a2c00c13ddb4f1bcd7ee36e36f0c874d7d9dadcf38306eab3610b5a6e7af83464736f6c63430008110033", + "nonce": "0x2" + }, + "additionalContracts": [], + "isFixedGasLimit": false + }, + { + "hash": "0x042f9347335c180d80bf6c6be90ad75bf305604a8f38b76ef34d487e98577e91", + "transactionType": "CREATE", + "contractName": null, + "contractAddress": "0xCf7Ed3AccA5a467e9e704C703E8D87F634fB0Fc9", + "function": null, + "arguments": null, + "transaction": { + "type": "0x00", + "from": "0xf39fd6e51aad88f6f4ce6ab8827279cfffb92266", + "gas": "0x42230", + "value": "0x0", + "data": "0x608060405234801561001057600080fd5b506102cf806100206000396000f3fe608060405234801561001057600080fd5b506004361061004c5760003560e01c80630194db8e14610051578063072bdcc214610076578063a391c15b14610089578063b67d77c51461009c575b600080fd5b61006461005f366004610160565b6100af565b60405190815260200160405180910390f35b610064610084366004610160565b6100ef565b61006461009736600461021e565b610129565b6100646100aa36600461021e565b61013e565b600080805b83518110156100e8578381815181106100cf576100cf610240565b60200260200101518201915080806001019150506100b4565b5092915050565b60006001815b83518110156100e85783818151811061011057610110610240565b60200260200101518202915080806001019150506100f5565b60006101358284610256565b90505b92915050565b60006101358284610278565b634e487b7160e01b600052604160045260246000fd5b6000602080838503121561017357600080fd5b823567ffffffffffffffff8082111561018b57600080fd5b818501915085601f83011261019f57600080fd5b8135818111156101b1576101b161014a565b8060051b604051601f19603f830116810181811085821117156101d6576101d661014a565b6040529182528482019250838101850191888311156101f457600080fd5b938501935b82851015610212578435845293850193928501926101f9565b98975050505050505050565b6000806040838503121561023157600080fd5b50508035926020909101359150565b634e487b7160e01b600052603260045260246000fd5b60008261027357634e487b7160e01b600052601260045260246000fd5b500490565b8181038181111561013857634e487b7160e01b600052601160045260246000fdfea2646970667358221220fcdef23ba4219270ddb3ab764e22a87e229c05e6f1dfc4eeea983fa1a1dac91f64736f6c63430008110033", + "nonce": "0x3" + }, + "additionalContracts": [], + "isFixedGasLimit": false + }, + { + "hash": "0x07f47be9a108353bea36c14aae366ca1ea9b80d7e3f12c5f4836e11e3856848a", + "transactionType": "CREATE", + "contractName": "Evmsheet", + "contractAddress": "0xDc64a140Aa3E981100a9becA4E685f962f0cF6C9", + "function": null, + "arguments": [ + "0x9fE46736679d2D9a65F0992F2272dE9f3c7fa6e0", + "10000000000000000" + ], + "transaction": { + "type": "0x00", + "from": "0xf39fd6e51aad88f6f4ce6ab8827279cfffb92266", + "gas": "0x34bf99", + "value": "0x0", + "data": "0x608060405234801561001057600080fd5b50604051612ed9380380612ed983398101604081905261002f916100b1565b61003833610061565b600280546001600160a01b0319166001600160a01b0393909316929092179091556001556100eb565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b600080604083850312156100c457600080fd5b82516001600160a01b03811681146100db57600080fd5b6020939093015192949293505050565b612ddf806100fa6000396000f3fe608060405260043610620000a95760003560e01c80638da5cb5b116200006c5780638da5cb5b146200016d578063ab2fa65a146200018d578063ae28505e14620001b4578063c56c4cf114620001d9578063f2fde38b14620001fb578063f52be2a2146200022057600080fd5b806303fb31e814620000ae5780631164c83d14620000d5578063145e414714620000ec5780635787cacb146200012e578063715018a61462000155575b600080fd5b348015620000bb57600080fd5b50620000d3620000cd36600462000778565b62000247565b005b620000d3620000e6366004620007e9565b62000273565b348015620000f957600080fd5b50620001116200010b36600462000864565b620004b2565b6040516001600160a01b0390911681526020015b60405180910390f35b3480156200013b57600080fd5b50620001466200054f565b60405162000125919062000891565b3480156200016257600080fd5b50620000d3620005b3565b3480156200017a57600080fd5b506000546001600160a01b031662000111565b3480156200019a57600080fd5b50620001a5620005cb565b604051620001259190620008e0565b348015620001c157600080fd5b5062000111620001d336600462000930565b620005f7565b348015620001e657600080fd5b5060025462000111906001600160a01b031681565b3480156200020857600080fd5b50620000d36200021a36600462000778565b62000622565b3480156200022d57600080fd5b506200023860015481565b60405190815260200162000125565b62000251620006a1565b600280546001600160a01b0319166001600160a01b0392909216919091179055565b60015434146200029d5760405163723a79e360e11b81523460048201526024015b60405180910390fd5b600060405180602001620002b1906200074d565b6020820181038252601f19601f8201166040525090506000828251602084016000f56002546040516356d3163d60e01b81526001600160a01b0391821660048201529192508216906356d3163d90602401600060405180830381600087803b1580156200031d57600080fd5b505af115801562000332573d6000803e3d6000fd5b505060405163c47f002760e01b81526001600160a01b038416925063c47f0027915062000366908a908a906004016200094a565b600060405180830381600087803b1580156200038157600080fd5b505af115801562000396573d6000803e3d6000fd5b5050604051635c26412360e11b81526001600160a01b038416925063b84c82469150620003ca90889088906004016200094a565b600060405180830381600087803b158015620003e557600080fd5b505af1158015620003fa573d6000803e3d6000fd5b505060405163f2fde38b60e01b81523260048201526001600160a01b038416925063f2fde38b9150602401600060405180830381600087803b1580156200044057600080fd5b505af115801562000455573d6000803e3d6000fd5b5050600380546001810182556000919091527fc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b0180546001600160a01b0319166001600160a01b0394909416939093179092555050505050505050565b600060ff60f81b838360405180602001620004cd906200074d565b6020820181038252601f19601f82011660405250805190602001206040516020016200053094939291906001600160f81b031994909416845260609290921b6bffffffffffffffffffffffff191660018401526015830152603582015260550190565b60408051601f1981840301815291905280516020909101209392505050565b60606003805480602002602001604051908101604052809291908181526020018280548015620005a957602002820191906000526020600020905b81546001600160a01b031681526001909101906020018083116200058a575b5050505050905090565b620005bd620006a1565b620005c96000620006fd565b565b606060405180602001620005df906200074d565b601f1982820381018352601f90910116604052919050565b600381815481106200060857600080fd5b6000918252602090912001546001600160a01b0316905081565b6200062c620006a1565b6001600160a01b038116620006935760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b606482015260840162000294565b6200069e81620006fd565b50565b6000546001600160a01b03163314620005c95760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015260640162000294565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b612430806200097a83390190565b80356001600160a01b03811681146200077357600080fd5b919050565b6000602082840312156200078b57600080fd5b62000796826200075b565b9392505050565b60008083601f840112620007b057600080fd5b50813567ffffffffffffffff811115620007c957600080fd5b602083019150836020828501011115620007e257600080fd5b9250929050565b6000806000806000606086880312156200080257600080fd5b853567ffffffffffffffff808211156200081b57600080fd5b6200082989838a016200079d565b909750955060208801359150808211156200084357600080fd5b5062000852888289016200079d565b96999598509660400135949350505050565b600080604083850312156200087857600080fd5b62000883836200075b565b946020939093013593505050565b6020808252825182820181905260009190848201906040850190845b81811015620008d45783516001600160a01b031683529284019291840191600101620008ad565b50909695505050505050565b600060208083528351808285015260005b818110156200090f57858101830151858201604001528201620008f1565b506000604082860101526040601f19601f8301168501019250505092915050565b6000602082840312156200094357600080fd5b5035919050565b60208152816020820152818360408301376000818301604090810191909152601f909201601f1916010191905056fe60806040523480156200001157600080fd5b50604051806040016040528060078152602001660536865657420360cc1b815250604051806040016040528060048152602001630534854360e41b81525062000069620000636200008f60201b60201c565b62000093565b600162000077838262000188565b50600262000086828262000188565b50505062000254565b3390565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b634e487b7160e01b600052604160045260246000fd5b600181811c908216806200010e57607f821691505b6020821081036200012f57634e487b7160e01b600052602260045260246000fd5b50919050565b601f8211156200018357600081815260208120601f850160051c810160208610156200015e5750805b601f850160051c820191505b818110156200017f578281556001016200016a565b5050505b505050565b81516001600160401b03811115620001a457620001a4620000e3565b620001bc81620001b58454620000f9565b8462000135565b602080601f831160018114620001f45760008415620001db5750858301515b600019600386901b1c1916600185901b1785556200017f565b600085815260208120601f198616915b82811015620002255788860151825594840194600190910190840162000204565b5085821015620002445787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b6121cc80620002646000396000f3fe608060405234801561001057600080fd5b50600436106102275760003560e01c8063715018a611610130578063b85d8b85116100b8578063cf0983981161007c578063cf09839814610512578063cfbe95d814610535578063df4ca20614610556578063e985e9c514610576578063f2fde38b146105a457600080fd5b8063b85d8b85146104a4578063b88d4fde146104ce578063b8c368ec146104e1578063c47f0027146104ec578063c87b56dd146104ff57600080fd5b806395d89b41116100ff57806395d89b4114610439578063a22cb46514610441578063b46ebb1214610454578063b6d658e114610467578063b84c82461461049157600080fd5b8063715018a6146103fa578063768d5029146104025780638ada6b0f146104155780638da5cb5b1461042857600080fd5b80631b06443c116101b35780634f6ccce7116101825780634f6ccce71461038157806356d3163d146103a15780636352211e146103b45780636a0abc74146103c757806370a08231146103e757600080fd5b80631b06443c14610335578063206848f61461034857806323b872dd1461035b57806342842e0e1461036e57600080fd5b8063081812fc116101fa578063081812fc146102a1578063095ea7b3146102e2578063172b9eed146102f757806318160ddd1461030a5780631941fd141461031357600080fd5b806301ffc9a71461022c57806302f3c4c91461025457806306fdde03146102745780630715a24a1461027c575b600080fd5b61023f61023a36600461176a565b6105b7565b60405190151581526020015b60405180910390f35b610267610262366004611861565b610609565b60405161024b9190611951565b610267610638565b6102936fffffffffffffffffffffffffffffffff81565b60405190815260200161024b565b6102ca6102af366004611964565b6005602052600090815260409020546001600160a01b031681565b6040516001600160a01b03909116815260200161024b565b6102f56102f036600461197d565b6106c6565b005b6102676103053660046119a9565b6107ad565b61029360075481565b610326610321366004611964565b610875565b60405161024b939291906119de565b6102ca610343366004611a0e565b61092a565b610326610356366004611964565b6109e3565b6102f5610369366004611a2b565b610ae1565b6102f561037c366004611a2b565b610ca8565b61029361038f366004611964565b60086020526000908152604090205481565b6102f56103af366004611a0e565b610da0565b6102ca6103c2366004611964565b610dca565b6103da6103d53660046119a9565b610e1c565b60405161024b9190611a6c565b6102936103f5366004611a0e565b610e60565b6102f5610ec3565b6102f5610410366004611af9565b610ed7565b6009546102ca906001600160a01b031681565b6000546001600160a01b03166102ca565b610267611035565b6102f561044f366004611b63565b611042565b610267610462366004611964565b6110ae565b61047a610475366004611964565b611258565b60408051921515835260208301919091520161024b565b6102f561049f366004611ba1565b611275565b6104b56104b2366004611964565b90565b6040516001600160e01b0319909116815260200161024b565b6102f56104dc366004611be3565b6112c6565b6102ca600160801b81565b6102f56104fa366004611ba1565b6113ae565b61026761050d366004611964565b6113ff565b61023f610520366004611a0e565b600160801b6001600160a01b03919091161090565b61023f610543366004611861565b516001600160a01b0316600160801b1490565b610569610564366004611964565b6114c9565b60405161024b9190611c16565b61023f610584366004611c4d565b600660209081526000928352604080842090915290825290205460ff1681565b6102f56105b2366004611a0e565b611526565b60006301ffc9a760e01b6001600160e01b0319831614806105e857506380ac58cd60e01b6001600160e01b03198316145b806106035750635b5e139f60e01b6001600160e01b03198316145b92915050565b6060816020015160405160200161062291815260200190565b6040516020818303038152906040529050919050565b6001805461064590611c7b565b80601f016020809104026020016040519081016040528092919081815260200182805461067190611c7b565b80156106be5780601f10610693576101008083540402835291602001916106be565b820191906000526020600020905b8154815290600101906020018083116106a157829003601f168201915b505050505081565b6000818152600360205260409020546001600160a01b03163381148061070f57506001600160a01b038116600090815260066020908152604080832033845290915290205460ff165b6107515760405162461bcd60e51b815260206004820152600e60248201526d1393d517d055551213d49256915160921b60448201526064015b60405180910390fd5b60008281526005602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b606060006107ba83610e1c565b9050606060005b825181101561086d576000806107ef8584815181106107e2576107e2611cb5565b6020026020010151611258565b9150915081156108335783610803826110ae565b61080c90611ccb565b60405160200161081d929190611cef565b6040516020818303038152906040529350610858565b6040516108469085908390602001611cef565b60405160208183030381529060405293505b5050808061086590611d27565b9150506107c1565b509392505050565b600a602052600090815260409020805460018201546002830180546001600160a01b039093169391926108a790611c7b565b80601f01602080910402602001604051908101604052809291908181526020018280546108d390611c7b565b80156109205780601f106108f557610100808354040283529160200191610920565b820191906000526020600020905b81548152906001019060200180831161090357829003601f168201915b5050505050905083565b6000600160801b6001600160a01b03831610156109da576000610955836001600160a01b03166110ae565b604051632d737e4960e21b8152909150735fbdb2315678afecb367f032d93f642f64180aa39063b5cdf92490610992908490600090600401611d40565b602060405180830381865af41580156109af573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906109d39190611d62565b9392505050565b5090565b919050565b60008181526003602052604081205481906060906001600160a01b0316610a1057600160801b9250610a2b565b6000848152600a60205260409020546001600160a01b031692505b6000848152600a60205260409020600181015460029091018054859291908190610a5490611c7b565b80601f0160208091040260200160405190810160405280929190818152602001828054610a8090611c7b565b8015610acd5780601f10610aa257610100808354040283529160200191610acd565b820191906000526020600020905b815481529060010190602001808311610ab057829003601f168201915b505050505090509250925092509193909250565b6000818152600360205260409020546001600160a01b03848116911614610b375760405162461bcd60e51b815260206004820152600a60248201526957524f4e475f46524f4d60b01b6044820152606401610748565b6001600160a01b038216610b815760405162461bcd60e51b81526020600482015260116024820152701253959053125117d49150d25412515395607a1b6044820152606401610748565b336001600160a01b0384161480610bbb57506001600160a01b038316600090815260066020908152604080832033845290915290205460ff165b80610bdc57506000818152600560205260409020546001600160a01b031633145b610c195760405162461bcd60e51b815260206004820152600e60248201526d1393d517d055551213d49256915160921b6044820152606401610748565b6001600160a01b0380841660008181526004602090815260408083208054600019019055938616808352848320805460010190558583526003825284832080546001600160a01b03199081168317909155600590925284832080549092169091559251849392917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b610cb3838383610ae1565b6001600160a01b0382163b1580610d5c5750604051630a85bd0160e11b8082523360048301526001600160a01b03858116602484015260448301849052608060648401526000608484015290919084169063150b7a029060a4016020604051808303816000875af1158015610d2c573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610d509190611d7b565b6001600160e01b031916145b610d9b5760405162461bcd60e51b815260206004820152601060248201526f155394d0519157d49150d2541251539560821b6044820152606401610748565b505050565b610da861159f565b600980546001600160a01b0319166001600160a01b0392909216919091179055565b6000818152600360205260409020546001600160a01b0316806109de5760405162461bcd60e51b815260206004820152600a6024820152691393d517d3525395115160b21b6044820152606401610748565b60608082516040519150602081048252602082016020850160005b83811015610e4f578181015183820152602001610e37565b505050810160200160405292915050565b60006001600160a01b038216610ea75760405162461bcd60e51b815260206004820152600c60248201526b5a45524f5f4144445245535360a01b6044820152606401610748565b506001600160a01b031660009081526004602052604090205490565b610ecb61159f565b610ed560006115f9565b565b6000858152600360205260409020546001600160a01b0316610f2f57610efd3286611649565b60078054600090815260086020526040812087905581546001929190610f24908490611d98565b90915550610f889050565b6000858152600360205260409020546001600160a01b03163214610f8857600085815260036020526040908190205490516324f3f02560e21b81526001600160a01b039091166004820152326024820152604401610748565b6040518060600160405280856001600160a01b0316815260200184815260200183838080601f0160208091040260200160405190810160405280939291908181526020018383808284376000920182905250939094525050878152600a6020908152604091829020845181546001600160a01b0319166001600160a01b0390911617815590840151600182015590830151909150600282019061102b9082611df9565b5050505050505050565b6002805461064590611c7b565b3360008181526006602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b6000818152600a6020908152604080832081516060818101845282546001600160a01b0316825260018301549482019490945260028201805494959491938401916110f890611c7b565b80601f016020809104026020016040519081016040528092919081815260200182805461112490611c7b565b80156111715780601f1061114657610100808354040283529160200191611171565b820191906000526020600020905b81548152906001019060200180831161115457829003601f168201915b505050505081525050905061119381516001600160a01b0316600160801b1490565b156111a1576109d381610609565b60006111b0826000015161092a565b905060006111bf836020015190565b905060006111d084604001516107ad565b90506000836001600160a01b031683836040516020016111f1929190611eb9565b60408051601f198184030181529082905261120b91611eea565b600060405180830381855afa9150503d8060008114611246576040519150601f19603f3d011682016040523d82523d6000602084013e61124b565b606091505b5098975050505050505050565b600080611266600284611f06565b60019081149493901c92915050565b61127d61159f565b7f8dca0271872d00b3de3abafca544c52fcd7d512dd852c9894fa2c118ac759a93600283836040516112b193929190611fce565b60405180910390a16002610d9b828483611ffe565b6112d1858585610ae1565b6001600160a01b0384163b15806113685750604051630a85bd0160e11b808252906001600160a01b0386169063150b7a02906113199033908a908990899089906004016120be565b6020604051808303816000875af1158015611338573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061135c9190611d7b565b6001600160e01b031916145b6113a75760405162461bcd60e51b815260206004820152601060248201526f155394d0519157d49150d2541251539560821b6044820152606401610748565b5050505050565b6113b661159f565b7fb65b7b5ea384affd30f77f842e057d29dd1b13f133adf69a724a8105b164ab75600183836040516113ea93929190611fce565b60405180910390a16001610d9b828483611ffe565b6000818152600360205260409020546060906001600160a01b03168061143b57604051630243d1a960e21b815260048101849052602401610748565b6000611446846110ae565b6009546040516328de0f2f60e01b81529192506001600160a01b0316906328de0f2f9061147c90879085906001906004016120fd565b600060405180830381865afa158015611499573d6000803e3d6000fd5b505050506040513d6000823e601f3d908101601f191682016040526114c19190810190612128565b949350505050565b604080516060808201835260008083526020830181905292820152906114ee836110ae565b6040805160608101825285815260009586526003602090815295829020546001600160a01b0316958101959095528401525090919050565b61152e61159f565b6001600160a01b0381166115935760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610748565b61159c816115f9565b50565b6000546001600160a01b03163314610ed55760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610748565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b6001600160a01b0382166116935760405162461bcd60e51b81526020600482015260116024820152701253959053125117d49150d25412515395607a1b6044820152606401610748565b6000818152600360205260409020546001600160a01b0316156116e95760405162461bcd60e51b815260206004820152600e60248201526d1053149150511657d3525395115160921b6044820152606401610748565b6001600160a01b038216600081815260046020908152604080832080546001019055848352600390915280822080546001600160a01b0319168417905551839291907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b6001600160e01b03198116811461159c57600080fd5b60006020828403121561177c57600080fd5b81356109d381611754565b634e487b7160e01b600052604160045260246000fd5b604051601f8201601f1916810167ffffffffffffffff811182821017156117c6576117c6611787565b604052919050565b6001600160a01b038116811461159c57600080fd5b600067ffffffffffffffff8211156117fd576117fd611787565b50601f01601f191660200190565b600082601f83011261181c57600080fd5b813561182f61182a826117e3565b61179d565b81815284602083860101111561184457600080fd5b816020850160208301376000918101602001919091529392505050565b60006020828403121561187357600080fd5b813567ffffffffffffffff8082111561188b57600080fd5b908301906060828603121561189f57600080fd5b6040516060810181811083821117156118ba576118ba611787565b60405282356118c8816117ce565b8152602083810135908201526040830135828111156118e657600080fd5b6118f28782860161180b565b60408301525095945050505050565b60005b8381101561191c578181015183820152602001611904565b50506000910152565b6000815180845261193d816020860160208601611901565b601f01601f19169290920160200192915050565b6020815260006109d36020830184611925565b60006020828403121561197657600080fd5b5035919050565b6000806040838503121561199057600080fd5b823561199b816117ce565b946020939093013593505050565b6000602082840312156119bb57600080fd5b813567ffffffffffffffff8111156119d257600080fd5b6114c18482850161180b565b60018060a01b0384168152826020820152606060408201526000611a056060830184611925565b95945050505050565b600060208284031215611a2057600080fd5b81356109d3816117ce565b600080600060608486031215611a4057600080fd5b8335611a4b816117ce565b92506020840135611a5b816117ce565b929592945050506040919091013590565b6020808252825182820181905260009190848201906040850190845b81811015611aa457835183529284019291840191600101611a88565b50909695505050505050565b60008083601f840112611ac257600080fd5b50813567ffffffffffffffff811115611ada57600080fd5b602083019150836020828501011115611af257600080fd5b9250929050565b600080600080600060808688031215611b1157600080fd5b853594506020860135611b23816117ce565b935060408601359250606086013567ffffffffffffffff811115611b4657600080fd5b611b5288828901611ab0565b969995985093965092949392505050565b60008060408385031215611b7657600080fd5b8235611b81816117ce565b915060208301358015158114611b9657600080fd5b809150509250929050565b60008060208385031215611bb457600080fd5b823567ffffffffffffffff811115611bcb57600080fd5b611bd785828601611ab0565b90969095509350505050565b600080600080600060808688031215611bfb57600080fd5b8535611c06816117ce565b94506020860135611b23816117ce565b602081528151602082015260018060a01b036020830151166040820152600060408301516060808401526114c16080840182611925565b60008060408385031215611c6057600080fd5b8235611c6b816117ce565b91506020830135611b96816117ce565b600181811c90821680611c8f57607f821691505b602082108103611caf57634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052603260045260246000fd5b80516020808301519190811015611caf5760001960209190910360031b1b16919050565b60008351611d01818460208801611901565b9190910191825250602001919050565b634e487b7160e01b600052601160045260246000fd5b600060018201611d3957611d39611d11565b5060010190565b604081526000611d536040830185611925565b90508260208301529392505050565b600060208284031215611d7457600080fd5b5051919050565b600060208284031215611d8d57600080fd5b81516109d381611754565b8082018082111561060357610603611d11565b601f821115610d9b57600081815260208120601f850160051c81016020861015611dd25750805b601f850160051c820191505b81811015611df157828155600101611dde565b505050505050565b815167ffffffffffffffff811115611e1357611e13611787565b611e2781611e218454611c7b565b84611dab565b602080601f831160018114611e5c5760008415611e445750858301515b600019600386901b1c1916600185901b178555611df1565b600085815260208120601f198616915b82811015611e8b57888601518255948401946001909101908401611e6c565b5085821015611ea95787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b6001600160e01b0319831681528151600090611edc816004850160208701611901565b919091016004019392505050565b60008251611efc818460208701611901565b9190910192915050565b600082611f2357634e487b7160e01b600052601260045260246000fd5b500690565b60008154611f3581611c7b565b808552602060018381168015611f525760018114611f6c57611f9a565b60ff1985168884015283151560051b880183019550611f9a565b866000528260002060005b85811015611f925781548a8201860152908301908401611f77565b890184019650505b505050505092915050565b81835281816020850137506000828201602090810191909152601f909101601f19169091010190565b604081526000611fe16040830186611f28565b8281036020840152611ff4818587611fa5565b9695505050505050565b67ffffffffffffffff83111561201657612016611787565b61202a836120248354611c7b565b83611dab565b6000601f84116001811461205e57600085156120465750838201355b600019600387901b1c1916600186901b1783556113a7565b600083815260209020601f19861690835b8281101561208f578685013582556020948501946001909201910161206f565b50868210156120ac5760001960f88860031b161c19848701351681555b505060018560011b0183555050505050565b6001600160a01b03868116825285166020820152604081018490526080606082018190526000906120f29083018486611fa5565b979650505050505050565b8381526060602082015260006121166060830185611925565b8281036040840152611ff48185611f28565b60006020828403121561213a57600080fd5b815167ffffffffffffffff81111561215157600080fd5b8201601f8101841361216257600080fd5b805161217061182a826117e3565b81815285602083850101111561218557600080fd5b611a0582602083016020860161190156fea26469706673582212203fc548aa4f22e6f4c01757ba3f2e0383630418b3d17601758718ab19a4d9918d64736f6c63430008110033a26469706673582212207932e8c793f9a96d9606a8907a6671f54c0fb1ed5a763048e13b429274e7706c64736f6c634300081100330000000000000000000000009fe46736679d2d9a65f0992f2272de9f3c7fa6e0000000000000000000000000000000000000000000000000002386f26fc10000", + "nonce": "0x4" + }, + "additionalContracts": [], + "isFixedGasLimit": false + } + ], + "receipts": [], + "libraries": [ + "lib/eth-projects-monorepo/packages/eth-projects-contracts/contracts/lib/utils/Bytes.sol:Bytes:0x5fbdb2315678afecb367f032d93f642f64180aa3" + ], + "pending": [ + "0x030c68fd0a213dc6a8a9fc6cffeff1a98228e34ca37ff69f185df015fe1ab3f1", + "0x01c6eb7c01a0621ca049c2e22b2eccee52cd6af087ff9db93a13e4f3de2ac66a", + "0x03e703754fab191f461e3372a6921dd773d04d1d84c3b272a00cdd3047b521e9", + "0x042f9347335c180d80bf6c6be90ad75bf305604a8f38b76ef34d487e98577e91", + "0x07f47be9a108353bea36c14aae366ca1ea9b80d7e3f12c5f4836e11e3856848a" + ], + "returns": {}, + "timestamp": 1689177966, + "chain": 1263227476, + "multi": false, + "commit": "24c72b7" +} \ No newline at end of file diff --git a/packages/starksheet-solidity/broadcast/Evmsheet.s.sol/1263227476/run-1689178069.json b/packages/starksheet-solidity/broadcast/Evmsheet.s.sol/1263227476/run-1689178069.json new file mode 100644 index 00000000..861fd7cc --- /dev/null +++ b/packages/starksheet-solidity/broadcast/Evmsheet.s.sol/1263227476/run-1689178069.json @@ -0,0 +1,109 @@ +{ + "transactions": [ + { + "hash": null, + "transactionType": "CREATE", + "contractName": "Bytes", + "contractAddress": "0x5FbDB2315678afecb367f032d93F642f64180aa3", + "function": null, + "arguments": null, + "transaction": { + "type": "0x02", + "from": "0xf39fd6e51aad88f6f4ce6ab8827279cfffb92266", + "gas": "0x1387ed", + "data": "0x6110d661003a600b82828239805160001a60731461002d57634e487b7160e01b600052600060045260246000fd5b30600052607381538281f3fe73000000000000000000000000000000000000000030146080604052600436106101625760003560e01c8063a5eb31ee116100cd578063d1ffb56111610086578063d1ffb561146103fb578063d442584f1461042b578063e004139614610454578063f1142fb314610474578063f647f8fb14610487578063f83b670f146104b257600080fd5b8063a5eb31ee14610344578063a8d8f00f1461036b578063b5cdf92414610396578063b63711df146103a9578063be8b3430146103bc578063c29616bd146103cf57600080fd5b80635ef849301161011f5780635ef8493014610241578063913c97b41461026b57806397e6175c1461029f57806399dd9bd7146102cb5780639ae4c3d1146102ec5780639cee499e1461031857600080fd5b8063042aa0841461016757806305d3bb74146101985780631a7431ef146101c0578063235266d2146101e357806348137709146101f65780634d66a2ae1461021b575b600080fd5b61017a610175366004610ec0565b6104de565b6040516001600160d01b031990911681526020015b60405180910390f35b6101ab6101a6366004610ec0565b610540565b60405163ffffffff909116815260200161018f565b6101d36101ce366004610f05565b61059d565b604051901515815260200161018f565b6101d36101f1366004610f4c565b610652565b610209610204366004610ec0565b6106b5565b60405160ff909116815260200161018f565b61022e610229366004610fa6565b610711565b60405161ffff909116815260200161018f565b61025461024f366004610ec0565b61071e565b60405165ffffffffffff909116815260200161018f565b61027e610279366004610ec0565b610772565b6040516fffffffffffffffffffffffffffffffff909116815260200161018f565b6102b26102ad366004610ec0565b6107d0565b6040516001600160a01b0319909116815260200161018f565b6102de6102d9366004610ec0565b61082e565b60405190815260200161018f565b6102ff6102fa366004610ec0565b61088c565b60405167ffffffffffffffff909116815260200161018f565b61032b610326366004610ec0565b6108e9565b6040516001600160d81b0319909116815260200161018f565b610357610352366004610ec0565b610946565b60405162ffffff909116815260200161018f565b61037e610379366004610ec0565b6109a3565b60405166ffffffffffffff909116815260200161018f565b6102de6103a4366004610ec0565b610a00565b6102ff6103b7366004610ec0565b610a55565b61022e6103ca366004610ec0565b610aa9565b6103e26103dd366004610ec0565b610b06565b6040516001600160c81b0319909116815260200161018f565b61040e610409366004610ec0565b610b5a565b6040516bffffffffffffffffffffffff909116815260200161018f565b61043e610439366004610ec0565b610bae565b60405164ffffffffff909116815260200161018f565b610467610462366004610fe3565b610c02565b60405161018f9190611031565b6102b2610482366004610ec0565b610d0f565b61049a610495366004610ec0565b610d64565b6040516001600160a01b03909116815260200161018f565b6104c56104c0366004610ec0565b610dc9565b6040516001600160f81b0319909116815260200161018f565b60006104eb82600661107f565b835110156105375760405162461bcd60e51b8152602060048201526014602482015273746f4279746573365f6f75744f66426f756e647360601b60448201526064015b60405180910390fd5b50016006015190565b600061054d82600461107f565b835110156105945760405162461bcd60e51b8152602060048201526014602482015273746f55696e7433325f6f75744f66426f756e647360601b604482015260640161052e565b50016004015190565b600080600190508354600260018083161561010002038216048451808214600181146105cc5760009450610644565b821561064457602083106001811461062957600189600052602060002060208a018581015b600284828410010361062057815183541461060f5760009950600093505b6001830192506020820191506105f1565b50505050610642565b6101008086040294506020880151851461064257600095505b505b509293505050505b92915050565b81518151600091600191811480831461066e57600092506106ab565b600160208701838101602088015b60028483851001036106a657805183511461069a5760009650600093505b6020928301920161067c565b505050505b5090949350505050565b60006106c282600161107f565b835110156107085760405162461bcd60e51b8152602060048201526013602482015272746f55696e74385f6f75744f66426f756e647360681b604482015260640161052e565b50016001015190565b600061064c826000610aa9565b600061072b82600661107f565b835110156105375760405162461bcd60e51b8152602060048201526014602482015273746f55696e7434385f6f75744f66426f756e647360601b604482015260640161052e565b600061077f82601061107f565b835110156107c75760405162461bcd60e51b8152602060048201526015602482015274746f55696e743132385f6f75744f66426f756e647360581b604482015260640161052e565b50016010015190565b60006107dd82600c61107f565b835110156108255760405162461bcd60e51b8152602060048201526015602482015274746f427974657331325f6f75744f66426f756e647360581b604482015260640161052e565b5001600c015190565b600061083b82602061107f565b835110156108835760405162461bcd60e51b8152602060048201526015602482015274746f427974657333325f6f75744f66426f756e647360581b604482015260640161052e565b50016020015190565b600061089982600861107f565b835110156108e05760405162461bcd60e51b8152602060048201526014602482015273746f55696e7436345f6f75744f66426f756e647360601b604482015260640161052e565b50016008015190565b60006108f682600561107f565b8351101561093d5760405162461bcd60e51b8152602060048201526014602482015273746f4279746573355f6f75744f66426f756e647360601b604482015260640161052e565b50016005015190565b600061095382600361107f565b8351101561099a5760405162461bcd60e51b8152602060048201526014602482015273746f55696e7432345f6f75744f66426f756e647360601b604482015260640161052e565b50016003015190565b60006109b082600761107f565b835110156109f75760405162461bcd60e51b8152602060048201526014602482015273746f55696e7435365f6f75744f66426f756e647360601b604482015260640161052e565b50016007015190565b6000610a0d82602061107f565b835110156108835760405162461bcd60e51b8152602060048201526015602482015274746f55696e743235365f6f75744f66426f756e647360581b604482015260640161052e565b6000610a6282600861107f565b835110156108e05760405162461bcd60e51b8152602060048201526014602482015273746f4279746573385f6f75744f66426f756e647360601b604482015260640161052e565b6000610ab682600261107f565b83511015610afd5760405162461bcd60e51b8152602060048201526014602482015273746f55696e7431365f6f75744f66426f756e647360601b604482015260640161052e565b50016002015190565b6000610b1382600761107f565b835110156109f75760405162461bcd60e51b8152602060048201526014602482015273746f4279746573375f6f75744f66426f756e647360601b604482015260640161052e565b6000610b6782600c61107f565b835110156108255760405162461bcd60e51b8152602060048201526014602482015273746f55696e7439365f6f75744f66426f756e647360601b604482015260640161052e565b6000610bbb82600561107f565b8351101561093d5760405162461bcd60e51b8152602060048201526014602482015273746f55696e7434305f6f75744f66426f756e647360601b604482015260640161052e565b606081610c1081601f61107f565b1015610c4f5760405162461bcd60e51b815260206004820152600e60248201526d736c6963655f6f766572666c6f7760901b604482015260640161052e565b610c59828461107f565b84511015610c9d5760405162461bcd60e51b8152602060048201526011602482015270736c6963655f6f75744f66426f756e647360781b604482015260640161052e565b606082158015610cbc5760405191506000825260208201604052610d06565b6040519150601f8416801560200281840101858101878315602002848b0101015b81831015610cf5578051835260209283019201610cdd565b5050858452601f01601f1916604052505b50949350505050565b6000610d1c82601061107f565b835110156107c75760405162461bcd60e51b8152602060048201526015602482015274746f427974657331365f6f75744f66426f756e647360581b604482015260640161052e565b6000610d7182601461107f565b83511015610db95760405162461bcd60e51b8152602060048201526015602482015274746f416464726573735f6f75744f66426f756e647360581b604482015260640161052e565b500160200151600160601b900490565b6000610dd682600161107f565b835110156107085760405162461bcd60e51b8152602060048201526014602482015273746f4279746573315f6f75744f66426f756e647360601b604482015260640161052e565b634e487b7160e01b600052604160045260246000fd5b600082601f830112610e4457600080fd5b813567ffffffffffffffff80821115610e5f57610e5f610e1d565b604051601f8301601f19908116603f01168101908282118183101715610e8757610e87610e1d565b81604052838152866020858801011115610ea057600080fd5b836020870160208301376000602085830101528094505050505092915050565b60008060408385031215610ed357600080fd5b823567ffffffffffffffff811115610eea57600080fd5b610ef685828601610e33565b95602094909401359450505050565b60008060408385031215610f1857600080fd5b82359150602083013567ffffffffffffffff811115610f3657600080fd5b610f4285828601610e33565b9150509250929050565b60008060408385031215610f5f57600080fd5b823567ffffffffffffffff80821115610f7757600080fd5b610f8386838701610e33565b93506020850135915080821115610f9957600080fd5b50610f4285828601610e33565b600060208284031215610fb857600080fd5b813567ffffffffffffffff811115610fcf57600080fd5b610fdb84828501610e33565b949350505050565b600080600060608486031215610ff857600080fd5b833567ffffffffffffffff81111561100f57600080fd5b61101b86828701610e33565b9660208601359650604090950135949350505050565b600060208083528351808285015260005b8181101561105e57858101830151858201604001528201611042565b506000604082860101526040601f19601f8301168501019250505092915050565b8082018082111561064c57634e487b7160e01b600052601160045260246000fdfea26469706673582212205bdf5bc4551862519f5370e0dcec38eefbbbe11b6a5bf19ce2846b4f8831a5dc64736f6c63430008110033", + "nonce": "0x0", + "accessList": [] + }, + "additionalContracts": [], + "isFixedGasLimit": false + }, + { + "hash": null, + "transactionType": "CREATE", + "contractName": "MultiSendCallOnly", + "contractAddress": "0xe7f1725E7734CE288F8367e1Bb143E90bb3F0512", + "function": null, + "arguments": null, + "transaction": { + "type": "0x02", + "from": "0xf39fd6e51aad88f6f4ce6ab8827279cfffb92266", + "gas": "0x2e5c4", + "value": "0x0", + "data": "0x608060405234801561001057600080fd5b506101ae806100206000396000f3fe60806040526004361061001e5760003560e01c80638d80ff0a14610023575b600080fd5b6100366100313660046100c7565b610038565b005b805160205b818110156100ac578083015160f81c6001820184015160601c601583018501516035840186015160558501870160008560008114610082576001811461001e5761008e565b6000808585888a5af191505b508061009957600080fd5b505080605501850194505050505061003d565b505050565b634e487b7160e01b600052604160045260246000fd5b6000602082840312156100d957600080fd5b813567ffffffffffffffff808211156100f157600080fd5b818401915084601f83011261010557600080fd5b813581811115610117576101176100b1565b604051601f8201601f19908116603f0116810190838211818310171561013f5761013f6100b1565b8160405282815287602084870101111561015857600080fd5b82602086016020830137600092810160200192909252509594505050505056fea2646970667358221220c15490bbb756a4c3c49d6335b2e81d2d098647b0ea70174c2279f199b1d0800364736f6c63430008110033", + "nonce": "0x1", + "accessList": [] + }, + "additionalContracts": [], + "isFixedGasLimit": false + }, + { + "hash": null, + "transactionType": "CREATE", + "contractName": "BasicCellRenderer", + "contractAddress": "0x9fE46736679d2D9a65F0992F2272dE9f3c7fa6e0", + "function": null, + "arguments": null, + "transaction": { + "type": "0x02", + "from": "0xf39fd6e51aad88f6f4ce6ab8827279cfffb92266", + "gas": "0x3180ad", + "value": "0x0", + "data": "0x608060405234801561001057600080fd5b50612c25806100206000396000f3fe608060405234801561001057600080fd5b50600436106100365760003560e01c806306d4cd8b1461003b57806328de0f2f14610064575b600080fd5b61004e610049366004610322565b610077565b60405161005b919061038b565b60405180910390f35b61004e610072366004610404565b6100f1565b60606000610086600f846104fc565b90506000610095600f8361051e565b61009f9085610535565b905060006100ae826041610548565b60f81b9050806100c76100c2856001610548565b6101b6565b6040516020016100d8929190610577565b6040516020818303038152906040529350505050919050565b606060006100fe86610077565b905083838261018388735fbdb2315678afecb367f032d93f642f64180aa363b5cdf924909160006040518363ffffffff1660e01b81526004016101429291906105a8565b602060405180830381865af415801561015f573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906100c291906105ca565b87878660405160200161019c97969594939291906105f2565b604051602081830303815290604052915050949350505050565b606060006101c383610249565b600101905060008167ffffffffffffffff8111156101e3576101e36103a5565b6040519080825280601f01601f19166020018201604052801561020d576020820181803683370190505b5090508181016020015b600019016f181899199a1a9b1b9c1cb0b131b232b360811b600a86061a8153600a850494508461021757509392505050565b60008072184f03e93ff9f4daa797ed6e38ed64bf6a1f0160401b83106102885772184f03e93ff9f4daa797ed6e38ed64bf6a1f0160401b830492506040015b6d04ee2d6d415b85acef810000000083106102b4576d04ee2d6d415b85acef8100000000830492506020015b662386f26fc1000083106102d257662386f26fc10000830492506010015b6305f5e10083106102ea576305f5e100830492506008015b61271083106102fe57612710830492506004015b60648310610310576064830492506002015b600a831061031c576001015b92915050565b60006020828403121561033457600080fd5b5035919050565b60005b8381101561035657818101518382015260200161033e565b50506000910152565b6000815180845261037781602086016020860161033b565b601f01601f19169290920160200192915050565b60208152600061039e602083018461035f565b9392505050565b634e487b7160e01b600052604160045260246000fd5b60008083601f8401126103cd57600080fd5b50813567ffffffffffffffff8111156103e557600080fd5b6020830191508360208285010111156103fd57600080fd5b9250929050565b6000806000806060858703121561041a57600080fd5b84359350602085013567ffffffffffffffff8082111561043957600080fd5b818701915087601f83011261044d57600080fd5b81358181111561045f5761045f6103a5565b604051601f8201601f19908116603f01168101908382118183101715610487576104876103a5565b816040528281528a60208487010111156104a057600080fd5b8260208601602083013760006020848301015280975050505060408701359150808211156104cd57600080fd5b506104da878288016103bb565b95989497509550505050565b634e487b7160e01b600052601160045260246000fd5b60008261051957634e487b7160e01b600052601260045260246000fd5b500490565b808202811582820484141761031c5761031c6104e6565b8181038181111561031c5761031c6104e6565b8082018082111561031c5761031c6104e6565b6000815161056d81856020860161033b565b9290920192915050565b6001600160f81b031983168152815160009061059a81600185016020870161033b565b919091016001019392505050565b6040815260006105bb604083018561035f565b90508260208301529392505050565b6000602082840312156105dc57600080fd5b5051919050565b81818437506000910190815290565b7f646174613a6170706c69636174696f6e2f6a736f6e2c7b22646573637269707481527f696f6e223a2022537461726b7368656574222c20226e616d65223a202200000060208201528688603d8301376000878201602160f81b603d820152875161066481603e840160208c0161033b565b7f222c22696d616765223a2022646174613a696d6167652f7376672b786d6c2c25603e92909101918201527f334373766725323076696577426f782533442532373025323030253230383925605e8201527f3230353525323725323066696c6c2533442532376e6f6e65253237253230786d607e8201527f6c6e73253344253237687474702533412f2f7777772e77332e6f72672f323030609e8201527f302f737667253237253345253343646566732533452533437374796c6525334560be8201527f253430666f6e742d66616365253230253742666f6e742d66616d696c7925334160de8201527f253230253237507265737325323053746172742532303250253237253342737260fe8201527f6325334125323075726c25323825323764617461253341666f6e742f776f666661011e8201527f32253342626173653634253243643039474d6741424141414141424c3841413861013e8201527f41414141415235774141424b674141454141414141414141414141414141414161015e8201527f4141414141414141414141414150305a4756453063476a41624d42794358675a61017e8201527f6741494e794551674b3846545361517544524141424e67496b41344e4d42434161019e8201527f46687a5148684649623644566c42306a314f4d4253336f4f4953744562732f2f6101be8201527f2f6c4a776356727a47634f30676f684c45484d6369694443434e57695a6761306101de8201527f79625345555954514f6a4b427038546c737a7344526438716174586c333058746101fe8201527f30645a47467952305668444b776c62746c25324272734643773945316e64655961021e8201527f4a74732f37527762305673784d71576c636a6a775445537a2f5568752f77337361023e8201527f33746b6f496d70343464515168576f456d54337579526d70746f7553446b7a5761025e8201527f454138762f3932364a4b7539486f696e6e3673376674336d4965476c7737547161027e8201527f6437456f326a46517849766a5642494a70563269614f62547a68575932314e7461029e8201527f476772687434704d4b3457556a34624c7967542f51253242514c7879253242336102be8201527f6c482f362f6b6275496444497239446a724a496a6f394a7336524d58253242456102de8201527f6b37424f545a6b6d70397a347455524652566656307148504448375a7462364a6102fe8201527f616f6130684c335975616232473373667a72365776394536793569767025324261031e8201527f7135564c74426a514478476f5345304150313762336466376c61726a6525324261033e8201527f73637a6b7241744a334b6657304a342532424b323365744b4b556a383554616f61035e8201527f57473453346158436c427743413268676141652532423658396f696e32304e6261037e8201527f554a7264466767517049686d5247494d30372f7025324277375a7058316c473161039e8201527f6a6a51787073435141423438714445415042346950312f6a39592f4261686a356103be8201527f5943414e302f78714157496852616a6c6e694e654f50396e78433466667932556103de8201527f694843304e47386b686f6f567a6f7459334445417a417a41356b473735337a6a6103fe8201527f4853354d6e6d586b69496a6d54554d36556d4d3025324256346976752f48377861041e8201527f6a364666322f6b343472787a6449324141676742492f4c48416b394a7a35554d61043e8201527f496f4c7755344146455435725a464f33444d616655633061777351434879497061045e8201527f557a546b30784a474a454f6a4e6871436b474570496153474f6a714e466d2f5761047e8201527f4e434e3569636b71434d6e414165564c4d4c655867356971386b365752585a5261049e8201527f326c337042393831427a73475a743225324256696c4342723954494a674b67786104be8201527f365542514446253242566a4b44714e7741414948386a6949664d6e75384b68666104de8201527f584b486f4e3348634134477245786842324155442f795a554d423857547579496104fe8201527f413444634f4b656434397939504249616e426967734d454e38556b30766c547661051e8201527f304a58334e394d795a75544d763573655357413525324238556538504465547261053e8201527f645467474973566d4e33635856586a6463795275633434385866664176506e7361055e8201527f3575324d4531722532426a4731703137767a3849704f416e483444427367793361057e8201527f512f54376b33646d2f3846334232377355694877464631414f6c683055646e4961059e8201527f4471494e5164506355393145786f2f346252696a6a5169704e4e307a4c646c7a6105be8201527f504438496f547449734c38717162746f4f5149514a5a567849705931315073536105de8201527f55533231397a4c585066642f507667765751346372464d2532425769755671706105fe8201527f645a6f4e6475645872632f4745324d4a36656e3575635746694763375274364f61061e8201527f487676354d674c2532427a44733578444277696141315433554877326b63594361063e8201527f312f55666453316645316d37763742346537653350574848786533594f32483561065e8201527f25324241504f5a7965503025324251506553425468793078713965363241486a61067e8201527f6141556842432f364144484c6f476f4f657636412532426867487369317a613861069e8201527f71355a4e4d716a596c575a4d713867354248445574495370574a73526f52544a6106be8201527f56613049305a3957546b5371564b73507a3464586a7648746449684c6e7670746106de8201527f554c4330753542567579414d544b4a513930594b5267546e5769476b6d7153456106fe8201527f714b6d7256685259674b6b335443686255573671456f45637665577a6859535461071e8201527f4c32484e706735452f6d7151393956564467763352475435586d33637a68754c61073e8201527f3972685864316132372f736c5130686959366a643739614f5a43746a6f52687261075e8201527f623136575676514b725734477a786a7869723238494d697a2f7155447973495761077e8201527f7037516a667765347a556437614a735651575179524c554b484b42577938577661079e8201527f45565333584d53353656337757644f442532424638757639645477496d4b722f6107be8201527f5064626d5763775176456641616a7975566a70784e32704f56635769336c38776107de8201527f454c2f6d395070646f55494536253242504b5838315041546d67654f304231736107fe8201527f47454825324261707a353466646d534a7a333741686635366a4c7739756e504561081e8201527f35644d4b3025324237544639563843435466523979664e7355493474557a464661083e8201527f42326e536e384b4f626a64446964554c7034494a6873777878595172595a643661085e8201527f4e76436e55394d445825324252654c6e4d546d6c315a453972306b5077334e3261087e8201527f6752253242736a4573596d4953706b356c31497333594e614a4b6f6e7a65703761089e8201527f56637354316e556b62347048774b5a41796b614b6f43504630506f6d456876496108be8201527f5758656e6f5a767836774f4b313070316c3274546858793850316555776473766108de8201527f53715157766f424d7473674851554a614774494273756861776450545a5378596108fe8201527f707257757734647a7231564755744449465871726f4d4d69597346783857695461091e8201527f336463574b6f376d50554c79715657413972305974524a4c626957766a6e4c2561093e8201527f324272633452646767624e516c514141613264306d616236364d48447074314361095e8201527f6477626b51436253375053445a4d7a3746724f51713165636153304a6c74644161097e8201527f6c44527941587173364130586247707748676b70367572557757416272464d3361099e8201527f75794d764e4b6c344d6c435548537950416d3931776144454a3559595148754a6109be8201527f4d32304b575251737637486b61334770686c533258444b714f4b4245554753316109de8201527f65306b63316f323449494166486c4449794278584a4a656767423369386174566109fe8201527f67434f3064444f5a484a57596a564c416a6a397137765673456e72684b374568610a1e8201527f4c75427a42586d4d674554634531636d61436976504b6f4a766670466c794935610a3e8201527f4d70584234454325324245672f596d303454787843354e6c73596b74646f5951610a5e8201527f55656c38624673456c3748345a36734377622f38626b347458574658504b6a71610a7e8201527f5462526e64336e4c5770394f784941706c664b586747684e6c72443462354a4c610a9e8201527f5a367055753441726756614d366561357844574244476f7a707a4641376e6747610abe8201527f74596334486141775269475576637653653652414177335a576b564f4667764b610ade8201527f46364955696c4d49394964715155345134585264484866736666517770313955610afe8201527f434a49306a5773725433356f5578303678507268473271364d4533554f306c63610b1e8201527f635a557354454351784a44527854444b6c334c4948722f6162546f73686c6466610b3e8201527f51786a364f57745273466e6966444373473674336b426f344e6d424a6d615556610b5e8201527f54636c794951414a4c6a6e723042365a3859464d6e396b397967703752727848610b7e8201527f36766877624a4e41654b4d554436353974386746514a4d5377652f434f624850610b9e8201527f467671484746554e5266253242737245663354584b42725a76676b6369396972610bbe8201527f426d63442f7458616754474358634e68432532424f3539754c706e6673796f71610bde8201527f4c53313238374552776d38666165564f6d3857634437386c5a36594232793938610bfe8201527f5a4c6c4d3972557264324c514e6c324956643454727376675139363079377573610c1e8201527f5965306854506170576a71726c2532425837784665424e54253242315a644a4a610c3e8201527f572532424678745737584e7774634e7a7761672532425256656a6d4a6839656d610c5e8201527f6c495a4b69694e63694b3849554f4d33556a4a376342554e5847505853326c68610c7e8201527f253242687770676f4836567348524f63764569723372585970344c7769435a77610c9e8201527f3176486c43623552314d68623564536e4f326d6e6f475a6f5846315765574757610cbe8201527f6d7a694a314a555534715072306e694a536c4e424331636b4b6d4a6657625877610cde8201527f5577757449547a456d6a776770776142753464525066746a2f4e384143526e64610cfe8201527f616b2f4641674b674c37305058577839767a6b59322532426d34355473496b4c610d1e8201527f3037616f70444e6f676830535262535a534f397a744657516a376e574c676275610d3e8201527f364325324254374b6a44715a3667456e5277674d78306b4c5a77797962514f76610d5e8201527f514130773054782f354a42722f63595a6453574f546a774446364e6f586b796a610d7e8201527f33566a484e4751494e76426a5a734a4a3377466141516d6f5a575a5970416961610d9e8201527f574f466e6e686455524176576b557a77693062677a5a4158796f445545714863610dbe8201527f57307069454c574f777168773365765478444957724e32495371525151454c41610dde8201527f4d32365334486c723548552f48784a43436844424a6b756b6341573856415430610dfe8201527f6770545a544b4e48677a444f7234314751656a4f34677a416e6b577077464752610e1e8201527f43334c625231787a4b434875365635694674674c704f384b51596d5965467868610e3e8201527f4c32643838736469506a2f76306b427a636c51637954735766324d6445394944610e5e8201527f386d5858576a72434b253242354532756e336e6976656973526e726971317548610e7e8201527f594d6a6a69694945304b6466674d6f3163476d6b557254624f30356732737633610e9e8201527f477673525971762f61457736375472644f705435567a4641364131417939634b610ebe8201527f6f44667762544a64445750524e57517354796a6d3772486249734b466b6f4f2f610ede8201527f5a4c4376735966785973337768534338614c49344b765677373773336e347a48610efe8201527f67697061634a6e435362463945727a53357069386343577655597a4f5064327a610f1e8201527f684a2f4750437a53684f453378596c634f3350796164586a54334f6b68706841610f3e8201527f58465853766865544e5355525446565641486f4a6d7949726b6a454b6f517746610f5e8201527f4730303554334158643935764e30446d336d427332786746546c253242513572610f7e8201527f73416a6e744768707a6f62643642374e7a52664e56653130446f4e5639343753610f9e8201527f59646f635252624776636d785456786f61367a717756376d416e773544314745610fbe8201527f5474327a48382532425476514256356e37672f32615768743979794e594c3974610fde8201527f4f42744167384846435945316d4e775432454232467538544968543776565241610ffe8201527f3461587a6e6b3670545a4e6779696f73747749364b654655374c696c7041253261101e8201527f42334234474a794277574d327062466a4876734a3747754f6f616b6a6d46746a61103e8201527f59344c6254396c323239253242453646374c4475577a744c6e333749786b386a61105e8201527f356c42564b33774c7369362f416641756f6a34396c4d6b5653545045396b704761107e8201527f64304c724555534a4941413070596c4178414d642f4e4f46776f4a446458466961109e8201527f307a4f5744422f54464a705666575642574f516274724a556230636c663369256110be8201527f3242575072446f596c65545674564f45306d36793564487444725551776f414c6110de8201527f7455523365585364444d4e785866656a594674764c626c726c4a7777484b2f456110fe8201527f6957504a616b32574b35386e684e6f4c6a615a55475841756f32656f5777464561111e8201527f66612f445334496958717246714779633348726939785132693243352f73357661113e8201527f7a424d30793777334d4473774d3759325247427172464d6778374f696325324261115e8201527f30497a736d5678617a5473305263666a324f3334532f525639503269486f427561117e8201527f6c4b49594244665a46654c53356439725379664a64536c67683268644d72324f61119e8201527f5552334b6e6c506e4f41785477314a384c4d325a776e4671765a745a4a6c78786111be8201527f343873776243743272316b664875443756624831326159383849437456734b786111de8201527f4b742f31726b616c42414d74782f6f6f6d43445059626b556f4c6344624b436a6111fe8201527f7675713953544467746a584744715735564b36686347654f46697a6a3643714c61121e8201527f4f49716b57783477733245504d444e7378253242613661533230384f39784c3061123e8201527f526146586f394241645530706e452532424c695359334b536f4a41525978646e61125e8201527f7a69545a4d706961442f3438496969393834446151357976656378414673735761127e8201527f792f686274696d63253242704c386b35796f70496d4a627948712f6138797a6c61129e8201527f6c37726f4f7a586d786d4163337459585363546b65734d6344324939315a36336112be8201527f6549312f394a627755716b36737863394b52677277574d414e6543314e6e39756112de8201527f4779775473706d5538712532426c5a6d43714d674153363662674841476a514b6112fe8201527f73754a334451416a5235346d356a4c7a5a616e546c62646530253242726e663461131e8201527f385a574138546c32673277414779427748516e3552322532424e6a726542677861133e8201527f626c734e46627554776d6862414a48737a2f72416f61764c4f34317874767a5961135e8201527f4768336e4c4a426b41506a7578424a445248333048426575385567436978464e61137e8201527f437951322f4b253242385157372f6530253242664f2532423436524e5730657961139e8201527f4c726f39446a5467704a4e4d3547385179306c54644f756d73773066715045696113be8201527f393646702532424830634d774e6f376a787a596d6e4e664d5a6d64506c7932706113de8201527f6f7132575065476d67507136474c78504e34536c4b486e7870624f69754c58516113fe8201527f75583155715031676a6f38426136536c55314f416d5267707a7531735444584a61141e8201527f50754d3338546f387130344c324e777970653837327777556741675a6c70386461143e8201527f6b5166397a38544d43624d6b596b3758484375333564375a5a41656f346b5a4b61145e8201527f68784953386945354c546a334c4f6976485a7268394a3870337a4c5a436a776361147e8201527f6970354452694b6e576e49664c33386b4a684d7452776a67553525324256726d61149e8201527f714b6c6739307a376a64732f4238444b646b464c76483353253242376f4838616114be8201527f6c445a6c626734533155583574434d445342324f364b756c7a41344b763067376114de8201527f314251643054464b7733685358696e62374e6c304258725873514e6376436b386114fe8201527f6d6f394f786965783559627a78564e2f6b3738336f48545a495777393079495a61151e8201527f777672697164475473586e54384965705437597946434f4a6741395a3042794961153e8201527f455956735478522f6b73616b324268376f4b767034766e695530364d57317a4261155e8201527f4672746568647a306b6b587951786a426d7965645636644d596545386146787461157e8201527f6575777355466136466c6c54446c716430707a525a77473663467266574d627061159e8201527f384738587a6a66624d253242354658657076356f457273696c363458783663376115be8201527f5841576275696d3666387347494d58666f334a6971476b703333376854536a676115de8201527f65636862364f42472f327a31376a6f6d4469476d253242476c623146553069656115fe8201527f6e7552796977654c576767447a6d4655765545556a5a6f377356544877684f4661161e8201527f504d6b4e737146423977796d6b45307639666d7477453854377135384e594f3761163e8201527f787534623833766e46766c35755378446c472532426b4f51675249644f346a6761165e8201527f7a786a53486a4b4c7332742f6c684f647771766131415744437072763344345361167e8201527f34523741625934544362664b4637744265363554343551347a7a49714433316161169e8201527f79797557716a692532424636585337535439483943314f342f694b366b4775766116be8201527f6b512f664e3537487837456533373435622f76766e2f62482f58253242392f256116de8201527f32426762656d684f416d49705576755157757344764b517578394a44564e734b6116fe8201527f673651636d6b73515341445530346347524c523768466f5a326337785545664761171e8201527f253242776b755459474d764c6a422f6550634936416847686e5735717a45416961173e8201527f4a586377564545775869654e70536c317a6a457253253242435325324248634c61175e8201527f6f52506d7661324d6767412f69794c67536f544a555767733442794149514f3061177e8201527f4f6f705a487656627a6844494c65557155677a7a48492f667950474e7879777361179e8201527f6f796c6865534639577662795363336b4544716b32415636436c4364635535536117be8201527f6e6c4e6e4963394b794d63384c79622532423867484f4a795173466c4c6250526117de8201527f796d6d374a42743349545a544162314732444252496b514b51705451396939626117fe8201527f3665435353387a4d366161525364544b5657524d336663454a4c644b61746e7361181e8201527f724959774e4a55253242733048364461757832775a35686733706c653042474861183e8201527f756b316b4543734859446461496d4b7025324233463542317859763763486b7161185e8201527f644475306a4b645273657a3531376d63563641685148346931484e3173766c6a61187e8201527f5248366845454672682532426e72726d47316e33307a4d346749776d694d774561189e8201527f624b6842545564423141486f582532424b6741517a4f48543946494f71436b526118be8201527f4e4e623273397170496943534f753167576868497343564a73765771457175356118de8201527f47624a514b4e6a61427465394c4f69676368414a7665475773394332323033766118fe8201527f6f6e476c6b77725251323464646732796345646157554456734441785548734961191e8201527f77773665615234464665336d4a416b66426d5a6452395264774a485a6d47645261193e8201527f7950436a706a627a31712f584a34534949446b66384b4b6e6e32456c4b6d794c61195e8201527f69573442513836733151554b2f76426867524e776548766c5968687a7238706361197e8201527f67704b4b6d6f61576a7036426b594f48446c7835734b5647336365474539657661199e8201527f506e773563646667454242676f554946536238587632504553314772446a78456119be8201527f69524b6b697846716a54704d6d544b6b693148726a7a354368517155717845716119de8201527f544c6c4b6c53715571314772547231476a527130717846717a62744f6e5347656119fe8201527f3668374a6d627a4968355a6544696c315a58536a7430774375616b336c6e476f611a1e8201527f5655506f53734e663337394b326a6274716d44674d69485a42665a6c68324839611a3e8201527f75773738495469314a466a585653662f4336634f55667a346f30644178305447611a5e8201527f777448446863666a3443516d49694531444d5a42546b6c4e5a557065566f614f611a7e8201527f6e717633733234314e50503965766574594768435a50576a4979747332706173611a9e8201527f436a25324270556a54596c336b615574374f744b4a6136355850396d356e6367611abe8201527f364e686a685a587032762532426d57724341545a754a303368316b6a55756976611ade8201527f5067596e6a6e35744b4a4f6b326e6362703251414559585a69304b496d50356b611afe8201527f744961466e366b5a397743253237253239253230666f726d6174253238253237611b1e8201527f776f666632253237253239253342666f6e742d7765696768742533412532306e611b3e8201527f6f726d616c253342666f6e742d7374796c652533412532306e6f726d616c2533611b5e8201527f42666f6e742d646973706c617925334125323073776170253342253744746578611b7e8201527f74253230253742666f6e742d66616d696c792533412532302532375072657373611b9e8201527f2532305374617274253230325025323725334266696c6c253341253230776869611bbe8201527f74652537442e76616c7565253230253742666f6e742d73697a65253341253230611bde8201527f313070782533422537442e6e616d65253230253742666f6e742d73697a652533611bfe8201527f412532303470782533422537442533432f7374796c652533452533432f646566611c1e8201527f7325334525334372656374253230776964746825334425323738392532372532611c3e8201527f30686569676874253344253237353525323725323066696c6c25334425323762611c5e8201527f6c61636b2532372532302f253345253343726563742532307825334425323735611c7e8201527f2e3525323725323079253344253237352e352532372532307769647468253344611c9e8201527f2532373738253237253230686569676874253344253237343425323725323066611cbe8201527f696c6c2533442532372532333030303046462532372532302f25334525334374611cde8201527f657874253230746578742d616e63686f722533442532376d6964646c65253237611cfe8201527f2532307825334425323734342e35253237253230792533442532373333253237611d1e8201527f253230636c61737325334425323776616c756525323725334500000000000000611d3e820152612ba5612b9e6129f5611d5784018a61055b565b7f2533432f746578742533452533437265637425323078253344253237352e352581527f323725323079253344253237352e35253237253230776964746825334425323760208201527f373825323725323068656967687425334425323734342532372532307374726f60408201527f6b652533442532372532334646344630412532372532307374726f6b652d776960608201527f647468253344253237332532372532302f25334525334372656374253230782560808201527f334425323733302532372532307925334425323734352e35253237253230776960a08201527f647468253344253237353825323725323068656967687425334425323738253260c08201527f3725323066696c6c2533442532372532334646344630412532372532302f253360e08201527f4525334374657874253230746578742d616e63686f72253344253237656e64256101008201527f32372532307825334425323738372532372532307925334425323735322532376101208201527f253230636c6173732533442532376e616d6525323725334500000000000000006101408201526101580190565b86886105e3565b602160f81b81529050612bbb600182018561055b565b7f2533432f746578742533452533432f737667253345227d00000000000000000081526017019a995050505050505050505056fea26469706673582212206a2c00c13ddb4f1bcd7ee36e36f0c874d7d9dadcf38306eab3610b5a6e7af83464736f6c63430008110033", + "nonce": "0x2", + "accessList": [] + }, + "additionalContracts": [], + "isFixedGasLimit": false + }, + { + "hash": null, + "transactionType": "CREATE", + "contractName": null, + "contractAddress": "0xCf7Ed3AccA5a467e9e704C703E8D87F634fB0Fc9", + "function": null, + "arguments": null, + "transaction": { + "type": "0x02", + "from": "0xf39fd6e51aad88f6f4ce6ab8827279cfffb92266", + "gas": "0x42230", + "value": "0x0", + "data": "0x608060405234801561001057600080fd5b506102cf806100206000396000f3fe608060405234801561001057600080fd5b506004361061004c5760003560e01c80630194db8e14610051578063072bdcc214610076578063a391c15b14610089578063b67d77c51461009c575b600080fd5b61006461005f366004610160565b6100af565b60405190815260200160405180910390f35b610064610084366004610160565b6100ef565b61006461009736600461021e565b610129565b6100646100aa36600461021e565b61013e565b600080805b83518110156100e8578381815181106100cf576100cf610240565b60200260200101518201915080806001019150506100b4565b5092915050565b60006001815b83518110156100e85783818151811061011057610110610240565b60200260200101518202915080806001019150506100f5565b60006101358284610256565b90505b92915050565b60006101358284610278565b634e487b7160e01b600052604160045260246000fd5b6000602080838503121561017357600080fd5b823567ffffffffffffffff8082111561018b57600080fd5b818501915085601f83011261019f57600080fd5b8135818111156101b1576101b161014a565b8060051b604051601f19603f830116810181811085821117156101d6576101d661014a565b6040529182528482019250838101850191888311156101f457600080fd5b938501935b82851015610212578435845293850193928501926101f9565b98975050505050505050565b6000806040838503121561023157600080fd5b50508035926020909101359150565b634e487b7160e01b600052603260045260246000fd5b60008261027357634e487b7160e01b600052601260045260246000fd5b500490565b8181038181111561013857634e487b7160e01b600052601160045260246000fdfea2646970667358221220fcdef23ba4219270ddb3ab764e22a87e229c05e6f1dfc4eeea983fa1a1dac91f64736f6c63430008110033", + "nonce": "0x3", + "accessList": [] + }, + "additionalContracts": [], + "isFixedGasLimit": false + }, + { + "hash": null, + "transactionType": "CREATE", + "contractName": "Evmsheet", + "contractAddress": "0xDc64a140Aa3E981100a9becA4E685f962f0cF6C9", + "function": null, + "arguments": [ + "0x9fE46736679d2D9a65F0992F2272dE9f3c7fa6e0", + "10000000000000000" + ], + "transaction": { + "type": "0x02", + "from": "0xf39fd6e51aad88f6f4ce6ab8827279cfffb92266", + "gas": "0x34bf99", + "value": "0x0", + "data": "0x608060405234801561001057600080fd5b50604051612ed9380380612ed983398101604081905261002f916100b1565b61003833610061565b600280546001600160a01b0319166001600160a01b0393909316929092179091556001556100eb565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b600080604083850312156100c457600080fd5b82516001600160a01b03811681146100db57600080fd5b6020939093015192949293505050565b612ddf806100fa6000396000f3fe608060405260043610620000a95760003560e01c80638da5cb5b116200006c5780638da5cb5b146200016d578063ab2fa65a146200018d578063ae28505e14620001b4578063c56c4cf114620001d9578063f2fde38b14620001fb578063f52be2a2146200022057600080fd5b806303fb31e814620000ae5780631164c83d14620000d5578063145e414714620000ec5780635787cacb146200012e578063715018a61462000155575b600080fd5b348015620000bb57600080fd5b50620000d3620000cd36600462000778565b62000247565b005b620000d3620000e6366004620007e9565b62000273565b348015620000f957600080fd5b50620001116200010b36600462000864565b620004b2565b6040516001600160a01b0390911681526020015b60405180910390f35b3480156200013b57600080fd5b50620001466200054f565b60405162000125919062000891565b3480156200016257600080fd5b50620000d3620005b3565b3480156200017a57600080fd5b506000546001600160a01b031662000111565b3480156200019a57600080fd5b50620001a5620005cb565b604051620001259190620008e0565b348015620001c157600080fd5b5062000111620001d336600462000930565b620005f7565b348015620001e657600080fd5b5060025462000111906001600160a01b031681565b3480156200020857600080fd5b50620000d36200021a36600462000778565b62000622565b3480156200022d57600080fd5b506200023860015481565b60405190815260200162000125565b62000251620006a1565b600280546001600160a01b0319166001600160a01b0392909216919091179055565b60015434146200029d5760405163723a79e360e11b81523460048201526024015b60405180910390fd5b600060405180602001620002b1906200074d565b6020820181038252601f19601f8201166040525090506000828251602084016000f56002546040516356d3163d60e01b81526001600160a01b0391821660048201529192508216906356d3163d90602401600060405180830381600087803b1580156200031d57600080fd5b505af115801562000332573d6000803e3d6000fd5b505060405163c47f002760e01b81526001600160a01b038416925063c47f0027915062000366908a908a906004016200094a565b600060405180830381600087803b1580156200038157600080fd5b505af115801562000396573d6000803e3d6000fd5b5050604051635c26412360e11b81526001600160a01b038416925063b84c82469150620003ca90889088906004016200094a565b600060405180830381600087803b158015620003e557600080fd5b505af1158015620003fa573d6000803e3d6000fd5b505060405163f2fde38b60e01b81523260048201526001600160a01b038416925063f2fde38b9150602401600060405180830381600087803b1580156200044057600080fd5b505af115801562000455573d6000803e3d6000fd5b5050600380546001810182556000919091527fc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b0180546001600160a01b0319166001600160a01b0394909416939093179092555050505050505050565b600060ff60f81b838360405180602001620004cd906200074d565b6020820181038252601f19601f82011660405250805190602001206040516020016200053094939291906001600160f81b031994909416845260609290921b6bffffffffffffffffffffffff191660018401526015830152603582015260550190565b60408051601f1981840301815291905280516020909101209392505050565b60606003805480602002602001604051908101604052809291908181526020018280548015620005a957602002820191906000526020600020905b81546001600160a01b031681526001909101906020018083116200058a575b5050505050905090565b620005bd620006a1565b620005c96000620006fd565b565b606060405180602001620005df906200074d565b601f1982820381018352601f90910116604052919050565b600381815481106200060857600080fd5b6000918252602090912001546001600160a01b0316905081565b6200062c620006a1565b6001600160a01b038116620006935760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b606482015260840162000294565b6200069e81620006fd565b50565b6000546001600160a01b03163314620005c95760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015260640162000294565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b612430806200097a83390190565b80356001600160a01b03811681146200077357600080fd5b919050565b6000602082840312156200078b57600080fd5b62000796826200075b565b9392505050565b60008083601f840112620007b057600080fd5b50813567ffffffffffffffff811115620007c957600080fd5b602083019150836020828501011115620007e257600080fd5b9250929050565b6000806000806000606086880312156200080257600080fd5b853567ffffffffffffffff808211156200081b57600080fd5b6200082989838a016200079d565b909750955060208801359150808211156200084357600080fd5b5062000852888289016200079d565b96999598509660400135949350505050565b600080604083850312156200087857600080fd5b62000883836200075b565b946020939093013593505050565b6020808252825182820181905260009190848201906040850190845b81811015620008d45783516001600160a01b031683529284019291840191600101620008ad565b50909695505050505050565b600060208083528351808285015260005b818110156200090f57858101830151858201604001528201620008f1565b506000604082860101526040601f19601f8301168501019250505092915050565b6000602082840312156200094357600080fd5b5035919050565b60208152816020820152818360408301376000818301604090810191909152601f909201601f1916010191905056fe60806040523480156200001157600080fd5b50604051806040016040528060078152602001660536865657420360cc1b815250604051806040016040528060048152602001630534854360e41b81525062000069620000636200008f60201b60201c565b62000093565b600162000077838262000188565b50600262000086828262000188565b50505062000254565b3390565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b634e487b7160e01b600052604160045260246000fd5b600181811c908216806200010e57607f821691505b6020821081036200012f57634e487b7160e01b600052602260045260246000fd5b50919050565b601f8211156200018357600081815260208120601f850160051c810160208610156200015e5750805b601f850160051c820191505b818110156200017f578281556001016200016a565b5050505b505050565b81516001600160401b03811115620001a457620001a4620000e3565b620001bc81620001b58454620000f9565b8462000135565b602080601f831160018114620001f45760008415620001db5750858301515b600019600386901b1c1916600185901b1785556200017f565b600085815260208120601f198616915b82811015620002255788860151825594840194600190910190840162000204565b5085821015620002445787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b6121cc80620002646000396000f3fe608060405234801561001057600080fd5b50600436106102275760003560e01c8063715018a611610130578063b85d8b85116100b8578063cf0983981161007c578063cf09839814610512578063cfbe95d814610535578063df4ca20614610556578063e985e9c514610576578063f2fde38b146105a457600080fd5b8063b85d8b85146104a4578063b88d4fde146104ce578063b8c368ec146104e1578063c47f0027146104ec578063c87b56dd146104ff57600080fd5b806395d89b41116100ff57806395d89b4114610439578063a22cb46514610441578063b46ebb1214610454578063b6d658e114610467578063b84c82461461049157600080fd5b8063715018a6146103fa578063768d5029146104025780638ada6b0f146104155780638da5cb5b1461042857600080fd5b80631b06443c116101b35780634f6ccce7116101825780634f6ccce71461038157806356d3163d146103a15780636352211e146103b45780636a0abc74146103c757806370a08231146103e757600080fd5b80631b06443c14610335578063206848f61461034857806323b872dd1461035b57806342842e0e1461036e57600080fd5b8063081812fc116101fa578063081812fc146102a1578063095ea7b3146102e2578063172b9eed146102f757806318160ddd1461030a5780631941fd141461031357600080fd5b806301ffc9a71461022c57806302f3c4c91461025457806306fdde03146102745780630715a24a1461027c575b600080fd5b61023f61023a36600461176a565b6105b7565b60405190151581526020015b60405180910390f35b610267610262366004611861565b610609565b60405161024b9190611951565b610267610638565b6102936fffffffffffffffffffffffffffffffff81565b60405190815260200161024b565b6102ca6102af366004611964565b6005602052600090815260409020546001600160a01b031681565b6040516001600160a01b03909116815260200161024b565b6102f56102f036600461197d565b6106c6565b005b6102676103053660046119a9565b6107ad565b61029360075481565b610326610321366004611964565b610875565b60405161024b939291906119de565b6102ca610343366004611a0e565b61092a565b610326610356366004611964565b6109e3565b6102f5610369366004611a2b565b610ae1565b6102f561037c366004611a2b565b610ca8565b61029361038f366004611964565b60086020526000908152604090205481565b6102f56103af366004611a0e565b610da0565b6102ca6103c2366004611964565b610dca565b6103da6103d53660046119a9565b610e1c565b60405161024b9190611a6c565b6102936103f5366004611a0e565b610e60565b6102f5610ec3565b6102f5610410366004611af9565b610ed7565b6009546102ca906001600160a01b031681565b6000546001600160a01b03166102ca565b610267611035565b6102f561044f366004611b63565b611042565b610267610462366004611964565b6110ae565b61047a610475366004611964565b611258565b60408051921515835260208301919091520161024b565b6102f561049f366004611ba1565b611275565b6104b56104b2366004611964565b90565b6040516001600160e01b0319909116815260200161024b565b6102f56104dc366004611be3565b6112c6565b6102ca600160801b81565b6102f56104fa366004611ba1565b6113ae565b61026761050d366004611964565b6113ff565b61023f610520366004611a0e565b600160801b6001600160a01b03919091161090565b61023f610543366004611861565b516001600160a01b0316600160801b1490565b610569610564366004611964565b6114c9565b60405161024b9190611c16565b61023f610584366004611c4d565b600660209081526000928352604080842090915290825290205460ff1681565b6102f56105b2366004611a0e565b611526565b60006301ffc9a760e01b6001600160e01b0319831614806105e857506380ac58cd60e01b6001600160e01b03198316145b806106035750635b5e139f60e01b6001600160e01b03198316145b92915050565b6060816020015160405160200161062291815260200190565b6040516020818303038152906040529050919050565b6001805461064590611c7b565b80601f016020809104026020016040519081016040528092919081815260200182805461067190611c7b565b80156106be5780601f10610693576101008083540402835291602001916106be565b820191906000526020600020905b8154815290600101906020018083116106a157829003601f168201915b505050505081565b6000818152600360205260409020546001600160a01b03163381148061070f57506001600160a01b038116600090815260066020908152604080832033845290915290205460ff165b6107515760405162461bcd60e51b815260206004820152600e60248201526d1393d517d055551213d49256915160921b60448201526064015b60405180910390fd5b60008281526005602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b606060006107ba83610e1c565b9050606060005b825181101561086d576000806107ef8584815181106107e2576107e2611cb5565b6020026020010151611258565b9150915081156108335783610803826110ae565b61080c90611ccb565b60405160200161081d929190611cef565b6040516020818303038152906040529350610858565b6040516108469085908390602001611cef565b60405160208183030381529060405293505b5050808061086590611d27565b9150506107c1565b509392505050565b600a602052600090815260409020805460018201546002830180546001600160a01b039093169391926108a790611c7b565b80601f01602080910402602001604051908101604052809291908181526020018280546108d390611c7b565b80156109205780601f106108f557610100808354040283529160200191610920565b820191906000526020600020905b81548152906001019060200180831161090357829003601f168201915b5050505050905083565b6000600160801b6001600160a01b03831610156109da576000610955836001600160a01b03166110ae565b604051632d737e4960e21b8152909150735fbdb2315678afecb367f032d93f642f64180aa39063b5cdf92490610992908490600090600401611d40565b602060405180830381865af41580156109af573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906109d39190611d62565b9392505050565b5090565b919050565b60008181526003602052604081205481906060906001600160a01b0316610a1057600160801b9250610a2b565b6000848152600a60205260409020546001600160a01b031692505b6000848152600a60205260409020600181015460029091018054859291908190610a5490611c7b565b80601f0160208091040260200160405190810160405280929190818152602001828054610a8090611c7b565b8015610acd5780601f10610aa257610100808354040283529160200191610acd565b820191906000526020600020905b815481529060010190602001808311610ab057829003601f168201915b505050505090509250925092509193909250565b6000818152600360205260409020546001600160a01b03848116911614610b375760405162461bcd60e51b815260206004820152600a60248201526957524f4e475f46524f4d60b01b6044820152606401610748565b6001600160a01b038216610b815760405162461bcd60e51b81526020600482015260116024820152701253959053125117d49150d25412515395607a1b6044820152606401610748565b336001600160a01b0384161480610bbb57506001600160a01b038316600090815260066020908152604080832033845290915290205460ff165b80610bdc57506000818152600560205260409020546001600160a01b031633145b610c195760405162461bcd60e51b815260206004820152600e60248201526d1393d517d055551213d49256915160921b6044820152606401610748565b6001600160a01b0380841660008181526004602090815260408083208054600019019055938616808352848320805460010190558583526003825284832080546001600160a01b03199081168317909155600590925284832080549092169091559251849392917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b610cb3838383610ae1565b6001600160a01b0382163b1580610d5c5750604051630a85bd0160e11b8082523360048301526001600160a01b03858116602484015260448301849052608060648401526000608484015290919084169063150b7a029060a4016020604051808303816000875af1158015610d2c573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610d509190611d7b565b6001600160e01b031916145b610d9b5760405162461bcd60e51b815260206004820152601060248201526f155394d0519157d49150d2541251539560821b6044820152606401610748565b505050565b610da861159f565b600980546001600160a01b0319166001600160a01b0392909216919091179055565b6000818152600360205260409020546001600160a01b0316806109de5760405162461bcd60e51b815260206004820152600a6024820152691393d517d3525395115160b21b6044820152606401610748565b60608082516040519150602081048252602082016020850160005b83811015610e4f578181015183820152602001610e37565b505050810160200160405292915050565b60006001600160a01b038216610ea75760405162461bcd60e51b815260206004820152600c60248201526b5a45524f5f4144445245535360a01b6044820152606401610748565b506001600160a01b031660009081526004602052604090205490565b610ecb61159f565b610ed560006115f9565b565b6000858152600360205260409020546001600160a01b0316610f2f57610efd3286611649565b60078054600090815260086020526040812087905581546001929190610f24908490611d98565b90915550610f889050565b6000858152600360205260409020546001600160a01b03163214610f8857600085815260036020526040908190205490516324f3f02560e21b81526001600160a01b039091166004820152326024820152604401610748565b6040518060600160405280856001600160a01b0316815260200184815260200183838080601f0160208091040260200160405190810160405280939291908181526020018383808284376000920182905250939094525050878152600a6020908152604091829020845181546001600160a01b0319166001600160a01b0390911617815590840151600182015590830151909150600282019061102b9082611df9565b5050505050505050565b6002805461064590611c7b565b3360008181526006602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b6000818152600a6020908152604080832081516060818101845282546001600160a01b0316825260018301549482019490945260028201805494959491938401916110f890611c7b565b80601f016020809104026020016040519081016040528092919081815260200182805461112490611c7b565b80156111715780601f1061114657610100808354040283529160200191611171565b820191906000526020600020905b81548152906001019060200180831161115457829003601f168201915b505050505081525050905061119381516001600160a01b0316600160801b1490565b156111a1576109d381610609565b60006111b0826000015161092a565b905060006111bf836020015190565b905060006111d084604001516107ad565b90506000836001600160a01b031683836040516020016111f1929190611eb9565b60408051601f198184030181529082905261120b91611eea565b600060405180830381855afa9150503d8060008114611246576040519150601f19603f3d011682016040523d82523d6000602084013e61124b565b606091505b5098975050505050505050565b600080611266600284611f06565b60019081149493901c92915050565b61127d61159f565b7f8dca0271872d00b3de3abafca544c52fcd7d512dd852c9894fa2c118ac759a93600283836040516112b193929190611fce565b60405180910390a16002610d9b828483611ffe565b6112d1858585610ae1565b6001600160a01b0384163b15806113685750604051630a85bd0160e11b808252906001600160a01b0386169063150b7a02906113199033908a908990899089906004016120be565b6020604051808303816000875af1158015611338573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061135c9190611d7b565b6001600160e01b031916145b6113a75760405162461bcd60e51b815260206004820152601060248201526f155394d0519157d49150d2541251539560821b6044820152606401610748565b5050505050565b6113b661159f565b7fb65b7b5ea384affd30f77f842e057d29dd1b13f133adf69a724a8105b164ab75600183836040516113ea93929190611fce565b60405180910390a16001610d9b828483611ffe565b6000818152600360205260409020546060906001600160a01b03168061143b57604051630243d1a960e21b815260048101849052602401610748565b6000611446846110ae565b6009546040516328de0f2f60e01b81529192506001600160a01b0316906328de0f2f9061147c90879085906001906004016120fd565b600060405180830381865afa158015611499573d6000803e3d6000fd5b505050506040513d6000823e601f3d908101601f191682016040526114c19190810190612128565b949350505050565b604080516060808201835260008083526020830181905292820152906114ee836110ae565b6040805160608101825285815260009586526003602090815295829020546001600160a01b0316958101959095528401525090919050565b61152e61159f565b6001600160a01b0381166115935760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610748565b61159c816115f9565b50565b6000546001600160a01b03163314610ed55760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610748565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b6001600160a01b0382166116935760405162461bcd60e51b81526020600482015260116024820152701253959053125117d49150d25412515395607a1b6044820152606401610748565b6000818152600360205260409020546001600160a01b0316156116e95760405162461bcd60e51b815260206004820152600e60248201526d1053149150511657d3525395115160921b6044820152606401610748565b6001600160a01b038216600081815260046020908152604080832080546001019055848352600390915280822080546001600160a01b0319168417905551839291907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b6001600160e01b03198116811461159c57600080fd5b60006020828403121561177c57600080fd5b81356109d381611754565b634e487b7160e01b600052604160045260246000fd5b604051601f8201601f1916810167ffffffffffffffff811182821017156117c6576117c6611787565b604052919050565b6001600160a01b038116811461159c57600080fd5b600067ffffffffffffffff8211156117fd576117fd611787565b50601f01601f191660200190565b600082601f83011261181c57600080fd5b813561182f61182a826117e3565b61179d565b81815284602083860101111561184457600080fd5b816020850160208301376000918101602001919091529392505050565b60006020828403121561187357600080fd5b813567ffffffffffffffff8082111561188b57600080fd5b908301906060828603121561189f57600080fd5b6040516060810181811083821117156118ba576118ba611787565b60405282356118c8816117ce565b8152602083810135908201526040830135828111156118e657600080fd5b6118f28782860161180b565b60408301525095945050505050565b60005b8381101561191c578181015183820152602001611904565b50506000910152565b6000815180845261193d816020860160208601611901565b601f01601f19169290920160200192915050565b6020815260006109d36020830184611925565b60006020828403121561197657600080fd5b5035919050565b6000806040838503121561199057600080fd5b823561199b816117ce565b946020939093013593505050565b6000602082840312156119bb57600080fd5b813567ffffffffffffffff8111156119d257600080fd5b6114c18482850161180b565b60018060a01b0384168152826020820152606060408201526000611a056060830184611925565b95945050505050565b600060208284031215611a2057600080fd5b81356109d3816117ce565b600080600060608486031215611a4057600080fd5b8335611a4b816117ce565b92506020840135611a5b816117ce565b929592945050506040919091013590565b6020808252825182820181905260009190848201906040850190845b81811015611aa457835183529284019291840191600101611a88565b50909695505050505050565b60008083601f840112611ac257600080fd5b50813567ffffffffffffffff811115611ada57600080fd5b602083019150836020828501011115611af257600080fd5b9250929050565b600080600080600060808688031215611b1157600080fd5b853594506020860135611b23816117ce565b935060408601359250606086013567ffffffffffffffff811115611b4657600080fd5b611b5288828901611ab0565b969995985093965092949392505050565b60008060408385031215611b7657600080fd5b8235611b81816117ce565b915060208301358015158114611b9657600080fd5b809150509250929050565b60008060208385031215611bb457600080fd5b823567ffffffffffffffff811115611bcb57600080fd5b611bd785828601611ab0565b90969095509350505050565b600080600080600060808688031215611bfb57600080fd5b8535611c06816117ce565b94506020860135611b23816117ce565b602081528151602082015260018060a01b036020830151166040820152600060408301516060808401526114c16080840182611925565b60008060408385031215611c6057600080fd5b8235611c6b816117ce565b91506020830135611b96816117ce565b600181811c90821680611c8f57607f821691505b602082108103611caf57634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052603260045260246000fd5b80516020808301519190811015611caf5760001960209190910360031b1b16919050565b60008351611d01818460208801611901565b9190910191825250602001919050565b634e487b7160e01b600052601160045260246000fd5b600060018201611d3957611d39611d11565b5060010190565b604081526000611d536040830185611925565b90508260208301529392505050565b600060208284031215611d7457600080fd5b5051919050565b600060208284031215611d8d57600080fd5b81516109d381611754565b8082018082111561060357610603611d11565b601f821115610d9b57600081815260208120601f850160051c81016020861015611dd25750805b601f850160051c820191505b81811015611df157828155600101611dde565b505050505050565b815167ffffffffffffffff811115611e1357611e13611787565b611e2781611e218454611c7b565b84611dab565b602080601f831160018114611e5c5760008415611e445750858301515b600019600386901b1c1916600185901b178555611df1565b600085815260208120601f198616915b82811015611e8b57888601518255948401946001909101908401611e6c565b5085821015611ea95787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b6001600160e01b0319831681528151600090611edc816004850160208701611901565b919091016004019392505050565b60008251611efc818460208701611901565b9190910192915050565b600082611f2357634e487b7160e01b600052601260045260246000fd5b500690565b60008154611f3581611c7b565b808552602060018381168015611f525760018114611f6c57611f9a565b60ff1985168884015283151560051b880183019550611f9a565b866000528260002060005b85811015611f925781548a8201860152908301908401611f77565b890184019650505b505050505092915050565b81835281816020850137506000828201602090810191909152601f909101601f19169091010190565b604081526000611fe16040830186611f28565b8281036020840152611ff4818587611fa5565b9695505050505050565b67ffffffffffffffff83111561201657612016611787565b61202a836120248354611c7b565b83611dab565b6000601f84116001811461205e57600085156120465750838201355b600019600387901b1c1916600186901b1783556113a7565b600083815260209020601f19861690835b8281101561208f578685013582556020948501946001909201910161206f565b50868210156120ac5760001960f88860031b161c19848701351681555b505060018560011b0183555050505050565b6001600160a01b03868116825285166020820152604081018490526080606082018190526000906120f29083018486611fa5565b979650505050505050565b8381526060602082015260006121166060830185611925565b8281036040840152611ff48185611f28565b60006020828403121561213a57600080fd5b815167ffffffffffffffff81111561215157600080fd5b8201601f8101841361216257600080fd5b805161217061182a826117e3565b81815285602083850101111561218557600080fd5b611a0582602083016020860161190156fea26469706673582212203fc548aa4f22e6f4c01757ba3f2e0383630418b3d17601758718ab19a4d9918d64736f6c63430008110033a26469706673582212207932e8c793f9a96d9606a8907a6671f54c0fb1ed5a763048e13b429274e7706c64736f6c634300081100330000000000000000000000009fe46736679d2d9a65f0992f2272de9f3c7fa6e0000000000000000000000000000000000000000000000000002386f26fc10000", + "nonce": "0x4", + "accessList": [] + }, + "additionalContracts": [], + "isFixedGasLimit": false + } + ], + "receipts": [], + "libraries": [], + "pending": [], + "returns": {}, + "timestamp": 1689178069, + "chain": 1263227476, + "multi": false, + "commit": "24c72b7" +} \ No newline at end of file diff --git a/packages/starksheet-solidity/broadcast/Evmsheet.s.sol/1263227476/run-1689178076.json b/packages/starksheet-solidity/broadcast/Evmsheet.s.sol/1263227476/run-1689178076.json new file mode 100644 index 00000000..c93f03a8 --- /dev/null +++ b/packages/starksheet-solidity/broadcast/Evmsheet.s.sol/1263227476/run-1689178076.json @@ -0,0 +1,112 @@ +{ + "transactions": [ + { + "hash": "0x030c68fd0a213dc6a8a9fc6cffeff1a98228e34ca37ff69f185df015fe1ab3f1", + "transactionType": "CREATE", + "contractName": "Bytes", + "contractAddress": "0x5FbDB2315678afecb367f032d93F642f64180aa3", + "function": null, + "arguments": null, + "transaction": { + "type": "0x00", + "from": "0xf39fd6e51aad88f6f4ce6ab8827279cfffb92266", + "gas": "0x1387ed", + "data": "0x6110d661003a600b82828239805160001a60731461002d57634e487b7160e01b600052600060045260246000fd5b30600052607381538281f3fe73000000000000000000000000000000000000000030146080604052600436106101625760003560e01c8063a5eb31ee116100cd578063d1ffb56111610086578063d1ffb561146103fb578063d442584f1461042b578063e004139614610454578063f1142fb314610474578063f647f8fb14610487578063f83b670f146104b257600080fd5b8063a5eb31ee14610344578063a8d8f00f1461036b578063b5cdf92414610396578063b63711df146103a9578063be8b3430146103bc578063c29616bd146103cf57600080fd5b80635ef849301161011f5780635ef8493014610241578063913c97b41461026b57806397e6175c1461029f57806399dd9bd7146102cb5780639ae4c3d1146102ec5780639cee499e1461031857600080fd5b8063042aa0841461016757806305d3bb74146101985780631a7431ef146101c0578063235266d2146101e357806348137709146101f65780634d66a2ae1461021b575b600080fd5b61017a610175366004610ec0565b6104de565b6040516001600160d01b031990911681526020015b60405180910390f35b6101ab6101a6366004610ec0565b610540565b60405163ffffffff909116815260200161018f565b6101d36101ce366004610f05565b61059d565b604051901515815260200161018f565b6101d36101f1366004610f4c565b610652565b610209610204366004610ec0565b6106b5565b60405160ff909116815260200161018f565b61022e610229366004610fa6565b610711565b60405161ffff909116815260200161018f565b61025461024f366004610ec0565b61071e565b60405165ffffffffffff909116815260200161018f565b61027e610279366004610ec0565b610772565b6040516fffffffffffffffffffffffffffffffff909116815260200161018f565b6102b26102ad366004610ec0565b6107d0565b6040516001600160a01b0319909116815260200161018f565b6102de6102d9366004610ec0565b61082e565b60405190815260200161018f565b6102ff6102fa366004610ec0565b61088c565b60405167ffffffffffffffff909116815260200161018f565b61032b610326366004610ec0565b6108e9565b6040516001600160d81b0319909116815260200161018f565b610357610352366004610ec0565b610946565b60405162ffffff909116815260200161018f565b61037e610379366004610ec0565b6109a3565b60405166ffffffffffffff909116815260200161018f565b6102de6103a4366004610ec0565b610a00565b6102ff6103b7366004610ec0565b610a55565b61022e6103ca366004610ec0565b610aa9565b6103e26103dd366004610ec0565b610b06565b6040516001600160c81b0319909116815260200161018f565b61040e610409366004610ec0565b610b5a565b6040516bffffffffffffffffffffffff909116815260200161018f565b61043e610439366004610ec0565b610bae565b60405164ffffffffff909116815260200161018f565b610467610462366004610fe3565b610c02565b60405161018f9190611031565b6102b2610482366004610ec0565b610d0f565b61049a610495366004610ec0565b610d64565b6040516001600160a01b03909116815260200161018f565b6104c56104c0366004610ec0565b610dc9565b6040516001600160f81b0319909116815260200161018f565b60006104eb82600661107f565b835110156105375760405162461bcd60e51b8152602060048201526014602482015273746f4279746573365f6f75744f66426f756e647360601b60448201526064015b60405180910390fd5b50016006015190565b600061054d82600461107f565b835110156105945760405162461bcd60e51b8152602060048201526014602482015273746f55696e7433325f6f75744f66426f756e647360601b604482015260640161052e565b50016004015190565b600080600190508354600260018083161561010002038216048451808214600181146105cc5760009450610644565b821561064457602083106001811461062957600189600052602060002060208a018581015b600284828410010361062057815183541461060f5760009950600093505b6001830192506020820191506105f1565b50505050610642565b6101008086040294506020880151851461064257600095505b505b509293505050505b92915050565b81518151600091600191811480831461066e57600092506106ab565b600160208701838101602088015b60028483851001036106a657805183511461069a5760009650600093505b6020928301920161067c565b505050505b5090949350505050565b60006106c282600161107f565b835110156107085760405162461bcd60e51b8152602060048201526013602482015272746f55696e74385f6f75744f66426f756e647360681b604482015260640161052e565b50016001015190565b600061064c826000610aa9565b600061072b82600661107f565b835110156105375760405162461bcd60e51b8152602060048201526014602482015273746f55696e7434385f6f75744f66426f756e647360601b604482015260640161052e565b600061077f82601061107f565b835110156107c75760405162461bcd60e51b8152602060048201526015602482015274746f55696e743132385f6f75744f66426f756e647360581b604482015260640161052e565b50016010015190565b60006107dd82600c61107f565b835110156108255760405162461bcd60e51b8152602060048201526015602482015274746f427974657331325f6f75744f66426f756e647360581b604482015260640161052e565b5001600c015190565b600061083b82602061107f565b835110156108835760405162461bcd60e51b8152602060048201526015602482015274746f427974657333325f6f75744f66426f756e647360581b604482015260640161052e565b50016020015190565b600061089982600861107f565b835110156108e05760405162461bcd60e51b8152602060048201526014602482015273746f55696e7436345f6f75744f66426f756e647360601b604482015260640161052e565b50016008015190565b60006108f682600561107f565b8351101561093d5760405162461bcd60e51b8152602060048201526014602482015273746f4279746573355f6f75744f66426f756e647360601b604482015260640161052e565b50016005015190565b600061095382600361107f565b8351101561099a5760405162461bcd60e51b8152602060048201526014602482015273746f55696e7432345f6f75744f66426f756e647360601b604482015260640161052e565b50016003015190565b60006109b082600761107f565b835110156109f75760405162461bcd60e51b8152602060048201526014602482015273746f55696e7435365f6f75744f66426f756e647360601b604482015260640161052e565b50016007015190565b6000610a0d82602061107f565b835110156108835760405162461bcd60e51b8152602060048201526015602482015274746f55696e743235365f6f75744f66426f756e647360581b604482015260640161052e565b6000610a6282600861107f565b835110156108e05760405162461bcd60e51b8152602060048201526014602482015273746f4279746573385f6f75744f66426f756e647360601b604482015260640161052e565b6000610ab682600261107f565b83511015610afd5760405162461bcd60e51b8152602060048201526014602482015273746f55696e7431365f6f75744f66426f756e647360601b604482015260640161052e565b50016002015190565b6000610b1382600761107f565b835110156109f75760405162461bcd60e51b8152602060048201526014602482015273746f4279746573375f6f75744f66426f756e647360601b604482015260640161052e565b6000610b6782600c61107f565b835110156108255760405162461bcd60e51b8152602060048201526014602482015273746f55696e7439365f6f75744f66426f756e647360601b604482015260640161052e565b6000610bbb82600561107f565b8351101561093d5760405162461bcd60e51b8152602060048201526014602482015273746f55696e7434305f6f75744f66426f756e647360601b604482015260640161052e565b606081610c1081601f61107f565b1015610c4f5760405162461bcd60e51b815260206004820152600e60248201526d736c6963655f6f766572666c6f7760901b604482015260640161052e565b610c59828461107f565b84511015610c9d5760405162461bcd60e51b8152602060048201526011602482015270736c6963655f6f75744f66426f756e647360781b604482015260640161052e565b606082158015610cbc5760405191506000825260208201604052610d06565b6040519150601f8416801560200281840101858101878315602002848b0101015b81831015610cf5578051835260209283019201610cdd565b5050858452601f01601f1916604052505b50949350505050565b6000610d1c82601061107f565b835110156107c75760405162461bcd60e51b8152602060048201526015602482015274746f427974657331365f6f75744f66426f756e647360581b604482015260640161052e565b6000610d7182601461107f565b83511015610db95760405162461bcd60e51b8152602060048201526015602482015274746f416464726573735f6f75744f66426f756e647360581b604482015260640161052e565b500160200151600160601b900490565b6000610dd682600161107f565b835110156107085760405162461bcd60e51b8152602060048201526014602482015273746f4279746573315f6f75744f66426f756e647360601b604482015260640161052e565b634e487b7160e01b600052604160045260246000fd5b600082601f830112610e4457600080fd5b813567ffffffffffffffff80821115610e5f57610e5f610e1d565b604051601f8301601f19908116603f01168101908282118183101715610e8757610e87610e1d565b81604052838152866020858801011115610ea057600080fd5b836020870160208301376000602085830101528094505050505092915050565b60008060408385031215610ed357600080fd5b823567ffffffffffffffff811115610eea57600080fd5b610ef685828601610e33565b95602094909401359450505050565b60008060408385031215610f1857600080fd5b82359150602083013567ffffffffffffffff811115610f3657600080fd5b610f4285828601610e33565b9150509250929050565b60008060408385031215610f5f57600080fd5b823567ffffffffffffffff80821115610f7757600080fd5b610f8386838701610e33565b93506020850135915080821115610f9957600080fd5b50610f4285828601610e33565b600060208284031215610fb857600080fd5b813567ffffffffffffffff811115610fcf57600080fd5b610fdb84828501610e33565b949350505050565b600080600060608486031215610ff857600080fd5b833567ffffffffffffffff81111561100f57600080fd5b61101b86828701610e33565b9660208601359650604090950135949350505050565b600060208083528351808285015260005b8181101561105e57858101830151858201604001528201611042565b506000604082860101526040601f19601f8301168501019250505092915050565b8082018082111561064c57634e487b7160e01b600052601160045260246000fdfea26469706673582212205bdf5bc4551862519f5370e0dcec38eefbbbe11b6a5bf19ce2846b4f8831a5dc64736f6c63430008110033", + "nonce": "0x0" + }, + "additionalContracts": [], + "isFixedGasLimit": false + }, + { + "hash": "0x01c6eb7c01a0621ca049c2e22b2eccee52cd6af087ff9db93a13e4f3de2ac66a", + "transactionType": "CREATE", + "contractName": "MultiSendCallOnly", + "contractAddress": "0xe7f1725E7734CE288F8367e1Bb143E90bb3F0512", + "function": null, + "arguments": null, + "transaction": { + "type": "0x00", + "from": "0xf39fd6e51aad88f6f4ce6ab8827279cfffb92266", + "gas": "0x2e5c4", + "value": "0x0", + "data": "0x608060405234801561001057600080fd5b506101ae806100206000396000f3fe60806040526004361061001e5760003560e01c80638d80ff0a14610023575b600080fd5b6100366100313660046100c7565b610038565b005b805160205b818110156100ac578083015160f81c6001820184015160601c601583018501516035840186015160558501870160008560008114610082576001811461001e5761008e565b6000808585888a5af191505b508061009957600080fd5b505080605501850194505050505061003d565b505050565b634e487b7160e01b600052604160045260246000fd5b6000602082840312156100d957600080fd5b813567ffffffffffffffff808211156100f157600080fd5b818401915084601f83011261010557600080fd5b813581811115610117576101176100b1565b604051601f8201601f19908116603f0116810190838211818310171561013f5761013f6100b1565b8160405282815287602084870101111561015857600080fd5b82602086016020830137600092810160200192909252509594505050505056fea2646970667358221220c15490bbb756a4c3c49d6335b2e81d2d098647b0ea70174c2279f199b1d0800364736f6c63430008110033", + "nonce": "0x1" + }, + "additionalContracts": [], + "isFixedGasLimit": false + }, + { + "hash": "0x03e703754fab191f461e3372a6921dd773d04d1d84c3b272a00cdd3047b521e9", + "transactionType": "CREATE", + "contractName": "BasicCellRenderer", + "contractAddress": "0x9fE46736679d2D9a65F0992F2272dE9f3c7fa6e0", + "function": null, + "arguments": null, + "transaction": { + "type": "0x00", + "from": "0xf39fd6e51aad88f6f4ce6ab8827279cfffb92266", + "gas": "0x3180ad", + "value": "0x0", + "data": "0x608060405234801561001057600080fd5b50612c25806100206000396000f3fe608060405234801561001057600080fd5b50600436106100365760003560e01c806306d4cd8b1461003b57806328de0f2f14610064575b600080fd5b61004e610049366004610322565b610077565b60405161005b919061038b565b60405180910390f35b61004e610072366004610404565b6100f1565b60606000610086600f846104fc565b90506000610095600f8361051e565b61009f9085610535565b905060006100ae826041610548565b60f81b9050806100c76100c2856001610548565b6101b6565b6040516020016100d8929190610577565b6040516020818303038152906040529350505050919050565b606060006100fe86610077565b905083838261018388735fbdb2315678afecb367f032d93f642f64180aa363b5cdf924909160006040518363ffffffff1660e01b81526004016101429291906105a8565b602060405180830381865af415801561015f573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906100c291906105ca565b87878660405160200161019c97969594939291906105f2565b604051602081830303815290604052915050949350505050565b606060006101c383610249565b600101905060008167ffffffffffffffff8111156101e3576101e36103a5565b6040519080825280601f01601f19166020018201604052801561020d576020820181803683370190505b5090508181016020015b600019016f181899199a1a9b1b9c1cb0b131b232b360811b600a86061a8153600a850494508461021757509392505050565b60008072184f03e93ff9f4daa797ed6e38ed64bf6a1f0160401b83106102885772184f03e93ff9f4daa797ed6e38ed64bf6a1f0160401b830492506040015b6d04ee2d6d415b85acef810000000083106102b4576d04ee2d6d415b85acef8100000000830492506020015b662386f26fc1000083106102d257662386f26fc10000830492506010015b6305f5e10083106102ea576305f5e100830492506008015b61271083106102fe57612710830492506004015b60648310610310576064830492506002015b600a831061031c576001015b92915050565b60006020828403121561033457600080fd5b5035919050565b60005b8381101561035657818101518382015260200161033e565b50506000910152565b6000815180845261037781602086016020860161033b565b601f01601f19169290920160200192915050565b60208152600061039e602083018461035f565b9392505050565b634e487b7160e01b600052604160045260246000fd5b60008083601f8401126103cd57600080fd5b50813567ffffffffffffffff8111156103e557600080fd5b6020830191508360208285010111156103fd57600080fd5b9250929050565b6000806000806060858703121561041a57600080fd5b84359350602085013567ffffffffffffffff8082111561043957600080fd5b818701915087601f83011261044d57600080fd5b81358181111561045f5761045f6103a5565b604051601f8201601f19908116603f01168101908382118183101715610487576104876103a5565b816040528281528a60208487010111156104a057600080fd5b8260208601602083013760006020848301015280975050505060408701359150808211156104cd57600080fd5b506104da878288016103bb565b95989497509550505050565b634e487b7160e01b600052601160045260246000fd5b60008261051957634e487b7160e01b600052601260045260246000fd5b500490565b808202811582820484141761031c5761031c6104e6565b8181038181111561031c5761031c6104e6565b8082018082111561031c5761031c6104e6565b6000815161056d81856020860161033b565b9290920192915050565b6001600160f81b031983168152815160009061059a81600185016020870161033b565b919091016001019392505050565b6040815260006105bb604083018561035f565b90508260208301529392505050565b6000602082840312156105dc57600080fd5b5051919050565b81818437506000910190815290565b7f646174613a6170706c69636174696f6e2f6a736f6e2c7b22646573637269707481527f696f6e223a2022537461726b7368656574222c20226e616d65223a202200000060208201528688603d8301376000878201602160f81b603d820152875161066481603e840160208c0161033b565b7f222c22696d616765223a2022646174613a696d6167652f7376672b786d6c2c25603e92909101918201527f334373766725323076696577426f782533442532373025323030253230383925605e8201527f3230353525323725323066696c6c2533442532376e6f6e65253237253230786d607e8201527f6c6e73253344253237687474702533412f2f7777772e77332e6f72672f323030609e8201527f302f737667253237253345253343646566732533452533437374796c6525334560be8201527f253430666f6e742d66616365253230253742666f6e742d66616d696c7925334160de8201527f253230253237507265737325323053746172742532303250253237253342737260fe8201527f6325334125323075726c25323825323764617461253341666f6e742f776f666661011e8201527f32253342626173653634253243643039474d6741424141414141424c3841413861013e8201527f41414141415235774141424b674141454141414141414141414141414141414161015e8201527f4141414141414141414141414150305a4756453063476a41624d42794358675a61017e8201527f6741494e794551674b3846545361517544524141424e67496b41344e4d42434161019e8201527f46687a5148684649623644566c42306a314f4d4253336f4f4953744562732f2f6101be8201527f2f6c4a776356727a47634f30676f684c45484d6369694443434e57695a6761306101de8201527f79625345555954514f6a4b427038546c737a7344526438716174586c333058746101fe8201527f30645a47467952305668444b776c62746c25324272734643773945316e64655961021e8201527f4a74732f37527762305673784d71576c636a6a775445537a2f5568752f77337361023e8201527f33746b6f496d70343464515168576f456d54337579526d70746f7553446b7a5761025e8201527f454138762f3932364a4b7539486f696e6e3673376674336d4965476c7737547161027e8201527f6437456f326a46517849766a5642494a70563269614f62547a68575932314e7461029e8201527f476772687434704d4b3457556a34624c7967542f51253242514c7879253242336102be8201527f6c482f362f6b6275496444497239446a724a496a6f394a7336524d58253242456102de8201527f6b37424f545a6b6d70397a347455524652566656307148504448375a7462364a6102fe8201527f616f6130684c335975616232473373667a72365776394536793569767025324261031e8201527f7135564c74426a514478476f5345304150313762336466376c61726a6525324261033e8201527f73637a6b7241744a334b6657304a342532424b323365744b4b556a383554616f61035e8201527f57473453346158436c427743413268676141652532423658396f696e32304e6261037e8201527f554a7264466767517049686d5247494d30372f7025324277375a7058316c473161039e8201527f6a6a51787073435141423438714445415042346950312f6a39592f4261686a356103be8201527f5943414e302f78714157496852616a6c6e694e654f50396e78433466667932556103de8201527f694843304e47386b686f6f567a6f7459334445417a417a41356b473735337a6a6103fe8201527f4853354d6e6d586b69496a6d54554d36556d4d3025324256346976752f48377861041e8201527f6a364666322f6b343472787a6449324141676742492f4c48416b394a7a35554d61043e8201527f496f4c7755344146455435725a464f33444d616655633061777351434879497061045e8201527f557a546b30784a474a454f6a4e6871436b474570496153474f6a714e466d2f5761047e8201527f4e434e3569636b71434d6e414165564c4d4c655867356971386b365752585a5261049e8201527f326c337042393831427a73475a743225324256696c4342723954494a674b67786104be8201527f365542514446253242566a4b44714e7741414948386a6949664d6e75384b68666104de8201527f584b486f4e3348634134477245786842324155442f795a554d423857547579496104fe8201527f413444634f4b656434397939504249616e426967734d454e38556b30766c547661051e8201527f304a58334e394d795a75544d763573655357413525324238556538504465547261053e8201527f645467474973566d4e33635856586a6463795275633434385866664176506e7361055e8201527f3575324d4531722532426a4731703137767a3849704f416e483444427367793361057e8201527f512f54376b33646d2f3846334232377355694877464631414f6c683055646e4961059e8201527f4471494e5164506355393145786f2f346252696a6a5169704e4e307a4c646c7a6105be8201527f504438496f547449734c38717162746f4f5149514a5a567849705931315073536105de8201527f55533231397a4c585066642f507667765751346372464d2532425769755671706105fe8201527f645a6f4e6475645872632f4745324d4a36656e3575635746694763375274364f61061e8201527f487676354d674c2532427a44733578444277696141315433554877326b63594361063e8201527f312f55666453316645316d37763742346537653350574848786533594f32483561065e8201527f25324241504f5a7965503025324251506553425468793078713965363241486a61067e8201527f6141556842432f364144484c6f476f4f657636412532426867487369317a613861069e8201527f71355a4e4d716a596c575a4d713867354248445574495370574a73526f52544a6106be8201527f56613049305a3957546b5371564b73507a3464586a7648746449684c6e7670746106de8201527f554c4330753542567579414d544b4a513930594b5267546e5769476b6d7153456106fe8201527f714b6d7256685259674b6b335443686255573671456f45637665577a6859535461071e8201527f4c32484e706735452f6d7151393956564467763352475435586d33637a68754c61073e8201527f3972685864316132372f736c5130686959366a643739614f5a43746a6f52687261075e8201527f623136575676514b725734477a786a7869723238494d697a2f7155447973495761077e8201527f7037516a667765347a556437614a735651575179524c554b484b42577938577661079e8201527f45565333584d53353656337757644f442532424638757639645477496d4b722f6107be8201527f5064626d5763775176456641616a7975566a70784e32704f56635769336c38776107de8201527f454c2f6d395070646f55494536253242504b5838315041546d67654f304231736107fe8201527f47454825324261707a353466646d534a7a333741686635366a4c7739756e504561081e8201527f35644d4b3025324237544639563843435466523979664e7355493474557a464661083e8201527f42326e536e384b4f626a64446964554c7034494a6873777878595172595a643661085e8201527f4e76436e55394d445825324252654c6e4d546d6c315a453972306b5077334e3261087e8201527f6752253242736a4573596d4953706b356c31497333594e614a4b6f6e7a65703761089e8201527f56637354316e556b62347048774b5a41796b614b6f43504630506f6d456876496108be8201527f5758656e6f5a767836774f4b313070316c3274546858793850316555776473766108de8201527f53715157766f424d7473674851554a614774494273756861776450545a5378596108fe8201527f707257757734647a7231564755744449465871726f4d4d69597346783857695461091e8201527f336463574b6f376d50554c79715657413972305974524a4c626957766a6e4c2561093e8201527f324272633452646767624e516c514141613264306d616236364d48447074314361095e8201527f6477626b51436253375053445a4d7a3746724f51713165636153304a6c74644161097e8201527f6c44527941587173364130586247707748676b70367572557757416272464d3361099e8201527f75794d764e4b6c344d6c435548537950416d3931776144454a3559595148754a6109be8201527f4d32304b575251737637486b61334770686c533258444b714f4b4245554753316109de8201527f65306b63316f323449494166486c4449794278584a4a656767423369386174566109fe8201527f67434f3064444f5a484a57596a564c416a6a397137765673456e72684b374568610a1e8201527f4c75427a42586d4d674554634531636d61436976504b6f4a766670466c794935610a3e8201527f4d70584234454325324245672f596d303454787843354e6c73596b74646f5951610a5e8201527f55656c38624673456c3748345a36734377622f38626b347458574658504b6a71610a7e8201527f5462526e64336e4c5770394f784941706c664b586747684e6c72443462354a4c610a9e8201527f5a367055753441726756614d366561357844574244476f7a707a4641376e6747610abe8201527f74596334486141775269475576637653653652414177335a576b564f4667764b610ade8201527f46364955696c4d49394964715155345134585264484866736666517770313955610afe8201527f434a49306a5773725433356f5578303678507268473271364d4533554f306c63610b1e8201527f635a557354454351784a44527854444b6c334c4948722f6162546f73686c6466610b3e8201527f51786a364f57745273466e6966444373473674336b426f344e6d424a6d615556610b5e8201527f54636c794951414a4c6a6e723042365a3859464d6e396b397967703752727848610b7e8201527f36766877624a4e41654b4d554436353974386746514a4d5377652f434f624850610b9e8201527f467671484746554e5266253242737245663354584b42725a76676b6369396972610bbe8201527f426d63442f7458616754474358634e68432532424f3539754c706e6673796f71610bde8201527f4c53313238374552776d38666165564f6d3857634437386c5a36594232793938610bfe8201527f5a4c6c4d3972557264324c514e6c324956643454727376675139363079377573610c1e8201527f5965306854506170576a71726c2532425837784665424e54253242315a644a4a610c3e8201527f572532424678745737584e7774634e7a7761672532425256656a6d4a6839656d610c5e8201527f6c495a4b69694e63694b3849554f4d33556a4a376342554e5847505853326c68610c7e8201527f253242687770676f4836567348524f63764569723372585970344c7769435a77610c9e8201527f3176486c43623552314d68623564536e4f326d6e6f475a6f5846315765574757610cbe8201527f6d7a694a314a555534715072306e694a536c4e424331636b4b6d4a6657625877610cde8201527f5577757449547a456d6a776770776142753464525066746a2f4e384143526e64610cfe8201527f616b2f4641674b674c37305058577839767a6b59322532426d34355473496b4c610d1e8201527f3037616f70444e6f676830535262535a534f397a744657516a376e574c676275610d3e8201527f364325324254374b6a44715a3667456e5277674d78306b4c5a77797962514f76610d5e8201527f514130773054782f354a42722f63595a6453574f546a774446364e6f586b796a610d7e8201527f33566a484e4751494e76426a5a734a4a3377466141516d6f5a575a5970416961610d9e8201527f574f466e6e686455524176576b557a77693062677a5a4158796f445545714863610dbe8201527f57307069454c574f777168773365765478444957724e32495371525151454c41610dde8201527f4d32365334486c723548552f48784a43436844424a6b756b6341573856415430610dfe8201527f6770545a544b4e48677a444f7234314751656a4f34677a416e6b577077464752610e1e8201527f43334c625231787a4b434875365635694674674c704f384b51596d5965467868610e3e8201527f4c32643838736469506a2f76306b427a636c51637954735766324d6445394944610e5e8201527f386d5858576a72434b253242354532756e336e6976656973526e726971317548610e7e8201527f594d6a6a69694945304b6466674d6f3163476d6b557254624f30356732737633610e9e8201527f477673525971762f61457736375472644f705435567a4641364131417939634b610ebe8201527f6f44667762544a64445750524e57517354796a6d3772486249734b466b6f4f2f610ede8201527f5a4c4376735966785973337768534338614c49344b765677373773336e347a48610efe8201527f67697061634a6e435362463945727a53357069386343577655597a4f5064327a610f1e8201527f684a2f4750437a53684f453378596c634f3350796164586a54334f6b68706841610f3e8201527f58465853766865544e5355525446565641486f4a6d7949726b6a454b6f517746610f5e8201527f4730303554334158643935764e30446d336d427332786746546c253242513572610f7e8201527f73416a6e744768707a6f62643642374e7a52664e56653130446f4e5639343753610f9e8201527f59646f635252624776636d785456786f61367a717756376d416e773544314745610fbe8201527f5474327a48382532425476514256356e37672f32615768743979794e594c3974610fde8201527f4f42744167384846435945316d4e775432454232467538544968543776565241610ffe8201527f3461587a6e6b3670545a4e6779696f73747749364b654655374c696c7041253261101e8201527f42334234474a794277574d327062466a4876734a3747754f6f616b6a6d46746a61103e8201527f59344c6254396c323239253242453646374c4475577a744c6e333749786b386a61105e8201527f356c42564b33774c7369362f416641756f6a34396c4d6b5653545045396b704761107e8201527f64304c724555534a4941413070596c4178414d642f4e4f46776f4a446458466961109e8201527f307a4f5744422f54464a705666575642574f516274724a556230636c663369256110be8201527f3242575072446f596c65545674564f45306d36793564487444725551776f414c6110de8201527f7455523365585364444d4e785866656a594674764c626c726c4a7777484b2f456110fe8201527f6957504a616b32574b35386e684e6f4c6a615a55475841756f32656f5777464561111e8201527f66612f445334496958717246714779633348726939785132693243352f73357661113e8201527f7a424d30793777334d4473774d3759325247427172464d6778374f696325324261115e8201527f30497a736d5678617a5473305263666a324f3334532f525639503269486f427561117e8201527f6c4b49594244665a46654c53356439725379664a64536c67683268644d72324f61119e8201527f5552334b6e6c506e4f41785477314a384c4d325a776e4671765a745a4a6c78786111be8201527f343873776243743272316b664875443756624831326159383849437456734b786111de8201527f4b742f31726b616c42414d74782f6f6f6d43445059626b556f4c6344624b436a6111fe8201527f7675713953544467746a584744715735564b36686347654f46697a6a3643714c61121e8201527f4f49716b57783477733245504d444e7378253242613661533230384f39784c3061123e8201527f526146586f394241645530706e452532424c695359334b536f4a41525978646e61125e8201527f7a69545a4d706961442f3438496969393834446151357976656378414673735761127e8201527f792f686274696d63253242704c386b35796f70496d4a627948712f6138797a6c61129e8201527f6c37726f4f7a586d786d4163337459585363546b65734d6344324939315a36336112be8201527f6549312f394a627755716b36737863394b52677277574d414e6543314e6e39756112de8201527f4779775473706d5538712532426c5a6d43714d674153363662674841476a514b6112fe8201527f73754a334451416a5235346d356a4c7a5a616e546c62646530253242726e663461131e8201527f385a574138546c32673277414779427748516e3552322532424e6a726542677861133e8201527f626c734e46627554776d6862414a48737a2f72416f61764c4f34317874767a5961135e8201527f4768336e4c4a426b41506a7578424a445248333048426575385567436978464e61137e8201527f437951322f4b253242385157372f6530253242664f2532423436524e5730657961139e8201527f4c726f39446a5467704a4e4d3547385179306c54644f756d73773066715045696113be8201527f393646702532424830634d774e6f376a787a596d6e4e664d5a6d64506c7932706113de8201527f6f7132575065476d67507136474c78504e34536c4b486e7870624f69754c58516113fe8201527f75583155715031676a6f38426136536c55314f416d5267707a7531735444584a61141e8201527f50754d3338546f387130344c324e777970653837327777556741675a6c70386461143e8201527f6b5166397a38544d43624d6b596b3758484375333564375a5a41656f346b5a4b61145e8201527f68784953386945354c546a334c4f6976485a7268394a3870337a4c5a436a776361147e8201527f6970354452694b6e576e49664c33386b4a684d7452776a67553525324256726d61149e8201527f714b6c6739307a376a64732f4238444b646b464c76483353253242376f4838616114be8201527f6c445a6c626734533155583574434d445342324f364b756c7a41344b763067376114de8201527f314251643054464b7733685358696e62374e6c304258725873514e6376436b386114fe8201527f6d6f394f786965783559627a78564e2f6b3738336f48545a495777393079495a61151e8201527f777672697164475473586e54384965705437597946434f4a6741395a3042794961153e8201527f455956735478522f6b73616b324268376f4b767034766e695530364d57317a4261155e8201527f4672746568647a306b6b587951786a426d7965645636644d596545386146787461157e8201527f6575777355466136466c6c54446c716430707a525a77473663467266574d627061159e8201527f384738587a6a66624d253242354658657076356f457273696c363458783663376115be8201527f5841576275696d3666387347494d58666f334a6971476b703333376854536a676115de8201527f65636862364f42472f327a31376a6f6d4469476d253242476c623146553069656115fe8201527f6e7552796977654c576767447a6d4655765545556a5a6f377356544877684f4661161e8201527f504d6b4e737146423977796d6b45307639666d7477453854377135384e594f3761163e8201527f787534623833766e46766c35755378446c472532426b4f51675249644f346a6761165e8201527f7a786a53486a4b4c7332742f6c684f647771766131415744437072763344345361167e8201527f34523741625934544362664b4637744265363554343551347a7a49714433316161169e8201527f79797557716a692532424636585337535439483943314f342f694b366b4775766116be8201527f6b512f664e3537487837456533373435622f76766e2f62482f58253242392f256116de8201527f32426762656d684f416d49705576755157757344764b517578394a44564e734b6116fe8201527f673651636d6b73515341445530346347524c523768466f5a326337785545664761171e8201527f253242776b755459474d764c6a422f6550634936416847686e5735717a45416961173e8201527f4a586377564545775869654e70536c317a6a457253253242435325324248634c61175e8201527f6f52506d7661324d6767412f69794c67536f544a555767733442794149514f3061177e8201527f4f6f705a487656627a6844494c65557155677a7a48492f667950474e7879777361179e8201527f6f796c6865534639577662795363336b4544716b32415636436c4364635535536117be8201527f6e6c4e6e4963394b794d63384c79622532423867484f4a795173466c4c6250526117de8201527f796d6d374a42743349545a544162314732444252496b514b51705451396939626117fe8201527f3665435353387a4d366161525364544b5657524d336663454a4c644b61746e7361181e8201527f724959774e4a55253242733048364461757832775a35686733706c653042474861183e8201527f756b316b4543734859446461496d4b7025324233463542317859763763486b7161185e8201527f644475306a4b645273657a3531376d63563641685148346931484e3173766c6a61187e8201527f5248366845454672682532426e72726d47316e33307a4d346749776d694d774561189e8201527f624b6842545564423141486f582532424b6741517a4f48543946494f71436b526118be8201527f4e4e623273397170496943534f753167576868497343564a73765771457175356118de8201527f47624a514b4e6a61427465394c4f69676368414a7665475773394332323033766118fe8201527f6f6e476c6b77725251323464646732796345646157554456734441785548734961191e8201527f77773665615234464665336d4a416b66426d5a6452395264774a485a6d47645261193e8201527f7950436a706a627a31712f584a34534949446b66384b4b6e6e32456c4b6d794c61195e8201527f69573442513836733151554b2f76426867524e776548766c5968687a7238706361197e8201527f67704b4b6d6f61576a7036426b594f48446c7835734b5647336365474539657661199e8201527f506e773563646667454242676f554946536238587632504553314772446a78456119be8201527f69524b6b697846716a54704d6d544b6b693148726a7a354368517155717845716119de8201527f544c6c4b6c53715571314772547231476a527130717846717a62744f6e5347656119fe8201527f3668374a6d627a4968355a6544696c315a58536a7430774375616b336c6e476f611a1e8201527f5655506f53734e663337394b326a6274716d44674d69485a42665a6c68324839611a3e8201527f75773738495469314a466a585653662f4336634f55667a346f30644178305447611a5e8201527f777448446863666a3443516d49694531444d5a42546b6c4e5a557065566f614f611a7e8201527f6e717633733234314e50503965766574594768435a50576a4979747332706173611a9e8201527f436a25324270556a54596c336b615574374f744b4a6136355850396d356e6367611abe8201527f364e686a685a587032762532426d57724341545a754a303368316b6a55756976611ade8201527f5067596e6a6e35744b4a4f6b326e6362703251414559585a69304b496d50356b611afe8201527f744961466e366b5a397743253237253239253230666f726d6174253238253237611b1e8201527f776f666632253237253239253342666f6e742d7765696768742533412532306e611b3e8201527f6f726d616c253342666f6e742d7374796c652533412532306e6f726d616c2533611b5e8201527f42666f6e742d646973706c617925334125323073776170253342253744746578611b7e8201527f74253230253742666f6e742d66616d696c792533412532302532375072657373611b9e8201527f2532305374617274253230325025323725334266696c6c253341253230776869611bbe8201527f74652537442e76616c7565253230253742666f6e742d73697a65253341253230611bde8201527f313070782533422537442e6e616d65253230253742666f6e742d73697a652533611bfe8201527f412532303470782533422537442533432f7374796c652533452533432f646566611c1e8201527f7325334525334372656374253230776964746825334425323738392532372532611c3e8201527f30686569676874253344253237353525323725323066696c6c25334425323762611c5e8201527f6c61636b2532372532302f253345253343726563742532307825334425323735611c7e8201527f2e3525323725323079253344253237352e352532372532307769647468253344611c9e8201527f2532373738253237253230686569676874253344253237343425323725323066611cbe8201527f696c6c2533442532372532333030303046462532372532302f25334525334374611cde8201527f657874253230746578742d616e63686f722533442532376d6964646c65253237611cfe8201527f2532307825334425323734342e35253237253230792533442532373333253237611d1e8201527f253230636c61737325334425323776616c756525323725334500000000000000611d3e820152612ba5612b9e6129f5611d5784018a61055b565b7f2533432f746578742533452533437265637425323078253344253237352e352581527f323725323079253344253237352e35253237253230776964746825334425323760208201527f373825323725323068656967687425334425323734342532372532307374726f60408201527f6b652533442532372532334646344630412532372532307374726f6b652d776960608201527f647468253344253237332532372532302f25334525334372656374253230782560808201527f334425323733302532372532307925334425323734352e35253237253230776960a08201527f647468253344253237353825323725323068656967687425334425323738253260c08201527f3725323066696c6c2533442532372532334646344630412532372532302f253360e08201527f4525334374657874253230746578742d616e63686f72253344253237656e64256101008201527f32372532307825334425323738372532372532307925334425323735322532376101208201527f253230636c6173732533442532376e616d6525323725334500000000000000006101408201526101580190565b86886105e3565b602160f81b81529050612bbb600182018561055b565b7f2533432f746578742533452533432f737667253345227d00000000000000000081526017019a995050505050505050505056fea26469706673582212206a2c00c13ddb4f1bcd7ee36e36f0c874d7d9dadcf38306eab3610b5a6e7af83464736f6c63430008110033", + "nonce": "0x2" + }, + "additionalContracts": [], + "isFixedGasLimit": false + }, + { + "hash": "0x042f9347335c180d80bf6c6be90ad75bf305604a8f38b76ef34d487e98577e91", + "transactionType": "CREATE", + "contractName": null, + "contractAddress": "0xCf7Ed3AccA5a467e9e704C703E8D87F634fB0Fc9", + "function": null, + "arguments": null, + "transaction": { + "type": "0x00", + "from": "0xf39fd6e51aad88f6f4ce6ab8827279cfffb92266", + "gas": "0x42230", + "value": "0x0", + "data": "0x608060405234801561001057600080fd5b506102cf806100206000396000f3fe608060405234801561001057600080fd5b506004361061004c5760003560e01c80630194db8e14610051578063072bdcc214610076578063a391c15b14610089578063b67d77c51461009c575b600080fd5b61006461005f366004610160565b6100af565b60405190815260200160405180910390f35b610064610084366004610160565b6100ef565b61006461009736600461021e565b610129565b6100646100aa36600461021e565b61013e565b600080805b83518110156100e8578381815181106100cf576100cf610240565b60200260200101518201915080806001019150506100b4565b5092915050565b60006001815b83518110156100e85783818151811061011057610110610240565b60200260200101518202915080806001019150506100f5565b60006101358284610256565b90505b92915050565b60006101358284610278565b634e487b7160e01b600052604160045260246000fd5b6000602080838503121561017357600080fd5b823567ffffffffffffffff8082111561018b57600080fd5b818501915085601f83011261019f57600080fd5b8135818111156101b1576101b161014a565b8060051b604051601f19603f830116810181811085821117156101d6576101d661014a565b6040529182528482019250838101850191888311156101f457600080fd5b938501935b82851015610212578435845293850193928501926101f9565b98975050505050505050565b6000806040838503121561023157600080fd5b50508035926020909101359150565b634e487b7160e01b600052603260045260246000fd5b60008261027357634e487b7160e01b600052601260045260246000fd5b500490565b8181038181111561013857634e487b7160e01b600052601160045260246000fdfea2646970667358221220fcdef23ba4219270ddb3ab764e22a87e229c05e6f1dfc4eeea983fa1a1dac91f64736f6c63430008110033", + "nonce": "0x3" + }, + "additionalContracts": [], + "isFixedGasLimit": false + }, + { + "hash": "0x07f47be9a108353bea36c14aae366ca1ea9b80d7e3f12c5f4836e11e3856848a", + "transactionType": "CREATE", + "contractName": "Evmsheet", + "contractAddress": "0xDc64a140Aa3E981100a9becA4E685f962f0cF6C9", + "function": null, + "arguments": [ + "0x9fE46736679d2D9a65F0992F2272dE9f3c7fa6e0", + "10000000000000000" + ], + "transaction": { + "type": "0x00", + "from": "0xf39fd6e51aad88f6f4ce6ab8827279cfffb92266", + "gas": "0x34bf99", + "value": "0x0", + "data": "0x608060405234801561001057600080fd5b50604051612ed9380380612ed983398101604081905261002f916100b1565b61003833610061565b600280546001600160a01b0319166001600160a01b0393909316929092179091556001556100eb565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b600080604083850312156100c457600080fd5b82516001600160a01b03811681146100db57600080fd5b6020939093015192949293505050565b612ddf806100fa6000396000f3fe608060405260043610620000a95760003560e01c80638da5cb5b116200006c5780638da5cb5b146200016d578063ab2fa65a146200018d578063ae28505e14620001b4578063c56c4cf114620001d9578063f2fde38b14620001fb578063f52be2a2146200022057600080fd5b806303fb31e814620000ae5780631164c83d14620000d5578063145e414714620000ec5780635787cacb146200012e578063715018a61462000155575b600080fd5b348015620000bb57600080fd5b50620000d3620000cd36600462000778565b62000247565b005b620000d3620000e6366004620007e9565b62000273565b348015620000f957600080fd5b50620001116200010b36600462000864565b620004b2565b6040516001600160a01b0390911681526020015b60405180910390f35b3480156200013b57600080fd5b50620001466200054f565b60405162000125919062000891565b3480156200016257600080fd5b50620000d3620005b3565b3480156200017a57600080fd5b506000546001600160a01b031662000111565b3480156200019a57600080fd5b50620001a5620005cb565b604051620001259190620008e0565b348015620001c157600080fd5b5062000111620001d336600462000930565b620005f7565b348015620001e657600080fd5b5060025462000111906001600160a01b031681565b3480156200020857600080fd5b50620000d36200021a36600462000778565b62000622565b3480156200022d57600080fd5b506200023860015481565b60405190815260200162000125565b62000251620006a1565b600280546001600160a01b0319166001600160a01b0392909216919091179055565b60015434146200029d5760405163723a79e360e11b81523460048201526024015b60405180910390fd5b600060405180602001620002b1906200074d565b6020820181038252601f19601f8201166040525090506000828251602084016000f56002546040516356d3163d60e01b81526001600160a01b0391821660048201529192508216906356d3163d90602401600060405180830381600087803b1580156200031d57600080fd5b505af115801562000332573d6000803e3d6000fd5b505060405163c47f002760e01b81526001600160a01b038416925063c47f0027915062000366908a908a906004016200094a565b600060405180830381600087803b1580156200038157600080fd5b505af115801562000396573d6000803e3d6000fd5b5050604051635c26412360e11b81526001600160a01b038416925063b84c82469150620003ca90889088906004016200094a565b600060405180830381600087803b158015620003e557600080fd5b505af1158015620003fa573d6000803e3d6000fd5b505060405163f2fde38b60e01b81523260048201526001600160a01b038416925063f2fde38b9150602401600060405180830381600087803b1580156200044057600080fd5b505af115801562000455573d6000803e3d6000fd5b5050600380546001810182556000919091527fc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b0180546001600160a01b0319166001600160a01b0394909416939093179092555050505050505050565b600060ff60f81b838360405180602001620004cd906200074d565b6020820181038252601f19601f82011660405250805190602001206040516020016200053094939291906001600160f81b031994909416845260609290921b6bffffffffffffffffffffffff191660018401526015830152603582015260550190565b60408051601f1981840301815291905280516020909101209392505050565b60606003805480602002602001604051908101604052809291908181526020018280548015620005a957602002820191906000526020600020905b81546001600160a01b031681526001909101906020018083116200058a575b5050505050905090565b620005bd620006a1565b620005c96000620006fd565b565b606060405180602001620005df906200074d565b601f1982820381018352601f90910116604052919050565b600381815481106200060857600080fd5b6000918252602090912001546001600160a01b0316905081565b6200062c620006a1565b6001600160a01b038116620006935760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b606482015260840162000294565b6200069e81620006fd565b50565b6000546001600160a01b03163314620005c95760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015260640162000294565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b612430806200097a83390190565b80356001600160a01b03811681146200077357600080fd5b919050565b6000602082840312156200078b57600080fd5b62000796826200075b565b9392505050565b60008083601f840112620007b057600080fd5b50813567ffffffffffffffff811115620007c957600080fd5b602083019150836020828501011115620007e257600080fd5b9250929050565b6000806000806000606086880312156200080257600080fd5b853567ffffffffffffffff808211156200081b57600080fd5b6200082989838a016200079d565b909750955060208801359150808211156200084357600080fd5b5062000852888289016200079d565b96999598509660400135949350505050565b600080604083850312156200087857600080fd5b62000883836200075b565b946020939093013593505050565b6020808252825182820181905260009190848201906040850190845b81811015620008d45783516001600160a01b031683529284019291840191600101620008ad565b50909695505050505050565b600060208083528351808285015260005b818110156200090f57858101830151858201604001528201620008f1565b506000604082860101526040601f19601f8301168501019250505092915050565b6000602082840312156200094357600080fd5b5035919050565b60208152816020820152818360408301376000818301604090810191909152601f909201601f1916010191905056fe60806040523480156200001157600080fd5b50604051806040016040528060078152602001660536865657420360cc1b815250604051806040016040528060048152602001630534854360e41b81525062000069620000636200008f60201b60201c565b62000093565b600162000077838262000188565b50600262000086828262000188565b50505062000254565b3390565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b634e487b7160e01b600052604160045260246000fd5b600181811c908216806200010e57607f821691505b6020821081036200012f57634e487b7160e01b600052602260045260246000fd5b50919050565b601f8211156200018357600081815260208120601f850160051c810160208610156200015e5750805b601f850160051c820191505b818110156200017f578281556001016200016a565b5050505b505050565b81516001600160401b03811115620001a457620001a4620000e3565b620001bc81620001b58454620000f9565b8462000135565b602080601f831160018114620001f45760008415620001db5750858301515b600019600386901b1c1916600185901b1785556200017f565b600085815260208120601f198616915b82811015620002255788860151825594840194600190910190840162000204565b5085821015620002445787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b6121cc80620002646000396000f3fe608060405234801561001057600080fd5b50600436106102275760003560e01c8063715018a611610130578063b85d8b85116100b8578063cf0983981161007c578063cf09839814610512578063cfbe95d814610535578063df4ca20614610556578063e985e9c514610576578063f2fde38b146105a457600080fd5b8063b85d8b85146104a4578063b88d4fde146104ce578063b8c368ec146104e1578063c47f0027146104ec578063c87b56dd146104ff57600080fd5b806395d89b41116100ff57806395d89b4114610439578063a22cb46514610441578063b46ebb1214610454578063b6d658e114610467578063b84c82461461049157600080fd5b8063715018a6146103fa578063768d5029146104025780638ada6b0f146104155780638da5cb5b1461042857600080fd5b80631b06443c116101b35780634f6ccce7116101825780634f6ccce71461038157806356d3163d146103a15780636352211e146103b45780636a0abc74146103c757806370a08231146103e757600080fd5b80631b06443c14610335578063206848f61461034857806323b872dd1461035b57806342842e0e1461036e57600080fd5b8063081812fc116101fa578063081812fc146102a1578063095ea7b3146102e2578063172b9eed146102f757806318160ddd1461030a5780631941fd141461031357600080fd5b806301ffc9a71461022c57806302f3c4c91461025457806306fdde03146102745780630715a24a1461027c575b600080fd5b61023f61023a36600461176a565b6105b7565b60405190151581526020015b60405180910390f35b610267610262366004611861565b610609565b60405161024b9190611951565b610267610638565b6102936fffffffffffffffffffffffffffffffff81565b60405190815260200161024b565b6102ca6102af366004611964565b6005602052600090815260409020546001600160a01b031681565b6040516001600160a01b03909116815260200161024b565b6102f56102f036600461197d565b6106c6565b005b6102676103053660046119a9565b6107ad565b61029360075481565b610326610321366004611964565b610875565b60405161024b939291906119de565b6102ca610343366004611a0e565b61092a565b610326610356366004611964565b6109e3565b6102f5610369366004611a2b565b610ae1565b6102f561037c366004611a2b565b610ca8565b61029361038f366004611964565b60086020526000908152604090205481565b6102f56103af366004611a0e565b610da0565b6102ca6103c2366004611964565b610dca565b6103da6103d53660046119a9565b610e1c565b60405161024b9190611a6c565b6102936103f5366004611a0e565b610e60565b6102f5610ec3565b6102f5610410366004611af9565b610ed7565b6009546102ca906001600160a01b031681565b6000546001600160a01b03166102ca565b610267611035565b6102f561044f366004611b63565b611042565b610267610462366004611964565b6110ae565b61047a610475366004611964565b611258565b60408051921515835260208301919091520161024b565b6102f561049f366004611ba1565b611275565b6104b56104b2366004611964565b90565b6040516001600160e01b0319909116815260200161024b565b6102f56104dc366004611be3565b6112c6565b6102ca600160801b81565b6102f56104fa366004611ba1565b6113ae565b61026761050d366004611964565b6113ff565b61023f610520366004611a0e565b600160801b6001600160a01b03919091161090565b61023f610543366004611861565b516001600160a01b0316600160801b1490565b610569610564366004611964565b6114c9565b60405161024b9190611c16565b61023f610584366004611c4d565b600660209081526000928352604080842090915290825290205460ff1681565b6102f56105b2366004611a0e565b611526565b60006301ffc9a760e01b6001600160e01b0319831614806105e857506380ac58cd60e01b6001600160e01b03198316145b806106035750635b5e139f60e01b6001600160e01b03198316145b92915050565b6060816020015160405160200161062291815260200190565b6040516020818303038152906040529050919050565b6001805461064590611c7b565b80601f016020809104026020016040519081016040528092919081815260200182805461067190611c7b565b80156106be5780601f10610693576101008083540402835291602001916106be565b820191906000526020600020905b8154815290600101906020018083116106a157829003601f168201915b505050505081565b6000818152600360205260409020546001600160a01b03163381148061070f57506001600160a01b038116600090815260066020908152604080832033845290915290205460ff165b6107515760405162461bcd60e51b815260206004820152600e60248201526d1393d517d055551213d49256915160921b60448201526064015b60405180910390fd5b60008281526005602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b606060006107ba83610e1c565b9050606060005b825181101561086d576000806107ef8584815181106107e2576107e2611cb5565b6020026020010151611258565b9150915081156108335783610803826110ae565b61080c90611ccb565b60405160200161081d929190611cef565b6040516020818303038152906040529350610858565b6040516108469085908390602001611cef565b60405160208183030381529060405293505b5050808061086590611d27565b9150506107c1565b509392505050565b600a602052600090815260409020805460018201546002830180546001600160a01b039093169391926108a790611c7b565b80601f01602080910402602001604051908101604052809291908181526020018280546108d390611c7b565b80156109205780601f106108f557610100808354040283529160200191610920565b820191906000526020600020905b81548152906001019060200180831161090357829003601f168201915b5050505050905083565b6000600160801b6001600160a01b03831610156109da576000610955836001600160a01b03166110ae565b604051632d737e4960e21b8152909150735fbdb2315678afecb367f032d93f642f64180aa39063b5cdf92490610992908490600090600401611d40565b602060405180830381865af41580156109af573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906109d39190611d62565b9392505050565b5090565b919050565b60008181526003602052604081205481906060906001600160a01b0316610a1057600160801b9250610a2b565b6000848152600a60205260409020546001600160a01b031692505b6000848152600a60205260409020600181015460029091018054859291908190610a5490611c7b565b80601f0160208091040260200160405190810160405280929190818152602001828054610a8090611c7b565b8015610acd5780601f10610aa257610100808354040283529160200191610acd565b820191906000526020600020905b815481529060010190602001808311610ab057829003601f168201915b505050505090509250925092509193909250565b6000818152600360205260409020546001600160a01b03848116911614610b375760405162461bcd60e51b815260206004820152600a60248201526957524f4e475f46524f4d60b01b6044820152606401610748565b6001600160a01b038216610b815760405162461bcd60e51b81526020600482015260116024820152701253959053125117d49150d25412515395607a1b6044820152606401610748565b336001600160a01b0384161480610bbb57506001600160a01b038316600090815260066020908152604080832033845290915290205460ff165b80610bdc57506000818152600560205260409020546001600160a01b031633145b610c195760405162461bcd60e51b815260206004820152600e60248201526d1393d517d055551213d49256915160921b6044820152606401610748565b6001600160a01b0380841660008181526004602090815260408083208054600019019055938616808352848320805460010190558583526003825284832080546001600160a01b03199081168317909155600590925284832080549092169091559251849392917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b610cb3838383610ae1565b6001600160a01b0382163b1580610d5c5750604051630a85bd0160e11b8082523360048301526001600160a01b03858116602484015260448301849052608060648401526000608484015290919084169063150b7a029060a4016020604051808303816000875af1158015610d2c573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610d509190611d7b565b6001600160e01b031916145b610d9b5760405162461bcd60e51b815260206004820152601060248201526f155394d0519157d49150d2541251539560821b6044820152606401610748565b505050565b610da861159f565b600980546001600160a01b0319166001600160a01b0392909216919091179055565b6000818152600360205260409020546001600160a01b0316806109de5760405162461bcd60e51b815260206004820152600a6024820152691393d517d3525395115160b21b6044820152606401610748565b60608082516040519150602081048252602082016020850160005b83811015610e4f578181015183820152602001610e37565b505050810160200160405292915050565b60006001600160a01b038216610ea75760405162461bcd60e51b815260206004820152600c60248201526b5a45524f5f4144445245535360a01b6044820152606401610748565b506001600160a01b031660009081526004602052604090205490565b610ecb61159f565b610ed560006115f9565b565b6000858152600360205260409020546001600160a01b0316610f2f57610efd3286611649565b60078054600090815260086020526040812087905581546001929190610f24908490611d98565b90915550610f889050565b6000858152600360205260409020546001600160a01b03163214610f8857600085815260036020526040908190205490516324f3f02560e21b81526001600160a01b039091166004820152326024820152604401610748565b6040518060600160405280856001600160a01b0316815260200184815260200183838080601f0160208091040260200160405190810160405280939291908181526020018383808284376000920182905250939094525050878152600a6020908152604091829020845181546001600160a01b0319166001600160a01b0390911617815590840151600182015590830151909150600282019061102b9082611df9565b5050505050505050565b6002805461064590611c7b565b3360008181526006602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b6000818152600a6020908152604080832081516060818101845282546001600160a01b0316825260018301549482019490945260028201805494959491938401916110f890611c7b565b80601f016020809104026020016040519081016040528092919081815260200182805461112490611c7b565b80156111715780601f1061114657610100808354040283529160200191611171565b820191906000526020600020905b81548152906001019060200180831161115457829003601f168201915b505050505081525050905061119381516001600160a01b0316600160801b1490565b156111a1576109d381610609565b60006111b0826000015161092a565b905060006111bf836020015190565b905060006111d084604001516107ad565b90506000836001600160a01b031683836040516020016111f1929190611eb9565b60408051601f198184030181529082905261120b91611eea565b600060405180830381855afa9150503d8060008114611246576040519150601f19603f3d011682016040523d82523d6000602084013e61124b565b606091505b5098975050505050505050565b600080611266600284611f06565b60019081149493901c92915050565b61127d61159f565b7f8dca0271872d00b3de3abafca544c52fcd7d512dd852c9894fa2c118ac759a93600283836040516112b193929190611fce565b60405180910390a16002610d9b828483611ffe565b6112d1858585610ae1565b6001600160a01b0384163b15806113685750604051630a85bd0160e11b808252906001600160a01b0386169063150b7a02906113199033908a908990899089906004016120be565b6020604051808303816000875af1158015611338573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061135c9190611d7b565b6001600160e01b031916145b6113a75760405162461bcd60e51b815260206004820152601060248201526f155394d0519157d49150d2541251539560821b6044820152606401610748565b5050505050565b6113b661159f565b7fb65b7b5ea384affd30f77f842e057d29dd1b13f133adf69a724a8105b164ab75600183836040516113ea93929190611fce565b60405180910390a16001610d9b828483611ffe565b6000818152600360205260409020546060906001600160a01b03168061143b57604051630243d1a960e21b815260048101849052602401610748565b6000611446846110ae565b6009546040516328de0f2f60e01b81529192506001600160a01b0316906328de0f2f9061147c90879085906001906004016120fd565b600060405180830381865afa158015611499573d6000803e3d6000fd5b505050506040513d6000823e601f3d908101601f191682016040526114c19190810190612128565b949350505050565b604080516060808201835260008083526020830181905292820152906114ee836110ae565b6040805160608101825285815260009586526003602090815295829020546001600160a01b0316958101959095528401525090919050565b61152e61159f565b6001600160a01b0381166115935760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610748565b61159c816115f9565b50565b6000546001600160a01b03163314610ed55760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610748565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b6001600160a01b0382166116935760405162461bcd60e51b81526020600482015260116024820152701253959053125117d49150d25412515395607a1b6044820152606401610748565b6000818152600360205260409020546001600160a01b0316156116e95760405162461bcd60e51b815260206004820152600e60248201526d1053149150511657d3525395115160921b6044820152606401610748565b6001600160a01b038216600081815260046020908152604080832080546001019055848352600390915280822080546001600160a01b0319168417905551839291907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b6001600160e01b03198116811461159c57600080fd5b60006020828403121561177c57600080fd5b81356109d381611754565b634e487b7160e01b600052604160045260246000fd5b604051601f8201601f1916810167ffffffffffffffff811182821017156117c6576117c6611787565b604052919050565b6001600160a01b038116811461159c57600080fd5b600067ffffffffffffffff8211156117fd576117fd611787565b50601f01601f191660200190565b600082601f83011261181c57600080fd5b813561182f61182a826117e3565b61179d565b81815284602083860101111561184457600080fd5b816020850160208301376000918101602001919091529392505050565b60006020828403121561187357600080fd5b813567ffffffffffffffff8082111561188b57600080fd5b908301906060828603121561189f57600080fd5b6040516060810181811083821117156118ba576118ba611787565b60405282356118c8816117ce565b8152602083810135908201526040830135828111156118e657600080fd5b6118f28782860161180b565b60408301525095945050505050565b60005b8381101561191c578181015183820152602001611904565b50506000910152565b6000815180845261193d816020860160208601611901565b601f01601f19169290920160200192915050565b6020815260006109d36020830184611925565b60006020828403121561197657600080fd5b5035919050565b6000806040838503121561199057600080fd5b823561199b816117ce565b946020939093013593505050565b6000602082840312156119bb57600080fd5b813567ffffffffffffffff8111156119d257600080fd5b6114c18482850161180b565b60018060a01b0384168152826020820152606060408201526000611a056060830184611925565b95945050505050565b600060208284031215611a2057600080fd5b81356109d3816117ce565b600080600060608486031215611a4057600080fd5b8335611a4b816117ce565b92506020840135611a5b816117ce565b929592945050506040919091013590565b6020808252825182820181905260009190848201906040850190845b81811015611aa457835183529284019291840191600101611a88565b50909695505050505050565b60008083601f840112611ac257600080fd5b50813567ffffffffffffffff811115611ada57600080fd5b602083019150836020828501011115611af257600080fd5b9250929050565b600080600080600060808688031215611b1157600080fd5b853594506020860135611b23816117ce565b935060408601359250606086013567ffffffffffffffff811115611b4657600080fd5b611b5288828901611ab0565b969995985093965092949392505050565b60008060408385031215611b7657600080fd5b8235611b81816117ce565b915060208301358015158114611b9657600080fd5b809150509250929050565b60008060208385031215611bb457600080fd5b823567ffffffffffffffff811115611bcb57600080fd5b611bd785828601611ab0565b90969095509350505050565b600080600080600060808688031215611bfb57600080fd5b8535611c06816117ce565b94506020860135611b23816117ce565b602081528151602082015260018060a01b036020830151166040820152600060408301516060808401526114c16080840182611925565b60008060408385031215611c6057600080fd5b8235611c6b816117ce565b91506020830135611b96816117ce565b600181811c90821680611c8f57607f821691505b602082108103611caf57634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052603260045260246000fd5b80516020808301519190811015611caf5760001960209190910360031b1b16919050565b60008351611d01818460208801611901565b9190910191825250602001919050565b634e487b7160e01b600052601160045260246000fd5b600060018201611d3957611d39611d11565b5060010190565b604081526000611d536040830185611925565b90508260208301529392505050565b600060208284031215611d7457600080fd5b5051919050565b600060208284031215611d8d57600080fd5b81516109d381611754565b8082018082111561060357610603611d11565b601f821115610d9b57600081815260208120601f850160051c81016020861015611dd25750805b601f850160051c820191505b81811015611df157828155600101611dde565b505050505050565b815167ffffffffffffffff811115611e1357611e13611787565b611e2781611e218454611c7b565b84611dab565b602080601f831160018114611e5c5760008415611e445750858301515b600019600386901b1c1916600185901b178555611df1565b600085815260208120601f198616915b82811015611e8b57888601518255948401946001909101908401611e6c565b5085821015611ea95787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b6001600160e01b0319831681528151600090611edc816004850160208701611901565b919091016004019392505050565b60008251611efc818460208701611901565b9190910192915050565b600082611f2357634e487b7160e01b600052601260045260246000fd5b500690565b60008154611f3581611c7b565b808552602060018381168015611f525760018114611f6c57611f9a565b60ff1985168884015283151560051b880183019550611f9a565b866000528260002060005b85811015611f925781548a8201860152908301908401611f77565b890184019650505b505050505092915050565b81835281816020850137506000828201602090810191909152601f909101601f19169091010190565b604081526000611fe16040830186611f28565b8281036020840152611ff4818587611fa5565b9695505050505050565b67ffffffffffffffff83111561201657612016611787565b61202a836120248354611c7b565b83611dab565b6000601f84116001811461205e57600085156120465750838201355b600019600387901b1c1916600186901b1783556113a7565b600083815260209020601f19861690835b8281101561208f578685013582556020948501946001909201910161206f565b50868210156120ac5760001960f88860031b161c19848701351681555b505060018560011b0183555050505050565b6001600160a01b03868116825285166020820152604081018490526080606082018190526000906120f29083018486611fa5565b979650505050505050565b8381526060602082015260006121166060830185611925565b8281036040840152611ff48185611f28565b60006020828403121561213a57600080fd5b815167ffffffffffffffff81111561215157600080fd5b8201601f8101841361216257600080fd5b805161217061182a826117e3565b81815285602083850101111561218557600080fd5b611a0582602083016020860161190156fea26469706673582212203fc548aa4f22e6f4c01757ba3f2e0383630418b3d17601758718ab19a4d9918d64736f6c63430008110033a26469706673582212207932e8c793f9a96d9606a8907a6671f54c0fb1ed5a763048e13b429274e7706c64736f6c634300081100330000000000000000000000009fe46736679d2d9a65f0992f2272de9f3c7fa6e0000000000000000000000000000000000000000000000000002386f26fc10000", + "nonce": "0x4" + }, + "additionalContracts": [], + "isFixedGasLimit": false + } + ], + "receipts": [], + "libraries": [ + "lib/eth-projects-monorepo/packages/eth-projects-contracts/contracts/lib/utils/Bytes.sol:Bytes:0x5fbdb2315678afecb367f032d93f642f64180aa3" + ], + "pending": [ + "0x030c68fd0a213dc6a8a9fc6cffeff1a98228e34ca37ff69f185df015fe1ab3f1", + "0x01c6eb7c01a0621ca049c2e22b2eccee52cd6af087ff9db93a13e4f3de2ac66a", + "0x03e703754fab191f461e3372a6921dd773d04d1d84c3b272a00cdd3047b521e9", + "0x042f9347335c180d80bf6c6be90ad75bf305604a8f38b76ef34d487e98577e91", + "0x07f47be9a108353bea36c14aae366ca1ea9b80d7e3f12c5f4836e11e3856848a" + ], + "returns": {}, + "timestamp": 1689178076, + "chain": 1263227476, + "multi": false, + "commit": "24c72b7" +} \ No newline at end of file diff --git a/packages/starksheet-solidity/broadcast/Evmsheet.s.sol/1263227476/run-1689178735.json b/packages/starksheet-solidity/broadcast/Evmsheet.s.sol/1263227476/run-1689178735.json new file mode 100644 index 00000000..22cf3054 --- /dev/null +++ b/packages/starksheet-solidity/broadcast/Evmsheet.s.sol/1263227476/run-1689178735.json @@ -0,0 +1,158 @@ +{ + "transactions": [ + { + "hash": "0x045f89ca387f2853a2a30f92868bdf8945580b501a47d7aef7e168a4febacd61", + "transactionType": "CREATE", + "contractName": "Bytes", + "contractAddress": "0x5FbDB2315678afecb367f032d93F642f64180aa3", + "function": null, + "arguments": null, + "transaction": { + "type": "0x00", + "from": "0xf39fd6e51aad88f6f4ce6ab8827279cfffb92266", + "gas": "0x1387ed", + "data": "0x6110d661003a600b82828239805160001a60731461002d57634e487b7160e01b600052600060045260246000fd5b30600052607381538281f3fe73000000000000000000000000000000000000000030146080604052600436106101625760003560e01c8063a5eb31ee116100cd578063d1ffb56111610086578063d1ffb561146103fb578063d442584f1461042b578063e004139614610454578063f1142fb314610474578063f647f8fb14610487578063f83b670f146104b257600080fd5b8063a5eb31ee14610344578063a8d8f00f1461036b578063b5cdf92414610396578063b63711df146103a9578063be8b3430146103bc578063c29616bd146103cf57600080fd5b80635ef849301161011f5780635ef8493014610241578063913c97b41461026b57806397e6175c1461029f57806399dd9bd7146102cb5780639ae4c3d1146102ec5780639cee499e1461031857600080fd5b8063042aa0841461016757806305d3bb74146101985780631a7431ef146101c0578063235266d2146101e357806348137709146101f65780634d66a2ae1461021b575b600080fd5b61017a610175366004610ec0565b6104de565b6040516001600160d01b031990911681526020015b60405180910390f35b6101ab6101a6366004610ec0565b610540565b60405163ffffffff909116815260200161018f565b6101d36101ce366004610f05565b61059d565b604051901515815260200161018f565b6101d36101f1366004610f4c565b610652565b610209610204366004610ec0565b6106b5565b60405160ff909116815260200161018f565b61022e610229366004610fa6565b610711565b60405161ffff909116815260200161018f565b61025461024f366004610ec0565b61071e565b60405165ffffffffffff909116815260200161018f565b61027e610279366004610ec0565b610772565b6040516fffffffffffffffffffffffffffffffff909116815260200161018f565b6102b26102ad366004610ec0565b6107d0565b6040516001600160a01b0319909116815260200161018f565b6102de6102d9366004610ec0565b61082e565b60405190815260200161018f565b6102ff6102fa366004610ec0565b61088c565b60405167ffffffffffffffff909116815260200161018f565b61032b610326366004610ec0565b6108e9565b6040516001600160d81b0319909116815260200161018f565b610357610352366004610ec0565b610946565b60405162ffffff909116815260200161018f565b61037e610379366004610ec0565b6109a3565b60405166ffffffffffffff909116815260200161018f565b6102de6103a4366004610ec0565b610a00565b6102ff6103b7366004610ec0565b610a55565b61022e6103ca366004610ec0565b610aa9565b6103e26103dd366004610ec0565b610b06565b6040516001600160c81b0319909116815260200161018f565b61040e610409366004610ec0565b610b5a565b6040516bffffffffffffffffffffffff909116815260200161018f565b61043e610439366004610ec0565b610bae565b60405164ffffffffff909116815260200161018f565b610467610462366004610fe3565b610c02565b60405161018f9190611031565b6102b2610482366004610ec0565b610d0f565b61049a610495366004610ec0565b610d64565b6040516001600160a01b03909116815260200161018f565b6104c56104c0366004610ec0565b610dc9565b6040516001600160f81b0319909116815260200161018f565b60006104eb82600661107f565b835110156105375760405162461bcd60e51b8152602060048201526014602482015273746f4279746573365f6f75744f66426f756e647360601b60448201526064015b60405180910390fd5b50016006015190565b600061054d82600461107f565b835110156105945760405162461bcd60e51b8152602060048201526014602482015273746f55696e7433325f6f75744f66426f756e647360601b604482015260640161052e565b50016004015190565b600080600190508354600260018083161561010002038216048451808214600181146105cc5760009450610644565b821561064457602083106001811461062957600189600052602060002060208a018581015b600284828410010361062057815183541461060f5760009950600093505b6001830192506020820191506105f1565b50505050610642565b6101008086040294506020880151851461064257600095505b505b509293505050505b92915050565b81518151600091600191811480831461066e57600092506106ab565b600160208701838101602088015b60028483851001036106a657805183511461069a5760009650600093505b6020928301920161067c565b505050505b5090949350505050565b60006106c282600161107f565b835110156107085760405162461bcd60e51b8152602060048201526013602482015272746f55696e74385f6f75744f66426f756e647360681b604482015260640161052e565b50016001015190565b600061064c826000610aa9565b600061072b82600661107f565b835110156105375760405162461bcd60e51b8152602060048201526014602482015273746f55696e7434385f6f75744f66426f756e647360601b604482015260640161052e565b600061077f82601061107f565b835110156107c75760405162461bcd60e51b8152602060048201526015602482015274746f55696e743132385f6f75744f66426f756e647360581b604482015260640161052e565b50016010015190565b60006107dd82600c61107f565b835110156108255760405162461bcd60e51b8152602060048201526015602482015274746f427974657331325f6f75744f66426f756e647360581b604482015260640161052e565b5001600c015190565b600061083b82602061107f565b835110156108835760405162461bcd60e51b8152602060048201526015602482015274746f427974657333325f6f75744f66426f756e647360581b604482015260640161052e565b50016020015190565b600061089982600861107f565b835110156108e05760405162461bcd60e51b8152602060048201526014602482015273746f55696e7436345f6f75744f66426f756e647360601b604482015260640161052e565b50016008015190565b60006108f682600561107f565b8351101561093d5760405162461bcd60e51b8152602060048201526014602482015273746f4279746573355f6f75744f66426f756e647360601b604482015260640161052e565b50016005015190565b600061095382600361107f565b8351101561099a5760405162461bcd60e51b8152602060048201526014602482015273746f55696e7432345f6f75744f66426f756e647360601b604482015260640161052e565b50016003015190565b60006109b082600761107f565b835110156109f75760405162461bcd60e51b8152602060048201526014602482015273746f55696e7435365f6f75744f66426f756e647360601b604482015260640161052e565b50016007015190565b6000610a0d82602061107f565b835110156108835760405162461bcd60e51b8152602060048201526015602482015274746f55696e743235365f6f75744f66426f756e647360581b604482015260640161052e565b6000610a6282600861107f565b835110156108e05760405162461bcd60e51b8152602060048201526014602482015273746f4279746573385f6f75744f66426f756e647360601b604482015260640161052e565b6000610ab682600261107f565b83511015610afd5760405162461bcd60e51b8152602060048201526014602482015273746f55696e7431365f6f75744f66426f756e647360601b604482015260640161052e565b50016002015190565b6000610b1382600761107f565b835110156109f75760405162461bcd60e51b8152602060048201526014602482015273746f4279746573375f6f75744f66426f756e647360601b604482015260640161052e565b6000610b6782600c61107f565b835110156108255760405162461bcd60e51b8152602060048201526014602482015273746f55696e7439365f6f75744f66426f756e647360601b604482015260640161052e565b6000610bbb82600561107f565b8351101561093d5760405162461bcd60e51b8152602060048201526014602482015273746f55696e7434305f6f75744f66426f756e647360601b604482015260640161052e565b606081610c1081601f61107f565b1015610c4f5760405162461bcd60e51b815260206004820152600e60248201526d736c6963655f6f766572666c6f7760901b604482015260640161052e565b610c59828461107f565b84511015610c9d5760405162461bcd60e51b8152602060048201526011602482015270736c6963655f6f75744f66426f756e647360781b604482015260640161052e565b606082158015610cbc5760405191506000825260208201604052610d06565b6040519150601f8416801560200281840101858101878315602002848b0101015b81831015610cf5578051835260209283019201610cdd565b5050858452601f01601f1916604052505b50949350505050565b6000610d1c82601061107f565b835110156107c75760405162461bcd60e51b8152602060048201526015602482015274746f427974657331365f6f75744f66426f756e647360581b604482015260640161052e565b6000610d7182601461107f565b83511015610db95760405162461bcd60e51b8152602060048201526015602482015274746f416464726573735f6f75744f66426f756e647360581b604482015260640161052e565b500160200151600160601b900490565b6000610dd682600161107f565b835110156107085760405162461bcd60e51b8152602060048201526014602482015273746f4279746573315f6f75744f66426f756e647360601b604482015260640161052e565b634e487b7160e01b600052604160045260246000fd5b600082601f830112610e4457600080fd5b813567ffffffffffffffff80821115610e5f57610e5f610e1d565b604051601f8301601f19908116603f01168101908282118183101715610e8757610e87610e1d565b81604052838152866020858801011115610ea057600080fd5b836020870160208301376000602085830101528094505050505092915050565b60008060408385031215610ed357600080fd5b823567ffffffffffffffff811115610eea57600080fd5b610ef685828601610e33565b95602094909401359450505050565b60008060408385031215610f1857600080fd5b82359150602083013567ffffffffffffffff811115610f3657600080fd5b610f4285828601610e33565b9150509250929050565b60008060408385031215610f5f57600080fd5b823567ffffffffffffffff80821115610f7757600080fd5b610f8386838701610e33565b93506020850135915080821115610f9957600080fd5b50610f4285828601610e33565b600060208284031215610fb857600080fd5b813567ffffffffffffffff811115610fcf57600080fd5b610fdb84828501610e33565b949350505050565b600080600060608486031215610ff857600080fd5b833567ffffffffffffffff81111561100f57600080fd5b61101b86828701610e33565b9660208601359650604090950135949350505050565b600060208083528351808285015260005b8181101561105e57858101830151858201604001528201611042565b506000604082860101526040601f19601f8301168501019250505092915050565b8082018082111561064c57634e487b7160e01b600052601160045260246000fdfea26469706673582212205bdf5bc4551862519f5370e0dcec38eefbbbe11b6a5bf19ce2846b4f8831a5dc64736f6c63430008110033", + "nonce": "0x0" + }, + "additionalContracts": [], + "isFixedGasLimit": false + }, + { + "hash": "0x000128fbbcf1ce04facb50cb06b25514ad5927f52ec5b5b497f9cc8acff8a383", + "transactionType": "CREATE", + "contractName": "MultiSendCallOnly", + "contractAddress": "0xe7f1725E7734CE288F8367e1Bb143E90bb3F0512", + "function": null, + "arguments": null, + "transaction": { + "type": "0x00", + "from": "0xf39fd6e51aad88f6f4ce6ab8827279cfffb92266", + "gas": "0x2e5c4", + "value": "0x0", + "data": "0x608060405234801561001057600080fd5b506101ae806100206000396000f3fe60806040526004361061001e5760003560e01c80638d80ff0a14610023575b600080fd5b6100366100313660046100c7565b610038565b005b805160205b818110156100ac578083015160f81c6001820184015160601c601583018501516035840186015160558501870160008560008114610082576001811461001e5761008e565b6000808585888a5af191505b508061009957600080fd5b505080605501850194505050505061003d565b505050565b634e487b7160e01b600052604160045260246000fd5b6000602082840312156100d957600080fd5b813567ffffffffffffffff808211156100f157600080fd5b818401915084601f83011261010557600080fd5b813581811115610117576101176100b1565b604051601f8201601f19908116603f0116810190838211818310171561013f5761013f6100b1565b8160405282815287602084870101111561015857600080fd5b82602086016020830137600092810160200192909252509594505050505056fea2646970667358221220c15490bbb756a4c3c49d6335b2e81d2d098647b0ea70174c2279f199b1d0800364736f6c63430008110033", + "nonce": "0x1" + }, + "additionalContracts": [], + "isFixedGasLimit": false + }, + { + "hash": "0x027230bd60128347bd04e3fa2055be2e2ba4fcd489e1ac59cc7d43bbceab7797", + "transactionType": "CREATE", + "contractName": "BasicCellRenderer", + "contractAddress": "0x9fE46736679d2D9a65F0992F2272dE9f3c7fa6e0", + "function": null, + "arguments": null, + "transaction": { + "type": "0x00", + "from": "0xf39fd6e51aad88f6f4ce6ab8827279cfffb92266", + "gas": "0x3180ad", + "value": "0x0", + "data": "0x608060405234801561001057600080fd5b50612c25806100206000396000f3fe608060405234801561001057600080fd5b50600436106100365760003560e01c806306d4cd8b1461003b57806328de0f2f14610064575b600080fd5b61004e610049366004610322565b610077565b60405161005b919061038b565b60405180910390f35b61004e610072366004610404565b6100f1565b60606000610086600f846104fc565b90506000610095600f8361051e565b61009f9085610535565b905060006100ae826041610548565b60f81b9050806100c76100c2856001610548565b6101b6565b6040516020016100d8929190610577565b6040516020818303038152906040529350505050919050565b606060006100fe86610077565b905083838261018388735fbdb2315678afecb367f032d93f642f64180aa363b5cdf924909160006040518363ffffffff1660e01b81526004016101429291906105a8565b602060405180830381865af415801561015f573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906100c291906105ca565b87878660405160200161019c97969594939291906105f2565b604051602081830303815290604052915050949350505050565b606060006101c383610249565b600101905060008167ffffffffffffffff8111156101e3576101e36103a5565b6040519080825280601f01601f19166020018201604052801561020d576020820181803683370190505b5090508181016020015b600019016f181899199a1a9b1b9c1cb0b131b232b360811b600a86061a8153600a850494508461021757509392505050565b60008072184f03e93ff9f4daa797ed6e38ed64bf6a1f0160401b83106102885772184f03e93ff9f4daa797ed6e38ed64bf6a1f0160401b830492506040015b6d04ee2d6d415b85acef810000000083106102b4576d04ee2d6d415b85acef8100000000830492506020015b662386f26fc1000083106102d257662386f26fc10000830492506010015b6305f5e10083106102ea576305f5e100830492506008015b61271083106102fe57612710830492506004015b60648310610310576064830492506002015b600a831061031c576001015b92915050565b60006020828403121561033457600080fd5b5035919050565b60005b8381101561035657818101518382015260200161033e565b50506000910152565b6000815180845261037781602086016020860161033b565b601f01601f19169290920160200192915050565b60208152600061039e602083018461035f565b9392505050565b634e487b7160e01b600052604160045260246000fd5b60008083601f8401126103cd57600080fd5b50813567ffffffffffffffff8111156103e557600080fd5b6020830191508360208285010111156103fd57600080fd5b9250929050565b6000806000806060858703121561041a57600080fd5b84359350602085013567ffffffffffffffff8082111561043957600080fd5b818701915087601f83011261044d57600080fd5b81358181111561045f5761045f6103a5565b604051601f8201601f19908116603f01168101908382118183101715610487576104876103a5565b816040528281528a60208487010111156104a057600080fd5b8260208601602083013760006020848301015280975050505060408701359150808211156104cd57600080fd5b506104da878288016103bb565b95989497509550505050565b634e487b7160e01b600052601160045260246000fd5b60008261051957634e487b7160e01b600052601260045260246000fd5b500490565b808202811582820484141761031c5761031c6104e6565b8181038181111561031c5761031c6104e6565b8082018082111561031c5761031c6104e6565b6000815161056d81856020860161033b565b9290920192915050565b6001600160f81b031983168152815160009061059a81600185016020870161033b565b919091016001019392505050565b6040815260006105bb604083018561035f565b90508260208301529392505050565b6000602082840312156105dc57600080fd5b5051919050565b81818437506000910190815290565b7f646174613a6170706c69636174696f6e2f6a736f6e2c7b22646573637269707481527f696f6e223a2022537461726b7368656574222c20226e616d65223a202200000060208201528688603d8301376000878201602160f81b603d820152875161066481603e840160208c0161033b565b7f222c22696d616765223a2022646174613a696d6167652f7376672b786d6c2c25603e92909101918201527f334373766725323076696577426f782533442532373025323030253230383925605e8201527f3230353525323725323066696c6c2533442532376e6f6e65253237253230786d607e8201527f6c6e73253344253237687474702533412f2f7777772e77332e6f72672f323030609e8201527f302f737667253237253345253343646566732533452533437374796c6525334560be8201527f253430666f6e742d66616365253230253742666f6e742d66616d696c7925334160de8201527f253230253237507265737325323053746172742532303250253237253342737260fe8201527f6325334125323075726c25323825323764617461253341666f6e742f776f666661011e8201527f32253342626173653634253243643039474d6741424141414141424c3841413861013e8201527f41414141415235774141424b674141454141414141414141414141414141414161015e8201527f4141414141414141414141414150305a4756453063476a41624d42794358675a61017e8201527f6741494e794551674b3846545361517544524141424e67496b41344e4d42434161019e8201527f46687a5148684649623644566c42306a314f4d4253336f4f4953744562732f2f6101be8201527f2f6c4a776356727a47634f30676f684c45484d6369694443434e57695a6761306101de8201527f79625345555954514f6a4b427038546c737a7344526438716174586c333058746101fe8201527f30645a47467952305668444b776c62746c25324272734643773945316e64655961021e8201527f4a74732f37527762305673784d71576c636a6a775445537a2f5568752f77337361023e8201527f33746b6f496d70343464515168576f456d54337579526d70746f7553446b7a5761025e8201527f454138762f3932364a4b7539486f696e6e3673376674336d4965476c7737547161027e8201527f6437456f326a46517849766a5642494a70563269614f62547a68575932314e7461029e8201527f476772687434704d4b3457556a34624c7967542f51253242514c7879253242336102be8201527f6c482f362f6b6275496444497239446a724a496a6f394a7336524d58253242456102de8201527f6b37424f545a6b6d70397a347455524652566656307148504448375a7462364a6102fe8201527f616f6130684c335975616232473373667a72365776394536793569767025324261031e8201527f7135564c74426a514478476f5345304150313762336466376c61726a6525324261033e8201527f73637a6b7241744a334b6657304a342532424b323365744b4b556a383554616f61035e8201527f57473453346158436c427743413268676141652532423658396f696e32304e6261037e8201527f554a7264466767517049686d5247494d30372f7025324277375a7058316c473161039e8201527f6a6a51787073435141423438714445415042346950312f6a39592f4261686a356103be8201527f5943414e302f78714157496852616a6c6e694e654f50396e78433466667932556103de8201527f694843304e47386b686f6f567a6f7459334445417a417a41356b473735337a6a6103fe8201527f4853354d6e6d586b69496a6d54554d36556d4d3025324256346976752f48377861041e8201527f6a364666322f6b343472787a6449324141676742492f4c48416b394a7a35554d61043e8201527f496f4c7755344146455435725a464f33444d616655633061777351434879497061045e8201527f557a546b30784a474a454f6a4e6871436b474570496153474f6a714e466d2f5761047e8201527f4e434e3569636b71434d6e414165564c4d4c655867356971386b365752585a5261049e8201527f326c337042393831427a73475a743225324256696c4342723954494a674b67786104be8201527f365542514446253242566a4b44714e7741414948386a6949664d6e75384b68666104de8201527f584b486f4e3348634134477245786842324155442f795a554d423857547579496104fe8201527f413444634f4b656434397939504249616e426967734d454e38556b30766c547661051e8201527f304a58334e394d795a75544d763573655357413525324238556538504465547261053e8201527f645467474973566d4e33635856586a6463795275633434385866664176506e7361055e8201527f3575324d4531722532426a4731703137767a3849704f416e483444427367793361057e8201527f512f54376b33646d2f3846334232377355694877464631414f6c683055646e4961059e8201527f4471494e5164506355393145786f2f346252696a6a5169704e4e307a4c646c7a6105be8201527f504438496f547449734c38717162746f4f5149514a5a567849705931315073536105de8201527f55533231397a4c585066642f507667765751346372464d2532425769755671706105fe8201527f645a6f4e6475645872632f4745324d4a36656e3575635746694763375274364f61061e8201527f487676354d674c2532427a44733578444277696141315433554877326b63594361063e8201527f312f55666453316645316d37763742346537653350574848786533594f32483561065e8201527f25324241504f5a7965503025324251506553425468793078713965363241486a61067e8201527f6141556842432f364144484c6f476f4f657636412532426867487369317a613861069e8201527f71355a4e4d716a596c575a4d713867354248445574495370574a73526f52544a6106be8201527f56613049305a3957546b5371564b73507a3464586a7648746449684c6e7670746106de8201527f554c4330753542567579414d544b4a513930594b5267546e5769476b6d7153456106fe8201527f714b6d7256685259674b6b335443686255573671456f45637665577a6859535461071e8201527f4c32484e706735452f6d7151393956564467763352475435586d33637a68754c61073e8201527f3972685864316132372f736c5130686959366a643739614f5a43746a6f52687261075e8201527f623136575676514b725734477a786a7869723238494d697a2f7155447973495761077e8201527f7037516a667765347a556437614a735651575179524c554b484b42577938577661079e8201527f45565333584d53353656337757644f442532424638757639645477496d4b722f6107be8201527f5064626d5763775176456641616a7975566a70784e32704f56635769336c38776107de8201527f454c2f6d395070646f55494536253242504b5838315041546d67654f304231736107fe8201527f47454825324261707a353466646d534a7a333741686635366a4c7739756e504561081e8201527f35644d4b3025324237544639563843435466523979664e7355493474557a464661083e8201527f42326e536e384b4f626a64446964554c7034494a6873777878595172595a643661085e8201527f4e76436e55394d445825324252654c6e4d546d6c315a453972306b5077334e3261087e8201527f6752253242736a4573596d4953706b356c31497333594e614a4b6f6e7a65703761089e8201527f56637354316e556b62347048774b5a41796b614b6f43504630506f6d456876496108be8201527f5758656e6f5a767836774f4b313070316c3274546858793850316555776473766108de8201527f53715157766f424d7473674851554a614774494273756861776450545a5378596108fe8201527f707257757734647a7231564755744449465871726f4d4d69597346783857695461091e8201527f336463574b6f376d50554c79715657413972305974524a4c626957766a6e4c2561093e8201527f324272633452646767624e516c514141613264306d616236364d48447074314361095e8201527f6477626b51436253375053445a4d7a3746724f51713165636153304a6c74644161097e8201527f6c44527941587173364130586247707748676b70367572557757416272464d3361099e8201527f75794d764e4b6c344d6c435548537950416d3931776144454a3559595148754a6109be8201527f4d32304b575251737637486b61334770686c533258444b714f4b4245554753316109de8201527f65306b63316f323449494166486c4449794278584a4a656767423369386174566109fe8201527f67434f3064444f5a484a57596a564c416a6a397137765673456e72684b374568610a1e8201527f4c75427a42586d4d674554634531636d61436976504b6f4a766670466c794935610a3e8201527f4d70584234454325324245672f596d303454787843354e6c73596b74646f5951610a5e8201527f55656c38624673456c3748345a36734377622f38626b347458574658504b6a71610a7e8201527f5462526e64336e4c5770394f784941706c664b586747684e6c72443462354a4c610a9e8201527f5a367055753441726756614d366561357844574244476f7a707a4641376e6747610abe8201527f74596334486141775269475576637653653652414177335a576b564f4667764b610ade8201527f46364955696c4d49394964715155345134585264484866736666517770313955610afe8201527f434a49306a5773725433356f5578303678507268473271364d4533554f306c63610b1e8201527f635a557354454351784a44527854444b6c334c4948722f6162546f73686c6466610b3e8201527f51786a364f57745273466e6966444373473674336b426f344e6d424a6d615556610b5e8201527f54636c794951414a4c6a6e723042365a3859464d6e396b397967703752727848610b7e8201527f36766877624a4e41654b4d554436353974386746514a4d5377652f434f624850610b9e8201527f467671484746554e5266253242737245663354584b42725a76676b6369396972610bbe8201527f426d63442f7458616754474358634e68432532424f3539754c706e6673796f71610bde8201527f4c53313238374552776d38666165564f6d3857634437386c5a36594232793938610bfe8201527f5a4c6c4d3972557264324c514e6c324956643454727376675139363079377573610c1e8201527f5965306854506170576a71726c2532425837784665424e54253242315a644a4a610c3e8201527f572532424678745737584e7774634e7a7761672532425256656a6d4a6839656d610c5e8201527f6c495a4b69694e63694b3849554f4d33556a4a376342554e5847505853326c68610c7e8201527f253242687770676f4836567348524f63764569723372585970344c7769435a77610c9e8201527f3176486c43623552314d68623564536e4f326d6e6f475a6f5846315765574757610cbe8201527f6d7a694a314a555534715072306e694a536c4e424331636b4b6d4a6657625877610cde8201527f5577757449547a456d6a776770776142753464525066746a2f4e384143526e64610cfe8201527f616b2f4641674b674c37305058577839767a6b59322532426d34355473496b4c610d1e8201527f3037616f70444e6f676830535262535a534f397a744657516a376e574c676275610d3e8201527f364325324254374b6a44715a3667456e5277674d78306b4c5a77797962514f76610d5e8201527f514130773054782f354a42722f63595a6453574f546a774446364e6f586b796a610d7e8201527f33566a484e4751494e76426a5a734a4a3377466141516d6f5a575a5970416961610d9e8201527f574f466e6e686455524176576b557a77693062677a5a4158796f445545714863610dbe8201527f57307069454c574f777168773365765478444957724e32495371525151454c41610dde8201527f4d32365334486c723548552f48784a43436844424a6b756b6341573856415430610dfe8201527f6770545a544b4e48677a444f7234314751656a4f34677a416e6b577077464752610e1e8201527f43334c625231787a4b434875365635694674674c704f384b51596d5965467868610e3e8201527f4c32643838736469506a2f76306b427a636c51637954735766324d6445394944610e5e8201527f386d5858576a72434b253242354532756e336e6976656973526e726971317548610e7e8201527f594d6a6a69694945304b6466674d6f3163476d6b557254624f30356732737633610e9e8201527f477673525971762f61457736375472644f705435567a4641364131417939634b610ebe8201527f6f44667762544a64445750524e57517354796a6d3772486249734b466b6f4f2f610ede8201527f5a4c4376735966785973337768534338614c49344b765677373773336e347a48610efe8201527f67697061634a6e435362463945727a53357069386343577655597a4f5064327a610f1e8201527f684a2f4750437a53684f453378596c634f3350796164586a54334f6b68706841610f3e8201527f58465853766865544e5355525446565641486f4a6d7949726b6a454b6f517746610f5e8201527f4730303554334158643935764e30446d336d427332786746546c253242513572610f7e8201527f73416a6e744768707a6f62643642374e7a52664e56653130446f4e5639343753610f9e8201527f59646f635252624776636d785456786f61367a717756376d416e773544314745610fbe8201527f5474327a48382532425476514256356e37672f32615768743979794e594c3974610fde8201527f4f42744167384846435945316d4e775432454232467538544968543776565241610ffe8201527f3461587a6e6b3670545a4e6779696f73747749364b654655374c696c7041253261101e8201527f42334234474a794277574d327062466a4876734a3747754f6f616b6a6d46746a61103e8201527f59344c6254396c323239253242453646374c4475577a744c6e333749786b386a61105e8201527f356c42564b33774c7369362f416641756f6a34396c4d6b5653545045396b704761107e8201527f64304c724555534a4941413070596c4178414d642f4e4f46776f4a446458466961109e8201527f307a4f5744422f54464a705666575642574f516274724a556230636c663369256110be8201527f3242575072446f596c65545674564f45306d36793564487444725551776f414c6110de8201527f7455523365585364444d4e785866656a594674764c626c726c4a7777484b2f456110fe8201527f6957504a616b32574b35386e684e6f4c6a615a55475841756f32656f5777464561111e8201527f66612f445334496958717246714779633348726939785132693243352f73357661113e8201527f7a424d30793777334d4473774d3759325247427172464d6778374f696325324261115e8201527f30497a736d5678617a5473305263666a324f3334532f525639503269486f427561117e8201527f6c4b49594244665a46654c53356439725379664a64536c67683268644d72324f61119e8201527f5552334b6e6c506e4f41785477314a384c4d325a776e4671765a745a4a6c78786111be8201527f343873776243743272316b664875443756624831326159383849437456734b786111de8201527f4b742f31726b616c42414d74782f6f6f6d43445059626b556f4c6344624b436a6111fe8201527f7675713953544467746a584744715735564b36686347654f46697a6a3643714c61121e8201527f4f49716b57783477733245504d444e7378253242613661533230384f39784c3061123e8201527f526146586f394241645530706e452532424c695359334b536f4a41525978646e61125e8201527f7a69545a4d706961442f3438496969393834446151357976656378414673735761127e8201527f792f686274696d63253242704c386b35796f70496d4a627948712f6138797a6c61129e8201527f6c37726f4f7a586d786d4163337459585363546b65734d6344324939315a36336112be8201527f6549312f394a627755716b36737863394b52677277574d414e6543314e6e39756112de8201527f4779775473706d5538712532426c5a6d43714d674153363662674841476a514b6112fe8201527f73754a334451416a5235346d356a4c7a5a616e546c62646530253242726e663461131e8201527f385a574138546c32673277414779427748516e3552322532424e6a726542677861133e8201527f626c734e46627554776d6862414a48737a2f72416f61764c4f34317874767a5961135e8201527f4768336e4c4a426b41506a7578424a445248333048426575385567436978464e61137e8201527f437951322f4b253242385157372f6530253242664f2532423436524e5730657961139e8201527f4c726f39446a5467704a4e4d3547385179306c54644f756d73773066715045696113be8201527f393646702532424830634d774e6f376a787a596d6e4e664d5a6d64506c7932706113de8201527f6f7132575065476d67507136474c78504e34536c4b486e7870624f69754c58516113fe8201527f75583155715031676a6f38426136536c55314f416d5267707a7531735444584a61141e8201527f50754d3338546f387130344c324e777970653837327777556741675a6c70386461143e8201527f6b5166397a38544d43624d6b596b3758484375333564375a5a41656f346b5a4b61145e8201527f68784953386945354c546a334c4f6976485a7268394a3870337a4c5a436a776361147e8201527f6970354452694b6e576e49664c33386b4a684d7452776a67553525324256726d61149e8201527f714b6c6739307a376a64732f4238444b646b464c76483353253242376f4838616114be8201527f6c445a6c626734533155583574434d445342324f364b756c7a41344b763067376114de8201527f314251643054464b7733685358696e62374e6c304258725873514e6376436b386114fe8201527f6d6f394f786965783559627a78564e2f6b3738336f48545a495777393079495a61151e8201527f777672697164475473586e54384965705437597946434f4a6741395a3042794961153e8201527f455956735478522f6b73616b324268376f4b767034766e695530364d57317a4261155e8201527f4672746568647a306b6b587951786a426d7965645636644d596545386146787461157e8201527f6575777355466136466c6c54446c716430707a525a77473663467266574d627061159e8201527f384738587a6a66624d253242354658657076356f457273696c363458783663376115be8201527f5841576275696d3666387347494d58666f334a6971476b703333376854536a676115de8201527f65636862364f42472f327a31376a6f6d4469476d253242476c623146553069656115fe8201527f6e7552796977654c576767447a6d4655765545556a5a6f377356544877684f4661161e8201527f504d6b4e737146423977796d6b45307639666d7477453854377135384e594f3761163e8201527f787534623833766e46766c35755378446c472532426b4f51675249644f346a6761165e8201527f7a786a53486a4b4c7332742f6c684f647771766131415744437072763344345361167e8201527f34523741625934544362664b4637744265363554343551347a7a49714433316161169e8201527f79797557716a692532424636585337535439483943314f342f694b366b4775766116be8201527f6b512f664e3537487837456533373435622f76766e2f62482f58253242392f256116de8201527f32426762656d684f416d49705576755157757344764b517578394a44564e734b6116fe8201527f673651636d6b73515341445530346347524c523768466f5a326337785545664761171e8201527f253242776b755459474d764c6a422f6550634936416847686e5735717a45416961173e8201527f4a586377564545775869654e70536c317a6a457253253242435325324248634c61175e8201527f6f52506d7661324d6767412f69794c67536f544a555767733442794149514f3061177e8201527f4f6f705a487656627a6844494c65557155677a7a48492f667950474e7879777361179e8201527f6f796c6865534639577662795363336b4544716b32415636436c4364635535536117be8201527f6e6c4e6e4963394b794d63384c79622532423867484f4a795173466c4c6250526117de8201527f796d6d374a42743349545a544162314732444252496b514b51705451396939626117fe8201527f3665435353387a4d366161525364544b5657524d336663454a4c644b61746e7361181e8201527f724959774e4a55253242733048364461757832775a35686733706c653042474861183e8201527f756b316b4543734859446461496d4b7025324233463542317859763763486b7161185e8201527f644475306a4b645273657a3531376d63563641685148346931484e3173766c6a61187e8201527f5248366845454672682532426e72726d47316e33307a4d346749776d694d774561189e8201527f624b6842545564423141486f582532424b6741517a4f48543946494f71436b526118be8201527f4e4e623273397170496943534f753167576868497343564a73765771457175356118de8201527f47624a514b4e6a61427465394c4f69676368414a7665475773394332323033766118fe8201527f6f6e476c6b77725251323464646732796345646157554456734441785548734961191e8201527f77773665615234464665336d4a416b66426d5a6452395264774a485a6d47645261193e8201527f7950436a706a627a31712f584a34534949446b66384b4b6e6e32456c4b6d794c61195e8201527f69573442513836733151554b2f76426867524e776548766c5968687a7238706361197e8201527f67704b4b6d6f61576a7036426b594f48446c7835734b5647336365474539657661199e8201527f506e773563646667454242676f554946536238587632504553314772446a78456119be8201527f69524b6b697846716a54704d6d544b6b693148726a7a354368517155717845716119de8201527f544c6c4b6c53715571314772547231476a527130717846717a62744f6e5347656119fe8201527f3668374a6d627a4968355a6544696c315a58536a7430774375616b336c6e476f611a1e8201527f5655506f53734e663337394b326a6274716d44674d69485a42665a6c68324839611a3e8201527f75773738495469314a466a585653662f4336634f55667a346f30644178305447611a5e8201527f777448446863666a3443516d49694531444d5a42546b6c4e5a557065566f614f611a7e8201527f6e717633733234314e50503965766574594768435a50576a4979747332706173611a9e8201527f436a25324270556a54596c336b615574374f744b4a6136355850396d356e6367611abe8201527f364e686a685a587032762532426d57724341545a754a303368316b6a55756976611ade8201527f5067596e6a6e35744b4a4f6b326e6362703251414559585a69304b496d50356b611afe8201527f744961466e366b5a397743253237253239253230666f726d6174253238253237611b1e8201527f776f666632253237253239253342666f6e742d7765696768742533412532306e611b3e8201527f6f726d616c253342666f6e742d7374796c652533412532306e6f726d616c2533611b5e8201527f42666f6e742d646973706c617925334125323073776170253342253744746578611b7e8201527f74253230253742666f6e742d66616d696c792533412532302532375072657373611b9e8201527f2532305374617274253230325025323725334266696c6c253341253230776869611bbe8201527f74652537442e76616c7565253230253742666f6e742d73697a65253341253230611bde8201527f313070782533422537442e6e616d65253230253742666f6e742d73697a652533611bfe8201527f412532303470782533422537442533432f7374796c652533452533432f646566611c1e8201527f7325334525334372656374253230776964746825334425323738392532372532611c3e8201527f30686569676874253344253237353525323725323066696c6c25334425323762611c5e8201527f6c61636b2532372532302f253345253343726563742532307825334425323735611c7e8201527f2e3525323725323079253344253237352e352532372532307769647468253344611c9e8201527f2532373738253237253230686569676874253344253237343425323725323066611cbe8201527f696c6c2533442532372532333030303046462532372532302f25334525334374611cde8201527f657874253230746578742d616e63686f722533442532376d6964646c65253237611cfe8201527f2532307825334425323734342e35253237253230792533442532373333253237611d1e8201527f253230636c61737325334425323776616c756525323725334500000000000000611d3e820152612ba5612b9e6129f5611d5784018a61055b565b7f2533432f746578742533452533437265637425323078253344253237352e352581527f323725323079253344253237352e35253237253230776964746825334425323760208201527f373825323725323068656967687425334425323734342532372532307374726f60408201527f6b652533442532372532334646344630412532372532307374726f6b652d776960608201527f647468253344253237332532372532302f25334525334372656374253230782560808201527f334425323733302532372532307925334425323734352e35253237253230776960a08201527f647468253344253237353825323725323068656967687425334425323738253260c08201527f3725323066696c6c2533442532372532334646344630412532372532302f253360e08201527f4525334374657874253230746578742d616e63686f72253344253237656e64256101008201527f32372532307825334425323738372532372532307925334425323735322532376101208201527f253230636c6173732533442532376e616d6525323725334500000000000000006101408201526101580190565b86886105e3565b602160f81b81529050612bbb600182018561055b565b7f2533432f746578742533452533432f737667253345227d00000000000000000081526017019a995050505050505050505056fea26469706673582212206a2c00c13ddb4f1bcd7ee36e36f0c874d7d9dadcf38306eab3610b5a6e7af83464736f6c63430008110033", + "nonce": "0x2" + }, + "additionalContracts": [], + "isFixedGasLimit": false + }, + { + "hash": "0x05c851c318f703ca1584f93726cae8b01fcd20b307c2a5add61a15b751a6cdab", + "transactionType": "CREATE", + "contractName": null, + "contractAddress": "0xCf7Ed3AccA5a467e9e704C703E8D87F634fB0Fc9", + "function": null, + "arguments": null, + "transaction": { + "type": "0x00", + "from": "0xf39fd6e51aad88f6f4ce6ab8827279cfffb92266", + "gas": "0x42230", + "value": "0x0", + "data": "0x608060405234801561001057600080fd5b506102cf806100206000396000f3fe608060405234801561001057600080fd5b506004361061004c5760003560e01c80630194db8e14610051578063072bdcc214610076578063a391c15b14610089578063b67d77c51461009c575b600080fd5b61006461005f366004610160565b6100af565b60405190815260200160405180910390f35b610064610084366004610160565b6100ef565b61006461009736600461021e565b610129565b6100646100aa36600461021e565b61013e565b600080805b83518110156100e8578381815181106100cf576100cf610240565b60200260200101518201915080806001019150506100b4565b5092915050565b60006001815b83518110156100e85783818151811061011057610110610240565b60200260200101518202915080806001019150506100f5565b60006101358284610256565b90505b92915050565b60006101358284610278565b634e487b7160e01b600052604160045260246000fd5b6000602080838503121561017357600080fd5b823567ffffffffffffffff8082111561018b57600080fd5b818501915085601f83011261019f57600080fd5b8135818111156101b1576101b161014a565b8060051b604051601f19603f830116810181811085821117156101d6576101d661014a565b6040529182528482019250838101850191888311156101f457600080fd5b938501935b82851015610212578435845293850193928501926101f9565b98975050505050505050565b6000806040838503121561023157600080fd5b50508035926020909101359150565b634e487b7160e01b600052603260045260246000fd5b60008261027357634e487b7160e01b600052601260045260246000fd5b500490565b8181038181111561013857634e487b7160e01b600052601160045260246000fdfea2646970667358221220fcdef23ba4219270ddb3ab764e22a87e229c05e6f1dfc4eeea983fa1a1dac91f64736f6c63430008110033", + "nonce": "0x3" + }, + "additionalContracts": [], + "isFixedGasLimit": false + }, + { + "hash": "0x0156ed37608a55ed8897ef8eb39ae382ec9b73dbe71b548c8f747ed4587eda48", + "transactionType": "CREATE", + "contractName": "Evmsheet", + "contractAddress": "0xDc64a140Aa3E981100a9becA4E685f962f0cF6C9", + "function": null, + "arguments": [ + "0x9fE46736679d2D9a65F0992F2272dE9f3c7fa6e0", + "10000000000000000" + ], + "transaction": { + "type": "0x00", + "from": "0xf39fd6e51aad88f6f4ce6ab8827279cfffb92266", + "gas": "0x34bf99", + "value": "0x0", + "data": "0x608060405234801561001057600080fd5b50604051612ed9380380612ed983398101604081905261002f916100b1565b61003833610061565b600280546001600160a01b0319166001600160a01b0393909316929092179091556001556100eb565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b600080604083850312156100c457600080fd5b82516001600160a01b03811681146100db57600080fd5b6020939093015192949293505050565b612ddf806100fa6000396000f3fe608060405260043610620000a95760003560e01c80638da5cb5b116200006c5780638da5cb5b146200016d578063ab2fa65a146200018d578063ae28505e14620001b4578063c56c4cf114620001d9578063f2fde38b14620001fb578063f52be2a2146200022057600080fd5b806303fb31e814620000ae5780631164c83d14620000d5578063145e414714620000ec5780635787cacb146200012e578063715018a61462000155575b600080fd5b348015620000bb57600080fd5b50620000d3620000cd36600462000778565b62000247565b005b620000d3620000e6366004620007e9565b62000273565b348015620000f957600080fd5b50620001116200010b36600462000864565b620004b2565b6040516001600160a01b0390911681526020015b60405180910390f35b3480156200013b57600080fd5b50620001466200054f565b60405162000125919062000891565b3480156200016257600080fd5b50620000d3620005b3565b3480156200017a57600080fd5b506000546001600160a01b031662000111565b3480156200019a57600080fd5b50620001a5620005cb565b604051620001259190620008e0565b348015620001c157600080fd5b5062000111620001d336600462000930565b620005f7565b348015620001e657600080fd5b5060025462000111906001600160a01b031681565b3480156200020857600080fd5b50620000d36200021a36600462000778565b62000622565b3480156200022d57600080fd5b506200023860015481565b60405190815260200162000125565b62000251620006a1565b600280546001600160a01b0319166001600160a01b0392909216919091179055565b60015434146200029d5760405163723a79e360e11b81523460048201526024015b60405180910390fd5b600060405180602001620002b1906200074d565b6020820181038252601f19601f8201166040525090506000828251602084016000f56002546040516356d3163d60e01b81526001600160a01b0391821660048201529192508216906356d3163d90602401600060405180830381600087803b1580156200031d57600080fd5b505af115801562000332573d6000803e3d6000fd5b505060405163c47f002760e01b81526001600160a01b038416925063c47f0027915062000366908a908a906004016200094a565b600060405180830381600087803b1580156200038157600080fd5b505af115801562000396573d6000803e3d6000fd5b5050604051635c26412360e11b81526001600160a01b038416925063b84c82469150620003ca90889088906004016200094a565b600060405180830381600087803b158015620003e557600080fd5b505af1158015620003fa573d6000803e3d6000fd5b505060405163f2fde38b60e01b81523260048201526001600160a01b038416925063f2fde38b9150602401600060405180830381600087803b1580156200044057600080fd5b505af115801562000455573d6000803e3d6000fd5b5050600380546001810182556000919091527fc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b0180546001600160a01b0319166001600160a01b0394909416939093179092555050505050505050565b600060ff60f81b838360405180602001620004cd906200074d565b6020820181038252601f19601f82011660405250805190602001206040516020016200053094939291906001600160f81b031994909416845260609290921b6bffffffffffffffffffffffff191660018401526015830152603582015260550190565b60408051601f1981840301815291905280516020909101209392505050565b60606003805480602002602001604051908101604052809291908181526020018280548015620005a957602002820191906000526020600020905b81546001600160a01b031681526001909101906020018083116200058a575b5050505050905090565b620005bd620006a1565b620005c96000620006fd565b565b606060405180602001620005df906200074d565b601f1982820381018352601f90910116604052919050565b600381815481106200060857600080fd5b6000918252602090912001546001600160a01b0316905081565b6200062c620006a1565b6001600160a01b038116620006935760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b606482015260840162000294565b6200069e81620006fd565b50565b6000546001600160a01b03163314620005c95760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015260640162000294565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b612430806200097a83390190565b80356001600160a01b03811681146200077357600080fd5b919050565b6000602082840312156200078b57600080fd5b62000796826200075b565b9392505050565b60008083601f840112620007b057600080fd5b50813567ffffffffffffffff811115620007c957600080fd5b602083019150836020828501011115620007e257600080fd5b9250929050565b6000806000806000606086880312156200080257600080fd5b853567ffffffffffffffff808211156200081b57600080fd5b6200082989838a016200079d565b909750955060208801359150808211156200084357600080fd5b5062000852888289016200079d565b96999598509660400135949350505050565b600080604083850312156200087857600080fd5b62000883836200075b565b946020939093013593505050565b6020808252825182820181905260009190848201906040850190845b81811015620008d45783516001600160a01b031683529284019291840191600101620008ad565b50909695505050505050565b600060208083528351808285015260005b818110156200090f57858101830151858201604001528201620008f1565b506000604082860101526040601f19601f8301168501019250505092915050565b6000602082840312156200094357600080fd5b5035919050565b60208152816020820152818360408301376000818301604090810191909152601f909201601f1916010191905056fe60806040523480156200001157600080fd5b50604051806040016040528060078152602001660536865657420360cc1b815250604051806040016040528060048152602001630534854360e41b81525062000069620000636200008f60201b60201c565b62000093565b600162000077838262000188565b50600262000086828262000188565b50505062000254565b3390565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b634e487b7160e01b600052604160045260246000fd5b600181811c908216806200010e57607f821691505b6020821081036200012f57634e487b7160e01b600052602260045260246000fd5b50919050565b601f8211156200018357600081815260208120601f850160051c810160208610156200015e5750805b601f850160051c820191505b818110156200017f578281556001016200016a565b5050505b505050565b81516001600160401b03811115620001a457620001a4620000e3565b620001bc81620001b58454620000f9565b8462000135565b602080601f831160018114620001f45760008415620001db5750858301515b600019600386901b1c1916600185901b1785556200017f565b600085815260208120601f198616915b82811015620002255788860151825594840194600190910190840162000204565b5085821015620002445787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b6121cc80620002646000396000f3fe608060405234801561001057600080fd5b50600436106102275760003560e01c8063715018a611610130578063b85d8b85116100b8578063cf0983981161007c578063cf09839814610512578063cfbe95d814610535578063df4ca20614610556578063e985e9c514610576578063f2fde38b146105a457600080fd5b8063b85d8b85146104a4578063b88d4fde146104ce578063b8c368ec146104e1578063c47f0027146104ec578063c87b56dd146104ff57600080fd5b806395d89b41116100ff57806395d89b4114610439578063a22cb46514610441578063b46ebb1214610454578063b6d658e114610467578063b84c82461461049157600080fd5b8063715018a6146103fa578063768d5029146104025780638ada6b0f146104155780638da5cb5b1461042857600080fd5b80631b06443c116101b35780634f6ccce7116101825780634f6ccce71461038157806356d3163d146103a15780636352211e146103b45780636a0abc74146103c757806370a08231146103e757600080fd5b80631b06443c14610335578063206848f61461034857806323b872dd1461035b57806342842e0e1461036e57600080fd5b8063081812fc116101fa578063081812fc146102a1578063095ea7b3146102e2578063172b9eed146102f757806318160ddd1461030a5780631941fd141461031357600080fd5b806301ffc9a71461022c57806302f3c4c91461025457806306fdde03146102745780630715a24a1461027c575b600080fd5b61023f61023a36600461176a565b6105b7565b60405190151581526020015b60405180910390f35b610267610262366004611861565b610609565b60405161024b9190611951565b610267610638565b6102936fffffffffffffffffffffffffffffffff81565b60405190815260200161024b565b6102ca6102af366004611964565b6005602052600090815260409020546001600160a01b031681565b6040516001600160a01b03909116815260200161024b565b6102f56102f036600461197d565b6106c6565b005b6102676103053660046119a9565b6107ad565b61029360075481565b610326610321366004611964565b610875565b60405161024b939291906119de565b6102ca610343366004611a0e565b61092a565b610326610356366004611964565b6109e3565b6102f5610369366004611a2b565b610ae1565b6102f561037c366004611a2b565b610ca8565b61029361038f366004611964565b60086020526000908152604090205481565b6102f56103af366004611a0e565b610da0565b6102ca6103c2366004611964565b610dca565b6103da6103d53660046119a9565b610e1c565b60405161024b9190611a6c565b6102936103f5366004611a0e565b610e60565b6102f5610ec3565b6102f5610410366004611af9565b610ed7565b6009546102ca906001600160a01b031681565b6000546001600160a01b03166102ca565b610267611035565b6102f561044f366004611b63565b611042565b610267610462366004611964565b6110ae565b61047a610475366004611964565b611258565b60408051921515835260208301919091520161024b565b6102f561049f366004611ba1565b611275565b6104b56104b2366004611964565b90565b6040516001600160e01b0319909116815260200161024b565b6102f56104dc366004611be3565b6112c6565b6102ca600160801b81565b6102f56104fa366004611ba1565b6113ae565b61026761050d366004611964565b6113ff565b61023f610520366004611a0e565b600160801b6001600160a01b03919091161090565b61023f610543366004611861565b516001600160a01b0316600160801b1490565b610569610564366004611964565b6114c9565b60405161024b9190611c16565b61023f610584366004611c4d565b600660209081526000928352604080842090915290825290205460ff1681565b6102f56105b2366004611a0e565b611526565b60006301ffc9a760e01b6001600160e01b0319831614806105e857506380ac58cd60e01b6001600160e01b03198316145b806106035750635b5e139f60e01b6001600160e01b03198316145b92915050565b6060816020015160405160200161062291815260200190565b6040516020818303038152906040529050919050565b6001805461064590611c7b565b80601f016020809104026020016040519081016040528092919081815260200182805461067190611c7b565b80156106be5780601f10610693576101008083540402835291602001916106be565b820191906000526020600020905b8154815290600101906020018083116106a157829003601f168201915b505050505081565b6000818152600360205260409020546001600160a01b03163381148061070f57506001600160a01b038116600090815260066020908152604080832033845290915290205460ff165b6107515760405162461bcd60e51b815260206004820152600e60248201526d1393d517d055551213d49256915160921b60448201526064015b60405180910390fd5b60008281526005602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b606060006107ba83610e1c565b9050606060005b825181101561086d576000806107ef8584815181106107e2576107e2611cb5565b6020026020010151611258565b9150915081156108335783610803826110ae565b61080c90611ccb565b60405160200161081d929190611cef565b6040516020818303038152906040529350610858565b6040516108469085908390602001611cef565b60405160208183030381529060405293505b5050808061086590611d27565b9150506107c1565b509392505050565b600a602052600090815260409020805460018201546002830180546001600160a01b039093169391926108a790611c7b565b80601f01602080910402602001604051908101604052809291908181526020018280546108d390611c7b565b80156109205780601f106108f557610100808354040283529160200191610920565b820191906000526020600020905b81548152906001019060200180831161090357829003601f168201915b5050505050905083565b6000600160801b6001600160a01b03831610156109da576000610955836001600160a01b03166110ae565b604051632d737e4960e21b8152909150735fbdb2315678afecb367f032d93f642f64180aa39063b5cdf92490610992908490600090600401611d40565b602060405180830381865af41580156109af573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906109d39190611d62565b9392505050565b5090565b919050565b60008181526003602052604081205481906060906001600160a01b0316610a1057600160801b9250610a2b565b6000848152600a60205260409020546001600160a01b031692505b6000848152600a60205260409020600181015460029091018054859291908190610a5490611c7b565b80601f0160208091040260200160405190810160405280929190818152602001828054610a8090611c7b565b8015610acd5780601f10610aa257610100808354040283529160200191610acd565b820191906000526020600020905b815481529060010190602001808311610ab057829003601f168201915b505050505090509250925092509193909250565b6000818152600360205260409020546001600160a01b03848116911614610b375760405162461bcd60e51b815260206004820152600a60248201526957524f4e475f46524f4d60b01b6044820152606401610748565b6001600160a01b038216610b815760405162461bcd60e51b81526020600482015260116024820152701253959053125117d49150d25412515395607a1b6044820152606401610748565b336001600160a01b0384161480610bbb57506001600160a01b038316600090815260066020908152604080832033845290915290205460ff165b80610bdc57506000818152600560205260409020546001600160a01b031633145b610c195760405162461bcd60e51b815260206004820152600e60248201526d1393d517d055551213d49256915160921b6044820152606401610748565b6001600160a01b0380841660008181526004602090815260408083208054600019019055938616808352848320805460010190558583526003825284832080546001600160a01b03199081168317909155600590925284832080549092169091559251849392917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b610cb3838383610ae1565b6001600160a01b0382163b1580610d5c5750604051630a85bd0160e11b8082523360048301526001600160a01b03858116602484015260448301849052608060648401526000608484015290919084169063150b7a029060a4016020604051808303816000875af1158015610d2c573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610d509190611d7b565b6001600160e01b031916145b610d9b5760405162461bcd60e51b815260206004820152601060248201526f155394d0519157d49150d2541251539560821b6044820152606401610748565b505050565b610da861159f565b600980546001600160a01b0319166001600160a01b0392909216919091179055565b6000818152600360205260409020546001600160a01b0316806109de5760405162461bcd60e51b815260206004820152600a6024820152691393d517d3525395115160b21b6044820152606401610748565b60608082516040519150602081048252602082016020850160005b83811015610e4f578181015183820152602001610e37565b505050810160200160405292915050565b60006001600160a01b038216610ea75760405162461bcd60e51b815260206004820152600c60248201526b5a45524f5f4144445245535360a01b6044820152606401610748565b506001600160a01b031660009081526004602052604090205490565b610ecb61159f565b610ed560006115f9565b565b6000858152600360205260409020546001600160a01b0316610f2f57610efd3286611649565b60078054600090815260086020526040812087905581546001929190610f24908490611d98565b90915550610f889050565b6000858152600360205260409020546001600160a01b03163214610f8857600085815260036020526040908190205490516324f3f02560e21b81526001600160a01b039091166004820152326024820152604401610748565b6040518060600160405280856001600160a01b0316815260200184815260200183838080601f0160208091040260200160405190810160405280939291908181526020018383808284376000920182905250939094525050878152600a6020908152604091829020845181546001600160a01b0319166001600160a01b0390911617815590840151600182015590830151909150600282019061102b9082611df9565b5050505050505050565b6002805461064590611c7b565b3360008181526006602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b6000818152600a6020908152604080832081516060818101845282546001600160a01b0316825260018301549482019490945260028201805494959491938401916110f890611c7b565b80601f016020809104026020016040519081016040528092919081815260200182805461112490611c7b565b80156111715780601f1061114657610100808354040283529160200191611171565b820191906000526020600020905b81548152906001019060200180831161115457829003601f168201915b505050505081525050905061119381516001600160a01b0316600160801b1490565b156111a1576109d381610609565b60006111b0826000015161092a565b905060006111bf836020015190565b905060006111d084604001516107ad565b90506000836001600160a01b031683836040516020016111f1929190611eb9565b60408051601f198184030181529082905261120b91611eea565b600060405180830381855afa9150503d8060008114611246576040519150601f19603f3d011682016040523d82523d6000602084013e61124b565b606091505b5098975050505050505050565b600080611266600284611f06565b60019081149493901c92915050565b61127d61159f565b7f8dca0271872d00b3de3abafca544c52fcd7d512dd852c9894fa2c118ac759a93600283836040516112b193929190611fce565b60405180910390a16002610d9b828483611ffe565b6112d1858585610ae1565b6001600160a01b0384163b15806113685750604051630a85bd0160e11b808252906001600160a01b0386169063150b7a02906113199033908a908990899089906004016120be565b6020604051808303816000875af1158015611338573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061135c9190611d7b565b6001600160e01b031916145b6113a75760405162461bcd60e51b815260206004820152601060248201526f155394d0519157d49150d2541251539560821b6044820152606401610748565b5050505050565b6113b661159f565b7fb65b7b5ea384affd30f77f842e057d29dd1b13f133adf69a724a8105b164ab75600183836040516113ea93929190611fce565b60405180910390a16001610d9b828483611ffe565b6000818152600360205260409020546060906001600160a01b03168061143b57604051630243d1a960e21b815260048101849052602401610748565b6000611446846110ae565b6009546040516328de0f2f60e01b81529192506001600160a01b0316906328de0f2f9061147c90879085906001906004016120fd565b600060405180830381865afa158015611499573d6000803e3d6000fd5b505050506040513d6000823e601f3d908101601f191682016040526114c19190810190612128565b949350505050565b604080516060808201835260008083526020830181905292820152906114ee836110ae565b6040805160608101825285815260009586526003602090815295829020546001600160a01b0316958101959095528401525090919050565b61152e61159f565b6001600160a01b0381166115935760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610748565b61159c816115f9565b50565b6000546001600160a01b03163314610ed55760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610748565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b6001600160a01b0382166116935760405162461bcd60e51b81526020600482015260116024820152701253959053125117d49150d25412515395607a1b6044820152606401610748565b6000818152600360205260409020546001600160a01b0316156116e95760405162461bcd60e51b815260206004820152600e60248201526d1053149150511657d3525395115160921b6044820152606401610748565b6001600160a01b038216600081815260046020908152604080832080546001019055848352600390915280822080546001600160a01b0319168417905551839291907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b6001600160e01b03198116811461159c57600080fd5b60006020828403121561177c57600080fd5b81356109d381611754565b634e487b7160e01b600052604160045260246000fd5b604051601f8201601f1916810167ffffffffffffffff811182821017156117c6576117c6611787565b604052919050565b6001600160a01b038116811461159c57600080fd5b600067ffffffffffffffff8211156117fd576117fd611787565b50601f01601f191660200190565b600082601f83011261181c57600080fd5b813561182f61182a826117e3565b61179d565b81815284602083860101111561184457600080fd5b816020850160208301376000918101602001919091529392505050565b60006020828403121561187357600080fd5b813567ffffffffffffffff8082111561188b57600080fd5b908301906060828603121561189f57600080fd5b6040516060810181811083821117156118ba576118ba611787565b60405282356118c8816117ce565b8152602083810135908201526040830135828111156118e657600080fd5b6118f28782860161180b565b60408301525095945050505050565b60005b8381101561191c578181015183820152602001611904565b50506000910152565b6000815180845261193d816020860160208601611901565b601f01601f19169290920160200192915050565b6020815260006109d36020830184611925565b60006020828403121561197657600080fd5b5035919050565b6000806040838503121561199057600080fd5b823561199b816117ce565b946020939093013593505050565b6000602082840312156119bb57600080fd5b813567ffffffffffffffff8111156119d257600080fd5b6114c18482850161180b565b60018060a01b0384168152826020820152606060408201526000611a056060830184611925565b95945050505050565b600060208284031215611a2057600080fd5b81356109d3816117ce565b600080600060608486031215611a4057600080fd5b8335611a4b816117ce565b92506020840135611a5b816117ce565b929592945050506040919091013590565b6020808252825182820181905260009190848201906040850190845b81811015611aa457835183529284019291840191600101611a88565b50909695505050505050565b60008083601f840112611ac257600080fd5b50813567ffffffffffffffff811115611ada57600080fd5b602083019150836020828501011115611af257600080fd5b9250929050565b600080600080600060808688031215611b1157600080fd5b853594506020860135611b23816117ce565b935060408601359250606086013567ffffffffffffffff811115611b4657600080fd5b611b5288828901611ab0565b969995985093965092949392505050565b60008060408385031215611b7657600080fd5b8235611b81816117ce565b915060208301358015158114611b9657600080fd5b809150509250929050565b60008060208385031215611bb457600080fd5b823567ffffffffffffffff811115611bcb57600080fd5b611bd785828601611ab0565b90969095509350505050565b600080600080600060808688031215611bfb57600080fd5b8535611c06816117ce565b94506020860135611b23816117ce565b602081528151602082015260018060a01b036020830151166040820152600060408301516060808401526114c16080840182611925565b60008060408385031215611c6057600080fd5b8235611c6b816117ce565b91506020830135611b96816117ce565b600181811c90821680611c8f57607f821691505b602082108103611caf57634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052603260045260246000fd5b80516020808301519190811015611caf5760001960209190910360031b1b16919050565b60008351611d01818460208801611901565b9190910191825250602001919050565b634e487b7160e01b600052601160045260246000fd5b600060018201611d3957611d39611d11565b5060010190565b604081526000611d536040830185611925565b90508260208301529392505050565b600060208284031215611d7457600080fd5b5051919050565b600060208284031215611d8d57600080fd5b81516109d381611754565b8082018082111561060357610603611d11565b601f821115610d9b57600081815260208120601f850160051c81016020861015611dd25750805b601f850160051c820191505b81811015611df157828155600101611dde565b505050505050565b815167ffffffffffffffff811115611e1357611e13611787565b611e2781611e218454611c7b565b84611dab565b602080601f831160018114611e5c5760008415611e445750858301515b600019600386901b1c1916600185901b178555611df1565b600085815260208120601f198616915b82811015611e8b57888601518255948401946001909101908401611e6c565b5085821015611ea95787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b6001600160e01b0319831681528151600090611edc816004850160208701611901565b919091016004019392505050565b60008251611efc818460208701611901565b9190910192915050565b600082611f2357634e487b7160e01b600052601260045260246000fd5b500690565b60008154611f3581611c7b565b808552602060018381168015611f525760018114611f6c57611f9a565b60ff1985168884015283151560051b880183019550611f9a565b866000528260002060005b85811015611f925781548a8201860152908301908401611f77565b890184019650505b505050505092915050565b81835281816020850137506000828201602090810191909152601f909101601f19169091010190565b604081526000611fe16040830186611f28565b8281036020840152611ff4818587611fa5565b9695505050505050565b67ffffffffffffffff83111561201657612016611787565b61202a836120248354611c7b565b83611dab565b6000601f84116001811461205e57600085156120465750838201355b600019600387901b1c1916600186901b1783556113a7565b600083815260209020601f19861690835b8281101561208f578685013582556020948501946001909201910161206f565b50868210156120ac5760001960f88860031b161c19848701351681555b505060018560011b0183555050505050565b6001600160a01b03868116825285166020820152604081018490526080606082018190526000906120f29083018486611fa5565b979650505050505050565b8381526060602082015260006121166060830185611925565b8281036040840152611ff48185611f28565b60006020828403121561213a57600080fd5b815167ffffffffffffffff81111561215157600080fd5b8201601f8101841361216257600080fd5b805161217061182a826117e3565b81815285602083850101111561218557600080fd5b611a0582602083016020860161190156fea26469706673582212203fc548aa4f22e6f4c01757ba3f2e0383630418b3d17601758718ab19a4d9918d64736f6c63430008110033a26469706673582212207932e8c793f9a96d9606a8907a6671f54c0fb1ed5a763048e13b429274e7706c64736f6c634300081100330000000000000000000000009fe46736679d2d9a65f0992f2272de9f3c7fa6e0000000000000000000000000000000000000000000000000002386f26fc10000", + "nonce": "0x4" + }, + "additionalContracts": [], + "isFixedGasLimit": false + } + ], + "receipts": [ + { + "transactionHash": "0x045f89ca387f2853a2a30f92868bdf8945580b501a47d7aef7e168a4febacd61", + "transactionIndex": "0x0", + "blockHash": "0x073d71b449878603d31287338acca94dcb45b40e11e449e2ab2b1656be333e6a", + "blockNumber": "0xb", + "from": "0xf39Fd6e51aad88F6F4ce6aB8827279cffFb92266", + "to": null, + "cumulativeGasUsed": "0xf4240", + "gasUsed": "0x7a120", + "contractAddress": "0xe7f1725E7734CE288F8367e1Bb143E90bb3F0512", + "logs": [], + "status": "0x1", + "logsBloom": "0x00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", + "type": "0x0", + "effectiveGasPrice": "0xf4240" + }, + { + "transactionHash": "0x000128fbbcf1ce04facb50cb06b25514ad5927f52ec5b5b497f9cc8acff8a383", + "transactionIndex": "0x0", + "blockHash": "0x0365db0c5c55e83555a1ad1cb190a6c89c8d9ee6946e001ad1599f03c142c22d", + "blockNumber": "0xc", + "from": "0xf39Fd6e51aad88F6F4ce6aB8827279cffFb92266", + "to": null, + "cumulativeGasUsed": "0xf4240", + "gasUsed": "0x7a120", + "contractAddress": "0x9fE46736679d2D9a65F0992F2272dE9f3c7fa6e0", + "logs": [], + "status": "0x1", + "logsBloom": "0x00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", + "type": "0x0", + "effectiveGasPrice": "0xf4240" + }, + { + "transactionHash": "0x027230bd60128347bd04e3fa2055be2e2ba4fcd489e1ac59cc7d43bbceab7797", + "transactionIndex": "0x0", + "blockHash": "0x022f9bb72b6d7865f23e51646c45fad560519fa7d52ccc958e9823cc1f365f8f", + "blockNumber": "0xd", + "from": "0xf39Fd6e51aad88F6F4ce6aB8827279cffFb92266", + "to": null, + "cumulativeGasUsed": "0xf4240", + "gasUsed": "0x7a120", + "contractAddress": "0xCf7Ed3AccA5a467e9e704C703E8D87F634fB0Fc9", + "logs": [], + "status": "0x1", + "logsBloom": "0x00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", + "type": "0x0", + "effectiveGasPrice": "0xf4240" + } + ], + "libraries": [ + "lib/eth-projects-monorepo/packages/eth-projects-contracts/contracts/lib/utils/Bytes.sol:Bytes:0x5fbdb2315678afecb367f032d93f642f64180aa3" + ], + "pending": [ + "0x05c851c318f703ca1584f93726cae8b01fcd20b307c2a5add61a15b751a6cdab", + "0x0156ed37608a55ed8897ef8eb39ae382ec9b73dbe71b548c8f747ed4587eda48" + ], + "returns": {}, + "timestamp": 1689178735, + "chain": 1263227476, + "multi": false, + "commit": "24c72b7" +} \ No newline at end of file diff --git a/packages/starksheet-solidity/broadcast/Evmsheet.s.sol/1263227476/run-1689179242.json b/packages/starksheet-solidity/broadcast/Evmsheet.s.sol/1263227476/run-1689179242.json new file mode 100644 index 00000000..fca60f74 --- /dev/null +++ b/packages/starksheet-solidity/broadcast/Evmsheet.s.sol/1263227476/run-1689179242.json @@ -0,0 +1,158 @@ +{ + "transactions": [ + { + "hash": "0x045f89ca387f2853a2a30f92868bdf8945580b501a47d7aef7e168a4febacd61", + "transactionType": "CREATE", + "contractName": "Bytes", + "contractAddress": "0x5FbDB2315678afecb367f032d93F642f64180aa3", + "function": null, + "arguments": null, + "transaction": { + "type": "0x00", + "from": "0xf39fd6e51aad88f6f4ce6ab8827279cfffb92266", + "gas": "0x1387ed", + "data": "0x6110d661003a600b82828239805160001a60731461002d57634e487b7160e01b600052600060045260246000fd5b30600052607381538281f3fe73000000000000000000000000000000000000000030146080604052600436106101625760003560e01c8063a5eb31ee116100cd578063d1ffb56111610086578063d1ffb561146103fb578063d442584f1461042b578063e004139614610454578063f1142fb314610474578063f647f8fb14610487578063f83b670f146104b257600080fd5b8063a5eb31ee14610344578063a8d8f00f1461036b578063b5cdf92414610396578063b63711df146103a9578063be8b3430146103bc578063c29616bd146103cf57600080fd5b80635ef849301161011f5780635ef8493014610241578063913c97b41461026b57806397e6175c1461029f57806399dd9bd7146102cb5780639ae4c3d1146102ec5780639cee499e1461031857600080fd5b8063042aa0841461016757806305d3bb74146101985780631a7431ef146101c0578063235266d2146101e357806348137709146101f65780634d66a2ae1461021b575b600080fd5b61017a610175366004610ec0565b6104de565b6040516001600160d01b031990911681526020015b60405180910390f35b6101ab6101a6366004610ec0565b610540565b60405163ffffffff909116815260200161018f565b6101d36101ce366004610f05565b61059d565b604051901515815260200161018f565b6101d36101f1366004610f4c565b610652565b610209610204366004610ec0565b6106b5565b60405160ff909116815260200161018f565b61022e610229366004610fa6565b610711565b60405161ffff909116815260200161018f565b61025461024f366004610ec0565b61071e565b60405165ffffffffffff909116815260200161018f565b61027e610279366004610ec0565b610772565b6040516fffffffffffffffffffffffffffffffff909116815260200161018f565b6102b26102ad366004610ec0565b6107d0565b6040516001600160a01b0319909116815260200161018f565b6102de6102d9366004610ec0565b61082e565b60405190815260200161018f565b6102ff6102fa366004610ec0565b61088c565b60405167ffffffffffffffff909116815260200161018f565b61032b610326366004610ec0565b6108e9565b6040516001600160d81b0319909116815260200161018f565b610357610352366004610ec0565b610946565b60405162ffffff909116815260200161018f565b61037e610379366004610ec0565b6109a3565b60405166ffffffffffffff909116815260200161018f565b6102de6103a4366004610ec0565b610a00565b6102ff6103b7366004610ec0565b610a55565b61022e6103ca366004610ec0565b610aa9565b6103e26103dd366004610ec0565b610b06565b6040516001600160c81b0319909116815260200161018f565b61040e610409366004610ec0565b610b5a565b6040516bffffffffffffffffffffffff909116815260200161018f565b61043e610439366004610ec0565b610bae565b60405164ffffffffff909116815260200161018f565b610467610462366004610fe3565b610c02565b60405161018f9190611031565b6102b2610482366004610ec0565b610d0f565b61049a610495366004610ec0565b610d64565b6040516001600160a01b03909116815260200161018f565b6104c56104c0366004610ec0565b610dc9565b6040516001600160f81b0319909116815260200161018f565b60006104eb82600661107f565b835110156105375760405162461bcd60e51b8152602060048201526014602482015273746f4279746573365f6f75744f66426f756e647360601b60448201526064015b60405180910390fd5b50016006015190565b600061054d82600461107f565b835110156105945760405162461bcd60e51b8152602060048201526014602482015273746f55696e7433325f6f75744f66426f756e647360601b604482015260640161052e565b50016004015190565b600080600190508354600260018083161561010002038216048451808214600181146105cc5760009450610644565b821561064457602083106001811461062957600189600052602060002060208a018581015b600284828410010361062057815183541461060f5760009950600093505b6001830192506020820191506105f1565b50505050610642565b6101008086040294506020880151851461064257600095505b505b509293505050505b92915050565b81518151600091600191811480831461066e57600092506106ab565b600160208701838101602088015b60028483851001036106a657805183511461069a5760009650600093505b6020928301920161067c565b505050505b5090949350505050565b60006106c282600161107f565b835110156107085760405162461bcd60e51b8152602060048201526013602482015272746f55696e74385f6f75744f66426f756e647360681b604482015260640161052e565b50016001015190565b600061064c826000610aa9565b600061072b82600661107f565b835110156105375760405162461bcd60e51b8152602060048201526014602482015273746f55696e7434385f6f75744f66426f756e647360601b604482015260640161052e565b600061077f82601061107f565b835110156107c75760405162461bcd60e51b8152602060048201526015602482015274746f55696e743132385f6f75744f66426f756e647360581b604482015260640161052e565b50016010015190565b60006107dd82600c61107f565b835110156108255760405162461bcd60e51b8152602060048201526015602482015274746f427974657331325f6f75744f66426f756e647360581b604482015260640161052e565b5001600c015190565b600061083b82602061107f565b835110156108835760405162461bcd60e51b8152602060048201526015602482015274746f427974657333325f6f75744f66426f756e647360581b604482015260640161052e565b50016020015190565b600061089982600861107f565b835110156108e05760405162461bcd60e51b8152602060048201526014602482015273746f55696e7436345f6f75744f66426f756e647360601b604482015260640161052e565b50016008015190565b60006108f682600561107f565b8351101561093d5760405162461bcd60e51b8152602060048201526014602482015273746f4279746573355f6f75744f66426f756e647360601b604482015260640161052e565b50016005015190565b600061095382600361107f565b8351101561099a5760405162461bcd60e51b8152602060048201526014602482015273746f55696e7432345f6f75744f66426f756e647360601b604482015260640161052e565b50016003015190565b60006109b082600761107f565b835110156109f75760405162461bcd60e51b8152602060048201526014602482015273746f55696e7435365f6f75744f66426f756e647360601b604482015260640161052e565b50016007015190565b6000610a0d82602061107f565b835110156108835760405162461bcd60e51b8152602060048201526015602482015274746f55696e743235365f6f75744f66426f756e647360581b604482015260640161052e565b6000610a6282600861107f565b835110156108e05760405162461bcd60e51b8152602060048201526014602482015273746f4279746573385f6f75744f66426f756e647360601b604482015260640161052e565b6000610ab682600261107f565b83511015610afd5760405162461bcd60e51b8152602060048201526014602482015273746f55696e7431365f6f75744f66426f756e647360601b604482015260640161052e565b50016002015190565b6000610b1382600761107f565b835110156109f75760405162461bcd60e51b8152602060048201526014602482015273746f4279746573375f6f75744f66426f756e647360601b604482015260640161052e565b6000610b6782600c61107f565b835110156108255760405162461bcd60e51b8152602060048201526014602482015273746f55696e7439365f6f75744f66426f756e647360601b604482015260640161052e565b6000610bbb82600561107f565b8351101561093d5760405162461bcd60e51b8152602060048201526014602482015273746f55696e7434305f6f75744f66426f756e647360601b604482015260640161052e565b606081610c1081601f61107f565b1015610c4f5760405162461bcd60e51b815260206004820152600e60248201526d736c6963655f6f766572666c6f7760901b604482015260640161052e565b610c59828461107f565b84511015610c9d5760405162461bcd60e51b8152602060048201526011602482015270736c6963655f6f75744f66426f756e647360781b604482015260640161052e565b606082158015610cbc5760405191506000825260208201604052610d06565b6040519150601f8416801560200281840101858101878315602002848b0101015b81831015610cf5578051835260209283019201610cdd565b5050858452601f01601f1916604052505b50949350505050565b6000610d1c82601061107f565b835110156107c75760405162461bcd60e51b8152602060048201526015602482015274746f427974657331365f6f75744f66426f756e647360581b604482015260640161052e565b6000610d7182601461107f565b83511015610db95760405162461bcd60e51b8152602060048201526015602482015274746f416464726573735f6f75744f66426f756e647360581b604482015260640161052e565b500160200151600160601b900490565b6000610dd682600161107f565b835110156107085760405162461bcd60e51b8152602060048201526014602482015273746f4279746573315f6f75744f66426f756e647360601b604482015260640161052e565b634e487b7160e01b600052604160045260246000fd5b600082601f830112610e4457600080fd5b813567ffffffffffffffff80821115610e5f57610e5f610e1d565b604051601f8301601f19908116603f01168101908282118183101715610e8757610e87610e1d565b81604052838152866020858801011115610ea057600080fd5b836020870160208301376000602085830101528094505050505092915050565b60008060408385031215610ed357600080fd5b823567ffffffffffffffff811115610eea57600080fd5b610ef685828601610e33565b95602094909401359450505050565b60008060408385031215610f1857600080fd5b82359150602083013567ffffffffffffffff811115610f3657600080fd5b610f4285828601610e33565b9150509250929050565b60008060408385031215610f5f57600080fd5b823567ffffffffffffffff80821115610f7757600080fd5b610f8386838701610e33565b93506020850135915080821115610f9957600080fd5b50610f4285828601610e33565b600060208284031215610fb857600080fd5b813567ffffffffffffffff811115610fcf57600080fd5b610fdb84828501610e33565b949350505050565b600080600060608486031215610ff857600080fd5b833567ffffffffffffffff81111561100f57600080fd5b61101b86828701610e33565b9660208601359650604090950135949350505050565b600060208083528351808285015260005b8181101561105e57858101830151858201604001528201611042565b506000604082860101526040601f19601f8301168501019250505092915050565b8082018082111561064c57634e487b7160e01b600052601160045260246000fdfea26469706673582212205bdf5bc4551862519f5370e0dcec38eefbbbe11b6a5bf19ce2846b4f8831a5dc64736f6c63430008110033", + "nonce": "0x0" + }, + "additionalContracts": [], + "isFixedGasLimit": false + }, + { + "hash": "0x000128fbbcf1ce04facb50cb06b25514ad5927f52ec5b5b497f9cc8acff8a383", + "transactionType": "CREATE", + "contractName": "MultiSendCallOnly", + "contractAddress": "0xe7f1725E7734CE288F8367e1Bb143E90bb3F0512", + "function": null, + "arguments": null, + "transaction": { + "type": "0x00", + "from": "0xf39fd6e51aad88f6f4ce6ab8827279cfffb92266", + "gas": "0x2e5c4", + "value": "0x0", + "data": "0x608060405234801561001057600080fd5b506101ae806100206000396000f3fe60806040526004361061001e5760003560e01c80638d80ff0a14610023575b600080fd5b6100366100313660046100c7565b610038565b005b805160205b818110156100ac578083015160f81c6001820184015160601c601583018501516035840186015160558501870160008560008114610082576001811461001e5761008e565b6000808585888a5af191505b508061009957600080fd5b505080605501850194505050505061003d565b505050565b634e487b7160e01b600052604160045260246000fd5b6000602082840312156100d957600080fd5b813567ffffffffffffffff808211156100f157600080fd5b818401915084601f83011261010557600080fd5b813581811115610117576101176100b1565b604051601f8201601f19908116603f0116810190838211818310171561013f5761013f6100b1565b8160405282815287602084870101111561015857600080fd5b82602086016020830137600092810160200192909252509594505050505056fea2646970667358221220c15490bbb756a4c3c49d6335b2e81d2d098647b0ea70174c2279f199b1d0800364736f6c63430008110033", + "nonce": "0x1" + }, + "additionalContracts": [], + "isFixedGasLimit": false + }, + { + "hash": "0x027230bd60128347bd04e3fa2055be2e2ba4fcd489e1ac59cc7d43bbceab7797", + "transactionType": "CREATE", + "contractName": "BasicCellRenderer", + "contractAddress": "0x9fE46736679d2D9a65F0992F2272dE9f3c7fa6e0", + "function": null, + "arguments": null, + "transaction": { + "type": "0x00", + "from": "0xf39fd6e51aad88f6f4ce6ab8827279cfffb92266", + "gas": "0x3180ad", + "value": "0x0", + "data": "0x608060405234801561001057600080fd5b50612c25806100206000396000f3fe608060405234801561001057600080fd5b50600436106100365760003560e01c806306d4cd8b1461003b57806328de0f2f14610064575b600080fd5b61004e610049366004610322565b610077565b60405161005b919061038b565b60405180910390f35b61004e610072366004610404565b6100f1565b60606000610086600f846104fc565b90506000610095600f8361051e565b61009f9085610535565b905060006100ae826041610548565b60f81b9050806100c76100c2856001610548565b6101b6565b6040516020016100d8929190610577565b6040516020818303038152906040529350505050919050565b606060006100fe86610077565b905083838261018388735fbdb2315678afecb367f032d93f642f64180aa363b5cdf924909160006040518363ffffffff1660e01b81526004016101429291906105a8565b602060405180830381865af415801561015f573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906100c291906105ca565b87878660405160200161019c97969594939291906105f2565b604051602081830303815290604052915050949350505050565b606060006101c383610249565b600101905060008167ffffffffffffffff8111156101e3576101e36103a5565b6040519080825280601f01601f19166020018201604052801561020d576020820181803683370190505b5090508181016020015b600019016f181899199a1a9b1b9c1cb0b131b232b360811b600a86061a8153600a850494508461021757509392505050565b60008072184f03e93ff9f4daa797ed6e38ed64bf6a1f0160401b83106102885772184f03e93ff9f4daa797ed6e38ed64bf6a1f0160401b830492506040015b6d04ee2d6d415b85acef810000000083106102b4576d04ee2d6d415b85acef8100000000830492506020015b662386f26fc1000083106102d257662386f26fc10000830492506010015b6305f5e10083106102ea576305f5e100830492506008015b61271083106102fe57612710830492506004015b60648310610310576064830492506002015b600a831061031c576001015b92915050565b60006020828403121561033457600080fd5b5035919050565b60005b8381101561035657818101518382015260200161033e565b50506000910152565b6000815180845261037781602086016020860161033b565b601f01601f19169290920160200192915050565b60208152600061039e602083018461035f565b9392505050565b634e487b7160e01b600052604160045260246000fd5b60008083601f8401126103cd57600080fd5b50813567ffffffffffffffff8111156103e557600080fd5b6020830191508360208285010111156103fd57600080fd5b9250929050565b6000806000806060858703121561041a57600080fd5b84359350602085013567ffffffffffffffff8082111561043957600080fd5b818701915087601f83011261044d57600080fd5b81358181111561045f5761045f6103a5565b604051601f8201601f19908116603f01168101908382118183101715610487576104876103a5565b816040528281528a60208487010111156104a057600080fd5b8260208601602083013760006020848301015280975050505060408701359150808211156104cd57600080fd5b506104da878288016103bb565b95989497509550505050565b634e487b7160e01b600052601160045260246000fd5b60008261051957634e487b7160e01b600052601260045260246000fd5b500490565b808202811582820484141761031c5761031c6104e6565b8181038181111561031c5761031c6104e6565b8082018082111561031c5761031c6104e6565b6000815161056d81856020860161033b565b9290920192915050565b6001600160f81b031983168152815160009061059a81600185016020870161033b565b919091016001019392505050565b6040815260006105bb604083018561035f565b90508260208301529392505050565b6000602082840312156105dc57600080fd5b5051919050565b81818437506000910190815290565b7f646174613a6170706c69636174696f6e2f6a736f6e2c7b22646573637269707481527f696f6e223a2022537461726b7368656574222c20226e616d65223a202200000060208201528688603d8301376000878201602160f81b603d820152875161066481603e840160208c0161033b565b7f222c22696d616765223a2022646174613a696d6167652f7376672b786d6c2c25603e92909101918201527f334373766725323076696577426f782533442532373025323030253230383925605e8201527f3230353525323725323066696c6c2533442532376e6f6e65253237253230786d607e8201527f6c6e73253344253237687474702533412f2f7777772e77332e6f72672f323030609e8201527f302f737667253237253345253343646566732533452533437374796c6525334560be8201527f253430666f6e742d66616365253230253742666f6e742d66616d696c7925334160de8201527f253230253237507265737325323053746172742532303250253237253342737260fe8201527f6325334125323075726c25323825323764617461253341666f6e742f776f666661011e8201527f32253342626173653634253243643039474d6741424141414141424c3841413861013e8201527f41414141415235774141424b674141454141414141414141414141414141414161015e8201527f4141414141414141414141414150305a4756453063476a41624d42794358675a61017e8201527f6741494e794551674b3846545361517544524141424e67496b41344e4d42434161019e8201527f46687a5148684649623644566c42306a314f4d4253336f4f4953744562732f2f6101be8201527f2f6c4a776356727a47634f30676f684c45484d6369694443434e57695a6761306101de8201527f79625345555954514f6a4b427038546c737a7344526438716174586c333058746101fe8201527f30645a47467952305668444b776c62746c25324272734643773945316e64655961021e8201527f4a74732f37527762305673784d71576c636a6a775445537a2f5568752f77337361023e8201527f33746b6f496d70343464515168576f456d54337579526d70746f7553446b7a5761025e8201527f454138762f3932364a4b7539486f696e6e3673376674336d4965476c7737547161027e8201527f6437456f326a46517849766a5642494a70563269614f62547a68575932314e7461029e8201527f476772687434704d4b3457556a34624c7967542f51253242514c7879253242336102be8201527f6c482f362f6b6275496444497239446a724a496a6f394a7336524d58253242456102de8201527f6b37424f545a6b6d70397a347455524652566656307148504448375a7462364a6102fe8201527f616f6130684c335975616232473373667a72365776394536793569767025324261031e8201527f7135564c74426a514478476f5345304150313762336466376c61726a6525324261033e8201527f73637a6b7241744a334b6657304a342532424b323365744b4b556a383554616f61035e8201527f57473453346158436c427743413268676141652532423658396f696e32304e6261037e8201527f554a7264466767517049686d5247494d30372f7025324277375a7058316c473161039e8201527f6a6a51787073435141423438714445415042346950312f6a39592f4261686a356103be8201527f5943414e302f78714157496852616a6c6e694e654f50396e78433466667932556103de8201527f694843304e47386b686f6f567a6f7459334445417a417a41356b473735337a6a6103fe8201527f4853354d6e6d586b69496a6d54554d36556d4d3025324256346976752f48377861041e8201527f6a364666322f6b343472787a6449324141676742492f4c48416b394a7a35554d61043e8201527f496f4c7755344146455435725a464f33444d616655633061777351434879497061045e8201527f557a546b30784a474a454f6a4e6871436b474570496153474f6a714e466d2f5761047e8201527f4e434e3569636b71434d6e414165564c4d4c655867356971386b365752585a5261049e8201527f326c337042393831427a73475a743225324256696c4342723954494a674b67786104be8201527f365542514446253242566a4b44714e7741414948386a6949664d6e75384b68666104de8201527f584b486f4e3348634134477245786842324155442f795a554d423857547579496104fe8201527f413444634f4b656434397939504249616e426967734d454e38556b30766c547661051e8201527f304a58334e394d795a75544d763573655357413525324238556538504465547261053e8201527f645467474973566d4e33635856586a6463795275633434385866664176506e7361055e8201527f3575324d4531722532426a4731703137767a3849704f416e483444427367793361057e8201527f512f54376b33646d2f3846334232377355694877464631414f6c683055646e4961059e8201527f4471494e5164506355393145786f2f346252696a6a5169704e4e307a4c646c7a6105be8201527f504438496f547449734c38717162746f4f5149514a5a567849705931315073536105de8201527f55533231397a4c585066642f507667765751346372464d2532425769755671706105fe8201527f645a6f4e6475645872632f4745324d4a36656e3575635746694763375274364f61061e8201527f487676354d674c2532427a44733578444277696141315433554877326b63594361063e8201527f312f55666453316645316d37763742346537653350574848786533594f32483561065e8201527f25324241504f5a7965503025324251506553425468793078713965363241486a61067e8201527f6141556842432f364144484c6f476f4f657636412532426867487369317a613861069e8201527f71355a4e4d716a596c575a4d713867354248445574495370574a73526f52544a6106be8201527f56613049305a3957546b5371564b73507a3464586a7648746449684c6e7670746106de8201527f554c4330753542567579414d544b4a513930594b5267546e5769476b6d7153456106fe8201527f714b6d7256685259674b6b335443686255573671456f45637665577a6859535461071e8201527f4c32484e706735452f6d7151393956564467763352475435586d33637a68754c61073e8201527f3972685864316132372f736c5130686959366a643739614f5a43746a6f52687261075e8201527f623136575676514b725734477a786a7869723238494d697a2f7155447973495761077e8201527f7037516a667765347a556437614a735651575179524c554b484b42577938577661079e8201527f45565333584d53353656337757644f442532424638757639645477496d4b722f6107be8201527f5064626d5763775176456641616a7975566a70784e32704f56635769336c38776107de8201527f454c2f6d395070646f55494536253242504b5838315041546d67654f304231736107fe8201527f47454825324261707a353466646d534a7a333741686635366a4c7739756e504561081e8201527f35644d4b3025324237544639563843435466523979664e7355493474557a464661083e8201527f42326e536e384b4f626a64446964554c7034494a6873777878595172595a643661085e8201527f4e76436e55394d445825324252654c6e4d546d6c315a453972306b5077334e3261087e8201527f6752253242736a4573596d4953706b356c31497333594e614a4b6f6e7a65703761089e8201527f56637354316e556b62347048774b5a41796b614b6f43504630506f6d456876496108be8201527f5758656e6f5a767836774f4b313070316c3274546858793850316555776473766108de8201527f53715157766f424d7473674851554a614774494273756861776450545a5378596108fe8201527f707257757734647a7231564755744449465871726f4d4d69597346783857695461091e8201527f336463574b6f376d50554c79715657413972305974524a4c626957766a6e4c2561093e8201527f324272633452646767624e516c514141613264306d616236364d48447074314361095e8201527f6477626b51436253375053445a4d7a3746724f51713165636153304a6c74644161097e8201527f6c44527941587173364130586247707748676b70367572557757416272464d3361099e8201527f75794d764e4b6c344d6c435548537950416d3931776144454a3559595148754a6109be8201527f4d32304b575251737637486b61334770686c533258444b714f4b4245554753316109de8201527f65306b63316f323449494166486c4449794278584a4a656767423369386174566109fe8201527f67434f3064444f5a484a57596a564c416a6a397137765673456e72684b374568610a1e8201527f4c75427a42586d4d674554634531636d61436976504b6f4a766670466c794935610a3e8201527f4d70584234454325324245672f596d303454787843354e6c73596b74646f5951610a5e8201527f55656c38624673456c3748345a36734377622f38626b347458574658504b6a71610a7e8201527f5462526e64336e4c5770394f784941706c664b586747684e6c72443462354a4c610a9e8201527f5a367055753441726756614d366561357844574244476f7a707a4641376e6747610abe8201527f74596334486141775269475576637653653652414177335a576b564f4667764b610ade8201527f46364955696c4d49394964715155345134585264484866736666517770313955610afe8201527f434a49306a5773725433356f5578303678507268473271364d4533554f306c63610b1e8201527f635a557354454351784a44527854444b6c334c4948722f6162546f73686c6466610b3e8201527f51786a364f57745273466e6966444373473674336b426f344e6d424a6d615556610b5e8201527f54636c794951414a4c6a6e723042365a3859464d6e396b397967703752727848610b7e8201527f36766877624a4e41654b4d554436353974386746514a4d5377652f434f624850610b9e8201527f467671484746554e5266253242737245663354584b42725a76676b6369396972610bbe8201527f426d63442f7458616754474358634e68432532424f3539754c706e6673796f71610bde8201527f4c53313238374552776d38666165564f6d3857634437386c5a36594232793938610bfe8201527f5a4c6c4d3972557264324c514e6c324956643454727376675139363079377573610c1e8201527f5965306854506170576a71726c2532425837784665424e54253242315a644a4a610c3e8201527f572532424678745737584e7774634e7a7761672532425256656a6d4a6839656d610c5e8201527f6c495a4b69694e63694b3849554f4d33556a4a376342554e5847505853326c68610c7e8201527f253242687770676f4836567348524f63764569723372585970344c7769435a77610c9e8201527f3176486c43623552314d68623564536e4f326d6e6f475a6f5846315765574757610cbe8201527f6d7a694a314a555534715072306e694a536c4e424331636b4b6d4a6657625877610cde8201527f5577757449547a456d6a776770776142753464525066746a2f4e384143526e64610cfe8201527f616b2f4641674b674c37305058577839767a6b59322532426d34355473496b4c610d1e8201527f3037616f70444e6f676830535262535a534f397a744657516a376e574c676275610d3e8201527f364325324254374b6a44715a3667456e5277674d78306b4c5a77797962514f76610d5e8201527f514130773054782f354a42722f63595a6453574f546a774446364e6f586b796a610d7e8201527f33566a484e4751494e76426a5a734a4a3377466141516d6f5a575a5970416961610d9e8201527f574f466e6e686455524176576b557a77693062677a5a4158796f445545714863610dbe8201527f57307069454c574f777168773365765478444957724e32495371525151454c41610dde8201527f4d32365334486c723548552f48784a43436844424a6b756b6341573856415430610dfe8201527f6770545a544b4e48677a444f7234314751656a4f34677a416e6b577077464752610e1e8201527f43334c625231787a4b434875365635694674674c704f384b51596d5965467868610e3e8201527f4c32643838736469506a2f76306b427a636c51637954735766324d6445394944610e5e8201527f386d5858576a72434b253242354532756e336e6976656973526e726971317548610e7e8201527f594d6a6a69694945304b6466674d6f3163476d6b557254624f30356732737633610e9e8201527f477673525971762f61457736375472644f705435567a4641364131417939634b610ebe8201527f6f44667762544a64445750524e57517354796a6d3772486249734b466b6f4f2f610ede8201527f5a4c4376735966785973337768534338614c49344b765677373773336e347a48610efe8201527f67697061634a6e435362463945727a53357069386343577655597a4f5064327a610f1e8201527f684a2f4750437a53684f453378596c634f3350796164586a54334f6b68706841610f3e8201527f58465853766865544e5355525446565641486f4a6d7949726b6a454b6f517746610f5e8201527f4730303554334158643935764e30446d336d427332786746546c253242513572610f7e8201527f73416a6e744768707a6f62643642374e7a52664e56653130446f4e5639343753610f9e8201527f59646f635252624776636d785456786f61367a717756376d416e773544314745610fbe8201527f5474327a48382532425476514256356e37672f32615768743979794e594c3974610fde8201527f4f42744167384846435945316d4e775432454232467538544968543776565241610ffe8201527f3461587a6e6b3670545a4e6779696f73747749364b654655374c696c7041253261101e8201527f42334234474a794277574d327062466a4876734a3747754f6f616b6a6d46746a61103e8201527f59344c6254396c323239253242453646374c4475577a744c6e333749786b386a61105e8201527f356c42564b33774c7369362f416641756f6a34396c4d6b5653545045396b704761107e8201527f64304c724555534a4941413070596c4178414d642f4e4f46776f4a446458466961109e8201527f307a4f5744422f54464a705666575642574f516274724a556230636c663369256110be8201527f3242575072446f596c65545674564f45306d36793564487444725551776f414c6110de8201527f7455523365585364444d4e785866656a594674764c626c726c4a7777484b2f456110fe8201527f6957504a616b32574b35386e684e6f4c6a615a55475841756f32656f5777464561111e8201527f66612f445334496958717246714779633348726939785132693243352f73357661113e8201527f7a424d30793777334d4473774d3759325247427172464d6778374f696325324261115e8201527f30497a736d5678617a5473305263666a324f3334532f525639503269486f427561117e8201527f6c4b49594244665a46654c53356439725379664a64536c67683268644d72324f61119e8201527f5552334b6e6c506e4f41785477314a384c4d325a776e4671765a745a4a6c78786111be8201527f343873776243743272316b664875443756624831326159383849437456734b786111de8201527f4b742f31726b616c42414d74782f6f6f6d43445059626b556f4c6344624b436a6111fe8201527f7675713953544467746a584744715735564b36686347654f46697a6a3643714c61121e8201527f4f49716b57783477733245504d444e7378253242613661533230384f39784c3061123e8201527f526146586f394241645530706e452532424c695359334b536f4a41525978646e61125e8201527f7a69545a4d706961442f3438496969393834446151357976656378414673735761127e8201527f792f686274696d63253242704c386b35796f70496d4a627948712f6138797a6c61129e8201527f6c37726f4f7a586d786d4163337459585363546b65734d6344324939315a36336112be8201527f6549312f394a627755716b36737863394b52677277574d414e6543314e6e39756112de8201527f4779775473706d5538712532426c5a6d43714d674153363662674841476a514b6112fe8201527f73754a334451416a5235346d356a4c7a5a616e546c62646530253242726e663461131e8201527f385a574138546c32673277414779427748516e3552322532424e6a726542677861133e8201527f626c734e46627554776d6862414a48737a2f72416f61764c4f34317874767a5961135e8201527f4768336e4c4a426b41506a7578424a445248333048426575385567436978464e61137e8201527f437951322f4b253242385157372f6530253242664f2532423436524e5730657961139e8201527f4c726f39446a5467704a4e4d3547385179306c54644f756d73773066715045696113be8201527f393646702532424830634d774e6f376a787a596d6e4e664d5a6d64506c7932706113de8201527f6f7132575065476d67507136474c78504e34536c4b486e7870624f69754c58516113fe8201527f75583155715031676a6f38426136536c55314f416d5267707a7531735444584a61141e8201527f50754d3338546f387130344c324e777970653837327777556741675a6c70386461143e8201527f6b5166397a38544d43624d6b596b3758484375333564375a5a41656f346b5a4b61145e8201527f68784953386945354c546a334c4f6976485a7268394a3870337a4c5a436a776361147e8201527f6970354452694b6e576e49664c33386b4a684d7452776a67553525324256726d61149e8201527f714b6c6739307a376a64732f4238444b646b464c76483353253242376f4838616114be8201527f6c445a6c626734533155583574434d445342324f364b756c7a41344b763067376114de8201527f314251643054464b7733685358696e62374e6c304258725873514e6376436b386114fe8201527f6d6f394f786965783559627a78564e2f6b3738336f48545a495777393079495a61151e8201527f777672697164475473586e54384965705437597946434f4a6741395a3042794961153e8201527f455956735478522f6b73616b324268376f4b767034766e695530364d57317a4261155e8201527f4672746568647a306b6b587951786a426d7965645636644d596545386146787461157e8201527f6575777355466136466c6c54446c716430707a525a77473663467266574d627061159e8201527f384738587a6a66624d253242354658657076356f457273696c363458783663376115be8201527f5841576275696d3666387347494d58666f334a6971476b703333376854536a676115de8201527f65636862364f42472f327a31376a6f6d4469476d253242476c623146553069656115fe8201527f6e7552796977654c576767447a6d4655765545556a5a6f377356544877684f4661161e8201527f504d6b4e737146423977796d6b45307639666d7477453854377135384e594f3761163e8201527f787534623833766e46766c35755378446c472532426b4f51675249644f346a6761165e8201527f7a786a53486a4b4c7332742f6c684f647771766131415744437072763344345361167e8201527f34523741625934544362664b4637744265363554343551347a7a49714433316161169e8201527f79797557716a692532424636585337535439483943314f342f694b366b4775766116be8201527f6b512f664e3537487837456533373435622f76766e2f62482f58253242392f256116de8201527f32426762656d684f416d49705576755157757344764b517578394a44564e734b6116fe8201527f673651636d6b73515341445530346347524c523768466f5a326337785545664761171e8201527f253242776b755459474d764c6a422f6550634936416847686e5735717a45416961173e8201527f4a586377564545775869654e70536c317a6a457253253242435325324248634c61175e8201527f6f52506d7661324d6767412f69794c67536f544a555767733442794149514f3061177e8201527f4f6f705a487656627a6844494c65557155677a7a48492f667950474e7879777361179e8201527f6f796c6865534639577662795363336b4544716b32415636436c4364635535536117be8201527f6e6c4e6e4963394b794d63384c79622532423867484f4a795173466c4c6250526117de8201527f796d6d374a42743349545a544162314732444252496b514b51705451396939626117fe8201527f3665435353387a4d366161525364544b5657524d336663454a4c644b61746e7361181e8201527f724959774e4a55253242733048364461757832775a35686733706c653042474861183e8201527f756b316b4543734859446461496d4b7025324233463542317859763763486b7161185e8201527f644475306a4b645273657a3531376d63563641685148346931484e3173766c6a61187e8201527f5248366845454672682532426e72726d47316e33307a4d346749776d694d774561189e8201527f624b6842545564423141486f582532424b6741517a4f48543946494f71436b526118be8201527f4e4e623273397170496943534f753167576868497343564a73765771457175356118de8201527f47624a514b4e6a61427465394c4f69676368414a7665475773394332323033766118fe8201527f6f6e476c6b77725251323464646732796345646157554456734441785548734961191e8201527f77773665615234464665336d4a416b66426d5a6452395264774a485a6d47645261193e8201527f7950436a706a627a31712f584a34534949446b66384b4b6e6e32456c4b6d794c61195e8201527f69573442513836733151554b2f76426867524e776548766c5968687a7238706361197e8201527f67704b4b6d6f61576a7036426b594f48446c7835734b5647336365474539657661199e8201527f506e773563646667454242676f554946536238587632504553314772446a78456119be8201527f69524b6b697846716a54704d6d544b6b693148726a7a354368517155717845716119de8201527f544c6c4b6c53715571314772547231476a527130717846717a62744f6e5347656119fe8201527f3668374a6d627a4968355a6544696c315a58536a7430774375616b336c6e476f611a1e8201527f5655506f53734e663337394b326a6274716d44674d69485a42665a6c68324839611a3e8201527f75773738495469314a466a585653662f4336634f55667a346f30644178305447611a5e8201527f777448446863666a3443516d49694531444d5a42546b6c4e5a557065566f614f611a7e8201527f6e717633733234314e50503965766574594768435a50576a4979747332706173611a9e8201527f436a25324270556a54596c336b615574374f744b4a6136355850396d356e6367611abe8201527f364e686a685a587032762532426d57724341545a754a303368316b6a55756976611ade8201527f5067596e6a6e35744b4a4f6b326e6362703251414559585a69304b496d50356b611afe8201527f744961466e366b5a397743253237253239253230666f726d6174253238253237611b1e8201527f776f666632253237253239253342666f6e742d7765696768742533412532306e611b3e8201527f6f726d616c253342666f6e742d7374796c652533412532306e6f726d616c2533611b5e8201527f42666f6e742d646973706c617925334125323073776170253342253744746578611b7e8201527f74253230253742666f6e742d66616d696c792533412532302532375072657373611b9e8201527f2532305374617274253230325025323725334266696c6c253341253230776869611bbe8201527f74652537442e76616c7565253230253742666f6e742d73697a65253341253230611bde8201527f313070782533422537442e6e616d65253230253742666f6e742d73697a652533611bfe8201527f412532303470782533422537442533432f7374796c652533452533432f646566611c1e8201527f7325334525334372656374253230776964746825334425323738392532372532611c3e8201527f30686569676874253344253237353525323725323066696c6c25334425323762611c5e8201527f6c61636b2532372532302f253345253343726563742532307825334425323735611c7e8201527f2e3525323725323079253344253237352e352532372532307769647468253344611c9e8201527f2532373738253237253230686569676874253344253237343425323725323066611cbe8201527f696c6c2533442532372532333030303046462532372532302f25334525334374611cde8201527f657874253230746578742d616e63686f722533442532376d6964646c65253237611cfe8201527f2532307825334425323734342e35253237253230792533442532373333253237611d1e8201527f253230636c61737325334425323776616c756525323725334500000000000000611d3e820152612ba5612b9e6129f5611d5784018a61055b565b7f2533432f746578742533452533437265637425323078253344253237352e352581527f323725323079253344253237352e35253237253230776964746825334425323760208201527f373825323725323068656967687425334425323734342532372532307374726f60408201527f6b652533442532372532334646344630412532372532307374726f6b652d776960608201527f647468253344253237332532372532302f25334525334372656374253230782560808201527f334425323733302532372532307925334425323734352e35253237253230776960a08201527f647468253344253237353825323725323068656967687425334425323738253260c08201527f3725323066696c6c2533442532372532334646344630412532372532302f253360e08201527f4525334374657874253230746578742d616e63686f72253344253237656e64256101008201527f32372532307825334425323738372532372532307925334425323735322532376101208201527f253230636c6173732533442532376e616d6525323725334500000000000000006101408201526101580190565b86886105e3565b602160f81b81529050612bbb600182018561055b565b7f2533432f746578742533452533432f737667253345227d00000000000000000081526017019a995050505050505050505056fea26469706673582212206a2c00c13ddb4f1bcd7ee36e36f0c874d7d9dadcf38306eab3610b5a6e7af83464736f6c63430008110033", + "nonce": "0x2" + }, + "additionalContracts": [], + "isFixedGasLimit": false + }, + { + "hash": "0x05c851c318f703ca1584f93726cae8b01fcd20b307c2a5add61a15b751a6cdab", + "transactionType": "CREATE", + "contractName": null, + "contractAddress": "0xCf7Ed3AccA5a467e9e704C703E8D87F634fB0Fc9", + "function": null, + "arguments": null, + "transaction": { + "type": "0x00", + "from": "0xf39fd6e51aad88f6f4ce6ab8827279cfffb92266", + "gas": "0x42230", + "value": "0x0", + "data": "0x608060405234801561001057600080fd5b506102cf806100206000396000f3fe608060405234801561001057600080fd5b506004361061004c5760003560e01c80630194db8e14610051578063072bdcc214610076578063a391c15b14610089578063b67d77c51461009c575b600080fd5b61006461005f366004610160565b6100af565b60405190815260200160405180910390f35b610064610084366004610160565b6100ef565b61006461009736600461021e565b610129565b6100646100aa36600461021e565b61013e565b600080805b83518110156100e8578381815181106100cf576100cf610240565b60200260200101518201915080806001019150506100b4565b5092915050565b60006001815b83518110156100e85783818151811061011057610110610240565b60200260200101518202915080806001019150506100f5565b60006101358284610256565b90505b92915050565b60006101358284610278565b634e487b7160e01b600052604160045260246000fd5b6000602080838503121561017357600080fd5b823567ffffffffffffffff8082111561018b57600080fd5b818501915085601f83011261019f57600080fd5b8135818111156101b1576101b161014a565b8060051b604051601f19603f830116810181811085821117156101d6576101d661014a565b6040529182528482019250838101850191888311156101f457600080fd5b938501935b82851015610212578435845293850193928501926101f9565b98975050505050505050565b6000806040838503121561023157600080fd5b50508035926020909101359150565b634e487b7160e01b600052603260045260246000fd5b60008261027357634e487b7160e01b600052601260045260246000fd5b500490565b8181038181111561013857634e487b7160e01b600052601160045260246000fdfea2646970667358221220fcdef23ba4219270ddb3ab764e22a87e229c05e6f1dfc4eeea983fa1a1dac91f64736f6c63430008110033", + "nonce": "0x3" + }, + "additionalContracts": [], + "isFixedGasLimit": false + }, + { + "hash": "0x0156ed37608a55ed8897ef8eb39ae382ec9b73dbe71b548c8f747ed4587eda48", + "transactionType": "CREATE", + "contractName": "Evmsheet", + "contractAddress": "0xDc64a140Aa3E981100a9becA4E685f962f0cF6C9", + "function": null, + "arguments": [ + "0x9fE46736679d2D9a65F0992F2272dE9f3c7fa6e0", + "10000000000000000" + ], + "transaction": { + "type": "0x00", + "from": "0xf39fd6e51aad88f6f4ce6ab8827279cfffb92266", + "gas": "0x34bf99", + "value": "0x0", + "data": "0x608060405234801561001057600080fd5b50604051612ed9380380612ed983398101604081905261002f916100b1565b61003833610061565b600280546001600160a01b0319166001600160a01b0393909316929092179091556001556100eb565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b600080604083850312156100c457600080fd5b82516001600160a01b03811681146100db57600080fd5b6020939093015192949293505050565b612ddf806100fa6000396000f3fe608060405260043610620000a95760003560e01c80638da5cb5b116200006c5780638da5cb5b146200016d578063ab2fa65a146200018d578063ae28505e14620001b4578063c56c4cf114620001d9578063f2fde38b14620001fb578063f52be2a2146200022057600080fd5b806303fb31e814620000ae5780631164c83d14620000d5578063145e414714620000ec5780635787cacb146200012e578063715018a61462000155575b600080fd5b348015620000bb57600080fd5b50620000d3620000cd36600462000778565b62000247565b005b620000d3620000e6366004620007e9565b62000273565b348015620000f957600080fd5b50620001116200010b36600462000864565b620004b2565b6040516001600160a01b0390911681526020015b60405180910390f35b3480156200013b57600080fd5b50620001466200054f565b60405162000125919062000891565b3480156200016257600080fd5b50620000d3620005b3565b3480156200017a57600080fd5b506000546001600160a01b031662000111565b3480156200019a57600080fd5b50620001a5620005cb565b604051620001259190620008e0565b348015620001c157600080fd5b5062000111620001d336600462000930565b620005f7565b348015620001e657600080fd5b5060025462000111906001600160a01b031681565b3480156200020857600080fd5b50620000d36200021a36600462000778565b62000622565b3480156200022d57600080fd5b506200023860015481565b60405190815260200162000125565b62000251620006a1565b600280546001600160a01b0319166001600160a01b0392909216919091179055565b60015434146200029d5760405163723a79e360e11b81523460048201526024015b60405180910390fd5b600060405180602001620002b1906200074d565b6020820181038252601f19601f8201166040525090506000828251602084016000f56002546040516356d3163d60e01b81526001600160a01b0391821660048201529192508216906356d3163d90602401600060405180830381600087803b1580156200031d57600080fd5b505af115801562000332573d6000803e3d6000fd5b505060405163c47f002760e01b81526001600160a01b038416925063c47f0027915062000366908a908a906004016200094a565b600060405180830381600087803b1580156200038157600080fd5b505af115801562000396573d6000803e3d6000fd5b5050604051635c26412360e11b81526001600160a01b038416925063b84c82469150620003ca90889088906004016200094a565b600060405180830381600087803b158015620003e557600080fd5b505af1158015620003fa573d6000803e3d6000fd5b505060405163f2fde38b60e01b81523260048201526001600160a01b038416925063f2fde38b9150602401600060405180830381600087803b1580156200044057600080fd5b505af115801562000455573d6000803e3d6000fd5b5050600380546001810182556000919091527fc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b0180546001600160a01b0319166001600160a01b0394909416939093179092555050505050505050565b600060ff60f81b838360405180602001620004cd906200074d565b6020820181038252601f19601f82011660405250805190602001206040516020016200053094939291906001600160f81b031994909416845260609290921b6bffffffffffffffffffffffff191660018401526015830152603582015260550190565b60408051601f1981840301815291905280516020909101209392505050565b60606003805480602002602001604051908101604052809291908181526020018280548015620005a957602002820191906000526020600020905b81546001600160a01b031681526001909101906020018083116200058a575b5050505050905090565b620005bd620006a1565b620005c96000620006fd565b565b606060405180602001620005df906200074d565b601f1982820381018352601f90910116604052919050565b600381815481106200060857600080fd5b6000918252602090912001546001600160a01b0316905081565b6200062c620006a1565b6001600160a01b038116620006935760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b606482015260840162000294565b6200069e81620006fd565b50565b6000546001600160a01b03163314620005c95760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015260640162000294565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b612430806200097a83390190565b80356001600160a01b03811681146200077357600080fd5b919050565b6000602082840312156200078b57600080fd5b62000796826200075b565b9392505050565b60008083601f840112620007b057600080fd5b50813567ffffffffffffffff811115620007c957600080fd5b602083019150836020828501011115620007e257600080fd5b9250929050565b6000806000806000606086880312156200080257600080fd5b853567ffffffffffffffff808211156200081b57600080fd5b6200082989838a016200079d565b909750955060208801359150808211156200084357600080fd5b5062000852888289016200079d565b96999598509660400135949350505050565b600080604083850312156200087857600080fd5b62000883836200075b565b946020939093013593505050565b6020808252825182820181905260009190848201906040850190845b81811015620008d45783516001600160a01b031683529284019291840191600101620008ad565b50909695505050505050565b600060208083528351808285015260005b818110156200090f57858101830151858201604001528201620008f1565b506000604082860101526040601f19601f8301168501019250505092915050565b6000602082840312156200094357600080fd5b5035919050565b60208152816020820152818360408301376000818301604090810191909152601f909201601f1916010191905056fe60806040523480156200001157600080fd5b50604051806040016040528060078152602001660536865657420360cc1b815250604051806040016040528060048152602001630534854360e41b81525062000069620000636200008f60201b60201c565b62000093565b600162000077838262000188565b50600262000086828262000188565b50505062000254565b3390565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b634e487b7160e01b600052604160045260246000fd5b600181811c908216806200010e57607f821691505b6020821081036200012f57634e487b7160e01b600052602260045260246000fd5b50919050565b601f8211156200018357600081815260208120601f850160051c810160208610156200015e5750805b601f850160051c820191505b818110156200017f578281556001016200016a565b5050505b505050565b81516001600160401b03811115620001a457620001a4620000e3565b620001bc81620001b58454620000f9565b8462000135565b602080601f831160018114620001f45760008415620001db5750858301515b600019600386901b1c1916600185901b1785556200017f565b600085815260208120601f198616915b82811015620002255788860151825594840194600190910190840162000204565b5085821015620002445787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b6121cc80620002646000396000f3fe608060405234801561001057600080fd5b50600436106102275760003560e01c8063715018a611610130578063b85d8b85116100b8578063cf0983981161007c578063cf09839814610512578063cfbe95d814610535578063df4ca20614610556578063e985e9c514610576578063f2fde38b146105a457600080fd5b8063b85d8b85146104a4578063b88d4fde146104ce578063b8c368ec146104e1578063c47f0027146104ec578063c87b56dd146104ff57600080fd5b806395d89b41116100ff57806395d89b4114610439578063a22cb46514610441578063b46ebb1214610454578063b6d658e114610467578063b84c82461461049157600080fd5b8063715018a6146103fa578063768d5029146104025780638ada6b0f146104155780638da5cb5b1461042857600080fd5b80631b06443c116101b35780634f6ccce7116101825780634f6ccce71461038157806356d3163d146103a15780636352211e146103b45780636a0abc74146103c757806370a08231146103e757600080fd5b80631b06443c14610335578063206848f61461034857806323b872dd1461035b57806342842e0e1461036e57600080fd5b8063081812fc116101fa578063081812fc146102a1578063095ea7b3146102e2578063172b9eed146102f757806318160ddd1461030a5780631941fd141461031357600080fd5b806301ffc9a71461022c57806302f3c4c91461025457806306fdde03146102745780630715a24a1461027c575b600080fd5b61023f61023a36600461176a565b6105b7565b60405190151581526020015b60405180910390f35b610267610262366004611861565b610609565b60405161024b9190611951565b610267610638565b6102936fffffffffffffffffffffffffffffffff81565b60405190815260200161024b565b6102ca6102af366004611964565b6005602052600090815260409020546001600160a01b031681565b6040516001600160a01b03909116815260200161024b565b6102f56102f036600461197d565b6106c6565b005b6102676103053660046119a9565b6107ad565b61029360075481565b610326610321366004611964565b610875565b60405161024b939291906119de565b6102ca610343366004611a0e565b61092a565b610326610356366004611964565b6109e3565b6102f5610369366004611a2b565b610ae1565b6102f561037c366004611a2b565b610ca8565b61029361038f366004611964565b60086020526000908152604090205481565b6102f56103af366004611a0e565b610da0565b6102ca6103c2366004611964565b610dca565b6103da6103d53660046119a9565b610e1c565b60405161024b9190611a6c565b6102936103f5366004611a0e565b610e60565b6102f5610ec3565b6102f5610410366004611af9565b610ed7565b6009546102ca906001600160a01b031681565b6000546001600160a01b03166102ca565b610267611035565b6102f561044f366004611b63565b611042565b610267610462366004611964565b6110ae565b61047a610475366004611964565b611258565b60408051921515835260208301919091520161024b565b6102f561049f366004611ba1565b611275565b6104b56104b2366004611964565b90565b6040516001600160e01b0319909116815260200161024b565b6102f56104dc366004611be3565b6112c6565b6102ca600160801b81565b6102f56104fa366004611ba1565b6113ae565b61026761050d366004611964565b6113ff565b61023f610520366004611a0e565b600160801b6001600160a01b03919091161090565b61023f610543366004611861565b516001600160a01b0316600160801b1490565b610569610564366004611964565b6114c9565b60405161024b9190611c16565b61023f610584366004611c4d565b600660209081526000928352604080842090915290825290205460ff1681565b6102f56105b2366004611a0e565b611526565b60006301ffc9a760e01b6001600160e01b0319831614806105e857506380ac58cd60e01b6001600160e01b03198316145b806106035750635b5e139f60e01b6001600160e01b03198316145b92915050565b6060816020015160405160200161062291815260200190565b6040516020818303038152906040529050919050565b6001805461064590611c7b565b80601f016020809104026020016040519081016040528092919081815260200182805461067190611c7b565b80156106be5780601f10610693576101008083540402835291602001916106be565b820191906000526020600020905b8154815290600101906020018083116106a157829003601f168201915b505050505081565b6000818152600360205260409020546001600160a01b03163381148061070f57506001600160a01b038116600090815260066020908152604080832033845290915290205460ff165b6107515760405162461bcd60e51b815260206004820152600e60248201526d1393d517d055551213d49256915160921b60448201526064015b60405180910390fd5b60008281526005602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b606060006107ba83610e1c565b9050606060005b825181101561086d576000806107ef8584815181106107e2576107e2611cb5565b6020026020010151611258565b9150915081156108335783610803826110ae565b61080c90611ccb565b60405160200161081d929190611cef565b6040516020818303038152906040529350610858565b6040516108469085908390602001611cef565b60405160208183030381529060405293505b5050808061086590611d27565b9150506107c1565b509392505050565b600a602052600090815260409020805460018201546002830180546001600160a01b039093169391926108a790611c7b565b80601f01602080910402602001604051908101604052809291908181526020018280546108d390611c7b565b80156109205780601f106108f557610100808354040283529160200191610920565b820191906000526020600020905b81548152906001019060200180831161090357829003601f168201915b5050505050905083565b6000600160801b6001600160a01b03831610156109da576000610955836001600160a01b03166110ae565b604051632d737e4960e21b8152909150735fbdb2315678afecb367f032d93f642f64180aa39063b5cdf92490610992908490600090600401611d40565b602060405180830381865af41580156109af573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906109d39190611d62565b9392505050565b5090565b919050565b60008181526003602052604081205481906060906001600160a01b0316610a1057600160801b9250610a2b565b6000848152600a60205260409020546001600160a01b031692505b6000848152600a60205260409020600181015460029091018054859291908190610a5490611c7b565b80601f0160208091040260200160405190810160405280929190818152602001828054610a8090611c7b565b8015610acd5780601f10610aa257610100808354040283529160200191610acd565b820191906000526020600020905b815481529060010190602001808311610ab057829003601f168201915b505050505090509250925092509193909250565b6000818152600360205260409020546001600160a01b03848116911614610b375760405162461bcd60e51b815260206004820152600a60248201526957524f4e475f46524f4d60b01b6044820152606401610748565b6001600160a01b038216610b815760405162461bcd60e51b81526020600482015260116024820152701253959053125117d49150d25412515395607a1b6044820152606401610748565b336001600160a01b0384161480610bbb57506001600160a01b038316600090815260066020908152604080832033845290915290205460ff165b80610bdc57506000818152600560205260409020546001600160a01b031633145b610c195760405162461bcd60e51b815260206004820152600e60248201526d1393d517d055551213d49256915160921b6044820152606401610748565b6001600160a01b0380841660008181526004602090815260408083208054600019019055938616808352848320805460010190558583526003825284832080546001600160a01b03199081168317909155600590925284832080549092169091559251849392917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b610cb3838383610ae1565b6001600160a01b0382163b1580610d5c5750604051630a85bd0160e11b8082523360048301526001600160a01b03858116602484015260448301849052608060648401526000608484015290919084169063150b7a029060a4016020604051808303816000875af1158015610d2c573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610d509190611d7b565b6001600160e01b031916145b610d9b5760405162461bcd60e51b815260206004820152601060248201526f155394d0519157d49150d2541251539560821b6044820152606401610748565b505050565b610da861159f565b600980546001600160a01b0319166001600160a01b0392909216919091179055565b6000818152600360205260409020546001600160a01b0316806109de5760405162461bcd60e51b815260206004820152600a6024820152691393d517d3525395115160b21b6044820152606401610748565b60608082516040519150602081048252602082016020850160005b83811015610e4f578181015183820152602001610e37565b505050810160200160405292915050565b60006001600160a01b038216610ea75760405162461bcd60e51b815260206004820152600c60248201526b5a45524f5f4144445245535360a01b6044820152606401610748565b506001600160a01b031660009081526004602052604090205490565b610ecb61159f565b610ed560006115f9565b565b6000858152600360205260409020546001600160a01b0316610f2f57610efd3286611649565b60078054600090815260086020526040812087905581546001929190610f24908490611d98565b90915550610f889050565b6000858152600360205260409020546001600160a01b03163214610f8857600085815260036020526040908190205490516324f3f02560e21b81526001600160a01b039091166004820152326024820152604401610748565b6040518060600160405280856001600160a01b0316815260200184815260200183838080601f0160208091040260200160405190810160405280939291908181526020018383808284376000920182905250939094525050878152600a6020908152604091829020845181546001600160a01b0319166001600160a01b0390911617815590840151600182015590830151909150600282019061102b9082611df9565b5050505050505050565b6002805461064590611c7b565b3360008181526006602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b6000818152600a6020908152604080832081516060818101845282546001600160a01b0316825260018301549482019490945260028201805494959491938401916110f890611c7b565b80601f016020809104026020016040519081016040528092919081815260200182805461112490611c7b565b80156111715780601f1061114657610100808354040283529160200191611171565b820191906000526020600020905b81548152906001019060200180831161115457829003601f168201915b505050505081525050905061119381516001600160a01b0316600160801b1490565b156111a1576109d381610609565b60006111b0826000015161092a565b905060006111bf836020015190565b905060006111d084604001516107ad565b90506000836001600160a01b031683836040516020016111f1929190611eb9565b60408051601f198184030181529082905261120b91611eea565b600060405180830381855afa9150503d8060008114611246576040519150601f19603f3d011682016040523d82523d6000602084013e61124b565b606091505b5098975050505050505050565b600080611266600284611f06565b60019081149493901c92915050565b61127d61159f565b7f8dca0271872d00b3de3abafca544c52fcd7d512dd852c9894fa2c118ac759a93600283836040516112b193929190611fce565b60405180910390a16002610d9b828483611ffe565b6112d1858585610ae1565b6001600160a01b0384163b15806113685750604051630a85bd0160e11b808252906001600160a01b0386169063150b7a02906113199033908a908990899089906004016120be565b6020604051808303816000875af1158015611338573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061135c9190611d7b565b6001600160e01b031916145b6113a75760405162461bcd60e51b815260206004820152601060248201526f155394d0519157d49150d2541251539560821b6044820152606401610748565b5050505050565b6113b661159f565b7fb65b7b5ea384affd30f77f842e057d29dd1b13f133adf69a724a8105b164ab75600183836040516113ea93929190611fce565b60405180910390a16001610d9b828483611ffe565b6000818152600360205260409020546060906001600160a01b03168061143b57604051630243d1a960e21b815260048101849052602401610748565b6000611446846110ae565b6009546040516328de0f2f60e01b81529192506001600160a01b0316906328de0f2f9061147c90879085906001906004016120fd565b600060405180830381865afa158015611499573d6000803e3d6000fd5b505050506040513d6000823e601f3d908101601f191682016040526114c19190810190612128565b949350505050565b604080516060808201835260008083526020830181905292820152906114ee836110ae565b6040805160608101825285815260009586526003602090815295829020546001600160a01b0316958101959095528401525090919050565b61152e61159f565b6001600160a01b0381166115935760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610748565b61159c816115f9565b50565b6000546001600160a01b03163314610ed55760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610748565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b6001600160a01b0382166116935760405162461bcd60e51b81526020600482015260116024820152701253959053125117d49150d25412515395607a1b6044820152606401610748565b6000818152600360205260409020546001600160a01b0316156116e95760405162461bcd60e51b815260206004820152600e60248201526d1053149150511657d3525395115160921b6044820152606401610748565b6001600160a01b038216600081815260046020908152604080832080546001019055848352600390915280822080546001600160a01b0319168417905551839291907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b6001600160e01b03198116811461159c57600080fd5b60006020828403121561177c57600080fd5b81356109d381611754565b634e487b7160e01b600052604160045260246000fd5b604051601f8201601f1916810167ffffffffffffffff811182821017156117c6576117c6611787565b604052919050565b6001600160a01b038116811461159c57600080fd5b600067ffffffffffffffff8211156117fd576117fd611787565b50601f01601f191660200190565b600082601f83011261181c57600080fd5b813561182f61182a826117e3565b61179d565b81815284602083860101111561184457600080fd5b816020850160208301376000918101602001919091529392505050565b60006020828403121561187357600080fd5b813567ffffffffffffffff8082111561188b57600080fd5b908301906060828603121561189f57600080fd5b6040516060810181811083821117156118ba576118ba611787565b60405282356118c8816117ce565b8152602083810135908201526040830135828111156118e657600080fd5b6118f28782860161180b565b60408301525095945050505050565b60005b8381101561191c578181015183820152602001611904565b50506000910152565b6000815180845261193d816020860160208601611901565b601f01601f19169290920160200192915050565b6020815260006109d36020830184611925565b60006020828403121561197657600080fd5b5035919050565b6000806040838503121561199057600080fd5b823561199b816117ce565b946020939093013593505050565b6000602082840312156119bb57600080fd5b813567ffffffffffffffff8111156119d257600080fd5b6114c18482850161180b565b60018060a01b0384168152826020820152606060408201526000611a056060830184611925565b95945050505050565b600060208284031215611a2057600080fd5b81356109d3816117ce565b600080600060608486031215611a4057600080fd5b8335611a4b816117ce565b92506020840135611a5b816117ce565b929592945050506040919091013590565b6020808252825182820181905260009190848201906040850190845b81811015611aa457835183529284019291840191600101611a88565b50909695505050505050565b60008083601f840112611ac257600080fd5b50813567ffffffffffffffff811115611ada57600080fd5b602083019150836020828501011115611af257600080fd5b9250929050565b600080600080600060808688031215611b1157600080fd5b853594506020860135611b23816117ce565b935060408601359250606086013567ffffffffffffffff811115611b4657600080fd5b611b5288828901611ab0565b969995985093965092949392505050565b60008060408385031215611b7657600080fd5b8235611b81816117ce565b915060208301358015158114611b9657600080fd5b809150509250929050565b60008060208385031215611bb457600080fd5b823567ffffffffffffffff811115611bcb57600080fd5b611bd785828601611ab0565b90969095509350505050565b600080600080600060808688031215611bfb57600080fd5b8535611c06816117ce565b94506020860135611b23816117ce565b602081528151602082015260018060a01b036020830151166040820152600060408301516060808401526114c16080840182611925565b60008060408385031215611c6057600080fd5b8235611c6b816117ce565b91506020830135611b96816117ce565b600181811c90821680611c8f57607f821691505b602082108103611caf57634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052603260045260246000fd5b80516020808301519190811015611caf5760001960209190910360031b1b16919050565b60008351611d01818460208801611901565b9190910191825250602001919050565b634e487b7160e01b600052601160045260246000fd5b600060018201611d3957611d39611d11565b5060010190565b604081526000611d536040830185611925565b90508260208301529392505050565b600060208284031215611d7457600080fd5b5051919050565b600060208284031215611d8d57600080fd5b81516109d381611754565b8082018082111561060357610603611d11565b601f821115610d9b57600081815260208120601f850160051c81016020861015611dd25750805b601f850160051c820191505b81811015611df157828155600101611dde565b505050505050565b815167ffffffffffffffff811115611e1357611e13611787565b611e2781611e218454611c7b565b84611dab565b602080601f831160018114611e5c5760008415611e445750858301515b600019600386901b1c1916600185901b178555611df1565b600085815260208120601f198616915b82811015611e8b57888601518255948401946001909101908401611e6c565b5085821015611ea95787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b6001600160e01b0319831681528151600090611edc816004850160208701611901565b919091016004019392505050565b60008251611efc818460208701611901565b9190910192915050565b600082611f2357634e487b7160e01b600052601260045260246000fd5b500690565b60008154611f3581611c7b565b808552602060018381168015611f525760018114611f6c57611f9a565b60ff1985168884015283151560051b880183019550611f9a565b866000528260002060005b85811015611f925781548a8201860152908301908401611f77565b890184019650505b505050505092915050565b81835281816020850137506000828201602090810191909152601f909101601f19169091010190565b604081526000611fe16040830186611f28565b8281036020840152611ff4818587611fa5565b9695505050505050565b67ffffffffffffffff83111561201657612016611787565b61202a836120248354611c7b565b83611dab565b6000601f84116001811461205e57600085156120465750838201355b600019600387901b1c1916600186901b1783556113a7565b600083815260209020601f19861690835b8281101561208f578685013582556020948501946001909201910161206f565b50868210156120ac5760001960f88860031b161c19848701351681555b505060018560011b0183555050505050565b6001600160a01b03868116825285166020820152604081018490526080606082018190526000906120f29083018486611fa5565b979650505050505050565b8381526060602082015260006121166060830185611925565b8281036040840152611ff48185611f28565b60006020828403121561213a57600080fd5b815167ffffffffffffffff81111561215157600080fd5b8201601f8101841361216257600080fd5b805161217061182a826117e3565b81815285602083850101111561218557600080fd5b611a0582602083016020860161190156fea26469706673582212203fc548aa4f22e6f4c01757ba3f2e0383630418b3d17601758718ab19a4d9918d64736f6c63430008110033a26469706673582212207932e8c793f9a96d9606a8907a6671f54c0fb1ed5a763048e13b429274e7706c64736f6c634300081100330000000000000000000000009fe46736679d2d9a65f0992f2272de9f3c7fa6e0000000000000000000000000000000000000000000000000002386f26fc10000", + "nonce": "0x4" + }, + "additionalContracts": [], + "isFixedGasLimit": false + } + ], + "receipts": [ + { + "transactionHash": "0x045f89ca387f2853a2a30f92868bdf8945580b501a47d7aef7e168a4febacd61", + "transactionIndex": "0x0", + "blockHash": "0x073d71b449878603d31287338acca94dcb45b40e11e449e2ab2b1656be333e6a", + "blockNumber": "0xb", + "from": "0xf39Fd6e51aad88F6F4ce6aB8827279cffFb92266", + "to": null, + "cumulativeGasUsed": "0xf4240", + "gasUsed": "0x7a120", + "contractAddress": "0xe7f1725E7734CE288F8367e1Bb143E90bb3F0512", + "logs": [], + "status": "0x1", + "logsBloom": "0x00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", + "type": "0x0", + "effectiveGasPrice": "0xf4240" + }, + { + "transactionHash": "0x000128fbbcf1ce04facb50cb06b25514ad5927f52ec5b5b497f9cc8acff8a383", + "transactionIndex": "0x0", + "blockHash": "0x0365db0c5c55e83555a1ad1cb190a6c89c8d9ee6946e001ad1599f03c142c22d", + "blockNumber": "0xc", + "from": "0xf39Fd6e51aad88F6F4ce6aB8827279cffFb92266", + "to": null, + "cumulativeGasUsed": "0xf4240", + "gasUsed": "0x7a120", + "contractAddress": "0x9fE46736679d2D9a65F0992F2272dE9f3c7fa6e0", + "logs": [], + "status": "0x1", + "logsBloom": "0x00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", + "type": "0x0", + "effectiveGasPrice": "0xf4240" + }, + { + "transactionHash": "0x027230bd60128347bd04e3fa2055be2e2ba4fcd489e1ac59cc7d43bbceab7797", + "transactionIndex": "0x0", + "blockHash": "0x022f9bb72b6d7865f23e51646c45fad560519fa7d52ccc958e9823cc1f365f8f", + "blockNumber": "0xd", + "from": "0xf39Fd6e51aad88F6F4ce6aB8827279cffFb92266", + "to": null, + "cumulativeGasUsed": "0xf4240", + "gasUsed": "0x7a120", + "contractAddress": "0xCf7Ed3AccA5a467e9e704C703E8D87F634fB0Fc9", + "logs": [], + "status": "0x1", + "logsBloom": "0x00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", + "type": "0x0", + "effectiveGasPrice": "0xf4240" + } + ], + "libraries": [ + "lib/eth-projects-monorepo/packages/eth-projects-contracts/contracts/lib/utils/Bytes.sol:Bytes:0x5fbdb2315678afecb367f032d93f642f64180aa3" + ], + "pending": [ + "0x05c851c318f703ca1584f93726cae8b01fcd20b307c2a5add61a15b751a6cdab", + "0x0156ed37608a55ed8897ef8eb39ae382ec9b73dbe71b548c8f747ed4587eda48" + ], + "returns": {}, + "timestamp": 1689179242, + "chain": 1263227476, + "multi": false, + "commit": "24c72b7" +} \ No newline at end of file diff --git a/packages/starksheet-solidity/broadcast/Evmsheet.s.sol/1263227476/run-1689179253.json b/packages/starksheet-solidity/broadcast/Evmsheet.s.sol/1263227476/run-1689179253.json new file mode 100644 index 00000000..ee76f2e3 --- /dev/null +++ b/packages/starksheet-solidity/broadcast/Evmsheet.s.sol/1263227476/run-1689179253.json @@ -0,0 +1,158 @@ +{ + "transactions": [ + { + "hash": "0x045f89ca387f2853a2a30f92868bdf8945580b501a47d7aef7e168a4febacd61", + "transactionType": "CREATE", + "contractName": "Bytes", + "contractAddress": "0x5FbDB2315678afecb367f032d93F642f64180aa3", + "function": null, + "arguments": null, + "transaction": { + "type": "0x00", + "from": "0xf39fd6e51aad88f6f4ce6ab8827279cfffb92266", + "gas": "0x1387ed", + "data": "0x6110d661003a600b82828239805160001a60731461002d57634e487b7160e01b600052600060045260246000fd5b30600052607381538281f3fe73000000000000000000000000000000000000000030146080604052600436106101625760003560e01c8063a5eb31ee116100cd578063d1ffb56111610086578063d1ffb561146103fb578063d442584f1461042b578063e004139614610454578063f1142fb314610474578063f647f8fb14610487578063f83b670f146104b257600080fd5b8063a5eb31ee14610344578063a8d8f00f1461036b578063b5cdf92414610396578063b63711df146103a9578063be8b3430146103bc578063c29616bd146103cf57600080fd5b80635ef849301161011f5780635ef8493014610241578063913c97b41461026b57806397e6175c1461029f57806399dd9bd7146102cb5780639ae4c3d1146102ec5780639cee499e1461031857600080fd5b8063042aa0841461016757806305d3bb74146101985780631a7431ef146101c0578063235266d2146101e357806348137709146101f65780634d66a2ae1461021b575b600080fd5b61017a610175366004610ec0565b6104de565b6040516001600160d01b031990911681526020015b60405180910390f35b6101ab6101a6366004610ec0565b610540565b60405163ffffffff909116815260200161018f565b6101d36101ce366004610f05565b61059d565b604051901515815260200161018f565b6101d36101f1366004610f4c565b610652565b610209610204366004610ec0565b6106b5565b60405160ff909116815260200161018f565b61022e610229366004610fa6565b610711565b60405161ffff909116815260200161018f565b61025461024f366004610ec0565b61071e565b60405165ffffffffffff909116815260200161018f565b61027e610279366004610ec0565b610772565b6040516fffffffffffffffffffffffffffffffff909116815260200161018f565b6102b26102ad366004610ec0565b6107d0565b6040516001600160a01b0319909116815260200161018f565b6102de6102d9366004610ec0565b61082e565b60405190815260200161018f565b6102ff6102fa366004610ec0565b61088c565b60405167ffffffffffffffff909116815260200161018f565b61032b610326366004610ec0565b6108e9565b6040516001600160d81b0319909116815260200161018f565b610357610352366004610ec0565b610946565b60405162ffffff909116815260200161018f565b61037e610379366004610ec0565b6109a3565b60405166ffffffffffffff909116815260200161018f565b6102de6103a4366004610ec0565b610a00565b6102ff6103b7366004610ec0565b610a55565b61022e6103ca366004610ec0565b610aa9565b6103e26103dd366004610ec0565b610b06565b6040516001600160c81b0319909116815260200161018f565b61040e610409366004610ec0565b610b5a565b6040516bffffffffffffffffffffffff909116815260200161018f565b61043e610439366004610ec0565b610bae565b60405164ffffffffff909116815260200161018f565b610467610462366004610fe3565b610c02565b60405161018f9190611031565b6102b2610482366004610ec0565b610d0f565b61049a610495366004610ec0565b610d64565b6040516001600160a01b03909116815260200161018f565b6104c56104c0366004610ec0565b610dc9565b6040516001600160f81b0319909116815260200161018f565b60006104eb82600661107f565b835110156105375760405162461bcd60e51b8152602060048201526014602482015273746f4279746573365f6f75744f66426f756e647360601b60448201526064015b60405180910390fd5b50016006015190565b600061054d82600461107f565b835110156105945760405162461bcd60e51b8152602060048201526014602482015273746f55696e7433325f6f75744f66426f756e647360601b604482015260640161052e565b50016004015190565b600080600190508354600260018083161561010002038216048451808214600181146105cc5760009450610644565b821561064457602083106001811461062957600189600052602060002060208a018581015b600284828410010361062057815183541461060f5760009950600093505b6001830192506020820191506105f1565b50505050610642565b6101008086040294506020880151851461064257600095505b505b509293505050505b92915050565b81518151600091600191811480831461066e57600092506106ab565b600160208701838101602088015b60028483851001036106a657805183511461069a5760009650600093505b6020928301920161067c565b505050505b5090949350505050565b60006106c282600161107f565b835110156107085760405162461bcd60e51b8152602060048201526013602482015272746f55696e74385f6f75744f66426f756e647360681b604482015260640161052e565b50016001015190565b600061064c826000610aa9565b600061072b82600661107f565b835110156105375760405162461bcd60e51b8152602060048201526014602482015273746f55696e7434385f6f75744f66426f756e647360601b604482015260640161052e565b600061077f82601061107f565b835110156107c75760405162461bcd60e51b8152602060048201526015602482015274746f55696e743132385f6f75744f66426f756e647360581b604482015260640161052e565b50016010015190565b60006107dd82600c61107f565b835110156108255760405162461bcd60e51b8152602060048201526015602482015274746f427974657331325f6f75744f66426f756e647360581b604482015260640161052e565b5001600c015190565b600061083b82602061107f565b835110156108835760405162461bcd60e51b8152602060048201526015602482015274746f427974657333325f6f75744f66426f756e647360581b604482015260640161052e565b50016020015190565b600061089982600861107f565b835110156108e05760405162461bcd60e51b8152602060048201526014602482015273746f55696e7436345f6f75744f66426f756e647360601b604482015260640161052e565b50016008015190565b60006108f682600561107f565b8351101561093d5760405162461bcd60e51b8152602060048201526014602482015273746f4279746573355f6f75744f66426f756e647360601b604482015260640161052e565b50016005015190565b600061095382600361107f565b8351101561099a5760405162461bcd60e51b8152602060048201526014602482015273746f55696e7432345f6f75744f66426f756e647360601b604482015260640161052e565b50016003015190565b60006109b082600761107f565b835110156109f75760405162461bcd60e51b8152602060048201526014602482015273746f55696e7435365f6f75744f66426f756e647360601b604482015260640161052e565b50016007015190565b6000610a0d82602061107f565b835110156108835760405162461bcd60e51b8152602060048201526015602482015274746f55696e743235365f6f75744f66426f756e647360581b604482015260640161052e565b6000610a6282600861107f565b835110156108e05760405162461bcd60e51b8152602060048201526014602482015273746f4279746573385f6f75744f66426f756e647360601b604482015260640161052e565b6000610ab682600261107f565b83511015610afd5760405162461bcd60e51b8152602060048201526014602482015273746f55696e7431365f6f75744f66426f756e647360601b604482015260640161052e565b50016002015190565b6000610b1382600761107f565b835110156109f75760405162461bcd60e51b8152602060048201526014602482015273746f4279746573375f6f75744f66426f756e647360601b604482015260640161052e565b6000610b6782600c61107f565b835110156108255760405162461bcd60e51b8152602060048201526014602482015273746f55696e7439365f6f75744f66426f756e647360601b604482015260640161052e565b6000610bbb82600561107f565b8351101561093d5760405162461bcd60e51b8152602060048201526014602482015273746f55696e7434305f6f75744f66426f756e647360601b604482015260640161052e565b606081610c1081601f61107f565b1015610c4f5760405162461bcd60e51b815260206004820152600e60248201526d736c6963655f6f766572666c6f7760901b604482015260640161052e565b610c59828461107f565b84511015610c9d5760405162461bcd60e51b8152602060048201526011602482015270736c6963655f6f75744f66426f756e647360781b604482015260640161052e565b606082158015610cbc5760405191506000825260208201604052610d06565b6040519150601f8416801560200281840101858101878315602002848b0101015b81831015610cf5578051835260209283019201610cdd565b5050858452601f01601f1916604052505b50949350505050565b6000610d1c82601061107f565b835110156107c75760405162461bcd60e51b8152602060048201526015602482015274746f427974657331365f6f75744f66426f756e647360581b604482015260640161052e565b6000610d7182601461107f565b83511015610db95760405162461bcd60e51b8152602060048201526015602482015274746f416464726573735f6f75744f66426f756e647360581b604482015260640161052e565b500160200151600160601b900490565b6000610dd682600161107f565b835110156107085760405162461bcd60e51b8152602060048201526014602482015273746f4279746573315f6f75744f66426f756e647360601b604482015260640161052e565b634e487b7160e01b600052604160045260246000fd5b600082601f830112610e4457600080fd5b813567ffffffffffffffff80821115610e5f57610e5f610e1d565b604051601f8301601f19908116603f01168101908282118183101715610e8757610e87610e1d565b81604052838152866020858801011115610ea057600080fd5b836020870160208301376000602085830101528094505050505092915050565b60008060408385031215610ed357600080fd5b823567ffffffffffffffff811115610eea57600080fd5b610ef685828601610e33565b95602094909401359450505050565b60008060408385031215610f1857600080fd5b82359150602083013567ffffffffffffffff811115610f3657600080fd5b610f4285828601610e33565b9150509250929050565b60008060408385031215610f5f57600080fd5b823567ffffffffffffffff80821115610f7757600080fd5b610f8386838701610e33565b93506020850135915080821115610f9957600080fd5b50610f4285828601610e33565b600060208284031215610fb857600080fd5b813567ffffffffffffffff811115610fcf57600080fd5b610fdb84828501610e33565b949350505050565b600080600060608486031215610ff857600080fd5b833567ffffffffffffffff81111561100f57600080fd5b61101b86828701610e33565b9660208601359650604090950135949350505050565b600060208083528351808285015260005b8181101561105e57858101830151858201604001528201611042565b506000604082860101526040601f19601f8301168501019250505092915050565b8082018082111561064c57634e487b7160e01b600052601160045260246000fdfea26469706673582212205bdf5bc4551862519f5370e0dcec38eefbbbe11b6a5bf19ce2846b4f8831a5dc64736f6c63430008110033", + "nonce": "0x0" + }, + "additionalContracts": [], + "isFixedGasLimit": false + }, + { + "hash": "0x000128fbbcf1ce04facb50cb06b25514ad5927f52ec5b5b497f9cc8acff8a383", + "transactionType": "CREATE", + "contractName": "MultiSendCallOnly", + "contractAddress": "0xe7f1725E7734CE288F8367e1Bb143E90bb3F0512", + "function": null, + "arguments": null, + "transaction": { + "type": "0x00", + "from": "0xf39fd6e51aad88f6f4ce6ab8827279cfffb92266", + "gas": "0x2e5c4", + "value": "0x0", + "data": "0x608060405234801561001057600080fd5b506101ae806100206000396000f3fe60806040526004361061001e5760003560e01c80638d80ff0a14610023575b600080fd5b6100366100313660046100c7565b610038565b005b805160205b818110156100ac578083015160f81c6001820184015160601c601583018501516035840186015160558501870160008560008114610082576001811461001e5761008e565b6000808585888a5af191505b508061009957600080fd5b505080605501850194505050505061003d565b505050565b634e487b7160e01b600052604160045260246000fd5b6000602082840312156100d957600080fd5b813567ffffffffffffffff808211156100f157600080fd5b818401915084601f83011261010557600080fd5b813581811115610117576101176100b1565b604051601f8201601f19908116603f0116810190838211818310171561013f5761013f6100b1565b8160405282815287602084870101111561015857600080fd5b82602086016020830137600092810160200192909252509594505050505056fea2646970667358221220c15490bbb756a4c3c49d6335b2e81d2d098647b0ea70174c2279f199b1d0800364736f6c63430008110033", + "nonce": "0x1" + }, + "additionalContracts": [], + "isFixedGasLimit": false + }, + { + "hash": "0x027230bd60128347bd04e3fa2055be2e2ba4fcd489e1ac59cc7d43bbceab7797", + "transactionType": "CREATE", + "contractName": "BasicCellRenderer", + "contractAddress": "0x9fE46736679d2D9a65F0992F2272dE9f3c7fa6e0", + "function": null, + "arguments": null, + "transaction": { + "type": "0x00", + "from": "0xf39fd6e51aad88f6f4ce6ab8827279cfffb92266", + "gas": "0x3180ad", + "value": "0x0", + "data": "0x608060405234801561001057600080fd5b50612c25806100206000396000f3fe608060405234801561001057600080fd5b50600436106100365760003560e01c806306d4cd8b1461003b57806328de0f2f14610064575b600080fd5b61004e610049366004610322565b610077565b60405161005b919061038b565b60405180910390f35b61004e610072366004610404565b6100f1565b60606000610086600f846104fc565b90506000610095600f8361051e565b61009f9085610535565b905060006100ae826041610548565b60f81b9050806100c76100c2856001610548565b6101b6565b6040516020016100d8929190610577565b6040516020818303038152906040529350505050919050565b606060006100fe86610077565b905083838261018388735fbdb2315678afecb367f032d93f642f64180aa363b5cdf924909160006040518363ffffffff1660e01b81526004016101429291906105a8565b602060405180830381865af415801561015f573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906100c291906105ca565b87878660405160200161019c97969594939291906105f2565b604051602081830303815290604052915050949350505050565b606060006101c383610249565b600101905060008167ffffffffffffffff8111156101e3576101e36103a5565b6040519080825280601f01601f19166020018201604052801561020d576020820181803683370190505b5090508181016020015b600019016f181899199a1a9b1b9c1cb0b131b232b360811b600a86061a8153600a850494508461021757509392505050565b60008072184f03e93ff9f4daa797ed6e38ed64bf6a1f0160401b83106102885772184f03e93ff9f4daa797ed6e38ed64bf6a1f0160401b830492506040015b6d04ee2d6d415b85acef810000000083106102b4576d04ee2d6d415b85acef8100000000830492506020015b662386f26fc1000083106102d257662386f26fc10000830492506010015b6305f5e10083106102ea576305f5e100830492506008015b61271083106102fe57612710830492506004015b60648310610310576064830492506002015b600a831061031c576001015b92915050565b60006020828403121561033457600080fd5b5035919050565b60005b8381101561035657818101518382015260200161033e565b50506000910152565b6000815180845261037781602086016020860161033b565b601f01601f19169290920160200192915050565b60208152600061039e602083018461035f565b9392505050565b634e487b7160e01b600052604160045260246000fd5b60008083601f8401126103cd57600080fd5b50813567ffffffffffffffff8111156103e557600080fd5b6020830191508360208285010111156103fd57600080fd5b9250929050565b6000806000806060858703121561041a57600080fd5b84359350602085013567ffffffffffffffff8082111561043957600080fd5b818701915087601f83011261044d57600080fd5b81358181111561045f5761045f6103a5565b604051601f8201601f19908116603f01168101908382118183101715610487576104876103a5565b816040528281528a60208487010111156104a057600080fd5b8260208601602083013760006020848301015280975050505060408701359150808211156104cd57600080fd5b506104da878288016103bb565b95989497509550505050565b634e487b7160e01b600052601160045260246000fd5b60008261051957634e487b7160e01b600052601260045260246000fd5b500490565b808202811582820484141761031c5761031c6104e6565b8181038181111561031c5761031c6104e6565b8082018082111561031c5761031c6104e6565b6000815161056d81856020860161033b565b9290920192915050565b6001600160f81b031983168152815160009061059a81600185016020870161033b565b919091016001019392505050565b6040815260006105bb604083018561035f565b90508260208301529392505050565b6000602082840312156105dc57600080fd5b5051919050565b81818437506000910190815290565b7f646174613a6170706c69636174696f6e2f6a736f6e2c7b22646573637269707481527f696f6e223a2022537461726b7368656574222c20226e616d65223a202200000060208201528688603d8301376000878201602160f81b603d820152875161066481603e840160208c0161033b565b7f222c22696d616765223a2022646174613a696d6167652f7376672b786d6c2c25603e92909101918201527f334373766725323076696577426f782533442532373025323030253230383925605e8201527f3230353525323725323066696c6c2533442532376e6f6e65253237253230786d607e8201527f6c6e73253344253237687474702533412f2f7777772e77332e6f72672f323030609e8201527f302f737667253237253345253343646566732533452533437374796c6525334560be8201527f253430666f6e742d66616365253230253742666f6e742d66616d696c7925334160de8201527f253230253237507265737325323053746172742532303250253237253342737260fe8201527f6325334125323075726c25323825323764617461253341666f6e742f776f666661011e8201527f32253342626173653634253243643039474d6741424141414141424c3841413861013e8201527f41414141415235774141424b674141454141414141414141414141414141414161015e8201527f4141414141414141414141414150305a4756453063476a41624d42794358675a61017e8201527f6741494e794551674b3846545361517544524141424e67496b41344e4d42434161019e8201527f46687a5148684649623644566c42306a314f4d4253336f4f4953744562732f2f6101be8201527f2f6c4a776356727a47634f30676f684c45484d6369694443434e57695a6761306101de8201527f79625345555954514f6a4b427038546c737a7344526438716174586c333058746101fe8201527f30645a47467952305668444b776c62746c25324272734643773945316e64655961021e8201527f4a74732f37527762305673784d71576c636a6a775445537a2f5568752f77337361023e8201527f33746b6f496d70343464515168576f456d54337579526d70746f7553446b7a5761025e8201527f454138762f3932364a4b7539486f696e6e3673376674336d4965476c7737547161027e8201527f6437456f326a46517849766a5642494a70563269614f62547a68575932314e7461029e8201527f476772687434704d4b3457556a34624c7967542f51253242514c7879253242336102be8201527f6c482f362f6b6275496444497239446a724a496a6f394a7336524d58253242456102de8201527f6b37424f545a6b6d70397a347455524652566656307148504448375a7462364a6102fe8201527f616f6130684c335975616232473373667a72365776394536793569767025324261031e8201527f7135564c74426a514478476f5345304150313762336466376c61726a6525324261033e8201527f73637a6b7241744a334b6657304a342532424b323365744b4b556a383554616f61035e8201527f57473453346158436c427743413268676141652532423658396f696e32304e6261037e8201527f554a7264466767517049686d5247494d30372f7025324277375a7058316c473161039e8201527f6a6a51787073435141423438714445415042346950312f6a39592f4261686a356103be8201527f5943414e302f78714157496852616a6c6e694e654f50396e78433466667932556103de8201527f694843304e47386b686f6f567a6f7459334445417a417a41356b473735337a6a6103fe8201527f4853354d6e6d586b69496a6d54554d36556d4d3025324256346976752f48377861041e8201527f6a364666322f6b343472787a6449324141676742492f4c48416b394a7a35554d61043e8201527f496f4c7755344146455435725a464f33444d616655633061777351434879497061045e8201527f557a546b30784a474a454f6a4e6871436b474570496153474f6a714e466d2f5761047e8201527f4e434e3569636b71434d6e414165564c4d4c655867356971386b365752585a5261049e8201527f326c337042393831427a73475a743225324256696c4342723954494a674b67786104be8201527f365542514446253242566a4b44714e7741414948386a6949664d6e75384b68666104de8201527f584b486f4e3348634134477245786842324155442f795a554d423857547579496104fe8201527f413444634f4b656434397939504249616e426967734d454e38556b30766c547661051e8201527f304a58334e394d795a75544d763573655357413525324238556538504465547261053e8201527f645467474973566d4e33635856586a6463795275633434385866664176506e7361055e8201527f3575324d4531722532426a4731703137767a3849704f416e483444427367793361057e8201527f512f54376b33646d2f3846334232377355694877464631414f6c683055646e4961059e8201527f4471494e5164506355393145786f2f346252696a6a5169704e4e307a4c646c7a6105be8201527f504438496f547449734c38717162746f4f5149514a5a567849705931315073536105de8201527f55533231397a4c585066642f507667765751346372464d2532425769755671706105fe8201527f645a6f4e6475645872632f4745324d4a36656e3575635746694763375274364f61061e8201527f487676354d674c2532427a44733578444277696141315433554877326b63594361063e8201527f312f55666453316645316d37763742346537653350574848786533594f32483561065e8201527f25324241504f5a7965503025324251506553425468793078713965363241486a61067e8201527f6141556842432f364144484c6f476f4f657636412532426867487369317a613861069e8201527f71355a4e4d716a596c575a4d713867354248445574495370574a73526f52544a6106be8201527f56613049305a3957546b5371564b73507a3464586a7648746449684c6e7670746106de8201527f554c4330753542567579414d544b4a513930594b5267546e5769476b6d7153456106fe8201527f714b6d7256685259674b6b335443686255573671456f45637665577a6859535461071e8201527f4c32484e706735452f6d7151393956564467763352475435586d33637a68754c61073e8201527f3972685864316132372f736c5130686959366a643739614f5a43746a6f52687261075e8201527f623136575676514b725734477a786a7869723238494d697a2f7155447973495761077e8201527f7037516a667765347a556437614a735651575179524c554b484b42577938577661079e8201527f45565333584d53353656337757644f442532424638757639645477496d4b722f6107be8201527f5064626d5763775176456641616a7975566a70784e32704f56635769336c38776107de8201527f454c2f6d395070646f55494536253242504b5838315041546d67654f304231736107fe8201527f47454825324261707a353466646d534a7a333741686635366a4c7739756e504561081e8201527f35644d4b3025324237544639563843435466523979664e7355493474557a464661083e8201527f42326e536e384b4f626a64446964554c7034494a6873777878595172595a643661085e8201527f4e76436e55394d445825324252654c6e4d546d6c315a453972306b5077334e3261087e8201527f6752253242736a4573596d4953706b356c31497333594e614a4b6f6e7a65703761089e8201527f56637354316e556b62347048774b5a41796b614b6f43504630506f6d456876496108be8201527f5758656e6f5a767836774f4b313070316c3274546858793850316555776473766108de8201527f53715157766f424d7473674851554a614774494273756861776450545a5378596108fe8201527f707257757734647a7231564755744449465871726f4d4d69597346783857695461091e8201527f336463574b6f376d50554c79715657413972305974524a4c626957766a6e4c2561093e8201527f324272633452646767624e516c514141613264306d616236364d48447074314361095e8201527f6477626b51436253375053445a4d7a3746724f51713165636153304a6c74644161097e8201527f6c44527941587173364130586247707748676b70367572557757416272464d3361099e8201527f75794d764e4b6c344d6c435548537950416d3931776144454a3559595148754a6109be8201527f4d32304b575251737637486b61334770686c533258444b714f4b4245554753316109de8201527f65306b63316f323449494166486c4449794278584a4a656767423369386174566109fe8201527f67434f3064444f5a484a57596a564c416a6a397137765673456e72684b374568610a1e8201527f4c75427a42586d4d674554634531636d61436976504b6f4a766670466c794935610a3e8201527f4d70584234454325324245672f596d303454787843354e6c73596b74646f5951610a5e8201527f55656c38624673456c3748345a36734377622f38626b347458574658504b6a71610a7e8201527f5462526e64336e4c5770394f784941706c664b586747684e6c72443462354a4c610a9e8201527f5a367055753441726756614d366561357844574244476f7a707a4641376e6747610abe8201527f74596334486141775269475576637653653652414177335a576b564f4667764b610ade8201527f46364955696c4d49394964715155345134585264484866736666517770313955610afe8201527f434a49306a5773725433356f5578303678507268473271364d4533554f306c63610b1e8201527f635a557354454351784a44527854444b6c334c4948722f6162546f73686c6466610b3e8201527f51786a364f57745273466e6966444373473674336b426f344e6d424a6d615556610b5e8201527f54636c794951414a4c6a6e723042365a3859464d6e396b397967703752727848610b7e8201527f36766877624a4e41654b4d554436353974386746514a4d5377652f434f624850610b9e8201527f467671484746554e5266253242737245663354584b42725a76676b6369396972610bbe8201527f426d63442f7458616754474358634e68432532424f3539754c706e6673796f71610bde8201527f4c53313238374552776d38666165564f6d3857634437386c5a36594232793938610bfe8201527f5a4c6c4d3972557264324c514e6c324956643454727376675139363079377573610c1e8201527f5965306854506170576a71726c2532425837784665424e54253242315a644a4a610c3e8201527f572532424678745737584e7774634e7a7761672532425256656a6d4a6839656d610c5e8201527f6c495a4b69694e63694b3849554f4d33556a4a376342554e5847505853326c68610c7e8201527f253242687770676f4836567348524f63764569723372585970344c7769435a77610c9e8201527f3176486c43623552314d68623564536e4f326d6e6f475a6f5846315765574757610cbe8201527f6d7a694a314a555534715072306e694a536c4e424331636b4b6d4a6657625877610cde8201527f5577757449547a456d6a776770776142753464525066746a2f4e384143526e64610cfe8201527f616b2f4641674b674c37305058577839767a6b59322532426d34355473496b4c610d1e8201527f3037616f70444e6f676830535262535a534f397a744657516a376e574c676275610d3e8201527f364325324254374b6a44715a3667456e5277674d78306b4c5a77797962514f76610d5e8201527f514130773054782f354a42722f63595a6453574f546a774446364e6f586b796a610d7e8201527f33566a484e4751494e76426a5a734a4a3377466141516d6f5a575a5970416961610d9e8201527f574f466e6e686455524176576b557a77693062677a5a4158796f445545714863610dbe8201527f57307069454c574f777168773365765478444957724e32495371525151454c41610dde8201527f4d32365334486c723548552f48784a43436844424a6b756b6341573856415430610dfe8201527f6770545a544b4e48677a444f7234314751656a4f34677a416e6b577077464752610e1e8201527f43334c625231787a4b434875365635694674674c704f384b51596d5965467868610e3e8201527f4c32643838736469506a2f76306b427a636c51637954735766324d6445394944610e5e8201527f386d5858576a72434b253242354532756e336e6976656973526e726971317548610e7e8201527f594d6a6a69694945304b6466674d6f3163476d6b557254624f30356732737633610e9e8201527f477673525971762f61457736375472644f705435567a4641364131417939634b610ebe8201527f6f44667762544a64445750524e57517354796a6d3772486249734b466b6f4f2f610ede8201527f5a4c4376735966785973337768534338614c49344b765677373773336e347a48610efe8201527f67697061634a6e435362463945727a53357069386343577655597a4f5064327a610f1e8201527f684a2f4750437a53684f453378596c634f3350796164586a54334f6b68706841610f3e8201527f58465853766865544e5355525446565641486f4a6d7949726b6a454b6f517746610f5e8201527f4730303554334158643935764e30446d336d427332786746546c253242513572610f7e8201527f73416a6e744768707a6f62643642374e7a52664e56653130446f4e5639343753610f9e8201527f59646f635252624776636d785456786f61367a717756376d416e773544314745610fbe8201527f5474327a48382532425476514256356e37672f32615768743979794e594c3974610fde8201527f4f42744167384846435945316d4e775432454232467538544968543776565241610ffe8201527f3461587a6e6b3670545a4e6779696f73747749364b654655374c696c7041253261101e8201527f42334234474a794277574d327062466a4876734a3747754f6f616b6a6d46746a61103e8201527f59344c6254396c323239253242453646374c4475577a744c6e333749786b386a61105e8201527f356c42564b33774c7369362f416641756f6a34396c4d6b5653545045396b704761107e8201527f64304c724555534a4941413070596c4178414d642f4e4f46776f4a446458466961109e8201527f307a4f5744422f54464a705666575642574f516274724a556230636c663369256110be8201527f3242575072446f596c65545674564f45306d36793564487444725551776f414c6110de8201527f7455523365585364444d4e785866656a594674764c626c726c4a7777484b2f456110fe8201527f6957504a616b32574b35386e684e6f4c6a615a55475841756f32656f5777464561111e8201527f66612f445334496958717246714779633348726939785132693243352f73357661113e8201527f7a424d30793777334d4473774d3759325247427172464d6778374f696325324261115e8201527f30497a736d5678617a5473305263666a324f3334532f525639503269486f427561117e8201527f6c4b49594244665a46654c53356439725379664a64536c67683268644d72324f61119e8201527f5552334b6e6c506e4f41785477314a384c4d325a776e4671765a745a4a6c78786111be8201527f343873776243743272316b664875443756624831326159383849437456734b786111de8201527f4b742f31726b616c42414d74782f6f6f6d43445059626b556f4c6344624b436a6111fe8201527f7675713953544467746a584744715735564b36686347654f46697a6a3643714c61121e8201527f4f49716b57783477733245504d444e7378253242613661533230384f39784c3061123e8201527f526146586f394241645530706e452532424c695359334b536f4a41525978646e61125e8201527f7a69545a4d706961442f3438496969393834446151357976656378414673735761127e8201527f792f686274696d63253242704c386b35796f70496d4a627948712f6138797a6c61129e8201527f6c37726f4f7a586d786d4163337459585363546b65734d6344324939315a36336112be8201527f6549312f394a627755716b36737863394b52677277574d414e6543314e6e39756112de8201527f4779775473706d5538712532426c5a6d43714d674153363662674841476a514b6112fe8201527f73754a334451416a5235346d356a4c7a5a616e546c62646530253242726e663461131e8201527f385a574138546c32673277414779427748516e3552322532424e6a726542677861133e8201527f626c734e46627554776d6862414a48737a2f72416f61764c4f34317874767a5961135e8201527f4768336e4c4a426b41506a7578424a445248333048426575385567436978464e61137e8201527f437951322f4b253242385157372f6530253242664f2532423436524e5730657961139e8201527f4c726f39446a5467704a4e4d3547385179306c54644f756d73773066715045696113be8201527f393646702532424830634d774e6f376a787a596d6e4e664d5a6d64506c7932706113de8201527f6f7132575065476d67507136474c78504e34536c4b486e7870624f69754c58516113fe8201527f75583155715031676a6f38426136536c55314f416d5267707a7531735444584a61141e8201527f50754d3338546f387130344c324e777970653837327777556741675a6c70386461143e8201527f6b5166397a38544d43624d6b596b3758484375333564375a5a41656f346b5a4b61145e8201527f68784953386945354c546a334c4f6976485a7268394a3870337a4c5a436a776361147e8201527f6970354452694b6e576e49664c33386b4a684d7452776a67553525324256726d61149e8201527f714b6c6739307a376a64732f4238444b646b464c76483353253242376f4838616114be8201527f6c445a6c626734533155583574434d445342324f364b756c7a41344b763067376114de8201527f314251643054464b7733685358696e62374e6c304258725873514e6376436b386114fe8201527f6d6f394f786965783559627a78564e2f6b3738336f48545a495777393079495a61151e8201527f777672697164475473586e54384965705437597946434f4a6741395a3042794961153e8201527f455956735478522f6b73616b324268376f4b767034766e695530364d57317a4261155e8201527f4672746568647a306b6b587951786a426d7965645636644d596545386146787461157e8201527f6575777355466136466c6c54446c716430707a525a77473663467266574d627061159e8201527f384738587a6a66624d253242354658657076356f457273696c363458783663376115be8201527f5841576275696d3666387347494d58666f334a6971476b703333376854536a676115de8201527f65636862364f42472f327a31376a6f6d4469476d253242476c623146553069656115fe8201527f6e7552796977654c576767447a6d4655765545556a5a6f377356544877684f4661161e8201527f504d6b4e737146423977796d6b45307639666d7477453854377135384e594f3761163e8201527f787534623833766e46766c35755378446c472532426b4f51675249644f346a6761165e8201527f7a786a53486a4b4c7332742f6c684f647771766131415744437072763344345361167e8201527f34523741625934544362664b4637744265363554343551347a7a49714433316161169e8201527f79797557716a692532424636585337535439483943314f342f694b366b4775766116be8201527f6b512f664e3537487837456533373435622f76766e2f62482f58253242392f256116de8201527f32426762656d684f416d49705576755157757344764b517578394a44564e734b6116fe8201527f673651636d6b73515341445530346347524c523768466f5a326337785545664761171e8201527f253242776b755459474d764c6a422f6550634936416847686e5735717a45416961173e8201527f4a586377564545775869654e70536c317a6a457253253242435325324248634c61175e8201527f6f52506d7661324d6767412f69794c67536f544a555767733442794149514f3061177e8201527f4f6f705a487656627a6844494c65557155677a7a48492f667950474e7879777361179e8201527f6f796c6865534639577662795363336b4544716b32415636436c4364635535536117be8201527f6e6c4e6e4963394b794d63384c79622532423867484f4a795173466c4c6250526117de8201527f796d6d374a42743349545a544162314732444252496b514b51705451396939626117fe8201527f3665435353387a4d366161525364544b5657524d336663454a4c644b61746e7361181e8201527f724959774e4a55253242733048364461757832775a35686733706c653042474861183e8201527f756b316b4543734859446461496d4b7025324233463542317859763763486b7161185e8201527f644475306a4b645273657a3531376d63563641685148346931484e3173766c6a61187e8201527f5248366845454672682532426e72726d47316e33307a4d346749776d694d774561189e8201527f624b6842545564423141486f582532424b6741517a4f48543946494f71436b526118be8201527f4e4e623273397170496943534f753167576868497343564a73765771457175356118de8201527f47624a514b4e6a61427465394c4f69676368414a7665475773394332323033766118fe8201527f6f6e476c6b77725251323464646732796345646157554456734441785548734961191e8201527f77773665615234464665336d4a416b66426d5a6452395264774a485a6d47645261193e8201527f7950436a706a627a31712f584a34534949446b66384b4b6e6e32456c4b6d794c61195e8201527f69573442513836733151554b2f76426867524e776548766c5968687a7238706361197e8201527f67704b4b6d6f61576a7036426b594f48446c7835734b5647336365474539657661199e8201527f506e773563646667454242676f554946536238587632504553314772446a78456119be8201527f69524b6b697846716a54704d6d544b6b693148726a7a354368517155717845716119de8201527f544c6c4b6c53715571314772547231476a527130717846717a62744f6e5347656119fe8201527f3668374a6d627a4968355a6544696c315a58536a7430774375616b336c6e476f611a1e8201527f5655506f53734e663337394b326a6274716d44674d69485a42665a6c68324839611a3e8201527f75773738495469314a466a585653662f4336634f55667a346f30644178305447611a5e8201527f777448446863666a3443516d49694531444d5a42546b6c4e5a557065566f614f611a7e8201527f6e717633733234314e50503965766574594768435a50576a4979747332706173611a9e8201527f436a25324270556a54596c336b615574374f744b4a6136355850396d356e6367611abe8201527f364e686a685a587032762532426d57724341545a754a303368316b6a55756976611ade8201527f5067596e6a6e35744b4a4f6b326e6362703251414559585a69304b496d50356b611afe8201527f744961466e366b5a397743253237253239253230666f726d6174253238253237611b1e8201527f776f666632253237253239253342666f6e742d7765696768742533412532306e611b3e8201527f6f726d616c253342666f6e742d7374796c652533412532306e6f726d616c2533611b5e8201527f42666f6e742d646973706c617925334125323073776170253342253744746578611b7e8201527f74253230253742666f6e742d66616d696c792533412532302532375072657373611b9e8201527f2532305374617274253230325025323725334266696c6c253341253230776869611bbe8201527f74652537442e76616c7565253230253742666f6e742d73697a65253341253230611bde8201527f313070782533422537442e6e616d65253230253742666f6e742d73697a652533611bfe8201527f412532303470782533422537442533432f7374796c652533452533432f646566611c1e8201527f7325334525334372656374253230776964746825334425323738392532372532611c3e8201527f30686569676874253344253237353525323725323066696c6c25334425323762611c5e8201527f6c61636b2532372532302f253345253343726563742532307825334425323735611c7e8201527f2e3525323725323079253344253237352e352532372532307769647468253344611c9e8201527f2532373738253237253230686569676874253344253237343425323725323066611cbe8201527f696c6c2533442532372532333030303046462532372532302f25334525334374611cde8201527f657874253230746578742d616e63686f722533442532376d6964646c65253237611cfe8201527f2532307825334425323734342e35253237253230792533442532373333253237611d1e8201527f253230636c61737325334425323776616c756525323725334500000000000000611d3e820152612ba5612b9e6129f5611d5784018a61055b565b7f2533432f746578742533452533437265637425323078253344253237352e352581527f323725323079253344253237352e35253237253230776964746825334425323760208201527f373825323725323068656967687425334425323734342532372532307374726f60408201527f6b652533442532372532334646344630412532372532307374726f6b652d776960608201527f647468253344253237332532372532302f25334525334372656374253230782560808201527f334425323733302532372532307925334425323734352e35253237253230776960a08201527f647468253344253237353825323725323068656967687425334425323738253260c08201527f3725323066696c6c2533442532372532334646344630412532372532302f253360e08201527f4525334374657874253230746578742d616e63686f72253344253237656e64256101008201527f32372532307825334425323738372532372532307925334425323735322532376101208201527f253230636c6173732533442532376e616d6525323725334500000000000000006101408201526101580190565b86886105e3565b602160f81b81529050612bbb600182018561055b565b7f2533432f746578742533452533432f737667253345227d00000000000000000081526017019a995050505050505050505056fea26469706673582212206a2c00c13ddb4f1bcd7ee36e36f0c874d7d9dadcf38306eab3610b5a6e7af83464736f6c63430008110033", + "nonce": "0x2" + }, + "additionalContracts": [], + "isFixedGasLimit": false + }, + { + "hash": "0x05c851c318f703ca1584f93726cae8b01fcd20b307c2a5add61a15b751a6cdab", + "transactionType": "CREATE", + "contractName": null, + "contractAddress": "0xCf7Ed3AccA5a467e9e704C703E8D87F634fB0Fc9", + "function": null, + "arguments": null, + "transaction": { + "type": "0x00", + "from": "0xf39fd6e51aad88f6f4ce6ab8827279cfffb92266", + "gas": "0x42230", + "value": "0x0", + "data": "0x608060405234801561001057600080fd5b506102cf806100206000396000f3fe608060405234801561001057600080fd5b506004361061004c5760003560e01c80630194db8e14610051578063072bdcc214610076578063a391c15b14610089578063b67d77c51461009c575b600080fd5b61006461005f366004610160565b6100af565b60405190815260200160405180910390f35b610064610084366004610160565b6100ef565b61006461009736600461021e565b610129565b6100646100aa36600461021e565b61013e565b600080805b83518110156100e8578381815181106100cf576100cf610240565b60200260200101518201915080806001019150506100b4565b5092915050565b60006001815b83518110156100e85783818151811061011057610110610240565b60200260200101518202915080806001019150506100f5565b60006101358284610256565b90505b92915050565b60006101358284610278565b634e487b7160e01b600052604160045260246000fd5b6000602080838503121561017357600080fd5b823567ffffffffffffffff8082111561018b57600080fd5b818501915085601f83011261019f57600080fd5b8135818111156101b1576101b161014a565b8060051b604051601f19603f830116810181811085821117156101d6576101d661014a565b6040529182528482019250838101850191888311156101f457600080fd5b938501935b82851015610212578435845293850193928501926101f9565b98975050505050505050565b6000806040838503121561023157600080fd5b50508035926020909101359150565b634e487b7160e01b600052603260045260246000fd5b60008261027357634e487b7160e01b600052601260045260246000fd5b500490565b8181038181111561013857634e487b7160e01b600052601160045260246000fdfea2646970667358221220fcdef23ba4219270ddb3ab764e22a87e229c05e6f1dfc4eeea983fa1a1dac91f64736f6c63430008110033", + "nonce": "0x3" + }, + "additionalContracts": [], + "isFixedGasLimit": false + }, + { + "hash": "0x0156ed37608a55ed8897ef8eb39ae382ec9b73dbe71b548c8f747ed4587eda48", + "transactionType": "CREATE", + "contractName": "Evmsheet", + "contractAddress": "0xDc64a140Aa3E981100a9becA4E685f962f0cF6C9", + "function": null, + "arguments": [ + "0x9fE46736679d2D9a65F0992F2272dE9f3c7fa6e0", + "10000000000000000" + ], + "transaction": { + "type": "0x00", + "from": "0xf39fd6e51aad88f6f4ce6ab8827279cfffb92266", + "gas": "0x34bf99", + "value": "0x0", + "data": "0x608060405234801561001057600080fd5b50604051612ed9380380612ed983398101604081905261002f916100b1565b61003833610061565b600280546001600160a01b0319166001600160a01b0393909316929092179091556001556100eb565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b600080604083850312156100c457600080fd5b82516001600160a01b03811681146100db57600080fd5b6020939093015192949293505050565b612ddf806100fa6000396000f3fe608060405260043610620000a95760003560e01c80638da5cb5b116200006c5780638da5cb5b146200016d578063ab2fa65a146200018d578063ae28505e14620001b4578063c56c4cf114620001d9578063f2fde38b14620001fb578063f52be2a2146200022057600080fd5b806303fb31e814620000ae5780631164c83d14620000d5578063145e414714620000ec5780635787cacb146200012e578063715018a61462000155575b600080fd5b348015620000bb57600080fd5b50620000d3620000cd36600462000778565b62000247565b005b620000d3620000e6366004620007e9565b62000273565b348015620000f957600080fd5b50620001116200010b36600462000864565b620004b2565b6040516001600160a01b0390911681526020015b60405180910390f35b3480156200013b57600080fd5b50620001466200054f565b60405162000125919062000891565b3480156200016257600080fd5b50620000d3620005b3565b3480156200017a57600080fd5b506000546001600160a01b031662000111565b3480156200019a57600080fd5b50620001a5620005cb565b604051620001259190620008e0565b348015620001c157600080fd5b5062000111620001d336600462000930565b620005f7565b348015620001e657600080fd5b5060025462000111906001600160a01b031681565b3480156200020857600080fd5b50620000d36200021a36600462000778565b62000622565b3480156200022d57600080fd5b506200023860015481565b60405190815260200162000125565b62000251620006a1565b600280546001600160a01b0319166001600160a01b0392909216919091179055565b60015434146200029d5760405163723a79e360e11b81523460048201526024015b60405180910390fd5b600060405180602001620002b1906200074d565b6020820181038252601f19601f8201166040525090506000828251602084016000f56002546040516356d3163d60e01b81526001600160a01b0391821660048201529192508216906356d3163d90602401600060405180830381600087803b1580156200031d57600080fd5b505af115801562000332573d6000803e3d6000fd5b505060405163c47f002760e01b81526001600160a01b038416925063c47f0027915062000366908a908a906004016200094a565b600060405180830381600087803b1580156200038157600080fd5b505af115801562000396573d6000803e3d6000fd5b5050604051635c26412360e11b81526001600160a01b038416925063b84c82469150620003ca90889088906004016200094a565b600060405180830381600087803b158015620003e557600080fd5b505af1158015620003fa573d6000803e3d6000fd5b505060405163f2fde38b60e01b81523260048201526001600160a01b038416925063f2fde38b9150602401600060405180830381600087803b1580156200044057600080fd5b505af115801562000455573d6000803e3d6000fd5b5050600380546001810182556000919091527fc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b0180546001600160a01b0319166001600160a01b0394909416939093179092555050505050505050565b600060ff60f81b838360405180602001620004cd906200074d565b6020820181038252601f19601f82011660405250805190602001206040516020016200053094939291906001600160f81b031994909416845260609290921b6bffffffffffffffffffffffff191660018401526015830152603582015260550190565b60408051601f1981840301815291905280516020909101209392505050565b60606003805480602002602001604051908101604052809291908181526020018280548015620005a957602002820191906000526020600020905b81546001600160a01b031681526001909101906020018083116200058a575b5050505050905090565b620005bd620006a1565b620005c96000620006fd565b565b606060405180602001620005df906200074d565b601f1982820381018352601f90910116604052919050565b600381815481106200060857600080fd5b6000918252602090912001546001600160a01b0316905081565b6200062c620006a1565b6001600160a01b038116620006935760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b606482015260840162000294565b6200069e81620006fd565b50565b6000546001600160a01b03163314620005c95760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015260640162000294565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b612430806200097a83390190565b80356001600160a01b03811681146200077357600080fd5b919050565b6000602082840312156200078b57600080fd5b62000796826200075b565b9392505050565b60008083601f840112620007b057600080fd5b50813567ffffffffffffffff811115620007c957600080fd5b602083019150836020828501011115620007e257600080fd5b9250929050565b6000806000806000606086880312156200080257600080fd5b853567ffffffffffffffff808211156200081b57600080fd5b6200082989838a016200079d565b909750955060208801359150808211156200084357600080fd5b5062000852888289016200079d565b96999598509660400135949350505050565b600080604083850312156200087857600080fd5b62000883836200075b565b946020939093013593505050565b6020808252825182820181905260009190848201906040850190845b81811015620008d45783516001600160a01b031683529284019291840191600101620008ad565b50909695505050505050565b600060208083528351808285015260005b818110156200090f57858101830151858201604001528201620008f1565b506000604082860101526040601f19601f8301168501019250505092915050565b6000602082840312156200094357600080fd5b5035919050565b60208152816020820152818360408301376000818301604090810191909152601f909201601f1916010191905056fe60806040523480156200001157600080fd5b50604051806040016040528060078152602001660536865657420360cc1b815250604051806040016040528060048152602001630534854360e41b81525062000069620000636200008f60201b60201c565b62000093565b600162000077838262000188565b50600262000086828262000188565b50505062000254565b3390565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b634e487b7160e01b600052604160045260246000fd5b600181811c908216806200010e57607f821691505b6020821081036200012f57634e487b7160e01b600052602260045260246000fd5b50919050565b601f8211156200018357600081815260208120601f850160051c810160208610156200015e5750805b601f850160051c820191505b818110156200017f578281556001016200016a565b5050505b505050565b81516001600160401b03811115620001a457620001a4620000e3565b620001bc81620001b58454620000f9565b8462000135565b602080601f831160018114620001f45760008415620001db5750858301515b600019600386901b1c1916600185901b1785556200017f565b600085815260208120601f198616915b82811015620002255788860151825594840194600190910190840162000204565b5085821015620002445787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b6121cc80620002646000396000f3fe608060405234801561001057600080fd5b50600436106102275760003560e01c8063715018a611610130578063b85d8b85116100b8578063cf0983981161007c578063cf09839814610512578063cfbe95d814610535578063df4ca20614610556578063e985e9c514610576578063f2fde38b146105a457600080fd5b8063b85d8b85146104a4578063b88d4fde146104ce578063b8c368ec146104e1578063c47f0027146104ec578063c87b56dd146104ff57600080fd5b806395d89b41116100ff57806395d89b4114610439578063a22cb46514610441578063b46ebb1214610454578063b6d658e114610467578063b84c82461461049157600080fd5b8063715018a6146103fa578063768d5029146104025780638ada6b0f146104155780638da5cb5b1461042857600080fd5b80631b06443c116101b35780634f6ccce7116101825780634f6ccce71461038157806356d3163d146103a15780636352211e146103b45780636a0abc74146103c757806370a08231146103e757600080fd5b80631b06443c14610335578063206848f61461034857806323b872dd1461035b57806342842e0e1461036e57600080fd5b8063081812fc116101fa578063081812fc146102a1578063095ea7b3146102e2578063172b9eed146102f757806318160ddd1461030a5780631941fd141461031357600080fd5b806301ffc9a71461022c57806302f3c4c91461025457806306fdde03146102745780630715a24a1461027c575b600080fd5b61023f61023a36600461176a565b6105b7565b60405190151581526020015b60405180910390f35b610267610262366004611861565b610609565b60405161024b9190611951565b610267610638565b6102936fffffffffffffffffffffffffffffffff81565b60405190815260200161024b565b6102ca6102af366004611964565b6005602052600090815260409020546001600160a01b031681565b6040516001600160a01b03909116815260200161024b565b6102f56102f036600461197d565b6106c6565b005b6102676103053660046119a9565b6107ad565b61029360075481565b610326610321366004611964565b610875565b60405161024b939291906119de565b6102ca610343366004611a0e565b61092a565b610326610356366004611964565b6109e3565b6102f5610369366004611a2b565b610ae1565b6102f561037c366004611a2b565b610ca8565b61029361038f366004611964565b60086020526000908152604090205481565b6102f56103af366004611a0e565b610da0565b6102ca6103c2366004611964565b610dca565b6103da6103d53660046119a9565b610e1c565b60405161024b9190611a6c565b6102936103f5366004611a0e565b610e60565b6102f5610ec3565b6102f5610410366004611af9565b610ed7565b6009546102ca906001600160a01b031681565b6000546001600160a01b03166102ca565b610267611035565b6102f561044f366004611b63565b611042565b610267610462366004611964565b6110ae565b61047a610475366004611964565b611258565b60408051921515835260208301919091520161024b565b6102f561049f366004611ba1565b611275565b6104b56104b2366004611964565b90565b6040516001600160e01b0319909116815260200161024b565b6102f56104dc366004611be3565b6112c6565b6102ca600160801b81565b6102f56104fa366004611ba1565b6113ae565b61026761050d366004611964565b6113ff565b61023f610520366004611a0e565b600160801b6001600160a01b03919091161090565b61023f610543366004611861565b516001600160a01b0316600160801b1490565b610569610564366004611964565b6114c9565b60405161024b9190611c16565b61023f610584366004611c4d565b600660209081526000928352604080842090915290825290205460ff1681565b6102f56105b2366004611a0e565b611526565b60006301ffc9a760e01b6001600160e01b0319831614806105e857506380ac58cd60e01b6001600160e01b03198316145b806106035750635b5e139f60e01b6001600160e01b03198316145b92915050565b6060816020015160405160200161062291815260200190565b6040516020818303038152906040529050919050565b6001805461064590611c7b565b80601f016020809104026020016040519081016040528092919081815260200182805461067190611c7b565b80156106be5780601f10610693576101008083540402835291602001916106be565b820191906000526020600020905b8154815290600101906020018083116106a157829003601f168201915b505050505081565b6000818152600360205260409020546001600160a01b03163381148061070f57506001600160a01b038116600090815260066020908152604080832033845290915290205460ff165b6107515760405162461bcd60e51b815260206004820152600e60248201526d1393d517d055551213d49256915160921b60448201526064015b60405180910390fd5b60008281526005602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b606060006107ba83610e1c565b9050606060005b825181101561086d576000806107ef8584815181106107e2576107e2611cb5565b6020026020010151611258565b9150915081156108335783610803826110ae565b61080c90611ccb565b60405160200161081d929190611cef565b6040516020818303038152906040529350610858565b6040516108469085908390602001611cef565b60405160208183030381529060405293505b5050808061086590611d27565b9150506107c1565b509392505050565b600a602052600090815260409020805460018201546002830180546001600160a01b039093169391926108a790611c7b565b80601f01602080910402602001604051908101604052809291908181526020018280546108d390611c7b565b80156109205780601f106108f557610100808354040283529160200191610920565b820191906000526020600020905b81548152906001019060200180831161090357829003601f168201915b5050505050905083565b6000600160801b6001600160a01b03831610156109da576000610955836001600160a01b03166110ae565b604051632d737e4960e21b8152909150735fbdb2315678afecb367f032d93f642f64180aa39063b5cdf92490610992908490600090600401611d40565b602060405180830381865af41580156109af573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906109d39190611d62565b9392505050565b5090565b919050565b60008181526003602052604081205481906060906001600160a01b0316610a1057600160801b9250610a2b565b6000848152600a60205260409020546001600160a01b031692505b6000848152600a60205260409020600181015460029091018054859291908190610a5490611c7b565b80601f0160208091040260200160405190810160405280929190818152602001828054610a8090611c7b565b8015610acd5780601f10610aa257610100808354040283529160200191610acd565b820191906000526020600020905b815481529060010190602001808311610ab057829003601f168201915b505050505090509250925092509193909250565b6000818152600360205260409020546001600160a01b03848116911614610b375760405162461bcd60e51b815260206004820152600a60248201526957524f4e475f46524f4d60b01b6044820152606401610748565b6001600160a01b038216610b815760405162461bcd60e51b81526020600482015260116024820152701253959053125117d49150d25412515395607a1b6044820152606401610748565b336001600160a01b0384161480610bbb57506001600160a01b038316600090815260066020908152604080832033845290915290205460ff165b80610bdc57506000818152600560205260409020546001600160a01b031633145b610c195760405162461bcd60e51b815260206004820152600e60248201526d1393d517d055551213d49256915160921b6044820152606401610748565b6001600160a01b0380841660008181526004602090815260408083208054600019019055938616808352848320805460010190558583526003825284832080546001600160a01b03199081168317909155600590925284832080549092169091559251849392917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b610cb3838383610ae1565b6001600160a01b0382163b1580610d5c5750604051630a85bd0160e11b8082523360048301526001600160a01b03858116602484015260448301849052608060648401526000608484015290919084169063150b7a029060a4016020604051808303816000875af1158015610d2c573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610d509190611d7b565b6001600160e01b031916145b610d9b5760405162461bcd60e51b815260206004820152601060248201526f155394d0519157d49150d2541251539560821b6044820152606401610748565b505050565b610da861159f565b600980546001600160a01b0319166001600160a01b0392909216919091179055565b6000818152600360205260409020546001600160a01b0316806109de5760405162461bcd60e51b815260206004820152600a6024820152691393d517d3525395115160b21b6044820152606401610748565b60608082516040519150602081048252602082016020850160005b83811015610e4f578181015183820152602001610e37565b505050810160200160405292915050565b60006001600160a01b038216610ea75760405162461bcd60e51b815260206004820152600c60248201526b5a45524f5f4144445245535360a01b6044820152606401610748565b506001600160a01b031660009081526004602052604090205490565b610ecb61159f565b610ed560006115f9565b565b6000858152600360205260409020546001600160a01b0316610f2f57610efd3286611649565b60078054600090815260086020526040812087905581546001929190610f24908490611d98565b90915550610f889050565b6000858152600360205260409020546001600160a01b03163214610f8857600085815260036020526040908190205490516324f3f02560e21b81526001600160a01b039091166004820152326024820152604401610748565b6040518060600160405280856001600160a01b0316815260200184815260200183838080601f0160208091040260200160405190810160405280939291908181526020018383808284376000920182905250939094525050878152600a6020908152604091829020845181546001600160a01b0319166001600160a01b0390911617815590840151600182015590830151909150600282019061102b9082611df9565b5050505050505050565b6002805461064590611c7b565b3360008181526006602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b6000818152600a6020908152604080832081516060818101845282546001600160a01b0316825260018301549482019490945260028201805494959491938401916110f890611c7b565b80601f016020809104026020016040519081016040528092919081815260200182805461112490611c7b565b80156111715780601f1061114657610100808354040283529160200191611171565b820191906000526020600020905b81548152906001019060200180831161115457829003601f168201915b505050505081525050905061119381516001600160a01b0316600160801b1490565b156111a1576109d381610609565b60006111b0826000015161092a565b905060006111bf836020015190565b905060006111d084604001516107ad565b90506000836001600160a01b031683836040516020016111f1929190611eb9565b60408051601f198184030181529082905261120b91611eea565b600060405180830381855afa9150503d8060008114611246576040519150601f19603f3d011682016040523d82523d6000602084013e61124b565b606091505b5098975050505050505050565b600080611266600284611f06565b60019081149493901c92915050565b61127d61159f565b7f8dca0271872d00b3de3abafca544c52fcd7d512dd852c9894fa2c118ac759a93600283836040516112b193929190611fce565b60405180910390a16002610d9b828483611ffe565b6112d1858585610ae1565b6001600160a01b0384163b15806113685750604051630a85bd0160e11b808252906001600160a01b0386169063150b7a02906113199033908a908990899089906004016120be565b6020604051808303816000875af1158015611338573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061135c9190611d7b565b6001600160e01b031916145b6113a75760405162461bcd60e51b815260206004820152601060248201526f155394d0519157d49150d2541251539560821b6044820152606401610748565b5050505050565b6113b661159f565b7fb65b7b5ea384affd30f77f842e057d29dd1b13f133adf69a724a8105b164ab75600183836040516113ea93929190611fce565b60405180910390a16001610d9b828483611ffe565b6000818152600360205260409020546060906001600160a01b03168061143b57604051630243d1a960e21b815260048101849052602401610748565b6000611446846110ae565b6009546040516328de0f2f60e01b81529192506001600160a01b0316906328de0f2f9061147c90879085906001906004016120fd565b600060405180830381865afa158015611499573d6000803e3d6000fd5b505050506040513d6000823e601f3d908101601f191682016040526114c19190810190612128565b949350505050565b604080516060808201835260008083526020830181905292820152906114ee836110ae565b6040805160608101825285815260009586526003602090815295829020546001600160a01b0316958101959095528401525090919050565b61152e61159f565b6001600160a01b0381166115935760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610748565b61159c816115f9565b50565b6000546001600160a01b03163314610ed55760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610748565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b6001600160a01b0382166116935760405162461bcd60e51b81526020600482015260116024820152701253959053125117d49150d25412515395607a1b6044820152606401610748565b6000818152600360205260409020546001600160a01b0316156116e95760405162461bcd60e51b815260206004820152600e60248201526d1053149150511657d3525395115160921b6044820152606401610748565b6001600160a01b038216600081815260046020908152604080832080546001019055848352600390915280822080546001600160a01b0319168417905551839291907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b6001600160e01b03198116811461159c57600080fd5b60006020828403121561177c57600080fd5b81356109d381611754565b634e487b7160e01b600052604160045260246000fd5b604051601f8201601f1916810167ffffffffffffffff811182821017156117c6576117c6611787565b604052919050565b6001600160a01b038116811461159c57600080fd5b600067ffffffffffffffff8211156117fd576117fd611787565b50601f01601f191660200190565b600082601f83011261181c57600080fd5b813561182f61182a826117e3565b61179d565b81815284602083860101111561184457600080fd5b816020850160208301376000918101602001919091529392505050565b60006020828403121561187357600080fd5b813567ffffffffffffffff8082111561188b57600080fd5b908301906060828603121561189f57600080fd5b6040516060810181811083821117156118ba576118ba611787565b60405282356118c8816117ce565b8152602083810135908201526040830135828111156118e657600080fd5b6118f28782860161180b565b60408301525095945050505050565b60005b8381101561191c578181015183820152602001611904565b50506000910152565b6000815180845261193d816020860160208601611901565b601f01601f19169290920160200192915050565b6020815260006109d36020830184611925565b60006020828403121561197657600080fd5b5035919050565b6000806040838503121561199057600080fd5b823561199b816117ce565b946020939093013593505050565b6000602082840312156119bb57600080fd5b813567ffffffffffffffff8111156119d257600080fd5b6114c18482850161180b565b60018060a01b0384168152826020820152606060408201526000611a056060830184611925565b95945050505050565b600060208284031215611a2057600080fd5b81356109d3816117ce565b600080600060608486031215611a4057600080fd5b8335611a4b816117ce565b92506020840135611a5b816117ce565b929592945050506040919091013590565b6020808252825182820181905260009190848201906040850190845b81811015611aa457835183529284019291840191600101611a88565b50909695505050505050565b60008083601f840112611ac257600080fd5b50813567ffffffffffffffff811115611ada57600080fd5b602083019150836020828501011115611af257600080fd5b9250929050565b600080600080600060808688031215611b1157600080fd5b853594506020860135611b23816117ce565b935060408601359250606086013567ffffffffffffffff811115611b4657600080fd5b611b5288828901611ab0565b969995985093965092949392505050565b60008060408385031215611b7657600080fd5b8235611b81816117ce565b915060208301358015158114611b9657600080fd5b809150509250929050565b60008060208385031215611bb457600080fd5b823567ffffffffffffffff811115611bcb57600080fd5b611bd785828601611ab0565b90969095509350505050565b600080600080600060808688031215611bfb57600080fd5b8535611c06816117ce565b94506020860135611b23816117ce565b602081528151602082015260018060a01b036020830151166040820152600060408301516060808401526114c16080840182611925565b60008060408385031215611c6057600080fd5b8235611c6b816117ce565b91506020830135611b96816117ce565b600181811c90821680611c8f57607f821691505b602082108103611caf57634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052603260045260246000fd5b80516020808301519190811015611caf5760001960209190910360031b1b16919050565b60008351611d01818460208801611901565b9190910191825250602001919050565b634e487b7160e01b600052601160045260246000fd5b600060018201611d3957611d39611d11565b5060010190565b604081526000611d536040830185611925565b90508260208301529392505050565b600060208284031215611d7457600080fd5b5051919050565b600060208284031215611d8d57600080fd5b81516109d381611754565b8082018082111561060357610603611d11565b601f821115610d9b57600081815260208120601f850160051c81016020861015611dd25750805b601f850160051c820191505b81811015611df157828155600101611dde565b505050505050565b815167ffffffffffffffff811115611e1357611e13611787565b611e2781611e218454611c7b565b84611dab565b602080601f831160018114611e5c5760008415611e445750858301515b600019600386901b1c1916600185901b178555611df1565b600085815260208120601f198616915b82811015611e8b57888601518255948401946001909101908401611e6c565b5085821015611ea95787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b6001600160e01b0319831681528151600090611edc816004850160208701611901565b919091016004019392505050565b60008251611efc818460208701611901565b9190910192915050565b600082611f2357634e487b7160e01b600052601260045260246000fd5b500690565b60008154611f3581611c7b565b808552602060018381168015611f525760018114611f6c57611f9a565b60ff1985168884015283151560051b880183019550611f9a565b866000528260002060005b85811015611f925781548a8201860152908301908401611f77565b890184019650505b505050505092915050565b81835281816020850137506000828201602090810191909152601f909101601f19169091010190565b604081526000611fe16040830186611f28565b8281036020840152611ff4818587611fa5565b9695505050505050565b67ffffffffffffffff83111561201657612016611787565b61202a836120248354611c7b565b83611dab565b6000601f84116001811461205e57600085156120465750838201355b600019600387901b1c1916600186901b1783556113a7565b600083815260209020601f19861690835b8281101561208f578685013582556020948501946001909201910161206f565b50868210156120ac5760001960f88860031b161c19848701351681555b505060018560011b0183555050505050565b6001600160a01b03868116825285166020820152604081018490526080606082018190526000906120f29083018486611fa5565b979650505050505050565b8381526060602082015260006121166060830185611925565b8281036040840152611ff48185611f28565b60006020828403121561213a57600080fd5b815167ffffffffffffffff81111561215157600080fd5b8201601f8101841361216257600080fd5b805161217061182a826117e3565b81815285602083850101111561218557600080fd5b611a0582602083016020860161190156fea26469706673582212203fc548aa4f22e6f4c01757ba3f2e0383630418b3d17601758718ab19a4d9918d64736f6c63430008110033a26469706673582212207932e8c793f9a96d9606a8907a6671f54c0fb1ed5a763048e13b429274e7706c64736f6c634300081100330000000000000000000000009fe46736679d2d9a65f0992f2272de9f3c7fa6e0000000000000000000000000000000000000000000000000002386f26fc10000", + "nonce": "0x4" + }, + "additionalContracts": [], + "isFixedGasLimit": false + } + ], + "receipts": [ + { + "transactionHash": "0x045f89ca387f2853a2a30f92868bdf8945580b501a47d7aef7e168a4febacd61", + "transactionIndex": "0x0", + "blockHash": "0x073d71b449878603d31287338acca94dcb45b40e11e449e2ab2b1656be333e6a", + "blockNumber": "0xb", + "from": "0xf39Fd6e51aad88F6F4ce6aB8827279cffFb92266", + "to": null, + "cumulativeGasUsed": "0xf4240", + "gasUsed": "0x7a120", + "contractAddress": "0xe7f1725E7734CE288F8367e1Bb143E90bb3F0512", + "logs": [], + "status": "0x1", + "logsBloom": "0x00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", + "type": "0x0", + "effectiveGasPrice": "0xf4240" + }, + { + "transactionHash": "0x000128fbbcf1ce04facb50cb06b25514ad5927f52ec5b5b497f9cc8acff8a383", + "transactionIndex": "0x0", + "blockHash": "0x0365db0c5c55e83555a1ad1cb190a6c89c8d9ee6946e001ad1599f03c142c22d", + "blockNumber": "0xc", + "from": "0xf39Fd6e51aad88F6F4ce6aB8827279cffFb92266", + "to": null, + "cumulativeGasUsed": "0xf4240", + "gasUsed": "0x7a120", + "contractAddress": "0x9fE46736679d2D9a65F0992F2272dE9f3c7fa6e0", + "logs": [], + "status": "0x1", + "logsBloom": "0x00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", + "type": "0x0", + "effectiveGasPrice": "0xf4240" + }, + { + "transactionHash": "0x027230bd60128347bd04e3fa2055be2e2ba4fcd489e1ac59cc7d43bbceab7797", + "transactionIndex": "0x0", + "blockHash": "0x022f9bb72b6d7865f23e51646c45fad560519fa7d52ccc958e9823cc1f365f8f", + "blockNumber": "0xd", + "from": "0xf39Fd6e51aad88F6F4ce6aB8827279cffFb92266", + "to": null, + "cumulativeGasUsed": "0xf4240", + "gasUsed": "0x7a120", + "contractAddress": "0xCf7Ed3AccA5a467e9e704C703E8D87F634fB0Fc9", + "logs": [], + "status": "0x1", + "logsBloom": "0x00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", + "type": "0x0", + "effectiveGasPrice": "0xf4240" + } + ], + "libraries": [ + "lib/eth-projects-monorepo/packages/eth-projects-contracts/contracts/lib/utils/Bytes.sol:Bytes:0x5fbdb2315678afecb367f032d93f642f64180aa3" + ], + "pending": [ + "0x05c851c318f703ca1584f93726cae8b01fcd20b307c2a5add61a15b751a6cdab", + "0x0156ed37608a55ed8897ef8eb39ae382ec9b73dbe71b548c8f747ed4587eda48" + ], + "returns": {}, + "timestamp": 1689179253, + "chain": 1263227476, + "multi": false, + "commit": "24c72b7" +} \ No newline at end of file diff --git a/packages/starksheet-solidity/broadcast/Evmsheet.s.sol/1263227476/run-1689179270.json b/packages/starksheet-solidity/broadcast/Evmsheet.s.sol/1263227476/run-1689179270.json new file mode 100644 index 00000000..ed58754e --- /dev/null +++ b/packages/starksheet-solidity/broadcast/Evmsheet.s.sol/1263227476/run-1689179270.json @@ -0,0 +1,158 @@ +{ + "transactions": [ + { + "hash": "0x045f89ca387f2853a2a30f92868bdf8945580b501a47d7aef7e168a4febacd61", + "transactionType": "CREATE", + "contractName": "Bytes", + "contractAddress": "0x5FbDB2315678afecb367f032d93F642f64180aa3", + "function": null, + "arguments": null, + "transaction": { + "type": "0x00", + "from": "0xf39fd6e51aad88f6f4ce6ab8827279cfffb92266", + "gas": "0x1387ed", + "data": "0x6110d661003a600b82828239805160001a60731461002d57634e487b7160e01b600052600060045260246000fd5b30600052607381538281f3fe73000000000000000000000000000000000000000030146080604052600436106101625760003560e01c8063a5eb31ee116100cd578063d1ffb56111610086578063d1ffb561146103fb578063d442584f1461042b578063e004139614610454578063f1142fb314610474578063f647f8fb14610487578063f83b670f146104b257600080fd5b8063a5eb31ee14610344578063a8d8f00f1461036b578063b5cdf92414610396578063b63711df146103a9578063be8b3430146103bc578063c29616bd146103cf57600080fd5b80635ef849301161011f5780635ef8493014610241578063913c97b41461026b57806397e6175c1461029f57806399dd9bd7146102cb5780639ae4c3d1146102ec5780639cee499e1461031857600080fd5b8063042aa0841461016757806305d3bb74146101985780631a7431ef146101c0578063235266d2146101e357806348137709146101f65780634d66a2ae1461021b575b600080fd5b61017a610175366004610ec0565b6104de565b6040516001600160d01b031990911681526020015b60405180910390f35b6101ab6101a6366004610ec0565b610540565b60405163ffffffff909116815260200161018f565b6101d36101ce366004610f05565b61059d565b604051901515815260200161018f565b6101d36101f1366004610f4c565b610652565b610209610204366004610ec0565b6106b5565b60405160ff909116815260200161018f565b61022e610229366004610fa6565b610711565b60405161ffff909116815260200161018f565b61025461024f366004610ec0565b61071e565b60405165ffffffffffff909116815260200161018f565b61027e610279366004610ec0565b610772565b6040516fffffffffffffffffffffffffffffffff909116815260200161018f565b6102b26102ad366004610ec0565b6107d0565b6040516001600160a01b0319909116815260200161018f565b6102de6102d9366004610ec0565b61082e565b60405190815260200161018f565b6102ff6102fa366004610ec0565b61088c565b60405167ffffffffffffffff909116815260200161018f565b61032b610326366004610ec0565b6108e9565b6040516001600160d81b0319909116815260200161018f565b610357610352366004610ec0565b610946565b60405162ffffff909116815260200161018f565b61037e610379366004610ec0565b6109a3565b60405166ffffffffffffff909116815260200161018f565b6102de6103a4366004610ec0565b610a00565b6102ff6103b7366004610ec0565b610a55565b61022e6103ca366004610ec0565b610aa9565b6103e26103dd366004610ec0565b610b06565b6040516001600160c81b0319909116815260200161018f565b61040e610409366004610ec0565b610b5a565b6040516bffffffffffffffffffffffff909116815260200161018f565b61043e610439366004610ec0565b610bae565b60405164ffffffffff909116815260200161018f565b610467610462366004610fe3565b610c02565b60405161018f9190611031565b6102b2610482366004610ec0565b610d0f565b61049a610495366004610ec0565b610d64565b6040516001600160a01b03909116815260200161018f565b6104c56104c0366004610ec0565b610dc9565b6040516001600160f81b0319909116815260200161018f565b60006104eb82600661107f565b835110156105375760405162461bcd60e51b8152602060048201526014602482015273746f4279746573365f6f75744f66426f756e647360601b60448201526064015b60405180910390fd5b50016006015190565b600061054d82600461107f565b835110156105945760405162461bcd60e51b8152602060048201526014602482015273746f55696e7433325f6f75744f66426f756e647360601b604482015260640161052e565b50016004015190565b600080600190508354600260018083161561010002038216048451808214600181146105cc5760009450610644565b821561064457602083106001811461062957600189600052602060002060208a018581015b600284828410010361062057815183541461060f5760009950600093505b6001830192506020820191506105f1565b50505050610642565b6101008086040294506020880151851461064257600095505b505b509293505050505b92915050565b81518151600091600191811480831461066e57600092506106ab565b600160208701838101602088015b60028483851001036106a657805183511461069a5760009650600093505b6020928301920161067c565b505050505b5090949350505050565b60006106c282600161107f565b835110156107085760405162461bcd60e51b8152602060048201526013602482015272746f55696e74385f6f75744f66426f756e647360681b604482015260640161052e565b50016001015190565b600061064c826000610aa9565b600061072b82600661107f565b835110156105375760405162461bcd60e51b8152602060048201526014602482015273746f55696e7434385f6f75744f66426f756e647360601b604482015260640161052e565b600061077f82601061107f565b835110156107c75760405162461bcd60e51b8152602060048201526015602482015274746f55696e743132385f6f75744f66426f756e647360581b604482015260640161052e565b50016010015190565b60006107dd82600c61107f565b835110156108255760405162461bcd60e51b8152602060048201526015602482015274746f427974657331325f6f75744f66426f756e647360581b604482015260640161052e565b5001600c015190565b600061083b82602061107f565b835110156108835760405162461bcd60e51b8152602060048201526015602482015274746f427974657333325f6f75744f66426f756e647360581b604482015260640161052e565b50016020015190565b600061089982600861107f565b835110156108e05760405162461bcd60e51b8152602060048201526014602482015273746f55696e7436345f6f75744f66426f756e647360601b604482015260640161052e565b50016008015190565b60006108f682600561107f565b8351101561093d5760405162461bcd60e51b8152602060048201526014602482015273746f4279746573355f6f75744f66426f756e647360601b604482015260640161052e565b50016005015190565b600061095382600361107f565b8351101561099a5760405162461bcd60e51b8152602060048201526014602482015273746f55696e7432345f6f75744f66426f756e647360601b604482015260640161052e565b50016003015190565b60006109b082600761107f565b835110156109f75760405162461bcd60e51b8152602060048201526014602482015273746f55696e7435365f6f75744f66426f756e647360601b604482015260640161052e565b50016007015190565b6000610a0d82602061107f565b835110156108835760405162461bcd60e51b8152602060048201526015602482015274746f55696e743235365f6f75744f66426f756e647360581b604482015260640161052e565b6000610a6282600861107f565b835110156108e05760405162461bcd60e51b8152602060048201526014602482015273746f4279746573385f6f75744f66426f756e647360601b604482015260640161052e565b6000610ab682600261107f565b83511015610afd5760405162461bcd60e51b8152602060048201526014602482015273746f55696e7431365f6f75744f66426f756e647360601b604482015260640161052e565b50016002015190565b6000610b1382600761107f565b835110156109f75760405162461bcd60e51b8152602060048201526014602482015273746f4279746573375f6f75744f66426f756e647360601b604482015260640161052e565b6000610b6782600c61107f565b835110156108255760405162461bcd60e51b8152602060048201526014602482015273746f55696e7439365f6f75744f66426f756e647360601b604482015260640161052e565b6000610bbb82600561107f565b8351101561093d5760405162461bcd60e51b8152602060048201526014602482015273746f55696e7434305f6f75744f66426f756e647360601b604482015260640161052e565b606081610c1081601f61107f565b1015610c4f5760405162461bcd60e51b815260206004820152600e60248201526d736c6963655f6f766572666c6f7760901b604482015260640161052e565b610c59828461107f565b84511015610c9d5760405162461bcd60e51b8152602060048201526011602482015270736c6963655f6f75744f66426f756e647360781b604482015260640161052e565b606082158015610cbc5760405191506000825260208201604052610d06565b6040519150601f8416801560200281840101858101878315602002848b0101015b81831015610cf5578051835260209283019201610cdd565b5050858452601f01601f1916604052505b50949350505050565b6000610d1c82601061107f565b835110156107c75760405162461bcd60e51b8152602060048201526015602482015274746f427974657331365f6f75744f66426f756e647360581b604482015260640161052e565b6000610d7182601461107f565b83511015610db95760405162461bcd60e51b8152602060048201526015602482015274746f416464726573735f6f75744f66426f756e647360581b604482015260640161052e565b500160200151600160601b900490565b6000610dd682600161107f565b835110156107085760405162461bcd60e51b8152602060048201526014602482015273746f4279746573315f6f75744f66426f756e647360601b604482015260640161052e565b634e487b7160e01b600052604160045260246000fd5b600082601f830112610e4457600080fd5b813567ffffffffffffffff80821115610e5f57610e5f610e1d565b604051601f8301601f19908116603f01168101908282118183101715610e8757610e87610e1d565b81604052838152866020858801011115610ea057600080fd5b836020870160208301376000602085830101528094505050505092915050565b60008060408385031215610ed357600080fd5b823567ffffffffffffffff811115610eea57600080fd5b610ef685828601610e33565b95602094909401359450505050565b60008060408385031215610f1857600080fd5b82359150602083013567ffffffffffffffff811115610f3657600080fd5b610f4285828601610e33565b9150509250929050565b60008060408385031215610f5f57600080fd5b823567ffffffffffffffff80821115610f7757600080fd5b610f8386838701610e33565b93506020850135915080821115610f9957600080fd5b50610f4285828601610e33565b600060208284031215610fb857600080fd5b813567ffffffffffffffff811115610fcf57600080fd5b610fdb84828501610e33565b949350505050565b600080600060608486031215610ff857600080fd5b833567ffffffffffffffff81111561100f57600080fd5b61101b86828701610e33565b9660208601359650604090950135949350505050565b600060208083528351808285015260005b8181101561105e57858101830151858201604001528201611042565b506000604082860101526040601f19601f8301168501019250505092915050565b8082018082111561064c57634e487b7160e01b600052601160045260246000fdfea26469706673582212205bdf5bc4551862519f5370e0dcec38eefbbbe11b6a5bf19ce2846b4f8831a5dc64736f6c63430008110033", + "nonce": "0x0" + }, + "additionalContracts": [], + "isFixedGasLimit": false + }, + { + "hash": "0x000128fbbcf1ce04facb50cb06b25514ad5927f52ec5b5b497f9cc8acff8a383", + "transactionType": "CREATE", + "contractName": "MultiSendCallOnly", + "contractAddress": "0xe7f1725E7734CE288F8367e1Bb143E90bb3F0512", + "function": null, + "arguments": null, + "transaction": { + "type": "0x00", + "from": "0xf39fd6e51aad88f6f4ce6ab8827279cfffb92266", + "gas": "0x2e5c4", + "value": "0x0", + "data": "0x608060405234801561001057600080fd5b506101ae806100206000396000f3fe60806040526004361061001e5760003560e01c80638d80ff0a14610023575b600080fd5b6100366100313660046100c7565b610038565b005b805160205b818110156100ac578083015160f81c6001820184015160601c601583018501516035840186015160558501870160008560008114610082576001811461001e5761008e565b6000808585888a5af191505b508061009957600080fd5b505080605501850194505050505061003d565b505050565b634e487b7160e01b600052604160045260246000fd5b6000602082840312156100d957600080fd5b813567ffffffffffffffff808211156100f157600080fd5b818401915084601f83011261010557600080fd5b813581811115610117576101176100b1565b604051601f8201601f19908116603f0116810190838211818310171561013f5761013f6100b1565b8160405282815287602084870101111561015857600080fd5b82602086016020830137600092810160200192909252509594505050505056fea2646970667358221220c15490bbb756a4c3c49d6335b2e81d2d098647b0ea70174c2279f199b1d0800364736f6c63430008110033", + "nonce": "0x1" + }, + "additionalContracts": [], + "isFixedGasLimit": false + }, + { + "hash": "0x027230bd60128347bd04e3fa2055be2e2ba4fcd489e1ac59cc7d43bbceab7797", + "transactionType": "CREATE", + "contractName": "BasicCellRenderer", + "contractAddress": "0x9fE46736679d2D9a65F0992F2272dE9f3c7fa6e0", + "function": null, + "arguments": null, + "transaction": { + "type": "0x00", + "from": "0xf39fd6e51aad88f6f4ce6ab8827279cfffb92266", + "gas": "0x3180ad", + "value": "0x0", + "data": "0x608060405234801561001057600080fd5b50612c25806100206000396000f3fe608060405234801561001057600080fd5b50600436106100365760003560e01c806306d4cd8b1461003b57806328de0f2f14610064575b600080fd5b61004e610049366004610322565b610077565b60405161005b919061038b565b60405180910390f35b61004e610072366004610404565b6100f1565b60606000610086600f846104fc565b90506000610095600f8361051e565b61009f9085610535565b905060006100ae826041610548565b60f81b9050806100c76100c2856001610548565b6101b6565b6040516020016100d8929190610577565b6040516020818303038152906040529350505050919050565b606060006100fe86610077565b905083838261018388735fbdb2315678afecb367f032d93f642f64180aa363b5cdf924909160006040518363ffffffff1660e01b81526004016101429291906105a8565b602060405180830381865af415801561015f573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906100c291906105ca565b87878660405160200161019c97969594939291906105f2565b604051602081830303815290604052915050949350505050565b606060006101c383610249565b600101905060008167ffffffffffffffff8111156101e3576101e36103a5565b6040519080825280601f01601f19166020018201604052801561020d576020820181803683370190505b5090508181016020015b600019016f181899199a1a9b1b9c1cb0b131b232b360811b600a86061a8153600a850494508461021757509392505050565b60008072184f03e93ff9f4daa797ed6e38ed64bf6a1f0160401b83106102885772184f03e93ff9f4daa797ed6e38ed64bf6a1f0160401b830492506040015b6d04ee2d6d415b85acef810000000083106102b4576d04ee2d6d415b85acef8100000000830492506020015b662386f26fc1000083106102d257662386f26fc10000830492506010015b6305f5e10083106102ea576305f5e100830492506008015b61271083106102fe57612710830492506004015b60648310610310576064830492506002015b600a831061031c576001015b92915050565b60006020828403121561033457600080fd5b5035919050565b60005b8381101561035657818101518382015260200161033e565b50506000910152565b6000815180845261037781602086016020860161033b565b601f01601f19169290920160200192915050565b60208152600061039e602083018461035f565b9392505050565b634e487b7160e01b600052604160045260246000fd5b60008083601f8401126103cd57600080fd5b50813567ffffffffffffffff8111156103e557600080fd5b6020830191508360208285010111156103fd57600080fd5b9250929050565b6000806000806060858703121561041a57600080fd5b84359350602085013567ffffffffffffffff8082111561043957600080fd5b818701915087601f83011261044d57600080fd5b81358181111561045f5761045f6103a5565b604051601f8201601f19908116603f01168101908382118183101715610487576104876103a5565b816040528281528a60208487010111156104a057600080fd5b8260208601602083013760006020848301015280975050505060408701359150808211156104cd57600080fd5b506104da878288016103bb565b95989497509550505050565b634e487b7160e01b600052601160045260246000fd5b60008261051957634e487b7160e01b600052601260045260246000fd5b500490565b808202811582820484141761031c5761031c6104e6565b8181038181111561031c5761031c6104e6565b8082018082111561031c5761031c6104e6565b6000815161056d81856020860161033b565b9290920192915050565b6001600160f81b031983168152815160009061059a81600185016020870161033b565b919091016001019392505050565b6040815260006105bb604083018561035f565b90508260208301529392505050565b6000602082840312156105dc57600080fd5b5051919050565b81818437506000910190815290565b7f646174613a6170706c69636174696f6e2f6a736f6e2c7b22646573637269707481527f696f6e223a2022537461726b7368656574222c20226e616d65223a202200000060208201528688603d8301376000878201602160f81b603d820152875161066481603e840160208c0161033b565b7f222c22696d616765223a2022646174613a696d6167652f7376672b786d6c2c25603e92909101918201527f334373766725323076696577426f782533442532373025323030253230383925605e8201527f3230353525323725323066696c6c2533442532376e6f6e65253237253230786d607e8201527f6c6e73253344253237687474702533412f2f7777772e77332e6f72672f323030609e8201527f302f737667253237253345253343646566732533452533437374796c6525334560be8201527f253430666f6e742d66616365253230253742666f6e742d66616d696c7925334160de8201527f253230253237507265737325323053746172742532303250253237253342737260fe8201527f6325334125323075726c25323825323764617461253341666f6e742f776f666661011e8201527f32253342626173653634253243643039474d6741424141414141424c3841413861013e8201527f41414141415235774141424b674141454141414141414141414141414141414161015e8201527f4141414141414141414141414150305a4756453063476a41624d42794358675a61017e8201527f6741494e794551674b3846545361517544524141424e67496b41344e4d42434161019e8201527f46687a5148684649623644566c42306a314f4d4253336f4f4953744562732f2f6101be8201527f2f6c4a776356727a47634f30676f684c45484d6369694443434e57695a6761306101de8201527f79625345555954514f6a4b427038546c737a7344526438716174586c333058746101fe8201527f30645a47467952305668444b776c62746c25324272734643773945316e64655961021e8201527f4a74732f37527762305673784d71576c636a6a775445537a2f5568752f77337361023e8201527f33746b6f496d70343464515168576f456d54337579526d70746f7553446b7a5761025e8201527f454138762f3932364a4b7539486f696e6e3673376674336d4965476c7737547161027e8201527f6437456f326a46517849766a5642494a70563269614f62547a68575932314e7461029e8201527f476772687434704d4b3457556a34624c7967542f51253242514c7879253242336102be8201527f6c482f362f6b6275496444497239446a724a496a6f394a7336524d58253242456102de8201527f6b37424f545a6b6d70397a347455524652566656307148504448375a7462364a6102fe8201527f616f6130684c335975616232473373667a72365776394536793569767025324261031e8201527f7135564c74426a514478476f5345304150313762336466376c61726a6525324261033e8201527f73637a6b7241744a334b6657304a342532424b323365744b4b556a383554616f61035e8201527f57473453346158436c427743413268676141652532423658396f696e32304e6261037e8201527f554a7264466767517049686d5247494d30372f7025324277375a7058316c473161039e8201527f6a6a51787073435141423438714445415042346950312f6a39592f4261686a356103be8201527f5943414e302f78714157496852616a6c6e694e654f50396e78433466667932556103de8201527f694843304e47386b686f6f567a6f7459334445417a417a41356b473735337a6a6103fe8201527f4853354d6e6d586b69496a6d54554d36556d4d3025324256346976752f48377861041e8201527f6a364666322f6b343472787a6449324141676742492f4c48416b394a7a35554d61043e8201527f496f4c7755344146455435725a464f33444d616655633061777351434879497061045e8201527f557a546b30784a474a454f6a4e6871436b474570496153474f6a714e466d2f5761047e8201527f4e434e3569636b71434d6e414165564c4d4c655867356971386b365752585a5261049e8201527f326c337042393831427a73475a743225324256696c4342723954494a674b67786104be8201527f365542514446253242566a4b44714e7741414948386a6949664d6e75384b68666104de8201527f584b486f4e3348634134477245786842324155442f795a554d423857547579496104fe8201527f413444634f4b656434397939504249616e426967734d454e38556b30766c547661051e8201527f304a58334e394d795a75544d763573655357413525324238556538504465547261053e8201527f645467474973566d4e33635856586a6463795275633434385866664176506e7361055e8201527f3575324d4531722532426a4731703137767a3849704f416e483444427367793361057e8201527f512f54376b33646d2f3846334232377355694877464631414f6c683055646e4961059e8201527f4471494e5164506355393145786f2f346252696a6a5169704e4e307a4c646c7a6105be8201527f504438496f547449734c38717162746f4f5149514a5a567849705931315073536105de8201527f55533231397a4c585066642f507667765751346372464d2532425769755671706105fe8201527f645a6f4e6475645872632f4745324d4a36656e3575635746694763375274364f61061e8201527f487676354d674c2532427a44733578444277696141315433554877326b63594361063e8201527f312f55666453316645316d37763742346537653350574848786533594f32483561065e8201527f25324241504f5a7965503025324251506553425468793078713965363241486a61067e8201527f6141556842432f364144484c6f476f4f657636412532426867487369317a613861069e8201527f71355a4e4d716a596c575a4d713867354248445574495370574a73526f52544a6106be8201527f56613049305a3957546b5371564b73507a3464586a7648746449684c6e7670746106de8201527f554c4330753542567579414d544b4a513930594b5267546e5769476b6d7153456106fe8201527f714b6d7256685259674b6b335443686255573671456f45637665577a6859535461071e8201527f4c32484e706735452f6d7151393956564467763352475435586d33637a68754c61073e8201527f3972685864316132372f736c5130686959366a643739614f5a43746a6f52687261075e8201527f623136575676514b725734477a786a7869723238494d697a2f7155447973495761077e8201527f7037516a667765347a556437614a735651575179524c554b484b42577938577661079e8201527f45565333584d53353656337757644f442532424638757639645477496d4b722f6107be8201527f5064626d5763775176456641616a7975566a70784e32704f56635769336c38776107de8201527f454c2f6d395070646f55494536253242504b5838315041546d67654f304231736107fe8201527f47454825324261707a353466646d534a7a333741686635366a4c7739756e504561081e8201527f35644d4b3025324237544639563843435466523979664e7355493474557a464661083e8201527f42326e536e384b4f626a64446964554c7034494a6873777878595172595a643661085e8201527f4e76436e55394d445825324252654c6e4d546d6c315a453972306b5077334e3261087e8201527f6752253242736a4573596d4953706b356c31497333594e614a4b6f6e7a65703761089e8201527f56637354316e556b62347048774b5a41796b614b6f43504630506f6d456876496108be8201527f5758656e6f5a767836774f4b313070316c3274546858793850316555776473766108de8201527f53715157766f424d7473674851554a614774494273756861776450545a5378596108fe8201527f707257757734647a7231564755744449465871726f4d4d69597346783857695461091e8201527f336463574b6f376d50554c79715657413972305974524a4c626957766a6e4c2561093e8201527f324272633452646767624e516c514141613264306d616236364d48447074314361095e8201527f6477626b51436253375053445a4d7a3746724f51713165636153304a6c74644161097e8201527f6c44527941587173364130586247707748676b70367572557757416272464d3361099e8201527f75794d764e4b6c344d6c435548537950416d3931776144454a3559595148754a6109be8201527f4d32304b575251737637486b61334770686c533258444b714f4b4245554753316109de8201527f65306b63316f323449494166486c4449794278584a4a656767423369386174566109fe8201527f67434f3064444f5a484a57596a564c416a6a397137765673456e72684b374568610a1e8201527f4c75427a42586d4d674554634531636d61436976504b6f4a766670466c794935610a3e8201527f4d70584234454325324245672f596d303454787843354e6c73596b74646f5951610a5e8201527f55656c38624673456c3748345a36734377622f38626b347458574658504b6a71610a7e8201527f5462526e64336e4c5770394f784941706c664b586747684e6c72443462354a4c610a9e8201527f5a367055753441726756614d366561357844574244476f7a707a4641376e6747610abe8201527f74596334486141775269475576637653653652414177335a576b564f4667764b610ade8201527f46364955696c4d49394964715155345134585264484866736666517770313955610afe8201527f434a49306a5773725433356f5578303678507268473271364d4533554f306c63610b1e8201527f635a557354454351784a44527854444b6c334c4948722f6162546f73686c6466610b3e8201527f51786a364f57745273466e6966444373473674336b426f344e6d424a6d615556610b5e8201527f54636c794951414a4c6a6e723042365a3859464d6e396b397967703752727848610b7e8201527f36766877624a4e41654b4d554436353974386746514a4d5377652f434f624850610b9e8201527f467671484746554e5266253242737245663354584b42725a76676b6369396972610bbe8201527f426d63442f7458616754474358634e68432532424f3539754c706e6673796f71610bde8201527f4c53313238374552776d38666165564f6d3857634437386c5a36594232793938610bfe8201527f5a4c6c4d3972557264324c514e6c324956643454727376675139363079377573610c1e8201527f5965306854506170576a71726c2532425837784665424e54253242315a644a4a610c3e8201527f572532424678745737584e7774634e7a7761672532425256656a6d4a6839656d610c5e8201527f6c495a4b69694e63694b3849554f4d33556a4a376342554e5847505853326c68610c7e8201527f253242687770676f4836567348524f63764569723372585970344c7769435a77610c9e8201527f3176486c43623552314d68623564536e4f326d6e6f475a6f5846315765574757610cbe8201527f6d7a694a314a555534715072306e694a536c4e424331636b4b6d4a6657625877610cde8201527f5577757449547a456d6a776770776142753464525066746a2f4e384143526e64610cfe8201527f616b2f4641674b674c37305058577839767a6b59322532426d34355473496b4c610d1e8201527f3037616f70444e6f676830535262535a534f397a744657516a376e574c676275610d3e8201527f364325324254374b6a44715a3667456e5277674d78306b4c5a77797962514f76610d5e8201527f514130773054782f354a42722f63595a6453574f546a774446364e6f586b796a610d7e8201527f33566a484e4751494e76426a5a734a4a3377466141516d6f5a575a5970416961610d9e8201527f574f466e6e686455524176576b557a77693062677a5a4158796f445545714863610dbe8201527f57307069454c574f777168773365765478444957724e32495371525151454c41610dde8201527f4d32365334486c723548552f48784a43436844424a6b756b6341573856415430610dfe8201527f6770545a544b4e48677a444f7234314751656a4f34677a416e6b577077464752610e1e8201527f43334c625231787a4b434875365635694674674c704f384b51596d5965467868610e3e8201527f4c32643838736469506a2f76306b427a636c51637954735766324d6445394944610e5e8201527f386d5858576a72434b253242354532756e336e6976656973526e726971317548610e7e8201527f594d6a6a69694945304b6466674d6f3163476d6b557254624f30356732737633610e9e8201527f477673525971762f61457736375472644f705435567a4641364131417939634b610ebe8201527f6f44667762544a64445750524e57517354796a6d3772486249734b466b6f4f2f610ede8201527f5a4c4376735966785973337768534338614c49344b765677373773336e347a48610efe8201527f67697061634a6e435362463945727a53357069386343577655597a4f5064327a610f1e8201527f684a2f4750437a53684f453378596c634f3350796164586a54334f6b68706841610f3e8201527f58465853766865544e5355525446565641486f4a6d7949726b6a454b6f517746610f5e8201527f4730303554334158643935764e30446d336d427332786746546c253242513572610f7e8201527f73416a6e744768707a6f62643642374e7a52664e56653130446f4e5639343753610f9e8201527f59646f635252624776636d785456786f61367a717756376d416e773544314745610fbe8201527f5474327a48382532425476514256356e37672f32615768743979794e594c3974610fde8201527f4f42744167384846435945316d4e775432454232467538544968543776565241610ffe8201527f3461587a6e6b3670545a4e6779696f73747749364b654655374c696c7041253261101e8201527f42334234474a794277574d327062466a4876734a3747754f6f616b6a6d46746a61103e8201527f59344c6254396c323239253242453646374c4475577a744c6e333749786b386a61105e8201527f356c42564b33774c7369362f416641756f6a34396c4d6b5653545045396b704761107e8201527f64304c724555534a4941413070596c4178414d642f4e4f46776f4a446458466961109e8201527f307a4f5744422f54464a705666575642574f516274724a556230636c663369256110be8201527f3242575072446f596c65545674564f45306d36793564487444725551776f414c6110de8201527f7455523365585364444d4e785866656a594674764c626c726c4a7777484b2f456110fe8201527f6957504a616b32574b35386e684e6f4c6a615a55475841756f32656f5777464561111e8201527f66612f445334496958717246714779633348726939785132693243352f73357661113e8201527f7a424d30793777334d4473774d3759325247427172464d6778374f696325324261115e8201527f30497a736d5678617a5473305263666a324f3334532f525639503269486f427561117e8201527f6c4b49594244665a46654c53356439725379664a64536c67683268644d72324f61119e8201527f5552334b6e6c506e4f41785477314a384c4d325a776e4671765a745a4a6c78786111be8201527f343873776243743272316b664875443756624831326159383849437456734b786111de8201527f4b742f31726b616c42414d74782f6f6f6d43445059626b556f4c6344624b436a6111fe8201527f7675713953544467746a584744715735564b36686347654f46697a6a3643714c61121e8201527f4f49716b57783477733245504d444e7378253242613661533230384f39784c3061123e8201527f526146586f394241645530706e452532424c695359334b536f4a41525978646e61125e8201527f7a69545a4d706961442f3438496969393834446151357976656378414673735761127e8201527f792f686274696d63253242704c386b35796f70496d4a627948712f6138797a6c61129e8201527f6c37726f4f7a586d786d4163337459585363546b65734d6344324939315a36336112be8201527f6549312f394a627755716b36737863394b52677277574d414e6543314e6e39756112de8201527f4779775473706d5538712532426c5a6d43714d674153363662674841476a514b6112fe8201527f73754a334451416a5235346d356a4c7a5a616e546c62646530253242726e663461131e8201527f385a574138546c32673277414779427748516e3552322532424e6a726542677861133e8201527f626c734e46627554776d6862414a48737a2f72416f61764c4f34317874767a5961135e8201527f4768336e4c4a426b41506a7578424a445248333048426575385567436978464e61137e8201527f437951322f4b253242385157372f6530253242664f2532423436524e5730657961139e8201527f4c726f39446a5467704a4e4d3547385179306c54644f756d73773066715045696113be8201527f393646702532424830634d774e6f376a787a596d6e4e664d5a6d64506c7932706113de8201527f6f7132575065476d67507136474c78504e34536c4b486e7870624f69754c58516113fe8201527f75583155715031676a6f38426136536c55314f416d5267707a7531735444584a61141e8201527f50754d3338546f387130344c324e777970653837327777556741675a6c70386461143e8201527f6b5166397a38544d43624d6b596b3758484375333564375a5a41656f346b5a4b61145e8201527f68784953386945354c546a334c4f6976485a7268394a3870337a4c5a436a776361147e8201527f6970354452694b6e576e49664c33386b4a684d7452776a67553525324256726d61149e8201527f714b6c6739307a376a64732f4238444b646b464c76483353253242376f4838616114be8201527f6c445a6c626734533155583574434d445342324f364b756c7a41344b763067376114de8201527f314251643054464b7733685358696e62374e6c304258725873514e6376436b386114fe8201527f6d6f394f786965783559627a78564e2f6b3738336f48545a495777393079495a61151e8201527f777672697164475473586e54384965705437597946434f4a6741395a3042794961153e8201527f455956735478522f6b73616b324268376f4b767034766e695530364d57317a4261155e8201527f4672746568647a306b6b587951786a426d7965645636644d596545386146787461157e8201527f6575777355466136466c6c54446c716430707a525a77473663467266574d627061159e8201527f384738587a6a66624d253242354658657076356f457273696c363458783663376115be8201527f5841576275696d3666387347494d58666f334a6971476b703333376854536a676115de8201527f65636862364f42472f327a31376a6f6d4469476d253242476c623146553069656115fe8201527f6e7552796977654c576767447a6d4655765545556a5a6f377356544877684f4661161e8201527f504d6b4e737146423977796d6b45307639666d7477453854377135384e594f3761163e8201527f787534623833766e46766c35755378446c472532426b4f51675249644f346a6761165e8201527f7a786a53486a4b4c7332742f6c684f647771766131415744437072763344345361167e8201527f34523741625934544362664b4637744265363554343551347a7a49714433316161169e8201527f79797557716a692532424636585337535439483943314f342f694b366b4775766116be8201527f6b512f664e3537487837456533373435622f76766e2f62482f58253242392f256116de8201527f32426762656d684f416d49705576755157757344764b517578394a44564e734b6116fe8201527f673651636d6b73515341445530346347524c523768466f5a326337785545664761171e8201527f253242776b755459474d764c6a422f6550634936416847686e5735717a45416961173e8201527f4a586377564545775869654e70536c317a6a457253253242435325324248634c61175e8201527f6f52506d7661324d6767412f69794c67536f544a555767733442794149514f3061177e8201527f4f6f705a487656627a6844494c65557155677a7a48492f667950474e7879777361179e8201527f6f796c6865534639577662795363336b4544716b32415636436c4364635535536117be8201527f6e6c4e6e4963394b794d63384c79622532423867484f4a795173466c4c6250526117de8201527f796d6d374a42743349545a544162314732444252496b514b51705451396939626117fe8201527f3665435353387a4d366161525364544b5657524d336663454a4c644b61746e7361181e8201527f724959774e4a55253242733048364461757832775a35686733706c653042474861183e8201527f756b316b4543734859446461496d4b7025324233463542317859763763486b7161185e8201527f644475306a4b645273657a3531376d63563641685148346931484e3173766c6a61187e8201527f5248366845454672682532426e72726d47316e33307a4d346749776d694d774561189e8201527f624b6842545564423141486f582532424b6741517a4f48543946494f71436b526118be8201527f4e4e623273397170496943534f753167576868497343564a73765771457175356118de8201527f47624a514b4e6a61427465394c4f69676368414a7665475773394332323033766118fe8201527f6f6e476c6b77725251323464646732796345646157554456734441785548734961191e8201527f77773665615234464665336d4a416b66426d5a6452395264774a485a6d47645261193e8201527f7950436a706a627a31712f584a34534949446b66384b4b6e6e32456c4b6d794c61195e8201527f69573442513836733151554b2f76426867524e776548766c5968687a7238706361197e8201527f67704b4b6d6f61576a7036426b594f48446c7835734b5647336365474539657661199e8201527f506e773563646667454242676f554946536238587632504553314772446a78456119be8201527f69524b6b697846716a54704d6d544b6b693148726a7a354368517155717845716119de8201527f544c6c4b6c53715571314772547231476a527130717846717a62744f6e5347656119fe8201527f3668374a6d627a4968355a6544696c315a58536a7430774375616b336c6e476f611a1e8201527f5655506f53734e663337394b326a6274716d44674d69485a42665a6c68324839611a3e8201527f75773738495469314a466a585653662f4336634f55667a346f30644178305447611a5e8201527f777448446863666a3443516d49694531444d5a42546b6c4e5a557065566f614f611a7e8201527f6e717633733234314e50503965766574594768435a50576a4979747332706173611a9e8201527f436a25324270556a54596c336b615574374f744b4a6136355850396d356e6367611abe8201527f364e686a685a587032762532426d57724341545a754a303368316b6a55756976611ade8201527f5067596e6a6e35744b4a4f6b326e6362703251414559585a69304b496d50356b611afe8201527f744961466e366b5a397743253237253239253230666f726d6174253238253237611b1e8201527f776f666632253237253239253342666f6e742d7765696768742533412532306e611b3e8201527f6f726d616c253342666f6e742d7374796c652533412532306e6f726d616c2533611b5e8201527f42666f6e742d646973706c617925334125323073776170253342253744746578611b7e8201527f74253230253742666f6e742d66616d696c792533412532302532375072657373611b9e8201527f2532305374617274253230325025323725334266696c6c253341253230776869611bbe8201527f74652537442e76616c7565253230253742666f6e742d73697a65253341253230611bde8201527f313070782533422537442e6e616d65253230253742666f6e742d73697a652533611bfe8201527f412532303470782533422537442533432f7374796c652533452533432f646566611c1e8201527f7325334525334372656374253230776964746825334425323738392532372532611c3e8201527f30686569676874253344253237353525323725323066696c6c25334425323762611c5e8201527f6c61636b2532372532302f253345253343726563742532307825334425323735611c7e8201527f2e3525323725323079253344253237352e352532372532307769647468253344611c9e8201527f2532373738253237253230686569676874253344253237343425323725323066611cbe8201527f696c6c2533442532372532333030303046462532372532302f25334525334374611cde8201527f657874253230746578742d616e63686f722533442532376d6964646c65253237611cfe8201527f2532307825334425323734342e35253237253230792533442532373333253237611d1e8201527f253230636c61737325334425323776616c756525323725334500000000000000611d3e820152612ba5612b9e6129f5611d5784018a61055b565b7f2533432f746578742533452533437265637425323078253344253237352e352581527f323725323079253344253237352e35253237253230776964746825334425323760208201527f373825323725323068656967687425334425323734342532372532307374726f60408201527f6b652533442532372532334646344630412532372532307374726f6b652d776960608201527f647468253344253237332532372532302f25334525334372656374253230782560808201527f334425323733302532372532307925334425323734352e35253237253230776960a08201527f647468253344253237353825323725323068656967687425334425323738253260c08201527f3725323066696c6c2533442532372532334646344630412532372532302f253360e08201527f4525334374657874253230746578742d616e63686f72253344253237656e64256101008201527f32372532307825334425323738372532372532307925334425323735322532376101208201527f253230636c6173732533442532376e616d6525323725334500000000000000006101408201526101580190565b86886105e3565b602160f81b81529050612bbb600182018561055b565b7f2533432f746578742533452533432f737667253345227d00000000000000000081526017019a995050505050505050505056fea26469706673582212206a2c00c13ddb4f1bcd7ee36e36f0c874d7d9dadcf38306eab3610b5a6e7af83464736f6c63430008110033", + "nonce": "0x2" + }, + "additionalContracts": [], + "isFixedGasLimit": false + }, + { + "hash": "0x05c851c318f703ca1584f93726cae8b01fcd20b307c2a5add61a15b751a6cdab", + "transactionType": "CREATE", + "contractName": null, + "contractAddress": "0xCf7Ed3AccA5a467e9e704C703E8D87F634fB0Fc9", + "function": null, + "arguments": null, + "transaction": { + "type": "0x00", + "from": "0xf39fd6e51aad88f6f4ce6ab8827279cfffb92266", + "gas": "0x42230", + "value": "0x0", + "data": "0x608060405234801561001057600080fd5b506102cf806100206000396000f3fe608060405234801561001057600080fd5b506004361061004c5760003560e01c80630194db8e14610051578063072bdcc214610076578063a391c15b14610089578063b67d77c51461009c575b600080fd5b61006461005f366004610160565b6100af565b60405190815260200160405180910390f35b610064610084366004610160565b6100ef565b61006461009736600461021e565b610129565b6100646100aa36600461021e565b61013e565b600080805b83518110156100e8578381815181106100cf576100cf610240565b60200260200101518201915080806001019150506100b4565b5092915050565b60006001815b83518110156100e85783818151811061011057610110610240565b60200260200101518202915080806001019150506100f5565b60006101358284610256565b90505b92915050565b60006101358284610278565b634e487b7160e01b600052604160045260246000fd5b6000602080838503121561017357600080fd5b823567ffffffffffffffff8082111561018b57600080fd5b818501915085601f83011261019f57600080fd5b8135818111156101b1576101b161014a565b8060051b604051601f19603f830116810181811085821117156101d6576101d661014a565b6040529182528482019250838101850191888311156101f457600080fd5b938501935b82851015610212578435845293850193928501926101f9565b98975050505050505050565b6000806040838503121561023157600080fd5b50508035926020909101359150565b634e487b7160e01b600052603260045260246000fd5b60008261027357634e487b7160e01b600052601260045260246000fd5b500490565b8181038181111561013857634e487b7160e01b600052601160045260246000fdfea2646970667358221220fcdef23ba4219270ddb3ab764e22a87e229c05e6f1dfc4eeea983fa1a1dac91f64736f6c63430008110033", + "nonce": "0x3" + }, + "additionalContracts": [], + "isFixedGasLimit": false + }, + { + "hash": "0x0156ed37608a55ed8897ef8eb39ae382ec9b73dbe71b548c8f747ed4587eda48", + "transactionType": "CREATE", + "contractName": "Evmsheet", + "contractAddress": "0xDc64a140Aa3E981100a9becA4E685f962f0cF6C9", + "function": null, + "arguments": [ + "0x9fE46736679d2D9a65F0992F2272dE9f3c7fa6e0", + "10000000000000000" + ], + "transaction": { + "type": "0x00", + "from": "0xf39fd6e51aad88f6f4ce6ab8827279cfffb92266", + "gas": "0x34bf99", + "value": "0x0", + "data": "0x608060405234801561001057600080fd5b50604051612ed9380380612ed983398101604081905261002f916100b1565b61003833610061565b600280546001600160a01b0319166001600160a01b0393909316929092179091556001556100eb565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b600080604083850312156100c457600080fd5b82516001600160a01b03811681146100db57600080fd5b6020939093015192949293505050565b612ddf806100fa6000396000f3fe608060405260043610620000a95760003560e01c80638da5cb5b116200006c5780638da5cb5b146200016d578063ab2fa65a146200018d578063ae28505e14620001b4578063c56c4cf114620001d9578063f2fde38b14620001fb578063f52be2a2146200022057600080fd5b806303fb31e814620000ae5780631164c83d14620000d5578063145e414714620000ec5780635787cacb146200012e578063715018a61462000155575b600080fd5b348015620000bb57600080fd5b50620000d3620000cd36600462000778565b62000247565b005b620000d3620000e6366004620007e9565b62000273565b348015620000f957600080fd5b50620001116200010b36600462000864565b620004b2565b6040516001600160a01b0390911681526020015b60405180910390f35b3480156200013b57600080fd5b50620001466200054f565b60405162000125919062000891565b3480156200016257600080fd5b50620000d3620005b3565b3480156200017a57600080fd5b506000546001600160a01b031662000111565b3480156200019a57600080fd5b50620001a5620005cb565b604051620001259190620008e0565b348015620001c157600080fd5b5062000111620001d336600462000930565b620005f7565b348015620001e657600080fd5b5060025462000111906001600160a01b031681565b3480156200020857600080fd5b50620000d36200021a36600462000778565b62000622565b3480156200022d57600080fd5b506200023860015481565b60405190815260200162000125565b62000251620006a1565b600280546001600160a01b0319166001600160a01b0392909216919091179055565b60015434146200029d5760405163723a79e360e11b81523460048201526024015b60405180910390fd5b600060405180602001620002b1906200074d565b6020820181038252601f19601f8201166040525090506000828251602084016000f56002546040516356d3163d60e01b81526001600160a01b0391821660048201529192508216906356d3163d90602401600060405180830381600087803b1580156200031d57600080fd5b505af115801562000332573d6000803e3d6000fd5b505060405163c47f002760e01b81526001600160a01b038416925063c47f0027915062000366908a908a906004016200094a565b600060405180830381600087803b1580156200038157600080fd5b505af115801562000396573d6000803e3d6000fd5b5050604051635c26412360e11b81526001600160a01b038416925063b84c82469150620003ca90889088906004016200094a565b600060405180830381600087803b158015620003e557600080fd5b505af1158015620003fa573d6000803e3d6000fd5b505060405163f2fde38b60e01b81523260048201526001600160a01b038416925063f2fde38b9150602401600060405180830381600087803b1580156200044057600080fd5b505af115801562000455573d6000803e3d6000fd5b5050600380546001810182556000919091527fc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b0180546001600160a01b0319166001600160a01b0394909416939093179092555050505050505050565b600060ff60f81b838360405180602001620004cd906200074d565b6020820181038252601f19601f82011660405250805190602001206040516020016200053094939291906001600160f81b031994909416845260609290921b6bffffffffffffffffffffffff191660018401526015830152603582015260550190565b60408051601f1981840301815291905280516020909101209392505050565b60606003805480602002602001604051908101604052809291908181526020018280548015620005a957602002820191906000526020600020905b81546001600160a01b031681526001909101906020018083116200058a575b5050505050905090565b620005bd620006a1565b620005c96000620006fd565b565b606060405180602001620005df906200074d565b601f1982820381018352601f90910116604052919050565b600381815481106200060857600080fd5b6000918252602090912001546001600160a01b0316905081565b6200062c620006a1565b6001600160a01b038116620006935760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b606482015260840162000294565b6200069e81620006fd565b50565b6000546001600160a01b03163314620005c95760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015260640162000294565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b612430806200097a83390190565b80356001600160a01b03811681146200077357600080fd5b919050565b6000602082840312156200078b57600080fd5b62000796826200075b565b9392505050565b60008083601f840112620007b057600080fd5b50813567ffffffffffffffff811115620007c957600080fd5b602083019150836020828501011115620007e257600080fd5b9250929050565b6000806000806000606086880312156200080257600080fd5b853567ffffffffffffffff808211156200081b57600080fd5b6200082989838a016200079d565b909750955060208801359150808211156200084357600080fd5b5062000852888289016200079d565b96999598509660400135949350505050565b600080604083850312156200087857600080fd5b62000883836200075b565b946020939093013593505050565b6020808252825182820181905260009190848201906040850190845b81811015620008d45783516001600160a01b031683529284019291840191600101620008ad565b50909695505050505050565b600060208083528351808285015260005b818110156200090f57858101830151858201604001528201620008f1565b506000604082860101526040601f19601f8301168501019250505092915050565b6000602082840312156200094357600080fd5b5035919050565b60208152816020820152818360408301376000818301604090810191909152601f909201601f1916010191905056fe60806040523480156200001157600080fd5b50604051806040016040528060078152602001660536865657420360cc1b815250604051806040016040528060048152602001630534854360e41b81525062000069620000636200008f60201b60201c565b62000093565b600162000077838262000188565b50600262000086828262000188565b50505062000254565b3390565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b634e487b7160e01b600052604160045260246000fd5b600181811c908216806200010e57607f821691505b6020821081036200012f57634e487b7160e01b600052602260045260246000fd5b50919050565b601f8211156200018357600081815260208120601f850160051c810160208610156200015e5750805b601f850160051c820191505b818110156200017f578281556001016200016a565b5050505b505050565b81516001600160401b03811115620001a457620001a4620000e3565b620001bc81620001b58454620000f9565b8462000135565b602080601f831160018114620001f45760008415620001db5750858301515b600019600386901b1c1916600185901b1785556200017f565b600085815260208120601f198616915b82811015620002255788860151825594840194600190910190840162000204565b5085821015620002445787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b6121cc80620002646000396000f3fe608060405234801561001057600080fd5b50600436106102275760003560e01c8063715018a611610130578063b85d8b85116100b8578063cf0983981161007c578063cf09839814610512578063cfbe95d814610535578063df4ca20614610556578063e985e9c514610576578063f2fde38b146105a457600080fd5b8063b85d8b85146104a4578063b88d4fde146104ce578063b8c368ec146104e1578063c47f0027146104ec578063c87b56dd146104ff57600080fd5b806395d89b41116100ff57806395d89b4114610439578063a22cb46514610441578063b46ebb1214610454578063b6d658e114610467578063b84c82461461049157600080fd5b8063715018a6146103fa578063768d5029146104025780638ada6b0f146104155780638da5cb5b1461042857600080fd5b80631b06443c116101b35780634f6ccce7116101825780634f6ccce71461038157806356d3163d146103a15780636352211e146103b45780636a0abc74146103c757806370a08231146103e757600080fd5b80631b06443c14610335578063206848f61461034857806323b872dd1461035b57806342842e0e1461036e57600080fd5b8063081812fc116101fa578063081812fc146102a1578063095ea7b3146102e2578063172b9eed146102f757806318160ddd1461030a5780631941fd141461031357600080fd5b806301ffc9a71461022c57806302f3c4c91461025457806306fdde03146102745780630715a24a1461027c575b600080fd5b61023f61023a36600461176a565b6105b7565b60405190151581526020015b60405180910390f35b610267610262366004611861565b610609565b60405161024b9190611951565b610267610638565b6102936fffffffffffffffffffffffffffffffff81565b60405190815260200161024b565b6102ca6102af366004611964565b6005602052600090815260409020546001600160a01b031681565b6040516001600160a01b03909116815260200161024b565b6102f56102f036600461197d565b6106c6565b005b6102676103053660046119a9565b6107ad565b61029360075481565b610326610321366004611964565b610875565b60405161024b939291906119de565b6102ca610343366004611a0e565b61092a565b610326610356366004611964565b6109e3565b6102f5610369366004611a2b565b610ae1565b6102f561037c366004611a2b565b610ca8565b61029361038f366004611964565b60086020526000908152604090205481565b6102f56103af366004611a0e565b610da0565b6102ca6103c2366004611964565b610dca565b6103da6103d53660046119a9565b610e1c565b60405161024b9190611a6c565b6102936103f5366004611a0e565b610e60565b6102f5610ec3565b6102f5610410366004611af9565b610ed7565b6009546102ca906001600160a01b031681565b6000546001600160a01b03166102ca565b610267611035565b6102f561044f366004611b63565b611042565b610267610462366004611964565b6110ae565b61047a610475366004611964565b611258565b60408051921515835260208301919091520161024b565b6102f561049f366004611ba1565b611275565b6104b56104b2366004611964565b90565b6040516001600160e01b0319909116815260200161024b565b6102f56104dc366004611be3565b6112c6565b6102ca600160801b81565b6102f56104fa366004611ba1565b6113ae565b61026761050d366004611964565b6113ff565b61023f610520366004611a0e565b600160801b6001600160a01b03919091161090565b61023f610543366004611861565b516001600160a01b0316600160801b1490565b610569610564366004611964565b6114c9565b60405161024b9190611c16565b61023f610584366004611c4d565b600660209081526000928352604080842090915290825290205460ff1681565b6102f56105b2366004611a0e565b611526565b60006301ffc9a760e01b6001600160e01b0319831614806105e857506380ac58cd60e01b6001600160e01b03198316145b806106035750635b5e139f60e01b6001600160e01b03198316145b92915050565b6060816020015160405160200161062291815260200190565b6040516020818303038152906040529050919050565b6001805461064590611c7b565b80601f016020809104026020016040519081016040528092919081815260200182805461067190611c7b565b80156106be5780601f10610693576101008083540402835291602001916106be565b820191906000526020600020905b8154815290600101906020018083116106a157829003601f168201915b505050505081565b6000818152600360205260409020546001600160a01b03163381148061070f57506001600160a01b038116600090815260066020908152604080832033845290915290205460ff165b6107515760405162461bcd60e51b815260206004820152600e60248201526d1393d517d055551213d49256915160921b60448201526064015b60405180910390fd5b60008281526005602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b606060006107ba83610e1c565b9050606060005b825181101561086d576000806107ef8584815181106107e2576107e2611cb5565b6020026020010151611258565b9150915081156108335783610803826110ae565b61080c90611ccb565b60405160200161081d929190611cef565b6040516020818303038152906040529350610858565b6040516108469085908390602001611cef565b60405160208183030381529060405293505b5050808061086590611d27565b9150506107c1565b509392505050565b600a602052600090815260409020805460018201546002830180546001600160a01b039093169391926108a790611c7b565b80601f01602080910402602001604051908101604052809291908181526020018280546108d390611c7b565b80156109205780601f106108f557610100808354040283529160200191610920565b820191906000526020600020905b81548152906001019060200180831161090357829003601f168201915b5050505050905083565b6000600160801b6001600160a01b03831610156109da576000610955836001600160a01b03166110ae565b604051632d737e4960e21b8152909150735fbdb2315678afecb367f032d93f642f64180aa39063b5cdf92490610992908490600090600401611d40565b602060405180830381865af41580156109af573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906109d39190611d62565b9392505050565b5090565b919050565b60008181526003602052604081205481906060906001600160a01b0316610a1057600160801b9250610a2b565b6000848152600a60205260409020546001600160a01b031692505b6000848152600a60205260409020600181015460029091018054859291908190610a5490611c7b565b80601f0160208091040260200160405190810160405280929190818152602001828054610a8090611c7b565b8015610acd5780601f10610aa257610100808354040283529160200191610acd565b820191906000526020600020905b815481529060010190602001808311610ab057829003601f168201915b505050505090509250925092509193909250565b6000818152600360205260409020546001600160a01b03848116911614610b375760405162461bcd60e51b815260206004820152600a60248201526957524f4e475f46524f4d60b01b6044820152606401610748565b6001600160a01b038216610b815760405162461bcd60e51b81526020600482015260116024820152701253959053125117d49150d25412515395607a1b6044820152606401610748565b336001600160a01b0384161480610bbb57506001600160a01b038316600090815260066020908152604080832033845290915290205460ff165b80610bdc57506000818152600560205260409020546001600160a01b031633145b610c195760405162461bcd60e51b815260206004820152600e60248201526d1393d517d055551213d49256915160921b6044820152606401610748565b6001600160a01b0380841660008181526004602090815260408083208054600019019055938616808352848320805460010190558583526003825284832080546001600160a01b03199081168317909155600590925284832080549092169091559251849392917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b610cb3838383610ae1565b6001600160a01b0382163b1580610d5c5750604051630a85bd0160e11b8082523360048301526001600160a01b03858116602484015260448301849052608060648401526000608484015290919084169063150b7a029060a4016020604051808303816000875af1158015610d2c573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610d509190611d7b565b6001600160e01b031916145b610d9b5760405162461bcd60e51b815260206004820152601060248201526f155394d0519157d49150d2541251539560821b6044820152606401610748565b505050565b610da861159f565b600980546001600160a01b0319166001600160a01b0392909216919091179055565b6000818152600360205260409020546001600160a01b0316806109de5760405162461bcd60e51b815260206004820152600a6024820152691393d517d3525395115160b21b6044820152606401610748565b60608082516040519150602081048252602082016020850160005b83811015610e4f578181015183820152602001610e37565b505050810160200160405292915050565b60006001600160a01b038216610ea75760405162461bcd60e51b815260206004820152600c60248201526b5a45524f5f4144445245535360a01b6044820152606401610748565b506001600160a01b031660009081526004602052604090205490565b610ecb61159f565b610ed560006115f9565b565b6000858152600360205260409020546001600160a01b0316610f2f57610efd3286611649565b60078054600090815260086020526040812087905581546001929190610f24908490611d98565b90915550610f889050565b6000858152600360205260409020546001600160a01b03163214610f8857600085815260036020526040908190205490516324f3f02560e21b81526001600160a01b039091166004820152326024820152604401610748565b6040518060600160405280856001600160a01b0316815260200184815260200183838080601f0160208091040260200160405190810160405280939291908181526020018383808284376000920182905250939094525050878152600a6020908152604091829020845181546001600160a01b0319166001600160a01b0390911617815590840151600182015590830151909150600282019061102b9082611df9565b5050505050505050565b6002805461064590611c7b565b3360008181526006602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b6000818152600a6020908152604080832081516060818101845282546001600160a01b0316825260018301549482019490945260028201805494959491938401916110f890611c7b565b80601f016020809104026020016040519081016040528092919081815260200182805461112490611c7b565b80156111715780601f1061114657610100808354040283529160200191611171565b820191906000526020600020905b81548152906001019060200180831161115457829003601f168201915b505050505081525050905061119381516001600160a01b0316600160801b1490565b156111a1576109d381610609565b60006111b0826000015161092a565b905060006111bf836020015190565b905060006111d084604001516107ad565b90506000836001600160a01b031683836040516020016111f1929190611eb9565b60408051601f198184030181529082905261120b91611eea565b600060405180830381855afa9150503d8060008114611246576040519150601f19603f3d011682016040523d82523d6000602084013e61124b565b606091505b5098975050505050505050565b600080611266600284611f06565b60019081149493901c92915050565b61127d61159f565b7f8dca0271872d00b3de3abafca544c52fcd7d512dd852c9894fa2c118ac759a93600283836040516112b193929190611fce565b60405180910390a16002610d9b828483611ffe565b6112d1858585610ae1565b6001600160a01b0384163b15806113685750604051630a85bd0160e11b808252906001600160a01b0386169063150b7a02906113199033908a908990899089906004016120be565b6020604051808303816000875af1158015611338573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061135c9190611d7b565b6001600160e01b031916145b6113a75760405162461bcd60e51b815260206004820152601060248201526f155394d0519157d49150d2541251539560821b6044820152606401610748565b5050505050565b6113b661159f565b7fb65b7b5ea384affd30f77f842e057d29dd1b13f133adf69a724a8105b164ab75600183836040516113ea93929190611fce565b60405180910390a16001610d9b828483611ffe565b6000818152600360205260409020546060906001600160a01b03168061143b57604051630243d1a960e21b815260048101849052602401610748565b6000611446846110ae565b6009546040516328de0f2f60e01b81529192506001600160a01b0316906328de0f2f9061147c90879085906001906004016120fd565b600060405180830381865afa158015611499573d6000803e3d6000fd5b505050506040513d6000823e601f3d908101601f191682016040526114c19190810190612128565b949350505050565b604080516060808201835260008083526020830181905292820152906114ee836110ae565b6040805160608101825285815260009586526003602090815295829020546001600160a01b0316958101959095528401525090919050565b61152e61159f565b6001600160a01b0381166115935760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610748565b61159c816115f9565b50565b6000546001600160a01b03163314610ed55760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610748565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b6001600160a01b0382166116935760405162461bcd60e51b81526020600482015260116024820152701253959053125117d49150d25412515395607a1b6044820152606401610748565b6000818152600360205260409020546001600160a01b0316156116e95760405162461bcd60e51b815260206004820152600e60248201526d1053149150511657d3525395115160921b6044820152606401610748565b6001600160a01b038216600081815260046020908152604080832080546001019055848352600390915280822080546001600160a01b0319168417905551839291907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b6001600160e01b03198116811461159c57600080fd5b60006020828403121561177c57600080fd5b81356109d381611754565b634e487b7160e01b600052604160045260246000fd5b604051601f8201601f1916810167ffffffffffffffff811182821017156117c6576117c6611787565b604052919050565b6001600160a01b038116811461159c57600080fd5b600067ffffffffffffffff8211156117fd576117fd611787565b50601f01601f191660200190565b600082601f83011261181c57600080fd5b813561182f61182a826117e3565b61179d565b81815284602083860101111561184457600080fd5b816020850160208301376000918101602001919091529392505050565b60006020828403121561187357600080fd5b813567ffffffffffffffff8082111561188b57600080fd5b908301906060828603121561189f57600080fd5b6040516060810181811083821117156118ba576118ba611787565b60405282356118c8816117ce565b8152602083810135908201526040830135828111156118e657600080fd5b6118f28782860161180b565b60408301525095945050505050565b60005b8381101561191c578181015183820152602001611904565b50506000910152565b6000815180845261193d816020860160208601611901565b601f01601f19169290920160200192915050565b6020815260006109d36020830184611925565b60006020828403121561197657600080fd5b5035919050565b6000806040838503121561199057600080fd5b823561199b816117ce565b946020939093013593505050565b6000602082840312156119bb57600080fd5b813567ffffffffffffffff8111156119d257600080fd5b6114c18482850161180b565b60018060a01b0384168152826020820152606060408201526000611a056060830184611925565b95945050505050565b600060208284031215611a2057600080fd5b81356109d3816117ce565b600080600060608486031215611a4057600080fd5b8335611a4b816117ce565b92506020840135611a5b816117ce565b929592945050506040919091013590565b6020808252825182820181905260009190848201906040850190845b81811015611aa457835183529284019291840191600101611a88565b50909695505050505050565b60008083601f840112611ac257600080fd5b50813567ffffffffffffffff811115611ada57600080fd5b602083019150836020828501011115611af257600080fd5b9250929050565b600080600080600060808688031215611b1157600080fd5b853594506020860135611b23816117ce565b935060408601359250606086013567ffffffffffffffff811115611b4657600080fd5b611b5288828901611ab0565b969995985093965092949392505050565b60008060408385031215611b7657600080fd5b8235611b81816117ce565b915060208301358015158114611b9657600080fd5b809150509250929050565b60008060208385031215611bb457600080fd5b823567ffffffffffffffff811115611bcb57600080fd5b611bd785828601611ab0565b90969095509350505050565b600080600080600060808688031215611bfb57600080fd5b8535611c06816117ce565b94506020860135611b23816117ce565b602081528151602082015260018060a01b036020830151166040820152600060408301516060808401526114c16080840182611925565b60008060408385031215611c6057600080fd5b8235611c6b816117ce565b91506020830135611b96816117ce565b600181811c90821680611c8f57607f821691505b602082108103611caf57634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052603260045260246000fd5b80516020808301519190811015611caf5760001960209190910360031b1b16919050565b60008351611d01818460208801611901565b9190910191825250602001919050565b634e487b7160e01b600052601160045260246000fd5b600060018201611d3957611d39611d11565b5060010190565b604081526000611d536040830185611925565b90508260208301529392505050565b600060208284031215611d7457600080fd5b5051919050565b600060208284031215611d8d57600080fd5b81516109d381611754565b8082018082111561060357610603611d11565b601f821115610d9b57600081815260208120601f850160051c81016020861015611dd25750805b601f850160051c820191505b81811015611df157828155600101611dde565b505050505050565b815167ffffffffffffffff811115611e1357611e13611787565b611e2781611e218454611c7b565b84611dab565b602080601f831160018114611e5c5760008415611e445750858301515b600019600386901b1c1916600185901b178555611df1565b600085815260208120601f198616915b82811015611e8b57888601518255948401946001909101908401611e6c565b5085821015611ea95787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b6001600160e01b0319831681528151600090611edc816004850160208701611901565b919091016004019392505050565b60008251611efc818460208701611901565b9190910192915050565b600082611f2357634e487b7160e01b600052601260045260246000fd5b500690565b60008154611f3581611c7b565b808552602060018381168015611f525760018114611f6c57611f9a565b60ff1985168884015283151560051b880183019550611f9a565b866000528260002060005b85811015611f925781548a8201860152908301908401611f77565b890184019650505b505050505092915050565b81835281816020850137506000828201602090810191909152601f909101601f19169091010190565b604081526000611fe16040830186611f28565b8281036020840152611ff4818587611fa5565b9695505050505050565b67ffffffffffffffff83111561201657612016611787565b61202a836120248354611c7b565b83611dab565b6000601f84116001811461205e57600085156120465750838201355b600019600387901b1c1916600186901b1783556113a7565b600083815260209020601f19861690835b8281101561208f578685013582556020948501946001909201910161206f565b50868210156120ac5760001960f88860031b161c19848701351681555b505060018560011b0183555050505050565b6001600160a01b03868116825285166020820152604081018490526080606082018190526000906120f29083018486611fa5565b979650505050505050565b8381526060602082015260006121166060830185611925565b8281036040840152611ff48185611f28565b60006020828403121561213a57600080fd5b815167ffffffffffffffff81111561215157600080fd5b8201601f8101841361216257600080fd5b805161217061182a826117e3565b81815285602083850101111561218557600080fd5b611a0582602083016020860161190156fea26469706673582212203fc548aa4f22e6f4c01757ba3f2e0383630418b3d17601758718ab19a4d9918d64736f6c63430008110033a26469706673582212207932e8c793f9a96d9606a8907a6671f54c0fb1ed5a763048e13b429274e7706c64736f6c634300081100330000000000000000000000009fe46736679d2d9a65f0992f2272de9f3c7fa6e0000000000000000000000000000000000000000000000000002386f26fc10000", + "nonce": "0x4" + }, + "additionalContracts": [], + "isFixedGasLimit": false + } + ], + "receipts": [ + { + "transactionHash": "0x045f89ca387f2853a2a30f92868bdf8945580b501a47d7aef7e168a4febacd61", + "transactionIndex": "0x0", + "blockHash": "0x073d71b449878603d31287338acca94dcb45b40e11e449e2ab2b1656be333e6a", + "blockNumber": "0xb", + "from": "0xf39Fd6e51aad88F6F4ce6aB8827279cffFb92266", + "to": null, + "cumulativeGasUsed": "0xf4240", + "gasUsed": "0x7a120", + "contractAddress": "0xe7f1725E7734CE288F8367e1Bb143E90bb3F0512", + "logs": [], + "status": "0x1", + "logsBloom": "0x00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", + "type": "0x0", + "effectiveGasPrice": "0xf4240" + }, + { + "transactionHash": "0x000128fbbcf1ce04facb50cb06b25514ad5927f52ec5b5b497f9cc8acff8a383", + "transactionIndex": "0x0", + "blockHash": "0x0365db0c5c55e83555a1ad1cb190a6c89c8d9ee6946e001ad1599f03c142c22d", + "blockNumber": "0xc", + "from": "0xf39Fd6e51aad88F6F4ce6aB8827279cffFb92266", + "to": null, + "cumulativeGasUsed": "0xf4240", + "gasUsed": "0x7a120", + "contractAddress": "0x9fE46736679d2D9a65F0992F2272dE9f3c7fa6e0", + "logs": [], + "status": "0x1", + "logsBloom": "0x00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", + "type": "0x0", + "effectiveGasPrice": "0xf4240" + }, + { + "transactionHash": "0x027230bd60128347bd04e3fa2055be2e2ba4fcd489e1ac59cc7d43bbceab7797", + "transactionIndex": "0x0", + "blockHash": "0x022f9bb72b6d7865f23e51646c45fad560519fa7d52ccc958e9823cc1f365f8f", + "blockNumber": "0xd", + "from": "0xf39Fd6e51aad88F6F4ce6aB8827279cffFb92266", + "to": null, + "cumulativeGasUsed": "0xf4240", + "gasUsed": "0x7a120", + "contractAddress": "0xCf7Ed3AccA5a467e9e704C703E8D87F634fB0Fc9", + "logs": [], + "status": "0x1", + "logsBloom": "0x00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", + "type": "0x0", + "effectiveGasPrice": "0xf4240" + } + ], + "libraries": [ + "lib/eth-projects-monorepo/packages/eth-projects-contracts/contracts/lib/utils/Bytes.sol:Bytes:0x5fbdb2315678afecb367f032d93f642f64180aa3" + ], + "pending": [ + "0x05c851c318f703ca1584f93726cae8b01fcd20b307c2a5add61a15b751a6cdab", + "0x0156ed37608a55ed8897ef8eb39ae382ec9b73dbe71b548c8f747ed4587eda48" + ], + "returns": {}, + "timestamp": 1689179270, + "chain": 1263227476, + "multi": false, + "commit": "24c72b7" +} \ No newline at end of file diff --git a/packages/starksheet-solidity/broadcast/Evmsheet.s.sol/1263227476/run-1689179365.json b/packages/starksheet-solidity/broadcast/Evmsheet.s.sol/1263227476/run-1689179365.json new file mode 100644 index 00000000..dc969be5 --- /dev/null +++ b/packages/starksheet-solidity/broadcast/Evmsheet.s.sol/1263227476/run-1689179365.json @@ -0,0 +1,158 @@ +{ + "transactions": [ + { + "hash": "0x045f89ca387f2853a2a30f92868bdf8945580b501a47d7aef7e168a4febacd61", + "transactionType": "CREATE", + "contractName": "Bytes", + "contractAddress": "0x5FbDB2315678afecb367f032d93F642f64180aa3", + "function": null, + "arguments": null, + "transaction": { + "type": "0x00", + "from": "0xf39fd6e51aad88f6f4ce6ab8827279cfffb92266", + "gas": "0x1387ed", + "data": "0x6110d661003a600b82828239805160001a60731461002d57634e487b7160e01b600052600060045260246000fd5b30600052607381538281f3fe73000000000000000000000000000000000000000030146080604052600436106101625760003560e01c8063a5eb31ee116100cd578063d1ffb56111610086578063d1ffb561146103fb578063d442584f1461042b578063e004139614610454578063f1142fb314610474578063f647f8fb14610487578063f83b670f146104b257600080fd5b8063a5eb31ee14610344578063a8d8f00f1461036b578063b5cdf92414610396578063b63711df146103a9578063be8b3430146103bc578063c29616bd146103cf57600080fd5b80635ef849301161011f5780635ef8493014610241578063913c97b41461026b57806397e6175c1461029f57806399dd9bd7146102cb5780639ae4c3d1146102ec5780639cee499e1461031857600080fd5b8063042aa0841461016757806305d3bb74146101985780631a7431ef146101c0578063235266d2146101e357806348137709146101f65780634d66a2ae1461021b575b600080fd5b61017a610175366004610ec0565b6104de565b6040516001600160d01b031990911681526020015b60405180910390f35b6101ab6101a6366004610ec0565b610540565b60405163ffffffff909116815260200161018f565b6101d36101ce366004610f05565b61059d565b604051901515815260200161018f565b6101d36101f1366004610f4c565b610652565b610209610204366004610ec0565b6106b5565b60405160ff909116815260200161018f565b61022e610229366004610fa6565b610711565b60405161ffff909116815260200161018f565b61025461024f366004610ec0565b61071e565b60405165ffffffffffff909116815260200161018f565b61027e610279366004610ec0565b610772565b6040516fffffffffffffffffffffffffffffffff909116815260200161018f565b6102b26102ad366004610ec0565b6107d0565b6040516001600160a01b0319909116815260200161018f565b6102de6102d9366004610ec0565b61082e565b60405190815260200161018f565b6102ff6102fa366004610ec0565b61088c565b60405167ffffffffffffffff909116815260200161018f565b61032b610326366004610ec0565b6108e9565b6040516001600160d81b0319909116815260200161018f565b610357610352366004610ec0565b610946565b60405162ffffff909116815260200161018f565b61037e610379366004610ec0565b6109a3565b60405166ffffffffffffff909116815260200161018f565b6102de6103a4366004610ec0565b610a00565b6102ff6103b7366004610ec0565b610a55565b61022e6103ca366004610ec0565b610aa9565b6103e26103dd366004610ec0565b610b06565b6040516001600160c81b0319909116815260200161018f565b61040e610409366004610ec0565b610b5a565b6040516bffffffffffffffffffffffff909116815260200161018f565b61043e610439366004610ec0565b610bae565b60405164ffffffffff909116815260200161018f565b610467610462366004610fe3565b610c02565b60405161018f9190611031565b6102b2610482366004610ec0565b610d0f565b61049a610495366004610ec0565b610d64565b6040516001600160a01b03909116815260200161018f565b6104c56104c0366004610ec0565b610dc9565b6040516001600160f81b0319909116815260200161018f565b60006104eb82600661107f565b835110156105375760405162461bcd60e51b8152602060048201526014602482015273746f4279746573365f6f75744f66426f756e647360601b60448201526064015b60405180910390fd5b50016006015190565b600061054d82600461107f565b835110156105945760405162461bcd60e51b8152602060048201526014602482015273746f55696e7433325f6f75744f66426f756e647360601b604482015260640161052e565b50016004015190565b600080600190508354600260018083161561010002038216048451808214600181146105cc5760009450610644565b821561064457602083106001811461062957600189600052602060002060208a018581015b600284828410010361062057815183541461060f5760009950600093505b6001830192506020820191506105f1565b50505050610642565b6101008086040294506020880151851461064257600095505b505b509293505050505b92915050565b81518151600091600191811480831461066e57600092506106ab565b600160208701838101602088015b60028483851001036106a657805183511461069a5760009650600093505b6020928301920161067c565b505050505b5090949350505050565b60006106c282600161107f565b835110156107085760405162461bcd60e51b8152602060048201526013602482015272746f55696e74385f6f75744f66426f756e647360681b604482015260640161052e565b50016001015190565b600061064c826000610aa9565b600061072b82600661107f565b835110156105375760405162461bcd60e51b8152602060048201526014602482015273746f55696e7434385f6f75744f66426f756e647360601b604482015260640161052e565b600061077f82601061107f565b835110156107c75760405162461bcd60e51b8152602060048201526015602482015274746f55696e743132385f6f75744f66426f756e647360581b604482015260640161052e565b50016010015190565b60006107dd82600c61107f565b835110156108255760405162461bcd60e51b8152602060048201526015602482015274746f427974657331325f6f75744f66426f756e647360581b604482015260640161052e565b5001600c015190565b600061083b82602061107f565b835110156108835760405162461bcd60e51b8152602060048201526015602482015274746f427974657333325f6f75744f66426f756e647360581b604482015260640161052e565b50016020015190565b600061089982600861107f565b835110156108e05760405162461bcd60e51b8152602060048201526014602482015273746f55696e7436345f6f75744f66426f756e647360601b604482015260640161052e565b50016008015190565b60006108f682600561107f565b8351101561093d5760405162461bcd60e51b8152602060048201526014602482015273746f4279746573355f6f75744f66426f756e647360601b604482015260640161052e565b50016005015190565b600061095382600361107f565b8351101561099a5760405162461bcd60e51b8152602060048201526014602482015273746f55696e7432345f6f75744f66426f756e647360601b604482015260640161052e565b50016003015190565b60006109b082600761107f565b835110156109f75760405162461bcd60e51b8152602060048201526014602482015273746f55696e7435365f6f75744f66426f756e647360601b604482015260640161052e565b50016007015190565b6000610a0d82602061107f565b835110156108835760405162461bcd60e51b8152602060048201526015602482015274746f55696e743235365f6f75744f66426f756e647360581b604482015260640161052e565b6000610a6282600861107f565b835110156108e05760405162461bcd60e51b8152602060048201526014602482015273746f4279746573385f6f75744f66426f756e647360601b604482015260640161052e565b6000610ab682600261107f565b83511015610afd5760405162461bcd60e51b8152602060048201526014602482015273746f55696e7431365f6f75744f66426f756e647360601b604482015260640161052e565b50016002015190565b6000610b1382600761107f565b835110156109f75760405162461bcd60e51b8152602060048201526014602482015273746f4279746573375f6f75744f66426f756e647360601b604482015260640161052e565b6000610b6782600c61107f565b835110156108255760405162461bcd60e51b8152602060048201526014602482015273746f55696e7439365f6f75744f66426f756e647360601b604482015260640161052e565b6000610bbb82600561107f565b8351101561093d5760405162461bcd60e51b8152602060048201526014602482015273746f55696e7434305f6f75744f66426f756e647360601b604482015260640161052e565b606081610c1081601f61107f565b1015610c4f5760405162461bcd60e51b815260206004820152600e60248201526d736c6963655f6f766572666c6f7760901b604482015260640161052e565b610c59828461107f565b84511015610c9d5760405162461bcd60e51b8152602060048201526011602482015270736c6963655f6f75744f66426f756e647360781b604482015260640161052e565b606082158015610cbc5760405191506000825260208201604052610d06565b6040519150601f8416801560200281840101858101878315602002848b0101015b81831015610cf5578051835260209283019201610cdd565b5050858452601f01601f1916604052505b50949350505050565b6000610d1c82601061107f565b835110156107c75760405162461bcd60e51b8152602060048201526015602482015274746f427974657331365f6f75744f66426f756e647360581b604482015260640161052e565b6000610d7182601461107f565b83511015610db95760405162461bcd60e51b8152602060048201526015602482015274746f416464726573735f6f75744f66426f756e647360581b604482015260640161052e565b500160200151600160601b900490565b6000610dd682600161107f565b835110156107085760405162461bcd60e51b8152602060048201526014602482015273746f4279746573315f6f75744f66426f756e647360601b604482015260640161052e565b634e487b7160e01b600052604160045260246000fd5b600082601f830112610e4457600080fd5b813567ffffffffffffffff80821115610e5f57610e5f610e1d565b604051601f8301601f19908116603f01168101908282118183101715610e8757610e87610e1d565b81604052838152866020858801011115610ea057600080fd5b836020870160208301376000602085830101528094505050505092915050565b60008060408385031215610ed357600080fd5b823567ffffffffffffffff811115610eea57600080fd5b610ef685828601610e33565b95602094909401359450505050565b60008060408385031215610f1857600080fd5b82359150602083013567ffffffffffffffff811115610f3657600080fd5b610f4285828601610e33565b9150509250929050565b60008060408385031215610f5f57600080fd5b823567ffffffffffffffff80821115610f7757600080fd5b610f8386838701610e33565b93506020850135915080821115610f9957600080fd5b50610f4285828601610e33565b600060208284031215610fb857600080fd5b813567ffffffffffffffff811115610fcf57600080fd5b610fdb84828501610e33565b949350505050565b600080600060608486031215610ff857600080fd5b833567ffffffffffffffff81111561100f57600080fd5b61101b86828701610e33565b9660208601359650604090950135949350505050565b600060208083528351808285015260005b8181101561105e57858101830151858201604001528201611042565b506000604082860101526040601f19601f8301168501019250505092915050565b8082018082111561064c57634e487b7160e01b600052601160045260246000fdfea26469706673582212205bdf5bc4551862519f5370e0dcec38eefbbbe11b6a5bf19ce2846b4f8831a5dc64736f6c63430008110033", + "nonce": "0x0" + }, + "additionalContracts": [], + "isFixedGasLimit": false + }, + { + "hash": "0x000128fbbcf1ce04facb50cb06b25514ad5927f52ec5b5b497f9cc8acff8a383", + "transactionType": "CREATE", + "contractName": "MultiSendCallOnly", + "contractAddress": "0xe7f1725E7734CE288F8367e1Bb143E90bb3F0512", + "function": null, + "arguments": null, + "transaction": { + "type": "0x00", + "from": "0xf39fd6e51aad88f6f4ce6ab8827279cfffb92266", + "gas": "0x2e5c4", + "value": "0x0", + "data": "0x608060405234801561001057600080fd5b506101ae806100206000396000f3fe60806040526004361061001e5760003560e01c80638d80ff0a14610023575b600080fd5b6100366100313660046100c7565b610038565b005b805160205b818110156100ac578083015160f81c6001820184015160601c601583018501516035840186015160558501870160008560008114610082576001811461001e5761008e565b6000808585888a5af191505b508061009957600080fd5b505080605501850194505050505061003d565b505050565b634e487b7160e01b600052604160045260246000fd5b6000602082840312156100d957600080fd5b813567ffffffffffffffff808211156100f157600080fd5b818401915084601f83011261010557600080fd5b813581811115610117576101176100b1565b604051601f8201601f19908116603f0116810190838211818310171561013f5761013f6100b1565b8160405282815287602084870101111561015857600080fd5b82602086016020830137600092810160200192909252509594505050505056fea2646970667358221220c15490bbb756a4c3c49d6335b2e81d2d098647b0ea70174c2279f199b1d0800364736f6c63430008110033", + "nonce": "0x1" + }, + "additionalContracts": [], + "isFixedGasLimit": false + }, + { + "hash": "0x027230bd60128347bd04e3fa2055be2e2ba4fcd489e1ac59cc7d43bbceab7797", + "transactionType": "CREATE", + "contractName": "BasicCellRenderer", + "contractAddress": "0x9fE46736679d2D9a65F0992F2272dE9f3c7fa6e0", + "function": null, + "arguments": null, + "transaction": { + "type": "0x00", + "from": "0xf39fd6e51aad88f6f4ce6ab8827279cfffb92266", + "gas": "0x3180ad", + "value": "0x0", + "data": "0x608060405234801561001057600080fd5b50612c25806100206000396000f3fe608060405234801561001057600080fd5b50600436106100365760003560e01c806306d4cd8b1461003b57806328de0f2f14610064575b600080fd5b61004e610049366004610322565b610077565b60405161005b919061038b565b60405180910390f35b61004e610072366004610404565b6100f1565b60606000610086600f846104fc565b90506000610095600f8361051e565b61009f9085610535565b905060006100ae826041610548565b60f81b9050806100c76100c2856001610548565b6101b6565b6040516020016100d8929190610577565b6040516020818303038152906040529350505050919050565b606060006100fe86610077565b905083838261018388735fbdb2315678afecb367f032d93f642f64180aa363b5cdf924909160006040518363ffffffff1660e01b81526004016101429291906105a8565b602060405180830381865af415801561015f573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906100c291906105ca565b87878660405160200161019c97969594939291906105f2565b604051602081830303815290604052915050949350505050565b606060006101c383610249565b600101905060008167ffffffffffffffff8111156101e3576101e36103a5565b6040519080825280601f01601f19166020018201604052801561020d576020820181803683370190505b5090508181016020015b600019016f181899199a1a9b1b9c1cb0b131b232b360811b600a86061a8153600a850494508461021757509392505050565b60008072184f03e93ff9f4daa797ed6e38ed64bf6a1f0160401b83106102885772184f03e93ff9f4daa797ed6e38ed64bf6a1f0160401b830492506040015b6d04ee2d6d415b85acef810000000083106102b4576d04ee2d6d415b85acef8100000000830492506020015b662386f26fc1000083106102d257662386f26fc10000830492506010015b6305f5e10083106102ea576305f5e100830492506008015b61271083106102fe57612710830492506004015b60648310610310576064830492506002015b600a831061031c576001015b92915050565b60006020828403121561033457600080fd5b5035919050565b60005b8381101561035657818101518382015260200161033e565b50506000910152565b6000815180845261037781602086016020860161033b565b601f01601f19169290920160200192915050565b60208152600061039e602083018461035f565b9392505050565b634e487b7160e01b600052604160045260246000fd5b60008083601f8401126103cd57600080fd5b50813567ffffffffffffffff8111156103e557600080fd5b6020830191508360208285010111156103fd57600080fd5b9250929050565b6000806000806060858703121561041a57600080fd5b84359350602085013567ffffffffffffffff8082111561043957600080fd5b818701915087601f83011261044d57600080fd5b81358181111561045f5761045f6103a5565b604051601f8201601f19908116603f01168101908382118183101715610487576104876103a5565b816040528281528a60208487010111156104a057600080fd5b8260208601602083013760006020848301015280975050505060408701359150808211156104cd57600080fd5b506104da878288016103bb565b95989497509550505050565b634e487b7160e01b600052601160045260246000fd5b60008261051957634e487b7160e01b600052601260045260246000fd5b500490565b808202811582820484141761031c5761031c6104e6565b8181038181111561031c5761031c6104e6565b8082018082111561031c5761031c6104e6565b6000815161056d81856020860161033b565b9290920192915050565b6001600160f81b031983168152815160009061059a81600185016020870161033b565b919091016001019392505050565b6040815260006105bb604083018561035f565b90508260208301529392505050565b6000602082840312156105dc57600080fd5b5051919050565b81818437506000910190815290565b7f646174613a6170706c69636174696f6e2f6a736f6e2c7b22646573637269707481527f696f6e223a2022537461726b7368656574222c20226e616d65223a202200000060208201528688603d8301376000878201602160f81b603d820152875161066481603e840160208c0161033b565b7f222c22696d616765223a2022646174613a696d6167652f7376672b786d6c2c25603e92909101918201527f334373766725323076696577426f782533442532373025323030253230383925605e8201527f3230353525323725323066696c6c2533442532376e6f6e65253237253230786d607e8201527f6c6e73253344253237687474702533412f2f7777772e77332e6f72672f323030609e8201527f302f737667253237253345253343646566732533452533437374796c6525334560be8201527f253430666f6e742d66616365253230253742666f6e742d66616d696c7925334160de8201527f253230253237507265737325323053746172742532303250253237253342737260fe8201527f6325334125323075726c25323825323764617461253341666f6e742f776f666661011e8201527f32253342626173653634253243643039474d6741424141414141424c3841413861013e8201527f41414141415235774141424b674141454141414141414141414141414141414161015e8201527f4141414141414141414141414150305a4756453063476a41624d42794358675a61017e8201527f6741494e794551674b3846545361517544524141424e67496b41344e4d42434161019e8201527f46687a5148684649623644566c42306a314f4d4253336f4f4953744562732f2f6101be8201527f2f6c4a776356727a47634f30676f684c45484d6369694443434e57695a6761306101de8201527f79625345555954514f6a4b427038546c737a7344526438716174586c333058746101fe8201527f30645a47467952305668444b776c62746c25324272734643773945316e64655961021e8201527f4a74732f37527762305673784d71576c636a6a775445537a2f5568752f77337361023e8201527f33746b6f496d70343464515168576f456d54337579526d70746f7553446b7a5761025e8201527f454138762f3932364a4b7539486f696e6e3673376674336d4965476c7737547161027e8201527f6437456f326a46517849766a5642494a70563269614f62547a68575932314e7461029e8201527f476772687434704d4b3457556a34624c7967542f51253242514c7879253242336102be8201527f6c482f362f6b6275496444497239446a724a496a6f394a7336524d58253242456102de8201527f6b37424f545a6b6d70397a347455524652566656307148504448375a7462364a6102fe8201527f616f6130684c335975616232473373667a72365776394536793569767025324261031e8201527f7135564c74426a514478476f5345304150313762336466376c61726a6525324261033e8201527f73637a6b7241744a334b6657304a342532424b323365744b4b556a383554616f61035e8201527f57473453346158436c427743413268676141652532423658396f696e32304e6261037e8201527f554a7264466767517049686d5247494d30372f7025324277375a7058316c473161039e8201527f6a6a51787073435141423438714445415042346950312f6a39592f4261686a356103be8201527f5943414e302f78714157496852616a6c6e694e654f50396e78433466667932556103de8201527f694843304e47386b686f6f567a6f7459334445417a417a41356b473735337a6a6103fe8201527f4853354d6e6d586b69496a6d54554d36556d4d3025324256346976752f48377861041e8201527f6a364666322f6b343472787a6449324141676742492f4c48416b394a7a35554d61043e8201527f496f4c7755344146455435725a464f33444d616655633061777351434879497061045e8201527f557a546b30784a474a454f6a4e6871436b474570496153474f6a714e466d2f5761047e8201527f4e434e3569636b71434d6e414165564c4d4c655867356971386b365752585a5261049e8201527f326c337042393831427a73475a743225324256696c4342723954494a674b67786104be8201527f365542514446253242566a4b44714e7741414948386a6949664d6e75384b68666104de8201527f584b486f4e3348634134477245786842324155442f795a554d423857547579496104fe8201527f413444634f4b656434397939504249616e426967734d454e38556b30766c547661051e8201527f304a58334e394d795a75544d763573655357413525324238556538504465547261053e8201527f645467474973566d4e33635856586a6463795275633434385866664176506e7361055e8201527f3575324d4531722532426a4731703137767a3849704f416e483444427367793361057e8201527f512f54376b33646d2f3846334232377355694877464631414f6c683055646e4961059e8201527f4471494e5164506355393145786f2f346252696a6a5169704e4e307a4c646c7a6105be8201527f504438496f547449734c38717162746f4f5149514a5a567849705931315073536105de8201527f55533231397a4c585066642f507667765751346372464d2532425769755671706105fe8201527f645a6f4e6475645872632f4745324d4a36656e3575635746694763375274364f61061e8201527f487676354d674c2532427a44733578444277696141315433554877326b63594361063e8201527f312f55666453316645316d37763742346537653350574848786533594f32483561065e8201527f25324241504f5a7965503025324251506553425468793078713965363241486a61067e8201527f6141556842432f364144484c6f476f4f657636412532426867487369317a613861069e8201527f71355a4e4d716a596c575a4d713867354248445574495370574a73526f52544a6106be8201527f56613049305a3957546b5371564b73507a3464586a7648746449684c6e7670746106de8201527f554c4330753542567579414d544b4a513930594b5267546e5769476b6d7153456106fe8201527f714b6d7256685259674b6b335443686255573671456f45637665577a6859535461071e8201527f4c32484e706735452f6d7151393956564467763352475435586d33637a68754c61073e8201527f3972685864316132372f736c5130686959366a643739614f5a43746a6f52687261075e8201527f623136575676514b725734477a786a7869723238494d697a2f7155447973495761077e8201527f7037516a667765347a556437614a735651575179524c554b484b42577938577661079e8201527f45565333584d53353656337757644f442532424638757639645477496d4b722f6107be8201527f5064626d5763775176456641616a7975566a70784e32704f56635769336c38776107de8201527f454c2f6d395070646f55494536253242504b5838315041546d67654f304231736107fe8201527f47454825324261707a353466646d534a7a333741686635366a4c7739756e504561081e8201527f35644d4b3025324237544639563843435466523979664e7355493474557a464661083e8201527f42326e536e384b4f626a64446964554c7034494a6873777878595172595a643661085e8201527f4e76436e55394d445825324252654c6e4d546d6c315a453972306b5077334e3261087e8201527f6752253242736a4573596d4953706b356c31497333594e614a4b6f6e7a65703761089e8201527f56637354316e556b62347048774b5a41796b614b6f43504630506f6d456876496108be8201527f5758656e6f5a767836774f4b313070316c3274546858793850316555776473766108de8201527f53715157766f424d7473674851554a614774494273756861776450545a5378596108fe8201527f707257757734647a7231564755744449465871726f4d4d69597346783857695461091e8201527f336463574b6f376d50554c79715657413972305974524a4c626957766a6e4c2561093e8201527f324272633452646767624e516c514141613264306d616236364d48447074314361095e8201527f6477626b51436253375053445a4d7a3746724f51713165636153304a6c74644161097e8201527f6c44527941587173364130586247707748676b70367572557757416272464d3361099e8201527f75794d764e4b6c344d6c435548537950416d3931776144454a3559595148754a6109be8201527f4d32304b575251737637486b61334770686c533258444b714f4b4245554753316109de8201527f65306b63316f323449494166486c4449794278584a4a656767423369386174566109fe8201527f67434f3064444f5a484a57596a564c416a6a397137765673456e72684b374568610a1e8201527f4c75427a42586d4d674554634531636d61436976504b6f4a766670466c794935610a3e8201527f4d70584234454325324245672f596d303454787843354e6c73596b74646f5951610a5e8201527f55656c38624673456c3748345a36734377622f38626b347458574658504b6a71610a7e8201527f5462526e64336e4c5770394f784941706c664b586747684e6c72443462354a4c610a9e8201527f5a367055753441726756614d366561357844574244476f7a707a4641376e6747610abe8201527f74596334486141775269475576637653653652414177335a576b564f4667764b610ade8201527f46364955696c4d49394964715155345134585264484866736666517770313955610afe8201527f434a49306a5773725433356f5578303678507268473271364d4533554f306c63610b1e8201527f635a557354454351784a44527854444b6c334c4948722f6162546f73686c6466610b3e8201527f51786a364f57745273466e6966444373473674336b426f344e6d424a6d615556610b5e8201527f54636c794951414a4c6a6e723042365a3859464d6e396b397967703752727848610b7e8201527f36766877624a4e41654b4d554436353974386746514a4d5377652f434f624850610b9e8201527f467671484746554e5266253242737245663354584b42725a76676b6369396972610bbe8201527f426d63442f7458616754474358634e68432532424f3539754c706e6673796f71610bde8201527f4c53313238374552776d38666165564f6d3857634437386c5a36594232793938610bfe8201527f5a4c6c4d3972557264324c514e6c324956643454727376675139363079377573610c1e8201527f5965306854506170576a71726c2532425837784665424e54253242315a644a4a610c3e8201527f572532424678745737584e7774634e7a7761672532425256656a6d4a6839656d610c5e8201527f6c495a4b69694e63694b3849554f4d33556a4a376342554e5847505853326c68610c7e8201527f253242687770676f4836567348524f63764569723372585970344c7769435a77610c9e8201527f3176486c43623552314d68623564536e4f326d6e6f475a6f5846315765574757610cbe8201527f6d7a694a314a555534715072306e694a536c4e424331636b4b6d4a6657625877610cde8201527f5577757449547a456d6a776770776142753464525066746a2f4e384143526e64610cfe8201527f616b2f4641674b674c37305058577839767a6b59322532426d34355473496b4c610d1e8201527f3037616f70444e6f676830535262535a534f397a744657516a376e574c676275610d3e8201527f364325324254374b6a44715a3667456e5277674d78306b4c5a77797962514f76610d5e8201527f514130773054782f354a42722f63595a6453574f546a774446364e6f586b796a610d7e8201527f33566a484e4751494e76426a5a734a4a3377466141516d6f5a575a5970416961610d9e8201527f574f466e6e686455524176576b557a77693062677a5a4158796f445545714863610dbe8201527f57307069454c574f777168773365765478444957724e32495371525151454c41610dde8201527f4d32365334486c723548552f48784a43436844424a6b756b6341573856415430610dfe8201527f6770545a544b4e48677a444f7234314751656a4f34677a416e6b577077464752610e1e8201527f43334c625231787a4b434875365635694674674c704f384b51596d5965467868610e3e8201527f4c32643838736469506a2f76306b427a636c51637954735766324d6445394944610e5e8201527f386d5858576a72434b253242354532756e336e6976656973526e726971317548610e7e8201527f594d6a6a69694945304b6466674d6f3163476d6b557254624f30356732737633610e9e8201527f477673525971762f61457736375472644f705435567a4641364131417939634b610ebe8201527f6f44667762544a64445750524e57517354796a6d3772486249734b466b6f4f2f610ede8201527f5a4c4376735966785973337768534338614c49344b765677373773336e347a48610efe8201527f67697061634a6e435362463945727a53357069386343577655597a4f5064327a610f1e8201527f684a2f4750437a53684f453378596c634f3350796164586a54334f6b68706841610f3e8201527f58465853766865544e5355525446565641486f4a6d7949726b6a454b6f517746610f5e8201527f4730303554334158643935764e30446d336d427332786746546c253242513572610f7e8201527f73416a6e744768707a6f62643642374e7a52664e56653130446f4e5639343753610f9e8201527f59646f635252624776636d785456786f61367a717756376d416e773544314745610fbe8201527f5474327a48382532425476514256356e37672f32615768743979794e594c3974610fde8201527f4f42744167384846435945316d4e775432454232467538544968543776565241610ffe8201527f3461587a6e6b3670545a4e6779696f73747749364b654655374c696c7041253261101e8201527f42334234474a794277574d327062466a4876734a3747754f6f616b6a6d46746a61103e8201527f59344c6254396c323239253242453646374c4475577a744c6e333749786b386a61105e8201527f356c42564b33774c7369362f416641756f6a34396c4d6b5653545045396b704761107e8201527f64304c724555534a4941413070596c4178414d642f4e4f46776f4a446458466961109e8201527f307a4f5744422f54464a705666575642574f516274724a556230636c663369256110be8201527f3242575072446f596c65545674564f45306d36793564487444725551776f414c6110de8201527f7455523365585364444d4e785866656a594674764c626c726c4a7777484b2f456110fe8201527f6957504a616b32574b35386e684e6f4c6a615a55475841756f32656f5777464561111e8201527f66612f445334496958717246714779633348726939785132693243352f73357661113e8201527f7a424d30793777334d4473774d3759325247427172464d6778374f696325324261115e8201527f30497a736d5678617a5473305263666a324f3334532f525639503269486f427561117e8201527f6c4b49594244665a46654c53356439725379664a64536c67683268644d72324f61119e8201527f5552334b6e6c506e4f41785477314a384c4d325a776e4671765a745a4a6c78786111be8201527f343873776243743272316b664875443756624831326159383849437456734b786111de8201527f4b742f31726b616c42414d74782f6f6f6d43445059626b556f4c6344624b436a6111fe8201527f7675713953544467746a584744715735564b36686347654f46697a6a3643714c61121e8201527f4f49716b57783477733245504d444e7378253242613661533230384f39784c3061123e8201527f526146586f394241645530706e452532424c695359334b536f4a41525978646e61125e8201527f7a69545a4d706961442f3438496969393834446151357976656378414673735761127e8201527f792f686274696d63253242704c386b35796f70496d4a627948712f6138797a6c61129e8201527f6c37726f4f7a586d786d4163337459585363546b65734d6344324939315a36336112be8201527f6549312f394a627755716b36737863394b52677277574d414e6543314e6e39756112de8201527f4779775473706d5538712532426c5a6d43714d674153363662674841476a514b6112fe8201527f73754a334451416a5235346d356a4c7a5a616e546c62646530253242726e663461131e8201527f385a574138546c32673277414779427748516e3552322532424e6a726542677861133e8201527f626c734e46627554776d6862414a48737a2f72416f61764c4f34317874767a5961135e8201527f4768336e4c4a426b41506a7578424a445248333048426575385567436978464e61137e8201527f437951322f4b253242385157372f6530253242664f2532423436524e5730657961139e8201527f4c726f39446a5467704a4e4d3547385179306c54644f756d73773066715045696113be8201527f393646702532424830634d774e6f376a787a596d6e4e664d5a6d64506c7932706113de8201527f6f7132575065476d67507136474c78504e34536c4b486e7870624f69754c58516113fe8201527f75583155715031676a6f38426136536c55314f416d5267707a7531735444584a61141e8201527f50754d3338546f387130344c324e777970653837327777556741675a6c70386461143e8201527f6b5166397a38544d43624d6b596b3758484375333564375a5a41656f346b5a4b61145e8201527f68784953386945354c546a334c4f6976485a7268394a3870337a4c5a436a776361147e8201527f6970354452694b6e576e49664c33386b4a684d7452776a67553525324256726d61149e8201527f714b6c6739307a376a64732f4238444b646b464c76483353253242376f4838616114be8201527f6c445a6c626734533155583574434d445342324f364b756c7a41344b763067376114de8201527f314251643054464b7733685358696e62374e6c304258725873514e6376436b386114fe8201527f6d6f394f786965783559627a78564e2f6b3738336f48545a495777393079495a61151e8201527f777672697164475473586e54384965705437597946434f4a6741395a3042794961153e8201527f455956735478522f6b73616b324268376f4b767034766e695530364d57317a4261155e8201527f4672746568647a306b6b587951786a426d7965645636644d596545386146787461157e8201527f6575777355466136466c6c54446c716430707a525a77473663467266574d627061159e8201527f384738587a6a66624d253242354658657076356f457273696c363458783663376115be8201527f5841576275696d3666387347494d58666f334a6971476b703333376854536a676115de8201527f65636862364f42472f327a31376a6f6d4469476d253242476c623146553069656115fe8201527f6e7552796977654c576767447a6d4655765545556a5a6f377356544877684f4661161e8201527f504d6b4e737146423977796d6b45307639666d7477453854377135384e594f3761163e8201527f787534623833766e46766c35755378446c472532426b4f51675249644f346a6761165e8201527f7a786a53486a4b4c7332742f6c684f647771766131415744437072763344345361167e8201527f34523741625934544362664b4637744265363554343551347a7a49714433316161169e8201527f79797557716a692532424636585337535439483943314f342f694b366b4775766116be8201527f6b512f664e3537487837456533373435622f76766e2f62482f58253242392f256116de8201527f32426762656d684f416d49705576755157757344764b517578394a44564e734b6116fe8201527f673651636d6b73515341445530346347524c523768466f5a326337785545664761171e8201527f253242776b755459474d764c6a422f6550634936416847686e5735717a45416961173e8201527f4a586377564545775869654e70536c317a6a457253253242435325324248634c61175e8201527f6f52506d7661324d6767412f69794c67536f544a555767733442794149514f3061177e8201527f4f6f705a487656627a6844494c65557155677a7a48492f667950474e7879777361179e8201527f6f796c6865534639577662795363336b4544716b32415636436c4364635535536117be8201527f6e6c4e6e4963394b794d63384c79622532423867484f4a795173466c4c6250526117de8201527f796d6d374a42743349545a544162314732444252496b514b51705451396939626117fe8201527f3665435353387a4d366161525364544b5657524d336663454a4c644b61746e7361181e8201527f724959774e4a55253242733048364461757832775a35686733706c653042474861183e8201527f756b316b4543734859446461496d4b7025324233463542317859763763486b7161185e8201527f644475306a4b645273657a3531376d63563641685148346931484e3173766c6a61187e8201527f5248366845454672682532426e72726d47316e33307a4d346749776d694d774561189e8201527f624b6842545564423141486f582532424b6741517a4f48543946494f71436b526118be8201527f4e4e623273397170496943534f753167576868497343564a73765771457175356118de8201527f47624a514b4e6a61427465394c4f69676368414a7665475773394332323033766118fe8201527f6f6e476c6b77725251323464646732796345646157554456734441785548734961191e8201527f77773665615234464665336d4a416b66426d5a6452395264774a485a6d47645261193e8201527f7950436a706a627a31712f584a34534949446b66384b4b6e6e32456c4b6d794c61195e8201527f69573442513836733151554b2f76426867524e776548766c5968687a7238706361197e8201527f67704b4b6d6f61576a7036426b594f48446c7835734b5647336365474539657661199e8201527f506e773563646667454242676f554946536238587632504553314772446a78456119be8201527f69524b6b697846716a54704d6d544b6b693148726a7a354368517155717845716119de8201527f544c6c4b6c53715571314772547231476a527130717846717a62744f6e5347656119fe8201527f3668374a6d627a4968355a6544696c315a58536a7430774375616b336c6e476f611a1e8201527f5655506f53734e663337394b326a6274716d44674d69485a42665a6c68324839611a3e8201527f75773738495469314a466a585653662f4336634f55667a346f30644178305447611a5e8201527f777448446863666a3443516d49694531444d5a42546b6c4e5a557065566f614f611a7e8201527f6e717633733234314e50503965766574594768435a50576a4979747332706173611a9e8201527f436a25324270556a54596c336b615574374f744b4a6136355850396d356e6367611abe8201527f364e686a685a587032762532426d57724341545a754a303368316b6a55756976611ade8201527f5067596e6a6e35744b4a4f6b326e6362703251414559585a69304b496d50356b611afe8201527f744961466e366b5a397743253237253239253230666f726d6174253238253237611b1e8201527f776f666632253237253239253342666f6e742d7765696768742533412532306e611b3e8201527f6f726d616c253342666f6e742d7374796c652533412532306e6f726d616c2533611b5e8201527f42666f6e742d646973706c617925334125323073776170253342253744746578611b7e8201527f74253230253742666f6e742d66616d696c792533412532302532375072657373611b9e8201527f2532305374617274253230325025323725334266696c6c253341253230776869611bbe8201527f74652537442e76616c7565253230253742666f6e742d73697a65253341253230611bde8201527f313070782533422537442e6e616d65253230253742666f6e742d73697a652533611bfe8201527f412532303470782533422537442533432f7374796c652533452533432f646566611c1e8201527f7325334525334372656374253230776964746825334425323738392532372532611c3e8201527f30686569676874253344253237353525323725323066696c6c25334425323762611c5e8201527f6c61636b2532372532302f253345253343726563742532307825334425323735611c7e8201527f2e3525323725323079253344253237352e352532372532307769647468253344611c9e8201527f2532373738253237253230686569676874253344253237343425323725323066611cbe8201527f696c6c2533442532372532333030303046462532372532302f25334525334374611cde8201527f657874253230746578742d616e63686f722533442532376d6964646c65253237611cfe8201527f2532307825334425323734342e35253237253230792533442532373333253237611d1e8201527f253230636c61737325334425323776616c756525323725334500000000000000611d3e820152612ba5612b9e6129f5611d5784018a61055b565b7f2533432f746578742533452533437265637425323078253344253237352e352581527f323725323079253344253237352e35253237253230776964746825334425323760208201527f373825323725323068656967687425334425323734342532372532307374726f60408201527f6b652533442532372532334646344630412532372532307374726f6b652d776960608201527f647468253344253237332532372532302f25334525334372656374253230782560808201527f334425323733302532372532307925334425323734352e35253237253230776960a08201527f647468253344253237353825323725323068656967687425334425323738253260c08201527f3725323066696c6c2533442532372532334646344630412532372532302f253360e08201527f4525334374657874253230746578742d616e63686f72253344253237656e64256101008201527f32372532307825334425323738372532372532307925334425323735322532376101208201527f253230636c6173732533442532376e616d6525323725334500000000000000006101408201526101580190565b86886105e3565b602160f81b81529050612bbb600182018561055b565b7f2533432f746578742533452533432f737667253345227d00000000000000000081526017019a995050505050505050505056fea26469706673582212206a2c00c13ddb4f1bcd7ee36e36f0c874d7d9dadcf38306eab3610b5a6e7af83464736f6c63430008110033", + "nonce": "0x2" + }, + "additionalContracts": [], + "isFixedGasLimit": false + }, + { + "hash": "0x05c851c318f703ca1584f93726cae8b01fcd20b307c2a5add61a15b751a6cdab", + "transactionType": "CREATE", + "contractName": null, + "contractAddress": "0xCf7Ed3AccA5a467e9e704C703E8D87F634fB0Fc9", + "function": null, + "arguments": null, + "transaction": { + "type": "0x00", + "from": "0xf39fd6e51aad88f6f4ce6ab8827279cfffb92266", + "gas": "0x42230", + "value": "0x0", + "data": "0x608060405234801561001057600080fd5b506102cf806100206000396000f3fe608060405234801561001057600080fd5b506004361061004c5760003560e01c80630194db8e14610051578063072bdcc214610076578063a391c15b14610089578063b67d77c51461009c575b600080fd5b61006461005f366004610160565b6100af565b60405190815260200160405180910390f35b610064610084366004610160565b6100ef565b61006461009736600461021e565b610129565b6100646100aa36600461021e565b61013e565b600080805b83518110156100e8578381815181106100cf576100cf610240565b60200260200101518201915080806001019150506100b4565b5092915050565b60006001815b83518110156100e85783818151811061011057610110610240565b60200260200101518202915080806001019150506100f5565b60006101358284610256565b90505b92915050565b60006101358284610278565b634e487b7160e01b600052604160045260246000fd5b6000602080838503121561017357600080fd5b823567ffffffffffffffff8082111561018b57600080fd5b818501915085601f83011261019f57600080fd5b8135818111156101b1576101b161014a565b8060051b604051601f19603f830116810181811085821117156101d6576101d661014a565b6040529182528482019250838101850191888311156101f457600080fd5b938501935b82851015610212578435845293850193928501926101f9565b98975050505050505050565b6000806040838503121561023157600080fd5b50508035926020909101359150565b634e487b7160e01b600052603260045260246000fd5b60008261027357634e487b7160e01b600052601260045260246000fd5b500490565b8181038181111561013857634e487b7160e01b600052601160045260246000fdfea2646970667358221220fcdef23ba4219270ddb3ab764e22a87e229c05e6f1dfc4eeea983fa1a1dac91f64736f6c63430008110033", + "nonce": "0x3" + }, + "additionalContracts": [], + "isFixedGasLimit": false + }, + { + "hash": "0x0156ed37608a55ed8897ef8eb39ae382ec9b73dbe71b548c8f747ed4587eda48", + "transactionType": "CREATE", + "contractName": "Evmsheet", + "contractAddress": "0xDc64a140Aa3E981100a9becA4E685f962f0cF6C9", + "function": null, + "arguments": [ + "0x9fE46736679d2D9a65F0992F2272dE9f3c7fa6e0", + "10000000000000000" + ], + "transaction": { + "type": "0x00", + "from": "0xf39fd6e51aad88f6f4ce6ab8827279cfffb92266", + "gas": "0x34bf99", + "value": "0x0", + "data": "0x608060405234801561001057600080fd5b50604051612ed9380380612ed983398101604081905261002f916100b1565b61003833610061565b600280546001600160a01b0319166001600160a01b0393909316929092179091556001556100eb565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b600080604083850312156100c457600080fd5b82516001600160a01b03811681146100db57600080fd5b6020939093015192949293505050565b612ddf806100fa6000396000f3fe608060405260043610620000a95760003560e01c80638da5cb5b116200006c5780638da5cb5b146200016d578063ab2fa65a146200018d578063ae28505e14620001b4578063c56c4cf114620001d9578063f2fde38b14620001fb578063f52be2a2146200022057600080fd5b806303fb31e814620000ae5780631164c83d14620000d5578063145e414714620000ec5780635787cacb146200012e578063715018a61462000155575b600080fd5b348015620000bb57600080fd5b50620000d3620000cd36600462000778565b62000247565b005b620000d3620000e6366004620007e9565b62000273565b348015620000f957600080fd5b50620001116200010b36600462000864565b620004b2565b6040516001600160a01b0390911681526020015b60405180910390f35b3480156200013b57600080fd5b50620001466200054f565b60405162000125919062000891565b3480156200016257600080fd5b50620000d3620005b3565b3480156200017a57600080fd5b506000546001600160a01b031662000111565b3480156200019a57600080fd5b50620001a5620005cb565b604051620001259190620008e0565b348015620001c157600080fd5b5062000111620001d336600462000930565b620005f7565b348015620001e657600080fd5b5060025462000111906001600160a01b031681565b3480156200020857600080fd5b50620000d36200021a36600462000778565b62000622565b3480156200022d57600080fd5b506200023860015481565b60405190815260200162000125565b62000251620006a1565b600280546001600160a01b0319166001600160a01b0392909216919091179055565b60015434146200029d5760405163723a79e360e11b81523460048201526024015b60405180910390fd5b600060405180602001620002b1906200074d565b6020820181038252601f19601f8201166040525090506000828251602084016000f56002546040516356d3163d60e01b81526001600160a01b0391821660048201529192508216906356d3163d90602401600060405180830381600087803b1580156200031d57600080fd5b505af115801562000332573d6000803e3d6000fd5b505060405163c47f002760e01b81526001600160a01b038416925063c47f0027915062000366908a908a906004016200094a565b600060405180830381600087803b1580156200038157600080fd5b505af115801562000396573d6000803e3d6000fd5b5050604051635c26412360e11b81526001600160a01b038416925063b84c82469150620003ca90889088906004016200094a565b600060405180830381600087803b158015620003e557600080fd5b505af1158015620003fa573d6000803e3d6000fd5b505060405163f2fde38b60e01b81523260048201526001600160a01b038416925063f2fde38b9150602401600060405180830381600087803b1580156200044057600080fd5b505af115801562000455573d6000803e3d6000fd5b5050600380546001810182556000919091527fc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b0180546001600160a01b0319166001600160a01b0394909416939093179092555050505050505050565b600060ff60f81b838360405180602001620004cd906200074d565b6020820181038252601f19601f82011660405250805190602001206040516020016200053094939291906001600160f81b031994909416845260609290921b6bffffffffffffffffffffffff191660018401526015830152603582015260550190565b60408051601f1981840301815291905280516020909101209392505050565b60606003805480602002602001604051908101604052809291908181526020018280548015620005a957602002820191906000526020600020905b81546001600160a01b031681526001909101906020018083116200058a575b5050505050905090565b620005bd620006a1565b620005c96000620006fd565b565b606060405180602001620005df906200074d565b601f1982820381018352601f90910116604052919050565b600381815481106200060857600080fd5b6000918252602090912001546001600160a01b0316905081565b6200062c620006a1565b6001600160a01b038116620006935760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b606482015260840162000294565b6200069e81620006fd565b50565b6000546001600160a01b03163314620005c95760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015260640162000294565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b612430806200097a83390190565b80356001600160a01b03811681146200077357600080fd5b919050565b6000602082840312156200078b57600080fd5b62000796826200075b565b9392505050565b60008083601f840112620007b057600080fd5b50813567ffffffffffffffff811115620007c957600080fd5b602083019150836020828501011115620007e257600080fd5b9250929050565b6000806000806000606086880312156200080257600080fd5b853567ffffffffffffffff808211156200081b57600080fd5b6200082989838a016200079d565b909750955060208801359150808211156200084357600080fd5b5062000852888289016200079d565b96999598509660400135949350505050565b600080604083850312156200087857600080fd5b62000883836200075b565b946020939093013593505050565b6020808252825182820181905260009190848201906040850190845b81811015620008d45783516001600160a01b031683529284019291840191600101620008ad565b50909695505050505050565b600060208083528351808285015260005b818110156200090f57858101830151858201604001528201620008f1565b506000604082860101526040601f19601f8301168501019250505092915050565b6000602082840312156200094357600080fd5b5035919050565b60208152816020820152818360408301376000818301604090810191909152601f909201601f1916010191905056fe60806040523480156200001157600080fd5b50604051806040016040528060078152602001660536865657420360cc1b815250604051806040016040528060048152602001630534854360e41b81525062000069620000636200008f60201b60201c565b62000093565b600162000077838262000188565b50600262000086828262000188565b50505062000254565b3390565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b634e487b7160e01b600052604160045260246000fd5b600181811c908216806200010e57607f821691505b6020821081036200012f57634e487b7160e01b600052602260045260246000fd5b50919050565b601f8211156200018357600081815260208120601f850160051c810160208610156200015e5750805b601f850160051c820191505b818110156200017f578281556001016200016a565b5050505b505050565b81516001600160401b03811115620001a457620001a4620000e3565b620001bc81620001b58454620000f9565b8462000135565b602080601f831160018114620001f45760008415620001db5750858301515b600019600386901b1c1916600185901b1785556200017f565b600085815260208120601f198616915b82811015620002255788860151825594840194600190910190840162000204565b5085821015620002445787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b6121cc80620002646000396000f3fe608060405234801561001057600080fd5b50600436106102275760003560e01c8063715018a611610130578063b85d8b85116100b8578063cf0983981161007c578063cf09839814610512578063cfbe95d814610535578063df4ca20614610556578063e985e9c514610576578063f2fde38b146105a457600080fd5b8063b85d8b85146104a4578063b88d4fde146104ce578063b8c368ec146104e1578063c47f0027146104ec578063c87b56dd146104ff57600080fd5b806395d89b41116100ff57806395d89b4114610439578063a22cb46514610441578063b46ebb1214610454578063b6d658e114610467578063b84c82461461049157600080fd5b8063715018a6146103fa578063768d5029146104025780638ada6b0f146104155780638da5cb5b1461042857600080fd5b80631b06443c116101b35780634f6ccce7116101825780634f6ccce71461038157806356d3163d146103a15780636352211e146103b45780636a0abc74146103c757806370a08231146103e757600080fd5b80631b06443c14610335578063206848f61461034857806323b872dd1461035b57806342842e0e1461036e57600080fd5b8063081812fc116101fa578063081812fc146102a1578063095ea7b3146102e2578063172b9eed146102f757806318160ddd1461030a5780631941fd141461031357600080fd5b806301ffc9a71461022c57806302f3c4c91461025457806306fdde03146102745780630715a24a1461027c575b600080fd5b61023f61023a36600461176a565b6105b7565b60405190151581526020015b60405180910390f35b610267610262366004611861565b610609565b60405161024b9190611951565b610267610638565b6102936fffffffffffffffffffffffffffffffff81565b60405190815260200161024b565b6102ca6102af366004611964565b6005602052600090815260409020546001600160a01b031681565b6040516001600160a01b03909116815260200161024b565b6102f56102f036600461197d565b6106c6565b005b6102676103053660046119a9565b6107ad565b61029360075481565b610326610321366004611964565b610875565b60405161024b939291906119de565b6102ca610343366004611a0e565b61092a565b610326610356366004611964565b6109e3565b6102f5610369366004611a2b565b610ae1565b6102f561037c366004611a2b565b610ca8565b61029361038f366004611964565b60086020526000908152604090205481565b6102f56103af366004611a0e565b610da0565b6102ca6103c2366004611964565b610dca565b6103da6103d53660046119a9565b610e1c565b60405161024b9190611a6c565b6102936103f5366004611a0e565b610e60565b6102f5610ec3565b6102f5610410366004611af9565b610ed7565b6009546102ca906001600160a01b031681565b6000546001600160a01b03166102ca565b610267611035565b6102f561044f366004611b63565b611042565b610267610462366004611964565b6110ae565b61047a610475366004611964565b611258565b60408051921515835260208301919091520161024b565b6102f561049f366004611ba1565b611275565b6104b56104b2366004611964565b90565b6040516001600160e01b0319909116815260200161024b565b6102f56104dc366004611be3565b6112c6565b6102ca600160801b81565b6102f56104fa366004611ba1565b6113ae565b61026761050d366004611964565b6113ff565b61023f610520366004611a0e565b600160801b6001600160a01b03919091161090565b61023f610543366004611861565b516001600160a01b0316600160801b1490565b610569610564366004611964565b6114c9565b60405161024b9190611c16565b61023f610584366004611c4d565b600660209081526000928352604080842090915290825290205460ff1681565b6102f56105b2366004611a0e565b611526565b60006301ffc9a760e01b6001600160e01b0319831614806105e857506380ac58cd60e01b6001600160e01b03198316145b806106035750635b5e139f60e01b6001600160e01b03198316145b92915050565b6060816020015160405160200161062291815260200190565b6040516020818303038152906040529050919050565b6001805461064590611c7b565b80601f016020809104026020016040519081016040528092919081815260200182805461067190611c7b565b80156106be5780601f10610693576101008083540402835291602001916106be565b820191906000526020600020905b8154815290600101906020018083116106a157829003601f168201915b505050505081565b6000818152600360205260409020546001600160a01b03163381148061070f57506001600160a01b038116600090815260066020908152604080832033845290915290205460ff165b6107515760405162461bcd60e51b815260206004820152600e60248201526d1393d517d055551213d49256915160921b60448201526064015b60405180910390fd5b60008281526005602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b606060006107ba83610e1c565b9050606060005b825181101561086d576000806107ef8584815181106107e2576107e2611cb5565b6020026020010151611258565b9150915081156108335783610803826110ae565b61080c90611ccb565b60405160200161081d929190611cef565b6040516020818303038152906040529350610858565b6040516108469085908390602001611cef565b60405160208183030381529060405293505b5050808061086590611d27565b9150506107c1565b509392505050565b600a602052600090815260409020805460018201546002830180546001600160a01b039093169391926108a790611c7b565b80601f01602080910402602001604051908101604052809291908181526020018280546108d390611c7b565b80156109205780601f106108f557610100808354040283529160200191610920565b820191906000526020600020905b81548152906001019060200180831161090357829003601f168201915b5050505050905083565b6000600160801b6001600160a01b03831610156109da576000610955836001600160a01b03166110ae565b604051632d737e4960e21b8152909150735fbdb2315678afecb367f032d93f642f64180aa39063b5cdf92490610992908490600090600401611d40565b602060405180830381865af41580156109af573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906109d39190611d62565b9392505050565b5090565b919050565b60008181526003602052604081205481906060906001600160a01b0316610a1057600160801b9250610a2b565b6000848152600a60205260409020546001600160a01b031692505b6000848152600a60205260409020600181015460029091018054859291908190610a5490611c7b565b80601f0160208091040260200160405190810160405280929190818152602001828054610a8090611c7b565b8015610acd5780601f10610aa257610100808354040283529160200191610acd565b820191906000526020600020905b815481529060010190602001808311610ab057829003601f168201915b505050505090509250925092509193909250565b6000818152600360205260409020546001600160a01b03848116911614610b375760405162461bcd60e51b815260206004820152600a60248201526957524f4e475f46524f4d60b01b6044820152606401610748565b6001600160a01b038216610b815760405162461bcd60e51b81526020600482015260116024820152701253959053125117d49150d25412515395607a1b6044820152606401610748565b336001600160a01b0384161480610bbb57506001600160a01b038316600090815260066020908152604080832033845290915290205460ff165b80610bdc57506000818152600560205260409020546001600160a01b031633145b610c195760405162461bcd60e51b815260206004820152600e60248201526d1393d517d055551213d49256915160921b6044820152606401610748565b6001600160a01b0380841660008181526004602090815260408083208054600019019055938616808352848320805460010190558583526003825284832080546001600160a01b03199081168317909155600590925284832080549092169091559251849392917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b610cb3838383610ae1565b6001600160a01b0382163b1580610d5c5750604051630a85bd0160e11b8082523360048301526001600160a01b03858116602484015260448301849052608060648401526000608484015290919084169063150b7a029060a4016020604051808303816000875af1158015610d2c573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610d509190611d7b565b6001600160e01b031916145b610d9b5760405162461bcd60e51b815260206004820152601060248201526f155394d0519157d49150d2541251539560821b6044820152606401610748565b505050565b610da861159f565b600980546001600160a01b0319166001600160a01b0392909216919091179055565b6000818152600360205260409020546001600160a01b0316806109de5760405162461bcd60e51b815260206004820152600a6024820152691393d517d3525395115160b21b6044820152606401610748565b60608082516040519150602081048252602082016020850160005b83811015610e4f578181015183820152602001610e37565b505050810160200160405292915050565b60006001600160a01b038216610ea75760405162461bcd60e51b815260206004820152600c60248201526b5a45524f5f4144445245535360a01b6044820152606401610748565b506001600160a01b031660009081526004602052604090205490565b610ecb61159f565b610ed560006115f9565b565b6000858152600360205260409020546001600160a01b0316610f2f57610efd3286611649565b60078054600090815260086020526040812087905581546001929190610f24908490611d98565b90915550610f889050565b6000858152600360205260409020546001600160a01b03163214610f8857600085815260036020526040908190205490516324f3f02560e21b81526001600160a01b039091166004820152326024820152604401610748565b6040518060600160405280856001600160a01b0316815260200184815260200183838080601f0160208091040260200160405190810160405280939291908181526020018383808284376000920182905250939094525050878152600a6020908152604091829020845181546001600160a01b0319166001600160a01b0390911617815590840151600182015590830151909150600282019061102b9082611df9565b5050505050505050565b6002805461064590611c7b565b3360008181526006602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b6000818152600a6020908152604080832081516060818101845282546001600160a01b0316825260018301549482019490945260028201805494959491938401916110f890611c7b565b80601f016020809104026020016040519081016040528092919081815260200182805461112490611c7b565b80156111715780601f1061114657610100808354040283529160200191611171565b820191906000526020600020905b81548152906001019060200180831161115457829003601f168201915b505050505081525050905061119381516001600160a01b0316600160801b1490565b156111a1576109d381610609565b60006111b0826000015161092a565b905060006111bf836020015190565b905060006111d084604001516107ad565b90506000836001600160a01b031683836040516020016111f1929190611eb9565b60408051601f198184030181529082905261120b91611eea565b600060405180830381855afa9150503d8060008114611246576040519150601f19603f3d011682016040523d82523d6000602084013e61124b565b606091505b5098975050505050505050565b600080611266600284611f06565b60019081149493901c92915050565b61127d61159f565b7f8dca0271872d00b3de3abafca544c52fcd7d512dd852c9894fa2c118ac759a93600283836040516112b193929190611fce565b60405180910390a16002610d9b828483611ffe565b6112d1858585610ae1565b6001600160a01b0384163b15806113685750604051630a85bd0160e11b808252906001600160a01b0386169063150b7a02906113199033908a908990899089906004016120be565b6020604051808303816000875af1158015611338573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061135c9190611d7b565b6001600160e01b031916145b6113a75760405162461bcd60e51b815260206004820152601060248201526f155394d0519157d49150d2541251539560821b6044820152606401610748565b5050505050565b6113b661159f565b7fb65b7b5ea384affd30f77f842e057d29dd1b13f133adf69a724a8105b164ab75600183836040516113ea93929190611fce565b60405180910390a16001610d9b828483611ffe565b6000818152600360205260409020546060906001600160a01b03168061143b57604051630243d1a960e21b815260048101849052602401610748565b6000611446846110ae565b6009546040516328de0f2f60e01b81529192506001600160a01b0316906328de0f2f9061147c90879085906001906004016120fd565b600060405180830381865afa158015611499573d6000803e3d6000fd5b505050506040513d6000823e601f3d908101601f191682016040526114c19190810190612128565b949350505050565b604080516060808201835260008083526020830181905292820152906114ee836110ae565b6040805160608101825285815260009586526003602090815295829020546001600160a01b0316958101959095528401525090919050565b61152e61159f565b6001600160a01b0381166115935760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610748565b61159c816115f9565b50565b6000546001600160a01b03163314610ed55760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610748565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b6001600160a01b0382166116935760405162461bcd60e51b81526020600482015260116024820152701253959053125117d49150d25412515395607a1b6044820152606401610748565b6000818152600360205260409020546001600160a01b0316156116e95760405162461bcd60e51b815260206004820152600e60248201526d1053149150511657d3525395115160921b6044820152606401610748565b6001600160a01b038216600081815260046020908152604080832080546001019055848352600390915280822080546001600160a01b0319168417905551839291907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b6001600160e01b03198116811461159c57600080fd5b60006020828403121561177c57600080fd5b81356109d381611754565b634e487b7160e01b600052604160045260246000fd5b604051601f8201601f1916810167ffffffffffffffff811182821017156117c6576117c6611787565b604052919050565b6001600160a01b038116811461159c57600080fd5b600067ffffffffffffffff8211156117fd576117fd611787565b50601f01601f191660200190565b600082601f83011261181c57600080fd5b813561182f61182a826117e3565b61179d565b81815284602083860101111561184457600080fd5b816020850160208301376000918101602001919091529392505050565b60006020828403121561187357600080fd5b813567ffffffffffffffff8082111561188b57600080fd5b908301906060828603121561189f57600080fd5b6040516060810181811083821117156118ba576118ba611787565b60405282356118c8816117ce565b8152602083810135908201526040830135828111156118e657600080fd5b6118f28782860161180b565b60408301525095945050505050565b60005b8381101561191c578181015183820152602001611904565b50506000910152565b6000815180845261193d816020860160208601611901565b601f01601f19169290920160200192915050565b6020815260006109d36020830184611925565b60006020828403121561197657600080fd5b5035919050565b6000806040838503121561199057600080fd5b823561199b816117ce565b946020939093013593505050565b6000602082840312156119bb57600080fd5b813567ffffffffffffffff8111156119d257600080fd5b6114c18482850161180b565b60018060a01b0384168152826020820152606060408201526000611a056060830184611925565b95945050505050565b600060208284031215611a2057600080fd5b81356109d3816117ce565b600080600060608486031215611a4057600080fd5b8335611a4b816117ce565b92506020840135611a5b816117ce565b929592945050506040919091013590565b6020808252825182820181905260009190848201906040850190845b81811015611aa457835183529284019291840191600101611a88565b50909695505050505050565b60008083601f840112611ac257600080fd5b50813567ffffffffffffffff811115611ada57600080fd5b602083019150836020828501011115611af257600080fd5b9250929050565b600080600080600060808688031215611b1157600080fd5b853594506020860135611b23816117ce565b935060408601359250606086013567ffffffffffffffff811115611b4657600080fd5b611b5288828901611ab0565b969995985093965092949392505050565b60008060408385031215611b7657600080fd5b8235611b81816117ce565b915060208301358015158114611b9657600080fd5b809150509250929050565b60008060208385031215611bb457600080fd5b823567ffffffffffffffff811115611bcb57600080fd5b611bd785828601611ab0565b90969095509350505050565b600080600080600060808688031215611bfb57600080fd5b8535611c06816117ce565b94506020860135611b23816117ce565b602081528151602082015260018060a01b036020830151166040820152600060408301516060808401526114c16080840182611925565b60008060408385031215611c6057600080fd5b8235611c6b816117ce565b91506020830135611b96816117ce565b600181811c90821680611c8f57607f821691505b602082108103611caf57634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052603260045260246000fd5b80516020808301519190811015611caf5760001960209190910360031b1b16919050565b60008351611d01818460208801611901565b9190910191825250602001919050565b634e487b7160e01b600052601160045260246000fd5b600060018201611d3957611d39611d11565b5060010190565b604081526000611d536040830185611925565b90508260208301529392505050565b600060208284031215611d7457600080fd5b5051919050565b600060208284031215611d8d57600080fd5b81516109d381611754565b8082018082111561060357610603611d11565b601f821115610d9b57600081815260208120601f850160051c81016020861015611dd25750805b601f850160051c820191505b81811015611df157828155600101611dde565b505050505050565b815167ffffffffffffffff811115611e1357611e13611787565b611e2781611e218454611c7b565b84611dab565b602080601f831160018114611e5c5760008415611e445750858301515b600019600386901b1c1916600185901b178555611df1565b600085815260208120601f198616915b82811015611e8b57888601518255948401946001909101908401611e6c565b5085821015611ea95787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b6001600160e01b0319831681528151600090611edc816004850160208701611901565b919091016004019392505050565b60008251611efc818460208701611901565b9190910192915050565b600082611f2357634e487b7160e01b600052601260045260246000fd5b500690565b60008154611f3581611c7b565b808552602060018381168015611f525760018114611f6c57611f9a565b60ff1985168884015283151560051b880183019550611f9a565b866000528260002060005b85811015611f925781548a8201860152908301908401611f77565b890184019650505b505050505092915050565b81835281816020850137506000828201602090810191909152601f909101601f19169091010190565b604081526000611fe16040830186611f28565b8281036020840152611ff4818587611fa5565b9695505050505050565b67ffffffffffffffff83111561201657612016611787565b61202a836120248354611c7b565b83611dab565b6000601f84116001811461205e57600085156120465750838201355b600019600387901b1c1916600186901b1783556113a7565b600083815260209020601f19861690835b8281101561208f578685013582556020948501946001909201910161206f565b50868210156120ac5760001960f88860031b161c19848701351681555b505060018560011b0183555050505050565b6001600160a01b03868116825285166020820152604081018490526080606082018190526000906120f29083018486611fa5565b979650505050505050565b8381526060602082015260006121166060830185611925565b8281036040840152611ff48185611f28565b60006020828403121561213a57600080fd5b815167ffffffffffffffff81111561215157600080fd5b8201601f8101841361216257600080fd5b805161217061182a826117e3565b81815285602083850101111561218557600080fd5b611a0582602083016020860161190156fea26469706673582212203fc548aa4f22e6f4c01757ba3f2e0383630418b3d17601758718ab19a4d9918d64736f6c63430008110033a26469706673582212207932e8c793f9a96d9606a8907a6671f54c0fb1ed5a763048e13b429274e7706c64736f6c634300081100330000000000000000000000009fe46736679d2d9a65f0992f2272de9f3c7fa6e0000000000000000000000000000000000000000000000000002386f26fc10000", + "nonce": "0x4" + }, + "additionalContracts": [], + "isFixedGasLimit": false + } + ], + "receipts": [ + { + "transactionHash": "0x045f89ca387f2853a2a30f92868bdf8945580b501a47d7aef7e168a4febacd61", + "transactionIndex": "0x0", + "blockHash": "0x073d71b449878603d31287338acca94dcb45b40e11e449e2ab2b1656be333e6a", + "blockNumber": "0xb", + "from": "0xf39Fd6e51aad88F6F4ce6aB8827279cffFb92266", + "to": null, + "cumulativeGasUsed": "0xf4240", + "gasUsed": "0x7a120", + "contractAddress": "0xe7f1725E7734CE288F8367e1Bb143E90bb3F0512", + "logs": [], + "status": "0x1", + "logsBloom": "0x00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", + "type": "0x0", + "effectiveGasPrice": "0xf4240" + }, + { + "transactionHash": "0x000128fbbcf1ce04facb50cb06b25514ad5927f52ec5b5b497f9cc8acff8a383", + "transactionIndex": "0x0", + "blockHash": "0x0365db0c5c55e83555a1ad1cb190a6c89c8d9ee6946e001ad1599f03c142c22d", + "blockNumber": "0xc", + "from": "0xf39Fd6e51aad88F6F4ce6aB8827279cffFb92266", + "to": null, + "cumulativeGasUsed": "0xf4240", + "gasUsed": "0x7a120", + "contractAddress": "0x9fE46736679d2D9a65F0992F2272dE9f3c7fa6e0", + "logs": [], + "status": "0x1", + "logsBloom": "0x00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", + "type": "0x0", + "effectiveGasPrice": "0xf4240" + }, + { + "transactionHash": "0x027230bd60128347bd04e3fa2055be2e2ba4fcd489e1ac59cc7d43bbceab7797", + "transactionIndex": "0x0", + "blockHash": "0x022f9bb72b6d7865f23e51646c45fad560519fa7d52ccc958e9823cc1f365f8f", + "blockNumber": "0xd", + "from": "0xf39Fd6e51aad88F6F4ce6aB8827279cffFb92266", + "to": null, + "cumulativeGasUsed": "0xf4240", + "gasUsed": "0x7a120", + "contractAddress": "0xCf7Ed3AccA5a467e9e704C703E8D87F634fB0Fc9", + "logs": [], + "status": "0x1", + "logsBloom": "0x00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", + "type": "0x0", + "effectiveGasPrice": "0xf4240" + } + ], + "libraries": [ + "lib/eth-projects-monorepo/packages/eth-projects-contracts/contracts/lib/utils/Bytes.sol:Bytes:0x5fbdb2315678afecb367f032d93f642f64180aa3" + ], + "pending": [ + "0x05c851c318f703ca1584f93726cae8b01fcd20b307c2a5add61a15b751a6cdab", + "0x0156ed37608a55ed8897ef8eb39ae382ec9b73dbe71b548c8f747ed4587eda48" + ], + "returns": {}, + "timestamp": 1689179365, + "chain": 1263227476, + "multi": false, + "commit": "24c72b7" +} \ No newline at end of file diff --git a/packages/starksheet-solidity/broadcast/Evmsheet.s.sol/1263227476/run-1689180273.json b/packages/starksheet-solidity/broadcast/Evmsheet.s.sol/1263227476/run-1689180273.json new file mode 100644 index 00000000..5589dc17 --- /dev/null +++ b/packages/starksheet-solidity/broadcast/Evmsheet.s.sol/1263227476/run-1689180273.json @@ -0,0 +1,158 @@ +{ + "transactions": [ + { + "hash": "0x045f89ca387f2853a2a30f92868bdf8945580b501a47d7aef7e168a4febacd61", + "transactionType": "CREATE", + "contractName": "Bytes", + "contractAddress": "0x5FbDB2315678afecb367f032d93F642f64180aa3", + "function": null, + "arguments": null, + "transaction": { + "type": "0x00", + "from": "0xf39fd6e51aad88f6f4ce6ab8827279cfffb92266", + "gas": "0x1387ed", + "data": "0x6110d661003a600b82828239805160001a60731461002d57634e487b7160e01b600052600060045260246000fd5b30600052607381538281f3fe73000000000000000000000000000000000000000030146080604052600436106101625760003560e01c8063a5eb31ee116100cd578063d1ffb56111610086578063d1ffb561146103fb578063d442584f1461042b578063e004139614610454578063f1142fb314610474578063f647f8fb14610487578063f83b670f146104b257600080fd5b8063a5eb31ee14610344578063a8d8f00f1461036b578063b5cdf92414610396578063b63711df146103a9578063be8b3430146103bc578063c29616bd146103cf57600080fd5b80635ef849301161011f5780635ef8493014610241578063913c97b41461026b57806397e6175c1461029f57806399dd9bd7146102cb5780639ae4c3d1146102ec5780639cee499e1461031857600080fd5b8063042aa0841461016757806305d3bb74146101985780631a7431ef146101c0578063235266d2146101e357806348137709146101f65780634d66a2ae1461021b575b600080fd5b61017a610175366004610ec0565b6104de565b6040516001600160d01b031990911681526020015b60405180910390f35b6101ab6101a6366004610ec0565b610540565b60405163ffffffff909116815260200161018f565b6101d36101ce366004610f05565b61059d565b604051901515815260200161018f565b6101d36101f1366004610f4c565b610652565b610209610204366004610ec0565b6106b5565b60405160ff909116815260200161018f565b61022e610229366004610fa6565b610711565b60405161ffff909116815260200161018f565b61025461024f366004610ec0565b61071e565b60405165ffffffffffff909116815260200161018f565b61027e610279366004610ec0565b610772565b6040516fffffffffffffffffffffffffffffffff909116815260200161018f565b6102b26102ad366004610ec0565b6107d0565b6040516001600160a01b0319909116815260200161018f565b6102de6102d9366004610ec0565b61082e565b60405190815260200161018f565b6102ff6102fa366004610ec0565b61088c565b60405167ffffffffffffffff909116815260200161018f565b61032b610326366004610ec0565b6108e9565b6040516001600160d81b0319909116815260200161018f565b610357610352366004610ec0565b610946565b60405162ffffff909116815260200161018f565b61037e610379366004610ec0565b6109a3565b60405166ffffffffffffff909116815260200161018f565b6102de6103a4366004610ec0565b610a00565b6102ff6103b7366004610ec0565b610a55565b61022e6103ca366004610ec0565b610aa9565b6103e26103dd366004610ec0565b610b06565b6040516001600160c81b0319909116815260200161018f565b61040e610409366004610ec0565b610b5a565b6040516bffffffffffffffffffffffff909116815260200161018f565b61043e610439366004610ec0565b610bae565b60405164ffffffffff909116815260200161018f565b610467610462366004610fe3565b610c02565b60405161018f9190611031565b6102b2610482366004610ec0565b610d0f565b61049a610495366004610ec0565b610d64565b6040516001600160a01b03909116815260200161018f565b6104c56104c0366004610ec0565b610dc9565b6040516001600160f81b0319909116815260200161018f565b60006104eb82600661107f565b835110156105375760405162461bcd60e51b8152602060048201526014602482015273746f4279746573365f6f75744f66426f756e647360601b60448201526064015b60405180910390fd5b50016006015190565b600061054d82600461107f565b835110156105945760405162461bcd60e51b8152602060048201526014602482015273746f55696e7433325f6f75744f66426f756e647360601b604482015260640161052e565b50016004015190565b600080600190508354600260018083161561010002038216048451808214600181146105cc5760009450610644565b821561064457602083106001811461062957600189600052602060002060208a018581015b600284828410010361062057815183541461060f5760009950600093505b6001830192506020820191506105f1565b50505050610642565b6101008086040294506020880151851461064257600095505b505b509293505050505b92915050565b81518151600091600191811480831461066e57600092506106ab565b600160208701838101602088015b60028483851001036106a657805183511461069a5760009650600093505b6020928301920161067c565b505050505b5090949350505050565b60006106c282600161107f565b835110156107085760405162461bcd60e51b8152602060048201526013602482015272746f55696e74385f6f75744f66426f756e647360681b604482015260640161052e565b50016001015190565b600061064c826000610aa9565b600061072b82600661107f565b835110156105375760405162461bcd60e51b8152602060048201526014602482015273746f55696e7434385f6f75744f66426f756e647360601b604482015260640161052e565b600061077f82601061107f565b835110156107c75760405162461bcd60e51b8152602060048201526015602482015274746f55696e743132385f6f75744f66426f756e647360581b604482015260640161052e565b50016010015190565b60006107dd82600c61107f565b835110156108255760405162461bcd60e51b8152602060048201526015602482015274746f427974657331325f6f75744f66426f756e647360581b604482015260640161052e565b5001600c015190565b600061083b82602061107f565b835110156108835760405162461bcd60e51b8152602060048201526015602482015274746f427974657333325f6f75744f66426f756e647360581b604482015260640161052e565b50016020015190565b600061089982600861107f565b835110156108e05760405162461bcd60e51b8152602060048201526014602482015273746f55696e7436345f6f75744f66426f756e647360601b604482015260640161052e565b50016008015190565b60006108f682600561107f565b8351101561093d5760405162461bcd60e51b8152602060048201526014602482015273746f4279746573355f6f75744f66426f756e647360601b604482015260640161052e565b50016005015190565b600061095382600361107f565b8351101561099a5760405162461bcd60e51b8152602060048201526014602482015273746f55696e7432345f6f75744f66426f756e647360601b604482015260640161052e565b50016003015190565b60006109b082600761107f565b835110156109f75760405162461bcd60e51b8152602060048201526014602482015273746f55696e7435365f6f75744f66426f756e647360601b604482015260640161052e565b50016007015190565b6000610a0d82602061107f565b835110156108835760405162461bcd60e51b8152602060048201526015602482015274746f55696e743235365f6f75744f66426f756e647360581b604482015260640161052e565b6000610a6282600861107f565b835110156108e05760405162461bcd60e51b8152602060048201526014602482015273746f4279746573385f6f75744f66426f756e647360601b604482015260640161052e565b6000610ab682600261107f565b83511015610afd5760405162461bcd60e51b8152602060048201526014602482015273746f55696e7431365f6f75744f66426f756e647360601b604482015260640161052e565b50016002015190565b6000610b1382600761107f565b835110156109f75760405162461bcd60e51b8152602060048201526014602482015273746f4279746573375f6f75744f66426f756e647360601b604482015260640161052e565b6000610b6782600c61107f565b835110156108255760405162461bcd60e51b8152602060048201526014602482015273746f55696e7439365f6f75744f66426f756e647360601b604482015260640161052e565b6000610bbb82600561107f565b8351101561093d5760405162461bcd60e51b8152602060048201526014602482015273746f55696e7434305f6f75744f66426f756e647360601b604482015260640161052e565b606081610c1081601f61107f565b1015610c4f5760405162461bcd60e51b815260206004820152600e60248201526d736c6963655f6f766572666c6f7760901b604482015260640161052e565b610c59828461107f565b84511015610c9d5760405162461bcd60e51b8152602060048201526011602482015270736c6963655f6f75744f66426f756e647360781b604482015260640161052e565b606082158015610cbc5760405191506000825260208201604052610d06565b6040519150601f8416801560200281840101858101878315602002848b0101015b81831015610cf5578051835260209283019201610cdd565b5050858452601f01601f1916604052505b50949350505050565b6000610d1c82601061107f565b835110156107c75760405162461bcd60e51b8152602060048201526015602482015274746f427974657331365f6f75744f66426f756e647360581b604482015260640161052e565b6000610d7182601461107f565b83511015610db95760405162461bcd60e51b8152602060048201526015602482015274746f416464726573735f6f75744f66426f756e647360581b604482015260640161052e565b500160200151600160601b900490565b6000610dd682600161107f565b835110156107085760405162461bcd60e51b8152602060048201526014602482015273746f4279746573315f6f75744f66426f756e647360601b604482015260640161052e565b634e487b7160e01b600052604160045260246000fd5b600082601f830112610e4457600080fd5b813567ffffffffffffffff80821115610e5f57610e5f610e1d565b604051601f8301601f19908116603f01168101908282118183101715610e8757610e87610e1d565b81604052838152866020858801011115610ea057600080fd5b836020870160208301376000602085830101528094505050505092915050565b60008060408385031215610ed357600080fd5b823567ffffffffffffffff811115610eea57600080fd5b610ef685828601610e33565b95602094909401359450505050565b60008060408385031215610f1857600080fd5b82359150602083013567ffffffffffffffff811115610f3657600080fd5b610f4285828601610e33565b9150509250929050565b60008060408385031215610f5f57600080fd5b823567ffffffffffffffff80821115610f7757600080fd5b610f8386838701610e33565b93506020850135915080821115610f9957600080fd5b50610f4285828601610e33565b600060208284031215610fb857600080fd5b813567ffffffffffffffff811115610fcf57600080fd5b610fdb84828501610e33565b949350505050565b600080600060608486031215610ff857600080fd5b833567ffffffffffffffff81111561100f57600080fd5b61101b86828701610e33565b9660208601359650604090950135949350505050565b600060208083528351808285015260005b8181101561105e57858101830151858201604001528201611042565b506000604082860101526040601f19601f8301168501019250505092915050565b8082018082111561064c57634e487b7160e01b600052601160045260246000fdfea26469706673582212205bdf5bc4551862519f5370e0dcec38eefbbbe11b6a5bf19ce2846b4f8831a5dc64736f6c63430008110033", + "nonce": "0x0" + }, + "additionalContracts": [], + "isFixedGasLimit": false + }, + { + "hash": "0x000128fbbcf1ce04facb50cb06b25514ad5927f52ec5b5b497f9cc8acff8a383", + "transactionType": "CREATE", + "contractName": "MultiSendCallOnly", + "contractAddress": "0xe7f1725E7734CE288F8367e1Bb143E90bb3F0512", + "function": null, + "arguments": null, + "transaction": { + "type": "0x00", + "from": "0xf39fd6e51aad88f6f4ce6ab8827279cfffb92266", + "gas": "0x2e5c4", + "value": "0x0", + "data": "0x608060405234801561001057600080fd5b506101ae806100206000396000f3fe60806040526004361061001e5760003560e01c80638d80ff0a14610023575b600080fd5b6100366100313660046100c7565b610038565b005b805160205b818110156100ac578083015160f81c6001820184015160601c601583018501516035840186015160558501870160008560008114610082576001811461001e5761008e565b6000808585888a5af191505b508061009957600080fd5b505080605501850194505050505061003d565b505050565b634e487b7160e01b600052604160045260246000fd5b6000602082840312156100d957600080fd5b813567ffffffffffffffff808211156100f157600080fd5b818401915084601f83011261010557600080fd5b813581811115610117576101176100b1565b604051601f8201601f19908116603f0116810190838211818310171561013f5761013f6100b1565b8160405282815287602084870101111561015857600080fd5b82602086016020830137600092810160200192909252509594505050505056fea2646970667358221220c15490bbb756a4c3c49d6335b2e81d2d098647b0ea70174c2279f199b1d0800364736f6c63430008110033", + "nonce": "0x1" + }, + "additionalContracts": [], + "isFixedGasLimit": false + }, + { + "hash": "0x027230bd60128347bd04e3fa2055be2e2ba4fcd489e1ac59cc7d43bbceab7797", + "transactionType": "CREATE", + "contractName": "BasicCellRenderer", + "contractAddress": "0x9fE46736679d2D9a65F0992F2272dE9f3c7fa6e0", + "function": null, + "arguments": null, + "transaction": { + "type": "0x00", + "from": "0xf39fd6e51aad88f6f4ce6ab8827279cfffb92266", + "gas": "0x3180ad", + "value": "0x0", + "data": "0x608060405234801561001057600080fd5b50612c25806100206000396000f3fe608060405234801561001057600080fd5b50600436106100365760003560e01c806306d4cd8b1461003b57806328de0f2f14610064575b600080fd5b61004e610049366004610322565b610077565b60405161005b919061038b565b60405180910390f35b61004e610072366004610404565b6100f1565b60606000610086600f846104fc565b90506000610095600f8361051e565b61009f9085610535565b905060006100ae826041610548565b60f81b9050806100c76100c2856001610548565b6101b6565b6040516020016100d8929190610577565b6040516020818303038152906040529350505050919050565b606060006100fe86610077565b905083838261018388735fbdb2315678afecb367f032d93f642f64180aa363b5cdf924909160006040518363ffffffff1660e01b81526004016101429291906105a8565b602060405180830381865af415801561015f573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906100c291906105ca565b87878660405160200161019c97969594939291906105f2565b604051602081830303815290604052915050949350505050565b606060006101c383610249565b600101905060008167ffffffffffffffff8111156101e3576101e36103a5565b6040519080825280601f01601f19166020018201604052801561020d576020820181803683370190505b5090508181016020015b600019016f181899199a1a9b1b9c1cb0b131b232b360811b600a86061a8153600a850494508461021757509392505050565b60008072184f03e93ff9f4daa797ed6e38ed64bf6a1f0160401b83106102885772184f03e93ff9f4daa797ed6e38ed64bf6a1f0160401b830492506040015b6d04ee2d6d415b85acef810000000083106102b4576d04ee2d6d415b85acef8100000000830492506020015b662386f26fc1000083106102d257662386f26fc10000830492506010015b6305f5e10083106102ea576305f5e100830492506008015b61271083106102fe57612710830492506004015b60648310610310576064830492506002015b600a831061031c576001015b92915050565b60006020828403121561033457600080fd5b5035919050565b60005b8381101561035657818101518382015260200161033e565b50506000910152565b6000815180845261037781602086016020860161033b565b601f01601f19169290920160200192915050565b60208152600061039e602083018461035f565b9392505050565b634e487b7160e01b600052604160045260246000fd5b60008083601f8401126103cd57600080fd5b50813567ffffffffffffffff8111156103e557600080fd5b6020830191508360208285010111156103fd57600080fd5b9250929050565b6000806000806060858703121561041a57600080fd5b84359350602085013567ffffffffffffffff8082111561043957600080fd5b818701915087601f83011261044d57600080fd5b81358181111561045f5761045f6103a5565b604051601f8201601f19908116603f01168101908382118183101715610487576104876103a5565b816040528281528a60208487010111156104a057600080fd5b8260208601602083013760006020848301015280975050505060408701359150808211156104cd57600080fd5b506104da878288016103bb565b95989497509550505050565b634e487b7160e01b600052601160045260246000fd5b60008261051957634e487b7160e01b600052601260045260246000fd5b500490565b808202811582820484141761031c5761031c6104e6565b8181038181111561031c5761031c6104e6565b8082018082111561031c5761031c6104e6565b6000815161056d81856020860161033b565b9290920192915050565b6001600160f81b031983168152815160009061059a81600185016020870161033b565b919091016001019392505050565b6040815260006105bb604083018561035f565b90508260208301529392505050565b6000602082840312156105dc57600080fd5b5051919050565b81818437506000910190815290565b7f646174613a6170706c69636174696f6e2f6a736f6e2c7b22646573637269707481527f696f6e223a2022537461726b7368656574222c20226e616d65223a202200000060208201528688603d8301376000878201602160f81b603d820152875161066481603e840160208c0161033b565b7f222c22696d616765223a2022646174613a696d6167652f7376672b786d6c2c25603e92909101918201527f334373766725323076696577426f782533442532373025323030253230383925605e8201527f3230353525323725323066696c6c2533442532376e6f6e65253237253230786d607e8201527f6c6e73253344253237687474702533412f2f7777772e77332e6f72672f323030609e8201527f302f737667253237253345253343646566732533452533437374796c6525334560be8201527f253430666f6e742d66616365253230253742666f6e742d66616d696c7925334160de8201527f253230253237507265737325323053746172742532303250253237253342737260fe8201527f6325334125323075726c25323825323764617461253341666f6e742f776f666661011e8201527f32253342626173653634253243643039474d6741424141414141424c3841413861013e8201527f41414141415235774141424b674141454141414141414141414141414141414161015e8201527f4141414141414141414141414150305a4756453063476a41624d42794358675a61017e8201527f6741494e794551674b3846545361517544524141424e67496b41344e4d42434161019e8201527f46687a5148684649623644566c42306a314f4d4253336f4f4953744562732f2f6101be8201527f2f6c4a776356727a47634f30676f684c45484d6369694443434e57695a6761306101de8201527f79625345555954514f6a4b427038546c737a7344526438716174586c333058746101fe8201527f30645a47467952305668444b776c62746c25324272734643773945316e64655961021e8201527f4a74732f37527762305673784d71576c636a6a775445537a2f5568752f77337361023e8201527f33746b6f496d70343464515168576f456d54337579526d70746f7553446b7a5761025e8201527f454138762f3932364a4b7539486f696e6e3673376674336d4965476c7737547161027e8201527f6437456f326a46517849766a5642494a70563269614f62547a68575932314e7461029e8201527f476772687434704d4b3457556a34624c7967542f51253242514c7879253242336102be8201527f6c482f362f6b6275496444497239446a724a496a6f394a7336524d58253242456102de8201527f6b37424f545a6b6d70397a347455524652566656307148504448375a7462364a6102fe8201527f616f6130684c335975616232473373667a72365776394536793569767025324261031e8201527f7135564c74426a514478476f5345304150313762336466376c61726a6525324261033e8201527f73637a6b7241744a334b6657304a342532424b323365744b4b556a383554616f61035e8201527f57473453346158436c427743413268676141652532423658396f696e32304e6261037e8201527f554a7264466767517049686d5247494d30372f7025324277375a7058316c473161039e8201527f6a6a51787073435141423438714445415042346950312f6a39592f4261686a356103be8201527f5943414e302f78714157496852616a6c6e694e654f50396e78433466667932556103de8201527f694843304e47386b686f6f567a6f7459334445417a417a41356b473735337a6a6103fe8201527f4853354d6e6d586b69496a6d54554d36556d4d3025324256346976752f48377861041e8201527f6a364666322f6b343472787a6449324141676742492f4c48416b394a7a35554d61043e8201527f496f4c7755344146455435725a464f33444d616655633061777351434879497061045e8201527f557a546b30784a474a454f6a4e6871436b474570496153474f6a714e466d2f5761047e8201527f4e434e3569636b71434d6e414165564c4d4c655867356971386b365752585a5261049e8201527f326c337042393831427a73475a743225324256696c4342723954494a674b67786104be8201527f365542514446253242566a4b44714e7741414948386a6949664d6e75384b68666104de8201527f584b486f4e3348634134477245786842324155442f795a554d423857547579496104fe8201527f413444634f4b656434397939504249616e426967734d454e38556b30766c547661051e8201527f304a58334e394d795a75544d763573655357413525324238556538504465547261053e8201527f645467474973566d4e33635856586a6463795275633434385866664176506e7361055e8201527f3575324d4531722532426a4731703137767a3849704f416e483444427367793361057e8201527f512f54376b33646d2f3846334232377355694877464631414f6c683055646e4961059e8201527f4471494e5164506355393145786f2f346252696a6a5169704e4e307a4c646c7a6105be8201527f504438496f547449734c38717162746f4f5149514a5a567849705931315073536105de8201527f55533231397a4c585066642f507667765751346372464d2532425769755671706105fe8201527f645a6f4e6475645872632f4745324d4a36656e3575635746694763375274364f61061e8201527f487676354d674c2532427a44733578444277696141315433554877326b63594361063e8201527f312f55666453316645316d37763742346537653350574848786533594f32483561065e8201527f25324241504f5a7965503025324251506553425468793078713965363241486a61067e8201527f6141556842432f364144484c6f476f4f657636412532426867487369317a613861069e8201527f71355a4e4d716a596c575a4d713867354248445574495370574a73526f52544a6106be8201527f56613049305a3957546b5371564b73507a3464586a7648746449684c6e7670746106de8201527f554c4330753542567579414d544b4a513930594b5267546e5769476b6d7153456106fe8201527f714b6d7256685259674b6b335443686255573671456f45637665577a6859535461071e8201527f4c32484e706735452f6d7151393956564467763352475435586d33637a68754c61073e8201527f3972685864316132372f736c5130686959366a643739614f5a43746a6f52687261075e8201527f623136575676514b725734477a786a7869723238494d697a2f7155447973495761077e8201527f7037516a667765347a556437614a735651575179524c554b484b42577938577661079e8201527f45565333584d53353656337757644f442532424638757639645477496d4b722f6107be8201527f5064626d5763775176456641616a7975566a70784e32704f56635769336c38776107de8201527f454c2f6d395070646f55494536253242504b5838315041546d67654f304231736107fe8201527f47454825324261707a353466646d534a7a333741686635366a4c7739756e504561081e8201527f35644d4b3025324237544639563843435466523979664e7355493474557a464661083e8201527f42326e536e384b4f626a64446964554c7034494a6873777878595172595a643661085e8201527f4e76436e55394d445825324252654c6e4d546d6c315a453972306b5077334e3261087e8201527f6752253242736a4573596d4953706b356c31497333594e614a4b6f6e7a65703761089e8201527f56637354316e556b62347048774b5a41796b614b6f43504630506f6d456876496108be8201527f5758656e6f5a767836774f4b313070316c3274546858793850316555776473766108de8201527f53715157766f424d7473674851554a614774494273756861776450545a5378596108fe8201527f707257757734647a7231564755744449465871726f4d4d69597346783857695461091e8201527f336463574b6f376d50554c79715657413972305974524a4c626957766a6e4c2561093e8201527f324272633452646767624e516c514141613264306d616236364d48447074314361095e8201527f6477626b51436253375053445a4d7a3746724f51713165636153304a6c74644161097e8201527f6c44527941587173364130586247707748676b70367572557757416272464d3361099e8201527f75794d764e4b6c344d6c435548537950416d3931776144454a3559595148754a6109be8201527f4d32304b575251737637486b61334770686c533258444b714f4b4245554753316109de8201527f65306b63316f323449494166486c4449794278584a4a656767423369386174566109fe8201527f67434f3064444f5a484a57596a564c416a6a397137765673456e72684b374568610a1e8201527f4c75427a42586d4d674554634531636d61436976504b6f4a766670466c794935610a3e8201527f4d70584234454325324245672f596d303454787843354e6c73596b74646f5951610a5e8201527f55656c38624673456c3748345a36734377622f38626b347458574658504b6a71610a7e8201527f5462526e64336e4c5770394f784941706c664b586747684e6c72443462354a4c610a9e8201527f5a367055753441726756614d366561357844574244476f7a707a4641376e6747610abe8201527f74596334486141775269475576637653653652414177335a576b564f4667764b610ade8201527f46364955696c4d49394964715155345134585264484866736666517770313955610afe8201527f434a49306a5773725433356f5578303678507268473271364d4533554f306c63610b1e8201527f635a557354454351784a44527854444b6c334c4948722f6162546f73686c6466610b3e8201527f51786a364f57745273466e6966444373473674336b426f344e6d424a6d615556610b5e8201527f54636c794951414a4c6a6e723042365a3859464d6e396b397967703752727848610b7e8201527f36766877624a4e41654b4d554436353974386746514a4d5377652f434f624850610b9e8201527f467671484746554e5266253242737245663354584b42725a76676b6369396972610bbe8201527f426d63442f7458616754474358634e68432532424f3539754c706e6673796f71610bde8201527f4c53313238374552776d38666165564f6d3857634437386c5a36594232793938610bfe8201527f5a4c6c4d3972557264324c514e6c324956643454727376675139363079377573610c1e8201527f5965306854506170576a71726c2532425837784665424e54253242315a644a4a610c3e8201527f572532424678745737584e7774634e7a7761672532425256656a6d4a6839656d610c5e8201527f6c495a4b69694e63694b3849554f4d33556a4a376342554e5847505853326c68610c7e8201527f253242687770676f4836567348524f63764569723372585970344c7769435a77610c9e8201527f3176486c43623552314d68623564536e4f326d6e6f475a6f5846315765574757610cbe8201527f6d7a694a314a555534715072306e694a536c4e424331636b4b6d4a6657625877610cde8201527f5577757449547a456d6a776770776142753464525066746a2f4e384143526e64610cfe8201527f616b2f4641674b674c37305058577839767a6b59322532426d34355473496b4c610d1e8201527f3037616f70444e6f676830535262535a534f397a744657516a376e574c676275610d3e8201527f364325324254374b6a44715a3667456e5277674d78306b4c5a77797962514f76610d5e8201527f514130773054782f354a42722f63595a6453574f546a774446364e6f586b796a610d7e8201527f33566a484e4751494e76426a5a734a4a3377466141516d6f5a575a5970416961610d9e8201527f574f466e6e686455524176576b557a77693062677a5a4158796f445545714863610dbe8201527f57307069454c574f777168773365765478444957724e32495371525151454c41610dde8201527f4d32365334486c723548552f48784a43436844424a6b756b6341573856415430610dfe8201527f6770545a544b4e48677a444f7234314751656a4f34677a416e6b577077464752610e1e8201527f43334c625231787a4b434875365635694674674c704f384b51596d5965467868610e3e8201527f4c32643838736469506a2f76306b427a636c51637954735766324d6445394944610e5e8201527f386d5858576a72434b253242354532756e336e6976656973526e726971317548610e7e8201527f594d6a6a69694945304b6466674d6f3163476d6b557254624f30356732737633610e9e8201527f477673525971762f61457736375472644f705435567a4641364131417939634b610ebe8201527f6f44667762544a64445750524e57517354796a6d3772486249734b466b6f4f2f610ede8201527f5a4c4376735966785973337768534338614c49344b765677373773336e347a48610efe8201527f67697061634a6e435362463945727a53357069386343577655597a4f5064327a610f1e8201527f684a2f4750437a53684f453378596c634f3350796164586a54334f6b68706841610f3e8201527f58465853766865544e5355525446565641486f4a6d7949726b6a454b6f517746610f5e8201527f4730303554334158643935764e30446d336d427332786746546c253242513572610f7e8201527f73416a6e744768707a6f62643642374e7a52664e56653130446f4e5639343753610f9e8201527f59646f635252624776636d785456786f61367a717756376d416e773544314745610fbe8201527f5474327a48382532425476514256356e37672f32615768743979794e594c3974610fde8201527f4f42744167384846435945316d4e775432454232467538544968543776565241610ffe8201527f3461587a6e6b3670545a4e6779696f73747749364b654655374c696c7041253261101e8201527f42334234474a794277574d327062466a4876734a3747754f6f616b6a6d46746a61103e8201527f59344c6254396c323239253242453646374c4475577a744c6e333749786b386a61105e8201527f356c42564b33774c7369362f416641756f6a34396c4d6b5653545045396b704761107e8201527f64304c724555534a4941413070596c4178414d642f4e4f46776f4a446458466961109e8201527f307a4f5744422f54464a705666575642574f516274724a556230636c663369256110be8201527f3242575072446f596c65545674564f45306d36793564487444725551776f414c6110de8201527f7455523365585364444d4e785866656a594674764c626c726c4a7777484b2f456110fe8201527f6957504a616b32574b35386e684e6f4c6a615a55475841756f32656f5777464561111e8201527f66612f445334496958717246714779633348726939785132693243352f73357661113e8201527f7a424d30793777334d4473774d3759325247427172464d6778374f696325324261115e8201527f30497a736d5678617a5473305263666a324f3334532f525639503269486f427561117e8201527f6c4b49594244665a46654c53356439725379664a64536c67683268644d72324f61119e8201527f5552334b6e6c506e4f41785477314a384c4d325a776e4671765a745a4a6c78786111be8201527f343873776243743272316b664875443756624831326159383849437456734b786111de8201527f4b742f31726b616c42414d74782f6f6f6d43445059626b556f4c6344624b436a6111fe8201527f7675713953544467746a584744715735564b36686347654f46697a6a3643714c61121e8201527f4f49716b57783477733245504d444e7378253242613661533230384f39784c3061123e8201527f526146586f394241645530706e452532424c695359334b536f4a41525978646e61125e8201527f7a69545a4d706961442f3438496969393834446151357976656378414673735761127e8201527f792f686274696d63253242704c386b35796f70496d4a627948712f6138797a6c61129e8201527f6c37726f4f7a586d786d4163337459585363546b65734d6344324939315a36336112be8201527f6549312f394a627755716b36737863394b52677277574d414e6543314e6e39756112de8201527f4779775473706d5538712532426c5a6d43714d674153363662674841476a514b6112fe8201527f73754a334451416a5235346d356a4c7a5a616e546c62646530253242726e663461131e8201527f385a574138546c32673277414779427748516e3552322532424e6a726542677861133e8201527f626c734e46627554776d6862414a48737a2f72416f61764c4f34317874767a5961135e8201527f4768336e4c4a426b41506a7578424a445248333048426575385567436978464e61137e8201527f437951322f4b253242385157372f6530253242664f2532423436524e5730657961139e8201527f4c726f39446a5467704a4e4d3547385179306c54644f756d73773066715045696113be8201527f393646702532424830634d774e6f376a787a596d6e4e664d5a6d64506c7932706113de8201527f6f7132575065476d67507136474c78504e34536c4b486e7870624f69754c58516113fe8201527f75583155715031676a6f38426136536c55314f416d5267707a7531735444584a61141e8201527f50754d3338546f387130344c324e777970653837327777556741675a6c70386461143e8201527f6b5166397a38544d43624d6b596b3758484375333564375a5a41656f346b5a4b61145e8201527f68784953386945354c546a334c4f6976485a7268394a3870337a4c5a436a776361147e8201527f6970354452694b6e576e49664c33386b4a684d7452776a67553525324256726d61149e8201527f714b6c6739307a376a64732f4238444b646b464c76483353253242376f4838616114be8201527f6c445a6c626734533155583574434d445342324f364b756c7a41344b763067376114de8201527f314251643054464b7733685358696e62374e6c304258725873514e6376436b386114fe8201527f6d6f394f786965783559627a78564e2f6b3738336f48545a495777393079495a61151e8201527f777672697164475473586e54384965705437597946434f4a6741395a3042794961153e8201527f455956735478522f6b73616b324268376f4b767034766e695530364d57317a4261155e8201527f4672746568647a306b6b587951786a426d7965645636644d596545386146787461157e8201527f6575777355466136466c6c54446c716430707a525a77473663467266574d627061159e8201527f384738587a6a66624d253242354658657076356f457273696c363458783663376115be8201527f5841576275696d3666387347494d58666f334a6971476b703333376854536a676115de8201527f65636862364f42472f327a31376a6f6d4469476d253242476c623146553069656115fe8201527f6e7552796977654c576767447a6d4655765545556a5a6f377356544877684f4661161e8201527f504d6b4e737146423977796d6b45307639666d7477453854377135384e594f3761163e8201527f787534623833766e46766c35755378446c472532426b4f51675249644f346a6761165e8201527f7a786a53486a4b4c7332742f6c684f647771766131415744437072763344345361167e8201527f34523741625934544362664b4637744265363554343551347a7a49714433316161169e8201527f79797557716a692532424636585337535439483943314f342f694b366b4775766116be8201527f6b512f664e3537487837456533373435622f76766e2f62482f58253242392f256116de8201527f32426762656d684f416d49705576755157757344764b517578394a44564e734b6116fe8201527f673651636d6b73515341445530346347524c523768466f5a326337785545664761171e8201527f253242776b755459474d764c6a422f6550634936416847686e5735717a45416961173e8201527f4a586377564545775869654e70536c317a6a457253253242435325324248634c61175e8201527f6f52506d7661324d6767412f69794c67536f544a555767733442794149514f3061177e8201527f4f6f705a487656627a6844494c65557155677a7a48492f667950474e7879777361179e8201527f6f796c6865534639577662795363336b4544716b32415636436c4364635535536117be8201527f6e6c4e6e4963394b794d63384c79622532423867484f4a795173466c4c6250526117de8201527f796d6d374a42743349545a544162314732444252496b514b51705451396939626117fe8201527f3665435353387a4d366161525364544b5657524d336663454a4c644b61746e7361181e8201527f724959774e4a55253242733048364461757832775a35686733706c653042474861183e8201527f756b316b4543734859446461496d4b7025324233463542317859763763486b7161185e8201527f644475306a4b645273657a3531376d63563641685148346931484e3173766c6a61187e8201527f5248366845454672682532426e72726d47316e33307a4d346749776d694d774561189e8201527f624b6842545564423141486f582532424b6741517a4f48543946494f71436b526118be8201527f4e4e623273397170496943534f753167576868497343564a73765771457175356118de8201527f47624a514b4e6a61427465394c4f69676368414a7665475773394332323033766118fe8201527f6f6e476c6b77725251323464646732796345646157554456734441785548734961191e8201527f77773665615234464665336d4a416b66426d5a6452395264774a485a6d47645261193e8201527f7950436a706a627a31712f584a34534949446b66384b4b6e6e32456c4b6d794c61195e8201527f69573442513836733151554b2f76426867524e776548766c5968687a7238706361197e8201527f67704b4b6d6f61576a7036426b594f48446c7835734b5647336365474539657661199e8201527f506e773563646667454242676f554946536238587632504553314772446a78456119be8201527f69524b6b697846716a54704d6d544b6b693148726a7a354368517155717845716119de8201527f544c6c4b6c53715571314772547231476a527130717846717a62744f6e5347656119fe8201527f3668374a6d627a4968355a6544696c315a58536a7430774375616b336c6e476f611a1e8201527f5655506f53734e663337394b326a6274716d44674d69485a42665a6c68324839611a3e8201527f75773738495469314a466a585653662f4336634f55667a346f30644178305447611a5e8201527f777448446863666a3443516d49694531444d5a42546b6c4e5a557065566f614f611a7e8201527f6e717633733234314e50503965766574594768435a50576a4979747332706173611a9e8201527f436a25324270556a54596c336b615574374f744b4a6136355850396d356e6367611abe8201527f364e686a685a587032762532426d57724341545a754a303368316b6a55756976611ade8201527f5067596e6a6e35744b4a4f6b326e6362703251414559585a69304b496d50356b611afe8201527f744961466e366b5a397743253237253239253230666f726d6174253238253237611b1e8201527f776f666632253237253239253342666f6e742d7765696768742533412532306e611b3e8201527f6f726d616c253342666f6e742d7374796c652533412532306e6f726d616c2533611b5e8201527f42666f6e742d646973706c617925334125323073776170253342253744746578611b7e8201527f74253230253742666f6e742d66616d696c792533412532302532375072657373611b9e8201527f2532305374617274253230325025323725334266696c6c253341253230776869611bbe8201527f74652537442e76616c7565253230253742666f6e742d73697a65253341253230611bde8201527f313070782533422537442e6e616d65253230253742666f6e742d73697a652533611bfe8201527f412532303470782533422537442533432f7374796c652533452533432f646566611c1e8201527f7325334525334372656374253230776964746825334425323738392532372532611c3e8201527f30686569676874253344253237353525323725323066696c6c25334425323762611c5e8201527f6c61636b2532372532302f253345253343726563742532307825334425323735611c7e8201527f2e3525323725323079253344253237352e352532372532307769647468253344611c9e8201527f2532373738253237253230686569676874253344253237343425323725323066611cbe8201527f696c6c2533442532372532333030303046462532372532302f25334525334374611cde8201527f657874253230746578742d616e63686f722533442532376d6964646c65253237611cfe8201527f2532307825334425323734342e35253237253230792533442532373333253237611d1e8201527f253230636c61737325334425323776616c756525323725334500000000000000611d3e820152612ba5612b9e6129f5611d5784018a61055b565b7f2533432f746578742533452533437265637425323078253344253237352e352581527f323725323079253344253237352e35253237253230776964746825334425323760208201527f373825323725323068656967687425334425323734342532372532307374726f60408201527f6b652533442532372532334646344630412532372532307374726f6b652d776960608201527f647468253344253237332532372532302f25334525334372656374253230782560808201527f334425323733302532372532307925334425323734352e35253237253230776960a08201527f647468253344253237353825323725323068656967687425334425323738253260c08201527f3725323066696c6c2533442532372532334646344630412532372532302f253360e08201527f4525334374657874253230746578742d616e63686f72253344253237656e64256101008201527f32372532307825334425323738372532372532307925334425323735322532376101208201527f253230636c6173732533442532376e616d6525323725334500000000000000006101408201526101580190565b86886105e3565b602160f81b81529050612bbb600182018561055b565b7f2533432f746578742533452533432f737667253345227d00000000000000000081526017019a995050505050505050505056fea26469706673582212206a2c00c13ddb4f1bcd7ee36e36f0c874d7d9dadcf38306eab3610b5a6e7af83464736f6c63430008110033", + "nonce": "0x2" + }, + "additionalContracts": [], + "isFixedGasLimit": false + }, + { + "hash": "0x05c851c318f703ca1584f93726cae8b01fcd20b307c2a5add61a15b751a6cdab", + "transactionType": "CREATE", + "contractName": null, + "contractAddress": "0xCf7Ed3AccA5a467e9e704C703E8D87F634fB0Fc9", + "function": null, + "arguments": null, + "transaction": { + "type": "0x00", + "from": "0xf39fd6e51aad88f6f4ce6ab8827279cfffb92266", + "gas": "0x42230", + "value": "0x0", + "data": "0x608060405234801561001057600080fd5b506102cf806100206000396000f3fe608060405234801561001057600080fd5b506004361061004c5760003560e01c80630194db8e14610051578063072bdcc214610076578063a391c15b14610089578063b67d77c51461009c575b600080fd5b61006461005f366004610160565b6100af565b60405190815260200160405180910390f35b610064610084366004610160565b6100ef565b61006461009736600461021e565b610129565b6100646100aa36600461021e565b61013e565b600080805b83518110156100e8578381815181106100cf576100cf610240565b60200260200101518201915080806001019150506100b4565b5092915050565b60006001815b83518110156100e85783818151811061011057610110610240565b60200260200101518202915080806001019150506100f5565b60006101358284610256565b90505b92915050565b60006101358284610278565b634e487b7160e01b600052604160045260246000fd5b6000602080838503121561017357600080fd5b823567ffffffffffffffff8082111561018b57600080fd5b818501915085601f83011261019f57600080fd5b8135818111156101b1576101b161014a565b8060051b604051601f19603f830116810181811085821117156101d6576101d661014a565b6040529182528482019250838101850191888311156101f457600080fd5b938501935b82851015610212578435845293850193928501926101f9565b98975050505050505050565b6000806040838503121561023157600080fd5b50508035926020909101359150565b634e487b7160e01b600052603260045260246000fd5b60008261027357634e487b7160e01b600052601260045260246000fd5b500490565b8181038181111561013857634e487b7160e01b600052601160045260246000fdfea2646970667358221220fcdef23ba4219270ddb3ab764e22a87e229c05e6f1dfc4eeea983fa1a1dac91f64736f6c63430008110033", + "nonce": "0x3" + }, + "additionalContracts": [], + "isFixedGasLimit": false + }, + { + "hash": "0x0156ed37608a55ed8897ef8eb39ae382ec9b73dbe71b548c8f747ed4587eda48", + "transactionType": "CREATE", + "contractName": "Evmsheet", + "contractAddress": "0xDc64a140Aa3E981100a9becA4E685f962f0cF6C9", + "function": null, + "arguments": [ + "0x9fE46736679d2D9a65F0992F2272dE9f3c7fa6e0", + "10000000000000000" + ], + "transaction": { + "type": "0x00", + "from": "0xf39fd6e51aad88f6f4ce6ab8827279cfffb92266", + "gas": "0x34bf99", + "value": "0x0", + "data": "0x608060405234801561001057600080fd5b50604051612ed9380380612ed983398101604081905261002f916100b1565b61003833610061565b600280546001600160a01b0319166001600160a01b0393909316929092179091556001556100eb565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b600080604083850312156100c457600080fd5b82516001600160a01b03811681146100db57600080fd5b6020939093015192949293505050565b612ddf806100fa6000396000f3fe608060405260043610620000a95760003560e01c80638da5cb5b116200006c5780638da5cb5b146200016d578063ab2fa65a146200018d578063ae28505e14620001b4578063c56c4cf114620001d9578063f2fde38b14620001fb578063f52be2a2146200022057600080fd5b806303fb31e814620000ae5780631164c83d14620000d5578063145e414714620000ec5780635787cacb146200012e578063715018a61462000155575b600080fd5b348015620000bb57600080fd5b50620000d3620000cd36600462000778565b62000247565b005b620000d3620000e6366004620007e9565b62000273565b348015620000f957600080fd5b50620001116200010b36600462000864565b620004b2565b6040516001600160a01b0390911681526020015b60405180910390f35b3480156200013b57600080fd5b50620001466200054f565b60405162000125919062000891565b3480156200016257600080fd5b50620000d3620005b3565b3480156200017a57600080fd5b506000546001600160a01b031662000111565b3480156200019a57600080fd5b50620001a5620005cb565b604051620001259190620008e0565b348015620001c157600080fd5b5062000111620001d336600462000930565b620005f7565b348015620001e657600080fd5b5060025462000111906001600160a01b031681565b3480156200020857600080fd5b50620000d36200021a36600462000778565b62000622565b3480156200022d57600080fd5b506200023860015481565b60405190815260200162000125565b62000251620006a1565b600280546001600160a01b0319166001600160a01b0392909216919091179055565b60015434146200029d5760405163723a79e360e11b81523460048201526024015b60405180910390fd5b600060405180602001620002b1906200074d565b6020820181038252601f19601f8201166040525090506000828251602084016000f56002546040516356d3163d60e01b81526001600160a01b0391821660048201529192508216906356d3163d90602401600060405180830381600087803b1580156200031d57600080fd5b505af115801562000332573d6000803e3d6000fd5b505060405163c47f002760e01b81526001600160a01b038416925063c47f0027915062000366908a908a906004016200094a565b600060405180830381600087803b1580156200038157600080fd5b505af115801562000396573d6000803e3d6000fd5b5050604051635c26412360e11b81526001600160a01b038416925063b84c82469150620003ca90889088906004016200094a565b600060405180830381600087803b158015620003e557600080fd5b505af1158015620003fa573d6000803e3d6000fd5b505060405163f2fde38b60e01b81523260048201526001600160a01b038416925063f2fde38b9150602401600060405180830381600087803b1580156200044057600080fd5b505af115801562000455573d6000803e3d6000fd5b5050600380546001810182556000919091527fc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b0180546001600160a01b0319166001600160a01b0394909416939093179092555050505050505050565b600060ff60f81b838360405180602001620004cd906200074d565b6020820181038252601f19601f82011660405250805190602001206040516020016200053094939291906001600160f81b031994909416845260609290921b6bffffffffffffffffffffffff191660018401526015830152603582015260550190565b60408051601f1981840301815291905280516020909101209392505050565b60606003805480602002602001604051908101604052809291908181526020018280548015620005a957602002820191906000526020600020905b81546001600160a01b031681526001909101906020018083116200058a575b5050505050905090565b620005bd620006a1565b620005c96000620006fd565b565b606060405180602001620005df906200074d565b601f1982820381018352601f90910116604052919050565b600381815481106200060857600080fd5b6000918252602090912001546001600160a01b0316905081565b6200062c620006a1565b6001600160a01b038116620006935760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b606482015260840162000294565b6200069e81620006fd565b50565b6000546001600160a01b03163314620005c95760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015260640162000294565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b612430806200097a83390190565b80356001600160a01b03811681146200077357600080fd5b919050565b6000602082840312156200078b57600080fd5b62000796826200075b565b9392505050565b60008083601f840112620007b057600080fd5b50813567ffffffffffffffff811115620007c957600080fd5b602083019150836020828501011115620007e257600080fd5b9250929050565b6000806000806000606086880312156200080257600080fd5b853567ffffffffffffffff808211156200081b57600080fd5b6200082989838a016200079d565b909750955060208801359150808211156200084357600080fd5b5062000852888289016200079d565b96999598509660400135949350505050565b600080604083850312156200087857600080fd5b62000883836200075b565b946020939093013593505050565b6020808252825182820181905260009190848201906040850190845b81811015620008d45783516001600160a01b031683529284019291840191600101620008ad565b50909695505050505050565b600060208083528351808285015260005b818110156200090f57858101830151858201604001528201620008f1565b506000604082860101526040601f19601f8301168501019250505092915050565b6000602082840312156200094357600080fd5b5035919050565b60208152816020820152818360408301376000818301604090810191909152601f909201601f1916010191905056fe60806040523480156200001157600080fd5b50604051806040016040528060078152602001660536865657420360cc1b815250604051806040016040528060048152602001630534854360e41b81525062000069620000636200008f60201b60201c565b62000093565b600162000077838262000188565b50600262000086828262000188565b50505062000254565b3390565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b634e487b7160e01b600052604160045260246000fd5b600181811c908216806200010e57607f821691505b6020821081036200012f57634e487b7160e01b600052602260045260246000fd5b50919050565b601f8211156200018357600081815260208120601f850160051c810160208610156200015e5750805b601f850160051c820191505b818110156200017f578281556001016200016a565b5050505b505050565b81516001600160401b03811115620001a457620001a4620000e3565b620001bc81620001b58454620000f9565b8462000135565b602080601f831160018114620001f45760008415620001db5750858301515b600019600386901b1c1916600185901b1785556200017f565b600085815260208120601f198616915b82811015620002255788860151825594840194600190910190840162000204565b5085821015620002445787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b6121cc80620002646000396000f3fe608060405234801561001057600080fd5b50600436106102275760003560e01c8063715018a611610130578063b85d8b85116100b8578063cf0983981161007c578063cf09839814610512578063cfbe95d814610535578063df4ca20614610556578063e985e9c514610576578063f2fde38b146105a457600080fd5b8063b85d8b85146104a4578063b88d4fde146104ce578063b8c368ec146104e1578063c47f0027146104ec578063c87b56dd146104ff57600080fd5b806395d89b41116100ff57806395d89b4114610439578063a22cb46514610441578063b46ebb1214610454578063b6d658e114610467578063b84c82461461049157600080fd5b8063715018a6146103fa578063768d5029146104025780638ada6b0f146104155780638da5cb5b1461042857600080fd5b80631b06443c116101b35780634f6ccce7116101825780634f6ccce71461038157806356d3163d146103a15780636352211e146103b45780636a0abc74146103c757806370a08231146103e757600080fd5b80631b06443c14610335578063206848f61461034857806323b872dd1461035b57806342842e0e1461036e57600080fd5b8063081812fc116101fa578063081812fc146102a1578063095ea7b3146102e2578063172b9eed146102f757806318160ddd1461030a5780631941fd141461031357600080fd5b806301ffc9a71461022c57806302f3c4c91461025457806306fdde03146102745780630715a24a1461027c575b600080fd5b61023f61023a36600461176a565b6105b7565b60405190151581526020015b60405180910390f35b610267610262366004611861565b610609565b60405161024b9190611951565b610267610638565b6102936fffffffffffffffffffffffffffffffff81565b60405190815260200161024b565b6102ca6102af366004611964565b6005602052600090815260409020546001600160a01b031681565b6040516001600160a01b03909116815260200161024b565b6102f56102f036600461197d565b6106c6565b005b6102676103053660046119a9565b6107ad565b61029360075481565b610326610321366004611964565b610875565b60405161024b939291906119de565b6102ca610343366004611a0e565b61092a565b610326610356366004611964565b6109e3565b6102f5610369366004611a2b565b610ae1565b6102f561037c366004611a2b565b610ca8565b61029361038f366004611964565b60086020526000908152604090205481565b6102f56103af366004611a0e565b610da0565b6102ca6103c2366004611964565b610dca565b6103da6103d53660046119a9565b610e1c565b60405161024b9190611a6c565b6102936103f5366004611a0e565b610e60565b6102f5610ec3565b6102f5610410366004611af9565b610ed7565b6009546102ca906001600160a01b031681565b6000546001600160a01b03166102ca565b610267611035565b6102f561044f366004611b63565b611042565b610267610462366004611964565b6110ae565b61047a610475366004611964565b611258565b60408051921515835260208301919091520161024b565b6102f561049f366004611ba1565b611275565b6104b56104b2366004611964565b90565b6040516001600160e01b0319909116815260200161024b565b6102f56104dc366004611be3565b6112c6565b6102ca600160801b81565b6102f56104fa366004611ba1565b6113ae565b61026761050d366004611964565b6113ff565b61023f610520366004611a0e565b600160801b6001600160a01b03919091161090565b61023f610543366004611861565b516001600160a01b0316600160801b1490565b610569610564366004611964565b6114c9565b60405161024b9190611c16565b61023f610584366004611c4d565b600660209081526000928352604080842090915290825290205460ff1681565b6102f56105b2366004611a0e565b611526565b60006301ffc9a760e01b6001600160e01b0319831614806105e857506380ac58cd60e01b6001600160e01b03198316145b806106035750635b5e139f60e01b6001600160e01b03198316145b92915050565b6060816020015160405160200161062291815260200190565b6040516020818303038152906040529050919050565b6001805461064590611c7b565b80601f016020809104026020016040519081016040528092919081815260200182805461067190611c7b565b80156106be5780601f10610693576101008083540402835291602001916106be565b820191906000526020600020905b8154815290600101906020018083116106a157829003601f168201915b505050505081565b6000818152600360205260409020546001600160a01b03163381148061070f57506001600160a01b038116600090815260066020908152604080832033845290915290205460ff165b6107515760405162461bcd60e51b815260206004820152600e60248201526d1393d517d055551213d49256915160921b60448201526064015b60405180910390fd5b60008281526005602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b606060006107ba83610e1c565b9050606060005b825181101561086d576000806107ef8584815181106107e2576107e2611cb5565b6020026020010151611258565b9150915081156108335783610803826110ae565b61080c90611ccb565b60405160200161081d929190611cef565b6040516020818303038152906040529350610858565b6040516108469085908390602001611cef565b60405160208183030381529060405293505b5050808061086590611d27565b9150506107c1565b509392505050565b600a602052600090815260409020805460018201546002830180546001600160a01b039093169391926108a790611c7b565b80601f01602080910402602001604051908101604052809291908181526020018280546108d390611c7b565b80156109205780601f106108f557610100808354040283529160200191610920565b820191906000526020600020905b81548152906001019060200180831161090357829003601f168201915b5050505050905083565b6000600160801b6001600160a01b03831610156109da576000610955836001600160a01b03166110ae565b604051632d737e4960e21b8152909150735fbdb2315678afecb367f032d93f642f64180aa39063b5cdf92490610992908490600090600401611d40565b602060405180830381865af41580156109af573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906109d39190611d62565b9392505050565b5090565b919050565b60008181526003602052604081205481906060906001600160a01b0316610a1057600160801b9250610a2b565b6000848152600a60205260409020546001600160a01b031692505b6000848152600a60205260409020600181015460029091018054859291908190610a5490611c7b565b80601f0160208091040260200160405190810160405280929190818152602001828054610a8090611c7b565b8015610acd5780601f10610aa257610100808354040283529160200191610acd565b820191906000526020600020905b815481529060010190602001808311610ab057829003601f168201915b505050505090509250925092509193909250565b6000818152600360205260409020546001600160a01b03848116911614610b375760405162461bcd60e51b815260206004820152600a60248201526957524f4e475f46524f4d60b01b6044820152606401610748565b6001600160a01b038216610b815760405162461bcd60e51b81526020600482015260116024820152701253959053125117d49150d25412515395607a1b6044820152606401610748565b336001600160a01b0384161480610bbb57506001600160a01b038316600090815260066020908152604080832033845290915290205460ff165b80610bdc57506000818152600560205260409020546001600160a01b031633145b610c195760405162461bcd60e51b815260206004820152600e60248201526d1393d517d055551213d49256915160921b6044820152606401610748565b6001600160a01b0380841660008181526004602090815260408083208054600019019055938616808352848320805460010190558583526003825284832080546001600160a01b03199081168317909155600590925284832080549092169091559251849392917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b610cb3838383610ae1565b6001600160a01b0382163b1580610d5c5750604051630a85bd0160e11b8082523360048301526001600160a01b03858116602484015260448301849052608060648401526000608484015290919084169063150b7a029060a4016020604051808303816000875af1158015610d2c573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610d509190611d7b565b6001600160e01b031916145b610d9b5760405162461bcd60e51b815260206004820152601060248201526f155394d0519157d49150d2541251539560821b6044820152606401610748565b505050565b610da861159f565b600980546001600160a01b0319166001600160a01b0392909216919091179055565b6000818152600360205260409020546001600160a01b0316806109de5760405162461bcd60e51b815260206004820152600a6024820152691393d517d3525395115160b21b6044820152606401610748565b60608082516040519150602081048252602082016020850160005b83811015610e4f578181015183820152602001610e37565b505050810160200160405292915050565b60006001600160a01b038216610ea75760405162461bcd60e51b815260206004820152600c60248201526b5a45524f5f4144445245535360a01b6044820152606401610748565b506001600160a01b031660009081526004602052604090205490565b610ecb61159f565b610ed560006115f9565b565b6000858152600360205260409020546001600160a01b0316610f2f57610efd3286611649565b60078054600090815260086020526040812087905581546001929190610f24908490611d98565b90915550610f889050565b6000858152600360205260409020546001600160a01b03163214610f8857600085815260036020526040908190205490516324f3f02560e21b81526001600160a01b039091166004820152326024820152604401610748565b6040518060600160405280856001600160a01b0316815260200184815260200183838080601f0160208091040260200160405190810160405280939291908181526020018383808284376000920182905250939094525050878152600a6020908152604091829020845181546001600160a01b0319166001600160a01b0390911617815590840151600182015590830151909150600282019061102b9082611df9565b5050505050505050565b6002805461064590611c7b565b3360008181526006602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b6000818152600a6020908152604080832081516060818101845282546001600160a01b0316825260018301549482019490945260028201805494959491938401916110f890611c7b565b80601f016020809104026020016040519081016040528092919081815260200182805461112490611c7b565b80156111715780601f1061114657610100808354040283529160200191611171565b820191906000526020600020905b81548152906001019060200180831161115457829003601f168201915b505050505081525050905061119381516001600160a01b0316600160801b1490565b156111a1576109d381610609565b60006111b0826000015161092a565b905060006111bf836020015190565b905060006111d084604001516107ad565b90506000836001600160a01b031683836040516020016111f1929190611eb9565b60408051601f198184030181529082905261120b91611eea565b600060405180830381855afa9150503d8060008114611246576040519150601f19603f3d011682016040523d82523d6000602084013e61124b565b606091505b5098975050505050505050565b600080611266600284611f06565b60019081149493901c92915050565b61127d61159f565b7f8dca0271872d00b3de3abafca544c52fcd7d512dd852c9894fa2c118ac759a93600283836040516112b193929190611fce565b60405180910390a16002610d9b828483611ffe565b6112d1858585610ae1565b6001600160a01b0384163b15806113685750604051630a85bd0160e11b808252906001600160a01b0386169063150b7a02906113199033908a908990899089906004016120be565b6020604051808303816000875af1158015611338573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061135c9190611d7b565b6001600160e01b031916145b6113a75760405162461bcd60e51b815260206004820152601060248201526f155394d0519157d49150d2541251539560821b6044820152606401610748565b5050505050565b6113b661159f565b7fb65b7b5ea384affd30f77f842e057d29dd1b13f133adf69a724a8105b164ab75600183836040516113ea93929190611fce565b60405180910390a16001610d9b828483611ffe565b6000818152600360205260409020546060906001600160a01b03168061143b57604051630243d1a960e21b815260048101849052602401610748565b6000611446846110ae565b6009546040516328de0f2f60e01b81529192506001600160a01b0316906328de0f2f9061147c90879085906001906004016120fd565b600060405180830381865afa158015611499573d6000803e3d6000fd5b505050506040513d6000823e601f3d908101601f191682016040526114c19190810190612128565b949350505050565b604080516060808201835260008083526020830181905292820152906114ee836110ae565b6040805160608101825285815260009586526003602090815295829020546001600160a01b0316958101959095528401525090919050565b61152e61159f565b6001600160a01b0381166115935760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610748565b61159c816115f9565b50565b6000546001600160a01b03163314610ed55760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610748565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b6001600160a01b0382166116935760405162461bcd60e51b81526020600482015260116024820152701253959053125117d49150d25412515395607a1b6044820152606401610748565b6000818152600360205260409020546001600160a01b0316156116e95760405162461bcd60e51b815260206004820152600e60248201526d1053149150511657d3525395115160921b6044820152606401610748565b6001600160a01b038216600081815260046020908152604080832080546001019055848352600390915280822080546001600160a01b0319168417905551839291907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b6001600160e01b03198116811461159c57600080fd5b60006020828403121561177c57600080fd5b81356109d381611754565b634e487b7160e01b600052604160045260246000fd5b604051601f8201601f1916810167ffffffffffffffff811182821017156117c6576117c6611787565b604052919050565b6001600160a01b038116811461159c57600080fd5b600067ffffffffffffffff8211156117fd576117fd611787565b50601f01601f191660200190565b600082601f83011261181c57600080fd5b813561182f61182a826117e3565b61179d565b81815284602083860101111561184457600080fd5b816020850160208301376000918101602001919091529392505050565b60006020828403121561187357600080fd5b813567ffffffffffffffff8082111561188b57600080fd5b908301906060828603121561189f57600080fd5b6040516060810181811083821117156118ba576118ba611787565b60405282356118c8816117ce565b8152602083810135908201526040830135828111156118e657600080fd5b6118f28782860161180b565b60408301525095945050505050565b60005b8381101561191c578181015183820152602001611904565b50506000910152565b6000815180845261193d816020860160208601611901565b601f01601f19169290920160200192915050565b6020815260006109d36020830184611925565b60006020828403121561197657600080fd5b5035919050565b6000806040838503121561199057600080fd5b823561199b816117ce565b946020939093013593505050565b6000602082840312156119bb57600080fd5b813567ffffffffffffffff8111156119d257600080fd5b6114c18482850161180b565b60018060a01b0384168152826020820152606060408201526000611a056060830184611925565b95945050505050565b600060208284031215611a2057600080fd5b81356109d3816117ce565b600080600060608486031215611a4057600080fd5b8335611a4b816117ce565b92506020840135611a5b816117ce565b929592945050506040919091013590565b6020808252825182820181905260009190848201906040850190845b81811015611aa457835183529284019291840191600101611a88565b50909695505050505050565b60008083601f840112611ac257600080fd5b50813567ffffffffffffffff811115611ada57600080fd5b602083019150836020828501011115611af257600080fd5b9250929050565b600080600080600060808688031215611b1157600080fd5b853594506020860135611b23816117ce565b935060408601359250606086013567ffffffffffffffff811115611b4657600080fd5b611b5288828901611ab0565b969995985093965092949392505050565b60008060408385031215611b7657600080fd5b8235611b81816117ce565b915060208301358015158114611b9657600080fd5b809150509250929050565b60008060208385031215611bb457600080fd5b823567ffffffffffffffff811115611bcb57600080fd5b611bd785828601611ab0565b90969095509350505050565b600080600080600060808688031215611bfb57600080fd5b8535611c06816117ce565b94506020860135611b23816117ce565b602081528151602082015260018060a01b036020830151166040820152600060408301516060808401526114c16080840182611925565b60008060408385031215611c6057600080fd5b8235611c6b816117ce565b91506020830135611b96816117ce565b600181811c90821680611c8f57607f821691505b602082108103611caf57634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052603260045260246000fd5b80516020808301519190811015611caf5760001960209190910360031b1b16919050565b60008351611d01818460208801611901565b9190910191825250602001919050565b634e487b7160e01b600052601160045260246000fd5b600060018201611d3957611d39611d11565b5060010190565b604081526000611d536040830185611925565b90508260208301529392505050565b600060208284031215611d7457600080fd5b5051919050565b600060208284031215611d8d57600080fd5b81516109d381611754565b8082018082111561060357610603611d11565b601f821115610d9b57600081815260208120601f850160051c81016020861015611dd25750805b601f850160051c820191505b81811015611df157828155600101611dde565b505050505050565b815167ffffffffffffffff811115611e1357611e13611787565b611e2781611e218454611c7b565b84611dab565b602080601f831160018114611e5c5760008415611e445750858301515b600019600386901b1c1916600185901b178555611df1565b600085815260208120601f198616915b82811015611e8b57888601518255948401946001909101908401611e6c565b5085821015611ea95787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b6001600160e01b0319831681528151600090611edc816004850160208701611901565b919091016004019392505050565b60008251611efc818460208701611901565b9190910192915050565b600082611f2357634e487b7160e01b600052601260045260246000fd5b500690565b60008154611f3581611c7b565b808552602060018381168015611f525760018114611f6c57611f9a565b60ff1985168884015283151560051b880183019550611f9a565b866000528260002060005b85811015611f925781548a8201860152908301908401611f77565b890184019650505b505050505092915050565b81835281816020850137506000828201602090810191909152601f909101601f19169091010190565b604081526000611fe16040830186611f28565b8281036020840152611ff4818587611fa5565b9695505050505050565b67ffffffffffffffff83111561201657612016611787565b61202a836120248354611c7b565b83611dab565b6000601f84116001811461205e57600085156120465750838201355b600019600387901b1c1916600186901b1783556113a7565b600083815260209020601f19861690835b8281101561208f578685013582556020948501946001909201910161206f565b50868210156120ac5760001960f88860031b161c19848701351681555b505060018560011b0183555050505050565b6001600160a01b03868116825285166020820152604081018490526080606082018190526000906120f29083018486611fa5565b979650505050505050565b8381526060602082015260006121166060830185611925565b8281036040840152611ff48185611f28565b60006020828403121561213a57600080fd5b815167ffffffffffffffff81111561215157600080fd5b8201601f8101841361216257600080fd5b805161217061182a826117e3565b81815285602083850101111561218557600080fd5b611a0582602083016020860161190156fea26469706673582212203fc548aa4f22e6f4c01757ba3f2e0383630418b3d17601758718ab19a4d9918d64736f6c63430008110033a26469706673582212207932e8c793f9a96d9606a8907a6671f54c0fb1ed5a763048e13b429274e7706c64736f6c634300081100330000000000000000000000009fe46736679d2d9a65f0992f2272de9f3c7fa6e0000000000000000000000000000000000000000000000000002386f26fc10000", + "nonce": "0x4" + }, + "additionalContracts": [], + "isFixedGasLimit": false + } + ], + "receipts": [ + { + "transactionHash": "0x045f89ca387f2853a2a30f92868bdf8945580b501a47d7aef7e168a4febacd61", + "transactionIndex": "0x0", + "blockHash": "0x073d71b449878603d31287338acca94dcb45b40e11e449e2ab2b1656be333e6a", + "blockNumber": "0xb", + "from": "0xf39Fd6e51aad88F6F4ce6aB8827279cffFb92266", + "to": null, + "cumulativeGasUsed": "0xf4240", + "gasUsed": "0x7a120", + "contractAddress": "0xe7f1725E7734CE288F8367e1Bb143E90bb3F0512", + "logs": [], + "status": "0x1", + "logsBloom": "0x00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", + "type": "0x0", + "effectiveGasPrice": "0xf4240" + }, + { + "transactionHash": "0x000128fbbcf1ce04facb50cb06b25514ad5927f52ec5b5b497f9cc8acff8a383", + "transactionIndex": "0x0", + "blockHash": "0x0365db0c5c55e83555a1ad1cb190a6c89c8d9ee6946e001ad1599f03c142c22d", + "blockNumber": "0xc", + "from": "0xf39Fd6e51aad88F6F4ce6aB8827279cffFb92266", + "to": null, + "cumulativeGasUsed": "0xf4240", + "gasUsed": "0x7a120", + "contractAddress": "0x9fE46736679d2D9a65F0992F2272dE9f3c7fa6e0", + "logs": [], + "status": "0x1", + "logsBloom": "0x00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", + "type": "0x0", + "effectiveGasPrice": "0xf4240" + }, + { + "transactionHash": "0x027230bd60128347bd04e3fa2055be2e2ba4fcd489e1ac59cc7d43bbceab7797", + "transactionIndex": "0x0", + "blockHash": "0x022f9bb72b6d7865f23e51646c45fad560519fa7d52ccc958e9823cc1f365f8f", + "blockNumber": "0xd", + "from": "0xf39Fd6e51aad88F6F4ce6aB8827279cffFb92266", + "to": null, + "cumulativeGasUsed": "0xf4240", + "gasUsed": "0x7a120", + "contractAddress": "0xCf7Ed3AccA5a467e9e704C703E8D87F634fB0Fc9", + "logs": [], + "status": "0x1", + "logsBloom": "0x00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", + "type": "0x0", + "effectiveGasPrice": "0xf4240" + } + ], + "libraries": [ + "lib/eth-projects-monorepo/packages/eth-projects-contracts/contracts/lib/utils/Bytes.sol:Bytes:0x5fbdb2315678afecb367f032d93f642f64180aa3" + ], + "pending": [ + "0x05c851c318f703ca1584f93726cae8b01fcd20b307c2a5add61a15b751a6cdab", + "0x0156ed37608a55ed8897ef8eb39ae382ec9b73dbe71b548c8f747ed4587eda48" + ], + "returns": {}, + "timestamp": 1689180273, + "chain": 1263227476, + "multi": false, + "commit": "24c72b7" +} \ No newline at end of file diff --git a/packages/starksheet-solidity/broadcast/Evmsheet.s.sol/1263227476/run-1689251518.json b/packages/starksheet-solidity/broadcast/Evmsheet.s.sol/1263227476/run-1689251518.json new file mode 100644 index 00000000..c15cdc52 --- /dev/null +++ b/packages/starksheet-solidity/broadcast/Evmsheet.s.sol/1263227476/run-1689251518.json @@ -0,0 +1,201 @@ +{ + "transactions": [ + { + "hash": "0x0124850dcada74c923992ce050e2ee840042b4547a57956c17b9b6cc963df77c", + "transactionType": "CREATE", + "contractName": "Bytes", + "contractAddress": "0x5FbDB2315678afecb367f032d93F642f64180aa3", + "function": null, + "arguments": null, + "transaction": { + "type": "0x00", + "from": "0xf39fd6e51aad88f6f4ce6ab8827279cfffb92266", + "gas": "0x1387ed", + "data": "0x6110d661003a600b82828239805160001a60731461002d57634e487b7160e01b600052600060045260246000fd5b30600052607381538281f3fe73000000000000000000000000000000000000000030146080604052600436106101625760003560e01c8063a5eb31ee116100cd578063d1ffb56111610086578063d1ffb561146103fb578063d442584f1461042b578063e004139614610454578063f1142fb314610474578063f647f8fb14610487578063f83b670f146104b257600080fd5b8063a5eb31ee14610344578063a8d8f00f1461036b578063b5cdf92414610396578063b63711df146103a9578063be8b3430146103bc578063c29616bd146103cf57600080fd5b80635ef849301161011f5780635ef8493014610241578063913c97b41461026b57806397e6175c1461029f57806399dd9bd7146102cb5780639ae4c3d1146102ec5780639cee499e1461031857600080fd5b8063042aa0841461016757806305d3bb74146101985780631a7431ef146101c0578063235266d2146101e357806348137709146101f65780634d66a2ae1461021b575b600080fd5b61017a610175366004610ec0565b6104de565b6040516001600160d01b031990911681526020015b60405180910390f35b6101ab6101a6366004610ec0565b610540565b60405163ffffffff909116815260200161018f565b6101d36101ce366004610f05565b61059d565b604051901515815260200161018f565b6101d36101f1366004610f4c565b610652565b610209610204366004610ec0565b6106b5565b60405160ff909116815260200161018f565b61022e610229366004610fa6565b610711565b60405161ffff909116815260200161018f565b61025461024f366004610ec0565b61071e565b60405165ffffffffffff909116815260200161018f565b61027e610279366004610ec0565b610772565b6040516fffffffffffffffffffffffffffffffff909116815260200161018f565b6102b26102ad366004610ec0565b6107d0565b6040516001600160a01b0319909116815260200161018f565b6102de6102d9366004610ec0565b61082e565b60405190815260200161018f565b6102ff6102fa366004610ec0565b61088c565b60405167ffffffffffffffff909116815260200161018f565b61032b610326366004610ec0565b6108e9565b6040516001600160d81b0319909116815260200161018f565b610357610352366004610ec0565b610946565b60405162ffffff909116815260200161018f565b61037e610379366004610ec0565b6109a3565b60405166ffffffffffffff909116815260200161018f565b6102de6103a4366004610ec0565b610a00565b6102ff6103b7366004610ec0565b610a55565b61022e6103ca366004610ec0565b610aa9565b6103e26103dd366004610ec0565b610b06565b6040516001600160c81b0319909116815260200161018f565b61040e610409366004610ec0565b610b5a565b6040516bffffffffffffffffffffffff909116815260200161018f565b61043e610439366004610ec0565b610bae565b60405164ffffffffff909116815260200161018f565b610467610462366004610fe3565b610c02565b60405161018f9190611031565b6102b2610482366004610ec0565b610d0f565b61049a610495366004610ec0565b610d64565b6040516001600160a01b03909116815260200161018f565b6104c56104c0366004610ec0565b610dc9565b6040516001600160f81b0319909116815260200161018f565b60006104eb82600661107f565b835110156105375760405162461bcd60e51b8152602060048201526014602482015273746f4279746573365f6f75744f66426f756e647360601b60448201526064015b60405180910390fd5b50016006015190565b600061054d82600461107f565b835110156105945760405162461bcd60e51b8152602060048201526014602482015273746f55696e7433325f6f75744f66426f756e647360601b604482015260640161052e565b50016004015190565b600080600190508354600260018083161561010002038216048451808214600181146105cc5760009450610644565b821561064457602083106001811461062957600189600052602060002060208a018581015b600284828410010361062057815183541461060f5760009950600093505b6001830192506020820191506105f1565b50505050610642565b6101008086040294506020880151851461064257600095505b505b509293505050505b92915050565b81518151600091600191811480831461066e57600092506106ab565b600160208701838101602088015b60028483851001036106a657805183511461069a5760009650600093505b6020928301920161067c565b505050505b5090949350505050565b60006106c282600161107f565b835110156107085760405162461bcd60e51b8152602060048201526013602482015272746f55696e74385f6f75744f66426f756e647360681b604482015260640161052e565b50016001015190565b600061064c826000610aa9565b600061072b82600661107f565b835110156105375760405162461bcd60e51b8152602060048201526014602482015273746f55696e7434385f6f75744f66426f756e647360601b604482015260640161052e565b600061077f82601061107f565b835110156107c75760405162461bcd60e51b8152602060048201526015602482015274746f55696e743132385f6f75744f66426f756e647360581b604482015260640161052e565b50016010015190565b60006107dd82600c61107f565b835110156108255760405162461bcd60e51b8152602060048201526015602482015274746f427974657331325f6f75744f66426f756e647360581b604482015260640161052e565b5001600c015190565b600061083b82602061107f565b835110156108835760405162461bcd60e51b8152602060048201526015602482015274746f427974657333325f6f75744f66426f756e647360581b604482015260640161052e565b50016020015190565b600061089982600861107f565b835110156108e05760405162461bcd60e51b8152602060048201526014602482015273746f55696e7436345f6f75744f66426f756e647360601b604482015260640161052e565b50016008015190565b60006108f682600561107f565b8351101561093d5760405162461bcd60e51b8152602060048201526014602482015273746f4279746573355f6f75744f66426f756e647360601b604482015260640161052e565b50016005015190565b600061095382600361107f565b8351101561099a5760405162461bcd60e51b8152602060048201526014602482015273746f55696e7432345f6f75744f66426f756e647360601b604482015260640161052e565b50016003015190565b60006109b082600761107f565b835110156109f75760405162461bcd60e51b8152602060048201526014602482015273746f55696e7435365f6f75744f66426f756e647360601b604482015260640161052e565b50016007015190565b6000610a0d82602061107f565b835110156108835760405162461bcd60e51b8152602060048201526015602482015274746f55696e743235365f6f75744f66426f756e647360581b604482015260640161052e565b6000610a6282600861107f565b835110156108e05760405162461bcd60e51b8152602060048201526014602482015273746f4279746573385f6f75744f66426f756e647360601b604482015260640161052e565b6000610ab682600261107f565b83511015610afd5760405162461bcd60e51b8152602060048201526014602482015273746f55696e7431365f6f75744f66426f756e647360601b604482015260640161052e565b50016002015190565b6000610b1382600761107f565b835110156109f75760405162461bcd60e51b8152602060048201526014602482015273746f4279746573375f6f75744f66426f756e647360601b604482015260640161052e565b6000610b6782600c61107f565b835110156108255760405162461bcd60e51b8152602060048201526014602482015273746f55696e7439365f6f75744f66426f756e647360601b604482015260640161052e565b6000610bbb82600561107f565b8351101561093d5760405162461bcd60e51b8152602060048201526014602482015273746f55696e7434305f6f75744f66426f756e647360601b604482015260640161052e565b606081610c1081601f61107f565b1015610c4f5760405162461bcd60e51b815260206004820152600e60248201526d736c6963655f6f766572666c6f7760901b604482015260640161052e565b610c59828461107f565b84511015610c9d5760405162461bcd60e51b8152602060048201526011602482015270736c6963655f6f75744f66426f756e647360781b604482015260640161052e565b606082158015610cbc5760405191506000825260208201604052610d06565b6040519150601f8416801560200281840101858101878315602002848b0101015b81831015610cf5578051835260209283019201610cdd565b5050858452601f01601f1916604052505b50949350505050565b6000610d1c82601061107f565b835110156107c75760405162461bcd60e51b8152602060048201526015602482015274746f427974657331365f6f75744f66426f756e647360581b604482015260640161052e565b6000610d7182601461107f565b83511015610db95760405162461bcd60e51b8152602060048201526015602482015274746f416464726573735f6f75744f66426f756e647360581b604482015260640161052e565b500160200151600160601b900490565b6000610dd682600161107f565b835110156107085760405162461bcd60e51b8152602060048201526014602482015273746f4279746573315f6f75744f66426f756e647360601b604482015260640161052e565b634e487b7160e01b600052604160045260246000fd5b600082601f830112610e4457600080fd5b813567ffffffffffffffff80821115610e5f57610e5f610e1d565b604051601f8301601f19908116603f01168101908282118183101715610e8757610e87610e1d565b81604052838152866020858801011115610ea057600080fd5b836020870160208301376000602085830101528094505050505092915050565b60008060408385031215610ed357600080fd5b823567ffffffffffffffff811115610eea57600080fd5b610ef685828601610e33565b95602094909401359450505050565b60008060408385031215610f1857600080fd5b82359150602083013567ffffffffffffffff811115610f3657600080fd5b610f4285828601610e33565b9150509250929050565b60008060408385031215610f5f57600080fd5b823567ffffffffffffffff80821115610f7757600080fd5b610f8386838701610e33565b93506020850135915080821115610f9957600080fd5b50610f4285828601610e33565b600060208284031215610fb857600080fd5b813567ffffffffffffffff811115610fcf57600080fd5b610fdb84828501610e33565b949350505050565b600080600060608486031215610ff857600080fd5b833567ffffffffffffffff81111561100f57600080fd5b61101b86828701610e33565b9660208601359650604090950135949350505050565b600060208083528351808285015260005b8181101561105e57858101830151858201604001528201611042565b506000604082860101526040601f19601f8301168501019250505092915050565b8082018082111561064c57634e487b7160e01b600052601160045260246000fdfea26469706673582212205bdf5bc4551862519f5370e0dcec38eefbbbe11b6a5bf19ce2846b4f8831a5dc64736f6c63430008110033", + "nonce": "0x0" + }, + "additionalContracts": [], + "isFixedGasLimit": false + }, + { + "hash": "0x055b40f42b8113763f60d148899c32614b79d0bd443cbe46398f48c60494d812", + "transactionType": "CREATE", + "contractName": "MultiSendCallOnly", + "contractAddress": "0xe7f1725E7734CE288F8367e1Bb143E90bb3F0512", + "function": null, + "arguments": null, + "transaction": { + "type": "0x00", + "from": "0xf39fd6e51aad88f6f4ce6ab8827279cfffb92266", + "gas": "0x2e5c4", + "value": "0x0", + "data": "0x608060405234801561001057600080fd5b506101ae806100206000396000f3fe60806040526004361061001e5760003560e01c80638d80ff0a14610023575b600080fd5b6100366100313660046100c7565b610038565b005b805160205b818110156100ac578083015160f81c6001820184015160601c601583018501516035840186015160558501870160008560008114610082576001811461001e5761008e565b6000808585888a5af191505b508061009957600080fd5b505080605501850194505050505061003d565b505050565b634e487b7160e01b600052604160045260246000fd5b6000602082840312156100d957600080fd5b813567ffffffffffffffff808211156100f157600080fd5b818401915084601f83011261010557600080fd5b813581811115610117576101176100b1565b604051601f8201601f19908116603f0116810190838211818310171561013f5761013f6100b1565b8160405282815287602084870101111561015857600080fd5b82602086016020830137600092810160200192909252509594505050505056fea2646970667358221220c15490bbb756a4c3c49d6335b2e81d2d098647b0ea70174c2279f199b1d0800364736f6c63430008110033", + "nonce": "0x1" + }, + "additionalContracts": [], + "isFixedGasLimit": false + }, + { + "hash": "0x0654b0f23edc28807ac6c7fcfe6063eb47c6ef0ad87653f48f0f55d980677dc9", + "transactionType": "CREATE", + "contractName": "BasicCellRenderer", + "contractAddress": "0x9fE46736679d2D9a65F0992F2272dE9f3c7fa6e0", + "function": null, + "arguments": null, + "transaction": { + "type": "0x00", + "from": "0xf39fd6e51aad88f6f4ce6ab8827279cfffb92266", + "gas": "0x3180ad", + "value": "0x0", + "data": "0x608060405234801561001057600080fd5b50612c25806100206000396000f3fe608060405234801561001057600080fd5b50600436106100365760003560e01c806306d4cd8b1461003b57806328de0f2f14610064575b600080fd5b61004e610049366004610322565b610077565b60405161005b919061038b565b60405180910390f35b61004e610072366004610404565b6100f1565b60606000610086600f846104fc565b90506000610095600f8361051e565b61009f9085610535565b905060006100ae826041610548565b60f81b9050806100c76100c2856001610548565b6101b6565b6040516020016100d8929190610577565b6040516020818303038152906040529350505050919050565b606060006100fe86610077565b905083838261018388735fbdb2315678afecb367f032d93f642f64180aa363b5cdf924909160006040518363ffffffff1660e01b81526004016101429291906105a8565b602060405180830381865af415801561015f573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906100c291906105ca565b87878660405160200161019c97969594939291906105f2565b604051602081830303815290604052915050949350505050565b606060006101c383610249565b600101905060008167ffffffffffffffff8111156101e3576101e36103a5565b6040519080825280601f01601f19166020018201604052801561020d576020820181803683370190505b5090508181016020015b600019016f181899199a1a9b1b9c1cb0b131b232b360811b600a86061a8153600a850494508461021757509392505050565b60008072184f03e93ff9f4daa797ed6e38ed64bf6a1f0160401b83106102885772184f03e93ff9f4daa797ed6e38ed64bf6a1f0160401b830492506040015b6d04ee2d6d415b85acef810000000083106102b4576d04ee2d6d415b85acef8100000000830492506020015b662386f26fc1000083106102d257662386f26fc10000830492506010015b6305f5e10083106102ea576305f5e100830492506008015b61271083106102fe57612710830492506004015b60648310610310576064830492506002015b600a831061031c576001015b92915050565b60006020828403121561033457600080fd5b5035919050565b60005b8381101561035657818101518382015260200161033e565b50506000910152565b6000815180845261037781602086016020860161033b565b601f01601f19169290920160200192915050565b60208152600061039e602083018461035f565b9392505050565b634e487b7160e01b600052604160045260246000fd5b60008083601f8401126103cd57600080fd5b50813567ffffffffffffffff8111156103e557600080fd5b6020830191508360208285010111156103fd57600080fd5b9250929050565b6000806000806060858703121561041a57600080fd5b84359350602085013567ffffffffffffffff8082111561043957600080fd5b818701915087601f83011261044d57600080fd5b81358181111561045f5761045f6103a5565b604051601f8201601f19908116603f01168101908382118183101715610487576104876103a5565b816040528281528a60208487010111156104a057600080fd5b8260208601602083013760006020848301015280975050505060408701359150808211156104cd57600080fd5b506104da878288016103bb565b95989497509550505050565b634e487b7160e01b600052601160045260246000fd5b60008261051957634e487b7160e01b600052601260045260246000fd5b500490565b808202811582820484141761031c5761031c6104e6565b8181038181111561031c5761031c6104e6565b8082018082111561031c5761031c6104e6565b6000815161056d81856020860161033b565b9290920192915050565b6001600160f81b031983168152815160009061059a81600185016020870161033b565b919091016001019392505050565b6040815260006105bb604083018561035f565b90508260208301529392505050565b6000602082840312156105dc57600080fd5b5051919050565b81818437506000910190815290565b7f646174613a6170706c69636174696f6e2f6a736f6e2c7b22646573637269707481527f696f6e223a2022537461726b7368656574222c20226e616d65223a202200000060208201528688603d8301376000878201602160f81b603d820152875161066481603e840160208c0161033b565b7f222c22696d616765223a2022646174613a696d6167652f7376672b786d6c2c25603e92909101918201527f334373766725323076696577426f782533442532373025323030253230383925605e8201527f3230353525323725323066696c6c2533442532376e6f6e65253237253230786d607e8201527f6c6e73253344253237687474702533412f2f7777772e77332e6f72672f323030609e8201527f302f737667253237253345253343646566732533452533437374796c6525334560be8201527f253430666f6e742d66616365253230253742666f6e742d66616d696c7925334160de8201527f253230253237507265737325323053746172742532303250253237253342737260fe8201527f6325334125323075726c25323825323764617461253341666f6e742f776f666661011e8201527f32253342626173653634253243643039474d6741424141414141424c3841413861013e8201527f41414141415235774141424b674141454141414141414141414141414141414161015e8201527f4141414141414141414141414150305a4756453063476a41624d42794358675a61017e8201527f6741494e794551674b3846545361517544524141424e67496b41344e4d42434161019e8201527f46687a5148684649623644566c42306a314f4d4253336f4f4953744562732f2f6101be8201527f2f6c4a776356727a47634f30676f684c45484d6369694443434e57695a6761306101de8201527f79625345555954514f6a4b427038546c737a7344526438716174586c333058746101fe8201527f30645a47467952305668444b776c62746c25324272734643773945316e64655961021e8201527f4a74732f37527762305673784d71576c636a6a775445537a2f5568752f77337361023e8201527f33746b6f496d70343464515168576f456d54337579526d70746f7553446b7a5761025e8201527f454138762f3932364a4b7539486f696e6e3673376674336d4965476c7737547161027e8201527f6437456f326a46517849766a5642494a70563269614f62547a68575932314e7461029e8201527f476772687434704d4b3457556a34624c7967542f51253242514c7879253242336102be8201527f6c482f362f6b6275496444497239446a724a496a6f394a7336524d58253242456102de8201527f6b37424f545a6b6d70397a347455524652566656307148504448375a7462364a6102fe8201527f616f6130684c335975616232473373667a72365776394536793569767025324261031e8201527f7135564c74426a514478476f5345304150313762336466376c61726a6525324261033e8201527f73637a6b7241744a334b6657304a342532424b323365744b4b556a383554616f61035e8201527f57473453346158436c427743413268676141652532423658396f696e32304e6261037e8201527f554a7264466767517049686d5247494d30372f7025324277375a7058316c473161039e8201527f6a6a51787073435141423438714445415042346950312f6a39592f4261686a356103be8201527f5943414e302f78714157496852616a6c6e694e654f50396e78433466667932556103de8201527f694843304e47386b686f6f567a6f7459334445417a417a41356b473735337a6a6103fe8201527f4853354d6e6d586b69496a6d54554d36556d4d3025324256346976752f48377861041e8201527f6a364666322f6b343472787a6449324141676742492f4c48416b394a7a35554d61043e8201527f496f4c7755344146455435725a464f33444d616655633061777351434879497061045e8201527f557a546b30784a474a454f6a4e6871436b474570496153474f6a714e466d2f5761047e8201527f4e434e3569636b71434d6e414165564c4d4c655867356971386b365752585a5261049e8201527f326c337042393831427a73475a743225324256696c4342723954494a674b67786104be8201527f365542514446253242566a4b44714e7741414948386a6949664d6e75384b68666104de8201527f584b486f4e3348634134477245786842324155442f795a554d423857547579496104fe8201527f413444634f4b656434397939504249616e426967734d454e38556b30766c547661051e8201527f304a58334e394d795a75544d763573655357413525324238556538504465547261053e8201527f645467474973566d4e33635856586a6463795275633434385866664176506e7361055e8201527f3575324d4531722532426a4731703137767a3849704f416e483444427367793361057e8201527f512f54376b33646d2f3846334232377355694877464631414f6c683055646e4961059e8201527f4471494e5164506355393145786f2f346252696a6a5169704e4e307a4c646c7a6105be8201527f504438496f547449734c38717162746f4f5149514a5a567849705931315073536105de8201527f55533231397a4c585066642f507667765751346372464d2532425769755671706105fe8201527f645a6f4e6475645872632f4745324d4a36656e3575635746694763375274364f61061e8201527f487676354d674c2532427a44733578444277696141315433554877326b63594361063e8201527f312f55666453316645316d37763742346537653350574848786533594f32483561065e8201527f25324241504f5a7965503025324251506553425468793078713965363241486a61067e8201527f6141556842432f364144484c6f476f4f657636412532426867487369317a613861069e8201527f71355a4e4d716a596c575a4d713867354248445574495370574a73526f52544a6106be8201527f56613049305a3957546b5371564b73507a3464586a7648746449684c6e7670746106de8201527f554c4330753542567579414d544b4a513930594b5267546e5769476b6d7153456106fe8201527f714b6d7256685259674b6b335443686255573671456f45637665577a6859535461071e8201527f4c32484e706735452f6d7151393956564467763352475435586d33637a68754c61073e8201527f3972685864316132372f736c5130686959366a643739614f5a43746a6f52687261075e8201527f623136575676514b725734477a786a7869723238494d697a2f7155447973495761077e8201527f7037516a667765347a556437614a735651575179524c554b484b42577938577661079e8201527f45565333584d53353656337757644f442532424638757639645477496d4b722f6107be8201527f5064626d5763775176456641616a7975566a70784e32704f56635769336c38776107de8201527f454c2f6d395070646f55494536253242504b5838315041546d67654f304231736107fe8201527f47454825324261707a353466646d534a7a333741686635366a4c7739756e504561081e8201527f35644d4b3025324237544639563843435466523979664e7355493474557a464661083e8201527f42326e536e384b4f626a64446964554c7034494a6873777878595172595a643661085e8201527f4e76436e55394d445825324252654c6e4d546d6c315a453972306b5077334e3261087e8201527f6752253242736a4573596d4953706b356c31497333594e614a4b6f6e7a65703761089e8201527f56637354316e556b62347048774b5a41796b614b6f43504630506f6d456876496108be8201527f5758656e6f5a767836774f4b313070316c3274546858793850316555776473766108de8201527f53715157766f424d7473674851554a614774494273756861776450545a5378596108fe8201527f707257757734647a7231564755744449465871726f4d4d69597346783857695461091e8201527f336463574b6f376d50554c79715657413972305974524a4c626957766a6e4c2561093e8201527f324272633452646767624e516c514141613264306d616236364d48447074314361095e8201527f6477626b51436253375053445a4d7a3746724f51713165636153304a6c74644161097e8201527f6c44527941587173364130586247707748676b70367572557757416272464d3361099e8201527f75794d764e4b6c344d6c435548537950416d3931776144454a3559595148754a6109be8201527f4d32304b575251737637486b61334770686c533258444b714f4b4245554753316109de8201527f65306b63316f323449494166486c4449794278584a4a656767423369386174566109fe8201527f67434f3064444f5a484a57596a564c416a6a397137765673456e72684b374568610a1e8201527f4c75427a42586d4d674554634531636d61436976504b6f4a766670466c794935610a3e8201527f4d70584234454325324245672f596d303454787843354e6c73596b74646f5951610a5e8201527f55656c38624673456c3748345a36734377622f38626b347458574658504b6a71610a7e8201527f5462526e64336e4c5770394f784941706c664b586747684e6c72443462354a4c610a9e8201527f5a367055753441726756614d366561357844574244476f7a707a4641376e6747610abe8201527f74596334486141775269475576637653653652414177335a576b564f4667764b610ade8201527f46364955696c4d49394964715155345134585264484866736666517770313955610afe8201527f434a49306a5773725433356f5578303678507268473271364d4533554f306c63610b1e8201527f635a557354454351784a44527854444b6c334c4948722f6162546f73686c6466610b3e8201527f51786a364f57745273466e6966444373473674336b426f344e6d424a6d615556610b5e8201527f54636c794951414a4c6a6e723042365a3859464d6e396b397967703752727848610b7e8201527f36766877624a4e41654b4d554436353974386746514a4d5377652f434f624850610b9e8201527f467671484746554e5266253242737245663354584b42725a76676b6369396972610bbe8201527f426d63442f7458616754474358634e68432532424f3539754c706e6673796f71610bde8201527f4c53313238374552776d38666165564f6d3857634437386c5a36594232793938610bfe8201527f5a4c6c4d3972557264324c514e6c324956643454727376675139363079377573610c1e8201527f5965306854506170576a71726c2532425837784665424e54253242315a644a4a610c3e8201527f572532424678745737584e7774634e7a7761672532425256656a6d4a6839656d610c5e8201527f6c495a4b69694e63694b3849554f4d33556a4a376342554e5847505853326c68610c7e8201527f253242687770676f4836567348524f63764569723372585970344c7769435a77610c9e8201527f3176486c43623552314d68623564536e4f326d6e6f475a6f5846315765574757610cbe8201527f6d7a694a314a555534715072306e694a536c4e424331636b4b6d4a6657625877610cde8201527f5577757449547a456d6a776770776142753464525066746a2f4e384143526e64610cfe8201527f616b2f4641674b674c37305058577839767a6b59322532426d34355473496b4c610d1e8201527f3037616f70444e6f676830535262535a534f397a744657516a376e574c676275610d3e8201527f364325324254374b6a44715a3667456e5277674d78306b4c5a77797962514f76610d5e8201527f514130773054782f354a42722f63595a6453574f546a774446364e6f586b796a610d7e8201527f33566a484e4751494e76426a5a734a4a3377466141516d6f5a575a5970416961610d9e8201527f574f466e6e686455524176576b557a77693062677a5a4158796f445545714863610dbe8201527f57307069454c574f777168773365765478444957724e32495371525151454c41610dde8201527f4d32365334486c723548552f48784a43436844424a6b756b6341573856415430610dfe8201527f6770545a544b4e48677a444f7234314751656a4f34677a416e6b577077464752610e1e8201527f43334c625231787a4b434875365635694674674c704f384b51596d5965467868610e3e8201527f4c32643838736469506a2f76306b427a636c51637954735766324d6445394944610e5e8201527f386d5858576a72434b253242354532756e336e6976656973526e726971317548610e7e8201527f594d6a6a69694945304b6466674d6f3163476d6b557254624f30356732737633610e9e8201527f477673525971762f61457736375472644f705435567a4641364131417939634b610ebe8201527f6f44667762544a64445750524e57517354796a6d3772486249734b466b6f4f2f610ede8201527f5a4c4376735966785973337768534338614c49344b765677373773336e347a48610efe8201527f67697061634a6e435362463945727a53357069386343577655597a4f5064327a610f1e8201527f684a2f4750437a53684f453378596c634f3350796164586a54334f6b68706841610f3e8201527f58465853766865544e5355525446565641486f4a6d7949726b6a454b6f517746610f5e8201527f4730303554334158643935764e30446d336d427332786746546c253242513572610f7e8201527f73416a6e744768707a6f62643642374e7a52664e56653130446f4e5639343753610f9e8201527f59646f635252624776636d785456786f61367a717756376d416e773544314745610fbe8201527f5474327a48382532425476514256356e37672f32615768743979794e594c3974610fde8201527f4f42744167384846435945316d4e775432454232467538544968543776565241610ffe8201527f3461587a6e6b3670545a4e6779696f73747749364b654655374c696c7041253261101e8201527f42334234474a794277574d327062466a4876734a3747754f6f616b6a6d46746a61103e8201527f59344c6254396c323239253242453646374c4475577a744c6e333749786b386a61105e8201527f356c42564b33774c7369362f416641756f6a34396c4d6b5653545045396b704761107e8201527f64304c724555534a4941413070596c4178414d642f4e4f46776f4a446458466961109e8201527f307a4f5744422f54464a705666575642574f516274724a556230636c663369256110be8201527f3242575072446f596c65545674564f45306d36793564487444725551776f414c6110de8201527f7455523365585364444d4e785866656a594674764c626c726c4a7777484b2f456110fe8201527f6957504a616b32574b35386e684e6f4c6a615a55475841756f32656f5777464561111e8201527f66612f445334496958717246714779633348726939785132693243352f73357661113e8201527f7a424d30793777334d4473774d3759325247427172464d6778374f696325324261115e8201527f30497a736d5678617a5473305263666a324f3334532f525639503269486f427561117e8201527f6c4b49594244665a46654c53356439725379664a64536c67683268644d72324f61119e8201527f5552334b6e6c506e4f41785477314a384c4d325a776e4671765a745a4a6c78786111be8201527f343873776243743272316b664875443756624831326159383849437456734b786111de8201527f4b742f31726b616c42414d74782f6f6f6d43445059626b556f4c6344624b436a6111fe8201527f7675713953544467746a584744715735564b36686347654f46697a6a3643714c61121e8201527f4f49716b57783477733245504d444e7378253242613661533230384f39784c3061123e8201527f526146586f394241645530706e452532424c695359334b536f4a41525978646e61125e8201527f7a69545a4d706961442f3438496969393834446151357976656378414673735761127e8201527f792f686274696d63253242704c386b35796f70496d4a627948712f6138797a6c61129e8201527f6c37726f4f7a586d786d4163337459585363546b65734d6344324939315a36336112be8201527f6549312f394a627755716b36737863394b52677277574d414e6543314e6e39756112de8201527f4779775473706d5538712532426c5a6d43714d674153363662674841476a514b6112fe8201527f73754a334451416a5235346d356a4c7a5a616e546c62646530253242726e663461131e8201527f385a574138546c32673277414779427748516e3552322532424e6a726542677861133e8201527f626c734e46627554776d6862414a48737a2f72416f61764c4f34317874767a5961135e8201527f4768336e4c4a426b41506a7578424a445248333048426575385567436978464e61137e8201527f437951322f4b253242385157372f6530253242664f2532423436524e5730657961139e8201527f4c726f39446a5467704a4e4d3547385179306c54644f756d73773066715045696113be8201527f393646702532424830634d774e6f376a787a596d6e4e664d5a6d64506c7932706113de8201527f6f7132575065476d67507136474c78504e34536c4b486e7870624f69754c58516113fe8201527f75583155715031676a6f38426136536c55314f416d5267707a7531735444584a61141e8201527f50754d3338546f387130344c324e777970653837327777556741675a6c70386461143e8201527f6b5166397a38544d43624d6b596b3758484375333564375a5a41656f346b5a4b61145e8201527f68784953386945354c546a334c4f6976485a7268394a3870337a4c5a436a776361147e8201527f6970354452694b6e576e49664c33386b4a684d7452776a67553525324256726d61149e8201527f714b6c6739307a376a64732f4238444b646b464c76483353253242376f4838616114be8201527f6c445a6c626734533155583574434d445342324f364b756c7a41344b763067376114de8201527f314251643054464b7733685358696e62374e6c304258725873514e6376436b386114fe8201527f6d6f394f786965783559627a78564e2f6b3738336f48545a495777393079495a61151e8201527f777672697164475473586e54384965705437597946434f4a6741395a3042794961153e8201527f455956735478522f6b73616b324268376f4b767034766e695530364d57317a4261155e8201527f4672746568647a306b6b587951786a426d7965645636644d596545386146787461157e8201527f6575777355466136466c6c54446c716430707a525a77473663467266574d627061159e8201527f384738587a6a66624d253242354658657076356f457273696c363458783663376115be8201527f5841576275696d3666387347494d58666f334a6971476b703333376854536a676115de8201527f65636862364f42472f327a31376a6f6d4469476d253242476c623146553069656115fe8201527f6e7552796977654c576767447a6d4655765545556a5a6f377356544877684f4661161e8201527f504d6b4e737146423977796d6b45307639666d7477453854377135384e594f3761163e8201527f787534623833766e46766c35755378446c472532426b4f51675249644f346a6761165e8201527f7a786a53486a4b4c7332742f6c684f647771766131415744437072763344345361167e8201527f34523741625934544362664b4637744265363554343551347a7a49714433316161169e8201527f79797557716a692532424636585337535439483943314f342f694b366b4775766116be8201527f6b512f664e3537487837456533373435622f76766e2f62482f58253242392f256116de8201527f32426762656d684f416d49705576755157757344764b517578394a44564e734b6116fe8201527f673651636d6b73515341445530346347524c523768466f5a326337785545664761171e8201527f253242776b755459474d764c6a422f6550634936416847686e5735717a45416961173e8201527f4a586377564545775869654e70536c317a6a457253253242435325324248634c61175e8201527f6f52506d7661324d6767412f69794c67536f544a555767733442794149514f3061177e8201527f4f6f705a487656627a6844494c65557155677a7a48492f667950474e7879777361179e8201527f6f796c6865534639577662795363336b4544716b32415636436c4364635535536117be8201527f6e6c4e6e4963394b794d63384c79622532423867484f4a795173466c4c6250526117de8201527f796d6d374a42743349545a544162314732444252496b514b51705451396939626117fe8201527f3665435353387a4d366161525364544b5657524d336663454a4c644b61746e7361181e8201527f724959774e4a55253242733048364461757832775a35686733706c653042474861183e8201527f756b316b4543734859446461496d4b7025324233463542317859763763486b7161185e8201527f644475306a4b645273657a3531376d63563641685148346931484e3173766c6a61187e8201527f5248366845454672682532426e72726d47316e33307a4d346749776d694d774561189e8201527f624b6842545564423141486f582532424b6741517a4f48543946494f71436b526118be8201527f4e4e623273397170496943534f753167576868497343564a73765771457175356118de8201527f47624a514b4e6a61427465394c4f69676368414a7665475773394332323033766118fe8201527f6f6e476c6b77725251323464646732796345646157554456734441785548734961191e8201527f77773665615234464665336d4a416b66426d5a6452395264774a485a6d47645261193e8201527f7950436a706a627a31712f584a34534949446b66384b4b6e6e32456c4b6d794c61195e8201527f69573442513836733151554b2f76426867524e776548766c5968687a7238706361197e8201527f67704b4b6d6f61576a7036426b594f48446c7835734b5647336365474539657661199e8201527f506e773563646667454242676f554946536238587632504553314772446a78456119be8201527f69524b6b697846716a54704d6d544b6b693148726a7a354368517155717845716119de8201527f544c6c4b6c53715571314772547231476a527130717846717a62744f6e5347656119fe8201527f3668374a6d627a4968355a6544696c315a58536a7430774375616b336c6e476f611a1e8201527f5655506f53734e663337394b326a6274716d44674d69485a42665a6c68324839611a3e8201527f75773738495469314a466a585653662f4336634f55667a346f30644178305447611a5e8201527f777448446863666a3443516d49694531444d5a42546b6c4e5a557065566f614f611a7e8201527f6e717633733234314e50503965766574594768435a50576a4979747332706173611a9e8201527f436a25324270556a54596c336b615574374f744b4a6136355850396d356e6367611abe8201527f364e686a685a587032762532426d57724341545a754a303368316b6a55756976611ade8201527f5067596e6a6e35744b4a4f6b326e6362703251414559585a69304b496d50356b611afe8201527f744961466e366b5a397743253237253239253230666f726d6174253238253237611b1e8201527f776f666632253237253239253342666f6e742d7765696768742533412532306e611b3e8201527f6f726d616c253342666f6e742d7374796c652533412532306e6f726d616c2533611b5e8201527f42666f6e742d646973706c617925334125323073776170253342253744746578611b7e8201527f74253230253742666f6e742d66616d696c792533412532302532375072657373611b9e8201527f2532305374617274253230325025323725334266696c6c253341253230776869611bbe8201527f74652537442e76616c7565253230253742666f6e742d73697a65253341253230611bde8201527f313070782533422537442e6e616d65253230253742666f6e742d73697a652533611bfe8201527f412532303470782533422537442533432f7374796c652533452533432f646566611c1e8201527f7325334525334372656374253230776964746825334425323738392532372532611c3e8201527f30686569676874253344253237353525323725323066696c6c25334425323762611c5e8201527f6c61636b2532372532302f253345253343726563742532307825334425323735611c7e8201527f2e3525323725323079253344253237352e352532372532307769647468253344611c9e8201527f2532373738253237253230686569676874253344253237343425323725323066611cbe8201527f696c6c2533442532372532333030303046462532372532302f25334525334374611cde8201527f657874253230746578742d616e63686f722533442532376d6964646c65253237611cfe8201527f2532307825334425323734342e35253237253230792533442532373333253237611d1e8201527f253230636c61737325334425323776616c756525323725334500000000000000611d3e820152612ba5612b9e6129f5611d5784018a61055b565b7f2533432f746578742533452533437265637425323078253344253237352e352581527f323725323079253344253237352e35253237253230776964746825334425323760208201527f373825323725323068656967687425334425323734342532372532307374726f60408201527f6b652533442532372532334646344630412532372532307374726f6b652d776960608201527f647468253344253237332532372532302f25334525334372656374253230782560808201527f334425323733302532372532307925334425323734352e35253237253230776960a08201527f647468253344253237353825323725323068656967687425334425323738253260c08201527f3725323066696c6c2533442532372532334646344630412532372532302f253360e08201527f4525334374657874253230746578742d616e63686f72253344253237656e64256101008201527f32372532307825334425323738372532372532307925334425323735322532376101208201527f253230636c6173732533442532376e616d6525323725334500000000000000006101408201526101580190565b86886105e3565b602160f81b81529050612bbb600182018561055b565b7f2533432f746578742533452533432f737667253345227d00000000000000000081526017019a995050505050505050505056fea26469706673582212206a2c00c13ddb4f1bcd7ee36e36f0c874d7d9dadcf38306eab3610b5a6e7af83464736f6c63430008110033", + "nonce": "0x2" + }, + "additionalContracts": [], + "isFixedGasLimit": false + }, + { + "hash": "0x04f92470f04644ad0e4aac4b4252dbc1087ea9ac9095c979cca13b6e88e544ba", + "transactionType": "CREATE", + "contractName": null, + "contractAddress": "0xCf7Ed3AccA5a467e9e704C703E8D87F634fB0Fc9", + "function": null, + "arguments": null, + "transaction": { + "type": "0x00", + "from": "0xf39fd6e51aad88f6f4ce6ab8827279cfffb92266", + "gas": "0x42230", + "value": "0x0", + "data": "0x608060405234801561001057600080fd5b506102cf806100206000396000f3fe608060405234801561001057600080fd5b506004361061004c5760003560e01c80630194db8e14610051578063072bdcc214610076578063a391c15b14610089578063b67d77c51461009c575b600080fd5b61006461005f366004610160565b6100af565b60405190815260200160405180910390f35b610064610084366004610160565b6100ef565b61006461009736600461021e565b610129565b6100646100aa36600461021e565b61013e565b600080805b83518110156100e8578381815181106100cf576100cf610240565b60200260200101518201915080806001019150506100b4565b5092915050565b60006001815b83518110156100e85783818151811061011057610110610240565b60200260200101518202915080806001019150506100f5565b60006101358284610256565b90505b92915050565b60006101358284610278565b634e487b7160e01b600052604160045260246000fd5b6000602080838503121561017357600080fd5b823567ffffffffffffffff8082111561018b57600080fd5b818501915085601f83011261019f57600080fd5b8135818111156101b1576101b161014a565b8060051b604051601f19603f830116810181811085821117156101d6576101d661014a565b6040529182528482019250838101850191888311156101f457600080fd5b938501935b82851015610212578435845293850193928501926101f9565b98975050505050505050565b6000806040838503121561023157600080fd5b50508035926020909101359150565b634e487b7160e01b600052603260045260246000fd5b60008261027357634e487b7160e01b600052601260045260246000fd5b500490565b8181038181111561013857634e487b7160e01b600052601160045260246000fdfea2646970667358221220fcdef23ba4219270ddb3ab764e22a87e229c05e6f1dfc4eeea983fa1a1dac91f64736f6c63430008110033", + "nonce": "0x3" + }, + "additionalContracts": [], + "isFixedGasLimit": false + }, + { + "hash": "0x06a470187f41433a6c95e6cc97ca9392ed981ba7c394186c0e2d7874def9fe31", + "transactionType": "CREATE", + "contractName": "Evmsheet", + "contractAddress": "0xDc64a140Aa3E981100a9becA4E685f962f0cF6C9", + "function": null, + "arguments": [ + "0x9fE46736679d2D9a65F0992F2272dE9f3c7fa6e0", + "10000000000000000" + ], + "transaction": { + "type": "0x00", + "from": "0xf39fd6e51aad88f6f4ce6ab8827279cfffb92266", + "gas": "0x34bf99", + "value": "0x0", + "data": "0x608060405234801561001057600080fd5b50604051612ed9380380612ed983398101604081905261002f916100b1565b61003833610061565b600280546001600160a01b0319166001600160a01b0393909316929092179091556001556100eb565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b600080604083850312156100c457600080fd5b82516001600160a01b03811681146100db57600080fd5b6020939093015192949293505050565b612ddf806100fa6000396000f3fe608060405260043610620000a95760003560e01c80638da5cb5b116200006c5780638da5cb5b146200016d578063ab2fa65a146200018d578063ae28505e14620001b4578063c56c4cf114620001d9578063f2fde38b14620001fb578063f52be2a2146200022057600080fd5b806303fb31e814620000ae5780631164c83d14620000d5578063145e414714620000ec5780635787cacb146200012e578063715018a61462000155575b600080fd5b348015620000bb57600080fd5b50620000d3620000cd36600462000778565b62000247565b005b620000d3620000e6366004620007e9565b62000273565b348015620000f957600080fd5b50620001116200010b36600462000864565b620004b2565b6040516001600160a01b0390911681526020015b60405180910390f35b3480156200013b57600080fd5b50620001466200054f565b60405162000125919062000891565b3480156200016257600080fd5b50620000d3620005b3565b3480156200017a57600080fd5b506000546001600160a01b031662000111565b3480156200019a57600080fd5b50620001a5620005cb565b604051620001259190620008e0565b348015620001c157600080fd5b5062000111620001d336600462000930565b620005f7565b348015620001e657600080fd5b5060025462000111906001600160a01b031681565b3480156200020857600080fd5b50620000d36200021a36600462000778565b62000622565b3480156200022d57600080fd5b506200023860015481565b60405190815260200162000125565b62000251620006a1565b600280546001600160a01b0319166001600160a01b0392909216919091179055565b60015434146200029d5760405163723a79e360e11b81523460048201526024015b60405180910390fd5b600060405180602001620002b1906200074d565b6020820181038252601f19601f8201166040525090506000828251602084016000f56002546040516356d3163d60e01b81526001600160a01b0391821660048201529192508216906356d3163d90602401600060405180830381600087803b1580156200031d57600080fd5b505af115801562000332573d6000803e3d6000fd5b505060405163c47f002760e01b81526001600160a01b038416925063c47f0027915062000366908a908a906004016200094a565b600060405180830381600087803b1580156200038157600080fd5b505af115801562000396573d6000803e3d6000fd5b5050604051635c26412360e11b81526001600160a01b038416925063b84c82469150620003ca90889088906004016200094a565b600060405180830381600087803b158015620003e557600080fd5b505af1158015620003fa573d6000803e3d6000fd5b505060405163f2fde38b60e01b81523260048201526001600160a01b038416925063f2fde38b9150602401600060405180830381600087803b1580156200044057600080fd5b505af115801562000455573d6000803e3d6000fd5b5050600380546001810182556000919091527fc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b0180546001600160a01b0319166001600160a01b0394909416939093179092555050505050505050565b600060ff60f81b838360405180602001620004cd906200074d565b6020820181038252601f19601f82011660405250805190602001206040516020016200053094939291906001600160f81b031994909416845260609290921b6bffffffffffffffffffffffff191660018401526015830152603582015260550190565b60408051601f1981840301815291905280516020909101209392505050565b60606003805480602002602001604051908101604052809291908181526020018280548015620005a957602002820191906000526020600020905b81546001600160a01b031681526001909101906020018083116200058a575b5050505050905090565b620005bd620006a1565b620005c96000620006fd565b565b606060405180602001620005df906200074d565b601f1982820381018352601f90910116604052919050565b600381815481106200060857600080fd5b6000918252602090912001546001600160a01b0316905081565b6200062c620006a1565b6001600160a01b038116620006935760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b606482015260840162000294565b6200069e81620006fd565b50565b6000546001600160a01b03163314620005c95760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015260640162000294565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b612430806200097a83390190565b80356001600160a01b03811681146200077357600080fd5b919050565b6000602082840312156200078b57600080fd5b62000796826200075b565b9392505050565b60008083601f840112620007b057600080fd5b50813567ffffffffffffffff811115620007c957600080fd5b602083019150836020828501011115620007e257600080fd5b9250929050565b6000806000806000606086880312156200080257600080fd5b853567ffffffffffffffff808211156200081b57600080fd5b6200082989838a016200079d565b909750955060208801359150808211156200084357600080fd5b5062000852888289016200079d565b96999598509660400135949350505050565b600080604083850312156200087857600080fd5b62000883836200075b565b946020939093013593505050565b6020808252825182820181905260009190848201906040850190845b81811015620008d45783516001600160a01b031683529284019291840191600101620008ad565b50909695505050505050565b600060208083528351808285015260005b818110156200090f57858101830151858201604001528201620008f1565b506000604082860101526040601f19601f8301168501019250505092915050565b6000602082840312156200094357600080fd5b5035919050565b60208152816020820152818360408301376000818301604090810191909152601f909201601f1916010191905056fe60806040523480156200001157600080fd5b50604051806040016040528060078152602001660536865657420360cc1b815250604051806040016040528060048152602001630534854360e41b81525062000069620000636200008f60201b60201c565b62000093565b600162000077838262000188565b50600262000086828262000188565b50505062000254565b3390565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b634e487b7160e01b600052604160045260246000fd5b600181811c908216806200010e57607f821691505b6020821081036200012f57634e487b7160e01b600052602260045260246000fd5b50919050565b601f8211156200018357600081815260208120601f850160051c810160208610156200015e5750805b601f850160051c820191505b818110156200017f578281556001016200016a565b5050505b505050565b81516001600160401b03811115620001a457620001a4620000e3565b620001bc81620001b58454620000f9565b8462000135565b602080601f831160018114620001f45760008415620001db5750858301515b600019600386901b1c1916600185901b1785556200017f565b600085815260208120601f198616915b82811015620002255788860151825594840194600190910190840162000204565b5085821015620002445787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b6121cc80620002646000396000f3fe608060405234801561001057600080fd5b50600436106102275760003560e01c8063715018a611610130578063b85d8b85116100b8578063cf0983981161007c578063cf09839814610512578063cfbe95d814610535578063df4ca20614610556578063e985e9c514610576578063f2fde38b146105a457600080fd5b8063b85d8b85146104a4578063b88d4fde146104ce578063b8c368ec146104e1578063c47f0027146104ec578063c87b56dd146104ff57600080fd5b806395d89b41116100ff57806395d89b4114610439578063a22cb46514610441578063b46ebb1214610454578063b6d658e114610467578063b84c82461461049157600080fd5b8063715018a6146103fa578063768d5029146104025780638ada6b0f146104155780638da5cb5b1461042857600080fd5b80631b06443c116101b35780634f6ccce7116101825780634f6ccce71461038157806356d3163d146103a15780636352211e146103b45780636a0abc74146103c757806370a08231146103e757600080fd5b80631b06443c14610335578063206848f61461034857806323b872dd1461035b57806342842e0e1461036e57600080fd5b8063081812fc116101fa578063081812fc146102a1578063095ea7b3146102e2578063172b9eed146102f757806318160ddd1461030a5780631941fd141461031357600080fd5b806301ffc9a71461022c57806302f3c4c91461025457806306fdde03146102745780630715a24a1461027c575b600080fd5b61023f61023a36600461176a565b6105b7565b60405190151581526020015b60405180910390f35b610267610262366004611861565b610609565b60405161024b9190611951565b610267610638565b6102936fffffffffffffffffffffffffffffffff81565b60405190815260200161024b565b6102ca6102af366004611964565b6005602052600090815260409020546001600160a01b031681565b6040516001600160a01b03909116815260200161024b565b6102f56102f036600461197d565b6106c6565b005b6102676103053660046119a9565b6107ad565b61029360075481565b610326610321366004611964565b610875565b60405161024b939291906119de565b6102ca610343366004611a0e565b61092a565b610326610356366004611964565b6109e3565b6102f5610369366004611a2b565b610ae1565b6102f561037c366004611a2b565b610ca8565b61029361038f366004611964565b60086020526000908152604090205481565b6102f56103af366004611a0e565b610da0565b6102ca6103c2366004611964565b610dca565b6103da6103d53660046119a9565b610e1c565b60405161024b9190611a6c565b6102936103f5366004611a0e565b610e60565b6102f5610ec3565b6102f5610410366004611af9565b610ed7565b6009546102ca906001600160a01b031681565b6000546001600160a01b03166102ca565b610267611035565b6102f561044f366004611b63565b611042565b610267610462366004611964565b6110ae565b61047a610475366004611964565b611258565b60408051921515835260208301919091520161024b565b6102f561049f366004611ba1565b611275565b6104b56104b2366004611964565b90565b6040516001600160e01b0319909116815260200161024b565b6102f56104dc366004611be3565b6112c6565b6102ca600160801b81565b6102f56104fa366004611ba1565b6113ae565b61026761050d366004611964565b6113ff565b61023f610520366004611a0e565b600160801b6001600160a01b03919091161090565b61023f610543366004611861565b516001600160a01b0316600160801b1490565b610569610564366004611964565b6114c9565b60405161024b9190611c16565b61023f610584366004611c4d565b600660209081526000928352604080842090915290825290205460ff1681565b6102f56105b2366004611a0e565b611526565b60006301ffc9a760e01b6001600160e01b0319831614806105e857506380ac58cd60e01b6001600160e01b03198316145b806106035750635b5e139f60e01b6001600160e01b03198316145b92915050565b6060816020015160405160200161062291815260200190565b6040516020818303038152906040529050919050565b6001805461064590611c7b565b80601f016020809104026020016040519081016040528092919081815260200182805461067190611c7b565b80156106be5780601f10610693576101008083540402835291602001916106be565b820191906000526020600020905b8154815290600101906020018083116106a157829003601f168201915b505050505081565b6000818152600360205260409020546001600160a01b03163381148061070f57506001600160a01b038116600090815260066020908152604080832033845290915290205460ff165b6107515760405162461bcd60e51b815260206004820152600e60248201526d1393d517d055551213d49256915160921b60448201526064015b60405180910390fd5b60008281526005602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b606060006107ba83610e1c565b9050606060005b825181101561086d576000806107ef8584815181106107e2576107e2611cb5565b6020026020010151611258565b9150915081156108335783610803826110ae565b61080c90611ccb565b60405160200161081d929190611cef565b6040516020818303038152906040529350610858565b6040516108469085908390602001611cef565b60405160208183030381529060405293505b5050808061086590611d27565b9150506107c1565b509392505050565b600a602052600090815260409020805460018201546002830180546001600160a01b039093169391926108a790611c7b565b80601f01602080910402602001604051908101604052809291908181526020018280546108d390611c7b565b80156109205780601f106108f557610100808354040283529160200191610920565b820191906000526020600020905b81548152906001019060200180831161090357829003601f168201915b5050505050905083565b6000600160801b6001600160a01b03831610156109da576000610955836001600160a01b03166110ae565b604051632d737e4960e21b8152909150735fbdb2315678afecb367f032d93f642f64180aa39063b5cdf92490610992908490600090600401611d40565b602060405180830381865af41580156109af573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906109d39190611d62565b9392505050565b5090565b919050565b60008181526003602052604081205481906060906001600160a01b0316610a1057600160801b9250610a2b565b6000848152600a60205260409020546001600160a01b031692505b6000848152600a60205260409020600181015460029091018054859291908190610a5490611c7b565b80601f0160208091040260200160405190810160405280929190818152602001828054610a8090611c7b565b8015610acd5780601f10610aa257610100808354040283529160200191610acd565b820191906000526020600020905b815481529060010190602001808311610ab057829003601f168201915b505050505090509250925092509193909250565b6000818152600360205260409020546001600160a01b03848116911614610b375760405162461bcd60e51b815260206004820152600a60248201526957524f4e475f46524f4d60b01b6044820152606401610748565b6001600160a01b038216610b815760405162461bcd60e51b81526020600482015260116024820152701253959053125117d49150d25412515395607a1b6044820152606401610748565b336001600160a01b0384161480610bbb57506001600160a01b038316600090815260066020908152604080832033845290915290205460ff165b80610bdc57506000818152600560205260409020546001600160a01b031633145b610c195760405162461bcd60e51b815260206004820152600e60248201526d1393d517d055551213d49256915160921b6044820152606401610748565b6001600160a01b0380841660008181526004602090815260408083208054600019019055938616808352848320805460010190558583526003825284832080546001600160a01b03199081168317909155600590925284832080549092169091559251849392917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b610cb3838383610ae1565b6001600160a01b0382163b1580610d5c5750604051630a85bd0160e11b8082523360048301526001600160a01b03858116602484015260448301849052608060648401526000608484015290919084169063150b7a029060a4016020604051808303816000875af1158015610d2c573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610d509190611d7b565b6001600160e01b031916145b610d9b5760405162461bcd60e51b815260206004820152601060248201526f155394d0519157d49150d2541251539560821b6044820152606401610748565b505050565b610da861159f565b600980546001600160a01b0319166001600160a01b0392909216919091179055565b6000818152600360205260409020546001600160a01b0316806109de5760405162461bcd60e51b815260206004820152600a6024820152691393d517d3525395115160b21b6044820152606401610748565b60608082516040519150602081048252602082016020850160005b83811015610e4f578181015183820152602001610e37565b505050810160200160405292915050565b60006001600160a01b038216610ea75760405162461bcd60e51b815260206004820152600c60248201526b5a45524f5f4144445245535360a01b6044820152606401610748565b506001600160a01b031660009081526004602052604090205490565b610ecb61159f565b610ed560006115f9565b565b6000858152600360205260409020546001600160a01b0316610f2f57610efd3286611649565b60078054600090815260086020526040812087905581546001929190610f24908490611d98565b90915550610f889050565b6000858152600360205260409020546001600160a01b03163214610f8857600085815260036020526040908190205490516324f3f02560e21b81526001600160a01b039091166004820152326024820152604401610748565b6040518060600160405280856001600160a01b0316815260200184815260200183838080601f0160208091040260200160405190810160405280939291908181526020018383808284376000920182905250939094525050878152600a6020908152604091829020845181546001600160a01b0319166001600160a01b0390911617815590840151600182015590830151909150600282019061102b9082611df9565b5050505050505050565b6002805461064590611c7b565b3360008181526006602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b6000818152600a6020908152604080832081516060818101845282546001600160a01b0316825260018301549482019490945260028201805494959491938401916110f890611c7b565b80601f016020809104026020016040519081016040528092919081815260200182805461112490611c7b565b80156111715780601f1061114657610100808354040283529160200191611171565b820191906000526020600020905b81548152906001019060200180831161115457829003601f168201915b505050505081525050905061119381516001600160a01b0316600160801b1490565b156111a1576109d381610609565b60006111b0826000015161092a565b905060006111bf836020015190565b905060006111d084604001516107ad565b90506000836001600160a01b031683836040516020016111f1929190611eb9565b60408051601f198184030181529082905261120b91611eea565b600060405180830381855afa9150503d8060008114611246576040519150601f19603f3d011682016040523d82523d6000602084013e61124b565b606091505b5098975050505050505050565b600080611266600284611f06565b60019081149493901c92915050565b61127d61159f565b7f8dca0271872d00b3de3abafca544c52fcd7d512dd852c9894fa2c118ac759a93600283836040516112b193929190611fce565b60405180910390a16002610d9b828483611ffe565b6112d1858585610ae1565b6001600160a01b0384163b15806113685750604051630a85bd0160e11b808252906001600160a01b0386169063150b7a02906113199033908a908990899089906004016120be565b6020604051808303816000875af1158015611338573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061135c9190611d7b565b6001600160e01b031916145b6113a75760405162461bcd60e51b815260206004820152601060248201526f155394d0519157d49150d2541251539560821b6044820152606401610748565b5050505050565b6113b661159f565b7fb65b7b5ea384affd30f77f842e057d29dd1b13f133adf69a724a8105b164ab75600183836040516113ea93929190611fce565b60405180910390a16001610d9b828483611ffe565b6000818152600360205260409020546060906001600160a01b03168061143b57604051630243d1a960e21b815260048101849052602401610748565b6000611446846110ae565b6009546040516328de0f2f60e01b81529192506001600160a01b0316906328de0f2f9061147c90879085906001906004016120fd565b600060405180830381865afa158015611499573d6000803e3d6000fd5b505050506040513d6000823e601f3d908101601f191682016040526114c19190810190612128565b949350505050565b604080516060808201835260008083526020830181905292820152906114ee836110ae565b6040805160608101825285815260009586526003602090815295829020546001600160a01b0316958101959095528401525090919050565b61152e61159f565b6001600160a01b0381166115935760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610748565b61159c816115f9565b50565b6000546001600160a01b03163314610ed55760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610748565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b6001600160a01b0382166116935760405162461bcd60e51b81526020600482015260116024820152701253959053125117d49150d25412515395607a1b6044820152606401610748565b6000818152600360205260409020546001600160a01b0316156116e95760405162461bcd60e51b815260206004820152600e60248201526d1053149150511657d3525395115160921b6044820152606401610748565b6001600160a01b038216600081815260046020908152604080832080546001019055848352600390915280822080546001600160a01b0319168417905551839291907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b6001600160e01b03198116811461159c57600080fd5b60006020828403121561177c57600080fd5b81356109d381611754565b634e487b7160e01b600052604160045260246000fd5b604051601f8201601f1916810167ffffffffffffffff811182821017156117c6576117c6611787565b604052919050565b6001600160a01b038116811461159c57600080fd5b600067ffffffffffffffff8211156117fd576117fd611787565b50601f01601f191660200190565b600082601f83011261181c57600080fd5b813561182f61182a826117e3565b61179d565b81815284602083860101111561184457600080fd5b816020850160208301376000918101602001919091529392505050565b60006020828403121561187357600080fd5b813567ffffffffffffffff8082111561188b57600080fd5b908301906060828603121561189f57600080fd5b6040516060810181811083821117156118ba576118ba611787565b60405282356118c8816117ce565b8152602083810135908201526040830135828111156118e657600080fd5b6118f28782860161180b565b60408301525095945050505050565b60005b8381101561191c578181015183820152602001611904565b50506000910152565b6000815180845261193d816020860160208601611901565b601f01601f19169290920160200192915050565b6020815260006109d36020830184611925565b60006020828403121561197657600080fd5b5035919050565b6000806040838503121561199057600080fd5b823561199b816117ce565b946020939093013593505050565b6000602082840312156119bb57600080fd5b813567ffffffffffffffff8111156119d257600080fd5b6114c18482850161180b565b60018060a01b0384168152826020820152606060408201526000611a056060830184611925565b95945050505050565b600060208284031215611a2057600080fd5b81356109d3816117ce565b600080600060608486031215611a4057600080fd5b8335611a4b816117ce565b92506020840135611a5b816117ce565b929592945050506040919091013590565b6020808252825182820181905260009190848201906040850190845b81811015611aa457835183529284019291840191600101611a88565b50909695505050505050565b60008083601f840112611ac257600080fd5b50813567ffffffffffffffff811115611ada57600080fd5b602083019150836020828501011115611af257600080fd5b9250929050565b600080600080600060808688031215611b1157600080fd5b853594506020860135611b23816117ce565b935060408601359250606086013567ffffffffffffffff811115611b4657600080fd5b611b5288828901611ab0565b969995985093965092949392505050565b60008060408385031215611b7657600080fd5b8235611b81816117ce565b915060208301358015158114611b9657600080fd5b809150509250929050565b60008060208385031215611bb457600080fd5b823567ffffffffffffffff811115611bcb57600080fd5b611bd785828601611ab0565b90969095509350505050565b600080600080600060808688031215611bfb57600080fd5b8535611c06816117ce565b94506020860135611b23816117ce565b602081528151602082015260018060a01b036020830151166040820152600060408301516060808401526114c16080840182611925565b60008060408385031215611c6057600080fd5b8235611c6b816117ce565b91506020830135611b96816117ce565b600181811c90821680611c8f57607f821691505b602082108103611caf57634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052603260045260246000fd5b80516020808301519190811015611caf5760001960209190910360031b1b16919050565b60008351611d01818460208801611901565b9190910191825250602001919050565b634e487b7160e01b600052601160045260246000fd5b600060018201611d3957611d39611d11565b5060010190565b604081526000611d536040830185611925565b90508260208301529392505050565b600060208284031215611d7457600080fd5b5051919050565b600060208284031215611d8d57600080fd5b81516109d381611754565b8082018082111561060357610603611d11565b601f821115610d9b57600081815260208120601f850160051c81016020861015611dd25750805b601f850160051c820191505b81811015611df157828155600101611dde565b505050505050565b815167ffffffffffffffff811115611e1357611e13611787565b611e2781611e218454611c7b565b84611dab565b602080601f831160018114611e5c5760008415611e445750858301515b600019600386901b1c1916600185901b178555611df1565b600085815260208120601f198616915b82811015611e8b57888601518255948401946001909101908401611e6c565b5085821015611ea95787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b6001600160e01b0319831681528151600090611edc816004850160208701611901565b919091016004019392505050565b60008251611efc818460208701611901565b9190910192915050565b600082611f2357634e487b7160e01b600052601260045260246000fd5b500690565b60008154611f3581611c7b565b808552602060018381168015611f525760018114611f6c57611f9a565b60ff1985168884015283151560051b880183019550611f9a565b866000528260002060005b85811015611f925781548a8201860152908301908401611f77565b890184019650505b505050505092915050565b81835281816020850137506000828201602090810191909152601f909101601f19169091010190565b604081526000611fe16040830186611f28565b8281036020840152611ff4818587611fa5565b9695505050505050565b67ffffffffffffffff83111561201657612016611787565b61202a836120248354611c7b565b83611dab565b6000601f84116001811461205e57600085156120465750838201355b600019600387901b1c1916600186901b1783556113a7565b600083815260209020601f19861690835b8281101561208f578685013582556020948501946001909201910161206f565b50868210156120ac5760001960f88860031b161c19848701351681555b505060018560011b0183555050505050565b6001600160a01b03868116825285166020820152604081018490526080606082018190526000906120f29083018486611fa5565b979650505050505050565b8381526060602082015260006121166060830185611925565b8281036040840152611ff48185611f28565b60006020828403121561213a57600080fd5b815167ffffffffffffffff81111561215157600080fd5b8201601f8101841361216257600080fd5b805161217061182a826117e3565b81815285602083850101111561218557600080fd5b611a0582602083016020860161190156fea26469706673582212203fc548aa4f22e6f4c01757ba3f2e0383630418b3d17601758718ab19a4d9918d64736f6c63430008110033a26469706673582212207932e8c793f9a96d9606a8907a6671f54c0fb1ed5a763048e13b429274e7706c64736f6c634300081100330000000000000000000000009fe46736679d2d9a65f0992f2272de9f3c7fa6e0000000000000000000000000000000000000000000000000002386f26fc10000", + "nonce": "0x4" + }, + "additionalContracts": [], + "isFixedGasLimit": false + } + ], + "receipts": [ + { + "transactionHash": "0x0124850dcada74c923992ce050e2ee840042b4547a57956c17b9b6cc963df77c", + "transactionIndex": "0x0", + "blockHash": "0x040c5a6d68e72792a1c44970d1f8e76c3d388942b07a124668358e0fd46bc6f0", + "blockNumber": "0xd", + "from": "0xf39Fd6e51aad88F6F4ce6aB8827279cffFb92266", + "to": null, + "cumulativeGasUsed": "0xf4240", + "gasUsed": "0x7a120", + "contractAddress": "0xe7f1725E7734CE288F8367e1Bb143E90bb3F0512", + "logs": [], + "status": "0x1", + "logsBloom": "0x00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", + "type": "0x0", + "effectiveGasPrice": "0xf4240" + }, + { + "transactionHash": "0x055b40f42b8113763f60d148899c32614b79d0bd443cbe46398f48c60494d812", + "transactionIndex": "0x0", + "blockHash": "0x00013abeb83669981468cd4f2daf57027addf2dbeb825039e268778c3b82f34c", + "blockNumber": "0xe", + "from": "0xf39Fd6e51aad88F6F4ce6aB8827279cffFb92266", + "to": null, + "cumulativeGasUsed": "0xf4240", + "gasUsed": "0x7a120", + "contractAddress": "0x9fE46736679d2D9a65F0992F2272dE9f3c7fa6e0", + "logs": [], + "status": "0x1", + "logsBloom": "0x00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", + "type": "0x0", + "effectiveGasPrice": "0xf4240" + }, + { + "transactionHash": "0x0654b0f23edc28807ac6c7fcfe6063eb47c6ef0ad87653f48f0f55d980677dc9", + "transactionIndex": "0x0", + "blockHash": "0x06cca09d84db1f61e5314ca46c2c91521a20c61c7d545bb4cb1d26fb5742038b", + "blockNumber": "0xf", + "from": "0xf39Fd6e51aad88F6F4ce6aB8827279cffFb92266", + "to": null, + "cumulativeGasUsed": "0xf4240", + "gasUsed": "0x7a120", + "contractAddress": "0xCf7Ed3AccA5a467e9e704C703E8D87F634fB0Fc9", + "logs": [], + "status": "0x1", + "logsBloom": "0x00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", + "type": "0x0", + "effectiveGasPrice": "0xf4240" + }, + { + "transactionHash": "0x04f92470f04644ad0e4aac4b4252dbc1087ea9ac9095c979cca13b6e88e544ba", + "transactionIndex": "0x0", + "blockHash": "0x0243cbe167e55ef894497e0d35eaa3444b3e695af418167aa4eb67b6d4489df6", + "blockNumber": "0x10", + "from": "0xf39Fd6e51aad88F6F4ce6aB8827279cffFb92266", + "to": null, + "cumulativeGasUsed": "0xf4240", + "gasUsed": "0x7a120", + "contractAddress": "0xDc64a140Aa3E981100a9becA4E685f962f0cF6C9", + "logs": [], + "status": "0x1", + "logsBloom": "0x00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", + "type": "0x0", + "effectiveGasPrice": "0xf4240" + }, + { + "transactionHash": "0x06a470187f41433a6c95e6cc97ca9392ed981ba7c394186c0e2d7874def9fe31", + "transactionIndex": "0x0", + "blockHash": "0x07381dec16132cf16d225f83a407ca0631a5da87220c0fb843052cec1d23411d", + "blockNumber": "0x11", + "from": "0xf39Fd6e51aad88F6F4ce6aB8827279cffFb92266", + "to": null, + "cumulativeGasUsed": "0xf4240", + "gasUsed": "0x7a120", + "contractAddress": "0x5FC8d32690cc91D4c39d9d3abcBD16989F875707", + "logs": [ + { + "address": "0x5FC8d32690cc91D4c39d9d3abcBD16989F875707", + "topics": [ + "0x8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0", + "0x0000000000000000000000000000000000000000000000000000000000000000", + "0x000000000000000000000000f39fd6e51aad88f6f4ce6ab8827279cfffb92266" + ], + "data": "0x", + "blockHash": "0x07381dec16132cf16d225f83a407ca0631a5da87220c0fb843052cec1d23411d", + "blockNumber": "0x11", + "transactionHash": "0x06a470187f41433a6c95e6cc97ca9392ed981ba7c394186c0e2d7874def9fe31", + "removed": false + } + ], + "status": "0x1", + "logsBloom": "0x00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", + "type": "0x0", + "effectiveGasPrice": "0xf4240" + } + ], + "libraries": [ + "lib/eth-projects-monorepo/packages/eth-projects-contracts/contracts/lib/utils/Bytes.sol:Bytes:0x5fbdb2315678afecb367f032d93f642f64180aa3" + ], + "pending": [], + "returns": {}, + "timestamp": 1689251518, + "chain": 1263227476, + "multi": false, + "commit": "f1cde46" +} \ No newline at end of file diff --git a/packages/starksheet-solidity/broadcast/Evmsheet.s.sol/1263227476/run-1689266210.json b/packages/starksheet-solidity/broadcast/Evmsheet.s.sol/1263227476/run-1689266210.json new file mode 100644 index 00000000..7acea859 --- /dev/null +++ b/packages/starksheet-solidity/broadcast/Evmsheet.s.sol/1263227476/run-1689266210.json @@ -0,0 +1,201 @@ +{ + "transactions": [ + { + "hash": "0x0004499dedee60c7548e9736515922768a049a3cbb216625e33130f437fa861d", + "transactionType": "CREATE", + "contractName": "Bytes", + "contractAddress": "0x5FbDB2315678afecb367f032d93F642f64180aa3", + "function": null, + "arguments": null, + "transaction": { + "type": "0x00", + "from": "0xf39fd6e51aad88f6f4ce6ab8827279cfffb92266", + "gas": "0x1387ed", + "data": "0x6110d661003a600b82828239805160001a60731461002d57634e487b7160e01b600052600060045260246000fd5b30600052607381538281f3fe73000000000000000000000000000000000000000030146080604052600436106101625760003560e01c8063a5eb31ee116100cd578063d1ffb56111610086578063d1ffb561146103fb578063d442584f1461042b578063e004139614610454578063f1142fb314610474578063f647f8fb14610487578063f83b670f146104b257600080fd5b8063a5eb31ee14610344578063a8d8f00f1461036b578063b5cdf92414610396578063b63711df146103a9578063be8b3430146103bc578063c29616bd146103cf57600080fd5b80635ef849301161011f5780635ef8493014610241578063913c97b41461026b57806397e6175c1461029f57806399dd9bd7146102cb5780639ae4c3d1146102ec5780639cee499e1461031857600080fd5b8063042aa0841461016757806305d3bb74146101985780631a7431ef146101c0578063235266d2146101e357806348137709146101f65780634d66a2ae1461021b575b600080fd5b61017a610175366004610ec0565b6104de565b6040516001600160d01b031990911681526020015b60405180910390f35b6101ab6101a6366004610ec0565b610540565b60405163ffffffff909116815260200161018f565b6101d36101ce366004610f05565b61059d565b604051901515815260200161018f565b6101d36101f1366004610f4c565b610652565b610209610204366004610ec0565b6106b5565b60405160ff909116815260200161018f565b61022e610229366004610fa6565b610711565b60405161ffff909116815260200161018f565b61025461024f366004610ec0565b61071e565b60405165ffffffffffff909116815260200161018f565b61027e610279366004610ec0565b610772565b6040516fffffffffffffffffffffffffffffffff909116815260200161018f565b6102b26102ad366004610ec0565b6107d0565b6040516001600160a01b0319909116815260200161018f565b6102de6102d9366004610ec0565b61082e565b60405190815260200161018f565b6102ff6102fa366004610ec0565b61088c565b60405167ffffffffffffffff909116815260200161018f565b61032b610326366004610ec0565b6108e9565b6040516001600160d81b0319909116815260200161018f565b610357610352366004610ec0565b610946565b60405162ffffff909116815260200161018f565b61037e610379366004610ec0565b6109a3565b60405166ffffffffffffff909116815260200161018f565b6102de6103a4366004610ec0565b610a00565b6102ff6103b7366004610ec0565b610a55565b61022e6103ca366004610ec0565b610aa9565b6103e26103dd366004610ec0565b610b06565b6040516001600160c81b0319909116815260200161018f565b61040e610409366004610ec0565b610b5a565b6040516bffffffffffffffffffffffff909116815260200161018f565b61043e610439366004610ec0565b610bae565b60405164ffffffffff909116815260200161018f565b610467610462366004610fe3565b610c02565b60405161018f9190611031565b6102b2610482366004610ec0565b610d0f565b61049a610495366004610ec0565b610d64565b6040516001600160a01b03909116815260200161018f565b6104c56104c0366004610ec0565b610dc9565b6040516001600160f81b0319909116815260200161018f565b60006104eb82600661107f565b835110156105375760405162461bcd60e51b8152602060048201526014602482015273746f4279746573365f6f75744f66426f756e647360601b60448201526064015b60405180910390fd5b50016006015190565b600061054d82600461107f565b835110156105945760405162461bcd60e51b8152602060048201526014602482015273746f55696e7433325f6f75744f66426f756e647360601b604482015260640161052e565b50016004015190565b600080600190508354600260018083161561010002038216048451808214600181146105cc5760009450610644565b821561064457602083106001811461062957600189600052602060002060208a018581015b600284828410010361062057815183541461060f5760009950600093505b6001830192506020820191506105f1565b50505050610642565b6101008086040294506020880151851461064257600095505b505b509293505050505b92915050565b81518151600091600191811480831461066e57600092506106ab565b600160208701838101602088015b60028483851001036106a657805183511461069a5760009650600093505b6020928301920161067c565b505050505b5090949350505050565b60006106c282600161107f565b835110156107085760405162461bcd60e51b8152602060048201526013602482015272746f55696e74385f6f75744f66426f756e647360681b604482015260640161052e565b50016001015190565b600061064c826000610aa9565b600061072b82600661107f565b835110156105375760405162461bcd60e51b8152602060048201526014602482015273746f55696e7434385f6f75744f66426f756e647360601b604482015260640161052e565b600061077f82601061107f565b835110156107c75760405162461bcd60e51b8152602060048201526015602482015274746f55696e743132385f6f75744f66426f756e647360581b604482015260640161052e565b50016010015190565b60006107dd82600c61107f565b835110156108255760405162461bcd60e51b8152602060048201526015602482015274746f427974657331325f6f75744f66426f756e647360581b604482015260640161052e565b5001600c015190565b600061083b82602061107f565b835110156108835760405162461bcd60e51b8152602060048201526015602482015274746f427974657333325f6f75744f66426f756e647360581b604482015260640161052e565b50016020015190565b600061089982600861107f565b835110156108e05760405162461bcd60e51b8152602060048201526014602482015273746f55696e7436345f6f75744f66426f756e647360601b604482015260640161052e565b50016008015190565b60006108f682600561107f565b8351101561093d5760405162461bcd60e51b8152602060048201526014602482015273746f4279746573355f6f75744f66426f756e647360601b604482015260640161052e565b50016005015190565b600061095382600361107f565b8351101561099a5760405162461bcd60e51b8152602060048201526014602482015273746f55696e7432345f6f75744f66426f756e647360601b604482015260640161052e565b50016003015190565b60006109b082600761107f565b835110156109f75760405162461bcd60e51b8152602060048201526014602482015273746f55696e7435365f6f75744f66426f756e647360601b604482015260640161052e565b50016007015190565b6000610a0d82602061107f565b835110156108835760405162461bcd60e51b8152602060048201526015602482015274746f55696e743235365f6f75744f66426f756e647360581b604482015260640161052e565b6000610a6282600861107f565b835110156108e05760405162461bcd60e51b8152602060048201526014602482015273746f4279746573385f6f75744f66426f756e647360601b604482015260640161052e565b6000610ab682600261107f565b83511015610afd5760405162461bcd60e51b8152602060048201526014602482015273746f55696e7431365f6f75744f66426f756e647360601b604482015260640161052e565b50016002015190565b6000610b1382600761107f565b835110156109f75760405162461bcd60e51b8152602060048201526014602482015273746f4279746573375f6f75744f66426f756e647360601b604482015260640161052e565b6000610b6782600c61107f565b835110156108255760405162461bcd60e51b8152602060048201526014602482015273746f55696e7439365f6f75744f66426f756e647360601b604482015260640161052e565b6000610bbb82600561107f565b8351101561093d5760405162461bcd60e51b8152602060048201526014602482015273746f55696e7434305f6f75744f66426f756e647360601b604482015260640161052e565b606081610c1081601f61107f565b1015610c4f5760405162461bcd60e51b815260206004820152600e60248201526d736c6963655f6f766572666c6f7760901b604482015260640161052e565b610c59828461107f565b84511015610c9d5760405162461bcd60e51b8152602060048201526011602482015270736c6963655f6f75744f66426f756e647360781b604482015260640161052e565b606082158015610cbc5760405191506000825260208201604052610d06565b6040519150601f8416801560200281840101858101878315602002848b0101015b81831015610cf5578051835260209283019201610cdd565b5050858452601f01601f1916604052505b50949350505050565b6000610d1c82601061107f565b835110156107c75760405162461bcd60e51b8152602060048201526015602482015274746f427974657331365f6f75744f66426f756e647360581b604482015260640161052e565b6000610d7182601461107f565b83511015610db95760405162461bcd60e51b8152602060048201526015602482015274746f416464726573735f6f75744f66426f756e647360581b604482015260640161052e565b500160200151600160601b900490565b6000610dd682600161107f565b835110156107085760405162461bcd60e51b8152602060048201526014602482015273746f4279746573315f6f75744f66426f756e647360601b604482015260640161052e565b634e487b7160e01b600052604160045260246000fd5b600082601f830112610e4457600080fd5b813567ffffffffffffffff80821115610e5f57610e5f610e1d565b604051601f8301601f19908116603f01168101908282118183101715610e8757610e87610e1d565b81604052838152866020858801011115610ea057600080fd5b836020870160208301376000602085830101528094505050505092915050565b60008060408385031215610ed357600080fd5b823567ffffffffffffffff811115610eea57600080fd5b610ef685828601610e33565b95602094909401359450505050565b60008060408385031215610f1857600080fd5b82359150602083013567ffffffffffffffff811115610f3657600080fd5b610f4285828601610e33565b9150509250929050565b60008060408385031215610f5f57600080fd5b823567ffffffffffffffff80821115610f7757600080fd5b610f8386838701610e33565b93506020850135915080821115610f9957600080fd5b50610f4285828601610e33565b600060208284031215610fb857600080fd5b813567ffffffffffffffff811115610fcf57600080fd5b610fdb84828501610e33565b949350505050565b600080600060608486031215610ff857600080fd5b833567ffffffffffffffff81111561100f57600080fd5b61101b86828701610e33565b9660208601359650604090950135949350505050565b600060208083528351808285015260005b8181101561105e57858101830151858201604001528201611042565b506000604082860101526040601f19601f8301168501019250505092915050565b8082018082111561064c57634e487b7160e01b600052601160045260246000fdfea26469706673582212205bdf5bc4551862519f5370e0dcec38eefbbbe11b6a5bf19ce2846b4f8831a5dc64736f6c63430008110033", + "nonce": "0x0" + }, + "additionalContracts": [], + "isFixedGasLimit": false + }, + { + "hash": "0x04421e1ee1daabd96de431e3acf5a79f131db3bbf739afaaa055130741e9dafb", + "transactionType": "CREATE", + "contractName": "MultiSendCallOnly", + "contractAddress": "0xe7f1725E7734CE288F8367e1Bb143E90bb3F0512", + "function": null, + "arguments": null, + "transaction": { + "type": "0x00", + "from": "0xf39fd6e51aad88f6f4ce6ab8827279cfffb92266", + "gas": "0x2e5c4", + "value": "0x0", + "data": "0x608060405234801561001057600080fd5b506101ae806100206000396000f3fe60806040526004361061001e5760003560e01c80638d80ff0a14610023575b600080fd5b6100366100313660046100c7565b610038565b005b805160205b818110156100ac578083015160f81c6001820184015160601c601583018501516035840186015160558501870160008560008114610082576001811461001e5761008e565b6000808585888a5af191505b508061009957600080fd5b505080605501850194505050505061003d565b505050565b634e487b7160e01b600052604160045260246000fd5b6000602082840312156100d957600080fd5b813567ffffffffffffffff808211156100f157600080fd5b818401915084601f83011261010557600080fd5b813581811115610117576101176100b1565b604051601f8201601f19908116603f0116810190838211818310171561013f5761013f6100b1565b8160405282815287602084870101111561015857600080fd5b82602086016020830137600092810160200192909252509594505050505056fea2646970667358221220c15490bbb756a4c3c49d6335b2e81d2d098647b0ea70174c2279f199b1d0800364736f6c63430008110033", + "nonce": "0x1" + }, + "additionalContracts": [], + "isFixedGasLimit": false + }, + { + "hash": "0x023af01d6c729a8e69f0901c164e90f70084a7f7511a9b37e7aabbccd2a6f95a", + "transactionType": "CREATE", + "contractName": "BasicCellRenderer", + "contractAddress": "0x9fE46736679d2D9a65F0992F2272dE9f3c7fa6e0", + "function": null, + "arguments": null, + "transaction": { + "type": "0x00", + "from": "0xf39fd6e51aad88f6f4ce6ab8827279cfffb92266", + "gas": "0x3180ad", + "value": "0x0", + "data": "0x608060405234801561001057600080fd5b50612c25806100206000396000f3fe608060405234801561001057600080fd5b50600436106100365760003560e01c806306d4cd8b1461003b57806328de0f2f14610064575b600080fd5b61004e610049366004610322565b610077565b60405161005b919061038b565b60405180910390f35b61004e610072366004610404565b6100f1565b60606000610086600f846104fc565b90506000610095600f8361051e565b61009f9085610535565b905060006100ae826041610548565b60f81b9050806100c76100c2856001610548565b6101b6565b6040516020016100d8929190610577565b6040516020818303038152906040529350505050919050565b606060006100fe86610077565b905083838261018388735fbdb2315678afecb367f032d93f642f64180aa363b5cdf924909160006040518363ffffffff1660e01b81526004016101429291906105a8565b602060405180830381865af415801561015f573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906100c291906105ca565b87878660405160200161019c97969594939291906105f2565b604051602081830303815290604052915050949350505050565b606060006101c383610249565b600101905060008167ffffffffffffffff8111156101e3576101e36103a5565b6040519080825280601f01601f19166020018201604052801561020d576020820181803683370190505b5090508181016020015b600019016f181899199a1a9b1b9c1cb0b131b232b360811b600a86061a8153600a850494508461021757509392505050565b60008072184f03e93ff9f4daa797ed6e38ed64bf6a1f0160401b83106102885772184f03e93ff9f4daa797ed6e38ed64bf6a1f0160401b830492506040015b6d04ee2d6d415b85acef810000000083106102b4576d04ee2d6d415b85acef8100000000830492506020015b662386f26fc1000083106102d257662386f26fc10000830492506010015b6305f5e10083106102ea576305f5e100830492506008015b61271083106102fe57612710830492506004015b60648310610310576064830492506002015b600a831061031c576001015b92915050565b60006020828403121561033457600080fd5b5035919050565b60005b8381101561035657818101518382015260200161033e565b50506000910152565b6000815180845261037781602086016020860161033b565b601f01601f19169290920160200192915050565b60208152600061039e602083018461035f565b9392505050565b634e487b7160e01b600052604160045260246000fd5b60008083601f8401126103cd57600080fd5b50813567ffffffffffffffff8111156103e557600080fd5b6020830191508360208285010111156103fd57600080fd5b9250929050565b6000806000806060858703121561041a57600080fd5b84359350602085013567ffffffffffffffff8082111561043957600080fd5b818701915087601f83011261044d57600080fd5b81358181111561045f5761045f6103a5565b604051601f8201601f19908116603f01168101908382118183101715610487576104876103a5565b816040528281528a60208487010111156104a057600080fd5b8260208601602083013760006020848301015280975050505060408701359150808211156104cd57600080fd5b506104da878288016103bb565b95989497509550505050565b634e487b7160e01b600052601160045260246000fd5b60008261051957634e487b7160e01b600052601260045260246000fd5b500490565b808202811582820484141761031c5761031c6104e6565b8181038181111561031c5761031c6104e6565b8082018082111561031c5761031c6104e6565b6000815161056d81856020860161033b565b9290920192915050565b6001600160f81b031983168152815160009061059a81600185016020870161033b565b919091016001019392505050565b6040815260006105bb604083018561035f565b90508260208301529392505050565b6000602082840312156105dc57600080fd5b5051919050565b81818437506000910190815290565b7f646174613a6170706c69636174696f6e2f6a736f6e2c7b22646573637269707481527f696f6e223a2022537461726b7368656574222c20226e616d65223a202200000060208201528688603d8301376000878201602160f81b603d820152875161066481603e840160208c0161033b565b7f222c22696d616765223a2022646174613a696d6167652f7376672b786d6c2c25603e92909101918201527f334373766725323076696577426f782533442532373025323030253230383925605e8201527f3230353525323725323066696c6c2533442532376e6f6e65253237253230786d607e8201527f6c6e73253344253237687474702533412f2f7777772e77332e6f72672f323030609e8201527f302f737667253237253345253343646566732533452533437374796c6525334560be8201527f253430666f6e742d66616365253230253742666f6e742d66616d696c7925334160de8201527f253230253237507265737325323053746172742532303250253237253342737260fe8201527f6325334125323075726c25323825323764617461253341666f6e742f776f666661011e8201527f32253342626173653634253243643039474d6741424141414141424c3841413861013e8201527f41414141415235774141424b674141454141414141414141414141414141414161015e8201527f4141414141414141414141414150305a4756453063476a41624d42794358675a61017e8201527f6741494e794551674b3846545361517544524141424e67496b41344e4d42434161019e8201527f46687a5148684649623644566c42306a314f4d4253336f4f4953744562732f2f6101be8201527f2f6c4a776356727a47634f30676f684c45484d6369694443434e57695a6761306101de8201527f79625345555954514f6a4b427038546c737a7344526438716174586c333058746101fe8201527f30645a47467952305668444b776c62746c25324272734643773945316e64655961021e8201527f4a74732f37527762305673784d71576c636a6a775445537a2f5568752f77337361023e8201527f33746b6f496d70343464515168576f456d54337579526d70746f7553446b7a5761025e8201527f454138762f3932364a4b7539486f696e6e3673376674336d4965476c7737547161027e8201527f6437456f326a46517849766a5642494a70563269614f62547a68575932314e7461029e8201527f476772687434704d4b3457556a34624c7967542f51253242514c7879253242336102be8201527f6c482f362f6b6275496444497239446a724a496a6f394a7336524d58253242456102de8201527f6b37424f545a6b6d70397a347455524652566656307148504448375a7462364a6102fe8201527f616f6130684c335975616232473373667a72365776394536793569767025324261031e8201527f7135564c74426a514478476f5345304150313762336466376c61726a6525324261033e8201527f73637a6b7241744a334b6657304a342532424b323365744b4b556a383554616f61035e8201527f57473453346158436c427743413268676141652532423658396f696e32304e6261037e8201527f554a7264466767517049686d5247494d30372f7025324277375a7058316c473161039e8201527f6a6a51787073435141423438714445415042346950312f6a39592f4261686a356103be8201527f5943414e302f78714157496852616a6c6e694e654f50396e78433466667932556103de8201527f694843304e47386b686f6f567a6f7459334445417a417a41356b473735337a6a6103fe8201527f4853354d6e6d586b69496a6d54554d36556d4d3025324256346976752f48377861041e8201527f6a364666322f6b343472787a6449324141676742492f4c48416b394a7a35554d61043e8201527f496f4c7755344146455435725a464f33444d616655633061777351434879497061045e8201527f557a546b30784a474a454f6a4e6871436b474570496153474f6a714e466d2f5761047e8201527f4e434e3569636b71434d6e414165564c4d4c655867356971386b365752585a5261049e8201527f326c337042393831427a73475a743225324256696c4342723954494a674b67786104be8201527f365542514446253242566a4b44714e7741414948386a6949664d6e75384b68666104de8201527f584b486f4e3348634134477245786842324155442f795a554d423857547579496104fe8201527f413444634f4b656434397939504249616e426967734d454e38556b30766c547661051e8201527f304a58334e394d795a75544d763573655357413525324238556538504465547261053e8201527f645467474973566d4e33635856586a6463795275633434385866664176506e7361055e8201527f3575324d4531722532426a4731703137767a3849704f416e483444427367793361057e8201527f512f54376b33646d2f3846334232377355694877464631414f6c683055646e4961059e8201527f4471494e5164506355393145786f2f346252696a6a5169704e4e307a4c646c7a6105be8201527f504438496f547449734c38717162746f4f5149514a5a567849705931315073536105de8201527f55533231397a4c585066642f507667765751346372464d2532425769755671706105fe8201527f645a6f4e6475645872632f4745324d4a36656e3575635746694763375274364f61061e8201527f487676354d674c2532427a44733578444277696141315433554877326b63594361063e8201527f312f55666453316645316d37763742346537653350574848786533594f32483561065e8201527f25324241504f5a7965503025324251506553425468793078713965363241486a61067e8201527f6141556842432f364144484c6f476f4f657636412532426867487369317a613861069e8201527f71355a4e4d716a596c575a4d713867354248445574495370574a73526f52544a6106be8201527f56613049305a3957546b5371564b73507a3464586a7648746449684c6e7670746106de8201527f554c4330753542567579414d544b4a513930594b5267546e5769476b6d7153456106fe8201527f714b6d7256685259674b6b335443686255573671456f45637665577a6859535461071e8201527f4c32484e706735452f6d7151393956564467763352475435586d33637a68754c61073e8201527f3972685864316132372f736c5130686959366a643739614f5a43746a6f52687261075e8201527f623136575676514b725734477a786a7869723238494d697a2f7155447973495761077e8201527f7037516a667765347a556437614a735651575179524c554b484b42577938577661079e8201527f45565333584d53353656337757644f442532424638757639645477496d4b722f6107be8201527f5064626d5763775176456641616a7975566a70784e32704f56635769336c38776107de8201527f454c2f6d395070646f55494536253242504b5838315041546d67654f304231736107fe8201527f47454825324261707a353466646d534a7a333741686635366a4c7739756e504561081e8201527f35644d4b3025324237544639563843435466523979664e7355493474557a464661083e8201527f42326e536e384b4f626a64446964554c7034494a6873777878595172595a643661085e8201527f4e76436e55394d445825324252654c6e4d546d6c315a453972306b5077334e3261087e8201527f6752253242736a4573596d4953706b356c31497333594e614a4b6f6e7a65703761089e8201527f56637354316e556b62347048774b5a41796b614b6f43504630506f6d456876496108be8201527f5758656e6f5a767836774f4b313070316c3274546858793850316555776473766108de8201527f53715157766f424d7473674851554a614774494273756861776450545a5378596108fe8201527f707257757734647a7231564755744449465871726f4d4d69597346783857695461091e8201527f336463574b6f376d50554c79715657413972305974524a4c626957766a6e4c2561093e8201527f324272633452646767624e516c514141613264306d616236364d48447074314361095e8201527f6477626b51436253375053445a4d7a3746724f51713165636153304a6c74644161097e8201527f6c44527941587173364130586247707748676b70367572557757416272464d3361099e8201527f75794d764e4b6c344d6c435548537950416d3931776144454a3559595148754a6109be8201527f4d32304b575251737637486b61334770686c533258444b714f4b4245554753316109de8201527f65306b63316f323449494166486c4449794278584a4a656767423369386174566109fe8201527f67434f3064444f5a484a57596a564c416a6a397137765673456e72684b374568610a1e8201527f4c75427a42586d4d674554634531636d61436976504b6f4a766670466c794935610a3e8201527f4d70584234454325324245672f596d303454787843354e6c73596b74646f5951610a5e8201527f55656c38624673456c3748345a36734377622f38626b347458574658504b6a71610a7e8201527f5462526e64336e4c5770394f784941706c664b586747684e6c72443462354a4c610a9e8201527f5a367055753441726756614d366561357844574244476f7a707a4641376e6747610abe8201527f74596334486141775269475576637653653652414177335a576b564f4667764b610ade8201527f46364955696c4d49394964715155345134585264484866736666517770313955610afe8201527f434a49306a5773725433356f5578303678507268473271364d4533554f306c63610b1e8201527f635a557354454351784a44527854444b6c334c4948722f6162546f73686c6466610b3e8201527f51786a364f57745273466e6966444373473674336b426f344e6d424a6d615556610b5e8201527f54636c794951414a4c6a6e723042365a3859464d6e396b397967703752727848610b7e8201527f36766877624a4e41654b4d554436353974386746514a4d5377652f434f624850610b9e8201527f467671484746554e5266253242737245663354584b42725a76676b6369396972610bbe8201527f426d63442f7458616754474358634e68432532424f3539754c706e6673796f71610bde8201527f4c53313238374552776d38666165564f6d3857634437386c5a36594232793938610bfe8201527f5a4c6c4d3972557264324c514e6c324956643454727376675139363079377573610c1e8201527f5965306854506170576a71726c2532425837784665424e54253242315a644a4a610c3e8201527f572532424678745737584e7774634e7a7761672532425256656a6d4a6839656d610c5e8201527f6c495a4b69694e63694b3849554f4d33556a4a376342554e5847505853326c68610c7e8201527f253242687770676f4836567348524f63764569723372585970344c7769435a77610c9e8201527f3176486c43623552314d68623564536e4f326d6e6f475a6f5846315765574757610cbe8201527f6d7a694a314a555534715072306e694a536c4e424331636b4b6d4a6657625877610cde8201527f5577757449547a456d6a776770776142753464525066746a2f4e384143526e64610cfe8201527f616b2f4641674b674c37305058577839767a6b59322532426d34355473496b4c610d1e8201527f3037616f70444e6f676830535262535a534f397a744657516a376e574c676275610d3e8201527f364325324254374b6a44715a3667456e5277674d78306b4c5a77797962514f76610d5e8201527f514130773054782f354a42722f63595a6453574f546a774446364e6f586b796a610d7e8201527f33566a484e4751494e76426a5a734a4a3377466141516d6f5a575a5970416961610d9e8201527f574f466e6e686455524176576b557a77693062677a5a4158796f445545714863610dbe8201527f57307069454c574f777168773365765478444957724e32495371525151454c41610dde8201527f4d32365334486c723548552f48784a43436844424a6b756b6341573856415430610dfe8201527f6770545a544b4e48677a444f7234314751656a4f34677a416e6b577077464752610e1e8201527f43334c625231787a4b434875365635694674674c704f384b51596d5965467868610e3e8201527f4c32643838736469506a2f76306b427a636c51637954735766324d6445394944610e5e8201527f386d5858576a72434b253242354532756e336e6976656973526e726971317548610e7e8201527f594d6a6a69694945304b6466674d6f3163476d6b557254624f30356732737633610e9e8201527f477673525971762f61457736375472644f705435567a4641364131417939634b610ebe8201527f6f44667762544a64445750524e57517354796a6d3772486249734b466b6f4f2f610ede8201527f5a4c4376735966785973337768534338614c49344b765677373773336e347a48610efe8201527f67697061634a6e435362463945727a53357069386343577655597a4f5064327a610f1e8201527f684a2f4750437a53684f453378596c634f3350796164586a54334f6b68706841610f3e8201527f58465853766865544e5355525446565641486f4a6d7949726b6a454b6f517746610f5e8201527f4730303554334158643935764e30446d336d427332786746546c253242513572610f7e8201527f73416a6e744768707a6f62643642374e7a52664e56653130446f4e5639343753610f9e8201527f59646f635252624776636d785456786f61367a717756376d416e773544314745610fbe8201527f5474327a48382532425476514256356e37672f32615768743979794e594c3974610fde8201527f4f42744167384846435945316d4e775432454232467538544968543776565241610ffe8201527f3461587a6e6b3670545a4e6779696f73747749364b654655374c696c7041253261101e8201527f42334234474a794277574d327062466a4876734a3747754f6f616b6a6d46746a61103e8201527f59344c6254396c323239253242453646374c4475577a744c6e333749786b386a61105e8201527f356c42564b33774c7369362f416641756f6a34396c4d6b5653545045396b704761107e8201527f64304c724555534a4941413070596c4178414d642f4e4f46776f4a446458466961109e8201527f307a4f5744422f54464a705666575642574f516274724a556230636c663369256110be8201527f3242575072446f596c65545674564f45306d36793564487444725551776f414c6110de8201527f7455523365585364444d4e785866656a594674764c626c726c4a7777484b2f456110fe8201527f6957504a616b32574b35386e684e6f4c6a615a55475841756f32656f5777464561111e8201527f66612f445334496958717246714779633348726939785132693243352f73357661113e8201527f7a424d30793777334d4473774d3759325247427172464d6778374f696325324261115e8201527f30497a736d5678617a5473305263666a324f3334532f525639503269486f427561117e8201527f6c4b49594244665a46654c53356439725379664a64536c67683268644d72324f61119e8201527f5552334b6e6c506e4f41785477314a384c4d325a776e4671765a745a4a6c78786111be8201527f343873776243743272316b664875443756624831326159383849437456734b786111de8201527f4b742f31726b616c42414d74782f6f6f6d43445059626b556f4c6344624b436a6111fe8201527f7675713953544467746a584744715735564b36686347654f46697a6a3643714c61121e8201527f4f49716b57783477733245504d444e7378253242613661533230384f39784c3061123e8201527f526146586f394241645530706e452532424c695359334b536f4a41525978646e61125e8201527f7a69545a4d706961442f3438496969393834446151357976656378414673735761127e8201527f792f686274696d63253242704c386b35796f70496d4a627948712f6138797a6c61129e8201527f6c37726f4f7a586d786d4163337459585363546b65734d6344324939315a36336112be8201527f6549312f394a627755716b36737863394b52677277574d414e6543314e6e39756112de8201527f4779775473706d5538712532426c5a6d43714d674153363662674841476a514b6112fe8201527f73754a334451416a5235346d356a4c7a5a616e546c62646530253242726e663461131e8201527f385a574138546c32673277414779427748516e3552322532424e6a726542677861133e8201527f626c734e46627554776d6862414a48737a2f72416f61764c4f34317874767a5961135e8201527f4768336e4c4a426b41506a7578424a445248333048426575385567436978464e61137e8201527f437951322f4b253242385157372f6530253242664f2532423436524e5730657961139e8201527f4c726f39446a5467704a4e4d3547385179306c54644f756d73773066715045696113be8201527f393646702532424830634d774e6f376a787a596d6e4e664d5a6d64506c7932706113de8201527f6f7132575065476d67507136474c78504e34536c4b486e7870624f69754c58516113fe8201527f75583155715031676a6f38426136536c55314f416d5267707a7531735444584a61141e8201527f50754d3338546f387130344c324e777970653837327777556741675a6c70386461143e8201527f6b5166397a38544d43624d6b596b3758484375333564375a5a41656f346b5a4b61145e8201527f68784953386945354c546a334c4f6976485a7268394a3870337a4c5a436a776361147e8201527f6970354452694b6e576e49664c33386b4a684d7452776a67553525324256726d61149e8201527f714b6c6739307a376a64732f4238444b646b464c76483353253242376f4838616114be8201527f6c445a6c626734533155583574434d445342324f364b756c7a41344b763067376114de8201527f314251643054464b7733685358696e62374e6c304258725873514e6376436b386114fe8201527f6d6f394f786965783559627a78564e2f6b3738336f48545a495777393079495a61151e8201527f777672697164475473586e54384965705437597946434f4a6741395a3042794961153e8201527f455956735478522f6b73616b324268376f4b767034766e695530364d57317a4261155e8201527f4672746568647a306b6b587951786a426d7965645636644d596545386146787461157e8201527f6575777355466136466c6c54446c716430707a525a77473663467266574d627061159e8201527f384738587a6a66624d253242354658657076356f457273696c363458783663376115be8201527f5841576275696d3666387347494d58666f334a6971476b703333376854536a676115de8201527f65636862364f42472f327a31376a6f6d4469476d253242476c623146553069656115fe8201527f6e7552796977654c576767447a6d4655765545556a5a6f377356544877684f4661161e8201527f504d6b4e737146423977796d6b45307639666d7477453854377135384e594f3761163e8201527f787534623833766e46766c35755378446c472532426b4f51675249644f346a6761165e8201527f7a786a53486a4b4c7332742f6c684f647771766131415744437072763344345361167e8201527f34523741625934544362664b4637744265363554343551347a7a49714433316161169e8201527f79797557716a692532424636585337535439483943314f342f694b366b4775766116be8201527f6b512f664e3537487837456533373435622f76766e2f62482f58253242392f256116de8201527f32426762656d684f416d49705576755157757344764b517578394a44564e734b6116fe8201527f673651636d6b73515341445530346347524c523768466f5a326337785545664761171e8201527f253242776b755459474d764c6a422f6550634936416847686e5735717a45416961173e8201527f4a586377564545775869654e70536c317a6a457253253242435325324248634c61175e8201527f6f52506d7661324d6767412f69794c67536f544a555767733442794149514f3061177e8201527f4f6f705a487656627a6844494c65557155677a7a48492f667950474e7879777361179e8201527f6f796c6865534639577662795363336b4544716b32415636436c4364635535536117be8201527f6e6c4e6e4963394b794d63384c79622532423867484f4a795173466c4c6250526117de8201527f796d6d374a42743349545a544162314732444252496b514b51705451396939626117fe8201527f3665435353387a4d366161525364544b5657524d336663454a4c644b61746e7361181e8201527f724959774e4a55253242733048364461757832775a35686733706c653042474861183e8201527f756b316b4543734859446461496d4b7025324233463542317859763763486b7161185e8201527f644475306a4b645273657a3531376d63563641685148346931484e3173766c6a61187e8201527f5248366845454672682532426e72726d47316e33307a4d346749776d694d774561189e8201527f624b6842545564423141486f582532424b6741517a4f48543946494f71436b526118be8201527f4e4e623273397170496943534f753167576868497343564a73765771457175356118de8201527f47624a514b4e6a61427465394c4f69676368414a7665475773394332323033766118fe8201527f6f6e476c6b77725251323464646732796345646157554456734441785548734961191e8201527f77773665615234464665336d4a416b66426d5a6452395264774a485a6d47645261193e8201527f7950436a706a627a31712f584a34534949446b66384b4b6e6e32456c4b6d794c61195e8201527f69573442513836733151554b2f76426867524e776548766c5968687a7238706361197e8201527f67704b4b6d6f61576a7036426b594f48446c7835734b5647336365474539657661199e8201527f506e773563646667454242676f554946536238587632504553314772446a78456119be8201527f69524b6b697846716a54704d6d544b6b693148726a7a354368517155717845716119de8201527f544c6c4b6c53715571314772547231476a527130717846717a62744f6e5347656119fe8201527f3668374a6d627a4968355a6544696c315a58536a7430774375616b336c6e476f611a1e8201527f5655506f53734e663337394b326a6274716d44674d69485a42665a6c68324839611a3e8201527f75773738495469314a466a585653662f4336634f55667a346f30644178305447611a5e8201527f777448446863666a3443516d49694531444d5a42546b6c4e5a557065566f614f611a7e8201527f6e717633733234314e50503965766574594768435a50576a4979747332706173611a9e8201527f436a25324270556a54596c336b615574374f744b4a6136355850396d356e6367611abe8201527f364e686a685a587032762532426d57724341545a754a303368316b6a55756976611ade8201527f5067596e6a6e35744b4a4f6b326e6362703251414559585a69304b496d50356b611afe8201527f744961466e366b5a397743253237253239253230666f726d6174253238253237611b1e8201527f776f666632253237253239253342666f6e742d7765696768742533412532306e611b3e8201527f6f726d616c253342666f6e742d7374796c652533412532306e6f726d616c2533611b5e8201527f42666f6e742d646973706c617925334125323073776170253342253744746578611b7e8201527f74253230253742666f6e742d66616d696c792533412532302532375072657373611b9e8201527f2532305374617274253230325025323725334266696c6c253341253230776869611bbe8201527f74652537442e76616c7565253230253742666f6e742d73697a65253341253230611bde8201527f313070782533422537442e6e616d65253230253742666f6e742d73697a652533611bfe8201527f412532303470782533422537442533432f7374796c652533452533432f646566611c1e8201527f7325334525334372656374253230776964746825334425323738392532372532611c3e8201527f30686569676874253344253237353525323725323066696c6c25334425323762611c5e8201527f6c61636b2532372532302f253345253343726563742532307825334425323735611c7e8201527f2e3525323725323079253344253237352e352532372532307769647468253344611c9e8201527f2532373738253237253230686569676874253344253237343425323725323066611cbe8201527f696c6c2533442532372532333030303046462532372532302f25334525334374611cde8201527f657874253230746578742d616e63686f722533442532376d6964646c65253237611cfe8201527f2532307825334425323734342e35253237253230792533442532373333253237611d1e8201527f253230636c61737325334425323776616c756525323725334500000000000000611d3e820152612ba5612b9e6129f5611d5784018a61055b565b7f2533432f746578742533452533437265637425323078253344253237352e352581527f323725323079253344253237352e35253237253230776964746825334425323760208201527f373825323725323068656967687425334425323734342532372532307374726f60408201527f6b652533442532372532334646344630412532372532307374726f6b652d776960608201527f647468253344253237332532372532302f25334525334372656374253230782560808201527f334425323733302532372532307925334425323734352e35253237253230776960a08201527f647468253344253237353825323725323068656967687425334425323738253260c08201527f3725323066696c6c2533442532372532334646344630412532372532302f253360e08201527f4525334374657874253230746578742d616e63686f72253344253237656e64256101008201527f32372532307825334425323738372532372532307925334425323735322532376101208201527f253230636c6173732533442532376e616d6525323725334500000000000000006101408201526101580190565b86886105e3565b602160f81b81529050612bbb600182018561055b565b7f2533432f746578742533452533432f737667253345227d00000000000000000081526017019a995050505050505050505056fea26469706673582212206a2c00c13ddb4f1bcd7ee36e36f0c874d7d9dadcf38306eab3610b5a6e7af83464736f6c63430008110033", + "nonce": "0x2" + }, + "additionalContracts": [], + "isFixedGasLimit": false + }, + { + "hash": "0x04374fcd28c1aba28792cbfb61fa1e3238e2951352518604d80c9349b480291e", + "transactionType": "CREATE", + "contractName": null, + "contractAddress": "0xCf7Ed3AccA5a467e9e704C703E8D87F634fB0Fc9", + "function": null, + "arguments": null, + "transaction": { + "type": "0x00", + "from": "0xf39fd6e51aad88f6f4ce6ab8827279cfffb92266", + "gas": "0x42230", + "value": "0x0", + "data": "0x608060405234801561001057600080fd5b506102cf806100206000396000f3fe608060405234801561001057600080fd5b506004361061004c5760003560e01c80630194db8e14610051578063072bdcc214610076578063a391c15b14610089578063b67d77c51461009c575b600080fd5b61006461005f366004610160565b6100af565b60405190815260200160405180910390f35b610064610084366004610160565b6100ef565b61006461009736600461021e565b610129565b6100646100aa36600461021e565b61013e565b600080805b83518110156100e8578381815181106100cf576100cf610240565b60200260200101518201915080806001019150506100b4565b5092915050565b60006001815b83518110156100e85783818151811061011057610110610240565b60200260200101518202915080806001019150506100f5565b60006101358284610256565b90505b92915050565b60006101358284610278565b634e487b7160e01b600052604160045260246000fd5b6000602080838503121561017357600080fd5b823567ffffffffffffffff8082111561018b57600080fd5b818501915085601f83011261019f57600080fd5b8135818111156101b1576101b161014a565b8060051b604051601f19603f830116810181811085821117156101d6576101d661014a565b6040529182528482019250838101850191888311156101f457600080fd5b938501935b82851015610212578435845293850193928501926101f9565b98975050505050505050565b6000806040838503121561023157600080fd5b50508035926020909101359150565b634e487b7160e01b600052603260045260246000fd5b60008261027357634e487b7160e01b600052601260045260246000fd5b500490565b8181038181111561013857634e487b7160e01b600052601160045260246000fdfea2646970667358221220fcdef23ba4219270ddb3ab764e22a87e229c05e6f1dfc4eeea983fa1a1dac91f64736f6c63430008110033", + "nonce": "0x3" + }, + "additionalContracts": [], + "isFixedGasLimit": false + }, + { + "hash": "0x02ad356ffbc2dd9452e2e5e95bf495e830fe3de41cd9814a8a65e065bcd833e8", + "transactionType": "CREATE", + "contractName": "Evmsheet", + "contractAddress": "0xDc64a140Aa3E981100a9becA4E685f962f0cF6C9", + "function": null, + "arguments": [ + "0x9fE46736679d2D9a65F0992F2272dE9f3c7fa6e0", + "10000000000000000" + ], + "transaction": { + "type": "0x00", + "from": "0xf39fd6e51aad88f6f4ce6ab8827279cfffb92266", + "gas": "0x34bf99", + "value": "0x0", + "data": "0x608060405234801561001057600080fd5b50604051612ed9380380612ed983398101604081905261002f916100b1565b61003833610061565b600280546001600160a01b0319166001600160a01b0393909316929092179091556001556100eb565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b600080604083850312156100c457600080fd5b82516001600160a01b03811681146100db57600080fd5b6020939093015192949293505050565b612ddf806100fa6000396000f3fe608060405260043610620000a95760003560e01c80638da5cb5b116200006c5780638da5cb5b146200016d578063ab2fa65a146200018d578063ae28505e14620001b4578063c56c4cf114620001d9578063f2fde38b14620001fb578063f52be2a2146200022057600080fd5b806303fb31e814620000ae5780631164c83d14620000d5578063145e414714620000ec5780635787cacb146200012e578063715018a61462000155575b600080fd5b348015620000bb57600080fd5b50620000d3620000cd36600462000778565b62000247565b005b620000d3620000e6366004620007e9565b62000273565b348015620000f957600080fd5b50620001116200010b36600462000864565b620004b2565b6040516001600160a01b0390911681526020015b60405180910390f35b3480156200013b57600080fd5b50620001466200054f565b60405162000125919062000891565b3480156200016257600080fd5b50620000d3620005b3565b3480156200017a57600080fd5b506000546001600160a01b031662000111565b3480156200019a57600080fd5b50620001a5620005cb565b604051620001259190620008e0565b348015620001c157600080fd5b5062000111620001d336600462000930565b620005f7565b348015620001e657600080fd5b5060025462000111906001600160a01b031681565b3480156200020857600080fd5b50620000d36200021a36600462000778565b62000622565b3480156200022d57600080fd5b506200023860015481565b60405190815260200162000125565b62000251620006a1565b600280546001600160a01b0319166001600160a01b0392909216919091179055565b60015434146200029d5760405163723a79e360e11b81523460048201526024015b60405180910390fd5b600060405180602001620002b1906200074d565b6020820181038252601f19601f8201166040525090506000828251602084016000f56002546040516356d3163d60e01b81526001600160a01b0391821660048201529192508216906356d3163d90602401600060405180830381600087803b1580156200031d57600080fd5b505af115801562000332573d6000803e3d6000fd5b505060405163c47f002760e01b81526001600160a01b038416925063c47f0027915062000366908a908a906004016200094a565b600060405180830381600087803b1580156200038157600080fd5b505af115801562000396573d6000803e3d6000fd5b5050604051635c26412360e11b81526001600160a01b038416925063b84c82469150620003ca90889088906004016200094a565b600060405180830381600087803b158015620003e557600080fd5b505af1158015620003fa573d6000803e3d6000fd5b505060405163f2fde38b60e01b81523260048201526001600160a01b038416925063f2fde38b9150602401600060405180830381600087803b1580156200044057600080fd5b505af115801562000455573d6000803e3d6000fd5b5050600380546001810182556000919091527fc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b0180546001600160a01b0319166001600160a01b0394909416939093179092555050505050505050565b600060ff60f81b838360405180602001620004cd906200074d565b6020820181038252601f19601f82011660405250805190602001206040516020016200053094939291906001600160f81b031994909416845260609290921b6bffffffffffffffffffffffff191660018401526015830152603582015260550190565b60408051601f1981840301815291905280516020909101209392505050565b60606003805480602002602001604051908101604052809291908181526020018280548015620005a957602002820191906000526020600020905b81546001600160a01b031681526001909101906020018083116200058a575b5050505050905090565b620005bd620006a1565b620005c96000620006fd565b565b606060405180602001620005df906200074d565b601f1982820381018352601f90910116604052919050565b600381815481106200060857600080fd5b6000918252602090912001546001600160a01b0316905081565b6200062c620006a1565b6001600160a01b038116620006935760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b606482015260840162000294565b6200069e81620006fd565b50565b6000546001600160a01b03163314620005c95760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015260640162000294565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b612430806200097a83390190565b80356001600160a01b03811681146200077357600080fd5b919050565b6000602082840312156200078b57600080fd5b62000796826200075b565b9392505050565b60008083601f840112620007b057600080fd5b50813567ffffffffffffffff811115620007c957600080fd5b602083019150836020828501011115620007e257600080fd5b9250929050565b6000806000806000606086880312156200080257600080fd5b853567ffffffffffffffff808211156200081b57600080fd5b6200082989838a016200079d565b909750955060208801359150808211156200084357600080fd5b5062000852888289016200079d565b96999598509660400135949350505050565b600080604083850312156200087857600080fd5b62000883836200075b565b946020939093013593505050565b6020808252825182820181905260009190848201906040850190845b81811015620008d45783516001600160a01b031683529284019291840191600101620008ad565b50909695505050505050565b600060208083528351808285015260005b818110156200090f57858101830151858201604001528201620008f1565b506000604082860101526040601f19601f8301168501019250505092915050565b6000602082840312156200094357600080fd5b5035919050565b60208152816020820152818360408301376000818301604090810191909152601f909201601f1916010191905056fe60806040523480156200001157600080fd5b50604051806040016040528060078152602001660536865657420360cc1b815250604051806040016040528060048152602001630534854360e41b81525062000069620000636200008f60201b60201c565b62000093565b600162000077838262000188565b50600262000086828262000188565b50505062000254565b3390565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b634e487b7160e01b600052604160045260246000fd5b600181811c908216806200010e57607f821691505b6020821081036200012f57634e487b7160e01b600052602260045260246000fd5b50919050565b601f8211156200018357600081815260208120601f850160051c810160208610156200015e5750805b601f850160051c820191505b818110156200017f578281556001016200016a565b5050505b505050565b81516001600160401b03811115620001a457620001a4620000e3565b620001bc81620001b58454620000f9565b8462000135565b602080601f831160018114620001f45760008415620001db5750858301515b600019600386901b1c1916600185901b1785556200017f565b600085815260208120601f198616915b82811015620002255788860151825594840194600190910190840162000204565b5085821015620002445787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b6121cc80620002646000396000f3fe608060405234801561001057600080fd5b50600436106102275760003560e01c8063715018a611610130578063b85d8b85116100b8578063cf0983981161007c578063cf09839814610512578063cfbe95d814610535578063df4ca20614610556578063e985e9c514610576578063f2fde38b146105a457600080fd5b8063b85d8b85146104a4578063b88d4fde146104ce578063b8c368ec146104e1578063c47f0027146104ec578063c87b56dd146104ff57600080fd5b806395d89b41116100ff57806395d89b4114610439578063a22cb46514610441578063b46ebb1214610454578063b6d658e114610467578063b84c82461461049157600080fd5b8063715018a6146103fa578063768d5029146104025780638ada6b0f146104155780638da5cb5b1461042857600080fd5b80631b06443c116101b35780634f6ccce7116101825780634f6ccce71461038157806356d3163d146103a15780636352211e146103b45780636a0abc74146103c757806370a08231146103e757600080fd5b80631b06443c14610335578063206848f61461034857806323b872dd1461035b57806342842e0e1461036e57600080fd5b8063081812fc116101fa578063081812fc146102a1578063095ea7b3146102e2578063172b9eed146102f757806318160ddd1461030a5780631941fd141461031357600080fd5b806301ffc9a71461022c57806302f3c4c91461025457806306fdde03146102745780630715a24a1461027c575b600080fd5b61023f61023a36600461176a565b6105b7565b60405190151581526020015b60405180910390f35b610267610262366004611861565b610609565b60405161024b9190611951565b610267610638565b6102936fffffffffffffffffffffffffffffffff81565b60405190815260200161024b565b6102ca6102af366004611964565b6005602052600090815260409020546001600160a01b031681565b6040516001600160a01b03909116815260200161024b565b6102f56102f036600461197d565b6106c6565b005b6102676103053660046119a9565b6107ad565b61029360075481565b610326610321366004611964565b610875565b60405161024b939291906119de565b6102ca610343366004611a0e565b61092a565b610326610356366004611964565b6109e3565b6102f5610369366004611a2b565b610ae1565b6102f561037c366004611a2b565b610ca8565b61029361038f366004611964565b60086020526000908152604090205481565b6102f56103af366004611a0e565b610da0565b6102ca6103c2366004611964565b610dca565b6103da6103d53660046119a9565b610e1c565b60405161024b9190611a6c565b6102936103f5366004611a0e565b610e60565b6102f5610ec3565b6102f5610410366004611af9565b610ed7565b6009546102ca906001600160a01b031681565b6000546001600160a01b03166102ca565b610267611035565b6102f561044f366004611b63565b611042565b610267610462366004611964565b6110ae565b61047a610475366004611964565b611258565b60408051921515835260208301919091520161024b565b6102f561049f366004611ba1565b611275565b6104b56104b2366004611964565b90565b6040516001600160e01b0319909116815260200161024b565b6102f56104dc366004611be3565b6112c6565b6102ca600160801b81565b6102f56104fa366004611ba1565b6113ae565b61026761050d366004611964565b6113ff565b61023f610520366004611a0e565b600160801b6001600160a01b03919091161090565b61023f610543366004611861565b516001600160a01b0316600160801b1490565b610569610564366004611964565b6114c9565b60405161024b9190611c16565b61023f610584366004611c4d565b600660209081526000928352604080842090915290825290205460ff1681565b6102f56105b2366004611a0e565b611526565b60006301ffc9a760e01b6001600160e01b0319831614806105e857506380ac58cd60e01b6001600160e01b03198316145b806106035750635b5e139f60e01b6001600160e01b03198316145b92915050565b6060816020015160405160200161062291815260200190565b6040516020818303038152906040529050919050565b6001805461064590611c7b565b80601f016020809104026020016040519081016040528092919081815260200182805461067190611c7b565b80156106be5780601f10610693576101008083540402835291602001916106be565b820191906000526020600020905b8154815290600101906020018083116106a157829003601f168201915b505050505081565b6000818152600360205260409020546001600160a01b03163381148061070f57506001600160a01b038116600090815260066020908152604080832033845290915290205460ff165b6107515760405162461bcd60e51b815260206004820152600e60248201526d1393d517d055551213d49256915160921b60448201526064015b60405180910390fd5b60008281526005602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b606060006107ba83610e1c565b9050606060005b825181101561086d576000806107ef8584815181106107e2576107e2611cb5565b6020026020010151611258565b9150915081156108335783610803826110ae565b61080c90611ccb565b60405160200161081d929190611cef565b6040516020818303038152906040529350610858565b6040516108469085908390602001611cef565b60405160208183030381529060405293505b5050808061086590611d27565b9150506107c1565b509392505050565b600a602052600090815260409020805460018201546002830180546001600160a01b039093169391926108a790611c7b565b80601f01602080910402602001604051908101604052809291908181526020018280546108d390611c7b565b80156109205780601f106108f557610100808354040283529160200191610920565b820191906000526020600020905b81548152906001019060200180831161090357829003601f168201915b5050505050905083565b6000600160801b6001600160a01b03831610156109da576000610955836001600160a01b03166110ae565b604051632d737e4960e21b8152909150735fbdb2315678afecb367f032d93f642f64180aa39063b5cdf92490610992908490600090600401611d40565b602060405180830381865af41580156109af573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906109d39190611d62565b9392505050565b5090565b919050565b60008181526003602052604081205481906060906001600160a01b0316610a1057600160801b9250610a2b565b6000848152600a60205260409020546001600160a01b031692505b6000848152600a60205260409020600181015460029091018054859291908190610a5490611c7b565b80601f0160208091040260200160405190810160405280929190818152602001828054610a8090611c7b565b8015610acd5780601f10610aa257610100808354040283529160200191610acd565b820191906000526020600020905b815481529060010190602001808311610ab057829003601f168201915b505050505090509250925092509193909250565b6000818152600360205260409020546001600160a01b03848116911614610b375760405162461bcd60e51b815260206004820152600a60248201526957524f4e475f46524f4d60b01b6044820152606401610748565b6001600160a01b038216610b815760405162461bcd60e51b81526020600482015260116024820152701253959053125117d49150d25412515395607a1b6044820152606401610748565b336001600160a01b0384161480610bbb57506001600160a01b038316600090815260066020908152604080832033845290915290205460ff165b80610bdc57506000818152600560205260409020546001600160a01b031633145b610c195760405162461bcd60e51b815260206004820152600e60248201526d1393d517d055551213d49256915160921b6044820152606401610748565b6001600160a01b0380841660008181526004602090815260408083208054600019019055938616808352848320805460010190558583526003825284832080546001600160a01b03199081168317909155600590925284832080549092169091559251849392917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b610cb3838383610ae1565b6001600160a01b0382163b1580610d5c5750604051630a85bd0160e11b8082523360048301526001600160a01b03858116602484015260448301849052608060648401526000608484015290919084169063150b7a029060a4016020604051808303816000875af1158015610d2c573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610d509190611d7b565b6001600160e01b031916145b610d9b5760405162461bcd60e51b815260206004820152601060248201526f155394d0519157d49150d2541251539560821b6044820152606401610748565b505050565b610da861159f565b600980546001600160a01b0319166001600160a01b0392909216919091179055565b6000818152600360205260409020546001600160a01b0316806109de5760405162461bcd60e51b815260206004820152600a6024820152691393d517d3525395115160b21b6044820152606401610748565b60608082516040519150602081048252602082016020850160005b83811015610e4f578181015183820152602001610e37565b505050810160200160405292915050565b60006001600160a01b038216610ea75760405162461bcd60e51b815260206004820152600c60248201526b5a45524f5f4144445245535360a01b6044820152606401610748565b506001600160a01b031660009081526004602052604090205490565b610ecb61159f565b610ed560006115f9565b565b6000858152600360205260409020546001600160a01b0316610f2f57610efd3286611649565b60078054600090815260086020526040812087905581546001929190610f24908490611d98565b90915550610f889050565b6000858152600360205260409020546001600160a01b03163214610f8857600085815260036020526040908190205490516324f3f02560e21b81526001600160a01b039091166004820152326024820152604401610748565b6040518060600160405280856001600160a01b0316815260200184815260200183838080601f0160208091040260200160405190810160405280939291908181526020018383808284376000920182905250939094525050878152600a6020908152604091829020845181546001600160a01b0319166001600160a01b0390911617815590840151600182015590830151909150600282019061102b9082611df9565b5050505050505050565b6002805461064590611c7b565b3360008181526006602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b6000818152600a6020908152604080832081516060818101845282546001600160a01b0316825260018301549482019490945260028201805494959491938401916110f890611c7b565b80601f016020809104026020016040519081016040528092919081815260200182805461112490611c7b565b80156111715780601f1061114657610100808354040283529160200191611171565b820191906000526020600020905b81548152906001019060200180831161115457829003601f168201915b505050505081525050905061119381516001600160a01b0316600160801b1490565b156111a1576109d381610609565b60006111b0826000015161092a565b905060006111bf836020015190565b905060006111d084604001516107ad565b90506000836001600160a01b031683836040516020016111f1929190611eb9565b60408051601f198184030181529082905261120b91611eea565b600060405180830381855afa9150503d8060008114611246576040519150601f19603f3d011682016040523d82523d6000602084013e61124b565b606091505b5098975050505050505050565b600080611266600284611f06565b60019081149493901c92915050565b61127d61159f565b7f8dca0271872d00b3de3abafca544c52fcd7d512dd852c9894fa2c118ac759a93600283836040516112b193929190611fce565b60405180910390a16002610d9b828483611ffe565b6112d1858585610ae1565b6001600160a01b0384163b15806113685750604051630a85bd0160e11b808252906001600160a01b0386169063150b7a02906113199033908a908990899089906004016120be565b6020604051808303816000875af1158015611338573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061135c9190611d7b565b6001600160e01b031916145b6113a75760405162461bcd60e51b815260206004820152601060248201526f155394d0519157d49150d2541251539560821b6044820152606401610748565b5050505050565b6113b661159f565b7fb65b7b5ea384affd30f77f842e057d29dd1b13f133adf69a724a8105b164ab75600183836040516113ea93929190611fce565b60405180910390a16001610d9b828483611ffe565b6000818152600360205260409020546060906001600160a01b03168061143b57604051630243d1a960e21b815260048101849052602401610748565b6000611446846110ae565b6009546040516328de0f2f60e01b81529192506001600160a01b0316906328de0f2f9061147c90879085906001906004016120fd565b600060405180830381865afa158015611499573d6000803e3d6000fd5b505050506040513d6000823e601f3d908101601f191682016040526114c19190810190612128565b949350505050565b604080516060808201835260008083526020830181905292820152906114ee836110ae565b6040805160608101825285815260009586526003602090815295829020546001600160a01b0316958101959095528401525090919050565b61152e61159f565b6001600160a01b0381166115935760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610748565b61159c816115f9565b50565b6000546001600160a01b03163314610ed55760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610748565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b6001600160a01b0382166116935760405162461bcd60e51b81526020600482015260116024820152701253959053125117d49150d25412515395607a1b6044820152606401610748565b6000818152600360205260409020546001600160a01b0316156116e95760405162461bcd60e51b815260206004820152600e60248201526d1053149150511657d3525395115160921b6044820152606401610748565b6001600160a01b038216600081815260046020908152604080832080546001019055848352600390915280822080546001600160a01b0319168417905551839291907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b6001600160e01b03198116811461159c57600080fd5b60006020828403121561177c57600080fd5b81356109d381611754565b634e487b7160e01b600052604160045260246000fd5b604051601f8201601f1916810167ffffffffffffffff811182821017156117c6576117c6611787565b604052919050565b6001600160a01b038116811461159c57600080fd5b600067ffffffffffffffff8211156117fd576117fd611787565b50601f01601f191660200190565b600082601f83011261181c57600080fd5b813561182f61182a826117e3565b61179d565b81815284602083860101111561184457600080fd5b816020850160208301376000918101602001919091529392505050565b60006020828403121561187357600080fd5b813567ffffffffffffffff8082111561188b57600080fd5b908301906060828603121561189f57600080fd5b6040516060810181811083821117156118ba576118ba611787565b60405282356118c8816117ce565b8152602083810135908201526040830135828111156118e657600080fd5b6118f28782860161180b565b60408301525095945050505050565b60005b8381101561191c578181015183820152602001611904565b50506000910152565b6000815180845261193d816020860160208601611901565b601f01601f19169290920160200192915050565b6020815260006109d36020830184611925565b60006020828403121561197657600080fd5b5035919050565b6000806040838503121561199057600080fd5b823561199b816117ce565b946020939093013593505050565b6000602082840312156119bb57600080fd5b813567ffffffffffffffff8111156119d257600080fd5b6114c18482850161180b565b60018060a01b0384168152826020820152606060408201526000611a056060830184611925565b95945050505050565b600060208284031215611a2057600080fd5b81356109d3816117ce565b600080600060608486031215611a4057600080fd5b8335611a4b816117ce565b92506020840135611a5b816117ce565b929592945050506040919091013590565b6020808252825182820181905260009190848201906040850190845b81811015611aa457835183529284019291840191600101611a88565b50909695505050505050565b60008083601f840112611ac257600080fd5b50813567ffffffffffffffff811115611ada57600080fd5b602083019150836020828501011115611af257600080fd5b9250929050565b600080600080600060808688031215611b1157600080fd5b853594506020860135611b23816117ce565b935060408601359250606086013567ffffffffffffffff811115611b4657600080fd5b611b5288828901611ab0565b969995985093965092949392505050565b60008060408385031215611b7657600080fd5b8235611b81816117ce565b915060208301358015158114611b9657600080fd5b809150509250929050565b60008060208385031215611bb457600080fd5b823567ffffffffffffffff811115611bcb57600080fd5b611bd785828601611ab0565b90969095509350505050565b600080600080600060808688031215611bfb57600080fd5b8535611c06816117ce565b94506020860135611b23816117ce565b602081528151602082015260018060a01b036020830151166040820152600060408301516060808401526114c16080840182611925565b60008060408385031215611c6057600080fd5b8235611c6b816117ce565b91506020830135611b96816117ce565b600181811c90821680611c8f57607f821691505b602082108103611caf57634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052603260045260246000fd5b80516020808301519190811015611caf5760001960209190910360031b1b16919050565b60008351611d01818460208801611901565b9190910191825250602001919050565b634e487b7160e01b600052601160045260246000fd5b600060018201611d3957611d39611d11565b5060010190565b604081526000611d536040830185611925565b90508260208301529392505050565b600060208284031215611d7457600080fd5b5051919050565b600060208284031215611d8d57600080fd5b81516109d381611754565b8082018082111561060357610603611d11565b601f821115610d9b57600081815260208120601f850160051c81016020861015611dd25750805b601f850160051c820191505b81811015611df157828155600101611dde565b505050505050565b815167ffffffffffffffff811115611e1357611e13611787565b611e2781611e218454611c7b565b84611dab565b602080601f831160018114611e5c5760008415611e445750858301515b600019600386901b1c1916600185901b178555611df1565b600085815260208120601f198616915b82811015611e8b57888601518255948401946001909101908401611e6c565b5085821015611ea95787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b6001600160e01b0319831681528151600090611edc816004850160208701611901565b919091016004019392505050565b60008251611efc818460208701611901565b9190910192915050565b600082611f2357634e487b7160e01b600052601260045260246000fd5b500690565b60008154611f3581611c7b565b808552602060018381168015611f525760018114611f6c57611f9a565b60ff1985168884015283151560051b880183019550611f9a565b866000528260002060005b85811015611f925781548a8201860152908301908401611f77565b890184019650505b505050505092915050565b81835281816020850137506000828201602090810191909152601f909101601f19169091010190565b604081526000611fe16040830186611f28565b8281036020840152611ff4818587611fa5565b9695505050505050565b67ffffffffffffffff83111561201657612016611787565b61202a836120248354611c7b565b83611dab565b6000601f84116001811461205e57600085156120465750838201355b600019600387901b1c1916600186901b1783556113a7565b600083815260209020601f19861690835b8281101561208f578685013582556020948501946001909201910161206f565b50868210156120ac5760001960f88860031b161c19848701351681555b505060018560011b0183555050505050565b6001600160a01b03868116825285166020820152604081018490526080606082018190526000906120f29083018486611fa5565b979650505050505050565b8381526060602082015260006121166060830185611925565b8281036040840152611ff48185611f28565b60006020828403121561213a57600080fd5b815167ffffffffffffffff81111561215157600080fd5b8201601f8101841361216257600080fd5b805161217061182a826117e3565b81815285602083850101111561218557600080fd5b611a0582602083016020860161190156fea26469706673582212203fc548aa4f22e6f4c01757ba3f2e0383630418b3d17601758718ab19a4d9918d64736f6c63430008110033a26469706673582212207932e8c793f9a96d9606a8907a6671f54c0fb1ed5a763048e13b429274e7706c64736f6c634300081100330000000000000000000000009fe46736679d2d9a65f0992f2272de9f3c7fa6e0000000000000000000000000000000000000000000000000002386f26fc10000", + "nonce": "0x4" + }, + "additionalContracts": [], + "isFixedGasLimit": false + } + ], + "receipts": [ + { + "transactionHash": "0x0004499dedee60c7548e9736515922768a049a3cbb216625e33130f437fa861d", + "transactionIndex": "0x0", + "blockHash": "0x03d30b11fc40245b90f027f510a8bd2c8ff7cbc828846734f8580776969409c9", + "blockNumber": "0xd", + "from": "0xf39Fd6e51aad88F6F4ce6aB8827279cffFb92266", + "to": null, + "cumulativeGasUsed": "0xf4240", + "gasUsed": "0x7a120", + "contractAddress": "0xe7f1725E7734CE288F8367e1Bb143E90bb3F0512", + "logs": [], + "status": "0x1", + "logsBloom": "0x00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", + "type": "0x0", + "effectiveGasPrice": "0xf4240" + }, + { + "transactionHash": "0x04421e1ee1daabd96de431e3acf5a79f131db3bbf739afaaa055130741e9dafb", + "transactionIndex": "0x0", + "blockHash": "0x03069fbca4ce5351b26159e620a34d5b33f2c89de899efbf5d64078b0dfaa90e", + "blockNumber": "0xe", + "from": "0xf39Fd6e51aad88F6F4ce6aB8827279cffFb92266", + "to": null, + "cumulativeGasUsed": "0xf4240", + "gasUsed": "0x7a120", + "contractAddress": "0x9fE46736679d2D9a65F0992F2272dE9f3c7fa6e0", + "logs": [], + "status": "0x1", + "logsBloom": "0x00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", + "type": "0x0", + "effectiveGasPrice": "0xf4240" + }, + { + "transactionHash": "0x023af01d6c729a8e69f0901c164e90f70084a7f7511a9b37e7aabbccd2a6f95a", + "transactionIndex": "0x0", + "blockHash": "0x05ac4355ecb62754c8caa71232962ee68ad726350dfd89e506a031148707b03c", + "blockNumber": "0xf", + "from": "0xf39Fd6e51aad88F6F4ce6aB8827279cffFb92266", + "to": null, + "cumulativeGasUsed": "0xf4240", + "gasUsed": "0x7a120", + "contractAddress": "0xCf7Ed3AccA5a467e9e704C703E8D87F634fB0Fc9", + "logs": [], + "status": "0x1", + "logsBloom": "0x00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", + "type": "0x0", + "effectiveGasPrice": "0xf4240" + }, + { + "transactionHash": "0x04374fcd28c1aba28792cbfb61fa1e3238e2951352518604d80c9349b480291e", + "transactionIndex": "0x0", + "blockHash": "0x01cba1f65cfbceaf3f8696f6fb8dfacf9971542337d739fb779e82cb5d41b37e", + "blockNumber": "0x10", + "from": "0xf39Fd6e51aad88F6F4ce6aB8827279cffFb92266", + "to": null, + "cumulativeGasUsed": "0xf4240", + "gasUsed": "0x7a120", + "contractAddress": "0xDc64a140Aa3E981100a9becA4E685f962f0cF6C9", + "logs": [], + "status": "0x1", + "logsBloom": "0x00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", + "type": "0x0", + "effectiveGasPrice": "0xf4240" + }, + { + "transactionHash": "0x02ad356ffbc2dd9452e2e5e95bf495e830fe3de41cd9814a8a65e065bcd833e8", + "transactionIndex": "0x0", + "blockHash": "0x02c4c4371040cb2864941c18083cd2cbf720cfb96a23d7601c1e851607fb5737", + "blockNumber": "0x11", + "from": "0xf39Fd6e51aad88F6F4ce6aB8827279cffFb92266", + "to": null, + "cumulativeGasUsed": "0xf4240", + "gasUsed": "0x7a120", + "contractAddress": "0x5FC8d32690cc91D4c39d9d3abcBD16989F875707", + "logs": [ + { + "address": "0x5FC8d32690cc91D4c39d9d3abcBD16989F875707", + "topics": [ + "0x8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0", + "0x0000000000000000000000000000000000000000000000000000000000000000", + "0x000000000000000000000000f39fd6e51aad88f6f4ce6ab8827279cfffb92266" + ], + "data": "0x", + "blockHash": "0x02c4c4371040cb2864941c18083cd2cbf720cfb96a23d7601c1e851607fb5737", + "blockNumber": "0x11", + "transactionHash": "0x02ad356ffbc2dd9452e2e5e95bf495e830fe3de41cd9814a8a65e065bcd833e8", + "removed": false + } + ], + "status": "0x1", + "logsBloom": "0x00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", + "type": "0x0", + "effectiveGasPrice": "0xf4240" + } + ], + "libraries": [ + "lib/eth-projects-monorepo/packages/eth-projects-contracts/contracts/lib/utils/Bytes.sol:Bytes:0x5fbdb2315678afecb367f032d93f642f64180aa3" + ], + "pending": [], + "returns": {}, + "timestamp": 1689266210, + "chain": 1263227476, + "multi": false, + "commit": "8bcb0d8" +} \ No newline at end of file diff --git a/packages/starksheet-solidity/broadcast/Evmsheet.s.sol/1263227476/run-1689267371.json b/packages/starksheet-solidity/broadcast/Evmsheet.s.sol/1263227476/run-1689267371.json new file mode 100644 index 00000000..c4f6a519 --- /dev/null +++ b/packages/starksheet-solidity/broadcast/Evmsheet.s.sol/1263227476/run-1689267371.json @@ -0,0 +1,201 @@ +{ + "transactions": [ + { + "hash": "0x07afab663720a369027046b3c6a5a7aa6daca9a1f05fc2b75973901c1b9f07ca", + "transactionType": "CREATE", + "contractName": "Bytes", + "contractAddress": "0x5FbDB2315678afecb367f032d93F642f64180aa3", + "function": null, + "arguments": null, + "transaction": { + "type": "0x00", + "from": "0xf39fd6e51aad88f6f4ce6ab8827279cfffb92266", + "gas": "0x1387ed", + "data": "0x6110d661003a600b82828239805160001a60731461002d57634e487b7160e01b600052600060045260246000fd5b30600052607381538281f3fe73000000000000000000000000000000000000000030146080604052600436106101625760003560e01c8063a5eb31ee116100cd578063d1ffb56111610086578063d1ffb561146103fb578063d442584f1461042b578063e004139614610454578063f1142fb314610474578063f647f8fb14610487578063f83b670f146104b257600080fd5b8063a5eb31ee14610344578063a8d8f00f1461036b578063b5cdf92414610396578063b63711df146103a9578063be8b3430146103bc578063c29616bd146103cf57600080fd5b80635ef849301161011f5780635ef8493014610241578063913c97b41461026b57806397e6175c1461029f57806399dd9bd7146102cb5780639ae4c3d1146102ec5780639cee499e1461031857600080fd5b8063042aa0841461016757806305d3bb74146101985780631a7431ef146101c0578063235266d2146101e357806348137709146101f65780634d66a2ae1461021b575b600080fd5b61017a610175366004610ec0565b6104de565b6040516001600160d01b031990911681526020015b60405180910390f35b6101ab6101a6366004610ec0565b610540565b60405163ffffffff909116815260200161018f565b6101d36101ce366004610f05565b61059d565b604051901515815260200161018f565b6101d36101f1366004610f4c565b610652565b610209610204366004610ec0565b6106b5565b60405160ff909116815260200161018f565b61022e610229366004610fa6565b610711565b60405161ffff909116815260200161018f565b61025461024f366004610ec0565b61071e565b60405165ffffffffffff909116815260200161018f565b61027e610279366004610ec0565b610772565b6040516fffffffffffffffffffffffffffffffff909116815260200161018f565b6102b26102ad366004610ec0565b6107d0565b6040516001600160a01b0319909116815260200161018f565b6102de6102d9366004610ec0565b61082e565b60405190815260200161018f565b6102ff6102fa366004610ec0565b61088c565b60405167ffffffffffffffff909116815260200161018f565b61032b610326366004610ec0565b6108e9565b6040516001600160d81b0319909116815260200161018f565b610357610352366004610ec0565b610946565b60405162ffffff909116815260200161018f565b61037e610379366004610ec0565b6109a3565b60405166ffffffffffffff909116815260200161018f565b6102de6103a4366004610ec0565b610a00565b6102ff6103b7366004610ec0565b610a55565b61022e6103ca366004610ec0565b610aa9565b6103e26103dd366004610ec0565b610b06565b6040516001600160c81b0319909116815260200161018f565b61040e610409366004610ec0565b610b5a565b6040516bffffffffffffffffffffffff909116815260200161018f565b61043e610439366004610ec0565b610bae565b60405164ffffffffff909116815260200161018f565b610467610462366004610fe3565b610c02565b60405161018f9190611031565b6102b2610482366004610ec0565b610d0f565b61049a610495366004610ec0565b610d64565b6040516001600160a01b03909116815260200161018f565b6104c56104c0366004610ec0565b610dc9565b6040516001600160f81b0319909116815260200161018f565b60006104eb82600661107f565b835110156105375760405162461bcd60e51b8152602060048201526014602482015273746f4279746573365f6f75744f66426f756e647360601b60448201526064015b60405180910390fd5b50016006015190565b600061054d82600461107f565b835110156105945760405162461bcd60e51b8152602060048201526014602482015273746f55696e7433325f6f75744f66426f756e647360601b604482015260640161052e565b50016004015190565b600080600190508354600260018083161561010002038216048451808214600181146105cc5760009450610644565b821561064457602083106001811461062957600189600052602060002060208a018581015b600284828410010361062057815183541461060f5760009950600093505b6001830192506020820191506105f1565b50505050610642565b6101008086040294506020880151851461064257600095505b505b509293505050505b92915050565b81518151600091600191811480831461066e57600092506106ab565b600160208701838101602088015b60028483851001036106a657805183511461069a5760009650600093505b6020928301920161067c565b505050505b5090949350505050565b60006106c282600161107f565b835110156107085760405162461bcd60e51b8152602060048201526013602482015272746f55696e74385f6f75744f66426f756e647360681b604482015260640161052e565b50016001015190565b600061064c826000610aa9565b600061072b82600661107f565b835110156105375760405162461bcd60e51b8152602060048201526014602482015273746f55696e7434385f6f75744f66426f756e647360601b604482015260640161052e565b600061077f82601061107f565b835110156107c75760405162461bcd60e51b8152602060048201526015602482015274746f55696e743132385f6f75744f66426f756e647360581b604482015260640161052e565b50016010015190565b60006107dd82600c61107f565b835110156108255760405162461bcd60e51b8152602060048201526015602482015274746f427974657331325f6f75744f66426f756e647360581b604482015260640161052e565b5001600c015190565b600061083b82602061107f565b835110156108835760405162461bcd60e51b8152602060048201526015602482015274746f427974657333325f6f75744f66426f756e647360581b604482015260640161052e565b50016020015190565b600061089982600861107f565b835110156108e05760405162461bcd60e51b8152602060048201526014602482015273746f55696e7436345f6f75744f66426f756e647360601b604482015260640161052e565b50016008015190565b60006108f682600561107f565b8351101561093d5760405162461bcd60e51b8152602060048201526014602482015273746f4279746573355f6f75744f66426f756e647360601b604482015260640161052e565b50016005015190565b600061095382600361107f565b8351101561099a5760405162461bcd60e51b8152602060048201526014602482015273746f55696e7432345f6f75744f66426f756e647360601b604482015260640161052e565b50016003015190565b60006109b082600761107f565b835110156109f75760405162461bcd60e51b8152602060048201526014602482015273746f55696e7435365f6f75744f66426f756e647360601b604482015260640161052e565b50016007015190565b6000610a0d82602061107f565b835110156108835760405162461bcd60e51b8152602060048201526015602482015274746f55696e743235365f6f75744f66426f756e647360581b604482015260640161052e565b6000610a6282600861107f565b835110156108e05760405162461bcd60e51b8152602060048201526014602482015273746f4279746573385f6f75744f66426f756e647360601b604482015260640161052e565b6000610ab682600261107f565b83511015610afd5760405162461bcd60e51b8152602060048201526014602482015273746f55696e7431365f6f75744f66426f756e647360601b604482015260640161052e565b50016002015190565b6000610b1382600761107f565b835110156109f75760405162461bcd60e51b8152602060048201526014602482015273746f4279746573375f6f75744f66426f756e647360601b604482015260640161052e565b6000610b6782600c61107f565b835110156108255760405162461bcd60e51b8152602060048201526014602482015273746f55696e7439365f6f75744f66426f756e647360601b604482015260640161052e565b6000610bbb82600561107f565b8351101561093d5760405162461bcd60e51b8152602060048201526014602482015273746f55696e7434305f6f75744f66426f756e647360601b604482015260640161052e565b606081610c1081601f61107f565b1015610c4f5760405162461bcd60e51b815260206004820152600e60248201526d736c6963655f6f766572666c6f7760901b604482015260640161052e565b610c59828461107f565b84511015610c9d5760405162461bcd60e51b8152602060048201526011602482015270736c6963655f6f75744f66426f756e647360781b604482015260640161052e565b606082158015610cbc5760405191506000825260208201604052610d06565b6040519150601f8416801560200281840101858101878315602002848b0101015b81831015610cf5578051835260209283019201610cdd565b5050858452601f01601f1916604052505b50949350505050565b6000610d1c82601061107f565b835110156107c75760405162461bcd60e51b8152602060048201526015602482015274746f427974657331365f6f75744f66426f756e647360581b604482015260640161052e565b6000610d7182601461107f565b83511015610db95760405162461bcd60e51b8152602060048201526015602482015274746f416464726573735f6f75744f66426f756e647360581b604482015260640161052e565b500160200151600160601b900490565b6000610dd682600161107f565b835110156107085760405162461bcd60e51b8152602060048201526014602482015273746f4279746573315f6f75744f66426f756e647360601b604482015260640161052e565b634e487b7160e01b600052604160045260246000fd5b600082601f830112610e4457600080fd5b813567ffffffffffffffff80821115610e5f57610e5f610e1d565b604051601f8301601f19908116603f01168101908282118183101715610e8757610e87610e1d565b81604052838152866020858801011115610ea057600080fd5b836020870160208301376000602085830101528094505050505092915050565b60008060408385031215610ed357600080fd5b823567ffffffffffffffff811115610eea57600080fd5b610ef685828601610e33565b95602094909401359450505050565b60008060408385031215610f1857600080fd5b82359150602083013567ffffffffffffffff811115610f3657600080fd5b610f4285828601610e33565b9150509250929050565b60008060408385031215610f5f57600080fd5b823567ffffffffffffffff80821115610f7757600080fd5b610f8386838701610e33565b93506020850135915080821115610f9957600080fd5b50610f4285828601610e33565b600060208284031215610fb857600080fd5b813567ffffffffffffffff811115610fcf57600080fd5b610fdb84828501610e33565b949350505050565b600080600060608486031215610ff857600080fd5b833567ffffffffffffffff81111561100f57600080fd5b61101b86828701610e33565b9660208601359650604090950135949350505050565b600060208083528351808285015260005b8181101561105e57858101830151858201604001528201611042565b506000604082860101526040601f19601f8301168501019250505092915050565b8082018082111561064c57634e487b7160e01b600052601160045260246000fdfea26469706673582212205bdf5bc4551862519f5370e0dcec38eefbbbe11b6a5bf19ce2846b4f8831a5dc64736f6c63430008110033", + "nonce": "0x0" + }, + "additionalContracts": [], + "isFixedGasLimit": false + }, + { + "hash": "0x0175088e063b575ca60ade494d3a0e7b309197cfee6c69785d4b60b63027e0b9", + "transactionType": "CREATE", + "contractName": "MultiSendCallOnly", + "contractAddress": "0xe7f1725E7734CE288F8367e1Bb143E90bb3F0512", + "function": null, + "arguments": null, + "transaction": { + "type": "0x00", + "from": "0xf39fd6e51aad88f6f4ce6ab8827279cfffb92266", + "gas": "0x2e5c4", + "value": "0x0", + "data": "0x608060405234801561001057600080fd5b506101ae806100206000396000f3fe60806040526004361061001e5760003560e01c80638d80ff0a14610023575b600080fd5b6100366100313660046100c7565b610038565b005b805160205b818110156100ac578083015160f81c6001820184015160601c601583018501516035840186015160558501870160008560008114610082576001811461001e5761008e565b6000808585888a5af191505b508061009957600080fd5b505080605501850194505050505061003d565b505050565b634e487b7160e01b600052604160045260246000fd5b6000602082840312156100d957600080fd5b813567ffffffffffffffff808211156100f157600080fd5b818401915084601f83011261010557600080fd5b813581811115610117576101176100b1565b604051601f8201601f19908116603f0116810190838211818310171561013f5761013f6100b1565b8160405282815287602084870101111561015857600080fd5b82602086016020830137600092810160200192909252509594505050505056fea2646970667358221220c15490bbb756a4c3c49d6335b2e81d2d098647b0ea70174c2279f199b1d0800364736f6c63430008110033", + "nonce": "0x1" + }, + "additionalContracts": [], + "isFixedGasLimit": false + }, + { + "hash": "0x04427e5dd9b0e2f38baea9497540d3f67fe001e6b711ee9b39ecac0e31c4fbd1", + "transactionType": "CREATE", + "contractName": "BasicCellRenderer", + "contractAddress": "0x9fE46736679d2D9a65F0992F2272dE9f3c7fa6e0", + "function": null, + "arguments": null, + "transaction": { + "type": "0x00", + "from": "0xf39fd6e51aad88f6f4ce6ab8827279cfffb92266", + "gas": "0x3180ad", + "value": "0x0", + "data": "0x608060405234801561001057600080fd5b50612c25806100206000396000f3fe608060405234801561001057600080fd5b50600436106100365760003560e01c806306d4cd8b1461003b57806328de0f2f14610064575b600080fd5b61004e610049366004610322565b610077565b60405161005b919061038b565b60405180910390f35b61004e610072366004610404565b6100f1565b60606000610086600f846104fc565b90506000610095600f8361051e565b61009f9085610535565b905060006100ae826041610548565b60f81b9050806100c76100c2856001610548565b6101b6565b6040516020016100d8929190610577565b6040516020818303038152906040529350505050919050565b606060006100fe86610077565b905083838261018388735fbdb2315678afecb367f032d93f642f64180aa363b5cdf924909160006040518363ffffffff1660e01b81526004016101429291906105a8565b602060405180830381865af415801561015f573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906100c291906105ca565b87878660405160200161019c97969594939291906105f2565b604051602081830303815290604052915050949350505050565b606060006101c383610249565b600101905060008167ffffffffffffffff8111156101e3576101e36103a5565b6040519080825280601f01601f19166020018201604052801561020d576020820181803683370190505b5090508181016020015b600019016f181899199a1a9b1b9c1cb0b131b232b360811b600a86061a8153600a850494508461021757509392505050565b60008072184f03e93ff9f4daa797ed6e38ed64bf6a1f0160401b83106102885772184f03e93ff9f4daa797ed6e38ed64bf6a1f0160401b830492506040015b6d04ee2d6d415b85acef810000000083106102b4576d04ee2d6d415b85acef8100000000830492506020015b662386f26fc1000083106102d257662386f26fc10000830492506010015b6305f5e10083106102ea576305f5e100830492506008015b61271083106102fe57612710830492506004015b60648310610310576064830492506002015b600a831061031c576001015b92915050565b60006020828403121561033457600080fd5b5035919050565b60005b8381101561035657818101518382015260200161033e565b50506000910152565b6000815180845261037781602086016020860161033b565b601f01601f19169290920160200192915050565b60208152600061039e602083018461035f565b9392505050565b634e487b7160e01b600052604160045260246000fd5b60008083601f8401126103cd57600080fd5b50813567ffffffffffffffff8111156103e557600080fd5b6020830191508360208285010111156103fd57600080fd5b9250929050565b6000806000806060858703121561041a57600080fd5b84359350602085013567ffffffffffffffff8082111561043957600080fd5b818701915087601f83011261044d57600080fd5b81358181111561045f5761045f6103a5565b604051601f8201601f19908116603f01168101908382118183101715610487576104876103a5565b816040528281528a60208487010111156104a057600080fd5b8260208601602083013760006020848301015280975050505060408701359150808211156104cd57600080fd5b506104da878288016103bb565b95989497509550505050565b634e487b7160e01b600052601160045260246000fd5b60008261051957634e487b7160e01b600052601260045260246000fd5b500490565b808202811582820484141761031c5761031c6104e6565b8181038181111561031c5761031c6104e6565b8082018082111561031c5761031c6104e6565b6000815161056d81856020860161033b565b9290920192915050565b6001600160f81b031983168152815160009061059a81600185016020870161033b565b919091016001019392505050565b6040815260006105bb604083018561035f565b90508260208301529392505050565b6000602082840312156105dc57600080fd5b5051919050565b81818437506000910190815290565b7f646174613a6170706c69636174696f6e2f6a736f6e2c7b22646573637269707481527f696f6e223a2022537461726b7368656574222c20226e616d65223a202200000060208201528688603d8301376000878201602160f81b603d820152875161066481603e840160208c0161033b565b7f222c22696d616765223a2022646174613a696d6167652f7376672b786d6c2c25603e92909101918201527f334373766725323076696577426f782533442532373025323030253230383925605e8201527f3230353525323725323066696c6c2533442532376e6f6e65253237253230786d607e8201527f6c6e73253344253237687474702533412f2f7777772e77332e6f72672f323030609e8201527f302f737667253237253345253343646566732533452533437374796c6525334560be8201527f253430666f6e742d66616365253230253742666f6e742d66616d696c7925334160de8201527f253230253237507265737325323053746172742532303250253237253342737260fe8201527f6325334125323075726c25323825323764617461253341666f6e742f776f666661011e8201527f32253342626173653634253243643039474d6741424141414141424c3841413861013e8201527f41414141415235774141424b674141454141414141414141414141414141414161015e8201527f4141414141414141414141414150305a4756453063476a41624d42794358675a61017e8201527f6741494e794551674b3846545361517544524141424e67496b41344e4d42434161019e8201527f46687a5148684649623644566c42306a314f4d4253336f4f4953744562732f2f6101be8201527f2f6c4a776356727a47634f30676f684c45484d6369694443434e57695a6761306101de8201527f79625345555954514f6a4b427038546c737a7344526438716174586c333058746101fe8201527f30645a47467952305668444b776c62746c25324272734643773945316e64655961021e8201527f4a74732f37527762305673784d71576c636a6a775445537a2f5568752f77337361023e8201527f33746b6f496d70343464515168576f456d54337579526d70746f7553446b7a5761025e8201527f454138762f3932364a4b7539486f696e6e3673376674336d4965476c7737547161027e8201527f6437456f326a46517849766a5642494a70563269614f62547a68575932314e7461029e8201527f476772687434704d4b3457556a34624c7967542f51253242514c7879253242336102be8201527f6c482f362f6b6275496444497239446a724a496a6f394a7336524d58253242456102de8201527f6b37424f545a6b6d70397a347455524652566656307148504448375a7462364a6102fe8201527f616f6130684c335975616232473373667a72365776394536793569767025324261031e8201527f7135564c74426a514478476f5345304150313762336466376c61726a6525324261033e8201527f73637a6b7241744a334b6657304a342532424b323365744b4b556a383554616f61035e8201527f57473453346158436c427743413268676141652532423658396f696e32304e6261037e8201527f554a7264466767517049686d5247494d30372f7025324277375a7058316c473161039e8201527f6a6a51787073435141423438714445415042346950312f6a39592f4261686a356103be8201527f5943414e302f78714157496852616a6c6e694e654f50396e78433466667932556103de8201527f694843304e47386b686f6f567a6f7459334445417a417a41356b473735337a6a6103fe8201527f4853354d6e6d586b69496a6d54554d36556d4d3025324256346976752f48377861041e8201527f6a364666322f6b343472787a6449324141676742492f4c48416b394a7a35554d61043e8201527f496f4c7755344146455435725a464f33444d616655633061777351434879497061045e8201527f557a546b30784a474a454f6a4e6871436b474570496153474f6a714e466d2f5761047e8201527f4e434e3569636b71434d6e414165564c4d4c655867356971386b365752585a5261049e8201527f326c337042393831427a73475a743225324256696c4342723954494a674b67786104be8201527f365542514446253242566a4b44714e7741414948386a6949664d6e75384b68666104de8201527f584b486f4e3348634134477245786842324155442f795a554d423857547579496104fe8201527f413444634f4b656434397939504249616e426967734d454e38556b30766c547661051e8201527f304a58334e394d795a75544d763573655357413525324238556538504465547261053e8201527f645467474973566d4e33635856586a6463795275633434385866664176506e7361055e8201527f3575324d4531722532426a4731703137767a3849704f416e483444427367793361057e8201527f512f54376b33646d2f3846334232377355694877464631414f6c683055646e4961059e8201527f4471494e5164506355393145786f2f346252696a6a5169704e4e307a4c646c7a6105be8201527f504438496f547449734c38717162746f4f5149514a5a567849705931315073536105de8201527f55533231397a4c585066642f507667765751346372464d2532425769755671706105fe8201527f645a6f4e6475645872632f4745324d4a36656e3575635746694763375274364f61061e8201527f487676354d674c2532427a44733578444277696141315433554877326b63594361063e8201527f312f55666453316645316d37763742346537653350574848786533594f32483561065e8201527f25324241504f5a7965503025324251506553425468793078713965363241486a61067e8201527f6141556842432f364144484c6f476f4f657636412532426867487369317a613861069e8201527f71355a4e4d716a596c575a4d713867354248445574495370574a73526f52544a6106be8201527f56613049305a3957546b5371564b73507a3464586a7648746449684c6e7670746106de8201527f554c4330753542567579414d544b4a513930594b5267546e5769476b6d7153456106fe8201527f714b6d7256685259674b6b335443686255573671456f45637665577a6859535461071e8201527f4c32484e706735452f6d7151393956564467763352475435586d33637a68754c61073e8201527f3972685864316132372f736c5130686959366a643739614f5a43746a6f52687261075e8201527f623136575676514b725734477a786a7869723238494d697a2f7155447973495761077e8201527f7037516a667765347a556437614a735651575179524c554b484b42577938577661079e8201527f45565333584d53353656337757644f442532424638757639645477496d4b722f6107be8201527f5064626d5763775176456641616a7975566a70784e32704f56635769336c38776107de8201527f454c2f6d395070646f55494536253242504b5838315041546d67654f304231736107fe8201527f47454825324261707a353466646d534a7a333741686635366a4c7739756e504561081e8201527f35644d4b3025324237544639563843435466523979664e7355493474557a464661083e8201527f42326e536e384b4f626a64446964554c7034494a6873777878595172595a643661085e8201527f4e76436e55394d445825324252654c6e4d546d6c315a453972306b5077334e3261087e8201527f6752253242736a4573596d4953706b356c31497333594e614a4b6f6e7a65703761089e8201527f56637354316e556b62347048774b5a41796b614b6f43504630506f6d456876496108be8201527f5758656e6f5a767836774f4b313070316c3274546858793850316555776473766108de8201527f53715157766f424d7473674851554a614774494273756861776450545a5378596108fe8201527f707257757734647a7231564755744449465871726f4d4d69597346783857695461091e8201527f336463574b6f376d50554c79715657413972305974524a4c626957766a6e4c2561093e8201527f324272633452646767624e516c514141613264306d616236364d48447074314361095e8201527f6477626b51436253375053445a4d7a3746724f51713165636153304a6c74644161097e8201527f6c44527941587173364130586247707748676b70367572557757416272464d3361099e8201527f75794d764e4b6c344d6c435548537950416d3931776144454a3559595148754a6109be8201527f4d32304b575251737637486b61334770686c533258444b714f4b4245554753316109de8201527f65306b63316f323449494166486c4449794278584a4a656767423369386174566109fe8201527f67434f3064444f5a484a57596a564c416a6a397137765673456e72684b374568610a1e8201527f4c75427a42586d4d674554634531636d61436976504b6f4a766670466c794935610a3e8201527f4d70584234454325324245672f596d303454787843354e6c73596b74646f5951610a5e8201527f55656c38624673456c3748345a36734377622f38626b347458574658504b6a71610a7e8201527f5462526e64336e4c5770394f784941706c664b586747684e6c72443462354a4c610a9e8201527f5a367055753441726756614d366561357844574244476f7a707a4641376e6747610abe8201527f74596334486141775269475576637653653652414177335a576b564f4667764b610ade8201527f46364955696c4d49394964715155345134585264484866736666517770313955610afe8201527f434a49306a5773725433356f5578303678507268473271364d4533554f306c63610b1e8201527f635a557354454351784a44527854444b6c334c4948722f6162546f73686c6466610b3e8201527f51786a364f57745273466e6966444373473674336b426f344e6d424a6d615556610b5e8201527f54636c794951414a4c6a6e723042365a3859464d6e396b397967703752727848610b7e8201527f36766877624a4e41654b4d554436353974386746514a4d5377652f434f624850610b9e8201527f467671484746554e5266253242737245663354584b42725a76676b6369396972610bbe8201527f426d63442f7458616754474358634e68432532424f3539754c706e6673796f71610bde8201527f4c53313238374552776d38666165564f6d3857634437386c5a36594232793938610bfe8201527f5a4c6c4d3972557264324c514e6c324956643454727376675139363079377573610c1e8201527f5965306854506170576a71726c2532425837784665424e54253242315a644a4a610c3e8201527f572532424678745737584e7774634e7a7761672532425256656a6d4a6839656d610c5e8201527f6c495a4b69694e63694b3849554f4d33556a4a376342554e5847505853326c68610c7e8201527f253242687770676f4836567348524f63764569723372585970344c7769435a77610c9e8201527f3176486c43623552314d68623564536e4f326d6e6f475a6f5846315765574757610cbe8201527f6d7a694a314a555534715072306e694a536c4e424331636b4b6d4a6657625877610cde8201527f5577757449547a456d6a776770776142753464525066746a2f4e384143526e64610cfe8201527f616b2f4641674b674c37305058577839767a6b59322532426d34355473496b4c610d1e8201527f3037616f70444e6f676830535262535a534f397a744657516a376e574c676275610d3e8201527f364325324254374b6a44715a3667456e5277674d78306b4c5a77797962514f76610d5e8201527f514130773054782f354a42722f63595a6453574f546a774446364e6f586b796a610d7e8201527f33566a484e4751494e76426a5a734a4a3377466141516d6f5a575a5970416961610d9e8201527f574f466e6e686455524176576b557a77693062677a5a4158796f445545714863610dbe8201527f57307069454c574f777168773365765478444957724e32495371525151454c41610dde8201527f4d32365334486c723548552f48784a43436844424a6b756b6341573856415430610dfe8201527f6770545a544b4e48677a444f7234314751656a4f34677a416e6b577077464752610e1e8201527f43334c625231787a4b434875365635694674674c704f384b51596d5965467868610e3e8201527f4c32643838736469506a2f76306b427a636c51637954735766324d6445394944610e5e8201527f386d5858576a72434b253242354532756e336e6976656973526e726971317548610e7e8201527f594d6a6a69694945304b6466674d6f3163476d6b557254624f30356732737633610e9e8201527f477673525971762f61457736375472644f705435567a4641364131417939634b610ebe8201527f6f44667762544a64445750524e57517354796a6d3772486249734b466b6f4f2f610ede8201527f5a4c4376735966785973337768534338614c49344b765677373773336e347a48610efe8201527f67697061634a6e435362463945727a53357069386343577655597a4f5064327a610f1e8201527f684a2f4750437a53684f453378596c634f3350796164586a54334f6b68706841610f3e8201527f58465853766865544e5355525446565641486f4a6d7949726b6a454b6f517746610f5e8201527f4730303554334158643935764e30446d336d427332786746546c253242513572610f7e8201527f73416a6e744768707a6f62643642374e7a52664e56653130446f4e5639343753610f9e8201527f59646f635252624776636d785456786f61367a717756376d416e773544314745610fbe8201527f5474327a48382532425476514256356e37672f32615768743979794e594c3974610fde8201527f4f42744167384846435945316d4e775432454232467538544968543776565241610ffe8201527f3461587a6e6b3670545a4e6779696f73747749364b654655374c696c7041253261101e8201527f42334234474a794277574d327062466a4876734a3747754f6f616b6a6d46746a61103e8201527f59344c6254396c323239253242453646374c4475577a744c6e333749786b386a61105e8201527f356c42564b33774c7369362f416641756f6a34396c4d6b5653545045396b704761107e8201527f64304c724555534a4941413070596c4178414d642f4e4f46776f4a446458466961109e8201527f307a4f5744422f54464a705666575642574f516274724a556230636c663369256110be8201527f3242575072446f596c65545674564f45306d36793564487444725551776f414c6110de8201527f7455523365585364444d4e785866656a594674764c626c726c4a7777484b2f456110fe8201527f6957504a616b32574b35386e684e6f4c6a615a55475841756f32656f5777464561111e8201527f66612f445334496958717246714779633348726939785132693243352f73357661113e8201527f7a424d30793777334d4473774d3759325247427172464d6778374f696325324261115e8201527f30497a736d5678617a5473305263666a324f3334532f525639503269486f427561117e8201527f6c4b49594244665a46654c53356439725379664a64536c67683268644d72324f61119e8201527f5552334b6e6c506e4f41785477314a384c4d325a776e4671765a745a4a6c78786111be8201527f343873776243743272316b664875443756624831326159383849437456734b786111de8201527f4b742f31726b616c42414d74782f6f6f6d43445059626b556f4c6344624b436a6111fe8201527f7675713953544467746a584744715735564b36686347654f46697a6a3643714c61121e8201527f4f49716b57783477733245504d444e7378253242613661533230384f39784c3061123e8201527f526146586f394241645530706e452532424c695359334b536f4a41525978646e61125e8201527f7a69545a4d706961442f3438496969393834446151357976656378414673735761127e8201527f792f686274696d63253242704c386b35796f70496d4a627948712f6138797a6c61129e8201527f6c37726f4f7a586d786d4163337459585363546b65734d6344324939315a36336112be8201527f6549312f394a627755716b36737863394b52677277574d414e6543314e6e39756112de8201527f4779775473706d5538712532426c5a6d43714d674153363662674841476a514b6112fe8201527f73754a334451416a5235346d356a4c7a5a616e546c62646530253242726e663461131e8201527f385a574138546c32673277414779427748516e3552322532424e6a726542677861133e8201527f626c734e46627554776d6862414a48737a2f72416f61764c4f34317874767a5961135e8201527f4768336e4c4a426b41506a7578424a445248333048426575385567436978464e61137e8201527f437951322f4b253242385157372f6530253242664f2532423436524e5730657961139e8201527f4c726f39446a5467704a4e4d3547385179306c54644f756d73773066715045696113be8201527f393646702532424830634d774e6f376a787a596d6e4e664d5a6d64506c7932706113de8201527f6f7132575065476d67507136474c78504e34536c4b486e7870624f69754c58516113fe8201527f75583155715031676a6f38426136536c55314f416d5267707a7531735444584a61141e8201527f50754d3338546f387130344c324e777970653837327777556741675a6c70386461143e8201527f6b5166397a38544d43624d6b596b3758484375333564375a5a41656f346b5a4b61145e8201527f68784953386945354c546a334c4f6976485a7268394a3870337a4c5a436a776361147e8201527f6970354452694b6e576e49664c33386b4a684d7452776a67553525324256726d61149e8201527f714b6c6739307a376a64732f4238444b646b464c76483353253242376f4838616114be8201527f6c445a6c626734533155583574434d445342324f364b756c7a41344b763067376114de8201527f314251643054464b7733685358696e62374e6c304258725873514e6376436b386114fe8201527f6d6f394f786965783559627a78564e2f6b3738336f48545a495777393079495a61151e8201527f777672697164475473586e54384965705437597946434f4a6741395a3042794961153e8201527f455956735478522f6b73616b324268376f4b767034766e695530364d57317a4261155e8201527f4672746568647a306b6b587951786a426d7965645636644d596545386146787461157e8201527f6575777355466136466c6c54446c716430707a525a77473663467266574d627061159e8201527f384738587a6a66624d253242354658657076356f457273696c363458783663376115be8201527f5841576275696d3666387347494d58666f334a6971476b703333376854536a676115de8201527f65636862364f42472f327a31376a6f6d4469476d253242476c623146553069656115fe8201527f6e7552796977654c576767447a6d4655765545556a5a6f377356544877684f4661161e8201527f504d6b4e737146423977796d6b45307639666d7477453854377135384e594f3761163e8201527f787534623833766e46766c35755378446c472532426b4f51675249644f346a6761165e8201527f7a786a53486a4b4c7332742f6c684f647771766131415744437072763344345361167e8201527f34523741625934544362664b4637744265363554343551347a7a49714433316161169e8201527f79797557716a692532424636585337535439483943314f342f694b366b4775766116be8201527f6b512f664e3537487837456533373435622f76766e2f62482f58253242392f256116de8201527f32426762656d684f416d49705576755157757344764b517578394a44564e734b6116fe8201527f673651636d6b73515341445530346347524c523768466f5a326337785545664761171e8201527f253242776b755459474d764c6a422f6550634936416847686e5735717a45416961173e8201527f4a586377564545775869654e70536c317a6a457253253242435325324248634c61175e8201527f6f52506d7661324d6767412f69794c67536f544a555767733442794149514f3061177e8201527f4f6f705a487656627a6844494c65557155677a7a48492f667950474e7879777361179e8201527f6f796c6865534639577662795363336b4544716b32415636436c4364635535536117be8201527f6e6c4e6e4963394b794d63384c79622532423867484f4a795173466c4c6250526117de8201527f796d6d374a42743349545a544162314732444252496b514b51705451396939626117fe8201527f3665435353387a4d366161525364544b5657524d336663454a4c644b61746e7361181e8201527f724959774e4a55253242733048364461757832775a35686733706c653042474861183e8201527f756b316b4543734859446461496d4b7025324233463542317859763763486b7161185e8201527f644475306a4b645273657a3531376d63563641685148346931484e3173766c6a61187e8201527f5248366845454672682532426e72726d47316e33307a4d346749776d694d774561189e8201527f624b6842545564423141486f582532424b6741517a4f48543946494f71436b526118be8201527f4e4e623273397170496943534f753167576868497343564a73765771457175356118de8201527f47624a514b4e6a61427465394c4f69676368414a7665475773394332323033766118fe8201527f6f6e476c6b77725251323464646732796345646157554456734441785548734961191e8201527f77773665615234464665336d4a416b66426d5a6452395264774a485a6d47645261193e8201527f7950436a706a627a31712f584a34534949446b66384b4b6e6e32456c4b6d794c61195e8201527f69573442513836733151554b2f76426867524e776548766c5968687a7238706361197e8201527f67704b4b6d6f61576a7036426b594f48446c7835734b5647336365474539657661199e8201527f506e773563646667454242676f554946536238587632504553314772446a78456119be8201527f69524b6b697846716a54704d6d544b6b693148726a7a354368517155717845716119de8201527f544c6c4b6c53715571314772547231476a527130717846717a62744f6e5347656119fe8201527f3668374a6d627a4968355a6544696c315a58536a7430774375616b336c6e476f611a1e8201527f5655506f53734e663337394b326a6274716d44674d69485a42665a6c68324839611a3e8201527f75773738495469314a466a585653662f4336634f55667a346f30644178305447611a5e8201527f777448446863666a3443516d49694531444d5a42546b6c4e5a557065566f614f611a7e8201527f6e717633733234314e50503965766574594768435a50576a4979747332706173611a9e8201527f436a25324270556a54596c336b615574374f744b4a6136355850396d356e6367611abe8201527f364e686a685a587032762532426d57724341545a754a303368316b6a55756976611ade8201527f5067596e6a6e35744b4a4f6b326e6362703251414559585a69304b496d50356b611afe8201527f744961466e366b5a397743253237253239253230666f726d6174253238253237611b1e8201527f776f666632253237253239253342666f6e742d7765696768742533412532306e611b3e8201527f6f726d616c253342666f6e742d7374796c652533412532306e6f726d616c2533611b5e8201527f42666f6e742d646973706c617925334125323073776170253342253744746578611b7e8201527f74253230253742666f6e742d66616d696c792533412532302532375072657373611b9e8201527f2532305374617274253230325025323725334266696c6c253341253230776869611bbe8201527f74652537442e76616c7565253230253742666f6e742d73697a65253341253230611bde8201527f313070782533422537442e6e616d65253230253742666f6e742d73697a652533611bfe8201527f412532303470782533422537442533432f7374796c652533452533432f646566611c1e8201527f7325334525334372656374253230776964746825334425323738392532372532611c3e8201527f30686569676874253344253237353525323725323066696c6c25334425323762611c5e8201527f6c61636b2532372532302f253345253343726563742532307825334425323735611c7e8201527f2e3525323725323079253344253237352e352532372532307769647468253344611c9e8201527f2532373738253237253230686569676874253344253237343425323725323066611cbe8201527f696c6c2533442532372532333030303046462532372532302f25334525334374611cde8201527f657874253230746578742d616e63686f722533442532376d6964646c65253237611cfe8201527f2532307825334425323734342e35253237253230792533442532373333253237611d1e8201527f253230636c61737325334425323776616c756525323725334500000000000000611d3e820152612ba5612b9e6129f5611d5784018a61055b565b7f2533432f746578742533452533437265637425323078253344253237352e352581527f323725323079253344253237352e35253237253230776964746825334425323760208201527f373825323725323068656967687425334425323734342532372532307374726f60408201527f6b652533442532372532334646344630412532372532307374726f6b652d776960608201527f647468253344253237332532372532302f25334525334372656374253230782560808201527f334425323733302532372532307925334425323734352e35253237253230776960a08201527f647468253344253237353825323725323068656967687425334425323738253260c08201527f3725323066696c6c2533442532372532334646344630412532372532302f253360e08201527f4525334374657874253230746578742d616e63686f72253344253237656e64256101008201527f32372532307825334425323738372532372532307925334425323735322532376101208201527f253230636c6173732533442532376e616d6525323725334500000000000000006101408201526101580190565b86886105e3565b602160f81b81529050612bbb600182018561055b565b7f2533432f746578742533452533432f737667253345227d00000000000000000081526017019a995050505050505050505056fea26469706673582212206a2c00c13ddb4f1bcd7ee36e36f0c874d7d9dadcf38306eab3610b5a6e7af83464736f6c63430008110033", + "nonce": "0x2" + }, + "additionalContracts": [], + "isFixedGasLimit": false + }, + { + "hash": "0x0743791590848577b8a1ef86f05373cf83ef5a79a8608a0de6356556d0b00ef7", + "transactionType": "CREATE", + "contractName": null, + "contractAddress": "0xCf7Ed3AccA5a467e9e704C703E8D87F634fB0Fc9", + "function": null, + "arguments": null, + "transaction": { + "type": "0x00", + "from": "0xf39fd6e51aad88f6f4ce6ab8827279cfffb92266", + "gas": "0x42230", + "value": "0x0", + "data": "0x608060405234801561001057600080fd5b506102cf806100206000396000f3fe608060405234801561001057600080fd5b506004361061004c5760003560e01c80630194db8e14610051578063072bdcc214610076578063a391c15b14610089578063b67d77c51461009c575b600080fd5b61006461005f366004610160565b6100af565b60405190815260200160405180910390f35b610064610084366004610160565b6100ef565b61006461009736600461021e565b610129565b6100646100aa36600461021e565b61013e565b600080805b83518110156100e8578381815181106100cf576100cf610240565b60200260200101518201915080806001019150506100b4565b5092915050565b60006001815b83518110156100e85783818151811061011057610110610240565b60200260200101518202915080806001019150506100f5565b60006101358284610256565b90505b92915050565b60006101358284610278565b634e487b7160e01b600052604160045260246000fd5b6000602080838503121561017357600080fd5b823567ffffffffffffffff8082111561018b57600080fd5b818501915085601f83011261019f57600080fd5b8135818111156101b1576101b161014a565b8060051b604051601f19603f830116810181811085821117156101d6576101d661014a565b6040529182528482019250838101850191888311156101f457600080fd5b938501935b82851015610212578435845293850193928501926101f9565b98975050505050505050565b6000806040838503121561023157600080fd5b50508035926020909101359150565b634e487b7160e01b600052603260045260246000fd5b60008261027357634e487b7160e01b600052601260045260246000fd5b500490565b8181038181111561013857634e487b7160e01b600052601160045260246000fdfea2646970667358221220fcdef23ba4219270ddb3ab764e22a87e229c05e6f1dfc4eeea983fa1a1dac91f64736f6c63430008110033", + "nonce": "0x3" + }, + "additionalContracts": [], + "isFixedGasLimit": false + }, + { + "hash": "0x07762f8fe9967e642c0e66a7ef200fd6c0ae72c5d17dcc4fec26a2aae7da36a0", + "transactionType": "CREATE", + "contractName": "Evmsheet", + "contractAddress": "0xDc64a140Aa3E981100a9becA4E685f962f0cF6C9", + "function": null, + "arguments": [ + "0x9fE46736679d2D9a65F0992F2272dE9f3c7fa6e0", + "10000000000000000" + ], + "transaction": { + "type": "0x00", + "from": "0xf39fd6e51aad88f6f4ce6ab8827279cfffb92266", + "gas": "0x34bf99", + "value": "0x0", + "data": "0x608060405234801561001057600080fd5b50604051612ed9380380612ed983398101604081905261002f916100b1565b61003833610061565b600280546001600160a01b0319166001600160a01b0393909316929092179091556001556100eb565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b600080604083850312156100c457600080fd5b82516001600160a01b03811681146100db57600080fd5b6020939093015192949293505050565b612ddf806100fa6000396000f3fe608060405260043610620000a95760003560e01c80638da5cb5b116200006c5780638da5cb5b146200016d578063ab2fa65a146200018d578063ae28505e14620001b4578063c56c4cf114620001d9578063f2fde38b14620001fb578063f52be2a2146200022057600080fd5b806303fb31e814620000ae5780631164c83d14620000d5578063145e414714620000ec5780635787cacb146200012e578063715018a61462000155575b600080fd5b348015620000bb57600080fd5b50620000d3620000cd36600462000778565b62000247565b005b620000d3620000e6366004620007e9565b62000273565b348015620000f957600080fd5b50620001116200010b36600462000864565b620004b2565b6040516001600160a01b0390911681526020015b60405180910390f35b3480156200013b57600080fd5b50620001466200054f565b60405162000125919062000891565b3480156200016257600080fd5b50620000d3620005b3565b3480156200017a57600080fd5b506000546001600160a01b031662000111565b3480156200019a57600080fd5b50620001a5620005cb565b604051620001259190620008e0565b348015620001c157600080fd5b5062000111620001d336600462000930565b620005f7565b348015620001e657600080fd5b5060025462000111906001600160a01b031681565b3480156200020857600080fd5b50620000d36200021a36600462000778565b62000622565b3480156200022d57600080fd5b506200023860015481565b60405190815260200162000125565b62000251620006a1565b600280546001600160a01b0319166001600160a01b0392909216919091179055565b60015434146200029d5760405163723a79e360e11b81523460048201526024015b60405180910390fd5b600060405180602001620002b1906200074d565b6020820181038252601f19601f8201166040525090506000828251602084016000f56002546040516356d3163d60e01b81526001600160a01b0391821660048201529192508216906356d3163d90602401600060405180830381600087803b1580156200031d57600080fd5b505af115801562000332573d6000803e3d6000fd5b505060405163c47f002760e01b81526001600160a01b038416925063c47f0027915062000366908a908a906004016200094a565b600060405180830381600087803b1580156200038157600080fd5b505af115801562000396573d6000803e3d6000fd5b5050604051635c26412360e11b81526001600160a01b038416925063b84c82469150620003ca90889088906004016200094a565b600060405180830381600087803b158015620003e557600080fd5b505af1158015620003fa573d6000803e3d6000fd5b505060405163f2fde38b60e01b81523260048201526001600160a01b038416925063f2fde38b9150602401600060405180830381600087803b1580156200044057600080fd5b505af115801562000455573d6000803e3d6000fd5b5050600380546001810182556000919091527fc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b0180546001600160a01b0319166001600160a01b0394909416939093179092555050505050505050565b600060ff60f81b838360405180602001620004cd906200074d565b6020820181038252601f19601f82011660405250805190602001206040516020016200053094939291906001600160f81b031994909416845260609290921b6bffffffffffffffffffffffff191660018401526015830152603582015260550190565b60408051601f1981840301815291905280516020909101209392505050565b60606003805480602002602001604051908101604052809291908181526020018280548015620005a957602002820191906000526020600020905b81546001600160a01b031681526001909101906020018083116200058a575b5050505050905090565b620005bd620006a1565b620005c96000620006fd565b565b606060405180602001620005df906200074d565b601f1982820381018352601f90910116604052919050565b600381815481106200060857600080fd5b6000918252602090912001546001600160a01b0316905081565b6200062c620006a1565b6001600160a01b038116620006935760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b606482015260840162000294565b6200069e81620006fd565b50565b6000546001600160a01b03163314620005c95760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015260640162000294565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b612430806200097a83390190565b80356001600160a01b03811681146200077357600080fd5b919050565b6000602082840312156200078b57600080fd5b62000796826200075b565b9392505050565b60008083601f840112620007b057600080fd5b50813567ffffffffffffffff811115620007c957600080fd5b602083019150836020828501011115620007e257600080fd5b9250929050565b6000806000806000606086880312156200080257600080fd5b853567ffffffffffffffff808211156200081b57600080fd5b6200082989838a016200079d565b909750955060208801359150808211156200084357600080fd5b5062000852888289016200079d565b96999598509660400135949350505050565b600080604083850312156200087857600080fd5b62000883836200075b565b946020939093013593505050565b6020808252825182820181905260009190848201906040850190845b81811015620008d45783516001600160a01b031683529284019291840191600101620008ad565b50909695505050505050565b600060208083528351808285015260005b818110156200090f57858101830151858201604001528201620008f1565b506000604082860101526040601f19601f8301168501019250505092915050565b6000602082840312156200094357600080fd5b5035919050565b60208152816020820152818360408301376000818301604090810191909152601f909201601f1916010191905056fe60806040523480156200001157600080fd5b50604051806040016040528060078152602001660536865657420360cc1b815250604051806040016040528060048152602001630534854360e41b81525062000069620000636200008f60201b60201c565b62000093565b600162000077838262000188565b50600262000086828262000188565b50505062000254565b3390565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b634e487b7160e01b600052604160045260246000fd5b600181811c908216806200010e57607f821691505b6020821081036200012f57634e487b7160e01b600052602260045260246000fd5b50919050565b601f8211156200018357600081815260208120601f850160051c810160208610156200015e5750805b601f850160051c820191505b818110156200017f578281556001016200016a565b5050505b505050565b81516001600160401b03811115620001a457620001a4620000e3565b620001bc81620001b58454620000f9565b8462000135565b602080601f831160018114620001f45760008415620001db5750858301515b600019600386901b1c1916600185901b1785556200017f565b600085815260208120601f198616915b82811015620002255788860151825594840194600190910190840162000204565b5085821015620002445787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b6121cc80620002646000396000f3fe608060405234801561001057600080fd5b50600436106102275760003560e01c8063715018a611610130578063b85d8b85116100b8578063cf0983981161007c578063cf09839814610512578063cfbe95d814610535578063df4ca20614610556578063e985e9c514610576578063f2fde38b146105a457600080fd5b8063b85d8b85146104a4578063b88d4fde146104ce578063b8c368ec146104e1578063c47f0027146104ec578063c87b56dd146104ff57600080fd5b806395d89b41116100ff57806395d89b4114610439578063a22cb46514610441578063b46ebb1214610454578063b6d658e114610467578063b84c82461461049157600080fd5b8063715018a6146103fa578063768d5029146104025780638ada6b0f146104155780638da5cb5b1461042857600080fd5b80631b06443c116101b35780634f6ccce7116101825780634f6ccce71461038157806356d3163d146103a15780636352211e146103b45780636a0abc74146103c757806370a08231146103e757600080fd5b80631b06443c14610335578063206848f61461034857806323b872dd1461035b57806342842e0e1461036e57600080fd5b8063081812fc116101fa578063081812fc146102a1578063095ea7b3146102e2578063172b9eed146102f757806318160ddd1461030a5780631941fd141461031357600080fd5b806301ffc9a71461022c57806302f3c4c91461025457806306fdde03146102745780630715a24a1461027c575b600080fd5b61023f61023a36600461176a565b6105b7565b60405190151581526020015b60405180910390f35b610267610262366004611861565b610609565b60405161024b9190611951565b610267610638565b6102936fffffffffffffffffffffffffffffffff81565b60405190815260200161024b565b6102ca6102af366004611964565b6005602052600090815260409020546001600160a01b031681565b6040516001600160a01b03909116815260200161024b565b6102f56102f036600461197d565b6106c6565b005b6102676103053660046119a9565b6107ad565b61029360075481565b610326610321366004611964565b610875565b60405161024b939291906119de565b6102ca610343366004611a0e565b61092a565b610326610356366004611964565b6109e3565b6102f5610369366004611a2b565b610ae1565b6102f561037c366004611a2b565b610ca8565b61029361038f366004611964565b60086020526000908152604090205481565b6102f56103af366004611a0e565b610da0565b6102ca6103c2366004611964565b610dca565b6103da6103d53660046119a9565b610e1c565b60405161024b9190611a6c565b6102936103f5366004611a0e565b610e60565b6102f5610ec3565b6102f5610410366004611af9565b610ed7565b6009546102ca906001600160a01b031681565b6000546001600160a01b03166102ca565b610267611035565b6102f561044f366004611b63565b611042565b610267610462366004611964565b6110ae565b61047a610475366004611964565b611258565b60408051921515835260208301919091520161024b565b6102f561049f366004611ba1565b611275565b6104b56104b2366004611964565b90565b6040516001600160e01b0319909116815260200161024b565b6102f56104dc366004611be3565b6112c6565b6102ca600160801b81565b6102f56104fa366004611ba1565b6113ae565b61026761050d366004611964565b6113ff565b61023f610520366004611a0e565b600160801b6001600160a01b03919091161090565b61023f610543366004611861565b516001600160a01b0316600160801b1490565b610569610564366004611964565b6114c9565b60405161024b9190611c16565b61023f610584366004611c4d565b600660209081526000928352604080842090915290825290205460ff1681565b6102f56105b2366004611a0e565b611526565b60006301ffc9a760e01b6001600160e01b0319831614806105e857506380ac58cd60e01b6001600160e01b03198316145b806106035750635b5e139f60e01b6001600160e01b03198316145b92915050565b6060816020015160405160200161062291815260200190565b6040516020818303038152906040529050919050565b6001805461064590611c7b565b80601f016020809104026020016040519081016040528092919081815260200182805461067190611c7b565b80156106be5780601f10610693576101008083540402835291602001916106be565b820191906000526020600020905b8154815290600101906020018083116106a157829003601f168201915b505050505081565b6000818152600360205260409020546001600160a01b03163381148061070f57506001600160a01b038116600090815260066020908152604080832033845290915290205460ff165b6107515760405162461bcd60e51b815260206004820152600e60248201526d1393d517d055551213d49256915160921b60448201526064015b60405180910390fd5b60008281526005602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b606060006107ba83610e1c565b9050606060005b825181101561086d576000806107ef8584815181106107e2576107e2611cb5565b6020026020010151611258565b9150915081156108335783610803826110ae565b61080c90611ccb565b60405160200161081d929190611cef565b6040516020818303038152906040529350610858565b6040516108469085908390602001611cef565b60405160208183030381529060405293505b5050808061086590611d27565b9150506107c1565b509392505050565b600a602052600090815260409020805460018201546002830180546001600160a01b039093169391926108a790611c7b565b80601f01602080910402602001604051908101604052809291908181526020018280546108d390611c7b565b80156109205780601f106108f557610100808354040283529160200191610920565b820191906000526020600020905b81548152906001019060200180831161090357829003601f168201915b5050505050905083565b6000600160801b6001600160a01b03831610156109da576000610955836001600160a01b03166110ae565b604051632d737e4960e21b8152909150735fbdb2315678afecb367f032d93f642f64180aa39063b5cdf92490610992908490600090600401611d40565b602060405180830381865af41580156109af573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906109d39190611d62565b9392505050565b5090565b919050565b60008181526003602052604081205481906060906001600160a01b0316610a1057600160801b9250610a2b565b6000848152600a60205260409020546001600160a01b031692505b6000848152600a60205260409020600181015460029091018054859291908190610a5490611c7b565b80601f0160208091040260200160405190810160405280929190818152602001828054610a8090611c7b565b8015610acd5780601f10610aa257610100808354040283529160200191610acd565b820191906000526020600020905b815481529060010190602001808311610ab057829003601f168201915b505050505090509250925092509193909250565b6000818152600360205260409020546001600160a01b03848116911614610b375760405162461bcd60e51b815260206004820152600a60248201526957524f4e475f46524f4d60b01b6044820152606401610748565b6001600160a01b038216610b815760405162461bcd60e51b81526020600482015260116024820152701253959053125117d49150d25412515395607a1b6044820152606401610748565b336001600160a01b0384161480610bbb57506001600160a01b038316600090815260066020908152604080832033845290915290205460ff165b80610bdc57506000818152600560205260409020546001600160a01b031633145b610c195760405162461bcd60e51b815260206004820152600e60248201526d1393d517d055551213d49256915160921b6044820152606401610748565b6001600160a01b0380841660008181526004602090815260408083208054600019019055938616808352848320805460010190558583526003825284832080546001600160a01b03199081168317909155600590925284832080549092169091559251849392917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b610cb3838383610ae1565b6001600160a01b0382163b1580610d5c5750604051630a85bd0160e11b8082523360048301526001600160a01b03858116602484015260448301849052608060648401526000608484015290919084169063150b7a029060a4016020604051808303816000875af1158015610d2c573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610d509190611d7b565b6001600160e01b031916145b610d9b5760405162461bcd60e51b815260206004820152601060248201526f155394d0519157d49150d2541251539560821b6044820152606401610748565b505050565b610da861159f565b600980546001600160a01b0319166001600160a01b0392909216919091179055565b6000818152600360205260409020546001600160a01b0316806109de5760405162461bcd60e51b815260206004820152600a6024820152691393d517d3525395115160b21b6044820152606401610748565b60608082516040519150602081048252602082016020850160005b83811015610e4f578181015183820152602001610e37565b505050810160200160405292915050565b60006001600160a01b038216610ea75760405162461bcd60e51b815260206004820152600c60248201526b5a45524f5f4144445245535360a01b6044820152606401610748565b506001600160a01b031660009081526004602052604090205490565b610ecb61159f565b610ed560006115f9565b565b6000858152600360205260409020546001600160a01b0316610f2f57610efd3286611649565b60078054600090815260086020526040812087905581546001929190610f24908490611d98565b90915550610f889050565b6000858152600360205260409020546001600160a01b03163214610f8857600085815260036020526040908190205490516324f3f02560e21b81526001600160a01b039091166004820152326024820152604401610748565b6040518060600160405280856001600160a01b0316815260200184815260200183838080601f0160208091040260200160405190810160405280939291908181526020018383808284376000920182905250939094525050878152600a6020908152604091829020845181546001600160a01b0319166001600160a01b0390911617815590840151600182015590830151909150600282019061102b9082611df9565b5050505050505050565b6002805461064590611c7b565b3360008181526006602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b6000818152600a6020908152604080832081516060818101845282546001600160a01b0316825260018301549482019490945260028201805494959491938401916110f890611c7b565b80601f016020809104026020016040519081016040528092919081815260200182805461112490611c7b565b80156111715780601f1061114657610100808354040283529160200191611171565b820191906000526020600020905b81548152906001019060200180831161115457829003601f168201915b505050505081525050905061119381516001600160a01b0316600160801b1490565b156111a1576109d381610609565b60006111b0826000015161092a565b905060006111bf836020015190565b905060006111d084604001516107ad565b90506000836001600160a01b031683836040516020016111f1929190611eb9565b60408051601f198184030181529082905261120b91611eea565b600060405180830381855afa9150503d8060008114611246576040519150601f19603f3d011682016040523d82523d6000602084013e61124b565b606091505b5098975050505050505050565b600080611266600284611f06565b60019081149493901c92915050565b61127d61159f565b7f8dca0271872d00b3de3abafca544c52fcd7d512dd852c9894fa2c118ac759a93600283836040516112b193929190611fce565b60405180910390a16002610d9b828483611ffe565b6112d1858585610ae1565b6001600160a01b0384163b15806113685750604051630a85bd0160e11b808252906001600160a01b0386169063150b7a02906113199033908a908990899089906004016120be565b6020604051808303816000875af1158015611338573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061135c9190611d7b565b6001600160e01b031916145b6113a75760405162461bcd60e51b815260206004820152601060248201526f155394d0519157d49150d2541251539560821b6044820152606401610748565b5050505050565b6113b661159f565b7fb65b7b5ea384affd30f77f842e057d29dd1b13f133adf69a724a8105b164ab75600183836040516113ea93929190611fce565b60405180910390a16001610d9b828483611ffe565b6000818152600360205260409020546060906001600160a01b03168061143b57604051630243d1a960e21b815260048101849052602401610748565b6000611446846110ae565b6009546040516328de0f2f60e01b81529192506001600160a01b0316906328de0f2f9061147c90879085906001906004016120fd565b600060405180830381865afa158015611499573d6000803e3d6000fd5b505050506040513d6000823e601f3d908101601f191682016040526114c19190810190612128565b949350505050565b604080516060808201835260008083526020830181905292820152906114ee836110ae565b6040805160608101825285815260009586526003602090815295829020546001600160a01b0316958101959095528401525090919050565b61152e61159f565b6001600160a01b0381166115935760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610748565b61159c816115f9565b50565b6000546001600160a01b03163314610ed55760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610748565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b6001600160a01b0382166116935760405162461bcd60e51b81526020600482015260116024820152701253959053125117d49150d25412515395607a1b6044820152606401610748565b6000818152600360205260409020546001600160a01b0316156116e95760405162461bcd60e51b815260206004820152600e60248201526d1053149150511657d3525395115160921b6044820152606401610748565b6001600160a01b038216600081815260046020908152604080832080546001019055848352600390915280822080546001600160a01b0319168417905551839291907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b6001600160e01b03198116811461159c57600080fd5b60006020828403121561177c57600080fd5b81356109d381611754565b634e487b7160e01b600052604160045260246000fd5b604051601f8201601f1916810167ffffffffffffffff811182821017156117c6576117c6611787565b604052919050565b6001600160a01b038116811461159c57600080fd5b600067ffffffffffffffff8211156117fd576117fd611787565b50601f01601f191660200190565b600082601f83011261181c57600080fd5b813561182f61182a826117e3565b61179d565b81815284602083860101111561184457600080fd5b816020850160208301376000918101602001919091529392505050565b60006020828403121561187357600080fd5b813567ffffffffffffffff8082111561188b57600080fd5b908301906060828603121561189f57600080fd5b6040516060810181811083821117156118ba576118ba611787565b60405282356118c8816117ce565b8152602083810135908201526040830135828111156118e657600080fd5b6118f28782860161180b565b60408301525095945050505050565b60005b8381101561191c578181015183820152602001611904565b50506000910152565b6000815180845261193d816020860160208601611901565b601f01601f19169290920160200192915050565b6020815260006109d36020830184611925565b60006020828403121561197657600080fd5b5035919050565b6000806040838503121561199057600080fd5b823561199b816117ce565b946020939093013593505050565b6000602082840312156119bb57600080fd5b813567ffffffffffffffff8111156119d257600080fd5b6114c18482850161180b565b60018060a01b0384168152826020820152606060408201526000611a056060830184611925565b95945050505050565b600060208284031215611a2057600080fd5b81356109d3816117ce565b600080600060608486031215611a4057600080fd5b8335611a4b816117ce565b92506020840135611a5b816117ce565b929592945050506040919091013590565b6020808252825182820181905260009190848201906040850190845b81811015611aa457835183529284019291840191600101611a88565b50909695505050505050565b60008083601f840112611ac257600080fd5b50813567ffffffffffffffff811115611ada57600080fd5b602083019150836020828501011115611af257600080fd5b9250929050565b600080600080600060808688031215611b1157600080fd5b853594506020860135611b23816117ce565b935060408601359250606086013567ffffffffffffffff811115611b4657600080fd5b611b5288828901611ab0565b969995985093965092949392505050565b60008060408385031215611b7657600080fd5b8235611b81816117ce565b915060208301358015158114611b9657600080fd5b809150509250929050565b60008060208385031215611bb457600080fd5b823567ffffffffffffffff811115611bcb57600080fd5b611bd785828601611ab0565b90969095509350505050565b600080600080600060808688031215611bfb57600080fd5b8535611c06816117ce565b94506020860135611b23816117ce565b602081528151602082015260018060a01b036020830151166040820152600060408301516060808401526114c16080840182611925565b60008060408385031215611c6057600080fd5b8235611c6b816117ce565b91506020830135611b96816117ce565b600181811c90821680611c8f57607f821691505b602082108103611caf57634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052603260045260246000fd5b80516020808301519190811015611caf5760001960209190910360031b1b16919050565b60008351611d01818460208801611901565b9190910191825250602001919050565b634e487b7160e01b600052601160045260246000fd5b600060018201611d3957611d39611d11565b5060010190565b604081526000611d536040830185611925565b90508260208301529392505050565b600060208284031215611d7457600080fd5b5051919050565b600060208284031215611d8d57600080fd5b81516109d381611754565b8082018082111561060357610603611d11565b601f821115610d9b57600081815260208120601f850160051c81016020861015611dd25750805b601f850160051c820191505b81811015611df157828155600101611dde565b505050505050565b815167ffffffffffffffff811115611e1357611e13611787565b611e2781611e218454611c7b565b84611dab565b602080601f831160018114611e5c5760008415611e445750858301515b600019600386901b1c1916600185901b178555611df1565b600085815260208120601f198616915b82811015611e8b57888601518255948401946001909101908401611e6c565b5085821015611ea95787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b6001600160e01b0319831681528151600090611edc816004850160208701611901565b919091016004019392505050565b60008251611efc818460208701611901565b9190910192915050565b600082611f2357634e487b7160e01b600052601260045260246000fd5b500690565b60008154611f3581611c7b565b808552602060018381168015611f525760018114611f6c57611f9a565b60ff1985168884015283151560051b880183019550611f9a565b866000528260002060005b85811015611f925781548a8201860152908301908401611f77565b890184019650505b505050505092915050565b81835281816020850137506000828201602090810191909152601f909101601f19169091010190565b604081526000611fe16040830186611f28565b8281036020840152611ff4818587611fa5565b9695505050505050565b67ffffffffffffffff83111561201657612016611787565b61202a836120248354611c7b565b83611dab565b6000601f84116001811461205e57600085156120465750838201355b600019600387901b1c1916600186901b1783556113a7565b600083815260209020601f19861690835b8281101561208f578685013582556020948501946001909201910161206f565b50868210156120ac5760001960f88860031b161c19848701351681555b505060018560011b0183555050505050565b6001600160a01b03868116825285166020820152604081018490526080606082018190526000906120f29083018486611fa5565b979650505050505050565b8381526060602082015260006121166060830185611925565b8281036040840152611ff48185611f28565b60006020828403121561213a57600080fd5b815167ffffffffffffffff81111561215157600080fd5b8201601f8101841361216257600080fd5b805161217061182a826117e3565b81815285602083850101111561218557600080fd5b611a0582602083016020860161190156fea26469706673582212203fc548aa4f22e6f4c01757ba3f2e0383630418b3d17601758718ab19a4d9918d64736f6c63430008110033a26469706673582212207932e8c793f9a96d9606a8907a6671f54c0fb1ed5a763048e13b429274e7706c64736f6c634300081100330000000000000000000000009fe46736679d2d9a65f0992f2272de9f3c7fa6e0000000000000000000000000000000000000000000000000002386f26fc10000", + "nonce": "0x4" + }, + "additionalContracts": [], + "isFixedGasLimit": false + } + ], + "receipts": [ + { + "transactionHash": "0x07afab663720a369027046b3c6a5a7aa6daca9a1f05fc2b75973901c1b9f07ca", + "transactionIndex": "0x0", + "blockHash": "0x05cb66f5d2245a9feb66779a7830d7df6e68da2832bb0a0d2c7293d230935375", + "blockNumber": "0xd", + "from": "0xf39Fd6e51aad88F6F4ce6aB8827279cffFb92266", + "to": null, + "cumulativeGasUsed": "0xf4240", + "gasUsed": "0x7a120", + "contractAddress": "0xe7f1725E7734CE288F8367e1Bb143E90bb3F0512", + "logs": [], + "status": "0x1", + "logsBloom": "0x00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", + "type": "0x0", + "effectiveGasPrice": "0xf4240" + }, + { + "transactionHash": "0x0175088e063b575ca60ade494d3a0e7b309197cfee6c69785d4b60b63027e0b9", + "transactionIndex": "0x0", + "blockHash": "0x074ecc5f354c00b4e8a9f151c621bd7d5f125624d211746abb5ad655bacad180", + "blockNumber": "0xe", + "from": "0xf39Fd6e51aad88F6F4ce6aB8827279cffFb92266", + "to": null, + "cumulativeGasUsed": "0xf4240", + "gasUsed": "0x7a120", + "contractAddress": "0x9fE46736679d2D9a65F0992F2272dE9f3c7fa6e0", + "logs": [], + "status": "0x1", + "logsBloom": "0x00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", + "type": "0x0", + "effectiveGasPrice": "0xf4240" + }, + { + "transactionHash": "0x04427e5dd9b0e2f38baea9497540d3f67fe001e6b711ee9b39ecac0e31c4fbd1", + "transactionIndex": "0x0", + "blockHash": "0x00bfdd91c6d21bb0dcd226544ebad1b928f6863ef571bfafe999945836d12c77", + "blockNumber": "0xf", + "from": "0xf39Fd6e51aad88F6F4ce6aB8827279cffFb92266", + "to": null, + "cumulativeGasUsed": "0xf4240", + "gasUsed": "0x7a120", + "contractAddress": "0xCf7Ed3AccA5a467e9e704C703E8D87F634fB0Fc9", + "logs": [], + "status": "0x1", + "logsBloom": "0x00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", + "type": "0x0", + "effectiveGasPrice": "0xf4240" + }, + { + "transactionHash": "0x0743791590848577b8a1ef86f05373cf83ef5a79a8608a0de6356556d0b00ef7", + "transactionIndex": "0x0", + "blockHash": "0x07cad5b131a01b14f6de8609a17e923b1bf4fba26005f828591dbb1a158599ac", + "blockNumber": "0x10", + "from": "0xf39Fd6e51aad88F6F4ce6aB8827279cffFb92266", + "to": null, + "cumulativeGasUsed": "0xf4240", + "gasUsed": "0x7a120", + "contractAddress": "0xDc64a140Aa3E981100a9becA4E685f962f0cF6C9", + "logs": [], + "status": "0x1", + "logsBloom": "0x00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", + "type": "0x0", + "effectiveGasPrice": "0xf4240" + }, + { + "transactionHash": "0x07762f8fe9967e642c0e66a7ef200fd6c0ae72c5d17dcc4fec26a2aae7da36a0", + "transactionIndex": "0x0", + "blockHash": "0x0478ec88190a154c8b4b1763b0a8190a335ed9f54033b8606a27cb004d8252b7", + "blockNumber": "0x11", + "from": "0xf39Fd6e51aad88F6F4ce6aB8827279cffFb92266", + "to": null, + "cumulativeGasUsed": "0xf4240", + "gasUsed": "0x7a120", + "contractAddress": "0x5FC8d32690cc91D4c39d9d3abcBD16989F875707", + "logs": [ + { + "address": "0x5FC8d32690cc91D4c39d9d3abcBD16989F875707", + "topics": [ + "0x8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0", + "0x0000000000000000000000000000000000000000000000000000000000000000", + "0x000000000000000000000000f39fd6e51aad88f6f4ce6ab8827279cfffb92266" + ], + "data": "0x", + "blockHash": "0x0478ec88190a154c8b4b1763b0a8190a335ed9f54033b8606a27cb004d8252b7", + "blockNumber": "0x11", + "transactionHash": "0x07762f8fe9967e642c0e66a7ef200fd6c0ae72c5d17dcc4fec26a2aae7da36a0", + "removed": false + } + ], + "status": "0x1", + "logsBloom": "0x00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", + "type": "0x0", + "effectiveGasPrice": "0xf4240" + } + ], + "libraries": [ + "lib/eth-projects-monorepo/packages/eth-projects-contracts/contracts/lib/utils/Bytes.sol:Bytes:0x5fbdb2315678afecb367f032d93f642f64180aa3" + ], + "pending": [], + "returns": {}, + "timestamp": 1689267371, + "chain": 1263227476, + "multi": false, + "commit": "8bcb0d8" +} \ No newline at end of file diff --git a/packages/starksheet-solidity/broadcast/Evmsheet.s.sol/1263227476/run-1689270957.json b/packages/starksheet-solidity/broadcast/Evmsheet.s.sol/1263227476/run-1689270957.json new file mode 100644 index 00000000..8bd89142 --- /dev/null +++ b/packages/starksheet-solidity/broadcast/Evmsheet.s.sol/1263227476/run-1689270957.json @@ -0,0 +1,201 @@ +{ + "transactions": [ + { + "hash": "0x019699b0afd0e031553b8c04c6d64524ce8493df9d9d4f5b93bfcad9a7eb3fef", + "transactionType": "CREATE", + "contractName": "Bytes", + "contractAddress": "0x5FbDB2315678afecb367f032d93F642f64180aa3", + "function": null, + "arguments": null, + "transaction": { + "type": "0x00", + "from": "0xf39fd6e51aad88f6f4ce6ab8827279cfffb92266", + "gas": "0x1387ed", + "data": "0x6110d661003a600b82828239805160001a60731461002d57634e487b7160e01b600052600060045260246000fd5b30600052607381538281f3fe73000000000000000000000000000000000000000030146080604052600436106101625760003560e01c8063a5eb31ee116100cd578063d1ffb56111610086578063d1ffb561146103fb578063d442584f1461042b578063e004139614610454578063f1142fb314610474578063f647f8fb14610487578063f83b670f146104b257600080fd5b8063a5eb31ee14610344578063a8d8f00f1461036b578063b5cdf92414610396578063b63711df146103a9578063be8b3430146103bc578063c29616bd146103cf57600080fd5b80635ef849301161011f5780635ef8493014610241578063913c97b41461026b57806397e6175c1461029f57806399dd9bd7146102cb5780639ae4c3d1146102ec5780639cee499e1461031857600080fd5b8063042aa0841461016757806305d3bb74146101985780631a7431ef146101c0578063235266d2146101e357806348137709146101f65780634d66a2ae1461021b575b600080fd5b61017a610175366004610ec0565b6104de565b6040516001600160d01b031990911681526020015b60405180910390f35b6101ab6101a6366004610ec0565b610540565b60405163ffffffff909116815260200161018f565b6101d36101ce366004610f05565b61059d565b604051901515815260200161018f565b6101d36101f1366004610f4c565b610652565b610209610204366004610ec0565b6106b5565b60405160ff909116815260200161018f565b61022e610229366004610fa6565b610711565b60405161ffff909116815260200161018f565b61025461024f366004610ec0565b61071e565b60405165ffffffffffff909116815260200161018f565b61027e610279366004610ec0565b610772565b6040516fffffffffffffffffffffffffffffffff909116815260200161018f565b6102b26102ad366004610ec0565b6107d0565b6040516001600160a01b0319909116815260200161018f565b6102de6102d9366004610ec0565b61082e565b60405190815260200161018f565b6102ff6102fa366004610ec0565b61088c565b60405167ffffffffffffffff909116815260200161018f565b61032b610326366004610ec0565b6108e9565b6040516001600160d81b0319909116815260200161018f565b610357610352366004610ec0565b610946565b60405162ffffff909116815260200161018f565b61037e610379366004610ec0565b6109a3565b60405166ffffffffffffff909116815260200161018f565b6102de6103a4366004610ec0565b610a00565b6102ff6103b7366004610ec0565b610a55565b61022e6103ca366004610ec0565b610aa9565b6103e26103dd366004610ec0565b610b06565b6040516001600160c81b0319909116815260200161018f565b61040e610409366004610ec0565b610b5a565b6040516bffffffffffffffffffffffff909116815260200161018f565b61043e610439366004610ec0565b610bae565b60405164ffffffffff909116815260200161018f565b610467610462366004610fe3565b610c02565b60405161018f9190611031565b6102b2610482366004610ec0565b610d0f565b61049a610495366004610ec0565b610d64565b6040516001600160a01b03909116815260200161018f565b6104c56104c0366004610ec0565b610dc9565b6040516001600160f81b0319909116815260200161018f565b60006104eb82600661107f565b835110156105375760405162461bcd60e51b8152602060048201526014602482015273746f4279746573365f6f75744f66426f756e647360601b60448201526064015b60405180910390fd5b50016006015190565b600061054d82600461107f565b835110156105945760405162461bcd60e51b8152602060048201526014602482015273746f55696e7433325f6f75744f66426f756e647360601b604482015260640161052e565b50016004015190565b600080600190508354600260018083161561010002038216048451808214600181146105cc5760009450610644565b821561064457602083106001811461062957600189600052602060002060208a018581015b600284828410010361062057815183541461060f5760009950600093505b6001830192506020820191506105f1565b50505050610642565b6101008086040294506020880151851461064257600095505b505b509293505050505b92915050565b81518151600091600191811480831461066e57600092506106ab565b600160208701838101602088015b60028483851001036106a657805183511461069a5760009650600093505b6020928301920161067c565b505050505b5090949350505050565b60006106c282600161107f565b835110156107085760405162461bcd60e51b8152602060048201526013602482015272746f55696e74385f6f75744f66426f756e647360681b604482015260640161052e565b50016001015190565b600061064c826000610aa9565b600061072b82600661107f565b835110156105375760405162461bcd60e51b8152602060048201526014602482015273746f55696e7434385f6f75744f66426f756e647360601b604482015260640161052e565b600061077f82601061107f565b835110156107c75760405162461bcd60e51b8152602060048201526015602482015274746f55696e743132385f6f75744f66426f756e647360581b604482015260640161052e565b50016010015190565b60006107dd82600c61107f565b835110156108255760405162461bcd60e51b8152602060048201526015602482015274746f427974657331325f6f75744f66426f756e647360581b604482015260640161052e565b5001600c015190565b600061083b82602061107f565b835110156108835760405162461bcd60e51b8152602060048201526015602482015274746f427974657333325f6f75744f66426f756e647360581b604482015260640161052e565b50016020015190565b600061089982600861107f565b835110156108e05760405162461bcd60e51b8152602060048201526014602482015273746f55696e7436345f6f75744f66426f756e647360601b604482015260640161052e565b50016008015190565b60006108f682600561107f565b8351101561093d5760405162461bcd60e51b8152602060048201526014602482015273746f4279746573355f6f75744f66426f756e647360601b604482015260640161052e565b50016005015190565b600061095382600361107f565b8351101561099a5760405162461bcd60e51b8152602060048201526014602482015273746f55696e7432345f6f75744f66426f756e647360601b604482015260640161052e565b50016003015190565b60006109b082600761107f565b835110156109f75760405162461bcd60e51b8152602060048201526014602482015273746f55696e7435365f6f75744f66426f756e647360601b604482015260640161052e565b50016007015190565b6000610a0d82602061107f565b835110156108835760405162461bcd60e51b8152602060048201526015602482015274746f55696e743235365f6f75744f66426f756e647360581b604482015260640161052e565b6000610a6282600861107f565b835110156108e05760405162461bcd60e51b8152602060048201526014602482015273746f4279746573385f6f75744f66426f756e647360601b604482015260640161052e565b6000610ab682600261107f565b83511015610afd5760405162461bcd60e51b8152602060048201526014602482015273746f55696e7431365f6f75744f66426f756e647360601b604482015260640161052e565b50016002015190565b6000610b1382600761107f565b835110156109f75760405162461bcd60e51b8152602060048201526014602482015273746f4279746573375f6f75744f66426f756e647360601b604482015260640161052e565b6000610b6782600c61107f565b835110156108255760405162461bcd60e51b8152602060048201526014602482015273746f55696e7439365f6f75744f66426f756e647360601b604482015260640161052e565b6000610bbb82600561107f565b8351101561093d5760405162461bcd60e51b8152602060048201526014602482015273746f55696e7434305f6f75744f66426f756e647360601b604482015260640161052e565b606081610c1081601f61107f565b1015610c4f5760405162461bcd60e51b815260206004820152600e60248201526d736c6963655f6f766572666c6f7760901b604482015260640161052e565b610c59828461107f565b84511015610c9d5760405162461bcd60e51b8152602060048201526011602482015270736c6963655f6f75744f66426f756e647360781b604482015260640161052e565b606082158015610cbc5760405191506000825260208201604052610d06565b6040519150601f8416801560200281840101858101878315602002848b0101015b81831015610cf5578051835260209283019201610cdd565b5050858452601f01601f1916604052505b50949350505050565b6000610d1c82601061107f565b835110156107c75760405162461bcd60e51b8152602060048201526015602482015274746f427974657331365f6f75744f66426f756e647360581b604482015260640161052e565b6000610d7182601461107f565b83511015610db95760405162461bcd60e51b8152602060048201526015602482015274746f416464726573735f6f75744f66426f756e647360581b604482015260640161052e565b500160200151600160601b900490565b6000610dd682600161107f565b835110156107085760405162461bcd60e51b8152602060048201526014602482015273746f4279746573315f6f75744f66426f756e647360601b604482015260640161052e565b634e487b7160e01b600052604160045260246000fd5b600082601f830112610e4457600080fd5b813567ffffffffffffffff80821115610e5f57610e5f610e1d565b604051601f8301601f19908116603f01168101908282118183101715610e8757610e87610e1d565b81604052838152866020858801011115610ea057600080fd5b836020870160208301376000602085830101528094505050505092915050565b60008060408385031215610ed357600080fd5b823567ffffffffffffffff811115610eea57600080fd5b610ef685828601610e33565b95602094909401359450505050565b60008060408385031215610f1857600080fd5b82359150602083013567ffffffffffffffff811115610f3657600080fd5b610f4285828601610e33565b9150509250929050565b60008060408385031215610f5f57600080fd5b823567ffffffffffffffff80821115610f7757600080fd5b610f8386838701610e33565b93506020850135915080821115610f9957600080fd5b50610f4285828601610e33565b600060208284031215610fb857600080fd5b813567ffffffffffffffff811115610fcf57600080fd5b610fdb84828501610e33565b949350505050565b600080600060608486031215610ff857600080fd5b833567ffffffffffffffff81111561100f57600080fd5b61101b86828701610e33565b9660208601359650604090950135949350505050565b600060208083528351808285015260005b8181101561105e57858101830151858201604001528201611042565b506000604082860101526040601f19601f8301168501019250505092915050565b8082018082111561064c57634e487b7160e01b600052601160045260246000fdfea26469706673582212205bdf5bc4551862519f5370e0dcec38eefbbbe11b6a5bf19ce2846b4f8831a5dc64736f6c63430008110033", + "nonce": "0x0" + }, + "additionalContracts": [], + "isFixedGasLimit": false + }, + { + "hash": "0x00032739c8b97aa7ff5e83af7ddff37129a78e444ebe81a043349037f7894835", + "transactionType": "CREATE", + "contractName": "MultiSendCallOnly", + "contractAddress": "0xe7f1725E7734CE288F8367e1Bb143E90bb3F0512", + "function": null, + "arguments": null, + "transaction": { + "type": "0x00", + "from": "0xf39fd6e51aad88f6f4ce6ab8827279cfffb92266", + "gas": "0x2e5c4", + "value": "0x0", + "data": "0x608060405234801561001057600080fd5b506101ae806100206000396000f3fe60806040526004361061001e5760003560e01c80638d80ff0a14610023575b600080fd5b6100366100313660046100c7565b610038565b005b805160205b818110156100ac578083015160f81c6001820184015160601c601583018501516035840186015160558501870160008560008114610082576001811461001e5761008e565b6000808585888a5af191505b508061009957600080fd5b505080605501850194505050505061003d565b505050565b634e487b7160e01b600052604160045260246000fd5b6000602082840312156100d957600080fd5b813567ffffffffffffffff808211156100f157600080fd5b818401915084601f83011261010557600080fd5b813581811115610117576101176100b1565b604051601f8201601f19908116603f0116810190838211818310171561013f5761013f6100b1565b8160405282815287602084870101111561015857600080fd5b82602086016020830137600092810160200192909252509594505050505056fea2646970667358221220c15490bbb756a4c3c49d6335b2e81d2d098647b0ea70174c2279f199b1d0800364736f6c63430008110033", + "nonce": "0x1" + }, + "additionalContracts": [], + "isFixedGasLimit": false + }, + { + "hash": "0x007063f5d480fa3ad4a33466c2243fbeed7e78c3199bba8cb97e4f7b53f27a2a", + "transactionType": "CREATE", + "contractName": "BasicCellRenderer", + "contractAddress": "0x9fE46736679d2D9a65F0992F2272dE9f3c7fa6e0", + "function": null, + "arguments": null, + "transaction": { + "type": "0x00", + "from": "0xf39fd6e51aad88f6f4ce6ab8827279cfffb92266", + "gas": "0x3180ad", + "value": "0x0", + "data": "0x608060405234801561001057600080fd5b50612c25806100206000396000f3fe608060405234801561001057600080fd5b50600436106100365760003560e01c806306d4cd8b1461003b57806328de0f2f14610064575b600080fd5b61004e610049366004610322565b610077565b60405161005b919061038b565b60405180910390f35b61004e610072366004610404565b6100f1565b60606000610086600f846104fc565b90506000610095600f8361051e565b61009f9085610535565b905060006100ae826041610548565b60f81b9050806100c76100c2856001610548565b6101b6565b6040516020016100d8929190610577565b6040516020818303038152906040529350505050919050565b606060006100fe86610077565b905083838261018388735fbdb2315678afecb367f032d93f642f64180aa363b5cdf924909160006040518363ffffffff1660e01b81526004016101429291906105a8565b602060405180830381865af415801561015f573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906100c291906105ca565b87878660405160200161019c97969594939291906105f2565b604051602081830303815290604052915050949350505050565b606060006101c383610249565b600101905060008167ffffffffffffffff8111156101e3576101e36103a5565b6040519080825280601f01601f19166020018201604052801561020d576020820181803683370190505b5090508181016020015b600019016f181899199a1a9b1b9c1cb0b131b232b360811b600a86061a8153600a850494508461021757509392505050565b60008072184f03e93ff9f4daa797ed6e38ed64bf6a1f0160401b83106102885772184f03e93ff9f4daa797ed6e38ed64bf6a1f0160401b830492506040015b6d04ee2d6d415b85acef810000000083106102b4576d04ee2d6d415b85acef8100000000830492506020015b662386f26fc1000083106102d257662386f26fc10000830492506010015b6305f5e10083106102ea576305f5e100830492506008015b61271083106102fe57612710830492506004015b60648310610310576064830492506002015b600a831061031c576001015b92915050565b60006020828403121561033457600080fd5b5035919050565b60005b8381101561035657818101518382015260200161033e565b50506000910152565b6000815180845261037781602086016020860161033b565b601f01601f19169290920160200192915050565b60208152600061039e602083018461035f565b9392505050565b634e487b7160e01b600052604160045260246000fd5b60008083601f8401126103cd57600080fd5b50813567ffffffffffffffff8111156103e557600080fd5b6020830191508360208285010111156103fd57600080fd5b9250929050565b6000806000806060858703121561041a57600080fd5b84359350602085013567ffffffffffffffff8082111561043957600080fd5b818701915087601f83011261044d57600080fd5b81358181111561045f5761045f6103a5565b604051601f8201601f19908116603f01168101908382118183101715610487576104876103a5565b816040528281528a60208487010111156104a057600080fd5b8260208601602083013760006020848301015280975050505060408701359150808211156104cd57600080fd5b506104da878288016103bb565b95989497509550505050565b634e487b7160e01b600052601160045260246000fd5b60008261051957634e487b7160e01b600052601260045260246000fd5b500490565b808202811582820484141761031c5761031c6104e6565b8181038181111561031c5761031c6104e6565b8082018082111561031c5761031c6104e6565b6000815161056d81856020860161033b565b9290920192915050565b6001600160f81b031983168152815160009061059a81600185016020870161033b565b919091016001019392505050565b6040815260006105bb604083018561035f565b90508260208301529392505050565b6000602082840312156105dc57600080fd5b5051919050565b81818437506000910190815290565b7f646174613a6170706c69636174696f6e2f6a736f6e2c7b22646573637269707481527f696f6e223a2022537461726b7368656574222c20226e616d65223a202200000060208201528688603d8301376000878201602160f81b603d820152875161066481603e840160208c0161033b565b7f222c22696d616765223a2022646174613a696d6167652f7376672b786d6c2c25603e92909101918201527f334373766725323076696577426f782533442532373025323030253230383925605e8201527f3230353525323725323066696c6c2533442532376e6f6e65253237253230786d607e8201527f6c6e73253344253237687474702533412f2f7777772e77332e6f72672f323030609e8201527f302f737667253237253345253343646566732533452533437374796c6525334560be8201527f253430666f6e742d66616365253230253742666f6e742d66616d696c7925334160de8201527f253230253237507265737325323053746172742532303250253237253342737260fe8201527f6325334125323075726c25323825323764617461253341666f6e742f776f666661011e8201527f32253342626173653634253243643039474d6741424141414141424c3841413861013e8201527f41414141415235774141424b674141454141414141414141414141414141414161015e8201527f4141414141414141414141414150305a4756453063476a41624d42794358675a61017e8201527f6741494e794551674b3846545361517544524141424e67496b41344e4d42434161019e8201527f46687a5148684649623644566c42306a314f4d4253336f4f4953744562732f2f6101be8201527f2f6c4a776356727a47634f30676f684c45484d6369694443434e57695a6761306101de8201527f79625345555954514f6a4b427038546c737a7344526438716174586c333058746101fe8201527f30645a47467952305668444b776c62746c25324272734643773945316e64655961021e8201527f4a74732f37527762305673784d71576c636a6a775445537a2f5568752f77337361023e8201527f33746b6f496d70343464515168576f456d54337579526d70746f7553446b7a5761025e8201527f454138762f3932364a4b7539486f696e6e3673376674336d4965476c7737547161027e8201527f6437456f326a46517849766a5642494a70563269614f62547a68575932314e7461029e8201527f476772687434704d4b3457556a34624c7967542f51253242514c7879253242336102be8201527f6c482f362f6b6275496444497239446a724a496a6f394a7336524d58253242456102de8201527f6b37424f545a6b6d70397a347455524652566656307148504448375a7462364a6102fe8201527f616f6130684c335975616232473373667a72365776394536793569767025324261031e8201527f7135564c74426a514478476f5345304150313762336466376c61726a6525324261033e8201527f73637a6b7241744a334b6657304a342532424b323365744b4b556a383554616f61035e8201527f57473453346158436c427743413268676141652532423658396f696e32304e6261037e8201527f554a7264466767517049686d5247494d30372f7025324277375a7058316c473161039e8201527f6a6a51787073435141423438714445415042346950312f6a39592f4261686a356103be8201527f5943414e302f78714157496852616a6c6e694e654f50396e78433466667932556103de8201527f694843304e47386b686f6f567a6f7459334445417a417a41356b473735337a6a6103fe8201527f4853354d6e6d586b69496a6d54554d36556d4d3025324256346976752f48377861041e8201527f6a364666322f6b343472787a6449324141676742492f4c48416b394a7a35554d61043e8201527f496f4c7755344146455435725a464f33444d616655633061777351434879497061045e8201527f557a546b30784a474a454f6a4e6871436b474570496153474f6a714e466d2f5761047e8201527f4e434e3569636b71434d6e414165564c4d4c655867356971386b365752585a5261049e8201527f326c337042393831427a73475a743225324256696c4342723954494a674b67786104be8201527f365542514446253242566a4b44714e7741414948386a6949664d6e75384b68666104de8201527f584b486f4e3348634134477245786842324155442f795a554d423857547579496104fe8201527f413444634f4b656434397939504249616e426967734d454e38556b30766c547661051e8201527f304a58334e394d795a75544d763573655357413525324238556538504465547261053e8201527f645467474973566d4e33635856586a6463795275633434385866664176506e7361055e8201527f3575324d4531722532426a4731703137767a3849704f416e483444427367793361057e8201527f512f54376b33646d2f3846334232377355694877464631414f6c683055646e4961059e8201527f4471494e5164506355393145786f2f346252696a6a5169704e4e307a4c646c7a6105be8201527f504438496f547449734c38717162746f4f5149514a5a567849705931315073536105de8201527f55533231397a4c585066642f507667765751346372464d2532425769755671706105fe8201527f645a6f4e6475645872632f4745324d4a36656e3575635746694763375274364f61061e8201527f487676354d674c2532427a44733578444277696141315433554877326b63594361063e8201527f312f55666453316645316d37763742346537653350574848786533594f32483561065e8201527f25324241504f5a7965503025324251506553425468793078713965363241486a61067e8201527f6141556842432f364144484c6f476f4f657636412532426867487369317a613861069e8201527f71355a4e4d716a596c575a4d713867354248445574495370574a73526f52544a6106be8201527f56613049305a3957546b5371564b73507a3464586a7648746449684c6e7670746106de8201527f554c4330753542567579414d544b4a513930594b5267546e5769476b6d7153456106fe8201527f714b6d7256685259674b6b335443686255573671456f45637665577a6859535461071e8201527f4c32484e706735452f6d7151393956564467763352475435586d33637a68754c61073e8201527f3972685864316132372f736c5130686959366a643739614f5a43746a6f52687261075e8201527f623136575676514b725734477a786a7869723238494d697a2f7155447973495761077e8201527f7037516a667765347a556437614a735651575179524c554b484b42577938577661079e8201527f45565333584d53353656337757644f442532424638757639645477496d4b722f6107be8201527f5064626d5763775176456641616a7975566a70784e32704f56635769336c38776107de8201527f454c2f6d395070646f55494536253242504b5838315041546d67654f304231736107fe8201527f47454825324261707a353466646d534a7a333741686635366a4c7739756e504561081e8201527f35644d4b3025324237544639563843435466523979664e7355493474557a464661083e8201527f42326e536e384b4f626a64446964554c7034494a6873777878595172595a643661085e8201527f4e76436e55394d445825324252654c6e4d546d6c315a453972306b5077334e3261087e8201527f6752253242736a4573596d4953706b356c31497333594e614a4b6f6e7a65703761089e8201527f56637354316e556b62347048774b5a41796b614b6f43504630506f6d456876496108be8201527f5758656e6f5a767836774f4b313070316c3274546858793850316555776473766108de8201527f53715157766f424d7473674851554a614774494273756861776450545a5378596108fe8201527f707257757734647a7231564755744449465871726f4d4d69597346783857695461091e8201527f336463574b6f376d50554c79715657413972305974524a4c626957766a6e4c2561093e8201527f324272633452646767624e516c514141613264306d616236364d48447074314361095e8201527f6477626b51436253375053445a4d7a3746724f51713165636153304a6c74644161097e8201527f6c44527941587173364130586247707748676b70367572557757416272464d3361099e8201527f75794d764e4b6c344d6c435548537950416d3931776144454a3559595148754a6109be8201527f4d32304b575251737637486b61334770686c533258444b714f4b4245554753316109de8201527f65306b63316f323449494166486c4449794278584a4a656767423369386174566109fe8201527f67434f3064444f5a484a57596a564c416a6a397137765673456e72684b374568610a1e8201527f4c75427a42586d4d674554634531636d61436976504b6f4a766670466c794935610a3e8201527f4d70584234454325324245672f596d303454787843354e6c73596b74646f5951610a5e8201527f55656c38624673456c3748345a36734377622f38626b347458574658504b6a71610a7e8201527f5462526e64336e4c5770394f784941706c664b586747684e6c72443462354a4c610a9e8201527f5a367055753441726756614d366561357844574244476f7a707a4641376e6747610abe8201527f74596334486141775269475576637653653652414177335a576b564f4667764b610ade8201527f46364955696c4d49394964715155345134585264484866736666517770313955610afe8201527f434a49306a5773725433356f5578303678507268473271364d4533554f306c63610b1e8201527f635a557354454351784a44527854444b6c334c4948722f6162546f73686c6466610b3e8201527f51786a364f57745273466e6966444373473674336b426f344e6d424a6d615556610b5e8201527f54636c794951414a4c6a6e723042365a3859464d6e396b397967703752727848610b7e8201527f36766877624a4e41654b4d554436353974386746514a4d5377652f434f624850610b9e8201527f467671484746554e5266253242737245663354584b42725a76676b6369396972610bbe8201527f426d63442f7458616754474358634e68432532424f3539754c706e6673796f71610bde8201527f4c53313238374552776d38666165564f6d3857634437386c5a36594232793938610bfe8201527f5a4c6c4d3972557264324c514e6c324956643454727376675139363079377573610c1e8201527f5965306854506170576a71726c2532425837784665424e54253242315a644a4a610c3e8201527f572532424678745737584e7774634e7a7761672532425256656a6d4a6839656d610c5e8201527f6c495a4b69694e63694b3849554f4d33556a4a376342554e5847505853326c68610c7e8201527f253242687770676f4836567348524f63764569723372585970344c7769435a77610c9e8201527f3176486c43623552314d68623564536e4f326d6e6f475a6f5846315765574757610cbe8201527f6d7a694a314a555534715072306e694a536c4e424331636b4b6d4a6657625877610cde8201527f5577757449547a456d6a776770776142753464525066746a2f4e384143526e64610cfe8201527f616b2f4641674b674c37305058577839767a6b59322532426d34355473496b4c610d1e8201527f3037616f70444e6f676830535262535a534f397a744657516a376e574c676275610d3e8201527f364325324254374b6a44715a3667456e5277674d78306b4c5a77797962514f76610d5e8201527f514130773054782f354a42722f63595a6453574f546a774446364e6f586b796a610d7e8201527f33566a484e4751494e76426a5a734a4a3377466141516d6f5a575a5970416961610d9e8201527f574f466e6e686455524176576b557a77693062677a5a4158796f445545714863610dbe8201527f57307069454c574f777168773365765478444957724e32495371525151454c41610dde8201527f4d32365334486c723548552f48784a43436844424a6b756b6341573856415430610dfe8201527f6770545a544b4e48677a444f7234314751656a4f34677a416e6b577077464752610e1e8201527f43334c625231787a4b434875365635694674674c704f384b51596d5965467868610e3e8201527f4c32643838736469506a2f76306b427a636c51637954735766324d6445394944610e5e8201527f386d5858576a72434b253242354532756e336e6976656973526e726971317548610e7e8201527f594d6a6a69694945304b6466674d6f3163476d6b557254624f30356732737633610e9e8201527f477673525971762f61457736375472644f705435567a4641364131417939634b610ebe8201527f6f44667762544a64445750524e57517354796a6d3772486249734b466b6f4f2f610ede8201527f5a4c4376735966785973337768534338614c49344b765677373773336e347a48610efe8201527f67697061634a6e435362463945727a53357069386343577655597a4f5064327a610f1e8201527f684a2f4750437a53684f453378596c634f3350796164586a54334f6b68706841610f3e8201527f58465853766865544e5355525446565641486f4a6d7949726b6a454b6f517746610f5e8201527f4730303554334158643935764e30446d336d427332786746546c253242513572610f7e8201527f73416a6e744768707a6f62643642374e7a52664e56653130446f4e5639343753610f9e8201527f59646f635252624776636d785456786f61367a717756376d416e773544314745610fbe8201527f5474327a48382532425476514256356e37672f32615768743979794e594c3974610fde8201527f4f42744167384846435945316d4e775432454232467538544968543776565241610ffe8201527f3461587a6e6b3670545a4e6779696f73747749364b654655374c696c7041253261101e8201527f42334234474a794277574d327062466a4876734a3747754f6f616b6a6d46746a61103e8201527f59344c6254396c323239253242453646374c4475577a744c6e333749786b386a61105e8201527f356c42564b33774c7369362f416641756f6a34396c4d6b5653545045396b704761107e8201527f64304c724555534a4941413070596c4178414d642f4e4f46776f4a446458466961109e8201527f307a4f5744422f54464a705666575642574f516274724a556230636c663369256110be8201527f3242575072446f596c65545674564f45306d36793564487444725551776f414c6110de8201527f7455523365585364444d4e785866656a594674764c626c726c4a7777484b2f456110fe8201527f6957504a616b32574b35386e684e6f4c6a615a55475841756f32656f5777464561111e8201527f66612f445334496958717246714779633348726939785132693243352f73357661113e8201527f7a424d30793777334d4473774d3759325247427172464d6778374f696325324261115e8201527f30497a736d5678617a5473305263666a324f3334532f525639503269486f427561117e8201527f6c4b49594244665a46654c53356439725379664a64536c67683268644d72324f61119e8201527f5552334b6e6c506e4f41785477314a384c4d325a776e4671765a745a4a6c78786111be8201527f343873776243743272316b664875443756624831326159383849437456734b786111de8201527f4b742f31726b616c42414d74782f6f6f6d43445059626b556f4c6344624b436a6111fe8201527f7675713953544467746a584744715735564b36686347654f46697a6a3643714c61121e8201527f4f49716b57783477733245504d444e7378253242613661533230384f39784c3061123e8201527f526146586f394241645530706e452532424c695359334b536f4a41525978646e61125e8201527f7a69545a4d706961442f3438496969393834446151357976656378414673735761127e8201527f792f686274696d63253242704c386b35796f70496d4a627948712f6138797a6c61129e8201527f6c37726f4f7a586d786d4163337459585363546b65734d6344324939315a36336112be8201527f6549312f394a627755716b36737863394b52677277574d414e6543314e6e39756112de8201527f4779775473706d5538712532426c5a6d43714d674153363662674841476a514b6112fe8201527f73754a334451416a5235346d356a4c7a5a616e546c62646530253242726e663461131e8201527f385a574138546c32673277414779427748516e3552322532424e6a726542677861133e8201527f626c734e46627554776d6862414a48737a2f72416f61764c4f34317874767a5961135e8201527f4768336e4c4a426b41506a7578424a445248333048426575385567436978464e61137e8201527f437951322f4b253242385157372f6530253242664f2532423436524e5730657961139e8201527f4c726f39446a5467704a4e4d3547385179306c54644f756d73773066715045696113be8201527f393646702532424830634d774e6f376a787a596d6e4e664d5a6d64506c7932706113de8201527f6f7132575065476d67507136474c78504e34536c4b486e7870624f69754c58516113fe8201527f75583155715031676a6f38426136536c55314f416d5267707a7531735444584a61141e8201527f50754d3338546f387130344c324e777970653837327777556741675a6c70386461143e8201527f6b5166397a38544d43624d6b596b3758484375333564375a5a41656f346b5a4b61145e8201527f68784953386945354c546a334c4f6976485a7268394a3870337a4c5a436a776361147e8201527f6970354452694b6e576e49664c33386b4a684d7452776a67553525324256726d61149e8201527f714b6c6739307a376a64732f4238444b646b464c76483353253242376f4838616114be8201527f6c445a6c626734533155583574434d445342324f364b756c7a41344b763067376114de8201527f314251643054464b7733685358696e62374e6c304258725873514e6376436b386114fe8201527f6d6f394f786965783559627a78564e2f6b3738336f48545a495777393079495a61151e8201527f777672697164475473586e54384965705437597946434f4a6741395a3042794961153e8201527f455956735478522f6b73616b324268376f4b767034766e695530364d57317a4261155e8201527f4672746568647a306b6b587951786a426d7965645636644d596545386146787461157e8201527f6575777355466136466c6c54446c716430707a525a77473663467266574d627061159e8201527f384738587a6a66624d253242354658657076356f457273696c363458783663376115be8201527f5841576275696d3666387347494d58666f334a6971476b703333376854536a676115de8201527f65636862364f42472f327a31376a6f6d4469476d253242476c623146553069656115fe8201527f6e7552796977654c576767447a6d4655765545556a5a6f377356544877684f4661161e8201527f504d6b4e737146423977796d6b45307639666d7477453854377135384e594f3761163e8201527f787534623833766e46766c35755378446c472532426b4f51675249644f346a6761165e8201527f7a786a53486a4b4c7332742f6c684f647771766131415744437072763344345361167e8201527f34523741625934544362664b4637744265363554343551347a7a49714433316161169e8201527f79797557716a692532424636585337535439483943314f342f694b366b4775766116be8201527f6b512f664e3537487837456533373435622f76766e2f62482f58253242392f256116de8201527f32426762656d684f416d49705576755157757344764b517578394a44564e734b6116fe8201527f673651636d6b73515341445530346347524c523768466f5a326337785545664761171e8201527f253242776b755459474d764c6a422f6550634936416847686e5735717a45416961173e8201527f4a586377564545775869654e70536c317a6a457253253242435325324248634c61175e8201527f6f52506d7661324d6767412f69794c67536f544a555767733442794149514f3061177e8201527f4f6f705a487656627a6844494c65557155677a7a48492f667950474e7879777361179e8201527f6f796c6865534639577662795363336b4544716b32415636436c4364635535536117be8201527f6e6c4e6e4963394b794d63384c79622532423867484f4a795173466c4c6250526117de8201527f796d6d374a42743349545a544162314732444252496b514b51705451396939626117fe8201527f3665435353387a4d366161525364544b5657524d336663454a4c644b61746e7361181e8201527f724959774e4a55253242733048364461757832775a35686733706c653042474861183e8201527f756b316b4543734859446461496d4b7025324233463542317859763763486b7161185e8201527f644475306a4b645273657a3531376d63563641685148346931484e3173766c6a61187e8201527f5248366845454672682532426e72726d47316e33307a4d346749776d694d774561189e8201527f624b6842545564423141486f582532424b6741517a4f48543946494f71436b526118be8201527f4e4e623273397170496943534f753167576868497343564a73765771457175356118de8201527f47624a514b4e6a61427465394c4f69676368414a7665475773394332323033766118fe8201527f6f6e476c6b77725251323464646732796345646157554456734441785548734961191e8201527f77773665615234464665336d4a416b66426d5a6452395264774a485a6d47645261193e8201527f7950436a706a627a31712f584a34534949446b66384b4b6e6e32456c4b6d794c61195e8201527f69573442513836733151554b2f76426867524e776548766c5968687a7238706361197e8201527f67704b4b6d6f61576a7036426b594f48446c7835734b5647336365474539657661199e8201527f506e773563646667454242676f554946536238587632504553314772446a78456119be8201527f69524b6b697846716a54704d6d544b6b693148726a7a354368517155717845716119de8201527f544c6c4b6c53715571314772547231476a527130717846717a62744f6e5347656119fe8201527f3668374a6d627a4968355a6544696c315a58536a7430774375616b336c6e476f611a1e8201527f5655506f53734e663337394b326a6274716d44674d69485a42665a6c68324839611a3e8201527f75773738495469314a466a585653662f4336634f55667a346f30644178305447611a5e8201527f777448446863666a3443516d49694531444d5a42546b6c4e5a557065566f614f611a7e8201527f6e717633733234314e50503965766574594768435a50576a4979747332706173611a9e8201527f436a25324270556a54596c336b615574374f744b4a6136355850396d356e6367611abe8201527f364e686a685a587032762532426d57724341545a754a303368316b6a55756976611ade8201527f5067596e6a6e35744b4a4f6b326e6362703251414559585a69304b496d50356b611afe8201527f744961466e366b5a397743253237253239253230666f726d6174253238253237611b1e8201527f776f666632253237253239253342666f6e742d7765696768742533412532306e611b3e8201527f6f726d616c253342666f6e742d7374796c652533412532306e6f726d616c2533611b5e8201527f42666f6e742d646973706c617925334125323073776170253342253744746578611b7e8201527f74253230253742666f6e742d66616d696c792533412532302532375072657373611b9e8201527f2532305374617274253230325025323725334266696c6c253341253230776869611bbe8201527f74652537442e76616c7565253230253742666f6e742d73697a65253341253230611bde8201527f313070782533422537442e6e616d65253230253742666f6e742d73697a652533611bfe8201527f412532303470782533422537442533432f7374796c652533452533432f646566611c1e8201527f7325334525334372656374253230776964746825334425323738392532372532611c3e8201527f30686569676874253344253237353525323725323066696c6c25334425323762611c5e8201527f6c61636b2532372532302f253345253343726563742532307825334425323735611c7e8201527f2e3525323725323079253344253237352e352532372532307769647468253344611c9e8201527f2532373738253237253230686569676874253344253237343425323725323066611cbe8201527f696c6c2533442532372532333030303046462532372532302f25334525334374611cde8201527f657874253230746578742d616e63686f722533442532376d6964646c65253237611cfe8201527f2532307825334425323734342e35253237253230792533442532373333253237611d1e8201527f253230636c61737325334425323776616c756525323725334500000000000000611d3e820152612ba5612b9e6129f5611d5784018a61055b565b7f2533432f746578742533452533437265637425323078253344253237352e352581527f323725323079253344253237352e35253237253230776964746825334425323760208201527f373825323725323068656967687425334425323734342532372532307374726f60408201527f6b652533442532372532334646344630412532372532307374726f6b652d776960608201527f647468253344253237332532372532302f25334525334372656374253230782560808201527f334425323733302532372532307925334425323734352e35253237253230776960a08201527f647468253344253237353825323725323068656967687425334425323738253260c08201527f3725323066696c6c2533442532372532334646344630412532372532302f253360e08201527f4525334374657874253230746578742d616e63686f72253344253237656e64256101008201527f32372532307825334425323738372532372532307925334425323735322532376101208201527f253230636c6173732533442532376e616d6525323725334500000000000000006101408201526101580190565b86886105e3565b602160f81b81529050612bbb600182018561055b565b7f2533432f746578742533452533432f737667253345227d00000000000000000081526017019a995050505050505050505056fea26469706673582212206a2c00c13ddb4f1bcd7ee36e36f0c874d7d9dadcf38306eab3610b5a6e7af83464736f6c63430008110033", + "nonce": "0x2" + }, + "additionalContracts": [], + "isFixedGasLimit": false + }, + { + "hash": "0x01c4d47aa55565014054bfb072f2865579386bec1a000c0d89d835848a2b9bea", + "transactionType": "CREATE", + "contractName": null, + "contractAddress": "0xCf7Ed3AccA5a467e9e704C703E8D87F634fB0Fc9", + "function": null, + "arguments": null, + "transaction": { + "type": "0x00", + "from": "0xf39fd6e51aad88f6f4ce6ab8827279cfffb92266", + "gas": "0x42230", + "value": "0x0", + "data": "0x608060405234801561001057600080fd5b506102cf806100206000396000f3fe608060405234801561001057600080fd5b506004361061004c5760003560e01c80630194db8e14610051578063072bdcc214610076578063a391c15b14610089578063b67d77c51461009c575b600080fd5b61006461005f366004610160565b6100af565b60405190815260200160405180910390f35b610064610084366004610160565b6100ef565b61006461009736600461021e565b610129565b6100646100aa36600461021e565b61013e565b600080805b83518110156100e8578381815181106100cf576100cf610240565b60200260200101518201915080806001019150506100b4565b5092915050565b60006001815b83518110156100e85783818151811061011057610110610240565b60200260200101518202915080806001019150506100f5565b60006101358284610256565b90505b92915050565b60006101358284610278565b634e487b7160e01b600052604160045260246000fd5b6000602080838503121561017357600080fd5b823567ffffffffffffffff8082111561018b57600080fd5b818501915085601f83011261019f57600080fd5b8135818111156101b1576101b161014a565b8060051b604051601f19603f830116810181811085821117156101d6576101d661014a565b6040529182528482019250838101850191888311156101f457600080fd5b938501935b82851015610212578435845293850193928501926101f9565b98975050505050505050565b6000806040838503121561023157600080fd5b50508035926020909101359150565b634e487b7160e01b600052603260045260246000fd5b60008261027357634e487b7160e01b600052601260045260246000fd5b500490565b8181038181111561013857634e487b7160e01b600052601160045260246000fdfea2646970667358221220fcdef23ba4219270ddb3ab764e22a87e229c05e6f1dfc4eeea983fa1a1dac91f64736f6c63430008110033", + "nonce": "0x3" + }, + "additionalContracts": [], + "isFixedGasLimit": false + }, + { + "hash": "0x0775f2801157d089fd80120b6fc22f4254881c3fe539e6fb95aa6f12b8d5f7aa", + "transactionType": "CREATE", + "contractName": "Evmsheet", + "contractAddress": "0xDc64a140Aa3E981100a9becA4E685f962f0cF6C9", + "function": null, + "arguments": [ + "0x9fE46736679d2D9a65F0992F2272dE9f3c7fa6e0", + "10000000000000000" + ], + "transaction": { + "type": "0x00", + "from": "0xf39fd6e51aad88f6f4ce6ab8827279cfffb92266", + "gas": "0x34bf99", + "value": "0x0", + "data": "0x608060405234801561001057600080fd5b50604051612ed9380380612ed983398101604081905261002f916100b1565b61003833610061565b600280546001600160a01b0319166001600160a01b0393909316929092179091556001556100eb565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b600080604083850312156100c457600080fd5b82516001600160a01b03811681146100db57600080fd5b6020939093015192949293505050565b612ddf806100fa6000396000f3fe608060405260043610620000a95760003560e01c80638da5cb5b116200006c5780638da5cb5b146200016d578063ab2fa65a146200018d578063ae28505e14620001b4578063c56c4cf114620001d9578063f2fde38b14620001fb578063f52be2a2146200022057600080fd5b806303fb31e814620000ae5780631164c83d14620000d5578063145e414714620000ec5780635787cacb146200012e578063715018a61462000155575b600080fd5b348015620000bb57600080fd5b50620000d3620000cd36600462000778565b62000247565b005b620000d3620000e6366004620007e9565b62000273565b348015620000f957600080fd5b50620001116200010b36600462000864565b620004b2565b6040516001600160a01b0390911681526020015b60405180910390f35b3480156200013b57600080fd5b50620001466200054f565b60405162000125919062000891565b3480156200016257600080fd5b50620000d3620005b3565b3480156200017a57600080fd5b506000546001600160a01b031662000111565b3480156200019a57600080fd5b50620001a5620005cb565b604051620001259190620008e0565b348015620001c157600080fd5b5062000111620001d336600462000930565b620005f7565b348015620001e657600080fd5b5060025462000111906001600160a01b031681565b3480156200020857600080fd5b50620000d36200021a36600462000778565b62000622565b3480156200022d57600080fd5b506200023860015481565b60405190815260200162000125565b62000251620006a1565b600280546001600160a01b0319166001600160a01b0392909216919091179055565b60015434146200029d5760405163723a79e360e11b81523460048201526024015b60405180910390fd5b600060405180602001620002b1906200074d565b6020820181038252601f19601f8201166040525090506000828251602084016000f56002546040516356d3163d60e01b81526001600160a01b0391821660048201529192508216906356d3163d90602401600060405180830381600087803b1580156200031d57600080fd5b505af115801562000332573d6000803e3d6000fd5b505060405163c47f002760e01b81526001600160a01b038416925063c47f0027915062000366908a908a906004016200094a565b600060405180830381600087803b1580156200038157600080fd5b505af115801562000396573d6000803e3d6000fd5b5050604051635c26412360e11b81526001600160a01b038416925063b84c82469150620003ca90889088906004016200094a565b600060405180830381600087803b158015620003e557600080fd5b505af1158015620003fa573d6000803e3d6000fd5b505060405163f2fde38b60e01b81523260048201526001600160a01b038416925063f2fde38b9150602401600060405180830381600087803b1580156200044057600080fd5b505af115801562000455573d6000803e3d6000fd5b5050600380546001810182556000919091527fc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b0180546001600160a01b0319166001600160a01b0394909416939093179092555050505050505050565b600060ff60f81b838360405180602001620004cd906200074d565b6020820181038252601f19601f82011660405250805190602001206040516020016200053094939291906001600160f81b031994909416845260609290921b6bffffffffffffffffffffffff191660018401526015830152603582015260550190565b60408051601f1981840301815291905280516020909101209392505050565b60606003805480602002602001604051908101604052809291908181526020018280548015620005a957602002820191906000526020600020905b81546001600160a01b031681526001909101906020018083116200058a575b5050505050905090565b620005bd620006a1565b620005c96000620006fd565b565b606060405180602001620005df906200074d565b601f1982820381018352601f90910116604052919050565b600381815481106200060857600080fd5b6000918252602090912001546001600160a01b0316905081565b6200062c620006a1565b6001600160a01b038116620006935760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b606482015260840162000294565b6200069e81620006fd565b50565b6000546001600160a01b03163314620005c95760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015260640162000294565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b612430806200097a83390190565b80356001600160a01b03811681146200077357600080fd5b919050565b6000602082840312156200078b57600080fd5b62000796826200075b565b9392505050565b60008083601f840112620007b057600080fd5b50813567ffffffffffffffff811115620007c957600080fd5b602083019150836020828501011115620007e257600080fd5b9250929050565b6000806000806000606086880312156200080257600080fd5b853567ffffffffffffffff808211156200081b57600080fd5b6200082989838a016200079d565b909750955060208801359150808211156200084357600080fd5b5062000852888289016200079d565b96999598509660400135949350505050565b600080604083850312156200087857600080fd5b62000883836200075b565b946020939093013593505050565b6020808252825182820181905260009190848201906040850190845b81811015620008d45783516001600160a01b031683529284019291840191600101620008ad565b50909695505050505050565b600060208083528351808285015260005b818110156200090f57858101830151858201604001528201620008f1565b506000604082860101526040601f19601f8301168501019250505092915050565b6000602082840312156200094357600080fd5b5035919050565b60208152816020820152818360408301376000818301604090810191909152601f909201601f1916010191905056fe60806040523480156200001157600080fd5b50604051806040016040528060078152602001660536865657420360cc1b815250604051806040016040528060048152602001630534854360e41b81525062000069620000636200008f60201b60201c565b62000093565b600162000077838262000188565b50600262000086828262000188565b50505062000254565b3390565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b634e487b7160e01b600052604160045260246000fd5b600181811c908216806200010e57607f821691505b6020821081036200012f57634e487b7160e01b600052602260045260246000fd5b50919050565b601f8211156200018357600081815260208120601f850160051c810160208610156200015e5750805b601f850160051c820191505b818110156200017f578281556001016200016a565b5050505b505050565b81516001600160401b03811115620001a457620001a4620000e3565b620001bc81620001b58454620000f9565b8462000135565b602080601f831160018114620001f45760008415620001db5750858301515b600019600386901b1c1916600185901b1785556200017f565b600085815260208120601f198616915b82811015620002255788860151825594840194600190910190840162000204565b5085821015620002445787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b6121cc80620002646000396000f3fe608060405234801561001057600080fd5b50600436106102275760003560e01c8063715018a611610130578063b85d8b85116100b8578063cf0983981161007c578063cf09839814610512578063cfbe95d814610535578063df4ca20614610556578063e985e9c514610576578063f2fde38b146105a457600080fd5b8063b85d8b85146104a4578063b88d4fde146104ce578063b8c368ec146104e1578063c47f0027146104ec578063c87b56dd146104ff57600080fd5b806395d89b41116100ff57806395d89b4114610439578063a22cb46514610441578063b46ebb1214610454578063b6d658e114610467578063b84c82461461049157600080fd5b8063715018a6146103fa578063768d5029146104025780638ada6b0f146104155780638da5cb5b1461042857600080fd5b80631b06443c116101b35780634f6ccce7116101825780634f6ccce71461038157806356d3163d146103a15780636352211e146103b45780636a0abc74146103c757806370a08231146103e757600080fd5b80631b06443c14610335578063206848f61461034857806323b872dd1461035b57806342842e0e1461036e57600080fd5b8063081812fc116101fa578063081812fc146102a1578063095ea7b3146102e2578063172b9eed146102f757806318160ddd1461030a5780631941fd141461031357600080fd5b806301ffc9a71461022c57806302f3c4c91461025457806306fdde03146102745780630715a24a1461027c575b600080fd5b61023f61023a36600461176a565b6105b7565b60405190151581526020015b60405180910390f35b610267610262366004611861565b610609565b60405161024b9190611951565b610267610638565b6102936fffffffffffffffffffffffffffffffff81565b60405190815260200161024b565b6102ca6102af366004611964565b6005602052600090815260409020546001600160a01b031681565b6040516001600160a01b03909116815260200161024b565b6102f56102f036600461197d565b6106c6565b005b6102676103053660046119a9565b6107ad565b61029360075481565b610326610321366004611964565b610875565b60405161024b939291906119de565b6102ca610343366004611a0e565b61092a565b610326610356366004611964565b6109e3565b6102f5610369366004611a2b565b610ae1565b6102f561037c366004611a2b565b610ca8565b61029361038f366004611964565b60086020526000908152604090205481565b6102f56103af366004611a0e565b610da0565b6102ca6103c2366004611964565b610dca565b6103da6103d53660046119a9565b610e1c565b60405161024b9190611a6c565b6102936103f5366004611a0e565b610e60565b6102f5610ec3565b6102f5610410366004611af9565b610ed7565b6009546102ca906001600160a01b031681565b6000546001600160a01b03166102ca565b610267611035565b6102f561044f366004611b63565b611042565b610267610462366004611964565b6110ae565b61047a610475366004611964565b611258565b60408051921515835260208301919091520161024b565b6102f561049f366004611ba1565b611275565b6104b56104b2366004611964565b90565b6040516001600160e01b0319909116815260200161024b565b6102f56104dc366004611be3565b6112c6565b6102ca600160801b81565b6102f56104fa366004611ba1565b6113ae565b61026761050d366004611964565b6113ff565b61023f610520366004611a0e565b600160801b6001600160a01b03919091161090565b61023f610543366004611861565b516001600160a01b0316600160801b1490565b610569610564366004611964565b6114c9565b60405161024b9190611c16565b61023f610584366004611c4d565b600660209081526000928352604080842090915290825290205460ff1681565b6102f56105b2366004611a0e565b611526565b60006301ffc9a760e01b6001600160e01b0319831614806105e857506380ac58cd60e01b6001600160e01b03198316145b806106035750635b5e139f60e01b6001600160e01b03198316145b92915050565b6060816020015160405160200161062291815260200190565b6040516020818303038152906040529050919050565b6001805461064590611c7b565b80601f016020809104026020016040519081016040528092919081815260200182805461067190611c7b565b80156106be5780601f10610693576101008083540402835291602001916106be565b820191906000526020600020905b8154815290600101906020018083116106a157829003601f168201915b505050505081565b6000818152600360205260409020546001600160a01b03163381148061070f57506001600160a01b038116600090815260066020908152604080832033845290915290205460ff165b6107515760405162461bcd60e51b815260206004820152600e60248201526d1393d517d055551213d49256915160921b60448201526064015b60405180910390fd5b60008281526005602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b606060006107ba83610e1c565b9050606060005b825181101561086d576000806107ef8584815181106107e2576107e2611cb5565b6020026020010151611258565b9150915081156108335783610803826110ae565b61080c90611ccb565b60405160200161081d929190611cef565b6040516020818303038152906040529350610858565b6040516108469085908390602001611cef565b60405160208183030381529060405293505b5050808061086590611d27565b9150506107c1565b509392505050565b600a602052600090815260409020805460018201546002830180546001600160a01b039093169391926108a790611c7b565b80601f01602080910402602001604051908101604052809291908181526020018280546108d390611c7b565b80156109205780601f106108f557610100808354040283529160200191610920565b820191906000526020600020905b81548152906001019060200180831161090357829003601f168201915b5050505050905083565b6000600160801b6001600160a01b03831610156109da576000610955836001600160a01b03166110ae565b604051632d737e4960e21b8152909150735fbdb2315678afecb367f032d93f642f64180aa39063b5cdf92490610992908490600090600401611d40565b602060405180830381865af41580156109af573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906109d39190611d62565b9392505050565b5090565b919050565b60008181526003602052604081205481906060906001600160a01b0316610a1057600160801b9250610a2b565b6000848152600a60205260409020546001600160a01b031692505b6000848152600a60205260409020600181015460029091018054859291908190610a5490611c7b565b80601f0160208091040260200160405190810160405280929190818152602001828054610a8090611c7b565b8015610acd5780601f10610aa257610100808354040283529160200191610acd565b820191906000526020600020905b815481529060010190602001808311610ab057829003601f168201915b505050505090509250925092509193909250565b6000818152600360205260409020546001600160a01b03848116911614610b375760405162461bcd60e51b815260206004820152600a60248201526957524f4e475f46524f4d60b01b6044820152606401610748565b6001600160a01b038216610b815760405162461bcd60e51b81526020600482015260116024820152701253959053125117d49150d25412515395607a1b6044820152606401610748565b336001600160a01b0384161480610bbb57506001600160a01b038316600090815260066020908152604080832033845290915290205460ff165b80610bdc57506000818152600560205260409020546001600160a01b031633145b610c195760405162461bcd60e51b815260206004820152600e60248201526d1393d517d055551213d49256915160921b6044820152606401610748565b6001600160a01b0380841660008181526004602090815260408083208054600019019055938616808352848320805460010190558583526003825284832080546001600160a01b03199081168317909155600590925284832080549092169091559251849392917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b610cb3838383610ae1565b6001600160a01b0382163b1580610d5c5750604051630a85bd0160e11b8082523360048301526001600160a01b03858116602484015260448301849052608060648401526000608484015290919084169063150b7a029060a4016020604051808303816000875af1158015610d2c573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610d509190611d7b565b6001600160e01b031916145b610d9b5760405162461bcd60e51b815260206004820152601060248201526f155394d0519157d49150d2541251539560821b6044820152606401610748565b505050565b610da861159f565b600980546001600160a01b0319166001600160a01b0392909216919091179055565b6000818152600360205260409020546001600160a01b0316806109de5760405162461bcd60e51b815260206004820152600a6024820152691393d517d3525395115160b21b6044820152606401610748565b60608082516040519150602081048252602082016020850160005b83811015610e4f578181015183820152602001610e37565b505050810160200160405292915050565b60006001600160a01b038216610ea75760405162461bcd60e51b815260206004820152600c60248201526b5a45524f5f4144445245535360a01b6044820152606401610748565b506001600160a01b031660009081526004602052604090205490565b610ecb61159f565b610ed560006115f9565b565b6000858152600360205260409020546001600160a01b0316610f2f57610efd3286611649565b60078054600090815260086020526040812087905581546001929190610f24908490611d98565b90915550610f889050565b6000858152600360205260409020546001600160a01b03163214610f8857600085815260036020526040908190205490516324f3f02560e21b81526001600160a01b039091166004820152326024820152604401610748565b6040518060600160405280856001600160a01b0316815260200184815260200183838080601f0160208091040260200160405190810160405280939291908181526020018383808284376000920182905250939094525050878152600a6020908152604091829020845181546001600160a01b0319166001600160a01b0390911617815590840151600182015590830151909150600282019061102b9082611df9565b5050505050505050565b6002805461064590611c7b565b3360008181526006602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b6000818152600a6020908152604080832081516060818101845282546001600160a01b0316825260018301549482019490945260028201805494959491938401916110f890611c7b565b80601f016020809104026020016040519081016040528092919081815260200182805461112490611c7b565b80156111715780601f1061114657610100808354040283529160200191611171565b820191906000526020600020905b81548152906001019060200180831161115457829003601f168201915b505050505081525050905061119381516001600160a01b0316600160801b1490565b156111a1576109d381610609565b60006111b0826000015161092a565b905060006111bf836020015190565b905060006111d084604001516107ad565b90506000836001600160a01b031683836040516020016111f1929190611eb9565b60408051601f198184030181529082905261120b91611eea565b600060405180830381855afa9150503d8060008114611246576040519150601f19603f3d011682016040523d82523d6000602084013e61124b565b606091505b5098975050505050505050565b600080611266600284611f06565b60019081149493901c92915050565b61127d61159f565b7f8dca0271872d00b3de3abafca544c52fcd7d512dd852c9894fa2c118ac759a93600283836040516112b193929190611fce565b60405180910390a16002610d9b828483611ffe565b6112d1858585610ae1565b6001600160a01b0384163b15806113685750604051630a85bd0160e11b808252906001600160a01b0386169063150b7a02906113199033908a908990899089906004016120be565b6020604051808303816000875af1158015611338573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061135c9190611d7b565b6001600160e01b031916145b6113a75760405162461bcd60e51b815260206004820152601060248201526f155394d0519157d49150d2541251539560821b6044820152606401610748565b5050505050565b6113b661159f565b7fb65b7b5ea384affd30f77f842e057d29dd1b13f133adf69a724a8105b164ab75600183836040516113ea93929190611fce565b60405180910390a16001610d9b828483611ffe565b6000818152600360205260409020546060906001600160a01b03168061143b57604051630243d1a960e21b815260048101849052602401610748565b6000611446846110ae565b6009546040516328de0f2f60e01b81529192506001600160a01b0316906328de0f2f9061147c90879085906001906004016120fd565b600060405180830381865afa158015611499573d6000803e3d6000fd5b505050506040513d6000823e601f3d908101601f191682016040526114c19190810190612128565b949350505050565b604080516060808201835260008083526020830181905292820152906114ee836110ae565b6040805160608101825285815260009586526003602090815295829020546001600160a01b0316958101959095528401525090919050565b61152e61159f565b6001600160a01b0381166115935760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610748565b61159c816115f9565b50565b6000546001600160a01b03163314610ed55760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610748565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b6001600160a01b0382166116935760405162461bcd60e51b81526020600482015260116024820152701253959053125117d49150d25412515395607a1b6044820152606401610748565b6000818152600360205260409020546001600160a01b0316156116e95760405162461bcd60e51b815260206004820152600e60248201526d1053149150511657d3525395115160921b6044820152606401610748565b6001600160a01b038216600081815260046020908152604080832080546001019055848352600390915280822080546001600160a01b0319168417905551839291907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b6001600160e01b03198116811461159c57600080fd5b60006020828403121561177c57600080fd5b81356109d381611754565b634e487b7160e01b600052604160045260246000fd5b604051601f8201601f1916810167ffffffffffffffff811182821017156117c6576117c6611787565b604052919050565b6001600160a01b038116811461159c57600080fd5b600067ffffffffffffffff8211156117fd576117fd611787565b50601f01601f191660200190565b600082601f83011261181c57600080fd5b813561182f61182a826117e3565b61179d565b81815284602083860101111561184457600080fd5b816020850160208301376000918101602001919091529392505050565b60006020828403121561187357600080fd5b813567ffffffffffffffff8082111561188b57600080fd5b908301906060828603121561189f57600080fd5b6040516060810181811083821117156118ba576118ba611787565b60405282356118c8816117ce565b8152602083810135908201526040830135828111156118e657600080fd5b6118f28782860161180b565b60408301525095945050505050565b60005b8381101561191c578181015183820152602001611904565b50506000910152565b6000815180845261193d816020860160208601611901565b601f01601f19169290920160200192915050565b6020815260006109d36020830184611925565b60006020828403121561197657600080fd5b5035919050565b6000806040838503121561199057600080fd5b823561199b816117ce565b946020939093013593505050565b6000602082840312156119bb57600080fd5b813567ffffffffffffffff8111156119d257600080fd5b6114c18482850161180b565b60018060a01b0384168152826020820152606060408201526000611a056060830184611925565b95945050505050565b600060208284031215611a2057600080fd5b81356109d3816117ce565b600080600060608486031215611a4057600080fd5b8335611a4b816117ce565b92506020840135611a5b816117ce565b929592945050506040919091013590565b6020808252825182820181905260009190848201906040850190845b81811015611aa457835183529284019291840191600101611a88565b50909695505050505050565b60008083601f840112611ac257600080fd5b50813567ffffffffffffffff811115611ada57600080fd5b602083019150836020828501011115611af257600080fd5b9250929050565b600080600080600060808688031215611b1157600080fd5b853594506020860135611b23816117ce565b935060408601359250606086013567ffffffffffffffff811115611b4657600080fd5b611b5288828901611ab0565b969995985093965092949392505050565b60008060408385031215611b7657600080fd5b8235611b81816117ce565b915060208301358015158114611b9657600080fd5b809150509250929050565b60008060208385031215611bb457600080fd5b823567ffffffffffffffff811115611bcb57600080fd5b611bd785828601611ab0565b90969095509350505050565b600080600080600060808688031215611bfb57600080fd5b8535611c06816117ce565b94506020860135611b23816117ce565b602081528151602082015260018060a01b036020830151166040820152600060408301516060808401526114c16080840182611925565b60008060408385031215611c6057600080fd5b8235611c6b816117ce565b91506020830135611b96816117ce565b600181811c90821680611c8f57607f821691505b602082108103611caf57634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052603260045260246000fd5b80516020808301519190811015611caf5760001960209190910360031b1b16919050565b60008351611d01818460208801611901565b9190910191825250602001919050565b634e487b7160e01b600052601160045260246000fd5b600060018201611d3957611d39611d11565b5060010190565b604081526000611d536040830185611925565b90508260208301529392505050565b600060208284031215611d7457600080fd5b5051919050565b600060208284031215611d8d57600080fd5b81516109d381611754565b8082018082111561060357610603611d11565b601f821115610d9b57600081815260208120601f850160051c81016020861015611dd25750805b601f850160051c820191505b81811015611df157828155600101611dde565b505050505050565b815167ffffffffffffffff811115611e1357611e13611787565b611e2781611e218454611c7b565b84611dab565b602080601f831160018114611e5c5760008415611e445750858301515b600019600386901b1c1916600185901b178555611df1565b600085815260208120601f198616915b82811015611e8b57888601518255948401946001909101908401611e6c565b5085821015611ea95787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b6001600160e01b0319831681528151600090611edc816004850160208701611901565b919091016004019392505050565b60008251611efc818460208701611901565b9190910192915050565b600082611f2357634e487b7160e01b600052601260045260246000fd5b500690565b60008154611f3581611c7b565b808552602060018381168015611f525760018114611f6c57611f9a565b60ff1985168884015283151560051b880183019550611f9a565b866000528260002060005b85811015611f925781548a8201860152908301908401611f77565b890184019650505b505050505092915050565b81835281816020850137506000828201602090810191909152601f909101601f19169091010190565b604081526000611fe16040830186611f28565b8281036020840152611ff4818587611fa5565b9695505050505050565b67ffffffffffffffff83111561201657612016611787565b61202a836120248354611c7b565b83611dab565b6000601f84116001811461205e57600085156120465750838201355b600019600387901b1c1916600186901b1783556113a7565b600083815260209020601f19861690835b8281101561208f578685013582556020948501946001909201910161206f565b50868210156120ac5760001960f88860031b161c19848701351681555b505060018560011b0183555050505050565b6001600160a01b03868116825285166020820152604081018490526080606082018190526000906120f29083018486611fa5565b979650505050505050565b8381526060602082015260006121166060830185611925565b8281036040840152611ff48185611f28565b60006020828403121561213a57600080fd5b815167ffffffffffffffff81111561215157600080fd5b8201601f8101841361216257600080fd5b805161217061182a826117e3565b81815285602083850101111561218557600080fd5b611a0582602083016020860161190156fea26469706673582212203fc548aa4f22e6f4c01757ba3f2e0383630418b3d17601758718ab19a4d9918d64736f6c63430008110033a26469706673582212207932e8c793f9a96d9606a8907a6671f54c0fb1ed5a763048e13b429274e7706c64736f6c634300081100330000000000000000000000009fe46736679d2d9a65f0992f2272de9f3c7fa6e0000000000000000000000000000000000000000000000000002386f26fc10000", + "nonce": "0x4" + }, + "additionalContracts": [], + "isFixedGasLimit": false + } + ], + "receipts": [ + { + "transactionHash": "0x019699b0afd0e031553b8c04c6d64524ce8493df9d9d4f5b93bfcad9a7eb3fef", + "transactionIndex": "0x0", + "blockHash": "0x04913cf006cae86f9dd397243648cf052130a7731966a3e45785c7c9fb1938d8", + "blockNumber": "0x18", + "from": "0xf39Fd6e51aad88F6F4ce6aB8827279cffFb92266", + "to": null, + "cumulativeGasUsed": "0xf4240", + "gasUsed": "0x7a120", + "contractAddress": "0xe7f1725E7734CE288F8367e1Bb143E90bb3F0512", + "logs": [], + "status": "0x1", + "logsBloom": "0x00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", + "type": "0x0", + "effectiveGasPrice": "0xf4240" + }, + { + "transactionHash": "0x00032739c8b97aa7ff5e83af7ddff37129a78e444ebe81a043349037f7894835", + "transactionIndex": "0x0", + "blockHash": "0x04963a266d87fcace1832425391c21459dda6d183ace225f75014d45937ae240", + "blockNumber": "0x19", + "from": "0xf39Fd6e51aad88F6F4ce6aB8827279cffFb92266", + "to": null, + "cumulativeGasUsed": "0xf4240", + "gasUsed": "0x7a120", + "contractAddress": "0x9fE46736679d2D9a65F0992F2272dE9f3c7fa6e0", + "logs": [], + "status": "0x1", + "logsBloom": "0x00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", + "type": "0x0", + "effectiveGasPrice": "0xf4240" + }, + { + "transactionHash": "0x007063f5d480fa3ad4a33466c2243fbeed7e78c3199bba8cb97e4f7b53f27a2a", + "transactionIndex": "0x0", + "blockHash": "0x05596bca454601e2e7badf7fc3f33313b6e59b11bb46f9c4fd6b2d7447ec7531", + "blockNumber": "0x1a", + "from": "0xf39Fd6e51aad88F6F4ce6aB8827279cffFb92266", + "to": null, + "cumulativeGasUsed": "0xf4240", + "gasUsed": "0x7a120", + "contractAddress": "0xCf7Ed3AccA5a467e9e704C703E8D87F634fB0Fc9", + "logs": [], + "status": "0x1", + "logsBloom": "0x00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", + "type": "0x0", + "effectiveGasPrice": "0xf4240" + }, + { + "transactionHash": "0x01c4d47aa55565014054bfb072f2865579386bec1a000c0d89d835848a2b9bea", + "transactionIndex": "0x0", + "blockHash": "0x01f1fef5299cd70217a5f8c10d094fb340405f7fe0945d3f7a8b916be69ee296", + "blockNumber": "0x1b", + "from": "0xf39Fd6e51aad88F6F4ce6aB8827279cffFb92266", + "to": null, + "cumulativeGasUsed": "0xf4240", + "gasUsed": "0x7a120", + "contractAddress": "0xDc64a140Aa3E981100a9becA4E685f962f0cF6C9", + "logs": [], + "status": "0x1", + "logsBloom": "0x00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", + "type": "0x0", + "effectiveGasPrice": "0xf4240" + }, + { + "transactionHash": "0x0775f2801157d089fd80120b6fc22f4254881c3fe539e6fb95aa6f12b8d5f7aa", + "transactionIndex": "0x0", + "blockHash": "0x049cc5a5fe7a32a77ac223f1484e997eb5dd149d437917692ee86ada8b187aa1", + "blockNumber": "0x1c", + "from": "0xf39Fd6e51aad88F6F4ce6aB8827279cffFb92266", + "to": null, + "cumulativeGasUsed": "0xf4240", + "gasUsed": "0x7a120", + "contractAddress": "0x5FC8d32690cc91D4c39d9d3abcBD16989F875707", + "logs": [ + { + "address": "0x5FC8d32690cc91D4c39d9d3abcBD16989F875707", + "topics": [ + "0x8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0", + "0x0000000000000000000000000000000000000000000000000000000000000000", + "0x000000000000000000000000f39fd6e51aad88f6f4ce6ab8827279cfffb92266" + ], + "data": "0x", + "blockHash": "0x049cc5a5fe7a32a77ac223f1484e997eb5dd149d437917692ee86ada8b187aa1", + "blockNumber": "0x1c", + "transactionHash": "0x0775f2801157d089fd80120b6fc22f4254881c3fe539e6fb95aa6f12b8d5f7aa", + "removed": false + } + ], + "status": "0x1", + "logsBloom": "0x00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", + "type": "0x0", + "effectiveGasPrice": "0xf4240" + } + ], + "libraries": [ + "lib/eth-projects-monorepo/packages/eth-projects-contracts/contracts/lib/utils/Bytes.sol:Bytes:0x5fbdb2315678afecb367f032d93f642f64180aa3" + ], + "pending": [], + "returns": {}, + "timestamp": 1689270957, + "chain": 1263227476, + "multi": false, + "commit": "8bcb0d8" +} \ No newline at end of file diff --git a/packages/starksheet-solidity/broadcast/Evmsheet.s.sol/1263227476/run-1689271545.json b/packages/starksheet-solidity/broadcast/Evmsheet.s.sol/1263227476/run-1689271545.json new file mode 100644 index 00000000..128501ef --- /dev/null +++ b/packages/starksheet-solidity/broadcast/Evmsheet.s.sol/1263227476/run-1689271545.json @@ -0,0 +1,201 @@ +{ + "transactions": [ + { + "hash": "0x072cf396588bb7d15ecdfa1fae788cc73c5129f1b8fb0509be3a348b73373bf7", + "transactionType": "CREATE", + "contractName": "Bytes", + "contractAddress": "0x5FbDB2315678afecb367f032d93F642f64180aa3", + "function": null, + "arguments": null, + "transaction": { + "type": "0x00", + "from": "0xf39fd6e51aad88f6f4ce6ab8827279cfffb92266", + "gas": "0x1387ed", + "data": "0x6110d661003a600b82828239805160001a60731461002d57634e487b7160e01b600052600060045260246000fd5b30600052607381538281f3fe73000000000000000000000000000000000000000030146080604052600436106101625760003560e01c8063a5eb31ee116100cd578063d1ffb56111610086578063d1ffb561146103fb578063d442584f1461042b578063e004139614610454578063f1142fb314610474578063f647f8fb14610487578063f83b670f146104b257600080fd5b8063a5eb31ee14610344578063a8d8f00f1461036b578063b5cdf92414610396578063b63711df146103a9578063be8b3430146103bc578063c29616bd146103cf57600080fd5b80635ef849301161011f5780635ef8493014610241578063913c97b41461026b57806397e6175c1461029f57806399dd9bd7146102cb5780639ae4c3d1146102ec5780639cee499e1461031857600080fd5b8063042aa0841461016757806305d3bb74146101985780631a7431ef146101c0578063235266d2146101e357806348137709146101f65780634d66a2ae1461021b575b600080fd5b61017a610175366004610ec0565b6104de565b6040516001600160d01b031990911681526020015b60405180910390f35b6101ab6101a6366004610ec0565b610540565b60405163ffffffff909116815260200161018f565b6101d36101ce366004610f05565b61059d565b604051901515815260200161018f565b6101d36101f1366004610f4c565b610652565b610209610204366004610ec0565b6106b5565b60405160ff909116815260200161018f565b61022e610229366004610fa6565b610711565b60405161ffff909116815260200161018f565b61025461024f366004610ec0565b61071e565b60405165ffffffffffff909116815260200161018f565b61027e610279366004610ec0565b610772565b6040516fffffffffffffffffffffffffffffffff909116815260200161018f565b6102b26102ad366004610ec0565b6107d0565b6040516001600160a01b0319909116815260200161018f565b6102de6102d9366004610ec0565b61082e565b60405190815260200161018f565b6102ff6102fa366004610ec0565b61088c565b60405167ffffffffffffffff909116815260200161018f565b61032b610326366004610ec0565b6108e9565b6040516001600160d81b0319909116815260200161018f565b610357610352366004610ec0565b610946565b60405162ffffff909116815260200161018f565b61037e610379366004610ec0565b6109a3565b60405166ffffffffffffff909116815260200161018f565b6102de6103a4366004610ec0565b610a00565b6102ff6103b7366004610ec0565b610a55565b61022e6103ca366004610ec0565b610aa9565b6103e26103dd366004610ec0565b610b06565b6040516001600160c81b0319909116815260200161018f565b61040e610409366004610ec0565b610b5a565b6040516bffffffffffffffffffffffff909116815260200161018f565b61043e610439366004610ec0565b610bae565b60405164ffffffffff909116815260200161018f565b610467610462366004610fe3565b610c02565b60405161018f9190611031565b6102b2610482366004610ec0565b610d0f565b61049a610495366004610ec0565b610d64565b6040516001600160a01b03909116815260200161018f565b6104c56104c0366004610ec0565b610dc9565b6040516001600160f81b0319909116815260200161018f565b60006104eb82600661107f565b835110156105375760405162461bcd60e51b8152602060048201526014602482015273746f4279746573365f6f75744f66426f756e647360601b60448201526064015b60405180910390fd5b50016006015190565b600061054d82600461107f565b835110156105945760405162461bcd60e51b8152602060048201526014602482015273746f55696e7433325f6f75744f66426f756e647360601b604482015260640161052e565b50016004015190565b600080600190508354600260018083161561010002038216048451808214600181146105cc5760009450610644565b821561064457602083106001811461062957600189600052602060002060208a018581015b600284828410010361062057815183541461060f5760009950600093505b6001830192506020820191506105f1565b50505050610642565b6101008086040294506020880151851461064257600095505b505b509293505050505b92915050565b81518151600091600191811480831461066e57600092506106ab565b600160208701838101602088015b60028483851001036106a657805183511461069a5760009650600093505b6020928301920161067c565b505050505b5090949350505050565b60006106c282600161107f565b835110156107085760405162461bcd60e51b8152602060048201526013602482015272746f55696e74385f6f75744f66426f756e647360681b604482015260640161052e565b50016001015190565b600061064c826000610aa9565b600061072b82600661107f565b835110156105375760405162461bcd60e51b8152602060048201526014602482015273746f55696e7434385f6f75744f66426f756e647360601b604482015260640161052e565b600061077f82601061107f565b835110156107c75760405162461bcd60e51b8152602060048201526015602482015274746f55696e743132385f6f75744f66426f756e647360581b604482015260640161052e565b50016010015190565b60006107dd82600c61107f565b835110156108255760405162461bcd60e51b8152602060048201526015602482015274746f427974657331325f6f75744f66426f756e647360581b604482015260640161052e565b5001600c015190565b600061083b82602061107f565b835110156108835760405162461bcd60e51b8152602060048201526015602482015274746f427974657333325f6f75744f66426f756e647360581b604482015260640161052e565b50016020015190565b600061089982600861107f565b835110156108e05760405162461bcd60e51b8152602060048201526014602482015273746f55696e7436345f6f75744f66426f756e647360601b604482015260640161052e565b50016008015190565b60006108f682600561107f565b8351101561093d5760405162461bcd60e51b8152602060048201526014602482015273746f4279746573355f6f75744f66426f756e647360601b604482015260640161052e565b50016005015190565b600061095382600361107f565b8351101561099a5760405162461bcd60e51b8152602060048201526014602482015273746f55696e7432345f6f75744f66426f756e647360601b604482015260640161052e565b50016003015190565b60006109b082600761107f565b835110156109f75760405162461bcd60e51b8152602060048201526014602482015273746f55696e7435365f6f75744f66426f756e647360601b604482015260640161052e565b50016007015190565b6000610a0d82602061107f565b835110156108835760405162461bcd60e51b8152602060048201526015602482015274746f55696e743235365f6f75744f66426f756e647360581b604482015260640161052e565b6000610a6282600861107f565b835110156108e05760405162461bcd60e51b8152602060048201526014602482015273746f4279746573385f6f75744f66426f756e647360601b604482015260640161052e565b6000610ab682600261107f565b83511015610afd5760405162461bcd60e51b8152602060048201526014602482015273746f55696e7431365f6f75744f66426f756e647360601b604482015260640161052e565b50016002015190565b6000610b1382600761107f565b835110156109f75760405162461bcd60e51b8152602060048201526014602482015273746f4279746573375f6f75744f66426f756e647360601b604482015260640161052e565b6000610b6782600c61107f565b835110156108255760405162461bcd60e51b8152602060048201526014602482015273746f55696e7439365f6f75744f66426f756e647360601b604482015260640161052e565b6000610bbb82600561107f565b8351101561093d5760405162461bcd60e51b8152602060048201526014602482015273746f55696e7434305f6f75744f66426f756e647360601b604482015260640161052e565b606081610c1081601f61107f565b1015610c4f5760405162461bcd60e51b815260206004820152600e60248201526d736c6963655f6f766572666c6f7760901b604482015260640161052e565b610c59828461107f565b84511015610c9d5760405162461bcd60e51b8152602060048201526011602482015270736c6963655f6f75744f66426f756e647360781b604482015260640161052e565b606082158015610cbc5760405191506000825260208201604052610d06565b6040519150601f8416801560200281840101858101878315602002848b0101015b81831015610cf5578051835260209283019201610cdd565b5050858452601f01601f1916604052505b50949350505050565b6000610d1c82601061107f565b835110156107c75760405162461bcd60e51b8152602060048201526015602482015274746f427974657331365f6f75744f66426f756e647360581b604482015260640161052e565b6000610d7182601461107f565b83511015610db95760405162461bcd60e51b8152602060048201526015602482015274746f416464726573735f6f75744f66426f756e647360581b604482015260640161052e565b500160200151600160601b900490565b6000610dd682600161107f565b835110156107085760405162461bcd60e51b8152602060048201526014602482015273746f4279746573315f6f75744f66426f756e647360601b604482015260640161052e565b634e487b7160e01b600052604160045260246000fd5b600082601f830112610e4457600080fd5b813567ffffffffffffffff80821115610e5f57610e5f610e1d565b604051601f8301601f19908116603f01168101908282118183101715610e8757610e87610e1d565b81604052838152866020858801011115610ea057600080fd5b836020870160208301376000602085830101528094505050505092915050565b60008060408385031215610ed357600080fd5b823567ffffffffffffffff811115610eea57600080fd5b610ef685828601610e33565b95602094909401359450505050565b60008060408385031215610f1857600080fd5b82359150602083013567ffffffffffffffff811115610f3657600080fd5b610f4285828601610e33565b9150509250929050565b60008060408385031215610f5f57600080fd5b823567ffffffffffffffff80821115610f7757600080fd5b610f8386838701610e33565b93506020850135915080821115610f9957600080fd5b50610f4285828601610e33565b600060208284031215610fb857600080fd5b813567ffffffffffffffff811115610fcf57600080fd5b610fdb84828501610e33565b949350505050565b600080600060608486031215610ff857600080fd5b833567ffffffffffffffff81111561100f57600080fd5b61101b86828701610e33565b9660208601359650604090950135949350505050565b600060208083528351808285015260005b8181101561105e57858101830151858201604001528201611042565b506000604082860101526040601f19601f8301168501019250505092915050565b8082018082111561064c57634e487b7160e01b600052601160045260246000fdfea26469706673582212205bdf5bc4551862519f5370e0dcec38eefbbbe11b6a5bf19ce2846b4f8831a5dc64736f6c63430008110033", + "nonce": "0x0" + }, + "additionalContracts": [], + "isFixedGasLimit": false + }, + { + "hash": "0x054de20b4247d293c9de042e304c8c4029bdfc05cea7faa8dff455b5db78512f", + "transactionType": "CREATE", + "contractName": "MultiSendCallOnly", + "contractAddress": "0xe7f1725E7734CE288F8367e1Bb143E90bb3F0512", + "function": null, + "arguments": null, + "transaction": { + "type": "0x00", + "from": "0xf39fd6e51aad88f6f4ce6ab8827279cfffb92266", + "gas": "0x2e5c4", + "value": "0x0", + "data": "0x608060405234801561001057600080fd5b506101ae806100206000396000f3fe60806040526004361061001e5760003560e01c80638d80ff0a14610023575b600080fd5b6100366100313660046100c7565b610038565b005b805160205b818110156100ac578083015160f81c6001820184015160601c601583018501516035840186015160558501870160008560008114610082576001811461001e5761008e565b6000808585888a5af191505b508061009957600080fd5b505080605501850194505050505061003d565b505050565b634e487b7160e01b600052604160045260246000fd5b6000602082840312156100d957600080fd5b813567ffffffffffffffff808211156100f157600080fd5b818401915084601f83011261010557600080fd5b813581811115610117576101176100b1565b604051601f8201601f19908116603f0116810190838211818310171561013f5761013f6100b1565b8160405282815287602084870101111561015857600080fd5b82602086016020830137600092810160200192909252509594505050505056fea2646970667358221220c15490bbb756a4c3c49d6335b2e81d2d098647b0ea70174c2279f199b1d0800364736f6c63430008110033", + "nonce": "0x1" + }, + "additionalContracts": [], + "isFixedGasLimit": false + }, + { + "hash": "0x0178049afecd6afec6d0ba39c1d78847f55e8e460426e1e4e4cdaa81797a9002", + "transactionType": "CREATE", + "contractName": "BasicCellRenderer", + "contractAddress": "0x9fE46736679d2D9a65F0992F2272dE9f3c7fa6e0", + "function": null, + "arguments": null, + "transaction": { + "type": "0x00", + "from": "0xf39fd6e51aad88f6f4ce6ab8827279cfffb92266", + "gas": "0x3180ad", + "value": "0x0", + "data": "0x608060405234801561001057600080fd5b50612c25806100206000396000f3fe608060405234801561001057600080fd5b50600436106100365760003560e01c806306d4cd8b1461003b57806328de0f2f14610064575b600080fd5b61004e610049366004610322565b610077565b60405161005b919061038b565b60405180910390f35b61004e610072366004610404565b6100f1565b60606000610086600f846104fc565b90506000610095600f8361051e565b61009f9085610535565b905060006100ae826041610548565b60f81b9050806100c76100c2856001610548565b6101b6565b6040516020016100d8929190610577565b6040516020818303038152906040529350505050919050565b606060006100fe86610077565b905083838261018388735fbdb2315678afecb367f032d93f642f64180aa363b5cdf924909160006040518363ffffffff1660e01b81526004016101429291906105a8565b602060405180830381865af415801561015f573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906100c291906105ca565b87878660405160200161019c97969594939291906105f2565b604051602081830303815290604052915050949350505050565b606060006101c383610249565b600101905060008167ffffffffffffffff8111156101e3576101e36103a5565b6040519080825280601f01601f19166020018201604052801561020d576020820181803683370190505b5090508181016020015b600019016f181899199a1a9b1b9c1cb0b131b232b360811b600a86061a8153600a850494508461021757509392505050565b60008072184f03e93ff9f4daa797ed6e38ed64bf6a1f0160401b83106102885772184f03e93ff9f4daa797ed6e38ed64bf6a1f0160401b830492506040015b6d04ee2d6d415b85acef810000000083106102b4576d04ee2d6d415b85acef8100000000830492506020015b662386f26fc1000083106102d257662386f26fc10000830492506010015b6305f5e10083106102ea576305f5e100830492506008015b61271083106102fe57612710830492506004015b60648310610310576064830492506002015b600a831061031c576001015b92915050565b60006020828403121561033457600080fd5b5035919050565b60005b8381101561035657818101518382015260200161033e565b50506000910152565b6000815180845261037781602086016020860161033b565b601f01601f19169290920160200192915050565b60208152600061039e602083018461035f565b9392505050565b634e487b7160e01b600052604160045260246000fd5b60008083601f8401126103cd57600080fd5b50813567ffffffffffffffff8111156103e557600080fd5b6020830191508360208285010111156103fd57600080fd5b9250929050565b6000806000806060858703121561041a57600080fd5b84359350602085013567ffffffffffffffff8082111561043957600080fd5b818701915087601f83011261044d57600080fd5b81358181111561045f5761045f6103a5565b604051601f8201601f19908116603f01168101908382118183101715610487576104876103a5565b816040528281528a60208487010111156104a057600080fd5b8260208601602083013760006020848301015280975050505060408701359150808211156104cd57600080fd5b506104da878288016103bb565b95989497509550505050565b634e487b7160e01b600052601160045260246000fd5b60008261051957634e487b7160e01b600052601260045260246000fd5b500490565b808202811582820484141761031c5761031c6104e6565b8181038181111561031c5761031c6104e6565b8082018082111561031c5761031c6104e6565b6000815161056d81856020860161033b565b9290920192915050565b6001600160f81b031983168152815160009061059a81600185016020870161033b565b919091016001019392505050565b6040815260006105bb604083018561035f565b90508260208301529392505050565b6000602082840312156105dc57600080fd5b5051919050565b81818437506000910190815290565b7f646174613a6170706c69636174696f6e2f6a736f6e2c7b22646573637269707481527f696f6e223a2022537461726b7368656574222c20226e616d65223a202200000060208201528688603d8301376000878201602160f81b603d820152875161066481603e840160208c0161033b565b7f222c22696d616765223a2022646174613a696d6167652f7376672b786d6c2c25603e92909101918201527f334373766725323076696577426f782533442532373025323030253230383925605e8201527f3230353525323725323066696c6c2533442532376e6f6e65253237253230786d607e8201527f6c6e73253344253237687474702533412f2f7777772e77332e6f72672f323030609e8201527f302f737667253237253345253343646566732533452533437374796c6525334560be8201527f253430666f6e742d66616365253230253742666f6e742d66616d696c7925334160de8201527f253230253237507265737325323053746172742532303250253237253342737260fe8201527f6325334125323075726c25323825323764617461253341666f6e742f776f666661011e8201527f32253342626173653634253243643039474d6741424141414141424c3841413861013e8201527f41414141415235774141424b674141454141414141414141414141414141414161015e8201527f4141414141414141414141414150305a4756453063476a41624d42794358675a61017e8201527f6741494e794551674b3846545361517544524141424e67496b41344e4d42434161019e8201527f46687a5148684649623644566c42306a314f4d4253336f4f4953744562732f2f6101be8201527f2f6c4a776356727a47634f30676f684c45484d6369694443434e57695a6761306101de8201527f79625345555954514f6a4b427038546c737a7344526438716174586c333058746101fe8201527f30645a47467952305668444b776c62746c25324272734643773945316e64655961021e8201527f4a74732f37527762305673784d71576c636a6a775445537a2f5568752f77337361023e8201527f33746b6f496d70343464515168576f456d54337579526d70746f7553446b7a5761025e8201527f454138762f3932364a4b7539486f696e6e3673376674336d4965476c7737547161027e8201527f6437456f326a46517849766a5642494a70563269614f62547a68575932314e7461029e8201527f476772687434704d4b3457556a34624c7967542f51253242514c7879253242336102be8201527f6c482f362f6b6275496444497239446a724a496a6f394a7336524d58253242456102de8201527f6b37424f545a6b6d70397a347455524652566656307148504448375a7462364a6102fe8201527f616f6130684c335975616232473373667a72365776394536793569767025324261031e8201527f7135564c74426a514478476f5345304150313762336466376c61726a6525324261033e8201527f73637a6b7241744a334b6657304a342532424b323365744b4b556a383554616f61035e8201527f57473453346158436c427743413268676141652532423658396f696e32304e6261037e8201527f554a7264466767517049686d5247494d30372f7025324277375a7058316c473161039e8201527f6a6a51787073435141423438714445415042346950312f6a39592f4261686a356103be8201527f5943414e302f78714157496852616a6c6e694e654f50396e78433466667932556103de8201527f694843304e47386b686f6f567a6f7459334445417a417a41356b473735337a6a6103fe8201527f4853354d6e6d586b69496a6d54554d36556d4d3025324256346976752f48377861041e8201527f6a364666322f6b343472787a6449324141676742492f4c48416b394a7a35554d61043e8201527f496f4c7755344146455435725a464f33444d616655633061777351434879497061045e8201527f557a546b30784a474a454f6a4e6871436b474570496153474f6a714e466d2f5761047e8201527f4e434e3569636b71434d6e414165564c4d4c655867356971386b365752585a5261049e8201527f326c337042393831427a73475a743225324256696c4342723954494a674b67786104be8201527f365542514446253242566a4b44714e7741414948386a6949664d6e75384b68666104de8201527f584b486f4e3348634134477245786842324155442f795a554d423857547579496104fe8201527f413444634f4b656434397939504249616e426967734d454e38556b30766c547661051e8201527f304a58334e394d795a75544d763573655357413525324238556538504465547261053e8201527f645467474973566d4e33635856586a6463795275633434385866664176506e7361055e8201527f3575324d4531722532426a4731703137767a3849704f416e483444427367793361057e8201527f512f54376b33646d2f3846334232377355694877464631414f6c683055646e4961059e8201527f4471494e5164506355393145786f2f346252696a6a5169704e4e307a4c646c7a6105be8201527f504438496f547449734c38717162746f4f5149514a5a567849705931315073536105de8201527f55533231397a4c585066642f507667765751346372464d2532425769755671706105fe8201527f645a6f4e6475645872632f4745324d4a36656e3575635746694763375274364f61061e8201527f487676354d674c2532427a44733578444277696141315433554877326b63594361063e8201527f312f55666453316645316d37763742346537653350574848786533594f32483561065e8201527f25324241504f5a7965503025324251506553425468793078713965363241486a61067e8201527f6141556842432f364144484c6f476f4f657636412532426867487369317a613861069e8201527f71355a4e4d716a596c575a4d713867354248445574495370574a73526f52544a6106be8201527f56613049305a3957546b5371564b73507a3464586a7648746449684c6e7670746106de8201527f554c4330753542567579414d544b4a513930594b5267546e5769476b6d7153456106fe8201527f714b6d7256685259674b6b335443686255573671456f45637665577a6859535461071e8201527f4c32484e706735452f6d7151393956564467763352475435586d33637a68754c61073e8201527f3972685864316132372f736c5130686959366a643739614f5a43746a6f52687261075e8201527f623136575676514b725734477a786a7869723238494d697a2f7155447973495761077e8201527f7037516a667765347a556437614a735651575179524c554b484b42577938577661079e8201527f45565333584d53353656337757644f442532424638757639645477496d4b722f6107be8201527f5064626d5763775176456641616a7975566a70784e32704f56635769336c38776107de8201527f454c2f6d395070646f55494536253242504b5838315041546d67654f304231736107fe8201527f47454825324261707a353466646d534a7a333741686635366a4c7739756e504561081e8201527f35644d4b3025324237544639563843435466523979664e7355493474557a464661083e8201527f42326e536e384b4f626a64446964554c7034494a6873777878595172595a643661085e8201527f4e76436e55394d445825324252654c6e4d546d6c315a453972306b5077334e3261087e8201527f6752253242736a4573596d4953706b356c31497333594e614a4b6f6e7a65703761089e8201527f56637354316e556b62347048774b5a41796b614b6f43504630506f6d456876496108be8201527f5758656e6f5a767836774f4b313070316c3274546858793850316555776473766108de8201527f53715157766f424d7473674851554a614774494273756861776450545a5378596108fe8201527f707257757734647a7231564755744449465871726f4d4d69597346783857695461091e8201527f336463574b6f376d50554c79715657413972305974524a4c626957766a6e4c2561093e8201527f324272633452646767624e516c514141613264306d616236364d48447074314361095e8201527f6477626b51436253375053445a4d7a3746724f51713165636153304a6c74644161097e8201527f6c44527941587173364130586247707748676b70367572557757416272464d3361099e8201527f75794d764e4b6c344d6c435548537950416d3931776144454a3559595148754a6109be8201527f4d32304b575251737637486b61334770686c533258444b714f4b4245554753316109de8201527f65306b63316f323449494166486c4449794278584a4a656767423369386174566109fe8201527f67434f3064444f5a484a57596a564c416a6a397137765673456e72684b374568610a1e8201527f4c75427a42586d4d674554634531636d61436976504b6f4a766670466c794935610a3e8201527f4d70584234454325324245672f596d303454787843354e6c73596b74646f5951610a5e8201527f55656c38624673456c3748345a36734377622f38626b347458574658504b6a71610a7e8201527f5462526e64336e4c5770394f784941706c664b586747684e6c72443462354a4c610a9e8201527f5a367055753441726756614d366561357844574244476f7a707a4641376e6747610abe8201527f74596334486141775269475576637653653652414177335a576b564f4667764b610ade8201527f46364955696c4d49394964715155345134585264484866736666517770313955610afe8201527f434a49306a5773725433356f5578303678507268473271364d4533554f306c63610b1e8201527f635a557354454351784a44527854444b6c334c4948722f6162546f73686c6466610b3e8201527f51786a364f57745273466e6966444373473674336b426f344e6d424a6d615556610b5e8201527f54636c794951414a4c6a6e723042365a3859464d6e396b397967703752727848610b7e8201527f36766877624a4e41654b4d554436353974386746514a4d5377652f434f624850610b9e8201527f467671484746554e5266253242737245663354584b42725a76676b6369396972610bbe8201527f426d63442f7458616754474358634e68432532424f3539754c706e6673796f71610bde8201527f4c53313238374552776d38666165564f6d3857634437386c5a36594232793938610bfe8201527f5a4c6c4d3972557264324c514e6c324956643454727376675139363079377573610c1e8201527f5965306854506170576a71726c2532425837784665424e54253242315a644a4a610c3e8201527f572532424678745737584e7774634e7a7761672532425256656a6d4a6839656d610c5e8201527f6c495a4b69694e63694b3849554f4d33556a4a376342554e5847505853326c68610c7e8201527f253242687770676f4836567348524f63764569723372585970344c7769435a77610c9e8201527f3176486c43623552314d68623564536e4f326d6e6f475a6f5846315765574757610cbe8201527f6d7a694a314a555534715072306e694a536c4e424331636b4b6d4a6657625877610cde8201527f5577757449547a456d6a776770776142753464525066746a2f4e384143526e64610cfe8201527f616b2f4641674b674c37305058577839767a6b59322532426d34355473496b4c610d1e8201527f3037616f70444e6f676830535262535a534f397a744657516a376e574c676275610d3e8201527f364325324254374b6a44715a3667456e5277674d78306b4c5a77797962514f76610d5e8201527f514130773054782f354a42722f63595a6453574f546a774446364e6f586b796a610d7e8201527f33566a484e4751494e76426a5a734a4a3377466141516d6f5a575a5970416961610d9e8201527f574f466e6e686455524176576b557a77693062677a5a4158796f445545714863610dbe8201527f57307069454c574f777168773365765478444957724e32495371525151454c41610dde8201527f4d32365334486c723548552f48784a43436844424a6b756b6341573856415430610dfe8201527f6770545a544b4e48677a444f7234314751656a4f34677a416e6b577077464752610e1e8201527f43334c625231787a4b434875365635694674674c704f384b51596d5965467868610e3e8201527f4c32643838736469506a2f76306b427a636c51637954735766324d6445394944610e5e8201527f386d5858576a72434b253242354532756e336e6976656973526e726971317548610e7e8201527f594d6a6a69694945304b6466674d6f3163476d6b557254624f30356732737633610e9e8201527f477673525971762f61457736375472644f705435567a4641364131417939634b610ebe8201527f6f44667762544a64445750524e57517354796a6d3772486249734b466b6f4f2f610ede8201527f5a4c4376735966785973337768534338614c49344b765677373773336e347a48610efe8201527f67697061634a6e435362463945727a53357069386343577655597a4f5064327a610f1e8201527f684a2f4750437a53684f453378596c634f3350796164586a54334f6b68706841610f3e8201527f58465853766865544e5355525446565641486f4a6d7949726b6a454b6f517746610f5e8201527f4730303554334158643935764e30446d336d427332786746546c253242513572610f7e8201527f73416a6e744768707a6f62643642374e7a52664e56653130446f4e5639343753610f9e8201527f59646f635252624776636d785456786f61367a717756376d416e773544314745610fbe8201527f5474327a48382532425476514256356e37672f32615768743979794e594c3974610fde8201527f4f42744167384846435945316d4e775432454232467538544968543776565241610ffe8201527f3461587a6e6b3670545a4e6779696f73747749364b654655374c696c7041253261101e8201527f42334234474a794277574d327062466a4876734a3747754f6f616b6a6d46746a61103e8201527f59344c6254396c323239253242453646374c4475577a744c6e333749786b386a61105e8201527f356c42564b33774c7369362f416641756f6a34396c4d6b5653545045396b704761107e8201527f64304c724555534a4941413070596c4178414d642f4e4f46776f4a446458466961109e8201527f307a4f5744422f54464a705666575642574f516274724a556230636c663369256110be8201527f3242575072446f596c65545674564f45306d36793564487444725551776f414c6110de8201527f7455523365585364444d4e785866656a594674764c626c726c4a7777484b2f456110fe8201527f6957504a616b32574b35386e684e6f4c6a615a55475841756f32656f5777464561111e8201527f66612f445334496958717246714779633348726939785132693243352f73357661113e8201527f7a424d30793777334d4473774d3759325247427172464d6778374f696325324261115e8201527f30497a736d5678617a5473305263666a324f3334532f525639503269486f427561117e8201527f6c4b49594244665a46654c53356439725379664a64536c67683268644d72324f61119e8201527f5552334b6e6c506e4f41785477314a384c4d325a776e4671765a745a4a6c78786111be8201527f343873776243743272316b664875443756624831326159383849437456734b786111de8201527f4b742f31726b616c42414d74782f6f6f6d43445059626b556f4c6344624b436a6111fe8201527f7675713953544467746a584744715735564b36686347654f46697a6a3643714c61121e8201527f4f49716b57783477733245504d444e7378253242613661533230384f39784c3061123e8201527f526146586f394241645530706e452532424c695359334b536f4a41525978646e61125e8201527f7a69545a4d706961442f3438496969393834446151357976656378414673735761127e8201527f792f686274696d63253242704c386b35796f70496d4a627948712f6138797a6c61129e8201527f6c37726f4f7a586d786d4163337459585363546b65734d6344324939315a36336112be8201527f6549312f394a627755716b36737863394b52677277574d414e6543314e6e39756112de8201527f4779775473706d5538712532426c5a6d43714d674153363662674841476a514b6112fe8201527f73754a334451416a5235346d356a4c7a5a616e546c62646530253242726e663461131e8201527f385a574138546c32673277414779427748516e3552322532424e6a726542677861133e8201527f626c734e46627554776d6862414a48737a2f72416f61764c4f34317874767a5961135e8201527f4768336e4c4a426b41506a7578424a445248333048426575385567436978464e61137e8201527f437951322f4b253242385157372f6530253242664f2532423436524e5730657961139e8201527f4c726f39446a5467704a4e4d3547385179306c54644f756d73773066715045696113be8201527f393646702532424830634d774e6f376a787a596d6e4e664d5a6d64506c7932706113de8201527f6f7132575065476d67507136474c78504e34536c4b486e7870624f69754c58516113fe8201527f75583155715031676a6f38426136536c55314f416d5267707a7531735444584a61141e8201527f50754d3338546f387130344c324e777970653837327777556741675a6c70386461143e8201527f6b5166397a38544d43624d6b596b3758484375333564375a5a41656f346b5a4b61145e8201527f68784953386945354c546a334c4f6976485a7268394a3870337a4c5a436a776361147e8201527f6970354452694b6e576e49664c33386b4a684d7452776a67553525324256726d61149e8201527f714b6c6739307a376a64732f4238444b646b464c76483353253242376f4838616114be8201527f6c445a6c626734533155583574434d445342324f364b756c7a41344b763067376114de8201527f314251643054464b7733685358696e62374e6c304258725873514e6376436b386114fe8201527f6d6f394f786965783559627a78564e2f6b3738336f48545a495777393079495a61151e8201527f777672697164475473586e54384965705437597946434f4a6741395a3042794961153e8201527f455956735478522f6b73616b324268376f4b767034766e695530364d57317a4261155e8201527f4672746568647a306b6b587951786a426d7965645636644d596545386146787461157e8201527f6575777355466136466c6c54446c716430707a525a77473663467266574d627061159e8201527f384738587a6a66624d253242354658657076356f457273696c363458783663376115be8201527f5841576275696d3666387347494d58666f334a6971476b703333376854536a676115de8201527f65636862364f42472f327a31376a6f6d4469476d253242476c623146553069656115fe8201527f6e7552796977654c576767447a6d4655765545556a5a6f377356544877684f4661161e8201527f504d6b4e737146423977796d6b45307639666d7477453854377135384e594f3761163e8201527f787534623833766e46766c35755378446c472532426b4f51675249644f346a6761165e8201527f7a786a53486a4b4c7332742f6c684f647771766131415744437072763344345361167e8201527f34523741625934544362664b4637744265363554343551347a7a49714433316161169e8201527f79797557716a692532424636585337535439483943314f342f694b366b4775766116be8201527f6b512f664e3537487837456533373435622f76766e2f62482f58253242392f256116de8201527f32426762656d684f416d49705576755157757344764b517578394a44564e734b6116fe8201527f673651636d6b73515341445530346347524c523768466f5a326337785545664761171e8201527f253242776b755459474d764c6a422f6550634936416847686e5735717a45416961173e8201527f4a586377564545775869654e70536c317a6a457253253242435325324248634c61175e8201527f6f52506d7661324d6767412f69794c67536f544a555767733442794149514f3061177e8201527f4f6f705a487656627a6844494c65557155677a7a48492f667950474e7879777361179e8201527f6f796c6865534639577662795363336b4544716b32415636436c4364635535536117be8201527f6e6c4e6e4963394b794d63384c79622532423867484f4a795173466c4c6250526117de8201527f796d6d374a42743349545a544162314732444252496b514b51705451396939626117fe8201527f3665435353387a4d366161525364544b5657524d336663454a4c644b61746e7361181e8201527f724959774e4a55253242733048364461757832775a35686733706c653042474861183e8201527f756b316b4543734859446461496d4b7025324233463542317859763763486b7161185e8201527f644475306a4b645273657a3531376d63563641685148346931484e3173766c6a61187e8201527f5248366845454672682532426e72726d47316e33307a4d346749776d694d774561189e8201527f624b6842545564423141486f582532424b6741517a4f48543946494f71436b526118be8201527f4e4e623273397170496943534f753167576868497343564a73765771457175356118de8201527f47624a514b4e6a61427465394c4f69676368414a7665475773394332323033766118fe8201527f6f6e476c6b77725251323464646732796345646157554456734441785548734961191e8201527f77773665615234464665336d4a416b66426d5a6452395264774a485a6d47645261193e8201527f7950436a706a627a31712f584a34534949446b66384b4b6e6e32456c4b6d794c61195e8201527f69573442513836733151554b2f76426867524e776548766c5968687a7238706361197e8201527f67704b4b6d6f61576a7036426b594f48446c7835734b5647336365474539657661199e8201527f506e773563646667454242676f554946536238587632504553314772446a78456119be8201527f69524b6b697846716a54704d6d544b6b693148726a7a354368517155717845716119de8201527f544c6c4b6c53715571314772547231476a527130717846717a62744f6e5347656119fe8201527f3668374a6d627a4968355a6544696c315a58536a7430774375616b336c6e476f611a1e8201527f5655506f53734e663337394b326a6274716d44674d69485a42665a6c68324839611a3e8201527f75773738495469314a466a585653662f4336634f55667a346f30644178305447611a5e8201527f777448446863666a3443516d49694531444d5a42546b6c4e5a557065566f614f611a7e8201527f6e717633733234314e50503965766574594768435a50576a4979747332706173611a9e8201527f436a25324270556a54596c336b615574374f744b4a6136355850396d356e6367611abe8201527f364e686a685a587032762532426d57724341545a754a303368316b6a55756976611ade8201527f5067596e6a6e35744b4a4f6b326e6362703251414559585a69304b496d50356b611afe8201527f744961466e366b5a397743253237253239253230666f726d6174253238253237611b1e8201527f776f666632253237253239253342666f6e742d7765696768742533412532306e611b3e8201527f6f726d616c253342666f6e742d7374796c652533412532306e6f726d616c2533611b5e8201527f42666f6e742d646973706c617925334125323073776170253342253744746578611b7e8201527f74253230253742666f6e742d66616d696c792533412532302532375072657373611b9e8201527f2532305374617274253230325025323725334266696c6c253341253230776869611bbe8201527f74652537442e76616c7565253230253742666f6e742d73697a65253341253230611bde8201527f313070782533422537442e6e616d65253230253742666f6e742d73697a652533611bfe8201527f412532303470782533422537442533432f7374796c652533452533432f646566611c1e8201527f7325334525334372656374253230776964746825334425323738392532372532611c3e8201527f30686569676874253344253237353525323725323066696c6c25334425323762611c5e8201527f6c61636b2532372532302f253345253343726563742532307825334425323735611c7e8201527f2e3525323725323079253344253237352e352532372532307769647468253344611c9e8201527f2532373738253237253230686569676874253344253237343425323725323066611cbe8201527f696c6c2533442532372532333030303046462532372532302f25334525334374611cde8201527f657874253230746578742d616e63686f722533442532376d6964646c65253237611cfe8201527f2532307825334425323734342e35253237253230792533442532373333253237611d1e8201527f253230636c61737325334425323776616c756525323725334500000000000000611d3e820152612ba5612b9e6129f5611d5784018a61055b565b7f2533432f746578742533452533437265637425323078253344253237352e352581527f323725323079253344253237352e35253237253230776964746825334425323760208201527f373825323725323068656967687425334425323734342532372532307374726f60408201527f6b652533442532372532334646344630412532372532307374726f6b652d776960608201527f647468253344253237332532372532302f25334525334372656374253230782560808201527f334425323733302532372532307925334425323734352e35253237253230776960a08201527f647468253344253237353825323725323068656967687425334425323738253260c08201527f3725323066696c6c2533442532372532334646344630412532372532302f253360e08201527f4525334374657874253230746578742d616e63686f72253344253237656e64256101008201527f32372532307825334425323738372532372532307925334425323735322532376101208201527f253230636c6173732533442532376e616d6525323725334500000000000000006101408201526101580190565b86886105e3565b602160f81b81529050612bbb600182018561055b565b7f2533432f746578742533452533432f737667253345227d00000000000000000081526017019a995050505050505050505056fea26469706673582212206a2c00c13ddb4f1bcd7ee36e36f0c874d7d9dadcf38306eab3610b5a6e7af83464736f6c63430008110033", + "nonce": "0x2" + }, + "additionalContracts": [], + "isFixedGasLimit": false + }, + { + "hash": "0x06007149e34ac86ab7957b5e99b6a6a00081cfa2d61574288513751537767eb1", + "transactionType": "CREATE", + "contractName": null, + "contractAddress": "0xCf7Ed3AccA5a467e9e704C703E8D87F634fB0Fc9", + "function": null, + "arguments": null, + "transaction": { + "type": "0x00", + "from": "0xf39fd6e51aad88f6f4ce6ab8827279cfffb92266", + "gas": "0x42230", + "value": "0x0", + "data": "0x608060405234801561001057600080fd5b506102cf806100206000396000f3fe608060405234801561001057600080fd5b506004361061004c5760003560e01c80630194db8e14610051578063072bdcc214610076578063a391c15b14610089578063b67d77c51461009c575b600080fd5b61006461005f366004610160565b6100af565b60405190815260200160405180910390f35b610064610084366004610160565b6100ef565b61006461009736600461021e565b610129565b6100646100aa36600461021e565b61013e565b600080805b83518110156100e8578381815181106100cf576100cf610240565b60200260200101518201915080806001019150506100b4565b5092915050565b60006001815b83518110156100e85783818151811061011057610110610240565b60200260200101518202915080806001019150506100f5565b60006101358284610256565b90505b92915050565b60006101358284610278565b634e487b7160e01b600052604160045260246000fd5b6000602080838503121561017357600080fd5b823567ffffffffffffffff8082111561018b57600080fd5b818501915085601f83011261019f57600080fd5b8135818111156101b1576101b161014a565b8060051b604051601f19603f830116810181811085821117156101d6576101d661014a565b6040529182528482019250838101850191888311156101f457600080fd5b938501935b82851015610212578435845293850193928501926101f9565b98975050505050505050565b6000806040838503121561023157600080fd5b50508035926020909101359150565b634e487b7160e01b600052603260045260246000fd5b60008261027357634e487b7160e01b600052601260045260246000fd5b500490565b8181038181111561013857634e487b7160e01b600052601160045260246000fdfea2646970667358221220fcdef23ba4219270ddb3ab764e22a87e229c05e6f1dfc4eeea983fa1a1dac91f64736f6c63430008110033", + "nonce": "0x3" + }, + "additionalContracts": [], + "isFixedGasLimit": false + }, + { + "hash": "0x04b29b7d9e024bf3ddd4926c8a4ed0e564a59072909d0a99c20a9cb2985288d0", + "transactionType": "CREATE", + "contractName": "Evmsheet", + "contractAddress": "0xDc64a140Aa3E981100a9becA4E685f962f0cF6C9", + "function": null, + "arguments": [ + "0x9fE46736679d2D9a65F0992F2272dE9f3c7fa6e0", + "10000000000000000" + ], + "transaction": { + "type": "0x00", + "from": "0xf39fd6e51aad88f6f4ce6ab8827279cfffb92266", + "gas": "0x34bf99", + "value": "0x0", + "data": "0x608060405234801561001057600080fd5b50604051612ed9380380612ed983398101604081905261002f916100b1565b61003833610061565b600280546001600160a01b0319166001600160a01b0393909316929092179091556001556100eb565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b600080604083850312156100c457600080fd5b82516001600160a01b03811681146100db57600080fd5b6020939093015192949293505050565b612ddf806100fa6000396000f3fe608060405260043610620000a95760003560e01c80638da5cb5b116200006c5780638da5cb5b146200016d578063ab2fa65a146200018d578063ae28505e14620001b4578063c56c4cf114620001d9578063f2fde38b14620001fb578063f52be2a2146200022057600080fd5b806303fb31e814620000ae5780631164c83d14620000d5578063145e414714620000ec5780635787cacb146200012e578063715018a61462000155575b600080fd5b348015620000bb57600080fd5b50620000d3620000cd36600462000778565b62000247565b005b620000d3620000e6366004620007e9565b62000273565b348015620000f957600080fd5b50620001116200010b36600462000864565b620004b2565b6040516001600160a01b0390911681526020015b60405180910390f35b3480156200013b57600080fd5b50620001466200054f565b60405162000125919062000891565b3480156200016257600080fd5b50620000d3620005b3565b3480156200017a57600080fd5b506000546001600160a01b031662000111565b3480156200019a57600080fd5b50620001a5620005cb565b604051620001259190620008e0565b348015620001c157600080fd5b5062000111620001d336600462000930565b620005f7565b348015620001e657600080fd5b5060025462000111906001600160a01b031681565b3480156200020857600080fd5b50620000d36200021a36600462000778565b62000622565b3480156200022d57600080fd5b506200023860015481565b60405190815260200162000125565b62000251620006a1565b600280546001600160a01b0319166001600160a01b0392909216919091179055565b60015434146200029d5760405163723a79e360e11b81523460048201526024015b60405180910390fd5b600060405180602001620002b1906200074d565b6020820181038252601f19601f8201166040525090506000828251602084016000f56002546040516356d3163d60e01b81526001600160a01b0391821660048201529192508216906356d3163d90602401600060405180830381600087803b1580156200031d57600080fd5b505af115801562000332573d6000803e3d6000fd5b505060405163c47f002760e01b81526001600160a01b038416925063c47f0027915062000366908a908a906004016200094a565b600060405180830381600087803b1580156200038157600080fd5b505af115801562000396573d6000803e3d6000fd5b5050604051635c26412360e11b81526001600160a01b038416925063b84c82469150620003ca90889088906004016200094a565b600060405180830381600087803b158015620003e557600080fd5b505af1158015620003fa573d6000803e3d6000fd5b505060405163f2fde38b60e01b81523260048201526001600160a01b038416925063f2fde38b9150602401600060405180830381600087803b1580156200044057600080fd5b505af115801562000455573d6000803e3d6000fd5b5050600380546001810182556000919091527fc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b0180546001600160a01b0319166001600160a01b0394909416939093179092555050505050505050565b600060ff60f81b838360405180602001620004cd906200074d565b6020820181038252601f19601f82011660405250805190602001206040516020016200053094939291906001600160f81b031994909416845260609290921b6bffffffffffffffffffffffff191660018401526015830152603582015260550190565b60408051601f1981840301815291905280516020909101209392505050565b60606003805480602002602001604051908101604052809291908181526020018280548015620005a957602002820191906000526020600020905b81546001600160a01b031681526001909101906020018083116200058a575b5050505050905090565b620005bd620006a1565b620005c96000620006fd565b565b606060405180602001620005df906200074d565b601f1982820381018352601f90910116604052919050565b600381815481106200060857600080fd5b6000918252602090912001546001600160a01b0316905081565b6200062c620006a1565b6001600160a01b038116620006935760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b606482015260840162000294565b6200069e81620006fd565b50565b6000546001600160a01b03163314620005c95760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015260640162000294565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b612430806200097a83390190565b80356001600160a01b03811681146200077357600080fd5b919050565b6000602082840312156200078b57600080fd5b62000796826200075b565b9392505050565b60008083601f840112620007b057600080fd5b50813567ffffffffffffffff811115620007c957600080fd5b602083019150836020828501011115620007e257600080fd5b9250929050565b6000806000806000606086880312156200080257600080fd5b853567ffffffffffffffff808211156200081b57600080fd5b6200082989838a016200079d565b909750955060208801359150808211156200084357600080fd5b5062000852888289016200079d565b96999598509660400135949350505050565b600080604083850312156200087857600080fd5b62000883836200075b565b946020939093013593505050565b6020808252825182820181905260009190848201906040850190845b81811015620008d45783516001600160a01b031683529284019291840191600101620008ad565b50909695505050505050565b600060208083528351808285015260005b818110156200090f57858101830151858201604001528201620008f1565b506000604082860101526040601f19601f8301168501019250505092915050565b6000602082840312156200094357600080fd5b5035919050565b60208152816020820152818360408301376000818301604090810191909152601f909201601f1916010191905056fe60806040523480156200001157600080fd5b50604051806040016040528060078152602001660536865657420360cc1b815250604051806040016040528060048152602001630534854360e41b81525062000069620000636200008f60201b60201c565b62000093565b600162000077838262000188565b50600262000086828262000188565b50505062000254565b3390565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b634e487b7160e01b600052604160045260246000fd5b600181811c908216806200010e57607f821691505b6020821081036200012f57634e487b7160e01b600052602260045260246000fd5b50919050565b601f8211156200018357600081815260208120601f850160051c810160208610156200015e5750805b601f850160051c820191505b818110156200017f578281556001016200016a565b5050505b505050565b81516001600160401b03811115620001a457620001a4620000e3565b620001bc81620001b58454620000f9565b8462000135565b602080601f831160018114620001f45760008415620001db5750858301515b600019600386901b1c1916600185901b1785556200017f565b600085815260208120601f198616915b82811015620002255788860151825594840194600190910190840162000204565b5085821015620002445787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b6121cc80620002646000396000f3fe608060405234801561001057600080fd5b50600436106102275760003560e01c8063715018a611610130578063b85d8b85116100b8578063cf0983981161007c578063cf09839814610512578063cfbe95d814610535578063df4ca20614610556578063e985e9c514610576578063f2fde38b146105a457600080fd5b8063b85d8b85146104a4578063b88d4fde146104ce578063b8c368ec146104e1578063c47f0027146104ec578063c87b56dd146104ff57600080fd5b806395d89b41116100ff57806395d89b4114610439578063a22cb46514610441578063b46ebb1214610454578063b6d658e114610467578063b84c82461461049157600080fd5b8063715018a6146103fa578063768d5029146104025780638ada6b0f146104155780638da5cb5b1461042857600080fd5b80631b06443c116101b35780634f6ccce7116101825780634f6ccce71461038157806356d3163d146103a15780636352211e146103b45780636a0abc74146103c757806370a08231146103e757600080fd5b80631b06443c14610335578063206848f61461034857806323b872dd1461035b57806342842e0e1461036e57600080fd5b8063081812fc116101fa578063081812fc146102a1578063095ea7b3146102e2578063172b9eed146102f757806318160ddd1461030a5780631941fd141461031357600080fd5b806301ffc9a71461022c57806302f3c4c91461025457806306fdde03146102745780630715a24a1461027c575b600080fd5b61023f61023a36600461176a565b6105b7565b60405190151581526020015b60405180910390f35b610267610262366004611861565b610609565b60405161024b9190611951565b610267610638565b6102936fffffffffffffffffffffffffffffffff81565b60405190815260200161024b565b6102ca6102af366004611964565b6005602052600090815260409020546001600160a01b031681565b6040516001600160a01b03909116815260200161024b565b6102f56102f036600461197d565b6106c6565b005b6102676103053660046119a9565b6107ad565b61029360075481565b610326610321366004611964565b610875565b60405161024b939291906119de565b6102ca610343366004611a0e565b61092a565b610326610356366004611964565b6109e3565b6102f5610369366004611a2b565b610ae1565b6102f561037c366004611a2b565b610ca8565b61029361038f366004611964565b60086020526000908152604090205481565b6102f56103af366004611a0e565b610da0565b6102ca6103c2366004611964565b610dca565b6103da6103d53660046119a9565b610e1c565b60405161024b9190611a6c565b6102936103f5366004611a0e565b610e60565b6102f5610ec3565b6102f5610410366004611af9565b610ed7565b6009546102ca906001600160a01b031681565b6000546001600160a01b03166102ca565b610267611035565b6102f561044f366004611b63565b611042565b610267610462366004611964565b6110ae565b61047a610475366004611964565b611258565b60408051921515835260208301919091520161024b565b6102f561049f366004611ba1565b611275565b6104b56104b2366004611964565b90565b6040516001600160e01b0319909116815260200161024b565b6102f56104dc366004611be3565b6112c6565b6102ca600160801b81565b6102f56104fa366004611ba1565b6113ae565b61026761050d366004611964565b6113ff565b61023f610520366004611a0e565b600160801b6001600160a01b03919091161090565b61023f610543366004611861565b516001600160a01b0316600160801b1490565b610569610564366004611964565b6114c9565b60405161024b9190611c16565b61023f610584366004611c4d565b600660209081526000928352604080842090915290825290205460ff1681565b6102f56105b2366004611a0e565b611526565b60006301ffc9a760e01b6001600160e01b0319831614806105e857506380ac58cd60e01b6001600160e01b03198316145b806106035750635b5e139f60e01b6001600160e01b03198316145b92915050565b6060816020015160405160200161062291815260200190565b6040516020818303038152906040529050919050565b6001805461064590611c7b565b80601f016020809104026020016040519081016040528092919081815260200182805461067190611c7b565b80156106be5780601f10610693576101008083540402835291602001916106be565b820191906000526020600020905b8154815290600101906020018083116106a157829003601f168201915b505050505081565b6000818152600360205260409020546001600160a01b03163381148061070f57506001600160a01b038116600090815260066020908152604080832033845290915290205460ff165b6107515760405162461bcd60e51b815260206004820152600e60248201526d1393d517d055551213d49256915160921b60448201526064015b60405180910390fd5b60008281526005602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b606060006107ba83610e1c565b9050606060005b825181101561086d576000806107ef8584815181106107e2576107e2611cb5565b6020026020010151611258565b9150915081156108335783610803826110ae565b61080c90611ccb565b60405160200161081d929190611cef565b6040516020818303038152906040529350610858565b6040516108469085908390602001611cef565b60405160208183030381529060405293505b5050808061086590611d27565b9150506107c1565b509392505050565b600a602052600090815260409020805460018201546002830180546001600160a01b039093169391926108a790611c7b565b80601f01602080910402602001604051908101604052809291908181526020018280546108d390611c7b565b80156109205780601f106108f557610100808354040283529160200191610920565b820191906000526020600020905b81548152906001019060200180831161090357829003601f168201915b5050505050905083565b6000600160801b6001600160a01b03831610156109da576000610955836001600160a01b03166110ae565b604051632d737e4960e21b8152909150735fbdb2315678afecb367f032d93f642f64180aa39063b5cdf92490610992908490600090600401611d40565b602060405180830381865af41580156109af573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906109d39190611d62565b9392505050565b5090565b919050565b60008181526003602052604081205481906060906001600160a01b0316610a1057600160801b9250610a2b565b6000848152600a60205260409020546001600160a01b031692505b6000848152600a60205260409020600181015460029091018054859291908190610a5490611c7b565b80601f0160208091040260200160405190810160405280929190818152602001828054610a8090611c7b565b8015610acd5780601f10610aa257610100808354040283529160200191610acd565b820191906000526020600020905b815481529060010190602001808311610ab057829003601f168201915b505050505090509250925092509193909250565b6000818152600360205260409020546001600160a01b03848116911614610b375760405162461bcd60e51b815260206004820152600a60248201526957524f4e475f46524f4d60b01b6044820152606401610748565b6001600160a01b038216610b815760405162461bcd60e51b81526020600482015260116024820152701253959053125117d49150d25412515395607a1b6044820152606401610748565b336001600160a01b0384161480610bbb57506001600160a01b038316600090815260066020908152604080832033845290915290205460ff165b80610bdc57506000818152600560205260409020546001600160a01b031633145b610c195760405162461bcd60e51b815260206004820152600e60248201526d1393d517d055551213d49256915160921b6044820152606401610748565b6001600160a01b0380841660008181526004602090815260408083208054600019019055938616808352848320805460010190558583526003825284832080546001600160a01b03199081168317909155600590925284832080549092169091559251849392917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b610cb3838383610ae1565b6001600160a01b0382163b1580610d5c5750604051630a85bd0160e11b8082523360048301526001600160a01b03858116602484015260448301849052608060648401526000608484015290919084169063150b7a029060a4016020604051808303816000875af1158015610d2c573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610d509190611d7b565b6001600160e01b031916145b610d9b5760405162461bcd60e51b815260206004820152601060248201526f155394d0519157d49150d2541251539560821b6044820152606401610748565b505050565b610da861159f565b600980546001600160a01b0319166001600160a01b0392909216919091179055565b6000818152600360205260409020546001600160a01b0316806109de5760405162461bcd60e51b815260206004820152600a6024820152691393d517d3525395115160b21b6044820152606401610748565b60608082516040519150602081048252602082016020850160005b83811015610e4f578181015183820152602001610e37565b505050810160200160405292915050565b60006001600160a01b038216610ea75760405162461bcd60e51b815260206004820152600c60248201526b5a45524f5f4144445245535360a01b6044820152606401610748565b506001600160a01b031660009081526004602052604090205490565b610ecb61159f565b610ed560006115f9565b565b6000858152600360205260409020546001600160a01b0316610f2f57610efd3286611649565b60078054600090815260086020526040812087905581546001929190610f24908490611d98565b90915550610f889050565b6000858152600360205260409020546001600160a01b03163214610f8857600085815260036020526040908190205490516324f3f02560e21b81526001600160a01b039091166004820152326024820152604401610748565b6040518060600160405280856001600160a01b0316815260200184815260200183838080601f0160208091040260200160405190810160405280939291908181526020018383808284376000920182905250939094525050878152600a6020908152604091829020845181546001600160a01b0319166001600160a01b0390911617815590840151600182015590830151909150600282019061102b9082611df9565b5050505050505050565b6002805461064590611c7b565b3360008181526006602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b6000818152600a6020908152604080832081516060818101845282546001600160a01b0316825260018301549482019490945260028201805494959491938401916110f890611c7b565b80601f016020809104026020016040519081016040528092919081815260200182805461112490611c7b565b80156111715780601f1061114657610100808354040283529160200191611171565b820191906000526020600020905b81548152906001019060200180831161115457829003601f168201915b505050505081525050905061119381516001600160a01b0316600160801b1490565b156111a1576109d381610609565b60006111b0826000015161092a565b905060006111bf836020015190565b905060006111d084604001516107ad565b90506000836001600160a01b031683836040516020016111f1929190611eb9565b60408051601f198184030181529082905261120b91611eea565b600060405180830381855afa9150503d8060008114611246576040519150601f19603f3d011682016040523d82523d6000602084013e61124b565b606091505b5098975050505050505050565b600080611266600284611f06565b60019081149493901c92915050565b61127d61159f565b7f8dca0271872d00b3de3abafca544c52fcd7d512dd852c9894fa2c118ac759a93600283836040516112b193929190611fce565b60405180910390a16002610d9b828483611ffe565b6112d1858585610ae1565b6001600160a01b0384163b15806113685750604051630a85bd0160e11b808252906001600160a01b0386169063150b7a02906113199033908a908990899089906004016120be565b6020604051808303816000875af1158015611338573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061135c9190611d7b565b6001600160e01b031916145b6113a75760405162461bcd60e51b815260206004820152601060248201526f155394d0519157d49150d2541251539560821b6044820152606401610748565b5050505050565b6113b661159f565b7fb65b7b5ea384affd30f77f842e057d29dd1b13f133adf69a724a8105b164ab75600183836040516113ea93929190611fce565b60405180910390a16001610d9b828483611ffe565b6000818152600360205260409020546060906001600160a01b03168061143b57604051630243d1a960e21b815260048101849052602401610748565b6000611446846110ae565b6009546040516328de0f2f60e01b81529192506001600160a01b0316906328de0f2f9061147c90879085906001906004016120fd565b600060405180830381865afa158015611499573d6000803e3d6000fd5b505050506040513d6000823e601f3d908101601f191682016040526114c19190810190612128565b949350505050565b604080516060808201835260008083526020830181905292820152906114ee836110ae565b6040805160608101825285815260009586526003602090815295829020546001600160a01b0316958101959095528401525090919050565b61152e61159f565b6001600160a01b0381166115935760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610748565b61159c816115f9565b50565b6000546001600160a01b03163314610ed55760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610748565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b6001600160a01b0382166116935760405162461bcd60e51b81526020600482015260116024820152701253959053125117d49150d25412515395607a1b6044820152606401610748565b6000818152600360205260409020546001600160a01b0316156116e95760405162461bcd60e51b815260206004820152600e60248201526d1053149150511657d3525395115160921b6044820152606401610748565b6001600160a01b038216600081815260046020908152604080832080546001019055848352600390915280822080546001600160a01b0319168417905551839291907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b6001600160e01b03198116811461159c57600080fd5b60006020828403121561177c57600080fd5b81356109d381611754565b634e487b7160e01b600052604160045260246000fd5b604051601f8201601f1916810167ffffffffffffffff811182821017156117c6576117c6611787565b604052919050565b6001600160a01b038116811461159c57600080fd5b600067ffffffffffffffff8211156117fd576117fd611787565b50601f01601f191660200190565b600082601f83011261181c57600080fd5b813561182f61182a826117e3565b61179d565b81815284602083860101111561184457600080fd5b816020850160208301376000918101602001919091529392505050565b60006020828403121561187357600080fd5b813567ffffffffffffffff8082111561188b57600080fd5b908301906060828603121561189f57600080fd5b6040516060810181811083821117156118ba576118ba611787565b60405282356118c8816117ce565b8152602083810135908201526040830135828111156118e657600080fd5b6118f28782860161180b565b60408301525095945050505050565b60005b8381101561191c578181015183820152602001611904565b50506000910152565b6000815180845261193d816020860160208601611901565b601f01601f19169290920160200192915050565b6020815260006109d36020830184611925565b60006020828403121561197657600080fd5b5035919050565b6000806040838503121561199057600080fd5b823561199b816117ce565b946020939093013593505050565b6000602082840312156119bb57600080fd5b813567ffffffffffffffff8111156119d257600080fd5b6114c18482850161180b565b60018060a01b0384168152826020820152606060408201526000611a056060830184611925565b95945050505050565b600060208284031215611a2057600080fd5b81356109d3816117ce565b600080600060608486031215611a4057600080fd5b8335611a4b816117ce565b92506020840135611a5b816117ce565b929592945050506040919091013590565b6020808252825182820181905260009190848201906040850190845b81811015611aa457835183529284019291840191600101611a88565b50909695505050505050565b60008083601f840112611ac257600080fd5b50813567ffffffffffffffff811115611ada57600080fd5b602083019150836020828501011115611af257600080fd5b9250929050565b600080600080600060808688031215611b1157600080fd5b853594506020860135611b23816117ce565b935060408601359250606086013567ffffffffffffffff811115611b4657600080fd5b611b5288828901611ab0565b969995985093965092949392505050565b60008060408385031215611b7657600080fd5b8235611b81816117ce565b915060208301358015158114611b9657600080fd5b809150509250929050565b60008060208385031215611bb457600080fd5b823567ffffffffffffffff811115611bcb57600080fd5b611bd785828601611ab0565b90969095509350505050565b600080600080600060808688031215611bfb57600080fd5b8535611c06816117ce565b94506020860135611b23816117ce565b602081528151602082015260018060a01b036020830151166040820152600060408301516060808401526114c16080840182611925565b60008060408385031215611c6057600080fd5b8235611c6b816117ce565b91506020830135611b96816117ce565b600181811c90821680611c8f57607f821691505b602082108103611caf57634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052603260045260246000fd5b80516020808301519190811015611caf5760001960209190910360031b1b16919050565b60008351611d01818460208801611901565b9190910191825250602001919050565b634e487b7160e01b600052601160045260246000fd5b600060018201611d3957611d39611d11565b5060010190565b604081526000611d536040830185611925565b90508260208301529392505050565b600060208284031215611d7457600080fd5b5051919050565b600060208284031215611d8d57600080fd5b81516109d381611754565b8082018082111561060357610603611d11565b601f821115610d9b57600081815260208120601f850160051c81016020861015611dd25750805b601f850160051c820191505b81811015611df157828155600101611dde565b505050505050565b815167ffffffffffffffff811115611e1357611e13611787565b611e2781611e218454611c7b565b84611dab565b602080601f831160018114611e5c5760008415611e445750858301515b600019600386901b1c1916600185901b178555611df1565b600085815260208120601f198616915b82811015611e8b57888601518255948401946001909101908401611e6c565b5085821015611ea95787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b6001600160e01b0319831681528151600090611edc816004850160208701611901565b919091016004019392505050565b60008251611efc818460208701611901565b9190910192915050565b600082611f2357634e487b7160e01b600052601260045260246000fd5b500690565b60008154611f3581611c7b565b808552602060018381168015611f525760018114611f6c57611f9a565b60ff1985168884015283151560051b880183019550611f9a565b866000528260002060005b85811015611f925781548a8201860152908301908401611f77565b890184019650505b505050505092915050565b81835281816020850137506000828201602090810191909152601f909101601f19169091010190565b604081526000611fe16040830186611f28565b8281036020840152611ff4818587611fa5565b9695505050505050565b67ffffffffffffffff83111561201657612016611787565b61202a836120248354611c7b565b83611dab565b6000601f84116001811461205e57600085156120465750838201355b600019600387901b1c1916600186901b1783556113a7565b600083815260209020601f19861690835b8281101561208f578685013582556020948501946001909201910161206f565b50868210156120ac5760001960f88860031b161c19848701351681555b505060018560011b0183555050505050565b6001600160a01b03868116825285166020820152604081018490526080606082018190526000906120f29083018486611fa5565b979650505050505050565b8381526060602082015260006121166060830185611925565b8281036040840152611ff48185611f28565b60006020828403121561213a57600080fd5b815167ffffffffffffffff81111561215157600080fd5b8201601f8101841361216257600080fd5b805161217061182a826117e3565b81815285602083850101111561218557600080fd5b611a0582602083016020860161190156fea26469706673582212203fc548aa4f22e6f4c01757ba3f2e0383630418b3d17601758718ab19a4d9918d64736f6c63430008110033a26469706673582212207932e8c793f9a96d9606a8907a6671f54c0fb1ed5a763048e13b429274e7706c64736f6c634300081100330000000000000000000000009fe46736679d2d9a65f0992f2272de9f3c7fa6e0000000000000000000000000000000000000000000000000002386f26fc10000", + "nonce": "0x4" + }, + "additionalContracts": [], + "isFixedGasLimit": false + } + ], + "receipts": [ + { + "transactionHash": "0x072cf396588bb7d15ecdfa1fae788cc73c5129f1b8fb0509be3a348b73373bf7", + "transactionIndex": "0x0", + "blockHash": "0x04a290479d949106f5ebb401baa4ffa670a2470768645b4bf76abfc05ff50d5b", + "blockNumber": "0x24", + "from": "0xf39Fd6e51aad88F6F4ce6aB8827279cffFb92266", + "to": null, + "cumulativeGasUsed": "0xf4240", + "gasUsed": "0x7a120", + "contractAddress": "0x8dB210aC4f1403C5B127828bf5d373C372BA6eBd", + "logs": [], + "status": "0x1", + "logsBloom": "0x00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", + "type": "0x0", + "effectiveGasPrice": "0xf4240" + }, + { + "transactionHash": "0x054de20b4247d293c9de042e304c8c4029bdfc05cea7faa8dff455b5db78512f", + "transactionIndex": "0x0", + "blockHash": "0x02ff112a307613497d5ccc5c26a08b369d0e15642ba25dfbab9db7144a8177fc", + "blockNumber": "0x25", + "from": "0xf39Fd6e51aad88F6F4ce6aB8827279cffFb92266", + "to": null, + "cumulativeGasUsed": "0xf4240", + "gasUsed": "0x7a120", + "contractAddress": "0xe7f1725E7734CE288F8367e1Bb143E90bb3F0512", + "logs": [], + "status": "0x1", + "logsBloom": "0x00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", + "type": "0x0", + "effectiveGasPrice": "0xf4240" + }, + { + "transactionHash": "0x0178049afecd6afec6d0ba39c1d78847f55e8e460426e1e4e4cdaa81797a9002", + "transactionIndex": "0x0", + "blockHash": "0x05f645d897c1ac52674428245dbf2a5e4368880df7ec7b5d017f55d61f631d4a", + "blockNumber": "0x26", + "from": "0xf39Fd6e51aad88F6F4ce6aB8827279cffFb92266", + "to": null, + "cumulativeGasUsed": "0xf4240", + "gasUsed": "0x7a120", + "contractAddress": "0x9fE46736679d2D9a65F0992F2272dE9f3c7fa6e0", + "logs": [], + "status": "0x1", + "logsBloom": "0x00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", + "type": "0x0", + "effectiveGasPrice": "0xf4240" + }, + { + "transactionHash": "0x06007149e34ac86ab7957b5e99b6a6a00081cfa2d61574288513751537767eb1", + "transactionIndex": "0x0", + "blockHash": "0x046e2ff72628f733b1998b1098ab76d2c815c9bf90ffb17877f460b83d1ed3e4", + "blockNumber": "0x27", + "from": "0xf39Fd6e51aad88F6F4ce6aB8827279cffFb92266", + "to": null, + "cumulativeGasUsed": "0xf4240", + "gasUsed": "0x7a120", + "contractAddress": "0xCf7Ed3AccA5a467e9e704C703E8D87F634fB0Fc9", + "logs": [], + "status": "0x1", + "logsBloom": "0x00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", + "type": "0x0", + "effectiveGasPrice": "0xf4240" + }, + { + "transactionHash": "0x04b29b7d9e024bf3ddd4926c8a4ed0e564a59072909d0a99c20a9cb2985288d0", + "transactionIndex": "0x0", + "blockHash": "0x0598ccbfd693335b4e5d08c6a7ac678959cbbc01e6a212ba943cacdbf01b41b6", + "blockNumber": "0x28", + "from": "0xf39Fd6e51aad88F6F4ce6aB8827279cffFb92266", + "to": null, + "cumulativeGasUsed": "0xf4240", + "gasUsed": "0x7a120", + "contractAddress": "0xDc64a140Aa3E981100a9becA4E685f962f0cF6C9", + "logs": [ + { + "address": "0xDc64a140Aa3E981100a9becA4E685f962f0cF6C9", + "topics": [ + "0x8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0", + "0x0000000000000000000000000000000000000000000000000000000000000000", + "0x000000000000000000000000f39fd6e51aad88f6f4ce6ab8827279cfffb92266" + ], + "data": "0x", + "blockHash": "0x0598ccbfd693335b4e5d08c6a7ac678959cbbc01e6a212ba943cacdbf01b41b6", + "blockNumber": "0x28", + "transactionHash": "0x04b29b7d9e024bf3ddd4926c8a4ed0e564a59072909d0a99c20a9cb2985288d0", + "removed": false + } + ], + "status": "0x1", + "logsBloom": "0x00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", + "type": "0x0", + "effectiveGasPrice": "0xf4240" + } + ], + "libraries": [ + "lib/eth-projects-monorepo/packages/eth-projects-contracts/contracts/lib/utils/Bytes.sol:Bytes:0x5fbdb2315678afecb367f032d93f642f64180aa3" + ], + "pending": [], + "returns": {}, + "timestamp": 1689271545, + "chain": 1263227476, + "multi": false, + "commit": "8bcb0d8" +} \ No newline at end of file diff --git a/packages/starksheet-solidity/broadcast/Evmsheet.s.sol/1263227476/run-1689584451.json b/packages/starksheet-solidity/broadcast/Evmsheet.s.sol/1263227476/run-1689584451.json new file mode 100644 index 00000000..2daa7e92 --- /dev/null +++ b/packages/starksheet-solidity/broadcast/Evmsheet.s.sol/1263227476/run-1689584451.json @@ -0,0 +1,201 @@ +{ + "transactions": [ + { + "hash": "0x020c428f1942467e2d929c75c4f58bf38f78c9dc342c50e7660a2de7a956f233", + "transactionType": "CREATE", + "contractName": "Bytes", + "contractAddress": "0x5FbDB2315678afecb367f032d93F642f64180aa3", + "function": null, + "arguments": null, + "transaction": { + "type": "0x00", + "from": "0xf39fd6e51aad88f6f4ce6ab8827279cfffb92266", + "gas": "0x1387ed", + "data": "0x6110d661003a600b82828239805160001a60731461002d57634e487b7160e01b600052600060045260246000fd5b30600052607381538281f3fe73000000000000000000000000000000000000000030146080604052600436106101625760003560e01c8063a5eb31ee116100cd578063d1ffb56111610086578063d1ffb561146103fb578063d442584f1461042b578063e004139614610454578063f1142fb314610474578063f647f8fb14610487578063f83b670f146104b257600080fd5b8063a5eb31ee14610344578063a8d8f00f1461036b578063b5cdf92414610396578063b63711df146103a9578063be8b3430146103bc578063c29616bd146103cf57600080fd5b80635ef849301161011f5780635ef8493014610241578063913c97b41461026b57806397e6175c1461029f57806399dd9bd7146102cb5780639ae4c3d1146102ec5780639cee499e1461031857600080fd5b8063042aa0841461016757806305d3bb74146101985780631a7431ef146101c0578063235266d2146101e357806348137709146101f65780634d66a2ae1461021b575b600080fd5b61017a610175366004610ec0565b6104de565b6040516001600160d01b031990911681526020015b60405180910390f35b6101ab6101a6366004610ec0565b610540565b60405163ffffffff909116815260200161018f565b6101d36101ce366004610f05565b61059d565b604051901515815260200161018f565b6101d36101f1366004610f4c565b610652565b610209610204366004610ec0565b6106b5565b60405160ff909116815260200161018f565b61022e610229366004610fa6565b610711565b60405161ffff909116815260200161018f565b61025461024f366004610ec0565b61071e565b60405165ffffffffffff909116815260200161018f565b61027e610279366004610ec0565b610772565b6040516fffffffffffffffffffffffffffffffff909116815260200161018f565b6102b26102ad366004610ec0565b6107d0565b6040516001600160a01b0319909116815260200161018f565b6102de6102d9366004610ec0565b61082e565b60405190815260200161018f565b6102ff6102fa366004610ec0565b61088c565b60405167ffffffffffffffff909116815260200161018f565b61032b610326366004610ec0565b6108e9565b6040516001600160d81b0319909116815260200161018f565b610357610352366004610ec0565b610946565b60405162ffffff909116815260200161018f565b61037e610379366004610ec0565b6109a3565b60405166ffffffffffffff909116815260200161018f565b6102de6103a4366004610ec0565b610a00565b6102ff6103b7366004610ec0565b610a55565b61022e6103ca366004610ec0565b610aa9565b6103e26103dd366004610ec0565b610b06565b6040516001600160c81b0319909116815260200161018f565b61040e610409366004610ec0565b610b5a565b6040516bffffffffffffffffffffffff909116815260200161018f565b61043e610439366004610ec0565b610bae565b60405164ffffffffff909116815260200161018f565b610467610462366004610fe3565b610c02565b60405161018f9190611031565b6102b2610482366004610ec0565b610d0f565b61049a610495366004610ec0565b610d64565b6040516001600160a01b03909116815260200161018f565b6104c56104c0366004610ec0565b610dc9565b6040516001600160f81b0319909116815260200161018f565b60006104eb82600661107f565b835110156105375760405162461bcd60e51b8152602060048201526014602482015273746f4279746573365f6f75744f66426f756e647360601b60448201526064015b60405180910390fd5b50016006015190565b600061054d82600461107f565b835110156105945760405162461bcd60e51b8152602060048201526014602482015273746f55696e7433325f6f75744f66426f756e647360601b604482015260640161052e565b50016004015190565b600080600190508354600260018083161561010002038216048451808214600181146105cc5760009450610644565b821561064457602083106001811461062957600189600052602060002060208a018581015b600284828410010361062057815183541461060f5760009950600093505b6001830192506020820191506105f1565b50505050610642565b6101008086040294506020880151851461064257600095505b505b509293505050505b92915050565b81518151600091600191811480831461066e57600092506106ab565b600160208701838101602088015b60028483851001036106a657805183511461069a5760009650600093505b6020928301920161067c565b505050505b5090949350505050565b60006106c282600161107f565b835110156107085760405162461bcd60e51b8152602060048201526013602482015272746f55696e74385f6f75744f66426f756e647360681b604482015260640161052e565b50016001015190565b600061064c826000610aa9565b600061072b82600661107f565b835110156105375760405162461bcd60e51b8152602060048201526014602482015273746f55696e7434385f6f75744f66426f756e647360601b604482015260640161052e565b600061077f82601061107f565b835110156107c75760405162461bcd60e51b8152602060048201526015602482015274746f55696e743132385f6f75744f66426f756e647360581b604482015260640161052e565b50016010015190565b60006107dd82600c61107f565b835110156108255760405162461bcd60e51b8152602060048201526015602482015274746f427974657331325f6f75744f66426f756e647360581b604482015260640161052e565b5001600c015190565b600061083b82602061107f565b835110156108835760405162461bcd60e51b8152602060048201526015602482015274746f427974657333325f6f75744f66426f756e647360581b604482015260640161052e565b50016020015190565b600061089982600861107f565b835110156108e05760405162461bcd60e51b8152602060048201526014602482015273746f55696e7436345f6f75744f66426f756e647360601b604482015260640161052e565b50016008015190565b60006108f682600561107f565b8351101561093d5760405162461bcd60e51b8152602060048201526014602482015273746f4279746573355f6f75744f66426f756e647360601b604482015260640161052e565b50016005015190565b600061095382600361107f565b8351101561099a5760405162461bcd60e51b8152602060048201526014602482015273746f55696e7432345f6f75744f66426f756e647360601b604482015260640161052e565b50016003015190565b60006109b082600761107f565b835110156109f75760405162461bcd60e51b8152602060048201526014602482015273746f55696e7435365f6f75744f66426f756e647360601b604482015260640161052e565b50016007015190565b6000610a0d82602061107f565b835110156108835760405162461bcd60e51b8152602060048201526015602482015274746f55696e743235365f6f75744f66426f756e647360581b604482015260640161052e565b6000610a6282600861107f565b835110156108e05760405162461bcd60e51b8152602060048201526014602482015273746f4279746573385f6f75744f66426f756e647360601b604482015260640161052e565b6000610ab682600261107f565b83511015610afd5760405162461bcd60e51b8152602060048201526014602482015273746f55696e7431365f6f75744f66426f756e647360601b604482015260640161052e565b50016002015190565b6000610b1382600761107f565b835110156109f75760405162461bcd60e51b8152602060048201526014602482015273746f4279746573375f6f75744f66426f756e647360601b604482015260640161052e565b6000610b6782600c61107f565b835110156108255760405162461bcd60e51b8152602060048201526014602482015273746f55696e7439365f6f75744f66426f756e647360601b604482015260640161052e565b6000610bbb82600561107f565b8351101561093d5760405162461bcd60e51b8152602060048201526014602482015273746f55696e7434305f6f75744f66426f756e647360601b604482015260640161052e565b606081610c1081601f61107f565b1015610c4f5760405162461bcd60e51b815260206004820152600e60248201526d736c6963655f6f766572666c6f7760901b604482015260640161052e565b610c59828461107f565b84511015610c9d5760405162461bcd60e51b8152602060048201526011602482015270736c6963655f6f75744f66426f756e647360781b604482015260640161052e565b606082158015610cbc5760405191506000825260208201604052610d06565b6040519150601f8416801560200281840101858101878315602002848b0101015b81831015610cf5578051835260209283019201610cdd565b5050858452601f01601f1916604052505b50949350505050565b6000610d1c82601061107f565b835110156107c75760405162461bcd60e51b8152602060048201526015602482015274746f427974657331365f6f75744f66426f756e647360581b604482015260640161052e565b6000610d7182601461107f565b83511015610db95760405162461bcd60e51b8152602060048201526015602482015274746f416464726573735f6f75744f66426f756e647360581b604482015260640161052e565b500160200151600160601b900490565b6000610dd682600161107f565b835110156107085760405162461bcd60e51b8152602060048201526014602482015273746f4279746573315f6f75744f66426f756e647360601b604482015260640161052e565b634e487b7160e01b600052604160045260246000fd5b600082601f830112610e4457600080fd5b813567ffffffffffffffff80821115610e5f57610e5f610e1d565b604051601f8301601f19908116603f01168101908282118183101715610e8757610e87610e1d565b81604052838152866020858801011115610ea057600080fd5b836020870160208301376000602085830101528094505050505092915050565b60008060408385031215610ed357600080fd5b823567ffffffffffffffff811115610eea57600080fd5b610ef685828601610e33565b95602094909401359450505050565b60008060408385031215610f1857600080fd5b82359150602083013567ffffffffffffffff811115610f3657600080fd5b610f4285828601610e33565b9150509250929050565b60008060408385031215610f5f57600080fd5b823567ffffffffffffffff80821115610f7757600080fd5b610f8386838701610e33565b93506020850135915080821115610f9957600080fd5b50610f4285828601610e33565b600060208284031215610fb857600080fd5b813567ffffffffffffffff811115610fcf57600080fd5b610fdb84828501610e33565b949350505050565b600080600060608486031215610ff857600080fd5b833567ffffffffffffffff81111561100f57600080fd5b61101b86828701610e33565b9660208601359650604090950135949350505050565b600060208083528351808285015260005b8181101561105e57858101830151858201604001528201611042565b506000604082860101526040601f19601f8301168501019250505092915050565b8082018082111561064c57634e487b7160e01b600052601160045260246000fdfea26469706673582212208ffe93db15f03a6fd0c59ab94e8e6a84e4561b6982e8824dafaf837546cfb2c764736f6c63430008140033", + "nonce": "0x0" + }, + "additionalContracts": [], + "isFixedGasLimit": false + }, + { + "hash": "0x0504a5153f292e84b762d27330541b09881e08661ddaa17ed5cfaa6f0411697c", + "transactionType": "CREATE", + "contractName": "MultiSendCallOnly", + "contractAddress": "0xe7f1725E7734CE288F8367e1Bb143E90bb3F0512", + "function": null, + "arguments": null, + "transaction": { + "type": "0x00", + "from": "0xf39fd6e51aad88f6f4ce6ab8827279cfffb92266", + "gas": "0x2e5c4", + "value": "0x0", + "data": "0x608060405234801561001057600080fd5b506101ae806100206000396000f3fe60806040526004361061001e5760003560e01c80638d80ff0a14610023575b600080fd5b6100366100313660046100c7565b610038565b005b805160205b818110156100ac578083015160f81c6001820184015160601c601583018501516035840186015160558501870160008560008114610082576001811461001e5761008e565b6000808585888a5af191505b508061009957600080fd5b505080605501850194505050505061003d565b505050565b634e487b7160e01b600052604160045260246000fd5b6000602082840312156100d957600080fd5b813567ffffffffffffffff808211156100f157600080fd5b818401915084601f83011261010557600080fd5b813581811115610117576101176100b1565b604051601f8201601f19908116603f0116810190838211818310171561013f5761013f6100b1565b8160405282815287602084870101111561015857600080fd5b82602086016020830137600092810160200192909252509594505050505056fea2646970667358221220c15490bbb756a4c3c49d6335b2e81d2d098647b0ea70174c2279f199b1d0800364736f6c63430008110033", + "nonce": "0x1" + }, + "additionalContracts": [], + "isFixedGasLimit": false + }, + { + "hash": "0x071b6f0de2521af53ea5faa0d331922b3b5634ab33f216492667383965465d2e", + "transactionType": "CREATE", + "contractName": "BasicCellRenderer", + "contractAddress": "0x9fE46736679d2D9a65F0992F2272dE9f3c7fa6e0", + "function": null, + "arguments": null, + "transaction": { + "type": "0x00", + "from": "0xf39fd6e51aad88f6f4ce6ab8827279cfffb92266", + "gas": "0x3180ad", + "value": "0x0", + "data": "0x608060405234801561001057600080fd5b50612c25806100206000396000f3fe608060405234801561001057600080fd5b50600436106100365760003560e01c806306d4cd8b1461003b57806328de0f2f14610064575b600080fd5b61004e610049366004610322565b610077565b60405161005b919061038b565b60405180910390f35b61004e610072366004610404565b6100f1565b60606000610086600f846104fc565b90506000610095600f8361051e565b61009f9085610535565b905060006100ae826041610548565b60f81b9050806100c76100c2856001610548565b6101b6565b6040516020016100d8929190610577565b6040516020818303038152906040529350505050919050565b606060006100fe86610077565b905083838261018388735fbdb2315678afecb367f032d93f642f64180aa363b5cdf924909160006040518363ffffffff1660e01b81526004016101429291906105a8565b602060405180830381865af415801561015f573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906100c291906105ca565b87878660405160200161019c97969594939291906105f2565b604051602081830303815290604052915050949350505050565b606060006101c383610249565b600101905060008167ffffffffffffffff8111156101e3576101e36103a5565b6040519080825280601f01601f19166020018201604052801561020d576020820181803683370190505b5090508181016020015b600019016f181899199a1a9b1b9c1cb0b131b232b360811b600a86061a8153600a850494508461021757509392505050565b60008072184f03e93ff9f4daa797ed6e38ed64bf6a1f0160401b83106102885772184f03e93ff9f4daa797ed6e38ed64bf6a1f0160401b830492506040015b6d04ee2d6d415b85acef810000000083106102b4576d04ee2d6d415b85acef8100000000830492506020015b662386f26fc1000083106102d257662386f26fc10000830492506010015b6305f5e10083106102ea576305f5e100830492506008015b61271083106102fe57612710830492506004015b60648310610310576064830492506002015b600a831061031c576001015b92915050565b60006020828403121561033457600080fd5b5035919050565b60005b8381101561035657818101518382015260200161033e565b50506000910152565b6000815180845261037781602086016020860161033b565b601f01601f19169290920160200192915050565b60208152600061039e602083018461035f565b9392505050565b634e487b7160e01b600052604160045260246000fd5b60008083601f8401126103cd57600080fd5b50813567ffffffffffffffff8111156103e557600080fd5b6020830191508360208285010111156103fd57600080fd5b9250929050565b6000806000806060858703121561041a57600080fd5b84359350602085013567ffffffffffffffff8082111561043957600080fd5b818701915087601f83011261044d57600080fd5b81358181111561045f5761045f6103a5565b604051601f8201601f19908116603f01168101908382118183101715610487576104876103a5565b816040528281528a60208487010111156104a057600080fd5b8260208601602083013760006020848301015280975050505060408701359150808211156104cd57600080fd5b506104da878288016103bb565b95989497509550505050565b634e487b7160e01b600052601160045260246000fd5b60008261051957634e487b7160e01b600052601260045260246000fd5b500490565b808202811582820484141761031c5761031c6104e6565b8181038181111561031c5761031c6104e6565b8082018082111561031c5761031c6104e6565b6000815161056d81856020860161033b565b9290920192915050565b6001600160f81b031983168152815160009061059a81600185016020870161033b565b919091016001019392505050565b6040815260006105bb604083018561035f565b90508260208301529392505050565b6000602082840312156105dc57600080fd5b5051919050565b81818437506000910190815290565b7f646174613a6170706c69636174696f6e2f6a736f6e2c7b22646573637269707481527f696f6e223a2022537461726b7368656574222c20226e616d65223a202200000060208201528688603d8301376000878201602160f81b603d820152875161066481603e840160208c0161033b565b7f222c22696d616765223a2022646174613a696d6167652f7376672b786d6c2c25603e92909101918201527f334373766725323076696577426f782533442532373025323030253230383925605e8201527f3230353525323725323066696c6c2533442532376e6f6e65253237253230786d607e8201527f6c6e73253344253237687474702533412f2f7777772e77332e6f72672f323030609e8201527f302f737667253237253345253343646566732533452533437374796c6525334560be8201527f253430666f6e742d66616365253230253742666f6e742d66616d696c7925334160de8201527f253230253237507265737325323053746172742532303250253237253342737260fe8201527f6325334125323075726c25323825323764617461253341666f6e742f776f666661011e8201527f32253342626173653634253243643039474d6741424141414141424c3841413861013e8201527f41414141415235774141424b674141454141414141414141414141414141414161015e8201527f4141414141414141414141414150305a4756453063476a41624d42794358675a61017e8201527f6741494e794551674b3846545361517544524141424e67496b41344e4d42434161019e8201527f46687a5148684649623644566c42306a314f4d4253336f4f4953744562732f2f6101be8201527f2f6c4a776356727a47634f30676f684c45484d6369694443434e57695a6761306101de8201527f79625345555954514f6a4b427038546c737a7344526438716174586c333058746101fe8201527f30645a47467952305668444b776c62746c25324272734643773945316e64655961021e8201527f4a74732f37527762305673784d71576c636a6a775445537a2f5568752f77337361023e8201527f33746b6f496d70343464515168576f456d54337579526d70746f7553446b7a5761025e8201527f454138762f3932364a4b7539486f696e6e3673376674336d4965476c7737547161027e8201527f6437456f326a46517849766a5642494a70563269614f62547a68575932314e7461029e8201527f476772687434704d4b3457556a34624c7967542f51253242514c7879253242336102be8201527f6c482f362f6b6275496444497239446a724a496a6f394a7336524d58253242456102de8201527f6b37424f545a6b6d70397a347455524652566656307148504448375a7462364a6102fe8201527f616f6130684c335975616232473373667a72365776394536793569767025324261031e8201527f7135564c74426a514478476f5345304150313762336466376c61726a6525324261033e8201527f73637a6b7241744a334b6657304a342532424b323365744b4b556a383554616f61035e8201527f57473453346158436c427743413268676141652532423658396f696e32304e6261037e8201527f554a7264466767517049686d5247494d30372f7025324277375a7058316c473161039e8201527f6a6a51787073435141423438714445415042346950312f6a39592f4261686a356103be8201527f5943414e302f78714157496852616a6c6e694e654f50396e78433466667932556103de8201527f694843304e47386b686f6f567a6f7459334445417a417a41356b473735337a6a6103fe8201527f4853354d6e6d586b69496a6d54554d36556d4d3025324256346976752f48377861041e8201527f6a364666322f6b343472787a6449324141676742492f4c48416b394a7a35554d61043e8201527f496f4c7755344146455435725a464f33444d616655633061777351434879497061045e8201527f557a546b30784a474a454f6a4e6871436b474570496153474f6a714e466d2f5761047e8201527f4e434e3569636b71434d6e414165564c4d4c655867356971386b365752585a5261049e8201527f326c337042393831427a73475a743225324256696c4342723954494a674b67786104be8201527f365542514446253242566a4b44714e7741414948386a6949664d6e75384b68666104de8201527f584b486f4e3348634134477245786842324155442f795a554d423857547579496104fe8201527f413444634f4b656434397939504249616e426967734d454e38556b30766c547661051e8201527f304a58334e394d795a75544d763573655357413525324238556538504465547261053e8201527f645467474973566d4e33635856586a6463795275633434385866664176506e7361055e8201527f3575324d4531722532426a4731703137767a3849704f416e483444427367793361057e8201527f512f54376b33646d2f3846334232377355694877464631414f6c683055646e4961059e8201527f4471494e5164506355393145786f2f346252696a6a5169704e4e307a4c646c7a6105be8201527f504438496f547449734c38717162746f4f5149514a5a567849705931315073536105de8201527f55533231397a4c585066642f507667765751346372464d2532425769755671706105fe8201527f645a6f4e6475645872632f4745324d4a36656e3575635746694763375274364f61061e8201527f487676354d674c2532427a44733578444277696141315433554877326b63594361063e8201527f312f55666453316645316d37763742346537653350574848786533594f32483561065e8201527f25324241504f5a7965503025324251506553425468793078713965363241486a61067e8201527f6141556842432f364144484c6f476f4f657636412532426867487369317a613861069e8201527f71355a4e4d716a596c575a4d713867354248445574495370574a73526f52544a6106be8201527f56613049305a3957546b5371564b73507a3464586a7648746449684c6e7670746106de8201527f554c4330753542567579414d544b4a513930594b5267546e5769476b6d7153456106fe8201527f714b6d7256685259674b6b335443686255573671456f45637665577a6859535461071e8201527f4c32484e706735452f6d7151393956564467763352475435586d33637a68754c61073e8201527f3972685864316132372f736c5130686959366a643739614f5a43746a6f52687261075e8201527f623136575676514b725734477a786a7869723238494d697a2f7155447973495761077e8201527f7037516a667765347a556437614a735651575179524c554b484b42577938577661079e8201527f45565333584d53353656337757644f442532424638757639645477496d4b722f6107be8201527f5064626d5763775176456641616a7975566a70784e32704f56635769336c38776107de8201527f454c2f6d395070646f55494536253242504b5838315041546d67654f304231736107fe8201527f47454825324261707a353466646d534a7a333741686635366a4c7739756e504561081e8201527f35644d4b3025324237544639563843435466523979664e7355493474557a464661083e8201527f42326e536e384b4f626a64446964554c7034494a6873777878595172595a643661085e8201527f4e76436e55394d445825324252654c6e4d546d6c315a453972306b5077334e3261087e8201527f6752253242736a4573596d4953706b356c31497333594e614a4b6f6e7a65703761089e8201527f56637354316e556b62347048774b5a41796b614b6f43504630506f6d456876496108be8201527f5758656e6f5a767836774f4b313070316c3274546858793850316555776473766108de8201527f53715157766f424d7473674851554a614774494273756861776450545a5378596108fe8201527f707257757734647a7231564755744449465871726f4d4d69597346783857695461091e8201527f336463574b6f376d50554c79715657413972305974524a4c626957766a6e4c2561093e8201527f324272633452646767624e516c514141613264306d616236364d48447074314361095e8201527f6477626b51436253375053445a4d7a3746724f51713165636153304a6c74644161097e8201527f6c44527941587173364130586247707748676b70367572557757416272464d3361099e8201527f75794d764e4b6c344d6c435548537950416d3931776144454a3559595148754a6109be8201527f4d32304b575251737637486b61334770686c533258444b714f4b4245554753316109de8201527f65306b63316f323449494166486c4449794278584a4a656767423369386174566109fe8201527f67434f3064444f5a484a57596a564c416a6a397137765673456e72684b374568610a1e8201527f4c75427a42586d4d674554634531636d61436976504b6f4a766670466c794935610a3e8201527f4d70584234454325324245672f596d303454787843354e6c73596b74646f5951610a5e8201527f55656c38624673456c3748345a36734377622f38626b347458574658504b6a71610a7e8201527f5462526e64336e4c5770394f784941706c664b586747684e6c72443462354a4c610a9e8201527f5a367055753441726756614d366561357844574244476f7a707a4641376e6747610abe8201527f74596334486141775269475576637653653652414177335a576b564f4667764b610ade8201527f46364955696c4d49394964715155345134585264484866736666517770313955610afe8201527f434a49306a5773725433356f5578303678507268473271364d4533554f306c63610b1e8201527f635a557354454351784a44527854444b6c334c4948722f6162546f73686c6466610b3e8201527f51786a364f57745273466e6966444373473674336b426f344e6d424a6d615556610b5e8201527f54636c794951414a4c6a6e723042365a3859464d6e396b397967703752727848610b7e8201527f36766877624a4e41654b4d554436353974386746514a4d5377652f434f624850610b9e8201527f467671484746554e5266253242737245663354584b42725a76676b6369396972610bbe8201527f426d63442f7458616754474358634e68432532424f3539754c706e6673796f71610bde8201527f4c53313238374552776d38666165564f6d3857634437386c5a36594232793938610bfe8201527f5a4c6c4d3972557264324c514e6c324956643454727376675139363079377573610c1e8201527f5965306854506170576a71726c2532425837784665424e54253242315a644a4a610c3e8201527f572532424678745737584e7774634e7a7761672532425256656a6d4a6839656d610c5e8201527f6c495a4b69694e63694b3849554f4d33556a4a376342554e5847505853326c68610c7e8201527f253242687770676f4836567348524f63764569723372585970344c7769435a77610c9e8201527f3176486c43623552314d68623564536e4f326d6e6f475a6f5846315765574757610cbe8201527f6d7a694a314a555534715072306e694a536c4e424331636b4b6d4a6657625877610cde8201527f5577757449547a456d6a776770776142753464525066746a2f4e384143526e64610cfe8201527f616b2f4641674b674c37305058577839767a6b59322532426d34355473496b4c610d1e8201527f3037616f70444e6f676830535262535a534f397a744657516a376e574c676275610d3e8201527f364325324254374b6a44715a3667456e5277674d78306b4c5a77797962514f76610d5e8201527f514130773054782f354a42722f63595a6453574f546a774446364e6f586b796a610d7e8201527f33566a484e4751494e76426a5a734a4a3377466141516d6f5a575a5970416961610d9e8201527f574f466e6e686455524176576b557a77693062677a5a4158796f445545714863610dbe8201527f57307069454c574f777168773365765478444957724e32495371525151454c41610dde8201527f4d32365334486c723548552f48784a43436844424a6b756b6341573856415430610dfe8201527f6770545a544b4e48677a444f7234314751656a4f34677a416e6b577077464752610e1e8201527f43334c625231787a4b434875365635694674674c704f384b51596d5965467868610e3e8201527f4c32643838736469506a2f76306b427a636c51637954735766324d6445394944610e5e8201527f386d5858576a72434b253242354532756e336e6976656973526e726971317548610e7e8201527f594d6a6a69694945304b6466674d6f3163476d6b557254624f30356732737633610e9e8201527f477673525971762f61457736375472644f705435567a4641364131417939634b610ebe8201527f6f44667762544a64445750524e57517354796a6d3772486249734b466b6f4f2f610ede8201527f5a4c4376735966785973337768534338614c49344b765677373773336e347a48610efe8201527f67697061634a6e435362463945727a53357069386343577655597a4f5064327a610f1e8201527f684a2f4750437a53684f453378596c634f3350796164586a54334f6b68706841610f3e8201527f58465853766865544e5355525446565641486f4a6d7949726b6a454b6f517746610f5e8201527f4730303554334158643935764e30446d336d427332786746546c253242513572610f7e8201527f73416a6e744768707a6f62643642374e7a52664e56653130446f4e5639343753610f9e8201527f59646f635252624776636d785456786f61367a717756376d416e773544314745610fbe8201527f5474327a48382532425476514256356e37672f32615768743979794e594c3974610fde8201527f4f42744167384846435945316d4e775432454232467538544968543776565241610ffe8201527f3461587a6e6b3670545a4e6779696f73747749364b654655374c696c7041253261101e8201527f42334234474a794277574d327062466a4876734a3747754f6f616b6a6d46746a61103e8201527f59344c6254396c323239253242453646374c4475577a744c6e333749786b386a61105e8201527f356c42564b33774c7369362f416641756f6a34396c4d6b5653545045396b704761107e8201527f64304c724555534a4941413070596c4178414d642f4e4f46776f4a446458466961109e8201527f307a4f5744422f54464a705666575642574f516274724a556230636c663369256110be8201527f3242575072446f596c65545674564f45306d36793564487444725551776f414c6110de8201527f7455523365585364444d4e785866656a594674764c626c726c4a7777484b2f456110fe8201527f6957504a616b32574b35386e684e6f4c6a615a55475841756f32656f5777464561111e8201527f66612f445334496958717246714779633348726939785132693243352f73357661113e8201527f7a424d30793777334d4473774d3759325247427172464d6778374f696325324261115e8201527f30497a736d5678617a5473305263666a324f3334532f525639503269486f427561117e8201527f6c4b49594244665a46654c53356439725379664a64536c67683268644d72324f61119e8201527f5552334b6e6c506e4f41785477314a384c4d325a776e4671765a745a4a6c78786111be8201527f343873776243743272316b664875443756624831326159383849437456734b786111de8201527f4b742f31726b616c42414d74782f6f6f6d43445059626b556f4c6344624b436a6111fe8201527f7675713953544467746a584744715735564b36686347654f46697a6a3643714c61121e8201527f4f49716b57783477733245504d444e7378253242613661533230384f39784c3061123e8201527f526146586f394241645530706e452532424c695359334b536f4a41525978646e61125e8201527f7a69545a4d706961442f3438496969393834446151357976656378414673735761127e8201527f792f686274696d63253242704c386b35796f70496d4a627948712f6138797a6c61129e8201527f6c37726f4f7a586d786d4163337459585363546b65734d6344324939315a36336112be8201527f6549312f394a627755716b36737863394b52677277574d414e6543314e6e39756112de8201527f4779775473706d5538712532426c5a6d43714d674153363662674841476a514b6112fe8201527f73754a334451416a5235346d356a4c7a5a616e546c62646530253242726e663461131e8201527f385a574138546c32673277414779427748516e3552322532424e6a726542677861133e8201527f626c734e46627554776d6862414a48737a2f72416f61764c4f34317874767a5961135e8201527f4768336e4c4a426b41506a7578424a445248333048426575385567436978464e61137e8201527f437951322f4b253242385157372f6530253242664f2532423436524e5730657961139e8201527f4c726f39446a5467704a4e4d3547385179306c54644f756d73773066715045696113be8201527f393646702532424830634d774e6f376a787a596d6e4e664d5a6d64506c7932706113de8201527f6f7132575065476d67507136474c78504e34536c4b486e7870624f69754c58516113fe8201527f75583155715031676a6f38426136536c55314f416d5267707a7531735444584a61141e8201527f50754d3338546f387130344c324e777970653837327777556741675a6c70386461143e8201527f6b5166397a38544d43624d6b596b3758484375333564375a5a41656f346b5a4b61145e8201527f68784953386945354c546a334c4f6976485a7268394a3870337a4c5a436a776361147e8201527f6970354452694b6e576e49664c33386b4a684d7452776a67553525324256726d61149e8201527f714b6c6739307a376a64732f4238444b646b464c76483353253242376f4838616114be8201527f6c445a6c626734533155583574434d445342324f364b756c7a41344b763067376114de8201527f314251643054464b7733685358696e62374e6c304258725873514e6376436b386114fe8201527f6d6f394f786965783559627a78564e2f6b3738336f48545a495777393079495a61151e8201527f777672697164475473586e54384965705437597946434f4a6741395a3042794961153e8201527f455956735478522f6b73616b324268376f4b767034766e695530364d57317a4261155e8201527f4672746568647a306b6b587951786a426d7965645636644d596545386146787461157e8201527f6575777355466136466c6c54446c716430707a525a77473663467266574d627061159e8201527f384738587a6a66624d253242354658657076356f457273696c363458783663376115be8201527f5841576275696d3666387347494d58666f334a6971476b703333376854536a676115de8201527f65636862364f42472f327a31376a6f6d4469476d253242476c623146553069656115fe8201527f6e7552796977654c576767447a6d4655765545556a5a6f377356544877684f4661161e8201527f504d6b4e737146423977796d6b45307639666d7477453854377135384e594f3761163e8201527f787534623833766e46766c35755378446c472532426b4f51675249644f346a6761165e8201527f7a786a53486a4b4c7332742f6c684f647771766131415744437072763344345361167e8201527f34523741625934544362664b4637744265363554343551347a7a49714433316161169e8201527f79797557716a692532424636585337535439483943314f342f694b366b4775766116be8201527f6b512f664e3537487837456533373435622f76766e2f62482f58253242392f256116de8201527f32426762656d684f416d49705576755157757344764b517578394a44564e734b6116fe8201527f673651636d6b73515341445530346347524c523768466f5a326337785545664761171e8201527f253242776b755459474d764c6a422f6550634936416847686e5735717a45416961173e8201527f4a586377564545775869654e70536c317a6a457253253242435325324248634c61175e8201527f6f52506d7661324d6767412f69794c67536f544a555767733442794149514f3061177e8201527f4f6f705a487656627a6844494c65557155677a7a48492f667950474e7879777361179e8201527f6f796c6865534639577662795363336b4544716b32415636436c4364635535536117be8201527f6e6c4e6e4963394b794d63384c79622532423867484f4a795173466c4c6250526117de8201527f796d6d374a42743349545a544162314732444252496b514b51705451396939626117fe8201527f3665435353387a4d366161525364544b5657524d336663454a4c644b61746e7361181e8201527f724959774e4a55253242733048364461757832775a35686733706c653042474861183e8201527f756b316b4543734859446461496d4b7025324233463542317859763763486b7161185e8201527f644475306a4b645273657a3531376d63563641685148346931484e3173766c6a61187e8201527f5248366845454672682532426e72726d47316e33307a4d346749776d694d774561189e8201527f624b6842545564423141486f582532424b6741517a4f48543946494f71436b526118be8201527f4e4e623273397170496943534f753167576868497343564a73765771457175356118de8201527f47624a514b4e6a61427465394c4f69676368414a7665475773394332323033766118fe8201527f6f6e476c6b77725251323464646732796345646157554456734441785548734961191e8201527f77773665615234464665336d4a416b66426d5a6452395264774a485a6d47645261193e8201527f7950436a706a627a31712f584a34534949446b66384b4b6e6e32456c4b6d794c61195e8201527f69573442513836733151554b2f76426867524e776548766c5968687a7238706361197e8201527f67704b4b6d6f61576a7036426b594f48446c7835734b5647336365474539657661199e8201527f506e773563646667454242676f554946536238587632504553314772446a78456119be8201527f69524b6b697846716a54704d6d544b6b693148726a7a354368517155717845716119de8201527f544c6c4b6c53715571314772547231476a527130717846717a62744f6e5347656119fe8201527f3668374a6d627a4968355a6544696c315a58536a7430774375616b336c6e476f611a1e8201527f5655506f53734e663337394b326a6274716d44674d69485a42665a6c68324839611a3e8201527f75773738495469314a466a585653662f4336634f55667a346f30644178305447611a5e8201527f777448446863666a3443516d49694531444d5a42546b6c4e5a557065566f614f611a7e8201527f6e717633733234314e50503965766574594768435a50576a4979747332706173611a9e8201527f436a25324270556a54596c336b615574374f744b4a6136355850396d356e6367611abe8201527f364e686a685a587032762532426d57724341545a754a303368316b6a55756976611ade8201527f5067596e6a6e35744b4a4f6b326e6362703251414559585a69304b496d50356b611afe8201527f744961466e366b5a397743253237253239253230666f726d6174253238253237611b1e8201527f776f666632253237253239253342666f6e742d7765696768742533412532306e611b3e8201527f6f726d616c253342666f6e742d7374796c652533412532306e6f726d616c2533611b5e8201527f42666f6e742d646973706c617925334125323073776170253342253744746578611b7e8201527f74253230253742666f6e742d66616d696c792533412532302532375072657373611b9e8201527f2532305374617274253230325025323725334266696c6c253341253230776869611bbe8201527f74652537442e76616c7565253230253742666f6e742d73697a65253341253230611bde8201527f313070782533422537442e6e616d65253230253742666f6e742d73697a652533611bfe8201527f412532303470782533422537442533432f7374796c652533452533432f646566611c1e8201527f7325334525334372656374253230776964746825334425323738392532372532611c3e8201527f30686569676874253344253237353525323725323066696c6c25334425323762611c5e8201527f6c61636b2532372532302f253345253343726563742532307825334425323735611c7e8201527f2e3525323725323079253344253237352e352532372532307769647468253344611c9e8201527f2532373738253237253230686569676874253344253237343425323725323066611cbe8201527f696c6c2533442532372532333030303046462532372532302f25334525334374611cde8201527f657874253230746578742d616e63686f722533442532376d6964646c65253237611cfe8201527f2532307825334425323734342e35253237253230792533442532373333253237611d1e8201527f253230636c61737325334425323776616c756525323725334500000000000000611d3e820152612ba5612b9e6129f5611d5784018a61055b565b7f2533432f746578742533452533437265637425323078253344253237352e352581527f323725323079253344253237352e35253237253230776964746825334425323760208201527f373825323725323068656967687425334425323734342532372532307374726f60408201527f6b652533442532372532334646344630412532372532307374726f6b652d776960608201527f647468253344253237332532372532302f25334525334372656374253230782560808201527f334425323733302532372532307925334425323734352e35253237253230776960a08201527f647468253344253237353825323725323068656967687425334425323738253260c08201527f3725323066696c6c2533442532372532334646344630412532372532302f253360e08201527f4525334374657874253230746578742d616e63686f72253344253237656e64256101008201527f32372532307825334425323738372532372532307925334425323735322532376101208201527f253230636c6173732533442532376e616d6525323725334500000000000000006101408201526101580190565b86886105e3565b602160f81b81529050612bbb600182018561055b565b7f2533432f746578742533452533432f737667253345227d00000000000000000081526017019a995050505050505050505056fea26469706673582212206a2c00c13ddb4f1bcd7ee36e36f0c874d7d9dadcf38306eab3610b5a6e7af83464736f6c63430008110033", + "nonce": "0x2" + }, + "additionalContracts": [], + "isFixedGasLimit": false + }, + { + "hash": "0x075362508078c3de0b17a6ca31551a1f0d5fe9e361b6425268e508489eeb8475", + "transactionType": "CREATE", + "contractName": null, + "contractAddress": "0xCf7Ed3AccA5a467e9e704C703E8D87F634fB0Fc9", + "function": null, + "arguments": null, + "transaction": { + "type": "0x00", + "from": "0xf39fd6e51aad88f6f4ce6ab8827279cfffb92266", + "gas": "0x42230", + "value": "0x0", + "data": "0x608060405234801561001057600080fd5b506102cf806100206000396000f3fe608060405234801561001057600080fd5b506004361061004c5760003560e01c80630194db8e14610051578063072bdcc214610076578063a391c15b14610089578063b67d77c51461009c575b600080fd5b61006461005f366004610160565b6100af565b60405190815260200160405180910390f35b610064610084366004610160565b6100ef565b61006461009736600461021e565b610129565b6100646100aa36600461021e565b61013e565b600080805b83518110156100e8578381815181106100cf576100cf610240565b60200260200101518201915080806001019150506100b4565b5092915050565b60006001815b83518110156100e85783818151811061011057610110610240565b60200260200101518202915080806001019150506100f5565b60006101358284610256565b90505b92915050565b60006101358284610278565b634e487b7160e01b600052604160045260246000fd5b6000602080838503121561017357600080fd5b823567ffffffffffffffff8082111561018b57600080fd5b818501915085601f83011261019f57600080fd5b8135818111156101b1576101b161014a565b8060051b604051601f19603f830116810181811085821117156101d6576101d661014a565b6040529182528482019250838101850191888311156101f457600080fd5b938501935b82851015610212578435845293850193928501926101f9565b98975050505050505050565b6000806040838503121561023157600080fd5b50508035926020909101359150565b634e487b7160e01b600052603260045260246000fd5b60008261027357634e487b7160e01b600052601260045260246000fd5b500490565b8181038181111561013857634e487b7160e01b600052601160045260246000fdfea2646970667358221220fcdef23ba4219270ddb3ab764e22a87e229c05e6f1dfc4eeea983fa1a1dac91f64736f6c63430008110033", + "nonce": "0x3" + }, + "additionalContracts": [], + "isFixedGasLimit": false + }, + { + "hash": "0x079780e50227b76b5c883c3c092d3174490a82ed028a04828637663583d24312", + "transactionType": "CREATE", + "contractName": "Evmsheet", + "contractAddress": "0xDc64a140Aa3E981100a9becA4E685f962f0cF6C9", + "function": null, + "arguments": [ + "0x9fE46736679d2D9a65F0992F2272dE9f3c7fa6e0", + "10000000000000000" + ], + "transaction": { + "type": "0x00", + "from": "0xf39fd6e51aad88f6f4ce6ab8827279cfffb92266", + "gas": "0x34bf99", + "value": "0x0", + "data": "0x608060405234801561001057600080fd5b50604051612ed9380380612ed983398101604081905261002f916100b1565b61003833610061565b600280546001600160a01b0319166001600160a01b0393909316929092179091556001556100eb565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b600080604083850312156100c457600080fd5b82516001600160a01b03811681146100db57600080fd5b6020939093015192949293505050565b612ddf806100fa6000396000f3fe608060405260043610620000a95760003560e01c80638da5cb5b116200006c5780638da5cb5b146200016d578063ab2fa65a146200018d578063ae28505e14620001b4578063c56c4cf114620001d9578063f2fde38b14620001fb578063f52be2a2146200022057600080fd5b806303fb31e814620000ae5780631164c83d14620000d5578063145e414714620000ec5780635787cacb146200012e578063715018a61462000155575b600080fd5b348015620000bb57600080fd5b50620000d3620000cd36600462000778565b62000247565b005b620000d3620000e6366004620007e9565b62000273565b348015620000f957600080fd5b50620001116200010b36600462000864565b620004b2565b6040516001600160a01b0390911681526020015b60405180910390f35b3480156200013b57600080fd5b50620001466200054f565b60405162000125919062000891565b3480156200016257600080fd5b50620000d3620005b3565b3480156200017a57600080fd5b506000546001600160a01b031662000111565b3480156200019a57600080fd5b50620001a5620005cb565b604051620001259190620008e0565b348015620001c157600080fd5b5062000111620001d336600462000930565b620005f7565b348015620001e657600080fd5b5060025462000111906001600160a01b031681565b3480156200020857600080fd5b50620000d36200021a36600462000778565b62000622565b3480156200022d57600080fd5b506200023860015481565b60405190815260200162000125565b62000251620006a1565b600280546001600160a01b0319166001600160a01b0392909216919091179055565b60015434146200029d5760405163723a79e360e11b81523460048201526024015b60405180910390fd5b600060405180602001620002b1906200074d565b6020820181038252601f19601f8201166040525090506000828251602084016000f56002546040516356d3163d60e01b81526001600160a01b0391821660048201529192508216906356d3163d90602401600060405180830381600087803b1580156200031d57600080fd5b505af115801562000332573d6000803e3d6000fd5b505060405163c47f002760e01b81526001600160a01b038416925063c47f0027915062000366908a908a906004016200094a565b600060405180830381600087803b1580156200038157600080fd5b505af115801562000396573d6000803e3d6000fd5b5050604051635c26412360e11b81526001600160a01b038416925063b84c82469150620003ca90889088906004016200094a565b600060405180830381600087803b158015620003e557600080fd5b505af1158015620003fa573d6000803e3d6000fd5b505060405163f2fde38b60e01b81523260048201526001600160a01b038416925063f2fde38b9150602401600060405180830381600087803b1580156200044057600080fd5b505af115801562000455573d6000803e3d6000fd5b5050600380546001810182556000919091527fc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b0180546001600160a01b0319166001600160a01b0394909416939093179092555050505050505050565b600060ff60f81b838360405180602001620004cd906200074d565b6020820181038252601f19601f82011660405250805190602001206040516020016200053094939291906001600160f81b031994909416845260609290921b6bffffffffffffffffffffffff191660018401526015830152603582015260550190565b60408051601f1981840301815291905280516020909101209392505050565b60606003805480602002602001604051908101604052809291908181526020018280548015620005a957602002820191906000526020600020905b81546001600160a01b031681526001909101906020018083116200058a575b5050505050905090565b620005bd620006a1565b620005c96000620006fd565b565b606060405180602001620005df906200074d565b601f1982820381018352601f90910116604052919050565b600381815481106200060857600080fd5b6000918252602090912001546001600160a01b0316905081565b6200062c620006a1565b6001600160a01b038116620006935760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b606482015260840162000294565b6200069e81620006fd565b50565b6000546001600160a01b03163314620005c95760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015260640162000294565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b612430806200097a83390190565b80356001600160a01b03811681146200077357600080fd5b919050565b6000602082840312156200078b57600080fd5b62000796826200075b565b9392505050565b60008083601f840112620007b057600080fd5b50813567ffffffffffffffff811115620007c957600080fd5b602083019150836020828501011115620007e257600080fd5b9250929050565b6000806000806000606086880312156200080257600080fd5b853567ffffffffffffffff808211156200081b57600080fd5b6200082989838a016200079d565b909750955060208801359150808211156200084357600080fd5b5062000852888289016200079d565b96999598509660400135949350505050565b600080604083850312156200087857600080fd5b62000883836200075b565b946020939093013593505050565b6020808252825182820181905260009190848201906040850190845b81811015620008d45783516001600160a01b031683529284019291840191600101620008ad565b50909695505050505050565b600060208083528351808285015260005b818110156200090f57858101830151858201604001528201620008f1565b506000604082860101526040601f19601f8301168501019250505092915050565b6000602082840312156200094357600080fd5b5035919050565b60208152816020820152818360408301376000818301604090810191909152601f909201601f1916010191905056fe60806040523480156200001157600080fd5b50604051806040016040528060078152602001660536865657420360cc1b815250604051806040016040528060048152602001630534854360e41b81525062000069620000636200008f60201b60201c565b62000093565b600162000077838262000188565b50600262000086828262000188565b50505062000254565b3390565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b634e487b7160e01b600052604160045260246000fd5b600181811c908216806200010e57607f821691505b6020821081036200012f57634e487b7160e01b600052602260045260246000fd5b50919050565b601f8211156200018357600081815260208120601f850160051c810160208610156200015e5750805b601f850160051c820191505b818110156200017f578281556001016200016a565b5050505b505050565b81516001600160401b03811115620001a457620001a4620000e3565b620001bc81620001b58454620000f9565b8462000135565b602080601f831160018114620001f45760008415620001db5750858301515b600019600386901b1c1916600185901b1785556200017f565b600085815260208120601f198616915b82811015620002255788860151825594840194600190910190840162000204565b5085821015620002445787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b6121cc80620002646000396000f3fe608060405234801561001057600080fd5b50600436106102275760003560e01c8063715018a611610130578063b85d8b85116100b8578063cf0983981161007c578063cf09839814610512578063cfbe95d814610535578063df4ca20614610556578063e985e9c514610576578063f2fde38b146105a457600080fd5b8063b85d8b85146104a4578063b88d4fde146104ce578063b8c368ec146104e1578063c47f0027146104ec578063c87b56dd146104ff57600080fd5b806395d89b41116100ff57806395d89b4114610439578063a22cb46514610441578063b46ebb1214610454578063b6d658e114610467578063b84c82461461049157600080fd5b8063715018a6146103fa578063768d5029146104025780638ada6b0f146104155780638da5cb5b1461042857600080fd5b80631b06443c116101b35780634f6ccce7116101825780634f6ccce71461038157806356d3163d146103a15780636352211e146103b45780636a0abc74146103c757806370a08231146103e757600080fd5b80631b06443c14610335578063206848f61461034857806323b872dd1461035b57806342842e0e1461036e57600080fd5b8063081812fc116101fa578063081812fc146102a1578063095ea7b3146102e2578063172b9eed146102f757806318160ddd1461030a5780631941fd141461031357600080fd5b806301ffc9a71461022c57806302f3c4c91461025457806306fdde03146102745780630715a24a1461027c575b600080fd5b61023f61023a36600461176a565b6105b7565b60405190151581526020015b60405180910390f35b610267610262366004611861565b610609565b60405161024b9190611951565b610267610638565b6102936fffffffffffffffffffffffffffffffff81565b60405190815260200161024b565b6102ca6102af366004611964565b6005602052600090815260409020546001600160a01b031681565b6040516001600160a01b03909116815260200161024b565b6102f56102f036600461197d565b6106c6565b005b6102676103053660046119a9565b6107ad565b61029360075481565b610326610321366004611964565b610875565b60405161024b939291906119de565b6102ca610343366004611a0e565b61092a565b610326610356366004611964565b6109e3565b6102f5610369366004611a2b565b610ae1565b6102f561037c366004611a2b565b610ca8565b61029361038f366004611964565b60086020526000908152604090205481565b6102f56103af366004611a0e565b610da0565b6102ca6103c2366004611964565b610dca565b6103da6103d53660046119a9565b610e1c565b60405161024b9190611a6c565b6102936103f5366004611a0e565b610e60565b6102f5610ec3565b6102f5610410366004611af9565b610ed7565b6009546102ca906001600160a01b031681565b6000546001600160a01b03166102ca565b610267611035565b6102f561044f366004611b63565b611042565b610267610462366004611964565b6110ae565b61047a610475366004611964565b611258565b60408051921515835260208301919091520161024b565b6102f561049f366004611ba1565b611275565b6104b56104b2366004611964565b90565b6040516001600160e01b0319909116815260200161024b565b6102f56104dc366004611be3565b6112c6565b6102ca600160801b81565b6102f56104fa366004611ba1565b6113ae565b61026761050d366004611964565b6113ff565b61023f610520366004611a0e565b600160801b6001600160a01b03919091161090565b61023f610543366004611861565b516001600160a01b0316600160801b1490565b610569610564366004611964565b6114c9565b60405161024b9190611c16565b61023f610584366004611c4d565b600660209081526000928352604080842090915290825290205460ff1681565b6102f56105b2366004611a0e565b611526565b60006301ffc9a760e01b6001600160e01b0319831614806105e857506380ac58cd60e01b6001600160e01b03198316145b806106035750635b5e139f60e01b6001600160e01b03198316145b92915050565b6060816020015160405160200161062291815260200190565b6040516020818303038152906040529050919050565b6001805461064590611c7b565b80601f016020809104026020016040519081016040528092919081815260200182805461067190611c7b565b80156106be5780601f10610693576101008083540402835291602001916106be565b820191906000526020600020905b8154815290600101906020018083116106a157829003601f168201915b505050505081565b6000818152600360205260409020546001600160a01b03163381148061070f57506001600160a01b038116600090815260066020908152604080832033845290915290205460ff165b6107515760405162461bcd60e51b815260206004820152600e60248201526d1393d517d055551213d49256915160921b60448201526064015b60405180910390fd5b60008281526005602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b606060006107ba83610e1c565b9050606060005b825181101561086d576000806107ef8584815181106107e2576107e2611cb5565b6020026020010151611258565b9150915081156108335783610803826110ae565b61080c90611ccb565b60405160200161081d929190611cef565b6040516020818303038152906040529350610858565b6040516108469085908390602001611cef565b60405160208183030381529060405293505b5050808061086590611d27565b9150506107c1565b509392505050565b600a602052600090815260409020805460018201546002830180546001600160a01b039093169391926108a790611c7b565b80601f01602080910402602001604051908101604052809291908181526020018280546108d390611c7b565b80156109205780601f106108f557610100808354040283529160200191610920565b820191906000526020600020905b81548152906001019060200180831161090357829003601f168201915b5050505050905083565b6000600160801b6001600160a01b03831610156109da576000610955836001600160a01b03166110ae565b604051632d737e4960e21b8152909150735fbdb2315678afecb367f032d93f642f64180aa39063b5cdf92490610992908490600090600401611d40565b602060405180830381865af41580156109af573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906109d39190611d62565b9392505050565b5090565b919050565b60008181526003602052604081205481906060906001600160a01b0316610a1057600160801b9250610a2b565b6000848152600a60205260409020546001600160a01b031692505b6000848152600a60205260409020600181015460029091018054859291908190610a5490611c7b565b80601f0160208091040260200160405190810160405280929190818152602001828054610a8090611c7b565b8015610acd5780601f10610aa257610100808354040283529160200191610acd565b820191906000526020600020905b815481529060010190602001808311610ab057829003601f168201915b505050505090509250925092509193909250565b6000818152600360205260409020546001600160a01b03848116911614610b375760405162461bcd60e51b815260206004820152600a60248201526957524f4e475f46524f4d60b01b6044820152606401610748565b6001600160a01b038216610b815760405162461bcd60e51b81526020600482015260116024820152701253959053125117d49150d25412515395607a1b6044820152606401610748565b336001600160a01b0384161480610bbb57506001600160a01b038316600090815260066020908152604080832033845290915290205460ff165b80610bdc57506000818152600560205260409020546001600160a01b031633145b610c195760405162461bcd60e51b815260206004820152600e60248201526d1393d517d055551213d49256915160921b6044820152606401610748565b6001600160a01b0380841660008181526004602090815260408083208054600019019055938616808352848320805460010190558583526003825284832080546001600160a01b03199081168317909155600590925284832080549092169091559251849392917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b610cb3838383610ae1565b6001600160a01b0382163b1580610d5c5750604051630a85bd0160e11b8082523360048301526001600160a01b03858116602484015260448301849052608060648401526000608484015290919084169063150b7a029060a4016020604051808303816000875af1158015610d2c573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610d509190611d7b565b6001600160e01b031916145b610d9b5760405162461bcd60e51b815260206004820152601060248201526f155394d0519157d49150d2541251539560821b6044820152606401610748565b505050565b610da861159f565b600980546001600160a01b0319166001600160a01b0392909216919091179055565b6000818152600360205260409020546001600160a01b0316806109de5760405162461bcd60e51b815260206004820152600a6024820152691393d517d3525395115160b21b6044820152606401610748565b60608082516040519150602081048252602082016020850160005b83811015610e4f578181015183820152602001610e37565b505050810160200160405292915050565b60006001600160a01b038216610ea75760405162461bcd60e51b815260206004820152600c60248201526b5a45524f5f4144445245535360a01b6044820152606401610748565b506001600160a01b031660009081526004602052604090205490565b610ecb61159f565b610ed560006115f9565b565b6000858152600360205260409020546001600160a01b0316610f2f57610efd3286611649565b60078054600090815260086020526040812087905581546001929190610f24908490611d98565b90915550610f889050565b6000858152600360205260409020546001600160a01b03163214610f8857600085815260036020526040908190205490516324f3f02560e21b81526001600160a01b039091166004820152326024820152604401610748565b6040518060600160405280856001600160a01b0316815260200184815260200183838080601f0160208091040260200160405190810160405280939291908181526020018383808284376000920182905250939094525050878152600a6020908152604091829020845181546001600160a01b0319166001600160a01b0390911617815590840151600182015590830151909150600282019061102b9082611df9565b5050505050505050565b6002805461064590611c7b565b3360008181526006602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b6000818152600a6020908152604080832081516060818101845282546001600160a01b0316825260018301549482019490945260028201805494959491938401916110f890611c7b565b80601f016020809104026020016040519081016040528092919081815260200182805461112490611c7b565b80156111715780601f1061114657610100808354040283529160200191611171565b820191906000526020600020905b81548152906001019060200180831161115457829003601f168201915b505050505081525050905061119381516001600160a01b0316600160801b1490565b156111a1576109d381610609565b60006111b0826000015161092a565b905060006111bf836020015190565b905060006111d084604001516107ad565b90506000836001600160a01b031683836040516020016111f1929190611eb9565b60408051601f198184030181529082905261120b91611eea565b600060405180830381855afa9150503d8060008114611246576040519150601f19603f3d011682016040523d82523d6000602084013e61124b565b606091505b5098975050505050505050565b600080611266600284611f06565b60019081149493901c92915050565b61127d61159f565b7f8dca0271872d00b3de3abafca544c52fcd7d512dd852c9894fa2c118ac759a93600283836040516112b193929190611fce565b60405180910390a16002610d9b828483611ffe565b6112d1858585610ae1565b6001600160a01b0384163b15806113685750604051630a85bd0160e11b808252906001600160a01b0386169063150b7a02906113199033908a908990899089906004016120be565b6020604051808303816000875af1158015611338573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061135c9190611d7b565b6001600160e01b031916145b6113a75760405162461bcd60e51b815260206004820152601060248201526f155394d0519157d49150d2541251539560821b6044820152606401610748565b5050505050565b6113b661159f565b7fb65b7b5ea384affd30f77f842e057d29dd1b13f133adf69a724a8105b164ab75600183836040516113ea93929190611fce565b60405180910390a16001610d9b828483611ffe565b6000818152600360205260409020546060906001600160a01b03168061143b57604051630243d1a960e21b815260048101849052602401610748565b6000611446846110ae565b6009546040516328de0f2f60e01b81529192506001600160a01b0316906328de0f2f9061147c90879085906001906004016120fd565b600060405180830381865afa158015611499573d6000803e3d6000fd5b505050506040513d6000823e601f3d908101601f191682016040526114c19190810190612128565b949350505050565b604080516060808201835260008083526020830181905292820152906114ee836110ae565b6040805160608101825285815260009586526003602090815295829020546001600160a01b0316958101959095528401525090919050565b61152e61159f565b6001600160a01b0381166115935760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610748565b61159c816115f9565b50565b6000546001600160a01b03163314610ed55760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610748565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b6001600160a01b0382166116935760405162461bcd60e51b81526020600482015260116024820152701253959053125117d49150d25412515395607a1b6044820152606401610748565b6000818152600360205260409020546001600160a01b0316156116e95760405162461bcd60e51b815260206004820152600e60248201526d1053149150511657d3525395115160921b6044820152606401610748565b6001600160a01b038216600081815260046020908152604080832080546001019055848352600390915280822080546001600160a01b0319168417905551839291907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b6001600160e01b03198116811461159c57600080fd5b60006020828403121561177c57600080fd5b81356109d381611754565b634e487b7160e01b600052604160045260246000fd5b604051601f8201601f1916810167ffffffffffffffff811182821017156117c6576117c6611787565b604052919050565b6001600160a01b038116811461159c57600080fd5b600067ffffffffffffffff8211156117fd576117fd611787565b50601f01601f191660200190565b600082601f83011261181c57600080fd5b813561182f61182a826117e3565b61179d565b81815284602083860101111561184457600080fd5b816020850160208301376000918101602001919091529392505050565b60006020828403121561187357600080fd5b813567ffffffffffffffff8082111561188b57600080fd5b908301906060828603121561189f57600080fd5b6040516060810181811083821117156118ba576118ba611787565b60405282356118c8816117ce565b8152602083810135908201526040830135828111156118e657600080fd5b6118f28782860161180b565b60408301525095945050505050565b60005b8381101561191c578181015183820152602001611904565b50506000910152565b6000815180845261193d816020860160208601611901565b601f01601f19169290920160200192915050565b6020815260006109d36020830184611925565b60006020828403121561197657600080fd5b5035919050565b6000806040838503121561199057600080fd5b823561199b816117ce565b946020939093013593505050565b6000602082840312156119bb57600080fd5b813567ffffffffffffffff8111156119d257600080fd5b6114c18482850161180b565b60018060a01b0384168152826020820152606060408201526000611a056060830184611925565b95945050505050565b600060208284031215611a2057600080fd5b81356109d3816117ce565b600080600060608486031215611a4057600080fd5b8335611a4b816117ce565b92506020840135611a5b816117ce565b929592945050506040919091013590565b6020808252825182820181905260009190848201906040850190845b81811015611aa457835183529284019291840191600101611a88565b50909695505050505050565b60008083601f840112611ac257600080fd5b50813567ffffffffffffffff811115611ada57600080fd5b602083019150836020828501011115611af257600080fd5b9250929050565b600080600080600060808688031215611b1157600080fd5b853594506020860135611b23816117ce565b935060408601359250606086013567ffffffffffffffff811115611b4657600080fd5b611b5288828901611ab0565b969995985093965092949392505050565b60008060408385031215611b7657600080fd5b8235611b81816117ce565b915060208301358015158114611b9657600080fd5b809150509250929050565b60008060208385031215611bb457600080fd5b823567ffffffffffffffff811115611bcb57600080fd5b611bd785828601611ab0565b90969095509350505050565b600080600080600060808688031215611bfb57600080fd5b8535611c06816117ce565b94506020860135611b23816117ce565b602081528151602082015260018060a01b036020830151166040820152600060408301516060808401526114c16080840182611925565b60008060408385031215611c6057600080fd5b8235611c6b816117ce565b91506020830135611b96816117ce565b600181811c90821680611c8f57607f821691505b602082108103611caf57634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052603260045260246000fd5b80516020808301519190811015611caf5760001960209190910360031b1b16919050565b60008351611d01818460208801611901565b9190910191825250602001919050565b634e487b7160e01b600052601160045260246000fd5b600060018201611d3957611d39611d11565b5060010190565b604081526000611d536040830185611925565b90508260208301529392505050565b600060208284031215611d7457600080fd5b5051919050565b600060208284031215611d8d57600080fd5b81516109d381611754565b8082018082111561060357610603611d11565b601f821115610d9b57600081815260208120601f850160051c81016020861015611dd25750805b601f850160051c820191505b81811015611df157828155600101611dde565b505050505050565b815167ffffffffffffffff811115611e1357611e13611787565b611e2781611e218454611c7b565b84611dab565b602080601f831160018114611e5c5760008415611e445750858301515b600019600386901b1c1916600185901b178555611df1565b600085815260208120601f198616915b82811015611e8b57888601518255948401946001909101908401611e6c565b5085821015611ea95787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b6001600160e01b0319831681528151600090611edc816004850160208701611901565b919091016004019392505050565b60008251611efc818460208701611901565b9190910192915050565b600082611f2357634e487b7160e01b600052601260045260246000fd5b500690565b60008154611f3581611c7b565b808552602060018381168015611f525760018114611f6c57611f9a565b60ff1985168884015283151560051b880183019550611f9a565b866000528260002060005b85811015611f925781548a8201860152908301908401611f77565b890184019650505b505050505092915050565b81835281816020850137506000828201602090810191909152601f909101601f19169091010190565b604081526000611fe16040830186611f28565b8281036020840152611ff4818587611fa5565b9695505050505050565b67ffffffffffffffff83111561201657612016611787565b61202a836120248354611c7b565b83611dab565b6000601f84116001811461205e57600085156120465750838201355b600019600387901b1c1916600186901b1783556113a7565b600083815260209020601f19861690835b8281101561208f578685013582556020948501946001909201910161206f565b50868210156120ac5760001960f88860031b161c19848701351681555b505060018560011b0183555050505050565b6001600160a01b03868116825285166020820152604081018490526080606082018190526000906120f29083018486611fa5565b979650505050505050565b8381526060602082015260006121166060830185611925565b8281036040840152611ff48185611f28565b60006020828403121561213a57600080fd5b815167ffffffffffffffff81111561215157600080fd5b8201601f8101841361216257600080fd5b805161217061182a826117e3565b81815285602083850101111561218557600080fd5b611a0582602083016020860161190156fea26469706673582212203fc548aa4f22e6f4c01757ba3f2e0383630418b3d17601758718ab19a4d9918d64736f6c63430008110033a26469706673582212207932e8c793f9a96d9606a8907a6671f54c0fb1ed5a763048e13b429274e7706c64736f6c634300081100330000000000000000000000009fe46736679d2d9a65f0992f2272de9f3c7fa6e0000000000000000000000000000000000000000000000000002386f26fc10000", + "nonce": "0x4" + }, + "additionalContracts": [], + "isFixedGasLimit": false + } + ], + "receipts": [ + { + "transactionHash": "0x020c428f1942467e2d929c75c4f58bf38f78c9dc342c50e7660a2de7a956f233", + "transactionIndex": "0x0", + "blockHash": "0x0559b8a2574a89f40a0071a2a4aa2c5e7ae44192401508325f2139b0fb8706ac", + "blockNumber": "0xd", + "from": "0xf39Fd6e51aad88F6F4ce6aB8827279cffFb92266", + "to": null, + "cumulativeGasUsed": "0xf4240", + "gasUsed": "0x7a120", + "contractAddress": "0x5FbDB2315678afecb367f032d93F642f64180aa3", + "logs": [], + "status": "0x1", + "logsBloom": "0x00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", + "type": "0x0", + "effectiveGasPrice": "0xf4240" + }, + { + "transactionHash": "0x0504a5153f292e84b762d27330541b09881e08661ddaa17ed5cfaa6f0411697c", + "transactionIndex": "0x0", + "blockHash": "0x033442eae79a8713e95abd4b149152017e721c6dc8b4eee7cf72f3de9933109a", + "blockNumber": "0xe", + "from": "0xf39Fd6e51aad88F6F4ce6aB8827279cffFb92266", + "to": null, + "cumulativeGasUsed": "0xf4240", + "gasUsed": "0x7a120", + "contractAddress": "0xe7f1725E7734CE288F8367e1Bb143E90bb3F0512", + "logs": [], + "status": "0x1", + "logsBloom": "0x00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", + "type": "0x0", + "effectiveGasPrice": "0xf4240" + }, + { + "transactionHash": "0x071b6f0de2521af53ea5faa0d331922b3b5634ab33f216492667383965465d2e", + "transactionIndex": "0x0", + "blockHash": "0x052bf9768a5bb197ab735a8ee3133d1d82780d168dc262442341e925c310d59f", + "blockNumber": "0xf", + "from": "0xf39Fd6e51aad88F6F4ce6aB8827279cffFb92266", + "to": null, + "cumulativeGasUsed": "0xf4240", + "gasUsed": "0x7a120", + "contractAddress": "0x9fE46736679d2D9a65F0992F2272dE9f3c7fa6e0", + "logs": [], + "status": "0x1", + "logsBloom": "0x00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", + "type": "0x0", + "effectiveGasPrice": "0xf4240" + }, + { + "transactionHash": "0x075362508078c3de0b17a6ca31551a1f0d5fe9e361b6425268e508489eeb8475", + "transactionIndex": "0x0", + "blockHash": "0x01050fadfd70818ec2f31da38fd78798e4d7a3a553e65f14d2a6c91e7293b9ff", + "blockNumber": "0x10", + "from": "0xf39Fd6e51aad88F6F4ce6aB8827279cffFb92266", + "to": null, + "cumulativeGasUsed": "0xf4240", + "gasUsed": "0x7a120", + "contractAddress": "0xCf7Ed3AccA5a467e9e704C703E8D87F634fB0Fc9", + "logs": [], + "status": "0x1", + "logsBloom": "0x00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", + "type": "0x0", + "effectiveGasPrice": "0xf4240" + }, + { + "transactionHash": "0x079780e50227b76b5c883c3c092d3174490a82ed028a04828637663583d24312", + "transactionIndex": "0x0", + "blockHash": "0x00ac2fb27d35b7e0ec18e41b3f7e781cbfb338e5e94d42d6eb5e389ca275aac0", + "blockNumber": "0x11", + "from": "0xf39Fd6e51aad88F6F4ce6aB8827279cffFb92266", + "to": null, + "cumulativeGasUsed": "0xf4240", + "gasUsed": "0x7a120", + "contractAddress": "0xDc64a140Aa3E981100a9becA4E685f962f0cF6C9", + "logs": [ + { + "address": "0xDc64a140Aa3E981100a9becA4E685f962f0cF6C9", + "topics": [ + "0x8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0", + "0x0000000000000000000000000000000000000000000000000000000000000000", + "0x000000000000000000000000f39fd6e51aad88f6f4ce6ab8827279cfffb92266" + ], + "data": "0x", + "blockHash": "0x00ac2fb27d35b7e0ec18e41b3f7e781cbfb338e5e94d42d6eb5e389ca275aac0", + "blockNumber": "0x11", + "transactionHash": "0x079780e50227b76b5c883c3c092d3174490a82ed028a04828637663583d24312", + "removed": false + } + ], + "status": "0x1", + "logsBloom": "0x00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", + "type": "0x0", + "effectiveGasPrice": "0xf4240" + } + ], + "libraries": [ + "lib/eth-projects-monorepo/packages/eth-projects-contracts/contracts/lib/utils/Bytes.sol:Bytes:0x5fbdb2315678afecb367f032d93f642f64180aa3" + ], + "pending": [], + "returns": {}, + "timestamp": 1689584451, + "chain": 1263227476, + "multi": false, + "commit": "ecfc308" +} \ No newline at end of file diff --git a/packages/starksheet-solidity/broadcast/Evmsheet.s.sol/1263227476/run-latest.json b/packages/starksheet-solidity/broadcast/Evmsheet.s.sol/1263227476/run-latest.json new file mode 100644 index 00000000..128501ef --- /dev/null +++ b/packages/starksheet-solidity/broadcast/Evmsheet.s.sol/1263227476/run-latest.json @@ -0,0 +1,201 @@ +{ + "transactions": [ + { + "hash": "0x072cf396588bb7d15ecdfa1fae788cc73c5129f1b8fb0509be3a348b73373bf7", + "transactionType": "CREATE", + "contractName": "Bytes", + "contractAddress": "0x5FbDB2315678afecb367f032d93F642f64180aa3", + "function": null, + "arguments": null, + "transaction": { + "type": "0x00", + "from": "0xf39fd6e51aad88f6f4ce6ab8827279cfffb92266", + "gas": "0x1387ed", + "data": "0x6110d661003a600b82828239805160001a60731461002d57634e487b7160e01b600052600060045260246000fd5b30600052607381538281f3fe73000000000000000000000000000000000000000030146080604052600436106101625760003560e01c8063a5eb31ee116100cd578063d1ffb56111610086578063d1ffb561146103fb578063d442584f1461042b578063e004139614610454578063f1142fb314610474578063f647f8fb14610487578063f83b670f146104b257600080fd5b8063a5eb31ee14610344578063a8d8f00f1461036b578063b5cdf92414610396578063b63711df146103a9578063be8b3430146103bc578063c29616bd146103cf57600080fd5b80635ef849301161011f5780635ef8493014610241578063913c97b41461026b57806397e6175c1461029f57806399dd9bd7146102cb5780639ae4c3d1146102ec5780639cee499e1461031857600080fd5b8063042aa0841461016757806305d3bb74146101985780631a7431ef146101c0578063235266d2146101e357806348137709146101f65780634d66a2ae1461021b575b600080fd5b61017a610175366004610ec0565b6104de565b6040516001600160d01b031990911681526020015b60405180910390f35b6101ab6101a6366004610ec0565b610540565b60405163ffffffff909116815260200161018f565b6101d36101ce366004610f05565b61059d565b604051901515815260200161018f565b6101d36101f1366004610f4c565b610652565b610209610204366004610ec0565b6106b5565b60405160ff909116815260200161018f565b61022e610229366004610fa6565b610711565b60405161ffff909116815260200161018f565b61025461024f366004610ec0565b61071e565b60405165ffffffffffff909116815260200161018f565b61027e610279366004610ec0565b610772565b6040516fffffffffffffffffffffffffffffffff909116815260200161018f565b6102b26102ad366004610ec0565b6107d0565b6040516001600160a01b0319909116815260200161018f565b6102de6102d9366004610ec0565b61082e565b60405190815260200161018f565b6102ff6102fa366004610ec0565b61088c565b60405167ffffffffffffffff909116815260200161018f565b61032b610326366004610ec0565b6108e9565b6040516001600160d81b0319909116815260200161018f565b610357610352366004610ec0565b610946565b60405162ffffff909116815260200161018f565b61037e610379366004610ec0565b6109a3565b60405166ffffffffffffff909116815260200161018f565b6102de6103a4366004610ec0565b610a00565b6102ff6103b7366004610ec0565b610a55565b61022e6103ca366004610ec0565b610aa9565b6103e26103dd366004610ec0565b610b06565b6040516001600160c81b0319909116815260200161018f565b61040e610409366004610ec0565b610b5a565b6040516bffffffffffffffffffffffff909116815260200161018f565b61043e610439366004610ec0565b610bae565b60405164ffffffffff909116815260200161018f565b610467610462366004610fe3565b610c02565b60405161018f9190611031565b6102b2610482366004610ec0565b610d0f565b61049a610495366004610ec0565b610d64565b6040516001600160a01b03909116815260200161018f565b6104c56104c0366004610ec0565b610dc9565b6040516001600160f81b0319909116815260200161018f565b60006104eb82600661107f565b835110156105375760405162461bcd60e51b8152602060048201526014602482015273746f4279746573365f6f75744f66426f756e647360601b60448201526064015b60405180910390fd5b50016006015190565b600061054d82600461107f565b835110156105945760405162461bcd60e51b8152602060048201526014602482015273746f55696e7433325f6f75744f66426f756e647360601b604482015260640161052e565b50016004015190565b600080600190508354600260018083161561010002038216048451808214600181146105cc5760009450610644565b821561064457602083106001811461062957600189600052602060002060208a018581015b600284828410010361062057815183541461060f5760009950600093505b6001830192506020820191506105f1565b50505050610642565b6101008086040294506020880151851461064257600095505b505b509293505050505b92915050565b81518151600091600191811480831461066e57600092506106ab565b600160208701838101602088015b60028483851001036106a657805183511461069a5760009650600093505b6020928301920161067c565b505050505b5090949350505050565b60006106c282600161107f565b835110156107085760405162461bcd60e51b8152602060048201526013602482015272746f55696e74385f6f75744f66426f756e647360681b604482015260640161052e565b50016001015190565b600061064c826000610aa9565b600061072b82600661107f565b835110156105375760405162461bcd60e51b8152602060048201526014602482015273746f55696e7434385f6f75744f66426f756e647360601b604482015260640161052e565b600061077f82601061107f565b835110156107c75760405162461bcd60e51b8152602060048201526015602482015274746f55696e743132385f6f75744f66426f756e647360581b604482015260640161052e565b50016010015190565b60006107dd82600c61107f565b835110156108255760405162461bcd60e51b8152602060048201526015602482015274746f427974657331325f6f75744f66426f756e647360581b604482015260640161052e565b5001600c015190565b600061083b82602061107f565b835110156108835760405162461bcd60e51b8152602060048201526015602482015274746f427974657333325f6f75744f66426f756e647360581b604482015260640161052e565b50016020015190565b600061089982600861107f565b835110156108e05760405162461bcd60e51b8152602060048201526014602482015273746f55696e7436345f6f75744f66426f756e647360601b604482015260640161052e565b50016008015190565b60006108f682600561107f565b8351101561093d5760405162461bcd60e51b8152602060048201526014602482015273746f4279746573355f6f75744f66426f756e647360601b604482015260640161052e565b50016005015190565b600061095382600361107f565b8351101561099a5760405162461bcd60e51b8152602060048201526014602482015273746f55696e7432345f6f75744f66426f756e647360601b604482015260640161052e565b50016003015190565b60006109b082600761107f565b835110156109f75760405162461bcd60e51b8152602060048201526014602482015273746f55696e7435365f6f75744f66426f756e647360601b604482015260640161052e565b50016007015190565b6000610a0d82602061107f565b835110156108835760405162461bcd60e51b8152602060048201526015602482015274746f55696e743235365f6f75744f66426f756e647360581b604482015260640161052e565b6000610a6282600861107f565b835110156108e05760405162461bcd60e51b8152602060048201526014602482015273746f4279746573385f6f75744f66426f756e647360601b604482015260640161052e565b6000610ab682600261107f565b83511015610afd5760405162461bcd60e51b8152602060048201526014602482015273746f55696e7431365f6f75744f66426f756e647360601b604482015260640161052e565b50016002015190565b6000610b1382600761107f565b835110156109f75760405162461bcd60e51b8152602060048201526014602482015273746f4279746573375f6f75744f66426f756e647360601b604482015260640161052e565b6000610b6782600c61107f565b835110156108255760405162461bcd60e51b8152602060048201526014602482015273746f55696e7439365f6f75744f66426f756e647360601b604482015260640161052e565b6000610bbb82600561107f565b8351101561093d5760405162461bcd60e51b8152602060048201526014602482015273746f55696e7434305f6f75744f66426f756e647360601b604482015260640161052e565b606081610c1081601f61107f565b1015610c4f5760405162461bcd60e51b815260206004820152600e60248201526d736c6963655f6f766572666c6f7760901b604482015260640161052e565b610c59828461107f565b84511015610c9d5760405162461bcd60e51b8152602060048201526011602482015270736c6963655f6f75744f66426f756e647360781b604482015260640161052e565b606082158015610cbc5760405191506000825260208201604052610d06565b6040519150601f8416801560200281840101858101878315602002848b0101015b81831015610cf5578051835260209283019201610cdd565b5050858452601f01601f1916604052505b50949350505050565b6000610d1c82601061107f565b835110156107c75760405162461bcd60e51b8152602060048201526015602482015274746f427974657331365f6f75744f66426f756e647360581b604482015260640161052e565b6000610d7182601461107f565b83511015610db95760405162461bcd60e51b8152602060048201526015602482015274746f416464726573735f6f75744f66426f756e647360581b604482015260640161052e565b500160200151600160601b900490565b6000610dd682600161107f565b835110156107085760405162461bcd60e51b8152602060048201526014602482015273746f4279746573315f6f75744f66426f756e647360601b604482015260640161052e565b634e487b7160e01b600052604160045260246000fd5b600082601f830112610e4457600080fd5b813567ffffffffffffffff80821115610e5f57610e5f610e1d565b604051601f8301601f19908116603f01168101908282118183101715610e8757610e87610e1d565b81604052838152866020858801011115610ea057600080fd5b836020870160208301376000602085830101528094505050505092915050565b60008060408385031215610ed357600080fd5b823567ffffffffffffffff811115610eea57600080fd5b610ef685828601610e33565b95602094909401359450505050565b60008060408385031215610f1857600080fd5b82359150602083013567ffffffffffffffff811115610f3657600080fd5b610f4285828601610e33565b9150509250929050565b60008060408385031215610f5f57600080fd5b823567ffffffffffffffff80821115610f7757600080fd5b610f8386838701610e33565b93506020850135915080821115610f9957600080fd5b50610f4285828601610e33565b600060208284031215610fb857600080fd5b813567ffffffffffffffff811115610fcf57600080fd5b610fdb84828501610e33565b949350505050565b600080600060608486031215610ff857600080fd5b833567ffffffffffffffff81111561100f57600080fd5b61101b86828701610e33565b9660208601359650604090950135949350505050565b600060208083528351808285015260005b8181101561105e57858101830151858201604001528201611042565b506000604082860101526040601f19601f8301168501019250505092915050565b8082018082111561064c57634e487b7160e01b600052601160045260246000fdfea26469706673582212205bdf5bc4551862519f5370e0dcec38eefbbbe11b6a5bf19ce2846b4f8831a5dc64736f6c63430008110033", + "nonce": "0x0" + }, + "additionalContracts": [], + "isFixedGasLimit": false + }, + { + "hash": "0x054de20b4247d293c9de042e304c8c4029bdfc05cea7faa8dff455b5db78512f", + "transactionType": "CREATE", + "contractName": "MultiSendCallOnly", + "contractAddress": "0xe7f1725E7734CE288F8367e1Bb143E90bb3F0512", + "function": null, + "arguments": null, + "transaction": { + "type": "0x00", + "from": "0xf39fd6e51aad88f6f4ce6ab8827279cfffb92266", + "gas": "0x2e5c4", + "value": "0x0", + "data": "0x608060405234801561001057600080fd5b506101ae806100206000396000f3fe60806040526004361061001e5760003560e01c80638d80ff0a14610023575b600080fd5b6100366100313660046100c7565b610038565b005b805160205b818110156100ac578083015160f81c6001820184015160601c601583018501516035840186015160558501870160008560008114610082576001811461001e5761008e565b6000808585888a5af191505b508061009957600080fd5b505080605501850194505050505061003d565b505050565b634e487b7160e01b600052604160045260246000fd5b6000602082840312156100d957600080fd5b813567ffffffffffffffff808211156100f157600080fd5b818401915084601f83011261010557600080fd5b813581811115610117576101176100b1565b604051601f8201601f19908116603f0116810190838211818310171561013f5761013f6100b1565b8160405282815287602084870101111561015857600080fd5b82602086016020830137600092810160200192909252509594505050505056fea2646970667358221220c15490bbb756a4c3c49d6335b2e81d2d098647b0ea70174c2279f199b1d0800364736f6c63430008110033", + "nonce": "0x1" + }, + "additionalContracts": [], + "isFixedGasLimit": false + }, + { + "hash": "0x0178049afecd6afec6d0ba39c1d78847f55e8e460426e1e4e4cdaa81797a9002", + "transactionType": "CREATE", + "contractName": "BasicCellRenderer", + "contractAddress": "0x9fE46736679d2D9a65F0992F2272dE9f3c7fa6e0", + "function": null, + "arguments": null, + "transaction": { + "type": "0x00", + "from": "0xf39fd6e51aad88f6f4ce6ab8827279cfffb92266", + "gas": "0x3180ad", + "value": "0x0", + "data": "0x608060405234801561001057600080fd5b50612c25806100206000396000f3fe608060405234801561001057600080fd5b50600436106100365760003560e01c806306d4cd8b1461003b57806328de0f2f14610064575b600080fd5b61004e610049366004610322565b610077565b60405161005b919061038b565b60405180910390f35b61004e610072366004610404565b6100f1565b60606000610086600f846104fc565b90506000610095600f8361051e565b61009f9085610535565b905060006100ae826041610548565b60f81b9050806100c76100c2856001610548565b6101b6565b6040516020016100d8929190610577565b6040516020818303038152906040529350505050919050565b606060006100fe86610077565b905083838261018388735fbdb2315678afecb367f032d93f642f64180aa363b5cdf924909160006040518363ffffffff1660e01b81526004016101429291906105a8565b602060405180830381865af415801561015f573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906100c291906105ca565b87878660405160200161019c97969594939291906105f2565b604051602081830303815290604052915050949350505050565b606060006101c383610249565b600101905060008167ffffffffffffffff8111156101e3576101e36103a5565b6040519080825280601f01601f19166020018201604052801561020d576020820181803683370190505b5090508181016020015b600019016f181899199a1a9b1b9c1cb0b131b232b360811b600a86061a8153600a850494508461021757509392505050565b60008072184f03e93ff9f4daa797ed6e38ed64bf6a1f0160401b83106102885772184f03e93ff9f4daa797ed6e38ed64bf6a1f0160401b830492506040015b6d04ee2d6d415b85acef810000000083106102b4576d04ee2d6d415b85acef8100000000830492506020015b662386f26fc1000083106102d257662386f26fc10000830492506010015b6305f5e10083106102ea576305f5e100830492506008015b61271083106102fe57612710830492506004015b60648310610310576064830492506002015b600a831061031c576001015b92915050565b60006020828403121561033457600080fd5b5035919050565b60005b8381101561035657818101518382015260200161033e565b50506000910152565b6000815180845261037781602086016020860161033b565b601f01601f19169290920160200192915050565b60208152600061039e602083018461035f565b9392505050565b634e487b7160e01b600052604160045260246000fd5b60008083601f8401126103cd57600080fd5b50813567ffffffffffffffff8111156103e557600080fd5b6020830191508360208285010111156103fd57600080fd5b9250929050565b6000806000806060858703121561041a57600080fd5b84359350602085013567ffffffffffffffff8082111561043957600080fd5b818701915087601f83011261044d57600080fd5b81358181111561045f5761045f6103a5565b604051601f8201601f19908116603f01168101908382118183101715610487576104876103a5565b816040528281528a60208487010111156104a057600080fd5b8260208601602083013760006020848301015280975050505060408701359150808211156104cd57600080fd5b506104da878288016103bb565b95989497509550505050565b634e487b7160e01b600052601160045260246000fd5b60008261051957634e487b7160e01b600052601260045260246000fd5b500490565b808202811582820484141761031c5761031c6104e6565b8181038181111561031c5761031c6104e6565b8082018082111561031c5761031c6104e6565b6000815161056d81856020860161033b565b9290920192915050565b6001600160f81b031983168152815160009061059a81600185016020870161033b565b919091016001019392505050565b6040815260006105bb604083018561035f565b90508260208301529392505050565b6000602082840312156105dc57600080fd5b5051919050565b81818437506000910190815290565b7f646174613a6170706c69636174696f6e2f6a736f6e2c7b22646573637269707481527f696f6e223a2022537461726b7368656574222c20226e616d65223a202200000060208201528688603d8301376000878201602160f81b603d820152875161066481603e840160208c0161033b565b7f222c22696d616765223a2022646174613a696d6167652f7376672b786d6c2c25603e92909101918201527f334373766725323076696577426f782533442532373025323030253230383925605e8201527f3230353525323725323066696c6c2533442532376e6f6e65253237253230786d607e8201527f6c6e73253344253237687474702533412f2f7777772e77332e6f72672f323030609e8201527f302f737667253237253345253343646566732533452533437374796c6525334560be8201527f253430666f6e742d66616365253230253742666f6e742d66616d696c7925334160de8201527f253230253237507265737325323053746172742532303250253237253342737260fe8201527f6325334125323075726c25323825323764617461253341666f6e742f776f666661011e8201527f32253342626173653634253243643039474d6741424141414141424c3841413861013e8201527f41414141415235774141424b674141454141414141414141414141414141414161015e8201527f4141414141414141414141414150305a4756453063476a41624d42794358675a61017e8201527f6741494e794551674b3846545361517544524141424e67496b41344e4d42434161019e8201527f46687a5148684649623644566c42306a314f4d4253336f4f4953744562732f2f6101be8201527f2f6c4a776356727a47634f30676f684c45484d6369694443434e57695a6761306101de8201527f79625345555954514f6a4b427038546c737a7344526438716174586c333058746101fe8201527f30645a47467952305668444b776c62746c25324272734643773945316e64655961021e8201527f4a74732f37527762305673784d71576c636a6a775445537a2f5568752f77337361023e8201527f33746b6f496d70343464515168576f456d54337579526d70746f7553446b7a5761025e8201527f454138762f3932364a4b7539486f696e6e3673376674336d4965476c7737547161027e8201527f6437456f326a46517849766a5642494a70563269614f62547a68575932314e7461029e8201527f476772687434704d4b3457556a34624c7967542f51253242514c7879253242336102be8201527f6c482f362f6b6275496444497239446a724a496a6f394a7336524d58253242456102de8201527f6b37424f545a6b6d70397a347455524652566656307148504448375a7462364a6102fe8201527f616f6130684c335975616232473373667a72365776394536793569767025324261031e8201527f7135564c74426a514478476f5345304150313762336466376c61726a6525324261033e8201527f73637a6b7241744a334b6657304a342532424b323365744b4b556a383554616f61035e8201527f57473453346158436c427743413268676141652532423658396f696e32304e6261037e8201527f554a7264466767517049686d5247494d30372f7025324277375a7058316c473161039e8201527f6a6a51787073435141423438714445415042346950312f6a39592f4261686a356103be8201527f5943414e302f78714157496852616a6c6e694e654f50396e78433466667932556103de8201527f694843304e47386b686f6f567a6f7459334445417a417a41356b473735337a6a6103fe8201527f4853354d6e6d586b69496a6d54554d36556d4d3025324256346976752f48377861041e8201527f6a364666322f6b343472787a6449324141676742492f4c48416b394a7a35554d61043e8201527f496f4c7755344146455435725a464f33444d616655633061777351434879497061045e8201527f557a546b30784a474a454f6a4e6871436b474570496153474f6a714e466d2f5761047e8201527f4e434e3569636b71434d6e414165564c4d4c655867356971386b365752585a5261049e8201527f326c337042393831427a73475a743225324256696c4342723954494a674b67786104be8201527f365542514446253242566a4b44714e7741414948386a6949664d6e75384b68666104de8201527f584b486f4e3348634134477245786842324155442f795a554d423857547579496104fe8201527f413444634f4b656434397939504249616e426967734d454e38556b30766c547661051e8201527f304a58334e394d795a75544d763573655357413525324238556538504465547261053e8201527f645467474973566d4e33635856586a6463795275633434385866664176506e7361055e8201527f3575324d4531722532426a4731703137767a3849704f416e483444427367793361057e8201527f512f54376b33646d2f3846334232377355694877464631414f6c683055646e4961059e8201527f4471494e5164506355393145786f2f346252696a6a5169704e4e307a4c646c7a6105be8201527f504438496f547449734c38717162746f4f5149514a5a567849705931315073536105de8201527f55533231397a4c585066642f507667765751346372464d2532425769755671706105fe8201527f645a6f4e6475645872632f4745324d4a36656e3575635746694763375274364f61061e8201527f487676354d674c2532427a44733578444277696141315433554877326b63594361063e8201527f312f55666453316645316d37763742346537653350574848786533594f32483561065e8201527f25324241504f5a7965503025324251506553425468793078713965363241486a61067e8201527f6141556842432f364144484c6f476f4f657636412532426867487369317a613861069e8201527f71355a4e4d716a596c575a4d713867354248445574495370574a73526f52544a6106be8201527f56613049305a3957546b5371564b73507a3464586a7648746449684c6e7670746106de8201527f554c4330753542567579414d544b4a513930594b5267546e5769476b6d7153456106fe8201527f714b6d7256685259674b6b335443686255573671456f45637665577a6859535461071e8201527f4c32484e706735452f6d7151393956564467763352475435586d33637a68754c61073e8201527f3972685864316132372f736c5130686959366a643739614f5a43746a6f52687261075e8201527f623136575676514b725734477a786a7869723238494d697a2f7155447973495761077e8201527f7037516a667765347a556437614a735651575179524c554b484b42577938577661079e8201527f45565333584d53353656337757644f442532424638757639645477496d4b722f6107be8201527f5064626d5763775176456641616a7975566a70784e32704f56635769336c38776107de8201527f454c2f6d395070646f55494536253242504b5838315041546d67654f304231736107fe8201527f47454825324261707a353466646d534a7a333741686635366a4c7739756e504561081e8201527f35644d4b3025324237544639563843435466523979664e7355493474557a464661083e8201527f42326e536e384b4f626a64446964554c7034494a6873777878595172595a643661085e8201527f4e76436e55394d445825324252654c6e4d546d6c315a453972306b5077334e3261087e8201527f6752253242736a4573596d4953706b356c31497333594e614a4b6f6e7a65703761089e8201527f56637354316e556b62347048774b5a41796b614b6f43504630506f6d456876496108be8201527f5758656e6f5a767836774f4b313070316c3274546858793850316555776473766108de8201527f53715157766f424d7473674851554a614774494273756861776450545a5378596108fe8201527f707257757734647a7231564755744449465871726f4d4d69597346783857695461091e8201527f336463574b6f376d50554c79715657413972305974524a4c626957766a6e4c2561093e8201527f324272633452646767624e516c514141613264306d616236364d48447074314361095e8201527f6477626b51436253375053445a4d7a3746724f51713165636153304a6c74644161097e8201527f6c44527941587173364130586247707748676b70367572557757416272464d3361099e8201527f75794d764e4b6c344d6c435548537950416d3931776144454a3559595148754a6109be8201527f4d32304b575251737637486b61334770686c533258444b714f4b4245554753316109de8201527f65306b63316f323449494166486c4449794278584a4a656767423369386174566109fe8201527f67434f3064444f5a484a57596a564c416a6a397137765673456e72684b374568610a1e8201527f4c75427a42586d4d674554634531636d61436976504b6f4a766670466c794935610a3e8201527f4d70584234454325324245672f596d303454787843354e6c73596b74646f5951610a5e8201527f55656c38624673456c3748345a36734377622f38626b347458574658504b6a71610a7e8201527f5462526e64336e4c5770394f784941706c664b586747684e6c72443462354a4c610a9e8201527f5a367055753441726756614d366561357844574244476f7a707a4641376e6747610abe8201527f74596334486141775269475576637653653652414177335a576b564f4667764b610ade8201527f46364955696c4d49394964715155345134585264484866736666517770313955610afe8201527f434a49306a5773725433356f5578303678507268473271364d4533554f306c63610b1e8201527f635a557354454351784a44527854444b6c334c4948722f6162546f73686c6466610b3e8201527f51786a364f57745273466e6966444373473674336b426f344e6d424a6d615556610b5e8201527f54636c794951414a4c6a6e723042365a3859464d6e396b397967703752727848610b7e8201527f36766877624a4e41654b4d554436353974386746514a4d5377652f434f624850610b9e8201527f467671484746554e5266253242737245663354584b42725a76676b6369396972610bbe8201527f426d63442f7458616754474358634e68432532424f3539754c706e6673796f71610bde8201527f4c53313238374552776d38666165564f6d3857634437386c5a36594232793938610bfe8201527f5a4c6c4d3972557264324c514e6c324956643454727376675139363079377573610c1e8201527f5965306854506170576a71726c2532425837784665424e54253242315a644a4a610c3e8201527f572532424678745737584e7774634e7a7761672532425256656a6d4a6839656d610c5e8201527f6c495a4b69694e63694b3849554f4d33556a4a376342554e5847505853326c68610c7e8201527f253242687770676f4836567348524f63764569723372585970344c7769435a77610c9e8201527f3176486c43623552314d68623564536e4f326d6e6f475a6f5846315765574757610cbe8201527f6d7a694a314a555534715072306e694a536c4e424331636b4b6d4a6657625877610cde8201527f5577757449547a456d6a776770776142753464525066746a2f4e384143526e64610cfe8201527f616b2f4641674b674c37305058577839767a6b59322532426d34355473496b4c610d1e8201527f3037616f70444e6f676830535262535a534f397a744657516a376e574c676275610d3e8201527f364325324254374b6a44715a3667456e5277674d78306b4c5a77797962514f76610d5e8201527f514130773054782f354a42722f63595a6453574f546a774446364e6f586b796a610d7e8201527f33566a484e4751494e76426a5a734a4a3377466141516d6f5a575a5970416961610d9e8201527f574f466e6e686455524176576b557a77693062677a5a4158796f445545714863610dbe8201527f57307069454c574f777168773365765478444957724e32495371525151454c41610dde8201527f4d32365334486c723548552f48784a43436844424a6b756b6341573856415430610dfe8201527f6770545a544b4e48677a444f7234314751656a4f34677a416e6b577077464752610e1e8201527f43334c625231787a4b434875365635694674674c704f384b51596d5965467868610e3e8201527f4c32643838736469506a2f76306b427a636c51637954735766324d6445394944610e5e8201527f386d5858576a72434b253242354532756e336e6976656973526e726971317548610e7e8201527f594d6a6a69694945304b6466674d6f3163476d6b557254624f30356732737633610e9e8201527f477673525971762f61457736375472644f705435567a4641364131417939634b610ebe8201527f6f44667762544a64445750524e57517354796a6d3772486249734b466b6f4f2f610ede8201527f5a4c4376735966785973337768534338614c49344b765677373773336e347a48610efe8201527f67697061634a6e435362463945727a53357069386343577655597a4f5064327a610f1e8201527f684a2f4750437a53684f453378596c634f3350796164586a54334f6b68706841610f3e8201527f58465853766865544e5355525446565641486f4a6d7949726b6a454b6f517746610f5e8201527f4730303554334158643935764e30446d336d427332786746546c253242513572610f7e8201527f73416a6e744768707a6f62643642374e7a52664e56653130446f4e5639343753610f9e8201527f59646f635252624776636d785456786f61367a717756376d416e773544314745610fbe8201527f5474327a48382532425476514256356e37672f32615768743979794e594c3974610fde8201527f4f42744167384846435945316d4e775432454232467538544968543776565241610ffe8201527f3461587a6e6b3670545a4e6779696f73747749364b654655374c696c7041253261101e8201527f42334234474a794277574d327062466a4876734a3747754f6f616b6a6d46746a61103e8201527f59344c6254396c323239253242453646374c4475577a744c6e333749786b386a61105e8201527f356c42564b33774c7369362f416641756f6a34396c4d6b5653545045396b704761107e8201527f64304c724555534a4941413070596c4178414d642f4e4f46776f4a446458466961109e8201527f307a4f5744422f54464a705666575642574f516274724a556230636c663369256110be8201527f3242575072446f596c65545674564f45306d36793564487444725551776f414c6110de8201527f7455523365585364444d4e785866656a594674764c626c726c4a7777484b2f456110fe8201527f6957504a616b32574b35386e684e6f4c6a615a55475841756f32656f5777464561111e8201527f66612f445334496958717246714779633348726939785132693243352f73357661113e8201527f7a424d30793777334d4473774d3759325247427172464d6778374f696325324261115e8201527f30497a736d5678617a5473305263666a324f3334532f525639503269486f427561117e8201527f6c4b49594244665a46654c53356439725379664a64536c67683268644d72324f61119e8201527f5552334b6e6c506e4f41785477314a384c4d325a776e4671765a745a4a6c78786111be8201527f343873776243743272316b664875443756624831326159383849437456734b786111de8201527f4b742f31726b616c42414d74782f6f6f6d43445059626b556f4c6344624b436a6111fe8201527f7675713953544467746a584744715735564b36686347654f46697a6a3643714c61121e8201527f4f49716b57783477733245504d444e7378253242613661533230384f39784c3061123e8201527f526146586f394241645530706e452532424c695359334b536f4a41525978646e61125e8201527f7a69545a4d706961442f3438496969393834446151357976656378414673735761127e8201527f792f686274696d63253242704c386b35796f70496d4a627948712f6138797a6c61129e8201527f6c37726f4f7a586d786d4163337459585363546b65734d6344324939315a36336112be8201527f6549312f394a627755716b36737863394b52677277574d414e6543314e6e39756112de8201527f4779775473706d5538712532426c5a6d43714d674153363662674841476a514b6112fe8201527f73754a334451416a5235346d356a4c7a5a616e546c62646530253242726e663461131e8201527f385a574138546c32673277414779427748516e3552322532424e6a726542677861133e8201527f626c734e46627554776d6862414a48737a2f72416f61764c4f34317874767a5961135e8201527f4768336e4c4a426b41506a7578424a445248333048426575385567436978464e61137e8201527f437951322f4b253242385157372f6530253242664f2532423436524e5730657961139e8201527f4c726f39446a5467704a4e4d3547385179306c54644f756d73773066715045696113be8201527f393646702532424830634d774e6f376a787a596d6e4e664d5a6d64506c7932706113de8201527f6f7132575065476d67507136474c78504e34536c4b486e7870624f69754c58516113fe8201527f75583155715031676a6f38426136536c55314f416d5267707a7531735444584a61141e8201527f50754d3338546f387130344c324e777970653837327777556741675a6c70386461143e8201527f6b5166397a38544d43624d6b596b3758484375333564375a5a41656f346b5a4b61145e8201527f68784953386945354c546a334c4f6976485a7268394a3870337a4c5a436a776361147e8201527f6970354452694b6e576e49664c33386b4a684d7452776a67553525324256726d61149e8201527f714b6c6739307a376a64732f4238444b646b464c76483353253242376f4838616114be8201527f6c445a6c626734533155583574434d445342324f364b756c7a41344b763067376114de8201527f314251643054464b7733685358696e62374e6c304258725873514e6376436b386114fe8201527f6d6f394f786965783559627a78564e2f6b3738336f48545a495777393079495a61151e8201527f777672697164475473586e54384965705437597946434f4a6741395a3042794961153e8201527f455956735478522f6b73616b324268376f4b767034766e695530364d57317a4261155e8201527f4672746568647a306b6b587951786a426d7965645636644d596545386146787461157e8201527f6575777355466136466c6c54446c716430707a525a77473663467266574d627061159e8201527f384738587a6a66624d253242354658657076356f457273696c363458783663376115be8201527f5841576275696d3666387347494d58666f334a6971476b703333376854536a676115de8201527f65636862364f42472f327a31376a6f6d4469476d253242476c623146553069656115fe8201527f6e7552796977654c576767447a6d4655765545556a5a6f377356544877684f4661161e8201527f504d6b4e737146423977796d6b45307639666d7477453854377135384e594f3761163e8201527f787534623833766e46766c35755378446c472532426b4f51675249644f346a6761165e8201527f7a786a53486a4b4c7332742f6c684f647771766131415744437072763344345361167e8201527f34523741625934544362664b4637744265363554343551347a7a49714433316161169e8201527f79797557716a692532424636585337535439483943314f342f694b366b4775766116be8201527f6b512f664e3537487837456533373435622f76766e2f62482f58253242392f256116de8201527f32426762656d684f416d49705576755157757344764b517578394a44564e734b6116fe8201527f673651636d6b73515341445530346347524c523768466f5a326337785545664761171e8201527f253242776b755459474d764c6a422f6550634936416847686e5735717a45416961173e8201527f4a586377564545775869654e70536c317a6a457253253242435325324248634c61175e8201527f6f52506d7661324d6767412f69794c67536f544a555767733442794149514f3061177e8201527f4f6f705a487656627a6844494c65557155677a7a48492f667950474e7879777361179e8201527f6f796c6865534639577662795363336b4544716b32415636436c4364635535536117be8201527f6e6c4e6e4963394b794d63384c79622532423867484f4a795173466c4c6250526117de8201527f796d6d374a42743349545a544162314732444252496b514b51705451396939626117fe8201527f3665435353387a4d366161525364544b5657524d336663454a4c644b61746e7361181e8201527f724959774e4a55253242733048364461757832775a35686733706c653042474861183e8201527f756b316b4543734859446461496d4b7025324233463542317859763763486b7161185e8201527f644475306a4b645273657a3531376d63563641685148346931484e3173766c6a61187e8201527f5248366845454672682532426e72726d47316e33307a4d346749776d694d774561189e8201527f624b6842545564423141486f582532424b6741517a4f48543946494f71436b526118be8201527f4e4e623273397170496943534f753167576868497343564a73765771457175356118de8201527f47624a514b4e6a61427465394c4f69676368414a7665475773394332323033766118fe8201527f6f6e476c6b77725251323464646732796345646157554456734441785548734961191e8201527f77773665615234464665336d4a416b66426d5a6452395264774a485a6d47645261193e8201527f7950436a706a627a31712f584a34534949446b66384b4b6e6e32456c4b6d794c61195e8201527f69573442513836733151554b2f76426867524e776548766c5968687a7238706361197e8201527f67704b4b6d6f61576a7036426b594f48446c7835734b5647336365474539657661199e8201527f506e773563646667454242676f554946536238587632504553314772446a78456119be8201527f69524b6b697846716a54704d6d544b6b693148726a7a354368517155717845716119de8201527f544c6c4b6c53715571314772547231476a527130717846717a62744f6e5347656119fe8201527f3668374a6d627a4968355a6544696c315a58536a7430774375616b336c6e476f611a1e8201527f5655506f53734e663337394b326a6274716d44674d69485a42665a6c68324839611a3e8201527f75773738495469314a466a585653662f4336634f55667a346f30644178305447611a5e8201527f777448446863666a3443516d49694531444d5a42546b6c4e5a557065566f614f611a7e8201527f6e717633733234314e50503965766574594768435a50576a4979747332706173611a9e8201527f436a25324270556a54596c336b615574374f744b4a6136355850396d356e6367611abe8201527f364e686a685a587032762532426d57724341545a754a303368316b6a55756976611ade8201527f5067596e6a6e35744b4a4f6b326e6362703251414559585a69304b496d50356b611afe8201527f744961466e366b5a397743253237253239253230666f726d6174253238253237611b1e8201527f776f666632253237253239253342666f6e742d7765696768742533412532306e611b3e8201527f6f726d616c253342666f6e742d7374796c652533412532306e6f726d616c2533611b5e8201527f42666f6e742d646973706c617925334125323073776170253342253744746578611b7e8201527f74253230253742666f6e742d66616d696c792533412532302532375072657373611b9e8201527f2532305374617274253230325025323725334266696c6c253341253230776869611bbe8201527f74652537442e76616c7565253230253742666f6e742d73697a65253341253230611bde8201527f313070782533422537442e6e616d65253230253742666f6e742d73697a652533611bfe8201527f412532303470782533422537442533432f7374796c652533452533432f646566611c1e8201527f7325334525334372656374253230776964746825334425323738392532372532611c3e8201527f30686569676874253344253237353525323725323066696c6c25334425323762611c5e8201527f6c61636b2532372532302f253345253343726563742532307825334425323735611c7e8201527f2e3525323725323079253344253237352e352532372532307769647468253344611c9e8201527f2532373738253237253230686569676874253344253237343425323725323066611cbe8201527f696c6c2533442532372532333030303046462532372532302f25334525334374611cde8201527f657874253230746578742d616e63686f722533442532376d6964646c65253237611cfe8201527f2532307825334425323734342e35253237253230792533442532373333253237611d1e8201527f253230636c61737325334425323776616c756525323725334500000000000000611d3e820152612ba5612b9e6129f5611d5784018a61055b565b7f2533432f746578742533452533437265637425323078253344253237352e352581527f323725323079253344253237352e35253237253230776964746825334425323760208201527f373825323725323068656967687425334425323734342532372532307374726f60408201527f6b652533442532372532334646344630412532372532307374726f6b652d776960608201527f647468253344253237332532372532302f25334525334372656374253230782560808201527f334425323733302532372532307925334425323734352e35253237253230776960a08201527f647468253344253237353825323725323068656967687425334425323738253260c08201527f3725323066696c6c2533442532372532334646344630412532372532302f253360e08201527f4525334374657874253230746578742d616e63686f72253344253237656e64256101008201527f32372532307825334425323738372532372532307925334425323735322532376101208201527f253230636c6173732533442532376e616d6525323725334500000000000000006101408201526101580190565b86886105e3565b602160f81b81529050612bbb600182018561055b565b7f2533432f746578742533452533432f737667253345227d00000000000000000081526017019a995050505050505050505056fea26469706673582212206a2c00c13ddb4f1bcd7ee36e36f0c874d7d9dadcf38306eab3610b5a6e7af83464736f6c63430008110033", + "nonce": "0x2" + }, + "additionalContracts": [], + "isFixedGasLimit": false + }, + { + "hash": "0x06007149e34ac86ab7957b5e99b6a6a00081cfa2d61574288513751537767eb1", + "transactionType": "CREATE", + "contractName": null, + "contractAddress": "0xCf7Ed3AccA5a467e9e704C703E8D87F634fB0Fc9", + "function": null, + "arguments": null, + "transaction": { + "type": "0x00", + "from": "0xf39fd6e51aad88f6f4ce6ab8827279cfffb92266", + "gas": "0x42230", + "value": "0x0", + "data": "0x608060405234801561001057600080fd5b506102cf806100206000396000f3fe608060405234801561001057600080fd5b506004361061004c5760003560e01c80630194db8e14610051578063072bdcc214610076578063a391c15b14610089578063b67d77c51461009c575b600080fd5b61006461005f366004610160565b6100af565b60405190815260200160405180910390f35b610064610084366004610160565b6100ef565b61006461009736600461021e565b610129565b6100646100aa36600461021e565b61013e565b600080805b83518110156100e8578381815181106100cf576100cf610240565b60200260200101518201915080806001019150506100b4565b5092915050565b60006001815b83518110156100e85783818151811061011057610110610240565b60200260200101518202915080806001019150506100f5565b60006101358284610256565b90505b92915050565b60006101358284610278565b634e487b7160e01b600052604160045260246000fd5b6000602080838503121561017357600080fd5b823567ffffffffffffffff8082111561018b57600080fd5b818501915085601f83011261019f57600080fd5b8135818111156101b1576101b161014a565b8060051b604051601f19603f830116810181811085821117156101d6576101d661014a565b6040529182528482019250838101850191888311156101f457600080fd5b938501935b82851015610212578435845293850193928501926101f9565b98975050505050505050565b6000806040838503121561023157600080fd5b50508035926020909101359150565b634e487b7160e01b600052603260045260246000fd5b60008261027357634e487b7160e01b600052601260045260246000fd5b500490565b8181038181111561013857634e487b7160e01b600052601160045260246000fdfea2646970667358221220fcdef23ba4219270ddb3ab764e22a87e229c05e6f1dfc4eeea983fa1a1dac91f64736f6c63430008110033", + "nonce": "0x3" + }, + "additionalContracts": [], + "isFixedGasLimit": false + }, + { + "hash": "0x04b29b7d9e024bf3ddd4926c8a4ed0e564a59072909d0a99c20a9cb2985288d0", + "transactionType": "CREATE", + "contractName": "Evmsheet", + "contractAddress": "0xDc64a140Aa3E981100a9becA4E685f962f0cF6C9", + "function": null, + "arguments": [ + "0x9fE46736679d2D9a65F0992F2272dE9f3c7fa6e0", + "10000000000000000" + ], + "transaction": { + "type": "0x00", + "from": "0xf39fd6e51aad88f6f4ce6ab8827279cfffb92266", + "gas": "0x34bf99", + "value": "0x0", + "data": "0x608060405234801561001057600080fd5b50604051612ed9380380612ed983398101604081905261002f916100b1565b61003833610061565b600280546001600160a01b0319166001600160a01b0393909316929092179091556001556100eb565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b600080604083850312156100c457600080fd5b82516001600160a01b03811681146100db57600080fd5b6020939093015192949293505050565b612ddf806100fa6000396000f3fe608060405260043610620000a95760003560e01c80638da5cb5b116200006c5780638da5cb5b146200016d578063ab2fa65a146200018d578063ae28505e14620001b4578063c56c4cf114620001d9578063f2fde38b14620001fb578063f52be2a2146200022057600080fd5b806303fb31e814620000ae5780631164c83d14620000d5578063145e414714620000ec5780635787cacb146200012e578063715018a61462000155575b600080fd5b348015620000bb57600080fd5b50620000d3620000cd36600462000778565b62000247565b005b620000d3620000e6366004620007e9565b62000273565b348015620000f957600080fd5b50620001116200010b36600462000864565b620004b2565b6040516001600160a01b0390911681526020015b60405180910390f35b3480156200013b57600080fd5b50620001466200054f565b60405162000125919062000891565b3480156200016257600080fd5b50620000d3620005b3565b3480156200017a57600080fd5b506000546001600160a01b031662000111565b3480156200019a57600080fd5b50620001a5620005cb565b604051620001259190620008e0565b348015620001c157600080fd5b5062000111620001d336600462000930565b620005f7565b348015620001e657600080fd5b5060025462000111906001600160a01b031681565b3480156200020857600080fd5b50620000d36200021a36600462000778565b62000622565b3480156200022d57600080fd5b506200023860015481565b60405190815260200162000125565b62000251620006a1565b600280546001600160a01b0319166001600160a01b0392909216919091179055565b60015434146200029d5760405163723a79e360e11b81523460048201526024015b60405180910390fd5b600060405180602001620002b1906200074d565b6020820181038252601f19601f8201166040525090506000828251602084016000f56002546040516356d3163d60e01b81526001600160a01b0391821660048201529192508216906356d3163d90602401600060405180830381600087803b1580156200031d57600080fd5b505af115801562000332573d6000803e3d6000fd5b505060405163c47f002760e01b81526001600160a01b038416925063c47f0027915062000366908a908a906004016200094a565b600060405180830381600087803b1580156200038157600080fd5b505af115801562000396573d6000803e3d6000fd5b5050604051635c26412360e11b81526001600160a01b038416925063b84c82469150620003ca90889088906004016200094a565b600060405180830381600087803b158015620003e557600080fd5b505af1158015620003fa573d6000803e3d6000fd5b505060405163f2fde38b60e01b81523260048201526001600160a01b038416925063f2fde38b9150602401600060405180830381600087803b1580156200044057600080fd5b505af115801562000455573d6000803e3d6000fd5b5050600380546001810182556000919091527fc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b0180546001600160a01b0319166001600160a01b0394909416939093179092555050505050505050565b600060ff60f81b838360405180602001620004cd906200074d565b6020820181038252601f19601f82011660405250805190602001206040516020016200053094939291906001600160f81b031994909416845260609290921b6bffffffffffffffffffffffff191660018401526015830152603582015260550190565b60408051601f1981840301815291905280516020909101209392505050565b60606003805480602002602001604051908101604052809291908181526020018280548015620005a957602002820191906000526020600020905b81546001600160a01b031681526001909101906020018083116200058a575b5050505050905090565b620005bd620006a1565b620005c96000620006fd565b565b606060405180602001620005df906200074d565b601f1982820381018352601f90910116604052919050565b600381815481106200060857600080fd5b6000918252602090912001546001600160a01b0316905081565b6200062c620006a1565b6001600160a01b038116620006935760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b606482015260840162000294565b6200069e81620006fd565b50565b6000546001600160a01b03163314620005c95760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015260640162000294565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b612430806200097a83390190565b80356001600160a01b03811681146200077357600080fd5b919050565b6000602082840312156200078b57600080fd5b62000796826200075b565b9392505050565b60008083601f840112620007b057600080fd5b50813567ffffffffffffffff811115620007c957600080fd5b602083019150836020828501011115620007e257600080fd5b9250929050565b6000806000806000606086880312156200080257600080fd5b853567ffffffffffffffff808211156200081b57600080fd5b6200082989838a016200079d565b909750955060208801359150808211156200084357600080fd5b5062000852888289016200079d565b96999598509660400135949350505050565b600080604083850312156200087857600080fd5b62000883836200075b565b946020939093013593505050565b6020808252825182820181905260009190848201906040850190845b81811015620008d45783516001600160a01b031683529284019291840191600101620008ad565b50909695505050505050565b600060208083528351808285015260005b818110156200090f57858101830151858201604001528201620008f1565b506000604082860101526040601f19601f8301168501019250505092915050565b6000602082840312156200094357600080fd5b5035919050565b60208152816020820152818360408301376000818301604090810191909152601f909201601f1916010191905056fe60806040523480156200001157600080fd5b50604051806040016040528060078152602001660536865657420360cc1b815250604051806040016040528060048152602001630534854360e41b81525062000069620000636200008f60201b60201c565b62000093565b600162000077838262000188565b50600262000086828262000188565b50505062000254565b3390565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b634e487b7160e01b600052604160045260246000fd5b600181811c908216806200010e57607f821691505b6020821081036200012f57634e487b7160e01b600052602260045260246000fd5b50919050565b601f8211156200018357600081815260208120601f850160051c810160208610156200015e5750805b601f850160051c820191505b818110156200017f578281556001016200016a565b5050505b505050565b81516001600160401b03811115620001a457620001a4620000e3565b620001bc81620001b58454620000f9565b8462000135565b602080601f831160018114620001f45760008415620001db5750858301515b600019600386901b1c1916600185901b1785556200017f565b600085815260208120601f198616915b82811015620002255788860151825594840194600190910190840162000204565b5085821015620002445787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b6121cc80620002646000396000f3fe608060405234801561001057600080fd5b50600436106102275760003560e01c8063715018a611610130578063b85d8b85116100b8578063cf0983981161007c578063cf09839814610512578063cfbe95d814610535578063df4ca20614610556578063e985e9c514610576578063f2fde38b146105a457600080fd5b8063b85d8b85146104a4578063b88d4fde146104ce578063b8c368ec146104e1578063c47f0027146104ec578063c87b56dd146104ff57600080fd5b806395d89b41116100ff57806395d89b4114610439578063a22cb46514610441578063b46ebb1214610454578063b6d658e114610467578063b84c82461461049157600080fd5b8063715018a6146103fa578063768d5029146104025780638ada6b0f146104155780638da5cb5b1461042857600080fd5b80631b06443c116101b35780634f6ccce7116101825780634f6ccce71461038157806356d3163d146103a15780636352211e146103b45780636a0abc74146103c757806370a08231146103e757600080fd5b80631b06443c14610335578063206848f61461034857806323b872dd1461035b57806342842e0e1461036e57600080fd5b8063081812fc116101fa578063081812fc146102a1578063095ea7b3146102e2578063172b9eed146102f757806318160ddd1461030a5780631941fd141461031357600080fd5b806301ffc9a71461022c57806302f3c4c91461025457806306fdde03146102745780630715a24a1461027c575b600080fd5b61023f61023a36600461176a565b6105b7565b60405190151581526020015b60405180910390f35b610267610262366004611861565b610609565b60405161024b9190611951565b610267610638565b6102936fffffffffffffffffffffffffffffffff81565b60405190815260200161024b565b6102ca6102af366004611964565b6005602052600090815260409020546001600160a01b031681565b6040516001600160a01b03909116815260200161024b565b6102f56102f036600461197d565b6106c6565b005b6102676103053660046119a9565b6107ad565b61029360075481565b610326610321366004611964565b610875565b60405161024b939291906119de565b6102ca610343366004611a0e565b61092a565b610326610356366004611964565b6109e3565b6102f5610369366004611a2b565b610ae1565b6102f561037c366004611a2b565b610ca8565b61029361038f366004611964565b60086020526000908152604090205481565b6102f56103af366004611a0e565b610da0565b6102ca6103c2366004611964565b610dca565b6103da6103d53660046119a9565b610e1c565b60405161024b9190611a6c565b6102936103f5366004611a0e565b610e60565b6102f5610ec3565b6102f5610410366004611af9565b610ed7565b6009546102ca906001600160a01b031681565b6000546001600160a01b03166102ca565b610267611035565b6102f561044f366004611b63565b611042565b610267610462366004611964565b6110ae565b61047a610475366004611964565b611258565b60408051921515835260208301919091520161024b565b6102f561049f366004611ba1565b611275565b6104b56104b2366004611964565b90565b6040516001600160e01b0319909116815260200161024b565b6102f56104dc366004611be3565b6112c6565b6102ca600160801b81565b6102f56104fa366004611ba1565b6113ae565b61026761050d366004611964565b6113ff565b61023f610520366004611a0e565b600160801b6001600160a01b03919091161090565b61023f610543366004611861565b516001600160a01b0316600160801b1490565b610569610564366004611964565b6114c9565b60405161024b9190611c16565b61023f610584366004611c4d565b600660209081526000928352604080842090915290825290205460ff1681565b6102f56105b2366004611a0e565b611526565b60006301ffc9a760e01b6001600160e01b0319831614806105e857506380ac58cd60e01b6001600160e01b03198316145b806106035750635b5e139f60e01b6001600160e01b03198316145b92915050565b6060816020015160405160200161062291815260200190565b6040516020818303038152906040529050919050565b6001805461064590611c7b565b80601f016020809104026020016040519081016040528092919081815260200182805461067190611c7b565b80156106be5780601f10610693576101008083540402835291602001916106be565b820191906000526020600020905b8154815290600101906020018083116106a157829003601f168201915b505050505081565b6000818152600360205260409020546001600160a01b03163381148061070f57506001600160a01b038116600090815260066020908152604080832033845290915290205460ff165b6107515760405162461bcd60e51b815260206004820152600e60248201526d1393d517d055551213d49256915160921b60448201526064015b60405180910390fd5b60008281526005602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b606060006107ba83610e1c565b9050606060005b825181101561086d576000806107ef8584815181106107e2576107e2611cb5565b6020026020010151611258565b9150915081156108335783610803826110ae565b61080c90611ccb565b60405160200161081d929190611cef565b6040516020818303038152906040529350610858565b6040516108469085908390602001611cef565b60405160208183030381529060405293505b5050808061086590611d27565b9150506107c1565b509392505050565b600a602052600090815260409020805460018201546002830180546001600160a01b039093169391926108a790611c7b565b80601f01602080910402602001604051908101604052809291908181526020018280546108d390611c7b565b80156109205780601f106108f557610100808354040283529160200191610920565b820191906000526020600020905b81548152906001019060200180831161090357829003601f168201915b5050505050905083565b6000600160801b6001600160a01b03831610156109da576000610955836001600160a01b03166110ae565b604051632d737e4960e21b8152909150735fbdb2315678afecb367f032d93f642f64180aa39063b5cdf92490610992908490600090600401611d40565b602060405180830381865af41580156109af573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906109d39190611d62565b9392505050565b5090565b919050565b60008181526003602052604081205481906060906001600160a01b0316610a1057600160801b9250610a2b565b6000848152600a60205260409020546001600160a01b031692505b6000848152600a60205260409020600181015460029091018054859291908190610a5490611c7b565b80601f0160208091040260200160405190810160405280929190818152602001828054610a8090611c7b565b8015610acd5780601f10610aa257610100808354040283529160200191610acd565b820191906000526020600020905b815481529060010190602001808311610ab057829003601f168201915b505050505090509250925092509193909250565b6000818152600360205260409020546001600160a01b03848116911614610b375760405162461bcd60e51b815260206004820152600a60248201526957524f4e475f46524f4d60b01b6044820152606401610748565b6001600160a01b038216610b815760405162461bcd60e51b81526020600482015260116024820152701253959053125117d49150d25412515395607a1b6044820152606401610748565b336001600160a01b0384161480610bbb57506001600160a01b038316600090815260066020908152604080832033845290915290205460ff165b80610bdc57506000818152600560205260409020546001600160a01b031633145b610c195760405162461bcd60e51b815260206004820152600e60248201526d1393d517d055551213d49256915160921b6044820152606401610748565b6001600160a01b0380841660008181526004602090815260408083208054600019019055938616808352848320805460010190558583526003825284832080546001600160a01b03199081168317909155600590925284832080549092169091559251849392917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b610cb3838383610ae1565b6001600160a01b0382163b1580610d5c5750604051630a85bd0160e11b8082523360048301526001600160a01b03858116602484015260448301849052608060648401526000608484015290919084169063150b7a029060a4016020604051808303816000875af1158015610d2c573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610d509190611d7b565b6001600160e01b031916145b610d9b5760405162461bcd60e51b815260206004820152601060248201526f155394d0519157d49150d2541251539560821b6044820152606401610748565b505050565b610da861159f565b600980546001600160a01b0319166001600160a01b0392909216919091179055565b6000818152600360205260409020546001600160a01b0316806109de5760405162461bcd60e51b815260206004820152600a6024820152691393d517d3525395115160b21b6044820152606401610748565b60608082516040519150602081048252602082016020850160005b83811015610e4f578181015183820152602001610e37565b505050810160200160405292915050565b60006001600160a01b038216610ea75760405162461bcd60e51b815260206004820152600c60248201526b5a45524f5f4144445245535360a01b6044820152606401610748565b506001600160a01b031660009081526004602052604090205490565b610ecb61159f565b610ed560006115f9565b565b6000858152600360205260409020546001600160a01b0316610f2f57610efd3286611649565b60078054600090815260086020526040812087905581546001929190610f24908490611d98565b90915550610f889050565b6000858152600360205260409020546001600160a01b03163214610f8857600085815260036020526040908190205490516324f3f02560e21b81526001600160a01b039091166004820152326024820152604401610748565b6040518060600160405280856001600160a01b0316815260200184815260200183838080601f0160208091040260200160405190810160405280939291908181526020018383808284376000920182905250939094525050878152600a6020908152604091829020845181546001600160a01b0319166001600160a01b0390911617815590840151600182015590830151909150600282019061102b9082611df9565b5050505050505050565b6002805461064590611c7b565b3360008181526006602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b6000818152600a6020908152604080832081516060818101845282546001600160a01b0316825260018301549482019490945260028201805494959491938401916110f890611c7b565b80601f016020809104026020016040519081016040528092919081815260200182805461112490611c7b565b80156111715780601f1061114657610100808354040283529160200191611171565b820191906000526020600020905b81548152906001019060200180831161115457829003601f168201915b505050505081525050905061119381516001600160a01b0316600160801b1490565b156111a1576109d381610609565b60006111b0826000015161092a565b905060006111bf836020015190565b905060006111d084604001516107ad565b90506000836001600160a01b031683836040516020016111f1929190611eb9565b60408051601f198184030181529082905261120b91611eea565b600060405180830381855afa9150503d8060008114611246576040519150601f19603f3d011682016040523d82523d6000602084013e61124b565b606091505b5098975050505050505050565b600080611266600284611f06565b60019081149493901c92915050565b61127d61159f565b7f8dca0271872d00b3de3abafca544c52fcd7d512dd852c9894fa2c118ac759a93600283836040516112b193929190611fce565b60405180910390a16002610d9b828483611ffe565b6112d1858585610ae1565b6001600160a01b0384163b15806113685750604051630a85bd0160e11b808252906001600160a01b0386169063150b7a02906113199033908a908990899089906004016120be565b6020604051808303816000875af1158015611338573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061135c9190611d7b565b6001600160e01b031916145b6113a75760405162461bcd60e51b815260206004820152601060248201526f155394d0519157d49150d2541251539560821b6044820152606401610748565b5050505050565b6113b661159f565b7fb65b7b5ea384affd30f77f842e057d29dd1b13f133adf69a724a8105b164ab75600183836040516113ea93929190611fce565b60405180910390a16001610d9b828483611ffe565b6000818152600360205260409020546060906001600160a01b03168061143b57604051630243d1a960e21b815260048101849052602401610748565b6000611446846110ae565b6009546040516328de0f2f60e01b81529192506001600160a01b0316906328de0f2f9061147c90879085906001906004016120fd565b600060405180830381865afa158015611499573d6000803e3d6000fd5b505050506040513d6000823e601f3d908101601f191682016040526114c19190810190612128565b949350505050565b604080516060808201835260008083526020830181905292820152906114ee836110ae565b6040805160608101825285815260009586526003602090815295829020546001600160a01b0316958101959095528401525090919050565b61152e61159f565b6001600160a01b0381166115935760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610748565b61159c816115f9565b50565b6000546001600160a01b03163314610ed55760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610748565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b6001600160a01b0382166116935760405162461bcd60e51b81526020600482015260116024820152701253959053125117d49150d25412515395607a1b6044820152606401610748565b6000818152600360205260409020546001600160a01b0316156116e95760405162461bcd60e51b815260206004820152600e60248201526d1053149150511657d3525395115160921b6044820152606401610748565b6001600160a01b038216600081815260046020908152604080832080546001019055848352600390915280822080546001600160a01b0319168417905551839291907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b6001600160e01b03198116811461159c57600080fd5b60006020828403121561177c57600080fd5b81356109d381611754565b634e487b7160e01b600052604160045260246000fd5b604051601f8201601f1916810167ffffffffffffffff811182821017156117c6576117c6611787565b604052919050565b6001600160a01b038116811461159c57600080fd5b600067ffffffffffffffff8211156117fd576117fd611787565b50601f01601f191660200190565b600082601f83011261181c57600080fd5b813561182f61182a826117e3565b61179d565b81815284602083860101111561184457600080fd5b816020850160208301376000918101602001919091529392505050565b60006020828403121561187357600080fd5b813567ffffffffffffffff8082111561188b57600080fd5b908301906060828603121561189f57600080fd5b6040516060810181811083821117156118ba576118ba611787565b60405282356118c8816117ce565b8152602083810135908201526040830135828111156118e657600080fd5b6118f28782860161180b565b60408301525095945050505050565b60005b8381101561191c578181015183820152602001611904565b50506000910152565b6000815180845261193d816020860160208601611901565b601f01601f19169290920160200192915050565b6020815260006109d36020830184611925565b60006020828403121561197657600080fd5b5035919050565b6000806040838503121561199057600080fd5b823561199b816117ce565b946020939093013593505050565b6000602082840312156119bb57600080fd5b813567ffffffffffffffff8111156119d257600080fd5b6114c18482850161180b565b60018060a01b0384168152826020820152606060408201526000611a056060830184611925565b95945050505050565b600060208284031215611a2057600080fd5b81356109d3816117ce565b600080600060608486031215611a4057600080fd5b8335611a4b816117ce565b92506020840135611a5b816117ce565b929592945050506040919091013590565b6020808252825182820181905260009190848201906040850190845b81811015611aa457835183529284019291840191600101611a88565b50909695505050505050565b60008083601f840112611ac257600080fd5b50813567ffffffffffffffff811115611ada57600080fd5b602083019150836020828501011115611af257600080fd5b9250929050565b600080600080600060808688031215611b1157600080fd5b853594506020860135611b23816117ce565b935060408601359250606086013567ffffffffffffffff811115611b4657600080fd5b611b5288828901611ab0565b969995985093965092949392505050565b60008060408385031215611b7657600080fd5b8235611b81816117ce565b915060208301358015158114611b9657600080fd5b809150509250929050565b60008060208385031215611bb457600080fd5b823567ffffffffffffffff811115611bcb57600080fd5b611bd785828601611ab0565b90969095509350505050565b600080600080600060808688031215611bfb57600080fd5b8535611c06816117ce565b94506020860135611b23816117ce565b602081528151602082015260018060a01b036020830151166040820152600060408301516060808401526114c16080840182611925565b60008060408385031215611c6057600080fd5b8235611c6b816117ce565b91506020830135611b96816117ce565b600181811c90821680611c8f57607f821691505b602082108103611caf57634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052603260045260246000fd5b80516020808301519190811015611caf5760001960209190910360031b1b16919050565b60008351611d01818460208801611901565b9190910191825250602001919050565b634e487b7160e01b600052601160045260246000fd5b600060018201611d3957611d39611d11565b5060010190565b604081526000611d536040830185611925565b90508260208301529392505050565b600060208284031215611d7457600080fd5b5051919050565b600060208284031215611d8d57600080fd5b81516109d381611754565b8082018082111561060357610603611d11565b601f821115610d9b57600081815260208120601f850160051c81016020861015611dd25750805b601f850160051c820191505b81811015611df157828155600101611dde565b505050505050565b815167ffffffffffffffff811115611e1357611e13611787565b611e2781611e218454611c7b565b84611dab565b602080601f831160018114611e5c5760008415611e445750858301515b600019600386901b1c1916600185901b178555611df1565b600085815260208120601f198616915b82811015611e8b57888601518255948401946001909101908401611e6c565b5085821015611ea95787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b6001600160e01b0319831681528151600090611edc816004850160208701611901565b919091016004019392505050565b60008251611efc818460208701611901565b9190910192915050565b600082611f2357634e487b7160e01b600052601260045260246000fd5b500690565b60008154611f3581611c7b565b808552602060018381168015611f525760018114611f6c57611f9a565b60ff1985168884015283151560051b880183019550611f9a565b866000528260002060005b85811015611f925781548a8201860152908301908401611f77565b890184019650505b505050505092915050565b81835281816020850137506000828201602090810191909152601f909101601f19169091010190565b604081526000611fe16040830186611f28565b8281036020840152611ff4818587611fa5565b9695505050505050565b67ffffffffffffffff83111561201657612016611787565b61202a836120248354611c7b565b83611dab565b6000601f84116001811461205e57600085156120465750838201355b600019600387901b1c1916600186901b1783556113a7565b600083815260209020601f19861690835b8281101561208f578685013582556020948501946001909201910161206f565b50868210156120ac5760001960f88860031b161c19848701351681555b505060018560011b0183555050505050565b6001600160a01b03868116825285166020820152604081018490526080606082018190526000906120f29083018486611fa5565b979650505050505050565b8381526060602082015260006121166060830185611925565b8281036040840152611ff48185611f28565b60006020828403121561213a57600080fd5b815167ffffffffffffffff81111561215157600080fd5b8201601f8101841361216257600080fd5b805161217061182a826117e3565b81815285602083850101111561218557600080fd5b611a0582602083016020860161190156fea26469706673582212203fc548aa4f22e6f4c01757ba3f2e0383630418b3d17601758718ab19a4d9918d64736f6c63430008110033a26469706673582212207932e8c793f9a96d9606a8907a6671f54c0fb1ed5a763048e13b429274e7706c64736f6c634300081100330000000000000000000000009fe46736679d2d9a65f0992f2272de9f3c7fa6e0000000000000000000000000000000000000000000000000002386f26fc10000", + "nonce": "0x4" + }, + "additionalContracts": [], + "isFixedGasLimit": false + } + ], + "receipts": [ + { + "transactionHash": "0x072cf396588bb7d15ecdfa1fae788cc73c5129f1b8fb0509be3a348b73373bf7", + "transactionIndex": "0x0", + "blockHash": "0x04a290479d949106f5ebb401baa4ffa670a2470768645b4bf76abfc05ff50d5b", + "blockNumber": "0x24", + "from": "0xf39Fd6e51aad88F6F4ce6aB8827279cffFb92266", + "to": null, + "cumulativeGasUsed": "0xf4240", + "gasUsed": "0x7a120", + "contractAddress": "0x8dB210aC4f1403C5B127828bf5d373C372BA6eBd", + "logs": [], + "status": "0x1", + "logsBloom": "0x00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", + "type": "0x0", + "effectiveGasPrice": "0xf4240" + }, + { + "transactionHash": "0x054de20b4247d293c9de042e304c8c4029bdfc05cea7faa8dff455b5db78512f", + "transactionIndex": "0x0", + "blockHash": "0x02ff112a307613497d5ccc5c26a08b369d0e15642ba25dfbab9db7144a8177fc", + "blockNumber": "0x25", + "from": "0xf39Fd6e51aad88F6F4ce6aB8827279cffFb92266", + "to": null, + "cumulativeGasUsed": "0xf4240", + "gasUsed": "0x7a120", + "contractAddress": "0xe7f1725E7734CE288F8367e1Bb143E90bb3F0512", + "logs": [], + "status": "0x1", + "logsBloom": "0x00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", + "type": "0x0", + "effectiveGasPrice": "0xf4240" + }, + { + "transactionHash": "0x0178049afecd6afec6d0ba39c1d78847f55e8e460426e1e4e4cdaa81797a9002", + "transactionIndex": "0x0", + "blockHash": "0x05f645d897c1ac52674428245dbf2a5e4368880df7ec7b5d017f55d61f631d4a", + "blockNumber": "0x26", + "from": "0xf39Fd6e51aad88F6F4ce6aB8827279cffFb92266", + "to": null, + "cumulativeGasUsed": "0xf4240", + "gasUsed": "0x7a120", + "contractAddress": "0x9fE46736679d2D9a65F0992F2272dE9f3c7fa6e0", + "logs": [], + "status": "0x1", + "logsBloom": "0x00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", + "type": "0x0", + "effectiveGasPrice": "0xf4240" + }, + { + "transactionHash": "0x06007149e34ac86ab7957b5e99b6a6a00081cfa2d61574288513751537767eb1", + "transactionIndex": "0x0", + "blockHash": "0x046e2ff72628f733b1998b1098ab76d2c815c9bf90ffb17877f460b83d1ed3e4", + "blockNumber": "0x27", + "from": "0xf39Fd6e51aad88F6F4ce6aB8827279cffFb92266", + "to": null, + "cumulativeGasUsed": "0xf4240", + "gasUsed": "0x7a120", + "contractAddress": "0xCf7Ed3AccA5a467e9e704C703E8D87F634fB0Fc9", + "logs": [], + "status": "0x1", + "logsBloom": "0x00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", + "type": "0x0", + "effectiveGasPrice": "0xf4240" + }, + { + "transactionHash": "0x04b29b7d9e024bf3ddd4926c8a4ed0e564a59072909d0a99c20a9cb2985288d0", + "transactionIndex": "0x0", + "blockHash": "0x0598ccbfd693335b4e5d08c6a7ac678959cbbc01e6a212ba943cacdbf01b41b6", + "blockNumber": "0x28", + "from": "0xf39Fd6e51aad88F6F4ce6aB8827279cffFb92266", + "to": null, + "cumulativeGasUsed": "0xf4240", + "gasUsed": "0x7a120", + "contractAddress": "0xDc64a140Aa3E981100a9becA4E685f962f0cF6C9", + "logs": [ + { + "address": "0xDc64a140Aa3E981100a9becA4E685f962f0cF6C9", + "topics": [ + "0x8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0", + "0x0000000000000000000000000000000000000000000000000000000000000000", + "0x000000000000000000000000f39fd6e51aad88f6f4ce6ab8827279cfffb92266" + ], + "data": "0x", + "blockHash": "0x0598ccbfd693335b4e5d08c6a7ac678959cbbc01e6a212ba943cacdbf01b41b6", + "blockNumber": "0x28", + "transactionHash": "0x04b29b7d9e024bf3ddd4926c8a4ed0e564a59072909d0a99c20a9cb2985288d0", + "removed": false + } + ], + "status": "0x1", + "logsBloom": "0x00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", + "type": "0x0", + "effectiveGasPrice": "0xf4240" + } + ], + "libraries": [ + "lib/eth-projects-monorepo/packages/eth-projects-contracts/contracts/lib/utils/Bytes.sol:Bytes:0x5fbdb2315678afecb367f032d93f642f64180aa3" + ], + "pending": [], + "returns": {}, + "timestamp": 1689271545, + "chain": 1263227476, + "multi": false, + "commit": "8bcb0d8" +} \ No newline at end of file diff --git a/packages/starksheet-solidity/broadcast/Evmsheet.s.sol/31337/run-1689015755.json b/packages/starksheet-solidity/broadcast/Evmsheet.s.sol/31337/run-1689015755.json new file mode 100644 index 00000000..f366b1ba --- /dev/null +++ b/packages/starksheet-solidity/broadcast/Evmsheet.s.sol/31337/run-1689015755.json @@ -0,0 +1,209 @@ +{ + "transactions": [ + { + "hash": "0x96675b77fd244a9feb082dbcbe59cb321504f8e4f72a8063dad6a46a9706fceb", + "transactionType": "CREATE", + "contractName": "Bytes", + "contractAddress": "0x5FbDB2315678afecb367f032d93F642f64180aa3", + "function": null, + "arguments": null, + "transaction": { + "type": "0x02", + "from": "0xf39fd6e51aad88f6f4ce6ab8827279cfffb92266", + "gas": "0x1387ed", + "data": "0x6110d661003a600b82828239805160001a60731461002d57634e487b7160e01b600052600060045260246000fd5b30600052607381538281f3fe73000000000000000000000000000000000000000030146080604052600436106101625760003560e01c8063a5eb31ee116100cd578063d1ffb56111610086578063d1ffb561146103fb578063d442584f1461042b578063e004139614610454578063f1142fb314610474578063f647f8fb14610487578063f83b670f146104b257600080fd5b8063a5eb31ee14610344578063a8d8f00f1461036b578063b5cdf92414610396578063b63711df146103a9578063be8b3430146103bc578063c29616bd146103cf57600080fd5b80635ef849301161011f5780635ef8493014610241578063913c97b41461026b57806397e6175c1461029f57806399dd9bd7146102cb5780639ae4c3d1146102ec5780639cee499e1461031857600080fd5b8063042aa0841461016757806305d3bb74146101985780631a7431ef146101c0578063235266d2146101e357806348137709146101f65780634d66a2ae1461021b575b600080fd5b61017a610175366004610ec0565b6104de565b6040516001600160d01b031990911681526020015b60405180910390f35b6101ab6101a6366004610ec0565b610540565b60405163ffffffff909116815260200161018f565b6101d36101ce366004610f05565b61059d565b604051901515815260200161018f565b6101d36101f1366004610f4c565b610652565b610209610204366004610ec0565b6106b5565b60405160ff909116815260200161018f565b61022e610229366004610fa6565b610711565b60405161ffff909116815260200161018f565b61025461024f366004610ec0565b61071e565b60405165ffffffffffff909116815260200161018f565b61027e610279366004610ec0565b610772565b6040516fffffffffffffffffffffffffffffffff909116815260200161018f565b6102b26102ad366004610ec0565b6107d0565b6040516001600160a01b0319909116815260200161018f565b6102de6102d9366004610ec0565b61082e565b60405190815260200161018f565b6102ff6102fa366004610ec0565b61088c565b60405167ffffffffffffffff909116815260200161018f565b61032b610326366004610ec0565b6108e9565b6040516001600160d81b0319909116815260200161018f565b610357610352366004610ec0565b610946565b60405162ffffff909116815260200161018f565b61037e610379366004610ec0565b6109a3565b60405166ffffffffffffff909116815260200161018f565b6102de6103a4366004610ec0565b610a00565b6102ff6103b7366004610ec0565b610a55565b61022e6103ca366004610ec0565b610aa9565b6103e26103dd366004610ec0565b610b06565b6040516001600160c81b0319909116815260200161018f565b61040e610409366004610ec0565b610b5a565b6040516bffffffffffffffffffffffff909116815260200161018f565b61043e610439366004610ec0565b610bae565b60405164ffffffffff909116815260200161018f565b610467610462366004610fe3565b610c02565b60405161018f9190611031565b6102b2610482366004610ec0565b610d0f565b61049a610495366004610ec0565b610d64565b6040516001600160a01b03909116815260200161018f565b6104c56104c0366004610ec0565b610dc9565b6040516001600160f81b0319909116815260200161018f565b60006104eb82600661107f565b835110156105375760405162461bcd60e51b8152602060048201526014602482015273746f4279746573365f6f75744f66426f756e647360601b60448201526064015b60405180910390fd5b50016006015190565b600061054d82600461107f565b835110156105945760405162461bcd60e51b8152602060048201526014602482015273746f55696e7433325f6f75744f66426f756e647360601b604482015260640161052e565b50016004015190565b600080600190508354600260018083161561010002038216048451808214600181146105cc5760009450610644565b821561064457602083106001811461062957600189600052602060002060208a018581015b600284828410010361062057815183541461060f5760009950600093505b6001830192506020820191506105f1565b50505050610642565b6101008086040294506020880151851461064257600095505b505b509293505050505b92915050565b81518151600091600191811480831461066e57600092506106ab565b600160208701838101602088015b60028483851001036106a657805183511461069a5760009650600093505b6020928301920161067c565b505050505b5090949350505050565b60006106c282600161107f565b835110156107085760405162461bcd60e51b8152602060048201526013602482015272746f55696e74385f6f75744f66426f756e647360681b604482015260640161052e565b50016001015190565b600061064c826000610aa9565b600061072b82600661107f565b835110156105375760405162461bcd60e51b8152602060048201526014602482015273746f55696e7434385f6f75744f66426f756e647360601b604482015260640161052e565b600061077f82601061107f565b835110156107c75760405162461bcd60e51b8152602060048201526015602482015274746f55696e743132385f6f75744f66426f756e647360581b604482015260640161052e565b50016010015190565b60006107dd82600c61107f565b835110156108255760405162461bcd60e51b8152602060048201526015602482015274746f427974657331325f6f75744f66426f756e647360581b604482015260640161052e565b5001600c015190565b600061083b82602061107f565b835110156108835760405162461bcd60e51b8152602060048201526015602482015274746f427974657333325f6f75744f66426f756e647360581b604482015260640161052e565b50016020015190565b600061089982600861107f565b835110156108e05760405162461bcd60e51b8152602060048201526014602482015273746f55696e7436345f6f75744f66426f756e647360601b604482015260640161052e565b50016008015190565b60006108f682600561107f565b8351101561093d5760405162461bcd60e51b8152602060048201526014602482015273746f4279746573355f6f75744f66426f756e647360601b604482015260640161052e565b50016005015190565b600061095382600361107f565b8351101561099a5760405162461bcd60e51b8152602060048201526014602482015273746f55696e7432345f6f75744f66426f756e647360601b604482015260640161052e565b50016003015190565b60006109b082600761107f565b835110156109f75760405162461bcd60e51b8152602060048201526014602482015273746f55696e7435365f6f75744f66426f756e647360601b604482015260640161052e565b50016007015190565b6000610a0d82602061107f565b835110156108835760405162461bcd60e51b8152602060048201526015602482015274746f55696e743235365f6f75744f66426f756e647360581b604482015260640161052e565b6000610a6282600861107f565b835110156108e05760405162461bcd60e51b8152602060048201526014602482015273746f4279746573385f6f75744f66426f756e647360601b604482015260640161052e565b6000610ab682600261107f565b83511015610afd5760405162461bcd60e51b8152602060048201526014602482015273746f55696e7431365f6f75744f66426f756e647360601b604482015260640161052e565b50016002015190565b6000610b1382600761107f565b835110156109f75760405162461bcd60e51b8152602060048201526014602482015273746f4279746573375f6f75744f66426f756e647360601b604482015260640161052e565b6000610b6782600c61107f565b835110156108255760405162461bcd60e51b8152602060048201526014602482015273746f55696e7439365f6f75744f66426f756e647360601b604482015260640161052e565b6000610bbb82600561107f565b8351101561093d5760405162461bcd60e51b8152602060048201526014602482015273746f55696e7434305f6f75744f66426f756e647360601b604482015260640161052e565b606081610c1081601f61107f565b1015610c4f5760405162461bcd60e51b815260206004820152600e60248201526d736c6963655f6f766572666c6f7760901b604482015260640161052e565b610c59828461107f565b84511015610c9d5760405162461bcd60e51b8152602060048201526011602482015270736c6963655f6f75744f66426f756e647360781b604482015260640161052e565b606082158015610cbc5760405191506000825260208201604052610d06565b6040519150601f8416801560200281840101858101878315602002848b0101015b81831015610cf5578051835260209283019201610cdd565b5050858452601f01601f1916604052505b50949350505050565b6000610d1c82601061107f565b835110156107c75760405162461bcd60e51b8152602060048201526015602482015274746f427974657331365f6f75744f66426f756e647360581b604482015260640161052e565b6000610d7182601461107f565b83511015610db95760405162461bcd60e51b8152602060048201526015602482015274746f416464726573735f6f75744f66426f756e647360581b604482015260640161052e565b500160200151600160601b900490565b6000610dd682600161107f565b835110156107085760405162461bcd60e51b8152602060048201526014602482015273746f4279746573315f6f75744f66426f756e647360601b604482015260640161052e565b634e487b7160e01b600052604160045260246000fd5b600082601f830112610e4457600080fd5b813567ffffffffffffffff80821115610e5f57610e5f610e1d565b604051601f8301601f19908116603f01168101908282118183101715610e8757610e87610e1d565b81604052838152866020858801011115610ea057600080fd5b836020870160208301376000602085830101528094505050505092915050565b60008060408385031215610ed357600080fd5b823567ffffffffffffffff811115610eea57600080fd5b610ef685828601610e33565b95602094909401359450505050565b60008060408385031215610f1857600080fd5b82359150602083013567ffffffffffffffff811115610f3657600080fd5b610f4285828601610e33565b9150509250929050565b60008060408385031215610f5f57600080fd5b823567ffffffffffffffff80821115610f7757600080fd5b610f8386838701610e33565b93506020850135915080821115610f9957600080fd5b50610f4285828601610e33565b600060208284031215610fb857600080fd5b813567ffffffffffffffff811115610fcf57600080fd5b610fdb84828501610e33565b949350505050565b600080600060608486031215610ff857600080fd5b833567ffffffffffffffff81111561100f57600080fd5b61101b86828701610e33565b9660208601359650604090950135949350505050565b600060208083528351808285015260005b8181101561105e57858101830151858201604001528201611042565b506000604082860101526040601f19601f8301168501019250505092915050565b8082018082111561064c57634e487b7160e01b600052601160045260246000fdfea26469706673582212205bdf5bc4551862519f5370e0dcec38eefbbbe11b6a5bf19ce2846b4f8831a5dc64736f6c63430008110033", + "nonce": "0x0", + "accessList": [] + }, + "additionalContracts": [], + "isFixedGasLimit": false + }, + { + "hash": "0x3eed361770e2dcc9a97a4cdf1a955543fd69a6096e37bb0e257a7208a08c6dde", + "transactionType": "CREATE", + "contractName": "MultiSendCallOnly", + "contractAddress": "0xe7f1725E7734CE288F8367e1Bb143E90bb3F0512", + "function": null, + "arguments": null, + "transaction": { + "type": "0x02", + "from": "0xf39fd6e51aad88f6f4ce6ab8827279cfffb92266", + "gas": "0x2e5c4", + "value": "0x0", + "data": "0x608060405234801561001057600080fd5b506101ae806100206000396000f3fe60806040526004361061001e5760003560e01c80638d80ff0a14610023575b600080fd5b6100366100313660046100c7565b610038565b005b805160205b818110156100ac578083015160f81c6001820184015160601c601583018501516035840186015160558501870160008560008114610082576001811461001e5761008e565b6000808585888a5af191505b508061009957600080fd5b505080605501850194505050505061003d565b505050565b634e487b7160e01b600052604160045260246000fd5b6000602082840312156100d957600080fd5b813567ffffffffffffffff808211156100f157600080fd5b818401915084601f83011261010557600080fd5b813581811115610117576101176100b1565b604051601f8201601f19908116603f0116810190838211818310171561013f5761013f6100b1565b8160405282815287602084870101111561015857600080fd5b82602086016020830137600092810160200192909252509594505050505056fea2646970667358221220c15490bbb756a4c3c49d6335b2e81d2d098647b0ea70174c2279f199b1d0800364736f6c63430008110033", + "nonce": "0x1", + "accessList": [] + }, + "additionalContracts": [], + "isFixedGasLimit": false + }, + { + "hash": "0xfa26a5b6e297a0b5aa632035548d06ea04efb783d4713353476f25876c532b2a", + "transactionType": "CREATE", + "contractName": "BasicCellRenderer", + "contractAddress": "0x9fE46736679d2D9a65F0992F2272dE9f3c7fa6e0", + "function": null, + "arguments": null, + "transaction": { + "type": "0x02", + "from": "0xf39fd6e51aad88f6f4ce6ab8827279cfffb92266", + "gas": "0x3180ad", + "value": "0x0", + "data": "0x608060405234801561001057600080fd5b50612c25806100206000396000f3fe608060405234801561001057600080fd5b50600436106100365760003560e01c806306d4cd8b1461003b57806328de0f2f14610064575b600080fd5b61004e610049366004610322565b610077565b60405161005b919061038b565b60405180910390f35b61004e610072366004610404565b6100f1565b60606000610086600f846104fc565b90506000610095600f8361051e565b61009f9085610535565b905060006100ae826041610548565b60f81b9050806100c76100c2856001610548565b6101b6565b6040516020016100d8929190610577565b6040516020818303038152906040529350505050919050565b606060006100fe86610077565b905083838261018388735fbdb2315678afecb367f032d93f642f64180aa363b5cdf924909160006040518363ffffffff1660e01b81526004016101429291906105a8565b602060405180830381865af415801561015f573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906100c291906105ca565b87878660405160200161019c97969594939291906105f2565b604051602081830303815290604052915050949350505050565b606060006101c383610249565b600101905060008167ffffffffffffffff8111156101e3576101e36103a5565b6040519080825280601f01601f19166020018201604052801561020d576020820181803683370190505b5090508181016020015b600019016f181899199a1a9b1b9c1cb0b131b232b360811b600a86061a8153600a850494508461021757509392505050565b60008072184f03e93ff9f4daa797ed6e38ed64bf6a1f0160401b83106102885772184f03e93ff9f4daa797ed6e38ed64bf6a1f0160401b830492506040015b6d04ee2d6d415b85acef810000000083106102b4576d04ee2d6d415b85acef8100000000830492506020015b662386f26fc1000083106102d257662386f26fc10000830492506010015b6305f5e10083106102ea576305f5e100830492506008015b61271083106102fe57612710830492506004015b60648310610310576064830492506002015b600a831061031c576001015b92915050565b60006020828403121561033457600080fd5b5035919050565b60005b8381101561035657818101518382015260200161033e565b50506000910152565b6000815180845261037781602086016020860161033b565b601f01601f19169290920160200192915050565b60208152600061039e602083018461035f565b9392505050565b634e487b7160e01b600052604160045260246000fd5b60008083601f8401126103cd57600080fd5b50813567ffffffffffffffff8111156103e557600080fd5b6020830191508360208285010111156103fd57600080fd5b9250929050565b6000806000806060858703121561041a57600080fd5b84359350602085013567ffffffffffffffff8082111561043957600080fd5b818701915087601f83011261044d57600080fd5b81358181111561045f5761045f6103a5565b604051601f8201601f19908116603f01168101908382118183101715610487576104876103a5565b816040528281528a60208487010111156104a057600080fd5b8260208601602083013760006020848301015280975050505060408701359150808211156104cd57600080fd5b506104da878288016103bb565b95989497509550505050565b634e487b7160e01b600052601160045260246000fd5b60008261051957634e487b7160e01b600052601260045260246000fd5b500490565b808202811582820484141761031c5761031c6104e6565b8181038181111561031c5761031c6104e6565b8082018082111561031c5761031c6104e6565b6000815161056d81856020860161033b565b9290920192915050565b6001600160f81b031983168152815160009061059a81600185016020870161033b565b919091016001019392505050565b6040815260006105bb604083018561035f565b90508260208301529392505050565b6000602082840312156105dc57600080fd5b5051919050565b81818437506000910190815290565b7f646174613a6170706c69636174696f6e2f6a736f6e2c7b22646573637269707481527f696f6e223a2022537461726b7368656574222c20226e616d65223a202200000060208201528688603d8301376000878201602160f81b603d820152875161066481603e840160208c0161033b565b7f222c22696d616765223a2022646174613a696d6167652f7376672b786d6c2c25603e92909101918201527f334373766725323076696577426f782533442532373025323030253230383925605e8201527f3230353525323725323066696c6c2533442532376e6f6e65253237253230786d607e8201527f6c6e73253344253237687474702533412f2f7777772e77332e6f72672f323030609e8201527f302f737667253237253345253343646566732533452533437374796c6525334560be8201527f253430666f6e742d66616365253230253742666f6e742d66616d696c7925334160de8201527f253230253237507265737325323053746172742532303250253237253342737260fe8201527f6325334125323075726c25323825323764617461253341666f6e742f776f666661011e8201527f32253342626173653634253243643039474d6741424141414141424c3841413861013e8201527f41414141415235774141424b674141454141414141414141414141414141414161015e8201527f4141414141414141414141414150305a4756453063476a41624d42794358675a61017e8201527f6741494e794551674b3846545361517544524141424e67496b41344e4d42434161019e8201527f46687a5148684649623644566c42306a314f4d4253336f4f4953744562732f2f6101be8201527f2f6c4a776356727a47634f30676f684c45484d6369694443434e57695a6761306101de8201527f79625345555954514f6a4b427038546c737a7344526438716174586c333058746101fe8201527f30645a47467952305668444b776c62746c25324272734643773945316e64655961021e8201527f4a74732f37527762305673784d71576c636a6a775445537a2f5568752f77337361023e8201527f33746b6f496d70343464515168576f456d54337579526d70746f7553446b7a5761025e8201527f454138762f3932364a4b7539486f696e6e3673376674336d4965476c7737547161027e8201527f6437456f326a46517849766a5642494a70563269614f62547a68575932314e7461029e8201527f476772687434704d4b3457556a34624c7967542f51253242514c7879253242336102be8201527f6c482f362f6b6275496444497239446a724a496a6f394a7336524d58253242456102de8201527f6b37424f545a6b6d70397a347455524652566656307148504448375a7462364a6102fe8201527f616f6130684c335975616232473373667a72365776394536793569767025324261031e8201527f7135564c74426a514478476f5345304150313762336466376c61726a6525324261033e8201527f73637a6b7241744a334b6657304a342532424b323365744b4b556a383554616f61035e8201527f57473453346158436c427743413268676141652532423658396f696e32304e6261037e8201527f554a7264466767517049686d5247494d30372f7025324277375a7058316c473161039e8201527f6a6a51787073435141423438714445415042346950312f6a39592f4261686a356103be8201527f5943414e302f78714157496852616a6c6e694e654f50396e78433466667932556103de8201527f694843304e47386b686f6f567a6f7459334445417a417a41356b473735337a6a6103fe8201527f4853354d6e6d586b69496a6d54554d36556d4d3025324256346976752f48377861041e8201527f6a364666322f6b343472787a6449324141676742492f4c48416b394a7a35554d61043e8201527f496f4c7755344146455435725a464f33444d616655633061777351434879497061045e8201527f557a546b30784a474a454f6a4e6871436b474570496153474f6a714e466d2f5761047e8201527f4e434e3569636b71434d6e414165564c4d4c655867356971386b365752585a5261049e8201527f326c337042393831427a73475a743225324256696c4342723954494a674b67786104be8201527f365542514446253242566a4b44714e7741414948386a6949664d6e75384b68666104de8201527f584b486f4e3348634134477245786842324155442f795a554d423857547579496104fe8201527f413444634f4b656434397939504249616e426967734d454e38556b30766c547661051e8201527f304a58334e394d795a75544d763573655357413525324238556538504465547261053e8201527f645467474973566d4e33635856586a6463795275633434385866664176506e7361055e8201527f3575324d4531722532426a4731703137767a3849704f416e483444427367793361057e8201527f512f54376b33646d2f3846334232377355694877464631414f6c683055646e4961059e8201527f4471494e5164506355393145786f2f346252696a6a5169704e4e307a4c646c7a6105be8201527f504438496f547449734c38717162746f4f5149514a5a567849705931315073536105de8201527f55533231397a4c585066642f507667765751346372464d2532425769755671706105fe8201527f645a6f4e6475645872632f4745324d4a36656e3575635746694763375274364f61061e8201527f487676354d674c2532427a44733578444277696141315433554877326b63594361063e8201527f312f55666453316645316d37763742346537653350574848786533594f32483561065e8201527f25324241504f5a7965503025324251506553425468793078713965363241486a61067e8201527f6141556842432f364144484c6f476f4f657636412532426867487369317a613861069e8201527f71355a4e4d716a596c575a4d713867354248445574495370574a73526f52544a6106be8201527f56613049305a3957546b5371564b73507a3464586a7648746449684c6e7670746106de8201527f554c4330753542567579414d544b4a513930594b5267546e5769476b6d7153456106fe8201527f714b6d7256685259674b6b335443686255573671456f45637665577a6859535461071e8201527f4c32484e706735452f6d7151393956564467763352475435586d33637a68754c61073e8201527f3972685864316132372f736c5130686959366a643739614f5a43746a6f52687261075e8201527f623136575676514b725734477a786a7869723238494d697a2f7155447973495761077e8201527f7037516a667765347a556437614a735651575179524c554b484b42577938577661079e8201527f45565333584d53353656337757644f442532424638757639645477496d4b722f6107be8201527f5064626d5763775176456641616a7975566a70784e32704f56635769336c38776107de8201527f454c2f6d395070646f55494536253242504b5838315041546d67654f304231736107fe8201527f47454825324261707a353466646d534a7a333741686635366a4c7739756e504561081e8201527f35644d4b3025324237544639563843435466523979664e7355493474557a464661083e8201527f42326e536e384b4f626a64446964554c7034494a6873777878595172595a643661085e8201527f4e76436e55394d445825324252654c6e4d546d6c315a453972306b5077334e3261087e8201527f6752253242736a4573596d4953706b356c31497333594e614a4b6f6e7a65703761089e8201527f56637354316e556b62347048774b5a41796b614b6f43504630506f6d456876496108be8201527f5758656e6f5a767836774f4b313070316c3274546858793850316555776473766108de8201527f53715157766f424d7473674851554a614774494273756861776450545a5378596108fe8201527f707257757734647a7231564755744449465871726f4d4d69597346783857695461091e8201527f336463574b6f376d50554c79715657413972305974524a4c626957766a6e4c2561093e8201527f324272633452646767624e516c514141613264306d616236364d48447074314361095e8201527f6477626b51436253375053445a4d7a3746724f51713165636153304a6c74644161097e8201527f6c44527941587173364130586247707748676b70367572557757416272464d3361099e8201527f75794d764e4b6c344d6c435548537950416d3931776144454a3559595148754a6109be8201527f4d32304b575251737637486b61334770686c533258444b714f4b4245554753316109de8201527f65306b63316f323449494166486c4449794278584a4a656767423369386174566109fe8201527f67434f3064444f5a484a57596a564c416a6a397137765673456e72684b374568610a1e8201527f4c75427a42586d4d674554634531636d61436976504b6f4a766670466c794935610a3e8201527f4d70584234454325324245672f596d303454787843354e6c73596b74646f5951610a5e8201527f55656c38624673456c3748345a36734377622f38626b347458574658504b6a71610a7e8201527f5462526e64336e4c5770394f784941706c664b586747684e6c72443462354a4c610a9e8201527f5a367055753441726756614d366561357844574244476f7a707a4641376e6747610abe8201527f74596334486141775269475576637653653652414177335a576b564f4667764b610ade8201527f46364955696c4d49394964715155345134585264484866736666517770313955610afe8201527f434a49306a5773725433356f5578303678507268473271364d4533554f306c63610b1e8201527f635a557354454351784a44527854444b6c334c4948722f6162546f73686c6466610b3e8201527f51786a364f57745273466e6966444373473674336b426f344e6d424a6d615556610b5e8201527f54636c794951414a4c6a6e723042365a3859464d6e396b397967703752727848610b7e8201527f36766877624a4e41654b4d554436353974386746514a4d5377652f434f624850610b9e8201527f467671484746554e5266253242737245663354584b42725a76676b6369396972610bbe8201527f426d63442f7458616754474358634e68432532424f3539754c706e6673796f71610bde8201527f4c53313238374552776d38666165564f6d3857634437386c5a36594232793938610bfe8201527f5a4c6c4d3972557264324c514e6c324956643454727376675139363079377573610c1e8201527f5965306854506170576a71726c2532425837784665424e54253242315a644a4a610c3e8201527f572532424678745737584e7774634e7a7761672532425256656a6d4a6839656d610c5e8201527f6c495a4b69694e63694b3849554f4d33556a4a376342554e5847505853326c68610c7e8201527f253242687770676f4836567348524f63764569723372585970344c7769435a77610c9e8201527f3176486c43623552314d68623564536e4f326d6e6f475a6f5846315765574757610cbe8201527f6d7a694a314a555534715072306e694a536c4e424331636b4b6d4a6657625877610cde8201527f5577757449547a456d6a776770776142753464525066746a2f4e384143526e64610cfe8201527f616b2f4641674b674c37305058577839767a6b59322532426d34355473496b4c610d1e8201527f3037616f70444e6f676830535262535a534f397a744657516a376e574c676275610d3e8201527f364325324254374b6a44715a3667456e5277674d78306b4c5a77797962514f76610d5e8201527f514130773054782f354a42722f63595a6453574f546a774446364e6f586b796a610d7e8201527f33566a484e4751494e76426a5a734a4a3377466141516d6f5a575a5970416961610d9e8201527f574f466e6e686455524176576b557a77693062677a5a4158796f445545714863610dbe8201527f57307069454c574f777168773365765478444957724e32495371525151454c41610dde8201527f4d32365334486c723548552f48784a43436844424a6b756b6341573856415430610dfe8201527f6770545a544b4e48677a444f7234314751656a4f34677a416e6b577077464752610e1e8201527f43334c625231787a4b434875365635694674674c704f384b51596d5965467868610e3e8201527f4c32643838736469506a2f76306b427a636c51637954735766324d6445394944610e5e8201527f386d5858576a72434b253242354532756e336e6976656973526e726971317548610e7e8201527f594d6a6a69694945304b6466674d6f3163476d6b557254624f30356732737633610e9e8201527f477673525971762f61457736375472644f705435567a4641364131417939634b610ebe8201527f6f44667762544a64445750524e57517354796a6d3772486249734b466b6f4f2f610ede8201527f5a4c4376735966785973337768534338614c49344b765677373773336e347a48610efe8201527f67697061634a6e435362463945727a53357069386343577655597a4f5064327a610f1e8201527f684a2f4750437a53684f453378596c634f3350796164586a54334f6b68706841610f3e8201527f58465853766865544e5355525446565641486f4a6d7949726b6a454b6f517746610f5e8201527f4730303554334158643935764e30446d336d427332786746546c253242513572610f7e8201527f73416a6e744768707a6f62643642374e7a52664e56653130446f4e5639343753610f9e8201527f59646f635252624776636d785456786f61367a717756376d416e773544314745610fbe8201527f5474327a48382532425476514256356e37672f32615768743979794e594c3974610fde8201527f4f42744167384846435945316d4e775432454232467538544968543776565241610ffe8201527f3461587a6e6b3670545a4e6779696f73747749364b654655374c696c7041253261101e8201527f42334234474a794277574d327062466a4876734a3747754f6f616b6a6d46746a61103e8201527f59344c6254396c323239253242453646374c4475577a744c6e333749786b386a61105e8201527f356c42564b33774c7369362f416641756f6a34396c4d6b5653545045396b704761107e8201527f64304c724555534a4941413070596c4178414d642f4e4f46776f4a446458466961109e8201527f307a4f5744422f54464a705666575642574f516274724a556230636c663369256110be8201527f3242575072446f596c65545674564f45306d36793564487444725551776f414c6110de8201527f7455523365585364444d4e785866656a594674764c626c726c4a7777484b2f456110fe8201527f6957504a616b32574b35386e684e6f4c6a615a55475841756f32656f5777464561111e8201527f66612f445334496958717246714779633348726939785132693243352f73357661113e8201527f7a424d30793777334d4473774d3759325247427172464d6778374f696325324261115e8201527f30497a736d5678617a5473305263666a324f3334532f525639503269486f427561117e8201527f6c4b49594244665a46654c53356439725379664a64536c67683268644d72324f61119e8201527f5552334b6e6c506e4f41785477314a384c4d325a776e4671765a745a4a6c78786111be8201527f343873776243743272316b664875443756624831326159383849437456734b786111de8201527f4b742f31726b616c42414d74782f6f6f6d43445059626b556f4c6344624b436a6111fe8201527f7675713953544467746a584744715735564b36686347654f46697a6a3643714c61121e8201527f4f49716b57783477733245504d444e7378253242613661533230384f39784c3061123e8201527f526146586f394241645530706e452532424c695359334b536f4a41525978646e61125e8201527f7a69545a4d706961442f3438496969393834446151357976656378414673735761127e8201527f792f686274696d63253242704c386b35796f70496d4a627948712f6138797a6c61129e8201527f6c37726f4f7a586d786d4163337459585363546b65734d6344324939315a36336112be8201527f6549312f394a627755716b36737863394b52677277574d414e6543314e6e39756112de8201527f4779775473706d5538712532426c5a6d43714d674153363662674841476a514b6112fe8201527f73754a334451416a5235346d356a4c7a5a616e546c62646530253242726e663461131e8201527f385a574138546c32673277414779427748516e3552322532424e6a726542677861133e8201527f626c734e46627554776d6862414a48737a2f72416f61764c4f34317874767a5961135e8201527f4768336e4c4a426b41506a7578424a445248333048426575385567436978464e61137e8201527f437951322f4b253242385157372f6530253242664f2532423436524e5730657961139e8201527f4c726f39446a5467704a4e4d3547385179306c54644f756d73773066715045696113be8201527f393646702532424830634d774e6f376a787a596d6e4e664d5a6d64506c7932706113de8201527f6f7132575065476d67507136474c78504e34536c4b486e7870624f69754c58516113fe8201527f75583155715031676a6f38426136536c55314f416d5267707a7531735444584a61141e8201527f50754d3338546f387130344c324e777970653837327777556741675a6c70386461143e8201527f6b5166397a38544d43624d6b596b3758484375333564375a5a41656f346b5a4b61145e8201527f68784953386945354c546a334c4f6976485a7268394a3870337a4c5a436a776361147e8201527f6970354452694b6e576e49664c33386b4a684d7452776a67553525324256726d61149e8201527f714b6c6739307a376a64732f4238444b646b464c76483353253242376f4838616114be8201527f6c445a6c626734533155583574434d445342324f364b756c7a41344b763067376114de8201527f314251643054464b7733685358696e62374e6c304258725873514e6376436b386114fe8201527f6d6f394f786965783559627a78564e2f6b3738336f48545a495777393079495a61151e8201527f777672697164475473586e54384965705437597946434f4a6741395a3042794961153e8201527f455956735478522f6b73616b324268376f4b767034766e695530364d57317a4261155e8201527f4672746568647a306b6b587951786a426d7965645636644d596545386146787461157e8201527f6575777355466136466c6c54446c716430707a525a77473663467266574d627061159e8201527f384738587a6a66624d253242354658657076356f457273696c363458783663376115be8201527f5841576275696d3666387347494d58666f334a6971476b703333376854536a676115de8201527f65636862364f42472f327a31376a6f6d4469476d253242476c623146553069656115fe8201527f6e7552796977654c576767447a6d4655765545556a5a6f377356544877684f4661161e8201527f504d6b4e737146423977796d6b45307639666d7477453854377135384e594f3761163e8201527f787534623833766e46766c35755378446c472532426b4f51675249644f346a6761165e8201527f7a786a53486a4b4c7332742f6c684f647771766131415744437072763344345361167e8201527f34523741625934544362664b4637744265363554343551347a7a49714433316161169e8201527f79797557716a692532424636585337535439483943314f342f694b366b4775766116be8201527f6b512f664e3537487837456533373435622f76766e2f62482f58253242392f256116de8201527f32426762656d684f416d49705576755157757344764b517578394a44564e734b6116fe8201527f673651636d6b73515341445530346347524c523768466f5a326337785545664761171e8201527f253242776b755459474d764c6a422f6550634936416847686e5735717a45416961173e8201527f4a586377564545775869654e70536c317a6a457253253242435325324248634c61175e8201527f6f52506d7661324d6767412f69794c67536f544a555767733442794149514f3061177e8201527f4f6f705a487656627a6844494c65557155677a7a48492f667950474e7879777361179e8201527f6f796c6865534639577662795363336b4544716b32415636436c4364635535536117be8201527f6e6c4e6e4963394b794d63384c79622532423867484f4a795173466c4c6250526117de8201527f796d6d374a42743349545a544162314732444252496b514b51705451396939626117fe8201527f3665435353387a4d366161525364544b5657524d336663454a4c644b61746e7361181e8201527f724959774e4a55253242733048364461757832775a35686733706c653042474861183e8201527f756b316b4543734859446461496d4b7025324233463542317859763763486b7161185e8201527f644475306a4b645273657a3531376d63563641685148346931484e3173766c6a61187e8201527f5248366845454672682532426e72726d47316e33307a4d346749776d694d774561189e8201527f624b6842545564423141486f582532424b6741517a4f48543946494f71436b526118be8201527f4e4e623273397170496943534f753167576868497343564a73765771457175356118de8201527f47624a514b4e6a61427465394c4f69676368414a7665475773394332323033766118fe8201527f6f6e476c6b77725251323464646732796345646157554456734441785548734961191e8201527f77773665615234464665336d4a416b66426d5a6452395264774a485a6d47645261193e8201527f7950436a706a627a31712f584a34534949446b66384b4b6e6e32456c4b6d794c61195e8201527f69573442513836733151554b2f76426867524e776548766c5968687a7238706361197e8201527f67704b4b6d6f61576a7036426b594f48446c7835734b5647336365474539657661199e8201527f506e773563646667454242676f554946536238587632504553314772446a78456119be8201527f69524b6b697846716a54704d6d544b6b693148726a7a354368517155717845716119de8201527f544c6c4b6c53715571314772547231476a527130717846717a62744f6e5347656119fe8201527f3668374a6d627a4968355a6544696c315a58536a7430774375616b336c6e476f611a1e8201527f5655506f53734e663337394b326a6274716d44674d69485a42665a6c68324839611a3e8201527f75773738495469314a466a585653662f4336634f55667a346f30644178305447611a5e8201527f777448446863666a3443516d49694531444d5a42546b6c4e5a557065566f614f611a7e8201527f6e717633733234314e50503965766574594768435a50576a4979747332706173611a9e8201527f436a25324270556a54596c336b615574374f744b4a6136355850396d356e6367611abe8201527f364e686a685a587032762532426d57724341545a754a303368316b6a55756976611ade8201527f5067596e6a6e35744b4a4f6b326e6362703251414559585a69304b496d50356b611afe8201527f744961466e366b5a397743253237253239253230666f726d6174253238253237611b1e8201527f776f666632253237253239253342666f6e742d7765696768742533412532306e611b3e8201527f6f726d616c253342666f6e742d7374796c652533412532306e6f726d616c2533611b5e8201527f42666f6e742d646973706c617925334125323073776170253342253744746578611b7e8201527f74253230253742666f6e742d66616d696c792533412532302532375072657373611b9e8201527f2532305374617274253230325025323725334266696c6c253341253230776869611bbe8201527f74652537442e76616c7565253230253742666f6e742d73697a65253341253230611bde8201527f313070782533422537442e6e616d65253230253742666f6e742d73697a652533611bfe8201527f412532303470782533422537442533432f7374796c652533452533432f646566611c1e8201527f7325334525334372656374253230776964746825334425323738392532372532611c3e8201527f30686569676874253344253237353525323725323066696c6c25334425323762611c5e8201527f6c61636b2532372532302f253345253343726563742532307825334425323735611c7e8201527f2e3525323725323079253344253237352e352532372532307769647468253344611c9e8201527f2532373738253237253230686569676874253344253237343425323725323066611cbe8201527f696c6c2533442532372532333030303046462532372532302f25334525334374611cde8201527f657874253230746578742d616e63686f722533442532376d6964646c65253237611cfe8201527f2532307825334425323734342e35253237253230792533442532373333253237611d1e8201527f253230636c61737325334425323776616c756525323725334500000000000000611d3e820152612ba5612b9e6129f5611d5784018a61055b565b7f2533432f746578742533452533437265637425323078253344253237352e352581527f323725323079253344253237352e35253237253230776964746825334425323760208201527f373825323725323068656967687425334425323734342532372532307374726f60408201527f6b652533442532372532334646344630412532372532307374726f6b652d776960608201527f647468253344253237332532372532302f25334525334372656374253230782560808201527f334425323733302532372532307925334425323734352e35253237253230776960a08201527f647468253344253237353825323725323068656967687425334425323738253260c08201527f3725323066696c6c2533442532372532334646344630412532372532302f253360e08201527f4525334374657874253230746578742d616e63686f72253344253237656e64256101008201527f32372532307825334425323738372532372532307925334425323735322532376101208201527f253230636c6173732533442532376e616d6525323725334500000000000000006101408201526101580190565b86886105e3565b602160f81b81529050612bbb600182018561055b565b7f2533432f746578742533452533432f737667253345227d00000000000000000081526017019a995050505050505050505056fea26469706673582212206a2c00c13ddb4f1bcd7ee36e36f0c874d7d9dadcf38306eab3610b5a6e7af83464736f6c63430008110033", + "nonce": "0x2", + "accessList": [] + }, + "additionalContracts": [], + "isFixedGasLimit": false + }, + { + "hash": "0x3de75e0187d1300847016f9712d9bad87f0de9d06ecc20887ff85b8562563c90", + "transactionType": "CREATE", + "contractName": null, + "contractAddress": "0xCf7Ed3AccA5a467e9e704C703E8D87F634fB0Fc9", + "function": null, + "arguments": null, + "transaction": { + "type": "0x02", + "from": "0xf39fd6e51aad88f6f4ce6ab8827279cfffb92266", + "gas": "0x42230", + "value": "0x0", + "data": "0x608060405234801561001057600080fd5b506102cf806100206000396000f3fe608060405234801561001057600080fd5b506004361061004c5760003560e01c80630194db8e14610051578063072bdcc214610076578063a391c15b14610089578063b67d77c51461009c575b600080fd5b61006461005f366004610160565b6100af565b60405190815260200160405180910390f35b610064610084366004610160565b6100ef565b61006461009736600461021e565b610129565b6100646100aa36600461021e565b61013e565b600080805b83518110156100e8578381815181106100cf576100cf610240565b60200260200101518201915080806001019150506100b4565b5092915050565b60006001815b83518110156100e85783818151811061011057610110610240565b60200260200101518202915080806001019150506100f5565b60006101358284610256565b90505b92915050565b60006101358284610278565b634e487b7160e01b600052604160045260246000fd5b6000602080838503121561017357600080fd5b823567ffffffffffffffff8082111561018b57600080fd5b818501915085601f83011261019f57600080fd5b8135818111156101b1576101b161014a565b8060051b604051601f19603f830116810181811085821117156101d6576101d661014a565b6040529182528482019250838101850191888311156101f457600080fd5b938501935b82851015610212578435845293850193928501926101f9565b98975050505050505050565b6000806040838503121561023157600080fd5b50508035926020909101359150565b634e487b7160e01b600052603260045260246000fd5b60008261027357634e487b7160e01b600052601260045260246000fd5b500490565b8181038181111561013857634e487b7160e01b600052601160045260246000fdfea2646970667358221220fcdef23ba4219270ddb3ab764e22a87e229c05e6f1dfc4eeea983fa1a1dac91f64736f6c63430008110033", + "nonce": "0x3", + "accessList": [] + }, + "additionalContracts": [], + "isFixedGasLimit": false + }, + { + "hash": "0x9b429d2fd55ffc6fa8696728d353fd418da33819473cfb47ddf43569b706759b", + "transactionType": "CREATE", + "contractName": "Evmsheet", + "contractAddress": "0xDc64a140Aa3E981100a9becA4E685f962f0cF6C9", + "function": null, + "arguments": [ + "0x9fE46736679d2D9a65F0992F2272dE9f3c7fa6e0", + "10000000000000000" + ], + "transaction": { + "type": "0x02", + "from": "0xf39fd6e51aad88f6f4ce6ab8827279cfffb92266", + "gas": "0x34bf99", + "value": "0x0", + "data": "0x608060405234801561001057600080fd5b50604051612ed9380380612ed983398101604081905261002f916100b1565b61003833610061565b600280546001600160a01b0319166001600160a01b0393909316929092179091556001556100eb565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b600080604083850312156100c457600080fd5b82516001600160a01b03811681146100db57600080fd5b6020939093015192949293505050565b612ddf806100fa6000396000f3fe608060405260043610620000a95760003560e01c80638da5cb5b116200006c5780638da5cb5b146200016d578063ab2fa65a146200018d578063ae28505e14620001b4578063c56c4cf114620001d9578063f2fde38b14620001fb578063f52be2a2146200022057600080fd5b806303fb31e814620000ae5780631164c83d14620000d5578063145e414714620000ec5780635787cacb146200012e578063715018a61462000155575b600080fd5b348015620000bb57600080fd5b50620000d3620000cd36600462000778565b62000247565b005b620000d3620000e6366004620007e9565b62000273565b348015620000f957600080fd5b50620001116200010b36600462000864565b620004b2565b6040516001600160a01b0390911681526020015b60405180910390f35b3480156200013b57600080fd5b50620001466200054f565b60405162000125919062000891565b3480156200016257600080fd5b50620000d3620005b3565b3480156200017a57600080fd5b506000546001600160a01b031662000111565b3480156200019a57600080fd5b50620001a5620005cb565b604051620001259190620008e0565b348015620001c157600080fd5b5062000111620001d336600462000930565b620005f7565b348015620001e657600080fd5b5060025462000111906001600160a01b031681565b3480156200020857600080fd5b50620000d36200021a36600462000778565b62000622565b3480156200022d57600080fd5b506200023860015481565b60405190815260200162000125565b62000251620006a1565b600280546001600160a01b0319166001600160a01b0392909216919091179055565b60015434146200029d5760405163723a79e360e11b81523460048201526024015b60405180910390fd5b600060405180602001620002b1906200074d565b6020820181038252601f19601f8201166040525090506000828251602084016000f56002546040516356d3163d60e01b81526001600160a01b0391821660048201529192508216906356d3163d90602401600060405180830381600087803b1580156200031d57600080fd5b505af115801562000332573d6000803e3d6000fd5b505060405163c47f002760e01b81526001600160a01b038416925063c47f0027915062000366908a908a906004016200094a565b600060405180830381600087803b1580156200038157600080fd5b505af115801562000396573d6000803e3d6000fd5b5050604051635c26412360e11b81526001600160a01b038416925063b84c82469150620003ca90889088906004016200094a565b600060405180830381600087803b158015620003e557600080fd5b505af1158015620003fa573d6000803e3d6000fd5b505060405163f2fde38b60e01b81523260048201526001600160a01b038416925063f2fde38b9150602401600060405180830381600087803b1580156200044057600080fd5b505af115801562000455573d6000803e3d6000fd5b5050600380546001810182556000919091527fc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b0180546001600160a01b0319166001600160a01b0394909416939093179092555050505050505050565b600060ff60f81b838360405180602001620004cd906200074d565b6020820181038252601f19601f82011660405250805190602001206040516020016200053094939291906001600160f81b031994909416845260609290921b6bffffffffffffffffffffffff191660018401526015830152603582015260550190565b60408051601f1981840301815291905280516020909101209392505050565b60606003805480602002602001604051908101604052809291908181526020018280548015620005a957602002820191906000526020600020905b81546001600160a01b031681526001909101906020018083116200058a575b5050505050905090565b620005bd620006a1565b620005c96000620006fd565b565b606060405180602001620005df906200074d565b601f1982820381018352601f90910116604052919050565b600381815481106200060857600080fd5b6000918252602090912001546001600160a01b0316905081565b6200062c620006a1565b6001600160a01b038116620006935760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b606482015260840162000294565b6200069e81620006fd565b50565b6000546001600160a01b03163314620005c95760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015260640162000294565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b612430806200097a83390190565b80356001600160a01b03811681146200077357600080fd5b919050565b6000602082840312156200078b57600080fd5b62000796826200075b565b9392505050565b60008083601f840112620007b057600080fd5b50813567ffffffffffffffff811115620007c957600080fd5b602083019150836020828501011115620007e257600080fd5b9250929050565b6000806000806000606086880312156200080257600080fd5b853567ffffffffffffffff808211156200081b57600080fd5b6200082989838a016200079d565b909750955060208801359150808211156200084357600080fd5b5062000852888289016200079d565b96999598509660400135949350505050565b600080604083850312156200087857600080fd5b62000883836200075b565b946020939093013593505050565b6020808252825182820181905260009190848201906040850190845b81811015620008d45783516001600160a01b031683529284019291840191600101620008ad565b50909695505050505050565b600060208083528351808285015260005b818110156200090f57858101830151858201604001528201620008f1565b506000604082860101526040601f19601f8301168501019250505092915050565b6000602082840312156200094357600080fd5b5035919050565b60208152816020820152818360408301376000818301604090810191909152601f909201601f1916010191905056fe60806040523480156200001157600080fd5b50604051806040016040528060078152602001660536865657420360cc1b815250604051806040016040528060048152602001630534854360e41b81525062000069620000636200008f60201b60201c565b62000093565b600162000077838262000188565b50600262000086828262000188565b50505062000254565b3390565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b634e487b7160e01b600052604160045260246000fd5b600181811c908216806200010e57607f821691505b6020821081036200012f57634e487b7160e01b600052602260045260246000fd5b50919050565b601f8211156200018357600081815260208120601f850160051c810160208610156200015e5750805b601f850160051c820191505b818110156200017f578281556001016200016a565b5050505b505050565b81516001600160401b03811115620001a457620001a4620000e3565b620001bc81620001b58454620000f9565b8462000135565b602080601f831160018114620001f45760008415620001db5750858301515b600019600386901b1c1916600185901b1785556200017f565b600085815260208120601f198616915b82811015620002255788860151825594840194600190910190840162000204565b5085821015620002445787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b6121cc80620002646000396000f3fe608060405234801561001057600080fd5b50600436106102275760003560e01c8063715018a611610130578063b85d8b85116100b8578063cf0983981161007c578063cf09839814610512578063cfbe95d814610535578063df4ca20614610556578063e985e9c514610576578063f2fde38b146105a457600080fd5b8063b85d8b85146104a4578063b88d4fde146104ce578063b8c368ec146104e1578063c47f0027146104ec578063c87b56dd146104ff57600080fd5b806395d89b41116100ff57806395d89b4114610439578063a22cb46514610441578063b46ebb1214610454578063b6d658e114610467578063b84c82461461049157600080fd5b8063715018a6146103fa578063768d5029146104025780638ada6b0f146104155780638da5cb5b1461042857600080fd5b80631b06443c116101b35780634f6ccce7116101825780634f6ccce71461038157806356d3163d146103a15780636352211e146103b45780636a0abc74146103c757806370a08231146103e757600080fd5b80631b06443c14610335578063206848f61461034857806323b872dd1461035b57806342842e0e1461036e57600080fd5b8063081812fc116101fa578063081812fc146102a1578063095ea7b3146102e2578063172b9eed146102f757806318160ddd1461030a5780631941fd141461031357600080fd5b806301ffc9a71461022c57806302f3c4c91461025457806306fdde03146102745780630715a24a1461027c575b600080fd5b61023f61023a36600461176a565b6105b7565b60405190151581526020015b60405180910390f35b610267610262366004611861565b610609565b60405161024b9190611951565b610267610638565b6102936fffffffffffffffffffffffffffffffff81565b60405190815260200161024b565b6102ca6102af366004611964565b6005602052600090815260409020546001600160a01b031681565b6040516001600160a01b03909116815260200161024b565b6102f56102f036600461197d565b6106c6565b005b6102676103053660046119a9565b6107ad565b61029360075481565b610326610321366004611964565b610875565b60405161024b939291906119de565b6102ca610343366004611a0e565b61092a565b610326610356366004611964565b6109e3565b6102f5610369366004611a2b565b610ae1565b6102f561037c366004611a2b565b610ca8565b61029361038f366004611964565b60086020526000908152604090205481565b6102f56103af366004611a0e565b610da0565b6102ca6103c2366004611964565b610dca565b6103da6103d53660046119a9565b610e1c565b60405161024b9190611a6c565b6102936103f5366004611a0e565b610e60565b6102f5610ec3565b6102f5610410366004611af9565b610ed7565b6009546102ca906001600160a01b031681565b6000546001600160a01b03166102ca565b610267611035565b6102f561044f366004611b63565b611042565b610267610462366004611964565b6110ae565b61047a610475366004611964565b611258565b60408051921515835260208301919091520161024b565b6102f561049f366004611ba1565b611275565b6104b56104b2366004611964565b90565b6040516001600160e01b0319909116815260200161024b565b6102f56104dc366004611be3565b6112c6565b6102ca600160801b81565b6102f56104fa366004611ba1565b6113ae565b61026761050d366004611964565b6113ff565b61023f610520366004611a0e565b600160801b6001600160a01b03919091161090565b61023f610543366004611861565b516001600160a01b0316600160801b1490565b610569610564366004611964565b6114c9565b60405161024b9190611c16565b61023f610584366004611c4d565b600660209081526000928352604080842090915290825290205460ff1681565b6102f56105b2366004611a0e565b611526565b60006301ffc9a760e01b6001600160e01b0319831614806105e857506380ac58cd60e01b6001600160e01b03198316145b806106035750635b5e139f60e01b6001600160e01b03198316145b92915050565b6060816020015160405160200161062291815260200190565b6040516020818303038152906040529050919050565b6001805461064590611c7b565b80601f016020809104026020016040519081016040528092919081815260200182805461067190611c7b565b80156106be5780601f10610693576101008083540402835291602001916106be565b820191906000526020600020905b8154815290600101906020018083116106a157829003601f168201915b505050505081565b6000818152600360205260409020546001600160a01b03163381148061070f57506001600160a01b038116600090815260066020908152604080832033845290915290205460ff165b6107515760405162461bcd60e51b815260206004820152600e60248201526d1393d517d055551213d49256915160921b60448201526064015b60405180910390fd5b60008281526005602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b606060006107ba83610e1c565b9050606060005b825181101561086d576000806107ef8584815181106107e2576107e2611cb5565b6020026020010151611258565b9150915081156108335783610803826110ae565b61080c90611ccb565b60405160200161081d929190611cef565b6040516020818303038152906040529350610858565b6040516108469085908390602001611cef565b60405160208183030381529060405293505b5050808061086590611d27565b9150506107c1565b509392505050565b600a602052600090815260409020805460018201546002830180546001600160a01b039093169391926108a790611c7b565b80601f01602080910402602001604051908101604052809291908181526020018280546108d390611c7b565b80156109205780601f106108f557610100808354040283529160200191610920565b820191906000526020600020905b81548152906001019060200180831161090357829003601f168201915b5050505050905083565b6000600160801b6001600160a01b03831610156109da576000610955836001600160a01b03166110ae565b604051632d737e4960e21b8152909150735fbdb2315678afecb367f032d93f642f64180aa39063b5cdf92490610992908490600090600401611d40565b602060405180830381865af41580156109af573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906109d39190611d62565b9392505050565b5090565b919050565b60008181526003602052604081205481906060906001600160a01b0316610a1057600160801b9250610a2b565b6000848152600a60205260409020546001600160a01b031692505b6000848152600a60205260409020600181015460029091018054859291908190610a5490611c7b565b80601f0160208091040260200160405190810160405280929190818152602001828054610a8090611c7b565b8015610acd5780601f10610aa257610100808354040283529160200191610acd565b820191906000526020600020905b815481529060010190602001808311610ab057829003601f168201915b505050505090509250925092509193909250565b6000818152600360205260409020546001600160a01b03848116911614610b375760405162461bcd60e51b815260206004820152600a60248201526957524f4e475f46524f4d60b01b6044820152606401610748565b6001600160a01b038216610b815760405162461bcd60e51b81526020600482015260116024820152701253959053125117d49150d25412515395607a1b6044820152606401610748565b336001600160a01b0384161480610bbb57506001600160a01b038316600090815260066020908152604080832033845290915290205460ff165b80610bdc57506000818152600560205260409020546001600160a01b031633145b610c195760405162461bcd60e51b815260206004820152600e60248201526d1393d517d055551213d49256915160921b6044820152606401610748565b6001600160a01b0380841660008181526004602090815260408083208054600019019055938616808352848320805460010190558583526003825284832080546001600160a01b03199081168317909155600590925284832080549092169091559251849392917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b610cb3838383610ae1565b6001600160a01b0382163b1580610d5c5750604051630a85bd0160e11b8082523360048301526001600160a01b03858116602484015260448301849052608060648401526000608484015290919084169063150b7a029060a4016020604051808303816000875af1158015610d2c573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610d509190611d7b565b6001600160e01b031916145b610d9b5760405162461bcd60e51b815260206004820152601060248201526f155394d0519157d49150d2541251539560821b6044820152606401610748565b505050565b610da861159f565b600980546001600160a01b0319166001600160a01b0392909216919091179055565b6000818152600360205260409020546001600160a01b0316806109de5760405162461bcd60e51b815260206004820152600a6024820152691393d517d3525395115160b21b6044820152606401610748565b60608082516040519150602081048252602082016020850160005b83811015610e4f578181015183820152602001610e37565b505050810160200160405292915050565b60006001600160a01b038216610ea75760405162461bcd60e51b815260206004820152600c60248201526b5a45524f5f4144445245535360a01b6044820152606401610748565b506001600160a01b031660009081526004602052604090205490565b610ecb61159f565b610ed560006115f9565b565b6000858152600360205260409020546001600160a01b0316610f2f57610efd3286611649565b60078054600090815260086020526040812087905581546001929190610f24908490611d98565b90915550610f889050565b6000858152600360205260409020546001600160a01b03163214610f8857600085815260036020526040908190205490516324f3f02560e21b81526001600160a01b039091166004820152326024820152604401610748565b6040518060600160405280856001600160a01b0316815260200184815260200183838080601f0160208091040260200160405190810160405280939291908181526020018383808284376000920182905250939094525050878152600a6020908152604091829020845181546001600160a01b0319166001600160a01b0390911617815590840151600182015590830151909150600282019061102b9082611df9565b5050505050505050565b6002805461064590611c7b565b3360008181526006602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b6000818152600a6020908152604080832081516060818101845282546001600160a01b0316825260018301549482019490945260028201805494959491938401916110f890611c7b565b80601f016020809104026020016040519081016040528092919081815260200182805461112490611c7b565b80156111715780601f1061114657610100808354040283529160200191611171565b820191906000526020600020905b81548152906001019060200180831161115457829003601f168201915b505050505081525050905061119381516001600160a01b0316600160801b1490565b156111a1576109d381610609565b60006111b0826000015161092a565b905060006111bf836020015190565b905060006111d084604001516107ad565b90506000836001600160a01b031683836040516020016111f1929190611eb9565b60408051601f198184030181529082905261120b91611eea565b600060405180830381855afa9150503d8060008114611246576040519150601f19603f3d011682016040523d82523d6000602084013e61124b565b606091505b5098975050505050505050565b600080611266600284611f06565b60019081149493901c92915050565b61127d61159f565b7f8dca0271872d00b3de3abafca544c52fcd7d512dd852c9894fa2c118ac759a93600283836040516112b193929190611fce565b60405180910390a16002610d9b828483611ffe565b6112d1858585610ae1565b6001600160a01b0384163b15806113685750604051630a85bd0160e11b808252906001600160a01b0386169063150b7a02906113199033908a908990899089906004016120be565b6020604051808303816000875af1158015611338573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061135c9190611d7b565b6001600160e01b031916145b6113a75760405162461bcd60e51b815260206004820152601060248201526f155394d0519157d49150d2541251539560821b6044820152606401610748565b5050505050565b6113b661159f565b7fb65b7b5ea384affd30f77f842e057d29dd1b13f133adf69a724a8105b164ab75600183836040516113ea93929190611fce565b60405180910390a16001610d9b828483611ffe565b6000818152600360205260409020546060906001600160a01b03168061143b57604051630243d1a960e21b815260048101849052602401610748565b6000611446846110ae565b6009546040516328de0f2f60e01b81529192506001600160a01b0316906328de0f2f9061147c90879085906001906004016120fd565b600060405180830381865afa158015611499573d6000803e3d6000fd5b505050506040513d6000823e601f3d908101601f191682016040526114c19190810190612128565b949350505050565b604080516060808201835260008083526020830181905292820152906114ee836110ae565b6040805160608101825285815260009586526003602090815295829020546001600160a01b0316958101959095528401525090919050565b61152e61159f565b6001600160a01b0381166115935760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610748565b61159c816115f9565b50565b6000546001600160a01b03163314610ed55760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610748565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b6001600160a01b0382166116935760405162461bcd60e51b81526020600482015260116024820152701253959053125117d49150d25412515395607a1b6044820152606401610748565b6000818152600360205260409020546001600160a01b0316156116e95760405162461bcd60e51b815260206004820152600e60248201526d1053149150511657d3525395115160921b6044820152606401610748565b6001600160a01b038216600081815260046020908152604080832080546001019055848352600390915280822080546001600160a01b0319168417905551839291907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b6001600160e01b03198116811461159c57600080fd5b60006020828403121561177c57600080fd5b81356109d381611754565b634e487b7160e01b600052604160045260246000fd5b604051601f8201601f1916810167ffffffffffffffff811182821017156117c6576117c6611787565b604052919050565b6001600160a01b038116811461159c57600080fd5b600067ffffffffffffffff8211156117fd576117fd611787565b50601f01601f191660200190565b600082601f83011261181c57600080fd5b813561182f61182a826117e3565b61179d565b81815284602083860101111561184457600080fd5b816020850160208301376000918101602001919091529392505050565b60006020828403121561187357600080fd5b813567ffffffffffffffff8082111561188b57600080fd5b908301906060828603121561189f57600080fd5b6040516060810181811083821117156118ba576118ba611787565b60405282356118c8816117ce565b8152602083810135908201526040830135828111156118e657600080fd5b6118f28782860161180b565b60408301525095945050505050565b60005b8381101561191c578181015183820152602001611904565b50506000910152565b6000815180845261193d816020860160208601611901565b601f01601f19169290920160200192915050565b6020815260006109d36020830184611925565b60006020828403121561197657600080fd5b5035919050565b6000806040838503121561199057600080fd5b823561199b816117ce565b946020939093013593505050565b6000602082840312156119bb57600080fd5b813567ffffffffffffffff8111156119d257600080fd5b6114c18482850161180b565b60018060a01b0384168152826020820152606060408201526000611a056060830184611925565b95945050505050565b600060208284031215611a2057600080fd5b81356109d3816117ce565b600080600060608486031215611a4057600080fd5b8335611a4b816117ce565b92506020840135611a5b816117ce565b929592945050506040919091013590565b6020808252825182820181905260009190848201906040850190845b81811015611aa457835183529284019291840191600101611a88565b50909695505050505050565b60008083601f840112611ac257600080fd5b50813567ffffffffffffffff811115611ada57600080fd5b602083019150836020828501011115611af257600080fd5b9250929050565b600080600080600060808688031215611b1157600080fd5b853594506020860135611b23816117ce565b935060408601359250606086013567ffffffffffffffff811115611b4657600080fd5b611b5288828901611ab0565b969995985093965092949392505050565b60008060408385031215611b7657600080fd5b8235611b81816117ce565b915060208301358015158114611b9657600080fd5b809150509250929050565b60008060208385031215611bb457600080fd5b823567ffffffffffffffff811115611bcb57600080fd5b611bd785828601611ab0565b90969095509350505050565b600080600080600060808688031215611bfb57600080fd5b8535611c06816117ce565b94506020860135611b23816117ce565b602081528151602082015260018060a01b036020830151166040820152600060408301516060808401526114c16080840182611925565b60008060408385031215611c6057600080fd5b8235611c6b816117ce565b91506020830135611b96816117ce565b600181811c90821680611c8f57607f821691505b602082108103611caf57634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052603260045260246000fd5b80516020808301519190811015611caf5760001960209190910360031b1b16919050565b60008351611d01818460208801611901565b9190910191825250602001919050565b634e487b7160e01b600052601160045260246000fd5b600060018201611d3957611d39611d11565b5060010190565b604081526000611d536040830185611925565b90508260208301529392505050565b600060208284031215611d7457600080fd5b5051919050565b600060208284031215611d8d57600080fd5b81516109d381611754565b8082018082111561060357610603611d11565b601f821115610d9b57600081815260208120601f850160051c81016020861015611dd25750805b601f850160051c820191505b81811015611df157828155600101611dde565b505050505050565b815167ffffffffffffffff811115611e1357611e13611787565b611e2781611e218454611c7b565b84611dab565b602080601f831160018114611e5c5760008415611e445750858301515b600019600386901b1c1916600185901b178555611df1565b600085815260208120601f198616915b82811015611e8b57888601518255948401946001909101908401611e6c565b5085821015611ea95787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b6001600160e01b0319831681528151600090611edc816004850160208701611901565b919091016004019392505050565b60008251611efc818460208701611901565b9190910192915050565b600082611f2357634e487b7160e01b600052601260045260246000fd5b500690565b60008154611f3581611c7b565b808552602060018381168015611f525760018114611f6c57611f9a565b60ff1985168884015283151560051b880183019550611f9a565b866000528260002060005b85811015611f925781548a8201860152908301908401611f77565b890184019650505b505050505092915050565b81835281816020850137506000828201602090810191909152601f909101601f19169091010190565b604081526000611fe16040830186611f28565b8281036020840152611ff4818587611fa5565b9695505050505050565b67ffffffffffffffff83111561201657612016611787565b61202a836120248354611c7b565b83611dab565b6000601f84116001811461205e57600085156120465750838201355b600019600387901b1c1916600186901b1783556113a7565b600083815260209020601f19861690835b8281101561208f578685013582556020948501946001909201910161206f565b50868210156120ac5760001960f88860031b161c19848701351681555b505060018560011b0183555050505050565b6001600160a01b03868116825285166020820152604081018490526080606082018190526000906120f29083018486611fa5565b979650505050505050565b8381526060602082015260006121166060830185611925565b8281036040840152611ff48185611f28565b60006020828403121561213a57600080fd5b815167ffffffffffffffff81111561215157600080fd5b8201601f8101841361216257600080fd5b805161217061182a826117e3565b81815285602083850101111561218557600080fd5b611a0582602083016020860161190156fea26469706673582212203fc548aa4f22e6f4c01757ba3f2e0383630418b3d17601758718ab19a4d9918d64736f6c63430008110033a26469706673582212207932e8c793f9a96d9606a8907a6671f54c0fb1ed5a763048e13b429274e7706c64736f6c634300081100330000000000000000000000009fe46736679d2d9a65f0992f2272de9f3c7fa6e0000000000000000000000000000000000000000000000000002386f26fc10000", + "nonce": "0x4", + "accessList": [] + }, + "additionalContracts": [], + "isFixedGasLimit": false + } + ], + "receipts": [ + { + "transactionHash": "0x96675b77fd244a9feb082dbcbe59cb321504f8e4f72a8063dad6a46a9706fceb", + "transactionIndex": "0x0", + "blockHash": "0xb478b7e0f8d88b8ff02e663c706c736dc22c40f124eec54aecb1a3f9150219d8", + "blockNumber": "0x1", + "from": "0xf39Fd6e51aad88F6F4ce6aB8827279cffFb92266", + "to": null, + "cumulativeGasUsed": "0xf072b", + "gasUsed": "0xf072b", + "contractAddress": "0x5FbDB2315678afecb367f032d93F642f64180aa3", + "logs": [], + "status": "0x1", + "logsBloom": "0x00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", + "type": "0x2", + "effectiveGasPrice": "0xee6b2800" + }, + { + "transactionHash": "0x3eed361770e2dcc9a97a4cdf1a955543fd69a6096e37bb0e257a7208a08c6dde", + "transactionIndex": "0x0", + "blockHash": "0xdb047a978219206538bf54b38820f0d4d8701f69d5dc17152976d6e3f816ed23", + "blockNumber": "0x2", + "from": "0xf39Fd6e51aad88F6F4ce6aB8827279cffFb92266", + "to": null, + "cumulativeGasUsed": "0x23ab5", + "gasUsed": "0x23ab5", + "contractAddress": "0xe7f1725E7734CE288F8367e1Bb143E90bb3F0512", + "logs": [], + "status": "0x1", + "logsBloom": "0x00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", + "type": "0x2", + "effectiveGasPrice": "0xe7750a7c" + }, + { + "transactionHash": "0xfa26a5b6e297a0b5aa632035548d06ea04efb783d4713353476f25876c532b2a", + "transactionIndex": "0x0", + "blockHash": "0x64e6a966f9056a022a4688d1ba48dcf5da6a3f8479683ca0c85d0019978c6972", + "blockNumber": "0x3", + "from": "0xf39Fd6e51aad88F6F4ce6aB8827279cffFb92266", + "to": null, + "cumulativeGasUsed": "0x2616fd", + "gasUsed": "0x2616fd", + "contractAddress": "0x9fE46736679d2D9a65F0992F2272dE9f3c7fa6e0", + "logs": [], + "status": "0x1", + "logsBloom": "0x00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", + "type": "0x2", + "effectiveGasPrice": "0xe0f0dd5d" + }, + { + "transactionHash": "0x3de75e0187d1300847016f9712d9bad87f0de9d06ecc20887ff85b8562563c90", + "transactionIndex": "0x1", + "blockHash": "0x64e6a966f9056a022a4688d1ba48dcf5da6a3f8479683ca0c85d0019978c6972", + "blockNumber": "0x3", + "from": "0xf39Fd6e51aad88F6F4ce6aB8827279cffFb92266", + "to": null, + "cumulativeGasUsed": "0x29452b", + "gasUsed": "0x32e2e", + "contractAddress": "0xCf7Ed3AccA5a467e9e704C703E8D87F634fB0Fc9", + "logs": [], + "status": "0x1", + "logsBloom": "0x00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", + "type": "0x2", + "effectiveGasPrice": "0xe0f0dd5d" + }, + { + "transactionHash": "0x9b429d2fd55ffc6fa8696728d353fd418da33819473cfb47ddf43569b706759b", + "transactionIndex": "0x2", + "blockHash": "0x64e6a966f9056a022a4688d1ba48dcf5da6a3f8479683ca0c85d0019978c6972", + "blockNumber": "0x3", + "from": "0xf39Fd6e51aad88F6F4ce6aB8827279cffFb92266", + "to": null, + "cumulativeGasUsed": "0x51db7f", + "gasUsed": "0x289654", + "contractAddress": "0xDc64a140Aa3E981100a9becA4E685f962f0cF6C9", + "logs": [ + { + "address": "0xDc64a140Aa3E981100a9becA4E685f962f0cF6C9", + "topics": [ + "0x8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0", + "0x0000000000000000000000000000000000000000000000000000000000000000", + "0x000000000000000000000000f39fd6e51aad88f6f4ce6ab8827279cfffb92266" + ], + "data": "0x", + "blockHash": "0x64e6a966f9056a022a4688d1ba48dcf5da6a3f8479683ca0c85d0019978c6972", + "blockNumber": "0x3", + "transactionHash": "0x9b429d2fd55ffc6fa8696728d353fd418da33819473cfb47ddf43569b706759b", + "transactionIndex": "0x2", + "logIndex": "0x2", + "transactionLogIndex": "0x0", + "removed": false + } + ], + "status": "0x1", + "logsBloom": "0x00000000000000000000000000000000000000000000000000800000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000020000000000000100000800000000000000000000000000000000400000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000200000000000000000000000002020000000000000000020000000000000000000000000000000000000000001000000000100000000000000", + "type": "0x2", + "effectiveGasPrice": "0xe0f0dd5d" + } + ], + "libraries": [ + "lib/eth-projects-monorepo/packages/eth-projects-contracts/contracts/lib/utils/Bytes.sol:Bytes:0x5fbdb2315678afecb367f032d93f642f64180aa3" + ], + "pending": [], + "returns": {}, + "timestamp": 1689015755, + "chain": 31337, + "multi": false, + "commit": "afaf0d1" +} \ No newline at end of file diff --git a/packages/starksheet-solidity/broadcast/Evmsheet.s.sol/31337/run-1689176419.json b/packages/starksheet-solidity/broadcast/Evmsheet.s.sol/31337/run-1689176419.json new file mode 100644 index 00000000..ef88164d --- /dev/null +++ b/packages/starksheet-solidity/broadcast/Evmsheet.s.sol/31337/run-1689176419.json @@ -0,0 +1,199 @@ +{ + "transactions": [ + { + "hash": "0x6725d3958508bc0654f8e7d059c6207019e417821da638431a43f90a577f173b", + "transactionType": "CREATE", + "contractName": "Bytes", + "contractAddress": "0x5FbDB2315678afecb367f032d93F642f64180aa3", + "function": null, + "arguments": null, + "transaction": { + "type": "0x00", + "from": "0xf39fd6e51aad88f6f4ce6ab8827279cfffb92266", + "gas": "0x1387ed", + "data": "0x6110d661003a600b82828239805160001a60731461002d57634e487b7160e01b600052600060045260246000fd5b30600052607381538281f3fe73000000000000000000000000000000000000000030146080604052600436106101625760003560e01c8063a5eb31ee116100cd578063d1ffb56111610086578063d1ffb561146103fb578063d442584f1461042b578063e004139614610454578063f1142fb314610474578063f647f8fb14610487578063f83b670f146104b257600080fd5b8063a5eb31ee14610344578063a8d8f00f1461036b578063b5cdf92414610396578063b63711df146103a9578063be8b3430146103bc578063c29616bd146103cf57600080fd5b80635ef849301161011f5780635ef8493014610241578063913c97b41461026b57806397e6175c1461029f57806399dd9bd7146102cb5780639ae4c3d1146102ec5780639cee499e1461031857600080fd5b8063042aa0841461016757806305d3bb74146101985780631a7431ef146101c0578063235266d2146101e357806348137709146101f65780634d66a2ae1461021b575b600080fd5b61017a610175366004610ec0565b6104de565b6040516001600160d01b031990911681526020015b60405180910390f35b6101ab6101a6366004610ec0565b610540565b60405163ffffffff909116815260200161018f565b6101d36101ce366004610f05565b61059d565b604051901515815260200161018f565b6101d36101f1366004610f4c565b610652565b610209610204366004610ec0565b6106b5565b60405160ff909116815260200161018f565b61022e610229366004610fa6565b610711565b60405161ffff909116815260200161018f565b61025461024f366004610ec0565b61071e565b60405165ffffffffffff909116815260200161018f565b61027e610279366004610ec0565b610772565b6040516fffffffffffffffffffffffffffffffff909116815260200161018f565b6102b26102ad366004610ec0565b6107d0565b6040516001600160a01b0319909116815260200161018f565b6102de6102d9366004610ec0565b61082e565b60405190815260200161018f565b6102ff6102fa366004610ec0565b61088c565b60405167ffffffffffffffff909116815260200161018f565b61032b610326366004610ec0565b6108e9565b6040516001600160d81b0319909116815260200161018f565b610357610352366004610ec0565b610946565b60405162ffffff909116815260200161018f565b61037e610379366004610ec0565b6109a3565b60405166ffffffffffffff909116815260200161018f565b6102de6103a4366004610ec0565b610a00565b6102ff6103b7366004610ec0565b610a55565b61022e6103ca366004610ec0565b610aa9565b6103e26103dd366004610ec0565b610b06565b6040516001600160c81b0319909116815260200161018f565b61040e610409366004610ec0565b610b5a565b6040516bffffffffffffffffffffffff909116815260200161018f565b61043e610439366004610ec0565b610bae565b60405164ffffffffff909116815260200161018f565b610467610462366004610fe3565b610c02565b60405161018f9190611031565b6102b2610482366004610ec0565b610d0f565b61049a610495366004610ec0565b610d64565b6040516001600160a01b03909116815260200161018f565b6104c56104c0366004610ec0565b610dc9565b6040516001600160f81b0319909116815260200161018f565b60006104eb82600661107f565b835110156105375760405162461bcd60e51b8152602060048201526014602482015273746f4279746573365f6f75744f66426f756e647360601b60448201526064015b60405180910390fd5b50016006015190565b600061054d82600461107f565b835110156105945760405162461bcd60e51b8152602060048201526014602482015273746f55696e7433325f6f75744f66426f756e647360601b604482015260640161052e565b50016004015190565b600080600190508354600260018083161561010002038216048451808214600181146105cc5760009450610644565b821561064457602083106001811461062957600189600052602060002060208a018581015b600284828410010361062057815183541461060f5760009950600093505b6001830192506020820191506105f1565b50505050610642565b6101008086040294506020880151851461064257600095505b505b509293505050505b92915050565b81518151600091600191811480831461066e57600092506106ab565b600160208701838101602088015b60028483851001036106a657805183511461069a5760009650600093505b6020928301920161067c565b505050505b5090949350505050565b60006106c282600161107f565b835110156107085760405162461bcd60e51b8152602060048201526013602482015272746f55696e74385f6f75744f66426f756e647360681b604482015260640161052e565b50016001015190565b600061064c826000610aa9565b600061072b82600661107f565b835110156105375760405162461bcd60e51b8152602060048201526014602482015273746f55696e7434385f6f75744f66426f756e647360601b604482015260640161052e565b600061077f82601061107f565b835110156107c75760405162461bcd60e51b8152602060048201526015602482015274746f55696e743132385f6f75744f66426f756e647360581b604482015260640161052e565b50016010015190565b60006107dd82600c61107f565b835110156108255760405162461bcd60e51b8152602060048201526015602482015274746f427974657331325f6f75744f66426f756e647360581b604482015260640161052e565b5001600c015190565b600061083b82602061107f565b835110156108835760405162461bcd60e51b8152602060048201526015602482015274746f427974657333325f6f75744f66426f756e647360581b604482015260640161052e565b50016020015190565b600061089982600861107f565b835110156108e05760405162461bcd60e51b8152602060048201526014602482015273746f55696e7436345f6f75744f66426f756e647360601b604482015260640161052e565b50016008015190565b60006108f682600561107f565b8351101561093d5760405162461bcd60e51b8152602060048201526014602482015273746f4279746573355f6f75744f66426f756e647360601b604482015260640161052e565b50016005015190565b600061095382600361107f565b8351101561099a5760405162461bcd60e51b8152602060048201526014602482015273746f55696e7432345f6f75744f66426f756e647360601b604482015260640161052e565b50016003015190565b60006109b082600761107f565b835110156109f75760405162461bcd60e51b8152602060048201526014602482015273746f55696e7435365f6f75744f66426f756e647360601b604482015260640161052e565b50016007015190565b6000610a0d82602061107f565b835110156108835760405162461bcd60e51b8152602060048201526015602482015274746f55696e743235365f6f75744f66426f756e647360581b604482015260640161052e565b6000610a6282600861107f565b835110156108e05760405162461bcd60e51b8152602060048201526014602482015273746f4279746573385f6f75744f66426f756e647360601b604482015260640161052e565b6000610ab682600261107f565b83511015610afd5760405162461bcd60e51b8152602060048201526014602482015273746f55696e7431365f6f75744f66426f756e647360601b604482015260640161052e565b50016002015190565b6000610b1382600761107f565b835110156109f75760405162461bcd60e51b8152602060048201526014602482015273746f4279746573375f6f75744f66426f756e647360601b604482015260640161052e565b6000610b6782600c61107f565b835110156108255760405162461bcd60e51b8152602060048201526014602482015273746f55696e7439365f6f75744f66426f756e647360601b604482015260640161052e565b6000610bbb82600561107f565b8351101561093d5760405162461bcd60e51b8152602060048201526014602482015273746f55696e7434305f6f75744f66426f756e647360601b604482015260640161052e565b606081610c1081601f61107f565b1015610c4f5760405162461bcd60e51b815260206004820152600e60248201526d736c6963655f6f766572666c6f7760901b604482015260640161052e565b610c59828461107f565b84511015610c9d5760405162461bcd60e51b8152602060048201526011602482015270736c6963655f6f75744f66426f756e647360781b604482015260640161052e565b606082158015610cbc5760405191506000825260208201604052610d06565b6040519150601f8416801560200281840101858101878315602002848b0101015b81831015610cf5578051835260209283019201610cdd565b5050858452601f01601f1916604052505b50949350505050565b6000610d1c82601061107f565b835110156107c75760405162461bcd60e51b8152602060048201526015602482015274746f427974657331365f6f75744f66426f756e647360581b604482015260640161052e565b6000610d7182601461107f565b83511015610db95760405162461bcd60e51b8152602060048201526015602482015274746f416464726573735f6f75744f66426f756e647360581b604482015260640161052e565b500160200151600160601b900490565b6000610dd682600161107f565b835110156107085760405162461bcd60e51b8152602060048201526014602482015273746f4279746573315f6f75744f66426f756e647360601b604482015260640161052e565b634e487b7160e01b600052604160045260246000fd5b600082601f830112610e4457600080fd5b813567ffffffffffffffff80821115610e5f57610e5f610e1d565b604051601f8301601f19908116603f01168101908282118183101715610e8757610e87610e1d565b81604052838152866020858801011115610ea057600080fd5b836020870160208301376000602085830101528094505050505092915050565b60008060408385031215610ed357600080fd5b823567ffffffffffffffff811115610eea57600080fd5b610ef685828601610e33565b95602094909401359450505050565b60008060408385031215610f1857600080fd5b82359150602083013567ffffffffffffffff811115610f3657600080fd5b610f4285828601610e33565b9150509250929050565b60008060408385031215610f5f57600080fd5b823567ffffffffffffffff80821115610f7757600080fd5b610f8386838701610e33565b93506020850135915080821115610f9957600080fd5b50610f4285828601610e33565b600060208284031215610fb857600080fd5b813567ffffffffffffffff811115610fcf57600080fd5b610fdb84828501610e33565b949350505050565b600080600060608486031215610ff857600080fd5b833567ffffffffffffffff81111561100f57600080fd5b61101b86828701610e33565b9660208601359650604090950135949350505050565b600060208083528351808285015260005b8181101561105e57858101830151858201604001528201611042565b506000604082860101526040601f19601f8301168501019250505092915050565b8082018082111561064c57634e487b7160e01b600052601160045260246000fdfea26469706673582212205bdf5bc4551862519f5370e0dcec38eefbbbe11b6a5bf19ce2846b4f8831a5dc64736f6c63430008110033", + "nonce": "0x0" + }, + "additionalContracts": [], + "isFixedGasLimit": false + }, + { + "hash": "0xda03ba9e347f44d8c7840241b7add77d8133f2fa6b764f29f842441e3c842477", + "transactionType": "CREATE", + "contractName": "MultiSendCallOnly", + "contractAddress": "0xe7f1725E7734CE288F8367e1Bb143E90bb3F0512", + "function": null, + "arguments": null, + "transaction": { + "type": "0x00", + "from": "0xf39fd6e51aad88f6f4ce6ab8827279cfffb92266", + "gas": "0x2e5c4", + "value": "0x0", + "data": "0x608060405234801561001057600080fd5b506101ae806100206000396000f3fe60806040526004361061001e5760003560e01c80638d80ff0a14610023575b600080fd5b6100366100313660046100c7565b610038565b005b805160205b818110156100ac578083015160f81c6001820184015160601c601583018501516035840186015160558501870160008560008114610082576001811461001e5761008e565b6000808585888a5af191505b508061009957600080fd5b505080605501850194505050505061003d565b505050565b634e487b7160e01b600052604160045260246000fd5b6000602082840312156100d957600080fd5b813567ffffffffffffffff808211156100f157600080fd5b818401915084601f83011261010557600080fd5b813581811115610117576101176100b1565b604051601f8201601f19908116603f0116810190838211818310171561013f5761013f6100b1565b8160405282815287602084870101111561015857600080fd5b82602086016020830137600092810160200192909252509594505050505056fea2646970667358221220c15490bbb756a4c3c49d6335b2e81d2d098647b0ea70174c2279f199b1d0800364736f6c63430008110033", + "nonce": "0x1" + }, + "additionalContracts": [], + "isFixedGasLimit": false + }, + { + "hash": "0x7e51491675b34687b526f2bbff208acca55562356b12320607f4b1e88859866e", + "transactionType": "CREATE", + "contractName": "BasicCellRenderer", + "contractAddress": "0x9fE46736679d2D9a65F0992F2272dE9f3c7fa6e0", + "function": null, + "arguments": null, + "transaction": { + "type": "0x00", + "from": "0xf39fd6e51aad88f6f4ce6ab8827279cfffb92266", + "gas": "0x3180ad", + "value": "0x0", + "data": "0x608060405234801561001057600080fd5b50612c25806100206000396000f3fe608060405234801561001057600080fd5b50600436106100365760003560e01c806306d4cd8b1461003b57806328de0f2f14610064575b600080fd5b61004e610049366004610322565b610077565b60405161005b919061038b565b60405180910390f35b61004e610072366004610404565b6100f1565b60606000610086600f846104fc565b90506000610095600f8361051e565b61009f9085610535565b905060006100ae826041610548565b60f81b9050806100c76100c2856001610548565b6101b6565b6040516020016100d8929190610577565b6040516020818303038152906040529350505050919050565b606060006100fe86610077565b905083838261018388735fbdb2315678afecb367f032d93f642f64180aa363b5cdf924909160006040518363ffffffff1660e01b81526004016101429291906105a8565b602060405180830381865af415801561015f573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906100c291906105ca565b87878660405160200161019c97969594939291906105f2565b604051602081830303815290604052915050949350505050565b606060006101c383610249565b600101905060008167ffffffffffffffff8111156101e3576101e36103a5565b6040519080825280601f01601f19166020018201604052801561020d576020820181803683370190505b5090508181016020015b600019016f181899199a1a9b1b9c1cb0b131b232b360811b600a86061a8153600a850494508461021757509392505050565b60008072184f03e93ff9f4daa797ed6e38ed64bf6a1f0160401b83106102885772184f03e93ff9f4daa797ed6e38ed64bf6a1f0160401b830492506040015b6d04ee2d6d415b85acef810000000083106102b4576d04ee2d6d415b85acef8100000000830492506020015b662386f26fc1000083106102d257662386f26fc10000830492506010015b6305f5e10083106102ea576305f5e100830492506008015b61271083106102fe57612710830492506004015b60648310610310576064830492506002015b600a831061031c576001015b92915050565b60006020828403121561033457600080fd5b5035919050565b60005b8381101561035657818101518382015260200161033e565b50506000910152565b6000815180845261037781602086016020860161033b565b601f01601f19169290920160200192915050565b60208152600061039e602083018461035f565b9392505050565b634e487b7160e01b600052604160045260246000fd5b60008083601f8401126103cd57600080fd5b50813567ffffffffffffffff8111156103e557600080fd5b6020830191508360208285010111156103fd57600080fd5b9250929050565b6000806000806060858703121561041a57600080fd5b84359350602085013567ffffffffffffffff8082111561043957600080fd5b818701915087601f83011261044d57600080fd5b81358181111561045f5761045f6103a5565b604051601f8201601f19908116603f01168101908382118183101715610487576104876103a5565b816040528281528a60208487010111156104a057600080fd5b8260208601602083013760006020848301015280975050505060408701359150808211156104cd57600080fd5b506104da878288016103bb565b95989497509550505050565b634e487b7160e01b600052601160045260246000fd5b60008261051957634e487b7160e01b600052601260045260246000fd5b500490565b808202811582820484141761031c5761031c6104e6565b8181038181111561031c5761031c6104e6565b8082018082111561031c5761031c6104e6565b6000815161056d81856020860161033b565b9290920192915050565b6001600160f81b031983168152815160009061059a81600185016020870161033b565b919091016001019392505050565b6040815260006105bb604083018561035f565b90508260208301529392505050565b6000602082840312156105dc57600080fd5b5051919050565b81818437506000910190815290565b7f646174613a6170706c69636174696f6e2f6a736f6e2c7b22646573637269707481527f696f6e223a2022537461726b7368656574222c20226e616d65223a202200000060208201528688603d8301376000878201602160f81b603d820152875161066481603e840160208c0161033b565b7f222c22696d616765223a2022646174613a696d6167652f7376672b786d6c2c25603e92909101918201527f334373766725323076696577426f782533442532373025323030253230383925605e8201527f3230353525323725323066696c6c2533442532376e6f6e65253237253230786d607e8201527f6c6e73253344253237687474702533412f2f7777772e77332e6f72672f323030609e8201527f302f737667253237253345253343646566732533452533437374796c6525334560be8201527f253430666f6e742d66616365253230253742666f6e742d66616d696c7925334160de8201527f253230253237507265737325323053746172742532303250253237253342737260fe8201527f6325334125323075726c25323825323764617461253341666f6e742f776f666661011e8201527f32253342626173653634253243643039474d6741424141414141424c3841413861013e8201527f41414141415235774141424b674141454141414141414141414141414141414161015e8201527f4141414141414141414141414150305a4756453063476a41624d42794358675a61017e8201527f6741494e794551674b3846545361517544524141424e67496b41344e4d42434161019e8201527f46687a5148684649623644566c42306a314f4d4253336f4f4953744562732f2f6101be8201527f2f6c4a776356727a47634f30676f684c45484d6369694443434e57695a6761306101de8201527f79625345555954514f6a4b427038546c737a7344526438716174586c333058746101fe8201527f30645a47467952305668444b776c62746c25324272734643773945316e64655961021e8201527f4a74732f37527762305673784d71576c636a6a775445537a2f5568752f77337361023e8201527f33746b6f496d70343464515168576f456d54337579526d70746f7553446b7a5761025e8201527f454138762f3932364a4b7539486f696e6e3673376674336d4965476c7737547161027e8201527f6437456f326a46517849766a5642494a70563269614f62547a68575932314e7461029e8201527f476772687434704d4b3457556a34624c7967542f51253242514c7879253242336102be8201527f6c482f362f6b6275496444497239446a724a496a6f394a7336524d58253242456102de8201527f6b37424f545a6b6d70397a347455524652566656307148504448375a7462364a6102fe8201527f616f6130684c335975616232473373667a72365776394536793569767025324261031e8201527f7135564c74426a514478476f5345304150313762336466376c61726a6525324261033e8201527f73637a6b7241744a334b6657304a342532424b323365744b4b556a383554616f61035e8201527f57473453346158436c427743413268676141652532423658396f696e32304e6261037e8201527f554a7264466767517049686d5247494d30372f7025324277375a7058316c473161039e8201527f6a6a51787073435141423438714445415042346950312f6a39592f4261686a356103be8201527f5943414e302f78714157496852616a6c6e694e654f50396e78433466667932556103de8201527f694843304e47386b686f6f567a6f7459334445417a417a41356b473735337a6a6103fe8201527f4853354d6e6d586b69496a6d54554d36556d4d3025324256346976752f48377861041e8201527f6a364666322f6b343472787a6449324141676742492f4c48416b394a7a35554d61043e8201527f496f4c7755344146455435725a464f33444d616655633061777351434879497061045e8201527f557a546b30784a474a454f6a4e6871436b474570496153474f6a714e466d2f5761047e8201527f4e434e3569636b71434d6e414165564c4d4c655867356971386b365752585a5261049e8201527f326c337042393831427a73475a743225324256696c4342723954494a674b67786104be8201527f365542514446253242566a4b44714e7741414948386a6949664d6e75384b68666104de8201527f584b486f4e3348634134477245786842324155442f795a554d423857547579496104fe8201527f413444634f4b656434397939504249616e426967734d454e38556b30766c547661051e8201527f304a58334e394d795a75544d763573655357413525324238556538504465547261053e8201527f645467474973566d4e33635856586a6463795275633434385866664176506e7361055e8201527f3575324d4531722532426a4731703137767a3849704f416e483444427367793361057e8201527f512f54376b33646d2f3846334232377355694877464631414f6c683055646e4961059e8201527f4471494e5164506355393145786f2f346252696a6a5169704e4e307a4c646c7a6105be8201527f504438496f547449734c38717162746f4f5149514a5a567849705931315073536105de8201527f55533231397a4c585066642f507667765751346372464d2532425769755671706105fe8201527f645a6f4e6475645872632f4745324d4a36656e3575635746694763375274364f61061e8201527f487676354d674c2532427a44733578444277696141315433554877326b63594361063e8201527f312f55666453316645316d37763742346537653350574848786533594f32483561065e8201527f25324241504f5a7965503025324251506553425468793078713965363241486a61067e8201527f6141556842432f364144484c6f476f4f657636412532426867487369317a613861069e8201527f71355a4e4d716a596c575a4d713867354248445574495370574a73526f52544a6106be8201527f56613049305a3957546b5371564b73507a3464586a7648746449684c6e7670746106de8201527f554c4330753542567579414d544b4a513930594b5267546e5769476b6d7153456106fe8201527f714b6d7256685259674b6b335443686255573671456f45637665577a6859535461071e8201527f4c32484e706735452f6d7151393956564467763352475435586d33637a68754c61073e8201527f3972685864316132372f736c5130686959366a643739614f5a43746a6f52687261075e8201527f623136575676514b725734477a786a7869723238494d697a2f7155447973495761077e8201527f7037516a667765347a556437614a735651575179524c554b484b42577938577661079e8201527f45565333584d53353656337757644f442532424638757639645477496d4b722f6107be8201527f5064626d5763775176456641616a7975566a70784e32704f56635769336c38776107de8201527f454c2f6d395070646f55494536253242504b5838315041546d67654f304231736107fe8201527f47454825324261707a353466646d534a7a333741686635366a4c7739756e504561081e8201527f35644d4b3025324237544639563843435466523979664e7355493474557a464661083e8201527f42326e536e384b4f626a64446964554c7034494a6873777878595172595a643661085e8201527f4e76436e55394d445825324252654c6e4d546d6c315a453972306b5077334e3261087e8201527f6752253242736a4573596d4953706b356c31497333594e614a4b6f6e7a65703761089e8201527f56637354316e556b62347048774b5a41796b614b6f43504630506f6d456876496108be8201527f5758656e6f5a767836774f4b313070316c3274546858793850316555776473766108de8201527f53715157766f424d7473674851554a614774494273756861776450545a5378596108fe8201527f707257757734647a7231564755744449465871726f4d4d69597346783857695461091e8201527f336463574b6f376d50554c79715657413972305974524a4c626957766a6e4c2561093e8201527f324272633452646767624e516c514141613264306d616236364d48447074314361095e8201527f6477626b51436253375053445a4d7a3746724f51713165636153304a6c74644161097e8201527f6c44527941587173364130586247707748676b70367572557757416272464d3361099e8201527f75794d764e4b6c344d6c435548537950416d3931776144454a3559595148754a6109be8201527f4d32304b575251737637486b61334770686c533258444b714f4b4245554753316109de8201527f65306b63316f323449494166486c4449794278584a4a656767423369386174566109fe8201527f67434f3064444f5a484a57596a564c416a6a397137765673456e72684b374568610a1e8201527f4c75427a42586d4d674554634531636d61436976504b6f4a766670466c794935610a3e8201527f4d70584234454325324245672f596d303454787843354e6c73596b74646f5951610a5e8201527f55656c38624673456c3748345a36734377622f38626b347458574658504b6a71610a7e8201527f5462526e64336e4c5770394f784941706c664b586747684e6c72443462354a4c610a9e8201527f5a367055753441726756614d366561357844574244476f7a707a4641376e6747610abe8201527f74596334486141775269475576637653653652414177335a576b564f4667764b610ade8201527f46364955696c4d49394964715155345134585264484866736666517770313955610afe8201527f434a49306a5773725433356f5578303678507268473271364d4533554f306c63610b1e8201527f635a557354454351784a44527854444b6c334c4948722f6162546f73686c6466610b3e8201527f51786a364f57745273466e6966444373473674336b426f344e6d424a6d615556610b5e8201527f54636c794951414a4c6a6e723042365a3859464d6e396b397967703752727848610b7e8201527f36766877624a4e41654b4d554436353974386746514a4d5377652f434f624850610b9e8201527f467671484746554e5266253242737245663354584b42725a76676b6369396972610bbe8201527f426d63442f7458616754474358634e68432532424f3539754c706e6673796f71610bde8201527f4c53313238374552776d38666165564f6d3857634437386c5a36594232793938610bfe8201527f5a4c6c4d3972557264324c514e6c324956643454727376675139363079377573610c1e8201527f5965306854506170576a71726c2532425837784665424e54253242315a644a4a610c3e8201527f572532424678745737584e7774634e7a7761672532425256656a6d4a6839656d610c5e8201527f6c495a4b69694e63694b3849554f4d33556a4a376342554e5847505853326c68610c7e8201527f253242687770676f4836567348524f63764569723372585970344c7769435a77610c9e8201527f3176486c43623552314d68623564536e4f326d6e6f475a6f5846315765574757610cbe8201527f6d7a694a314a555534715072306e694a536c4e424331636b4b6d4a6657625877610cde8201527f5577757449547a456d6a776770776142753464525066746a2f4e384143526e64610cfe8201527f616b2f4641674b674c37305058577839767a6b59322532426d34355473496b4c610d1e8201527f3037616f70444e6f676830535262535a534f397a744657516a376e574c676275610d3e8201527f364325324254374b6a44715a3667456e5277674d78306b4c5a77797962514f76610d5e8201527f514130773054782f354a42722f63595a6453574f546a774446364e6f586b796a610d7e8201527f33566a484e4751494e76426a5a734a4a3377466141516d6f5a575a5970416961610d9e8201527f574f466e6e686455524176576b557a77693062677a5a4158796f445545714863610dbe8201527f57307069454c574f777168773365765478444957724e32495371525151454c41610dde8201527f4d32365334486c723548552f48784a43436844424a6b756b6341573856415430610dfe8201527f6770545a544b4e48677a444f7234314751656a4f34677a416e6b577077464752610e1e8201527f43334c625231787a4b434875365635694674674c704f384b51596d5965467868610e3e8201527f4c32643838736469506a2f76306b427a636c51637954735766324d6445394944610e5e8201527f386d5858576a72434b253242354532756e336e6976656973526e726971317548610e7e8201527f594d6a6a69694945304b6466674d6f3163476d6b557254624f30356732737633610e9e8201527f477673525971762f61457736375472644f705435567a4641364131417939634b610ebe8201527f6f44667762544a64445750524e57517354796a6d3772486249734b466b6f4f2f610ede8201527f5a4c4376735966785973337768534338614c49344b765677373773336e347a48610efe8201527f67697061634a6e435362463945727a53357069386343577655597a4f5064327a610f1e8201527f684a2f4750437a53684f453378596c634f3350796164586a54334f6b68706841610f3e8201527f58465853766865544e5355525446565641486f4a6d7949726b6a454b6f517746610f5e8201527f4730303554334158643935764e30446d336d427332786746546c253242513572610f7e8201527f73416a6e744768707a6f62643642374e7a52664e56653130446f4e5639343753610f9e8201527f59646f635252624776636d785456786f61367a717756376d416e773544314745610fbe8201527f5474327a48382532425476514256356e37672f32615768743979794e594c3974610fde8201527f4f42744167384846435945316d4e775432454232467538544968543776565241610ffe8201527f3461587a6e6b3670545a4e6779696f73747749364b654655374c696c7041253261101e8201527f42334234474a794277574d327062466a4876734a3747754f6f616b6a6d46746a61103e8201527f59344c6254396c323239253242453646374c4475577a744c6e333749786b386a61105e8201527f356c42564b33774c7369362f416641756f6a34396c4d6b5653545045396b704761107e8201527f64304c724555534a4941413070596c4178414d642f4e4f46776f4a446458466961109e8201527f307a4f5744422f54464a705666575642574f516274724a556230636c663369256110be8201527f3242575072446f596c65545674564f45306d36793564487444725551776f414c6110de8201527f7455523365585364444d4e785866656a594674764c626c726c4a7777484b2f456110fe8201527f6957504a616b32574b35386e684e6f4c6a615a55475841756f32656f5777464561111e8201527f66612f445334496958717246714779633348726939785132693243352f73357661113e8201527f7a424d30793777334d4473774d3759325247427172464d6778374f696325324261115e8201527f30497a736d5678617a5473305263666a324f3334532f525639503269486f427561117e8201527f6c4b49594244665a46654c53356439725379664a64536c67683268644d72324f61119e8201527f5552334b6e6c506e4f41785477314a384c4d325a776e4671765a745a4a6c78786111be8201527f343873776243743272316b664875443756624831326159383849437456734b786111de8201527f4b742f31726b616c42414d74782f6f6f6d43445059626b556f4c6344624b436a6111fe8201527f7675713953544467746a584744715735564b36686347654f46697a6a3643714c61121e8201527f4f49716b57783477733245504d444e7378253242613661533230384f39784c3061123e8201527f526146586f394241645530706e452532424c695359334b536f4a41525978646e61125e8201527f7a69545a4d706961442f3438496969393834446151357976656378414673735761127e8201527f792f686274696d63253242704c386b35796f70496d4a627948712f6138797a6c61129e8201527f6c37726f4f7a586d786d4163337459585363546b65734d6344324939315a36336112be8201527f6549312f394a627755716b36737863394b52677277574d414e6543314e6e39756112de8201527f4779775473706d5538712532426c5a6d43714d674153363662674841476a514b6112fe8201527f73754a334451416a5235346d356a4c7a5a616e546c62646530253242726e663461131e8201527f385a574138546c32673277414779427748516e3552322532424e6a726542677861133e8201527f626c734e46627554776d6862414a48737a2f72416f61764c4f34317874767a5961135e8201527f4768336e4c4a426b41506a7578424a445248333048426575385567436978464e61137e8201527f437951322f4b253242385157372f6530253242664f2532423436524e5730657961139e8201527f4c726f39446a5467704a4e4d3547385179306c54644f756d73773066715045696113be8201527f393646702532424830634d774e6f376a787a596d6e4e664d5a6d64506c7932706113de8201527f6f7132575065476d67507136474c78504e34536c4b486e7870624f69754c58516113fe8201527f75583155715031676a6f38426136536c55314f416d5267707a7531735444584a61141e8201527f50754d3338546f387130344c324e777970653837327777556741675a6c70386461143e8201527f6b5166397a38544d43624d6b596b3758484375333564375a5a41656f346b5a4b61145e8201527f68784953386945354c546a334c4f6976485a7268394a3870337a4c5a436a776361147e8201527f6970354452694b6e576e49664c33386b4a684d7452776a67553525324256726d61149e8201527f714b6c6739307a376a64732f4238444b646b464c76483353253242376f4838616114be8201527f6c445a6c626734533155583574434d445342324f364b756c7a41344b763067376114de8201527f314251643054464b7733685358696e62374e6c304258725873514e6376436b386114fe8201527f6d6f394f786965783559627a78564e2f6b3738336f48545a495777393079495a61151e8201527f777672697164475473586e54384965705437597946434f4a6741395a3042794961153e8201527f455956735478522f6b73616b324268376f4b767034766e695530364d57317a4261155e8201527f4672746568647a306b6b587951786a426d7965645636644d596545386146787461157e8201527f6575777355466136466c6c54446c716430707a525a77473663467266574d627061159e8201527f384738587a6a66624d253242354658657076356f457273696c363458783663376115be8201527f5841576275696d3666387347494d58666f334a6971476b703333376854536a676115de8201527f65636862364f42472f327a31376a6f6d4469476d253242476c623146553069656115fe8201527f6e7552796977654c576767447a6d4655765545556a5a6f377356544877684f4661161e8201527f504d6b4e737146423977796d6b45307639666d7477453854377135384e594f3761163e8201527f787534623833766e46766c35755378446c472532426b4f51675249644f346a6761165e8201527f7a786a53486a4b4c7332742f6c684f647771766131415744437072763344345361167e8201527f34523741625934544362664b4637744265363554343551347a7a49714433316161169e8201527f79797557716a692532424636585337535439483943314f342f694b366b4775766116be8201527f6b512f664e3537487837456533373435622f76766e2f62482f58253242392f256116de8201527f32426762656d684f416d49705576755157757344764b517578394a44564e734b6116fe8201527f673651636d6b73515341445530346347524c523768466f5a326337785545664761171e8201527f253242776b755459474d764c6a422f6550634936416847686e5735717a45416961173e8201527f4a586377564545775869654e70536c317a6a457253253242435325324248634c61175e8201527f6f52506d7661324d6767412f69794c67536f544a555767733442794149514f3061177e8201527f4f6f705a487656627a6844494c65557155677a7a48492f667950474e7879777361179e8201527f6f796c6865534639577662795363336b4544716b32415636436c4364635535536117be8201527f6e6c4e6e4963394b794d63384c79622532423867484f4a795173466c4c6250526117de8201527f796d6d374a42743349545a544162314732444252496b514b51705451396939626117fe8201527f3665435353387a4d366161525364544b5657524d336663454a4c644b61746e7361181e8201527f724959774e4a55253242733048364461757832775a35686733706c653042474861183e8201527f756b316b4543734859446461496d4b7025324233463542317859763763486b7161185e8201527f644475306a4b645273657a3531376d63563641685148346931484e3173766c6a61187e8201527f5248366845454672682532426e72726d47316e33307a4d346749776d694d774561189e8201527f624b6842545564423141486f582532424b6741517a4f48543946494f71436b526118be8201527f4e4e623273397170496943534f753167576868497343564a73765771457175356118de8201527f47624a514b4e6a61427465394c4f69676368414a7665475773394332323033766118fe8201527f6f6e476c6b77725251323464646732796345646157554456734441785548734961191e8201527f77773665615234464665336d4a416b66426d5a6452395264774a485a6d47645261193e8201527f7950436a706a627a31712f584a34534949446b66384b4b6e6e32456c4b6d794c61195e8201527f69573442513836733151554b2f76426867524e776548766c5968687a7238706361197e8201527f67704b4b6d6f61576a7036426b594f48446c7835734b5647336365474539657661199e8201527f506e773563646667454242676f554946536238587632504553314772446a78456119be8201527f69524b6b697846716a54704d6d544b6b693148726a7a354368517155717845716119de8201527f544c6c4b6c53715571314772547231476a527130717846717a62744f6e5347656119fe8201527f3668374a6d627a4968355a6544696c315a58536a7430774375616b336c6e476f611a1e8201527f5655506f53734e663337394b326a6274716d44674d69485a42665a6c68324839611a3e8201527f75773738495469314a466a585653662f4336634f55667a346f30644178305447611a5e8201527f777448446863666a3443516d49694531444d5a42546b6c4e5a557065566f614f611a7e8201527f6e717633733234314e50503965766574594768435a50576a4979747332706173611a9e8201527f436a25324270556a54596c336b615574374f744b4a6136355850396d356e6367611abe8201527f364e686a685a587032762532426d57724341545a754a303368316b6a55756976611ade8201527f5067596e6a6e35744b4a4f6b326e6362703251414559585a69304b496d50356b611afe8201527f744961466e366b5a397743253237253239253230666f726d6174253238253237611b1e8201527f776f666632253237253239253342666f6e742d7765696768742533412532306e611b3e8201527f6f726d616c253342666f6e742d7374796c652533412532306e6f726d616c2533611b5e8201527f42666f6e742d646973706c617925334125323073776170253342253744746578611b7e8201527f74253230253742666f6e742d66616d696c792533412532302532375072657373611b9e8201527f2532305374617274253230325025323725334266696c6c253341253230776869611bbe8201527f74652537442e76616c7565253230253742666f6e742d73697a65253341253230611bde8201527f313070782533422537442e6e616d65253230253742666f6e742d73697a652533611bfe8201527f412532303470782533422537442533432f7374796c652533452533432f646566611c1e8201527f7325334525334372656374253230776964746825334425323738392532372532611c3e8201527f30686569676874253344253237353525323725323066696c6c25334425323762611c5e8201527f6c61636b2532372532302f253345253343726563742532307825334425323735611c7e8201527f2e3525323725323079253344253237352e352532372532307769647468253344611c9e8201527f2532373738253237253230686569676874253344253237343425323725323066611cbe8201527f696c6c2533442532372532333030303046462532372532302f25334525334374611cde8201527f657874253230746578742d616e63686f722533442532376d6964646c65253237611cfe8201527f2532307825334425323734342e35253237253230792533442532373333253237611d1e8201527f253230636c61737325334425323776616c756525323725334500000000000000611d3e820152612ba5612b9e6129f5611d5784018a61055b565b7f2533432f746578742533452533437265637425323078253344253237352e352581527f323725323079253344253237352e35253237253230776964746825334425323760208201527f373825323725323068656967687425334425323734342532372532307374726f60408201527f6b652533442532372532334646344630412532372532307374726f6b652d776960608201527f647468253344253237332532372532302f25334525334372656374253230782560808201527f334425323733302532372532307925334425323734352e35253237253230776960a08201527f647468253344253237353825323725323068656967687425334425323738253260c08201527f3725323066696c6c2533442532372532334646344630412532372532302f253360e08201527f4525334374657874253230746578742d616e63686f72253344253237656e64256101008201527f32372532307825334425323738372532372532307925334425323735322532376101208201527f253230636c6173732533442532376e616d6525323725334500000000000000006101408201526101580190565b86886105e3565b602160f81b81529050612bbb600182018561055b565b7f2533432f746578742533452533432f737667253345227d00000000000000000081526017019a995050505050505050505056fea26469706673582212206a2c00c13ddb4f1bcd7ee36e36f0c874d7d9dadcf38306eab3610b5a6e7af83464736f6c63430008110033", + "nonce": "0x2" + }, + "additionalContracts": [], + "isFixedGasLimit": false + }, + { + "hash": "0x59d43126b5c7acdd9e803b16ac4d2bda09874f2c5559f6b3c198e3390c0f09fb", + "transactionType": "CREATE", + "contractName": null, + "contractAddress": "0xCf7Ed3AccA5a467e9e704C703E8D87F634fB0Fc9", + "function": null, + "arguments": null, + "transaction": { + "type": "0x00", + "from": "0xf39fd6e51aad88f6f4ce6ab8827279cfffb92266", + "gas": "0x42230", + "value": "0x0", + "data": "0x608060405234801561001057600080fd5b506102cf806100206000396000f3fe608060405234801561001057600080fd5b506004361061004c5760003560e01c80630194db8e14610051578063072bdcc214610076578063a391c15b14610089578063b67d77c51461009c575b600080fd5b61006461005f366004610160565b6100af565b60405190815260200160405180910390f35b610064610084366004610160565b6100ef565b61006461009736600461021e565b610129565b6100646100aa36600461021e565b61013e565b600080805b83518110156100e8578381815181106100cf576100cf610240565b60200260200101518201915080806001019150506100b4565b5092915050565b60006001815b83518110156100e85783818151811061011057610110610240565b60200260200101518202915080806001019150506100f5565b60006101358284610256565b90505b92915050565b60006101358284610278565b634e487b7160e01b600052604160045260246000fd5b6000602080838503121561017357600080fd5b823567ffffffffffffffff8082111561018b57600080fd5b818501915085601f83011261019f57600080fd5b8135818111156101b1576101b161014a565b8060051b604051601f19603f830116810181811085821117156101d6576101d661014a565b6040529182528482019250838101850191888311156101f457600080fd5b938501935b82851015610212578435845293850193928501926101f9565b98975050505050505050565b6000806040838503121561023157600080fd5b50508035926020909101359150565b634e487b7160e01b600052603260045260246000fd5b60008261027357634e487b7160e01b600052601260045260246000fd5b500490565b8181038181111561013857634e487b7160e01b600052601160045260246000fdfea2646970667358221220fcdef23ba4219270ddb3ab764e22a87e229c05e6f1dfc4eeea983fa1a1dac91f64736f6c63430008110033", + "nonce": "0x3" + }, + "additionalContracts": [], + "isFixedGasLimit": false + }, + { + "hash": "0xc4cbd208697fdc60cf5752654b05f845e3a8127a9d95c4625ca407435d5858db", + "transactionType": "CREATE", + "contractName": "Evmsheet", + "contractAddress": "0xDc64a140Aa3E981100a9becA4E685f962f0cF6C9", + "function": null, + "arguments": [ + "0x9fE46736679d2D9a65F0992F2272dE9f3c7fa6e0", + "10000000000000000" + ], + "transaction": { + "type": "0x00", + "from": "0xf39fd6e51aad88f6f4ce6ab8827279cfffb92266", + "gas": "0x34bf99", + "value": "0x0", + "data": "0x608060405234801561001057600080fd5b50604051612ed9380380612ed983398101604081905261002f916100b1565b61003833610061565b600280546001600160a01b0319166001600160a01b0393909316929092179091556001556100eb565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b600080604083850312156100c457600080fd5b82516001600160a01b03811681146100db57600080fd5b6020939093015192949293505050565b612ddf806100fa6000396000f3fe608060405260043610620000a95760003560e01c80638da5cb5b116200006c5780638da5cb5b146200016d578063ab2fa65a146200018d578063ae28505e14620001b4578063c56c4cf114620001d9578063f2fde38b14620001fb578063f52be2a2146200022057600080fd5b806303fb31e814620000ae5780631164c83d14620000d5578063145e414714620000ec5780635787cacb146200012e578063715018a61462000155575b600080fd5b348015620000bb57600080fd5b50620000d3620000cd36600462000778565b62000247565b005b620000d3620000e6366004620007e9565b62000273565b348015620000f957600080fd5b50620001116200010b36600462000864565b620004b2565b6040516001600160a01b0390911681526020015b60405180910390f35b3480156200013b57600080fd5b50620001466200054f565b60405162000125919062000891565b3480156200016257600080fd5b50620000d3620005b3565b3480156200017a57600080fd5b506000546001600160a01b031662000111565b3480156200019a57600080fd5b50620001a5620005cb565b604051620001259190620008e0565b348015620001c157600080fd5b5062000111620001d336600462000930565b620005f7565b348015620001e657600080fd5b5060025462000111906001600160a01b031681565b3480156200020857600080fd5b50620000d36200021a36600462000778565b62000622565b3480156200022d57600080fd5b506200023860015481565b60405190815260200162000125565b62000251620006a1565b600280546001600160a01b0319166001600160a01b0392909216919091179055565b60015434146200029d5760405163723a79e360e11b81523460048201526024015b60405180910390fd5b600060405180602001620002b1906200074d565b6020820181038252601f19601f8201166040525090506000828251602084016000f56002546040516356d3163d60e01b81526001600160a01b0391821660048201529192508216906356d3163d90602401600060405180830381600087803b1580156200031d57600080fd5b505af115801562000332573d6000803e3d6000fd5b505060405163c47f002760e01b81526001600160a01b038416925063c47f0027915062000366908a908a906004016200094a565b600060405180830381600087803b1580156200038157600080fd5b505af115801562000396573d6000803e3d6000fd5b5050604051635c26412360e11b81526001600160a01b038416925063b84c82469150620003ca90889088906004016200094a565b600060405180830381600087803b158015620003e557600080fd5b505af1158015620003fa573d6000803e3d6000fd5b505060405163f2fde38b60e01b81523260048201526001600160a01b038416925063f2fde38b9150602401600060405180830381600087803b1580156200044057600080fd5b505af115801562000455573d6000803e3d6000fd5b5050600380546001810182556000919091527fc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b0180546001600160a01b0319166001600160a01b0394909416939093179092555050505050505050565b600060ff60f81b838360405180602001620004cd906200074d565b6020820181038252601f19601f82011660405250805190602001206040516020016200053094939291906001600160f81b031994909416845260609290921b6bffffffffffffffffffffffff191660018401526015830152603582015260550190565b60408051601f1981840301815291905280516020909101209392505050565b60606003805480602002602001604051908101604052809291908181526020018280548015620005a957602002820191906000526020600020905b81546001600160a01b031681526001909101906020018083116200058a575b5050505050905090565b620005bd620006a1565b620005c96000620006fd565b565b606060405180602001620005df906200074d565b601f1982820381018352601f90910116604052919050565b600381815481106200060857600080fd5b6000918252602090912001546001600160a01b0316905081565b6200062c620006a1565b6001600160a01b038116620006935760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b606482015260840162000294565b6200069e81620006fd565b50565b6000546001600160a01b03163314620005c95760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015260640162000294565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b612430806200097a83390190565b80356001600160a01b03811681146200077357600080fd5b919050565b6000602082840312156200078b57600080fd5b62000796826200075b565b9392505050565b60008083601f840112620007b057600080fd5b50813567ffffffffffffffff811115620007c957600080fd5b602083019150836020828501011115620007e257600080fd5b9250929050565b6000806000806000606086880312156200080257600080fd5b853567ffffffffffffffff808211156200081b57600080fd5b6200082989838a016200079d565b909750955060208801359150808211156200084357600080fd5b5062000852888289016200079d565b96999598509660400135949350505050565b600080604083850312156200087857600080fd5b62000883836200075b565b946020939093013593505050565b6020808252825182820181905260009190848201906040850190845b81811015620008d45783516001600160a01b031683529284019291840191600101620008ad565b50909695505050505050565b600060208083528351808285015260005b818110156200090f57858101830151858201604001528201620008f1565b506000604082860101526040601f19601f8301168501019250505092915050565b6000602082840312156200094357600080fd5b5035919050565b60208152816020820152818360408301376000818301604090810191909152601f909201601f1916010191905056fe60806040523480156200001157600080fd5b50604051806040016040528060078152602001660536865657420360cc1b815250604051806040016040528060048152602001630534854360e41b81525062000069620000636200008f60201b60201c565b62000093565b600162000077838262000188565b50600262000086828262000188565b50505062000254565b3390565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b634e487b7160e01b600052604160045260246000fd5b600181811c908216806200010e57607f821691505b6020821081036200012f57634e487b7160e01b600052602260045260246000fd5b50919050565b601f8211156200018357600081815260208120601f850160051c810160208610156200015e5750805b601f850160051c820191505b818110156200017f578281556001016200016a565b5050505b505050565b81516001600160401b03811115620001a457620001a4620000e3565b620001bc81620001b58454620000f9565b8462000135565b602080601f831160018114620001f45760008415620001db5750858301515b600019600386901b1c1916600185901b1785556200017f565b600085815260208120601f198616915b82811015620002255788860151825594840194600190910190840162000204565b5085821015620002445787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b6121cc80620002646000396000f3fe608060405234801561001057600080fd5b50600436106102275760003560e01c8063715018a611610130578063b85d8b85116100b8578063cf0983981161007c578063cf09839814610512578063cfbe95d814610535578063df4ca20614610556578063e985e9c514610576578063f2fde38b146105a457600080fd5b8063b85d8b85146104a4578063b88d4fde146104ce578063b8c368ec146104e1578063c47f0027146104ec578063c87b56dd146104ff57600080fd5b806395d89b41116100ff57806395d89b4114610439578063a22cb46514610441578063b46ebb1214610454578063b6d658e114610467578063b84c82461461049157600080fd5b8063715018a6146103fa578063768d5029146104025780638ada6b0f146104155780638da5cb5b1461042857600080fd5b80631b06443c116101b35780634f6ccce7116101825780634f6ccce71461038157806356d3163d146103a15780636352211e146103b45780636a0abc74146103c757806370a08231146103e757600080fd5b80631b06443c14610335578063206848f61461034857806323b872dd1461035b57806342842e0e1461036e57600080fd5b8063081812fc116101fa578063081812fc146102a1578063095ea7b3146102e2578063172b9eed146102f757806318160ddd1461030a5780631941fd141461031357600080fd5b806301ffc9a71461022c57806302f3c4c91461025457806306fdde03146102745780630715a24a1461027c575b600080fd5b61023f61023a36600461176a565b6105b7565b60405190151581526020015b60405180910390f35b610267610262366004611861565b610609565b60405161024b9190611951565b610267610638565b6102936fffffffffffffffffffffffffffffffff81565b60405190815260200161024b565b6102ca6102af366004611964565b6005602052600090815260409020546001600160a01b031681565b6040516001600160a01b03909116815260200161024b565b6102f56102f036600461197d565b6106c6565b005b6102676103053660046119a9565b6107ad565b61029360075481565b610326610321366004611964565b610875565b60405161024b939291906119de565b6102ca610343366004611a0e565b61092a565b610326610356366004611964565b6109e3565b6102f5610369366004611a2b565b610ae1565b6102f561037c366004611a2b565b610ca8565b61029361038f366004611964565b60086020526000908152604090205481565b6102f56103af366004611a0e565b610da0565b6102ca6103c2366004611964565b610dca565b6103da6103d53660046119a9565b610e1c565b60405161024b9190611a6c565b6102936103f5366004611a0e565b610e60565b6102f5610ec3565b6102f5610410366004611af9565b610ed7565b6009546102ca906001600160a01b031681565b6000546001600160a01b03166102ca565b610267611035565b6102f561044f366004611b63565b611042565b610267610462366004611964565b6110ae565b61047a610475366004611964565b611258565b60408051921515835260208301919091520161024b565b6102f561049f366004611ba1565b611275565b6104b56104b2366004611964565b90565b6040516001600160e01b0319909116815260200161024b565b6102f56104dc366004611be3565b6112c6565b6102ca600160801b81565b6102f56104fa366004611ba1565b6113ae565b61026761050d366004611964565b6113ff565b61023f610520366004611a0e565b600160801b6001600160a01b03919091161090565b61023f610543366004611861565b516001600160a01b0316600160801b1490565b610569610564366004611964565b6114c9565b60405161024b9190611c16565b61023f610584366004611c4d565b600660209081526000928352604080842090915290825290205460ff1681565b6102f56105b2366004611a0e565b611526565b60006301ffc9a760e01b6001600160e01b0319831614806105e857506380ac58cd60e01b6001600160e01b03198316145b806106035750635b5e139f60e01b6001600160e01b03198316145b92915050565b6060816020015160405160200161062291815260200190565b6040516020818303038152906040529050919050565b6001805461064590611c7b565b80601f016020809104026020016040519081016040528092919081815260200182805461067190611c7b565b80156106be5780601f10610693576101008083540402835291602001916106be565b820191906000526020600020905b8154815290600101906020018083116106a157829003601f168201915b505050505081565b6000818152600360205260409020546001600160a01b03163381148061070f57506001600160a01b038116600090815260066020908152604080832033845290915290205460ff165b6107515760405162461bcd60e51b815260206004820152600e60248201526d1393d517d055551213d49256915160921b60448201526064015b60405180910390fd5b60008281526005602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b606060006107ba83610e1c565b9050606060005b825181101561086d576000806107ef8584815181106107e2576107e2611cb5565b6020026020010151611258565b9150915081156108335783610803826110ae565b61080c90611ccb565b60405160200161081d929190611cef565b6040516020818303038152906040529350610858565b6040516108469085908390602001611cef565b60405160208183030381529060405293505b5050808061086590611d27565b9150506107c1565b509392505050565b600a602052600090815260409020805460018201546002830180546001600160a01b039093169391926108a790611c7b565b80601f01602080910402602001604051908101604052809291908181526020018280546108d390611c7b565b80156109205780601f106108f557610100808354040283529160200191610920565b820191906000526020600020905b81548152906001019060200180831161090357829003601f168201915b5050505050905083565b6000600160801b6001600160a01b03831610156109da576000610955836001600160a01b03166110ae565b604051632d737e4960e21b8152909150735fbdb2315678afecb367f032d93f642f64180aa39063b5cdf92490610992908490600090600401611d40565b602060405180830381865af41580156109af573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906109d39190611d62565b9392505050565b5090565b919050565b60008181526003602052604081205481906060906001600160a01b0316610a1057600160801b9250610a2b565b6000848152600a60205260409020546001600160a01b031692505b6000848152600a60205260409020600181015460029091018054859291908190610a5490611c7b565b80601f0160208091040260200160405190810160405280929190818152602001828054610a8090611c7b565b8015610acd5780601f10610aa257610100808354040283529160200191610acd565b820191906000526020600020905b815481529060010190602001808311610ab057829003601f168201915b505050505090509250925092509193909250565b6000818152600360205260409020546001600160a01b03848116911614610b375760405162461bcd60e51b815260206004820152600a60248201526957524f4e475f46524f4d60b01b6044820152606401610748565b6001600160a01b038216610b815760405162461bcd60e51b81526020600482015260116024820152701253959053125117d49150d25412515395607a1b6044820152606401610748565b336001600160a01b0384161480610bbb57506001600160a01b038316600090815260066020908152604080832033845290915290205460ff165b80610bdc57506000818152600560205260409020546001600160a01b031633145b610c195760405162461bcd60e51b815260206004820152600e60248201526d1393d517d055551213d49256915160921b6044820152606401610748565b6001600160a01b0380841660008181526004602090815260408083208054600019019055938616808352848320805460010190558583526003825284832080546001600160a01b03199081168317909155600590925284832080549092169091559251849392917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b610cb3838383610ae1565b6001600160a01b0382163b1580610d5c5750604051630a85bd0160e11b8082523360048301526001600160a01b03858116602484015260448301849052608060648401526000608484015290919084169063150b7a029060a4016020604051808303816000875af1158015610d2c573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610d509190611d7b565b6001600160e01b031916145b610d9b5760405162461bcd60e51b815260206004820152601060248201526f155394d0519157d49150d2541251539560821b6044820152606401610748565b505050565b610da861159f565b600980546001600160a01b0319166001600160a01b0392909216919091179055565b6000818152600360205260409020546001600160a01b0316806109de5760405162461bcd60e51b815260206004820152600a6024820152691393d517d3525395115160b21b6044820152606401610748565b60608082516040519150602081048252602082016020850160005b83811015610e4f578181015183820152602001610e37565b505050810160200160405292915050565b60006001600160a01b038216610ea75760405162461bcd60e51b815260206004820152600c60248201526b5a45524f5f4144445245535360a01b6044820152606401610748565b506001600160a01b031660009081526004602052604090205490565b610ecb61159f565b610ed560006115f9565b565b6000858152600360205260409020546001600160a01b0316610f2f57610efd3286611649565b60078054600090815260086020526040812087905581546001929190610f24908490611d98565b90915550610f889050565b6000858152600360205260409020546001600160a01b03163214610f8857600085815260036020526040908190205490516324f3f02560e21b81526001600160a01b039091166004820152326024820152604401610748565b6040518060600160405280856001600160a01b0316815260200184815260200183838080601f0160208091040260200160405190810160405280939291908181526020018383808284376000920182905250939094525050878152600a6020908152604091829020845181546001600160a01b0319166001600160a01b0390911617815590840151600182015590830151909150600282019061102b9082611df9565b5050505050505050565b6002805461064590611c7b565b3360008181526006602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b6000818152600a6020908152604080832081516060818101845282546001600160a01b0316825260018301549482019490945260028201805494959491938401916110f890611c7b565b80601f016020809104026020016040519081016040528092919081815260200182805461112490611c7b565b80156111715780601f1061114657610100808354040283529160200191611171565b820191906000526020600020905b81548152906001019060200180831161115457829003601f168201915b505050505081525050905061119381516001600160a01b0316600160801b1490565b156111a1576109d381610609565b60006111b0826000015161092a565b905060006111bf836020015190565b905060006111d084604001516107ad565b90506000836001600160a01b031683836040516020016111f1929190611eb9565b60408051601f198184030181529082905261120b91611eea565b600060405180830381855afa9150503d8060008114611246576040519150601f19603f3d011682016040523d82523d6000602084013e61124b565b606091505b5098975050505050505050565b600080611266600284611f06565b60019081149493901c92915050565b61127d61159f565b7f8dca0271872d00b3de3abafca544c52fcd7d512dd852c9894fa2c118ac759a93600283836040516112b193929190611fce565b60405180910390a16002610d9b828483611ffe565b6112d1858585610ae1565b6001600160a01b0384163b15806113685750604051630a85bd0160e11b808252906001600160a01b0386169063150b7a02906113199033908a908990899089906004016120be565b6020604051808303816000875af1158015611338573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061135c9190611d7b565b6001600160e01b031916145b6113a75760405162461bcd60e51b815260206004820152601060248201526f155394d0519157d49150d2541251539560821b6044820152606401610748565b5050505050565b6113b661159f565b7fb65b7b5ea384affd30f77f842e057d29dd1b13f133adf69a724a8105b164ab75600183836040516113ea93929190611fce565b60405180910390a16001610d9b828483611ffe565b6000818152600360205260409020546060906001600160a01b03168061143b57604051630243d1a960e21b815260048101849052602401610748565b6000611446846110ae565b6009546040516328de0f2f60e01b81529192506001600160a01b0316906328de0f2f9061147c90879085906001906004016120fd565b600060405180830381865afa158015611499573d6000803e3d6000fd5b505050506040513d6000823e601f3d908101601f191682016040526114c19190810190612128565b949350505050565b604080516060808201835260008083526020830181905292820152906114ee836110ae565b6040805160608101825285815260009586526003602090815295829020546001600160a01b0316958101959095528401525090919050565b61152e61159f565b6001600160a01b0381166115935760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610748565b61159c816115f9565b50565b6000546001600160a01b03163314610ed55760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610748565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b6001600160a01b0382166116935760405162461bcd60e51b81526020600482015260116024820152701253959053125117d49150d25412515395607a1b6044820152606401610748565b6000818152600360205260409020546001600160a01b0316156116e95760405162461bcd60e51b815260206004820152600e60248201526d1053149150511657d3525395115160921b6044820152606401610748565b6001600160a01b038216600081815260046020908152604080832080546001019055848352600390915280822080546001600160a01b0319168417905551839291907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b6001600160e01b03198116811461159c57600080fd5b60006020828403121561177c57600080fd5b81356109d381611754565b634e487b7160e01b600052604160045260246000fd5b604051601f8201601f1916810167ffffffffffffffff811182821017156117c6576117c6611787565b604052919050565b6001600160a01b038116811461159c57600080fd5b600067ffffffffffffffff8211156117fd576117fd611787565b50601f01601f191660200190565b600082601f83011261181c57600080fd5b813561182f61182a826117e3565b61179d565b81815284602083860101111561184457600080fd5b816020850160208301376000918101602001919091529392505050565b60006020828403121561187357600080fd5b813567ffffffffffffffff8082111561188b57600080fd5b908301906060828603121561189f57600080fd5b6040516060810181811083821117156118ba576118ba611787565b60405282356118c8816117ce565b8152602083810135908201526040830135828111156118e657600080fd5b6118f28782860161180b565b60408301525095945050505050565b60005b8381101561191c578181015183820152602001611904565b50506000910152565b6000815180845261193d816020860160208601611901565b601f01601f19169290920160200192915050565b6020815260006109d36020830184611925565b60006020828403121561197657600080fd5b5035919050565b6000806040838503121561199057600080fd5b823561199b816117ce565b946020939093013593505050565b6000602082840312156119bb57600080fd5b813567ffffffffffffffff8111156119d257600080fd5b6114c18482850161180b565b60018060a01b0384168152826020820152606060408201526000611a056060830184611925565b95945050505050565b600060208284031215611a2057600080fd5b81356109d3816117ce565b600080600060608486031215611a4057600080fd5b8335611a4b816117ce565b92506020840135611a5b816117ce565b929592945050506040919091013590565b6020808252825182820181905260009190848201906040850190845b81811015611aa457835183529284019291840191600101611a88565b50909695505050505050565b60008083601f840112611ac257600080fd5b50813567ffffffffffffffff811115611ada57600080fd5b602083019150836020828501011115611af257600080fd5b9250929050565b600080600080600060808688031215611b1157600080fd5b853594506020860135611b23816117ce565b935060408601359250606086013567ffffffffffffffff811115611b4657600080fd5b611b5288828901611ab0565b969995985093965092949392505050565b60008060408385031215611b7657600080fd5b8235611b81816117ce565b915060208301358015158114611b9657600080fd5b809150509250929050565b60008060208385031215611bb457600080fd5b823567ffffffffffffffff811115611bcb57600080fd5b611bd785828601611ab0565b90969095509350505050565b600080600080600060808688031215611bfb57600080fd5b8535611c06816117ce565b94506020860135611b23816117ce565b602081528151602082015260018060a01b036020830151166040820152600060408301516060808401526114c16080840182611925565b60008060408385031215611c6057600080fd5b8235611c6b816117ce565b91506020830135611b96816117ce565b600181811c90821680611c8f57607f821691505b602082108103611caf57634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052603260045260246000fd5b80516020808301519190811015611caf5760001960209190910360031b1b16919050565b60008351611d01818460208801611901565b9190910191825250602001919050565b634e487b7160e01b600052601160045260246000fd5b600060018201611d3957611d39611d11565b5060010190565b604081526000611d536040830185611925565b90508260208301529392505050565b600060208284031215611d7457600080fd5b5051919050565b600060208284031215611d8d57600080fd5b81516109d381611754565b8082018082111561060357610603611d11565b601f821115610d9b57600081815260208120601f850160051c81016020861015611dd25750805b601f850160051c820191505b81811015611df157828155600101611dde565b505050505050565b815167ffffffffffffffff811115611e1357611e13611787565b611e2781611e218454611c7b565b84611dab565b602080601f831160018114611e5c5760008415611e445750858301515b600019600386901b1c1916600185901b178555611df1565b600085815260208120601f198616915b82811015611e8b57888601518255948401946001909101908401611e6c565b5085821015611ea95787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b6001600160e01b0319831681528151600090611edc816004850160208701611901565b919091016004019392505050565b60008251611efc818460208701611901565b9190910192915050565b600082611f2357634e487b7160e01b600052601260045260246000fd5b500690565b60008154611f3581611c7b565b808552602060018381168015611f525760018114611f6c57611f9a565b60ff1985168884015283151560051b880183019550611f9a565b866000528260002060005b85811015611f925781548a8201860152908301908401611f77565b890184019650505b505050505092915050565b81835281816020850137506000828201602090810191909152601f909101601f19169091010190565b604081526000611fe16040830186611f28565b8281036020840152611ff4818587611fa5565b9695505050505050565b67ffffffffffffffff83111561201657612016611787565b61202a836120248354611c7b565b83611dab565b6000601f84116001811461205e57600085156120465750838201355b600019600387901b1c1916600186901b1783556113a7565b600083815260209020601f19861690835b8281101561208f578685013582556020948501946001909201910161206f565b50868210156120ac5760001960f88860031b161c19848701351681555b505060018560011b0183555050505050565b6001600160a01b03868116825285166020820152604081018490526080606082018190526000906120f29083018486611fa5565b979650505050505050565b8381526060602082015260006121166060830185611925565b8281036040840152611ff48185611f28565b60006020828403121561213a57600080fd5b815167ffffffffffffffff81111561215157600080fd5b8201601f8101841361216257600080fd5b805161217061182a826117e3565b81815285602083850101111561218557600080fd5b611a0582602083016020860161190156fea26469706673582212203fc548aa4f22e6f4c01757ba3f2e0383630418b3d17601758718ab19a4d9918d64736f6c63430008110033a26469706673582212207932e8c793f9a96d9606a8907a6671f54c0fb1ed5a763048e13b429274e7706c64736f6c634300081100330000000000000000000000009fe46736679d2d9a65f0992f2272de9f3c7fa6e0000000000000000000000000000000000000000000000000002386f26fc10000", + "nonce": "0x4" + }, + "additionalContracts": [], + "isFixedGasLimit": false + } + ], + "receipts": [ + { + "transactionHash": "0x6725d3958508bc0654f8e7d059c6207019e417821da638431a43f90a577f173b", + "transactionIndex": "0x0", + "blockHash": "0x6892e72f316f99dae1dbecd0aa59565a7bf8e7eaf80bfd7d79564f1bde1f78e8", + "blockNumber": "0x1", + "from": "0xf39Fd6e51aad88F6F4ce6aB8827279cffFb92266", + "to": null, + "cumulativeGasUsed": "0xf072b", + "gasUsed": "0xf072b", + "contractAddress": "0x5FbDB2315678afecb367f032d93F642f64180aa3", + "logs": [], + "status": "0x1", + "logsBloom": "0x00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", + "effectiveGasPrice": "0x77359400" + }, + { + "transactionHash": "0xda03ba9e347f44d8c7840241b7add77d8133f2fa6b764f29f842441e3c842477", + "transactionIndex": "0x0", + "blockHash": "0xd4ff038494b45e07528ceab749dab317597801c7b338d6ab7d9e31515112ee31", + "blockNumber": "0x2", + "from": "0xf39Fd6e51aad88F6F4ce6aB8827279cffFb92266", + "to": null, + "cumulativeGasUsed": "0x23ab5", + "gasUsed": "0x23ab5", + "contractAddress": "0xe7f1725E7734CE288F8367e1Bb143E90bb3F0512", + "logs": [], + "status": "0x1", + "logsBloom": "0x00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", + "effectiveGasPrice": "0x77359400" + }, + { + "transactionHash": "0x7e51491675b34687b526f2bbff208acca55562356b12320607f4b1e88859866e", + "transactionIndex": "0x0", + "blockHash": "0xe33662d0b71132e4a7ee46cd6c86c9fb9005e4b5e0bd7a19ef301144d4926e07", + "blockNumber": "0x3", + "from": "0xf39Fd6e51aad88F6F4ce6aB8827279cffFb92266", + "to": null, + "cumulativeGasUsed": "0x2616fd", + "gasUsed": "0x2616fd", + "contractAddress": "0x9fE46736679d2D9a65F0992F2272dE9f3c7fa6e0", + "logs": [], + "status": "0x1", + "logsBloom": "0x00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", + "effectiveGasPrice": "0x77359400" + }, + { + "transactionHash": "0x59d43126b5c7acdd9e803b16ac4d2bda09874f2c5559f6b3c198e3390c0f09fb", + "transactionIndex": "0x1", + "blockHash": "0xe33662d0b71132e4a7ee46cd6c86c9fb9005e4b5e0bd7a19ef301144d4926e07", + "blockNumber": "0x3", + "from": "0xf39Fd6e51aad88F6F4ce6aB8827279cffFb92266", + "to": null, + "cumulativeGasUsed": "0x29452b", + "gasUsed": "0x32e2e", + "contractAddress": "0xCf7Ed3AccA5a467e9e704C703E8D87F634fB0Fc9", + "logs": [], + "status": "0x1", + "logsBloom": "0x00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", + "effectiveGasPrice": "0x77359400" + }, + { + "transactionHash": "0xc4cbd208697fdc60cf5752654b05f845e3a8127a9d95c4625ca407435d5858db", + "transactionIndex": "0x2", + "blockHash": "0xe33662d0b71132e4a7ee46cd6c86c9fb9005e4b5e0bd7a19ef301144d4926e07", + "blockNumber": "0x3", + "from": "0xf39Fd6e51aad88F6F4ce6aB8827279cffFb92266", + "to": null, + "cumulativeGasUsed": "0x51db7f", + "gasUsed": "0x289654", + "contractAddress": "0xDc64a140Aa3E981100a9becA4E685f962f0cF6C9", + "logs": [ + { + "address": "0xDc64a140Aa3E981100a9becA4E685f962f0cF6C9", + "topics": [ + "0x8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0", + "0x0000000000000000000000000000000000000000000000000000000000000000", + "0x000000000000000000000000f39fd6e51aad88f6f4ce6ab8827279cfffb92266" + ], + "data": "0x", + "blockHash": "0xe33662d0b71132e4a7ee46cd6c86c9fb9005e4b5e0bd7a19ef301144d4926e07", + "blockNumber": "0x3", + "transactionHash": "0xc4cbd208697fdc60cf5752654b05f845e3a8127a9d95c4625ca407435d5858db", + "transactionIndex": "0x2", + "logIndex": "0x2", + "transactionLogIndex": "0x0", + "removed": false + } + ], + "status": "0x1", + "logsBloom": "0x00000000000000000000000000000000000000000000000000800000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000020000000000000100000800000000000000000000000000000000400000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000200000000000000000000000002020000000000000000020000000000000000000000000000000000000000001000000000100000000000000", + "effectiveGasPrice": "0x77359400" + } + ], + "libraries": [ + "lib/eth-projects-monorepo/packages/eth-projects-contracts/contracts/lib/utils/Bytes.sol:Bytes:0x5fbdb2315678afecb367f032d93f642f64180aa3" + ], + "pending": [], + "returns": {}, + "timestamp": 1689176419, + "chain": 31337, + "multi": false, + "commit": "24c72b7" +} \ No newline at end of file diff --git a/packages/starksheet-solidity/broadcast/Evmsheet.s.sol/31337/run-1689181006.json b/packages/starksheet-solidity/broadcast/Evmsheet.s.sol/31337/run-1689181006.json new file mode 100644 index 00000000..55bbfdbf --- /dev/null +++ b/packages/starksheet-solidity/broadcast/Evmsheet.s.sol/31337/run-1689181006.json @@ -0,0 +1,117 @@ +{ + "transactions": [ + { + "hash": "0x96675b77fd244a9feb082dbcbe59cb321504f8e4f72a8063dad6a46a9706fceb", + "transactionType": "CREATE", + "contractName": "Bytes", + "contractAddress": "0x5FbDB2315678afecb367f032d93F642f64180aa3", + "function": null, + "arguments": null, + "transaction": { + "type": "0x02", + "from": "0xf39fd6e51aad88f6f4ce6ab8827279cfffb92266", + "gas": "0x1387ed", + "data": "0x6110d661003a600b82828239805160001a60731461002d57634e487b7160e01b600052600060045260246000fd5b30600052607381538281f3fe73000000000000000000000000000000000000000030146080604052600436106101625760003560e01c8063a5eb31ee116100cd578063d1ffb56111610086578063d1ffb561146103fb578063d442584f1461042b578063e004139614610454578063f1142fb314610474578063f647f8fb14610487578063f83b670f146104b257600080fd5b8063a5eb31ee14610344578063a8d8f00f1461036b578063b5cdf92414610396578063b63711df146103a9578063be8b3430146103bc578063c29616bd146103cf57600080fd5b80635ef849301161011f5780635ef8493014610241578063913c97b41461026b57806397e6175c1461029f57806399dd9bd7146102cb5780639ae4c3d1146102ec5780639cee499e1461031857600080fd5b8063042aa0841461016757806305d3bb74146101985780631a7431ef146101c0578063235266d2146101e357806348137709146101f65780634d66a2ae1461021b575b600080fd5b61017a610175366004610ec0565b6104de565b6040516001600160d01b031990911681526020015b60405180910390f35b6101ab6101a6366004610ec0565b610540565b60405163ffffffff909116815260200161018f565b6101d36101ce366004610f05565b61059d565b604051901515815260200161018f565b6101d36101f1366004610f4c565b610652565b610209610204366004610ec0565b6106b5565b60405160ff909116815260200161018f565b61022e610229366004610fa6565b610711565b60405161ffff909116815260200161018f565b61025461024f366004610ec0565b61071e565b60405165ffffffffffff909116815260200161018f565b61027e610279366004610ec0565b610772565b6040516fffffffffffffffffffffffffffffffff909116815260200161018f565b6102b26102ad366004610ec0565b6107d0565b6040516001600160a01b0319909116815260200161018f565b6102de6102d9366004610ec0565b61082e565b60405190815260200161018f565b6102ff6102fa366004610ec0565b61088c565b60405167ffffffffffffffff909116815260200161018f565b61032b610326366004610ec0565b6108e9565b6040516001600160d81b0319909116815260200161018f565b610357610352366004610ec0565b610946565b60405162ffffff909116815260200161018f565b61037e610379366004610ec0565b6109a3565b60405166ffffffffffffff909116815260200161018f565b6102de6103a4366004610ec0565b610a00565b6102ff6103b7366004610ec0565b610a55565b61022e6103ca366004610ec0565b610aa9565b6103e26103dd366004610ec0565b610b06565b6040516001600160c81b0319909116815260200161018f565b61040e610409366004610ec0565b610b5a565b6040516bffffffffffffffffffffffff909116815260200161018f565b61043e610439366004610ec0565b610bae565b60405164ffffffffff909116815260200161018f565b610467610462366004610fe3565b610c02565b60405161018f9190611031565b6102b2610482366004610ec0565b610d0f565b61049a610495366004610ec0565b610d64565b6040516001600160a01b03909116815260200161018f565b6104c56104c0366004610ec0565b610dc9565b6040516001600160f81b0319909116815260200161018f565b60006104eb82600661107f565b835110156105375760405162461bcd60e51b8152602060048201526014602482015273746f4279746573365f6f75744f66426f756e647360601b60448201526064015b60405180910390fd5b50016006015190565b600061054d82600461107f565b835110156105945760405162461bcd60e51b8152602060048201526014602482015273746f55696e7433325f6f75744f66426f756e647360601b604482015260640161052e565b50016004015190565b600080600190508354600260018083161561010002038216048451808214600181146105cc5760009450610644565b821561064457602083106001811461062957600189600052602060002060208a018581015b600284828410010361062057815183541461060f5760009950600093505b6001830192506020820191506105f1565b50505050610642565b6101008086040294506020880151851461064257600095505b505b509293505050505b92915050565b81518151600091600191811480831461066e57600092506106ab565b600160208701838101602088015b60028483851001036106a657805183511461069a5760009650600093505b6020928301920161067c565b505050505b5090949350505050565b60006106c282600161107f565b835110156107085760405162461bcd60e51b8152602060048201526013602482015272746f55696e74385f6f75744f66426f756e647360681b604482015260640161052e565b50016001015190565b600061064c826000610aa9565b600061072b82600661107f565b835110156105375760405162461bcd60e51b8152602060048201526014602482015273746f55696e7434385f6f75744f66426f756e647360601b604482015260640161052e565b600061077f82601061107f565b835110156107c75760405162461bcd60e51b8152602060048201526015602482015274746f55696e743132385f6f75744f66426f756e647360581b604482015260640161052e565b50016010015190565b60006107dd82600c61107f565b835110156108255760405162461bcd60e51b8152602060048201526015602482015274746f427974657331325f6f75744f66426f756e647360581b604482015260640161052e565b5001600c015190565b600061083b82602061107f565b835110156108835760405162461bcd60e51b8152602060048201526015602482015274746f427974657333325f6f75744f66426f756e647360581b604482015260640161052e565b50016020015190565b600061089982600861107f565b835110156108e05760405162461bcd60e51b8152602060048201526014602482015273746f55696e7436345f6f75744f66426f756e647360601b604482015260640161052e565b50016008015190565b60006108f682600561107f565b8351101561093d5760405162461bcd60e51b8152602060048201526014602482015273746f4279746573355f6f75744f66426f756e647360601b604482015260640161052e565b50016005015190565b600061095382600361107f565b8351101561099a5760405162461bcd60e51b8152602060048201526014602482015273746f55696e7432345f6f75744f66426f756e647360601b604482015260640161052e565b50016003015190565b60006109b082600761107f565b835110156109f75760405162461bcd60e51b8152602060048201526014602482015273746f55696e7435365f6f75744f66426f756e647360601b604482015260640161052e565b50016007015190565b6000610a0d82602061107f565b835110156108835760405162461bcd60e51b8152602060048201526015602482015274746f55696e743235365f6f75744f66426f756e647360581b604482015260640161052e565b6000610a6282600861107f565b835110156108e05760405162461bcd60e51b8152602060048201526014602482015273746f4279746573385f6f75744f66426f756e647360601b604482015260640161052e565b6000610ab682600261107f565b83511015610afd5760405162461bcd60e51b8152602060048201526014602482015273746f55696e7431365f6f75744f66426f756e647360601b604482015260640161052e565b50016002015190565b6000610b1382600761107f565b835110156109f75760405162461bcd60e51b8152602060048201526014602482015273746f4279746573375f6f75744f66426f756e647360601b604482015260640161052e565b6000610b6782600c61107f565b835110156108255760405162461bcd60e51b8152602060048201526014602482015273746f55696e7439365f6f75744f66426f756e647360601b604482015260640161052e565b6000610bbb82600561107f565b8351101561093d5760405162461bcd60e51b8152602060048201526014602482015273746f55696e7434305f6f75744f66426f756e647360601b604482015260640161052e565b606081610c1081601f61107f565b1015610c4f5760405162461bcd60e51b815260206004820152600e60248201526d736c6963655f6f766572666c6f7760901b604482015260640161052e565b610c59828461107f565b84511015610c9d5760405162461bcd60e51b8152602060048201526011602482015270736c6963655f6f75744f66426f756e647360781b604482015260640161052e565b606082158015610cbc5760405191506000825260208201604052610d06565b6040519150601f8416801560200281840101858101878315602002848b0101015b81831015610cf5578051835260209283019201610cdd565b5050858452601f01601f1916604052505b50949350505050565b6000610d1c82601061107f565b835110156107c75760405162461bcd60e51b8152602060048201526015602482015274746f427974657331365f6f75744f66426f756e647360581b604482015260640161052e565b6000610d7182601461107f565b83511015610db95760405162461bcd60e51b8152602060048201526015602482015274746f416464726573735f6f75744f66426f756e647360581b604482015260640161052e565b500160200151600160601b900490565b6000610dd682600161107f565b835110156107085760405162461bcd60e51b8152602060048201526014602482015273746f4279746573315f6f75744f66426f756e647360601b604482015260640161052e565b634e487b7160e01b600052604160045260246000fd5b600082601f830112610e4457600080fd5b813567ffffffffffffffff80821115610e5f57610e5f610e1d565b604051601f8301601f19908116603f01168101908282118183101715610e8757610e87610e1d565b81604052838152866020858801011115610ea057600080fd5b836020870160208301376000602085830101528094505050505092915050565b60008060408385031215610ed357600080fd5b823567ffffffffffffffff811115610eea57600080fd5b610ef685828601610e33565b95602094909401359450505050565b60008060408385031215610f1857600080fd5b82359150602083013567ffffffffffffffff811115610f3657600080fd5b610f4285828601610e33565b9150509250929050565b60008060408385031215610f5f57600080fd5b823567ffffffffffffffff80821115610f7757600080fd5b610f8386838701610e33565b93506020850135915080821115610f9957600080fd5b50610f4285828601610e33565b600060208284031215610fb857600080fd5b813567ffffffffffffffff811115610fcf57600080fd5b610fdb84828501610e33565b949350505050565b600080600060608486031215610ff857600080fd5b833567ffffffffffffffff81111561100f57600080fd5b61101b86828701610e33565b9660208601359650604090950135949350505050565b600060208083528351808285015260005b8181101561105e57858101830151858201604001528201611042565b506000604082860101526040601f19601f8301168501019250505092915050565b8082018082111561064c57634e487b7160e01b600052601160045260246000fdfea26469706673582212205bdf5bc4551862519f5370e0dcec38eefbbbe11b6a5bf19ce2846b4f8831a5dc64736f6c63430008110033", + "nonce": "0x0", + "accessList": [] + }, + "additionalContracts": [], + "isFixedGasLimit": false + }, + { + "hash": "0x3eed361770e2dcc9a97a4cdf1a955543fd69a6096e37bb0e257a7208a08c6dde", + "transactionType": "CREATE", + "contractName": "MultiSendCallOnly", + "contractAddress": "0xe7f1725E7734CE288F8367e1Bb143E90bb3F0512", + "function": null, + "arguments": null, + "transaction": { + "type": "0x02", + "from": "0xf39fd6e51aad88f6f4ce6ab8827279cfffb92266", + "gas": "0x2e5c4", + "value": "0x0", + "data": "0x608060405234801561001057600080fd5b506101ae806100206000396000f3fe60806040526004361061001e5760003560e01c80638d80ff0a14610023575b600080fd5b6100366100313660046100c7565b610038565b005b805160205b818110156100ac578083015160f81c6001820184015160601c601583018501516035840186015160558501870160008560008114610082576001811461001e5761008e565b6000808585888a5af191505b508061009957600080fd5b505080605501850194505050505061003d565b505050565b634e487b7160e01b600052604160045260246000fd5b6000602082840312156100d957600080fd5b813567ffffffffffffffff808211156100f157600080fd5b818401915084601f83011261010557600080fd5b813581811115610117576101176100b1565b604051601f8201601f19908116603f0116810190838211818310171561013f5761013f6100b1565b8160405282815287602084870101111561015857600080fd5b82602086016020830137600092810160200192909252509594505050505056fea2646970667358221220c15490bbb756a4c3c49d6335b2e81d2d098647b0ea70174c2279f199b1d0800364736f6c63430008110033", + "nonce": "0x1", + "accessList": [] + }, + "additionalContracts": [], + "isFixedGasLimit": false + }, + { + "hash": "0xfa26a5b6e297a0b5aa632035548d06ea04efb783d4713353476f25876c532b2a", + "transactionType": "CREATE", + "contractName": "BasicCellRenderer", + "contractAddress": "0x9fE46736679d2D9a65F0992F2272dE9f3c7fa6e0", + "function": null, + "arguments": null, + "transaction": { + "type": "0x02", + "from": "0xf39fd6e51aad88f6f4ce6ab8827279cfffb92266", + "gas": "0x3180ad", + "value": "0x0", + "data": "0x608060405234801561001057600080fd5b50612c25806100206000396000f3fe608060405234801561001057600080fd5b50600436106100365760003560e01c806306d4cd8b1461003b57806328de0f2f14610064575b600080fd5b61004e610049366004610322565b610077565b60405161005b919061038b565b60405180910390f35b61004e610072366004610404565b6100f1565b60606000610086600f846104fc565b90506000610095600f8361051e565b61009f9085610535565b905060006100ae826041610548565b60f81b9050806100c76100c2856001610548565b6101b6565b6040516020016100d8929190610577565b6040516020818303038152906040529350505050919050565b606060006100fe86610077565b905083838261018388735fbdb2315678afecb367f032d93f642f64180aa363b5cdf924909160006040518363ffffffff1660e01b81526004016101429291906105a8565b602060405180830381865af415801561015f573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906100c291906105ca565b87878660405160200161019c97969594939291906105f2565b604051602081830303815290604052915050949350505050565b606060006101c383610249565b600101905060008167ffffffffffffffff8111156101e3576101e36103a5565b6040519080825280601f01601f19166020018201604052801561020d576020820181803683370190505b5090508181016020015b600019016f181899199a1a9b1b9c1cb0b131b232b360811b600a86061a8153600a850494508461021757509392505050565b60008072184f03e93ff9f4daa797ed6e38ed64bf6a1f0160401b83106102885772184f03e93ff9f4daa797ed6e38ed64bf6a1f0160401b830492506040015b6d04ee2d6d415b85acef810000000083106102b4576d04ee2d6d415b85acef8100000000830492506020015b662386f26fc1000083106102d257662386f26fc10000830492506010015b6305f5e10083106102ea576305f5e100830492506008015b61271083106102fe57612710830492506004015b60648310610310576064830492506002015b600a831061031c576001015b92915050565b60006020828403121561033457600080fd5b5035919050565b60005b8381101561035657818101518382015260200161033e565b50506000910152565b6000815180845261037781602086016020860161033b565b601f01601f19169290920160200192915050565b60208152600061039e602083018461035f565b9392505050565b634e487b7160e01b600052604160045260246000fd5b60008083601f8401126103cd57600080fd5b50813567ffffffffffffffff8111156103e557600080fd5b6020830191508360208285010111156103fd57600080fd5b9250929050565b6000806000806060858703121561041a57600080fd5b84359350602085013567ffffffffffffffff8082111561043957600080fd5b818701915087601f83011261044d57600080fd5b81358181111561045f5761045f6103a5565b604051601f8201601f19908116603f01168101908382118183101715610487576104876103a5565b816040528281528a60208487010111156104a057600080fd5b8260208601602083013760006020848301015280975050505060408701359150808211156104cd57600080fd5b506104da878288016103bb565b95989497509550505050565b634e487b7160e01b600052601160045260246000fd5b60008261051957634e487b7160e01b600052601260045260246000fd5b500490565b808202811582820484141761031c5761031c6104e6565b8181038181111561031c5761031c6104e6565b8082018082111561031c5761031c6104e6565b6000815161056d81856020860161033b565b9290920192915050565b6001600160f81b031983168152815160009061059a81600185016020870161033b565b919091016001019392505050565b6040815260006105bb604083018561035f565b90508260208301529392505050565b6000602082840312156105dc57600080fd5b5051919050565b81818437506000910190815290565b7f646174613a6170706c69636174696f6e2f6a736f6e2c7b22646573637269707481527f696f6e223a2022537461726b7368656574222c20226e616d65223a202200000060208201528688603d8301376000878201602160f81b603d820152875161066481603e840160208c0161033b565b7f222c22696d616765223a2022646174613a696d6167652f7376672b786d6c2c25603e92909101918201527f334373766725323076696577426f782533442532373025323030253230383925605e8201527f3230353525323725323066696c6c2533442532376e6f6e65253237253230786d607e8201527f6c6e73253344253237687474702533412f2f7777772e77332e6f72672f323030609e8201527f302f737667253237253345253343646566732533452533437374796c6525334560be8201527f253430666f6e742d66616365253230253742666f6e742d66616d696c7925334160de8201527f253230253237507265737325323053746172742532303250253237253342737260fe8201527f6325334125323075726c25323825323764617461253341666f6e742f776f666661011e8201527f32253342626173653634253243643039474d6741424141414141424c3841413861013e8201527f41414141415235774141424b674141454141414141414141414141414141414161015e8201527f4141414141414141414141414150305a4756453063476a41624d42794358675a61017e8201527f6741494e794551674b3846545361517544524141424e67496b41344e4d42434161019e8201527f46687a5148684649623644566c42306a314f4d4253336f4f4953744562732f2f6101be8201527f2f6c4a776356727a47634f30676f684c45484d6369694443434e57695a6761306101de8201527f79625345555954514f6a4b427038546c737a7344526438716174586c333058746101fe8201527f30645a47467952305668444b776c62746c25324272734643773945316e64655961021e8201527f4a74732f37527762305673784d71576c636a6a775445537a2f5568752f77337361023e8201527f33746b6f496d70343464515168576f456d54337579526d70746f7553446b7a5761025e8201527f454138762f3932364a4b7539486f696e6e3673376674336d4965476c7737547161027e8201527f6437456f326a46517849766a5642494a70563269614f62547a68575932314e7461029e8201527f476772687434704d4b3457556a34624c7967542f51253242514c7879253242336102be8201527f6c482f362f6b6275496444497239446a724a496a6f394a7336524d58253242456102de8201527f6b37424f545a6b6d70397a347455524652566656307148504448375a7462364a6102fe8201527f616f6130684c335975616232473373667a72365776394536793569767025324261031e8201527f7135564c74426a514478476f5345304150313762336466376c61726a6525324261033e8201527f73637a6b7241744a334b6657304a342532424b323365744b4b556a383554616f61035e8201527f57473453346158436c427743413268676141652532423658396f696e32304e6261037e8201527f554a7264466767517049686d5247494d30372f7025324277375a7058316c473161039e8201527f6a6a51787073435141423438714445415042346950312f6a39592f4261686a356103be8201527f5943414e302f78714157496852616a6c6e694e654f50396e78433466667932556103de8201527f694843304e47386b686f6f567a6f7459334445417a417a41356b473735337a6a6103fe8201527f4853354d6e6d586b69496a6d54554d36556d4d3025324256346976752f48377861041e8201527f6a364666322f6b343472787a6449324141676742492f4c48416b394a7a35554d61043e8201527f496f4c7755344146455435725a464f33444d616655633061777351434879497061045e8201527f557a546b30784a474a454f6a4e6871436b474570496153474f6a714e466d2f5761047e8201527f4e434e3569636b71434d6e414165564c4d4c655867356971386b365752585a5261049e8201527f326c337042393831427a73475a743225324256696c4342723954494a674b67786104be8201527f365542514446253242566a4b44714e7741414948386a6949664d6e75384b68666104de8201527f584b486f4e3348634134477245786842324155442f795a554d423857547579496104fe8201527f413444634f4b656434397939504249616e426967734d454e38556b30766c547661051e8201527f304a58334e394d795a75544d763573655357413525324238556538504465547261053e8201527f645467474973566d4e33635856586a6463795275633434385866664176506e7361055e8201527f3575324d4531722532426a4731703137767a3849704f416e483444427367793361057e8201527f512f54376b33646d2f3846334232377355694877464631414f6c683055646e4961059e8201527f4471494e5164506355393145786f2f346252696a6a5169704e4e307a4c646c7a6105be8201527f504438496f547449734c38717162746f4f5149514a5a567849705931315073536105de8201527f55533231397a4c585066642f507667765751346372464d2532425769755671706105fe8201527f645a6f4e6475645872632f4745324d4a36656e3575635746694763375274364f61061e8201527f487676354d674c2532427a44733578444277696141315433554877326b63594361063e8201527f312f55666453316645316d37763742346537653350574848786533594f32483561065e8201527f25324241504f5a7965503025324251506553425468793078713965363241486a61067e8201527f6141556842432f364144484c6f476f4f657636412532426867487369317a613861069e8201527f71355a4e4d716a596c575a4d713867354248445574495370574a73526f52544a6106be8201527f56613049305a3957546b5371564b73507a3464586a7648746449684c6e7670746106de8201527f554c4330753542567579414d544b4a513930594b5267546e5769476b6d7153456106fe8201527f714b6d7256685259674b6b335443686255573671456f45637665577a6859535461071e8201527f4c32484e706735452f6d7151393956564467763352475435586d33637a68754c61073e8201527f3972685864316132372f736c5130686959366a643739614f5a43746a6f52687261075e8201527f623136575676514b725734477a786a7869723238494d697a2f7155447973495761077e8201527f7037516a667765347a556437614a735651575179524c554b484b42577938577661079e8201527f45565333584d53353656337757644f442532424638757639645477496d4b722f6107be8201527f5064626d5763775176456641616a7975566a70784e32704f56635769336c38776107de8201527f454c2f6d395070646f55494536253242504b5838315041546d67654f304231736107fe8201527f47454825324261707a353466646d534a7a333741686635366a4c7739756e504561081e8201527f35644d4b3025324237544639563843435466523979664e7355493474557a464661083e8201527f42326e536e384b4f626a64446964554c7034494a6873777878595172595a643661085e8201527f4e76436e55394d445825324252654c6e4d546d6c315a453972306b5077334e3261087e8201527f6752253242736a4573596d4953706b356c31497333594e614a4b6f6e7a65703761089e8201527f56637354316e556b62347048774b5a41796b614b6f43504630506f6d456876496108be8201527f5758656e6f5a767836774f4b313070316c3274546858793850316555776473766108de8201527f53715157766f424d7473674851554a614774494273756861776450545a5378596108fe8201527f707257757734647a7231564755744449465871726f4d4d69597346783857695461091e8201527f336463574b6f376d50554c79715657413972305974524a4c626957766a6e4c2561093e8201527f324272633452646767624e516c514141613264306d616236364d48447074314361095e8201527f6477626b51436253375053445a4d7a3746724f51713165636153304a6c74644161097e8201527f6c44527941587173364130586247707748676b70367572557757416272464d3361099e8201527f75794d764e4b6c344d6c435548537950416d3931776144454a3559595148754a6109be8201527f4d32304b575251737637486b61334770686c533258444b714f4b4245554753316109de8201527f65306b63316f323449494166486c4449794278584a4a656767423369386174566109fe8201527f67434f3064444f5a484a57596a564c416a6a397137765673456e72684b374568610a1e8201527f4c75427a42586d4d674554634531636d61436976504b6f4a766670466c794935610a3e8201527f4d70584234454325324245672f596d303454787843354e6c73596b74646f5951610a5e8201527f55656c38624673456c3748345a36734377622f38626b347458574658504b6a71610a7e8201527f5462526e64336e4c5770394f784941706c664b586747684e6c72443462354a4c610a9e8201527f5a367055753441726756614d366561357844574244476f7a707a4641376e6747610abe8201527f74596334486141775269475576637653653652414177335a576b564f4667764b610ade8201527f46364955696c4d49394964715155345134585264484866736666517770313955610afe8201527f434a49306a5773725433356f5578303678507268473271364d4533554f306c63610b1e8201527f635a557354454351784a44527854444b6c334c4948722f6162546f73686c6466610b3e8201527f51786a364f57745273466e6966444373473674336b426f344e6d424a6d615556610b5e8201527f54636c794951414a4c6a6e723042365a3859464d6e396b397967703752727848610b7e8201527f36766877624a4e41654b4d554436353974386746514a4d5377652f434f624850610b9e8201527f467671484746554e5266253242737245663354584b42725a76676b6369396972610bbe8201527f426d63442f7458616754474358634e68432532424f3539754c706e6673796f71610bde8201527f4c53313238374552776d38666165564f6d3857634437386c5a36594232793938610bfe8201527f5a4c6c4d3972557264324c514e6c324956643454727376675139363079377573610c1e8201527f5965306854506170576a71726c2532425837784665424e54253242315a644a4a610c3e8201527f572532424678745737584e7774634e7a7761672532425256656a6d4a6839656d610c5e8201527f6c495a4b69694e63694b3849554f4d33556a4a376342554e5847505853326c68610c7e8201527f253242687770676f4836567348524f63764569723372585970344c7769435a77610c9e8201527f3176486c43623552314d68623564536e4f326d6e6f475a6f5846315765574757610cbe8201527f6d7a694a314a555534715072306e694a536c4e424331636b4b6d4a6657625877610cde8201527f5577757449547a456d6a776770776142753464525066746a2f4e384143526e64610cfe8201527f616b2f4641674b674c37305058577839767a6b59322532426d34355473496b4c610d1e8201527f3037616f70444e6f676830535262535a534f397a744657516a376e574c676275610d3e8201527f364325324254374b6a44715a3667456e5277674d78306b4c5a77797962514f76610d5e8201527f514130773054782f354a42722f63595a6453574f546a774446364e6f586b796a610d7e8201527f33566a484e4751494e76426a5a734a4a3377466141516d6f5a575a5970416961610d9e8201527f574f466e6e686455524176576b557a77693062677a5a4158796f445545714863610dbe8201527f57307069454c574f777168773365765478444957724e32495371525151454c41610dde8201527f4d32365334486c723548552f48784a43436844424a6b756b6341573856415430610dfe8201527f6770545a544b4e48677a444f7234314751656a4f34677a416e6b577077464752610e1e8201527f43334c625231787a4b434875365635694674674c704f384b51596d5965467868610e3e8201527f4c32643838736469506a2f76306b427a636c51637954735766324d6445394944610e5e8201527f386d5858576a72434b253242354532756e336e6976656973526e726971317548610e7e8201527f594d6a6a69694945304b6466674d6f3163476d6b557254624f30356732737633610e9e8201527f477673525971762f61457736375472644f705435567a4641364131417939634b610ebe8201527f6f44667762544a64445750524e57517354796a6d3772486249734b466b6f4f2f610ede8201527f5a4c4376735966785973337768534338614c49344b765677373773336e347a48610efe8201527f67697061634a6e435362463945727a53357069386343577655597a4f5064327a610f1e8201527f684a2f4750437a53684f453378596c634f3350796164586a54334f6b68706841610f3e8201527f58465853766865544e5355525446565641486f4a6d7949726b6a454b6f517746610f5e8201527f4730303554334158643935764e30446d336d427332786746546c253242513572610f7e8201527f73416a6e744768707a6f62643642374e7a52664e56653130446f4e5639343753610f9e8201527f59646f635252624776636d785456786f61367a717756376d416e773544314745610fbe8201527f5474327a48382532425476514256356e37672f32615768743979794e594c3974610fde8201527f4f42744167384846435945316d4e775432454232467538544968543776565241610ffe8201527f3461587a6e6b3670545a4e6779696f73747749364b654655374c696c7041253261101e8201527f42334234474a794277574d327062466a4876734a3747754f6f616b6a6d46746a61103e8201527f59344c6254396c323239253242453646374c4475577a744c6e333749786b386a61105e8201527f356c42564b33774c7369362f416641756f6a34396c4d6b5653545045396b704761107e8201527f64304c724555534a4941413070596c4178414d642f4e4f46776f4a446458466961109e8201527f307a4f5744422f54464a705666575642574f516274724a556230636c663369256110be8201527f3242575072446f596c65545674564f45306d36793564487444725551776f414c6110de8201527f7455523365585364444d4e785866656a594674764c626c726c4a7777484b2f456110fe8201527f6957504a616b32574b35386e684e6f4c6a615a55475841756f32656f5777464561111e8201527f66612f445334496958717246714779633348726939785132693243352f73357661113e8201527f7a424d30793777334d4473774d3759325247427172464d6778374f696325324261115e8201527f30497a736d5678617a5473305263666a324f3334532f525639503269486f427561117e8201527f6c4b49594244665a46654c53356439725379664a64536c67683268644d72324f61119e8201527f5552334b6e6c506e4f41785477314a384c4d325a776e4671765a745a4a6c78786111be8201527f343873776243743272316b664875443756624831326159383849437456734b786111de8201527f4b742f31726b616c42414d74782f6f6f6d43445059626b556f4c6344624b436a6111fe8201527f7675713953544467746a584744715735564b36686347654f46697a6a3643714c61121e8201527f4f49716b57783477733245504d444e7378253242613661533230384f39784c3061123e8201527f526146586f394241645530706e452532424c695359334b536f4a41525978646e61125e8201527f7a69545a4d706961442f3438496969393834446151357976656378414673735761127e8201527f792f686274696d63253242704c386b35796f70496d4a627948712f6138797a6c61129e8201527f6c37726f4f7a586d786d4163337459585363546b65734d6344324939315a36336112be8201527f6549312f394a627755716b36737863394b52677277574d414e6543314e6e39756112de8201527f4779775473706d5538712532426c5a6d43714d674153363662674841476a514b6112fe8201527f73754a334451416a5235346d356a4c7a5a616e546c62646530253242726e663461131e8201527f385a574138546c32673277414779427748516e3552322532424e6a726542677861133e8201527f626c734e46627554776d6862414a48737a2f72416f61764c4f34317874767a5961135e8201527f4768336e4c4a426b41506a7578424a445248333048426575385567436978464e61137e8201527f437951322f4b253242385157372f6530253242664f2532423436524e5730657961139e8201527f4c726f39446a5467704a4e4d3547385179306c54644f756d73773066715045696113be8201527f393646702532424830634d774e6f376a787a596d6e4e664d5a6d64506c7932706113de8201527f6f7132575065476d67507136474c78504e34536c4b486e7870624f69754c58516113fe8201527f75583155715031676a6f38426136536c55314f416d5267707a7531735444584a61141e8201527f50754d3338546f387130344c324e777970653837327777556741675a6c70386461143e8201527f6b5166397a38544d43624d6b596b3758484375333564375a5a41656f346b5a4b61145e8201527f68784953386945354c546a334c4f6976485a7268394a3870337a4c5a436a776361147e8201527f6970354452694b6e576e49664c33386b4a684d7452776a67553525324256726d61149e8201527f714b6c6739307a376a64732f4238444b646b464c76483353253242376f4838616114be8201527f6c445a6c626734533155583574434d445342324f364b756c7a41344b763067376114de8201527f314251643054464b7733685358696e62374e6c304258725873514e6376436b386114fe8201527f6d6f394f786965783559627a78564e2f6b3738336f48545a495777393079495a61151e8201527f777672697164475473586e54384965705437597946434f4a6741395a3042794961153e8201527f455956735478522f6b73616b324268376f4b767034766e695530364d57317a4261155e8201527f4672746568647a306b6b587951786a426d7965645636644d596545386146787461157e8201527f6575777355466136466c6c54446c716430707a525a77473663467266574d627061159e8201527f384738587a6a66624d253242354658657076356f457273696c363458783663376115be8201527f5841576275696d3666387347494d58666f334a6971476b703333376854536a676115de8201527f65636862364f42472f327a31376a6f6d4469476d253242476c623146553069656115fe8201527f6e7552796977654c576767447a6d4655765545556a5a6f377356544877684f4661161e8201527f504d6b4e737146423977796d6b45307639666d7477453854377135384e594f3761163e8201527f787534623833766e46766c35755378446c472532426b4f51675249644f346a6761165e8201527f7a786a53486a4b4c7332742f6c684f647771766131415744437072763344345361167e8201527f34523741625934544362664b4637744265363554343551347a7a49714433316161169e8201527f79797557716a692532424636585337535439483943314f342f694b366b4775766116be8201527f6b512f664e3537487837456533373435622f76766e2f62482f58253242392f256116de8201527f32426762656d684f416d49705576755157757344764b517578394a44564e734b6116fe8201527f673651636d6b73515341445530346347524c523768466f5a326337785545664761171e8201527f253242776b755459474d764c6a422f6550634936416847686e5735717a45416961173e8201527f4a586377564545775869654e70536c317a6a457253253242435325324248634c61175e8201527f6f52506d7661324d6767412f69794c67536f544a555767733442794149514f3061177e8201527f4f6f705a487656627a6844494c65557155677a7a48492f667950474e7879777361179e8201527f6f796c6865534639577662795363336b4544716b32415636436c4364635535536117be8201527f6e6c4e6e4963394b794d63384c79622532423867484f4a795173466c4c6250526117de8201527f796d6d374a42743349545a544162314732444252496b514b51705451396939626117fe8201527f3665435353387a4d366161525364544b5657524d336663454a4c644b61746e7361181e8201527f724959774e4a55253242733048364461757832775a35686733706c653042474861183e8201527f756b316b4543734859446461496d4b7025324233463542317859763763486b7161185e8201527f644475306a4b645273657a3531376d63563641685148346931484e3173766c6a61187e8201527f5248366845454672682532426e72726d47316e33307a4d346749776d694d774561189e8201527f624b6842545564423141486f582532424b6741517a4f48543946494f71436b526118be8201527f4e4e623273397170496943534f753167576868497343564a73765771457175356118de8201527f47624a514b4e6a61427465394c4f69676368414a7665475773394332323033766118fe8201527f6f6e476c6b77725251323464646732796345646157554456734441785548734961191e8201527f77773665615234464665336d4a416b66426d5a6452395264774a485a6d47645261193e8201527f7950436a706a627a31712f584a34534949446b66384b4b6e6e32456c4b6d794c61195e8201527f69573442513836733151554b2f76426867524e776548766c5968687a7238706361197e8201527f67704b4b6d6f61576a7036426b594f48446c7835734b5647336365474539657661199e8201527f506e773563646667454242676f554946536238587632504553314772446a78456119be8201527f69524b6b697846716a54704d6d544b6b693148726a7a354368517155717845716119de8201527f544c6c4b6c53715571314772547231476a527130717846717a62744f6e5347656119fe8201527f3668374a6d627a4968355a6544696c315a58536a7430774375616b336c6e476f611a1e8201527f5655506f53734e663337394b326a6274716d44674d69485a42665a6c68324839611a3e8201527f75773738495469314a466a585653662f4336634f55667a346f30644178305447611a5e8201527f777448446863666a3443516d49694531444d5a42546b6c4e5a557065566f614f611a7e8201527f6e717633733234314e50503965766574594768435a50576a4979747332706173611a9e8201527f436a25324270556a54596c336b615574374f744b4a6136355850396d356e6367611abe8201527f364e686a685a587032762532426d57724341545a754a303368316b6a55756976611ade8201527f5067596e6a6e35744b4a4f6b326e6362703251414559585a69304b496d50356b611afe8201527f744961466e366b5a397743253237253239253230666f726d6174253238253237611b1e8201527f776f666632253237253239253342666f6e742d7765696768742533412532306e611b3e8201527f6f726d616c253342666f6e742d7374796c652533412532306e6f726d616c2533611b5e8201527f42666f6e742d646973706c617925334125323073776170253342253744746578611b7e8201527f74253230253742666f6e742d66616d696c792533412532302532375072657373611b9e8201527f2532305374617274253230325025323725334266696c6c253341253230776869611bbe8201527f74652537442e76616c7565253230253742666f6e742d73697a65253341253230611bde8201527f313070782533422537442e6e616d65253230253742666f6e742d73697a652533611bfe8201527f412532303470782533422537442533432f7374796c652533452533432f646566611c1e8201527f7325334525334372656374253230776964746825334425323738392532372532611c3e8201527f30686569676874253344253237353525323725323066696c6c25334425323762611c5e8201527f6c61636b2532372532302f253345253343726563742532307825334425323735611c7e8201527f2e3525323725323079253344253237352e352532372532307769647468253344611c9e8201527f2532373738253237253230686569676874253344253237343425323725323066611cbe8201527f696c6c2533442532372532333030303046462532372532302f25334525334374611cde8201527f657874253230746578742d616e63686f722533442532376d6964646c65253237611cfe8201527f2532307825334425323734342e35253237253230792533442532373333253237611d1e8201527f253230636c61737325334425323776616c756525323725334500000000000000611d3e820152612ba5612b9e6129f5611d5784018a61055b565b7f2533432f746578742533452533437265637425323078253344253237352e352581527f323725323079253344253237352e35253237253230776964746825334425323760208201527f373825323725323068656967687425334425323734342532372532307374726f60408201527f6b652533442532372532334646344630412532372532307374726f6b652d776960608201527f647468253344253237332532372532302f25334525334372656374253230782560808201527f334425323733302532372532307925334425323734352e35253237253230776960a08201527f647468253344253237353825323725323068656967687425334425323738253260c08201527f3725323066696c6c2533442532372532334646344630412532372532302f253360e08201527f4525334374657874253230746578742d616e63686f72253344253237656e64256101008201527f32372532307825334425323738372532372532307925334425323735322532376101208201527f253230636c6173732533442532376e616d6525323725334500000000000000006101408201526101580190565b86886105e3565b602160f81b81529050612bbb600182018561055b565b7f2533432f746578742533452533432f737667253345227d00000000000000000081526017019a995050505050505050505056fea26469706673582212206a2c00c13ddb4f1bcd7ee36e36f0c874d7d9dadcf38306eab3610b5a6e7af83464736f6c63430008110033", + "nonce": "0x2", + "accessList": [] + }, + "additionalContracts": [], + "isFixedGasLimit": false + }, + { + "hash": "0x3de75e0187d1300847016f9712d9bad87f0de9d06ecc20887ff85b8562563c90", + "transactionType": "CREATE", + "contractName": null, + "contractAddress": "0xCf7Ed3AccA5a467e9e704C703E8D87F634fB0Fc9", + "function": null, + "arguments": null, + "transaction": { + "type": "0x02", + "from": "0xf39fd6e51aad88f6f4ce6ab8827279cfffb92266", + "gas": "0x42230", + "value": "0x0", + "data": "0x608060405234801561001057600080fd5b506102cf806100206000396000f3fe608060405234801561001057600080fd5b506004361061004c5760003560e01c80630194db8e14610051578063072bdcc214610076578063a391c15b14610089578063b67d77c51461009c575b600080fd5b61006461005f366004610160565b6100af565b60405190815260200160405180910390f35b610064610084366004610160565b6100ef565b61006461009736600461021e565b610129565b6100646100aa36600461021e565b61013e565b600080805b83518110156100e8578381815181106100cf576100cf610240565b60200260200101518201915080806001019150506100b4565b5092915050565b60006001815b83518110156100e85783818151811061011057610110610240565b60200260200101518202915080806001019150506100f5565b60006101358284610256565b90505b92915050565b60006101358284610278565b634e487b7160e01b600052604160045260246000fd5b6000602080838503121561017357600080fd5b823567ffffffffffffffff8082111561018b57600080fd5b818501915085601f83011261019f57600080fd5b8135818111156101b1576101b161014a565b8060051b604051601f19603f830116810181811085821117156101d6576101d661014a565b6040529182528482019250838101850191888311156101f457600080fd5b938501935b82851015610212578435845293850193928501926101f9565b98975050505050505050565b6000806040838503121561023157600080fd5b50508035926020909101359150565b634e487b7160e01b600052603260045260246000fd5b60008261027357634e487b7160e01b600052601260045260246000fd5b500490565b8181038181111561013857634e487b7160e01b600052601160045260246000fdfea2646970667358221220fcdef23ba4219270ddb3ab764e22a87e229c05e6f1dfc4eeea983fa1a1dac91f64736f6c63430008110033", + "nonce": "0x3", + "accessList": [] + }, + "additionalContracts": [], + "isFixedGasLimit": false + }, + { + "hash": "0x9b429d2fd55ffc6fa8696728d353fd418da33819473cfb47ddf43569b706759b", + "transactionType": "CREATE", + "contractName": "Evmsheet", + "contractAddress": "0xDc64a140Aa3E981100a9becA4E685f962f0cF6C9", + "function": null, + "arguments": [ + "0x9fE46736679d2D9a65F0992F2272dE9f3c7fa6e0", + "10000000000000000" + ], + "transaction": { + "type": "0x02", + "from": "0xf39fd6e51aad88f6f4ce6ab8827279cfffb92266", + "gas": "0x34bf99", + "value": "0x0", + "data": "0x608060405234801561001057600080fd5b50604051612ed9380380612ed983398101604081905261002f916100b1565b61003833610061565b600280546001600160a01b0319166001600160a01b0393909316929092179091556001556100eb565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b600080604083850312156100c457600080fd5b82516001600160a01b03811681146100db57600080fd5b6020939093015192949293505050565b612ddf806100fa6000396000f3fe608060405260043610620000a95760003560e01c80638da5cb5b116200006c5780638da5cb5b146200016d578063ab2fa65a146200018d578063ae28505e14620001b4578063c56c4cf114620001d9578063f2fde38b14620001fb578063f52be2a2146200022057600080fd5b806303fb31e814620000ae5780631164c83d14620000d5578063145e414714620000ec5780635787cacb146200012e578063715018a61462000155575b600080fd5b348015620000bb57600080fd5b50620000d3620000cd36600462000778565b62000247565b005b620000d3620000e6366004620007e9565b62000273565b348015620000f957600080fd5b50620001116200010b36600462000864565b620004b2565b6040516001600160a01b0390911681526020015b60405180910390f35b3480156200013b57600080fd5b50620001466200054f565b60405162000125919062000891565b3480156200016257600080fd5b50620000d3620005b3565b3480156200017a57600080fd5b506000546001600160a01b031662000111565b3480156200019a57600080fd5b50620001a5620005cb565b604051620001259190620008e0565b348015620001c157600080fd5b5062000111620001d336600462000930565b620005f7565b348015620001e657600080fd5b5060025462000111906001600160a01b031681565b3480156200020857600080fd5b50620000d36200021a36600462000778565b62000622565b3480156200022d57600080fd5b506200023860015481565b60405190815260200162000125565b62000251620006a1565b600280546001600160a01b0319166001600160a01b0392909216919091179055565b60015434146200029d5760405163723a79e360e11b81523460048201526024015b60405180910390fd5b600060405180602001620002b1906200074d565b6020820181038252601f19601f8201166040525090506000828251602084016000f56002546040516356d3163d60e01b81526001600160a01b0391821660048201529192508216906356d3163d90602401600060405180830381600087803b1580156200031d57600080fd5b505af115801562000332573d6000803e3d6000fd5b505060405163c47f002760e01b81526001600160a01b038416925063c47f0027915062000366908a908a906004016200094a565b600060405180830381600087803b1580156200038157600080fd5b505af115801562000396573d6000803e3d6000fd5b5050604051635c26412360e11b81526001600160a01b038416925063b84c82469150620003ca90889088906004016200094a565b600060405180830381600087803b158015620003e557600080fd5b505af1158015620003fa573d6000803e3d6000fd5b505060405163f2fde38b60e01b81523260048201526001600160a01b038416925063f2fde38b9150602401600060405180830381600087803b1580156200044057600080fd5b505af115801562000455573d6000803e3d6000fd5b5050600380546001810182556000919091527fc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b0180546001600160a01b0319166001600160a01b0394909416939093179092555050505050505050565b600060ff60f81b838360405180602001620004cd906200074d565b6020820181038252601f19601f82011660405250805190602001206040516020016200053094939291906001600160f81b031994909416845260609290921b6bffffffffffffffffffffffff191660018401526015830152603582015260550190565b60408051601f1981840301815291905280516020909101209392505050565b60606003805480602002602001604051908101604052809291908181526020018280548015620005a957602002820191906000526020600020905b81546001600160a01b031681526001909101906020018083116200058a575b5050505050905090565b620005bd620006a1565b620005c96000620006fd565b565b606060405180602001620005df906200074d565b601f1982820381018352601f90910116604052919050565b600381815481106200060857600080fd5b6000918252602090912001546001600160a01b0316905081565b6200062c620006a1565b6001600160a01b038116620006935760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b606482015260840162000294565b6200069e81620006fd565b50565b6000546001600160a01b03163314620005c95760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015260640162000294565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b612430806200097a83390190565b80356001600160a01b03811681146200077357600080fd5b919050565b6000602082840312156200078b57600080fd5b62000796826200075b565b9392505050565b60008083601f840112620007b057600080fd5b50813567ffffffffffffffff811115620007c957600080fd5b602083019150836020828501011115620007e257600080fd5b9250929050565b6000806000806000606086880312156200080257600080fd5b853567ffffffffffffffff808211156200081b57600080fd5b6200082989838a016200079d565b909750955060208801359150808211156200084357600080fd5b5062000852888289016200079d565b96999598509660400135949350505050565b600080604083850312156200087857600080fd5b62000883836200075b565b946020939093013593505050565b6020808252825182820181905260009190848201906040850190845b81811015620008d45783516001600160a01b031683529284019291840191600101620008ad565b50909695505050505050565b600060208083528351808285015260005b818110156200090f57858101830151858201604001528201620008f1565b506000604082860101526040601f19601f8301168501019250505092915050565b6000602082840312156200094357600080fd5b5035919050565b60208152816020820152818360408301376000818301604090810191909152601f909201601f1916010191905056fe60806040523480156200001157600080fd5b50604051806040016040528060078152602001660536865657420360cc1b815250604051806040016040528060048152602001630534854360e41b81525062000069620000636200008f60201b60201c565b62000093565b600162000077838262000188565b50600262000086828262000188565b50505062000254565b3390565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b634e487b7160e01b600052604160045260246000fd5b600181811c908216806200010e57607f821691505b6020821081036200012f57634e487b7160e01b600052602260045260246000fd5b50919050565b601f8211156200018357600081815260208120601f850160051c810160208610156200015e5750805b601f850160051c820191505b818110156200017f578281556001016200016a565b5050505b505050565b81516001600160401b03811115620001a457620001a4620000e3565b620001bc81620001b58454620000f9565b8462000135565b602080601f831160018114620001f45760008415620001db5750858301515b600019600386901b1c1916600185901b1785556200017f565b600085815260208120601f198616915b82811015620002255788860151825594840194600190910190840162000204565b5085821015620002445787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b6121cc80620002646000396000f3fe608060405234801561001057600080fd5b50600436106102275760003560e01c8063715018a611610130578063b85d8b85116100b8578063cf0983981161007c578063cf09839814610512578063cfbe95d814610535578063df4ca20614610556578063e985e9c514610576578063f2fde38b146105a457600080fd5b8063b85d8b85146104a4578063b88d4fde146104ce578063b8c368ec146104e1578063c47f0027146104ec578063c87b56dd146104ff57600080fd5b806395d89b41116100ff57806395d89b4114610439578063a22cb46514610441578063b46ebb1214610454578063b6d658e114610467578063b84c82461461049157600080fd5b8063715018a6146103fa578063768d5029146104025780638ada6b0f146104155780638da5cb5b1461042857600080fd5b80631b06443c116101b35780634f6ccce7116101825780634f6ccce71461038157806356d3163d146103a15780636352211e146103b45780636a0abc74146103c757806370a08231146103e757600080fd5b80631b06443c14610335578063206848f61461034857806323b872dd1461035b57806342842e0e1461036e57600080fd5b8063081812fc116101fa578063081812fc146102a1578063095ea7b3146102e2578063172b9eed146102f757806318160ddd1461030a5780631941fd141461031357600080fd5b806301ffc9a71461022c57806302f3c4c91461025457806306fdde03146102745780630715a24a1461027c575b600080fd5b61023f61023a36600461176a565b6105b7565b60405190151581526020015b60405180910390f35b610267610262366004611861565b610609565b60405161024b9190611951565b610267610638565b6102936fffffffffffffffffffffffffffffffff81565b60405190815260200161024b565b6102ca6102af366004611964565b6005602052600090815260409020546001600160a01b031681565b6040516001600160a01b03909116815260200161024b565b6102f56102f036600461197d565b6106c6565b005b6102676103053660046119a9565b6107ad565b61029360075481565b610326610321366004611964565b610875565b60405161024b939291906119de565b6102ca610343366004611a0e565b61092a565b610326610356366004611964565b6109e3565b6102f5610369366004611a2b565b610ae1565b6102f561037c366004611a2b565b610ca8565b61029361038f366004611964565b60086020526000908152604090205481565b6102f56103af366004611a0e565b610da0565b6102ca6103c2366004611964565b610dca565b6103da6103d53660046119a9565b610e1c565b60405161024b9190611a6c565b6102936103f5366004611a0e565b610e60565b6102f5610ec3565b6102f5610410366004611af9565b610ed7565b6009546102ca906001600160a01b031681565b6000546001600160a01b03166102ca565b610267611035565b6102f561044f366004611b63565b611042565b610267610462366004611964565b6110ae565b61047a610475366004611964565b611258565b60408051921515835260208301919091520161024b565b6102f561049f366004611ba1565b611275565b6104b56104b2366004611964565b90565b6040516001600160e01b0319909116815260200161024b565b6102f56104dc366004611be3565b6112c6565b6102ca600160801b81565b6102f56104fa366004611ba1565b6113ae565b61026761050d366004611964565b6113ff565b61023f610520366004611a0e565b600160801b6001600160a01b03919091161090565b61023f610543366004611861565b516001600160a01b0316600160801b1490565b610569610564366004611964565b6114c9565b60405161024b9190611c16565b61023f610584366004611c4d565b600660209081526000928352604080842090915290825290205460ff1681565b6102f56105b2366004611a0e565b611526565b60006301ffc9a760e01b6001600160e01b0319831614806105e857506380ac58cd60e01b6001600160e01b03198316145b806106035750635b5e139f60e01b6001600160e01b03198316145b92915050565b6060816020015160405160200161062291815260200190565b6040516020818303038152906040529050919050565b6001805461064590611c7b565b80601f016020809104026020016040519081016040528092919081815260200182805461067190611c7b565b80156106be5780601f10610693576101008083540402835291602001916106be565b820191906000526020600020905b8154815290600101906020018083116106a157829003601f168201915b505050505081565b6000818152600360205260409020546001600160a01b03163381148061070f57506001600160a01b038116600090815260066020908152604080832033845290915290205460ff165b6107515760405162461bcd60e51b815260206004820152600e60248201526d1393d517d055551213d49256915160921b60448201526064015b60405180910390fd5b60008281526005602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b606060006107ba83610e1c565b9050606060005b825181101561086d576000806107ef8584815181106107e2576107e2611cb5565b6020026020010151611258565b9150915081156108335783610803826110ae565b61080c90611ccb565b60405160200161081d929190611cef565b6040516020818303038152906040529350610858565b6040516108469085908390602001611cef565b60405160208183030381529060405293505b5050808061086590611d27565b9150506107c1565b509392505050565b600a602052600090815260409020805460018201546002830180546001600160a01b039093169391926108a790611c7b565b80601f01602080910402602001604051908101604052809291908181526020018280546108d390611c7b565b80156109205780601f106108f557610100808354040283529160200191610920565b820191906000526020600020905b81548152906001019060200180831161090357829003601f168201915b5050505050905083565b6000600160801b6001600160a01b03831610156109da576000610955836001600160a01b03166110ae565b604051632d737e4960e21b8152909150735fbdb2315678afecb367f032d93f642f64180aa39063b5cdf92490610992908490600090600401611d40565b602060405180830381865af41580156109af573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906109d39190611d62565b9392505050565b5090565b919050565b60008181526003602052604081205481906060906001600160a01b0316610a1057600160801b9250610a2b565b6000848152600a60205260409020546001600160a01b031692505b6000848152600a60205260409020600181015460029091018054859291908190610a5490611c7b565b80601f0160208091040260200160405190810160405280929190818152602001828054610a8090611c7b565b8015610acd5780601f10610aa257610100808354040283529160200191610acd565b820191906000526020600020905b815481529060010190602001808311610ab057829003601f168201915b505050505090509250925092509193909250565b6000818152600360205260409020546001600160a01b03848116911614610b375760405162461bcd60e51b815260206004820152600a60248201526957524f4e475f46524f4d60b01b6044820152606401610748565b6001600160a01b038216610b815760405162461bcd60e51b81526020600482015260116024820152701253959053125117d49150d25412515395607a1b6044820152606401610748565b336001600160a01b0384161480610bbb57506001600160a01b038316600090815260066020908152604080832033845290915290205460ff165b80610bdc57506000818152600560205260409020546001600160a01b031633145b610c195760405162461bcd60e51b815260206004820152600e60248201526d1393d517d055551213d49256915160921b6044820152606401610748565b6001600160a01b0380841660008181526004602090815260408083208054600019019055938616808352848320805460010190558583526003825284832080546001600160a01b03199081168317909155600590925284832080549092169091559251849392917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b610cb3838383610ae1565b6001600160a01b0382163b1580610d5c5750604051630a85bd0160e11b8082523360048301526001600160a01b03858116602484015260448301849052608060648401526000608484015290919084169063150b7a029060a4016020604051808303816000875af1158015610d2c573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610d509190611d7b565b6001600160e01b031916145b610d9b5760405162461bcd60e51b815260206004820152601060248201526f155394d0519157d49150d2541251539560821b6044820152606401610748565b505050565b610da861159f565b600980546001600160a01b0319166001600160a01b0392909216919091179055565b6000818152600360205260409020546001600160a01b0316806109de5760405162461bcd60e51b815260206004820152600a6024820152691393d517d3525395115160b21b6044820152606401610748565b60608082516040519150602081048252602082016020850160005b83811015610e4f578181015183820152602001610e37565b505050810160200160405292915050565b60006001600160a01b038216610ea75760405162461bcd60e51b815260206004820152600c60248201526b5a45524f5f4144445245535360a01b6044820152606401610748565b506001600160a01b031660009081526004602052604090205490565b610ecb61159f565b610ed560006115f9565b565b6000858152600360205260409020546001600160a01b0316610f2f57610efd3286611649565b60078054600090815260086020526040812087905581546001929190610f24908490611d98565b90915550610f889050565b6000858152600360205260409020546001600160a01b03163214610f8857600085815260036020526040908190205490516324f3f02560e21b81526001600160a01b039091166004820152326024820152604401610748565b6040518060600160405280856001600160a01b0316815260200184815260200183838080601f0160208091040260200160405190810160405280939291908181526020018383808284376000920182905250939094525050878152600a6020908152604091829020845181546001600160a01b0319166001600160a01b0390911617815590840151600182015590830151909150600282019061102b9082611df9565b5050505050505050565b6002805461064590611c7b565b3360008181526006602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b6000818152600a6020908152604080832081516060818101845282546001600160a01b0316825260018301549482019490945260028201805494959491938401916110f890611c7b565b80601f016020809104026020016040519081016040528092919081815260200182805461112490611c7b565b80156111715780601f1061114657610100808354040283529160200191611171565b820191906000526020600020905b81548152906001019060200180831161115457829003601f168201915b505050505081525050905061119381516001600160a01b0316600160801b1490565b156111a1576109d381610609565b60006111b0826000015161092a565b905060006111bf836020015190565b905060006111d084604001516107ad565b90506000836001600160a01b031683836040516020016111f1929190611eb9565b60408051601f198184030181529082905261120b91611eea565b600060405180830381855afa9150503d8060008114611246576040519150601f19603f3d011682016040523d82523d6000602084013e61124b565b606091505b5098975050505050505050565b600080611266600284611f06565b60019081149493901c92915050565b61127d61159f565b7f8dca0271872d00b3de3abafca544c52fcd7d512dd852c9894fa2c118ac759a93600283836040516112b193929190611fce565b60405180910390a16002610d9b828483611ffe565b6112d1858585610ae1565b6001600160a01b0384163b15806113685750604051630a85bd0160e11b808252906001600160a01b0386169063150b7a02906113199033908a908990899089906004016120be565b6020604051808303816000875af1158015611338573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061135c9190611d7b565b6001600160e01b031916145b6113a75760405162461bcd60e51b815260206004820152601060248201526f155394d0519157d49150d2541251539560821b6044820152606401610748565b5050505050565b6113b661159f565b7fb65b7b5ea384affd30f77f842e057d29dd1b13f133adf69a724a8105b164ab75600183836040516113ea93929190611fce565b60405180910390a16001610d9b828483611ffe565b6000818152600360205260409020546060906001600160a01b03168061143b57604051630243d1a960e21b815260048101849052602401610748565b6000611446846110ae565b6009546040516328de0f2f60e01b81529192506001600160a01b0316906328de0f2f9061147c90879085906001906004016120fd565b600060405180830381865afa158015611499573d6000803e3d6000fd5b505050506040513d6000823e601f3d908101601f191682016040526114c19190810190612128565b949350505050565b604080516060808201835260008083526020830181905292820152906114ee836110ae565b6040805160608101825285815260009586526003602090815295829020546001600160a01b0316958101959095528401525090919050565b61152e61159f565b6001600160a01b0381166115935760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610748565b61159c816115f9565b50565b6000546001600160a01b03163314610ed55760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610748565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b6001600160a01b0382166116935760405162461bcd60e51b81526020600482015260116024820152701253959053125117d49150d25412515395607a1b6044820152606401610748565b6000818152600360205260409020546001600160a01b0316156116e95760405162461bcd60e51b815260206004820152600e60248201526d1053149150511657d3525395115160921b6044820152606401610748565b6001600160a01b038216600081815260046020908152604080832080546001019055848352600390915280822080546001600160a01b0319168417905551839291907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b6001600160e01b03198116811461159c57600080fd5b60006020828403121561177c57600080fd5b81356109d381611754565b634e487b7160e01b600052604160045260246000fd5b604051601f8201601f1916810167ffffffffffffffff811182821017156117c6576117c6611787565b604052919050565b6001600160a01b038116811461159c57600080fd5b600067ffffffffffffffff8211156117fd576117fd611787565b50601f01601f191660200190565b600082601f83011261181c57600080fd5b813561182f61182a826117e3565b61179d565b81815284602083860101111561184457600080fd5b816020850160208301376000918101602001919091529392505050565b60006020828403121561187357600080fd5b813567ffffffffffffffff8082111561188b57600080fd5b908301906060828603121561189f57600080fd5b6040516060810181811083821117156118ba576118ba611787565b60405282356118c8816117ce565b8152602083810135908201526040830135828111156118e657600080fd5b6118f28782860161180b565b60408301525095945050505050565b60005b8381101561191c578181015183820152602001611904565b50506000910152565b6000815180845261193d816020860160208601611901565b601f01601f19169290920160200192915050565b6020815260006109d36020830184611925565b60006020828403121561197657600080fd5b5035919050565b6000806040838503121561199057600080fd5b823561199b816117ce565b946020939093013593505050565b6000602082840312156119bb57600080fd5b813567ffffffffffffffff8111156119d257600080fd5b6114c18482850161180b565b60018060a01b0384168152826020820152606060408201526000611a056060830184611925565b95945050505050565b600060208284031215611a2057600080fd5b81356109d3816117ce565b600080600060608486031215611a4057600080fd5b8335611a4b816117ce565b92506020840135611a5b816117ce565b929592945050506040919091013590565b6020808252825182820181905260009190848201906040850190845b81811015611aa457835183529284019291840191600101611a88565b50909695505050505050565b60008083601f840112611ac257600080fd5b50813567ffffffffffffffff811115611ada57600080fd5b602083019150836020828501011115611af257600080fd5b9250929050565b600080600080600060808688031215611b1157600080fd5b853594506020860135611b23816117ce565b935060408601359250606086013567ffffffffffffffff811115611b4657600080fd5b611b5288828901611ab0565b969995985093965092949392505050565b60008060408385031215611b7657600080fd5b8235611b81816117ce565b915060208301358015158114611b9657600080fd5b809150509250929050565b60008060208385031215611bb457600080fd5b823567ffffffffffffffff811115611bcb57600080fd5b611bd785828601611ab0565b90969095509350505050565b600080600080600060808688031215611bfb57600080fd5b8535611c06816117ce565b94506020860135611b23816117ce565b602081528151602082015260018060a01b036020830151166040820152600060408301516060808401526114c16080840182611925565b60008060408385031215611c6057600080fd5b8235611c6b816117ce565b91506020830135611b96816117ce565b600181811c90821680611c8f57607f821691505b602082108103611caf57634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052603260045260246000fd5b80516020808301519190811015611caf5760001960209190910360031b1b16919050565b60008351611d01818460208801611901565b9190910191825250602001919050565b634e487b7160e01b600052601160045260246000fd5b600060018201611d3957611d39611d11565b5060010190565b604081526000611d536040830185611925565b90508260208301529392505050565b600060208284031215611d7457600080fd5b5051919050565b600060208284031215611d8d57600080fd5b81516109d381611754565b8082018082111561060357610603611d11565b601f821115610d9b57600081815260208120601f850160051c81016020861015611dd25750805b601f850160051c820191505b81811015611df157828155600101611dde565b505050505050565b815167ffffffffffffffff811115611e1357611e13611787565b611e2781611e218454611c7b565b84611dab565b602080601f831160018114611e5c5760008415611e445750858301515b600019600386901b1c1916600185901b178555611df1565b600085815260208120601f198616915b82811015611e8b57888601518255948401946001909101908401611e6c565b5085821015611ea95787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b6001600160e01b0319831681528151600090611edc816004850160208701611901565b919091016004019392505050565b60008251611efc818460208701611901565b9190910192915050565b600082611f2357634e487b7160e01b600052601260045260246000fd5b500690565b60008154611f3581611c7b565b808552602060018381168015611f525760018114611f6c57611f9a565b60ff1985168884015283151560051b880183019550611f9a565b866000528260002060005b85811015611f925781548a8201860152908301908401611f77565b890184019650505b505050505092915050565b81835281816020850137506000828201602090810191909152601f909101601f19169091010190565b604081526000611fe16040830186611f28565b8281036020840152611ff4818587611fa5565b9695505050505050565b67ffffffffffffffff83111561201657612016611787565b61202a836120248354611c7b565b83611dab565b6000601f84116001811461205e57600085156120465750838201355b600019600387901b1c1916600186901b1783556113a7565b600083815260209020601f19861690835b8281101561208f578685013582556020948501946001909201910161206f565b50868210156120ac5760001960f88860031b161c19848701351681555b505060018560011b0183555050505050565b6001600160a01b03868116825285166020820152604081018490526080606082018190526000906120f29083018486611fa5565b979650505050505050565b8381526060602082015260006121166060830185611925565b8281036040840152611ff48185611f28565b60006020828403121561213a57600080fd5b815167ffffffffffffffff81111561215157600080fd5b8201601f8101841361216257600080fd5b805161217061182a826117e3565b81815285602083850101111561218557600080fd5b611a0582602083016020860161190156fea26469706673582212203fc548aa4f22e6f4c01757ba3f2e0383630418b3d17601758718ab19a4d9918d64736f6c63430008110033a26469706673582212207932e8c793f9a96d9606a8907a6671f54c0fb1ed5a763048e13b429274e7706c64736f6c634300081100330000000000000000000000009fe46736679d2d9a65f0992f2272de9f3c7fa6e0000000000000000000000000000000000000000000000000002386f26fc10000", + "nonce": "0x4", + "accessList": [] + }, + "additionalContracts": [], + "isFixedGasLimit": false + } + ], + "receipts": [], + "libraries": [ + "lib/eth-projects-monorepo/packages/eth-projects-contracts/contracts/lib/utils/Bytes.sol:Bytes:0x5fbdb2315678afecb367f032d93f642f64180aa3" + ], + "pending": [ + "0x96675b77fd244a9feb082dbcbe59cb321504f8e4f72a8063dad6a46a9706fceb", + "0x3eed361770e2dcc9a97a4cdf1a955543fd69a6096e37bb0e257a7208a08c6dde", + "0xfa26a5b6e297a0b5aa632035548d06ea04efb783d4713353476f25876c532b2a", + "0x3de75e0187d1300847016f9712d9bad87f0de9d06ecc20887ff85b8562563c90", + "0x9b429d2fd55ffc6fa8696728d353fd418da33819473cfb47ddf43569b706759b" + ], + "returns": {}, + "timestamp": 1689181006, + "chain": 31337, + "multi": false, + "commit": "d526858" +} \ No newline at end of file diff --git a/packages/starksheet-solidity/broadcast/Evmsheet.s.sol/31337/run-1689181007.json b/packages/starksheet-solidity/broadcast/Evmsheet.s.sol/31337/run-1689181007.json new file mode 100644 index 00000000..3d096e73 --- /dev/null +++ b/packages/starksheet-solidity/broadcast/Evmsheet.s.sol/31337/run-1689181007.json @@ -0,0 +1,209 @@ +{ + "transactions": [ + { + "hash": "0x96675b77fd244a9feb082dbcbe59cb321504f8e4f72a8063dad6a46a9706fceb", + "transactionType": "CREATE", + "contractName": "Bytes", + "contractAddress": "0x5FbDB2315678afecb367f032d93F642f64180aa3", + "function": null, + "arguments": null, + "transaction": { + "type": "0x02", + "from": "0xf39fd6e51aad88f6f4ce6ab8827279cfffb92266", + "gas": "0x1387ed", + "data": "0x6110d661003a600b82828239805160001a60731461002d57634e487b7160e01b600052600060045260246000fd5b30600052607381538281f3fe73000000000000000000000000000000000000000030146080604052600436106101625760003560e01c8063a5eb31ee116100cd578063d1ffb56111610086578063d1ffb561146103fb578063d442584f1461042b578063e004139614610454578063f1142fb314610474578063f647f8fb14610487578063f83b670f146104b257600080fd5b8063a5eb31ee14610344578063a8d8f00f1461036b578063b5cdf92414610396578063b63711df146103a9578063be8b3430146103bc578063c29616bd146103cf57600080fd5b80635ef849301161011f5780635ef8493014610241578063913c97b41461026b57806397e6175c1461029f57806399dd9bd7146102cb5780639ae4c3d1146102ec5780639cee499e1461031857600080fd5b8063042aa0841461016757806305d3bb74146101985780631a7431ef146101c0578063235266d2146101e357806348137709146101f65780634d66a2ae1461021b575b600080fd5b61017a610175366004610ec0565b6104de565b6040516001600160d01b031990911681526020015b60405180910390f35b6101ab6101a6366004610ec0565b610540565b60405163ffffffff909116815260200161018f565b6101d36101ce366004610f05565b61059d565b604051901515815260200161018f565b6101d36101f1366004610f4c565b610652565b610209610204366004610ec0565b6106b5565b60405160ff909116815260200161018f565b61022e610229366004610fa6565b610711565b60405161ffff909116815260200161018f565b61025461024f366004610ec0565b61071e565b60405165ffffffffffff909116815260200161018f565b61027e610279366004610ec0565b610772565b6040516fffffffffffffffffffffffffffffffff909116815260200161018f565b6102b26102ad366004610ec0565b6107d0565b6040516001600160a01b0319909116815260200161018f565b6102de6102d9366004610ec0565b61082e565b60405190815260200161018f565b6102ff6102fa366004610ec0565b61088c565b60405167ffffffffffffffff909116815260200161018f565b61032b610326366004610ec0565b6108e9565b6040516001600160d81b0319909116815260200161018f565b610357610352366004610ec0565b610946565b60405162ffffff909116815260200161018f565b61037e610379366004610ec0565b6109a3565b60405166ffffffffffffff909116815260200161018f565b6102de6103a4366004610ec0565b610a00565b6102ff6103b7366004610ec0565b610a55565b61022e6103ca366004610ec0565b610aa9565b6103e26103dd366004610ec0565b610b06565b6040516001600160c81b0319909116815260200161018f565b61040e610409366004610ec0565b610b5a565b6040516bffffffffffffffffffffffff909116815260200161018f565b61043e610439366004610ec0565b610bae565b60405164ffffffffff909116815260200161018f565b610467610462366004610fe3565b610c02565b60405161018f9190611031565b6102b2610482366004610ec0565b610d0f565b61049a610495366004610ec0565b610d64565b6040516001600160a01b03909116815260200161018f565b6104c56104c0366004610ec0565b610dc9565b6040516001600160f81b0319909116815260200161018f565b60006104eb82600661107f565b835110156105375760405162461bcd60e51b8152602060048201526014602482015273746f4279746573365f6f75744f66426f756e647360601b60448201526064015b60405180910390fd5b50016006015190565b600061054d82600461107f565b835110156105945760405162461bcd60e51b8152602060048201526014602482015273746f55696e7433325f6f75744f66426f756e647360601b604482015260640161052e565b50016004015190565b600080600190508354600260018083161561010002038216048451808214600181146105cc5760009450610644565b821561064457602083106001811461062957600189600052602060002060208a018581015b600284828410010361062057815183541461060f5760009950600093505b6001830192506020820191506105f1565b50505050610642565b6101008086040294506020880151851461064257600095505b505b509293505050505b92915050565b81518151600091600191811480831461066e57600092506106ab565b600160208701838101602088015b60028483851001036106a657805183511461069a5760009650600093505b6020928301920161067c565b505050505b5090949350505050565b60006106c282600161107f565b835110156107085760405162461bcd60e51b8152602060048201526013602482015272746f55696e74385f6f75744f66426f756e647360681b604482015260640161052e565b50016001015190565b600061064c826000610aa9565b600061072b82600661107f565b835110156105375760405162461bcd60e51b8152602060048201526014602482015273746f55696e7434385f6f75744f66426f756e647360601b604482015260640161052e565b600061077f82601061107f565b835110156107c75760405162461bcd60e51b8152602060048201526015602482015274746f55696e743132385f6f75744f66426f756e647360581b604482015260640161052e565b50016010015190565b60006107dd82600c61107f565b835110156108255760405162461bcd60e51b8152602060048201526015602482015274746f427974657331325f6f75744f66426f756e647360581b604482015260640161052e565b5001600c015190565b600061083b82602061107f565b835110156108835760405162461bcd60e51b8152602060048201526015602482015274746f427974657333325f6f75744f66426f756e647360581b604482015260640161052e565b50016020015190565b600061089982600861107f565b835110156108e05760405162461bcd60e51b8152602060048201526014602482015273746f55696e7436345f6f75744f66426f756e647360601b604482015260640161052e565b50016008015190565b60006108f682600561107f565b8351101561093d5760405162461bcd60e51b8152602060048201526014602482015273746f4279746573355f6f75744f66426f756e647360601b604482015260640161052e565b50016005015190565b600061095382600361107f565b8351101561099a5760405162461bcd60e51b8152602060048201526014602482015273746f55696e7432345f6f75744f66426f756e647360601b604482015260640161052e565b50016003015190565b60006109b082600761107f565b835110156109f75760405162461bcd60e51b8152602060048201526014602482015273746f55696e7435365f6f75744f66426f756e647360601b604482015260640161052e565b50016007015190565b6000610a0d82602061107f565b835110156108835760405162461bcd60e51b8152602060048201526015602482015274746f55696e743235365f6f75744f66426f756e647360581b604482015260640161052e565b6000610a6282600861107f565b835110156108e05760405162461bcd60e51b8152602060048201526014602482015273746f4279746573385f6f75744f66426f756e647360601b604482015260640161052e565b6000610ab682600261107f565b83511015610afd5760405162461bcd60e51b8152602060048201526014602482015273746f55696e7431365f6f75744f66426f756e647360601b604482015260640161052e565b50016002015190565b6000610b1382600761107f565b835110156109f75760405162461bcd60e51b8152602060048201526014602482015273746f4279746573375f6f75744f66426f756e647360601b604482015260640161052e565b6000610b6782600c61107f565b835110156108255760405162461bcd60e51b8152602060048201526014602482015273746f55696e7439365f6f75744f66426f756e647360601b604482015260640161052e565b6000610bbb82600561107f565b8351101561093d5760405162461bcd60e51b8152602060048201526014602482015273746f55696e7434305f6f75744f66426f756e647360601b604482015260640161052e565b606081610c1081601f61107f565b1015610c4f5760405162461bcd60e51b815260206004820152600e60248201526d736c6963655f6f766572666c6f7760901b604482015260640161052e565b610c59828461107f565b84511015610c9d5760405162461bcd60e51b8152602060048201526011602482015270736c6963655f6f75744f66426f756e647360781b604482015260640161052e565b606082158015610cbc5760405191506000825260208201604052610d06565b6040519150601f8416801560200281840101858101878315602002848b0101015b81831015610cf5578051835260209283019201610cdd565b5050858452601f01601f1916604052505b50949350505050565b6000610d1c82601061107f565b835110156107c75760405162461bcd60e51b8152602060048201526015602482015274746f427974657331365f6f75744f66426f756e647360581b604482015260640161052e565b6000610d7182601461107f565b83511015610db95760405162461bcd60e51b8152602060048201526015602482015274746f416464726573735f6f75744f66426f756e647360581b604482015260640161052e565b500160200151600160601b900490565b6000610dd682600161107f565b835110156107085760405162461bcd60e51b8152602060048201526014602482015273746f4279746573315f6f75744f66426f756e647360601b604482015260640161052e565b634e487b7160e01b600052604160045260246000fd5b600082601f830112610e4457600080fd5b813567ffffffffffffffff80821115610e5f57610e5f610e1d565b604051601f8301601f19908116603f01168101908282118183101715610e8757610e87610e1d565b81604052838152866020858801011115610ea057600080fd5b836020870160208301376000602085830101528094505050505092915050565b60008060408385031215610ed357600080fd5b823567ffffffffffffffff811115610eea57600080fd5b610ef685828601610e33565b95602094909401359450505050565b60008060408385031215610f1857600080fd5b82359150602083013567ffffffffffffffff811115610f3657600080fd5b610f4285828601610e33565b9150509250929050565b60008060408385031215610f5f57600080fd5b823567ffffffffffffffff80821115610f7757600080fd5b610f8386838701610e33565b93506020850135915080821115610f9957600080fd5b50610f4285828601610e33565b600060208284031215610fb857600080fd5b813567ffffffffffffffff811115610fcf57600080fd5b610fdb84828501610e33565b949350505050565b600080600060608486031215610ff857600080fd5b833567ffffffffffffffff81111561100f57600080fd5b61101b86828701610e33565b9660208601359650604090950135949350505050565b600060208083528351808285015260005b8181101561105e57858101830151858201604001528201611042565b506000604082860101526040601f19601f8301168501019250505092915050565b8082018082111561064c57634e487b7160e01b600052601160045260246000fdfea26469706673582212205bdf5bc4551862519f5370e0dcec38eefbbbe11b6a5bf19ce2846b4f8831a5dc64736f6c63430008110033", + "nonce": "0x0", + "accessList": [] + }, + "additionalContracts": [], + "isFixedGasLimit": false + }, + { + "hash": "0x3eed361770e2dcc9a97a4cdf1a955543fd69a6096e37bb0e257a7208a08c6dde", + "transactionType": "CREATE", + "contractName": "MultiSendCallOnly", + "contractAddress": "0xe7f1725E7734CE288F8367e1Bb143E90bb3F0512", + "function": null, + "arguments": null, + "transaction": { + "type": "0x02", + "from": "0xf39fd6e51aad88f6f4ce6ab8827279cfffb92266", + "gas": "0x2e5c4", + "value": "0x0", + "data": "0x608060405234801561001057600080fd5b506101ae806100206000396000f3fe60806040526004361061001e5760003560e01c80638d80ff0a14610023575b600080fd5b6100366100313660046100c7565b610038565b005b805160205b818110156100ac578083015160f81c6001820184015160601c601583018501516035840186015160558501870160008560008114610082576001811461001e5761008e565b6000808585888a5af191505b508061009957600080fd5b505080605501850194505050505061003d565b505050565b634e487b7160e01b600052604160045260246000fd5b6000602082840312156100d957600080fd5b813567ffffffffffffffff808211156100f157600080fd5b818401915084601f83011261010557600080fd5b813581811115610117576101176100b1565b604051601f8201601f19908116603f0116810190838211818310171561013f5761013f6100b1565b8160405282815287602084870101111561015857600080fd5b82602086016020830137600092810160200192909252509594505050505056fea2646970667358221220c15490bbb756a4c3c49d6335b2e81d2d098647b0ea70174c2279f199b1d0800364736f6c63430008110033", + "nonce": "0x1", + "accessList": [] + }, + "additionalContracts": [], + "isFixedGasLimit": false + }, + { + "hash": "0xfa26a5b6e297a0b5aa632035548d06ea04efb783d4713353476f25876c532b2a", + "transactionType": "CREATE", + "contractName": "BasicCellRenderer", + "contractAddress": "0x9fE46736679d2D9a65F0992F2272dE9f3c7fa6e0", + "function": null, + "arguments": null, + "transaction": { + "type": "0x02", + "from": "0xf39fd6e51aad88f6f4ce6ab8827279cfffb92266", + "gas": "0x3180ad", + "value": "0x0", + "data": "0x608060405234801561001057600080fd5b50612c25806100206000396000f3fe608060405234801561001057600080fd5b50600436106100365760003560e01c806306d4cd8b1461003b57806328de0f2f14610064575b600080fd5b61004e610049366004610322565b610077565b60405161005b919061038b565b60405180910390f35b61004e610072366004610404565b6100f1565b60606000610086600f846104fc565b90506000610095600f8361051e565b61009f9085610535565b905060006100ae826041610548565b60f81b9050806100c76100c2856001610548565b6101b6565b6040516020016100d8929190610577565b6040516020818303038152906040529350505050919050565b606060006100fe86610077565b905083838261018388735fbdb2315678afecb367f032d93f642f64180aa363b5cdf924909160006040518363ffffffff1660e01b81526004016101429291906105a8565b602060405180830381865af415801561015f573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906100c291906105ca565b87878660405160200161019c97969594939291906105f2565b604051602081830303815290604052915050949350505050565b606060006101c383610249565b600101905060008167ffffffffffffffff8111156101e3576101e36103a5565b6040519080825280601f01601f19166020018201604052801561020d576020820181803683370190505b5090508181016020015b600019016f181899199a1a9b1b9c1cb0b131b232b360811b600a86061a8153600a850494508461021757509392505050565b60008072184f03e93ff9f4daa797ed6e38ed64bf6a1f0160401b83106102885772184f03e93ff9f4daa797ed6e38ed64bf6a1f0160401b830492506040015b6d04ee2d6d415b85acef810000000083106102b4576d04ee2d6d415b85acef8100000000830492506020015b662386f26fc1000083106102d257662386f26fc10000830492506010015b6305f5e10083106102ea576305f5e100830492506008015b61271083106102fe57612710830492506004015b60648310610310576064830492506002015b600a831061031c576001015b92915050565b60006020828403121561033457600080fd5b5035919050565b60005b8381101561035657818101518382015260200161033e565b50506000910152565b6000815180845261037781602086016020860161033b565b601f01601f19169290920160200192915050565b60208152600061039e602083018461035f565b9392505050565b634e487b7160e01b600052604160045260246000fd5b60008083601f8401126103cd57600080fd5b50813567ffffffffffffffff8111156103e557600080fd5b6020830191508360208285010111156103fd57600080fd5b9250929050565b6000806000806060858703121561041a57600080fd5b84359350602085013567ffffffffffffffff8082111561043957600080fd5b818701915087601f83011261044d57600080fd5b81358181111561045f5761045f6103a5565b604051601f8201601f19908116603f01168101908382118183101715610487576104876103a5565b816040528281528a60208487010111156104a057600080fd5b8260208601602083013760006020848301015280975050505060408701359150808211156104cd57600080fd5b506104da878288016103bb565b95989497509550505050565b634e487b7160e01b600052601160045260246000fd5b60008261051957634e487b7160e01b600052601260045260246000fd5b500490565b808202811582820484141761031c5761031c6104e6565b8181038181111561031c5761031c6104e6565b8082018082111561031c5761031c6104e6565b6000815161056d81856020860161033b565b9290920192915050565b6001600160f81b031983168152815160009061059a81600185016020870161033b565b919091016001019392505050565b6040815260006105bb604083018561035f565b90508260208301529392505050565b6000602082840312156105dc57600080fd5b5051919050565b81818437506000910190815290565b7f646174613a6170706c69636174696f6e2f6a736f6e2c7b22646573637269707481527f696f6e223a2022537461726b7368656574222c20226e616d65223a202200000060208201528688603d8301376000878201602160f81b603d820152875161066481603e840160208c0161033b565b7f222c22696d616765223a2022646174613a696d6167652f7376672b786d6c2c25603e92909101918201527f334373766725323076696577426f782533442532373025323030253230383925605e8201527f3230353525323725323066696c6c2533442532376e6f6e65253237253230786d607e8201527f6c6e73253344253237687474702533412f2f7777772e77332e6f72672f323030609e8201527f302f737667253237253345253343646566732533452533437374796c6525334560be8201527f253430666f6e742d66616365253230253742666f6e742d66616d696c7925334160de8201527f253230253237507265737325323053746172742532303250253237253342737260fe8201527f6325334125323075726c25323825323764617461253341666f6e742f776f666661011e8201527f32253342626173653634253243643039474d6741424141414141424c3841413861013e8201527f41414141415235774141424b674141454141414141414141414141414141414161015e8201527f4141414141414141414141414150305a4756453063476a41624d42794358675a61017e8201527f6741494e794551674b3846545361517544524141424e67496b41344e4d42434161019e8201527f46687a5148684649623644566c42306a314f4d4253336f4f4953744562732f2f6101be8201527f2f6c4a776356727a47634f30676f684c45484d6369694443434e57695a6761306101de8201527f79625345555954514f6a4b427038546c737a7344526438716174586c333058746101fe8201527f30645a47467952305668444b776c62746c25324272734643773945316e64655961021e8201527f4a74732f37527762305673784d71576c636a6a775445537a2f5568752f77337361023e8201527f33746b6f496d70343464515168576f456d54337579526d70746f7553446b7a5761025e8201527f454138762f3932364a4b7539486f696e6e3673376674336d4965476c7737547161027e8201527f6437456f326a46517849766a5642494a70563269614f62547a68575932314e7461029e8201527f476772687434704d4b3457556a34624c7967542f51253242514c7879253242336102be8201527f6c482f362f6b6275496444497239446a724a496a6f394a7336524d58253242456102de8201527f6b37424f545a6b6d70397a347455524652566656307148504448375a7462364a6102fe8201527f616f6130684c335975616232473373667a72365776394536793569767025324261031e8201527f7135564c74426a514478476f5345304150313762336466376c61726a6525324261033e8201527f73637a6b7241744a334b6657304a342532424b323365744b4b556a383554616f61035e8201527f57473453346158436c427743413268676141652532423658396f696e32304e6261037e8201527f554a7264466767517049686d5247494d30372f7025324277375a7058316c473161039e8201527f6a6a51787073435141423438714445415042346950312f6a39592f4261686a356103be8201527f5943414e302f78714157496852616a6c6e694e654f50396e78433466667932556103de8201527f694843304e47386b686f6f567a6f7459334445417a417a41356b473735337a6a6103fe8201527f4853354d6e6d586b69496a6d54554d36556d4d3025324256346976752f48377861041e8201527f6a364666322f6b343472787a6449324141676742492f4c48416b394a7a35554d61043e8201527f496f4c7755344146455435725a464f33444d616655633061777351434879497061045e8201527f557a546b30784a474a454f6a4e6871436b474570496153474f6a714e466d2f5761047e8201527f4e434e3569636b71434d6e414165564c4d4c655867356971386b365752585a5261049e8201527f326c337042393831427a73475a743225324256696c4342723954494a674b67786104be8201527f365542514446253242566a4b44714e7741414948386a6949664d6e75384b68666104de8201527f584b486f4e3348634134477245786842324155442f795a554d423857547579496104fe8201527f413444634f4b656434397939504249616e426967734d454e38556b30766c547661051e8201527f304a58334e394d795a75544d763573655357413525324238556538504465547261053e8201527f645467474973566d4e33635856586a6463795275633434385866664176506e7361055e8201527f3575324d4531722532426a4731703137767a3849704f416e483444427367793361057e8201527f512f54376b33646d2f3846334232377355694877464631414f6c683055646e4961059e8201527f4471494e5164506355393145786f2f346252696a6a5169704e4e307a4c646c7a6105be8201527f504438496f547449734c38717162746f4f5149514a5a567849705931315073536105de8201527f55533231397a4c585066642f507667765751346372464d2532425769755671706105fe8201527f645a6f4e6475645872632f4745324d4a36656e3575635746694763375274364f61061e8201527f487676354d674c2532427a44733578444277696141315433554877326b63594361063e8201527f312f55666453316645316d37763742346537653350574848786533594f32483561065e8201527f25324241504f5a7965503025324251506553425468793078713965363241486a61067e8201527f6141556842432f364144484c6f476f4f657636412532426867487369317a613861069e8201527f71355a4e4d716a596c575a4d713867354248445574495370574a73526f52544a6106be8201527f56613049305a3957546b5371564b73507a3464586a7648746449684c6e7670746106de8201527f554c4330753542567579414d544b4a513930594b5267546e5769476b6d7153456106fe8201527f714b6d7256685259674b6b335443686255573671456f45637665577a6859535461071e8201527f4c32484e706735452f6d7151393956564467763352475435586d33637a68754c61073e8201527f3972685864316132372f736c5130686959366a643739614f5a43746a6f52687261075e8201527f623136575676514b725734477a786a7869723238494d697a2f7155447973495761077e8201527f7037516a667765347a556437614a735651575179524c554b484b42577938577661079e8201527f45565333584d53353656337757644f442532424638757639645477496d4b722f6107be8201527f5064626d5763775176456641616a7975566a70784e32704f56635769336c38776107de8201527f454c2f6d395070646f55494536253242504b5838315041546d67654f304231736107fe8201527f47454825324261707a353466646d534a7a333741686635366a4c7739756e504561081e8201527f35644d4b3025324237544639563843435466523979664e7355493474557a464661083e8201527f42326e536e384b4f626a64446964554c7034494a6873777878595172595a643661085e8201527f4e76436e55394d445825324252654c6e4d546d6c315a453972306b5077334e3261087e8201527f6752253242736a4573596d4953706b356c31497333594e614a4b6f6e7a65703761089e8201527f56637354316e556b62347048774b5a41796b614b6f43504630506f6d456876496108be8201527f5758656e6f5a767836774f4b313070316c3274546858793850316555776473766108de8201527f53715157766f424d7473674851554a614774494273756861776450545a5378596108fe8201527f707257757734647a7231564755744449465871726f4d4d69597346783857695461091e8201527f336463574b6f376d50554c79715657413972305974524a4c626957766a6e4c2561093e8201527f324272633452646767624e516c514141613264306d616236364d48447074314361095e8201527f6477626b51436253375053445a4d7a3746724f51713165636153304a6c74644161097e8201527f6c44527941587173364130586247707748676b70367572557757416272464d3361099e8201527f75794d764e4b6c344d6c435548537950416d3931776144454a3559595148754a6109be8201527f4d32304b575251737637486b61334770686c533258444b714f4b4245554753316109de8201527f65306b63316f323449494166486c4449794278584a4a656767423369386174566109fe8201527f67434f3064444f5a484a57596a564c416a6a397137765673456e72684b374568610a1e8201527f4c75427a42586d4d674554634531636d61436976504b6f4a766670466c794935610a3e8201527f4d70584234454325324245672f596d303454787843354e6c73596b74646f5951610a5e8201527f55656c38624673456c3748345a36734377622f38626b347458574658504b6a71610a7e8201527f5462526e64336e4c5770394f784941706c664b586747684e6c72443462354a4c610a9e8201527f5a367055753441726756614d366561357844574244476f7a707a4641376e6747610abe8201527f74596334486141775269475576637653653652414177335a576b564f4667764b610ade8201527f46364955696c4d49394964715155345134585264484866736666517770313955610afe8201527f434a49306a5773725433356f5578303678507268473271364d4533554f306c63610b1e8201527f635a557354454351784a44527854444b6c334c4948722f6162546f73686c6466610b3e8201527f51786a364f57745273466e6966444373473674336b426f344e6d424a6d615556610b5e8201527f54636c794951414a4c6a6e723042365a3859464d6e396b397967703752727848610b7e8201527f36766877624a4e41654b4d554436353974386746514a4d5377652f434f624850610b9e8201527f467671484746554e5266253242737245663354584b42725a76676b6369396972610bbe8201527f426d63442f7458616754474358634e68432532424f3539754c706e6673796f71610bde8201527f4c53313238374552776d38666165564f6d3857634437386c5a36594232793938610bfe8201527f5a4c6c4d3972557264324c514e6c324956643454727376675139363079377573610c1e8201527f5965306854506170576a71726c2532425837784665424e54253242315a644a4a610c3e8201527f572532424678745737584e7774634e7a7761672532425256656a6d4a6839656d610c5e8201527f6c495a4b69694e63694b3849554f4d33556a4a376342554e5847505853326c68610c7e8201527f253242687770676f4836567348524f63764569723372585970344c7769435a77610c9e8201527f3176486c43623552314d68623564536e4f326d6e6f475a6f5846315765574757610cbe8201527f6d7a694a314a555534715072306e694a536c4e424331636b4b6d4a6657625877610cde8201527f5577757449547a456d6a776770776142753464525066746a2f4e384143526e64610cfe8201527f616b2f4641674b674c37305058577839767a6b59322532426d34355473496b4c610d1e8201527f3037616f70444e6f676830535262535a534f397a744657516a376e574c676275610d3e8201527f364325324254374b6a44715a3667456e5277674d78306b4c5a77797962514f76610d5e8201527f514130773054782f354a42722f63595a6453574f546a774446364e6f586b796a610d7e8201527f33566a484e4751494e76426a5a734a4a3377466141516d6f5a575a5970416961610d9e8201527f574f466e6e686455524176576b557a77693062677a5a4158796f445545714863610dbe8201527f57307069454c574f777168773365765478444957724e32495371525151454c41610dde8201527f4d32365334486c723548552f48784a43436844424a6b756b6341573856415430610dfe8201527f6770545a544b4e48677a444f7234314751656a4f34677a416e6b577077464752610e1e8201527f43334c625231787a4b434875365635694674674c704f384b51596d5965467868610e3e8201527f4c32643838736469506a2f76306b427a636c51637954735766324d6445394944610e5e8201527f386d5858576a72434b253242354532756e336e6976656973526e726971317548610e7e8201527f594d6a6a69694945304b6466674d6f3163476d6b557254624f30356732737633610e9e8201527f477673525971762f61457736375472644f705435567a4641364131417939634b610ebe8201527f6f44667762544a64445750524e57517354796a6d3772486249734b466b6f4f2f610ede8201527f5a4c4376735966785973337768534338614c49344b765677373773336e347a48610efe8201527f67697061634a6e435362463945727a53357069386343577655597a4f5064327a610f1e8201527f684a2f4750437a53684f453378596c634f3350796164586a54334f6b68706841610f3e8201527f58465853766865544e5355525446565641486f4a6d7949726b6a454b6f517746610f5e8201527f4730303554334158643935764e30446d336d427332786746546c253242513572610f7e8201527f73416a6e744768707a6f62643642374e7a52664e56653130446f4e5639343753610f9e8201527f59646f635252624776636d785456786f61367a717756376d416e773544314745610fbe8201527f5474327a48382532425476514256356e37672f32615768743979794e594c3974610fde8201527f4f42744167384846435945316d4e775432454232467538544968543776565241610ffe8201527f3461587a6e6b3670545a4e6779696f73747749364b654655374c696c7041253261101e8201527f42334234474a794277574d327062466a4876734a3747754f6f616b6a6d46746a61103e8201527f59344c6254396c323239253242453646374c4475577a744c6e333749786b386a61105e8201527f356c42564b33774c7369362f416641756f6a34396c4d6b5653545045396b704761107e8201527f64304c724555534a4941413070596c4178414d642f4e4f46776f4a446458466961109e8201527f307a4f5744422f54464a705666575642574f516274724a556230636c663369256110be8201527f3242575072446f596c65545674564f45306d36793564487444725551776f414c6110de8201527f7455523365585364444d4e785866656a594674764c626c726c4a7777484b2f456110fe8201527f6957504a616b32574b35386e684e6f4c6a615a55475841756f32656f5777464561111e8201527f66612f445334496958717246714779633348726939785132693243352f73357661113e8201527f7a424d30793777334d4473774d3759325247427172464d6778374f696325324261115e8201527f30497a736d5678617a5473305263666a324f3334532f525639503269486f427561117e8201527f6c4b49594244665a46654c53356439725379664a64536c67683268644d72324f61119e8201527f5552334b6e6c506e4f41785477314a384c4d325a776e4671765a745a4a6c78786111be8201527f343873776243743272316b664875443756624831326159383849437456734b786111de8201527f4b742f31726b616c42414d74782f6f6f6d43445059626b556f4c6344624b436a6111fe8201527f7675713953544467746a584744715735564b36686347654f46697a6a3643714c61121e8201527f4f49716b57783477733245504d444e7378253242613661533230384f39784c3061123e8201527f526146586f394241645530706e452532424c695359334b536f4a41525978646e61125e8201527f7a69545a4d706961442f3438496969393834446151357976656378414673735761127e8201527f792f686274696d63253242704c386b35796f70496d4a627948712f6138797a6c61129e8201527f6c37726f4f7a586d786d4163337459585363546b65734d6344324939315a36336112be8201527f6549312f394a627755716b36737863394b52677277574d414e6543314e6e39756112de8201527f4779775473706d5538712532426c5a6d43714d674153363662674841476a514b6112fe8201527f73754a334451416a5235346d356a4c7a5a616e546c62646530253242726e663461131e8201527f385a574138546c32673277414779427748516e3552322532424e6a726542677861133e8201527f626c734e46627554776d6862414a48737a2f72416f61764c4f34317874767a5961135e8201527f4768336e4c4a426b41506a7578424a445248333048426575385567436978464e61137e8201527f437951322f4b253242385157372f6530253242664f2532423436524e5730657961139e8201527f4c726f39446a5467704a4e4d3547385179306c54644f756d73773066715045696113be8201527f393646702532424830634d774e6f376a787a596d6e4e664d5a6d64506c7932706113de8201527f6f7132575065476d67507136474c78504e34536c4b486e7870624f69754c58516113fe8201527f75583155715031676a6f38426136536c55314f416d5267707a7531735444584a61141e8201527f50754d3338546f387130344c324e777970653837327777556741675a6c70386461143e8201527f6b5166397a38544d43624d6b596b3758484375333564375a5a41656f346b5a4b61145e8201527f68784953386945354c546a334c4f6976485a7268394a3870337a4c5a436a776361147e8201527f6970354452694b6e576e49664c33386b4a684d7452776a67553525324256726d61149e8201527f714b6c6739307a376a64732f4238444b646b464c76483353253242376f4838616114be8201527f6c445a6c626734533155583574434d445342324f364b756c7a41344b763067376114de8201527f314251643054464b7733685358696e62374e6c304258725873514e6376436b386114fe8201527f6d6f394f786965783559627a78564e2f6b3738336f48545a495777393079495a61151e8201527f777672697164475473586e54384965705437597946434f4a6741395a3042794961153e8201527f455956735478522f6b73616b324268376f4b767034766e695530364d57317a4261155e8201527f4672746568647a306b6b587951786a426d7965645636644d596545386146787461157e8201527f6575777355466136466c6c54446c716430707a525a77473663467266574d627061159e8201527f384738587a6a66624d253242354658657076356f457273696c363458783663376115be8201527f5841576275696d3666387347494d58666f334a6971476b703333376854536a676115de8201527f65636862364f42472f327a31376a6f6d4469476d253242476c623146553069656115fe8201527f6e7552796977654c576767447a6d4655765545556a5a6f377356544877684f4661161e8201527f504d6b4e737146423977796d6b45307639666d7477453854377135384e594f3761163e8201527f787534623833766e46766c35755378446c472532426b4f51675249644f346a6761165e8201527f7a786a53486a4b4c7332742f6c684f647771766131415744437072763344345361167e8201527f34523741625934544362664b4637744265363554343551347a7a49714433316161169e8201527f79797557716a692532424636585337535439483943314f342f694b366b4775766116be8201527f6b512f664e3537487837456533373435622f76766e2f62482f58253242392f256116de8201527f32426762656d684f416d49705576755157757344764b517578394a44564e734b6116fe8201527f673651636d6b73515341445530346347524c523768466f5a326337785545664761171e8201527f253242776b755459474d764c6a422f6550634936416847686e5735717a45416961173e8201527f4a586377564545775869654e70536c317a6a457253253242435325324248634c61175e8201527f6f52506d7661324d6767412f69794c67536f544a555767733442794149514f3061177e8201527f4f6f705a487656627a6844494c65557155677a7a48492f667950474e7879777361179e8201527f6f796c6865534639577662795363336b4544716b32415636436c4364635535536117be8201527f6e6c4e6e4963394b794d63384c79622532423867484f4a795173466c4c6250526117de8201527f796d6d374a42743349545a544162314732444252496b514b51705451396939626117fe8201527f3665435353387a4d366161525364544b5657524d336663454a4c644b61746e7361181e8201527f724959774e4a55253242733048364461757832775a35686733706c653042474861183e8201527f756b316b4543734859446461496d4b7025324233463542317859763763486b7161185e8201527f644475306a4b645273657a3531376d63563641685148346931484e3173766c6a61187e8201527f5248366845454672682532426e72726d47316e33307a4d346749776d694d774561189e8201527f624b6842545564423141486f582532424b6741517a4f48543946494f71436b526118be8201527f4e4e623273397170496943534f753167576868497343564a73765771457175356118de8201527f47624a514b4e6a61427465394c4f69676368414a7665475773394332323033766118fe8201527f6f6e476c6b77725251323464646732796345646157554456734441785548734961191e8201527f77773665615234464665336d4a416b66426d5a6452395264774a485a6d47645261193e8201527f7950436a706a627a31712f584a34534949446b66384b4b6e6e32456c4b6d794c61195e8201527f69573442513836733151554b2f76426867524e776548766c5968687a7238706361197e8201527f67704b4b6d6f61576a7036426b594f48446c7835734b5647336365474539657661199e8201527f506e773563646667454242676f554946536238587632504553314772446a78456119be8201527f69524b6b697846716a54704d6d544b6b693148726a7a354368517155717845716119de8201527f544c6c4b6c53715571314772547231476a527130717846717a62744f6e5347656119fe8201527f3668374a6d627a4968355a6544696c315a58536a7430774375616b336c6e476f611a1e8201527f5655506f53734e663337394b326a6274716d44674d69485a42665a6c68324839611a3e8201527f75773738495469314a466a585653662f4336634f55667a346f30644178305447611a5e8201527f777448446863666a3443516d49694531444d5a42546b6c4e5a557065566f614f611a7e8201527f6e717633733234314e50503965766574594768435a50576a4979747332706173611a9e8201527f436a25324270556a54596c336b615574374f744b4a6136355850396d356e6367611abe8201527f364e686a685a587032762532426d57724341545a754a303368316b6a55756976611ade8201527f5067596e6a6e35744b4a4f6b326e6362703251414559585a69304b496d50356b611afe8201527f744961466e366b5a397743253237253239253230666f726d6174253238253237611b1e8201527f776f666632253237253239253342666f6e742d7765696768742533412532306e611b3e8201527f6f726d616c253342666f6e742d7374796c652533412532306e6f726d616c2533611b5e8201527f42666f6e742d646973706c617925334125323073776170253342253744746578611b7e8201527f74253230253742666f6e742d66616d696c792533412532302532375072657373611b9e8201527f2532305374617274253230325025323725334266696c6c253341253230776869611bbe8201527f74652537442e76616c7565253230253742666f6e742d73697a65253341253230611bde8201527f313070782533422537442e6e616d65253230253742666f6e742d73697a652533611bfe8201527f412532303470782533422537442533432f7374796c652533452533432f646566611c1e8201527f7325334525334372656374253230776964746825334425323738392532372532611c3e8201527f30686569676874253344253237353525323725323066696c6c25334425323762611c5e8201527f6c61636b2532372532302f253345253343726563742532307825334425323735611c7e8201527f2e3525323725323079253344253237352e352532372532307769647468253344611c9e8201527f2532373738253237253230686569676874253344253237343425323725323066611cbe8201527f696c6c2533442532372532333030303046462532372532302f25334525334374611cde8201527f657874253230746578742d616e63686f722533442532376d6964646c65253237611cfe8201527f2532307825334425323734342e35253237253230792533442532373333253237611d1e8201527f253230636c61737325334425323776616c756525323725334500000000000000611d3e820152612ba5612b9e6129f5611d5784018a61055b565b7f2533432f746578742533452533437265637425323078253344253237352e352581527f323725323079253344253237352e35253237253230776964746825334425323760208201527f373825323725323068656967687425334425323734342532372532307374726f60408201527f6b652533442532372532334646344630412532372532307374726f6b652d776960608201527f647468253344253237332532372532302f25334525334372656374253230782560808201527f334425323733302532372532307925334425323734352e35253237253230776960a08201527f647468253344253237353825323725323068656967687425334425323738253260c08201527f3725323066696c6c2533442532372532334646344630412532372532302f253360e08201527f4525334374657874253230746578742d616e63686f72253344253237656e64256101008201527f32372532307825334425323738372532372532307925334425323735322532376101208201527f253230636c6173732533442532376e616d6525323725334500000000000000006101408201526101580190565b86886105e3565b602160f81b81529050612bbb600182018561055b565b7f2533432f746578742533452533432f737667253345227d00000000000000000081526017019a995050505050505050505056fea26469706673582212206a2c00c13ddb4f1bcd7ee36e36f0c874d7d9dadcf38306eab3610b5a6e7af83464736f6c63430008110033", + "nonce": "0x2", + "accessList": [] + }, + "additionalContracts": [], + "isFixedGasLimit": false + }, + { + "hash": "0x3de75e0187d1300847016f9712d9bad87f0de9d06ecc20887ff85b8562563c90", + "transactionType": "CREATE", + "contractName": null, + "contractAddress": "0xCf7Ed3AccA5a467e9e704C703E8D87F634fB0Fc9", + "function": null, + "arguments": null, + "transaction": { + "type": "0x02", + "from": "0xf39fd6e51aad88f6f4ce6ab8827279cfffb92266", + "gas": "0x42230", + "value": "0x0", + "data": "0x608060405234801561001057600080fd5b506102cf806100206000396000f3fe608060405234801561001057600080fd5b506004361061004c5760003560e01c80630194db8e14610051578063072bdcc214610076578063a391c15b14610089578063b67d77c51461009c575b600080fd5b61006461005f366004610160565b6100af565b60405190815260200160405180910390f35b610064610084366004610160565b6100ef565b61006461009736600461021e565b610129565b6100646100aa36600461021e565b61013e565b600080805b83518110156100e8578381815181106100cf576100cf610240565b60200260200101518201915080806001019150506100b4565b5092915050565b60006001815b83518110156100e85783818151811061011057610110610240565b60200260200101518202915080806001019150506100f5565b60006101358284610256565b90505b92915050565b60006101358284610278565b634e487b7160e01b600052604160045260246000fd5b6000602080838503121561017357600080fd5b823567ffffffffffffffff8082111561018b57600080fd5b818501915085601f83011261019f57600080fd5b8135818111156101b1576101b161014a565b8060051b604051601f19603f830116810181811085821117156101d6576101d661014a565b6040529182528482019250838101850191888311156101f457600080fd5b938501935b82851015610212578435845293850193928501926101f9565b98975050505050505050565b6000806040838503121561023157600080fd5b50508035926020909101359150565b634e487b7160e01b600052603260045260246000fd5b60008261027357634e487b7160e01b600052601260045260246000fd5b500490565b8181038181111561013857634e487b7160e01b600052601160045260246000fdfea2646970667358221220fcdef23ba4219270ddb3ab764e22a87e229c05e6f1dfc4eeea983fa1a1dac91f64736f6c63430008110033", + "nonce": "0x3", + "accessList": [] + }, + "additionalContracts": [], + "isFixedGasLimit": false + }, + { + "hash": "0x9b429d2fd55ffc6fa8696728d353fd418da33819473cfb47ddf43569b706759b", + "transactionType": "CREATE", + "contractName": "Evmsheet", + "contractAddress": "0xDc64a140Aa3E981100a9becA4E685f962f0cF6C9", + "function": null, + "arguments": [ + "0x9fE46736679d2D9a65F0992F2272dE9f3c7fa6e0", + "10000000000000000" + ], + "transaction": { + "type": "0x02", + "from": "0xf39fd6e51aad88f6f4ce6ab8827279cfffb92266", + "gas": "0x34bf99", + "value": "0x0", + "data": "0x608060405234801561001057600080fd5b50604051612ed9380380612ed983398101604081905261002f916100b1565b61003833610061565b600280546001600160a01b0319166001600160a01b0393909316929092179091556001556100eb565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b600080604083850312156100c457600080fd5b82516001600160a01b03811681146100db57600080fd5b6020939093015192949293505050565b612ddf806100fa6000396000f3fe608060405260043610620000a95760003560e01c80638da5cb5b116200006c5780638da5cb5b146200016d578063ab2fa65a146200018d578063ae28505e14620001b4578063c56c4cf114620001d9578063f2fde38b14620001fb578063f52be2a2146200022057600080fd5b806303fb31e814620000ae5780631164c83d14620000d5578063145e414714620000ec5780635787cacb146200012e578063715018a61462000155575b600080fd5b348015620000bb57600080fd5b50620000d3620000cd36600462000778565b62000247565b005b620000d3620000e6366004620007e9565b62000273565b348015620000f957600080fd5b50620001116200010b36600462000864565b620004b2565b6040516001600160a01b0390911681526020015b60405180910390f35b3480156200013b57600080fd5b50620001466200054f565b60405162000125919062000891565b3480156200016257600080fd5b50620000d3620005b3565b3480156200017a57600080fd5b506000546001600160a01b031662000111565b3480156200019a57600080fd5b50620001a5620005cb565b604051620001259190620008e0565b348015620001c157600080fd5b5062000111620001d336600462000930565b620005f7565b348015620001e657600080fd5b5060025462000111906001600160a01b031681565b3480156200020857600080fd5b50620000d36200021a36600462000778565b62000622565b3480156200022d57600080fd5b506200023860015481565b60405190815260200162000125565b62000251620006a1565b600280546001600160a01b0319166001600160a01b0392909216919091179055565b60015434146200029d5760405163723a79e360e11b81523460048201526024015b60405180910390fd5b600060405180602001620002b1906200074d565b6020820181038252601f19601f8201166040525090506000828251602084016000f56002546040516356d3163d60e01b81526001600160a01b0391821660048201529192508216906356d3163d90602401600060405180830381600087803b1580156200031d57600080fd5b505af115801562000332573d6000803e3d6000fd5b505060405163c47f002760e01b81526001600160a01b038416925063c47f0027915062000366908a908a906004016200094a565b600060405180830381600087803b1580156200038157600080fd5b505af115801562000396573d6000803e3d6000fd5b5050604051635c26412360e11b81526001600160a01b038416925063b84c82469150620003ca90889088906004016200094a565b600060405180830381600087803b158015620003e557600080fd5b505af1158015620003fa573d6000803e3d6000fd5b505060405163f2fde38b60e01b81523260048201526001600160a01b038416925063f2fde38b9150602401600060405180830381600087803b1580156200044057600080fd5b505af115801562000455573d6000803e3d6000fd5b5050600380546001810182556000919091527fc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b0180546001600160a01b0319166001600160a01b0394909416939093179092555050505050505050565b600060ff60f81b838360405180602001620004cd906200074d565b6020820181038252601f19601f82011660405250805190602001206040516020016200053094939291906001600160f81b031994909416845260609290921b6bffffffffffffffffffffffff191660018401526015830152603582015260550190565b60408051601f1981840301815291905280516020909101209392505050565b60606003805480602002602001604051908101604052809291908181526020018280548015620005a957602002820191906000526020600020905b81546001600160a01b031681526001909101906020018083116200058a575b5050505050905090565b620005bd620006a1565b620005c96000620006fd565b565b606060405180602001620005df906200074d565b601f1982820381018352601f90910116604052919050565b600381815481106200060857600080fd5b6000918252602090912001546001600160a01b0316905081565b6200062c620006a1565b6001600160a01b038116620006935760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b606482015260840162000294565b6200069e81620006fd565b50565b6000546001600160a01b03163314620005c95760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015260640162000294565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b612430806200097a83390190565b80356001600160a01b03811681146200077357600080fd5b919050565b6000602082840312156200078b57600080fd5b62000796826200075b565b9392505050565b60008083601f840112620007b057600080fd5b50813567ffffffffffffffff811115620007c957600080fd5b602083019150836020828501011115620007e257600080fd5b9250929050565b6000806000806000606086880312156200080257600080fd5b853567ffffffffffffffff808211156200081b57600080fd5b6200082989838a016200079d565b909750955060208801359150808211156200084357600080fd5b5062000852888289016200079d565b96999598509660400135949350505050565b600080604083850312156200087857600080fd5b62000883836200075b565b946020939093013593505050565b6020808252825182820181905260009190848201906040850190845b81811015620008d45783516001600160a01b031683529284019291840191600101620008ad565b50909695505050505050565b600060208083528351808285015260005b818110156200090f57858101830151858201604001528201620008f1565b506000604082860101526040601f19601f8301168501019250505092915050565b6000602082840312156200094357600080fd5b5035919050565b60208152816020820152818360408301376000818301604090810191909152601f909201601f1916010191905056fe60806040523480156200001157600080fd5b50604051806040016040528060078152602001660536865657420360cc1b815250604051806040016040528060048152602001630534854360e41b81525062000069620000636200008f60201b60201c565b62000093565b600162000077838262000188565b50600262000086828262000188565b50505062000254565b3390565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b634e487b7160e01b600052604160045260246000fd5b600181811c908216806200010e57607f821691505b6020821081036200012f57634e487b7160e01b600052602260045260246000fd5b50919050565b601f8211156200018357600081815260208120601f850160051c810160208610156200015e5750805b601f850160051c820191505b818110156200017f578281556001016200016a565b5050505b505050565b81516001600160401b03811115620001a457620001a4620000e3565b620001bc81620001b58454620000f9565b8462000135565b602080601f831160018114620001f45760008415620001db5750858301515b600019600386901b1c1916600185901b1785556200017f565b600085815260208120601f198616915b82811015620002255788860151825594840194600190910190840162000204565b5085821015620002445787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b6121cc80620002646000396000f3fe608060405234801561001057600080fd5b50600436106102275760003560e01c8063715018a611610130578063b85d8b85116100b8578063cf0983981161007c578063cf09839814610512578063cfbe95d814610535578063df4ca20614610556578063e985e9c514610576578063f2fde38b146105a457600080fd5b8063b85d8b85146104a4578063b88d4fde146104ce578063b8c368ec146104e1578063c47f0027146104ec578063c87b56dd146104ff57600080fd5b806395d89b41116100ff57806395d89b4114610439578063a22cb46514610441578063b46ebb1214610454578063b6d658e114610467578063b84c82461461049157600080fd5b8063715018a6146103fa578063768d5029146104025780638ada6b0f146104155780638da5cb5b1461042857600080fd5b80631b06443c116101b35780634f6ccce7116101825780634f6ccce71461038157806356d3163d146103a15780636352211e146103b45780636a0abc74146103c757806370a08231146103e757600080fd5b80631b06443c14610335578063206848f61461034857806323b872dd1461035b57806342842e0e1461036e57600080fd5b8063081812fc116101fa578063081812fc146102a1578063095ea7b3146102e2578063172b9eed146102f757806318160ddd1461030a5780631941fd141461031357600080fd5b806301ffc9a71461022c57806302f3c4c91461025457806306fdde03146102745780630715a24a1461027c575b600080fd5b61023f61023a36600461176a565b6105b7565b60405190151581526020015b60405180910390f35b610267610262366004611861565b610609565b60405161024b9190611951565b610267610638565b6102936fffffffffffffffffffffffffffffffff81565b60405190815260200161024b565b6102ca6102af366004611964565b6005602052600090815260409020546001600160a01b031681565b6040516001600160a01b03909116815260200161024b565b6102f56102f036600461197d565b6106c6565b005b6102676103053660046119a9565b6107ad565b61029360075481565b610326610321366004611964565b610875565b60405161024b939291906119de565b6102ca610343366004611a0e565b61092a565b610326610356366004611964565b6109e3565b6102f5610369366004611a2b565b610ae1565b6102f561037c366004611a2b565b610ca8565b61029361038f366004611964565b60086020526000908152604090205481565b6102f56103af366004611a0e565b610da0565b6102ca6103c2366004611964565b610dca565b6103da6103d53660046119a9565b610e1c565b60405161024b9190611a6c565b6102936103f5366004611a0e565b610e60565b6102f5610ec3565b6102f5610410366004611af9565b610ed7565b6009546102ca906001600160a01b031681565b6000546001600160a01b03166102ca565b610267611035565b6102f561044f366004611b63565b611042565b610267610462366004611964565b6110ae565b61047a610475366004611964565b611258565b60408051921515835260208301919091520161024b565b6102f561049f366004611ba1565b611275565b6104b56104b2366004611964565b90565b6040516001600160e01b0319909116815260200161024b565b6102f56104dc366004611be3565b6112c6565b6102ca600160801b81565b6102f56104fa366004611ba1565b6113ae565b61026761050d366004611964565b6113ff565b61023f610520366004611a0e565b600160801b6001600160a01b03919091161090565b61023f610543366004611861565b516001600160a01b0316600160801b1490565b610569610564366004611964565b6114c9565b60405161024b9190611c16565b61023f610584366004611c4d565b600660209081526000928352604080842090915290825290205460ff1681565b6102f56105b2366004611a0e565b611526565b60006301ffc9a760e01b6001600160e01b0319831614806105e857506380ac58cd60e01b6001600160e01b03198316145b806106035750635b5e139f60e01b6001600160e01b03198316145b92915050565b6060816020015160405160200161062291815260200190565b6040516020818303038152906040529050919050565b6001805461064590611c7b565b80601f016020809104026020016040519081016040528092919081815260200182805461067190611c7b565b80156106be5780601f10610693576101008083540402835291602001916106be565b820191906000526020600020905b8154815290600101906020018083116106a157829003601f168201915b505050505081565b6000818152600360205260409020546001600160a01b03163381148061070f57506001600160a01b038116600090815260066020908152604080832033845290915290205460ff165b6107515760405162461bcd60e51b815260206004820152600e60248201526d1393d517d055551213d49256915160921b60448201526064015b60405180910390fd5b60008281526005602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b606060006107ba83610e1c565b9050606060005b825181101561086d576000806107ef8584815181106107e2576107e2611cb5565b6020026020010151611258565b9150915081156108335783610803826110ae565b61080c90611ccb565b60405160200161081d929190611cef565b6040516020818303038152906040529350610858565b6040516108469085908390602001611cef565b60405160208183030381529060405293505b5050808061086590611d27565b9150506107c1565b509392505050565b600a602052600090815260409020805460018201546002830180546001600160a01b039093169391926108a790611c7b565b80601f01602080910402602001604051908101604052809291908181526020018280546108d390611c7b565b80156109205780601f106108f557610100808354040283529160200191610920565b820191906000526020600020905b81548152906001019060200180831161090357829003601f168201915b5050505050905083565b6000600160801b6001600160a01b03831610156109da576000610955836001600160a01b03166110ae565b604051632d737e4960e21b8152909150735fbdb2315678afecb367f032d93f642f64180aa39063b5cdf92490610992908490600090600401611d40565b602060405180830381865af41580156109af573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906109d39190611d62565b9392505050565b5090565b919050565b60008181526003602052604081205481906060906001600160a01b0316610a1057600160801b9250610a2b565b6000848152600a60205260409020546001600160a01b031692505b6000848152600a60205260409020600181015460029091018054859291908190610a5490611c7b565b80601f0160208091040260200160405190810160405280929190818152602001828054610a8090611c7b565b8015610acd5780601f10610aa257610100808354040283529160200191610acd565b820191906000526020600020905b815481529060010190602001808311610ab057829003601f168201915b505050505090509250925092509193909250565b6000818152600360205260409020546001600160a01b03848116911614610b375760405162461bcd60e51b815260206004820152600a60248201526957524f4e475f46524f4d60b01b6044820152606401610748565b6001600160a01b038216610b815760405162461bcd60e51b81526020600482015260116024820152701253959053125117d49150d25412515395607a1b6044820152606401610748565b336001600160a01b0384161480610bbb57506001600160a01b038316600090815260066020908152604080832033845290915290205460ff165b80610bdc57506000818152600560205260409020546001600160a01b031633145b610c195760405162461bcd60e51b815260206004820152600e60248201526d1393d517d055551213d49256915160921b6044820152606401610748565b6001600160a01b0380841660008181526004602090815260408083208054600019019055938616808352848320805460010190558583526003825284832080546001600160a01b03199081168317909155600590925284832080549092169091559251849392917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b610cb3838383610ae1565b6001600160a01b0382163b1580610d5c5750604051630a85bd0160e11b8082523360048301526001600160a01b03858116602484015260448301849052608060648401526000608484015290919084169063150b7a029060a4016020604051808303816000875af1158015610d2c573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610d509190611d7b565b6001600160e01b031916145b610d9b5760405162461bcd60e51b815260206004820152601060248201526f155394d0519157d49150d2541251539560821b6044820152606401610748565b505050565b610da861159f565b600980546001600160a01b0319166001600160a01b0392909216919091179055565b6000818152600360205260409020546001600160a01b0316806109de5760405162461bcd60e51b815260206004820152600a6024820152691393d517d3525395115160b21b6044820152606401610748565b60608082516040519150602081048252602082016020850160005b83811015610e4f578181015183820152602001610e37565b505050810160200160405292915050565b60006001600160a01b038216610ea75760405162461bcd60e51b815260206004820152600c60248201526b5a45524f5f4144445245535360a01b6044820152606401610748565b506001600160a01b031660009081526004602052604090205490565b610ecb61159f565b610ed560006115f9565b565b6000858152600360205260409020546001600160a01b0316610f2f57610efd3286611649565b60078054600090815260086020526040812087905581546001929190610f24908490611d98565b90915550610f889050565b6000858152600360205260409020546001600160a01b03163214610f8857600085815260036020526040908190205490516324f3f02560e21b81526001600160a01b039091166004820152326024820152604401610748565b6040518060600160405280856001600160a01b0316815260200184815260200183838080601f0160208091040260200160405190810160405280939291908181526020018383808284376000920182905250939094525050878152600a6020908152604091829020845181546001600160a01b0319166001600160a01b0390911617815590840151600182015590830151909150600282019061102b9082611df9565b5050505050505050565b6002805461064590611c7b565b3360008181526006602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b6000818152600a6020908152604080832081516060818101845282546001600160a01b0316825260018301549482019490945260028201805494959491938401916110f890611c7b565b80601f016020809104026020016040519081016040528092919081815260200182805461112490611c7b565b80156111715780601f1061114657610100808354040283529160200191611171565b820191906000526020600020905b81548152906001019060200180831161115457829003601f168201915b505050505081525050905061119381516001600160a01b0316600160801b1490565b156111a1576109d381610609565b60006111b0826000015161092a565b905060006111bf836020015190565b905060006111d084604001516107ad565b90506000836001600160a01b031683836040516020016111f1929190611eb9565b60408051601f198184030181529082905261120b91611eea565b600060405180830381855afa9150503d8060008114611246576040519150601f19603f3d011682016040523d82523d6000602084013e61124b565b606091505b5098975050505050505050565b600080611266600284611f06565b60019081149493901c92915050565b61127d61159f565b7f8dca0271872d00b3de3abafca544c52fcd7d512dd852c9894fa2c118ac759a93600283836040516112b193929190611fce565b60405180910390a16002610d9b828483611ffe565b6112d1858585610ae1565b6001600160a01b0384163b15806113685750604051630a85bd0160e11b808252906001600160a01b0386169063150b7a02906113199033908a908990899089906004016120be565b6020604051808303816000875af1158015611338573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061135c9190611d7b565b6001600160e01b031916145b6113a75760405162461bcd60e51b815260206004820152601060248201526f155394d0519157d49150d2541251539560821b6044820152606401610748565b5050505050565b6113b661159f565b7fb65b7b5ea384affd30f77f842e057d29dd1b13f133adf69a724a8105b164ab75600183836040516113ea93929190611fce565b60405180910390a16001610d9b828483611ffe565b6000818152600360205260409020546060906001600160a01b03168061143b57604051630243d1a960e21b815260048101849052602401610748565b6000611446846110ae565b6009546040516328de0f2f60e01b81529192506001600160a01b0316906328de0f2f9061147c90879085906001906004016120fd565b600060405180830381865afa158015611499573d6000803e3d6000fd5b505050506040513d6000823e601f3d908101601f191682016040526114c19190810190612128565b949350505050565b604080516060808201835260008083526020830181905292820152906114ee836110ae565b6040805160608101825285815260009586526003602090815295829020546001600160a01b0316958101959095528401525090919050565b61152e61159f565b6001600160a01b0381166115935760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610748565b61159c816115f9565b50565b6000546001600160a01b03163314610ed55760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610748565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b6001600160a01b0382166116935760405162461bcd60e51b81526020600482015260116024820152701253959053125117d49150d25412515395607a1b6044820152606401610748565b6000818152600360205260409020546001600160a01b0316156116e95760405162461bcd60e51b815260206004820152600e60248201526d1053149150511657d3525395115160921b6044820152606401610748565b6001600160a01b038216600081815260046020908152604080832080546001019055848352600390915280822080546001600160a01b0319168417905551839291907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b6001600160e01b03198116811461159c57600080fd5b60006020828403121561177c57600080fd5b81356109d381611754565b634e487b7160e01b600052604160045260246000fd5b604051601f8201601f1916810167ffffffffffffffff811182821017156117c6576117c6611787565b604052919050565b6001600160a01b038116811461159c57600080fd5b600067ffffffffffffffff8211156117fd576117fd611787565b50601f01601f191660200190565b600082601f83011261181c57600080fd5b813561182f61182a826117e3565b61179d565b81815284602083860101111561184457600080fd5b816020850160208301376000918101602001919091529392505050565b60006020828403121561187357600080fd5b813567ffffffffffffffff8082111561188b57600080fd5b908301906060828603121561189f57600080fd5b6040516060810181811083821117156118ba576118ba611787565b60405282356118c8816117ce565b8152602083810135908201526040830135828111156118e657600080fd5b6118f28782860161180b565b60408301525095945050505050565b60005b8381101561191c578181015183820152602001611904565b50506000910152565b6000815180845261193d816020860160208601611901565b601f01601f19169290920160200192915050565b6020815260006109d36020830184611925565b60006020828403121561197657600080fd5b5035919050565b6000806040838503121561199057600080fd5b823561199b816117ce565b946020939093013593505050565b6000602082840312156119bb57600080fd5b813567ffffffffffffffff8111156119d257600080fd5b6114c18482850161180b565b60018060a01b0384168152826020820152606060408201526000611a056060830184611925565b95945050505050565b600060208284031215611a2057600080fd5b81356109d3816117ce565b600080600060608486031215611a4057600080fd5b8335611a4b816117ce565b92506020840135611a5b816117ce565b929592945050506040919091013590565b6020808252825182820181905260009190848201906040850190845b81811015611aa457835183529284019291840191600101611a88565b50909695505050505050565b60008083601f840112611ac257600080fd5b50813567ffffffffffffffff811115611ada57600080fd5b602083019150836020828501011115611af257600080fd5b9250929050565b600080600080600060808688031215611b1157600080fd5b853594506020860135611b23816117ce565b935060408601359250606086013567ffffffffffffffff811115611b4657600080fd5b611b5288828901611ab0565b969995985093965092949392505050565b60008060408385031215611b7657600080fd5b8235611b81816117ce565b915060208301358015158114611b9657600080fd5b809150509250929050565b60008060208385031215611bb457600080fd5b823567ffffffffffffffff811115611bcb57600080fd5b611bd785828601611ab0565b90969095509350505050565b600080600080600060808688031215611bfb57600080fd5b8535611c06816117ce565b94506020860135611b23816117ce565b602081528151602082015260018060a01b036020830151166040820152600060408301516060808401526114c16080840182611925565b60008060408385031215611c6057600080fd5b8235611c6b816117ce565b91506020830135611b96816117ce565b600181811c90821680611c8f57607f821691505b602082108103611caf57634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052603260045260246000fd5b80516020808301519190811015611caf5760001960209190910360031b1b16919050565b60008351611d01818460208801611901565b9190910191825250602001919050565b634e487b7160e01b600052601160045260246000fd5b600060018201611d3957611d39611d11565b5060010190565b604081526000611d536040830185611925565b90508260208301529392505050565b600060208284031215611d7457600080fd5b5051919050565b600060208284031215611d8d57600080fd5b81516109d381611754565b8082018082111561060357610603611d11565b601f821115610d9b57600081815260208120601f850160051c81016020861015611dd25750805b601f850160051c820191505b81811015611df157828155600101611dde565b505050505050565b815167ffffffffffffffff811115611e1357611e13611787565b611e2781611e218454611c7b565b84611dab565b602080601f831160018114611e5c5760008415611e445750858301515b600019600386901b1c1916600185901b178555611df1565b600085815260208120601f198616915b82811015611e8b57888601518255948401946001909101908401611e6c565b5085821015611ea95787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b6001600160e01b0319831681528151600090611edc816004850160208701611901565b919091016004019392505050565b60008251611efc818460208701611901565b9190910192915050565b600082611f2357634e487b7160e01b600052601260045260246000fd5b500690565b60008154611f3581611c7b565b808552602060018381168015611f525760018114611f6c57611f9a565b60ff1985168884015283151560051b880183019550611f9a565b866000528260002060005b85811015611f925781548a8201860152908301908401611f77565b890184019650505b505050505092915050565b81835281816020850137506000828201602090810191909152601f909101601f19169091010190565b604081526000611fe16040830186611f28565b8281036020840152611ff4818587611fa5565b9695505050505050565b67ffffffffffffffff83111561201657612016611787565b61202a836120248354611c7b565b83611dab565b6000601f84116001811461205e57600085156120465750838201355b600019600387901b1c1916600186901b1783556113a7565b600083815260209020601f19861690835b8281101561208f578685013582556020948501946001909201910161206f565b50868210156120ac5760001960f88860031b161c19848701351681555b505060018560011b0183555050505050565b6001600160a01b03868116825285166020820152604081018490526080606082018190526000906120f29083018486611fa5565b979650505050505050565b8381526060602082015260006121166060830185611925565b8281036040840152611ff48185611f28565b60006020828403121561213a57600080fd5b815167ffffffffffffffff81111561215157600080fd5b8201601f8101841361216257600080fd5b805161217061182a826117e3565b81815285602083850101111561218557600080fd5b611a0582602083016020860161190156fea26469706673582212203fc548aa4f22e6f4c01757ba3f2e0383630418b3d17601758718ab19a4d9918d64736f6c63430008110033a26469706673582212207932e8c793f9a96d9606a8907a6671f54c0fb1ed5a763048e13b429274e7706c64736f6c634300081100330000000000000000000000009fe46736679d2d9a65f0992f2272de9f3c7fa6e0000000000000000000000000000000000000000000000000002386f26fc10000", + "nonce": "0x4", + "accessList": [] + }, + "additionalContracts": [], + "isFixedGasLimit": false + } + ], + "receipts": [ + { + "transactionHash": "0x96675b77fd244a9feb082dbcbe59cb321504f8e4f72a8063dad6a46a9706fceb", + "transactionIndex": "0x0", + "blockHash": "0xe0f4d48b0d0f56b38767b74e538484e6fac6f2931b3766cacc0b234ea8d943e9", + "blockNumber": "0x1", + "from": "0xf39Fd6e51aad88F6F4ce6aB8827279cffFb92266", + "to": null, + "cumulativeGasUsed": "0xf072b", + "gasUsed": "0xf072b", + "contractAddress": "0x5FbDB2315678afecb367f032d93F642f64180aa3", + "logs": [], + "status": "0x1", + "logsBloom": "0x00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", + "type": "0x2", + "effectiveGasPrice": "0xee6b2800" + }, + { + "transactionHash": "0x3eed361770e2dcc9a97a4cdf1a955543fd69a6096e37bb0e257a7208a08c6dde", + "transactionIndex": "0x1", + "blockHash": "0xe0f4d48b0d0f56b38767b74e538484e6fac6f2931b3766cacc0b234ea8d943e9", + "blockNumber": "0x1", + "from": "0xf39Fd6e51aad88F6F4ce6aB8827279cffFb92266", + "to": null, + "cumulativeGasUsed": "0x1141e0", + "gasUsed": "0x23ab5", + "contractAddress": "0xe7f1725E7734CE288F8367e1Bb143E90bb3F0512", + "logs": [], + "status": "0x1", + "logsBloom": "0x00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", + "type": "0x2", + "effectiveGasPrice": "0xee6b2800" + }, + { + "transactionHash": "0xfa26a5b6e297a0b5aa632035548d06ea04efb783d4713353476f25876c532b2a", + "transactionIndex": "0x2", + "blockHash": "0xe0f4d48b0d0f56b38767b74e538484e6fac6f2931b3766cacc0b234ea8d943e9", + "blockNumber": "0x1", + "from": "0xf39Fd6e51aad88F6F4ce6aB8827279cffFb92266", + "to": null, + "cumulativeGasUsed": "0x3758dd", + "gasUsed": "0x2616fd", + "contractAddress": "0x9fE46736679d2D9a65F0992F2272dE9f3c7fa6e0", + "logs": [], + "status": "0x1", + "logsBloom": "0x00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", + "type": "0x2", + "effectiveGasPrice": "0xee6b2800" + }, + { + "transactionHash": "0x3de75e0187d1300847016f9712d9bad87f0de9d06ecc20887ff85b8562563c90", + "transactionIndex": "0x3", + "blockHash": "0xe0f4d48b0d0f56b38767b74e538484e6fac6f2931b3766cacc0b234ea8d943e9", + "blockNumber": "0x1", + "from": "0xf39Fd6e51aad88F6F4ce6aB8827279cffFb92266", + "to": null, + "cumulativeGasUsed": "0x3a870b", + "gasUsed": "0x32e2e", + "contractAddress": "0xCf7Ed3AccA5a467e9e704C703E8D87F634fB0Fc9", + "logs": [], + "status": "0x1", + "logsBloom": "0x00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", + "type": "0x2", + "effectiveGasPrice": "0xee6b2800" + }, + { + "transactionHash": "0x9b429d2fd55ffc6fa8696728d353fd418da33819473cfb47ddf43569b706759b", + "transactionIndex": "0x4", + "blockHash": "0xe0f4d48b0d0f56b38767b74e538484e6fac6f2931b3766cacc0b234ea8d943e9", + "blockNumber": "0x1", + "from": "0xf39Fd6e51aad88F6F4ce6aB8827279cffFb92266", + "to": null, + "cumulativeGasUsed": "0x631d5f", + "gasUsed": "0x289654", + "contractAddress": "0xDc64a140Aa3E981100a9becA4E685f962f0cF6C9", + "logs": [ + { + "address": "0xDc64a140Aa3E981100a9becA4E685f962f0cF6C9", + "topics": [ + "0x8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0", + "0x0000000000000000000000000000000000000000000000000000000000000000", + "0x000000000000000000000000f39fd6e51aad88f6f4ce6ab8827279cfffb92266" + ], + "data": "0x", + "blockHash": "0xe0f4d48b0d0f56b38767b74e538484e6fac6f2931b3766cacc0b234ea8d943e9", + "blockNumber": "0x1", + "transactionHash": "0x9b429d2fd55ffc6fa8696728d353fd418da33819473cfb47ddf43569b706759b", + "transactionIndex": "0x4", + "logIndex": "0x4", + "transactionLogIndex": "0x0", + "removed": false + } + ], + "status": "0x1", + "logsBloom": "0x00000000000000000000000000000000000000000000000000800000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000020000000000000100000800000000000000000000000000000000400000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000200000000000000000000000002020000000000000000020000000000000000000000000000000000000000001000000000100000000000000", + "type": "0x2", + "effectiveGasPrice": "0xee6b2800" + } + ], + "libraries": [ + "lib/eth-projects-monorepo/packages/eth-projects-contracts/contracts/lib/utils/Bytes.sol:Bytes:0x5fbdb2315678afecb367f032d93f642f64180aa3" + ], + "pending": [], + "returns": {}, + "timestamp": 1689181007, + "chain": 31337, + "multi": false, + "commit": "d526858" +} \ No newline at end of file diff --git a/packages/starksheet-solidity/broadcast/Evmsheet.s.sol/31337/run-1689251404.json b/packages/starksheet-solidity/broadcast/Evmsheet.s.sol/31337/run-1689251404.json new file mode 100644 index 00000000..dcbcdd30 --- /dev/null +++ b/packages/starksheet-solidity/broadcast/Evmsheet.s.sol/31337/run-1689251404.json @@ -0,0 +1,209 @@ +{ + "transactions": [ + { + "hash": "0x96675b77fd244a9feb082dbcbe59cb321504f8e4f72a8063dad6a46a9706fceb", + "transactionType": "CREATE", + "contractName": "Bytes", + "contractAddress": "0x5FbDB2315678afecb367f032d93F642f64180aa3", + "function": null, + "arguments": null, + "transaction": { + "type": "0x02", + "from": "0xf39fd6e51aad88f6f4ce6ab8827279cfffb92266", + "gas": "0x1387ed", + "data": "0x6110d661003a600b82828239805160001a60731461002d57634e487b7160e01b600052600060045260246000fd5b30600052607381538281f3fe73000000000000000000000000000000000000000030146080604052600436106101625760003560e01c8063a5eb31ee116100cd578063d1ffb56111610086578063d1ffb561146103fb578063d442584f1461042b578063e004139614610454578063f1142fb314610474578063f647f8fb14610487578063f83b670f146104b257600080fd5b8063a5eb31ee14610344578063a8d8f00f1461036b578063b5cdf92414610396578063b63711df146103a9578063be8b3430146103bc578063c29616bd146103cf57600080fd5b80635ef849301161011f5780635ef8493014610241578063913c97b41461026b57806397e6175c1461029f57806399dd9bd7146102cb5780639ae4c3d1146102ec5780639cee499e1461031857600080fd5b8063042aa0841461016757806305d3bb74146101985780631a7431ef146101c0578063235266d2146101e357806348137709146101f65780634d66a2ae1461021b575b600080fd5b61017a610175366004610ec0565b6104de565b6040516001600160d01b031990911681526020015b60405180910390f35b6101ab6101a6366004610ec0565b610540565b60405163ffffffff909116815260200161018f565b6101d36101ce366004610f05565b61059d565b604051901515815260200161018f565b6101d36101f1366004610f4c565b610652565b610209610204366004610ec0565b6106b5565b60405160ff909116815260200161018f565b61022e610229366004610fa6565b610711565b60405161ffff909116815260200161018f565b61025461024f366004610ec0565b61071e565b60405165ffffffffffff909116815260200161018f565b61027e610279366004610ec0565b610772565b6040516fffffffffffffffffffffffffffffffff909116815260200161018f565b6102b26102ad366004610ec0565b6107d0565b6040516001600160a01b0319909116815260200161018f565b6102de6102d9366004610ec0565b61082e565b60405190815260200161018f565b6102ff6102fa366004610ec0565b61088c565b60405167ffffffffffffffff909116815260200161018f565b61032b610326366004610ec0565b6108e9565b6040516001600160d81b0319909116815260200161018f565b610357610352366004610ec0565b610946565b60405162ffffff909116815260200161018f565b61037e610379366004610ec0565b6109a3565b60405166ffffffffffffff909116815260200161018f565b6102de6103a4366004610ec0565b610a00565b6102ff6103b7366004610ec0565b610a55565b61022e6103ca366004610ec0565b610aa9565b6103e26103dd366004610ec0565b610b06565b6040516001600160c81b0319909116815260200161018f565b61040e610409366004610ec0565b610b5a565b6040516bffffffffffffffffffffffff909116815260200161018f565b61043e610439366004610ec0565b610bae565b60405164ffffffffff909116815260200161018f565b610467610462366004610fe3565b610c02565b60405161018f9190611031565b6102b2610482366004610ec0565b610d0f565b61049a610495366004610ec0565b610d64565b6040516001600160a01b03909116815260200161018f565b6104c56104c0366004610ec0565b610dc9565b6040516001600160f81b0319909116815260200161018f565b60006104eb82600661107f565b835110156105375760405162461bcd60e51b8152602060048201526014602482015273746f4279746573365f6f75744f66426f756e647360601b60448201526064015b60405180910390fd5b50016006015190565b600061054d82600461107f565b835110156105945760405162461bcd60e51b8152602060048201526014602482015273746f55696e7433325f6f75744f66426f756e647360601b604482015260640161052e565b50016004015190565b600080600190508354600260018083161561010002038216048451808214600181146105cc5760009450610644565b821561064457602083106001811461062957600189600052602060002060208a018581015b600284828410010361062057815183541461060f5760009950600093505b6001830192506020820191506105f1565b50505050610642565b6101008086040294506020880151851461064257600095505b505b509293505050505b92915050565b81518151600091600191811480831461066e57600092506106ab565b600160208701838101602088015b60028483851001036106a657805183511461069a5760009650600093505b6020928301920161067c565b505050505b5090949350505050565b60006106c282600161107f565b835110156107085760405162461bcd60e51b8152602060048201526013602482015272746f55696e74385f6f75744f66426f756e647360681b604482015260640161052e565b50016001015190565b600061064c826000610aa9565b600061072b82600661107f565b835110156105375760405162461bcd60e51b8152602060048201526014602482015273746f55696e7434385f6f75744f66426f756e647360601b604482015260640161052e565b600061077f82601061107f565b835110156107c75760405162461bcd60e51b8152602060048201526015602482015274746f55696e743132385f6f75744f66426f756e647360581b604482015260640161052e565b50016010015190565b60006107dd82600c61107f565b835110156108255760405162461bcd60e51b8152602060048201526015602482015274746f427974657331325f6f75744f66426f756e647360581b604482015260640161052e565b5001600c015190565b600061083b82602061107f565b835110156108835760405162461bcd60e51b8152602060048201526015602482015274746f427974657333325f6f75744f66426f756e647360581b604482015260640161052e565b50016020015190565b600061089982600861107f565b835110156108e05760405162461bcd60e51b8152602060048201526014602482015273746f55696e7436345f6f75744f66426f756e647360601b604482015260640161052e565b50016008015190565b60006108f682600561107f565b8351101561093d5760405162461bcd60e51b8152602060048201526014602482015273746f4279746573355f6f75744f66426f756e647360601b604482015260640161052e565b50016005015190565b600061095382600361107f565b8351101561099a5760405162461bcd60e51b8152602060048201526014602482015273746f55696e7432345f6f75744f66426f756e647360601b604482015260640161052e565b50016003015190565b60006109b082600761107f565b835110156109f75760405162461bcd60e51b8152602060048201526014602482015273746f55696e7435365f6f75744f66426f756e647360601b604482015260640161052e565b50016007015190565b6000610a0d82602061107f565b835110156108835760405162461bcd60e51b8152602060048201526015602482015274746f55696e743235365f6f75744f66426f756e647360581b604482015260640161052e565b6000610a6282600861107f565b835110156108e05760405162461bcd60e51b8152602060048201526014602482015273746f4279746573385f6f75744f66426f756e647360601b604482015260640161052e565b6000610ab682600261107f565b83511015610afd5760405162461bcd60e51b8152602060048201526014602482015273746f55696e7431365f6f75744f66426f756e647360601b604482015260640161052e565b50016002015190565b6000610b1382600761107f565b835110156109f75760405162461bcd60e51b8152602060048201526014602482015273746f4279746573375f6f75744f66426f756e647360601b604482015260640161052e565b6000610b6782600c61107f565b835110156108255760405162461bcd60e51b8152602060048201526014602482015273746f55696e7439365f6f75744f66426f756e647360601b604482015260640161052e565b6000610bbb82600561107f565b8351101561093d5760405162461bcd60e51b8152602060048201526014602482015273746f55696e7434305f6f75744f66426f756e647360601b604482015260640161052e565b606081610c1081601f61107f565b1015610c4f5760405162461bcd60e51b815260206004820152600e60248201526d736c6963655f6f766572666c6f7760901b604482015260640161052e565b610c59828461107f565b84511015610c9d5760405162461bcd60e51b8152602060048201526011602482015270736c6963655f6f75744f66426f756e647360781b604482015260640161052e565b606082158015610cbc5760405191506000825260208201604052610d06565b6040519150601f8416801560200281840101858101878315602002848b0101015b81831015610cf5578051835260209283019201610cdd565b5050858452601f01601f1916604052505b50949350505050565b6000610d1c82601061107f565b835110156107c75760405162461bcd60e51b8152602060048201526015602482015274746f427974657331365f6f75744f66426f756e647360581b604482015260640161052e565b6000610d7182601461107f565b83511015610db95760405162461bcd60e51b8152602060048201526015602482015274746f416464726573735f6f75744f66426f756e647360581b604482015260640161052e565b500160200151600160601b900490565b6000610dd682600161107f565b835110156107085760405162461bcd60e51b8152602060048201526014602482015273746f4279746573315f6f75744f66426f756e647360601b604482015260640161052e565b634e487b7160e01b600052604160045260246000fd5b600082601f830112610e4457600080fd5b813567ffffffffffffffff80821115610e5f57610e5f610e1d565b604051601f8301601f19908116603f01168101908282118183101715610e8757610e87610e1d565b81604052838152866020858801011115610ea057600080fd5b836020870160208301376000602085830101528094505050505092915050565b60008060408385031215610ed357600080fd5b823567ffffffffffffffff811115610eea57600080fd5b610ef685828601610e33565b95602094909401359450505050565b60008060408385031215610f1857600080fd5b82359150602083013567ffffffffffffffff811115610f3657600080fd5b610f4285828601610e33565b9150509250929050565b60008060408385031215610f5f57600080fd5b823567ffffffffffffffff80821115610f7757600080fd5b610f8386838701610e33565b93506020850135915080821115610f9957600080fd5b50610f4285828601610e33565b600060208284031215610fb857600080fd5b813567ffffffffffffffff811115610fcf57600080fd5b610fdb84828501610e33565b949350505050565b600080600060608486031215610ff857600080fd5b833567ffffffffffffffff81111561100f57600080fd5b61101b86828701610e33565b9660208601359650604090950135949350505050565b600060208083528351808285015260005b8181101561105e57858101830151858201604001528201611042565b506000604082860101526040601f19601f8301168501019250505092915050565b8082018082111561064c57634e487b7160e01b600052601160045260246000fdfea26469706673582212205bdf5bc4551862519f5370e0dcec38eefbbbe11b6a5bf19ce2846b4f8831a5dc64736f6c63430008110033", + "nonce": "0x0", + "accessList": [] + }, + "additionalContracts": [], + "isFixedGasLimit": false + }, + { + "hash": "0x3eed361770e2dcc9a97a4cdf1a955543fd69a6096e37bb0e257a7208a08c6dde", + "transactionType": "CREATE", + "contractName": "MultiSendCallOnly", + "contractAddress": "0xe7f1725E7734CE288F8367e1Bb143E90bb3F0512", + "function": null, + "arguments": null, + "transaction": { + "type": "0x02", + "from": "0xf39fd6e51aad88f6f4ce6ab8827279cfffb92266", + "gas": "0x2e5c4", + "value": "0x0", + "data": "0x608060405234801561001057600080fd5b506101ae806100206000396000f3fe60806040526004361061001e5760003560e01c80638d80ff0a14610023575b600080fd5b6100366100313660046100c7565b610038565b005b805160205b818110156100ac578083015160f81c6001820184015160601c601583018501516035840186015160558501870160008560008114610082576001811461001e5761008e565b6000808585888a5af191505b508061009957600080fd5b505080605501850194505050505061003d565b505050565b634e487b7160e01b600052604160045260246000fd5b6000602082840312156100d957600080fd5b813567ffffffffffffffff808211156100f157600080fd5b818401915084601f83011261010557600080fd5b813581811115610117576101176100b1565b604051601f8201601f19908116603f0116810190838211818310171561013f5761013f6100b1565b8160405282815287602084870101111561015857600080fd5b82602086016020830137600092810160200192909252509594505050505056fea2646970667358221220c15490bbb756a4c3c49d6335b2e81d2d098647b0ea70174c2279f199b1d0800364736f6c63430008110033", + "nonce": "0x1", + "accessList": [] + }, + "additionalContracts": [], + "isFixedGasLimit": false + }, + { + "hash": "0xfa26a5b6e297a0b5aa632035548d06ea04efb783d4713353476f25876c532b2a", + "transactionType": "CREATE", + "contractName": "BasicCellRenderer", + "contractAddress": "0x9fE46736679d2D9a65F0992F2272dE9f3c7fa6e0", + "function": null, + "arguments": null, + "transaction": { + "type": "0x02", + "from": "0xf39fd6e51aad88f6f4ce6ab8827279cfffb92266", + "gas": "0x3180ad", + "value": "0x0", + "data": "0x608060405234801561001057600080fd5b50612c25806100206000396000f3fe608060405234801561001057600080fd5b50600436106100365760003560e01c806306d4cd8b1461003b57806328de0f2f14610064575b600080fd5b61004e610049366004610322565b610077565b60405161005b919061038b565b60405180910390f35b61004e610072366004610404565b6100f1565b60606000610086600f846104fc565b90506000610095600f8361051e565b61009f9085610535565b905060006100ae826041610548565b60f81b9050806100c76100c2856001610548565b6101b6565b6040516020016100d8929190610577565b6040516020818303038152906040529350505050919050565b606060006100fe86610077565b905083838261018388735fbdb2315678afecb367f032d93f642f64180aa363b5cdf924909160006040518363ffffffff1660e01b81526004016101429291906105a8565b602060405180830381865af415801561015f573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906100c291906105ca565b87878660405160200161019c97969594939291906105f2565b604051602081830303815290604052915050949350505050565b606060006101c383610249565b600101905060008167ffffffffffffffff8111156101e3576101e36103a5565b6040519080825280601f01601f19166020018201604052801561020d576020820181803683370190505b5090508181016020015b600019016f181899199a1a9b1b9c1cb0b131b232b360811b600a86061a8153600a850494508461021757509392505050565b60008072184f03e93ff9f4daa797ed6e38ed64bf6a1f0160401b83106102885772184f03e93ff9f4daa797ed6e38ed64bf6a1f0160401b830492506040015b6d04ee2d6d415b85acef810000000083106102b4576d04ee2d6d415b85acef8100000000830492506020015b662386f26fc1000083106102d257662386f26fc10000830492506010015b6305f5e10083106102ea576305f5e100830492506008015b61271083106102fe57612710830492506004015b60648310610310576064830492506002015b600a831061031c576001015b92915050565b60006020828403121561033457600080fd5b5035919050565b60005b8381101561035657818101518382015260200161033e565b50506000910152565b6000815180845261037781602086016020860161033b565b601f01601f19169290920160200192915050565b60208152600061039e602083018461035f565b9392505050565b634e487b7160e01b600052604160045260246000fd5b60008083601f8401126103cd57600080fd5b50813567ffffffffffffffff8111156103e557600080fd5b6020830191508360208285010111156103fd57600080fd5b9250929050565b6000806000806060858703121561041a57600080fd5b84359350602085013567ffffffffffffffff8082111561043957600080fd5b818701915087601f83011261044d57600080fd5b81358181111561045f5761045f6103a5565b604051601f8201601f19908116603f01168101908382118183101715610487576104876103a5565b816040528281528a60208487010111156104a057600080fd5b8260208601602083013760006020848301015280975050505060408701359150808211156104cd57600080fd5b506104da878288016103bb565b95989497509550505050565b634e487b7160e01b600052601160045260246000fd5b60008261051957634e487b7160e01b600052601260045260246000fd5b500490565b808202811582820484141761031c5761031c6104e6565b8181038181111561031c5761031c6104e6565b8082018082111561031c5761031c6104e6565b6000815161056d81856020860161033b565b9290920192915050565b6001600160f81b031983168152815160009061059a81600185016020870161033b565b919091016001019392505050565b6040815260006105bb604083018561035f565b90508260208301529392505050565b6000602082840312156105dc57600080fd5b5051919050565b81818437506000910190815290565b7f646174613a6170706c69636174696f6e2f6a736f6e2c7b22646573637269707481527f696f6e223a2022537461726b7368656574222c20226e616d65223a202200000060208201528688603d8301376000878201602160f81b603d820152875161066481603e840160208c0161033b565b7f222c22696d616765223a2022646174613a696d6167652f7376672b786d6c2c25603e92909101918201527f334373766725323076696577426f782533442532373025323030253230383925605e8201527f3230353525323725323066696c6c2533442532376e6f6e65253237253230786d607e8201527f6c6e73253344253237687474702533412f2f7777772e77332e6f72672f323030609e8201527f302f737667253237253345253343646566732533452533437374796c6525334560be8201527f253430666f6e742d66616365253230253742666f6e742d66616d696c7925334160de8201527f253230253237507265737325323053746172742532303250253237253342737260fe8201527f6325334125323075726c25323825323764617461253341666f6e742f776f666661011e8201527f32253342626173653634253243643039474d6741424141414141424c3841413861013e8201527f41414141415235774141424b674141454141414141414141414141414141414161015e8201527f4141414141414141414141414150305a4756453063476a41624d42794358675a61017e8201527f6741494e794551674b3846545361517544524141424e67496b41344e4d42434161019e8201527f46687a5148684649623644566c42306a314f4d4253336f4f4953744562732f2f6101be8201527f2f6c4a776356727a47634f30676f684c45484d6369694443434e57695a6761306101de8201527f79625345555954514f6a4b427038546c737a7344526438716174586c333058746101fe8201527f30645a47467952305668444b776c62746c25324272734643773945316e64655961021e8201527f4a74732f37527762305673784d71576c636a6a775445537a2f5568752f77337361023e8201527f33746b6f496d70343464515168576f456d54337579526d70746f7553446b7a5761025e8201527f454138762f3932364a4b7539486f696e6e3673376674336d4965476c7737547161027e8201527f6437456f326a46517849766a5642494a70563269614f62547a68575932314e7461029e8201527f476772687434704d4b3457556a34624c7967542f51253242514c7879253242336102be8201527f6c482f362f6b6275496444497239446a724a496a6f394a7336524d58253242456102de8201527f6b37424f545a6b6d70397a347455524652566656307148504448375a7462364a6102fe8201527f616f6130684c335975616232473373667a72365776394536793569767025324261031e8201527f7135564c74426a514478476f5345304150313762336466376c61726a6525324261033e8201527f73637a6b7241744a334b6657304a342532424b323365744b4b556a383554616f61035e8201527f57473453346158436c427743413268676141652532423658396f696e32304e6261037e8201527f554a7264466767517049686d5247494d30372f7025324277375a7058316c473161039e8201527f6a6a51787073435141423438714445415042346950312f6a39592f4261686a356103be8201527f5943414e302f78714157496852616a6c6e694e654f50396e78433466667932556103de8201527f694843304e47386b686f6f567a6f7459334445417a417a41356b473735337a6a6103fe8201527f4853354d6e6d586b69496a6d54554d36556d4d3025324256346976752f48377861041e8201527f6a364666322f6b343472787a6449324141676742492f4c48416b394a7a35554d61043e8201527f496f4c7755344146455435725a464f33444d616655633061777351434879497061045e8201527f557a546b30784a474a454f6a4e6871436b474570496153474f6a714e466d2f5761047e8201527f4e434e3569636b71434d6e414165564c4d4c655867356971386b365752585a5261049e8201527f326c337042393831427a73475a743225324256696c4342723954494a674b67786104be8201527f365542514446253242566a4b44714e7741414948386a6949664d6e75384b68666104de8201527f584b486f4e3348634134477245786842324155442f795a554d423857547579496104fe8201527f413444634f4b656434397939504249616e426967734d454e38556b30766c547661051e8201527f304a58334e394d795a75544d763573655357413525324238556538504465547261053e8201527f645467474973566d4e33635856586a6463795275633434385866664176506e7361055e8201527f3575324d4531722532426a4731703137767a3849704f416e483444427367793361057e8201527f512f54376b33646d2f3846334232377355694877464631414f6c683055646e4961059e8201527f4471494e5164506355393145786f2f346252696a6a5169704e4e307a4c646c7a6105be8201527f504438496f547449734c38717162746f4f5149514a5a567849705931315073536105de8201527f55533231397a4c585066642f507667765751346372464d2532425769755671706105fe8201527f645a6f4e6475645872632f4745324d4a36656e3575635746694763375274364f61061e8201527f487676354d674c2532427a44733578444277696141315433554877326b63594361063e8201527f312f55666453316645316d37763742346537653350574848786533594f32483561065e8201527f25324241504f5a7965503025324251506553425468793078713965363241486a61067e8201527f6141556842432f364144484c6f476f4f657636412532426867487369317a613861069e8201527f71355a4e4d716a596c575a4d713867354248445574495370574a73526f52544a6106be8201527f56613049305a3957546b5371564b73507a3464586a7648746449684c6e7670746106de8201527f554c4330753542567579414d544b4a513930594b5267546e5769476b6d7153456106fe8201527f714b6d7256685259674b6b335443686255573671456f45637665577a6859535461071e8201527f4c32484e706735452f6d7151393956564467763352475435586d33637a68754c61073e8201527f3972685864316132372f736c5130686959366a643739614f5a43746a6f52687261075e8201527f623136575676514b725734477a786a7869723238494d697a2f7155447973495761077e8201527f7037516a667765347a556437614a735651575179524c554b484b42577938577661079e8201527f45565333584d53353656337757644f442532424638757639645477496d4b722f6107be8201527f5064626d5763775176456641616a7975566a70784e32704f56635769336c38776107de8201527f454c2f6d395070646f55494536253242504b5838315041546d67654f304231736107fe8201527f47454825324261707a353466646d534a7a333741686635366a4c7739756e504561081e8201527f35644d4b3025324237544639563843435466523979664e7355493474557a464661083e8201527f42326e536e384b4f626a64446964554c7034494a6873777878595172595a643661085e8201527f4e76436e55394d445825324252654c6e4d546d6c315a453972306b5077334e3261087e8201527f6752253242736a4573596d4953706b356c31497333594e614a4b6f6e7a65703761089e8201527f56637354316e556b62347048774b5a41796b614b6f43504630506f6d456876496108be8201527f5758656e6f5a767836774f4b313070316c3274546858793850316555776473766108de8201527f53715157766f424d7473674851554a614774494273756861776450545a5378596108fe8201527f707257757734647a7231564755744449465871726f4d4d69597346783857695461091e8201527f336463574b6f376d50554c79715657413972305974524a4c626957766a6e4c2561093e8201527f324272633452646767624e516c514141613264306d616236364d48447074314361095e8201527f6477626b51436253375053445a4d7a3746724f51713165636153304a6c74644161097e8201527f6c44527941587173364130586247707748676b70367572557757416272464d3361099e8201527f75794d764e4b6c344d6c435548537950416d3931776144454a3559595148754a6109be8201527f4d32304b575251737637486b61334770686c533258444b714f4b4245554753316109de8201527f65306b63316f323449494166486c4449794278584a4a656767423369386174566109fe8201527f67434f3064444f5a484a57596a564c416a6a397137765673456e72684b374568610a1e8201527f4c75427a42586d4d674554634531636d61436976504b6f4a766670466c794935610a3e8201527f4d70584234454325324245672f596d303454787843354e6c73596b74646f5951610a5e8201527f55656c38624673456c3748345a36734377622f38626b347458574658504b6a71610a7e8201527f5462526e64336e4c5770394f784941706c664b586747684e6c72443462354a4c610a9e8201527f5a367055753441726756614d366561357844574244476f7a707a4641376e6747610abe8201527f74596334486141775269475576637653653652414177335a576b564f4667764b610ade8201527f46364955696c4d49394964715155345134585264484866736666517770313955610afe8201527f434a49306a5773725433356f5578303678507268473271364d4533554f306c63610b1e8201527f635a557354454351784a44527854444b6c334c4948722f6162546f73686c6466610b3e8201527f51786a364f57745273466e6966444373473674336b426f344e6d424a6d615556610b5e8201527f54636c794951414a4c6a6e723042365a3859464d6e396b397967703752727848610b7e8201527f36766877624a4e41654b4d554436353974386746514a4d5377652f434f624850610b9e8201527f467671484746554e5266253242737245663354584b42725a76676b6369396972610bbe8201527f426d63442f7458616754474358634e68432532424f3539754c706e6673796f71610bde8201527f4c53313238374552776d38666165564f6d3857634437386c5a36594232793938610bfe8201527f5a4c6c4d3972557264324c514e6c324956643454727376675139363079377573610c1e8201527f5965306854506170576a71726c2532425837784665424e54253242315a644a4a610c3e8201527f572532424678745737584e7774634e7a7761672532425256656a6d4a6839656d610c5e8201527f6c495a4b69694e63694b3849554f4d33556a4a376342554e5847505853326c68610c7e8201527f253242687770676f4836567348524f63764569723372585970344c7769435a77610c9e8201527f3176486c43623552314d68623564536e4f326d6e6f475a6f5846315765574757610cbe8201527f6d7a694a314a555534715072306e694a536c4e424331636b4b6d4a6657625877610cde8201527f5577757449547a456d6a776770776142753464525066746a2f4e384143526e64610cfe8201527f616b2f4641674b674c37305058577839767a6b59322532426d34355473496b4c610d1e8201527f3037616f70444e6f676830535262535a534f397a744657516a376e574c676275610d3e8201527f364325324254374b6a44715a3667456e5277674d78306b4c5a77797962514f76610d5e8201527f514130773054782f354a42722f63595a6453574f546a774446364e6f586b796a610d7e8201527f33566a484e4751494e76426a5a734a4a3377466141516d6f5a575a5970416961610d9e8201527f574f466e6e686455524176576b557a77693062677a5a4158796f445545714863610dbe8201527f57307069454c574f777168773365765478444957724e32495371525151454c41610dde8201527f4d32365334486c723548552f48784a43436844424a6b756b6341573856415430610dfe8201527f6770545a544b4e48677a444f7234314751656a4f34677a416e6b577077464752610e1e8201527f43334c625231787a4b434875365635694674674c704f384b51596d5965467868610e3e8201527f4c32643838736469506a2f76306b427a636c51637954735766324d6445394944610e5e8201527f386d5858576a72434b253242354532756e336e6976656973526e726971317548610e7e8201527f594d6a6a69694945304b6466674d6f3163476d6b557254624f30356732737633610e9e8201527f477673525971762f61457736375472644f705435567a4641364131417939634b610ebe8201527f6f44667762544a64445750524e57517354796a6d3772486249734b466b6f4f2f610ede8201527f5a4c4376735966785973337768534338614c49344b765677373773336e347a48610efe8201527f67697061634a6e435362463945727a53357069386343577655597a4f5064327a610f1e8201527f684a2f4750437a53684f453378596c634f3350796164586a54334f6b68706841610f3e8201527f58465853766865544e5355525446565641486f4a6d7949726b6a454b6f517746610f5e8201527f4730303554334158643935764e30446d336d427332786746546c253242513572610f7e8201527f73416a6e744768707a6f62643642374e7a52664e56653130446f4e5639343753610f9e8201527f59646f635252624776636d785456786f61367a717756376d416e773544314745610fbe8201527f5474327a48382532425476514256356e37672f32615768743979794e594c3974610fde8201527f4f42744167384846435945316d4e775432454232467538544968543776565241610ffe8201527f3461587a6e6b3670545a4e6779696f73747749364b654655374c696c7041253261101e8201527f42334234474a794277574d327062466a4876734a3747754f6f616b6a6d46746a61103e8201527f59344c6254396c323239253242453646374c4475577a744c6e333749786b386a61105e8201527f356c42564b33774c7369362f416641756f6a34396c4d6b5653545045396b704761107e8201527f64304c724555534a4941413070596c4178414d642f4e4f46776f4a446458466961109e8201527f307a4f5744422f54464a705666575642574f516274724a556230636c663369256110be8201527f3242575072446f596c65545674564f45306d36793564487444725551776f414c6110de8201527f7455523365585364444d4e785866656a594674764c626c726c4a7777484b2f456110fe8201527f6957504a616b32574b35386e684e6f4c6a615a55475841756f32656f5777464561111e8201527f66612f445334496958717246714779633348726939785132693243352f73357661113e8201527f7a424d30793777334d4473774d3759325247427172464d6778374f696325324261115e8201527f30497a736d5678617a5473305263666a324f3334532f525639503269486f427561117e8201527f6c4b49594244665a46654c53356439725379664a64536c67683268644d72324f61119e8201527f5552334b6e6c506e4f41785477314a384c4d325a776e4671765a745a4a6c78786111be8201527f343873776243743272316b664875443756624831326159383849437456734b786111de8201527f4b742f31726b616c42414d74782f6f6f6d43445059626b556f4c6344624b436a6111fe8201527f7675713953544467746a584744715735564b36686347654f46697a6a3643714c61121e8201527f4f49716b57783477733245504d444e7378253242613661533230384f39784c3061123e8201527f526146586f394241645530706e452532424c695359334b536f4a41525978646e61125e8201527f7a69545a4d706961442f3438496969393834446151357976656378414673735761127e8201527f792f686274696d63253242704c386b35796f70496d4a627948712f6138797a6c61129e8201527f6c37726f4f7a586d786d4163337459585363546b65734d6344324939315a36336112be8201527f6549312f394a627755716b36737863394b52677277574d414e6543314e6e39756112de8201527f4779775473706d5538712532426c5a6d43714d674153363662674841476a514b6112fe8201527f73754a334451416a5235346d356a4c7a5a616e546c62646530253242726e663461131e8201527f385a574138546c32673277414779427748516e3552322532424e6a726542677861133e8201527f626c734e46627554776d6862414a48737a2f72416f61764c4f34317874767a5961135e8201527f4768336e4c4a426b41506a7578424a445248333048426575385567436978464e61137e8201527f437951322f4b253242385157372f6530253242664f2532423436524e5730657961139e8201527f4c726f39446a5467704a4e4d3547385179306c54644f756d73773066715045696113be8201527f393646702532424830634d774e6f376a787a596d6e4e664d5a6d64506c7932706113de8201527f6f7132575065476d67507136474c78504e34536c4b486e7870624f69754c58516113fe8201527f75583155715031676a6f38426136536c55314f416d5267707a7531735444584a61141e8201527f50754d3338546f387130344c324e777970653837327777556741675a6c70386461143e8201527f6b5166397a38544d43624d6b596b3758484375333564375a5a41656f346b5a4b61145e8201527f68784953386945354c546a334c4f6976485a7268394a3870337a4c5a436a776361147e8201527f6970354452694b6e576e49664c33386b4a684d7452776a67553525324256726d61149e8201527f714b6c6739307a376a64732f4238444b646b464c76483353253242376f4838616114be8201527f6c445a6c626734533155583574434d445342324f364b756c7a41344b763067376114de8201527f314251643054464b7733685358696e62374e6c304258725873514e6376436b386114fe8201527f6d6f394f786965783559627a78564e2f6b3738336f48545a495777393079495a61151e8201527f777672697164475473586e54384965705437597946434f4a6741395a3042794961153e8201527f455956735478522f6b73616b324268376f4b767034766e695530364d57317a4261155e8201527f4672746568647a306b6b587951786a426d7965645636644d596545386146787461157e8201527f6575777355466136466c6c54446c716430707a525a77473663467266574d627061159e8201527f384738587a6a66624d253242354658657076356f457273696c363458783663376115be8201527f5841576275696d3666387347494d58666f334a6971476b703333376854536a676115de8201527f65636862364f42472f327a31376a6f6d4469476d253242476c623146553069656115fe8201527f6e7552796977654c576767447a6d4655765545556a5a6f377356544877684f4661161e8201527f504d6b4e737146423977796d6b45307639666d7477453854377135384e594f3761163e8201527f787534623833766e46766c35755378446c472532426b4f51675249644f346a6761165e8201527f7a786a53486a4b4c7332742f6c684f647771766131415744437072763344345361167e8201527f34523741625934544362664b4637744265363554343551347a7a49714433316161169e8201527f79797557716a692532424636585337535439483943314f342f694b366b4775766116be8201527f6b512f664e3537487837456533373435622f76766e2f62482f58253242392f256116de8201527f32426762656d684f416d49705576755157757344764b517578394a44564e734b6116fe8201527f673651636d6b73515341445530346347524c523768466f5a326337785545664761171e8201527f253242776b755459474d764c6a422f6550634936416847686e5735717a45416961173e8201527f4a586377564545775869654e70536c317a6a457253253242435325324248634c61175e8201527f6f52506d7661324d6767412f69794c67536f544a555767733442794149514f3061177e8201527f4f6f705a487656627a6844494c65557155677a7a48492f667950474e7879777361179e8201527f6f796c6865534639577662795363336b4544716b32415636436c4364635535536117be8201527f6e6c4e6e4963394b794d63384c79622532423867484f4a795173466c4c6250526117de8201527f796d6d374a42743349545a544162314732444252496b514b51705451396939626117fe8201527f3665435353387a4d366161525364544b5657524d336663454a4c644b61746e7361181e8201527f724959774e4a55253242733048364461757832775a35686733706c653042474861183e8201527f756b316b4543734859446461496d4b7025324233463542317859763763486b7161185e8201527f644475306a4b645273657a3531376d63563641685148346931484e3173766c6a61187e8201527f5248366845454672682532426e72726d47316e33307a4d346749776d694d774561189e8201527f624b6842545564423141486f582532424b6741517a4f48543946494f71436b526118be8201527f4e4e623273397170496943534f753167576868497343564a73765771457175356118de8201527f47624a514b4e6a61427465394c4f69676368414a7665475773394332323033766118fe8201527f6f6e476c6b77725251323464646732796345646157554456734441785548734961191e8201527f77773665615234464665336d4a416b66426d5a6452395264774a485a6d47645261193e8201527f7950436a706a627a31712f584a34534949446b66384b4b6e6e32456c4b6d794c61195e8201527f69573442513836733151554b2f76426867524e776548766c5968687a7238706361197e8201527f67704b4b6d6f61576a7036426b594f48446c7835734b5647336365474539657661199e8201527f506e773563646667454242676f554946536238587632504553314772446a78456119be8201527f69524b6b697846716a54704d6d544b6b693148726a7a354368517155717845716119de8201527f544c6c4b6c53715571314772547231476a527130717846717a62744f6e5347656119fe8201527f3668374a6d627a4968355a6544696c315a58536a7430774375616b336c6e476f611a1e8201527f5655506f53734e663337394b326a6274716d44674d69485a42665a6c68324839611a3e8201527f75773738495469314a466a585653662f4336634f55667a346f30644178305447611a5e8201527f777448446863666a3443516d49694531444d5a42546b6c4e5a557065566f614f611a7e8201527f6e717633733234314e50503965766574594768435a50576a4979747332706173611a9e8201527f436a25324270556a54596c336b615574374f744b4a6136355850396d356e6367611abe8201527f364e686a685a587032762532426d57724341545a754a303368316b6a55756976611ade8201527f5067596e6a6e35744b4a4f6b326e6362703251414559585a69304b496d50356b611afe8201527f744961466e366b5a397743253237253239253230666f726d6174253238253237611b1e8201527f776f666632253237253239253342666f6e742d7765696768742533412532306e611b3e8201527f6f726d616c253342666f6e742d7374796c652533412532306e6f726d616c2533611b5e8201527f42666f6e742d646973706c617925334125323073776170253342253744746578611b7e8201527f74253230253742666f6e742d66616d696c792533412532302532375072657373611b9e8201527f2532305374617274253230325025323725334266696c6c253341253230776869611bbe8201527f74652537442e76616c7565253230253742666f6e742d73697a65253341253230611bde8201527f313070782533422537442e6e616d65253230253742666f6e742d73697a652533611bfe8201527f412532303470782533422537442533432f7374796c652533452533432f646566611c1e8201527f7325334525334372656374253230776964746825334425323738392532372532611c3e8201527f30686569676874253344253237353525323725323066696c6c25334425323762611c5e8201527f6c61636b2532372532302f253345253343726563742532307825334425323735611c7e8201527f2e3525323725323079253344253237352e352532372532307769647468253344611c9e8201527f2532373738253237253230686569676874253344253237343425323725323066611cbe8201527f696c6c2533442532372532333030303046462532372532302f25334525334374611cde8201527f657874253230746578742d616e63686f722533442532376d6964646c65253237611cfe8201527f2532307825334425323734342e35253237253230792533442532373333253237611d1e8201527f253230636c61737325334425323776616c756525323725334500000000000000611d3e820152612ba5612b9e6129f5611d5784018a61055b565b7f2533432f746578742533452533437265637425323078253344253237352e352581527f323725323079253344253237352e35253237253230776964746825334425323760208201527f373825323725323068656967687425334425323734342532372532307374726f60408201527f6b652533442532372532334646344630412532372532307374726f6b652d776960608201527f647468253344253237332532372532302f25334525334372656374253230782560808201527f334425323733302532372532307925334425323734352e35253237253230776960a08201527f647468253344253237353825323725323068656967687425334425323738253260c08201527f3725323066696c6c2533442532372532334646344630412532372532302f253360e08201527f4525334374657874253230746578742d616e63686f72253344253237656e64256101008201527f32372532307825334425323738372532372532307925334425323735322532376101208201527f253230636c6173732533442532376e616d6525323725334500000000000000006101408201526101580190565b86886105e3565b602160f81b81529050612bbb600182018561055b565b7f2533432f746578742533452533432f737667253345227d00000000000000000081526017019a995050505050505050505056fea26469706673582212206a2c00c13ddb4f1bcd7ee36e36f0c874d7d9dadcf38306eab3610b5a6e7af83464736f6c63430008110033", + "nonce": "0x2", + "accessList": [] + }, + "additionalContracts": [], + "isFixedGasLimit": false + }, + { + "hash": "0x3de75e0187d1300847016f9712d9bad87f0de9d06ecc20887ff85b8562563c90", + "transactionType": "CREATE", + "contractName": null, + "contractAddress": "0xCf7Ed3AccA5a467e9e704C703E8D87F634fB0Fc9", + "function": null, + "arguments": null, + "transaction": { + "type": "0x02", + "from": "0xf39fd6e51aad88f6f4ce6ab8827279cfffb92266", + "gas": "0x42230", + "value": "0x0", + "data": "0x608060405234801561001057600080fd5b506102cf806100206000396000f3fe608060405234801561001057600080fd5b506004361061004c5760003560e01c80630194db8e14610051578063072bdcc214610076578063a391c15b14610089578063b67d77c51461009c575b600080fd5b61006461005f366004610160565b6100af565b60405190815260200160405180910390f35b610064610084366004610160565b6100ef565b61006461009736600461021e565b610129565b6100646100aa36600461021e565b61013e565b600080805b83518110156100e8578381815181106100cf576100cf610240565b60200260200101518201915080806001019150506100b4565b5092915050565b60006001815b83518110156100e85783818151811061011057610110610240565b60200260200101518202915080806001019150506100f5565b60006101358284610256565b90505b92915050565b60006101358284610278565b634e487b7160e01b600052604160045260246000fd5b6000602080838503121561017357600080fd5b823567ffffffffffffffff8082111561018b57600080fd5b818501915085601f83011261019f57600080fd5b8135818111156101b1576101b161014a565b8060051b604051601f19603f830116810181811085821117156101d6576101d661014a565b6040529182528482019250838101850191888311156101f457600080fd5b938501935b82851015610212578435845293850193928501926101f9565b98975050505050505050565b6000806040838503121561023157600080fd5b50508035926020909101359150565b634e487b7160e01b600052603260045260246000fd5b60008261027357634e487b7160e01b600052601260045260246000fd5b500490565b8181038181111561013857634e487b7160e01b600052601160045260246000fdfea2646970667358221220fcdef23ba4219270ddb3ab764e22a87e229c05e6f1dfc4eeea983fa1a1dac91f64736f6c63430008110033", + "nonce": "0x3", + "accessList": [] + }, + "additionalContracts": [], + "isFixedGasLimit": false + }, + { + "hash": "0x9b429d2fd55ffc6fa8696728d353fd418da33819473cfb47ddf43569b706759b", + "transactionType": "CREATE", + "contractName": "Evmsheet", + "contractAddress": "0xDc64a140Aa3E981100a9becA4E685f962f0cF6C9", + "function": null, + "arguments": [ + "0x9fE46736679d2D9a65F0992F2272dE9f3c7fa6e0", + "10000000000000000" + ], + "transaction": { + "type": "0x02", + "from": "0xf39fd6e51aad88f6f4ce6ab8827279cfffb92266", + "gas": "0x34bf99", + "value": "0x0", + "data": "0x608060405234801561001057600080fd5b50604051612ed9380380612ed983398101604081905261002f916100b1565b61003833610061565b600280546001600160a01b0319166001600160a01b0393909316929092179091556001556100eb565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b600080604083850312156100c457600080fd5b82516001600160a01b03811681146100db57600080fd5b6020939093015192949293505050565b612ddf806100fa6000396000f3fe608060405260043610620000a95760003560e01c80638da5cb5b116200006c5780638da5cb5b146200016d578063ab2fa65a146200018d578063ae28505e14620001b4578063c56c4cf114620001d9578063f2fde38b14620001fb578063f52be2a2146200022057600080fd5b806303fb31e814620000ae5780631164c83d14620000d5578063145e414714620000ec5780635787cacb146200012e578063715018a61462000155575b600080fd5b348015620000bb57600080fd5b50620000d3620000cd36600462000778565b62000247565b005b620000d3620000e6366004620007e9565b62000273565b348015620000f957600080fd5b50620001116200010b36600462000864565b620004b2565b6040516001600160a01b0390911681526020015b60405180910390f35b3480156200013b57600080fd5b50620001466200054f565b60405162000125919062000891565b3480156200016257600080fd5b50620000d3620005b3565b3480156200017a57600080fd5b506000546001600160a01b031662000111565b3480156200019a57600080fd5b50620001a5620005cb565b604051620001259190620008e0565b348015620001c157600080fd5b5062000111620001d336600462000930565b620005f7565b348015620001e657600080fd5b5060025462000111906001600160a01b031681565b3480156200020857600080fd5b50620000d36200021a36600462000778565b62000622565b3480156200022d57600080fd5b506200023860015481565b60405190815260200162000125565b62000251620006a1565b600280546001600160a01b0319166001600160a01b0392909216919091179055565b60015434146200029d5760405163723a79e360e11b81523460048201526024015b60405180910390fd5b600060405180602001620002b1906200074d565b6020820181038252601f19601f8201166040525090506000828251602084016000f56002546040516356d3163d60e01b81526001600160a01b0391821660048201529192508216906356d3163d90602401600060405180830381600087803b1580156200031d57600080fd5b505af115801562000332573d6000803e3d6000fd5b505060405163c47f002760e01b81526001600160a01b038416925063c47f0027915062000366908a908a906004016200094a565b600060405180830381600087803b1580156200038157600080fd5b505af115801562000396573d6000803e3d6000fd5b5050604051635c26412360e11b81526001600160a01b038416925063b84c82469150620003ca90889088906004016200094a565b600060405180830381600087803b158015620003e557600080fd5b505af1158015620003fa573d6000803e3d6000fd5b505060405163f2fde38b60e01b81523260048201526001600160a01b038416925063f2fde38b9150602401600060405180830381600087803b1580156200044057600080fd5b505af115801562000455573d6000803e3d6000fd5b5050600380546001810182556000919091527fc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b0180546001600160a01b0319166001600160a01b0394909416939093179092555050505050505050565b600060ff60f81b838360405180602001620004cd906200074d565b6020820181038252601f19601f82011660405250805190602001206040516020016200053094939291906001600160f81b031994909416845260609290921b6bffffffffffffffffffffffff191660018401526015830152603582015260550190565b60408051601f1981840301815291905280516020909101209392505050565b60606003805480602002602001604051908101604052809291908181526020018280548015620005a957602002820191906000526020600020905b81546001600160a01b031681526001909101906020018083116200058a575b5050505050905090565b620005bd620006a1565b620005c96000620006fd565b565b606060405180602001620005df906200074d565b601f1982820381018352601f90910116604052919050565b600381815481106200060857600080fd5b6000918252602090912001546001600160a01b0316905081565b6200062c620006a1565b6001600160a01b038116620006935760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b606482015260840162000294565b6200069e81620006fd565b50565b6000546001600160a01b03163314620005c95760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015260640162000294565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b612430806200097a83390190565b80356001600160a01b03811681146200077357600080fd5b919050565b6000602082840312156200078b57600080fd5b62000796826200075b565b9392505050565b60008083601f840112620007b057600080fd5b50813567ffffffffffffffff811115620007c957600080fd5b602083019150836020828501011115620007e257600080fd5b9250929050565b6000806000806000606086880312156200080257600080fd5b853567ffffffffffffffff808211156200081b57600080fd5b6200082989838a016200079d565b909750955060208801359150808211156200084357600080fd5b5062000852888289016200079d565b96999598509660400135949350505050565b600080604083850312156200087857600080fd5b62000883836200075b565b946020939093013593505050565b6020808252825182820181905260009190848201906040850190845b81811015620008d45783516001600160a01b031683529284019291840191600101620008ad565b50909695505050505050565b600060208083528351808285015260005b818110156200090f57858101830151858201604001528201620008f1565b506000604082860101526040601f19601f8301168501019250505092915050565b6000602082840312156200094357600080fd5b5035919050565b60208152816020820152818360408301376000818301604090810191909152601f909201601f1916010191905056fe60806040523480156200001157600080fd5b50604051806040016040528060078152602001660536865657420360cc1b815250604051806040016040528060048152602001630534854360e41b81525062000069620000636200008f60201b60201c565b62000093565b600162000077838262000188565b50600262000086828262000188565b50505062000254565b3390565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b634e487b7160e01b600052604160045260246000fd5b600181811c908216806200010e57607f821691505b6020821081036200012f57634e487b7160e01b600052602260045260246000fd5b50919050565b601f8211156200018357600081815260208120601f850160051c810160208610156200015e5750805b601f850160051c820191505b818110156200017f578281556001016200016a565b5050505b505050565b81516001600160401b03811115620001a457620001a4620000e3565b620001bc81620001b58454620000f9565b8462000135565b602080601f831160018114620001f45760008415620001db5750858301515b600019600386901b1c1916600185901b1785556200017f565b600085815260208120601f198616915b82811015620002255788860151825594840194600190910190840162000204565b5085821015620002445787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b6121cc80620002646000396000f3fe608060405234801561001057600080fd5b50600436106102275760003560e01c8063715018a611610130578063b85d8b85116100b8578063cf0983981161007c578063cf09839814610512578063cfbe95d814610535578063df4ca20614610556578063e985e9c514610576578063f2fde38b146105a457600080fd5b8063b85d8b85146104a4578063b88d4fde146104ce578063b8c368ec146104e1578063c47f0027146104ec578063c87b56dd146104ff57600080fd5b806395d89b41116100ff57806395d89b4114610439578063a22cb46514610441578063b46ebb1214610454578063b6d658e114610467578063b84c82461461049157600080fd5b8063715018a6146103fa578063768d5029146104025780638ada6b0f146104155780638da5cb5b1461042857600080fd5b80631b06443c116101b35780634f6ccce7116101825780634f6ccce71461038157806356d3163d146103a15780636352211e146103b45780636a0abc74146103c757806370a08231146103e757600080fd5b80631b06443c14610335578063206848f61461034857806323b872dd1461035b57806342842e0e1461036e57600080fd5b8063081812fc116101fa578063081812fc146102a1578063095ea7b3146102e2578063172b9eed146102f757806318160ddd1461030a5780631941fd141461031357600080fd5b806301ffc9a71461022c57806302f3c4c91461025457806306fdde03146102745780630715a24a1461027c575b600080fd5b61023f61023a36600461176a565b6105b7565b60405190151581526020015b60405180910390f35b610267610262366004611861565b610609565b60405161024b9190611951565b610267610638565b6102936fffffffffffffffffffffffffffffffff81565b60405190815260200161024b565b6102ca6102af366004611964565b6005602052600090815260409020546001600160a01b031681565b6040516001600160a01b03909116815260200161024b565b6102f56102f036600461197d565b6106c6565b005b6102676103053660046119a9565b6107ad565b61029360075481565b610326610321366004611964565b610875565b60405161024b939291906119de565b6102ca610343366004611a0e565b61092a565b610326610356366004611964565b6109e3565b6102f5610369366004611a2b565b610ae1565b6102f561037c366004611a2b565b610ca8565b61029361038f366004611964565b60086020526000908152604090205481565b6102f56103af366004611a0e565b610da0565b6102ca6103c2366004611964565b610dca565b6103da6103d53660046119a9565b610e1c565b60405161024b9190611a6c565b6102936103f5366004611a0e565b610e60565b6102f5610ec3565b6102f5610410366004611af9565b610ed7565b6009546102ca906001600160a01b031681565b6000546001600160a01b03166102ca565b610267611035565b6102f561044f366004611b63565b611042565b610267610462366004611964565b6110ae565b61047a610475366004611964565b611258565b60408051921515835260208301919091520161024b565b6102f561049f366004611ba1565b611275565b6104b56104b2366004611964565b90565b6040516001600160e01b0319909116815260200161024b565b6102f56104dc366004611be3565b6112c6565b6102ca600160801b81565b6102f56104fa366004611ba1565b6113ae565b61026761050d366004611964565b6113ff565b61023f610520366004611a0e565b600160801b6001600160a01b03919091161090565b61023f610543366004611861565b516001600160a01b0316600160801b1490565b610569610564366004611964565b6114c9565b60405161024b9190611c16565b61023f610584366004611c4d565b600660209081526000928352604080842090915290825290205460ff1681565b6102f56105b2366004611a0e565b611526565b60006301ffc9a760e01b6001600160e01b0319831614806105e857506380ac58cd60e01b6001600160e01b03198316145b806106035750635b5e139f60e01b6001600160e01b03198316145b92915050565b6060816020015160405160200161062291815260200190565b6040516020818303038152906040529050919050565b6001805461064590611c7b565b80601f016020809104026020016040519081016040528092919081815260200182805461067190611c7b565b80156106be5780601f10610693576101008083540402835291602001916106be565b820191906000526020600020905b8154815290600101906020018083116106a157829003601f168201915b505050505081565b6000818152600360205260409020546001600160a01b03163381148061070f57506001600160a01b038116600090815260066020908152604080832033845290915290205460ff165b6107515760405162461bcd60e51b815260206004820152600e60248201526d1393d517d055551213d49256915160921b60448201526064015b60405180910390fd5b60008281526005602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b606060006107ba83610e1c565b9050606060005b825181101561086d576000806107ef8584815181106107e2576107e2611cb5565b6020026020010151611258565b9150915081156108335783610803826110ae565b61080c90611ccb565b60405160200161081d929190611cef565b6040516020818303038152906040529350610858565b6040516108469085908390602001611cef565b60405160208183030381529060405293505b5050808061086590611d27565b9150506107c1565b509392505050565b600a602052600090815260409020805460018201546002830180546001600160a01b039093169391926108a790611c7b565b80601f01602080910402602001604051908101604052809291908181526020018280546108d390611c7b565b80156109205780601f106108f557610100808354040283529160200191610920565b820191906000526020600020905b81548152906001019060200180831161090357829003601f168201915b5050505050905083565b6000600160801b6001600160a01b03831610156109da576000610955836001600160a01b03166110ae565b604051632d737e4960e21b8152909150735fbdb2315678afecb367f032d93f642f64180aa39063b5cdf92490610992908490600090600401611d40565b602060405180830381865af41580156109af573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906109d39190611d62565b9392505050565b5090565b919050565b60008181526003602052604081205481906060906001600160a01b0316610a1057600160801b9250610a2b565b6000848152600a60205260409020546001600160a01b031692505b6000848152600a60205260409020600181015460029091018054859291908190610a5490611c7b565b80601f0160208091040260200160405190810160405280929190818152602001828054610a8090611c7b565b8015610acd5780601f10610aa257610100808354040283529160200191610acd565b820191906000526020600020905b815481529060010190602001808311610ab057829003601f168201915b505050505090509250925092509193909250565b6000818152600360205260409020546001600160a01b03848116911614610b375760405162461bcd60e51b815260206004820152600a60248201526957524f4e475f46524f4d60b01b6044820152606401610748565b6001600160a01b038216610b815760405162461bcd60e51b81526020600482015260116024820152701253959053125117d49150d25412515395607a1b6044820152606401610748565b336001600160a01b0384161480610bbb57506001600160a01b038316600090815260066020908152604080832033845290915290205460ff165b80610bdc57506000818152600560205260409020546001600160a01b031633145b610c195760405162461bcd60e51b815260206004820152600e60248201526d1393d517d055551213d49256915160921b6044820152606401610748565b6001600160a01b0380841660008181526004602090815260408083208054600019019055938616808352848320805460010190558583526003825284832080546001600160a01b03199081168317909155600590925284832080549092169091559251849392917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b610cb3838383610ae1565b6001600160a01b0382163b1580610d5c5750604051630a85bd0160e11b8082523360048301526001600160a01b03858116602484015260448301849052608060648401526000608484015290919084169063150b7a029060a4016020604051808303816000875af1158015610d2c573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610d509190611d7b565b6001600160e01b031916145b610d9b5760405162461bcd60e51b815260206004820152601060248201526f155394d0519157d49150d2541251539560821b6044820152606401610748565b505050565b610da861159f565b600980546001600160a01b0319166001600160a01b0392909216919091179055565b6000818152600360205260409020546001600160a01b0316806109de5760405162461bcd60e51b815260206004820152600a6024820152691393d517d3525395115160b21b6044820152606401610748565b60608082516040519150602081048252602082016020850160005b83811015610e4f578181015183820152602001610e37565b505050810160200160405292915050565b60006001600160a01b038216610ea75760405162461bcd60e51b815260206004820152600c60248201526b5a45524f5f4144445245535360a01b6044820152606401610748565b506001600160a01b031660009081526004602052604090205490565b610ecb61159f565b610ed560006115f9565b565b6000858152600360205260409020546001600160a01b0316610f2f57610efd3286611649565b60078054600090815260086020526040812087905581546001929190610f24908490611d98565b90915550610f889050565b6000858152600360205260409020546001600160a01b03163214610f8857600085815260036020526040908190205490516324f3f02560e21b81526001600160a01b039091166004820152326024820152604401610748565b6040518060600160405280856001600160a01b0316815260200184815260200183838080601f0160208091040260200160405190810160405280939291908181526020018383808284376000920182905250939094525050878152600a6020908152604091829020845181546001600160a01b0319166001600160a01b0390911617815590840151600182015590830151909150600282019061102b9082611df9565b5050505050505050565b6002805461064590611c7b565b3360008181526006602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b6000818152600a6020908152604080832081516060818101845282546001600160a01b0316825260018301549482019490945260028201805494959491938401916110f890611c7b565b80601f016020809104026020016040519081016040528092919081815260200182805461112490611c7b565b80156111715780601f1061114657610100808354040283529160200191611171565b820191906000526020600020905b81548152906001019060200180831161115457829003601f168201915b505050505081525050905061119381516001600160a01b0316600160801b1490565b156111a1576109d381610609565b60006111b0826000015161092a565b905060006111bf836020015190565b905060006111d084604001516107ad565b90506000836001600160a01b031683836040516020016111f1929190611eb9565b60408051601f198184030181529082905261120b91611eea565b600060405180830381855afa9150503d8060008114611246576040519150601f19603f3d011682016040523d82523d6000602084013e61124b565b606091505b5098975050505050505050565b600080611266600284611f06565b60019081149493901c92915050565b61127d61159f565b7f8dca0271872d00b3de3abafca544c52fcd7d512dd852c9894fa2c118ac759a93600283836040516112b193929190611fce565b60405180910390a16002610d9b828483611ffe565b6112d1858585610ae1565b6001600160a01b0384163b15806113685750604051630a85bd0160e11b808252906001600160a01b0386169063150b7a02906113199033908a908990899089906004016120be565b6020604051808303816000875af1158015611338573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061135c9190611d7b565b6001600160e01b031916145b6113a75760405162461bcd60e51b815260206004820152601060248201526f155394d0519157d49150d2541251539560821b6044820152606401610748565b5050505050565b6113b661159f565b7fb65b7b5ea384affd30f77f842e057d29dd1b13f133adf69a724a8105b164ab75600183836040516113ea93929190611fce565b60405180910390a16001610d9b828483611ffe565b6000818152600360205260409020546060906001600160a01b03168061143b57604051630243d1a960e21b815260048101849052602401610748565b6000611446846110ae565b6009546040516328de0f2f60e01b81529192506001600160a01b0316906328de0f2f9061147c90879085906001906004016120fd565b600060405180830381865afa158015611499573d6000803e3d6000fd5b505050506040513d6000823e601f3d908101601f191682016040526114c19190810190612128565b949350505050565b604080516060808201835260008083526020830181905292820152906114ee836110ae565b6040805160608101825285815260009586526003602090815295829020546001600160a01b0316958101959095528401525090919050565b61152e61159f565b6001600160a01b0381166115935760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610748565b61159c816115f9565b50565b6000546001600160a01b03163314610ed55760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610748565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b6001600160a01b0382166116935760405162461bcd60e51b81526020600482015260116024820152701253959053125117d49150d25412515395607a1b6044820152606401610748565b6000818152600360205260409020546001600160a01b0316156116e95760405162461bcd60e51b815260206004820152600e60248201526d1053149150511657d3525395115160921b6044820152606401610748565b6001600160a01b038216600081815260046020908152604080832080546001019055848352600390915280822080546001600160a01b0319168417905551839291907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b6001600160e01b03198116811461159c57600080fd5b60006020828403121561177c57600080fd5b81356109d381611754565b634e487b7160e01b600052604160045260246000fd5b604051601f8201601f1916810167ffffffffffffffff811182821017156117c6576117c6611787565b604052919050565b6001600160a01b038116811461159c57600080fd5b600067ffffffffffffffff8211156117fd576117fd611787565b50601f01601f191660200190565b600082601f83011261181c57600080fd5b813561182f61182a826117e3565b61179d565b81815284602083860101111561184457600080fd5b816020850160208301376000918101602001919091529392505050565b60006020828403121561187357600080fd5b813567ffffffffffffffff8082111561188b57600080fd5b908301906060828603121561189f57600080fd5b6040516060810181811083821117156118ba576118ba611787565b60405282356118c8816117ce565b8152602083810135908201526040830135828111156118e657600080fd5b6118f28782860161180b565b60408301525095945050505050565b60005b8381101561191c578181015183820152602001611904565b50506000910152565b6000815180845261193d816020860160208601611901565b601f01601f19169290920160200192915050565b6020815260006109d36020830184611925565b60006020828403121561197657600080fd5b5035919050565b6000806040838503121561199057600080fd5b823561199b816117ce565b946020939093013593505050565b6000602082840312156119bb57600080fd5b813567ffffffffffffffff8111156119d257600080fd5b6114c18482850161180b565b60018060a01b0384168152826020820152606060408201526000611a056060830184611925565b95945050505050565b600060208284031215611a2057600080fd5b81356109d3816117ce565b600080600060608486031215611a4057600080fd5b8335611a4b816117ce565b92506020840135611a5b816117ce565b929592945050506040919091013590565b6020808252825182820181905260009190848201906040850190845b81811015611aa457835183529284019291840191600101611a88565b50909695505050505050565b60008083601f840112611ac257600080fd5b50813567ffffffffffffffff811115611ada57600080fd5b602083019150836020828501011115611af257600080fd5b9250929050565b600080600080600060808688031215611b1157600080fd5b853594506020860135611b23816117ce565b935060408601359250606086013567ffffffffffffffff811115611b4657600080fd5b611b5288828901611ab0565b969995985093965092949392505050565b60008060408385031215611b7657600080fd5b8235611b81816117ce565b915060208301358015158114611b9657600080fd5b809150509250929050565b60008060208385031215611bb457600080fd5b823567ffffffffffffffff811115611bcb57600080fd5b611bd785828601611ab0565b90969095509350505050565b600080600080600060808688031215611bfb57600080fd5b8535611c06816117ce565b94506020860135611b23816117ce565b602081528151602082015260018060a01b036020830151166040820152600060408301516060808401526114c16080840182611925565b60008060408385031215611c6057600080fd5b8235611c6b816117ce565b91506020830135611b96816117ce565b600181811c90821680611c8f57607f821691505b602082108103611caf57634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052603260045260246000fd5b80516020808301519190811015611caf5760001960209190910360031b1b16919050565b60008351611d01818460208801611901565b9190910191825250602001919050565b634e487b7160e01b600052601160045260246000fd5b600060018201611d3957611d39611d11565b5060010190565b604081526000611d536040830185611925565b90508260208301529392505050565b600060208284031215611d7457600080fd5b5051919050565b600060208284031215611d8d57600080fd5b81516109d381611754565b8082018082111561060357610603611d11565b601f821115610d9b57600081815260208120601f850160051c81016020861015611dd25750805b601f850160051c820191505b81811015611df157828155600101611dde565b505050505050565b815167ffffffffffffffff811115611e1357611e13611787565b611e2781611e218454611c7b565b84611dab565b602080601f831160018114611e5c5760008415611e445750858301515b600019600386901b1c1916600185901b178555611df1565b600085815260208120601f198616915b82811015611e8b57888601518255948401946001909101908401611e6c565b5085821015611ea95787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b6001600160e01b0319831681528151600090611edc816004850160208701611901565b919091016004019392505050565b60008251611efc818460208701611901565b9190910192915050565b600082611f2357634e487b7160e01b600052601260045260246000fd5b500690565b60008154611f3581611c7b565b808552602060018381168015611f525760018114611f6c57611f9a565b60ff1985168884015283151560051b880183019550611f9a565b866000528260002060005b85811015611f925781548a8201860152908301908401611f77565b890184019650505b505050505092915050565b81835281816020850137506000828201602090810191909152601f909101601f19169091010190565b604081526000611fe16040830186611f28565b8281036020840152611ff4818587611fa5565b9695505050505050565b67ffffffffffffffff83111561201657612016611787565b61202a836120248354611c7b565b83611dab565b6000601f84116001811461205e57600085156120465750838201355b600019600387901b1c1916600186901b1783556113a7565b600083815260209020601f19861690835b8281101561208f578685013582556020948501946001909201910161206f565b50868210156120ac5760001960f88860031b161c19848701351681555b505060018560011b0183555050505050565b6001600160a01b03868116825285166020820152604081018490526080606082018190526000906120f29083018486611fa5565b979650505050505050565b8381526060602082015260006121166060830185611925565b8281036040840152611ff48185611f28565b60006020828403121561213a57600080fd5b815167ffffffffffffffff81111561215157600080fd5b8201601f8101841361216257600080fd5b805161217061182a826117e3565b81815285602083850101111561218557600080fd5b611a0582602083016020860161190156fea26469706673582212203fc548aa4f22e6f4c01757ba3f2e0383630418b3d17601758718ab19a4d9918d64736f6c63430008110033a26469706673582212207932e8c793f9a96d9606a8907a6671f54c0fb1ed5a763048e13b429274e7706c64736f6c634300081100330000000000000000000000009fe46736679d2d9a65f0992f2272de9f3c7fa6e0000000000000000000000000000000000000000000000000002386f26fc10000", + "nonce": "0x4", + "accessList": [] + }, + "additionalContracts": [], + "isFixedGasLimit": false + } + ], + "receipts": [ + { + "transactionHash": "0x96675b77fd244a9feb082dbcbe59cb321504f8e4f72a8063dad6a46a9706fceb", + "transactionIndex": "0x0", + "blockHash": "0xbd57851ec24f25fbba66542ec0ca4fe13ff717b6ea340b1382a34c734e004049", + "blockNumber": "0x1", + "from": "0xf39Fd6e51aad88F6F4ce6aB8827279cffFb92266", + "to": null, + "cumulativeGasUsed": "0xf072b", + "gasUsed": "0xf072b", + "contractAddress": "0x5FbDB2315678afecb367f032d93F642f64180aa3", + "logs": [], + "status": "0x1", + "logsBloom": "0x00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", + "type": "0x2", + "effectiveGasPrice": "0xee6b2800" + }, + { + "transactionHash": "0x3eed361770e2dcc9a97a4cdf1a955543fd69a6096e37bb0e257a7208a08c6dde", + "transactionIndex": "0x0", + "blockHash": "0x9e8bdde3511c4d72fb87f05f7e67bb5b75adb6bd10e9d401dbf70cbb41b15331", + "blockNumber": "0x2", + "from": "0xf39Fd6e51aad88F6F4ce6aB8827279cffFb92266", + "to": null, + "cumulativeGasUsed": "0x23ab5", + "gasUsed": "0x23ab5", + "contractAddress": "0xe7f1725E7734CE288F8367e1Bb143E90bb3F0512", + "logs": [], + "status": "0x1", + "logsBloom": "0x00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", + "type": "0x2", + "effectiveGasPrice": "0xe7750a7c" + }, + { + "transactionHash": "0xfa26a5b6e297a0b5aa632035548d06ea04efb783d4713353476f25876c532b2a", + "transactionIndex": "0x1", + "blockHash": "0x9e8bdde3511c4d72fb87f05f7e67bb5b75adb6bd10e9d401dbf70cbb41b15331", + "blockNumber": "0x2", + "from": "0xf39Fd6e51aad88F6F4ce6aB8827279cffFb92266", + "to": null, + "cumulativeGasUsed": "0x2851b2", + "gasUsed": "0x2616fd", + "contractAddress": "0x9fE46736679d2D9a65F0992F2272dE9f3c7fa6e0", + "logs": [], + "status": "0x1", + "logsBloom": "0x00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", + "type": "0x2", + "effectiveGasPrice": "0xe7750a7c" + }, + { + "transactionHash": "0x3de75e0187d1300847016f9712d9bad87f0de9d06ecc20887ff85b8562563c90", + "transactionIndex": "0x2", + "blockHash": "0x9e8bdde3511c4d72fb87f05f7e67bb5b75adb6bd10e9d401dbf70cbb41b15331", + "blockNumber": "0x2", + "from": "0xf39Fd6e51aad88F6F4ce6aB8827279cffFb92266", + "to": null, + "cumulativeGasUsed": "0x2b7fe0", + "gasUsed": "0x32e2e", + "contractAddress": "0xCf7Ed3AccA5a467e9e704C703E8D87F634fB0Fc9", + "logs": [], + "status": "0x1", + "logsBloom": "0x00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", + "type": "0x2", + "effectiveGasPrice": "0xe7750a7c" + }, + { + "transactionHash": "0x9b429d2fd55ffc6fa8696728d353fd418da33819473cfb47ddf43569b706759b", + "transactionIndex": "0x0", + "blockHash": "0xb47c459d1f284a560b6dc6718cb14c3acf9891d2403f4ebfc565111dd5fbb054", + "blockNumber": "0x3", + "from": "0xf39Fd6e51aad88F6F4ce6aB8827279cffFb92266", + "to": null, + "cumulativeGasUsed": "0x289654", + "gasUsed": "0x289654", + "contractAddress": "0xDc64a140Aa3E981100a9becA4E685f962f0cF6C9", + "logs": [ + { + "address": "0xDc64a140Aa3E981100a9becA4E685f962f0cF6C9", + "topics": [ + "0x8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0", + "0x0000000000000000000000000000000000000000000000000000000000000000", + "0x000000000000000000000000f39fd6e51aad88f6f4ce6ab8827279cfffb92266" + ], + "data": "0x", + "blockHash": "0xb47c459d1f284a560b6dc6718cb14c3acf9891d2403f4ebfc565111dd5fbb054", + "blockNumber": "0x3", + "transactionHash": "0x9b429d2fd55ffc6fa8696728d353fd418da33819473cfb47ddf43569b706759b", + "transactionIndex": "0x0", + "logIndex": "0x0", + "transactionLogIndex": "0x0", + "removed": false + } + ], + "status": "0x1", + "logsBloom": "0x00000000000000000000000000000000000000000000000000800000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000020000000000000100000800000000000000000000000000000000400000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000200000000000000000000000002020000000000000000020000000000000000000000000000000000000000001000000000100000000000000", + "type": "0x2", + "effectiveGasPrice": "0xe2209da4" + } + ], + "libraries": [ + "lib/eth-projects-monorepo/packages/eth-projects-contracts/contracts/lib/utils/Bytes.sol:Bytes:0x5fbdb2315678afecb367f032d93f642f64180aa3" + ], + "pending": [], + "returns": {}, + "timestamp": 1689251404, + "chain": 31337, + "multi": false, + "commit": "f1cde46" +} \ No newline at end of file diff --git a/packages/starksheet-solidity/broadcast/Evmsheet.s.sol/31337/run-1689251543.json b/packages/starksheet-solidity/broadcast/Evmsheet.s.sol/31337/run-1689251543.json new file mode 100644 index 00000000..05776fda --- /dev/null +++ b/packages/starksheet-solidity/broadcast/Evmsheet.s.sol/31337/run-1689251543.json @@ -0,0 +1,209 @@ +{ + "transactions": [ + { + "hash": "0x5cac3da162b19699231de6732e03bc790e5e7548719a7582522d0bcc9b04ee89", + "transactionType": "CREATE", + "contractName": "Bytes", + "contractAddress": "0x5FC8d32690cc91D4c39d9d3abcBD16989F875707", + "function": null, + "arguments": null, + "transaction": { + "type": "0x02", + "from": "0xf39fd6e51aad88f6f4ce6ab8827279cfffb92266", + "gas": "0x1387ed", + "data": "0x6110d661003a600b82828239805160001a60731461002d57634e487b7160e01b600052600060045260246000fd5b30600052607381538281f3fe73000000000000000000000000000000000000000030146080604052600436106101625760003560e01c8063a5eb31ee116100cd578063d1ffb56111610086578063d1ffb561146103fb578063d442584f1461042b578063e004139614610454578063f1142fb314610474578063f647f8fb14610487578063f83b670f146104b257600080fd5b8063a5eb31ee14610344578063a8d8f00f1461036b578063b5cdf92414610396578063b63711df146103a9578063be8b3430146103bc578063c29616bd146103cf57600080fd5b80635ef849301161011f5780635ef8493014610241578063913c97b41461026b57806397e6175c1461029f57806399dd9bd7146102cb5780639ae4c3d1146102ec5780639cee499e1461031857600080fd5b8063042aa0841461016757806305d3bb74146101985780631a7431ef146101c0578063235266d2146101e357806348137709146101f65780634d66a2ae1461021b575b600080fd5b61017a610175366004610ec0565b6104de565b6040516001600160d01b031990911681526020015b60405180910390f35b6101ab6101a6366004610ec0565b610540565b60405163ffffffff909116815260200161018f565b6101d36101ce366004610f05565b61059d565b604051901515815260200161018f565b6101d36101f1366004610f4c565b610652565b610209610204366004610ec0565b6106b5565b60405160ff909116815260200161018f565b61022e610229366004610fa6565b610711565b60405161ffff909116815260200161018f565b61025461024f366004610ec0565b61071e565b60405165ffffffffffff909116815260200161018f565b61027e610279366004610ec0565b610772565b6040516fffffffffffffffffffffffffffffffff909116815260200161018f565b6102b26102ad366004610ec0565b6107d0565b6040516001600160a01b0319909116815260200161018f565b6102de6102d9366004610ec0565b61082e565b60405190815260200161018f565b6102ff6102fa366004610ec0565b61088c565b60405167ffffffffffffffff909116815260200161018f565b61032b610326366004610ec0565b6108e9565b6040516001600160d81b0319909116815260200161018f565b610357610352366004610ec0565b610946565b60405162ffffff909116815260200161018f565b61037e610379366004610ec0565b6109a3565b60405166ffffffffffffff909116815260200161018f565b6102de6103a4366004610ec0565b610a00565b6102ff6103b7366004610ec0565b610a55565b61022e6103ca366004610ec0565b610aa9565b6103e26103dd366004610ec0565b610b06565b6040516001600160c81b0319909116815260200161018f565b61040e610409366004610ec0565b610b5a565b6040516bffffffffffffffffffffffff909116815260200161018f565b61043e610439366004610ec0565b610bae565b60405164ffffffffff909116815260200161018f565b610467610462366004610fe3565b610c02565b60405161018f9190611031565b6102b2610482366004610ec0565b610d0f565b61049a610495366004610ec0565b610d64565b6040516001600160a01b03909116815260200161018f565b6104c56104c0366004610ec0565b610dc9565b6040516001600160f81b0319909116815260200161018f565b60006104eb82600661107f565b835110156105375760405162461bcd60e51b8152602060048201526014602482015273746f4279746573365f6f75744f66426f756e647360601b60448201526064015b60405180910390fd5b50016006015190565b600061054d82600461107f565b835110156105945760405162461bcd60e51b8152602060048201526014602482015273746f55696e7433325f6f75744f66426f756e647360601b604482015260640161052e565b50016004015190565b600080600190508354600260018083161561010002038216048451808214600181146105cc5760009450610644565b821561064457602083106001811461062957600189600052602060002060208a018581015b600284828410010361062057815183541461060f5760009950600093505b6001830192506020820191506105f1565b50505050610642565b6101008086040294506020880151851461064257600095505b505b509293505050505b92915050565b81518151600091600191811480831461066e57600092506106ab565b600160208701838101602088015b60028483851001036106a657805183511461069a5760009650600093505b6020928301920161067c565b505050505b5090949350505050565b60006106c282600161107f565b835110156107085760405162461bcd60e51b8152602060048201526013602482015272746f55696e74385f6f75744f66426f756e647360681b604482015260640161052e565b50016001015190565b600061064c826000610aa9565b600061072b82600661107f565b835110156105375760405162461bcd60e51b8152602060048201526014602482015273746f55696e7434385f6f75744f66426f756e647360601b604482015260640161052e565b600061077f82601061107f565b835110156107c75760405162461bcd60e51b8152602060048201526015602482015274746f55696e743132385f6f75744f66426f756e647360581b604482015260640161052e565b50016010015190565b60006107dd82600c61107f565b835110156108255760405162461bcd60e51b8152602060048201526015602482015274746f427974657331325f6f75744f66426f756e647360581b604482015260640161052e565b5001600c015190565b600061083b82602061107f565b835110156108835760405162461bcd60e51b8152602060048201526015602482015274746f427974657333325f6f75744f66426f756e647360581b604482015260640161052e565b50016020015190565b600061089982600861107f565b835110156108e05760405162461bcd60e51b8152602060048201526014602482015273746f55696e7436345f6f75744f66426f756e647360601b604482015260640161052e565b50016008015190565b60006108f682600561107f565b8351101561093d5760405162461bcd60e51b8152602060048201526014602482015273746f4279746573355f6f75744f66426f756e647360601b604482015260640161052e565b50016005015190565b600061095382600361107f565b8351101561099a5760405162461bcd60e51b8152602060048201526014602482015273746f55696e7432345f6f75744f66426f756e647360601b604482015260640161052e565b50016003015190565b60006109b082600761107f565b835110156109f75760405162461bcd60e51b8152602060048201526014602482015273746f55696e7435365f6f75744f66426f756e647360601b604482015260640161052e565b50016007015190565b6000610a0d82602061107f565b835110156108835760405162461bcd60e51b8152602060048201526015602482015274746f55696e743235365f6f75744f66426f756e647360581b604482015260640161052e565b6000610a6282600861107f565b835110156108e05760405162461bcd60e51b8152602060048201526014602482015273746f4279746573385f6f75744f66426f756e647360601b604482015260640161052e565b6000610ab682600261107f565b83511015610afd5760405162461bcd60e51b8152602060048201526014602482015273746f55696e7431365f6f75744f66426f756e647360601b604482015260640161052e565b50016002015190565b6000610b1382600761107f565b835110156109f75760405162461bcd60e51b8152602060048201526014602482015273746f4279746573375f6f75744f66426f756e647360601b604482015260640161052e565b6000610b6782600c61107f565b835110156108255760405162461bcd60e51b8152602060048201526014602482015273746f55696e7439365f6f75744f66426f756e647360601b604482015260640161052e565b6000610bbb82600561107f565b8351101561093d5760405162461bcd60e51b8152602060048201526014602482015273746f55696e7434305f6f75744f66426f756e647360601b604482015260640161052e565b606081610c1081601f61107f565b1015610c4f5760405162461bcd60e51b815260206004820152600e60248201526d736c6963655f6f766572666c6f7760901b604482015260640161052e565b610c59828461107f565b84511015610c9d5760405162461bcd60e51b8152602060048201526011602482015270736c6963655f6f75744f66426f756e647360781b604482015260640161052e565b606082158015610cbc5760405191506000825260208201604052610d06565b6040519150601f8416801560200281840101858101878315602002848b0101015b81831015610cf5578051835260209283019201610cdd565b5050858452601f01601f1916604052505b50949350505050565b6000610d1c82601061107f565b835110156107c75760405162461bcd60e51b8152602060048201526015602482015274746f427974657331365f6f75744f66426f756e647360581b604482015260640161052e565b6000610d7182601461107f565b83511015610db95760405162461bcd60e51b8152602060048201526015602482015274746f416464726573735f6f75744f66426f756e647360581b604482015260640161052e565b500160200151600160601b900490565b6000610dd682600161107f565b835110156107085760405162461bcd60e51b8152602060048201526014602482015273746f4279746573315f6f75744f66426f756e647360601b604482015260640161052e565b634e487b7160e01b600052604160045260246000fd5b600082601f830112610e4457600080fd5b813567ffffffffffffffff80821115610e5f57610e5f610e1d565b604051601f8301601f19908116603f01168101908282118183101715610e8757610e87610e1d565b81604052838152866020858801011115610ea057600080fd5b836020870160208301376000602085830101528094505050505092915050565b60008060408385031215610ed357600080fd5b823567ffffffffffffffff811115610eea57600080fd5b610ef685828601610e33565b95602094909401359450505050565b60008060408385031215610f1857600080fd5b82359150602083013567ffffffffffffffff811115610f3657600080fd5b610f4285828601610e33565b9150509250929050565b60008060408385031215610f5f57600080fd5b823567ffffffffffffffff80821115610f7757600080fd5b610f8386838701610e33565b93506020850135915080821115610f9957600080fd5b50610f4285828601610e33565b600060208284031215610fb857600080fd5b813567ffffffffffffffff811115610fcf57600080fd5b610fdb84828501610e33565b949350505050565b600080600060608486031215610ff857600080fd5b833567ffffffffffffffff81111561100f57600080fd5b61101b86828701610e33565b9660208601359650604090950135949350505050565b600060208083528351808285015260005b8181101561105e57858101830151858201604001528201611042565b506000604082860101526040601f19601f8301168501019250505092915050565b8082018082111561064c57634e487b7160e01b600052601160045260246000fdfea26469706673582212205bdf5bc4551862519f5370e0dcec38eefbbbe11b6a5bf19ce2846b4f8831a5dc64736f6c63430008110033", + "nonce": "0x5", + "accessList": [] + }, + "additionalContracts": [], + "isFixedGasLimit": false + }, + { + "hash": "0xb71ef3829ce1ee3200a97a4837b686aad5ca8254280065506af35bfa2b857d3b", + "transactionType": "CREATE", + "contractName": "MultiSendCallOnly", + "contractAddress": "0x0165878A594ca255338adfa4d48449f69242Eb8F", + "function": null, + "arguments": null, + "transaction": { + "type": "0x02", + "from": "0xf39fd6e51aad88f6f4ce6ab8827279cfffb92266", + "gas": "0x2e5c4", + "value": "0x0", + "data": "0x608060405234801561001057600080fd5b506101ae806100206000396000f3fe60806040526004361061001e5760003560e01c80638d80ff0a14610023575b600080fd5b6100366100313660046100c7565b610038565b005b805160205b818110156100ac578083015160f81c6001820184015160601c601583018501516035840186015160558501870160008560008114610082576001811461001e5761008e565b6000808585888a5af191505b508061009957600080fd5b505080605501850194505050505061003d565b505050565b634e487b7160e01b600052604160045260246000fd5b6000602082840312156100d957600080fd5b813567ffffffffffffffff808211156100f157600080fd5b818401915084601f83011261010557600080fd5b813581811115610117576101176100b1565b604051601f8201601f19908116603f0116810190838211818310171561013f5761013f6100b1565b8160405282815287602084870101111561015857600080fd5b82602086016020830137600092810160200192909252509594505050505056fea2646970667358221220c15490bbb756a4c3c49d6335b2e81d2d098647b0ea70174c2279f199b1d0800364736f6c63430008110033", + "nonce": "0x6", + "accessList": [] + }, + "additionalContracts": [], + "isFixedGasLimit": false + }, + { + "hash": "0x52fc279ffecab05b9ad87066e55f662df43c6c0114610bbfdcf976feec6e493b", + "transactionType": "CREATE", + "contractName": "BasicCellRenderer", + "contractAddress": "0xa513E6E4b8f2a923D98304ec87F64353C4D5C853", + "function": null, + "arguments": null, + "transaction": { + "type": "0x02", + "from": "0xf39fd6e51aad88f6f4ce6ab8827279cfffb92266", + "gas": "0x3180ad", + "value": "0x0", + "data": "0x608060405234801561001057600080fd5b50612c25806100206000396000f3fe608060405234801561001057600080fd5b50600436106100365760003560e01c806306d4cd8b1461003b57806328de0f2f14610064575b600080fd5b61004e610049366004610322565b610077565b60405161005b919061038b565b60405180910390f35b61004e610072366004610404565b6100f1565b60606000610086600f846104fc565b90506000610095600f8361051e565b61009f9085610535565b905060006100ae826041610548565b60f81b9050806100c76100c2856001610548565b6101b6565b6040516020016100d8929190610577565b6040516020818303038152906040529350505050919050565b606060006100fe86610077565b905083838261018388735fc8d32690cc91d4c39d9d3abcbd16989f87570763b5cdf924909160006040518363ffffffff1660e01b81526004016101429291906105a8565b602060405180830381865af415801561015f573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906100c291906105ca565b87878660405160200161019c97969594939291906105f2565b604051602081830303815290604052915050949350505050565b606060006101c383610249565b600101905060008167ffffffffffffffff8111156101e3576101e36103a5565b6040519080825280601f01601f19166020018201604052801561020d576020820181803683370190505b5090508181016020015b600019016f181899199a1a9b1b9c1cb0b131b232b360811b600a86061a8153600a850494508461021757509392505050565b60008072184f03e93ff9f4daa797ed6e38ed64bf6a1f0160401b83106102885772184f03e93ff9f4daa797ed6e38ed64bf6a1f0160401b830492506040015b6d04ee2d6d415b85acef810000000083106102b4576d04ee2d6d415b85acef8100000000830492506020015b662386f26fc1000083106102d257662386f26fc10000830492506010015b6305f5e10083106102ea576305f5e100830492506008015b61271083106102fe57612710830492506004015b60648310610310576064830492506002015b600a831061031c576001015b92915050565b60006020828403121561033457600080fd5b5035919050565b60005b8381101561035657818101518382015260200161033e565b50506000910152565b6000815180845261037781602086016020860161033b565b601f01601f19169290920160200192915050565b60208152600061039e602083018461035f565b9392505050565b634e487b7160e01b600052604160045260246000fd5b60008083601f8401126103cd57600080fd5b50813567ffffffffffffffff8111156103e557600080fd5b6020830191508360208285010111156103fd57600080fd5b9250929050565b6000806000806060858703121561041a57600080fd5b84359350602085013567ffffffffffffffff8082111561043957600080fd5b818701915087601f83011261044d57600080fd5b81358181111561045f5761045f6103a5565b604051601f8201601f19908116603f01168101908382118183101715610487576104876103a5565b816040528281528a60208487010111156104a057600080fd5b8260208601602083013760006020848301015280975050505060408701359150808211156104cd57600080fd5b506104da878288016103bb565b95989497509550505050565b634e487b7160e01b600052601160045260246000fd5b60008261051957634e487b7160e01b600052601260045260246000fd5b500490565b808202811582820484141761031c5761031c6104e6565b8181038181111561031c5761031c6104e6565b8082018082111561031c5761031c6104e6565b6000815161056d81856020860161033b565b9290920192915050565b6001600160f81b031983168152815160009061059a81600185016020870161033b565b919091016001019392505050565b6040815260006105bb604083018561035f565b90508260208301529392505050565b6000602082840312156105dc57600080fd5b5051919050565b81818437506000910190815290565b7f646174613a6170706c69636174696f6e2f6a736f6e2c7b22646573637269707481527f696f6e223a2022537461726b7368656574222c20226e616d65223a202200000060208201528688603d8301376000878201602160f81b603d820152875161066481603e840160208c0161033b565b7f222c22696d616765223a2022646174613a696d6167652f7376672b786d6c2c25603e92909101918201527f334373766725323076696577426f782533442532373025323030253230383925605e8201527f3230353525323725323066696c6c2533442532376e6f6e65253237253230786d607e8201527f6c6e73253344253237687474702533412f2f7777772e77332e6f72672f323030609e8201527f302f737667253237253345253343646566732533452533437374796c6525334560be8201527f253430666f6e742d66616365253230253742666f6e742d66616d696c7925334160de8201527f253230253237507265737325323053746172742532303250253237253342737260fe8201527f6325334125323075726c25323825323764617461253341666f6e742f776f666661011e8201527f32253342626173653634253243643039474d6741424141414141424c3841413861013e8201527f41414141415235774141424b674141454141414141414141414141414141414161015e8201527f4141414141414141414141414150305a4756453063476a41624d42794358675a61017e8201527f6741494e794551674b3846545361517544524141424e67496b41344e4d42434161019e8201527f46687a5148684649623644566c42306a314f4d4253336f4f4953744562732f2f6101be8201527f2f6c4a776356727a47634f30676f684c45484d6369694443434e57695a6761306101de8201527f79625345555954514f6a4b427038546c737a7344526438716174586c333058746101fe8201527f30645a47467952305668444b776c62746c25324272734643773945316e64655961021e8201527f4a74732f37527762305673784d71576c636a6a775445537a2f5568752f77337361023e8201527f33746b6f496d70343464515168576f456d54337579526d70746f7553446b7a5761025e8201527f454138762f3932364a4b7539486f696e6e3673376674336d4965476c7737547161027e8201527f6437456f326a46517849766a5642494a70563269614f62547a68575932314e7461029e8201527f476772687434704d4b3457556a34624c7967542f51253242514c7879253242336102be8201527f6c482f362f6b6275496444497239446a724a496a6f394a7336524d58253242456102de8201527f6b37424f545a6b6d70397a347455524652566656307148504448375a7462364a6102fe8201527f616f6130684c335975616232473373667a72365776394536793569767025324261031e8201527f7135564c74426a514478476f5345304150313762336466376c61726a6525324261033e8201527f73637a6b7241744a334b6657304a342532424b323365744b4b556a383554616f61035e8201527f57473453346158436c427743413268676141652532423658396f696e32304e6261037e8201527f554a7264466767517049686d5247494d30372f7025324277375a7058316c473161039e8201527f6a6a51787073435141423438714445415042346950312f6a39592f4261686a356103be8201527f5943414e302f78714157496852616a6c6e694e654f50396e78433466667932556103de8201527f694843304e47386b686f6f567a6f7459334445417a417a41356b473735337a6a6103fe8201527f4853354d6e6d586b69496a6d54554d36556d4d3025324256346976752f48377861041e8201527f6a364666322f6b343472787a6449324141676742492f4c48416b394a7a35554d61043e8201527f496f4c7755344146455435725a464f33444d616655633061777351434879497061045e8201527f557a546b30784a474a454f6a4e6871436b474570496153474f6a714e466d2f5761047e8201527f4e434e3569636b71434d6e414165564c4d4c655867356971386b365752585a5261049e8201527f326c337042393831427a73475a743225324256696c4342723954494a674b67786104be8201527f365542514446253242566a4b44714e7741414948386a6949664d6e75384b68666104de8201527f584b486f4e3348634134477245786842324155442f795a554d423857547579496104fe8201527f413444634f4b656434397939504249616e426967734d454e38556b30766c547661051e8201527f304a58334e394d795a75544d763573655357413525324238556538504465547261053e8201527f645467474973566d4e33635856586a6463795275633434385866664176506e7361055e8201527f3575324d4531722532426a4731703137767a3849704f416e483444427367793361057e8201527f512f54376b33646d2f3846334232377355694877464631414f6c683055646e4961059e8201527f4471494e5164506355393145786f2f346252696a6a5169704e4e307a4c646c7a6105be8201527f504438496f547449734c38717162746f4f5149514a5a567849705931315073536105de8201527f55533231397a4c585066642f507667765751346372464d2532425769755671706105fe8201527f645a6f4e6475645872632f4745324d4a36656e3575635746694763375274364f61061e8201527f487676354d674c2532427a44733578444277696141315433554877326b63594361063e8201527f312f55666453316645316d37763742346537653350574848786533594f32483561065e8201527f25324241504f5a7965503025324251506553425468793078713965363241486a61067e8201527f6141556842432f364144484c6f476f4f657636412532426867487369317a613861069e8201527f71355a4e4d716a596c575a4d713867354248445574495370574a73526f52544a6106be8201527f56613049305a3957546b5371564b73507a3464586a7648746449684c6e7670746106de8201527f554c4330753542567579414d544b4a513930594b5267546e5769476b6d7153456106fe8201527f714b6d7256685259674b6b335443686255573671456f45637665577a6859535461071e8201527f4c32484e706735452f6d7151393956564467763352475435586d33637a68754c61073e8201527f3972685864316132372f736c5130686959366a643739614f5a43746a6f52687261075e8201527f623136575676514b725734477a786a7869723238494d697a2f7155447973495761077e8201527f7037516a667765347a556437614a735651575179524c554b484b42577938577661079e8201527f45565333584d53353656337757644f442532424638757639645477496d4b722f6107be8201527f5064626d5763775176456641616a7975566a70784e32704f56635769336c38776107de8201527f454c2f6d395070646f55494536253242504b5838315041546d67654f304231736107fe8201527f47454825324261707a353466646d534a7a333741686635366a4c7739756e504561081e8201527f35644d4b3025324237544639563843435466523979664e7355493474557a464661083e8201527f42326e536e384b4f626a64446964554c7034494a6873777878595172595a643661085e8201527f4e76436e55394d445825324252654c6e4d546d6c315a453972306b5077334e3261087e8201527f6752253242736a4573596d4953706b356c31497333594e614a4b6f6e7a65703761089e8201527f56637354316e556b62347048774b5a41796b614b6f43504630506f6d456876496108be8201527f5758656e6f5a767836774f4b313070316c3274546858793850316555776473766108de8201527f53715157766f424d7473674851554a614774494273756861776450545a5378596108fe8201527f707257757734647a7231564755744449465871726f4d4d69597346783857695461091e8201527f336463574b6f376d50554c79715657413972305974524a4c626957766a6e4c2561093e8201527f324272633452646767624e516c514141613264306d616236364d48447074314361095e8201527f6477626b51436253375053445a4d7a3746724f51713165636153304a6c74644161097e8201527f6c44527941587173364130586247707748676b70367572557757416272464d3361099e8201527f75794d764e4b6c344d6c435548537950416d3931776144454a3559595148754a6109be8201527f4d32304b575251737637486b61334770686c533258444b714f4b4245554753316109de8201527f65306b63316f323449494166486c4449794278584a4a656767423369386174566109fe8201527f67434f3064444f5a484a57596a564c416a6a397137765673456e72684b374568610a1e8201527f4c75427a42586d4d674554634531636d61436976504b6f4a766670466c794935610a3e8201527f4d70584234454325324245672f596d303454787843354e6c73596b74646f5951610a5e8201527f55656c38624673456c3748345a36734377622f38626b347458574658504b6a71610a7e8201527f5462526e64336e4c5770394f784941706c664b586747684e6c72443462354a4c610a9e8201527f5a367055753441726756614d366561357844574244476f7a707a4641376e6747610abe8201527f74596334486141775269475576637653653652414177335a576b564f4667764b610ade8201527f46364955696c4d49394964715155345134585264484866736666517770313955610afe8201527f434a49306a5773725433356f5578303678507268473271364d4533554f306c63610b1e8201527f635a557354454351784a44527854444b6c334c4948722f6162546f73686c6466610b3e8201527f51786a364f57745273466e6966444373473674336b426f344e6d424a6d615556610b5e8201527f54636c794951414a4c6a6e723042365a3859464d6e396b397967703752727848610b7e8201527f36766877624a4e41654b4d554436353974386746514a4d5377652f434f624850610b9e8201527f467671484746554e5266253242737245663354584b42725a76676b6369396972610bbe8201527f426d63442f7458616754474358634e68432532424f3539754c706e6673796f71610bde8201527f4c53313238374552776d38666165564f6d3857634437386c5a36594232793938610bfe8201527f5a4c6c4d3972557264324c514e6c324956643454727376675139363079377573610c1e8201527f5965306854506170576a71726c2532425837784665424e54253242315a644a4a610c3e8201527f572532424678745737584e7774634e7a7761672532425256656a6d4a6839656d610c5e8201527f6c495a4b69694e63694b3849554f4d33556a4a376342554e5847505853326c68610c7e8201527f253242687770676f4836567348524f63764569723372585970344c7769435a77610c9e8201527f3176486c43623552314d68623564536e4f326d6e6f475a6f5846315765574757610cbe8201527f6d7a694a314a555534715072306e694a536c4e424331636b4b6d4a6657625877610cde8201527f5577757449547a456d6a776770776142753464525066746a2f4e384143526e64610cfe8201527f616b2f4641674b674c37305058577839767a6b59322532426d34355473496b4c610d1e8201527f3037616f70444e6f676830535262535a534f397a744657516a376e574c676275610d3e8201527f364325324254374b6a44715a3667456e5277674d78306b4c5a77797962514f76610d5e8201527f514130773054782f354a42722f63595a6453574f546a774446364e6f586b796a610d7e8201527f33566a484e4751494e76426a5a734a4a3377466141516d6f5a575a5970416961610d9e8201527f574f466e6e686455524176576b557a77693062677a5a4158796f445545714863610dbe8201527f57307069454c574f777168773365765478444957724e32495371525151454c41610dde8201527f4d32365334486c723548552f48784a43436844424a6b756b6341573856415430610dfe8201527f6770545a544b4e48677a444f7234314751656a4f34677a416e6b577077464752610e1e8201527f43334c625231787a4b434875365635694674674c704f384b51596d5965467868610e3e8201527f4c32643838736469506a2f76306b427a636c51637954735766324d6445394944610e5e8201527f386d5858576a72434b253242354532756e336e6976656973526e726971317548610e7e8201527f594d6a6a69694945304b6466674d6f3163476d6b557254624f30356732737633610e9e8201527f477673525971762f61457736375472644f705435567a4641364131417939634b610ebe8201527f6f44667762544a64445750524e57517354796a6d3772486249734b466b6f4f2f610ede8201527f5a4c4376735966785973337768534338614c49344b765677373773336e347a48610efe8201527f67697061634a6e435362463945727a53357069386343577655597a4f5064327a610f1e8201527f684a2f4750437a53684f453378596c634f3350796164586a54334f6b68706841610f3e8201527f58465853766865544e5355525446565641486f4a6d7949726b6a454b6f517746610f5e8201527f4730303554334158643935764e30446d336d427332786746546c253242513572610f7e8201527f73416a6e744768707a6f62643642374e7a52664e56653130446f4e5639343753610f9e8201527f59646f635252624776636d785456786f61367a717756376d416e773544314745610fbe8201527f5474327a48382532425476514256356e37672f32615768743979794e594c3974610fde8201527f4f42744167384846435945316d4e775432454232467538544968543776565241610ffe8201527f3461587a6e6b3670545a4e6779696f73747749364b654655374c696c7041253261101e8201527f42334234474a794277574d327062466a4876734a3747754f6f616b6a6d46746a61103e8201527f59344c6254396c323239253242453646374c4475577a744c6e333749786b386a61105e8201527f356c42564b33774c7369362f416641756f6a34396c4d6b5653545045396b704761107e8201527f64304c724555534a4941413070596c4178414d642f4e4f46776f4a446458466961109e8201527f307a4f5744422f54464a705666575642574f516274724a556230636c663369256110be8201527f3242575072446f596c65545674564f45306d36793564487444725551776f414c6110de8201527f7455523365585364444d4e785866656a594674764c626c726c4a7777484b2f456110fe8201527f6957504a616b32574b35386e684e6f4c6a615a55475841756f32656f5777464561111e8201527f66612f445334496958717246714779633348726939785132693243352f73357661113e8201527f7a424d30793777334d4473774d3759325247427172464d6778374f696325324261115e8201527f30497a736d5678617a5473305263666a324f3334532f525639503269486f427561117e8201527f6c4b49594244665a46654c53356439725379664a64536c67683268644d72324f61119e8201527f5552334b6e6c506e4f41785477314a384c4d325a776e4671765a745a4a6c78786111be8201527f343873776243743272316b664875443756624831326159383849437456734b786111de8201527f4b742f31726b616c42414d74782f6f6f6d43445059626b556f4c6344624b436a6111fe8201527f7675713953544467746a584744715735564b36686347654f46697a6a3643714c61121e8201527f4f49716b57783477733245504d444e7378253242613661533230384f39784c3061123e8201527f526146586f394241645530706e452532424c695359334b536f4a41525978646e61125e8201527f7a69545a4d706961442f3438496969393834446151357976656378414673735761127e8201527f792f686274696d63253242704c386b35796f70496d4a627948712f6138797a6c61129e8201527f6c37726f4f7a586d786d4163337459585363546b65734d6344324939315a36336112be8201527f6549312f394a627755716b36737863394b52677277574d414e6543314e6e39756112de8201527f4779775473706d5538712532426c5a6d43714d674153363662674841476a514b6112fe8201527f73754a334451416a5235346d356a4c7a5a616e546c62646530253242726e663461131e8201527f385a574138546c32673277414779427748516e3552322532424e6a726542677861133e8201527f626c734e46627554776d6862414a48737a2f72416f61764c4f34317874767a5961135e8201527f4768336e4c4a426b41506a7578424a445248333048426575385567436978464e61137e8201527f437951322f4b253242385157372f6530253242664f2532423436524e5730657961139e8201527f4c726f39446a5467704a4e4d3547385179306c54644f756d73773066715045696113be8201527f393646702532424830634d774e6f376a787a596d6e4e664d5a6d64506c7932706113de8201527f6f7132575065476d67507136474c78504e34536c4b486e7870624f69754c58516113fe8201527f75583155715031676a6f38426136536c55314f416d5267707a7531735444584a61141e8201527f50754d3338546f387130344c324e777970653837327777556741675a6c70386461143e8201527f6b5166397a38544d43624d6b596b3758484375333564375a5a41656f346b5a4b61145e8201527f68784953386945354c546a334c4f6976485a7268394a3870337a4c5a436a776361147e8201527f6970354452694b6e576e49664c33386b4a684d7452776a67553525324256726d61149e8201527f714b6c6739307a376a64732f4238444b646b464c76483353253242376f4838616114be8201527f6c445a6c626734533155583574434d445342324f364b756c7a41344b763067376114de8201527f314251643054464b7733685358696e62374e6c304258725873514e6376436b386114fe8201527f6d6f394f786965783559627a78564e2f6b3738336f48545a495777393079495a61151e8201527f777672697164475473586e54384965705437597946434f4a6741395a3042794961153e8201527f455956735478522f6b73616b324268376f4b767034766e695530364d57317a4261155e8201527f4672746568647a306b6b587951786a426d7965645636644d596545386146787461157e8201527f6575777355466136466c6c54446c716430707a525a77473663467266574d627061159e8201527f384738587a6a66624d253242354658657076356f457273696c363458783663376115be8201527f5841576275696d3666387347494d58666f334a6971476b703333376854536a676115de8201527f65636862364f42472f327a31376a6f6d4469476d253242476c623146553069656115fe8201527f6e7552796977654c576767447a6d4655765545556a5a6f377356544877684f4661161e8201527f504d6b4e737146423977796d6b45307639666d7477453854377135384e594f3761163e8201527f787534623833766e46766c35755378446c472532426b4f51675249644f346a6761165e8201527f7a786a53486a4b4c7332742f6c684f647771766131415744437072763344345361167e8201527f34523741625934544362664b4637744265363554343551347a7a49714433316161169e8201527f79797557716a692532424636585337535439483943314f342f694b366b4775766116be8201527f6b512f664e3537487837456533373435622f76766e2f62482f58253242392f256116de8201527f32426762656d684f416d49705576755157757344764b517578394a44564e734b6116fe8201527f673651636d6b73515341445530346347524c523768466f5a326337785545664761171e8201527f253242776b755459474d764c6a422f6550634936416847686e5735717a45416961173e8201527f4a586377564545775869654e70536c317a6a457253253242435325324248634c61175e8201527f6f52506d7661324d6767412f69794c67536f544a555767733442794149514f3061177e8201527f4f6f705a487656627a6844494c65557155677a7a48492f667950474e7879777361179e8201527f6f796c6865534639577662795363336b4544716b32415636436c4364635535536117be8201527f6e6c4e6e4963394b794d63384c79622532423867484f4a795173466c4c6250526117de8201527f796d6d374a42743349545a544162314732444252496b514b51705451396939626117fe8201527f3665435353387a4d366161525364544b5657524d336663454a4c644b61746e7361181e8201527f724959774e4a55253242733048364461757832775a35686733706c653042474861183e8201527f756b316b4543734859446461496d4b7025324233463542317859763763486b7161185e8201527f644475306a4b645273657a3531376d63563641685148346931484e3173766c6a61187e8201527f5248366845454672682532426e72726d47316e33307a4d346749776d694d774561189e8201527f624b6842545564423141486f582532424b6741517a4f48543946494f71436b526118be8201527f4e4e623273397170496943534f753167576868497343564a73765771457175356118de8201527f47624a514b4e6a61427465394c4f69676368414a7665475773394332323033766118fe8201527f6f6e476c6b77725251323464646732796345646157554456734441785548734961191e8201527f77773665615234464665336d4a416b66426d5a6452395264774a485a6d47645261193e8201527f7950436a706a627a31712f584a34534949446b66384b4b6e6e32456c4b6d794c61195e8201527f69573442513836733151554b2f76426867524e776548766c5968687a7238706361197e8201527f67704b4b6d6f61576a7036426b594f48446c7835734b5647336365474539657661199e8201527f506e773563646667454242676f554946536238587632504553314772446a78456119be8201527f69524b6b697846716a54704d6d544b6b693148726a7a354368517155717845716119de8201527f544c6c4b6c53715571314772547231476a527130717846717a62744f6e5347656119fe8201527f3668374a6d627a4968355a6544696c315a58536a7430774375616b336c6e476f611a1e8201527f5655506f53734e663337394b326a6274716d44674d69485a42665a6c68324839611a3e8201527f75773738495469314a466a585653662f4336634f55667a346f30644178305447611a5e8201527f777448446863666a3443516d49694531444d5a42546b6c4e5a557065566f614f611a7e8201527f6e717633733234314e50503965766574594768435a50576a4979747332706173611a9e8201527f436a25324270556a54596c336b615574374f744b4a6136355850396d356e6367611abe8201527f364e686a685a587032762532426d57724341545a754a303368316b6a55756976611ade8201527f5067596e6a6e35744b4a4f6b326e6362703251414559585a69304b496d50356b611afe8201527f744961466e366b5a397743253237253239253230666f726d6174253238253237611b1e8201527f776f666632253237253239253342666f6e742d7765696768742533412532306e611b3e8201527f6f726d616c253342666f6e742d7374796c652533412532306e6f726d616c2533611b5e8201527f42666f6e742d646973706c617925334125323073776170253342253744746578611b7e8201527f74253230253742666f6e742d66616d696c792533412532302532375072657373611b9e8201527f2532305374617274253230325025323725334266696c6c253341253230776869611bbe8201527f74652537442e76616c7565253230253742666f6e742d73697a65253341253230611bde8201527f313070782533422537442e6e616d65253230253742666f6e742d73697a652533611bfe8201527f412532303470782533422537442533432f7374796c652533452533432f646566611c1e8201527f7325334525334372656374253230776964746825334425323738392532372532611c3e8201527f30686569676874253344253237353525323725323066696c6c25334425323762611c5e8201527f6c61636b2532372532302f253345253343726563742532307825334425323735611c7e8201527f2e3525323725323079253344253237352e352532372532307769647468253344611c9e8201527f2532373738253237253230686569676874253344253237343425323725323066611cbe8201527f696c6c2533442532372532333030303046462532372532302f25334525334374611cde8201527f657874253230746578742d616e63686f722533442532376d6964646c65253237611cfe8201527f2532307825334425323734342e35253237253230792533442532373333253237611d1e8201527f253230636c61737325334425323776616c756525323725334500000000000000611d3e820152612ba5612b9e6129f5611d5784018a61055b565b7f2533432f746578742533452533437265637425323078253344253237352e352581527f323725323079253344253237352e35253237253230776964746825334425323760208201527f373825323725323068656967687425334425323734342532372532307374726f60408201527f6b652533442532372532334646344630412532372532307374726f6b652d776960608201527f647468253344253237332532372532302f25334525334372656374253230782560808201527f334425323733302532372532307925334425323734352e35253237253230776960a08201527f647468253344253237353825323725323068656967687425334425323738253260c08201527f3725323066696c6c2533442532372532334646344630412532372532302f253360e08201527f4525334374657874253230746578742d616e63686f72253344253237656e64256101008201527f32372532307825334425323738372532372532307925334425323735322532376101208201527f253230636c6173732533442532376e616d6525323725334500000000000000006101408201526101580190565b86886105e3565b602160f81b81529050612bbb600182018561055b565b7f2533432f746578742533452533432f737667253345227d00000000000000000081526017019a995050505050505050505056fea26469706673582212206a2c00c13ddb4f1bcd7ee36e36f0c874d7d9dadcf38306eab3610b5a6e7af83464736f6c63430008110033", + "nonce": "0x7", + "accessList": [] + }, + "additionalContracts": [], + "isFixedGasLimit": false + }, + { + "hash": "0x07a5e0a2a4a0b3dd94a918b0606dab515f7fce47852564ee66114194e562594d", + "transactionType": "CREATE", + "contractName": null, + "contractAddress": "0x2279B7A0a67DB372996a5FaB50D91eAA73d2eBe6", + "function": null, + "arguments": null, + "transaction": { + "type": "0x02", + "from": "0xf39fd6e51aad88f6f4ce6ab8827279cfffb92266", + "gas": "0x42230", + "value": "0x0", + "data": "0x608060405234801561001057600080fd5b506102cf806100206000396000f3fe608060405234801561001057600080fd5b506004361061004c5760003560e01c80630194db8e14610051578063072bdcc214610076578063a391c15b14610089578063b67d77c51461009c575b600080fd5b61006461005f366004610160565b6100af565b60405190815260200160405180910390f35b610064610084366004610160565b6100ef565b61006461009736600461021e565b610129565b6100646100aa36600461021e565b61013e565b600080805b83518110156100e8578381815181106100cf576100cf610240565b60200260200101518201915080806001019150506100b4565b5092915050565b60006001815b83518110156100e85783818151811061011057610110610240565b60200260200101518202915080806001019150506100f5565b60006101358284610256565b90505b92915050565b60006101358284610278565b634e487b7160e01b600052604160045260246000fd5b6000602080838503121561017357600080fd5b823567ffffffffffffffff8082111561018b57600080fd5b818501915085601f83011261019f57600080fd5b8135818111156101b1576101b161014a565b8060051b604051601f19603f830116810181811085821117156101d6576101d661014a565b6040529182528482019250838101850191888311156101f457600080fd5b938501935b82851015610212578435845293850193928501926101f9565b98975050505050505050565b6000806040838503121561023157600080fd5b50508035926020909101359150565b634e487b7160e01b600052603260045260246000fd5b60008261027357634e487b7160e01b600052601260045260246000fd5b500490565b8181038181111561013857634e487b7160e01b600052601160045260246000fdfea2646970667358221220fcdef23ba4219270ddb3ab764e22a87e229c05e6f1dfc4eeea983fa1a1dac91f64736f6c63430008110033", + "nonce": "0x8", + "accessList": [] + }, + "additionalContracts": [], + "isFixedGasLimit": false + }, + { + "hash": "0x6bb590b2f695b5e1d5e581c7f73ff3c6b3a87a6995118083d5e264029605471b", + "transactionType": "CREATE", + "contractName": "Evmsheet", + "contractAddress": "0x8A791620dd6260079BF849Dc5567aDC3F2FdC318", + "function": null, + "arguments": [ + "0xa513E6E4b8f2a923D98304ec87F64353C4D5C853", + "10000000000000000" + ], + "transaction": { + "type": "0x02", + "from": "0xf39fd6e51aad88f6f4ce6ab8827279cfffb92266", + "gas": "0x34bf99", + "value": "0x0", + "data": "0x608060405234801561001057600080fd5b50604051612ed9380380612ed983398101604081905261002f916100b1565b61003833610061565b600280546001600160a01b0319166001600160a01b0393909316929092179091556001556100eb565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b600080604083850312156100c457600080fd5b82516001600160a01b03811681146100db57600080fd5b6020939093015192949293505050565b612ddf806100fa6000396000f3fe608060405260043610620000a95760003560e01c80638da5cb5b116200006c5780638da5cb5b146200016d578063ab2fa65a146200018d578063ae28505e14620001b4578063c56c4cf114620001d9578063f2fde38b14620001fb578063f52be2a2146200022057600080fd5b806303fb31e814620000ae5780631164c83d14620000d5578063145e414714620000ec5780635787cacb146200012e578063715018a61462000155575b600080fd5b348015620000bb57600080fd5b50620000d3620000cd36600462000778565b62000247565b005b620000d3620000e6366004620007e9565b62000273565b348015620000f957600080fd5b50620001116200010b36600462000864565b620004b2565b6040516001600160a01b0390911681526020015b60405180910390f35b3480156200013b57600080fd5b50620001466200054f565b60405162000125919062000891565b3480156200016257600080fd5b50620000d3620005b3565b3480156200017a57600080fd5b506000546001600160a01b031662000111565b3480156200019a57600080fd5b50620001a5620005cb565b604051620001259190620008e0565b348015620001c157600080fd5b5062000111620001d336600462000930565b620005f7565b348015620001e657600080fd5b5060025462000111906001600160a01b031681565b3480156200020857600080fd5b50620000d36200021a36600462000778565b62000622565b3480156200022d57600080fd5b506200023860015481565b60405190815260200162000125565b62000251620006a1565b600280546001600160a01b0319166001600160a01b0392909216919091179055565b60015434146200029d5760405163723a79e360e11b81523460048201526024015b60405180910390fd5b600060405180602001620002b1906200074d565b6020820181038252601f19601f8201166040525090506000828251602084016000f56002546040516356d3163d60e01b81526001600160a01b0391821660048201529192508216906356d3163d90602401600060405180830381600087803b1580156200031d57600080fd5b505af115801562000332573d6000803e3d6000fd5b505060405163c47f002760e01b81526001600160a01b038416925063c47f0027915062000366908a908a906004016200094a565b600060405180830381600087803b1580156200038157600080fd5b505af115801562000396573d6000803e3d6000fd5b5050604051635c26412360e11b81526001600160a01b038416925063b84c82469150620003ca90889088906004016200094a565b600060405180830381600087803b158015620003e557600080fd5b505af1158015620003fa573d6000803e3d6000fd5b505060405163f2fde38b60e01b81523260048201526001600160a01b038416925063f2fde38b9150602401600060405180830381600087803b1580156200044057600080fd5b505af115801562000455573d6000803e3d6000fd5b5050600380546001810182556000919091527fc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b0180546001600160a01b0319166001600160a01b0394909416939093179092555050505050505050565b600060ff60f81b838360405180602001620004cd906200074d565b6020820181038252601f19601f82011660405250805190602001206040516020016200053094939291906001600160f81b031994909416845260609290921b6bffffffffffffffffffffffff191660018401526015830152603582015260550190565b60408051601f1981840301815291905280516020909101209392505050565b60606003805480602002602001604051908101604052809291908181526020018280548015620005a957602002820191906000526020600020905b81546001600160a01b031681526001909101906020018083116200058a575b5050505050905090565b620005bd620006a1565b620005c96000620006fd565b565b606060405180602001620005df906200074d565b601f1982820381018352601f90910116604052919050565b600381815481106200060857600080fd5b6000918252602090912001546001600160a01b0316905081565b6200062c620006a1565b6001600160a01b038116620006935760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b606482015260840162000294565b6200069e81620006fd565b50565b6000546001600160a01b03163314620005c95760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015260640162000294565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b612430806200097a83390190565b80356001600160a01b03811681146200077357600080fd5b919050565b6000602082840312156200078b57600080fd5b62000796826200075b565b9392505050565b60008083601f840112620007b057600080fd5b50813567ffffffffffffffff811115620007c957600080fd5b602083019150836020828501011115620007e257600080fd5b9250929050565b6000806000806000606086880312156200080257600080fd5b853567ffffffffffffffff808211156200081b57600080fd5b6200082989838a016200079d565b909750955060208801359150808211156200084357600080fd5b5062000852888289016200079d565b96999598509660400135949350505050565b600080604083850312156200087857600080fd5b62000883836200075b565b946020939093013593505050565b6020808252825182820181905260009190848201906040850190845b81811015620008d45783516001600160a01b031683529284019291840191600101620008ad565b50909695505050505050565b600060208083528351808285015260005b818110156200090f57858101830151858201604001528201620008f1565b506000604082860101526040601f19601f8301168501019250505092915050565b6000602082840312156200094357600080fd5b5035919050565b60208152816020820152818360408301376000818301604090810191909152601f909201601f1916010191905056fe60806040523480156200001157600080fd5b50604051806040016040528060078152602001660536865657420360cc1b815250604051806040016040528060048152602001630534854360e41b81525062000069620000636200008f60201b60201c565b62000093565b600162000077838262000188565b50600262000086828262000188565b50505062000254565b3390565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b634e487b7160e01b600052604160045260246000fd5b600181811c908216806200010e57607f821691505b6020821081036200012f57634e487b7160e01b600052602260045260246000fd5b50919050565b601f8211156200018357600081815260208120601f850160051c810160208610156200015e5750805b601f850160051c820191505b818110156200017f578281556001016200016a565b5050505b505050565b81516001600160401b03811115620001a457620001a4620000e3565b620001bc81620001b58454620000f9565b8462000135565b602080601f831160018114620001f45760008415620001db5750858301515b600019600386901b1c1916600185901b1785556200017f565b600085815260208120601f198616915b82811015620002255788860151825594840194600190910190840162000204565b5085821015620002445787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b6121cc80620002646000396000f3fe608060405234801561001057600080fd5b50600436106102275760003560e01c8063715018a611610130578063b85d8b85116100b8578063cf0983981161007c578063cf09839814610512578063cfbe95d814610535578063df4ca20614610556578063e985e9c514610576578063f2fde38b146105a457600080fd5b8063b85d8b85146104a4578063b88d4fde146104ce578063b8c368ec146104e1578063c47f0027146104ec578063c87b56dd146104ff57600080fd5b806395d89b41116100ff57806395d89b4114610439578063a22cb46514610441578063b46ebb1214610454578063b6d658e114610467578063b84c82461461049157600080fd5b8063715018a6146103fa578063768d5029146104025780638ada6b0f146104155780638da5cb5b1461042857600080fd5b80631b06443c116101b35780634f6ccce7116101825780634f6ccce71461038157806356d3163d146103a15780636352211e146103b45780636a0abc74146103c757806370a08231146103e757600080fd5b80631b06443c14610335578063206848f61461034857806323b872dd1461035b57806342842e0e1461036e57600080fd5b8063081812fc116101fa578063081812fc146102a1578063095ea7b3146102e2578063172b9eed146102f757806318160ddd1461030a5780631941fd141461031357600080fd5b806301ffc9a71461022c57806302f3c4c91461025457806306fdde03146102745780630715a24a1461027c575b600080fd5b61023f61023a36600461176a565b6105b7565b60405190151581526020015b60405180910390f35b610267610262366004611861565b610609565b60405161024b9190611951565b610267610638565b6102936fffffffffffffffffffffffffffffffff81565b60405190815260200161024b565b6102ca6102af366004611964565b6005602052600090815260409020546001600160a01b031681565b6040516001600160a01b03909116815260200161024b565b6102f56102f036600461197d565b6106c6565b005b6102676103053660046119a9565b6107ad565b61029360075481565b610326610321366004611964565b610875565b60405161024b939291906119de565b6102ca610343366004611a0e565b61092a565b610326610356366004611964565b6109e3565b6102f5610369366004611a2b565b610ae1565b6102f561037c366004611a2b565b610ca8565b61029361038f366004611964565b60086020526000908152604090205481565b6102f56103af366004611a0e565b610da0565b6102ca6103c2366004611964565b610dca565b6103da6103d53660046119a9565b610e1c565b60405161024b9190611a6c565b6102936103f5366004611a0e565b610e60565b6102f5610ec3565b6102f5610410366004611af9565b610ed7565b6009546102ca906001600160a01b031681565b6000546001600160a01b03166102ca565b610267611035565b6102f561044f366004611b63565b611042565b610267610462366004611964565b6110ae565b61047a610475366004611964565b611258565b60408051921515835260208301919091520161024b565b6102f561049f366004611ba1565b611275565b6104b56104b2366004611964565b90565b6040516001600160e01b0319909116815260200161024b565b6102f56104dc366004611be3565b6112c6565b6102ca600160801b81565b6102f56104fa366004611ba1565b6113ae565b61026761050d366004611964565b6113ff565b61023f610520366004611a0e565b600160801b6001600160a01b03919091161090565b61023f610543366004611861565b516001600160a01b0316600160801b1490565b610569610564366004611964565b6114c9565b60405161024b9190611c16565b61023f610584366004611c4d565b600660209081526000928352604080842090915290825290205460ff1681565b6102f56105b2366004611a0e565b611526565b60006301ffc9a760e01b6001600160e01b0319831614806105e857506380ac58cd60e01b6001600160e01b03198316145b806106035750635b5e139f60e01b6001600160e01b03198316145b92915050565b6060816020015160405160200161062291815260200190565b6040516020818303038152906040529050919050565b6001805461064590611c7b565b80601f016020809104026020016040519081016040528092919081815260200182805461067190611c7b565b80156106be5780601f10610693576101008083540402835291602001916106be565b820191906000526020600020905b8154815290600101906020018083116106a157829003601f168201915b505050505081565b6000818152600360205260409020546001600160a01b03163381148061070f57506001600160a01b038116600090815260066020908152604080832033845290915290205460ff165b6107515760405162461bcd60e51b815260206004820152600e60248201526d1393d517d055551213d49256915160921b60448201526064015b60405180910390fd5b60008281526005602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b606060006107ba83610e1c565b9050606060005b825181101561086d576000806107ef8584815181106107e2576107e2611cb5565b6020026020010151611258565b9150915081156108335783610803826110ae565b61080c90611ccb565b60405160200161081d929190611cef565b6040516020818303038152906040529350610858565b6040516108469085908390602001611cef565b60405160208183030381529060405293505b5050808061086590611d27565b9150506107c1565b509392505050565b600a602052600090815260409020805460018201546002830180546001600160a01b039093169391926108a790611c7b565b80601f01602080910402602001604051908101604052809291908181526020018280546108d390611c7b565b80156109205780601f106108f557610100808354040283529160200191610920565b820191906000526020600020905b81548152906001019060200180831161090357829003601f168201915b5050505050905083565b6000600160801b6001600160a01b03831610156109da576000610955836001600160a01b03166110ae565b604051632d737e4960e21b8152909150735fc8d32690cc91d4c39d9d3abcbd16989f8757079063b5cdf92490610992908490600090600401611d40565b602060405180830381865af41580156109af573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906109d39190611d62565b9392505050565b5090565b919050565b60008181526003602052604081205481906060906001600160a01b0316610a1057600160801b9250610a2b565b6000848152600a60205260409020546001600160a01b031692505b6000848152600a60205260409020600181015460029091018054859291908190610a5490611c7b565b80601f0160208091040260200160405190810160405280929190818152602001828054610a8090611c7b565b8015610acd5780601f10610aa257610100808354040283529160200191610acd565b820191906000526020600020905b815481529060010190602001808311610ab057829003601f168201915b505050505090509250925092509193909250565b6000818152600360205260409020546001600160a01b03848116911614610b375760405162461bcd60e51b815260206004820152600a60248201526957524f4e475f46524f4d60b01b6044820152606401610748565b6001600160a01b038216610b815760405162461bcd60e51b81526020600482015260116024820152701253959053125117d49150d25412515395607a1b6044820152606401610748565b336001600160a01b0384161480610bbb57506001600160a01b038316600090815260066020908152604080832033845290915290205460ff165b80610bdc57506000818152600560205260409020546001600160a01b031633145b610c195760405162461bcd60e51b815260206004820152600e60248201526d1393d517d055551213d49256915160921b6044820152606401610748565b6001600160a01b0380841660008181526004602090815260408083208054600019019055938616808352848320805460010190558583526003825284832080546001600160a01b03199081168317909155600590925284832080549092169091559251849392917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b610cb3838383610ae1565b6001600160a01b0382163b1580610d5c5750604051630a85bd0160e11b8082523360048301526001600160a01b03858116602484015260448301849052608060648401526000608484015290919084169063150b7a029060a4016020604051808303816000875af1158015610d2c573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610d509190611d7b565b6001600160e01b031916145b610d9b5760405162461bcd60e51b815260206004820152601060248201526f155394d0519157d49150d2541251539560821b6044820152606401610748565b505050565b610da861159f565b600980546001600160a01b0319166001600160a01b0392909216919091179055565b6000818152600360205260409020546001600160a01b0316806109de5760405162461bcd60e51b815260206004820152600a6024820152691393d517d3525395115160b21b6044820152606401610748565b60608082516040519150602081048252602082016020850160005b83811015610e4f578181015183820152602001610e37565b505050810160200160405292915050565b60006001600160a01b038216610ea75760405162461bcd60e51b815260206004820152600c60248201526b5a45524f5f4144445245535360a01b6044820152606401610748565b506001600160a01b031660009081526004602052604090205490565b610ecb61159f565b610ed560006115f9565b565b6000858152600360205260409020546001600160a01b0316610f2f57610efd3286611649565b60078054600090815260086020526040812087905581546001929190610f24908490611d98565b90915550610f889050565b6000858152600360205260409020546001600160a01b03163214610f8857600085815260036020526040908190205490516324f3f02560e21b81526001600160a01b039091166004820152326024820152604401610748565b6040518060600160405280856001600160a01b0316815260200184815260200183838080601f0160208091040260200160405190810160405280939291908181526020018383808284376000920182905250939094525050878152600a6020908152604091829020845181546001600160a01b0319166001600160a01b0390911617815590840151600182015590830151909150600282019061102b9082611df9565b5050505050505050565b6002805461064590611c7b565b3360008181526006602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b6000818152600a6020908152604080832081516060818101845282546001600160a01b0316825260018301549482019490945260028201805494959491938401916110f890611c7b565b80601f016020809104026020016040519081016040528092919081815260200182805461112490611c7b565b80156111715780601f1061114657610100808354040283529160200191611171565b820191906000526020600020905b81548152906001019060200180831161115457829003601f168201915b505050505081525050905061119381516001600160a01b0316600160801b1490565b156111a1576109d381610609565b60006111b0826000015161092a565b905060006111bf836020015190565b905060006111d084604001516107ad565b90506000836001600160a01b031683836040516020016111f1929190611eb9565b60408051601f198184030181529082905261120b91611eea565b600060405180830381855afa9150503d8060008114611246576040519150601f19603f3d011682016040523d82523d6000602084013e61124b565b606091505b5098975050505050505050565b600080611266600284611f06565b60019081149493901c92915050565b61127d61159f565b7f8dca0271872d00b3de3abafca544c52fcd7d512dd852c9894fa2c118ac759a93600283836040516112b193929190611fce565b60405180910390a16002610d9b828483611ffe565b6112d1858585610ae1565b6001600160a01b0384163b15806113685750604051630a85bd0160e11b808252906001600160a01b0386169063150b7a02906113199033908a908990899089906004016120be565b6020604051808303816000875af1158015611338573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061135c9190611d7b565b6001600160e01b031916145b6113a75760405162461bcd60e51b815260206004820152601060248201526f155394d0519157d49150d2541251539560821b6044820152606401610748565b5050505050565b6113b661159f565b7fb65b7b5ea384affd30f77f842e057d29dd1b13f133adf69a724a8105b164ab75600183836040516113ea93929190611fce565b60405180910390a16001610d9b828483611ffe565b6000818152600360205260409020546060906001600160a01b03168061143b57604051630243d1a960e21b815260048101849052602401610748565b6000611446846110ae565b6009546040516328de0f2f60e01b81529192506001600160a01b0316906328de0f2f9061147c90879085906001906004016120fd565b600060405180830381865afa158015611499573d6000803e3d6000fd5b505050506040513d6000823e601f3d908101601f191682016040526114c19190810190612128565b949350505050565b604080516060808201835260008083526020830181905292820152906114ee836110ae565b6040805160608101825285815260009586526003602090815295829020546001600160a01b0316958101959095528401525090919050565b61152e61159f565b6001600160a01b0381166115935760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610748565b61159c816115f9565b50565b6000546001600160a01b03163314610ed55760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610748565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b6001600160a01b0382166116935760405162461bcd60e51b81526020600482015260116024820152701253959053125117d49150d25412515395607a1b6044820152606401610748565b6000818152600360205260409020546001600160a01b0316156116e95760405162461bcd60e51b815260206004820152600e60248201526d1053149150511657d3525395115160921b6044820152606401610748565b6001600160a01b038216600081815260046020908152604080832080546001019055848352600390915280822080546001600160a01b0319168417905551839291907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b6001600160e01b03198116811461159c57600080fd5b60006020828403121561177c57600080fd5b81356109d381611754565b634e487b7160e01b600052604160045260246000fd5b604051601f8201601f1916810167ffffffffffffffff811182821017156117c6576117c6611787565b604052919050565b6001600160a01b038116811461159c57600080fd5b600067ffffffffffffffff8211156117fd576117fd611787565b50601f01601f191660200190565b600082601f83011261181c57600080fd5b813561182f61182a826117e3565b61179d565b81815284602083860101111561184457600080fd5b816020850160208301376000918101602001919091529392505050565b60006020828403121561187357600080fd5b813567ffffffffffffffff8082111561188b57600080fd5b908301906060828603121561189f57600080fd5b6040516060810181811083821117156118ba576118ba611787565b60405282356118c8816117ce565b8152602083810135908201526040830135828111156118e657600080fd5b6118f28782860161180b565b60408301525095945050505050565b60005b8381101561191c578181015183820152602001611904565b50506000910152565b6000815180845261193d816020860160208601611901565b601f01601f19169290920160200192915050565b6020815260006109d36020830184611925565b60006020828403121561197657600080fd5b5035919050565b6000806040838503121561199057600080fd5b823561199b816117ce565b946020939093013593505050565b6000602082840312156119bb57600080fd5b813567ffffffffffffffff8111156119d257600080fd5b6114c18482850161180b565b60018060a01b0384168152826020820152606060408201526000611a056060830184611925565b95945050505050565b600060208284031215611a2057600080fd5b81356109d3816117ce565b600080600060608486031215611a4057600080fd5b8335611a4b816117ce565b92506020840135611a5b816117ce565b929592945050506040919091013590565b6020808252825182820181905260009190848201906040850190845b81811015611aa457835183529284019291840191600101611a88565b50909695505050505050565b60008083601f840112611ac257600080fd5b50813567ffffffffffffffff811115611ada57600080fd5b602083019150836020828501011115611af257600080fd5b9250929050565b600080600080600060808688031215611b1157600080fd5b853594506020860135611b23816117ce565b935060408601359250606086013567ffffffffffffffff811115611b4657600080fd5b611b5288828901611ab0565b969995985093965092949392505050565b60008060408385031215611b7657600080fd5b8235611b81816117ce565b915060208301358015158114611b9657600080fd5b809150509250929050565b60008060208385031215611bb457600080fd5b823567ffffffffffffffff811115611bcb57600080fd5b611bd785828601611ab0565b90969095509350505050565b600080600080600060808688031215611bfb57600080fd5b8535611c06816117ce565b94506020860135611b23816117ce565b602081528151602082015260018060a01b036020830151166040820152600060408301516060808401526114c16080840182611925565b60008060408385031215611c6057600080fd5b8235611c6b816117ce565b91506020830135611b96816117ce565b600181811c90821680611c8f57607f821691505b602082108103611caf57634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052603260045260246000fd5b80516020808301519190811015611caf5760001960209190910360031b1b16919050565b60008351611d01818460208801611901565b9190910191825250602001919050565b634e487b7160e01b600052601160045260246000fd5b600060018201611d3957611d39611d11565b5060010190565b604081526000611d536040830185611925565b90508260208301529392505050565b600060208284031215611d7457600080fd5b5051919050565b600060208284031215611d8d57600080fd5b81516109d381611754565b8082018082111561060357610603611d11565b601f821115610d9b57600081815260208120601f850160051c81016020861015611dd25750805b601f850160051c820191505b81811015611df157828155600101611dde565b505050505050565b815167ffffffffffffffff811115611e1357611e13611787565b611e2781611e218454611c7b565b84611dab565b602080601f831160018114611e5c5760008415611e445750858301515b600019600386901b1c1916600185901b178555611df1565b600085815260208120601f198616915b82811015611e8b57888601518255948401946001909101908401611e6c565b5085821015611ea95787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b6001600160e01b0319831681528151600090611edc816004850160208701611901565b919091016004019392505050565b60008251611efc818460208701611901565b9190910192915050565b600082611f2357634e487b7160e01b600052601260045260246000fd5b500690565b60008154611f3581611c7b565b808552602060018381168015611f525760018114611f6c57611f9a565b60ff1985168884015283151560051b880183019550611f9a565b866000528260002060005b85811015611f925781548a8201860152908301908401611f77565b890184019650505b505050505092915050565b81835281816020850137506000828201602090810191909152601f909101601f19169091010190565b604081526000611fe16040830186611f28565b8281036020840152611ff4818587611fa5565b9695505050505050565b67ffffffffffffffff83111561201657612016611787565b61202a836120248354611c7b565b83611dab565b6000601f84116001811461205e57600085156120465750838201355b600019600387901b1c1916600186901b1783556113a7565b600083815260209020601f19861690835b8281101561208f578685013582556020948501946001909201910161206f565b50868210156120ac5760001960f88860031b161c19848701351681555b505060018560011b0183555050505050565b6001600160a01b03868116825285166020820152604081018490526080606082018190526000906120f29083018486611fa5565b979650505050505050565b8381526060602082015260006121166060830185611925565b8281036040840152611ff48185611f28565b60006020828403121561213a57600080fd5b815167ffffffffffffffff81111561215157600080fd5b8201601f8101841361216257600080fd5b805161217061182a826117e3565b81815285602083850101111561218557600080fd5b611a0582602083016020860161190156fea26469706673582212203fc548aa4f22e6f4c01757ba3f2e0383630418b3d17601758718ab19a4d9918d64736f6c63430008110033a26469706673582212207932e8c793f9a96d9606a8907a6671f54c0fb1ed5a763048e13b429274e7706c64736f6c63430008110033000000000000000000000000a513e6e4b8f2a923d98304ec87f64353c4d5c853000000000000000000000000000000000000000000000000002386f26fc10000", + "nonce": "0x9", + "accessList": [] + }, + "additionalContracts": [], + "isFixedGasLimit": false + } + ], + "receipts": [ + { + "transactionHash": "0x5cac3da162b19699231de6732e03bc790e5e7548719a7582522d0bcc9b04ee89", + "transactionIndex": "0x0", + "blockHash": "0x4eadda2a8e7dddf6889c134001bdb6f2f0c636166eb069786f94d21c41a9e5d6", + "blockNumber": "0x4", + "from": "0xf39Fd6e51aad88F6F4ce6aB8827279cffFb92266", + "to": null, + "cumulativeGasUsed": "0xf072b", + "gasUsed": "0xf072b", + "contractAddress": "0x5FC8d32690cc91D4c39d9d3abcBD16989F875707", + "logs": [], + "status": "0x1", + "logsBloom": "0x00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", + "type": "0x2", + "effectiveGasPrice": "0xdd4310b2" + }, + { + "transactionHash": "0xb71ef3829ce1ee3200a97a4837b686aad5ca8254280065506af35bfa2b857d3b", + "transactionIndex": "0x0", + "blockHash": "0x43b17c97ee7437904a12ba5d74a5761af26585c79cff24a366d4e35ccddd7ee4", + "blockNumber": "0x5", + "from": "0xf39Fd6e51aad88F6F4ce6aB8827279cffFb92266", + "to": null, + "cumulativeGasUsed": "0x23ab5", + "gasUsed": "0x23ab5", + "contractAddress": "0x0165878A594ca255338adfa4d48449f69242Eb8F", + "logs": [], + "status": "0x1", + "logsBloom": "0x00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", + "type": "0x2", + "effectiveGasPrice": "0xd84dea04" + }, + { + "transactionHash": "0x52fc279ffecab05b9ad87066e55f662df43c6c0114610bbfdcf976feec6e493b", + "transactionIndex": "0x0", + "blockHash": "0x38622334387ca4f39ad0a9e617a2c147c6354c9297e7af09860a4def34acff03", + "blockNumber": "0x6", + "from": "0xf39Fd6e51aad88F6F4ce6aB8827279cffFb92266", + "to": null, + "cumulativeGasUsed": "0x2616fd", + "gasUsed": "0x2616fd", + "contractAddress": "0xa513E6E4b8f2a923D98304ec87F64353C4D5C853", + "logs": [], + "status": "0x1", + "logsBloom": "0x00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", + "type": "0x2", + "effectiveGasPrice": "0xd3a9e7e6" + }, + { + "transactionHash": "0x07a5e0a2a4a0b3dd94a918b0606dab515f7fce47852564ee66114194e562594d", + "transactionIndex": "0x1", + "blockHash": "0x38622334387ca4f39ad0a9e617a2c147c6354c9297e7af09860a4def34acff03", + "blockNumber": "0x6", + "from": "0xf39Fd6e51aad88F6F4ce6aB8827279cffFb92266", + "to": null, + "cumulativeGasUsed": "0x29452b", + "gasUsed": "0x32e2e", + "contractAddress": "0x2279B7A0a67DB372996a5FaB50D91eAA73d2eBe6", + "logs": [], + "status": "0x1", + "logsBloom": "0x00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", + "type": "0x2", + "effectiveGasPrice": "0xd3a9e7e6" + }, + { + "transactionHash": "0x6bb590b2f695b5e1d5e581c7f73ff3c6b3a87a6995118083d5e264029605471b", + "transactionIndex": "0x2", + "blockHash": "0x38622334387ca4f39ad0a9e617a2c147c6354c9297e7af09860a4def34acff03", + "blockNumber": "0x6", + "from": "0xf39Fd6e51aad88F6F4ce6aB8827279cffFb92266", + "to": null, + "cumulativeGasUsed": "0x51db7f", + "gasUsed": "0x289654", + "contractAddress": "0x8A791620dd6260079BF849Dc5567aDC3F2FdC318", + "logs": [ + { + "address": "0x8A791620dd6260079BF849Dc5567aDC3F2FdC318", + "topics": [ + "0x8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0", + "0x0000000000000000000000000000000000000000000000000000000000000000", + "0x000000000000000000000000f39fd6e51aad88f6f4ce6ab8827279cfffb92266" + ], + "data": "0x", + "blockHash": "0x38622334387ca4f39ad0a9e617a2c147c6354c9297e7af09860a4def34acff03", + "blockNumber": "0x6", + "transactionHash": "0x6bb590b2f695b5e1d5e581c7f73ff3c6b3a87a6995118083d5e264029605471b", + "transactionIndex": "0x2", + "logIndex": "0x2", + "transactionLogIndex": "0x0", + "removed": false + } + ], + "status": "0x1", + "logsBloom": "0x00000000000000000000000000000000000000000000000000800000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000020000000000000100000800000000000000000000000000000000400000000000000000000000000000000000000000000000000000000000000000002000000000000000000000008000000000000000000000000000000000000000000000000000200000000000000000040000002000000000000000000020000000000000000000000000000000000000000000000000000000000000000000", + "type": "0x2", + "effectiveGasPrice": "0xd3a9e7e6" + } + ], + "libraries": [ + "lib/eth-projects-monorepo/packages/eth-projects-contracts/contracts/lib/utils/Bytes.sol:Bytes:0x5fc8d32690cc91d4c39d9d3abcbd16989f875707" + ], + "pending": [], + "returns": {}, + "timestamp": 1689251543, + "chain": 31337, + "multi": false, + "commit": "f1cde46" +} \ No newline at end of file diff --git a/packages/starksheet-solidity/broadcast/Evmsheet.s.sol/31337/run-1689269274.json b/packages/starksheet-solidity/broadcast/Evmsheet.s.sol/31337/run-1689269274.json new file mode 100644 index 00000000..236c5506 --- /dev/null +++ b/packages/starksheet-solidity/broadcast/Evmsheet.s.sol/31337/run-1689269274.json @@ -0,0 +1,199 @@ +{ + "transactions": [ + { + "hash": "0x6725d3958508bc0654f8e7d059c6207019e417821da638431a43f90a577f173b", + "transactionType": "CREATE", + "contractName": "Bytes", + "contractAddress": "0x5FbDB2315678afecb367f032d93F642f64180aa3", + "function": null, + "arguments": null, + "transaction": { + "type": "0x00", + "from": "0xf39fd6e51aad88f6f4ce6ab8827279cfffb92266", + "gas": "0x1387ed", + "data": "0x6110d661003a600b82828239805160001a60731461002d57634e487b7160e01b600052600060045260246000fd5b30600052607381538281f3fe73000000000000000000000000000000000000000030146080604052600436106101625760003560e01c8063a5eb31ee116100cd578063d1ffb56111610086578063d1ffb561146103fb578063d442584f1461042b578063e004139614610454578063f1142fb314610474578063f647f8fb14610487578063f83b670f146104b257600080fd5b8063a5eb31ee14610344578063a8d8f00f1461036b578063b5cdf92414610396578063b63711df146103a9578063be8b3430146103bc578063c29616bd146103cf57600080fd5b80635ef849301161011f5780635ef8493014610241578063913c97b41461026b57806397e6175c1461029f57806399dd9bd7146102cb5780639ae4c3d1146102ec5780639cee499e1461031857600080fd5b8063042aa0841461016757806305d3bb74146101985780631a7431ef146101c0578063235266d2146101e357806348137709146101f65780634d66a2ae1461021b575b600080fd5b61017a610175366004610ec0565b6104de565b6040516001600160d01b031990911681526020015b60405180910390f35b6101ab6101a6366004610ec0565b610540565b60405163ffffffff909116815260200161018f565b6101d36101ce366004610f05565b61059d565b604051901515815260200161018f565b6101d36101f1366004610f4c565b610652565b610209610204366004610ec0565b6106b5565b60405160ff909116815260200161018f565b61022e610229366004610fa6565b610711565b60405161ffff909116815260200161018f565b61025461024f366004610ec0565b61071e565b60405165ffffffffffff909116815260200161018f565b61027e610279366004610ec0565b610772565b6040516fffffffffffffffffffffffffffffffff909116815260200161018f565b6102b26102ad366004610ec0565b6107d0565b6040516001600160a01b0319909116815260200161018f565b6102de6102d9366004610ec0565b61082e565b60405190815260200161018f565b6102ff6102fa366004610ec0565b61088c565b60405167ffffffffffffffff909116815260200161018f565b61032b610326366004610ec0565b6108e9565b6040516001600160d81b0319909116815260200161018f565b610357610352366004610ec0565b610946565b60405162ffffff909116815260200161018f565b61037e610379366004610ec0565b6109a3565b60405166ffffffffffffff909116815260200161018f565b6102de6103a4366004610ec0565b610a00565b6102ff6103b7366004610ec0565b610a55565b61022e6103ca366004610ec0565b610aa9565b6103e26103dd366004610ec0565b610b06565b6040516001600160c81b0319909116815260200161018f565b61040e610409366004610ec0565b610b5a565b6040516bffffffffffffffffffffffff909116815260200161018f565b61043e610439366004610ec0565b610bae565b60405164ffffffffff909116815260200161018f565b610467610462366004610fe3565b610c02565b60405161018f9190611031565b6102b2610482366004610ec0565b610d0f565b61049a610495366004610ec0565b610d64565b6040516001600160a01b03909116815260200161018f565b6104c56104c0366004610ec0565b610dc9565b6040516001600160f81b0319909116815260200161018f565b60006104eb82600661107f565b835110156105375760405162461bcd60e51b8152602060048201526014602482015273746f4279746573365f6f75744f66426f756e647360601b60448201526064015b60405180910390fd5b50016006015190565b600061054d82600461107f565b835110156105945760405162461bcd60e51b8152602060048201526014602482015273746f55696e7433325f6f75744f66426f756e647360601b604482015260640161052e565b50016004015190565b600080600190508354600260018083161561010002038216048451808214600181146105cc5760009450610644565b821561064457602083106001811461062957600189600052602060002060208a018581015b600284828410010361062057815183541461060f5760009950600093505b6001830192506020820191506105f1565b50505050610642565b6101008086040294506020880151851461064257600095505b505b509293505050505b92915050565b81518151600091600191811480831461066e57600092506106ab565b600160208701838101602088015b60028483851001036106a657805183511461069a5760009650600093505b6020928301920161067c565b505050505b5090949350505050565b60006106c282600161107f565b835110156107085760405162461bcd60e51b8152602060048201526013602482015272746f55696e74385f6f75744f66426f756e647360681b604482015260640161052e565b50016001015190565b600061064c826000610aa9565b600061072b82600661107f565b835110156105375760405162461bcd60e51b8152602060048201526014602482015273746f55696e7434385f6f75744f66426f756e647360601b604482015260640161052e565b600061077f82601061107f565b835110156107c75760405162461bcd60e51b8152602060048201526015602482015274746f55696e743132385f6f75744f66426f756e647360581b604482015260640161052e565b50016010015190565b60006107dd82600c61107f565b835110156108255760405162461bcd60e51b8152602060048201526015602482015274746f427974657331325f6f75744f66426f756e647360581b604482015260640161052e565b5001600c015190565b600061083b82602061107f565b835110156108835760405162461bcd60e51b8152602060048201526015602482015274746f427974657333325f6f75744f66426f756e647360581b604482015260640161052e565b50016020015190565b600061089982600861107f565b835110156108e05760405162461bcd60e51b8152602060048201526014602482015273746f55696e7436345f6f75744f66426f756e647360601b604482015260640161052e565b50016008015190565b60006108f682600561107f565b8351101561093d5760405162461bcd60e51b8152602060048201526014602482015273746f4279746573355f6f75744f66426f756e647360601b604482015260640161052e565b50016005015190565b600061095382600361107f565b8351101561099a5760405162461bcd60e51b8152602060048201526014602482015273746f55696e7432345f6f75744f66426f756e647360601b604482015260640161052e565b50016003015190565b60006109b082600761107f565b835110156109f75760405162461bcd60e51b8152602060048201526014602482015273746f55696e7435365f6f75744f66426f756e647360601b604482015260640161052e565b50016007015190565b6000610a0d82602061107f565b835110156108835760405162461bcd60e51b8152602060048201526015602482015274746f55696e743235365f6f75744f66426f756e647360581b604482015260640161052e565b6000610a6282600861107f565b835110156108e05760405162461bcd60e51b8152602060048201526014602482015273746f4279746573385f6f75744f66426f756e647360601b604482015260640161052e565b6000610ab682600261107f565b83511015610afd5760405162461bcd60e51b8152602060048201526014602482015273746f55696e7431365f6f75744f66426f756e647360601b604482015260640161052e565b50016002015190565b6000610b1382600761107f565b835110156109f75760405162461bcd60e51b8152602060048201526014602482015273746f4279746573375f6f75744f66426f756e647360601b604482015260640161052e565b6000610b6782600c61107f565b835110156108255760405162461bcd60e51b8152602060048201526014602482015273746f55696e7439365f6f75744f66426f756e647360601b604482015260640161052e565b6000610bbb82600561107f565b8351101561093d5760405162461bcd60e51b8152602060048201526014602482015273746f55696e7434305f6f75744f66426f756e647360601b604482015260640161052e565b606081610c1081601f61107f565b1015610c4f5760405162461bcd60e51b815260206004820152600e60248201526d736c6963655f6f766572666c6f7760901b604482015260640161052e565b610c59828461107f565b84511015610c9d5760405162461bcd60e51b8152602060048201526011602482015270736c6963655f6f75744f66426f756e647360781b604482015260640161052e565b606082158015610cbc5760405191506000825260208201604052610d06565b6040519150601f8416801560200281840101858101878315602002848b0101015b81831015610cf5578051835260209283019201610cdd565b5050858452601f01601f1916604052505b50949350505050565b6000610d1c82601061107f565b835110156107c75760405162461bcd60e51b8152602060048201526015602482015274746f427974657331365f6f75744f66426f756e647360581b604482015260640161052e565b6000610d7182601461107f565b83511015610db95760405162461bcd60e51b8152602060048201526015602482015274746f416464726573735f6f75744f66426f756e647360581b604482015260640161052e565b500160200151600160601b900490565b6000610dd682600161107f565b835110156107085760405162461bcd60e51b8152602060048201526014602482015273746f4279746573315f6f75744f66426f756e647360601b604482015260640161052e565b634e487b7160e01b600052604160045260246000fd5b600082601f830112610e4457600080fd5b813567ffffffffffffffff80821115610e5f57610e5f610e1d565b604051601f8301601f19908116603f01168101908282118183101715610e8757610e87610e1d565b81604052838152866020858801011115610ea057600080fd5b836020870160208301376000602085830101528094505050505092915050565b60008060408385031215610ed357600080fd5b823567ffffffffffffffff811115610eea57600080fd5b610ef685828601610e33565b95602094909401359450505050565b60008060408385031215610f1857600080fd5b82359150602083013567ffffffffffffffff811115610f3657600080fd5b610f4285828601610e33565b9150509250929050565b60008060408385031215610f5f57600080fd5b823567ffffffffffffffff80821115610f7757600080fd5b610f8386838701610e33565b93506020850135915080821115610f9957600080fd5b50610f4285828601610e33565b600060208284031215610fb857600080fd5b813567ffffffffffffffff811115610fcf57600080fd5b610fdb84828501610e33565b949350505050565b600080600060608486031215610ff857600080fd5b833567ffffffffffffffff81111561100f57600080fd5b61101b86828701610e33565b9660208601359650604090950135949350505050565b600060208083528351808285015260005b8181101561105e57858101830151858201604001528201611042565b506000604082860101526040601f19601f8301168501019250505092915050565b8082018082111561064c57634e487b7160e01b600052601160045260246000fdfea26469706673582212205bdf5bc4551862519f5370e0dcec38eefbbbe11b6a5bf19ce2846b4f8831a5dc64736f6c63430008110033", + "nonce": "0x0" + }, + "additionalContracts": [], + "isFixedGasLimit": false + }, + { + "hash": "0xda03ba9e347f44d8c7840241b7add77d8133f2fa6b764f29f842441e3c842477", + "transactionType": "CREATE", + "contractName": "MultiSendCallOnly", + "contractAddress": "0xe7f1725E7734CE288F8367e1Bb143E90bb3F0512", + "function": null, + "arguments": null, + "transaction": { + "type": "0x00", + "from": "0xf39fd6e51aad88f6f4ce6ab8827279cfffb92266", + "gas": "0x2e5c4", + "value": "0x0", + "data": "0x608060405234801561001057600080fd5b506101ae806100206000396000f3fe60806040526004361061001e5760003560e01c80638d80ff0a14610023575b600080fd5b6100366100313660046100c7565b610038565b005b805160205b818110156100ac578083015160f81c6001820184015160601c601583018501516035840186015160558501870160008560008114610082576001811461001e5761008e565b6000808585888a5af191505b508061009957600080fd5b505080605501850194505050505061003d565b505050565b634e487b7160e01b600052604160045260246000fd5b6000602082840312156100d957600080fd5b813567ffffffffffffffff808211156100f157600080fd5b818401915084601f83011261010557600080fd5b813581811115610117576101176100b1565b604051601f8201601f19908116603f0116810190838211818310171561013f5761013f6100b1565b8160405282815287602084870101111561015857600080fd5b82602086016020830137600092810160200192909252509594505050505056fea2646970667358221220c15490bbb756a4c3c49d6335b2e81d2d098647b0ea70174c2279f199b1d0800364736f6c63430008110033", + "nonce": "0x1" + }, + "additionalContracts": [], + "isFixedGasLimit": false + }, + { + "hash": "0x7e51491675b34687b526f2bbff208acca55562356b12320607f4b1e88859866e", + "transactionType": "CREATE", + "contractName": "BasicCellRenderer", + "contractAddress": "0x9fE46736679d2D9a65F0992F2272dE9f3c7fa6e0", + "function": null, + "arguments": null, + "transaction": { + "type": "0x00", + "from": "0xf39fd6e51aad88f6f4ce6ab8827279cfffb92266", + "gas": "0x3180ad", + "value": "0x0", + "data": "0x608060405234801561001057600080fd5b50612c25806100206000396000f3fe608060405234801561001057600080fd5b50600436106100365760003560e01c806306d4cd8b1461003b57806328de0f2f14610064575b600080fd5b61004e610049366004610322565b610077565b60405161005b919061038b565b60405180910390f35b61004e610072366004610404565b6100f1565b60606000610086600f846104fc565b90506000610095600f8361051e565b61009f9085610535565b905060006100ae826041610548565b60f81b9050806100c76100c2856001610548565b6101b6565b6040516020016100d8929190610577565b6040516020818303038152906040529350505050919050565b606060006100fe86610077565b905083838261018388735fbdb2315678afecb367f032d93f642f64180aa363b5cdf924909160006040518363ffffffff1660e01b81526004016101429291906105a8565b602060405180830381865af415801561015f573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906100c291906105ca565b87878660405160200161019c97969594939291906105f2565b604051602081830303815290604052915050949350505050565b606060006101c383610249565b600101905060008167ffffffffffffffff8111156101e3576101e36103a5565b6040519080825280601f01601f19166020018201604052801561020d576020820181803683370190505b5090508181016020015b600019016f181899199a1a9b1b9c1cb0b131b232b360811b600a86061a8153600a850494508461021757509392505050565b60008072184f03e93ff9f4daa797ed6e38ed64bf6a1f0160401b83106102885772184f03e93ff9f4daa797ed6e38ed64bf6a1f0160401b830492506040015b6d04ee2d6d415b85acef810000000083106102b4576d04ee2d6d415b85acef8100000000830492506020015b662386f26fc1000083106102d257662386f26fc10000830492506010015b6305f5e10083106102ea576305f5e100830492506008015b61271083106102fe57612710830492506004015b60648310610310576064830492506002015b600a831061031c576001015b92915050565b60006020828403121561033457600080fd5b5035919050565b60005b8381101561035657818101518382015260200161033e565b50506000910152565b6000815180845261037781602086016020860161033b565b601f01601f19169290920160200192915050565b60208152600061039e602083018461035f565b9392505050565b634e487b7160e01b600052604160045260246000fd5b60008083601f8401126103cd57600080fd5b50813567ffffffffffffffff8111156103e557600080fd5b6020830191508360208285010111156103fd57600080fd5b9250929050565b6000806000806060858703121561041a57600080fd5b84359350602085013567ffffffffffffffff8082111561043957600080fd5b818701915087601f83011261044d57600080fd5b81358181111561045f5761045f6103a5565b604051601f8201601f19908116603f01168101908382118183101715610487576104876103a5565b816040528281528a60208487010111156104a057600080fd5b8260208601602083013760006020848301015280975050505060408701359150808211156104cd57600080fd5b506104da878288016103bb565b95989497509550505050565b634e487b7160e01b600052601160045260246000fd5b60008261051957634e487b7160e01b600052601260045260246000fd5b500490565b808202811582820484141761031c5761031c6104e6565b8181038181111561031c5761031c6104e6565b8082018082111561031c5761031c6104e6565b6000815161056d81856020860161033b565b9290920192915050565b6001600160f81b031983168152815160009061059a81600185016020870161033b565b919091016001019392505050565b6040815260006105bb604083018561035f565b90508260208301529392505050565b6000602082840312156105dc57600080fd5b5051919050565b81818437506000910190815290565b7f646174613a6170706c69636174696f6e2f6a736f6e2c7b22646573637269707481527f696f6e223a2022537461726b7368656574222c20226e616d65223a202200000060208201528688603d8301376000878201602160f81b603d820152875161066481603e840160208c0161033b565b7f222c22696d616765223a2022646174613a696d6167652f7376672b786d6c2c25603e92909101918201527f334373766725323076696577426f782533442532373025323030253230383925605e8201527f3230353525323725323066696c6c2533442532376e6f6e65253237253230786d607e8201527f6c6e73253344253237687474702533412f2f7777772e77332e6f72672f323030609e8201527f302f737667253237253345253343646566732533452533437374796c6525334560be8201527f253430666f6e742d66616365253230253742666f6e742d66616d696c7925334160de8201527f253230253237507265737325323053746172742532303250253237253342737260fe8201527f6325334125323075726c25323825323764617461253341666f6e742f776f666661011e8201527f32253342626173653634253243643039474d6741424141414141424c3841413861013e8201527f41414141415235774141424b674141454141414141414141414141414141414161015e8201527f4141414141414141414141414150305a4756453063476a41624d42794358675a61017e8201527f6741494e794551674b3846545361517544524141424e67496b41344e4d42434161019e8201527f46687a5148684649623644566c42306a314f4d4253336f4f4953744562732f2f6101be8201527f2f6c4a776356727a47634f30676f684c45484d6369694443434e57695a6761306101de8201527f79625345555954514f6a4b427038546c737a7344526438716174586c333058746101fe8201527f30645a47467952305668444b776c62746c25324272734643773945316e64655961021e8201527f4a74732f37527762305673784d71576c636a6a775445537a2f5568752f77337361023e8201527f33746b6f496d70343464515168576f456d54337579526d70746f7553446b7a5761025e8201527f454138762f3932364a4b7539486f696e6e3673376674336d4965476c7737547161027e8201527f6437456f326a46517849766a5642494a70563269614f62547a68575932314e7461029e8201527f476772687434704d4b3457556a34624c7967542f51253242514c7879253242336102be8201527f6c482f362f6b6275496444497239446a724a496a6f394a7336524d58253242456102de8201527f6b37424f545a6b6d70397a347455524652566656307148504448375a7462364a6102fe8201527f616f6130684c335975616232473373667a72365776394536793569767025324261031e8201527f7135564c74426a514478476f5345304150313762336466376c61726a6525324261033e8201527f73637a6b7241744a334b6657304a342532424b323365744b4b556a383554616f61035e8201527f57473453346158436c427743413268676141652532423658396f696e32304e6261037e8201527f554a7264466767517049686d5247494d30372f7025324277375a7058316c473161039e8201527f6a6a51787073435141423438714445415042346950312f6a39592f4261686a356103be8201527f5943414e302f78714157496852616a6c6e694e654f50396e78433466667932556103de8201527f694843304e47386b686f6f567a6f7459334445417a417a41356b473735337a6a6103fe8201527f4853354d6e6d586b69496a6d54554d36556d4d3025324256346976752f48377861041e8201527f6a364666322f6b343472787a6449324141676742492f4c48416b394a7a35554d61043e8201527f496f4c7755344146455435725a464f33444d616655633061777351434879497061045e8201527f557a546b30784a474a454f6a4e6871436b474570496153474f6a714e466d2f5761047e8201527f4e434e3569636b71434d6e414165564c4d4c655867356971386b365752585a5261049e8201527f326c337042393831427a73475a743225324256696c4342723954494a674b67786104be8201527f365542514446253242566a4b44714e7741414948386a6949664d6e75384b68666104de8201527f584b486f4e3348634134477245786842324155442f795a554d423857547579496104fe8201527f413444634f4b656434397939504249616e426967734d454e38556b30766c547661051e8201527f304a58334e394d795a75544d763573655357413525324238556538504465547261053e8201527f645467474973566d4e33635856586a6463795275633434385866664176506e7361055e8201527f3575324d4531722532426a4731703137767a3849704f416e483444427367793361057e8201527f512f54376b33646d2f3846334232377355694877464631414f6c683055646e4961059e8201527f4471494e5164506355393145786f2f346252696a6a5169704e4e307a4c646c7a6105be8201527f504438496f547449734c38717162746f4f5149514a5a567849705931315073536105de8201527f55533231397a4c585066642f507667765751346372464d2532425769755671706105fe8201527f645a6f4e6475645872632f4745324d4a36656e3575635746694763375274364f61061e8201527f487676354d674c2532427a44733578444277696141315433554877326b63594361063e8201527f312f55666453316645316d37763742346537653350574848786533594f32483561065e8201527f25324241504f5a7965503025324251506553425468793078713965363241486a61067e8201527f6141556842432f364144484c6f476f4f657636412532426867487369317a613861069e8201527f71355a4e4d716a596c575a4d713867354248445574495370574a73526f52544a6106be8201527f56613049305a3957546b5371564b73507a3464586a7648746449684c6e7670746106de8201527f554c4330753542567579414d544b4a513930594b5267546e5769476b6d7153456106fe8201527f714b6d7256685259674b6b335443686255573671456f45637665577a6859535461071e8201527f4c32484e706735452f6d7151393956564467763352475435586d33637a68754c61073e8201527f3972685864316132372f736c5130686959366a643739614f5a43746a6f52687261075e8201527f623136575676514b725734477a786a7869723238494d697a2f7155447973495761077e8201527f7037516a667765347a556437614a735651575179524c554b484b42577938577661079e8201527f45565333584d53353656337757644f442532424638757639645477496d4b722f6107be8201527f5064626d5763775176456641616a7975566a70784e32704f56635769336c38776107de8201527f454c2f6d395070646f55494536253242504b5838315041546d67654f304231736107fe8201527f47454825324261707a353466646d534a7a333741686635366a4c7739756e504561081e8201527f35644d4b3025324237544639563843435466523979664e7355493474557a464661083e8201527f42326e536e384b4f626a64446964554c7034494a6873777878595172595a643661085e8201527f4e76436e55394d445825324252654c6e4d546d6c315a453972306b5077334e3261087e8201527f6752253242736a4573596d4953706b356c31497333594e614a4b6f6e7a65703761089e8201527f56637354316e556b62347048774b5a41796b614b6f43504630506f6d456876496108be8201527f5758656e6f5a767836774f4b313070316c3274546858793850316555776473766108de8201527f53715157766f424d7473674851554a614774494273756861776450545a5378596108fe8201527f707257757734647a7231564755744449465871726f4d4d69597346783857695461091e8201527f336463574b6f376d50554c79715657413972305974524a4c626957766a6e4c2561093e8201527f324272633452646767624e516c514141613264306d616236364d48447074314361095e8201527f6477626b51436253375053445a4d7a3746724f51713165636153304a6c74644161097e8201527f6c44527941587173364130586247707748676b70367572557757416272464d3361099e8201527f75794d764e4b6c344d6c435548537950416d3931776144454a3559595148754a6109be8201527f4d32304b575251737637486b61334770686c533258444b714f4b4245554753316109de8201527f65306b63316f323449494166486c4449794278584a4a656767423369386174566109fe8201527f67434f3064444f5a484a57596a564c416a6a397137765673456e72684b374568610a1e8201527f4c75427a42586d4d674554634531636d61436976504b6f4a766670466c794935610a3e8201527f4d70584234454325324245672f596d303454787843354e6c73596b74646f5951610a5e8201527f55656c38624673456c3748345a36734377622f38626b347458574658504b6a71610a7e8201527f5462526e64336e4c5770394f784941706c664b586747684e6c72443462354a4c610a9e8201527f5a367055753441726756614d366561357844574244476f7a707a4641376e6747610abe8201527f74596334486141775269475576637653653652414177335a576b564f4667764b610ade8201527f46364955696c4d49394964715155345134585264484866736666517770313955610afe8201527f434a49306a5773725433356f5578303678507268473271364d4533554f306c63610b1e8201527f635a557354454351784a44527854444b6c334c4948722f6162546f73686c6466610b3e8201527f51786a364f57745273466e6966444373473674336b426f344e6d424a6d615556610b5e8201527f54636c794951414a4c6a6e723042365a3859464d6e396b397967703752727848610b7e8201527f36766877624a4e41654b4d554436353974386746514a4d5377652f434f624850610b9e8201527f467671484746554e5266253242737245663354584b42725a76676b6369396972610bbe8201527f426d63442f7458616754474358634e68432532424f3539754c706e6673796f71610bde8201527f4c53313238374552776d38666165564f6d3857634437386c5a36594232793938610bfe8201527f5a4c6c4d3972557264324c514e6c324956643454727376675139363079377573610c1e8201527f5965306854506170576a71726c2532425837784665424e54253242315a644a4a610c3e8201527f572532424678745737584e7774634e7a7761672532425256656a6d4a6839656d610c5e8201527f6c495a4b69694e63694b3849554f4d33556a4a376342554e5847505853326c68610c7e8201527f253242687770676f4836567348524f63764569723372585970344c7769435a77610c9e8201527f3176486c43623552314d68623564536e4f326d6e6f475a6f5846315765574757610cbe8201527f6d7a694a314a555534715072306e694a536c4e424331636b4b6d4a6657625877610cde8201527f5577757449547a456d6a776770776142753464525066746a2f4e384143526e64610cfe8201527f616b2f4641674b674c37305058577839767a6b59322532426d34355473496b4c610d1e8201527f3037616f70444e6f676830535262535a534f397a744657516a376e574c676275610d3e8201527f364325324254374b6a44715a3667456e5277674d78306b4c5a77797962514f76610d5e8201527f514130773054782f354a42722f63595a6453574f546a774446364e6f586b796a610d7e8201527f33566a484e4751494e76426a5a734a4a3377466141516d6f5a575a5970416961610d9e8201527f574f466e6e686455524176576b557a77693062677a5a4158796f445545714863610dbe8201527f57307069454c574f777168773365765478444957724e32495371525151454c41610dde8201527f4d32365334486c723548552f48784a43436844424a6b756b6341573856415430610dfe8201527f6770545a544b4e48677a444f7234314751656a4f34677a416e6b577077464752610e1e8201527f43334c625231787a4b434875365635694674674c704f384b51596d5965467868610e3e8201527f4c32643838736469506a2f76306b427a636c51637954735766324d6445394944610e5e8201527f386d5858576a72434b253242354532756e336e6976656973526e726971317548610e7e8201527f594d6a6a69694945304b6466674d6f3163476d6b557254624f30356732737633610e9e8201527f477673525971762f61457736375472644f705435567a4641364131417939634b610ebe8201527f6f44667762544a64445750524e57517354796a6d3772486249734b466b6f4f2f610ede8201527f5a4c4376735966785973337768534338614c49344b765677373773336e347a48610efe8201527f67697061634a6e435362463945727a53357069386343577655597a4f5064327a610f1e8201527f684a2f4750437a53684f453378596c634f3350796164586a54334f6b68706841610f3e8201527f58465853766865544e5355525446565641486f4a6d7949726b6a454b6f517746610f5e8201527f4730303554334158643935764e30446d336d427332786746546c253242513572610f7e8201527f73416a6e744768707a6f62643642374e7a52664e56653130446f4e5639343753610f9e8201527f59646f635252624776636d785456786f61367a717756376d416e773544314745610fbe8201527f5474327a48382532425476514256356e37672f32615768743979794e594c3974610fde8201527f4f42744167384846435945316d4e775432454232467538544968543776565241610ffe8201527f3461587a6e6b3670545a4e6779696f73747749364b654655374c696c7041253261101e8201527f42334234474a794277574d327062466a4876734a3747754f6f616b6a6d46746a61103e8201527f59344c6254396c323239253242453646374c4475577a744c6e333749786b386a61105e8201527f356c42564b33774c7369362f416641756f6a34396c4d6b5653545045396b704761107e8201527f64304c724555534a4941413070596c4178414d642f4e4f46776f4a446458466961109e8201527f307a4f5744422f54464a705666575642574f516274724a556230636c663369256110be8201527f3242575072446f596c65545674564f45306d36793564487444725551776f414c6110de8201527f7455523365585364444d4e785866656a594674764c626c726c4a7777484b2f456110fe8201527f6957504a616b32574b35386e684e6f4c6a615a55475841756f32656f5777464561111e8201527f66612f445334496958717246714779633348726939785132693243352f73357661113e8201527f7a424d30793777334d4473774d3759325247427172464d6778374f696325324261115e8201527f30497a736d5678617a5473305263666a324f3334532f525639503269486f427561117e8201527f6c4b49594244665a46654c53356439725379664a64536c67683268644d72324f61119e8201527f5552334b6e6c506e4f41785477314a384c4d325a776e4671765a745a4a6c78786111be8201527f343873776243743272316b664875443756624831326159383849437456734b786111de8201527f4b742f31726b616c42414d74782f6f6f6d43445059626b556f4c6344624b436a6111fe8201527f7675713953544467746a584744715735564b36686347654f46697a6a3643714c61121e8201527f4f49716b57783477733245504d444e7378253242613661533230384f39784c3061123e8201527f526146586f394241645530706e452532424c695359334b536f4a41525978646e61125e8201527f7a69545a4d706961442f3438496969393834446151357976656378414673735761127e8201527f792f686274696d63253242704c386b35796f70496d4a627948712f6138797a6c61129e8201527f6c37726f4f7a586d786d4163337459585363546b65734d6344324939315a36336112be8201527f6549312f394a627755716b36737863394b52677277574d414e6543314e6e39756112de8201527f4779775473706d5538712532426c5a6d43714d674153363662674841476a514b6112fe8201527f73754a334451416a5235346d356a4c7a5a616e546c62646530253242726e663461131e8201527f385a574138546c32673277414779427748516e3552322532424e6a726542677861133e8201527f626c734e46627554776d6862414a48737a2f72416f61764c4f34317874767a5961135e8201527f4768336e4c4a426b41506a7578424a445248333048426575385567436978464e61137e8201527f437951322f4b253242385157372f6530253242664f2532423436524e5730657961139e8201527f4c726f39446a5467704a4e4d3547385179306c54644f756d73773066715045696113be8201527f393646702532424830634d774e6f376a787a596d6e4e664d5a6d64506c7932706113de8201527f6f7132575065476d67507136474c78504e34536c4b486e7870624f69754c58516113fe8201527f75583155715031676a6f38426136536c55314f416d5267707a7531735444584a61141e8201527f50754d3338546f387130344c324e777970653837327777556741675a6c70386461143e8201527f6b5166397a38544d43624d6b596b3758484375333564375a5a41656f346b5a4b61145e8201527f68784953386945354c546a334c4f6976485a7268394a3870337a4c5a436a776361147e8201527f6970354452694b6e576e49664c33386b4a684d7452776a67553525324256726d61149e8201527f714b6c6739307a376a64732f4238444b646b464c76483353253242376f4838616114be8201527f6c445a6c626734533155583574434d445342324f364b756c7a41344b763067376114de8201527f314251643054464b7733685358696e62374e6c304258725873514e6376436b386114fe8201527f6d6f394f786965783559627a78564e2f6b3738336f48545a495777393079495a61151e8201527f777672697164475473586e54384965705437597946434f4a6741395a3042794961153e8201527f455956735478522f6b73616b324268376f4b767034766e695530364d57317a4261155e8201527f4672746568647a306b6b587951786a426d7965645636644d596545386146787461157e8201527f6575777355466136466c6c54446c716430707a525a77473663467266574d627061159e8201527f384738587a6a66624d253242354658657076356f457273696c363458783663376115be8201527f5841576275696d3666387347494d58666f334a6971476b703333376854536a676115de8201527f65636862364f42472f327a31376a6f6d4469476d253242476c623146553069656115fe8201527f6e7552796977654c576767447a6d4655765545556a5a6f377356544877684f4661161e8201527f504d6b4e737146423977796d6b45307639666d7477453854377135384e594f3761163e8201527f787534623833766e46766c35755378446c472532426b4f51675249644f346a6761165e8201527f7a786a53486a4b4c7332742f6c684f647771766131415744437072763344345361167e8201527f34523741625934544362664b4637744265363554343551347a7a49714433316161169e8201527f79797557716a692532424636585337535439483943314f342f694b366b4775766116be8201527f6b512f664e3537487837456533373435622f76766e2f62482f58253242392f256116de8201527f32426762656d684f416d49705576755157757344764b517578394a44564e734b6116fe8201527f673651636d6b73515341445530346347524c523768466f5a326337785545664761171e8201527f253242776b755459474d764c6a422f6550634936416847686e5735717a45416961173e8201527f4a586377564545775869654e70536c317a6a457253253242435325324248634c61175e8201527f6f52506d7661324d6767412f69794c67536f544a555767733442794149514f3061177e8201527f4f6f705a487656627a6844494c65557155677a7a48492f667950474e7879777361179e8201527f6f796c6865534639577662795363336b4544716b32415636436c4364635535536117be8201527f6e6c4e6e4963394b794d63384c79622532423867484f4a795173466c4c6250526117de8201527f796d6d374a42743349545a544162314732444252496b514b51705451396939626117fe8201527f3665435353387a4d366161525364544b5657524d336663454a4c644b61746e7361181e8201527f724959774e4a55253242733048364461757832775a35686733706c653042474861183e8201527f756b316b4543734859446461496d4b7025324233463542317859763763486b7161185e8201527f644475306a4b645273657a3531376d63563641685148346931484e3173766c6a61187e8201527f5248366845454672682532426e72726d47316e33307a4d346749776d694d774561189e8201527f624b6842545564423141486f582532424b6741517a4f48543946494f71436b526118be8201527f4e4e623273397170496943534f753167576868497343564a73765771457175356118de8201527f47624a514b4e6a61427465394c4f69676368414a7665475773394332323033766118fe8201527f6f6e476c6b77725251323464646732796345646157554456734441785548734961191e8201527f77773665615234464665336d4a416b66426d5a6452395264774a485a6d47645261193e8201527f7950436a706a627a31712f584a34534949446b66384b4b6e6e32456c4b6d794c61195e8201527f69573442513836733151554b2f76426867524e776548766c5968687a7238706361197e8201527f67704b4b6d6f61576a7036426b594f48446c7835734b5647336365474539657661199e8201527f506e773563646667454242676f554946536238587632504553314772446a78456119be8201527f69524b6b697846716a54704d6d544b6b693148726a7a354368517155717845716119de8201527f544c6c4b6c53715571314772547231476a527130717846717a62744f6e5347656119fe8201527f3668374a6d627a4968355a6544696c315a58536a7430774375616b336c6e476f611a1e8201527f5655506f53734e663337394b326a6274716d44674d69485a42665a6c68324839611a3e8201527f75773738495469314a466a585653662f4336634f55667a346f30644178305447611a5e8201527f777448446863666a3443516d49694531444d5a42546b6c4e5a557065566f614f611a7e8201527f6e717633733234314e50503965766574594768435a50576a4979747332706173611a9e8201527f436a25324270556a54596c336b615574374f744b4a6136355850396d356e6367611abe8201527f364e686a685a587032762532426d57724341545a754a303368316b6a55756976611ade8201527f5067596e6a6e35744b4a4f6b326e6362703251414559585a69304b496d50356b611afe8201527f744961466e366b5a397743253237253239253230666f726d6174253238253237611b1e8201527f776f666632253237253239253342666f6e742d7765696768742533412532306e611b3e8201527f6f726d616c253342666f6e742d7374796c652533412532306e6f726d616c2533611b5e8201527f42666f6e742d646973706c617925334125323073776170253342253744746578611b7e8201527f74253230253742666f6e742d66616d696c792533412532302532375072657373611b9e8201527f2532305374617274253230325025323725334266696c6c253341253230776869611bbe8201527f74652537442e76616c7565253230253742666f6e742d73697a65253341253230611bde8201527f313070782533422537442e6e616d65253230253742666f6e742d73697a652533611bfe8201527f412532303470782533422537442533432f7374796c652533452533432f646566611c1e8201527f7325334525334372656374253230776964746825334425323738392532372532611c3e8201527f30686569676874253344253237353525323725323066696c6c25334425323762611c5e8201527f6c61636b2532372532302f253345253343726563742532307825334425323735611c7e8201527f2e3525323725323079253344253237352e352532372532307769647468253344611c9e8201527f2532373738253237253230686569676874253344253237343425323725323066611cbe8201527f696c6c2533442532372532333030303046462532372532302f25334525334374611cde8201527f657874253230746578742d616e63686f722533442532376d6964646c65253237611cfe8201527f2532307825334425323734342e35253237253230792533442532373333253237611d1e8201527f253230636c61737325334425323776616c756525323725334500000000000000611d3e820152612ba5612b9e6129f5611d5784018a61055b565b7f2533432f746578742533452533437265637425323078253344253237352e352581527f323725323079253344253237352e35253237253230776964746825334425323760208201527f373825323725323068656967687425334425323734342532372532307374726f60408201527f6b652533442532372532334646344630412532372532307374726f6b652d776960608201527f647468253344253237332532372532302f25334525334372656374253230782560808201527f334425323733302532372532307925334425323734352e35253237253230776960a08201527f647468253344253237353825323725323068656967687425334425323738253260c08201527f3725323066696c6c2533442532372532334646344630412532372532302f253360e08201527f4525334374657874253230746578742d616e63686f72253344253237656e64256101008201527f32372532307825334425323738372532372532307925334425323735322532376101208201527f253230636c6173732533442532376e616d6525323725334500000000000000006101408201526101580190565b86886105e3565b602160f81b81529050612bbb600182018561055b565b7f2533432f746578742533452533432f737667253345227d00000000000000000081526017019a995050505050505050505056fea26469706673582212206a2c00c13ddb4f1bcd7ee36e36f0c874d7d9dadcf38306eab3610b5a6e7af83464736f6c63430008110033", + "nonce": "0x2" + }, + "additionalContracts": [], + "isFixedGasLimit": false + }, + { + "hash": "0x59d43126b5c7acdd9e803b16ac4d2bda09874f2c5559f6b3c198e3390c0f09fb", + "transactionType": "CREATE", + "contractName": null, + "contractAddress": "0xCf7Ed3AccA5a467e9e704C703E8D87F634fB0Fc9", + "function": null, + "arguments": null, + "transaction": { + "type": "0x00", + "from": "0xf39fd6e51aad88f6f4ce6ab8827279cfffb92266", + "gas": "0x42230", + "value": "0x0", + "data": "0x608060405234801561001057600080fd5b506102cf806100206000396000f3fe608060405234801561001057600080fd5b506004361061004c5760003560e01c80630194db8e14610051578063072bdcc214610076578063a391c15b14610089578063b67d77c51461009c575b600080fd5b61006461005f366004610160565b6100af565b60405190815260200160405180910390f35b610064610084366004610160565b6100ef565b61006461009736600461021e565b610129565b6100646100aa36600461021e565b61013e565b600080805b83518110156100e8578381815181106100cf576100cf610240565b60200260200101518201915080806001019150506100b4565b5092915050565b60006001815b83518110156100e85783818151811061011057610110610240565b60200260200101518202915080806001019150506100f5565b60006101358284610256565b90505b92915050565b60006101358284610278565b634e487b7160e01b600052604160045260246000fd5b6000602080838503121561017357600080fd5b823567ffffffffffffffff8082111561018b57600080fd5b818501915085601f83011261019f57600080fd5b8135818111156101b1576101b161014a565b8060051b604051601f19603f830116810181811085821117156101d6576101d661014a565b6040529182528482019250838101850191888311156101f457600080fd5b938501935b82851015610212578435845293850193928501926101f9565b98975050505050505050565b6000806040838503121561023157600080fd5b50508035926020909101359150565b634e487b7160e01b600052603260045260246000fd5b60008261027357634e487b7160e01b600052601260045260246000fd5b500490565b8181038181111561013857634e487b7160e01b600052601160045260246000fdfea2646970667358221220fcdef23ba4219270ddb3ab764e22a87e229c05e6f1dfc4eeea983fa1a1dac91f64736f6c63430008110033", + "nonce": "0x3" + }, + "additionalContracts": [], + "isFixedGasLimit": false + }, + { + "hash": "0xc4cbd208697fdc60cf5752654b05f845e3a8127a9d95c4625ca407435d5858db", + "transactionType": "CREATE", + "contractName": "Evmsheet", + "contractAddress": "0xDc64a140Aa3E981100a9becA4E685f962f0cF6C9", + "function": null, + "arguments": [ + "0x9fE46736679d2D9a65F0992F2272dE9f3c7fa6e0", + "10000000000000000" + ], + "transaction": { + "type": "0x00", + "from": "0xf39fd6e51aad88f6f4ce6ab8827279cfffb92266", + "gas": "0x34bf99", + "value": "0x0", + "data": "0x608060405234801561001057600080fd5b50604051612ed9380380612ed983398101604081905261002f916100b1565b61003833610061565b600280546001600160a01b0319166001600160a01b0393909316929092179091556001556100eb565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b600080604083850312156100c457600080fd5b82516001600160a01b03811681146100db57600080fd5b6020939093015192949293505050565b612ddf806100fa6000396000f3fe608060405260043610620000a95760003560e01c80638da5cb5b116200006c5780638da5cb5b146200016d578063ab2fa65a146200018d578063ae28505e14620001b4578063c56c4cf114620001d9578063f2fde38b14620001fb578063f52be2a2146200022057600080fd5b806303fb31e814620000ae5780631164c83d14620000d5578063145e414714620000ec5780635787cacb146200012e578063715018a61462000155575b600080fd5b348015620000bb57600080fd5b50620000d3620000cd36600462000778565b62000247565b005b620000d3620000e6366004620007e9565b62000273565b348015620000f957600080fd5b50620001116200010b36600462000864565b620004b2565b6040516001600160a01b0390911681526020015b60405180910390f35b3480156200013b57600080fd5b50620001466200054f565b60405162000125919062000891565b3480156200016257600080fd5b50620000d3620005b3565b3480156200017a57600080fd5b506000546001600160a01b031662000111565b3480156200019a57600080fd5b50620001a5620005cb565b604051620001259190620008e0565b348015620001c157600080fd5b5062000111620001d336600462000930565b620005f7565b348015620001e657600080fd5b5060025462000111906001600160a01b031681565b3480156200020857600080fd5b50620000d36200021a36600462000778565b62000622565b3480156200022d57600080fd5b506200023860015481565b60405190815260200162000125565b62000251620006a1565b600280546001600160a01b0319166001600160a01b0392909216919091179055565b60015434146200029d5760405163723a79e360e11b81523460048201526024015b60405180910390fd5b600060405180602001620002b1906200074d565b6020820181038252601f19601f8201166040525090506000828251602084016000f56002546040516356d3163d60e01b81526001600160a01b0391821660048201529192508216906356d3163d90602401600060405180830381600087803b1580156200031d57600080fd5b505af115801562000332573d6000803e3d6000fd5b505060405163c47f002760e01b81526001600160a01b038416925063c47f0027915062000366908a908a906004016200094a565b600060405180830381600087803b1580156200038157600080fd5b505af115801562000396573d6000803e3d6000fd5b5050604051635c26412360e11b81526001600160a01b038416925063b84c82469150620003ca90889088906004016200094a565b600060405180830381600087803b158015620003e557600080fd5b505af1158015620003fa573d6000803e3d6000fd5b505060405163f2fde38b60e01b81523260048201526001600160a01b038416925063f2fde38b9150602401600060405180830381600087803b1580156200044057600080fd5b505af115801562000455573d6000803e3d6000fd5b5050600380546001810182556000919091527fc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b0180546001600160a01b0319166001600160a01b0394909416939093179092555050505050505050565b600060ff60f81b838360405180602001620004cd906200074d565b6020820181038252601f19601f82011660405250805190602001206040516020016200053094939291906001600160f81b031994909416845260609290921b6bffffffffffffffffffffffff191660018401526015830152603582015260550190565b60408051601f1981840301815291905280516020909101209392505050565b60606003805480602002602001604051908101604052809291908181526020018280548015620005a957602002820191906000526020600020905b81546001600160a01b031681526001909101906020018083116200058a575b5050505050905090565b620005bd620006a1565b620005c96000620006fd565b565b606060405180602001620005df906200074d565b601f1982820381018352601f90910116604052919050565b600381815481106200060857600080fd5b6000918252602090912001546001600160a01b0316905081565b6200062c620006a1565b6001600160a01b038116620006935760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b606482015260840162000294565b6200069e81620006fd565b50565b6000546001600160a01b03163314620005c95760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015260640162000294565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b612430806200097a83390190565b80356001600160a01b03811681146200077357600080fd5b919050565b6000602082840312156200078b57600080fd5b62000796826200075b565b9392505050565b60008083601f840112620007b057600080fd5b50813567ffffffffffffffff811115620007c957600080fd5b602083019150836020828501011115620007e257600080fd5b9250929050565b6000806000806000606086880312156200080257600080fd5b853567ffffffffffffffff808211156200081b57600080fd5b6200082989838a016200079d565b909750955060208801359150808211156200084357600080fd5b5062000852888289016200079d565b96999598509660400135949350505050565b600080604083850312156200087857600080fd5b62000883836200075b565b946020939093013593505050565b6020808252825182820181905260009190848201906040850190845b81811015620008d45783516001600160a01b031683529284019291840191600101620008ad565b50909695505050505050565b600060208083528351808285015260005b818110156200090f57858101830151858201604001528201620008f1565b506000604082860101526040601f19601f8301168501019250505092915050565b6000602082840312156200094357600080fd5b5035919050565b60208152816020820152818360408301376000818301604090810191909152601f909201601f1916010191905056fe60806040523480156200001157600080fd5b50604051806040016040528060078152602001660536865657420360cc1b815250604051806040016040528060048152602001630534854360e41b81525062000069620000636200008f60201b60201c565b62000093565b600162000077838262000188565b50600262000086828262000188565b50505062000254565b3390565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b634e487b7160e01b600052604160045260246000fd5b600181811c908216806200010e57607f821691505b6020821081036200012f57634e487b7160e01b600052602260045260246000fd5b50919050565b601f8211156200018357600081815260208120601f850160051c810160208610156200015e5750805b601f850160051c820191505b818110156200017f578281556001016200016a565b5050505b505050565b81516001600160401b03811115620001a457620001a4620000e3565b620001bc81620001b58454620000f9565b8462000135565b602080601f831160018114620001f45760008415620001db5750858301515b600019600386901b1c1916600185901b1785556200017f565b600085815260208120601f198616915b82811015620002255788860151825594840194600190910190840162000204565b5085821015620002445787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b6121cc80620002646000396000f3fe608060405234801561001057600080fd5b50600436106102275760003560e01c8063715018a611610130578063b85d8b85116100b8578063cf0983981161007c578063cf09839814610512578063cfbe95d814610535578063df4ca20614610556578063e985e9c514610576578063f2fde38b146105a457600080fd5b8063b85d8b85146104a4578063b88d4fde146104ce578063b8c368ec146104e1578063c47f0027146104ec578063c87b56dd146104ff57600080fd5b806395d89b41116100ff57806395d89b4114610439578063a22cb46514610441578063b46ebb1214610454578063b6d658e114610467578063b84c82461461049157600080fd5b8063715018a6146103fa578063768d5029146104025780638ada6b0f146104155780638da5cb5b1461042857600080fd5b80631b06443c116101b35780634f6ccce7116101825780634f6ccce71461038157806356d3163d146103a15780636352211e146103b45780636a0abc74146103c757806370a08231146103e757600080fd5b80631b06443c14610335578063206848f61461034857806323b872dd1461035b57806342842e0e1461036e57600080fd5b8063081812fc116101fa578063081812fc146102a1578063095ea7b3146102e2578063172b9eed146102f757806318160ddd1461030a5780631941fd141461031357600080fd5b806301ffc9a71461022c57806302f3c4c91461025457806306fdde03146102745780630715a24a1461027c575b600080fd5b61023f61023a36600461176a565b6105b7565b60405190151581526020015b60405180910390f35b610267610262366004611861565b610609565b60405161024b9190611951565b610267610638565b6102936fffffffffffffffffffffffffffffffff81565b60405190815260200161024b565b6102ca6102af366004611964565b6005602052600090815260409020546001600160a01b031681565b6040516001600160a01b03909116815260200161024b565b6102f56102f036600461197d565b6106c6565b005b6102676103053660046119a9565b6107ad565b61029360075481565b610326610321366004611964565b610875565b60405161024b939291906119de565b6102ca610343366004611a0e565b61092a565b610326610356366004611964565b6109e3565b6102f5610369366004611a2b565b610ae1565b6102f561037c366004611a2b565b610ca8565b61029361038f366004611964565b60086020526000908152604090205481565b6102f56103af366004611a0e565b610da0565b6102ca6103c2366004611964565b610dca565b6103da6103d53660046119a9565b610e1c565b60405161024b9190611a6c565b6102936103f5366004611a0e565b610e60565b6102f5610ec3565b6102f5610410366004611af9565b610ed7565b6009546102ca906001600160a01b031681565b6000546001600160a01b03166102ca565b610267611035565b6102f561044f366004611b63565b611042565b610267610462366004611964565b6110ae565b61047a610475366004611964565b611258565b60408051921515835260208301919091520161024b565b6102f561049f366004611ba1565b611275565b6104b56104b2366004611964565b90565b6040516001600160e01b0319909116815260200161024b565b6102f56104dc366004611be3565b6112c6565b6102ca600160801b81565b6102f56104fa366004611ba1565b6113ae565b61026761050d366004611964565b6113ff565b61023f610520366004611a0e565b600160801b6001600160a01b03919091161090565b61023f610543366004611861565b516001600160a01b0316600160801b1490565b610569610564366004611964565b6114c9565b60405161024b9190611c16565b61023f610584366004611c4d565b600660209081526000928352604080842090915290825290205460ff1681565b6102f56105b2366004611a0e565b611526565b60006301ffc9a760e01b6001600160e01b0319831614806105e857506380ac58cd60e01b6001600160e01b03198316145b806106035750635b5e139f60e01b6001600160e01b03198316145b92915050565b6060816020015160405160200161062291815260200190565b6040516020818303038152906040529050919050565b6001805461064590611c7b565b80601f016020809104026020016040519081016040528092919081815260200182805461067190611c7b565b80156106be5780601f10610693576101008083540402835291602001916106be565b820191906000526020600020905b8154815290600101906020018083116106a157829003601f168201915b505050505081565b6000818152600360205260409020546001600160a01b03163381148061070f57506001600160a01b038116600090815260066020908152604080832033845290915290205460ff165b6107515760405162461bcd60e51b815260206004820152600e60248201526d1393d517d055551213d49256915160921b60448201526064015b60405180910390fd5b60008281526005602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b606060006107ba83610e1c565b9050606060005b825181101561086d576000806107ef8584815181106107e2576107e2611cb5565b6020026020010151611258565b9150915081156108335783610803826110ae565b61080c90611ccb565b60405160200161081d929190611cef565b6040516020818303038152906040529350610858565b6040516108469085908390602001611cef565b60405160208183030381529060405293505b5050808061086590611d27565b9150506107c1565b509392505050565b600a602052600090815260409020805460018201546002830180546001600160a01b039093169391926108a790611c7b565b80601f01602080910402602001604051908101604052809291908181526020018280546108d390611c7b565b80156109205780601f106108f557610100808354040283529160200191610920565b820191906000526020600020905b81548152906001019060200180831161090357829003601f168201915b5050505050905083565b6000600160801b6001600160a01b03831610156109da576000610955836001600160a01b03166110ae565b604051632d737e4960e21b8152909150735fbdb2315678afecb367f032d93f642f64180aa39063b5cdf92490610992908490600090600401611d40565b602060405180830381865af41580156109af573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906109d39190611d62565b9392505050565b5090565b919050565b60008181526003602052604081205481906060906001600160a01b0316610a1057600160801b9250610a2b565b6000848152600a60205260409020546001600160a01b031692505b6000848152600a60205260409020600181015460029091018054859291908190610a5490611c7b565b80601f0160208091040260200160405190810160405280929190818152602001828054610a8090611c7b565b8015610acd5780601f10610aa257610100808354040283529160200191610acd565b820191906000526020600020905b815481529060010190602001808311610ab057829003601f168201915b505050505090509250925092509193909250565b6000818152600360205260409020546001600160a01b03848116911614610b375760405162461bcd60e51b815260206004820152600a60248201526957524f4e475f46524f4d60b01b6044820152606401610748565b6001600160a01b038216610b815760405162461bcd60e51b81526020600482015260116024820152701253959053125117d49150d25412515395607a1b6044820152606401610748565b336001600160a01b0384161480610bbb57506001600160a01b038316600090815260066020908152604080832033845290915290205460ff165b80610bdc57506000818152600560205260409020546001600160a01b031633145b610c195760405162461bcd60e51b815260206004820152600e60248201526d1393d517d055551213d49256915160921b6044820152606401610748565b6001600160a01b0380841660008181526004602090815260408083208054600019019055938616808352848320805460010190558583526003825284832080546001600160a01b03199081168317909155600590925284832080549092169091559251849392917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b610cb3838383610ae1565b6001600160a01b0382163b1580610d5c5750604051630a85bd0160e11b8082523360048301526001600160a01b03858116602484015260448301849052608060648401526000608484015290919084169063150b7a029060a4016020604051808303816000875af1158015610d2c573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610d509190611d7b565b6001600160e01b031916145b610d9b5760405162461bcd60e51b815260206004820152601060248201526f155394d0519157d49150d2541251539560821b6044820152606401610748565b505050565b610da861159f565b600980546001600160a01b0319166001600160a01b0392909216919091179055565b6000818152600360205260409020546001600160a01b0316806109de5760405162461bcd60e51b815260206004820152600a6024820152691393d517d3525395115160b21b6044820152606401610748565b60608082516040519150602081048252602082016020850160005b83811015610e4f578181015183820152602001610e37565b505050810160200160405292915050565b60006001600160a01b038216610ea75760405162461bcd60e51b815260206004820152600c60248201526b5a45524f5f4144445245535360a01b6044820152606401610748565b506001600160a01b031660009081526004602052604090205490565b610ecb61159f565b610ed560006115f9565b565b6000858152600360205260409020546001600160a01b0316610f2f57610efd3286611649565b60078054600090815260086020526040812087905581546001929190610f24908490611d98565b90915550610f889050565b6000858152600360205260409020546001600160a01b03163214610f8857600085815260036020526040908190205490516324f3f02560e21b81526001600160a01b039091166004820152326024820152604401610748565b6040518060600160405280856001600160a01b0316815260200184815260200183838080601f0160208091040260200160405190810160405280939291908181526020018383808284376000920182905250939094525050878152600a6020908152604091829020845181546001600160a01b0319166001600160a01b0390911617815590840151600182015590830151909150600282019061102b9082611df9565b5050505050505050565b6002805461064590611c7b565b3360008181526006602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b6000818152600a6020908152604080832081516060818101845282546001600160a01b0316825260018301549482019490945260028201805494959491938401916110f890611c7b565b80601f016020809104026020016040519081016040528092919081815260200182805461112490611c7b565b80156111715780601f1061114657610100808354040283529160200191611171565b820191906000526020600020905b81548152906001019060200180831161115457829003601f168201915b505050505081525050905061119381516001600160a01b0316600160801b1490565b156111a1576109d381610609565b60006111b0826000015161092a565b905060006111bf836020015190565b905060006111d084604001516107ad565b90506000836001600160a01b031683836040516020016111f1929190611eb9565b60408051601f198184030181529082905261120b91611eea565b600060405180830381855afa9150503d8060008114611246576040519150601f19603f3d011682016040523d82523d6000602084013e61124b565b606091505b5098975050505050505050565b600080611266600284611f06565b60019081149493901c92915050565b61127d61159f565b7f8dca0271872d00b3de3abafca544c52fcd7d512dd852c9894fa2c118ac759a93600283836040516112b193929190611fce565b60405180910390a16002610d9b828483611ffe565b6112d1858585610ae1565b6001600160a01b0384163b15806113685750604051630a85bd0160e11b808252906001600160a01b0386169063150b7a02906113199033908a908990899089906004016120be565b6020604051808303816000875af1158015611338573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061135c9190611d7b565b6001600160e01b031916145b6113a75760405162461bcd60e51b815260206004820152601060248201526f155394d0519157d49150d2541251539560821b6044820152606401610748565b5050505050565b6113b661159f565b7fb65b7b5ea384affd30f77f842e057d29dd1b13f133adf69a724a8105b164ab75600183836040516113ea93929190611fce565b60405180910390a16001610d9b828483611ffe565b6000818152600360205260409020546060906001600160a01b03168061143b57604051630243d1a960e21b815260048101849052602401610748565b6000611446846110ae565b6009546040516328de0f2f60e01b81529192506001600160a01b0316906328de0f2f9061147c90879085906001906004016120fd565b600060405180830381865afa158015611499573d6000803e3d6000fd5b505050506040513d6000823e601f3d908101601f191682016040526114c19190810190612128565b949350505050565b604080516060808201835260008083526020830181905292820152906114ee836110ae565b6040805160608101825285815260009586526003602090815295829020546001600160a01b0316958101959095528401525090919050565b61152e61159f565b6001600160a01b0381166115935760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610748565b61159c816115f9565b50565b6000546001600160a01b03163314610ed55760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610748565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b6001600160a01b0382166116935760405162461bcd60e51b81526020600482015260116024820152701253959053125117d49150d25412515395607a1b6044820152606401610748565b6000818152600360205260409020546001600160a01b0316156116e95760405162461bcd60e51b815260206004820152600e60248201526d1053149150511657d3525395115160921b6044820152606401610748565b6001600160a01b038216600081815260046020908152604080832080546001019055848352600390915280822080546001600160a01b0319168417905551839291907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b6001600160e01b03198116811461159c57600080fd5b60006020828403121561177c57600080fd5b81356109d381611754565b634e487b7160e01b600052604160045260246000fd5b604051601f8201601f1916810167ffffffffffffffff811182821017156117c6576117c6611787565b604052919050565b6001600160a01b038116811461159c57600080fd5b600067ffffffffffffffff8211156117fd576117fd611787565b50601f01601f191660200190565b600082601f83011261181c57600080fd5b813561182f61182a826117e3565b61179d565b81815284602083860101111561184457600080fd5b816020850160208301376000918101602001919091529392505050565b60006020828403121561187357600080fd5b813567ffffffffffffffff8082111561188b57600080fd5b908301906060828603121561189f57600080fd5b6040516060810181811083821117156118ba576118ba611787565b60405282356118c8816117ce565b8152602083810135908201526040830135828111156118e657600080fd5b6118f28782860161180b565b60408301525095945050505050565b60005b8381101561191c578181015183820152602001611904565b50506000910152565b6000815180845261193d816020860160208601611901565b601f01601f19169290920160200192915050565b6020815260006109d36020830184611925565b60006020828403121561197657600080fd5b5035919050565b6000806040838503121561199057600080fd5b823561199b816117ce565b946020939093013593505050565b6000602082840312156119bb57600080fd5b813567ffffffffffffffff8111156119d257600080fd5b6114c18482850161180b565b60018060a01b0384168152826020820152606060408201526000611a056060830184611925565b95945050505050565b600060208284031215611a2057600080fd5b81356109d3816117ce565b600080600060608486031215611a4057600080fd5b8335611a4b816117ce565b92506020840135611a5b816117ce565b929592945050506040919091013590565b6020808252825182820181905260009190848201906040850190845b81811015611aa457835183529284019291840191600101611a88565b50909695505050505050565b60008083601f840112611ac257600080fd5b50813567ffffffffffffffff811115611ada57600080fd5b602083019150836020828501011115611af257600080fd5b9250929050565b600080600080600060808688031215611b1157600080fd5b853594506020860135611b23816117ce565b935060408601359250606086013567ffffffffffffffff811115611b4657600080fd5b611b5288828901611ab0565b969995985093965092949392505050565b60008060408385031215611b7657600080fd5b8235611b81816117ce565b915060208301358015158114611b9657600080fd5b809150509250929050565b60008060208385031215611bb457600080fd5b823567ffffffffffffffff811115611bcb57600080fd5b611bd785828601611ab0565b90969095509350505050565b600080600080600060808688031215611bfb57600080fd5b8535611c06816117ce565b94506020860135611b23816117ce565b602081528151602082015260018060a01b036020830151166040820152600060408301516060808401526114c16080840182611925565b60008060408385031215611c6057600080fd5b8235611c6b816117ce565b91506020830135611b96816117ce565b600181811c90821680611c8f57607f821691505b602082108103611caf57634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052603260045260246000fd5b80516020808301519190811015611caf5760001960209190910360031b1b16919050565b60008351611d01818460208801611901565b9190910191825250602001919050565b634e487b7160e01b600052601160045260246000fd5b600060018201611d3957611d39611d11565b5060010190565b604081526000611d536040830185611925565b90508260208301529392505050565b600060208284031215611d7457600080fd5b5051919050565b600060208284031215611d8d57600080fd5b81516109d381611754565b8082018082111561060357610603611d11565b601f821115610d9b57600081815260208120601f850160051c81016020861015611dd25750805b601f850160051c820191505b81811015611df157828155600101611dde565b505050505050565b815167ffffffffffffffff811115611e1357611e13611787565b611e2781611e218454611c7b565b84611dab565b602080601f831160018114611e5c5760008415611e445750858301515b600019600386901b1c1916600185901b178555611df1565b600085815260208120601f198616915b82811015611e8b57888601518255948401946001909101908401611e6c565b5085821015611ea95787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b6001600160e01b0319831681528151600090611edc816004850160208701611901565b919091016004019392505050565b60008251611efc818460208701611901565b9190910192915050565b600082611f2357634e487b7160e01b600052601260045260246000fd5b500690565b60008154611f3581611c7b565b808552602060018381168015611f525760018114611f6c57611f9a565b60ff1985168884015283151560051b880183019550611f9a565b866000528260002060005b85811015611f925781548a8201860152908301908401611f77565b890184019650505b505050505092915050565b81835281816020850137506000828201602090810191909152601f909101601f19169091010190565b604081526000611fe16040830186611f28565b8281036020840152611ff4818587611fa5565b9695505050505050565b67ffffffffffffffff83111561201657612016611787565b61202a836120248354611c7b565b83611dab565b6000601f84116001811461205e57600085156120465750838201355b600019600387901b1c1916600186901b1783556113a7565b600083815260209020601f19861690835b8281101561208f578685013582556020948501946001909201910161206f565b50868210156120ac5760001960f88860031b161c19848701351681555b505060018560011b0183555050505050565b6001600160a01b03868116825285166020820152604081018490526080606082018190526000906120f29083018486611fa5565b979650505050505050565b8381526060602082015260006121166060830185611925565b8281036040840152611ff48185611f28565b60006020828403121561213a57600080fd5b815167ffffffffffffffff81111561215157600080fd5b8201601f8101841361216257600080fd5b805161217061182a826117e3565b81815285602083850101111561218557600080fd5b611a0582602083016020860161190156fea26469706673582212203fc548aa4f22e6f4c01757ba3f2e0383630418b3d17601758718ab19a4d9918d64736f6c63430008110033a26469706673582212207932e8c793f9a96d9606a8907a6671f54c0fb1ed5a763048e13b429274e7706c64736f6c634300081100330000000000000000000000009fe46736679d2d9a65f0992f2272de9f3c7fa6e0000000000000000000000000000000000000000000000000002386f26fc10000", + "nonce": "0x4" + }, + "additionalContracts": [], + "isFixedGasLimit": false + } + ], + "receipts": [ + { + "transactionHash": "0x6725d3958508bc0654f8e7d059c6207019e417821da638431a43f90a577f173b", + "transactionIndex": "0x0", + "blockHash": "0xb9bdcfe2ec719c182b6e809c3db3cb96d931b63a8506f305c65fc687fd0d6a0d", + "blockNumber": "0x1", + "from": "0xf39Fd6e51aad88F6F4ce6aB8827279cffFb92266", + "to": null, + "cumulativeGasUsed": "0xf072b", + "gasUsed": "0xf072b", + "contractAddress": "0x5FbDB2315678afecb367f032d93F642f64180aa3", + "logs": [], + "status": "0x1", + "logsBloom": "0x00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", + "effectiveGasPrice": "0x77359400" + }, + { + "transactionHash": "0xda03ba9e347f44d8c7840241b7add77d8133f2fa6b764f29f842441e3c842477", + "transactionIndex": "0x0", + "blockHash": "0xddc57cff67a8840816a729831ac81cae7f5c0aed5d82ee0fc295751da9a27d29", + "blockNumber": "0x2", + "from": "0xf39Fd6e51aad88F6F4ce6aB8827279cffFb92266", + "to": null, + "cumulativeGasUsed": "0x23ab5", + "gasUsed": "0x23ab5", + "contractAddress": "0xe7f1725E7734CE288F8367e1Bb143E90bb3F0512", + "logs": [], + "status": "0x1", + "logsBloom": "0x00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", + "effectiveGasPrice": "0x77359400" + }, + { + "transactionHash": "0x7e51491675b34687b526f2bbff208acca55562356b12320607f4b1e88859866e", + "transactionIndex": "0x0", + "blockHash": "0x6ef9d82b740b0eaad62c329da9eece9bc3284c3d3743e0087fc49d1b3b1dc384", + "blockNumber": "0x3", + "from": "0xf39Fd6e51aad88F6F4ce6aB8827279cffFb92266", + "to": null, + "cumulativeGasUsed": "0x2616fd", + "gasUsed": "0x2616fd", + "contractAddress": "0x9fE46736679d2D9a65F0992F2272dE9f3c7fa6e0", + "logs": [], + "status": "0x1", + "logsBloom": "0x00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", + "effectiveGasPrice": "0x77359400" + }, + { + "transactionHash": "0x59d43126b5c7acdd9e803b16ac4d2bda09874f2c5559f6b3c198e3390c0f09fb", + "transactionIndex": "0x0", + "blockHash": "0x2e8e1fd1f800c4385b2db8768411a3c9422be5d34790712a1daccf5ca3d68e0a", + "blockNumber": "0x4", + "from": "0xf39Fd6e51aad88F6F4ce6aB8827279cffFb92266", + "to": null, + "cumulativeGasUsed": "0x32e2e", + "gasUsed": "0x32e2e", + "contractAddress": "0xCf7Ed3AccA5a467e9e704C703E8D87F634fB0Fc9", + "logs": [], + "status": "0x1", + "logsBloom": "0x00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", + "effectiveGasPrice": "0x77359400" + }, + { + "transactionHash": "0xc4cbd208697fdc60cf5752654b05f845e3a8127a9d95c4625ca407435d5858db", + "transactionIndex": "0x0", + "blockHash": "0x2f668a1d5eb5537c4f946056716ad435d58957ed13a64f3774423b3d71475f2c", + "blockNumber": "0x5", + "from": "0xf39Fd6e51aad88F6F4ce6aB8827279cffFb92266", + "to": null, + "cumulativeGasUsed": "0x289654", + "gasUsed": "0x289654", + "contractAddress": "0xDc64a140Aa3E981100a9becA4E685f962f0cF6C9", + "logs": [ + { + "address": "0xDc64a140Aa3E981100a9becA4E685f962f0cF6C9", + "topics": [ + "0x8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0", + "0x0000000000000000000000000000000000000000000000000000000000000000", + "0x000000000000000000000000f39fd6e51aad88f6f4ce6ab8827279cfffb92266" + ], + "data": "0x", + "blockHash": "0x2f668a1d5eb5537c4f946056716ad435d58957ed13a64f3774423b3d71475f2c", + "blockNumber": "0x5", + "transactionHash": "0xc4cbd208697fdc60cf5752654b05f845e3a8127a9d95c4625ca407435d5858db", + "transactionIndex": "0x0", + "logIndex": "0x0", + "transactionLogIndex": "0x0", + "removed": false + } + ], + "status": "0x1", + "logsBloom": "0x00000000000000000000000000000000000000000000000000800000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000020000000000000100000800000000000000000000000000000000400000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000200000000000000000000000002020000000000000000020000000000000000000000000000000000000000001000000000100000000000000", + "effectiveGasPrice": "0x77359400" + } + ], + "libraries": [ + "lib/eth-projects-monorepo/packages/eth-projects-contracts/contracts/lib/utils/Bytes.sol:Bytes:0x5fbdb2315678afecb367f032d93f642f64180aa3" + ], + "pending": [], + "returns": {}, + "timestamp": 1689269274, + "chain": 31337, + "multi": false, + "commit": "8bcb0d8" +} \ No newline at end of file diff --git a/packages/starksheet-solidity/broadcast/Evmsheet.s.sol/31337/run-1689415242.json b/packages/starksheet-solidity/broadcast/Evmsheet.s.sol/31337/run-1689415242.json new file mode 100644 index 00000000..8db1c69d --- /dev/null +++ b/packages/starksheet-solidity/broadcast/Evmsheet.s.sol/31337/run-1689415242.json @@ -0,0 +1,209 @@ +{ + "transactions": [ + { + "hash": "0xfb04d6c6b1e9f9378a1ec3cfd8f86c712379c2a9a898c24d0ae06ead6fb87858", + "transactionType": "CREATE", + "contractName": "Bytes", + "contractAddress": "0x5FbDB2315678afecb367f032d93F642f64180aa3", + "function": null, + "arguments": null, + "transaction": { + "type": "0x02", + "from": "0xf39fd6e51aad88f6f4ce6ab8827279cfffb92266", + "gas": "0x1387ed", + "data": "0x6110d661003a600b82828239805160001a60731461002d57634e487b7160e01b600052600060045260246000fd5b30600052607381538281f3fe73000000000000000000000000000000000000000030146080604052600436106101625760003560e01c8063a5eb31ee116100cd578063d1ffb56111610086578063d1ffb561146103fb578063d442584f1461042b578063e004139614610454578063f1142fb314610474578063f647f8fb14610487578063f83b670f146104b257600080fd5b8063a5eb31ee14610344578063a8d8f00f1461036b578063b5cdf92414610396578063b63711df146103a9578063be8b3430146103bc578063c29616bd146103cf57600080fd5b80635ef849301161011f5780635ef8493014610241578063913c97b41461026b57806397e6175c1461029f57806399dd9bd7146102cb5780639ae4c3d1146102ec5780639cee499e1461031857600080fd5b8063042aa0841461016757806305d3bb74146101985780631a7431ef146101c0578063235266d2146101e357806348137709146101f65780634d66a2ae1461021b575b600080fd5b61017a610175366004610ec0565b6104de565b6040516001600160d01b031990911681526020015b60405180910390f35b6101ab6101a6366004610ec0565b610540565b60405163ffffffff909116815260200161018f565b6101d36101ce366004610f05565b61059d565b604051901515815260200161018f565b6101d36101f1366004610f4c565b610652565b610209610204366004610ec0565b6106b5565b60405160ff909116815260200161018f565b61022e610229366004610fa6565b610711565b60405161ffff909116815260200161018f565b61025461024f366004610ec0565b61071e565b60405165ffffffffffff909116815260200161018f565b61027e610279366004610ec0565b610772565b6040516fffffffffffffffffffffffffffffffff909116815260200161018f565b6102b26102ad366004610ec0565b6107d0565b6040516001600160a01b0319909116815260200161018f565b6102de6102d9366004610ec0565b61082e565b60405190815260200161018f565b6102ff6102fa366004610ec0565b61088c565b60405167ffffffffffffffff909116815260200161018f565b61032b610326366004610ec0565b6108e9565b6040516001600160d81b0319909116815260200161018f565b610357610352366004610ec0565b610946565b60405162ffffff909116815260200161018f565b61037e610379366004610ec0565b6109a3565b60405166ffffffffffffff909116815260200161018f565b6102de6103a4366004610ec0565b610a00565b6102ff6103b7366004610ec0565b610a55565b61022e6103ca366004610ec0565b610aa9565b6103e26103dd366004610ec0565b610b06565b6040516001600160c81b0319909116815260200161018f565b61040e610409366004610ec0565b610b5a565b6040516bffffffffffffffffffffffff909116815260200161018f565b61043e610439366004610ec0565b610bae565b60405164ffffffffff909116815260200161018f565b610467610462366004610fe3565b610c02565b60405161018f9190611031565b6102b2610482366004610ec0565b610d0f565b61049a610495366004610ec0565b610d64565b6040516001600160a01b03909116815260200161018f565b6104c56104c0366004610ec0565b610dc9565b6040516001600160f81b0319909116815260200161018f565b60006104eb82600661107f565b835110156105375760405162461bcd60e51b8152602060048201526014602482015273746f4279746573365f6f75744f66426f756e647360601b60448201526064015b60405180910390fd5b50016006015190565b600061054d82600461107f565b835110156105945760405162461bcd60e51b8152602060048201526014602482015273746f55696e7433325f6f75744f66426f756e647360601b604482015260640161052e565b50016004015190565b600080600190508354600260018083161561010002038216048451808214600181146105cc5760009450610644565b821561064457602083106001811461062957600189600052602060002060208a018581015b600284828410010361062057815183541461060f5760009950600093505b6001830192506020820191506105f1565b50505050610642565b6101008086040294506020880151851461064257600095505b505b509293505050505b92915050565b81518151600091600191811480831461066e57600092506106ab565b600160208701838101602088015b60028483851001036106a657805183511461069a5760009650600093505b6020928301920161067c565b505050505b5090949350505050565b60006106c282600161107f565b835110156107085760405162461bcd60e51b8152602060048201526013602482015272746f55696e74385f6f75744f66426f756e647360681b604482015260640161052e565b50016001015190565b600061064c826000610aa9565b600061072b82600661107f565b835110156105375760405162461bcd60e51b8152602060048201526014602482015273746f55696e7434385f6f75744f66426f756e647360601b604482015260640161052e565b600061077f82601061107f565b835110156107c75760405162461bcd60e51b8152602060048201526015602482015274746f55696e743132385f6f75744f66426f756e647360581b604482015260640161052e565b50016010015190565b60006107dd82600c61107f565b835110156108255760405162461bcd60e51b8152602060048201526015602482015274746f427974657331325f6f75744f66426f756e647360581b604482015260640161052e565b5001600c015190565b600061083b82602061107f565b835110156108835760405162461bcd60e51b8152602060048201526015602482015274746f427974657333325f6f75744f66426f756e647360581b604482015260640161052e565b50016020015190565b600061089982600861107f565b835110156108e05760405162461bcd60e51b8152602060048201526014602482015273746f55696e7436345f6f75744f66426f756e647360601b604482015260640161052e565b50016008015190565b60006108f682600561107f565b8351101561093d5760405162461bcd60e51b8152602060048201526014602482015273746f4279746573355f6f75744f66426f756e647360601b604482015260640161052e565b50016005015190565b600061095382600361107f565b8351101561099a5760405162461bcd60e51b8152602060048201526014602482015273746f55696e7432345f6f75744f66426f756e647360601b604482015260640161052e565b50016003015190565b60006109b082600761107f565b835110156109f75760405162461bcd60e51b8152602060048201526014602482015273746f55696e7435365f6f75744f66426f756e647360601b604482015260640161052e565b50016007015190565b6000610a0d82602061107f565b835110156108835760405162461bcd60e51b8152602060048201526015602482015274746f55696e743235365f6f75744f66426f756e647360581b604482015260640161052e565b6000610a6282600861107f565b835110156108e05760405162461bcd60e51b8152602060048201526014602482015273746f4279746573385f6f75744f66426f756e647360601b604482015260640161052e565b6000610ab682600261107f565b83511015610afd5760405162461bcd60e51b8152602060048201526014602482015273746f55696e7431365f6f75744f66426f756e647360601b604482015260640161052e565b50016002015190565b6000610b1382600761107f565b835110156109f75760405162461bcd60e51b8152602060048201526014602482015273746f4279746573375f6f75744f66426f756e647360601b604482015260640161052e565b6000610b6782600c61107f565b835110156108255760405162461bcd60e51b8152602060048201526014602482015273746f55696e7439365f6f75744f66426f756e647360601b604482015260640161052e565b6000610bbb82600561107f565b8351101561093d5760405162461bcd60e51b8152602060048201526014602482015273746f55696e7434305f6f75744f66426f756e647360601b604482015260640161052e565b606081610c1081601f61107f565b1015610c4f5760405162461bcd60e51b815260206004820152600e60248201526d736c6963655f6f766572666c6f7760901b604482015260640161052e565b610c59828461107f565b84511015610c9d5760405162461bcd60e51b8152602060048201526011602482015270736c6963655f6f75744f66426f756e647360781b604482015260640161052e565b606082158015610cbc5760405191506000825260208201604052610d06565b6040519150601f8416801560200281840101858101878315602002848b0101015b81831015610cf5578051835260209283019201610cdd565b5050858452601f01601f1916604052505b50949350505050565b6000610d1c82601061107f565b835110156107c75760405162461bcd60e51b8152602060048201526015602482015274746f427974657331365f6f75744f66426f756e647360581b604482015260640161052e565b6000610d7182601461107f565b83511015610db95760405162461bcd60e51b8152602060048201526015602482015274746f416464726573735f6f75744f66426f756e647360581b604482015260640161052e565b500160200151600160601b900490565b6000610dd682600161107f565b835110156107085760405162461bcd60e51b8152602060048201526014602482015273746f4279746573315f6f75744f66426f756e647360601b604482015260640161052e565b634e487b7160e01b600052604160045260246000fd5b600082601f830112610e4457600080fd5b813567ffffffffffffffff80821115610e5f57610e5f610e1d565b604051601f8301601f19908116603f01168101908282118183101715610e8757610e87610e1d565b81604052838152866020858801011115610ea057600080fd5b836020870160208301376000602085830101528094505050505092915050565b60008060408385031215610ed357600080fd5b823567ffffffffffffffff811115610eea57600080fd5b610ef685828601610e33565b95602094909401359450505050565b60008060408385031215610f1857600080fd5b82359150602083013567ffffffffffffffff811115610f3657600080fd5b610f4285828601610e33565b9150509250929050565b60008060408385031215610f5f57600080fd5b823567ffffffffffffffff80821115610f7757600080fd5b610f8386838701610e33565b93506020850135915080821115610f9957600080fd5b50610f4285828601610e33565b600060208284031215610fb857600080fd5b813567ffffffffffffffff811115610fcf57600080fd5b610fdb84828501610e33565b949350505050565b600080600060608486031215610ff857600080fd5b833567ffffffffffffffff81111561100f57600080fd5b61101b86828701610e33565b9660208601359650604090950135949350505050565b600060208083528351808285015260005b8181101561105e57858101830151858201604001528201611042565b506000604082860101526040601f19601f8301168501019250505092915050565b8082018082111561064c57634e487b7160e01b600052601160045260246000fdfea26469706673582212208ffe93db15f03a6fd0c59ab94e8e6a84e4561b6982e8824dafaf837546cfb2c764736f6c63430008140033", + "nonce": "0x0", + "accessList": [] + }, + "additionalContracts": [], + "isFixedGasLimit": false + }, + { + "hash": "0x16a24f294817f13c03d22266c67ddecc22e25eff349a9e8619b580da71ceee3a", + "transactionType": "CREATE", + "contractName": "MultiSendCallOnly", + "contractAddress": "0xe7f1725E7734CE288F8367e1Bb143E90bb3F0512", + "function": null, + "arguments": null, + "transaction": { + "type": "0x02", + "from": "0xf39fd6e51aad88f6f4ce6ab8827279cfffb92266", + "gas": "0x2e5c4", + "value": "0x0", + "data": "0x608060405234801561001057600080fd5b506101ae806100206000396000f3fe60806040526004361061001e5760003560e01c80638d80ff0a14610023575b600080fd5b6100366100313660046100c7565b610038565b005b805160205b818110156100ac578083015160f81c6001820184015160601c601583018501516035840186015160558501870160008560008114610082576001811461001e5761008e565b6000808585888a5af191505b508061009957600080fd5b505080605501850194505050505061003d565b505050565b634e487b7160e01b600052604160045260246000fd5b6000602082840312156100d957600080fd5b813567ffffffffffffffff808211156100f157600080fd5b818401915084601f83011261010557600080fd5b813581811115610117576101176100b1565b604051601f8201601f19908116603f0116810190838211818310171561013f5761013f6100b1565b8160405282815287602084870101111561015857600080fd5b82602086016020830137600092810160200192909252509594505050505056fea2646970667358221220ad06ffe6d9a3c63ecf1a3aceb88077e5714c5ace8cfc89d2cea6ce600b35072364736f6c63430008140033", + "nonce": "0x1", + "accessList": [] + }, + "additionalContracts": [], + "isFixedGasLimit": false + }, + { + "hash": "0x5d414223b8f3dad1cef0f8d597701996b4292a491d1da79a2f8faefb1f9bd4a1", + "transactionType": "CREATE", + "contractName": "BasicCellRenderer", + "contractAddress": "0x9fE46736679d2D9a65F0992F2272dE9f3c7fa6e0", + "function": null, + "arguments": null, + "transaction": { + "type": "0x02", + "from": "0xf39fd6e51aad88f6f4ce6ab8827279cfffb92266", + "gas": "0x3180bd", + "value": "0x0", + "data": "0x608060405234801561001057600080fd5b50612c25806100206000396000f3fe608060405234801561001057600080fd5b50600436106100365760003560e01c806306d4cd8b1461003b57806328de0f2f14610064575b600080fd5b61004e610049366004610322565b610077565b60405161005b919061038b565b60405180910390f35b61004e610072366004610404565b6100f1565b60606000610086600f846104fc565b90506000610095600f8361051e565b61009f9085610535565b905060006100ae826041610548565b60f81b9050806100c76100c2856001610548565b6101b6565b6040516020016100d8929190610577565b6040516020818303038152906040529350505050919050565b606060006100fe86610077565b905083838261018388735fbdb2315678afecb367f032d93f642f64180aa363b5cdf924909160006040518363ffffffff1660e01b81526004016101429291906105a8565b602060405180830381865af415801561015f573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906100c291906105ca565b87878660405160200161019c97969594939291906105f2565b604051602081830303815290604052915050949350505050565b606060006101c383610249565b600101905060008167ffffffffffffffff8111156101e3576101e36103a5565b6040519080825280601f01601f19166020018201604052801561020d576020820181803683370190505b5090508181016020015b600019016f181899199a1a9b1b9c1cb0b131b232b360811b600a86061a8153600a850494508461021757509392505050565b60008072184f03e93ff9f4daa797ed6e38ed64bf6a1f0160401b83106102885772184f03e93ff9f4daa797ed6e38ed64bf6a1f0160401b830492506040015b6d04ee2d6d415b85acef810000000083106102b4576d04ee2d6d415b85acef8100000000830492506020015b662386f26fc1000083106102d257662386f26fc10000830492506010015b6305f5e10083106102ea576305f5e100830492506008015b61271083106102fe57612710830492506004015b60648310610310576064830492506002015b600a831061031c576001015b92915050565b60006020828403121561033457600080fd5b5035919050565b60005b8381101561035657818101518382015260200161033e565b50506000910152565b6000815180845261037781602086016020860161033b565b601f01601f19169290920160200192915050565b60208152600061039e602083018461035f565b9392505050565b634e487b7160e01b600052604160045260246000fd5b60008083601f8401126103cd57600080fd5b50813567ffffffffffffffff8111156103e557600080fd5b6020830191508360208285010111156103fd57600080fd5b9250929050565b6000806000806060858703121561041a57600080fd5b84359350602085013567ffffffffffffffff8082111561043957600080fd5b818701915087601f83011261044d57600080fd5b81358181111561045f5761045f6103a5565b604051601f8201601f19908116603f01168101908382118183101715610487576104876103a5565b816040528281528a60208487010111156104a057600080fd5b8260208601602083013760006020848301015280975050505060408701359150808211156104cd57600080fd5b506104da878288016103bb565b95989497509550505050565b634e487b7160e01b600052601160045260246000fd5b60008261051957634e487b7160e01b600052601260045260246000fd5b500490565b808202811582820484141761031c5761031c6104e6565b8181038181111561031c5761031c6104e6565b8082018082111561031c5761031c6104e6565b6000815161056d81856020860161033b565b9290920192915050565b6001600160f81b031983168152815160009061059a81600185016020870161033b565b919091016001019392505050565b6040815260006105bb604083018561035f565b90508260208301529392505050565b6000602082840312156105dc57600080fd5b5051919050565b81818437506000910190815290565b7f646174613a6170706c69636174696f6e2f6a736f6e2c7b22646573637269707481527f696f6e223a2022537461726b7368656574222c20226e616d65223a202200000060208201528688603d8301376000878201602160f81b603d820152875161066481603e840160208c0161033b565b7f222c22696d616765223a2022646174613a696d6167652f7376672b786d6c2c25603e92909101918201527f334373766725323076696577426f782533442532373025323030253230383925605e8201527f3230353525323725323066696c6c2533442532376e6f6e65253237253230786d607e8201527f6c6e73253344253237687474702533412f2f7777772e77332e6f72672f323030609e8201527f302f737667253237253345253343646566732533452533437374796c6525334560be8201527f253430666f6e742d66616365253230253742666f6e742d66616d696c7925334160de8201527f253230253237507265737325323053746172742532303250253237253342737260fe8201527f6325334125323075726c25323825323764617461253341666f6e742f776f666661011e8201527f32253342626173653634253243643039474d6741424141414141424c3841413861013e8201527f41414141415235774141424b674141454141414141414141414141414141414161015e8201527f4141414141414141414141414150305a4756453063476a41624d42794358675a61017e8201527f6741494e794551674b3846545361517544524141424e67496b41344e4d42434161019e8201527f46687a5148684649623644566c42306a314f4d4253336f4f4953744562732f2f6101be8201527f2f6c4a776356727a47634f30676f684c45484d6369694443434e57695a6761306101de8201527f79625345555954514f6a4b427038546c737a7344526438716174586c333058746101fe8201527f30645a47467952305668444b776c62746c25324272734643773945316e64655961021e8201527f4a74732f37527762305673784d71576c636a6a775445537a2f5568752f77337361023e8201527f33746b6f496d70343464515168576f456d54337579526d70746f7553446b7a5761025e8201527f454138762f3932364a4b7539486f696e6e3673376674336d4965476c7737547161027e8201527f6437456f326a46517849766a5642494a70563269614f62547a68575932314e7461029e8201527f476772687434704d4b3457556a34624c7967542f51253242514c7879253242336102be8201527f6c482f362f6b6275496444497239446a724a496a6f394a7336524d58253242456102de8201527f6b37424f545a6b6d70397a347455524652566656307148504448375a7462364a6102fe8201527f616f6130684c335975616232473373667a72365776394536793569767025324261031e8201527f7135564c74426a514478476f5345304150313762336466376c61726a6525324261033e8201527f73637a6b7241744a334b6657304a342532424b323365744b4b556a383554616f61035e8201527f57473453346158436c427743413268676141652532423658396f696e32304e6261037e8201527f554a7264466767517049686d5247494d30372f7025324277375a7058316c473161039e8201527f6a6a51787073435141423438714445415042346950312f6a39592f4261686a356103be8201527f5943414e302f78714157496852616a6c6e694e654f50396e78433466667932556103de8201527f694843304e47386b686f6f567a6f7459334445417a417a41356b473735337a6a6103fe8201527f4853354d6e6d586b69496a6d54554d36556d4d3025324256346976752f48377861041e8201527f6a364666322f6b343472787a6449324141676742492f4c48416b394a7a35554d61043e8201527f496f4c7755344146455435725a464f33444d616655633061777351434879497061045e8201527f557a546b30784a474a454f6a4e6871436b474570496153474f6a714e466d2f5761047e8201527f4e434e3569636b71434d6e414165564c4d4c655867356971386b365752585a5261049e8201527f326c337042393831427a73475a743225324256696c4342723954494a674b67786104be8201527f365542514446253242566a4b44714e7741414948386a6949664d6e75384b68666104de8201527f584b486f4e3348634134477245786842324155442f795a554d423857547579496104fe8201527f413444634f4b656434397939504249616e426967734d454e38556b30766c547661051e8201527f304a58334e394d795a75544d763573655357413525324238556538504465547261053e8201527f645467474973566d4e33635856586a6463795275633434385866664176506e7361055e8201527f3575324d4531722532426a4731703137767a3849704f416e483444427367793361057e8201527f512f54376b33646d2f3846334232377355694877464631414f6c683055646e4961059e8201527f4471494e5164506355393145786f2f346252696a6a5169704e4e307a4c646c7a6105be8201527f504438496f547449734c38717162746f4f5149514a5a567849705931315073536105de8201527f55533231397a4c585066642f507667765751346372464d2532425769755671706105fe8201527f645a6f4e6475645872632f4745324d4a36656e3575635746694763375274364f61061e8201527f487676354d674c2532427a44733578444277696141315433554877326b63594361063e8201527f312f55666453316645316d37763742346537653350574848786533594f32483561065e8201527f25324241504f5a7965503025324251506553425468793078713965363241486a61067e8201527f6141556842432f364144484c6f476f4f657636412532426867487369317a613861069e8201527f71355a4e4d716a596c575a4d713867354248445574495370574a73526f52544a6106be8201527f56613049305a3957546b5371564b73507a3464586a7648746449684c6e7670746106de8201527f554c4330753542567579414d544b4a513930594b5267546e5769476b6d7153456106fe8201527f714b6d7256685259674b6b335443686255573671456f45637665577a6859535461071e8201527f4c32484e706735452f6d7151393956564467763352475435586d33637a68754c61073e8201527f3972685864316132372f736c5130686959366a643739614f5a43746a6f52687261075e8201527f623136575676514b725734477a786a7869723238494d697a2f7155447973495761077e8201527f7037516a667765347a556437614a735651575179524c554b484b42577938577661079e8201527f45565333584d53353656337757644f442532424638757639645477496d4b722f6107be8201527f5064626d5763775176456641616a7975566a70784e32704f56635769336c38776107de8201527f454c2f6d395070646f55494536253242504b5838315041546d67654f304231736107fe8201527f47454825324261707a353466646d534a7a333741686635366a4c7739756e504561081e8201527f35644d4b3025324237544639563843435466523979664e7355493474557a464661083e8201527f42326e536e384b4f626a64446964554c7034494a6873777878595172595a643661085e8201527f4e76436e55394d445825324252654c6e4d546d6c315a453972306b5077334e3261087e8201527f6752253242736a4573596d4953706b356c31497333594e614a4b6f6e7a65703761089e8201527f56637354316e556b62347048774b5a41796b614b6f43504630506f6d456876496108be8201527f5758656e6f5a767836774f4b313070316c3274546858793850316555776473766108de8201527f53715157766f424d7473674851554a614774494273756861776450545a5378596108fe8201527f707257757734647a7231564755744449465871726f4d4d69597346783857695461091e8201527f336463574b6f376d50554c79715657413972305974524a4c626957766a6e4c2561093e8201527f324272633452646767624e516c514141613264306d616236364d48447074314361095e8201527f6477626b51436253375053445a4d7a3746724f51713165636153304a6c74644161097e8201527f6c44527941587173364130586247707748676b70367572557757416272464d3361099e8201527f75794d764e4b6c344d6c435548537950416d3931776144454a3559595148754a6109be8201527f4d32304b575251737637486b61334770686c533258444b714f4b4245554753316109de8201527f65306b63316f323449494166486c4449794278584a4a656767423369386174566109fe8201527f67434f3064444f5a484a57596a564c416a6a397137765673456e72684b374568610a1e8201527f4c75427a42586d4d674554634531636d61436976504b6f4a766670466c794935610a3e8201527f4d70584234454325324245672f596d303454787843354e6c73596b74646f5951610a5e8201527f55656c38624673456c3748345a36734377622f38626b347458574658504b6a71610a7e8201527f5462526e64336e4c5770394f784941706c664b586747684e6c72443462354a4c610a9e8201527f5a367055753441726756614d366561357844574244476f7a707a4641376e6747610abe8201527f74596334486141775269475576637653653652414177335a576b564f4667764b610ade8201527f46364955696c4d49394964715155345134585264484866736666517770313955610afe8201527f434a49306a5773725433356f5578303678507268473271364d4533554f306c63610b1e8201527f635a557354454351784a44527854444b6c334c4948722f6162546f73686c6466610b3e8201527f51786a364f57745273466e6966444373473674336b426f344e6d424a6d615556610b5e8201527f54636c794951414a4c6a6e723042365a3859464d6e396b397967703752727848610b7e8201527f36766877624a4e41654b4d554436353974386746514a4d5377652f434f624850610b9e8201527f467671484746554e5266253242737245663354584b42725a76676b6369396972610bbe8201527f426d63442f7458616754474358634e68432532424f3539754c706e6673796f71610bde8201527f4c53313238374552776d38666165564f6d3857634437386c5a36594232793938610bfe8201527f5a4c6c4d3972557264324c514e6c324956643454727376675139363079377573610c1e8201527f5965306854506170576a71726c2532425837784665424e54253242315a644a4a610c3e8201527f572532424678745737584e7774634e7a7761672532425256656a6d4a6839656d610c5e8201527f6c495a4b69694e63694b3849554f4d33556a4a376342554e5847505853326c68610c7e8201527f253242687770676f4836567348524f63764569723372585970344c7769435a77610c9e8201527f3176486c43623552314d68623564536e4f326d6e6f475a6f5846315765574757610cbe8201527f6d7a694a314a555534715072306e694a536c4e424331636b4b6d4a6657625877610cde8201527f5577757449547a456d6a776770776142753464525066746a2f4e384143526e64610cfe8201527f616b2f4641674b674c37305058577839767a6b59322532426d34355473496b4c610d1e8201527f3037616f70444e6f676830535262535a534f397a744657516a376e574c676275610d3e8201527f364325324254374b6a44715a3667456e5277674d78306b4c5a77797962514f76610d5e8201527f514130773054782f354a42722f63595a6453574f546a774446364e6f586b796a610d7e8201527f33566a484e4751494e76426a5a734a4a3377466141516d6f5a575a5970416961610d9e8201527f574f466e6e686455524176576b557a77693062677a5a4158796f445545714863610dbe8201527f57307069454c574f777168773365765478444957724e32495371525151454c41610dde8201527f4d32365334486c723548552f48784a43436844424a6b756b6341573856415430610dfe8201527f6770545a544b4e48677a444f7234314751656a4f34677a416e6b577077464752610e1e8201527f43334c625231787a4b434875365635694674674c704f384b51596d5965467868610e3e8201527f4c32643838736469506a2f76306b427a636c51637954735766324d6445394944610e5e8201527f386d5858576a72434b253242354532756e336e6976656973526e726971317548610e7e8201527f594d6a6a69694945304b6466674d6f3163476d6b557254624f30356732737633610e9e8201527f477673525971762f61457736375472644f705435567a4641364131417939634b610ebe8201527f6f44667762544a64445750524e57517354796a6d3772486249734b466b6f4f2f610ede8201527f5a4c4376735966785973337768534338614c49344b765677373773336e347a48610efe8201527f67697061634a6e435362463945727a53357069386343577655597a4f5064327a610f1e8201527f684a2f4750437a53684f453378596c634f3350796164586a54334f6b68706841610f3e8201527f58465853766865544e5355525446565641486f4a6d7949726b6a454b6f517746610f5e8201527f4730303554334158643935764e30446d336d427332786746546c253242513572610f7e8201527f73416a6e744768707a6f62643642374e7a52664e56653130446f4e5639343753610f9e8201527f59646f635252624776636d785456786f61367a717756376d416e773544314745610fbe8201527f5474327a48382532425476514256356e37672f32615768743979794e594c3974610fde8201527f4f42744167384846435945316d4e775432454232467538544968543776565241610ffe8201527f3461587a6e6b3670545a4e6779696f73747749364b654655374c696c7041253261101e8201527f42334234474a794277574d327062466a4876734a3747754f6f616b6a6d46746a61103e8201527f59344c6254396c323239253242453646374c4475577a744c6e333749786b386a61105e8201527f356c42564b33774c7369362f416641756f6a34396c4d6b5653545045396b704761107e8201527f64304c724555534a4941413070596c4178414d642f4e4f46776f4a446458466961109e8201527f307a4f5744422f54464a705666575642574f516274724a556230636c663369256110be8201527f3242575072446f596c65545674564f45306d36793564487444725551776f414c6110de8201527f7455523365585364444d4e785866656a594674764c626c726c4a7777484b2f456110fe8201527f6957504a616b32574b35386e684e6f4c6a615a55475841756f32656f5777464561111e8201527f66612f445334496958717246714779633348726939785132693243352f73357661113e8201527f7a424d30793777334d4473774d3759325247427172464d6778374f696325324261115e8201527f30497a736d5678617a5473305263666a324f3334532f525639503269486f427561117e8201527f6c4b49594244665a46654c53356439725379664a64536c67683268644d72324f61119e8201527f5552334b6e6c506e4f41785477314a384c4d325a776e4671765a745a4a6c78786111be8201527f343873776243743272316b664875443756624831326159383849437456734b786111de8201527f4b742f31726b616c42414d74782f6f6f6d43445059626b556f4c6344624b436a6111fe8201527f7675713953544467746a584744715735564b36686347654f46697a6a3643714c61121e8201527f4f49716b57783477733245504d444e7378253242613661533230384f39784c3061123e8201527f526146586f394241645530706e452532424c695359334b536f4a41525978646e61125e8201527f7a69545a4d706961442f3438496969393834446151357976656378414673735761127e8201527f792f686274696d63253242704c386b35796f70496d4a627948712f6138797a6c61129e8201527f6c37726f4f7a586d786d4163337459585363546b65734d6344324939315a36336112be8201527f6549312f394a627755716b36737863394b52677277574d414e6543314e6e39756112de8201527f4779775473706d5538712532426c5a6d43714d674153363662674841476a514b6112fe8201527f73754a334451416a5235346d356a4c7a5a616e546c62646530253242726e663461131e8201527f385a574138546c32673277414779427748516e3552322532424e6a726542677861133e8201527f626c734e46627554776d6862414a48737a2f72416f61764c4f34317874767a5961135e8201527f4768336e4c4a426b41506a7578424a445248333048426575385567436978464e61137e8201527f437951322f4b253242385157372f6530253242664f2532423436524e5730657961139e8201527f4c726f39446a5467704a4e4d3547385179306c54644f756d73773066715045696113be8201527f393646702532424830634d774e6f376a787a596d6e4e664d5a6d64506c7932706113de8201527f6f7132575065476d67507136474c78504e34536c4b486e7870624f69754c58516113fe8201527f75583155715031676a6f38426136536c55314f416d5267707a7531735444584a61141e8201527f50754d3338546f387130344c324e777970653837327777556741675a6c70386461143e8201527f6b5166397a38544d43624d6b596b3758484375333564375a5a41656f346b5a4b61145e8201527f68784953386945354c546a334c4f6976485a7268394a3870337a4c5a436a776361147e8201527f6970354452694b6e576e49664c33386b4a684d7452776a67553525324256726d61149e8201527f714b6c6739307a376a64732f4238444b646b464c76483353253242376f4838616114be8201527f6c445a6c626734533155583574434d445342324f364b756c7a41344b763067376114de8201527f314251643054464b7733685358696e62374e6c304258725873514e6376436b386114fe8201527f6d6f394f786965783559627a78564e2f6b3738336f48545a495777393079495a61151e8201527f777672697164475473586e54384965705437597946434f4a6741395a3042794961153e8201527f455956735478522f6b73616b324268376f4b767034766e695530364d57317a4261155e8201527f4672746568647a306b6b587951786a426d7965645636644d596545386146787461157e8201527f6575777355466136466c6c54446c716430707a525a77473663467266574d627061159e8201527f384738587a6a66624d253242354658657076356f457273696c363458783663376115be8201527f5841576275696d3666387347494d58666f334a6971476b703333376854536a676115de8201527f65636862364f42472f327a31376a6f6d4469476d253242476c623146553069656115fe8201527f6e7552796977654c576767447a6d4655765545556a5a6f377356544877684f4661161e8201527f504d6b4e737146423977796d6b45307639666d7477453854377135384e594f3761163e8201527f787534623833766e46766c35755378446c472532426b4f51675249644f346a6761165e8201527f7a786a53486a4b4c7332742f6c684f647771766131415744437072763344345361167e8201527f34523741625934544362664b4637744265363554343551347a7a49714433316161169e8201527f79797557716a692532424636585337535439483943314f342f694b366b4775766116be8201527f6b512f664e3537487837456533373435622f76766e2f62482f58253242392f256116de8201527f32426762656d684f416d49705576755157757344764b517578394a44564e734b6116fe8201527f673651636d6b73515341445530346347524c523768466f5a326337785545664761171e8201527f253242776b755459474d764c6a422f6550634936416847686e5735717a45416961173e8201527f4a586377564545775869654e70536c317a6a457253253242435325324248634c61175e8201527f6f52506d7661324d6767412f69794c67536f544a555767733442794149514f3061177e8201527f4f6f705a487656627a6844494c65557155677a7a48492f667950474e7879777361179e8201527f6f796c6865534639577662795363336b4544716b32415636436c4364635535536117be8201527f6e6c4e6e4963394b794d63384c79622532423867484f4a795173466c4c6250526117de8201527f796d6d374a42743349545a544162314732444252496b514b51705451396939626117fe8201527f3665435353387a4d366161525364544b5657524d336663454a4c644b61746e7361181e8201527f724959774e4a55253242733048364461757832775a35686733706c653042474861183e8201527f756b316b4543734859446461496d4b7025324233463542317859763763486b7161185e8201527f644475306a4b645273657a3531376d63563641685148346931484e3173766c6a61187e8201527f5248366845454672682532426e72726d47316e33307a4d346749776d694d774561189e8201527f624b6842545564423141486f582532424b6741517a4f48543946494f71436b526118be8201527f4e4e623273397170496943534f753167576868497343564a73765771457175356118de8201527f47624a514b4e6a61427465394c4f69676368414a7665475773394332323033766118fe8201527f6f6e476c6b77725251323464646732796345646157554456734441785548734961191e8201527f77773665615234464665336d4a416b66426d5a6452395264774a485a6d47645261193e8201527f7950436a706a627a31712f584a34534949446b66384b4b6e6e32456c4b6d794c61195e8201527f69573442513836733151554b2f76426867524e776548766c5968687a7238706361197e8201527f67704b4b6d6f61576a7036426b594f48446c7835734b5647336365474539657661199e8201527f506e773563646667454242676f554946536238587632504553314772446a78456119be8201527f69524b6b697846716a54704d6d544b6b693148726a7a354368517155717845716119de8201527f544c6c4b6c53715571314772547231476a527130717846717a62744f6e5347656119fe8201527f3668374a6d627a4968355a6544696c315a58536a7430774375616b336c6e476f611a1e8201527f5655506f53734e663337394b326a6274716d44674d69485a42665a6c68324839611a3e8201527f75773738495469314a466a585653662f4336634f55667a346f30644178305447611a5e8201527f777448446863666a3443516d49694531444d5a42546b6c4e5a557065566f614f611a7e8201527f6e717633733234314e50503965766574594768435a50576a4979747332706173611a9e8201527f436a25324270556a54596c336b615574374f744b4a6136355850396d356e6367611abe8201527f364e686a685a587032762532426d57724341545a754a303368316b6a55756976611ade8201527f5067596e6a6e35744b4a4f6b326e6362703251414559585a69304b496d50356b611afe8201527f744961466e366b5a397743253237253239253230666f726d6174253238253237611b1e8201527f776f666632253237253239253342666f6e742d7765696768742533412532306e611b3e8201527f6f726d616c253342666f6e742d7374796c652533412532306e6f726d616c2533611b5e8201527f42666f6e742d646973706c617925334125323073776170253342253744746578611b7e8201527f74253230253742666f6e742d66616d696c792533412532302532375072657373611b9e8201527f2532305374617274253230325025323725334266696c6c253341253230776869611bbe8201527f74652537442e76616c7565253230253742666f6e742d73697a65253341253230611bde8201527f313070782533422537442e6e616d65253230253742666f6e742d73697a652533611bfe8201527f412532303470782533422537442533432f7374796c652533452533432f646566611c1e8201527f7325334525334372656374253230776964746825334425323738392532372532611c3e8201527f30686569676874253344253237353525323725323066696c6c25334425323762611c5e8201527f6c61636b2532372532302f253345253343726563742532307825334425323735611c7e8201527f2e3525323725323079253344253237352e352532372532307769647468253344611c9e8201527f2532373738253237253230686569676874253344253237343425323725323066611cbe8201527f696c6c2533442532372532333030303046462532372532302f25334525334374611cde8201527f657874253230746578742d616e63686f722533442532376d6964646c65253237611cfe8201527f2532307825334425323734342e35253237253230792533442532373333253237611d1e8201527f253230636c61737325334425323776616c756525323725334500000000000000611d3e820152612ba5612b9e6129f5611d5784018a61055b565b7f2533432f746578742533452533437265637425323078253344253237352e352581527f323725323079253344253237352e35253237253230776964746825334425323760208201527f373825323725323068656967687425334425323734342532372532307374726f60408201527f6b652533442532372532334646344630412532372532307374726f6b652d776960608201527f647468253344253237332532372532302f25334525334372656374253230782560808201527f334425323733302532372532307925334425323734352e35253237253230776960a08201527f647468253344253237353825323725323068656967687425334425323738253260c08201527f3725323066696c6c2533442532372532334646344630412532372532302f253360e08201527f4525334374657874253230746578742d616e63686f72253344253237656e64256101008201527f32372532307825334425323738372532372532307925334425323735322532376101208201527f253230636c6173732533442532376e616d6525323725334500000000000000006101408201526101580190565b86886105e3565b602160f81b81529050612bbb600182018561055b565b7f2533432f746578742533452533432f737667253345227d00000000000000000081526017019a995050505050505050505056fea26469706673582212204ebb5504852a340c7a67a89e9af874a99996f2d1a3a978c1c25c376c60d5de3c64736f6c63430008140033", + "nonce": "0x2", + "accessList": [] + }, + "additionalContracts": [], + "isFixedGasLimit": false + }, + { + "hash": "0x6928394d16d250b8acc935bd72f4e688cd99af36a973880a9f486cc7c2fe7374", + "transactionType": "CREATE", + "contractName": null, + "contractAddress": "0xCf7Ed3AccA5a467e9e704C703E8D87F634fB0Fc9", + "function": null, + "arguments": null, + "transaction": { + "type": "0x02", + "from": "0xf39fd6e51aad88f6f4ce6ab8827279cfffb92266", + "gas": "0x42230", + "value": "0x0", + "data": "0x608060405234801561001057600080fd5b506102cf806100206000396000f3fe608060405234801561001057600080fd5b506004361061004c5760003560e01c80630194db8e14610051578063072bdcc214610076578063a391c15b14610089578063b67d77c51461009c575b600080fd5b61006461005f366004610160565b6100af565b60405190815260200160405180910390f35b610064610084366004610160565b6100ef565b61006461009736600461021e565b610129565b6100646100aa36600461021e565b61013e565b600080805b83518110156100e8578381815181106100cf576100cf610240565b60200260200101518201915080806001019150506100b4565b5092915050565b60006001815b83518110156100e85783818151811061011057610110610240565b60200260200101518202915080806001019150506100f5565b60006101358284610256565b90505b92915050565b60006101358284610278565b634e487b7160e01b600052604160045260246000fd5b6000602080838503121561017357600080fd5b823567ffffffffffffffff8082111561018b57600080fd5b818501915085601f83011261019f57600080fd5b8135818111156101b1576101b161014a565b8060051b604051601f19603f830116810181811085821117156101d6576101d661014a565b6040529182528482019250838101850191888311156101f457600080fd5b938501935b82851015610212578435845293850193928501926101f9565b98975050505050505050565b6000806040838503121561023157600080fd5b50508035926020909101359150565b634e487b7160e01b600052603260045260246000fd5b60008261027357634e487b7160e01b600052601260045260246000fd5b500490565b8181038181111561013857634e487b7160e01b600052601160045260246000fdfea264697066735822122030605896aa3092c5c0d163e40b09c7c92189bbd1be4f62579184af38d08031be64736f6c63430008140033", + "nonce": "0x3", + "accessList": [] + }, + "additionalContracts": [], + "isFixedGasLimit": false + }, + { + "hash": "0xb5ca6887acd6dc183175a31022b7f2c064fd77da0de691cb19ccc59b228c0967", + "transactionType": "CREATE", + "contractName": "Evmsheet", + "contractAddress": "0xDc64a140Aa3E981100a9becA4E685f962f0cF6C9", + "function": null, + "arguments": [ + "0x9fE46736679d2D9a65F0992F2272dE9f3c7fa6e0", + "10000000000000000" + ], + "transaction": { + "type": "0x02", + "from": "0xf39fd6e51aad88f6f4ce6ab8827279cfffb92266", + "gas": "0x34bf99", + "value": "0x0", + "data": "0x608060405234801561001057600080fd5b50604051612ed9380380612ed983398101604081905261002f916100b1565b61003833610061565b600280546001600160a01b0319166001600160a01b0393909316929092179091556001556100eb565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b600080604083850312156100c457600080fd5b82516001600160a01b03811681146100db57600080fd5b6020939093015192949293505050565b612ddf806100fa6000396000f3fe608060405260043610620000a95760003560e01c80638da5cb5b116200006c5780638da5cb5b146200016d578063ab2fa65a146200018d578063ae28505e14620001b4578063c56c4cf114620001d9578063f2fde38b14620001fb578063f52be2a2146200022057600080fd5b806303fb31e814620000ae5780631164c83d14620000d5578063145e414714620000ec5780635787cacb146200012e578063715018a61462000155575b600080fd5b348015620000bb57600080fd5b50620000d3620000cd36600462000778565b62000247565b005b620000d3620000e6366004620007e9565b62000273565b348015620000f957600080fd5b50620001116200010b36600462000864565b620004b2565b6040516001600160a01b0390911681526020015b60405180910390f35b3480156200013b57600080fd5b50620001466200054f565b60405162000125919062000891565b3480156200016257600080fd5b50620000d3620005b3565b3480156200017a57600080fd5b506000546001600160a01b031662000111565b3480156200019a57600080fd5b50620001a5620005cb565b604051620001259190620008e0565b348015620001c157600080fd5b5062000111620001d336600462000930565b620005f7565b348015620001e657600080fd5b5060025462000111906001600160a01b031681565b3480156200020857600080fd5b50620000d36200021a36600462000778565b62000622565b3480156200022d57600080fd5b506200023860015481565b60405190815260200162000125565b62000251620006a1565b600280546001600160a01b0319166001600160a01b0392909216919091179055565b60015434146200029d5760405163723a79e360e11b81523460048201526024015b60405180910390fd5b600060405180602001620002b1906200074d565b6020820181038252601f19601f8201166040525090506000828251602084016000f56002546040516356d3163d60e01b81526001600160a01b0391821660048201529192508216906356d3163d90602401600060405180830381600087803b1580156200031d57600080fd5b505af115801562000332573d6000803e3d6000fd5b505060405163c47f002760e01b81526001600160a01b038416925063c47f0027915062000366908a908a906004016200094a565b600060405180830381600087803b1580156200038157600080fd5b505af115801562000396573d6000803e3d6000fd5b5050604051635c26412360e11b81526001600160a01b038416925063b84c82469150620003ca90889088906004016200094a565b600060405180830381600087803b158015620003e557600080fd5b505af1158015620003fa573d6000803e3d6000fd5b505060405163f2fde38b60e01b81523260048201526001600160a01b038416925063f2fde38b9150602401600060405180830381600087803b1580156200044057600080fd5b505af115801562000455573d6000803e3d6000fd5b5050600380546001810182556000919091527fc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b0180546001600160a01b0319166001600160a01b0394909416939093179092555050505050505050565b600060ff60f81b838360405180602001620004cd906200074d565b6020820181038252601f19601f82011660405250805190602001206040516020016200053094939291906001600160f81b031994909416845260609290921b6bffffffffffffffffffffffff191660018401526015830152603582015260550190565b60408051601f1981840301815291905280516020909101209392505050565b60606003805480602002602001604051908101604052809291908181526020018280548015620005a957602002820191906000526020600020905b81546001600160a01b031681526001909101906020018083116200058a575b5050505050905090565b620005bd620006a1565b620005c96000620006fd565b565b606060405180602001620005df906200074d565b601f1982820381018352601f90910116604052919050565b600381815481106200060857600080fd5b6000918252602090912001546001600160a01b0316905081565b6200062c620006a1565b6001600160a01b038116620006935760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b606482015260840162000294565b6200069e81620006fd565b50565b6000546001600160a01b03163314620005c95760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015260640162000294565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b612430806200097a83390190565b80356001600160a01b03811681146200077357600080fd5b919050565b6000602082840312156200078b57600080fd5b62000796826200075b565b9392505050565b60008083601f840112620007b057600080fd5b50813567ffffffffffffffff811115620007c957600080fd5b602083019150836020828501011115620007e257600080fd5b9250929050565b6000806000806000606086880312156200080257600080fd5b853567ffffffffffffffff808211156200081b57600080fd5b6200082989838a016200079d565b909750955060208801359150808211156200084357600080fd5b5062000852888289016200079d565b96999598509660400135949350505050565b600080604083850312156200087857600080fd5b62000883836200075b565b946020939093013593505050565b6020808252825182820181905260009190848201906040850190845b81811015620008d45783516001600160a01b031683529284019291840191600101620008ad565b50909695505050505050565b600060208083528351808285015260005b818110156200090f57858101830151858201604001528201620008f1565b506000604082860101526040601f19601f8301168501019250505092915050565b6000602082840312156200094357600080fd5b5035919050565b60208152816020820152818360408301376000818301604090810191909152601f909201601f1916010191905056fe60806040523480156200001157600080fd5b50604051806040016040528060078152602001660536865657420360cc1b815250604051806040016040528060048152602001630534854360e41b81525062000069620000636200008f60201b60201c565b62000093565b600162000077838262000188565b50600262000086828262000188565b50505062000254565b3390565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b634e487b7160e01b600052604160045260246000fd5b600181811c908216806200010e57607f821691505b6020821081036200012f57634e487b7160e01b600052602260045260246000fd5b50919050565b601f8211156200018357600081815260208120601f850160051c810160208610156200015e5750805b601f850160051c820191505b818110156200017f578281556001016200016a565b5050505b505050565b81516001600160401b03811115620001a457620001a4620000e3565b620001bc81620001b58454620000f9565b8462000135565b602080601f831160018114620001f45760008415620001db5750858301515b600019600386901b1c1916600185901b1785556200017f565b600085815260208120601f198616915b82811015620002255788860151825594840194600190910190840162000204565b5085821015620002445787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b6121cc80620002646000396000f3fe608060405234801561001057600080fd5b50600436106102275760003560e01c8063715018a611610130578063b85d8b85116100b8578063cf0983981161007c578063cf09839814610512578063cfbe95d814610535578063df4ca20614610556578063e985e9c514610576578063f2fde38b146105a457600080fd5b8063b85d8b85146104a4578063b88d4fde146104ce578063b8c368ec146104e1578063c47f0027146104ec578063c87b56dd146104ff57600080fd5b806395d89b41116100ff57806395d89b4114610439578063a22cb46514610441578063b46ebb1214610454578063b6d658e114610467578063b84c82461461049157600080fd5b8063715018a6146103fa578063768d5029146104025780638ada6b0f146104155780638da5cb5b1461042857600080fd5b80631b06443c116101b35780634f6ccce7116101825780634f6ccce71461038157806356d3163d146103a15780636352211e146103b45780636a0abc74146103c757806370a08231146103e757600080fd5b80631b06443c14610335578063206848f61461034857806323b872dd1461035b57806342842e0e1461036e57600080fd5b8063081812fc116101fa578063081812fc146102a1578063095ea7b3146102e2578063172b9eed146102f757806318160ddd1461030a5780631941fd141461031357600080fd5b806301ffc9a71461022c57806302f3c4c91461025457806306fdde03146102745780630715a24a1461027c575b600080fd5b61023f61023a36600461176a565b6105b7565b60405190151581526020015b60405180910390f35b610267610262366004611861565b610609565b60405161024b9190611951565b610267610638565b6102936fffffffffffffffffffffffffffffffff81565b60405190815260200161024b565b6102ca6102af366004611964565b6005602052600090815260409020546001600160a01b031681565b6040516001600160a01b03909116815260200161024b565b6102f56102f036600461197d565b6106c6565b005b6102676103053660046119a9565b6107ad565b61029360075481565b610326610321366004611964565b610875565b60405161024b939291906119de565b6102ca610343366004611a0e565b61092a565b610326610356366004611964565b6109e3565b6102f5610369366004611a2b565b610ae1565b6102f561037c366004611a2b565b610ca8565b61029361038f366004611964565b60086020526000908152604090205481565b6102f56103af366004611a0e565b610da0565b6102ca6103c2366004611964565b610dca565b6103da6103d53660046119a9565b610e1c565b60405161024b9190611a6c565b6102936103f5366004611a0e565b610e60565b6102f5610ec3565b6102f5610410366004611af9565b610ed7565b6009546102ca906001600160a01b031681565b6000546001600160a01b03166102ca565b610267611035565b6102f561044f366004611b63565b611042565b610267610462366004611964565b6110ae565b61047a610475366004611964565b611258565b60408051921515835260208301919091520161024b565b6102f561049f366004611ba1565b611275565b6104b56104b2366004611964565b90565b6040516001600160e01b0319909116815260200161024b565b6102f56104dc366004611be3565b6112c6565b6102ca600160801b81565b6102f56104fa366004611ba1565b6113ae565b61026761050d366004611964565b6113ff565b61023f610520366004611a0e565b600160801b6001600160a01b03919091161090565b61023f610543366004611861565b516001600160a01b0316600160801b1490565b610569610564366004611964565b6114c9565b60405161024b9190611c16565b61023f610584366004611c4d565b600660209081526000928352604080842090915290825290205460ff1681565b6102f56105b2366004611a0e565b611526565b60006301ffc9a760e01b6001600160e01b0319831614806105e857506380ac58cd60e01b6001600160e01b03198316145b806106035750635b5e139f60e01b6001600160e01b03198316145b92915050565b6060816020015160405160200161062291815260200190565b6040516020818303038152906040529050919050565b6001805461064590611c7b565b80601f016020809104026020016040519081016040528092919081815260200182805461067190611c7b565b80156106be5780601f10610693576101008083540402835291602001916106be565b820191906000526020600020905b8154815290600101906020018083116106a157829003601f168201915b505050505081565b6000818152600360205260409020546001600160a01b03163381148061070f57506001600160a01b038116600090815260066020908152604080832033845290915290205460ff165b6107515760405162461bcd60e51b815260206004820152600e60248201526d1393d517d055551213d49256915160921b60448201526064015b60405180910390fd5b60008281526005602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b606060006107ba83610e1c565b9050606060005b825181101561086d576000806107ef8584815181106107e2576107e2611cb5565b6020026020010151611258565b9150915081156108335783610803826110ae565b61080c90611ccb565b60405160200161081d929190611cef565b6040516020818303038152906040529350610858565b6040516108469085908390602001611cef565b60405160208183030381529060405293505b5050808061086590611d27565b9150506107c1565b509392505050565b600a602052600090815260409020805460018201546002830180546001600160a01b039093169391926108a790611c7b565b80601f01602080910402602001604051908101604052809291908181526020018280546108d390611c7b565b80156109205780601f106108f557610100808354040283529160200191610920565b820191906000526020600020905b81548152906001019060200180831161090357829003601f168201915b5050505050905083565b6000600160801b6001600160a01b03831610156109da576000610955836001600160a01b03166110ae565b604051632d737e4960e21b8152909150735fbdb2315678afecb367f032d93f642f64180aa39063b5cdf92490610992908490600090600401611d40565b602060405180830381865af41580156109af573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906109d39190611d62565b9392505050565b5090565b919050565b60008181526003602052604081205481906060906001600160a01b0316610a1057600160801b9250610a2b565b6000848152600a60205260409020546001600160a01b031692505b6000848152600a60205260409020600181015460029091018054859291908190610a5490611c7b565b80601f0160208091040260200160405190810160405280929190818152602001828054610a8090611c7b565b8015610acd5780601f10610aa257610100808354040283529160200191610acd565b820191906000526020600020905b815481529060010190602001808311610ab057829003601f168201915b505050505090509250925092509193909250565b6000818152600360205260409020546001600160a01b03848116911614610b375760405162461bcd60e51b815260206004820152600a60248201526957524f4e475f46524f4d60b01b6044820152606401610748565b6001600160a01b038216610b815760405162461bcd60e51b81526020600482015260116024820152701253959053125117d49150d25412515395607a1b6044820152606401610748565b336001600160a01b0384161480610bbb57506001600160a01b038316600090815260066020908152604080832033845290915290205460ff165b80610bdc57506000818152600560205260409020546001600160a01b031633145b610c195760405162461bcd60e51b815260206004820152600e60248201526d1393d517d055551213d49256915160921b6044820152606401610748565b6001600160a01b0380841660008181526004602090815260408083208054600019019055938616808352848320805460010190558583526003825284832080546001600160a01b03199081168317909155600590925284832080549092169091559251849392917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b610cb3838383610ae1565b6001600160a01b0382163b1580610d5c5750604051630a85bd0160e11b8082523360048301526001600160a01b03858116602484015260448301849052608060648401526000608484015290919084169063150b7a029060a4016020604051808303816000875af1158015610d2c573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610d509190611d7b565b6001600160e01b031916145b610d9b5760405162461bcd60e51b815260206004820152601060248201526f155394d0519157d49150d2541251539560821b6044820152606401610748565b505050565b610da861159f565b600980546001600160a01b0319166001600160a01b0392909216919091179055565b6000818152600360205260409020546001600160a01b0316806109de5760405162461bcd60e51b815260206004820152600a6024820152691393d517d3525395115160b21b6044820152606401610748565b60608082516040519150602081048252602082016020850160005b83811015610e4f578181015183820152602001610e37565b505050810160200160405292915050565b60006001600160a01b038216610ea75760405162461bcd60e51b815260206004820152600c60248201526b5a45524f5f4144445245535360a01b6044820152606401610748565b506001600160a01b031660009081526004602052604090205490565b610ecb61159f565b610ed560006115f9565b565b6000858152600360205260409020546001600160a01b0316610f2f57610efd3286611649565b60078054600090815260086020526040812087905581546001929190610f24908490611d98565b90915550610f889050565b6000858152600360205260409020546001600160a01b03163214610f8857600085815260036020526040908190205490516324f3f02560e21b81526001600160a01b039091166004820152326024820152604401610748565b6040518060600160405280856001600160a01b0316815260200184815260200183838080601f0160208091040260200160405190810160405280939291908181526020018383808284376000920182905250939094525050878152600a6020908152604091829020845181546001600160a01b0319166001600160a01b0390911617815590840151600182015590830151909150600282019061102b9082611df9565b5050505050505050565b6002805461064590611c7b565b3360008181526006602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b6000818152600a6020908152604080832081516060818101845282546001600160a01b0316825260018301549482019490945260028201805494959491938401916110f890611c7b565b80601f016020809104026020016040519081016040528092919081815260200182805461112490611c7b565b80156111715780601f1061114657610100808354040283529160200191611171565b820191906000526020600020905b81548152906001019060200180831161115457829003601f168201915b505050505081525050905061119381516001600160a01b0316600160801b1490565b156111a1576109d381610609565b60006111b0826000015161092a565b905060006111bf836020015190565b905060006111d084604001516107ad565b90506000836001600160a01b031683836040516020016111f1929190611eb9565b60408051601f198184030181529082905261120b91611eea565b600060405180830381855afa9150503d8060008114611246576040519150601f19603f3d011682016040523d82523d6000602084013e61124b565b606091505b5098975050505050505050565b600080611266600284611f06565b60019081149493901c92915050565b61127d61159f565b7f8dca0271872d00b3de3abafca544c52fcd7d512dd852c9894fa2c118ac759a93600283836040516112b193929190611fce565b60405180910390a16002610d9b828483611ffe565b6112d1858585610ae1565b6001600160a01b0384163b15806113685750604051630a85bd0160e11b808252906001600160a01b0386169063150b7a02906113199033908a908990899089906004016120be565b6020604051808303816000875af1158015611338573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061135c9190611d7b565b6001600160e01b031916145b6113a75760405162461bcd60e51b815260206004820152601060248201526f155394d0519157d49150d2541251539560821b6044820152606401610748565b5050505050565b6113b661159f565b7fb65b7b5ea384affd30f77f842e057d29dd1b13f133adf69a724a8105b164ab75600183836040516113ea93929190611fce565b60405180910390a16001610d9b828483611ffe565b6000818152600360205260409020546060906001600160a01b03168061143b57604051630243d1a960e21b815260048101849052602401610748565b6000611446846110ae565b6009546040516328de0f2f60e01b81529192506001600160a01b0316906328de0f2f9061147c90879085906001906004016120fd565b600060405180830381865afa158015611499573d6000803e3d6000fd5b505050506040513d6000823e601f3d908101601f191682016040526114c19190810190612128565b949350505050565b604080516060808201835260008083526020830181905292820152906114ee836110ae565b6040805160608101825285815260009586526003602090815295829020546001600160a01b0316958101959095528401525090919050565b61152e61159f565b6001600160a01b0381166115935760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610748565b61159c816115f9565b50565b6000546001600160a01b03163314610ed55760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610748565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b6001600160a01b0382166116935760405162461bcd60e51b81526020600482015260116024820152701253959053125117d49150d25412515395607a1b6044820152606401610748565b6000818152600360205260409020546001600160a01b0316156116e95760405162461bcd60e51b815260206004820152600e60248201526d1053149150511657d3525395115160921b6044820152606401610748565b6001600160a01b038216600081815260046020908152604080832080546001019055848352600390915280822080546001600160a01b0319168417905551839291907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b6001600160e01b03198116811461159c57600080fd5b60006020828403121561177c57600080fd5b81356109d381611754565b634e487b7160e01b600052604160045260246000fd5b604051601f8201601f1916810167ffffffffffffffff811182821017156117c6576117c6611787565b604052919050565b6001600160a01b038116811461159c57600080fd5b600067ffffffffffffffff8211156117fd576117fd611787565b50601f01601f191660200190565b600082601f83011261181c57600080fd5b813561182f61182a826117e3565b61179d565b81815284602083860101111561184457600080fd5b816020850160208301376000918101602001919091529392505050565b60006020828403121561187357600080fd5b813567ffffffffffffffff8082111561188b57600080fd5b908301906060828603121561189f57600080fd5b6040516060810181811083821117156118ba576118ba611787565b60405282356118c8816117ce565b8152602083810135908201526040830135828111156118e657600080fd5b6118f28782860161180b565b60408301525095945050505050565b60005b8381101561191c578181015183820152602001611904565b50506000910152565b6000815180845261193d816020860160208601611901565b601f01601f19169290920160200192915050565b6020815260006109d36020830184611925565b60006020828403121561197657600080fd5b5035919050565b6000806040838503121561199057600080fd5b823561199b816117ce565b946020939093013593505050565b6000602082840312156119bb57600080fd5b813567ffffffffffffffff8111156119d257600080fd5b6114c18482850161180b565b60018060a01b0384168152826020820152606060408201526000611a056060830184611925565b95945050505050565b600060208284031215611a2057600080fd5b81356109d3816117ce565b600080600060608486031215611a4057600080fd5b8335611a4b816117ce565b92506020840135611a5b816117ce565b929592945050506040919091013590565b6020808252825182820181905260009190848201906040850190845b81811015611aa457835183529284019291840191600101611a88565b50909695505050505050565b60008083601f840112611ac257600080fd5b50813567ffffffffffffffff811115611ada57600080fd5b602083019150836020828501011115611af257600080fd5b9250929050565b600080600080600060808688031215611b1157600080fd5b853594506020860135611b23816117ce565b935060408601359250606086013567ffffffffffffffff811115611b4657600080fd5b611b5288828901611ab0565b969995985093965092949392505050565b60008060408385031215611b7657600080fd5b8235611b81816117ce565b915060208301358015158114611b9657600080fd5b809150509250929050565b60008060208385031215611bb457600080fd5b823567ffffffffffffffff811115611bcb57600080fd5b611bd785828601611ab0565b90969095509350505050565b600080600080600060808688031215611bfb57600080fd5b8535611c06816117ce565b94506020860135611b23816117ce565b602081528151602082015260018060a01b036020830151166040820152600060408301516060808401526114c16080840182611925565b60008060408385031215611c6057600080fd5b8235611c6b816117ce565b91506020830135611b96816117ce565b600181811c90821680611c8f57607f821691505b602082108103611caf57634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052603260045260246000fd5b80516020808301519190811015611caf5760001960209190910360031b1b16919050565b60008351611d01818460208801611901565b9190910191825250602001919050565b634e487b7160e01b600052601160045260246000fd5b600060018201611d3957611d39611d11565b5060010190565b604081526000611d536040830185611925565b90508260208301529392505050565b600060208284031215611d7457600080fd5b5051919050565b600060208284031215611d8d57600080fd5b81516109d381611754565b8082018082111561060357610603611d11565b601f821115610d9b57600081815260208120601f850160051c81016020861015611dd25750805b601f850160051c820191505b81811015611df157828155600101611dde565b505050505050565b815167ffffffffffffffff811115611e1357611e13611787565b611e2781611e218454611c7b565b84611dab565b602080601f831160018114611e5c5760008415611e445750858301515b600019600386901b1c1916600185901b178555611df1565b600085815260208120601f198616915b82811015611e8b57888601518255948401946001909101908401611e6c565b5085821015611ea95787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b6001600160e01b0319831681528151600090611edc816004850160208701611901565b919091016004019392505050565b60008251611efc818460208701611901565b9190910192915050565b600082611f2357634e487b7160e01b600052601260045260246000fd5b500690565b60008154611f3581611c7b565b808552602060018381168015611f525760018114611f6c57611f9a565b60ff1985168884015283151560051b880183019550611f9a565b866000528260002060005b85811015611f925781548a8201860152908301908401611f77565b890184019650505b505050505092915050565b81835281816020850137506000828201602090810191909152601f909101601f19169091010190565b604081526000611fe16040830186611f28565b8281036020840152611ff4818587611fa5565b9695505050505050565b67ffffffffffffffff83111561201657612016611787565b61202a836120248354611c7b565b83611dab565b6000601f84116001811461205e57600085156120465750838201355b600019600387901b1c1916600186901b1783556113a7565b600083815260209020601f19861690835b8281101561208f578685013582556020948501946001909201910161206f565b50868210156120ac5760001960f88860031b161c19848701351681555b505060018560011b0183555050505050565b6001600160a01b03868116825285166020820152604081018490526080606082018190526000906120f29083018486611fa5565b979650505050505050565b8381526060602082015260006121166060830185611925565b8281036040840152611ff48185611f28565b60006020828403121561213a57600080fd5b815167ffffffffffffffff81111561215157600080fd5b8201601f8101841361216257600080fd5b805161217061182a826117e3565b81815285602083850101111561218557600080fd5b611a0582602083016020860161190156fea26469706673582212208654fed39bbd8db9fff4941eef342e5c686c37c5ce983973725ee994fdf5a88a64736f6c63430008140033a264697066735822122087cea2be6e247da88c43d4ca4f954bda87a09156a9b792b225900e1701e2c74164736f6c634300081400330000000000000000000000009fe46736679d2d9a65f0992f2272de9f3c7fa6e0000000000000000000000000000000000000000000000000002386f26fc10000", + "nonce": "0x4", + "accessList": [] + }, + "additionalContracts": [], + "isFixedGasLimit": false + } + ], + "receipts": [ + { + "transactionHash": "0xfb04d6c6b1e9f9378a1ec3cfd8f86c712379c2a9a898c24d0ae06ead6fb87858", + "transactionIndex": "0x0", + "blockHash": "0xc3f111115b6111df2c4eb4f195b809b3bfbdb4b6b0af8a9937fe332ef5324ee1", + "blockNumber": "0x1", + "from": "0xf39Fd6e51aad88F6F4ce6aB8827279cffFb92266", + "to": null, + "cumulativeGasUsed": "0xf072b", + "gasUsed": "0xf072b", + "contractAddress": "0x5FbDB2315678afecb367f032d93F642f64180aa3", + "logs": [], + "status": "0x1", + "logsBloom": "0x00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", + "type": "0x2", + "effectiveGasPrice": "0xee6b2800" + }, + { + "transactionHash": "0x16a24f294817f13c03d22266c67ddecc22e25eff349a9e8619b580da71ceee3a", + "transactionIndex": "0x1", + "blockHash": "0xc3f111115b6111df2c4eb4f195b809b3bfbdb4b6b0af8a9937fe332ef5324ee1", + "blockNumber": "0x1", + "from": "0xf39Fd6e51aad88F6F4ce6aB8827279cffFb92266", + "to": null, + "cumulativeGasUsed": "0x1141e0", + "gasUsed": "0x23ab5", + "contractAddress": "0xe7f1725E7734CE288F8367e1Bb143E90bb3F0512", + "logs": [], + "status": "0x1", + "logsBloom": "0x00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", + "type": "0x2", + "effectiveGasPrice": "0xee6b2800" + }, + { + "transactionHash": "0x5d414223b8f3dad1cef0f8d597701996b4292a491d1da79a2f8faefb1f9bd4a1", + "transactionIndex": "0x2", + "blockHash": "0xc3f111115b6111df2c4eb4f195b809b3bfbdb4b6b0af8a9937fe332ef5324ee1", + "blockNumber": "0x1", + "from": "0xf39Fd6e51aad88F6F4ce6aB8827279cffFb92266", + "to": null, + "cumulativeGasUsed": "0x3758e9", + "gasUsed": "0x261709", + "contractAddress": "0x9fE46736679d2D9a65F0992F2272dE9f3c7fa6e0", + "logs": [], + "status": "0x1", + "logsBloom": "0x00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", + "type": "0x2", + "effectiveGasPrice": "0xee6b2800" + }, + { + "transactionHash": "0x6928394d16d250b8acc935bd72f4e688cd99af36a973880a9f486cc7c2fe7374", + "transactionIndex": "0x3", + "blockHash": "0xc3f111115b6111df2c4eb4f195b809b3bfbdb4b6b0af8a9937fe332ef5324ee1", + "blockNumber": "0x1", + "from": "0xf39Fd6e51aad88F6F4ce6aB8827279cffFb92266", + "to": null, + "cumulativeGasUsed": "0x3a8717", + "gasUsed": "0x32e2e", + "contractAddress": "0xCf7Ed3AccA5a467e9e704C703E8D87F634fB0Fc9", + "logs": [], + "status": "0x1", + "logsBloom": "0x00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", + "type": "0x2", + "effectiveGasPrice": "0xee6b2800" + }, + { + "transactionHash": "0xb5ca6887acd6dc183175a31022b7f2c064fd77da0de691cb19ccc59b228c0967", + "transactionIndex": "0x0", + "blockHash": "0x2043509109b05ae932561c1db2a918372ba70b49c44e2d67c96ebc097cc1d636", + "blockNumber": "0x2", + "from": "0xf39Fd6e51aad88F6F4ce6aB8827279cffFb92266", + "to": null, + "cumulativeGasUsed": "0x289654", + "gasUsed": "0x289654", + "contractAddress": "0xDc64a140Aa3E981100a9becA4E685f962f0cF6C9", + "logs": [ + { + "address": "0xDc64a140Aa3E981100a9becA4E685f962f0cF6C9", + "topics": [ + "0x8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0", + "0x0000000000000000000000000000000000000000000000000000000000000000", + "0x000000000000000000000000f39fd6e51aad88f6f4ce6ab8827279cfffb92266" + ], + "data": "0x", + "blockHash": "0x2043509109b05ae932561c1db2a918372ba70b49c44e2d67c96ebc097cc1d636", + "blockNumber": "0x2", + "transactionHash": "0xb5ca6887acd6dc183175a31022b7f2c064fd77da0de691cb19ccc59b228c0967", + "transactionIndex": "0x0", + "logIndex": "0x0", + "transactionLogIndex": "0x0", + "removed": false + } + ], + "status": "0x1", + "logsBloom": "0x00000000000000000000000000000000000000000000000000800000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000020000000000000100000800000000000000000000000000000000400000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000200000000000000000000000002020000000000000000020000000000000000000000000000000000000000001000000000100000000000000", + "type": "0x2", + "effectiveGasPrice": "0xe8df89d5" + } + ], + "libraries": [ + "lib/eth-projects-monorepo/packages/eth-projects-contracts/contracts/lib/utils/Bytes.sol:Bytes:0x5fbdb2315678afecb367f032d93f642f64180aa3" + ], + "pending": [], + "returns": {}, + "timestamp": 1689415242, + "chain": 31337, + "multi": false, + "commit": "fe5dc88" +} \ No newline at end of file diff --git a/packages/starksheet-solidity/broadcast/Evmsheet.s.sol/31337/run-1689415257.json b/packages/starksheet-solidity/broadcast/Evmsheet.s.sol/31337/run-1689415257.json new file mode 100644 index 00000000..199da9a5 --- /dev/null +++ b/packages/starksheet-solidity/broadcast/Evmsheet.s.sol/31337/run-1689415257.json @@ -0,0 +1,209 @@ +{ + "transactions": [ + { + "hash": "0x0139fb712eb4db716921fec34aaff25eaf45bad93b541135a224f800f0e8ae95", + "transactionType": "CREATE", + "contractName": "Bytes", + "contractAddress": "0x5FC8d32690cc91D4c39d9d3abcBD16989F875707", + "function": null, + "arguments": null, + "transaction": { + "type": "0x02", + "from": "0xf39fd6e51aad88f6f4ce6ab8827279cfffb92266", + "gas": "0x1387ed", + "data": "0x6110d661003a600b82828239805160001a60731461002d57634e487b7160e01b600052600060045260246000fd5b30600052607381538281f3fe73000000000000000000000000000000000000000030146080604052600436106101625760003560e01c8063a5eb31ee116100cd578063d1ffb56111610086578063d1ffb561146103fb578063d442584f1461042b578063e004139614610454578063f1142fb314610474578063f647f8fb14610487578063f83b670f146104b257600080fd5b8063a5eb31ee14610344578063a8d8f00f1461036b578063b5cdf92414610396578063b63711df146103a9578063be8b3430146103bc578063c29616bd146103cf57600080fd5b80635ef849301161011f5780635ef8493014610241578063913c97b41461026b57806397e6175c1461029f57806399dd9bd7146102cb5780639ae4c3d1146102ec5780639cee499e1461031857600080fd5b8063042aa0841461016757806305d3bb74146101985780631a7431ef146101c0578063235266d2146101e357806348137709146101f65780634d66a2ae1461021b575b600080fd5b61017a610175366004610ec0565b6104de565b6040516001600160d01b031990911681526020015b60405180910390f35b6101ab6101a6366004610ec0565b610540565b60405163ffffffff909116815260200161018f565b6101d36101ce366004610f05565b61059d565b604051901515815260200161018f565b6101d36101f1366004610f4c565b610652565b610209610204366004610ec0565b6106b5565b60405160ff909116815260200161018f565b61022e610229366004610fa6565b610711565b60405161ffff909116815260200161018f565b61025461024f366004610ec0565b61071e565b60405165ffffffffffff909116815260200161018f565b61027e610279366004610ec0565b610772565b6040516fffffffffffffffffffffffffffffffff909116815260200161018f565b6102b26102ad366004610ec0565b6107d0565b6040516001600160a01b0319909116815260200161018f565b6102de6102d9366004610ec0565b61082e565b60405190815260200161018f565b6102ff6102fa366004610ec0565b61088c565b60405167ffffffffffffffff909116815260200161018f565b61032b610326366004610ec0565b6108e9565b6040516001600160d81b0319909116815260200161018f565b610357610352366004610ec0565b610946565b60405162ffffff909116815260200161018f565b61037e610379366004610ec0565b6109a3565b60405166ffffffffffffff909116815260200161018f565b6102de6103a4366004610ec0565b610a00565b6102ff6103b7366004610ec0565b610a55565b61022e6103ca366004610ec0565b610aa9565b6103e26103dd366004610ec0565b610b06565b6040516001600160c81b0319909116815260200161018f565b61040e610409366004610ec0565b610b5a565b6040516bffffffffffffffffffffffff909116815260200161018f565b61043e610439366004610ec0565b610bae565b60405164ffffffffff909116815260200161018f565b610467610462366004610fe3565b610c02565b60405161018f9190611031565b6102b2610482366004610ec0565b610d0f565b61049a610495366004610ec0565b610d64565b6040516001600160a01b03909116815260200161018f565b6104c56104c0366004610ec0565b610dc9565b6040516001600160f81b0319909116815260200161018f565b60006104eb82600661107f565b835110156105375760405162461bcd60e51b8152602060048201526014602482015273746f4279746573365f6f75744f66426f756e647360601b60448201526064015b60405180910390fd5b50016006015190565b600061054d82600461107f565b835110156105945760405162461bcd60e51b8152602060048201526014602482015273746f55696e7433325f6f75744f66426f756e647360601b604482015260640161052e565b50016004015190565b600080600190508354600260018083161561010002038216048451808214600181146105cc5760009450610644565b821561064457602083106001811461062957600189600052602060002060208a018581015b600284828410010361062057815183541461060f5760009950600093505b6001830192506020820191506105f1565b50505050610642565b6101008086040294506020880151851461064257600095505b505b509293505050505b92915050565b81518151600091600191811480831461066e57600092506106ab565b600160208701838101602088015b60028483851001036106a657805183511461069a5760009650600093505b6020928301920161067c565b505050505b5090949350505050565b60006106c282600161107f565b835110156107085760405162461bcd60e51b8152602060048201526013602482015272746f55696e74385f6f75744f66426f756e647360681b604482015260640161052e565b50016001015190565b600061064c826000610aa9565b600061072b82600661107f565b835110156105375760405162461bcd60e51b8152602060048201526014602482015273746f55696e7434385f6f75744f66426f756e647360601b604482015260640161052e565b600061077f82601061107f565b835110156107c75760405162461bcd60e51b8152602060048201526015602482015274746f55696e743132385f6f75744f66426f756e647360581b604482015260640161052e565b50016010015190565b60006107dd82600c61107f565b835110156108255760405162461bcd60e51b8152602060048201526015602482015274746f427974657331325f6f75744f66426f756e647360581b604482015260640161052e565b5001600c015190565b600061083b82602061107f565b835110156108835760405162461bcd60e51b8152602060048201526015602482015274746f427974657333325f6f75744f66426f756e647360581b604482015260640161052e565b50016020015190565b600061089982600861107f565b835110156108e05760405162461bcd60e51b8152602060048201526014602482015273746f55696e7436345f6f75744f66426f756e647360601b604482015260640161052e565b50016008015190565b60006108f682600561107f565b8351101561093d5760405162461bcd60e51b8152602060048201526014602482015273746f4279746573355f6f75744f66426f756e647360601b604482015260640161052e565b50016005015190565b600061095382600361107f565b8351101561099a5760405162461bcd60e51b8152602060048201526014602482015273746f55696e7432345f6f75744f66426f756e647360601b604482015260640161052e565b50016003015190565b60006109b082600761107f565b835110156109f75760405162461bcd60e51b8152602060048201526014602482015273746f55696e7435365f6f75744f66426f756e647360601b604482015260640161052e565b50016007015190565b6000610a0d82602061107f565b835110156108835760405162461bcd60e51b8152602060048201526015602482015274746f55696e743235365f6f75744f66426f756e647360581b604482015260640161052e565b6000610a6282600861107f565b835110156108e05760405162461bcd60e51b8152602060048201526014602482015273746f4279746573385f6f75744f66426f756e647360601b604482015260640161052e565b6000610ab682600261107f565b83511015610afd5760405162461bcd60e51b8152602060048201526014602482015273746f55696e7431365f6f75744f66426f756e647360601b604482015260640161052e565b50016002015190565b6000610b1382600761107f565b835110156109f75760405162461bcd60e51b8152602060048201526014602482015273746f4279746573375f6f75744f66426f756e647360601b604482015260640161052e565b6000610b6782600c61107f565b835110156108255760405162461bcd60e51b8152602060048201526014602482015273746f55696e7439365f6f75744f66426f756e647360601b604482015260640161052e565b6000610bbb82600561107f565b8351101561093d5760405162461bcd60e51b8152602060048201526014602482015273746f55696e7434305f6f75744f66426f756e647360601b604482015260640161052e565b606081610c1081601f61107f565b1015610c4f5760405162461bcd60e51b815260206004820152600e60248201526d736c6963655f6f766572666c6f7760901b604482015260640161052e565b610c59828461107f565b84511015610c9d5760405162461bcd60e51b8152602060048201526011602482015270736c6963655f6f75744f66426f756e647360781b604482015260640161052e565b606082158015610cbc5760405191506000825260208201604052610d06565b6040519150601f8416801560200281840101858101878315602002848b0101015b81831015610cf5578051835260209283019201610cdd565b5050858452601f01601f1916604052505b50949350505050565b6000610d1c82601061107f565b835110156107c75760405162461bcd60e51b8152602060048201526015602482015274746f427974657331365f6f75744f66426f756e647360581b604482015260640161052e565b6000610d7182601461107f565b83511015610db95760405162461bcd60e51b8152602060048201526015602482015274746f416464726573735f6f75744f66426f756e647360581b604482015260640161052e565b500160200151600160601b900490565b6000610dd682600161107f565b835110156107085760405162461bcd60e51b8152602060048201526014602482015273746f4279746573315f6f75744f66426f756e647360601b604482015260640161052e565b634e487b7160e01b600052604160045260246000fd5b600082601f830112610e4457600080fd5b813567ffffffffffffffff80821115610e5f57610e5f610e1d565b604051601f8301601f19908116603f01168101908282118183101715610e8757610e87610e1d565b81604052838152866020858801011115610ea057600080fd5b836020870160208301376000602085830101528094505050505092915050565b60008060408385031215610ed357600080fd5b823567ffffffffffffffff811115610eea57600080fd5b610ef685828601610e33565b95602094909401359450505050565b60008060408385031215610f1857600080fd5b82359150602083013567ffffffffffffffff811115610f3657600080fd5b610f4285828601610e33565b9150509250929050565b60008060408385031215610f5f57600080fd5b823567ffffffffffffffff80821115610f7757600080fd5b610f8386838701610e33565b93506020850135915080821115610f9957600080fd5b50610f4285828601610e33565b600060208284031215610fb857600080fd5b813567ffffffffffffffff811115610fcf57600080fd5b610fdb84828501610e33565b949350505050565b600080600060608486031215610ff857600080fd5b833567ffffffffffffffff81111561100f57600080fd5b61101b86828701610e33565b9660208601359650604090950135949350505050565b600060208083528351808285015260005b8181101561105e57858101830151858201604001528201611042565b506000604082860101526040601f19601f8301168501019250505092915050565b8082018082111561064c57634e487b7160e01b600052601160045260246000fdfea26469706673582212208ffe93db15f03a6fd0c59ab94e8e6a84e4561b6982e8824dafaf837546cfb2c764736f6c63430008140033", + "nonce": "0x5", + "accessList": [] + }, + "additionalContracts": [], + "isFixedGasLimit": false + }, + { + "hash": "0xd7c1ceebc6c4619f3a5018e5f2b1443b292b9154d5c05f53292226d0ff4156a0", + "transactionType": "CREATE", + "contractName": "MultiSendCallOnly", + "contractAddress": "0x0165878A594ca255338adfa4d48449f69242Eb8F", + "function": null, + "arguments": null, + "transaction": { + "type": "0x02", + "from": "0xf39fd6e51aad88f6f4ce6ab8827279cfffb92266", + "gas": "0x2e5c4", + "value": "0x0", + "data": "0x608060405234801561001057600080fd5b506101ae806100206000396000f3fe60806040526004361061001e5760003560e01c80638d80ff0a14610023575b600080fd5b6100366100313660046100c7565b610038565b005b805160205b818110156100ac578083015160f81c6001820184015160601c601583018501516035840186015160558501870160008560008114610082576001811461001e5761008e565b6000808585888a5af191505b508061009957600080fd5b505080605501850194505050505061003d565b505050565b634e487b7160e01b600052604160045260246000fd5b6000602082840312156100d957600080fd5b813567ffffffffffffffff808211156100f157600080fd5b818401915084601f83011261010557600080fd5b813581811115610117576101176100b1565b604051601f8201601f19908116603f0116810190838211818310171561013f5761013f6100b1565b8160405282815287602084870101111561015857600080fd5b82602086016020830137600092810160200192909252509594505050505056fea2646970667358221220ad06ffe6d9a3c63ecf1a3aceb88077e5714c5ace8cfc89d2cea6ce600b35072364736f6c63430008140033", + "nonce": "0x6", + "accessList": [] + }, + "additionalContracts": [], + "isFixedGasLimit": false + }, + { + "hash": "0x2c42e490fdb9acfcfa9f013e739318ffbe363dcb166d82c2fef98d2c14903725", + "transactionType": "CREATE", + "contractName": "BasicCellRenderer", + "contractAddress": "0xa513E6E4b8f2a923D98304ec87F64353C4D5C853", + "function": null, + "arguments": null, + "transaction": { + "type": "0x02", + "from": "0xf39fd6e51aad88f6f4ce6ab8827279cfffb92266", + "gas": "0x3180bd", + "value": "0x0", + "data": "0x608060405234801561001057600080fd5b50612c25806100206000396000f3fe608060405234801561001057600080fd5b50600436106100365760003560e01c806306d4cd8b1461003b57806328de0f2f14610064575b600080fd5b61004e610049366004610322565b610077565b60405161005b919061038b565b60405180910390f35b61004e610072366004610404565b6100f1565b60606000610086600f846104fc565b90506000610095600f8361051e565b61009f9085610535565b905060006100ae826041610548565b60f81b9050806100c76100c2856001610548565b6101b6565b6040516020016100d8929190610577565b6040516020818303038152906040529350505050919050565b606060006100fe86610077565b905083838261018388735fc8d32690cc91d4c39d9d3abcbd16989f87570763b5cdf924909160006040518363ffffffff1660e01b81526004016101429291906105a8565b602060405180830381865af415801561015f573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906100c291906105ca565b87878660405160200161019c97969594939291906105f2565b604051602081830303815290604052915050949350505050565b606060006101c383610249565b600101905060008167ffffffffffffffff8111156101e3576101e36103a5565b6040519080825280601f01601f19166020018201604052801561020d576020820181803683370190505b5090508181016020015b600019016f181899199a1a9b1b9c1cb0b131b232b360811b600a86061a8153600a850494508461021757509392505050565b60008072184f03e93ff9f4daa797ed6e38ed64bf6a1f0160401b83106102885772184f03e93ff9f4daa797ed6e38ed64bf6a1f0160401b830492506040015b6d04ee2d6d415b85acef810000000083106102b4576d04ee2d6d415b85acef8100000000830492506020015b662386f26fc1000083106102d257662386f26fc10000830492506010015b6305f5e10083106102ea576305f5e100830492506008015b61271083106102fe57612710830492506004015b60648310610310576064830492506002015b600a831061031c576001015b92915050565b60006020828403121561033457600080fd5b5035919050565b60005b8381101561035657818101518382015260200161033e565b50506000910152565b6000815180845261037781602086016020860161033b565b601f01601f19169290920160200192915050565b60208152600061039e602083018461035f565b9392505050565b634e487b7160e01b600052604160045260246000fd5b60008083601f8401126103cd57600080fd5b50813567ffffffffffffffff8111156103e557600080fd5b6020830191508360208285010111156103fd57600080fd5b9250929050565b6000806000806060858703121561041a57600080fd5b84359350602085013567ffffffffffffffff8082111561043957600080fd5b818701915087601f83011261044d57600080fd5b81358181111561045f5761045f6103a5565b604051601f8201601f19908116603f01168101908382118183101715610487576104876103a5565b816040528281528a60208487010111156104a057600080fd5b8260208601602083013760006020848301015280975050505060408701359150808211156104cd57600080fd5b506104da878288016103bb565b95989497509550505050565b634e487b7160e01b600052601160045260246000fd5b60008261051957634e487b7160e01b600052601260045260246000fd5b500490565b808202811582820484141761031c5761031c6104e6565b8181038181111561031c5761031c6104e6565b8082018082111561031c5761031c6104e6565b6000815161056d81856020860161033b565b9290920192915050565b6001600160f81b031983168152815160009061059a81600185016020870161033b565b919091016001019392505050565b6040815260006105bb604083018561035f565b90508260208301529392505050565b6000602082840312156105dc57600080fd5b5051919050565b81818437506000910190815290565b7f646174613a6170706c69636174696f6e2f6a736f6e2c7b22646573637269707481527f696f6e223a2022537461726b7368656574222c20226e616d65223a202200000060208201528688603d8301376000878201602160f81b603d820152875161066481603e840160208c0161033b565b7f222c22696d616765223a2022646174613a696d6167652f7376672b786d6c2c25603e92909101918201527f334373766725323076696577426f782533442532373025323030253230383925605e8201527f3230353525323725323066696c6c2533442532376e6f6e65253237253230786d607e8201527f6c6e73253344253237687474702533412f2f7777772e77332e6f72672f323030609e8201527f302f737667253237253345253343646566732533452533437374796c6525334560be8201527f253430666f6e742d66616365253230253742666f6e742d66616d696c7925334160de8201527f253230253237507265737325323053746172742532303250253237253342737260fe8201527f6325334125323075726c25323825323764617461253341666f6e742f776f666661011e8201527f32253342626173653634253243643039474d6741424141414141424c3841413861013e8201527f41414141415235774141424b674141454141414141414141414141414141414161015e8201527f4141414141414141414141414150305a4756453063476a41624d42794358675a61017e8201527f6741494e794551674b3846545361517544524141424e67496b41344e4d42434161019e8201527f46687a5148684649623644566c42306a314f4d4253336f4f4953744562732f2f6101be8201527f2f6c4a776356727a47634f30676f684c45484d6369694443434e57695a6761306101de8201527f79625345555954514f6a4b427038546c737a7344526438716174586c333058746101fe8201527f30645a47467952305668444b776c62746c25324272734643773945316e64655961021e8201527f4a74732f37527762305673784d71576c636a6a775445537a2f5568752f77337361023e8201527f33746b6f496d70343464515168576f456d54337579526d70746f7553446b7a5761025e8201527f454138762f3932364a4b7539486f696e6e3673376674336d4965476c7737547161027e8201527f6437456f326a46517849766a5642494a70563269614f62547a68575932314e7461029e8201527f476772687434704d4b3457556a34624c7967542f51253242514c7879253242336102be8201527f6c482f362f6b6275496444497239446a724a496a6f394a7336524d58253242456102de8201527f6b37424f545a6b6d70397a347455524652566656307148504448375a7462364a6102fe8201527f616f6130684c335975616232473373667a72365776394536793569767025324261031e8201527f7135564c74426a514478476f5345304150313762336466376c61726a6525324261033e8201527f73637a6b7241744a334b6657304a342532424b323365744b4b556a383554616f61035e8201527f57473453346158436c427743413268676141652532423658396f696e32304e6261037e8201527f554a7264466767517049686d5247494d30372f7025324277375a7058316c473161039e8201527f6a6a51787073435141423438714445415042346950312f6a39592f4261686a356103be8201527f5943414e302f78714157496852616a6c6e694e654f50396e78433466667932556103de8201527f694843304e47386b686f6f567a6f7459334445417a417a41356b473735337a6a6103fe8201527f4853354d6e6d586b69496a6d54554d36556d4d3025324256346976752f48377861041e8201527f6a364666322f6b343472787a6449324141676742492f4c48416b394a7a35554d61043e8201527f496f4c7755344146455435725a464f33444d616655633061777351434879497061045e8201527f557a546b30784a474a454f6a4e6871436b474570496153474f6a714e466d2f5761047e8201527f4e434e3569636b71434d6e414165564c4d4c655867356971386b365752585a5261049e8201527f326c337042393831427a73475a743225324256696c4342723954494a674b67786104be8201527f365542514446253242566a4b44714e7741414948386a6949664d6e75384b68666104de8201527f584b486f4e3348634134477245786842324155442f795a554d423857547579496104fe8201527f413444634f4b656434397939504249616e426967734d454e38556b30766c547661051e8201527f304a58334e394d795a75544d763573655357413525324238556538504465547261053e8201527f645467474973566d4e33635856586a6463795275633434385866664176506e7361055e8201527f3575324d4531722532426a4731703137767a3849704f416e483444427367793361057e8201527f512f54376b33646d2f3846334232377355694877464631414f6c683055646e4961059e8201527f4471494e5164506355393145786f2f346252696a6a5169704e4e307a4c646c7a6105be8201527f504438496f547449734c38717162746f4f5149514a5a567849705931315073536105de8201527f55533231397a4c585066642f507667765751346372464d2532425769755671706105fe8201527f645a6f4e6475645872632f4745324d4a36656e3575635746694763375274364f61061e8201527f487676354d674c2532427a44733578444277696141315433554877326b63594361063e8201527f312f55666453316645316d37763742346537653350574848786533594f32483561065e8201527f25324241504f5a7965503025324251506553425468793078713965363241486a61067e8201527f6141556842432f364144484c6f476f4f657636412532426867487369317a613861069e8201527f71355a4e4d716a596c575a4d713867354248445574495370574a73526f52544a6106be8201527f56613049305a3957546b5371564b73507a3464586a7648746449684c6e7670746106de8201527f554c4330753542567579414d544b4a513930594b5267546e5769476b6d7153456106fe8201527f714b6d7256685259674b6b335443686255573671456f45637665577a6859535461071e8201527f4c32484e706735452f6d7151393956564467763352475435586d33637a68754c61073e8201527f3972685864316132372f736c5130686959366a643739614f5a43746a6f52687261075e8201527f623136575676514b725734477a786a7869723238494d697a2f7155447973495761077e8201527f7037516a667765347a556437614a735651575179524c554b484b42577938577661079e8201527f45565333584d53353656337757644f442532424638757639645477496d4b722f6107be8201527f5064626d5763775176456641616a7975566a70784e32704f56635769336c38776107de8201527f454c2f6d395070646f55494536253242504b5838315041546d67654f304231736107fe8201527f47454825324261707a353466646d534a7a333741686635366a4c7739756e504561081e8201527f35644d4b3025324237544639563843435466523979664e7355493474557a464661083e8201527f42326e536e384b4f626a64446964554c7034494a6873777878595172595a643661085e8201527f4e76436e55394d445825324252654c6e4d546d6c315a453972306b5077334e3261087e8201527f6752253242736a4573596d4953706b356c31497333594e614a4b6f6e7a65703761089e8201527f56637354316e556b62347048774b5a41796b614b6f43504630506f6d456876496108be8201527f5758656e6f5a767836774f4b313070316c3274546858793850316555776473766108de8201527f53715157766f424d7473674851554a614774494273756861776450545a5378596108fe8201527f707257757734647a7231564755744449465871726f4d4d69597346783857695461091e8201527f336463574b6f376d50554c79715657413972305974524a4c626957766a6e4c2561093e8201527f324272633452646767624e516c514141613264306d616236364d48447074314361095e8201527f6477626b51436253375053445a4d7a3746724f51713165636153304a6c74644161097e8201527f6c44527941587173364130586247707748676b70367572557757416272464d3361099e8201527f75794d764e4b6c344d6c435548537950416d3931776144454a3559595148754a6109be8201527f4d32304b575251737637486b61334770686c533258444b714f4b4245554753316109de8201527f65306b63316f323449494166486c4449794278584a4a656767423369386174566109fe8201527f67434f3064444f5a484a57596a564c416a6a397137765673456e72684b374568610a1e8201527f4c75427a42586d4d674554634531636d61436976504b6f4a766670466c794935610a3e8201527f4d70584234454325324245672f596d303454787843354e6c73596b74646f5951610a5e8201527f55656c38624673456c3748345a36734377622f38626b347458574658504b6a71610a7e8201527f5462526e64336e4c5770394f784941706c664b586747684e6c72443462354a4c610a9e8201527f5a367055753441726756614d366561357844574244476f7a707a4641376e6747610abe8201527f74596334486141775269475576637653653652414177335a576b564f4667764b610ade8201527f46364955696c4d49394964715155345134585264484866736666517770313955610afe8201527f434a49306a5773725433356f5578303678507268473271364d4533554f306c63610b1e8201527f635a557354454351784a44527854444b6c334c4948722f6162546f73686c6466610b3e8201527f51786a364f57745273466e6966444373473674336b426f344e6d424a6d615556610b5e8201527f54636c794951414a4c6a6e723042365a3859464d6e396b397967703752727848610b7e8201527f36766877624a4e41654b4d554436353974386746514a4d5377652f434f624850610b9e8201527f467671484746554e5266253242737245663354584b42725a76676b6369396972610bbe8201527f426d63442f7458616754474358634e68432532424f3539754c706e6673796f71610bde8201527f4c53313238374552776d38666165564f6d3857634437386c5a36594232793938610bfe8201527f5a4c6c4d3972557264324c514e6c324956643454727376675139363079377573610c1e8201527f5965306854506170576a71726c2532425837784665424e54253242315a644a4a610c3e8201527f572532424678745737584e7774634e7a7761672532425256656a6d4a6839656d610c5e8201527f6c495a4b69694e63694b3849554f4d33556a4a376342554e5847505853326c68610c7e8201527f253242687770676f4836567348524f63764569723372585970344c7769435a77610c9e8201527f3176486c43623552314d68623564536e4f326d6e6f475a6f5846315765574757610cbe8201527f6d7a694a314a555534715072306e694a536c4e424331636b4b6d4a6657625877610cde8201527f5577757449547a456d6a776770776142753464525066746a2f4e384143526e64610cfe8201527f616b2f4641674b674c37305058577839767a6b59322532426d34355473496b4c610d1e8201527f3037616f70444e6f676830535262535a534f397a744657516a376e574c676275610d3e8201527f364325324254374b6a44715a3667456e5277674d78306b4c5a77797962514f76610d5e8201527f514130773054782f354a42722f63595a6453574f546a774446364e6f586b796a610d7e8201527f33566a484e4751494e76426a5a734a4a3377466141516d6f5a575a5970416961610d9e8201527f574f466e6e686455524176576b557a77693062677a5a4158796f445545714863610dbe8201527f57307069454c574f777168773365765478444957724e32495371525151454c41610dde8201527f4d32365334486c723548552f48784a43436844424a6b756b6341573856415430610dfe8201527f6770545a544b4e48677a444f7234314751656a4f34677a416e6b577077464752610e1e8201527f43334c625231787a4b434875365635694674674c704f384b51596d5965467868610e3e8201527f4c32643838736469506a2f76306b427a636c51637954735766324d6445394944610e5e8201527f386d5858576a72434b253242354532756e336e6976656973526e726971317548610e7e8201527f594d6a6a69694945304b6466674d6f3163476d6b557254624f30356732737633610e9e8201527f477673525971762f61457736375472644f705435567a4641364131417939634b610ebe8201527f6f44667762544a64445750524e57517354796a6d3772486249734b466b6f4f2f610ede8201527f5a4c4376735966785973337768534338614c49344b765677373773336e347a48610efe8201527f67697061634a6e435362463945727a53357069386343577655597a4f5064327a610f1e8201527f684a2f4750437a53684f453378596c634f3350796164586a54334f6b68706841610f3e8201527f58465853766865544e5355525446565641486f4a6d7949726b6a454b6f517746610f5e8201527f4730303554334158643935764e30446d336d427332786746546c253242513572610f7e8201527f73416a6e744768707a6f62643642374e7a52664e56653130446f4e5639343753610f9e8201527f59646f635252624776636d785456786f61367a717756376d416e773544314745610fbe8201527f5474327a48382532425476514256356e37672f32615768743979794e594c3974610fde8201527f4f42744167384846435945316d4e775432454232467538544968543776565241610ffe8201527f3461587a6e6b3670545a4e6779696f73747749364b654655374c696c7041253261101e8201527f42334234474a794277574d327062466a4876734a3747754f6f616b6a6d46746a61103e8201527f59344c6254396c323239253242453646374c4475577a744c6e333749786b386a61105e8201527f356c42564b33774c7369362f416641756f6a34396c4d6b5653545045396b704761107e8201527f64304c724555534a4941413070596c4178414d642f4e4f46776f4a446458466961109e8201527f307a4f5744422f54464a705666575642574f516274724a556230636c663369256110be8201527f3242575072446f596c65545674564f45306d36793564487444725551776f414c6110de8201527f7455523365585364444d4e785866656a594674764c626c726c4a7777484b2f456110fe8201527f6957504a616b32574b35386e684e6f4c6a615a55475841756f32656f5777464561111e8201527f66612f445334496958717246714779633348726939785132693243352f73357661113e8201527f7a424d30793777334d4473774d3759325247427172464d6778374f696325324261115e8201527f30497a736d5678617a5473305263666a324f3334532f525639503269486f427561117e8201527f6c4b49594244665a46654c53356439725379664a64536c67683268644d72324f61119e8201527f5552334b6e6c506e4f41785477314a384c4d325a776e4671765a745a4a6c78786111be8201527f343873776243743272316b664875443756624831326159383849437456734b786111de8201527f4b742f31726b616c42414d74782f6f6f6d43445059626b556f4c6344624b436a6111fe8201527f7675713953544467746a584744715735564b36686347654f46697a6a3643714c61121e8201527f4f49716b57783477733245504d444e7378253242613661533230384f39784c3061123e8201527f526146586f394241645530706e452532424c695359334b536f4a41525978646e61125e8201527f7a69545a4d706961442f3438496969393834446151357976656378414673735761127e8201527f792f686274696d63253242704c386b35796f70496d4a627948712f6138797a6c61129e8201527f6c37726f4f7a586d786d4163337459585363546b65734d6344324939315a36336112be8201527f6549312f394a627755716b36737863394b52677277574d414e6543314e6e39756112de8201527f4779775473706d5538712532426c5a6d43714d674153363662674841476a514b6112fe8201527f73754a334451416a5235346d356a4c7a5a616e546c62646530253242726e663461131e8201527f385a574138546c32673277414779427748516e3552322532424e6a726542677861133e8201527f626c734e46627554776d6862414a48737a2f72416f61764c4f34317874767a5961135e8201527f4768336e4c4a426b41506a7578424a445248333048426575385567436978464e61137e8201527f437951322f4b253242385157372f6530253242664f2532423436524e5730657961139e8201527f4c726f39446a5467704a4e4d3547385179306c54644f756d73773066715045696113be8201527f393646702532424830634d774e6f376a787a596d6e4e664d5a6d64506c7932706113de8201527f6f7132575065476d67507136474c78504e34536c4b486e7870624f69754c58516113fe8201527f75583155715031676a6f38426136536c55314f416d5267707a7531735444584a61141e8201527f50754d3338546f387130344c324e777970653837327777556741675a6c70386461143e8201527f6b5166397a38544d43624d6b596b3758484375333564375a5a41656f346b5a4b61145e8201527f68784953386945354c546a334c4f6976485a7268394a3870337a4c5a436a776361147e8201527f6970354452694b6e576e49664c33386b4a684d7452776a67553525324256726d61149e8201527f714b6c6739307a376a64732f4238444b646b464c76483353253242376f4838616114be8201527f6c445a6c626734533155583574434d445342324f364b756c7a41344b763067376114de8201527f314251643054464b7733685358696e62374e6c304258725873514e6376436b386114fe8201527f6d6f394f786965783559627a78564e2f6b3738336f48545a495777393079495a61151e8201527f777672697164475473586e54384965705437597946434f4a6741395a3042794961153e8201527f455956735478522f6b73616b324268376f4b767034766e695530364d57317a4261155e8201527f4672746568647a306b6b587951786a426d7965645636644d596545386146787461157e8201527f6575777355466136466c6c54446c716430707a525a77473663467266574d627061159e8201527f384738587a6a66624d253242354658657076356f457273696c363458783663376115be8201527f5841576275696d3666387347494d58666f334a6971476b703333376854536a676115de8201527f65636862364f42472f327a31376a6f6d4469476d253242476c623146553069656115fe8201527f6e7552796977654c576767447a6d4655765545556a5a6f377356544877684f4661161e8201527f504d6b4e737146423977796d6b45307639666d7477453854377135384e594f3761163e8201527f787534623833766e46766c35755378446c472532426b4f51675249644f346a6761165e8201527f7a786a53486a4b4c7332742f6c684f647771766131415744437072763344345361167e8201527f34523741625934544362664b4637744265363554343551347a7a49714433316161169e8201527f79797557716a692532424636585337535439483943314f342f694b366b4775766116be8201527f6b512f664e3537487837456533373435622f76766e2f62482f58253242392f256116de8201527f32426762656d684f416d49705576755157757344764b517578394a44564e734b6116fe8201527f673651636d6b73515341445530346347524c523768466f5a326337785545664761171e8201527f253242776b755459474d764c6a422f6550634936416847686e5735717a45416961173e8201527f4a586377564545775869654e70536c317a6a457253253242435325324248634c61175e8201527f6f52506d7661324d6767412f69794c67536f544a555767733442794149514f3061177e8201527f4f6f705a487656627a6844494c65557155677a7a48492f667950474e7879777361179e8201527f6f796c6865534639577662795363336b4544716b32415636436c4364635535536117be8201527f6e6c4e6e4963394b794d63384c79622532423867484f4a795173466c4c6250526117de8201527f796d6d374a42743349545a544162314732444252496b514b51705451396939626117fe8201527f3665435353387a4d366161525364544b5657524d336663454a4c644b61746e7361181e8201527f724959774e4a55253242733048364461757832775a35686733706c653042474861183e8201527f756b316b4543734859446461496d4b7025324233463542317859763763486b7161185e8201527f644475306a4b645273657a3531376d63563641685148346931484e3173766c6a61187e8201527f5248366845454672682532426e72726d47316e33307a4d346749776d694d774561189e8201527f624b6842545564423141486f582532424b6741517a4f48543946494f71436b526118be8201527f4e4e623273397170496943534f753167576868497343564a73765771457175356118de8201527f47624a514b4e6a61427465394c4f69676368414a7665475773394332323033766118fe8201527f6f6e476c6b77725251323464646732796345646157554456734441785548734961191e8201527f77773665615234464665336d4a416b66426d5a6452395264774a485a6d47645261193e8201527f7950436a706a627a31712f584a34534949446b66384b4b6e6e32456c4b6d794c61195e8201527f69573442513836733151554b2f76426867524e776548766c5968687a7238706361197e8201527f67704b4b6d6f61576a7036426b594f48446c7835734b5647336365474539657661199e8201527f506e773563646667454242676f554946536238587632504553314772446a78456119be8201527f69524b6b697846716a54704d6d544b6b693148726a7a354368517155717845716119de8201527f544c6c4b6c53715571314772547231476a527130717846717a62744f6e5347656119fe8201527f3668374a6d627a4968355a6544696c315a58536a7430774375616b336c6e476f611a1e8201527f5655506f53734e663337394b326a6274716d44674d69485a42665a6c68324839611a3e8201527f75773738495469314a466a585653662f4336634f55667a346f30644178305447611a5e8201527f777448446863666a3443516d49694531444d5a42546b6c4e5a557065566f614f611a7e8201527f6e717633733234314e50503965766574594768435a50576a4979747332706173611a9e8201527f436a25324270556a54596c336b615574374f744b4a6136355850396d356e6367611abe8201527f364e686a685a587032762532426d57724341545a754a303368316b6a55756976611ade8201527f5067596e6a6e35744b4a4f6b326e6362703251414559585a69304b496d50356b611afe8201527f744961466e366b5a397743253237253239253230666f726d6174253238253237611b1e8201527f776f666632253237253239253342666f6e742d7765696768742533412532306e611b3e8201527f6f726d616c253342666f6e742d7374796c652533412532306e6f726d616c2533611b5e8201527f42666f6e742d646973706c617925334125323073776170253342253744746578611b7e8201527f74253230253742666f6e742d66616d696c792533412532302532375072657373611b9e8201527f2532305374617274253230325025323725334266696c6c253341253230776869611bbe8201527f74652537442e76616c7565253230253742666f6e742d73697a65253341253230611bde8201527f313070782533422537442e6e616d65253230253742666f6e742d73697a652533611bfe8201527f412532303470782533422537442533432f7374796c652533452533432f646566611c1e8201527f7325334525334372656374253230776964746825334425323738392532372532611c3e8201527f30686569676874253344253237353525323725323066696c6c25334425323762611c5e8201527f6c61636b2532372532302f253345253343726563742532307825334425323735611c7e8201527f2e3525323725323079253344253237352e352532372532307769647468253344611c9e8201527f2532373738253237253230686569676874253344253237343425323725323066611cbe8201527f696c6c2533442532372532333030303046462532372532302f25334525334374611cde8201527f657874253230746578742d616e63686f722533442532376d6964646c65253237611cfe8201527f2532307825334425323734342e35253237253230792533442532373333253237611d1e8201527f253230636c61737325334425323776616c756525323725334500000000000000611d3e820152612ba5612b9e6129f5611d5784018a61055b565b7f2533432f746578742533452533437265637425323078253344253237352e352581527f323725323079253344253237352e35253237253230776964746825334425323760208201527f373825323725323068656967687425334425323734342532372532307374726f60408201527f6b652533442532372532334646344630412532372532307374726f6b652d776960608201527f647468253344253237332532372532302f25334525334372656374253230782560808201527f334425323733302532372532307925334425323734352e35253237253230776960a08201527f647468253344253237353825323725323068656967687425334425323738253260c08201527f3725323066696c6c2533442532372532334646344630412532372532302f253360e08201527f4525334374657874253230746578742d616e63686f72253344253237656e64256101008201527f32372532307825334425323738372532372532307925334425323735322532376101208201527f253230636c6173732533442532376e616d6525323725334500000000000000006101408201526101580190565b86886105e3565b602160f81b81529050612bbb600182018561055b565b7f2533432f746578742533452533432f737667253345227d00000000000000000081526017019a995050505050505050505056fea26469706673582212204ebb5504852a340c7a67a89e9af874a99996f2d1a3a978c1c25c376c60d5de3c64736f6c63430008140033", + "nonce": "0x7", + "accessList": [] + }, + "additionalContracts": [], + "isFixedGasLimit": false + }, + { + "hash": "0xdd1bc2b2c08b0815b4408aeb7ce591709183eab9796e3d14f10aa521e76b8540", + "transactionType": "CREATE", + "contractName": null, + "contractAddress": "0x2279B7A0a67DB372996a5FaB50D91eAA73d2eBe6", + "function": null, + "arguments": null, + "transaction": { + "type": "0x02", + "from": "0xf39fd6e51aad88f6f4ce6ab8827279cfffb92266", + "gas": "0x42230", + "value": "0x0", + "data": "0x608060405234801561001057600080fd5b506102cf806100206000396000f3fe608060405234801561001057600080fd5b506004361061004c5760003560e01c80630194db8e14610051578063072bdcc214610076578063a391c15b14610089578063b67d77c51461009c575b600080fd5b61006461005f366004610160565b6100af565b60405190815260200160405180910390f35b610064610084366004610160565b6100ef565b61006461009736600461021e565b610129565b6100646100aa36600461021e565b61013e565b600080805b83518110156100e8578381815181106100cf576100cf610240565b60200260200101518201915080806001019150506100b4565b5092915050565b60006001815b83518110156100e85783818151811061011057610110610240565b60200260200101518202915080806001019150506100f5565b60006101358284610256565b90505b92915050565b60006101358284610278565b634e487b7160e01b600052604160045260246000fd5b6000602080838503121561017357600080fd5b823567ffffffffffffffff8082111561018b57600080fd5b818501915085601f83011261019f57600080fd5b8135818111156101b1576101b161014a565b8060051b604051601f19603f830116810181811085821117156101d6576101d661014a565b6040529182528482019250838101850191888311156101f457600080fd5b938501935b82851015610212578435845293850193928501926101f9565b98975050505050505050565b6000806040838503121561023157600080fd5b50508035926020909101359150565b634e487b7160e01b600052603260045260246000fd5b60008261027357634e487b7160e01b600052601260045260246000fd5b500490565b8181038181111561013857634e487b7160e01b600052601160045260246000fdfea264697066735822122030605896aa3092c5c0d163e40b09c7c92189bbd1be4f62579184af38d08031be64736f6c63430008140033", + "nonce": "0x8", + "accessList": [] + }, + "additionalContracts": [], + "isFixedGasLimit": false + }, + { + "hash": "0x7e7100460c91c07f4d90c7c54efe8023561c042b0add9778dd7cd09b20936d74", + "transactionType": "CREATE", + "contractName": "Evmsheet", + "contractAddress": "0x8A791620dd6260079BF849Dc5567aDC3F2FdC318", + "function": null, + "arguments": [ + "0xa513E6E4b8f2a923D98304ec87F64353C4D5C853", + "10000000000000000" + ], + "transaction": { + "type": "0x02", + "from": "0xf39fd6e51aad88f6f4ce6ab8827279cfffb92266", + "gas": "0x34bf99", + "value": "0x0", + "data": "0x608060405234801561001057600080fd5b50604051612ed9380380612ed983398101604081905261002f916100b1565b61003833610061565b600280546001600160a01b0319166001600160a01b0393909316929092179091556001556100eb565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b600080604083850312156100c457600080fd5b82516001600160a01b03811681146100db57600080fd5b6020939093015192949293505050565b612ddf806100fa6000396000f3fe608060405260043610620000a95760003560e01c80638da5cb5b116200006c5780638da5cb5b146200016d578063ab2fa65a146200018d578063ae28505e14620001b4578063c56c4cf114620001d9578063f2fde38b14620001fb578063f52be2a2146200022057600080fd5b806303fb31e814620000ae5780631164c83d14620000d5578063145e414714620000ec5780635787cacb146200012e578063715018a61462000155575b600080fd5b348015620000bb57600080fd5b50620000d3620000cd36600462000778565b62000247565b005b620000d3620000e6366004620007e9565b62000273565b348015620000f957600080fd5b50620001116200010b36600462000864565b620004b2565b6040516001600160a01b0390911681526020015b60405180910390f35b3480156200013b57600080fd5b50620001466200054f565b60405162000125919062000891565b3480156200016257600080fd5b50620000d3620005b3565b3480156200017a57600080fd5b506000546001600160a01b031662000111565b3480156200019a57600080fd5b50620001a5620005cb565b604051620001259190620008e0565b348015620001c157600080fd5b5062000111620001d336600462000930565b620005f7565b348015620001e657600080fd5b5060025462000111906001600160a01b031681565b3480156200020857600080fd5b50620000d36200021a36600462000778565b62000622565b3480156200022d57600080fd5b506200023860015481565b60405190815260200162000125565b62000251620006a1565b600280546001600160a01b0319166001600160a01b0392909216919091179055565b60015434146200029d5760405163723a79e360e11b81523460048201526024015b60405180910390fd5b600060405180602001620002b1906200074d565b6020820181038252601f19601f8201166040525090506000828251602084016000f56002546040516356d3163d60e01b81526001600160a01b0391821660048201529192508216906356d3163d90602401600060405180830381600087803b1580156200031d57600080fd5b505af115801562000332573d6000803e3d6000fd5b505060405163c47f002760e01b81526001600160a01b038416925063c47f0027915062000366908a908a906004016200094a565b600060405180830381600087803b1580156200038157600080fd5b505af115801562000396573d6000803e3d6000fd5b5050604051635c26412360e11b81526001600160a01b038416925063b84c82469150620003ca90889088906004016200094a565b600060405180830381600087803b158015620003e557600080fd5b505af1158015620003fa573d6000803e3d6000fd5b505060405163f2fde38b60e01b81523260048201526001600160a01b038416925063f2fde38b9150602401600060405180830381600087803b1580156200044057600080fd5b505af115801562000455573d6000803e3d6000fd5b5050600380546001810182556000919091527fc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b0180546001600160a01b0319166001600160a01b0394909416939093179092555050505050505050565b600060ff60f81b838360405180602001620004cd906200074d565b6020820181038252601f19601f82011660405250805190602001206040516020016200053094939291906001600160f81b031994909416845260609290921b6bffffffffffffffffffffffff191660018401526015830152603582015260550190565b60408051601f1981840301815291905280516020909101209392505050565b60606003805480602002602001604051908101604052809291908181526020018280548015620005a957602002820191906000526020600020905b81546001600160a01b031681526001909101906020018083116200058a575b5050505050905090565b620005bd620006a1565b620005c96000620006fd565b565b606060405180602001620005df906200074d565b601f1982820381018352601f90910116604052919050565b600381815481106200060857600080fd5b6000918252602090912001546001600160a01b0316905081565b6200062c620006a1565b6001600160a01b038116620006935760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b606482015260840162000294565b6200069e81620006fd565b50565b6000546001600160a01b03163314620005c95760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015260640162000294565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b612430806200097a83390190565b80356001600160a01b03811681146200077357600080fd5b919050565b6000602082840312156200078b57600080fd5b62000796826200075b565b9392505050565b60008083601f840112620007b057600080fd5b50813567ffffffffffffffff811115620007c957600080fd5b602083019150836020828501011115620007e257600080fd5b9250929050565b6000806000806000606086880312156200080257600080fd5b853567ffffffffffffffff808211156200081b57600080fd5b6200082989838a016200079d565b909750955060208801359150808211156200084357600080fd5b5062000852888289016200079d565b96999598509660400135949350505050565b600080604083850312156200087857600080fd5b62000883836200075b565b946020939093013593505050565b6020808252825182820181905260009190848201906040850190845b81811015620008d45783516001600160a01b031683529284019291840191600101620008ad565b50909695505050505050565b600060208083528351808285015260005b818110156200090f57858101830151858201604001528201620008f1565b506000604082860101526040601f19601f8301168501019250505092915050565b6000602082840312156200094357600080fd5b5035919050565b60208152816020820152818360408301376000818301604090810191909152601f909201601f1916010191905056fe60806040523480156200001157600080fd5b50604051806040016040528060078152602001660536865657420360cc1b815250604051806040016040528060048152602001630534854360e41b81525062000069620000636200008f60201b60201c565b62000093565b600162000077838262000188565b50600262000086828262000188565b50505062000254565b3390565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b634e487b7160e01b600052604160045260246000fd5b600181811c908216806200010e57607f821691505b6020821081036200012f57634e487b7160e01b600052602260045260246000fd5b50919050565b601f8211156200018357600081815260208120601f850160051c810160208610156200015e5750805b601f850160051c820191505b818110156200017f578281556001016200016a565b5050505b505050565b81516001600160401b03811115620001a457620001a4620000e3565b620001bc81620001b58454620000f9565b8462000135565b602080601f831160018114620001f45760008415620001db5750858301515b600019600386901b1c1916600185901b1785556200017f565b600085815260208120601f198616915b82811015620002255788860151825594840194600190910190840162000204565b5085821015620002445787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b6121cc80620002646000396000f3fe608060405234801561001057600080fd5b50600436106102275760003560e01c8063715018a611610130578063b85d8b85116100b8578063cf0983981161007c578063cf09839814610512578063cfbe95d814610535578063df4ca20614610556578063e985e9c514610576578063f2fde38b146105a457600080fd5b8063b85d8b85146104a4578063b88d4fde146104ce578063b8c368ec146104e1578063c47f0027146104ec578063c87b56dd146104ff57600080fd5b806395d89b41116100ff57806395d89b4114610439578063a22cb46514610441578063b46ebb1214610454578063b6d658e114610467578063b84c82461461049157600080fd5b8063715018a6146103fa578063768d5029146104025780638ada6b0f146104155780638da5cb5b1461042857600080fd5b80631b06443c116101b35780634f6ccce7116101825780634f6ccce71461038157806356d3163d146103a15780636352211e146103b45780636a0abc74146103c757806370a08231146103e757600080fd5b80631b06443c14610335578063206848f61461034857806323b872dd1461035b57806342842e0e1461036e57600080fd5b8063081812fc116101fa578063081812fc146102a1578063095ea7b3146102e2578063172b9eed146102f757806318160ddd1461030a5780631941fd141461031357600080fd5b806301ffc9a71461022c57806302f3c4c91461025457806306fdde03146102745780630715a24a1461027c575b600080fd5b61023f61023a36600461176a565b6105b7565b60405190151581526020015b60405180910390f35b610267610262366004611861565b610609565b60405161024b9190611951565b610267610638565b6102936fffffffffffffffffffffffffffffffff81565b60405190815260200161024b565b6102ca6102af366004611964565b6005602052600090815260409020546001600160a01b031681565b6040516001600160a01b03909116815260200161024b565b6102f56102f036600461197d565b6106c6565b005b6102676103053660046119a9565b6107ad565b61029360075481565b610326610321366004611964565b610875565b60405161024b939291906119de565b6102ca610343366004611a0e565b61092a565b610326610356366004611964565b6109e3565b6102f5610369366004611a2b565b610ae1565b6102f561037c366004611a2b565b610ca8565b61029361038f366004611964565b60086020526000908152604090205481565b6102f56103af366004611a0e565b610da0565b6102ca6103c2366004611964565b610dca565b6103da6103d53660046119a9565b610e1c565b60405161024b9190611a6c565b6102936103f5366004611a0e565b610e60565b6102f5610ec3565b6102f5610410366004611af9565b610ed7565b6009546102ca906001600160a01b031681565b6000546001600160a01b03166102ca565b610267611035565b6102f561044f366004611b63565b611042565b610267610462366004611964565b6110ae565b61047a610475366004611964565b611258565b60408051921515835260208301919091520161024b565b6102f561049f366004611ba1565b611275565b6104b56104b2366004611964565b90565b6040516001600160e01b0319909116815260200161024b565b6102f56104dc366004611be3565b6112c6565b6102ca600160801b81565b6102f56104fa366004611ba1565b6113ae565b61026761050d366004611964565b6113ff565b61023f610520366004611a0e565b600160801b6001600160a01b03919091161090565b61023f610543366004611861565b516001600160a01b0316600160801b1490565b610569610564366004611964565b6114c9565b60405161024b9190611c16565b61023f610584366004611c4d565b600660209081526000928352604080842090915290825290205460ff1681565b6102f56105b2366004611a0e565b611526565b60006301ffc9a760e01b6001600160e01b0319831614806105e857506380ac58cd60e01b6001600160e01b03198316145b806106035750635b5e139f60e01b6001600160e01b03198316145b92915050565b6060816020015160405160200161062291815260200190565b6040516020818303038152906040529050919050565b6001805461064590611c7b565b80601f016020809104026020016040519081016040528092919081815260200182805461067190611c7b565b80156106be5780601f10610693576101008083540402835291602001916106be565b820191906000526020600020905b8154815290600101906020018083116106a157829003601f168201915b505050505081565b6000818152600360205260409020546001600160a01b03163381148061070f57506001600160a01b038116600090815260066020908152604080832033845290915290205460ff165b6107515760405162461bcd60e51b815260206004820152600e60248201526d1393d517d055551213d49256915160921b60448201526064015b60405180910390fd5b60008281526005602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b606060006107ba83610e1c565b9050606060005b825181101561086d576000806107ef8584815181106107e2576107e2611cb5565b6020026020010151611258565b9150915081156108335783610803826110ae565b61080c90611ccb565b60405160200161081d929190611cef565b6040516020818303038152906040529350610858565b6040516108469085908390602001611cef565b60405160208183030381529060405293505b5050808061086590611d27565b9150506107c1565b509392505050565b600a602052600090815260409020805460018201546002830180546001600160a01b039093169391926108a790611c7b565b80601f01602080910402602001604051908101604052809291908181526020018280546108d390611c7b565b80156109205780601f106108f557610100808354040283529160200191610920565b820191906000526020600020905b81548152906001019060200180831161090357829003601f168201915b5050505050905083565b6000600160801b6001600160a01b03831610156109da576000610955836001600160a01b03166110ae565b604051632d737e4960e21b8152909150735fc8d32690cc91d4c39d9d3abcbd16989f8757079063b5cdf92490610992908490600090600401611d40565b602060405180830381865af41580156109af573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906109d39190611d62565b9392505050565b5090565b919050565b60008181526003602052604081205481906060906001600160a01b0316610a1057600160801b9250610a2b565b6000848152600a60205260409020546001600160a01b031692505b6000848152600a60205260409020600181015460029091018054859291908190610a5490611c7b565b80601f0160208091040260200160405190810160405280929190818152602001828054610a8090611c7b565b8015610acd5780601f10610aa257610100808354040283529160200191610acd565b820191906000526020600020905b815481529060010190602001808311610ab057829003601f168201915b505050505090509250925092509193909250565b6000818152600360205260409020546001600160a01b03848116911614610b375760405162461bcd60e51b815260206004820152600a60248201526957524f4e475f46524f4d60b01b6044820152606401610748565b6001600160a01b038216610b815760405162461bcd60e51b81526020600482015260116024820152701253959053125117d49150d25412515395607a1b6044820152606401610748565b336001600160a01b0384161480610bbb57506001600160a01b038316600090815260066020908152604080832033845290915290205460ff165b80610bdc57506000818152600560205260409020546001600160a01b031633145b610c195760405162461bcd60e51b815260206004820152600e60248201526d1393d517d055551213d49256915160921b6044820152606401610748565b6001600160a01b0380841660008181526004602090815260408083208054600019019055938616808352848320805460010190558583526003825284832080546001600160a01b03199081168317909155600590925284832080549092169091559251849392917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b610cb3838383610ae1565b6001600160a01b0382163b1580610d5c5750604051630a85bd0160e11b8082523360048301526001600160a01b03858116602484015260448301849052608060648401526000608484015290919084169063150b7a029060a4016020604051808303816000875af1158015610d2c573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610d509190611d7b565b6001600160e01b031916145b610d9b5760405162461bcd60e51b815260206004820152601060248201526f155394d0519157d49150d2541251539560821b6044820152606401610748565b505050565b610da861159f565b600980546001600160a01b0319166001600160a01b0392909216919091179055565b6000818152600360205260409020546001600160a01b0316806109de5760405162461bcd60e51b815260206004820152600a6024820152691393d517d3525395115160b21b6044820152606401610748565b60608082516040519150602081048252602082016020850160005b83811015610e4f578181015183820152602001610e37565b505050810160200160405292915050565b60006001600160a01b038216610ea75760405162461bcd60e51b815260206004820152600c60248201526b5a45524f5f4144445245535360a01b6044820152606401610748565b506001600160a01b031660009081526004602052604090205490565b610ecb61159f565b610ed560006115f9565b565b6000858152600360205260409020546001600160a01b0316610f2f57610efd3286611649565b60078054600090815260086020526040812087905581546001929190610f24908490611d98565b90915550610f889050565b6000858152600360205260409020546001600160a01b03163214610f8857600085815260036020526040908190205490516324f3f02560e21b81526001600160a01b039091166004820152326024820152604401610748565b6040518060600160405280856001600160a01b0316815260200184815260200183838080601f0160208091040260200160405190810160405280939291908181526020018383808284376000920182905250939094525050878152600a6020908152604091829020845181546001600160a01b0319166001600160a01b0390911617815590840151600182015590830151909150600282019061102b9082611df9565b5050505050505050565b6002805461064590611c7b565b3360008181526006602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b6000818152600a6020908152604080832081516060818101845282546001600160a01b0316825260018301549482019490945260028201805494959491938401916110f890611c7b565b80601f016020809104026020016040519081016040528092919081815260200182805461112490611c7b565b80156111715780601f1061114657610100808354040283529160200191611171565b820191906000526020600020905b81548152906001019060200180831161115457829003601f168201915b505050505081525050905061119381516001600160a01b0316600160801b1490565b156111a1576109d381610609565b60006111b0826000015161092a565b905060006111bf836020015190565b905060006111d084604001516107ad565b90506000836001600160a01b031683836040516020016111f1929190611eb9565b60408051601f198184030181529082905261120b91611eea565b600060405180830381855afa9150503d8060008114611246576040519150601f19603f3d011682016040523d82523d6000602084013e61124b565b606091505b5098975050505050505050565b600080611266600284611f06565b60019081149493901c92915050565b61127d61159f565b7f8dca0271872d00b3de3abafca544c52fcd7d512dd852c9894fa2c118ac759a93600283836040516112b193929190611fce565b60405180910390a16002610d9b828483611ffe565b6112d1858585610ae1565b6001600160a01b0384163b15806113685750604051630a85bd0160e11b808252906001600160a01b0386169063150b7a02906113199033908a908990899089906004016120be565b6020604051808303816000875af1158015611338573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061135c9190611d7b565b6001600160e01b031916145b6113a75760405162461bcd60e51b815260206004820152601060248201526f155394d0519157d49150d2541251539560821b6044820152606401610748565b5050505050565b6113b661159f565b7fb65b7b5ea384affd30f77f842e057d29dd1b13f133adf69a724a8105b164ab75600183836040516113ea93929190611fce565b60405180910390a16001610d9b828483611ffe565b6000818152600360205260409020546060906001600160a01b03168061143b57604051630243d1a960e21b815260048101849052602401610748565b6000611446846110ae565b6009546040516328de0f2f60e01b81529192506001600160a01b0316906328de0f2f9061147c90879085906001906004016120fd565b600060405180830381865afa158015611499573d6000803e3d6000fd5b505050506040513d6000823e601f3d908101601f191682016040526114c19190810190612128565b949350505050565b604080516060808201835260008083526020830181905292820152906114ee836110ae565b6040805160608101825285815260009586526003602090815295829020546001600160a01b0316958101959095528401525090919050565b61152e61159f565b6001600160a01b0381166115935760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610748565b61159c816115f9565b50565b6000546001600160a01b03163314610ed55760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610748565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b6001600160a01b0382166116935760405162461bcd60e51b81526020600482015260116024820152701253959053125117d49150d25412515395607a1b6044820152606401610748565b6000818152600360205260409020546001600160a01b0316156116e95760405162461bcd60e51b815260206004820152600e60248201526d1053149150511657d3525395115160921b6044820152606401610748565b6001600160a01b038216600081815260046020908152604080832080546001019055848352600390915280822080546001600160a01b0319168417905551839291907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b6001600160e01b03198116811461159c57600080fd5b60006020828403121561177c57600080fd5b81356109d381611754565b634e487b7160e01b600052604160045260246000fd5b604051601f8201601f1916810167ffffffffffffffff811182821017156117c6576117c6611787565b604052919050565b6001600160a01b038116811461159c57600080fd5b600067ffffffffffffffff8211156117fd576117fd611787565b50601f01601f191660200190565b600082601f83011261181c57600080fd5b813561182f61182a826117e3565b61179d565b81815284602083860101111561184457600080fd5b816020850160208301376000918101602001919091529392505050565b60006020828403121561187357600080fd5b813567ffffffffffffffff8082111561188b57600080fd5b908301906060828603121561189f57600080fd5b6040516060810181811083821117156118ba576118ba611787565b60405282356118c8816117ce565b8152602083810135908201526040830135828111156118e657600080fd5b6118f28782860161180b565b60408301525095945050505050565b60005b8381101561191c578181015183820152602001611904565b50506000910152565b6000815180845261193d816020860160208601611901565b601f01601f19169290920160200192915050565b6020815260006109d36020830184611925565b60006020828403121561197657600080fd5b5035919050565b6000806040838503121561199057600080fd5b823561199b816117ce565b946020939093013593505050565b6000602082840312156119bb57600080fd5b813567ffffffffffffffff8111156119d257600080fd5b6114c18482850161180b565b60018060a01b0384168152826020820152606060408201526000611a056060830184611925565b95945050505050565b600060208284031215611a2057600080fd5b81356109d3816117ce565b600080600060608486031215611a4057600080fd5b8335611a4b816117ce565b92506020840135611a5b816117ce565b929592945050506040919091013590565b6020808252825182820181905260009190848201906040850190845b81811015611aa457835183529284019291840191600101611a88565b50909695505050505050565b60008083601f840112611ac257600080fd5b50813567ffffffffffffffff811115611ada57600080fd5b602083019150836020828501011115611af257600080fd5b9250929050565b600080600080600060808688031215611b1157600080fd5b853594506020860135611b23816117ce565b935060408601359250606086013567ffffffffffffffff811115611b4657600080fd5b611b5288828901611ab0565b969995985093965092949392505050565b60008060408385031215611b7657600080fd5b8235611b81816117ce565b915060208301358015158114611b9657600080fd5b809150509250929050565b60008060208385031215611bb457600080fd5b823567ffffffffffffffff811115611bcb57600080fd5b611bd785828601611ab0565b90969095509350505050565b600080600080600060808688031215611bfb57600080fd5b8535611c06816117ce565b94506020860135611b23816117ce565b602081528151602082015260018060a01b036020830151166040820152600060408301516060808401526114c16080840182611925565b60008060408385031215611c6057600080fd5b8235611c6b816117ce565b91506020830135611b96816117ce565b600181811c90821680611c8f57607f821691505b602082108103611caf57634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052603260045260246000fd5b80516020808301519190811015611caf5760001960209190910360031b1b16919050565b60008351611d01818460208801611901565b9190910191825250602001919050565b634e487b7160e01b600052601160045260246000fd5b600060018201611d3957611d39611d11565b5060010190565b604081526000611d536040830185611925565b90508260208301529392505050565b600060208284031215611d7457600080fd5b5051919050565b600060208284031215611d8d57600080fd5b81516109d381611754565b8082018082111561060357610603611d11565b601f821115610d9b57600081815260208120601f850160051c81016020861015611dd25750805b601f850160051c820191505b81811015611df157828155600101611dde565b505050505050565b815167ffffffffffffffff811115611e1357611e13611787565b611e2781611e218454611c7b565b84611dab565b602080601f831160018114611e5c5760008415611e445750858301515b600019600386901b1c1916600185901b178555611df1565b600085815260208120601f198616915b82811015611e8b57888601518255948401946001909101908401611e6c565b5085821015611ea95787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b6001600160e01b0319831681528151600090611edc816004850160208701611901565b919091016004019392505050565b60008251611efc818460208701611901565b9190910192915050565b600082611f2357634e487b7160e01b600052601260045260246000fd5b500690565b60008154611f3581611c7b565b808552602060018381168015611f525760018114611f6c57611f9a565b60ff1985168884015283151560051b880183019550611f9a565b866000528260002060005b85811015611f925781548a8201860152908301908401611f77565b890184019650505b505050505092915050565b81835281816020850137506000828201602090810191909152601f909101601f19169091010190565b604081526000611fe16040830186611f28565b8281036020840152611ff4818587611fa5565b9695505050505050565b67ffffffffffffffff83111561201657612016611787565b61202a836120248354611c7b565b83611dab565b6000601f84116001811461205e57600085156120465750838201355b600019600387901b1c1916600186901b1783556113a7565b600083815260209020601f19861690835b8281101561208f578685013582556020948501946001909201910161206f565b50868210156120ac5760001960f88860031b161c19848701351681555b505060018560011b0183555050505050565b6001600160a01b03868116825285166020820152604081018490526080606082018190526000906120f29083018486611fa5565b979650505050505050565b8381526060602082015260006121166060830185611925565b8281036040840152611ff48185611f28565b60006020828403121561213a57600080fd5b815167ffffffffffffffff81111561215157600080fd5b8201601f8101841361216257600080fd5b805161217061182a826117e3565b81815285602083850101111561218557600080fd5b611a0582602083016020860161190156fea26469706673582212208654fed39bbd8db9fff4941eef342e5c686c37c5ce983973725ee994fdf5a88a64736f6c63430008140033a264697066735822122087cea2be6e247da88c43d4ca4f954bda87a09156a9b792b225900e1701e2c74164736f6c63430008140033000000000000000000000000a513e6e4b8f2a923d98304ec87f64353c4d5c853000000000000000000000000000000000000000000000000002386f26fc10000", + "nonce": "0x9", + "accessList": [] + }, + "additionalContracts": [], + "isFixedGasLimit": false + } + ], + "receipts": [ + { + "transactionHash": "0x0139fb712eb4db716921fec34aaff25eaf45bad93b541135a224f800f0e8ae95", + "transactionIndex": "0x0", + "blockHash": "0x4d5b9b153c72a8a225af063dc6569215818755372d9b9040112aa8c1bb854bfc", + "blockNumber": "0x3", + "from": "0xf39Fd6e51aad88F6F4ce6aB8827279cffFb92266", + "to": null, + "cumulativeGasUsed": "0xf072b", + "gasUsed": "0xf072b", + "contractAddress": "0x5FC8d32690cc91D4c39d9d3abcBD16989F875707", + "logs": [], + "status": "0x1", + "logsBloom": "0x00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", + "type": "0x2", + "effectiveGasPrice": "0xe35066cb" + }, + { + "transactionHash": "0xd7c1ceebc6c4619f3a5018e5f2b1443b292b9154d5c05f53292226d0ff4156a0", + "transactionIndex": "0x0", + "blockHash": "0x14cc1664121c2885b99202b089d53248f7399b88db3ffbfd801676ca240738bd", + "blockNumber": "0x4", + "from": "0xf39Fd6e51aad88F6F4ce6aB8827279cffFb92266", + "to": null, + "cumulativeGasUsed": "0x23ab5", + "gasUsed": "0x23ab5", + "contractAddress": "0x0165878A594ca255338adfa4d48449f69242Eb8F", + "logs": [], + "status": "0x1", + "logsBloom": "0x00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", + "type": "0x2", + "effectiveGasPrice": "0xdda64c9d" + }, + { + "transactionHash": "0x2c42e490fdb9acfcfa9f013e739318ffbe363dcb166d82c2fef98d2c14903725", + "transactionIndex": "0x0", + "blockHash": "0xeab6b14cb12d3d102150dd2abfab3d5f436855c3e4dc02d68f462c298b7bcd38", + "blockNumber": "0x5", + "from": "0xf39Fd6e51aad88F6F4ce6aB8827279cffFb92266", + "to": null, + "cumulativeGasUsed": "0x261709", + "gasUsed": "0x261709", + "contractAddress": "0xa513E6E4b8f2a923D98304ec87F64353C4D5C853", + "logs": [], + "status": "0x1", + "logsBloom": "0x00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", + "type": "0x2", + "effectiveGasPrice": "0xd858e8ac" + }, + { + "transactionHash": "0xdd1bc2b2c08b0815b4408aeb7ce591709183eab9796e3d14f10aa521e76b8540", + "transactionIndex": "0x1", + "blockHash": "0xeab6b14cb12d3d102150dd2abfab3d5f436855c3e4dc02d68f462c298b7bcd38", + "blockNumber": "0x5", + "from": "0xf39Fd6e51aad88F6F4ce6aB8827279cffFb92266", + "to": null, + "cumulativeGasUsed": "0x294537", + "gasUsed": "0x32e2e", + "contractAddress": "0x2279B7A0a67DB372996a5FaB50D91eAA73d2eBe6", + "logs": [], + "status": "0x1", + "logsBloom": "0x00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", + "type": "0x2", + "effectiveGasPrice": "0xd858e8ac" + }, + { + "transactionHash": "0x7e7100460c91c07f4d90c7c54efe8023561c042b0add9778dd7cd09b20936d74", + "transactionIndex": "0x2", + "blockHash": "0xeab6b14cb12d3d102150dd2abfab3d5f436855c3e4dc02d68f462c298b7bcd38", + "blockNumber": "0x5", + "from": "0xf39Fd6e51aad88F6F4ce6aB8827279cffFb92266", + "to": null, + "cumulativeGasUsed": "0x51db8b", + "gasUsed": "0x289654", + "contractAddress": "0x8A791620dd6260079BF849Dc5567aDC3F2FdC318", + "logs": [ + { + "address": "0x8A791620dd6260079BF849Dc5567aDC3F2FdC318", + "topics": [ + "0x8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0", + "0x0000000000000000000000000000000000000000000000000000000000000000", + "0x000000000000000000000000f39fd6e51aad88f6f4ce6ab8827279cfffb92266" + ], + "data": "0x", + "blockHash": "0xeab6b14cb12d3d102150dd2abfab3d5f436855c3e4dc02d68f462c298b7bcd38", + "blockNumber": "0x5", + "transactionHash": "0x7e7100460c91c07f4d90c7c54efe8023561c042b0add9778dd7cd09b20936d74", + "transactionIndex": "0x2", + "logIndex": "0x2", + "transactionLogIndex": "0x0", + "removed": false + } + ], + "status": "0x1", + "logsBloom": "0x00000000000000000000000000000000000000000000000000800000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000020000000000000100000800000000000000000000000000000000400000000000000000000000000000000000000000000000000000000000000000002000000000000000000000008000000000000000000000000000000000000000000000000000200000000000000000040000002000000000000000000020000000000000000000000000000000000000000000000000000000000000000000", + "type": "0x2", + "effectiveGasPrice": "0xd858e8ac" + } + ], + "libraries": [ + "lib/eth-projects-monorepo/packages/eth-projects-contracts/contracts/lib/utils/Bytes.sol:Bytes:0x5fc8d32690cc91d4c39d9d3abcbd16989f875707" + ], + "pending": [], + "returns": {}, + "timestamp": 1689415257, + "chain": 31337, + "multi": false, + "commit": "fe5dc88" +} \ No newline at end of file diff --git a/packages/starksheet-solidity/broadcast/Evmsheet.s.sol/31337/run-1689415695.json b/packages/starksheet-solidity/broadcast/Evmsheet.s.sol/31337/run-1689415695.json new file mode 100644 index 00000000..86a44a5c --- /dev/null +++ b/packages/starksheet-solidity/broadcast/Evmsheet.s.sol/31337/run-1689415695.json @@ -0,0 +1,209 @@ +{ + "transactions": [ + { + "hash": "0xfb04d6c6b1e9f9378a1ec3cfd8f86c712379c2a9a898c24d0ae06ead6fb87858", + "transactionType": "CREATE", + "contractName": "Bytes", + "contractAddress": "0x5FbDB2315678afecb367f032d93F642f64180aa3", + "function": null, + "arguments": null, + "transaction": { + "type": "0x02", + "from": "0xf39fd6e51aad88f6f4ce6ab8827279cfffb92266", + "gas": "0x1387ed", + "data": "0x6110d661003a600b82828239805160001a60731461002d57634e487b7160e01b600052600060045260246000fd5b30600052607381538281f3fe73000000000000000000000000000000000000000030146080604052600436106101625760003560e01c8063a5eb31ee116100cd578063d1ffb56111610086578063d1ffb561146103fb578063d442584f1461042b578063e004139614610454578063f1142fb314610474578063f647f8fb14610487578063f83b670f146104b257600080fd5b8063a5eb31ee14610344578063a8d8f00f1461036b578063b5cdf92414610396578063b63711df146103a9578063be8b3430146103bc578063c29616bd146103cf57600080fd5b80635ef849301161011f5780635ef8493014610241578063913c97b41461026b57806397e6175c1461029f57806399dd9bd7146102cb5780639ae4c3d1146102ec5780639cee499e1461031857600080fd5b8063042aa0841461016757806305d3bb74146101985780631a7431ef146101c0578063235266d2146101e357806348137709146101f65780634d66a2ae1461021b575b600080fd5b61017a610175366004610ec0565b6104de565b6040516001600160d01b031990911681526020015b60405180910390f35b6101ab6101a6366004610ec0565b610540565b60405163ffffffff909116815260200161018f565b6101d36101ce366004610f05565b61059d565b604051901515815260200161018f565b6101d36101f1366004610f4c565b610652565b610209610204366004610ec0565b6106b5565b60405160ff909116815260200161018f565b61022e610229366004610fa6565b610711565b60405161ffff909116815260200161018f565b61025461024f366004610ec0565b61071e565b60405165ffffffffffff909116815260200161018f565b61027e610279366004610ec0565b610772565b6040516fffffffffffffffffffffffffffffffff909116815260200161018f565b6102b26102ad366004610ec0565b6107d0565b6040516001600160a01b0319909116815260200161018f565b6102de6102d9366004610ec0565b61082e565b60405190815260200161018f565b6102ff6102fa366004610ec0565b61088c565b60405167ffffffffffffffff909116815260200161018f565b61032b610326366004610ec0565b6108e9565b6040516001600160d81b0319909116815260200161018f565b610357610352366004610ec0565b610946565b60405162ffffff909116815260200161018f565b61037e610379366004610ec0565b6109a3565b60405166ffffffffffffff909116815260200161018f565b6102de6103a4366004610ec0565b610a00565b6102ff6103b7366004610ec0565b610a55565b61022e6103ca366004610ec0565b610aa9565b6103e26103dd366004610ec0565b610b06565b6040516001600160c81b0319909116815260200161018f565b61040e610409366004610ec0565b610b5a565b6040516bffffffffffffffffffffffff909116815260200161018f565b61043e610439366004610ec0565b610bae565b60405164ffffffffff909116815260200161018f565b610467610462366004610fe3565b610c02565b60405161018f9190611031565b6102b2610482366004610ec0565b610d0f565b61049a610495366004610ec0565b610d64565b6040516001600160a01b03909116815260200161018f565b6104c56104c0366004610ec0565b610dc9565b6040516001600160f81b0319909116815260200161018f565b60006104eb82600661107f565b835110156105375760405162461bcd60e51b8152602060048201526014602482015273746f4279746573365f6f75744f66426f756e647360601b60448201526064015b60405180910390fd5b50016006015190565b600061054d82600461107f565b835110156105945760405162461bcd60e51b8152602060048201526014602482015273746f55696e7433325f6f75744f66426f756e647360601b604482015260640161052e565b50016004015190565b600080600190508354600260018083161561010002038216048451808214600181146105cc5760009450610644565b821561064457602083106001811461062957600189600052602060002060208a018581015b600284828410010361062057815183541461060f5760009950600093505b6001830192506020820191506105f1565b50505050610642565b6101008086040294506020880151851461064257600095505b505b509293505050505b92915050565b81518151600091600191811480831461066e57600092506106ab565b600160208701838101602088015b60028483851001036106a657805183511461069a5760009650600093505b6020928301920161067c565b505050505b5090949350505050565b60006106c282600161107f565b835110156107085760405162461bcd60e51b8152602060048201526013602482015272746f55696e74385f6f75744f66426f756e647360681b604482015260640161052e565b50016001015190565b600061064c826000610aa9565b600061072b82600661107f565b835110156105375760405162461bcd60e51b8152602060048201526014602482015273746f55696e7434385f6f75744f66426f756e647360601b604482015260640161052e565b600061077f82601061107f565b835110156107c75760405162461bcd60e51b8152602060048201526015602482015274746f55696e743132385f6f75744f66426f756e647360581b604482015260640161052e565b50016010015190565b60006107dd82600c61107f565b835110156108255760405162461bcd60e51b8152602060048201526015602482015274746f427974657331325f6f75744f66426f756e647360581b604482015260640161052e565b5001600c015190565b600061083b82602061107f565b835110156108835760405162461bcd60e51b8152602060048201526015602482015274746f427974657333325f6f75744f66426f756e647360581b604482015260640161052e565b50016020015190565b600061089982600861107f565b835110156108e05760405162461bcd60e51b8152602060048201526014602482015273746f55696e7436345f6f75744f66426f756e647360601b604482015260640161052e565b50016008015190565b60006108f682600561107f565b8351101561093d5760405162461bcd60e51b8152602060048201526014602482015273746f4279746573355f6f75744f66426f756e647360601b604482015260640161052e565b50016005015190565b600061095382600361107f565b8351101561099a5760405162461bcd60e51b8152602060048201526014602482015273746f55696e7432345f6f75744f66426f756e647360601b604482015260640161052e565b50016003015190565b60006109b082600761107f565b835110156109f75760405162461bcd60e51b8152602060048201526014602482015273746f55696e7435365f6f75744f66426f756e647360601b604482015260640161052e565b50016007015190565b6000610a0d82602061107f565b835110156108835760405162461bcd60e51b8152602060048201526015602482015274746f55696e743235365f6f75744f66426f756e647360581b604482015260640161052e565b6000610a6282600861107f565b835110156108e05760405162461bcd60e51b8152602060048201526014602482015273746f4279746573385f6f75744f66426f756e647360601b604482015260640161052e565b6000610ab682600261107f565b83511015610afd5760405162461bcd60e51b8152602060048201526014602482015273746f55696e7431365f6f75744f66426f756e647360601b604482015260640161052e565b50016002015190565b6000610b1382600761107f565b835110156109f75760405162461bcd60e51b8152602060048201526014602482015273746f4279746573375f6f75744f66426f756e647360601b604482015260640161052e565b6000610b6782600c61107f565b835110156108255760405162461bcd60e51b8152602060048201526014602482015273746f55696e7439365f6f75744f66426f756e647360601b604482015260640161052e565b6000610bbb82600561107f565b8351101561093d5760405162461bcd60e51b8152602060048201526014602482015273746f55696e7434305f6f75744f66426f756e647360601b604482015260640161052e565b606081610c1081601f61107f565b1015610c4f5760405162461bcd60e51b815260206004820152600e60248201526d736c6963655f6f766572666c6f7760901b604482015260640161052e565b610c59828461107f565b84511015610c9d5760405162461bcd60e51b8152602060048201526011602482015270736c6963655f6f75744f66426f756e647360781b604482015260640161052e565b606082158015610cbc5760405191506000825260208201604052610d06565b6040519150601f8416801560200281840101858101878315602002848b0101015b81831015610cf5578051835260209283019201610cdd565b5050858452601f01601f1916604052505b50949350505050565b6000610d1c82601061107f565b835110156107c75760405162461bcd60e51b8152602060048201526015602482015274746f427974657331365f6f75744f66426f756e647360581b604482015260640161052e565b6000610d7182601461107f565b83511015610db95760405162461bcd60e51b8152602060048201526015602482015274746f416464726573735f6f75744f66426f756e647360581b604482015260640161052e565b500160200151600160601b900490565b6000610dd682600161107f565b835110156107085760405162461bcd60e51b8152602060048201526014602482015273746f4279746573315f6f75744f66426f756e647360601b604482015260640161052e565b634e487b7160e01b600052604160045260246000fd5b600082601f830112610e4457600080fd5b813567ffffffffffffffff80821115610e5f57610e5f610e1d565b604051601f8301601f19908116603f01168101908282118183101715610e8757610e87610e1d565b81604052838152866020858801011115610ea057600080fd5b836020870160208301376000602085830101528094505050505092915050565b60008060408385031215610ed357600080fd5b823567ffffffffffffffff811115610eea57600080fd5b610ef685828601610e33565b95602094909401359450505050565b60008060408385031215610f1857600080fd5b82359150602083013567ffffffffffffffff811115610f3657600080fd5b610f4285828601610e33565b9150509250929050565b60008060408385031215610f5f57600080fd5b823567ffffffffffffffff80821115610f7757600080fd5b610f8386838701610e33565b93506020850135915080821115610f9957600080fd5b50610f4285828601610e33565b600060208284031215610fb857600080fd5b813567ffffffffffffffff811115610fcf57600080fd5b610fdb84828501610e33565b949350505050565b600080600060608486031215610ff857600080fd5b833567ffffffffffffffff81111561100f57600080fd5b61101b86828701610e33565b9660208601359650604090950135949350505050565b600060208083528351808285015260005b8181101561105e57858101830151858201604001528201611042565b506000604082860101526040601f19601f8301168501019250505092915050565b8082018082111561064c57634e487b7160e01b600052601160045260246000fdfea26469706673582212208ffe93db15f03a6fd0c59ab94e8e6a84e4561b6982e8824dafaf837546cfb2c764736f6c63430008140033", + "nonce": "0x0", + "accessList": [] + }, + "additionalContracts": [], + "isFixedGasLimit": false + }, + { + "hash": "0x16a24f294817f13c03d22266c67ddecc22e25eff349a9e8619b580da71ceee3a", + "transactionType": "CREATE", + "contractName": "MultiSendCallOnly", + "contractAddress": "0xe7f1725E7734CE288F8367e1Bb143E90bb3F0512", + "function": null, + "arguments": null, + "transaction": { + "type": "0x02", + "from": "0xf39fd6e51aad88f6f4ce6ab8827279cfffb92266", + "gas": "0x2e5c4", + "value": "0x0", + "data": "0x608060405234801561001057600080fd5b506101ae806100206000396000f3fe60806040526004361061001e5760003560e01c80638d80ff0a14610023575b600080fd5b6100366100313660046100c7565b610038565b005b805160205b818110156100ac578083015160f81c6001820184015160601c601583018501516035840186015160558501870160008560008114610082576001811461001e5761008e565b6000808585888a5af191505b508061009957600080fd5b505080605501850194505050505061003d565b505050565b634e487b7160e01b600052604160045260246000fd5b6000602082840312156100d957600080fd5b813567ffffffffffffffff808211156100f157600080fd5b818401915084601f83011261010557600080fd5b813581811115610117576101176100b1565b604051601f8201601f19908116603f0116810190838211818310171561013f5761013f6100b1565b8160405282815287602084870101111561015857600080fd5b82602086016020830137600092810160200192909252509594505050505056fea2646970667358221220ad06ffe6d9a3c63ecf1a3aceb88077e5714c5ace8cfc89d2cea6ce600b35072364736f6c63430008140033", + "nonce": "0x1", + "accessList": [] + }, + "additionalContracts": [], + "isFixedGasLimit": false + }, + { + "hash": "0x5d414223b8f3dad1cef0f8d597701996b4292a491d1da79a2f8faefb1f9bd4a1", + "transactionType": "CREATE", + "contractName": "BasicCellRenderer", + "contractAddress": "0x9fE46736679d2D9a65F0992F2272dE9f3c7fa6e0", + "function": null, + "arguments": null, + "transaction": { + "type": "0x02", + "from": "0xf39fd6e51aad88f6f4ce6ab8827279cfffb92266", + "gas": "0x3180bd", + "value": "0x0", + "data": "0x608060405234801561001057600080fd5b50612c25806100206000396000f3fe608060405234801561001057600080fd5b50600436106100365760003560e01c806306d4cd8b1461003b57806328de0f2f14610064575b600080fd5b61004e610049366004610322565b610077565b60405161005b919061038b565b60405180910390f35b61004e610072366004610404565b6100f1565b60606000610086600f846104fc565b90506000610095600f8361051e565b61009f9085610535565b905060006100ae826041610548565b60f81b9050806100c76100c2856001610548565b6101b6565b6040516020016100d8929190610577565b6040516020818303038152906040529350505050919050565b606060006100fe86610077565b905083838261018388735fbdb2315678afecb367f032d93f642f64180aa363b5cdf924909160006040518363ffffffff1660e01b81526004016101429291906105a8565b602060405180830381865af415801561015f573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906100c291906105ca565b87878660405160200161019c97969594939291906105f2565b604051602081830303815290604052915050949350505050565b606060006101c383610249565b600101905060008167ffffffffffffffff8111156101e3576101e36103a5565b6040519080825280601f01601f19166020018201604052801561020d576020820181803683370190505b5090508181016020015b600019016f181899199a1a9b1b9c1cb0b131b232b360811b600a86061a8153600a850494508461021757509392505050565b60008072184f03e93ff9f4daa797ed6e38ed64bf6a1f0160401b83106102885772184f03e93ff9f4daa797ed6e38ed64bf6a1f0160401b830492506040015b6d04ee2d6d415b85acef810000000083106102b4576d04ee2d6d415b85acef8100000000830492506020015b662386f26fc1000083106102d257662386f26fc10000830492506010015b6305f5e10083106102ea576305f5e100830492506008015b61271083106102fe57612710830492506004015b60648310610310576064830492506002015b600a831061031c576001015b92915050565b60006020828403121561033457600080fd5b5035919050565b60005b8381101561035657818101518382015260200161033e565b50506000910152565b6000815180845261037781602086016020860161033b565b601f01601f19169290920160200192915050565b60208152600061039e602083018461035f565b9392505050565b634e487b7160e01b600052604160045260246000fd5b60008083601f8401126103cd57600080fd5b50813567ffffffffffffffff8111156103e557600080fd5b6020830191508360208285010111156103fd57600080fd5b9250929050565b6000806000806060858703121561041a57600080fd5b84359350602085013567ffffffffffffffff8082111561043957600080fd5b818701915087601f83011261044d57600080fd5b81358181111561045f5761045f6103a5565b604051601f8201601f19908116603f01168101908382118183101715610487576104876103a5565b816040528281528a60208487010111156104a057600080fd5b8260208601602083013760006020848301015280975050505060408701359150808211156104cd57600080fd5b506104da878288016103bb565b95989497509550505050565b634e487b7160e01b600052601160045260246000fd5b60008261051957634e487b7160e01b600052601260045260246000fd5b500490565b808202811582820484141761031c5761031c6104e6565b8181038181111561031c5761031c6104e6565b8082018082111561031c5761031c6104e6565b6000815161056d81856020860161033b565b9290920192915050565b6001600160f81b031983168152815160009061059a81600185016020870161033b565b919091016001019392505050565b6040815260006105bb604083018561035f565b90508260208301529392505050565b6000602082840312156105dc57600080fd5b5051919050565b81818437506000910190815290565b7f646174613a6170706c69636174696f6e2f6a736f6e2c7b22646573637269707481527f696f6e223a2022537461726b7368656574222c20226e616d65223a202200000060208201528688603d8301376000878201602160f81b603d820152875161066481603e840160208c0161033b565b7f222c22696d616765223a2022646174613a696d6167652f7376672b786d6c2c25603e92909101918201527f334373766725323076696577426f782533442532373025323030253230383925605e8201527f3230353525323725323066696c6c2533442532376e6f6e65253237253230786d607e8201527f6c6e73253344253237687474702533412f2f7777772e77332e6f72672f323030609e8201527f302f737667253237253345253343646566732533452533437374796c6525334560be8201527f253430666f6e742d66616365253230253742666f6e742d66616d696c7925334160de8201527f253230253237507265737325323053746172742532303250253237253342737260fe8201527f6325334125323075726c25323825323764617461253341666f6e742f776f666661011e8201527f32253342626173653634253243643039474d6741424141414141424c3841413861013e8201527f41414141415235774141424b674141454141414141414141414141414141414161015e8201527f4141414141414141414141414150305a4756453063476a41624d42794358675a61017e8201527f6741494e794551674b3846545361517544524141424e67496b41344e4d42434161019e8201527f46687a5148684649623644566c42306a314f4d4253336f4f4953744562732f2f6101be8201527f2f6c4a776356727a47634f30676f684c45484d6369694443434e57695a6761306101de8201527f79625345555954514f6a4b427038546c737a7344526438716174586c333058746101fe8201527f30645a47467952305668444b776c62746c25324272734643773945316e64655961021e8201527f4a74732f37527762305673784d71576c636a6a775445537a2f5568752f77337361023e8201527f33746b6f496d70343464515168576f456d54337579526d70746f7553446b7a5761025e8201527f454138762f3932364a4b7539486f696e6e3673376674336d4965476c7737547161027e8201527f6437456f326a46517849766a5642494a70563269614f62547a68575932314e7461029e8201527f476772687434704d4b3457556a34624c7967542f51253242514c7879253242336102be8201527f6c482f362f6b6275496444497239446a724a496a6f394a7336524d58253242456102de8201527f6b37424f545a6b6d70397a347455524652566656307148504448375a7462364a6102fe8201527f616f6130684c335975616232473373667a72365776394536793569767025324261031e8201527f7135564c74426a514478476f5345304150313762336466376c61726a6525324261033e8201527f73637a6b7241744a334b6657304a342532424b323365744b4b556a383554616f61035e8201527f57473453346158436c427743413268676141652532423658396f696e32304e6261037e8201527f554a7264466767517049686d5247494d30372f7025324277375a7058316c473161039e8201527f6a6a51787073435141423438714445415042346950312f6a39592f4261686a356103be8201527f5943414e302f78714157496852616a6c6e694e654f50396e78433466667932556103de8201527f694843304e47386b686f6f567a6f7459334445417a417a41356b473735337a6a6103fe8201527f4853354d6e6d586b69496a6d54554d36556d4d3025324256346976752f48377861041e8201527f6a364666322f6b343472787a6449324141676742492f4c48416b394a7a35554d61043e8201527f496f4c7755344146455435725a464f33444d616655633061777351434879497061045e8201527f557a546b30784a474a454f6a4e6871436b474570496153474f6a714e466d2f5761047e8201527f4e434e3569636b71434d6e414165564c4d4c655867356971386b365752585a5261049e8201527f326c337042393831427a73475a743225324256696c4342723954494a674b67786104be8201527f365542514446253242566a4b44714e7741414948386a6949664d6e75384b68666104de8201527f584b486f4e3348634134477245786842324155442f795a554d423857547579496104fe8201527f413444634f4b656434397939504249616e426967734d454e38556b30766c547661051e8201527f304a58334e394d795a75544d763573655357413525324238556538504465547261053e8201527f645467474973566d4e33635856586a6463795275633434385866664176506e7361055e8201527f3575324d4531722532426a4731703137767a3849704f416e483444427367793361057e8201527f512f54376b33646d2f3846334232377355694877464631414f6c683055646e4961059e8201527f4471494e5164506355393145786f2f346252696a6a5169704e4e307a4c646c7a6105be8201527f504438496f547449734c38717162746f4f5149514a5a567849705931315073536105de8201527f55533231397a4c585066642f507667765751346372464d2532425769755671706105fe8201527f645a6f4e6475645872632f4745324d4a36656e3575635746694763375274364f61061e8201527f487676354d674c2532427a44733578444277696141315433554877326b63594361063e8201527f312f55666453316645316d37763742346537653350574848786533594f32483561065e8201527f25324241504f5a7965503025324251506553425468793078713965363241486a61067e8201527f6141556842432f364144484c6f476f4f657636412532426867487369317a613861069e8201527f71355a4e4d716a596c575a4d713867354248445574495370574a73526f52544a6106be8201527f56613049305a3957546b5371564b73507a3464586a7648746449684c6e7670746106de8201527f554c4330753542567579414d544b4a513930594b5267546e5769476b6d7153456106fe8201527f714b6d7256685259674b6b335443686255573671456f45637665577a6859535461071e8201527f4c32484e706735452f6d7151393956564467763352475435586d33637a68754c61073e8201527f3972685864316132372f736c5130686959366a643739614f5a43746a6f52687261075e8201527f623136575676514b725734477a786a7869723238494d697a2f7155447973495761077e8201527f7037516a667765347a556437614a735651575179524c554b484b42577938577661079e8201527f45565333584d53353656337757644f442532424638757639645477496d4b722f6107be8201527f5064626d5763775176456641616a7975566a70784e32704f56635769336c38776107de8201527f454c2f6d395070646f55494536253242504b5838315041546d67654f304231736107fe8201527f47454825324261707a353466646d534a7a333741686635366a4c7739756e504561081e8201527f35644d4b3025324237544639563843435466523979664e7355493474557a464661083e8201527f42326e536e384b4f626a64446964554c7034494a6873777878595172595a643661085e8201527f4e76436e55394d445825324252654c6e4d546d6c315a453972306b5077334e3261087e8201527f6752253242736a4573596d4953706b356c31497333594e614a4b6f6e7a65703761089e8201527f56637354316e556b62347048774b5a41796b614b6f43504630506f6d456876496108be8201527f5758656e6f5a767836774f4b313070316c3274546858793850316555776473766108de8201527f53715157766f424d7473674851554a614774494273756861776450545a5378596108fe8201527f707257757734647a7231564755744449465871726f4d4d69597346783857695461091e8201527f336463574b6f376d50554c79715657413972305974524a4c626957766a6e4c2561093e8201527f324272633452646767624e516c514141613264306d616236364d48447074314361095e8201527f6477626b51436253375053445a4d7a3746724f51713165636153304a6c74644161097e8201527f6c44527941587173364130586247707748676b70367572557757416272464d3361099e8201527f75794d764e4b6c344d6c435548537950416d3931776144454a3559595148754a6109be8201527f4d32304b575251737637486b61334770686c533258444b714f4b4245554753316109de8201527f65306b63316f323449494166486c4449794278584a4a656767423369386174566109fe8201527f67434f3064444f5a484a57596a564c416a6a397137765673456e72684b374568610a1e8201527f4c75427a42586d4d674554634531636d61436976504b6f4a766670466c794935610a3e8201527f4d70584234454325324245672f596d303454787843354e6c73596b74646f5951610a5e8201527f55656c38624673456c3748345a36734377622f38626b347458574658504b6a71610a7e8201527f5462526e64336e4c5770394f784941706c664b586747684e6c72443462354a4c610a9e8201527f5a367055753441726756614d366561357844574244476f7a707a4641376e6747610abe8201527f74596334486141775269475576637653653652414177335a576b564f4667764b610ade8201527f46364955696c4d49394964715155345134585264484866736666517770313955610afe8201527f434a49306a5773725433356f5578303678507268473271364d4533554f306c63610b1e8201527f635a557354454351784a44527854444b6c334c4948722f6162546f73686c6466610b3e8201527f51786a364f57745273466e6966444373473674336b426f344e6d424a6d615556610b5e8201527f54636c794951414a4c6a6e723042365a3859464d6e396b397967703752727848610b7e8201527f36766877624a4e41654b4d554436353974386746514a4d5377652f434f624850610b9e8201527f467671484746554e5266253242737245663354584b42725a76676b6369396972610bbe8201527f426d63442f7458616754474358634e68432532424f3539754c706e6673796f71610bde8201527f4c53313238374552776d38666165564f6d3857634437386c5a36594232793938610bfe8201527f5a4c6c4d3972557264324c514e6c324956643454727376675139363079377573610c1e8201527f5965306854506170576a71726c2532425837784665424e54253242315a644a4a610c3e8201527f572532424678745737584e7774634e7a7761672532425256656a6d4a6839656d610c5e8201527f6c495a4b69694e63694b3849554f4d33556a4a376342554e5847505853326c68610c7e8201527f253242687770676f4836567348524f63764569723372585970344c7769435a77610c9e8201527f3176486c43623552314d68623564536e4f326d6e6f475a6f5846315765574757610cbe8201527f6d7a694a314a555534715072306e694a536c4e424331636b4b6d4a6657625877610cde8201527f5577757449547a456d6a776770776142753464525066746a2f4e384143526e64610cfe8201527f616b2f4641674b674c37305058577839767a6b59322532426d34355473496b4c610d1e8201527f3037616f70444e6f676830535262535a534f397a744657516a376e574c676275610d3e8201527f364325324254374b6a44715a3667456e5277674d78306b4c5a77797962514f76610d5e8201527f514130773054782f354a42722f63595a6453574f546a774446364e6f586b796a610d7e8201527f33566a484e4751494e76426a5a734a4a3377466141516d6f5a575a5970416961610d9e8201527f574f466e6e686455524176576b557a77693062677a5a4158796f445545714863610dbe8201527f57307069454c574f777168773365765478444957724e32495371525151454c41610dde8201527f4d32365334486c723548552f48784a43436844424a6b756b6341573856415430610dfe8201527f6770545a544b4e48677a444f7234314751656a4f34677a416e6b577077464752610e1e8201527f43334c625231787a4b434875365635694674674c704f384b51596d5965467868610e3e8201527f4c32643838736469506a2f76306b427a636c51637954735766324d6445394944610e5e8201527f386d5858576a72434b253242354532756e336e6976656973526e726971317548610e7e8201527f594d6a6a69694945304b6466674d6f3163476d6b557254624f30356732737633610e9e8201527f477673525971762f61457736375472644f705435567a4641364131417939634b610ebe8201527f6f44667762544a64445750524e57517354796a6d3772486249734b466b6f4f2f610ede8201527f5a4c4376735966785973337768534338614c49344b765677373773336e347a48610efe8201527f67697061634a6e435362463945727a53357069386343577655597a4f5064327a610f1e8201527f684a2f4750437a53684f453378596c634f3350796164586a54334f6b68706841610f3e8201527f58465853766865544e5355525446565641486f4a6d7949726b6a454b6f517746610f5e8201527f4730303554334158643935764e30446d336d427332786746546c253242513572610f7e8201527f73416a6e744768707a6f62643642374e7a52664e56653130446f4e5639343753610f9e8201527f59646f635252624776636d785456786f61367a717756376d416e773544314745610fbe8201527f5474327a48382532425476514256356e37672f32615768743979794e594c3974610fde8201527f4f42744167384846435945316d4e775432454232467538544968543776565241610ffe8201527f3461587a6e6b3670545a4e6779696f73747749364b654655374c696c7041253261101e8201527f42334234474a794277574d327062466a4876734a3747754f6f616b6a6d46746a61103e8201527f59344c6254396c323239253242453646374c4475577a744c6e333749786b386a61105e8201527f356c42564b33774c7369362f416641756f6a34396c4d6b5653545045396b704761107e8201527f64304c724555534a4941413070596c4178414d642f4e4f46776f4a446458466961109e8201527f307a4f5744422f54464a705666575642574f516274724a556230636c663369256110be8201527f3242575072446f596c65545674564f45306d36793564487444725551776f414c6110de8201527f7455523365585364444d4e785866656a594674764c626c726c4a7777484b2f456110fe8201527f6957504a616b32574b35386e684e6f4c6a615a55475841756f32656f5777464561111e8201527f66612f445334496958717246714779633348726939785132693243352f73357661113e8201527f7a424d30793777334d4473774d3759325247427172464d6778374f696325324261115e8201527f30497a736d5678617a5473305263666a324f3334532f525639503269486f427561117e8201527f6c4b49594244665a46654c53356439725379664a64536c67683268644d72324f61119e8201527f5552334b6e6c506e4f41785477314a384c4d325a776e4671765a745a4a6c78786111be8201527f343873776243743272316b664875443756624831326159383849437456734b786111de8201527f4b742f31726b616c42414d74782f6f6f6d43445059626b556f4c6344624b436a6111fe8201527f7675713953544467746a584744715735564b36686347654f46697a6a3643714c61121e8201527f4f49716b57783477733245504d444e7378253242613661533230384f39784c3061123e8201527f526146586f394241645530706e452532424c695359334b536f4a41525978646e61125e8201527f7a69545a4d706961442f3438496969393834446151357976656378414673735761127e8201527f792f686274696d63253242704c386b35796f70496d4a627948712f6138797a6c61129e8201527f6c37726f4f7a586d786d4163337459585363546b65734d6344324939315a36336112be8201527f6549312f394a627755716b36737863394b52677277574d414e6543314e6e39756112de8201527f4779775473706d5538712532426c5a6d43714d674153363662674841476a514b6112fe8201527f73754a334451416a5235346d356a4c7a5a616e546c62646530253242726e663461131e8201527f385a574138546c32673277414779427748516e3552322532424e6a726542677861133e8201527f626c734e46627554776d6862414a48737a2f72416f61764c4f34317874767a5961135e8201527f4768336e4c4a426b41506a7578424a445248333048426575385567436978464e61137e8201527f437951322f4b253242385157372f6530253242664f2532423436524e5730657961139e8201527f4c726f39446a5467704a4e4d3547385179306c54644f756d73773066715045696113be8201527f393646702532424830634d774e6f376a787a596d6e4e664d5a6d64506c7932706113de8201527f6f7132575065476d67507136474c78504e34536c4b486e7870624f69754c58516113fe8201527f75583155715031676a6f38426136536c55314f416d5267707a7531735444584a61141e8201527f50754d3338546f387130344c324e777970653837327777556741675a6c70386461143e8201527f6b5166397a38544d43624d6b596b3758484375333564375a5a41656f346b5a4b61145e8201527f68784953386945354c546a334c4f6976485a7268394a3870337a4c5a436a776361147e8201527f6970354452694b6e576e49664c33386b4a684d7452776a67553525324256726d61149e8201527f714b6c6739307a376a64732f4238444b646b464c76483353253242376f4838616114be8201527f6c445a6c626734533155583574434d445342324f364b756c7a41344b763067376114de8201527f314251643054464b7733685358696e62374e6c304258725873514e6376436b386114fe8201527f6d6f394f786965783559627a78564e2f6b3738336f48545a495777393079495a61151e8201527f777672697164475473586e54384965705437597946434f4a6741395a3042794961153e8201527f455956735478522f6b73616b324268376f4b767034766e695530364d57317a4261155e8201527f4672746568647a306b6b587951786a426d7965645636644d596545386146787461157e8201527f6575777355466136466c6c54446c716430707a525a77473663467266574d627061159e8201527f384738587a6a66624d253242354658657076356f457273696c363458783663376115be8201527f5841576275696d3666387347494d58666f334a6971476b703333376854536a676115de8201527f65636862364f42472f327a31376a6f6d4469476d253242476c623146553069656115fe8201527f6e7552796977654c576767447a6d4655765545556a5a6f377356544877684f4661161e8201527f504d6b4e737146423977796d6b45307639666d7477453854377135384e594f3761163e8201527f787534623833766e46766c35755378446c472532426b4f51675249644f346a6761165e8201527f7a786a53486a4b4c7332742f6c684f647771766131415744437072763344345361167e8201527f34523741625934544362664b4637744265363554343551347a7a49714433316161169e8201527f79797557716a692532424636585337535439483943314f342f694b366b4775766116be8201527f6b512f664e3537487837456533373435622f76766e2f62482f58253242392f256116de8201527f32426762656d684f416d49705576755157757344764b517578394a44564e734b6116fe8201527f673651636d6b73515341445530346347524c523768466f5a326337785545664761171e8201527f253242776b755459474d764c6a422f6550634936416847686e5735717a45416961173e8201527f4a586377564545775869654e70536c317a6a457253253242435325324248634c61175e8201527f6f52506d7661324d6767412f69794c67536f544a555767733442794149514f3061177e8201527f4f6f705a487656627a6844494c65557155677a7a48492f667950474e7879777361179e8201527f6f796c6865534639577662795363336b4544716b32415636436c4364635535536117be8201527f6e6c4e6e4963394b794d63384c79622532423867484f4a795173466c4c6250526117de8201527f796d6d374a42743349545a544162314732444252496b514b51705451396939626117fe8201527f3665435353387a4d366161525364544b5657524d336663454a4c644b61746e7361181e8201527f724959774e4a55253242733048364461757832775a35686733706c653042474861183e8201527f756b316b4543734859446461496d4b7025324233463542317859763763486b7161185e8201527f644475306a4b645273657a3531376d63563641685148346931484e3173766c6a61187e8201527f5248366845454672682532426e72726d47316e33307a4d346749776d694d774561189e8201527f624b6842545564423141486f582532424b6741517a4f48543946494f71436b526118be8201527f4e4e623273397170496943534f753167576868497343564a73765771457175356118de8201527f47624a514b4e6a61427465394c4f69676368414a7665475773394332323033766118fe8201527f6f6e476c6b77725251323464646732796345646157554456734441785548734961191e8201527f77773665615234464665336d4a416b66426d5a6452395264774a485a6d47645261193e8201527f7950436a706a627a31712f584a34534949446b66384b4b6e6e32456c4b6d794c61195e8201527f69573442513836733151554b2f76426867524e776548766c5968687a7238706361197e8201527f67704b4b6d6f61576a7036426b594f48446c7835734b5647336365474539657661199e8201527f506e773563646667454242676f554946536238587632504553314772446a78456119be8201527f69524b6b697846716a54704d6d544b6b693148726a7a354368517155717845716119de8201527f544c6c4b6c53715571314772547231476a527130717846717a62744f6e5347656119fe8201527f3668374a6d627a4968355a6544696c315a58536a7430774375616b336c6e476f611a1e8201527f5655506f53734e663337394b326a6274716d44674d69485a42665a6c68324839611a3e8201527f75773738495469314a466a585653662f4336634f55667a346f30644178305447611a5e8201527f777448446863666a3443516d49694531444d5a42546b6c4e5a557065566f614f611a7e8201527f6e717633733234314e50503965766574594768435a50576a4979747332706173611a9e8201527f436a25324270556a54596c336b615574374f744b4a6136355850396d356e6367611abe8201527f364e686a685a587032762532426d57724341545a754a303368316b6a55756976611ade8201527f5067596e6a6e35744b4a4f6b326e6362703251414559585a69304b496d50356b611afe8201527f744961466e366b5a397743253237253239253230666f726d6174253238253237611b1e8201527f776f666632253237253239253342666f6e742d7765696768742533412532306e611b3e8201527f6f726d616c253342666f6e742d7374796c652533412532306e6f726d616c2533611b5e8201527f42666f6e742d646973706c617925334125323073776170253342253744746578611b7e8201527f74253230253742666f6e742d66616d696c792533412532302532375072657373611b9e8201527f2532305374617274253230325025323725334266696c6c253341253230776869611bbe8201527f74652537442e76616c7565253230253742666f6e742d73697a65253341253230611bde8201527f313070782533422537442e6e616d65253230253742666f6e742d73697a652533611bfe8201527f412532303470782533422537442533432f7374796c652533452533432f646566611c1e8201527f7325334525334372656374253230776964746825334425323738392532372532611c3e8201527f30686569676874253344253237353525323725323066696c6c25334425323762611c5e8201527f6c61636b2532372532302f253345253343726563742532307825334425323735611c7e8201527f2e3525323725323079253344253237352e352532372532307769647468253344611c9e8201527f2532373738253237253230686569676874253344253237343425323725323066611cbe8201527f696c6c2533442532372532333030303046462532372532302f25334525334374611cde8201527f657874253230746578742d616e63686f722533442532376d6964646c65253237611cfe8201527f2532307825334425323734342e35253237253230792533442532373333253237611d1e8201527f253230636c61737325334425323776616c756525323725334500000000000000611d3e820152612ba5612b9e6129f5611d5784018a61055b565b7f2533432f746578742533452533437265637425323078253344253237352e352581527f323725323079253344253237352e35253237253230776964746825334425323760208201527f373825323725323068656967687425334425323734342532372532307374726f60408201527f6b652533442532372532334646344630412532372532307374726f6b652d776960608201527f647468253344253237332532372532302f25334525334372656374253230782560808201527f334425323733302532372532307925334425323734352e35253237253230776960a08201527f647468253344253237353825323725323068656967687425334425323738253260c08201527f3725323066696c6c2533442532372532334646344630412532372532302f253360e08201527f4525334374657874253230746578742d616e63686f72253344253237656e64256101008201527f32372532307825334425323738372532372532307925334425323735322532376101208201527f253230636c6173732533442532376e616d6525323725334500000000000000006101408201526101580190565b86886105e3565b602160f81b81529050612bbb600182018561055b565b7f2533432f746578742533452533432f737667253345227d00000000000000000081526017019a995050505050505050505056fea26469706673582212204ebb5504852a340c7a67a89e9af874a99996f2d1a3a978c1c25c376c60d5de3c64736f6c63430008140033", + "nonce": "0x2", + "accessList": [] + }, + "additionalContracts": [], + "isFixedGasLimit": false + }, + { + "hash": "0x6928394d16d250b8acc935bd72f4e688cd99af36a973880a9f486cc7c2fe7374", + "transactionType": "CREATE", + "contractName": null, + "contractAddress": "0xCf7Ed3AccA5a467e9e704C703E8D87F634fB0Fc9", + "function": null, + "arguments": null, + "transaction": { + "type": "0x02", + "from": "0xf39fd6e51aad88f6f4ce6ab8827279cfffb92266", + "gas": "0x42230", + "value": "0x0", + "data": "0x608060405234801561001057600080fd5b506102cf806100206000396000f3fe608060405234801561001057600080fd5b506004361061004c5760003560e01c80630194db8e14610051578063072bdcc214610076578063a391c15b14610089578063b67d77c51461009c575b600080fd5b61006461005f366004610160565b6100af565b60405190815260200160405180910390f35b610064610084366004610160565b6100ef565b61006461009736600461021e565b610129565b6100646100aa36600461021e565b61013e565b600080805b83518110156100e8578381815181106100cf576100cf610240565b60200260200101518201915080806001019150506100b4565b5092915050565b60006001815b83518110156100e85783818151811061011057610110610240565b60200260200101518202915080806001019150506100f5565b60006101358284610256565b90505b92915050565b60006101358284610278565b634e487b7160e01b600052604160045260246000fd5b6000602080838503121561017357600080fd5b823567ffffffffffffffff8082111561018b57600080fd5b818501915085601f83011261019f57600080fd5b8135818111156101b1576101b161014a565b8060051b604051601f19603f830116810181811085821117156101d6576101d661014a565b6040529182528482019250838101850191888311156101f457600080fd5b938501935b82851015610212578435845293850193928501926101f9565b98975050505050505050565b6000806040838503121561023157600080fd5b50508035926020909101359150565b634e487b7160e01b600052603260045260246000fd5b60008261027357634e487b7160e01b600052601260045260246000fd5b500490565b8181038181111561013857634e487b7160e01b600052601160045260246000fdfea264697066735822122030605896aa3092c5c0d163e40b09c7c92189bbd1be4f62579184af38d08031be64736f6c63430008140033", + "nonce": "0x3", + "accessList": [] + }, + "additionalContracts": [], + "isFixedGasLimit": false + }, + { + "hash": "0xb5ca6887acd6dc183175a31022b7f2c064fd77da0de691cb19ccc59b228c0967", + "transactionType": "CREATE", + "contractName": "Evmsheet", + "contractAddress": "0xDc64a140Aa3E981100a9becA4E685f962f0cF6C9", + "function": null, + "arguments": [ + "0x9fE46736679d2D9a65F0992F2272dE9f3c7fa6e0", + "10000000000000000" + ], + "transaction": { + "type": "0x02", + "from": "0xf39fd6e51aad88f6f4ce6ab8827279cfffb92266", + "gas": "0x34bf99", + "value": "0x0", + "data": "0x608060405234801561001057600080fd5b50604051612ed9380380612ed983398101604081905261002f916100b1565b61003833610061565b600280546001600160a01b0319166001600160a01b0393909316929092179091556001556100eb565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b600080604083850312156100c457600080fd5b82516001600160a01b03811681146100db57600080fd5b6020939093015192949293505050565b612ddf806100fa6000396000f3fe608060405260043610620000a95760003560e01c80638da5cb5b116200006c5780638da5cb5b146200016d578063ab2fa65a146200018d578063ae28505e14620001b4578063c56c4cf114620001d9578063f2fde38b14620001fb578063f52be2a2146200022057600080fd5b806303fb31e814620000ae5780631164c83d14620000d5578063145e414714620000ec5780635787cacb146200012e578063715018a61462000155575b600080fd5b348015620000bb57600080fd5b50620000d3620000cd36600462000778565b62000247565b005b620000d3620000e6366004620007e9565b62000273565b348015620000f957600080fd5b50620001116200010b36600462000864565b620004b2565b6040516001600160a01b0390911681526020015b60405180910390f35b3480156200013b57600080fd5b50620001466200054f565b60405162000125919062000891565b3480156200016257600080fd5b50620000d3620005b3565b3480156200017a57600080fd5b506000546001600160a01b031662000111565b3480156200019a57600080fd5b50620001a5620005cb565b604051620001259190620008e0565b348015620001c157600080fd5b5062000111620001d336600462000930565b620005f7565b348015620001e657600080fd5b5060025462000111906001600160a01b031681565b3480156200020857600080fd5b50620000d36200021a36600462000778565b62000622565b3480156200022d57600080fd5b506200023860015481565b60405190815260200162000125565b62000251620006a1565b600280546001600160a01b0319166001600160a01b0392909216919091179055565b60015434146200029d5760405163723a79e360e11b81523460048201526024015b60405180910390fd5b600060405180602001620002b1906200074d565b6020820181038252601f19601f8201166040525090506000828251602084016000f56002546040516356d3163d60e01b81526001600160a01b0391821660048201529192508216906356d3163d90602401600060405180830381600087803b1580156200031d57600080fd5b505af115801562000332573d6000803e3d6000fd5b505060405163c47f002760e01b81526001600160a01b038416925063c47f0027915062000366908a908a906004016200094a565b600060405180830381600087803b1580156200038157600080fd5b505af115801562000396573d6000803e3d6000fd5b5050604051635c26412360e11b81526001600160a01b038416925063b84c82469150620003ca90889088906004016200094a565b600060405180830381600087803b158015620003e557600080fd5b505af1158015620003fa573d6000803e3d6000fd5b505060405163f2fde38b60e01b81523260048201526001600160a01b038416925063f2fde38b9150602401600060405180830381600087803b1580156200044057600080fd5b505af115801562000455573d6000803e3d6000fd5b5050600380546001810182556000919091527fc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b0180546001600160a01b0319166001600160a01b0394909416939093179092555050505050505050565b600060ff60f81b838360405180602001620004cd906200074d565b6020820181038252601f19601f82011660405250805190602001206040516020016200053094939291906001600160f81b031994909416845260609290921b6bffffffffffffffffffffffff191660018401526015830152603582015260550190565b60408051601f1981840301815291905280516020909101209392505050565b60606003805480602002602001604051908101604052809291908181526020018280548015620005a957602002820191906000526020600020905b81546001600160a01b031681526001909101906020018083116200058a575b5050505050905090565b620005bd620006a1565b620005c96000620006fd565b565b606060405180602001620005df906200074d565b601f1982820381018352601f90910116604052919050565b600381815481106200060857600080fd5b6000918252602090912001546001600160a01b0316905081565b6200062c620006a1565b6001600160a01b038116620006935760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b606482015260840162000294565b6200069e81620006fd565b50565b6000546001600160a01b03163314620005c95760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015260640162000294565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b612430806200097a83390190565b80356001600160a01b03811681146200077357600080fd5b919050565b6000602082840312156200078b57600080fd5b62000796826200075b565b9392505050565b60008083601f840112620007b057600080fd5b50813567ffffffffffffffff811115620007c957600080fd5b602083019150836020828501011115620007e257600080fd5b9250929050565b6000806000806000606086880312156200080257600080fd5b853567ffffffffffffffff808211156200081b57600080fd5b6200082989838a016200079d565b909750955060208801359150808211156200084357600080fd5b5062000852888289016200079d565b96999598509660400135949350505050565b600080604083850312156200087857600080fd5b62000883836200075b565b946020939093013593505050565b6020808252825182820181905260009190848201906040850190845b81811015620008d45783516001600160a01b031683529284019291840191600101620008ad565b50909695505050505050565b600060208083528351808285015260005b818110156200090f57858101830151858201604001528201620008f1565b506000604082860101526040601f19601f8301168501019250505092915050565b6000602082840312156200094357600080fd5b5035919050565b60208152816020820152818360408301376000818301604090810191909152601f909201601f1916010191905056fe60806040523480156200001157600080fd5b50604051806040016040528060078152602001660536865657420360cc1b815250604051806040016040528060048152602001630534854360e41b81525062000069620000636200008f60201b60201c565b62000093565b600162000077838262000188565b50600262000086828262000188565b50505062000254565b3390565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b634e487b7160e01b600052604160045260246000fd5b600181811c908216806200010e57607f821691505b6020821081036200012f57634e487b7160e01b600052602260045260246000fd5b50919050565b601f8211156200018357600081815260208120601f850160051c810160208610156200015e5750805b601f850160051c820191505b818110156200017f578281556001016200016a565b5050505b505050565b81516001600160401b03811115620001a457620001a4620000e3565b620001bc81620001b58454620000f9565b8462000135565b602080601f831160018114620001f45760008415620001db5750858301515b600019600386901b1c1916600185901b1785556200017f565b600085815260208120601f198616915b82811015620002255788860151825594840194600190910190840162000204565b5085821015620002445787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b6121cc80620002646000396000f3fe608060405234801561001057600080fd5b50600436106102275760003560e01c8063715018a611610130578063b85d8b85116100b8578063cf0983981161007c578063cf09839814610512578063cfbe95d814610535578063df4ca20614610556578063e985e9c514610576578063f2fde38b146105a457600080fd5b8063b85d8b85146104a4578063b88d4fde146104ce578063b8c368ec146104e1578063c47f0027146104ec578063c87b56dd146104ff57600080fd5b806395d89b41116100ff57806395d89b4114610439578063a22cb46514610441578063b46ebb1214610454578063b6d658e114610467578063b84c82461461049157600080fd5b8063715018a6146103fa578063768d5029146104025780638ada6b0f146104155780638da5cb5b1461042857600080fd5b80631b06443c116101b35780634f6ccce7116101825780634f6ccce71461038157806356d3163d146103a15780636352211e146103b45780636a0abc74146103c757806370a08231146103e757600080fd5b80631b06443c14610335578063206848f61461034857806323b872dd1461035b57806342842e0e1461036e57600080fd5b8063081812fc116101fa578063081812fc146102a1578063095ea7b3146102e2578063172b9eed146102f757806318160ddd1461030a5780631941fd141461031357600080fd5b806301ffc9a71461022c57806302f3c4c91461025457806306fdde03146102745780630715a24a1461027c575b600080fd5b61023f61023a36600461176a565b6105b7565b60405190151581526020015b60405180910390f35b610267610262366004611861565b610609565b60405161024b9190611951565b610267610638565b6102936fffffffffffffffffffffffffffffffff81565b60405190815260200161024b565b6102ca6102af366004611964565b6005602052600090815260409020546001600160a01b031681565b6040516001600160a01b03909116815260200161024b565b6102f56102f036600461197d565b6106c6565b005b6102676103053660046119a9565b6107ad565b61029360075481565b610326610321366004611964565b610875565b60405161024b939291906119de565b6102ca610343366004611a0e565b61092a565b610326610356366004611964565b6109e3565b6102f5610369366004611a2b565b610ae1565b6102f561037c366004611a2b565b610ca8565b61029361038f366004611964565b60086020526000908152604090205481565b6102f56103af366004611a0e565b610da0565b6102ca6103c2366004611964565b610dca565b6103da6103d53660046119a9565b610e1c565b60405161024b9190611a6c565b6102936103f5366004611a0e565b610e60565b6102f5610ec3565b6102f5610410366004611af9565b610ed7565b6009546102ca906001600160a01b031681565b6000546001600160a01b03166102ca565b610267611035565b6102f561044f366004611b63565b611042565b610267610462366004611964565b6110ae565b61047a610475366004611964565b611258565b60408051921515835260208301919091520161024b565b6102f561049f366004611ba1565b611275565b6104b56104b2366004611964565b90565b6040516001600160e01b0319909116815260200161024b565b6102f56104dc366004611be3565b6112c6565b6102ca600160801b81565b6102f56104fa366004611ba1565b6113ae565b61026761050d366004611964565b6113ff565b61023f610520366004611a0e565b600160801b6001600160a01b03919091161090565b61023f610543366004611861565b516001600160a01b0316600160801b1490565b610569610564366004611964565b6114c9565b60405161024b9190611c16565b61023f610584366004611c4d565b600660209081526000928352604080842090915290825290205460ff1681565b6102f56105b2366004611a0e565b611526565b60006301ffc9a760e01b6001600160e01b0319831614806105e857506380ac58cd60e01b6001600160e01b03198316145b806106035750635b5e139f60e01b6001600160e01b03198316145b92915050565b6060816020015160405160200161062291815260200190565b6040516020818303038152906040529050919050565b6001805461064590611c7b565b80601f016020809104026020016040519081016040528092919081815260200182805461067190611c7b565b80156106be5780601f10610693576101008083540402835291602001916106be565b820191906000526020600020905b8154815290600101906020018083116106a157829003601f168201915b505050505081565b6000818152600360205260409020546001600160a01b03163381148061070f57506001600160a01b038116600090815260066020908152604080832033845290915290205460ff165b6107515760405162461bcd60e51b815260206004820152600e60248201526d1393d517d055551213d49256915160921b60448201526064015b60405180910390fd5b60008281526005602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b606060006107ba83610e1c565b9050606060005b825181101561086d576000806107ef8584815181106107e2576107e2611cb5565b6020026020010151611258565b9150915081156108335783610803826110ae565b61080c90611ccb565b60405160200161081d929190611cef565b6040516020818303038152906040529350610858565b6040516108469085908390602001611cef565b60405160208183030381529060405293505b5050808061086590611d27565b9150506107c1565b509392505050565b600a602052600090815260409020805460018201546002830180546001600160a01b039093169391926108a790611c7b565b80601f01602080910402602001604051908101604052809291908181526020018280546108d390611c7b565b80156109205780601f106108f557610100808354040283529160200191610920565b820191906000526020600020905b81548152906001019060200180831161090357829003601f168201915b5050505050905083565b6000600160801b6001600160a01b03831610156109da576000610955836001600160a01b03166110ae565b604051632d737e4960e21b8152909150735fbdb2315678afecb367f032d93f642f64180aa39063b5cdf92490610992908490600090600401611d40565b602060405180830381865af41580156109af573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906109d39190611d62565b9392505050565b5090565b919050565b60008181526003602052604081205481906060906001600160a01b0316610a1057600160801b9250610a2b565b6000848152600a60205260409020546001600160a01b031692505b6000848152600a60205260409020600181015460029091018054859291908190610a5490611c7b565b80601f0160208091040260200160405190810160405280929190818152602001828054610a8090611c7b565b8015610acd5780601f10610aa257610100808354040283529160200191610acd565b820191906000526020600020905b815481529060010190602001808311610ab057829003601f168201915b505050505090509250925092509193909250565b6000818152600360205260409020546001600160a01b03848116911614610b375760405162461bcd60e51b815260206004820152600a60248201526957524f4e475f46524f4d60b01b6044820152606401610748565b6001600160a01b038216610b815760405162461bcd60e51b81526020600482015260116024820152701253959053125117d49150d25412515395607a1b6044820152606401610748565b336001600160a01b0384161480610bbb57506001600160a01b038316600090815260066020908152604080832033845290915290205460ff165b80610bdc57506000818152600560205260409020546001600160a01b031633145b610c195760405162461bcd60e51b815260206004820152600e60248201526d1393d517d055551213d49256915160921b6044820152606401610748565b6001600160a01b0380841660008181526004602090815260408083208054600019019055938616808352848320805460010190558583526003825284832080546001600160a01b03199081168317909155600590925284832080549092169091559251849392917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b610cb3838383610ae1565b6001600160a01b0382163b1580610d5c5750604051630a85bd0160e11b8082523360048301526001600160a01b03858116602484015260448301849052608060648401526000608484015290919084169063150b7a029060a4016020604051808303816000875af1158015610d2c573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610d509190611d7b565b6001600160e01b031916145b610d9b5760405162461bcd60e51b815260206004820152601060248201526f155394d0519157d49150d2541251539560821b6044820152606401610748565b505050565b610da861159f565b600980546001600160a01b0319166001600160a01b0392909216919091179055565b6000818152600360205260409020546001600160a01b0316806109de5760405162461bcd60e51b815260206004820152600a6024820152691393d517d3525395115160b21b6044820152606401610748565b60608082516040519150602081048252602082016020850160005b83811015610e4f578181015183820152602001610e37565b505050810160200160405292915050565b60006001600160a01b038216610ea75760405162461bcd60e51b815260206004820152600c60248201526b5a45524f5f4144445245535360a01b6044820152606401610748565b506001600160a01b031660009081526004602052604090205490565b610ecb61159f565b610ed560006115f9565b565b6000858152600360205260409020546001600160a01b0316610f2f57610efd3286611649565b60078054600090815260086020526040812087905581546001929190610f24908490611d98565b90915550610f889050565b6000858152600360205260409020546001600160a01b03163214610f8857600085815260036020526040908190205490516324f3f02560e21b81526001600160a01b039091166004820152326024820152604401610748565b6040518060600160405280856001600160a01b0316815260200184815260200183838080601f0160208091040260200160405190810160405280939291908181526020018383808284376000920182905250939094525050878152600a6020908152604091829020845181546001600160a01b0319166001600160a01b0390911617815590840151600182015590830151909150600282019061102b9082611df9565b5050505050505050565b6002805461064590611c7b565b3360008181526006602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b6000818152600a6020908152604080832081516060818101845282546001600160a01b0316825260018301549482019490945260028201805494959491938401916110f890611c7b565b80601f016020809104026020016040519081016040528092919081815260200182805461112490611c7b565b80156111715780601f1061114657610100808354040283529160200191611171565b820191906000526020600020905b81548152906001019060200180831161115457829003601f168201915b505050505081525050905061119381516001600160a01b0316600160801b1490565b156111a1576109d381610609565b60006111b0826000015161092a565b905060006111bf836020015190565b905060006111d084604001516107ad565b90506000836001600160a01b031683836040516020016111f1929190611eb9565b60408051601f198184030181529082905261120b91611eea565b600060405180830381855afa9150503d8060008114611246576040519150601f19603f3d011682016040523d82523d6000602084013e61124b565b606091505b5098975050505050505050565b600080611266600284611f06565b60019081149493901c92915050565b61127d61159f565b7f8dca0271872d00b3de3abafca544c52fcd7d512dd852c9894fa2c118ac759a93600283836040516112b193929190611fce565b60405180910390a16002610d9b828483611ffe565b6112d1858585610ae1565b6001600160a01b0384163b15806113685750604051630a85bd0160e11b808252906001600160a01b0386169063150b7a02906113199033908a908990899089906004016120be565b6020604051808303816000875af1158015611338573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061135c9190611d7b565b6001600160e01b031916145b6113a75760405162461bcd60e51b815260206004820152601060248201526f155394d0519157d49150d2541251539560821b6044820152606401610748565b5050505050565b6113b661159f565b7fb65b7b5ea384affd30f77f842e057d29dd1b13f133adf69a724a8105b164ab75600183836040516113ea93929190611fce565b60405180910390a16001610d9b828483611ffe565b6000818152600360205260409020546060906001600160a01b03168061143b57604051630243d1a960e21b815260048101849052602401610748565b6000611446846110ae565b6009546040516328de0f2f60e01b81529192506001600160a01b0316906328de0f2f9061147c90879085906001906004016120fd565b600060405180830381865afa158015611499573d6000803e3d6000fd5b505050506040513d6000823e601f3d908101601f191682016040526114c19190810190612128565b949350505050565b604080516060808201835260008083526020830181905292820152906114ee836110ae565b6040805160608101825285815260009586526003602090815295829020546001600160a01b0316958101959095528401525090919050565b61152e61159f565b6001600160a01b0381166115935760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610748565b61159c816115f9565b50565b6000546001600160a01b03163314610ed55760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610748565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b6001600160a01b0382166116935760405162461bcd60e51b81526020600482015260116024820152701253959053125117d49150d25412515395607a1b6044820152606401610748565b6000818152600360205260409020546001600160a01b0316156116e95760405162461bcd60e51b815260206004820152600e60248201526d1053149150511657d3525395115160921b6044820152606401610748565b6001600160a01b038216600081815260046020908152604080832080546001019055848352600390915280822080546001600160a01b0319168417905551839291907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b6001600160e01b03198116811461159c57600080fd5b60006020828403121561177c57600080fd5b81356109d381611754565b634e487b7160e01b600052604160045260246000fd5b604051601f8201601f1916810167ffffffffffffffff811182821017156117c6576117c6611787565b604052919050565b6001600160a01b038116811461159c57600080fd5b600067ffffffffffffffff8211156117fd576117fd611787565b50601f01601f191660200190565b600082601f83011261181c57600080fd5b813561182f61182a826117e3565b61179d565b81815284602083860101111561184457600080fd5b816020850160208301376000918101602001919091529392505050565b60006020828403121561187357600080fd5b813567ffffffffffffffff8082111561188b57600080fd5b908301906060828603121561189f57600080fd5b6040516060810181811083821117156118ba576118ba611787565b60405282356118c8816117ce565b8152602083810135908201526040830135828111156118e657600080fd5b6118f28782860161180b565b60408301525095945050505050565b60005b8381101561191c578181015183820152602001611904565b50506000910152565b6000815180845261193d816020860160208601611901565b601f01601f19169290920160200192915050565b6020815260006109d36020830184611925565b60006020828403121561197657600080fd5b5035919050565b6000806040838503121561199057600080fd5b823561199b816117ce565b946020939093013593505050565b6000602082840312156119bb57600080fd5b813567ffffffffffffffff8111156119d257600080fd5b6114c18482850161180b565b60018060a01b0384168152826020820152606060408201526000611a056060830184611925565b95945050505050565b600060208284031215611a2057600080fd5b81356109d3816117ce565b600080600060608486031215611a4057600080fd5b8335611a4b816117ce565b92506020840135611a5b816117ce565b929592945050506040919091013590565b6020808252825182820181905260009190848201906040850190845b81811015611aa457835183529284019291840191600101611a88565b50909695505050505050565b60008083601f840112611ac257600080fd5b50813567ffffffffffffffff811115611ada57600080fd5b602083019150836020828501011115611af257600080fd5b9250929050565b600080600080600060808688031215611b1157600080fd5b853594506020860135611b23816117ce565b935060408601359250606086013567ffffffffffffffff811115611b4657600080fd5b611b5288828901611ab0565b969995985093965092949392505050565b60008060408385031215611b7657600080fd5b8235611b81816117ce565b915060208301358015158114611b9657600080fd5b809150509250929050565b60008060208385031215611bb457600080fd5b823567ffffffffffffffff811115611bcb57600080fd5b611bd785828601611ab0565b90969095509350505050565b600080600080600060808688031215611bfb57600080fd5b8535611c06816117ce565b94506020860135611b23816117ce565b602081528151602082015260018060a01b036020830151166040820152600060408301516060808401526114c16080840182611925565b60008060408385031215611c6057600080fd5b8235611c6b816117ce565b91506020830135611b96816117ce565b600181811c90821680611c8f57607f821691505b602082108103611caf57634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052603260045260246000fd5b80516020808301519190811015611caf5760001960209190910360031b1b16919050565b60008351611d01818460208801611901565b9190910191825250602001919050565b634e487b7160e01b600052601160045260246000fd5b600060018201611d3957611d39611d11565b5060010190565b604081526000611d536040830185611925565b90508260208301529392505050565b600060208284031215611d7457600080fd5b5051919050565b600060208284031215611d8d57600080fd5b81516109d381611754565b8082018082111561060357610603611d11565b601f821115610d9b57600081815260208120601f850160051c81016020861015611dd25750805b601f850160051c820191505b81811015611df157828155600101611dde565b505050505050565b815167ffffffffffffffff811115611e1357611e13611787565b611e2781611e218454611c7b565b84611dab565b602080601f831160018114611e5c5760008415611e445750858301515b600019600386901b1c1916600185901b178555611df1565b600085815260208120601f198616915b82811015611e8b57888601518255948401946001909101908401611e6c565b5085821015611ea95787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b6001600160e01b0319831681528151600090611edc816004850160208701611901565b919091016004019392505050565b60008251611efc818460208701611901565b9190910192915050565b600082611f2357634e487b7160e01b600052601260045260246000fd5b500690565b60008154611f3581611c7b565b808552602060018381168015611f525760018114611f6c57611f9a565b60ff1985168884015283151560051b880183019550611f9a565b866000528260002060005b85811015611f925781548a8201860152908301908401611f77565b890184019650505b505050505092915050565b81835281816020850137506000828201602090810191909152601f909101601f19169091010190565b604081526000611fe16040830186611f28565b8281036020840152611ff4818587611fa5565b9695505050505050565b67ffffffffffffffff83111561201657612016611787565b61202a836120248354611c7b565b83611dab565b6000601f84116001811461205e57600085156120465750838201355b600019600387901b1c1916600186901b1783556113a7565b600083815260209020601f19861690835b8281101561208f578685013582556020948501946001909201910161206f565b50868210156120ac5760001960f88860031b161c19848701351681555b505060018560011b0183555050505050565b6001600160a01b03868116825285166020820152604081018490526080606082018190526000906120f29083018486611fa5565b979650505050505050565b8381526060602082015260006121166060830185611925565b8281036040840152611ff48185611f28565b60006020828403121561213a57600080fd5b815167ffffffffffffffff81111561215157600080fd5b8201601f8101841361216257600080fd5b805161217061182a826117e3565b81815285602083850101111561218557600080fd5b611a0582602083016020860161190156fea26469706673582212208654fed39bbd8db9fff4941eef342e5c686c37c5ce983973725ee994fdf5a88a64736f6c63430008140033a264697066735822122087cea2be6e247da88c43d4ca4f954bda87a09156a9b792b225900e1701e2c74164736f6c634300081400330000000000000000000000009fe46736679d2d9a65f0992f2272de9f3c7fa6e0000000000000000000000000000000000000000000000000002386f26fc10000", + "nonce": "0x4", + "accessList": [] + }, + "additionalContracts": [], + "isFixedGasLimit": false + } + ], + "receipts": [ + { + "transactionHash": "0xfb04d6c6b1e9f9378a1ec3cfd8f86c712379c2a9a898c24d0ae06ead6fb87858", + "transactionIndex": "0x0", + "blockHash": "0xee07d25eae55fa1b230d0df6ad193e863ebee31a52b5519d2ae0091a820bc1bc", + "blockNumber": "0x1", + "from": "0xf39Fd6e51aad88F6F4ce6aB8827279cffFb92266", + "to": null, + "cumulativeGasUsed": "0xf072b", + "gasUsed": "0xf072b", + "contractAddress": "0x5FbDB2315678afecb367f032d93F642f64180aa3", + "logs": [], + "status": "0x1", + "logsBloom": "0x00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", + "type": "0x2", + "effectiveGasPrice": "0xee6b2800" + }, + { + "transactionHash": "0x16a24f294817f13c03d22266c67ddecc22e25eff349a9e8619b580da71ceee3a", + "transactionIndex": "0x1", + "blockHash": "0xee07d25eae55fa1b230d0df6ad193e863ebee31a52b5519d2ae0091a820bc1bc", + "blockNumber": "0x1", + "from": "0xf39Fd6e51aad88F6F4ce6aB8827279cffFb92266", + "to": null, + "cumulativeGasUsed": "0x1141e0", + "gasUsed": "0x23ab5", + "contractAddress": "0xe7f1725E7734CE288F8367e1Bb143E90bb3F0512", + "logs": [], + "status": "0x1", + "logsBloom": "0x00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", + "type": "0x2", + "effectiveGasPrice": "0xee6b2800" + }, + { + "transactionHash": "0x5d414223b8f3dad1cef0f8d597701996b4292a491d1da79a2f8faefb1f9bd4a1", + "transactionIndex": "0x2", + "blockHash": "0xee07d25eae55fa1b230d0df6ad193e863ebee31a52b5519d2ae0091a820bc1bc", + "blockNumber": "0x1", + "from": "0xf39Fd6e51aad88F6F4ce6aB8827279cffFb92266", + "to": null, + "cumulativeGasUsed": "0x3758e9", + "gasUsed": "0x261709", + "contractAddress": "0x9fE46736679d2D9a65F0992F2272dE9f3c7fa6e0", + "logs": [], + "status": "0x1", + "logsBloom": "0x00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", + "type": "0x2", + "effectiveGasPrice": "0xee6b2800" + }, + { + "transactionHash": "0x6928394d16d250b8acc935bd72f4e688cd99af36a973880a9f486cc7c2fe7374", + "transactionIndex": "0x3", + "blockHash": "0xee07d25eae55fa1b230d0df6ad193e863ebee31a52b5519d2ae0091a820bc1bc", + "blockNumber": "0x1", + "from": "0xf39Fd6e51aad88F6F4ce6aB8827279cffFb92266", + "to": null, + "cumulativeGasUsed": "0x3a8717", + "gasUsed": "0x32e2e", + "contractAddress": "0xCf7Ed3AccA5a467e9e704C703E8D87F634fB0Fc9", + "logs": [], + "status": "0x1", + "logsBloom": "0x00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", + "type": "0x2", + "effectiveGasPrice": "0xee6b2800" + }, + { + "transactionHash": "0xb5ca6887acd6dc183175a31022b7f2c064fd77da0de691cb19ccc59b228c0967", + "transactionIndex": "0x0", + "blockHash": "0xda9e1fa9c5b7310ab1c04044571871783ab969b5acfa26ab66b5ec4a9f6b3b96", + "blockNumber": "0x2", + "from": "0xf39Fd6e51aad88F6F4ce6aB8827279cffFb92266", + "to": null, + "cumulativeGasUsed": "0x289654", + "gasUsed": "0x289654", + "contractAddress": "0xDc64a140Aa3E981100a9becA4E685f962f0cF6C9", + "logs": [ + { + "address": "0xDc64a140Aa3E981100a9becA4E685f962f0cF6C9", + "topics": [ + "0x8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0", + "0x0000000000000000000000000000000000000000000000000000000000000000", + "0x000000000000000000000000f39fd6e51aad88f6f4ce6ab8827279cfffb92266" + ], + "data": "0x", + "blockHash": "0xda9e1fa9c5b7310ab1c04044571871783ab969b5acfa26ab66b5ec4a9f6b3b96", + "blockNumber": "0x2", + "transactionHash": "0xb5ca6887acd6dc183175a31022b7f2c064fd77da0de691cb19ccc59b228c0967", + "transactionIndex": "0x0", + "logIndex": "0x0", + "transactionLogIndex": "0x0", + "removed": false + } + ], + "status": "0x1", + "logsBloom": "0x00000000000000000000000000000000000000000000000000800000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000020000000000000100000800000000000000000000000000000000400000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000200000000000000000000000002020000000000000000020000000000000000000000000000000000000000001000000000100000000000000", + "type": "0x2", + "effectiveGasPrice": "0xe8df89d5" + } + ], + "libraries": [ + "lib/eth-projects-monorepo/packages/eth-projects-contracts/contracts/lib/utils/Bytes.sol:Bytes:0x5fbdb2315678afecb367f032d93f642f64180aa3" + ], + "pending": [], + "returns": {}, + "timestamp": 1689415695, + "chain": 31337, + "multi": false, + "commit": "fe5dc88" +} \ No newline at end of file diff --git a/packages/starksheet-solidity/broadcast/Evmsheet.s.sol/31337/run-1689415823.json b/packages/starksheet-solidity/broadcast/Evmsheet.s.sol/31337/run-1689415823.json new file mode 100644 index 00000000..4851e26c --- /dev/null +++ b/packages/starksheet-solidity/broadcast/Evmsheet.s.sol/31337/run-1689415823.json @@ -0,0 +1,209 @@ +{ + "transactions": [ + { + "hash": "0x0139fb712eb4db716921fec34aaff25eaf45bad93b541135a224f800f0e8ae95", + "transactionType": "CREATE", + "contractName": "Bytes", + "contractAddress": "0x5FC8d32690cc91D4c39d9d3abcBD16989F875707", + "function": null, + "arguments": null, + "transaction": { + "type": "0x02", + "from": "0xf39fd6e51aad88f6f4ce6ab8827279cfffb92266", + "gas": "0x1387ed", + "data": "0x6110d661003a600b82828239805160001a60731461002d57634e487b7160e01b600052600060045260246000fd5b30600052607381538281f3fe73000000000000000000000000000000000000000030146080604052600436106101625760003560e01c8063a5eb31ee116100cd578063d1ffb56111610086578063d1ffb561146103fb578063d442584f1461042b578063e004139614610454578063f1142fb314610474578063f647f8fb14610487578063f83b670f146104b257600080fd5b8063a5eb31ee14610344578063a8d8f00f1461036b578063b5cdf92414610396578063b63711df146103a9578063be8b3430146103bc578063c29616bd146103cf57600080fd5b80635ef849301161011f5780635ef8493014610241578063913c97b41461026b57806397e6175c1461029f57806399dd9bd7146102cb5780639ae4c3d1146102ec5780639cee499e1461031857600080fd5b8063042aa0841461016757806305d3bb74146101985780631a7431ef146101c0578063235266d2146101e357806348137709146101f65780634d66a2ae1461021b575b600080fd5b61017a610175366004610ec0565b6104de565b6040516001600160d01b031990911681526020015b60405180910390f35b6101ab6101a6366004610ec0565b610540565b60405163ffffffff909116815260200161018f565b6101d36101ce366004610f05565b61059d565b604051901515815260200161018f565b6101d36101f1366004610f4c565b610652565b610209610204366004610ec0565b6106b5565b60405160ff909116815260200161018f565b61022e610229366004610fa6565b610711565b60405161ffff909116815260200161018f565b61025461024f366004610ec0565b61071e565b60405165ffffffffffff909116815260200161018f565b61027e610279366004610ec0565b610772565b6040516fffffffffffffffffffffffffffffffff909116815260200161018f565b6102b26102ad366004610ec0565b6107d0565b6040516001600160a01b0319909116815260200161018f565b6102de6102d9366004610ec0565b61082e565b60405190815260200161018f565b6102ff6102fa366004610ec0565b61088c565b60405167ffffffffffffffff909116815260200161018f565b61032b610326366004610ec0565b6108e9565b6040516001600160d81b0319909116815260200161018f565b610357610352366004610ec0565b610946565b60405162ffffff909116815260200161018f565b61037e610379366004610ec0565b6109a3565b60405166ffffffffffffff909116815260200161018f565b6102de6103a4366004610ec0565b610a00565b6102ff6103b7366004610ec0565b610a55565b61022e6103ca366004610ec0565b610aa9565b6103e26103dd366004610ec0565b610b06565b6040516001600160c81b0319909116815260200161018f565b61040e610409366004610ec0565b610b5a565b6040516bffffffffffffffffffffffff909116815260200161018f565b61043e610439366004610ec0565b610bae565b60405164ffffffffff909116815260200161018f565b610467610462366004610fe3565b610c02565b60405161018f9190611031565b6102b2610482366004610ec0565b610d0f565b61049a610495366004610ec0565b610d64565b6040516001600160a01b03909116815260200161018f565b6104c56104c0366004610ec0565b610dc9565b6040516001600160f81b0319909116815260200161018f565b60006104eb82600661107f565b835110156105375760405162461bcd60e51b8152602060048201526014602482015273746f4279746573365f6f75744f66426f756e647360601b60448201526064015b60405180910390fd5b50016006015190565b600061054d82600461107f565b835110156105945760405162461bcd60e51b8152602060048201526014602482015273746f55696e7433325f6f75744f66426f756e647360601b604482015260640161052e565b50016004015190565b600080600190508354600260018083161561010002038216048451808214600181146105cc5760009450610644565b821561064457602083106001811461062957600189600052602060002060208a018581015b600284828410010361062057815183541461060f5760009950600093505b6001830192506020820191506105f1565b50505050610642565b6101008086040294506020880151851461064257600095505b505b509293505050505b92915050565b81518151600091600191811480831461066e57600092506106ab565b600160208701838101602088015b60028483851001036106a657805183511461069a5760009650600093505b6020928301920161067c565b505050505b5090949350505050565b60006106c282600161107f565b835110156107085760405162461bcd60e51b8152602060048201526013602482015272746f55696e74385f6f75744f66426f756e647360681b604482015260640161052e565b50016001015190565b600061064c826000610aa9565b600061072b82600661107f565b835110156105375760405162461bcd60e51b8152602060048201526014602482015273746f55696e7434385f6f75744f66426f756e647360601b604482015260640161052e565b600061077f82601061107f565b835110156107c75760405162461bcd60e51b8152602060048201526015602482015274746f55696e743132385f6f75744f66426f756e647360581b604482015260640161052e565b50016010015190565b60006107dd82600c61107f565b835110156108255760405162461bcd60e51b8152602060048201526015602482015274746f427974657331325f6f75744f66426f756e647360581b604482015260640161052e565b5001600c015190565b600061083b82602061107f565b835110156108835760405162461bcd60e51b8152602060048201526015602482015274746f427974657333325f6f75744f66426f756e647360581b604482015260640161052e565b50016020015190565b600061089982600861107f565b835110156108e05760405162461bcd60e51b8152602060048201526014602482015273746f55696e7436345f6f75744f66426f756e647360601b604482015260640161052e565b50016008015190565b60006108f682600561107f565b8351101561093d5760405162461bcd60e51b8152602060048201526014602482015273746f4279746573355f6f75744f66426f756e647360601b604482015260640161052e565b50016005015190565b600061095382600361107f565b8351101561099a5760405162461bcd60e51b8152602060048201526014602482015273746f55696e7432345f6f75744f66426f756e647360601b604482015260640161052e565b50016003015190565b60006109b082600761107f565b835110156109f75760405162461bcd60e51b8152602060048201526014602482015273746f55696e7435365f6f75744f66426f756e647360601b604482015260640161052e565b50016007015190565b6000610a0d82602061107f565b835110156108835760405162461bcd60e51b8152602060048201526015602482015274746f55696e743235365f6f75744f66426f756e647360581b604482015260640161052e565b6000610a6282600861107f565b835110156108e05760405162461bcd60e51b8152602060048201526014602482015273746f4279746573385f6f75744f66426f756e647360601b604482015260640161052e565b6000610ab682600261107f565b83511015610afd5760405162461bcd60e51b8152602060048201526014602482015273746f55696e7431365f6f75744f66426f756e647360601b604482015260640161052e565b50016002015190565b6000610b1382600761107f565b835110156109f75760405162461bcd60e51b8152602060048201526014602482015273746f4279746573375f6f75744f66426f756e647360601b604482015260640161052e565b6000610b6782600c61107f565b835110156108255760405162461bcd60e51b8152602060048201526014602482015273746f55696e7439365f6f75744f66426f756e647360601b604482015260640161052e565b6000610bbb82600561107f565b8351101561093d5760405162461bcd60e51b8152602060048201526014602482015273746f55696e7434305f6f75744f66426f756e647360601b604482015260640161052e565b606081610c1081601f61107f565b1015610c4f5760405162461bcd60e51b815260206004820152600e60248201526d736c6963655f6f766572666c6f7760901b604482015260640161052e565b610c59828461107f565b84511015610c9d5760405162461bcd60e51b8152602060048201526011602482015270736c6963655f6f75744f66426f756e647360781b604482015260640161052e565b606082158015610cbc5760405191506000825260208201604052610d06565b6040519150601f8416801560200281840101858101878315602002848b0101015b81831015610cf5578051835260209283019201610cdd565b5050858452601f01601f1916604052505b50949350505050565b6000610d1c82601061107f565b835110156107c75760405162461bcd60e51b8152602060048201526015602482015274746f427974657331365f6f75744f66426f756e647360581b604482015260640161052e565b6000610d7182601461107f565b83511015610db95760405162461bcd60e51b8152602060048201526015602482015274746f416464726573735f6f75744f66426f756e647360581b604482015260640161052e565b500160200151600160601b900490565b6000610dd682600161107f565b835110156107085760405162461bcd60e51b8152602060048201526014602482015273746f4279746573315f6f75744f66426f756e647360601b604482015260640161052e565b634e487b7160e01b600052604160045260246000fd5b600082601f830112610e4457600080fd5b813567ffffffffffffffff80821115610e5f57610e5f610e1d565b604051601f8301601f19908116603f01168101908282118183101715610e8757610e87610e1d565b81604052838152866020858801011115610ea057600080fd5b836020870160208301376000602085830101528094505050505092915050565b60008060408385031215610ed357600080fd5b823567ffffffffffffffff811115610eea57600080fd5b610ef685828601610e33565b95602094909401359450505050565b60008060408385031215610f1857600080fd5b82359150602083013567ffffffffffffffff811115610f3657600080fd5b610f4285828601610e33565b9150509250929050565b60008060408385031215610f5f57600080fd5b823567ffffffffffffffff80821115610f7757600080fd5b610f8386838701610e33565b93506020850135915080821115610f9957600080fd5b50610f4285828601610e33565b600060208284031215610fb857600080fd5b813567ffffffffffffffff811115610fcf57600080fd5b610fdb84828501610e33565b949350505050565b600080600060608486031215610ff857600080fd5b833567ffffffffffffffff81111561100f57600080fd5b61101b86828701610e33565b9660208601359650604090950135949350505050565b600060208083528351808285015260005b8181101561105e57858101830151858201604001528201611042565b506000604082860101526040601f19601f8301168501019250505092915050565b8082018082111561064c57634e487b7160e01b600052601160045260246000fdfea26469706673582212208ffe93db15f03a6fd0c59ab94e8e6a84e4561b6982e8824dafaf837546cfb2c764736f6c63430008140033", + "nonce": "0x5", + "accessList": [] + }, + "additionalContracts": [], + "isFixedGasLimit": false + }, + { + "hash": "0xd7c1ceebc6c4619f3a5018e5f2b1443b292b9154d5c05f53292226d0ff4156a0", + "transactionType": "CREATE", + "contractName": "MultiSendCallOnly", + "contractAddress": "0x0165878A594ca255338adfa4d48449f69242Eb8F", + "function": null, + "arguments": null, + "transaction": { + "type": "0x02", + "from": "0xf39fd6e51aad88f6f4ce6ab8827279cfffb92266", + "gas": "0x2e5c4", + "value": "0x0", + "data": "0x608060405234801561001057600080fd5b506101ae806100206000396000f3fe60806040526004361061001e5760003560e01c80638d80ff0a14610023575b600080fd5b6100366100313660046100c7565b610038565b005b805160205b818110156100ac578083015160f81c6001820184015160601c601583018501516035840186015160558501870160008560008114610082576001811461001e5761008e565b6000808585888a5af191505b508061009957600080fd5b505080605501850194505050505061003d565b505050565b634e487b7160e01b600052604160045260246000fd5b6000602082840312156100d957600080fd5b813567ffffffffffffffff808211156100f157600080fd5b818401915084601f83011261010557600080fd5b813581811115610117576101176100b1565b604051601f8201601f19908116603f0116810190838211818310171561013f5761013f6100b1565b8160405282815287602084870101111561015857600080fd5b82602086016020830137600092810160200192909252509594505050505056fea2646970667358221220ad06ffe6d9a3c63ecf1a3aceb88077e5714c5ace8cfc89d2cea6ce600b35072364736f6c63430008140033", + "nonce": "0x6", + "accessList": [] + }, + "additionalContracts": [], + "isFixedGasLimit": false + }, + { + "hash": "0x2c42e490fdb9acfcfa9f013e739318ffbe363dcb166d82c2fef98d2c14903725", + "transactionType": "CREATE", + "contractName": "BasicCellRenderer", + "contractAddress": "0xa513E6E4b8f2a923D98304ec87F64353C4D5C853", + "function": null, + "arguments": null, + "transaction": { + "type": "0x02", + "from": "0xf39fd6e51aad88f6f4ce6ab8827279cfffb92266", + "gas": "0x3180bd", + "value": "0x0", + "data": "0x608060405234801561001057600080fd5b50612c25806100206000396000f3fe608060405234801561001057600080fd5b50600436106100365760003560e01c806306d4cd8b1461003b57806328de0f2f14610064575b600080fd5b61004e610049366004610322565b610077565b60405161005b919061038b565b60405180910390f35b61004e610072366004610404565b6100f1565b60606000610086600f846104fc565b90506000610095600f8361051e565b61009f9085610535565b905060006100ae826041610548565b60f81b9050806100c76100c2856001610548565b6101b6565b6040516020016100d8929190610577565b6040516020818303038152906040529350505050919050565b606060006100fe86610077565b905083838261018388735fc8d32690cc91d4c39d9d3abcbd16989f87570763b5cdf924909160006040518363ffffffff1660e01b81526004016101429291906105a8565b602060405180830381865af415801561015f573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906100c291906105ca565b87878660405160200161019c97969594939291906105f2565b604051602081830303815290604052915050949350505050565b606060006101c383610249565b600101905060008167ffffffffffffffff8111156101e3576101e36103a5565b6040519080825280601f01601f19166020018201604052801561020d576020820181803683370190505b5090508181016020015b600019016f181899199a1a9b1b9c1cb0b131b232b360811b600a86061a8153600a850494508461021757509392505050565b60008072184f03e93ff9f4daa797ed6e38ed64bf6a1f0160401b83106102885772184f03e93ff9f4daa797ed6e38ed64bf6a1f0160401b830492506040015b6d04ee2d6d415b85acef810000000083106102b4576d04ee2d6d415b85acef8100000000830492506020015b662386f26fc1000083106102d257662386f26fc10000830492506010015b6305f5e10083106102ea576305f5e100830492506008015b61271083106102fe57612710830492506004015b60648310610310576064830492506002015b600a831061031c576001015b92915050565b60006020828403121561033457600080fd5b5035919050565b60005b8381101561035657818101518382015260200161033e565b50506000910152565b6000815180845261037781602086016020860161033b565b601f01601f19169290920160200192915050565b60208152600061039e602083018461035f565b9392505050565b634e487b7160e01b600052604160045260246000fd5b60008083601f8401126103cd57600080fd5b50813567ffffffffffffffff8111156103e557600080fd5b6020830191508360208285010111156103fd57600080fd5b9250929050565b6000806000806060858703121561041a57600080fd5b84359350602085013567ffffffffffffffff8082111561043957600080fd5b818701915087601f83011261044d57600080fd5b81358181111561045f5761045f6103a5565b604051601f8201601f19908116603f01168101908382118183101715610487576104876103a5565b816040528281528a60208487010111156104a057600080fd5b8260208601602083013760006020848301015280975050505060408701359150808211156104cd57600080fd5b506104da878288016103bb565b95989497509550505050565b634e487b7160e01b600052601160045260246000fd5b60008261051957634e487b7160e01b600052601260045260246000fd5b500490565b808202811582820484141761031c5761031c6104e6565b8181038181111561031c5761031c6104e6565b8082018082111561031c5761031c6104e6565b6000815161056d81856020860161033b565b9290920192915050565b6001600160f81b031983168152815160009061059a81600185016020870161033b565b919091016001019392505050565b6040815260006105bb604083018561035f565b90508260208301529392505050565b6000602082840312156105dc57600080fd5b5051919050565b81818437506000910190815290565b7f646174613a6170706c69636174696f6e2f6a736f6e2c7b22646573637269707481527f696f6e223a2022537461726b7368656574222c20226e616d65223a202200000060208201528688603d8301376000878201602160f81b603d820152875161066481603e840160208c0161033b565b7f222c22696d616765223a2022646174613a696d6167652f7376672b786d6c2c25603e92909101918201527f334373766725323076696577426f782533442532373025323030253230383925605e8201527f3230353525323725323066696c6c2533442532376e6f6e65253237253230786d607e8201527f6c6e73253344253237687474702533412f2f7777772e77332e6f72672f323030609e8201527f302f737667253237253345253343646566732533452533437374796c6525334560be8201527f253430666f6e742d66616365253230253742666f6e742d66616d696c7925334160de8201527f253230253237507265737325323053746172742532303250253237253342737260fe8201527f6325334125323075726c25323825323764617461253341666f6e742f776f666661011e8201527f32253342626173653634253243643039474d6741424141414141424c3841413861013e8201527f41414141415235774141424b674141454141414141414141414141414141414161015e8201527f4141414141414141414141414150305a4756453063476a41624d42794358675a61017e8201527f6741494e794551674b3846545361517544524141424e67496b41344e4d42434161019e8201527f46687a5148684649623644566c42306a314f4d4253336f4f4953744562732f2f6101be8201527f2f6c4a776356727a47634f30676f684c45484d6369694443434e57695a6761306101de8201527f79625345555954514f6a4b427038546c737a7344526438716174586c333058746101fe8201527f30645a47467952305668444b776c62746c25324272734643773945316e64655961021e8201527f4a74732f37527762305673784d71576c636a6a775445537a2f5568752f77337361023e8201527f33746b6f496d70343464515168576f456d54337579526d70746f7553446b7a5761025e8201527f454138762f3932364a4b7539486f696e6e3673376674336d4965476c7737547161027e8201527f6437456f326a46517849766a5642494a70563269614f62547a68575932314e7461029e8201527f476772687434704d4b3457556a34624c7967542f51253242514c7879253242336102be8201527f6c482f362f6b6275496444497239446a724a496a6f394a7336524d58253242456102de8201527f6b37424f545a6b6d70397a347455524652566656307148504448375a7462364a6102fe8201527f616f6130684c335975616232473373667a72365776394536793569767025324261031e8201527f7135564c74426a514478476f5345304150313762336466376c61726a6525324261033e8201527f73637a6b7241744a334b6657304a342532424b323365744b4b556a383554616f61035e8201527f57473453346158436c427743413268676141652532423658396f696e32304e6261037e8201527f554a7264466767517049686d5247494d30372f7025324277375a7058316c473161039e8201527f6a6a51787073435141423438714445415042346950312f6a39592f4261686a356103be8201527f5943414e302f78714157496852616a6c6e694e654f50396e78433466667932556103de8201527f694843304e47386b686f6f567a6f7459334445417a417a41356b473735337a6a6103fe8201527f4853354d6e6d586b69496a6d54554d36556d4d3025324256346976752f48377861041e8201527f6a364666322f6b343472787a6449324141676742492f4c48416b394a7a35554d61043e8201527f496f4c7755344146455435725a464f33444d616655633061777351434879497061045e8201527f557a546b30784a474a454f6a4e6871436b474570496153474f6a714e466d2f5761047e8201527f4e434e3569636b71434d6e414165564c4d4c655867356971386b365752585a5261049e8201527f326c337042393831427a73475a743225324256696c4342723954494a674b67786104be8201527f365542514446253242566a4b44714e7741414948386a6949664d6e75384b68666104de8201527f584b486f4e3348634134477245786842324155442f795a554d423857547579496104fe8201527f413444634f4b656434397939504249616e426967734d454e38556b30766c547661051e8201527f304a58334e394d795a75544d763573655357413525324238556538504465547261053e8201527f645467474973566d4e33635856586a6463795275633434385866664176506e7361055e8201527f3575324d4531722532426a4731703137767a3849704f416e483444427367793361057e8201527f512f54376b33646d2f3846334232377355694877464631414f6c683055646e4961059e8201527f4471494e5164506355393145786f2f346252696a6a5169704e4e307a4c646c7a6105be8201527f504438496f547449734c38717162746f4f5149514a5a567849705931315073536105de8201527f55533231397a4c585066642f507667765751346372464d2532425769755671706105fe8201527f645a6f4e6475645872632f4745324d4a36656e3575635746694763375274364f61061e8201527f487676354d674c2532427a44733578444277696141315433554877326b63594361063e8201527f312f55666453316645316d37763742346537653350574848786533594f32483561065e8201527f25324241504f5a7965503025324251506553425468793078713965363241486a61067e8201527f6141556842432f364144484c6f476f4f657636412532426867487369317a613861069e8201527f71355a4e4d716a596c575a4d713867354248445574495370574a73526f52544a6106be8201527f56613049305a3957546b5371564b73507a3464586a7648746449684c6e7670746106de8201527f554c4330753542567579414d544b4a513930594b5267546e5769476b6d7153456106fe8201527f714b6d7256685259674b6b335443686255573671456f45637665577a6859535461071e8201527f4c32484e706735452f6d7151393956564467763352475435586d33637a68754c61073e8201527f3972685864316132372f736c5130686959366a643739614f5a43746a6f52687261075e8201527f623136575676514b725734477a786a7869723238494d697a2f7155447973495761077e8201527f7037516a667765347a556437614a735651575179524c554b484b42577938577661079e8201527f45565333584d53353656337757644f442532424638757639645477496d4b722f6107be8201527f5064626d5763775176456641616a7975566a70784e32704f56635769336c38776107de8201527f454c2f6d395070646f55494536253242504b5838315041546d67654f304231736107fe8201527f47454825324261707a353466646d534a7a333741686635366a4c7739756e504561081e8201527f35644d4b3025324237544639563843435466523979664e7355493474557a464661083e8201527f42326e536e384b4f626a64446964554c7034494a6873777878595172595a643661085e8201527f4e76436e55394d445825324252654c6e4d546d6c315a453972306b5077334e3261087e8201527f6752253242736a4573596d4953706b356c31497333594e614a4b6f6e7a65703761089e8201527f56637354316e556b62347048774b5a41796b614b6f43504630506f6d456876496108be8201527f5758656e6f5a767836774f4b313070316c3274546858793850316555776473766108de8201527f53715157766f424d7473674851554a614774494273756861776450545a5378596108fe8201527f707257757734647a7231564755744449465871726f4d4d69597346783857695461091e8201527f336463574b6f376d50554c79715657413972305974524a4c626957766a6e4c2561093e8201527f324272633452646767624e516c514141613264306d616236364d48447074314361095e8201527f6477626b51436253375053445a4d7a3746724f51713165636153304a6c74644161097e8201527f6c44527941587173364130586247707748676b70367572557757416272464d3361099e8201527f75794d764e4b6c344d6c435548537950416d3931776144454a3559595148754a6109be8201527f4d32304b575251737637486b61334770686c533258444b714f4b4245554753316109de8201527f65306b63316f323449494166486c4449794278584a4a656767423369386174566109fe8201527f67434f3064444f5a484a57596a564c416a6a397137765673456e72684b374568610a1e8201527f4c75427a42586d4d674554634531636d61436976504b6f4a766670466c794935610a3e8201527f4d70584234454325324245672f596d303454787843354e6c73596b74646f5951610a5e8201527f55656c38624673456c3748345a36734377622f38626b347458574658504b6a71610a7e8201527f5462526e64336e4c5770394f784941706c664b586747684e6c72443462354a4c610a9e8201527f5a367055753441726756614d366561357844574244476f7a707a4641376e6747610abe8201527f74596334486141775269475576637653653652414177335a576b564f4667764b610ade8201527f46364955696c4d49394964715155345134585264484866736666517770313955610afe8201527f434a49306a5773725433356f5578303678507268473271364d4533554f306c63610b1e8201527f635a557354454351784a44527854444b6c334c4948722f6162546f73686c6466610b3e8201527f51786a364f57745273466e6966444373473674336b426f344e6d424a6d615556610b5e8201527f54636c794951414a4c6a6e723042365a3859464d6e396b397967703752727848610b7e8201527f36766877624a4e41654b4d554436353974386746514a4d5377652f434f624850610b9e8201527f467671484746554e5266253242737245663354584b42725a76676b6369396972610bbe8201527f426d63442f7458616754474358634e68432532424f3539754c706e6673796f71610bde8201527f4c53313238374552776d38666165564f6d3857634437386c5a36594232793938610bfe8201527f5a4c6c4d3972557264324c514e6c324956643454727376675139363079377573610c1e8201527f5965306854506170576a71726c2532425837784665424e54253242315a644a4a610c3e8201527f572532424678745737584e7774634e7a7761672532425256656a6d4a6839656d610c5e8201527f6c495a4b69694e63694b3849554f4d33556a4a376342554e5847505853326c68610c7e8201527f253242687770676f4836567348524f63764569723372585970344c7769435a77610c9e8201527f3176486c43623552314d68623564536e4f326d6e6f475a6f5846315765574757610cbe8201527f6d7a694a314a555534715072306e694a536c4e424331636b4b6d4a6657625877610cde8201527f5577757449547a456d6a776770776142753464525066746a2f4e384143526e64610cfe8201527f616b2f4641674b674c37305058577839767a6b59322532426d34355473496b4c610d1e8201527f3037616f70444e6f676830535262535a534f397a744657516a376e574c676275610d3e8201527f364325324254374b6a44715a3667456e5277674d78306b4c5a77797962514f76610d5e8201527f514130773054782f354a42722f63595a6453574f546a774446364e6f586b796a610d7e8201527f33566a484e4751494e76426a5a734a4a3377466141516d6f5a575a5970416961610d9e8201527f574f466e6e686455524176576b557a77693062677a5a4158796f445545714863610dbe8201527f57307069454c574f777168773365765478444957724e32495371525151454c41610dde8201527f4d32365334486c723548552f48784a43436844424a6b756b6341573856415430610dfe8201527f6770545a544b4e48677a444f7234314751656a4f34677a416e6b577077464752610e1e8201527f43334c625231787a4b434875365635694674674c704f384b51596d5965467868610e3e8201527f4c32643838736469506a2f76306b427a636c51637954735766324d6445394944610e5e8201527f386d5858576a72434b253242354532756e336e6976656973526e726971317548610e7e8201527f594d6a6a69694945304b6466674d6f3163476d6b557254624f30356732737633610e9e8201527f477673525971762f61457736375472644f705435567a4641364131417939634b610ebe8201527f6f44667762544a64445750524e57517354796a6d3772486249734b466b6f4f2f610ede8201527f5a4c4376735966785973337768534338614c49344b765677373773336e347a48610efe8201527f67697061634a6e435362463945727a53357069386343577655597a4f5064327a610f1e8201527f684a2f4750437a53684f453378596c634f3350796164586a54334f6b68706841610f3e8201527f58465853766865544e5355525446565641486f4a6d7949726b6a454b6f517746610f5e8201527f4730303554334158643935764e30446d336d427332786746546c253242513572610f7e8201527f73416a6e744768707a6f62643642374e7a52664e56653130446f4e5639343753610f9e8201527f59646f635252624776636d785456786f61367a717756376d416e773544314745610fbe8201527f5474327a48382532425476514256356e37672f32615768743979794e594c3974610fde8201527f4f42744167384846435945316d4e775432454232467538544968543776565241610ffe8201527f3461587a6e6b3670545a4e6779696f73747749364b654655374c696c7041253261101e8201527f42334234474a794277574d327062466a4876734a3747754f6f616b6a6d46746a61103e8201527f59344c6254396c323239253242453646374c4475577a744c6e333749786b386a61105e8201527f356c42564b33774c7369362f416641756f6a34396c4d6b5653545045396b704761107e8201527f64304c724555534a4941413070596c4178414d642f4e4f46776f4a446458466961109e8201527f307a4f5744422f54464a705666575642574f516274724a556230636c663369256110be8201527f3242575072446f596c65545674564f45306d36793564487444725551776f414c6110de8201527f7455523365585364444d4e785866656a594674764c626c726c4a7777484b2f456110fe8201527f6957504a616b32574b35386e684e6f4c6a615a55475841756f32656f5777464561111e8201527f66612f445334496958717246714779633348726939785132693243352f73357661113e8201527f7a424d30793777334d4473774d3759325247427172464d6778374f696325324261115e8201527f30497a736d5678617a5473305263666a324f3334532f525639503269486f427561117e8201527f6c4b49594244665a46654c53356439725379664a64536c67683268644d72324f61119e8201527f5552334b6e6c506e4f41785477314a384c4d325a776e4671765a745a4a6c78786111be8201527f343873776243743272316b664875443756624831326159383849437456734b786111de8201527f4b742f31726b616c42414d74782f6f6f6d43445059626b556f4c6344624b436a6111fe8201527f7675713953544467746a584744715735564b36686347654f46697a6a3643714c61121e8201527f4f49716b57783477733245504d444e7378253242613661533230384f39784c3061123e8201527f526146586f394241645530706e452532424c695359334b536f4a41525978646e61125e8201527f7a69545a4d706961442f3438496969393834446151357976656378414673735761127e8201527f792f686274696d63253242704c386b35796f70496d4a627948712f6138797a6c61129e8201527f6c37726f4f7a586d786d4163337459585363546b65734d6344324939315a36336112be8201527f6549312f394a627755716b36737863394b52677277574d414e6543314e6e39756112de8201527f4779775473706d5538712532426c5a6d43714d674153363662674841476a514b6112fe8201527f73754a334451416a5235346d356a4c7a5a616e546c62646530253242726e663461131e8201527f385a574138546c32673277414779427748516e3552322532424e6a726542677861133e8201527f626c734e46627554776d6862414a48737a2f72416f61764c4f34317874767a5961135e8201527f4768336e4c4a426b41506a7578424a445248333048426575385567436978464e61137e8201527f437951322f4b253242385157372f6530253242664f2532423436524e5730657961139e8201527f4c726f39446a5467704a4e4d3547385179306c54644f756d73773066715045696113be8201527f393646702532424830634d774e6f376a787a596d6e4e664d5a6d64506c7932706113de8201527f6f7132575065476d67507136474c78504e34536c4b486e7870624f69754c58516113fe8201527f75583155715031676a6f38426136536c55314f416d5267707a7531735444584a61141e8201527f50754d3338546f387130344c324e777970653837327777556741675a6c70386461143e8201527f6b5166397a38544d43624d6b596b3758484375333564375a5a41656f346b5a4b61145e8201527f68784953386945354c546a334c4f6976485a7268394a3870337a4c5a436a776361147e8201527f6970354452694b6e576e49664c33386b4a684d7452776a67553525324256726d61149e8201527f714b6c6739307a376a64732f4238444b646b464c76483353253242376f4838616114be8201527f6c445a6c626734533155583574434d445342324f364b756c7a41344b763067376114de8201527f314251643054464b7733685358696e62374e6c304258725873514e6376436b386114fe8201527f6d6f394f786965783559627a78564e2f6b3738336f48545a495777393079495a61151e8201527f777672697164475473586e54384965705437597946434f4a6741395a3042794961153e8201527f455956735478522f6b73616b324268376f4b767034766e695530364d57317a4261155e8201527f4672746568647a306b6b587951786a426d7965645636644d596545386146787461157e8201527f6575777355466136466c6c54446c716430707a525a77473663467266574d627061159e8201527f384738587a6a66624d253242354658657076356f457273696c363458783663376115be8201527f5841576275696d3666387347494d58666f334a6971476b703333376854536a676115de8201527f65636862364f42472f327a31376a6f6d4469476d253242476c623146553069656115fe8201527f6e7552796977654c576767447a6d4655765545556a5a6f377356544877684f4661161e8201527f504d6b4e737146423977796d6b45307639666d7477453854377135384e594f3761163e8201527f787534623833766e46766c35755378446c472532426b4f51675249644f346a6761165e8201527f7a786a53486a4b4c7332742f6c684f647771766131415744437072763344345361167e8201527f34523741625934544362664b4637744265363554343551347a7a49714433316161169e8201527f79797557716a692532424636585337535439483943314f342f694b366b4775766116be8201527f6b512f664e3537487837456533373435622f76766e2f62482f58253242392f256116de8201527f32426762656d684f416d49705576755157757344764b517578394a44564e734b6116fe8201527f673651636d6b73515341445530346347524c523768466f5a326337785545664761171e8201527f253242776b755459474d764c6a422f6550634936416847686e5735717a45416961173e8201527f4a586377564545775869654e70536c317a6a457253253242435325324248634c61175e8201527f6f52506d7661324d6767412f69794c67536f544a555767733442794149514f3061177e8201527f4f6f705a487656627a6844494c65557155677a7a48492f667950474e7879777361179e8201527f6f796c6865534639577662795363336b4544716b32415636436c4364635535536117be8201527f6e6c4e6e4963394b794d63384c79622532423867484f4a795173466c4c6250526117de8201527f796d6d374a42743349545a544162314732444252496b514b51705451396939626117fe8201527f3665435353387a4d366161525364544b5657524d336663454a4c644b61746e7361181e8201527f724959774e4a55253242733048364461757832775a35686733706c653042474861183e8201527f756b316b4543734859446461496d4b7025324233463542317859763763486b7161185e8201527f644475306a4b645273657a3531376d63563641685148346931484e3173766c6a61187e8201527f5248366845454672682532426e72726d47316e33307a4d346749776d694d774561189e8201527f624b6842545564423141486f582532424b6741517a4f48543946494f71436b526118be8201527f4e4e623273397170496943534f753167576868497343564a73765771457175356118de8201527f47624a514b4e6a61427465394c4f69676368414a7665475773394332323033766118fe8201527f6f6e476c6b77725251323464646732796345646157554456734441785548734961191e8201527f77773665615234464665336d4a416b66426d5a6452395264774a485a6d47645261193e8201527f7950436a706a627a31712f584a34534949446b66384b4b6e6e32456c4b6d794c61195e8201527f69573442513836733151554b2f76426867524e776548766c5968687a7238706361197e8201527f67704b4b6d6f61576a7036426b594f48446c7835734b5647336365474539657661199e8201527f506e773563646667454242676f554946536238587632504553314772446a78456119be8201527f69524b6b697846716a54704d6d544b6b693148726a7a354368517155717845716119de8201527f544c6c4b6c53715571314772547231476a527130717846717a62744f6e5347656119fe8201527f3668374a6d627a4968355a6544696c315a58536a7430774375616b336c6e476f611a1e8201527f5655506f53734e663337394b326a6274716d44674d69485a42665a6c68324839611a3e8201527f75773738495469314a466a585653662f4336634f55667a346f30644178305447611a5e8201527f777448446863666a3443516d49694531444d5a42546b6c4e5a557065566f614f611a7e8201527f6e717633733234314e50503965766574594768435a50576a4979747332706173611a9e8201527f436a25324270556a54596c336b615574374f744b4a6136355850396d356e6367611abe8201527f364e686a685a587032762532426d57724341545a754a303368316b6a55756976611ade8201527f5067596e6a6e35744b4a4f6b326e6362703251414559585a69304b496d50356b611afe8201527f744961466e366b5a397743253237253239253230666f726d6174253238253237611b1e8201527f776f666632253237253239253342666f6e742d7765696768742533412532306e611b3e8201527f6f726d616c253342666f6e742d7374796c652533412532306e6f726d616c2533611b5e8201527f42666f6e742d646973706c617925334125323073776170253342253744746578611b7e8201527f74253230253742666f6e742d66616d696c792533412532302532375072657373611b9e8201527f2532305374617274253230325025323725334266696c6c253341253230776869611bbe8201527f74652537442e76616c7565253230253742666f6e742d73697a65253341253230611bde8201527f313070782533422537442e6e616d65253230253742666f6e742d73697a652533611bfe8201527f412532303470782533422537442533432f7374796c652533452533432f646566611c1e8201527f7325334525334372656374253230776964746825334425323738392532372532611c3e8201527f30686569676874253344253237353525323725323066696c6c25334425323762611c5e8201527f6c61636b2532372532302f253345253343726563742532307825334425323735611c7e8201527f2e3525323725323079253344253237352e352532372532307769647468253344611c9e8201527f2532373738253237253230686569676874253344253237343425323725323066611cbe8201527f696c6c2533442532372532333030303046462532372532302f25334525334374611cde8201527f657874253230746578742d616e63686f722533442532376d6964646c65253237611cfe8201527f2532307825334425323734342e35253237253230792533442532373333253237611d1e8201527f253230636c61737325334425323776616c756525323725334500000000000000611d3e820152612ba5612b9e6129f5611d5784018a61055b565b7f2533432f746578742533452533437265637425323078253344253237352e352581527f323725323079253344253237352e35253237253230776964746825334425323760208201527f373825323725323068656967687425334425323734342532372532307374726f60408201527f6b652533442532372532334646344630412532372532307374726f6b652d776960608201527f647468253344253237332532372532302f25334525334372656374253230782560808201527f334425323733302532372532307925334425323734352e35253237253230776960a08201527f647468253344253237353825323725323068656967687425334425323738253260c08201527f3725323066696c6c2533442532372532334646344630412532372532302f253360e08201527f4525334374657874253230746578742d616e63686f72253344253237656e64256101008201527f32372532307825334425323738372532372532307925334425323735322532376101208201527f253230636c6173732533442532376e616d6525323725334500000000000000006101408201526101580190565b86886105e3565b602160f81b81529050612bbb600182018561055b565b7f2533432f746578742533452533432f737667253345227d00000000000000000081526017019a995050505050505050505056fea26469706673582212204ebb5504852a340c7a67a89e9af874a99996f2d1a3a978c1c25c376c60d5de3c64736f6c63430008140033", + "nonce": "0x7", + "accessList": [] + }, + "additionalContracts": [], + "isFixedGasLimit": false + }, + { + "hash": "0xdd1bc2b2c08b0815b4408aeb7ce591709183eab9796e3d14f10aa521e76b8540", + "transactionType": "CREATE", + "contractName": null, + "contractAddress": "0x2279B7A0a67DB372996a5FaB50D91eAA73d2eBe6", + "function": null, + "arguments": null, + "transaction": { + "type": "0x02", + "from": "0xf39fd6e51aad88f6f4ce6ab8827279cfffb92266", + "gas": "0x42230", + "value": "0x0", + "data": "0x608060405234801561001057600080fd5b506102cf806100206000396000f3fe608060405234801561001057600080fd5b506004361061004c5760003560e01c80630194db8e14610051578063072bdcc214610076578063a391c15b14610089578063b67d77c51461009c575b600080fd5b61006461005f366004610160565b6100af565b60405190815260200160405180910390f35b610064610084366004610160565b6100ef565b61006461009736600461021e565b610129565b6100646100aa36600461021e565b61013e565b600080805b83518110156100e8578381815181106100cf576100cf610240565b60200260200101518201915080806001019150506100b4565b5092915050565b60006001815b83518110156100e85783818151811061011057610110610240565b60200260200101518202915080806001019150506100f5565b60006101358284610256565b90505b92915050565b60006101358284610278565b634e487b7160e01b600052604160045260246000fd5b6000602080838503121561017357600080fd5b823567ffffffffffffffff8082111561018b57600080fd5b818501915085601f83011261019f57600080fd5b8135818111156101b1576101b161014a565b8060051b604051601f19603f830116810181811085821117156101d6576101d661014a565b6040529182528482019250838101850191888311156101f457600080fd5b938501935b82851015610212578435845293850193928501926101f9565b98975050505050505050565b6000806040838503121561023157600080fd5b50508035926020909101359150565b634e487b7160e01b600052603260045260246000fd5b60008261027357634e487b7160e01b600052601260045260246000fd5b500490565b8181038181111561013857634e487b7160e01b600052601160045260246000fdfea264697066735822122030605896aa3092c5c0d163e40b09c7c92189bbd1be4f62579184af38d08031be64736f6c63430008140033", + "nonce": "0x8", + "accessList": [] + }, + "additionalContracts": [], + "isFixedGasLimit": false + }, + { + "hash": "0x7e7100460c91c07f4d90c7c54efe8023561c042b0add9778dd7cd09b20936d74", + "transactionType": "CREATE", + "contractName": "Evmsheet", + "contractAddress": "0x8A791620dd6260079BF849Dc5567aDC3F2FdC318", + "function": null, + "arguments": [ + "0xa513E6E4b8f2a923D98304ec87F64353C4D5C853", + "10000000000000000" + ], + "transaction": { + "type": "0x02", + "from": "0xf39fd6e51aad88f6f4ce6ab8827279cfffb92266", + "gas": "0x34bf99", + "value": "0x0", + "data": "0x608060405234801561001057600080fd5b50604051612ed9380380612ed983398101604081905261002f916100b1565b61003833610061565b600280546001600160a01b0319166001600160a01b0393909316929092179091556001556100eb565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b600080604083850312156100c457600080fd5b82516001600160a01b03811681146100db57600080fd5b6020939093015192949293505050565b612ddf806100fa6000396000f3fe608060405260043610620000a95760003560e01c80638da5cb5b116200006c5780638da5cb5b146200016d578063ab2fa65a146200018d578063ae28505e14620001b4578063c56c4cf114620001d9578063f2fde38b14620001fb578063f52be2a2146200022057600080fd5b806303fb31e814620000ae5780631164c83d14620000d5578063145e414714620000ec5780635787cacb146200012e578063715018a61462000155575b600080fd5b348015620000bb57600080fd5b50620000d3620000cd36600462000778565b62000247565b005b620000d3620000e6366004620007e9565b62000273565b348015620000f957600080fd5b50620001116200010b36600462000864565b620004b2565b6040516001600160a01b0390911681526020015b60405180910390f35b3480156200013b57600080fd5b50620001466200054f565b60405162000125919062000891565b3480156200016257600080fd5b50620000d3620005b3565b3480156200017a57600080fd5b506000546001600160a01b031662000111565b3480156200019a57600080fd5b50620001a5620005cb565b604051620001259190620008e0565b348015620001c157600080fd5b5062000111620001d336600462000930565b620005f7565b348015620001e657600080fd5b5060025462000111906001600160a01b031681565b3480156200020857600080fd5b50620000d36200021a36600462000778565b62000622565b3480156200022d57600080fd5b506200023860015481565b60405190815260200162000125565b62000251620006a1565b600280546001600160a01b0319166001600160a01b0392909216919091179055565b60015434146200029d5760405163723a79e360e11b81523460048201526024015b60405180910390fd5b600060405180602001620002b1906200074d565b6020820181038252601f19601f8201166040525090506000828251602084016000f56002546040516356d3163d60e01b81526001600160a01b0391821660048201529192508216906356d3163d90602401600060405180830381600087803b1580156200031d57600080fd5b505af115801562000332573d6000803e3d6000fd5b505060405163c47f002760e01b81526001600160a01b038416925063c47f0027915062000366908a908a906004016200094a565b600060405180830381600087803b1580156200038157600080fd5b505af115801562000396573d6000803e3d6000fd5b5050604051635c26412360e11b81526001600160a01b038416925063b84c82469150620003ca90889088906004016200094a565b600060405180830381600087803b158015620003e557600080fd5b505af1158015620003fa573d6000803e3d6000fd5b505060405163f2fde38b60e01b81523260048201526001600160a01b038416925063f2fde38b9150602401600060405180830381600087803b1580156200044057600080fd5b505af115801562000455573d6000803e3d6000fd5b5050600380546001810182556000919091527fc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b0180546001600160a01b0319166001600160a01b0394909416939093179092555050505050505050565b600060ff60f81b838360405180602001620004cd906200074d565b6020820181038252601f19601f82011660405250805190602001206040516020016200053094939291906001600160f81b031994909416845260609290921b6bffffffffffffffffffffffff191660018401526015830152603582015260550190565b60408051601f1981840301815291905280516020909101209392505050565b60606003805480602002602001604051908101604052809291908181526020018280548015620005a957602002820191906000526020600020905b81546001600160a01b031681526001909101906020018083116200058a575b5050505050905090565b620005bd620006a1565b620005c96000620006fd565b565b606060405180602001620005df906200074d565b601f1982820381018352601f90910116604052919050565b600381815481106200060857600080fd5b6000918252602090912001546001600160a01b0316905081565b6200062c620006a1565b6001600160a01b038116620006935760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b606482015260840162000294565b6200069e81620006fd565b50565b6000546001600160a01b03163314620005c95760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015260640162000294565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b612430806200097a83390190565b80356001600160a01b03811681146200077357600080fd5b919050565b6000602082840312156200078b57600080fd5b62000796826200075b565b9392505050565b60008083601f840112620007b057600080fd5b50813567ffffffffffffffff811115620007c957600080fd5b602083019150836020828501011115620007e257600080fd5b9250929050565b6000806000806000606086880312156200080257600080fd5b853567ffffffffffffffff808211156200081b57600080fd5b6200082989838a016200079d565b909750955060208801359150808211156200084357600080fd5b5062000852888289016200079d565b96999598509660400135949350505050565b600080604083850312156200087857600080fd5b62000883836200075b565b946020939093013593505050565b6020808252825182820181905260009190848201906040850190845b81811015620008d45783516001600160a01b031683529284019291840191600101620008ad565b50909695505050505050565b600060208083528351808285015260005b818110156200090f57858101830151858201604001528201620008f1565b506000604082860101526040601f19601f8301168501019250505092915050565b6000602082840312156200094357600080fd5b5035919050565b60208152816020820152818360408301376000818301604090810191909152601f909201601f1916010191905056fe60806040523480156200001157600080fd5b50604051806040016040528060078152602001660536865657420360cc1b815250604051806040016040528060048152602001630534854360e41b81525062000069620000636200008f60201b60201c565b62000093565b600162000077838262000188565b50600262000086828262000188565b50505062000254565b3390565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b634e487b7160e01b600052604160045260246000fd5b600181811c908216806200010e57607f821691505b6020821081036200012f57634e487b7160e01b600052602260045260246000fd5b50919050565b601f8211156200018357600081815260208120601f850160051c810160208610156200015e5750805b601f850160051c820191505b818110156200017f578281556001016200016a565b5050505b505050565b81516001600160401b03811115620001a457620001a4620000e3565b620001bc81620001b58454620000f9565b8462000135565b602080601f831160018114620001f45760008415620001db5750858301515b600019600386901b1c1916600185901b1785556200017f565b600085815260208120601f198616915b82811015620002255788860151825594840194600190910190840162000204565b5085821015620002445787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b6121cc80620002646000396000f3fe608060405234801561001057600080fd5b50600436106102275760003560e01c8063715018a611610130578063b85d8b85116100b8578063cf0983981161007c578063cf09839814610512578063cfbe95d814610535578063df4ca20614610556578063e985e9c514610576578063f2fde38b146105a457600080fd5b8063b85d8b85146104a4578063b88d4fde146104ce578063b8c368ec146104e1578063c47f0027146104ec578063c87b56dd146104ff57600080fd5b806395d89b41116100ff57806395d89b4114610439578063a22cb46514610441578063b46ebb1214610454578063b6d658e114610467578063b84c82461461049157600080fd5b8063715018a6146103fa578063768d5029146104025780638ada6b0f146104155780638da5cb5b1461042857600080fd5b80631b06443c116101b35780634f6ccce7116101825780634f6ccce71461038157806356d3163d146103a15780636352211e146103b45780636a0abc74146103c757806370a08231146103e757600080fd5b80631b06443c14610335578063206848f61461034857806323b872dd1461035b57806342842e0e1461036e57600080fd5b8063081812fc116101fa578063081812fc146102a1578063095ea7b3146102e2578063172b9eed146102f757806318160ddd1461030a5780631941fd141461031357600080fd5b806301ffc9a71461022c57806302f3c4c91461025457806306fdde03146102745780630715a24a1461027c575b600080fd5b61023f61023a36600461176a565b6105b7565b60405190151581526020015b60405180910390f35b610267610262366004611861565b610609565b60405161024b9190611951565b610267610638565b6102936fffffffffffffffffffffffffffffffff81565b60405190815260200161024b565b6102ca6102af366004611964565b6005602052600090815260409020546001600160a01b031681565b6040516001600160a01b03909116815260200161024b565b6102f56102f036600461197d565b6106c6565b005b6102676103053660046119a9565b6107ad565b61029360075481565b610326610321366004611964565b610875565b60405161024b939291906119de565b6102ca610343366004611a0e565b61092a565b610326610356366004611964565b6109e3565b6102f5610369366004611a2b565b610ae1565b6102f561037c366004611a2b565b610ca8565b61029361038f366004611964565b60086020526000908152604090205481565b6102f56103af366004611a0e565b610da0565b6102ca6103c2366004611964565b610dca565b6103da6103d53660046119a9565b610e1c565b60405161024b9190611a6c565b6102936103f5366004611a0e565b610e60565b6102f5610ec3565b6102f5610410366004611af9565b610ed7565b6009546102ca906001600160a01b031681565b6000546001600160a01b03166102ca565b610267611035565b6102f561044f366004611b63565b611042565b610267610462366004611964565b6110ae565b61047a610475366004611964565b611258565b60408051921515835260208301919091520161024b565b6102f561049f366004611ba1565b611275565b6104b56104b2366004611964565b90565b6040516001600160e01b0319909116815260200161024b565b6102f56104dc366004611be3565b6112c6565b6102ca600160801b81565b6102f56104fa366004611ba1565b6113ae565b61026761050d366004611964565b6113ff565b61023f610520366004611a0e565b600160801b6001600160a01b03919091161090565b61023f610543366004611861565b516001600160a01b0316600160801b1490565b610569610564366004611964565b6114c9565b60405161024b9190611c16565b61023f610584366004611c4d565b600660209081526000928352604080842090915290825290205460ff1681565b6102f56105b2366004611a0e565b611526565b60006301ffc9a760e01b6001600160e01b0319831614806105e857506380ac58cd60e01b6001600160e01b03198316145b806106035750635b5e139f60e01b6001600160e01b03198316145b92915050565b6060816020015160405160200161062291815260200190565b6040516020818303038152906040529050919050565b6001805461064590611c7b565b80601f016020809104026020016040519081016040528092919081815260200182805461067190611c7b565b80156106be5780601f10610693576101008083540402835291602001916106be565b820191906000526020600020905b8154815290600101906020018083116106a157829003601f168201915b505050505081565b6000818152600360205260409020546001600160a01b03163381148061070f57506001600160a01b038116600090815260066020908152604080832033845290915290205460ff165b6107515760405162461bcd60e51b815260206004820152600e60248201526d1393d517d055551213d49256915160921b60448201526064015b60405180910390fd5b60008281526005602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b606060006107ba83610e1c565b9050606060005b825181101561086d576000806107ef8584815181106107e2576107e2611cb5565b6020026020010151611258565b9150915081156108335783610803826110ae565b61080c90611ccb565b60405160200161081d929190611cef565b6040516020818303038152906040529350610858565b6040516108469085908390602001611cef565b60405160208183030381529060405293505b5050808061086590611d27565b9150506107c1565b509392505050565b600a602052600090815260409020805460018201546002830180546001600160a01b039093169391926108a790611c7b565b80601f01602080910402602001604051908101604052809291908181526020018280546108d390611c7b565b80156109205780601f106108f557610100808354040283529160200191610920565b820191906000526020600020905b81548152906001019060200180831161090357829003601f168201915b5050505050905083565b6000600160801b6001600160a01b03831610156109da576000610955836001600160a01b03166110ae565b604051632d737e4960e21b8152909150735fc8d32690cc91d4c39d9d3abcbd16989f8757079063b5cdf92490610992908490600090600401611d40565b602060405180830381865af41580156109af573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906109d39190611d62565b9392505050565b5090565b919050565b60008181526003602052604081205481906060906001600160a01b0316610a1057600160801b9250610a2b565b6000848152600a60205260409020546001600160a01b031692505b6000848152600a60205260409020600181015460029091018054859291908190610a5490611c7b565b80601f0160208091040260200160405190810160405280929190818152602001828054610a8090611c7b565b8015610acd5780601f10610aa257610100808354040283529160200191610acd565b820191906000526020600020905b815481529060010190602001808311610ab057829003601f168201915b505050505090509250925092509193909250565b6000818152600360205260409020546001600160a01b03848116911614610b375760405162461bcd60e51b815260206004820152600a60248201526957524f4e475f46524f4d60b01b6044820152606401610748565b6001600160a01b038216610b815760405162461bcd60e51b81526020600482015260116024820152701253959053125117d49150d25412515395607a1b6044820152606401610748565b336001600160a01b0384161480610bbb57506001600160a01b038316600090815260066020908152604080832033845290915290205460ff165b80610bdc57506000818152600560205260409020546001600160a01b031633145b610c195760405162461bcd60e51b815260206004820152600e60248201526d1393d517d055551213d49256915160921b6044820152606401610748565b6001600160a01b0380841660008181526004602090815260408083208054600019019055938616808352848320805460010190558583526003825284832080546001600160a01b03199081168317909155600590925284832080549092169091559251849392917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b610cb3838383610ae1565b6001600160a01b0382163b1580610d5c5750604051630a85bd0160e11b8082523360048301526001600160a01b03858116602484015260448301849052608060648401526000608484015290919084169063150b7a029060a4016020604051808303816000875af1158015610d2c573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610d509190611d7b565b6001600160e01b031916145b610d9b5760405162461bcd60e51b815260206004820152601060248201526f155394d0519157d49150d2541251539560821b6044820152606401610748565b505050565b610da861159f565b600980546001600160a01b0319166001600160a01b0392909216919091179055565b6000818152600360205260409020546001600160a01b0316806109de5760405162461bcd60e51b815260206004820152600a6024820152691393d517d3525395115160b21b6044820152606401610748565b60608082516040519150602081048252602082016020850160005b83811015610e4f578181015183820152602001610e37565b505050810160200160405292915050565b60006001600160a01b038216610ea75760405162461bcd60e51b815260206004820152600c60248201526b5a45524f5f4144445245535360a01b6044820152606401610748565b506001600160a01b031660009081526004602052604090205490565b610ecb61159f565b610ed560006115f9565b565b6000858152600360205260409020546001600160a01b0316610f2f57610efd3286611649565b60078054600090815260086020526040812087905581546001929190610f24908490611d98565b90915550610f889050565b6000858152600360205260409020546001600160a01b03163214610f8857600085815260036020526040908190205490516324f3f02560e21b81526001600160a01b039091166004820152326024820152604401610748565b6040518060600160405280856001600160a01b0316815260200184815260200183838080601f0160208091040260200160405190810160405280939291908181526020018383808284376000920182905250939094525050878152600a6020908152604091829020845181546001600160a01b0319166001600160a01b0390911617815590840151600182015590830151909150600282019061102b9082611df9565b5050505050505050565b6002805461064590611c7b565b3360008181526006602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b6000818152600a6020908152604080832081516060818101845282546001600160a01b0316825260018301549482019490945260028201805494959491938401916110f890611c7b565b80601f016020809104026020016040519081016040528092919081815260200182805461112490611c7b565b80156111715780601f1061114657610100808354040283529160200191611171565b820191906000526020600020905b81548152906001019060200180831161115457829003601f168201915b505050505081525050905061119381516001600160a01b0316600160801b1490565b156111a1576109d381610609565b60006111b0826000015161092a565b905060006111bf836020015190565b905060006111d084604001516107ad565b90506000836001600160a01b031683836040516020016111f1929190611eb9565b60408051601f198184030181529082905261120b91611eea565b600060405180830381855afa9150503d8060008114611246576040519150601f19603f3d011682016040523d82523d6000602084013e61124b565b606091505b5098975050505050505050565b600080611266600284611f06565b60019081149493901c92915050565b61127d61159f565b7f8dca0271872d00b3de3abafca544c52fcd7d512dd852c9894fa2c118ac759a93600283836040516112b193929190611fce565b60405180910390a16002610d9b828483611ffe565b6112d1858585610ae1565b6001600160a01b0384163b15806113685750604051630a85bd0160e11b808252906001600160a01b0386169063150b7a02906113199033908a908990899089906004016120be565b6020604051808303816000875af1158015611338573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061135c9190611d7b565b6001600160e01b031916145b6113a75760405162461bcd60e51b815260206004820152601060248201526f155394d0519157d49150d2541251539560821b6044820152606401610748565b5050505050565b6113b661159f565b7fb65b7b5ea384affd30f77f842e057d29dd1b13f133adf69a724a8105b164ab75600183836040516113ea93929190611fce565b60405180910390a16001610d9b828483611ffe565b6000818152600360205260409020546060906001600160a01b03168061143b57604051630243d1a960e21b815260048101849052602401610748565b6000611446846110ae565b6009546040516328de0f2f60e01b81529192506001600160a01b0316906328de0f2f9061147c90879085906001906004016120fd565b600060405180830381865afa158015611499573d6000803e3d6000fd5b505050506040513d6000823e601f3d908101601f191682016040526114c19190810190612128565b949350505050565b604080516060808201835260008083526020830181905292820152906114ee836110ae565b6040805160608101825285815260009586526003602090815295829020546001600160a01b0316958101959095528401525090919050565b61152e61159f565b6001600160a01b0381166115935760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610748565b61159c816115f9565b50565b6000546001600160a01b03163314610ed55760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610748565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b6001600160a01b0382166116935760405162461bcd60e51b81526020600482015260116024820152701253959053125117d49150d25412515395607a1b6044820152606401610748565b6000818152600360205260409020546001600160a01b0316156116e95760405162461bcd60e51b815260206004820152600e60248201526d1053149150511657d3525395115160921b6044820152606401610748565b6001600160a01b038216600081815260046020908152604080832080546001019055848352600390915280822080546001600160a01b0319168417905551839291907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b6001600160e01b03198116811461159c57600080fd5b60006020828403121561177c57600080fd5b81356109d381611754565b634e487b7160e01b600052604160045260246000fd5b604051601f8201601f1916810167ffffffffffffffff811182821017156117c6576117c6611787565b604052919050565b6001600160a01b038116811461159c57600080fd5b600067ffffffffffffffff8211156117fd576117fd611787565b50601f01601f191660200190565b600082601f83011261181c57600080fd5b813561182f61182a826117e3565b61179d565b81815284602083860101111561184457600080fd5b816020850160208301376000918101602001919091529392505050565b60006020828403121561187357600080fd5b813567ffffffffffffffff8082111561188b57600080fd5b908301906060828603121561189f57600080fd5b6040516060810181811083821117156118ba576118ba611787565b60405282356118c8816117ce565b8152602083810135908201526040830135828111156118e657600080fd5b6118f28782860161180b565b60408301525095945050505050565b60005b8381101561191c578181015183820152602001611904565b50506000910152565b6000815180845261193d816020860160208601611901565b601f01601f19169290920160200192915050565b6020815260006109d36020830184611925565b60006020828403121561197657600080fd5b5035919050565b6000806040838503121561199057600080fd5b823561199b816117ce565b946020939093013593505050565b6000602082840312156119bb57600080fd5b813567ffffffffffffffff8111156119d257600080fd5b6114c18482850161180b565b60018060a01b0384168152826020820152606060408201526000611a056060830184611925565b95945050505050565b600060208284031215611a2057600080fd5b81356109d3816117ce565b600080600060608486031215611a4057600080fd5b8335611a4b816117ce565b92506020840135611a5b816117ce565b929592945050506040919091013590565b6020808252825182820181905260009190848201906040850190845b81811015611aa457835183529284019291840191600101611a88565b50909695505050505050565b60008083601f840112611ac257600080fd5b50813567ffffffffffffffff811115611ada57600080fd5b602083019150836020828501011115611af257600080fd5b9250929050565b600080600080600060808688031215611b1157600080fd5b853594506020860135611b23816117ce565b935060408601359250606086013567ffffffffffffffff811115611b4657600080fd5b611b5288828901611ab0565b969995985093965092949392505050565b60008060408385031215611b7657600080fd5b8235611b81816117ce565b915060208301358015158114611b9657600080fd5b809150509250929050565b60008060208385031215611bb457600080fd5b823567ffffffffffffffff811115611bcb57600080fd5b611bd785828601611ab0565b90969095509350505050565b600080600080600060808688031215611bfb57600080fd5b8535611c06816117ce565b94506020860135611b23816117ce565b602081528151602082015260018060a01b036020830151166040820152600060408301516060808401526114c16080840182611925565b60008060408385031215611c6057600080fd5b8235611c6b816117ce565b91506020830135611b96816117ce565b600181811c90821680611c8f57607f821691505b602082108103611caf57634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052603260045260246000fd5b80516020808301519190811015611caf5760001960209190910360031b1b16919050565b60008351611d01818460208801611901565b9190910191825250602001919050565b634e487b7160e01b600052601160045260246000fd5b600060018201611d3957611d39611d11565b5060010190565b604081526000611d536040830185611925565b90508260208301529392505050565b600060208284031215611d7457600080fd5b5051919050565b600060208284031215611d8d57600080fd5b81516109d381611754565b8082018082111561060357610603611d11565b601f821115610d9b57600081815260208120601f850160051c81016020861015611dd25750805b601f850160051c820191505b81811015611df157828155600101611dde565b505050505050565b815167ffffffffffffffff811115611e1357611e13611787565b611e2781611e218454611c7b565b84611dab565b602080601f831160018114611e5c5760008415611e445750858301515b600019600386901b1c1916600185901b178555611df1565b600085815260208120601f198616915b82811015611e8b57888601518255948401946001909101908401611e6c565b5085821015611ea95787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b6001600160e01b0319831681528151600090611edc816004850160208701611901565b919091016004019392505050565b60008251611efc818460208701611901565b9190910192915050565b600082611f2357634e487b7160e01b600052601260045260246000fd5b500690565b60008154611f3581611c7b565b808552602060018381168015611f525760018114611f6c57611f9a565b60ff1985168884015283151560051b880183019550611f9a565b866000528260002060005b85811015611f925781548a8201860152908301908401611f77565b890184019650505b505050505092915050565b81835281816020850137506000828201602090810191909152601f909101601f19169091010190565b604081526000611fe16040830186611f28565b8281036020840152611ff4818587611fa5565b9695505050505050565b67ffffffffffffffff83111561201657612016611787565b61202a836120248354611c7b565b83611dab565b6000601f84116001811461205e57600085156120465750838201355b600019600387901b1c1916600186901b1783556113a7565b600083815260209020601f19861690835b8281101561208f578685013582556020948501946001909201910161206f565b50868210156120ac5760001960f88860031b161c19848701351681555b505060018560011b0183555050505050565b6001600160a01b03868116825285166020820152604081018490526080606082018190526000906120f29083018486611fa5565b979650505050505050565b8381526060602082015260006121166060830185611925565b8281036040840152611ff48185611f28565b60006020828403121561213a57600080fd5b815167ffffffffffffffff81111561215157600080fd5b8201601f8101841361216257600080fd5b805161217061182a826117e3565b81815285602083850101111561218557600080fd5b611a0582602083016020860161190156fea26469706673582212208654fed39bbd8db9fff4941eef342e5c686c37c5ce983973725ee994fdf5a88a64736f6c63430008140033a264697066735822122087cea2be6e247da88c43d4ca4f954bda87a09156a9b792b225900e1701e2c74164736f6c63430008140033000000000000000000000000a513e6e4b8f2a923d98304ec87f64353c4d5c853000000000000000000000000000000000000000000000000002386f26fc10000", + "nonce": "0x9", + "accessList": [] + }, + "additionalContracts": [], + "isFixedGasLimit": false + } + ], + "receipts": [ + { + "transactionHash": "0x0139fb712eb4db716921fec34aaff25eaf45bad93b541135a224f800f0e8ae95", + "transactionIndex": "0x0", + "blockHash": "0x9f4b5c7fe860a1915629ad05d7b28bbe9c49154dcb9d5ea3c2b3b01f1bb921c5", + "blockNumber": "0x3", + "from": "0xf39Fd6e51aad88F6F4ce6aB8827279cffFb92266", + "to": null, + "cumulativeGasUsed": "0xf072b", + "gasUsed": "0xf072b", + "contractAddress": "0x5FC8d32690cc91D4c39d9d3abcBD16989F875707", + "logs": [], + "status": "0x1", + "logsBloom": "0x00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", + "type": "0x2", + "effectiveGasPrice": "0xe35066cb" + }, + { + "transactionHash": "0xd7c1ceebc6c4619f3a5018e5f2b1443b292b9154d5c05f53292226d0ff4156a0", + "transactionIndex": "0x0", + "blockHash": "0xf6604f3ec5c28cb5f5c88e1a6bb82d29568b6e4aa5addc2ae0141f2edb7e01d7", + "blockNumber": "0x4", + "from": "0xf39Fd6e51aad88F6F4ce6aB8827279cffFb92266", + "to": null, + "cumulativeGasUsed": "0x23ab5", + "gasUsed": "0x23ab5", + "contractAddress": "0x0165878A594ca255338adfa4d48449f69242Eb8F", + "logs": [], + "status": "0x1", + "logsBloom": "0x00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", + "type": "0x2", + "effectiveGasPrice": "0xdda64c9d" + }, + { + "transactionHash": "0x2c42e490fdb9acfcfa9f013e739318ffbe363dcb166d82c2fef98d2c14903725", + "transactionIndex": "0x0", + "blockHash": "0x08d69fd4d78575ccfc402fb45def669f6fdf733a08321b2f3f622953d702e12d", + "blockNumber": "0x5", + "from": "0xf39Fd6e51aad88F6F4ce6aB8827279cffFb92266", + "to": null, + "cumulativeGasUsed": "0x261709", + "gasUsed": "0x261709", + "contractAddress": "0xa513E6E4b8f2a923D98304ec87F64353C4D5C853", + "logs": [], + "status": "0x1", + "logsBloom": "0x00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", + "type": "0x2", + "effectiveGasPrice": "0xd858e8ac" + }, + { + "transactionHash": "0xdd1bc2b2c08b0815b4408aeb7ce591709183eab9796e3d14f10aa521e76b8540", + "transactionIndex": "0x1", + "blockHash": "0x08d69fd4d78575ccfc402fb45def669f6fdf733a08321b2f3f622953d702e12d", + "blockNumber": "0x5", + "from": "0xf39Fd6e51aad88F6F4ce6aB8827279cffFb92266", + "to": null, + "cumulativeGasUsed": "0x294537", + "gasUsed": "0x32e2e", + "contractAddress": "0x2279B7A0a67DB372996a5FaB50D91eAA73d2eBe6", + "logs": [], + "status": "0x1", + "logsBloom": "0x00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", + "type": "0x2", + "effectiveGasPrice": "0xd858e8ac" + }, + { + "transactionHash": "0x7e7100460c91c07f4d90c7c54efe8023561c042b0add9778dd7cd09b20936d74", + "transactionIndex": "0x2", + "blockHash": "0x08d69fd4d78575ccfc402fb45def669f6fdf733a08321b2f3f622953d702e12d", + "blockNumber": "0x5", + "from": "0xf39Fd6e51aad88F6F4ce6aB8827279cffFb92266", + "to": null, + "cumulativeGasUsed": "0x51db8b", + "gasUsed": "0x289654", + "contractAddress": "0x8A791620dd6260079BF849Dc5567aDC3F2FdC318", + "logs": [ + { + "address": "0x8A791620dd6260079BF849Dc5567aDC3F2FdC318", + "topics": [ + "0x8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0", + "0x0000000000000000000000000000000000000000000000000000000000000000", + "0x000000000000000000000000f39fd6e51aad88f6f4ce6ab8827279cfffb92266" + ], + "data": "0x", + "blockHash": "0x08d69fd4d78575ccfc402fb45def669f6fdf733a08321b2f3f622953d702e12d", + "blockNumber": "0x5", + "transactionHash": "0x7e7100460c91c07f4d90c7c54efe8023561c042b0add9778dd7cd09b20936d74", + "transactionIndex": "0x2", + "logIndex": "0x2", + "transactionLogIndex": "0x0", + "removed": false + } + ], + "status": "0x1", + "logsBloom": "0x00000000000000000000000000000000000000000000000000800000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000020000000000000100000800000000000000000000000000000000400000000000000000000000000000000000000000000000000000000000000000002000000000000000000000008000000000000000000000000000000000000000000000000000200000000000000000040000002000000000000000000020000000000000000000000000000000000000000000000000000000000000000000", + "type": "0x2", + "effectiveGasPrice": "0xd858e8ac" + } + ], + "libraries": [ + "lib/eth-projects-monorepo/packages/eth-projects-contracts/contracts/lib/utils/Bytes.sol:Bytes:0x5fc8d32690cc91d4c39d9d3abcbd16989f875707" + ], + "pending": [], + "returns": {}, + "timestamp": 1689415823, + "chain": 31337, + "multi": false, + "commit": "fe5dc88" +} \ No newline at end of file diff --git a/packages/starksheet-solidity/broadcast/Evmsheet.s.sol/31337/run-1689598532.json b/packages/starksheet-solidity/broadcast/Evmsheet.s.sol/31337/run-1689598532.json new file mode 100644 index 00000000..1bf56f9d --- /dev/null +++ b/packages/starksheet-solidity/broadcast/Evmsheet.s.sol/31337/run-1689598532.json @@ -0,0 +1,209 @@ +{ + "transactions": [ + { + "hash": "0xfb04d6c6b1e9f9378a1ec3cfd8f86c712379c2a9a898c24d0ae06ead6fb87858", + "transactionType": "CREATE", + "contractName": "Bytes", + "contractAddress": "0x5FbDB2315678afecb367f032d93F642f64180aa3", + "function": null, + "arguments": null, + "transaction": { + "type": "0x02", + "from": "0xf39fd6e51aad88f6f4ce6ab8827279cfffb92266", + "gas": "0x1387ed", + "data": "0x6110d661003a600b82828239805160001a60731461002d57634e487b7160e01b600052600060045260246000fd5b30600052607381538281f3fe73000000000000000000000000000000000000000030146080604052600436106101625760003560e01c8063a5eb31ee116100cd578063d1ffb56111610086578063d1ffb561146103fb578063d442584f1461042b578063e004139614610454578063f1142fb314610474578063f647f8fb14610487578063f83b670f146104b257600080fd5b8063a5eb31ee14610344578063a8d8f00f1461036b578063b5cdf92414610396578063b63711df146103a9578063be8b3430146103bc578063c29616bd146103cf57600080fd5b80635ef849301161011f5780635ef8493014610241578063913c97b41461026b57806397e6175c1461029f57806399dd9bd7146102cb5780639ae4c3d1146102ec5780639cee499e1461031857600080fd5b8063042aa0841461016757806305d3bb74146101985780631a7431ef146101c0578063235266d2146101e357806348137709146101f65780634d66a2ae1461021b575b600080fd5b61017a610175366004610ec0565b6104de565b6040516001600160d01b031990911681526020015b60405180910390f35b6101ab6101a6366004610ec0565b610540565b60405163ffffffff909116815260200161018f565b6101d36101ce366004610f05565b61059d565b604051901515815260200161018f565b6101d36101f1366004610f4c565b610652565b610209610204366004610ec0565b6106b5565b60405160ff909116815260200161018f565b61022e610229366004610fa6565b610711565b60405161ffff909116815260200161018f565b61025461024f366004610ec0565b61071e565b60405165ffffffffffff909116815260200161018f565b61027e610279366004610ec0565b610772565b6040516fffffffffffffffffffffffffffffffff909116815260200161018f565b6102b26102ad366004610ec0565b6107d0565b6040516001600160a01b0319909116815260200161018f565b6102de6102d9366004610ec0565b61082e565b60405190815260200161018f565b6102ff6102fa366004610ec0565b61088c565b60405167ffffffffffffffff909116815260200161018f565b61032b610326366004610ec0565b6108e9565b6040516001600160d81b0319909116815260200161018f565b610357610352366004610ec0565b610946565b60405162ffffff909116815260200161018f565b61037e610379366004610ec0565b6109a3565b60405166ffffffffffffff909116815260200161018f565b6102de6103a4366004610ec0565b610a00565b6102ff6103b7366004610ec0565b610a55565b61022e6103ca366004610ec0565b610aa9565b6103e26103dd366004610ec0565b610b06565b6040516001600160c81b0319909116815260200161018f565b61040e610409366004610ec0565b610b5a565b6040516bffffffffffffffffffffffff909116815260200161018f565b61043e610439366004610ec0565b610bae565b60405164ffffffffff909116815260200161018f565b610467610462366004610fe3565b610c02565b60405161018f9190611031565b6102b2610482366004610ec0565b610d0f565b61049a610495366004610ec0565b610d64565b6040516001600160a01b03909116815260200161018f565b6104c56104c0366004610ec0565b610dc9565b6040516001600160f81b0319909116815260200161018f565b60006104eb82600661107f565b835110156105375760405162461bcd60e51b8152602060048201526014602482015273746f4279746573365f6f75744f66426f756e647360601b60448201526064015b60405180910390fd5b50016006015190565b600061054d82600461107f565b835110156105945760405162461bcd60e51b8152602060048201526014602482015273746f55696e7433325f6f75744f66426f756e647360601b604482015260640161052e565b50016004015190565b600080600190508354600260018083161561010002038216048451808214600181146105cc5760009450610644565b821561064457602083106001811461062957600189600052602060002060208a018581015b600284828410010361062057815183541461060f5760009950600093505b6001830192506020820191506105f1565b50505050610642565b6101008086040294506020880151851461064257600095505b505b509293505050505b92915050565b81518151600091600191811480831461066e57600092506106ab565b600160208701838101602088015b60028483851001036106a657805183511461069a5760009650600093505b6020928301920161067c565b505050505b5090949350505050565b60006106c282600161107f565b835110156107085760405162461bcd60e51b8152602060048201526013602482015272746f55696e74385f6f75744f66426f756e647360681b604482015260640161052e565b50016001015190565b600061064c826000610aa9565b600061072b82600661107f565b835110156105375760405162461bcd60e51b8152602060048201526014602482015273746f55696e7434385f6f75744f66426f756e647360601b604482015260640161052e565b600061077f82601061107f565b835110156107c75760405162461bcd60e51b8152602060048201526015602482015274746f55696e743132385f6f75744f66426f756e647360581b604482015260640161052e565b50016010015190565b60006107dd82600c61107f565b835110156108255760405162461bcd60e51b8152602060048201526015602482015274746f427974657331325f6f75744f66426f756e647360581b604482015260640161052e565b5001600c015190565b600061083b82602061107f565b835110156108835760405162461bcd60e51b8152602060048201526015602482015274746f427974657333325f6f75744f66426f756e647360581b604482015260640161052e565b50016020015190565b600061089982600861107f565b835110156108e05760405162461bcd60e51b8152602060048201526014602482015273746f55696e7436345f6f75744f66426f756e647360601b604482015260640161052e565b50016008015190565b60006108f682600561107f565b8351101561093d5760405162461bcd60e51b8152602060048201526014602482015273746f4279746573355f6f75744f66426f756e647360601b604482015260640161052e565b50016005015190565b600061095382600361107f565b8351101561099a5760405162461bcd60e51b8152602060048201526014602482015273746f55696e7432345f6f75744f66426f756e647360601b604482015260640161052e565b50016003015190565b60006109b082600761107f565b835110156109f75760405162461bcd60e51b8152602060048201526014602482015273746f55696e7435365f6f75744f66426f756e647360601b604482015260640161052e565b50016007015190565b6000610a0d82602061107f565b835110156108835760405162461bcd60e51b8152602060048201526015602482015274746f55696e743235365f6f75744f66426f756e647360581b604482015260640161052e565b6000610a6282600861107f565b835110156108e05760405162461bcd60e51b8152602060048201526014602482015273746f4279746573385f6f75744f66426f756e647360601b604482015260640161052e565b6000610ab682600261107f565b83511015610afd5760405162461bcd60e51b8152602060048201526014602482015273746f55696e7431365f6f75744f66426f756e647360601b604482015260640161052e565b50016002015190565b6000610b1382600761107f565b835110156109f75760405162461bcd60e51b8152602060048201526014602482015273746f4279746573375f6f75744f66426f756e647360601b604482015260640161052e565b6000610b6782600c61107f565b835110156108255760405162461bcd60e51b8152602060048201526014602482015273746f55696e7439365f6f75744f66426f756e647360601b604482015260640161052e565b6000610bbb82600561107f565b8351101561093d5760405162461bcd60e51b8152602060048201526014602482015273746f55696e7434305f6f75744f66426f756e647360601b604482015260640161052e565b606081610c1081601f61107f565b1015610c4f5760405162461bcd60e51b815260206004820152600e60248201526d736c6963655f6f766572666c6f7760901b604482015260640161052e565b610c59828461107f565b84511015610c9d5760405162461bcd60e51b8152602060048201526011602482015270736c6963655f6f75744f66426f756e647360781b604482015260640161052e565b606082158015610cbc5760405191506000825260208201604052610d06565b6040519150601f8416801560200281840101858101878315602002848b0101015b81831015610cf5578051835260209283019201610cdd565b5050858452601f01601f1916604052505b50949350505050565b6000610d1c82601061107f565b835110156107c75760405162461bcd60e51b8152602060048201526015602482015274746f427974657331365f6f75744f66426f756e647360581b604482015260640161052e565b6000610d7182601461107f565b83511015610db95760405162461bcd60e51b8152602060048201526015602482015274746f416464726573735f6f75744f66426f756e647360581b604482015260640161052e565b500160200151600160601b900490565b6000610dd682600161107f565b835110156107085760405162461bcd60e51b8152602060048201526014602482015273746f4279746573315f6f75744f66426f756e647360601b604482015260640161052e565b634e487b7160e01b600052604160045260246000fd5b600082601f830112610e4457600080fd5b813567ffffffffffffffff80821115610e5f57610e5f610e1d565b604051601f8301601f19908116603f01168101908282118183101715610e8757610e87610e1d565b81604052838152866020858801011115610ea057600080fd5b836020870160208301376000602085830101528094505050505092915050565b60008060408385031215610ed357600080fd5b823567ffffffffffffffff811115610eea57600080fd5b610ef685828601610e33565b95602094909401359450505050565b60008060408385031215610f1857600080fd5b82359150602083013567ffffffffffffffff811115610f3657600080fd5b610f4285828601610e33565b9150509250929050565b60008060408385031215610f5f57600080fd5b823567ffffffffffffffff80821115610f7757600080fd5b610f8386838701610e33565b93506020850135915080821115610f9957600080fd5b50610f4285828601610e33565b600060208284031215610fb857600080fd5b813567ffffffffffffffff811115610fcf57600080fd5b610fdb84828501610e33565b949350505050565b600080600060608486031215610ff857600080fd5b833567ffffffffffffffff81111561100f57600080fd5b61101b86828701610e33565b9660208601359650604090950135949350505050565b600060208083528351808285015260005b8181101561105e57858101830151858201604001528201611042565b506000604082860101526040601f19601f8301168501019250505092915050565b8082018082111561064c57634e487b7160e01b600052601160045260246000fdfea26469706673582212208ffe93db15f03a6fd0c59ab94e8e6a84e4561b6982e8824dafaf837546cfb2c764736f6c63430008140033", + "nonce": "0x0", + "accessList": [] + }, + "additionalContracts": [], + "isFixedGasLimit": false + }, + { + "hash": "0x3eed361770e2dcc9a97a4cdf1a955543fd69a6096e37bb0e257a7208a08c6dde", + "transactionType": "CREATE", + "contractName": "MultiSendCallOnly", + "contractAddress": "0xe7f1725E7734CE288F8367e1Bb143E90bb3F0512", + "function": null, + "arguments": null, + "transaction": { + "type": "0x02", + "from": "0xf39fd6e51aad88f6f4ce6ab8827279cfffb92266", + "gas": "0x2e5c4", + "value": "0x0", + "data": "0x608060405234801561001057600080fd5b506101ae806100206000396000f3fe60806040526004361061001e5760003560e01c80638d80ff0a14610023575b600080fd5b6100366100313660046100c7565b610038565b005b805160205b818110156100ac578083015160f81c6001820184015160601c601583018501516035840186015160558501870160008560008114610082576001811461001e5761008e565b6000808585888a5af191505b508061009957600080fd5b505080605501850194505050505061003d565b505050565b634e487b7160e01b600052604160045260246000fd5b6000602082840312156100d957600080fd5b813567ffffffffffffffff808211156100f157600080fd5b818401915084601f83011261010557600080fd5b813581811115610117576101176100b1565b604051601f8201601f19908116603f0116810190838211818310171561013f5761013f6100b1565b8160405282815287602084870101111561015857600080fd5b82602086016020830137600092810160200192909252509594505050505056fea2646970667358221220c15490bbb756a4c3c49d6335b2e81d2d098647b0ea70174c2279f199b1d0800364736f6c63430008110033", + "nonce": "0x1", + "accessList": [] + }, + "additionalContracts": [], + "isFixedGasLimit": false + }, + { + "hash": "0xfa26a5b6e297a0b5aa632035548d06ea04efb783d4713353476f25876c532b2a", + "transactionType": "CREATE", + "contractName": "BasicCellRenderer", + "contractAddress": "0x9fE46736679d2D9a65F0992F2272dE9f3c7fa6e0", + "function": null, + "arguments": null, + "transaction": { + "type": "0x02", + "from": "0xf39fd6e51aad88f6f4ce6ab8827279cfffb92266", + "gas": "0x3180ad", + "value": "0x0", + "data": "0x608060405234801561001057600080fd5b50612c25806100206000396000f3fe608060405234801561001057600080fd5b50600436106100365760003560e01c806306d4cd8b1461003b57806328de0f2f14610064575b600080fd5b61004e610049366004610322565b610077565b60405161005b919061038b565b60405180910390f35b61004e610072366004610404565b6100f1565b60606000610086600f846104fc565b90506000610095600f8361051e565b61009f9085610535565b905060006100ae826041610548565b60f81b9050806100c76100c2856001610548565b6101b6565b6040516020016100d8929190610577565b6040516020818303038152906040529350505050919050565b606060006100fe86610077565b905083838261018388735fbdb2315678afecb367f032d93f642f64180aa363b5cdf924909160006040518363ffffffff1660e01b81526004016101429291906105a8565b602060405180830381865af415801561015f573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906100c291906105ca565b87878660405160200161019c97969594939291906105f2565b604051602081830303815290604052915050949350505050565b606060006101c383610249565b600101905060008167ffffffffffffffff8111156101e3576101e36103a5565b6040519080825280601f01601f19166020018201604052801561020d576020820181803683370190505b5090508181016020015b600019016f181899199a1a9b1b9c1cb0b131b232b360811b600a86061a8153600a850494508461021757509392505050565b60008072184f03e93ff9f4daa797ed6e38ed64bf6a1f0160401b83106102885772184f03e93ff9f4daa797ed6e38ed64bf6a1f0160401b830492506040015b6d04ee2d6d415b85acef810000000083106102b4576d04ee2d6d415b85acef8100000000830492506020015b662386f26fc1000083106102d257662386f26fc10000830492506010015b6305f5e10083106102ea576305f5e100830492506008015b61271083106102fe57612710830492506004015b60648310610310576064830492506002015b600a831061031c576001015b92915050565b60006020828403121561033457600080fd5b5035919050565b60005b8381101561035657818101518382015260200161033e565b50506000910152565b6000815180845261037781602086016020860161033b565b601f01601f19169290920160200192915050565b60208152600061039e602083018461035f565b9392505050565b634e487b7160e01b600052604160045260246000fd5b60008083601f8401126103cd57600080fd5b50813567ffffffffffffffff8111156103e557600080fd5b6020830191508360208285010111156103fd57600080fd5b9250929050565b6000806000806060858703121561041a57600080fd5b84359350602085013567ffffffffffffffff8082111561043957600080fd5b818701915087601f83011261044d57600080fd5b81358181111561045f5761045f6103a5565b604051601f8201601f19908116603f01168101908382118183101715610487576104876103a5565b816040528281528a60208487010111156104a057600080fd5b8260208601602083013760006020848301015280975050505060408701359150808211156104cd57600080fd5b506104da878288016103bb565b95989497509550505050565b634e487b7160e01b600052601160045260246000fd5b60008261051957634e487b7160e01b600052601260045260246000fd5b500490565b808202811582820484141761031c5761031c6104e6565b8181038181111561031c5761031c6104e6565b8082018082111561031c5761031c6104e6565b6000815161056d81856020860161033b565b9290920192915050565b6001600160f81b031983168152815160009061059a81600185016020870161033b565b919091016001019392505050565b6040815260006105bb604083018561035f565b90508260208301529392505050565b6000602082840312156105dc57600080fd5b5051919050565b81818437506000910190815290565b7f646174613a6170706c69636174696f6e2f6a736f6e2c7b22646573637269707481527f696f6e223a2022537461726b7368656574222c20226e616d65223a202200000060208201528688603d8301376000878201602160f81b603d820152875161066481603e840160208c0161033b565b7f222c22696d616765223a2022646174613a696d6167652f7376672b786d6c2c25603e92909101918201527f334373766725323076696577426f782533442532373025323030253230383925605e8201527f3230353525323725323066696c6c2533442532376e6f6e65253237253230786d607e8201527f6c6e73253344253237687474702533412f2f7777772e77332e6f72672f323030609e8201527f302f737667253237253345253343646566732533452533437374796c6525334560be8201527f253430666f6e742d66616365253230253742666f6e742d66616d696c7925334160de8201527f253230253237507265737325323053746172742532303250253237253342737260fe8201527f6325334125323075726c25323825323764617461253341666f6e742f776f666661011e8201527f32253342626173653634253243643039474d6741424141414141424c3841413861013e8201527f41414141415235774141424b674141454141414141414141414141414141414161015e8201527f4141414141414141414141414150305a4756453063476a41624d42794358675a61017e8201527f6741494e794551674b3846545361517544524141424e67496b41344e4d42434161019e8201527f46687a5148684649623644566c42306a314f4d4253336f4f4953744562732f2f6101be8201527f2f6c4a776356727a47634f30676f684c45484d6369694443434e57695a6761306101de8201527f79625345555954514f6a4b427038546c737a7344526438716174586c333058746101fe8201527f30645a47467952305668444b776c62746c25324272734643773945316e64655961021e8201527f4a74732f37527762305673784d71576c636a6a775445537a2f5568752f77337361023e8201527f33746b6f496d70343464515168576f456d54337579526d70746f7553446b7a5761025e8201527f454138762f3932364a4b7539486f696e6e3673376674336d4965476c7737547161027e8201527f6437456f326a46517849766a5642494a70563269614f62547a68575932314e7461029e8201527f476772687434704d4b3457556a34624c7967542f51253242514c7879253242336102be8201527f6c482f362f6b6275496444497239446a724a496a6f394a7336524d58253242456102de8201527f6b37424f545a6b6d70397a347455524652566656307148504448375a7462364a6102fe8201527f616f6130684c335975616232473373667a72365776394536793569767025324261031e8201527f7135564c74426a514478476f5345304150313762336466376c61726a6525324261033e8201527f73637a6b7241744a334b6657304a342532424b323365744b4b556a383554616f61035e8201527f57473453346158436c427743413268676141652532423658396f696e32304e6261037e8201527f554a7264466767517049686d5247494d30372f7025324277375a7058316c473161039e8201527f6a6a51787073435141423438714445415042346950312f6a39592f4261686a356103be8201527f5943414e302f78714157496852616a6c6e694e654f50396e78433466667932556103de8201527f694843304e47386b686f6f567a6f7459334445417a417a41356b473735337a6a6103fe8201527f4853354d6e6d586b69496a6d54554d36556d4d3025324256346976752f48377861041e8201527f6a364666322f6b343472787a6449324141676742492f4c48416b394a7a35554d61043e8201527f496f4c7755344146455435725a464f33444d616655633061777351434879497061045e8201527f557a546b30784a474a454f6a4e6871436b474570496153474f6a714e466d2f5761047e8201527f4e434e3569636b71434d6e414165564c4d4c655867356971386b365752585a5261049e8201527f326c337042393831427a73475a743225324256696c4342723954494a674b67786104be8201527f365542514446253242566a4b44714e7741414948386a6949664d6e75384b68666104de8201527f584b486f4e3348634134477245786842324155442f795a554d423857547579496104fe8201527f413444634f4b656434397939504249616e426967734d454e38556b30766c547661051e8201527f304a58334e394d795a75544d763573655357413525324238556538504465547261053e8201527f645467474973566d4e33635856586a6463795275633434385866664176506e7361055e8201527f3575324d4531722532426a4731703137767a3849704f416e483444427367793361057e8201527f512f54376b33646d2f3846334232377355694877464631414f6c683055646e4961059e8201527f4471494e5164506355393145786f2f346252696a6a5169704e4e307a4c646c7a6105be8201527f504438496f547449734c38717162746f4f5149514a5a567849705931315073536105de8201527f55533231397a4c585066642f507667765751346372464d2532425769755671706105fe8201527f645a6f4e6475645872632f4745324d4a36656e3575635746694763375274364f61061e8201527f487676354d674c2532427a44733578444277696141315433554877326b63594361063e8201527f312f55666453316645316d37763742346537653350574848786533594f32483561065e8201527f25324241504f5a7965503025324251506553425468793078713965363241486a61067e8201527f6141556842432f364144484c6f476f4f657636412532426867487369317a613861069e8201527f71355a4e4d716a596c575a4d713867354248445574495370574a73526f52544a6106be8201527f56613049305a3957546b5371564b73507a3464586a7648746449684c6e7670746106de8201527f554c4330753542567579414d544b4a513930594b5267546e5769476b6d7153456106fe8201527f714b6d7256685259674b6b335443686255573671456f45637665577a6859535461071e8201527f4c32484e706735452f6d7151393956564467763352475435586d33637a68754c61073e8201527f3972685864316132372f736c5130686959366a643739614f5a43746a6f52687261075e8201527f623136575676514b725734477a786a7869723238494d697a2f7155447973495761077e8201527f7037516a667765347a556437614a735651575179524c554b484b42577938577661079e8201527f45565333584d53353656337757644f442532424638757639645477496d4b722f6107be8201527f5064626d5763775176456641616a7975566a70784e32704f56635769336c38776107de8201527f454c2f6d395070646f55494536253242504b5838315041546d67654f304231736107fe8201527f47454825324261707a353466646d534a7a333741686635366a4c7739756e504561081e8201527f35644d4b3025324237544639563843435466523979664e7355493474557a464661083e8201527f42326e536e384b4f626a64446964554c7034494a6873777878595172595a643661085e8201527f4e76436e55394d445825324252654c6e4d546d6c315a453972306b5077334e3261087e8201527f6752253242736a4573596d4953706b356c31497333594e614a4b6f6e7a65703761089e8201527f56637354316e556b62347048774b5a41796b614b6f43504630506f6d456876496108be8201527f5758656e6f5a767836774f4b313070316c3274546858793850316555776473766108de8201527f53715157766f424d7473674851554a614774494273756861776450545a5378596108fe8201527f707257757734647a7231564755744449465871726f4d4d69597346783857695461091e8201527f336463574b6f376d50554c79715657413972305974524a4c626957766a6e4c2561093e8201527f324272633452646767624e516c514141613264306d616236364d48447074314361095e8201527f6477626b51436253375053445a4d7a3746724f51713165636153304a6c74644161097e8201527f6c44527941587173364130586247707748676b70367572557757416272464d3361099e8201527f75794d764e4b6c344d6c435548537950416d3931776144454a3559595148754a6109be8201527f4d32304b575251737637486b61334770686c533258444b714f4b4245554753316109de8201527f65306b63316f323449494166486c4449794278584a4a656767423369386174566109fe8201527f67434f3064444f5a484a57596a564c416a6a397137765673456e72684b374568610a1e8201527f4c75427a42586d4d674554634531636d61436976504b6f4a766670466c794935610a3e8201527f4d70584234454325324245672f596d303454787843354e6c73596b74646f5951610a5e8201527f55656c38624673456c3748345a36734377622f38626b347458574658504b6a71610a7e8201527f5462526e64336e4c5770394f784941706c664b586747684e6c72443462354a4c610a9e8201527f5a367055753441726756614d366561357844574244476f7a707a4641376e6747610abe8201527f74596334486141775269475576637653653652414177335a576b564f4667764b610ade8201527f46364955696c4d49394964715155345134585264484866736666517770313955610afe8201527f434a49306a5773725433356f5578303678507268473271364d4533554f306c63610b1e8201527f635a557354454351784a44527854444b6c334c4948722f6162546f73686c6466610b3e8201527f51786a364f57745273466e6966444373473674336b426f344e6d424a6d615556610b5e8201527f54636c794951414a4c6a6e723042365a3859464d6e396b397967703752727848610b7e8201527f36766877624a4e41654b4d554436353974386746514a4d5377652f434f624850610b9e8201527f467671484746554e5266253242737245663354584b42725a76676b6369396972610bbe8201527f426d63442f7458616754474358634e68432532424f3539754c706e6673796f71610bde8201527f4c53313238374552776d38666165564f6d3857634437386c5a36594232793938610bfe8201527f5a4c6c4d3972557264324c514e6c324956643454727376675139363079377573610c1e8201527f5965306854506170576a71726c2532425837784665424e54253242315a644a4a610c3e8201527f572532424678745737584e7774634e7a7761672532425256656a6d4a6839656d610c5e8201527f6c495a4b69694e63694b3849554f4d33556a4a376342554e5847505853326c68610c7e8201527f253242687770676f4836567348524f63764569723372585970344c7769435a77610c9e8201527f3176486c43623552314d68623564536e4f326d6e6f475a6f5846315765574757610cbe8201527f6d7a694a314a555534715072306e694a536c4e424331636b4b6d4a6657625877610cde8201527f5577757449547a456d6a776770776142753464525066746a2f4e384143526e64610cfe8201527f616b2f4641674b674c37305058577839767a6b59322532426d34355473496b4c610d1e8201527f3037616f70444e6f676830535262535a534f397a744657516a376e574c676275610d3e8201527f364325324254374b6a44715a3667456e5277674d78306b4c5a77797962514f76610d5e8201527f514130773054782f354a42722f63595a6453574f546a774446364e6f586b796a610d7e8201527f33566a484e4751494e76426a5a734a4a3377466141516d6f5a575a5970416961610d9e8201527f574f466e6e686455524176576b557a77693062677a5a4158796f445545714863610dbe8201527f57307069454c574f777168773365765478444957724e32495371525151454c41610dde8201527f4d32365334486c723548552f48784a43436844424a6b756b6341573856415430610dfe8201527f6770545a544b4e48677a444f7234314751656a4f34677a416e6b577077464752610e1e8201527f43334c625231787a4b434875365635694674674c704f384b51596d5965467868610e3e8201527f4c32643838736469506a2f76306b427a636c51637954735766324d6445394944610e5e8201527f386d5858576a72434b253242354532756e336e6976656973526e726971317548610e7e8201527f594d6a6a69694945304b6466674d6f3163476d6b557254624f30356732737633610e9e8201527f477673525971762f61457736375472644f705435567a4641364131417939634b610ebe8201527f6f44667762544a64445750524e57517354796a6d3772486249734b466b6f4f2f610ede8201527f5a4c4376735966785973337768534338614c49344b765677373773336e347a48610efe8201527f67697061634a6e435362463945727a53357069386343577655597a4f5064327a610f1e8201527f684a2f4750437a53684f453378596c634f3350796164586a54334f6b68706841610f3e8201527f58465853766865544e5355525446565641486f4a6d7949726b6a454b6f517746610f5e8201527f4730303554334158643935764e30446d336d427332786746546c253242513572610f7e8201527f73416a6e744768707a6f62643642374e7a52664e56653130446f4e5639343753610f9e8201527f59646f635252624776636d785456786f61367a717756376d416e773544314745610fbe8201527f5474327a48382532425476514256356e37672f32615768743979794e594c3974610fde8201527f4f42744167384846435945316d4e775432454232467538544968543776565241610ffe8201527f3461587a6e6b3670545a4e6779696f73747749364b654655374c696c7041253261101e8201527f42334234474a794277574d327062466a4876734a3747754f6f616b6a6d46746a61103e8201527f59344c6254396c323239253242453646374c4475577a744c6e333749786b386a61105e8201527f356c42564b33774c7369362f416641756f6a34396c4d6b5653545045396b704761107e8201527f64304c724555534a4941413070596c4178414d642f4e4f46776f4a446458466961109e8201527f307a4f5744422f54464a705666575642574f516274724a556230636c663369256110be8201527f3242575072446f596c65545674564f45306d36793564487444725551776f414c6110de8201527f7455523365585364444d4e785866656a594674764c626c726c4a7777484b2f456110fe8201527f6957504a616b32574b35386e684e6f4c6a615a55475841756f32656f5777464561111e8201527f66612f445334496958717246714779633348726939785132693243352f73357661113e8201527f7a424d30793777334d4473774d3759325247427172464d6778374f696325324261115e8201527f30497a736d5678617a5473305263666a324f3334532f525639503269486f427561117e8201527f6c4b49594244665a46654c53356439725379664a64536c67683268644d72324f61119e8201527f5552334b6e6c506e4f41785477314a384c4d325a776e4671765a745a4a6c78786111be8201527f343873776243743272316b664875443756624831326159383849437456734b786111de8201527f4b742f31726b616c42414d74782f6f6f6d43445059626b556f4c6344624b436a6111fe8201527f7675713953544467746a584744715735564b36686347654f46697a6a3643714c61121e8201527f4f49716b57783477733245504d444e7378253242613661533230384f39784c3061123e8201527f526146586f394241645530706e452532424c695359334b536f4a41525978646e61125e8201527f7a69545a4d706961442f3438496969393834446151357976656378414673735761127e8201527f792f686274696d63253242704c386b35796f70496d4a627948712f6138797a6c61129e8201527f6c37726f4f7a586d786d4163337459585363546b65734d6344324939315a36336112be8201527f6549312f394a627755716b36737863394b52677277574d414e6543314e6e39756112de8201527f4779775473706d5538712532426c5a6d43714d674153363662674841476a514b6112fe8201527f73754a334451416a5235346d356a4c7a5a616e546c62646530253242726e663461131e8201527f385a574138546c32673277414779427748516e3552322532424e6a726542677861133e8201527f626c734e46627554776d6862414a48737a2f72416f61764c4f34317874767a5961135e8201527f4768336e4c4a426b41506a7578424a445248333048426575385567436978464e61137e8201527f437951322f4b253242385157372f6530253242664f2532423436524e5730657961139e8201527f4c726f39446a5467704a4e4d3547385179306c54644f756d73773066715045696113be8201527f393646702532424830634d774e6f376a787a596d6e4e664d5a6d64506c7932706113de8201527f6f7132575065476d67507136474c78504e34536c4b486e7870624f69754c58516113fe8201527f75583155715031676a6f38426136536c55314f416d5267707a7531735444584a61141e8201527f50754d3338546f387130344c324e777970653837327777556741675a6c70386461143e8201527f6b5166397a38544d43624d6b596b3758484375333564375a5a41656f346b5a4b61145e8201527f68784953386945354c546a334c4f6976485a7268394a3870337a4c5a436a776361147e8201527f6970354452694b6e576e49664c33386b4a684d7452776a67553525324256726d61149e8201527f714b6c6739307a376a64732f4238444b646b464c76483353253242376f4838616114be8201527f6c445a6c626734533155583574434d445342324f364b756c7a41344b763067376114de8201527f314251643054464b7733685358696e62374e6c304258725873514e6376436b386114fe8201527f6d6f394f786965783559627a78564e2f6b3738336f48545a495777393079495a61151e8201527f777672697164475473586e54384965705437597946434f4a6741395a3042794961153e8201527f455956735478522f6b73616b324268376f4b767034766e695530364d57317a4261155e8201527f4672746568647a306b6b587951786a426d7965645636644d596545386146787461157e8201527f6575777355466136466c6c54446c716430707a525a77473663467266574d627061159e8201527f384738587a6a66624d253242354658657076356f457273696c363458783663376115be8201527f5841576275696d3666387347494d58666f334a6971476b703333376854536a676115de8201527f65636862364f42472f327a31376a6f6d4469476d253242476c623146553069656115fe8201527f6e7552796977654c576767447a6d4655765545556a5a6f377356544877684f4661161e8201527f504d6b4e737146423977796d6b45307639666d7477453854377135384e594f3761163e8201527f787534623833766e46766c35755378446c472532426b4f51675249644f346a6761165e8201527f7a786a53486a4b4c7332742f6c684f647771766131415744437072763344345361167e8201527f34523741625934544362664b4637744265363554343551347a7a49714433316161169e8201527f79797557716a692532424636585337535439483943314f342f694b366b4775766116be8201527f6b512f664e3537487837456533373435622f76766e2f62482f58253242392f256116de8201527f32426762656d684f416d49705576755157757344764b517578394a44564e734b6116fe8201527f673651636d6b73515341445530346347524c523768466f5a326337785545664761171e8201527f253242776b755459474d764c6a422f6550634936416847686e5735717a45416961173e8201527f4a586377564545775869654e70536c317a6a457253253242435325324248634c61175e8201527f6f52506d7661324d6767412f69794c67536f544a555767733442794149514f3061177e8201527f4f6f705a487656627a6844494c65557155677a7a48492f667950474e7879777361179e8201527f6f796c6865534639577662795363336b4544716b32415636436c4364635535536117be8201527f6e6c4e6e4963394b794d63384c79622532423867484f4a795173466c4c6250526117de8201527f796d6d374a42743349545a544162314732444252496b514b51705451396939626117fe8201527f3665435353387a4d366161525364544b5657524d336663454a4c644b61746e7361181e8201527f724959774e4a55253242733048364461757832775a35686733706c653042474861183e8201527f756b316b4543734859446461496d4b7025324233463542317859763763486b7161185e8201527f644475306a4b645273657a3531376d63563641685148346931484e3173766c6a61187e8201527f5248366845454672682532426e72726d47316e33307a4d346749776d694d774561189e8201527f624b6842545564423141486f582532424b6741517a4f48543946494f71436b526118be8201527f4e4e623273397170496943534f753167576868497343564a73765771457175356118de8201527f47624a514b4e6a61427465394c4f69676368414a7665475773394332323033766118fe8201527f6f6e476c6b77725251323464646732796345646157554456734441785548734961191e8201527f77773665615234464665336d4a416b66426d5a6452395264774a485a6d47645261193e8201527f7950436a706a627a31712f584a34534949446b66384b4b6e6e32456c4b6d794c61195e8201527f69573442513836733151554b2f76426867524e776548766c5968687a7238706361197e8201527f67704b4b6d6f61576a7036426b594f48446c7835734b5647336365474539657661199e8201527f506e773563646667454242676f554946536238587632504553314772446a78456119be8201527f69524b6b697846716a54704d6d544b6b693148726a7a354368517155717845716119de8201527f544c6c4b6c53715571314772547231476a527130717846717a62744f6e5347656119fe8201527f3668374a6d627a4968355a6544696c315a58536a7430774375616b336c6e476f611a1e8201527f5655506f53734e663337394b326a6274716d44674d69485a42665a6c68324839611a3e8201527f75773738495469314a466a585653662f4336634f55667a346f30644178305447611a5e8201527f777448446863666a3443516d49694531444d5a42546b6c4e5a557065566f614f611a7e8201527f6e717633733234314e50503965766574594768435a50576a4979747332706173611a9e8201527f436a25324270556a54596c336b615574374f744b4a6136355850396d356e6367611abe8201527f364e686a685a587032762532426d57724341545a754a303368316b6a55756976611ade8201527f5067596e6a6e35744b4a4f6b326e6362703251414559585a69304b496d50356b611afe8201527f744961466e366b5a397743253237253239253230666f726d6174253238253237611b1e8201527f776f666632253237253239253342666f6e742d7765696768742533412532306e611b3e8201527f6f726d616c253342666f6e742d7374796c652533412532306e6f726d616c2533611b5e8201527f42666f6e742d646973706c617925334125323073776170253342253744746578611b7e8201527f74253230253742666f6e742d66616d696c792533412532302532375072657373611b9e8201527f2532305374617274253230325025323725334266696c6c253341253230776869611bbe8201527f74652537442e76616c7565253230253742666f6e742d73697a65253341253230611bde8201527f313070782533422537442e6e616d65253230253742666f6e742d73697a652533611bfe8201527f412532303470782533422537442533432f7374796c652533452533432f646566611c1e8201527f7325334525334372656374253230776964746825334425323738392532372532611c3e8201527f30686569676874253344253237353525323725323066696c6c25334425323762611c5e8201527f6c61636b2532372532302f253345253343726563742532307825334425323735611c7e8201527f2e3525323725323079253344253237352e352532372532307769647468253344611c9e8201527f2532373738253237253230686569676874253344253237343425323725323066611cbe8201527f696c6c2533442532372532333030303046462532372532302f25334525334374611cde8201527f657874253230746578742d616e63686f722533442532376d6964646c65253237611cfe8201527f2532307825334425323734342e35253237253230792533442532373333253237611d1e8201527f253230636c61737325334425323776616c756525323725334500000000000000611d3e820152612ba5612b9e6129f5611d5784018a61055b565b7f2533432f746578742533452533437265637425323078253344253237352e352581527f323725323079253344253237352e35253237253230776964746825334425323760208201527f373825323725323068656967687425334425323734342532372532307374726f60408201527f6b652533442532372532334646344630412532372532307374726f6b652d776960608201527f647468253344253237332532372532302f25334525334372656374253230782560808201527f334425323733302532372532307925334425323734352e35253237253230776960a08201527f647468253344253237353825323725323068656967687425334425323738253260c08201527f3725323066696c6c2533442532372532334646344630412532372532302f253360e08201527f4525334374657874253230746578742d616e63686f72253344253237656e64256101008201527f32372532307825334425323738372532372532307925334425323735322532376101208201527f253230636c6173732533442532376e616d6525323725334500000000000000006101408201526101580190565b86886105e3565b602160f81b81529050612bbb600182018561055b565b7f2533432f746578742533452533432f737667253345227d00000000000000000081526017019a995050505050505050505056fea26469706673582212206a2c00c13ddb4f1bcd7ee36e36f0c874d7d9dadcf38306eab3610b5a6e7af83464736f6c63430008110033", + "nonce": "0x2", + "accessList": [] + }, + "additionalContracts": [], + "isFixedGasLimit": false + }, + { + "hash": "0x3de75e0187d1300847016f9712d9bad87f0de9d06ecc20887ff85b8562563c90", + "transactionType": "CREATE", + "contractName": null, + "contractAddress": "0xCf7Ed3AccA5a467e9e704C703E8D87F634fB0Fc9", + "function": null, + "arguments": null, + "transaction": { + "type": "0x02", + "from": "0xf39fd6e51aad88f6f4ce6ab8827279cfffb92266", + "gas": "0x42230", + "value": "0x0", + "data": "0x608060405234801561001057600080fd5b506102cf806100206000396000f3fe608060405234801561001057600080fd5b506004361061004c5760003560e01c80630194db8e14610051578063072bdcc214610076578063a391c15b14610089578063b67d77c51461009c575b600080fd5b61006461005f366004610160565b6100af565b60405190815260200160405180910390f35b610064610084366004610160565b6100ef565b61006461009736600461021e565b610129565b6100646100aa36600461021e565b61013e565b600080805b83518110156100e8578381815181106100cf576100cf610240565b60200260200101518201915080806001019150506100b4565b5092915050565b60006001815b83518110156100e85783818151811061011057610110610240565b60200260200101518202915080806001019150506100f5565b60006101358284610256565b90505b92915050565b60006101358284610278565b634e487b7160e01b600052604160045260246000fd5b6000602080838503121561017357600080fd5b823567ffffffffffffffff8082111561018b57600080fd5b818501915085601f83011261019f57600080fd5b8135818111156101b1576101b161014a565b8060051b604051601f19603f830116810181811085821117156101d6576101d661014a565b6040529182528482019250838101850191888311156101f457600080fd5b938501935b82851015610212578435845293850193928501926101f9565b98975050505050505050565b6000806040838503121561023157600080fd5b50508035926020909101359150565b634e487b7160e01b600052603260045260246000fd5b60008261027357634e487b7160e01b600052601260045260246000fd5b500490565b8181038181111561013857634e487b7160e01b600052601160045260246000fdfea2646970667358221220fcdef23ba4219270ddb3ab764e22a87e229c05e6f1dfc4eeea983fa1a1dac91f64736f6c63430008110033", + "nonce": "0x3", + "accessList": [] + }, + "additionalContracts": [], + "isFixedGasLimit": false + }, + { + "hash": "0x9b429d2fd55ffc6fa8696728d353fd418da33819473cfb47ddf43569b706759b", + "transactionType": "CREATE", + "contractName": "Evmsheet", + "contractAddress": "0xDc64a140Aa3E981100a9becA4E685f962f0cF6C9", + "function": null, + "arguments": [ + "0x9fE46736679d2D9a65F0992F2272dE9f3c7fa6e0", + "10000000000000000" + ], + "transaction": { + "type": "0x02", + "from": "0xf39fd6e51aad88f6f4ce6ab8827279cfffb92266", + "gas": "0x34bf99", + "value": "0x0", + "data": "0x608060405234801561001057600080fd5b50604051612ed9380380612ed983398101604081905261002f916100b1565b61003833610061565b600280546001600160a01b0319166001600160a01b0393909316929092179091556001556100eb565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b600080604083850312156100c457600080fd5b82516001600160a01b03811681146100db57600080fd5b6020939093015192949293505050565b612ddf806100fa6000396000f3fe608060405260043610620000a95760003560e01c80638da5cb5b116200006c5780638da5cb5b146200016d578063ab2fa65a146200018d578063ae28505e14620001b4578063c56c4cf114620001d9578063f2fde38b14620001fb578063f52be2a2146200022057600080fd5b806303fb31e814620000ae5780631164c83d14620000d5578063145e414714620000ec5780635787cacb146200012e578063715018a61462000155575b600080fd5b348015620000bb57600080fd5b50620000d3620000cd36600462000778565b62000247565b005b620000d3620000e6366004620007e9565b62000273565b348015620000f957600080fd5b50620001116200010b36600462000864565b620004b2565b6040516001600160a01b0390911681526020015b60405180910390f35b3480156200013b57600080fd5b50620001466200054f565b60405162000125919062000891565b3480156200016257600080fd5b50620000d3620005b3565b3480156200017a57600080fd5b506000546001600160a01b031662000111565b3480156200019a57600080fd5b50620001a5620005cb565b604051620001259190620008e0565b348015620001c157600080fd5b5062000111620001d336600462000930565b620005f7565b348015620001e657600080fd5b5060025462000111906001600160a01b031681565b3480156200020857600080fd5b50620000d36200021a36600462000778565b62000622565b3480156200022d57600080fd5b506200023860015481565b60405190815260200162000125565b62000251620006a1565b600280546001600160a01b0319166001600160a01b0392909216919091179055565b60015434146200029d5760405163723a79e360e11b81523460048201526024015b60405180910390fd5b600060405180602001620002b1906200074d565b6020820181038252601f19601f8201166040525090506000828251602084016000f56002546040516356d3163d60e01b81526001600160a01b0391821660048201529192508216906356d3163d90602401600060405180830381600087803b1580156200031d57600080fd5b505af115801562000332573d6000803e3d6000fd5b505060405163c47f002760e01b81526001600160a01b038416925063c47f0027915062000366908a908a906004016200094a565b600060405180830381600087803b1580156200038157600080fd5b505af115801562000396573d6000803e3d6000fd5b5050604051635c26412360e11b81526001600160a01b038416925063b84c82469150620003ca90889088906004016200094a565b600060405180830381600087803b158015620003e557600080fd5b505af1158015620003fa573d6000803e3d6000fd5b505060405163f2fde38b60e01b81523260048201526001600160a01b038416925063f2fde38b9150602401600060405180830381600087803b1580156200044057600080fd5b505af115801562000455573d6000803e3d6000fd5b5050600380546001810182556000919091527fc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b0180546001600160a01b0319166001600160a01b0394909416939093179092555050505050505050565b600060ff60f81b838360405180602001620004cd906200074d565b6020820181038252601f19601f82011660405250805190602001206040516020016200053094939291906001600160f81b031994909416845260609290921b6bffffffffffffffffffffffff191660018401526015830152603582015260550190565b60408051601f1981840301815291905280516020909101209392505050565b60606003805480602002602001604051908101604052809291908181526020018280548015620005a957602002820191906000526020600020905b81546001600160a01b031681526001909101906020018083116200058a575b5050505050905090565b620005bd620006a1565b620005c96000620006fd565b565b606060405180602001620005df906200074d565b601f1982820381018352601f90910116604052919050565b600381815481106200060857600080fd5b6000918252602090912001546001600160a01b0316905081565b6200062c620006a1565b6001600160a01b038116620006935760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b606482015260840162000294565b6200069e81620006fd565b50565b6000546001600160a01b03163314620005c95760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015260640162000294565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b612430806200097a83390190565b80356001600160a01b03811681146200077357600080fd5b919050565b6000602082840312156200078b57600080fd5b62000796826200075b565b9392505050565b60008083601f840112620007b057600080fd5b50813567ffffffffffffffff811115620007c957600080fd5b602083019150836020828501011115620007e257600080fd5b9250929050565b6000806000806000606086880312156200080257600080fd5b853567ffffffffffffffff808211156200081b57600080fd5b6200082989838a016200079d565b909750955060208801359150808211156200084357600080fd5b5062000852888289016200079d565b96999598509660400135949350505050565b600080604083850312156200087857600080fd5b62000883836200075b565b946020939093013593505050565b6020808252825182820181905260009190848201906040850190845b81811015620008d45783516001600160a01b031683529284019291840191600101620008ad565b50909695505050505050565b600060208083528351808285015260005b818110156200090f57858101830151858201604001528201620008f1565b506000604082860101526040601f19601f8301168501019250505092915050565b6000602082840312156200094357600080fd5b5035919050565b60208152816020820152818360408301376000818301604090810191909152601f909201601f1916010191905056fe60806040523480156200001157600080fd5b50604051806040016040528060078152602001660536865657420360cc1b815250604051806040016040528060048152602001630534854360e41b81525062000069620000636200008f60201b60201c565b62000093565b600162000077838262000188565b50600262000086828262000188565b50505062000254565b3390565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b634e487b7160e01b600052604160045260246000fd5b600181811c908216806200010e57607f821691505b6020821081036200012f57634e487b7160e01b600052602260045260246000fd5b50919050565b601f8211156200018357600081815260208120601f850160051c810160208610156200015e5750805b601f850160051c820191505b818110156200017f578281556001016200016a565b5050505b505050565b81516001600160401b03811115620001a457620001a4620000e3565b620001bc81620001b58454620000f9565b8462000135565b602080601f831160018114620001f45760008415620001db5750858301515b600019600386901b1c1916600185901b1785556200017f565b600085815260208120601f198616915b82811015620002255788860151825594840194600190910190840162000204565b5085821015620002445787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b6121cc80620002646000396000f3fe608060405234801561001057600080fd5b50600436106102275760003560e01c8063715018a611610130578063b85d8b85116100b8578063cf0983981161007c578063cf09839814610512578063cfbe95d814610535578063df4ca20614610556578063e985e9c514610576578063f2fde38b146105a457600080fd5b8063b85d8b85146104a4578063b88d4fde146104ce578063b8c368ec146104e1578063c47f0027146104ec578063c87b56dd146104ff57600080fd5b806395d89b41116100ff57806395d89b4114610439578063a22cb46514610441578063b46ebb1214610454578063b6d658e114610467578063b84c82461461049157600080fd5b8063715018a6146103fa578063768d5029146104025780638ada6b0f146104155780638da5cb5b1461042857600080fd5b80631b06443c116101b35780634f6ccce7116101825780634f6ccce71461038157806356d3163d146103a15780636352211e146103b45780636a0abc74146103c757806370a08231146103e757600080fd5b80631b06443c14610335578063206848f61461034857806323b872dd1461035b57806342842e0e1461036e57600080fd5b8063081812fc116101fa578063081812fc146102a1578063095ea7b3146102e2578063172b9eed146102f757806318160ddd1461030a5780631941fd141461031357600080fd5b806301ffc9a71461022c57806302f3c4c91461025457806306fdde03146102745780630715a24a1461027c575b600080fd5b61023f61023a36600461176a565b6105b7565b60405190151581526020015b60405180910390f35b610267610262366004611861565b610609565b60405161024b9190611951565b610267610638565b6102936fffffffffffffffffffffffffffffffff81565b60405190815260200161024b565b6102ca6102af366004611964565b6005602052600090815260409020546001600160a01b031681565b6040516001600160a01b03909116815260200161024b565b6102f56102f036600461197d565b6106c6565b005b6102676103053660046119a9565b6107ad565b61029360075481565b610326610321366004611964565b610875565b60405161024b939291906119de565b6102ca610343366004611a0e565b61092a565b610326610356366004611964565b6109e3565b6102f5610369366004611a2b565b610ae1565b6102f561037c366004611a2b565b610ca8565b61029361038f366004611964565b60086020526000908152604090205481565b6102f56103af366004611a0e565b610da0565b6102ca6103c2366004611964565b610dca565b6103da6103d53660046119a9565b610e1c565b60405161024b9190611a6c565b6102936103f5366004611a0e565b610e60565b6102f5610ec3565b6102f5610410366004611af9565b610ed7565b6009546102ca906001600160a01b031681565b6000546001600160a01b03166102ca565b610267611035565b6102f561044f366004611b63565b611042565b610267610462366004611964565b6110ae565b61047a610475366004611964565b611258565b60408051921515835260208301919091520161024b565b6102f561049f366004611ba1565b611275565b6104b56104b2366004611964565b90565b6040516001600160e01b0319909116815260200161024b565b6102f56104dc366004611be3565b6112c6565b6102ca600160801b81565b6102f56104fa366004611ba1565b6113ae565b61026761050d366004611964565b6113ff565b61023f610520366004611a0e565b600160801b6001600160a01b03919091161090565b61023f610543366004611861565b516001600160a01b0316600160801b1490565b610569610564366004611964565b6114c9565b60405161024b9190611c16565b61023f610584366004611c4d565b600660209081526000928352604080842090915290825290205460ff1681565b6102f56105b2366004611a0e565b611526565b60006301ffc9a760e01b6001600160e01b0319831614806105e857506380ac58cd60e01b6001600160e01b03198316145b806106035750635b5e139f60e01b6001600160e01b03198316145b92915050565b6060816020015160405160200161062291815260200190565b6040516020818303038152906040529050919050565b6001805461064590611c7b565b80601f016020809104026020016040519081016040528092919081815260200182805461067190611c7b565b80156106be5780601f10610693576101008083540402835291602001916106be565b820191906000526020600020905b8154815290600101906020018083116106a157829003601f168201915b505050505081565b6000818152600360205260409020546001600160a01b03163381148061070f57506001600160a01b038116600090815260066020908152604080832033845290915290205460ff165b6107515760405162461bcd60e51b815260206004820152600e60248201526d1393d517d055551213d49256915160921b60448201526064015b60405180910390fd5b60008281526005602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b606060006107ba83610e1c565b9050606060005b825181101561086d576000806107ef8584815181106107e2576107e2611cb5565b6020026020010151611258565b9150915081156108335783610803826110ae565b61080c90611ccb565b60405160200161081d929190611cef565b6040516020818303038152906040529350610858565b6040516108469085908390602001611cef565b60405160208183030381529060405293505b5050808061086590611d27565b9150506107c1565b509392505050565b600a602052600090815260409020805460018201546002830180546001600160a01b039093169391926108a790611c7b565b80601f01602080910402602001604051908101604052809291908181526020018280546108d390611c7b565b80156109205780601f106108f557610100808354040283529160200191610920565b820191906000526020600020905b81548152906001019060200180831161090357829003601f168201915b5050505050905083565b6000600160801b6001600160a01b03831610156109da576000610955836001600160a01b03166110ae565b604051632d737e4960e21b8152909150735fbdb2315678afecb367f032d93f642f64180aa39063b5cdf92490610992908490600090600401611d40565b602060405180830381865af41580156109af573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906109d39190611d62565b9392505050565b5090565b919050565b60008181526003602052604081205481906060906001600160a01b0316610a1057600160801b9250610a2b565b6000848152600a60205260409020546001600160a01b031692505b6000848152600a60205260409020600181015460029091018054859291908190610a5490611c7b565b80601f0160208091040260200160405190810160405280929190818152602001828054610a8090611c7b565b8015610acd5780601f10610aa257610100808354040283529160200191610acd565b820191906000526020600020905b815481529060010190602001808311610ab057829003601f168201915b505050505090509250925092509193909250565b6000818152600360205260409020546001600160a01b03848116911614610b375760405162461bcd60e51b815260206004820152600a60248201526957524f4e475f46524f4d60b01b6044820152606401610748565b6001600160a01b038216610b815760405162461bcd60e51b81526020600482015260116024820152701253959053125117d49150d25412515395607a1b6044820152606401610748565b336001600160a01b0384161480610bbb57506001600160a01b038316600090815260066020908152604080832033845290915290205460ff165b80610bdc57506000818152600560205260409020546001600160a01b031633145b610c195760405162461bcd60e51b815260206004820152600e60248201526d1393d517d055551213d49256915160921b6044820152606401610748565b6001600160a01b0380841660008181526004602090815260408083208054600019019055938616808352848320805460010190558583526003825284832080546001600160a01b03199081168317909155600590925284832080549092169091559251849392917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b610cb3838383610ae1565b6001600160a01b0382163b1580610d5c5750604051630a85bd0160e11b8082523360048301526001600160a01b03858116602484015260448301849052608060648401526000608484015290919084169063150b7a029060a4016020604051808303816000875af1158015610d2c573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610d509190611d7b565b6001600160e01b031916145b610d9b5760405162461bcd60e51b815260206004820152601060248201526f155394d0519157d49150d2541251539560821b6044820152606401610748565b505050565b610da861159f565b600980546001600160a01b0319166001600160a01b0392909216919091179055565b6000818152600360205260409020546001600160a01b0316806109de5760405162461bcd60e51b815260206004820152600a6024820152691393d517d3525395115160b21b6044820152606401610748565b60608082516040519150602081048252602082016020850160005b83811015610e4f578181015183820152602001610e37565b505050810160200160405292915050565b60006001600160a01b038216610ea75760405162461bcd60e51b815260206004820152600c60248201526b5a45524f5f4144445245535360a01b6044820152606401610748565b506001600160a01b031660009081526004602052604090205490565b610ecb61159f565b610ed560006115f9565b565b6000858152600360205260409020546001600160a01b0316610f2f57610efd3286611649565b60078054600090815260086020526040812087905581546001929190610f24908490611d98565b90915550610f889050565b6000858152600360205260409020546001600160a01b03163214610f8857600085815260036020526040908190205490516324f3f02560e21b81526001600160a01b039091166004820152326024820152604401610748565b6040518060600160405280856001600160a01b0316815260200184815260200183838080601f0160208091040260200160405190810160405280939291908181526020018383808284376000920182905250939094525050878152600a6020908152604091829020845181546001600160a01b0319166001600160a01b0390911617815590840151600182015590830151909150600282019061102b9082611df9565b5050505050505050565b6002805461064590611c7b565b3360008181526006602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b6000818152600a6020908152604080832081516060818101845282546001600160a01b0316825260018301549482019490945260028201805494959491938401916110f890611c7b565b80601f016020809104026020016040519081016040528092919081815260200182805461112490611c7b565b80156111715780601f1061114657610100808354040283529160200191611171565b820191906000526020600020905b81548152906001019060200180831161115457829003601f168201915b505050505081525050905061119381516001600160a01b0316600160801b1490565b156111a1576109d381610609565b60006111b0826000015161092a565b905060006111bf836020015190565b905060006111d084604001516107ad565b90506000836001600160a01b031683836040516020016111f1929190611eb9565b60408051601f198184030181529082905261120b91611eea565b600060405180830381855afa9150503d8060008114611246576040519150601f19603f3d011682016040523d82523d6000602084013e61124b565b606091505b5098975050505050505050565b600080611266600284611f06565b60019081149493901c92915050565b61127d61159f565b7f8dca0271872d00b3de3abafca544c52fcd7d512dd852c9894fa2c118ac759a93600283836040516112b193929190611fce565b60405180910390a16002610d9b828483611ffe565b6112d1858585610ae1565b6001600160a01b0384163b15806113685750604051630a85bd0160e11b808252906001600160a01b0386169063150b7a02906113199033908a908990899089906004016120be565b6020604051808303816000875af1158015611338573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061135c9190611d7b565b6001600160e01b031916145b6113a75760405162461bcd60e51b815260206004820152601060248201526f155394d0519157d49150d2541251539560821b6044820152606401610748565b5050505050565b6113b661159f565b7fb65b7b5ea384affd30f77f842e057d29dd1b13f133adf69a724a8105b164ab75600183836040516113ea93929190611fce565b60405180910390a16001610d9b828483611ffe565b6000818152600360205260409020546060906001600160a01b03168061143b57604051630243d1a960e21b815260048101849052602401610748565b6000611446846110ae565b6009546040516328de0f2f60e01b81529192506001600160a01b0316906328de0f2f9061147c90879085906001906004016120fd565b600060405180830381865afa158015611499573d6000803e3d6000fd5b505050506040513d6000823e601f3d908101601f191682016040526114c19190810190612128565b949350505050565b604080516060808201835260008083526020830181905292820152906114ee836110ae565b6040805160608101825285815260009586526003602090815295829020546001600160a01b0316958101959095528401525090919050565b61152e61159f565b6001600160a01b0381166115935760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610748565b61159c816115f9565b50565b6000546001600160a01b03163314610ed55760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610748565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b6001600160a01b0382166116935760405162461bcd60e51b81526020600482015260116024820152701253959053125117d49150d25412515395607a1b6044820152606401610748565b6000818152600360205260409020546001600160a01b0316156116e95760405162461bcd60e51b815260206004820152600e60248201526d1053149150511657d3525395115160921b6044820152606401610748565b6001600160a01b038216600081815260046020908152604080832080546001019055848352600390915280822080546001600160a01b0319168417905551839291907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b6001600160e01b03198116811461159c57600080fd5b60006020828403121561177c57600080fd5b81356109d381611754565b634e487b7160e01b600052604160045260246000fd5b604051601f8201601f1916810167ffffffffffffffff811182821017156117c6576117c6611787565b604052919050565b6001600160a01b038116811461159c57600080fd5b600067ffffffffffffffff8211156117fd576117fd611787565b50601f01601f191660200190565b600082601f83011261181c57600080fd5b813561182f61182a826117e3565b61179d565b81815284602083860101111561184457600080fd5b816020850160208301376000918101602001919091529392505050565b60006020828403121561187357600080fd5b813567ffffffffffffffff8082111561188b57600080fd5b908301906060828603121561189f57600080fd5b6040516060810181811083821117156118ba576118ba611787565b60405282356118c8816117ce565b8152602083810135908201526040830135828111156118e657600080fd5b6118f28782860161180b565b60408301525095945050505050565b60005b8381101561191c578181015183820152602001611904565b50506000910152565b6000815180845261193d816020860160208601611901565b601f01601f19169290920160200192915050565b6020815260006109d36020830184611925565b60006020828403121561197657600080fd5b5035919050565b6000806040838503121561199057600080fd5b823561199b816117ce565b946020939093013593505050565b6000602082840312156119bb57600080fd5b813567ffffffffffffffff8111156119d257600080fd5b6114c18482850161180b565b60018060a01b0384168152826020820152606060408201526000611a056060830184611925565b95945050505050565b600060208284031215611a2057600080fd5b81356109d3816117ce565b600080600060608486031215611a4057600080fd5b8335611a4b816117ce565b92506020840135611a5b816117ce565b929592945050506040919091013590565b6020808252825182820181905260009190848201906040850190845b81811015611aa457835183529284019291840191600101611a88565b50909695505050505050565b60008083601f840112611ac257600080fd5b50813567ffffffffffffffff811115611ada57600080fd5b602083019150836020828501011115611af257600080fd5b9250929050565b600080600080600060808688031215611b1157600080fd5b853594506020860135611b23816117ce565b935060408601359250606086013567ffffffffffffffff811115611b4657600080fd5b611b5288828901611ab0565b969995985093965092949392505050565b60008060408385031215611b7657600080fd5b8235611b81816117ce565b915060208301358015158114611b9657600080fd5b809150509250929050565b60008060208385031215611bb457600080fd5b823567ffffffffffffffff811115611bcb57600080fd5b611bd785828601611ab0565b90969095509350505050565b600080600080600060808688031215611bfb57600080fd5b8535611c06816117ce565b94506020860135611b23816117ce565b602081528151602082015260018060a01b036020830151166040820152600060408301516060808401526114c16080840182611925565b60008060408385031215611c6057600080fd5b8235611c6b816117ce565b91506020830135611b96816117ce565b600181811c90821680611c8f57607f821691505b602082108103611caf57634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052603260045260246000fd5b80516020808301519190811015611caf5760001960209190910360031b1b16919050565b60008351611d01818460208801611901565b9190910191825250602001919050565b634e487b7160e01b600052601160045260246000fd5b600060018201611d3957611d39611d11565b5060010190565b604081526000611d536040830185611925565b90508260208301529392505050565b600060208284031215611d7457600080fd5b5051919050565b600060208284031215611d8d57600080fd5b81516109d381611754565b8082018082111561060357610603611d11565b601f821115610d9b57600081815260208120601f850160051c81016020861015611dd25750805b601f850160051c820191505b81811015611df157828155600101611dde565b505050505050565b815167ffffffffffffffff811115611e1357611e13611787565b611e2781611e218454611c7b565b84611dab565b602080601f831160018114611e5c5760008415611e445750858301515b600019600386901b1c1916600185901b178555611df1565b600085815260208120601f198616915b82811015611e8b57888601518255948401946001909101908401611e6c565b5085821015611ea95787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b6001600160e01b0319831681528151600090611edc816004850160208701611901565b919091016004019392505050565b60008251611efc818460208701611901565b9190910192915050565b600082611f2357634e487b7160e01b600052601260045260246000fd5b500690565b60008154611f3581611c7b565b808552602060018381168015611f525760018114611f6c57611f9a565b60ff1985168884015283151560051b880183019550611f9a565b866000528260002060005b85811015611f925781548a8201860152908301908401611f77565b890184019650505b505050505092915050565b81835281816020850137506000828201602090810191909152601f909101601f19169091010190565b604081526000611fe16040830186611f28565b8281036020840152611ff4818587611fa5565b9695505050505050565b67ffffffffffffffff83111561201657612016611787565b61202a836120248354611c7b565b83611dab565b6000601f84116001811461205e57600085156120465750838201355b600019600387901b1c1916600186901b1783556113a7565b600083815260209020601f19861690835b8281101561208f578685013582556020948501946001909201910161206f565b50868210156120ac5760001960f88860031b161c19848701351681555b505060018560011b0183555050505050565b6001600160a01b03868116825285166020820152604081018490526080606082018190526000906120f29083018486611fa5565b979650505050505050565b8381526060602082015260006121166060830185611925565b8281036040840152611ff48185611f28565b60006020828403121561213a57600080fd5b815167ffffffffffffffff81111561215157600080fd5b8201601f8101841361216257600080fd5b805161217061182a826117e3565b81815285602083850101111561218557600080fd5b611a0582602083016020860161190156fea26469706673582212203fc548aa4f22e6f4c01757ba3f2e0383630418b3d17601758718ab19a4d9918d64736f6c63430008110033a26469706673582212207932e8c793f9a96d9606a8907a6671f54c0fb1ed5a763048e13b429274e7706c64736f6c634300081100330000000000000000000000009fe46736679d2d9a65f0992f2272de9f3c7fa6e0000000000000000000000000000000000000000000000000002386f26fc10000", + "nonce": "0x4", + "accessList": [] + }, + "additionalContracts": [], + "isFixedGasLimit": false + } + ], + "receipts": [ + { + "transactionHash": "0xfb04d6c6b1e9f9378a1ec3cfd8f86c712379c2a9a898c24d0ae06ead6fb87858", + "transactionIndex": "0x0", + "blockHash": "0x4ac92ea29ac7d7eaedc4eb01c7a294604f97b307a16b217dc2c925dcd5aa76c0", + "blockNumber": "0x1", + "from": "0xf39Fd6e51aad88F6F4ce6aB8827279cffFb92266", + "to": null, + "cumulativeGasUsed": "0xf072b", + "gasUsed": "0xf072b", + "contractAddress": "0x5FbDB2315678afecb367f032d93F642f64180aa3", + "logs": [], + "status": "0x1", + "logsBloom": "0x00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", + "type": "0x2", + "effectiveGasPrice": "0xee6b2800" + }, + { + "transactionHash": "0x3eed361770e2dcc9a97a4cdf1a955543fd69a6096e37bb0e257a7208a08c6dde", + "transactionIndex": "0x0", + "blockHash": "0xdd02cfa9ff74ea36304f19eedafb55e659ff3e2e5a7bb657ed4ed28252bd3d75", + "blockNumber": "0x2", + "from": "0xf39Fd6e51aad88F6F4ce6aB8827279cffFb92266", + "to": null, + "cumulativeGasUsed": "0x23ab5", + "gasUsed": "0x23ab5", + "contractAddress": "0xe7f1725E7734CE288F8367e1Bb143E90bb3F0512", + "logs": [], + "status": "0x1", + "logsBloom": "0x00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", + "type": "0x2", + "effectiveGasPrice": "0xe7750a7c" + }, + { + "transactionHash": "0xfa26a5b6e297a0b5aa632035548d06ea04efb783d4713353476f25876c532b2a", + "transactionIndex": "0x0", + "blockHash": "0xc826b5aaf604cdb2ace5a46c79f310da45d09029a4fdba38dd3a0ddfde1ee934", + "blockNumber": "0x3", + "from": "0xf39Fd6e51aad88F6F4ce6aB8827279cffFb92266", + "to": null, + "cumulativeGasUsed": "0x2616fd", + "gasUsed": "0x2616fd", + "contractAddress": "0x9fE46736679d2D9a65F0992F2272dE9f3c7fa6e0", + "logs": [], + "status": "0x1", + "logsBloom": "0x00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", + "type": "0x2", + "effectiveGasPrice": "0xe0f0dd5d" + }, + { + "transactionHash": "0x3de75e0187d1300847016f9712d9bad87f0de9d06ecc20887ff85b8562563c90", + "transactionIndex": "0x1", + "blockHash": "0xc826b5aaf604cdb2ace5a46c79f310da45d09029a4fdba38dd3a0ddfde1ee934", + "blockNumber": "0x3", + "from": "0xf39Fd6e51aad88F6F4ce6aB8827279cffFb92266", + "to": null, + "cumulativeGasUsed": "0x29452b", + "gasUsed": "0x32e2e", + "contractAddress": "0xCf7Ed3AccA5a467e9e704C703E8D87F634fB0Fc9", + "logs": [], + "status": "0x1", + "logsBloom": "0x00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", + "type": "0x2", + "effectiveGasPrice": "0xe0f0dd5d" + }, + { + "transactionHash": "0x9b429d2fd55ffc6fa8696728d353fd418da33819473cfb47ddf43569b706759b", + "transactionIndex": "0x2", + "blockHash": "0xc826b5aaf604cdb2ace5a46c79f310da45d09029a4fdba38dd3a0ddfde1ee934", + "blockNumber": "0x3", + "from": "0xf39Fd6e51aad88F6F4ce6aB8827279cffFb92266", + "to": null, + "cumulativeGasUsed": "0x51db7f", + "gasUsed": "0x289654", + "contractAddress": "0xDc64a140Aa3E981100a9becA4E685f962f0cF6C9", + "logs": [ + { + "address": "0xDc64a140Aa3E981100a9becA4E685f962f0cF6C9", + "topics": [ + "0x8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0", + "0x0000000000000000000000000000000000000000000000000000000000000000", + "0x000000000000000000000000f39fd6e51aad88f6f4ce6ab8827279cfffb92266" + ], + "data": "0x", + "blockHash": "0xc826b5aaf604cdb2ace5a46c79f310da45d09029a4fdba38dd3a0ddfde1ee934", + "blockNumber": "0x3", + "transactionHash": "0x9b429d2fd55ffc6fa8696728d353fd418da33819473cfb47ddf43569b706759b", + "transactionIndex": "0x2", + "logIndex": "0x2", + "transactionLogIndex": "0x0", + "removed": false + } + ], + "status": "0x1", + "logsBloom": "0x00000000000000000000000000000000000000000000000000800000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000020000000000000100000800000000000000000000000000000000400000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000200000000000000000000000002020000000000000000020000000000000000000000000000000000000000001000000000100000000000000", + "type": "0x2", + "effectiveGasPrice": "0xe0f0dd5d" + } + ], + "libraries": [ + "lib/eth-projects-monorepo/packages/eth-projects-contracts/contracts/lib/utils/Bytes.sol:Bytes:0x5fbdb2315678afecb367f032d93f642f64180aa3" + ], + "pending": [], + "returns": {}, + "timestamp": 1689598532, + "chain": 31337, + "multi": false, + "commit": "ecfc308" +} \ No newline at end of file diff --git a/packages/starksheet-solidity/broadcast/Evmsheet.s.sol/31337/run-1689674959.json b/packages/starksheet-solidity/broadcast/Evmsheet.s.sol/31337/run-1689674959.json new file mode 100644 index 00000000..d78aa20f --- /dev/null +++ b/packages/starksheet-solidity/broadcast/Evmsheet.s.sol/31337/run-1689674959.json @@ -0,0 +1,209 @@ +{ + "transactions": [ + { + "hash": "0xfb04d6c6b1e9f9378a1ec3cfd8f86c712379c2a9a898c24d0ae06ead6fb87858", + "transactionType": "CREATE", + "contractName": "Bytes", + "contractAddress": "0x5FbDB2315678afecb367f032d93F642f64180aa3", + "function": null, + "arguments": null, + "transaction": { + "type": "0x02", + "from": "0xf39fd6e51aad88f6f4ce6ab8827279cfffb92266", + "gas": "0x1387ed", + "data": "0x6110d661003a600b82828239805160001a60731461002d57634e487b7160e01b600052600060045260246000fd5b30600052607381538281f3fe73000000000000000000000000000000000000000030146080604052600436106101625760003560e01c8063a5eb31ee116100cd578063d1ffb56111610086578063d1ffb561146103fb578063d442584f1461042b578063e004139614610454578063f1142fb314610474578063f647f8fb14610487578063f83b670f146104b257600080fd5b8063a5eb31ee14610344578063a8d8f00f1461036b578063b5cdf92414610396578063b63711df146103a9578063be8b3430146103bc578063c29616bd146103cf57600080fd5b80635ef849301161011f5780635ef8493014610241578063913c97b41461026b57806397e6175c1461029f57806399dd9bd7146102cb5780639ae4c3d1146102ec5780639cee499e1461031857600080fd5b8063042aa0841461016757806305d3bb74146101985780631a7431ef146101c0578063235266d2146101e357806348137709146101f65780634d66a2ae1461021b575b600080fd5b61017a610175366004610ec0565b6104de565b6040516001600160d01b031990911681526020015b60405180910390f35b6101ab6101a6366004610ec0565b610540565b60405163ffffffff909116815260200161018f565b6101d36101ce366004610f05565b61059d565b604051901515815260200161018f565b6101d36101f1366004610f4c565b610652565b610209610204366004610ec0565b6106b5565b60405160ff909116815260200161018f565b61022e610229366004610fa6565b610711565b60405161ffff909116815260200161018f565b61025461024f366004610ec0565b61071e565b60405165ffffffffffff909116815260200161018f565b61027e610279366004610ec0565b610772565b6040516fffffffffffffffffffffffffffffffff909116815260200161018f565b6102b26102ad366004610ec0565b6107d0565b6040516001600160a01b0319909116815260200161018f565b6102de6102d9366004610ec0565b61082e565b60405190815260200161018f565b6102ff6102fa366004610ec0565b61088c565b60405167ffffffffffffffff909116815260200161018f565b61032b610326366004610ec0565b6108e9565b6040516001600160d81b0319909116815260200161018f565b610357610352366004610ec0565b610946565b60405162ffffff909116815260200161018f565b61037e610379366004610ec0565b6109a3565b60405166ffffffffffffff909116815260200161018f565b6102de6103a4366004610ec0565b610a00565b6102ff6103b7366004610ec0565b610a55565b61022e6103ca366004610ec0565b610aa9565b6103e26103dd366004610ec0565b610b06565b6040516001600160c81b0319909116815260200161018f565b61040e610409366004610ec0565b610b5a565b6040516bffffffffffffffffffffffff909116815260200161018f565b61043e610439366004610ec0565b610bae565b60405164ffffffffff909116815260200161018f565b610467610462366004610fe3565b610c02565b60405161018f9190611031565b6102b2610482366004610ec0565b610d0f565b61049a610495366004610ec0565b610d64565b6040516001600160a01b03909116815260200161018f565b6104c56104c0366004610ec0565b610dc9565b6040516001600160f81b0319909116815260200161018f565b60006104eb82600661107f565b835110156105375760405162461bcd60e51b8152602060048201526014602482015273746f4279746573365f6f75744f66426f756e647360601b60448201526064015b60405180910390fd5b50016006015190565b600061054d82600461107f565b835110156105945760405162461bcd60e51b8152602060048201526014602482015273746f55696e7433325f6f75744f66426f756e647360601b604482015260640161052e565b50016004015190565b600080600190508354600260018083161561010002038216048451808214600181146105cc5760009450610644565b821561064457602083106001811461062957600189600052602060002060208a018581015b600284828410010361062057815183541461060f5760009950600093505b6001830192506020820191506105f1565b50505050610642565b6101008086040294506020880151851461064257600095505b505b509293505050505b92915050565b81518151600091600191811480831461066e57600092506106ab565b600160208701838101602088015b60028483851001036106a657805183511461069a5760009650600093505b6020928301920161067c565b505050505b5090949350505050565b60006106c282600161107f565b835110156107085760405162461bcd60e51b8152602060048201526013602482015272746f55696e74385f6f75744f66426f756e647360681b604482015260640161052e565b50016001015190565b600061064c826000610aa9565b600061072b82600661107f565b835110156105375760405162461bcd60e51b8152602060048201526014602482015273746f55696e7434385f6f75744f66426f756e647360601b604482015260640161052e565b600061077f82601061107f565b835110156107c75760405162461bcd60e51b8152602060048201526015602482015274746f55696e743132385f6f75744f66426f756e647360581b604482015260640161052e565b50016010015190565b60006107dd82600c61107f565b835110156108255760405162461bcd60e51b8152602060048201526015602482015274746f427974657331325f6f75744f66426f756e647360581b604482015260640161052e565b5001600c015190565b600061083b82602061107f565b835110156108835760405162461bcd60e51b8152602060048201526015602482015274746f427974657333325f6f75744f66426f756e647360581b604482015260640161052e565b50016020015190565b600061089982600861107f565b835110156108e05760405162461bcd60e51b8152602060048201526014602482015273746f55696e7436345f6f75744f66426f756e647360601b604482015260640161052e565b50016008015190565b60006108f682600561107f565b8351101561093d5760405162461bcd60e51b8152602060048201526014602482015273746f4279746573355f6f75744f66426f756e647360601b604482015260640161052e565b50016005015190565b600061095382600361107f565b8351101561099a5760405162461bcd60e51b8152602060048201526014602482015273746f55696e7432345f6f75744f66426f756e647360601b604482015260640161052e565b50016003015190565b60006109b082600761107f565b835110156109f75760405162461bcd60e51b8152602060048201526014602482015273746f55696e7435365f6f75744f66426f756e647360601b604482015260640161052e565b50016007015190565b6000610a0d82602061107f565b835110156108835760405162461bcd60e51b8152602060048201526015602482015274746f55696e743235365f6f75744f66426f756e647360581b604482015260640161052e565b6000610a6282600861107f565b835110156108e05760405162461bcd60e51b8152602060048201526014602482015273746f4279746573385f6f75744f66426f756e647360601b604482015260640161052e565b6000610ab682600261107f565b83511015610afd5760405162461bcd60e51b8152602060048201526014602482015273746f55696e7431365f6f75744f66426f756e647360601b604482015260640161052e565b50016002015190565b6000610b1382600761107f565b835110156109f75760405162461bcd60e51b8152602060048201526014602482015273746f4279746573375f6f75744f66426f756e647360601b604482015260640161052e565b6000610b6782600c61107f565b835110156108255760405162461bcd60e51b8152602060048201526014602482015273746f55696e7439365f6f75744f66426f756e647360601b604482015260640161052e565b6000610bbb82600561107f565b8351101561093d5760405162461bcd60e51b8152602060048201526014602482015273746f55696e7434305f6f75744f66426f756e647360601b604482015260640161052e565b606081610c1081601f61107f565b1015610c4f5760405162461bcd60e51b815260206004820152600e60248201526d736c6963655f6f766572666c6f7760901b604482015260640161052e565b610c59828461107f565b84511015610c9d5760405162461bcd60e51b8152602060048201526011602482015270736c6963655f6f75744f66426f756e647360781b604482015260640161052e565b606082158015610cbc5760405191506000825260208201604052610d06565b6040519150601f8416801560200281840101858101878315602002848b0101015b81831015610cf5578051835260209283019201610cdd565b5050858452601f01601f1916604052505b50949350505050565b6000610d1c82601061107f565b835110156107c75760405162461bcd60e51b8152602060048201526015602482015274746f427974657331365f6f75744f66426f756e647360581b604482015260640161052e565b6000610d7182601461107f565b83511015610db95760405162461bcd60e51b8152602060048201526015602482015274746f416464726573735f6f75744f66426f756e647360581b604482015260640161052e565b500160200151600160601b900490565b6000610dd682600161107f565b835110156107085760405162461bcd60e51b8152602060048201526014602482015273746f4279746573315f6f75744f66426f756e647360601b604482015260640161052e565b634e487b7160e01b600052604160045260246000fd5b600082601f830112610e4457600080fd5b813567ffffffffffffffff80821115610e5f57610e5f610e1d565b604051601f8301601f19908116603f01168101908282118183101715610e8757610e87610e1d565b81604052838152866020858801011115610ea057600080fd5b836020870160208301376000602085830101528094505050505092915050565b60008060408385031215610ed357600080fd5b823567ffffffffffffffff811115610eea57600080fd5b610ef685828601610e33565b95602094909401359450505050565b60008060408385031215610f1857600080fd5b82359150602083013567ffffffffffffffff811115610f3657600080fd5b610f4285828601610e33565b9150509250929050565b60008060408385031215610f5f57600080fd5b823567ffffffffffffffff80821115610f7757600080fd5b610f8386838701610e33565b93506020850135915080821115610f9957600080fd5b50610f4285828601610e33565b600060208284031215610fb857600080fd5b813567ffffffffffffffff811115610fcf57600080fd5b610fdb84828501610e33565b949350505050565b600080600060608486031215610ff857600080fd5b833567ffffffffffffffff81111561100f57600080fd5b61101b86828701610e33565b9660208601359650604090950135949350505050565b600060208083528351808285015260005b8181101561105e57858101830151858201604001528201611042565b506000604082860101526040601f19601f8301168501019250505092915050565b8082018082111561064c57634e487b7160e01b600052601160045260246000fdfea26469706673582212208ffe93db15f03a6fd0c59ab94e8e6a84e4561b6982e8824dafaf837546cfb2c764736f6c63430008140033", + "nonce": "0x0", + "accessList": [] + }, + "additionalContracts": [], + "isFixedGasLimit": false + }, + { + "hash": "0x3eed361770e2dcc9a97a4cdf1a955543fd69a6096e37bb0e257a7208a08c6dde", + "transactionType": "CREATE", + "contractName": "MultiSendCallOnly", + "contractAddress": "0xe7f1725E7734CE288F8367e1Bb143E90bb3F0512", + "function": null, + "arguments": null, + "transaction": { + "type": "0x02", + "from": "0xf39fd6e51aad88f6f4ce6ab8827279cfffb92266", + "gas": "0x2e5c4", + "value": "0x0", + "data": "0x608060405234801561001057600080fd5b506101ae806100206000396000f3fe60806040526004361061001e5760003560e01c80638d80ff0a14610023575b600080fd5b6100366100313660046100c7565b610038565b005b805160205b818110156100ac578083015160f81c6001820184015160601c601583018501516035840186015160558501870160008560008114610082576001811461001e5761008e565b6000808585888a5af191505b508061009957600080fd5b505080605501850194505050505061003d565b505050565b634e487b7160e01b600052604160045260246000fd5b6000602082840312156100d957600080fd5b813567ffffffffffffffff808211156100f157600080fd5b818401915084601f83011261010557600080fd5b813581811115610117576101176100b1565b604051601f8201601f19908116603f0116810190838211818310171561013f5761013f6100b1565b8160405282815287602084870101111561015857600080fd5b82602086016020830137600092810160200192909252509594505050505056fea2646970667358221220c15490bbb756a4c3c49d6335b2e81d2d098647b0ea70174c2279f199b1d0800364736f6c63430008110033", + "nonce": "0x1", + "accessList": [] + }, + "additionalContracts": [], + "isFixedGasLimit": false + }, + { + "hash": "0xfa26a5b6e297a0b5aa632035548d06ea04efb783d4713353476f25876c532b2a", + "transactionType": "CREATE", + "contractName": "BasicCellRenderer", + "contractAddress": "0x9fE46736679d2D9a65F0992F2272dE9f3c7fa6e0", + "function": null, + "arguments": null, + "transaction": { + "type": "0x02", + "from": "0xf39fd6e51aad88f6f4ce6ab8827279cfffb92266", + "gas": "0x3180ad", + "value": "0x0", + "data": "0x608060405234801561001057600080fd5b50612c25806100206000396000f3fe608060405234801561001057600080fd5b50600436106100365760003560e01c806306d4cd8b1461003b57806328de0f2f14610064575b600080fd5b61004e610049366004610322565b610077565b60405161005b919061038b565b60405180910390f35b61004e610072366004610404565b6100f1565b60606000610086600f846104fc565b90506000610095600f8361051e565b61009f9085610535565b905060006100ae826041610548565b60f81b9050806100c76100c2856001610548565b6101b6565b6040516020016100d8929190610577565b6040516020818303038152906040529350505050919050565b606060006100fe86610077565b905083838261018388735fbdb2315678afecb367f032d93f642f64180aa363b5cdf924909160006040518363ffffffff1660e01b81526004016101429291906105a8565b602060405180830381865af415801561015f573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906100c291906105ca565b87878660405160200161019c97969594939291906105f2565b604051602081830303815290604052915050949350505050565b606060006101c383610249565b600101905060008167ffffffffffffffff8111156101e3576101e36103a5565b6040519080825280601f01601f19166020018201604052801561020d576020820181803683370190505b5090508181016020015b600019016f181899199a1a9b1b9c1cb0b131b232b360811b600a86061a8153600a850494508461021757509392505050565b60008072184f03e93ff9f4daa797ed6e38ed64bf6a1f0160401b83106102885772184f03e93ff9f4daa797ed6e38ed64bf6a1f0160401b830492506040015b6d04ee2d6d415b85acef810000000083106102b4576d04ee2d6d415b85acef8100000000830492506020015b662386f26fc1000083106102d257662386f26fc10000830492506010015b6305f5e10083106102ea576305f5e100830492506008015b61271083106102fe57612710830492506004015b60648310610310576064830492506002015b600a831061031c576001015b92915050565b60006020828403121561033457600080fd5b5035919050565b60005b8381101561035657818101518382015260200161033e565b50506000910152565b6000815180845261037781602086016020860161033b565b601f01601f19169290920160200192915050565b60208152600061039e602083018461035f565b9392505050565b634e487b7160e01b600052604160045260246000fd5b60008083601f8401126103cd57600080fd5b50813567ffffffffffffffff8111156103e557600080fd5b6020830191508360208285010111156103fd57600080fd5b9250929050565b6000806000806060858703121561041a57600080fd5b84359350602085013567ffffffffffffffff8082111561043957600080fd5b818701915087601f83011261044d57600080fd5b81358181111561045f5761045f6103a5565b604051601f8201601f19908116603f01168101908382118183101715610487576104876103a5565b816040528281528a60208487010111156104a057600080fd5b8260208601602083013760006020848301015280975050505060408701359150808211156104cd57600080fd5b506104da878288016103bb565b95989497509550505050565b634e487b7160e01b600052601160045260246000fd5b60008261051957634e487b7160e01b600052601260045260246000fd5b500490565b808202811582820484141761031c5761031c6104e6565b8181038181111561031c5761031c6104e6565b8082018082111561031c5761031c6104e6565b6000815161056d81856020860161033b565b9290920192915050565b6001600160f81b031983168152815160009061059a81600185016020870161033b565b919091016001019392505050565b6040815260006105bb604083018561035f565b90508260208301529392505050565b6000602082840312156105dc57600080fd5b5051919050565b81818437506000910190815290565b7f646174613a6170706c69636174696f6e2f6a736f6e2c7b22646573637269707481527f696f6e223a2022537461726b7368656574222c20226e616d65223a202200000060208201528688603d8301376000878201602160f81b603d820152875161066481603e840160208c0161033b565b7f222c22696d616765223a2022646174613a696d6167652f7376672b786d6c2c25603e92909101918201527f334373766725323076696577426f782533442532373025323030253230383925605e8201527f3230353525323725323066696c6c2533442532376e6f6e65253237253230786d607e8201527f6c6e73253344253237687474702533412f2f7777772e77332e6f72672f323030609e8201527f302f737667253237253345253343646566732533452533437374796c6525334560be8201527f253430666f6e742d66616365253230253742666f6e742d66616d696c7925334160de8201527f253230253237507265737325323053746172742532303250253237253342737260fe8201527f6325334125323075726c25323825323764617461253341666f6e742f776f666661011e8201527f32253342626173653634253243643039474d6741424141414141424c3841413861013e8201527f41414141415235774141424b674141454141414141414141414141414141414161015e8201527f4141414141414141414141414150305a4756453063476a41624d42794358675a61017e8201527f6741494e794551674b3846545361517544524141424e67496b41344e4d42434161019e8201527f46687a5148684649623644566c42306a314f4d4253336f4f4953744562732f2f6101be8201527f2f6c4a776356727a47634f30676f684c45484d6369694443434e57695a6761306101de8201527f79625345555954514f6a4b427038546c737a7344526438716174586c333058746101fe8201527f30645a47467952305668444b776c62746c25324272734643773945316e64655961021e8201527f4a74732f37527762305673784d71576c636a6a775445537a2f5568752f77337361023e8201527f33746b6f496d70343464515168576f456d54337579526d70746f7553446b7a5761025e8201527f454138762f3932364a4b7539486f696e6e3673376674336d4965476c7737547161027e8201527f6437456f326a46517849766a5642494a70563269614f62547a68575932314e7461029e8201527f476772687434704d4b3457556a34624c7967542f51253242514c7879253242336102be8201527f6c482f362f6b6275496444497239446a724a496a6f394a7336524d58253242456102de8201527f6b37424f545a6b6d70397a347455524652566656307148504448375a7462364a6102fe8201527f616f6130684c335975616232473373667a72365776394536793569767025324261031e8201527f7135564c74426a514478476f5345304150313762336466376c61726a6525324261033e8201527f73637a6b7241744a334b6657304a342532424b323365744b4b556a383554616f61035e8201527f57473453346158436c427743413268676141652532423658396f696e32304e6261037e8201527f554a7264466767517049686d5247494d30372f7025324277375a7058316c473161039e8201527f6a6a51787073435141423438714445415042346950312f6a39592f4261686a356103be8201527f5943414e302f78714157496852616a6c6e694e654f50396e78433466667932556103de8201527f694843304e47386b686f6f567a6f7459334445417a417a41356b473735337a6a6103fe8201527f4853354d6e6d586b69496a6d54554d36556d4d3025324256346976752f48377861041e8201527f6a364666322f6b343472787a6449324141676742492f4c48416b394a7a35554d61043e8201527f496f4c7755344146455435725a464f33444d616655633061777351434879497061045e8201527f557a546b30784a474a454f6a4e6871436b474570496153474f6a714e466d2f5761047e8201527f4e434e3569636b71434d6e414165564c4d4c655867356971386b365752585a5261049e8201527f326c337042393831427a73475a743225324256696c4342723954494a674b67786104be8201527f365542514446253242566a4b44714e7741414948386a6949664d6e75384b68666104de8201527f584b486f4e3348634134477245786842324155442f795a554d423857547579496104fe8201527f413444634f4b656434397939504249616e426967734d454e38556b30766c547661051e8201527f304a58334e394d795a75544d763573655357413525324238556538504465547261053e8201527f645467474973566d4e33635856586a6463795275633434385866664176506e7361055e8201527f3575324d4531722532426a4731703137767a3849704f416e483444427367793361057e8201527f512f54376b33646d2f3846334232377355694877464631414f6c683055646e4961059e8201527f4471494e5164506355393145786f2f346252696a6a5169704e4e307a4c646c7a6105be8201527f504438496f547449734c38717162746f4f5149514a5a567849705931315073536105de8201527f55533231397a4c585066642f507667765751346372464d2532425769755671706105fe8201527f645a6f4e6475645872632f4745324d4a36656e3575635746694763375274364f61061e8201527f487676354d674c2532427a44733578444277696141315433554877326b63594361063e8201527f312f55666453316645316d37763742346537653350574848786533594f32483561065e8201527f25324241504f5a7965503025324251506553425468793078713965363241486a61067e8201527f6141556842432f364144484c6f476f4f657636412532426867487369317a613861069e8201527f71355a4e4d716a596c575a4d713867354248445574495370574a73526f52544a6106be8201527f56613049305a3957546b5371564b73507a3464586a7648746449684c6e7670746106de8201527f554c4330753542567579414d544b4a513930594b5267546e5769476b6d7153456106fe8201527f714b6d7256685259674b6b335443686255573671456f45637665577a6859535461071e8201527f4c32484e706735452f6d7151393956564467763352475435586d33637a68754c61073e8201527f3972685864316132372f736c5130686959366a643739614f5a43746a6f52687261075e8201527f623136575676514b725734477a786a7869723238494d697a2f7155447973495761077e8201527f7037516a667765347a556437614a735651575179524c554b484b42577938577661079e8201527f45565333584d53353656337757644f442532424638757639645477496d4b722f6107be8201527f5064626d5763775176456641616a7975566a70784e32704f56635769336c38776107de8201527f454c2f6d395070646f55494536253242504b5838315041546d67654f304231736107fe8201527f47454825324261707a353466646d534a7a333741686635366a4c7739756e504561081e8201527f35644d4b3025324237544639563843435466523979664e7355493474557a464661083e8201527f42326e536e384b4f626a64446964554c7034494a6873777878595172595a643661085e8201527f4e76436e55394d445825324252654c6e4d546d6c315a453972306b5077334e3261087e8201527f6752253242736a4573596d4953706b356c31497333594e614a4b6f6e7a65703761089e8201527f56637354316e556b62347048774b5a41796b614b6f43504630506f6d456876496108be8201527f5758656e6f5a767836774f4b313070316c3274546858793850316555776473766108de8201527f53715157766f424d7473674851554a614774494273756861776450545a5378596108fe8201527f707257757734647a7231564755744449465871726f4d4d69597346783857695461091e8201527f336463574b6f376d50554c79715657413972305974524a4c626957766a6e4c2561093e8201527f324272633452646767624e516c514141613264306d616236364d48447074314361095e8201527f6477626b51436253375053445a4d7a3746724f51713165636153304a6c74644161097e8201527f6c44527941587173364130586247707748676b70367572557757416272464d3361099e8201527f75794d764e4b6c344d6c435548537950416d3931776144454a3559595148754a6109be8201527f4d32304b575251737637486b61334770686c533258444b714f4b4245554753316109de8201527f65306b63316f323449494166486c4449794278584a4a656767423369386174566109fe8201527f67434f3064444f5a484a57596a564c416a6a397137765673456e72684b374568610a1e8201527f4c75427a42586d4d674554634531636d61436976504b6f4a766670466c794935610a3e8201527f4d70584234454325324245672f596d303454787843354e6c73596b74646f5951610a5e8201527f55656c38624673456c3748345a36734377622f38626b347458574658504b6a71610a7e8201527f5462526e64336e4c5770394f784941706c664b586747684e6c72443462354a4c610a9e8201527f5a367055753441726756614d366561357844574244476f7a707a4641376e6747610abe8201527f74596334486141775269475576637653653652414177335a576b564f4667764b610ade8201527f46364955696c4d49394964715155345134585264484866736666517770313955610afe8201527f434a49306a5773725433356f5578303678507268473271364d4533554f306c63610b1e8201527f635a557354454351784a44527854444b6c334c4948722f6162546f73686c6466610b3e8201527f51786a364f57745273466e6966444373473674336b426f344e6d424a6d615556610b5e8201527f54636c794951414a4c6a6e723042365a3859464d6e396b397967703752727848610b7e8201527f36766877624a4e41654b4d554436353974386746514a4d5377652f434f624850610b9e8201527f467671484746554e5266253242737245663354584b42725a76676b6369396972610bbe8201527f426d63442f7458616754474358634e68432532424f3539754c706e6673796f71610bde8201527f4c53313238374552776d38666165564f6d3857634437386c5a36594232793938610bfe8201527f5a4c6c4d3972557264324c514e6c324956643454727376675139363079377573610c1e8201527f5965306854506170576a71726c2532425837784665424e54253242315a644a4a610c3e8201527f572532424678745737584e7774634e7a7761672532425256656a6d4a6839656d610c5e8201527f6c495a4b69694e63694b3849554f4d33556a4a376342554e5847505853326c68610c7e8201527f253242687770676f4836567348524f63764569723372585970344c7769435a77610c9e8201527f3176486c43623552314d68623564536e4f326d6e6f475a6f5846315765574757610cbe8201527f6d7a694a314a555534715072306e694a536c4e424331636b4b6d4a6657625877610cde8201527f5577757449547a456d6a776770776142753464525066746a2f4e384143526e64610cfe8201527f616b2f4641674b674c37305058577839767a6b59322532426d34355473496b4c610d1e8201527f3037616f70444e6f676830535262535a534f397a744657516a376e574c676275610d3e8201527f364325324254374b6a44715a3667456e5277674d78306b4c5a77797962514f76610d5e8201527f514130773054782f354a42722f63595a6453574f546a774446364e6f586b796a610d7e8201527f33566a484e4751494e76426a5a734a4a3377466141516d6f5a575a5970416961610d9e8201527f574f466e6e686455524176576b557a77693062677a5a4158796f445545714863610dbe8201527f57307069454c574f777168773365765478444957724e32495371525151454c41610dde8201527f4d32365334486c723548552f48784a43436844424a6b756b6341573856415430610dfe8201527f6770545a544b4e48677a444f7234314751656a4f34677a416e6b577077464752610e1e8201527f43334c625231787a4b434875365635694674674c704f384b51596d5965467868610e3e8201527f4c32643838736469506a2f76306b427a636c51637954735766324d6445394944610e5e8201527f386d5858576a72434b253242354532756e336e6976656973526e726971317548610e7e8201527f594d6a6a69694945304b6466674d6f3163476d6b557254624f30356732737633610e9e8201527f477673525971762f61457736375472644f705435567a4641364131417939634b610ebe8201527f6f44667762544a64445750524e57517354796a6d3772486249734b466b6f4f2f610ede8201527f5a4c4376735966785973337768534338614c49344b765677373773336e347a48610efe8201527f67697061634a6e435362463945727a53357069386343577655597a4f5064327a610f1e8201527f684a2f4750437a53684f453378596c634f3350796164586a54334f6b68706841610f3e8201527f58465853766865544e5355525446565641486f4a6d7949726b6a454b6f517746610f5e8201527f4730303554334158643935764e30446d336d427332786746546c253242513572610f7e8201527f73416a6e744768707a6f62643642374e7a52664e56653130446f4e5639343753610f9e8201527f59646f635252624776636d785456786f61367a717756376d416e773544314745610fbe8201527f5474327a48382532425476514256356e37672f32615768743979794e594c3974610fde8201527f4f42744167384846435945316d4e775432454232467538544968543776565241610ffe8201527f3461587a6e6b3670545a4e6779696f73747749364b654655374c696c7041253261101e8201527f42334234474a794277574d327062466a4876734a3747754f6f616b6a6d46746a61103e8201527f59344c6254396c323239253242453646374c4475577a744c6e333749786b386a61105e8201527f356c42564b33774c7369362f416641756f6a34396c4d6b5653545045396b704761107e8201527f64304c724555534a4941413070596c4178414d642f4e4f46776f4a446458466961109e8201527f307a4f5744422f54464a705666575642574f516274724a556230636c663369256110be8201527f3242575072446f596c65545674564f45306d36793564487444725551776f414c6110de8201527f7455523365585364444d4e785866656a594674764c626c726c4a7777484b2f456110fe8201527f6957504a616b32574b35386e684e6f4c6a615a55475841756f32656f5777464561111e8201527f66612f445334496958717246714779633348726939785132693243352f73357661113e8201527f7a424d30793777334d4473774d3759325247427172464d6778374f696325324261115e8201527f30497a736d5678617a5473305263666a324f3334532f525639503269486f427561117e8201527f6c4b49594244665a46654c53356439725379664a64536c67683268644d72324f61119e8201527f5552334b6e6c506e4f41785477314a384c4d325a776e4671765a745a4a6c78786111be8201527f343873776243743272316b664875443756624831326159383849437456734b786111de8201527f4b742f31726b616c42414d74782f6f6f6d43445059626b556f4c6344624b436a6111fe8201527f7675713953544467746a584744715735564b36686347654f46697a6a3643714c61121e8201527f4f49716b57783477733245504d444e7378253242613661533230384f39784c3061123e8201527f526146586f394241645530706e452532424c695359334b536f4a41525978646e61125e8201527f7a69545a4d706961442f3438496969393834446151357976656378414673735761127e8201527f792f686274696d63253242704c386b35796f70496d4a627948712f6138797a6c61129e8201527f6c37726f4f7a586d786d4163337459585363546b65734d6344324939315a36336112be8201527f6549312f394a627755716b36737863394b52677277574d414e6543314e6e39756112de8201527f4779775473706d5538712532426c5a6d43714d674153363662674841476a514b6112fe8201527f73754a334451416a5235346d356a4c7a5a616e546c62646530253242726e663461131e8201527f385a574138546c32673277414779427748516e3552322532424e6a726542677861133e8201527f626c734e46627554776d6862414a48737a2f72416f61764c4f34317874767a5961135e8201527f4768336e4c4a426b41506a7578424a445248333048426575385567436978464e61137e8201527f437951322f4b253242385157372f6530253242664f2532423436524e5730657961139e8201527f4c726f39446a5467704a4e4d3547385179306c54644f756d73773066715045696113be8201527f393646702532424830634d774e6f376a787a596d6e4e664d5a6d64506c7932706113de8201527f6f7132575065476d67507136474c78504e34536c4b486e7870624f69754c58516113fe8201527f75583155715031676a6f38426136536c55314f416d5267707a7531735444584a61141e8201527f50754d3338546f387130344c324e777970653837327777556741675a6c70386461143e8201527f6b5166397a38544d43624d6b596b3758484375333564375a5a41656f346b5a4b61145e8201527f68784953386945354c546a334c4f6976485a7268394a3870337a4c5a436a776361147e8201527f6970354452694b6e576e49664c33386b4a684d7452776a67553525324256726d61149e8201527f714b6c6739307a376a64732f4238444b646b464c76483353253242376f4838616114be8201527f6c445a6c626734533155583574434d445342324f364b756c7a41344b763067376114de8201527f314251643054464b7733685358696e62374e6c304258725873514e6376436b386114fe8201527f6d6f394f786965783559627a78564e2f6b3738336f48545a495777393079495a61151e8201527f777672697164475473586e54384965705437597946434f4a6741395a3042794961153e8201527f455956735478522f6b73616b324268376f4b767034766e695530364d57317a4261155e8201527f4672746568647a306b6b587951786a426d7965645636644d596545386146787461157e8201527f6575777355466136466c6c54446c716430707a525a77473663467266574d627061159e8201527f384738587a6a66624d253242354658657076356f457273696c363458783663376115be8201527f5841576275696d3666387347494d58666f334a6971476b703333376854536a676115de8201527f65636862364f42472f327a31376a6f6d4469476d253242476c623146553069656115fe8201527f6e7552796977654c576767447a6d4655765545556a5a6f377356544877684f4661161e8201527f504d6b4e737146423977796d6b45307639666d7477453854377135384e594f3761163e8201527f787534623833766e46766c35755378446c472532426b4f51675249644f346a6761165e8201527f7a786a53486a4b4c7332742f6c684f647771766131415744437072763344345361167e8201527f34523741625934544362664b4637744265363554343551347a7a49714433316161169e8201527f79797557716a692532424636585337535439483943314f342f694b366b4775766116be8201527f6b512f664e3537487837456533373435622f76766e2f62482f58253242392f256116de8201527f32426762656d684f416d49705576755157757344764b517578394a44564e734b6116fe8201527f673651636d6b73515341445530346347524c523768466f5a326337785545664761171e8201527f253242776b755459474d764c6a422f6550634936416847686e5735717a45416961173e8201527f4a586377564545775869654e70536c317a6a457253253242435325324248634c61175e8201527f6f52506d7661324d6767412f69794c67536f544a555767733442794149514f3061177e8201527f4f6f705a487656627a6844494c65557155677a7a48492f667950474e7879777361179e8201527f6f796c6865534639577662795363336b4544716b32415636436c4364635535536117be8201527f6e6c4e6e4963394b794d63384c79622532423867484f4a795173466c4c6250526117de8201527f796d6d374a42743349545a544162314732444252496b514b51705451396939626117fe8201527f3665435353387a4d366161525364544b5657524d336663454a4c644b61746e7361181e8201527f724959774e4a55253242733048364461757832775a35686733706c653042474861183e8201527f756b316b4543734859446461496d4b7025324233463542317859763763486b7161185e8201527f644475306a4b645273657a3531376d63563641685148346931484e3173766c6a61187e8201527f5248366845454672682532426e72726d47316e33307a4d346749776d694d774561189e8201527f624b6842545564423141486f582532424b6741517a4f48543946494f71436b526118be8201527f4e4e623273397170496943534f753167576868497343564a73765771457175356118de8201527f47624a514b4e6a61427465394c4f69676368414a7665475773394332323033766118fe8201527f6f6e476c6b77725251323464646732796345646157554456734441785548734961191e8201527f77773665615234464665336d4a416b66426d5a6452395264774a485a6d47645261193e8201527f7950436a706a627a31712f584a34534949446b66384b4b6e6e32456c4b6d794c61195e8201527f69573442513836733151554b2f76426867524e776548766c5968687a7238706361197e8201527f67704b4b6d6f61576a7036426b594f48446c7835734b5647336365474539657661199e8201527f506e773563646667454242676f554946536238587632504553314772446a78456119be8201527f69524b6b697846716a54704d6d544b6b693148726a7a354368517155717845716119de8201527f544c6c4b6c53715571314772547231476a527130717846717a62744f6e5347656119fe8201527f3668374a6d627a4968355a6544696c315a58536a7430774375616b336c6e476f611a1e8201527f5655506f53734e663337394b326a6274716d44674d69485a42665a6c68324839611a3e8201527f75773738495469314a466a585653662f4336634f55667a346f30644178305447611a5e8201527f777448446863666a3443516d49694531444d5a42546b6c4e5a557065566f614f611a7e8201527f6e717633733234314e50503965766574594768435a50576a4979747332706173611a9e8201527f436a25324270556a54596c336b615574374f744b4a6136355850396d356e6367611abe8201527f364e686a685a587032762532426d57724341545a754a303368316b6a55756976611ade8201527f5067596e6a6e35744b4a4f6b326e6362703251414559585a69304b496d50356b611afe8201527f744961466e366b5a397743253237253239253230666f726d6174253238253237611b1e8201527f776f666632253237253239253342666f6e742d7765696768742533412532306e611b3e8201527f6f726d616c253342666f6e742d7374796c652533412532306e6f726d616c2533611b5e8201527f42666f6e742d646973706c617925334125323073776170253342253744746578611b7e8201527f74253230253742666f6e742d66616d696c792533412532302532375072657373611b9e8201527f2532305374617274253230325025323725334266696c6c253341253230776869611bbe8201527f74652537442e76616c7565253230253742666f6e742d73697a65253341253230611bde8201527f313070782533422537442e6e616d65253230253742666f6e742d73697a652533611bfe8201527f412532303470782533422537442533432f7374796c652533452533432f646566611c1e8201527f7325334525334372656374253230776964746825334425323738392532372532611c3e8201527f30686569676874253344253237353525323725323066696c6c25334425323762611c5e8201527f6c61636b2532372532302f253345253343726563742532307825334425323735611c7e8201527f2e3525323725323079253344253237352e352532372532307769647468253344611c9e8201527f2532373738253237253230686569676874253344253237343425323725323066611cbe8201527f696c6c2533442532372532333030303046462532372532302f25334525334374611cde8201527f657874253230746578742d616e63686f722533442532376d6964646c65253237611cfe8201527f2532307825334425323734342e35253237253230792533442532373333253237611d1e8201527f253230636c61737325334425323776616c756525323725334500000000000000611d3e820152612ba5612b9e6129f5611d5784018a61055b565b7f2533432f746578742533452533437265637425323078253344253237352e352581527f323725323079253344253237352e35253237253230776964746825334425323760208201527f373825323725323068656967687425334425323734342532372532307374726f60408201527f6b652533442532372532334646344630412532372532307374726f6b652d776960608201527f647468253344253237332532372532302f25334525334372656374253230782560808201527f334425323733302532372532307925334425323734352e35253237253230776960a08201527f647468253344253237353825323725323068656967687425334425323738253260c08201527f3725323066696c6c2533442532372532334646344630412532372532302f253360e08201527f4525334374657874253230746578742d616e63686f72253344253237656e64256101008201527f32372532307825334425323738372532372532307925334425323735322532376101208201527f253230636c6173732533442532376e616d6525323725334500000000000000006101408201526101580190565b86886105e3565b602160f81b81529050612bbb600182018561055b565b7f2533432f746578742533452533432f737667253345227d00000000000000000081526017019a995050505050505050505056fea26469706673582212206a2c00c13ddb4f1bcd7ee36e36f0c874d7d9dadcf38306eab3610b5a6e7af83464736f6c63430008110033", + "nonce": "0x2", + "accessList": [] + }, + "additionalContracts": [], + "isFixedGasLimit": false + }, + { + "hash": "0x3de75e0187d1300847016f9712d9bad87f0de9d06ecc20887ff85b8562563c90", + "transactionType": "CREATE", + "contractName": null, + "contractAddress": "0xCf7Ed3AccA5a467e9e704C703E8D87F634fB0Fc9", + "function": null, + "arguments": null, + "transaction": { + "type": "0x02", + "from": "0xf39fd6e51aad88f6f4ce6ab8827279cfffb92266", + "gas": "0x42230", + "value": "0x0", + "data": "0x608060405234801561001057600080fd5b506102cf806100206000396000f3fe608060405234801561001057600080fd5b506004361061004c5760003560e01c80630194db8e14610051578063072bdcc214610076578063a391c15b14610089578063b67d77c51461009c575b600080fd5b61006461005f366004610160565b6100af565b60405190815260200160405180910390f35b610064610084366004610160565b6100ef565b61006461009736600461021e565b610129565b6100646100aa36600461021e565b61013e565b600080805b83518110156100e8578381815181106100cf576100cf610240565b60200260200101518201915080806001019150506100b4565b5092915050565b60006001815b83518110156100e85783818151811061011057610110610240565b60200260200101518202915080806001019150506100f5565b60006101358284610256565b90505b92915050565b60006101358284610278565b634e487b7160e01b600052604160045260246000fd5b6000602080838503121561017357600080fd5b823567ffffffffffffffff8082111561018b57600080fd5b818501915085601f83011261019f57600080fd5b8135818111156101b1576101b161014a565b8060051b604051601f19603f830116810181811085821117156101d6576101d661014a565b6040529182528482019250838101850191888311156101f457600080fd5b938501935b82851015610212578435845293850193928501926101f9565b98975050505050505050565b6000806040838503121561023157600080fd5b50508035926020909101359150565b634e487b7160e01b600052603260045260246000fd5b60008261027357634e487b7160e01b600052601260045260246000fd5b500490565b8181038181111561013857634e487b7160e01b600052601160045260246000fdfea2646970667358221220fcdef23ba4219270ddb3ab764e22a87e229c05e6f1dfc4eeea983fa1a1dac91f64736f6c63430008110033", + "nonce": "0x3", + "accessList": [] + }, + "additionalContracts": [], + "isFixedGasLimit": false + }, + { + "hash": "0x9b429d2fd55ffc6fa8696728d353fd418da33819473cfb47ddf43569b706759b", + "transactionType": "CREATE", + "contractName": "Evmsheet", + "contractAddress": "0xDc64a140Aa3E981100a9becA4E685f962f0cF6C9", + "function": null, + "arguments": [ + "0x9fE46736679d2D9a65F0992F2272dE9f3c7fa6e0", + "10000000000000000" + ], + "transaction": { + "type": "0x02", + "from": "0xf39fd6e51aad88f6f4ce6ab8827279cfffb92266", + "gas": "0x34bf99", + "value": "0x0", + "data": "0x608060405234801561001057600080fd5b50604051612ed9380380612ed983398101604081905261002f916100b1565b61003833610061565b600280546001600160a01b0319166001600160a01b0393909316929092179091556001556100eb565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b600080604083850312156100c457600080fd5b82516001600160a01b03811681146100db57600080fd5b6020939093015192949293505050565b612ddf806100fa6000396000f3fe608060405260043610620000a95760003560e01c80638da5cb5b116200006c5780638da5cb5b146200016d578063ab2fa65a146200018d578063ae28505e14620001b4578063c56c4cf114620001d9578063f2fde38b14620001fb578063f52be2a2146200022057600080fd5b806303fb31e814620000ae5780631164c83d14620000d5578063145e414714620000ec5780635787cacb146200012e578063715018a61462000155575b600080fd5b348015620000bb57600080fd5b50620000d3620000cd36600462000778565b62000247565b005b620000d3620000e6366004620007e9565b62000273565b348015620000f957600080fd5b50620001116200010b36600462000864565b620004b2565b6040516001600160a01b0390911681526020015b60405180910390f35b3480156200013b57600080fd5b50620001466200054f565b60405162000125919062000891565b3480156200016257600080fd5b50620000d3620005b3565b3480156200017a57600080fd5b506000546001600160a01b031662000111565b3480156200019a57600080fd5b50620001a5620005cb565b604051620001259190620008e0565b348015620001c157600080fd5b5062000111620001d336600462000930565b620005f7565b348015620001e657600080fd5b5060025462000111906001600160a01b031681565b3480156200020857600080fd5b50620000d36200021a36600462000778565b62000622565b3480156200022d57600080fd5b506200023860015481565b60405190815260200162000125565b62000251620006a1565b600280546001600160a01b0319166001600160a01b0392909216919091179055565b60015434146200029d5760405163723a79e360e11b81523460048201526024015b60405180910390fd5b600060405180602001620002b1906200074d565b6020820181038252601f19601f8201166040525090506000828251602084016000f56002546040516356d3163d60e01b81526001600160a01b0391821660048201529192508216906356d3163d90602401600060405180830381600087803b1580156200031d57600080fd5b505af115801562000332573d6000803e3d6000fd5b505060405163c47f002760e01b81526001600160a01b038416925063c47f0027915062000366908a908a906004016200094a565b600060405180830381600087803b1580156200038157600080fd5b505af115801562000396573d6000803e3d6000fd5b5050604051635c26412360e11b81526001600160a01b038416925063b84c82469150620003ca90889088906004016200094a565b600060405180830381600087803b158015620003e557600080fd5b505af1158015620003fa573d6000803e3d6000fd5b505060405163f2fde38b60e01b81523260048201526001600160a01b038416925063f2fde38b9150602401600060405180830381600087803b1580156200044057600080fd5b505af115801562000455573d6000803e3d6000fd5b5050600380546001810182556000919091527fc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b0180546001600160a01b0319166001600160a01b0394909416939093179092555050505050505050565b600060ff60f81b838360405180602001620004cd906200074d565b6020820181038252601f19601f82011660405250805190602001206040516020016200053094939291906001600160f81b031994909416845260609290921b6bffffffffffffffffffffffff191660018401526015830152603582015260550190565b60408051601f1981840301815291905280516020909101209392505050565b60606003805480602002602001604051908101604052809291908181526020018280548015620005a957602002820191906000526020600020905b81546001600160a01b031681526001909101906020018083116200058a575b5050505050905090565b620005bd620006a1565b620005c96000620006fd565b565b606060405180602001620005df906200074d565b601f1982820381018352601f90910116604052919050565b600381815481106200060857600080fd5b6000918252602090912001546001600160a01b0316905081565b6200062c620006a1565b6001600160a01b038116620006935760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b606482015260840162000294565b6200069e81620006fd565b50565b6000546001600160a01b03163314620005c95760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015260640162000294565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b612430806200097a83390190565b80356001600160a01b03811681146200077357600080fd5b919050565b6000602082840312156200078b57600080fd5b62000796826200075b565b9392505050565b60008083601f840112620007b057600080fd5b50813567ffffffffffffffff811115620007c957600080fd5b602083019150836020828501011115620007e257600080fd5b9250929050565b6000806000806000606086880312156200080257600080fd5b853567ffffffffffffffff808211156200081b57600080fd5b6200082989838a016200079d565b909750955060208801359150808211156200084357600080fd5b5062000852888289016200079d565b96999598509660400135949350505050565b600080604083850312156200087857600080fd5b62000883836200075b565b946020939093013593505050565b6020808252825182820181905260009190848201906040850190845b81811015620008d45783516001600160a01b031683529284019291840191600101620008ad565b50909695505050505050565b600060208083528351808285015260005b818110156200090f57858101830151858201604001528201620008f1565b506000604082860101526040601f19601f8301168501019250505092915050565b6000602082840312156200094357600080fd5b5035919050565b60208152816020820152818360408301376000818301604090810191909152601f909201601f1916010191905056fe60806040523480156200001157600080fd5b50604051806040016040528060078152602001660536865657420360cc1b815250604051806040016040528060048152602001630534854360e41b81525062000069620000636200008f60201b60201c565b62000093565b600162000077838262000188565b50600262000086828262000188565b50505062000254565b3390565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b634e487b7160e01b600052604160045260246000fd5b600181811c908216806200010e57607f821691505b6020821081036200012f57634e487b7160e01b600052602260045260246000fd5b50919050565b601f8211156200018357600081815260208120601f850160051c810160208610156200015e5750805b601f850160051c820191505b818110156200017f578281556001016200016a565b5050505b505050565b81516001600160401b03811115620001a457620001a4620000e3565b620001bc81620001b58454620000f9565b8462000135565b602080601f831160018114620001f45760008415620001db5750858301515b600019600386901b1c1916600185901b1785556200017f565b600085815260208120601f198616915b82811015620002255788860151825594840194600190910190840162000204565b5085821015620002445787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b6121cc80620002646000396000f3fe608060405234801561001057600080fd5b50600436106102275760003560e01c8063715018a611610130578063b85d8b85116100b8578063cf0983981161007c578063cf09839814610512578063cfbe95d814610535578063df4ca20614610556578063e985e9c514610576578063f2fde38b146105a457600080fd5b8063b85d8b85146104a4578063b88d4fde146104ce578063b8c368ec146104e1578063c47f0027146104ec578063c87b56dd146104ff57600080fd5b806395d89b41116100ff57806395d89b4114610439578063a22cb46514610441578063b46ebb1214610454578063b6d658e114610467578063b84c82461461049157600080fd5b8063715018a6146103fa578063768d5029146104025780638ada6b0f146104155780638da5cb5b1461042857600080fd5b80631b06443c116101b35780634f6ccce7116101825780634f6ccce71461038157806356d3163d146103a15780636352211e146103b45780636a0abc74146103c757806370a08231146103e757600080fd5b80631b06443c14610335578063206848f61461034857806323b872dd1461035b57806342842e0e1461036e57600080fd5b8063081812fc116101fa578063081812fc146102a1578063095ea7b3146102e2578063172b9eed146102f757806318160ddd1461030a5780631941fd141461031357600080fd5b806301ffc9a71461022c57806302f3c4c91461025457806306fdde03146102745780630715a24a1461027c575b600080fd5b61023f61023a36600461176a565b6105b7565b60405190151581526020015b60405180910390f35b610267610262366004611861565b610609565b60405161024b9190611951565b610267610638565b6102936fffffffffffffffffffffffffffffffff81565b60405190815260200161024b565b6102ca6102af366004611964565b6005602052600090815260409020546001600160a01b031681565b6040516001600160a01b03909116815260200161024b565b6102f56102f036600461197d565b6106c6565b005b6102676103053660046119a9565b6107ad565b61029360075481565b610326610321366004611964565b610875565b60405161024b939291906119de565b6102ca610343366004611a0e565b61092a565b610326610356366004611964565b6109e3565b6102f5610369366004611a2b565b610ae1565b6102f561037c366004611a2b565b610ca8565b61029361038f366004611964565b60086020526000908152604090205481565b6102f56103af366004611a0e565b610da0565b6102ca6103c2366004611964565b610dca565b6103da6103d53660046119a9565b610e1c565b60405161024b9190611a6c565b6102936103f5366004611a0e565b610e60565b6102f5610ec3565b6102f5610410366004611af9565b610ed7565b6009546102ca906001600160a01b031681565b6000546001600160a01b03166102ca565b610267611035565b6102f561044f366004611b63565b611042565b610267610462366004611964565b6110ae565b61047a610475366004611964565b611258565b60408051921515835260208301919091520161024b565b6102f561049f366004611ba1565b611275565b6104b56104b2366004611964565b90565b6040516001600160e01b0319909116815260200161024b565b6102f56104dc366004611be3565b6112c6565b6102ca600160801b81565b6102f56104fa366004611ba1565b6113ae565b61026761050d366004611964565b6113ff565b61023f610520366004611a0e565b600160801b6001600160a01b03919091161090565b61023f610543366004611861565b516001600160a01b0316600160801b1490565b610569610564366004611964565b6114c9565b60405161024b9190611c16565b61023f610584366004611c4d565b600660209081526000928352604080842090915290825290205460ff1681565b6102f56105b2366004611a0e565b611526565b60006301ffc9a760e01b6001600160e01b0319831614806105e857506380ac58cd60e01b6001600160e01b03198316145b806106035750635b5e139f60e01b6001600160e01b03198316145b92915050565b6060816020015160405160200161062291815260200190565b6040516020818303038152906040529050919050565b6001805461064590611c7b565b80601f016020809104026020016040519081016040528092919081815260200182805461067190611c7b565b80156106be5780601f10610693576101008083540402835291602001916106be565b820191906000526020600020905b8154815290600101906020018083116106a157829003601f168201915b505050505081565b6000818152600360205260409020546001600160a01b03163381148061070f57506001600160a01b038116600090815260066020908152604080832033845290915290205460ff165b6107515760405162461bcd60e51b815260206004820152600e60248201526d1393d517d055551213d49256915160921b60448201526064015b60405180910390fd5b60008281526005602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b606060006107ba83610e1c565b9050606060005b825181101561086d576000806107ef8584815181106107e2576107e2611cb5565b6020026020010151611258565b9150915081156108335783610803826110ae565b61080c90611ccb565b60405160200161081d929190611cef565b6040516020818303038152906040529350610858565b6040516108469085908390602001611cef565b60405160208183030381529060405293505b5050808061086590611d27565b9150506107c1565b509392505050565b600a602052600090815260409020805460018201546002830180546001600160a01b039093169391926108a790611c7b565b80601f01602080910402602001604051908101604052809291908181526020018280546108d390611c7b565b80156109205780601f106108f557610100808354040283529160200191610920565b820191906000526020600020905b81548152906001019060200180831161090357829003601f168201915b5050505050905083565b6000600160801b6001600160a01b03831610156109da576000610955836001600160a01b03166110ae565b604051632d737e4960e21b8152909150735fbdb2315678afecb367f032d93f642f64180aa39063b5cdf92490610992908490600090600401611d40565b602060405180830381865af41580156109af573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906109d39190611d62565b9392505050565b5090565b919050565b60008181526003602052604081205481906060906001600160a01b0316610a1057600160801b9250610a2b565b6000848152600a60205260409020546001600160a01b031692505b6000848152600a60205260409020600181015460029091018054859291908190610a5490611c7b565b80601f0160208091040260200160405190810160405280929190818152602001828054610a8090611c7b565b8015610acd5780601f10610aa257610100808354040283529160200191610acd565b820191906000526020600020905b815481529060010190602001808311610ab057829003601f168201915b505050505090509250925092509193909250565b6000818152600360205260409020546001600160a01b03848116911614610b375760405162461bcd60e51b815260206004820152600a60248201526957524f4e475f46524f4d60b01b6044820152606401610748565b6001600160a01b038216610b815760405162461bcd60e51b81526020600482015260116024820152701253959053125117d49150d25412515395607a1b6044820152606401610748565b336001600160a01b0384161480610bbb57506001600160a01b038316600090815260066020908152604080832033845290915290205460ff165b80610bdc57506000818152600560205260409020546001600160a01b031633145b610c195760405162461bcd60e51b815260206004820152600e60248201526d1393d517d055551213d49256915160921b6044820152606401610748565b6001600160a01b0380841660008181526004602090815260408083208054600019019055938616808352848320805460010190558583526003825284832080546001600160a01b03199081168317909155600590925284832080549092169091559251849392917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b610cb3838383610ae1565b6001600160a01b0382163b1580610d5c5750604051630a85bd0160e11b8082523360048301526001600160a01b03858116602484015260448301849052608060648401526000608484015290919084169063150b7a029060a4016020604051808303816000875af1158015610d2c573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610d509190611d7b565b6001600160e01b031916145b610d9b5760405162461bcd60e51b815260206004820152601060248201526f155394d0519157d49150d2541251539560821b6044820152606401610748565b505050565b610da861159f565b600980546001600160a01b0319166001600160a01b0392909216919091179055565b6000818152600360205260409020546001600160a01b0316806109de5760405162461bcd60e51b815260206004820152600a6024820152691393d517d3525395115160b21b6044820152606401610748565b60608082516040519150602081048252602082016020850160005b83811015610e4f578181015183820152602001610e37565b505050810160200160405292915050565b60006001600160a01b038216610ea75760405162461bcd60e51b815260206004820152600c60248201526b5a45524f5f4144445245535360a01b6044820152606401610748565b506001600160a01b031660009081526004602052604090205490565b610ecb61159f565b610ed560006115f9565b565b6000858152600360205260409020546001600160a01b0316610f2f57610efd3286611649565b60078054600090815260086020526040812087905581546001929190610f24908490611d98565b90915550610f889050565b6000858152600360205260409020546001600160a01b03163214610f8857600085815260036020526040908190205490516324f3f02560e21b81526001600160a01b039091166004820152326024820152604401610748565b6040518060600160405280856001600160a01b0316815260200184815260200183838080601f0160208091040260200160405190810160405280939291908181526020018383808284376000920182905250939094525050878152600a6020908152604091829020845181546001600160a01b0319166001600160a01b0390911617815590840151600182015590830151909150600282019061102b9082611df9565b5050505050505050565b6002805461064590611c7b565b3360008181526006602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b6000818152600a6020908152604080832081516060818101845282546001600160a01b0316825260018301549482019490945260028201805494959491938401916110f890611c7b565b80601f016020809104026020016040519081016040528092919081815260200182805461112490611c7b565b80156111715780601f1061114657610100808354040283529160200191611171565b820191906000526020600020905b81548152906001019060200180831161115457829003601f168201915b505050505081525050905061119381516001600160a01b0316600160801b1490565b156111a1576109d381610609565b60006111b0826000015161092a565b905060006111bf836020015190565b905060006111d084604001516107ad565b90506000836001600160a01b031683836040516020016111f1929190611eb9565b60408051601f198184030181529082905261120b91611eea565b600060405180830381855afa9150503d8060008114611246576040519150601f19603f3d011682016040523d82523d6000602084013e61124b565b606091505b5098975050505050505050565b600080611266600284611f06565b60019081149493901c92915050565b61127d61159f565b7f8dca0271872d00b3de3abafca544c52fcd7d512dd852c9894fa2c118ac759a93600283836040516112b193929190611fce565b60405180910390a16002610d9b828483611ffe565b6112d1858585610ae1565b6001600160a01b0384163b15806113685750604051630a85bd0160e11b808252906001600160a01b0386169063150b7a02906113199033908a908990899089906004016120be565b6020604051808303816000875af1158015611338573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061135c9190611d7b565b6001600160e01b031916145b6113a75760405162461bcd60e51b815260206004820152601060248201526f155394d0519157d49150d2541251539560821b6044820152606401610748565b5050505050565b6113b661159f565b7fb65b7b5ea384affd30f77f842e057d29dd1b13f133adf69a724a8105b164ab75600183836040516113ea93929190611fce565b60405180910390a16001610d9b828483611ffe565b6000818152600360205260409020546060906001600160a01b03168061143b57604051630243d1a960e21b815260048101849052602401610748565b6000611446846110ae565b6009546040516328de0f2f60e01b81529192506001600160a01b0316906328de0f2f9061147c90879085906001906004016120fd565b600060405180830381865afa158015611499573d6000803e3d6000fd5b505050506040513d6000823e601f3d908101601f191682016040526114c19190810190612128565b949350505050565b604080516060808201835260008083526020830181905292820152906114ee836110ae565b6040805160608101825285815260009586526003602090815295829020546001600160a01b0316958101959095528401525090919050565b61152e61159f565b6001600160a01b0381166115935760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610748565b61159c816115f9565b50565b6000546001600160a01b03163314610ed55760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610748565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b6001600160a01b0382166116935760405162461bcd60e51b81526020600482015260116024820152701253959053125117d49150d25412515395607a1b6044820152606401610748565b6000818152600360205260409020546001600160a01b0316156116e95760405162461bcd60e51b815260206004820152600e60248201526d1053149150511657d3525395115160921b6044820152606401610748565b6001600160a01b038216600081815260046020908152604080832080546001019055848352600390915280822080546001600160a01b0319168417905551839291907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b6001600160e01b03198116811461159c57600080fd5b60006020828403121561177c57600080fd5b81356109d381611754565b634e487b7160e01b600052604160045260246000fd5b604051601f8201601f1916810167ffffffffffffffff811182821017156117c6576117c6611787565b604052919050565b6001600160a01b038116811461159c57600080fd5b600067ffffffffffffffff8211156117fd576117fd611787565b50601f01601f191660200190565b600082601f83011261181c57600080fd5b813561182f61182a826117e3565b61179d565b81815284602083860101111561184457600080fd5b816020850160208301376000918101602001919091529392505050565b60006020828403121561187357600080fd5b813567ffffffffffffffff8082111561188b57600080fd5b908301906060828603121561189f57600080fd5b6040516060810181811083821117156118ba576118ba611787565b60405282356118c8816117ce565b8152602083810135908201526040830135828111156118e657600080fd5b6118f28782860161180b565b60408301525095945050505050565b60005b8381101561191c578181015183820152602001611904565b50506000910152565b6000815180845261193d816020860160208601611901565b601f01601f19169290920160200192915050565b6020815260006109d36020830184611925565b60006020828403121561197657600080fd5b5035919050565b6000806040838503121561199057600080fd5b823561199b816117ce565b946020939093013593505050565b6000602082840312156119bb57600080fd5b813567ffffffffffffffff8111156119d257600080fd5b6114c18482850161180b565b60018060a01b0384168152826020820152606060408201526000611a056060830184611925565b95945050505050565b600060208284031215611a2057600080fd5b81356109d3816117ce565b600080600060608486031215611a4057600080fd5b8335611a4b816117ce565b92506020840135611a5b816117ce565b929592945050506040919091013590565b6020808252825182820181905260009190848201906040850190845b81811015611aa457835183529284019291840191600101611a88565b50909695505050505050565b60008083601f840112611ac257600080fd5b50813567ffffffffffffffff811115611ada57600080fd5b602083019150836020828501011115611af257600080fd5b9250929050565b600080600080600060808688031215611b1157600080fd5b853594506020860135611b23816117ce565b935060408601359250606086013567ffffffffffffffff811115611b4657600080fd5b611b5288828901611ab0565b969995985093965092949392505050565b60008060408385031215611b7657600080fd5b8235611b81816117ce565b915060208301358015158114611b9657600080fd5b809150509250929050565b60008060208385031215611bb457600080fd5b823567ffffffffffffffff811115611bcb57600080fd5b611bd785828601611ab0565b90969095509350505050565b600080600080600060808688031215611bfb57600080fd5b8535611c06816117ce565b94506020860135611b23816117ce565b602081528151602082015260018060a01b036020830151166040820152600060408301516060808401526114c16080840182611925565b60008060408385031215611c6057600080fd5b8235611c6b816117ce565b91506020830135611b96816117ce565b600181811c90821680611c8f57607f821691505b602082108103611caf57634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052603260045260246000fd5b80516020808301519190811015611caf5760001960209190910360031b1b16919050565b60008351611d01818460208801611901565b9190910191825250602001919050565b634e487b7160e01b600052601160045260246000fd5b600060018201611d3957611d39611d11565b5060010190565b604081526000611d536040830185611925565b90508260208301529392505050565b600060208284031215611d7457600080fd5b5051919050565b600060208284031215611d8d57600080fd5b81516109d381611754565b8082018082111561060357610603611d11565b601f821115610d9b57600081815260208120601f850160051c81016020861015611dd25750805b601f850160051c820191505b81811015611df157828155600101611dde565b505050505050565b815167ffffffffffffffff811115611e1357611e13611787565b611e2781611e218454611c7b565b84611dab565b602080601f831160018114611e5c5760008415611e445750858301515b600019600386901b1c1916600185901b178555611df1565b600085815260208120601f198616915b82811015611e8b57888601518255948401946001909101908401611e6c565b5085821015611ea95787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b6001600160e01b0319831681528151600090611edc816004850160208701611901565b919091016004019392505050565b60008251611efc818460208701611901565b9190910192915050565b600082611f2357634e487b7160e01b600052601260045260246000fd5b500690565b60008154611f3581611c7b565b808552602060018381168015611f525760018114611f6c57611f9a565b60ff1985168884015283151560051b880183019550611f9a565b866000528260002060005b85811015611f925781548a8201860152908301908401611f77565b890184019650505b505050505092915050565b81835281816020850137506000828201602090810191909152601f909101601f19169091010190565b604081526000611fe16040830186611f28565b8281036020840152611ff4818587611fa5565b9695505050505050565b67ffffffffffffffff83111561201657612016611787565b61202a836120248354611c7b565b83611dab565b6000601f84116001811461205e57600085156120465750838201355b600019600387901b1c1916600186901b1783556113a7565b600083815260209020601f19861690835b8281101561208f578685013582556020948501946001909201910161206f565b50868210156120ac5760001960f88860031b161c19848701351681555b505060018560011b0183555050505050565b6001600160a01b03868116825285166020820152604081018490526080606082018190526000906120f29083018486611fa5565b979650505050505050565b8381526060602082015260006121166060830185611925565b8281036040840152611ff48185611f28565b60006020828403121561213a57600080fd5b815167ffffffffffffffff81111561215157600080fd5b8201601f8101841361216257600080fd5b805161217061182a826117e3565b81815285602083850101111561218557600080fd5b611a0582602083016020860161190156fea26469706673582212203fc548aa4f22e6f4c01757ba3f2e0383630418b3d17601758718ab19a4d9918d64736f6c63430008110033a26469706673582212207932e8c793f9a96d9606a8907a6671f54c0fb1ed5a763048e13b429274e7706c64736f6c634300081100330000000000000000000000009fe46736679d2d9a65f0992f2272de9f3c7fa6e0000000000000000000000000000000000000000000000000002386f26fc10000", + "nonce": "0x4", + "accessList": [] + }, + "additionalContracts": [], + "isFixedGasLimit": false + } + ], + "receipts": [ + { + "transactionHash": "0xfb04d6c6b1e9f9378a1ec3cfd8f86c712379c2a9a898c24d0ae06ead6fb87858", + "transactionIndex": "0x0", + "blockHash": "0x84a88d1d67c018d4b94128ee0d4a3615644774b52f521983d8a34d989c023ea7", + "blockNumber": "0x1", + "from": "0xf39Fd6e51aad88F6F4ce6aB8827279cffFb92266", + "to": null, + "cumulativeGasUsed": "0xf072b", + "gasUsed": "0xf072b", + "contractAddress": "0x5FbDB2315678afecb367f032d93F642f64180aa3", + "logs": [], + "status": "0x1", + "logsBloom": "0x00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", + "type": "0x2", + "effectiveGasPrice": "0xee6b2800" + }, + { + "transactionHash": "0x3eed361770e2dcc9a97a4cdf1a955543fd69a6096e37bb0e257a7208a08c6dde", + "transactionIndex": "0x0", + "blockHash": "0xa96086a86b41fab312d544a79384bf87b00ecb29caec02aaa95f1aa5c9965fec", + "blockNumber": "0x2", + "from": "0xf39Fd6e51aad88F6F4ce6aB8827279cffFb92266", + "to": null, + "cumulativeGasUsed": "0x23ab5", + "gasUsed": "0x23ab5", + "contractAddress": "0xe7f1725E7734CE288F8367e1Bb143E90bb3F0512", + "logs": [], + "status": "0x1", + "logsBloom": "0x00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", + "type": "0x2", + "effectiveGasPrice": "0xe7750a7c" + }, + { + "transactionHash": "0xfa26a5b6e297a0b5aa632035548d06ea04efb783d4713353476f25876c532b2a", + "transactionIndex": "0x0", + "blockHash": "0x705720a795448306c6cd9f73fd68a359bf65b2a153356679ba6351b820331eea", + "blockNumber": "0x3", + "from": "0xf39Fd6e51aad88F6F4ce6aB8827279cffFb92266", + "to": null, + "cumulativeGasUsed": "0x2616fd", + "gasUsed": "0x2616fd", + "contractAddress": "0x9fE46736679d2D9a65F0992F2272dE9f3c7fa6e0", + "logs": [], + "status": "0x1", + "logsBloom": "0x00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", + "type": "0x2", + "effectiveGasPrice": "0xe0f0dd5d" + }, + { + "transactionHash": "0x3de75e0187d1300847016f9712d9bad87f0de9d06ecc20887ff85b8562563c90", + "transactionIndex": "0x1", + "blockHash": "0x705720a795448306c6cd9f73fd68a359bf65b2a153356679ba6351b820331eea", + "blockNumber": "0x3", + "from": "0xf39Fd6e51aad88F6F4ce6aB8827279cffFb92266", + "to": null, + "cumulativeGasUsed": "0x29452b", + "gasUsed": "0x32e2e", + "contractAddress": "0xCf7Ed3AccA5a467e9e704C703E8D87F634fB0Fc9", + "logs": [], + "status": "0x1", + "logsBloom": "0x00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", + "type": "0x2", + "effectiveGasPrice": "0xe0f0dd5d" + }, + { + "transactionHash": "0x9b429d2fd55ffc6fa8696728d353fd418da33819473cfb47ddf43569b706759b", + "transactionIndex": "0x0", + "blockHash": "0xe01e07b074f80a96f04f9668690a83499a0159d3278171b3f033e2bd40a9a9ed", + "blockNumber": "0x4", + "from": "0xf39Fd6e51aad88F6F4ce6aB8827279cffFb92266", + "to": null, + "cumulativeGasUsed": "0x289654", + "gasUsed": "0x289654", + "contractAddress": "0xDc64a140Aa3E981100a9becA4E685f962f0cF6C9", + "logs": [ + { + "address": "0xDc64a140Aa3E981100a9becA4E685f962f0cF6C9", + "topics": [ + "0x8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0", + "0x0000000000000000000000000000000000000000000000000000000000000000", + "0x000000000000000000000000f39fd6e51aad88f6f4ce6ab8827279cfffb92266" + ], + "data": "0x", + "blockHash": "0xe01e07b074f80a96f04f9668690a83499a0159d3278171b3f033e2bd40a9a9ed", + "blockNumber": "0x4", + "transactionHash": "0x9b429d2fd55ffc6fa8696728d353fd418da33819473cfb47ddf43569b706759b", + "transactionIndex": "0x0", + "logIndex": "0x0", + "transactionLogIndex": "0x0", + "removed": false + } + ], + "status": "0x1", + "logsBloom": "0x00000000000000000000000000000000000000000000000000800000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000020000000000000100000800000000000000000000000000000000400000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000200000000000000000000000002020000000000000000020000000000000000000000000000000000000000001000000000100000000000000", + "type": "0x2", + "effectiveGasPrice": "0xdc36f45d" + } + ], + "libraries": [ + "lib/eth-projects-monorepo/packages/eth-projects-contracts/contracts/lib/utils/Bytes.sol:Bytes:0x5fbdb2315678afecb367f032d93f642f64180aa3" + ], + "pending": [], + "returns": {}, + "timestamp": 1689674959, + "chain": 31337, + "multi": false, + "commit": "ecfc308" +} \ No newline at end of file diff --git a/packages/starksheet-solidity/broadcast/Evmsheet.s.sol/31337/run-1689866385.json b/packages/starksheet-solidity/broadcast/Evmsheet.s.sol/31337/run-1689866385.json new file mode 100644 index 00000000..97df4154 --- /dev/null +++ b/packages/starksheet-solidity/broadcast/Evmsheet.s.sol/31337/run-1689866385.json @@ -0,0 +1,209 @@ +{ + "transactions": [ + { + "hash": "0xfb04d6c6b1e9f9378a1ec3cfd8f86c712379c2a9a898c24d0ae06ead6fb87858", + "transactionType": "CREATE", + "contractName": "Bytes", + "contractAddress": "0x5FbDB2315678afecb367f032d93F642f64180aa3", + "function": null, + "arguments": null, + "transaction": { + "type": "0x02", + "from": "0xf39fd6e51aad88f6f4ce6ab8827279cfffb92266", + "gas": "0x1387ed", + "data": "0x6110d661003a600b82828239805160001a60731461002d57634e487b7160e01b600052600060045260246000fd5b30600052607381538281f3fe73000000000000000000000000000000000000000030146080604052600436106101625760003560e01c8063a5eb31ee116100cd578063d1ffb56111610086578063d1ffb561146103fb578063d442584f1461042b578063e004139614610454578063f1142fb314610474578063f647f8fb14610487578063f83b670f146104b257600080fd5b8063a5eb31ee14610344578063a8d8f00f1461036b578063b5cdf92414610396578063b63711df146103a9578063be8b3430146103bc578063c29616bd146103cf57600080fd5b80635ef849301161011f5780635ef8493014610241578063913c97b41461026b57806397e6175c1461029f57806399dd9bd7146102cb5780639ae4c3d1146102ec5780639cee499e1461031857600080fd5b8063042aa0841461016757806305d3bb74146101985780631a7431ef146101c0578063235266d2146101e357806348137709146101f65780634d66a2ae1461021b575b600080fd5b61017a610175366004610ec0565b6104de565b6040516001600160d01b031990911681526020015b60405180910390f35b6101ab6101a6366004610ec0565b610540565b60405163ffffffff909116815260200161018f565b6101d36101ce366004610f05565b61059d565b604051901515815260200161018f565b6101d36101f1366004610f4c565b610652565b610209610204366004610ec0565b6106b5565b60405160ff909116815260200161018f565b61022e610229366004610fa6565b610711565b60405161ffff909116815260200161018f565b61025461024f366004610ec0565b61071e565b60405165ffffffffffff909116815260200161018f565b61027e610279366004610ec0565b610772565b6040516fffffffffffffffffffffffffffffffff909116815260200161018f565b6102b26102ad366004610ec0565b6107d0565b6040516001600160a01b0319909116815260200161018f565b6102de6102d9366004610ec0565b61082e565b60405190815260200161018f565b6102ff6102fa366004610ec0565b61088c565b60405167ffffffffffffffff909116815260200161018f565b61032b610326366004610ec0565b6108e9565b6040516001600160d81b0319909116815260200161018f565b610357610352366004610ec0565b610946565b60405162ffffff909116815260200161018f565b61037e610379366004610ec0565b6109a3565b60405166ffffffffffffff909116815260200161018f565b6102de6103a4366004610ec0565b610a00565b6102ff6103b7366004610ec0565b610a55565b61022e6103ca366004610ec0565b610aa9565b6103e26103dd366004610ec0565b610b06565b6040516001600160c81b0319909116815260200161018f565b61040e610409366004610ec0565b610b5a565b6040516bffffffffffffffffffffffff909116815260200161018f565b61043e610439366004610ec0565b610bae565b60405164ffffffffff909116815260200161018f565b610467610462366004610fe3565b610c02565b60405161018f9190611031565b6102b2610482366004610ec0565b610d0f565b61049a610495366004610ec0565b610d64565b6040516001600160a01b03909116815260200161018f565b6104c56104c0366004610ec0565b610dc9565b6040516001600160f81b0319909116815260200161018f565b60006104eb82600661107f565b835110156105375760405162461bcd60e51b8152602060048201526014602482015273746f4279746573365f6f75744f66426f756e647360601b60448201526064015b60405180910390fd5b50016006015190565b600061054d82600461107f565b835110156105945760405162461bcd60e51b8152602060048201526014602482015273746f55696e7433325f6f75744f66426f756e647360601b604482015260640161052e565b50016004015190565b600080600190508354600260018083161561010002038216048451808214600181146105cc5760009450610644565b821561064457602083106001811461062957600189600052602060002060208a018581015b600284828410010361062057815183541461060f5760009950600093505b6001830192506020820191506105f1565b50505050610642565b6101008086040294506020880151851461064257600095505b505b509293505050505b92915050565b81518151600091600191811480831461066e57600092506106ab565b600160208701838101602088015b60028483851001036106a657805183511461069a5760009650600093505b6020928301920161067c565b505050505b5090949350505050565b60006106c282600161107f565b835110156107085760405162461bcd60e51b8152602060048201526013602482015272746f55696e74385f6f75744f66426f756e647360681b604482015260640161052e565b50016001015190565b600061064c826000610aa9565b600061072b82600661107f565b835110156105375760405162461bcd60e51b8152602060048201526014602482015273746f55696e7434385f6f75744f66426f756e647360601b604482015260640161052e565b600061077f82601061107f565b835110156107c75760405162461bcd60e51b8152602060048201526015602482015274746f55696e743132385f6f75744f66426f756e647360581b604482015260640161052e565b50016010015190565b60006107dd82600c61107f565b835110156108255760405162461bcd60e51b8152602060048201526015602482015274746f427974657331325f6f75744f66426f756e647360581b604482015260640161052e565b5001600c015190565b600061083b82602061107f565b835110156108835760405162461bcd60e51b8152602060048201526015602482015274746f427974657333325f6f75744f66426f756e647360581b604482015260640161052e565b50016020015190565b600061089982600861107f565b835110156108e05760405162461bcd60e51b8152602060048201526014602482015273746f55696e7436345f6f75744f66426f756e647360601b604482015260640161052e565b50016008015190565b60006108f682600561107f565b8351101561093d5760405162461bcd60e51b8152602060048201526014602482015273746f4279746573355f6f75744f66426f756e647360601b604482015260640161052e565b50016005015190565b600061095382600361107f565b8351101561099a5760405162461bcd60e51b8152602060048201526014602482015273746f55696e7432345f6f75744f66426f756e647360601b604482015260640161052e565b50016003015190565b60006109b082600761107f565b835110156109f75760405162461bcd60e51b8152602060048201526014602482015273746f55696e7435365f6f75744f66426f756e647360601b604482015260640161052e565b50016007015190565b6000610a0d82602061107f565b835110156108835760405162461bcd60e51b8152602060048201526015602482015274746f55696e743235365f6f75744f66426f756e647360581b604482015260640161052e565b6000610a6282600861107f565b835110156108e05760405162461bcd60e51b8152602060048201526014602482015273746f4279746573385f6f75744f66426f756e647360601b604482015260640161052e565b6000610ab682600261107f565b83511015610afd5760405162461bcd60e51b8152602060048201526014602482015273746f55696e7431365f6f75744f66426f756e647360601b604482015260640161052e565b50016002015190565b6000610b1382600761107f565b835110156109f75760405162461bcd60e51b8152602060048201526014602482015273746f4279746573375f6f75744f66426f756e647360601b604482015260640161052e565b6000610b6782600c61107f565b835110156108255760405162461bcd60e51b8152602060048201526014602482015273746f55696e7439365f6f75744f66426f756e647360601b604482015260640161052e565b6000610bbb82600561107f565b8351101561093d5760405162461bcd60e51b8152602060048201526014602482015273746f55696e7434305f6f75744f66426f756e647360601b604482015260640161052e565b606081610c1081601f61107f565b1015610c4f5760405162461bcd60e51b815260206004820152600e60248201526d736c6963655f6f766572666c6f7760901b604482015260640161052e565b610c59828461107f565b84511015610c9d5760405162461bcd60e51b8152602060048201526011602482015270736c6963655f6f75744f66426f756e647360781b604482015260640161052e565b606082158015610cbc5760405191506000825260208201604052610d06565b6040519150601f8416801560200281840101858101878315602002848b0101015b81831015610cf5578051835260209283019201610cdd565b5050858452601f01601f1916604052505b50949350505050565b6000610d1c82601061107f565b835110156107c75760405162461bcd60e51b8152602060048201526015602482015274746f427974657331365f6f75744f66426f756e647360581b604482015260640161052e565b6000610d7182601461107f565b83511015610db95760405162461bcd60e51b8152602060048201526015602482015274746f416464726573735f6f75744f66426f756e647360581b604482015260640161052e565b500160200151600160601b900490565b6000610dd682600161107f565b835110156107085760405162461bcd60e51b8152602060048201526014602482015273746f4279746573315f6f75744f66426f756e647360601b604482015260640161052e565b634e487b7160e01b600052604160045260246000fd5b600082601f830112610e4457600080fd5b813567ffffffffffffffff80821115610e5f57610e5f610e1d565b604051601f8301601f19908116603f01168101908282118183101715610e8757610e87610e1d565b81604052838152866020858801011115610ea057600080fd5b836020870160208301376000602085830101528094505050505092915050565b60008060408385031215610ed357600080fd5b823567ffffffffffffffff811115610eea57600080fd5b610ef685828601610e33565b95602094909401359450505050565b60008060408385031215610f1857600080fd5b82359150602083013567ffffffffffffffff811115610f3657600080fd5b610f4285828601610e33565b9150509250929050565b60008060408385031215610f5f57600080fd5b823567ffffffffffffffff80821115610f7757600080fd5b610f8386838701610e33565b93506020850135915080821115610f9957600080fd5b50610f4285828601610e33565b600060208284031215610fb857600080fd5b813567ffffffffffffffff811115610fcf57600080fd5b610fdb84828501610e33565b949350505050565b600080600060608486031215610ff857600080fd5b833567ffffffffffffffff81111561100f57600080fd5b61101b86828701610e33565b9660208601359650604090950135949350505050565b600060208083528351808285015260005b8181101561105e57858101830151858201604001528201611042565b506000604082860101526040601f19601f8301168501019250505092915050565b8082018082111561064c57634e487b7160e01b600052601160045260246000fdfea26469706673582212208ffe93db15f03a6fd0c59ab94e8e6a84e4561b6982e8824dafaf837546cfb2c764736f6c63430008140033", + "nonce": "0x0", + "accessList": [] + }, + "additionalContracts": [], + "isFixedGasLimit": false + }, + { + "hash": "0x3eed361770e2dcc9a97a4cdf1a955543fd69a6096e37bb0e257a7208a08c6dde", + "transactionType": "CREATE", + "contractName": "MultiSendCallOnly", + "contractAddress": "0xe7f1725E7734CE288F8367e1Bb143E90bb3F0512", + "function": null, + "arguments": null, + "transaction": { + "type": "0x02", + "from": "0xf39fd6e51aad88f6f4ce6ab8827279cfffb92266", + "gas": "0x2e5c4", + "value": "0x0", + "data": "0x608060405234801561001057600080fd5b506101ae806100206000396000f3fe60806040526004361061001e5760003560e01c80638d80ff0a14610023575b600080fd5b6100366100313660046100c7565b610038565b005b805160205b818110156100ac578083015160f81c6001820184015160601c601583018501516035840186015160558501870160008560008114610082576001811461001e5761008e565b6000808585888a5af191505b508061009957600080fd5b505080605501850194505050505061003d565b505050565b634e487b7160e01b600052604160045260246000fd5b6000602082840312156100d957600080fd5b813567ffffffffffffffff808211156100f157600080fd5b818401915084601f83011261010557600080fd5b813581811115610117576101176100b1565b604051601f8201601f19908116603f0116810190838211818310171561013f5761013f6100b1565b8160405282815287602084870101111561015857600080fd5b82602086016020830137600092810160200192909252509594505050505056fea2646970667358221220c15490bbb756a4c3c49d6335b2e81d2d098647b0ea70174c2279f199b1d0800364736f6c63430008110033", + "nonce": "0x1", + "accessList": [] + }, + "additionalContracts": [], + "isFixedGasLimit": false + }, + { + "hash": "0xfa26a5b6e297a0b5aa632035548d06ea04efb783d4713353476f25876c532b2a", + "transactionType": "CREATE", + "contractName": "BasicCellRenderer", + "contractAddress": "0x9fE46736679d2D9a65F0992F2272dE9f3c7fa6e0", + "function": null, + "arguments": null, + "transaction": { + "type": "0x02", + "from": "0xf39fd6e51aad88f6f4ce6ab8827279cfffb92266", + "gas": "0x3180ad", + "value": "0x0", + "data": "0x608060405234801561001057600080fd5b50612c25806100206000396000f3fe608060405234801561001057600080fd5b50600436106100365760003560e01c806306d4cd8b1461003b57806328de0f2f14610064575b600080fd5b61004e610049366004610322565b610077565b60405161005b919061038b565b60405180910390f35b61004e610072366004610404565b6100f1565b60606000610086600f846104fc565b90506000610095600f8361051e565b61009f9085610535565b905060006100ae826041610548565b60f81b9050806100c76100c2856001610548565b6101b6565b6040516020016100d8929190610577565b6040516020818303038152906040529350505050919050565b606060006100fe86610077565b905083838261018388735fbdb2315678afecb367f032d93f642f64180aa363b5cdf924909160006040518363ffffffff1660e01b81526004016101429291906105a8565b602060405180830381865af415801561015f573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906100c291906105ca565b87878660405160200161019c97969594939291906105f2565b604051602081830303815290604052915050949350505050565b606060006101c383610249565b600101905060008167ffffffffffffffff8111156101e3576101e36103a5565b6040519080825280601f01601f19166020018201604052801561020d576020820181803683370190505b5090508181016020015b600019016f181899199a1a9b1b9c1cb0b131b232b360811b600a86061a8153600a850494508461021757509392505050565b60008072184f03e93ff9f4daa797ed6e38ed64bf6a1f0160401b83106102885772184f03e93ff9f4daa797ed6e38ed64bf6a1f0160401b830492506040015b6d04ee2d6d415b85acef810000000083106102b4576d04ee2d6d415b85acef8100000000830492506020015b662386f26fc1000083106102d257662386f26fc10000830492506010015b6305f5e10083106102ea576305f5e100830492506008015b61271083106102fe57612710830492506004015b60648310610310576064830492506002015b600a831061031c576001015b92915050565b60006020828403121561033457600080fd5b5035919050565b60005b8381101561035657818101518382015260200161033e565b50506000910152565b6000815180845261037781602086016020860161033b565b601f01601f19169290920160200192915050565b60208152600061039e602083018461035f565b9392505050565b634e487b7160e01b600052604160045260246000fd5b60008083601f8401126103cd57600080fd5b50813567ffffffffffffffff8111156103e557600080fd5b6020830191508360208285010111156103fd57600080fd5b9250929050565b6000806000806060858703121561041a57600080fd5b84359350602085013567ffffffffffffffff8082111561043957600080fd5b818701915087601f83011261044d57600080fd5b81358181111561045f5761045f6103a5565b604051601f8201601f19908116603f01168101908382118183101715610487576104876103a5565b816040528281528a60208487010111156104a057600080fd5b8260208601602083013760006020848301015280975050505060408701359150808211156104cd57600080fd5b506104da878288016103bb565b95989497509550505050565b634e487b7160e01b600052601160045260246000fd5b60008261051957634e487b7160e01b600052601260045260246000fd5b500490565b808202811582820484141761031c5761031c6104e6565b8181038181111561031c5761031c6104e6565b8082018082111561031c5761031c6104e6565b6000815161056d81856020860161033b565b9290920192915050565b6001600160f81b031983168152815160009061059a81600185016020870161033b565b919091016001019392505050565b6040815260006105bb604083018561035f565b90508260208301529392505050565b6000602082840312156105dc57600080fd5b5051919050565b81818437506000910190815290565b7f646174613a6170706c69636174696f6e2f6a736f6e2c7b22646573637269707481527f696f6e223a2022537461726b7368656574222c20226e616d65223a202200000060208201528688603d8301376000878201602160f81b603d820152875161066481603e840160208c0161033b565b7f222c22696d616765223a2022646174613a696d6167652f7376672b786d6c2c25603e92909101918201527f334373766725323076696577426f782533442532373025323030253230383925605e8201527f3230353525323725323066696c6c2533442532376e6f6e65253237253230786d607e8201527f6c6e73253344253237687474702533412f2f7777772e77332e6f72672f323030609e8201527f302f737667253237253345253343646566732533452533437374796c6525334560be8201527f253430666f6e742d66616365253230253742666f6e742d66616d696c7925334160de8201527f253230253237507265737325323053746172742532303250253237253342737260fe8201527f6325334125323075726c25323825323764617461253341666f6e742f776f666661011e8201527f32253342626173653634253243643039474d6741424141414141424c3841413861013e8201527f41414141415235774141424b674141454141414141414141414141414141414161015e8201527f4141414141414141414141414150305a4756453063476a41624d42794358675a61017e8201527f6741494e794551674b3846545361517544524141424e67496b41344e4d42434161019e8201527f46687a5148684649623644566c42306a314f4d4253336f4f4953744562732f2f6101be8201527f2f6c4a776356727a47634f30676f684c45484d6369694443434e57695a6761306101de8201527f79625345555954514f6a4b427038546c737a7344526438716174586c333058746101fe8201527f30645a47467952305668444b776c62746c25324272734643773945316e64655961021e8201527f4a74732f37527762305673784d71576c636a6a775445537a2f5568752f77337361023e8201527f33746b6f496d70343464515168576f456d54337579526d70746f7553446b7a5761025e8201527f454138762f3932364a4b7539486f696e6e3673376674336d4965476c7737547161027e8201527f6437456f326a46517849766a5642494a70563269614f62547a68575932314e7461029e8201527f476772687434704d4b3457556a34624c7967542f51253242514c7879253242336102be8201527f6c482f362f6b6275496444497239446a724a496a6f394a7336524d58253242456102de8201527f6b37424f545a6b6d70397a347455524652566656307148504448375a7462364a6102fe8201527f616f6130684c335975616232473373667a72365776394536793569767025324261031e8201527f7135564c74426a514478476f5345304150313762336466376c61726a6525324261033e8201527f73637a6b7241744a334b6657304a342532424b323365744b4b556a383554616f61035e8201527f57473453346158436c427743413268676141652532423658396f696e32304e6261037e8201527f554a7264466767517049686d5247494d30372f7025324277375a7058316c473161039e8201527f6a6a51787073435141423438714445415042346950312f6a39592f4261686a356103be8201527f5943414e302f78714157496852616a6c6e694e654f50396e78433466667932556103de8201527f694843304e47386b686f6f567a6f7459334445417a417a41356b473735337a6a6103fe8201527f4853354d6e6d586b69496a6d54554d36556d4d3025324256346976752f48377861041e8201527f6a364666322f6b343472787a6449324141676742492f4c48416b394a7a35554d61043e8201527f496f4c7755344146455435725a464f33444d616655633061777351434879497061045e8201527f557a546b30784a474a454f6a4e6871436b474570496153474f6a714e466d2f5761047e8201527f4e434e3569636b71434d6e414165564c4d4c655867356971386b365752585a5261049e8201527f326c337042393831427a73475a743225324256696c4342723954494a674b67786104be8201527f365542514446253242566a4b44714e7741414948386a6949664d6e75384b68666104de8201527f584b486f4e3348634134477245786842324155442f795a554d423857547579496104fe8201527f413444634f4b656434397939504249616e426967734d454e38556b30766c547661051e8201527f304a58334e394d795a75544d763573655357413525324238556538504465547261053e8201527f645467474973566d4e33635856586a6463795275633434385866664176506e7361055e8201527f3575324d4531722532426a4731703137767a3849704f416e483444427367793361057e8201527f512f54376b33646d2f3846334232377355694877464631414f6c683055646e4961059e8201527f4471494e5164506355393145786f2f346252696a6a5169704e4e307a4c646c7a6105be8201527f504438496f547449734c38717162746f4f5149514a5a567849705931315073536105de8201527f55533231397a4c585066642f507667765751346372464d2532425769755671706105fe8201527f645a6f4e6475645872632f4745324d4a36656e3575635746694763375274364f61061e8201527f487676354d674c2532427a44733578444277696141315433554877326b63594361063e8201527f312f55666453316645316d37763742346537653350574848786533594f32483561065e8201527f25324241504f5a7965503025324251506553425468793078713965363241486a61067e8201527f6141556842432f364144484c6f476f4f657636412532426867487369317a613861069e8201527f71355a4e4d716a596c575a4d713867354248445574495370574a73526f52544a6106be8201527f56613049305a3957546b5371564b73507a3464586a7648746449684c6e7670746106de8201527f554c4330753542567579414d544b4a513930594b5267546e5769476b6d7153456106fe8201527f714b6d7256685259674b6b335443686255573671456f45637665577a6859535461071e8201527f4c32484e706735452f6d7151393956564467763352475435586d33637a68754c61073e8201527f3972685864316132372f736c5130686959366a643739614f5a43746a6f52687261075e8201527f623136575676514b725734477a786a7869723238494d697a2f7155447973495761077e8201527f7037516a667765347a556437614a735651575179524c554b484b42577938577661079e8201527f45565333584d53353656337757644f442532424638757639645477496d4b722f6107be8201527f5064626d5763775176456641616a7975566a70784e32704f56635769336c38776107de8201527f454c2f6d395070646f55494536253242504b5838315041546d67654f304231736107fe8201527f47454825324261707a353466646d534a7a333741686635366a4c7739756e504561081e8201527f35644d4b3025324237544639563843435466523979664e7355493474557a464661083e8201527f42326e536e384b4f626a64446964554c7034494a6873777878595172595a643661085e8201527f4e76436e55394d445825324252654c6e4d546d6c315a453972306b5077334e3261087e8201527f6752253242736a4573596d4953706b356c31497333594e614a4b6f6e7a65703761089e8201527f56637354316e556b62347048774b5a41796b614b6f43504630506f6d456876496108be8201527f5758656e6f5a767836774f4b313070316c3274546858793850316555776473766108de8201527f53715157766f424d7473674851554a614774494273756861776450545a5378596108fe8201527f707257757734647a7231564755744449465871726f4d4d69597346783857695461091e8201527f336463574b6f376d50554c79715657413972305974524a4c626957766a6e4c2561093e8201527f324272633452646767624e516c514141613264306d616236364d48447074314361095e8201527f6477626b51436253375053445a4d7a3746724f51713165636153304a6c74644161097e8201527f6c44527941587173364130586247707748676b70367572557757416272464d3361099e8201527f75794d764e4b6c344d6c435548537950416d3931776144454a3559595148754a6109be8201527f4d32304b575251737637486b61334770686c533258444b714f4b4245554753316109de8201527f65306b63316f323449494166486c4449794278584a4a656767423369386174566109fe8201527f67434f3064444f5a484a57596a564c416a6a397137765673456e72684b374568610a1e8201527f4c75427a42586d4d674554634531636d61436976504b6f4a766670466c794935610a3e8201527f4d70584234454325324245672f596d303454787843354e6c73596b74646f5951610a5e8201527f55656c38624673456c3748345a36734377622f38626b347458574658504b6a71610a7e8201527f5462526e64336e4c5770394f784941706c664b586747684e6c72443462354a4c610a9e8201527f5a367055753441726756614d366561357844574244476f7a707a4641376e6747610abe8201527f74596334486141775269475576637653653652414177335a576b564f4667764b610ade8201527f46364955696c4d49394964715155345134585264484866736666517770313955610afe8201527f434a49306a5773725433356f5578303678507268473271364d4533554f306c63610b1e8201527f635a557354454351784a44527854444b6c334c4948722f6162546f73686c6466610b3e8201527f51786a364f57745273466e6966444373473674336b426f344e6d424a6d615556610b5e8201527f54636c794951414a4c6a6e723042365a3859464d6e396b397967703752727848610b7e8201527f36766877624a4e41654b4d554436353974386746514a4d5377652f434f624850610b9e8201527f467671484746554e5266253242737245663354584b42725a76676b6369396972610bbe8201527f426d63442f7458616754474358634e68432532424f3539754c706e6673796f71610bde8201527f4c53313238374552776d38666165564f6d3857634437386c5a36594232793938610bfe8201527f5a4c6c4d3972557264324c514e6c324956643454727376675139363079377573610c1e8201527f5965306854506170576a71726c2532425837784665424e54253242315a644a4a610c3e8201527f572532424678745737584e7774634e7a7761672532425256656a6d4a6839656d610c5e8201527f6c495a4b69694e63694b3849554f4d33556a4a376342554e5847505853326c68610c7e8201527f253242687770676f4836567348524f63764569723372585970344c7769435a77610c9e8201527f3176486c43623552314d68623564536e4f326d6e6f475a6f5846315765574757610cbe8201527f6d7a694a314a555534715072306e694a536c4e424331636b4b6d4a6657625877610cde8201527f5577757449547a456d6a776770776142753464525066746a2f4e384143526e64610cfe8201527f616b2f4641674b674c37305058577839767a6b59322532426d34355473496b4c610d1e8201527f3037616f70444e6f676830535262535a534f397a744657516a376e574c676275610d3e8201527f364325324254374b6a44715a3667456e5277674d78306b4c5a77797962514f76610d5e8201527f514130773054782f354a42722f63595a6453574f546a774446364e6f586b796a610d7e8201527f33566a484e4751494e76426a5a734a4a3377466141516d6f5a575a5970416961610d9e8201527f574f466e6e686455524176576b557a77693062677a5a4158796f445545714863610dbe8201527f57307069454c574f777168773365765478444957724e32495371525151454c41610dde8201527f4d32365334486c723548552f48784a43436844424a6b756b6341573856415430610dfe8201527f6770545a544b4e48677a444f7234314751656a4f34677a416e6b577077464752610e1e8201527f43334c625231787a4b434875365635694674674c704f384b51596d5965467868610e3e8201527f4c32643838736469506a2f76306b427a636c51637954735766324d6445394944610e5e8201527f386d5858576a72434b253242354532756e336e6976656973526e726971317548610e7e8201527f594d6a6a69694945304b6466674d6f3163476d6b557254624f30356732737633610e9e8201527f477673525971762f61457736375472644f705435567a4641364131417939634b610ebe8201527f6f44667762544a64445750524e57517354796a6d3772486249734b466b6f4f2f610ede8201527f5a4c4376735966785973337768534338614c49344b765677373773336e347a48610efe8201527f67697061634a6e435362463945727a53357069386343577655597a4f5064327a610f1e8201527f684a2f4750437a53684f453378596c634f3350796164586a54334f6b68706841610f3e8201527f58465853766865544e5355525446565641486f4a6d7949726b6a454b6f517746610f5e8201527f4730303554334158643935764e30446d336d427332786746546c253242513572610f7e8201527f73416a6e744768707a6f62643642374e7a52664e56653130446f4e5639343753610f9e8201527f59646f635252624776636d785456786f61367a717756376d416e773544314745610fbe8201527f5474327a48382532425476514256356e37672f32615768743979794e594c3974610fde8201527f4f42744167384846435945316d4e775432454232467538544968543776565241610ffe8201527f3461587a6e6b3670545a4e6779696f73747749364b654655374c696c7041253261101e8201527f42334234474a794277574d327062466a4876734a3747754f6f616b6a6d46746a61103e8201527f59344c6254396c323239253242453646374c4475577a744c6e333749786b386a61105e8201527f356c42564b33774c7369362f416641756f6a34396c4d6b5653545045396b704761107e8201527f64304c724555534a4941413070596c4178414d642f4e4f46776f4a446458466961109e8201527f307a4f5744422f54464a705666575642574f516274724a556230636c663369256110be8201527f3242575072446f596c65545674564f45306d36793564487444725551776f414c6110de8201527f7455523365585364444d4e785866656a594674764c626c726c4a7777484b2f456110fe8201527f6957504a616b32574b35386e684e6f4c6a615a55475841756f32656f5777464561111e8201527f66612f445334496958717246714779633348726939785132693243352f73357661113e8201527f7a424d30793777334d4473774d3759325247427172464d6778374f696325324261115e8201527f30497a736d5678617a5473305263666a324f3334532f525639503269486f427561117e8201527f6c4b49594244665a46654c53356439725379664a64536c67683268644d72324f61119e8201527f5552334b6e6c506e4f41785477314a384c4d325a776e4671765a745a4a6c78786111be8201527f343873776243743272316b664875443756624831326159383849437456734b786111de8201527f4b742f31726b616c42414d74782f6f6f6d43445059626b556f4c6344624b436a6111fe8201527f7675713953544467746a584744715735564b36686347654f46697a6a3643714c61121e8201527f4f49716b57783477733245504d444e7378253242613661533230384f39784c3061123e8201527f526146586f394241645530706e452532424c695359334b536f4a41525978646e61125e8201527f7a69545a4d706961442f3438496969393834446151357976656378414673735761127e8201527f792f686274696d63253242704c386b35796f70496d4a627948712f6138797a6c61129e8201527f6c37726f4f7a586d786d4163337459585363546b65734d6344324939315a36336112be8201527f6549312f394a627755716b36737863394b52677277574d414e6543314e6e39756112de8201527f4779775473706d5538712532426c5a6d43714d674153363662674841476a514b6112fe8201527f73754a334451416a5235346d356a4c7a5a616e546c62646530253242726e663461131e8201527f385a574138546c32673277414779427748516e3552322532424e6a726542677861133e8201527f626c734e46627554776d6862414a48737a2f72416f61764c4f34317874767a5961135e8201527f4768336e4c4a426b41506a7578424a445248333048426575385567436978464e61137e8201527f437951322f4b253242385157372f6530253242664f2532423436524e5730657961139e8201527f4c726f39446a5467704a4e4d3547385179306c54644f756d73773066715045696113be8201527f393646702532424830634d774e6f376a787a596d6e4e664d5a6d64506c7932706113de8201527f6f7132575065476d67507136474c78504e34536c4b486e7870624f69754c58516113fe8201527f75583155715031676a6f38426136536c55314f416d5267707a7531735444584a61141e8201527f50754d3338546f387130344c324e777970653837327777556741675a6c70386461143e8201527f6b5166397a38544d43624d6b596b3758484375333564375a5a41656f346b5a4b61145e8201527f68784953386945354c546a334c4f6976485a7268394a3870337a4c5a436a776361147e8201527f6970354452694b6e576e49664c33386b4a684d7452776a67553525324256726d61149e8201527f714b6c6739307a376a64732f4238444b646b464c76483353253242376f4838616114be8201527f6c445a6c626734533155583574434d445342324f364b756c7a41344b763067376114de8201527f314251643054464b7733685358696e62374e6c304258725873514e6376436b386114fe8201527f6d6f394f786965783559627a78564e2f6b3738336f48545a495777393079495a61151e8201527f777672697164475473586e54384965705437597946434f4a6741395a3042794961153e8201527f455956735478522f6b73616b324268376f4b767034766e695530364d57317a4261155e8201527f4672746568647a306b6b587951786a426d7965645636644d596545386146787461157e8201527f6575777355466136466c6c54446c716430707a525a77473663467266574d627061159e8201527f384738587a6a66624d253242354658657076356f457273696c363458783663376115be8201527f5841576275696d3666387347494d58666f334a6971476b703333376854536a676115de8201527f65636862364f42472f327a31376a6f6d4469476d253242476c623146553069656115fe8201527f6e7552796977654c576767447a6d4655765545556a5a6f377356544877684f4661161e8201527f504d6b4e737146423977796d6b45307639666d7477453854377135384e594f3761163e8201527f787534623833766e46766c35755378446c472532426b4f51675249644f346a6761165e8201527f7a786a53486a4b4c7332742f6c684f647771766131415744437072763344345361167e8201527f34523741625934544362664b4637744265363554343551347a7a49714433316161169e8201527f79797557716a692532424636585337535439483943314f342f694b366b4775766116be8201527f6b512f664e3537487837456533373435622f76766e2f62482f58253242392f256116de8201527f32426762656d684f416d49705576755157757344764b517578394a44564e734b6116fe8201527f673651636d6b73515341445530346347524c523768466f5a326337785545664761171e8201527f253242776b755459474d764c6a422f6550634936416847686e5735717a45416961173e8201527f4a586377564545775869654e70536c317a6a457253253242435325324248634c61175e8201527f6f52506d7661324d6767412f69794c67536f544a555767733442794149514f3061177e8201527f4f6f705a487656627a6844494c65557155677a7a48492f667950474e7879777361179e8201527f6f796c6865534639577662795363336b4544716b32415636436c4364635535536117be8201527f6e6c4e6e4963394b794d63384c79622532423867484f4a795173466c4c6250526117de8201527f796d6d374a42743349545a544162314732444252496b514b51705451396939626117fe8201527f3665435353387a4d366161525364544b5657524d336663454a4c644b61746e7361181e8201527f724959774e4a55253242733048364461757832775a35686733706c653042474861183e8201527f756b316b4543734859446461496d4b7025324233463542317859763763486b7161185e8201527f644475306a4b645273657a3531376d63563641685148346931484e3173766c6a61187e8201527f5248366845454672682532426e72726d47316e33307a4d346749776d694d774561189e8201527f624b6842545564423141486f582532424b6741517a4f48543946494f71436b526118be8201527f4e4e623273397170496943534f753167576868497343564a73765771457175356118de8201527f47624a514b4e6a61427465394c4f69676368414a7665475773394332323033766118fe8201527f6f6e476c6b77725251323464646732796345646157554456734441785548734961191e8201527f77773665615234464665336d4a416b66426d5a6452395264774a485a6d47645261193e8201527f7950436a706a627a31712f584a34534949446b66384b4b6e6e32456c4b6d794c61195e8201527f69573442513836733151554b2f76426867524e776548766c5968687a7238706361197e8201527f67704b4b6d6f61576a7036426b594f48446c7835734b5647336365474539657661199e8201527f506e773563646667454242676f554946536238587632504553314772446a78456119be8201527f69524b6b697846716a54704d6d544b6b693148726a7a354368517155717845716119de8201527f544c6c4b6c53715571314772547231476a527130717846717a62744f6e5347656119fe8201527f3668374a6d627a4968355a6544696c315a58536a7430774375616b336c6e476f611a1e8201527f5655506f53734e663337394b326a6274716d44674d69485a42665a6c68324839611a3e8201527f75773738495469314a466a585653662f4336634f55667a346f30644178305447611a5e8201527f777448446863666a3443516d49694531444d5a42546b6c4e5a557065566f614f611a7e8201527f6e717633733234314e50503965766574594768435a50576a4979747332706173611a9e8201527f436a25324270556a54596c336b615574374f744b4a6136355850396d356e6367611abe8201527f364e686a685a587032762532426d57724341545a754a303368316b6a55756976611ade8201527f5067596e6a6e35744b4a4f6b326e6362703251414559585a69304b496d50356b611afe8201527f744961466e366b5a397743253237253239253230666f726d6174253238253237611b1e8201527f776f666632253237253239253342666f6e742d7765696768742533412532306e611b3e8201527f6f726d616c253342666f6e742d7374796c652533412532306e6f726d616c2533611b5e8201527f42666f6e742d646973706c617925334125323073776170253342253744746578611b7e8201527f74253230253742666f6e742d66616d696c792533412532302532375072657373611b9e8201527f2532305374617274253230325025323725334266696c6c253341253230776869611bbe8201527f74652537442e76616c7565253230253742666f6e742d73697a65253341253230611bde8201527f313070782533422537442e6e616d65253230253742666f6e742d73697a652533611bfe8201527f412532303470782533422537442533432f7374796c652533452533432f646566611c1e8201527f7325334525334372656374253230776964746825334425323738392532372532611c3e8201527f30686569676874253344253237353525323725323066696c6c25334425323762611c5e8201527f6c61636b2532372532302f253345253343726563742532307825334425323735611c7e8201527f2e3525323725323079253344253237352e352532372532307769647468253344611c9e8201527f2532373738253237253230686569676874253344253237343425323725323066611cbe8201527f696c6c2533442532372532333030303046462532372532302f25334525334374611cde8201527f657874253230746578742d616e63686f722533442532376d6964646c65253237611cfe8201527f2532307825334425323734342e35253237253230792533442532373333253237611d1e8201527f253230636c61737325334425323776616c756525323725334500000000000000611d3e820152612ba5612b9e6129f5611d5784018a61055b565b7f2533432f746578742533452533437265637425323078253344253237352e352581527f323725323079253344253237352e35253237253230776964746825334425323760208201527f373825323725323068656967687425334425323734342532372532307374726f60408201527f6b652533442532372532334646344630412532372532307374726f6b652d776960608201527f647468253344253237332532372532302f25334525334372656374253230782560808201527f334425323733302532372532307925334425323734352e35253237253230776960a08201527f647468253344253237353825323725323068656967687425334425323738253260c08201527f3725323066696c6c2533442532372532334646344630412532372532302f253360e08201527f4525334374657874253230746578742d616e63686f72253344253237656e64256101008201527f32372532307825334425323738372532372532307925334425323735322532376101208201527f253230636c6173732533442532376e616d6525323725334500000000000000006101408201526101580190565b86886105e3565b602160f81b81529050612bbb600182018561055b565b7f2533432f746578742533452533432f737667253345227d00000000000000000081526017019a995050505050505050505056fea26469706673582212206a2c00c13ddb4f1bcd7ee36e36f0c874d7d9dadcf38306eab3610b5a6e7af83464736f6c63430008110033", + "nonce": "0x2", + "accessList": [] + }, + "additionalContracts": [], + "isFixedGasLimit": false + }, + { + "hash": "0x3de75e0187d1300847016f9712d9bad87f0de9d06ecc20887ff85b8562563c90", + "transactionType": "CREATE", + "contractName": null, + "contractAddress": "0xCf7Ed3AccA5a467e9e704C703E8D87F634fB0Fc9", + "function": null, + "arguments": null, + "transaction": { + "type": "0x02", + "from": "0xf39fd6e51aad88f6f4ce6ab8827279cfffb92266", + "gas": "0x42230", + "value": "0x0", + "data": "0x608060405234801561001057600080fd5b506102cf806100206000396000f3fe608060405234801561001057600080fd5b506004361061004c5760003560e01c80630194db8e14610051578063072bdcc214610076578063a391c15b14610089578063b67d77c51461009c575b600080fd5b61006461005f366004610160565b6100af565b60405190815260200160405180910390f35b610064610084366004610160565b6100ef565b61006461009736600461021e565b610129565b6100646100aa36600461021e565b61013e565b600080805b83518110156100e8578381815181106100cf576100cf610240565b60200260200101518201915080806001019150506100b4565b5092915050565b60006001815b83518110156100e85783818151811061011057610110610240565b60200260200101518202915080806001019150506100f5565b60006101358284610256565b90505b92915050565b60006101358284610278565b634e487b7160e01b600052604160045260246000fd5b6000602080838503121561017357600080fd5b823567ffffffffffffffff8082111561018b57600080fd5b818501915085601f83011261019f57600080fd5b8135818111156101b1576101b161014a565b8060051b604051601f19603f830116810181811085821117156101d6576101d661014a565b6040529182528482019250838101850191888311156101f457600080fd5b938501935b82851015610212578435845293850193928501926101f9565b98975050505050505050565b6000806040838503121561023157600080fd5b50508035926020909101359150565b634e487b7160e01b600052603260045260246000fd5b60008261027357634e487b7160e01b600052601260045260246000fd5b500490565b8181038181111561013857634e487b7160e01b600052601160045260246000fdfea2646970667358221220fcdef23ba4219270ddb3ab764e22a87e229c05e6f1dfc4eeea983fa1a1dac91f64736f6c63430008110033", + "nonce": "0x3", + "accessList": [] + }, + "additionalContracts": [], + "isFixedGasLimit": false + }, + { + "hash": "0x23920b9c19eb93f2625d1be96a6b29fe823e372c1aa5d9a091dbefe512743d33", + "transactionType": "CREATE", + "contractName": "Evmsheet", + "contractAddress": "0xDc64a140Aa3E981100a9becA4E685f962f0cF6C9", + "function": null, + "arguments": [ + "0x9fE46736679d2D9a65F0992F2272dE9f3c7fa6e0", + "10000000000000000" + ], + "transaction": { + "type": "0x02", + "from": "0xf39fd6e51aad88f6f4ce6ab8827279cfffb92266", + "gas": "0x359c65", + "value": "0x0", + "data": "0x608060405234801561001057600080fd5b50604051612fa3380380612fa383398101604081905261002f916100b1565b61003833610061565b600280546001600160a01b0319166001600160a01b0393909316929092179091556001556100eb565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b600080604083850312156100c457600080fd5b82516001600160a01b03811681146100db57600080fd5b6020939093015192949293505050565b612ea9806100fa6000396000f3fe608060405260043610620000b95760003560e01c80638da5cb5b116200006c5780638da5cb5b146200019d578063ab2fa65a14620001bd578063ae28505e14620001e4578063c56c4cf11462000209578063f2fde38b146200022b578063f52be2a2146200025057600080fd5b806303fb31e814620000c65780631164c83d14620000ed578063145e414714620001045780633ccfd60b14620001465780635787cacb146200015e578063715018a6146200018557600080fd5b36620000c157005b600080fd5b348015620000d357600080fd5b50620000eb620000e536600462000842565b62000277565b005b620000eb620000fe366004620008b3565b620002a3565b3480156200011157600080fd5b5062000129620001233660046200092e565b620004e2565b6040516001600160a01b0390911681526020015b60405180910390f35b3480156200015357600080fd5b50620000eb6200057f565b3480156200016b57600080fd5b50620001766200061c565b6040516200013d91906200095b565b3480156200019257600080fd5b50620000eb62000680565b348015620001aa57600080fd5b506000546001600160a01b031662000129565b348015620001ca57600080fd5b50620001d562000698565b6040516200013d9190620009aa565b348015620001f157600080fd5b506200012962000203366004620009fa565b620006c4565b3480156200021657600080fd5b5060025462000129906001600160a01b031681565b3480156200023857600080fd5b50620000eb6200024a36600462000842565b620006ef565b3480156200025d57600080fd5b506200026860015481565b6040519081526020016200013d565b620002816200076b565b600280546001600160a01b0319166001600160a01b0392909216919091179055565b6001543414620002cd5760405163723a79e360e11b81523460048201526024015b60405180910390fd5b600060405180602001620002e19062000817565b6020820181038252601f19601f8201166040525090506000828251602084016000f56002546040516356d3163d60e01b81526001600160a01b0391821660048201529192508216906356d3163d90602401600060405180830381600087803b1580156200034d57600080fd5b505af115801562000362573d6000803e3d6000fd5b505060405163c47f002760e01b81526001600160a01b038416925063c47f0027915062000396908a908a9060040162000a14565b600060405180830381600087803b158015620003b157600080fd5b505af1158015620003c6573d6000803e3d6000fd5b5050604051635c26412360e11b81526001600160a01b038416925063b84c82469150620003fa908890889060040162000a14565b600060405180830381600087803b1580156200041557600080fd5b505af11580156200042a573d6000803e3d6000fd5b505060405163f2fde38b60e01b81523260048201526001600160a01b038416925063f2fde38b9150602401600060405180830381600087803b1580156200047057600080fd5b505af115801562000485573d6000803e3d6000fd5b5050600380546001810182556000919091527fc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b0180546001600160a01b0319166001600160a01b0394909416939093179092555050505050505050565b600060ff60f81b838360405180602001620004fd9062000817565b6020820181038252601f19601f82011660405250805190602001206040516020016200056094939291906001600160f81b031994909416845260609290921b6bffffffffffffffffffffffff191660018401526015830152603582015260550190565b60408051601f1981840301815291905280516020909101209392505050565b620005896200076b565b604051600090339047908381818185875af1925050503d8060008114620005cd576040519150601f19603f3d011682016040523d82523d6000602084013e620005d2565b606091505b5050905080620006195760405162461bcd60e51b815260206004820152601160248201527015da5d1a191c985dd85b0819985a5b1959607a1b6044820152606401620002c4565b50565b606060038054806020026020016040519081016040528092919081815260200182805480156200067657602002820191906000526020600020905b81546001600160a01b0316815260019091019060200180831162000657575b5050505050905090565b6200068a6200076b565b620006966000620007c7565b565b606060405180602001620006ac9062000817565b601f1982820381018352601f90910116604052919050565b60038181548110620006d557600080fd5b6000918252602090912001546001600160a01b0316905081565b620006f96200076b565b6001600160a01b038116620007605760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401620002c4565b6200061981620007c7565b6000546001600160a01b03163314620006965760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401620002c4565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b6124308062000a4483390190565b80356001600160a01b03811681146200083d57600080fd5b919050565b6000602082840312156200085557600080fd5b620008608262000825565b9392505050565b60008083601f8401126200087a57600080fd5b50813567ffffffffffffffff8111156200089357600080fd5b602083019150836020828501011115620008ac57600080fd5b9250929050565b600080600080600060608688031215620008cc57600080fd5b853567ffffffffffffffff80821115620008e557600080fd5b620008f389838a0162000867565b909750955060208801359150808211156200090d57600080fd5b506200091c8882890162000867565b96999598509660400135949350505050565b600080604083850312156200094257600080fd5b6200094d8362000825565b946020939093013593505050565b6020808252825182820181905260009190848201906040850190845b818110156200099e5783516001600160a01b03168352928401929184019160010162000977565b50909695505050505050565b600060208083528351808285015260005b81811015620009d957858101830151858201604001528201620009bb565b506000604082860101526040601f19601f8301168501019250505092915050565b60006020828403121562000a0d57600080fd5b5035919050565b60208152816020820152818360408301376000818301604090810191909152601f909201601f1916010191905056fe60806040523480156200001157600080fd5b50604051806040016040528060078152602001660536865657420360cc1b815250604051806040016040528060048152602001630534854360e41b81525062000069620000636200008f60201b60201c565b62000093565b600162000077838262000188565b50600262000086828262000188565b50505062000254565b3390565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b634e487b7160e01b600052604160045260246000fd5b600181811c908216806200010e57607f821691505b6020821081036200012f57634e487b7160e01b600052602260045260246000fd5b50919050565b601f8211156200018357600081815260208120601f850160051c810160208610156200015e5750805b601f850160051c820191505b818110156200017f578281556001016200016a565b5050505b505050565b81516001600160401b03811115620001a457620001a4620000e3565b620001bc81620001b58454620000f9565b8462000135565b602080601f831160018114620001f45760008415620001db5750858301515b600019600386901b1c1916600185901b1785556200017f565b600085815260208120601f198616915b82811015620002255788860151825594840194600190910190840162000204565b5085821015620002445787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b6121cc80620002646000396000f3fe608060405234801561001057600080fd5b50600436106102275760003560e01c8063715018a611610130578063b85d8b85116100b8578063cf0983981161007c578063cf09839814610512578063cfbe95d814610535578063df4ca20614610556578063e985e9c514610576578063f2fde38b146105a457600080fd5b8063b85d8b85146104a4578063b88d4fde146104ce578063b8c368ec146104e1578063c47f0027146104ec578063c87b56dd146104ff57600080fd5b806395d89b41116100ff57806395d89b4114610439578063a22cb46514610441578063b46ebb1214610454578063b6d658e114610467578063b84c82461461049157600080fd5b8063715018a6146103fa578063768d5029146104025780638ada6b0f146104155780638da5cb5b1461042857600080fd5b80631b06443c116101b35780634f6ccce7116101825780634f6ccce71461038157806356d3163d146103a15780636352211e146103b45780636a0abc74146103c757806370a08231146103e757600080fd5b80631b06443c14610335578063206848f61461034857806323b872dd1461035b57806342842e0e1461036e57600080fd5b8063081812fc116101fa578063081812fc146102a1578063095ea7b3146102e2578063172b9eed146102f757806318160ddd1461030a5780631941fd141461031357600080fd5b806301ffc9a71461022c57806302f3c4c91461025457806306fdde03146102745780630715a24a1461027c575b600080fd5b61023f61023a36600461176a565b6105b7565b60405190151581526020015b60405180910390f35b610267610262366004611861565b610609565b60405161024b9190611951565b610267610638565b6102936fffffffffffffffffffffffffffffffff81565b60405190815260200161024b565b6102ca6102af366004611964565b6005602052600090815260409020546001600160a01b031681565b6040516001600160a01b03909116815260200161024b565b6102f56102f036600461197d565b6106c6565b005b6102676103053660046119a9565b6107ad565b61029360075481565b610326610321366004611964565b610875565b60405161024b939291906119de565b6102ca610343366004611a0e565b61092a565b610326610356366004611964565b6109e3565b6102f5610369366004611a2b565b610ae1565b6102f561037c366004611a2b565b610ca8565b61029361038f366004611964565b60086020526000908152604090205481565b6102f56103af366004611a0e565b610da0565b6102ca6103c2366004611964565b610dca565b6103da6103d53660046119a9565b610e1c565b60405161024b9190611a6c565b6102936103f5366004611a0e565b610e60565b6102f5610ec3565b6102f5610410366004611af9565b610ed7565b6009546102ca906001600160a01b031681565b6000546001600160a01b03166102ca565b610267611035565b6102f561044f366004611b63565b611042565b610267610462366004611964565b6110ae565b61047a610475366004611964565b611258565b60408051921515835260208301919091520161024b565b6102f561049f366004611ba1565b611275565b6104b56104b2366004611964565b90565b6040516001600160e01b0319909116815260200161024b565b6102f56104dc366004611be3565b6112c6565b6102ca600160801b81565b6102f56104fa366004611ba1565b6113ae565b61026761050d366004611964565b6113ff565b61023f610520366004611a0e565b600160801b6001600160a01b03919091161090565b61023f610543366004611861565b516001600160a01b0316600160801b1490565b610569610564366004611964565b6114c9565b60405161024b9190611c16565b61023f610584366004611c4d565b600660209081526000928352604080842090915290825290205460ff1681565b6102f56105b2366004611a0e565b611526565b60006301ffc9a760e01b6001600160e01b0319831614806105e857506380ac58cd60e01b6001600160e01b03198316145b806106035750635b5e139f60e01b6001600160e01b03198316145b92915050565b6060816020015160405160200161062291815260200190565b6040516020818303038152906040529050919050565b6001805461064590611c7b565b80601f016020809104026020016040519081016040528092919081815260200182805461067190611c7b565b80156106be5780601f10610693576101008083540402835291602001916106be565b820191906000526020600020905b8154815290600101906020018083116106a157829003601f168201915b505050505081565b6000818152600360205260409020546001600160a01b03163381148061070f57506001600160a01b038116600090815260066020908152604080832033845290915290205460ff165b6107515760405162461bcd60e51b815260206004820152600e60248201526d1393d517d055551213d49256915160921b60448201526064015b60405180910390fd5b60008281526005602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b606060006107ba83610e1c565b9050606060005b825181101561086d576000806107ef8584815181106107e2576107e2611cb5565b6020026020010151611258565b9150915081156108335783610803826110ae565b61080c90611ccb565b60405160200161081d929190611cef565b6040516020818303038152906040529350610858565b6040516108469085908390602001611cef565b60405160208183030381529060405293505b5050808061086590611d27565b9150506107c1565b509392505050565b600a602052600090815260409020805460018201546002830180546001600160a01b039093169391926108a790611c7b565b80601f01602080910402602001604051908101604052809291908181526020018280546108d390611c7b565b80156109205780601f106108f557610100808354040283529160200191610920565b820191906000526020600020905b81548152906001019060200180831161090357829003601f168201915b5050505050905083565b6000600160801b6001600160a01b03831610156109da576000610955836001600160a01b03166110ae565b604051632d737e4960e21b8152909150735fbdb2315678afecb367f032d93f642f64180aa39063b5cdf92490610992908490600090600401611d40565b602060405180830381865af41580156109af573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906109d39190611d62565b9392505050565b5090565b919050565b60008181526003602052604081205481906060906001600160a01b0316610a1057600160801b9250610a2b565b6000848152600a60205260409020546001600160a01b031692505b6000848152600a60205260409020600181015460029091018054859291908190610a5490611c7b565b80601f0160208091040260200160405190810160405280929190818152602001828054610a8090611c7b565b8015610acd5780601f10610aa257610100808354040283529160200191610acd565b820191906000526020600020905b815481529060010190602001808311610ab057829003601f168201915b505050505090509250925092509193909250565b6000818152600360205260409020546001600160a01b03848116911614610b375760405162461bcd60e51b815260206004820152600a60248201526957524f4e475f46524f4d60b01b6044820152606401610748565b6001600160a01b038216610b815760405162461bcd60e51b81526020600482015260116024820152701253959053125117d49150d25412515395607a1b6044820152606401610748565b336001600160a01b0384161480610bbb57506001600160a01b038316600090815260066020908152604080832033845290915290205460ff165b80610bdc57506000818152600560205260409020546001600160a01b031633145b610c195760405162461bcd60e51b815260206004820152600e60248201526d1393d517d055551213d49256915160921b6044820152606401610748565b6001600160a01b0380841660008181526004602090815260408083208054600019019055938616808352848320805460010190558583526003825284832080546001600160a01b03199081168317909155600590925284832080549092169091559251849392917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b610cb3838383610ae1565b6001600160a01b0382163b1580610d5c5750604051630a85bd0160e11b8082523360048301526001600160a01b03858116602484015260448301849052608060648401526000608484015290919084169063150b7a029060a4016020604051808303816000875af1158015610d2c573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610d509190611d7b565b6001600160e01b031916145b610d9b5760405162461bcd60e51b815260206004820152601060248201526f155394d0519157d49150d2541251539560821b6044820152606401610748565b505050565b610da861159f565b600980546001600160a01b0319166001600160a01b0392909216919091179055565b6000818152600360205260409020546001600160a01b0316806109de5760405162461bcd60e51b815260206004820152600a6024820152691393d517d3525395115160b21b6044820152606401610748565b60608082516040519150602081048252602082016020850160005b83811015610e4f578181015183820152602001610e37565b505050810160200160405292915050565b60006001600160a01b038216610ea75760405162461bcd60e51b815260206004820152600c60248201526b5a45524f5f4144445245535360a01b6044820152606401610748565b506001600160a01b031660009081526004602052604090205490565b610ecb61159f565b610ed560006115f9565b565b6000858152600360205260409020546001600160a01b0316610f2f57610efd3286611649565b60078054600090815260086020526040812087905581546001929190610f24908490611d98565b90915550610f889050565b6000858152600360205260409020546001600160a01b03163214610f8857600085815260036020526040908190205490516324f3f02560e21b81526001600160a01b039091166004820152326024820152604401610748565b6040518060600160405280856001600160a01b0316815260200184815260200183838080601f0160208091040260200160405190810160405280939291908181526020018383808284376000920182905250939094525050878152600a6020908152604091829020845181546001600160a01b0319166001600160a01b0390911617815590840151600182015590830151909150600282019061102b9082611df9565b5050505050505050565b6002805461064590611c7b565b3360008181526006602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b6000818152600a6020908152604080832081516060818101845282546001600160a01b0316825260018301549482019490945260028201805494959491938401916110f890611c7b565b80601f016020809104026020016040519081016040528092919081815260200182805461112490611c7b565b80156111715780601f1061114657610100808354040283529160200191611171565b820191906000526020600020905b81548152906001019060200180831161115457829003601f168201915b505050505081525050905061119381516001600160a01b0316600160801b1490565b156111a1576109d381610609565b60006111b0826000015161092a565b905060006111bf836020015190565b905060006111d084604001516107ad565b90506000836001600160a01b031683836040516020016111f1929190611eb9565b60408051601f198184030181529082905261120b91611eea565b600060405180830381855afa9150503d8060008114611246576040519150601f19603f3d011682016040523d82523d6000602084013e61124b565b606091505b5098975050505050505050565b600080611266600284611f06565b60019081149493901c92915050565b61127d61159f565b7f8dca0271872d00b3de3abafca544c52fcd7d512dd852c9894fa2c118ac759a93600283836040516112b193929190611fce565b60405180910390a16002610d9b828483611ffe565b6112d1858585610ae1565b6001600160a01b0384163b15806113685750604051630a85bd0160e11b808252906001600160a01b0386169063150b7a02906113199033908a908990899089906004016120be565b6020604051808303816000875af1158015611338573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061135c9190611d7b565b6001600160e01b031916145b6113a75760405162461bcd60e51b815260206004820152601060248201526f155394d0519157d49150d2541251539560821b6044820152606401610748565b5050505050565b6113b661159f565b7fb65b7b5ea384affd30f77f842e057d29dd1b13f133adf69a724a8105b164ab75600183836040516113ea93929190611fce565b60405180910390a16001610d9b828483611ffe565b6000818152600360205260409020546060906001600160a01b03168061143b57604051630243d1a960e21b815260048101849052602401610748565b6000611446846110ae565b6009546040516328de0f2f60e01b81529192506001600160a01b0316906328de0f2f9061147c90879085906001906004016120fd565b600060405180830381865afa158015611499573d6000803e3d6000fd5b505050506040513d6000823e601f3d908101601f191682016040526114c19190810190612128565b949350505050565b604080516060808201835260008083526020830181905292820152906114ee836110ae565b6040805160608101825285815260009586526003602090815295829020546001600160a01b0316958101959095528401525090919050565b61152e61159f565b6001600160a01b0381166115935760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610748565b61159c816115f9565b50565b6000546001600160a01b03163314610ed55760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610748565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b6001600160a01b0382166116935760405162461bcd60e51b81526020600482015260116024820152701253959053125117d49150d25412515395607a1b6044820152606401610748565b6000818152600360205260409020546001600160a01b0316156116e95760405162461bcd60e51b815260206004820152600e60248201526d1053149150511657d3525395115160921b6044820152606401610748565b6001600160a01b038216600081815260046020908152604080832080546001019055848352600390915280822080546001600160a01b0319168417905551839291907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b6001600160e01b03198116811461159c57600080fd5b60006020828403121561177c57600080fd5b81356109d381611754565b634e487b7160e01b600052604160045260246000fd5b604051601f8201601f1916810167ffffffffffffffff811182821017156117c6576117c6611787565b604052919050565b6001600160a01b038116811461159c57600080fd5b600067ffffffffffffffff8211156117fd576117fd611787565b50601f01601f191660200190565b600082601f83011261181c57600080fd5b813561182f61182a826117e3565b61179d565b81815284602083860101111561184457600080fd5b816020850160208301376000918101602001919091529392505050565b60006020828403121561187357600080fd5b813567ffffffffffffffff8082111561188b57600080fd5b908301906060828603121561189f57600080fd5b6040516060810181811083821117156118ba576118ba611787565b60405282356118c8816117ce565b8152602083810135908201526040830135828111156118e657600080fd5b6118f28782860161180b565b60408301525095945050505050565b60005b8381101561191c578181015183820152602001611904565b50506000910152565b6000815180845261193d816020860160208601611901565b601f01601f19169290920160200192915050565b6020815260006109d36020830184611925565b60006020828403121561197657600080fd5b5035919050565b6000806040838503121561199057600080fd5b823561199b816117ce565b946020939093013593505050565b6000602082840312156119bb57600080fd5b813567ffffffffffffffff8111156119d257600080fd5b6114c18482850161180b565b60018060a01b0384168152826020820152606060408201526000611a056060830184611925565b95945050505050565b600060208284031215611a2057600080fd5b81356109d3816117ce565b600080600060608486031215611a4057600080fd5b8335611a4b816117ce565b92506020840135611a5b816117ce565b929592945050506040919091013590565b6020808252825182820181905260009190848201906040850190845b81811015611aa457835183529284019291840191600101611a88565b50909695505050505050565b60008083601f840112611ac257600080fd5b50813567ffffffffffffffff811115611ada57600080fd5b602083019150836020828501011115611af257600080fd5b9250929050565b600080600080600060808688031215611b1157600080fd5b853594506020860135611b23816117ce565b935060408601359250606086013567ffffffffffffffff811115611b4657600080fd5b611b5288828901611ab0565b969995985093965092949392505050565b60008060408385031215611b7657600080fd5b8235611b81816117ce565b915060208301358015158114611b9657600080fd5b809150509250929050565b60008060208385031215611bb457600080fd5b823567ffffffffffffffff811115611bcb57600080fd5b611bd785828601611ab0565b90969095509350505050565b600080600080600060808688031215611bfb57600080fd5b8535611c06816117ce565b94506020860135611b23816117ce565b602081528151602082015260018060a01b036020830151166040820152600060408301516060808401526114c16080840182611925565b60008060408385031215611c6057600080fd5b8235611c6b816117ce565b91506020830135611b96816117ce565b600181811c90821680611c8f57607f821691505b602082108103611caf57634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052603260045260246000fd5b80516020808301519190811015611caf5760001960209190910360031b1b16919050565b60008351611d01818460208801611901565b9190910191825250602001919050565b634e487b7160e01b600052601160045260246000fd5b600060018201611d3957611d39611d11565b5060010190565b604081526000611d536040830185611925565b90508260208301529392505050565b600060208284031215611d7457600080fd5b5051919050565b600060208284031215611d8d57600080fd5b81516109d381611754565b8082018082111561060357610603611d11565b601f821115610d9b57600081815260208120601f850160051c81016020861015611dd25750805b601f850160051c820191505b81811015611df157828155600101611dde565b505050505050565b815167ffffffffffffffff811115611e1357611e13611787565b611e2781611e218454611c7b565b84611dab565b602080601f831160018114611e5c5760008415611e445750858301515b600019600386901b1c1916600185901b178555611df1565b600085815260208120601f198616915b82811015611e8b57888601518255948401946001909101908401611e6c565b5085821015611ea95787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b6001600160e01b0319831681528151600090611edc816004850160208701611901565b919091016004019392505050565b60008251611efc818460208701611901565b9190910192915050565b600082611f2357634e487b7160e01b600052601260045260246000fd5b500690565b60008154611f3581611c7b565b808552602060018381168015611f525760018114611f6c57611f9a565b60ff1985168884015283151560051b880183019550611f9a565b866000528260002060005b85811015611f925781548a8201860152908301908401611f77565b890184019650505b505050505092915050565b81835281816020850137506000828201602090810191909152601f909101601f19169091010190565b604081526000611fe16040830186611f28565b8281036020840152611ff4818587611fa5565b9695505050505050565b67ffffffffffffffff83111561201657612016611787565b61202a836120248354611c7b565b83611dab565b6000601f84116001811461205e57600085156120465750838201355b600019600387901b1c1916600186901b1783556113a7565b600083815260209020601f19861690835b8281101561208f578685013582556020948501946001909201910161206f565b50868210156120ac5760001960f88860031b161c19848701351681555b505060018560011b0183555050505050565b6001600160a01b03868116825285166020820152604081018490526080606082018190526000906120f29083018486611fa5565b979650505050505050565b8381526060602082015260006121166060830185611925565b8281036040840152611ff48185611f28565b60006020828403121561213a57600080fd5b815167ffffffffffffffff81111561215157600080fd5b8201601f8101841361216257600080fd5b805161217061182a826117e3565b81815285602083850101111561218557600080fd5b611a0582602083016020860161190156fea26469706673582212203fc548aa4f22e6f4c01757ba3f2e0383630418b3d17601758718ab19a4d9918d64736f6c63430008110033a26469706673582212209e83cd58ddf7490a5e9063ba15e58223313812c3a6c47d72275d015b711c8b9464736f6c634300081100330000000000000000000000009fe46736679d2d9a65f0992f2272de9f3c7fa6e0000000000000000000000000000000000000000000000000002386f26fc10000", + "nonce": "0x4", + "accessList": [] + }, + "additionalContracts": [], + "isFixedGasLimit": false + } + ], + "receipts": [ + { + "transactionHash": "0xfb04d6c6b1e9f9378a1ec3cfd8f86c712379c2a9a898c24d0ae06ead6fb87858", + "transactionIndex": "0x0", + "blockHash": "0x3b1301e30c6ff5b0c8781d75f4759583b247d1f2b0a36c3b5dd0e89d3e0a9a19", + "blockNumber": "0x1", + "from": "0xf39Fd6e51aad88F6F4ce6aB8827279cffFb92266", + "to": null, + "cumulativeGasUsed": "0xf072b", + "gasUsed": "0xf072b", + "contractAddress": "0x5FbDB2315678afecb367f032d93F642f64180aa3", + "logs": [], + "status": "0x1", + "logsBloom": "0x00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", + "type": "0x2", + "effectiveGasPrice": "0xee6b2800" + }, + { + "transactionHash": "0x3eed361770e2dcc9a97a4cdf1a955543fd69a6096e37bb0e257a7208a08c6dde", + "transactionIndex": "0x0", + "blockHash": "0xb616f175d2fd7546049430932edf2c2bb149f8fde22ef0131180c0fc23bb1b3b", + "blockNumber": "0x2", + "from": "0xf39Fd6e51aad88F6F4ce6aB8827279cffFb92266", + "to": null, + "cumulativeGasUsed": "0x23ab5", + "gasUsed": "0x23ab5", + "contractAddress": "0xe7f1725E7734CE288F8367e1Bb143E90bb3F0512", + "logs": [], + "status": "0x1", + "logsBloom": "0x00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", + "type": "0x2", + "effectiveGasPrice": "0xe7750a7c" + }, + { + "transactionHash": "0xfa26a5b6e297a0b5aa632035548d06ea04efb783d4713353476f25876c532b2a", + "transactionIndex": "0x0", + "blockHash": "0xb98fdef96dbe35e90cc5893d8a792b8e19027d9757e13f652f2d8ef24d94cae6", + "blockNumber": "0x3", + "from": "0xf39Fd6e51aad88F6F4ce6aB8827279cffFb92266", + "to": null, + "cumulativeGasUsed": "0x2616fd", + "gasUsed": "0x2616fd", + "contractAddress": "0x9fE46736679d2D9a65F0992F2272dE9f3c7fa6e0", + "logs": [], + "status": "0x1", + "logsBloom": "0x00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", + "type": "0x2", + "effectiveGasPrice": "0xe0f0dd5d" + }, + { + "transactionHash": "0x3de75e0187d1300847016f9712d9bad87f0de9d06ecc20887ff85b8562563c90", + "transactionIndex": "0x1", + "blockHash": "0xb98fdef96dbe35e90cc5893d8a792b8e19027d9757e13f652f2d8ef24d94cae6", + "blockNumber": "0x3", + "from": "0xf39Fd6e51aad88F6F4ce6aB8827279cffFb92266", + "to": null, + "cumulativeGasUsed": "0x29452b", + "gasUsed": "0x32e2e", + "contractAddress": "0xCf7Ed3AccA5a467e9e704C703E8D87F634fB0Fc9", + "logs": [], + "status": "0x1", + "logsBloom": "0x00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", + "type": "0x2", + "effectiveGasPrice": "0xe0f0dd5d" + }, + { + "transactionHash": "0x23920b9c19eb93f2625d1be96a6b29fe823e372c1aa5d9a091dbefe512743d33", + "transactionIndex": "0x0", + "blockHash": "0x47275512029795a7cd066e82f9401adb98a546490f39daded3e3c36062fa15b3", + "blockNumber": "0x4", + "from": "0xf39Fd6e51aad88F6F4ce6aB8827279cffFb92266", + "to": null, + "cumulativeGasUsed": "0x29403a", + "gasUsed": "0x29403a", + "contractAddress": "0xDc64a140Aa3E981100a9becA4E685f962f0cF6C9", + "logs": [ + { + "address": "0xDc64a140Aa3E981100a9becA4E685f962f0cF6C9", + "topics": [ + "0x8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0", + "0x0000000000000000000000000000000000000000000000000000000000000000", + "0x000000000000000000000000f39fd6e51aad88f6f4ce6ab8827279cfffb92266" + ], + "data": "0x", + "blockHash": "0x47275512029795a7cd066e82f9401adb98a546490f39daded3e3c36062fa15b3", + "blockNumber": "0x4", + "transactionHash": "0x23920b9c19eb93f2625d1be96a6b29fe823e372c1aa5d9a091dbefe512743d33", + "transactionIndex": "0x0", + "logIndex": "0x0", + "transactionLogIndex": "0x0", + "removed": false + } + ], + "status": "0x1", + "logsBloom": "0x00000000000000000000000000000000000000000000000000800000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000020000000000000100000800000000000000000000000000000000400000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000200000000000000000000000002020000000000000000020000000000000000000000000000000000000000001000000000100000000000000", + "type": "0x2", + "effectiveGasPrice": "0xdc36f45d" + } + ], + "libraries": [ + "lib/eth-projects-monorepo/packages/eth-projects-contracts/contracts/lib/utils/Bytes.sol:Bytes:0x5fbdb2315678afecb367f032d93f642f64180aa3" + ], + "pending": [], + "returns": {}, + "timestamp": 1689866385, + "chain": 31337, + "multi": false, + "commit": "3a46481" +} \ No newline at end of file diff --git a/packages/starksheet-solidity/broadcast/Evmsheet.s.sol/31337/run-1690360749.json b/packages/starksheet-solidity/broadcast/Evmsheet.s.sol/31337/run-1690360749.json new file mode 100644 index 00000000..b29729fe --- /dev/null +++ b/packages/starksheet-solidity/broadcast/Evmsheet.s.sol/31337/run-1690360749.json @@ -0,0 +1,209 @@ +{ + "transactions": [ + { + "hash": "0xe21ef7e42433d76a4c679118aa02cf18a8dfe35d0aa1d9620d5c2b562d98f26f", + "transactionType": "CREATE", + "contractName": "Bytes", + "contractAddress": "0x5FbDB2315678afecb367f032d93F642f64180aa3", + "function": null, + "arguments": null, + "transaction": { + "type": "0x02", + "from": "0xf39fd6e51aad88f6f4ce6ab8827279cfffb92266", + "gas": "0x1387dd", + "data": "0x6110d661003a600b82828239805160001a60731461002d57634e487b7160e01b600052600060045260246000fd5b30600052607381538281f3fe73000000000000000000000000000000000000000030146080604052600436106101625760003560e01c8063a5eb31ee116100cd578063d1ffb56111610086578063d1ffb561146103fb578063d442584f1461042b578063e004139614610454578063f1142fb314610474578063f647f8fb14610487578063f83b670f146104b257600080fd5b8063a5eb31ee14610344578063a8d8f00f1461036b578063b5cdf92414610396578063b63711df146103a9578063be8b3430146103bc578063c29616bd146103cf57600080fd5b80635ef849301161011f5780635ef8493014610241578063913c97b41461026b57806397e6175c1461029f57806399dd9bd7146102cb5780639ae4c3d1146102ec5780639cee499e1461031857600080fd5b8063042aa0841461016757806305d3bb74146101985780631a7431ef146101c0578063235266d2146101e357806348137709146101f65780634d66a2ae1461021b575b600080fd5b61017a610175366004610ec0565b6104de565b6040516001600160d01b031990911681526020015b60405180910390f35b6101ab6101a6366004610ec0565b610540565b60405163ffffffff909116815260200161018f565b6101d36101ce366004610f05565b61059d565b604051901515815260200161018f565b6101d36101f1366004610f4c565b610652565b610209610204366004610ec0565b6106b5565b60405160ff909116815260200161018f565b61022e610229366004610fa6565b610711565b60405161ffff909116815260200161018f565b61025461024f366004610ec0565b61071e565b60405165ffffffffffff909116815260200161018f565b61027e610279366004610ec0565b610772565b6040516fffffffffffffffffffffffffffffffff909116815260200161018f565b6102b26102ad366004610ec0565b6107d0565b6040516001600160a01b0319909116815260200161018f565b6102de6102d9366004610ec0565b61082e565b60405190815260200161018f565b6102ff6102fa366004610ec0565b61088c565b60405167ffffffffffffffff909116815260200161018f565b61032b610326366004610ec0565b6108e9565b6040516001600160d81b0319909116815260200161018f565b610357610352366004610ec0565b610946565b60405162ffffff909116815260200161018f565b61037e610379366004610ec0565b6109a3565b60405166ffffffffffffff909116815260200161018f565b6102de6103a4366004610ec0565b610a00565b6102ff6103b7366004610ec0565b610a55565b61022e6103ca366004610ec0565b610aa9565b6103e26103dd366004610ec0565b610b06565b6040516001600160c81b0319909116815260200161018f565b61040e610409366004610ec0565b610b5a565b6040516bffffffffffffffffffffffff909116815260200161018f565b61043e610439366004610ec0565b610bae565b60405164ffffffffff909116815260200161018f565b610467610462366004610fe3565b610c02565b60405161018f9190611031565b6102b2610482366004610ec0565b610d0f565b61049a610495366004610ec0565b610d64565b6040516001600160a01b03909116815260200161018f565b6104c56104c0366004610ec0565b610dc9565b6040516001600160f81b0319909116815260200161018f565b60006104eb82600661107f565b835110156105375760405162461bcd60e51b8152602060048201526014602482015273746f4279746573365f6f75744f66426f756e647360601b60448201526064015b60405180910390fd5b50016006015190565b600061054d82600461107f565b835110156105945760405162461bcd60e51b8152602060048201526014602482015273746f55696e7433325f6f75744f66426f756e647360601b604482015260640161052e565b50016004015190565b600080600190508354600260018083161561010002038216048451808214600181146105cc5760009450610644565b821561064457602083106001811461062957600189600052602060002060208a018581015b600284828410010361062057815183541461060f5760009950600093505b6001830192506020820191506105f1565b50505050610642565b6101008086040294506020880151851461064257600095505b505b509293505050505b92915050565b81518151600091600191811480831461066e57600092506106ab565b600160208701838101602088015b60028483851001036106a657805183511461069a5760009650600093505b6020928301920161067c565b505050505b5090949350505050565b60006106c282600161107f565b835110156107085760405162461bcd60e51b8152602060048201526013602482015272746f55696e74385f6f75744f66426f756e647360681b604482015260640161052e565b50016001015190565b600061064c826000610aa9565b600061072b82600661107f565b835110156105375760405162461bcd60e51b8152602060048201526014602482015273746f55696e7434385f6f75744f66426f756e647360601b604482015260640161052e565b600061077f82601061107f565b835110156107c75760405162461bcd60e51b8152602060048201526015602482015274746f55696e743132385f6f75744f66426f756e647360581b604482015260640161052e565b50016010015190565b60006107dd82600c61107f565b835110156108255760405162461bcd60e51b8152602060048201526015602482015274746f427974657331325f6f75744f66426f756e647360581b604482015260640161052e565b5001600c015190565b600061083b82602061107f565b835110156108835760405162461bcd60e51b8152602060048201526015602482015274746f427974657333325f6f75744f66426f756e647360581b604482015260640161052e565b50016020015190565b600061089982600861107f565b835110156108e05760405162461bcd60e51b8152602060048201526014602482015273746f55696e7436345f6f75744f66426f756e647360601b604482015260640161052e565b50016008015190565b60006108f682600561107f565b8351101561093d5760405162461bcd60e51b8152602060048201526014602482015273746f4279746573355f6f75744f66426f756e647360601b604482015260640161052e565b50016005015190565b600061095382600361107f565b8351101561099a5760405162461bcd60e51b8152602060048201526014602482015273746f55696e7432345f6f75744f66426f756e647360601b604482015260640161052e565b50016003015190565b60006109b082600761107f565b835110156109f75760405162461bcd60e51b8152602060048201526014602482015273746f55696e7435365f6f75744f66426f756e647360601b604482015260640161052e565b50016007015190565b6000610a0d82602061107f565b835110156108835760405162461bcd60e51b8152602060048201526015602482015274746f55696e743235365f6f75744f66426f756e647360581b604482015260640161052e565b6000610a6282600861107f565b835110156108e05760405162461bcd60e51b8152602060048201526014602482015273746f4279746573385f6f75744f66426f756e647360601b604482015260640161052e565b6000610ab682600261107f565b83511015610afd5760405162461bcd60e51b8152602060048201526014602482015273746f55696e7431365f6f75744f66426f756e647360601b604482015260640161052e565b50016002015190565b6000610b1382600761107f565b835110156109f75760405162461bcd60e51b8152602060048201526014602482015273746f4279746573375f6f75744f66426f756e647360601b604482015260640161052e565b6000610b6782600c61107f565b835110156108255760405162461bcd60e51b8152602060048201526014602482015273746f55696e7439365f6f75744f66426f756e647360601b604482015260640161052e565b6000610bbb82600561107f565b8351101561093d5760405162461bcd60e51b8152602060048201526014602482015273746f55696e7434305f6f75744f66426f756e647360601b604482015260640161052e565b606081610c1081601f61107f565b1015610c4f5760405162461bcd60e51b815260206004820152600e60248201526d736c6963655f6f766572666c6f7760901b604482015260640161052e565b610c59828461107f565b84511015610c9d5760405162461bcd60e51b8152602060048201526011602482015270736c6963655f6f75744f66426f756e647360781b604482015260640161052e565b606082158015610cbc5760405191506000825260208201604052610d06565b6040519150601f8416801560200281840101858101878315602002848b0101015b81831015610cf5578051835260209283019201610cdd565b5050858452601f01601f1916604052505b50949350505050565b6000610d1c82601061107f565b835110156107c75760405162461bcd60e51b8152602060048201526015602482015274746f427974657331365f6f75744f66426f756e647360581b604482015260640161052e565b6000610d7182601461107f565b83511015610db95760405162461bcd60e51b8152602060048201526015602482015274746f416464726573735f6f75744f66426f756e647360581b604482015260640161052e565b500160200151600160601b900490565b6000610dd682600161107f565b835110156107085760405162461bcd60e51b8152602060048201526014602482015273746f4279746573315f6f75744f66426f756e647360601b604482015260640161052e565b634e487b7160e01b600052604160045260246000fd5b600082601f830112610e4457600080fd5b813567ffffffffffffffff80821115610e5f57610e5f610e1d565b604051601f8301601f19908116603f01168101908282118183101715610e8757610e87610e1d565b81604052838152866020858801011115610ea057600080fd5b836020870160208301376000602085830101528094505050505092915050565b60008060408385031215610ed357600080fd5b823567ffffffffffffffff811115610eea57600080fd5b610ef685828601610e33565b95602094909401359450505050565b60008060408385031215610f1857600080fd5b82359150602083013567ffffffffffffffff811115610f3657600080fd5b610f4285828601610e33565b9150509250929050565b60008060408385031215610f5f57600080fd5b823567ffffffffffffffff80821115610f7757600080fd5b610f8386838701610e33565b93506020850135915080821115610f9957600080fd5b50610f4285828601610e33565b600060208284031215610fb857600080fd5b813567ffffffffffffffff811115610fcf57600080fd5b610fdb84828501610e33565b949350505050565b600080600060608486031215610ff857600080fd5b833567ffffffffffffffff81111561100f57600080fd5b61101b86828701610e33565b9660208601359650604090950135949350505050565b600060208083528351808285015260005b8181101561105e57858101830151858201604001528201611042565b506000604082860101526040601f19601f8301168501019250505092915050565b8082018082111561064c57634e487b7160e01b600052601160045260246000fdfea26469706673582212200ab05fdff7c9159a360effa700137333459105198b03327bed2de33488aa4ec064736f6c63430008150033", + "nonce": "0x0", + "accessList": [] + }, + "additionalContracts": [], + "isFixedGasLimit": false + }, + { + "hash": "0x1d5aca3a1bbefac3672e4c956acd68b2baf8d7bf92ffc4a8d10e29440fd3b7ed", + "transactionType": "CREATE", + "contractName": "MultiSendCallOnly", + "contractAddress": "0xe7f1725E7734CE288F8367e1Bb143E90bb3F0512", + "function": null, + "arguments": null, + "transaction": { + "type": "0x02", + "from": "0xf39fd6e51aad88f6f4ce6ab8827279cfffb92266", + "gas": "0x2e5b4", + "value": "0x0", + "data": "0x608060405234801561001057600080fd5b506101ae806100206000396000f3fe60806040526004361061001e5760003560e01c80638d80ff0a14610023575b600080fd5b6100366100313660046100c7565b610038565b005b805160205b818110156100ac578083015160f81c6001820184015160601c601583018501516035840186015160558501870160008560008114610082576001811461001e5761008e565b6000808585888a5af191505b508061009957600080fd5b505080605501850194505050505061003d565b505050565b634e487b7160e01b600052604160045260246000fd5b6000602082840312156100d957600080fd5b813567ffffffffffffffff808211156100f157600080fd5b818401915084601f83011261010557600080fd5b813581811115610117576101176100b1565b604051601f8201601f19908116603f0116810190838211818310171561013f5761013f6100b1565b8160405282815287602084870101111561015857600080fd5b82602086016020830137600092810160200192909252509594505050505056fea2646970667358221220915f2e68ab0008ebbb1ed69f9c5c2817995c2578db9a979f782235cb1216b32764736f6c63430008150033", + "nonce": "0x1", + "accessList": [] + }, + "additionalContracts": [], + "isFixedGasLimit": false + }, + { + "hash": "0xa1010336f88b3131e8d35cd24d50e8c155cd5d7599c673215db39b5ec51738f3", + "transactionType": "CREATE", + "contractName": "BasicCellRenderer", + "contractAddress": "0x9fE46736679d2D9a65F0992F2272dE9f3c7fa6e0", + "function": null, + "arguments": null, + "transaction": { + "type": "0x02", + "from": "0xf39fd6e51aad88f6f4ce6ab8827279cfffb92266", + "gas": "0x3180ad", + "value": "0x0", + "data": "0x608060405234801561001057600080fd5b50612c25806100206000396000f3fe608060405234801561001057600080fd5b50600436106100365760003560e01c806306d4cd8b1461003b57806328de0f2f14610064575b600080fd5b61004e610049366004610322565b610077565b60405161005b919061038b565b60405180910390f35b61004e610072366004610404565b6100f1565b60606000610086600f846104fc565b90506000610095600f8361051e565b61009f9085610535565b905060006100ae826041610548565b60f81b9050806100c76100c2856001610548565b6101b6565b6040516020016100d8929190610577565b6040516020818303038152906040529350505050919050565b606060006100fe86610077565b905083838261018388735fbdb2315678afecb367f032d93f642f64180aa363b5cdf924909160006040518363ffffffff1660e01b81526004016101429291906105a8565b602060405180830381865af415801561015f573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906100c291906105ca565b87878660405160200161019c97969594939291906105f2565b604051602081830303815290604052915050949350505050565b606060006101c383610249565b600101905060008167ffffffffffffffff8111156101e3576101e36103a5565b6040519080825280601f01601f19166020018201604052801561020d576020820181803683370190505b5090508181016020015b600019016f181899199a1a9b1b9c1cb0b131b232b360811b600a86061a8153600a850494508461021757509392505050565b60008072184f03e93ff9f4daa797ed6e38ed64bf6a1f0160401b83106102885772184f03e93ff9f4daa797ed6e38ed64bf6a1f0160401b830492506040015b6d04ee2d6d415b85acef810000000083106102b4576d04ee2d6d415b85acef8100000000830492506020015b662386f26fc1000083106102d257662386f26fc10000830492506010015b6305f5e10083106102ea576305f5e100830492506008015b61271083106102fe57612710830492506004015b60648310610310576064830492506002015b600a831061031c576001015b92915050565b60006020828403121561033457600080fd5b5035919050565b60005b8381101561035657818101518382015260200161033e565b50506000910152565b6000815180845261037781602086016020860161033b565b601f01601f19169290920160200192915050565b60208152600061039e602083018461035f565b9392505050565b634e487b7160e01b600052604160045260246000fd5b60008083601f8401126103cd57600080fd5b50813567ffffffffffffffff8111156103e557600080fd5b6020830191508360208285010111156103fd57600080fd5b9250929050565b6000806000806060858703121561041a57600080fd5b84359350602085013567ffffffffffffffff8082111561043957600080fd5b818701915087601f83011261044d57600080fd5b81358181111561045f5761045f6103a5565b604051601f8201601f19908116603f01168101908382118183101715610487576104876103a5565b816040528281528a60208487010111156104a057600080fd5b8260208601602083013760006020848301015280975050505060408701359150808211156104cd57600080fd5b506104da878288016103bb565b95989497509550505050565b634e487b7160e01b600052601160045260246000fd5b60008261051957634e487b7160e01b600052601260045260246000fd5b500490565b808202811582820484141761031c5761031c6104e6565b8181038181111561031c5761031c6104e6565b8082018082111561031c5761031c6104e6565b6000815161056d81856020860161033b565b9290920192915050565b6001600160f81b031983168152815160009061059a81600185016020870161033b565b919091016001019392505050565b6040815260006105bb604083018561035f565b90508260208301529392505050565b6000602082840312156105dc57600080fd5b5051919050565b81818437506000910190815290565b7f646174613a6170706c69636174696f6e2f6a736f6e2c7b22646573637269707481527f696f6e223a2022537461726b7368656574222c20226e616d65223a202200000060208201528688603d8301376000878201602160f81b603d820152875161066481603e840160208c0161033b565b7f222c22696d616765223a2022646174613a696d6167652f7376672b786d6c2c25603e92909101918201527f334373766725323076696577426f782533442532373025323030253230383925605e8201527f3230353525323725323066696c6c2533442532376e6f6e65253237253230786d607e8201527f6c6e73253344253237687474702533412f2f7777772e77332e6f72672f323030609e8201527f302f737667253237253345253343646566732533452533437374796c6525334560be8201527f253430666f6e742d66616365253230253742666f6e742d66616d696c7925334160de8201527f253230253237507265737325323053746172742532303250253237253342737260fe8201527f6325334125323075726c25323825323764617461253341666f6e742f776f666661011e8201527f32253342626173653634253243643039474d6741424141414141424c3841413861013e8201527f41414141415235774141424b674141454141414141414141414141414141414161015e8201527f4141414141414141414141414150305a4756453063476a41624d42794358675a61017e8201527f6741494e794551674b3846545361517544524141424e67496b41344e4d42434161019e8201527f46687a5148684649623644566c42306a314f4d4253336f4f4953744562732f2f6101be8201527f2f6c4a776356727a47634f30676f684c45484d6369694443434e57695a6761306101de8201527f79625345555954514f6a4b427038546c737a7344526438716174586c333058746101fe8201527f30645a47467952305668444b776c62746c25324272734643773945316e64655961021e8201527f4a74732f37527762305673784d71576c636a6a775445537a2f5568752f77337361023e8201527f33746b6f496d70343464515168576f456d54337579526d70746f7553446b7a5761025e8201527f454138762f3932364a4b7539486f696e6e3673376674336d4965476c7737547161027e8201527f6437456f326a46517849766a5642494a70563269614f62547a68575932314e7461029e8201527f476772687434704d4b3457556a34624c7967542f51253242514c7879253242336102be8201527f6c482f362f6b6275496444497239446a724a496a6f394a7336524d58253242456102de8201527f6b37424f545a6b6d70397a347455524652566656307148504448375a7462364a6102fe8201527f616f6130684c335975616232473373667a72365776394536793569767025324261031e8201527f7135564c74426a514478476f5345304150313762336466376c61726a6525324261033e8201527f73637a6b7241744a334b6657304a342532424b323365744b4b556a383554616f61035e8201527f57473453346158436c427743413268676141652532423658396f696e32304e6261037e8201527f554a7264466767517049686d5247494d30372f7025324277375a7058316c473161039e8201527f6a6a51787073435141423438714445415042346950312f6a39592f4261686a356103be8201527f5943414e302f78714157496852616a6c6e694e654f50396e78433466667932556103de8201527f694843304e47386b686f6f567a6f7459334445417a417a41356b473735337a6a6103fe8201527f4853354d6e6d586b69496a6d54554d36556d4d3025324256346976752f48377861041e8201527f6a364666322f6b343472787a6449324141676742492f4c48416b394a7a35554d61043e8201527f496f4c7755344146455435725a464f33444d616655633061777351434879497061045e8201527f557a546b30784a474a454f6a4e6871436b474570496153474f6a714e466d2f5761047e8201527f4e434e3569636b71434d6e414165564c4d4c655867356971386b365752585a5261049e8201527f326c337042393831427a73475a743225324256696c4342723954494a674b67786104be8201527f365542514446253242566a4b44714e7741414948386a6949664d6e75384b68666104de8201527f584b486f4e3348634134477245786842324155442f795a554d423857547579496104fe8201527f413444634f4b656434397939504249616e426967734d454e38556b30766c547661051e8201527f304a58334e394d795a75544d763573655357413525324238556538504465547261053e8201527f645467474973566d4e33635856586a6463795275633434385866664176506e7361055e8201527f3575324d4531722532426a4731703137767a3849704f416e483444427367793361057e8201527f512f54376b33646d2f3846334232377355694877464631414f6c683055646e4961059e8201527f4471494e5164506355393145786f2f346252696a6a5169704e4e307a4c646c7a6105be8201527f504438496f547449734c38717162746f4f5149514a5a567849705931315073536105de8201527f55533231397a4c585066642f507667765751346372464d2532425769755671706105fe8201527f645a6f4e6475645872632f4745324d4a36656e3575635746694763375274364f61061e8201527f487676354d674c2532427a44733578444277696141315433554877326b63594361063e8201527f312f55666453316645316d37763742346537653350574848786533594f32483561065e8201527f25324241504f5a7965503025324251506553425468793078713965363241486a61067e8201527f6141556842432f364144484c6f476f4f657636412532426867487369317a613861069e8201527f71355a4e4d716a596c575a4d713867354248445574495370574a73526f52544a6106be8201527f56613049305a3957546b5371564b73507a3464586a7648746449684c6e7670746106de8201527f554c4330753542567579414d544b4a513930594b5267546e5769476b6d7153456106fe8201527f714b6d7256685259674b6b335443686255573671456f45637665577a6859535461071e8201527f4c32484e706735452f6d7151393956564467763352475435586d33637a68754c61073e8201527f3972685864316132372f736c5130686959366a643739614f5a43746a6f52687261075e8201527f623136575676514b725734477a786a7869723238494d697a2f7155447973495761077e8201527f7037516a667765347a556437614a735651575179524c554b484b42577938577661079e8201527f45565333584d53353656337757644f442532424638757639645477496d4b722f6107be8201527f5064626d5763775176456641616a7975566a70784e32704f56635769336c38776107de8201527f454c2f6d395070646f55494536253242504b5838315041546d67654f304231736107fe8201527f47454825324261707a353466646d534a7a333741686635366a4c7739756e504561081e8201527f35644d4b3025324237544639563843435466523979664e7355493474557a464661083e8201527f42326e536e384b4f626a64446964554c7034494a6873777878595172595a643661085e8201527f4e76436e55394d445825324252654c6e4d546d6c315a453972306b5077334e3261087e8201527f6752253242736a4573596d4953706b356c31497333594e614a4b6f6e7a65703761089e8201527f56637354316e556b62347048774b5a41796b614b6f43504630506f6d456876496108be8201527f5758656e6f5a767836774f4b313070316c3274546858793850316555776473766108de8201527f53715157766f424d7473674851554a614774494273756861776450545a5378596108fe8201527f707257757734647a7231564755744449465871726f4d4d69597346783857695461091e8201527f336463574b6f376d50554c79715657413972305974524a4c626957766a6e4c2561093e8201527f324272633452646767624e516c514141613264306d616236364d48447074314361095e8201527f6477626b51436253375053445a4d7a3746724f51713165636153304a6c74644161097e8201527f6c44527941587173364130586247707748676b70367572557757416272464d3361099e8201527f75794d764e4b6c344d6c435548537950416d3931776144454a3559595148754a6109be8201527f4d32304b575251737637486b61334770686c533258444b714f4b4245554753316109de8201527f65306b63316f323449494166486c4449794278584a4a656767423369386174566109fe8201527f67434f3064444f5a484a57596a564c416a6a397137765673456e72684b374568610a1e8201527f4c75427a42586d4d674554634531636d61436976504b6f4a766670466c794935610a3e8201527f4d70584234454325324245672f596d303454787843354e6c73596b74646f5951610a5e8201527f55656c38624673456c3748345a36734377622f38626b347458574658504b6a71610a7e8201527f5462526e64336e4c5770394f784941706c664b586747684e6c72443462354a4c610a9e8201527f5a367055753441726756614d366561357844574244476f7a707a4641376e6747610abe8201527f74596334486141775269475576637653653652414177335a576b564f4667764b610ade8201527f46364955696c4d49394964715155345134585264484866736666517770313955610afe8201527f434a49306a5773725433356f5578303678507268473271364d4533554f306c63610b1e8201527f635a557354454351784a44527854444b6c334c4948722f6162546f73686c6466610b3e8201527f51786a364f57745273466e6966444373473674336b426f344e6d424a6d615556610b5e8201527f54636c794951414a4c6a6e723042365a3859464d6e396b397967703752727848610b7e8201527f36766877624a4e41654b4d554436353974386746514a4d5377652f434f624850610b9e8201527f467671484746554e5266253242737245663354584b42725a76676b6369396972610bbe8201527f426d63442f7458616754474358634e68432532424f3539754c706e6673796f71610bde8201527f4c53313238374552776d38666165564f6d3857634437386c5a36594232793938610bfe8201527f5a4c6c4d3972557264324c514e6c324956643454727376675139363079377573610c1e8201527f5965306854506170576a71726c2532425837784665424e54253242315a644a4a610c3e8201527f572532424678745737584e7774634e7a7761672532425256656a6d4a6839656d610c5e8201527f6c495a4b69694e63694b3849554f4d33556a4a376342554e5847505853326c68610c7e8201527f253242687770676f4836567348524f63764569723372585970344c7769435a77610c9e8201527f3176486c43623552314d68623564536e4f326d6e6f475a6f5846315765574757610cbe8201527f6d7a694a314a555534715072306e694a536c4e424331636b4b6d4a6657625877610cde8201527f5577757449547a456d6a776770776142753464525066746a2f4e384143526e64610cfe8201527f616b2f4641674b674c37305058577839767a6b59322532426d34355473496b4c610d1e8201527f3037616f70444e6f676830535262535a534f397a744657516a376e574c676275610d3e8201527f364325324254374b6a44715a3667456e5277674d78306b4c5a77797962514f76610d5e8201527f514130773054782f354a42722f63595a6453574f546a774446364e6f586b796a610d7e8201527f33566a484e4751494e76426a5a734a4a3377466141516d6f5a575a5970416961610d9e8201527f574f466e6e686455524176576b557a77693062677a5a4158796f445545714863610dbe8201527f57307069454c574f777168773365765478444957724e32495371525151454c41610dde8201527f4d32365334486c723548552f48784a43436844424a6b756b6341573856415430610dfe8201527f6770545a544b4e48677a444f7234314751656a4f34677a416e6b577077464752610e1e8201527f43334c625231787a4b434875365635694674674c704f384b51596d5965467868610e3e8201527f4c32643838736469506a2f76306b427a636c51637954735766324d6445394944610e5e8201527f386d5858576a72434b253242354532756e336e6976656973526e726971317548610e7e8201527f594d6a6a69694945304b6466674d6f3163476d6b557254624f30356732737633610e9e8201527f477673525971762f61457736375472644f705435567a4641364131417939634b610ebe8201527f6f44667762544a64445750524e57517354796a6d3772486249734b466b6f4f2f610ede8201527f5a4c4376735966785973337768534338614c49344b765677373773336e347a48610efe8201527f67697061634a6e435362463945727a53357069386343577655597a4f5064327a610f1e8201527f684a2f4750437a53684f453378596c634f3350796164586a54334f6b68706841610f3e8201527f58465853766865544e5355525446565641486f4a6d7949726b6a454b6f517746610f5e8201527f4730303554334158643935764e30446d336d427332786746546c253242513572610f7e8201527f73416a6e744768707a6f62643642374e7a52664e56653130446f4e5639343753610f9e8201527f59646f635252624776636d785456786f61367a717756376d416e773544314745610fbe8201527f5474327a48382532425476514256356e37672f32615768743979794e594c3974610fde8201527f4f42744167384846435945316d4e775432454232467538544968543776565241610ffe8201527f3461587a6e6b3670545a4e6779696f73747749364b654655374c696c7041253261101e8201527f42334234474a794277574d327062466a4876734a3747754f6f616b6a6d46746a61103e8201527f59344c6254396c323239253242453646374c4475577a744c6e333749786b386a61105e8201527f356c42564b33774c7369362f416641756f6a34396c4d6b5653545045396b704761107e8201527f64304c724555534a4941413070596c4178414d642f4e4f46776f4a446458466961109e8201527f307a4f5744422f54464a705666575642574f516274724a556230636c663369256110be8201527f3242575072446f596c65545674564f45306d36793564487444725551776f414c6110de8201527f7455523365585364444d4e785866656a594674764c626c726c4a7777484b2f456110fe8201527f6957504a616b32574b35386e684e6f4c6a615a55475841756f32656f5777464561111e8201527f66612f445334496958717246714779633348726939785132693243352f73357661113e8201527f7a424d30793777334d4473774d3759325247427172464d6778374f696325324261115e8201527f30497a736d5678617a5473305263666a324f3334532f525639503269486f427561117e8201527f6c4b49594244665a46654c53356439725379664a64536c67683268644d72324f61119e8201527f5552334b6e6c506e4f41785477314a384c4d325a776e4671765a745a4a6c78786111be8201527f343873776243743272316b664875443756624831326159383849437456734b786111de8201527f4b742f31726b616c42414d74782f6f6f6d43445059626b556f4c6344624b436a6111fe8201527f7675713953544467746a584744715735564b36686347654f46697a6a3643714c61121e8201527f4f49716b57783477733245504d444e7378253242613661533230384f39784c3061123e8201527f526146586f394241645530706e452532424c695359334b536f4a41525978646e61125e8201527f7a69545a4d706961442f3438496969393834446151357976656378414673735761127e8201527f792f686274696d63253242704c386b35796f70496d4a627948712f6138797a6c61129e8201527f6c37726f4f7a586d786d4163337459585363546b65734d6344324939315a36336112be8201527f6549312f394a627755716b36737863394b52677277574d414e6543314e6e39756112de8201527f4779775473706d5538712532426c5a6d43714d674153363662674841476a514b6112fe8201527f73754a334451416a5235346d356a4c7a5a616e546c62646530253242726e663461131e8201527f385a574138546c32673277414779427748516e3552322532424e6a726542677861133e8201527f626c734e46627554776d6862414a48737a2f72416f61764c4f34317874767a5961135e8201527f4768336e4c4a426b41506a7578424a445248333048426575385567436978464e61137e8201527f437951322f4b253242385157372f6530253242664f2532423436524e5730657961139e8201527f4c726f39446a5467704a4e4d3547385179306c54644f756d73773066715045696113be8201527f393646702532424830634d774e6f376a787a596d6e4e664d5a6d64506c7932706113de8201527f6f7132575065476d67507136474c78504e34536c4b486e7870624f69754c58516113fe8201527f75583155715031676a6f38426136536c55314f416d5267707a7531735444584a61141e8201527f50754d3338546f387130344c324e777970653837327777556741675a6c70386461143e8201527f6b5166397a38544d43624d6b596b3758484375333564375a5a41656f346b5a4b61145e8201527f68784953386945354c546a334c4f6976485a7268394a3870337a4c5a436a776361147e8201527f6970354452694b6e576e49664c33386b4a684d7452776a67553525324256726d61149e8201527f714b6c6739307a376a64732f4238444b646b464c76483353253242376f4838616114be8201527f6c445a6c626734533155583574434d445342324f364b756c7a41344b763067376114de8201527f314251643054464b7733685358696e62374e6c304258725873514e6376436b386114fe8201527f6d6f394f786965783559627a78564e2f6b3738336f48545a495777393079495a61151e8201527f777672697164475473586e54384965705437597946434f4a6741395a3042794961153e8201527f455956735478522f6b73616b324268376f4b767034766e695530364d57317a4261155e8201527f4672746568647a306b6b587951786a426d7965645636644d596545386146787461157e8201527f6575777355466136466c6c54446c716430707a525a77473663467266574d627061159e8201527f384738587a6a66624d253242354658657076356f457273696c363458783663376115be8201527f5841576275696d3666387347494d58666f334a6971476b703333376854536a676115de8201527f65636862364f42472f327a31376a6f6d4469476d253242476c623146553069656115fe8201527f6e7552796977654c576767447a6d4655765545556a5a6f377356544877684f4661161e8201527f504d6b4e737146423977796d6b45307639666d7477453854377135384e594f3761163e8201527f787534623833766e46766c35755378446c472532426b4f51675249644f346a6761165e8201527f7a786a53486a4b4c7332742f6c684f647771766131415744437072763344345361167e8201527f34523741625934544362664b4637744265363554343551347a7a49714433316161169e8201527f79797557716a692532424636585337535439483943314f342f694b366b4775766116be8201527f6b512f664e3537487837456533373435622f76766e2f62482f58253242392f256116de8201527f32426762656d684f416d49705576755157757344764b517578394a44564e734b6116fe8201527f673651636d6b73515341445530346347524c523768466f5a326337785545664761171e8201527f253242776b755459474d764c6a422f6550634936416847686e5735717a45416961173e8201527f4a586377564545775869654e70536c317a6a457253253242435325324248634c61175e8201527f6f52506d7661324d6767412f69794c67536f544a555767733442794149514f3061177e8201527f4f6f705a487656627a6844494c65557155677a7a48492f667950474e7879777361179e8201527f6f796c6865534639577662795363336b4544716b32415636436c4364635535536117be8201527f6e6c4e6e4963394b794d63384c79622532423867484f4a795173466c4c6250526117de8201527f796d6d374a42743349545a544162314732444252496b514b51705451396939626117fe8201527f3665435353387a4d366161525364544b5657524d336663454a4c644b61746e7361181e8201527f724959774e4a55253242733048364461757832775a35686733706c653042474861183e8201527f756b316b4543734859446461496d4b7025324233463542317859763763486b7161185e8201527f644475306a4b645273657a3531376d63563641685148346931484e3173766c6a61187e8201527f5248366845454672682532426e72726d47316e33307a4d346749776d694d774561189e8201527f624b6842545564423141486f582532424b6741517a4f48543946494f71436b526118be8201527f4e4e623273397170496943534f753167576868497343564a73765771457175356118de8201527f47624a514b4e6a61427465394c4f69676368414a7665475773394332323033766118fe8201527f6f6e476c6b77725251323464646732796345646157554456734441785548734961191e8201527f77773665615234464665336d4a416b66426d5a6452395264774a485a6d47645261193e8201527f7950436a706a627a31712f584a34534949446b66384b4b6e6e32456c4b6d794c61195e8201527f69573442513836733151554b2f76426867524e776548766c5968687a7238706361197e8201527f67704b4b6d6f61576a7036426b594f48446c7835734b5647336365474539657661199e8201527f506e773563646667454242676f554946536238587632504553314772446a78456119be8201527f69524b6b697846716a54704d6d544b6b693148726a7a354368517155717845716119de8201527f544c6c4b6c53715571314772547231476a527130717846717a62744f6e5347656119fe8201527f3668374a6d627a4968355a6544696c315a58536a7430774375616b336c6e476f611a1e8201527f5655506f53734e663337394b326a6274716d44674d69485a42665a6c68324839611a3e8201527f75773738495469314a466a585653662f4336634f55667a346f30644178305447611a5e8201527f777448446863666a3443516d49694531444d5a42546b6c4e5a557065566f614f611a7e8201527f6e717633733234314e50503965766574594768435a50576a4979747332706173611a9e8201527f436a25324270556a54596c336b615574374f744b4a6136355850396d356e6367611abe8201527f364e686a685a587032762532426d57724341545a754a303368316b6a55756976611ade8201527f5067596e6a6e35744b4a4f6b326e6362703251414559585a69304b496d50356b611afe8201527f744961466e366b5a397743253237253239253230666f726d6174253238253237611b1e8201527f776f666632253237253239253342666f6e742d7765696768742533412532306e611b3e8201527f6f726d616c253342666f6e742d7374796c652533412532306e6f726d616c2533611b5e8201527f42666f6e742d646973706c617925334125323073776170253342253744746578611b7e8201527f74253230253742666f6e742d66616d696c792533412532302532375072657373611b9e8201527f2532305374617274253230325025323725334266696c6c253341253230776869611bbe8201527f74652537442e76616c7565253230253742666f6e742d73697a65253341253230611bde8201527f313070782533422537442e6e616d65253230253742666f6e742d73697a652533611bfe8201527f412532303470782533422537442533432f7374796c652533452533432f646566611c1e8201527f7325334525334372656374253230776964746825334425323738392532372532611c3e8201527f30686569676874253344253237353525323725323066696c6c25334425323762611c5e8201527f6c61636b2532372532302f253345253343726563742532307825334425323735611c7e8201527f2e3525323725323079253344253237352e352532372532307769647468253344611c9e8201527f2532373738253237253230686569676874253344253237343425323725323066611cbe8201527f696c6c2533442532372532333030303046462532372532302f25334525334374611cde8201527f657874253230746578742d616e63686f722533442532376d6964646c65253237611cfe8201527f2532307825334425323734342e35253237253230792533442532373333253237611d1e8201527f253230636c61737325334425323776616c756525323725334500000000000000611d3e820152612ba5612b9e6129f5611d5784018a61055b565b7f2533432f746578742533452533437265637425323078253344253237352e352581527f323725323079253344253237352e35253237253230776964746825334425323760208201527f373825323725323068656967687425334425323734342532372532307374726f60408201527f6b652533442532372532334646344630412532372532307374726f6b652d776960608201527f647468253344253237332532372532302f25334525334372656374253230782560808201527f334425323733302532372532307925334425323734352e35253237253230776960a08201527f647468253344253237353825323725323068656967687425334425323738253260c08201527f3725323066696c6c2533442532372532334646344630412532372532302f253360e08201527f4525334374657874253230746578742d616e63686f72253344253237656e64256101008201527f32372532307825334425323738372532372532307925334425323735322532376101208201527f253230636c6173732533442532376e616d6525323725334500000000000000006101408201526101580190565b86886105e3565b602160f81b81529050612bbb600182018561055b565b7f2533432f746578742533452533432f737667253345227d00000000000000000081526017019a995050505050505050505056fea2646970667358221220f64400964cf21cb4940de76482b5ee6f22f9e46a781e948eea81a1999aa43eb964736f6c63430008150033", + "nonce": "0x2", + "accessList": [] + }, + "additionalContracts": [], + "isFixedGasLimit": false + }, + { + "hash": "0xac7ba166eecea3abca75c613a68a884c142d3acbecd4f8d392456469323cf25d", + "transactionType": "CREATE", + "contractName": null, + "contractAddress": "0xCf7Ed3AccA5a467e9e704C703E8D87F634fB0Fc9", + "function": null, + "arguments": null, + "transaction": { + "type": "0x02", + "from": "0xf39fd6e51aad88f6f4ce6ab8827279cfffb92266", + "gas": "0x42230", + "value": "0x0", + "data": "0x608060405234801561001057600080fd5b506102cf806100206000396000f3fe608060405234801561001057600080fd5b506004361061004c5760003560e01c80630194db8e14610051578063072bdcc214610076578063a391c15b14610089578063b67d77c51461009c575b600080fd5b61006461005f366004610160565b6100af565b60405190815260200160405180910390f35b610064610084366004610160565b6100ef565b61006461009736600461021e565b610129565b6100646100aa36600461021e565b61013e565b600080805b83518110156100e8578381815181106100cf576100cf610240565b60200260200101518201915080806001019150506100b4565b5092915050565b60006001815b83518110156100e85783818151811061011057610110610240565b60200260200101518202915080806001019150506100f5565b60006101358284610256565b90505b92915050565b60006101358284610278565b634e487b7160e01b600052604160045260246000fd5b6000602080838503121561017357600080fd5b823567ffffffffffffffff8082111561018b57600080fd5b818501915085601f83011261019f57600080fd5b8135818111156101b1576101b161014a565b8060051b604051601f19603f830116810181811085821117156101d6576101d661014a565b6040529182528482019250838101850191888311156101f457600080fd5b938501935b82851015610212578435845293850193928501926101f9565b98975050505050505050565b6000806040838503121561023157600080fd5b50508035926020909101359150565b634e487b7160e01b600052603260045260246000fd5b60008261027357634e487b7160e01b600052601260045260246000fd5b500490565b8181038181111561013857634e487b7160e01b600052601160045260246000fdfea2646970667358221220d31583983189259cb60ccec801ca1ed218051d27add344c207dbb437b07d39c864736f6c63430008150033", + "nonce": "0x3", + "accessList": [] + }, + "additionalContracts": [], + "isFixedGasLimit": false + }, + { + "hash": "0xbec598c18578c59d737ab7eccd5367de7c4e8134c665fd883d3e9410576ef014", + "transactionType": "CREATE", + "contractName": "Evmsheet", + "contractAddress": "0xDc64a140Aa3E981100a9becA4E685f962f0cF6C9", + "function": null, + "arguments": [ + "0x9fE46736679d2D9a65F0992F2272dE9f3c7fa6e0", + "10000000000000000" + ], + "transaction": { + "type": "0x02", + "from": "0xf39fd6e51aad88f6f4ce6ab8827279cfffb92266", + "gas": "0x359c55", + "value": "0x0", + "data": "0x608060405234801561001057600080fd5b50604051612fa3380380612fa383398101604081905261002f916100b1565b61003833610061565b600280546001600160a01b0319166001600160a01b0393909316929092179091556001556100eb565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b600080604083850312156100c457600080fd5b82516001600160a01b03811681146100db57600080fd5b6020939093015192949293505050565b612ea9806100fa6000396000f3fe608060405260043610620000b95760003560e01c80638da5cb5b116200006c5780638da5cb5b146200019d578063ab2fa65a14620001bd578063ae28505e14620001e4578063c56c4cf11462000209578063f2fde38b146200022b578063f52be2a2146200025057600080fd5b806303fb31e814620000c65780631164c83d14620000ed578063145e414714620001045780633ccfd60b14620001465780635787cacb146200015e578063715018a6146200018557600080fd5b36620000c157005b600080fd5b348015620000d357600080fd5b50620000eb620000e536600462000842565b62000277565b005b620000eb620000fe366004620008b3565b620002a3565b3480156200011157600080fd5b5062000129620001233660046200092e565b620004e2565b6040516001600160a01b0390911681526020015b60405180910390f35b3480156200015357600080fd5b50620000eb6200057f565b3480156200016b57600080fd5b50620001766200061c565b6040516200013d91906200095b565b3480156200019257600080fd5b50620000eb62000680565b348015620001aa57600080fd5b506000546001600160a01b031662000129565b348015620001ca57600080fd5b50620001d562000698565b6040516200013d9190620009aa565b348015620001f157600080fd5b506200012962000203366004620009fa565b620006c4565b3480156200021657600080fd5b5060025462000129906001600160a01b031681565b3480156200023857600080fd5b50620000eb6200024a36600462000842565b620006ef565b3480156200025d57600080fd5b506200026860015481565b6040519081526020016200013d565b620002816200076b565b600280546001600160a01b0319166001600160a01b0392909216919091179055565b6001543414620002cd5760405163723a79e360e11b81523460048201526024015b60405180910390fd5b600060405180602001620002e19062000817565b6020820181038252601f19601f8201166040525090506000828251602084016000f56002546040516356d3163d60e01b81526001600160a01b0391821660048201529192508216906356d3163d90602401600060405180830381600087803b1580156200034d57600080fd5b505af115801562000362573d6000803e3d6000fd5b505060405163c47f002760e01b81526001600160a01b038416925063c47f0027915062000396908a908a9060040162000a14565b600060405180830381600087803b158015620003b157600080fd5b505af1158015620003c6573d6000803e3d6000fd5b5050604051635c26412360e11b81526001600160a01b038416925063b84c82469150620003fa908890889060040162000a14565b600060405180830381600087803b1580156200041557600080fd5b505af11580156200042a573d6000803e3d6000fd5b505060405163f2fde38b60e01b81523260048201526001600160a01b038416925063f2fde38b9150602401600060405180830381600087803b1580156200047057600080fd5b505af115801562000485573d6000803e3d6000fd5b5050600380546001810182556000919091527fc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b0180546001600160a01b0319166001600160a01b0394909416939093179092555050505050505050565b600060ff60f81b838360405180602001620004fd9062000817565b6020820181038252601f19601f82011660405250805190602001206040516020016200056094939291906001600160f81b031994909416845260609290921b6bffffffffffffffffffffffff191660018401526015830152603582015260550190565b60408051601f1981840301815291905280516020909101209392505050565b620005896200076b565b604051600090339047908381818185875af1925050503d8060008114620005cd576040519150601f19603f3d011682016040523d82523d6000602084013e620005d2565b606091505b5050905080620006195760405162461bcd60e51b815260206004820152601160248201527015da5d1a191c985dd85b0819985a5b1959607a1b6044820152606401620002c4565b50565b606060038054806020026020016040519081016040528092919081815260200182805480156200067657602002820191906000526020600020905b81546001600160a01b0316815260019091019060200180831162000657575b5050505050905090565b6200068a6200076b565b620006966000620007c7565b565b606060405180602001620006ac9062000817565b601f1982820381018352601f90910116604052919050565b60038181548110620006d557600080fd5b6000918252602090912001546001600160a01b0316905081565b620006f96200076b565b6001600160a01b038116620007605760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401620002c4565b6200061981620007c7565b6000546001600160a01b03163314620006965760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401620002c4565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b6124308062000a4483390190565b80356001600160a01b03811681146200083d57600080fd5b919050565b6000602082840312156200085557600080fd5b620008608262000825565b9392505050565b60008083601f8401126200087a57600080fd5b50813567ffffffffffffffff8111156200089357600080fd5b602083019150836020828501011115620008ac57600080fd5b9250929050565b600080600080600060608688031215620008cc57600080fd5b853567ffffffffffffffff80821115620008e557600080fd5b620008f389838a0162000867565b909750955060208801359150808211156200090d57600080fd5b506200091c8882890162000867565b96999598509660400135949350505050565b600080604083850312156200094257600080fd5b6200094d8362000825565b946020939093013593505050565b6020808252825182820181905260009190848201906040850190845b818110156200099e5783516001600160a01b03168352928401929184019160010162000977565b50909695505050505050565b600060208083528351808285015260005b81811015620009d957858101830151858201604001528201620009bb565b506000604082860101526040601f19601f8301168501019250505092915050565b60006020828403121562000a0d57600080fd5b5035919050565b60208152816020820152818360408301376000818301604090810191909152601f909201601f1916010191905056fe60806040523480156200001157600080fd5b50604051806040016040528060078152602001660536865657420360cc1b815250604051806040016040528060048152602001630534854360e41b81525062000069620000636200008f60201b60201c565b62000093565b600162000077838262000188565b50600262000086828262000188565b50505062000254565b3390565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b634e487b7160e01b600052604160045260246000fd5b600181811c908216806200010e57607f821691505b6020821081036200012f57634e487b7160e01b600052602260045260246000fd5b50919050565b601f8211156200018357600081815260208120601f850160051c810160208610156200015e5750805b601f850160051c820191505b818110156200017f578281556001016200016a565b5050505b505050565b81516001600160401b03811115620001a457620001a4620000e3565b620001bc81620001b58454620000f9565b8462000135565b602080601f831160018114620001f45760008415620001db5750858301515b600019600386901b1c1916600185901b1785556200017f565b600085815260208120601f198616915b82811015620002255788860151825594840194600190910190840162000204565b5085821015620002445787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b6121cc80620002646000396000f3fe608060405234801561001057600080fd5b50600436106102275760003560e01c8063715018a611610130578063b85d8b85116100b8578063cf0983981161007c578063cf09839814610512578063cfbe95d814610535578063df4ca20614610556578063e985e9c514610576578063f2fde38b146105a457600080fd5b8063b85d8b85146104a4578063b88d4fde146104ce578063b8c368ec146104e1578063c47f0027146104ec578063c87b56dd146104ff57600080fd5b806395d89b41116100ff57806395d89b4114610439578063a22cb46514610441578063b46ebb1214610454578063b6d658e114610467578063b84c82461461049157600080fd5b8063715018a6146103fa578063768d5029146104025780638ada6b0f146104155780638da5cb5b1461042857600080fd5b80631b06443c116101b35780634f6ccce7116101825780634f6ccce71461038157806356d3163d146103a15780636352211e146103b45780636a0abc74146103c757806370a08231146103e757600080fd5b80631b06443c14610335578063206848f61461034857806323b872dd1461035b57806342842e0e1461036e57600080fd5b8063081812fc116101fa578063081812fc146102a1578063095ea7b3146102e2578063172b9eed146102f757806318160ddd1461030a5780631941fd141461031357600080fd5b806301ffc9a71461022c57806302f3c4c91461025457806306fdde03146102745780630715a24a1461027c575b600080fd5b61023f61023a36600461176a565b6105b7565b60405190151581526020015b60405180910390f35b610267610262366004611861565b610609565b60405161024b9190611951565b610267610638565b6102936fffffffffffffffffffffffffffffffff81565b60405190815260200161024b565b6102ca6102af366004611964565b6005602052600090815260409020546001600160a01b031681565b6040516001600160a01b03909116815260200161024b565b6102f56102f036600461197d565b6106c6565b005b6102676103053660046119a9565b6107ad565b61029360075481565b610326610321366004611964565b610875565b60405161024b939291906119de565b6102ca610343366004611a0e565b61092a565b610326610356366004611964565b6109e3565b6102f5610369366004611a2b565b610ae1565b6102f561037c366004611a2b565b610ca8565b61029361038f366004611964565b60086020526000908152604090205481565b6102f56103af366004611a0e565b610da0565b6102ca6103c2366004611964565b610dca565b6103da6103d53660046119a9565b610e1c565b60405161024b9190611a6c565b6102936103f5366004611a0e565b610e60565b6102f5610ec3565b6102f5610410366004611af9565b610ed7565b6009546102ca906001600160a01b031681565b6000546001600160a01b03166102ca565b610267611035565b6102f561044f366004611b63565b611042565b610267610462366004611964565b6110ae565b61047a610475366004611964565b611258565b60408051921515835260208301919091520161024b565b6102f561049f366004611ba1565b611275565b6104b56104b2366004611964565b90565b6040516001600160e01b0319909116815260200161024b565b6102f56104dc366004611be3565b6112c6565b6102ca600160801b81565b6102f56104fa366004611ba1565b6113ae565b61026761050d366004611964565b6113ff565b61023f610520366004611a0e565b600160801b6001600160a01b03919091161090565b61023f610543366004611861565b516001600160a01b0316600160801b1490565b610569610564366004611964565b6114c9565b60405161024b9190611c16565b61023f610584366004611c4d565b600660209081526000928352604080842090915290825290205460ff1681565b6102f56105b2366004611a0e565b611526565b60006301ffc9a760e01b6001600160e01b0319831614806105e857506380ac58cd60e01b6001600160e01b03198316145b806106035750635b5e139f60e01b6001600160e01b03198316145b92915050565b6060816020015160405160200161062291815260200190565b6040516020818303038152906040529050919050565b6001805461064590611c7b565b80601f016020809104026020016040519081016040528092919081815260200182805461067190611c7b565b80156106be5780601f10610693576101008083540402835291602001916106be565b820191906000526020600020905b8154815290600101906020018083116106a157829003601f168201915b505050505081565b6000818152600360205260409020546001600160a01b03163381148061070f57506001600160a01b038116600090815260066020908152604080832033845290915290205460ff165b6107515760405162461bcd60e51b815260206004820152600e60248201526d1393d517d055551213d49256915160921b60448201526064015b60405180910390fd5b60008281526005602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b606060006107ba83610e1c565b9050606060005b825181101561086d576000806107ef8584815181106107e2576107e2611cb5565b6020026020010151611258565b9150915081156108335783610803826110ae565b61080c90611ccb565b60405160200161081d929190611cef565b6040516020818303038152906040529350610858565b6040516108469085908390602001611cef565b60405160208183030381529060405293505b5050808061086590611d27565b9150506107c1565b509392505050565b600a602052600090815260409020805460018201546002830180546001600160a01b039093169391926108a790611c7b565b80601f01602080910402602001604051908101604052809291908181526020018280546108d390611c7b565b80156109205780601f106108f557610100808354040283529160200191610920565b820191906000526020600020905b81548152906001019060200180831161090357829003601f168201915b5050505050905083565b6000600160801b6001600160a01b03831610156109da576000610955836001600160a01b03166110ae565b604051632d737e4960e21b8152909150735fbdb2315678afecb367f032d93f642f64180aa39063b5cdf92490610992908490600090600401611d40565b602060405180830381865af41580156109af573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906109d39190611d62565b9392505050565b5090565b919050565b60008181526003602052604081205481906060906001600160a01b0316610a1057600160801b9250610a2b565b6000848152600a60205260409020546001600160a01b031692505b6000848152600a60205260409020600181015460029091018054859291908190610a5490611c7b565b80601f0160208091040260200160405190810160405280929190818152602001828054610a8090611c7b565b8015610acd5780601f10610aa257610100808354040283529160200191610acd565b820191906000526020600020905b815481529060010190602001808311610ab057829003601f168201915b505050505090509250925092509193909250565b6000818152600360205260409020546001600160a01b03848116911614610b375760405162461bcd60e51b815260206004820152600a60248201526957524f4e475f46524f4d60b01b6044820152606401610748565b6001600160a01b038216610b815760405162461bcd60e51b81526020600482015260116024820152701253959053125117d49150d25412515395607a1b6044820152606401610748565b336001600160a01b0384161480610bbb57506001600160a01b038316600090815260066020908152604080832033845290915290205460ff165b80610bdc57506000818152600560205260409020546001600160a01b031633145b610c195760405162461bcd60e51b815260206004820152600e60248201526d1393d517d055551213d49256915160921b6044820152606401610748565b6001600160a01b0380841660008181526004602090815260408083208054600019019055938616808352848320805460010190558583526003825284832080546001600160a01b03199081168317909155600590925284832080549092169091559251849392917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b610cb3838383610ae1565b6001600160a01b0382163b1580610d5c5750604051630a85bd0160e11b8082523360048301526001600160a01b03858116602484015260448301849052608060648401526000608484015290919084169063150b7a029060a4016020604051808303816000875af1158015610d2c573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610d509190611d7b565b6001600160e01b031916145b610d9b5760405162461bcd60e51b815260206004820152601060248201526f155394d0519157d49150d2541251539560821b6044820152606401610748565b505050565b610da861159f565b600980546001600160a01b0319166001600160a01b0392909216919091179055565b6000818152600360205260409020546001600160a01b0316806109de5760405162461bcd60e51b815260206004820152600a6024820152691393d517d3525395115160b21b6044820152606401610748565b60608082516040519150602081048252602082016020850160005b83811015610e4f578181015183820152602001610e37565b505050810160200160405292915050565b60006001600160a01b038216610ea75760405162461bcd60e51b815260206004820152600c60248201526b5a45524f5f4144445245535360a01b6044820152606401610748565b506001600160a01b031660009081526004602052604090205490565b610ecb61159f565b610ed560006115f9565b565b6000858152600360205260409020546001600160a01b0316610f2f57610efd3286611649565b60078054600090815260086020526040812087905581546001929190610f24908490611d98565b90915550610f889050565b6000858152600360205260409020546001600160a01b03163214610f8857600085815260036020526040908190205490516324f3f02560e21b81526001600160a01b039091166004820152326024820152604401610748565b6040518060600160405280856001600160a01b0316815260200184815260200183838080601f0160208091040260200160405190810160405280939291908181526020018383808284376000920182905250939094525050878152600a6020908152604091829020845181546001600160a01b0319166001600160a01b0390911617815590840151600182015590830151909150600282019061102b9082611df9565b5050505050505050565b6002805461064590611c7b565b3360008181526006602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b6000818152600a6020908152604080832081516060818101845282546001600160a01b0316825260018301549482019490945260028201805494959491938401916110f890611c7b565b80601f016020809104026020016040519081016040528092919081815260200182805461112490611c7b565b80156111715780601f1061114657610100808354040283529160200191611171565b820191906000526020600020905b81548152906001019060200180831161115457829003601f168201915b505050505081525050905061119381516001600160a01b0316600160801b1490565b156111a1576109d381610609565b60006111b0826000015161092a565b905060006111bf836020015190565b905060006111d084604001516107ad565b90506000836001600160a01b031683836040516020016111f1929190611eb9565b60408051601f198184030181529082905261120b91611eea565b600060405180830381855afa9150503d8060008114611246576040519150601f19603f3d011682016040523d82523d6000602084013e61124b565b606091505b5098975050505050505050565b600080611266600284611f06565b60019081149493901c92915050565b61127d61159f565b7f8dca0271872d00b3de3abafca544c52fcd7d512dd852c9894fa2c118ac759a93600283836040516112b193929190611fce565b60405180910390a16002610d9b828483611ffe565b6112d1858585610ae1565b6001600160a01b0384163b15806113685750604051630a85bd0160e11b808252906001600160a01b0386169063150b7a02906113199033908a908990899089906004016120be565b6020604051808303816000875af1158015611338573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061135c9190611d7b565b6001600160e01b031916145b6113a75760405162461bcd60e51b815260206004820152601060248201526f155394d0519157d49150d2541251539560821b6044820152606401610748565b5050505050565b6113b661159f565b7fb65b7b5ea384affd30f77f842e057d29dd1b13f133adf69a724a8105b164ab75600183836040516113ea93929190611fce565b60405180910390a16001610d9b828483611ffe565b6000818152600360205260409020546060906001600160a01b03168061143b57604051630243d1a960e21b815260048101849052602401610748565b6000611446846110ae565b6009546040516328de0f2f60e01b81529192506001600160a01b0316906328de0f2f9061147c90879085906001906004016120fd565b600060405180830381865afa158015611499573d6000803e3d6000fd5b505050506040513d6000823e601f3d908101601f191682016040526114c19190810190612128565b949350505050565b604080516060808201835260008083526020830181905292820152906114ee836110ae565b6040805160608101825285815260009586526003602090815295829020546001600160a01b0316958101959095528401525090919050565b61152e61159f565b6001600160a01b0381166115935760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610748565b61159c816115f9565b50565b6000546001600160a01b03163314610ed55760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610748565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b6001600160a01b0382166116935760405162461bcd60e51b81526020600482015260116024820152701253959053125117d49150d25412515395607a1b6044820152606401610748565b6000818152600360205260409020546001600160a01b0316156116e95760405162461bcd60e51b815260206004820152600e60248201526d1053149150511657d3525395115160921b6044820152606401610748565b6001600160a01b038216600081815260046020908152604080832080546001019055848352600390915280822080546001600160a01b0319168417905551839291907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b6001600160e01b03198116811461159c57600080fd5b60006020828403121561177c57600080fd5b81356109d381611754565b634e487b7160e01b600052604160045260246000fd5b604051601f8201601f1916810167ffffffffffffffff811182821017156117c6576117c6611787565b604052919050565b6001600160a01b038116811461159c57600080fd5b600067ffffffffffffffff8211156117fd576117fd611787565b50601f01601f191660200190565b600082601f83011261181c57600080fd5b813561182f61182a826117e3565b61179d565b81815284602083860101111561184457600080fd5b816020850160208301376000918101602001919091529392505050565b60006020828403121561187357600080fd5b813567ffffffffffffffff8082111561188b57600080fd5b908301906060828603121561189f57600080fd5b6040516060810181811083821117156118ba576118ba611787565b60405282356118c8816117ce565b8152602083810135908201526040830135828111156118e657600080fd5b6118f28782860161180b565b60408301525095945050505050565b60005b8381101561191c578181015183820152602001611904565b50506000910152565b6000815180845261193d816020860160208601611901565b601f01601f19169290920160200192915050565b6020815260006109d36020830184611925565b60006020828403121561197657600080fd5b5035919050565b6000806040838503121561199057600080fd5b823561199b816117ce565b946020939093013593505050565b6000602082840312156119bb57600080fd5b813567ffffffffffffffff8111156119d257600080fd5b6114c18482850161180b565b60018060a01b0384168152826020820152606060408201526000611a056060830184611925565b95945050505050565b600060208284031215611a2057600080fd5b81356109d3816117ce565b600080600060608486031215611a4057600080fd5b8335611a4b816117ce565b92506020840135611a5b816117ce565b929592945050506040919091013590565b6020808252825182820181905260009190848201906040850190845b81811015611aa457835183529284019291840191600101611a88565b50909695505050505050565b60008083601f840112611ac257600080fd5b50813567ffffffffffffffff811115611ada57600080fd5b602083019150836020828501011115611af257600080fd5b9250929050565b600080600080600060808688031215611b1157600080fd5b853594506020860135611b23816117ce565b935060408601359250606086013567ffffffffffffffff811115611b4657600080fd5b611b5288828901611ab0565b969995985093965092949392505050565b60008060408385031215611b7657600080fd5b8235611b81816117ce565b915060208301358015158114611b9657600080fd5b809150509250929050565b60008060208385031215611bb457600080fd5b823567ffffffffffffffff811115611bcb57600080fd5b611bd785828601611ab0565b90969095509350505050565b600080600080600060808688031215611bfb57600080fd5b8535611c06816117ce565b94506020860135611b23816117ce565b602081528151602082015260018060a01b036020830151166040820152600060408301516060808401526114c16080840182611925565b60008060408385031215611c6057600080fd5b8235611c6b816117ce565b91506020830135611b96816117ce565b600181811c90821680611c8f57607f821691505b602082108103611caf57634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052603260045260246000fd5b80516020808301519190811015611caf5760001960209190910360031b1b16919050565b60008351611d01818460208801611901565b9190910191825250602001919050565b634e487b7160e01b600052601160045260246000fd5b600060018201611d3957611d39611d11565b5060010190565b604081526000611d536040830185611925565b90508260208301529392505050565b600060208284031215611d7457600080fd5b5051919050565b600060208284031215611d8d57600080fd5b81516109d381611754565b8082018082111561060357610603611d11565b601f821115610d9b57600081815260208120601f850160051c81016020861015611dd25750805b601f850160051c820191505b81811015611df157828155600101611dde565b505050505050565b815167ffffffffffffffff811115611e1357611e13611787565b611e2781611e218454611c7b565b84611dab565b602080601f831160018114611e5c5760008415611e445750858301515b600019600386901b1c1916600185901b178555611df1565b600085815260208120601f198616915b82811015611e8b57888601518255948401946001909101908401611e6c565b5085821015611ea95787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b6001600160e01b0319831681528151600090611edc816004850160208701611901565b919091016004019392505050565b60008251611efc818460208701611901565b9190910192915050565b600082611f2357634e487b7160e01b600052601260045260246000fd5b500690565b60008154611f3581611c7b565b808552602060018381168015611f525760018114611f6c57611f9a565b60ff1985168884015283151560051b880183019550611f9a565b866000528260002060005b85811015611f925781548a8201860152908301908401611f77565b890184019650505b505050505092915050565b81835281816020850137506000828201602090810191909152601f909101601f19169091010190565b604081526000611fe16040830186611f28565b8281036020840152611ff4818587611fa5565b9695505050505050565b67ffffffffffffffff83111561201657612016611787565b61202a836120248354611c7b565b83611dab565b6000601f84116001811461205e57600085156120465750838201355b600019600387901b1c1916600186901b1783556113a7565b600083815260209020601f19861690835b8281101561208f578685013582556020948501946001909201910161206f565b50868210156120ac5760001960f88860031b161c19848701351681555b505060018560011b0183555050505050565b6001600160a01b03868116825285166020820152604081018490526080606082018190526000906120f29083018486611fa5565b979650505050505050565b8381526060602082015260006121166060830185611925565b8281036040840152611ff48185611f28565b60006020828403121561213a57600080fd5b815167ffffffffffffffff81111561215157600080fd5b8201601f8101841361216257600080fd5b805161217061182a826117e3565b81815285602083850101111561218557600080fd5b611a0582602083016020860161190156fea2646970667358221220f213b9045b40918ed2b5d304162ec2dfc3bc6b581b97362b423df61fd1436e5c64736f6c63430008150033a264697066735822122016636ee300fab238f4f099f32ba33a2f9dd9cbd27246df211a2a76dcc4263a7a64736f6c634300081500330000000000000000000000009fe46736679d2d9a65f0992f2272de9f3c7fa6e0000000000000000000000000000000000000000000000000002386f26fc10000", + "nonce": "0x4", + "accessList": [] + }, + "additionalContracts": [], + "isFixedGasLimit": false + } + ], + "receipts": [ + { + "transactionHash": "0xe21ef7e42433d76a4c679118aa02cf18a8dfe35d0aa1d9620d5c2b562d98f26f", + "transactionIndex": "0x0", + "blockHash": "0xc4e4a3e453166d27c88be07f8b3e007127aee710a4812cf873cb11cf328b3a01", + "blockNumber": "0x1", + "from": "0xf39Fd6e51aad88F6F4ce6aB8827279cffFb92266", + "to": null, + "cumulativeGasUsed": "0xf071f", + "gasUsed": "0xf071f", + "contractAddress": "0x5FbDB2315678afecb367f032d93F642f64180aa3", + "logs": [], + "status": "0x1", + "logsBloom": "0x00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", + "type": "0x2", + "effectiveGasPrice": "0xee6b2800" + }, + { + "transactionHash": "0x1d5aca3a1bbefac3672e4c956acd68b2baf8d7bf92ffc4a8d10e29440fd3b7ed", + "transactionIndex": "0x1", + "blockHash": "0xc4e4a3e453166d27c88be07f8b3e007127aee710a4812cf873cb11cf328b3a01", + "blockNumber": "0x1", + "from": "0xf39Fd6e51aad88F6F4ce6aB8827279cffFb92266", + "to": null, + "cumulativeGasUsed": "0x1141c8", + "gasUsed": "0x23aa9", + "contractAddress": "0xe7f1725E7734CE288F8367e1Bb143E90bb3F0512", + "logs": [], + "status": "0x1", + "logsBloom": "0x00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", + "type": "0x2", + "effectiveGasPrice": "0xee6b2800" + }, + { + "transactionHash": "0xa1010336f88b3131e8d35cd24d50e8c155cd5d7599c673215db39b5ec51738f3", + "transactionIndex": "0x2", + "blockHash": "0xc4e4a3e453166d27c88be07f8b3e007127aee710a4812cf873cb11cf328b3a01", + "blockNumber": "0x1", + "from": "0xf39Fd6e51aad88F6F4ce6aB8827279cffFb92266", + "to": null, + "cumulativeGasUsed": "0x3758c5", + "gasUsed": "0x2616fd", + "contractAddress": "0x9fE46736679d2D9a65F0992F2272dE9f3c7fa6e0", + "logs": [], + "status": "0x1", + "logsBloom": "0x00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", + "type": "0x2", + "effectiveGasPrice": "0xee6b2800" + }, + { + "transactionHash": "0xac7ba166eecea3abca75c613a68a884c142d3acbecd4f8d392456469323cf25d", + "transactionIndex": "0x3", + "blockHash": "0xc4e4a3e453166d27c88be07f8b3e007127aee710a4812cf873cb11cf328b3a01", + "blockNumber": "0x1", + "from": "0xf39Fd6e51aad88F6F4ce6aB8827279cffFb92266", + "to": null, + "cumulativeGasUsed": "0x3a86f3", + "gasUsed": "0x32e2e", + "contractAddress": "0xCf7Ed3AccA5a467e9e704C703E8D87F634fB0Fc9", + "logs": [], + "status": "0x1", + "logsBloom": "0x00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", + "type": "0x2", + "effectiveGasPrice": "0xee6b2800" + }, + { + "transactionHash": "0xbec598c18578c59d737ab7eccd5367de7c4e8134c665fd883d3e9410576ef014", + "transactionIndex": "0x0", + "blockHash": "0x91001e63cd7c36da0d1767173615ef3c2e40e0ed1d5eba2fcf12b092d10e6e64", + "blockNumber": "0x2", + "from": "0xf39Fd6e51aad88F6F4ce6aB8827279cffFb92266", + "to": null, + "cumulativeGasUsed": "0x29402e", + "gasUsed": "0x29402e", + "contractAddress": "0xDc64a140Aa3E981100a9becA4E685f962f0cF6C9", + "logs": [ + { + "address": "0xDc64a140Aa3E981100a9becA4E685f962f0cF6C9", + "topics": [ + "0x8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0", + "0x0000000000000000000000000000000000000000000000000000000000000000", + "0x000000000000000000000000f39fd6e51aad88f6f4ce6ab8827279cfffb92266" + ], + "data": "0x", + "blockHash": "0x91001e63cd7c36da0d1767173615ef3c2e40e0ed1d5eba2fcf12b092d10e6e64", + "blockNumber": "0x2", + "transactionHash": "0xbec598c18578c59d737ab7eccd5367de7c4e8134c665fd883d3e9410576ef014", + "transactionIndex": "0x0", + "logIndex": "0x0", + "transactionLogIndex": "0x0", + "removed": false + } + ], + "status": "0x1", + "logsBloom": "0x00000000000000000000000000000000000000000000000000800000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000020000000000000100000800000000000000000000000000000000400000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000200000000000000000000000002020000000000000000020000000000000000000000000000000000000000001000000000100000000000000", + "type": "0x2", + "effectiveGasPrice": "0xe8df88a9" + } + ], + "libraries": [ + "lib/eth-projects-monorepo/packages/eth-projects-contracts/contracts/lib/utils/Bytes.sol:Bytes:0x5fbdb2315678afecb367f032d93f642f64180aa3" + ], + "pending": [], + "returns": {}, + "timestamp": 1690360749, + "chain": 31337, + "multi": false, + "commit": "3631685" +} \ No newline at end of file diff --git a/packages/starksheet-solidity/broadcast/Evmsheet.s.sol/31337/run-1690361479.json b/packages/starksheet-solidity/broadcast/Evmsheet.s.sol/31337/run-1690361479.json new file mode 100644 index 00000000..1ed0ab8b --- /dev/null +++ b/packages/starksheet-solidity/broadcast/Evmsheet.s.sol/31337/run-1690361479.json @@ -0,0 +1,209 @@ +{ + "transactions": [ + { + "hash": "0x0df315fe636fafc6cacf6a4aa9f38a7b6b8510cc5d286f68d8fede81be7a2d78", + "transactionType": "CREATE", + "contractName": "Bytes", + "contractAddress": "0x5FC8d32690cc91D4c39d9d3abcBD16989F875707", + "function": null, + "arguments": null, + "transaction": { + "type": "0x02", + "from": "0xf39fd6e51aad88f6f4ce6ab8827279cfffb92266", + "gas": "0x1387dd", + "data": "0x6110d661003a600b82828239805160001a60731461002d57634e487b7160e01b600052600060045260246000fd5b30600052607381538281f3fe73000000000000000000000000000000000000000030146080604052600436106101625760003560e01c8063a5eb31ee116100cd578063d1ffb56111610086578063d1ffb561146103fb578063d442584f1461042b578063e004139614610454578063f1142fb314610474578063f647f8fb14610487578063f83b670f146104b257600080fd5b8063a5eb31ee14610344578063a8d8f00f1461036b578063b5cdf92414610396578063b63711df146103a9578063be8b3430146103bc578063c29616bd146103cf57600080fd5b80635ef849301161011f5780635ef8493014610241578063913c97b41461026b57806397e6175c1461029f57806399dd9bd7146102cb5780639ae4c3d1146102ec5780639cee499e1461031857600080fd5b8063042aa0841461016757806305d3bb74146101985780631a7431ef146101c0578063235266d2146101e357806348137709146101f65780634d66a2ae1461021b575b600080fd5b61017a610175366004610ec0565b6104de565b6040516001600160d01b031990911681526020015b60405180910390f35b6101ab6101a6366004610ec0565b610540565b60405163ffffffff909116815260200161018f565b6101d36101ce366004610f05565b61059d565b604051901515815260200161018f565b6101d36101f1366004610f4c565b610652565b610209610204366004610ec0565b6106b5565b60405160ff909116815260200161018f565b61022e610229366004610fa6565b610711565b60405161ffff909116815260200161018f565b61025461024f366004610ec0565b61071e565b60405165ffffffffffff909116815260200161018f565b61027e610279366004610ec0565b610772565b6040516fffffffffffffffffffffffffffffffff909116815260200161018f565b6102b26102ad366004610ec0565b6107d0565b6040516001600160a01b0319909116815260200161018f565b6102de6102d9366004610ec0565b61082e565b60405190815260200161018f565b6102ff6102fa366004610ec0565b61088c565b60405167ffffffffffffffff909116815260200161018f565b61032b610326366004610ec0565b6108e9565b6040516001600160d81b0319909116815260200161018f565b610357610352366004610ec0565b610946565b60405162ffffff909116815260200161018f565b61037e610379366004610ec0565b6109a3565b60405166ffffffffffffff909116815260200161018f565b6102de6103a4366004610ec0565b610a00565b6102ff6103b7366004610ec0565b610a55565b61022e6103ca366004610ec0565b610aa9565b6103e26103dd366004610ec0565b610b06565b6040516001600160c81b0319909116815260200161018f565b61040e610409366004610ec0565b610b5a565b6040516bffffffffffffffffffffffff909116815260200161018f565b61043e610439366004610ec0565b610bae565b60405164ffffffffff909116815260200161018f565b610467610462366004610fe3565b610c02565b60405161018f9190611031565b6102b2610482366004610ec0565b610d0f565b61049a610495366004610ec0565b610d64565b6040516001600160a01b03909116815260200161018f565b6104c56104c0366004610ec0565b610dc9565b6040516001600160f81b0319909116815260200161018f565b60006104eb82600661107f565b835110156105375760405162461bcd60e51b8152602060048201526014602482015273746f4279746573365f6f75744f66426f756e647360601b60448201526064015b60405180910390fd5b50016006015190565b600061054d82600461107f565b835110156105945760405162461bcd60e51b8152602060048201526014602482015273746f55696e7433325f6f75744f66426f756e647360601b604482015260640161052e565b50016004015190565b600080600190508354600260018083161561010002038216048451808214600181146105cc5760009450610644565b821561064457602083106001811461062957600189600052602060002060208a018581015b600284828410010361062057815183541461060f5760009950600093505b6001830192506020820191506105f1565b50505050610642565b6101008086040294506020880151851461064257600095505b505b509293505050505b92915050565b81518151600091600191811480831461066e57600092506106ab565b600160208701838101602088015b60028483851001036106a657805183511461069a5760009650600093505b6020928301920161067c565b505050505b5090949350505050565b60006106c282600161107f565b835110156107085760405162461bcd60e51b8152602060048201526013602482015272746f55696e74385f6f75744f66426f756e647360681b604482015260640161052e565b50016001015190565b600061064c826000610aa9565b600061072b82600661107f565b835110156105375760405162461bcd60e51b8152602060048201526014602482015273746f55696e7434385f6f75744f66426f756e647360601b604482015260640161052e565b600061077f82601061107f565b835110156107c75760405162461bcd60e51b8152602060048201526015602482015274746f55696e743132385f6f75744f66426f756e647360581b604482015260640161052e565b50016010015190565b60006107dd82600c61107f565b835110156108255760405162461bcd60e51b8152602060048201526015602482015274746f427974657331325f6f75744f66426f756e647360581b604482015260640161052e565b5001600c015190565b600061083b82602061107f565b835110156108835760405162461bcd60e51b8152602060048201526015602482015274746f427974657333325f6f75744f66426f756e647360581b604482015260640161052e565b50016020015190565b600061089982600861107f565b835110156108e05760405162461bcd60e51b8152602060048201526014602482015273746f55696e7436345f6f75744f66426f756e647360601b604482015260640161052e565b50016008015190565b60006108f682600561107f565b8351101561093d5760405162461bcd60e51b8152602060048201526014602482015273746f4279746573355f6f75744f66426f756e647360601b604482015260640161052e565b50016005015190565b600061095382600361107f565b8351101561099a5760405162461bcd60e51b8152602060048201526014602482015273746f55696e7432345f6f75744f66426f756e647360601b604482015260640161052e565b50016003015190565b60006109b082600761107f565b835110156109f75760405162461bcd60e51b8152602060048201526014602482015273746f55696e7435365f6f75744f66426f756e647360601b604482015260640161052e565b50016007015190565b6000610a0d82602061107f565b835110156108835760405162461bcd60e51b8152602060048201526015602482015274746f55696e743235365f6f75744f66426f756e647360581b604482015260640161052e565b6000610a6282600861107f565b835110156108e05760405162461bcd60e51b8152602060048201526014602482015273746f4279746573385f6f75744f66426f756e647360601b604482015260640161052e565b6000610ab682600261107f565b83511015610afd5760405162461bcd60e51b8152602060048201526014602482015273746f55696e7431365f6f75744f66426f756e647360601b604482015260640161052e565b50016002015190565b6000610b1382600761107f565b835110156109f75760405162461bcd60e51b8152602060048201526014602482015273746f4279746573375f6f75744f66426f756e647360601b604482015260640161052e565b6000610b6782600c61107f565b835110156108255760405162461bcd60e51b8152602060048201526014602482015273746f55696e7439365f6f75744f66426f756e647360601b604482015260640161052e565b6000610bbb82600561107f565b8351101561093d5760405162461bcd60e51b8152602060048201526014602482015273746f55696e7434305f6f75744f66426f756e647360601b604482015260640161052e565b606081610c1081601f61107f565b1015610c4f5760405162461bcd60e51b815260206004820152600e60248201526d736c6963655f6f766572666c6f7760901b604482015260640161052e565b610c59828461107f565b84511015610c9d5760405162461bcd60e51b8152602060048201526011602482015270736c6963655f6f75744f66426f756e647360781b604482015260640161052e565b606082158015610cbc5760405191506000825260208201604052610d06565b6040519150601f8416801560200281840101858101878315602002848b0101015b81831015610cf5578051835260209283019201610cdd565b5050858452601f01601f1916604052505b50949350505050565b6000610d1c82601061107f565b835110156107c75760405162461bcd60e51b8152602060048201526015602482015274746f427974657331365f6f75744f66426f756e647360581b604482015260640161052e565b6000610d7182601461107f565b83511015610db95760405162461bcd60e51b8152602060048201526015602482015274746f416464726573735f6f75744f66426f756e647360581b604482015260640161052e565b500160200151600160601b900490565b6000610dd682600161107f565b835110156107085760405162461bcd60e51b8152602060048201526014602482015273746f4279746573315f6f75744f66426f756e647360601b604482015260640161052e565b634e487b7160e01b600052604160045260246000fd5b600082601f830112610e4457600080fd5b813567ffffffffffffffff80821115610e5f57610e5f610e1d565b604051601f8301601f19908116603f01168101908282118183101715610e8757610e87610e1d565b81604052838152866020858801011115610ea057600080fd5b836020870160208301376000602085830101528094505050505092915050565b60008060408385031215610ed357600080fd5b823567ffffffffffffffff811115610eea57600080fd5b610ef685828601610e33565b95602094909401359450505050565b60008060408385031215610f1857600080fd5b82359150602083013567ffffffffffffffff811115610f3657600080fd5b610f4285828601610e33565b9150509250929050565b60008060408385031215610f5f57600080fd5b823567ffffffffffffffff80821115610f7757600080fd5b610f8386838701610e33565b93506020850135915080821115610f9957600080fd5b50610f4285828601610e33565b600060208284031215610fb857600080fd5b813567ffffffffffffffff811115610fcf57600080fd5b610fdb84828501610e33565b949350505050565b600080600060608486031215610ff857600080fd5b833567ffffffffffffffff81111561100f57600080fd5b61101b86828701610e33565b9660208601359650604090950135949350505050565b600060208083528351808285015260005b8181101561105e57858101830151858201604001528201611042565b506000604082860101526040601f19601f8301168501019250505092915050565b8082018082111561064c57634e487b7160e01b600052601160045260246000fdfea26469706673582212200ab05fdff7c9159a360effa700137333459105198b03327bed2de33488aa4ec064736f6c63430008150033", + "nonce": "0x5", + "accessList": [] + }, + "additionalContracts": [], + "isFixedGasLimit": false + }, + { + "hash": "0xbc7da19663721b7b4e612cf9fbe94ce060b52963e65a7e991250ab643dfcebd4", + "transactionType": "CREATE", + "contractName": "MultiSendCallOnly", + "contractAddress": "0x0165878A594ca255338adfa4d48449f69242Eb8F", + "function": null, + "arguments": null, + "transaction": { + "type": "0x02", + "from": "0xf39fd6e51aad88f6f4ce6ab8827279cfffb92266", + "gas": "0x2e5b4", + "value": "0x0", + "data": "0x608060405234801561001057600080fd5b506101ae806100206000396000f3fe60806040526004361061001e5760003560e01c80638d80ff0a14610023575b600080fd5b6100366100313660046100c7565b610038565b005b805160205b818110156100ac578083015160f81c6001820184015160601c601583018501516035840186015160558501870160008560008114610082576001811461001e5761008e565b6000808585888a5af191505b508061009957600080fd5b505080605501850194505050505061003d565b505050565b634e487b7160e01b600052604160045260246000fd5b6000602082840312156100d957600080fd5b813567ffffffffffffffff808211156100f157600080fd5b818401915084601f83011261010557600080fd5b813581811115610117576101176100b1565b604051601f8201601f19908116603f0116810190838211818310171561013f5761013f6100b1565b8160405282815287602084870101111561015857600080fd5b82602086016020830137600092810160200192909252509594505050505056fea2646970667358221220915f2e68ab0008ebbb1ed69f9c5c2817995c2578db9a979f782235cb1216b32764736f6c63430008150033", + "nonce": "0x6", + "accessList": [] + }, + "additionalContracts": [], + "isFixedGasLimit": false + }, + { + "hash": "0x119308bb08f1b36359388f9288220d1b12d27a4adb1a6a4ba5ab4bb89f1bd22e", + "transactionType": "CREATE", + "contractName": "BasicCellRenderer", + "contractAddress": "0xa513E6E4b8f2a923D98304ec87F64353C4D5C853", + "function": null, + "arguments": null, + "transaction": { + "type": "0x02", + "from": "0xf39fd6e51aad88f6f4ce6ab8827279cfffb92266", + "gas": "0x3180ad", + "value": "0x0", + "data": "0x608060405234801561001057600080fd5b50612c25806100206000396000f3fe608060405234801561001057600080fd5b50600436106100365760003560e01c806306d4cd8b1461003b57806328de0f2f14610064575b600080fd5b61004e610049366004610322565b610077565b60405161005b919061038b565b60405180910390f35b61004e610072366004610404565b6100f1565b60606000610086600f846104fc565b90506000610095600f8361051e565b61009f9085610535565b905060006100ae826041610548565b60f81b9050806100c76100c2856001610548565b6101b6565b6040516020016100d8929190610577565b6040516020818303038152906040529350505050919050565b606060006100fe86610077565b905083838261018388735fc8d32690cc91d4c39d9d3abcbd16989f87570763b5cdf924909160006040518363ffffffff1660e01b81526004016101429291906105a8565b602060405180830381865af415801561015f573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906100c291906105ca565b87878660405160200161019c97969594939291906105f2565b604051602081830303815290604052915050949350505050565b606060006101c383610249565b600101905060008167ffffffffffffffff8111156101e3576101e36103a5565b6040519080825280601f01601f19166020018201604052801561020d576020820181803683370190505b5090508181016020015b600019016f181899199a1a9b1b9c1cb0b131b232b360811b600a86061a8153600a850494508461021757509392505050565b60008072184f03e93ff9f4daa797ed6e38ed64bf6a1f0160401b83106102885772184f03e93ff9f4daa797ed6e38ed64bf6a1f0160401b830492506040015b6d04ee2d6d415b85acef810000000083106102b4576d04ee2d6d415b85acef8100000000830492506020015b662386f26fc1000083106102d257662386f26fc10000830492506010015b6305f5e10083106102ea576305f5e100830492506008015b61271083106102fe57612710830492506004015b60648310610310576064830492506002015b600a831061031c576001015b92915050565b60006020828403121561033457600080fd5b5035919050565b60005b8381101561035657818101518382015260200161033e565b50506000910152565b6000815180845261037781602086016020860161033b565b601f01601f19169290920160200192915050565b60208152600061039e602083018461035f565b9392505050565b634e487b7160e01b600052604160045260246000fd5b60008083601f8401126103cd57600080fd5b50813567ffffffffffffffff8111156103e557600080fd5b6020830191508360208285010111156103fd57600080fd5b9250929050565b6000806000806060858703121561041a57600080fd5b84359350602085013567ffffffffffffffff8082111561043957600080fd5b818701915087601f83011261044d57600080fd5b81358181111561045f5761045f6103a5565b604051601f8201601f19908116603f01168101908382118183101715610487576104876103a5565b816040528281528a60208487010111156104a057600080fd5b8260208601602083013760006020848301015280975050505060408701359150808211156104cd57600080fd5b506104da878288016103bb565b95989497509550505050565b634e487b7160e01b600052601160045260246000fd5b60008261051957634e487b7160e01b600052601260045260246000fd5b500490565b808202811582820484141761031c5761031c6104e6565b8181038181111561031c5761031c6104e6565b8082018082111561031c5761031c6104e6565b6000815161056d81856020860161033b565b9290920192915050565b6001600160f81b031983168152815160009061059a81600185016020870161033b565b919091016001019392505050565b6040815260006105bb604083018561035f565b90508260208301529392505050565b6000602082840312156105dc57600080fd5b5051919050565b81818437506000910190815290565b7f646174613a6170706c69636174696f6e2f6a736f6e2c7b22646573637269707481527f696f6e223a2022537461726b7368656574222c20226e616d65223a202200000060208201528688603d8301376000878201602160f81b603d820152875161066481603e840160208c0161033b565b7f222c22696d616765223a2022646174613a696d6167652f7376672b786d6c2c25603e92909101918201527f334373766725323076696577426f782533442532373025323030253230383925605e8201527f3230353525323725323066696c6c2533442532376e6f6e65253237253230786d607e8201527f6c6e73253344253237687474702533412f2f7777772e77332e6f72672f323030609e8201527f302f737667253237253345253343646566732533452533437374796c6525334560be8201527f253430666f6e742d66616365253230253742666f6e742d66616d696c7925334160de8201527f253230253237507265737325323053746172742532303250253237253342737260fe8201527f6325334125323075726c25323825323764617461253341666f6e742f776f666661011e8201527f32253342626173653634253243643039474d6741424141414141424c3841413861013e8201527f41414141415235774141424b674141454141414141414141414141414141414161015e8201527f4141414141414141414141414150305a4756453063476a41624d42794358675a61017e8201527f6741494e794551674b3846545361517544524141424e67496b41344e4d42434161019e8201527f46687a5148684649623644566c42306a314f4d4253336f4f4953744562732f2f6101be8201527f2f6c4a776356727a47634f30676f684c45484d6369694443434e57695a6761306101de8201527f79625345555954514f6a4b427038546c737a7344526438716174586c333058746101fe8201527f30645a47467952305668444b776c62746c25324272734643773945316e64655961021e8201527f4a74732f37527762305673784d71576c636a6a775445537a2f5568752f77337361023e8201527f33746b6f496d70343464515168576f456d54337579526d70746f7553446b7a5761025e8201527f454138762f3932364a4b7539486f696e6e3673376674336d4965476c7737547161027e8201527f6437456f326a46517849766a5642494a70563269614f62547a68575932314e7461029e8201527f476772687434704d4b3457556a34624c7967542f51253242514c7879253242336102be8201527f6c482f362f6b6275496444497239446a724a496a6f394a7336524d58253242456102de8201527f6b37424f545a6b6d70397a347455524652566656307148504448375a7462364a6102fe8201527f616f6130684c335975616232473373667a72365776394536793569767025324261031e8201527f7135564c74426a514478476f5345304150313762336466376c61726a6525324261033e8201527f73637a6b7241744a334b6657304a342532424b323365744b4b556a383554616f61035e8201527f57473453346158436c427743413268676141652532423658396f696e32304e6261037e8201527f554a7264466767517049686d5247494d30372f7025324277375a7058316c473161039e8201527f6a6a51787073435141423438714445415042346950312f6a39592f4261686a356103be8201527f5943414e302f78714157496852616a6c6e694e654f50396e78433466667932556103de8201527f694843304e47386b686f6f567a6f7459334445417a417a41356b473735337a6a6103fe8201527f4853354d6e6d586b69496a6d54554d36556d4d3025324256346976752f48377861041e8201527f6a364666322f6b343472787a6449324141676742492f4c48416b394a7a35554d61043e8201527f496f4c7755344146455435725a464f33444d616655633061777351434879497061045e8201527f557a546b30784a474a454f6a4e6871436b474570496153474f6a714e466d2f5761047e8201527f4e434e3569636b71434d6e414165564c4d4c655867356971386b365752585a5261049e8201527f326c337042393831427a73475a743225324256696c4342723954494a674b67786104be8201527f365542514446253242566a4b44714e7741414948386a6949664d6e75384b68666104de8201527f584b486f4e3348634134477245786842324155442f795a554d423857547579496104fe8201527f413444634f4b656434397939504249616e426967734d454e38556b30766c547661051e8201527f304a58334e394d795a75544d763573655357413525324238556538504465547261053e8201527f645467474973566d4e33635856586a6463795275633434385866664176506e7361055e8201527f3575324d4531722532426a4731703137767a3849704f416e483444427367793361057e8201527f512f54376b33646d2f3846334232377355694877464631414f6c683055646e4961059e8201527f4471494e5164506355393145786f2f346252696a6a5169704e4e307a4c646c7a6105be8201527f504438496f547449734c38717162746f4f5149514a5a567849705931315073536105de8201527f55533231397a4c585066642f507667765751346372464d2532425769755671706105fe8201527f645a6f4e6475645872632f4745324d4a36656e3575635746694763375274364f61061e8201527f487676354d674c2532427a44733578444277696141315433554877326b63594361063e8201527f312f55666453316645316d37763742346537653350574848786533594f32483561065e8201527f25324241504f5a7965503025324251506553425468793078713965363241486a61067e8201527f6141556842432f364144484c6f476f4f657636412532426867487369317a613861069e8201527f71355a4e4d716a596c575a4d713867354248445574495370574a73526f52544a6106be8201527f56613049305a3957546b5371564b73507a3464586a7648746449684c6e7670746106de8201527f554c4330753542567579414d544b4a513930594b5267546e5769476b6d7153456106fe8201527f714b6d7256685259674b6b335443686255573671456f45637665577a6859535461071e8201527f4c32484e706735452f6d7151393956564467763352475435586d33637a68754c61073e8201527f3972685864316132372f736c5130686959366a643739614f5a43746a6f52687261075e8201527f623136575676514b725734477a786a7869723238494d697a2f7155447973495761077e8201527f7037516a667765347a556437614a735651575179524c554b484b42577938577661079e8201527f45565333584d53353656337757644f442532424638757639645477496d4b722f6107be8201527f5064626d5763775176456641616a7975566a70784e32704f56635769336c38776107de8201527f454c2f6d395070646f55494536253242504b5838315041546d67654f304231736107fe8201527f47454825324261707a353466646d534a7a333741686635366a4c7739756e504561081e8201527f35644d4b3025324237544639563843435466523979664e7355493474557a464661083e8201527f42326e536e384b4f626a64446964554c7034494a6873777878595172595a643661085e8201527f4e76436e55394d445825324252654c6e4d546d6c315a453972306b5077334e3261087e8201527f6752253242736a4573596d4953706b356c31497333594e614a4b6f6e7a65703761089e8201527f56637354316e556b62347048774b5a41796b614b6f43504630506f6d456876496108be8201527f5758656e6f5a767836774f4b313070316c3274546858793850316555776473766108de8201527f53715157766f424d7473674851554a614774494273756861776450545a5378596108fe8201527f707257757734647a7231564755744449465871726f4d4d69597346783857695461091e8201527f336463574b6f376d50554c79715657413972305974524a4c626957766a6e4c2561093e8201527f324272633452646767624e516c514141613264306d616236364d48447074314361095e8201527f6477626b51436253375053445a4d7a3746724f51713165636153304a6c74644161097e8201527f6c44527941587173364130586247707748676b70367572557757416272464d3361099e8201527f75794d764e4b6c344d6c435548537950416d3931776144454a3559595148754a6109be8201527f4d32304b575251737637486b61334770686c533258444b714f4b4245554753316109de8201527f65306b63316f323449494166486c4449794278584a4a656767423369386174566109fe8201527f67434f3064444f5a484a57596a564c416a6a397137765673456e72684b374568610a1e8201527f4c75427a42586d4d674554634531636d61436976504b6f4a766670466c794935610a3e8201527f4d70584234454325324245672f596d303454787843354e6c73596b74646f5951610a5e8201527f55656c38624673456c3748345a36734377622f38626b347458574658504b6a71610a7e8201527f5462526e64336e4c5770394f784941706c664b586747684e6c72443462354a4c610a9e8201527f5a367055753441726756614d366561357844574244476f7a707a4641376e6747610abe8201527f74596334486141775269475576637653653652414177335a576b564f4667764b610ade8201527f46364955696c4d49394964715155345134585264484866736666517770313955610afe8201527f434a49306a5773725433356f5578303678507268473271364d4533554f306c63610b1e8201527f635a557354454351784a44527854444b6c334c4948722f6162546f73686c6466610b3e8201527f51786a364f57745273466e6966444373473674336b426f344e6d424a6d615556610b5e8201527f54636c794951414a4c6a6e723042365a3859464d6e396b397967703752727848610b7e8201527f36766877624a4e41654b4d554436353974386746514a4d5377652f434f624850610b9e8201527f467671484746554e5266253242737245663354584b42725a76676b6369396972610bbe8201527f426d63442f7458616754474358634e68432532424f3539754c706e6673796f71610bde8201527f4c53313238374552776d38666165564f6d3857634437386c5a36594232793938610bfe8201527f5a4c6c4d3972557264324c514e6c324956643454727376675139363079377573610c1e8201527f5965306854506170576a71726c2532425837784665424e54253242315a644a4a610c3e8201527f572532424678745737584e7774634e7a7761672532425256656a6d4a6839656d610c5e8201527f6c495a4b69694e63694b3849554f4d33556a4a376342554e5847505853326c68610c7e8201527f253242687770676f4836567348524f63764569723372585970344c7769435a77610c9e8201527f3176486c43623552314d68623564536e4f326d6e6f475a6f5846315765574757610cbe8201527f6d7a694a314a555534715072306e694a536c4e424331636b4b6d4a6657625877610cde8201527f5577757449547a456d6a776770776142753464525066746a2f4e384143526e64610cfe8201527f616b2f4641674b674c37305058577839767a6b59322532426d34355473496b4c610d1e8201527f3037616f70444e6f676830535262535a534f397a744657516a376e574c676275610d3e8201527f364325324254374b6a44715a3667456e5277674d78306b4c5a77797962514f76610d5e8201527f514130773054782f354a42722f63595a6453574f546a774446364e6f586b796a610d7e8201527f33566a484e4751494e76426a5a734a4a3377466141516d6f5a575a5970416961610d9e8201527f574f466e6e686455524176576b557a77693062677a5a4158796f445545714863610dbe8201527f57307069454c574f777168773365765478444957724e32495371525151454c41610dde8201527f4d32365334486c723548552f48784a43436844424a6b756b6341573856415430610dfe8201527f6770545a544b4e48677a444f7234314751656a4f34677a416e6b577077464752610e1e8201527f43334c625231787a4b434875365635694674674c704f384b51596d5965467868610e3e8201527f4c32643838736469506a2f76306b427a636c51637954735766324d6445394944610e5e8201527f386d5858576a72434b253242354532756e336e6976656973526e726971317548610e7e8201527f594d6a6a69694945304b6466674d6f3163476d6b557254624f30356732737633610e9e8201527f477673525971762f61457736375472644f705435567a4641364131417939634b610ebe8201527f6f44667762544a64445750524e57517354796a6d3772486249734b466b6f4f2f610ede8201527f5a4c4376735966785973337768534338614c49344b765677373773336e347a48610efe8201527f67697061634a6e435362463945727a53357069386343577655597a4f5064327a610f1e8201527f684a2f4750437a53684f453378596c634f3350796164586a54334f6b68706841610f3e8201527f58465853766865544e5355525446565641486f4a6d7949726b6a454b6f517746610f5e8201527f4730303554334158643935764e30446d336d427332786746546c253242513572610f7e8201527f73416a6e744768707a6f62643642374e7a52664e56653130446f4e5639343753610f9e8201527f59646f635252624776636d785456786f61367a717756376d416e773544314745610fbe8201527f5474327a48382532425476514256356e37672f32615768743979794e594c3974610fde8201527f4f42744167384846435945316d4e775432454232467538544968543776565241610ffe8201527f3461587a6e6b3670545a4e6779696f73747749364b654655374c696c7041253261101e8201527f42334234474a794277574d327062466a4876734a3747754f6f616b6a6d46746a61103e8201527f59344c6254396c323239253242453646374c4475577a744c6e333749786b386a61105e8201527f356c42564b33774c7369362f416641756f6a34396c4d6b5653545045396b704761107e8201527f64304c724555534a4941413070596c4178414d642f4e4f46776f4a446458466961109e8201527f307a4f5744422f54464a705666575642574f516274724a556230636c663369256110be8201527f3242575072446f596c65545674564f45306d36793564487444725551776f414c6110de8201527f7455523365585364444d4e785866656a594674764c626c726c4a7777484b2f456110fe8201527f6957504a616b32574b35386e684e6f4c6a615a55475841756f32656f5777464561111e8201527f66612f445334496958717246714779633348726939785132693243352f73357661113e8201527f7a424d30793777334d4473774d3759325247427172464d6778374f696325324261115e8201527f30497a736d5678617a5473305263666a324f3334532f525639503269486f427561117e8201527f6c4b49594244665a46654c53356439725379664a64536c67683268644d72324f61119e8201527f5552334b6e6c506e4f41785477314a384c4d325a776e4671765a745a4a6c78786111be8201527f343873776243743272316b664875443756624831326159383849437456734b786111de8201527f4b742f31726b616c42414d74782f6f6f6d43445059626b556f4c6344624b436a6111fe8201527f7675713953544467746a584744715735564b36686347654f46697a6a3643714c61121e8201527f4f49716b57783477733245504d444e7378253242613661533230384f39784c3061123e8201527f526146586f394241645530706e452532424c695359334b536f4a41525978646e61125e8201527f7a69545a4d706961442f3438496969393834446151357976656378414673735761127e8201527f792f686274696d63253242704c386b35796f70496d4a627948712f6138797a6c61129e8201527f6c37726f4f7a586d786d4163337459585363546b65734d6344324939315a36336112be8201527f6549312f394a627755716b36737863394b52677277574d414e6543314e6e39756112de8201527f4779775473706d5538712532426c5a6d43714d674153363662674841476a514b6112fe8201527f73754a334451416a5235346d356a4c7a5a616e546c62646530253242726e663461131e8201527f385a574138546c32673277414779427748516e3552322532424e6a726542677861133e8201527f626c734e46627554776d6862414a48737a2f72416f61764c4f34317874767a5961135e8201527f4768336e4c4a426b41506a7578424a445248333048426575385567436978464e61137e8201527f437951322f4b253242385157372f6530253242664f2532423436524e5730657961139e8201527f4c726f39446a5467704a4e4d3547385179306c54644f756d73773066715045696113be8201527f393646702532424830634d774e6f376a787a596d6e4e664d5a6d64506c7932706113de8201527f6f7132575065476d67507136474c78504e34536c4b486e7870624f69754c58516113fe8201527f75583155715031676a6f38426136536c55314f416d5267707a7531735444584a61141e8201527f50754d3338546f387130344c324e777970653837327777556741675a6c70386461143e8201527f6b5166397a38544d43624d6b596b3758484375333564375a5a41656f346b5a4b61145e8201527f68784953386945354c546a334c4f6976485a7268394a3870337a4c5a436a776361147e8201527f6970354452694b6e576e49664c33386b4a684d7452776a67553525324256726d61149e8201527f714b6c6739307a376a64732f4238444b646b464c76483353253242376f4838616114be8201527f6c445a6c626734533155583574434d445342324f364b756c7a41344b763067376114de8201527f314251643054464b7733685358696e62374e6c304258725873514e6376436b386114fe8201527f6d6f394f786965783559627a78564e2f6b3738336f48545a495777393079495a61151e8201527f777672697164475473586e54384965705437597946434f4a6741395a3042794961153e8201527f455956735478522f6b73616b324268376f4b767034766e695530364d57317a4261155e8201527f4672746568647a306b6b587951786a426d7965645636644d596545386146787461157e8201527f6575777355466136466c6c54446c716430707a525a77473663467266574d627061159e8201527f384738587a6a66624d253242354658657076356f457273696c363458783663376115be8201527f5841576275696d3666387347494d58666f334a6971476b703333376854536a676115de8201527f65636862364f42472f327a31376a6f6d4469476d253242476c623146553069656115fe8201527f6e7552796977654c576767447a6d4655765545556a5a6f377356544877684f4661161e8201527f504d6b4e737146423977796d6b45307639666d7477453854377135384e594f3761163e8201527f787534623833766e46766c35755378446c472532426b4f51675249644f346a6761165e8201527f7a786a53486a4b4c7332742f6c684f647771766131415744437072763344345361167e8201527f34523741625934544362664b4637744265363554343551347a7a49714433316161169e8201527f79797557716a692532424636585337535439483943314f342f694b366b4775766116be8201527f6b512f664e3537487837456533373435622f76766e2f62482f58253242392f256116de8201527f32426762656d684f416d49705576755157757344764b517578394a44564e734b6116fe8201527f673651636d6b73515341445530346347524c523768466f5a326337785545664761171e8201527f253242776b755459474d764c6a422f6550634936416847686e5735717a45416961173e8201527f4a586377564545775869654e70536c317a6a457253253242435325324248634c61175e8201527f6f52506d7661324d6767412f69794c67536f544a555767733442794149514f3061177e8201527f4f6f705a487656627a6844494c65557155677a7a48492f667950474e7879777361179e8201527f6f796c6865534639577662795363336b4544716b32415636436c4364635535536117be8201527f6e6c4e6e4963394b794d63384c79622532423867484f4a795173466c4c6250526117de8201527f796d6d374a42743349545a544162314732444252496b514b51705451396939626117fe8201527f3665435353387a4d366161525364544b5657524d336663454a4c644b61746e7361181e8201527f724959774e4a55253242733048364461757832775a35686733706c653042474861183e8201527f756b316b4543734859446461496d4b7025324233463542317859763763486b7161185e8201527f644475306a4b645273657a3531376d63563641685148346931484e3173766c6a61187e8201527f5248366845454672682532426e72726d47316e33307a4d346749776d694d774561189e8201527f624b6842545564423141486f582532424b6741517a4f48543946494f71436b526118be8201527f4e4e623273397170496943534f753167576868497343564a73765771457175356118de8201527f47624a514b4e6a61427465394c4f69676368414a7665475773394332323033766118fe8201527f6f6e476c6b77725251323464646732796345646157554456734441785548734961191e8201527f77773665615234464665336d4a416b66426d5a6452395264774a485a6d47645261193e8201527f7950436a706a627a31712f584a34534949446b66384b4b6e6e32456c4b6d794c61195e8201527f69573442513836733151554b2f76426867524e776548766c5968687a7238706361197e8201527f67704b4b6d6f61576a7036426b594f48446c7835734b5647336365474539657661199e8201527f506e773563646667454242676f554946536238587632504553314772446a78456119be8201527f69524b6b697846716a54704d6d544b6b693148726a7a354368517155717845716119de8201527f544c6c4b6c53715571314772547231476a527130717846717a62744f6e5347656119fe8201527f3668374a6d627a4968355a6544696c315a58536a7430774375616b336c6e476f611a1e8201527f5655506f53734e663337394b326a6274716d44674d69485a42665a6c68324839611a3e8201527f75773738495469314a466a585653662f4336634f55667a346f30644178305447611a5e8201527f777448446863666a3443516d49694531444d5a42546b6c4e5a557065566f614f611a7e8201527f6e717633733234314e50503965766574594768435a50576a4979747332706173611a9e8201527f436a25324270556a54596c336b615574374f744b4a6136355850396d356e6367611abe8201527f364e686a685a587032762532426d57724341545a754a303368316b6a55756976611ade8201527f5067596e6a6e35744b4a4f6b326e6362703251414559585a69304b496d50356b611afe8201527f744961466e366b5a397743253237253239253230666f726d6174253238253237611b1e8201527f776f666632253237253239253342666f6e742d7765696768742533412532306e611b3e8201527f6f726d616c253342666f6e742d7374796c652533412532306e6f726d616c2533611b5e8201527f42666f6e742d646973706c617925334125323073776170253342253744746578611b7e8201527f74253230253742666f6e742d66616d696c792533412532302532375072657373611b9e8201527f2532305374617274253230325025323725334266696c6c253341253230776869611bbe8201527f74652537442e76616c7565253230253742666f6e742d73697a65253341253230611bde8201527f313070782533422537442e6e616d65253230253742666f6e742d73697a652533611bfe8201527f412532303470782533422537442533432f7374796c652533452533432f646566611c1e8201527f7325334525334372656374253230776964746825334425323738392532372532611c3e8201527f30686569676874253344253237353525323725323066696c6c25334425323762611c5e8201527f6c61636b2532372532302f253345253343726563742532307825334425323735611c7e8201527f2e3525323725323079253344253237352e352532372532307769647468253344611c9e8201527f2532373738253237253230686569676874253344253237343425323725323066611cbe8201527f696c6c2533442532372532333030303046462532372532302f25334525334374611cde8201527f657874253230746578742d616e63686f722533442532376d6964646c65253237611cfe8201527f2532307825334425323734342e35253237253230792533442532373333253237611d1e8201527f253230636c61737325334425323776616c756525323725334500000000000000611d3e820152612ba5612b9e6129f5611d5784018a61055b565b7f2533432f746578742533452533437265637425323078253344253237352e352581527f323725323079253344253237352e35253237253230776964746825334425323760208201527f373825323725323068656967687425334425323734342532372532307374726f60408201527f6b652533442532372532334646344630412532372532307374726f6b652d776960608201527f647468253344253237332532372532302f25334525334372656374253230782560808201527f334425323733302532372532307925334425323734352e35253237253230776960a08201527f647468253344253237353825323725323068656967687425334425323738253260c08201527f3725323066696c6c2533442532372532334646344630412532372532302f253360e08201527f4525334374657874253230746578742d616e63686f72253344253237656e64256101008201527f32372532307825334425323738372532372532307925334425323735322532376101208201527f253230636c6173732533442532376e616d6525323725334500000000000000006101408201526101580190565b86886105e3565b602160f81b81529050612bbb600182018561055b565b7f2533432f746578742533452533432f737667253345227d00000000000000000081526017019a995050505050505050505056fea2646970667358221220f64400964cf21cb4940de76482b5ee6f22f9e46a781e948eea81a1999aa43eb964736f6c63430008150033", + "nonce": "0x7", + "accessList": [] + }, + "additionalContracts": [], + "isFixedGasLimit": false + }, + { + "hash": "0xe380749ec7f6c94ee7a537b276f41de694373d50ea0eeacefcbb505b80bc3c3a", + "transactionType": "CREATE", + "contractName": null, + "contractAddress": "0x2279B7A0a67DB372996a5FaB50D91eAA73d2eBe6", + "function": null, + "arguments": null, + "transaction": { + "type": "0x02", + "from": "0xf39fd6e51aad88f6f4ce6ab8827279cfffb92266", + "gas": "0x42230", + "value": "0x0", + "data": "0x608060405234801561001057600080fd5b506102cf806100206000396000f3fe608060405234801561001057600080fd5b506004361061004c5760003560e01c80630194db8e14610051578063072bdcc214610076578063a391c15b14610089578063b67d77c51461009c575b600080fd5b61006461005f366004610160565b6100af565b60405190815260200160405180910390f35b610064610084366004610160565b6100ef565b61006461009736600461021e565b610129565b6100646100aa36600461021e565b61013e565b600080805b83518110156100e8578381815181106100cf576100cf610240565b60200260200101518201915080806001019150506100b4565b5092915050565b60006001815b83518110156100e85783818151811061011057610110610240565b60200260200101518202915080806001019150506100f5565b60006101358284610256565b90505b92915050565b60006101358284610278565b634e487b7160e01b600052604160045260246000fd5b6000602080838503121561017357600080fd5b823567ffffffffffffffff8082111561018b57600080fd5b818501915085601f83011261019f57600080fd5b8135818111156101b1576101b161014a565b8060051b604051601f19603f830116810181811085821117156101d6576101d661014a565b6040529182528482019250838101850191888311156101f457600080fd5b938501935b82851015610212578435845293850193928501926101f9565b98975050505050505050565b6000806040838503121561023157600080fd5b50508035926020909101359150565b634e487b7160e01b600052603260045260246000fd5b60008261027357634e487b7160e01b600052601260045260246000fd5b500490565b8181038181111561013857634e487b7160e01b600052601160045260246000fdfea2646970667358221220d31583983189259cb60ccec801ca1ed218051d27add344c207dbb437b07d39c864736f6c63430008150033", + "nonce": "0x8", + "accessList": [] + }, + "additionalContracts": [], + "isFixedGasLimit": false + }, + { + "hash": "0x5242d123c5814a714df32dec71a4fa2a75600dc4cc28fdb73032eebda6ffff89", + "transactionType": "CREATE", + "contractName": "Evmsheet", + "contractAddress": "0x8A791620dd6260079BF849Dc5567aDC3F2FdC318", + "function": null, + "arguments": [ + "0xa513E6E4b8f2a923D98304ec87F64353C4D5C853", + "10000000000000000" + ], + "transaction": { + "type": "0x02", + "from": "0xf39fd6e51aad88f6f4ce6ab8827279cfffb92266", + "gas": "0x359c55", + "value": "0x0", + "data": "0x608060405234801561001057600080fd5b50604051612fa3380380612fa383398101604081905261002f916100b1565b61003833610061565b600280546001600160a01b0319166001600160a01b0393909316929092179091556001556100eb565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b600080604083850312156100c457600080fd5b82516001600160a01b03811681146100db57600080fd5b6020939093015192949293505050565b612ea9806100fa6000396000f3fe608060405260043610620000b95760003560e01c80638da5cb5b116200006c5780638da5cb5b146200019d578063ab2fa65a14620001bd578063ae28505e14620001e4578063c56c4cf11462000209578063f2fde38b146200022b578063f52be2a2146200025057600080fd5b806303fb31e814620000c65780631164c83d14620000ed578063145e414714620001045780633ccfd60b14620001465780635787cacb146200015e578063715018a6146200018557600080fd5b36620000c157005b600080fd5b348015620000d357600080fd5b50620000eb620000e536600462000842565b62000277565b005b620000eb620000fe366004620008b3565b620002a3565b3480156200011157600080fd5b5062000129620001233660046200092e565b620004e2565b6040516001600160a01b0390911681526020015b60405180910390f35b3480156200015357600080fd5b50620000eb6200057f565b3480156200016b57600080fd5b50620001766200061c565b6040516200013d91906200095b565b3480156200019257600080fd5b50620000eb62000680565b348015620001aa57600080fd5b506000546001600160a01b031662000129565b348015620001ca57600080fd5b50620001d562000698565b6040516200013d9190620009aa565b348015620001f157600080fd5b506200012962000203366004620009fa565b620006c4565b3480156200021657600080fd5b5060025462000129906001600160a01b031681565b3480156200023857600080fd5b50620000eb6200024a36600462000842565b620006ef565b3480156200025d57600080fd5b506200026860015481565b6040519081526020016200013d565b620002816200076b565b600280546001600160a01b0319166001600160a01b0392909216919091179055565b6001543414620002cd5760405163723a79e360e11b81523460048201526024015b60405180910390fd5b600060405180602001620002e19062000817565b6020820181038252601f19601f8201166040525090506000828251602084016000f56002546040516356d3163d60e01b81526001600160a01b0391821660048201529192508216906356d3163d90602401600060405180830381600087803b1580156200034d57600080fd5b505af115801562000362573d6000803e3d6000fd5b505060405163c47f002760e01b81526001600160a01b038416925063c47f0027915062000396908a908a9060040162000a14565b600060405180830381600087803b158015620003b157600080fd5b505af1158015620003c6573d6000803e3d6000fd5b5050604051635c26412360e11b81526001600160a01b038416925063b84c82469150620003fa908890889060040162000a14565b600060405180830381600087803b1580156200041557600080fd5b505af11580156200042a573d6000803e3d6000fd5b505060405163f2fde38b60e01b81523260048201526001600160a01b038416925063f2fde38b9150602401600060405180830381600087803b1580156200047057600080fd5b505af115801562000485573d6000803e3d6000fd5b5050600380546001810182556000919091527fc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b0180546001600160a01b0319166001600160a01b0394909416939093179092555050505050505050565b600060ff60f81b838360405180602001620004fd9062000817565b6020820181038252601f19601f82011660405250805190602001206040516020016200056094939291906001600160f81b031994909416845260609290921b6bffffffffffffffffffffffff191660018401526015830152603582015260550190565b60408051601f1981840301815291905280516020909101209392505050565b620005896200076b565b604051600090339047908381818185875af1925050503d8060008114620005cd576040519150601f19603f3d011682016040523d82523d6000602084013e620005d2565b606091505b5050905080620006195760405162461bcd60e51b815260206004820152601160248201527015da5d1a191c985dd85b0819985a5b1959607a1b6044820152606401620002c4565b50565b606060038054806020026020016040519081016040528092919081815260200182805480156200067657602002820191906000526020600020905b81546001600160a01b0316815260019091019060200180831162000657575b5050505050905090565b6200068a6200076b565b620006966000620007c7565b565b606060405180602001620006ac9062000817565b601f1982820381018352601f90910116604052919050565b60038181548110620006d557600080fd5b6000918252602090912001546001600160a01b0316905081565b620006f96200076b565b6001600160a01b038116620007605760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401620002c4565b6200061981620007c7565b6000546001600160a01b03163314620006965760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401620002c4565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b6124308062000a4483390190565b80356001600160a01b03811681146200083d57600080fd5b919050565b6000602082840312156200085557600080fd5b620008608262000825565b9392505050565b60008083601f8401126200087a57600080fd5b50813567ffffffffffffffff8111156200089357600080fd5b602083019150836020828501011115620008ac57600080fd5b9250929050565b600080600080600060608688031215620008cc57600080fd5b853567ffffffffffffffff80821115620008e557600080fd5b620008f389838a0162000867565b909750955060208801359150808211156200090d57600080fd5b506200091c8882890162000867565b96999598509660400135949350505050565b600080604083850312156200094257600080fd5b6200094d8362000825565b946020939093013593505050565b6020808252825182820181905260009190848201906040850190845b818110156200099e5783516001600160a01b03168352928401929184019160010162000977565b50909695505050505050565b600060208083528351808285015260005b81811015620009d957858101830151858201604001528201620009bb565b506000604082860101526040601f19601f8301168501019250505092915050565b60006020828403121562000a0d57600080fd5b5035919050565b60208152816020820152818360408301376000818301604090810191909152601f909201601f1916010191905056fe60806040523480156200001157600080fd5b50604051806040016040528060078152602001660536865657420360cc1b815250604051806040016040528060048152602001630534854360e41b81525062000069620000636200008f60201b60201c565b62000093565b600162000077838262000188565b50600262000086828262000188565b50505062000254565b3390565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b634e487b7160e01b600052604160045260246000fd5b600181811c908216806200010e57607f821691505b6020821081036200012f57634e487b7160e01b600052602260045260246000fd5b50919050565b601f8211156200018357600081815260208120601f850160051c810160208610156200015e5750805b601f850160051c820191505b818110156200017f578281556001016200016a565b5050505b505050565b81516001600160401b03811115620001a457620001a4620000e3565b620001bc81620001b58454620000f9565b8462000135565b602080601f831160018114620001f45760008415620001db5750858301515b600019600386901b1c1916600185901b1785556200017f565b600085815260208120601f198616915b82811015620002255788860151825594840194600190910190840162000204565b5085821015620002445787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b6121cc80620002646000396000f3fe608060405234801561001057600080fd5b50600436106102275760003560e01c8063715018a611610130578063b85d8b85116100b8578063cf0983981161007c578063cf09839814610512578063cfbe95d814610535578063df4ca20614610556578063e985e9c514610576578063f2fde38b146105a457600080fd5b8063b85d8b85146104a4578063b88d4fde146104ce578063b8c368ec146104e1578063c47f0027146104ec578063c87b56dd146104ff57600080fd5b806395d89b41116100ff57806395d89b4114610439578063a22cb46514610441578063b46ebb1214610454578063b6d658e114610467578063b84c82461461049157600080fd5b8063715018a6146103fa578063768d5029146104025780638ada6b0f146104155780638da5cb5b1461042857600080fd5b80631b06443c116101b35780634f6ccce7116101825780634f6ccce71461038157806356d3163d146103a15780636352211e146103b45780636a0abc74146103c757806370a08231146103e757600080fd5b80631b06443c14610335578063206848f61461034857806323b872dd1461035b57806342842e0e1461036e57600080fd5b8063081812fc116101fa578063081812fc146102a1578063095ea7b3146102e2578063172b9eed146102f757806318160ddd1461030a5780631941fd141461031357600080fd5b806301ffc9a71461022c57806302f3c4c91461025457806306fdde03146102745780630715a24a1461027c575b600080fd5b61023f61023a36600461176a565b6105b7565b60405190151581526020015b60405180910390f35b610267610262366004611861565b610609565b60405161024b9190611951565b610267610638565b6102936fffffffffffffffffffffffffffffffff81565b60405190815260200161024b565b6102ca6102af366004611964565b6005602052600090815260409020546001600160a01b031681565b6040516001600160a01b03909116815260200161024b565b6102f56102f036600461197d565b6106c6565b005b6102676103053660046119a9565b6107ad565b61029360075481565b610326610321366004611964565b610875565b60405161024b939291906119de565b6102ca610343366004611a0e565b61092a565b610326610356366004611964565b6109e3565b6102f5610369366004611a2b565b610ae1565b6102f561037c366004611a2b565b610ca8565b61029361038f366004611964565b60086020526000908152604090205481565b6102f56103af366004611a0e565b610da0565b6102ca6103c2366004611964565b610dca565b6103da6103d53660046119a9565b610e1c565b60405161024b9190611a6c565b6102936103f5366004611a0e565b610e60565b6102f5610ec3565b6102f5610410366004611af9565b610ed7565b6009546102ca906001600160a01b031681565b6000546001600160a01b03166102ca565b610267611035565b6102f561044f366004611b63565b611042565b610267610462366004611964565b6110ae565b61047a610475366004611964565b611258565b60408051921515835260208301919091520161024b565b6102f561049f366004611ba1565b611275565b6104b56104b2366004611964565b90565b6040516001600160e01b0319909116815260200161024b565b6102f56104dc366004611be3565b6112c6565b6102ca600160801b81565b6102f56104fa366004611ba1565b6113ae565b61026761050d366004611964565b6113ff565b61023f610520366004611a0e565b600160801b6001600160a01b03919091161090565b61023f610543366004611861565b516001600160a01b0316600160801b1490565b610569610564366004611964565b6114c9565b60405161024b9190611c16565b61023f610584366004611c4d565b600660209081526000928352604080842090915290825290205460ff1681565b6102f56105b2366004611a0e565b611526565b60006301ffc9a760e01b6001600160e01b0319831614806105e857506380ac58cd60e01b6001600160e01b03198316145b806106035750635b5e139f60e01b6001600160e01b03198316145b92915050565b6060816020015160405160200161062291815260200190565b6040516020818303038152906040529050919050565b6001805461064590611c7b565b80601f016020809104026020016040519081016040528092919081815260200182805461067190611c7b565b80156106be5780601f10610693576101008083540402835291602001916106be565b820191906000526020600020905b8154815290600101906020018083116106a157829003601f168201915b505050505081565b6000818152600360205260409020546001600160a01b03163381148061070f57506001600160a01b038116600090815260066020908152604080832033845290915290205460ff165b6107515760405162461bcd60e51b815260206004820152600e60248201526d1393d517d055551213d49256915160921b60448201526064015b60405180910390fd5b60008281526005602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b606060006107ba83610e1c565b9050606060005b825181101561086d576000806107ef8584815181106107e2576107e2611cb5565b6020026020010151611258565b9150915081156108335783610803826110ae565b61080c90611ccb565b60405160200161081d929190611cef565b6040516020818303038152906040529350610858565b6040516108469085908390602001611cef565b60405160208183030381529060405293505b5050808061086590611d27565b9150506107c1565b509392505050565b600a602052600090815260409020805460018201546002830180546001600160a01b039093169391926108a790611c7b565b80601f01602080910402602001604051908101604052809291908181526020018280546108d390611c7b565b80156109205780601f106108f557610100808354040283529160200191610920565b820191906000526020600020905b81548152906001019060200180831161090357829003601f168201915b5050505050905083565b6000600160801b6001600160a01b03831610156109da576000610955836001600160a01b03166110ae565b604051632d737e4960e21b8152909150735fc8d32690cc91d4c39d9d3abcbd16989f8757079063b5cdf92490610992908490600090600401611d40565b602060405180830381865af41580156109af573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906109d39190611d62565b9392505050565b5090565b919050565b60008181526003602052604081205481906060906001600160a01b0316610a1057600160801b9250610a2b565b6000848152600a60205260409020546001600160a01b031692505b6000848152600a60205260409020600181015460029091018054859291908190610a5490611c7b565b80601f0160208091040260200160405190810160405280929190818152602001828054610a8090611c7b565b8015610acd5780601f10610aa257610100808354040283529160200191610acd565b820191906000526020600020905b815481529060010190602001808311610ab057829003601f168201915b505050505090509250925092509193909250565b6000818152600360205260409020546001600160a01b03848116911614610b375760405162461bcd60e51b815260206004820152600a60248201526957524f4e475f46524f4d60b01b6044820152606401610748565b6001600160a01b038216610b815760405162461bcd60e51b81526020600482015260116024820152701253959053125117d49150d25412515395607a1b6044820152606401610748565b336001600160a01b0384161480610bbb57506001600160a01b038316600090815260066020908152604080832033845290915290205460ff165b80610bdc57506000818152600560205260409020546001600160a01b031633145b610c195760405162461bcd60e51b815260206004820152600e60248201526d1393d517d055551213d49256915160921b6044820152606401610748565b6001600160a01b0380841660008181526004602090815260408083208054600019019055938616808352848320805460010190558583526003825284832080546001600160a01b03199081168317909155600590925284832080549092169091559251849392917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b610cb3838383610ae1565b6001600160a01b0382163b1580610d5c5750604051630a85bd0160e11b8082523360048301526001600160a01b03858116602484015260448301849052608060648401526000608484015290919084169063150b7a029060a4016020604051808303816000875af1158015610d2c573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610d509190611d7b565b6001600160e01b031916145b610d9b5760405162461bcd60e51b815260206004820152601060248201526f155394d0519157d49150d2541251539560821b6044820152606401610748565b505050565b610da861159f565b600980546001600160a01b0319166001600160a01b0392909216919091179055565b6000818152600360205260409020546001600160a01b0316806109de5760405162461bcd60e51b815260206004820152600a6024820152691393d517d3525395115160b21b6044820152606401610748565b60608082516040519150602081048252602082016020850160005b83811015610e4f578181015183820152602001610e37565b505050810160200160405292915050565b60006001600160a01b038216610ea75760405162461bcd60e51b815260206004820152600c60248201526b5a45524f5f4144445245535360a01b6044820152606401610748565b506001600160a01b031660009081526004602052604090205490565b610ecb61159f565b610ed560006115f9565b565b6000858152600360205260409020546001600160a01b0316610f2f57610efd3286611649565b60078054600090815260086020526040812087905581546001929190610f24908490611d98565b90915550610f889050565b6000858152600360205260409020546001600160a01b03163214610f8857600085815260036020526040908190205490516324f3f02560e21b81526001600160a01b039091166004820152326024820152604401610748565b6040518060600160405280856001600160a01b0316815260200184815260200183838080601f0160208091040260200160405190810160405280939291908181526020018383808284376000920182905250939094525050878152600a6020908152604091829020845181546001600160a01b0319166001600160a01b0390911617815590840151600182015590830151909150600282019061102b9082611df9565b5050505050505050565b6002805461064590611c7b565b3360008181526006602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b6000818152600a6020908152604080832081516060818101845282546001600160a01b0316825260018301549482019490945260028201805494959491938401916110f890611c7b565b80601f016020809104026020016040519081016040528092919081815260200182805461112490611c7b565b80156111715780601f1061114657610100808354040283529160200191611171565b820191906000526020600020905b81548152906001019060200180831161115457829003601f168201915b505050505081525050905061119381516001600160a01b0316600160801b1490565b156111a1576109d381610609565b60006111b0826000015161092a565b905060006111bf836020015190565b905060006111d084604001516107ad565b90506000836001600160a01b031683836040516020016111f1929190611eb9565b60408051601f198184030181529082905261120b91611eea565b600060405180830381855afa9150503d8060008114611246576040519150601f19603f3d011682016040523d82523d6000602084013e61124b565b606091505b5098975050505050505050565b600080611266600284611f06565b60019081149493901c92915050565b61127d61159f565b7f8dca0271872d00b3de3abafca544c52fcd7d512dd852c9894fa2c118ac759a93600283836040516112b193929190611fce565b60405180910390a16002610d9b828483611ffe565b6112d1858585610ae1565b6001600160a01b0384163b15806113685750604051630a85bd0160e11b808252906001600160a01b0386169063150b7a02906113199033908a908990899089906004016120be565b6020604051808303816000875af1158015611338573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061135c9190611d7b565b6001600160e01b031916145b6113a75760405162461bcd60e51b815260206004820152601060248201526f155394d0519157d49150d2541251539560821b6044820152606401610748565b5050505050565b6113b661159f565b7fb65b7b5ea384affd30f77f842e057d29dd1b13f133adf69a724a8105b164ab75600183836040516113ea93929190611fce565b60405180910390a16001610d9b828483611ffe565b6000818152600360205260409020546060906001600160a01b03168061143b57604051630243d1a960e21b815260048101849052602401610748565b6000611446846110ae565b6009546040516328de0f2f60e01b81529192506001600160a01b0316906328de0f2f9061147c90879085906001906004016120fd565b600060405180830381865afa158015611499573d6000803e3d6000fd5b505050506040513d6000823e601f3d908101601f191682016040526114c19190810190612128565b949350505050565b604080516060808201835260008083526020830181905292820152906114ee836110ae565b6040805160608101825285815260009586526003602090815295829020546001600160a01b0316958101959095528401525090919050565b61152e61159f565b6001600160a01b0381166115935760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610748565b61159c816115f9565b50565b6000546001600160a01b03163314610ed55760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610748565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b6001600160a01b0382166116935760405162461bcd60e51b81526020600482015260116024820152701253959053125117d49150d25412515395607a1b6044820152606401610748565b6000818152600360205260409020546001600160a01b0316156116e95760405162461bcd60e51b815260206004820152600e60248201526d1053149150511657d3525395115160921b6044820152606401610748565b6001600160a01b038216600081815260046020908152604080832080546001019055848352600390915280822080546001600160a01b0319168417905551839291907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b6001600160e01b03198116811461159c57600080fd5b60006020828403121561177c57600080fd5b81356109d381611754565b634e487b7160e01b600052604160045260246000fd5b604051601f8201601f1916810167ffffffffffffffff811182821017156117c6576117c6611787565b604052919050565b6001600160a01b038116811461159c57600080fd5b600067ffffffffffffffff8211156117fd576117fd611787565b50601f01601f191660200190565b600082601f83011261181c57600080fd5b813561182f61182a826117e3565b61179d565b81815284602083860101111561184457600080fd5b816020850160208301376000918101602001919091529392505050565b60006020828403121561187357600080fd5b813567ffffffffffffffff8082111561188b57600080fd5b908301906060828603121561189f57600080fd5b6040516060810181811083821117156118ba576118ba611787565b60405282356118c8816117ce565b8152602083810135908201526040830135828111156118e657600080fd5b6118f28782860161180b565b60408301525095945050505050565b60005b8381101561191c578181015183820152602001611904565b50506000910152565b6000815180845261193d816020860160208601611901565b601f01601f19169290920160200192915050565b6020815260006109d36020830184611925565b60006020828403121561197657600080fd5b5035919050565b6000806040838503121561199057600080fd5b823561199b816117ce565b946020939093013593505050565b6000602082840312156119bb57600080fd5b813567ffffffffffffffff8111156119d257600080fd5b6114c18482850161180b565b60018060a01b0384168152826020820152606060408201526000611a056060830184611925565b95945050505050565b600060208284031215611a2057600080fd5b81356109d3816117ce565b600080600060608486031215611a4057600080fd5b8335611a4b816117ce565b92506020840135611a5b816117ce565b929592945050506040919091013590565b6020808252825182820181905260009190848201906040850190845b81811015611aa457835183529284019291840191600101611a88565b50909695505050505050565b60008083601f840112611ac257600080fd5b50813567ffffffffffffffff811115611ada57600080fd5b602083019150836020828501011115611af257600080fd5b9250929050565b600080600080600060808688031215611b1157600080fd5b853594506020860135611b23816117ce565b935060408601359250606086013567ffffffffffffffff811115611b4657600080fd5b611b5288828901611ab0565b969995985093965092949392505050565b60008060408385031215611b7657600080fd5b8235611b81816117ce565b915060208301358015158114611b9657600080fd5b809150509250929050565b60008060208385031215611bb457600080fd5b823567ffffffffffffffff811115611bcb57600080fd5b611bd785828601611ab0565b90969095509350505050565b600080600080600060808688031215611bfb57600080fd5b8535611c06816117ce565b94506020860135611b23816117ce565b602081528151602082015260018060a01b036020830151166040820152600060408301516060808401526114c16080840182611925565b60008060408385031215611c6057600080fd5b8235611c6b816117ce565b91506020830135611b96816117ce565b600181811c90821680611c8f57607f821691505b602082108103611caf57634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052603260045260246000fd5b80516020808301519190811015611caf5760001960209190910360031b1b16919050565b60008351611d01818460208801611901565b9190910191825250602001919050565b634e487b7160e01b600052601160045260246000fd5b600060018201611d3957611d39611d11565b5060010190565b604081526000611d536040830185611925565b90508260208301529392505050565b600060208284031215611d7457600080fd5b5051919050565b600060208284031215611d8d57600080fd5b81516109d381611754565b8082018082111561060357610603611d11565b601f821115610d9b57600081815260208120601f850160051c81016020861015611dd25750805b601f850160051c820191505b81811015611df157828155600101611dde565b505050505050565b815167ffffffffffffffff811115611e1357611e13611787565b611e2781611e218454611c7b565b84611dab565b602080601f831160018114611e5c5760008415611e445750858301515b600019600386901b1c1916600185901b178555611df1565b600085815260208120601f198616915b82811015611e8b57888601518255948401946001909101908401611e6c565b5085821015611ea95787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b6001600160e01b0319831681528151600090611edc816004850160208701611901565b919091016004019392505050565b60008251611efc818460208701611901565b9190910192915050565b600082611f2357634e487b7160e01b600052601260045260246000fd5b500690565b60008154611f3581611c7b565b808552602060018381168015611f525760018114611f6c57611f9a565b60ff1985168884015283151560051b880183019550611f9a565b866000528260002060005b85811015611f925781548a8201860152908301908401611f77565b890184019650505b505050505092915050565b81835281816020850137506000828201602090810191909152601f909101601f19169091010190565b604081526000611fe16040830186611f28565b8281036020840152611ff4818587611fa5565b9695505050505050565b67ffffffffffffffff83111561201657612016611787565b61202a836120248354611c7b565b83611dab565b6000601f84116001811461205e57600085156120465750838201355b600019600387901b1c1916600186901b1783556113a7565b600083815260209020601f19861690835b8281101561208f578685013582556020948501946001909201910161206f565b50868210156120ac5760001960f88860031b161c19848701351681555b505060018560011b0183555050505050565b6001600160a01b03868116825285166020820152604081018490526080606082018190526000906120f29083018486611fa5565b979650505050505050565b8381526060602082015260006121166060830185611925565b8281036040840152611ff48185611f28565b60006020828403121561213a57600080fd5b815167ffffffffffffffff81111561215157600080fd5b8201601f8101841361216257600080fd5b805161217061182a826117e3565b81815285602083850101111561218557600080fd5b611a0582602083016020860161190156fea2646970667358221220f213b9045b40918ed2b5d304162ec2dfc3bc6b581b97362b423df61fd1436e5c64736f6c63430008150033a264697066735822122016636ee300fab238f4f099f32ba33a2f9dd9cbd27246df211a2a76dcc4263a7a64736f6c63430008150033000000000000000000000000a513e6e4b8f2a923d98304ec87f64353c4d5c853000000000000000000000000000000000000000000000000002386f26fc10000", + "nonce": "0x9", + "accessList": [] + }, + "additionalContracts": [], + "isFixedGasLimit": false + } + ], + "receipts": [ + { + "transactionHash": "0x0df315fe636fafc6cacf6a4aa9f38a7b6b8510cc5d286f68d8fede81be7a2d78", + "transactionIndex": "0x0", + "blockHash": "0xb607796fc7033c47305ad7019af1e732fa87dd7af9e43e4145b3cc29fc2114f7", + "blockNumber": "0x3", + "from": "0xf39Fd6e51aad88F6F4ce6aB8827279cffFb92266", + "to": null, + "cumulativeGasUsed": "0xf071f", + "gasUsed": "0xf071f", + "contractAddress": "0x5FC8d32690cc91D4c39d9d3abcBD16989F875707", + "logs": [], + "status": "0x1", + "logsBloom": "0x00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", + "type": "0x2", + "effectiveGasPrice": "0xe355697d" + }, + { + "transactionHash": "0xbc7da19663721b7b4e612cf9fbe94ce060b52963e65a7e991250ab643dfcebd4", + "transactionIndex": "0x0", + "blockHash": "0xf242ca585f099c085a68181c7db849a2fbe58e775efdfc8e0c6619393370b417", + "blockNumber": "0x4", + "from": "0xf39Fd6e51aad88F6F4ce6aB8827279cffFb92266", + "to": null, + "cumulativeGasUsed": "0x23aa9", + "gasUsed": "0x23aa9", + "contractAddress": "0x0165878A594ca255338adfa4d48449f69242Eb8F", + "logs": [], + "status": "0x1", + "logsBloom": "0x00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", + "type": "0x2", + "effectiveGasPrice": "0xddaab92e" + }, + { + "transactionHash": "0x119308bb08f1b36359388f9288220d1b12d27a4adb1a6a4ba5ab4bb89f1bd22e", + "transactionIndex": "0x0", + "blockHash": "0xe2dea0b5fdd983879f44682131cc23e6c62e3f2a4c6d41bb1320a18bfb93146c", + "blockNumber": "0x5", + "from": "0xf39Fd6e51aad88F6F4ce6aB8827279cffFb92266", + "to": null, + "cumulativeGasUsed": "0x2616fd", + "gasUsed": "0x2616fd", + "contractAddress": "0xa513E6E4b8f2a923D98304ec87F64353C4D5C853", + "logs": [], + "status": "0x1", + "logsBloom": "0x00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", + "type": "0x2", + "effectiveGasPrice": "0xd85cc8c4" + }, + { + "transactionHash": "0xe380749ec7f6c94ee7a537b276f41de694373d50ea0eeacefcbb505b80bc3c3a", + "transactionIndex": "0x1", + "blockHash": "0xe2dea0b5fdd983879f44682131cc23e6c62e3f2a4c6d41bb1320a18bfb93146c", + "blockNumber": "0x5", + "from": "0xf39Fd6e51aad88F6F4ce6aB8827279cffFb92266", + "to": null, + "cumulativeGasUsed": "0x29452b", + "gasUsed": "0x32e2e", + "contractAddress": "0x2279B7A0a67DB372996a5FaB50D91eAA73d2eBe6", + "logs": [], + "status": "0x1", + "logsBloom": "0x00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", + "type": "0x2", + "effectiveGasPrice": "0xd85cc8c4" + }, + { + "transactionHash": "0x5242d123c5814a714df32dec71a4fa2a75600dc4cc28fdb73032eebda6ffff89", + "transactionIndex": "0x0", + "blockHash": "0x034743d9d7b6a085c99cb138093f1adc9c50039d15633af0793d83f95181104d", + "blockNumber": "0x6", + "from": "0xf39Fd6e51aad88F6F4ce6aB8827279cffFb92266", + "to": null, + "cumulativeGasUsed": "0x29402e", + "gasUsed": "0x29402e", + "contractAddress": "0x8A791620dd6260079BF849Dc5567aDC3F2FdC318", + "logs": [ + { + "address": "0x8A791620dd6260079BF849Dc5567aDC3F2FdC318", + "topics": [ + "0x8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0", + "0x0000000000000000000000000000000000000000000000000000000000000000", + "0x000000000000000000000000f39fd6e51aad88f6f4ce6ab8827279cfffb92266" + ], + "data": "0x", + "blockHash": "0x034743d9d7b6a085c99cb138093f1adc9c50039d15633af0793d83f95181104d", + "blockNumber": "0x6", + "transactionHash": "0x5242d123c5814a714df32dec71a4fa2a75600dc4cc28fdb73032eebda6ffff89", + "transactionIndex": "0x0", + "logIndex": "0x0", + "transactionLogIndex": "0x0", + "removed": false + } + ], + "status": "0x1", + "logsBloom": "0x00000000000000000000000000000000000000000000000000800000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000020000000000000100000800000000000000000000000000000000400000000000000000000000000000000000000000000000000000000000000000002000000000000000000000008000000000000000000000000000000000000000000000000000200000000000000000040000002000000000000000000020000000000000000000000000000000000000000000000000000000000000000000", + "type": "0x2", + "effectiveGasPrice": "0xd483e2fa" + } + ], + "libraries": [ + "lib/eth-projects-monorepo/packages/eth-projects-contracts/contracts/lib/utils/Bytes.sol:Bytes:0x5fc8d32690cc91d4c39d9d3abcbd16989f875707" + ], + "pending": [], + "returns": {}, + "timestamp": 1690361479, + "chain": 31337, + "multi": false, + "commit": null +} \ No newline at end of file diff --git a/packages/starksheet-solidity/broadcast/Evmsheet.s.sol/31337/run-1690361643.json b/packages/starksheet-solidity/broadcast/Evmsheet.s.sol/31337/run-1690361643.json new file mode 100644 index 00000000..8487e7cc --- /dev/null +++ b/packages/starksheet-solidity/broadcast/Evmsheet.s.sol/31337/run-1690361643.json @@ -0,0 +1,209 @@ +{ + "transactions": [ + { + "hash": "0xa7ea2b9ad37fcbf9348b47a55fee32f9fb55e3894115559c2a7613ba0445fd8a", + "transactionType": "CREATE", + "contractName": "Bytes", + "contractAddress": "0x610178dA211FEF7D417bC0e6FeD39F05609AD788", + "function": null, + "arguments": null, + "transaction": { + "type": "0x02", + "from": "0xf39fd6e51aad88f6f4ce6ab8827279cfffb92266", + "gas": "0x1387dd", + "data": "0x6110d661003a600b82828239805160001a60731461002d57634e487b7160e01b600052600060045260246000fd5b30600052607381538281f3fe73000000000000000000000000000000000000000030146080604052600436106101625760003560e01c8063a5eb31ee116100cd578063d1ffb56111610086578063d1ffb561146103fb578063d442584f1461042b578063e004139614610454578063f1142fb314610474578063f647f8fb14610487578063f83b670f146104b257600080fd5b8063a5eb31ee14610344578063a8d8f00f1461036b578063b5cdf92414610396578063b63711df146103a9578063be8b3430146103bc578063c29616bd146103cf57600080fd5b80635ef849301161011f5780635ef8493014610241578063913c97b41461026b57806397e6175c1461029f57806399dd9bd7146102cb5780639ae4c3d1146102ec5780639cee499e1461031857600080fd5b8063042aa0841461016757806305d3bb74146101985780631a7431ef146101c0578063235266d2146101e357806348137709146101f65780634d66a2ae1461021b575b600080fd5b61017a610175366004610ec0565b6104de565b6040516001600160d01b031990911681526020015b60405180910390f35b6101ab6101a6366004610ec0565b610540565b60405163ffffffff909116815260200161018f565b6101d36101ce366004610f05565b61059d565b604051901515815260200161018f565b6101d36101f1366004610f4c565b610652565b610209610204366004610ec0565b6106b5565b60405160ff909116815260200161018f565b61022e610229366004610fa6565b610711565b60405161ffff909116815260200161018f565b61025461024f366004610ec0565b61071e565b60405165ffffffffffff909116815260200161018f565b61027e610279366004610ec0565b610772565b6040516fffffffffffffffffffffffffffffffff909116815260200161018f565b6102b26102ad366004610ec0565b6107d0565b6040516001600160a01b0319909116815260200161018f565b6102de6102d9366004610ec0565b61082e565b60405190815260200161018f565b6102ff6102fa366004610ec0565b61088c565b60405167ffffffffffffffff909116815260200161018f565b61032b610326366004610ec0565b6108e9565b6040516001600160d81b0319909116815260200161018f565b610357610352366004610ec0565b610946565b60405162ffffff909116815260200161018f565b61037e610379366004610ec0565b6109a3565b60405166ffffffffffffff909116815260200161018f565b6102de6103a4366004610ec0565b610a00565b6102ff6103b7366004610ec0565b610a55565b61022e6103ca366004610ec0565b610aa9565b6103e26103dd366004610ec0565b610b06565b6040516001600160c81b0319909116815260200161018f565b61040e610409366004610ec0565b610b5a565b6040516bffffffffffffffffffffffff909116815260200161018f565b61043e610439366004610ec0565b610bae565b60405164ffffffffff909116815260200161018f565b610467610462366004610fe3565b610c02565b60405161018f9190611031565b6102b2610482366004610ec0565b610d0f565b61049a610495366004610ec0565b610d64565b6040516001600160a01b03909116815260200161018f565b6104c56104c0366004610ec0565b610dc9565b6040516001600160f81b0319909116815260200161018f565b60006104eb82600661107f565b835110156105375760405162461bcd60e51b8152602060048201526014602482015273746f4279746573365f6f75744f66426f756e647360601b60448201526064015b60405180910390fd5b50016006015190565b600061054d82600461107f565b835110156105945760405162461bcd60e51b8152602060048201526014602482015273746f55696e7433325f6f75744f66426f756e647360601b604482015260640161052e565b50016004015190565b600080600190508354600260018083161561010002038216048451808214600181146105cc5760009450610644565b821561064457602083106001811461062957600189600052602060002060208a018581015b600284828410010361062057815183541461060f5760009950600093505b6001830192506020820191506105f1565b50505050610642565b6101008086040294506020880151851461064257600095505b505b509293505050505b92915050565b81518151600091600191811480831461066e57600092506106ab565b600160208701838101602088015b60028483851001036106a657805183511461069a5760009650600093505b6020928301920161067c565b505050505b5090949350505050565b60006106c282600161107f565b835110156107085760405162461bcd60e51b8152602060048201526013602482015272746f55696e74385f6f75744f66426f756e647360681b604482015260640161052e565b50016001015190565b600061064c826000610aa9565b600061072b82600661107f565b835110156105375760405162461bcd60e51b8152602060048201526014602482015273746f55696e7434385f6f75744f66426f756e647360601b604482015260640161052e565b600061077f82601061107f565b835110156107c75760405162461bcd60e51b8152602060048201526015602482015274746f55696e743132385f6f75744f66426f756e647360581b604482015260640161052e565b50016010015190565b60006107dd82600c61107f565b835110156108255760405162461bcd60e51b8152602060048201526015602482015274746f427974657331325f6f75744f66426f756e647360581b604482015260640161052e565b5001600c015190565b600061083b82602061107f565b835110156108835760405162461bcd60e51b8152602060048201526015602482015274746f427974657333325f6f75744f66426f756e647360581b604482015260640161052e565b50016020015190565b600061089982600861107f565b835110156108e05760405162461bcd60e51b8152602060048201526014602482015273746f55696e7436345f6f75744f66426f756e647360601b604482015260640161052e565b50016008015190565b60006108f682600561107f565b8351101561093d5760405162461bcd60e51b8152602060048201526014602482015273746f4279746573355f6f75744f66426f756e647360601b604482015260640161052e565b50016005015190565b600061095382600361107f565b8351101561099a5760405162461bcd60e51b8152602060048201526014602482015273746f55696e7432345f6f75744f66426f756e647360601b604482015260640161052e565b50016003015190565b60006109b082600761107f565b835110156109f75760405162461bcd60e51b8152602060048201526014602482015273746f55696e7435365f6f75744f66426f756e647360601b604482015260640161052e565b50016007015190565b6000610a0d82602061107f565b835110156108835760405162461bcd60e51b8152602060048201526015602482015274746f55696e743235365f6f75744f66426f756e647360581b604482015260640161052e565b6000610a6282600861107f565b835110156108e05760405162461bcd60e51b8152602060048201526014602482015273746f4279746573385f6f75744f66426f756e647360601b604482015260640161052e565b6000610ab682600261107f565b83511015610afd5760405162461bcd60e51b8152602060048201526014602482015273746f55696e7431365f6f75744f66426f756e647360601b604482015260640161052e565b50016002015190565b6000610b1382600761107f565b835110156109f75760405162461bcd60e51b8152602060048201526014602482015273746f4279746573375f6f75744f66426f756e647360601b604482015260640161052e565b6000610b6782600c61107f565b835110156108255760405162461bcd60e51b8152602060048201526014602482015273746f55696e7439365f6f75744f66426f756e647360601b604482015260640161052e565b6000610bbb82600561107f565b8351101561093d5760405162461bcd60e51b8152602060048201526014602482015273746f55696e7434305f6f75744f66426f756e647360601b604482015260640161052e565b606081610c1081601f61107f565b1015610c4f5760405162461bcd60e51b815260206004820152600e60248201526d736c6963655f6f766572666c6f7760901b604482015260640161052e565b610c59828461107f565b84511015610c9d5760405162461bcd60e51b8152602060048201526011602482015270736c6963655f6f75744f66426f756e647360781b604482015260640161052e565b606082158015610cbc5760405191506000825260208201604052610d06565b6040519150601f8416801560200281840101858101878315602002848b0101015b81831015610cf5578051835260209283019201610cdd565b5050858452601f01601f1916604052505b50949350505050565b6000610d1c82601061107f565b835110156107c75760405162461bcd60e51b8152602060048201526015602482015274746f427974657331365f6f75744f66426f756e647360581b604482015260640161052e565b6000610d7182601461107f565b83511015610db95760405162461bcd60e51b8152602060048201526015602482015274746f416464726573735f6f75744f66426f756e647360581b604482015260640161052e565b500160200151600160601b900490565b6000610dd682600161107f565b835110156107085760405162461bcd60e51b8152602060048201526014602482015273746f4279746573315f6f75744f66426f756e647360601b604482015260640161052e565b634e487b7160e01b600052604160045260246000fd5b600082601f830112610e4457600080fd5b813567ffffffffffffffff80821115610e5f57610e5f610e1d565b604051601f8301601f19908116603f01168101908282118183101715610e8757610e87610e1d565b81604052838152866020858801011115610ea057600080fd5b836020870160208301376000602085830101528094505050505092915050565b60008060408385031215610ed357600080fd5b823567ffffffffffffffff811115610eea57600080fd5b610ef685828601610e33565b95602094909401359450505050565b60008060408385031215610f1857600080fd5b82359150602083013567ffffffffffffffff811115610f3657600080fd5b610f4285828601610e33565b9150509250929050565b60008060408385031215610f5f57600080fd5b823567ffffffffffffffff80821115610f7757600080fd5b610f8386838701610e33565b93506020850135915080821115610f9957600080fd5b50610f4285828601610e33565b600060208284031215610fb857600080fd5b813567ffffffffffffffff811115610fcf57600080fd5b610fdb84828501610e33565b949350505050565b600080600060608486031215610ff857600080fd5b833567ffffffffffffffff81111561100f57600080fd5b61101b86828701610e33565b9660208601359650604090950135949350505050565b600060208083528351808285015260005b8181101561105e57858101830151858201604001528201611042565b506000604082860101526040601f19601f8301168501019250505092915050565b8082018082111561064c57634e487b7160e01b600052601160045260246000fdfea26469706673582212200ab05fdff7c9159a360effa700137333459105198b03327bed2de33488aa4ec064736f6c63430008150033", + "nonce": "0xa", + "accessList": [] + }, + "additionalContracts": [], + "isFixedGasLimit": false + }, + { + "hash": "0x93eb4924f3d8f74e1174d9f7b0bfb89d46ddf555a1a6a3f1aa562f8d0c252ee4", + "transactionType": "CREATE", + "contractName": "MultiSendCallOnly", + "contractAddress": "0xB7f8BC63BbcaD18155201308C8f3540b07f84F5e", + "function": null, + "arguments": null, + "transaction": { + "type": "0x02", + "from": "0xf39fd6e51aad88f6f4ce6ab8827279cfffb92266", + "gas": "0x2e5b4", + "value": "0x0", + "data": "0x608060405234801561001057600080fd5b506101ae806100206000396000f3fe60806040526004361061001e5760003560e01c80638d80ff0a14610023575b600080fd5b6100366100313660046100c7565b610038565b005b805160205b818110156100ac578083015160f81c6001820184015160601c601583018501516035840186015160558501870160008560008114610082576001811461001e5761008e565b6000808585888a5af191505b508061009957600080fd5b505080605501850194505050505061003d565b505050565b634e487b7160e01b600052604160045260246000fd5b6000602082840312156100d957600080fd5b813567ffffffffffffffff808211156100f157600080fd5b818401915084601f83011261010557600080fd5b813581811115610117576101176100b1565b604051601f8201601f19908116603f0116810190838211818310171561013f5761013f6100b1565b8160405282815287602084870101111561015857600080fd5b82602086016020830137600092810160200192909252509594505050505056fea2646970667358221220915f2e68ab0008ebbb1ed69f9c5c2817995c2578db9a979f782235cb1216b32764736f6c63430008150033", + "nonce": "0xb", + "accessList": [] + }, + "additionalContracts": [], + "isFixedGasLimit": false + }, + { + "hash": "0x79dabf2358c12572591c512a1e749b17846500c76740c43d40c2af50e6b3ad91", + "transactionType": "CREATE", + "contractName": "BasicCellRenderer", + "contractAddress": "0xA51c1fc2f0D1a1b8494Ed1FE312d7C3a78Ed91C0", + "function": null, + "arguments": null, + "transaction": { + "type": "0x02", + "from": "0xf39fd6e51aad88f6f4ce6ab8827279cfffb92266", + "gas": "0x3180ad", + "value": "0x0", + "data": "0x608060405234801561001057600080fd5b50612c25806100206000396000f3fe608060405234801561001057600080fd5b50600436106100365760003560e01c806306d4cd8b1461003b57806328de0f2f14610064575b600080fd5b61004e610049366004610322565b610077565b60405161005b919061038b565b60405180910390f35b61004e610072366004610404565b6100f1565b60606000610086600f846104fc565b90506000610095600f8361051e565b61009f9085610535565b905060006100ae826041610548565b60f81b9050806100c76100c2856001610548565b6101b6565b6040516020016100d8929190610577565b6040516020818303038152906040529350505050919050565b606060006100fe86610077565b90508383826101838873610178da211fef7d417bc0e6fed39f05609ad78863b5cdf924909160006040518363ffffffff1660e01b81526004016101429291906105a8565b602060405180830381865af415801561015f573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906100c291906105ca565b87878660405160200161019c97969594939291906105f2565b604051602081830303815290604052915050949350505050565b606060006101c383610249565b600101905060008167ffffffffffffffff8111156101e3576101e36103a5565b6040519080825280601f01601f19166020018201604052801561020d576020820181803683370190505b5090508181016020015b600019016f181899199a1a9b1b9c1cb0b131b232b360811b600a86061a8153600a850494508461021757509392505050565b60008072184f03e93ff9f4daa797ed6e38ed64bf6a1f0160401b83106102885772184f03e93ff9f4daa797ed6e38ed64bf6a1f0160401b830492506040015b6d04ee2d6d415b85acef810000000083106102b4576d04ee2d6d415b85acef8100000000830492506020015b662386f26fc1000083106102d257662386f26fc10000830492506010015b6305f5e10083106102ea576305f5e100830492506008015b61271083106102fe57612710830492506004015b60648310610310576064830492506002015b600a831061031c576001015b92915050565b60006020828403121561033457600080fd5b5035919050565b60005b8381101561035657818101518382015260200161033e565b50506000910152565b6000815180845261037781602086016020860161033b565b601f01601f19169290920160200192915050565b60208152600061039e602083018461035f565b9392505050565b634e487b7160e01b600052604160045260246000fd5b60008083601f8401126103cd57600080fd5b50813567ffffffffffffffff8111156103e557600080fd5b6020830191508360208285010111156103fd57600080fd5b9250929050565b6000806000806060858703121561041a57600080fd5b84359350602085013567ffffffffffffffff8082111561043957600080fd5b818701915087601f83011261044d57600080fd5b81358181111561045f5761045f6103a5565b604051601f8201601f19908116603f01168101908382118183101715610487576104876103a5565b816040528281528a60208487010111156104a057600080fd5b8260208601602083013760006020848301015280975050505060408701359150808211156104cd57600080fd5b506104da878288016103bb565b95989497509550505050565b634e487b7160e01b600052601160045260246000fd5b60008261051957634e487b7160e01b600052601260045260246000fd5b500490565b808202811582820484141761031c5761031c6104e6565b8181038181111561031c5761031c6104e6565b8082018082111561031c5761031c6104e6565b6000815161056d81856020860161033b565b9290920192915050565b6001600160f81b031983168152815160009061059a81600185016020870161033b565b919091016001019392505050565b6040815260006105bb604083018561035f565b90508260208301529392505050565b6000602082840312156105dc57600080fd5b5051919050565b81818437506000910190815290565b7f646174613a6170706c69636174696f6e2f6a736f6e2c7b22646573637269707481527f696f6e223a2022537461726b7368656574222c20226e616d65223a202200000060208201528688603d8301376000878201602160f81b603d820152875161066481603e840160208c0161033b565b7f222c22696d616765223a2022646174613a696d6167652f7376672b786d6c2c25603e92909101918201527f334373766725323076696577426f782533442532373025323030253230383925605e8201527f3230353525323725323066696c6c2533442532376e6f6e65253237253230786d607e8201527f6c6e73253344253237687474702533412f2f7777772e77332e6f72672f323030609e8201527f302f737667253237253345253343646566732533452533437374796c6525334560be8201527f253430666f6e742d66616365253230253742666f6e742d66616d696c7925334160de8201527f253230253237507265737325323053746172742532303250253237253342737260fe8201527f6325334125323075726c25323825323764617461253341666f6e742f776f666661011e8201527f32253342626173653634253243643039474d6741424141414141424c3841413861013e8201527f41414141415235774141424b674141454141414141414141414141414141414161015e8201527f4141414141414141414141414150305a4756453063476a41624d42794358675a61017e8201527f6741494e794551674b3846545361517544524141424e67496b41344e4d42434161019e8201527f46687a5148684649623644566c42306a314f4d4253336f4f4953744562732f2f6101be8201527f2f6c4a776356727a47634f30676f684c45484d6369694443434e57695a6761306101de8201527f79625345555954514f6a4b427038546c737a7344526438716174586c333058746101fe8201527f30645a47467952305668444b776c62746c25324272734643773945316e64655961021e8201527f4a74732f37527762305673784d71576c636a6a775445537a2f5568752f77337361023e8201527f33746b6f496d70343464515168576f456d54337579526d70746f7553446b7a5761025e8201527f454138762f3932364a4b7539486f696e6e3673376674336d4965476c7737547161027e8201527f6437456f326a46517849766a5642494a70563269614f62547a68575932314e7461029e8201527f476772687434704d4b3457556a34624c7967542f51253242514c7879253242336102be8201527f6c482f362f6b6275496444497239446a724a496a6f394a7336524d58253242456102de8201527f6b37424f545a6b6d70397a347455524652566656307148504448375a7462364a6102fe8201527f616f6130684c335975616232473373667a72365776394536793569767025324261031e8201527f7135564c74426a514478476f5345304150313762336466376c61726a6525324261033e8201527f73637a6b7241744a334b6657304a342532424b323365744b4b556a383554616f61035e8201527f57473453346158436c427743413268676141652532423658396f696e32304e6261037e8201527f554a7264466767517049686d5247494d30372f7025324277375a7058316c473161039e8201527f6a6a51787073435141423438714445415042346950312f6a39592f4261686a356103be8201527f5943414e302f78714157496852616a6c6e694e654f50396e78433466667932556103de8201527f694843304e47386b686f6f567a6f7459334445417a417a41356b473735337a6a6103fe8201527f4853354d6e6d586b69496a6d54554d36556d4d3025324256346976752f48377861041e8201527f6a364666322f6b343472787a6449324141676742492f4c48416b394a7a35554d61043e8201527f496f4c7755344146455435725a464f33444d616655633061777351434879497061045e8201527f557a546b30784a474a454f6a4e6871436b474570496153474f6a714e466d2f5761047e8201527f4e434e3569636b71434d6e414165564c4d4c655867356971386b365752585a5261049e8201527f326c337042393831427a73475a743225324256696c4342723954494a674b67786104be8201527f365542514446253242566a4b44714e7741414948386a6949664d6e75384b68666104de8201527f584b486f4e3348634134477245786842324155442f795a554d423857547579496104fe8201527f413444634f4b656434397939504249616e426967734d454e38556b30766c547661051e8201527f304a58334e394d795a75544d763573655357413525324238556538504465547261053e8201527f645467474973566d4e33635856586a6463795275633434385866664176506e7361055e8201527f3575324d4531722532426a4731703137767a3849704f416e483444427367793361057e8201527f512f54376b33646d2f3846334232377355694877464631414f6c683055646e4961059e8201527f4471494e5164506355393145786f2f346252696a6a5169704e4e307a4c646c7a6105be8201527f504438496f547449734c38717162746f4f5149514a5a567849705931315073536105de8201527f55533231397a4c585066642f507667765751346372464d2532425769755671706105fe8201527f645a6f4e6475645872632f4745324d4a36656e3575635746694763375274364f61061e8201527f487676354d674c2532427a44733578444277696141315433554877326b63594361063e8201527f312f55666453316645316d37763742346537653350574848786533594f32483561065e8201527f25324241504f5a7965503025324251506553425468793078713965363241486a61067e8201527f6141556842432f364144484c6f476f4f657636412532426867487369317a613861069e8201527f71355a4e4d716a596c575a4d713867354248445574495370574a73526f52544a6106be8201527f56613049305a3957546b5371564b73507a3464586a7648746449684c6e7670746106de8201527f554c4330753542567579414d544b4a513930594b5267546e5769476b6d7153456106fe8201527f714b6d7256685259674b6b335443686255573671456f45637665577a6859535461071e8201527f4c32484e706735452f6d7151393956564467763352475435586d33637a68754c61073e8201527f3972685864316132372f736c5130686959366a643739614f5a43746a6f52687261075e8201527f623136575676514b725734477a786a7869723238494d697a2f7155447973495761077e8201527f7037516a667765347a556437614a735651575179524c554b484b42577938577661079e8201527f45565333584d53353656337757644f442532424638757639645477496d4b722f6107be8201527f5064626d5763775176456641616a7975566a70784e32704f56635769336c38776107de8201527f454c2f6d395070646f55494536253242504b5838315041546d67654f304231736107fe8201527f47454825324261707a353466646d534a7a333741686635366a4c7739756e504561081e8201527f35644d4b3025324237544639563843435466523979664e7355493474557a464661083e8201527f42326e536e384b4f626a64446964554c7034494a6873777878595172595a643661085e8201527f4e76436e55394d445825324252654c6e4d546d6c315a453972306b5077334e3261087e8201527f6752253242736a4573596d4953706b356c31497333594e614a4b6f6e7a65703761089e8201527f56637354316e556b62347048774b5a41796b614b6f43504630506f6d456876496108be8201527f5758656e6f5a767836774f4b313070316c3274546858793850316555776473766108de8201527f53715157766f424d7473674851554a614774494273756861776450545a5378596108fe8201527f707257757734647a7231564755744449465871726f4d4d69597346783857695461091e8201527f336463574b6f376d50554c79715657413972305974524a4c626957766a6e4c2561093e8201527f324272633452646767624e516c514141613264306d616236364d48447074314361095e8201527f6477626b51436253375053445a4d7a3746724f51713165636153304a6c74644161097e8201527f6c44527941587173364130586247707748676b70367572557757416272464d3361099e8201527f75794d764e4b6c344d6c435548537950416d3931776144454a3559595148754a6109be8201527f4d32304b575251737637486b61334770686c533258444b714f4b4245554753316109de8201527f65306b63316f323449494166486c4449794278584a4a656767423369386174566109fe8201527f67434f3064444f5a484a57596a564c416a6a397137765673456e72684b374568610a1e8201527f4c75427a42586d4d674554634531636d61436976504b6f4a766670466c794935610a3e8201527f4d70584234454325324245672f596d303454787843354e6c73596b74646f5951610a5e8201527f55656c38624673456c3748345a36734377622f38626b347458574658504b6a71610a7e8201527f5462526e64336e4c5770394f784941706c664b586747684e6c72443462354a4c610a9e8201527f5a367055753441726756614d366561357844574244476f7a707a4641376e6747610abe8201527f74596334486141775269475576637653653652414177335a576b564f4667764b610ade8201527f46364955696c4d49394964715155345134585264484866736666517770313955610afe8201527f434a49306a5773725433356f5578303678507268473271364d4533554f306c63610b1e8201527f635a557354454351784a44527854444b6c334c4948722f6162546f73686c6466610b3e8201527f51786a364f57745273466e6966444373473674336b426f344e6d424a6d615556610b5e8201527f54636c794951414a4c6a6e723042365a3859464d6e396b397967703752727848610b7e8201527f36766877624a4e41654b4d554436353974386746514a4d5377652f434f624850610b9e8201527f467671484746554e5266253242737245663354584b42725a76676b6369396972610bbe8201527f426d63442f7458616754474358634e68432532424f3539754c706e6673796f71610bde8201527f4c53313238374552776d38666165564f6d3857634437386c5a36594232793938610bfe8201527f5a4c6c4d3972557264324c514e6c324956643454727376675139363079377573610c1e8201527f5965306854506170576a71726c2532425837784665424e54253242315a644a4a610c3e8201527f572532424678745737584e7774634e7a7761672532425256656a6d4a6839656d610c5e8201527f6c495a4b69694e63694b3849554f4d33556a4a376342554e5847505853326c68610c7e8201527f253242687770676f4836567348524f63764569723372585970344c7769435a77610c9e8201527f3176486c43623552314d68623564536e4f326d6e6f475a6f5846315765574757610cbe8201527f6d7a694a314a555534715072306e694a536c4e424331636b4b6d4a6657625877610cde8201527f5577757449547a456d6a776770776142753464525066746a2f4e384143526e64610cfe8201527f616b2f4641674b674c37305058577839767a6b59322532426d34355473496b4c610d1e8201527f3037616f70444e6f676830535262535a534f397a744657516a376e574c676275610d3e8201527f364325324254374b6a44715a3667456e5277674d78306b4c5a77797962514f76610d5e8201527f514130773054782f354a42722f63595a6453574f546a774446364e6f586b796a610d7e8201527f33566a484e4751494e76426a5a734a4a3377466141516d6f5a575a5970416961610d9e8201527f574f466e6e686455524176576b557a77693062677a5a4158796f445545714863610dbe8201527f57307069454c574f777168773365765478444957724e32495371525151454c41610dde8201527f4d32365334486c723548552f48784a43436844424a6b756b6341573856415430610dfe8201527f6770545a544b4e48677a444f7234314751656a4f34677a416e6b577077464752610e1e8201527f43334c625231787a4b434875365635694674674c704f384b51596d5965467868610e3e8201527f4c32643838736469506a2f76306b427a636c51637954735766324d6445394944610e5e8201527f386d5858576a72434b253242354532756e336e6976656973526e726971317548610e7e8201527f594d6a6a69694945304b6466674d6f3163476d6b557254624f30356732737633610e9e8201527f477673525971762f61457736375472644f705435567a4641364131417939634b610ebe8201527f6f44667762544a64445750524e57517354796a6d3772486249734b466b6f4f2f610ede8201527f5a4c4376735966785973337768534338614c49344b765677373773336e347a48610efe8201527f67697061634a6e435362463945727a53357069386343577655597a4f5064327a610f1e8201527f684a2f4750437a53684f453378596c634f3350796164586a54334f6b68706841610f3e8201527f58465853766865544e5355525446565641486f4a6d7949726b6a454b6f517746610f5e8201527f4730303554334158643935764e30446d336d427332786746546c253242513572610f7e8201527f73416a6e744768707a6f62643642374e7a52664e56653130446f4e5639343753610f9e8201527f59646f635252624776636d785456786f61367a717756376d416e773544314745610fbe8201527f5474327a48382532425476514256356e37672f32615768743979794e594c3974610fde8201527f4f42744167384846435945316d4e775432454232467538544968543776565241610ffe8201527f3461587a6e6b3670545a4e6779696f73747749364b654655374c696c7041253261101e8201527f42334234474a794277574d327062466a4876734a3747754f6f616b6a6d46746a61103e8201527f59344c6254396c323239253242453646374c4475577a744c6e333749786b386a61105e8201527f356c42564b33774c7369362f416641756f6a34396c4d6b5653545045396b704761107e8201527f64304c724555534a4941413070596c4178414d642f4e4f46776f4a446458466961109e8201527f307a4f5744422f54464a705666575642574f516274724a556230636c663369256110be8201527f3242575072446f596c65545674564f45306d36793564487444725551776f414c6110de8201527f7455523365585364444d4e785866656a594674764c626c726c4a7777484b2f456110fe8201527f6957504a616b32574b35386e684e6f4c6a615a55475841756f32656f5777464561111e8201527f66612f445334496958717246714779633348726939785132693243352f73357661113e8201527f7a424d30793777334d4473774d3759325247427172464d6778374f696325324261115e8201527f30497a736d5678617a5473305263666a324f3334532f525639503269486f427561117e8201527f6c4b49594244665a46654c53356439725379664a64536c67683268644d72324f61119e8201527f5552334b6e6c506e4f41785477314a384c4d325a776e4671765a745a4a6c78786111be8201527f343873776243743272316b664875443756624831326159383849437456734b786111de8201527f4b742f31726b616c42414d74782f6f6f6d43445059626b556f4c6344624b436a6111fe8201527f7675713953544467746a584744715735564b36686347654f46697a6a3643714c61121e8201527f4f49716b57783477733245504d444e7378253242613661533230384f39784c3061123e8201527f526146586f394241645530706e452532424c695359334b536f4a41525978646e61125e8201527f7a69545a4d706961442f3438496969393834446151357976656378414673735761127e8201527f792f686274696d63253242704c386b35796f70496d4a627948712f6138797a6c61129e8201527f6c37726f4f7a586d786d4163337459585363546b65734d6344324939315a36336112be8201527f6549312f394a627755716b36737863394b52677277574d414e6543314e6e39756112de8201527f4779775473706d5538712532426c5a6d43714d674153363662674841476a514b6112fe8201527f73754a334451416a5235346d356a4c7a5a616e546c62646530253242726e663461131e8201527f385a574138546c32673277414779427748516e3552322532424e6a726542677861133e8201527f626c734e46627554776d6862414a48737a2f72416f61764c4f34317874767a5961135e8201527f4768336e4c4a426b41506a7578424a445248333048426575385567436978464e61137e8201527f437951322f4b253242385157372f6530253242664f2532423436524e5730657961139e8201527f4c726f39446a5467704a4e4d3547385179306c54644f756d73773066715045696113be8201527f393646702532424830634d774e6f376a787a596d6e4e664d5a6d64506c7932706113de8201527f6f7132575065476d67507136474c78504e34536c4b486e7870624f69754c58516113fe8201527f75583155715031676a6f38426136536c55314f416d5267707a7531735444584a61141e8201527f50754d3338546f387130344c324e777970653837327777556741675a6c70386461143e8201527f6b5166397a38544d43624d6b596b3758484375333564375a5a41656f346b5a4b61145e8201527f68784953386945354c546a334c4f6976485a7268394a3870337a4c5a436a776361147e8201527f6970354452694b6e576e49664c33386b4a684d7452776a67553525324256726d61149e8201527f714b6c6739307a376a64732f4238444b646b464c76483353253242376f4838616114be8201527f6c445a6c626734533155583574434d445342324f364b756c7a41344b763067376114de8201527f314251643054464b7733685358696e62374e6c304258725873514e6376436b386114fe8201527f6d6f394f786965783559627a78564e2f6b3738336f48545a495777393079495a61151e8201527f777672697164475473586e54384965705437597946434f4a6741395a3042794961153e8201527f455956735478522f6b73616b324268376f4b767034766e695530364d57317a4261155e8201527f4672746568647a306b6b587951786a426d7965645636644d596545386146787461157e8201527f6575777355466136466c6c54446c716430707a525a77473663467266574d627061159e8201527f384738587a6a66624d253242354658657076356f457273696c363458783663376115be8201527f5841576275696d3666387347494d58666f334a6971476b703333376854536a676115de8201527f65636862364f42472f327a31376a6f6d4469476d253242476c623146553069656115fe8201527f6e7552796977654c576767447a6d4655765545556a5a6f377356544877684f4661161e8201527f504d6b4e737146423977796d6b45307639666d7477453854377135384e594f3761163e8201527f787534623833766e46766c35755378446c472532426b4f51675249644f346a6761165e8201527f7a786a53486a4b4c7332742f6c684f647771766131415744437072763344345361167e8201527f34523741625934544362664b4637744265363554343551347a7a49714433316161169e8201527f79797557716a692532424636585337535439483943314f342f694b366b4775766116be8201527f6b512f664e3537487837456533373435622f76766e2f62482f58253242392f256116de8201527f32426762656d684f416d49705576755157757344764b517578394a44564e734b6116fe8201527f673651636d6b73515341445530346347524c523768466f5a326337785545664761171e8201527f253242776b755459474d764c6a422f6550634936416847686e5735717a45416961173e8201527f4a586377564545775869654e70536c317a6a457253253242435325324248634c61175e8201527f6f52506d7661324d6767412f69794c67536f544a555767733442794149514f3061177e8201527f4f6f705a487656627a6844494c65557155677a7a48492f667950474e7879777361179e8201527f6f796c6865534639577662795363336b4544716b32415636436c4364635535536117be8201527f6e6c4e6e4963394b794d63384c79622532423867484f4a795173466c4c6250526117de8201527f796d6d374a42743349545a544162314732444252496b514b51705451396939626117fe8201527f3665435353387a4d366161525364544b5657524d336663454a4c644b61746e7361181e8201527f724959774e4a55253242733048364461757832775a35686733706c653042474861183e8201527f756b316b4543734859446461496d4b7025324233463542317859763763486b7161185e8201527f644475306a4b645273657a3531376d63563641685148346931484e3173766c6a61187e8201527f5248366845454672682532426e72726d47316e33307a4d346749776d694d774561189e8201527f624b6842545564423141486f582532424b6741517a4f48543946494f71436b526118be8201527f4e4e623273397170496943534f753167576868497343564a73765771457175356118de8201527f47624a514b4e6a61427465394c4f69676368414a7665475773394332323033766118fe8201527f6f6e476c6b77725251323464646732796345646157554456734441785548734961191e8201527f77773665615234464665336d4a416b66426d5a6452395264774a485a6d47645261193e8201527f7950436a706a627a31712f584a34534949446b66384b4b6e6e32456c4b6d794c61195e8201527f69573442513836733151554b2f76426867524e776548766c5968687a7238706361197e8201527f67704b4b6d6f61576a7036426b594f48446c7835734b5647336365474539657661199e8201527f506e773563646667454242676f554946536238587632504553314772446a78456119be8201527f69524b6b697846716a54704d6d544b6b693148726a7a354368517155717845716119de8201527f544c6c4b6c53715571314772547231476a527130717846717a62744f6e5347656119fe8201527f3668374a6d627a4968355a6544696c315a58536a7430774375616b336c6e476f611a1e8201527f5655506f53734e663337394b326a6274716d44674d69485a42665a6c68324839611a3e8201527f75773738495469314a466a585653662f4336634f55667a346f30644178305447611a5e8201527f777448446863666a3443516d49694531444d5a42546b6c4e5a557065566f614f611a7e8201527f6e717633733234314e50503965766574594768435a50576a4979747332706173611a9e8201527f436a25324270556a54596c336b615574374f744b4a6136355850396d356e6367611abe8201527f364e686a685a587032762532426d57724341545a754a303368316b6a55756976611ade8201527f5067596e6a6e35744b4a4f6b326e6362703251414559585a69304b496d50356b611afe8201527f744961466e366b5a397743253237253239253230666f726d6174253238253237611b1e8201527f776f666632253237253239253342666f6e742d7765696768742533412532306e611b3e8201527f6f726d616c253342666f6e742d7374796c652533412532306e6f726d616c2533611b5e8201527f42666f6e742d646973706c617925334125323073776170253342253744746578611b7e8201527f74253230253742666f6e742d66616d696c792533412532302532375072657373611b9e8201527f2532305374617274253230325025323725334266696c6c253341253230776869611bbe8201527f74652537442e76616c7565253230253742666f6e742d73697a65253341253230611bde8201527f313070782533422537442e6e616d65253230253742666f6e742d73697a652533611bfe8201527f412532303470782533422537442533432f7374796c652533452533432f646566611c1e8201527f7325334525334372656374253230776964746825334425323738392532372532611c3e8201527f30686569676874253344253237353525323725323066696c6c25334425323762611c5e8201527f6c61636b2532372532302f253345253343726563742532307825334425323735611c7e8201527f2e3525323725323079253344253237352e352532372532307769647468253344611c9e8201527f2532373738253237253230686569676874253344253237343425323725323066611cbe8201527f696c6c2533442532372532333030303046462532372532302f25334525334374611cde8201527f657874253230746578742d616e63686f722533442532376d6964646c65253237611cfe8201527f2532307825334425323734342e35253237253230792533442532373333253237611d1e8201527f253230636c61737325334425323776616c756525323725334500000000000000611d3e820152612ba5612b9e6129f5611d5784018a61055b565b7f2533432f746578742533452533437265637425323078253344253237352e352581527f323725323079253344253237352e35253237253230776964746825334425323760208201527f373825323725323068656967687425334425323734342532372532307374726f60408201527f6b652533442532372532334646344630412532372532307374726f6b652d776960608201527f647468253344253237332532372532302f25334525334372656374253230782560808201527f334425323733302532372532307925334425323734352e35253237253230776960a08201527f647468253344253237353825323725323068656967687425334425323738253260c08201527f3725323066696c6c2533442532372532334646344630412532372532302f253360e08201527f4525334374657874253230746578742d616e63686f72253344253237656e64256101008201527f32372532307825334425323738372532372532307925334425323735322532376101208201527f253230636c6173732533442532376e616d6525323725334500000000000000006101408201526101580190565b86886105e3565b602160f81b81529050612bbb600182018561055b565b7f2533432f746578742533452533432f737667253345227d00000000000000000081526017019a995050505050505050505056fea2646970667358221220f64400964cf21cb4940de76482b5ee6f22f9e46a781e948eea81a1999aa43eb964736f6c63430008150033", + "nonce": "0xc", + "accessList": [] + }, + "additionalContracts": [], + "isFixedGasLimit": false + }, + { + "hash": "0xf4c4c7435a43558854777dae6925ffaacff07e98361c18d7d8c8a46fc980a054", + "transactionType": "CREATE", + "contractName": null, + "contractAddress": "0x0DCd1Bf9A1b36cE34237eEaFef220932846BCD82", + "function": null, + "arguments": null, + "transaction": { + "type": "0x02", + "from": "0xf39fd6e51aad88f6f4ce6ab8827279cfffb92266", + "gas": "0x42230", + "value": "0x0", + "data": "0x608060405234801561001057600080fd5b506102cf806100206000396000f3fe608060405234801561001057600080fd5b506004361061004c5760003560e01c80630194db8e14610051578063072bdcc214610076578063a391c15b14610089578063b67d77c51461009c575b600080fd5b61006461005f366004610160565b6100af565b60405190815260200160405180910390f35b610064610084366004610160565b6100ef565b61006461009736600461021e565b610129565b6100646100aa36600461021e565b61013e565b600080805b83518110156100e8578381815181106100cf576100cf610240565b60200260200101518201915080806001019150506100b4565b5092915050565b60006001815b83518110156100e85783818151811061011057610110610240565b60200260200101518202915080806001019150506100f5565b60006101358284610256565b90505b92915050565b60006101358284610278565b634e487b7160e01b600052604160045260246000fd5b6000602080838503121561017357600080fd5b823567ffffffffffffffff8082111561018b57600080fd5b818501915085601f83011261019f57600080fd5b8135818111156101b1576101b161014a565b8060051b604051601f19603f830116810181811085821117156101d6576101d661014a565b6040529182528482019250838101850191888311156101f457600080fd5b938501935b82851015610212578435845293850193928501926101f9565b98975050505050505050565b6000806040838503121561023157600080fd5b50508035926020909101359150565b634e487b7160e01b600052603260045260246000fd5b60008261027357634e487b7160e01b600052601260045260246000fd5b500490565b8181038181111561013857634e487b7160e01b600052601160045260246000fdfea2646970667358221220d31583983189259cb60ccec801ca1ed218051d27add344c207dbb437b07d39c864736f6c63430008150033", + "nonce": "0xd", + "accessList": [] + }, + "additionalContracts": [], + "isFixedGasLimit": false + }, + { + "hash": "0x5259de075e9d61134df6d1ec720921843d6e263d0aa533655356577702cdace7", + "transactionType": "CREATE", + "contractName": "Evmsheet", + "contractAddress": "0x9A676e781A523b5d0C0e43731313A708CB607508", + "function": null, + "arguments": [ + "0xA51c1fc2f0D1a1b8494Ed1FE312d7C3a78Ed91C0", + "10000000000000000" + ], + "transaction": { + "type": "0x02", + "from": "0xf39fd6e51aad88f6f4ce6ab8827279cfffb92266", + "gas": "0x359c55", + "value": "0x0", + "data": "0x608060405234801561001057600080fd5b50604051612fa3380380612fa383398101604081905261002f916100b1565b61003833610061565b600280546001600160a01b0319166001600160a01b0393909316929092179091556001556100eb565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b600080604083850312156100c457600080fd5b82516001600160a01b03811681146100db57600080fd5b6020939093015192949293505050565b612ea9806100fa6000396000f3fe608060405260043610620000b95760003560e01c80638da5cb5b116200006c5780638da5cb5b146200019d578063ab2fa65a14620001bd578063ae28505e14620001e4578063c56c4cf11462000209578063f2fde38b146200022b578063f52be2a2146200025057600080fd5b806303fb31e814620000c65780631164c83d14620000ed578063145e414714620001045780633ccfd60b14620001465780635787cacb146200015e578063715018a6146200018557600080fd5b36620000c157005b600080fd5b348015620000d357600080fd5b50620000eb620000e536600462000842565b62000277565b005b620000eb620000fe366004620008b3565b620002a3565b3480156200011157600080fd5b5062000129620001233660046200092e565b620004e2565b6040516001600160a01b0390911681526020015b60405180910390f35b3480156200015357600080fd5b50620000eb6200057f565b3480156200016b57600080fd5b50620001766200061c565b6040516200013d91906200095b565b3480156200019257600080fd5b50620000eb62000680565b348015620001aa57600080fd5b506000546001600160a01b031662000129565b348015620001ca57600080fd5b50620001d562000698565b6040516200013d9190620009aa565b348015620001f157600080fd5b506200012962000203366004620009fa565b620006c4565b3480156200021657600080fd5b5060025462000129906001600160a01b031681565b3480156200023857600080fd5b50620000eb6200024a36600462000842565b620006ef565b3480156200025d57600080fd5b506200026860015481565b6040519081526020016200013d565b620002816200076b565b600280546001600160a01b0319166001600160a01b0392909216919091179055565b6001543414620002cd5760405163723a79e360e11b81523460048201526024015b60405180910390fd5b600060405180602001620002e19062000817565b6020820181038252601f19601f8201166040525090506000828251602084016000f56002546040516356d3163d60e01b81526001600160a01b0391821660048201529192508216906356d3163d90602401600060405180830381600087803b1580156200034d57600080fd5b505af115801562000362573d6000803e3d6000fd5b505060405163c47f002760e01b81526001600160a01b038416925063c47f0027915062000396908a908a9060040162000a14565b600060405180830381600087803b158015620003b157600080fd5b505af1158015620003c6573d6000803e3d6000fd5b5050604051635c26412360e11b81526001600160a01b038416925063b84c82469150620003fa908890889060040162000a14565b600060405180830381600087803b1580156200041557600080fd5b505af11580156200042a573d6000803e3d6000fd5b505060405163f2fde38b60e01b81523260048201526001600160a01b038416925063f2fde38b9150602401600060405180830381600087803b1580156200047057600080fd5b505af115801562000485573d6000803e3d6000fd5b5050600380546001810182556000919091527fc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b0180546001600160a01b0319166001600160a01b0394909416939093179092555050505050505050565b600060ff60f81b838360405180602001620004fd9062000817565b6020820181038252601f19601f82011660405250805190602001206040516020016200056094939291906001600160f81b031994909416845260609290921b6bffffffffffffffffffffffff191660018401526015830152603582015260550190565b60408051601f1981840301815291905280516020909101209392505050565b620005896200076b565b604051600090339047908381818185875af1925050503d8060008114620005cd576040519150601f19603f3d011682016040523d82523d6000602084013e620005d2565b606091505b5050905080620006195760405162461bcd60e51b815260206004820152601160248201527015da5d1a191c985dd85b0819985a5b1959607a1b6044820152606401620002c4565b50565b606060038054806020026020016040519081016040528092919081815260200182805480156200067657602002820191906000526020600020905b81546001600160a01b0316815260019091019060200180831162000657575b5050505050905090565b6200068a6200076b565b620006966000620007c7565b565b606060405180602001620006ac9062000817565b601f1982820381018352601f90910116604052919050565b60038181548110620006d557600080fd5b6000918252602090912001546001600160a01b0316905081565b620006f96200076b565b6001600160a01b038116620007605760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401620002c4565b6200061981620007c7565b6000546001600160a01b03163314620006965760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401620002c4565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b6124308062000a4483390190565b80356001600160a01b03811681146200083d57600080fd5b919050565b6000602082840312156200085557600080fd5b620008608262000825565b9392505050565b60008083601f8401126200087a57600080fd5b50813567ffffffffffffffff8111156200089357600080fd5b602083019150836020828501011115620008ac57600080fd5b9250929050565b600080600080600060608688031215620008cc57600080fd5b853567ffffffffffffffff80821115620008e557600080fd5b620008f389838a0162000867565b909750955060208801359150808211156200090d57600080fd5b506200091c8882890162000867565b96999598509660400135949350505050565b600080604083850312156200094257600080fd5b6200094d8362000825565b946020939093013593505050565b6020808252825182820181905260009190848201906040850190845b818110156200099e5783516001600160a01b03168352928401929184019160010162000977565b50909695505050505050565b600060208083528351808285015260005b81811015620009d957858101830151858201604001528201620009bb565b506000604082860101526040601f19601f8301168501019250505092915050565b60006020828403121562000a0d57600080fd5b5035919050565b60208152816020820152818360408301376000818301604090810191909152601f909201601f1916010191905056fe60806040523480156200001157600080fd5b50604051806040016040528060078152602001660536865657420360cc1b815250604051806040016040528060048152602001630534854360e41b81525062000069620000636200008f60201b60201c565b62000093565b600162000077838262000188565b50600262000086828262000188565b50505062000254565b3390565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b634e487b7160e01b600052604160045260246000fd5b600181811c908216806200010e57607f821691505b6020821081036200012f57634e487b7160e01b600052602260045260246000fd5b50919050565b601f8211156200018357600081815260208120601f850160051c810160208610156200015e5750805b601f850160051c820191505b818110156200017f578281556001016200016a565b5050505b505050565b81516001600160401b03811115620001a457620001a4620000e3565b620001bc81620001b58454620000f9565b8462000135565b602080601f831160018114620001f45760008415620001db5750858301515b600019600386901b1c1916600185901b1785556200017f565b600085815260208120601f198616915b82811015620002255788860151825594840194600190910190840162000204565b5085821015620002445787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b6121cc80620002646000396000f3fe608060405234801561001057600080fd5b50600436106102275760003560e01c8063715018a611610130578063b85d8b85116100b8578063cf0983981161007c578063cf09839814610512578063cfbe95d814610535578063df4ca20614610556578063e985e9c514610576578063f2fde38b146105a457600080fd5b8063b85d8b85146104a4578063b88d4fde146104ce578063b8c368ec146104e1578063c47f0027146104ec578063c87b56dd146104ff57600080fd5b806395d89b41116100ff57806395d89b4114610439578063a22cb46514610441578063b46ebb1214610454578063b6d658e114610467578063b84c82461461049157600080fd5b8063715018a6146103fa578063768d5029146104025780638ada6b0f146104155780638da5cb5b1461042857600080fd5b80631b06443c116101b35780634f6ccce7116101825780634f6ccce71461038157806356d3163d146103a15780636352211e146103b45780636a0abc74146103c757806370a08231146103e757600080fd5b80631b06443c14610335578063206848f61461034857806323b872dd1461035b57806342842e0e1461036e57600080fd5b8063081812fc116101fa578063081812fc146102a1578063095ea7b3146102e2578063172b9eed146102f757806318160ddd1461030a5780631941fd141461031357600080fd5b806301ffc9a71461022c57806302f3c4c91461025457806306fdde03146102745780630715a24a1461027c575b600080fd5b61023f61023a36600461176a565b6105b7565b60405190151581526020015b60405180910390f35b610267610262366004611861565b610609565b60405161024b9190611951565b610267610638565b6102936fffffffffffffffffffffffffffffffff81565b60405190815260200161024b565b6102ca6102af366004611964565b6005602052600090815260409020546001600160a01b031681565b6040516001600160a01b03909116815260200161024b565b6102f56102f036600461197d565b6106c6565b005b6102676103053660046119a9565b6107ad565b61029360075481565b610326610321366004611964565b610875565b60405161024b939291906119de565b6102ca610343366004611a0e565b61092a565b610326610356366004611964565b6109e3565b6102f5610369366004611a2b565b610ae1565b6102f561037c366004611a2b565b610ca8565b61029361038f366004611964565b60086020526000908152604090205481565b6102f56103af366004611a0e565b610da0565b6102ca6103c2366004611964565b610dca565b6103da6103d53660046119a9565b610e1c565b60405161024b9190611a6c565b6102936103f5366004611a0e565b610e60565b6102f5610ec3565b6102f5610410366004611af9565b610ed7565b6009546102ca906001600160a01b031681565b6000546001600160a01b03166102ca565b610267611035565b6102f561044f366004611b63565b611042565b610267610462366004611964565b6110ae565b61047a610475366004611964565b611258565b60408051921515835260208301919091520161024b565b6102f561049f366004611ba1565b611275565b6104b56104b2366004611964565b90565b6040516001600160e01b0319909116815260200161024b565b6102f56104dc366004611be3565b6112c6565b6102ca600160801b81565b6102f56104fa366004611ba1565b6113ae565b61026761050d366004611964565b6113ff565b61023f610520366004611a0e565b600160801b6001600160a01b03919091161090565b61023f610543366004611861565b516001600160a01b0316600160801b1490565b610569610564366004611964565b6114c9565b60405161024b9190611c16565b61023f610584366004611c4d565b600660209081526000928352604080842090915290825290205460ff1681565b6102f56105b2366004611a0e565b611526565b60006301ffc9a760e01b6001600160e01b0319831614806105e857506380ac58cd60e01b6001600160e01b03198316145b806106035750635b5e139f60e01b6001600160e01b03198316145b92915050565b6060816020015160405160200161062291815260200190565b6040516020818303038152906040529050919050565b6001805461064590611c7b565b80601f016020809104026020016040519081016040528092919081815260200182805461067190611c7b565b80156106be5780601f10610693576101008083540402835291602001916106be565b820191906000526020600020905b8154815290600101906020018083116106a157829003601f168201915b505050505081565b6000818152600360205260409020546001600160a01b03163381148061070f57506001600160a01b038116600090815260066020908152604080832033845290915290205460ff165b6107515760405162461bcd60e51b815260206004820152600e60248201526d1393d517d055551213d49256915160921b60448201526064015b60405180910390fd5b60008281526005602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b606060006107ba83610e1c565b9050606060005b825181101561086d576000806107ef8584815181106107e2576107e2611cb5565b6020026020010151611258565b9150915081156108335783610803826110ae565b61080c90611ccb565b60405160200161081d929190611cef565b6040516020818303038152906040529350610858565b6040516108469085908390602001611cef565b60405160208183030381529060405293505b5050808061086590611d27565b9150506107c1565b509392505050565b600a602052600090815260409020805460018201546002830180546001600160a01b039093169391926108a790611c7b565b80601f01602080910402602001604051908101604052809291908181526020018280546108d390611c7b565b80156109205780601f106108f557610100808354040283529160200191610920565b820191906000526020600020905b81548152906001019060200180831161090357829003601f168201915b5050505050905083565b6000600160801b6001600160a01b03831610156109da576000610955836001600160a01b03166110ae565b604051632d737e4960e21b815290915073610178da211fef7d417bc0e6fed39f05609ad7889063b5cdf92490610992908490600090600401611d40565b602060405180830381865af41580156109af573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906109d39190611d62565b9392505050565b5090565b919050565b60008181526003602052604081205481906060906001600160a01b0316610a1057600160801b9250610a2b565b6000848152600a60205260409020546001600160a01b031692505b6000848152600a60205260409020600181015460029091018054859291908190610a5490611c7b565b80601f0160208091040260200160405190810160405280929190818152602001828054610a8090611c7b565b8015610acd5780601f10610aa257610100808354040283529160200191610acd565b820191906000526020600020905b815481529060010190602001808311610ab057829003601f168201915b505050505090509250925092509193909250565b6000818152600360205260409020546001600160a01b03848116911614610b375760405162461bcd60e51b815260206004820152600a60248201526957524f4e475f46524f4d60b01b6044820152606401610748565b6001600160a01b038216610b815760405162461bcd60e51b81526020600482015260116024820152701253959053125117d49150d25412515395607a1b6044820152606401610748565b336001600160a01b0384161480610bbb57506001600160a01b038316600090815260066020908152604080832033845290915290205460ff165b80610bdc57506000818152600560205260409020546001600160a01b031633145b610c195760405162461bcd60e51b815260206004820152600e60248201526d1393d517d055551213d49256915160921b6044820152606401610748565b6001600160a01b0380841660008181526004602090815260408083208054600019019055938616808352848320805460010190558583526003825284832080546001600160a01b03199081168317909155600590925284832080549092169091559251849392917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b610cb3838383610ae1565b6001600160a01b0382163b1580610d5c5750604051630a85bd0160e11b8082523360048301526001600160a01b03858116602484015260448301849052608060648401526000608484015290919084169063150b7a029060a4016020604051808303816000875af1158015610d2c573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610d509190611d7b565b6001600160e01b031916145b610d9b5760405162461bcd60e51b815260206004820152601060248201526f155394d0519157d49150d2541251539560821b6044820152606401610748565b505050565b610da861159f565b600980546001600160a01b0319166001600160a01b0392909216919091179055565b6000818152600360205260409020546001600160a01b0316806109de5760405162461bcd60e51b815260206004820152600a6024820152691393d517d3525395115160b21b6044820152606401610748565b60608082516040519150602081048252602082016020850160005b83811015610e4f578181015183820152602001610e37565b505050810160200160405292915050565b60006001600160a01b038216610ea75760405162461bcd60e51b815260206004820152600c60248201526b5a45524f5f4144445245535360a01b6044820152606401610748565b506001600160a01b031660009081526004602052604090205490565b610ecb61159f565b610ed560006115f9565b565b6000858152600360205260409020546001600160a01b0316610f2f57610efd3286611649565b60078054600090815260086020526040812087905581546001929190610f24908490611d98565b90915550610f889050565b6000858152600360205260409020546001600160a01b03163214610f8857600085815260036020526040908190205490516324f3f02560e21b81526001600160a01b039091166004820152326024820152604401610748565b6040518060600160405280856001600160a01b0316815260200184815260200183838080601f0160208091040260200160405190810160405280939291908181526020018383808284376000920182905250939094525050878152600a6020908152604091829020845181546001600160a01b0319166001600160a01b0390911617815590840151600182015590830151909150600282019061102b9082611df9565b5050505050505050565b6002805461064590611c7b565b3360008181526006602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b6000818152600a6020908152604080832081516060818101845282546001600160a01b0316825260018301549482019490945260028201805494959491938401916110f890611c7b565b80601f016020809104026020016040519081016040528092919081815260200182805461112490611c7b565b80156111715780601f1061114657610100808354040283529160200191611171565b820191906000526020600020905b81548152906001019060200180831161115457829003601f168201915b505050505081525050905061119381516001600160a01b0316600160801b1490565b156111a1576109d381610609565b60006111b0826000015161092a565b905060006111bf836020015190565b905060006111d084604001516107ad565b90506000836001600160a01b031683836040516020016111f1929190611eb9565b60408051601f198184030181529082905261120b91611eea565b600060405180830381855afa9150503d8060008114611246576040519150601f19603f3d011682016040523d82523d6000602084013e61124b565b606091505b5098975050505050505050565b600080611266600284611f06565b60019081149493901c92915050565b61127d61159f565b7f8dca0271872d00b3de3abafca544c52fcd7d512dd852c9894fa2c118ac759a93600283836040516112b193929190611fce565b60405180910390a16002610d9b828483611ffe565b6112d1858585610ae1565b6001600160a01b0384163b15806113685750604051630a85bd0160e11b808252906001600160a01b0386169063150b7a02906113199033908a908990899089906004016120be565b6020604051808303816000875af1158015611338573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061135c9190611d7b565b6001600160e01b031916145b6113a75760405162461bcd60e51b815260206004820152601060248201526f155394d0519157d49150d2541251539560821b6044820152606401610748565b5050505050565b6113b661159f565b7fb65b7b5ea384affd30f77f842e057d29dd1b13f133adf69a724a8105b164ab75600183836040516113ea93929190611fce565b60405180910390a16001610d9b828483611ffe565b6000818152600360205260409020546060906001600160a01b03168061143b57604051630243d1a960e21b815260048101849052602401610748565b6000611446846110ae565b6009546040516328de0f2f60e01b81529192506001600160a01b0316906328de0f2f9061147c90879085906001906004016120fd565b600060405180830381865afa158015611499573d6000803e3d6000fd5b505050506040513d6000823e601f3d908101601f191682016040526114c19190810190612128565b949350505050565b604080516060808201835260008083526020830181905292820152906114ee836110ae565b6040805160608101825285815260009586526003602090815295829020546001600160a01b0316958101959095528401525090919050565b61152e61159f565b6001600160a01b0381166115935760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610748565b61159c816115f9565b50565b6000546001600160a01b03163314610ed55760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610748565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b6001600160a01b0382166116935760405162461bcd60e51b81526020600482015260116024820152701253959053125117d49150d25412515395607a1b6044820152606401610748565b6000818152600360205260409020546001600160a01b0316156116e95760405162461bcd60e51b815260206004820152600e60248201526d1053149150511657d3525395115160921b6044820152606401610748565b6001600160a01b038216600081815260046020908152604080832080546001019055848352600390915280822080546001600160a01b0319168417905551839291907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b6001600160e01b03198116811461159c57600080fd5b60006020828403121561177c57600080fd5b81356109d381611754565b634e487b7160e01b600052604160045260246000fd5b604051601f8201601f1916810167ffffffffffffffff811182821017156117c6576117c6611787565b604052919050565b6001600160a01b038116811461159c57600080fd5b600067ffffffffffffffff8211156117fd576117fd611787565b50601f01601f191660200190565b600082601f83011261181c57600080fd5b813561182f61182a826117e3565b61179d565b81815284602083860101111561184457600080fd5b816020850160208301376000918101602001919091529392505050565b60006020828403121561187357600080fd5b813567ffffffffffffffff8082111561188b57600080fd5b908301906060828603121561189f57600080fd5b6040516060810181811083821117156118ba576118ba611787565b60405282356118c8816117ce565b8152602083810135908201526040830135828111156118e657600080fd5b6118f28782860161180b565b60408301525095945050505050565b60005b8381101561191c578181015183820152602001611904565b50506000910152565b6000815180845261193d816020860160208601611901565b601f01601f19169290920160200192915050565b6020815260006109d36020830184611925565b60006020828403121561197657600080fd5b5035919050565b6000806040838503121561199057600080fd5b823561199b816117ce565b946020939093013593505050565b6000602082840312156119bb57600080fd5b813567ffffffffffffffff8111156119d257600080fd5b6114c18482850161180b565b60018060a01b0384168152826020820152606060408201526000611a056060830184611925565b95945050505050565b600060208284031215611a2057600080fd5b81356109d3816117ce565b600080600060608486031215611a4057600080fd5b8335611a4b816117ce565b92506020840135611a5b816117ce565b929592945050506040919091013590565b6020808252825182820181905260009190848201906040850190845b81811015611aa457835183529284019291840191600101611a88565b50909695505050505050565b60008083601f840112611ac257600080fd5b50813567ffffffffffffffff811115611ada57600080fd5b602083019150836020828501011115611af257600080fd5b9250929050565b600080600080600060808688031215611b1157600080fd5b853594506020860135611b23816117ce565b935060408601359250606086013567ffffffffffffffff811115611b4657600080fd5b611b5288828901611ab0565b969995985093965092949392505050565b60008060408385031215611b7657600080fd5b8235611b81816117ce565b915060208301358015158114611b9657600080fd5b809150509250929050565b60008060208385031215611bb457600080fd5b823567ffffffffffffffff811115611bcb57600080fd5b611bd785828601611ab0565b90969095509350505050565b600080600080600060808688031215611bfb57600080fd5b8535611c06816117ce565b94506020860135611b23816117ce565b602081528151602082015260018060a01b036020830151166040820152600060408301516060808401526114c16080840182611925565b60008060408385031215611c6057600080fd5b8235611c6b816117ce565b91506020830135611b96816117ce565b600181811c90821680611c8f57607f821691505b602082108103611caf57634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052603260045260246000fd5b80516020808301519190811015611caf5760001960209190910360031b1b16919050565b60008351611d01818460208801611901565b9190910191825250602001919050565b634e487b7160e01b600052601160045260246000fd5b600060018201611d3957611d39611d11565b5060010190565b604081526000611d536040830185611925565b90508260208301529392505050565b600060208284031215611d7457600080fd5b5051919050565b600060208284031215611d8d57600080fd5b81516109d381611754565b8082018082111561060357610603611d11565b601f821115610d9b57600081815260208120601f850160051c81016020861015611dd25750805b601f850160051c820191505b81811015611df157828155600101611dde565b505050505050565b815167ffffffffffffffff811115611e1357611e13611787565b611e2781611e218454611c7b565b84611dab565b602080601f831160018114611e5c5760008415611e445750858301515b600019600386901b1c1916600185901b178555611df1565b600085815260208120601f198616915b82811015611e8b57888601518255948401946001909101908401611e6c565b5085821015611ea95787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b6001600160e01b0319831681528151600090611edc816004850160208701611901565b919091016004019392505050565b60008251611efc818460208701611901565b9190910192915050565b600082611f2357634e487b7160e01b600052601260045260246000fd5b500690565b60008154611f3581611c7b565b808552602060018381168015611f525760018114611f6c57611f9a565b60ff1985168884015283151560051b880183019550611f9a565b866000528260002060005b85811015611f925781548a8201860152908301908401611f77565b890184019650505b505050505092915050565b81835281816020850137506000828201602090810191909152601f909101601f19169091010190565b604081526000611fe16040830186611f28565b8281036020840152611ff4818587611fa5565b9695505050505050565b67ffffffffffffffff83111561201657612016611787565b61202a836120248354611c7b565b83611dab565b6000601f84116001811461205e57600085156120465750838201355b600019600387901b1c1916600186901b1783556113a7565b600083815260209020601f19861690835b8281101561208f578685013582556020948501946001909201910161206f565b50868210156120ac5760001960f88860031b161c19848701351681555b505060018560011b0183555050505050565b6001600160a01b03868116825285166020820152604081018490526080606082018190526000906120f29083018486611fa5565b979650505050505050565b8381526060602082015260006121166060830185611925565b8281036040840152611ff48185611f28565b60006020828403121561213a57600080fd5b815167ffffffffffffffff81111561215157600080fd5b8201601f8101841361216257600080fd5b805161217061182a826117e3565b81815285602083850101111561218557600080fd5b611a0582602083016020860161190156fea2646970667358221220f213b9045b40918ed2b5d304162ec2dfc3bc6b581b97362b423df61fd1436e5c64736f6c63430008150033a264697066735822122016636ee300fab238f4f099f32ba33a2f9dd9cbd27246df211a2a76dcc4263a7a64736f6c63430008150033000000000000000000000000a51c1fc2f0d1a1b8494ed1fe312d7c3a78ed91c0000000000000000000000000000000000000000000000000002386f26fc10000", + "nonce": "0xe", + "accessList": [] + }, + "additionalContracts": [], + "isFixedGasLimit": false + } + ], + "receipts": [ + { + "transactionHash": "0xa7ea2b9ad37fcbf9348b47a55fee32f9fb55e3894115559c2a7613ba0445fd8a", + "transactionIndex": "0x0", + "blockHash": "0xab099680405ecde41df5e37924b8575a794d4bbc7f7de3414aa6796ada21fb76", + "blockNumber": "0x7", + "from": "0xf39Fd6e51aad88F6F4ce6aB8827279cffFb92266", + "to": null, + "cumulativeGasUsed": "0xf071f", + "gasUsed": "0xf071f", + "contractAddress": "0x610178dA211FEF7D417bC0e6FeD39F05609AD788", + "logs": [], + "status": "0x1", + "logsBloom": "0x00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", + "type": "0x2", + "effectiveGasPrice": "0xd10fcf8f" + }, + { + "transactionHash": "0x93eb4924f3d8f74e1174d9f7b0bfb89d46ddf555a1a6a3f1aa562f8d0c252ee4", + "transactionIndex": "0x0", + "blockHash": "0x738c356f293a5b24a83e454ccd407e24c842c08b582b94955dd11aab2d7b6316", + "blockNumber": "0x8", + "from": "0xf39Fd6e51aad88F6F4ce6aB8827279cffFb92266", + "to": null, + "cumulativeGasUsed": "0x23aa9", + "gasUsed": "0x23aa9", + "contractAddress": "0xB7f8BC63BbcaD18155201308C8f3540b07f84F5e", + "logs": [], + "status": "0x1", + "logsBloom": "0x00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", + "type": "0x2", + "effectiveGasPrice": "0xcd876ea9" + }, + { + "transactionHash": "0x79dabf2358c12572591c512a1e749b17846500c76740c43d40c2af50e6b3ad91", + "transactionIndex": "0x0", + "blockHash": "0x547d5070b2dcdf187494a2615197ee4d79f5e0d1d1ff3f091ad95be81e85d58c", + "blockNumber": "0x9", + "from": "0xf39Fd6e51aad88F6F4ce6aB8827279cffFb92266", + "to": null, + "cumulativeGasUsed": "0x2616fd", + "gasUsed": "0x2616fd", + "contractAddress": "0xA51c1fc2f0D1a1b8494Ed1FE312d7C3a78Ed91C0", + "logs": [], + "status": "0x1", + "logsBloom": "0x00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", + "type": "0x2", + "effectiveGasPrice": "0xca38e005" + }, + { + "transactionHash": "0xf4c4c7435a43558854777dae6925ffaacff07e98361c18d7d8c8a46fc980a054", + "transactionIndex": "0x1", + "blockHash": "0x547d5070b2dcdf187494a2615197ee4d79f5e0d1d1ff3f091ad95be81e85d58c", + "blockNumber": "0x9", + "from": "0xf39Fd6e51aad88F6F4ce6aB8827279cffFb92266", + "to": null, + "cumulativeGasUsed": "0x29452b", + "gasUsed": "0x32e2e", + "contractAddress": "0x0DCd1Bf9A1b36cE34237eEaFef220932846BCD82", + "logs": [], + "status": "0x1", + "logsBloom": "0x00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", + "type": "0x2", + "effectiveGasPrice": "0xca38e005" + }, + { + "transactionHash": "0x5259de075e9d61134df6d1ec720921843d6e263d0aa533655356577702cdace7", + "transactionIndex": "0x2", + "blockHash": "0x547d5070b2dcdf187494a2615197ee4d79f5e0d1d1ff3f091ad95be81e85d58c", + "blockNumber": "0x9", + "from": "0xf39Fd6e51aad88F6F4ce6aB8827279cffFb92266", + "to": null, + "cumulativeGasUsed": "0x528559", + "gasUsed": "0x29402e", + "contractAddress": "0x9A676e781A523b5d0C0e43731313A708CB607508", + "logs": [ + { + "address": "0x9A676e781A523b5d0C0e43731313A708CB607508", + "topics": [ + "0x8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0", + "0x0000000000000000000000000000000000000000000000000000000000000000", + "0x000000000000000000000000f39fd6e51aad88f6f4ce6ab8827279cfffb92266" + ], + "data": "0x", + "blockHash": "0x547d5070b2dcdf187494a2615197ee4d79f5e0d1d1ff3f091ad95be81e85d58c", + "blockNumber": "0x9", + "transactionHash": "0x5259de075e9d61134df6d1ec720921843d6e263d0aa533655356577702cdace7", + "transactionIndex": "0x2", + "logIndex": "0x2", + "transactionLogIndex": "0x0", + "removed": false + } + ], + "status": "0x1", + "logsBloom": "0x00000000000080000000000000000000000000000000000000800000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000020000000000000100000800000000000000000000000000000000400000000000000000000000000000000000000000000000000000000000000000000000000000000000000000800000000000000000000000000000000000000000000000000000200000000000000000000000002000000000000000000020000000000000000000000000000000000000000000000000000000000000000000", + "type": "0x2", + "effectiveGasPrice": "0xca38e005" + } + ], + "libraries": [ + "lib/eth-projects-monorepo/packages/eth-projects-contracts/contracts/lib/utils/Bytes.sol:Bytes:0x610178da211fef7d417bc0e6fed39f05609ad788" + ], + "pending": [], + "returns": {}, + "timestamp": 1690361643, + "chain": 31337, + "multi": false, + "commit": null +} \ No newline at end of file diff --git a/packages/starksheet-solidity/broadcast/Evmsheet.s.sol/31337/run-1690363242.json b/packages/starksheet-solidity/broadcast/Evmsheet.s.sol/31337/run-1690363242.json new file mode 100644 index 00000000..25341813 --- /dev/null +++ b/packages/starksheet-solidity/broadcast/Evmsheet.s.sol/31337/run-1690363242.json @@ -0,0 +1,209 @@ +{ + "transactions": [ + { + "hash": "0xe357233cf4678196a1b884bca299643c371f7155cc4db8c55399443c9a8b2939", + "transactionType": "CREATE", + "contractName": "Bytes", + "contractAddress": "0x0B306BF915C4d645ff596e518fAf3F9669b97016", + "function": null, + "arguments": null, + "transaction": { + "type": "0x02", + "from": "0xf39fd6e51aad88f6f4ce6ab8827279cfffb92266", + "gas": "0x1387dd", + "data": "0x6110d661003a600b82828239805160001a60731461002d57634e487b7160e01b600052600060045260246000fd5b30600052607381538281f3fe73000000000000000000000000000000000000000030146080604052600436106101625760003560e01c8063a5eb31ee116100cd578063d1ffb56111610086578063d1ffb561146103fb578063d442584f1461042b578063e004139614610454578063f1142fb314610474578063f647f8fb14610487578063f83b670f146104b257600080fd5b8063a5eb31ee14610344578063a8d8f00f1461036b578063b5cdf92414610396578063b63711df146103a9578063be8b3430146103bc578063c29616bd146103cf57600080fd5b80635ef849301161011f5780635ef8493014610241578063913c97b41461026b57806397e6175c1461029f57806399dd9bd7146102cb5780639ae4c3d1146102ec5780639cee499e1461031857600080fd5b8063042aa0841461016757806305d3bb74146101985780631a7431ef146101c0578063235266d2146101e357806348137709146101f65780634d66a2ae1461021b575b600080fd5b61017a610175366004610ec0565b6104de565b6040516001600160d01b031990911681526020015b60405180910390f35b6101ab6101a6366004610ec0565b610540565b60405163ffffffff909116815260200161018f565b6101d36101ce366004610f05565b61059d565b604051901515815260200161018f565b6101d36101f1366004610f4c565b610652565b610209610204366004610ec0565b6106b5565b60405160ff909116815260200161018f565b61022e610229366004610fa6565b610711565b60405161ffff909116815260200161018f565b61025461024f366004610ec0565b61071e565b60405165ffffffffffff909116815260200161018f565b61027e610279366004610ec0565b610772565b6040516fffffffffffffffffffffffffffffffff909116815260200161018f565b6102b26102ad366004610ec0565b6107d0565b6040516001600160a01b0319909116815260200161018f565b6102de6102d9366004610ec0565b61082e565b60405190815260200161018f565b6102ff6102fa366004610ec0565b61088c565b60405167ffffffffffffffff909116815260200161018f565b61032b610326366004610ec0565b6108e9565b6040516001600160d81b0319909116815260200161018f565b610357610352366004610ec0565b610946565b60405162ffffff909116815260200161018f565b61037e610379366004610ec0565b6109a3565b60405166ffffffffffffff909116815260200161018f565b6102de6103a4366004610ec0565b610a00565b6102ff6103b7366004610ec0565b610a55565b61022e6103ca366004610ec0565b610aa9565b6103e26103dd366004610ec0565b610b06565b6040516001600160c81b0319909116815260200161018f565b61040e610409366004610ec0565b610b5a565b6040516bffffffffffffffffffffffff909116815260200161018f565b61043e610439366004610ec0565b610bae565b60405164ffffffffff909116815260200161018f565b610467610462366004610fe3565b610c02565b60405161018f9190611031565b6102b2610482366004610ec0565b610d0f565b61049a610495366004610ec0565b610d64565b6040516001600160a01b03909116815260200161018f565b6104c56104c0366004610ec0565b610dc9565b6040516001600160f81b0319909116815260200161018f565b60006104eb82600661107f565b835110156105375760405162461bcd60e51b8152602060048201526014602482015273746f4279746573365f6f75744f66426f756e647360601b60448201526064015b60405180910390fd5b50016006015190565b600061054d82600461107f565b835110156105945760405162461bcd60e51b8152602060048201526014602482015273746f55696e7433325f6f75744f66426f756e647360601b604482015260640161052e565b50016004015190565b600080600190508354600260018083161561010002038216048451808214600181146105cc5760009450610644565b821561064457602083106001811461062957600189600052602060002060208a018581015b600284828410010361062057815183541461060f5760009950600093505b6001830192506020820191506105f1565b50505050610642565b6101008086040294506020880151851461064257600095505b505b509293505050505b92915050565b81518151600091600191811480831461066e57600092506106ab565b600160208701838101602088015b60028483851001036106a657805183511461069a5760009650600093505b6020928301920161067c565b505050505b5090949350505050565b60006106c282600161107f565b835110156107085760405162461bcd60e51b8152602060048201526013602482015272746f55696e74385f6f75744f66426f756e647360681b604482015260640161052e565b50016001015190565b600061064c826000610aa9565b600061072b82600661107f565b835110156105375760405162461bcd60e51b8152602060048201526014602482015273746f55696e7434385f6f75744f66426f756e647360601b604482015260640161052e565b600061077f82601061107f565b835110156107c75760405162461bcd60e51b8152602060048201526015602482015274746f55696e743132385f6f75744f66426f756e647360581b604482015260640161052e565b50016010015190565b60006107dd82600c61107f565b835110156108255760405162461bcd60e51b8152602060048201526015602482015274746f427974657331325f6f75744f66426f756e647360581b604482015260640161052e565b5001600c015190565b600061083b82602061107f565b835110156108835760405162461bcd60e51b8152602060048201526015602482015274746f427974657333325f6f75744f66426f756e647360581b604482015260640161052e565b50016020015190565b600061089982600861107f565b835110156108e05760405162461bcd60e51b8152602060048201526014602482015273746f55696e7436345f6f75744f66426f756e647360601b604482015260640161052e565b50016008015190565b60006108f682600561107f565b8351101561093d5760405162461bcd60e51b8152602060048201526014602482015273746f4279746573355f6f75744f66426f756e647360601b604482015260640161052e565b50016005015190565b600061095382600361107f565b8351101561099a5760405162461bcd60e51b8152602060048201526014602482015273746f55696e7432345f6f75744f66426f756e647360601b604482015260640161052e565b50016003015190565b60006109b082600761107f565b835110156109f75760405162461bcd60e51b8152602060048201526014602482015273746f55696e7435365f6f75744f66426f756e647360601b604482015260640161052e565b50016007015190565b6000610a0d82602061107f565b835110156108835760405162461bcd60e51b8152602060048201526015602482015274746f55696e743235365f6f75744f66426f756e647360581b604482015260640161052e565b6000610a6282600861107f565b835110156108e05760405162461bcd60e51b8152602060048201526014602482015273746f4279746573385f6f75744f66426f756e647360601b604482015260640161052e565b6000610ab682600261107f565b83511015610afd5760405162461bcd60e51b8152602060048201526014602482015273746f55696e7431365f6f75744f66426f756e647360601b604482015260640161052e565b50016002015190565b6000610b1382600761107f565b835110156109f75760405162461bcd60e51b8152602060048201526014602482015273746f4279746573375f6f75744f66426f756e647360601b604482015260640161052e565b6000610b6782600c61107f565b835110156108255760405162461bcd60e51b8152602060048201526014602482015273746f55696e7439365f6f75744f66426f756e647360601b604482015260640161052e565b6000610bbb82600561107f565b8351101561093d5760405162461bcd60e51b8152602060048201526014602482015273746f55696e7434305f6f75744f66426f756e647360601b604482015260640161052e565b606081610c1081601f61107f565b1015610c4f5760405162461bcd60e51b815260206004820152600e60248201526d736c6963655f6f766572666c6f7760901b604482015260640161052e565b610c59828461107f565b84511015610c9d5760405162461bcd60e51b8152602060048201526011602482015270736c6963655f6f75744f66426f756e647360781b604482015260640161052e565b606082158015610cbc5760405191506000825260208201604052610d06565b6040519150601f8416801560200281840101858101878315602002848b0101015b81831015610cf5578051835260209283019201610cdd565b5050858452601f01601f1916604052505b50949350505050565b6000610d1c82601061107f565b835110156107c75760405162461bcd60e51b8152602060048201526015602482015274746f427974657331365f6f75744f66426f756e647360581b604482015260640161052e565b6000610d7182601461107f565b83511015610db95760405162461bcd60e51b8152602060048201526015602482015274746f416464726573735f6f75744f66426f756e647360581b604482015260640161052e565b500160200151600160601b900490565b6000610dd682600161107f565b835110156107085760405162461bcd60e51b8152602060048201526014602482015273746f4279746573315f6f75744f66426f756e647360601b604482015260640161052e565b634e487b7160e01b600052604160045260246000fd5b600082601f830112610e4457600080fd5b813567ffffffffffffffff80821115610e5f57610e5f610e1d565b604051601f8301601f19908116603f01168101908282118183101715610e8757610e87610e1d565b81604052838152866020858801011115610ea057600080fd5b836020870160208301376000602085830101528094505050505092915050565b60008060408385031215610ed357600080fd5b823567ffffffffffffffff811115610eea57600080fd5b610ef685828601610e33565b95602094909401359450505050565b60008060408385031215610f1857600080fd5b82359150602083013567ffffffffffffffff811115610f3657600080fd5b610f4285828601610e33565b9150509250929050565b60008060408385031215610f5f57600080fd5b823567ffffffffffffffff80821115610f7757600080fd5b610f8386838701610e33565b93506020850135915080821115610f9957600080fd5b50610f4285828601610e33565b600060208284031215610fb857600080fd5b813567ffffffffffffffff811115610fcf57600080fd5b610fdb84828501610e33565b949350505050565b600080600060608486031215610ff857600080fd5b833567ffffffffffffffff81111561100f57600080fd5b61101b86828701610e33565b9660208601359650604090950135949350505050565b600060208083528351808285015260005b8181101561105e57858101830151858201604001528201611042565b506000604082860101526040601f19601f8301168501019250505092915050565b8082018082111561064c57634e487b7160e01b600052601160045260246000fdfea26469706673582212200ab05fdff7c9159a360effa700137333459105198b03327bed2de33488aa4ec064736f6c63430008150033", + "nonce": "0xf", + "accessList": [] + }, + "additionalContracts": [], + "isFixedGasLimit": false + }, + { + "hash": "0x75e4ec01b1665bf373068e080280c5d7f34ad2232cfbd48a4bcbbe8b1399a78d", + "transactionType": "CREATE", + "contractName": "MultiSendCallOnly", + "contractAddress": "0x959922bE3CAee4b8Cd9a407cc3ac1C251C2007B1", + "function": null, + "arguments": null, + "transaction": { + "type": "0x02", + "from": "0xf39fd6e51aad88f6f4ce6ab8827279cfffb92266", + "gas": "0x2e5b4", + "value": "0x0", + "data": "0x608060405234801561001057600080fd5b506101ae806100206000396000f3fe60806040526004361061001e5760003560e01c80638d80ff0a14610023575b600080fd5b6100366100313660046100c7565b610038565b005b805160205b818110156100ac578083015160f81c6001820184015160601c601583018501516035840186015160558501870160008560008114610082576001811461001e5761008e565b6000808585888a5af191505b508061009957600080fd5b505080605501850194505050505061003d565b505050565b634e487b7160e01b600052604160045260246000fd5b6000602082840312156100d957600080fd5b813567ffffffffffffffff808211156100f157600080fd5b818401915084601f83011261010557600080fd5b813581811115610117576101176100b1565b604051601f8201601f19908116603f0116810190838211818310171561013f5761013f6100b1565b8160405282815287602084870101111561015857600080fd5b82602086016020830137600092810160200192909252509594505050505056fea2646970667358221220915f2e68ab0008ebbb1ed69f9c5c2817995c2578db9a979f782235cb1216b32764736f6c63430008150033", + "nonce": "0x10", + "accessList": [] + }, + "additionalContracts": [], + "isFixedGasLimit": false + }, + { + "hash": "0x60e70bf4eaa7b7048df5d1b67488f6b92dcb080a090de15c7858336c3b445931", + "transactionType": "CREATE", + "contractName": "BasicCellRenderer", + "contractAddress": "0x9A9f2CCfdE556A7E9Ff0848998Aa4a0CFD8863AE", + "function": null, + "arguments": null, + "transaction": { + "type": "0x02", + "from": "0xf39fd6e51aad88f6f4ce6ab8827279cfffb92266", + "gas": "0x3180ad", + "value": "0x0", + "data": "0x608060405234801561001057600080fd5b50612c25806100206000396000f3fe608060405234801561001057600080fd5b50600436106100365760003560e01c806306d4cd8b1461003b57806328de0f2f14610064575b600080fd5b61004e610049366004610322565b610077565b60405161005b919061038b565b60405180910390f35b61004e610072366004610404565b6100f1565b60606000610086600f846104fc565b90506000610095600f8361051e565b61009f9085610535565b905060006100ae826041610548565b60f81b9050806100c76100c2856001610548565b6101b6565b6040516020016100d8929190610577565b6040516020818303038152906040529350505050919050565b606060006100fe86610077565b905083838261018388730b306bf915c4d645ff596e518faf3f9669b9701663b5cdf924909160006040518363ffffffff1660e01b81526004016101429291906105a8565b602060405180830381865af415801561015f573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906100c291906105ca565b87878660405160200161019c97969594939291906105f2565b604051602081830303815290604052915050949350505050565b606060006101c383610249565b600101905060008167ffffffffffffffff8111156101e3576101e36103a5565b6040519080825280601f01601f19166020018201604052801561020d576020820181803683370190505b5090508181016020015b600019016f181899199a1a9b1b9c1cb0b131b232b360811b600a86061a8153600a850494508461021757509392505050565b60008072184f03e93ff9f4daa797ed6e38ed64bf6a1f0160401b83106102885772184f03e93ff9f4daa797ed6e38ed64bf6a1f0160401b830492506040015b6d04ee2d6d415b85acef810000000083106102b4576d04ee2d6d415b85acef8100000000830492506020015b662386f26fc1000083106102d257662386f26fc10000830492506010015b6305f5e10083106102ea576305f5e100830492506008015b61271083106102fe57612710830492506004015b60648310610310576064830492506002015b600a831061031c576001015b92915050565b60006020828403121561033457600080fd5b5035919050565b60005b8381101561035657818101518382015260200161033e565b50506000910152565b6000815180845261037781602086016020860161033b565b601f01601f19169290920160200192915050565b60208152600061039e602083018461035f565b9392505050565b634e487b7160e01b600052604160045260246000fd5b60008083601f8401126103cd57600080fd5b50813567ffffffffffffffff8111156103e557600080fd5b6020830191508360208285010111156103fd57600080fd5b9250929050565b6000806000806060858703121561041a57600080fd5b84359350602085013567ffffffffffffffff8082111561043957600080fd5b818701915087601f83011261044d57600080fd5b81358181111561045f5761045f6103a5565b604051601f8201601f19908116603f01168101908382118183101715610487576104876103a5565b816040528281528a60208487010111156104a057600080fd5b8260208601602083013760006020848301015280975050505060408701359150808211156104cd57600080fd5b506104da878288016103bb565b95989497509550505050565b634e487b7160e01b600052601160045260246000fd5b60008261051957634e487b7160e01b600052601260045260246000fd5b500490565b808202811582820484141761031c5761031c6104e6565b8181038181111561031c5761031c6104e6565b8082018082111561031c5761031c6104e6565b6000815161056d81856020860161033b565b9290920192915050565b6001600160f81b031983168152815160009061059a81600185016020870161033b565b919091016001019392505050565b6040815260006105bb604083018561035f565b90508260208301529392505050565b6000602082840312156105dc57600080fd5b5051919050565b81818437506000910190815290565b7f646174613a6170706c69636174696f6e2f6a736f6e2c7b22646573637269707481527f696f6e223a2022537461726b7368656574222c20226e616d65223a202200000060208201528688603d8301376000878201602160f81b603d820152875161066481603e840160208c0161033b565b7f222c22696d616765223a2022646174613a696d6167652f7376672b786d6c2c25603e92909101918201527f334373766725323076696577426f782533442532373025323030253230383925605e8201527f3230353525323725323066696c6c2533442532376e6f6e65253237253230786d607e8201527f6c6e73253344253237687474702533412f2f7777772e77332e6f72672f323030609e8201527f302f737667253237253345253343646566732533452533437374796c6525334560be8201527f253430666f6e742d66616365253230253742666f6e742d66616d696c7925334160de8201527f253230253237507265737325323053746172742532303250253237253342737260fe8201527f6325334125323075726c25323825323764617461253341666f6e742f776f666661011e8201527f32253342626173653634253243643039474d6741424141414141424c3841413861013e8201527f41414141415235774141424b674141454141414141414141414141414141414161015e8201527f4141414141414141414141414150305a4756453063476a41624d42794358675a61017e8201527f6741494e794551674b3846545361517544524141424e67496b41344e4d42434161019e8201527f46687a5148684649623644566c42306a314f4d4253336f4f4953744562732f2f6101be8201527f2f6c4a776356727a47634f30676f684c45484d6369694443434e57695a6761306101de8201527f79625345555954514f6a4b427038546c737a7344526438716174586c333058746101fe8201527f30645a47467952305668444b776c62746c25324272734643773945316e64655961021e8201527f4a74732f37527762305673784d71576c636a6a775445537a2f5568752f77337361023e8201527f33746b6f496d70343464515168576f456d54337579526d70746f7553446b7a5761025e8201527f454138762f3932364a4b7539486f696e6e3673376674336d4965476c7737547161027e8201527f6437456f326a46517849766a5642494a70563269614f62547a68575932314e7461029e8201527f476772687434704d4b3457556a34624c7967542f51253242514c7879253242336102be8201527f6c482f362f6b6275496444497239446a724a496a6f394a7336524d58253242456102de8201527f6b37424f545a6b6d70397a347455524652566656307148504448375a7462364a6102fe8201527f616f6130684c335975616232473373667a72365776394536793569767025324261031e8201527f7135564c74426a514478476f5345304150313762336466376c61726a6525324261033e8201527f73637a6b7241744a334b6657304a342532424b323365744b4b556a383554616f61035e8201527f57473453346158436c427743413268676141652532423658396f696e32304e6261037e8201527f554a7264466767517049686d5247494d30372f7025324277375a7058316c473161039e8201527f6a6a51787073435141423438714445415042346950312f6a39592f4261686a356103be8201527f5943414e302f78714157496852616a6c6e694e654f50396e78433466667932556103de8201527f694843304e47386b686f6f567a6f7459334445417a417a41356b473735337a6a6103fe8201527f4853354d6e6d586b69496a6d54554d36556d4d3025324256346976752f48377861041e8201527f6a364666322f6b343472787a6449324141676742492f4c48416b394a7a35554d61043e8201527f496f4c7755344146455435725a464f33444d616655633061777351434879497061045e8201527f557a546b30784a474a454f6a4e6871436b474570496153474f6a714e466d2f5761047e8201527f4e434e3569636b71434d6e414165564c4d4c655867356971386b365752585a5261049e8201527f326c337042393831427a73475a743225324256696c4342723954494a674b67786104be8201527f365542514446253242566a4b44714e7741414948386a6949664d6e75384b68666104de8201527f584b486f4e3348634134477245786842324155442f795a554d423857547579496104fe8201527f413444634f4b656434397939504249616e426967734d454e38556b30766c547661051e8201527f304a58334e394d795a75544d763573655357413525324238556538504465547261053e8201527f645467474973566d4e33635856586a6463795275633434385866664176506e7361055e8201527f3575324d4531722532426a4731703137767a3849704f416e483444427367793361057e8201527f512f54376b33646d2f3846334232377355694877464631414f6c683055646e4961059e8201527f4471494e5164506355393145786f2f346252696a6a5169704e4e307a4c646c7a6105be8201527f504438496f547449734c38717162746f4f5149514a5a567849705931315073536105de8201527f55533231397a4c585066642f507667765751346372464d2532425769755671706105fe8201527f645a6f4e6475645872632f4745324d4a36656e3575635746694763375274364f61061e8201527f487676354d674c2532427a44733578444277696141315433554877326b63594361063e8201527f312f55666453316645316d37763742346537653350574848786533594f32483561065e8201527f25324241504f5a7965503025324251506553425468793078713965363241486a61067e8201527f6141556842432f364144484c6f476f4f657636412532426867487369317a613861069e8201527f71355a4e4d716a596c575a4d713867354248445574495370574a73526f52544a6106be8201527f56613049305a3957546b5371564b73507a3464586a7648746449684c6e7670746106de8201527f554c4330753542567579414d544b4a513930594b5267546e5769476b6d7153456106fe8201527f714b6d7256685259674b6b335443686255573671456f45637665577a6859535461071e8201527f4c32484e706735452f6d7151393956564467763352475435586d33637a68754c61073e8201527f3972685864316132372f736c5130686959366a643739614f5a43746a6f52687261075e8201527f623136575676514b725734477a786a7869723238494d697a2f7155447973495761077e8201527f7037516a667765347a556437614a735651575179524c554b484b42577938577661079e8201527f45565333584d53353656337757644f442532424638757639645477496d4b722f6107be8201527f5064626d5763775176456641616a7975566a70784e32704f56635769336c38776107de8201527f454c2f6d395070646f55494536253242504b5838315041546d67654f304231736107fe8201527f47454825324261707a353466646d534a7a333741686635366a4c7739756e504561081e8201527f35644d4b3025324237544639563843435466523979664e7355493474557a464661083e8201527f42326e536e384b4f626a64446964554c7034494a6873777878595172595a643661085e8201527f4e76436e55394d445825324252654c6e4d546d6c315a453972306b5077334e3261087e8201527f6752253242736a4573596d4953706b356c31497333594e614a4b6f6e7a65703761089e8201527f56637354316e556b62347048774b5a41796b614b6f43504630506f6d456876496108be8201527f5758656e6f5a767836774f4b313070316c3274546858793850316555776473766108de8201527f53715157766f424d7473674851554a614774494273756861776450545a5378596108fe8201527f707257757734647a7231564755744449465871726f4d4d69597346783857695461091e8201527f336463574b6f376d50554c79715657413972305974524a4c626957766a6e4c2561093e8201527f324272633452646767624e516c514141613264306d616236364d48447074314361095e8201527f6477626b51436253375053445a4d7a3746724f51713165636153304a6c74644161097e8201527f6c44527941587173364130586247707748676b70367572557757416272464d3361099e8201527f75794d764e4b6c344d6c435548537950416d3931776144454a3559595148754a6109be8201527f4d32304b575251737637486b61334770686c533258444b714f4b4245554753316109de8201527f65306b63316f323449494166486c4449794278584a4a656767423369386174566109fe8201527f67434f3064444f5a484a57596a564c416a6a397137765673456e72684b374568610a1e8201527f4c75427a42586d4d674554634531636d61436976504b6f4a766670466c794935610a3e8201527f4d70584234454325324245672f596d303454787843354e6c73596b74646f5951610a5e8201527f55656c38624673456c3748345a36734377622f38626b347458574658504b6a71610a7e8201527f5462526e64336e4c5770394f784941706c664b586747684e6c72443462354a4c610a9e8201527f5a367055753441726756614d366561357844574244476f7a707a4641376e6747610abe8201527f74596334486141775269475576637653653652414177335a576b564f4667764b610ade8201527f46364955696c4d49394964715155345134585264484866736666517770313955610afe8201527f434a49306a5773725433356f5578303678507268473271364d4533554f306c63610b1e8201527f635a557354454351784a44527854444b6c334c4948722f6162546f73686c6466610b3e8201527f51786a364f57745273466e6966444373473674336b426f344e6d424a6d615556610b5e8201527f54636c794951414a4c6a6e723042365a3859464d6e396b397967703752727848610b7e8201527f36766877624a4e41654b4d554436353974386746514a4d5377652f434f624850610b9e8201527f467671484746554e5266253242737245663354584b42725a76676b6369396972610bbe8201527f426d63442f7458616754474358634e68432532424f3539754c706e6673796f71610bde8201527f4c53313238374552776d38666165564f6d3857634437386c5a36594232793938610bfe8201527f5a4c6c4d3972557264324c514e6c324956643454727376675139363079377573610c1e8201527f5965306854506170576a71726c2532425837784665424e54253242315a644a4a610c3e8201527f572532424678745737584e7774634e7a7761672532425256656a6d4a6839656d610c5e8201527f6c495a4b69694e63694b3849554f4d33556a4a376342554e5847505853326c68610c7e8201527f253242687770676f4836567348524f63764569723372585970344c7769435a77610c9e8201527f3176486c43623552314d68623564536e4f326d6e6f475a6f5846315765574757610cbe8201527f6d7a694a314a555534715072306e694a536c4e424331636b4b6d4a6657625877610cde8201527f5577757449547a456d6a776770776142753464525066746a2f4e384143526e64610cfe8201527f616b2f4641674b674c37305058577839767a6b59322532426d34355473496b4c610d1e8201527f3037616f70444e6f676830535262535a534f397a744657516a376e574c676275610d3e8201527f364325324254374b6a44715a3667456e5277674d78306b4c5a77797962514f76610d5e8201527f514130773054782f354a42722f63595a6453574f546a774446364e6f586b796a610d7e8201527f33566a484e4751494e76426a5a734a4a3377466141516d6f5a575a5970416961610d9e8201527f574f466e6e686455524176576b557a77693062677a5a4158796f445545714863610dbe8201527f57307069454c574f777168773365765478444957724e32495371525151454c41610dde8201527f4d32365334486c723548552f48784a43436844424a6b756b6341573856415430610dfe8201527f6770545a544b4e48677a444f7234314751656a4f34677a416e6b577077464752610e1e8201527f43334c625231787a4b434875365635694674674c704f384b51596d5965467868610e3e8201527f4c32643838736469506a2f76306b427a636c51637954735766324d6445394944610e5e8201527f386d5858576a72434b253242354532756e336e6976656973526e726971317548610e7e8201527f594d6a6a69694945304b6466674d6f3163476d6b557254624f30356732737633610e9e8201527f477673525971762f61457736375472644f705435567a4641364131417939634b610ebe8201527f6f44667762544a64445750524e57517354796a6d3772486249734b466b6f4f2f610ede8201527f5a4c4376735966785973337768534338614c49344b765677373773336e347a48610efe8201527f67697061634a6e435362463945727a53357069386343577655597a4f5064327a610f1e8201527f684a2f4750437a53684f453378596c634f3350796164586a54334f6b68706841610f3e8201527f58465853766865544e5355525446565641486f4a6d7949726b6a454b6f517746610f5e8201527f4730303554334158643935764e30446d336d427332786746546c253242513572610f7e8201527f73416a6e744768707a6f62643642374e7a52664e56653130446f4e5639343753610f9e8201527f59646f635252624776636d785456786f61367a717756376d416e773544314745610fbe8201527f5474327a48382532425476514256356e37672f32615768743979794e594c3974610fde8201527f4f42744167384846435945316d4e775432454232467538544968543776565241610ffe8201527f3461587a6e6b3670545a4e6779696f73747749364b654655374c696c7041253261101e8201527f42334234474a794277574d327062466a4876734a3747754f6f616b6a6d46746a61103e8201527f59344c6254396c323239253242453646374c4475577a744c6e333749786b386a61105e8201527f356c42564b33774c7369362f416641756f6a34396c4d6b5653545045396b704761107e8201527f64304c724555534a4941413070596c4178414d642f4e4f46776f4a446458466961109e8201527f307a4f5744422f54464a705666575642574f516274724a556230636c663369256110be8201527f3242575072446f596c65545674564f45306d36793564487444725551776f414c6110de8201527f7455523365585364444d4e785866656a594674764c626c726c4a7777484b2f456110fe8201527f6957504a616b32574b35386e684e6f4c6a615a55475841756f32656f5777464561111e8201527f66612f445334496958717246714779633348726939785132693243352f73357661113e8201527f7a424d30793777334d4473774d3759325247427172464d6778374f696325324261115e8201527f30497a736d5678617a5473305263666a324f3334532f525639503269486f427561117e8201527f6c4b49594244665a46654c53356439725379664a64536c67683268644d72324f61119e8201527f5552334b6e6c506e4f41785477314a384c4d325a776e4671765a745a4a6c78786111be8201527f343873776243743272316b664875443756624831326159383849437456734b786111de8201527f4b742f31726b616c42414d74782f6f6f6d43445059626b556f4c6344624b436a6111fe8201527f7675713953544467746a584744715735564b36686347654f46697a6a3643714c61121e8201527f4f49716b57783477733245504d444e7378253242613661533230384f39784c3061123e8201527f526146586f394241645530706e452532424c695359334b536f4a41525978646e61125e8201527f7a69545a4d706961442f3438496969393834446151357976656378414673735761127e8201527f792f686274696d63253242704c386b35796f70496d4a627948712f6138797a6c61129e8201527f6c37726f4f7a586d786d4163337459585363546b65734d6344324939315a36336112be8201527f6549312f394a627755716b36737863394b52677277574d414e6543314e6e39756112de8201527f4779775473706d5538712532426c5a6d43714d674153363662674841476a514b6112fe8201527f73754a334451416a5235346d356a4c7a5a616e546c62646530253242726e663461131e8201527f385a574138546c32673277414779427748516e3552322532424e6a726542677861133e8201527f626c734e46627554776d6862414a48737a2f72416f61764c4f34317874767a5961135e8201527f4768336e4c4a426b41506a7578424a445248333048426575385567436978464e61137e8201527f437951322f4b253242385157372f6530253242664f2532423436524e5730657961139e8201527f4c726f39446a5467704a4e4d3547385179306c54644f756d73773066715045696113be8201527f393646702532424830634d774e6f376a787a596d6e4e664d5a6d64506c7932706113de8201527f6f7132575065476d67507136474c78504e34536c4b486e7870624f69754c58516113fe8201527f75583155715031676a6f38426136536c55314f416d5267707a7531735444584a61141e8201527f50754d3338546f387130344c324e777970653837327777556741675a6c70386461143e8201527f6b5166397a38544d43624d6b596b3758484375333564375a5a41656f346b5a4b61145e8201527f68784953386945354c546a334c4f6976485a7268394a3870337a4c5a436a776361147e8201527f6970354452694b6e576e49664c33386b4a684d7452776a67553525324256726d61149e8201527f714b6c6739307a376a64732f4238444b646b464c76483353253242376f4838616114be8201527f6c445a6c626734533155583574434d445342324f364b756c7a41344b763067376114de8201527f314251643054464b7733685358696e62374e6c304258725873514e6376436b386114fe8201527f6d6f394f786965783559627a78564e2f6b3738336f48545a495777393079495a61151e8201527f777672697164475473586e54384965705437597946434f4a6741395a3042794961153e8201527f455956735478522f6b73616b324268376f4b767034766e695530364d57317a4261155e8201527f4672746568647a306b6b587951786a426d7965645636644d596545386146787461157e8201527f6575777355466136466c6c54446c716430707a525a77473663467266574d627061159e8201527f384738587a6a66624d253242354658657076356f457273696c363458783663376115be8201527f5841576275696d3666387347494d58666f334a6971476b703333376854536a676115de8201527f65636862364f42472f327a31376a6f6d4469476d253242476c623146553069656115fe8201527f6e7552796977654c576767447a6d4655765545556a5a6f377356544877684f4661161e8201527f504d6b4e737146423977796d6b45307639666d7477453854377135384e594f3761163e8201527f787534623833766e46766c35755378446c472532426b4f51675249644f346a6761165e8201527f7a786a53486a4b4c7332742f6c684f647771766131415744437072763344345361167e8201527f34523741625934544362664b4637744265363554343551347a7a49714433316161169e8201527f79797557716a692532424636585337535439483943314f342f694b366b4775766116be8201527f6b512f664e3537487837456533373435622f76766e2f62482f58253242392f256116de8201527f32426762656d684f416d49705576755157757344764b517578394a44564e734b6116fe8201527f673651636d6b73515341445530346347524c523768466f5a326337785545664761171e8201527f253242776b755459474d764c6a422f6550634936416847686e5735717a45416961173e8201527f4a586377564545775869654e70536c317a6a457253253242435325324248634c61175e8201527f6f52506d7661324d6767412f69794c67536f544a555767733442794149514f3061177e8201527f4f6f705a487656627a6844494c65557155677a7a48492f667950474e7879777361179e8201527f6f796c6865534639577662795363336b4544716b32415636436c4364635535536117be8201527f6e6c4e6e4963394b794d63384c79622532423867484f4a795173466c4c6250526117de8201527f796d6d374a42743349545a544162314732444252496b514b51705451396939626117fe8201527f3665435353387a4d366161525364544b5657524d336663454a4c644b61746e7361181e8201527f724959774e4a55253242733048364461757832775a35686733706c653042474861183e8201527f756b316b4543734859446461496d4b7025324233463542317859763763486b7161185e8201527f644475306a4b645273657a3531376d63563641685148346931484e3173766c6a61187e8201527f5248366845454672682532426e72726d47316e33307a4d346749776d694d774561189e8201527f624b6842545564423141486f582532424b6741517a4f48543946494f71436b526118be8201527f4e4e623273397170496943534f753167576868497343564a73765771457175356118de8201527f47624a514b4e6a61427465394c4f69676368414a7665475773394332323033766118fe8201527f6f6e476c6b77725251323464646732796345646157554456734441785548734961191e8201527f77773665615234464665336d4a416b66426d5a6452395264774a485a6d47645261193e8201527f7950436a706a627a31712f584a34534949446b66384b4b6e6e32456c4b6d794c61195e8201527f69573442513836733151554b2f76426867524e776548766c5968687a7238706361197e8201527f67704b4b6d6f61576a7036426b594f48446c7835734b5647336365474539657661199e8201527f506e773563646667454242676f554946536238587632504553314772446a78456119be8201527f69524b6b697846716a54704d6d544b6b693148726a7a354368517155717845716119de8201527f544c6c4b6c53715571314772547231476a527130717846717a62744f6e5347656119fe8201527f3668374a6d627a4968355a6544696c315a58536a7430774375616b336c6e476f611a1e8201527f5655506f53734e663337394b326a6274716d44674d69485a42665a6c68324839611a3e8201527f75773738495469314a466a585653662f4336634f55667a346f30644178305447611a5e8201527f777448446863666a3443516d49694531444d5a42546b6c4e5a557065566f614f611a7e8201527f6e717633733234314e50503965766574594768435a50576a4979747332706173611a9e8201527f436a25324270556a54596c336b615574374f744b4a6136355850396d356e6367611abe8201527f364e686a685a587032762532426d57724341545a754a303368316b6a55756976611ade8201527f5067596e6a6e35744b4a4f6b326e6362703251414559585a69304b496d50356b611afe8201527f744961466e366b5a397743253237253239253230666f726d6174253238253237611b1e8201527f776f666632253237253239253342666f6e742d7765696768742533412532306e611b3e8201527f6f726d616c253342666f6e742d7374796c652533412532306e6f726d616c2533611b5e8201527f42666f6e742d646973706c617925334125323073776170253342253744746578611b7e8201527f74253230253742666f6e742d66616d696c792533412532302532375072657373611b9e8201527f2532305374617274253230325025323725334266696c6c253341253230776869611bbe8201527f74652537442e76616c7565253230253742666f6e742d73697a65253341253230611bde8201527f313070782533422537442e6e616d65253230253742666f6e742d73697a652533611bfe8201527f412532303470782533422537442533432f7374796c652533452533432f646566611c1e8201527f7325334525334372656374253230776964746825334425323738392532372532611c3e8201527f30686569676874253344253237353525323725323066696c6c25334425323762611c5e8201527f6c61636b2532372532302f253345253343726563742532307825334425323735611c7e8201527f2e3525323725323079253344253237352e352532372532307769647468253344611c9e8201527f2532373738253237253230686569676874253344253237343425323725323066611cbe8201527f696c6c2533442532372532333030303046462532372532302f25334525334374611cde8201527f657874253230746578742d616e63686f722533442532376d6964646c65253237611cfe8201527f2532307825334425323734342e35253237253230792533442532373333253237611d1e8201527f253230636c61737325334425323776616c756525323725334500000000000000611d3e820152612ba5612b9e6129f5611d5784018a61055b565b7f2533432f746578742533452533437265637425323078253344253237352e352581527f323725323079253344253237352e35253237253230776964746825334425323760208201527f373825323725323068656967687425334425323734342532372532307374726f60408201527f6b652533442532372532334646344630412532372532307374726f6b652d776960608201527f647468253344253237332532372532302f25334525334372656374253230782560808201527f334425323733302532372532307925334425323734352e35253237253230776960a08201527f647468253344253237353825323725323068656967687425334425323738253260c08201527f3725323066696c6c2533442532372532334646344630412532372532302f253360e08201527f4525334374657874253230746578742d616e63686f72253344253237656e64256101008201527f32372532307825334425323738372532372532307925334425323735322532376101208201527f253230636c6173732533442532376e616d6525323725334500000000000000006101408201526101580190565b86886105e3565b602160f81b81529050612bbb600182018561055b565b7f2533432f746578742533452533432f737667253345227d00000000000000000081526017019a995050505050505050505056fea2646970667358221220f64400964cf21cb4940de76482b5ee6f22f9e46a781e948eea81a1999aa43eb964736f6c63430008150033", + "nonce": "0x11", + "accessList": [] + }, + "additionalContracts": [], + "isFixedGasLimit": false + }, + { + "hash": "0x7f7bef911cf04f998b25cad5f028708984de41af957e853d432e3c974e9383e5", + "transactionType": "CREATE", + "contractName": null, + "contractAddress": "0x68B1D87F95878fE05B998F19b66F4baba5De1aed", + "function": null, + "arguments": null, + "transaction": { + "type": "0x02", + "from": "0xf39fd6e51aad88f6f4ce6ab8827279cfffb92266", + "gas": "0x42230", + "value": "0x0", + "data": "0x608060405234801561001057600080fd5b506102cf806100206000396000f3fe608060405234801561001057600080fd5b506004361061004c5760003560e01c80630194db8e14610051578063072bdcc214610076578063a391c15b14610089578063b67d77c51461009c575b600080fd5b61006461005f366004610160565b6100af565b60405190815260200160405180910390f35b610064610084366004610160565b6100ef565b61006461009736600461021e565b610129565b6100646100aa36600461021e565b61013e565b600080805b83518110156100e8578381815181106100cf576100cf610240565b60200260200101518201915080806001019150506100b4565b5092915050565b60006001815b83518110156100e85783818151811061011057610110610240565b60200260200101518202915080806001019150506100f5565b60006101358284610256565b90505b92915050565b60006101358284610278565b634e487b7160e01b600052604160045260246000fd5b6000602080838503121561017357600080fd5b823567ffffffffffffffff8082111561018b57600080fd5b818501915085601f83011261019f57600080fd5b8135818111156101b1576101b161014a565b8060051b604051601f19603f830116810181811085821117156101d6576101d661014a565b6040529182528482019250838101850191888311156101f457600080fd5b938501935b82851015610212578435845293850193928501926101f9565b98975050505050505050565b6000806040838503121561023157600080fd5b50508035926020909101359150565b634e487b7160e01b600052603260045260246000fd5b60008261027357634e487b7160e01b600052601260045260246000fd5b500490565b8181038181111561013857634e487b7160e01b600052601160045260246000fdfea2646970667358221220d31583983189259cb60ccec801ca1ed218051d27add344c207dbb437b07d39c864736f6c63430008150033", + "nonce": "0x12", + "accessList": [] + }, + "additionalContracts": [], + "isFixedGasLimit": false + }, + { + "hash": "0xac397d88eee5468d00008bcd59865c816b5847e6cb86f7c16cc1224926c279a8", + "transactionType": "CREATE", + "contractName": "Evmsheet", + "contractAddress": "0x3Aa5ebB10DC797CAC828524e59A333d0A371443c", + "function": null, + "arguments": [ + "0x9A9f2CCfdE556A7E9Ff0848998Aa4a0CFD8863AE", + "10000000000000000" + ], + "transaction": { + "type": "0x02", + "from": "0xf39fd6e51aad88f6f4ce6ab8827279cfffb92266", + "gas": "0x359c55", + "value": "0x0", + "data": "0x608060405234801561001057600080fd5b50604051612fa3380380612fa383398101604081905261002f916100b1565b61003833610061565b600280546001600160a01b0319166001600160a01b0393909316929092179091556001556100eb565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b600080604083850312156100c457600080fd5b82516001600160a01b03811681146100db57600080fd5b6020939093015192949293505050565b612ea9806100fa6000396000f3fe608060405260043610620000b95760003560e01c80638da5cb5b116200006c5780638da5cb5b146200019d578063ab2fa65a14620001bd578063ae28505e14620001e4578063c56c4cf11462000209578063f2fde38b146200022b578063f52be2a2146200025057600080fd5b806303fb31e814620000c65780631164c83d14620000ed578063145e414714620001045780633ccfd60b14620001465780635787cacb146200015e578063715018a6146200018557600080fd5b36620000c157005b600080fd5b348015620000d357600080fd5b50620000eb620000e536600462000842565b62000277565b005b620000eb620000fe366004620008b3565b620002a3565b3480156200011157600080fd5b5062000129620001233660046200092e565b620004e2565b6040516001600160a01b0390911681526020015b60405180910390f35b3480156200015357600080fd5b50620000eb6200057f565b3480156200016b57600080fd5b50620001766200061c565b6040516200013d91906200095b565b3480156200019257600080fd5b50620000eb62000680565b348015620001aa57600080fd5b506000546001600160a01b031662000129565b348015620001ca57600080fd5b50620001d562000698565b6040516200013d9190620009aa565b348015620001f157600080fd5b506200012962000203366004620009fa565b620006c4565b3480156200021657600080fd5b5060025462000129906001600160a01b031681565b3480156200023857600080fd5b50620000eb6200024a36600462000842565b620006ef565b3480156200025d57600080fd5b506200026860015481565b6040519081526020016200013d565b620002816200076b565b600280546001600160a01b0319166001600160a01b0392909216919091179055565b6001543414620002cd5760405163723a79e360e11b81523460048201526024015b60405180910390fd5b600060405180602001620002e19062000817565b6020820181038252601f19601f8201166040525090506000828251602084016000f56002546040516356d3163d60e01b81526001600160a01b0391821660048201529192508216906356d3163d90602401600060405180830381600087803b1580156200034d57600080fd5b505af115801562000362573d6000803e3d6000fd5b505060405163c47f002760e01b81526001600160a01b038416925063c47f0027915062000396908a908a9060040162000a14565b600060405180830381600087803b158015620003b157600080fd5b505af1158015620003c6573d6000803e3d6000fd5b5050604051635c26412360e11b81526001600160a01b038416925063b84c82469150620003fa908890889060040162000a14565b600060405180830381600087803b1580156200041557600080fd5b505af11580156200042a573d6000803e3d6000fd5b505060405163f2fde38b60e01b81523260048201526001600160a01b038416925063f2fde38b9150602401600060405180830381600087803b1580156200047057600080fd5b505af115801562000485573d6000803e3d6000fd5b5050600380546001810182556000919091527fc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b0180546001600160a01b0319166001600160a01b0394909416939093179092555050505050505050565b600060ff60f81b838360405180602001620004fd9062000817565b6020820181038252601f19601f82011660405250805190602001206040516020016200056094939291906001600160f81b031994909416845260609290921b6bffffffffffffffffffffffff191660018401526015830152603582015260550190565b60408051601f1981840301815291905280516020909101209392505050565b620005896200076b565b604051600090339047908381818185875af1925050503d8060008114620005cd576040519150601f19603f3d011682016040523d82523d6000602084013e620005d2565b606091505b5050905080620006195760405162461bcd60e51b815260206004820152601160248201527015da5d1a191c985dd85b0819985a5b1959607a1b6044820152606401620002c4565b50565b606060038054806020026020016040519081016040528092919081815260200182805480156200067657602002820191906000526020600020905b81546001600160a01b0316815260019091019060200180831162000657575b5050505050905090565b6200068a6200076b565b620006966000620007c7565b565b606060405180602001620006ac9062000817565b601f1982820381018352601f90910116604052919050565b60038181548110620006d557600080fd5b6000918252602090912001546001600160a01b0316905081565b620006f96200076b565b6001600160a01b038116620007605760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401620002c4565b6200061981620007c7565b6000546001600160a01b03163314620006965760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401620002c4565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b6124308062000a4483390190565b80356001600160a01b03811681146200083d57600080fd5b919050565b6000602082840312156200085557600080fd5b620008608262000825565b9392505050565b60008083601f8401126200087a57600080fd5b50813567ffffffffffffffff8111156200089357600080fd5b602083019150836020828501011115620008ac57600080fd5b9250929050565b600080600080600060608688031215620008cc57600080fd5b853567ffffffffffffffff80821115620008e557600080fd5b620008f389838a0162000867565b909750955060208801359150808211156200090d57600080fd5b506200091c8882890162000867565b96999598509660400135949350505050565b600080604083850312156200094257600080fd5b6200094d8362000825565b946020939093013593505050565b6020808252825182820181905260009190848201906040850190845b818110156200099e5783516001600160a01b03168352928401929184019160010162000977565b50909695505050505050565b600060208083528351808285015260005b81811015620009d957858101830151858201604001528201620009bb565b506000604082860101526040601f19601f8301168501019250505092915050565b60006020828403121562000a0d57600080fd5b5035919050565b60208152816020820152818360408301376000818301604090810191909152601f909201601f1916010191905056fe60806040523480156200001157600080fd5b50604051806040016040528060078152602001660536865657420360cc1b815250604051806040016040528060048152602001630534854360e41b81525062000069620000636200008f60201b60201c565b62000093565b600162000077838262000188565b50600262000086828262000188565b50505062000254565b3390565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b634e487b7160e01b600052604160045260246000fd5b600181811c908216806200010e57607f821691505b6020821081036200012f57634e487b7160e01b600052602260045260246000fd5b50919050565b601f8211156200018357600081815260208120601f850160051c810160208610156200015e5750805b601f850160051c820191505b818110156200017f578281556001016200016a565b5050505b505050565b81516001600160401b03811115620001a457620001a4620000e3565b620001bc81620001b58454620000f9565b8462000135565b602080601f831160018114620001f45760008415620001db5750858301515b600019600386901b1c1916600185901b1785556200017f565b600085815260208120601f198616915b82811015620002255788860151825594840194600190910190840162000204565b5085821015620002445787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b6121cc80620002646000396000f3fe608060405234801561001057600080fd5b50600436106102275760003560e01c8063715018a611610130578063b85d8b85116100b8578063cf0983981161007c578063cf09839814610512578063cfbe95d814610535578063df4ca20614610556578063e985e9c514610576578063f2fde38b146105a457600080fd5b8063b85d8b85146104a4578063b88d4fde146104ce578063b8c368ec146104e1578063c47f0027146104ec578063c87b56dd146104ff57600080fd5b806395d89b41116100ff57806395d89b4114610439578063a22cb46514610441578063b46ebb1214610454578063b6d658e114610467578063b84c82461461049157600080fd5b8063715018a6146103fa578063768d5029146104025780638ada6b0f146104155780638da5cb5b1461042857600080fd5b80631b06443c116101b35780634f6ccce7116101825780634f6ccce71461038157806356d3163d146103a15780636352211e146103b45780636a0abc74146103c757806370a08231146103e757600080fd5b80631b06443c14610335578063206848f61461034857806323b872dd1461035b57806342842e0e1461036e57600080fd5b8063081812fc116101fa578063081812fc146102a1578063095ea7b3146102e2578063172b9eed146102f757806318160ddd1461030a5780631941fd141461031357600080fd5b806301ffc9a71461022c57806302f3c4c91461025457806306fdde03146102745780630715a24a1461027c575b600080fd5b61023f61023a36600461176a565b6105b7565b60405190151581526020015b60405180910390f35b610267610262366004611861565b610609565b60405161024b9190611951565b610267610638565b6102936fffffffffffffffffffffffffffffffff81565b60405190815260200161024b565b6102ca6102af366004611964565b6005602052600090815260409020546001600160a01b031681565b6040516001600160a01b03909116815260200161024b565b6102f56102f036600461197d565b6106c6565b005b6102676103053660046119a9565b6107ad565b61029360075481565b610326610321366004611964565b610875565b60405161024b939291906119de565b6102ca610343366004611a0e565b61092a565b610326610356366004611964565b6109e3565b6102f5610369366004611a2b565b610ae1565b6102f561037c366004611a2b565b610ca8565b61029361038f366004611964565b60086020526000908152604090205481565b6102f56103af366004611a0e565b610da0565b6102ca6103c2366004611964565b610dca565b6103da6103d53660046119a9565b610e1c565b60405161024b9190611a6c565b6102936103f5366004611a0e565b610e60565b6102f5610ec3565b6102f5610410366004611af9565b610ed7565b6009546102ca906001600160a01b031681565b6000546001600160a01b03166102ca565b610267611035565b6102f561044f366004611b63565b611042565b610267610462366004611964565b6110ae565b61047a610475366004611964565b611258565b60408051921515835260208301919091520161024b565b6102f561049f366004611ba1565b611275565b6104b56104b2366004611964565b90565b6040516001600160e01b0319909116815260200161024b565b6102f56104dc366004611be3565b6112c6565b6102ca600160801b81565b6102f56104fa366004611ba1565b6113ae565b61026761050d366004611964565b6113ff565b61023f610520366004611a0e565b600160801b6001600160a01b03919091161090565b61023f610543366004611861565b516001600160a01b0316600160801b1490565b610569610564366004611964565b6114c9565b60405161024b9190611c16565b61023f610584366004611c4d565b600660209081526000928352604080842090915290825290205460ff1681565b6102f56105b2366004611a0e565b611526565b60006301ffc9a760e01b6001600160e01b0319831614806105e857506380ac58cd60e01b6001600160e01b03198316145b806106035750635b5e139f60e01b6001600160e01b03198316145b92915050565b6060816020015160405160200161062291815260200190565b6040516020818303038152906040529050919050565b6001805461064590611c7b565b80601f016020809104026020016040519081016040528092919081815260200182805461067190611c7b565b80156106be5780601f10610693576101008083540402835291602001916106be565b820191906000526020600020905b8154815290600101906020018083116106a157829003601f168201915b505050505081565b6000818152600360205260409020546001600160a01b03163381148061070f57506001600160a01b038116600090815260066020908152604080832033845290915290205460ff165b6107515760405162461bcd60e51b815260206004820152600e60248201526d1393d517d055551213d49256915160921b60448201526064015b60405180910390fd5b60008281526005602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b606060006107ba83610e1c565b9050606060005b825181101561086d576000806107ef8584815181106107e2576107e2611cb5565b6020026020010151611258565b9150915081156108335783610803826110ae565b61080c90611ccb565b60405160200161081d929190611cef565b6040516020818303038152906040529350610858565b6040516108469085908390602001611cef565b60405160208183030381529060405293505b5050808061086590611d27565b9150506107c1565b509392505050565b600a602052600090815260409020805460018201546002830180546001600160a01b039093169391926108a790611c7b565b80601f01602080910402602001604051908101604052809291908181526020018280546108d390611c7b565b80156109205780601f106108f557610100808354040283529160200191610920565b820191906000526020600020905b81548152906001019060200180831161090357829003601f168201915b5050505050905083565b6000600160801b6001600160a01b03831610156109da576000610955836001600160a01b03166110ae565b604051632d737e4960e21b8152909150730b306bf915c4d645ff596e518faf3f9669b970169063b5cdf92490610992908490600090600401611d40565b602060405180830381865af41580156109af573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906109d39190611d62565b9392505050565b5090565b919050565b60008181526003602052604081205481906060906001600160a01b0316610a1057600160801b9250610a2b565b6000848152600a60205260409020546001600160a01b031692505b6000848152600a60205260409020600181015460029091018054859291908190610a5490611c7b565b80601f0160208091040260200160405190810160405280929190818152602001828054610a8090611c7b565b8015610acd5780601f10610aa257610100808354040283529160200191610acd565b820191906000526020600020905b815481529060010190602001808311610ab057829003601f168201915b505050505090509250925092509193909250565b6000818152600360205260409020546001600160a01b03848116911614610b375760405162461bcd60e51b815260206004820152600a60248201526957524f4e475f46524f4d60b01b6044820152606401610748565b6001600160a01b038216610b815760405162461bcd60e51b81526020600482015260116024820152701253959053125117d49150d25412515395607a1b6044820152606401610748565b336001600160a01b0384161480610bbb57506001600160a01b038316600090815260066020908152604080832033845290915290205460ff165b80610bdc57506000818152600560205260409020546001600160a01b031633145b610c195760405162461bcd60e51b815260206004820152600e60248201526d1393d517d055551213d49256915160921b6044820152606401610748565b6001600160a01b0380841660008181526004602090815260408083208054600019019055938616808352848320805460010190558583526003825284832080546001600160a01b03199081168317909155600590925284832080549092169091559251849392917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b610cb3838383610ae1565b6001600160a01b0382163b1580610d5c5750604051630a85bd0160e11b8082523360048301526001600160a01b03858116602484015260448301849052608060648401526000608484015290919084169063150b7a029060a4016020604051808303816000875af1158015610d2c573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610d509190611d7b565b6001600160e01b031916145b610d9b5760405162461bcd60e51b815260206004820152601060248201526f155394d0519157d49150d2541251539560821b6044820152606401610748565b505050565b610da861159f565b600980546001600160a01b0319166001600160a01b0392909216919091179055565b6000818152600360205260409020546001600160a01b0316806109de5760405162461bcd60e51b815260206004820152600a6024820152691393d517d3525395115160b21b6044820152606401610748565b60608082516040519150602081048252602082016020850160005b83811015610e4f578181015183820152602001610e37565b505050810160200160405292915050565b60006001600160a01b038216610ea75760405162461bcd60e51b815260206004820152600c60248201526b5a45524f5f4144445245535360a01b6044820152606401610748565b506001600160a01b031660009081526004602052604090205490565b610ecb61159f565b610ed560006115f9565b565b6000858152600360205260409020546001600160a01b0316610f2f57610efd3286611649565b60078054600090815260086020526040812087905581546001929190610f24908490611d98565b90915550610f889050565b6000858152600360205260409020546001600160a01b03163214610f8857600085815260036020526040908190205490516324f3f02560e21b81526001600160a01b039091166004820152326024820152604401610748565b6040518060600160405280856001600160a01b0316815260200184815260200183838080601f0160208091040260200160405190810160405280939291908181526020018383808284376000920182905250939094525050878152600a6020908152604091829020845181546001600160a01b0319166001600160a01b0390911617815590840151600182015590830151909150600282019061102b9082611df9565b5050505050505050565b6002805461064590611c7b565b3360008181526006602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b6000818152600a6020908152604080832081516060818101845282546001600160a01b0316825260018301549482019490945260028201805494959491938401916110f890611c7b565b80601f016020809104026020016040519081016040528092919081815260200182805461112490611c7b565b80156111715780601f1061114657610100808354040283529160200191611171565b820191906000526020600020905b81548152906001019060200180831161115457829003601f168201915b505050505081525050905061119381516001600160a01b0316600160801b1490565b156111a1576109d381610609565b60006111b0826000015161092a565b905060006111bf836020015190565b905060006111d084604001516107ad565b90506000836001600160a01b031683836040516020016111f1929190611eb9565b60408051601f198184030181529082905261120b91611eea565b600060405180830381855afa9150503d8060008114611246576040519150601f19603f3d011682016040523d82523d6000602084013e61124b565b606091505b5098975050505050505050565b600080611266600284611f06565b60019081149493901c92915050565b61127d61159f565b7f8dca0271872d00b3de3abafca544c52fcd7d512dd852c9894fa2c118ac759a93600283836040516112b193929190611fce565b60405180910390a16002610d9b828483611ffe565b6112d1858585610ae1565b6001600160a01b0384163b15806113685750604051630a85bd0160e11b808252906001600160a01b0386169063150b7a02906113199033908a908990899089906004016120be565b6020604051808303816000875af1158015611338573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061135c9190611d7b565b6001600160e01b031916145b6113a75760405162461bcd60e51b815260206004820152601060248201526f155394d0519157d49150d2541251539560821b6044820152606401610748565b5050505050565b6113b661159f565b7fb65b7b5ea384affd30f77f842e057d29dd1b13f133adf69a724a8105b164ab75600183836040516113ea93929190611fce565b60405180910390a16001610d9b828483611ffe565b6000818152600360205260409020546060906001600160a01b03168061143b57604051630243d1a960e21b815260048101849052602401610748565b6000611446846110ae565b6009546040516328de0f2f60e01b81529192506001600160a01b0316906328de0f2f9061147c90879085906001906004016120fd565b600060405180830381865afa158015611499573d6000803e3d6000fd5b505050506040513d6000823e601f3d908101601f191682016040526114c19190810190612128565b949350505050565b604080516060808201835260008083526020830181905292820152906114ee836110ae565b6040805160608101825285815260009586526003602090815295829020546001600160a01b0316958101959095528401525090919050565b61152e61159f565b6001600160a01b0381166115935760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610748565b61159c816115f9565b50565b6000546001600160a01b03163314610ed55760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610748565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b6001600160a01b0382166116935760405162461bcd60e51b81526020600482015260116024820152701253959053125117d49150d25412515395607a1b6044820152606401610748565b6000818152600360205260409020546001600160a01b0316156116e95760405162461bcd60e51b815260206004820152600e60248201526d1053149150511657d3525395115160921b6044820152606401610748565b6001600160a01b038216600081815260046020908152604080832080546001019055848352600390915280822080546001600160a01b0319168417905551839291907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b6001600160e01b03198116811461159c57600080fd5b60006020828403121561177c57600080fd5b81356109d381611754565b634e487b7160e01b600052604160045260246000fd5b604051601f8201601f1916810167ffffffffffffffff811182821017156117c6576117c6611787565b604052919050565b6001600160a01b038116811461159c57600080fd5b600067ffffffffffffffff8211156117fd576117fd611787565b50601f01601f191660200190565b600082601f83011261181c57600080fd5b813561182f61182a826117e3565b61179d565b81815284602083860101111561184457600080fd5b816020850160208301376000918101602001919091529392505050565b60006020828403121561187357600080fd5b813567ffffffffffffffff8082111561188b57600080fd5b908301906060828603121561189f57600080fd5b6040516060810181811083821117156118ba576118ba611787565b60405282356118c8816117ce565b8152602083810135908201526040830135828111156118e657600080fd5b6118f28782860161180b565b60408301525095945050505050565b60005b8381101561191c578181015183820152602001611904565b50506000910152565b6000815180845261193d816020860160208601611901565b601f01601f19169290920160200192915050565b6020815260006109d36020830184611925565b60006020828403121561197657600080fd5b5035919050565b6000806040838503121561199057600080fd5b823561199b816117ce565b946020939093013593505050565b6000602082840312156119bb57600080fd5b813567ffffffffffffffff8111156119d257600080fd5b6114c18482850161180b565b60018060a01b0384168152826020820152606060408201526000611a056060830184611925565b95945050505050565b600060208284031215611a2057600080fd5b81356109d3816117ce565b600080600060608486031215611a4057600080fd5b8335611a4b816117ce565b92506020840135611a5b816117ce565b929592945050506040919091013590565b6020808252825182820181905260009190848201906040850190845b81811015611aa457835183529284019291840191600101611a88565b50909695505050505050565b60008083601f840112611ac257600080fd5b50813567ffffffffffffffff811115611ada57600080fd5b602083019150836020828501011115611af257600080fd5b9250929050565b600080600080600060808688031215611b1157600080fd5b853594506020860135611b23816117ce565b935060408601359250606086013567ffffffffffffffff811115611b4657600080fd5b611b5288828901611ab0565b969995985093965092949392505050565b60008060408385031215611b7657600080fd5b8235611b81816117ce565b915060208301358015158114611b9657600080fd5b809150509250929050565b60008060208385031215611bb457600080fd5b823567ffffffffffffffff811115611bcb57600080fd5b611bd785828601611ab0565b90969095509350505050565b600080600080600060808688031215611bfb57600080fd5b8535611c06816117ce565b94506020860135611b23816117ce565b602081528151602082015260018060a01b036020830151166040820152600060408301516060808401526114c16080840182611925565b60008060408385031215611c6057600080fd5b8235611c6b816117ce565b91506020830135611b96816117ce565b600181811c90821680611c8f57607f821691505b602082108103611caf57634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052603260045260246000fd5b80516020808301519190811015611caf5760001960209190910360031b1b16919050565b60008351611d01818460208801611901565b9190910191825250602001919050565b634e487b7160e01b600052601160045260246000fd5b600060018201611d3957611d39611d11565b5060010190565b604081526000611d536040830185611925565b90508260208301529392505050565b600060208284031215611d7457600080fd5b5051919050565b600060208284031215611d8d57600080fd5b81516109d381611754565b8082018082111561060357610603611d11565b601f821115610d9b57600081815260208120601f850160051c81016020861015611dd25750805b601f850160051c820191505b81811015611df157828155600101611dde565b505050505050565b815167ffffffffffffffff811115611e1357611e13611787565b611e2781611e218454611c7b565b84611dab565b602080601f831160018114611e5c5760008415611e445750858301515b600019600386901b1c1916600185901b178555611df1565b600085815260208120601f198616915b82811015611e8b57888601518255948401946001909101908401611e6c565b5085821015611ea95787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b6001600160e01b0319831681528151600090611edc816004850160208701611901565b919091016004019392505050565b60008251611efc818460208701611901565b9190910192915050565b600082611f2357634e487b7160e01b600052601260045260246000fd5b500690565b60008154611f3581611c7b565b808552602060018381168015611f525760018114611f6c57611f9a565b60ff1985168884015283151560051b880183019550611f9a565b866000528260002060005b85811015611f925781548a8201860152908301908401611f77565b890184019650505b505050505092915050565b81835281816020850137506000828201602090810191909152601f909101601f19169091010190565b604081526000611fe16040830186611f28565b8281036020840152611ff4818587611fa5565b9695505050505050565b67ffffffffffffffff83111561201657612016611787565b61202a836120248354611c7b565b83611dab565b6000601f84116001811461205e57600085156120465750838201355b600019600387901b1c1916600186901b1783556113a7565b600083815260209020601f19861690835b8281101561208f578685013582556020948501946001909201910161206f565b50868210156120ac5760001960f88860031b161c19848701351681555b505060018560011b0183555050505050565b6001600160a01b03868116825285166020820152604081018490526080606082018190526000906120f29083018486611fa5565b979650505050505050565b8381526060602082015260006121166060830185611925565b8281036040840152611ff48185611f28565b60006020828403121561213a57600080fd5b815167ffffffffffffffff81111561215157600080fd5b8201601f8101841361216257600080fd5b805161217061182a826117e3565b81815285602083850101111561218557600080fd5b611a0582602083016020860161190156fea2646970667358221220f213b9045b40918ed2b5d304162ec2dfc3bc6b581b97362b423df61fd1436e5c64736f6c63430008150033a264697066735822122016636ee300fab238f4f099f32ba33a2f9dd9cbd27246df211a2a76dcc4263a7a64736f6c634300081500330000000000000000000000009a9f2ccfde556a7e9ff0848998aa4a0cfd8863ae000000000000000000000000000000000000000000000000002386f26fc10000", + "nonce": "0x13", + "accessList": [] + }, + "additionalContracts": [], + "isFixedGasLimit": false + } + ], + "receipts": [ + { + "transactionHash": "0xe357233cf4678196a1b884bca299643c371f7155cc4db8c55399443c9a8b2939", + "transactionIndex": "0x0", + "blockHash": "0xf93bb5c0b434d71c6fe51ece262b890384eadbac0de65c79b9496ec3ce5ece3a", + "blockNumber": "0xa", + "from": "0xf39Fd6e51aad88F6F4ce6aB8827279cffFb92266", + "to": null, + "cumulativeGasUsed": "0xf071f", + "gasUsed": "0xf071f", + "contractAddress": "0x0B306BF915C4d645ff596e518fAf3F9669b97016", + "logs": [], + "status": "0x1", + "logsBloom": "0x00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", + "type": "0x2", + "effectiveGasPrice": "0xc859e0df" + }, + { + "transactionHash": "0x75e4ec01b1665bf373068e080280c5d7f34ad2232cfbd48a4bcbbe8b1399a78d", + "transactionIndex": "0x0", + "blockHash": "0x4d48f01e2634049cf0a8ba4cdbd6e7a2d8570dfadd9106530c8827cc4a3daf63", + "blockNumber": "0xb", + "from": "0xf39Fd6e51aad88F6F4ce6aB8827279cffFb92266", + "to": null, + "cumulativeGasUsed": "0x23aa9", + "gasUsed": "0x23aa9", + "contractAddress": "0x959922bE3CAee4b8Cd9a407cc3ac1C251C2007B1", + "logs": [], + "status": "0x1", + "logsBloom": "0x00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", + "type": "0x2", + "effectiveGasPrice": "0xc5d5f0a1" + }, + { + "transactionHash": "0x60e70bf4eaa7b7048df5d1b67488f6b92dcb080a090de15c7858336c3b445931", + "transactionIndex": "0x0", + "blockHash": "0x543b58f637495ca5febd7b49cfb9bb6e79982f82c8a1229446ed4fc82518e194", + "blockNumber": "0xc", + "from": "0xf39Fd6e51aad88F6F4ce6aB8827279cffFb92266", + "to": null, + "cumulativeGasUsed": "0x2616fd", + "gasUsed": "0x2616fd", + "contractAddress": "0x9A9f2CCfdE556A7E9Ff0848998Aa4a0CFD8863AE", + "logs": [], + "status": "0x1", + "logsBloom": "0x00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", + "type": "0x2", + "effectiveGasPrice": "0xc37b2bf0" + }, + { + "transactionHash": "0x7f7bef911cf04f998b25cad5f028708984de41af957e853d432e3c974e9383e5", + "transactionIndex": "0x1", + "blockHash": "0x543b58f637495ca5febd7b49cfb9bb6e79982f82c8a1229446ed4fc82518e194", + "blockNumber": "0xc", + "from": "0xf39Fd6e51aad88F6F4ce6aB8827279cffFb92266", + "to": null, + "cumulativeGasUsed": "0x29452b", + "gasUsed": "0x32e2e", + "contractAddress": "0x68B1D87F95878fE05B998F19b66F4baba5De1aed", + "logs": [], + "status": "0x1", + "logsBloom": "0x00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", + "type": "0x2", + "effectiveGasPrice": "0xc37b2bf0" + }, + { + "transactionHash": "0xac397d88eee5468d00008bcd59865c816b5847e6cb86f7c16cc1224926c279a8", + "transactionIndex": "0x2", + "blockHash": "0x543b58f637495ca5febd7b49cfb9bb6e79982f82c8a1229446ed4fc82518e194", + "blockNumber": "0xc", + "from": "0xf39Fd6e51aad88F6F4ce6aB8827279cffFb92266", + "to": null, + "cumulativeGasUsed": "0x528559", + "gasUsed": "0x29402e", + "contractAddress": "0x3Aa5ebB10DC797CAC828524e59A333d0A371443c", + "logs": [ + { + "address": "0x3Aa5ebB10DC797CAC828524e59A333d0A371443c", + "topics": [ + "0x8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0", + "0x0000000000000000000000000000000000000000000000000000000000000000", + "0x000000000000000000000000f39fd6e51aad88f6f4ce6ab8827279cfffb92266" + ], + "data": "0x", + "blockHash": "0x543b58f637495ca5febd7b49cfb9bb6e79982f82c8a1229446ed4fc82518e194", + "blockNumber": "0xc", + "transactionHash": "0xac397d88eee5468d00008bcd59865c816b5847e6cb86f7c16cc1224926c279a8", + "transactionIndex": "0x2", + "logIndex": "0x2", + "transactionLogIndex": "0x0", + "removed": false + } + ], + "status": "0x1", + "logsBloom": "0x00000000000000000000000000000000000000000000000000800000000000000000000000000000000800000010000000000000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000020000000000000100000800000000000000000000000000000000400000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000200000000000000000000000002000000000000000000020000000000000000000000000004000000000000000000000000000000000000000", + "type": "0x2", + "effectiveGasPrice": "0xc37b2bf0" + } + ], + "libraries": [ + "lib/eth-projects-monorepo/packages/eth-projects-contracts/contracts/lib/utils/Bytes.sol:Bytes:0x0b306bf915c4d645ff596e518faf3f9669b97016" + ], + "pending": [], + "returns": {}, + "timestamp": 1690363242, + "chain": 31337, + "multi": false, + "commit": null +} \ No newline at end of file diff --git a/packages/starksheet-solidity/broadcast/Evmsheet.s.sol/31337/run-1690364258.json b/packages/starksheet-solidity/broadcast/Evmsheet.s.sol/31337/run-1690364258.json new file mode 100644 index 00000000..e314aea7 --- /dev/null +++ b/packages/starksheet-solidity/broadcast/Evmsheet.s.sol/31337/run-1690364258.json @@ -0,0 +1,209 @@ +{ + "transactions": [ + { + "hash": "0x96f49738943866e78d089daf271983026c0c6a92e9aef2fc8d137c17247c6372", + "transactionType": "CREATE", + "contractName": "Bytes", + "contractAddress": "0xc6e7DF5E7b4f2A278906862b61205850344D4e7d", + "function": null, + "arguments": null, + "transaction": { + "type": "0x02", + "from": "0xf39fd6e51aad88f6f4ce6ab8827279cfffb92266", + "gas": "0x1387dd", + "data": "0x6110d661003a600b82828239805160001a60731461002d57634e487b7160e01b600052600060045260246000fd5b30600052607381538281f3fe73000000000000000000000000000000000000000030146080604052600436106101625760003560e01c8063a5eb31ee116100cd578063d1ffb56111610086578063d1ffb561146103fb578063d442584f1461042b578063e004139614610454578063f1142fb314610474578063f647f8fb14610487578063f83b670f146104b257600080fd5b8063a5eb31ee14610344578063a8d8f00f1461036b578063b5cdf92414610396578063b63711df146103a9578063be8b3430146103bc578063c29616bd146103cf57600080fd5b80635ef849301161011f5780635ef8493014610241578063913c97b41461026b57806397e6175c1461029f57806399dd9bd7146102cb5780639ae4c3d1146102ec5780639cee499e1461031857600080fd5b8063042aa0841461016757806305d3bb74146101985780631a7431ef146101c0578063235266d2146101e357806348137709146101f65780634d66a2ae1461021b575b600080fd5b61017a610175366004610ec0565b6104de565b6040516001600160d01b031990911681526020015b60405180910390f35b6101ab6101a6366004610ec0565b610540565b60405163ffffffff909116815260200161018f565b6101d36101ce366004610f05565b61059d565b604051901515815260200161018f565b6101d36101f1366004610f4c565b610652565b610209610204366004610ec0565b6106b5565b60405160ff909116815260200161018f565b61022e610229366004610fa6565b610711565b60405161ffff909116815260200161018f565b61025461024f366004610ec0565b61071e565b60405165ffffffffffff909116815260200161018f565b61027e610279366004610ec0565b610772565b6040516fffffffffffffffffffffffffffffffff909116815260200161018f565b6102b26102ad366004610ec0565b6107d0565b6040516001600160a01b0319909116815260200161018f565b6102de6102d9366004610ec0565b61082e565b60405190815260200161018f565b6102ff6102fa366004610ec0565b61088c565b60405167ffffffffffffffff909116815260200161018f565b61032b610326366004610ec0565b6108e9565b6040516001600160d81b0319909116815260200161018f565b610357610352366004610ec0565b610946565b60405162ffffff909116815260200161018f565b61037e610379366004610ec0565b6109a3565b60405166ffffffffffffff909116815260200161018f565b6102de6103a4366004610ec0565b610a00565b6102ff6103b7366004610ec0565b610a55565b61022e6103ca366004610ec0565b610aa9565b6103e26103dd366004610ec0565b610b06565b6040516001600160c81b0319909116815260200161018f565b61040e610409366004610ec0565b610b5a565b6040516bffffffffffffffffffffffff909116815260200161018f565b61043e610439366004610ec0565b610bae565b60405164ffffffffff909116815260200161018f565b610467610462366004610fe3565b610c02565b60405161018f9190611031565b6102b2610482366004610ec0565b610d0f565b61049a610495366004610ec0565b610d64565b6040516001600160a01b03909116815260200161018f565b6104c56104c0366004610ec0565b610dc9565b6040516001600160f81b0319909116815260200161018f565b60006104eb82600661107f565b835110156105375760405162461bcd60e51b8152602060048201526014602482015273746f4279746573365f6f75744f66426f756e647360601b60448201526064015b60405180910390fd5b50016006015190565b600061054d82600461107f565b835110156105945760405162461bcd60e51b8152602060048201526014602482015273746f55696e7433325f6f75744f66426f756e647360601b604482015260640161052e565b50016004015190565b600080600190508354600260018083161561010002038216048451808214600181146105cc5760009450610644565b821561064457602083106001811461062957600189600052602060002060208a018581015b600284828410010361062057815183541461060f5760009950600093505b6001830192506020820191506105f1565b50505050610642565b6101008086040294506020880151851461064257600095505b505b509293505050505b92915050565b81518151600091600191811480831461066e57600092506106ab565b600160208701838101602088015b60028483851001036106a657805183511461069a5760009650600093505b6020928301920161067c565b505050505b5090949350505050565b60006106c282600161107f565b835110156107085760405162461bcd60e51b8152602060048201526013602482015272746f55696e74385f6f75744f66426f756e647360681b604482015260640161052e565b50016001015190565b600061064c826000610aa9565b600061072b82600661107f565b835110156105375760405162461bcd60e51b8152602060048201526014602482015273746f55696e7434385f6f75744f66426f756e647360601b604482015260640161052e565b600061077f82601061107f565b835110156107c75760405162461bcd60e51b8152602060048201526015602482015274746f55696e743132385f6f75744f66426f756e647360581b604482015260640161052e565b50016010015190565b60006107dd82600c61107f565b835110156108255760405162461bcd60e51b8152602060048201526015602482015274746f427974657331325f6f75744f66426f756e647360581b604482015260640161052e565b5001600c015190565b600061083b82602061107f565b835110156108835760405162461bcd60e51b8152602060048201526015602482015274746f427974657333325f6f75744f66426f756e647360581b604482015260640161052e565b50016020015190565b600061089982600861107f565b835110156108e05760405162461bcd60e51b8152602060048201526014602482015273746f55696e7436345f6f75744f66426f756e647360601b604482015260640161052e565b50016008015190565b60006108f682600561107f565b8351101561093d5760405162461bcd60e51b8152602060048201526014602482015273746f4279746573355f6f75744f66426f756e647360601b604482015260640161052e565b50016005015190565b600061095382600361107f565b8351101561099a5760405162461bcd60e51b8152602060048201526014602482015273746f55696e7432345f6f75744f66426f756e647360601b604482015260640161052e565b50016003015190565b60006109b082600761107f565b835110156109f75760405162461bcd60e51b8152602060048201526014602482015273746f55696e7435365f6f75744f66426f756e647360601b604482015260640161052e565b50016007015190565b6000610a0d82602061107f565b835110156108835760405162461bcd60e51b8152602060048201526015602482015274746f55696e743235365f6f75744f66426f756e647360581b604482015260640161052e565b6000610a6282600861107f565b835110156108e05760405162461bcd60e51b8152602060048201526014602482015273746f4279746573385f6f75744f66426f756e647360601b604482015260640161052e565b6000610ab682600261107f565b83511015610afd5760405162461bcd60e51b8152602060048201526014602482015273746f55696e7431365f6f75744f66426f756e647360601b604482015260640161052e565b50016002015190565b6000610b1382600761107f565b835110156109f75760405162461bcd60e51b8152602060048201526014602482015273746f4279746573375f6f75744f66426f756e647360601b604482015260640161052e565b6000610b6782600c61107f565b835110156108255760405162461bcd60e51b8152602060048201526014602482015273746f55696e7439365f6f75744f66426f756e647360601b604482015260640161052e565b6000610bbb82600561107f565b8351101561093d5760405162461bcd60e51b8152602060048201526014602482015273746f55696e7434305f6f75744f66426f756e647360601b604482015260640161052e565b606081610c1081601f61107f565b1015610c4f5760405162461bcd60e51b815260206004820152600e60248201526d736c6963655f6f766572666c6f7760901b604482015260640161052e565b610c59828461107f565b84511015610c9d5760405162461bcd60e51b8152602060048201526011602482015270736c6963655f6f75744f66426f756e647360781b604482015260640161052e565b606082158015610cbc5760405191506000825260208201604052610d06565b6040519150601f8416801560200281840101858101878315602002848b0101015b81831015610cf5578051835260209283019201610cdd565b5050858452601f01601f1916604052505b50949350505050565b6000610d1c82601061107f565b835110156107c75760405162461bcd60e51b8152602060048201526015602482015274746f427974657331365f6f75744f66426f756e647360581b604482015260640161052e565b6000610d7182601461107f565b83511015610db95760405162461bcd60e51b8152602060048201526015602482015274746f416464726573735f6f75744f66426f756e647360581b604482015260640161052e565b500160200151600160601b900490565b6000610dd682600161107f565b835110156107085760405162461bcd60e51b8152602060048201526014602482015273746f4279746573315f6f75744f66426f756e647360601b604482015260640161052e565b634e487b7160e01b600052604160045260246000fd5b600082601f830112610e4457600080fd5b813567ffffffffffffffff80821115610e5f57610e5f610e1d565b604051601f8301601f19908116603f01168101908282118183101715610e8757610e87610e1d565b81604052838152866020858801011115610ea057600080fd5b836020870160208301376000602085830101528094505050505092915050565b60008060408385031215610ed357600080fd5b823567ffffffffffffffff811115610eea57600080fd5b610ef685828601610e33565b95602094909401359450505050565b60008060408385031215610f1857600080fd5b82359150602083013567ffffffffffffffff811115610f3657600080fd5b610f4285828601610e33565b9150509250929050565b60008060408385031215610f5f57600080fd5b823567ffffffffffffffff80821115610f7757600080fd5b610f8386838701610e33565b93506020850135915080821115610f9957600080fd5b50610f4285828601610e33565b600060208284031215610fb857600080fd5b813567ffffffffffffffff811115610fcf57600080fd5b610fdb84828501610e33565b949350505050565b600080600060608486031215610ff857600080fd5b833567ffffffffffffffff81111561100f57600080fd5b61101b86828701610e33565b9660208601359650604090950135949350505050565b600060208083528351808285015260005b8181101561105e57858101830151858201604001528201611042565b506000604082860101526040601f19601f8301168501019250505092915050565b8082018082111561064c57634e487b7160e01b600052601160045260246000fdfea26469706673582212200ab05fdff7c9159a360effa700137333459105198b03327bed2de33488aa4ec064736f6c63430008150033", + "nonce": "0x14", + "accessList": [] + }, + "additionalContracts": [], + "isFixedGasLimit": false + }, + { + "hash": "0xb5ea6763b8d3b5b2892960eba919ecdf1b4ec24d27676e16e331097233f5640d", + "transactionType": "CREATE", + "contractName": "MultiSendCallOnly", + "contractAddress": "0x59b670e9fA9D0A427751Af201D676719a970857b", + "function": null, + "arguments": null, + "transaction": { + "type": "0x02", + "from": "0xf39fd6e51aad88f6f4ce6ab8827279cfffb92266", + "gas": "0x2e5b4", + "value": "0x0", + "data": "0x608060405234801561001057600080fd5b506101ae806100206000396000f3fe60806040526004361061001e5760003560e01c80638d80ff0a14610023575b600080fd5b6100366100313660046100c7565b610038565b005b805160205b818110156100ac578083015160f81c6001820184015160601c601583018501516035840186015160558501870160008560008114610082576001811461001e5761008e565b6000808585888a5af191505b508061009957600080fd5b505080605501850194505050505061003d565b505050565b634e487b7160e01b600052604160045260246000fd5b6000602082840312156100d957600080fd5b813567ffffffffffffffff808211156100f157600080fd5b818401915084601f83011261010557600080fd5b813581811115610117576101176100b1565b604051601f8201601f19908116603f0116810190838211818310171561013f5761013f6100b1565b8160405282815287602084870101111561015857600080fd5b82602086016020830137600092810160200192909252509594505050505056fea2646970667358221220915f2e68ab0008ebbb1ed69f9c5c2817995c2578db9a979f782235cb1216b32764736f6c63430008150033", + "nonce": "0x15", + "accessList": [] + }, + "additionalContracts": [], + "isFixedGasLimit": false + }, + { + "hash": "0x968aa116febaf3b74ccdd54e2d513fdce14c7d6dfbed59354c5ce1176622aad8", + "transactionType": "CREATE", + "contractName": "BasicCellRenderer", + "contractAddress": "0x4ed7c70F96B99c776995fB64377f0d4aB3B0e1C1", + "function": null, + "arguments": null, + "transaction": { + "type": "0x02", + "from": "0xf39fd6e51aad88f6f4ce6ab8827279cfffb92266", + "gas": "0x3180ad", + "value": "0x0", + "data": "0x608060405234801561001057600080fd5b50612c25806100206000396000f3fe608060405234801561001057600080fd5b50600436106100365760003560e01c806306d4cd8b1461003b57806328de0f2f14610064575b600080fd5b61004e610049366004610322565b610077565b60405161005b919061038b565b60405180910390f35b61004e610072366004610404565b6100f1565b60606000610086600f846104fc565b90506000610095600f8361051e565b61009f9085610535565b905060006100ae826041610548565b60f81b9050806100c76100c2856001610548565b6101b6565b6040516020016100d8929190610577565b6040516020818303038152906040529350505050919050565b606060006100fe86610077565b90508383826101838873c6e7df5e7b4f2a278906862b61205850344d4e7d63b5cdf924909160006040518363ffffffff1660e01b81526004016101429291906105a8565b602060405180830381865af415801561015f573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906100c291906105ca565b87878660405160200161019c97969594939291906105f2565b604051602081830303815290604052915050949350505050565b606060006101c383610249565b600101905060008167ffffffffffffffff8111156101e3576101e36103a5565b6040519080825280601f01601f19166020018201604052801561020d576020820181803683370190505b5090508181016020015b600019016f181899199a1a9b1b9c1cb0b131b232b360811b600a86061a8153600a850494508461021757509392505050565b60008072184f03e93ff9f4daa797ed6e38ed64bf6a1f0160401b83106102885772184f03e93ff9f4daa797ed6e38ed64bf6a1f0160401b830492506040015b6d04ee2d6d415b85acef810000000083106102b4576d04ee2d6d415b85acef8100000000830492506020015b662386f26fc1000083106102d257662386f26fc10000830492506010015b6305f5e10083106102ea576305f5e100830492506008015b61271083106102fe57612710830492506004015b60648310610310576064830492506002015b600a831061031c576001015b92915050565b60006020828403121561033457600080fd5b5035919050565b60005b8381101561035657818101518382015260200161033e565b50506000910152565b6000815180845261037781602086016020860161033b565b601f01601f19169290920160200192915050565b60208152600061039e602083018461035f565b9392505050565b634e487b7160e01b600052604160045260246000fd5b60008083601f8401126103cd57600080fd5b50813567ffffffffffffffff8111156103e557600080fd5b6020830191508360208285010111156103fd57600080fd5b9250929050565b6000806000806060858703121561041a57600080fd5b84359350602085013567ffffffffffffffff8082111561043957600080fd5b818701915087601f83011261044d57600080fd5b81358181111561045f5761045f6103a5565b604051601f8201601f19908116603f01168101908382118183101715610487576104876103a5565b816040528281528a60208487010111156104a057600080fd5b8260208601602083013760006020848301015280975050505060408701359150808211156104cd57600080fd5b506104da878288016103bb565b95989497509550505050565b634e487b7160e01b600052601160045260246000fd5b60008261051957634e487b7160e01b600052601260045260246000fd5b500490565b808202811582820484141761031c5761031c6104e6565b8181038181111561031c5761031c6104e6565b8082018082111561031c5761031c6104e6565b6000815161056d81856020860161033b565b9290920192915050565b6001600160f81b031983168152815160009061059a81600185016020870161033b565b919091016001019392505050565b6040815260006105bb604083018561035f565b90508260208301529392505050565b6000602082840312156105dc57600080fd5b5051919050565b81818437506000910190815290565b7f646174613a6170706c69636174696f6e2f6a736f6e2c7b22646573637269707481527f696f6e223a2022537461726b7368656574222c20226e616d65223a202200000060208201528688603d8301376000878201602160f81b603d820152875161066481603e840160208c0161033b565b7f222c22696d616765223a2022646174613a696d6167652f7376672b786d6c2c25603e92909101918201527f334373766725323076696577426f782533442532373025323030253230383925605e8201527f3230353525323725323066696c6c2533442532376e6f6e65253237253230786d607e8201527f6c6e73253344253237687474702533412f2f7777772e77332e6f72672f323030609e8201527f302f737667253237253345253343646566732533452533437374796c6525334560be8201527f253430666f6e742d66616365253230253742666f6e742d66616d696c7925334160de8201527f253230253237507265737325323053746172742532303250253237253342737260fe8201527f6325334125323075726c25323825323764617461253341666f6e742f776f666661011e8201527f32253342626173653634253243643039474d6741424141414141424c3841413861013e8201527f41414141415235774141424b674141454141414141414141414141414141414161015e8201527f4141414141414141414141414150305a4756453063476a41624d42794358675a61017e8201527f6741494e794551674b3846545361517544524141424e67496b41344e4d42434161019e8201527f46687a5148684649623644566c42306a314f4d4253336f4f4953744562732f2f6101be8201527f2f6c4a776356727a47634f30676f684c45484d6369694443434e57695a6761306101de8201527f79625345555954514f6a4b427038546c737a7344526438716174586c333058746101fe8201527f30645a47467952305668444b776c62746c25324272734643773945316e64655961021e8201527f4a74732f37527762305673784d71576c636a6a775445537a2f5568752f77337361023e8201527f33746b6f496d70343464515168576f456d54337579526d70746f7553446b7a5761025e8201527f454138762f3932364a4b7539486f696e6e3673376674336d4965476c7737547161027e8201527f6437456f326a46517849766a5642494a70563269614f62547a68575932314e7461029e8201527f476772687434704d4b3457556a34624c7967542f51253242514c7879253242336102be8201527f6c482f362f6b6275496444497239446a724a496a6f394a7336524d58253242456102de8201527f6b37424f545a6b6d70397a347455524652566656307148504448375a7462364a6102fe8201527f616f6130684c335975616232473373667a72365776394536793569767025324261031e8201527f7135564c74426a514478476f5345304150313762336466376c61726a6525324261033e8201527f73637a6b7241744a334b6657304a342532424b323365744b4b556a383554616f61035e8201527f57473453346158436c427743413268676141652532423658396f696e32304e6261037e8201527f554a7264466767517049686d5247494d30372f7025324277375a7058316c473161039e8201527f6a6a51787073435141423438714445415042346950312f6a39592f4261686a356103be8201527f5943414e302f78714157496852616a6c6e694e654f50396e78433466667932556103de8201527f694843304e47386b686f6f567a6f7459334445417a417a41356b473735337a6a6103fe8201527f4853354d6e6d586b69496a6d54554d36556d4d3025324256346976752f48377861041e8201527f6a364666322f6b343472787a6449324141676742492f4c48416b394a7a35554d61043e8201527f496f4c7755344146455435725a464f33444d616655633061777351434879497061045e8201527f557a546b30784a474a454f6a4e6871436b474570496153474f6a714e466d2f5761047e8201527f4e434e3569636b71434d6e414165564c4d4c655867356971386b365752585a5261049e8201527f326c337042393831427a73475a743225324256696c4342723954494a674b67786104be8201527f365542514446253242566a4b44714e7741414948386a6949664d6e75384b68666104de8201527f584b486f4e3348634134477245786842324155442f795a554d423857547579496104fe8201527f413444634f4b656434397939504249616e426967734d454e38556b30766c547661051e8201527f304a58334e394d795a75544d763573655357413525324238556538504465547261053e8201527f645467474973566d4e33635856586a6463795275633434385866664176506e7361055e8201527f3575324d4531722532426a4731703137767a3849704f416e483444427367793361057e8201527f512f54376b33646d2f3846334232377355694877464631414f6c683055646e4961059e8201527f4471494e5164506355393145786f2f346252696a6a5169704e4e307a4c646c7a6105be8201527f504438496f547449734c38717162746f4f5149514a5a567849705931315073536105de8201527f55533231397a4c585066642f507667765751346372464d2532425769755671706105fe8201527f645a6f4e6475645872632f4745324d4a36656e3575635746694763375274364f61061e8201527f487676354d674c2532427a44733578444277696141315433554877326b63594361063e8201527f312f55666453316645316d37763742346537653350574848786533594f32483561065e8201527f25324241504f5a7965503025324251506553425468793078713965363241486a61067e8201527f6141556842432f364144484c6f476f4f657636412532426867487369317a613861069e8201527f71355a4e4d716a596c575a4d713867354248445574495370574a73526f52544a6106be8201527f56613049305a3957546b5371564b73507a3464586a7648746449684c6e7670746106de8201527f554c4330753542567579414d544b4a513930594b5267546e5769476b6d7153456106fe8201527f714b6d7256685259674b6b335443686255573671456f45637665577a6859535461071e8201527f4c32484e706735452f6d7151393956564467763352475435586d33637a68754c61073e8201527f3972685864316132372f736c5130686959366a643739614f5a43746a6f52687261075e8201527f623136575676514b725734477a786a7869723238494d697a2f7155447973495761077e8201527f7037516a667765347a556437614a735651575179524c554b484b42577938577661079e8201527f45565333584d53353656337757644f442532424638757639645477496d4b722f6107be8201527f5064626d5763775176456641616a7975566a70784e32704f56635769336c38776107de8201527f454c2f6d395070646f55494536253242504b5838315041546d67654f304231736107fe8201527f47454825324261707a353466646d534a7a333741686635366a4c7739756e504561081e8201527f35644d4b3025324237544639563843435466523979664e7355493474557a464661083e8201527f42326e536e384b4f626a64446964554c7034494a6873777878595172595a643661085e8201527f4e76436e55394d445825324252654c6e4d546d6c315a453972306b5077334e3261087e8201527f6752253242736a4573596d4953706b356c31497333594e614a4b6f6e7a65703761089e8201527f56637354316e556b62347048774b5a41796b614b6f43504630506f6d456876496108be8201527f5758656e6f5a767836774f4b313070316c3274546858793850316555776473766108de8201527f53715157766f424d7473674851554a614774494273756861776450545a5378596108fe8201527f707257757734647a7231564755744449465871726f4d4d69597346783857695461091e8201527f336463574b6f376d50554c79715657413972305974524a4c626957766a6e4c2561093e8201527f324272633452646767624e516c514141613264306d616236364d48447074314361095e8201527f6477626b51436253375053445a4d7a3746724f51713165636153304a6c74644161097e8201527f6c44527941587173364130586247707748676b70367572557757416272464d3361099e8201527f75794d764e4b6c344d6c435548537950416d3931776144454a3559595148754a6109be8201527f4d32304b575251737637486b61334770686c533258444b714f4b4245554753316109de8201527f65306b63316f323449494166486c4449794278584a4a656767423369386174566109fe8201527f67434f3064444f5a484a57596a564c416a6a397137765673456e72684b374568610a1e8201527f4c75427a42586d4d674554634531636d61436976504b6f4a766670466c794935610a3e8201527f4d70584234454325324245672f596d303454787843354e6c73596b74646f5951610a5e8201527f55656c38624673456c3748345a36734377622f38626b347458574658504b6a71610a7e8201527f5462526e64336e4c5770394f784941706c664b586747684e6c72443462354a4c610a9e8201527f5a367055753441726756614d366561357844574244476f7a707a4641376e6747610abe8201527f74596334486141775269475576637653653652414177335a576b564f4667764b610ade8201527f46364955696c4d49394964715155345134585264484866736666517770313955610afe8201527f434a49306a5773725433356f5578303678507268473271364d4533554f306c63610b1e8201527f635a557354454351784a44527854444b6c334c4948722f6162546f73686c6466610b3e8201527f51786a364f57745273466e6966444373473674336b426f344e6d424a6d615556610b5e8201527f54636c794951414a4c6a6e723042365a3859464d6e396b397967703752727848610b7e8201527f36766877624a4e41654b4d554436353974386746514a4d5377652f434f624850610b9e8201527f467671484746554e5266253242737245663354584b42725a76676b6369396972610bbe8201527f426d63442f7458616754474358634e68432532424f3539754c706e6673796f71610bde8201527f4c53313238374552776d38666165564f6d3857634437386c5a36594232793938610bfe8201527f5a4c6c4d3972557264324c514e6c324956643454727376675139363079377573610c1e8201527f5965306854506170576a71726c2532425837784665424e54253242315a644a4a610c3e8201527f572532424678745737584e7774634e7a7761672532425256656a6d4a6839656d610c5e8201527f6c495a4b69694e63694b3849554f4d33556a4a376342554e5847505853326c68610c7e8201527f253242687770676f4836567348524f63764569723372585970344c7769435a77610c9e8201527f3176486c43623552314d68623564536e4f326d6e6f475a6f5846315765574757610cbe8201527f6d7a694a314a555534715072306e694a536c4e424331636b4b6d4a6657625877610cde8201527f5577757449547a456d6a776770776142753464525066746a2f4e384143526e64610cfe8201527f616b2f4641674b674c37305058577839767a6b59322532426d34355473496b4c610d1e8201527f3037616f70444e6f676830535262535a534f397a744657516a376e574c676275610d3e8201527f364325324254374b6a44715a3667456e5277674d78306b4c5a77797962514f76610d5e8201527f514130773054782f354a42722f63595a6453574f546a774446364e6f586b796a610d7e8201527f33566a484e4751494e76426a5a734a4a3377466141516d6f5a575a5970416961610d9e8201527f574f466e6e686455524176576b557a77693062677a5a4158796f445545714863610dbe8201527f57307069454c574f777168773365765478444957724e32495371525151454c41610dde8201527f4d32365334486c723548552f48784a43436844424a6b756b6341573856415430610dfe8201527f6770545a544b4e48677a444f7234314751656a4f34677a416e6b577077464752610e1e8201527f43334c625231787a4b434875365635694674674c704f384b51596d5965467868610e3e8201527f4c32643838736469506a2f76306b427a636c51637954735766324d6445394944610e5e8201527f386d5858576a72434b253242354532756e336e6976656973526e726971317548610e7e8201527f594d6a6a69694945304b6466674d6f3163476d6b557254624f30356732737633610e9e8201527f477673525971762f61457736375472644f705435567a4641364131417939634b610ebe8201527f6f44667762544a64445750524e57517354796a6d3772486249734b466b6f4f2f610ede8201527f5a4c4376735966785973337768534338614c49344b765677373773336e347a48610efe8201527f67697061634a6e435362463945727a53357069386343577655597a4f5064327a610f1e8201527f684a2f4750437a53684f453378596c634f3350796164586a54334f6b68706841610f3e8201527f58465853766865544e5355525446565641486f4a6d7949726b6a454b6f517746610f5e8201527f4730303554334158643935764e30446d336d427332786746546c253242513572610f7e8201527f73416a6e744768707a6f62643642374e7a52664e56653130446f4e5639343753610f9e8201527f59646f635252624776636d785456786f61367a717756376d416e773544314745610fbe8201527f5474327a48382532425476514256356e37672f32615768743979794e594c3974610fde8201527f4f42744167384846435945316d4e775432454232467538544968543776565241610ffe8201527f3461587a6e6b3670545a4e6779696f73747749364b654655374c696c7041253261101e8201527f42334234474a794277574d327062466a4876734a3747754f6f616b6a6d46746a61103e8201527f59344c6254396c323239253242453646374c4475577a744c6e333749786b386a61105e8201527f356c42564b33774c7369362f416641756f6a34396c4d6b5653545045396b704761107e8201527f64304c724555534a4941413070596c4178414d642f4e4f46776f4a446458466961109e8201527f307a4f5744422f54464a705666575642574f516274724a556230636c663369256110be8201527f3242575072446f596c65545674564f45306d36793564487444725551776f414c6110de8201527f7455523365585364444d4e785866656a594674764c626c726c4a7777484b2f456110fe8201527f6957504a616b32574b35386e684e6f4c6a615a55475841756f32656f5777464561111e8201527f66612f445334496958717246714779633348726939785132693243352f73357661113e8201527f7a424d30793777334d4473774d3759325247427172464d6778374f696325324261115e8201527f30497a736d5678617a5473305263666a324f3334532f525639503269486f427561117e8201527f6c4b49594244665a46654c53356439725379664a64536c67683268644d72324f61119e8201527f5552334b6e6c506e4f41785477314a384c4d325a776e4671765a745a4a6c78786111be8201527f343873776243743272316b664875443756624831326159383849437456734b786111de8201527f4b742f31726b616c42414d74782f6f6f6d43445059626b556f4c6344624b436a6111fe8201527f7675713953544467746a584744715735564b36686347654f46697a6a3643714c61121e8201527f4f49716b57783477733245504d444e7378253242613661533230384f39784c3061123e8201527f526146586f394241645530706e452532424c695359334b536f4a41525978646e61125e8201527f7a69545a4d706961442f3438496969393834446151357976656378414673735761127e8201527f792f686274696d63253242704c386b35796f70496d4a627948712f6138797a6c61129e8201527f6c37726f4f7a586d786d4163337459585363546b65734d6344324939315a36336112be8201527f6549312f394a627755716b36737863394b52677277574d414e6543314e6e39756112de8201527f4779775473706d5538712532426c5a6d43714d674153363662674841476a514b6112fe8201527f73754a334451416a5235346d356a4c7a5a616e546c62646530253242726e663461131e8201527f385a574138546c32673277414779427748516e3552322532424e6a726542677861133e8201527f626c734e46627554776d6862414a48737a2f72416f61764c4f34317874767a5961135e8201527f4768336e4c4a426b41506a7578424a445248333048426575385567436978464e61137e8201527f437951322f4b253242385157372f6530253242664f2532423436524e5730657961139e8201527f4c726f39446a5467704a4e4d3547385179306c54644f756d73773066715045696113be8201527f393646702532424830634d774e6f376a787a596d6e4e664d5a6d64506c7932706113de8201527f6f7132575065476d67507136474c78504e34536c4b486e7870624f69754c58516113fe8201527f75583155715031676a6f38426136536c55314f416d5267707a7531735444584a61141e8201527f50754d3338546f387130344c324e777970653837327777556741675a6c70386461143e8201527f6b5166397a38544d43624d6b596b3758484375333564375a5a41656f346b5a4b61145e8201527f68784953386945354c546a334c4f6976485a7268394a3870337a4c5a436a776361147e8201527f6970354452694b6e576e49664c33386b4a684d7452776a67553525324256726d61149e8201527f714b6c6739307a376a64732f4238444b646b464c76483353253242376f4838616114be8201527f6c445a6c626734533155583574434d445342324f364b756c7a41344b763067376114de8201527f314251643054464b7733685358696e62374e6c304258725873514e6376436b386114fe8201527f6d6f394f786965783559627a78564e2f6b3738336f48545a495777393079495a61151e8201527f777672697164475473586e54384965705437597946434f4a6741395a3042794961153e8201527f455956735478522f6b73616b324268376f4b767034766e695530364d57317a4261155e8201527f4672746568647a306b6b587951786a426d7965645636644d596545386146787461157e8201527f6575777355466136466c6c54446c716430707a525a77473663467266574d627061159e8201527f384738587a6a66624d253242354658657076356f457273696c363458783663376115be8201527f5841576275696d3666387347494d58666f334a6971476b703333376854536a676115de8201527f65636862364f42472f327a31376a6f6d4469476d253242476c623146553069656115fe8201527f6e7552796977654c576767447a6d4655765545556a5a6f377356544877684f4661161e8201527f504d6b4e737146423977796d6b45307639666d7477453854377135384e594f3761163e8201527f787534623833766e46766c35755378446c472532426b4f51675249644f346a6761165e8201527f7a786a53486a4b4c7332742f6c684f647771766131415744437072763344345361167e8201527f34523741625934544362664b4637744265363554343551347a7a49714433316161169e8201527f79797557716a692532424636585337535439483943314f342f694b366b4775766116be8201527f6b512f664e3537487837456533373435622f76766e2f62482f58253242392f256116de8201527f32426762656d684f416d49705576755157757344764b517578394a44564e734b6116fe8201527f673651636d6b73515341445530346347524c523768466f5a326337785545664761171e8201527f253242776b755459474d764c6a422f6550634936416847686e5735717a45416961173e8201527f4a586377564545775869654e70536c317a6a457253253242435325324248634c61175e8201527f6f52506d7661324d6767412f69794c67536f544a555767733442794149514f3061177e8201527f4f6f705a487656627a6844494c65557155677a7a48492f667950474e7879777361179e8201527f6f796c6865534639577662795363336b4544716b32415636436c4364635535536117be8201527f6e6c4e6e4963394b794d63384c79622532423867484f4a795173466c4c6250526117de8201527f796d6d374a42743349545a544162314732444252496b514b51705451396939626117fe8201527f3665435353387a4d366161525364544b5657524d336663454a4c644b61746e7361181e8201527f724959774e4a55253242733048364461757832775a35686733706c653042474861183e8201527f756b316b4543734859446461496d4b7025324233463542317859763763486b7161185e8201527f644475306a4b645273657a3531376d63563641685148346931484e3173766c6a61187e8201527f5248366845454672682532426e72726d47316e33307a4d346749776d694d774561189e8201527f624b6842545564423141486f582532424b6741517a4f48543946494f71436b526118be8201527f4e4e623273397170496943534f753167576868497343564a73765771457175356118de8201527f47624a514b4e6a61427465394c4f69676368414a7665475773394332323033766118fe8201527f6f6e476c6b77725251323464646732796345646157554456734441785548734961191e8201527f77773665615234464665336d4a416b66426d5a6452395264774a485a6d47645261193e8201527f7950436a706a627a31712f584a34534949446b66384b4b6e6e32456c4b6d794c61195e8201527f69573442513836733151554b2f76426867524e776548766c5968687a7238706361197e8201527f67704b4b6d6f61576a7036426b594f48446c7835734b5647336365474539657661199e8201527f506e773563646667454242676f554946536238587632504553314772446a78456119be8201527f69524b6b697846716a54704d6d544b6b693148726a7a354368517155717845716119de8201527f544c6c4b6c53715571314772547231476a527130717846717a62744f6e5347656119fe8201527f3668374a6d627a4968355a6544696c315a58536a7430774375616b336c6e476f611a1e8201527f5655506f53734e663337394b326a6274716d44674d69485a42665a6c68324839611a3e8201527f75773738495469314a466a585653662f4336634f55667a346f30644178305447611a5e8201527f777448446863666a3443516d49694531444d5a42546b6c4e5a557065566f614f611a7e8201527f6e717633733234314e50503965766574594768435a50576a4979747332706173611a9e8201527f436a25324270556a54596c336b615574374f744b4a6136355850396d356e6367611abe8201527f364e686a685a587032762532426d57724341545a754a303368316b6a55756976611ade8201527f5067596e6a6e35744b4a4f6b326e6362703251414559585a69304b496d50356b611afe8201527f744961466e366b5a397743253237253239253230666f726d6174253238253237611b1e8201527f776f666632253237253239253342666f6e742d7765696768742533412532306e611b3e8201527f6f726d616c253342666f6e742d7374796c652533412532306e6f726d616c2533611b5e8201527f42666f6e742d646973706c617925334125323073776170253342253744746578611b7e8201527f74253230253742666f6e742d66616d696c792533412532302532375072657373611b9e8201527f2532305374617274253230325025323725334266696c6c253341253230776869611bbe8201527f74652537442e76616c7565253230253742666f6e742d73697a65253341253230611bde8201527f313070782533422537442e6e616d65253230253742666f6e742d73697a652533611bfe8201527f412532303470782533422537442533432f7374796c652533452533432f646566611c1e8201527f7325334525334372656374253230776964746825334425323738392532372532611c3e8201527f30686569676874253344253237353525323725323066696c6c25334425323762611c5e8201527f6c61636b2532372532302f253345253343726563742532307825334425323735611c7e8201527f2e3525323725323079253344253237352e352532372532307769647468253344611c9e8201527f2532373738253237253230686569676874253344253237343425323725323066611cbe8201527f696c6c2533442532372532333030303046462532372532302f25334525334374611cde8201527f657874253230746578742d616e63686f722533442532376d6964646c65253237611cfe8201527f2532307825334425323734342e35253237253230792533442532373333253237611d1e8201527f253230636c61737325334425323776616c756525323725334500000000000000611d3e820152612ba5612b9e6129f5611d5784018a61055b565b7f2533432f746578742533452533437265637425323078253344253237352e352581527f323725323079253344253237352e35253237253230776964746825334425323760208201527f373825323725323068656967687425334425323734342532372532307374726f60408201527f6b652533442532372532334646344630412532372532307374726f6b652d776960608201527f647468253344253237332532372532302f25334525334372656374253230782560808201527f334425323733302532372532307925334425323734352e35253237253230776960a08201527f647468253344253237353825323725323068656967687425334425323738253260c08201527f3725323066696c6c2533442532372532334646344630412532372532302f253360e08201527f4525334374657874253230746578742d616e63686f72253344253237656e64256101008201527f32372532307825334425323738372532372532307925334425323735322532376101208201527f253230636c6173732533442532376e616d6525323725334500000000000000006101408201526101580190565b86886105e3565b602160f81b81529050612bbb600182018561055b565b7f2533432f746578742533452533432f737667253345227d00000000000000000081526017019a995050505050505050505056fea2646970667358221220f64400964cf21cb4940de76482b5ee6f22f9e46a781e948eea81a1999aa43eb964736f6c63430008150033", + "nonce": "0x16", + "accessList": [] + }, + "additionalContracts": [], + "isFixedGasLimit": false + }, + { + "hash": "0x1e4f5bdd28b6e086f0df2a2497b634460b21f87239a064ee813a07870fde82ce", + "transactionType": "CREATE", + "contractName": null, + "contractAddress": "0x322813Fd9A801c5507c9de605d63CEA4f2CE6c44", + "function": null, + "arguments": null, + "transaction": { + "type": "0x02", + "from": "0xf39fd6e51aad88f6f4ce6ab8827279cfffb92266", + "gas": "0x42230", + "value": "0x0", + "data": "0x608060405234801561001057600080fd5b506102cf806100206000396000f3fe608060405234801561001057600080fd5b506004361061004c5760003560e01c80630194db8e14610051578063072bdcc214610076578063a391c15b14610089578063b67d77c51461009c575b600080fd5b61006461005f366004610160565b6100af565b60405190815260200160405180910390f35b610064610084366004610160565b6100ef565b61006461009736600461021e565b610129565b6100646100aa36600461021e565b61013e565b600080805b83518110156100e8578381815181106100cf576100cf610240565b60200260200101518201915080806001019150506100b4565b5092915050565b60006001815b83518110156100e85783818151811061011057610110610240565b60200260200101518202915080806001019150506100f5565b60006101358284610256565b90505b92915050565b60006101358284610278565b634e487b7160e01b600052604160045260246000fd5b6000602080838503121561017357600080fd5b823567ffffffffffffffff8082111561018b57600080fd5b818501915085601f83011261019f57600080fd5b8135818111156101b1576101b161014a565b8060051b604051601f19603f830116810181811085821117156101d6576101d661014a565b6040529182528482019250838101850191888311156101f457600080fd5b938501935b82851015610212578435845293850193928501926101f9565b98975050505050505050565b6000806040838503121561023157600080fd5b50508035926020909101359150565b634e487b7160e01b600052603260045260246000fd5b60008261027357634e487b7160e01b600052601260045260246000fd5b500490565b8181038181111561013857634e487b7160e01b600052601160045260246000fdfea2646970667358221220d31583983189259cb60ccec801ca1ed218051d27add344c207dbb437b07d39c864736f6c63430008150033", + "nonce": "0x17", + "accessList": [] + }, + "additionalContracts": [], + "isFixedGasLimit": false + }, + { + "hash": "0x08ea7bf05096ae793c07ca2cd45168e896782bb7fb0c1496566dd76618f922a7", + "transactionType": "CREATE", + "contractName": "Evmsheet", + "contractAddress": "0xa85233C63b9Ee964Add6F2cffe00Fd84eb32338f", + "function": null, + "arguments": [ + "0x4ed7c70F96B99c776995fB64377f0d4aB3B0e1C1", + "10000000000000000" + ], + "transaction": { + "type": "0x02", + "from": "0xf39fd6e51aad88f6f4ce6ab8827279cfffb92266", + "gas": "0x359c55", + "value": "0x0", + "data": "0x608060405234801561001057600080fd5b50604051612fa3380380612fa383398101604081905261002f916100b1565b61003833610061565b600280546001600160a01b0319166001600160a01b0393909316929092179091556001556100eb565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b600080604083850312156100c457600080fd5b82516001600160a01b03811681146100db57600080fd5b6020939093015192949293505050565b612ea9806100fa6000396000f3fe608060405260043610620000b95760003560e01c80638da5cb5b116200006c5780638da5cb5b146200019d578063ab2fa65a14620001bd578063ae28505e14620001e4578063c56c4cf11462000209578063f2fde38b146200022b578063f52be2a2146200025057600080fd5b806303fb31e814620000c65780631164c83d14620000ed578063145e414714620001045780633ccfd60b14620001465780635787cacb146200015e578063715018a6146200018557600080fd5b36620000c157005b600080fd5b348015620000d357600080fd5b50620000eb620000e536600462000842565b62000277565b005b620000eb620000fe366004620008b3565b620002a3565b3480156200011157600080fd5b5062000129620001233660046200092e565b620004e2565b6040516001600160a01b0390911681526020015b60405180910390f35b3480156200015357600080fd5b50620000eb6200057f565b3480156200016b57600080fd5b50620001766200061c565b6040516200013d91906200095b565b3480156200019257600080fd5b50620000eb62000680565b348015620001aa57600080fd5b506000546001600160a01b031662000129565b348015620001ca57600080fd5b50620001d562000698565b6040516200013d9190620009aa565b348015620001f157600080fd5b506200012962000203366004620009fa565b620006c4565b3480156200021657600080fd5b5060025462000129906001600160a01b031681565b3480156200023857600080fd5b50620000eb6200024a36600462000842565b620006ef565b3480156200025d57600080fd5b506200026860015481565b6040519081526020016200013d565b620002816200076b565b600280546001600160a01b0319166001600160a01b0392909216919091179055565b6001543414620002cd5760405163723a79e360e11b81523460048201526024015b60405180910390fd5b600060405180602001620002e19062000817565b6020820181038252601f19601f8201166040525090506000828251602084016000f56002546040516356d3163d60e01b81526001600160a01b0391821660048201529192508216906356d3163d90602401600060405180830381600087803b1580156200034d57600080fd5b505af115801562000362573d6000803e3d6000fd5b505060405163c47f002760e01b81526001600160a01b038416925063c47f0027915062000396908a908a9060040162000a14565b600060405180830381600087803b158015620003b157600080fd5b505af1158015620003c6573d6000803e3d6000fd5b5050604051635c26412360e11b81526001600160a01b038416925063b84c82469150620003fa908890889060040162000a14565b600060405180830381600087803b1580156200041557600080fd5b505af11580156200042a573d6000803e3d6000fd5b505060405163f2fde38b60e01b81523260048201526001600160a01b038416925063f2fde38b9150602401600060405180830381600087803b1580156200047057600080fd5b505af115801562000485573d6000803e3d6000fd5b5050600380546001810182556000919091527fc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b0180546001600160a01b0319166001600160a01b0394909416939093179092555050505050505050565b600060ff60f81b838360405180602001620004fd9062000817565b6020820181038252601f19601f82011660405250805190602001206040516020016200056094939291906001600160f81b031994909416845260609290921b6bffffffffffffffffffffffff191660018401526015830152603582015260550190565b60408051601f1981840301815291905280516020909101209392505050565b620005896200076b565b604051600090339047908381818185875af1925050503d8060008114620005cd576040519150601f19603f3d011682016040523d82523d6000602084013e620005d2565b606091505b5050905080620006195760405162461bcd60e51b815260206004820152601160248201527015da5d1a191c985dd85b0819985a5b1959607a1b6044820152606401620002c4565b50565b606060038054806020026020016040519081016040528092919081815260200182805480156200067657602002820191906000526020600020905b81546001600160a01b0316815260019091019060200180831162000657575b5050505050905090565b6200068a6200076b565b620006966000620007c7565b565b606060405180602001620006ac9062000817565b601f1982820381018352601f90910116604052919050565b60038181548110620006d557600080fd5b6000918252602090912001546001600160a01b0316905081565b620006f96200076b565b6001600160a01b038116620007605760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401620002c4565b6200061981620007c7565b6000546001600160a01b03163314620006965760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401620002c4565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b6124308062000a4483390190565b80356001600160a01b03811681146200083d57600080fd5b919050565b6000602082840312156200085557600080fd5b620008608262000825565b9392505050565b60008083601f8401126200087a57600080fd5b50813567ffffffffffffffff8111156200089357600080fd5b602083019150836020828501011115620008ac57600080fd5b9250929050565b600080600080600060608688031215620008cc57600080fd5b853567ffffffffffffffff80821115620008e557600080fd5b620008f389838a0162000867565b909750955060208801359150808211156200090d57600080fd5b506200091c8882890162000867565b96999598509660400135949350505050565b600080604083850312156200094257600080fd5b6200094d8362000825565b946020939093013593505050565b6020808252825182820181905260009190848201906040850190845b818110156200099e5783516001600160a01b03168352928401929184019160010162000977565b50909695505050505050565b600060208083528351808285015260005b81811015620009d957858101830151858201604001528201620009bb565b506000604082860101526040601f19601f8301168501019250505092915050565b60006020828403121562000a0d57600080fd5b5035919050565b60208152816020820152818360408301376000818301604090810191909152601f909201601f1916010191905056fe60806040523480156200001157600080fd5b50604051806040016040528060078152602001660536865657420360cc1b815250604051806040016040528060048152602001630534854360e41b81525062000069620000636200008f60201b60201c565b62000093565b600162000077838262000188565b50600262000086828262000188565b50505062000254565b3390565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b634e487b7160e01b600052604160045260246000fd5b600181811c908216806200010e57607f821691505b6020821081036200012f57634e487b7160e01b600052602260045260246000fd5b50919050565b601f8211156200018357600081815260208120601f850160051c810160208610156200015e5750805b601f850160051c820191505b818110156200017f578281556001016200016a565b5050505b505050565b81516001600160401b03811115620001a457620001a4620000e3565b620001bc81620001b58454620000f9565b8462000135565b602080601f831160018114620001f45760008415620001db5750858301515b600019600386901b1c1916600185901b1785556200017f565b600085815260208120601f198616915b82811015620002255788860151825594840194600190910190840162000204565b5085821015620002445787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b6121cc80620002646000396000f3fe608060405234801561001057600080fd5b50600436106102275760003560e01c8063715018a611610130578063b85d8b85116100b8578063cf0983981161007c578063cf09839814610512578063cfbe95d814610535578063df4ca20614610556578063e985e9c514610576578063f2fde38b146105a457600080fd5b8063b85d8b85146104a4578063b88d4fde146104ce578063b8c368ec146104e1578063c47f0027146104ec578063c87b56dd146104ff57600080fd5b806395d89b41116100ff57806395d89b4114610439578063a22cb46514610441578063b46ebb1214610454578063b6d658e114610467578063b84c82461461049157600080fd5b8063715018a6146103fa578063768d5029146104025780638ada6b0f146104155780638da5cb5b1461042857600080fd5b80631b06443c116101b35780634f6ccce7116101825780634f6ccce71461038157806356d3163d146103a15780636352211e146103b45780636a0abc74146103c757806370a08231146103e757600080fd5b80631b06443c14610335578063206848f61461034857806323b872dd1461035b57806342842e0e1461036e57600080fd5b8063081812fc116101fa578063081812fc146102a1578063095ea7b3146102e2578063172b9eed146102f757806318160ddd1461030a5780631941fd141461031357600080fd5b806301ffc9a71461022c57806302f3c4c91461025457806306fdde03146102745780630715a24a1461027c575b600080fd5b61023f61023a36600461176a565b6105b7565b60405190151581526020015b60405180910390f35b610267610262366004611861565b610609565b60405161024b9190611951565b610267610638565b6102936fffffffffffffffffffffffffffffffff81565b60405190815260200161024b565b6102ca6102af366004611964565b6005602052600090815260409020546001600160a01b031681565b6040516001600160a01b03909116815260200161024b565b6102f56102f036600461197d565b6106c6565b005b6102676103053660046119a9565b6107ad565b61029360075481565b610326610321366004611964565b610875565b60405161024b939291906119de565b6102ca610343366004611a0e565b61092a565b610326610356366004611964565b6109e3565b6102f5610369366004611a2b565b610ae1565b6102f561037c366004611a2b565b610ca8565b61029361038f366004611964565b60086020526000908152604090205481565b6102f56103af366004611a0e565b610da0565b6102ca6103c2366004611964565b610dca565b6103da6103d53660046119a9565b610e1c565b60405161024b9190611a6c565b6102936103f5366004611a0e565b610e60565b6102f5610ec3565b6102f5610410366004611af9565b610ed7565b6009546102ca906001600160a01b031681565b6000546001600160a01b03166102ca565b610267611035565b6102f561044f366004611b63565b611042565b610267610462366004611964565b6110ae565b61047a610475366004611964565b611258565b60408051921515835260208301919091520161024b565b6102f561049f366004611ba1565b611275565b6104b56104b2366004611964565b90565b6040516001600160e01b0319909116815260200161024b565b6102f56104dc366004611be3565b6112c6565b6102ca600160801b81565b6102f56104fa366004611ba1565b6113ae565b61026761050d366004611964565b6113ff565b61023f610520366004611a0e565b600160801b6001600160a01b03919091161090565b61023f610543366004611861565b516001600160a01b0316600160801b1490565b610569610564366004611964565b6114c9565b60405161024b9190611c16565b61023f610584366004611c4d565b600660209081526000928352604080842090915290825290205460ff1681565b6102f56105b2366004611a0e565b611526565b60006301ffc9a760e01b6001600160e01b0319831614806105e857506380ac58cd60e01b6001600160e01b03198316145b806106035750635b5e139f60e01b6001600160e01b03198316145b92915050565b6060816020015160405160200161062291815260200190565b6040516020818303038152906040529050919050565b6001805461064590611c7b565b80601f016020809104026020016040519081016040528092919081815260200182805461067190611c7b565b80156106be5780601f10610693576101008083540402835291602001916106be565b820191906000526020600020905b8154815290600101906020018083116106a157829003601f168201915b505050505081565b6000818152600360205260409020546001600160a01b03163381148061070f57506001600160a01b038116600090815260066020908152604080832033845290915290205460ff165b6107515760405162461bcd60e51b815260206004820152600e60248201526d1393d517d055551213d49256915160921b60448201526064015b60405180910390fd5b60008281526005602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b606060006107ba83610e1c565b9050606060005b825181101561086d576000806107ef8584815181106107e2576107e2611cb5565b6020026020010151611258565b9150915081156108335783610803826110ae565b61080c90611ccb565b60405160200161081d929190611cef565b6040516020818303038152906040529350610858565b6040516108469085908390602001611cef565b60405160208183030381529060405293505b5050808061086590611d27565b9150506107c1565b509392505050565b600a602052600090815260409020805460018201546002830180546001600160a01b039093169391926108a790611c7b565b80601f01602080910402602001604051908101604052809291908181526020018280546108d390611c7b565b80156109205780601f106108f557610100808354040283529160200191610920565b820191906000526020600020905b81548152906001019060200180831161090357829003601f168201915b5050505050905083565b6000600160801b6001600160a01b03831610156109da576000610955836001600160a01b03166110ae565b604051632d737e4960e21b815290915073c6e7df5e7b4f2a278906862b61205850344d4e7d9063b5cdf92490610992908490600090600401611d40565b602060405180830381865af41580156109af573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906109d39190611d62565b9392505050565b5090565b919050565b60008181526003602052604081205481906060906001600160a01b0316610a1057600160801b9250610a2b565b6000848152600a60205260409020546001600160a01b031692505b6000848152600a60205260409020600181015460029091018054859291908190610a5490611c7b565b80601f0160208091040260200160405190810160405280929190818152602001828054610a8090611c7b565b8015610acd5780601f10610aa257610100808354040283529160200191610acd565b820191906000526020600020905b815481529060010190602001808311610ab057829003601f168201915b505050505090509250925092509193909250565b6000818152600360205260409020546001600160a01b03848116911614610b375760405162461bcd60e51b815260206004820152600a60248201526957524f4e475f46524f4d60b01b6044820152606401610748565b6001600160a01b038216610b815760405162461bcd60e51b81526020600482015260116024820152701253959053125117d49150d25412515395607a1b6044820152606401610748565b336001600160a01b0384161480610bbb57506001600160a01b038316600090815260066020908152604080832033845290915290205460ff165b80610bdc57506000818152600560205260409020546001600160a01b031633145b610c195760405162461bcd60e51b815260206004820152600e60248201526d1393d517d055551213d49256915160921b6044820152606401610748565b6001600160a01b0380841660008181526004602090815260408083208054600019019055938616808352848320805460010190558583526003825284832080546001600160a01b03199081168317909155600590925284832080549092169091559251849392917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b610cb3838383610ae1565b6001600160a01b0382163b1580610d5c5750604051630a85bd0160e11b8082523360048301526001600160a01b03858116602484015260448301849052608060648401526000608484015290919084169063150b7a029060a4016020604051808303816000875af1158015610d2c573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610d509190611d7b565b6001600160e01b031916145b610d9b5760405162461bcd60e51b815260206004820152601060248201526f155394d0519157d49150d2541251539560821b6044820152606401610748565b505050565b610da861159f565b600980546001600160a01b0319166001600160a01b0392909216919091179055565b6000818152600360205260409020546001600160a01b0316806109de5760405162461bcd60e51b815260206004820152600a6024820152691393d517d3525395115160b21b6044820152606401610748565b60608082516040519150602081048252602082016020850160005b83811015610e4f578181015183820152602001610e37565b505050810160200160405292915050565b60006001600160a01b038216610ea75760405162461bcd60e51b815260206004820152600c60248201526b5a45524f5f4144445245535360a01b6044820152606401610748565b506001600160a01b031660009081526004602052604090205490565b610ecb61159f565b610ed560006115f9565b565b6000858152600360205260409020546001600160a01b0316610f2f57610efd3286611649565b60078054600090815260086020526040812087905581546001929190610f24908490611d98565b90915550610f889050565b6000858152600360205260409020546001600160a01b03163214610f8857600085815260036020526040908190205490516324f3f02560e21b81526001600160a01b039091166004820152326024820152604401610748565b6040518060600160405280856001600160a01b0316815260200184815260200183838080601f0160208091040260200160405190810160405280939291908181526020018383808284376000920182905250939094525050878152600a6020908152604091829020845181546001600160a01b0319166001600160a01b0390911617815590840151600182015590830151909150600282019061102b9082611df9565b5050505050505050565b6002805461064590611c7b565b3360008181526006602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b6000818152600a6020908152604080832081516060818101845282546001600160a01b0316825260018301549482019490945260028201805494959491938401916110f890611c7b565b80601f016020809104026020016040519081016040528092919081815260200182805461112490611c7b565b80156111715780601f1061114657610100808354040283529160200191611171565b820191906000526020600020905b81548152906001019060200180831161115457829003601f168201915b505050505081525050905061119381516001600160a01b0316600160801b1490565b156111a1576109d381610609565b60006111b0826000015161092a565b905060006111bf836020015190565b905060006111d084604001516107ad565b90506000836001600160a01b031683836040516020016111f1929190611eb9565b60408051601f198184030181529082905261120b91611eea565b600060405180830381855afa9150503d8060008114611246576040519150601f19603f3d011682016040523d82523d6000602084013e61124b565b606091505b5098975050505050505050565b600080611266600284611f06565b60019081149493901c92915050565b61127d61159f565b7f8dca0271872d00b3de3abafca544c52fcd7d512dd852c9894fa2c118ac759a93600283836040516112b193929190611fce565b60405180910390a16002610d9b828483611ffe565b6112d1858585610ae1565b6001600160a01b0384163b15806113685750604051630a85bd0160e11b808252906001600160a01b0386169063150b7a02906113199033908a908990899089906004016120be565b6020604051808303816000875af1158015611338573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061135c9190611d7b565b6001600160e01b031916145b6113a75760405162461bcd60e51b815260206004820152601060248201526f155394d0519157d49150d2541251539560821b6044820152606401610748565b5050505050565b6113b661159f565b7fb65b7b5ea384affd30f77f842e057d29dd1b13f133adf69a724a8105b164ab75600183836040516113ea93929190611fce565b60405180910390a16001610d9b828483611ffe565b6000818152600360205260409020546060906001600160a01b03168061143b57604051630243d1a960e21b815260048101849052602401610748565b6000611446846110ae565b6009546040516328de0f2f60e01b81529192506001600160a01b0316906328de0f2f9061147c90879085906001906004016120fd565b600060405180830381865afa158015611499573d6000803e3d6000fd5b505050506040513d6000823e601f3d908101601f191682016040526114c19190810190612128565b949350505050565b604080516060808201835260008083526020830181905292820152906114ee836110ae565b6040805160608101825285815260009586526003602090815295829020546001600160a01b0316958101959095528401525090919050565b61152e61159f565b6001600160a01b0381166115935760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610748565b61159c816115f9565b50565b6000546001600160a01b03163314610ed55760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610748565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b6001600160a01b0382166116935760405162461bcd60e51b81526020600482015260116024820152701253959053125117d49150d25412515395607a1b6044820152606401610748565b6000818152600360205260409020546001600160a01b0316156116e95760405162461bcd60e51b815260206004820152600e60248201526d1053149150511657d3525395115160921b6044820152606401610748565b6001600160a01b038216600081815260046020908152604080832080546001019055848352600390915280822080546001600160a01b0319168417905551839291907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b6001600160e01b03198116811461159c57600080fd5b60006020828403121561177c57600080fd5b81356109d381611754565b634e487b7160e01b600052604160045260246000fd5b604051601f8201601f1916810167ffffffffffffffff811182821017156117c6576117c6611787565b604052919050565b6001600160a01b038116811461159c57600080fd5b600067ffffffffffffffff8211156117fd576117fd611787565b50601f01601f191660200190565b600082601f83011261181c57600080fd5b813561182f61182a826117e3565b61179d565b81815284602083860101111561184457600080fd5b816020850160208301376000918101602001919091529392505050565b60006020828403121561187357600080fd5b813567ffffffffffffffff8082111561188b57600080fd5b908301906060828603121561189f57600080fd5b6040516060810181811083821117156118ba576118ba611787565b60405282356118c8816117ce565b8152602083810135908201526040830135828111156118e657600080fd5b6118f28782860161180b565b60408301525095945050505050565b60005b8381101561191c578181015183820152602001611904565b50506000910152565b6000815180845261193d816020860160208601611901565b601f01601f19169290920160200192915050565b6020815260006109d36020830184611925565b60006020828403121561197657600080fd5b5035919050565b6000806040838503121561199057600080fd5b823561199b816117ce565b946020939093013593505050565b6000602082840312156119bb57600080fd5b813567ffffffffffffffff8111156119d257600080fd5b6114c18482850161180b565b60018060a01b0384168152826020820152606060408201526000611a056060830184611925565b95945050505050565b600060208284031215611a2057600080fd5b81356109d3816117ce565b600080600060608486031215611a4057600080fd5b8335611a4b816117ce565b92506020840135611a5b816117ce565b929592945050506040919091013590565b6020808252825182820181905260009190848201906040850190845b81811015611aa457835183529284019291840191600101611a88565b50909695505050505050565b60008083601f840112611ac257600080fd5b50813567ffffffffffffffff811115611ada57600080fd5b602083019150836020828501011115611af257600080fd5b9250929050565b600080600080600060808688031215611b1157600080fd5b853594506020860135611b23816117ce565b935060408601359250606086013567ffffffffffffffff811115611b4657600080fd5b611b5288828901611ab0565b969995985093965092949392505050565b60008060408385031215611b7657600080fd5b8235611b81816117ce565b915060208301358015158114611b9657600080fd5b809150509250929050565b60008060208385031215611bb457600080fd5b823567ffffffffffffffff811115611bcb57600080fd5b611bd785828601611ab0565b90969095509350505050565b600080600080600060808688031215611bfb57600080fd5b8535611c06816117ce565b94506020860135611b23816117ce565b602081528151602082015260018060a01b036020830151166040820152600060408301516060808401526114c16080840182611925565b60008060408385031215611c6057600080fd5b8235611c6b816117ce565b91506020830135611b96816117ce565b600181811c90821680611c8f57607f821691505b602082108103611caf57634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052603260045260246000fd5b80516020808301519190811015611caf5760001960209190910360031b1b16919050565b60008351611d01818460208801611901565b9190910191825250602001919050565b634e487b7160e01b600052601160045260246000fd5b600060018201611d3957611d39611d11565b5060010190565b604081526000611d536040830185611925565b90508260208301529392505050565b600060208284031215611d7457600080fd5b5051919050565b600060208284031215611d8d57600080fd5b81516109d381611754565b8082018082111561060357610603611d11565b601f821115610d9b57600081815260208120601f850160051c81016020861015611dd25750805b601f850160051c820191505b81811015611df157828155600101611dde565b505050505050565b815167ffffffffffffffff811115611e1357611e13611787565b611e2781611e218454611c7b565b84611dab565b602080601f831160018114611e5c5760008415611e445750858301515b600019600386901b1c1916600185901b178555611df1565b600085815260208120601f198616915b82811015611e8b57888601518255948401946001909101908401611e6c565b5085821015611ea95787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b6001600160e01b0319831681528151600090611edc816004850160208701611901565b919091016004019392505050565b60008251611efc818460208701611901565b9190910192915050565b600082611f2357634e487b7160e01b600052601260045260246000fd5b500690565b60008154611f3581611c7b565b808552602060018381168015611f525760018114611f6c57611f9a565b60ff1985168884015283151560051b880183019550611f9a565b866000528260002060005b85811015611f925781548a8201860152908301908401611f77565b890184019650505b505050505092915050565b81835281816020850137506000828201602090810191909152601f909101601f19169091010190565b604081526000611fe16040830186611f28565b8281036020840152611ff4818587611fa5565b9695505050505050565b67ffffffffffffffff83111561201657612016611787565b61202a836120248354611c7b565b83611dab565b6000601f84116001811461205e57600085156120465750838201355b600019600387901b1c1916600186901b1783556113a7565b600083815260209020601f19861690835b8281101561208f578685013582556020948501946001909201910161206f565b50868210156120ac5760001960f88860031b161c19848701351681555b505060018560011b0183555050505050565b6001600160a01b03868116825285166020820152604081018490526080606082018190526000906120f29083018486611fa5565b979650505050505050565b8381526060602082015260006121166060830185611925565b8281036040840152611ff48185611f28565b60006020828403121561213a57600080fd5b815167ffffffffffffffff81111561215157600080fd5b8201601f8101841361216257600080fd5b805161217061182a826117e3565b81815285602083850101111561218557600080fd5b611a0582602083016020860161190156fea2646970667358221220f213b9045b40918ed2b5d304162ec2dfc3bc6b581b97362b423df61fd1436e5c64736f6c63430008150033a264697066735822122016636ee300fab238f4f099f32ba33a2f9dd9cbd27246df211a2a76dcc4263a7a64736f6c634300081500330000000000000000000000004ed7c70f96b99c776995fb64377f0d4ab3b0e1c1000000000000000000000000000000000000000000000000002386f26fc10000", + "nonce": "0x18", + "accessList": [] + }, + "additionalContracts": [], + "isFixedGasLimit": false + } + ], + "receipts": [ + { + "transactionHash": "0x96f49738943866e78d089daf271983026c0c6a92e9aef2fc8d137c17247c6372", + "transactionIndex": "0x0", + "blockHash": "0xb72adb1edd66d2a9f8541a9888fadb25cbb78c10939476b1e69c181b742ef5b4", + "blockNumber": "0xd", + "from": "0xf39Fd6e51aad88F6F4ce6aB8827279cffFb92266", + "to": null, + "cumulativeGasUsed": "0xf071f", + "gasUsed": "0xf071f", + "contractAddress": "0xc6e7DF5E7b4f2A278906862b61205850344D4e7d", + "logs": [], + "status": "0x1", + "logsBloom": "0x00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", + "type": "0x2", + "effectiveGasPrice": "0xc2261d6a" + }, + { + "transactionHash": "0xb5ea6763b8d3b5b2892960eba919ecdf1b4ec24d27676e16e331097233f5640d", + "transactionIndex": "0x0", + "blockHash": "0xa0603daa861bb127f8a57e7a6cbb2d9bbd210370749da5cc0854a3dd98797373", + "blockNumber": "0xe", + "from": "0xf39Fd6e51aad88F6F4ce6aB8827279cffFb92266", + "to": null, + "cumulativeGasUsed": "0x23aa9", + "gasUsed": "0x23aa9", + "contractAddress": "0x59b670e9fA9D0A427751Af201D676719a970857b", + "logs": [], + "status": "0x1", + "logsBloom": "0x00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", + "type": "0x2", + "effectiveGasPrice": "0xc05b9da5" + }, + { + "transactionHash": "0x968aa116febaf3b74ccdd54e2d513fdce14c7d6dfbed59354c5ce1176622aad8", + "transactionIndex": "0x0", + "blockHash": "0x6e42ecbd0473d4a8e405c42a168b8861e1c5b426c5d9830d7b7b99bc78d4740c", + "blockNumber": "0xf", + "from": "0xf39Fd6e51aad88F6F4ce6aB8827279cffFb92266", + "to": null, + "cumulativeGasUsed": "0x2616fd", + "gasUsed": "0x2616fd", + "contractAddress": "0x4ed7c70F96B99c776995fB64377f0d4aB3B0e1C1", + "logs": [], + "status": "0x1", + "logsBloom": "0x00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", + "type": "0x2", + "effectiveGasPrice": "0xbeae6e48" + }, + { + "transactionHash": "0x1e4f5bdd28b6e086f0df2a2497b634460b21f87239a064ee813a07870fde82ce", + "transactionIndex": "0x1", + "blockHash": "0x6e42ecbd0473d4a8e405c42a168b8861e1c5b426c5d9830d7b7b99bc78d4740c", + "blockNumber": "0xf", + "from": "0xf39Fd6e51aad88F6F4ce6aB8827279cffFb92266", + "to": null, + "cumulativeGasUsed": "0x29452b", + "gasUsed": "0x32e2e", + "contractAddress": "0x322813Fd9A801c5507c9de605d63CEA4f2CE6c44", + "logs": [], + "status": "0x1", + "logsBloom": "0x00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", + "type": "0x2", + "effectiveGasPrice": "0xbeae6e48" + }, + { + "transactionHash": "0x08ea7bf05096ae793c07ca2cd45168e896782bb7fb0c1496566dd76618f922a7", + "transactionIndex": "0x2", + "blockHash": "0x6e42ecbd0473d4a8e405c42a168b8861e1c5b426c5d9830d7b7b99bc78d4740c", + "blockNumber": "0xf", + "from": "0xf39Fd6e51aad88F6F4ce6aB8827279cffFb92266", + "to": null, + "cumulativeGasUsed": "0x528559", + "gasUsed": "0x29402e", + "contractAddress": "0xa85233C63b9Ee964Add6F2cffe00Fd84eb32338f", + "logs": [ + { + "address": "0xa85233C63b9Ee964Add6F2cffe00Fd84eb32338f", + "topics": [ + "0x8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0", + "0x0000000000000000000000000000000000000000000000000000000000000000", + "0x000000000000000000000000f39fd6e51aad88f6f4ce6ab8827279cfffb92266" + ], + "data": "0x", + "blockHash": "0x6e42ecbd0473d4a8e405c42a168b8861e1c5b426c5d9830d7b7b99bc78d4740c", + "blockNumber": "0xf", + "transactionHash": "0x08ea7bf05096ae793c07ca2cd45168e896782bb7fb0c1496566dd76618f922a7", + "transactionIndex": "0x2", + "logIndex": "0x2", + "transactionLogIndex": "0x0", + "removed": false + } + ], + "status": "0x1", + "logsBloom": "0x00000000000000000000000000000000000000000000000000800000000000000000000000000000080000000000000000000000000000000000000000000000000000000000000000000000000000000001000000000000000000000040000000000000020000000000000100000800000000000000000000000000000000400000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000008000000000000000000000000000000000000200000000000000000000000002000000000000000000020000000000000000000000000000000000000000000000000000000000000000000", + "type": "0x2", + "effectiveGasPrice": "0xbeae6e48" + } + ], + "libraries": [ + "lib/eth-projects-monorepo/packages/eth-projects-contracts/contracts/lib/utils/Bytes.sol:Bytes:0xc6e7df5e7b4f2a278906862b61205850344d4e7d" + ], + "pending": [], + "returns": {}, + "timestamp": 1690364258, + "chain": 31337, + "multi": false, + "commit": null +} \ No newline at end of file diff --git a/packages/starksheet-solidity/broadcast/Evmsheet.s.sol/31337/run-1690374058.json b/packages/starksheet-solidity/broadcast/Evmsheet.s.sol/31337/run-1690374058.json new file mode 100644 index 00000000..6e78a075 --- /dev/null +++ b/packages/starksheet-solidity/broadcast/Evmsheet.s.sol/31337/run-1690374058.json @@ -0,0 +1,209 @@ +{ + "transactions": [ + { + "hash": "0xb3f4d771719b183250740868d6d18329aae1f0075c73d6d29926e3204e122634", + "transactionType": "CREATE", + "contractName": "Bytes", + "contractAddress": "0x610178dA211FEF7D417bC0e6FeD39F05609AD788", + "function": null, + "arguments": null, + "transaction": { + "type": "0x02", + "from": "0xf39fd6e51aad88f6f4ce6ab8827279cfffb92266", + "gas": "0x1387dd", + "data": "0x6110d661003a600b82828239805160001a60731461002d57634e487b7160e01b600052600060045260246000fd5b30600052607381538281f3fe73000000000000000000000000000000000000000030146080604052600436106101625760003560e01c8063a5eb31ee116100cd578063d1ffb56111610086578063d1ffb561146103fb578063d442584f1461042b578063e004139614610454578063f1142fb314610474578063f647f8fb14610487578063f83b670f146104b257600080fd5b8063a5eb31ee14610344578063a8d8f00f1461036b578063b5cdf92414610396578063b63711df146103a9578063be8b3430146103bc578063c29616bd146103cf57600080fd5b80635ef849301161011f5780635ef8493014610241578063913c97b41461026b57806397e6175c1461029f57806399dd9bd7146102cb5780639ae4c3d1146102ec5780639cee499e1461031857600080fd5b8063042aa0841461016757806305d3bb74146101985780631a7431ef146101c0578063235266d2146101e357806348137709146101f65780634d66a2ae1461021b575b600080fd5b61017a610175366004610ec0565b6104de565b6040516001600160d01b031990911681526020015b60405180910390f35b6101ab6101a6366004610ec0565b610540565b60405163ffffffff909116815260200161018f565b6101d36101ce366004610f05565b61059d565b604051901515815260200161018f565b6101d36101f1366004610f4c565b610652565b610209610204366004610ec0565b6106b5565b60405160ff909116815260200161018f565b61022e610229366004610fa6565b610711565b60405161ffff909116815260200161018f565b61025461024f366004610ec0565b61071e565b60405165ffffffffffff909116815260200161018f565b61027e610279366004610ec0565b610772565b6040516fffffffffffffffffffffffffffffffff909116815260200161018f565b6102b26102ad366004610ec0565b6107d0565b6040516001600160a01b0319909116815260200161018f565b6102de6102d9366004610ec0565b61082e565b60405190815260200161018f565b6102ff6102fa366004610ec0565b61088c565b60405167ffffffffffffffff909116815260200161018f565b61032b610326366004610ec0565b6108e9565b6040516001600160d81b0319909116815260200161018f565b610357610352366004610ec0565b610946565b60405162ffffff909116815260200161018f565b61037e610379366004610ec0565b6109a3565b60405166ffffffffffffff909116815260200161018f565b6102de6103a4366004610ec0565b610a00565b6102ff6103b7366004610ec0565b610a55565b61022e6103ca366004610ec0565b610aa9565b6103e26103dd366004610ec0565b610b06565b6040516001600160c81b0319909116815260200161018f565b61040e610409366004610ec0565b610b5a565b6040516bffffffffffffffffffffffff909116815260200161018f565b61043e610439366004610ec0565b610bae565b60405164ffffffffff909116815260200161018f565b610467610462366004610fe3565b610c02565b60405161018f9190611031565b6102b2610482366004610ec0565b610d0f565b61049a610495366004610ec0565b610d64565b6040516001600160a01b03909116815260200161018f565b6104c56104c0366004610ec0565b610dc9565b6040516001600160f81b0319909116815260200161018f565b60006104eb82600661107f565b835110156105375760405162461bcd60e51b8152602060048201526014602482015273746f4279746573365f6f75744f66426f756e647360601b60448201526064015b60405180910390fd5b50016006015190565b600061054d82600461107f565b835110156105945760405162461bcd60e51b8152602060048201526014602482015273746f55696e7433325f6f75744f66426f756e647360601b604482015260640161052e565b50016004015190565b600080600190508354600260018083161561010002038216048451808214600181146105cc5760009450610644565b821561064457602083106001811461062957600189600052602060002060208a018581015b600284828410010361062057815183541461060f5760009950600093505b6001830192506020820191506105f1565b50505050610642565b6101008086040294506020880151851461064257600095505b505b509293505050505b92915050565b81518151600091600191811480831461066e57600092506106ab565b600160208701838101602088015b60028483851001036106a657805183511461069a5760009650600093505b6020928301920161067c565b505050505b5090949350505050565b60006106c282600161107f565b835110156107085760405162461bcd60e51b8152602060048201526013602482015272746f55696e74385f6f75744f66426f756e647360681b604482015260640161052e565b50016001015190565b600061064c826000610aa9565b600061072b82600661107f565b835110156105375760405162461bcd60e51b8152602060048201526014602482015273746f55696e7434385f6f75744f66426f756e647360601b604482015260640161052e565b600061077f82601061107f565b835110156107c75760405162461bcd60e51b8152602060048201526015602482015274746f55696e743132385f6f75744f66426f756e647360581b604482015260640161052e565b50016010015190565b60006107dd82600c61107f565b835110156108255760405162461bcd60e51b8152602060048201526015602482015274746f427974657331325f6f75744f66426f756e647360581b604482015260640161052e565b5001600c015190565b600061083b82602061107f565b835110156108835760405162461bcd60e51b8152602060048201526015602482015274746f427974657333325f6f75744f66426f756e647360581b604482015260640161052e565b50016020015190565b600061089982600861107f565b835110156108e05760405162461bcd60e51b8152602060048201526014602482015273746f55696e7436345f6f75744f66426f756e647360601b604482015260640161052e565b50016008015190565b60006108f682600561107f565b8351101561093d5760405162461bcd60e51b8152602060048201526014602482015273746f4279746573355f6f75744f66426f756e647360601b604482015260640161052e565b50016005015190565b600061095382600361107f565b8351101561099a5760405162461bcd60e51b8152602060048201526014602482015273746f55696e7432345f6f75744f66426f756e647360601b604482015260640161052e565b50016003015190565b60006109b082600761107f565b835110156109f75760405162461bcd60e51b8152602060048201526014602482015273746f55696e7435365f6f75744f66426f756e647360601b604482015260640161052e565b50016007015190565b6000610a0d82602061107f565b835110156108835760405162461bcd60e51b8152602060048201526015602482015274746f55696e743235365f6f75744f66426f756e647360581b604482015260640161052e565b6000610a6282600861107f565b835110156108e05760405162461bcd60e51b8152602060048201526014602482015273746f4279746573385f6f75744f66426f756e647360601b604482015260640161052e565b6000610ab682600261107f565b83511015610afd5760405162461bcd60e51b8152602060048201526014602482015273746f55696e7431365f6f75744f66426f756e647360601b604482015260640161052e565b50016002015190565b6000610b1382600761107f565b835110156109f75760405162461bcd60e51b8152602060048201526014602482015273746f4279746573375f6f75744f66426f756e647360601b604482015260640161052e565b6000610b6782600c61107f565b835110156108255760405162461bcd60e51b8152602060048201526014602482015273746f55696e7439365f6f75744f66426f756e647360601b604482015260640161052e565b6000610bbb82600561107f565b8351101561093d5760405162461bcd60e51b8152602060048201526014602482015273746f55696e7434305f6f75744f66426f756e647360601b604482015260640161052e565b606081610c1081601f61107f565b1015610c4f5760405162461bcd60e51b815260206004820152600e60248201526d736c6963655f6f766572666c6f7760901b604482015260640161052e565b610c59828461107f565b84511015610c9d5760405162461bcd60e51b8152602060048201526011602482015270736c6963655f6f75744f66426f756e647360781b604482015260640161052e565b606082158015610cbc5760405191506000825260208201604052610d06565b6040519150601f8416801560200281840101858101878315602002848b0101015b81831015610cf5578051835260209283019201610cdd565b5050858452601f01601f1916604052505b50949350505050565b6000610d1c82601061107f565b835110156107c75760405162461bcd60e51b8152602060048201526015602482015274746f427974657331365f6f75744f66426f756e647360581b604482015260640161052e565b6000610d7182601461107f565b83511015610db95760405162461bcd60e51b8152602060048201526015602482015274746f416464726573735f6f75744f66426f756e647360581b604482015260640161052e565b500160200151600160601b900490565b6000610dd682600161107f565b835110156107085760405162461bcd60e51b8152602060048201526014602482015273746f4279746573315f6f75744f66426f756e647360601b604482015260640161052e565b634e487b7160e01b600052604160045260246000fd5b600082601f830112610e4457600080fd5b813567ffffffffffffffff80821115610e5f57610e5f610e1d565b604051601f8301601f19908116603f01168101908282118183101715610e8757610e87610e1d565b81604052838152866020858801011115610ea057600080fd5b836020870160208301376000602085830101528094505050505092915050565b60008060408385031215610ed357600080fd5b823567ffffffffffffffff811115610eea57600080fd5b610ef685828601610e33565b95602094909401359450505050565b60008060408385031215610f1857600080fd5b82359150602083013567ffffffffffffffff811115610f3657600080fd5b610f4285828601610e33565b9150509250929050565b60008060408385031215610f5f57600080fd5b823567ffffffffffffffff80821115610f7757600080fd5b610f8386838701610e33565b93506020850135915080821115610f9957600080fd5b50610f4285828601610e33565b600060208284031215610fb857600080fd5b813567ffffffffffffffff811115610fcf57600080fd5b610fdb84828501610e33565b949350505050565b600080600060608486031215610ff857600080fd5b833567ffffffffffffffff81111561100f57600080fd5b61101b86828701610e33565b9660208601359650604090950135949350505050565b600060208083528351808285015260005b8181101561105e57858101830151858201604001528201611042565b506000604082860101526040601f19601f8301168501019250505092915050565b8082018082111561064c57634e487b7160e01b600052601160045260246000fdfea26469706673582212200ab05fdff7c9159a360effa700137333459105198b03327bed2de33488aa4ec064736f6c63430008150033", + "nonce": "0xa", + "accessList": [] + }, + "additionalContracts": [], + "isFixedGasLimit": false + }, + { + "hash": "0x8bac1279491a853a037f796040d8b892e7fcf8048c60ae58fdb3725fb1a756a2", + "transactionType": "CREATE", + "contractName": "MultiSendCallOnly", + "contractAddress": "0xB7f8BC63BbcaD18155201308C8f3540b07f84F5e", + "function": null, + "arguments": null, + "transaction": { + "type": "0x02", + "from": "0xf39fd6e51aad88f6f4ce6ab8827279cfffb92266", + "gas": "0x2e5b4", + "value": "0x0", + "data": "0x608060405234801561001057600080fd5b506101ae806100206000396000f3fe60806040526004361061001e5760003560e01c80638d80ff0a14610023575b600080fd5b6100366100313660046100c7565b610038565b005b805160205b818110156100ac578083015160f81c6001820184015160601c601583018501516035840186015160558501870160008560008114610082576001811461001e5761008e565b6000808585888a5af191505b508061009957600080fd5b505080605501850194505050505061003d565b505050565b634e487b7160e01b600052604160045260246000fd5b6000602082840312156100d957600080fd5b813567ffffffffffffffff808211156100f157600080fd5b818401915084601f83011261010557600080fd5b813581811115610117576101176100b1565b604051601f8201601f19908116603f0116810190838211818310171561013f5761013f6100b1565b8160405282815287602084870101111561015857600080fd5b82602086016020830137600092810160200192909252509594505050505056fea2646970667358221220915f2e68ab0008ebbb1ed69f9c5c2817995c2578db9a979f782235cb1216b32764736f6c63430008150033", + "nonce": "0xb", + "accessList": [] + }, + "additionalContracts": [], + "isFixedGasLimit": false + }, + { + "hash": "0xc58981349ad8b4fe5675e4c81a0f17f621a1731bb71c97667b7c1899584f5e7f", + "transactionType": "CREATE", + "contractName": "BasicCellRenderer", + "contractAddress": "0xA51c1fc2f0D1a1b8494Ed1FE312d7C3a78Ed91C0", + "function": null, + "arguments": null, + "transaction": { + "type": "0x02", + "from": "0xf39fd6e51aad88f6f4ce6ab8827279cfffb92266", + "gas": "0x3180ad", + "value": "0x0", + "data": "0x608060405234801561001057600080fd5b50612c25806100206000396000f3fe608060405234801561001057600080fd5b50600436106100365760003560e01c806306d4cd8b1461003b57806328de0f2f14610064575b600080fd5b61004e610049366004610322565b610077565b60405161005b919061038b565b60405180910390f35b61004e610072366004610404565b6100f1565b60606000610086600f846104fc565b90506000610095600f8361051e565b61009f9085610535565b905060006100ae826041610548565b60f81b9050806100c76100c2856001610548565b6101b6565b6040516020016100d8929190610577565b6040516020818303038152906040529350505050919050565b606060006100fe86610077565b90508383826101838873610178da211fef7d417bc0e6fed39f05609ad78863b5cdf924909160006040518363ffffffff1660e01b81526004016101429291906105a8565b602060405180830381865af415801561015f573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906100c291906105ca565b87878660405160200161019c97969594939291906105f2565b604051602081830303815290604052915050949350505050565b606060006101c383610249565b600101905060008167ffffffffffffffff8111156101e3576101e36103a5565b6040519080825280601f01601f19166020018201604052801561020d576020820181803683370190505b5090508181016020015b600019016f181899199a1a9b1b9c1cb0b131b232b360811b600a86061a8153600a850494508461021757509392505050565b60008072184f03e93ff9f4daa797ed6e38ed64bf6a1f0160401b83106102885772184f03e93ff9f4daa797ed6e38ed64bf6a1f0160401b830492506040015b6d04ee2d6d415b85acef810000000083106102b4576d04ee2d6d415b85acef8100000000830492506020015b662386f26fc1000083106102d257662386f26fc10000830492506010015b6305f5e10083106102ea576305f5e100830492506008015b61271083106102fe57612710830492506004015b60648310610310576064830492506002015b600a831061031c576001015b92915050565b60006020828403121561033457600080fd5b5035919050565b60005b8381101561035657818101518382015260200161033e565b50506000910152565b6000815180845261037781602086016020860161033b565b601f01601f19169290920160200192915050565b60208152600061039e602083018461035f565b9392505050565b634e487b7160e01b600052604160045260246000fd5b60008083601f8401126103cd57600080fd5b50813567ffffffffffffffff8111156103e557600080fd5b6020830191508360208285010111156103fd57600080fd5b9250929050565b6000806000806060858703121561041a57600080fd5b84359350602085013567ffffffffffffffff8082111561043957600080fd5b818701915087601f83011261044d57600080fd5b81358181111561045f5761045f6103a5565b604051601f8201601f19908116603f01168101908382118183101715610487576104876103a5565b816040528281528a60208487010111156104a057600080fd5b8260208601602083013760006020848301015280975050505060408701359150808211156104cd57600080fd5b506104da878288016103bb565b95989497509550505050565b634e487b7160e01b600052601160045260246000fd5b60008261051957634e487b7160e01b600052601260045260246000fd5b500490565b808202811582820484141761031c5761031c6104e6565b8181038181111561031c5761031c6104e6565b8082018082111561031c5761031c6104e6565b6000815161056d81856020860161033b565b9290920192915050565b6001600160f81b031983168152815160009061059a81600185016020870161033b565b919091016001019392505050565b6040815260006105bb604083018561035f565b90508260208301529392505050565b6000602082840312156105dc57600080fd5b5051919050565b81818437506000910190815290565b7f646174613a6170706c69636174696f6e2f6a736f6e2c7b22646573637269707481527f696f6e223a2022537461726b7368656574222c20226e616d65223a202200000060208201528688603d8301376000878201602160f81b603d820152875161066481603e840160208c0161033b565b7f222c22696d616765223a2022646174613a696d6167652f7376672b786d6c2c25603e92909101918201527f334373766725323076696577426f782533442532373025323030253230383925605e8201527f3230353525323725323066696c6c2533442532376e6f6e65253237253230786d607e8201527f6c6e73253344253237687474702533412f2f7777772e77332e6f72672f323030609e8201527f302f737667253237253345253343646566732533452533437374796c6525334560be8201527f253430666f6e742d66616365253230253742666f6e742d66616d696c7925334160de8201527f253230253237507265737325323053746172742532303250253237253342737260fe8201527f6325334125323075726c25323825323764617461253341666f6e742f776f666661011e8201527f32253342626173653634253243643039474d6741424141414141424c3841413861013e8201527f41414141415235774141424b674141454141414141414141414141414141414161015e8201527f4141414141414141414141414150305a4756453063476a41624d42794358675a61017e8201527f6741494e794551674b3846545361517544524141424e67496b41344e4d42434161019e8201527f46687a5148684649623644566c42306a314f4d4253336f4f4953744562732f2f6101be8201527f2f6c4a776356727a47634f30676f684c45484d6369694443434e57695a6761306101de8201527f79625345555954514f6a4b427038546c737a7344526438716174586c333058746101fe8201527f30645a47467952305668444b776c62746c25324272734643773945316e64655961021e8201527f4a74732f37527762305673784d71576c636a6a775445537a2f5568752f77337361023e8201527f33746b6f496d70343464515168576f456d54337579526d70746f7553446b7a5761025e8201527f454138762f3932364a4b7539486f696e6e3673376674336d4965476c7737547161027e8201527f6437456f326a46517849766a5642494a70563269614f62547a68575932314e7461029e8201527f476772687434704d4b3457556a34624c7967542f51253242514c7879253242336102be8201527f6c482f362f6b6275496444497239446a724a496a6f394a7336524d58253242456102de8201527f6b37424f545a6b6d70397a347455524652566656307148504448375a7462364a6102fe8201527f616f6130684c335975616232473373667a72365776394536793569767025324261031e8201527f7135564c74426a514478476f5345304150313762336466376c61726a6525324261033e8201527f73637a6b7241744a334b6657304a342532424b323365744b4b556a383554616f61035e8201527f57473453346158436c427743413268676141652532423658396f696e32304e6261037e8201527f554a7264466767517049686d5247494d30372f7025324277375a7058316c473161039e8201527f6a6a51787073435141423438714445415042346950312f6a39592f4261686a356103be8201527f5943414e302f78714157496852616a6c6e694e654f50396e78433466667932556103de8201527f694843304e47386b686f6f567a6f7459334445417a417a41356b473735337a6a6103fe8201527f4853354d6e6d586b69496a6d54554d36556d4d3025324256346976752f48377861041e8201527f6a364666322f6b343472787a6449324141676742492f4c48416b394a7a35554d61043e8201527f496f4c7755344146455435725a464f33444d616655633061777351434879497061045e8201527f557a546b30784a474a454f6a4e6871436b474570496153474f6a714e466d2f5761047e8201527f4e434e3569636b71434d6e414165564c4d4c655867356971386b365752585a5261049e8201527f326c337042393831427a73475a743225324256696c4342723954494a674b67786104be8201527f365542514446253242566a4b44714e7741414948386a6949664d6e75384b68666104de8201527f584b486f4e3348634134477245786842324155442f795a554d423857547579496104fe8201527f413444634f4b656434397939504249616e426967734d454e38556b30766c547661051e8201527f304a58334e394d795a75544d763573655357413525324238556538504465547261053e8201527f645467474973566d4e33635856586a6463795275633434385866664176506e7361055e8201527f3575324d4531722532426a4731703137767a3849704f416e483444427367793361057e8201527f512f54376b33646d2f3846334232377355694877464631414f6c683055646e4961059e8201527f4471494e5164506355393145786f2f346252696a6a5169704e4e307a4c646c7a6105be8201527f504438496f547449734c38717162746f4f5149514a5a567849705931315073536105de8201527f55533231397a4c585066642f507667765751346372464d2532425769755671706105fe8201527f645a6f4e6475645872632f4745324d4a36656e3575635746694763375274364f61061e8201527f487676354d674c2532427a44733578444277696141315433554877326b63594361063e8201527f312f55666453316645316d37763742346537653350574848786533594f32483561065e8201527f25324241504f5a7965503025324251506553425468793078713965363241486a61067e8201527f6141556842432f364144484c6f476f4f657636412532426867487369317a613861069e8201527f71355a4e4d716a596c575a4d713867354248445574495370574a73526f52544a6106be8201527f56613049305a3957546b5371564b73507a3464586a7648746449684c6e7670746106de8201527f554c4330753542567579414d544b4a513930594b5267546e5769476b6d7153456106fe8201527f714b6d7256685259674b6b335443686255573671456f45637665577a6859535461071e8201527f4c32484e706735452f6d7151393956564467763352475435586d33637a68754c61073e8201527f3972685864316132372f736c5130686959366a643739614f5a43746a6f52687261075e8201527f623136575676514b725734477a786a7869723238494d697a2f7155447973495761077e8201527f7037516a667765347a556437614a735651575179524c554b484b42577938577661079e8201527f45565333584d53353656337757644f442532424638757639645477496d4b722f6107be8201527f5064626d5763775176456641616a7975566a70784e32704f56635769336c38776107de8201527f454c2f6d395070646f55494536253242504b5838315041546d67654f304231736107fe8201527f47454825324261707a353466646d534a7a333741686635366a4c7739756e504561081e8201527f35644d4b3025324237544639563843435466523979664e7355493474557a464661083e8201527f42326e536e384b4f626a64446964554c7034494a6873777878595172595a643661085e8201527f4e76436e55394d445825324252654c6e4d546d6c315a453972306b5077334e3261087e8201527f6752253242736a4573596d4953706b356c31497333594e614a4b6f6e7a65703761089e8201527f56637354316e556b62347048774b5a41796b614b6f43504630506f6d456876496108be8201527f5758656e6f5a767836774f4b313070316c3274546858793850316555776473766108de8201527f53715157766f424d7473674851554a614774494273756861776450545a5378596108fe8201527f707257757734647a7231564755744449465871726f4d4d69597346783857695461091e8201527f336463574b6f376d50554c79715657413972305974524a4c626957766a6e4c2561093e8201527f324272633452646767624e516c514141613264306d616236364d48447074314361095e8201527f6477626b51436253375053445a4d7a3746724f51713165636153304a6c74644161097e8201527f6c44527941587173364130586247707748676b70367572557757416272464d3361099e8201527f75794d764e4b6c344d6c435548537950416d3931776144454a3559595148754a6109be8201527f4d32304b575251737637486b61334770686c533258444b714f4b4245554753316109de8201527f65306b63316f323449494166486c4449794278584a4a656767423369386174566109fe8201527f67434f3064444f5a484a57596a564c416a6a397137765673456e72684b374568610a1e8201527f4c75427a42586d4d674554634531636d61436976504b6f4a766670466c794935610a3e8201527f4d70584234454325324245672f596d303454787843354e6c73596b74646f5951610a5e8201527f55656c38624673456c3748345a36734377622f38626b347458574658504b6a71610a7e8201527f5462526e64336e4c5770394f784941706c664b586747684e6c72443462354a4c610a9e8201527f5a367055753441726756614d366561357844574244476f7a707a4641376e6747610abe8201527f74596334486141775269475576637653653652414177335a576b564f4667764b610ade8201527f46364955696c4d49394964715155345134585264484866736666517770313955610afe8201527f434a49306a5773725433356f5578303678507268473271364d4533554f306c63610b1e8201527f635a557354454351784a44527854444b6c334c4948722f6162546f73686c6466610b3e8201527f51786a364f57745273466e6966444373473674336b426f344e6d424a6d615556610b5e8201527f54636c794951414a4c6a6e723042365a3859464d6e396b397967703752727848610b7e8201527f36766877624a4e41654b4d554436353974386746514a4d5377652f434f624850610b9e8201527f467671484746554e5266253242737245663354584b42725a76676b6369396972610bbe8201527f426d63442f7458616754474358634e68432532424f3539754c706e6673796f71610bde8201527f4c53313238374552776d38666165564f6d3857634437386c5a36594232793938610bfe8201527f5a4c6c4d3972557264324c514e6c324956643454727376675139363079377573610c1e8201527f5965306854506170576a71726c2532425837784665424e54253242315a644a4a610c3e8201527f572532424678745737584e7774634e7a7761672532425256656a6d4a6839656d610c5e8201527f6c495a4b69694e63694b3849554f4d33556a4a376342554e5847505853326c68610c7e8201527f253242687770676f4836567348524f63764569723372585970344c7769435a77610c9e8201527f3176486c43623552314d68623564536e4f326d6e6f475a6f5846315765574757610cbe8201527f6d7a694a314a555534715072306e694a536c4e424331636b4b6d4a6657625877610cde8201527f5577757449547a456d6a776770776142753464525066746a2f4e384143526e64610cfe8201527f616b2f4641674b674c37305058577839767a6b59322532426d34355473496b4c610d1e8201527f3037616f70444e6f676830535262535a534f397a744657516a376e574c676275610d3e8201527f364325324254374b6a44715a3667456e5277674d78306b4c5a77797962514f76610d5e8201527f514130773054782f354a42722f63595a6453574f546a774446364e6f586b796a610d7e8201527f33566a484e4751494e76426a5a734a4a3377466141516d6f5a575a5970416961610d9e8201527f574f466e6e686455524176576b557a77693062677a5a4158796f445545714863610dbe8201527f57307069454c574f777168773365765478444957724e32495371525151454c41610dde8201527f4d32365334486c723548552f48784a43436844424a6b756b6341573856415430610dfe8201527f6770545a544b4e48677a444f7234314751656a4f34677a416e6b577077464752610e1e8201527f43334c625231787a4b434875365635694674674c704f384b51596d5965467868610e3e8201527f4c32643838736469506a2f76306b427a636c51637954735766324d6445394944610e5e8201527f386d5858576a72434b253242354532756e336e6976656973526e726971317548610e7e8201527f594d6a6a69694945304b6466674d6f3163476d6b557254624f30356732737633610e9e8201527f477673525971762f61457736375472644f705435567a4641364131417939634b610ebe8201527f6f44667762544a64445750524e57517354796a6d3772486249734b466b6f4f2f610ede8201527f5a4c4376735966785973337768534338614c49344b765677373773336e347a48610efe8201527f67697061634a6e435362463945727a53357069386343577655597a4f5064327a610f1e8201527f684a2f4750437a53684f453378596c634f3350796164586a54334f6b68706841610f3e8201527f58465853766865544e5355525446565641486f4a6d7949726b6a454b6f517746610f5e8201527f4730303554334158643935764e30446d336d427332786746546c253242513572610f7e8201527f73416a6e744768707a6f62643642374e7a52664e56653130446f4e5639343753610f9e8201527f59646f635252624776636d785456786f61367a717756376d416e773544314745610fbe8201527f5474327a48382532425476514256356e37672f32615768743979794e594c3974610fde8201527f4f42744167384846435945316d4e775432454232467538544968543776565241610ffe8201527f3461587a6e6b3670545a4e6779696f73747749364b654655374c696c7041253261101e8201527f42334234474a794277574d327062466a4876734a3747754f6f616b6a6d46746a61103e8201527f59344c6254396c323239253242453646374c4475577a744c6e333749786b386a61105e8201527f356c42564b33774c7369362f416641756f6a34396c4d6b5653545045396b704761107e8201527f64304c724555534a4941413070596c4178414d642f4e4f46776f4a446458466961109e8201527f307a4f5744422f54464a705666575642574f516274724a556230636c663369256110be8201527f3242575072446f596c65545674564f45306d36793564487444725551776f414c6110de8201527f7455523365585364444d4e785866656a594674764c626c726c4a7777484b2f456110fe8201527f6957504a616b32574b35386e684e6f4c6a615a55475841756f32656f5777464561111e8201527f66612f445334496958717246714779633348726939785132693243352f73357661113e8201527f7a424d30793777334d4473774d3759325247427172464d6778374f696325324261115e8201527f30497a736d5678617a5473305263666a324f3334532f525639503269486f427561117e8201527f6c4b49594244665a46654c53356439725379664a64536c67683268644d72324f61119e8201527f5552334b6e6c506e4f41785477314a384c4d325a776e4671765a745a4a6c78786111be8201527f343873776243743272316b664875443756624831326159383849437456734b786111de8201527f4b742f31726b616c42414d74782f6f6f6d43445059626b556f4c6344624b436a6111fe8201527f7675713953544467746a584744715735564b36686347654f46697a6a3643714c61121e8201527f4f49716b57783477733245504d444e7378253242613661533230384f39784c3061123e8201527f526146586f394241645530706e452532424c695359334b536f4a41525978646e61125e8201527f7a69545a4d706961442f3438496969393834446151357976656378414673735761127e8201527f792f686274696d63253242704c386b35796f70496d4a627948712f6138797a6c61129e8201527f6c37726f4f7a586d786d4163337459585363546b65734d6344324939315a36336112be8201527f6549312f394a627755716b36737863394b52677277574d414e6543314e6e39756112de8201527f4779775473706d5538712532426c5a6d43714d674153363662674841476a514b6112fe8201527f73754a334451416a5235346d356a4c7a5a616e546c62646530253242726e663461131e8201527f385a574138546c32673277414779427748516e3552322532424e6a726542677861133e8201527f626c734e46627554776d6862414a48737a2f72416f61764c4f34317874767a5961135e8201527f4768336e4c4a426b41506a7578424a445248333048426575385567436978464e61137e8201527f437951322f4b253242385157372f6530253242664f2532423436524e5730657961139e8201527f4c726f39446a5467704a4e4d3547385179306c54644f756d73773066715045696113be8201527f393646702532424830634d774e6f376a787a596d6e4e664d5a6d64506c7932706113de8201527f6f7132575065476d67507136474c78504e34536c4b486e7870624f69754c58516113fe8201527f75583155715031676a6f38426136536c55314f416d5267707a7531735444584a61141e8201527f50754d3338546f387130344c324e777970653837327777556741675a6c70386461143e8201527f6b5166397a38544d43624d6b596b3758484375333564375a5a41656f346b5a4b61145e8201527f68784953386945354c546a334c4f6976485a7268394a3870337a4c5a436a776361147e8201527f6970354452694b6e576e49664c33386b4a684d7452776a67553525324256726d61149e8201527f714b6c6739307a376a64732f4238444b646b464c76483353253242376f4838616114be8201527f6c445a6c626734533155583574434d445342324f364b756c7a41344b763067376114de8201527f314251643054464b7733685358696e62374e6c304258725873514e6376436b386114fe8201527f6d6f394f786965783559627a78564e2f6b3738336f48545a495777393079495a61151e8201527f777672697164475473586e54384965705437597946434f4a6741395a3042794961153e8201527f455956735478522f6b73616b324268376f4b767034766e695530364d57317a4261155e8201527f4672746568647a306b6b587951786a426d7965645636644d596545386146787461157e8201527f6575777355466136466c6c54446c716430707a525a77473663467266574d627061159e8201527f384738587a6a66624d253242354658657076356f457273696c363458783663376115be8201527f5841576275696d3666387347494d58666f334a6971476b703333376854536a676115de8201527f65636862364f42472f327a31376a6f6d4469476d253242476c623146553069656115fe8201527f6e7552796977654c576767447a6d4655765545556a5a6f377356544877684f4661161e8201527f504d6b4e737146423977796d6b45307639666d7477453854377135384e594f3761163e8201527f787534623833766e46766c35755378446c472532426b4f51675249644f346a6761165e8201527f7a786a53486a4b4c7332742f6c684f647771766131415744437072763344345361167e8201527f34523741625934544362664b4637744265363554343551347a7a49714433316161169e8201527f79797557716a692532424636585337535439483943314f342f694b366b4775766116be8201527f6b512f664e3537487837456533373435622f76766e2f62482f58253242392f256116de8201527f32426762656d684f416d49705576755157757344764b517578394a44564e734b6116fe8201527f673651636d6b73515341445530346347524c523768466f5a326337785545664761171e8201527f253242776b755459474d764c6a422f6550634936416847686e5735717a45416961173e8201527f4a586377564545775869654e70536c317a6a457253253242435325324248634c61175e8201527f6f52506d7661324d6767412f69794c67536f544a555767733442794149514f3061177e8201527f4f6f705a487656627a6844494c65557155677a7a48492f667950474e7879777361179e8201527f6f796c6865534639577662795363336b4544716b32415636436c4364635535536117be8201527f6e6c4e6e4963394b794d63384c79622532423867484f4a795173466c4c6250526117de8201527f796d6d374a42743349545a544162314732444252496b514b51705451396939626117fe8201527f3665435353387a4d366161525364544b5657524d336663454a4c644b61746e7361181e8201527f724959774e4a55253242733048364461757832775a35686733706c653042474861183e8201527f756b316b4543734859446461496d4b7025324233463542317859763763486b7161185e8201527f644475306a4b645273657a3531376d63563641685148346931484e3173766c6a61187e8201527f5248366845454672682532426e72726d47316e33307a4d346749776d694d774561189e8201527f624b6842545564423141486f582532424b6741517a4f48543946494f71436b526118be8201527f4e4e623273397170496943534f753167576868497343564a73765771457175356118de8201527f47624a514b4e6a61427465394c4f69676368414a7665475773394332323033766118fe8201527f6f6e476c6b77725251323464646732796345646157554456734441785548734961191e8201527f77773665615234464665336d4a416b66426d5a6452395264774a485a6d47645261193e8201527f7950436a706a627a31712f584a34534949446b66384b4b6e6e32456c4b6d794c61195e8201527f69573442513836733151554b2f76426867524e776548766c5968687a7238706361197e8201527f67704b4b6d6f61576a7036426b594f48446c7835734b5647336365474539657661199e8201527f506e773563646667454242676f554946536238587632504553314772446a78456119be8201527f69524b6b697846716a54704d6d544b6b693148726a7a354368517155717845716119de8201527f544c6c4b6c53715571314772547231476a527130717846717a62744f6e5347656119fe8201527f3668374a6d627a4968355a6544696c315a58536a7430774375616b336c6e476f611a1e8201527f5655506f53734e663337394b326a6274716d44674d69485a42665a6c68324839611a3e8201527f75773738495469314a466a585653662f4336634f55667a346f30644178305447611a5e8201527f777448446863666a3443516d49694531444d5a42546b6c4e5a557065566f614f611a7e8201527f6e717633733234314e50503965766574594768435a50576a4979747332706173611a9e8201527f436a25324270556a54596c336b615574374f744b4a6136355850396d356e6367611abe8201527f364e686a685a587032762532426d57724341545a754a303368316b6a55756976611ade8201527f5067596e6a6e35744b4a4f6b326e6362703251414559585a69304b496d50356b611afe8201527f744961466e366b5a397743253237253239253230666f726d6174253238253237611b1e8201527f776f666632253237253239253342666f6e742d7765696768742533412532306e611b3e8201527f6f726d616c253342666f6e742d7374796c652533412532306e6f726d616c2533611b5e8201527f42666f6e742d646973706c617925334125323073776170253342253744746578611b7e8201527f74253230253742666f6e742d66616d696c792533412532302532375072657373611b9e8201527f2532305374617274253230325025323725334266696c6c253341253230776869611bbe8201527f74652537442e76616c7565253230253742666f6e742d73697a65253341253230611bde8201527f313070782533422537442e6e616d65253230253742666f6e742d73697a652533611bfe8201527f412532303470782533422537442533432f7374796c652533452533432f646566611c1e8201527f7325334525334372656374253230776964746825334425323738392532372532611c3e8201527f30686569676874253344253237353525323725323066696c6c25334425323762611c5e8201527f6c61636b2532372532302f253345253343726563742532307825334425323735611c7e8201527f2e3525323725323079253344253237352e352532372532307769647468253344611c9e8201527f2532373738253237253230686569676874253344253237343425323725323066611cbe8201527f696c6c2533442532372532333030303046462532372532302f25334525334374611cde8201527f657874253230746578742d616e63686f722533442532376d6964646c65253237611cfe8201527f2532307825334425323734342e35253237253230792533442532373333253237611d1e8201527f253230636c61737325334425323776616c756525323725334500000000000000611d3e820152612ba5612b9e6129f5611d5784018a61055b565b7f2533432f746578742533452533437265637425323078253344253237352e352581527f323725323079253344253237352e35253237253230776964746825334425323760208201527f373825323725323068656967687425334425323734342532372532307374726f60408201527f6b652533442532372532334646344630412532372532307374726f6b652d776960608201527f647468253344253237332532372532302f25334525334372656374253230782560808201527f334425323733302532372532307925334425323734352e35253237253230776960a08201527f647468253344253237353825323725323068656967687425334425323738253260c08201527f3725323066696c6c2533442532372532334646344630412532372532302f253360e08201527f4525334374657874253230746578742d616e63686f72253344253237656e64256101008201527f32372532307825334425323738372532372532307925334425323735322532376101208201527f253230636c6173732533442532376e616d6525323725334500000000000000006101408201526101580190565b86886105e3565b602160f81b81529050612bbb600182018561055b565b7f2533432f746578742533452533432f737667253345227d00000000000000000081526017019a995050505050505050505056fea2646970667358221220f64400964cf21cb4940de76482b5ee6f22f9e46a781e948eea81a1999aa43eb964736f6c63430008150033", + "nonce": "0xc", + "accessList": [] + }, + "additionalContracts": [], + "isFixedGasLimit": false + }, + { + "hash": "0xee92b773c5521d184ba9be3d875630dcb57eb44260a9179e299e98558f6bf6a1", + "transactionType": "CREATE", + "contractName": null, + "contractAddress": "0x0DCd1Bf9A1b36cE34237eEaFef220932846BCD82", + "function": null, + "arguments": null, + "transaction": { + "type": "0x02", + "from": "0xf39fd6e51aad88f6f4ce6ab8827279cfffb92266", + "gas": "0x42230", + "value": "0x0", + "data": "0x608060405234801561001057600080fd5b506102cf806100206000396000f3fe608060405234801561001057600080fd5b506004361061004c5760003560e01c80630194db8e14610051578063072bdcc214610076578063a391c15b14610089578063b67d77c51461009c575b600080fd5b61006461005f366004610160565b6100af565b60405190815260200160405180910390f35b610064610084366004610160565b6100ef565b61006461009736600461021e565b610129565b6100646100aa36600461021e565b61013e565b600080805b83518110156100e8578381815181106100cf576100cf610240565b60200260200101518201915080806001019150506100b4565b5092915050565b60006001815b83518110156100e85783818151811061011057610110610240565b60200260200101518202915080806001019150506100f5565b60006101358284610256565b90505b92915050565b60006101358284610278565b634e487b7160e01b600052604160045260246000fd5b6000602080838503121561017357600080fd5b823567ffffffffffffffff8082111561018b57600080fd5b818501915085601f83011261019f57600080fd5b8135818111156101b1576101b161014a565b8060051b604051601f19603f830116810181811085821117156101d6576101d661014a565b6040529182528482019250838101850191888311156101f457600080fd5b938501935b82851015610212578435845293850193928501926101f9565b98975050505050505050565b6000806040838503121561023157600080fd5b50508035926020909101359150565b634e487b7160e01b600052603260045260246000fd5b60008261027357634e487b7160e01b600052601260045260246000fd5b500490565b8181038181111561013857634e487b7160e01b600052601160045260246000fdfea2646970667358221220d31583983189259cb60ccec801ca1ed218051d27add344c207dbb437b07d39c864736f6c63430008150033", + "nonce": "0xd", + "accessList": [] + }, + "additionalContracts": [], + "isFixedGasLimit": false + }, + { + "hash": "0x6b2accf3ea8f73ed8df63dc21be40dcd11c6e79c6b0cd702eb9625a48fdecfce", + "transactionType": "CREATE", + "contractName": "Evmsheet", + "contractAddress": "0x9A676e781A523b5d0C0e43731313A708CB607508", + "function": null, + "arguments": [ + "0xA51c1fc2f0D1a1b8494Ed1FE312d7C3a78Ed91C0", + "10000000000000000" + ], + "transaction": { + "type": "0x02", + "from": "0xf39fd6e51aad88f6f4ce6ab8827279cfffb92266", + "gas": "0x359c55", + "value": "0x0", + "data": "0x608060405234801561001057600080fd5b50604051612fa3380380612fa383398101604081905261002f916100b1565b61003833610061565b600280546001600160a01b0319166001600160a01b0393909316929092179091556001556100eb565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b600080604083850312156100c457600080fd5b82516001600160a01b03811681146100db57600080fd5b6020939093015192949293505050565b612ea9806100fa6000396000f3fe608060405260043610620000b95760003560e01c80638da5cb5b116200006c5780638da5cb5b146200019d578063ab2fa65a14620001bd578063ae28505e14620001e4578063c56c4cf11462000209578063f2fde38b146200022b578063f52be2a2146200025057600080fd5b806303fb31e814620000c65780631164c83d14620000ed578063145e414714620001045780633ccfd60b14620001465780635787cacb146200015e578063715018a6146200018557600080fd5b36620000c157005b600080fd5b348015620000d357600080fd5b50620000eb620000e536600462000842565b62000277565b005b620000eb620000fe366004620008b3565b620002a3565b3480156200011157600080fd5b5062000129620001233660046200092e565b620004e2565b6040516001600160a01b0390911681526020015b60405180910390f35b3480156200015357600080fd5b50620000eb6200057f565b3480156200016b57600080fd5b50620001766200061c565b6040516200013d91906200095b565b3480156200019257600080fd5b50620000eb62000680565b348015620001aa57600080fd5b506000546001600160a01b031662000129565b348015620001ca57600080fd5b50620001d562000698565b6040516200013d9190620009aa565b348015620001f157600080fd5b506200012962000203366004620009fa565b620006c4565b3480156200021657600080fd5b5060025462000129906001600160a01b031681565b3480156200023857600080fd5b50620000eb6200024a36600462000842565b620006ef565b3480156200025d57600080fd5b506200026860015481565b6040519081526020016200013d565b620002816200076b565b600280546001600160a01b0319166001600160a01b0392909216919091179055565b6001543414620002cd5760405163723a79e360e11b81523460048201526024015b60405180910390fd5b600060405180602001620002e19062000817565b6020820181038252601f19601f8201166040525090506000828251602084016000f56002546040516356d3163d60e01b81526001600160a01b0391821660048201529192508216906356d3163d90602401600060405180830381600087803b1580156200034d57600080fd5b505af115801562000362573d6000803e3d6000fd5b505060405163c47f002760e01b81526001600160a01b038416925063c47f0027915062000396908a908a9060040162000a14565b600060405180830381600087803b158015620003b157600080fd5b505af1158015620003c6573d6000803e3d6000fd5b5050604051635c26412360e11b81526001600160a01b038416925063b84c82469150620003fa908890889060040162000a14565b600060405180830381600087803b1580156200041557600080fd5b505af11580156200042a573d6000803e3d6000fd5b505060405163f2fde38b60e01b81523260048201526001600160a01b038416925063f2fde38b9150602401600060405180830381600087803b1580156200047057600080fd5b505af115801562000485573d6000803e3d6000fd5b5050600380546001810182556000919091527fc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b0180546001600160a01b0319166001600160a01b0394909416939093179092555050505050505050565b600060ff60f81b838360405180602001620004fd9062000817565b6020820181038252601f19601f82011660405250805190602001206040516020016200056094939291906001600160f81b031994909416845260609290921b6bffffffffffffffffffffffff191660018401526015830152603582015260550190565b60408051601f1981840301815291905280516020909101209392505050565b620005896200076b565b604051600090339047908381818185875af1925050503d8060008114620005cd576040519150601f19603f3d011682016040523d82523d6000602084013e620005d2565b606091505b5050905080620006195760405162461bcd60e51b815260206004820152601160248201527015da5d1a191c985dd85b0819985a5b1959607a1b6044820152606401620002c4565b50565b606060038054806020026020016040519081016040528092919081815260200182805480156200067657602002820191906000526020600020905b81546001600160a01b0316815260019091019060200180831162000657575b5050505050905090565b6200068a6200076b565b620006966000620007c7565b565b606060405180602001620006ac9062000817565b601f1982820381018352601f90910116604052919050565b60038181548110620006d557600080fd5b6000918252602090912001546001600160a01b0316905081565b620006f96200076b565b6001600160a01b038116620007605760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401620002c4565b6200061981620007c7565b6000546001600160a01b03163314620006965760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401620002c4565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b6124308062000a4483390190565b80356001600160a01b03811681146200083d57600080fd5b919050565b6000602082840312156200085557600080fd5b620008608262000825565b9392505050565b60008083601f8401126200087a57600080fd5b50813567ffffffffffffffff8111156200089357600080fd5b602083019150836020828501011115620008ac57600080fd5b9250929050565b600080600080600060608688031215620008cc57600080fd5b853567ffffffffffffffff80821115620008e557600080fd5b620008f389838a0162000867565b909750955060208801359150808211156200090d57600080fd5b506200091c8882890162000867565b96999598509660400135949350505050565b600080604083850312156200094257600080fd5b6200094d8362000825565b946020939093013593505050565b6020808252825182820181905260009190848201906040850190845b818110156200099e5783516001600160a01b03168352928401929184019160010162000977565b50909695505050505050565b600060208083528351808285015260005b81811015620009d957858101830151858201604001528201620009bb565b506000604082860101526040601f19601f8301168501019250505092915050565b60006020828403121562000a0d57600080fd5b5035919050565b60208152816020820152818360408301376000818301604090810191909152601f909201601f1916010191905056fe60806040523480156200001157600080fd5b50604051806040016040528060078152602001660536865657420360cc1b815250604051806040016040528060048152602001630534854360e41b81525062000069620000636200008f60201b60201c565b62000093565b600162000077838262000188565b50600262000086828262000188565b50505062000254565b3390565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b634e487b7160e01b600052604160045260246000fd5b600181811c908216806200010e57607f821691505b6020821081036200012f57634e487b7160e01b600052602260045260246000fd5b50919050565b601f8211156200018357600081815260208120601f850160051c810160208610156200015e5750805b601f850160051c820191505b818110156200017f578281556001016200016a565b5050505b505050565b81516001600160401b03811115620001a457620001a4620000e3565b620001bc81620001b58454620000f9565b8462000135565b602080601f831160018114620001f45760008415620001db5750858301515b600019600386901b1c1916600185901b1785556200017f565b600085815260208120601f198616915b82811015620002255788860151825594840194600190910190840162000204565b5085821015620002445787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b6121cc80620002646000396000f3fe608060405234801561001057600080fd5b50600436106102275760003560e01c8063715018a611610130578063b85d8b85116100b8578063cf0983981161007c578063cf09839814610512578063cfbe95d814610535578063df4ca20614610556578063e985e9c514610576578063f2fde38b146105a457600080fd5b8063b85d8b85146104a4578063b88d4fde146104ce578063b8c368ec146104e1578063c47f0027146104ec578063c87b56dd146104ff57600080fd5b806395d89b41116100ff57806395d89b4114610439578063a22cb46514610441578063b46ebb1214610454578063b6d658e114610467578063b84c82461461049157600080fd5b8063715018a6146103fa578063768d5029146104025780638ada6b0f146104155780638da5cb5b1461042857600080fd5b80631b06443c116101b35780634f6ccce7116101825780634f6ccce71461038157806356d3163d146103a15780636352211e146103b45780636a0abc74146103c757806370a08231146103e757600080fd5b80631b06443c14610335578063206848f61461034857806323b872dd1461035b57806342842e0e1461036e57600080fd5b8063081812fc116101fa578063081812fc146102a1578063095ea7b3146102e2578063172b9eed146102f757806318160ddd1461030a5780631941fd141461031357600080fd5b806301ffc9a71461022c57806302f3c4c91461025457806306fdde03146102745780630715a24a1461027c575b600080fd5b61023f61023a36600461176a565b6105b7565b60405190151581526020015b60405180910390f35b610267610262366004611861565b610609565b60405161024b9190611951565b610267610638565b6102936fffffffffffffffffffffffffffffffff81565b60405190815260200161024b565b6102ca6102af366004611964565b6005602052600090815260409020546001600160a01b031681565b6040516001600160a01b03909116815260200161024b565b6102f56102f036600461197d565b6106c6565b005b6102676103053660046119a9565b6107ad565b61029360075481565b610326610321366004611964565b610875565b60405161024b939291906119de565b6102ca610343366004611a0e565b61092a565b610326610356366004611964565b6109e3565b6102f5610369366004611a2b565b610ae1565b6102f561037c366004611a2b565b610ca8565b61029361038f366004611964565b60086020526000908152604090205481565b6102f56103af366004611a0e565b610da0565b6102ca6103c2366004611964565b610dca565b6103da6103d53660046119a9565b610e1c565b60405161024b9190611a6c565b6102936103f5366004611a0e565b610e60565b6102f5610ec3565b6102f5610410366004611af9565b610ed7565b6009546102ca906001600160a01b031681565b6000546001600160a01b03166102ca565b610267611035565b6102f561044f366004611b63565b611042565b610267610462366004611964565b6110ae565b61047a610475366004611964565b611258565b60408051921515835260208301919091520161024b565b6102f561049f366004611ba1565b611275565b6104b56104b2366004611964565b90565b6040516001600160e01b0319909116815260200161024b565b6102f56104dc366004611be3565b6112c6565b6102ca600160801b81565b6102f56104fa366004611ba1565b6113ae565b61026761050d366004611964565b6113ff565b61023f610520366004611a0e565b600160801b6001600160a01b03919091161090565b61023f610543366004611861565b516001600160a01b0316600160801b1490565b610569610564366004611964565b6114c9565b60405161024b9190611c16565b61023f610584366004611c4d565b600660209081526000928352604080842090915290825290205460ff1681565b6102f56105b2366004611a0e565b611526565b60006301ffc9a760e01b6001600160e01b0319831614806105e857506380ac58cd60e01b6001600160e01b03198316145b806106035750635b5e139f60e01b6001600160e01b03198316145b92915050565b6060816020015160405160200161062291815260200190565b6040516020818303038152906040529050919050565b6001805461064590611c7b565b80601f016020809104026020016040519081016040528092919081815260200182805461067190611c7b565b80156106be5780601f10610693576101008083540402835291602001916106be565b820191906000526020600020905b8154815290600101906020018083116106a157829003601f168201915b505050505081565b6000818152600360205260409020546001600160a01b03163381148061070f57506001600160a01b038116600090815260066020908152604080832033845290915290205460ff165b6107515760405162461bcd60e51b815260206004820152600e60248201526d1393d517d055551213d49256915160921b60448201526064015b60405180910390fd5b60008281526005602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b606060006107ba83610e1c565b9050606060005b825181101561086d576000806107ef8584815181106107e2576107e2611cb5565b6020026020010151611258565b9150915081156108335783610803826110ae565b61080c90611ccb565b60405160200161081d929190611cef565b6040516020818303038152906040529350610858565b6040516108469085908390602001611cef565b60405160208183030381529060405293505b5050808061086590611d27565b9150506107c1565b509392505050565b600a602052600090815260409020805460018201546002830180546001600160a01b039093169391926108a790611c7b565b80601f01602080910402602001604051908101604052809291908181526020018280546108d390611c7b565b80156109205780601f106108f557610100808354040283529160200191610920565b820191906000526020600020905b81548152906001019060200180831161090357829003601f168201915b5050505050905083565b6000600160801b6001600160a01b03831610156109da576000610955836001600160a01b03166110ae565b604051632d737e4960e21b815290915073610178da211fef7d417bc0e6fed39f05609ad7889063b5cdf92490610992908490600090600401611d40565b602060405180830381865af41580156109af573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906109d39190611d62565b9392505050565b5090565b919050565b60008181526003602052604081205481906060906001600160a01b0316610a1057600160801b9250610a2b565b6000848152600a60205260409020546001600160a01b031692505b6000848152600a60205260409020600181015460029091018054859291908190610a5490611c7b565b80601f0160208091040260200160405190810160405280929190818152602001828054610a8090611c7b565b8015610acd5780601f10610aa257610100808354040283529160200191610acd565b820191906000526020600020905b815481529060010190602001808311610ab057829003601f168201915b505050505090509250925092509193909250565b6000818152600360205260409020546001600160a01b03848116911614610b375760405162461bcd60e51b815260206004820152600a60248201526957524f4e475f46524f4d60b01b6044820152606401610748565b6001600160a01b038216610b815760405162461bcd60e51b81526020600482015260116024820152701253959053125117d49150d25412515395607a1b6044820152606401610748565b336001600160a01b0384161480610bbb57506001600160a01b038316600090815260066020908152604080832033845290915290205460ff165b80610bdc57506000818152600560205260409020546001600160a01b031633145b610c195760405162461bcd60e51b815260206004820152600e60248201526d1393d517d055551213d49256915160921b6044820152606401610748565b6001600160a01b0380841660008181526004602090815260408083208054600019019055938616808352848320805460010190558583526003825284832080546001600160a01b03199081168317909155600590925284832080549092169091559251849392917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b610cb3838383610ae1565b6001600160a01b0382163b1580610d5c5750604051630a85bd0160e11b8082523360048301526001600160a01b03858116602484015260448301849052608060648401526000608484015290919084169063150b7a029060a4016020604051808303816000875af1158015610d2c573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610d509190611d7b565b6001600160e01b031916145b610d9b5760405162461bcd60e51b815260206004820152601060248201526f155394d0519157d49150d2541251539560821b6044820152606401610748565b505050565b610da861159f565b600980546001600160a01b0319166001600160a01b0392909216919091179055565b6000818152600360205260409020546001600160a01b0316806109de5760405162461bcd60e51b815260206004820152600a6024820152691393d517d3525395115160b21b6044820152606401610748565b60608082516040519150602081048252602082016020850160005b83811015610e4f578181015183820152602001610e37565b505050810160200160405292915050565b60006001600160a01b038216610ea75760405162461bcd60e51b815260206004820152600c60248201526b5a45524f5f4144445245535360a01b6044820152606401610748565b506001600160a01b031660009081526004602052604090205490565b610ecb61159f565b610ed560006115f9565b565b6000858152600360205260409020546001600160a01b0316610f2f57610efd3286611649565b60078054600090815260086020526040812087905581546001929190610f24908490611d98565b90915550610f889050565b6000858152600360205260409020546001600160a01b03163214610f8857600085815260036020526040908190205490516324f3f02560e21b81526001600160a01b039091166004820152326024820152604401610748565b6040518060600160405280856001600160a01b0316815260200184815260200183838080601f0160208091040260200160405190810160405280939291908181526020018383808284376000920182905250939094525050878152600a6020908152604091829020845181546001600160a01b0319166001600160a01b0390911617815590840151600182015590830151909150600282019061102b9082611df9565b5050505050505050565b6002805461064590611c7b565b3360008181526006602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b6000818152600a6020908152604080832081516060818101845282546001600160a01b0316825260018301549482019490945260028201805494959491938401916110f890611c7b565b80601f016020809104026020016040519081016040528092919081815260200182805461112490611c7b565b80156111715780601f1061114657610100808354040283529160200191611171565b820191906000526020600020905b81548152906001019060200180831161115457829003601f168201915b505050505081525050905061119381516001600160a01b0316600160801b1490565b156111a1576109d381610609565b60006111b0826000015161092a565b905060006111bf836020015190565b905060006111d084604001516107ad565b90506000836001600160a01b031683836040516020016111f1929190611eb9565b60408051601f198184030181529082905261120b91611eea565b600060405180830381855afa9150503d8060008114611246576040519150601f19603f3d011682016040523d82523d6000602084013e61124b565b606091505b5098975050505050505050565b600080611266600284611f06565b60019081149493901c92915050565b61127d61159f565b7f8dca0271872d00b3de3abafca544c52fcd7d512dd852c9894fa2c118ac759a93600283836040516112b193929190611fce565b60405180910390a16002610d9b828483611ffe565b6112d1858585610ae1565b6001600160a01b0384163b15806113685750604051630a85bd0160e11b808252906001600160a01b0386169063150b7a02906113199033908a908990899089906004016120be565b6020604051808303816000875af1158015611338573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061135c9190611d7b565b6001600160e01b031916145b6113a75760405162461bcd60e51b815260206004820152601060248201526f155394d0519157d49150d2541251539560821b6044820152606401610748565b5050505050565b6113b661159f565b7fb65b7b5ea384affd30f77f842e057d29dd1b13f133adf69a724a8105b164ab75600183836040516113ea93929190611fce565b60405180910390a16001610d9b828483611ffe565b6000818152600360205260409020546060906001600160a01b03168061143b57604051630243d1a960e21b815260048101849052602401610748565b6000611446846110ae565b6009546040516328de0f2f60e01b81529192506001600160a01b0316906328de0f2f9061147c90879085906001906004016120fd565b600060405180830381865afa158015611499573d6000803e3d6000fd5b505050506040513d6000823e601f3d908101601f191682016040526114c19190810190612128565b949350505050565b604080516060808201835260008083526020830181905292820152906114ee836110ae565b6040805160608101825285815260009586526003602090815295829020546001600160a01b0316958101959095528401525090919050565b61152e61159f565b6001600160a01b0381166115935760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610748565b61159c816115f9565b50565b6000546001600160a01b03163314610ed55760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610748565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b6001600160a01b0382166116935760405162461bcd60e51b81526020600482015260116024820152701253959053125117d49150d25412515395607a1b6044820152606401610748565b6000818152600360205260409020546001600160a01b0316156116e95760405162461bcd60e51b815260206004820152600e60248201526d1053149150511657d3525395115160921b6044820152606401610748565b6001600160a01b038216600081815260046020908152604080832080546001019055848352600390915280822080546001600160a01b0319168417905551839291907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b6001600160e01b03198116811461159c57600080fd5b60006020828403121561177c57600080fd5b81356109d381611754565b634e487b7160e01b600052604160045260246000fd5b604051601f8201601f1916810167ffffffffffffffff811182821017156117c6576117c6611787565b604052919050565b6001600160a01b038116811461159c57600080fd5b600067ffffffffffffffff8211156117fd576117fd611787565b50601f01601f191660200190565b600082601f83011261181c57600080fd5b813561182f61182a826117e3565b61179d565b81815284602083860101111561184457600080fd5b816020850160208301376000918101602001919091529392505050565b60006020828403121561187357600080fd5b813567ffffffffffffffff8082111561188b57600080fd5b908301906060828603121561189f57600080fd5b6040516060810181811083821117156118ba576118ba611787565b60405282356118c8816117ce565b8152602083810135908201526040830135828111156118e657600080fd5b6118f28782860161180b565b60408301525095945050505050565b60005b8381101561191c578181015183820152602001611904565b50506000910152565b6000815180845261193d816020860160208601611901565b601f01601f19169290920160200192915050565b6020815260006109d36020830184611925565b60006020828403121561197657600080fd5b5035919050565b6000806040838503121561199057600080fd5b823561199b816117ce565b946020939093013593505050565b6000602082840312156119bb57600080fd5b813567ffffffffffffffff8111156119d257600080fd5b6114c18482850161180b565b60018060a01b0384168152826020820152606060408201526000611a056060830184611925565b95945050505050565b600060208284031215611a2057600080fd5b81356109d3816117ce565b600080600060608486031215611a4057600080fd5b8335611a4b816117ce565b92506020840135611a5b816117ce565b929592945050506040919091013590565b6020808252825182820181905260009190848201906040850190845b81811015611aa457835183529284019291840191600101611a88565b50909695505050505050565b60008083601f840112611ac257600080fd5b50813567ffffffffffffffff811115611ada57600080fd5b602083019150836020828501011115611af257600080fd5b9250929050565b600080600080600060808688031215611b1157600080fd5b853594506020860135611b23816117ce565b935060408601359250606086013567ffffffffffffffff811115611b4657600080fd5b611b5288828901611ab0565b969995985093965092949392505050565b60008060408385031215611b7657600080fd5b8235611b81816117ce565b915060208301358015158114611b9657600080fd5b809150509250929050565b60008060208385031215611bb457600080fd5b823567ffffffffffffffff811115611bcb57600080fd5b611bd785828601611ab0565b90969095509350505050565b600080600080600060808688031215611bfb57600080fd5b8535611c06816117ce565b94506020860135611b23816117ce565b602081528151602082015260018060a01b036020830151166040820152600060408301516060808401526114c16080840182611925565b60008060408385031215611c6057600080fd5b8235611c6b816117ce565b91506020830135611b96816117ce565b600181811c90821680611c8f57607f821691505b602082108103611caf57634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052603260045260246000fd5b80516020808301519190811015611caf5760001960209190910360031b1b16919050565b60008351611d01818460208801611901565b9190910191825250602001919050565b634e487b7160e01b600052601160045260246000fd5b600060018201611d3957611d39611d11565b5060010190565b604081526000611d536040830185611925565b90508260208301529392505050565b600060208284031215611d7457600080fd5b5051919050565b600060208284031215611d8d57600080fd5b81516109d381611754565b8082018082111561060357610603611d11565b601f821115610d9b57600081815260208120601f850160051c81016020861015611dd25750805b601f850160051c820191505b81811015611df157828155600101611dde565b505050505050565b815167ffffffffffffffff811115611e1357611e13611787565b611e2781611e218454611c7b565b84611dab565b602080601f831160018114611e5c5760008415611e445750858301515b600019600386901b1c1916600185901b178555611df1565b600085815260208120601f198616915b82811015611e8b57888601518255948401946001909101908401611e6c565b5085821015611ea95787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b6001600160e01b0319831681528151600090611edc816004850160208701611901565b919091016004019392505050565b60008251611efc818460208701611901565b9190910192915050565b600082611f2357634e487b7160e01b600052601260045260246000fd5b500690565b60008154611f3581611c7b565b808552602060018381168015611f525760018114611f6c57611f9a565b60ff1985168884015283151560051b880183019550611f9a565b866000528260002060005b85811015611f925781548a8201860152908301908401611f77565b890184019650505b505050505092915050565b81835281816020850137506000828201602090810191909152601f909101601f19169091010190565b604081526000611fe16040830186611f28565b8281036020840152611ff4818587611fa5565b9695505050505050565b67ffffffffffffffff83111561201657612016611787565b61202a836120248354611c7b565b83611dab565b6000601f84116001811461205e57600085156120465750838201355b600019600387901b1c1916600186901b1783556113a7565b600083815260209020601f19861690835b8281101561208f578685013582556020948501946001909201910161206f565b50868210156120ac5760001960f88860031b161c19848701351681555b505060018560011b0183555050505050565b6001600160a01b03868116825285166020820152604081018490526080606082018190526000906120f29083018486611fa5565b979650505050505050565b8381526060602082015260006121166060830185611925565b8281036040840152611ff48185611f28565b60006020828403121561213a57600080fd5b815167ffffffffffffffff81111561215157600080fd5b8201601f8101841361216257600080fd5b805161217061182a826117e3565b81815285602083850101111561218557600080fd5b611a0582602083016020860161190156fea2646970667358221220f213b9045b40918ed2b5d304162ec2dfc3bc6b581b97362b423df61fd1436e5c64736f6c63430008150033a264697066735822122016636ee300fab238f4f099f32ba33a2f9dd9cbd27246df211a2a76dcc4263a7a64736f6c63430008150033000000000000000000000000a51c1fc2f0d1a1b8494ed1fe312d7c3a78ed91c0000000000000000000000000000000000000000000000000002386f26fc10000", + "nonce": "0xe", + "accessList": [] + }, + "additionalContracts": [], + "isFixedGasLimit": false + } + ], + "receipts": [ + { + "transactionHash": "0xb3f4d771719b183250740868d6d18329aae1f0075c73d6d29926e3204e122634", + "transactionIndex": "0x0", + "blockHash": "0x6412054b3287cb1a73dec3ec78a80cb623cea335ca06366466b8b7d66ca59d5b", + "blockNumber": "0x7", + "from": "0xf39Fd6e51aad88F6F4ce6aB8827279cffFb92266", + "to": null, + "cumulativeGasUsed": "0xf071f", + "gasUsed": "0xf071f", + "contractAddress": "0x610178dA211FEF7D417bC0e6FeD39F05609AD788", + "logs": [], + "status": "0x1", + "logsBloom": "0x00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", + "type": "0x2", + "effectiveGasPrice": "0xd10d0054" + }, + { + "transactionHash": "0x8bac1279491a853a037f796040d8b892e7fcf8048c60ae58fdb3725fb1a756a2", + "transactionIndex": "0x0", + "blockHash": "0x53660ceb2b900013357b55a5683e008005782f9209a14cce0798c768068d78de", + "blockNumber": "0x8", + "from": "0xf39Fd6e51aad88F6F4ce6aB8827279cffFb92266", + "to": null, + "cumulativeGasUsed": "0x23aa9", + "gasUsed": "0x23aa9", + "contractAddress": "0xB7f8BC63BbcaD18155201308C8f3540b07f84F5e", + "logs": [], + "status": "0x1", + "logsBloom": "0x00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", + "type": "0x2", + "effectiveGasPrice": "0xcd84f36e" + }, + { + "transactionHash": "0xc58981349ad8b4fe5675e4c81a0f17f621a1731bb71c97667b7c1899584f5e7f", + "transactionIndex": "0x0", + "blockHash": "0x7abb1c338d6d8d477ec8a8ffd62922b3dad876f743953bb936d9159bdb567857", + "blockNumber": "0x9", + "from": "0xf39Fd6e51aad88F6F4ce6aB8827279cffFb92266", + "to": null, + "cumulativeGasUsed": "0x2616fd", + "gasUsed": "0x2616fd", + "contractAddress": "0xA51c1fc2f0D1a1b8494Ed1FE312d7C3a78Ed91C0", + "logs": [], + "status": "0x1", + "logsBloom": "0x00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", + "type": "0x2", + "effectiveGasPrice": "0xca36b36b" + }, + { + "transactionHash": "0xee92b773c5521d184ba9be3d875630dcb57eb44260a9179e299e98558f6bf6a1", + "transactionIndex": "0x1", + "blockHash": "0x7abb1c338d6d8d477ec8a8ffd62922b3dad876f743953bb936d9159bdb567857", + "blockNumber": "0x9", + "from": "0xf39Fd6e51aad88F6F4ce6aB8827279cffFb92266", + "to": null, + "cumulativeGasUsed": "0x29452b", + "gasUsed": "0x32e2e", + "contractAddress": "0x0DCd1Bf9A1b36cE34237eEaFef220932846BCD82", + "logs": [], + "status": "0x1", + "logsBloom": "0x00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", + "type": "0x2", + "effectiveGasPrice": "0xca36b36b" + }, + { + "transactionHash": "0x6b2accf3ea8f73ed8df63dc21be40dcd11c6e79c6b0cd702eb9625a48fdecfce", + "transactionIndex": "0x0", + "blockHash": "0xe0024f20ff2586260c2768bbe99c8488f2387e7226d70e36498b57fc0db74f46", + "blockNumber": "0xa", + "from": "0xf39Fd6e51aad88F6F4ce6aB8827279cffFb92266", + "to": null, + "cumulativeGasUsed": "0x29402e", + "gasUsed": "0x29402e", + "contractAddress": "0x9A676e781A523b5d0C0e43731313A708CB607508", + "logs": [ + { + "address": "0x9A676e781A523b5d0C0e43731313A708CB607508", + "topics": [ + "0x8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0", + "0x0000000000000000000000000000000000000000000000000000000000000000", + "0x000000000000000000000000f39fd6e51aad88f6f4ce6ab8827279cfffb92266" + ], + "data": "0x", + "blockHash": "0xe0024f20ff2586260c2768bbe99c8488f2387e7226d70e36498b57fc0db74f46", + "blockNumber": "0xa", + "transactionHash": "0x6b2accf3ea8f73ed8df63dc21be40dcd11c6e79c6b0cd702eb9625a48fdecfce", + "transactionIndex": "0x0", + "logIndex": "0x0", + "transactionLogIndex": "0x0", + "removed": false + } + ], + "status": "0x1", + "logsBloom": "0x00000000000080000000000000000000000000000000000000800000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000020000000000000100000800000000000000000000000000000000400000000000000000000000000000000000000000000000000000000000000000000000000000000000000000800000000000000000000000000000000000000000000000000000200000000000000000000000002000000000000000000020000000000000000000000000000000000000000000000000000000000000000000", + "type": "0x2", + "effectiveGasPrice": "0xc7d0ece9" + } + ], + "libraries": [ + "lib/eth-projects-monorepo/packages/eth-projects-contracts/contracts/lib/utils/Bytes.sol:Bytes:0x610178da211fef7d417bc0e6fed39f05609ad788" + ], + "pending": [], + "returns": {}, + "timestamp": 1690374058, + "chain": 31337, + "multi": false, + "commit": null +} \ No newline at end of file diff --git a/packages/starksheet-solidity/broadcast/Evmsheet.s.sol/31337/run-1690374106.json b/packages/starksheet-solidity/broadcast/Evmsheet.s.sol/31337/run-1690374106.json new file mode 100644 index 00000000..ac4bab1d --- /dev/null +++ b/packages/starksheet-solidity/broadcast/Evmsheet.s.sol/31337/run-1690374106.json @@ -0,0 +1,209 @@ +{ + "transactions": [ + { + "hash": "0x5819542b86b5758034e0d7f6625d8bc4cc3c7ab3233a11f91580d5598cf0b966", + "transactionType": "CREATE", + "contractName": "Bytes", + "contractAddress": "0x0B306BF915C4d645ff596e518fAf3F9669b97016", + "function": null, + "arguments": null, + "transaction": { + "type": "0x02", + "from": "0xf39fd6e51aad88f6f4ce6ab8827279cfffb92266", + "gas": "0x1387dd", + "data": "0x6110d661003a600b82828239805160001a60731461002d57634e487b7160e01b600052600060045260246000fd5b30600052607381538281f3fe73000000000000000000000000000000000000000030146080604052600436106101625760003560e01c8063a5eb31ee116100cd578063d1ffb56111610086578063d1ffb561146103fb578063d442584f1461042b578063e004139614610454578063f1142fb314610474578063f647f8fb14610487578063f83b670f146104b257600080fd5b8063a5eb31ee14610344578063a8d8f00f1461036b578063b5cdf92414610396578063b63711df146103a9578063be8b3430146103bc578063c29616bd146103cf57600080fd5b80635ef849301161011f5780635ef8493014610241578063913c97b41461026b57806397e6175c1461029f57806399dd9bd7146102cb5780639ae4c3d1146102ec5780639cee499e1461031857600080fd5b8063042aa0841461016757806305d3bb74146101985780631a7431ef146101c0578063235266d2146101e357806348137709146101f65780634d66a2ae1461021b575b600080fd5b61017a610175366004610ec0565b6104de565b6040516001600160d01b031990911681526020015b60405180910390f35b6101ab6101a6366004610ec0565b610540565b60405163ffffffff909116815260200161018f565b6101d36101ce366004610f05565b61059d565b604051901515815260200161018f565b6101d36101f1366004610f4c565b610652565b610209610204366004610ec0565b6106b5565b60405160ff909116815260200161018f565b61022e610229366004610fa6565b610711565b60405161ffff909116815260200161018f565b61025461024f366004610ec0565b61071e565b60405165ffffffffffff909116815260200161018f565b61027e610279366004610ec0565b610772565b6040516fffffffffffffffffffffffffffffffff909116815260200161018f565b6102b26102ad366004610ec0565b6107d0565b6040516001600160a01b0319909116815260200161018f565b6102de6102d9366004610ec0565b61082e565b60405190815260200161018f565b6102ff6102fa366004610ec0565b61088c565b60405167ffffffffffffffff909116815260200161018f565b61032b610326366004610ec0565b6108e9565b6040516001600160d81b0319909116815260200161018f565b610357610352366004610ec0565b610946565b60405162ffffff909116815260200161018f565b61037e610379366004610ec0565b6109a3565b60405166ffffffffffffff909116815260200161018f565b6102de6103a4366004610ec0565b610a00565b6102ff6103b7366004610ec0565b610a55565b61022e6103ca366004610ec0565b610aa9565b6103e26103dd366004610ec0565b610b06565b6040516001600160c81b0319909116815260200161018f565b61040e610409366004610ec0565b610b5a565b6040516bffffffffffffffffffffffff909116815260200161018f565b61043e610439366004610ec0565b610bae565b60405164ffffffffff909116815260200161018f565b610467610462366004610fe3565b610c02565b60405161018f9190611031565b6102b2610482366004610ec0565b610d0f565b61049a610495366004610ec0565b610d64565b6040516001600160a01b03909116815260200161018f565b6104c56104c0366004610ec0565b610dc9565b6040516001600160f81b0319909116815260200161018f565b60006104eb82600661107f565b835110156105375760405162461bcd60e51b8152602060048201526014602482015273746f4279746573365f6f75744f66426f756e647360601b60448201526064015b60405180910390fd5b50016006015190565b600061054d82600461107f565b835110156105945760405162461bcd60e51b8152602060048201526014602482015273746f55696e7433325f6f75744f66426f756e647360601b604482015260640161052e565b50016004015190565b600080600190508354600260018083161561010002038216048451808214600181146105cc5760009450610644565b821561064457602083106001811461062957600189600052602060002060208a018581015b600284828410010361062057815183541461060f5760009950600093505b6001830192506020820191506105f1565b50505050610642565b6101008086040294506020880151851461064257600095505b505b509293505050505b92915050565b81518151600091600191811480831461066e57600092506106ab565b600160208701838101602088015b60028483851001036106a657805183511461069a5760009650600093505b6020928301920161067c565b505050505b5090949350505050565b60006106c282600161107f565b835110156107085760405162461bcd60e51b8152602060048201526013602482015272746f55696e74385f6f75744f66426f756e647360681b604482015260640161052e565b50016001015190565b600061064c826000610aa9565b600061072b82600661107f565b835110156105375760405162461bcd60e51b8152602060048201526014602482015273746f55696e7434385f6f75744f66426f756e647360601b604482015260640161052e565b600061077f82601061107f565b835110156107c75760405162461bcd60e51b8152602060048201526015602482015274746f55696e743132385f6f75744f66426f756e647360581b604482015260640161052e565b50016010015190565b60006107dd82600c61107f565b835110156108255760405162461bcd60e51b8152602060048201526015602482015274746f427974657331325f6f75744f66426f756e647360581b604482015260640161052e565b5001600c015190565b600061083b82602061107f565b835110156108835760405162461bcd60e51b8152602060048201526015602482015274746f427974657333325f6f75744f66426f756e647360581b604482015260640161052e565b50016020015190565b600061089982600861107f565b835110156108e05760405162461bcd60e51b8152602060048201526014602482015273746f55696e7436345f6f75744f66426f756e647360601b604482015260640161052e565b50016008015190565b60006108f682600561107f565b8351101561093d5760405162461bcd60e51b8152602060048201526014602482015273746f4279746573355f6f75744f66426f756e647360601b604482015260640161052e565b50016005015190565b600061095382600361107f565b8351101561099a5760405162461bcd60e51b8152602060048201526014602482015273746f55696e7432345f6f75744f66426f756e647360601b604482015260640161052e565b50016003015190565b60006109b082600761107f565b835110156109f75760405162461bcd60e51b8152602060048201526014602482015273746f55696e7435365f6f75744f66426f756e647360601b604482015260640161052e565b50016007015190565b6000610a0d82602061107f565b835110156108835760405162461bcd60e51b8152602060048201526015602482015274746f55696e743235365f6f75744f66426f756e647360581b604482015260640161052e565b6000610a6282600861107f565b835110156108e05760405162461bcd60e51b8152602060048201526014602482015273746f4279746573385f6f75744f66426f756e647360601b604482015260640161052e565b6000610ab682600261107f565b83511015610afd5760405162461bcd60e51b8152602060048201526014602482015273746f55696e7431365f6f75744f66426f756e647360601b604482015260640161052e565b50016002015190565b6000610b1382600761107f565b835110156109f75760405162461bcd60e51b8152602060048201526014602482015273746f4279746573375f6f75744f66426f756e647360601b604482015260640161052e565b6000610b6782600c61107f565b835110156108255760405162461bcd60e51b8152602060048201526014602482015273746f55696e7439365f6f75744f66426f756e647360601b604482015260640161052e565b6000610bbb82600561107f565b8351101561093d5760405162461bcd60e51b8152602060048201526014602482015273746f55696e7434305f6f75744f66426f756e647360601b604482015260640161052e565b606081610c1081601f61107f565b1015610c4f5760405162461bcd60e51b815260206004820152600e60248201526d736c6963655f6f766572666c6f7760901b604482015260640161052e565b610c59828461107f565b84511015610c9d5760405162461bcd60e51b8152602060048201526011602482015270736c6963655f6f75744f66426f756e647360781b604482015260640161052e565b606082158015610cbc5760405191506000825260208201604052610d06565b6040519150601f8416801560200281840101858101878315602002848b0101015b81831015610cf5578051835260209283019201610cdd565b5050858452601f01601f1916604052505b50949350505050565b6000610d1c82601061107f565b835110156107c75760405162461bcd60e51b8152602060048201526015602482015274746f427974657331365f6f75744f66426f756e647360581b604482015260640161052e565b6000610d7182601461107f565b83511015610db95760405162461bcd60e51b8152602060048201526015602482015274746f416464726573735f6f75744f66426f756e647360581b604482015260640161052e565b500160200151600160601b900490565b6000610dd682600161107f565b835110156107085760405162461bcd60e51b8152602060048201526014602482015273746f4279746573315f6f75744f66426f756e647360601b604482015260640161052e565b634e487b7160e01b600052604160045260246000fd5b600082601f830112610e4457600080fd5b813567ffffffffffffffff80821115610e5f57610e5f610e1d565b604051601f8301601f19908116603f01168101908282118183101715610e8757610e87610e1d565b81604052838152866020858801011115610ea057600080fd5b836020870160208301376000602085830101528094505050505092915050565b60008060408385031215610ed357600080fd5b823567ffffffffffffffff811115610eea57600080fd5b610ef685828601610e33565b95602094909401359450505050565b60008060408385031215610f1857600080fd5b82359150602083013567ffffffffffffffff811115610f3657600080fd5b610f4285828601610e33565b9150509250929050565b60008060408385031215610f5f57600080fd5b823567ffffffffffffffff80821115610f7757600080fd5b610f8386838701610e33565b93506020850135915080821115610f9957600080fd5b50610f4285828601610e33565b600060208284031215610fb857600080fd5b813567ffffffffffffffff811115610fcf57600080fd5b610fdb84828501610e33565b949350505050565b600080600060608486031215610ff857600080fd5b833567ffffffffffffffff81111561100f57600080fd5b61101b86828701610e33565b9660208601359650604090950135949350505050565b600060208083528351808285015260005b8181101561105e57858101830151858201604001528201611042565b506000604082860101526040601f19601f8301168501019250505092915050565b8082018082111561064c57634e487b7160e01b600052601160045260246000fdfea26469706673582212200ab05fdff7c9159a360effa700137333459105198b03327bed2de33488aa4ec064736f6c63430008150033", + "nonce": "0xf", + "accessList": [] + }, + "additionalContracts": [], + "isFixedGasLimit": false + }, + { + "hash": "0x301e6f0bd1fcecc7463c48469d5f7ccd0c1a62c94edef96827472a8b39a9ef9c", + "transactionType": "CREATE", + "contractName": "MultiSendCallOnly", + "contractAddress": "0x959922bE3CAee4b8Cd9a407cc3ac1C251C2007B1", + "function": null, + "arguments": null, + "transaction": { + "type": "0x02", + "from": "0xf39fd6e51aad88f6f4ce6ab8827279cfffb92266", + "gas": "0x2e5b4", + "value": "0x0", + "data": "0x608060405234801561001057600080fd5b506101ae806100206000396000f3fe60806040526004361061001e5760003560e01c80638d80ff0a14610023575b600080fd5b6100366100313660046100c7565b610038565b005b805160205b818110156100ac578083015160f81c6001820184015160601c601583018501516035840186015160558501870160008560008114610082576001811461001e5761008e565b6000808585888a5af191505b508061009957600080fd5b505080605501850194505050505061003d565b505050565b634e487b7160e01b600052604160045260246000fd5b6000602082840312156100d957600080fd5b813567ffffffffffffffff808211156100f157600080fd5b818401915084601f83011261010557600080fd5b813581811115610117576101176100b1565b604051601f8201601f19908116603f0116810190838211818310171561013f5761013f6100b1565b8160405282815287602084870101111561015857600080fd5b82602086016020830137600092810160200192909252509594505050505056fea2646970667358221220915f2e68ab0008ebbb1ed69f9c5c2817995c2578db9a979f782235cb1216b32764736f6c63430008150033", + "nonce": "0x10", + "accessList": [] + }, + "additionalContracts": [], + "isFixedGasLimit": false + }, + { + "hash": "0x457ccd02ec7d5d9ae02f2f249f866d36f8c4107218db1bef2deb1808d77ee377", + "transactionType": "CREATE", + "contractName": "BasicCellRenderer", + "contractAddress": "0x9A9f2CCfdE556A7E9Ff0848998Aa4a0CFD8863AE", + "function": null, + "arguments": null, + "transaction": { + "type": "0x02", + "from": "0xf39fd6e51aad88f6f4ce6ab8827279cfffb92266", + "gas": "0x3180ad", + "value": "0x0", + "data": "0x608060405234801561001057600080fd5b50612c25806100206000396000f3fe608060405234801561001057600080fd5b50600436106100365760003560e01c806306d4cd8b1461003b57806328de0f2f14610064575b600080fd5b61004e610049366004610322565b610077565b60405161005b919061038b565b60405180910390f35b61004e610072366004610404565b6100f1565b60606000610086600f846104fc565b90506000610095600f8361051e565b61009f9085610535565b905060006100ae826041610548565b60f81b9050806100c76100c2856001610548565b6101b6565b6040516020016100d8929190610577565b6040516020818303038152906040529350505050919050565b606060006100fe86610077565b905083838261018388730b306bf915c4d645ff596e518faf3f9669b9701663b5cdf924909160006040518363ffffffff1660e01b81526004016101429291906105a8565b602060405180830381865af415801561015f573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906100c291906105ca565b87878660405160200161019c97969594939291906105f2565b604051602081830303815290604052915050949350505050565b606060006101c383610249565b600101905060008167ffffffffffffffff8111156101e3576101e36103a5565b6040519080825280601f01601f19166020018201604052801561020d576020820181803683370190505b5090508181016020015b600019016f181899199a1a9b1b9c1cb0b131b232b360811b600a86061a8153600a850494508461021757509392505050565b60008072184f03e93ff9f4daa797ed6e38ed64bf6a1f0160401b83106102885772184f03e93ff9f4daa797ed6e38ed64bf6a1f0160401b830492506040015b6d04ee2d6d415b85acef810000000083106102b4576d04ee2d6d415b85acef8100000000830492506020015b662386f26fc1000083106102d257662386f26fc10000830492506010015b6305f5e10083106102ea576305f5e100830492506008015b61271083106102fe57612710830492506004015b60648310610310576064830492506002015b600a831061031c576001015b92915050565b60006020828403121561033457600080fd5b5035919050565b60005b8381101561035657818101518382015260200161033e565b50506000910152565b6000815180845261037781602086016020860161033b565b601f01601f19169290920160200192915050565b60208152600061039e602083018461035f565b9392505050565b634e487b7160e01b600052604160045260246000fd5b60008083601f8401126103cd57600080fd5b50813567ffffffffffffffff8111156103e557600080fd5b6020830191508360208285010111156103fd57600080fd5b9250929050565b6000806000806060858703121561041a57600080fd5b84359350602085013567ffffffffffffffff8082111561043957600080fd5b818701915087601f83011261044d57600080fd5b81358181111561045f5761045f6103a5565b604051601f8201601f19908116603f01168101908382118183101715610487576104876103a5565b816040528281528a60208487010111156104a057600080fd5b8260208601602083013760006020848301015280975050505060408701359150808211156104cd57600080fd5b506104da878288016103bb565b95989497509550505050565b634e487b7160e01b600052601160045260246000fd5b60008261051957634e487b7160e01b600052601260045260246000fd5b500490565b808202811582820484141761031c5761031c6104e6565b8181038181111561031c5761031c6104e6565b8082018082111561031c5761031c6104e6565b6000815161056d81856020860161033b565b9290920192915050565b6001600160f81b031983168152815160009061059a81600185016020870161033b565b919091016001019392505050565b6040815260006105bb604083018561035f565b90508260208301529392505050565b6000602082840312156105dc57600080fd5b5051919050565b81818437506000910190815290565b7f646174613a6170706c69636174696f6e2f6a736f6e2c7b22646573637269707481527f696f6e223a2022537461726b7368656574222c20226e616d65223a202200000060208201528688603d8301376000878201602160f81b603d820152875161066481603e840160208c0161033b565b7f222c22696d616765223a2022646174613a696d6167652f7376672b786d6c2c25603e92909101918201527f334373766725323076696577426f782533442532373025323030253230383925605e8201527f3230353525323725323066696c6c2533442532376e6f6e65253237253230786d607e8201527f6c6e73253344253237687474702533412f2f7777772e77332e6f72672f323030609e8201527f302f737667253237253345253343646566732533452533437374796c6525334560be8201527f253430666f6e742d66616365253230253742666f6e742d66616d696c7925334160de8201527f253230253237507265737325323053746172742532303250253237253342737260fe8201527f6325334125323075726c25323825323764617461253341666f6e742f776f666661011e8201527f32253342626173653634253243643039474d6741424141414141424c3841413861013e8201527f41414141415235774141424b674141454141414141414141414141414141414161015e8201527f4141414141414141414141414150305a4756453063476a41624d42794358675a61017e8201527f6741494e794551674b3846545361517544524141424e67496b41344e4d42434161019e8201527f46687a5148684649623644566c42306a314f4d4253336f4f4953744562732f2f6101be8201527f2f6c4a776356727a47634f30676f684c45484d6369694443434e57695a6761306101de8201527f79625345555954514f6a4b427038546c737a7344526438716174586c333058746101fe8201527f30645a47467952305668444b776c62746c25324272734643773945316e64655961021e8201527f4a74732f37527762305673784d71576c636a6a775445537a2f5568752f77337361023e8201527f33746b6f496d70343464515168576f456d54337579526d70746f7553446b7a5761025e8201527f454138762f3932364a4b7539486f696e6e3673376674336d4965476c7737547161027e8201527f6437456f326a46517849766a5642494a70563269614f62547a68575932314e7461029e8201527f476772687434704d4b3457556a34624c7967542f51253242514c7879253242336102be8201527f6c482f362f6b6275496444497239446a724a496a6f394a7336524d58253242456102de8201527f6b37424f545a6b6d70397a347455524652566656307148504448375a7462364a6102fe8201527f616f6130684c335975616232473373667a72365776394536793569767025324261031e8201527f7135564c74426a514478476f5345304150313762336466376c61726a6525324261033e8201527f73637a6b7241744a334b6657304a342532424b323365744b4b556a383554616f61035e8201527f57473453346158436c427743413268676141652532423658396f696e32304e6261037e8201527f554a7264466767517049686d5247494d30372f7025324277375a7058316c473161039e8201527f6a6a51787073435141423438714445415042346950312f6a39592f4261686a356103be8201527f5943414e302f78714157496852616a6c6e694e654f50396e78433466667932556103de8201527f694843304e47386b686f6f567a6f7459334445417a417a41356b473735337a6a6103fe8201527f4853354d6e6d586b69496a6d54554d36556d4d3025324256346976752f48377861041e8201527f6a364666322f6b343472787a6449324141676742492f4c48416b394a7a35554d61043e8201527f496f4c7755344146455435725a464f33444d616655633061777351434879497061045e8201527f557a546b30784a474a454f6a4e6871436b474570496153474f6a714e466d2f5761047e8201527f4e434e3569636b71434d6e414165564c4d4c655867356971386b365752585a5261049e8201527f326c337042393831427a73475a743225324256696c4342723954494a674b67786104be8201527f365542514446253242566a4b44714e7741414948386a6949664d6e75384b68666104de8201527f584b486f4e3348634134477245786842324155442f795a554d423857547579496104fe8201527f413444634f4b656434397939504249616e426967734d454e38556b30766c547661051e8201527f304a58334e394d795a75544d763573655357413525324238556538504465547261053e8201527f645467474973566d4e33635856586a6463795275633434385866664176506e7361055e8201527f3575324d4531722532426a4731703137767a3849704f416e483444427367793361057e8201527f512f54376b33646d2f3846334232377355694877464631414f6c683055646e4961059e8201527f4471494e5164506355393145786f2f346252696a6a5169704e4e307a4c646c7a6105be8201527f504438496f547449734c38717162746f4f5149514a5a567849705931315073536105de8201527f55533231397a4c585066642f507667765751346372464d2532425769755671706105fe8201527f645a6f4e6475645872632f4745324d4a36656e3575635746694763375274364f61061e8201527f487676354d674c2532427a44733578444277696141315433554877326b63594361063e8201527f312f55666453316645316d37763742346537653350574848786533594f32483561065e8201527f25324241504f5a7965503025324251506553425468793078713965363241486a61067e8201527f6141556842432f364144484c6f476f4f657636412532426867487369317a613861069e8201527f71355a4e4d716a596c575a4d713867354248445574495370574a73526f52544a6106be8201527f56613049305a3957546b5371564b73507a3464586a7648746449684c6e7670746106de8201527f554c4330753542567579414d544b4a513930594b5267546e5769476b6d7153456106fe8201527f714b6d7256685259674b6b335443686255573671456f45637665577a6859535461071e8201527f4c32484e706735452f6d7151393956564467763352475435586d33637a68754c61073e8201527f3972685864316132372f736c5130686959366a643739614f5a43746a6f52687261075e8201527f623136575676514b725734477a786a7869723238494d697a2f7155447973495761077e8201527f7037516a667765347a556437614a735651575179524c554b484b42577938577661079e8201527f45565333584d53353656337757644f442532424638757639645477496d4b722f6107be8201527f5064626d5763775176456641616a7975566a70784e32704f56635769336c38776107de8201527f454c2f6d395070646f55494536253242504b5838315041546d67654f304231736107fe8201527f47454825324261707a353466646d534a7a333741686635366a4c7739756e504561081e8201527f35644d4b3025324237544639563843435466523979664e7355493474557a464661083e8201527f42326e536e384b4f626a64446964554c7034494a6873777878595172595a643661085e8201527f4e76436e55394d445825324252654c6e4d546d6c315a453972306b5077334e3261087e8201527f6752253242736a4573596d4953706b356c31497333594e614a4b6f6e7a65703761089e8201527f56637354316e556b62347048774b5a41796b614b6f43504630506f6d456876496108be8201527f5758656e6f5a767836774f4b313070316c3274546858793850316555776473766108de8201527f53715157766f424d7473674851554a614774494273756861776450545a5378596108fe8201527f707257757734647a7231564755744449465871726f4d4d69597346783857695461091e8201527f336463574b6f376d50554c79715657413972305974524a4c626957766a6e4c2561093e8201527f324272633452646767624e516c514141613264306d616236364d48447074314361095e8201527f6477626b51436253375053445a4d7a3746724f51713165636153304a6c74644161097e8201527f6c44527941587173364130586247707748676b70367572557757416272464d3361099e8201527f75794d764e4b6c344d6c435548537950416d3931776144454a3559595148754a6109be8201527f4d32304b575251737637486b61334770686c533258444b714f4b4245554753316109de8201527f65306b63316f323449494166486c4449794278584a4a656767423369386174566109fe8201527f67434f3064444f5a484a57596a564c416a6a397137765673456e72684b374568610a1e8201527f4c75427a42586d4d674554634531636d61436976504b6f4a766670466c794935610a3e8201527f4d70584234454325324245672f596d303454787843354e6c73596b74646f5951610a5e8201527f55656c38624673456c3748345a36734377622f38626b347458574658504b6a71610a7e8201527f5462526e64336e4c5770394f784941706c664b586747684e6c72443462354a4c610a9e8201527f5a367055753441726756614d366561357844574244476f7a707a4641376e6747610abe8201527f74596334486141775269475576637653653652414177335a576b564f4667764b610ade8201527f46364955696c4d49394964715155345134585264484866736666517770313955610afe8201527f434a49306a5773725433356f5578303678507268473271364d4533554f306c63610b1e8201527f635a557354454351784a44527854444b6c334c4948722f6162546f73686c6466610b3e8201527f51786a364f57745273466e6966444373473674336b426f344e6d424a6d615556610b5e8201527f54636c794951414a4c6a6e723042365a3859464d6e396b397967703752727848610b7e8201527f36766877624a4e41654b4d554436353974386746514a4d5377652f434f624850610b9e8201527f467671484746554e5266253242737245663354584b42725a76676b6369396972610bbe8201527f426d63442f7458616754474358634e68432532424f3539754c706e6673796f71610bde8201527f4c53313238374552776d38666165564f6d3857634437386c5a36594232793938610bfe8201527f5a4c6c4d3972557264324c514e6c324956643454727376675139363079377573610c1e8201527f5965306854506170576a71726c2532425837784665424e54253242315a644a4a610c3e8201527f572532424678745737584e7774634e7a7761672532425256656a6d4a6839656d610c5e8201527f6c495a4b69694e63694b3849554f4d33556a4a376342554e5847505853326c68610c7e8201527f253242687770676f4836567348524f63764569723372585970344c7769435a77610c9e8201527f3176486c43623552314d68623564536e4f326d6e6f475a6f5846315765574757610cbe8201527f6d7a694a314a555534715072306e694a536c4e424331636b4b6d4a6657625877610cde8201527f5577757449547a456d6a776770776142753464525066746a2f4e384143526e64610cfe8201527f616b2f4641674b674c37305058577839767a6b59322532426d34355473496b4c610d1e8201527f3037616f70444e6f676830535262535a534f397a744657516a376e574c676275610d3e8201527f364325324254374b6a44715a3667456e5277674d78306b4c5a77797962514f76610d5e8201527f514130773054782f354a42722f63595a6453574f546a774446364e6f586b796a610d7e8201527f33566a484e4751494e76426a5a734a4a3377466141516d6f5a575a5970416961610d9e8201527f574f466e6e686455524176576b557a77693062677a5a4158796f445545714863610dbe8201527f57307069454c574f777168773365765478444957724e32495371525151454c41610dde8201527f4d32365334486c723548552f48784a43436844424a6b756b6341573856415430610dfe8201527f6770545a544b4e48677a444f7234314751656a4f34677a416e6b577077464752610e1e8201527f43334c625231787a4b434875365635694674674c704f384b51596d5965467868610e3e8201527f4c32643838736469506a2f76306b427a636c51637954735766324d6445394944610e5e8201527f386d5858576a72434b253242354532756e336e6976656973526e726971317548610e7e8201527f594d6a6a69694945304b6466674d6f3163476d6b557254624f30356732737633610e9e8201527f477673525971762f61457736375472644f705435567a4641364131417939634b610ebe8201527f6f44667762544a64445750524e57517354796a6d3772486249734b466b6f4f2f610ede8201527f5a4c4376735966785973337768534338614c49344b765677373773336e347a48610efe8201527f67697061634a6e435362463945727a53357069386343577655597a4f5064327a610f1e8201527f684a2f4750437a53684f453378596c634f3350796164586a54334f6b68706841610f3e8201527f58465853766865544e5355525446565641486f4a6d7949726b6a454b6f517746610f5e8201527f4730303554334158643935764e30446d336d427332786746546c253242513572610f7e8201527f73416a6e744768707a6f62643642374e7a52664e56653130446f4e5639343753610f9e8201527f59646f635252624776636d785456786f61367a717756376d416e773544314745610fbe8201527f5474327a48382532425476514256356e37672f32615768743979794e594c3974610fde8201527f4f42744167384846435945316d4e775432454232467538544968543776565241610ffe8201527f3461587a6e6b3670545a4e6779696f73747749364b654655374c696c7041253261101e8201527f42334234474a794277574d327062466a4876734a3747754f6f616b6a6d46746a61103e8201527f59344c6254396c323239253242453646374c4475577a744c6e333749786b386a61105e8201527f356c42564b33774c7369362f416641756f6a34396c4d6b5653545045396b704761107e8201527f64304c724555534a4941413070596c4178414d642f4e4f46776f4a446458466961109e8201527f307a4f5744422f54464a705666575642574f516274724a556230636c663369256110be8201527f3242575072446f596c65545674564f45306d36793564487444725551776f414c6110de8201527f7455523365585364444d4e785866656a594674764c626c726c4a7777484b2f456110fe8201527f6957504a616b32574b35386e684e6f4c6a615a55475841756f32656f5777464561111e8201527f66612f445334496958717246714779633348726939785132693243352f73357661113e8201527f7a424d30793777334d4473774d3759325247427172464d6778374f696325324261115e8201527f30497a736d5678617a5473305263666a324f3334532f525639503269486f427561117e8201527f6c4b49594244665a46654c53356439725379664a64536c67683268644d72324f61119e8201527f5552334b6e6c506e4f41785477314a384c4d325a776e4671765a745a4a6c78786111be8201527f343873776243743272316b664875443756624831326159383849437456734b786111de8201527f4b742f31726b616c42414d74782f6f6f6d43445059626b556f4c6344624b436a6111fe8201527f7675713953544467746a584744715735564b36686347654f46697a6a3643714c61121e8201527f4f49716b57783477733245504d444e7378253242613661533230384f39784c3061123e8201527f526146586f394241645530706e452532424c695359334b536f4a41525978646e61125e8201527f7a69545a4d706961442f3438496969393834446151357976656378414673735761127e8201527f792f686274696d63253242704c386b35796f70496d4a627948712f6138797a6c61129e8201527f6c37726f4f7a586d786d4163337459585363546b65734d6344324939315a36336112be8201527f6549312f394a627755716b36737863394b52677277574d414e6543314e6e39756112de8201527f4779775473706d5538712532426c5a6d43714d674153363662674841476a514b6112fe8201527f73754a334451416a5235346d356a4c7a5a616e546c62646530253242726e663461131e8201527f385a574138546c32673277414779427748516e3552322532424e6a726542677861133e8201527f626c734e46627554776d6862414a48737a2f72416f61764c4f34317874767a5961135e8201527f4768336e4c4a426b41506a7578424a445248333048426575385567436978464e61137e8201527f437951322f4b253242385157372f6530253242664f2532423436524e5730657961139e8201527f4c726f39446a5467704a4e4d3547385179306c54644f756d73773066715045696113be8201527f393646702532424830634d774e6f376a787a596d6e4e664d5a6d64506c7932706113de8201527f6f7132575065476d67507136474c78504e34536c4b486e7870624f69754c58516113fe8201527f75583155715031676a6f38426136536c55314f416d5267707a7531735444584a61141e8201527f50754d3338546f387130344c324e777970653837327777556741675a6c70386461143e8201527f6b5166397a38544d43624d6b596b3758484375333564375a5a41656f346b5a4b61145e8201527f68784953386945354c546a334c4f6976485a7268394a3870337a4c5a436a776361147e8201527f6970354452694b6e576e49664c33386b4a684d7452776a67553525324256726d61149e8201527f714b6c6739307a376a64732f4238444b646b464c76483353253242376f4838616114be8201527f6c445a6c626734533155583574434d445342324f364b756c7a41344b763067376114de8201527f314251643054464b7733685358696e62374e6c304258725873514e6376436b386114fe8201527f6d6f394f786965783559627a78564e2f6b3738336f48545a495777393079495a61151e8201527f777672697164475473586e54384965705437597946434f4a6741395a3042794961153e8201527f455956735478522f6b73616b324268376f4b767034766e695530364d57317a4261155e8201527f4672746568647a306b6b587951786a426d7965645636644d596545386146787461157e8201527f6575777355466136466c6c54446c716430707a525a77473663467266574d627061159e8201527f384738587a6a66624d253242354658657076356f457273696c363458783663376115be8201527f5841576275696d3666387347494d58666f334a6971476b703333376854536a676115de8201527f65636862364f42472f327a31376a6f6d4469476d253242476c623146553069656115fe8201527f6e7552796977654c576767447a6d4655765545556a5a6f377356544877684f4661161e8201527f504d6b4e737146423977796d6b45307639666d7477453854377135384e594f3761163e8201527f787534623833766e46766c35755378446c472532426b4f51675249644f346a6761165e8201527f7a786a53486a4b4c7332742f6c684f647771766131415744437072763344345361167e8201527f34523741625934544362664b4637744265363554343551347a7a49714433316161169e8201527f79797557716a692532424636585337535439483943314f342f694b366b4775766116be8201527f6b512f664e3537487837456533373435622f76766e2f62482f58253242392f256116de8201527f32426762656d684f416d49705576755157757344764b517578394a44564e734b6116fe8201527f673651636d6b73515341445530346347524c523768466f5a326337785545664761171e8201527f253242776b755459474d764c6a422f6550634936416847686e5735717a45416961173e8201527f4a586377564545775869654e70536c317a6a457253253242435325324248634c61175e8201527f6f52506d7661324d6767412f69794c67536f544a555767733442794149514f3061177e8201527f4f6f705a487656627a6844494c65557155677a7a48492f667950474e7879777361179e8201527f6f796c6865534639577662795363336b4544716b32415636436c4364635535536117be8201527f6e6c4e6e4963394b794d63384c79622532423867484f4a795173466c4c6250526117de8201527f796d6d374a42743349545a544162314732444252496b514b51705451396939626117fe8201527f3665435353387a4d366161525364544b5657524d336663454a4c644b61746e7361181e8201527f724959774e4a55253242733048364461757832775a35686733706c653042474861183e8201527f756b316b4543734859446461496d4b7025324233463542317859763763486b7161185e8201527f644475306a4b645273657a3531376d63563641685148346931484e3173766c6a61187e8201527f5248366845454672682532426e72726d47316e33307a4d346749776d694d774561189e8201527f624b6842545564423141486f582532424b6741517a4f48543946494f71436b526118be8201527f4e4e623273397170496943534f753167576868497343564a73765771457175356118de8201527f47624a514b4e6a61427465394c4f69676368414a7665475773394332323033766118fe8201527f6f6e476c6b77725251323464646732796345646157554456734441785548734961191e8201527f77773665615234464665336d4a416b66426d5a6452395264774a485a6d47645261193e8201527f7950436a706a627a31712f584a34534949446b66384b4b6e6e32456c4b6d794c61195e8201527f69573442513836733151554b2f76426867524e776548766c5968687a7238706361197e8201527f67704b4b6d6f61576a7036426b594f48446c7835734b5647336365474539657661199e8201527f506e773563646667454242676f554946536238587632504553314772446a78456119be8201527f69524b6b697846716a54704d6d544b6b693148726a7a354368517155717845716119de8201527f544c6c4b6c53715571314772547231476a527130717846717a62744f6e5347656119fe8201527f3668374a6d627a4968355a6544696c315a58536a7430774375616b336c6e476f611a1e8201527f5655506f53734e663337394b326a6274716d44674d69485a42665a6c68324839611a3e8201527f75773738495469314a466a585653662f4336634f55667a346f30644178305447611a5e8201527f777448446863666a3443516d49694531444d5a42546b6c4e5a557065566f614f611a7e8201527f6e717633733234314e50503965766574594768435a50576a4979747332706173611a9e8201527f436a25324270556a54596c336b615574374f744b4a6136355850396d356e6367611abe8201527f364e686a685a587032762532426d57724341545a754a303368316b6a55756976611ade8201527f5067596e6a6e35744b4a4f6b326e6362703251414559585a69304b496d50356b611afe8201527f744961466e366b5a397743253237253239253230666f726d6174253238253237611b1e8201527f776f666632253237253239253342666f6e742d7765696768742533412532306e611b3e8201527f6f726d616c253342666f6e742d7374796c652533412532306e6f726d616c2533611b5e8201527f42666f6e742d646973706c617925334125323073776170253342253744746578611b7e8201527f74253230253742666f6e742d66616d696c792533412532302532375072657373611b9e8201527f2532305374617274253230325025323725334266696c6c253341253230776869611bbe8201527f74652537442e76616c7565253230253742666f6e742d73697a65253341253230611bde8201527f313070782533422537442e6e616d65253230253742666f6e742d73697a652533611bfe8201527f412532303470782533422537442533432f7374796c652533452533432f646566611c1e8201527f7325334525334372656374253230776964746825334425323738392532372532611c3e8201527f30686569676874253344253237353525323725323066696c6c25334425323762611c5e8201527f6c61636b2532372532302f253345253343726563742532307825334425323735611c7e8201527f2e3525323725323079253344253237352e352532372532307769647468253344611c9e8201527f2532373738253237253230686569676874253344253237343425323725323066611cbe8201527f696c6c2533442532372532333030303046462532372532302f25334525334374611cde8201527f657874253230746578742d616e63686f722533442532376d6964646c65253237611cfe8201527f2532307825334425323734342e35253237253230792533442532373333253237611d1e8201527f253230636c61737325334425323776616c756525323725334500000000000000611d3e820152612ba5612b9e6129f5611d5784018a61055b565b7f2533432f746578742533452533437265637425323078253344253237352e352581527f323725323079253344253237352e35253237253230776964746825334425323760208201527f373825323725323068656967687425334425323734342532372532307374726f60408201527f6b652533442532372532334646344630412532372532307374726f6b652d776960608201527f647468253344253237332532372532302f25334525334372656374253230782560808201527f334425323733302532372532307925334425323734352e35253237253230776960a08201527f647468253344253237353825323725323068656967687425334425323738253260c08201527f3725323066696c6c2533442532372532334646344630412532372532302f253360e08201527f4525334374657874253230746578742d616e63686f72253344253237656e64256101008201527f32372532307825334425323738372532372532307925334425323735322532376101208201527f253230636c6173732533442532376e616d6525323725334500000000000000006101408201526101580190565b86886105e3565b602160f81b81529050612bbb600182018561055b565b7f2533432f746578742533452533432f737667253345227d00000000000000000081526017019a995050505050505050505056fea2646970667358221220f64400964cf21cb4940de76482b5ee6f22f9e46a781e948eea81a1999aa43eb964736f6c63430008150033", + "nonce": "0x11", + "accessList": [] + }, + "additionalContracts": [], + "isFixedGasLimit": false + }, + { + "hash": "0xc89cbcc0f97185cd0540a6c8f868404a514b300b1a37ceb8293d506447c324d1", + "transactionType": "CREATE", + "contractName": null, + "contractAddress": "0x68B1D87F95878fE05B998F19b66F4baba5De1aed", + "function": null, + "arguments": null, + "transaction": { + "type": "0x02", + "from": "0xf39fd6e51aad88f6f4ce6ab8827279cfffb92266", + "gas": "0x42230", + "value": "0x0", + "data": "0x608060405234801561001057600080fd5b506102cf806100206000396000f3fe608060405234801561001057600080fd5b506004361061004c5760003560e01c80630194db8e14610051578063072bdcc214610076578063a391c15b14610089578063b67d77c51461009c575b600080fd5b61006461005f366004610160565b6100af565b60405190815260200160405180910390f35b610064610084366004610160565b6100ef565b61006461009736600461021e565b610129565b6100646100aa36600461021e565b61013e565b600080805b83518110156100e8578381815181106100cf576100cf610240565b60200260200101518201915080806001019150506100b4565b5092915050565b60006001815b83518110156100e85783818151811061011057610110610240565b60200260200101518202915080806001019150506100f5565b60006101358284610256565b90505b92915050565b60006101358284610278565b634e487b7160e01b600052604160045260246000fd5b6000602080838503121561017357600080fd5b823567ffffffffffffffff8082111561018b57600080fd5b818501915085601f83011261019f57600080fd5b8135818111156101b1576101b161014a565b8060051b604051601f19603f830116810181811085821117156101d6576101d661014a565b6040529182528482019250838101850191888311156101f457600080fd5b938501935b82851015610212578435845293850193928501926101f9565b98975050505050505050565b6000806040838503121561023157600080fd5b50508035926020909101359150565b634e487b7160e01b600052603260045260246000fd5b60008261027357634e487b7160e01b600052601260045260246000fd5b500490565b8181038181111561013857634e487b7160e01b600052601160045260246000fdfea2646970667358221220d31583983189259cb60ccec801ca1ed218051d27add344c207dbb437b07d39c864736f6c63430008150033", + "nonce": "0x12", + "accessList": [] + }, + "additionalContracts": [], + "isFixedGasLimit": false + }, + { + "hash": "0x46d3d5e2dd4594e758e011681667f9bcbf03637daf06514f8d3fa572826701a1", + "transactionType": "CREATE", + "contractName": "Evmsheet", + "contractAddress": "0x3Aa5ebB10DC797CAC828524e59A333d0A371443c", + "function": null, + "arguments": [ + "0x9A9f2CCfdE556A7E9Ff0848998Aa4a0CFD8863AE", + "10000000000000000" + ], + "transaction": { + "type": "0x02", + "from": "0xf39fd6e51aad88f6f4ce6ab8827279cfffb92266", + "gas": "0x359c55", + "value": "0x0", + "data": "0x608060405234801561001057600080fd5b50604051612fa3380380612fa383398101604081905261002f916100b1565b61003833610061565b600280546001600160a01b0319166001600160a01b0393909316929092179091556001556100eb565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b600080604083850312156100c457600080fd5b82516001600160a01b03811681146100db57600080fd5b6020939093015192949293505050565b612ea9806100fa6000396000f3fe608060405260043610620000b95760003560e01c80638da5cb5b116200006c5780638da5cb5b146200019d578063ab2fa65a14620001bd578063ae28505e14620001e4578063c56c4cf11462000209578063f2fde38b146200022b578063f52be2a2146200025057600080fd5b806303fb31e814620000c65780631164c83d14620000ed578063145e414714620001045780633ccfd60b14620001465780635787cacb146200015e578063715018a6146200018557600080fd5b36620000c157005b600080fd5b348015620000d357600080fd5b50620000eb620000e536600462000842565b62000277565b005b620000eb620000fe366004620008b3565b620002a3565b3480156200011157600080fd5b5062000129620001233660046200092e565b620004e2565b6040516001600160a01b0390911681526020015b60405180910390f35b3480156200015357600080fd5b50620000eb6200057f565b3480156200016b57600080fd5b50620001766200061c565b6040516200013d91906200095b565b3480156200019257600080fd5b50620000eb62000680565b348015620001aa57600080fd5b506000546001600160a01b031662000129565b348015620001ca57600080fd5b50620001d562000698565b6040516200013d9190620009aa565b348015620001f157600080fd5b506200012962000203366004620009fa565b620006c4565b3480156200021657600080fd5b5060025462000129906001600160a01b031681565b3480156200023857600080fd5b50620000eb6200024a36600462000842565b620006ef565b3480156200025d57600080fd5b506200026860015481565b6040519081526020016200013d565b620002816200076b565b600280546001600160a01b0319166001600160a01b0392909216919091179055565b6001543414620002cd5760405163723a79e360e11b81523460048201526024015b60405180910390fd5b600060405180602001620002e19062000817565b6020820181038252601f19601f8201166040525090506000828251602084016000f56002546040516356d3163d60e01b81526001600160a01b0391821660048201529192508216906356d3163d90602401600060405180830381600087803b1580156200034d57600080fd5b505af115801562000362573d6000803e3d6000fd5b505060405163c47f002760e01b81526001600160a01b038416925063c47f0027915062000396908a908a9060040162000a14565b600060405180830381600087803b158015620003b157600080fd5b505af1158015620003c6573d6000803e3d6000fd5b5050604051635c26412360e11b81526001600160a01b038416925063b84c82469150620003fa908890889060040162000a14565b600060405180830381600087803b1580156200041557600080fd5b505af11580156200042a573d6000803e3d6000fd5b505060405163f2fde38b60e01b81523260048201526001600160a01b038416925063f2fde38b9150602401600060405180830381600087803b1580156200047057600080fd5b505af115801562000485573d6000803e3d6000fd5b5050600380546001810182556000919091527fc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b0180546001600160a01b0319166001600160a01b0394909416939093179092555050505050505050565b600060ff60f81b838360405180602001620004fd9062000817565b6020820181038252601f19601f82011660405250805190602001206040516020016200056094939291906001600160f81b031994909416845260609290921b6bffffffffffffffffffffffff191660018401526015830152603582015260550190565b60408051601f1981840301815291905280516020909101209392505050565b620005896200076b565b604051600090339047908381818185875af1925050503d8060008114620005cd576040519150601f19603f3d011682016040523d82523d6000602084013e620005d2565b606091505b5050905080620006195760405162461bcd60e51b815260206004820152601160248201527015da5d1a191c985dd85b0819985a5b1959607a1b6044820152606401620002c4565b50565b606060038054806020026020016040519081016040528092919081815260200182805480156200067657602002820191906000526020600020905b81546001600160a01b0316815260019091019060200180831162000657575b5050505050905090565b6200068a6200076b565b620006966000620007c7565b565b606060405180602001620006ac9062000817565b601f1982820381018352601f90910116604052919050565b60038181548110620006d557600080fd5b6000918252602090912001546001600160a01b0316905081565b620006f96200076b565b6001600160a01b038116620007605760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401620002c4565b6200061981620007c7565b6000546001600160a01b03163314620006965760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401620002c4565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b6124308062000a4483390190565b80356001600160a01b03811681146200083d57600080fd5b919050565b6000602082840312156200085557600080fd5b620008608262000825565b9392505050565b60008083601f8401126200087a57600080fd5b50813567ffffffffffffffff8111156200089357600080fd5b602083019150836020828501011115620008ac57600080fd5b9250929050565b600080600080600060608688031215620008cc57600080fd5b853567ffffffffffffffff80821115620008e557600080fd5b620008f389838a0162000867565b909750955060208801359150808211156200090d57600080fd5b506200091c8882890162000867565b96999598509660400135949350505050565b600080604083850312156200094257600080fd5b6200094d8362000825565b946020939093013593505050565b6020808252825182820181905260009190848201906040850190845b818110156200099e5783516001600160a01b03168352928401929184019160010162000977565b50909695505050505050565b600060208083528351808285015260005b81811015620009d957858101830151858201604001528201620009bb565b506000604082860101526040601f19601f8301168501019250505092915050565b60006020828403121562000a0d57600080fd5b5035919050565b60208152816020820152818360408301376000818301604090810191909152601f909201601f1916010191905056fe60806040523480156200001157600080fd5b50604051806040016040528060078152602001660536865657420360cc1b815250604051806040016040528060048152602001630534854360e41b81525062000069620000636200008f60201b60201c565b62000093565b600162000077838262000188565b50600262000086828262000188565b50505062000254565b3390565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b634e487b7160e01b600052604160045260246000fd5b600181811c908216806200010e57607f821691505b6020821081036200012f57634e487b7160e01b600052602260045260246000fd5b50919050565b601f8211156200018357600081815260208120601f850160051c810160208610156200015e5750805b601f850160051c820191505b818110156200017f578281556001016200016a565b5050505b505050565b81516001600160401b03811115620001a457620001a4620000e3565b620001bc81620001b58454620000f9565b8462000135565b602080601f831160018114620001f45760008415620001db5750858301515b600019600386901b1c1916600185901b1785556200017f565b600085815260208120601f198616915b82811015620002255788860151825594840194600190910190840162000204565b5085821015620002445787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b6121cc80620002646000396000f3fe608060405234801561001057600080fd5b50600436106102275760003560e01c8063715018a611610130578063b85d8b85116100b8578063cf0983981161007c578063cf09839814610512578063cfbe95d814610535578063df4ca20614610556578063e985e9c514610576578063f2fde38b146105a457600080fd5b8063b85d8b85146104a4578063b88d4fde146104ce578063b8c368ec146104e1578063c47f0027146104ec578063c87b56dd146104ff57600080fd5b806395d89b41116100ff57806395d89b4114610439578063a22cb46514610441578063b46ebb1214610454578063b6d658e114610467578063b84c82461461049157600080fd5b8063715018a6146103fa578063768d5029146104025780638ada6b0f146104155780638da5cb5b1461042857600080fd5b80631b06443c116101b35780634f6ccce7116101825780634f6ccce71461038157806356d3163d146103a15780636352211e146103b45780636a0abc74146103c757806370a08231146103e757600080fd5b80631b06443c14610335578063206848f61461034857806323b872dd1461035b57806342842e0e1461036e57600080fd5b8063081812fc116101fa578063081812fc146102a1578063095ea7b3146102e2578063172b9eed146102f757806318160ddd1461030a5780631941fd141461031357600080fd5b806301ffc9a71461022c57806302f3c4c91461025457806306fdde03146102745780630715a24a1461027c575b600080fd5b61023f61023a36600461176a565b6105b7565b60405190151581526020015b60405180910390f35b610267610262366004611861565b610609565b60405161024b9190611951565b610267610638565b6102936fffffffffffffffffffffffffffffffff81565b60405190815260200161024b565b6102ca6102af366004611964565b6005602052600090815260409020546001600160a01b031681565b6040516001600160a01b03909116815260200161024b565b6102f56102f036600461197d565b6106c6565b005b6102676103053660046119a9565b6107ad565b61029360075481565b610326610321366004611964565b610875565b60405161024b939291906119de565b6102ca610343366004611a0e565b61092a565b610326610356366004611964565b6109e3565b6102f5610369366004611a2b565b610ae1565b6102f561037c366004611a2b565b610ca8565b61029361038f366004611964565b60086020526000908152604090205481565b6102f56103af366004611a0e565b610da0565b6102ca6103c2366004611964565b610dca565b6103da6103d53660046119a9565b610e1c565b60405161024b9190611a6c565b6102936103f5366004611a0e565b610e60565b6102f5610ec3565b6102f5610410366004611af9565b610ed7565b6009546102ca906001600160a01b031681565b6000546001600160a01b03166102ca565b610267611035565b6102f561044f366004611b63565b611042565b610267610462366004611964565b6110ae565b61047a610475366004611964565b611258565b60408051921515835260208301919091520161024b565b6102f561049f366004611ba1565b611275565b6104b56104b2366004611964565b90565b6040516001600160e01b0319909116815260200161024b565b6102f56104dc366004611be3565b6112c6565b6102ca600160801b81565b6102f56104fa366004611ba1565b6113ae565b61026761050d366004611964565b6113ff565b61023f610520366004611a0e565b600160801b6001600160a01b03919091161090565b61023f610543366004611861565b516001600160a01b0316600160801b1490565b610569610564366004611964565b6114c9565b60405161024b9190611c16565b61023f610584366004611c4d565b600660209081526000928352604080842090915290825290205460ff1681565b6102f56105b2366004611a0e565b611526565b60006301ffc9a760e01b6001600160e01b0319831614806105e857506380ac58cd60e01b6001600160e01b03198316145b806106035750635b5e139f60e01b6001600160e01b03198316145b92915050565b6060816020015160405160200161062291815260200190565b6040516020818303038152906040529050919050565b6001805461064590611c7b565b80601f016020809104026020016040519081016040528092919081815260200182805461067190611c7b565b80156106be5780601f10610693576101008083540402835291602001916106be565b820191906000526020600020905b8154815290600101906020018083116106a157829003601f168201915b505050505081565b6000818152600360205260409020546001600160a01b03163381148061070f57506001600160a01b038116600090815260066020908152604080832033845290915290205460ff165b6107515760405162461bcd60e51b815260206004820152600e60248201526d1393d517d055551213d49256915160921b60448201526064015b60405180910390fd5b60008281526005602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b606060006107ba83610e1c565b9050606060005b825181101561086d576000806107ef8584815181106107e2576107e2611cb5565b6020026020010151611258565b9150915081156108335783610803826110ae565b61080c90611ccb565b60405160200161081d929190611cef565b6040516020818303038152906040529350610858565b6040516108469085908390602001611cef565b60405160208183030381529060405293505b5050808061086590611d27565b9150506107c1565b509392505050565b600a602052600090815260409020805460018201546002830180546001600160a01b039093169391926108a790611c7b565b80601f01602080910402602001604051908101604052809291908181526020018280546108d390611c7b565b80156109205780601f106108f557610100808354040283529160200191610920565b820191906000526020600020905b81548152906001019060200180831161090357829003601f168201915b5050505050905083565b6000600160801b6001600160a01b03831610156109da576000610955836001600160a01b03166110ae565b604051632d737e4960e21b8152909150730b306bf915c4d645ff596e518faf3f9669b970169063b5cdf92490610992908490600090600401611d40565b602060405180830381865af41580156109af573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906109d39190611d62565b9392505050565b5090565b919050565b60008181526003602052604081205481906060906001600160a01b0316610a1057600160801b9250610a2b565b6000848152600a60205260409020546001600160a01b031692505b6000848152600a60205260409020600181015460029091018054859291908190610a5490611c7b565b80601f0160208091040260200160405190810160405280929190818152602001828054610a8090611c7b565b8015610acd5780601f10610aa257610100808354040283529160200191610acd565b820191906000526020600020905b815481529060010190602001808311610ab057829003601f168201915b505050505090509250925092509193909250565b6000818152600360205260409020546001600160a01b03848116911614610b375760405162461bcd60e51b815260206004820152600a60248201526957524f4e475f46524f4d60b01b6044820152606401610748565b6001600160a01b038216610b815760405162461bcd60e51b81526020600482015260116024820152701253959053125117d49150d25412515395607a1b6044820152606401610748565b336001600160a01b0384161480610bbb57506001600160a01b038316600090815260066020908152604080832033845290915290205460ff165b80610bdc57506000818152600560205260409020546001600160a01b031633145b610c195760405162461bcd60e51b815260206004820152600e60248201526d1393d517d055551213d49256915160921b6044820152606401610748565b6001600160a01b0380841660008181526004602090815260408083208054600019019055938616808352848320805460010190558583526003825284832080546001600160a01b03199081168317909155600590925284832080549092169091559251849392917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b610cb3838383610ae1565b6001600160a01b0382163b1580610d5c5750604051630a85bd0160e11b8082523360048301526001600160a01b03858116602484015260448301849052608060648401526000608484015290919084169063150b7a029060a4016020604051808303816000875af1158015610d2c573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610d509190611d7b565b6001600160e01b031916145b610d9b5760405162461bcd60e51b815260206004820152601060248201526f155394d0519157d49150d2541251539560821b6044820152606401610748565b505050565b610da861159f565b600980546001600160a01b0319166001600160a01b0392909216919091179055565b6000818152600360205260409020546001600160a01b0316806109de5760405162461bcd60e51b815260206004820152600a6024820152691393d517d3525395115160b21b6044820152606401610748565b60608082516040519150602081048252602082016020850160005b83811015610e4f578181015183820152602001610e37565b505050810160200160405292915050565b60006001600160a01b038216610ea75760405162461bcd60e51b815260206004820152600c60248201526b5a45524f5f4144445245535360a01b6044820152606401610748565b506001600160a01b031660009081526004602052604090205490565b610ecb61159f565b610ed560006115f9565b565b6000858152600360205260409020546001600160a01b0316610f2f57610efd3286611649565b60078054600090815260086020526040812087905581546001929190610f24908490611d98565b90915550610f889050565b6000858152600360205260409020546001600160a01b03163214610f8857600085815260036020526040908190205490516324f3f02560e21b81526001600160a01b039091166004820152326024820152604401610748565b6040518060600160405280856001600160a01b0316815260200184815260200183838080601f0160208091040260200160405190810160405280939291908181526020018383808284376000920182905250939094525050878152600a6020908152604091829020845181546001600160a01b0319166001600160a01b0390911617815590840151600182015590830151909150600282019061102b9082611df9565b5050505050505050565b6002805461064590611c7b565b3360008181526006602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b6000818152600a6020908152604080832081516060818101845282546001600160a01b0316825260018301549482019490945260028201805494959491938401916110f890611c7b565b80601f016020809104026020016040519081016040528092919081815260200182805461112490611c7b565b80156111715780601f1061114657610100808354040283529160200191611171565b820191906000526020600020905b81548152906001019060200180831161115457829003601f168201915b505050505081525050905061119381516001600160a01b0316600160801b1490565b156111a1576109d381610609565b60006111b0826000015161092a565b905060006111bf836020015190565b905060006111d084604001516107ad565b90506000836001600160a01b031683836040516020016111f1929190611eb9565b60408051601f198184030181529082905261120b91611eea565b600060405180830381855afa9150503d8060008114611246576040519150601f19603f3d011682016040523d82523d6000602084013e61124b565b606091505b5098975050505050505050565b600080611266600284611f06565b60019081149493901c92915050565b61127d61159f565b7f8dca0271872d00b3de3abafca544c52fcd7d512dd852c9894fa2c118ac759a93600283836040516112b193929190611fce565b60405180910390a16002610d9b828483611ffe565b6112d1858585610ae1565b6001600160a01b0384163b15806113685750604051630a85bd0160e11b808252906001600160a01b0386169063150b7a02906113199033908a908990899089906004016120be565b6020604051808303816000875af1158015611338573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061135c9190611d7b565b6001600160e01b031916145b6113a75760405162461bcd60e51b815260206004820152601060248201526f155394d0519157d49150d2541251539560821b6044820152606401610748565b5050505050565b6113b661159f565b7fb65b7b5ea384affd30f77f842e057d29dd1b13f133adf69a724a8105b164ab75600183836040516113ea93929190611fce565b60405180910390a16001610d9b828483611ffe565b6000818152600360205260409020546060906001600160a01b03168061143b57604051630243d1a960e21b815260048101849052602401610748565b6000611446846110ae565b6009546040516328de0f2f60e01b81529192506001600160a01b0316906328de0f2f9061147c90879085906001906004016120fd565b600060405180830381865afa158015611499573d6000803e3d6000fd5b505050506040513d6000823e601f3d908101601f191682016040526114c19190810190612128565b949350505050565b604080516060808201835260008083526020830181905292820152906114ee836110ae565b6040805160608101825285815260009586526003602090815295829020546001600160a01b0316958101959095528401525090919050565b61152e61159f565b6001600160a01b0381166115935760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610748565b61159c816115f9565b50565b6000546001600160a01b03163314610ed55760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610748565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b6001600160a01b0382166116935760405162461bcd60e51b81526020600482015260116024820152701253959053125117d49150d25412515395607a1b6044820152606401610748565b6000818152600360205260409020546001600160a01b0316156116e95760405162461bcd60e51b815260206004820152600e60248201526d1053149150511657d3525395115160921b6044820152606401610748565b6001600160a01b038216600081815260046020908152604080832080546001019055848352600390915280822080546001600160a01b0319168417905551839291907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b6001600160e01b03198116811461159c57600080fd5b60006020828403121561177c57600080fd5b81356109d381611754565b634e487b7160e01b600052604160045260246000fd5b604051601f8201601f1916810167ffffffffffffffff811182821017156117c6576117c6611787565b604052919050565b6001600160a01b038116811461159c57600080fd5b600067ffffffffffffffff8211156117fd576117fd611787565b50601f01601f191660200190565b600082601f83011261181c57600080fd5b813561182f61182a826117e3565b61179d565b81815284602083860101111561184457600080fd5b816020850160208301376000918101602001919091529392505050565b60006020828403121561187357600080fd5b813567ffffffffffffffff8082111561188b57600080fd5b908301906060828603121561189f57600080fd5b6040516060810181811083821117156118ba576118ba611787565b60405282356118c8816117ce565b8152602083810135908201526040830135828111156118e657600080fd5b6118f28782860161180b565b60408301525095945050505050565b60005b8381101561191c578181015183820152602001611904565b50506000910152565b6000815180845261193d816020860160208601611901565b601f01601f19169290920160200192915050565b6020815260006109d36020830184611925565b60006020828403121561197657600080fd5b5035919050565b6000806040838503121561199057600080fd5b823561199b816117ce565b946020939093013593505050565b6000602082840312156119bb57600080fd5b813567ffffffffffffffff8111156119d257600080fd5b6114c18482850161180b565b60018060a01b0384168152826020820152606060408201526000611a056060830184611925565b95945050505050565b600060208284031215611a2057600080fd5b81356109d3816117ce565b600080600060608486031215611a4057600080fd5b8335611a4b816117ce565b92506020840135611a5b816117ce565b929592945050506040919091013590565b6020808252825182820181905260009190848201906040850190845b81811015611aa457835183529284019291840191600101611a88565b50909695505050505050565b60008083601f840112611ac257600080fd5b50813567ffffffffffffffff811115611ada57600080fd5b602083019150836020828501011115611af257600080fd5b9250929050565b600080600080600060808688031215611b1157600080fd5b853594506020860135611b23816117ce565b935060408601359250606086013567ffffffffffffffff811115611b4657600080fd5b611b5288828901611ab0565b969995985093965092949392505050565b60008060408385031215611b7657600080fd5b8235611b81816117ce565b915060208301358015158114611b9657600080fd5b809150509250929050565b60008060208385031215611bb457600080fd5b823567ffffffffffffffff811115611bcb57600080fd5b611bd785828601611ab0565b90969095509350505050565b600080600080600060808688031215611bfb57600080fd5b8535611c06816117ce565b94506020860135611b23816117ce565b602081528151602082015260018060a01b036020830151166040820152600060408301516060808401526114c16080840182611925565b60008060408385031215611c6057600080fd5b8235611c6b816117ce565b91506020830135611b96816117ce565b600181811c90821680611c8f57607f821691505b602082108103611caf57634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052603260045260246000fd5b80516020808301519190811015611caf5760001960209190910360031b1b16919050565b60008351611d01818460208801611901565b9190910191825250602001919050565b634e487b7160e01b600052601160045260246000fd5b600060018201611d3957611d39611d11565b5060010190565b604081526000611d536040830185611925565b90508260208301529392505050565b600060208284031215611d7457600080fd5b5051919050565b600060208284031215611d8d57600080fd5b81516109d381611754565b8082018082111561060357610603611d11565b601f821115610d9b57600081815260208120601f850160051c81016020861015611dd25750805b601f850160051c820191505b81811015611df157828155600101611dde565b505050505050565b815167ffffffffffffffff811115611e1357611e13611787565b611e2781611e218454611c7b565b84611dab565b602080601f831160018114611e5c5760008415611e445750858301515b600019600386901b1c1916600185901b178555611df1565b600085815260208120601f198616915b82811015611e8b57888601518255948401946001909101908401611e6c565b5085821015611ea95787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b6001600160e01b0319831681528151600090611edc816004850160208701611901565b919091016004019392505050565b60008251611efc818460208701611901565b9190910192915050565b600082611f2357634e487b7160e01b600052601260045260246000fd5b500690565b60008154611f3581611c7b565b808552602060018381168015611f525760018114611f6c57611f9a565b60ff1985168884015283151560051b880183019550611f9a565b866000528260002060005b85811015611f925781548a8201860152908301908401611f77565b890184019650505b505050505092915050565b81835281816020850137506000828201602090810191909152601f909101601f19169091010190565b604081526000611fe16040830186611f28565b8281036020840152611ff4818587611fa5565b9695505050505050565b67ffffffffffffffff83111561201657612016611787565b61202a836120248354611c7b565b83611dab565b6000601f84116001811461205e57600085156120465750838201355b600019600387901b1c1916600186901b1783556113a7565b600083815260209020601f19861690835b8281101561208f578685013582556020948501946001909201910161206f565b50868210156120ac5760001960f88860031b161c19848701351681555b505060018560011b0183555050505050565b6001600160a01b03868116825285166020820152604081018490526080606082018190526000906120f29083018486611fa5565b979650505050505050565b8381526060602082015260006121166060830185611925565b8281036040840152611ff48185611f28565b60006020828403121561213a57600080fd5b815167ffffffffffffffff81111561215157600080fd5b8201601f8101841361216257600080fd5b805161217061182a826117e3565b81815285602083850101111561218557600080fd5b611a0582602083016020860161190156fea2646970667358221220f213b9045b40918ed2b5d304162ec2dfc3bc6b581b97362b423df61fd1436e5c64736f6c63430008150033a264697066735822122016636ee300fab238f4f099f32ba33a2f9dd9cbd27246df211a2a76dcc4263a7a64736f6c634300081500330000000000000000000000009a9f2ccfde556a7e9ff0848998aa4a0cfd8863ae000000000000000000000000000000000000000000000000002386f26fc10000", + "nonce": "0x13", + "accessList": [] + }, + "additionalContracts": [], + "isFixedGasLimit": false + } + ], + "receipts": [ + { + "transactionHash": "0x5819542b86b5758034e0d7f6625d8bc4cc3c7ab3233a11f91580d5598cf0b966", + "transactionIndex": "0x0", + "blockHash": "0xbd8f9701ef35f2960932a88bc89616226d18eb9a573e65d68867a13a2261d868", + "blockNumber": "0xb", + "from": "0xf39Fd6e51aad88F6F4ce6aB8827279cffFb92266", + "to": null, + "cumulativeGasUsed": "0xf071f", + "gasUsed": "0xf071f", + "contractAddress": "0x0B306BF915C4d645ff596e518fAf3F9669b97016", + "logs": [], + "status": "0x1", + "logsBloom": "0x00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", + "type": "0x2", + "effectiveGasPrice": "0xc5a9fb17" + }, + { + "transactionHash": "0x301e6f0bd1fcecc7463c48469d5f7ccd0c1a62c94edef96827472a8b39a9ef9c", + "transactionIndex": "0x0", + "blockHash": "0x50c8a428a7a7c29573928db2b5307709016778eea980b55e3e976a970092d8fa", + "blockNumber": "0xc", + "from": "0xf39Fd6e51aad88F6F4ce6aB8827279cffFb92266", + "to": null, + "cumulativeGasUsed": "0x23aa9", + "gasUsed": "0x23aa9", + "contractAddress": "0x959922bE3CAee4b8Cd9a407cc3ac1C251C2007B1", + "logs": [], + "status": "0x1", + "logsBloom": "0x00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", + "type": "0x2", + "effectiveGasPrice": "0xc3766245" + }, + { + "transactionHash": "0x457ccd02ec7d5d9ae02f2f249f866d36f8c4107218db1bef2deb1808d77ee377", + "transactionIndex": "0x0", + "blockHash": "0x9ae2372c22bd2fb2a24716486e361e62e2120351534274cec3e9c1ccd41aa943", + "blockNumber": "0xd", + "from": "0xf39Fd6e51aad88F6F4ce6aB8827279cffFb92266", + "to": null, + "cumulativeGasUsed": "0x2616fd", + "gasUsed": "0x2616fd", + "contractAddress": "0x9A9f2CCfdE556A7E9Ff0848998Aa4a0CFD8863AE", + "logs": [], + "status": "0x1", + "logsBloom": "0x00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", + "type": "0x2", + "effectiveGasPrice": "0xc166d206" + }, + { + "transactionHash": "0xc89cbcc0f97185cd0540a6c8f868404a514b300b1a37ceb8293d506447c324d1", + "transactionIndex": "0x0", + "blockHash": "0xae71e21a31ee3d111062202a59fd3cda008c1603b8e1a4c59b723903d444d712", + "blockNumber": "0xe", + "from": "0xf39Fd6e51aad88F6F4ce6aB8827279cffFb92266", + "to": null, + "cumulativeGasUsed": "0x32e2e", + "gasUsed": "0x32e2e", + "contractAddress": "0x68B1D87F95878fE05B998F19b66F4baba5De1aed", + "logs": [], + "status": "0x1", + "logsBloom": "0x00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", + "type": "0x2", + "effectiveGasPrice": "0xbfe1b2c1" + }, + { + "transactionHash": "0x46d3d5e2dd4594e758e011681667f9bcbf03637daf06514f8d3fa572826701a1", + "transactionIndex": "0x1", + "blockHash": "0xae71e21a31ee3d111062202a59fd3cda008c1603b8e1a4c59b723903d444d712", + "blockNumber": "0xe", + "from": "0xf39Fd6e51aad88F6F4ce6aB8827279cffFb92266", + "to": null, + "cumulativeGasUsed": "0x2c6e5c", + "gasUsed": "0x29402e", + "contractAddress": "0x3Aa5ebB10DC797CAC828524e59A333d0A371443c", + "logs": [ + { + "address": "0x3Aa5ebB10DC797CAC828524e59A333d0A371443c", + "topics": [ + "0x8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0", + "0x0000000000000000000000000000000000000000000000000000000000000000", + "0x000000000000000000000000f39fd6e51aad88f6f4ce6ab8827279cfffb92266" + ], + "data": "0x", + "blockHash": "0xae71e21a31ee3d111062202a59fd3cda008c1603b8e1a4c59b723903d444d712", + "blockNumber": "0xe", + "transactionHash": "0x46d3d5e2dd4594e758e011681667f9bcbf03637daf06514f8d3fa572826701a1", + "transactionIndex": "0x1", + "logIndex": "0x1", + "transactionLogIndex": "0x0", + "removed": false + } + ], + "status": "0x1", + "logsBloom": "0x00000000000000000000000000000000000000000000000000800000000000000000000000000000000800000010000000000000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000020000000000000100000800000000000000000000000000000000400000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000200000000000000000000000002000000000000000000020000000000000000000000000004000000000000000000000000000000000000000", + "type": "0x2", + "effectiveGasPrice": "0xbfe1b2c1" + } + ], + "libraries": [ + "lib/eth-projects-monorepo/packages/eth-projects-contracts/contracts/lib/utils/Bytes.sol:Bytes:0x0b306bf915c4d645ff596e518faf3f9669b97016" + ], + "pending": [], + "returns": {}, + "timestamp": 1690374106, + "chain": 31337, + "multi": false, + "commit": null +} \ No newline at end of file diff --git a/packages/starksheet-solidity/broadcast/Evmsheet.s.sol/31337/run-latest.json b/packages/starksheet-solidity/broadcast/Evmsheet.s.sol/31337/run-latest.json index c61b66fc..ac4bab1d 100644 --- a/packages/starksheet-solidity/broadcast/Evmsheet.s.sol/31337/run-latest.json +++ b/packages/starksheet-solidity/broadcast/Evmsheet.s.sol/31337/run-latest.json @@ -1,47 +1,47 @@ { "transactions": [ { - "hash": "0x9466ab361eff1c764b33a0b6a342c338d56a5e3eadab3868a3ef8af784415916", + "hash": "0x5819542b86b5758034e0d7f6625d8bc4cc3c7ab3233a11f91580d5598cf0b966", "transactionType": "CREATE", "contractName": "Bytes", - "contractAddress": "0x5FC8d32690cc91D4c39d9d3abcBD16989F875707", + "contractAddress": "0x0B306BF915C4d645ff596e518fAf3F9669b97016", "function": null, "arguments": null, "transaction": { "type": "0x02", "from": "0xf39fd6e51aad88f6f4ce6ab8827279cfffb92266", - "gas": "0x1387ed", - "data": "0x6110d661003a600b82828239805160001a60731461002d57634e487b7160e01b600052600060045260246000fd5b30600052607381538281f3fe73000000000000000000000000000000000000000030146080604052600436106101625760003560e01c8063a5eb31ee116100cd578063d1ffb56111610086578063d1ffb561146103fb578063d442584f1461042b578063e004139614610454578063f1142fb314610474578063f647f8fb14610487578063f83b670f146104b257600080fd5b8063a5eb31ee14610344578063a8d8f00f1461036b578063b5cdf92414610396578063b63711df146103a9578063be8b3430146103bc578063c29616bd146103cf57600080fd5b80635ef849301161011f5780635ef8493014610241578063913c97b41461026b57806397e6175c1461029f57806399dd9bd7146102cb5780639ae4c3d1146102ec5780639cee499e1461031857600080fd5b8063042aa0841461016757806305d3bb74146101985780631a7431ef146101c0578063235266d2146101e357806348137709146101f65780634d66a2ae1461021b575b600080fd5b61017a610175366004610ec0565b6104de565b6040516001600160d01b031990911681526020015b60405180910390f35b6101ab6101a6366004610ec0565b610540565b60405163ffffffff909116815260200161018f565b6101d36101ce366004610f05565b61059d565b604051901515815260200161018f565b6101d36101f1366004610f4c565b610652565b610209610204366004610ec0565b6106b5565b60405160ff909116815260200161018f565b61022e610229366004610fa6565b610711565b60405161ffff909116815260200161018f565b61025461024f366004610ec0565b61071e565b60405165ffffffffffff909116815260200161018f565b61027e610279366004610ec0565b610772565b6040516fffffffffffffffffffffffffffffffff909116815260200161018f565b6102b26102ad366004610ec0565b6107d0565b6040516001600160a01b0319909116815260200161018f565b6102de6102d9366004610ec0565b61082e565b60405190815260200161018f565b6102ff6102fa366004610ec0565b61088c565b60405167ffffffffffffffff909116815260200161018f565b61032b610326366004610ec0565b6108e9565b6040516001600160d81b0319909116815260200161018f565b610357610352366004610ec0565b610946565b60405162ffffff909116815260200161018f565b61037e610379366004610ec0565b6109a3565b60405166ffffffffffffff909116815260200161018f565b6102de6103a4366004610ec0565b610a00565b6102ff6103b7366004610ec0565b610a55565b61022e6103ca366004610ec0565b610aa9565b6103e26103dd366004610ec0565b610b06565b6040516001600160c81b0319909116815260200161018f565b61040e610409366004610ec0565b610b5a565b6040516bffffffffffffffffffffffff909116815260200161018f565b61043e610439366004610ec0565b610bae565b60405164ffffffffff909116815260200161018f565b610467610462366004610fe3565b610c02565b60405161018f9190611031565b6102b2610482366004610ec0565b610d0f565b61049a610495366004610ec0565b610d64565b6040516001600160a01b03909116815260200161018f565b6104c56104c0366004610ec0565b610dc9565b6040516001600160f81b0319909116815260200161018f565b60006104eb82600661107f565b835110156105375760405162461bcd60e51b8152602060048201526014602482015273746f4279746573365f6f75744f66426f756e647360601b60448201526064015b60405180910390fd5b50016006015190565b600061054d82600461107f565b835110156105945760405162461bcd60e51b8152602060048201526014602482015273746f55696e7433325f6f75744f66426f756e647360601b604482015260640161052e565b50016004015190565b600080600190508354600260018083161561010002038216048451808214600181146105cc5760009450610644565b821561064457602083106001811461062957600189600052602060002060208a018581015b600284828410010361062057815183541461060f5760009950600093505b6001830192506020820191506105f1565b50505050610642565b6101008086040294506020880151851461064257600095505b505b509293505050505b92915050565b81518151600091600191811480831461066e57600092506106ab565b600160208701838101602088015b60028483851001036106a657805183511461069a5760009650600093505b6020928301920161067c565b505050505b5090949350505050565b60006106c282600161107f565b835110156107085760405162461bcd60e51b8152602060048201526013602482015272746f55696e74385f6f75744f66426f756e647360681b604482015260640161052e565b50016001015190565b600061064c826000610aa9565b600061072b82600661107f565b835110156105375760405162461bcd60e51b8152602060048201526014602482015273746f55696e7434385f6f75744f66426f756e647360601b604482015260640161052e565b600061077f82601061107f565b835110156107c75760405162461bcd60e51b8152602060048201526015602482015274746f55696e743132385f6f75744f66426f756e647360581b604482015260640161052e565b50016010015190565b60006107dd82600c61107f565b835110156108255760405162461bcd60e51b8152602060048201526015602482015274746f427974657331325f6f75744f66426f756e647360581b604482015260640161052e565b5001600c015190565b600061083b82602061107f565b835110156108835760405162461bcd60e51b8152602060048201526015602482015274746f427974657333325f6f75744f66426f756e647360581b604482015260640161052e565b50016020015190565b600061089982600861107f565b835110156108e05760405162461bcd60e51b8152602060048201526014602482015273746f55696e7436345f6f75744f66426f756e647360601b604482015260640161052e565b50016008015190565b60006108f682600561107f565b8351101561093d5760405162461bcd60e51b8152602060048201526014602482015273746f4279746573355f6f75744f66426f756e647360601b604482015260640161052e565b50016005015190565b600061095382600361107f565b8351101561099a5760405162461bcd60e51b8152602060048201526014602482015273746f55696e7432345f6f75744f66426f756e647360601b604482015260640161052e565b50016003015190565b60006109b082600761107f565b835110156109f75760405162461bcd60e51b8152602060048201526014602482015273746f55696e7435365f6f75744f66426f756e647360601b604482015260640161052e565b50016007015190565b6000610a0d82602061107f565b835110156108835760405162461bcd60e51b8152602060048201526015602482015274746f55696e743235365f6f75744f66426f756e647360581b604482015260640161052e565b6000610a6282600861107f565b835110156108e05760405162461bcd60e51b8152602060048201526014602482015273746f4279746573385f6f75744f66426f756e647360601b604482015260640161052e565b6000610ab682600261107f565b83511015610afd5760405162461bcd60e51b8152602060048201526014602482015273746f55696e7431365f6f75744f66426f756e647360601b604482015260640161052e565b50016002015190565b6000610b1382600761107f565b835110156109f75760405162461bcd60e51b8152602060048201526014602482015273746f4279746573375f6f75744f66426f756e647360601b604482015260640161052e565b6000610b6782600c61107f565b835110156108255760405162461bcd60e51b8152602060048201526014602482015273746f55696e7439365f6f75744f66426f756e647360601b604482015260640161052e565b6000610bbb82600561107f565b8351101561093d5760405162461bcd60e51b8152602060048201526014602482015273746f55696e7434305f6f75744f66426f756e647360601b604482015260640161052e565b606081610c1081601f61107f565b1015610c4f5760405162461bcd60e51b815260206004820152600e60248201526d736c6963655f6f766572666c6f7760901b604482015260640161052e565b610c59828461107f565b84511015610c9d5760405162461bcd60e51b8152602060048201526011602482015270736c6963655f6f75744f66426f756e647360781b604482015260640161052e565b606082158015610cbc5760405191506000825260208201604052610d06565b6040519150601f8416801560200281840101858101878315602002848b0101015b81831015610cf5578051835260209283019201610cdd565b5050858452601f01601f1916604052505b50949350505050565b6000610d1c82601061107f565b835110156107c75760405162461bcd60e51b8152602060048201526015602482015274746f427974657331365f6f75744f66426f756e647360581b604482015260640161052e565b6000610d7182601461107f565b83511015610db95760405162461bcd60e51b8152602060048201526015602482015274746f416464726573735f6f75744f66426f756e647360581b604482015260640161052e565b500160200151600160601b900490565b6000610dd682600161107f565b835110156107085760405162461bcd60e51b8152602060048201526014602482015273746f4279746573315f6f75744f66426f756e647360601b604482015260640161052e565b634e487b7160e01b600052604160045260246000fd5b600082601f830112610e4457600080fd5b813567ffffffffffffffff80821115610e5f57610e5f610e1d565b604051601f8301601f19908116603f01168101908282118183101715610e8757610e87610e1d565b81604052838152866020858801011115610ea057600080fd5b836020870160208301376000602085830101528094505050505092915050565b60008060408385031215610ed357600080fd5b823567ffffffffffffffff811115610eea57600080fd5b610ef685828601610e33565b95602094909401359450505050565b60008060408385031215610f1857600080fd5b82359150602083013567ffffffffffffffff811115610f3657600080fd5b610f4285828601610e33565b9150509250929050565b60008060408385031215610f5f57600080fd5b823567ffffffffffffffff80821115610f7757600080fd5b610f8386838701610e33565b93506020850135915080821115610f9957600080fd5b50610f4285828601610e33565b600060208284031215610fb857600080fd5b813567ffffffffffffffff811115610fcf57600080fd5b610fdb84828501610e33565b949350505050565b600080600060608486031215610ff857600080fd5b833567ffffffffffffffff81111561100f57600080fd5b61101b86828701610e33565b9660208601359650604090950135949350505050565b600060208083528351808285015260005b8181101561105e57858101830151858201604001528201611042565b506000604082860101526040601f19601f8301168501019250505092915050565b8082018082111561064c57634e487b7160e01b600052601160045260246000fdfea26469706673582212205bdf5bc4551862519f5370e0dcec38eefbbbe11b6a5bf19ce2846b4f8831a5dc64736f6c63430008110033", - "nonce": "0x5", + "gas": "0x1387dd", + "data": "0x6110d661003a600b82828239805160001a60731461002d57634e487b7160e01b600052600060045260246000fd5b30600052607381538281f3fe73000000000000000000000000000000000000000030146080604052600436106101625760003560e01c8063a5eb31ee116100cd578063d1ffb56111610086578063d1ffb561146103fb578063d442584f1461042b578063e004139614610454578063f1142fb314610474578063f647f8fb14610487578063f83b670f146104b257600080fd5b8063a5eb31ee14610344578063a8d8f00f1461036b578063b5cdf92414610396578063b63711df146103a9578063be8b3430146103bc578063c29616bd146103cf57600080fd5b80635ef849301161011f5780635ef8493014610241578063913c97b41461026b57806397e6175c1461029f57806399dd9bd7146102cb5780639ae4c3d1146102ec5780639cee499e1461031857600080fd5b8063042aa0841461016757806305d3bb74146101985780631a7431ef146101c0578063235266d2146101e357806348137709146101f65780634d66a2ae1461021b575b600080fd5b61017a610175366004610ec0565b6104de565b6040516001600160d01b031990911681526020015b60405180910390f35b6101ab6101a6366004610ec0565b610540565b60405163ffffffff909116815260200161018f565b6101d36101ce366004610f05565b61059d565b604051901515815260200161018f565b6101d36101f1366004610f4c565b610652565b610209610204366004610ec0565b6106b5565b60405160ff909116815260200161018f565b61022e610229366004610fa6565b610711565b60405161ffff909116815260200161018f565b61025461024f366004610ec0565b61071e565b60405165ffffffffffff909116815260200161018f565b61027e610279366004610ec0565b610772565b6040516fffffffffffffffffffffffffffffffff909116815260200161018f565b6102b26102ad366004610ec0565b6107d0565b6040516001600160a01b0319909116815260200161018f565b6102de6102d9366004610ec0565b61082e565b60405190815260200161018f565b6102ff6102fa366004610ec0565b61088c565b60405167ffffffffffffffff909116815260200161018f565b61032b610326366004610ec0565b6108e9565b6040516001600160d81b0319909116815260200161018f565b610357610352366004610ec0565b610946565b60405162ffffff909116815260200161018f565b61037e610379366004610ec0565b6109a3565b60405166ffffffffffffff909116815260200161018f565b6102de6103a4366004610ec0565b610a00565b6102ff6103b7366004610ec0565b610a55565b61022e6103ca366004610ec0565b610aa9565b6103e26103dd366004610ec0565b610b06565b6040516001600160c81b0319909116815260200161018f565b61040e610409366004610ec0565b610b5a565b6040516bffffffffffffffffffffffff909116815260200161018f565b61043e610439366004610ec0565b610bae565b60405164ffffffffff909116815260200161018f565b610467610462366004610fe3565b610c02565b60405161018f9190611031565b6102b2610482366004610ec0565b610d0f565b61049a610495366004610ec0565b610d64565b6040516001600160a01b03909116815260200161018f565b6104c56104c0366004610ec0565b610dc9565b6040516001600160f81b0319909116815260200161018f565b60006104eb82600661107f565b835110156105375760405162461bcd60e51b8152602060048201526014602482015273746f4279746573365f6f75744f66426f756e647360601b60448201526064015b60405180910390fd5b50016006015190565b600061054d82600461107f565b835110156105945760405162461bcd60e51b8152602060048201526014602482015273746f55696e7433325f6f75744f66426f756e647360601b604482015260640161052e565b50016004015190565b600080600190508354600260018083161561010002038216048451808214600181146105cc5760009450610644565b821561064457602083106001811461062957600189600052602060002060208a018581015b600284828410010361062057815183541461060f5760009950600093505b6001830192506020820191506105f1565b50505050610642565b6101008086040294506020880151851461064257600095505b505b509293505050505b92915050565b81518151600091600191811480831461066e57600092506106ab565b600160208701838101602088015b60028483851001036106a657805183511461069a5760009650600093505b6020928301920161067c565b505050505b5090949350505050565b60006106c282600161107f565b835110156107085760405162461bcd60e51b8152602060048201526013602482015272746f55696e74385f6f75744f66426f756e647360681b604482015260640161052e565b50016001015190565b600061064c826000610aa9565b600061072b82600661107f565b835110156105375760405162461bcd60e51b8152602060048201526014602482015273746f55696e7434385f6f75744f66426f756e647360601b604482015260640161052e565b600061077f82601061107f565b835110156107c75760405162461bcd60e51b8152602060048201526015602482015274746f55696e743132385f6f75744f66426f756e647360581b604482015260640161052e565b50016010015190565b60006107dd82600c61107f565b835110156108255760405162461bcd60e51b8152602060048201526015602482015274746f427974657331325f6f75744f66426f756e647360581b604482015260640161052e565b5001600c015190565b600061083b82602061107f565b835110156108835760405162461bcd60e51b8152602060048201526015602482015274746f427974657333325f6f75744f66426f756e647360581b604482015260640161052e565b50016020015190565b600061089982600861107f565b835110156108e05760405162461bcd60e51b8152602060048201526014602482015273746f55696e7436345f6f75744f66426f756e647360601b604482015260640161052e565b50016008015190565b60006108f682600561107f565b8351101561093d5760405162461bcd60e51b8152602060048201526014602482015273746f4279746573355f6f75744f66426f756e647360601b604482015260640161052e565b50016005015190565b600061095382600361107f565b8351101561099a5760405162461bcd60e51b8152602060048201526014602482015273746f55696e7432345f6f75744f66426f756e647360601b604482015260640161052e565b50016003015190565b60006109b082600761107f565b835110156109f75760405162461bcd60e51b8152602060048201526014602482015273746f55696e7435365f6f75744f66426f756e647360601b604482015260640161052e565b50016007015190565b6000610a0d82602061107f565b835110156108835760405162461bcd60e51b8152602060048201526015602482015274746f55696e743235365f6f75744f66426f756e647360581b604482015260640161052e565b6000610a6282600861107f565b835110156108e05760405162461bcd60e51b8152602060048201526014602482015273746f4279746573385f6f75744f66426f756e647360601b604482015260640161052e565b6000610ab682600261107f565b83511015610afd5760405162461bcd60e51b8152602060048201526014602482015273746f55696e7431365f6f75744f66426f756e647360601b604482015260640161052e565b50016002015190565b6000610b1382600761107f565b835110156109f75760405162461bcd60e51b8152602060048201526014602482015273746f4279746573375f6f75744f66426f756e647360601b604482015260640161052e565b6000610b6782600c61107f565b835110156108255760405162461bcd60e51b8152602060048201526014602482015273746f55696e7439365f6f75744f66426f756e647360601b604482015260640161052e565b6000610bbb82600561107f565b8351101561093d5760405162461bcd60e51b8152602060048201526014602482015273746f55696e7434305f6f75744f66426f756e647360601b604482015260640161052e565b606081610c1081601f61107f565b1015610c4f5760405162461bcd60e51b815260206004820152600e60248201526d736c6963655f6f766572666c6f7760901b604482015260640161052e565b610c59828461107f565b84511015610c9d5760405162461bcd60e51b8152602060048201526011602482015270736c6963655f6f75744f66426f756e647360781b604482015260640161052e565b606082158015610cbc5760405191506000825260208201604052610d06565b6040519150601f8416801560200281840101858101878315602002848b0101015b81831015610cf5578051835260209283019201610cdd565b5050858452601f01601f1916604052505b50949350505050565b6000610d1c82601061107f565b835110156107c75760405162461bcd60e51b8152602060048201526015602482015274746f427974657331365f6f75744f66426f756e647360581b604482015260640161052e565b6000610d7182601461107f565b83511015610db95760405162461bcd60e51b8152602060048201526015602482015274746f416464726573735f6f75744f66426f756e647360581b604482015260640161052e565b500160200151600160601b900490565b6000610dd682600161107f565b835110156107085760405162461bcd60e51b8152602060048201526014602482015273746f4279746573315f6f75744f66426f756e647360601b604482015260640161052e565b634e487b7160e01b600052604160045260246000fd5b600082601f830112610e4457600080fd5b813567ffffffffffffffff80821115610e5f57610e5f610e1d565b604051601f8301601f19908116603f01168101908282118183101715610e8757610e87610e1d565b81604052838152866020858801011115610ea057600080fd5b836020870160208301376000602085830101528094505050505092915050565b60008060408385031215610ed357600080fd5b823567ffffffffffffffff811115610eea57600080fd5b610ef685828601610e33565b95602094909401359450505050565b60008060408385031215610f1857600080fd5b82359150602083013567ffffffffffffffff811115610f3657600080fd5b610f4285828601610e33565b9150509250929050565b60008060408385031215610f5f57600080fd5b823567ffffffffffffffff80821115610f7757600080fd5b610f8386838701610e33565b93506020850135915080821115610f9957600080fd5b50610f4285828601610e33565b600060208284031215610fb857600080fd5b813567ffffffffffffffff811115610fcf57600080fd5b610fdb84828501610e33565b949350505050565b600080600060608486031215610ff857600080fd5b833567ffffffffffffffff81111561100f57600080fd5b61101b86828701610e33565b9660208601359650604090950135949350505050565b600060208083528351808285015260005b8181101561105e57858101830151858201604001528201611042565b506000604082860101526040601f19601f8301168501019250505092915050565b8082018082111561064c57634e487b7160e01b600052601160045260246000fdfea26469706673582212200ab05fdff7c9159a360effa700137333459105198b03327bed2de33488aa4ec064736f6c63430008150033", + "nonce": "0xf", "accessList": [] }, "additionalContracts": [], "isFixedGasLimit": false }, { - "hash": "0xd9a18362ad106c41fe0645d5ceb2153814665eace90e54038bca1ad3c3e0169c", + "hash": "0x301e6f0bd1fcecc7463c48469d5f7ccd0c1a62c94edef96827472a8b39a9ef9c", "transactionType": "CREATE", "contractName": "MultiSendCallOnly", - "contractAddress": "0x0165878A594ca255338adfa4d48449f69242Eb8F", + "contractAddress": "0x959922bE3CAee4b8Cd9a407cc3ac1C251C2007B1", "function": null, "arguments": null, "transaction": { "type": "0x02", "from": "0xf39fd6e51aad88f6f4ce6ab8827279cfffb92266", - "gas": "0x2e5c4", + "gas": "0x2e5b4", "value": "0x0", - "data": "0x608060405234801561001057600080fd5b506101ae806100206000396000f3fe60806040526004361061001e5760003560e01c80638d80ff0a14610023575b600080fd5b6100366100313660046100c7565b610038565b005b805160205b818110156100ac578083015160f81c6001820184015160601c601583018501516035840186015160558501870160008560008114610082576001811461001e5761008e565b6000808585888a5af191505b508061009957600080fd5b505080605501850194505050505061003d565b505050565b634e487b7160e01b600052604160045260246000fd5b6000602082840312156100d957600080fd5b813567ffffffffffffffff808211156100f157600080fd5b818401915084601f83011261010557600080fd5b813581811115610117576101176100b1565b604051601f8201601f19908116603f0116810190838211818310171561013f5761013f6100b1565b8160405282815287602084870101111561015857600080fd5b82602086016020830137600092810160200192909252509594505050505056fea2646970667358221220c15490bbb756a4c3c49d6335b2e81d2d098647b0ea70174c2279f199b1d0800364736f6c63430008110033", - "nonce": "0x6", + "data": "0x608060405234801561001057600080fd5b506101ae806100206000396000f3fe60806040526004361061001e5760003560e01c80638d80ff0a14610023575b600080fd5b6100366100313660046100c7565b610038565b005b805160205b818110156100ac578083015160f81c6001820184015160601c601583018501516035840186015160558501870160008560008114610082576001811461001e5761008e565b6000808585888a5af191505b508061009957600080fd5b505080605501850194505050505061003d565b505050565b634e487b7160e01b600052604160045260246000fd5b6000602082840312156100d957600080fd5b813567ffffffffffffffff808211156100f157600080fd5b818401915084601f83011261010557600080fd5b813581811115610117576101176100b1565b604051601f8201601f19908116603f0116810190838211818310171561013f5761013f6100b1565b8160405282815287602084870101111561015857600080fd5b82602086016020830137600092810160200192909252509594505050505056fea2646970667358221220915f2e68ab0008ebbb1ed69f9c5c2817995c2578db9a979f782235cb1216b32764736f6c63430008150033", + "nonce": "0x10", "accessList": [] }, "additionalContracts": [], "isFixedGasLimit": false }, { - "hash": "0xa71a035d96f32aace3859776b5d6e9a78cbc722f32d99832940e340d148d96a7", + "hash": "0x457ccd02ec7d5d9ae02f2f249f866d36f8c4107218db1bef2deb1808d77ee377", "transactionType": "CREATE", "contractName": "BasicCellRenderer", - "contractAddress": "0xa513E6E4b8f2a923D98304ec87F64353C4D5C853", + "contractAddress": "0x9A9f2CCfdE556A7E9Ff0848998Aa4a0CFD8863AE", "function": null, "arguments": null, "transaction": { @@ -49,18 +49,18 @@ "from": "0xf39fd6e51aad88f6f4ce6ab8827279cfffb92266", "gas": "0x3180ad", "value": "0x0", - "data": "0x608060405234801561001057600080fd5b50612c25806100206000396000f3fe608060405234801561001057600080fd5b50600436106100365760003560e01c806306d4cd8b1461003b57806328de0f2f14610064575b600080fd5b61004e610049366004610322565b610077565b60405161005b919061038b565b60405180910390f35b61004e610072366004610404565b6100f1565b60606000610086600f846104fc565b90506000610095600f8361051e565b61009f9085610535565b905060006100ae826041610548565b60f81b9050806100c76100c2856001610548565b6101b6565b6040516020016100d8929190610577565b6040516020818303038152906040529350505050919050565b606060006100fe86610077565b905083838261018388735fc8d32690cc91d4c39d9d3abcbd16989f87570763b5cdf924909160006040518363ffffffff1660e01b81526004016101429291906105a8565b602060405180830381865af415801561015f573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906100c291906105ca565b87878660405160200161019c97969594939291906105f2565b604051602081830303815290604052915050949350505050565b606060006101c383610249565b600101905060008167ffffffffffffffff8111156101e3576101e36103a5565b6040519080825280601f01601f19166020018201604052801561020d576020820181803683370190505b5090508181016020015b600019016f181899199a1a9b1b9c1cb0b131b232b360811b600a86061a8153600a850494508461021757509392505050565b60008072184f03e93ff9f4daa797ed6e38ed64bf6a1f0160401b83106102885772184f03e93ff9f4daa797ed6e38ed64bf6a1f0160401b830492506040015b6d04ee2d6d415b85acef810000000083106102b4576d04ee2d6d415b85acef8100000000830492506020015b662386f26fc1000083106102d257662386f26fc10000830492506010015b6305f5e10083106102ea576305f5e100830492506008015b61271083106102fe57612710830492506004015b60648310610310576064830492506002015b600a831061031c576001015b92915050565b60006020828403121561033457600080fd5b5035919050565b60005b8381101561035657818101518382015260200161033e565b50506000910152565b6000815180845261037781602086016020860161033b565b601f01601f19169290920160200192915050565b60208152600061039e602083018461035f565b9392505050565b634e487b7160e01b600052604160045260246000fd5b60008083601f8401126103cd57600080fd5b50813567ffffffffffffffff8111156103e557600080fd5b6020830191508360208285010111156103fd57600080fd5b9250929050565b6000806000806060858703121561041a57600080fd5b84359350602085013567ffffffffffffffff8082111561043957600080fd5b818701915087601f83011261044d57600080fd5b81358181111561045f5761045f6103a5565b604051601f8201601f19908116603f01168101908382118183101715610487576104876103a5565b816040528281528a60208487010111156104a057600080fd5b8260208601602083013760006020848301015280975050505060408701359150808211156104cd57600080fd5b506104da878288016103bb565b95989497509550505050565b634e487b7160e01b600052601160045260246000fd5b60008261051957634e487b7160e01b600052601260045260246000fd5b500490565b808202811582820484141761031c5761031c6104e6565b8181038181111561031c5761031c6104e6565b8082018082111561031c5761031c6104e6565b6000815161056d81856020860161033b565b9290920192915050565b6001600160f81b031983168152815160009061059a81600185016020870161033b565b919091016001019392505050565b6040815260006105bb604083018561035f565b90508260208301529392505050565b6000602082840312156105dc57600080fd5b5051919050565b81818437506000910190815290565b7f646174613a6170706c69636174696f6e2f6a736f6e2c7b22646573637269707481527f696f6e223a2022537461726b7368656574222c20226e616d65223a202200000060208201528688603d8301376000878201602160f81b603d820152875161066481603e840160208c0161033b565b7f222c22696d616765223a2022646174613a696d6167652f7376672b786d6c2c25603e92909101918201527f334373766725323076696577426f782533442532373025323030253230383925605e8201527f3230353525323725323066696c6c2533442532376e6f6e65253237253230786d607e8201527f6c6e73253344253237687474702533412f2f7777772e77332e6f72672f323030609e8201527f302f737667253237253345253343646566732533452533437374796c6525334560be8201527f253430666f6e742d66616365253230253742666f6e742d66616d696c7925334160de8201527f253230253237507265737325323053746172742532303250253237253342737260fe8201527f6325334125323075726c25323825323764617461253341666f6e742f776f666661011e8201527f32253342626173653634253243643039474d6741424141414141424c3841413861013e8201527f41414141415235774141424b674141454141414141414141414141414141414161015e8201527f4141414141414141414141414150305a4756453063476a41624d42794358675a61017e8201527f6741494e794551674b3846545361517544524141424e67496b41344e4d42434161019e8201527f46687a5148684649623644566c42306a314f4d4253336f4f4953744562732f2f6101be8201527f2f6c4a776356727a47634f30676f684c45484d6369694443434e57695a6761306101de8201527f79625345555954514f6a4b427038546c737a7344526438716174586c333058746101fe8201527f30645a47467952305668444b776c62746c25324272734643773945316e64655961021e8201527f4a74732f37527762305673784d71576c636a6a775445537a2f5568752f77337361023e8201527f33746b6f496d70343464515168576f456d54337579526d70746f7553446b7a5761025e8201527f454138762f3932364a4b7539486f696e6e3673376674336d4965476c7737547161027e8201527f6437456f326a46517849766a5642494a70563269614f62547a68575932314e7461029e8201527f476772687434704d4b3457556a34624c7967542f51253242514c7879253242336102be8201527f6c482f362f6b6275496444497239446a724a496a6f394a7336524d58253242456102de8201527f6b37424f545a6b6d70397a347455524652566656307148504448375a7462364a6102fe8201527f616f6130684c335975616232473373667a72365776394536793569767025324261031e8201527f7135564c74426a514478476f5345304150313762336466376c61726a6525324261033e8201527f73637a6b7241744a334b6657304a342532424b323365744b4b556a383554616f61035e8201527f57473453346158436c427743413268676141652532423658396f696e32304e6261037e8201527f554a7264466767517049686d5247494d30372f7025324277375a7058316c473161039e8201527f6a6a51787073435141423438714445415042346950312f6a39592f4261686a356103be8201527f5943414e302f78714157496852616a6c6e694e654f50396e78433466667932556103de8201527f694843304e47386b686f6f567a6f7459334445417a417a41356b473735337a6a6103fe8201527f4853354d6e6d586b69496a6d54554d36556d4d3025324256346976752f48377861041e8201527f6a364666322f6b343472787a6449324141676742492f4c48416b394a7a35554d61043e8201527f496f4c7755344146455435725a464f33444d616655633061777351434879497061045e8201527f557a546b30784a474a454f6a4e6871436b474570496153474f6a714e466d2f5761047e8201527f4e434e3569636b71434d6e414165564c4d4c655867356971386b365752585a5261049e8201527f326c337042393831427a73475a743225324256696c4342723954494a674b67786104be8201527f365542514446253242566a4b44714e7741414948386a6949664d6e75384b68666104de8201527f584b486f4e3348634134477245786842324155442f795a554d423857547579496104fe8201527f413444634f4b656434397939504249616e426967734d454e38556b30766c547661051e8201527f304a58334e394d795a75544d763573655357413525324238556538504465547261053e8201527f645467474973566d4e33635856586a6463795275633434385866664176506e7361055e8201527f3575324d4531722532426a4731703137767a3849704f416e483444427367793361057e8201527f512f54376b33646d2f3846334232377355694877464631414f6c683055646e4961059e8201527f4471494e5164506355393145786f2f346252696a6a5169704e4e307a4c646c7a6105be8201527f504438496f547449734c38717162746f4f5149514a5a567849705931315073536105de8201527f55533231397a4c585066642f507667765751346372464d2532425769755671706105fe8201527f645a6f4e6475645872632f4745324d4a36656e3575635746694763375274364f61061e8201527f487676354d674c2532427a44733578444277696141315433554877326b63594361063e8201527f312f55666453316645316d37763742346537653350574848786533594f32483561065e8201527f25324241504f5a7965503025324251506553425468793078713965363241486a61067e8201527f6141556842432f364144484c6f476f4f657636412532426867487369317a613861069e8201527f71355a4e4d716a596c575a4d713867354248445574495370574a73526f52544a6106be8201527f56613049305a3957546b5371564b73507a3464586a7648746449684c6e7670746106de8201527f554c4330753542567579414d544b4a513930594b5267546e5769476b6d7153456106fe8201527f714b6d7256685259674b6b335443686255573671456f45637665577a6859535461071e8201527f4c32484e706735452f6d7151393956564467763352475435586d33637a68754c61073e8201527f3972685864316132372f736c5130686959366a643739614f5a43746a6f52687261075e8201527f623136575676514b725734477a786a7869723238494d697a2f7155447973495761077e8201527f7037516a667765347a556437614a735651575179524c554b484b42577938577661079e8201527f45565333584d53353656337757644f442532424638757639645477496d4b722f6107be8201527f5064626d5763775176456641616a7975566a70784e32704f56635769336c38776107de8201527f454c2f6d395070646f55494536253242504b5838315041546d67654f304231736107fe8201527f47454825324261707a353466646d534a7a333741686635366a4c7739756e504561081e8201527f35644d4b3025324237544639563843435466523979664e7355493474557a464661083e8201527f42326e536e384b4f626a64446964554c7034494a6873777878595172595a643661085e8201527f4e76436e55394d445825324252654c6e4d546d6c315a453972306b5077334e3261087e8201527f6752253242736a4573596d4953706b356c31497333594e614a4b6f6e7a65703761089e8201527f56637354316e556b62347048774b5a41796b614b6f43504630506f6d456876496108be8201527f5758656e6f5a767836774f4b313070316c3274546858793850316555776473766108de8201527f53715157766f424d7473674851554a614774494273756861776450545a5378596108fe8201527f707257757734647a7231564755744449465871726f4d4d69597346783857695461091e8201527f336463574b6f376d50554c79715657413972305974524a4c626957766a6e4c2561093e8201527f324272633452646767624e516c514141613264306d616236364d48447074314361095e8201527f6477626b51436253375053445a4d7a3746724f51713165636153304a6c74644161097e8201527f6c44527941587173364130586247707748676b70367572557757416272464d3361099e8201527f75794d764e4b6c344d6c435548537950416d3931776144454a3559595148754a6109be8201527f4d32304b575251737637486b61334770686c533258444b714f4b4245554753316109de8201527f65306b63316f323449494166486c4449794278584a4a656767423369386174566109fe8201527f67434f3064444f5a484a57596a564c416a6a397137765673456e72684b374568610a1e8201527f4c75427a42586d4d674554634531636d61436976504b6f4a766670466c794935610a3e8201527f4d70584234454325324245672f596d303454787843354e6c73596b74646f5951610a5e8201527f55656c38624673456c3748345a36734377622f38626b347458574658504b6a71610a7e8201527f5462526e64336e4c5770394f784941706c664b586747684e6c72443462354a4c610a9e8201527f5a367055753441726756614d366561357844574244476f7a707a4641376e6747610abe8201527f74596334486141775269475576637653653652414177335a576b564f4667764b610ade8201527f46364955696c4d49394964715155345134585264484866736666517770313955610afe8201527f434a49306a5773725433356f5578303678507268473271364d4533554f306c63610b1e8201527f635a557354454351784a44527854444b6c334c4948722f6162546f73686c6466610b3e8201527f51786a364f57745273466e6966444373473674336b426f344e6d424a6d615556610b5e8201527f54636c794951414a4c6a6e723042365a3859464d6e396b397967703752727848610b7e8201527f36766877624a4e41654b4d554436353974386746514a4d5377652f434f624850610b9e8201527f467671484746554e5266253242737245663354584b42725a76676b6369396972610bbe8201527f426d63442f7458616754474358634e68432532424f3539754c706e6673796f71610bde8201527f4c53313238374552776d38666165564f6d3857634437386c5a36594232793938610bfe8201527f5a4c6c4d3972557264324c514e6c324956643454727376675139363079377573610c1e8201527f5965306854506170576a71726c2532425837784665424e54253242315a644a4a610c3e8201527f572532424678745737584e7774634e7a7761672532425256656a6d4a6839656d610c5e8201527f6c495a4b69694e63694b3849554f4d33556a4a376342554e5847505853326c68610c7e8201527f253242687770676f4836567348524f63764569723372585970344c7769435a77610c9e8201527f3176486c43623552314d68623564536e4f326d6e6f475a6f5846315765574757610cbe8201527f6d7a694a314a555534715072306e694a536c4e424331636b4b6d4a6657625877610cde8201527f5577757449547a456d6a776770776142753464525066746a2f4e384143526e64610cfe8201527f616b2f4641674b674c37305058577839767a6b59322532426d34355473496b4c610d1e8201527f3037616f70444e6f676830535262535a534f397a744657516a376e574c676275610d3e8201527f364325324254374b6a44715a3667456e5277674d78306b4c5a77797962514f76610d5e8201527f514130773054782f354a42722f63595a6453574f546a774446364e6f586b796a610d7e8201527f33566a484e4751494e76426a5a734a4a3377466141516d6f5a575a5970416961610d9e8201527f574f466e6e686455524176576b557a77693062677a5a4158796f445545714863610dbe8201527f57307069454c574f777168773365765478444957724e32495371525151454c41610dde8201527f4d32365334486c723548552f48784a43436844424a6b756b6341573856415430610dfe8201527f6770545a544b4e48677a444f7234314751656a4f34677a416e6b577077464752610e1e8201527f43334c625231787a4b434875365635694674674c704f384b51596d5965467868610e3e8201527f4c32643838736469506a2f76306b427a636c51637954735766324d6445394944610e5e8201527f386d5858576a72434b253242354532756e336e6976656973526e726971317548610e7e8201527f594d6a6a69694945304b6466674d6f3163476d6b557254624f30356732737633610e9e8201527f477673525971762f61457736375472644f705435567a4641364131417939634b610ebe8201527f6f44667762544a64445750524e57517354796a6d3772486249734b466b6f4f2f610ede8201527f5a4c4376735966785973337768534338614c49344b765677373773336e347a48610efe8201527f67697061634a6e435362463945727a53357069386343577655597a4f5064327a610f1e8201527f684a2f4750437a53684f453378596c634f3350796164586a54334f6b68706841610f3e8201527f58465853766865544e5355525446565641486f4a6d7949726b6a454b6f517746610f5e8201527f4730303554334158643935764e30446d336d427332786746546c253242513572610f7e8201527f73416a6e744768707a6f62643642374e7a52664e56653130446f4e5639343753610f9e8201527f59646f635252624776636d785456786f61367a717756376d416e773544314745610fbe8201527f5474327a48382532425476514256356e37672f32615768743979794e594c3974610fde8201527f4f42744167384846435945316d4e775432454232467538544968543776565241610ffe8201527f3461587a6e6b3670545a4e6779696f73747749364b654655374c696c7041253261101e8201527f42334234474a794277574d327062466a4876734a3747754f6f616b6a6d46746a61103e8201527f59344c6254396c323239253242453646374c4475577a744c6e333749786b386a61105e8201527f356c42564b33774c7369362f416641756f6a34396c4d6b5653545045396b704761107e8201527f64304c724555534a4941413070596c4178414d642f4e4f46776f4a446458466961109e8201527f307a4f5744422f54464a705666575642574f516274724a556230636c663369256110be8201527f3242575072446f596c65545674564f45306d36793564487444725551776f414c6110de8201527f7455523365585364444d4e785866656a594674764c626c726c4a7777484b2f456110fe8201527f6957504a616b32574b35386e684e6f4c6a615a55475841756f32656f5777464561111e8201527f66612f445334496958717246714779633348726939785132693243352f73357661113e8201527f7a424d30793777334d4473774d3759325247427172464d6778374f696325324261115e8201527f30497a736d5678617a5473305263666a324f3334532f525639503269486f427561117e8201527f6c4b49594244665a46654c53356439725379664a64536c67683268644d72324f61119e8201527f5552334b6e6c506e4f41785477314a384c4d325a776e4671765a745a4a6c78786111be8201527f343873776243743272316b664875443756624831326159383849437456734b786111de8201527f4b742f31726b616c42414d74782f6f6f6d43445059626b556f4c6344624b436a6111fe8201527f7675713953544467746a584744715735564b36686347654f46697a6a3643714c61121e8201527f4f49716b57783477733245504d444e7378253242613661533230384f39784c3061123e8201527f526146586f394241645530706e452532424c695359334b536f4a41525978646e61125e8201527f7a69545a4d706961442f3438496969393834446151357976656378414673735761127e8201527f792f686274696d63253242704c386b35796f70496d4a627948712f6138797a6c61129e8201527f6c37726f4f7a586d786d4163337459585363546b65734d6344324939315a36336112be8201527f6549312f394a627755716b36737863394b52677277574d414e6543314e6e39756112de8201527f4779775473706d5538712532426c5a6d43714d674153363662674841476a514b6112fe8201527f73754a334451416a5235346d356a4c7a5a616e546c62646530253242726e663461131e8201527f385a574138546c32673277414779427748516e3552322532424e6a726542677861133e8201527f626c734e46627554776d6862414a48737a2f72416f61764c4f34317874767a5961135e8201527f4768336e4c4a426b41506a7578424a445248333048426575385567436978464e61137e8201527f437951322f4b253242385157372f6530253242664f2532423436524e5730657961139e8201527f4c726f39446a5467704a4e4d3547385179306c54644f756d73773066715045696113be8201527f393646702532424830634d774e6f376a787a596d6e4e664d5a6d64506c7932706113de8201527f6f7132575065476d67507136474c78504e34536c4b486e7870624f69754c58516113fe8201527f75583155715031676a6f38426136536c55314f416d5267707a7531735444584a61141e8201527f50754d3338546f387130344c324e777970653837327777556741675a6c70386461143e8201527f6b5166397a38544d43624d6b596b3758484375333564375a5a41656f346b5a4b61145e8201527f68784953386945354c546a334c4f6976485a7268394a3870337a4c5a436a776361147e8201527f6970354452694b6e576e49664c33386b4a684d7452776a67553525324256726d61149e8201527f714b6c6739307a376a64732f4238444b646b464c76483353253242376f4838616114be8201527f6c445a6c626734533155583574434d445342324f364b756c7a41344b763067376114de8201527f314251643054464b7733685358696e62374e6c304258725873514e6376436b386114fe8201527f6d6f394f786965783559627a78564e2f6b3738336f48545a495777393079495a61151e8201527f777672697164475473586e54384965705437597946434f4a6741395a3042794961153e8201527f455956735478522f6b73616b324268376f4b767034766e695530364d57317a4261155e8201527f4672746568647a306b6b587951786a426d7965645636644d596545386146787461157e8201527f6575777355466136466c6c54446c716430707a525a77473663467266574d627061159e8201527f384738587a6a66624d253242354658657076356f457273696c363458783663376115be8201527f5841576275696d3666387347494d58666f334a6971476b703333376854536a676115de8201527f65636862364f42472f327a31376a6f6d4469476d253242476c623146553069656115fe8201527f6e7552796977654c576767447a6d4655765545556a5a6f377356544877684f4661161e8201527f504d6b4e737146423977796d6b45307639666d7477453854377135384e594f3761163e8201527f787534623833766e46766c35755378446c472532426b4f51675249644f346a6761165e8201527f7a786a53486a4b4c7332742f6c684f647771766131415744437072763344345361167e8201527f34523741625934544362664b4637744265363554343551347a7a49714433316161169e8201527f79797557716a692532424636585337535439483943314f342f694b366b4775766116be8201527f6b512f664e3537487837456533373435622f76766e2f62482f58253242392f256116de8201527f32426762656d684f416d49705576755157757344764b517578394a44564e734b6116fe8201527f673651636d6b73515341445530346347524c523768466f5a326337785545664761171e8201527f253242776b755459474d764c6a422f6550634936416847686e5735717a45416961173e8201527f4a586377564545775869654e70536c317a6a457253253242435325324248634c61175e8201527f6f52506d7661324d6767412f69794c67536f544a555767733442794149514f3061177e8201527f4f6f705a487656627a6844494c65557155677a7a48492f667950474e7879777361179e8201527f6f796c6865534639577662795363336b4544716b32415636436c4364635535536117be8201527f6e6c4e6e4963394b794d63384c79622532423867484f4a795173466c4c6250526117de8201527f796d6d374a42743349545a544162314732444252496b514b51705451396939626117fe8201527f3665435353387a4d366161525364544b5657524d336663454a4c644b61746e7361181e8201527f724959774e4a55253242733048364461757832775a35686733706c653042474861183e8201527f756b316b4543734859446461496d4b7025324233463542317859763763486b7161185e8201527f644475306a4b645273657a3531376d63563641685148346931484e3173766c6a61187e8201527f5248366845454672682532426e72726d47316e33307a4d346749776d694d774561189e8201527f624b6842545564423141486f582532424b6741517a4f48543946494f71436b526118be8201527f4e4e623273397170496943534f753167576868497343564a73765771457175356118de8201527f47624a514b4e6a61427465394c4f69676368414a7665475773394332323033766118fe8201527f6f6e476c6b77725251323464646732796345646157554456734441785548734961191e8201527f77773665615234464665336d4a416b66426d5a6452395264774a485a6d47645261193e8201527f7950436a706a627a31712f584a34534949446b66384b4b6e6e32456c4b6d794c61195e8201527f69573442513836733151554b2f76426867524e776548766c5968687a7238706361197e8201527f67704b4b6d6f61576a7036426b594f48446c7835734b5647336365474539657661199e8201527f506e773563646667454242676f554946536238587632504553314772446a78456119be8201527f69524b6b697846716a54704d6d544b6b693148726a7a354368517155717845716119de8201527f544c6c4b6c53715571314772547231476a527130717846717a62744f6e5347656119fe8201527f3668374a6d627a4968355a6544696c315a58536a7430774375616b336c6e476f611a1e8201527f5655506f53734e663337394b326a6274716d44674d69485a42665a6c68324839611a3e8201527f75773738495469314a466a585653662f4336634f55667a346f30644178305447611a5e8201527f777448446863666a3443516d49694531444d5a42546b6c4e5a557065566f614f611a7e8201527f6e717633733234314e50503965766574594768435a50576a4979747332706173611a9e8201527f436a25324270556a54596c336b615574374f744b4a6136355850396d356e6367611abe8201527f364e686a685a587032762532426d57724341545a754a303368316b6a55756976611ade8201527f5067596e6a6e35744b4a4f6b326e6362703251414559585a69304b496d50356b611afe8201527f744961466e366b5a397743253237253239253230666f726d6174253238253237611b1e8201527f776f666632253237253239253342666f6e742d7765696768742533412532306e611b3e8201527f6f726d616c253342666f6e742d7374796c652533412532306e6f726d616c2533611b5e8201527f42666f6e742d646973706c617925334125323073776170253342253744746578611b7e8201527f74253230253742666f6e742d66616d696c792533412532302532375072657373611b9e8201527f2532305374617274253230325025323725334266696c6c253341253230776869611bbe8201527f74652537442e76616c7565253230253742666f6e742d73697a65253341253230611bde8201527f313070782533422537442e6e616d65253230253742666f6e742d73697a652533611bfe8201527f412532303470782533422537442533432f7374796c652533452533432f646566611c1e8201527f7325334525334372656374253230776964746825334425323738392532372532611c3e8201527f30686569676874253344253237353525323725323066696c6c25334425323762611c5e8201527f6c61636b2532372532302f253345253343726563742532307825334425323735611c7e8201527f2e3525323725323079253344253237352e352532372532307769647468253344611c9e8201527f2532373738253237253230686569676874253344253237343425323725323066611cbe8201527f696c6c2533442532372532333030303046462532372532302f25334525334374611cde8201527f657874253230746578742d616e63686f722533442532376d6964646c65253237611cfe8201527f2532307825334425323734342e35253237253230792533442532373333253237611d1e8201527f253230636c61737325334425323776616c756525323725334500000000000000611d3e820152612ba5612b9e6129f5611d5784018a61055b565b7f2533432f746578742533452533437265637425323078253344253237352e352581527f323725323079253344253237352e35253237253230776964746825334425323760208201527f373825323725323068656967687425334425323734342532372532307374726f60408201527f6b652533442532372532334646344630412532372532307374726f6b652d776960608201527f647468253344253237332532372532302f25334525334372656374253230782560808201527f334425323733302532372532307925334425323734352e35253237253230776960a08201527f647468253344253237353825323725323068656967687425334425323738253260c08201527f3725323066696c6c2533442532372532334646344630412532372532302f253360e08201527f4525334374657874253230746578742d616e63686f72253344253237656e64256101008201527f32372532307825334425323738372532372532307925334425323735322532376101208201527f253230636c6173732533442532376e616d6525323725334500000000000000006101408201526101580190565b86886105e3565b602160f81b81529050612bbb600182018561055b565b7f2533432f746578742533452533432f737667253345227d00000000000000000081526017019a995050505050505050505056fea26469706673582212206a2c00c13ddb4f1bcd7ee36e36f0c874d7d9dadcf38306eab3610b5a6e7af83464736f6c63430008110033", - "nonce": "0x7", + "data": "0x608060405234801561001057600080fd5b50612c25806100206000396000f3fe608060405234801561001057600080fd5b50600436106100365760003560e01c806306d4cd8b1461003b57806328de0f2f14610064575b600080fd5b61004e610049366004610322565b610077565b60405161005b919061038b565b60405180910390f35b61004e610072366004610404565b6100f1565b60606000610086600f846104fc565b90506000610095600f8361051e565b61009f9085610535565b905060006100ae826041610548565b60f81b9050806100c76100c2856001610548565b6101b6565b6040516020016100d8929190610577565b6040516020818303038152906040529350505050919050565b606060006100fe86610077565b905083838261018388730b306bf915c4d645ff596e518faf3f9669b9701663b5cdf924909160006040518363ffffffff1660e01b81526004016101429291906105a8565b602060405180830381865af415801561015f573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906100c291906105ca565b87878660405160200161019c97969594939291906105f2565b604051602081830303815290604052915050949350505050565b606060006101c383610249565b600101905060008167ffffffffffffffff8111156101e3576101e36103a5565b6040519080825280601f01601f19166020018201604052801561020d576020820181803683370190505b5090508181016020015b600019016f181899199a1a9b1b9c1cb0b131b232b360811b600a86061a8153600a850494508461021757509392505050565b60008072184f03e93ff9f4daa797ed6e38ed64bf6a1f0160401b83106102885772184f03e93ff9f4daa797ed6e38ed64bf6a1f0160401b830492506040015b6d04ee2d6d415b85acef810000000083106102b4576d04ee2d6d415b85acef8100000000830492506020015b662386f26fc1000083106102d257662386f26fc10000830492506010015b6305f5e10083106102ea576305f5e100830492506008015b61271083106102fe57612710830492506004015b60648310610310576064830492506002015b600a831061031c576001015b92915050565b60006020828403121561033457600080fd5b5035919050565b60005b8381101561035657818101518382015260200161033e565b50506000910152565b6000815180845261037781602086016020860161033b565b601f01601f19169290920160200192915050565b60208152600061039e602083018461035f565b9392505050565b634e487b7160e01b600052604160045260246000fd5b60008083601f8401126103cd57600080fd5b50813567ffffffffffffffff8111156103e557600080fd5b6020830191508360208285010111156103fd57600080fd5b9250929050565b6000806000806060858703121561041a57600080fd5b84359350602085013567ffffffffffffffff8082111561043957600080fd5b818701915087601f83011261044d57600080fd5b81358181111561045f5761045f6103a5565b604051601f8201601f19908116603f01168101908382118183101715610487576104876103a5565b816040528281528a60208487010111156104a057600080fd5b8260208601602083013760006020848301015280975050505060408701359150808211156104cd57600080fd5b506104da878288016103bb565b95989497509550505050565b634e487b7160e01b600052601160045260246000fd5b60008261051957634e487b7160e01b600052601260045260246000fd5b500490565b808202811582820484141761031c5761031c6104e6565b8181038181111561031c5761031c6104e6565b8082018082111561031c5761031c6104e6565b6000815161056d81856020860161033b565b9290920192915050565b6001600160f81b031983168152815160009061059a81600185016020870161033b565b919091016001019392505050565b6040815260006105bb604083018561035f565b90508260208301529392505050565b6000602082840312156105dc57600080fd5b5051919050565b81818437506000910190815290565b7f646174613a6170706c69636174696f6e2f6a736f6e2c7b22646573637269707481527f696f6e223a2022537461726b7368656574222c20226e616d65223a202200000060208201528688603d8301376000878201602160f81b603d820152875161066481603e840160208c0161033b565b7f222c22696d616765223a2022646174613a696d6167652f7376672b786d6c2c25603e92909101918201527f334373766725323076696577426f782533442532373025323030253230383925605e8201527f3230353525323725323066696c6c2533442532376e6f6e65253237253230786d607e8201527f6c6e73253344253237687474702533412f2f7777772e77332e6f72672f323030609e8201527f302f737667253237253345253343646566732533452533437374796c6525334560be8201527f253430666f6e742d66616365253230253742666f6e742d66616d696c7925334160de8201527f253230253237507265737325323053746172742532303250253237253342737260fe8201527f6325334125323075726c25323825323764617461253341666f6e742f776f666661011e8201527f32253342626173653634253243643039474d6741424141414141424c3841413861013e8201527f41414141415235774141424b674141454141414141414141414141414141414161015e8201527f4141414141414141414141414150305a4756453063476a41624d42794358675a61017e8201527f6741494e794551674b3846545361517544524141424e67496b41344e4d42434161019e8201527f46687a5148684649623644566c42306a314f4d4253336f4f4953744562732f2f6101be8201527f2f6c4a776356727a47634f30676f684c45484d6369694443434e57695a6761306101de8201527f79625345555954514f6a4b427038546c737a7344526438716174586c333058746101fe8201527f30645a47467952305668444b776c62746c25324272734643773945316e64655961021e8201527f4a74732f37527762305673784d71576c636a6a775445537a2f5568752f77337361023e8201527f33746b6f496d70343464515168576f456d54337579526d70746f7553446b7a5761025e8201527f454138762f3932364a4b7539486f696e6e3673376674336d4965476c7737547161027e8201527f6437456f326a46517849766a5642494a70563269614f62547a68575932314e7461029e8201527f476772687434704d4b3457556a34624c7967542f51253242514c7879253242336102be8201527f6c482f362f6b6275496444497239446a724a496a6f394a7336524d58253242456102de8201527f6b37424f545a6b6d70397a347455524652566656307148504448375a7462364a6102fe8201527f616f6130684c335975616232473373667a72365776394536793569767025324261031e8201527f7135564c74426a514478476f5345304150313762336466376c61726a6525324261033e8201527f73637a6b7241744a334b6657304a342532424b323365744b4b556a383554616f61035e8201527f57473453346158436c427743413268676141652532423658396f696e32304e6261037e8201527f554a7264466767517049686d5247494d30372f7025324277375a7058316c473161039e8201527f6a6a51787073435141423438714445415042346950312f6a39592f4261686a356103be8201527f5943414e302f78714157496852616a6c6e694e654f50396e78433466667932556103de8201527f694843304e47386b686f6f567a6f7459334445417a417a41356b473735337a6a6103fe8201527f4853354d6e6d586b69496a6d54554d36556d4d3025324256346976752f48377861041e8201527f6a364666322f6b343472787a6449324141676742492f4c48416b394a7a35554d61043e8201527f496f4c7755344146455435725a464f33444d616655633061777351434879497061045e8201527f557a546b30784a474a454f6a4e6871436b474570496153474f6a714e466d2f5761047e8201527f4e434e3569636b71434d6e414165564c4d4c655867356971386b365752585a5261049e8201527f326c337042393831427a73475a743225324256696c4342723954494a674b67786104be8201527f365542514446253242566a4b44714e7741414948386a6949664d6e75384b68666104de8201527f584b486f4e3348634134477245786842324155442f795a554d423857547579496104fe8201527f413444634f4b656434397939504249616e426967734d454e38556b30766c547661051e8201527f304a58334e394d795a75544d763573655357413525324238556538504465547261053e8201527f645467474973566d4e33635856586a6463795275633434385866664176506e7361055e8201527f3575324d4531722532426a4731703137767a3849704f416e483444427367793361057e8201527f512f54376b33646d2f3846334232377355694877464631414f6c683055646e4961059e8201527f4471494e5164506355393145786f2f346252696a6a5169704e4e307a4c646c7a6105be8201527f504438496f547449734c38717162746f4f5149514a5a567849705931315073536105de8201527f55533231397a4c585066642f507667765751346372464d2532425769755671706105fe8201527f645a6f4e6475645872632f4745324d4a36656e3575635746694763375274364f61061e8201527f487676354d674c2532427a44733578444277696141315433554877326b63594361063e8201527f312f55666453316645316d37763742346537653350574848786533594f32483561065e8201527f25324241504f5a7965503025324251506553425468793078713965363241486a61067e8201527f6141556842432f364144484c6f476f4f657636412532426867487369317a613861069e8201527f71355a4e4d716a596c575a4d713867354248445574495370574a73526f52544a6106be8201527f56613049305a3957546b5371564b73507a3464586a7648746449684c6e7670746106de8201527f554c4330753542567579414d544b4a513930594b5267546e5769476b6d7153456106fe8201527f714b6d7256685259674b6b335443686255573671456f45637665577a6859535461071e8201527f4c32484e706735452f6d7151393956564467763352475435586d33637a68754c61073e8201527f3972685864316132372f736c5130686959366a643739614f5a43746a6f52687261075e8201527f623136575676514b725734477a786a7869723238494d697a2f7155447973495761077e8201527f7037516a667765347a556437614a735651575179524c554b484b42577938577661079e8201527f45565333584d53353656337757644f442532424638757639645477496d4b722f6107be8201527f5064626d5763775176456641616a7975566a70784e32704f56635769336c38776107de8201527f454c2f6d395070646f55494536253242504b5838315041546d67654f304231736107fe8201527f47454825324261707a353466646d534a7a333741686635366a4c7739756e504561081e8201527f35644d4b3025324237544639563843435466523979664e7355493474557a464661083e8201527f42326e536e384b4f626a64446964554c7034494a6873777878595172595a643661085e8201527f4e76436e55394d445825324252654c6e4d546d6c315a453972306b5077334e3261087e8201527f6752253242736a4573596d4953706b356c31497333594e614a4b6f6e7a65703761089e8201527f56637354316e556b62347048774b5a41796b614b6f43504630506f6d456876496108be8201527f5758656e6f5a767836774f4b313070316c3274546858793850316555776473766108de8201527f53715157766f424d7473674851554a614774494273756861776450545a5378596108fe8201527f707257757734647a7231564755744449465871726f4d4d69597346783857695461091e8201527f336463574b6f376d50554c79715657413972305974524a4c626957766a6e4c2561093e8201527f324272633452646767624e516c514141613264306d616236364d48447074314361095e8201527f6477626b51436253375053445a4d7a3746724f51713165636153304a6c74644161097e8201527f6c44527941587173364130586247707748676b70367572557757416272464d3361099e8201527f75794d764e4b6c344d6c435548537950416d3931776144454a3559595148754a6109be8201527f4d32304b575251737637486b61334770686c533258444b714f4b4245554753316109de8201527f65306b63316f323449494166486c4449794278584a4a656767423369386174566109fe8201527f67434f3064444f5a484a57596a564c416a6a397137765673456e72684b374568610a1e8201527f4c75427a42586d4d674554634531636d61436976504b6f4a766670466c794935610a3e8201527f4d70584234454325324245672f596d303454787843354e6c73596b74646f5951610a5e8201527f55656c38624673456c3748345a36734377622f38626b347458574658504b6a71610a7e8201527f5462526e64336e4c5770394f784941706c664b586747684e6c72443462354a4c610a9e8201527f5a367055753441726756614d366561357844574244476f7a707a4641376e6747610abe8201527f74596334486141775269475576637653653652414177335a576b564f4667764b610ade8201527f46364955696c4d49394964715155345134585264484866736666517770313955610afe8201527f434a49306a5773725433356f5578303678507268473271364d4533554f306c63610b1e8201527f635a557354454351784a44527854444b6c334c4948722f6162546f73686c6466610b3e8201527f51786a364f57745273466e6966444373473674336b426f344e6d424a6d615556610b5e8201527f54636c794951414a4c6a6e723042365a3859464d6e396b397967703752727848610b7e8201527f36766877624a4e41654b4d554436353974386746514a4d5377652f434f624850610b9e8201527f467671484746554e5266253242737245663354584b42725a76676b6369396972610bbe8201527f426d63442f7458616754474358634e68432532424f3539754c706e6673796f71610bde8201527f4c53313238374552776d38666165564f6d3857634437386c5a36594232793938610bfe8201527f5a4c6c4d3972557264324c514e6c324956643454727376675139363079377573610c1e8201527f5965306854506170576a71726c2532425837784665424e54253242315a644a4a610c3e8201527f572532424678745737584e7774634e7a7761672532425256656a6d4a6839656d610c5e8201527f6c495a4b69694e63694b3849554f4d33556a4a376342554e5847505853326c68610c7e8201527f253242687770676f4836567348524f63764569723372585970344c7769435a77610c9e8201527f3176486c43623552314d68623564536e4f326d6e6f475a6f5846315765574757610cbe8201527f6d7a694a314a555534715072306e694a536c4e424331636b4b6d4a6657625877610cde8201527f5577757449547a456d6a776770776142753464525066746a2f4e384143526e64610cfe8201527f616b2f4641674b674c37305058577839767a6b59322532426d34355473496b4c610d1e8201527f3037616f70444e6f676830535262535a534f397a744657516a376e574c676275610d3e8201527f364325324254374b6a44715a3667456e5277674d78306b4c5a77797962514f76610d5e8201527f514130773054782f354a42722f63595a6453574f546a774446364e6f586b796a610d7e8201527f33566a484e4751494e76426a5a734a4a3377466141516d6f5a575a5970416961610d9e8201527f574f466e6e686455524176576b557a77693062677a5a4158796f445545714863610dbe8201527f57307069454c574f777168773365765478444957724e32495371525151454c41610dde8201527f4d32365334486c723548552f48784a43436844424a6b756b6341573856415430610dfe8201527f6770545a544b4e48677a444f7234314751656a4f34677a416e6b577077464752610e1e8201527f43334c625231787a4b434875365635694674674c704f384b51596d5965467868610e3e8201527f4c32643838736469506a2f76306b427a636c51637954735766324d6445394944610e5e8201527f386d5858576a72434b253242354532756e336e6976656973526e726971317548610e7e8201527f594d6a6a69694945304b6466674d6f3163476d6b557254624f30356732737633610e9e8201527f477673525971762f61457736375472644f705435567a4641364131417939634b610ebe8201527f6f44667762544a64445750524e57517354796a6d3772486249734b466b6f4f2f610ede8201527f5a4c4376735966785973337768534338614c49344b765677373773336e347a48610efe8201527f67697061634a6e435362463945727a53357069386343577655597a4f5064327a610f1e8201527f684a2f4750437a53684f453378596c634f3350796164586a54334f6b68706841610f3e8201527f58465853766865544e5355525446565641486f4a6d7949726b6a454b6f517746610f5e8201527f4730303554334158643935764e30446d336d427332786746546c253242513572610f7e8201527f73416a6e744768707a6f62643642374e7a52664e56653130446f4e5639343753610f9e8201527f59646f635252624776636d785456786f61367a717756376d416e773544314745610fbe8201527f5474327a48382532425476514256356e37672f32615768743979794e594c3974610fde8201527f4f42744167384846435945316d4e775432454232467538544968543776565241610ffe8201527f3461587a6e6b3670545a4e6779696f73747749364b654655374c696c7041253261101e8201527f42334234474a794277574d327062466a4876734a3747754f6f616b6a6d46746a61103e8201527f59344c6254396c323239253242453646374c4475577a744c6e333749786b386a61105e8201527f356c42564b33774c7369362f416641756f6a34396c4d6b5653545045396b704761107e8201527f64304c724555534a4941413070596c4178414d642f4e4f46776f4a446458466961109e8201527f307a4f5744422f54464a705666575642574f516274724a556230636c663369256110be8201527f3242575072446f596c65545674564f45306d36793564487444725551776f414c6110de8201527f7455523365585364444d4e785866656a594674764c626c726c4a7777484b2f456110fe8201527f6957504a616b32574b35386e684e6f4c6a615a55475841756f32656f5777464561111e8201527f66612f445334496958717246714779633348726939785132693243352f73357661113e8201527f7a424d30793777334d4473774d3759325247427172464d6778374f696325324261115e8201527f30497a736d5678617a5473305263666a324f3334532f525639503269486f427561117e8201527f6c4b49594244665a46654c53356439725379664a64536c67683268644d72324f61119e8201527f5552334b6e6c506e4f41785477314a384c4d325a776e4671765a745a4a6c78786111be8201527f343873776243743272316b664875443756624831326159383849437456734b786111de8201527f4b742f31726b616c42414d74782f6f6f6d43445059626b556f4c6344624b436a6111fe8201527f7675713953544467746a584744715735564b36686347654f46697a6a3643714c61121e8201527f4f49716b57783477733245504d444e7378253242613661533230384f39784c3061123e8201527f526146586f394241645530706e452532424c695359334b536f4a41525978646e61125e8201527f7a69545a4d706961442f3438496969393834446151357976656378414673735761127e8201527f792f686274696d63253242704c386b35796f70496d4a627948712f6138797a6c61129e8201527f6c37726f4f7a586d786d4163337459585363546b65734d6344324939315a36336112be8201527f6549312f394a627755716b36737863394b52677277574d414e6543314e6e39756112de8201527f4779775473706d5538712532426c5a6d43714d674153363662674841476a514b6112fe8201527f73754a334451416a5235346d356a4c7a5a616e546c62646530253242726e663461131e8201527f385a574138546c32673277414779427748516e3552322532424e6a726542677861133e8201527f626c734e46627554776d6862414a48737a2f72416f61764c4f34317874767a5961135e8201527f4768336e4c4a426b41506a7578424a445248333048426575385567436978464e61137e8201527f437951322f4b253242385157372f6530253242664f2532423436524e5730657961139e8201527f4c726f39446a5467704a4e4d3547385179306c54644f756d73773066715045696113be8201527f393646702532424830634d774e6f376a787a596d6e4e664d5a6d64506c7932706113de8201527f6f7132575065476d67507136474c78504e34536c4b486e7870624f69754c58516113fe8201527f75583155715031676a6f38426136536c55314f416d5267707a7531735444584a61141e8201527f50754d3338546f387130344c324e777970653837327777556741675a6c70386461143e8201527f6b5166397a38544d43624d6b596b3758484375333564375a5a41656f346b5a4b61145e8201527f68784953386945354c546a334c4f6976485a7268394a3870337a4c5a436a776361147e8201527f6970354452694b6e576e49664c33386b4a684d7452776a67553525324256726d61149e8201527f714b6c6739307a376a64732f4238444b646b464c76483353253242376f4838616114be8201527f6c445a6c626734533155583574434d445342324f364b756c7a41344b763067376114de8201527f314251643054464b7733685358696e62374e6c304258725873514e6376436b386114fe8201527f6d6f394f786965783559627a78564e2f6b3738336f48545a495777393079495a61151e8201527f777672697164475473586e54384965705437597946434f4a6741395a3042794961153e8201527f455956735478522f6b73616b324268376f4b767034766e695530364d57317a4261155e8201527f4672746568647a306b6b587951786a426d7965645636644d596545386146787461157e8201527f6575777355466136466c6c54446c716430707a525a77473663467266574d627061159e8201527f384738587a6a66624d253242354658657076356f457273696c363458783663376115be8201527f5841576275696d3666387347494d58666f334a6971476b703333376854536a676115de8201527f65636862364f42472f327a31376a6f6d4469476d253242476c623146553069656115fe8201527f6e7552796977654c576767447a6d4655765545556a5a6f377356544877684f4661161e8201527f504d6b4e737146423977796d6b45307639666d7477453854377135384e594f3761163e8201527f787534623833766e46766c35755378446c472532426b4f51675249644f346a6761165e8201527f7a786a53486a4b4c7332742f6c684f647771766131415744437072763344345361167e8201527f34523741625934544362664b4637744265363554343551347a7a49714433316161169e8201527f79797557716a692532424636585337535439483943314f342f694b366b4775766116be8201527f6b512f664e3537487837456533373435622f76766e2f62482f58253242392f256116de8201527f32426762656d684f416d49705576755157757344764b517578394a44564e734b6116fe8201527f673651636d6b73515341445530346347524c523768466f5a326337785545664761171e8201527f253242776b755459474d764c6a422f6550634936416847686e5735717a45416961173e8201527f4a586377564545775869654e70536c317a6a457253253242435325324248634c61175e8201527f6f52506d7661324d6767412f69794c67536f544a555767733442794149514f3061177e8201527f4f6f705a487656627a6844494c65557155677a7a48492f667950474e7879777361179e8201527f6f796c6865534639577662795363336b4544716b32415636436c4364635535536117be8201527f6e6c4e6e4963394b794d63384c79622532423867484f4a795173466c4c6250526117de8201527f796d6d374a42743349545a544162314732444252496b514b51705451396939626117fe8201527f3665435353387a4d366161525364544b5657524d336663454a4c644b61746e7361181e8201527f724959774e4a55253242733048364461757832775a35686733706c653042474861183e8201527f756b316b4543734859446461496d4b7025324233463542317859763763486b7161185e8201527f644475306a4b645273657a3531376d63563641685148346931484e3173766c6a61187e8201527f5248366845454672682532426e72726d47316e33307a4d346749776d694d774561189e8201527f624b6842545564423141486f582532424b6741517a4f48543946494f71436b526118be8201527f4e4e623273397170496943534f753167576868497343564a73765771457175356118de8201527f47624a514b4e6a61427465394c4f69676368414a7665475773394332323033766118fe8201527f6f6e476c6b77725251323464646732796345646157554456734441785548734961191e8201527f77773665615234464665336d4a416b66426d5a6452395264774a485a6d47645261193e8201527f7950436a706a627a31712f584a34534949446b66384b4b6e6e32456c4b6d794c61195e8201527f69573442513836733151554b2f76426867524e776548766c5968687a7238706361197e8201527f67704b4b6d6f61576a7036426b594f48446c7835734b5647336365474539657661199e8201527f506e773563646667454242676f554946536238587632504553314772446a78456119be8201527f69524b6b697846716a54704d6d544b6b693148726a7a354368517155717845716119de8201527f544c6c4b6c53715571314772547231476a527130717846717a62744f6e5347656119fe8201527f3668374a6d627a4968355a6544696c315a58536a7430774375616b336c6e476f611a1e8201527f5655506f53734e663337394b326a6274716d44674d69485a42665a6c68324839611a3e8201527f75773738495469314a466a585653662f4336634f55667a346f30644178305447611a5e8201527f777448446863666a3443516d49694531444d5a42546b6c4e5a557065566f614f611a7e8201527f6e717633733234314e50503965766574594768435a50576a4979747332706173611a9e8201527f436a25324270556a54596c336b615574374f744b4a6136355850396d356e6367611abe8201527f364e686a685a587032762532426d57724341545a754a303368316b6a55756976611ade8201527f5067596e6a6e35744b4a4f6b326e6362703251414559585a69304b496d50356b611afe8201527f744961466e366b5a397743253237253239253230666f726d6174253238253237611b1e8201527f776f666632253237253239253342666f6e742d7765696768742533412532306e611b3e8201527f6f726d616c253342666f6e742d7374796c652533412532306e6f726d616c2533611b5e8201527f42666f6e742d646973706c617925334125323073776170253342253744746578611b7e8201527f74253230253742666f6e742d66616d696c792533412532302532375072657373611b9e8201527f2532305374617274253230325025323725334266696c6c253341253230776869611bbe8201527f74652537442e76616c7565253230253742666f6e742d73697a65253341253230611bde8201527f313070782533422537442e6e616d65253230253742666f6e742d73697a652533611bfe8201527f412532303470782533422537442533432f7374796c652533452533432f646566611c1e8201527f7325334525334372656374253230776964746825334425323738392532372532611c3e8201527f30686569676874253344253237353525323725323066696c6c25334425323762611c5e8201527f6c61636b2532372532302f253345253343726563742532307825334425323735611c7e8201527f2e3525323725323079253344253237352e352532372532307769647468253344611c9e8201527f2532373738253237253230686569676874253344253237343425323725323066611cbe8201527f696c6c2533442532372532333030303046462532372532302f25334525334374611cde8201527f657874253230746578742d616e63686f722533442532376d6964646c65253237611cfe8201527f2532307825334425323734342e35253237253230792533442532373333253237611d1e8201527f253230636c61737325334425323776616c756525323725334500000000000000611d3e820152612ba5612b9e6129f5611d5784018a61055b565b7f2533432f746578742533452533437265637425323078253344253237352e352581527f323725323079253344253237352e35253237253230776964746825334425323760208201527f373825323725323068656967687425334425323734342532372532307374726f60408201527f6b652533442532372532334646344630412532372532307374726f6b652d776960608201527f647468253344253237332532372532302f25334525334372656374253230782560808201527f334425323733302532372532307925334425323734352e35253237253230776960a08201527f647468253344253237353825323725323068656967687425334425323738253260c08201527f3725323066696c6c2533442532372532334646344630412532372532302f253360e08201527f4525334374657874253230746578742d616e63686f72253344253237656e64256101008201527f32372532307825334425323738372532372532307925334425323735322532376101208201527f253230636c6173732533442532376e616d6525323725334500000000000000006101408201526101580190565b86886105e3565b602160f81b81529050612bbb600182018561055b565b7f2533432f746578742533452533432f737667253345227d00000000000000000081526017019a995050505050505050505056fea2646970667358221220f64400964cf21cb4940de76482b5ee6f22f9e46a781e948eea81a1999aa43eb964736f6c63430008150033", + "nonce": "0x11", "accessList": [] }, "additionalContracts": [], "isFixedGasLimit": false }, { - "hash": "0x452fdd213b9009d9b5fd8c8c1d6d24332387c1846d810739458c341bf83352a4", + "hash": "0xc89cbcc0f97185cd0540a6c8f868404a514b300b1a37ceb8293d506447c324d1", "transactionType": "CREATE", "contractName": null, - "contractAddress": "0x2279B7A0a67DB372996a5FaB50D91eAA73d2eBe6", + "contractAddress": "0x68B1D87F95878fE05B998F19b66F4baba5De1aed", "function": null, "arguments": null, "transaction": { @@ -68,30 +68,30 @@ "from": "0xf39fd6e51aad88f6f4ce6ab8827279cfffb92266", "gas": "0x42230", "value": "0x0", - "data": "0x608060405234801561001057600080fd5b506102cf806100206000396000f3fe608060405234801561001057600080fd5b506004361061004c5760003560e01c80630194db8e14610051578063072bdcc214610076578063a391c15b14610089578063b67d77c51461009c575b600080fd5b61006461005f366004610160565b6100af565b60405190815260200160405180910390f35b610064610084366004610160565b6100ef565b61006461009736600461021e565b610129565b6100646100aa36600461021e565b61013e565b600080805b83518110156100e8578381815181106100cf576100cf610240565b60200260200101518201915080806001019150506100b4565b5092915050565b60006001815b83518110156100e85783818151811061011057610110610240565b60200260200101518202915080806001019150506100f5565b60006101358284610256565b90505b92915050565b60006101358284610278565b634e487b7160e01b600052604160045260246000fd5b6000602080838503121561017357600080fd5b823567ffffffffffffffff8082111561018b57600080fd5b818501915085601f83011261019f57600080fd5b8135818111156101b1576101b161014a565b8060051b604051601f19603f830116810181811085821117156101d6576101d661014a565b6040529182528482019250838101850191888311156101f457600080fd5b938501935b82851015610212578435845293850193928501926101f9565b98975050505050505050565b6000806040838503121561023157600080fd5b50508035926020909101359150565b634e487b7160e01b600052603260045260246000fd5b60008261027357634e487b7160e01b600052601260045260246000fd5b500490565b8181038181111561013857634e487b7160e01b600052601160045260246000fdfea2646970667358221220fcdef23ba4219270ddb3ab764e22a87e229c05e6f1dfc4eeea983fa1a1dac91f64736f6c63430008110033", - "nonce": "0x8", + "data": "0x608060405234801561001057600080fd5b506102cf806100206000396000f3fe608060405234801561001057600080fd5b506004361061004c5760003560e01c80630194db8e14610051578063072bdcc214610076578063a391c15b14610089578063b67d77c51461009c575b600080fd5b61006461005f366004610160565b6100af565b60405190815260200160405180910390f35b610064610084366004610160565b6100ef565b61006461009736600461021e565b610129565b6100646100aa36600461021e565b61013e565b600080805b83518110156100e8578381815181106100cf576100cf610240565b60200260200101518201915080806001019150506100b4565b5092915050565b60006001815b83518110156100e85783818151811061011057610110610240565b60200260200101518202915080806001019150506100f5565b60006101358284610256565b90505b92915050565b60006101358284610278565b634e487b7160e01b600052604160045260246000fd5b6000602080838503121561017357600080fd5b823567ffffffffffffffff8082111561018b57600080fd5b818501915085601f83011261019f57600080fd5b8135818111156101b1576101b161014a565b8060051b604051601f19603f830116810181811085821117156101d6576101d661014a565b6040529182528482019250838101850191888311156101f457600080fd5b938501935b82851015610212578435845293850193928501926101f9565b98975050505050505050565b6000806040838503121561023157600080fd5b50508035926020909101359150565b634e487b7160e01b600052603260045260246000fd5b60008261027357634e487b7160e01b600052601260045260246000fd5b500490565b8181038181111561013857634e487b7160e01b600052601160045260246000fdfea2646970667358221220d31583983189259cb60ccec801ca1ed218051d27add344c207dbb437b07d39c864736f6c63430008150033", + "nonce": "0x12", "accessList": [] }, "additionalContracts": [], "isFixedGasLimit": false }, { - "hash": "0x9b47e081d7e785dceada6f5acd795f9ede015d878db8de4875ee1b6511bb6aa1", + "hash": "0x46d3d5e2dd4594e758e011681667f9bcbf03637daf06514f8d3fa572826701a1", "transactionType": "CREATE", "contractName": "Evmsheet", - "contractAddress": "0x8A791620dd6260079BF849Dc5567aDC3F2FdC318", + "contractAddress": "0x3Aa5ebB10DC797CAC828524e59A333d0A371443c", "function": null, "arguments": [ - "0xa513E6E4b8f2a923D98304ec87F64353C4D5C853", + "0x9A9f2CCfdE556A7E9Ff0848998Aa4a0CFD8863AE", "10000000000000000" ], "transaction": { "type": "0x02", "from": "0xf39fd6e51aad88f6f4ce6ab8827279cfffb92266", - "gas": "0x34bf99", + "gas": "0x359c55", "value": "0x0", - "data": "0x608060405234801561001057600080fd5b50604051612ed9380380612ed983398101604081905261002f916100b1565b61003833610061565b600280546001600160a01b0319166001600160a01b0393909316929092179091556001556100eb565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b600080604083850312156100c457600080fd5b82516001600160a01b03811681146100db57600080fd5b6020939093015192949293505050565b612ddf806100fa6000396000f3fe608060405260043610620000a95760003560e01c80638da5cb5b116200006c5780638da5cb5b146200016d578063ab2fa65a146200018d578063ae28505e14620001b4578063c56c4cf114620001d9578063f2fde38b14620001fb578063f52be2a2146200022057600080fd5b806303fb31e814620000ae5780631164c83d14620000d5578063145e414714620000ec5780635787cacb146200012e578063715018a61462000155575b600080fd5b348015620000bb57600080fd5b50620000d3620000cd36600462000778565b62000247565b005b620000d3620000e6366004620007e9565b62000273565b348015620000f957600080fd5b50620001116200010b36600462000864565b620004b2565b6040516001600160a01b0390911681526020015b60405180910390f35b3480156200013b57600080fd5b50620001466200054f565b60405162000125919062000891565b3480156200016257600080fd5b50620000d3620005b3565b3480156200017a57600080fd5b506000546001600160a01b031662000111565b3480156200019a57600080fd5b50620001a5620005cb565b604051620001259190620008e0565b348015620001c157600080fd5b5062000111620001d336600462000930565b620005f7565b348015620001e657600080fd5b5060025462000111906001600160a01b031681565b3480156200020857600080fd5b50620000d36200021a36600462000778565b62000622565b3480156200022d57600080fd5b506200023860015481565b60405190815260200162000125565b62000251620006a1565b600280546001600160a01b0319166001600160a01b0392909216919091179055565b60015434146200029d5760405163723a79e360e11b81523460048201526024015b60405180910390fd5b600060405180602001620002b1906200074d565b6020820181038252601f19601f8201166040525090506000828251602084016000f56002546040516356d3163d60e01b81526001600160a01b0391821660048201529192508216906356d3163d90602401600060405180830381600087803b1580156200031d57600080fd5b505af115801562000332573d6000803e3d6000fd5b505060405163c47f002760e01b81526001600160a01b038416925063c47f0027915062000366908a908a906004016200094a565b600060405180830381600087803b1580156200038157600080fd5b505af115801562000396573d6000803e3d6000fd5b5050604051635c26412360e11b81526001600160a01b038416925063b84c82469150620003ca90889088906004016200094a565b600060405180830381600087803b158015620003e557600080fd5b505af1158015620003fa573d6000803e3d6000fd5b505060405163f2fde38b60e01b81523260048201526001600160a01b038416925063f2fde38b9150602401600060405180830381600087803b1580156200044057600080fd5b505af115801562000455573d6000803e3d6000fd5b5050600380546001810182556000919091527fc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b0180546001600160a01b0319166001600160a01b0394909416939093179092555050505050505050565b600060ff60f81b838360405180602001620004cd906200074d565b6020820181038252601f19601f82011660405250805190602001206040516020016200053094939291906001600160f81b031994909416845260609290921b6bffffffffffffffffffffffff191660018401526015830152603582015260550190565b60408051601f1981840301815291905280516020909101209392505050565b60606003805480602002602001604051908101604052809291908181526020018280548015620005a957602002820191906000526020600020905b81546001600160a01b031681526001909101906020018083116200058a575b5050505050905090565b620005bd620006a1565b620005c96000620006fd565b565b606060405180602001620005df906200074d565b601f1982820381018352601f90910116604052919050565b600381815481106200060857600080fd5b6000918252602090912001546001600160a01b0316905081565b6200062c620006a1565b6001600160a01b038116620006935760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b606482015260840162000294565b6200069e81620006fd565b50565b6000546001600160a01b03163314620005c95760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015260640162000294565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b612430806200097a83390190565b80356001600160a01b03811681146200077357600080fd5b919050565b6000602082840312156200078b57600080fd5b62000796826200075b565b9392505050565b60008083601f840112620007b057600080fd5b50813567ffffffffffffffff811115620007c957600080fd5b602083019150836020828501011115620007e257600080fd5b9250929050565b6000806000806000606086880312156200080257600080fd5b853567ffffffffffffffff808211156200081b57600080fd5b6200082989838a016200079d565b909750955060208801359150808211156200084357600080fd5b5062000852888289016200079d565b96999598509660400135949350505050565b600080604083850312156200087857600080fd5b62000883836200075b565b946020939093013593505050565b6020808252825182820181905260009190848201906040850190845b81811015620008d45783516001600160a01b031683529284019291840191600101620008ad565b50909695505050505050565b600060208083528351808285015260005b818110156200090f57858101830151858201604001528201620008f1565b506000604082860101526040601f19601f8301168501019250505092915050565b6000602082840312156200094357600080fd5b5035919050565b60208152816020820152818360408301376000818301604090810191909152601f909201601f1916010191905056fe60806040523480156200001157600080fd5b50604051806040016040528060078152602001660536865657420360cc1b815250604051806040016040528060048152602001630534854360e41b81525062000069620000636200008f60201b60201c565b62000093565b600162000077838262000188565b50600262000086828262000188565b50505062000254565b3390565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b634e487b7160e01b600052604160045260246000fd5b600181811c908216806200010e57607f821691505b6020821081036200012f57634e487b7160e01b600052602260045260246000fd5b50919050565b601f8211156200018357600081815260208120601f850160051c810160208610156200015e5750805b601f850160051c820191505b818110156200017f578281556001016200016a565b5050505b505050565b81516001600160401b03811115620001a457620001a4620000e3565b620001bc81620001b58454620000f9565b8462000135565b602080601f831160018114620001f45760008415620001db5750858301515b600019600386901b1c1916600185901b1785556200017f565b600085815260208120601f198616915b82811015620002255788860151825594840194600190910190840162000204565b5085821015620002445787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b6121cc80620002646000396000f3fe608060405234801561001057600080fd5b50600436106102275760003560e01c8063715018a611610130578063b85d8b85116100b8578063cf0983981161007c578063cf09839814610512578063cfbe95d814610535578063df4ca20614610556578063e985e9c514610576578063f2fde38b146105a457600080fd5b8063b85d8b85146104a4578063b88d4fde146104ce578063b8c368ec146104e1578063c47f0027146104ec578063c87b56dd146104ff57600080fd5b806395d89b41116100ff57806395d89b4114610439578063a22cb46514610441578063b46ebb1214610454578063b6d658e114610467578063b84c82461461049157600080fd5b8063715018a6146103fa578063768d5029146104025780638ada6b0f146104155780638da5cb5b1461042857600080fd5b80631b06443c116101b35780634f6ccce7116101825780634f6ccce71461038157806356d3163d146103a15780636352211e146103b45780636a0abc74146103c757806370a08231146103e757600080fd5b80631b06443c14610335578063206848f61461034857806323b872dd1461035b57806342842e0e1461036e57600080fd5b8063081812fc116101fa578063081812fc146102a1578063095ea7b3146102e2578063172b9eed146102f757806318160ddd1461030a5780631941fd141461031357600080fd5b806301ffc9a71461022c57806302f3c4c91461025457806306fdde03146102745780630715a24a1461027c575b600080fd5b61023f61023a36600461176a565b6105b7565b60405190151581526020015b60405180910390f35b610267610262366004611861565b610609565b60405161024b9190611951565b610267610638565b6102936fffffffffffffffffffffffffffffffff81565b60405190815260200161024b565b6102ca6102af366004611964565b6005602052600090815260409020546001600160a01b031681565b6040516001600160a01b03909116815260200161024b565b6102f56102f036600461197d565b6106c6565b005b6102676103053660046119a9565b6107ad565b61029360075481565b610326610321366004611964565b610875565b60405161024b939291906119de565b6102ca610343366004611a0e565b61092a565b610326610356366004611964565b6109e3565b6102f5610369366004611a2b565b610ae1565b6102f561037c366004611a2b565b610ca8565b61029361038f366004611964565b60086020526000908152604090205481565b6102f56103af366004611a0e565b610da0565b6102ca6103c2366004611964565b610dca565b6103da6103d53660046119a9565b610e1c565b60405161024b9190611a6c565b6102936103f5366004611a0e565b610e60565b6102f5610ec3565b6102f5610410366004611af9565b610ed7565b6009546102ca906001600160a01b031681565b6000546001600160a01b03166102ca565b610267611035565b6102f561044f366004611b63565b611042565b610267610462366004611964565b6110ae565b61047a610475366004611964565b611258565b60408051921515835260208301919091520161024b565b6102f561049f366004611ba1565b611275565b6104b56104b2366004611964565b90565b6040516001600160e01b0319909116815260200161024b565b6102f56104dc366004611be3565b6112c6565b6102ca600160801b81565b6102f56104fa366004611ba1565b6113ae565b61026761050d366004611964565b6113ff565b61023f610520366004611a0e565b600160801b6001600160a01b03919091161090565b61023f610543366004611861565b516001600160a01b0316600160801b1490565b610569610564366004611964565b6114c9565b60405161024b9190611c16565b61023f610584366004611c4d565b600660209081526000928352604080842090915290825290205460ff1681565b6102f56105b2366004611a0e565b611526565b60006301ffc9a760e01b6001600160e01b0319831614806105e857506380ac58cd60e01b6001600160e01b03198316145b806106035750635b5e139f60e01b6001600160e01b03198316145b92915050565b6060816020015160405160200161062291815260200190565b6040516020818303038152906040529050919050565b6001805461064590611c7b565b80601f016020809104026020016040519081016040528092919081815260200182805461067190611c7b565b80156106be5780601f10610693576101008083540402835291602001916106be565b820191906000526020600020905b8154815290600101906020018083116106a157829003601f168201915b505050505081565b6000818152600360205260409020546001600160a01b03163381148061070f57506001600160a01b038116600090815260066020908152604080832033845290915290205460ff165b6107515760405162461bcd60e51b815260206004820152600e60248201526d1393d517d055551213d49256915160921b60448201526064015b60405180910390fd5b60008281526005602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b606060006107ba83610e1c565b9050606060005b825181101561086d576000806107ef8584815181106107e2576107e2611cb5565b6020026020010151611258565b9150915081156108335783610803826110ae565b61080c90611ccb565b60405160200161081d929190611cef565b6040516020818303038152906040529350610858565b6040516108469085908390602001611cef565b60405160208183030381529060405293505b5050808061086590611d27565b9150506107c1565b509392505050565b600a602052600090815260409020805460018201546002830180546001600160a01b039093169391926108a790611c7b565b80601f01602080910402602001604051908101604052809291908181526020018280546108d390611c7b565b80156109205780601f106108f557610100808354040283529160200191610920565b820191906000526020600020905b81548152906001019060200180831161090357829003601f168201915b5050505050905083565b6000600160801b6001600160a01b03831610156109da576000610955836001600160a01b03166110ae565b604051632d737e4960e21b8152909150735fc8d32690cc91d4c39d9d3abcbd16989f8757079063b5cdf92490610992908490600090600401611d40565b602060405180830381865af41580156109af573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906109d39190611d62565b9392505050565b5090565b919050565b60008181526003602052604081205481906060906001600160a01b0316610a1057600160801b9250610a2b565b6000848152600a60205260409020546001600160a01b031692505b6000848152600a60205260409020600181015460029091018054859291908190610a5490611c7b565b80601f0160208091040260200160405190810160405280929190818152602001828054610a8090611c7b565b8015610acd5780601f10610aa257610100808354040283529160200191610acd565b820191906000526020600020905b815481529060010190602001808311610ab057829003601f168201915b505050505090509250925092509193909250565b6000818152600360205260409020546001600160a01b03848116911614610b375760405162461bcd60e51b815260206004820152600a60248201526957524f4e475f46524f4d60b01b6044820152606401610748565b6001600160a01b038216610b815760405162461bcd60e51b81526020600482015260116024820152701253959053125117d49150d25412515395607a1b6044820152606401610748565b336001600160a01b0384161480610bbb57506001600160a01b038316600090815260066020908152604080832033845290915290205460ff165b80610bdc57506000818152600560205260409020546001600160a01b031633145b610c195760405162461bcd60e51b815260206004820152600e60248201526d1393d517d055551213d49256915160921b6044820152606401610748565b6001600160a01b0380841660008181526004602090815260408083208054600019019055938616808352848320805460010190558583526003825284832080546001600160a01b03199081168317909155600590925284832080549092169091559251849392917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b610cb3838383610ae1565b6001600160a01b0382163b1580610d5c5750604051630a85bd0160e11b8082523360048301526001600160a01b03858116602484015260448301849052608060648401526000608484015290919084169063150b7a029060a4016020604051808303816000875af1158015610d2c573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610d509190611d7b565b6001600160e01b031916145b610d9b5760405162461bcd60e51b815260206004820152601060248201526f155394d0519157d49150d2541251539560821b6044820152606401610748565b505050565b610da861159f565b600980546001600160a01b0319166001600160a01b0392909216919091179055565b6000818152600360205260409020546001600160a01b0316806109de5760405162461bcd60e51b815260206004820152600a6024820152691393d517d3525395115160b21b6044820152606401610748565b60608082516040519150602081048252602082016020850160005b83811015610e4f578181015183820152602001610e37565b505050810160200160405292915050565b60006001600160a01b038216610ea75760405162461bcd60e51b815260206004820152600c60248201526b5a45524f5f4144445245535360a01b6044820152606401610748565b506001600160a01b031660009081526004602052604090205490565b610ecb61159f565b610ed560006115f9565b565b6000858152600360205260409020546001600160a01b0316610f2f57610efd3286611649565b60078054600090815260086020526040812087905581546001929190610f24908490611d98565b90915550610f889050565b6000858152600360205260409020546001600160a01b03163214610f8857600085815260036020526040908190205490516324f3f02560e21b81526001600160a01b039091166004820152326024820152604401610748565b6040518060600160405280856001600160a01b0316815260200184815260200183838080601f0160208091040260200160405190810160405280939291908181526020018383808284376000920182905250939094525050878152600a6020908152604091829020845181546001600160a01b0319166001600160a01b0390911617815590840151600182015590830151909150600282019061102b9082611df9565b5050505050505050565b6002805461064590611c7b565b3360008181526006602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b6000818152600a6020908152604080832081516060818101845282546001600160a01b0316825260018301549482019490945260028201805494959491938401916110f890611c7b565b80601f016020809104026020016040519081016040528092919081815260200182805461112490611c7b565b80156111715780601f1061114657610100808354040283529160200191611171565b820191906000526020600020905b81548152906001019060200180831161115457829003601f168201915b505050505081525050905061119381516001600160a01b0316600160801b1490565b156111a1576109d381610609565b60006111b0826000015161092a565b905060006111bf836020015190565b905060006111d084604001516107ad565b90506000836001600160a01b031683836040516020016111f1929190611eb9565b60408051601f198184030181529082905261120b91611eea565b600060405180830381855afa9150503d8060008114611246576040519150601f19603f3d011682016040523d82523d6000602084013e61124b565b606091505b5098975050505050505050565b600080611266600284611f06565b60019081149493901c92915050565b61127d61159f565b7f8dca0271872d00b3de3abafca544c52fcd7d512dd852c9894fa2c118ac759a93600283836040516112b193929190611fce565b60405180910390a16002610d9b828483611ffe565b6112d1858585610ae1565b6001600160a01b0384163b15806113685750604051630a85bd0160e11b808252906001600160a01b0386169063150b7a02906113199033908a908990899089906004016120be565b6020604051808303816000875af1158015611338573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061135c9190611d7b565b6001600160e01b031916145b6113a75760405162461bcd60e51b815260206004820152601060248201526f155394d0519157d49150d2541251539560821b6044820152606401610748565b5050505050565b6113b661159f565b7fb65b7b5ea384affd30f77f842e057d29dd1b13f133adf69a724a8105b164ab75600183836040516113ea93929190611fce565b60405180910390a16001610d9b828483611ffe565b6000818152600360205260409020546060906001600160a01b03168061143b57604051630243d1a960e21b815260048101849052602401610748565b6000611446846110ae565b6009546040516328de0f2f60e01b81529192506001600160a01b0316906328de0f2f9061147c90879085906001906004016120fd565b600060405180830381865afa158015611499573d6000803e3d6000fd5b505050506040513d6000823e601f3d908101601f191682016040526114c19190810190612128565b949350505050565b604080516060808201835260008083526020830181905292820152906114ee836110ae565b6040805160608101825285815260009586526003602090815295829020546001600160a01b0316958101959095528401525090919050565b61152e61159f565b6001600160a01b0381166115935760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610748565b61159c816115f9565b50565b6000546001600160a01b03163314610ed55760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610748565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b6001600160a01b0382166116935760405162461bcd60e51b81526020600482015260116024820152701253959053125117d49150d25412515395607a1b6044820152606401610748565b6000818152600360205260409020546001600160a01b0316156116e95760405162461bcd60e51b815260206004820152600e60248201526d1053149150511657d3525395115160921b6044820152606401610748565b6001600160a01b038216600081815260046020908152604080832080546001019055848352600390915280822080546001600160a01b0319168417905551839291907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b6001600160e01b03198116811461159c57600080fd5b60006020828403121561177c57600080fd5b81356109d381611754565b634e487b7160e01b600052604160045260246000fd5b604051601f8201601f1916810167ffffffffffffffff811182821017156117c6576117c6611787565b604052919050565b6001600160a01b038116811461159c57600080fd5b600067ffffffffffffffff8211156117fd576117fd611787565b50601f01601f191660200190565b600082601f83011261181c57600080fd5b813561182f61182a826117e3565b61179d565b81815284602083860101111561184457600080fd5b816020850160208301376000918101602001919091529392505050565b60006020828403121561187357600080fd5b813567ffffffffffffffff8082111561188b57600080fd5b908301906060828603121561189f57600080fd5b6040516060810181811083821117156118ba576118ba611787565b60405282356118c8816117ce565b8152602083810135908201526040830135828111156118e657600080fd5b6118f28782860161180b565b60408301525095945050505050565b60005b8381101561191c578181015183820152602001611904565b50506000910152565b6000815180845261193d816020860160208601611901565b601f01601f19169290920160200192915050565b6020815260006109d36020830184611925565b60006020828403121561197657600080fd5b5035919050565b6000806040838503121561199057600080fd5b823561199b816117ce565b946020939093013593505050565b6000602082840312156119bb57600080fd5b813567ffffffffffffffff8111156119d257600080fd5b6114c18482850161180b565b60018060a01b0384168152826020820152606060408201526000611a056060830184611925565b95945050505050565b600060208284031215611a2057600080fd5b81356109d3816117ce565b600080600060608486031215611a4057600080fd5b8335611a4b816117ce565b92506020840135611a5b816117ce565b929592945050506040919091013590565b6020808252825182820181905260009190848201906040850190845b81811015611aa457835183529284019291840191600101611a88565b50909695505050505050565b60008083601f840112611ac257600080fd5b50813567ffffffffffffffff811115611ada57600080fd5b602083019150836020828501011115611af257600080fd5b9250929050565b600080600080600060808688031215611b1157600080fd5b853594506020860135611b23816117ce565b935060408601359250606086013567ffffffffffffffff811115611b4657600080fd5b611b5288828901611ab0565b969995985093965092949392505050565b60008060408385031215611b7657600080fd5b8235611b81816117ce565b915060208301358015158114611b9657600080fd5b809150509250929050565b60008060208385031215611bb457600080fd5b823567ffffffffffffffff811115611bcb57600080fd5b611bd785828601611ab0565b90969095509350505050565b600080600080600060808688031215611bfb57600080fd5b8535611c06816117ce565b94506020860135611b23816117ce565b602081528151602082015260018060a01b036020830151166040820152600060408301516060808401526114c16080840182611925565b60008060408385031215611c6057600080fd5b8235611c6b816117ce565b91506020830135611b96816117ce565b600181811c90821680611c8f57607f821691505b602082108103611caf57634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052603260045260246000fd5b80516020808301519190811015611caf5760001960209190910360031b1b16919050565b60008351611d01818460208801611901565b9190910191825250602001919050565b634e487b7160e01b600052601160045260246000fd5b600060018201611d3957611d39611d11565b5060010190565b604081526000611d536040830185611925565b90508260208301529392505050565b600060208284031215611d7457600080fd5b5051919050565b600060208284031215611d8d57600080fd5b81516109d381611754565b8082018082111561060357610603611d11565b601f821115610d9b57600081815260208120601f850160051c81016020861015611dd25750805b601f850160051c820191505b81811015611df157828155600101611dde565b505050505050565b815167ffffffffffffffff811115611e1357611e13611787565b611e2781611e218454611c7b565b84611dab565b602080601f831160018114611e5c5760008415611e445750858301515b600019600386901b1c1916600185901b178555611df1565b600085815260208120601f198616915b82811015611e8b57888601518255948401946001909101908401611e6c565b5085821015611ea95787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b6001600160e01b0319831681528151600090611edc816004850160208701611901565b919091016004019392505050565b60008251611efc818460208701611901565b9190910192915050565b600082611f2357634e487b7160e01b600052601260045260246000fd5b500690565b60008154611f3581611c7b565b808552602060018381168015611f525760018114611f6c57611f9a565b60ff1985168884015283151560051b880183019550611f9a565b866000528260002060005b85811015611f925781548a8201860152908301908401611f77565b890184019650505b505050505092915050565b81835281816020850137506000828201602090810191909152601f909101601f19169091010190565b604081526000611fe16040830186611f28565b8281036020840152611ff4818587611fa5565b9695505050505050565b67ffffffffffffffff83111561201657612016611787565b61202a836120248354611c7b565b83611dab565b6000601f84116001811461205e57600085156120465750838201355b600019600387901b1c1916600186901b1783556113a7565b600083815260209020601f19861690835b8281101561208f578685013582556020948501946001909201910161206f565b50868210156120ac5760001960f88860031b161c19848701351681555b505060018560011b0183555050505050565b6001600160a01b03868116825285166020820152604081018490526080606082018190526000906120f29083018486611fa5565b979650505050505050565b8381526060602082015260006121166060830185611925565b8281036040840152611ff48185611f28565b60006020828403121561213a57600080fd5b815167ffffffffffffffff81111561215157600080fd5b8201601f8101841361216257600080fd5b805161217061182a826117e3565b81815285602083850101111561218557600080fd5b611a0582602083016020860161190156fea26469706673582212203fc548aa4f22e6f4c01757ba3f2e0383630418b3d17601758718ab19a4d9918d64736f6c63430008110033a26469706673582212207932e8c793f9a96d9606a8907a6671f54c0fb1ed5a763048e13b429274e7706c64736f6c63430008110033000000000000000000000000a513e6e4b8f2a923d98304ec87f64353c4d5c853000000000000000000000000000000000000000000000000002386f26fc10000", - "nonce": "0x9", + "data": "0x608060405234801561001057600080fd5b50604051612fa3380380612fa383398101604081905261002f916100b1565b61003833610061565b600280546001600160a01b0319166001600160a01b0393909316929092179091556001556100eb565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b600080604083850312156100c457600080fd5b82516001600160a01b03811681146100db57600080fd5b6020939093015192949293505050565b612ea9806100fa6000396000f3fe608060405260043610620000b95760003560e01c80638da5cb5b116200006c5780638da5cb5b146200019d578063ab2fa65a14620001bd578063ae28505e14620001e4578063c56c4cf11462000209578063f2fde38b146200022b578063f52be2a2146200025057600080fd5b806303fb31e814620000c65780631164c83d14620000ed578063145e414714620001045780633ccfd60b14620001465780635787cacb146200015e578063715018a6146200018557600080fd5b36620000c157005b600080fd5b348015620000d357600080fd5b50620000eb620000e536600462000842565b62000277565b005b620000eb620000fe366004620008b3565b620002a3565b3480156200011157600080fd5b5062000129620001233660046200092e565b620004e2565b6040516001600160a01b0390911681526020015b60405180910390f35b3480156200015357600080fd5b50620000eb6200057f565b3480156200016b57600080fd5b50620001766200061c565b6040516200013d91906200095b565b3480156200019257600080fd5b50620000eb62000680565b348015620001aa57600080fd5b506000546001600160a01b031662000129565b348015620001ca57600080fd5b50620001d562000698565b6040516200013d9190620009aa565b348015620001f157600080fd5b506200012962000203366004620009fa565b620006c4565b3480156200021657600080fd5b5060025462000129906001600160a01b031681565b3480156200023857600080fd5b50620000eb6200024a36600462000842565b620006ef565b3480156200025d57600080fd5b506200026860015481565b6040519081526020016200013d565b620002816200076b565b600280546001600160a01b0319166001600160a01b0392909216919091179055565b6001543414620002cd5760405163723a79e360e11b81523460048201526024015b60405180910390fd5b600060405180602001620002e19062000817565b6020820181038252601f19601f8201166040525090506000828251602084016000f56002546040516356d3163d60e01b81526001600160a01b0391821660048201529192508216906356d3163d90602401600060405180830381600087803b1580156200034d57600080fd5b505af115801562000362573d6000803e3d6000fd5b505060405163c47f002760e01b81526001600160a01b038416925063c47f0027915062000396908a908a9060040162000a14565b600060405180830381600087803b158015620003b157600080fd5b505af1158015620003c6573d6000803e3d6000fd5b5050604051635c26412360e11b81526001600160a01b038416925063b84c82469150620003fa908890889060040162000a14565b600060405180830381600087803b1580156200041557600080fd5b505af11580156200042a573d6000803e3d6000fd5b505060405163f2fde38b60e01b81523260048201526001600160a01b038416925063f2fde38b9150602401600060405180830381600087803b1580156200047057600080fd5b505af115801562000485573d6000803e3d6000fd5b5050600380546001810182556000919091527fc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b0180546001600160a01b0319166001600160a01b0394909416939093179092555050505050505050565b600060ff60f81b838360405180602001620004fd9062000817565b6020820181038252601f19601f82011660405250805190602001206040516020016200056094939291906001600160f81b031994909416845260609290921b6bffffffffffffffffffffffff191660018401526015830152603582015260550190565b60408051601f1981840301815291905280516020909101209392505050565b620005896200076b565b604051600090339047908381818185875af1925050503d8060008114620005cd576040519150601f19603f3d011682016040523d82523d6000602084013e620005d2565b606091505b5050905080620006195760405162461bcd60e51b815260206004820152601160248201527015da5d1a191c985dd85b0819985a5b1959607a1b6044820152606401620002c4565b50565b606060038054806020026020016040519081016040528092919081815260200182805480156200067657602002820191906000526020600020905b81546001600160a01b0316815260019091019060200180831162000657575b5050505050905090565b6200068a6200076b565b620006966000620007c7565b565b606060405180602001620006ac9062000817565b601f1982820381018352601f90910116604052919050565b60038181548110620006d557600080fd5b6000918252602090912001546001600160a01b0316905081565b620006f96200076b565b6001600160a01b038116620007605760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401620002c4565b6200061981620007c7565b6000546001600160a01b03163314620006965760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401620002c4565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b6124308062000a4483390190565b80356001600160a01b03811681146200083d57600080fd5b919050565b6000602082840312156200085557600080fd5b620008608262000825565b9392505050565b60008083601f8401126200087a57600080fd5b50813567ffffffffffffffff8111156200089357600080fd5b602083019150836020828501011115620008ac57600080fd5b9250929050565b600080600080600060608688031215620008cc57600080fd5b853567ffffffffffffffff80821115620008e557600080fd5b620008f389838a0162000867565b909750955060208801359150808211156200090d57600080fd5b506200091c8882890162000867565b96999598509660400135949350505050565b600080604083850312156200094257600080fd5b6200094d8362000825565b946020939093013593505050565b6020808252825182820181905260009190848201906040850190845b818110156200099e5783516001600160a01b03168352928401929184019160010162000977565b50909695505050505050565b600060208083528351808285015260005b81811015620009d957858101830151858201604001528201620009bb565b506000604082860101526040601f19601f8301168501019250505092915050565b60006020828403121562000a0d57600080fd5b5035919050565b60208152816020820152818360408301376000818301604090810191909152601f909201601f1916010191905056fe60806040523480156200001157600080fd5b50604051806040016040528060078152602001660536865657420360cc1b815250604051806040016040528060048152602001630534854360e41b81525062000069620000636200008f60201b60201c565b62000093565b600162000077838262000188565b50600262000086828262000188565b50505062000254565b3390565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b634e487b7160e01b600052604160045260246000fd5b600181811c908216806200010e57607f821691505b6020821081036200012f57634e487b7160e01b600052602260045260246000fd5b50919050565b601f8211156200018357600081815260208120601f850160051c810160208610156200015e5750805b601f850160051c820191505b818110156200017f578281556001016200016a565b5050505b505050565b81516001600160401b03811115620001a457620001a4620000e3565b620001bc81620001b58454620000f9565b8462000135565b602080601f831160018114620001f45760008415620001db5750858301515b600019600386901b1c1916600185901b1785556200017f565b600085815260208120601f198616915b82811015620002255788860151825594840194600190910190840162000204565b5085821015620002445787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b6121cc80620002646000396000f3fe608060405234801561001057600080fd5b50600436106102275760003560e01c8063715018a611610130578063b85d8b85116100b8578063cf0983981161007c578063cf09839814610512578063cfbe95d814610535578063df4ca20614610556578063e985e9c514610576578063f2fde38b146105a457600080fd5b8063b85d8b85146104a4578063b88d4fde146104ce578063b8c368ec146104e1578063c47f0027146104ec578063c87b56dd146104ff57600080fd5b806395d89b41116100ff57806395d89b4114610439578063a22cb46514610441578063b46ebb1214610454578063b6d658e114610467578063b84c82461461049157600080fd5b8063715018a6146103fa578063768d5029146104025780638ada6b0f146104155780638da5cb5b1461042857600080fd5b80631b06443c116101b35780634f6ccce7116101825780634f6ccce71461038157806356d3163d146103a15780636352211e146103b45780636a0abc74146103c757806370a08231146103e757600080fd5b80631b06443c14610335578063206848f61461034857806323b872dd1461035b57806342842e0e1461036e57600080fd5b8063081812fc116101fa578063081812fc146102a1578063095ea7b3146102e2578063172b9eed146102f757806318160ddd1461030a5780631941fd141461031357600080fd5b806301ffc9a71461022c57806302f3c4c91461025457806306fdde03146102745780630715a24a1461027c575b600080fd5b61023f61023a36600461176a565b6105b7565b60405190151581526020015b60405180910390f35b610267610262366004611861565b610609565b60405161024b9190611951565b610267610638565b6102936fffffffffffffffffffffffffffffffff81565b60405190815260200161024b565b6102ca6102af366004611964565b6005602052600090815260409020546001600160a01b031681565b6040516001600160a01b03909116815260200161024b565b6102f56102f036600461197d565b6106c6565b005b6102676103053660046119a9565b6107ad565b61029360075481565b610326610321366004611964565b610875565b60405161024b939291906119de565b6102ca610343366004611a0e565b61092a565b610326610356366004611964565b6109e3565b6102f5610369366004611a2b565b610ae1565b6102f561037c366004611a2b565b610ca8565b61029361038f366004611964565b60086020526000908152604090205481565b6102f56103af366004611a0e565b610da0565b6102ca6103c2366004611964565b610dca565b6103da6103d53660046119a9565b610e1c565b60405161024b9190611a6c565b6102936103f5366004611a0e565b610e60565b6102f5610ec3565b6102f5610410366004611af9565b610ed7565b6009546102ca906001600160a01b031681565b6000546001600160a01b03166102ca565b610267611035565b6102f561044f366004611b63565b611042565b610267610462366004611964565b6110ae565b61047a610475366004611964565b611258565b60408051921515835260208301919091520161024b565b6102f561049f366004611ba1565b611275565b6104b56104b2366004611964565b90565b6040516001600160e01b0319909116815260200161024b565b6102f56104dc366004611be3565b6112c6565b6102ca600160801b81565b6102f56104fa366004611ba1565b6113ae565b61026761050d366004611964565b6113ff565b61023f610520366004611a0e565b600160801b6001600160a01b03919091161090565b61023f610543366004611861565b516001600160a01b0316600160801b1490565b610569610564366004611964565b6114c9565b60405161024b9190611c16565b61023f610584366004611c4d565b600660209081526000928352604080842090915290825290205460ff1681565b6102f56105b2366004611a0e565b611526565b60006301ffc9a760e01b6001600160e01b0319831614806105e857506380ac58cd60e01b6001600160e01b03198316145b806106035750635b5e139f60e01b6001600160e01b03198316145b92915050565b6060816020015160405160200161062291815260200190565b6040516020818303038152906040529050919050565b6001805461064590611c7b565b80601f016020809104026020016040519081016040528092919081815260200182805461067190611c7b565b80156106be5780601f10610693576101008083540402835291602001916106be565b820191906000526020600020905b8154815290600101906020018083116106a157829003601f168201915b505050505081565b6000818152600360205260409020546001600160a01b03163381148061070f57506001600160a01b038116600090815260066020908152604080832033845290915290205460ff165b6107515760405162461bcd60e51b815260206004820152600e60248201526d1393d517d055551213d49256915160921b60448201526064015b60405180910390fd5b60008281526005602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b606060006107ba83610e1c565b9050606060005b825181101561086d576000806107ef8584815181106107e2576107e2611cb5565b6020026020010151611258565b9150915081156108335783610803826110ae565b61080c90611ccb565b60405160200161081d929190611cef565b6040516020818303038152906040529350610858565b6040516108469085908390602001611cef565b60405160208183030381529060405293505b5050808061086590611d27565b9150506107c1565b509392505050565b600a602052600090815260409020805460018201546002830180546001600160a01b039093169391926108a790611c7b565b80601f01602080910402602001604051908101604052809291908181526020018280546108d390611c7b565b80156109205780601f106108f557610100808354040283529160200191610920565b820191906000526020600020905b81548152906001019060200180831161090357829003601f168201915b5050505050905083565b6000600160801b6001600160a01b03831610156109da576000610955836001600160a01b03166110ae565b604051632d737e4960e21b8152909150730b306bf915c4d645ff596e518faf3f9669b970169063b5cdf92490610992908490600090600401611d40565b602060405180830381865af41580156109af573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906109d39190611d62565b9392505050565b5090565b919050565b60008181526003602052604081205481906060906001600160a01b0316610a1057600160801b9250610a2b565b6000848152600a60205260409020546001600160a01b031692505b6000848152600a60205260409020600181015460029091018054859291908190610a5490611c7b565b80601f0160208091040260200160405190810160405280929190818152602001828054610a8090611c7b565b8015610acd5780601f10610aa257610100808354040283529160200191610acd565b820191906000526020600020905b815481529060010190602001808311610ab057829003601f168201915b505050505090509250925092509193909250565b6000818152600360205260409020546001600160a01b03848116911614610b375760405162461bcd60e51b815260206004820152600a60248201526957524f4e475f46524f4d60b01b6044820152606401610748565b6001600160a01b038216610b815760405162461bcd60e51b81526020600482015260116024820152701253959053125117d49150d25412515395607a1b6044820152606401610748565b336001600160a01b0384161480610bbb57506001600160a01b038316600090815260066020908152604080832033845290915290205460ff165b80610bdc57506000818152600560205260409020546001600160a01b031633145b610c195760405162461bcd60e51b815260206004820152600e60248201526d1393d517d055551213d49256915160921b6044820152606401610748565b6001600160a01b0380841660008181526004602090815260408083208054600019019055938616808352848320805460010190558583526003825284832080546001600160a01b03199081168317909155600590925284832080549092169091559251849392917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b610cb3838383610ae1565b6001600160a01b0382163b1580610d5c5750604051630a85bd0160e11b8082523360048301526001600160a01b03858116602484015260448301849052608060648401526000608484015290919084169063150b7a029060a4016020604051808303816000875af1158015610d2c573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610d509190611d7b565b6001600160e01b031916145b610d9b5760405162461bcd60e51b815260206004820152601060248201526f155394d0519157d49150d2541251539560821b6044820152606401610748565b505050565b610da861159f565b600980546001600160a01b0319166001600160a01b0392909216919091179055565b6000818152600360205260409020546001600160a01b0316806109de5760405162461bcd60e51b815260206004820152600a6024820152691393d517d3525395115160b21b6044820152606401610748565b60608082516040519150602081048252602082016020850160005b83811015610e4f578181015183820152602001610e37565b505050810160200160405292915050565b60006001600160a01b038216610ea75760405162461bcd60e51b815260206004820152600c60248201526b5a45524f5f4144445245535360a01b6044820152606401610748565b506001600160a01b031660009081526004602052604090205490565b610ecb61159f565b610ed560006115f9565b565b6000858152600360205260409020546001600160a01b0316610f2f57610efd3286611649565b60078054600090815260086020526040812087905581546001929190610f24908490611d98565b90915550610f889050565b6000858152600360205260409020546001600160a01b03163214610f8857600085815260036020526040908190205490516324f3f02560e21b81526001600160a01b039091166004820152326024820152604401610748565b6040518060600160405280856001600160a01b0316815260200184815260200183838080601f0160208091040260200160405190810160405280939291908181526020018383808284376000920182905250939094525050878152600a6020908152604091829020845181546001600160a01b0319166001600160a01b0390911617815590840151600182015590830151909150600282019061102b9082611df9565b5050505050505050565b6002805461064590611c7b565b3360008181526006602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b6000818152600a6020908152604080832081516060818101845282546001600160a01b0316825260018301549482019490945260028201805494959491938401916110f890611c7b565b80601f016020809104026020016040519081016040528092919081815260200182805461112490611c7b565b80156111715780601f1061114657610100808354040283529160200191611171565b820191906000526020600020905b81548152906001019060200180831161115457829003601f168201915b505050505081525050905061119381516001600160a01b0316600160801b1490565b156111a1576109d381610609565b60006111b0826000015161092a565b905060006111bf836020015190565b905060006111d084604001516107ad565b90506000836001600160a01b031683836040516020016111f1929190611eb9565b60408051601f198184030181529082905261120b91611eea565b600060405180830381855afa9150503d8060008114611246576040519150601f19603f3d011682016040523d82523d6000602084013e61124b565b606091505b5098975050505050505050565b600080611266600284611f06565b60019081149493901c92915050565b61127d61159f565b7f8dca0271872d00b3de3abafca544c52fcd7d512dd852c9894fa2c118ac759a93600283836040516112b193929190611fce565b60405180910390a16002610d9b828483611ffe565b6112d1858585610ae1565b6001600160a01b0384163b15806113685750604051630a85bd0160e11b808252906001600160a01b0386169063150b7a02906113199033908a908990899089906004016120be565b6020604051808303816000875af1158015611338573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061135c9190611d7b565b6001600160e01b031916145b6113a75760405162461bcd60e51b815260206004820152601060248201526f155394d0519157d49150d2541251539560821b6044820152606401610748565b5050505050565b6113b661159f565b7fb65b7b5ea384affd30f77f842e057d29dd1b13f133adf69a724a8105b164ab75600183836040516113ea93929190611fce565b60405180910390a16001610d9b828483611ffe565b6000818152600360205260409020546060906001600160a01b03168061143b57604051630243d1a960e21b815260048101849052602401610748565b6000611446846110ae565b6009546040516328de0f2f60e01b81529192506001600160a01b0316906328de0f2f9061147c90879085906001906004016120fd565b600060405180830381865afa158015611499573d6000803e3d6000fd5b505050506040513d6000823e601f3d908101601f191682016040526114c19190810190612128565b949350505050565b604080516060808201835260008083526020830181905292820152906114ee836110ae565b6040805160608101825285815260009586526003602090815295829020546001600160a01b0316958101959095528401525090919050565b61152e61159f565b6001600160a01b0381166115935760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610748565b61159c816115f9565b50565b6000546001600160a01b03163314610ed55760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610748565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b6001600160a01b0382166116935760405162461bcd60e51b81526020600482015260116024820152701253959053125117d49150d25412515395607a1b6044820152606401610748565b6000818152600360205260409020546001600160a01b0316156116e95760405162461bcd60e51b815260206004820152600e60248201526d1053149150511657d3525395115160921b6044820152606401610748565b6001600160a01b038216600081815260046020908152604080832080546001019055848352600390915280822080546001600160a01b0319168417905551839291907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b6001600160e01b03198116811461159c57600080fd5b60006020828403121561177c57600080fd5b81356109d381611754565b634e487b7160e01b600052604160045260246000fd5b604051601f8201601f1916810167ffffffffffffffff811182821017156117c6576117c6611787565b604052919050565b6001600160a01b038116811461159c57600080fd5b600067ffffffffffffffff8211156117fd576117fd611787565b50601f01601f191660200190565b600082601f83011261181c57600080fd5b813561182f61182a826117e3565b61179d565b81815284602083860101111561184457600080fd5b816020850160208301376000918101602001919091529392505050565b60006020828403121561187357600080fd5b813567ffffffffffffffff8082111561188b57600080fd5b908301906060828603121561189f57600080fd5b6040516060810181811083821117156118ba576118ba611787565b60405282356118c8816117ce565b8152602083810135908201526040830135828111156118e657600080fd5b6118f28782860161180b565b60408301525095945050505050565b60005b8381101561191c578181015183820152602001611904565b50506000910152565b6000815180845261193d816020860160208601611901565b601f01601f19169290920160200192915050565b6020815260006109d36020830184611925565b60006020828403121561197657600080fd5b5035919050565b6000806040838503121561199057600080fd5b823561199b816117ce565b946020939093013593505050565b6000602082840312156119bb57600080fd5b813567ffffffffffffffff8111156119d257600080fd5b6114c18482850161180b565b60018060a01b0384168152826020820152606060408201526000611a056060830184611925565b95945050505050565b600060208284031215611a2057600080fd5b81356109d3816117ce565b600080600060608486031215611a4057600080fd5b8335611a4b816117ce565b92506020840135611a5b816117ce565b929592945050506040919091013590565b6020808252825182820181905260009190848201906040850190845b81811015611aa457835183529284019291840191600101611a88565b50909695505050505050565b60008083601f840112611ac257600080fd5b50813567ffffffffffffffff811115611ada57600080fd5b602083019150836020828501011115611af257600080fd5b9250929050565b600080600080600060808688031215611b1157600080fd5b853594506020860135611b23816117ce565b935060408601359250606086013567ffffffffffffffff811115611b4657600080fd5b611b5288828901611ab0565b969995985093965092949392505050565b60008060408385031215611b7657600080fd5b8235611b81816117ce565b915060208301358015158114611b9657600080fd5b809150509250929050565b60008060208385031215611bb457600080fd5b823567ffffffffffffffff811115611bcb57600080fd5b611bd785828601611ab0565b90969095509350505050565b600080600080600060808688031215611bfb57600080fd5b8535611c06816117ce565b94506020860135611b23816117ce565b602081528151602082015260018060a01b036020830151166040820152600060408301516060808401526114c16080840182611925565b60008060408385031215611c6057600080fd5b8235611c6b816117ce565b91506020830135611b96816117ce565b600181811c90821680611c8f57607f821691505b602082108103611caf57634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052603260045260246000fd5b80516020808301519190811015611caf5760001960209190910360031b1b16919050565b60008351611d01818460208801611901565b9190910191825250602001919050565b634e487b7160e01b600052601160045260246000fd5b600060018201611d3957611d39611d11565b5060010190565b604081526000611d536040830185611925565b90508260208301529392505050565b600060208284031215611d7457600080fd5b5051919050565b600060208284031215611d8d57600080fd5b81516109d381611754565b8082018082111561060357610603611d11565b601f821115610d9b57600081815260208120601f850160051c81016020861015611dd25750805b601f850160051c820191505b81811015611df157828155600101611dde565b505050505050565b815167ffffffffffffffff811115611e1357611e13611787565b611e2781611e218454611c7b565b84611dab565b602080601f831160018114611e5c5760008415611e445750858301515b600019600386901b1c1916600185901b178555611df1565b600085815260208120601f198616915b82811015611e8b57888601518255948401946001909101908401611e6c565b5085821015611ea95787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b6001600160e01b0319831681528151600090611edc816004850160208701611901565b919091016004019392505050565b60008251611efc818460208701611901565b9190910192915050565b600082611f2357634e487b7160e01b600052601260045260246000fd5b500690565b60008154611f3581611c7b565b808552602060018381168015611f525760018114611f6c57611f9a565b60ff1985168884015283151560051b880183019550611f9a565b866000528260002060005b85811015611f925781548a8201860152908301908401611f77565b890184019650505b505050505092915050565b81835281816020850137506000828201602090810191909152601f909101601f19169091010190565b604081526000611fe16040830186611f28565b8281036020840152611ff4818587611fa5565b9695505050505050565b67ffffffffffffffff83111561201657612016611787565b61202a836120248354611c7b565b83611dab565b6000601f84116001811461205e57600085156120465750838201355b600019600387901b1c1916600186901b1783556113a7565b600083815260209020601f19861690835b8281101561208f578685013582556020948501946001909201910161206f565b50868210156120ac5760001960f88860031b161c19848701351681555b505060018560011b0183555050505050565b6001600160a01b03868116825285166020820152604081018490526080606082018190526000906120f29083018486611fa5565b979650505050505050565b8381526060602082015260006121166060830185611925565b8281036040840152611ff48185611f28565b60006020828403121561213a57600080fd5b815167ffffffffffffffff81111561215157600080fd5b8201601f8101841361216257600080fd5b805161217061182a826117e3565b81815285602083850101111561218557600080fd5b611a0582602083016020860161190156fea2646970667358221220f213b9045b40918ed2b5d304162ec2dfc3bc6b581b97362b423df61fd1436e5c64736f6c63430008150033a264697066735822122016636ee300fab238f4f099f32ba33a2f9dd9cbd27246df211a2a76dcc4263a7a64736f6c634300081500330000000000000000000000009a9f2ccfde556a7e9ff0848998aa4a0cfd8863ae000000000000000000000000000000000000000000000000002386f26fc10000", + "nonce": "0x13", "accessList": [] }, "additionalContracts": [], @@ -100,110 +100,110 @@ ], "receipts": [ { - "transactionHash": "0x9466ab361eff1c764b33a0b6a342c338d56a5e3eadab3868a3ef8af784415916", + "transactionHash": "0x5819542b86b5758034e0d7f6625d8bc4cc3c7ab3233a11f91580d5598cf0b966", "transactionIndex": "0x0", - "blockHash": "0xc2c3d152ade6f030dc3d547bdb7e231a5b5171572299b4b9a99eb917a4f36e23", - "blockNumber": "0x4", + "blockHash": "0xbd8f9701ef35f2960932a88bc89616226d18eb9a573e65d68867a13a2261d868", + "blockNumber": "0xb", "from": "0xf39Fd6e51aad88F6F4ce6aB8827279cffFb92266", "to": null, - "cumulativeGasUsed": "0xf072b", - "gasUsed": "0xf072b", - "contractAddress": "0x5FC8d32690cc91D4c39d9d3abcBD16989F875707", + "cumulativeGasUsed": "0xf071f", + "gasUsed": "0xf071f", + "contractAddress": "0x0B306BF915C4d645ff596e518fAf3F9669b97016", "logs": [], "status": "0x1", "logsBloom": "0x00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", "type": "0x2", - "effectiveGasPrice": "0xdd430fd2" + "effectiveGasPrice": "0xc5a9fb17" }, { - "transactionHash": "0xd9a18362ad106c41fe0645d5ceb2153814665eace90e54038bca1ad3c3e0169c", + "transactionHash": "0x301e6f0bd1fcecc7463c48469d5f7ccd0c1a62c94edef96827472a8b39a9ef9c", "transactionIndex": "0x0", - "blockHash": "0xd49ba87a38fcec8add2bc950ac58507b5cdf18e0c3053148e576558063a48b42", - "blockNumber": "0x5", + "blockHash": "0x50c8a428a7a7c29573928db2b5307709016778eea980b55e3e976a970092d8fa", + "blockNumber": "0xc", "from": "0xf39Fd6e51aad88F6F4ce6aB8827279cffFb92266", "to": null, - "cumulativeGasUsed": "0x23ab5", - "gasUsed": "0x23ab5", - "contractAddress": "0x0165878A594ca255338adfa4d48449f69242Eb8F", + "cumulativeGasUsed": "0x23aa9", + "gasUsed": "0x23aa9", + "contractAddress": "0x959922bE3CAee4b8Cd9a407cc3ac1C251C2007B1", "logs": [], "status": "0x1", "logsBloom": "0x00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", "type": "0x2", - "effectiveGasPrice": "0xd84de93f" + "effectiveGasPrice": "0xc3766245" }, { - "transactionHash": "0xa71a035d96f32aace3859776b5d6e9a78cbc722f32d99832940e340d148d96a7", + "transactionHash": "0x457ccd02ec7d5d9ae02f2f249f866d36f8c4107218db1bef2deb1808d77ee377", "transactionIndex": "0x0", - "blockHash": "0x14acba66a39626553253f42d4b58c4035167060085b63799897b9d7985b94f3b", - "blockNumber": "0x6", + "blockHash": "0x9ae2372c22bd2fb2a24716486e361e62e2120351534274cec3e9c1ccd41aa943", + "blockNumber": "0xd", "from": "0xf39Fd6e51aad88F6F4ce6aB8827279cffFb92266", "to": null, "cumulativeGasUsed": "0x2616fd", "gasUsed": "0x2616fd", - "contractAddress": "0xa513E6E4b8f2a923D98304ec87F64353C4D5C853", + "contractAddress": "0x9A9f2CCfdE556A7E9Ff0848998Aa4a0CFD8863AE", "logs": [], "status": "0x1", "logsBloom": "0x00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", "type": "0x2", - "effectiveGasPrice": "0xd3a9e73a" + "effectiveGasPrice": "0xc166d206" }, { - "transactionHash": "0x452fdd213b9009d9b5fd8c8c1d6d24332387c1846d810739458c341bf83352a4", - "transactionIndex": "0x1", - "blockHash": "0x14acba66a39626553253f42d4b58c4035167060085b63799897b9d7985b94f3b", - "blockNumber": "0x6", + "transactionHash": "0xc89cbcc0f97185cd0540a6c8f868404a514b300b1a37ceb8293d506447c324d1", + "transactionIndex": "0x0", + "blockHash": "0xae71e21a31ee3d111062202a59fd3cda008c1603b8e1a4c59b723903d444d712", + "blockNumber": "0xe", "from": "0xf39Fd6e51aad88F6F4ce6aB8827279cffFb92266", "to": null, - "cumulativeGasUsed": "0x29452b", + "cumulativeGasUsed": "0x32e2e", "gasUsed": "0x32e2e", - "contractAddress": "0x2279B7A0a67DB372996a5FaB50D91eAA73d2eBe6", + "contractAddress": "0x68B1D87F95878fE05B998F19b66F4baba5De1aed", "logs": [], "status": "0x1", "logsBloom": "0x00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", "type": "0x2", - "effectiveGasPrice": "0xd3a9e73a" + "effectiveGasPrice": "0xbfe1b2c1" }, { - "transactionHash": "0x9b47e081d7e785dceada6f5acd795f9ede015d878db8de4875ee1b6511bb6aa1", - "transactionIndex": "0x2", - "blockHash": "0x14acba66a39626553253f42d4b58c4035167060085b63799897b9d7985b94f3b", - "blockNumber": "0x6", + "transactionHash": "0x46d3d5e2dd4594e758e011681667f9bcbf03637daf06514f8d3fa572826701a1", + "transactionIndex": "0x1", + "blockHash": "0xae71e21a31ee3d111062202a59fd3cda008c1603b8e1a4c59b723903d444d712", + "blockNumber": "0xe", "from": "0xf39Fd6e51aad88F6F4ce6aB8827279cffFb92266", "to": null, - "cumulativeGasUsed": "0x51db7f", - "gasUsed": "0x289654", - "contractAddress": "0x8A791620dd6260079BF849Dc5567aDC3F2FdC318", + "cumulativeGasUsed": "0x2c6e5c", + "gasUsed": "0x29402e", + "contractAddress": "0x3Aa5ebB10DC797CAC828524e59A333d0A371443c", "logs": [ { - "address": "0x8A791620dd6260079BF849Dc5567aDC3F2FdC318", + "address": "0x3Aa5ebB10DC797CAC828524e59A333d0A371443c", "topics": [ "0x8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0", "0x0000000000000000000000000000000000000000000000000000000000000000", "0x000000000000000000000000f39fd6e51aad88f6f4ce6ab8827279cfffb92266" ], "data": "0x", - "blockHash": "0x14acba66a39626553253f42d4b58c4035167060085b63799897b9d7985b94f3b", - "blockNumber": "0x6", - "transactionHash": "0x9b47e081d7e785dceada6f5acd795f9ede015d878db8de4875ee1b6511bb6aa1", - "transactionIndex": "0x2", - "logIndex": "0x2", + "blockHash": "0xae71e21a31ee3d111062202a59fd3cda008c1603b8e1a4c59b723903d444d712", + "blockNumber": "0xe", + "transactionHash": "0x46d3d5e2dd4594e758e011681667f9bcbf03637daf06514f8d3fa572826701a1", + "transactionIndex": "0x1", + "logIndex": "0x1", "transactionLogIndex": "0x0", "removed": false } ], "status": "0x1", - "logsBloom": "0x00000000000000000000000000000000000000000000000000800000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000020000000000000100000800000000000000000000000000000000400000000000000000000000000000000000000000000000000000000000000000002000000000000000000000008000000000000000000000000000000000000000000000000000200000000000000000040000002000000000000000000020000000000000000000000000000000000000000000000000000000000000000000", + "logsBloom": "0x00000000000000000000000000000000000000000000000000800000000000000000000000000000000800000010000000000000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000020000000000000100000800000000000000000000000000000000400000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000200000000000000000000000002000000000000000000020000000000000000000000000004000000000000000000000000000000000000000", "type": "0x2", - "effectiveGasPrice": "0xd3a9e73a" + "effectiveGasPrice": "0xbfe1b2c1" } ], "libraries": [ - "lib/eth-projects-monorepo/packages/eth-projects-contracts/contracts/lib/utils/Bytes.sol:Bytes:0x5fc8d32690cc91d4c39d9d3abcbd16989f875707" + "lib/eth-projects-monorepo/packages/eth-projects-contracts/contracts/lib/utils/Bytes.sol:Bytes:0x0b306bf915c4d645ff596e518faf3f9669b97016" ], "pending": [], "returns": {}, - "timestamp": 1688925610, + "timestamp": 1690374106, "chain": 31337, "multi": false, - "commit": "fcc3266" + "commit": null } \ No newline at end of file diff --git a/packages/starksheet-solidity/foundry.toml b/packages/starksheet-solidity/foundry.toml index 80d5402a..a952349e 100644 --- a/packages/starksheet-solidity/foundry.toml +++ b/packages/starksheet-solidity/foundry.toml @@ -2,10 +2,16 @@ src = 'src' out = 'out' libs = ['lib'] +eth_rpc_url = "anvil" + +[profile.docker] +eth_rpc_url = "docker" [rpc_endpoints] goerli = "${GOERLI_RPC_URL}" -devnet = "http://127.0.0.1:8545" +anvil = "http://127.0.0.1:8545" +kakarot = "http://127.0.0.1:3030" +docker = "${RPC_URL}" [etherscan] goerli = { key = "${ETHERSCAN_API_KEY}" } diff --git a/packages/starksheet-solidity/out/BasicCellRenderer.sol/BasicCellRenderer.json b/packages/starksheet-solidity/out/BasicCellRenderer.sol/BasicCellRenderer.json index 59ce9706..09f76058 100644 --- a/packages/starksheet-solidity/out/BasicCellRenderer.sol/BasicCellRenderer.json +++ b/packages/starksheet-solidity/out/BasicCellRenderer.sol/BasicCellRenderer.json @@ -50,7 +50,7 @@ } ], "bytecode": { - "object": "0x608060405234801561001057600080fd5b50612c25806100206000396000f3fe608060405234801561001057600080fd5b50600436106100365760003560e01c806306d4cd8b1461003b57806328de0f2f14610064575b600080fd5b61004e610049366004610322565b610077565b60405161005b919061038b565b60405180910390f35b61004e610072366004610404565b6100f1565b60606000610086600f846104fc565b90506000610095600f8361051e565b61009f9085610535565b905060006100ae826041610548565b60f81b9050806100c76100c2856001610548565b6101b6565b6040516020016100d8929190610577565b6040516020818303038152906040529350505050919050565b606060006100fe86610077565b90508383826101838873__$a792e50881dbcbffce7826062cdb0978aa$__63b5cdf924909160006040518363ffffffff1660e01b81526004016101429291906105a8565b602060405180830381865af415801561015f573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906100c291906105ca565b87878660405160200161019c97969594939291906105f2565b604051602081830303815290604052915050949350505050565b606060006101c383610249565b600101905060008167ffffffffffffffff8111156101e3576101e36103a5565b6040519080825280601f01601f19166020018201604052801561020d576020820181803683370190505b5090508181016020015b600019016f181899199a1a9b1b9c1cb0b131b232b360811b600a86061a8153600a850494508461021757509392505050565b60008072184f03e93ff9f4daa797ed6e38ed64bf6a1f0160401b83106102885772184f03e93ff9f4daa797ed6e38ed64bf6a1f0160401b830492506040015b6d04ee2d6d415b85acef810000000083106102b4576d04ee2d6d415b85acef8100000000830492506020015b662386f26fc1000083106102d257662386f26fc10000830492506010015b6305f5e10083106102ea576305f5e100830492506008015b61271083106102fe57612710830492506004015b60648310610310576064830492506002015b600a831061031c576001015b92915050565b60006020828403121561033457600080fd5b5035919050565b60005b8381101561035657818101518382015260200161033e565b50506000910152565b6000815180845261037781602086016020860161033b565b601f01601f19169290920160200192915050565b60208152600061039e602083018461035f565b9392505050565b634e487b7160e01b600052604160045260246000fd5b60008083601f8401126103cd57600080fd5b50813567ffffffffffffffff8111156103e557600080fd5b6020830191508360208285010111156103fd57600080fd5b9250929050565b6000806000806060858703121561041a57600080fd5b84359350602085013567ffffffffffffffff8082111561043957600080fd5b818701915087601f83011261044d57600080fd5b81358181111561045f5761045f6103a5565b604051601f8201601f19908116603f01168101908382118183101715610487576104876103a5565b816040528281528a60208487010111156104a057600080fd5b8260208601602083013760006020848301015280975050505060408701359150808211156104cd57600080fd5b506104da878288016103bb565b95989497509550505050565b634e487b7160e01b600052601160045260246000fd5b60008261051957634e487b7160e01b600052601260045260246000fd5b500490565b808202811582820484141761031c5761031c6104e6565b8181038181111561031c5761031c6104e6565b8082018082111561031c5761031c6104e6565b6000815161056d81856020860161033b565b9290920192915050565b6001600160f81b031983168152815160009061059a81600185016020870161033b565b919091016001019392505050565b6040815260006105bb604083018561035f565b90508260208301529392505050565b6000602082840312156105dc57600080fd5b5051919050565b81818437506000910190815290565b7f646174613a6170706c69636174696f6e2f6a736f6e2c7b22646573637269707481527f696f6e223a2022537461726b7368656574222c20226e616d65223a202200000060208201528688603d8301376000878201602160f81b603d820152875161066481603e840160208c0161033b565b7f222c22696d616765223a2022646174613a696d6167652f7376672b786d6c2c25603e92909101918201527f334373766725323076696577426f782533442532373025323030253230383925605e8201527f3230353525323725323066696c6c2533442532376e6f6e65253237253230786d607e8201527f6c6e73253344253237687474702533412f2f7777772e77332e6f72672f323030609e8201527f302f737667253237253345253343646566732533452533437374796c6525334560be8201527f253430666f6e742d66616365253230253742666f6e742d66616d696c7925334160de8201527f253230253237507265737325323053746172742532303250253237253342737260fe8201527f6325334125323075726c25323825323764617461253341666f6e742f776f666661011e8201527f32253342626173653634253243643039474d6741424141414141424c3841413861013e8201527f41414141415235774141424b674141454141414141414141414141414141414161015e8201527f4141414141414141414141414150305a4756453063476a41624d42794358675a61017e8201527f6741494e794551674b3846545361517544524141424e67496b41344e4d42434161019e8201527f46687a5148684649623644566c42306a314f4d4253336f4f4953744562732f2f6101be8201527f2f6c4a776356727a47634f30676f684c45484d6369694443434e57695a6761306101de8201527f79625345555954514f6a4b427038546c737a7344526438716174586c333058746101fe8201527f30645a47467952305668444b776c62746c25324272734643773945316e64655961021e8201527f4a74732f37527762305673784d71576c636a6a775445537a2f5568752f77337361023e8201527f33746b6f496d70343464515168576f456d54337579526d70746f7553446b7a5761025e8201527f454138762f3932364a4b7539486f696e6e3673376674336d4965476c7737547161027e8201527f6437456f326a46517849766a5642494a70563269614f62547a68575932314e7461029e8201527f476772687434704d4b3457556a34624c7967542f51253242514c7879253242336102be8201527f6c482f362f6b6275496444497239446a724a496a6f394a7336524d58253242456102de8201527f6b37424f545a6b6d70397a347455524652566656307148504448375a7462364a6102fe8201527f616f6130684c335975616232473373667a72365776394536793569767025324261031e8201527f7135564c74426a514478476f5345304150313762336466376c61726a6525324261033e8201527f73637a6b7241744a334b6657304a342532424b323365744b4b556a383554616f61035e8201527f57473453346158436c427743413268676141652532423658396f696e32304e6261037e8201527f554a7264466767517049686d5247494d30372f7025324277375a7058316c473161039e8201527f6a6a51787073435141423438714445415042346950312f6a39592f4261686a356103be8201527f5943414e302f78714157496852616a6c6e694e654f50396e78433466667932556103de8201527f694843304e47386b686f6f567a6f7459334445417a417a41356b473735337a6a6103fe8201527f4853354d6e6d586b69496a6d54554d36556d4d3025324256346976752f48377861041e8201527f6a364666322f6b343472787a6449324141676742492f4c48416b394a7a35554d61043e8201527f496f4c7755344146455435725a464f33444d616655633061777351434879497061045e8201527f557a546b30784a474a454f6a4e6871436b474570496153474f6a714e466d2f5761047e8201527f4e434e3569636b71434d6e414165564c4d4c655867356971386b365752585a5261049e8201527f326c337042393831427a73475a743225324256696c4342723954494a674b67786104be8201527f365542514446253242566a4b44714e7741414948386a6949664d6e75384b68666104de8201527f584b486f4e3348634134477245786842324155442f795a554d423857547579496104fe8201527f413444634f4b656434397939504249616e426967734d454e38556b30766c547661051e8201527f304a58334e394d795a75544d763573655357413525324238556538504465547261053e8201527f645467474973566d4e33635856586a6463795275633434385866664176506e7361055e8201527f3575324d4531722532426a4731703137767a3849704f416e483444427367793361057e8201527f512f54376b33646d2f3846334232377355694877464631414f6c683055646e4961059e8201527f4471494e5164506355393145786f2f346252696a6a5169704e4e307a4c646c7a6105be8201527f504438496f547449734c38717162746f4f5149514a5a567849705931315073536105de8201527f55533231397a4c585066642f507667765751346372464d2532425769755671706105fe8201527f645a6f4e6475645872632f4745324d4a36656e3575635746694763375274364f61061e8201527f487676354d674c2532427a44733578444277696141315433554877326b63594361063e8201527f312f55666453316645316d37763742346537653350574848786533594f32483561065e8201527f25324241504f5a7965503025324251506553425468793078713965363241486a61067e8201527f6141556842432f364144484c6f476f4f657636412532426867487369317a613861069e8201527f71355a4e4d716a596c575a4d713867354248445574495370574a73526f52544a6106be8201527f56613049305a3957546b5371564b73507a3464586a7648746449684c6e7670746106de8201527f554c4330753542567579414d544b4a513930594b5267546e5769476b6d7153456106fe8201527f714b6d7256685259674b6b335443686255573671456f45637665577a6859535461071e8201527f4c32484e706735452f6d7151393956564467763352475435586d33637a68754c61073e8201527f3972685864316132372f736c5130686959366a643739614f5a43746a6f52687261075e8201527f623136575676514b725734477a786a7869723238494d697a2f7155447973495761077e8201527f7037516a667765347a556437614a735651575179524c554b484b42577938577661079e8201527f45565333584d53353656337757644f442532424638757639645477496d4b722f6107be8201527f5064626d5763775176456641616a7975566a70784e32704f56635769336c38776107de8201527f454c2f6d395070646f55494536253242504b5838315041546d67654f304231736107fe8201527f47454825324261707a353466646d534a7a333741686635366a4c7739756e504561081e8201527f35644d4b3025324237544639563843435466523979664e7355493474557a464661083e8201527f42326e536e384b4f626a64446964554c7034494a6873777878595172595a643661085e8201527f4e76436e55394d445825324252654c6e4d546d6c315a453972306b5077334e3261087e8201527f6752253242736a4573596d4953706b356c31497333594e614a4b6f6e7a65703761089e8201527f56637354316e556b62347048774b5a41796b614b6f43504630506f6d456876496108be8201527f5758656e6f5a767836774f4b313070316c3274546858793850316555776473766108de8201527f53715157766f424d7473674851554a614774494273756861776450545a5378596108fe8201527f707257757734647a7231564755744449465871726f4d4d69597346783857695461091e8201527f336463574b6f376d50554c79715657413972305974524a4c626957766a6e4c2561093e8201527f324272633452646767624e516c514141613264306d616236364d48447074314361095e8201527f6477626b51436253375053445a4d7a3746724f51713165636153304a6c74644161097e8201527f6c44527941587173364130586247707748676b70367572557757416272464d3361099e8201527f75794d764e4b6c344d6c435548537950416d3931776144454a3559595148754a6109be8201527f4d32304b575251737637486b61334770686c533258444b714f4b4245554753316109de8201527f65306b63316f323449494166486c4449794278584a4a656767423369386174566109fe8201527f67434f3064444f5a484a57596a564c416a6a397137765673456e72684b374568610a1e8201527f4c75427a42586d4d674554634531636d61436976504b6f4a766670466c794935610a3e8201527f4d70584234454325324245672f596d303454787843354e6c73596b74646f5951610a5e8201527f55656c38624673456c3748345a36734377622f38626b347458574658504b6a71610a7e8201527f5462526e64336e4c5770394f784941706c664b586747684e6c72443462354a4c610a9e8201527f5a367055753441726756614d366561357844574244476f7a707a4641376e6747610abe8201527f74596334486141775269475576637653653652414177335a576b564f4667764b610ade8201527f46364955696c4d49394964715155345134585264484866736666517770313955610afe8201527f434a49306a5773725433356f5578303678507268473271364d4533554f306c63610b1e8201527f635a557354454351784a44527854444b6c334c4948722f6162546f73686c6466610b3e8201527f51786a364f57745273466e6966444373473674336b426f344e6d424a6d615556610b5e8201527f54636c794951414a4c6a6e723042365a3859464d6e396b397967703752727848610b7e8201527f36766877624a4e41654b4d554436353974386746514a4d5377652f434f624850610b9e8201527f467671484746554e5266253242737245663354584b42725a76676b6369396972610bbe8201527f426d63442f7458616754474358634e68432532424f3539754c706e6673796f71610bde8201527f4c53313238374552776d38666165564f6d3857634437386c5a36594232793938610bfe8201527f5a4c6c4d3972557264324c514e6c324956643454727376675139363079377573610c1e8201527f5965306854506170576a71726c2532425837784665424e54253242315a644a4a610c3e8201527f572532424678745737584e7774634e7a7761672532425256656a6d4a6839656d610c5e8201527f6c495a4b69694e63694b3849554f4d33556a4a376342554e5847505853326c68610c7e8201527f253242687770676f4836567348524f63764569723372585970344c7769435a77610c9e8201527f3176486c43623552314d68623564536e4f326d6e6f475a6f5846315765574757610cbe8201527f6d7a694a314a555534715072306e694a536c4e424331636b4b6d4a6657625877610cde8201527f5577757449547a456d6a776770776142753464525066746a2f4e384143526e64610cfe8201527f616b2f4641674b674c37305058577839767a6b59322532426d34355473496b4c610d1e8201527f3037616f70444e6f676830535262535a534f397a744657516a376e574c676275610d3e8201527f364325324254374b6a44715a3667456e5277674d78306b4c5a77797962514f76610d5e8201527f514130773054782f354a42722f63595a6453574f546a774446364e6f586b796a610d7e8201527f33566a484e4751494e76426a5a734a4a3377466141516d6f5a575a5970416961610d9e8201527f574f466e6e686455524176576b557a77693062677a5a4158796f445545714863610dbe8201527f57307069454c574f777168773365765478444957724e32495371525151454c41610dde8201527f4d32365334486c723548552f48784a43436844424a6b756b6341573856415430610dfe8201527f6770545a544b4e48677a444f7234314751656a4f34677a416e6b577077464752610e1e8201527f43334c625231787a4b434875365635694674674c704f384b51596d5965467868610e3e8201527f4c32643838736469506a2f76306b427a636c51637954735766324d6445394944610e5e8201527f386d5858576a72434b253242354532756e336e6976656973526e726971317548610e7e8201527f594d6a6a69694945304b6466674d6f3163476d6b557254624f30356732737633610e9e8201527f477673525971762f61457736375472644f705435567a4641364131417939634b610ebe8201527f6f44667762544a64445750524e57517354796a6d3772486249734b466b6f4f2f610ede8201527f5a4c4376735966785973337768534338614c49344b765677373773336e347a48610efe8201527f67697061634a6e435362463945727a53357069386343577655597a4f5064327a610f1e8201527f684a2f4750437a53684f453378596c634f3350796164586a54334f6b68706841610f3e8201527f58465853766865544e5355525446565641486f4a6d7949726b6a454b6f517746610f5e8201527f4730303554334158643935764e30446d336d427332786746546c253242513572610f7e8201527f73416a6e744768707a6f62643642374e7a52664e56653130446f4e5639343753610f9e8201527f59646f635252624776636d785456786f61367a717756376d416e773544314745610fbe8201527f5474327a48382532425476514256356e37672f32615768743979794e594c3974610fde8201527f4f42744167384846435945316d4e775432454232467538544968543776565241610ffe8201527f3461587a6e6b3670545a4e6779696f73747749364b654655374c696c7041253261101e8201527f42334234474a794277574d327062466a4876734a3747754f6f616b6a6d46746a61103e8201527f59344c6254396c323239253242453646374c4475577a744c6e333749786b386a61105e8201527f356c42564b33774c7369362f416641756f6a34396c4d6b5653545045396b704761107e8201527f64304c724555534a4941413070596c4178414d642f4e4f46776f4a446458466961109e8201527f307a4f5744422f54464a705666575642574f516274724a556230636c663369256110be8201527f3242575072446f596c65545674564f45306d36793564487444725551776f414c6110de8201527f7455523365585364444d4e785866656a594674764c626c726c4a7777484b2f456110fe8201527f6957504a616b32574b35386e684e6f4c6a615a55475841756f32656f5777464561111e8201527f66612f445334496958717246714779633348726939785132693243352f73357661113e8201527f7a424d30793777334d4473774d3759325247427172464d6778374f696325324261115e8201527f30497a736d5678617a5473305263666a324f3334532f525639503269486f427561117e8201527f6c4b49594244665a46654c53356439725379664a64536c67683268644d72324f61119e8201527f5552334b6e6c506e4f41785477314a384c4d325a776e4671765a745a4a6c78786111be8201527f343873776243743272316b664875443756624831326159383849437456734b786111de8201527f4b742f31726b616c42414d74782f6f6f6d43445059626b556f4c6344624b436a6111fe8201527f7675713953544467746a584744715735564b36686347654f46697a6a3643714c61121e8201527f4f49716b57783477733245504d444e7378253242613661533230384f39784c3061123e8201527f526146586f394241645530706e452532424c695359334b536f4a41525978646e61125e8201527f7a69545a4d706961442f3438496969393834446151357976656378414673735761127e8201527f792f686274696d63253242704c386b35796f70496d4a627948712f6138797a6c61129e8201527f6c37726f4f7a586d786d4163337459585363546b65734d6344324939315a36336112be8201527f6549312f394a627755716b36737863394b52677277574d414e6543314e6e39756112de8201527f4779775473706d5538712532426c5a6d43714d674153363662674841476a514b6112fe8201527f73754a334451416a5235346d356a4c7a5a616e546c62646530253242726e663461131e8201527f385a574138546c32673277414779427748516e3552322532424e6a726542677861133e8201527f626c734e46627554776d6862414a48737a2f72416f61764c4f34317874767a5961135e8201527f4768336e4c4a426b41506a7578424a445248333048426575385567436978464e61137e8201527f437951322f4b253242385157372f6530253242664f2532423436524e5730657961139e8201527f4c726f39446a5467704a4e4d3547385179306c54644f756d73773066715045696113be8201527f393646702532424830634d774e6f376a787a596d6e4e664d5a6d64506c7932706113de8201527f6f7132575065476d67507136474c78504e34536c4b486e7870624f69754c58516113fe8201527f75583155715031676a6f38426136536c55314f416d5267707a7531735444584a61141e8201527f50754d3338546f387130344c324e777970653837327777556741675a6c70386461143e8201527f6b5166397a38544d43624d6b596b3758484375333564375a5a41656f346b5a4b61145e8201527f68784953386945354c546a334c4f6976485a7268394a3870337a4c5a436a776361147e8201527f6970354452694b6e576e49664c33386b4a684d7452776a67553525324256726d61149e8201527f714b6c6739307a376a64732f4238444b646b464c76483353253242376f4838616114be8201527f6c445a6c626734533155583574434d445342324f364b756c7a41344b763067376114de8201527f314251643054464b7733685358696e62374e6c304258725873514e6376436b386114fe8201527f6d6f394f786965783559627a78564e2f6b3738336f48545a495777393079495a61151e8201527f777672697164475473586e54384965705437597946434f4a6741395a3042794961153e8201527f455956735478522f6b73616b324268376f4b767034766e695530364d57317a4261155e8201527f4672746568647a306b6b587951786a426d7965645636644d596545386146787461157e8201527f6575777355466136466c6c54446c716430707a525a77473663467266574d627061159e8201527f384738587a6a66624d253242354658657076356f457273696c363458783663376115be8201527f5841576275696d3666387347494d58666f334a6971476b703333376854536a676115de8201527f65636862364f42472f327a31376a6f6d4469476d253242476c623146553069656115fe8201527f6e7552796977654c576767447a6d4655765545556a5a6f377356544877684f4661161e8201527f504d6b4e737146423977796d6b45307639666d7477453854377135384e594f3761163e8201527f787534623833766e46766c35755378446c472532426b4f51675249644f346a6761165e8201527f7a786a53486a4b4c7332742f6c684f647771766131415744437072763344345361167e8201527f34523741625934544362664b4637744265363554343551347a7a49714433316161169e8201527f79797557716a692532424636585337535439483943314f342f694b366b4775766116be8201527f6b512f664e3537487837456533373435622f76766e2f62482f58253242392f256116de8201527f32426762656d684f416d49705576755157757344764b517578394a44564e734b6116fe8201527f673651636d6b73515341445530346347524c523768466f5a326337785545664761171e8201527f253242776b755459474d764c6a422f6550634936416847686e5735717a45416961173e8201527f4a586377564545775869654e70536c317a6a457253253242435325324248634c61175e8201527f6f52506d7661324d6767412f69794c67536f544a555767733442794149514f3061177e8201527f4f6f705a487656627a6844494c65557155677a7a48492f667950474e7879777361179e8201527f6f796c6865534639577662795363336b4544716b32415636436c4364635535536117be8201527f6e6c4e6e4963394b794d63384c79622532423867484f4a795173466c4c6250526117de8201527f796d6d374a42743349545a544162314732444252496b514b51705451396939626117fe8201527f3665435353387a4d366161525364544b5657524d336663454a4c644b61746e7361181e8201527f724959774e4a55253242733048364461757832775a35686733706c653042474861183e8201527f756b316b4543734859446461496d4b7025324233463542317859763763486b7161185e8201527f644475306a4b645273657a3531376d63563641685148346931484e3173766c6a61187e8201527f5248366845454672682532426e72726d47316e33307a4d346749776d694d774561189e8201527f624b6842545564423141486f582532424b6741517a4f48543946494f71436b526118be8201527f4e4e623273397170496943534f753167576868497343564a73765771457175356118de8201527f47624a514b4e6a61427465394c4f69676368414a7665475773394332323033766118fe8201527f6f6e476c6b77725251323464646732796345646157554456734441785548734961191e8201527f77773665615234464665336d4a416b66426d5a6452395264774a485a6d47645261193e8201527f7950436a706a627a31712f584a34534949446b66384b4b6e6e32456c4b6d794c61195e8201527f69573442513836733151554b2f76426867524e776548766c5968687a7238706361197e8201527f67704b4b6d6f61576a7036426b594f48446c7835734b5647336365474539657661199e8201527f506e773563646667454242676f554946536238587632504553314772446a78456119be8201527f69524b6b697846716a54704d6d544b6b693148726a7a354368517155717845716119de8201527f544c6c4b6c53715571314772547231476a527130717846717a62744f6e5347656119fe8201527f3668374a6d627a4968355a6544696c315a58536a7430774375616b336c6e476f611a1e8201527f5655506f53734e663337394b326a6274716d44674d69485a42665a6c68324839611a3e8201527f75773738495469314a466a585653662f4336634f55667a346f30644178305447611a5e8201527f777448446863666a3443516d49694531444d5a42546b6c4e5a557065566f614f611a7e8201527f6e717633733234314e50503965766574594768435a50576a4979747332706173611a9e8201527f436a25324270556a54596c336b615574374f744b4a6136355850396d356e6367611abe8201527f364e686a685a587032762532426d57724341545a754a303368316b6a55756976611ade8201527f5067596e6a6e35744b4a4f6b326e6362703251414559585a69304b496d50356b611afe8201527f744961466e366b5a397743253237253239253230666f726d6174253238253237611b1e8201527f776f666632253237253239253342666f6e742d7765696768742533412532306e611b3e8201527f6f726d616c253342666f6e742d7374796c652533412532306e6f726d616c2533611b5e8201527f42666f6e742d646973706c617925334125323073776170253342253744746578611b7e8201527f74253230253742666f6e742d66616d696c792533412532302532375072657373611b9e8201527f2532305374617274253230325025323725334266696c6c253341253230776869611bbe8201527f74652537442e76616c7565253230253742666f6e742d73697a65253341253230611bde8201527f313070782533422537442e6e616d65253230253742666f6e742d73697a652533611bfe8201527f412532303470782533422537442533432f7374796c652533452533432f646566611c1e8201527f7325334525334372656374253230776964746825334425323738392532372532611c3e8201527f30686569676874253344253237353525323725323066696c6c25334425323762611c5e8201527f6c61636b2532372532302f253345253343726563742532307825334425323735611c7e8201527f2e3525323725323079253344253237352e352532372532307769647468253344611c9e8201527f2532373738253237253230686569676874253344253237343425323725323066611cbe8201527f696c6c2533442532372532333030303046462532372532302f25334525334374611cde8201527f657874253230746578742d616e63686f722533442532376d6964646c65253237611cfe8201527f2532307825334425323734342e35253237253230792533442532373333253237611d1e8201527f253230636c61737325334425323776616c756525323725334500000000000000611d3e820152612ba5612b9e6129f5611d5784018a61055b565b7f2533432f746578742533452533437265637425323078253344253237352e352581527f323725323079253344253237352e35253237253230776964746825334425323760208201527f373825323725323068656967687425334425323734342532372532307374726f60408201527f6b652533442532372532334646344630412532372532307374726f6b652d776960608201527f647468253344253237332532372532302f25334525334372656374253230782560808201527f334425323733302532372532307925334425323734352e35253237253230776960a08201527f647468253344253237353825323725323068656967687425334425323738253260c08201527f3725323066696c6c2533442532372532334646344630412532372532302f253360e08201527f4525334374657874253230746578742d616e63686f72253344253237656e64256101008201527f32372532307825334425323738372532372532307925334425323735322532376101208201527f253230636c6173732533442532376e616d6525323725334500000000000000006101408201526101580190565b86886105e3565b602160f81b81529050612bbb600182018561055b565b7f2533432f746578742533452533432f737667253345227d00000000000000000081526017019a995050505050505050505056fea26469706673582212206a2c00c13ddb4f1bcd7ee36e36f0c874d7d9dadcf38306eab3610b5a6e7af83464736f6c63430008110033", + "object": "0x608060405234801561001057600080fd5b50612c25806100206000396000f3fe608060405234801561001057600080fd5b50600436106100365760003560e01c806306d4cd8b1461003b57806328de0f2f14610064575b600080fd5b61004e610049366004610322565b610077565b60405161005b919061038b565b60405180910390f35b61004e610072366004610404565b6100f1565b60606000610086600f846104fc565b90506000610095600f8361051e565b61009f9085610535565b905060006100ae826041610548565b60f81b9050806100c76100c2856001610548565b6101b6565b6040516020016100d8929190610577565b6040516020818303038152906040529350505050919050565b606060006100fe86610077565b90508383826101838873__$a792e50881dbcbffce7826062cdb0978aa$__63b5cdf924909160006040518363ffffffff1660e01b81526004016101429291906105a8565b602060405180830381865af415801561015f573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906100c291906105ca565b87878660405160200161019c97969594939291906105f2565b604051602081830303815290604052915050949350505050565b606060006101c383610249565b600101905060008167ffffffffffffffff8111156101e3576101e36103a5565b6040519080825280601f01601f19166020018201604052801561020d576020820181803683370190505b5090508181016020015b600019016f181899199a1a9b1b9c1cb0b131b232b360811b600a86061a8153600a850494508461021757509392505050565b60008072184f03e93ff9f4daa797ed6e38ed64bf6a1f0160401b83106102885772184f03e93ff9f4daa797ed6e38ed64bf6a1f0160401b830492506040015b6d04ee2d6d415b85acef810000000083106102b4576d04ee2d6d415b85acef8100000000830492506020015b662386f26fc1000083106102d257662386f26fc10000830492506010015b6305f5e10083106102ea576305f5e100830492506008015b61271083106102fe57612710830492506004015b60648310610310576064830492506002015b600a831061031c576001015b92915050565b60006020828403121561033457600080fd5b5035919050565b60005b8381101561035657818101518382015260200161033e565b50506000910152565b6000815180845261037781602086016020860161033b565b601f01601f19169290920160200192915050565b60208152600061039e602083018461035f565b9392505050565b634e487b7160e01b600052604160045260246000fd5b60008083601f8401126103cd57600080fd5b50813567ffffffffffffffff8111156103e557600080fd5b6020830191508360208285010111156103fd57600080fd5b9250929050565b6000806000806060858703121561041a57600080fd5b84359350602085013567ffffffffffffffff8082111561043957600080fd5b818701915087601f83011261044d57600080fd5b81358181111561045f5761045f6103a5565b604051601f8201601f19908116603f01168101908382118183101715610487576104876103a5565b816040528281528a60208487010111156104a057600080fd5b8260208601602083013760006020848301015280975050505060408701359150808211156104cd57600080fd5b506104da878288016103bb565b95989497509550505050565b634e487b7160e01b600052601160045260246000fd5b60008261051957634e487b7160e01b600052601260045260246000fd5b500490565b808202811582820484141761031c5761031c6104e6565b8181038181111561031c5761031c6104e6565b8082018082111561031c5761031c6104e6565b6000815161056d81856020860161033b565b9290920192915050565b6001600160f81b031983168152815160009061059a81600185016020870161033b565b919091016001019392505050565b6040815260006105bb604083018561035f565b90508260208301529392505050565b6000602082840312156105dc57600080fd5b5051919050565b81818437506000910190815290565b7f646174613a6170706c69636174696f6e2f6a736f6e2c7b22646573637269707481527f696f6e223a2022537461726b7368656574222c20226e616d65223a202200000060208201528688603d8301376000878201602160f81b603d820152875161066481603e840160208c0161033b565b7f222c22696d616765223a2022646174613a696d6167652f7376672b786d6c2c25603e92909101918201527f334373766725323076696577426f782533442532373025323030253230383925605e8201527f3230353525323725323066696c6c2533442532376e6f6e65253237253230786d607e8201527f6c6e73253344253237687474702533412f2f7777772e77332e6f72672f323030609e8201527f302f737667253237253345253343646566732533452533437374796c6525334560be8201527f253430666f6e742d66616365253230253742666f6e742d66616d696c7925334160de8201527f253230253237507265737325323053746172742532303250253237253342737260fe8201527f6325334125323075726c25323825323764617461253341666f6e742f776f666661011e8201527f32253342626173653634253243643039474d6741424141414141424c3841413861013e8201527f41414141415235774141424b674141454141414141414141414141414141414161015e8201527f4141414141414141414141414150305a4756453063476a41624d42794358675a61017e8201527f6741494e794551674b3846545361517544524141424e67496b41344e4d42434161019e8201527f46687a5148684649623644566c42306a314f4d4253336f4f4953744562732f2f6101be8201527f2f6c4a776356727a47634f30676f684c45484d6369694443434e57695a6761306101de8201527f79625345555954514f6a4b427038546c737a7344526438716174586c333058746101fe8201527f30645a47467952305668444b776c62746c25324272734643773945316e64655961021e8201527f4a74732f37527762305673784d71576c636a6a775445537a2f5568752f77337361023e8201527f33746b6f496d70343464515168576f456d54337579526d70746f7553446b7a5761025e8201527f454138762f3932364a4b7539486f696e6e3673376674336d4965476c7737547161027e8201527f6437456f326a46517849766a5642494a70563269614f62547a68575932314e7461029e8201527f476772687434704d4b3457556a34624c7967542f51253242514c7879253242336102be8201527f6c482f362f6b6275496444497239446a724a496a6f394a7336524d58253242456102de8201527f6b37424f545a6b6d70397a347455524652566656307148504448375a7462364a6102fe8201527f616f6130684c335975616232473373667a72365776394536793569767025324261031e8201527f7135564c74426a514478476f5345304150313762336466376c61726a6525324261033e8201527f73637a6b7241744a334b6657304a342532424b323365744b4b556a383554616f61035e8201527f57473453346158436c427743413268676141652532423658396f696e32304e6261037e8201527f554a7264466767517049686d5247494d30372f7025324277375a7058316c473161039e8201527f6a6a51787073435141423438714445415042346950312f6a39592f4261686a356103be8201527f5943414e302f78714157496852616a6c6e694e654f50396e78433466667932556103de8201527f694843304e47386b686f6f567a6f7459334445417a417a41356b473735337a6a6103fe8201527f4853354d6e6d586b69496a6d54554d36556d4d3025324256346976752f48377861041e8201527f6a364666322f6b343472787a6449324141676742492f4c48416b394a7a35554d61043e8201527f496f4c7755344146455435725a464f33444d616655633061777351434879497061045e8201527f557a546b30784a474a454f6a4e6871436b474570496153474f6a714e466d2f5761047e8201527f4e434e3569636b71434d6e414165564c4d4c655867356971386b365752585a5261049e8201527f326c337042393831427a73475a743225324256696c4342723954494a674b67786104be8201527f365542514446253242566a4b44714e7741414948386a6949664d6e75384b68666104de8201527f584b486f4e3348634134477245786842324155442f795a554d423857547579496104fe8201527f413444634f4b656434397939504249616e426967734d454e38556b30766c547661051e8201527f304a58334e394d795a75544d763573655357413525324238556538504465547261053e8201527f645467474973566d4e33635856586a6463795275633434385866664176506e7361055e8201527f3575324d4531722532426a4731703137767a3849704f416e483444427367793361057e8201527f512f54376b33646d2f3846334232377355694877464631414f6c683055646e4961059e8201527f4471494e5164506355393145786f2f346252696a6a5169704e4e307a4c646c7a6105be8201527f504438496f547449734c38717162746f4f5149514a5a567849705931315073536105de8201527f55533231397a4c585066642f507667765751346372464d2532425769755671706105fe8201527f645a6f4e6475645872632f4745324d4a36656e3575635746694763375274364f61061e8201527f487676354d674c2532427a44733578444277696141315433554877326b63594361063e8201527f312f55666453316645316d37763742346537653350574848786533594f32483561065e8201527f25324241504f5a7965503025324251506553425468793078713965363241486a61067e8201527f6141556842432f364144484c6f476f4f657636412532426867487369317a613861069e8201527f71355a4e4d716a596c575a4d713867354248445574495370574a73526f52544a6106be8201527f56613049305a3957546b5371564b73507a3464586a7648746449684c6e7670746106de8201527f554c4330753542567579414d544b4a513930594b5267546e5769476b6d7153456106fe8201527f714b6d7256685259674b6b335443686255573671456f45637665577a6859535461071e8201527f4c32484e706735452f6d7151393956564467763352475435586d33637a68754c61073e8201527f3972685864316132372f736c5130686959366a643739614f5a43746a6f52687261075e8201527f623136575676514b725734477a786a7869723238494d697a2f7155447973495761077e8201527f7037516a667765347a556437614a735651575179524c554b484b42577938577661079e8201527f45565333584d53353656337757644f442532424638757639645477496d4b722f6107be8201527f5064626d5763775176456641616a7975566a70784e32704f56635769336c38776107de8201527f454c2f6d395070646f55494536253242504b5838315041546d67654f304231736107fe8201527f47454825324261707a353466646d534a7a333741686635366a4c7739756e504561081e8201527f35644d4b3025324237544639563843435466523979664e7355493474557a464661083e8201527f42326e536e384b4f626a64446964554c7034494a6873777878595172595a643661085e8201527f4e76436e55394d445825324252654c6e4d546d6c315a453972306b5077334e3261087e8201527f6752253242736a4573596d4953706b356c31497333594e614a4b6f6e7a65703761089e8201527f56637354316e556b62347048774b5a41796b614b6f43504630506f6d456876496108be8201527f5758656e6f5a767836774f4b313070316c3274546858793850316555776473766108de8201527f53715157766f424d7473674851554a614774494273756861776450545a5378596108fe8201527f707257757734647a7231564755744449465871726f4d4d69597346783857695461091e8201527f336463574b6f376d50554c79715657413972305974524a4c626957766a6e4c2561093e8201527f324272633452646767624e516c514141613264306d616236364d48447074314361095e8201527f6477626b51436253375053445a4d7a3746724f51713165636153304a6c74644161097e8201527f6c44527941587173364130586247707748676b70367572557757416272464d3361099e8201527f75794d764e4b6c344d6c435548537950416d3931776144454a3559595148754a6109be8201527f4d32304b575251737637486b61334770686c533258444b714f4b4245554753316109de8201527f65306b63316f323449494166486c4449794278584a4a656767423369386174566109fe8201527f67434f3064444f5a484a57596a564c416a6a397137765673456e72684b374568610a1e8201527f4c75427a42586d4d674554634531636d61436976504b6f4a766670466c794935610a3e8201527f4d70584234454325324245672f596d303454787843354e6c73596b74646f5951610a5e8201527f55656c38624673456c3748345a36734377622f38626b347458574658504b6a71610a7e8201527f5462526e64336e4c5770394f784941706c664b586747684e6c72443462354a4c610a9e8201527f5a367055753441726756614d366561357844574244476f7a707a4641376e6747610abe8201527f74596334486141775269475576637653653652414177335a576b564f4667764b610ade8201527f46364955696c4d49394964715155345134585264484866736666517770313955610afe8201527f434a49306a5773725433356f5578303678507268473271364d4533554f306c63610b1e8201527f635a557354454351784a44527854444b6c334c4948722f6162546f73686c6466610b3e8201527f51786a364f57745273466e6966444373473674336b426f344e6d424a6d615556610b5e8201527f54636c794951414a4c6a6e723042365a3859464d6e396b397967703752727848610b7e8201527f36766877624a4e41654b4d554436353974386746514a4d5377652f434f624850610b9e8201527f467671484746554e5266253242737245663354584b42725a76676b6369396972610bbe8201527f426d63442f7458616754474358634e68432532424f3539754c706e6673796f71610bde8201527f4c53313238374552776d38666165564f6d3857634437386c5a36594232793938610bfe8201527f5a4c6c4d3972557264324c514e6c324956643454727376675139363079377573610c1e8201527f5965306854506170576a71726c2532425837784665424e54253242315a644a4a610c3e8201527f572532424678745737584e7774634e7a7761672532425256656a6d4a6839656d610c5e8201527f6c495a4b69694e63694b3849554f4d33556a4a376342554e5847505853326c68610c7e8201527f253242687770676f4836567348524f63764569723372585970344c7769435a77610c9e8201527f3176486c43623552314d68623564536e4f326d6e6f475a6f5846315765574757610cbe8201527f6d7a694a314a555534715072306e694a536c4e424331636b4b6d4a6657625877610cde8201527f5577757449547a456d6a776770776142753464525066746a2f4e384143526e64610cfe8201527f616b2f4641674b674c37305058577839767a6b59322532426d34355473496b4c610d1e8201527f3037616f70444e6f676830535262535a534f397a744657516a376e574c676275610d3e8201527f364325324254374b6a44715a3667456e5277674d78306b4c5a77797962514f76610d5e8201527f514130773054782f354a42722f63595a6453574f546a774446364e6f586b796a610d7e8201527f33566a484e4751494e76426a5a734a4a3377466141516d6f5a575a5970416961610d9e8201527f574f466e6e686455524176576b557a77693062677a5a4158796f445545714863610dbe8201527f57307069454c574f777168773365765478444957724e32495371525151454c41610dde8201527f4d32365334486c723548552f48784a43436844424a6b756b6341573856415430610dfe8201527f6770545a544b4e48677a444f7234314751656a4f34677a416e6b577077464752610e1e8201527f43334c625231787a4b434875365635694674674c704f384b51596d5965467868610e3e8201527f4c32643838736469506a2f76306b427a636c51637954735766324d6445394944610e5e8201527f386d5858576a72434b253242354532756e336e6976656973526e726971317548610e7e8201527f594d6a6a69694945304b6466674d6f3163476d6b557254624f30356732737633610e9e8201527f477673525971762f61457736375472644f705435567a4641364131417939634b610ebe8201527f6f44667762544a64445750524e57517354796a6d3772486249734b466b6f4f2f610ede8201527f5a4c4376735966785973337768534338614c49344b765677373773336e347a48610efe8201527f67697061634a6e435362463945727a53357069386343577655597a4f5064327a610f1e8201527f684a2f4750437a53684f453378596c634f3350796164586a54334f6b68706841610f3e8201527f58465853766865544e5355525446565641486f4a6d7949726b6a454b6f517746610f5e8201527f4730303554334158643935764e30446d336d427332786746546c253242513572610f7e8201527f73416a6e744768707a6f62643642374e7a52664e56653130446f4e5639343753610f9e8201527f59646f635252624776636d785456786f61367a717756376d416e773544314745610fbe8201527f5474327a48382532425476514256356e37672f32615768743979794e594c3974610fde8201527f4f42744167384846435945316d4e775432454232467538544968543776565241610ffe8201527f3461587a6e6b3670545a4e6779696f73747749364b654655374c696c7041253261101e8201527f42334234474a794277574d327062466a4876734a3747754f6f616b6a6d46746a61103e8201527f59344c6254396c323239253242453646374c4475577a744c6e333749786b386a61105e8201527f356c42564b33774c7369362f416641756f6a34396c4d6b5653545045396b704761107e8201527f64304c724555534a4941413070596c4178414d642f4e4f46776f4a446458466961109e8201527f307a4f5744422f54464a705666575642574f516274724a556230636c663369256110be8201527f3242575072446f596c65545674564f45306d36793564487444725551776f414c6110de8201527f7455523365585364444d4e785866656a594674764c626c726c4a7777484b2f456110fe8201527f6957504a616b32574b35386e684e6f4c6a615a55475841756f32656f5777464561111e8201527f66612f445334496958717246714779633348726939785132693243352f73357661113e8201527f7a424d30793777334d4473774d3759325247427172464d6778374f696325324261115e8201527f30497a736d5678617a5473305263666a324f3334532f525639503269486f427561117e8201527f6c4b49594244665a46654c53356439725379664a64536c67683268644d72324f61119e8201527f5552334b6e6c506e4f41785477314a384c4d325a776e4671765a745a4a6c78786111be8201527f343873776243743272316b664875443756624831326159383849437456734b786111de8201527f4b742f31726b616c42414d74782f6f6f6d43445059626b556f4c6344624b436a6111fe8201527f7675713953544467746a584744715735564b36686347654f46697a6a3643714c61121e8201527f4f49716b57783477733245504d444e7378253242613661533230384f39784c3061123e8201527f526146586f394241645530706e452532424c695359334b536f4a41525978646e61125e8201527f7a69545a4d706961442f3438496969393834446151357976656378414673735761127e8201527f792f686274696d63253242704c386b35796f70496d4a627948712f6138797a6c61129e8201527f6c37726f4f7a586d786d4163337459585363546b65734d6344324939315a36336112be8201527f6549312f394a627755716b36737863394b52677277574d414e6543314e6e39756112de8201527f4779775473706d5538712532426c5a6d43714d674153363662674841476a514b6112fe8201527f73754a334451416a5235346d356a4c7a5a616e546c62646530253242726e663461131e8201527f385a574138546c32673277414779427748516e3552322532424e6a726542677861133e8201527f626c734e46627554776d6862414a48737a2f72416f61764c4f34317874767a5961135e8201527f4768336e4c4a426b41506a7578424a445248333048426575385567436978464e61137e8201527f437951322f4b253242385157372f6530253242664f2532423436524e5730657961139e8201527f4c726f39446a5467704a4e4d3547385179306c54644f756d73773066715045696113be8201527f393646702532424830634d774e6f376a787a596d6e4e664d5a6d64506c7932706113de8201527f6f7132575065476d67507136474c78504e34536c4b486e7870624f69754c58516113fe8201527f75583155715031676a6f38426136536c55314f416d5267707a7531735444584a61141e8201527f50754d3338546f387130344c324e777970653837327777556741675a6c70386461143e8201527f6b5166397a38544d43624d6b596b3758484375333564375a5a41656f346b5a4b61145e8201527f68784953386945354c546a334c4f6976485a7268394a3870337a4c5a436a776361147e8201527f6970354452694b6e576e49664c33386b4a684d7452776a67553525324256726d61149e8201527f714b6c6739307a376a64732f4238444b646b464c76483353253242376f4838616114be8201527f6c445a6c626734533155583574434d445342324f364b756c7a41344b763067376114de8201527f314251643054464b7733685358696e62374e6c304258725873514e6376436b386114fe8201527f6d6f394f786965783559627a78564e2f6b3738336f48545a495777393079495a61151e8201527f777672697164475473586e54384965705437597946434f4a6741395a3042794961153e8201527f455956735478522f6b73616b324268376f4b767034766e695530364d57317a4261155e8201527f4672746568647a306b6b587951786a426d7965645636644d596545386146787461157e8201527f6575777355466136466c6c54446c716430707a525a77473663467266574d627061159e8201527f384738587a6a66624d253242354658657076356f457273696c363458783663376115be8201527f5841576275696d3666387347494d58666f334a6971476b703333376854536a676115de8201527f65636862364f42472f327a31376a6f6d4469476d253242476c623146553069656115fe8201527f6e7552796977654c576767447a6d4655765545556a5a6f377356544877684f4661161e8201527f504d6b4e737146423977796d6b45307639666d7477453854377135384e594f3761163e8201527f787534623833766e46766c35755378446c472532426b4f51675249644f346a6761165e8201527f7a786a53486a4b4c7332742f6c684f647771766131415744437072763344345361167e8201527f34523741625934544362664b4637744265363554343551347a7a49714433316161169e8201527f79797557716a692532424636585337535439483943314f342f694b366b4775766116be8201527f6b512f664e3537487837456533373435622f76766e2f62482f58253242392f256116de8201527f32426762656d684f416d49705576755157757344764b517578394a44564e734b6116fe8201527f673651636d6b73515341445530346347524c523768466f5a326337785545664761171e8201527f253242776b755459474d764c6a422f6550634936416847686e5735717a45416961173e8201527f4a586377564545775869654e70536c317a6a457253253242435325324248634c61175e8201527f6f52506d7661324d6767412f69794c67536f544a555767733442794149514f3061177e8201527f4f6f705a487656627a6844494c65557155677a7a48492f667950474e7879777361179e8201527f6f796c6865534639577662795363336b4544716b32415636436c4364635535536117be8201527f6e6c4e6e4963394b794d63384c79622532423867484f4a795173466c4c6250526117de8201527f796d6d374a42743349545a544162314732444252496b514b51705451396939626117fe8201527f3665435353387a4d366161525364544b5657524d336663454a4c644b61746e7361181e8201527f724959774e4a55253242733048364461757832775a35686733706c653042474861183e8201527f756b316b4543734859446461496d4b7025324233463542317859763763486b7161185e8201527f644475306a4b645273657a3531376d63563641685148346931484e3173766c6a61187e8201527f5248366845454672682532426e72726d47316e33307a4d346749776d694d774561189e8201527f624b6842545564423141486f582532424b6741517a4f48543946494f71436b526118be8201527f4e4e623273397170496943534f753167576868497343564a73765771457175356118de8201527f47624a514b4e6a61427465394c4f69676368414a7665475773394332323033766118fe8201527f6f6e476c6b77725251323464646732796345646157554456734441785548734961191e8201527f77773665615234464665336d4a416b66426d5a6452395264774a485a6d47645261193e8201527f7950436a706a627a31712f584a34534949446b66384b4b6e6e32456c4b6d794c61195e8201527f69573442513836733151554b2f76426867524e776548766c5968687a7238706361197e8201527f67704b4b6d6f61576a7036426b594f48446c7835734b5647336365474539657661199e8201527f506e773563646667454242676f554946536238587632504553314772446a78456119be8201527f69524b6b697846716a54704d6d544b6b693148726a7a354368517155717845716119de8201527f544c6c4b6c53715571314772547231476a527130717846717a62744f6e5347656119fe8201527f3668374a6d627a4968355a6544696c315a58536a7430774375616b336c6e476f611a1e8201527f5655506f53734e663337394b326a6274716d44674d69485a42665a6c68324839611a3e8201527f75773738495469314a466a585653662f4336634f55667a346f30644178305447611a5e8201527f777448446863666a3443516d49694531444d5a42546b6c4e5a557065566f614f611a7e8201527f6e717633733234314e50503965766574594768435a50576a4979747332706173611a9e8201527f436a25324270556a54596c336b615574374f744b4a6136355850396d356e6367611abe8201527f364e686a685a587032762532426d57724341545a754a303368316b6a55756976611ade8201527f5067596e6a6e35744b4a4f6b326e6362703251414559585a69304b496d50356b611afe8201527f744961466e366b5a397743253237253239253230666f726d6174253238253237611b1e8201527f776f666632253237253239253342666f6e742d7765696768742533412532306e611b3e8201527f6f726d616c253342666f6e742d7374796c652533412532306e6f726d616c2533611b5e8201527f42666f6e742d646973706c617925334125323073776170253342253744746578611b7e8201527f74253230253742666f6e742d66616d696c792533412532302532375072657373611b9e8201527f2532305374617274253230325025323725334266696c6c253341253230776869611bbe8201527f74652537442e76616c7565253230253742666f6e742d73697a65253341253230611bde8201527f313070782533422537442e6e616d65253230253742666f6e742d73697a652533611bfe8201527f412532303470782533422537442533432f7374796c652533452533432f646566611c1e8201527f7325334525334372656374253230776964746825334425323738392532372532611c3e8201527f30686569676874253344253237353525323725323066696c6c25334425323762611c5e8201527f6c61636b2532372532302f253345253343726563742532307825334425323735611c7e8201527f2e3525323725323079253344253237352e352532372532307769647468253344611c9e8201527f2532373738253237253230686569676874253344253237343425323725323066611cbe8201527f696c6c2533442532372532333030303046462532372532302f25334525334374611cde8201527f657874253230746578742d616e63686f722533442532376d6964646c65253237611cfe8201527f2532307825334425323734342e35253237253230792533442532373333253237611d1e8201527f253230636c61737325334425323776616c756525323725334500000000000000611d3e820152612ba5612b9e6129f5611d5784018a61055b565b7f2533432f746578742533452533437265637425323078253344253237352e352581527f323725323079253344253237352e35253237253230776964746825334425323760208201527f373825323725323068656967687425334425323734342532372532307374726f60408201527f6b652533442532372532334646344630412532372532307374726f6b652d776960608201527f647468253344253237332532372532302f25334525334372656374253230782560808201527f334425323733302532372532307925334425323734352e35253237253230776960a08201527f647468253344253237353825323725323068656967687425334425323738253260c08201527f3725323066696c6c2533442532372532334646344630412532372532302f253360e08201527f4525334374657874253230746578742d616e63686f72253344253237656e64256101008201527f32372532307825334425323738372532372532307925334425323735322532376101208201527f253230636c6173732533442532376e616d6525323725334500000000000000006101408201526101580190565b86886105e3565b602160f81b81529050612bbb600182018561055b565b7f2533432f746578742533452533432f737667253345227d00000000000000000081526017019a995050505050505050505056fea2646970667358221220f64400964cf21cb4940de76482b5ee6f22f9e46a781e948eea81a1999aa43eb964736f6c63430008150033", "sourceMap": "171:8737:27:-:0;;;;;;;;;;;;;;;;;;;", "linkReferences": { "lib/eth-projects-monorepo/packages/eth-projects-contracts/contracts/lib/utils/Bytes.sol": { @@ -64,7 +64,7 @@ } }, "deployedBytecode": { - "object": "0x608060405234801561001057600080fd5b50600436106100365760003560e01c806306d4cd8b1461003b57806328de0f2f14610064575b600080fd5b61004e610049366004610322565b610077565b60405161005b919061038b565b60405180910390f35b61004e610072366004610404565b6100f1565b60606000610086600f846104fc565b90506000610095600f8361051e565b61009f9085610535565b905060006100ae826041610548565b60f81b9050806100c76100c2856001610548565b6101b6565b6040516020016100d8929190610577565b6040516020818303038152906040529350505050919050565b606060006100fe86610077565b90508383826101838873__$a792e50881dbcbffce7826062cdb0978aa$__63b5cdf924909160006040518363ffffffff1660e01b81526004016101429291906105a8565b602060405180830381865af415801561015f573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906100c291906105ca565b87878660405160200161019c97969594939291906105f2565b604051602081830303815290604052915050949350505050565b606060006101c383610249565b600101905060008167ffffffffffffffff8111156101e3576101e36103a5565b6040519080825280601f01601f19166020018201604052801561020d576020820181803683370190505b5090508181016020015b600019016f181899199a1a9b1b9c1cb0b131b232b360811b600a86061a8153600a850494508461021757509392505050565b60008072184f03e93ff9f4daa797ed6e38ed64bf6a1f0160401b83106102885772184f03e93ff9f4daa797ed6e38ed64bf6a1f0160401b830492506040015b6d04ee2d6d415b85acef810000000083106102b4576d04ee2d6d415b85acef8100000000830492506020015b662386f26fc1000083106102d257662386f26fc10000830492506010015b6305f5e10083106102ea576305f5e100830492506008015b61271083106102fe57612710830492506004015b60648310610310576064830492506002015b600a831061031c576001015b92915050565b60006020828403121561033457600080fd5b5035919050565b60005b8381101561035657818101518382015260200161033e565b50506000910152565b6000815180845261037781602086016020860161033b565b601f01601f19169290920160200192915050565b60208152600061039e602083018461035f565b9392505050565b634e487b7160e01b600052604160045260246000fd5b60008083601f8401126103cd57600080fd5b50813567ffffffffffffffff8111156103e557600080fd5b6020830191508360208285010111156103fd57600080fd5b9250929050565b6000806000806060858703121561041a57600080fd5b84359350602085013567ffffffffffffffff8082111561043957600080fd5b818701915087601f83011261044d57600080fd5b81358181111561045f5761045f6103a5565b604051601f8201601f19908116603f01168101908382118183101715610487576104876103a5565b816040528281528a60208487010111156104a057600080fd5b8260208601602083013760006020848301015280975050505060408701359150808211156104cd57600080fd5b506104da878288016103bb565b95989497509550505050565b634e487b7160e01b600052601160045260246000fd5b60008261051957634e487b7160e01b600052601260045260246000fd5b500490565b808202811582820484141761031c5761031c6104e6565b8181038181111561031c5761031c6104e6565b8082018082111561031c5761031c6104e6565b6000815161056d81856020860161033b565b9290920192915050565b6001600160f81b031983168152815160009061059a81600185016020870161033b565b919091016001019392505050565b6040815260006105bb604083018561035f565b90508260208301529392505050565b6000602082840312156105dc57600080fd5b5051919050565b81818437506000910190815290565b7f646174613a6170706c69636174696f6e2f6a736f6e2c7b22646573637269707481527f696f6e223a2022537461726b7368656574222c20226e616d65223a202200000060208201528688603d8301376000878201602160f81b603d820152875161066481603e840160208c0161033b565b7f222c22696d616765223a2022646174613a696d6167652f7376672b786d6c2c25603e92909101918201527f334373766725323076696577426f782533442532373025323030253230383925605e8201527f3230353525323725323066696c6c2533442532376e6f6e65253237253230786d607e8201527f6c6e73253344253237687474702533412f2f7777772e77332e6f72672f323030609e8201527f302f737667253237253345253343646566732533452533437374796c6525334560be8201527f253430666f6e742d66616365253230253742666f6e742d66616d696c7925334160de8201527f253230253237507265737325323053746172742532303250253237253342737260fe8201527f6325334125323075726c25323825323764617461253341666f6e742f776f666661011e8201527f32253342626173653634253243643039474d6741424141414141424c3841413861013e8201527f41414141415235774141424b674141454141414141414141414141414141414161015e8201527f4141414141414141414141414150305a4756453063476a41624d42794358675a61017e8201527f6741494e794551674b3846545361517544524141424e67496b41344e4d42434161019e8201527f46687a5148684649623644566c42306a314f4d4253336f4f4953744562732f2f6101be8201527f2f6c4a776356727a47634f30676f684c45484d6369694443434e57695a6761306101de8201527f79625345555954514f6a4b427038546c737a7344526438716174586c333058746101fe8201527f30645a47467952305668444b776c62746c25324272734643773945316e64655961021e8201527f4a74732f37527762305673784d71576c636a6a775445537a2f5568752f77337361023e8201527f33746b6f496d70343464515168576f456d54337579526d70746f7553446b7a5761025e8201527f454138762f3932364a4b7539486f696e6e3673376674336d4965476c7737547161027e8201527f6437456f326a46517849766a5642494a70563269614f62547a68575932314e7461029e8201527f476772687434704d4b3457556a34624c7967542f51253242514c7879253242336102be8201527f6c482f362f6b6275496444497239446a724a496a6f394a7336524d58253242456102de8201527f6b37424f545a6b6d70397a347455524652566656307148504448375a7462364a6102fe8201527f616f6130684c335975616232473373667a72365776394536793569767025324261031e8201527f7135564c74426a514478476f5345304150313762336466376c61726a6525324261033e8201527f73637a6b7241744a334b6657304a342532424b323365744b4b556a383554616f61035e8201527f57473453346158436c427743413268676141652532423658396f696e32304e6261037e8201527f554a7264466767517049686d5247494d30372f7025324277375a7058316c473161039e8201527f6a6a51787073435141423438714445415042346950312f6a39592f4261686a356103be8201527f5943414e302f78714157496852616a6c6e694e654f50396e78433466667932556103de8201527f694843304e47386b686f6f567a6f7459334445417a417a41356b473735337a6a6103fe8201527f4853354d6e6d586b69496a6d54554d36556d4d3025324256346976752f48377861041e8201527f6a364666322f6b343472787a6449324141676742492f4c48416b394a7a35554d61043e8201527f496f4c7755344146455435725a464f33444d616655633061777351434879497061045e8201527f557a546b30784a474a454f6a4e6871436b474570496153474f6a714e466d2f5761047e8201527f4e434e3569636b71434d6e414165564c4d4c655867356971386b365752585a5261049e8201527f326c337042393831427a73475a743225324256696c4342723954494a674b67786104be8201527f365542514446253242566a4b44714e7741414948386a6949664d6e75384b68666104de8201527f584b486f4e3348634134477245786842324155442f795a554d423857547579496104fe8201527f413444634f4b656434397939504249616e426967734d454e38556b30766c547661051e8201527f304a58334e394d795a75544d763573655357413525324238556538504465547261053e8201527f645467474973566d4e33635856586a6463795275633434385866664176506e7361055e8201527f3575324d4531722532426a4731703137767a3849704f416e483444427367793361057e8201527f512f54376b33646d2f3846334232377355694877464631414f6c683055646e4961059e8201527f4471494e5164506355393145786f2f346252696a6a5169704e4e307a4c646c7a6105be8201527f504438496f547449734c38717162746f4f5149514a5a567849705931315073536105de8201527f55533231397a4c585066642f507667765751346372464d2532425769755671706105fe8201527f645a6f4e6475645872632f4745324d4a36656e3575635746694763375274364f61061e8201527f487676354d674c2532427a44733578444277696141315433554877326b63594361063e8201527f312f55666453316645316d37763742346537653350574848786533594f32483561065e8201527f25324241504f5a7965503025324251506553425468793078713965363241486a61067e8201527f6141556842432f364144484c6f476f4f657636412532426867487369317a613861069e8201527f71355a4e4d716a596c575a4d713867354248445574495370574a73526f52544a6106be8201527f56613049305a3957546b5371564b73507a3464586a7648746449684c6e7670746106de8201527f554c4330753542567579414d544b4a513930594b5267546e5769476b6d7153456106fe8201527f714b6d7256685259674b6b335443686255573671456f45637665577a6859535461071e8201527f4c32484e706735452f6d7151393956564467763352475435586d33637a68754c61073e8201527f3972685864316132372f736c5130686959366a643739614f5a43746a6f52687261075e8201527f623136575676514b725734477a786a7869723238494d697a2f7155447973495761077e8201527f7037516a667765347a556437614a735651575179524c554b484b42577938577661079e8201527f45565333584d53353656337757644f442532424638757639645477496d4b722f6107be8201527f5064626d5763775176456641616a7975566a70784e32704f56635769336c38776107de8201527f454c2f6d395070646f55494536253242504b5838315041546d67654f304231736107fe8201527f47454825324261707a353466646d534a7a333741686635366a4c7739756e504561081e8201527f35644d4b3025324237544639563843435466523979664e7355493474557a464661083e8201527f42326e536e384b4f626a64446964554c7034494a6873777878595172595a643661085e8201527f4e76436e55394d445825324252654c6e4d546d6c315a453972306b5077334e3261087e8201527f6752253242736a4573596d4953706b356c31497333594e614a4b6f6e7a65703761089e8201527f56637354316e556b62347048774b5a41796b614b6f43504630506f6d456876496108be8201527f5758656e6f5a767836774f4b313070316c3274546858793850316555776473766108de8201527f53715157766f424d7473674851554a614774494273756861776450545a5378596108fe8201527f707257757734647a7231564755744449465871726f4d4d69597346783857695461091e8201527f336463574b6f376d50554c79715657413972305974524a4c626957766a6e4c2561093e8201527f324272633452646767624e516c514141613264306d616236364d48447074314361095e8201527f6477626b51436253375053445a4d7a3746724f51713165636153304a6c74644161097e8201527f6c44527941587173364130586247707748676b70367572557757416272464d3361099e8201527f75794d764e4b6c344d6c435548537950416d3931776144454a3559595148754a6109be8201527f4d32304b575251737637486b61334770686c533258444b714f4b4245554753316109de8201527f65306b63316f323449494166486c4449794278584a4a656767423369386174566109fe8201527f67434f3064444f5a484a57596a564c416a6a397137765673456e72684b374568610a1e8201527f4c75427a42586d4d674554634531636d61436976504b6f4a766670466c794935610a3e8201527f4d70584234454325324245672f596d303454787843354e6c73596b74646f5951610a5e8201527f55656c38624673456c3748345a36734377622f38626b347458574658504b6a71610a7e8201527f5462526e64336e4c5770394f784941706c664b586747684e6c72443462354a4c610a9e8201527f5a367055753441726756614d366561357844574244476f7a707a4641376e6747610abe8201527f74596334486141775269475576637653653652414177335a576b564f4667764b610ade8201527f46364955696c4d49394964715155345134585264484866736666517770313955610afe8201527f434a49306a5773725433356f5578303678507268473271364d4533554f306c63610b1e8201527f635a557354454351784a44527854444b6c334c4948722f6162546f73686c6466610b3e8201527f51786a364f57745273466e6966444373473674336b426f344e6d424a6d615556610b5e8201527f54636c794951414a4c6a6e723042365a3859464d6e396b397967703752727848610b7e8201527f36766877624a4e41654b4d554436353974386746514a4d5377652f434f624850610b9e8201527f467671484746554e5266253242737245663354584b42725a76676b6369396972610bbe8201527f426d63442f7458616754474358634e68432532424f3539754c706e6673796f71610bde8201527f4c53313238374552776d38666165564f6d3857634437386c5a36594232793938610bfe8201527f5a4c6c4d3972557264324c514e6c324956643454727376675139363079377573610c1e8201527f5965306854506170576a71726c2532425837784665424e54253242315a644a4a610c3e8201527f572532424678745737584e7774634e7a7761672532425256656a6d4a6839656d610c5e8201527f6c495a4b69694e63694b3849554f4d33556a4a376342554e5847505853326c68610c7e8201527f253242687770676f4836567348524f63764569723372585970344c7769435a77610c9e8201527f3176486c43623552314d68623564536e4f326d6e6f475a6f5846315765574757610cbe8201527f6d7a694a314a555534715072306e694a536c4e424331636b4b6d4a6657625877610cde8201527f5577757449547a456d6a776770776142753464525066746a2f4e384143526e64610cfe8201527f616b2f4641674b674c37305058577839767a6b59322532426d34355473496b4c610d1e8201527f3037616f70444e6f676830535262535a534f397a744657516a376e574c676275610d3e8201527f364325324254374b6a44715a3667456e5277674d78306b4c5a77797962514f76610d5e8201527f514130773054782f354a42722f63595a6453574f546a774446364e6f586b796a610d7e8201527f33566a484e4751494e76426a5a734a4a3377466141516d6f5a575a5970416961610d9e8201527f574f466e6e686455524176576b557a77693062677a5a4158796f445545714863610dbe8201527f57307069454c574f777168773365765478444957724e32495371525151454c41610dde8201527f4d32365334486c723548552f48784a43436844424a6b756b6341573856415430610dfe8201527f6770545a544b4e48677a444f7234314751656a4f34677a416e6b577077464752610e1e8201527f43334c625231787a4b434875365635694674674c704f384b51596d5965467868610e3e8201527f4c32643838736469506a2f76306b427a636c51637954735766324d6445394944610e5e8201527f386d5858576a72434b253242354532756e336e6976656973526e726971317548610e7e8201527f594d6a6a69694945304b6466674d6f3163476d6b557254624f30356732737633610e9e8201527f477673525971762f61457736375472644f705435567a4641364131417939634b610ebe8201527f6f44667762544a64445750524e57517354796a6d3772486249734b466b6f4f2f610ede8201527f5a4c4376735966785973337768534338614c49344b765677373773336e347a48610efe8201527f67697061634a6e435362463945727a53357069386343577655597a4f5064327a610f1e8201527f684a2f4750437a53684f453378596c634f3350796164586a54334f6b68706841610f3e8201527f58465853766865544e5355525446565641486f4a6d7949726b6a454b6f517746610f5e8201527f4730303554334158643935764e30446d336d427332786746546c253242513572610f7e8201527f73416a6e744768707a6f62643642374e7a52664e56653130446f4e5639343753610f9e8201527f59646f635252624776636d785456786f61367a717756376d416e773544314745610fbe8201527f5474327a48382532425476514256356e37672f32615768743979794e594c3974610fde8201527f4f42744167384846435945316d4e775432454232467538544968543776565241610ffe8201527f3461587a6e6b3670545a4e6779696f73747749364b654655374c696c7041253261101e8201527f42334234474a794277574d327062466a4876734a3747754f6f616b6a6d46746a61103e8201527f59344c6254396c323239253242453646374c4475577a744c6e333749786b386a61105e8201527f356c42564b33774c7369362f416641756f6a34396c4d6b5653545045396b704761107e8201527f64304c724555534a4941413070596c4178414d642f4e4f46776f4a446458466961109e8201527f307a4f5744422f54464a705666575642574f516274724a556230636c663369256110be8201527f3242575072446f596c65545674564f45306d36793564487444725551776f414c6110de8201527f7455523365585364444d4e785866656a594674764c626c726c4a7777484b2f456110fe8201527f6957504a616b32574b35386e684e6f4c6a615a55475841756f32656f5777464561111e8201527f66612f445334496958717246714779633348726939785132693243352f73357661113e8201527f7a424d30793777334d4473774d3759325247427172464d6778374f696325324261115e8201527f30497a736d5678617a5473305263666a324f3334532f525639503269486f427561117e8201527f6c4b49594244665a46654c53356439725379664a64536c67683268644d72324f61119e8201527f5552334b6e6c506e4f41785477314a384c4d325a776e4671765a745a4a6c78786111be8201527f343873776243743272316b664875443756624831326159383849437456734b786111de8201527f4b742f31726b616c42414d74782f6f6f6d43445059626b556f4c6344624b436a6111fe8201527f7675713953544467746a584744715735564b36686347654f46697a6a3643714c61121e8201527f4f49716b57783477733245504d444e7378253242613661533230384f39784c3061123e8201527f526146586f394241645530706e452532424c695359334b536f4a41525978646e61125e8201527f7a69545a4d706961442f3438496969393834446151357976656378414673735761127e8201527f792f686274696d63253242704c386b35796f70496d4a627948712f6138797a6c61129e8201527f6c37726f4f7a586d786d4163337459585363546b65734d6344324939315a36336112be8201527f6549312f394a627755716b36737863394b52677277574d414e6543314e6e39756112de8201527f4779775473706d5538712532426c5a6d43714d674153363662674841476a514b6112fe8201527f73754a334451416a5235346d356a4c7a5a616e546c62646530253242726e663461131e8201527f385a574138546c32673277414779427748516e3552322532424e6a726542677861133e8201527f626c734e46627554776d6862414a48737a2f72416f61764c4f34317874767a5961135e8201527f4768336e4c4a426b41506a7578424a445248333048426575385567436978464e61137e8201527f437951322f4b253242385157372f6530253242664f2532423436524e5730657961139e8201527f4c726f39446a5467704a4e4d3547385179306c54644f756d73773066715045696113be8201527f393646702532424830634d774e6f376a787a596d6e4e664d5a6d64506c7932706113de8201527f6f7132575065476d67507136474c78504e34536c4b486e7870624f69754c58516113fe8201527f75583155715031676a6f38426136536c55314f416d5267707a7531735444584a61141e8201527f50754d3338546f387130344c324e777970653837327777556741675a6c70386461143e8201527f6b5166397a38544d43624d6b596b3758484375333564375a5a41656f346b5a4b61145e8201527f68784953386945354c546a334c4f6976485a7268394a3870337a4c5a436a776361147e8201527f6970354452694b6e576e49664c33386b4a684d7452776a67553525324256726d61149e8201527f714b6c6739307a376a64732f4238444b646b464c76483353253242376f4838616114be8201527f6c445a6c626734533155583574434d445342324f364b756c7a41344b763067376114de8201527f314251643054464b7733685358696e62374e6c304258725873514e6376436b386114fe8201527f6d6f394f786965783559627a78564e2f6b3738336f48545a495777393079495a61151e8201527f777672697164475473586e54384965705437597946434f4a6741395a3042794961153e8201527f455956735478522f6b73616b324268376f4b767034766e695530364d57317a4261155e8201527f4672746568647a306b6b587951786a426d7965645636644d596545386146787461157e8201527f6575777355466136466c6c54446c716430707a525a77473663467266574d627061159e8201527f384738587a6a66624d253242354658657076356f457273696c363458783663376115be8201527f5841576275696d3666387347494d58666f334a6971476b703333376854536a676115de8201527f65636862364f42472f327a31376a6f6d4469476d253242476c623146553069656115fe8201527f6e7552796977654c576767447a6d4655765545556a5a6f377356544877684f4661161e8201527f504d6b4e737146423977796d6b45307639666d7477453854377135384e594f3761163e8201527f787534623833766e46766c35755378446c472532426b4f51675249644f346a6761165e8201527f7a786a53486a4b4c7332742f6c684f647771766131415744437072763344345361167e8201527f34523741625934544362664b4637744265363554343551347a7a49714433316161169e8201527f79797557716a692532424636585337535439483943314f342f694b366b4775766116be8201527f6b512f664e3537487837456533373435622f76766e2f62482f58253242392f256116de8201527f32426762656d684f416d49705576755157757344764b517578394a44564e734b6116fe8201527f673651636d6b73515341445530346347524c523768466f5a326337785545664761171e8201527f253242776b755459474d764c6a422f6550634936416847686e5735717a45416961173e8201527f4a586377564545775869654e70536c317a6a457253253242435325324248634c61175e8201527f6f52506d7661324d6767412f69794c67536f544a555767733442794149514f3061177e8201527f4f6f705a487656627a6844494c65557155677a7a48492f667950474e7879777361179e8201527f6f796c6865534639577662795363336b4544716b32415636436c4364635535536117be8201527f6e6c4e6e4963394b794d63384c79622532423867484f4a795173466c4c6250526117de8201527f796d6d374a42743349545a544162314732444252496b514b51705451396939626117fe8201527f3665435353387a4d366161525364544b5657524d336663454a4c644b61746e7361181e8201527f724959774e4a55253242733048364461757832775a35686733706c653042474861183e8201527f756b316b4543734859446461496d4b7025324233463542317859763763486b7161185e8201527f644475306a4b645273657a3531376d63563641685148346931484e3173766c6a61187e8201527f5248366845454672682532426e72726d47316e33307a4d346749776d694d774561189e8201527f624b6842545564423141486f582532424b6741517a4f48543946494f71436b526118be8201527f4e4e623273397170496943534f753167576868497343564a73765771457175356118de8201527f47624a514b4e6a61427465394c4f69676368414a7665475773394332323033766118fe8201527f6f6e476c6b77725251323464646732796345646157554456734441785548734961191e8201527f77773665615234464665336d4a416b66426d5a6452395264774a485a6d47645261193e8201527f7950436a706a627a31712f584a34534949446b66384b4b6e6e32456c4b6d794c61195e8201527f69573442513836733151554b2f76426867524e776548766c5968687a7238706361197e8201527f67704b4b6d6f61576a7036426b594f48446c7835734b5647336365474539657661199e8201527f506e773563646667454242676f554946536238587632504553314772446a78456119be8201527f69524b6b697846716a54704d6d544b6b693148726a7a354368517155717845716119de8201527f544c6c4b6c53715571314772547231476a527130717846717a62744f6e5347656119fe8201527f3668374a6d627a4968355a6544696c315a58536a7430774375616b336c6e476f611a1e8201527f5655506f53734e663337394b326a6274716d44674d69485a42665a6c68324839611a3e8201527f75773738495469314a466a585653662f4336634f55667a346f30644178305447611a5e8201527f777448446863666a3443516d49694531444d5a42546b6c4e5a557065566f614f611a7e8201527f6e717633733234314e50503965766574594768435a50576a4979747332706173611a9e8201527f436a25324270556a54596c336b615574374f744b4a6136355850396d356e6367611abe8201527f364e686a685a587032762532426d57724341545a754a303368316b6a55756976611ade8201527f5067596e6a6e35744b4a4f6b326e6362703251414559585a69304b496d50356b611afe8201527f744961466e366b5a397743253237253239253230666f726d6174253238253237611b1e8201527f776f666632253237253239253342666f6e742d7765696768742533412532306e611b3e8201527f6f726d616c253342666f6e742d7374796c652533412532306e6f726d616c2533611b5e8201527f42666f6e742d646973706c617925334125323073776170253342253744746578611b7e8201527f74253230253742666f6e742d66616d696c792533412532302532375072657373611b9e8201527f2532305374617274253230325025323725334266696c6c253341253230776869611bbe8201527f74652537442e76616c7565253230253742666f6e742d73697a65253341253230611bde8201527f313070782533422537442e6e616d65253230253742666f6e742d73697a652533611bfe8201527f412532303470782533422537442533432f7374796c652533452533432f646566611c1e8201527f7325334525334372656374253230776964746825334425323738392532372532611c3e8201527f30686569676874253344253237353525323725323066696c6c25334425323762611c5e8201527f6c61636b2532372532302f253345253343726563742532307825334425323735611c7e8201527f2e3525323725323079253344253237352e352532372532307769647468253344611c9e8201527f2532373738253237253230686569676874253344253237343425323725323066611cbe8201527f696c6c2533442532372532333030303046462532372532302f25334525334374611cde8201527f657874253230746578742d616e63686f722533442532376d6964646c65253237611cfe8201527f2532307825334425323734342e35253237253230792533442532373333253237611d1e8201527f253230636c61737325334425323776616c756525323725334500000000000000611d3e820152612ba5612b9e6129f5611d5784018a61055b565b7f2533432f746578742533452533437265637425323078253344253237352e352581527f323725323079253344253237352e35253237253230776964746825334425323760208201527f373825323725323068656967687425334425323734342532372532307374726f60408201527f6b652533442532372532334646344630412532372532307374726f6b652d776960608201527f647468253344253237332532372532302f25334525334372656374253230782560808201527f334425323733302532372532307925334425323734352e35253237253230776960a08201527f647468253344253237353825323725323068656967687425334425323738253260c08201527f3725323066696c6c2533442532372532334646344630412532372532302f253360e08201527f4525334374657874253230746578742d616e63686f72253344253237656e64256101008201527f32372532307825334425323738372532372532307925334425323735322532376101208201527f253230636c6173732533442532376e616d6525323725334500000000000000006101408201526101580190565b86886105e3565b602160f81b81529050612bbb600182018561055b565b7f2533432f746578742533452533432f737667253345227d00000000000000000081526017019a995050505050505050505056fea26469706673582212206a2c00c13ddb4f1bcd7ee36e36f0c874d7d9dadcf38306eab3610b5a6e7af83464736f6c63430008110033", + "object": "0x608060405234801561001057600080fd5b50600436106100365760003560e01c806306d4cd8b1461003b57806328de0f2f14610064575b600080fd5b61004e610049366004610322565b610077565b60405161005b919061038b565b60405180910390f35b61004e610072366004610404565b6100f1565b60606000610086600f846104fc565b90506000610095600f8361051e565b61009f9085610535565b905060006100ae826041610548565b60f81b9050806100c76100c2856001610548565b6101b6565b6040516020016100d8929190610577565b6040516020818303038152906040529350505050919050565b606060006100fe86610077565b90508383826101838873__$a792e50881dbcbffce7826062cdb0978aa$__63b5cdf924909160006040518363ffffffff1660e01b81526004016101429291906105a8565b602060405180830381865af415801561015f573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906100c291906105ca565b87878660405160200161019c97969594939291906105f2565b604051602081830303815290604052915050949350505050565b606060006101c383610249565b600101905060008167ffffffffffffffff8111156101e3576101e36103a5565b6040519080825280601f01601f19166020018201604052801561020d576020820181803683370190505b5090508181016020015b600019016f181899199a1a9b1b9c1cb0b131b232b360811b600a86061a8153600a850494508461021757509392505050565b60008072184f03e93ff9f4daa797ed6e38ed64bf6a1f0160401b83106102885772184f03e93ff9f4daa797ed6e38ed64bf6a1f0160401b830492506040015b6d04ee2d6d415b85acef810000000083106102b4576d04ee2d6d415b85acef8100000000830492506020015b662386f26fc1000083106102d257662386f26fc10000830492506010015b6305f5e10083106102ea576305f5e100830492506008015b61271083106102fe57612710830492506004015b60648310610310576064830492506002015b600a831061031c576001015b92915050565b60006020828403121561033457600080fd5b5035919050565b60005b8381101561035657818101518382015260200161033e565b50506000910152565b6000815180845261037781602086016020860161033b565b601f01601f19169290920160200192915050565b60208152600061039e602083018461035f565b9392505050565b634e487b7160e01b600052604160045260246000fd5b60008083601f8401126103cd57600080fd5b50813567ffffffffffffffff8111156103e557600080fd5b6020830191508360208285010111156103fd57600080fd5b9250929050565b6000806000806060858703121561041a57600080fd5b84359350602085013567ffffffffffffffff8082111561043957600080fd5b818701915087601f83011261044d57600080fd5b81358181111561045f5761045f6103a5565b604051601f8201601f19908116603f01168101908382118183101715610487576104876103a5565b816040528281528a60208487010111156104a057600080fd5b8260208601602083013760006020848301015280975050505060408701359150808211156104cd57600080fd5b506104da878288016103bb565b95989497509550505050565b634e487b7160e01b600052601160045260246000fd5b60008261051957634e487b7160e01b600052601260045260246000fd5b500490565b808202811582820484141761031c5761031c6104e6565b8181038181111561031c5761031c6104e6565b8082018082111561031c5761031c6104e6565b6000815161056d81856020860161033b565b9290920192915050565b6001600160f81b031983168152815160009061059a81600185016020870161033b565b919091016001019392505050565b6040815260006105bb604083018561035f565b90508260208301529392505050565b6000602082840312156105dc57600080fd5b5051919050565b81818437506000910190815290565b7f646174613a6170706c69636174696f6e2f6a736f6e2c7b22646573637269707481527f696f6e223a2022537461726b7368656574222c20226e616d65223a202200000060208201528688603d8301376000878201602160f81b603d820152875161066481603e840160208c0161033b565b7f222c22696d616765223a2022646174613a696d6167652f7376672b786d6c2c25603e92909101918201527f334373766725323076696577426f782533442532373025323030253230383925605e8201527f3230353525323725323066696c6c2533442532376e6f6e65253237253230786d607e8201527f6c6e73253344253237687474702533412f2f7777772e77332e6f72672f323030609e8201527f302f737667253237253345253343646566732533452533437374796c6525334560be8201527f253430666f6e742d66616365253230253742666f6e742d66616d696c7925334160de8201527f253230253237507265737325323053746172742532303250253237253342737260fe8201527f6325334125323075726c25323825323764617461253341666f6e742f776f666661011e8201527f32253342626173653634253243643039474d6741424141414141424c3841413861013e8201527f41414141415235774141424b674141454141414141414141414141414141414161015e8201527f4141414141414141414141414150305a4756453063476a41624d42794358675a61017e8201527f6741494e794551674b3846545361517544524141424e67496b41344e4d42434161019e8201527f46687a5148684649623644566c42306a314f4d4253336f4f4953744562732f2f6101be8201527f2f6c4a776356727a47634f30676f684c45484d6369694443434e57695a6761306101de8201527f79625345555954514f6a4b427038546c737a7344526438716174586c333058746101fe8201527f30645a47467952305668444b776c62746c25324272734643773945316e64655961021e8201527f4a74732f37527762305673784d71576c636a6a775445537a2f5568752f77337361023e8201527f33746b6f496d70343464515168576f456d54337579526d70746f7553446b7a5761025e8201527f454138762f3932364a4b7539486f696e6e3673376674336d4965476c7737547161027e8201527f6437456f326a46517849766a5642494a70563269614f62547a68575932314e7461029e8201527f476772687434704d4b3457556a34624c7967542f51253242514c7879253242336102be8201527f6c482f362f6b6275496444497239446a724a496a6f394a7336524d58253242456102de8201527f6b37424f545a6b6d70397a347455524652566656307148504448375a7462364a6102fe8201527f616f6130684c335975616232473373667a72365776394536793569767025324261031e8201527f7135564c74426a514478476f5345304150313762336466376c61726a6525324261033e8201527f73637a6b7241744a334b6657304a342532424b323365744b4b556a383554616f61035e8201527f57473453346158436c427743413268676141652532423658396f696e32304e6261037e8201527f554a7264466767517049686d5247494d30372f7025324277375a7058316c473161039e8201527f6a6a51787073435141423438714445415042346950312f6a39592f4261686a356103be8201527f5943414e302f78714157496852616a6c6e694e654f50396e78433466667932556103de8201527f694843304e47386b686f6f567a6f7459334445417a417a41356b473735337a6a6103fe8201527f4853354d6e6d586b69496a6d54554d36556d4d3025324256346976752f48377861041e8201527f6a364666322f6b343472787a6449324141676742492f4c48416b394a7a35554d61043e8201527f496f4c7755344146455435725a464f33444d616655633061777351434879497061045e8201527f557a546b30784a474a454f6a4e6871436b474570496153474f6a714e466d2f5761047e8201527f4e434e3569636b71434d6e414165564c4d4c655867356971386b365752585a5261049e8201527f326c337042393831427a73475a743225324256696c4342723954494a674b67786104be8201527f365542514446253242566a4b44714e7741414948386a6949664d6e75384b68666104de8201527f584b486f4e3348634134477245786842324155442f795a554d423857547579496104fe8201527f413444634f4b656434397939504249616e426967734d454e38556b30766c547661051e8201527f304a58334e394d795a75544d763573655357413525324238556538504465547261053e8201527f645467474973566d4e33635856586a6463795275633434385866664176506e7361055e8201527f3575324d4531722532426a4731703137767a3849704f416e483444427367793361057e8201527f512f54376b33646d2f3846334232377355694877464631414f6c683055646e4961059e8201527f4471494e5164506355393145786f2f346252696a6a5169704e4e307a4c646c7a6105be8201527f504438496f547449734c38717162746f4f5149514a5a567849705931315073536105de8201527f55533231397a4c585066642f507667765751346372464d2532425769755671706105fe8201527f645a6f4e6475645872632f4745324d4a36656e3575635746694763375274364f61061e8201527f487676354d674c2532427a44733578444277696141315433554877326b63594361063e8201527f312f55666453316645316d37763742346537653350574848786533594f32483561065e8201527f25324241504f5a7965503025324251506553425468793078713965363241486a61067e8201527f6141556842432f364144484c6f476f4f657636412532426867487369317a613861069e8201527f71355a4e4d716a596c575a4d713867354248445574495370574a73526f52544a6106be8201527f56613049305a3957546b5371564b73507a3464586a7648746449684c6e7670746106de8201527f554c4330753542567579414d544b4a513930594b5267546e5769476b6d7153456106fe8201527f714b6d7256685259674b6b335443686255573671456f45637665577a6859535461071e8201527f4c32484e706735452f6d7151393956564467763352475435586d33637a68754c61073e8201527f3972685864316132372f736c5130686959366a643739614f5a43746a6f52687261075e8201527f623136575676514b725734477a786a7869723238494d697a2f7155447973495761077e8201527f7037516a667765347a556437614a735651575179524c554b484b42577938577661079e8201527f45565333584d53353656337757644f442532424638757639645477496d4b722f6107be8201527f5064626d5763775176456641616a7975566a70784e32704f56635769336c38776107de8201527f454c2f6d395070646f55494536253242504b5838315041546d67654f304231736107fe8201527f47454825324261707a353466646d534a7a333741686635366a4c7739756e504561081e8201527f35644d4b3025324237544639563843435466523979664e7355493474557a464661083e8201527f42326e536e384b4f626a64446964554c7034494a6873777878595172595a643661085e8201527f4e76436e55394d445825324252654c6e4d546d6c315a453972306b5077334e3261087e8201527f6752253242736a4573596d4953706b356c31497333594e614a4b6f6e7a65703761089e8201527f56637354316e556b62347048774b5a41796b614b6f43504630506f6d456876496108be8201527f5758656e6f5a767836774f4b313070316c3274546858793850316555776473766108de8201527f53715157766f424d7473674851554a614774494273756861776450545a5378596108fe8201527f707257757734647a7231564755744449465871726f4d4d69597346783857695461091e8201527f336463574b6f376d50554c79715657413972305974524a4c626957766a6e4c2561093e8201527f324272633452646767624e516c514141613264306d616236364d48447074314361095e8201527f6477626b51436253375053445a4d7a3746724f51713165636153304a6c74644161097e8201527f6c44527941587173364130586247707748676b70367572557757416272464d3361099e8201527f75794d764e4b6c344d6c435548537950416d3931776144454a3559595148754a6109be8201527f4d32304b575251737637486b61334770686c533258444b714f4b4245554753316109de8201527f65306b63316f323449494166486c4449794278584a4a656767423369386174566109fe8201527f67434f3064444f5a484a57596a564c416a6a397137765673456e72684b374568610a1e8201527f4c75427a42586d4d674554634531636d61436976504b6f4a766670466c794935610a3e8201527f4d70584234454325324245672f596d303454787843354e6c73596b74646f5951610a5e8201527f55656c38624673456c3748345a36734377622f38626b347458574658504b6a71610a7e8201527f5462526e64336e4c5770394f784941706c664b586747684e6c72443462354a4c610a9e8201527f5a367055753441726756614d366561357844574244476f7a707a4641376e6747610abe8201527f74596334486141775269475576637653653652414177335a576b564f4667764b610ade8201527f46364955696c4d49394964715155345134585264484866736666517770313955610afe8201527f434a49306a5773725433356f5578303678507268473271364d4533554f306c63610b1e8201527f635a557354454351784a44527854444b6c334c4948722f6162546f73686c6466610b3e8201527f51786a364f57745273466e6966444373473674336b426f344e6d424a6d615556610b5e8201527f54636c794951414a4c6a6e723042365a3859464d6e396b397967703752727848610b7e8201527f36766877624a4e41654b4d554436353974386746514a4d5377652f434f624850610b9e8201527f467671484746554e5266253242737245663354584b42725a76676b6369396972610bbe8201527f426d63442f7458616754474358634e68432532424f3539754c706e6673796f71610bde8201527f4c53313238374552776d38666165564f6d3857634437386c5a36594232793938610bfe8201527f5a4c6c4d3972557264324c514e6c324956643454727376675139363079377573610c1e8201527f5965306854506170576a71726c2532425837784665424e54253242315a644a4a610c3e8201527f572532424678745737584e7774634e7a7761672532425256656a6d4a6839656d610c5e8201527f6c495a4b69694e63694b3849554f4d33556a4a376342554e5847505853326c68610c7e8201527f253242687770676f4836567348524f63764569723372585970344c7769435a77610c9e8201527f3176486c43623552314d68623564536e4f326d6e6f475a6f5846315765574757610cbe8201527f6d7a694a314a555534715072306e694a536c4e424331636b4b6d4a6657625877610cde8201527f5577757449547a456d6a776770776142753464525066746a2f4e384143526e64610cfe8201527f616b2f4641674b674c37305058577839767a6b59322532426d34355473496b4c610d1e8201527f3037616f70444e6f676830535262535a534f397a744657516a376e574c676275610d3e8201527f364325324254374b6a44715a3667456e5277674d78306b4c5a77797962514f76610d5e8201527f514130773054782f354a42722f63595a6453574f546a774446364e6f586b796a610d7e8201527f33566a484e4751494e76426a5a734a4a3377466141516d6f5a575a5970416961610d9e8201527f574f466e6e686455524176576b557a77693062677a5a4158796f445545714863610dbe8201527f57307069454c574f777168773365765478444957724e32495371525151454c41610dde8201527f4d32365334486c723548552f48784a43436844424a6b756b6341573856415430610dfe8201527f6770545a544b4e48677a444f7234314751656a4f34677a416e6b577077464752610e1e8201527f43334c625231787a4b434875365635694674674c704f384b51596d5965467868610e3e8201527f4c32643838736469506a2f76306b427a636c51637954735766324d6445394944610e5e8201527f386d5858576a72434b253242354532756e336e6976656973526e726971317548610e7e8201527f594d6a6a69694945304b6466674d6f3163476d6b557254624f30356732737633610e9e8201527f477673525971762f61457736375472644f705435567a4641364131417939634b610ebe8201527f6f44667762544a64445750524e57517354796a6d3772486249734b466b6f4f2f610ede8201527f5a4c4376735966785973337768534338614c49344b765677373773336e347a48610efe8201527f67697061634a6e435362463945727a53357069386343577655597a4f5064327a610f1e8201527f684a2f4750437a53684f453378596c634f3350796164586a54334f6b68706841610f3e8201527f58465853766865544e5355525446565641486f4a6d7949726b6a454b6f517746610f5e8201527f4730303554334158643935764e30446d336d427332786746546c253242513572610f7e8201527f73416a6e744768707a6f62643642374e7a52664e56653130446f4e5639343753610f9e8201527f59646f635252624776636d785456786f61367a717756376d416e773544314745610fbe8201527f5474327a48382532425476514256356e37672f32615768743979794e594c3974610fde8201527f4f42744167384846435945316d4e775432454232467538544968543776565241610ffe8201527f3461587a6e6b3670545a4e6779696f73747749364b654655374c696c7041253261101e8201527f42334234474a794277574d327062466a4876734a3747754f6f616b6a6d46746a61103e8201527f59344c6254396c323239253242453646374c4475577a744c6e333749786b386a61105e8201527f356c42564b33774c7369362f416641756f6a34396c4d6b5653545045396b704761107e8201527f64304c724555534a4941413070596c4178414d642f4e4f46776f4a446458466961109e8201527f307a4f5744422f54464a705666575642574f516274724a556230636c663369256110be8201527f3242575072446f596c65545674564f45306d36793564487444725551776f414c6110de8201527f7455523365585364444d4e785866656a594674764c626c726c4a7777484b2f456110fe8201527f6957504a616b32574b35386e684e6f4c6a615a55475841756f32656f5777464561111e8201527f66612f445334496958717246714779633348726939785132693243352f73357661113e8201527f7a424d30793777334d4473774d3759325247427172464d6778374f696325324261115e8201527f30497a736d5678617a5473305263666a324f3334532f525639503269486f427561117e8201527f6c4b49594244665a46654c53356439725379664a64536c67683268644d72324f61119e8201527f5552334b6e6c506e4f41785477314a384c4d325a776e4671765a745a4a6c78786111be8201527f343873776243743272316b664875443756624831326159383849437456734b786111de8201527f4b742f31726b616c42414d74782f6f6f6d43445059626b556f4c6344624b436a6111fe8201527f7675713953544467746a584744715735564b36686347654f46697a6a3643714c61121e8201527f4f49716b57783477733245504d444e7378253242613661533230384f39784c3061123e8201527f526146586f394241645530706e452532424c695359334b536f4a41525978646e61125e8201527f7a69545a4d706961442f3438496969393834446151357976656378414673735761127e8201527f792f686274696d63253242704c386b35796f70496d4a627948712f6138797a6c61129e8201527f6c37726f4f7a586d786d4163337459585363546b65734d6344324939315a36336112be8201527f6549312f394a627755716b36737863394b52677277574d414e6543314e6e39756112de8201527f4779775473706d5538712532426c5a6d43714d674153363662674841476a514b6112fe8201527f73754a334451416a5235346d356a4c7a5a616e546c62646530253242726e663461131e8201527f385a574138546c32673277414779427748516e3552322532424e6a726542677861133e8201527f626c734e46627554776d6862414a48737a2f72416f61764c4f34317874767a5961135e8201527f4768336e4c4a426b41506a7578424a445248333048426575385567436978464e61137e8201527f437951322f4b253242385157372f6530253242664f2532423436524e5730657961139e8201527f4c726f39446a5467704a4e4d3547385179306c54644f756d73773066715045696113be8201527f393646702532424830634d774e6f376a787a596d6e4e664d5a6d64506c7932706113de8201527f6f7132575065476d67507136474c78504e34536c4b486e7870624f69754c58516113fe8201527f75583155715031676a6f38426136536c55314f416d5267707a7531735444584a61141e8201527f50754d3338546f387130344c324e777970653837327777556741675a6c70386461143e8201527f6b5166397a38544d43624d6b596b3758484375333564375a5a41656f346b5a4b61145e8201527f68784953386945354c546a334c4f6976485a7268394a3870337a4c5a436a776361147e8201527f6970354452694b6e576e49664c33386b4a684d7452776a67553525324256726d61149e8201527f714b6c6739307a376a64732f4238444b646b464c76483353253242376f4838616114be8201527f6c445a6c626734533155583574434d445342324f364b756c7a41344b763067376114de8201527f314251643054464b7733685358696e62374e6c304258725873514e6376436b386114fe8201527f6d6f394f786965783559627a78564e2f6b3738336f48545a495777393079495a61151e8201527f777672697164475473586e54384965705437597946434f4a6741395a3042794961153e8201527f455956735478522f6b73616b324268376f4b767034766e695530364d57317a4261155e8201527f4672746568647a306b6b587951786a426d7965645636644d596545386146787461157e8201527f6575777355466136466c6c54446c716430707a525a77473663467266574d627061159e8201527f384738587a6a66624d253242354658657076356f457273696c363458783663376115be8201527f5841576275696d3666387347494d58666f334a6971476b703333376854536a676115de8201527f65636862364f42472f327a31376a6f6d4469476d253242476c623146553069656115fe8201527f6e7552796977654c576767447a6d4655765545556a5a6f377356544877684f4661161e8201527f504d6b4e737146423977796d6b45307639666d7477453854377135384e594f3761163e8201527f787534623833766e46766c35755378446c472532426b4f51675249644f346a6761165e8201527f7a786a53486a4b4c7332742f6c684f647771766131415744437072763344345361167e8201527f34523741625934544362664b4637744265363554343551347a7a49714433316161169e8201527f79797557716a692532424636585337535439483943314f342f694b366b4775766116be8201527f6b512f664e3537487837456533373435622f76766e2f62482f58253242392f256116de8201527f32426762656d684f416d49705576755157757344764b517578394a44564e734b6116fe8201527f673651636d6b73515341445530346347524c523768466f5a326337785545664761171e8201527f253242776b755459474d764c6a422f6550634936416847686e5735717a45416961173e8201527f4a586377564545775869654e70536c317a6a457253253242435325324248634c61175e8201527f6f52506d7661324d6767412f69794c67536f544a555767733442794149514f3061177e8201527f4f6f705a487656627a6844494c65557155677a7a48492f667950474e7879777361179e8201527f6f796c6865534639577662795363336b4544716b32415636436c4364635535536117be8201527f6e6c4e6e4963394b794d63384c79622532423867484f4a795173466c4c6250526117de8201527f796d6d374a42743349545a544162314732444252496b514b51705451396939626117fe8201527f3665435353387a4d366161525364544b5657524d336663454a4c644b61746e7361181e8201527f724959774e4a55253242733048364461757832775a35686733706c653042474861183e8201527f756b316b4543734859446461496d4b7025324233463542317859763763486b7161185e8201527f644475306a4b645273657a3531376d63563641685148346931484e3173766c6a61187e8201527f5248366845454672682532426e72726d47316e33307a4d346749776d694d774561189e8201527f624b6842545564423141486f582532424b6741517a4f48543946494f71436b526118be8201527f4e4e623273397170496943534f753167576868497343564a73765771457175356118de8201527f47624a514b4e6a61427465394c4f69676368414a7665475773394332323033766118fe8201527f6f6e476c6b77725251323464646732796345646157554456734441785548734961191e8201527f77773665615234464665336d4a416b66426d5a6452395264774a485a6d47645261193e8201527f7950436a706a627a31712f584a34534949446b66384b4b6e6e32456c4b6d794c61195e8201527f69573442513836733151554b2f76426867524e776548766c5968687a7238706361197e8201527f67704b4b6d6f61576a7036426b594f48446c7835734b5647336365474539657661199e8201527f506e773563646667454242676f554946536238587632504553314772446a78456119be8201527f69524b6b697846716a54704d6d544b6b693148726a7a354368517155717845716119de8201527f544c6c4b6c53715571314772547231476a527130717846717a62744f6e5347656119fe8201527f3668374a6d627a4968355a6544696c315a58536a7430774375616b336c6e476f611a1e8201527f5655506f53734e663337394b326a6274716d44674d69485a42665a6c68324839611a3e8201527f75773738495469314a466a585653662f4336634f55667a346f30644178305447611a5e8201527f777448446863666a3443516d49694531444d5a42546b6c4e5a557065566f614f611a7e8201527f6e717633733234314e50503965766574594768435a50576a4979747332706173611a9e8201527f436a25324270556a54596c336b615574374f744b4a6136355850396d356e6367611abe8201527f364e686a685a587032762532426d57724341545a754a303368316b6a55756976611ade8201527f5067596e6a6e35744b4a4f6b326e6362703251414559585a69304b496d50356b611afe8201527f744961466e366b5a397743253237253239253230666f726d6174253238253237611b1e8201527f776f666632253237253239253342666f6e742d7765696768742533412532306e611b3e8201527f6f726d616c253342666f6e742d7374796c652533412532306e6f726d616c2533611b5e8201527f42666f6e742d646973706c617925334125323073776170253342253744746578611b7e8201527f74253230253742666f6e742d66616d696c792533412532302532375072657373611b9e8201527f2532305374617274253230325025323725334266696c6c253341253230776869611bbe8201527f74652537442e76616c7565253230253742666f6e742d73697a65253341253230611bde8201527f313070782533422537442e6e616d65253230253742666f6e742d73697a652533611bfe8201527f412532303470782533422537442533432f7374796c652533452533432f646566611c1e8201527f7325334525334372656374253230776964746825334425323738392532372532611c3e8201527f30686569676874253344253237353525323725323066696c6c25334425323762611c5e8201527f6c61636b2532372532302f253345253343726563742532307825334425323735611c7e8201527f2e3525323725323079253344253237352e352532372532307769647468253344611c9e8201527f2532373738253237253230686569676874253344253237343425323725323066611cbe8201527f696c6c2533442532372532333030303046462532372532302f25334525334374611cde8201527f657874253230746578742d616e63686f722533442532376d6964646c65253237611cfe8201527f2532307825334425323734342e35253237253230792533442532373333253237611d1e8201527f253230636c61737325334425323776616c756525323725334500000000000000611d3e820152612ba5612b9e6129f5611d5784018a61055b565b7f2533432f746578742533452533437265637425323078253344253237352e352581527f323725323079253344253237352e35253237253230776964746825334425323760208201527f373825323725323068656967687425334425323734342532372532307374726f60408201527f6b652533442532372532334646344630412532372532307374726f6b652d776960608201527f647468253344253237332532372532302f25334525334372656374253230782560808201527f334425323733302532372532307925334425323734352e35253237253230776960a08201527f647468253344253237353825323725323068656967687425334425323738253260c08201527f3725323066696c6c2533442532372532334646344630412532372532302f253360e08201527f4525334374657874253230746578742d616e63686f72253344253237656e64256101008201527f32372532307825334425323738372532372532307925334425323735322532376101208201527f253230636c6173732533442532376e616d6525323725334500000000000000006101408201526101580190565b86886105e3565b602160f81b81529050612bbb600182018561055b565b7f2533432f746578742533452533432f737667253345227d00000000000000000081526017019a995050505050505050505056fea2646970667358221220f64400964cf21cb4940de76482b5ee6f22f9e46a781e948eea81a1999aa43eb964736f6c63430008150033", "sourceMap": "171:8737:27:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;315:287;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;608:8298;;;;;;:::i;:::-;;:::i;315:287::-;371:13;396:11;410;306:2;410;:11;:::i;:::-;396:25;-1:-1:-1;431:11:27;450:12;306:2;396:25;450:12;:::i;:::-;445:17;;:2;:17;:::i;:::-;431:31;-1:-1:-1;472:13:27;501:8;431:31;501:2;:8;:::i;:::-;488:23;;;-1:-1:-1;488:23:27;572:20;573:7;:3;579:1;573:7;:::i;:::-;572:18;:20::i;:::-;545:49;;;;;;;;;:::i;:::-;;;;;;;;;;;;;531:64;;;;;315:287;;;:::o;608:8298::-;703:13;728:19;750:17;764:2;750:13;:17::i;:::-;728:39;;888:4;;923:5;8407:29;:5;:15;;;;8423:1;8407:18;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:29::-;8810:4;;8845:5;784:8115;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;777:8122;;;608:8298;;;;;;:::o;415:696:22:-;471:13;520:14;537:17;548:5;537:10;:17::i;:::-;557:1;537:21;520:38;;572:20;606:6;595:18;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;595:18:22;-1:-1:-1;572:41:22;-1:-1:-1;733:28:22;;;749:2;733:28;788:280;-1:-1:-1;;819:5:22;-1:-1:-1;;;953:2:22;942:14;;937:30;819:5;924:44;1012:2;1003:11;;;-1:-1:-1;1032:21:22;788:280;1032:21;-1:-1:-1;1088:6:22;415:696;-1:-1:-1;;;415:696:22:o;9889:890:23:-;9942:7;;-1:-1:-1;;;10017:15:23;;10013:99;;-1:-1:-1;;;10052:15:23;;;-1:-1:-1;10095:2:23;10085:12;10013:99;10138:6;10129:5;:15;10125:99;;10173:6;10164:15;;;-1:-1:-1;10207:2:23;10197:12;10125:99;10250:6;10241:5;:15;10237:99;;10285:6;10276:15;;;-1:-1:-1;10319:2:23;10309:12;10237:99;10362:5;10353;:14;10349:96;;10396:5;10387:14;;;-1:-1:-1;10429:1:23;10419:11;10349:96;10471:5;10462;:14;10458:96;;10505:5;10496:14;;;-1:-1:-1;10538:1:23;10528:11;10458:96;10580:5;10571;:14;10567:96;;10614:5;10605:14;;;-1:-1:-1;10647:1:23;10637:11;10567:96;10689:5;10680;:14;10676:64;;10724:1;10714:11;10676:64;10766:6;9889:890;-1:-1:-1;;9889:890:23:o;14:180:36:-;73:6;126:2;114:9;105:7;101:23;97:32;94:52;;;142:1;139;132:12;94:52;-1:-1:-1;165:23:36;;14:180;-1:-1:-1;14:180:36:o;199:250::-;284:1;294:113;308:6;305:1;302:13;294:113;;;384:11;;;378:18;365:11;;;358:39;330:2;323:10;294:113;;;-1:-1:-1;;441:1:36;423:16;;416:27;199:250::o;454:271::-;496:3;534:5;528:12;561:6;556:3;549:19;577:76;646:6;639:4;634:3;630:14;623:4;616:5;612:16;577:76;:::i;:::-;707:2;686:15;-1:-1:-1;;682:29:36;673:39;;;;714:4;669:50;;454:271;-1:-1:-1;;454:271:36:o;730:220::-;879:2;868:9;861:21;842:4;899:45;940:2;929:9;925:18;917:6;899:45;:::i;:::-;891:53;730:220;-1:-1:-1;;;730:220:36:o;955:127::-;1016:10;1011:3;1007:20;1004:1;997:31;1047:4;1044:1;1037:15;1071:4;1068:1;1061:15;1087:348;1139:8;1149:6;1203:3;1196:4;1188:6;1184:17;1180:27;1170:55;;1221:1;1218;1211:12;1170:55;-1:-1:-1;1244:20:36;;1287:18;1276:30;;1273:50;;;1319:1;1316;1309:12;1273:50;1356:4;1348:6;1344:17;1332:29;;1408:3;1401:4;1392:6;1384;1380:19;1376:30;1373:39;1370:59;;;1425:1;1422;1415:12;1370:59;1087:348;;;;;:::o;1440:1278::-;1538:6;1546;1554;1562;1615:2;1603:9;1594:7;1590:23;1586:32;1583:52;;;1631:1;1628;1621:12;1583:52;1667:9;1654:23;1644:33;;1728:2;1717:9;1713:18;1700:32;1751:18;1792:2;1784:6;1781:14;1778:34;;;1808:1;1805;1798:12;1778:34;1846:6;1835:9;1831:22;1821:32;;1891:7;1884:4;1880:2;1876:13;1872:27;1862:55;;1913:1;1910;1903:12;1862:55;1949:2;1936:16;1971:2;1967;1964:10;1961:36;;;1977:18;;:::i;:::-;2052:2;2046:9;2020:2;2106:13;;-1:-1:-1;;2102:22:36;;;2126:2;2098:31;2094:40;2082:53;;;2150:18;;;2170:22;;;2147:46;2144:72;;;2196:18;;:::i;:::-;2236:10;2232:2;2225:22;2271:2;2263:6;2256:18;2311:7;2306:2;2301;2297;2293:11;2289:20;2286:33;2283:53;;;2332:1;2329;2322:12;2283:53;2388:2;2383;2379;2375:11;2370:2;2362:6;2358:15;2345:46;2433:1;2428:2;2423;2415:6;2411:15;2407:24;2400:35;2454:6;2444:16;;;;;2513:2;2502:9;2498:18;2485:32;2469:48;;2542:2;2532:8;2529:16;2526:36;;;2558:1;2555;2548:12;2526:36;;2597:61;2650:7;2639:8;2628:9;2624:24;2597:61;:::i;:::-;1440:1278;;;;-1:-1:-1;2677:8:36;-1:-1:-1;;;;1440:1278:36:o;2855:127::-;2916:10;2911:3;2907:20;2904:1;2897:31;2947:4;2944:1;2937:15;2971:4;2968:1;2961:15;2987:217;3027:1;3053;3043:132;;3097:10;3092:3;3088:20;3085:1;3078:31;3132:4;3129:1;3122:15;3160:4;3157:1;3150:15;3043:132;-1:-1:-1;3189:9:36;;2987:217::o;3209:168::-;3282:9;;;3313;;3330:15;;;3324:22;;3310:37;3300:71;;3351:18;;:::i;3382:128::-;3449:9;;;3470:11;;;3467:37;;;3484:18;;:::i;3515:125::-;3580:9;;;3601:10;;;3598:36;;;3614:18;;:::i;3645:197::-;3686:3;3724:5;3718:12;3739:65;3797:6;3792:3;3785:4;3778:5;3774:16;3739:65;:::i;:::-;3820:16;;;;;3645:197;-1:-1:-1;;3645:197:36:o;3847:377::-;-1:-1:-1;;;;;;4032:26:36;;4020:39;;4082:13;;4002:3;;4104:74;4082:13;4167:1;4158:11;;4151:4;4139:17;;4104:74;:::i;:::-;4198:16;;;;4216:1;4194:24;;3847:377;-1:-1:-1;;;3847:377:36:o;4229:305::-;4420:2;4409:9;4402:21;4383:4;4440:45;4481:2;4470:9;4466:18;4458:6;4440:45;:::i;:::-;4432:53;;4521:6;4516:2;4505:9;4501:18;4494:34;4229:305;;;;;:::o;4539:184::-;4609:6;4662:2;4650:9;4641:7;4637:23;4633:32;4630:52;;;4678:1;4675;4668:12;4630:52;-1:-1:-1;4701:16:36;;4539:184;-1:-1:-1;4539:184:36:o;4728:190::-;4830:6;4823:5;4818:3;4805:32;-1:-1:-1;4787:3:36;4856:16;;4881:13;;;4856:16;4728:190::o;5940:17070::-;6887:66;6882:3;6875:79;6984:66;6979:2;6974:3;6970:12;6963:88;7095:6;7087;7082:2;7077:3;7073:12;7060:42;6857:3;7130:6;7125:3;7121:16;-1:-1:-1;;;7161:2:36;7157;7153:11;7146:24;7199:6;7193:13;7215:72;7280:6;7275:2;7271;7267:11;7262:2;7254:6;7250:15;7215:72;:::i;:::-;7350:66;7345:2;7306:15;;;;7337:11;;;7330:87;7446:34;7441:2;7433:11;;7426:55;7511:34;7505:3;7497:12;;7490:56;7576:34;7570:3;7562:12;;7555:56;7641:34;7635:3;7627:12;;7620:56;7706:34;7700:3;7692:12;;7685:56;7771:34;7765:3;7757:12;;7750:56;7836:34;7830:3;7822:12;;7815:56;7901:34;7895:3;7887:12;;7880:56;7966:34;7960:3;7952:12;;7945:56;8031:34;8025:3;8017:12;;8010:56;8096:34;8090:3;8082:12;;8075:56;8161:34;8155:3;8147:12;;8140:56;8226:34;8220:3;8212:12;;8205:56;8291:34;8285:3;8277:12;;8270:56;8356:34;8350:3;8342:12;;8335:56;8421:34;8415:3;8407:12;;8400:56;8486:34;8480:3;8472:12;;8465:56;8551:34;8545:3;8537:12;;8530:56;8616:34;8610:3;8602:12;;8595:56;8681:34;8675:3;8667:12;;8660:56;8746:34;8740:3;8732:12;;8725:56;8811:34;8805:3;8797:12;;8790:56;8876:34;8870:3;8862:12;;8855:56;8941:34;8935:3;8927:12;;8920:56;9006:34;9000:3;8992:12;;8985:56;9071:34;9065:3;9057:12;;9050:56;9136:34;9130:3;9122:12;;9115:56;9201:34;9195:3;9187:12;;9180:56;9266:34;9260:3;9252:12;;9245:56;9332:34;9325:4;9317:13;;9310:57;9398:34;9391:4;9383:13;;9376:57;9464:34;9457:4;9449:13;;9442:57;9530:34;9523:4;9515:13;;9508:57;9596:34;9589:4;9581:13;;9574:57;9662:34;9655:4;9647:13;;9640:57;9728:34;9721:4;9713:13;;9706:57;9794:34;9787:4;9779:13;;9772:57;9860:34;9853:4;9845:13;;9838:57;9926:34;9919:4;9911:13;;9904:57;9992:34;9985:4;9977:13;;9970:57;10058:34;10051:4;10043:13;;10036:57;10124:34;10117:4;10109:13;;10102:57;10190:34;10183:4;10175:13;;10168:57;10256:34;10249:4;10241:13;;10234:57;10322:34;10315:4;10307:13;;10300:57;10388:34;10381:4;10373:13;;10366:57;10454:34;10447:4;10439:13;;10432:57;10520:34;10513:4;10505:13;;10498:57;10586:34;10579:4;10571:13;;10564:57;10652:34;10645:4;10637:13;;10630:57;10718:34;10711:4;10703:13;;10696:57;10784:34;10777:4;10769:13;;10762:57;10850:34;10843:4;10835:13;;10828:57;10916:34;10909:4;10901:13;;10894:57;10982:34;10975:4;10967:13;;10960:57;11048:34;11041:4;11033:13;;11026:57;11114:34;11107:4;11099:13;;11092:57;11180:34;11173:4;11165:13;;11158:57;11246:34;11239:4;11231:13;;11224:57;11312:34;11305:4;11297:13;;11290:57;11378:34;11371:4;11363:13;;11356:57;11444:34;11437:4;11429:13;;11422:57;11510:34;11503:4;11495:13;;11488:57;11576:34;11569:4;11561:13;;11554:57;11642:34;11635:4;11627:13;;11620:57;11708:34;11701:4;11693:13;;11686:57;11774:34;11767:4;11759:13;;11752:57;11840:34;11833:4;11825:13;;11818:57;11906:34;11899:4;11891:13;;11884:57;11972:34;11965:4;11957:13;;11950:57;12038:34;12031:4;12023:13;;12016:57;12104:34;12097:4;12089:13;;12082:57;12170:34;12163:4;12155:13;;12148:57;12236:34;12229:4;12221:13;;12214:57;12302:34;12295:4;12287:13;;12280:57;12368:34;12361:4;12353:13;;12346:57;12434:34;12427:4;12419:13;;12412:57;12500:34;12493:4;12485:13;;12478:57;12566:34;12559:4;12551:13;;12544:57;12632:34;12625:4;12617:13;;12610:57;12698:34;12691:4;12683:13;;12676:57;12764:34;12757:4;12749:13;;12742:57;12830:34;12823:4;12815:13;;12808:57;12896:34;12889:4;12881:13;;12874:57;12962:34;12955:4;12947:13;;12940:57;13028:34;13021:4;13013:13;;13006:57;13094:34;13087:4;13079:13;;13072:57;13160:34;13153:4;13145:13;;13138:57;13226:34;13219:4;13211:13;;13204:57;13292:34;13285:4;13277:13;;13270:57;13358:34;13351:4;13343:13;;13336:57;13424:34;13417:4;13409:13;;13402:57;13490:34;13483:4;13475:13;;13468:57;13556:34;13549:4;13541:13;;13534:57;13622:34;13615:4;13607:13;;13600:57;13688:34;13681:4;13673:13;;13666:57;13754:34;13747:4;13739:13;;13732:57;13820:34;13813:4;13805:13;;13798:57;13886:34;13879:4;13871:13;;13864:57;13952:34;13945:4;13937:13;;13930:57;14018:34;14011:4;14003:13;;13996:57;14084:34;14077:4;14069:13;;14062:57;14150:34;14143:4;14135:13;;14128:57;14216:34;14209:4;14201:13;;14194:57;14282:34;14275:4;14267:13;;14260:57;14348:34;14341:4;14333:13;;14326:57;14414:34;14407:4;14399:13;;14392:57;14480:34;14473:4;14465:13;;14458:57;14546:34;14539:4;14531:13;;14524:57;14612:34;14605:4;14597:13;;14590:57;14678:34;14671:4;14663:13;;14656:57;14744:34;14737:4;14729:13;;14722:57;14810:34;14803:4;14795:13;;14788:57;14876:34;14869:4;14861:13;;14854:57;14942:34;14935:4;14927:13;;14920:57;15008:34;15001:4;14993:13;;14986:57;15074:34;15067:4;15059:13;;15052:57;15140:34;15133:4;15125:13;;15118:57;15206:34;15199:4;15191:13;;15184:57;15272:34;15265:4;15257:13;;15250:57;15338:34;15331:4;15323:13;;15316:57;15404:34;15397:4;15389:13;;15382:57;15470:34;15463:4;15455:13;;15448:57;15536:34;15529:4;15521:13;;15514:57;15602:34;15595:4;15587:13;;15580:57;15668:34;15661:4;15653:13;;15646:57;15734:34;15727:4;15719:13;;15712:57;15800:34;15793:4;15785:13;;15778:57;15866:34;15859:4;15851:13;;15844:57;15932:34;15925:4;15917:13;;15910:57;15998:34;15991:4;15983:13;;15976:57;16064:34;16057:4;16049:13;;16042:57;16130:34;16123:4;16115:13;;16108:57;16196:34;16189:4;16181:13;;16174:57;16262:34;16255:4;16247:13;;16240:57;16328:34;16321:4;16313:13;;16306:57;16394:34;16387:4;16379:13;;16372:57;16460:34;16453:4;16445:13;;16438:57;16526:34;16519:4;16511:13;;16504:57;16592:34;16585:4;16577:13;;16570:57;16658:34;16651:4;16643:13;;16636:57;16724:34;16717:4;16709:13;;16702:57;16790:34;16783:4;16775:13;;16768:57;16856:34;16849:4;16841:13;;16834:57;16922:34;16915:4;16907:13;;16900:57;16988:34;16981:4;16973:13;;16966:57;17054:34;17047:4;17039:13;;17032:57;17120:34;17113:4;17105:13;;17098:57;17186:34;17179:4;17171:13;;17164:57;17252:34;17245:4;17237:13;;17230:57;17318:34;17311:4;17303:13;;17296:57;17384:34;17377:4;17369:13;;17362:57;17450:34;17443:4;17435:13;;17428:57;17516:34;17509:4;17501:13;;17494:57;17582:34;17575:4;17567:13;;17560:57;17648:34;17641:4;17633:13;;17626:57;17714:34;17707:4;17699:13;;17692:57;17780:34;17773:4;17765:13;;17758:57;17846:34;17839:4;17831:13;;17824:57;17912:34;17905:4;17897:13;;17890:57;17978:34;17971:4;17963:13;;17956:57;18044:34;18037:4;18029:13;;18022:57;18110:34;18103:4;18095:13;;18088:57;18176:34;18169:4;18161:13;;18154:57;18242:34;18235:4;18227:13;;18220:57;18308:34;18301:4;18293:13;;18286:57;18374:34;18367:4;18359:13;;18352:57;18440:34;18433:4;18425:13;;18418:57;18506:34;18499:4;18491:13;;18484:57;18572:34;18565:4;18557:13;;18550:57;18638:34;18631:4;18623:13;;18616:57;18704:34;18697:4;18689:13;;18682:57;18770:34;18763:4;18755:13;;18748:57;18836:34;18829:4;18821:13;;18814:57;18902:34;18895:4;18887:13;;18880:57;18968:34;18961:4;18953:13;;18946:57;19034:34;19027:4;19019:13;;19012:57;19100:34;19093:4;19085:13;;19078:57;19166:34;19159:4;19151:13;;19144:57;19232:34;19225:4;19217:13;;19210:57;19298:34;19291:4;19283:13;;19276:57;19364:34;19357:4;19349:13;;19342:57;19430:34;19423:4;19415:13;;19408:57;19496:34;19489:4;19481:13;;19474:57;19562:34;19555:4;19547:13;;19540:57;19628:34;19621:4;19613:13;;19606:57;19694:34;19687:4;19679:13;;19672:57;19760:34;19753:4;19745:13;;19738:57;19826:34;19819:4;19811:13;;19804:57;19892:34;19885:4;19877:13;;19870:57;19958:34;19951:4;19943:13;;19936:57;20024:34;20017:4;20009:13;;20002:57;20090:34;20083:4;20075:13;;20068:57;20156:34;20149:4;20141:13;;20134:57;20222:34;20215:4;20207:13;;20200:57;20288:34;20281:4;20273:13;;20266:57;20354:34;20347:4;20339:13;;20332:57;20420:34;20413:4;20405:13;;20398:57;20486:34;20479:4;20471:13;;20464:57;20552:34;20545:4;20537:13;;20530:57;20618:34;20611:4;20603:13;;20596:57;20684:34;20677:4;20669:13;;20662:57;20750:34;20743:4;20735:13;;20728:57;20816:34;20809:4;20801:13;;20794:57;20882:34;20875:4;20867:13;;20860:57;20948:34;20941:4;20933:13;;20926:57;21014:34;21007:4;20999:13;;20992:57;21080:34;21073:4;21065:13;;21058:57;21146:34;21139:4;21131:13;;21124:57;21212:34;21205:4;21197:13;;21190:57;21278:34;21271:4;21263:13;;21256:57;21344:34;21337:4;21329:13;;21322:57;21410:34;21403:4;21395:13;;21388:57;21476:34;21469:4;21461:13;;21454:57;21542:34;21535:4;21527:13;;21520:57;21608:34;21601:4;21593:13;;21586:57;21674:34;21667:4;21659:13;;21652:57;21740:34;21733:4;21725:13;;21718:57;21806:34;21799:4;21791:13;;21784:57;21872:34;21865:4;21857:13;;21850:57;21938:34;21931:4;21923:13;;21916:57;22004:34;21997:4;21989:13;;21982:57;22070:34;22063:4;22055:13;;22048:57;22136:34;22129:4;22121:13;;22114:57;22202:34;22195:4;22187:13;;22180:57;22268:34;22261:4;22253:13;;22246:57;22334:34;22327:4;22319:13;;22312:57;22400:34;22393:4;22385:13;;22378:57;22466:34;22459:4;22451:13;;22444:57;22532:34;22525:4;22517:13;;22510:57;22598:34;22591:4;22583:13;;22576:57;22664:27;22657:4;22649:13;;22642:50;22714:114;22757:70;22787:39;22820:4;22812:13;;22804:6;22787:39;:::i;:::-;5068:34;5056:47;;5133:34;5128:2;5119:12;;5112:56;5198:34;5193:2;5184:12;;5177:56;5263:34;5258:2;5249:12;;5242:56;5329:34;5323:3;5314:13;;5307:57;5395:34;5389:3;5380:13;;5373:57;5461:34;5455:3;5446:13;;5439:57;5527:34;5521:3;5512:13;;5505:57;5593:34;5587:3;5578:13;;5571:57;5659:34;5653:3;5644:13;;5637:57;5725:26;5719:3;5710:13;;5703:49;5777:3;5768:13;;4991:796;22757:70;22749:6;22741;22714:114;:::i;:::-;-1:-1:-1;;;4968:16:36;;22701:127;-1:-1:-1;22890:39:36;22926:1;22919:5;22915:13;22907:6;22890:39;:::i;:::-;5862:66;5850:79;;23001:2;22990:14;;;-1:-1:-1;;;;;;;;;;5940:17070:36:o", "linkReferences": { "lib/eth-projects-monorepo/packages/eth-projects-contracts/contracts/lib/utils/Bytes.sol": { @@ -81,10 +81,10 @@ "numberToIndex(uint256)": "06d4cd8b", "tokenURI(uint256,bytes,string)": "28de0f2f" }, - "rawMetadata": "{\"compiler\":{\"version\":\"0.8.17+commit.8df45f5f\"},\"language\":\"Solidity\",\"output\":{\"abi\":[{\"inputs\":[{\"internalType\":\"uint256\",\"name\":\"id\",\"type\":\"uint256\"}],\"name\":\"numberToIndex\",\"outputs\":[{\"internalType\":\"string\",\"name\":\"\",\"type\":\"string\"}],\"stateMutability\":\"pure\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"uint256\",\"name\":\"id\",\"type\":\"uint256\"},{\"internalType\":\"bytes\",\"name\":\"value\",\"type\":\"bytes\"},{\"internalType\":\"string\",\"name\":\"name\",\"type\":\"string\"}],\"name\":\"tokenURI\",\"outputs\":[{\"internalType\":\"string\",\"name\":\"\",\"type\":\"string\"}],\"stateMutability\":\"pure\",\"type\":\"function\"}],\"devdoc\":{\"kind\":\"dev\",\"methods\":{},\"version\":1},\"userdoc\":{\"kind\":\"user\",\"methods\":{},\"version\":1}},\"settings\":{\"compilationTarget\":{\"src/BasicCellRenderer.sol\":\"BasicCellRenderer\"},\"evmVersion\":\"london\",\"libraries\":{},\"metadata\":{\"bytecodeHash\":\"ipfs\"},\"optimizer\":{\"enabled\":true,\"runs\":200},\"remappings\":[\":@clemlaflemme/=lib/eth-projects-monorepo/packages/eth-projects-contracts/contracts/\",\":ds-test/=lib/forge-std/lib/ds-test/src/\",\":eth-projects-monorepo/=lib/eth-projects-monorepo/\",\":forge-std/=lib/forge-std/src/\",\":openzeppelin-contracts/=lib/openzeppelin-contracts/\",\":openzeppelin/=lib/openzeppelin-contracts/contracts/\",\":renderers/=lib/eth-projects-monorepo/packages/eth-projects-contracts/contracts/lib/renderers/\",\":safe-contracts/=lib/safe-contracts/contracts/\",\":solmate/=lib/solmate/src/\",\":utils/=lib/eth-projects-monorepo/packages/eth-projects-contracts/contracts/lib/utils/\"]},\"sources\":{\"lib/eth-projects-monorepo/packages/eth-projects-contracts/contracts/lib/utils/Bytes.sol\":{\"keccak256\":\"0xd894eac2f223760da25e079d125b4c0de282a6d609a1e8a1834f5dc1c02550d5\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://2c305f8b0dc8b57df9e5b06e51e3e6ed374c2e655cc5edf7b9a7e0d86eb629a0\",\"dweb:/ipfs/QmXi9SmrcYfqSVGVP4WMtYQmBMhGVm8xdLus54YojtaNBi\"]},\"lib/openzeppelin-contracts/contracts/utils/Strings.sol\":{\"keccak256\":\"0xa4d1d62251f8574deb032a35fc948386a9b4de74b812d4f545a1ac120486b48a\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://8c969013129ba9e651a20735ef659fef6d8a1139ea3607bd4b26ddea2d645634\",\"dweb:/ipfs/QmVhVa6LGuzAcB8qgDtVHRkucn4ihj5UZr8xBLcJkP6ucb\"]},\"lib/openzeppelin-contracts/contracts/utils/math/Math.sol\":{\"keccak256\":\"0xa1e8e83cd0087785df04ac79fb395d9f3684caeaf973d9e2c71caef723a3a5d6\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://33bbf48cc069be677705037ba7520c22b1b622c23b33e1a71495f2d36549d40b\",\"dweb:/ipfs/Qmct36zWXv3j7LZB83uwbg7TXwnZSN1fqHNDZ93GG98bGz\"]},\"src/BasicCellRenderer.sol\":{\"keccak256\":\"0x9194c6266bf98de3f9951ac072631ad35e18e8952c206ed72d0b019bdd02a457\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://5e8cb96791ee2c20931f73325671daa0704461849ba0290f0b12e48ce6265453\",\"dweb:/ipfs/QmWcwWYdZMPwoU8T3g78FhcJR1CoViHSoQDcJjaGGeTf3t\"]},\"src/Interfaces.sol\":{\"keccak256\":\"0x6e20e29459d96085394767369237fb5a02d7cf6e22b930debedf47325c39c707\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://04351e9c841b435cb1e20bf4dd3ccab087dad3d4ba5a57908c8f674181e19cb5\",\"dweb:/ipfs/QmY8oxNAeMrP3mf7yNHvdz5JgafffP4yN8jnxWHEHoo6Sx\"]}},\"version\":1}", + "rawMetadata": "{\"compiler\":{\"version\":\"0.8.21+commit.d9974bed\"},\"language\":\"Solidity\",\"output\":{\"abi\":[{\"inputs\":[{\"internalType\":\"uint256\",\"name\":\"id\",\"type\":\"uint256\"}],\"name\":\"numberToIndex\",\"outputs\":[{\"internalType\":\"string\",\"name\":\"\",\"type\":\"string\"}],\"stateMutability\":\"pure\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"uint256\",\"name\":\"id\",\"type\":\"uint256\"},{\"internalType\":\"bytes\",\"name\":\"value\",\"type\":\"bytes\"},{\"internalType\":\"string\",\"name\":\"name\",\"type\":\"string\"}],\"name\":\"tokenURI\",\"outputs\":[{\"internalType\":\"string\",\"name\":\"\",\"type\":\"string\"}],\"stateMutability\":\"pure\",\"type\":\"function\"}],\"devdoc\":{\"kind\":\"dev\",\"methods\":{},\"version\":1},\"userdoc\":{\"kind\":\"user\",\"methods\":{},\"version\":1}},\"settings\":{\"compilationTarget\":{\"src/BasicCellRenderer.sol\":\"BasicCellRenderer\"},\"evmVersion\":\"paris\",\"libraries\":{},\"metadata\":{\"bytecodeHash\":\"ipfs\"},\"optimizer\":{\"enabled\":true,\"runs\":200},\"remappings\":[\":@clemlaflemme/=lib/eth-projects-monorepo/packages/eth-projects-contracts/contracts/\",\":ds-test/=lib/forge-std/lib/ds-test/src/\",\":eth-projects-monorepo/=lib/eth-projects-monorepo/\",\":forge-std/=lib/forge-std/src/\",\":openzeppelin-contracts/=lib/openzeppelin-contracts/\",\":openzeppelin/=lib/openzeppelin-contracts/contracts/\",\":renderers/=lib/eth-projects-monorepo/packages/eth-projects-contracts/contracts/lib/renderers/\",\":safe-contracts/=lib/safe-contracts/contracts/\",\":solmate/=lib/solmate/src/\",\":utils/=lib/eth-projects-monorepo/packages/eth-projects-contracts/contracts/lib/utils/\"]},\"sources\":{\"lib/eth-projects-monorepo/packages/eth-projects-contracts/contracts/lib/utils/Bytes.sol\":{\"keccak256\":\"0xd894eac2f223760da25e079d125b4c0de282a6d609a1e8a1834f5dc1c02550d5\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://2c305f8b0dc8b57df9e5b06e51e3e6ed374c2e655cc5edf7b9a7e0d86eb629a0\",\"dweb:/ipfs/QmXi9SmrcYfqSVGVP4WMtYQmBMhGVm8xdLus54YojtaNBi\"]},\"lib/openzeppelin-contracts/contracts/utils/Strings.sol\":{\"keccak256\":\"0xa4d1d62251f8574deb032a35fc948386a9b4de74b812d4f545a1ac120486b48a\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://8c969013129ba9e651a20735ef659fef6d8a1139ea3607bd4b26ddea2d645634\",\"dweb:/ipfs/QmVhVa6LGuzAcB8qgDtVHRkucn4ihj5UZr8xBLcJkP6ucb\"]},\"lib/openzeppelin-contracts/contracts/utils/math/Math.sol\":{\"keccak256\":\"0xa1e8e83cd0087785df04ac79fb395d9f3684caeaf973d9e2c71caef723a3a5d6\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://33bbf48cc069be677705037ba7520c22b1b622c23b33e1a71495f2d36549d40b\",\"dweb:/ipfs/Qmct36zWXv3j7LZB83uwbg7TXwnZSN1fqHNDZ93GG98bGz\"]},\"src/BasicCellRenderer.sol\":{\"keccak256\":\"0x9194c6266bf98de3f9951ac072631ad35e18e8952c206ed72d0b019bdd02a457\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://5e8cb96791ee2c20931f73325671daa0704461849ba0290f0b12e48ce6265453\",\"dweb:/ipfs/QmWcwWYdZMPwoU8T3g78FhcJR1CoViHSoQDcJjaGGeTf3t\"]},\"src/Interfaces.sol\":{\"keccak256\":\"0x6e20e29459d96085394767369237fb5a02d7cf6e22b930debedf47325c39c707\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://04351e9c841b435cb1e20bf4dd3ccab087dad3d4ba5a57908c8f674181e19cb5\",\"dweb:/ipfs/QmY8oxNAeMrP3mf7yNHvdz5JgafffP4yN8jnxWHEHoo6Sx\"]}},\"version\":1}", "metadata": { "compiler": { - "version": "0.8.17+commit.8df45f5f" + "version": "0.8.21+commit.d9974bed" }, "language": "Solidity", "output": { @@ -151,16 +151,16 @@ }, "settings": { "remappings": [ - ":@clemlaflemme/=lib/eth-projects-monorepo/packages/eth-projects-contracts/contracts/", - ":ds-test/=lib/forge-std/lib/ds-test/src/", - ":eth-projects-monorepo/=lib/eth-projects-monorepo/", - ":forge-std/=lib/forge-std/src/", - ":openzeppelin-contracts/=lib/openzeppelin-contracts/", - ":openzeppelin/=lib/openzeppelin-contracts/contracts/", - ":renderers/=lib/eth-projects-monorepo/packages/eth-projects-contracts/contracts/lib/renderers/", - ":safe-contracts/=lib/safe-contracts/contracts/", - ":solmate/=lib/solmate/src/", - ":utils/=lib/eth-projects-monorepo/packages/eth-projects-contracts/contracts/lib/utils/" + "@clemlaflemme/=lib/eth-projects-monorepo/packages/eth-projects-contracts/contracts/", + "ds-test/=lib/forge-std/lib/ds-test/src/", + "eth-projects-monorepo/=lib/eth-projects-monorepo/", + "forge-std/=lib/forge-std/src/", + "openzeppelin-contracts/=lib/openzeppelin-contracts/", + "openzeppelin/=lib/openzeppelin-contracts/contracts/", + "renderers/=lib/eth-projects-monorepo/packages/eth-projects-contracts/contracts/lib/renderers/", + "safe-contracts/=lib/safe-contracts/contracts/", + "solmate/=lib/solmate/src/", + "utils/=lib/eth-projects-monorepo/packages/eth-projects-contracts/contracts/lib/utils/" ], "optimizer": { "enabled": true, @@ -229,10 +229,10 @@ 762 ], "ICellRenderer": [ - 31315 + 31344 ], "ISheet": [ - 31351 + 31380 ], "Math": [ 30363 @@ -265,7 +265,7 @@ "file": "./Interfaces.sol", "nameLocation": "-1:-1:-1", "scope": 31132, - "sourceUnit": 31352, + "sourceUnit": 31381, "symbolAliases": [], "unitAlias": "" }, @@ -866,7 +866,7 @@ "referencedDeclaration": 29381, "src": "572:18:27", "typeDescriptions": { - "typeIdentifier": "t_function_internal_pure$_t_uint256_$returns$_t_string_memory_ptr_$bound_to$_t_uint256_$", + "typeIdentifier": "t_function_internal_pure$_t_uint256_$returns$_t_string_memory_ptr_$attached_to$_t_uint256_$", "typeString": "function (uint256) pure returns (string memory)" } }, @@ -1345,7 +1345,7 @@ "referencedDeclaration": 706, "src": "8407:15:27", "typeDescriptions": { - "typeIdentifier": "t_function_delegatecall_pure$_t_bytes_memory_ptr_$_t_uint256_$returns$_t_uint256_$bound_to$_t_bytes_memory_ptr_$", + "typeIdentifier": "t_function_delegatecall_pure$_t_bytes_memory_ptr_$_t_uint256_$returns$_t_uint256_$attached_to$_t_bytes_memory_ptr_$", "typeString": "function (bytes memory,uint256) pure returns (uint256)" } }, @@ -1376,7 +1376,7 @@ "referencedDeclaration": 29381, "src": "8407:27:27", "typeDescriptions": { - "typeIdentifier": "t_function_internal_pure$_t_uint256_$returns$_t_string_memory_ptr_$bound_to$_t_uint256_$", + "typeIdentifier": "t_function_internal_pure$_t_uint256_$returns$_t_string_memory_ptr_$attached_to$_t_uint256_$", "typeString": "function (uint256) pure returns (string memory)" } }, @@ -1574,7 +1574,7 @@ ] }, "baseFunctions": [ - 31314 + 31343 ], "functionSelector": "28de0f2f", "implemented": true, @@ -1720,7 +1720,7 @@ "201:13:27" ], "nodeType": "IdentifierPath", - "referencedDeclaration": 31315, + "referencedDeclaration": 31344, "src": "201:13:27" }, "id": 31030, @@ -1734,12 +1734,13 @@ "fullyImplemented": true, "linearizedBaseContracts": [ 31131, - 31315 + 31344 ], "name": "BasicCellRenderer", "nameLocation": "180:17:27", "scope": 31132, - "usedErrors": [] + "usedErrors": [], + "usedEvents": [] } ], "license": "MIT" diff --git a/packages/starksheet-solidity/out/Bytes.sol/Bytes.json b/packages/starksheet-solidity/out/Bytes.sol/Bytes.json index 3275f672..52a79957 100644 --- a/packages/starksheet-solidity/out/Bytes.sol/Bytes.json +++ b/packages/starksheet-solidity/out/Bytes.sol/Bytes.json @@ -554,12 +554,12 @@ } ], "bytecode": { - "object": "0x6110d661003a600b82828239805160001a60731461002d57634e487b7160e01b600052600060045260246000fd5b30600052607381538281f3fe73000000000000000000000000000000000000000030146080604052600436106101625760003560e01c8063a5eb31ee116100cd578063d1ffb56111610086578063d1ffb561146103fb578063d442584f1461042b578063e004139614610454578063f1142fb314610474578063f647f8fb14610487578063f83b670f146104b257600080fd5b8063a5eb31ee14610344578063a8d8f00f1461036b578063b5cdf92414610396578063b63711df146103a9578063be8b3430146103bc578063c29616bd146103cf57600080fd5b80635ef849301161011f5780635ef8493014610241578063913c97b41461026b57806397e6175c1461029f57806399dd9bd7146102cb5780639ae4c3d1146102ec5780639cee499e1461031857600080fd5b8063042aa0841461016757806305d3bb74146101985780631a7431ef146101c0578063235266d2146101e357806348137709146101f65780634d66a2ae1461021b575b600080fd5b61017a610175366004610ec0565b6104de565b6040516001600160d01b031990911681526020015b60405180910390f35b6101ab6101a6366004610ec0565b610540565b60405163ffffffff909116815260200161018f565b6101d36101ce366004610f05565b61059d565b604051901515815260200161018f565b6101d36101f1366004610f4c565b610652565b610209610204366004610ec0565b6106b5565b60405160ff909116815260200161018f565b61022e610229366004610fa6565b610711565b60405161ffff909116815260200161018f565b61025461024f366004610ec0565b61071e565b60405165ffffffffffff909116815260200161018f565b61027e610279366004610ec0565b610772565b6040516fffffffffffffffffffffffffffffffff909116815260200161018f565b6102b26102ad366004610ec0565b6107d0565b6040516001600160a01b0319909116815260200161018f565b6102de6102d9366004610ec0565b61082e565b60405190815260200161018f565b6102ff6102fa366004610ec0565b61088c565b60405167ffffffffffffffff909116815260200161018f565b61032b610326366004610ec0565b6108e9565b6040516001600160d81b0319909116815260200161018f565b610357610352366004610ec0565b610946565b60405162ffffff909116815260200161018f565b61037e610379366004610ec0565b6109a3565b60405166ffffffffffffff909116815260200161018f565b6102de6103a4366004610ec0565b610a00565b6102ff6103b7366004610ec0565b610a55565b61022e6103ca366004610ec0565b610aa9565b6103e26103dd366004610ec0565b610b06565b6040516001600160c81b0319909116815260200161018f565b61040e610409366004610ec0565b610b5a565b6040516bffffffffffffffffffffffff909116815260200161018f565b61043e610439366004610ec0565b610bae565b60405164ffffffffff909116815260200161018f565b610467610462366004610fe3565b610c02565b60405161018f9190611031565b6102b2610482366004610ec0565b610d0f565b61049a610495366004610ec0565b610d64565b6040516001600160a01b03909116815260200161018f565b6104c56104c0366004610ec0565b610dc9565b6040516001600160f81b0319909116815260200161018f565b60006104eb82600661107f565b835110156105375760405162461bcd60e51b8152602060048201526014602482015273746f4279746573365f6f75744f66426f756e647360601b60448201526064015b60405180910390fd5b50016006015190565b600061054d82600461107f565b835110156105945760405162461bcd60e51b8152602060048201526014602482015273746f55696e7433325f6f75744f66426f756e647360601b604482015260640161052e565b50016004015190565b600080600190508354600260018083161561010002038216048451808214600181146105cc5760009450610644565b821561064457602083106001811461062957600189600052602060002060208a018581015b600284828410010361062057815183541461060f5760009950600093505b6001830192506020820191506105f1565b50505050610642565b6101008086040294506020880151851461064257600095505b505b509293505050505b92915050565b81518151600091600191811480831461066e57600092506106ab565b600160208701838101602088015b60028483851001036106a657805183511461069a5760009650600093505b6020928301920161067c565b505050505b5090949350505050565b60006106c282600161107f565b835110156107085760405162461bcd60e51b8152602060048201526013602482015272746f55696e74385f6f75744f66426f756e647360681b604482015260640161052e565b50016001015190565b600061064c826000610aa9565b600061072b82600661107f565b835110156105375760405162461bcd60e51b8152602060048201526014602482015273746f55696e7434385f6f75744f66426f756e647360601b604482015260640161052e565b600061077f82601061107f565b835110156107c75760405162461bcd60e51b8152602060048201526015602482015274746f55696e743132385f6f75744f66426f756e647360581b604482015260640161052e565b50016010015190565b60006107dd82600c61107f565b835110156108255760405162461bcd60e51b8152602060048201526015602482015274746f427974657331325f6f75744f66426f756e647360581b604482015260640161052e565b5001600c015190565b600061083b82602061107f565b835110156108835760405162461bcd60e51b8152602060048201526015602482015274746f427974657333325f6f75744f66426f756e647360581b604482015260640161052e565b50016020015190565b600061089982600861107f565b835110156108e05760405162461bcd60e51b8152602060048201526014602482015273746f55696e7436345f6f75744f66426f756e647360601b604482015260640161052e565b50016008015190565b60006108f682600561107f565b8351101561093d5760405162461bcd60e51b8152602060048201526014602482015273746f4279746573355f6f75744f66426f756e647360601b604482015260640161052e565b50016005015190565b600061095382600361107f565b8351101561099a5760405162461bcd60e51b8152602060048201526014602482015273746f55696e7432345f6f75744f66426f756e647360601b604482015260640161052e565b50016003015190565b60006109b082600761107f565b835110156109f75760405162461bcd60e51b8152602060048201526014602482015273746f55696e7435365f6f75744f66426f756e647360601b604482015260640161052e565b50016007015190565b6000610a0d82602061107f565b835110156108835760405162461bcd60e51b8152602060048201526015602482015274746f55696e743235365f6f75744f66426f756e647360581b604482015260640161052e565b6000610a6282600861107f565b835110156108e05760405162461bcd60e51b8152602060048201526014602482015273746f4279746573385f6f75744f66426f756e647360601b604482015260640161052e565b6000610ab682600261107f565b83511015610afd5760405162461bcd60e51b8152602060048201526014602482015273746f55696e7431365f6f75744f66426f756e647360601b604482015260640161052e565b50016002015190565b6000610b1382600761107f565b835110156109f75760405162461bcd60e51b8152602060048201526014602482015273746f4279746573375f6f75744f66426f756e647360601b604482015260640161052e565b6000610b6782600c61107f565b835110156108255760405162461bcd60e51b8152602060048201526014602482015273746f55696e7439365f6f75744f66426f756e647360601b604482015260640161052e565b6000610bbb82600561107f565b8351101561093d5760405162461bcd60e51b8152602060048201526014602482015273746f55696e7434305f6f75744f66426f756e647360601b604482015260640161052e565b606081610c1081601f61107f565b1015610c4f5760405162461bcd60e51b815260206004820152600e60248201526d736c6963655f6f766572666c6f7760901b604482015260640161052e565b610c59828461107f565b84511015610c9d5760405162461bcd60e51b8152602060048201526011602482015270736c6963655f6f75744f66426f756e647360781b604482015260640161052e565b606082158015610cbc5760405191506000825260208201604052610d06565b6040519150601f8416801560200281840101858101878315602002848b0101015b81831015610cf5578051835260209283019201610cdd565b5050858452601f01601f1916604052505b50949350505050565b6000610d1c82601061107f565b835110156107c75760405162461bcd60e51b8152602060048201526015602482015274746f427974657331365f6f75744f66426f756e647360581b604482015260640161052e565b6000610d7182601461107f565b83511015610db95760405162461bcd60e51b8152602060048201526015602482015274746f416464726573735f6f75744f66426f756e647360581b604482015260640161052e565b500160200151600160601b900490565b6000610dd682600161107f565b835110156107085760405162461bcd60e51b8152602060048201526014602482015273746f4279746573315f6f75744f66426f756e647360601b604482015260640161052e565b634e487b7160e01b600052604160045260246000fd5b600082601f830112610e4457600080fd5b813567ffffffffffffffff80821115610e5f57610e5f610e1d565b604051601f8301601f19908116603f01168101908282118183101715610e8757610e87610e1d565b81604052838152866020858801011115610ea057600080fd5b836020870160208301376000602085830101528094505050505092915050565b60008060408385031215610ed357600080fd5b823567ffffffffffffffff811115610eea57600080fd5b610ef685828601610e33565b95602094909401359450505050565b60008060408385031215610f1857600080fd5b82359150602083013567ffffffffffffffff811115610f3657600080fd5b610f4285828601610e33565b9150509250929050565b60008060408385031215610f5f57600080fd5b823567ffffffffffffffff80821115610f7757600080fd5b610f8386838701610e33565b93506020850135915080821115610f9957600080fd5b50610f4285828601610e33565b600060208284031215610fb857600080fd5b813567ffffffffffffffff811115610fcf57600080fd5b610fdb84828501610e33565b949350505050565b600080600060608486031215610ff857600080fd5b833567ffffffffffffffff81111561100f57600080fd5b61101b86828701610e33565b9660208601359650604090950135949350505050565b600060208083528351808285015260005b8181101561105e57858101830151858201604001528201611042565b506000604082860101526040601f19601f8301168501019250505092915050565b8082018082111561064c57634e487b7160e01b600052601160045260246000fdfea26469706673582212205bdf5bc4551862519f5370e0dcec38eefbbbe11b6a5bf19ce2846b4f8831a5dc64736f6c63430008110033", + "object": "0x6110d661003a600b82828239805160001a60731461002d57634e487b7160e01b600052600060045260246000fd5b30600052607381538281f3fe73000000000000000000000000000000000000000030146080604052600436106101625760003560e01c8063a5eb31ee116100cd578063d1ffb56111610086578063d1ffb561146103fb578063d442584f1461042b578063e004139614610454578063f1142fb314610474578063f647f8fb14610487578063f83b670f146104b257600080fd5b8063a5eb31ee14610344578063a8d8f00f1461036b578063b5cdf92414610396578063b63711df146103a9578063be8b3430146103bc578063c29616bd146103cf57600080fd5b80635ef849301161011f5780635ef8493014610241578063913c97b41461026b57806397e6175c1461029f57806399dd9bd7146102cb5780639ae4c3d1146102ec5780639cee499e1461031857600080fd5b8063042aa0841461016757806305d3bb74146101985780631a7431ef146101c0578063235266d2146101e357806348137709146101f65780634d66a2ae1461021b575b600080fd5b61017a610175366004610ec0565b6104de565b6040516001600160d01b031990911681526020015b60405180910390f35b6101ab6101a6366004610ec0565b610540565b60405163ffffffff909116815260200161018f565b6101d36101ce366004610f05565b61059d565b604051901515815260200161018f565b6101d36101f1366004610f4c565b610652565b610209610204366004610ec0565b6106b5565b60405160ff909116815260200161018f565b61022e610229366004610fa6565b610711565b60405161ffff909116815260200161018f565b61025461024f366004610ec0565b61071e565b60405165ffffffffffff909116815260200161018f565b61027e610279366004610ec0565b610772565b6040516fffffffffffffffffffffffffffffffff909116815260200161018f565b6102b26102ad366004610ec0565b6107d0565b6040516001600160a01b0319909116815260200161018f565b6102de6102d9366004610ec0565b61082e565b60405190815260200161018f565b6102ff6102fa366004610ec0565b61088c565b60405167ffffffffffffffff909116815260200161018f565b61032b610326366004610ec0565b6108e9565b6040516001600160d81b0319909116815260200161018f565b610357610352366004610ec0565b610946565b60405162ffffff909116815260200161018f565b61037e610379366004610ec0565b6109a3565b60405166ffffffffffffff909116815260200161018f565b6102de6103a4366004610ec0565b610a00565b6102ff6103b7366004610ec0565b610a55565b61022e6103ca366004610ec0565b610aa9565b6103e26103dd366004610ec0565b610b06565b6040516001600160c81b0319909116815260200161018f565b61040e610409366004610ec0565b610b5a565b6040516bffffffffffffffffffffffff909116815260200161018f565b61043e610439366004610ec0565b610bae565b60405164ffffffffff909116815260200161018f565b610467610462366004610fe3565b610c02565b60405161018f9190611031565b6102b2610482366004610ec0565b610d0f565b61049a610495366004610ec0565b610d64565b6040516001600160a01b03909116815260200161018f565b6104c56104c0366004610ec0565b610dc9565b6040516001600160f81b0319909116815260200161018f565b60006104eb82600661107f565b835110156105375760405162461bcd60e51b8152602060048201526014602482015273746f4279746573365f6f75744f66426f756e647360601b60448201526064015b60405180910390fd5b50016006015190565b600061054d82600461107f565b835110156105945760405162461bcd60e51b8152602060048201526014602482015273746f55696e7433325f6f75744f66426f756e647360601b604482015260640161052e565b50016004015190565b600080600190508354600260018083161561010002038216048451808214600181146105cc5760009450610644565b821561064457602083106001811461062957600189600052602060002060208a018581015b600284828410010361062057815183541461060f5760009950600093505b6001830192506020820191506105f1565b50505050610642565b6101008086040294506020880151851461064257600095505b505b509293505050505b92915050565b81518151600091600191811480831461066e57600092506106ab565b600160208701838101602088015b60028483851001036106a657805183511461069a5760009650600093505b6020928301920161067c565b505050505b5090949350505050565b60006106c282600161107f565b835110156107085760405162461bcd60e51b8152602060048201526013602482015272746f55696e74385f6f75744f66426f756e647360681b604482015260640161052e565b50016001015190565b600061064c826000610aa9565b600061072b82600661107f565b835110156105375760405162461bcd60e51b8152602060048201526014602482015273746f55696e7434385f6f75744f66426f756e647360601b604482015260640161052e565b600061077f82601061107f565b835110156107c75760405162461bcd60e51b8152602060048201526015602482015274746f55696e743132385f6f75744f66426f756e647360581b604482015260640161052e565b50016010015190565b60006107dd82600c61107f565b835110156108255760405162461bcd60e51b8152602060048201526015602482015274746f427974657331325f6f75744f66426f756e647360581b604482015260640161052e565b5001600c015190565b600061083b82602061107f565b835110156108835760405162461bcd60e51b8152602060048201526015602482015274746f427974657333325f6f75744f66426f756e647360581b604482015260640161052e565b50016020015190565b600061089982600861107f565b835110156108e05760405162461bcd60e51b8152602060048201526014602482015273746f55696e7436345f6f75744f66426f756e647360601b604482015260640161052e565b50016008015190565b60006108f682600561107f565b8351101561093d5760405162461bcd60e51b8152602060048201526014602482015273746f4279746573355f6f75744f66426f756e647360601b604482015260640161052e565b50016005015190565b600061095382600361107f565b8351101561099a5760405162461bcd60e51b8152602060048201526014602482015273746f55696e7432345f6f75744f66426f756e647360601b604482015260640161052e565b50016003015190565b60006109b082600761107f565b835110156109f75760405162461bcd60e51b8152602060048201526014602482015273746f55696e7435365f6f75744f66426f756e647360601b604482015260640161052e565b50016007015190565b6000610a0d82602061107f565b835110156108835760405162461bcd60e51b8152602060048201526015602482015274746f55696e743235365f6f75744f66426f756e647360581b604482015260640161052e565b6000610a6282600861107f565b835110156108e05760405162461bcd60e51b8152602060048201526014602482015273746f4279746573385f6f75744f66426f756e647360601b604482015260640161052e565b6000610ab682600261107f565b83511015610afd5760405162461bcd60e51b8152602060048201526014602482015273746f55696e7431365f6f75744f66426f756e647360601b604482015260640161052e565b50016002015190565b6000610b1382600761107f565b835110156109f75760405162461bcd60e51b8152602060048201526014602482015273746f4279746573375f6f75744f66426f756e647360601b604482015260640161052e565b6000610b6782600c61107f565b835110156108255760405162461bcd60e51b8152602060048201526014602482015273746f55696e7439365f6f75744f66426f756e647360601b604482015260640161052e565b6000610bbb82600561107f565b8351101561093d5760405162461bcd60e51b8152602060048201526014602482015273746f55696e7434305f6f75744f66426f756e647360601b604482015260640161052e565b606081610c1081601f61107f565b1015610c4f5760405162461bcd60e51b815260206004820152600e60248201526d736c6963655f6f766572666c6f7760901b604482015260640161052e565b610c59828461107f565b84511015610c9d5760405162461bcd60e51b8152602060048201526011602482015270736c6963655f6f75744f66426f756e647360781b604482015260640161052e565b606082158015610cbc5760405191506000825260208201604052610d06565b6040519150601f8416801560200281840101858101878315602002848b0101015b81831015610cf5578051835260209283019201610cdd565b5050858452601f01601f1916604052505b50949350505050565b6000610d1c82601061107f565b835110156107c75760405162461bcd60e51b8152602060048201526015602482015274746f427974657331365f6f75744f66426f756e647360581b604482015260640161052e565b6000610d7182601461107f565b83511015610db95760405162461bcd60e51b8152602060048201526015602482015274746f416464726573735f6f75744f66426f756e647360581b604482015260640161052e565b500160200151600160601b900490565b6000610dd682600161107f565b835110156107085760405162461bcd60e51b8152602060048201526014602482015273746f4279746573315f6f75744f66426f756e647360601b604482015260640161052e565b634e487b7160e01b600052604160045260246000fd5b600082601f830112610e4457600080fd5b813567ffffffffffffffff80821115610e5f57610e5f610e1d565b604051601f8301601f19908116603f01168101908282118183101715610e8757610e87610e1d565b81604052838152866020858801011115610ea057600080fd5b836020870160208301376000602085830101528094505050505092915050565b60008060408385031215610ed357600080fd5b823567ffffffffffffffff811115610eea57600080fd5b610ef685828601610e33565b95602094909401359450505050565b60008060408385031215610f1857600080fd5b82359150602083013567ffffffffffffffff811115610f3657600080fd5b610f4285828601610e33565b9150509250929050565b60008060408385031215610f5f57600080fd5b823567ffffffffffffffff80821115610f7757600080fd5b610f8386838701610e33565b93506020850135915080821115610f9957600080fd5b50610f4285828601610e33565b600060208284031215610fb857600080fd5b813567ffffffffffffffff811115610fcf57600080fd5b610fdb84828501610e33565b949350505050565b600080600060608486031215610ff857600080fd5b833567ffffffffffffffff81111561100f57600080fd5b61101b86828701610e33565b9660208601359650604090950135949350505050565b600060208083528351808285015260005b8181101561105e57858101830151858201604001528201611042565b506000604082860101526040601f19601f8301168501019250505092915050565b8082018082111561064c57634e487b7160e01b600052601160045260246000fdfea26469706673582212200ab05fdff7c9159a360effa700137333459105198b03327bed2de33488aa4ec064736f6c63430008150033", "sourceMap": "411:13153:1:-:0;;;;;;;;;;;;;;;-1:-1:-1;;;411:13153:1;;;;;;;;;;;;;;;;;", "linkReferences": {} }, "deployedBytecode": { - "object": "0x73000000000000000000000000000000000000000030146080604052600436106101625760003560e01c8063a5eb31ee116100cd578063d1ffb56111610086578063d1ffb561146103fb578063d442584f1461042b578063e004139614610454578063f1142fb314610474578063f647f8fb14610487578063f83b670f146104b257600080fd5b8063a5eb31ee14610344578063a8d8f00f1461036b578063b5cdf92414610396578063b63711df146103a9578063be8b3430146103bc578063c29616bd146103cf57600080fd5b80635ef849301161011f5780635ef8493014610241578063913c97b41461026b57806397e6175c1461029f57806399dd9bd7146102cb5780639ae4c3d1146102ec5780639cee499e1461031857600080fd5b8063042aa0841461016757806305d3bb74146101985780631a7431ef146101c0578063235266d2146101e357806348137709146101f65780634d66a2ae1461021b575b600080fd5b61017a610175366004610ec0565b6104de565b6040516001600160d01b031990911681526020015b60405180910390f35b6101ab6101a6366004610ec0565b610540565b60405163ffffffff909116815260200161018f565b6101d36101ce366004610f05565b61059d565b604051901515815260200161018f565b6101d36101f1366004610f4c565b610652565b610209610204366004610ec0565b6106b5565b60405160ff909116815260200161018f565b61022e610229366004610fa6565b610711565b60405161ffff909116815260200161018f565b61025461024f366004610ec0565b61071e565b60405165ffffffffffff909116815260200161018f565b61027e610279366004610ec0565b610772565b6040516fffffffffffffffffffffffffffffffff909116815260200161018f565b6102b26102ad366004610ec0565b6107d0565b6040516001600160a01b0319909116815260200161018f565b6102de6102d9366004610ec0565b61082e565b60405190815260200161018f565b6102ff6102fa366004610ec0565b61088c565b60405167ffffffffffffffff909116815260200161018f565b61032b610326366004610ec0565b6108e9565b6040516001600160d81b0319909116815260200161018f565b610357610352366004610ec0565b610946565b60405162ffffff909116815260200161018f565b61037e610379366004610ec0565b6109a3565b60405166ffffffffffffff909116815260200161018f565b6102de6103a4366004610ec0565b610a00565b6102ff6103b7366004610ec0565b610a55565b61022e6103ca366004610ec0565b610aa9565b6103e26103dd366004610ec0565b610b06565b6040516001600160c81b0319909116815260200161018f565b61040e610409366004610ec0565b610b5a565b6040516bffffffffffffffffffffffff909116815260200161018f565b61043e610439366004610ec0565b610bae565b60405164ffffffffff909116815260200161018f565b610467610462366004610fe3565b610c02565b60405161018f9190611031565b6102b2610482366004610ec0565b610d0f565b61049a610495366004610ec0565b610d64565b6040516001600160a01b03909116815260200161018f565b6104c56104c0366004610ec0565b610dc9565b6040516001600160f81b0319909116815260200161018f565b60006104eb82600661107f565b835110156105375760405162461bcd60e51b8152602060048201526014602482015273746f4279746573365f6f75744f66426f756e647360601b60448201526064015b60405180910390fd5b50016006015190565b600061054d82600461107f565b835110156105945760405162461bcd60e51b8152602060048201526014602482015273746f55696e7433325f6f75744f66426f756e647360601b604482015260640161052e565b50016004015190565b600080600190508354600260018083161561010002038216048451808214600181146105cc5760009450610644565b821561064457602083106001811461062957600189600052602060002060208a018581015b600284828410010361062057815183541461060f5760009950600093505b6001830192506020820191506105f1565b50505050610642565b6101008086040294506020880151851461064257600095505b505b509293505050505b92915050565b81518151600091600191811480831461066e57600092506106ab565b600160208701838101602088015b60028483851001036106a657805183511461069a5760009650600093505b6020928301920161067c565b505050505b5090949350505050565b60006106c282600161107f565b835110156107085760405162461bcd60e51b8152602060048201526013602482015272746f55696e74385f6f75744f66426f756e647360681b604482015260640161052e565b50016001015190565b600061064c826000610aa9565b600061072b82600661107f565b835110156105375760405162461bcd60e51b8152602060048201526014602482015273746f55696e7434385f6f75744f66426f756e647360601b604482015260640161052e565b600061077f82601061107f565b835110156107c75760405162461bcd60e51b8152602060048201526015602482015274746f55696e743132385f6f75744f66426f756e647360581b604482015260640161052e565b50016010015190565b60006107dd82600c61107f565b835110156108255760405162461bcd60e51b8152602060048201526015602482015274746f427974657331325f6f75744f66426f756e647360581b604482015260640161052e565b5001600c015190565b600061083b82602061107f565b835110156108835760405162461bcd60e51b8152602060048201526015602482015274746f427974657333325f6f75744f66426f756e647360581b604482015260640161052e565b50016020015190565b600061089982600861107f565b835110156108e05760405162461bcd60e51b8152602060048201526014602482015273746f55696e7436345f6f75744f66426f756e647360601b604482015260640161052e565b50016008015190565b60006108f682600561107f565b8351101561093d5760405162461bcd60e51b8152602060048201526014602482015273746f4279746573355f6f75744f66426f756e647360601b604482015260640161052e565b50016005015190565b600061095382600361107f565b8351101561099a5760405162461bcd60e51b8152602060048201526014602482015273746f55696e7432345f6f75744f66426f756e647360601b604482015260640161052e565b50016003015190565b60006109b082600761107f565b835110156109f75760405162461bcd60e51b8152602060048201526014602482015273746f55696e7435365f6f75744f66426f756e647360601b604482015260640161052e565b50016007015190565b6000610a0d82602061107f565b835110156108835760405162461bcd60e51b8152602060048201526015602482015274746f55696e743235365f6f75744f66426f756e647360581b604482015260640161052e565b6000610a6282600861107f565b835110156108e05760405162461bcd60e51b8152602060048201526014602482015273746f4279746573385f6f75744f66426f756e647360601b604482015260640161052e565b6000610ab682600261107f565b83511015610afd5760405162461bcd60e51b8152602060048201526014602482015273746f55696e7431365f6f75744f66426f756e647360601b604482015260640161052e565b50016002015190565b6000610b1382600761107f565b835110156109f75760405162461bcd60e51b8152602060048201526014602482015273746f4279746573375f6f75744f66426f756e647360601b604482015260640161052e565b6000610b6782600c61107f565b835110156108255760405162461bcd60e51b8152602060048201526014602482015273746f55696e7439365f6f75744f66426f756e647360601b604482015260640161052e565b6000610bbb82600561107f565b8351101561093d5760405162461bcd60e51b8152602060048201526014602482015273746f55696e7434305f6f75744f66426f756e647360601b604482015260640161052e565b606081610c1081601f61107f565b1015610c4f5760405162461bcd60e51b815260206004820152600e60248201526d736c6963655f6f766572666c6f7760901b604482015260640161052e565b610c59828461107f565b84511015610c9d5760405162461bcd60e51b8152602060048201526011602482015270736c6963655f6f75744f66426f756e647360781b604482015260640161052e565b606082158015610cbc5760405191506000825260208201604052610d06565b6040519150601f8416801560200281840101858101878315602002848b0101015b81831015610cf5578051835260209283019201610cdd565b5050858452601f01601f1916604052505b50949350505050565b6000610d1c82601061107f565b835110156107c75760405162461bcd60e51b8152602060048201526015602482015274746f427974657331365f6f75744f66426f756e647360581b604482015260640161052e565b6000610d7182601461107f565b83511015610db95760405162461bcd60e51b8152602060048201526015602482015274746f416464726573735f6f75744f66426f756e647360581b604482015260640161052e565b500160200151600160601b900490565b6000610dd682600161107f565b835110156107085760405162461bcd60e51b8152602060048201526014602482015273746f4279746573315f6f75744f66426f756e647360601b604482015260640161052e565b634e487b7160e01b600052604160045260246000fd5b600082601f830112610e4457600080fd5b813567ffffffffffffffff80821115610e5f57610e5f610e1d565b604051601f8301601f19908116603f01168101908282118183101715610e8757610e87610e1d565b81604052838152866020858801011115610ea057600080fd5b836020870160208301376000602085830101528094505050505092915050565b60008060408385031215610ed357600080fd5b823567ffffffffffffffff811115610eea57600080fd5b610ef685828601610e33565b95602094909401359450505050565b60008060408385031215610f1857600080fd5b82359150602083013567ffffffffffffffff811115610f3657600080fd5b610f4285828601610e33565b9150509250929050565b60008060408385031215610f5f57600080fd5b823567ffffffffffffffff80821115610f7757600080fd5b610f8386838701610e33565b93506020850135915080821115610f9957600080fd5b50610f4285828601610e33565b600060208284031215610fb857600080fd5b813567ffffffffffffffff811115610fcf57600080fd5b610fdb84828501610e33565b949350505050565b600080600060608486031215610ff857600080fd5b833567ffffffffffffffff81111561100f57600080fd5b61101b86828701610e33565b9660208601359650604090950135949350505050565b600060208083528351808285015260005b8181101561105e57858101830151858201604001528201611042565b506000604082860101526040601f19601f8301168501019250505092915050565b8082018082111561064c57634e487b7160e01b600052601160045260246000fdfea26469706673582212205bdf5bc4551862519f5370e0dcec38eefbbbe11b6a5bf19ce2846b4f8831a5dc64736f6c63430008110033", + "object": "0x73000000000000000000000000000000000000000030146080604052600436106101625760003560e01c8063a5eb31ee116100cd578063d1ffb56111610086578063d1ffb561146103fb578063d442584f1461042b578063e004139614610454578063f1142fb314610474578063f647f8fb14610487578063f83b670f146104b257600080fd5b8063a5eb31ee14610344578063a8d8f00f1461036b578063b5cdf92414610396578063b63711df146103a9578063be8b3430146103bc578063c29616bd146103cf57600080fd5b80635ef849301161011f5780635ef8493014610241578063913c97b41461026b57806397e6175c1461029f57806399dd9bd7146102cb5780639ae4c3d1146102ec5780639cee499e1461031857600080fd5b8063042aa0841461016757806305d3bb74146101985780631a7431ef146101c0578063235266d2146101e357806348137709146101f65780634d66a2ae1461021b575b600080fd5b61017a610175366004610ec0565b6104de565b6040516001600160d01b031990911681526020015b60405180910390f35b6101ab6101a6366004610ec0565b610540565b60405163ffffffff909116815260200161018f565b6101d36101ce366004610f05565b61059d565b604051901515815260200161018f565b6101d36101f1366004610f4c565b610652565b610209610204366004610ec0565b6106b5565b60405160ff909116815260200161018f565b61022e610229366004610fa6565b610711565b60405161ffff909116815260200161018f565b61025461024f366004610ec0565b61071e565b60405165ffffffffffff909116815260200161018f565b61027e610279366004610ec0565b610772565b6040516fffffffffffffffffffffffffffffffff909116815260200161018f565b6102b26102ad366004610ec0565b6107d0565b6040516001600160a01b0319909116815260200161018f565b6102de6102d9366004610ec0565b61082e565b60405190815260200161018f565b6102ff6102fa366004610ec0565b61088c565b60405167ffffffffffffffff909116815260200161018f565b61032b610326366004610ec0565b6108e9565b6040516001600160d81b0319909116815260200161018f565b610357610352366004610ec0565b610946565b60405162ffffff909116815260200161018f565b61037e610379366004610ec0565b6109a3565b60405166ffffffffffffff909116815260200161018f565b6102de6103a4366004610ec0565b610a00565b6102ff6103b7366004610ec0565b610a55565b61022e6103ca366004610ec0565b610aa9565b6103e26103dd366004610ec0565b610b06565b6040516001600160c81b0319909116815260200161018f565b61040e610409366004610ec0565b610b5a565b6040516bffffffffffffffffffffffff909116815260200161018f565b61043e610439366004610ec0565b610bae565b60405164ffffffffff909116815260200161018f565b610467610462366004610fe3565b610c02565b60405161018f9190611031565b6102b2610482366004610ec0565b610d0f565b61049a610495366004610ec0565b610d64565b6040516001600160a01b03909116815260200161018f565b6104c56104c0366004610ec0565b610dc9565b6040516001600160f81b0319909116815260200161018f565b60006104eb82600661107f565b835110156105375760405162461bcd60e51b8152602060048201526014602482015273746f4279746573365f6f75744f66426f756e647360601b60448201526064015b60405180910390fd5b50016006015190565b600061054d82600461107f565b835110156105945760405162461bcd60e51b8152602060048201526014602482015273746f55696e7433325f6f75744f66426f756e647360601b604482015260640161052e565b50016004015190565b600080600190508354600260018083161561010002038216048451808214600181146105cc5760009450610644565b821561064457602083106001811461062957600189600052602060002060208a018581015b600284828410010361062057815183541461060f5760009950600093505b6001830192506020820191506105f1565b50505050610642565b6101008086040294506020880151851461064257600095505b505b509293505050505b92915050565b81518151600091600191811480831461066e57600092506106ab565b600160208701838101602088015b60028483851001036106a657805183511461069a5760009650600093505b6020928301920161067c565b505050505b5090949350505050565b60006106c282600161107f565b835110156107085760405162461bcd60e51b8152602060048201526013602482015272746f55696e74385f6f75744f66426f756e647360681b604482015260640161052e565b50016001015190565b600061064c826000610aa9565b600061072b82600661107f565b835110156105375760405162461bcd60e51b8152602060048201526014602482015273746f55696e7434385f6f75744f66426f756e647360601b604482015260640161052e565b600061077f82601061107f565b835110156107c75760405162461bcd60e51b8152602060048201526015602482015274746f55696e743132385f6f75744f66426f756e647360581b604482015260640161052e565b50016010015190565b60006107dd82600c61107f565b835110156108255760405162461bcd60e51b8152602060048201526015602482015274746f427974657331325f6f75744f66426f756e647360581b604482015260640161052e565b5001600c015190565b600061083b82602061107f565b835110156108835760405162461bcd60e51b8152602060048201526015602482015274746f427974657333325f6f75744f66426f756e647360581b604482015260640161052e565b50016020015190565b600061089982600861107f565b835110156108e05760405162461bcd60e51b8152602060048201526014602482015273746f55696e7436345f6f75744f66426f756e647360601b604482015260640161052e565b50016008015190565b60006108f682600561107f565b8351101561093d5760405162461bcd60e51b8152602060048201526014602482015273746f4279746573355f6f75744f66426f756e647360601b604482015260640161052e565b50016005015190565b600061095382600361107f565b8351101561099a5760405162461bcd60e51b8152602060048201526014602482015273746f55696e7432345f6f75744f66426f756e647360601b604482015260640161052e565b50016003015190565b60006109b082600761107f565b835110156109f75760405162461bcd60e51b8152602060048201526014602482015273746f55696e7435365f6f75744f66426f756e647360601b604482015260640161052e565b50016007015190565b6000610a0d82602061107f565b835110156108835760405162461bcd60e51b8152602060048201526015602482015274746f55696e743235365f6f75744f66426f756e647360581b604482015260640161052e565b6000610a6282600861107f565b835110156108e05760405162461bcd60e51b8152602060048201526014602482015273746f4279746573385f6f75744f66426f756e647360601b604482015260640161052e565b6000610ab682600261107f565b83511015610afd5760405162461bcd60e51b8152602060048201526014602482015273746f55696e7431365f6f75744f66426f756e647360601b604482015260640161052e565b50016002015190565b6000610b1382600761107f565b835110156109f75760405162461bcd60e51b8152602060048201526014602482015273746f4279746573375f6f75744f66426f756e647360601b604482015260640161052e565b6000610b6782600c61107f565b835110156108255760405162461bcd60e51b8152602060048201526014602482015273746f55696e7439365f6f75744f66426f756e647360601b604482015260640161052e565b6000610bbb82600561107f565b8351101561093d5760405162461bcd60e51b8152602060048201526014602482015273746f55696e7434305f6f75744f66426f756e647360601b604482015260640161052e565b606081610c1081601f61107f565b1015610c4f5760405162461bcd60e51b815260206004820152600e60248201526d736c6963655f6f766572666c6f7760901b604482015260640161052e565b610c59828461107f565b84511015610c9d5760405162461bcd60e51b8152602060048201526011602482015270736c6963655f6f75744f66426f756e647360781b604482015260640161052e565b606082158015610cbc5760405191506000825260208201604052610d06565b6040519150601f8416801560200281840101858101878315602002848b0101015b81831015610cf5578051835260209283019201610cdd565b5050858452601f01601f1916604052505b50949350505050565b6000610d1c82601061107f565b835110156107c75760405162461bcd60e51b8152602060048201526015602482015274746f427974657331365f6f75744f66426f756e647360581b604482015260640161052e565b6000610d7182601461107f565b83511015610db95760405162461bcd60e51b8152602060048201526015602482015274746f416464726573735f6f75744f66426f756e647360581b604482015260640161052e565b500160200151600160601b900490565b6000610dd682600161107f565b835110156107085760405162461bcd60e51b8152602060048201526014602482015273746f4279746573315f6f75744f66426f756e647360601b604482015260640161052e565b634e487b7160e01b600052604160045260246000fd5b600082601f830112610e4457600080fd5b813567ffffffffffffffff80821115610e5f57610e5f610e1d565b604051601f8301601f19908116603f01168101908282118183101715610e8757610e87610e1d565b81604052838152866020858801011115610ea057600080fd5b836020870160208301376000602085830101528094505050505092915050565b60008060408385031215610ed357600080fd5b823567ffffffffffffffff811115610eea57600080fd5b610ef685828601610e33565b95602094909401359450505050565b60008060408385031215610f1857600080fd5b82359150602083013567ffffffffffffffff811115610f3657600080fd5b610f4285828601610e33565b9150509250929050565b60008060408385031215610f5f57600080fd5b823567ffffffffffffffff80821115610f7757600080fd5b610f8386838701610e33565b93506020850135915080821115610f9957600080fd5b50610f4285828601610e33565b600060208284031215610fb857600080fd5b813567ffffffffffffffff811115610fcf57600080fd5b610fdb84828501610e33565b949350505050565b600080600060608486031215610ff857600080fd5b833567ffffffffffffffff81111561100f57600080fd5b61101b86828701610e33565b9660208601359650604090950135949350505050565b600060208083528351808285015260005b8181101561105e57858101830151858201604001528201611042565b506000604082860101526040601f19601f8301168501019250505092915050565b8082018082111561064c57634e487b7160e01b600052601160045260246000fdfea26469706673582212200ab05fdff7c9159a360effa700137333459105198b03327bed2de33488aa4ec064736f6c63430008150033", "sourceMap": "411:13153:1:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6189:279;;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;;1432:37:36;;;1414:56;;1402:2;1387:18;6189:279:1;;;;;;;;5049;;;;;;:::i;:::-;;:::i;:::-;;;1663:10:36;1651:23;;;1633:42;;1621:2;1606:18;5049:279:1;1481:200:36;10804:2758:1;;;;;;:::i;:::-;;:::i;:::-;;;2262:14:36;;2255:22;2237:41;;2225:2;2210:18;10804:2758:1;2089:195:36;9348:1450:1;;;;;;:::i;:::-;;:::i;3791:276::-;;;;;;:::i;:::-;;:::i;:::-;;;3013:4:36;3001:17;;;2983:36;;2971:2;2956:18;3791:276:1;2833:192:36;4643:115:1;;;;;;:::i;:::-;;:::i;:::-;;;3537:6:36;3525:19;;;3507:38;;3495:2;3480:18;4643:115:1;3355:196:36;5904:279:1;;;;;;:::i;:::-;;:::i;:::-;;;3738:14:36;3726:27;;;3708:46;;3696:2;3681:18;5904:279:1;3556:204:36;8188:284:1;;;;;;:::i;:::-;;:::i;:::-;;;3949:34:36;3937:47;;;3919:66;;3907:2;3892:18;8188:284:1;3765:226:36;7899:283:1;;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;;4168:49:36;;;4150:68;;4138:2;4123:18;7899:283:1;3996:228:36;9058:284:1;;;;;;:::i;:::-;;:::i;:::-;;;4383:25:36;;;4371:2;4356:18;9058:284:1;4229:185:36;7043:279:1;;;;;;:::i;:::-;;:::i;:::-;;;4601:18:36;4589:31;;;4571:50;;4559:2;4544:18;7043:279:1;4419:208:36;5619:279:1;;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;;4802:35:36;;;4784:54;;4772:2;4757:18;5619:279:1;4632:212:36;4764:279:1;;;;;;:::i;:::-;;:::i;:::-;;;5031:8:36;5019:21;;;5001:40;;4989:2;4974:18;4764:279:1;4849:198:36;6474:279:1;;;;;;:::i;:::-;;:::i;:::-;;;5234:16:36;5222:29;;;5204:48;;5192:2;5177:18;6474:279:1;5052:206:36;8768:284:1;;;;;;:::i;:::-;;:::i;7328:279::-;;;;;;:::i;:::-;;:::i;4358:::-;;;;;;:::i;:::-;;:::i;6759:278::-;;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;;5623:39:36;;;5605:58;;5593:2;5578:18;6759:278:1;5453:216:36;7613:280:1;;;;;;:::i;:::-;;:::i;:::-;;;5856:26:36;5844:39;;;5826:58;;5814:2;5799:18;7613:280:1;5674:216:36;5334:279:1;;;;;;:::i;:::-;;:::i;:::-;;;6077:12:36;6065:25;;;6047:44;;6035:2;6020:18;5334:279:1;5895:202:36;431:2984:1;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;8478:284::-;;;;;;:::i;:::-;;:::i;3421:364::-;;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;7294:32:36;;;7276:51;;7264:2;7249:18;3421:364:1;7122:211:36;4073:279:1;;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;;7508:26:36;;;7490:45;;7478:2;7463:18;4073:279:1;7338:203:36;6189:279:1;6289:10;6340;:6;6349:1;6340:10;:::i;:::-;6323:6;:13;:27;;6315:60;;;;-1:-1:-1;;;6315:60:1;;7975:2:36;6315:60:1;;;7957:21:36;8014:2;7994:18;;;7987:30;-1:-1:-1;;;8033:18:36;;;8026:50;8093:18;;6315:60:1;;;;;;;;;-1:-1:-1;6422:29:1;6438:3;6422:29;6416:36;;6189:279::o;5049:::-;5149:10;5200;:6;5209:1;5200:10;:::i;:::-;5183:6;:13;:27;;5175:60;;;;-1:-1:-1;;;5175:60:1;;8324:2:36;5175:60:1;;;8306:21:36;8363:2;8343:18;;;8336:30;-1:-1:-1;;;8382:18:36;;;8375:50;8442:18;;5175:60:1;8122:344:36;5175:60:1;-1:-1:-1;5282:29:1;5298:3;5282:29;5276:36;;5049:279::o;10804:2758::-;10921:4;10941:12;10956:4;10941:19;;11058:14;11052:21;11271:1;11250;11244;11237:5;11233:13;11226:21;11219:5;11215:33;11211:41;11204:5;11200:53;11179:107;11320:10;11314:17;11427:7;11418;11415:20;11453:1;11448:1978;;;;13506:1;13495:12;;11408:2113;;11448:1978;11756:7;11749:15;11739:1673;;11807:2;11798:7;11795:15;11836:1;11831:347;;;;12486:1;12605:14;12600:3;12593:27;12670:4;12665:3;12655:20;12727:4;12715:10;12711:21;12776:7;12772:2;12768:16;12936:436;12994:1;12989:2;12983:3;12979:2;12976:11;12972:20;12969:27;12936:436;;13178:2;13172:9;13167:2;13161:9;13158:24;13148:198;;13275:1;13264:12;;13315:1;13309:7;;13148:198;13041:1;13037:2;13033:10;13027:16;;13086:4;13082:2;13078:13;13072:19;;12936:436;;;12940:28;;;;11788:1606;;11831:347;11963:5;11955;11948;11944:17;11940:29;11931:38;;12037:4;12025:10;12021:21;12015:28;12008:5;12005:39;11995:161;;12129:1;12118:12;;11995:161;11788:1606;11739:1673;-1:-1:-1;13548:7:1;;-1:-1:-1;;;;10804:2758:1;;;;;:::o;9348:1450::-;9544:16;;9655:17;;9457:4;;9492;;9644:29;;9686:976;;;;;10742:1;10731:12;;9637:1120;;9686:976;9932:1;9976:4;9965:9;9961:20;10017:6;10013:2;10009:15;10094:4;10082:10;10078:21;10042:606;10261:1;10256:2;10250:3;10246:2;10243:11;10239:20;10236:27;10042:606;;10494:2;10488:9;10483:2;10477:9;10474:24;10464:166;;10575:1;10564:12;;10607:1;10601:7;;10464:166;10300:4;10292:13;;;;10332;10042:606;;;10046:189;;;;9637:1120;-1:-1:-1;10784:7:1;;9348:1450;-1:-1:-1;;;;9348:1450:1:o;3791:276::-;3890:9;3940:10;:6;3949:1;3940:10;:::i;:::-;3923:6;:13;:27;;3915:59;;;;-1:-1:-1;;;3915:59:1;;8673:2:36;3915:59:1;;;8655:21:36;8712:2;8692:18;;;8685:30;-1:-1:-1;;;8731:18:36;;;8724:49;8790:18;;3915:59:1;8471:343:36;3915:59:1;-1:-1:-1;4021:29:1;4037:3;4021:29;4015:36;;3791:276::o;4643:115::-;4703:10;4732:19;4741:6;4749:1;4732:8;:19::i;5904:279::-;6004:10;6055;:6;6064:1;6055:10;:::i;:::-;6038:6;:13;:27;;6030:60;;;;-1:-1:-1;;;6030:60:1;;9021:2:36;6030:60:1;;;9003:21:36;9060:2;9040:18;;;9033:30;-1:-1:-1;;;9079:18:36;;;9072:50;9139:18;;6030:60:1;8819:344:36;8188:284:1;8289:11;8341;:6;8350:2;8341:11;:::i;:::-;8324:6;:13;:28;;8316:62;;;;-1:-1:-1;;;8316:62:1;;9370:2:36;8316:62:1;;;9352:21:36;9409:2;9389:18;;;9382:30;-1:-1:-1;;;9428:18:36;;;9421:51;9489:18;;8316:62:1;9168:345:36;8316:62:1;-1:-1:-1;8425:30:1;8441:4;8425:30;8419:37;;8188:284::o;7899:283::-;8000:11;8052;:6;8061:2;8052:11;:::i;:::-;8035:6;:13;:28;;8027:62;;;;-1:-1:-1;;;8027:62:1;;9720:2:36;8027:62:1;;;9702:21:36;9759:2;9739:18;;;9732:30;-1:-1:-1;;;9778:18:36;;;9771:51;9839:18;;8027:62:1;9518:345:36;8027:62:1;-1:-1:-1;8136:29:1;8152:3;8136:29;8130:36;;7899:283::o;9058:284::-;9159:11;9211;:6;9220:2;9211:11;:::i;:::-;9194:6;:13;:28;;9186:62;;;;-1:-1:-1;;;9186:62:1;;10070:2:36;9186:62:1;;;10052:21:36;10109:2;10089:18;;;10082:30;-1:-1:-1;;;10128:18:36;;;10121:51;10189:18;;9186:62:1;9868:345:36;9186:62:1;-1:-1:-1;9295:30:1;9311:4;9295:30;9289:37;;9058:284::o;7043:279::-;7143:10;7194;:6;7203:1;7194:10;:::i;:::-;7177:6;:13;:27;;7169:60;;;;-1:-1:-1;;;7169:60:1;;10420:2:36;7169:60:1;;;10402:21:36;10459:2;10439:18;;;10432:30;-1:-1:-1;;;10478:18:36;;;10471:50;10538:18;;7169:60:1;10218:344:36;7169:60:1;-1:-1:-1;7276:29:1;7292:3;7276:29;7270:36;;7043:279::o;5619:::-;5719:10;5770;:6;5779:1;5770:10;:::i;:::-;5753:6;:13;:27;;5745:60;;;;-1:-1:-1;;;5745:60:1;;10769:2:36;5745:60:1;;;10751:21:36;10808:2;10788:18;;;10781:30;-1:-1:-1;;;10827:18:36;;;10820:50;10887:18;;5745:60:1;10567:344:36;5745:60:1;-1:-1:-1;5852:29:1;5868:3;5852:29;5846:36;;5619:279::o;4764:::-;4864:10;4915;:6;4924:1;4915:10;:::i;:::-;4898:6;:13;:27;;4890:60;;;;-1:-1:-1;;;4890:60:1;;11118:2:36;4890:60:1;;;11100:21:36;11157:2;11137:18;;;11130:30;-1:-1:-1;;;11176:18:36;;;11169:50;11236:18;;4890:60:1;10916:344:36;4890:60:1;-1:-1:-1;4997:29:1;5013:3;4997:29;4991:36;;4764:279::o;6474:::-;6574:10;6625;:6;6634:1;6625:10;:::i;:::-;6608:6;:13;:27;;6600:60;;;;-1:-1:-1;;;6600:60:1;;11467:2:36;6600:60:1;;;11449:21:36;11506:2;11486:18;;;11479:30;-1:-1:-1;;;11525:18:36;;;11518:50;11585:18;;6600:60:1;11265:344:36;6600:60:1;-1:-1:-1;6707:29:1;6723:3;6707:29;6701:36;;6474:279::o;8768:284::-;8869:11;8921;:6;8930:2;8921:11;:::i;:::-;8904:6;:13;:28;;8896:62;;;;-1:-1:-1;;;8896:62:1;;11816:2:36;8896:62:1;;;11798:21:36;11855:2;11835:18;;;11828:30;-1:-1:-1;;;11874:18:36;;;11867:51;11935:18;;8896:62:1;11614:345:36;7328:279:1;7428:10;7479;:6;7488:1;7479:10;:::i;:::-;7462:6;:13;:27;;7454:60;;;;-1:-1:-1;;;7454:60:1;;12166:2:36;7454:60:1;;;12148:21:36;12205:2;12185:18;;;12178:30;-1:-1:-1;;;12224:18:36;;;12217:50;12284:18;;7454:60:1;11964:344:36;4358:279:1;4458:10;4509;:6;4518:1;4509:10;:::i;:::-;4492:6;:13;:27;;4484:60;;;;-1:-1:-1;;;4484:60:1;;12515:2:36;4484:60:1;;;12497:21:36;12554:2;12534:18;;;12527:30;-1:-1:-1;;;12573:18:36;;;12566:50;12633:18;;4484:60:1;12313:344:36;4484:60:1;-1:-1:-1;4591:29:1;4607:3;4591:29;4585:36;;4358:279::o;6759:278::-;6858:10;6909;:6;6918:1;6909:10;:::i;:::-;6892:6;:13;:27;;6884:60;;;;-1:-1:-1;;;6884:60:1;;12864:2:36;6884:60:1;;;12846:21:36;12903:2;12883:18;;;12876:30;-1:-1:-1;;;12922:18:36;;;12915:50;12982:18;;6884:60:1;12662:344:36;7613:280:1;7713:10;7764:11;:6;7773:2;7764:11;:::i;:::-;7747:6;:13;:28;;7739:61;;;;-1:-1:-1;;;7739:61:1;;13213:2:36;7739:61:1;;;13195:21:36;13252:2;13232:18;;;13225:30;-1:-1:-1;;;13271:18:36;;;13264:50;13331:18;;7739:61:1;13011:344:36;5334:279:1;5434:10;5485;:6;5494:1;5485:10;:::i;:::-;5468:6;:13;:27;;5460:60;;;;-1:-1:-1;;;5460:60:1;;13562:2:36;5460:60:1;;;13544:21:36;13601:2;13581:18;;;13574:30;-1:-1:-1;;;13620:18:36;;;13613:50;13680:18;;5460:60:1;13360:344:36;431:2984:1;551:12;599:7;583:12;599:7;593:2;583:12;:::i;:::-;:23;;575:50;;;;-1:-1:-1;;;575:50:1;;13911:2:36;575:50:1;;;13893:21:36;13950:2;13930:18;;;13923:30;-1:-1:-1;;;13969:18:36;;;13962:44;14023:18;;575:50:1;13709:338:36;575:50:1;660:16;669:7;660:6;:16;:::i;:::-;643:6;:13;:33;;635:63;;;;-1:-1:-1;;;635:63:1;;14254:2:36;635:63:1;;;14236:21:36;14293:2;14273:18;;;14266:30;-1:-1:-1;;;14312:18:36;;;14305:47;14369:18;;635:63:1;14052:341:36;635:63:1;709:22;772:15;;800:2177;;;;3118:4;3112:11;3099:24;;3304:1;3293:9;3286:20;3352:4;3341:9;3337:20;3331:4;3324:34;765:2607;;800:2177;982:4;976:11;963:24;;1641:2;1632:7;1628:16;2064:9;2057:17;2051:4;2047:28;2015:9;2004;2000:25;1975:118;2129:7;2125:2;2121:16;2512:6;2449:9;2442:17;2436:4;2432:28;2392:9;2384:6;2380:22;2347:139;2318:222;2155:577;2566:3;2562:2;2559:11;2155:577;;;2704:9;;2693:21;;2607:4;2599:13;;;;2639;2155:577;;;-1:-1:-1;;2750:26:1;;;2958:2;2941:11;-1:-1:-1;;2937:25:1;2931:4;2924:39;-1:-1:-1;765:2607:1;-1:-1:-1;3399:9:1;431:2984;-1:-1:-1;;;;431:2984:1:o;8478:284::-;8579:11;8631;:6;8640:2;8631:11;:::i;:::-;8614:6;:13;:28;;8606:62;;;;-1:-1:-1;;;8606:62:1;;14600:2:36;8606:62:1;;;14582:21:36;14639:2;14619:18;;;14612:30;-1:-1:-1;;;14658:18:36;;;14651:51;14719:18;;8606:62:1;14398:345:36;3421:364:1;3522:11;3574;:6;3583:2;3574:11;:::i;:::-;3557:6;:13;:28;;3549:62;;;;-1:-1:-1;;;3549:62:1;;14950:2:36;3549:62:1;;;14932:21:36;14989:2;14969:18;;;14962:30;-1:-1:-1;;;15008:18:36;;;15001:51;15069:18;;3549:62:1;14748:345:36;3549:62:1;-1:-1:-1;3679:30:1;3695:4;3679:30;3673:37;-1:-1:-1;;;3652:117:1;;;3421:364::o;4073:279::-;4173:10;4224;:6;4233:1;4224:10;:::i;:::-;4207:6;:13;:27;;4199:60;;;;-1:-1:-1;;;4199:60:1;;15300:2:36;4199:60:1;;;15282:21:36;15339:2;15319:18;;;15312:30;-1:-1:-1;;;15358:18:36;;;15351:50;15418:18;;4199:60:1;15098:344:36;14:127;75:10;70:3;66:20;63:1;56:31;106:4;103:1;96:15;130:4;127:1;120:15;146:718;188:5;241:3;234:4;226:6;222:17;218:27;208:55;;259:1;256;249:12;208:55;295:6;282:20;321:18;358:2;354;351:10;348:36;;;364:18;;:::i;:::-;439:2;433:9;407:2;493:13;;-1:-1:-1;;489:22:36;;;513:2;485:31;481:40;469:53;;;537:18;;;557:22;;;534:46;531:72;;;583:18;;:::i;:::-;623:10;619:2;612:22;658:2;650:6;643:18;704:3;697:4;692:2;684:6;680:15;676:26;673:35;670:55;;;721:1;718;711:12;670:55;785:2;778:4;770:6;766:17;759:4;751:6;747:17;734:54;832:1;825:4;820:2;812:6;808:15;804:26;797:37;852:6;843:15;;;;;;146:718;;;;:::o;869:388::-;946:6;954;1007:2;995:9;986:7;982:23;978:32;975:52;;;1023:1;1020;1013:12;975:52;1063:9;1050:23;1096:18;1088:6;1085:30;1082:50;;;1128:1;1125;1118:12;1082:50;1151:49;1192:7;1183:6;1172:9;1168:22;1151:49;:::i;:::-;1141:59;1247:2;1232:18;;;;1219:32;;-1:-1:-1;;;;869:388:36:o;1686:398::-;1773:6;1781;1834:2;1822:9;1813:7;1809:23;1805:32;1802:52;;;1850:1;1847;1840:12;1802:52;1886:9;1873:23;1863:33;;1947:2;1936:9;1932:18;1919:32;1974:18;1966:6;1963:30;1960:50;;;2006:1;2003;1996:12;1960:50;2029:49;2070:7;2061:6;2050:9;2046:22;2029:49;:::i;:::-;2019:59;;;1686:398;;;;;:::o;2289:539::-;2375:6;2383;2436:2;2424:9;2415:7;2411:23;2407:32;2404:52;;;2452:1;2449;2442:12;2404:52;2492:9;2479:23;2521:18;2562:2;2554:6;2551:14;2548:34;;;2578:1;2575;2568:12;2548:34;2601:49;2642:7;2633:6;2622:9;2618:22;2601:49;:::i;:::-;2591:59;;2703:2;2692:9;2688:18;2675:32;2659:48;;2732:2;2722:8;2719:16;2716:36;;;2748:1;2745;2738:12;2716:36;;2771:51;2814:7;2803:8;2792:9;2788:24;2771:51;:::i;3030:320::-;3098:6;3151:2;3139:9;3130:7;3126:23;3122:32;3119:52;;;3167:1;3164;3157:12;3119:52;3207:9;3194:23;3240:18;3232:6;3229:30;3226:50;;;3272:1;3269;3262:12;3226:50;3295:49;3336:7;3327:6;3316:9;3312:22;3295:49;:::i;:::-;3285:59;3030:320;-1:-1:-1;;;;3030:320:36:o;6102:456::-;6188:6;6196;6204;6257:2;6245:9;6236:7;6232:23;6228:32;6225:52;;;6273:1;6270;6263:12;6225:52;6313:9;6300:23;6346:18;6338:6;6335:30;6332:50;;;6378:1;6375;6368:12;6332:50;6401:49;6442:7;6433:6;6422:9;6418:22;6401:49;:::i;:::-;6391:59;6497:2;6482:18;;6469:32;;-1:-1:-1;6548:2:36;6533:18;;;6520:32;;6102:456;-1:-1:-1;;;;6102:456:36:o;6563:554::-;6681:4;6710:2;6739;6728:9;6721:21;6771:6;6765:13;6814:6;6809:2;6798:9;6794:18;6787:34;6839:1;6849:140;6863:6;6860:1;6857:13;6849:140;;;6958:14;;;6954:23;;6948:30;6924:17;;;6943:2;6920:26;6913:66;6878:10;;6849:140;;;6853:3;7038:1;7033:2;7024:6;7013:9;7009:22;7005:31;6998:42;7108:2;7101;7097:7;7092:2;7084:6;7080:15;7076:29;7065:9;7061:45;7057:54;7049:62;;;;6563:554;;;;:::o;7546:222::-;7611:9;;;7632:10;;;7629:133;;;7684:10;7679:3;7675:20;7672:1;7665:31;7719:4;7716:1;7709:15;7747:4;7744:1;7737:15", "linkReferences": {} }, @@ -589,10 +589,10 @@ "toUint8(bytes,uint256)": "48137709", "toUint96(bytes,uint256)": "d1ffb561" }, - "rawMetadata": "{\"compiler\":{\"version\":\"0.8.17+commit.8df45f5f\"},\"language\":\"Solidity\",\"output\":{\"abi\":[{\"inputs\":[{\"internalType\":\"bytes\",\"name\":\"_preBytes\",\"type\":\"bytes\"},{\"internalType\":\"bytes\",\"name\":\"_postBytes\",\"type\":\"bytes\"}],\"name\":\"equal\",\"outputs\":[{\"internalType\":\"bool\",\"name\":\"\",\"type\":\"bool\"}],\"stateMutability\":\"pure\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"bytes\",\"name\":\"_bytes\",\"type\":\"bytes\"},{\"internalType\":\"uint256\",\"name\":\"_start\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"_length\",\"type\":\"uint256\"}],\"name\":\"slice\",\"outputs\":[{\"internalType\":\"bytes\",\"name\":\"\",\"type\":\"bytes\"}],\"stateMutability\":\"pure\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"bytes\",\"name\":\"_bytes\",\"type\":\"bytes\"},{\"internalType\":\"uint256\",\"name\":\"_start\",\"type\":\"uint256\"}],\"name\":\"toAddress\",\"outputs\":[{\"internalType\":\"address\",\"name\":\"tmp\",\"type\":\"address\"}],\"stateMutability\":\"pure\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"bytes\",\"name\":\"_bytes\",\"type\":\"bytes\"},{\"internalType\":\"uint256\",\"name\":\"_start\",\"type\":\"uint256\"}],\"name\":\"toByes7\",\"outputs\":[{\"internalType\":\"bytes7\",\"name\":\"tmp\",\"type\":\"bytes7\"}],\"stateMutability\":\"pure\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"bytes\",\"name\":\"_bytes\",\"type\":\"bytes\"},{\"internalType\":\"uint256\",\"name\":\"_start\",\"type\":\"uint256\"}],\"name\":\"toBytes1\",\"outputs\":[{\"internalType\":\"bytes1\",\"name\":\"tmp\",\"type\":\"bytes1\"}],\"stateMutability\":\"pure\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"bytes\",\"name\":\"_bytes\",\"type\":\"bytes\"},{\"internalType\":\"uint256\",\"name\":\"_start\",\"type\":\"uint256\"}],\"name\":\"toBytes12\",\"outputs\":[{\"internalType\":\"bytes12\",\"name\":\"tmp\",\"type\":\"bytes12\"}],\"stateMutability\":\"pure\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"bytes\",\"name\":\"_bytes\",\"type\":\"bytes\"},{\"internalType\":\"uint256\",\"name\":\"_start\",\"type\":\"uint256\"}],\"name\":\"toBytes16\",\"outputs\":[{\"internalType\":\"bytes12\",\"name\":\"tmp\",\"type\":\"bytes12\"}],\"stateMutability\":\"pure\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"bytes\",\"name\":\"_bytes\",\"type\":\"bytes\"},{\"internalType\":\"uint256\",\"name\":\"_start\",\"type\":\"uint256\"}],\"name\":\"toBytes32\",\"outputs\":[{\"internalType\":\"bytes32\",\"name\":\"tmp\",\"type\":\"bytes32\"}],\"stateMutability\":\"pure\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"bytes\",\"name\":\"_bytes\",\"type\":\"bytes\"},{\"internalType\":\"uint256\",\"name\":\"_start\",\"type\":\"uint256\"}],\"name\":\"toBytes5\",\"outputs\":[{\"internalType\":\"bytes5\",\"name\":\"tmp\",\"type\":\"bytes5\"}],\"stateMutability\":\"pure\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"bytes\",\"name\":\"_bytes\",\"type\":\"bytes\"},{\"internalType\":\"uint256\",\"name\":\"_start\",\"type\":\"uint256\"}],\"name\":\"toBytes6\",\"outputs\":[{\"internalType\":\"bytes6\",\"name\":\"tmp\",\"type\":\"bytes6\"}],\"stateMutability\":\"pure\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"bytes\",\"name\":\"_bytes\",\"type\":\"bytes\"},{\"internalType\":\"uint256\",\"name\":\"_start\",\"type\":\"uint256\"}],\"name\":\"toBytes8\",\"outputs\":[{\"internalType\":\"uint64\",\"name\":\"tmp\",\"type\":\"uint64\"}],\"stateMutability\":\"pure\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"bytes\",\"name\":\"_bytes\",\"type\":\"bytes\"},{\"internalType\":\"uint256\",\"name\":\"_start\",\"type\":\"uint256\"}],\"name\":\"toUint128\",\"outputs\":[{\"internalType\":\"uint128\",\"name\":\"tmp\",\"type\":\"uint128\"}],\"stateMutability\":\"pure\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"bytes\",\"name\":\"_bytes\",\"type\":\"bytes\"}],\"name\":\"toUint16\",\"outputs\":[{\"internalType\":\"uint16\",\"name\":\"tmp\",\"type\":\"uint16\"}],\"stateMutability\":\"pure\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"bytes\",\"name\":\"_bytes\",\"type\":\"bytes\"},{\"internalType\":\"uint256\",\"name\":\"_start\",\"type\":\"uint256\"}],\"name\":\"toUint16\",\"outputs\":[{\"internalType\":\"uint16\",\"name\":\"tmp\",\"type\":\"uint16\"}],\"stateMutability\":\"pure\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"bytes\",\"name\":\"_bytes\",\"type\":\"bytes\"},{\"internalType\":\"uint256\",\"name\":\"_start\",\"type\":\"uint256\"}],\"name\":\"toUint24\",\"outputs\":[{\"internalType\":\"uint24\",\"name\":\"tmp\",\"type\":\"uint24\"}],\"stateMutability\":\"pure\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"bytes\",\"name\":\"_bytes\",\"type\":\"bytes\"},{\"internalType\":\"uint256\",\"name\":\"_start\",\"type\":\"uint256\"}],\"name\":\"toUint256\",\"outputs\":[{\"internalType\":\"uint256\",\"name\":\"tmp\",\"type\":\"uint256\"}],\"stateMutability\":\"pure\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"bytes\",\"name\":\"_bytes\",\"type\":\"bytes\"},{\"internalType\":\"uint256\",\"name\":\"_start\",\"type\":\"uint256\"}],\"name\":\"toUint32\",\"outputs\":[{\"internalType\":\"uint32\",\"name\":\"tmp\",\"type\":\"uint32\"}],\"stateMutability\":\"pure\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"bytes\",\"name\":\"_bytes\",\"type\":\"bytes\"},{\"internalType\":\"uint256\",\"name\":\"_start\",\"type\":\"uint256\"}],\"name\":\"toUint40\",\"outputs\":[{\"internalType\":\"uint40\",\"name\":\"tmp\",\"type\":\"uint40\"}],\"stateMutability\":\"pure\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"bytes\",\"name\":\"_bytes\",\"type\":\"bytes\"},{\"internalType\":\"uint256\",\"name\":\"_start\",\"type\":\"uint256\"}],\"name\":\"toUint48\",\"outputs\":[{\"internalType\":\"uint48\",\"name\":\"tmp\",\"type\":\"uint48\"}],\"stateMutability\":\"pure\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"bytes\",\"name\":\"_bytes\",\"type\":\"bytes\"},{\"internalType\":\"uint256\",\"name\":\"_start\",\"type\":\"uint256\"}],\"name\":\"toUint56\",\"outputs\":[{\"internalType\":\"uint56\",\"name\":\"tmp\",\"type\":\"uint56\"}],\"stateMutability\":\"pure\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"bytes\",\"name\":\"_bytes\",\"type\":\"bytes\"},{\"internalType\":\"uint256\",\"name\":\"_start\",\"type\":\"uint256\"}],\"name\":\"toUint64\",\"outputs\":[{\"internalType\":\"uint64\",\"name\":\"tmp\",\"type\":\"uint64\"}],\"stateMutability\":\"pure\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"bytes\",\"name\":\"_bytes\",\"type\":\"bytes\"},{\"internalType\":\"uint256\",\"name\":\"_start\",\"type\":\"uint256\"}],\"name\":\"toUint8\",\"outputs\":[{\"internalType\":\"uint8\",\"name\":\"tmp\",\"type\":\"uint8\"}],\"stateMutability\":\"pure\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"bytes\",\"name\":\"_bytes\",\"type\":\"bytes\"},{\"internalType\":\"uint256\",\"name\":\"_start\",\"type\":\"uint256\"}],\"name\":\"toUint96\",\"outputs\":[{\"internalType\":\"uint96\",\"name\":\"tmp\",\"type\":\"uint96\"}],\"stateMutability\":\"pure\",\"type\":\"function\"}],\"devdoc\":{\"kind\":\"dev\",\"methods\":{},\"version\":1},\"userdoc\":{\"kind\":\"user\",\"methods\":{},\"version\":1}},\"settings\":{\"compilationTarget\":{\"lib/eth-projects-monorepo/packages/eth-projects-contracts/contracts/lib/utils/Bytes.sol\":\"Bytes\"},\"evmVersion\":\"london\",\"libraries\":{},\"metadata\":{\"bytecodeHash\":\"ipfs\"},\"optimizer\":{\"enabled\":true,\"runs\":200},\"remappings\":[\":@clemlaflemme/=lib/eth-projects-monorepo/packages/eth-projects-contracts/contracts/\",\":ds-test/=lib/forge-std/lib/ds-test/src/\",\":eth-projects-monorepo/=lib/eth-projects-monorepo/\",\":forge-std/=lib/forge-std/src/\",\":openzeppelin-contracts/=lib/openzeppelin-contracts/\",\":openzeppelin/=lib/openzeppelin-contracts/contracts/\",\":renderers/=lib/eth-projects-monorepo/packages/eth-projects-contracts/contracts/lib/renderers/\",\":safe-contracts/=lib/safe-contracts/contracts/\",\":solmate/=lib/solmate/src/\",\":utils/=lib/eth-projects-monorepo/packages/eth-projects-contracts/contracts/lib/utils/\"]},\"sources\":{\"lib/eth-projects-monorepo/packages/eth-projects-contracts/contracts/lib/utils/Bytes.sol\":{\"keccak256\":\"0xd894eac2f223760da25e079d125b4c0de282a6d609a1e8a1834f5dc1c02550d5\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://2c305f8b0dc8b57df9e5b06e51e3e6ed374c2e655cc5edf7b9a7e0d86eb629a0\",\"dweb:/ipfs/QmXi9SmrcYfqSVGVP4WMtYQmBMhGVm8xdLus54YojtaNBi\"]}},\"version\":1}", + "rawMetadata": "{\"compiler\":{\"version\":\"0.8.21+commit.d9974bed\"},\"language\":\"Solidity\",\"output\":{\"abi\":[{\"inputs\":[{\"internalType\":\"bytes\",\"name\":\"_preBytes\",\"type\":\"bytes\"},{\"internalType\":\"bytes\",\"name\":\"_postBytes\",\"type\":\"bytes\"}],\"name\":\"equal\",\"outputs\":[{\"internalType\":\"bool\",\"name\":\"\",\"type\":\"bool\"}],\"stateMutability\":\"pure\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"bytes\",\"name\":\"_bytes\",\"type\":\"bytes\"},{\"internalType\":\"uint256\",\"name\":\"_start\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"_length\",\"type\":\"uint256\"}],\"name\":\"slice\",\"outputs\":[{\"internalType\":\"bytes\",\"name\":\"\",\"type\":\"bytes\"}],\"stateMutability\":\"pure\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"bytes\",\"name\":\"_bytes\",\"type\":\"bytes\"},{\"internalType\":\"uint256\",\"name\":\"_start\",\"type\":\"uint256\"}],\"name\":\"toAddress\",\"outputs\":[{\"internalType\":\"address\",\"name\":\"tmp\",\"type\":\"address\"}],\"stateMutability\":\"pure\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"bytes\",\"name\":\"_bytes\",\"type\":\"bytes\"},{\"internalType\":\"uint256\",\"name\":\"_start\",\"type\":\"uint256\"}],\"name\":\"toByes7\",\"outputs\":[{\"internalType\":\"bytes7\",\"name\":\"tmp\",\"type\":\"bytes7\"}],\"stateMutability\":\"pure\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"bytes\",\"name\":\"_bytes\",\"type\":\"bytes\"},{\"internalType\":\"uint256\",\"name\":\"_start\",\"type\":\"uint256\"}],\"name\":\"toBytes1\",\"outputs\":[{\"internalType\":\"bytes1\",\"name\":\"tmp\",\"type\":\"bytes1\"}],\"stateMutability\":\"pure\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"bytes\",\"name\":\"_bytes\",\"type\":\"bytes\"},{\"internalType\":\"uint256\",\"name\":\"_start\",\"type\":\"uint256\"}],\"name\":\"toBytes12\",\"outputs\":[{\"internalType\":\"bytes12\",\"name\":\"tmp\",\"type\":\"bytes12\"}],\"stateMutability\":\"pure\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"bytes\",\"name\":\"_bytes\",\"type\":\"bytes\"},{\"internalType\":\"uint256\",\"name\":\"_start\",\"type\":\"uint256\"}],\"name\":\"toBytes16\",\"outputs\":[{\"internalType\":\"bytes12\",\"name\":\"tmp\",\"type\":\"bytes12\"}],\"stateMutability\":\"pure\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"bytes\",\"name\":\"_bytes\",\"type\":\"bytes\"},{\"internalType\":\"uint256\",\"name\":\"_start\",\"type\":\"uint256\"}],\"name\":\"toBytes32\",\"outputs\":[{\"internalType\":\"bytes32\",\"name\":\"tmp\",\"type\":\"bytes32\"}],\"stateMutability\":\"pure\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"bytes\",\"name\":\"_bytes\",\"type\":\"bytes\"},{\"internalType\":\"uint256\",\"name\":\"_start\",\"type\":\"uint256\"}],\"name\":\"toBytes5\",\"outputs\":[{\"internalType\":\"bytes5\",\"name\":\"tmp\",\"type\":\"bytes5\"}],\"stateMutability\":\"pure\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"bytes\",\"name\":\"_bytes\",\"type\":\"bytes\"},{\"internalType\":\"uint256\",\"name\":\"_start\",\"type\":\"uint256\"}],\"name\":\"toBytes6\",\"outputs\":[{\"internalType\":\"bytes6\",\"name\":\"tmp\",\"type\":\"bytes6\"}],\"stateMutability\":\"pure\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"bytes\",\"name\":\"_bytes\",\"type\":\"bytes\"},{\"internalType\":\"uint256\",\"name\":\"_start\",\"type\":\"uint256\"}],\"name\":\"toBytes8\",\"outputs\":[{\"internalType\":\"uint64\",\"name\":\"tmp\",\"type\":\"uint64\"}],\"stateMutability\":\"pure\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"bytes\",\"name\":\"_bytes\",\"type\":\"bytes\"},{\"internalType\":\"uint256\",\"name\":\"_start\",\"type\":\"uint256\"}],\"name\":\"toUint128\",\"outputs\":[{\"internalType\":\"uint128\",\"name\":\"tmp\",\"type\":\"uint128\"}],\"stateMutability\":\"pure\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"bytes\",\"name\":\"_bytes\",\"type\":\"bytes\"}],\"name\":\"toUint16\",\"outputs\":[{\"internalType\":\"uint16\",\"name\":\"tmp\",\"type\":\"uint16\"}],\"stateMutability\":\"pure\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"bytes\",\"name\":\"_bytes\",\"type\":\"bytes\"},{\"internalType\":\"uint256\",\"name\":\"_start\",\"type\":\"uint256\"}],\"name\":\"toUint16\",\"outputs\":[{\"internalType\":\"uint16\",\"name\":\"tmp\",\"type\":\"uint16\"}],\"stateMutability\":\"pure\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"bytes\",\"name\":\"_bytes\",\"type\":\"bytes\"},{\"internalType\":\"uint256\",\"name\":\"_start\",\"type\":\"uint256\"}],\"name\":\"toUint24\",\"outputs\":[{\"internalType\":\"uint24\",\"name\":\"tmp\",\"type\":\"uint24\"}],\"stateMutability\":\"pure\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"bytes\",\"name\":\"_bytes\",\"type\":\"bytes\"},{\"internalType\":\"uint256\",\"name\":\"_start\",\"type\":\"uint256\"}],\"name\":\"toUint256\",\"outputs\":[{\"internalType\":\"uint256\",\"name\":\"tmp\",\"type\":\"uint256\"}],\"stateMutability\":\"pure\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"bytes\",\"name\":\"_bytes\",\"type\":\"bytes\"},{\"internalType\":\"uint256\",\"name\":\"_start\",\"type\":\"uint256\"}],\"name\":\"toUint32\",\"outputs\":[{\"internalType\":\"uint32\",\"name\":\"tmp\",\"type\":\"uint32\"}],\"stateMutability\":\"pure\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"bytes\",\"name\":\"_bytes\",\"type\":\"bytes\"},{\"internalType\":\"uint256\",\"name\":\"_start\",\"type\":\"uint256\"}],\"name\":\"toUint40\",\"outputs\":[{\"internalType\":\"uint40\",\"name\":\"tmp\",\"type\":\"uint40\"}],\"stateMutability\":\"pure\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"bytes\",\"name\":\"_bytes\",\"type\":\"bytes\"},{\"internalType\":\"uint256\",\"name\":\"_start\",\"type\":\"uint256\"}],\"name\":\"toUint48\",\"outputs\":[{\"internalType\":\"uint48\",\"name\":\"tmp\",\"type\":\"uint48\"}],\"stateMutability\":\"pure\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"bytes\",\"name\":\"_bytes\",\"type\":\"bytes\"},{\"internalType\":\"uint256\",\"name\":\"_start\",\"type\":\"uint256\"}],\"name\":\"toUint56\",\"outputs\":[{\"internalType\":\"uint56\",\"name\":\"tmp\",\"type\":\"uint56\"}],\"stateMutability\":\"pure\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"bytes\",\"name\":\"_bytes\",\"type\":\"bytes\"},{\"internalType\":\"uint256\",\"name\":\"_start\",\"type\":\"uint256\"}],\"name\":\"toUint64\",\"outputs\":[{\"internalType\":\"uint64\",\"name\":\"tmp\",\"type\":\"uint64\"}],\"stateMutability\":\"pure\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"bytes\",\"name\":\"_bytes\",\"type\":\"bytes\"},{\"internalType\":\"uint256\",\"name\":\"_start\",\"type\":\"uint256\"}],\"name\":\"toUint8\",\"outputs\":[{\"internalType\":\"uint8\",\"name\":\"tmp\",\"type\":\"uint8\"}],\"stateMutability\":\"pure\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"bytes\",\"name\":\"_bytes\",\"type\":\"bytes\"},{\"internalType\":\"uint256\",\"name\":\"_start\",\"type\":\"uint256\"}],\"name\":\"toUint96\",\"outputs\":[{\"internalType\":\"uint96\",\"name\":\"tmp\",\"type\":\"uint96\"}],\"stateMutability\":\"pure\",\"type\":\"function\"}],\"devdoc\":{\"kind\":\"dev\",\"methods\":{},\"version\":1},\"userdoc\":{\"kind\":\"user\",\"methods\":{},\"version\":1}},\"settings\":{\"compilationTarget\":{\"lib/eth-projects-monorepo/packages/eth-projects-contracts/contracts/lib/utils/Bytes.sol\":\"Bytes\"},\"evmVersion\":\"paris\",\"libraries\":{},\"metadata\":{\"bytecodeHash\":\"ipfs\"},\"optimizer\":{\"enabled\":true,\"runs\":200},\"remappings\":[\":@clemlaflemme/=lib/eth-projects-monorepo/packages/eth-projects-contracts/contracts/\",\":ds-test/=lib/forge-std/lib/ds-test/src/\",\":eth-projects-monorepo/=lib/eth-projects-monorepo/\",\":forge-std/=lib/forge-std/src/\",\":openzeppelin-contracts/=lib/openzeppelin-contracts/\",\":openzeppelin/=lib/openzeppelin-contracts/contracts/\",\":renderers/=lib/eth-projects-monorepo/packages/eth-projects-contracts/contracts/lib/renderers/\",\":safe-contracts/=lib/safe-contracts/contracts/\",\":solmate/=lib/solmate/src/\",\":utils/=lib/eth-projects-monorepo/packages/eth-projects-contracts/contracts/lib/utils/\"]},\"sources\":{\"lib/eth-projects-monorepo/packages/eth-projects-contracts/contracts/lib/utils/Bytes.sol\":{\"keccak256\":\"0xd894eac2f223760da25e079d125b4c0de282a6d609a1e8a1834f5dc1c02550d5\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://2c305f8b0dc8b57df9e5b06e51e3e6ed374c2e655cc5edf7b9a7e0d86eb629a0\",\"dweb:/ipfs/QmXi9SmrcYfqSVGVP4WMtYQmBMhGVm8xdLus54YojtaNBi\"]}},\"version\":1}", "metadata": { "compiler": { - "version": "0.8.17+commit.8df45f5f" + "version": "0.8.21+commit.d9974bed" }, "language": "Solidity", "output": { @@ -1163,16 +1163,16 @@ }, "settings": { "remappings": [ - ":@clemlaflemme/=lib/eth-projects-monorepo/packages/eth-projects-contracts/contracts/", - ":ds-test/=lib/forge-std/lib/ds-test/src/", - ":eth-projects-monorepo/=lib/eth-projects-monorepo/", - ":forge-std/=lib/forge-std/src/", - ":openzeppelin-contracts/=lib/openzeppelin-contracts/", - ":openzeppelin/=lib/openzeppelin-contracts/contracts/", - ":renderers/=lib/eth-projects-monorepo/packages/eth-projects-contracts/contracts/lib/renderers/", - ":safe-contracts/=lib/safe-contracts/contracts/", - ":solmate/=lib/solmate/src/", - ":utils/=lib/eth-projects-monorepo/packages/eth-projects-contracts/contracts/lib/utils/" + "@clemlaflemme/=lib/eth-projects-monorepo/packages/eth-projects-contracts/contracts/", + "ds-test/=lib/forge-std/lib/ds-test/src/", + "eth-projects-monorepo/=lib/eth-projects-monorepo/", + "forge-std/=lib/forge-std/src/", + "openzeppelin-contracts/=lib/openzeppelin-contracts/", + "openzeppelin/=lib/openzeppelin-contracts/contracts/", + "renderers/=lib/eth-projects-monorepo/packages/eth-projects-contracts/contracts/lib/renderers/", + "safe-contracts/=lib/safe-contracts/contracts/", + "solmate/=lib/solmate/src/", + "utils/=lib/eth-projects-monorepo/packages/eth-projects-contracts/contracts/lib/utils/" ], "optimizer": { "enabled": true, @@ -1572,6 +1572,7 @@ }, { "AST": { + "nativeSrc": "751:2631:1", "nodeType": "YulBlock", "src": "751:2631:1", "statements": [ @@ -1579,16 +1580,19 @@ "cases": [ { "body": { + "nativeSrc": "807:2170:1", "nodeType": "YulBlock", "src": "807:2170:1", "statements": [ { + "nativeSrc": "963:24:1", "nodeType": "YulAssignment", "src": "963:24:1", "value": { "arguments": [ { "kind": "number", + "nativeSrc": "982:4:1", "nodeType": "YulLiteral", "src": "982:4:1", "type": "", @@ -1597,32 +1601,38 @@ ], "functionName": { "name": "mload", + "nativeSrc": "976:5:1", "nodeType": "YulIdentifier", "src": "976:5:1" }, + "nativeSrc": "976:11:1", "nodeType": "YulFunctionCall", "src": "976:11:1" }, "variableNames": [ { "name": "tempBytes", + "nativeSrc": "963:9:1", "nodeType": "YulIdentifier", "src": "963:9:1" } ] }, { + "nativeSrc": "1611:33:1", "nodeType": "YulVariableDeclaration", "src": "1611:33:1", "value": { "arguments": [ { "name": "_length", + "nativeSrc": "1632:7:1", "nodeType": "YulIdentifier", "src": "1632:7:1" }, { "kind": "number", + "nativeSrc": "1641:2:1", "nodeType": "YulLiteral", "src": "1641:2:1", "type": "", @@ -1631,15 +1641,18 @@ ], "functionName": { "name": "and", + "nativeSrc": "1628:3:1", "nodeType": "YulIdentifier", "src": "1628:3:1" }, + "nativeSrc": "1628:16:1", "nodeType": "YulFunctionCall", "src": "1628:16:1" }, "variables": [ { "name": "lengthmod", + "nativeSrc": "1615:9:1", "nodeType": "YulTypedName", "src": "1615:9:1", "type": "" @@ -1647,6 +1660,7 @@ ] }, { + "nativeSrc": "1965:128:1", "nodeType": "YulVariableDeclaration", "src": "1965:128:1", "value": { @@ -1655,20 +1669,24 @@ "arguments": [ { "name": "tempBytes", + "nativeSrc": "2004:9:1", "nodeType": "YulIdentifier", "src": "2004:9:1" }, { "name": "lengthmod", + "nativeSrc": "2015:9:1", "nodeType": "YulIdentifier", "src": "2015:9:1" } ], "functionName": { "name": "add", + "nativeSrc": "2000:3:1", "nodeType": "YulIdentifier", "src": "2000:3:1" }, + "nativeSrc": "2000:25:1", "nodeType": "YulFunctionCall", "src": "2000:25:1" }, @@ -1676,6 +1694,7 @@ "arguments": [ { "kind": "number", + "nativeSrc": "2051:4:1", "nodeType": "YulLiteral", "src": "2051:4:1", "type": "", @@ -1685,39 +1704,47 @@ "arguments": [ { "name": "lengthmod", + "nativeSrc": "2064:9:1", "nodeType": "YulIdentifier", "src": "2064:9:1" } ], "functionName": { "name": "iszero", + "nativeSrc": "2057:6:1", "nodeType": "YulIdentifier", "src": "2057:6:1" }, + "nativeSrc": "2057:17:1", "nodeType": "YulFunctionCall", "src": "2057:17:1" } ], "functionName": { "name": "mul", + "nativeSrc": "2047:3:1", "nodeType": "YulIdentifier", "src": "2047:3:1" }, + "nativeSrc": "2047:28:1", "nodeType": "YulFunctionCall", "src": "2047:28:1" } ], "functionName": { "name": "add", + "nativeSrc": "1975:3:1", "nodeType": "YulIdentifier", "src": "1975:3:1" }, + "nativeSrc": "1975:118:1", "nodeType": "YulFunctionCall", "src": "1975:118:1" }, "variables": [ { "name": "mc", + "nativeSrc": "1969:2:1", "nodeType": "YulTypedName", "src": "1969:2:1", "type": "" @@ -1725,32 +1752,38 @@ ] }, { + "nativeSrc": "2110:27:1", "nodeType": "YulVariableDeclaration", "src": "2110:27:1", "value": { "arguments": [ { "name": "mc", + "nativeSrc": "2125:2:1", "nodeType": "YulIdentifier", "src": "2125:2:1" }, { "name": "_length", + "nativeSrc": "2129:7:1", "nodeType": "YulIdentifier", "src": "2129:7:1" } ], "functionName": { "name": "add", + "nativeSrc": "2121:3:1", "nodeType": "YulIdentifier", "src": "2121:3:1" }, + "nativeSrc": "2121:16:1", "nodeType": "YulFunctionCall", "src": "2121:16:1" }, "variables": [ { "name": "end", + "nativeSrc": "2114:3:1", "nodeType": "YulTypedName", "src": "2114:3:1", "type": "" @@ -1759,6 +1792,7 @@ }, { "body": { + "nativeSrc": "2671:61:1", "nodeType": "YulBlock", "src": "2671:61:1", "statements": [ @@ -1767,6 +1801,7 @@ "arguments": [ { "name": "mc", + "nativeSrc": "2700:2:1", "nodeType": "YulIdentifier", "src": "2700:2:1" }, @@ -1774,27 +1809,33 @@ "arguments": [ { "name": "cc", + "nativeSrc": "2710:2:1", "nodeType": "YulIdentifier", "src": "2710:2:1" } ], "functionName": { "name": "mload", + "nativeSrc": "2704:5:1", "nodeType": "YulIdentifier", "src": "2704:5:1" }, + "nativeSrc": "2704:9:1", "nodeType": "YulFunctionCall", "src": "2704:9:1" } ], "functionName": { "name": "mstore", + "nativeSrc": "2693:6:1", "nodeType": "YulIdentifier", "src": "2693:6:1" }, + "nativeSrc": "2693:21:1", "nodeType": "YulFunctionCall", "src": "2693:21:1" }, + "nativeSrc": "2693:21:1", "nodeType": "YulExpressionStatement", "src": "2693:21:1" } @@ -1804,40 +1845,49 @@ "arguments": [ { "name": "mc", + "nativeSrc": "2562:2:1", "nodeType": "YulIdentifier", "src": "2562:2:1" }, { "name": "end", + "nativeSrc": "2566:3:1", "nodeType": "YulIdentifier", "src": "2566:3:1" } ], "functionName": { "name": "lt", + "nativeSrc": "2559:2:1", "nodeType": "YulIdentifier", "src": "2559:2:1" }, + "nativeSrc": "2559:11:1", "nodeType": "YulFunctionCall", "src": "2559:11:1" }, + "nativeSrc": "2155:577:1", "nodeType": "YulForLoop", "post": { + "nativeSrc": "2571:99:1", "nodeType": "YulBlock", "src": "2571:99:1", "statements": [ { + "nativeSrc": "2593:19:1", "nodeType": "YulAssignment", "src": "2593:19:1", "value": { "arguments": [ { "name": "mc", + "nativeSrc": "2603:2:1", "nodeType": "YulIdentifier", "src": "2603:2:1" }, { "kind": "number", + "nativeSrc": "2607:4:1", "nodeType": "YulLiteral", "src": "2607:4:1", "type": "", @@ -1846,32 +1896,38 @@ ], "functionName": { "name": "add", + "nativeSrc": "2599:3:1", "nodeType": "YulIdentifier", "src": "2599:3:1" }, + "nativeSrc": "2599:13:1", "nodeType": "YulFunctionCall", "src": "2599:13:1" }, "variableNames": [ { "name": "mc", + "nativeSrc": "2593:2:1", "nodeType": "YulIdentifier", "src": "2593:2:1" } ] }, { + "nativeSrc": "2633:19:1", "nodeType": "YulAssignment", "src": "2633:19:1", "value": { "arguments": [ { "name": "cc", + "nativeSrc": "2643:2:1", "nodeType": "YulIdentifier", "src": "2643:2:1" }, { "kind": "number", + "nativeSrc": "2647:4:1", "nodeType": "YulLiteral", "src": "2647:4:1", "type": "", @@ -1880,15 +1936,18 @@ ], "functionName": { "name": "add", + "nativeSrc": "2639:3:1", "nodeType": "YulIdentifier", "src": "2639:3:1" }, + "nativeSrc": "2639:13:1", "nodeType": "YulFunctionCall", "src": "2639:13:1" }, "variableNames": [ { "name": "cc", + "nativeSrc": "2633:2:1", "nodeType": "YulIdentifier", "src": "2633:2:1" } @@ -1897,10 +1956,12 @@ ] }, "pre": { + "nativeSrc": "2159:399:1", "nodeType": "YulBlock", "src": "2159:399:1", "statements": [ { + "nativeSrc": "2308:232:1", "nodeType": "YulVariableDeclaration", "src": "2308:232:1", "value": { @@ -1911,20 +1972,24 @@ "arguments": [ { "name": "_bytes", + "nativeSrc": "2384:6:1", "nodeType": "YulIdentifier", "src": "2384:6:1" }, { "name": "lengthmod", + "nativeSrc": "2392:9:1", "nodeType": "YulIdentifier", "src": "2392:9:1" } ], "functionName": { "name": "add", + "nativeSrc": "2380:3:1", "nodeType": "YulIdentifier", "src": "2380:3:1" }, + "nativeSrc": "2380:22:1", "nodeType": "YulFunctionCall", "src": "2380:22:1" }, @@ -1932,6 +1997,7 @@ "arguments": [ { "kind": "number", + "nativeSrc": "2436:4:1", "nodeType": "YulLiteral", "src": "2436:4:1", "type": "", @@ -1941,53 +2007,64 @@ "arguments": [ { "name": "lengthmod", + "nativeSrc": "2449:9:1", "nodeType": "YulIdentifier", "src": "2449:9:1" } ], "functionName": { "name": "iszero", + "nativeSrc": "2442:6:1", "nodeType": "YulIdentifier", "src": "2442:6:1" }, + "nativeSrc": "2442:17:1", "nodeType": "YulFunctionCall", "src": "2442:17:1" } ], "functionName": { "name": "mul", + "nativeSrc": "2432:3:1", "nodeType": "YulIdentifier", "src": "2432:3:1" }, + "nativeSrc": "2432:28:1", "nodeType": "YulFunctionCall", "src": "2432:28:1" } ], "functionName": { "name": "add", + "nativeSrc": "2347:3:1", "nodeType": "YulIdentifier", "src": "2347:3:1" }, + "nativeSrc": "2347:139:1", "nodeType": "YulFunctionCall", "src": "2347:139:1" }, { "name": "_start", + "nativeSrc": "2512:6:1", "nodeType": "YulIdentifier", "src": "2512:6:1" } ], "functionName": { "name": "add", + "nativeSrc": "2318:3:1", "nodeType": "YulIdentifier", "src": "2318:3:1" }, + "nativeSrc": "2318:222:1", "nodeType": "YulFunctionCall", "src": "2318:222:1" }, "variables": [ { "name": "cc", + "nativeSrc": "2312:2:1", "nodeType": "YulTypedName", "src": "2312:2:1", "type": "" @@ -2003,23 +2080,28 @@ "arguments": [ { "name": "tempBytes", + "nativeSrc": "2757:9:1", "nodeType": "YulIdentifier", "src": "2757:9:1" }, { "name": "_length", + "nativeSrc": "2768:7:1", "nodeType": "YulIdentifier", "src": "2768:7:1" } ], "functionName": { "name": "mstore", + "nativeSrc": "2750:6:1", "nodeType": "YulIdentifier", "src": "2750:6:1" }, + "nativeSrc": "2750:26:1", "nodeType": "YulFunctionCall", "src": "2750:26:1" }, + "nativeSrc": "2750:26:1", "nodeType": "YulExpressionStatement", "src": "2750:26:1" }, @@ -2028,6 +2110,7 @@ "arguments": [ { "kind": "number", + "nativeSrc": "2931:4:1", "nodeType": "YulLiteral", "src": "2931:4:1", "type": "", @@ -2039,11 +2122,13 @@ "arguments": [ { "name": "mc", + "nativeSrc": "2945:2:1", "nodeType": "YulIdentifier", "src": "2945:2:1" }, { "kind": "number", + "nativeSrc": "2949:2:1", "nodeType": "YulLiteral", "src": "2949:2:1", "type": "", @@ -2052,9 +2137,11 @@ ], "functionName": { "name": "add", + "nativeSrc": "2941:3:1", "nodeType": "YulIdentifier", "src": "2941:3:1" }, + "nativeSrc": "2941:11:1", "nodeType": "YulFunctionCall", "src": "2941:11:1" }, @@ -2062,6 +2149,7 @@ "arguments": [ { "kind": "number", + "nativeSrc": "2958:2:1", "nodeType": "YulLiteral", "src": "2958:2:1", "type": "", @@ -2070,39 +2158,48 @@ ], "functionName": { "name": "not", + "nativeSrc": "2954:3:1", "nodeType": "YulIdentifier", "src": "2954:3:1" }, + "nativeSrc": "2954:7:1", "nodeType": "YulFunctionCall", "src": "2954:7:1" } ], "functionName": { "name": "and", + "nativeSrc": "2937:3:1", "nodeType": "YulIdentifier", "src": "2937:3:1" }, + "nativeSrc": "2937:25:1", "nodeType": "YulFunctionCall", "src": "2937:25:1" } ], "functionName": { "name": "mstore", + "nativeSrc": "2924:6:1", "nodeType": "YulIdentifier", "src": "2924:6:1" }, + "nativeSrc": "2924:39:1", "nodeType": "YulFunctionCall", "src": "2924:39:1" }, + "nativeSrc": "2924:39:1", "nodeType": "YulExpressionStatement", "src": "2924:39:1" } ] }, + "nativeSrc": "800:2177:1", "nodeType": "YulCase", "src": "800:2177:1", "value": { "kind": "number", + "nativeSrc": "805:1:1", "nodeType": "YulLiteral", "src": "805:1:1", "type": "", @@ -2111,16 +2208,19 @@ }, { "body": { + "nativeSrc": "3081:291:1", "nodeType": "YulBlock", "src": "3081:291:1", "statements": [ { + "nativeSrc": "3099:24:1", "nodeType": "YulAssignment", "src": "3099:24:1", "value": { "arguments": [ { "kind": "number", + "nativeSrc": "3118:4:1", "nodeType": "YulLiteral", "src": "3118:4:1", "type": "", @@ -2129,15 +2229,18 @@ ], "functionName": { "name": "mload", + "nativeSrc": "3112:5:1", "nodeType": "YulIdentifier", "src": "3112:5:1" }, + "nativeSrc": "3112:11:1", "nodeType": "YulFunctionCall", "src": "3112:11:1" }, "variableNames": [ { "name": "tempBytes", + "nativeSrc": "3099:9:1", "nodeType": "YulIdentifier", "src": "3099:9:1" } @@ -2148,11 +2251,13 @@ "arguments": [ { "name": "tempBytes", + "nativeSrc": "3293:9:1", "nodeType": "YulIdentifier", "src": "3293:9:1" }, { "kind": "number", + "nativeSrc": "3304:1:1", "nodeType": "YulLiteral", "src": "3304:1:1", "type": "", @@ -2161,12 +2266,15 @@ ], "functionName": { "name": "mstore", + "nativeSrc": "3286:6:1", "nodeType": "YulIdentifier", "src": "3286:6:1" }, + "nativeSrc": "3286:20:1", "nodeType": "YulFunctionCall", "src": "3286:20:1" }, + "nativeSrc": "3286:20:1", "nodeType": "YulExpressionStatement", "src": "3286:20:1" }, @@ -2175,6 +2283,7 @@ "arguments": [ { "kind": "number", + "nativeSrc": "3331:4:1", "nodeType": "YulLiteral", "src": "3331:4:1", "type": "", @@ -2184,11 +2293,13 @@ "arguments": [ { "name": "tempBytes", + "nativeSrc": "3341:9:1", "nodeType": "YulIdentifier", "src": "3341:9:1" }, { "kind": "number", + "nativeSrc": "3352:4:1", "nodeType": "YulLiteral", "src": "3352:4:1", "type": "", @@ -2197,26 +2308,32 @@ ], "functionName": { "name": "add", + "nativeSrc": "3337:3:1", "nodeType": "YulIdentifier", "src": "3337:3:1" }, + "nativeSrc": "3337:20:1", "nodeType": "YulFunctionCall", "src": "3337:20:1" } ], "functionName": { "name": "mstore", + "nativeSrc": "3324:6:1", "nodeType": "YulIdentifier", "src": "3324:6:1" }, + "nativeSrc": "3324:34:1", "nodeType": "YulFunctionCall", "src": "3324:34:1" }, + "nativeSrc": "3324:34:1", "nodeType": "YulExpressionStatement", "src": "3324:34:1" } ] }, + "nativeSrc": "3073:299:1", "nodeType": "YulCase", "src": "3073:299:1", "value": "default" @@ -2226,24 +2343,28 @@ "arguments": [ { "name": "_length", + "nativeSrc": "779:7:1", "nodeType": "YulIdentifier", "src": "779:7:1" } ], "functionName": { "name": "iszero", + "nativeSrc": "772:6:1", "nodeType": "YulIdentifier", "src": "772:6:1" }, + "nativeSrc": "772:15:1", "nodeType": "YulFunctionCall", "src": "772:15:1" }, + "nativeSrc": "765:2607:1", "nodeType": "YulSwitch", "src": "765:2607:1" } ] }, - "evmVersion": "london", + "evmVersion": "paris", "externalReferences": [ { "declaration": 259, @@ -2656,10 +2777,12 @@ }, { "AST": { + "nativeSrc": "3631:148:1", "nodeType": "YulBlock", "src": "3631:148:1", "statements": [ { + "nativeSrc": "3645:124:1", "nodeType": "YulAssignment", "src": "3645:124:1", "value": { @@ -2672,11 +2795,13 @@ "arguments": [ { "name": "_bytes", + "nativeSrc": "3687:6:1", "nodeType": "YulIdentifier", "src": "3687:6:1" }, { "kind": "number", + "nativeSrc": "3695:4:1", "nodeType": "YulLiteral", "src": "3695:4:1", "type": "", @@ -2685,37 +2810,45 @@ ], "functionName": { "name": "add", + "nativeSrc": "3683:3:1", "nodeType": "YulIdentifier", "src": "3683:3:1" }, + "nativeSrc": "3683:17:1", "nodeType": "YulFunctionCall", "src": "3683:17:1" }, { "name": "_start", + "nativeSrc": "3702:6:1", "nodeType": "YulIdentifier", "src": "3702:6:1" } ], "functionName": { "name": "add", + "nativeSrc": "3679:3:1", "nodeType": "YulIdentifier", "src": "3679:3:1" }, + "nativeSrc": "3679:30:1", "nodeType": "YulFunctionCall", "src": "3679:30:1" } ], "functionName": { "name": "mload", + "nativeSrc": "3673:5:1", "nodeType": "YulIdentifier", "src": "3673:5:1" }, + "nativeSrc": "3673:37:1", "nodeType": "YulFunctionCall", "src": "3673:37:1" }, { "kind": "number", + "nativeSrc": "3728:27:1", "nodeType": "YulLiteral", "src": "3728:27:1", "type": "", @@ -2724,15 +2857,18 @@ ], "functionName": { "name": "div", + "nativeSrc": "3652:3:1", "nodeType": "YulIdentifier", "src": "3652:3:1" }, + "nativeSrc": "3652:117:1", "nodeType": "YulFunctionCall", "src": "3652:117:1" }, "variableNames": [ { "name": "tmp", + "nativeSrc": "3645:3:1", "nodeType": "YulIdentifier", "src": "3645:3:1" } @@ -2740,7 +2876,7 @@ } ] }, - "evmVersion": "london", + "evmVersion": "paris", "externalReferences": [ { "declaration": 296, @@ -3046,10 +3182,12 @@ }, { "AST": { + "nativeSrc": "3994:67:1", "nodeType": "YulBlock", "src": "3994:67:1", "statements": [ { + "nativeSrc": "4008:43:1", "nodeType": "YulAssignment", "src": "4008:43:1", "value": { @@ -3060,11 +3198,13 @@ "arguments": [ { "name": "_bytes", + "nativeSrc": "4029:6:1", "nodeType": "YulIdentifier", "src": "4029:6:1" }, { "kind": "number", + "nativeSrc": "4037:3:1", "nodeType": "YulLiteral", "src": "4037:3:1", "type": "", @@ -3073,38 +3213,46 @@ ], "functionName": { "name": "add", + "nativeSrc": "4025:3:1", "nodeType": "YulIdentifier", "src": "4025:3:1" }, + "nativeSrc": "4025:16:1", "nodeType": "YulFunctionCall", "src": "4025:16:1" }, { "name": "_start", + "nativeSrc": "4043:6:1", "nodeType": "YulIdentifier", "src": "4043:6:1" } ], "functionName": { "name": "add", + "nativeSrc": "4021:3:1", "nodeType": "YulIdentifier", "src": "4021:3:1" }, + "nativeSrc": "4021:29:1", "nodeType": "YulFunctionCall", "src": "4021:29:1" } ], "functionName": { "name": "mload", + "nativeSrc": "4015:5:1", "nodeType": "YulIdentifier", "src": "4015:5:1" }, + "nativeSrc": "4015:36:1", "nodeType": "YulFunctionCall", "src": "4015:36:1" }, "variableNames": [ { "name": "tmp", + "nativeSrc": "4008:3:1", "nodeType": "YulIdentifier", "src": "4008:3:1" } @@ -3112,7 +3260,7 @@ } ] }, - "evmVersion": "london", + "evmVersion": "paris", "externalReferences": [ { "declaration": 317, @@ -3417,10 +3565,12 @@ }, { "AST": { + "nativeSrc": "4279:67:1", "nodeType": "YulBlock", "src": "4279:67:1", "statements": [ { + "nativeSrc": "4293:43:1", "nodeType": "YulAssignment", "src": "4293:43:1", "value": { @@ -3431,11 +3581,13 @@ "arguments": [ { "name": "_bytes", + "nativeSrc": "4314:6:1", "nodeType": "YulIdentifier", "src": "4314:6:1" }, { "kind": "number", + "nativeSrc": "4322:3:1", "nodeType": "YulLiteral", "src": "4322:3:1", "type": "", @@ -3444,38 +3596,46 @@ ], "functionName": { "name": "add", + "nativeSrc": "4310:3:1", "nodeType": "YulIdentifier", "src": "4310:3:1" }, + "nativeSrc": "4310:16:1", "nodeType": "YulFunctionCall", "src": "4310:16:1" }, { "name": "_start", + "nativeSrc": "4328:6:1", "nodeType": "YulIdentifier", "src": "4328:6:1" } ], "functionName": { "name": "add", + "nativeSrc": "4306:3:1", "nodeType": "YulIdentifier", "src": "4306:3:1" }, + "nativeSrc": "4306:29:1", "nodeType": "YulFunctionCall", "src": "4306:29:1" } ], "functionName": { "name": "mload", + "nativeSrc": "4300:5:1", "nodeType": "YulIdentifier", "src": "4300:5:1" }, + "nativeSrc": "4300:36:1", "nodeType": "YulFunctionCall", "src": "4300:36:1" }, "variableNames": [ { "name": "tmp", + "nativeSrc": "4293:3:1", "nodeType": "YulIdentifier", "src": "4293:3:1" } @@ -3483,7 +3643,7 @@ } ] }, - "evmVersion": "london", + "evmVersion": "paris", "externalReferences": [ { "declaration": 338, @@ -3788,10 +3948,12 @@ }, { "AST": { + "nativeSrc": "4564:67:1", "nodeType": "YulBlock", "src": "4564:67:1", "statements": [ { + "nativeSrc": "4578:43:1", "nodeType": "YulAssignment", "src": "4578:43:1", "value": { @@ -3802,11 +3964,13 @@ "arguments": [ { "name": "_bytes", + "nativeSrc": "4599:6:1", "nodeType": "YulIdentifier", "src": "4599:6:1" }, { "kind": "number", + "nativeSrc": "4607:3:1", "nodeType": "YulLiteral", "src": "4607:3:1", "type": "", @@ -3815,38 +3979,46 @@ ], "functionName": { "name": "add", + "nativeSrc": "4595:3:1", "nodeType": "YulIdentifier", "src": "4595:3:1" }, + "nativeSrc": "4595:16:1", "nodeType": "YulFunctionCall", "src": "4595:16:1" }, { "name": "_start", + "nativeSrc": "4613:6:1", "nodeType": "YulIdentifier", "src": "4613:6:1" } ], "functionName": { "name": "add", + "nativeSrc": "4591:3:1", "nodeType": "YulIdentifier", "src": "4591:3:1" }, + "nativeSrc": "4591:29:1", "nodeType": "YulFunctionCall", "src": "4591:29:1" } ], "functionName": { "name": "mload", + "nativeSrc": "4585:5:1", "nodeType": "YulIdentifier", "src": "4585:5:1" }, + "nativeSrc": "4585:36:1", "nodeType": "YulFunctionCall", "src": "4585:36:1" }, "variableNames": [ { "name": "tmp", + "nativeSrc": "4578:3:1", "nodeType": "YulIdentifier", "src": "4578:3:1" } @@ -3854,7 +4026,7 @@ } ] }, - "evmVersion": "london", + "evmVersion": "paris", "externalReferences": [ { "declaration": 359, @@ -4329,10 +4501,12 @@ }, { "AST": { + "nativeSrc": "4970:67:1", "nodeType": "YulBlock", "src": "4970:67:1", "statements": [ { + "nativeSrc": "4984:43:1", "nodeType": "YulAssignment", "src": "4984:43:1", "value": { @@ -4343,11 +4517,13 @@ "arguments": [ { "name": "_bytes", + "nativeSrc": "5005:6:1", "nodeType": "YulIdentifier", "src": "5005:6:1" }, { "kind": "number", + "nativeSrc": "5013:3:1", "nodeType": "YulLiteral", "src": "5013:3:1", "type": "", @@ -4356,38 +4532,46 @@ ], "functionName": { "name": "add", + "nativeSrc": "5001:3:1", "nodeType": "YulIdentifier", "src": "5001:3:1" }, + "nativeSrc": "5001:16:1", "nodeType": "YulFunctionCall", "src": "5001:16:1" }, { "name": "_start", + "nativeSrc": "5019:6:1", "nodeType": "YulIdentifier", "src": "5019:6:1" } ], "functionName": { "name": "add", + "nativeSrc": "4997:3:1", "nodeType": "YulIdentifier", "src": "4997:3:1" }, + "nativeSrc": "4997:29:1", "nodeType": "YulFunctionCall", "src": "4997:29:1" } ], "functionName": { "name": "mload", + "nativeSrc": "4991:5:1", "nodeType": "YulIdentifier", "src": "4991:5:1" }, + "nativeSrc": "4991:36:1", "nodeType": "YulFunctionCall", "src": "4991:36:1" }, "variableNames": [ { "name": "tmp", + "nativeSrc": "4984:3:1", "nodeType": "YulIdentifier", "src": "4984:3:1" } @@ -4395,7 +4579,7 @@ } ] }, - "evmVersion": "london", + "evmVersion": "paris", "externalReferences": [ { "declaration": 393, @@ -4700,10 +4884,12 @@ }, { "AST": { + "nativeSrc": "5255:67:1", "nodeType": "YulBlock", "src": "5255:67:1", "statements": [ { + "nativeSrc": "5269:43:1", "nodeType": "YulAssignment", "src": "5269:43:1", "value": { @@ -4714,11 +4900,13 @@ "arguments": [ { "name": "_bytes", + "nativeSrc": "5290:6:1", "nodeType": "YulIdentifier", "src": "5290:6:1" }, { "kind": "number", + "nativeSrc": "5298:3:1", "nodeType": "YulLiteral", "src": "5298:3:1", "type": "", @@ -4727,38 +4915,46 @@ ], "functionName": { "name": "add", + "nativeSrc": "5286:3:1", "nodeType": "YulIdentifier", "src": "5286:3:1" }, + "nativeSrc": "5286:16:1", "nodeType": "YulFunctionCall", "src": "5286:16:1" }, { "name": "_start", + "nativeSrc": "5304:6:1", "nodeType": "YulIdentifier", "src": "5304:6:1" } ], "functionName": { "name": "add", + "nativeSrc": "5282:3:1", "nodeType": "YulIdentifier", "src": "5282:3:1" }, + "nativeSrc": "5282:29:1", "nodeType": "YulFunctionCall", "src": "5282:29:1" } ], "functionName": { "name": "mload", + "nativeSrc": "5276:5:1", "nodeType": "YulIdentifier", "src": "5276:5:1" }, + "nativeSrc": "5276:36:1", "nodeType": "YulFunctionCall", "src": "5276:36:1" }, "variableNames": [ { "name": "tmp", + "nativeSrc": "5269:3:1", "nodeType": "YulIdentifier", "src": "5269:3:1" } @@ -4766,7 +4962,7 @@ } ] }, - "evmVersion": "london", + "evmVersion": "paris", "externalReferences": [ { "declaration": 414, @@ -5071,10 +5267,12 @@ }, { "AST": { + "nativeSrc": "5540:67:1", "nodeType": "YulBlock", "src": "5540:67:1", "statements": [ { + "nativeSrc": "5554:43:1", "nodeType": "YulAssignment", "src": "5554:43:1", "value": { @@ -5085,11 +5283,13 @@ "arguments": [ { "name": "_bytes", + "nativeSrc": "5575:6:1", "nodeType": "YulIdentifier", "src": "5575:6:1" }, { "kind": "number", + "nativeSrc": "5583:3:1", "nodeType": "YulLiteral", "src": "5583:3:1", "type": "", @@ -5098,38 +5298,46 @@ ], "functionName": { "name": "add", + "nativeSrc": "5571:3:1", "nodeType": "YulIdentifier", "src": "5571:3:1" }, + "nativeSrc": "5571:16:1", "nodeType": "YulFunctionCall", "src": "5571:16:1" }, { "name": "_start", + "nativeSrc": "5589:6:1", "nodeType": "YulIdentifier", "src": "5589:6:1" } ], "functionName": { "name": "add", + "nativeSrc": "5567:3:1", "nodeType": "YulIdentifier", "src": "5567:3:1" }, + "nativeSrc": "5567:29:1", "nodeType": "YulFunctionCall", "src": "5567:29:1" } ], "functionName": { "name": "mload", + "nativeSrc": "5561:5:1", "nodeType": "YulIdentifier", "src": "5561:5:1" }, + "nativeSrc": "5561:36:1", "nodeType": "YulFunctionCall", "src": "5561:36:1" }, "variableNames": [ { "name": "tmp", + "nativeSrc": "5554:3:1", "nodeType": "YulIdentifier", "src": "5554:3:1" } @@ -5137,7 +5345,7 @@ } ] }, - "evmVersion": "london", + "evmVersion": "paris", "externalReferences": [ { "declaration": 435, @@ -5442,10 +5650,12 @@ }, { "AST": { + "nativeSrc": "5825:67:1", "nodeType": "YulBlock", "src": "5825:67:1", "statements": [ { + "nativeSrc": "5839:43:1", "nodeType": "YulAssignment", "src": "5839:43:1", "value": { @@ -5456,11 +5666,13 @@ "arguments": [ { "name": "_bytes", + "nativeSrc": "5860:6:1", "nodeType": "YulIdentifier", "src": "5860:6:1" }, { "kind": "number", + "nativeSrc": "5868:3:1", "nodeType": "YulLiteral", "src": "5868:3:1", "type": "", @@ -5469,38 +5681,46 @@ ], "functionName": { "name": "add", + "nativeSrc": "5856:3:1", "nodeType": "YulIdentifier", "src": "5856:3:1" }, + "nativeSrc": "5856:16:1", "nodeType": "YulFunctionCall", "src": "5856:16:1" }, { "name": "_start", + "nativeSrc": "5874:6:1", "nodeType": "YulIdentifier", "src": "5874:6:1" } ], "functionName": { "name": "add", + "nativeSrc": "5852:3:1", "nodeType": "YulIdentifier", "src": "5852:3:1" }, + "nativeSrc": "5852:29:1", "nodeType": "YulFunctionCall", "src": "5852:29:1" } ], "functionName": { "name": "mload", + "nativeSrc": "5846:5:1", "nodeType": "YulIdentifier", "src": "5846:5:1" }, + "nativeSrc": "5846:36:1", "nodeType": "YulFunctionCall", "src": "5846:36:1" }, "variableNames": [ { "name": "tmp", + "nativeSrc": "5839:3:1", "nodeType": "YulIdentifier", "src": "5839:3:1" } @@ -5508,7 +5728,7 @@ } ] }, - "evmVersion": "london", + "evmVersion": "paris", "externalReferences": [ { "declaration": 456, @@ -5813,10 +6033,12 @@ }, { "AST": { + "nativeSrc": "6110:67:1", "nodeType": "YulBlock", "src": "6110:67:1", "statements": [ { + "nativeSrc": "6124:43:1", "nodeType": "YulAssignment", "src": "6124:43:1", "value": { @@ -5827,11 +6049,13 @@ "arguments": [ { "name": "_bytes", + "nativeSrc": "6145:6:1", "nodeType": "YulIdentifier", "src": "6145:6:1" }, { "kind": "number", + "nativeSrc": "6153:3:1", "nodeType": "YulLiteral", "src": "6153:3:1", "type": "", @@ -5840,38 +6064,46 @@ ], "functionName": { "name": "add", + "nativeSrc": "6141:3:1", "nodeType": "YulIdentifier", "src": "6141:3:1" }, + "nativeSrc": "6141:16:1", "nodeType": "YulFunctionCall", "src": "6141:16:1" }, { "name": "_start", + "nativeSrc": "6159:6:1", "nodeType": "YulIdentifier", "src": "6159:6:1" } ], "functionName": { "name": "add", + "nativeSrc": "6137:3:1", "nodeType": "YulIdentifier", "src": "6137:3:1" }, + "nativeSrc": "6137:29:1", "nodeType": "YulFunctionCall", "src": "6137:29:1" } ], "functionName": { "name": "mload", + "nativeSrc": "6131:5:1", "nodeType": "YulIdentifier", "src": "6131:5:1" }, + "nativeSrc": "6131:36:1", "nodeType": "YulFunctionCall", "src": "6131:36:1" }, "variableNames": [ { "name": "tmp", + "nativeSrc": "6124:3:1", "nodeType": "YulIdentifier", "src": "6124:3:1" } @@ -5879,7 +6111,7 @@ } ] }, - "evmVersion": "london", + "evmVersion": "paris", "externalReferences": [ { "declaration": 477, @@ -6184,10 +6416,12 @@ }, { "AST": { + "nativeSrc": "6395:67:1", "nodeType": "YulBlock", "src": "6395:67:1", "statements": [ { + "nativeSrc": "6409:43:1", "nodeType": "YulAssignment", "src": "6409:43:1", "value": { @@ -6198,11 +6432,13 @@ "arguments": [ { "name": "_bytes", + "nativeSrc": "6430:6:1", "nodeType": "YulIdentifier", "src": "6430:6:1" }, { "kind": "number", + "nativeSrc": "6438:3:1", "nodeType": "YulLiteral", "src": "6438:3:1", "type": "", @@ -6211,38 +6447,46 @@ ], "functionName": { "name": "add", + "nativeSrc": "6426:3:1", "nodeType": "YulIdentifier", "src": "6426:3:1" }, + "nativeSrc": "6426:16:1", "nodeType": "YulFunctionCall", "src": "6426:16:1" }, { "name": "_start", + "nativeSrc": "6444:6:1", "nodeType": "YulIdentifier", "src": "6444:6:1" } ], "functionName": { "name": "add", + "nativeSrc": "6422:3:1", "nodeType": "YulIdentifier", "src": "6422:3:1" }, + "nativeSrc": "6422:29:1", "nodeType": "YulFunctionCall", "src": "6422:29:1" } ], "functionName": { "name": "mload", + "nativeSrc": "6416:5:1", "nodeType": "YulIdentifier", "src": "6416:5:1" }, + "nativeSrc": "6416:36:1", "nodeType": "YulFunctionCall", "src": "6416:36:1" }, "variableNames": [ { "name": "tmp", + "nativeSrc": "6409:3:1", "nodeType": "YulIdentifier", "src": "6409:3:1" } @@ -6250,7 +6494,7 @@ } ] }, - "evmVersion": "london", + "evmVersion": "paris", "externalReferences": [ { "declaration": 498, @@ -6555,10 +6799,12 @@ }, { "AST": { + "nativeSrc": "6680:67:1", "nodeType": "YulBlock", "src": "6680:67:1", "statements": [ { + "nativeSrc": "6694:43:1", "nodeType": "YulAssignment", "src": "6694:43:1", "value": { @@ -6569,11 +6815,13 @@ "arguments": [ { "name": "_bytes", + "nativeSrc": "6715:6:1", "nodeType": "YulIdentifier", "src": "6715:6:1" }, { "kind": "number", + "nativeSrc": "6723:3:1", "nodeType": "YulLiteral", "src": "6723:3:1", "type": "", @@ -6582,38 +6830,46 @@ ], "functionName": { "name": "add", + "nativeSrc": "6711:3:1", "nodeType": "YulIdentifier", "src": "6711:3:1" }, + "nativeSrc": "6711:16:1", "nodeType": "YulFunctionCall", "src": "6711:16:1" }, { "name": "_start", + "nativeSrc": "6729:6:1", "nodeType": "YulIdentifier", "src": "6729:6:1" } ], "functionName": { "name": "add", + "nativeSrc": "6707:3:1", "nodeType": "YulIdentifier", "src": "6707:3:1" }, + "nativeSrc": "6707:29:1", "nodeType": "YulFunctionCall", "src": "6707:29:1" } ], "functionName": { "name": "mload", + "nativeSrc": "6701:5:1", "nodeType": "YulIdentifier", "src": "6701:5:1" }, + "nativeSrc": "6701:36:1", "nodeType": "YulFunctionCall", "src": "6701:36:1" }, "variableNames": [ { "name": "tmp", + "nativeSrc": "6694:3:1", "nodeType": "YulIdentifier", "src": "6694:3:1" } @@ -6621,7 +6877,7 @@ } ] }, - "evmVersion": "london", + "evmVersion": "paris", "externalReferences": [ { "declaration": 519, @@ -6926,10 +7182,12 @@ }, { "AST": { + "nativeSrc": "6964:67:1", "nodeType": "YulBlock", "src": "6964:67:1", "statements": [ { + "nativeSrc": "6978:43:1", "nodeType": "YulAssignment", "src": "6978:43:1", "value": { @@ -6940,11 +7198,13 @@ "arguments": [ { "name": "_bytes", + "nativeSrc": "6999:6:1", "nodeType": "YulIdentifier", "src": "6999:6:1" }, { "kind": "number", + "nativeSrc": "7007:3:1", "nodeType": "YulLiteral", "src": "7007:3:1", "type": "", @@ -6953,38 +7213,46 @@ ], "functionName": { "name": "add", + "nativeSrc": "6995:3:1", "nodeType": "YulIdentifier", "src": "6995:3:1" }, + "nativeSrc": "6995:16:1", "nodeType": "YulFunctionCall", "src": "6995:16:1" }, { "name": "_start", + "nativeSrc": "7013:6:1", "nodeType": "YulIdentifier", "src": "7013:6:1" } ], "functionName": { "name": "add", + "nativeSrc": "6991:3:1", "nodeType": "YulIdentifier", "src": "6991:3:1" }, + "nativeSrc": "6991:29:1", "nodeType": "YulFunctionCall", "src": "6991:29:1" } ], "functionName": { "name": "mload", + "nativeSrc": "6985:5:1", "nodeType": "YulIdentifier", "src": "6985:5:1" }, + "nativeSrc": "6985:36:1", "nodeType": "YulFunctionCall", "src": "6985:36:1" }, "variableNames": [ { "name": "tmp", + "nativeSrc": "6978:3:1", "nodeType": "YulIdentifier", "src": "6978:3:1" } @@ -6992,7 +7260,7 @@ } ] }, - "evmVersion": "london", + "evmVersion": "paris", "externalReferences": [ { "declaration": 540, @@ -7297,10 +7565,12 @@ }, { "AST": { + "nativeSrc": "7249:67:1", "nodeType": "YulBlock", "src": "7249:67:1", "statements": [ { + "nativeSrc": "7263:43:1", "nodeType": "YulAssignment", "src": "7263:43:1", "value": { @@ -7311,11 +7581,13 @@ "arguments": [ { "name": "_bytes", + "nativeSrc": "7284:6:1", "nodeType": "YulIdentifier", "src": "7284:6:1" }, { "kind": "number", + "nativeSrc": "7292:3:1", "nodeType": "YulLiteral", "src": "7292:3:1", "type": "", @@ -7324,38 +7596,46 @@ ], "functionName": { "name": "add", + "nativeSrc": "7280:3:1", "nodeType": "YulIdentifier", "src": "7280:3:1" }, + "nativeSrc": "7280:16:1", "nodeType": "YulFunctionCall", "src": "7280:16:1" }, { "name": "_start", + "nativeSrc": "7298:6:1", "nodeType": "YulIdentifier", "src": "7298:6:1" } ], "functionName": { "name": "add", + "nativeSrc": "7276:3:1", "nodeType": "YulIdentifier", "src": "7276:3:1" }, + "nativeSrc": "7276:29:1", "nodeType": "YulFunctionCall", "src": "7276:29:1" } ], "functionName": { "name": "mload", + "nativeSrc": "7270:5:1", "nodeType": "YulIdentifier", "src": "7270:5:1" }, + "nativeSrc": "7270:36:1", "nodeType": "YulFunctionCall", "src": "7270:36:1" }, "variableNames": [ { "name": "tmp", + "nativeSrc": "7263:3:1", "nodeType": "YulIdentifier", "src": "7263:3:1" } @@ -7363,7 +7643,7 @@ } ] }, - "evmVersion": "london", + "evmVersion": "paris", "externalReferences": [ { "declaration": 561, @@ -7668,10 +7948,12 @@ }, { "AST": { + "nativeSrc": "7534:67:1", "nodeType": "YulBlock", "src": "7534:67:1", "statements": [ { + "nativeSrc": "7548:43:1", "nodeType": "YulAssignment", "src": "7548:43:1", "value": { @@ -7682,11 +7964,13 @@ "arguments": [ { "name": "_bytes", + "nativeSrc": "7569:6:1", "nodeType": "YulIdentifier", "src": "7569:6:1" }, { "kind": "number", + "nativeSrc": "7577:3:1", "nodeType": "YulLiteral", "src": "7577:3:1", "type": "", @@ -7695,38 +7979,46 @@ ], "functionName": { "name": "add", + "nativeSrc": "7565:3:1", "nodeType": "YulIdentifier", "src": "7565:3:1" }, + "nativeSrc": "7565:16:1", "nodeType": "YulFunctionCall", "src": "7565:16:1" }, { "name": "_start", + "nativeSrc": "7583:6:1", "nodeType": "YulIdentifier", "src": "7583:6:1" } ], "functionName": { "name": "add", + "nativeSrc": "7561:3:1", "nodeType": "YulIdentifier", "src": "7561:3:1" }, + "nativeSrc": "7561:29:1", "nodeType": "YulFunctionCall", "src": "7561:29:1" } ], "functionName": { "name": "mload", + "nativeSrc": "7555:5:1", "nodeType": "YulIdentifier", "src": "7555:5:1" }, + "nativeSrc": "7555:36:1", "nodeType": "YulFunctionCall", "src": "7555:36:1" }, "variableNames": [ { "name": "tmp", + "nativeSrc": "7548:3:1", "nodeType": "YulIdentifier", "src": "7548:3:1" } @@ -7734,7 +8026,7 @@ } ] }, - "evmVersion": "london", + "evmVersion": "paris", "externalReferences": [ { "declaration": 582, @@ -8039,10 +8331,12 @@ }, { "AST": { + "nativeSrc": "7820:67:1", "nodeType": "YulBlock", "src": "7820:67:1", "statements": [ { + "nativeSrc": "7834:43:1", "nodeType": "YulAssignment", "src": "7834:43:1", "value": { @@ -8053,11 +8347,13 @@ "arguments": [ { "name": "_bytes", + "nativeSrc": "7855:6:1", "nodeType": "YulIdentifier", "src": "7855:6:1" }, { "kind": "number", + "nativeSrc": "7863:3:1", "nodeType": "YulLiteral", "src": "7863:3:1", "type": "", @@ -8066,38 +8362,46 @@ ], "functionName": { "name": "add", + "nativeSrc": "7851:3:1", "nodeType": "YulIdentifier", "src": "7851:3:1" }, + "nativeSrc": "7851:16:1", "nodeType": "YulFunctionCall", "src": "7851:16:1" }, { "name": "_start", + "nativeSrc": "7869:6:1", "nodeType": "YulIdentifier", "src": "7869:6:1" } ], "functionName": { "name": "add", + "nativeSrc": "7847:3:1", "nodeType": "YulIdentifier", "src": "7847:3:1" }, + "nativeSrc": "7847:29:1", "nodeType": "YulFunctionCall", "src": "7847:29:1" } ], "functionName": { "name": "mload", + "nativeSrc": "7841:5:1", "nodeType": "YulIdentifier", "src": "7841:5:1" }, + "nativeSrc": "7841:36:1", "nodeType": "YulFunctionCall", "src": "7841:36:1" }, "variableNames": [ { "name": "tmp", + "nativeSrc": "7834:3:1", "nodeType": "YulIdentifier", "src": "7834:3:1" } @@ -8105,7 +8409,7 @@ } ] }, - "evmVersion": "london", + "evmVersion": "paris", "externalReferences": [ { "declaration": 603, @@ -8410,10 +8714,12 @@ }, { "AST": { + "nativeSrc": "8109:67:1", "nodeType": "YulBlock", "src": "8109:67:1", "statements": [ { + "nativeSrc": "8123:43:1", "nodeType": "YulAssignment", "src": "8123:43:1", "value": { @@ -8424,11 +8730,13 @@ "arguments": [ { "name": "_bytes", + "nativeSrc": "8144:6:1", "nodeType": "YulIdentifier", "src": "8144:6:1" }, { "kind": "number", + "nativeSrc": "8152:3:1", "nodeType": "YulLiteral", "src": "8152:3:1", "type": "", @@ -8437,38 +8745,46 @@ ], "functionName": { "name": "add", + "nativeSrc": "8140:3:1", "nodeType": "YulIdentifier", "src": "8140:3:1" }, + "nativeSrc": "8140:16:1", "nodeType": "YulFunctionCall", "src": "8140:16:1" }, { "name": "_start", + "nativeSrc": "8158:6:1", "nodeType": "YulIdentifier", "src": "8158:6:1" } ], "functionName": { "name": "add", + "nativeSrc": "8136:3:1", "nodeType": "YulIdentifier", "src": "8136:3:1" }, + "nativeSrc": "8136:29:1", "nodeType": "YulFunctionCall", "src": "8136:29:1" } ], "functionName": { "name": "mload", + "nativeSrc": "8130:5:1", "nodeType": "YulIdentifier", "src": "8130:5:1" }, + "nativeSrc": "8130:36:1", "nodeType": "YulFunctionCall", "src": "8130:36:1" }, "variableNames": [ { "name": "tmp", + "nativeSrc": "8123:3:1", "nodeType": "YulIdentifier", "src": "8123:3:1" } @@ -8476,7 +8792,7 @@ } ] }, - "evmVersion": "london", + "evmVersion": "paris", "externalReferences": [ { "declaration": 624, @@ -8781,10 +9097,12 @@ }, { "AST": { + "nativeSrc": "8398:68:1", "nodeType": "YulBlock", "src": "8398:68:1", "statements": [ { + "nativeSrc": "8412:44:1", "nodeType": "YulAssignment", "src": "8412:44:1", "value": { @@ -8795,11 +9113,13 @@ "arguments": [ { "name": "_bytes", + "nativeSrc": "8433:6:1", "nodeType": "YulIdentifier", "src": "8433:6:1" }, { "kind": "number", + "nativeSrc": "8441:4:1", "nodeType": "YulLiteral", "src": "8441:4:1", "type": "", @@ -8808,38 +9128,46 @@ ], "functionName": { "name": "add", + "nativeSrc": "8429:3:1", "nodeType": "YulIdentifier", "src": "8429:3:1" }, + "nativeSrc": "8429:17:1", "nodeType": "YulFunctionCall", "src": "8429:17:1" }, { "name": "_start", + "nativeSrc": "8448:6:1", "nodeType": "YulIdentifier", "src": "8448:6:1" } ], "functionName": { "name": "add", + "nativeSrc": "8425:3:1", "nodeType": "YulIdentifier", "src": "8425:3:1" }, + "nativeSrc": "8425:30:1", "nodeType": "YulFunctionCall", "src": "8425:30:1" } ], "functionName": { "name": "mload", + "nativeSrc": "8419:5:1", "nodeType": "YulIdentifier", "src": "8419:5:1" }, + "nativeSrc": "8419:37:1", "nodeType": "YulFunctionCall", "src": "8419:37:1" }, "variableNames": [ { "name": "tmp", + "nativeSrc": "8412:3:1", "nodeType": "YulIdentifier", "src": "8412:3:1" } @@ -8847,7 +9175,7 @@ } ] }, - "evmVersion": "london", + "evmVersion": "paris", "externalReferences": [ { "declaration": 645, @@ -9152,10 +9480,12 @@ }, { "AST": { + "nativeSrc": "8688:68:1", "nodeType": "YulBlock", "src": "8688:68:1", "statements": [ { + "nativeSrc": "8702:44:1", "nodeType": "YulAssignment", "src": "8702:44:1", "value": { @@ -9166,11 +9496,13 @@ "arguments": [ { "name": "_bytes", + "nativeSrc": "8723:6:1", "nodeType": "YulIdentifier", "src": "8723:6:1" }, { "kind": "number", + "nativeSrc": "8731:4:1", "nodeType": "YulLiteral", "src": "8731:4:1", "type": "", @@ -9179,38 +9511,46 @@ ], "functionName": { "name": "add", + "nativeSrc": "8719:3:1", "nodeType": "YulIdentifier", "src": "8719:3:1" }, + "nativeSrc": "8719:17:1", "nodeType": "YulFunctionCall", "src": "8719:17:1" }, { "name": "_start", + "nativeSrc": "8738:6:1", "nodeType": "YulIdentifier", "src": "8738:6:1" } ], "functionName": { "name": "add", + "nativeSrc": "8715:3:1", "nodeType": "YulIdentifier", "src": "8715:3:1" }, + "nativeSrc": "8715:30:1", "nodeType": "YulFunctionCall", "src": "8715:30:1" } ], "functionName": { "name": "mload", + "nativeSrc": "8709:5:1", "nodeType": "YulIdentifier", "src": "8709:5:1" }, + "nativeSrc": "8709:37:1", "nodeType": "YulFunctionCall", "src": "8709:37:1" }, "variableNames": [ { "name": "tmp", + "nativeSrc": "8702:3:1", "nodeType": "YulIdentifier", "src": "8702:3:1" } @@ -9218,7 +9558,7 @@ } ] }, - "evmVersion": "london", + "evmVersion": "paris", "externalReferences": [ { "declaration": 666, @@ -9523,10 +9863,12 @@ }, { "AST": { + "nativeSrc": "8978:68:1", "nodeType": "YulBlock", "src": "8978:68:1", "statements": [ { + "nativeSrc": "8992:44:1", "nodeType": "YulAssignment", "src": "8992:44:1", "value": { @@ -9537,11 +9879,13 @@ "arguments": [ { "name": "_bytes", + "nativeSrc": "9013:6:1", "nodeType": "YulIdentifier", "src": "9013:6:1" }, { "kind": "number", + "nativeSrc": "9021:4:1", "nodeType": "YulLiteral", "src": "9021:4:1", "type": "", @@ -9550,38 +9894,46 @@ ], "functionName": { "name": "add", + "nativeSrc": "9009:3:1", "nodeType": "YulIdentifier", "src": "9009:3:1" }, + "nativeSrc": "9009:17:1", "nodeType": "YulFunctionCall", "src": "9009:17:1" }, { "name": "_start", + "nativeSrc": "9028:6:1", "nodeType": "YulIdentifier", "src": "9028:6:1" } ], "functionName": { "name": "add", + "nativeSrc": "9005:3:1", "nodeType": "YulIdentifier", "src": "9005:3:1" }, + "nativeSrc": "9005:30:1", "nodeType": "YulFunctionCall", "src": "9005:30:1" } ], "functionName": { "name": "mload", + "nativeSrc": "8999:5:1", "nodeType": "YulIdentifier", "src": "8999:5:1" }, + "nativeSrc": "8999:37:1", "nodeType": "YulFunctionCall", "src": "8999:37:1" }, "variableNames": [ { "name": "tmp", + "nativeSrc": "8992:3:1", "nodeType": "YulIdentifier", "src": "8992:3:1" } @@ -9589,7 +9941,7 @@ } ] }, - "evmVersion": "london", + "evmVersion": "paris", "externalReferences": [ { "declaration": 687, @@ -9894,10 +10246,12 @@ }, { "AST": { + "nativeSrc": "9268:68:1", "nodeType": "YulBlock", "src": "9268:68:1", "statements": [ { + "nativeSrc": "9282:44:1", "nodeType": "YulAssignment", "src": "9282:44:1", "value": { @@ -9908,11 +10262,13 @@ "arguments": [ { "name": "_bytes", + "nativeSrc": "9303:6:1", "nodeType": "YulIdentifier", "src": "9303:6:1" }, { "kind": "number", + "nativeSrc": "9311:4:1", "nodeType": "YulLiteral", "src": "9311:4:1", "type": "", @@ -9921,38 +10277,46 @@ ], "functionName": { "name": "add", + "nativeSrc": "9299:3:1", "nodeType": "YulIdentifier", "src": "9299:3:1" }, + "nativeSrc": "9299:17:1", "nodeType": "YulFunctionCall", "src": "9299:17:1" }, { "name": "_start", + "nativeSrc": "9318:6:1", "nodeType": "YulIdentifier", "src": "9318:6:1" } ], "functionName": { "name": "add", + "nativeSrc": "9295:3:1", "nodeType": "YulIdentifier", "src": "9295:3:1" }, + "nativeSrc": "9295:30:1", "nodeType": "YulFunctionCall", "src": "9295:30:1" } ], "functionName": { "name": "mload", + "nativeSrc": "9289:5:1", "nodeType": "YulIdentifier", "src": "9289:5:1" }, + "nativeSrc": "9289:37:1", "nodeType": "YulFunctionCall", "src": "9289:37:1" }, "variableNames": [ { "name": "tmp", + "nativeSrc": "9282:3:1", "nodeType": "YulIdentifier", "src": "9282:3:1" } @@ -9960,7 +10324,7 @@ } ] }, - "evmVersion": "london", + "evmVersion": "paris", "externalReferences": [ { "declaration": 708, @@ -10162,31 +10526,37 @@ }, { "AST": { + "nativeSrc": "9516:1251:1", "nodeType": "YulBlock", "src": "9516:1251:1", "statements": [ { + "nativeSrc": "9530:30:1", "nodeType": "YulVariableDeclaration", "src": "9530:30:1", "value": { "arguments": [ { "name": "_preBytes", + "nativeSrc": "9550:9:1", "nodeType": "YulIdentifier", "src": "9550:9:1" } ], "functionName": { "name": "mload", + "nativeSrc": "9544:5:1", "nodeType": "YulIdentifier", "src": "9544:5:1" }, + "nativeSrc": "9544:16:1", "nodeType": "YulFunctionCall", "src": "9544:16:1" }, "variables": [ { "name": "length", + "nativeSrc": "9534:6:1", "nodeType": "YulTypedName", "src": "9534:6:1", "type": "" @@ -10197,14 +10567,17 @@ "cases": [ { "body": { + "nativeSrc": "9693:969:1", "nodeType": "YulBlock", "src": "9693:969:1", "statements": [ { + "nativeSrc": "9922:11:1", "nodeType": "YulVariableDeclaration", "src": "9922:11:1", "value": { "kind": "number", + "nativeSrc": "9932:1:1", "nodeType": "YulLiteral", "src": "9932:1:1", "type": "", @@ -10213,6 +10586,7 @@ "variables": [ { "name": "cb", + "nativeSrc": "9926:2:1", "nodeType": "YulTypedName", "src": "9926:2:1", "type": "" @@ -10220,17 +10594,20 @@ ] }, { + "nativeSrc": "9951:30:1", "nodeType": "YulVariableDeclaration", "src": "9951:30:1", "value": { "arguments": [ { "name": "_preBytes", + "nativeSrc": "9965:9:1", "nodeType": "YulIdentifier", "src": "9965:9:1" }, { "kind": "number", + "nativeSrc": "9976:4:1", "nodeType": "YulLiteral", "src": "9976:4:1", "type": "", @@ -10239,15 +10616,18 @@ ], "functionName": { "name": "add", + "nativeSrc": "9961:3:1", "nodeType": "YulIdentifier", "src": "9961:3:1" }, + "nativeSrc": "9961:20:1", "nodeType": "YulFunctionCall", "src": "9961:20:1" }, "variables": [ { "name": "mc", + "nativeSrc": "9955:2:1", "nodeType": "YulTypedName", "src": "9955:2:1", "type": "" @@ -10255,32 +10635,38 @@ ] }, { + "nativeSrc": "9998:26:1", "nodeType": "YulVariableDeclaration", "src": "9998:26:1", "value": { "arguments": [ { "name": "mc", + "nativeSrc": "10013:2:1", "nodeType": "YulIdentifier", "src": "10013:2:1" }, { "name": "length", + "nativeSrc": "10017:6:1", "nodeType": "YulIdentifier", "src": "10017:6:1" } ], "functionName": { "name": "add", + "nativeSrc": "10009:3:1", "nodeType": "YulIdentifier", "src": "10009:3:1" }, + "nativeSrc": "10009:15:1", "nodeType": "YulFunctionCall", "src": "10009:15:1" }, "variables": [ { "name": "end", + "nativeSrc": "10002:3:1", "nodeType": "YulTypedName", "src": "10002:3:1", "type": "" @@ -10289,19 +10675,23 @@ }, { "body": { + "nativeSrc": "10364:284:1", "nodeType": "YulBlock", "src": "10364:284:1", "statements": [ { "body": { + "nativeSrc": "10500:130:1", "nodeType": "YulBlock", "src": "10500:130:1", "statements": [ { + "nativeSrc": "10564:12:1", "nodeType": "YulAssignment", "src": "10564:12:1", "value": { "kind": "number", + "nativeSrc": "10575:1:1", "nodeType": "YulLiteral", "src": "10575:1:1", "type": "", @@ -10310,16 +10700,19 @@ "variableNames": [ { "name": "success", + "nativeSrc": "10564:7:1", "nodeType": "YulIdentifier", "src": "10564:7:1" } ] }, { + "nativeSrc": "10601:7:1", "nodeType": "YulAssignment", "src": "10601:7:1", "value": { "kind": "number", + "nativeSrc": "10607:1:1", "nodeType": "YulLiteral", "src": "10607:1:1", "type": "", @@ -10328,6 +10721,7 @@ "variableNames": [ { "name": "cb", + "nativeSrc": "10601:2:1", "nodeType": "YulIdentifier", "src": "10601:2:1" } @@ -10343,15 +10737,18 @@ "arguments": [ { "name": "mc", + "nativeSrc": "10483:2:1", "nodeType": "YulIdentifier", "src": "10483:2:1" } ], "functionName": { "name": "mload", + "nativeSrc": "10477:5:1", "nodeType": "YulIdentifier", "src": "10477:5:1" }, + "nativeSrc": "10477:9:1", "nodeType": "YulFunctionCall", "src": "10477:9:1" }, @@ -10359,36 +10756,44 @@ "arguments": [ { "name": "cc", + "nativeSrc": "10494:2:1", "nodeType": "YulIdentifier", "src": "10494:2:1" } ], "functionName": { "name": "mload", + "nativeSrc": "10488:5:1", "nodeType": "YulIdentifier", "src": "10488:5:1" }, + "nativeSrc": "10488:9:1", "nodeType": "YulFunctionCall", "src": "10488:9:1" } ], "functionName": { "name": "eq", + "nativeSrc": "10474:2:1", "nodeType": "YulIdentifier", "src": "10474:2:1" }, + "nativeSrc": "10474:24:1", "nodeType": "YulFunctionCall", "src": "10474:24:1" } ], "functionName": { "name": "iszero", + "nativeSrc": "10467:6:1", "nodeType": "YulIdentifier", "src": "10467:6:1" }, + "nativeSrc": "10467:32:1", "nodeType": "YulFunctionCall", "src": "10467:32:1" }, + "nativeSrc": "10464:166:1", "nodeType": "YulIf", "src": "10464:166:1" } @@ -10402,39 +10807,47 @@ "arguments": [ { "name": "mc", + "nativeSrc": "10246:2:1", "nodeType": "YulIdentifier", "src": "10246:2:1" }, { "name": "end", + "nativeSrc": "10250:3:1", "nodeType": "YulIdentifier", "src": "10250:3:1" } ], "functionName": { "name": "lt", + "nativeSrc": "10243:2:1", "nodeType": "YulIdentifier", "src": "10243:2:1" }, + "nativeSrc": "10243:11:1", "nodeType": "YulFunctionCall", "src": "10243:11:1" }, { "name": "cb", + "nativeSrc": "10256:2:1", "nodeType": "YulIdentifier", "src": "10256:2:1" } ], "functionName": { "name": "add", + "nativeSrc": "10239:3:1", "nodeType": "YulIdentifier", "src": "10239:3:1" }, + "nativeSrc": "10239:20:1", "nodeType": "YulFunctionCall", "src": "10239:20:1" }, { "kind": "number", + "nativeSrc": "10261:1:1", "nodeType": "YulLiteral", "src": "10261:1:1", "type": "", @@ -10443,29 +10856,36 @@ ], "functionName": { "name": "eq", + "nativeSrc": "10236:2:1", "nodeType": "YulIdentifier", "src": "10236:2:1" }, + "nativeSrc": "10236:27:1", "nodeType": "YulFunctionCall", "src": "10236:27:1" }, + "nativeSrc": "10042:606:1", "nodeType": "YulForLoop", "post": { + "nativeSrc": "10264:99:1", "nodeType": "YulBlock", "src": "10264:99:1", "statements": [ { + "nativeSrc": "10286:19:1", "nodeType": "YulAssignment", "src": "10286:19:1", "value": { "arguments": [ { "name": "mc", + "nativeSrc": "10296:2:1", "nodeType": "YulIdentifier", "src": "10296:2:1" }, { "kind": "number", + "nativeSrc": "10300:4:1", "nodeType": "YulLiteral", "src": "10300:4:1", "type": "", @@ -10474,32 +10894,38 @@ ], "functionName": { "name": "add", + "nativeSrc": "10292:3:1", "nodeType": "YulIdentifier", "src": "10292:3:1" }, + "nativeSrc": "10292:13:1", "nodeType": "YulFunctionCall", "src": "10292:13:1" }, "variableNames": [ { "name": "mc", + "nativeSrc": "10286:2:1", "nodeType": "YulIdentifier", "src": "10286:2:1" } ] }, { + "nativeSrc": "10326:19:1", "nodeType": "YulAssignment", "src": "10326:19:1", "value": { "arguments": [ { "name": "cc", + "nativeSrc": "10336:2:1", "nodeType": "YulIdentifier", "src": "10336:2:1" }, { "kind": "number", + "nativeSrc": "10340:4:1", "nodeType": "YulLiteral", "src": "10340:4:1", "type": "", @@ -10508,15 +10934,18 @@ ], "functionName": { "name": "add", + "nativeSrc": "10332:3:1", "nodeType": "YulIdentifier", "src": "10332:3:1" }, + "nativeSrc": "10332:13:1", "nodeType": "YulFunctionCall", "src": "10332:13:1" }, "variableNames": [ { "name": "cc", + "nativeSrc": "10326:2:1", "nodeType": "YulIdentifier", "src": "10326:2:1" } @@ -10525,21 +10954,25 @@ ] }, "pre": { + "nativeSrc": "10046:189:1", "nodeType": "YulBlock", "src": "10046:189:1", "statements": [ { + "nativeSrc": "10068:31:1", "nodeType": "YulVariableDeclaration", "src": "10068:31:1", "value": { "arguments": [ { "name": "_postBytes", + "nativeSrc": "10082:10:1", "nodeType": "YulIdentifier", "src": "10082:10:1" }, { "kind": "number", + "nativeSrc": "10094:4:1", "nodeType": "YulLiteral", "src": "10094:4:1", "type": "", @@ -10548,15 +10981,18 @@ ], "functionName": { "name": "add", + "nativeSrc": "10078:3:1", "nodeType": "YulIdentifier", "src": "10078:3:1" }, + "nativeSrc": "10078:21:1", "nodeType": "YulFunctionCall", "src": "10078:21:1" }, "variables": [ { "name": "cc", + "nativeSrc": "10072:2:1", "nodeType": "YulTypedName", "src": "10072:2:1", "type": "" @@ -10569,10 +11005,12 @@ } ] }, + "nativeSrc": "9686:976:1", "nodeType": "YulCase", "src": "9686:976:1", "value": { "kind": "number", + "nativeSrc": "9691:1:1", "nodeType": "YulLiteral", "src": "9691:1:1", "type": "", @@ -10581,14 +11019,17 @@ }, { "body": { + "nativeSrc": "10683:74:1", "nodeType": "YulBlock", "src": "10683:74:1", "statements": [ { + "nativeSrc": "10731:12:1", "nodeType": "YulAssignment", "src": "10731:12:1", "value": { "kind": "number", + "nativeSrc": "10742:1:1", "nodeType": "YulLiteral", "src": "10742:1:1", "type": "", @@ -10597,6 +11038,7 @@ "variableNames": [ { "name": "success", + "nativeSrc": "10731:7:1", "nodeType": "YulIdentifier", "src": "10731:7:1" } @@ -10604,6 +11046,7 @@ } ] }, + "nativeSrc": "10675:82:1", "nodeType": "YulCase", "src": "10675:82:1", "value": "default" @@ -10613,6 +11056,7 @@ "arguments": [ { "name": "length", + "nativeSrc": "9647:6:1", "nodeType": "YulIdentifier", "src": "9647:6:1" }, @@ -10620,33 +11064,39 @@ "arguments": [ { "name": "_postBytes", + "nativeSrc": "9661:10:1", "nodeType": "YulIdentifier", "src": "9661:10:1" } ], "functionName": { "name": "mload", + "nativeSrc": "9655:5:1", "nodeType": "YulIdentifier", "src": "9655:5:1" }, + "nativeSrc": "9655:17:1", "nodeType": "YulFunctionCall", "src": "9655:17:1" } ], "functionName": { "name": "eq", + "nativeSrc": "9644:2:1", "nodeType": "YulIdentifier", "src": "9644:2:1" }, + "nativeSrc": "9644:29:1", "nodeType": "YulFunctionCall", "src": "9644:29:1" }, + "nativeSrc": "9637:1120:1", "nodeType": "YulSwitch", "src": "9637:1120:1" } ] }, - "evmVersion": "london", + "evmVersion": "paris", "externalReferences": [ { "declaration": 731, @@ -10887,31 +11337,37 @@ }, { "AST": { + "nativeSrc": "10980:2551:1", "nodeType": "YulBlock", "src": "10980:2551:1", "statements": [ { + "nativeSrc": "11039:34:1", "nodeType": "YulVariableDeclaration", "src": "11039:34:1", "value": { "arguments": [ { "name": "_preBytes.slot", + "nativeSrc": "11058:14:1", "nodeType": "YulIdentifier", "src": "11058:14:1" } ], "functionName": { "name": "sload", + "nativeSrc": "11052:5:1", "nodeType": "YulIdentifier", "src": "11052:5:1" }, + "nativeSrc": "11052:21:1", "nodeType": "YulFunctionCall", "src": "11052:21:1" }, "variables": [ { "name": "fslot", + "nativeSrc": "11043:5:1", "nodeType": "YulTypedName", "src": "11043:5:1", "type": "" @@ -10919,6 +11375,7 @@ ] }, { + "nativeSrc": "11164:122:1", "nodeType": "YulVariableDeclaration", "src": "11164:122:1", "value": { @@ -10927,6 +11384,7 @@ "arguments": [ { "name": "fslot", + "nativeSrc": "11204:5:1", "nodeType": "YulIdentifier", "src": "11204:5:1" }, @@ -10936,6 +11394,7 @@ "arguments": [ { "kind": "number", + "nativeSrc": "11219:5:1", "nodeType": "YulLiteral", "src": "11219:5:1", "type": "", @@ -10947,11 +11406,13 @@ "arguments": [ { "name": "fslot", + "nativeSrc": "11237:5:1", "nodeType": "YulIdentifier", "src": "11237:5:1" }, { "kind": "number", + "nativeSrc": "11244:1:1", "nodeType": "YulLiteral", "src": "11244:1:1", "type": "", @@ -10960,32 +11421,39 @@ ], "functionName": { "name": "and", + "nativeSrc": "11233:3:1", "nodeType": "YulIdentifier", "src": "11233:3:1" }, + "nativeSrc": "11233:13:1", "nodeType": "YulFunctionCall", "src": "11233:13:1" } ], "functionName": { "name": "iszero", + "nativeSrc": "11226:6:1", "nodeType": "YulIdentifier", "src": "11226:6:1" }, + "nativeSrc": "11226:21:1", "nodeType": "YulFunctionCall", "src": "11226:21:1" } ], "functionName": { "name": "mul", + "nativeSrc": "11215:3:1", "nodeType": "YulIdentifier", "src": "11215:3:1" }, + "nativeSrc": "11215:33:1", "nodeType": "YulFunctionCall", "src": "11215:33:1" }, { "kind": "number", + "nativeSrc": "11250:1:1", "nodeType": "YulLiteral", "src": "11250:1:1", "type": "", @@ -10994,23 +11462,28 @@ ], "functionName": { "name": "sub", + "nativeSrc": "11211:3:1", "nodeType": "YulIdentifier", "src": "11211:3:1" }, + "nativeSrc": "11211:41:1", "nodeType": "YulFunctionCall", "src": "11211:41:1" } ], "functionName": { "name": "and", + "nativeSrc": "11200:3:1", "nodeType": "YulIdentifier", "src": "11200:3:1" }, + "nativeSrc": "11200:53:1", "nodeType": "YulFunctionCall", "src": "11200:53:1" }, { "kind": "number", + "nativeSrc": "11271:1:1", "nodeType": "YulLiteral", "src": "11271:1:1", "type": "", @@ -11019,15 +11492,18 @@ ], "functionName": { "name": "div", + "nativeSrc": "11179:3:1", "nodeType": "YulIdentifier", "src": "11179:3:1" }, + "nativeSrc": "11179:107:1", "nodeType": "YulFunctionCall", "src": "11179:107:1" }, "variables": [ { "name": "slength", + "nativeSrc": "11168:7:1", "nodeType": "YulTypedName", "src": "11168:7:1", "type": "" @@ -11035,27 +11511,32 @@ ] }, { + "nativeSrc": "11299:32:1", "nodeType": "YulVariableDeclaration", "src": "11299:32:1", "value": { "arguments": [ { "name": "_postBytes", + "nativeSrc": "11320:10:1", "nodeType": "YulIdentifier", "src": "11320:10:1" } ], "functionName": { "name": "mload", + "nativeSrc": "11314:5:1", "nodeType": "YulIdentifier", "src": "11314:5:1" }, + "nativeSrc": "11314:17:1", "nodeType": "YulFunctionCall", "src": "11314:17:1" }, "variables": [ { "name": "mlength", + "nativeSrc": "11303:7:1", "nodeType": "YulTypedName", "src": "11303:7:1", "type": "" @@ -11066,11 +11547,13 @@ "cases": [ { "body": { + "nativeSrc": "11455:1971:1", "nodeType": "YulBlock", "src": "11455:1971:1", "statements": [ { "body": { + "nativeSrc": "11766:1646:1", "nodeType": "YulBlock", "src": "11766:1646:1", "statements": [ @@ -11078,10 +11561,12 @@ "cases": [ { "body": { + "nativeSrc": "11838:340:1", "nodeType": "YulBlock", "src": "11838:340:1", "statements": [ { + "nativeSrc": "11931:38:1", "nodeType": "YulAssignment", "src": "11931:38:1", "value": { @@ -11090,11 +11575,13 @@ "arguments": [ { "name": "fslot", + "nativeSrc": "11948:5:1", "nodeType": "YulIdentifier", "src": "11948:5:1" }, { "kind": "number", + "nativeSrc": "11955:5:1", "nodeType": "YulLiteral", "src": "11955:5:1", "type": "", @@ -11103,14 +11590,17 @@ ], "functionName": { "name": "div", + "nativeSrc": "11944:3:1", "nodeType": "YulIdentifier", "src": "11944:3:1" }, + "nativeSrc": "11944:17:1", "nodeType": "YulFunctionCall", "src": "11944:17:1" }, { "kind": "number", + "nativeSrc": "11963:5:1", "nodeType": "YulLiteral", "src": "11963:5:1", "type": "", @@ -11119,15 +11609,18 @@ ], "functionName": { "name": "mul", + "nativeSrc": "11940:3:1", "nodeType": "YulIdentifier", "src": "11940:3:1" }, + "nativeSrc": "11940:29:1", "nodeType": "YulFunctionCall", "src": "11940:29:1" }, "variableNames": [ { "name": "fslot", + "nativeSrc": "11931:5:1", "nodeType": "YulIdentifier", "src": "11931:5:1" } @@ -11135,14 +11628,17 @@ }, { "body": { + "nativeSrc": "12046:110:1", "nodeType": "YulBlock", "src": "12046:110:1", "statements": [ { + "nativeSrc": "12118:12:1", "nodeType": "YulAssignment", "src": "12118:12:1", "value": { "kind": "number", + "nativeSrc": "12129:1:1", "nodeType": "YulLiteral", "src": "12129:1:1", "type": "", @@ -11151,6 +11647,7 @@ "variableNames": [ { "name": "success", + "nativeSrc": "12118:7:1", "nodeType": "YulIdentifier", "src": "12118:7:1" } @@ -11164,6 +11661,7 @@ "arguments": [ { "name": "fslot", + "nativeSrc": "12008:5:1", "nodeType": "YulIdentifier", "src": "12008:5:1" }, @@ -11173,11 +11671,13 @@ "arguments": [ { "name": "_postBytes", + "nativeSrc": "12025:10:1", "nodeType": "YulIdentifier", "src": "12025:10:1" }, { "kind": "number", + "nativeSrc": "12037:4:1", "nodeType": "YulLiteral", "src": "12037:4:1", "type": "", @@ -11186,48 +11686,59 @@ ], "functionName": { "name": "add", + "nativeSrc": "12021:3:1", "nodeType": "YulIdentifier", "src": "12021:3:1" }, + "nativeSrc": "12021:21:1", "nodeType": "YulFunctionCall", "src": "12021:21:1" } ], "functionName": { "name": "mload", + "nativeSrc": "12015:5:1", "nodeType": "YulIdentifier", "src": "12015:5:1" }, + "nativeSrc": "12015:28:1", "nodeType": "YulFunctionCall", "src": "12015:28:1" } ], "functionName": { "name": "eq", + "nativeSrc": "12005:2:1", "nodeType": "YulIdentifier", "src": "12005:2:1" }, + "nativeSrc": "12005:39:1", "nodeType": "YulFunctionCall", "src": "12005:39:1" } ], "functionName": { "name": "iszero", + "nativeSrc": "11998:6:1", "nodeType": "YulIdentifier", "src": "11998:6:1" }, + "nativeSrc": "11998:47:1", "nodeType": "YulFunctionCall", "src": "11998:47:1" }, + "nativeSrc": "11995:161:1", "nodeType": "YulIf", "src": "11995:161:1" } ] }, + "nativeSrc": "11831:347:1", "nodeType": "YulCase", "src": "11831:347:1", "value": { "kind": "number", + "nativeSrc": "11836:1:1", "nodeType": "YulLiteral", "src": "11836:1:1", "type": "", @@ -11236,14 +11747,17 @@ }, { "body": { + "nativeSrc": "12207:1187:1", "nodeType": "YulBlock", "src": "12207:1187:1", "statements": [ { + "nativeSrc": "12476:11:1", "nodeType": "YulVariableDeclaration", "src": "12476:11:1", "value": { "kind": "number", + "nativeSrc": "12486:1:1", "nodeType": "YulLiteral", "src": "12486:1:1", "type": "", @@ -11252,6 +11766,7 @@ "variables": [ { "name": "cb", + "nativeSrc": "12480:2:1", "nodeType": "YulTypedName", "src": "12480:2:1", "type": "" @@ -11263,6 +11778,7 @@ "arguments": [ { "kind": "number", + "nativeSrc": "12600:3:1", "nodeType": "YulLiteral", "src": "12600:3:1", "type": "", @@ -11270,28 +11786,34 @@ }, { "name": "_preBytes.slot", + "nativeSrc": "12605:14:1", "nodeType": "YulIdentifier", "src": "12605:14:1" } ], "functionName": { "name": "mstore", + "nativeSrc": "12593:6:1", "nodeType": "YulIdentifier", "src": "12593:6:1" }, + "nativeSrc": "12593:27:1", "nodeType": "YulFunctionCall", "src": "12593:27:1" }, + "nativeSrc": "12593:27:1", "nodeType": "YulExpressionStatement", "src": "12593:27:1" }, { + "nativeSrc": "12645:30:1", "nodeType": "YulVariableDeclaration", "src": "12645:30:1", "value": { "arguments": [ { "kind": "number", + "nativeSrc": "12665:3:1", "nodeType": "YulLiteral", "src": "12665:3:1", "type": "", @@ -11299,6 +11821,7 @@ }, { "kind": "number", + "nativeSrc": "12670:4:1", "nodeType": "YulLiteral", "src": "12670:4:1", "type": "", @@ -11307,15 +11830,18 @@ ], "functionName": { "name": "keccak256", + "nativeSrc": "12655:9:1", "nodeType": "YulIdentifier", "src": "12655:9:1" }, + "nativeSrc": "12655:20:1", "nodeType": "YulFunctionCall", "src": "12655:20:1" }, "variables": [ { "name": "sc", + "nativeSrc": "12649:2:1", "nodeType": "YulTypedName", "src": "12649:2:1", "type": "" @@ -11323,17 +11849,20 @@ ] }, { + "nativeSrc": "12701:31:1", "nodeType": "YulVariableDeclaration", "src": "12701:31:1", "value": { "arguments": [ { "name": "_postBytes", + "nativeSrc": "12715:10:1", "nodeType": "YulIdentifier", "src": "12715:10:1" }, { "kind": "number", + "nativeSrc": "12727:4:1", "nodeType": "YulLiteral", "src": "12727:4:1", "type": "", @@ -11342,15 +11871,18 @@ ], "functionName": { "name": "add", + "nativeSrc": "12711:3:1", "nodeType": "YulIdentifier", "src": "12711:3:1" }, + "nativeSrc": "12711:21:1", "nodeType": "YulFunctionCall", "src": "12711:21:1" }, "variables": [ { "name": "mc", + "nativeSrc": "12705:2:1", "nodeType": "YulTypedName", "src": "12705:2:1", "type": "" @@ -11358,32 +11890,38 @@ ] }, { + "nativeSrc": "12757:27:1", "nodeType": "YulVariableDeclaration", "src": "12757:27:1", "value": { "arguments": [ { "name": "mc", + "nativeSrc": "12772:2:1", "nodeType": "YulIdentifier", "src": "12772:2:1" }, { "name": "mlength", + "nativeSrc": "12776:7:1", "nodeType": "YulIdentifier", "src": "12776:7:1" } ], "functionName": { "name": "add", + "nativeSrc": "12768:3:1", "nodeType": "YulIdentifier", "src": "12768:3:1" }, + "nativeSrc": "12768:16:1", "nodeType": "YulFunctionCall", "src": "12768:16:1" }, "variables": [ { "name": "end", + "nativeSrc": "12761:3:1", "nodeType": "YulTypedName", "src": "12761:3:1", "type": "" @@ -11392,19 +11930,23 @@ }, { "body": { + "nativeSrc": "13118:254:1", "nodeType": "YulBlock", "src": "13118:254:1", "statements": [ { "body": { + "nativeSrc": "13184:162:1", "nodeType": "YulBlock", "src": "13184:162:1", "statements": [ { + "nativeSrc": "13264:12:1", "nodeType": "YulAssignment", "src": "13264:12:1", "value": { "kind": "number", + "nativeSrc": "13275:1:1", "nodeType": "YulLiteral", "src": "13275:1:1", "type": "", @@ -11413,16 +11955,19 @@ "variableNames": [ { "name": "success", + "nativeSrc": "13264:7:1", "nodeType": "YulIdentifier", "src": "13264:7:1" } ] }, { + "nativeSrc": "13309:7:1", "nodeType": "YulAssignment", "src": "13309:7:1", "value": { "kind": "number", + "nativeSrc": "13315:1:1", "nodeType": "YulLiteral", "src": "13315:1:1", "type": "", @@ -11431,6 +11976,7 @@ "variableNames": [ { "name": "cb", + "nativeSrc": "13309:2:1", "nodeType": "YulIdentifier", "src": "13309:2:1" } @@ -11446,15 +11992,18 @@ "arguments": [ { "name": "sc", + "nativeSrc": "13167:2:1", "nodeType": "YulIdentifier", "src": "13167:2:1" } ], "functionName": { "name": "sload", + "nativeSrc": "13161:5:1", "nodeType": "YulIdentifier", "src": "13161:5:1" }, + "nativeSrc": "13161:9:1", "nodeType": "YulFunctionCall", "src": "13161:9:1" }, @@ -11462,36 +12011,44 @@ "arguments": [ { "name": "mc", + "nativeSrc": "13178:2:1", "nodeType": "YulIdentifier", "src": "13178:2:1" } ], "functionName": { "name": "mload", + "nativeSrc": "13172:5:1", "nodeType": "YulIdentifier", "src": "13172:5:1" }, + "nativeSrc": "13172:9:1", "nodeType": "YulFunctionCall", "src": "13172:9:1" } ], "functionName": { "name": "eq", + "nativeSrc": "13158:2:1", "nodeType": "YulIdentifier", "src": "13158:2:1" }, + "nativeSrc": "13158:24:1", "nodeType": "YulFunctionCall", "src": "13158:24:1" } ], "functionName": { "name": "iszero", + "nativeSrc": "13151:6:1", "nodeType": "YulIdentifier", "src": "13151:6:1" }, + "nativeSrc": "13151:32:1", "nodeType": "YulFunctionCall", "src": "13151:32:1" }, + "nativeSrc": "13148:198:1", "nodeType": "YulIf", "src": "13148:198:1" } @@ -11505,39 +12062,47 @@ "arguments": [ { "name": "mc", + "nativeSrc": "12979:2:1", "nodeType": "YulIdentifier", "src": "12979:2:1" }, { "name": "end", + "nativeSrc": "12983:3:1", "nodeType": "YulIdentifier", "src": "12983:3:1" } ], "functionName": { "name": "lt", + "nativeSrc": "12976:2:1", "nodeType": "YulIdentifier", "src": "12976:2:1" }, + "nativeSrc": "12976:11:1", "nodeType": "YulFunctionCall", "src": "12976:11:1" }, { "name": "cb", + "nativeSrc": "12989:2:1", "nodeType": "YulIdentifier", "src": "12989:2:1" } ], "functionName": { "name": "add", + "nativeSrc": "12972:3:1", "nodeType": "YulIdentifier", "src": "12972:3:1" }, + "nativeSrc": "12972:20:1", "nodeType": "YulFunctionCall", "src": "12972:20:1" }, { "kind": "number", + "nativeSrc": "12994:1:1", "nodeType": "YulLiteral", "src": "12994:1:1", "type": "", @@ -11546,29 +12111,36 @@ ], "functionName": { "name": "eq", + "nativeSrc": "12969:2:1", "nodeType": "YulIdentifier", "src": "12969:2:1" }, + "nativeSrc": "12969:27:1", "nodeType": "YulFunctionCall", "src": "12969:27:1" }, + "nativeSrc": "12936:436:1", "nodeType": "YulForLoop", "post": { + "nativeSrc": "12997:120:1", "nodeType": "YulBlock", "src": "12997:120:1", "statements": [ { + "nativeSrc": "13027:16:1", "nodeType": "YulAssignment", "src": "13027:16:1", "value": { "arguments": [ { "name": "sc", + "nativeSrc": "13037:2:1", "nodeType": "YulIdentifier", "src": "13037:2:1" }, { "kind": "number", + "nativeSrc": "13041:1:1", "nodeType": "YulLiteral", "src": "13041:1:1", "type": "", @@ -11577,32 +12149,38 @@ ], "functionName": { "name": "add", + "nativeSrc": "13033:3:1", "nodeType": "YulIdentifier", "src": "13033:3:1" }, + "nativeSrc": "13033:10:1", "nodeType": "YulFunctionCall", "src": "13033:10:1" }, "variableNames": [ { "name": "sc", + "nativeSrc": "13027:2:1", "nodeType": "YulIdentifier", "src": "13027:2:1" } ] }, { + "nativeSrc": "13072:19:1", "nodeType": "YulAssignment", "src": "13072:19:1", "value": { "arguments": [ { "name": "mc", + "nativeSrc": "13082:2:1", "nodeType": "YulIdentifier", "src": "13082:2:1" }, { "kind": "number", + "nativeSrc": "13086:4:1", "nodeType": "YulLiteral", "src": "13086:4:1", "type": "", @@ -11611,15 +12189,18 @@ ], "functionName": { "name": "add", + "nativeSrc": "13078:3:1", "nodeType": "YulIdentifier", "src": "13078:3:1" }, + "nativeSrc": "13078:13:1", "nodeType": "YulFunctionCall", "src": "13078:13:1" }, "variableNames": [ { "name": "mc", + "nativeSrc": "13072:2:1", "nodeType": "YulIdentifier", "src": "13072:2:1" } @@ -11628,6 +12209,7 @@ ] }, "pre": { + "nativeSrc": "12940:28:1", "nodeType": "YulBlock", "src": "12940:28:1", "statements": [] @@ -11636,6 +12218,7 @@ } ] }, + "nativeSrc": "12199:1195:1", "nodeType": "YulCase", "src": "12199:1195:1", "value": "default" @@ -11645,11 +12228,13 @@ "arguments": [ { "name": "slength", + "nativeSrc": "11798:7:1", "nodeType": "YulIdentifier", "src": "11798:7:1" }, { "kind": "number", + "nativeSrc": "11807:2:1", "nodeType": "YulLiteral", "src": "11807:2:1", "type": "", @@ -11658,12 +12243,15 @@ ], "functionName": { "name": "lt", + "nativeSrc": "11795:2:1", "nodeType": "YulIdentifier", "src": "11795:2:1" }, + "nativeSrc": "11795:15:1", "nodeType": "YulFunctionCall", "src": "11795:15:1" }, + "nativeSrc": "11788:1606:1", "nodeType": "YulSwitch", "src": "11788:1606:1" } @@ -11675,36 +12263,44 @@ "arguments": [ { "name": "slength", + "nativeSrc": "11756:7:1", "nodeType": "YulIdentifier", "src": "11756:7:1" } ], "functionName": { "name": "iszero", + "nativeSrc": "11749:6:1", "nodeType": "YulIdentifier", "src": "11749:6:1" }, + "nativeSrc": "11749:15:1", "nodeType": "YulFunctionCall", "src": "11749:15:1" } ], "functionName": { "name": "iszero", + "nativeSrc": "11742:6:1", "nodeType": "YulIdentifier", "src": "11742:6:1" }, + "nativeSrc": "11742:23:1", "nodeType": "YulFunctionCall", "src": "11742:23:1" }, + "nativeSrc": "11739:1673:1", "nodeType": "YulIf", "src": "11739:1673:1" } ] }, + "nativeSrc": "11448:1978:1", "nodeType": "YulCase", "src": "11448:1978:1", "value": { "kind": "number", + "nativeSrc": "11453:1:1", "nodeType": "YulLiteral", "src": "11453:1:1", "type": "", @@ -11713,14 +12309,17 @@ }, { "body": { + "nativeSrc": "13447:74:1", "nodeType": "YulBlock", "src": "13447:74:1", "statements": [ { + "nativeSrc": "13495:12:1", "nodeType": "YulAssignment", "src": "13495:12:1", "value": { "kind": "number", + "nativeSrc": "13506:1:1", "nodeType": "YulLiteral", "src": "13506:1:1", "type": "", @@ -11729,6 +12328,7 @@ "variableNames": [ { "name": "success", + "nativeSrc": "13495:7:1", "nodeType": "YulIdentifier", "src": "13495:7:1" } @@ -11736,6 +12336,7 @@ } ] }, + "nativeSrc": "13439:82:1", "nodeType": "YulCase", "src": "13439:82:1", "value": "default" @@ -11745,29 +12346,34 @@ "arguments": [ { "name": "slength", + "nativeSrc": "11418:7:1", "nodeType": "YulIdentifier", "src": "11418:7:1" }, { "name": "mlength", + "nativeSrc": "11427:7:1", "nodeType": "YulIdentifier", "src": "11427:7:1" } ], "functionName": { "name": "eq", + "nativeSrc": "11415:2:1", "nodeType": "YulIdentifier", "src": "11415:2:1" }, + "nativeSrc": "11415:20:1", "nodeType": "YulFunctionCall", "src": "11415:20:1" }, + "nativeSrc": "11408:2113:1", "nodeType": "YulSwitch", "src": "11408:2113:1" } ] }, - "evmVersion": "london", + "evmVersion": "paris", "externalReferences": [ { "declaration": 748, @@ -11971,7 +12577,8 @@ "name": "Bytes", "nameLocation": "419:5:1", "scope": 763, - "usedErrors": [] + "usedErrors": [], + "usedEvents": [] } ], "license": "MIT" diff --git a/packages/starksheet-solidity/out/Evmsheet.sol/Evmsheet.json b/packages/starksheet-solidity/out/Evmsheet.sol/Evmsheet.json index 7068bc9a..c57c943f 100644 --- a/packages/starksheet-solidity/out/Evmsheet.sol/Evmsheet.json +++ b/packages/starksheet-solidity/out/Evmsheet.sol/Evmsheet.json @@ -209,16 +209,27 @@ "outputs": [], "stateMutability": "nonpayable", "type": "function" + }, + { + "inputs": [], + "name": "withdraw", + "outputs": [], + "stateMutability": "nonpayable", + "type": "function" + }, + { + "stateMutability": "payable", + "type": "receive" } ], "bytecode": { - "object": "0x608060405234801561001057600080fd5b50604051612ed9380380612ed983398101604081905261002f916100b1565b61003833610061565b600280546001600160a01b0319166001600160a01b0393909316929092179091556001556100eb565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b600080604083850312156100c457600080fd5b82516001600160a01b03811681146100db57600080fd5b6020939093015192949293505050565b612ddf806100fa6000396000f3fe608060405260043610620000a95760003560e01c80638da5cb5b116200006c5780638da5cb5b146200016d578063ab2fa65a146200018d578063ae28505e14620001b4578063c56c4cf114620001d9578063f2fde38b14620001fb578063f52be2a2146200022057600080fd5b806303fb31e814620000ae5780631164c83d14620000d5578063145e414714620000ec5780635787cacb146200012e578063715018a61462000155575b600080fd5b348015620000bb57600080fd5b50620000d3620000cd36600462000778565b62000247565b005b620000d3620000e6366004620007e9565b62000273565b348015620000f957600080fd5b50620001116200010b36600462000864565b620004b2565b6040516001600160a01b0390911681526020015b60405180910390f35b3480156200013b57600080fd5b50620001466200054f565b60405162000125919062000891565b3480156200016257600080fd5b50620000d3620005b3565b3480156200017a57600080fd5b506000546001600160a01b031662000111565b3480156200019a57600080fd5b50620001a5620005cb565b604051620001259190620008e0565b348015620001c157600080fd5b5062000111620001d336600462000930565b620005f7565b348015620001e657600080fd5b5060025462000111906001600160a01b031681565b3480156200020857600080fd5b50620000d36200021a36600462000778565b62000622565b3480156200022d57600080fd5b506200023860015481565b60405190815260200162000125565b62000251620006a1565b600280546001600160a01b0319166001600160a01b0392909216919091179055565b60015434146200029d5760405163723a79e360e11b81523460048201526024015b60405180910390fd5b600060405180602001620002b1906200074d565b6020820181038252601f19601f8201166040525090506000828251602084016000f56002546040516356d3163d60e01b81526001600160a01b0391821660048201529192508216906356d3163d90602401600060405180830381600087803b1580156200031d57600080fd5b505af115801562000332573d6000803e3d6000fd5b505060405163c47f002760e01b81526001600160a01b038416925063c47f0027915062000366908a908a906004016200094a565b600060405180830381600087803b1580156200038157600080fd5b505af115801562000396573d6000803e3d6000fd5b5050604051635c26412360e11b81526001600160a01b038416925063b84c82469150620003ca90889088906004016200094a565b600060405180830381600087803b158015620003e557600080fd5b505af1158015620003fa573d6000803e3d6000fd5b505060405163f2fde38b60e01b81523260048201526001600160a01b038416925063f2fde38b9150602401600060405180830381600087803b1580156200044057600080fd5b505af115801562000455573d6000803e3d6000fd5b5050600380546001810182556000919091527fc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b0180546001600160a01b0319166001600160a01b0394909416939093179092555050505050505050565b600060ff60f81b838360405180602001620004cd906200074d565b6020820181038252601f19601f82011660405250805190602001206040516020016200053094939291906001600160f81b031994909416845260609290921b6bffffffffffffffffffffffff191660018401526015830152603582015260550190565b60408051601f1981840301815291905280516020909101209392505050565b60606003805480602002602001604051908101604052809291908181526020018280548015620005a957602002820191906000526020600020905b81546001600160a01b031681526001909101906020018083116200058a575b5050505050905090565b620005bd620006a1565b620005c96000620006fd565b565b606060405180602001620005df906200074d565b601f1982820381018352601f90910116604052919050565b600381815481106200060857600080fd5b6000918252602090912001546001600160a01b0316905081565b6200062c620006a1565b6001600160a01b038116620006935760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b606482015260840162000294565b6200069e81620006fd565b50565b6000546001600160a01b03163314620005c95760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015260640162000294565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b612430806200097a83390190565b80356001600160a01b03811681146200077357600080fd5b919050565b6000602082840312156200078b57600080fd5b62000796826200075b565b9392505050565b60008083601f840112620007b057600080fd5b50813567ffffffffffffffff811115620007c957600080fd5b602083019150836020828501011115620007e257600080fd5b9250929050565b6000806000806000606086880312156200080257600080fd5b853567ffffffffffffffff808211156200081b57600080fd5b6200082989838a016200079d565b909750955060208801359150808211156200084357600080fd5b5062000852888289016200079d565b96999598509660400135949350505050565b600080604083850312156200087857600080fd5b62000883836200075b565b946020939093013593505050565b6020808252825182820181905260009190848201906040850190845b81811015620008d45783516001600160a01b031683529284019291840191600101620008ad565b50909695505050505050565b600060208083528351808285015260005b818110156200090f57858101830151858201604001528201620008f1565b506000604082860101526040601f19601f8301168501019250505092915050565b6000602082840312156200094357600080fd5b5035919050565b60208152816020820152818360408301376000818301604090810191909152601f909201601f1916010191905056fe60806040523480156200001157600080fd5b50604051806040016040528060078152602001660536865657420360cc1b815250604051806040016040528060048152602001630534854360e41b81525062000069620000636200008f60201b60201c565b62000093565b600162000077838262000188565b50600262000086828262000188565b50505062000254565b3390565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b634e487b7160e01b600052604160045260246000fd5b600181811c908216806200010e57607f821691505b6020821081036200012f57634e487b7160e01b600052602260045260246000fd5b50919050565b601f8211156200018357600081815260208120601f850160051c810160208610156200015e5750805b601f850160051c820191505b818110156200017f578281556001016200016a565b5050505b505050565b81516001600160401b03811115620001a457620001a4620000e3565b620001bc81620001b58454620000f9565b8462000135565b602080601f831160018114620001f45760008415620001db5750858301515b600019600386901b1c1916600185901b1785556200017f565b600085815260208120601f198616915b82811015620002255788860151825594840194600190910190840162000204565b5085821015620002445787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b6121cc80620002646000396000f3fe608060405234801561001057600080fd5b50600436106102275760003560e01c8063715018a611610130578063b85d8b85116100b8578063cf0983981161007c578063cf09839814610512578063cfbe95d814610535578063df4ca20614610556578063e985e9c514610576578063f2fde38b146105a457600080fd5b8063b85d8b85146104a4578063b88d4fde146104ce578063b8c368ec146104e1578063c47f0027146104ec578063c87b56dd146104ff57600080fd5b806395d89b41116100ff57806395d89b4114610439578063a22cb46514610441578063b46ebb1214610454578063b6d658e114610467578063b84c82461461049157600080fd5b8063715018a6146103fa578063768d5029146104025780638ada6b0f146104155780638da5cb5b1461042857600080fd5b80631b06443c116101b35780634f6ccce7116101825780634f6ccce71461038157806356d3163d146103a15780636352211e146103b45780636a0abc74146103c757806370a08231146103e757600080fd5b80631b06443c14610335578063206848f61461034857806323b872dd1461035b57806342842e0e1461036e57600080fd5b8063081812fc116101fa578063081812fc146102a1578063095ea7b3146102e2578063172b9eed146102f757806318160ddd1461030a5780631941fd141461031357600080fd5b806301ffc9a71461022c57806302f3c4c91461025457806306fdde03146102745780630715a24a1461027c575b600080fd5b61023f61023a36600461176a565b6105b7565b60405190151581526020015b60405180910390f35b610267610262366004611861565b610609565b60405161024b9190611951565b610267610638565b6102936fffffffffffffffffffffffffffffffff81565b60405190815260200161024b565b6102ca6102af366004611964565b6005602052600090815260409020546001600160a01b031681565b6040516001600160a01b03909116815260200161024b565b6102f56102f036600461197d565b6106c6565b005b6102676103053660046119a9565b6107ad565b61029360075481565b610326610321366004611964565b610875565b60405161024b939291906119de565b6102ca610343366004611a0e565b61092a565b610326610356366004611964565b6109e3565b6102f5610369366004611a2b565b610ae1565b6102f561037c366004611a2b565b610ca8565b61029361038f366004611964565b60086020526000908152604090205481565b6102f56103af366004611a0e565b610da0565b6102ca6103c2366004611964565b610dca565b6103da6103d53660046119a9565b610e1c565b60405161024b9190611a6c565b6102936103f5366004611a0e565b610e60565b6102f5610ec3565b6102f5610410366004611af9565b610ed7565b6009546102ca906001600160a01b031681565b6000546001600160a01b03166102ca565b610267611035565b6102f561044f366004611b63565b611042565b610267610462366004611964565b6110ae565b61047a610475366004611964565b611258565b60408051921515835260208301919091520161024b565b6102f561049f366004611ba1565b611275565b6104b56104b2366004611964565b90565b6040516001600160e01b0319909116815260200161024b565b6102f56104dc366004611be3565b6112c6565b6102ca600160801b81565b6102f56104fa366004611ba1565b6113ae565b61026761050d366004611964565b6113ff565b61023f610520366004611a0e565b600160801b6001600160a01b03919091161090565b61023f610543366004611861565b516001600160a01b0316600160801b1490565b610569610564366004611964565b6114c9565b60405161024b9190611c16565b61023f610584366004611c4d565b600660209081526000928352604080842090915290825290205460ff1681565b6102f56105b2366004611a0e565b611526565b60006301ffc9a760e01b6001600160e01b0319831614806105e857506380ac58cd60e01b6001600160e01b03198316145b806106035750635b5e139f60e01b6001600160e01b03198316145b92915050565b6060816020015160405160200161062291815260200190565b6040516020818303038152906040529050919050565b6001805461064590611c7b565b80601f016020809104026020016040519081016040528092919081815260200182805461067190611c7b565b80156106be5780601f10610693576101008083540402835291602001916106be565b820191906000526020600020905b8154815290600101906020018083116106a157829003601f168201915b505050505081565b6000818152600360205260409020546001600160a01b03163381148061070f57506001600160a01b038116600090815260066020908152604080832033845290915290205460ff165b6107515760405162461bcd60e51b815260206004820152600e60248201526d1393d517d055551213d49256915160921b60448201526064015b60405180910390fd5b60008281526005602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b606060006107ba83610e1c565b9050606060005b825181101561086d576000806107ef8584815181106107e2576107e2611cb5565b6020026020010151611258565b9150915081156108335783610803826110ae565b61080c90611ccb565b60405160200161081d929190611cef565b6040516020818303038152906040529350610858565b6040516108469085908390602001611cef565b60405160208183030381529060405293505b5050808061086590611d27565b9150506107c1565b509392505050565b600a602052600090815260409020805460018201546002830180546001600160a01b039093169391926108a790611c7b565b80601f01602080910402602001604051908101604052809291908181526020018280546108d390611c7b565b80156109205780601f106108f557610100808354040283529160200191610920565b820191906000526020600020905b81548152906001019060200180831161090357829003601f168201915b5050505050905083565b6000600160801b6001600160a01b03831610156109da576000610955836001600160a01b03166110ae565b604051632d737e4960e21b815290915073__$a792e50881dbcbffce7826062cdb0978aa$__9063b5cdf92490610992908490600090600401611d40565b602060405180830381865af41580156109af573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906109d39190611d62565b9392505050565b5090565b919050565b60008181526003602052604081205481906060906001600160a01b0316610a1057600160801b9250610a2b565b6000848152600a60205260409020546001600160a01b031692505b6000848152600a60205260409020600181015460029091018054859291908190610a5490611c7b565b80601f0160208091040260200160405190810160405280929190818152602001828054610a8090611c7b565b8015610acd5780601f10610aa257610100808354040283529160200191610acd565b820191906000526020600020905b815481529060010190602001808311610ab057829003601f168201915b505050505090509250925092509193909250565b6000818152600360205260409020546001600160a01b03848116911614610b375760405162461bcd60e51b815260206004820152600a60248201526957524f4e475f46524f4d60b01b6044820152606401610748565b6001600160a01b038216610b815760405162461bcd60e51b81526020600482015260116024820152701253959053125117d49150d25412515395607a1b6044820152606401610748565b336001600160a01b0384161480610bbb57506001600160a01b038316600090815260066020908152604080832033845290915290205460ff165b80610bdc57506000818152600560205260409020546001600160a01b031633145b610c195760405162461bcd60e51b815260206004820152600e60248201526d1393d517d055551213d49256915160921b6044820152606401610748565b6001600160a01b0380841660008181526004602090815260408083208054600019019055938616808352848320805460010190558583526003825284832080546001600160a01b03199081168317909155600590925284832080549092169091559251849392917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b610cb3838383610ae1565b6001600160a01b0382163b1580610d5c5750604051630a85bd0160e11b8082523360048301526001600160a01b03858116602484015260448301849052608060648401526000608484015290919084169063150b7a029060a4016020604051808303816000875af1158015610d2c573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610d509190611d7b565b6001600160e01b031916145b610d9b5760405162461bcd60e51b815260206004820152601060248201526f155394d0519157d49150d2541251539560821b6044820152606401610748565b505050565b610da861159f565b600980546001600160a01b0319166001600160a01b0392909216919091179055565b6000818152600360205260409020546001600160a01b0316806109de5760405162461bcd60e51b815260206004820152600a6024820152691393d517d3525395115160b21b6044820152606401610748565b60608082516040519150602081048252602082016020850160005b83811015610e4f578181015183820152602001610e37565b505050810160200160405292915050565b60006001600160a01b038216610ea75760405162461bcd60e51b815260206004820152600c60248201526b5a45524f5f4144445245535360a01b6044820152606401610748565b506001600160a01b031660009081526004602052604090205490565b610ecb61159f565b610ed560006115f9565b565b6000858152600360205260409020546001600160a01b0316610f2f57610efd3286611649565b60078054600090815260086020526040812087905581546001929190610f24908490611d98565b90915550610f889050565b6000858152600360205260409020546001600160a01b03163214610f8857600085815260036020526040908190205490516324f3f02560e21b81526001600160a01b039091166004820152326024820152604401610748565b6040518060600160405280856001600160a01b0316815260200184815260200183838080601f0160208091040260200160405190810160405280939291908181526020018383808284376000920182905250939094525050878152600a6020908152604091829020845181546001600160a01b0319166001600160a01b0390911617815590840151600182015590830151909150600282019061102b9082611df9565b5050505050505050565b6002805461064590611c7b565b3360008181526006602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b6000818152600a6020908152604080832081516060818101845282546001600160a01b0316825260018301549482019490945260028201805494959491938401916110f890611c7b565b80601f016020809104026020016040519081016040528092919081815260200182805461112490611c7b565b80156111715780601f1061114657610100808354040283529160200191611171565b820191906000526020600020905b81548152906001019060200180831161115457829003601f168201915b505050505081525050905061119381516001600160a01b0316600160801b1490565b156111a1576109d381610609565b60006111b0826000015161092a565b905060006111bf836020015190565b905060006111d084604001516107ad565b90506000836001600160a01b031683836040516020016111f1929190611eb9565b60408051601f198184030181529082905261120b91611eea565b600060405180830381855afa9150503d8060008114611246576040519150601f19603f3d011682016040523d82523d6000602084013e61124b565b606091505b5098975050505050505050565b600080611266600284611f06565b60019081149493901c92915050565b61127d61159f565b7f8dca0271872d00b3de3abafca544c52fcd7d512dd852c9894fa2c118ac759a93600283836040516112b193929190611fce565b60405180910390a16002610d9b828483611ffe565b6112d1858585610ae1565b6001600160a01b0384163b15806113685750604051630a85bd0160e11b808252906001600160a01b0386169063150b7a02906113199033908a908990899089906004016120be565b6020604051808303816000875af1158015611338573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061135c9190611d7b565b6001600160e01b031916145b6113a75760405162461bcd60e51b815260206004820152601060248201526f155394d0519157d49150d2541251539560821b6044820152606401610748565b5050505050565b6113b661159f565b7fb65b7b5ea384affd30f77f842e057d29dd1b13f133adf69a724a8105b164ab75600183836040516113ea93929190611fce565b60405180910390a16001610d9b828483611ffe565b6000818152600360205260409020546060906001600160a01b03168061143b57604051630243d1a960e21b815260048101849052602401610748565b6000611446846110ae565b6009546040516328de0f2f60e01b81529192506001600160a01b0316906328de0f2f9061147c90879085906001906004016120fd565b600060405180830381865afa158015611499573d6000803e3d6000fd5b505050506040513d6000823e601f3d908101601f191682016040526114c19190810190612128565b949350505050565b604080516060808201835260008083526020830181905292820152906114ee836110ae565b6040805160608101825285815260009586526003602090815295829020546001600160a01b0316958101959095528401525090919050565b61152e61159f565b6001600160a01b0381166115935760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610748565b61159c816115f9565b50565b6000546001600160a01b03163314610ed55760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610748565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b6001600160a01b0382166116935760405162461bcd60e51b81526020600482015260116024820152701253959053125117d49150d25412515395607a1b6044820152606401610748565b6000818152600360205260409020546001600160a01b0316156116e95760405162461bcd60e51b815260206004820152600e60248201526d1053149150511657d3525395115160921b6044820152606401610748565b6001600160a01b038216600081815260046020908152604080832080546001019055848352600390915280822080546001600160a01b0319168417905551839291907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b6001600160e01b03198116811461159c57600080fd5b60006020828403121561177c57600080fd5b81356109d381611754565b634e487b7160e01b600052604160045260246000fd5b604051601f8201601f1916810167ffffffffffffffff811182821017156117c6576117c6611787565b604052919050565b6001600160a01b038116811461159c57600080fd5b600067ffffffffffffffff8211156117fd576117fd611787565b50601f01601f191660200190565b600082601f83011261181c57600080fd5b813561182f61182a826117e3565b61179d565b81815284602083860101111561184457600080fd5b816020850160208301376000918101602001919091529392505050565b60006020828403121561187357600080fd5b813567ffffffffffffffff8082111561188b57600080fd5b908301906060828603121561189f57600080fd5b6040516060810181811083821117156118ba576118ba611787565b60405282356118c8816117ce565b8152602083810135908201526040830135828111156118e657600080fd5b6118f28782860161180b565b60408301525095945050505050565b60005b8381101561191c578181015183820152602001611904565b50506000910152565b6000815180845261193d816020860160208601611901565b601f01601f19169290920160200192915050565b6020815260006109d36020830184611925565b60006020828403121561197657600080fd5b5035919050565b6000806040838503121561199057600080fd5b823561199b816117ce565b946020939093013593505050565b6000602082840312156119bb57600080fd5b813567ffffffffffffffff8111156119d257600080fd5b6114c18482850161180b565b60018060a01b0384168152826020820152606060408201526000611a056060830184611925565b95945050505050565b600060208284031215611a2057600080fd5b81356109d3816117ce565b600080600060608486031215611a4057600080fd5b8335611a4b816117ce565b92506020840135611a5b816117ce565b929592945050506040919091013590565b6020808252825182820181905260009190848201906040850190845b81811015611aa457835183529284019291840191600101611a88565b50909695505050505050565b60008083601f840112611ac257600080fd5b50813567ffffffffffffffff811115611ada57600080fd5b602083019150836020828501011115611af257600080fd5b9250929050565b600080600080600060808688031215611b1157600080fd5b853594506020860135611b23816117ce565b935060408601359250606086013567ffffffffffffffff811115611b4657600080fd5b611b5288828901611ab0565b969995985093965092949392505050565b60008060408385031215611b7657600080fd5b8235611b81816117ce565b915060208301358015158114611b9657600080fd5b809150509250929050565b60008060208385031215611bb457600080fd5b823567ffffffffffffffff811115611bcb57600080fd5b611bd785828601611ab0565b90969095509350505050565b600080600080600060808688031215611bfb57600080fd5b8535611c06816117ce565b94506020860135611b23816117ce565b602081528151602082015260018060a01b036020830151166040820152600060408301516060808401526114c16080840182611925565b60008060408385031215611c6057600080fd5b8235611c6b816117ce565b91506020830135611b96816117ce565b600181811c90821680611c8f57607f821691505b602082108103611caf57634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052603260045260246000fd5b80516020808301519190811015611caf5760001960209190910360031b1b16919050565b60008351611d01818460208801611901565b9190910191825250602001919050565b634e487b7160e01b600052601160045260246000fd5b600060018201611d3957611d39611d11565b5060010190565b604081526000611d536040830185611925565b90508260208301529392505050565b600060208284031215611d7457600080fd5b5051919050565b600060208284031215611d8d57600080fd5b81516109d381611754565b8082018082111561060357610603611d11565b601f821115610d9b57600081815260208120601f850160051c81016020861015611dd25750805b601f850160051c820191505b81811015611df157828155600101611dde565b505050505050565b815167ffffffffffffffff811115611e1357611e13611787565b611e2781611e218454611c7b565b84611dab565b602080601f831160018114611e5c5760008415611e445750858301515b600019600386901b1c1916600185901b178555611df1565b600085815260208120601f198616915b82811015611e8b57888601518255948401946001909101908401611e6c565b5085821015611ea95787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b6001600160e01b0319831681528151600090611edc816004850160208701611901565b919091016004019392505050565b60008251611efc818460208701611901565b9190910192915050565b600082611f2357634e487b7160e01b600052601260045260246000fd5b500690565b60008154611f3581611c7b565b808552602060018381168015611f525760018114611f6c57611f9a565b60ff1985168884015283151560051b880183019550611f9a565b866000528260002060005b85811015611f925781548a8201860152908301908401611f77565b890184019650505b505050505092915050565b81835281816020850137506000828201602090810191909152601f909101601f19169091010190565b604081526000611fe16040830186611f28565b8281036020840152611ff4818587611fa5565b9695505050505050565b67ffffffffffffffff83111561201657612016611787565b61202a836120248354611c7b565b83611dab565b6000601f84116001811461205e57600085156120465750838201355b600019600387901b1c1916600186901b1783556113a7565b600083815260209020601f19861690835b8281101561208f578685013582556020948501946001909201910161206f565b50868210156120ac5760001960f88860031b161c19848701351681555b505060018560011b0183555050505050565b6001600160a01b03868116825285166020820152604081018490526080606082018190526000906120f29083018486611fa5565b979650505050505050565b8381526060602082015260006121166060830185611925565b8281036040840152611ff48185611f28565b60006020828403121561213a57600080fd5b815167ffffffffffffffff81111561215157600080fd5b8201601f8101841361216257600080fd5b805161217061182a826117e3565b81815285602083850101111561218557600080fd5b611a0582602083016020860161190156fea26469706673582212203fc548aa4f22e6f4c01757ba3f2e0383630418b3d17601758718ab19a4d9918d64736f6c63430008110033a26469706673582212207932e8c793f9a96d9606a8907a6671f54c0fb1ed5a763048e13b429274e7706c64736f6c63430008110033", - "sourceMap": "162:1525:28:-:0;;;709:116;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;936:32:20;719:10:21;936:18:20;:32::i;:::-;764:15:28;:26;;-1:-1:-1;;;;;;764:26:28;-1:-1:-1;;;;;764:26:28;;;;;;;;;;;-1:-1:-1;800:18:28;162:1525;;2433:187:20;2506:16;2525:6;;-1:-1:-1;;;;;2541:17:20;;;-1:-1:-1;;;;;;2541:17:20;;;;;;2573:40;;2525:6;;;;;;;2573:40;;2506:16;2573:40;2496:124;2433:187;:::o;14:351:36:-;93:6;101;154:2;142:9;133:7;129:23;125:32;122:52;;;170:1;167;160:12;122:52;196:16;;-1:-1:-1;;;;;241:31:36;;231:42;;221:70;;287:1;284;277:12;221:70;355:2;340:18;;;;334:25;310:5;;334:25;;-1:-1:-1;;;14:351:36:o;:::-;162:1525:28;;;;;;", + "object": "0x608060405234801561001057600080fd5b50604051612fa3380380612fa383398101604081905261002f916100b1565b61003833610061565b600280546001600160a01b0319166001600160a01b0393909316929092179091556001556100eb565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b600080604083850312156100c457600080fd5b82516001600160a01b03811681146100db57600080fd5b6020939093015192949293505050565b612ea9806100fa6000396000f3fe608060405260043610620000b95760003560e01c80638da5cb5b116200006c5780638da5cb5b146200019d578063ab2fa65a14620001bd578063ae28505e14620001e4578063c56c4cf11462000209578063f2fde38b146200022b578063f52be2a2146200025057600080fd5b806303fb31e814620000c65780631164c83d14620000ed578063145e414714620001045780633ccfd60b14620001465780635787cacb146200015e578063715018a6146200018557600080fd5b36620000c157005b600080fd5b348015620000d357600080fd5b50620000eb620000e536600462000842565b62000277565b005b620000eb620000fe366004620008b3565b620002a3565b3480156200011157600080fd5b5062000129620001233660046200092e565b620004e2565b6040516001600160a01b0390911681526020015b60405180910390f35b3480156200015357600080fd5b50620000eb6200057f565b3480156200016b57600080fd5b50620001766200061c565b6040516200013d91906200095b565b3480156200019257600080fd5b50620000eb62000680565b348015620001aa57600080fd5b506000546001600160a01b031662000129565b348015620001ca57600080fd5b50620001d562000698565b6040516200013d9190620009aa565b348015620001f157600080fd5b506200012962000203366004620009fa565b620006c4565b3480156200021657600080fd5b5060025462000129906001600160a01b031681565b3480156200023857600080fd5b50620000eb6200024a36600462000842565b620006ef565b3480156200025d57600080fd5b506200026860015481565b6040519081526020016200013d565b620002816200076b565b600280546001600160a01b0319166001600160a01b0392909216919091179055565b6001543414620002cd5760405163723a79e360e11b81523460048201526024015b60405180910390fd5b600060405180602001620002e19062000817565b6020820181038252601f19601f8201166040525090506000828251602084016000f56002546040516356d3163d60e01b81526001600160a01b0391821660048201529192508216906356d3163d90602401600060405180830381600087803b1580156200034d57600080fd5b505af115801562000362573d6000803e3d6000fd5b505060405163c47f002760e01b81526001600160a01b038416925063c47f0027915062000396908a908a9060040162000a14565b600060405180830381600087803b158015620003b157600080fd5b505af1158015620003c6573d6000803e3d6000fd5b5050604051635c26412360e11b81526001600160a01b038416925063b84c82469150620003fa908890889060040162000a14565b600060405180830381600087803b1580156200041557600080fd5b505af11580156200042a573d6000803e3d6000fd5b505060405163f2fde38b60e01b81523260048201526001600160a01b038416925063f2fde38b9150602401600060405180830381600087803b1580156200047057600080fd5b505af115801562000485573d6000803e3d6000fd5b5050600380546001810182556000919091527fc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b0180546001600160a01b0319166001600160a01b0394909416939093179092555050505050505050565b600060ff60f81b838360405180602001620004fd9062000817565b6020820181038252601f19601f82011660405250805190602001206040516020016200056094939291906001600160f81b031994909416845260609290921b6bffffffffffffffffffffffff191660018401526015830152603582015260550190565b60408051601f1981840301815291905280516020909101209392505050565b620005896200076b565b604051600090339047908381818185875af1925050503d8060008114620005cd576040519150601f19603f3d011682016040523d82523d6000602084013e620005d2565b606091505b5050905080620006195760405162461bcd60e51b815260206004820152601160248201527015da5d1a191c985dd85b0819985a5b1959607a1b6044820152606401620002c4565b50565b606060038054806020026020016040519081016040528092919081815260200182805480156200067657602002820191906000526020600020905b81546001600160a01b0316815260019091019060200180831162000657575b5050505050905090565b6200068a6200076b565b620006966000620007c7565b565b606060405180602001620006ac9062000817565b601f1982820381018352601f90910116604052919050565b60038181548110620006d557600080fd5b6000918252602090912001546001600160a01b0316905081565b620006f96200076b565b6001600160a01b038116620007605760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401620002c4565b6200061981620007c7565b6000546001600160a01b03163314620006965760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401620002c4565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b6124308062000a4483390190565b80356001600160a01b03811681146200083d57600080fd5b919050565b6000602082840312156200085557600080fd5b620008608262000825565b9392505050565b60008083601f8401126200087a57600080fd5b50813567ffffffffffffffff8111156200089357600080fd5b602083019150836020828501011115620008ac57600080fd5b9250929050565b600080600080600060608688031215620008cc57600080fd5b853567ffffffffffffffff80821115620008e557600080fd5b620008f389838a0162000867565b909750955060208801359150808211156200090d57600080fd5b506200091c8882890162000867565b96999598509660400135949350505050565b600080604083850312156200094257600080fd5b6200094d8362000825565b946020939093013593505050565b6020808252825182820181905260009190848201906040850190845b818110156200099e5783516001600160a01b03168352928401929184019160010162000977565b50909695505050505050565b600060208083528351808285015260005b81811015620009d957858101830151858201604001528201620009bb565b506000604082860101526040601f19601f8301168501019250505092915050565b60006020828403121562000a0d57600080fd5b5035919050565b60208152816020820152818360408301376000818301604090810191909152601f909201601f1916010191905056fe60806040523480156200001157600080fd5b50604051806040016040528060078152602001660536865657420360cc1b815250604051806040016040528060048152602001630534854360e41b81525062000069620000636200008f60201b60201c565b62000093565b600162000077838262000188565b50600262000086828262000188565b50505062000254565b3390565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b634e487b7160e01b600052604160045260246000fd5b600181811c908216806200010e57607f821691505b6020821081036200012f57634e487b7160e01b600052602260045260246000fd5b50919050565b601f8211156200018357600081815260208120601f850160051c810160208610156200015e5750805b601f850160051c820191505b818110156200017f578281556001016200016a565b5050505b505050565b81516001600160401b03811115620001a457620001a4620000e3565b620001bc81620001b58454620000f9565b8462000135565b602080601f831160018114620001f45760008415620001db5750858301515b600019600386901b1c1916600185901b1785556200017f565b600085815260208120601f198616915b82811015620002255788860151825594840194600190910190840162000204565b5085821015620002445787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b6121cc80620002646000396000f3fe608060405234801561001057600080fd5b50600436106102275760003560e01c8063715018a611610130578063b85d8b85116100b8578063cf0983981161007c578063cf09839814610512578063cfbe95d814610535578063df4ca20614610556578063e985e9c514610576578063f2fde38b146105a457600080fd5b8063b85d8b85146104a4578063b88d4fde146104ce578063b8c368ec146104e1578063c47f0027146104ec578063c87b56dd146104ff57600080fd5b806395d89b41116100ff57806395d89b4114610439578063a22cb46514610441578063b46ebb1214610454578063b6d658e114610467578063b84c82461461049157600080fd5b8063715018a6146103fa578063768d5029146104025780638ada6b0f146104155780638da5cb5b1461042857600080fd5b80631b06443c116101b35780634f6ccce7116101825780634f6ccce71461038157806356d3163d146103a15780636352211e146103b45780636a0abc74146103c757806370a08231146103e757600080fd5b80631b06443c14610335578063206848f61461034857806323b872dd1461035b57806342842e0e1461036e57600080fd5b8063081812fc116101fa578063081812fc146102a1578063095ea7b3146102e2578063172b9eed146102f757806318160ddd1461030a5780631941fd141461031357600080fd5b806301ffc9a71461022c57806302f3c4c91461025457806306fdde03146102745780630715a24a1461027c575b600080fd5b61023f61023a36600461176a565b6105b7565b60405190151581526020015b60405180910390f35b610267610262366004611861565b610609565b60405161024b9190611951565b610267610638565b6102936fffffffffffffffffffffffffffffffff81565b60405190815260200161024b565b6102ca6102af366004611964565b6005602052600090815260409020546001600160a01b031681565b6040516001600160a01b03909116815260200161024b565b6102f56102f036600461197d565b6106c6565b005b6102676103053660046119a9565b6107ad565b61029360075481565b610326610321366004611964565b610875565b60405161024b939291906119de565b6102ca610343366004611a0e565b61092a565b610326610356366004611964565b6109e3565b6102f5610369366004611a2b565b610ae1565b6102f561037c366004611a2b565b610ca8565b61029361038f366004611964565b60086020526000908152604090205481565b6102f56103af366004611a0e565b610da0565b6102ca6103c2366004611964565b610dca565b6103da6103d53660046119a9565b610e1c565b60405161024b9190611a6c565b6102936103f5366004611a0e565b610e60565b6102f5610ec3565b6102f5610410366004611af9565b610ed7565b6009546102ca906001600160a01b031681565b6000546001600160a01b03166102ca565b610267611035565b6102f561044f366004611b63565b611042565b610267610462366004611964565b6110ae565b61047a610475366004611964565b611258565b60408051921515835260208301919091520161024b565b6102f561049f366004611ba1565b611275565b6104b56104b2366004611964565b90565b6040516001600160e01b0319909116815260200161024b565b6102f56104dc366004611be3565b6112c6565b6102ca600160801b81565b6102f56104fa366004611ba1565b6113ae565b61026761050d366004611964565b6113ff565b61023f610520366004611a0e565b600160801b6001600160a01b03919091161090565b61023f610543366004611861565b516001600160a01b0316600160801b1490565b610569610564366004611964565b6114c9565b60405161024b9190611c16565b61023f610584366004611c4d565b600660209081526000928352604080842090915290825290205460ff1681565b6102f56105b2366004611a0e565b611526565b60006301ffc9a760e01b6001600160e01b0319831614806105e857506380ac58cd60e01b6001600160e01b03198316145b806106035750635b5e139f60e01b6001600160e01b03198316145b92915050565b6060816020015160405160200161062291815260200190565b6040516020818303038152906040529050919050565b6001805461064590611c7b565b80601f016020809104026020016040519081016040528092919081815260200182805461067190611c7b565b80156106be5780601f10610693576101008083540402835291602001916106be565b820191906000526020600020905b8154815290600101906020018083116106a157829003601f168201915b505050505081565b6000818152600360205260409020546001600160a01b03163381148061070f57506001600160a01b038116600090815260066020908152604080832033845290915290205460ff165b6107515760405162461bcd60e51b815260206004820152600e60248201526d1393d517d055551213d49256915160921b60448201526064015b60405180910390fd5b60008281526005602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b606060006107ba83610e1c565b9050606060005b825181101561086d576000806107ef8584815181106107e2576107e2611cb5565b6020026020010151611258565b9150915081156108335783610803826110ae565b61080c90611ccb565b60405160200161081d929190611cef565b6040516020818303038152906040529350610858565b6040516108469085908390602001611cef565b60405160208183030381529060405293505b5050808061086590611d27565b9150506107c1565b509392505050565b600a602052600090815260409020805460018201546002830180546001600160a01b039093169391926108a790611c7b565b80601f01602080910402602001604051908101604052809291908181526020018280546108d390611c7b565b80156109205780601f106108f557610100808354040283529160200191610920565b820191906000526020600020905b81548152906001019060200180831161090357829003601f168201915b5050505050905083565b6000600160801b6001600160a01b03831610156109da576000610955836001600160a01b03166110ae565b604051632d737e4960e21b815290915073__$a792e50881dbcbffce7826062cdb0978aa$__9063b5cdf92490610992908490600090600401611d40565b602060405180830381865af41580156109af573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906109d39190611d62565b9392505050565b5090565b919050565b60008181526003602052604081205481906060906001600160a01b0316610a1057600160801b9250610a2b565b6000848152600a60205260409020546001600160a01b031692505b6000848152600a60205260409020600181015460029091018054859291908190610a5490611c7b565b80601f0160208091040260200160405190810160405280929190818152602001828054610a8090611c7b565b8015610acd5780601f10610aa257610100808354040283529160200191610acd565b820191906000526020600020905b815481529060010190602001808311610ab057829003601f168201915b505050505090509250925092509193909250565b6000818152600360205260409020546001600160a01b03848116911614610b375760405162461bcd60e51b815260206004820152600a60248201526957524f4e475f46524f4d60b01b6044820152606401610748565b6001600160a01b038216610b815760405162461bcd60e51b81526020600482015260116024820152701253959053125117d49150d25412515395607a1b6044820152606401610748565b336001600160a01b0384161480610bbb57506001600160a01b038316600090815260066020908152604080832033845290915290205460ff165b80610bdc57506000818152600560205260409020546001600160a01b031633145b610c195760405162461bcd60e51b815260206004820152600e60248201526d1393d517d055551213d49256915160921b6044820152606401610748565b6001600160a01b0380841660008181526004602090815260408083208054600019019055938616808352848320805460010190558583526003825284832080546001600160a01b03199081168317909155600590925284832080549092169091559251849392917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b610cb3838383610ae1565b6001600160a01b0382163b1580610d5c5750604051630a85bd0160e11b8082523360048301526001600160a01b03858116602484015260448301849052608060648401526000608484015290919084169063150b7a029060a4016020604051808303816000875af1158015610d2c573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610d509190611d7b565b6001600160e01b031916145b610d9b5760405162461bcd60e51b815260206004820152601060248201526f155394d0519157d49150d2541251539560821b6044820152606401610748565b505050565b610da861159f565b600980546001600160a01b0319166001600160a01b0392909216919091179055565b6000818152600360205260409020546001600160a01b0316806109de5760405162461bcd60e51b815260206004820152600a6024820152691393d517d3525395115160b21b6044820152606401610748565b60608082516040519150602081048252602082016020850160005b83811015610e4f578181015183820152602001610e37565b505050810160200160405292915050565b60006001600160a01b038216610ea75760405162461bcd60e51b815260206004820152600c60248201526b5a45524f5f4144445245535360a01b6044820152606401610748565b506001600160a01b031660009081526004602052604090205490565b610ecb61159f565b610ed560006115f9565b565b6000858152600360205260409020546001600160a01b0316610f2f57610efd3286611649565b60078054600090815260086020526040812087905581546001929190610f24908490611d98565b90915550610f889050565b6000858152600360205260409020546001600160a01b03163214610f8857600085815260036020526040908190205490516324f3f02560e21b81526001600160a01b039091166004820152326024820152604401610748565b6040518060600160405280856001600160a01b0316815260200184815260200183838080601f0160208091040260200160405190810160405280939291908181526020018383808284376000920182905250939094525050878152600a6020908152604091829020845181546001600160a01b0319166001600160a01b0390911617815590840151600182015590830151909150600282019061102b9082611df9565b5050505050505050565b6002805461064590611c7b565b3360008181526006602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b6000818152600a6020908152604080832081516060818101845282546001600160a01b0316825260018301549482019490945260028201805494959491938401916110f890611c7b565b80601f016020809104026020016040519081016040528092919081815260200182805461112490611c7b565b80156111715780601f1061114657610100808354040283529160200191611171565b820191906000526020600020905b81548152906001019060200180831161115457829003601f168201915b505050505081525050905061119381516001600160a01b0316600160801b1490565b156111a1576109d381610609565b60006111b0826000015161092a565b905060006111bf836020015190565b905060006111d084604001516107ad565b90506000836001600160a01b031683836040516020016111f1929190611eb9565b60408051601f198184030181529082905261120b91611eea565b600060405180830381855afa9150503d8060008114611246576040519150601f19603f3d011682016040523d82523d6000602084013e61124b565b606091505b5098975050505050505050565b600080611266600284611f06565b60019081149493901c92915050565b61127d61159f565b7f8dca0271872d00b3de3abafca544c52fcd7d512dd852c9894fa2c118ac759a93600283836040516112b193929190611fce565b60405180910390a16002610d9b828483611ffe565b6112d1858585610ae1565b6001600160a01b0384163b15806113685750604051630a85bd0160e11b808252906001600160a01b0386169063150b7a02906113199033908a908990899089906004016120be565b6020604051808303816000875af1158015611338573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061135c9190611d7b565b6001600160e01b031916145b6113a75760405162461bcd60e51b815260206004820152601060248201526f155394d0519157d49150d2541251539560821b6044820152606401610748565b5050505050565b6113b661159f565b7fb65b7b5ea384affd30f77f842e057d29dd1b13f133adf69a724a8105b164ab75600183836040516113ea93929190611fce565b60405180910390a16001610d9b828483611ffe565b6000818152600360205260409020546060906001600160a01b03168061143b57604051630243d1a960e21b815260048101849052602401610748565b6000611446846110ae565b6009546040516328de0f2f60e01b81529192506001600160a01b0316906328de0f2f9061147c90879085906001906004016120fd565b600060405180830381865afa158015611499573d6000803e3d6000fd5b505050506040513d6000823e601f3d908101601f191682016040526114c19190810190612128565b949350505050565b604080516060808201835260008083526020830181905292820152906114ee836110ae565b6040805160608101825285815260009586526003602090815295829020546001600160a01b0316958101959095528401525090919050565b61152e61159f565b6001600160a01b0381166115935760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610748565b61159c816115f9565b50565b6000546001600160a01b03163314610ed55760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610748565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b6001600160a01b0382166116935760405162461bcd60e51b81526020600482015260116024820152701253959053125117d49150d25412515395607a1b6044820152606401610748565b6000818152600360205260409020546001600160a01b0316156116e95760405162461bcd60e51b815260206004820152600e60248201526d1053149150511657d3525395115160921b6044820152606401610748565b6001600160a01b038216600081815260046020908152604080832080546001019055848352600390915280822080546001600160a01b0319168417905551839291907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b6001600160e01b03198116811461159c57600080fd5b60006020828403121561177c57600080fd5b81356109d381611754565b634e487b7160e01b600052604160045260246000fd5b604051601f8201601f1916810167ffffffffffffffff811182821017156117c6576117c6611787565b604052919050565b6001600160a01b038116811461159c57600080fd5b600067ffffffffffffffff8211156117fd576117fd611787565b50601f01601f191660200190565b600082601f83011261181c57600080fd5b813561182f61182a826117e3565b61179d565b81815284602083860101111561184457600080fd5b816020850160208301376000918101602001919091529392505050565b60006020828403121561187357600080fd5b813567ffffffffffffffff8082111561188b57600080fd5b908301906060828603121561189f57600080fd5b6040516060810181811083821117156118ba576118ba611787565b60405282356118c8816117ce565b8152602083810135908201526040830135828111156118e657600080fd5b6118f28782860161180b565b60408301525095945050505050565b60005b8381101561191c578181015183820152602001611904565b50506000910152565b6000815180845261193d816020860160208601611901565b601f01601f19169290920160200192915050565b6020815260006109d36020830184611925565b60006020828403121561197657600080fd5b5035919050565b6000806040838503121561199057600080fd5b823561199b816117ce565b946020939093013593505050565b6000602082840312156119bb57600080fd5b813567ffffffffffffffff8111156119d257600080fd5b6114c18482850161180b565b60018060a01b0384168152826020820152606060408201526000611a056060830184611925565b95945050505050565b600060208284031215611a2057600080fd5b81356109d3816117ce565b600080600060608486031215611a4057600080fd5b8335611a4b816117ce565b92506020840135611a5b816117ce565b929592945050506040919091013590565b6020808252825182820181905260009190848201906040850190845b81811015611aa457835183529284019291840191600101611a88565b50909695505050505050565b60008083601f840112611ac257600080fd5b50813567ffffffffffffffff811115611ada57600080fd5b602083019150836020828501011115611af257600080fd5b9250929050565b600080600080600060808688031215611b1157600080fd5b853594506020860135611b23816117ce565b935060408601359250606086013567ffffffffffffffff811115611b4657600080fd5b611b5288828901611ab0565b969995985093965092949392505050565b60008060408385031215611b7657600080fd5b8235611b81816117ce565b915060208301358015158114611b9657600080fd5b809150509250929050565b60008060208385031215611bb457600080fd5b823567ffffffffffffffff811115611bcb57600080fd5b611bd785828601611ab0565b90969095509350505050565b600080600080600060808688031215611bfb57600080fd5b8535611c06816117ce565b94506020860135611b23816117ce565b602081528151602082015260018060a01b036020830151166040820152600060408301516060808401526114c16080840182611925565b60008060408385031215611c6057600080fd5b8235611c6b816117ce565b91506020830135611b96816117ce565b600181811c90821680611c8f57607f821691505b602082108103611caf57634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052603260045260246000fd5b80516020808301519190811015611caf5760001960209190910360031b1b16919050565b60008351611d01818460208801611901565b9190910191825250602001919050565b634e487b7160e01b600052601160045260246000fd5b600060018201611d3957611d39611d11565b5060010190565b604081526000611d536040830185611925565b90508260208301529392505050565b600060208284031215611d7457600080fd5b5051919050565b600060208284031215611d8d57600080fd5b81516109d381611754565b8082018082111561060357610603611d11565b601f821115610d9b57600081815260208120601f850160051c81016020861015611dd25750805b601f850160051c820191505b81811015611df157828155600101611dde565b505050505050565b815167ffffffffffffffff811115611e1357611e13611787565b611e2781611e218454611c7b565b84611dab565b602080601f831160018114611e5c5760008415611e445750858301515b600019600386901b1c1916600185901b178555611df1565b600085815260208120601f198616915b82811015611e8b57888601518255948401946001909101908401611e6c565b5085821015611ea95787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b6001600160e01b0319831681528151600090611edc816004850160208701611901565b919091016004019392505050565b60008251611efc818460208701611901565b9190910192915050565b600082611f2357634e487b7160e01b600052601260045260246000fd5b500690565b60008154611f3581611c7b565b808552602060018381168015611f525760018114611f6c57611f9a565b60ff1985168884015283151560051b880183019550611f9a565b866000528260002060005b85811015611f925781548a8201860152908301908401611f77565b890184019650505b505050505092915050565b81835281816020850137506000828201602090810191909152601f909101601f19169091010190565b604081526000611fe16040830186611f28565b8281036020840152611ff4818587611fa5565b9695505050505050565b67ffffffffffffffff83111561201657612016611787565b61202a836120248354611c7b565b83611dab565b6000601f84116001811461205e57600085156120465750838201355b600019600387901b1c1916600186901b1783556113a7565b600083815260209020601f19861690835b8281101561208f578685013582556020948501946001909201910161206f565b50868210156120ac5760001960f88860031b161c19848701351681555b505060018560011b0183555050505050565b6001600160a01b03868116825285166020820152604081018490526080606082018190526000906120f29083018486611fa5565b979650505050505050565b8381526060602082015260006121166060830185611925565b8281036040840152611ff48185611f28565b60006020828403121561213a57600080fd5b815167ffffffffffffffff81111561215157600080fd5b8201601f8101841361216257600080fd5b805161217061182a826117e3565b81815285602083850101111561218557600080fd5b611a0582602083016020860161190156fea2646970667358221220f213b9045b40918ed2b5d304162ec2dfc3bc6b581b97362b423df61fd1436e5c64736f6c63430008150033a264697066735822122016636ee300fab238f4f099f32ba33a2f9dd9cbd27246df211a2a76dcc4263a7a64736f6c63430008150033", + "sourceMap": "162:1734:28:-:0;;;709:116;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;936:32:20;719:10:21;936:18:20;:32::i;:::-;764:15:28;:26;;-1:-1:-1;;;;;;764:26:28;-1:-1:-1;;;;;764:26:28;;;;;;;;;;;-1:-1:-1;800:18:28;162:1734;;2433:187:20;2506:16;2525:6;;-1:-1:-1;;;;;2541:17:20;;;-1:-1:-1;;;;;;2541:17:20;;;;;;2573:40;;2525:6;;;;;;;2573:40;;2506:16;2573:40;2496:124;2433:187;:::o;14:351:36:-;93:6;101;154:2;142:9;133:7;129:23;125:32;122:52;;;170:1;167;160:12;122:52;196:16;;-1:-1:-1;;;;;241:31:36;;231:42;;221:70;;287:1;284;277:12;221:70;355:2;340:18;;;;334:25;310:5;;334:25;;-1:-1:-1;;;14:351:36:o;:::-;162:1734:28;;;;;;", "linkReferences": { "lib/eth-projects-monorepo/packages/eth-projects-contracts/contracts/lib/utils/Bytes.sol": { "Bytes": [ { - "start": 5695, + "start": 5897, "length": 20 } ] @@ -226,13 +237,13 @@ } }, "deployedBytecode": { - "object": "0x608060405260043610620000a95760003560e01c80638da5cb5b116200006c5780638da5cb5b146200016d578063ab2fa65a146200018d578063ae28505e14620001b4578063c56c4cf114620001d9578063f2fde38b14620001fb578063f52be2a2146200022057600080fd5b806303fb31e814620000ae5780631164c83d14620000d5578063145e414714620000ec5780635787cacb146200012e578063715018a61462000155575b600080fd5b348015620000bb57600080fd5b50620000d3620000cd36600462000778565b62000247565b005b620000d3620000e6366004620007e9565b62000273565b348015620000f957600080fd5b50620001116200010b36600462000864565b620004b2565b6040516001600160a01b0390911681526020015b60405180910390f35b3480156200013b57600080fd5b50620001466200054f565b60405162000125919062000891565b3480156200016257600080fd5b50620000d3620005b3565b3480156200017a57600080fd5b506000546001600160a01b031662000111565b3480156200019a57600080fd5b50620001a5620005cb565b604051620001259190620008e0565b348015620001c157600080fd5b5062000111620001d336600462000930565b620005f7565b348015620001e657600080fd5b5060025462000111906001600160a01b031681565b3480156200020857600080fd5b50620000d36200021a36600462000778565b62000622565b3480156200022d57600080fd5b506200023860015481565b60405190815260200162000125565b62000251620006a1565b600280546001600160a01b0319166001600160a01b0392909216919091179055565b60015434146200029d5760405163723a79e360e11b81523460048201526024015b60405180910390fd5b600060405180602001620002b1906200074d565b6020820181038252601f19601f8201166040525090506000828251602084016000f56002546040516356d3163d60e01b81526001600160a01b0391821660048201529192508216906356d3163d90602401600060405180830381600087803b1580156200031d57600080fd5b505af115801562000332573d6000803e3d6000fd5b505060405163c47f002760e01b81526001600160a01b038416925063c47f0027915062000366908a908a906004016200094a565b600060405180830381600087803b1580156200038157600080fd5b505af115801562000396573d6000803e3d6000fd5b5050604051635c26412360e11b81526001600160a01b038416925063b84c82469150620003ca90889088906004016200094a565b600060405180830381600087803b158015620003e557600080fd5b505af1158015620003fa573d6000803e3d6000fd5b505060405163f2fde38b60e01b81523260048201526001600160a01b038416925063f2fde38b9150602401600060405180830381600087803b1580156200044057600080fd5b505af115801562000455573d6000803e3d6000fd5b5050600380546001810182556000919091527fc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b0180546001600160a01b0319166001600160a01b0394909416939093179092555050505050505050565b600060ff60f81b838360405180602001620004cd906200074d565b6020820181038252601f19601f82011660405250805190602001206040516020016200053094939291906001600160f81b031994909416845260609290921b6bffffffffffffffffffffffff191660018401526015830152603582015260550190565b60408051601f1981840301815291905280516020909101209392505050565b60606003805480602002602001604051908101604052809291908181526020018280548015620005a957602002820191906000526020600020905b81546001600160a01b031681526001909101906020018083116200058a575b5050505050905090565b620005bd620006a1565b620005c96000620006fd565b565b606060405180602001620005df906200074d565b601f1982820381018352601f90910116604052919050565b600381815481106200060857600080fd5b6000918252602090912001546001600160a01b0316905081565b6200062c620006a1565b6001600160a01b038116620006935760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b606482015260840162000294565b6200069e81620006fd565b50565b6000546001600160a01b03163314620005c95760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015260640162000294565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b612430806200097a83390190565b80356001600160a01b03811681146200077357600080fd5b919050565b6000602082840312156200078b57600080fd5b62000796826200075b565b9392505050565b60008083601f840112620007b057600080fd5b50813567ffffffffffffffff811115620007c957600080fd5b602083019150836020828501011115620007e257600080fd5b9250929050565b6000806000806000606086880312156200080257600080fd5b853567ffffffffffffffff808211156200081b57600080fd5b6200082989838a016200079d565b909750955060208801359150808211156200084357600080fd5b5062000852888289016200079d565b96999598509660400135949350505050565b600080604083850312156200087857600080fd5b62000883836200075b565b946020939093013593505050565b6020808252825182820181905260009190848201906040850190845b81811015620008d45783516001600160a01b031683529284019291840191600101620008ad565b50909695505050505050565b600060208083528351808285015260005b818110156200090f57858101830151858201604001528201620008f1565b506000604082860101526040601f19601f8301168501019250505092915050565b6000602082840312156200094357600080fd5b5035919050565b60208152816020820152818360408301376000818301604090810191909152601f909201601f1916010191905056fe60806040523480156200001157600080fd5b50604051806040016040528060078152602001660536865657420360cc1b815250604051806040016040528060048152602001630534854360e41b81525062000069620000636200008f60201b60201c565b62000093565b600162000077838262000188565b50600262000086828262000188565b50505062000254565b3390565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b634e487b7160e01b600052604160045260246000fd5b600181811c908216806200010e57607f821691505b6020821081036200012f57634e487b7160e01b600052602260045260246000fd5b50919050565b601f8211156200018357600081815260208120601f850160051c810160208610156200015e5750805b601f850160051c820191505b818110156200017f578281556001016200016a565b5050505b505050565b81516001600160401b03811115620001a457620001a4620000e3565b620001bc81620001b58454620000f9565b8462000135565b602080601f831160018114620001f45760008415620001db5750858301515b600019600386901b1c1916600185901b1785556200017f565b600085815260208120601f198616915b82811015620002255788860151825594840194600190910190840162000204565b5085821015620002445787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b6121cc80620002646000396000f3fe608060405234801561001057600080fd5b50600436106102275760003560e01c8063715018a611610130578063b85d8b85116100b8578063cf0983981161007c578063cf09839814610512578063cfbe95d814610535578063df4ca20614610556578063e985e9c514610576578063f2fde38b146105a457600080fd5b8063b85d8b85146104a4578063b88d4fde146104ce578063b8c368ec146104e1578063c47f0027146104ec578063c87b56dd146104ff57600080fd5b806395d89b41116100ff57806395d89b4114610439578063a22cb46514610441578063b46ebb1214610454578063b6d658e114610467578063b84c82461461049157600080fd5b8063715018a6146103fa578063768d5029146104025780638ada6b0f146104155780638da5cb5b1461042857600080fd5b80631b06443c116101b35780634f6ccce7116101825780634f6ccce71461038157806356d3163d146103a15780636352211e146103b45780636a0abc74146103c757806370a08231146103e757600080fd5b80631b06443c14610335578063206848f61461034857806323b872dd1461035b57806342842e0e1461036e57600080fd5b8063081812fc116101fa578063081812fc146102a1578063095ea7b3146102e2578063172b9eed146102f757806318160ddd1461030a5780631941fd141461031357600080fd5b806301ffc9a71461022c57806302f3c4c91461025457806306fdde03146102745780630715a24a1461027c575b600080fd5b61023f61023a36600461176a565b6105b7565b60405190151581526020015b60405180910390f35b610267610262366004611861565b610609565b60405161024b9190611951565b610267610638565b6102936fffffffffffffffffffffffffffffffff81565b60405190815260200161024b565b6102ca6102af366004611964565b6005602052600090815260409020546001600160a01b031681565b6040516001600160a01b03909116815260200161024b565b6102f56102f036600461197d565b6106c6565b005b6102676103053660046119a9565b6107ad565b61029360075481565b610326610321366004611964565b610875565b60405161024b939291906119de565b6102ca610343366004611a0e565b61092a565b610326610356366004611964565b6109e3565b6102f5610369366004611a2b565b610ae1565b6102f561037c366004611a2b565b610ca8565b61029361038f366004611964565b60086020526000908152604090205481565b6102f56103af366004611a0e565b610da0565b6102ca6103c2366004611964565b610dca565b6103da6103d53660046119a9565b610e1c565b60405161024b9190611a6c565b6102936103f5366004611a0e565b610e60565b6102f5610ec3565b6102f5610410366004611af9565b610ed7565b6009546102ca906001600160a01b031681565b6000546001600160a01b03166102ca565b610267611035565b6102f561044f366004611b63565b611042565b610267610462366004611964565b6110ae565b61047a610475366004611964565b611258565b60408051921515835260208301919091520161024b565b6102f561049f366004611ba1565b611275565b6104b56104b2366004611964565b90565b6040516001600160e01b0319909116815260200161024b565b6102f56104dc366004611be3565b6112c6565b6102ca600160801b81565b6102f56104fa366004611ba1565b6113ae565b61026761050d366004611964565b6113ff565b61023f610520366004611a0e565b600160801b6001600160a01b03919091161090565b61023f610543366004611861565b516001600160a01b0316600160801b1490565b610569610564366004611964565b6114c9565b60405161024b9190611c16565b61023f610584366004611c4d565b600660209081526000928352604080842090915290825290205460ff1681565b6102f56105b2366004611a0e565b611526565b60006301ffc9a760e01b6001600160e01b0319831614806105e857506380ac58cd60e01b6001600160e01b03198316145b806106035750635b5e139f60e01b6001600160e01b03198316145b92915050565b6060816020015160405160200161062291815260200190565b6040516020818303038152906040529050919050565b6001805461064590611c7b565b80601f016020809104026020016040519081016040528092919081815260200182805461067190611c7b565b80156106be5780601f10610693576101008083540402835291602001916106be565b820191906000526020600020905b8154815290600101906020018083116106a157829003601f168201915b505050505081565b6000818152600360205260409020546001600160a01b03163381148061070f57506001600160a01b038116600090815260066020908152604080832033845290915290205460ff165b6107515760405162461bcd60e51b815260206004820152600e60248201526d1393d517d055551213d49256915160921b60448201526064015b60405180910390fd5b60008281526005602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b606060006107ba83610e1c565b9050606060005b825181101561086d576000806107ef8584815181106107e2576107e2611cb5565b6020026020010151611258565b9150915081156108335783610803826110ae565b61080c90611ccb565b60405160200161081d929190611cef565b6040516020818303038152906040529350610858565b6040516108469085908390602001611cef565b60405160208183030381529060405293505b5050808061086590611d27565b9150506107c1565b509392505050565b600a602052600090815260409020805460018201546002830180546001600160a01b039093169391926108a790611c7b565b80601f01602080910402602001604051908101604052809291908181526020018280546108d390611c7b565b80156109205780601f106108f557610100808354040283529160200191610920565b820191906000526020600020905b81548152906001019060200180831161090357829003601f168201915b5050505050905083565b6000600160801b6001600160a01b03831610156109da576000610955836001600160a01b03166110ae565b604051632d737e4960e21b815290915073__$a792e50881dbcbffce7826062cdb0978aa$__9063b5cdf92490610992908490600090600401611d40565b602060405180830381865af41580156109af573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906109d39190611d62565b9392505050565b5090565b919050565b60008181526003602052604081205481906060906001600160a01b0316610a1057600160801b9250610a2b565b6000848152600a60205260409020546001600160a01b031692505b6000848152600a60205260409020600181015460029091018054859291908190610a5490611c7b565b80601f0160208091040260200160405190810160405280929190818152602001828054610a8090611c7b565b8015610acd5780601f10610aa257610100808354040283529160200191610acd565b820191906000526020600020905b815481529060010190602001808311610ab057829003601f168201915b505050505090509250925092509193909250565b6000818152600360205260409020546001600160a01b03848116911614610b375760405162461bcd60e51b815260206004820152600a60248201526957524f4e475f46524f4d60b01b6044820152606401610748565b6001600160a01b038216610b815760405162461bcd60e51b81526020600482015260116024820152701253959053125117d49150d25412515395607a1b6044820152606401610748565b336001600160a01b0384161480610bbb57506001600160a01b038316600090815260066020908152604080832033845290915290205460ff165b80610bdc57506000818152600560205260409020546001600160a01b031633145b610c195760405162461bcd60e51b815260206004820152600e60248201526d1393d517d055551213d49256915160921b6044820152606401610748565b6001600160a01b0380841660008181526004602090815260408083208054600019019055938616808352848320805460010190558583526003825284832080546001600160a01b03199081168317909155600590925284832080549092169091559251849392917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b610cb3838383610ae1565b6001600160a01b0382163b1580610d5c5750604051630a85bd0160e11b8082523360048301526001600160a01b03858116602484015260448301849052608060648401526000608484015290919084169063150b7a029060a4016020604051808303816000875af1158015610d2c573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610d509190611d7b565b6001600160e01b031916145b610d9b5760405162461bcd60e51b815260206004820152601060248201526f155394d0519157d49150d2541251539560821b6044820152606401610748565b505050565b610da861159f565b600980546001600160a01b0319166001600160a01b0392909216919091179055565b6000818152600360205260409020546001600160a01b0316806109de5760405162461bcd60e51b815260206004820152600a6024820152691393d517d3525395115160b21b6044820152606401610748565b60608082516040519150602081048252602082016020850160005b83811015610e4f578181015183820152602001610e37565b505050810160200160405292915050565b60006001600160a01b038216610ea75760405162461bcd60e51b815260206004820152600c60248201526b5a45524f5f4144445245535360a01b6044820152606401610748565b506001600160a01b031660009081526004602052604090205490565b610ecb61159f565b610ed560006115f9565b565b6000858152600360205260409020546001600160a01b0316610f2f57610efd3286611649565b60078054600090815260086020526040812087905581546001929190610f24908490611d98565b90915550610f889050565b6000858152600360205260409020546001600160a01b03163214610f8857600085815260036020526040908190205490516324f3f02560e21b81526001600160a01b039091166004820152326024820152604401610748565b6040518060600160405280856001600160a01b0316815260200184815260200183838080601f0160208091040260200160405190810160405280939291908181526020018383808284376000920182905250939094525050878152600a6020908152604091829020845181546001600160a01b0319166001600160a01b0390911617815590840151600182015590830151909150600282019061102b9082611df9565b5050505050505050565b6002805461064590611c7b565b3360008181526006602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b6000818152600a6020908152604080832081516060818101845282546001600160a01b0316825260018301549482019490945260028201805494959491938401916110f890611c7b565b80601f016020809104026020016040519081016040528092919081815260200182805461112490611c7b565b80156111715780601f1061114657610100808354040283529160200191611171565b820191906000526020600020905b81548152906001019060200180831161115457829003601f168201915b505050505081525050905061119381516001600160a01b0316600160801b1490565b156111a1576109d381610609565b60006111b0826000015161092a565b905060006111bf836020015190565b905060006111d084604001516107ad565b90506000836001600160a01b031683836040516020016111f1929190611eb9565b60408051601f198184030181529082905261120b91611eea565b600060405180830381855afa9150503d8060008114611246576040519150601f19603f3d011682016040523d82523d6000602084013e61124b565b606091505b5098975050505050505050565b600080611266600284611f06565b60019081149493901c92915050565b61127d61159f565b7f8dca0271872d00b3de3abafca544c52fcd7d512dd852c9894fa2c118ac759a93600283836040516112b193929190611fce565b60405180910390a16002610d9b828483611ffe565b6112d1858585610ae1565b6001600160a01b0384163b15806113685750604051630a85bd0160e11b808252906001600160a01b0386169063150b7a02906113199033908a908990899089906004016120be565b6020604051808303816000875af1158015611338573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061135c9190611d7b565b6001600160e01b031916145b6113a75760405162461bcd60e51b815260206004820152601060248201526f155394d0519157d49150d2541251539560821b6044820152606401610748565b5050505050565b6113b661159f565b7fb65b7b5ea384affd30f77f842e057d29dd1b13f133adf69a724a8105b164ab75600183836040516113ea93929190611fce565b60405180910390a16001610d9b828483611ffe565b6000818152600360205260409020546060906001600160a01b03168061143b57604051630243d1a960e21b815260048101849052602401610748565b6000611446846110ae565b6009546040516328de0f2f60e01b81529192506001600160a01b0316906328de0f2f9061147c90879085906001906004016120fd565b600060405180830381865afa158015611499573d6000803e3d6000fd5b505050506040513d6000823e601f3d908101601f191682016040526114c19190810190612128565b949350505050565b604080516060808201835260008083526020830181905292820152906114ee836110ae565b6040805160608101825285815260009586526003602090815295829020546001600160a01b0316958101959095528401525090919050565b61152e61159f565b6001600160a01b0381166115935760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610748565b61159c816115f9565b50565b6000546001600160a01b03163314610ed55760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610748565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b6001600160a01b0382166116935760405162461bcd60e51b81526020600482015260116024820152701253959053125117d49150d25412515395607a1b6044820152606401610748565b6000818152600360205260409020546001600160a01b0316156116e95760405162461bcd60e51b815260206004820152600e60248201526d1053149150511657d3525395115160921b6044820152606401610748565b6001600160a01b038216600081815260046020908152604080832080546001019055848352600390915280822080546001600160a01b0319168417905551839291907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b6001600160e01b03198116811461159c57600080fd5b60006020828403121561177c57600080fd5b81356109d381611754565b634e487b7160e01b600052604160045260246000fd5b604051601f8201601f1916810167ffffffffffffffff811182821017156117c6576117c6611787565b604052919050565b6001600160a01b038116811461159c57600080fd5b600067ffffffffffffffff8211156117fd576117fd611787565b50601f01601f191660200190565b600082601f83011261181c57600080fd5b813561182f61182a826117e3565b61179d565b81815284602083860101111561184457600080fd5b816020850160208301376000918101602001919091529392505050565b60006020828403121561187357600080fd5b813567ffffffffffffffff8082111561188b57600080fd5b908301906060828603121561189f57600080fd5b6040516060810181811083821117156118ba576118ba611787565b60405282356118c8816117ce565b8152602083810135908201526040830135828111156118e657600080fd5b6118f28782860161180b565b60408301525095945050505050565b60005b8381101561191c578181015183820152602001611904565b50506000910152565b6000815180845261193d816020860160208601611901565b601f01601f19169290920160200192915050565b6020815260006109d36020830184611925565b60006020828403121561197657600080fd5b5035919050565b6000806040838503121561199057600080fd5b823561199b816117ce565b946020939093013593505050565b6000602082840312156119bb57600080fd5b813567ffffffffffffffff8111156119d257600080fd5b6114c18482850161180b565b60018060a01b0384168152826020820152606060408201526000611a056060830184611925565b95945050505050565b600060208284031215611a2057600080fd5b81356109d3816117ce565b600080600060608486031215611a4057600080fd5b8335611a4b816117ce565b92506020840135611a5b816117ce565b929592945050506040919091013590565b6020808252825182820181905260009190848201906040850190845b81811015611aa457835183529284019291840191600101611a88565b50909695505050505050565b60008083601f840112611ac257600080fd5b50813567ffffffffffffffff811115611ada57600080fd5b602083019150836020828501011115611af257600080fd5b9250929050565b600080600080600060808688031215611b1157600080fd5b853594506020860135611b23816117ce565b935060408601359250606086013567ffffffffffffffff811115611b4657600080fd5b611b5288828901611ab0565b969995985093965092949392505050565b60008060408385031215611b7657600080fd5b8235611b81816117ce565b915060208301358015158114611b9657600080fd5b809150509250929050565b60008060208385031215611bb457600080fd5b823567ffffffffffffffff811115611bcb57600080fd5b611bd785828601611ab0565b90969095509350505050565b600080600080600060808688031215611bfb57600080fd5b8535611c06816117ce565b94506020860135611b23816117ce565b602081528151602082015260018060a01b036020830151166040820152600060408301516060808401526114c16080840182611925565b60008060408385031215611c6057600080fd5b8235611c6b816117ce565b91506020830135611b96816117ce565b600181811c90821680611c8f57607f821691505b602082108103611caf57634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052603260045260246000fd5b80516020808301519190811015611caf5760001960209190910360031b1b16919050565b60008351611d01818460208801611901565b9190910191825250602001919050565b634e487b7160e01b600052601160045260246000fd5b600060018201611d3957611d39611d11565b5060010190565b604081526000611d536040830185611925565b90508260208301529392505050565b600060208284031215611d7457600080fd5b5051919050565b600060208284031215611d8d57600080fd5b81516109d381611754565b8082018082111561060357610603611d11565b601f821115610d9b57600081815260208120601f850160051c81016020861015611dd25750805b601f850160051c820191505b81811015611df157828155600101611dde565b505050505050565b815167ffffffffffffffff811115611e1357611e13611787565b611e2781611e218454611c7b565b84611dab565b602080601f831160018114611e5c5760008415611e445750858301515b600019600386901b1c1916600185901b178555611df1565b600085815260208120601f198616915b82811015611e8b57888601518255948401946001909101908401611e6c565b5085821015611ea95787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b6001600160e01b0319831681528151600090611edc816004850160208701611901565b919091016004019392505050565b60008251611efc818460208701611901565b9190910192915050565b600082611f2357634e487b7160e01b600052601260045260246000fd5b500690565b60008154611f3581611c7b565b808552602060018381168015611f525760018114611f6c57611f9a565b60ff1985168884015283151560051b880183019550611f9a565b866000528260002060005b85811015611f925781548a8201860152908301908401611f77565b890184019650505b505050505092915050565b81835281816020850137506000828201602090810191909152601f909101601f19169091010190565b604081526000611fe16040830186611f28565b8281036020840152611ff4818587611fa5565b9695505050505050565b67ffffffffffffffff83111561201657612016611787565b61202a836120248354611c7b565b83611dab565b6000601f84116001811461205e57600085156120465750838201355b600019600387901b1c1916600186901b1783556113a7565b600083815260209020601f19861690835b8281101561208f578685013582556020948501946001909201910161206f565b50868210156120ac5760001960f88860031b161c19848701351681555b505060018560011b0183555050505050565b6001600160a01b03868116825285166020820152604081018490526080606082018190526000906120f29083018486611fa5565b979650505050505050565b8381526060602082015260006121166060830185611925565b8281036040840152611ff48185611f28565b60006020828403121561213a57600080fd5b815167ffffffffffffffff81111561215157600080fd5b8201601f8101841361216257600080fd5b805161217061182a826117e3565b81815285602083850101111561218557600080fd5b611a0582602083016020860161190156fea26469706673582212203fc548aa4f22e6f4c01757ba3f2e0383630418b3d17601758718ab19a4d9918d64736f6c63430008110033a26469706673582212207932e8c793f9a96d9606a8907a6671f54c0fb1ed5a763048e13b429274e7706c64736f6c63430008110033", - "sourceMap": "162:1525:28:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;831:108;;;;;;;;;;-1:-1:-1;831:108:28;;;;;:::i;:::-;;:::i;:::-;;945:644;;;;;;:::i;:::-;;:::i;415:288::-;;;;;;;;;;-1:-1:-1;415:288:28;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;1953:32:36;;;1935:51;;1923:2;1908:18;415:288:28;;;;;;;;1595:90;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;1831:101:20:-;;;;;;;;;;;;;:::i;1201:85::-;;;;;;;;;;-1:-1:-1;1247:7:20;1273:6;-1:-1:-1;;;;;1273:6:20;1201:85;;294:115:28;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;264:23::-;;;;;;;;;;-1:-1:-1;264:23:28;;;;;:::i;:::-;;:::i;228:30::-;;;;;;;;;;-1:-1:-1;228:30:28;;;;-1:-1:-1;;;;;228:30:28;;;2081:198:20;;;;;;;;;;-1:-1:-1;2081:198:20;;;;;:::i;:::-;;:::i;197:25:28:-;;;;;;;;;;;;;;;;;;;3542::36;;;3530:2;3515:18;197:25:28;3396:177:36;831:108:28;1094:13:20;:11;:13::i;:::-;906:15:28::1;:26:::0;;-1:-1:-1;;;;;;906:26:28::1;-1:-1:-1::0;;;;;906:26:28;;;::::1;::::0;;;::::1;::::0;;831:108::o;945:644::-;1067:10;;1054:9;:23;1050:87;;1100:26;;-1:-1:-1;;;1100:26:28;;1116:9;1100:26;;;3542:25:36;3515:18;;1100:26:28;;;;;;;;1050:87;1147:21;1171:24;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;1147:48;;1206:20;1322:4;1311:8;1305:15;1300:2;1290:8;1286:17;1283:1;1275:52;1380:15;;1347:49;;-1:-1:-1;;;1347:49:28;;-1:-1:-1;;;;;1380:15:28;;;1347:49;;;1935:51:36;1259:68:28;;-1:-1:-1;1347:32:28;;;;;1908:18:36;;1347:49:28;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;1406:34:28;;-1:-1:-1;;;1406:34:28;;-1:-1:-1;;;;;1406:28:28;;;-1:-1:-1;1406:28:28;;-1:-1:-1;1406:34:28;;1435:4;;;;1406:34;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;1450:38:28;;-1:-1:-1;;;1450:38:28;;-1:-1:-1;;;;;1450:30:28;;;-1:-1:-1;1450:30:28;;-1:-1:-1;1450:38:28;;1481:6;;;;1450:38;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;1498:49:28;;-1:-1:-1;;;1498:49:28;;1537:9;1498:49;;;1935:51:36;-1:-1:-1;;;;;1498:38:28;;;-1:-1:-1;1498:38:28;;-1:-1:-1;1908:18:36;;1498:49:28;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;1557:6:28;:25;;;;;;;-1:-1:-1;1557:25:28;;;;;;;;-1:-1:-1;;;;;;1557:25:28;-1:-1:-1;;;;;1557:25:28;;;;;;;;;;;-1:-1:-1;;;;;;;;945:644:28:o;415:288::-;499:7;613:4;606:12;;620:6;628:4;644:24;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;634:35;;;;;;589:81;;;;;;;;;;-1:-1:-1;;;;;;4196:26:36;;;;4184:39;;4260:2;4256:15;;;;-1:-1:-1;;4252:53:36;4248:1;4239:11;;4232:74;4331:2;4322:12;;4315:28;4368:2;4359:12;;4352:28;4405:2;4396:12;;3973:441;589:81:28;;;;-1:-1:-1;;589:81:28;;;;;;;;;579:92;;589:81;579:92;;;;;415:288;-1:-1:-1;;;415:288:28:o;1595:90::-;1637:16;1672:6;1665:13;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;1665:13:28;;;;;;;;;;;;;;;;;;;;;;;1595:90;:::o;1831:101:20:-;1094:13;:11;:13::i;:::-;1895:30:::1;1922:1;1895:18;:30::i;:::-;1831:101::o:0;294:115:28:-;347:12;378:24;;;;;;;;:::i;:::-;-1:-1:-1;;378:24:28;;;;;;;;;;;;;;;294:115;-1:-1:-1;294:115:28:o;264:23::-;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;264:23:28;;-1:-1:-1;264:23:28;:::o;2081:198:20:-;1094:13;:11;:13::i;:::-;-1:-1:-1;;;;;2169:22:20;::::1;2161:73;;;::::0;-1:-1:-1;;;2161:73:20;;4621:2:36;2161:73:20::1;::::0;::::1;4603:21:36::0;4660:2;4640:18;;;4633:30;4699:34;4679:18;;;4672:62;-1:-1:-1;;;4750:18:36;;;4743:36;4796:19;;2161:73:20::1;4419:402:36::0;2161:73:20::1;2244:28;2263:8;2244:18;:28::i;:::-;2081:198:::0;:::o;1359:130::-;1247:7;1273:6;-1:-1:-1;;;;;1273:6:20;719:10:21;1422:23:20;1414:68;;;;-1:-1:-1;;;1414:68:20;;5028:2:36;1414:68:20;;;5010:21:36;;;5047:18;;;5040:30;5106:34;5086:18;;;5079:62;5158:18;;1414:68:20;4826:356:36;2433:187:20;2506:16;2525:6;;-1:-1:-1;;;;;2541:17:20;;;-1:-1:-1;;;;;;2541:17:20;;;;;;2573:40;;2525:6;;;;;;;2573:40;;2506:16;2573:40;2496:124;2433:187;:::o;-1:-1:-1:-;;;;;;;;:::o;14:173:36:-;82:20;;-1:-1:-1;;;;;131:31:36;;121:42;;111:70;;177:1;174;167:12;111:70;14:173;;;:::o;192:186::-;251:6;304:2;292:9;283:7;279:23;275:32;272:52;;;320:1;317;310:12;272:52;343:29;362:9;343:29;:::i;:::-;333:39;192:186;-1:-1:-1;;;192:186:36:o;383:348::-;435:8;445:6;499:3;492:4;484:6;480:17;476:27;466:55;;517:1;514;507:12;466:55;-1:-1:-1;540:20:36;;583:18;572:30;;569:50;;;615:1;612;605:12;569:50;652:4;644:6;640:17;628:29;;704:3;697:4;688:6;680;676:19;672:30;669:39;666:59;;;721:1;718;711:12;666:59;383:348;;;;;:::o;736:789::-;837:6;845;853;861;869;922:2;910:9;901:7;897:23;893:32;890:52;;;938:1;935;928:12;890:52;978:9;965:23;1007:18;1048:2;1040:6;1037:14;1034:34;;;1064:1;1061;1054:12;1034:34;1103:59;1154:7;1145:6;1134:9;1130:22;1103:59;:::i;:::-;1181:8;;-1:-1:-1;1077:85:36;-1:-1:-1;1269:2:36;1254:18;;1241:32;;-1:-1:-1;1285:16:36;;;1282:36;;;1314:1;1311;1304:12;1282:36;;1353:61;1406:7;1395:8;1384:9;1380:24;1353:61;:::i;:::-;736:789;;;;-1:-1:-1;1433:8:36;1515:2;1500:18;1487:32;;736:789;-1:-1:-1;;;;736:789:36:o;1530:254::-;1598:6;1606;1659:2;1647:9;1638:7;1634:23;1630:32;1627:52;;;1675:1;1672;1665:12;1627:52;1698:29;1717:9;1698:29;:::i;:::-;1688:39;1774:2;1759:18;;;;1746:32;;-1:-1:-1;;;1530:254:36:o;1997:658::-;2168:2;2220:21;;;2290:13;;2193:18;;;2312:22;;;2139:4;;2168:2;2391:15;;;;2365:2;2350:18;;;2139:4;2434:195;2448:6;2445:1;2442:13;2434:195;;;2513:13;;-1:-1:-1;;;;;2509:39:36;2497:52;;2604:15;;;;2569:12;;;;2545:1;2463:9;2434:195;;;-1:-1:-1;2646:3:36;;1997:658;-1:-1:-1;;;;;;1997:658:36:o;2660:546::-;2770:4;2799:2;2828;2817:9;2810:21;2860:6;2854:13;2903:6;2898:2;2887:9;2883:18;2876:34;2928:1;2938:140;2952:6;2949:1;2946:13;2938:140;;;3047:14;;;3043:23;;3037:30;3013:17;;;3032:2;3009:26;3002:66;2967:10;;2938:140;;;2942:3;3127:1;3122:2;3113:6;3102:9;3098:22;3094:31;3087:42;3197:2;3190;3186:7;3181:2;3173:6;3169:15;3165:29;3154:9;3150:45;3146:54;3138:62;;;;2660:546;;;;:::o;3211:180::-;3270:6;3323:2;3311:9;3302:7;3298:23;3294:32;3291:52;;;3339:1;3336;3329:12;3291:52;-1:-1:-1;3362:23:36;;3211:180;-1:-1:-1;3211:180:36:o;3578:390::-;3737:2;3726:9;3719:21;3776:6;3771:2;3760:9;3756:18;3749:34;3833:6;3825;3820:2;3809:9;3805:18;3792:48;3889:1;3860:22;;;3884:2;3856:31;;;3849:42;;;;3952:2;3931:15;;;-1:-1:-1;;3927:29:36;3912:45;3908:54;;3578:390;-1:-1:-1;3578:390:36:o", + "object": "0x608060405260043610620000b95760003560e01c80638da5cb5b116200006c5780638da5cb5b146200019d578063ab2fa65a14620001bd578063ae28505e14620001e4578063c56c4cf11462000209578063f2fde38b146200022b578063f52be2a2146200025057600080fd5b806303fb31e814620000c65780631164c83d14620000ed578063145e414714620001045780633ccfd60b14620001465780635787cacb146200015e578063715018a6146200018557600080fd5b36620000c157005b600080fd5b348015620000d357600080fd5b50620000eb620000e536600462000842565b62000277565b005b620000eb620000fe366004620008b3565b620002a3565b3480156200011157600080fd5b5062000129620001233660046200092e565b620004e2565b6040516001600160a01b0390911681526020015b60405180910390f35b3480156200015357600080fd5b50620000eb6200057f565b3480156200016b57600080fd5b50620001766200061c565b6040516200013d91906200095b565b3480156200019257600080fd5b50620000eb62000680565b348015620001aa57600080fd5b506000546001600160a01b031662000129565b348015620001ca57600080fd5b50620001d562000698565b6040516200013d9190620009aa565b348015620001f157600080fd5b506200012962000203366004620009fa565b620006c4565b3480156200021657600080fd5b5060025462000129906001600160a01b031681565b3480156200023857600080fd5b50620000eb6200024a36600462000842565b620006ef565b3480156200025d57600080fd5b506200026860015481565b6040519081526020016200013d565b620002816200076b565b600280546001600160a01b0319166001600160a01b0392909216919091179055565b6001543414620002cd5760405163723a79e360e11b81523460048201526024015b60405180910390fd5b600060405180602001620002e19062000817565b6020820181038252601f19601f8201166040525090506000828251602084016000f56002546040516356d3163d60e01b81526001600160a01b0391821660048201529192508216906356d3163d90602401600060405180830381600087803b1580156200034d57600080fd5b505af115801562000362573d6000803e3d6000fd5b505060405163c47f002760e01b81526001600160a01b038416925063c47f0027915062000396908a908a9060040162000a14565b600060405180830381600087803b158015620003b157600080fd5b505af1158015620003c6573d6000803e3d6000fd5b5050604051635c26412360e11b81526001600160a01b038416925063b84c82469150620003fa908890889060040162000a14565b600060405180830381600087803b1580156200041557600080fd5b505af11580156200042a573d6000803e3d6000fd5b505060405163f2fde38b60e01b81523260048201526001600160a01b038416925063f2fde38b9150602401600060405180830381600087803b1580156200047057600080fd5b505af115801562000485573d6000803e3d6000fd5b5050600380546001810182556000919091527fc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b0180546001600160a01b0319166001600160a01b0394909416939093179092555050505050505050565b600060ff60f81b838360405180602001620004fd9062000817565b6020820181038252601f19601f82011660405250805190602001206040516020016200056094939291906001600160f81b031994909416845260609290921b6bffffffffffffffffffffffff191660018401526015830152603582015260550190565b60408051601f1981840301815291905280516020909101209392505050565b620005896200076b565b604051600090339047908381818185875af1925050503d8060008114620005cd576040519150601f19603f3d011682016040523d82523d6000602084013e620005d2565b606091505b5050905080620006195760405162461bcd60e51b815260206004820152601160248201527015da5d1a191c985dd85b0819985a5b1959607a1b6044820152606401620002c4565b50565b606060038054806020026020016040519081016040528092919081815260200182805480156200067657602002820191906000526020600020905b81546001600160a01b0316815260019091019060200180831162000657575b5050505050905090565b6200068a6200076b565b620006966000620007c7565b565b606060405180602001620006ac9062000817565b601f1982820381018352601f90910116604052919050565b60038181548110620006d557600080fd5b6000918252602090912001546001600160a01b0316905081565b620006f96200076b565b6001600160a01b038116620007605760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401620002c4565b6200061981620007c7565b6000546001600160a01b03163314620006965760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401620002c4565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b6124308062000a4483390190565b80356001600160a01b03811681146200083d57600080fd5b919050565b6000602082840312156200085557600080fd5b620008608262000825565b9392505050565b60008083601f8401126200087a57600080fd5b50813567ffffffffffffffff8111156200089357600080fd5b602083019150836020828501011115620008ac57600080fd5b9250929050565b600080600080600060608688031215620008cc57600080fd5b853567ffffffffffffffff80821115620008e557600080fd5b620008f389838a0162000867565b909750955060208801359150808211156200090d57600080fd5b506200091c8882890162000867565b96999598509660400135949350505050565b600080604083850312156200094257600080fd5b6200094d8362000825565b946020939093013593505050565b6020808252825182820181905260009190848201906040850190845b818110156200099e5783516001600160a01b03168352928401929184019160010162000977565b50909695505050505050565b600060208083528351808285015260005b81811015620009d957858101830151858201604001528201620009bb565b506000604082860101526040601f19601f8301168501019250505092915050565b60006020828403121562000a0d57600080fd5b5035919050565b60208152816020820152818360408301376000818301604090810191909152601f909201601f1916010191905056fe60806040523480156200001157600080fd5b50604051806040016040528060078152602001660536865657420360cc1b815250604051806040016040528060048152602001630534854360e41b81525062000069620000636200008f60201b60201c565b62000093565b600162000077838262000188565b50600262000086828262000188565b50505062000254565b3390565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b634e487b7160e01b600052604160045260246000fd5b600181811c908216806200010e57607f821691505b6020821081036200012f57634e487b7160e01b600052602260045260246000fd5b50919050565b601f8211156200018357600081815260208120601f850160051c810160208610156200015e5750805b601f850160051c820191505b818110156200017f578281556001016200016a565b5050505b505050565b81516001600160401b03811115620001a457620001a4620000e3565b620001bc81620001b58454620000f9565b8462000135565b602080601f831160018114620001f45760008415620001db5750858301515b600019600386901b1c1916600185901b1785556200017f565b600085815260208120601f198616915b82811015620002255788860151825594840194600190910190840162000204565b5085821015620002445787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b6121cc80620002646000396000f3fe608060405234801561001057600080fd5b50600436106102275760003560e01c8063715018a611610130578063b85d8b85116100b8578063cf0983981161007c578063cf09839814610512578063cfbe95d814610535578063df4ca20614610556578063e985e9c514610576578063f2fde38b146105a457600080fd5b8063b85d8b85146104a4578063b88d4fde146104ce578063b8c368ec146104e1578063c47f0027146104ec578063c87b56dd146104ff57600080fd5b806395d89b41116100ff57806395d89b4114610439578063a22cb46514610441578063b46ebb1214610454578063b6d658e114610467578063b84c82461461049157600080fd5b8063715018a6146103fa578063768d5029146104025780638ada6b0f146104155780638da5cb5b1461042857600080fd5b80631b06443c116101b35780634f6ccce7116101825780634f6ccce71461038157806356d3163d146103a15780636352211e146103b45780636a0abc74146103c757806370a08231146103e757600080fd5b80631b06443c14610335578063206848f61461034857806323b872dd1461035b57806342842e0e1461036e57600080fd5b8063081812fc116101fa578063081812fc146102a1578063095ea7b3146102e2578063172b9eed146102f757806318160ddd1461030a5780631941fd141461031357600080fd5b806301ffc9a71461022c57806302f3c4c91461025457806306fdde03146102745780630715a24a1461027c575b600080fd5b61023f61023a36600461176a565b6105b7565b60405190151581526020015b60405180910390f35b610267610262366004611861565b610609565b60405161024b9190611951565b610267610638565b6102936fffffffffffffffffffffffffffffffff81565b60405190815260200161024b565b6102ca6102af366004611964565b6005602052600090815260409020546001600160a01b031681565b6040516001600160a01b03909116815260200161024b565b6102f56102f036600461197d565b6106c6565b005b6102676103053660046119a9565b6107ad565b61029360075481565b610326610321366004611964565b610875565b60405161024b939291906119de565b6102ca610343366004611a0e565b61092a565b610326610356366004611964565b6109e3565b6102f5610369366004611a2b565b610ae1565b6102f561037c366004611a2b565b610ca8565b61029361038f366004611964565b60086020526000908152604090205481565b6102f56103af366004611a0e565b610da0565b6102ca6103c2366004611964565b610dca565b6103da6103d53660046119a9565b610e1c565b60405161024b9190611a6c565b6102936103f5366004611a0e565b610e60565b6102f5610ec3565b6102f5610410366004611af9565b610ed7565b6009546102ca906001600160a01b031681565b6000546001600160a01b03166102ca565b610267611035565b6102f561044f366004611b63565b611042565b610267610462366004611964565b6110ae565b61047a610475366004611964565b611258565b60408051921515835260208301919091520161024b565b6102f561049f366004611ba1565b611275565b6104b56104b2366004611964565b90565b6040516001600160e01b0319909116815260200161024b565b6102f56104dc366004611be3565b6112c6565b6102ca600160801b81565b6102f56104fa366004611ba1565b6113ae565b61026761050d366004611964565b6113ff565b61023f610520366004611a0e565b600160801b6001600160a01b03919091161090565b61023f610543366004611861565b516001600160a01b0316600160801b1490565b610569610564366004611964565b6114c9565b60405161024b9190611c16565b61023f610584366004611c4d565b600660209081526000928352604080842090915290825290205460ff1681565b6102f56105b2366004611a0e565b611526565b60006301ffc9a760e01b6001600160e01b0319831614806105e857506380ac58cd60e01b6001600160e01b03198316145b806106035750635b5e139f60e01b6001600160e01b03198316145b92915050565b6060816020015160405160200161062291815260200190565b6040516020818303038152906040529050919050565b6001805461064590611c7b565b80601f016020809104026020016040519081016040528092919081815260200182805461067190611c7b565b80156106be5780601f10610693576101008083540402835291602001916106be565b820191906000526020600020905b8154815290600101906020018083116106a157829003601f168201915b505050505081565b6000818152600360205260409020546001600160a01b03163381148061070f57506001600160a01b038116600090815260066020908152604080832033845290915290205460ff165b6107515760405162461bcd60e51b815260206004820152600e60248201526d1393d517d055551213d49256915160921b60448201526064015b60405180910390fd5b60008281526005602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b606060006107ba83610e1c565b9050606060005b825181101561086d576000806107ef8584815181106107e2576107e2611cb5565b6020026020010151611258565b9150915081156108335783610803826110ae565b61080c90611ccb565b60405160200161081d929190611cef565b6040516020818303038152906040529350610858565b6040516108469085908390602001611cef565b60405160208183030381529060405293505b5050808061086590611d27565b9150506107c1565b509392505050565b600a602052600090815260409020805460018201546002830180546001600160a01b039093169391926108a790611c7b565b80601f01602080910402602001604051908101604052809291908181526020018280546108d390611c7b565b80156109205780601f106108f557610100808354040283529160200191610920565b820191906000526020600020905b81548152906001019060200180831161090357829003601f168201915b5050505050905083565b6000600160801b6001600160a01b03831610156109da576000610955836001600160a01b03166110ae565b604051632d737e4960e21b815290915073__$a792e50881dbcbffce7826062cdb0978aa$__9063b5cdf92490610992908490600090600401611d40565b602060405180830381865af41580156109af573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906109d39190611d62565b9392505050565b5090565b919050565b60008181526003602052604081205481906060906001600160a01b0316610a1057600160801b9250610a2b565b6000848152600a60205260409020546001600160a01b031692505b6000848152600a60205260409020600181015460029091018054859291908190610a5490611c7b565b80601f0160208091040260200160405190810160405280929190818152602001828054610a8090611c7b565b8015610acd5780601f10610aa257610100808354040283529160200191610acd565b820191906000526020600020905b815481529060010190602001808311610ab057829003601f168201915b505050505090509250925092509193909250565b6000818152600360205260409020546001600160a01b03848116911614610b375760405162461bcd60e51b815260206004820152600a60248201526957524f4e475f46524f4d60b01b6044820152606401610748565b6001600160a01b038216610b815760405162461bcd60e51b81526020600482015260116024820152701253959053125117d49150d25412515395607a1b6044820152606401610748565b336001600160a01b0384161480610bbb57506001600160a01b038316600090815260066020908152604080832033845290915290205460ff165b80610bdc57506000818152600560205260409020546001600160a01b031633145b610c195760405162461bcd60e51b815260206004820152600e60248201526d1393d517d055551213d49256915160921b6044820152606401610748565b6001600160a01b0380841660008181526004602090815260408083208054600019019055938616808352848320805460010190558583526003825284832080546001600160a01b03199081168317909155600590925284832080549092169091559251849392917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b610cb3838383610ae1565b6001600160a01b0382163b1580610d5c5750604051630a85bd0160e11b8082523360048301526001600160a01b03858116602484015260448301849052608060648401526000608484015290919084169063150b7a029060a4016020604051808303816000875af1158015610d2c573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610d509190611d7b565b6001600160e01b031916145b610d9b5760405162461bcd60e51b815260206004820152601060248201526f155394d0519157d49150d2541251539560821b6044820152606401610748565b505050565b610da861159f565b600980546001600160a01b0319166001600160a01b0392909216919091179055565b6000818152600360205260409020546001600160a01b0316806109de5760405162461bcd60e51b815260206004820152600a6024820152691393d517d3525395115160b21b6044820152606401610748565b60608082516040519150602081048252602082016020850160005b83811015610e4f578181015183820152602001610e37565b505050810160200160405292915050565b60006001600160a01b038216610ea75760405162461bcd60e51b815260206004820152600c60248201526b5a45524f5f4144445245535360a01b6044820152606401610748565b506001600160a01b031660009081526004602052604090205490565b610ecb61159f565b610ed560006115f9565b565b6000858152600360205260409020546001600160a01b0316610f2f57610efd3286611649565b60078054600090815260086020526040812087905581546001929190610f24908490611d98565b90915550610f889050565b6000858152600360205260409020546001600160a01b03163214610f8857600085815260036020526040908190205490516324f3f02560e21b81526001600160a01b039091166004820152326024820152604401610748565b6040518060600160405280856001600160a01b0316815260200184815260200183838080601f0160208091040260200160405190810160405280939291908181526020018383808284376000920182905250939094525050878152600a6020908152604091829020845181546001600160a01b0319166001600160a01b0390911617815590840151600182015590830151909150600282019061102b9082611df9565b5050505050505050565b6002805461064590611c7b565b3360008181526006602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b6000818152600a6020908152604080832081516060818101845282546001600160a01b0316825260018301549482019490945260028201805494959491938401916110f890611c7b565b80601f016020809104026020016040519081016040528092919081815260200182805461112490611c7b565b80156111715780601f1061114657610100808354040283529160200191611171565b820191906000526020600020905b81548152906001019060200180831161115457829003601f168201915b505050505081525050905061119381516001600160a01b0316600160801b1490565b156111a1576109d381610609565b60006111b0826000015161092a565b905060006111bf836020015190565b905060006111d084604001516107ad565b90506000836001600160a01b031683836040516020016111f1929190611eb9565b60408051601f198184030181529082905261120b91611eea565b600060405180830381855afa9150503d8060008114611246576040519150601f19603f3d011682016040523d82523d6000602084013e61124b565b606091505b5098975050505050505050565b600080611266600284611f06565b60019081149493901c92915050565b61127d61159f565b7f8dca0271872d00b3de3abafca544c52fcd7d512dd852c9894fa2c118ac759a93600283836040516112b193929190611fce565b60405180910390a16002610d9b828483611ffe565b6112d1858585610ae1565b6001600160a01b0384163b15806113685750604051630a85bd0160e11b808252906001600160a01b0386169063150b7a02906113199033908a908990899089906004016120be565b6020604051808303816000875af1158015611338573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061135c9190611d7b565b6001600160e01b031916145b6113a75760405162461bcd60e51b815260206004820152601060248201526f155394d0519157d49150d2541251539560821b6044820152606401610748565b5050505050565b6113b661159f565b7fb65b7b5ea384affd30f77f842e057d29dd1b13f133adf69a724a8105b164ab75600183836040516113ea93929190611fce565b60405180910390a16001610d9b828483611ffe565b6000818152600360205260409020546060906001600160a01b03168061143b57604051630243d1a960e21b815260048101849052602401610748565b6000611446846110ae565b6009546040516328de0f2f60e01b81529192506001600160a01b0316906328de0f2f9061147c90879085906001906004016120fd565b600060405180830381865afa158015611499573d6000803e3d6000fd5b505050506040513d6000823e601f3d908101601f191682016040526114c19190810190612128565b949350505050565b604080516060808201835260008083526020830181905292820152906114ee836110ae565b6040805160608101825285815260009586526003602090815295829020546001600160a01b0316958101959095528401525090919050565b61152e61159f565b6001600160a01b0381166115935760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610748565b61159c816115f9565b50565b6000546001600160a01b03163314610ed55760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610748565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b6001600160a01b0382166116935760405162461bcd60e51b81526020600482015260116024820152701253959053125117d49150d25412515395607a1b6044820152606401610748565b6000818152600360205260409020546001600160a01b0316156116e95760405162461bcd60e51b815260206004820152600e60248201526d1053149150511657d3525395115160921b6044820152606401610748565b6001600160a01b038216600081815260046020908152604080832080546001019055848352600390915280822080546001600160a01b0319168417905551839291907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b6001600160e01b03198116811461159c57600080fd5b60006020828403121561177c57600080fd5b81356109d381611754565b634e487b7160e01b600052604160045260246000fd5b604051601f8201601f1916810167ffffffffffffffff811182821017156117c6576117c6611787565b604052919050565b6001600160a01b038116811461159c57600080fd5b600067ffffffffffffffff8211156117fd576117fd611787565b50601f01601f191660200190565b600082601f83011261181c57600080fd5b813561182f61182a826117e3565b61179d565b81815284602083860101111561184457600080fd5b816020850160208301376000918101602001919091529392505050565b60006020828403121561187357600080fd5b813567ffffffffffffffff8082111561188b57600080fd5b908301906060828603121561189f57600080fd5b6040516060810181811083821117156118ba576118ba611787565b60405282356118c8816117ce565b8152602083810135908201526040830135828111156118e657600080fd5b6118f28782860161180b565b60408301525095945050505050565b60005b8381101561191c578181015183820152602001611904565b50506000910152565b6000815180845261193d816020860160208601611901565b601f01601f19169290920160200192915050565b6020815260006109d36020830184611925565b60006020828403121561197657600080fd5b5035919050565b6000806040838503121561199057600080fd5b823561199b816117ce565b946020939093013593505050565b6000602082840312156119bb57600080fd5b813567ffffffffffffffff8111156119d257600080fd5b6114c18482850161180b565b60018060a01b0384168152826020820152606060408201526000611a056060830184611925565b95945050505050565b600060208284031215611a2057600080fd5b81356109d3816117ce565b600080600060608486031215611a4057600080fd5b8335611a4b816117ce565b92506020840135611a5b816117ce565b929592945050506040919091013590565b6020808252825182820181905260009190848201906040850190845b81811015611aa457835183529284019291840191600101611a88565b50909695505050505050565b60008083601f840112611ac257600080fd5b50813567ffffffffffffffff811115611ada57600080fd5b602083019150836020828501011115611af257600080fd5b9250929050565b600080600080600060808688031215611b1157600080fd5b853594506020860135611b23816117ce565b935060408601359250606086013567ffffffffffffffff811115611b4657600080fd5b611b5288828901611ab0565b969995985093965092949392505050565b60008060408385031215611b7657600080fd5b8235611b81816117ce565b915060208301358015158114611b9657600080fd5b809150509250929050565b60008060208385031215611bb457600080fd5b823567ffffffffffffffff811115611bcb57600080fd5b611bd785828601611ab0565b90969095509350505050565b600080600080600060808688031215611bfb57600080fd5b8535611c06816117ce565b94506020860135611b23816117ce565b602081528151602082015260018060a01b036020830151166040820152600060408301516060808401526114c16080840182611925565b60008060408385031215611c6057600080fd5b8235611c6b816117ce565b91506020830135611b96816117ce565b600181811c90821680611c8f57607f821691505b602082108103611caf57634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052603260045260246000fd5b80516020808301519190811015611caf5760001960209190910360031b1b16919050565b60008351611d01818460208801611901565b9190910191825250602001919050565b634e487b7160e01b600052601160045260246000fd5b600060018201611d3957611d39611d11565b5060010190565b604081526000611d536040830185611925565b90508260208301529392505050565b600060208284031215611d7457600080fd5b5051919050565b600060208284031215611d8d57600080fd5b81516109d381611754565b8082018082111561060357610603611d11565b601f821115610d9b57600081815260208120601f850160051c81016020861015611dd25750805b601f850160051c820191505b81811015611df157828155600101611dde565b505050505050565b815167ffffffffffffffff811115611e1357611e13611787565b611e2781611e218454611c7b565b84611dab565b602080601f831160018114611e5c5760008415611e445750858301515b600019600386901b1c1916600185901b178555611df1565b600085815260208120601f198616915b82811015611e8b57888601518255948401946001909101908401611e6c565b5085821015611ea95787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b6001600160e01b0319831681528151600090611edc816004850160208701611901565b919091016004019392505050565b60008251611efc818460208701611901565b9190910192915050565b600082611f2357634e487b7160e01b600052601260045260246000fd5b500690565b60008154611f3581611c7b565b808552602060018381168015611f525760018114611f6c57611f9a565b60ff1985168884015283151560051b880183019550611f9a565b866000528260002060005b85811015611f925781548a8201860152908301908401611f77565b890184019650505b505050505092915050565b81835281816020850137506000828201602090810191909152601f909101601f19169091010190565b604081526000611fe16040830186611f28565b8281036020840152611ff4818587611fa5565b9695505050505050565b67ffffffffffffffff83111561201657612016611787565b61202a836120248354611c7b565b83611dab565b6000601f84116001811461205e57600085156120465750838201355b600019600387901b1c1916600186901b1783556113a7565b600083815260209020601f19861690835b8281101561208f578685013582556020948501946001909201910161206f565b50868210156120ac5760001960f88860031b161c19848701351681555b505060018560011b0183555050505050565b6001600160a01b03868116825285166020820152604081018490526080606082018190526000906120f29083018486611fa5565b979650505050505050565b8381526060602082015260006121166060830185611925565b8281036040840152611ff48185611f28565b60006020828403121561213a57600080fd5b815167ffffffffffffffff81111561215157600080fd5b8201601f8101841361216257600080fd5b805161217061182a826117e3565b81815285602083850101111561218557600080fd5b611a0582602083016020860161190156fea2646970667358221220f213b9045b40918ed2b5d304162ec2dfc3bc6b581b97362b423df61fd1436e5c64736f6c63430008150033a264697066735822122016636ee300fab238f4f099f32ba33a2f9dd9cbd27246df211a2a76dcc4263a7a64736f6c63430008150033", + "sourceMap": "162:1734:28:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;831:108;;;;;;;;;;-1:-1:-1;831:108:28;;;;;:::i;:::-;;:::i;:::-;;945:644;;;;;;:::i;:::-;;:::i;415:288::-;;;;;;;;;;-1:-1:-1;415:288:28;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;1953:32:36;;;1935:51;;1923:2;1908:18;415:288:28;;;;;;;;1691:168;;;;;;;;;;;;;:::i;1595:90::-;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;1831:101:20:-;;;;;;;;;;;;;:::i;1201:85::-;;;;;;;;;;-1:-1:-1;1247:7:20;1273:6;-1:-1:-1;;;;;1273:6:20;1201:85;;294:115:28;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;264:23::-;;;;;;;;;;-1:-1:-1;264:23:28;;;;;:::i;:::-;;:::i;228:30::-;;;;;;;;;;-1:-1:-1;228:30:28;;;;-1:-1:-1;;;;;228:30:28;;;2081:198:20;;;;;;;;;;-1:-1:-1;2081:198:20;;;;;:::i;:::-;;:::i;197:25:28:-;;;;;;;;;;;;;;;;;;;3542::36;;;3530:2;3515:18;197:25:28;3396:177:36;831:108:28;1094:13:20;:11;:13::i;:::-;906:15:28::1;:26:::0;;-1:-1:-1;;;;;;906:26:28::1;-1:-1:-1::0;;;;;906:26:28;;;::::1;::::0;;;::::1;::::0;;831:108::o;945:644::-;1067:10;;1054:9;:23;1050:87;;1100:26;;-1:-1:-1;;;1100:26:28;;1116:9;1100:26;;;3542:25:36;3515:18;;1100:26:28;;;;;;;;1050:87;1147:21;1171:24;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;1147:48;;1206:20;1322:4;1311:8;1305:15;1300:2;1290:8;1286:17;1283:1;1275:52;1380:15;;1347:49;;-1:-1:-1;;;1347:49:28;;-1:-1:-1;;;;;1380:15:28;;;1347:49;;;1935:51:36;1259:68:28;;-1:-1:-1;1347:32:28;;;;;1908:18:36;;1347:49:28;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;1406:34:28;;-1:-1:-1;;;1406:34:28;;-1:-1:-1;;;;;1406:28:28;;;-1:-1:-1;1406:28:28;;-1:-1:-1;1406:34:28;;1435:4;;;;1406:34;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;1450:38:28;;-1:-1:-1;;;1450:38:28;;-1:-1:-1;;;;;1450:30:28;;;-1:-1:-1;1450:30:28;;-1:-1:-1;1450:38:28;;1481:6;;;;1450:38;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;1498:49:28;;-1:-1:-1;;;1498:49:28;;1537:9;1498:49;;;1935:51:36;-1:-1:-1;;;;;1498:38:28;;;-1:-1:-1;1498:38:28;;-1:-1:-1;1908:18:36;;1498:49:28;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;1557:6:28;:25;;;;;;;-1:-1:-1;1557:25:28;;;;;;;;-1:-1:-1;;;;;;1557:25:28;-1:-1:-1;;;;;1557:25:28;;;;;;;;;;;-1:-1:-1;;;;;;;;945:644:28:o;415:288::-;499:7;613:4;606:12;;620:6;628:4;644:24;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;634:35;;;;;;589:81;;;;;;;;;;-1:-1:-1;;;;;;4196:26:36;;;;4184:39;;4260:2;4256:15;;;;-1:-1:-1;;4252:53:36;4248:1;4239:11;;4232:74;4331:2;4322:12;;4315:28;4368:2;4359:12;;4352:28;4405:2;4396:12;;3973:441;589:81:28;;;;-1:-1:-1;;589:81:28;;;;;;;;;579:92;;589:81;579:92;;;;;415:288;-1:-1:-1;;;415:288:28:o;1691:168::-;1094:13:20;:11;:13::i;:::-;1756:49:28::1;::::0;1739:12:::1;::::0;1756:10:::1;::::0;1779:21:::1;::::0;1739:12;1756:49;1739:12;1756:49;1779:21;1756:10;:49:::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1738:67;;;1823:7;1815:37;;;::::0;-1:-1:-1;;;1815:37:28;;4831:2:36;1815:37:28::1;::::0;::::1;4813:21:36::0;4870:2;4850:18;;;4843:30;-1:-1:-1;;;4889:18:36;;;4882:47;4946:18;;1815:37:28::1;4629:341:36::0;1815:37:28::1;1728:131;1691:168::o:0;1595:90::-;1637:16;1672:6;1665:13;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;1665:13:28;;;;;;;;;;;;;;;;;;;;;;;1595:90;:::o;1831:101:20:-;1094:13;:11;:13::i;:::-;1895:30:::1;1922:1;1895:18;:30::i;:::-;1831:101::o:0;294:115:28:-;347:12;378:24;;;;;;;;:::i;:::-;-1:-1:-1;;378:24:28;;;;;;;;;;;;;;;294:115;-1:-1:-1;294:115:28:o;264:23::-;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;264:23:28;;-1:-1:-1;264:23:28;:::o;2081:198:20:-;1094:13;:11;:13::i;:::-;-1:-1:-1;;;;;2169:22:20;::::1;2161:73;;;::::0;-1:-1:-1;;;2161:73:20;;5177:2:36;2161:73:20::1;::::0;::::1;5159:21:36::0;5216:2;5196:18;;;5189:30;5255:34;5235:18;;;5228:62;-1:-1:-1;;;5306:18:36;;;5299:36;5352:19;;2161:73:20::1;4975:402:36::0;2161:73:20::1;2244:28;2263:8;2244:18;:28::i;1359:130::-:0;1247:7;1273:6;-1:-1:-1;;;;;1273:6:20;719:10:21;1422:23:20;1414:68;;;;-1:-1:-1;;;1414:68:20;;5584:2:36;1414:68:20;;;5566:21:36;;;5603:18;;;5596:30;5662:34;5642:18;;;5635:62;5714:18;;1414:68:20;5382:356:36;2433:187:20;2506:16;2525:6;;-1:-1:-1;;;;;2541:17:20;;;-1:-1:-1;;;;;;2541:17:20;;;;;;2573:40;;2525:6;;;;;;;2573:40;;2506:16;2573:40;2496:124;2433:187;:::o;-1:-1:-1:-;;;;;;;;:::o;14:173:36:-;82:20;;-1:-1:-1;;;;;131:31:36;;121:42;;111:70;;177:1;174;167:12;111:70;14:173;;;:::o;192:186::-;251:6;304:2;292:9;283:7;279:23;275:32;272:52;;;320:1;317;310:12;272:52;343:29;362:9;343:29;:::i;:::-;333:39;192:186;-1:-1:-1;;;192:186:36:o;383:348::-;435:8;445:6;499:3;492:4;484:6;480:17;476:27;466:55;;517:1;514;507:12;466:55;-1:-1:-1;540:20:36;;583:18;572:30;;569:50;;;615:1;612;605:12;569:50;652:4;644:6;640:17;628:29;;704:3;697:4;688:6;680;676:19;672:30;669:39;666:59;;;721:1;718;711:12;666:59;383:348;;;;;:::o;736:789::-;837:6;845;853;861;869;922:2;910:9;901:7;897:23;893:32;890:52;;;938:1;935;928:12;890:52;978:9;965:23;1007:18;1048:2;1040:6;1037:14;1034:34;;;1064:1;1061;1054:12;1034:34;1103:59;1154:7;1145:6;1134:9;1130:22;1103:59;:::i;:::-;1181:8;;-1:-1:-1;1077:85:36;-1:-1:-1;1269:2:36;1254:18;;1241:32;;-1:-1:-1;1285:16:36;;;1282:36;;;1314:1;1311;1304:12;1282:36;;1353:61;1406:7;1395:8;1384:9;1380:24;1353:61;:::i;:::-;736:789;;;;-1:-1:-1;1433:8:36;1515:2;1500:18;1487:32;;736:789;-1:-1:-1;;;;736:789:36:o;1530:254::-;1598:6;1606;1659:2;1647:9;1638:7;1634:23;1630:32;1627:52;;;1675:1;1672;1665:12;1627:52;1698:29;1717:9;1698:29;:::i;:::-;1688:39;1774:2;1759:18;;;;1746:32;;-1:-1:-1;;;1530:254:36:o;1997:658::-;2168:2;2220:21;;;2290:13;;2193:18;;;2312:22;;;2139:4;;2168:2;2391:15;;;;2365:2;2350:18;;;2139:4;2434:195;2448:6;2445:1;2442:13;2434:195;;;2513:13;;-1:-1:-1;;;;;2509:39:36;2497:52;;2604:15;;;;2569:12;;;;2545:1;2463:9;2434:195;;;-1:-1:-1;2646:3:36;;1997:658;-1:-1:-1;;;;;;1997:658:36:o;2660:546::-;2770:4;2799:2;2828;2817:9;2810:21;2860:6;2854:13;2903:6;2898:2;2887:9;2883:18;2876:34;2928:1;2938:140;2952:6;2949:1;2946:13;2938:140;;;3047:14;;;3043:23;;3037:30;3013:17;;;3032:2;3009:26;3002:66;2967:10;;2938:140;;;2942:3;3127:1;3122:2;3113:6;3102:9;3098:22;3094:31;3087:42;3197:2;3190;3186:7;3181:2;3173:6;3169:15;3165:29;3154:9;3150:45;3146:54;3138:62;;;;2660:546;;;;:::o;3211:180::-;3270:6;3323:2;3311:9;3302:7;3298:23;3294:32;3291:52;;;3339:1;3336;3329:12;3291:52;-1:-1:-1;3362:23:36;;3211:180;-1:-1:-1;3211:180:36:o;3578:390::-;3737:2;3726:9;3719:21;3776:6;3771:2;3760:9;3756:18;3749:34;3833:6;3825;3820:2;3809:9;3805:18;3792:48;3889:1;3860:22;;;3884:2;3856:31;;;3849:42;;;;3952:2;3931:15;;;-1:-1:-1;;3927:29:36;3912:45;3908:54;;3578:390;-1:-1:-1;3578:390:36:o", "linkReferences": { "lib/eth-projects-monorepo/packages/eth-projects-contracts/contracts/lib/utils/Bytes.sol": { "Bytes": [ { - "start": 5445, + "start": 5647, "length": 20 } ] @@ -250,12 +261,13 @@ "setDefaultRenderer(address)": "03fb31e8", "sheetPrice()": "f52be2a2", "sheets(uint256)": "ae28505e", - "transferOwnership(address)": "f2fde38b" + "transferOwnership(address)": "f2fde38b", + "withdraw()": "3ccfd60b" }, - "rawMetadata": "{\"compiler\":{\"version\":\"0.8.17+commit.8df45f5f\"},\"language\":\"Solidity\",\"output\":{\"abi\":[{\"inputs\":[{\"internalType\":\"address\",\"name\":\"renderer\",\"type\":\"address\"},{\"internalType\":\"uint256\",\"name\":\"price\",\"type\":\"uint256\"}],\"stateMutability\":\"nonpayable\",\"type\":\"constructor\"},{\"inputs\":[{\"internalType\":\"uint256\",\"name\":\"price\",\"type\":\"uint256\"}],\"name\":\"SheetPriceError\",\"type\":\"error\"},{\"anonymous\":false,\"inputs\":[{\"indexed\":true,\"internalType\":\"address\",\"name\":\"previousOwner\",\"type\":\"address\"},{\"indexed\":true,\"internalType\":\"address\",\"name\":\"newOwner\",\"type\":\"address\"}],\"name\":\"OwnershipTransferred\",\"type\":\"event\"},{\"inputs\":[{\"internalType\":\"string\",\"name\":\"name\",\"type\":\"string\"},{\"internalType\":\"string\",\"name\":\"symbol\",\"type\":\"string\"},{\"internalType\":\"bytes32\",\"name\":\"salt\",\"type\":\"bytes32\"}],\"name\":\"addSheet\",\"outputs\":[],\"stateMutability\":\"payable\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"defaultRenderer\",\"outputs\":[{\"internalType\":\"address\",\"name\":\"\",\"type\":\"address\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"sender\",\"type\":\"address\"},{\"internalType\":\"bytes32\",\"name\":\"salt\",\"type\":\"bytes32\"}],\"name\":\"getSheetCreationAddress\",\"outputs\":[{\"internalType\":\"address\",\"name\":\"\",\"type\":\"address\"}],\"stateMutability\":\"pure\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"getSheetCreationCode\",\"outputs\":[{\"internalType\":\"bytes\",\"name\":\"\",\"type\":\"bytes\"}],\"stateMutability\":\"pure\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"getSheets\",\"outputs\":[{\"internalType\":\"address[]\",\"name\":\"\",\"type\":\"address[]\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"owner\",\"outputs\":[{\"internalType\":\"address\",\"name\":\"\",\"type\":\"address\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"renounceOwnership\",\"outputs\":[],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"renderer\",\"type\":\"address\"}],\"name\":\"setDefaultRenderer\",\"outputs\":[],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"sheetPrice\",\"outputs\":[{\"internalType\":\"uint256\",\"name\":\"\",\"type\":\"uint256\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"uint256\",\"name\":\"\",\"type\":\"uint256\"}],\"name\":\"sheets\",\"outputs\":[{\"internalType\":\"address\",\"name\":\"\",\"type\":\"address\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"newOwner\",\"type\":\"address\"}],\"name\":\"transferOwnership\",\"outputs\":[],\"stateMutability\":\"nonpayable\",\"type\":\"function\"}],\"devdoc\":{\"kind\":\"dev\",\"methods\":{\"owner()\":{\"details\":\"Returns the address of the current owner.\"},\"renounceOwnership()\":{\"details\":\"Leaves the contract without owner. It will not be possible to call `onlyOwner` functions anymore. Can only be called by the current owner. NOTE: Renouncing ownership will leave the contract without an owner, thereby removing any functionality that is only available to the owner.\"},\"transferOwnership(address)\":{\"details\":\"Transfers ownership of the contract to a new account (`newOwner`). Can only be called by the current owner.\"}},\"version\":1},\"userdoc\":{\"kind\":\"user\",\"methods\":{},\"version\":1}},\"settings\":{\"compilationTarget\":{\"src/Evmsheet.sol\":\"Evmsheet\"},\"evmVersion\":\"london\",\"libraries\":{},\"metadata\":{\"bytecodeHash\":\"ipfs\"},\"optimizer\":{\"enabled\":true,\"runs\":200},\"remappings\":[\":@clemlaflemme/=lib/eth-projects-monorepo/packages/eth-projects-contracts/contracts/\",\":ds-test/=lib/forge-std/lib/ds-test/src/\",\":eth-projects-monorepo/=lib/eth-projects-monorepo/\",\":forge-std/=lib/forge-std/src/\",\":openzeppelin-contracts/=lib/openzeppelin-contracts/\",\":openzeppelin/=lib/openzeppelin-contracts/contracts/\",\":renderers/=lib/eth-projects-monorepo/packages/eth-projects-contracts/contracts/lib/renderers/\",\":safe-contracts/=lib/safe-contracts/contracts/\",\":solmate/=lib/solmate/src/\",\":utils/=lib/eth-projects-monorepo/packages/eth-projects-contracts/contracts/lib/utils/\"]},\"sources\":{\"lib/eth-projects-monorepo/packages/eth-projects-contracts/contracts/lib/utils/Bytes.sol\":{\"keccak256\":\"0xd894eac2f223760da25e079d125b4c0de282a6d609a1e8a1834f5dc1c02550d5\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://2c305f8b0dc8b57df9e5b06e51e3e6ed374c2e655cc5edf7b9a7e0d86eb629a0\",\"dweb:/ipfs/QmXi9SmrcYfqSVGVP4WMtYQmBMhGVm8xdLus54YojtaNBi\"]},\"lib/openzeppelin-contracts/contracts/access/Ownable.sol\":{\"keccak256\":\"0xa94b34880e3c1b0b931662cb1c09e5dfa6662f31cba80e07c5ee71cd135c9673\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://40fb1b5102468f783961d0af743f91b9980cf66b50d1d12009f6bb1869cea4d2\",\"dweb:/ipfs/QmYqEbJML4jB1GHbzD4cUZDtJg5wVwNm3vDJq1GbyDus8y\"]},\"lib/openzeppelin-contracts/contracts/utils/Context.sol\":{\"keccak256\":\"0xe2e337e6dde9ef6b680e07338c493ebea1b5fd09b43424112868e9cc1706bca7\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://6df0ddf21ce9f58271bdfaa85cde98b200ef242a05a3f85c2bc10a8294800a92\",\"dweb:/ipfs/QmRK2Y5Yc6BK7tGKkgsgn3aJEQGi5aakeSPZvS65PV8Xp3\"]},\"lib/solmate/src/tokens/ERC721.sol\":{\"keccak256\":\"0x04af19f16f00ba65ae168d6d10da5210dc18da6bcec6974dccf984ba388aa22d\",\"license\":\"AGPL-3.0-only\",\"urls\":[\"bzz-raw://098e69f22b67da6927e03203c12ebfda5b0490518f6d9cce7853001ac5ad8403\",\"dweb:/ipfs/QmYyzfurQe88PsVjRNfutV3gS7Vi68f7zgtVZVtLfd4ViK\"]},\"src/Evmsheet.sol\":{\"keccak256\":\"0x9ab052787b8da34770316f764e6ed36ecd2153820e5c10e42156d80cf36337d1\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://5a1cde0dff946efc7164d4dbaf7a3bd4f52c28ae98a47593789f037990a8d613\",\"dweb:/ipfs/QmQvoLhTdSpiX7b9WX7rfrDrvNyyf9gfwLqtQ9V5TeDzcy\"]},\"src/Interfaces.sol\":{\"keccak256\":\"0x6e20e29459d96085394767369237fb5a02d7cf6e22b930debedf47325c39c707\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://04351e9c841b435cb1e20bf4dd3ccab087dad3d4ba5a57908c8f674181e19cb5\",\"dweb:/ipfs/QmY8oxNAeMrP3mf7yNHvdz5JgafffP4yN8jnxWHEHoo6Sx\"]},\"src/Sheet.sol\":{\"keccak256\":\"0xdcf71eec34ef84cb2838babe8242dc9628a477d467dfb746e975ff40c168315e\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://1f54dd464e26c05289d0a14b6f3e3d3f6583f2a1bb1be1ddb5535fbc8061057a\",\"dweb:/ipfs/QmXaK6msxofR8mcJK6i9v5xHT75D9nAtnU5Ks5QSWzYG2G\"]}},\"version\":1}", + "rawMetadata": "{\"compiler\":{\"version\":\"0.8.21+commit.d9974bed\"},\"language\":\"Solidity\",\"output\":{\"abi\":[{\"inputs\":[{\"internalType\":\"address\",\"name\":\"renderer\",\"type\":\"address\"},{\"internalType\":\"uint256\",\"name\":\"price\",\"type\":\"uint256\"}],\"stateMutability\":\"nonpayable\",\"type\":\"constructor\"},{\"inputs\":[{\"internalType\":\"uint256\",\"name\":\"price\",\"type\":\"uint256\"}],\"name\":\"SheetPriceError\",\"type\":\"error\"},{\"anonymous\":false,\"inputs\":[{\"indexed\":true,\"internalType\":\"address\",\"name\":\"previousOwner\",\"type\":\"address\"},{\"indexed\":true,\"internalType\":\"address\",\"name\":\"newOwner\",\"type\":\"address\"}],\"name\":\"OwnershipTransferred\",\"type\":\"event\"},{\"inputs\":[{\"internalType\":\"string\",\"name\":\"name\",\"type\":\"string\"},{\"internalType\":\"string\",\"name\":\"symbol\",\"type\":\"string\"},{\"internalType\":\"bytes32\",\"name\":\"salt\",\"type\":\"bytes32\"}],\"name\":\"addSheet\",\"outputs\":[],\"stateMutability\":\"payable\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"defaultRenderer\",\"outputs\":[{\"internalType\":\"address\",\"name\":\"\",\"type\":\"address\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"sender\",\"type\":\"address\"},{\"internalType\":\"bytes32\",\"name\":\"salt\",\"type\":\"bytes32\"}],\"name\":\"getSheetCreationAddress\",\"outputs\":[{\"internalType\":\"address\",\"name\":\"\",\"type\":\"address\"}],\"stateMutability\":\"pure\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"getSheetCreationCode\",\"outputs\":[{\"internalType\":\"bytes\",\"name\":\"\",\"type\":\"bytes\"}],\"stateMutability\":\"pure\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"getSheets\",\"outputs\":[{\"internalType\":\"address[]\",\"name\":\"\",\"type\":\"address[]\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"owner\",\"outputs\":[{\"internalType\":\"address\",\"name\":\"\",\"type\":\"address\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"renounceOwnership\",\"outputs\":[],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"renderer\",\"type\":\"address\"}],\"name\":\"setDefaultRenderer\",\"outputs\":[],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"sheetPrice\",\"outputs\":[{\"internalType\":\"uint256\",\"name\":\"\",\"type\":\"uint256\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"uint256\",\"name\":\"\",\"type\":\"uint256\"}],\"name\":\"sheets\",\"outputs\":[{\"internalType\":\"address\",\"name\":\"\",\"type\":\"address\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"newOwner\",\"type\":\"address\"}],\"name\":\"transferOwnership\",\"outputs\":[],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"withdraw\",\"outputs\":[],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"stateMutability\":\"payable\",\"type\":\"receive\"}],\"devdoc\":{\"kind\":\"dev\",\"methods\":{\"owner()\":{\"details\":\"Returns the address of the current owner.\"},\"renounceOwnership()\":{\"details\":\"Leaves the contract without owner. It will not be possible to call `onlyOwner` functions anymore. Can only be called by the current owner. NOTE: Renouncing ownership will leave the contract without an owner, thereby removing any functionality that is only available to the owner.\"},\"transferOwnership(address)\":{\"details\":\"Transfers ownership of the contract to a new account (`newOwner`). Can only be called by the current owner.\"}},\"version\":1},\"userdoc\":{\"kind\":\"user\",\"methods\":{},\"version\":1}},\"settings\":{\"compilationTarget\":{\"src/Evmsheet.sol\":\"Evmsheet\"},\"evmVersion\":\"paris\",\"libraries\":{},\"metadata\":{\"bytecodeHash\":\"ipfs\"},\"optimizer\":{\"enabled\":true,\"runs\":200},\"remappings\":[\":@clemlaflemme/=lib/eth-projects-monorepo/packages/eth-projects-contracts/contracts/\",\":ds-test/=lib/forge-std/lib/ds-test/src/\",\":eth-projects-monorepo/=lib/eth-projects-monorepo/\",\":forge-std/=lib/forge-std/src/\",\":openzeppelin-contracts/=lib/openzeppelin-contracts/\",\":openzeppelin/=lib/openzeppelin-contracts/contracts/\",\":renderers/=lib/eth-projects-monorepo/packages/eth-projects-contracts/contracts/lib/renderers/\",\":safe-contracts/=lib/safe-contracts/contracts/\",\":solmate/=lib/solmate/src/\",\":utils/=lib/eth-projects-monorepo/packages/eth-projects-contracts/contracts/lib/utils/\"]},\"sources\":{\"lib/eth-projects-monorepo/packages/eth-projects-contracts/contracts/lib/utils/Bytes.sol\":{\"keccak256\":\"0xd894eac2f223760da25e079d125b4c0de282a6d609a1e8a1834f5dc1c02550d5\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://2c305f8b0dc8b57df9e5b06e51e3e6ed374c2e655cc5edf7b9a7e0d86eb629a0\",\"dweb:/ipfs/QmXi9SmrcYfqSVGVP4WMtYQmBMhGVm8xdLus54YojtaNBi\"]},\"lib/openzeppelin-contracts/contracts/access/Ownable.sol\":{\"keccak256\":\"0xa94b34880e3c1b0b931662cb1c09e5dfa6662f31cba80e07c5ee71cd135c9673\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://40fb1b5102468f783961d0af743f91b9980cf66b50d1d12009f6bb1869cea4d2\",\"dweb:/ipfs/QmYqEbJML4jB1GHbzD4cUZDtJg5wVwNm3vDJq1GbyDus8y\"]},\"lib/openzeppelin-contracts/contracts/utils/Context.sol\":{\"keccak256\":\"0xe2e337e6dde9ef6b680e07338c493ebea1b5fd09b43424112868e9cc1706bca7\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://6df0ddf21ce9f58271bdfaa85cde98b200ef242a05a3f85c2bc10a8294800a92\",\"dweb:/ipfs/QmRK2Y5Yc6BK7tGKkgsgn3aJEQGi5aakeSPZvS65PV8Xp3\"]},\"lib/solmate/src/tokens/ERC721.sol\":{\"keccak256\":\"0x04af19f16f00ba65ae168d6d10da5210dc18da6bcec6974dccf984ba388aa22d\",\"license\":\"AGPL-3.0-only\",\"urls\":[\"bzz-raw://098e69f22b67da6927e03203c12ebfda5b0490518f6d9cce7853001ac5ad8403\",\"dweb:/ipfs/QmYyzfurQe88PsVjRNfutV3gS7Vi68f7zgtVZVtLfd4ViK\"]},\"src/Evmsheet.sol\":{\"keccak256\":\"0x7968e3a5a220e5d4a74e1a30c54f8a5bca89784c7c91d572fa89ea31f116aa64\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://071343ebd0e34ece8ed56c4b914ec41b175eee17ac503ac30e09deffdb96a4a1\",\"dweb:/ipfs/QmTiT6DbMCLtYv9bGJJAw9czjk3WHn4ZhFJppmdhCfZvzp\"]},\"src/Interfaces.sol\":{\"keccak256\":\"0x6e20e29459d96085394767369237fb5a02d7cf6e22b930debedf47325c39c707\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://04351e9c841b435cb1e20bf4dd3ccab087dad3d4ba5a57908c8f674181e19cb5\",\"dweb:/ipfs/QmY8oxNAeMrP3mf7yNHvdz5JgafffP4yN8jnxWHEHoo6Sx\"]},\"src/Sheet.sol\":{\"keccak256\":\"0xdcf71eec34ef84cb2838babe8242dc9628a477d467dfb746e975ff40c168315e\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://1f54dd464e26c05289d0a14b6f3e3d3f6583f2a1bb1be1ddb5535fbc8061057a\",\"dweb:/ipfs/QmXaK6msxofR8mcJK6i9v5xHT75D9nAtnU5Ks5QSWzYG2G\"]}},\"version\":1}", "metadata": { "compiler": { - "version": "0.8.17+commit.8df45f5f" + "version": "0.8.21+commit.d9974bed" }, "language": "Solidity", "output": { @@ -465,6 +477,17 @@ "stateMutability": "nonpayable", "type": "function", "name": "transferOwnership" + }, + { + "inputs": [], + "stateMutability": "nonpayable", + "type": "function", + "name": "withdraw" + }, + { + "inputs": [], + "stateMutability": "payable", + "type": "receive" } ], "devdoc": { @@ -490,16 +513,16 @@ }, "settings": { "remappings": [ - ":@clemlaflemme/=lib/eth-projects-monorepo/packages/eth-projects-contracts/contracts/", - ":ds-test/=lib/forge-std/lib/ds-test/src/", - ":eth-projects-monorepo/=lib/eth-projects-monorepo/", - ":forge-std/=lib/forge-std/src/", - ":openzeppelin-contracts/=lib/openzeppelin-contracts/", - ":openzeppelin/=lib/openzeppelin-contracts/contracts/", - ":renderers/=lib/eth-projects-monorepo/packages/eth-projects-contracts/contracts/lib/renderers/", - ":safe-contracts/=lib/safe-contracts/contracts/", - ":solmate/=lib/solmate/src/", - ":utils/=lib/eth-projects-monorepo/packages/eth-projects-contracts/contracts/lib/utils/" + "@clemlaflemme/=lib/eth-projects-monorepo/packages/eth-projects-contracts/contracts/", + "ds-test/=lib/forge-std/lib/ds-test/src/", + "eth-projects-monorepo/=lib/eth-projects-monorepo/", + "forge-std/=lib/forge-std/src/", + "openzeppelin-contracts/=lib/openzeppelin-contracts/", + "openzeppelin/=lib/openzeppelin-contracts/contracts/", + "renderers/=lib/eth-projects-monorepo/packages/eth-projects-contracts/contracts/lib/renderers/", + "safe-contracts/=lib/safe-contracts/contracts/", + "solmate/=lib/solmate/src/", + "utils/=lib/eth-projects-monorepo/packages/eth-projects-contracts/contracts/lib/utils/" ], "optimizer": { "enabled": true, @@ -547,10 +570,10 @@ "license": "AGPL-3.0-only" }, "src/Evmsheet.sol": { - "keccak256": "0x9ab052787b8da34770316f764e6ed36ecd2153820e5c10e42156d80cf36337d1", + "keccak256": "0x7968e3a5a220e5d4a74e1a30c54f8a5bca89784c7c91d572fa89ea31f116aa64", "urls": [ - "bzz-raw://5a1cde0dff946efc7164d4dbaf7a3bd4f52c28ae98a47593789f037990a8d613", - "dweb:/ipfs/QmQvoLhTdSpiX7b9WX7rfrDrvNyyf9gfwLqtQ9V5TeDzcy" + "bzz-raw://071343ebd0e34ece8ed56c4b914ec41b175eee17ac503ac30e09deffdb96a4a1", + "dweb:/ipfs/QmTiT6DbMCLtYv9bGJJAw9czjk3WHn4ZhFJppmdhCfZvzp" ], "license": "MIT" }, @@ -575,16 +598,16 @@ }, "ast": { "absolutePath": "src/Evmsheet.sol", - "id": 31302, + "id": 31331, "exportedSymbols": { "Bytes": [ 762 ], "CellData": [ - 31465 + 31494 ], "CellRendered": [ - 31472 + 31501 ], "Context": [ 29323 @@ -596,32 +619,32 @@ 30939 ], "Evmsheet": [ - 31301 + 31330 ], "ICellRenderer": [ - 31315 + 31344 ], "ISheet": [ - 31351 + 31380 ], "NonExistantTokenError": [ - 31482 + 31511 ], "Ownable": [ 29301 ], "SetCellIsNotOwnerError": [ - 31478 + 31507 ], "Sheet": [ - 32045 + 32074 ], "SheetPriceError": [ 31139 ] }, "nodeType": "SourceUnit", - "src": "32:1656:28", + "src": "32:1865:28", "nodes": [ { "id": 31133, @@ -643,7 +666,7 @@ "absolutePath": "lib/openzeppelin-contracts/contracts/access/Ownable.sol", "file": "openzeppelin/access/Ownable.sol", "nameLocation": "-1:-1:-1", - "scope": 31302, + "scope": 31331, "sourceUnit": 29302, "symbolAliases": [], "unitAlias": "" @@ -656,8 +679,8 @@ "absolutePath": "src/Sheet.sol", "file": "./Sheet.sol", "nameLocation": "-1:-1:-1", - "scope": 31302, - "sourceUnit": 32046, + "scope": 31331, + "sourceUnit": 32075, "symbolAliases": [], "unitAlias": "" }, @@ -705,9 +728,9 @@ } }, { - "id": 31301, + "id": 31330, "nodeType": "ContractDefinition", - "src": "162:1525:28", + "src": "162:1734:28", "nodes": [ { "id": 31143, @@ -719,7 +742,7 @@ "mutability": "mutable", "name": "sheetPrice", "nameLocation": "212:10:28", - "scope": 31301, + "scope": 31330, "stateVariable": true, "storageLocation": "default", "typeDescriptions": { @@ -748,7 +771,7 @@ "mutability": "mutable", "name": "defaultRenderer", "nameLocation": "243:15:28", - "scope": 31301, + "scope": 31330, "stateVariable": true, "storageLocation": "default", "typeDescriptions": { @@ -778,7 +801,7 @@ "mutability": "mutable", "name": "sheets", "nameLocation": "281:6:28", - "scope": 31301, + "scope": 31330, "stateVariable": true, "storageLocation": "default", "typeDescriptions": { @@ -827,10 +850,10 @@ "name": "Sheet", "nodeType": "Identifier", "overloadedDeclarations": [], - "referencedDeclaration": 32045, + "referencedDeclaration": 32074, "src": "383:5:28", "typeDescriptions": { - "typeIdentifier": "t_type$_t_contract$_Sheet_$32045_$", + "typeIdentifier": "t_type$_t_contract$_Sheet_$32074_$", "typeString": "type(contract Sheet)" } } @@ -838,7 +861,7 @@ "expression": { "argumentTypes": [ { - "typeIdentifier": "t_type$_t_contract$_Sheet_$32045_$", + "typeIdentifier": "t_type$_t_contract$_Sheet_$32074_$", "typeString": "type(contract Sheet)" } ], @@ -865,7 +888,7 @@ "src": "378:11:28", "tryCall": false, "typeDescriptions": { - "typeIdentifier": "t_magic_meta_type_t_contract$_Sheet_$32045", + "typeIdentifier": "t_magic_meta_type_t_contract$_Sheet_$32074", "typeString": "type(contract Sheet)" } }, @@ -936,7 +959,7 @@ ], "src": "346:14:28" }, - "scope": 31301, + "scope": 31330, "stateMutability": "pure", "virtual": false, "visibility": "public" @@ -1058,10 +1081,10 @@ "name": "Sheet", "nodeType": "Identifier", "overloadedDeclarations": [], - "referencedDeclaration": 32045, + "referencedDeclaration": 32074, "src": "649:5:28", "typeDescriptions": { - "typeIdentifier": "t_type$_t_contract$_Sheet_$32045_$", + "typeIdentifier": "t_type$_t_contract$_Sheet_$32074_$", "typeString": "type(contract Sheet)" } } @@ -1069,7 +1092,7 @@ "expression": { "argumentTypes": [ { - "typeIdentifier": "t_type$_t_contract$_Sheet_$32045_$", + "typeIdentifier": "t_type$_t_contract$_Sheet_$32074_$", "typeString": "type(contract Sheet)" } ], @@ -1096,7 +1119,7 @@ "src": "644:11:28", "tryCall": false, "typeDescriptions": { - "typeIdentifier": "t_magic_meta_type_t_contract$_Sheet_$32045", + "typeIdentifier": "t_magic_meta_type_t_contract$_Sheet_$32074", "typeString": "type(contract Sheet)" } }, @@ -1485,7 +1508,7 @@ ], "src": "498:9:28" }, - "scope": 31301, + "scope": 31330, "stateMutability": "pure", "virtual": false, "visibility": "public" @@ -1662,7 +1685,7 @@ "parameters": [], "src": "754:0:28" }, - "scope": 31301, + "scope": 31330, "stateMutability": "nonpayable", "virtual": false, "visibility": "public" @@ -1787,7 +1810,7 @@ "parameters": [], "src": "896:0:28" }, - "scope": 31301, + "scope": 31330, "stateMutability": "nonpayable", "virtual": false, "visibility": "external" @@ -1983,10 +2006,10 @@ "name": "Sheet", "nodeType": "Identifier", "overloadedDeclarations": [], - "referencedDeclaration": 32045, + "referencedDeclaration": 32074, "src": "1176:5:28", "typeDescriptions": { - "typeIdentifier": "t_type$_t_contract$_Sheet_$32045_$", + "typeIdentifier": "t_type$_t_contract$_Sheet_$32074_$", "typeString": "type(contract Sheet)" } } @@ -1994,7 +2017,7 @@ "expression": { "argumentTypes": [ { - "typeIdentifier": "t_type$_t_contract$_Sheet_$32045_$", + "typeIdentifier": "t_type$_t_contract$_Sheet_$32074_$", "typeString": "type(contract Sheet)" } ], @@ -2021,7 +2044,7 @@ "src": "1171:11:28", "tryCall": false, "typeDescriptions": { - "typeIdentifier": "t_magic_meta_type_t_contract$_Sheet_$32045", + "typeIdentifier": "t_magic_meta_type_t_contract$_Sheet_$32074", "typeString": "type(contract Sheet)" } }, @@ -2082,16 +2105,19 @@ }, { "AST": { + "nativeSrc": "1245:92:28", "nodeType": "YulBlock", "src": "1245:92:28", "statements": [ { + "nativeSrc": "1259:68:28", "nodeType": "YulAssignment", "src": "1259:68:28", "value": { "arguments": [ { "kind": "number", + "nativeSrc": "1283:1:28", "nodeType": "YulLiteral", "src": "1283:1:28", "type": "", @@ -2101,11 +2127,13 @@ "arguments": [ { "name": "bytecode", + "nativeSrc": "1290:8:28", "nodeType": "YulIdentifier", "src": "1290:8:28" }, { "kind": "number", + "nativeSrc": "1300:2:28", "nodeType": "YulLiteral", "src": "1300:2:28", "type": "", @@ -2114,9 +2142,11 @@ ], "functionName": { "name": "add", + "nativeSrc": "1286:3:28", "nodeType": "YulIdentifier", "src": "1286:3:28" }, + "nativeSrc": "1286:17:28", "nodeType": "YulFunctionCall", "src": "1286:17:28" }, @@ -2124,35 +2154,42 @@ "arguments": [ { "name": "bytecode", + "nativeSrc": "1311:8:28", "nodeType": "YulIdentifier", "src": "1311:8:28" } ], "functionName": { "name": "mload", + "nativeSrc": "1305:5:28", "nodeType": "YulIdentifier", "src": "1305:5:28" }, + "nativeSrc": "1305:15:28", "nodeType": "YulFunctionCall", "src": "1305:15:28" }, { "name": "salt", + "nativeSrc": "1322:4:28", "nodeType": "YulIdentifier", "src": "1322:4:28" } ], "functionName": { "name": "create2", + "nativeSrc": "1275:7:28", "nodeType": "YulIdentifier", "src": "1275:7:28" }, + "nativeSrc": "1275:52:28", "nodeType": "YulFunctionCall", "src": "1275:52:28" }, "variableNames": [ { "name": "sheetAddress", + "nativeSrc": "1259:12:28", "nodeType": "YulIdentifier", "src": "1259:12:28" } @@ -2160,7 +2197,7 @@ } ] }, - "evmVersion": "london", + "evmVersion": "paris", "externalReferences": [ { "declaration": 31245, @@ -2244,10 +2281,10 @@ "name": "ISheet", "nodeType": "Identifier", "overloadedDeclarations": [], - "referencedDeclaration": 31351, + "referencedDeclaration": 31380, "src": "1347:6:28", "typeDescriptions": { - "typeIdentifier": "t_type$_t_contract$_ISheet_$31351_$", + "typeIdentifier": "t_type$_t_contract$_ISheet_$31380_$", "typeString": "type(contract ISheet)" } }, @@ -2263,7 +2300,7 @@ "src": "1347:20:28", "tryCall": false, "typeDescriptions": { - "typeIdentifier": "t_contract$_ISheet_$31351", + "typeIdentifier": "t_contract$_ISheet_$31380", "typeString": "contract ISheet" } }, @@ -2275,7 +2312,7 @@ "memberLocation": "1368:11:28", "memberName": "setRenderer", "nodeType": "MemberAccess", - "referencedDeclaration": 31320, + "referencedDeclaration": 31349, "src": "1347:32:28", "typeDescriptions": { "typeIdentifier": "t_function_external_nonpayable$_t_address_$returns$__$", @@ -2351,10 +2388,10 @@ "name": "ISheet", "nodeType": "Identifier", "overloadedDeclarations": [], - "referencedDeclaration": 31351, + "referencedDeclaration": 31380, "src": "1406:6:28", "typeDescriptions": { - "typeIdentifier": "t_type$_t_contract$_ISheet_$31351_$", + "typeIdentifier": "t_type$_t_contract$_ISheet_$31380_$", "typeString": "type(contract ISheet)" } }, @@ -2370,7 +2407,7 @@ "src": "1406:20:28", "tryCall": false, "typeDescriptions": { - "typeIdentifier": "t_contract$_ISheet_$31351", + "typeIdentifier": "t_contract$_ISheet_$31380", "typeString": "contract ISheet" } }, @@ -2382,7 +2419,7 @@ "memberLocation": "1427:7:28", "memberName": "setName", "nodeType": "MemberAccess", - "referencedDeclaration": 31330, + "referencedDeclaration": 31359, "src": "1406:28:28", "typeDescriptions": { "typeIdentifier": "t_function_external_nonpayable$_t_string_memory_ptr_$returns$__$", @@ -2458,10 +2495,10 @@ "name": "ISheet", "nodeType": "Identifier", "overloadedDeclarations": [], - "referencedDeclaration": 31351, + "referencedDeclaration": 31380, "src": "1450:6:28", "typeDescriptions": { - "typeIdentifier": "t_type$_t_contract$_ISheet_$31351_$", + "typeIdentifier": "t_type$_t_contract$_ISheet_$31380_$", "typeString": "type(contract ISheet)" } }, @@ -2477,7 +2514,7 @@ "src": "1450:20:28", "tryCall": false, "typeDescriptions": { - "typeIdentifier": "t_contract$_ISheet_$31351", + "typeIdentifier": "t_contract$_ISheet_$31380", "typeString": "contract ISheet" } }, @@ -2489,7 +2526,7 @@ "memberLocation": "1471:9:28", "memberName": "setSymbol", "nodeType": "MemberAccess", - "referencedDeclaration": 31335, + "referencedDeclaration": 31364, "src": "1450:30:28", "typeDescriptions": { "typeIdentifier": "t_function_external_nonpayable$_t_string_memory_ptr_$returns$__$", @@ -2580,10 +2617,10 @@ "name": "ISheet", "nodeType": "Identifier", "overloadedDeclarations": [], - "referencedDeclaration": 31351, + "referencedDeclaration": 31380, "src": "1498:6:28", "typeDescriptions": { - "typeIdentifier": "t_type$_t_contract$_ISheet_$31351_$", + "typeIdentifier": "t_type$_t_contract$_ISheet_$31380_$", "typeString": "type(contract ISheet)" } }, @@ -2599,7 +2636,7 @@ "src": "1498:20:28", "tryCall": false, "typeDescriptions": { - "typeIdentifier": "t_contract$_ISheet_$31351", + "typeIdentifier": "t_contract$_ISheet_$31380", "typeString": "contract ISheet" } }, @@ -2611,7 +2648,7 @@ "memberLocation": "1519:17:28", "memberName": "transferOwnership", "nodeType": "MemberAccess", - "referencedDeclaration": 31325, + "referencedDeclaration": 31354, "src": "1498:38:28", "typeDescriptions": { "typeIdentifier": "t_function_external_nonpayable$_t_address_$returns$__$", @@ -2683,7 +2720,7 @@ "nodeType": "MemberAccess", "src": "1557:11:28", "typeDescriptions": { - "typeIdentifier": "t_function_arraypush_nonpayable$_t_array$_t_address_$dyn_storage_ptr_$_t_address_$returns$__$bound_to$_t_array$_t_address_$dyn_storage_ptr_$", + "typeIdentifier": "t_function_arraypush_nonpayable$_t_array$_t_address_$dyn_storage_ptr_$_t_address_$returns$__$attached_to$_t_array$_t_address_$dyn_storage_ptr_$", "typeString": "function (address[] storage pointer,address)" } }, @@ -2809,7 +2846,7 @@ "parameters": [], "src": "1040:0:28" }, - "scope": 31301, + "scope": 31330, "stateMutability": "payable", "virtual": false, "visibility": "external" @@ -2901,10 +2938,392 @@ ], "src": "1636:18:28" }, - "scope": 31301, + "scope": 31330, "stateMutability": "view", "virtual": false, "visibility": "public" + }, + { + "id": 31325, + "nodeType": "FunctionDefinition", + "src": "1691:168:28", + "nodes": [], + "body": { + "id": 31324, + "nodeType": "Block", + "src": "1728:131:28", + "nodes": [], + "statements": [ + { + "assignments": [ + 31306, + null + ], + "declarations": [ + { + "constant": false, + "id": 31306, + "mutability": "mutable", + "name": "success", + "nameLocation": "1744:7:28", + "nodeType": "VariableDeclaration", + "scope": 31324, + "src": "1739:12:28", + "stateVariable": false, + "storageLocation": "default", + "typeDescriptions": { + "typeIdentifier": "t_bool", + "typeString": "bool" + }, + "typeName": { + "id": 31305, + "name": "bool", + "nodeType": "ElementaryTypeName", + "src": "1739:4:28", + "typeDescriptions": { + "typeIdentifier": "t_bool", + "typeString": "bool" + } + }, + "visibility": "internal" + }, + null + ], + "id": 31318, + "initialValue": { + "arguments": [ + { + "hexValue": "", + "id": 31316, + "isConstant": false, + "isLValue": false, + "isPure": true, + "kind": "string", + "lValueRequested": false, + "nodeType": "Literal", + "src": "1802:2:28", + "typeDescriptions": { + "typeIdentifier": "t_stringliteral_c5d2460186f7233c927e7db2dcc703c0e500b653ca82273b7bfad8045d85a470", + "typeString": "literal_string \"\"" + }, + "value": "" + } + ], + "expression": { + "argumentTypes": [ + { + "typeIdentifier": "t_stringliteral_c5d2460186f7233c927e7db2dcc703c0e500b653ca82273b7bfad8045d85a470", + "typeString": "literal_string \"\"" + } + ], + "expression": { + "argumentTypes": [ + { + "typeIdentifier": "t_stringliteral_c5d2460186f7233c927e7db2dcc703c0e500b653ca82273b7bfad8045d85a470", + "typeString": "literal_string \"\"" + } + ], + "expression": { + "expression": { + "id": 31307, + "name": "msg", + "nodeType": "Identifier", + "overloadedDeclarations": [], + "referencedDeclaration": -15, + "src": "1756:3:28", + "typeDescriptions": { + "typeIdentifier": "t_magic_message", + "typeString": "msg" + } + }, + "id": 31308, + "isConstant": false, + "isLValue": false, + "isPure": false, + "lValueRequested": false, + "memberLocation": "1760:6:28", + "memberName": "sender", + "nodeType": "MemberAccess", + "src": "1756:10:28", + "typeDescriptions": { + "typeIdentifier": "t_address", + "typeString": "address" + } + }, + "id": 31309, + "isConstant": false, + "isLValue": false, + "isPure": false, + "lValueRequested": false, + "memberLocation": "1767:4:28", + "memberName": "call", + "nodeType": "MemberAccess", + "src": "1756:15:28", + "typeDescriptions": { + "typeIdentifier": "t_function_barecall_payable$_t_bytes_memory_ptr_$returns$_t_bool_$_t_bytes_memory_ptr_$", + "typeString": "function (bytes memory) payable returns (bool,bytes memory)" + } + }, + "id": 31315, + "isConstant": false, + "isLValue": false, + "isPure": false, + "lValueRequested": false, + "names": [ + "value" + ], + "nodeType": "FunctionCallOptions", + "options": [ + { + "expression": { + "arguments": [ + { + "id": 31312, + "name": "this", + "nodeType": "Identifier", + "overloadedDeclarations": [], + "referencedDeclaration": -28, + "src": "1787:4:28", + "typeDescriptions": { + "typeIdentifier": "t_contract$_Evmsheet_$31330", + "typeString": "contract Evmsheet" + } + } + ], + "expression": { + "argumentTypes": [ + { + "typeIdentifier": "t_contract$_Evmsheet_$31330", + "typeString": "contract Evmsheet" + } + ], + "id": 31311, + "isConstant": false, + "isLValue": false, + "isPure": true, + "lValueRequested": false, + "nodeType": "ElementaryTypeNameExpression", + "src": "1779:7:28", + "typeDescriptions": { + "typeIdentifier": "t_type$_t_address_$", + "typeString": "type(address)" + }, + "typeName": { + "id": 31310, + "name": "address", + "nodeType": "ElementaryTypeName", + "src": "1779:7:28", + "typeDescriptions": {} + } + }, + "id": 31313, + "isConstant": false, + "isLValue": false, + "isPure": false, + "kind": "typeConversion", + "lValueRequested": false, + "nameLocations": [], + "names": [], + "nodeType": "FunctionCall", + "src": "1779:13:28", + "tryCall": false, + "typeDescriptions": { + "typeIdentifier": "t_address", + "typeString": "address" + } + }, + "id": 31314, + "isConstant": false, + "isLValue": false, + "isPure": false, + "lValueRequested": false, + "memberLocation": "1793:7:28", + "memberName": "balance", + "nodeType": "MemberAccess", + "src": "1779:21:28", + "typeDescriptions": { + "typeIdentifier": "t_uint256", + "typeString": "uint256" + } + } + ], + "src": "1756:45:28", + "typeDescriptions": { + "typeIdentifier": "t_function_barecall_payable$_t_bytes_memory_ptr_$returns$_t_bool_$_t_bytes_memory_ptr_$value", + "typeString": "function (bytes memory) payable returns (bool,bytes memory)" + } + }, + "id": 31317, + "isConstant": false, + "isLValue": false, + "isPure": false, + "kind": "functionCall", + "lValueRequested": false, + "nameLocations": [], + "names": [], + "nodeType": "FunctionCall", + "src": "1756:49:28", + "tryCall": false, + "typeDescriptions": { + "typeIdentifier": "t_tuple$_t_bool_$_t_bytes_memory_ptr_$", + "typeString": "tuple(bool,bytes memory)" + } + }, + "nodeType": "VariableDeclarationStatement", + "src": "1738:67:28" + }, + { + "expression": { + "arguments": [ + { + "id": 31320, + "name": "success", + "nodeType": "Identifier", + "overloadedDeclarations": [], + "referencedDeclaration": 31306, + "src": "1823:7:28", + "typeDescriptions": { + "typeIdentifier": "t_bool", + "typeString": "bool" + } + }, + { + "hexValue": "5769746864726177616c206661696c6564", + "id": 31321, + "isConstant": false, + "isLValue": false, + "isPure": true, + "kind": "string", + "lValueRequested": false, + "nodeType": "Literal", + "src": "1832:19:28", + "typeDescriptions": { + "typeIdentifier": "t_stringliteral_ec24209b271cd4d65181d9e8c6d9d718c94d28a7972011b1be42ea8d094a1a88", + "typeString": "literal_string \"Withdrawal failed\"" + }, + "value": "Withdrawal failed" + } + ], + "expression": { + "argumentTypes": [ + { + "typeIdentifier": "t_bool", + "typeString": "bool" + }, + { + "typeIdentifier": "t_stringliteral_ec24209b271cd4d65181d9e8c6d9d718c94d28a7972011b1be42ea8d094a1a88", + "typeString": "literal_string \"Withdrawal failed\"" + } + ], + "id": 31319, + "name": "require", + "nodeType": "Identifier", + "overloadedDeclarations": [ + -18, + -18 + ], + "referencedDeclaration": -18, + "src": "1815:7:28", + "typeDescriptions": { + "typeIdentifier": "t_function_require_pure$_t_bool_$_t_string_memory_ptr_$returns$__$", + "typeString": "function (bool,string memory) pure" + } + }, + "id": 31322, + "isConstant": false, + "isLValue": false, + "isPure": false, + "kind": "functionCall", + "lValueRequested": false, + "nameLocations": [], + "names": [], + "nodeType": "FunctionCall", + "src": "1815:37:28", + "tryCall": false, + "typeDescriptions": { + "typeIdentifier": "t_tuple$__$", + "typeString": "tuple()" + } + }, + "id": 31323, + "nodeType": "ExpressionStatement", + "src": "1815:37:28" + } + ] + }, + "functionSelector": "3ccfd60b", + "implemented": true, + "kind": "function", + "modifiers": [ + { + "id": 31303, + "kind": "modifierInvocation", + "modifierName": { + "id": 31302, + "name": "onlyOwner", + "nameLocations": [ + "1718:9:28" + ], + "nodeType": "IdentifierPath", + "referencedDeclaration": 29220, + "src": "1718:9:28" + }, + "nodeType": "ModifierInvocation", + "src": "1718:9:28" + } + ], + "name": "withdraw", + "nameLocation": "1700:8:28", + "parameters": { + "id": 31301, + "nodeType": "ParameterList", + "parameters": [], + "src": "1708:2:28" + }, + "returnParameters": { + "id": 31304, + "nodeType": "ParameterList", + "parameters": [], + "src": "1728:0:28" + }, + "scope": 31330, + "stateMutability": "nonpayable", + "virtual": false, + "visibility": "public" + }, + { + "id": 31329, + "nodeType": "FunctionDefinition", + "src": "1865:29:28", + "nodes": [], + "body": { + "id": 31328, + "nodeType": "Block", + "src": "1892:2:28", + "nodes": [], + "statements": [] + }, + "implemented": true, + "kind": "receive", + "modifiers": [], + "name": "", + "nameLocation": "-1:-1:-1", + "parameters": { + "id": 31326, + "nodeType": "ParameterList", + "parameters": [], + "src": "1872:2:28" + }, + "returnParameters": { + "id": 31327, + "nodeType": "ParameterList", + "parameters": [], + "src": "1892:0:28" + }, + "scope": 31330, + "stateMutability": "payable", + "virtual": false, + "visibility": "external" } ], "abstract": false, @@ -2927,20 +3346,23 @@ ], "canonicalName": "Evmsheet", "contractDependencies": [ - 32045 + 32074 ], "contractKind": "contract", "fullyImplemented": true, "linearizedBaseContracts": [ - 31301, + 31330, 29301, 29323 ], "name": "Evmsheet", "nameLocation": "171:8:28", - "scope": 31302, + "scope": 31331, "usedErrors": [ 31139 + ], + "usedEvents": [ + 29202 ] } ], diff --git a/packages/starksheet-solidity/out/Math.sol/Math.json b/packages/starksheet-solidity/out/Math.sol/Math.json index 58bb3951..259a4bf4 100644 --- a/packages/starksheet-solidity/out/Math.sol/Math.json +++ b/packages/starksheet-solidity/out/Math.sol/Math.json @@ -88,12 +88,12 @@ } ], "bytecode": { - "object": "0x608060405234801561001057600080fd5b506102cf806100206000396000f3fe608060405234801561001057600080fd5b506004361061004c5760003560e01c80630194db8e14610051578063072bdcc214610076578063a391c15b14610089578063b67d77c51461009c575b600080fd5b61006461005f366004610160565b6100af565b60405190815260200160405180910390f35b610064610084366004610160565b6100ef565b61006461009736600461021e565b610129565b6100646100aa36600461021e565b61013e565b600080805b83518110156100e8578381815181106100cf576100cf610240565b60200260200101518201915080806001019150506100b4565b5092915050565b60006001815b83518110156100e85783818151811061011057610110610240565b60200260200101518202915080806001019150506100f5565b60006101358284610256565b90505b92915050565b60006101358284610278565b634e487b7160e01b600052604160045260246000fd5b6000602080838503121561017357600080fd5b823567ffffffffffffffff8082111561018b57600080fd5b818501915085601f83011261019f57600080fd5b8135818111156101b1576101b161014a565b8060051b604051601f19603f830116810181811085821117156101d6576101d661014a565b6040529182528482019250838101850191888311156101f457600080fd5b938501935b82851015610212578435845293850193928501926101f9565b98975050505050505050565b6000806040838503121561023157600080fd5b50508035926020909101359150565b634e487b7160e01b600052603260045260246000fd5b60008261027357634e487b7160e01b600052601260045260246000fd5b500490565b8181038181111561013857634e487b7160e01b600052601160045260246000fdfea2646970667358221220fcdef23ba4219270ddb3ab764e22a87e229c05e6f1dfc4eeea983fa1a1dac91f64736f6c63430008110033", + "object": "0x608060405234801561001057600080fd5b506102cf806100206000396000f3fe608060405234801561001057600080fd5b506004361061004c5760003560e01c80630194db8e14610051578063072bdcc214610076578063a391c15b14610089578063b67d77c51461009c575b600080fd5b61006461005f366004610160565b6100af565b60405190815260200160405180910390f35b610064610084366004610160565b6100ef565b61006461009736600461021e565b610129565b6100646100aa36600461021e565b61013e565b600080805b83518110156100e8578381815181106100cf576100cf610240565b60200260200101518201915080806001019150506100b4565b5092915050565b60006001815b83518110156100e85783818151811061011057610110610240565b60200260200101518202915080806001019150506100f5565b60006101358284610256565b90505b92915050565b60006101358284610278565b634e487b7160e01b600052604160045260246000fd5b6000602080838503121561017357600080fd5b823567ffffffffffffffff8082111561018b57600080fd5b818501915085601f83011261019f57600080fd5b8135818111156101b1576101b161014a565b8060051b604051601f19603f830116810181811085821117156101d6576101d661014a565b6040529182528482019250838101850191888311156101f457600080fd5b938501935b82851015610212578435845293850193928501926101f9565b98975050505050505050565b6000806040838503121561023157600080fd5b50508035926020909101359150565b634e487b7160e01b600052603260045260246000fd5b60008261027357634e487b7160e01b600052601260045260246000fd5b500490565b8181038181111561013857634e487b7160e01b600052601160045260246000fdfea2646970667358221220d31583983189259cb60ccec801ca1ed218051d27add344c207dbb437b07d39c864736f6c63430008150033", "sourceMap": "58:725:30:-:0;;;;;;;;;;;;;;;;;;;", "linkReferences": {} }, "deployedBytecode": { - "object": "0x608060405234801561001057600080fd5b506004361061004c5760003560e01c80630194db8e14610051578063072bdcc214610076578063a391c15b14610089578063b67d77c51461009c575b600080fd5b61006461005f366004610160565b6100af565b60405190815260200160405180910390f35b610064610084366004610160565b6100ef565b61006461009736600461021e565b610129565b6100646100aa36600461021e565b61013e565b600080805b83518110156100e8578381815181106100cf576100cf610240565b60200260200101518201915080806001019150506100b4565b5092915050565b60006001815b83518110156100e85783818151811061011057610110610240565b60200260200101518202915080806001019150506100f5565b60006101358284610256565b90505b92915050565b60006101358284610278565b634e487b7160e01b600052604160045260246000fd5b6000602080838503121561017357600080fd5b823567ffffffffffffffff8082111561018b57600080fd5b818501915085601f83011261019f57600080fd5b8135818111156101b1576101b161014a565b8060051b604051601f19603f830116810181811085821117156101d6576101d661014a565b6040529182528482019250838101850191888311156101f457600080fd5b938501935b82851015610212578435845293850193928501926101f9565b98975050505050505050565b6000806040838503121561023157600080fd5b50508035926020909101359150565b634e487b7160e01b600052603260045260246000fd5b60008261027357634e487b7160e01b600052601260045260246000fd5b500490565b8181038181111561013857634e487b7160e01b600052601160045260246000fdfea2646970667358221220fcdef23ba4219270ddb3ab764e22a87e229c05e6f1dfc4eeea983fa1a1dac91f64736f6c63430008110033", + "object": "0x608060405234801561001057600080fd5b506004361061004c5760003560e01c80630194db8e14610051578063072bdcc214610076578063a391c15b14610089578063b67d77c51461009c575b600080fd5b61006461005f366004610160565b6100af565b60405190815260200160405180910390f35b610064610084366004610160565b6100ef565b61006461009736600461021e565b610129565b6100646100aa36600461021e565b61013e565b600080805b83518110156100e8578381815181106100cf576100cf610240565b60200260200101518201915080806001019150506100b4565b5092915050565b60006001815b83518110156100e85783818151811061011057610110610240565b60200260200101518202915080806001019150506100f5565b60006101358284610256565b90505b92915050565b60006101358284610278565b634e487b7160e01b600052604160045260246000fd5b6000602080838503121561017357600080fd5b823567ffffffffffffffff8082111561018b57600080fd5b818501915085601f83011261019f57600080fd5b8135818111156101b1576101b161014a565b8060051b604051601f19603f830116810181811085821117156101d6576101d661014a565b6040529182528482019250838101850191888311156101f457600080fd5b938501935b82851015610212578435845293850193928501926101f9565b98975050505050505050565b6000806040838503121561023157600080fd5b50508035926020909101359150565b634e487b7160e01b600052603260045260246000fd5b60008261027357634e487b7160e01b600052601260045260246000fd5b500490565b8181038181111561013857634e487b7160e01b600052601160045260246000fdfea2646970667358221220d31583983189259cb60ccec801ca1ed218051d27add344c207dbb437b07d39c864736f6c63430008150033", "sourceMap": "58:725:30:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;78:248;;;;;;:::i;:::-;;:::i;:::-;;;1412:25:36;;;1400:2;1385:18;78:248:30;;;;;;;332:249;;;;;;:::i;:::-;;:::i;587:94::-;;;;;;:::i;:::-;;:::i;687:::-;;;;;;:::i;:::-;;:::i;78:248::-;134:7;;;202:87;226:3;:10;222:1;:14;202:87;;;268:3;272:1;268:6;;;;;;;;:::i;:::-;;;;;;;261:13;;;;238:3;;;;;;;202:87;;;-1:-1:-1;316:3:30;78:248;-1:-1:-1;;78:248:30:o;332:249::-;389:7;422:1;389:7;457:87;481:3;:10;477:1;:14;457:87;;;523:3;527:1;523:6;;;;;;;;:::i;:::-;;;;;;;516:13;;;;493:3;;;;;;;457:87;;587:94;643:7;669:5;673:1;669;:5;:::i;:::-;662:12;;587:94;;;;;:::o;687:::-;743:7;769:5;773:1;769;:5;:::i;14:127:36:-;75:10;70:3;66:20;63:1;56:31;106:4;103:1;96:15;130:4;127:1;120:15;146:1115;230:6;261:2;304;292:9;283:7;279:23;275:32;272:52;;;320:1;317;310:12;272:52;360:9;347:23;389:18;430:2;422:6;419:14;416:34;;;446:1;443;436:12;416:34;484:6;473:9;469:22;459:32;;529:7;522:4;518:2;514:13;510:27;500:55;;551:1;548;541:12;500:55;587:2;574:16;609:2;605;602:10;599:36;;;615:18;;:::i;:::-;661:2;658:1;654:10;693:2;687:9;756:2;752:7;747:2;743;739:11;735:25;727:6;723:38;811:6;799:10;796:22;791:2;779:10;776:18;773:46;770:72;;;822:18;;:::i;:::-;858:2;851:22;908:18;;;942:15;;;;-1:-1:-1;984:11:36;;;980:20;;;1012:19;;;1009:39;;;1044:1;1041;1034:12;1009:39;1068:11;;;;1088:142;1104:6;1099:3;1096:15;1088:142;;;1170:17;;1158:30;;1121:12;;;;1208;;;;1088:142;;;1249:6;146:1115;-1:-1:-1;;;;;;;;146:1115:36:o;1448:248::-;1516:6;1524;1577:2;1565:9;1556:7;1552:23;1548:32;1545:52;;;1593:1;1590;1583:12;1545:52;-1:-1:-1;;1616:23:36;;;1686:2;1671:18;;;1658:32;;-1:-1:-1;1448:248:36:o;1701:127::-;1762:10;1757:3;1753:20;1750:1;1743:31;1793:4;1790:1;1783:15;1817:4;1814:1;1807:15;1833:217;1873:1;1899;1889:132;;1943:10;1938:3;1934:20;1931:1;1924:31;1978:4;1975:1;1968:15;2006:4;2003:1;1996:15;1889:132;-1:-1:-1;2035:9:36;;1833:217::o;2055:225::-;2122:9;;;2143:11;;;2140:134;;;2196:10;2191:3;2187:20;2184:1;2177:31;2231:4;2228:1;2221:15;2259:4;2256:1;2249:15", "linkReferences": {} }, @@ -103,10 +103,10 @@ "sub(uint256,uint256)": "b67d77c5", "sum(uint256[])": "0194db8e" }, - "rawMetadata": "{\"compiler\":{\"version\":\"0.8.17+commit.8df45f5f\"},\"language\":\"Solidity\",\"output\":{\"abi\":[{\"inputs\":[{\"internalType\":\"uint256\",\"name\":\"a\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"b\",\"type\":\"uint256\"}],\"name\":\"div\",\"outputs\":[{\"internalType\":\"uint256\",\"name\":\"\",\"type\":\"uint256\"}],\"stateMutability\":\"pure\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"uint256[]\",\"name\":\"arr\",\"type\":\"uint256[]\"}],\"name\":\"prod\",\"outputs\":[{\"internalType\":\"uint256\",\"name\":\"\",\"type\":\"uint256\"}],\"stateMutability\":\"pure\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"uint256\",\"name\":\"a\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"b\",\"type\":\"uint256\"}],\"name\":\"sub\",\"outputs\":[{\"internalType\":\"uint256\",\"name\":\"\",\"type\":\"uint256\"}],\"stateMutability\":\"pure\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"uint256[]\",\"name\":\"arr\",\"type\":\"uint256[]\"}],\"name\":\"sum\",\"outputs\":[{\"internalType\":\"uint256\",\"name\":\"\",\"type\":\"uint256\"}],\"stateMutability\":\"pure\",\"type\":\"function\"}],\"devdoc\":{\"kind\":\"dev\",\"methods\":{},\"version\":1},\"userdoc\":{\"kind\":\"user\",\"methods\":{},\"version\":1}},\"settings\":{\"compilationTarget\":{\"src/Math.sol\":\"Math\"},\"evmVersion\":\"london\",\"libraries\":{},\"metadata\":{\"bytecodeHash\":\"ipfs\"},\"optimizer\":{\"enabled\":true,\"runs\":200},\"remappings\":[\":@clemlaflemme/=lib/eth-projects-monorepo/packages/eth-projects-contracts/contracts/\",\":ds-test/=lib/forge-std/lib/ds-test/src/\",\":eth-projects-monorepo/=lib/eth-projects-monorepo/\",\":forge-std/=lib/forge-std/src/\",\":openzeppelin-contracts/=lib/openzeppelin-contracts/\",\":openzeppelin/=lib/openzeppelin-contracts/contracts/\",\":renderers/=lib/eth-projects-monorepo/packages/eth-projects-contracts/contracts/lib/renderers/\",\":safe-contracts/=lib/safe-contracts/contracts/\",\":solmate/=lib/solmate/src/\",\":utils/=lib/eth-projects-monorepo/packages/eth-projects-contracts/contracts/lib/utils/\"]},\"sources\":{\"src/Math.sol\":{\"keccak256\":\"0x376c0675780363115b456a01c873b4484732f09c231ac3c5832e0d4dc0d0813e\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://51d57dfac495c763d537dcd60dfb2ccc8a1e64229cb558601f843e449707c1be\",\"dweb:/ipfs/QmeXryXJBNp2xHKiEEaaBXMBt1AGpzcpnPcLaRZFsEaK6L\"]}},\"version\":1}", + "rawMetadata": "{\"compiler\":{\"version\":\"0.8.21+commit.d9974bed\"},\"language\":\"Solidity\",\"output\":{\"abi\":[{\"inputs\":[{\"internalType\":\"uint256\",\"name\":\"a\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"b\",\"type\":\"uint256\"}],\"name\":\"div\",\"outputs\":[{\"internalType\":\"uint256\",\"name\":\"\",\"type\":\"uint256\"}],\"stateMutability\":\"pure\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"uint256[]\",\"name\":\"arr\",\"type\":\"uint256[]\"}],\"name\":\"prod\",\"outputs\":[{\"internalType\":\"uint256\",\"name\":\"\",\"type\":\"uint256\"}],\"stateMutability\":\"pure\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"uint256\",\"name\":\"a\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"b\",\"type\":\"uint256\"}],\"name\":\"sub\",\"outputs\":[{\"internalType\":\"uint256\",\"name\":\"\",\"type\":\"uint256\"}],\"stateMutability\":\"pure\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"uint256[]\",\"name\":\"arr\",\"type\":\"uint256[]\"}],\"name\":\"sum\",\"outputs\":[{\"internalType\":\"uint256\",\"name\":\"\",\"type\":\"uint256\"}],\"stateMutability\":\"pure\",\"type\":\"function\"}],\"devdoc\":{\"kind\":\"dev\",\"methods\":{},\"version\":1},\"userdoc\":{\"kind\":\"user\",\"methods\":{},\"version\":1}},\"settings\":{\"compilationTarget\":{\"src/Math.sol\":\"Math\"},\"evmVersion\":\"paris\",\"libraries\":{},\"metadata\":{\"bytecodeHash\":\"ipfs\"},\"optimizer\":{\"enabled\":true,\"runs\":200},\"remappings\":[\":@clemlaflemme/=lib/eth-projects-monorepo/packages/eth-projects-contracts/contracts/\",\":ds-test/=lib/forge-std/lib/ds-test/src/\",\":eth-projects-monorepo/=lib/eth-projects-monorepo/\",\":forge-std/=lib/forge-std/src/\",\":openzeppelin-contracts/=lib/openzeppelin-contracts/\",\":openzeppelin/=lib/openzeppelin-contracts/contracts/\",\":renderers/=lib/eth-projects-monorepo/packages/eth-projects-contracts/contracts/lib/renderers/\",\":safe-contracts/=lib/safe-contracts/contracts/\",\":solmate/=lib/solmate/src/\",\":utils/=lib/eth-projects-monorepo/packages/eth-projects-contracts/contracts/lib/utils/\"]},\"sources\":{\"src/Math.sol\":{\"keccak256\":\"0x376c0675780363115b456a01c873b4484732f09c231ac3c5832e0d4dc0d0813e\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://51d57dfac495c763d537dcd60dfb2ccc8a1e64229cb558601f843e449707c1be\",\"dweb:/ipfs/QmeXryXJBNp2xHKiEEaaBXMBt1AGpzcpnPcLaRZFsEaK6L\"]}},\"version\":1}", "metadata": { "compiler": { - "version": "0.8.17+commit.8df45f5f" + "version": "0.8.21+commit.d9974bed" }, "language": "Solidity", "output": { @@ -211,16 +211,16 @@ }, "settings": { "remappings": [ - ":@clemlaflemme/=lib/eth-projects-monorepo/packages/eth-projects-contracts/contracts/", - ":ds-test/=lib/forge-std/lib/ds-test/src/", - ":eth-projects-monorepo/=lib/eth-projects-monorepo/", - ":forge-std/=lib/forge-std/src/", - ":openzeppelin-contracts/=lib/openzeppelin-contracts/", - ":openzeppelin/=lib/openzeppelin-contracts/contracts/", - ":renderers/=lib/eth-projects-monorepo/packages/eth-projects-contracts/contracts/lib/renderers/", - ":safe-contracts/=lib/safe-contracts/contracts/", - ":solmate/=lib/solmate/src/", - ":utils/=lib/eth-projects-monorepo/packages/eth-projects-contracts/contracts/lib/utils/" + "@clemlaflemme/=lib/eth-projects-monorepo/packages/eth-projects-contracts/contracts/", + "ds-test/=lib/forge-std/lib/ds-test/src/", + "eth-projects-monorepo/=lib/eth-projects-monorepo/", + "forge-std/=lib/forge-std/src/", + "openzeppelin-contracts/=lib/openzeppelin-contracts/", + "openzeppelin/=lib/openzeppelin-contracts/contracts/", + "renderers/=lib/eth-projects-monorepo/packages/eth-projects-contracts/contracts/lib/renderers/", + "safe-contracts/=lib/safe-contracts/contracts/", + "solmate/=lib/solmate/src/", + "utils/=lib/eth-projects-monorepo/packages/eth-projects-contracts/contracts/lib/utils/" ], "optimizer": { "enabled": true, @@ -248,17 +248,17 @@ }, "ast": { "absolutePath": "src/Math.sol", - "id": 31453, + "id": 31482, "exportedSymbols": { "Math": [ - 31452 + 31481 ] }, "nodeType": "SourceUnit", "src": "32:752:30", "nodes": [ { - "id": 31353, + "id": 31382, "nodeType": "PragmaDirective", "src": "32:24:30", "nodes": [], @@ -270,34 +270,34 @@ ] }, { - "id": 31452, + "id": 31481, "nodeType": "ContractDefinition", "src": "58:725:30", "nodes": [ { - "id": 31388, + "id": 31417, "nodeType": "FunctionDefinition", "src": "78:248:30", "nodes": [], "body": { - "id": 31387, + "id": 31416, "nodeType": "Block", "src": "143:183:30", "nodes": [], "statements": [ { "assignments": [ - 31362 + 31391 ], "declarations": [ { "constant": false, - "id": 31362, + "id": 31391, "mutability": "mutable", "name": "res", "nameLocation": "161:3:30", "nodeType": "VariableDeclaration", - "scope": 31387, + "scope": 31416, "src": "153:11:30", "stateVariable": false, "storageLocation": "default", @@ -306,7 +306,7 @@ "typeString": "uint256" }, "typeName": { - "id": 31361, + "id": 31390, "name": "uint256", "nodeType": "ElementaryTypeName", "src": "153:7:30", @@ -318,10 +318,10 @@ "visibility": "internal" } ], - "id": 31364, + "id": 31393, "initialValue": { "hexValue": "30", - "id": 31363, + "id": 31392, "isConstant": false, "isLValue": false, "isPure": true, @@ -339,29 +339,29 @@ "src": "153:15:30" }, { - "id": 31384, + "id": 31413, "nodeType": "UncheckedBlock", "src": "178:121:30", "statements": [ { "body": { - "id": 31382, + "id": 31411, "nodeType": "Block", "src": "243:46:30", "statements": [ { "expression": { - "id": 31380, + "id": 31409, "isConstant": false, "isLValue": false, "isPure": false, "lValueRequested": false, "leftHandSide": { - "id": 31376, + "id": 31405, "name": "res", "nodeType": "Identifier", "overloadedDeclarations": [], - "referencedDeclaration": 31362, + "referencedDeclaration": 31391, "src": "261:3:30", "typeDescriptions": { "typeIdentifier": "t_uint256", @@ -372,24 +372,24 @@ "operator": "+=", "rightHandSide": { "baseExpression": { - "id": 31377, + "id": 31406, "name": "arr", "nodeType": "Identifier", "overloadedDeclarations": [], - "referencedDeclaration": 31356, + "referencedDeclaration": 31385, "src": "268:3:30", "typeDescriptions": { "typeIdentifier": "t_array$_t_uint256_$dyn_memory_ptr", "typeString": "uint256[] memory" } }, - "id": 31379, + "id": 31408, "indexExpression": { - "id": 31378, + "id": 31407, "name": "i", "nodeType": "Identifier", "overloadedDeclarations": [], - "referencedDeclaration": 31366, + "referencedDeclaration": 31395, "src": "272:1:30", "typeDescriptions": { "typeIdentifier": "t_uint256", @@ -413,7 +413,7 @@ "typeString": "uint256" } }, - "id": 31381, + "id": 31410, "nodeType": "ExpressionStatement", "src": "261:13:30" } @@ -424,17 +424,17 @@ "typeIdentifier": "t_uint256", "typeString": "uint256" }, - "id": 31372, + "id": 31401, "isConstant": false, "isLValue": false, "isPure": false, "lValueRequested": false, "leftExpression": { - "id": 31369, + "id": 31398, "name": "i", "nodeType": "Identifier", "overloadedDeclarations": [], - "referencedDeclaration": 31366, + "referencedDeclaration": 31395, "src": "222:1:30", "typeDescriptions": { "typeIdentifier": "t_uint256", @@ -445,18 +445,18 @@ "operator": "<", "rightExpression": { "expression": { - "id": 31370, + "id": 31399, "name": "arr", "nodeType": "Identifier", "overloadedDeclarations": [], - "referencedDeclaration": 31356, + "referencedDeclaration": 31385, "src": "226:3:30", "typeDescriptions": { "typeIdentifier": "t_array$_t_uint256_$dyn_memory_ptr", "typeString": "uint256[] memory" } }, - "id": 31371, + "id": 31400, "isConstant": false, "isLValue": false, "isPure": false, @@ -476,20 +476,20 @@ "typeString": "bool" } }, - "id": 31383, + "id": 31412, "initializationExpression": { "assignments": [ - 31366 + 31395 ], "declarations": [ { "constant": false, - "id": 31366, + "id": 31395, "mutability": "mutable", "name": "i", "nameLocation": "215:1:30", "nodeType": "VariableDeclaration", - "scope": 31383, + "scope": 31412, "src": "207:9:30", "stateVariable": false, "storageLocation": "default", @@ -498,7 +498,7 @@ "typeString": "uint256" }, "typeName": { - "id": 31365, + "id": 31394, "name": "uint256", "nodeType": "ElementaryTypeName", "src": "207:7:30", @@ -510,10 +510,10 @@ "visibility": "internal" } ], - "id": 31368, + "id": 31397, "initialValue": { "hexValue": "30", - "id": 31367, + "id": 31396, "isConstant": false, "isLValue": false, "isPure": true, @@ -532,7 +532,7 @@ }, "loopExpression": { "expression": { - "id": 31374, + "id": 31403, "isConstant": false, "isLValue": false, "isPure": false, @@ -542,11 +542,11 @@ "prefix": false, "src": "238:3:30", "subExpression": { - "id": 31373, + "id": 31402, "name": "i", "nodeType": "Identifier", "overloadedDeclarations": [], - "referencedDeclaration": 31366, + "referencedDeclaration": 31395, "src": "238:1:30", "typeDescriptions": { "typeIdentifier": "t_uint256", @@ -558,7 +558,7 @@ "typeString": "uint256" } }, - "id": 31375, + "id": 31404, "nodeType": "ExpressionStatement", "src": "238:3:30" }, @@ -569,19 +569,19 @@ }, { "expression": { - "id": 31385, + "id": 31414, "name": "res", "nodeType": "Identifier", "overloadedDeclarations": [], - "referencedDeclaration": 31362, + "referencedDeclaration": 31391, "src": "316:3:30", "typeDescriptions": { "typeIdentifier": "t_uint256", "typeString": "uint256" } }, - "functionReturnParameters": 31360, - "id": 31386, + "functionReturnParameters": 31389, + "id": 31415, "nodeType": "Return", "src": "309:10:30" } @@ -594,17 +594,17 @@ "name": "sum", "nameLocation": "87:3:30", "parameters": { - "id": 31357, + "id": 31386, "nodeType": "ParameterList", "parameters": [ { "constant": false, - "id": 31356, + "id": 31385, "mutability": "mutable", "name": "arr", "nameLocation": "108:3:30", "nodeType": "VariableDeclaration", - "scope": 31388, + "scope": 31417, "src": "91:20:30", "stateVariable": false, "storageLocation": "memory", @@ -614,7 +614,7 @@ }, "typeName": { "baseType": { - "id": 31354, + "id": 31383, "name": "uint256", "nodeType": "ElementaryTypeName", "src": "91:7:30", @@ -623,7 +623,7 @@ "typeString": "uint256" } }, - "id": 31355, + "id": 31384, "nodeType": "ArrayTypeName", "src": "91:9:30", "typeDescriptions": { @@ -637,17 +637,17 @@ "src": "90:22:30" }, "returnParameters": { - "id": 31360, + "id": 31389, "nodeType": "ParameterList", "parameters": [ { "constant": false, - "id": 31359, + "id": 31388, "mutability": "mutable", "name": "", "nameLocation": "-1:-1:-1", "nodeType": "VariableDeclaration", - "scope": 31388, + "scope": 31417, "src": "134:7:30", "stateVariable": false, "storageLocation": "default", @@ -656,7 +656,7 @@ "typeString": "uint256" }, "typeName": { - "id": 31358, + "id": 31387, "name": "uint256", "nodeType": "ElementaryTypeName", "src": "134:7:30", @@ -670,35 +670,35 @@ ], "src": "133:9:30" }, - "scope": 31452, + "scope": 31481, "stateMutability": "pure", "virtual": false, "visibility": "public" }, { - "id": 31423, + "id": 31452, "nodeType": "FunctionDefinition", "src": "332:249:30", "nodes": [], "body": { - "id": 31422, + "id": 31451, "nodeType": "Block", "src": "398:183:30", "nodes": [], "statements": [ { "assignments": [ - 31397 + 31426 ], "declarations": [ { "constant": false, - "id": 31397, + "id": 31426, "mutability": "mutable", "name": "res", "nameLocation": "416:3:30", "nodeType": "VariableDeclaration", - "scope": 31422, + "scope": 31451, "src": "408:11:30", "stateVariable": false, "storageLocation": "default", @@ -707,7 +707,7 @@ "typeString": "uint256" }, "typeName": { - "id": 31396, + "id": 31425, "name": "uint256", "nodeType": "ElementaryTypeName", "src": "408:7:30", @@ -719,10 +719,10 @@ "visibility": "internal" } ], - "id": 31399, + "id": 31428, "initialValue": { "hexValue": "31", - "id": 31398, + "id": 31427, "isConstant": false, "isLValue": false, "isPure": true, @@ -740,29 +740,29 @@ "src": "408:15:30" }, { - "id": 31419, + "id": 31448, "nodeType": "UncheckedBlock", "src": "433:121:30", "statements": [ { "body": { - "id": 31417, + "id": 31446, "nodeType": "Block", "src": "498:46:30", "statements": [ { "expression": { - "id": 31415, + "id": 31444, "isConstant": false, "isLValue": false, "isPure": false, "lValueRequested": false, "leftHandSide": { - "id": 31411, + "id": 31440, "name": "res", "nodeType": "Identifier", "overloadedDeclarations": [], - "referencedDeclaration": 31397, + "referencedDeclaration": 31426, "src": "516:3:30", "typeDescriptions": { "typeIdentifier": "t_uint256", @@ -773,24 +773,24 @@ "operator": "*=", "rightHandSide": { "baseExpression": { - "id": 31412, + "id": 31441, "name": "arr", "nodeType": "Identifier", "overloadedDeclarations": [], - "referencedDeclaration": 31391, + "referencedDeclaration": 31420, "src": "523:3:30", "typeDescriptions": { "typeIdentifier": "t_array$_t_uint256_$dyn_memory_ptr", "typeString": "uint256[] memory" } }, - "id": 31414, + "id": 31443, "indexExpression": { - "id": 31413, + "id": 31442, "name": "i", "nodeType": "Identifier", "overloadedDeclarations": [], - "referencedDeclaration": 31401, + "referencedDeclaration": 31430, "src": "527:1:30", "typeDescriptions": { "typeIdentifier": "t_uint256", @@ -814,7 +814,7 @@ "typeString": "uint256" } }, - "id": 31416, + "id": 31445, "nodeType": "ExpressionStatement", "src": "516:13:30" } @@ -825,17 +825,17 @@ "typeIdentifier": "t_uint256", "typeString": "uint256" }, - "id": 31407, + "id": 31436, "isConstant": false, "isLValue": false, "isPure": false, "lValueRequested": false, "leftExpression": { - "id": 31404, + "id": 31433, "name": "i", "nodeType": "Identifier", "overloadedDeclarations": [], - "referencedDeclaration": 31401, + "referencedDeclaration": 31430, "src": "477:1:30", "typeDescriptions": { "typeIdentifier": "t_uint256", @@ -846,18 +846,18 @@ "operator": "<", "rightExpression": { "expression": { - "id": 31405, + "id": 31434, "name": "arr", "nodeType": "Identifier", "overloadedDeclarations": [], - "referencedDeclaration": 31391, + "referencedDeclaration": 31420, "src": "481:3:30", "typeDescriptions": { "typeIdentifier": "t_array$_t_uint256_$dyn_memory_ptr", "typeString": "uint256[] memory" } }, - "id": 31406, + "id": 31435, "isConstant": false, "isLValue": false, "isPure": false, @@ -877,20 +877,20 @@ "typeString": "bool" } }, - "id": 31418, + "id": 31447, "initializationExpression": { "assignments": [ - 31401 + 31430 ], "declarations": [ { "constant": false, - "id": 31401, + "id": 31430, "mutability": "mutable", "name": "i", "nameLocation": "470:1:30", "nodeType": "VariableDeclaration", - "scope": 31418, + "scope": 31447, "src": "462:9:30", "stateVariable": false, "storageLocation": "default", @@ -899,7 +899,7 @@ "typeString": "uint256" }, "typeName": { - "id": 31400, + "id": 31429, "name": "uint256", "nodeType": "ElementaryTypeName", "src": "462:7:30", @@ -911,10 +911,10 @@ "visibility": "internal" } ], - "id": 31403, + "id": 31432, "initialValue": { "hexValue": "30", - "id": 31402, + "id": 31431, "isConstant": false, "isLValue": false, "isPure": true, @@ -933,7 +933,7 @@ }, "loopExpression": { "expression": { - "id": 31409, + "id": 31438, "isConstant": false, "isLValue": false, "isPure": false, @@ -943,11 +943,11 @@ "prefix": false, "src": "493:3:30", "subExpression": { - "id": 31408, + "id": 31437, "name": "i", "nodeType": "Identifier", "overloadedDeclarations": [], - "referencedDeclaration": 31401, + "referencedDeclaration": 31430, "src": "493:1:30", "typeDescriptions": { "typeIdentifier": "t_uint256", @@ -959,7 +959,7 @@ "typeString": "uint256" } }, - "id": 31410, + "id": 31439, "nodeType": "ExpressionStatement", "src": "493:3:30" }, @@ -970,19 +970,19 @@ }, { "expression": { - "id": 31420, + "id": 31449, "name": "res", "nodeType": "Identifier", "overloadedDeclarations": [], - "referencedDeclaration": 31397, + "referencedDeclaration": 31426, "src": "571:3:30", "typeDescriptions": { "typeIdentifier": "t_uint256", "typeString": "uint256" } }, - "functionReturnParameters": 31395, - "id": 31421, + "functionReturnParameters": 31424, + "id": 31450, "nodeType": "Return", "src": "564:10:30" } @@ -995,17 +995,17 @@ "name": "prod", "nameLocation": "341:4:30", "parameters": { - "id": 31392, + "id": 31421, "nodeType": "ParameterList", "parameters": [ { "constant": false, - "id": 31391, + "id": 31420, "mutability": "mutable", "name": "arr", "nameLocation": "363:3:30", "nodeType": "VariableDeclaration", - "scope": 31423, + "scope": 31452, "src": "346:20:30", "stateVariable": false, "storageLocation": "memory", @@ -1015,7 +1015,7 @@ }, "typeName": { "baseType": { - "id": 31389, + "id": 31418, "name": "uint256", "nodeType": "ElementaryTypeName", "src": "346:7:30", @@ -1024,7 +1024,7 @@ "typeString": "uint256" } }, - "id": 31390, + "id": 31419, "nodeType": "ArrayTypeName", "src": "346:9:30", "typeDescriptions": { @@ -1038,17 +1038,17 @@ "src": "345:22:30" }, "returnParameters": { - "id": 31395, + "id": 31424, "nodeType": "ParameterList", "parameters": [ { "constant": false, - "id": 31394, + "id": 31423, "mutability": "mutable", "name": "", "nameLocation": "-1:-1:-1", "nodeType": "VariableDeclaration", - "scope": 31423, + "scope": 31452, "src": "389:7:30", "stateVariable": false, "storageLocation": "default", @@ -1057,7 +1057,7 @@ "typeString": "uint256" }, "typeName": { - "id": 31393, + "id": 31422, "name": "uint256", "nodeType": "ElementaryTypeName", "src": "389:7:30", @@ -1071,18 +1071,18 @@ ], "src": "388:9:30" }, - "scope": 31452, + "scope": 31481, "stateMutability": "pure", "virtual": false, "visibility": "public" }, { - "id": 31437, + "id": 31466, "nodeType": "FunctionDefinition", "src": "587:94:30", "nodes": [], "body": { - "id": 31436, + "id": 31465, "nodeType": "Block", "src": "652:29:30", "nodes": [], @@ -1093,17 +1093,17 @@ "typeIdentifier": "t_uint256", "typeString": "uint256" }, - "id": 31434, + "id": 31463, "isConstant": false, "isLValue": false, "isPure": false, "lValueRequested": false, "leftExpression": { - "id": 31432, + "id": 31461, "name": "a", "nodeType": "Identifier", "overloadedDeclarations": [], - "referencedDeclaration": 31425, + "referencedDeclaration": 31454, "src": "669:1:30", "typeDescriptions": { "typeIdentifier": "t_uint256", @@ -1113,11 +1113,11 @@ "nodeType": "BinaryOperation", "operator": "/", "rightExpression": { - "id": 31433, + "id": 31462, "name": "b", "nodeType": "Identifier", "overloadedDeclarations": [], - "referencedDeclaration": 31427, + "referencedDeclaration": 31456, "src": "673:1:30", "typeDescriptions": { "typeIdentifier": "t_uint256", @@ -1130,8 +1130,8 @@ "typeString": "uint256" } }, - "functionReturnParameters": 31431, - "id": 31435, + "functionReturnParameters": 31460, + "id": 31464, "nodeType": "Return", "src": "662:12:30" } @@ -1144,17 +1144,17 @@ "name": "div", "nameLocation": "596:3:30", "parameters": { - "id": 31428, + "id": 31457, "nodeType": "ParameterList", "parameters": [ { "constant": false, - "id": 31425, + "id": 31454, "mutability": "mutable", "name": "a", "nameLocation": "608:1:30", "nodeType": "VariableDeclaration", - "scope": 31437, + "scope": 31466, "src": "600:9:30", "stateVariable": false, "storageLocation": "default", @@ -1163,7 +1163,7 @@ "typeString": "uint256" }, "typeName": { - "id": 31424, + "id": 31453, "name": "uint256", "nodeType": "ElementaryTypeName", "src": "600:7:30", @@ -1176,12 +1176,12 @@ }, { "constant": false, - "id": 31427, + "id": 31456, "mutability": "mutable", "name": "b", "nameLocation": "619:1:30", "nodeType": "VariableDeclaration", - "scope": 31437, + "scope": 31466, "src": "611:9:30", "stateVariable": false, "storageLocation": "default", @@ -1190,7 +1190,7 @@ "typeString": "uint256" }, "typeName": { - "id": 31426, + "id": 31455, "name": "uint256", "nodeType": "ElementaryTypeName", "src": "611:7:30", @@ -1205,17 +1205,17 @@ "src": "599:22:30" }, "returnParameters": { - "id": 31431, + "id": 31460, "nodeType": "ParameterList", "parameters": [ { "constant": false, - "id": 31430, + "id": 31459, "mutability": "mutable", "name": "", "nameLocation": "-1:-1:-1", "nodeType": "VariableDeclaration", - "scope": 31437, + "scope": 31466, "src": "643:7:30", "stateVariable": false, "storageLocation": "default", @@ -1224,7 +1224,7 @@ "typeString": "uint256" }, "typeName": { - "id": 31429, + "id": 31458, "name": "uint256", "nodeType": "ElementaryTypeName", "src": "643:7:30", @@ -1238,18 +1238,18 @@ ], "src": "642:9:30" }, - "scope": 31452, + "scope": 31481, "stateMutability": "pure", "virtual": false, "visibility": "public" }, { - "id": 31451, + "id": 31480, "nodeType": "FunctionDefinition", "src": "687:94:30", "nodes": [], "body": { - "id": 31450, + "id": 31479, "nodeType": "Block", "src": "752:29:30", "nodes": [], @@ -1260,17 +1260,17 @@ "typeIdentifier": "t_uint256", "typeString": "uint256" }, - "id": 31448, + "id": 31477, "isConstant": false, "isLValue": false, "isPure": false, "lValueRequested": false, "leftExpression": { - "id": 31446, + "id": 31475, "name": "a", "nodeType": "Identifier", "overloadedDeclarations": [], - "referencedDeclaration": 31439, + "referencedDeclaration": 31468, "src": "769:1:30", "typeDescriptions": { "typeIdentifier": "t_uint256", @@ -1280,11 +1280,11 @@ "nodeType": "BinaryOperation", "operator": "-", "rightExpression": { - "id": 31447, + "id": 31476, "name": "b", "nodeType": "Identifier", "overloadedDeclarations": [], - "referencedDeclaration": 31441, + "referencedDeclaration": 31470, "src": "773:1:30", "typeDescriptions": { "typeIdentifier": "t_uint256", @@ -1297,8 +1297,8 @@ "typeString": "uint256" } }, - "functionReturnParameters": 31445, - "id": 31449, + "functionReturnParameters": 31474, + "id": 31478, "nodeType": "Return", "src": "762:12:30" } @@ -1311,17 +1311,17 @@ "name": "sub", "nameLocation": "696:3:30", "parameters": { - "id": 31442, + "id": 31471, "nodeType": "ParameterList", "parameters": [ { "constant": false, - "id": 31439, + "id": 31468, "mutability": "mutable", "name": "a", "nameLocation": "708:1:30", "nodeType": "VariableDeclaration", - "scope": 31451, + "scope": 31480, "src": "700:9:30", "stateVariable": false, "storageLocation": "default", @@ -1330,7 +1330,7 @@ "typeString": "uint256" }, "typeName": { - "id": 31438, + "id": 31467, "name": "uint256", "nodeType": "ElementaryTypeName", "src": "700:7:30", @@ -1343,12 +1343,12 @@ }, { "constant": false, - "id": 31441, + "id": 31470, "mutability": "mutable", "name": "b", "nameLocation": "719:1:30", "nodeType": "VariableDeclaration", - "scope": 31451, + "scope": 31480, "src": "711:9:30", "stateVariable": false, "storageLocation": "default", @@ -1357,7 +1357,7 @@ "typeString": "uint256" }, "typeName": { - "id": 31440, + "id": 31469, "name": "uint256", "nodeType": "ElementaryTypeName", "src": "711:7:30", @@ -1372,17 +1372,17 @@ "src": "699:22:30" }, "returnParameters": { - "id": 31445, + "id": 31474, "nodeType": "ParameterList", "parameters": [ { "constant": false, - "id": 31444, + "id": 31473, "mutability": "mutable", "name": "", "nameLocation": "-1:-1:-1", "nodeType": "VariableDeclaration", - "scope": 31451, + "scope": 31480, "src": "743:7:30", "stateVariable": false, "storageLocation": "default", @@ -1391,7 +1391,7 @@ "typeString": "uint256" }, "typeName": { - "id": 31443, + "id": 31472, "name": "uint256", "nodeType": "ElementaryTypeName", "src": "743:7:30", @@ -1405,7 +1405,7 @@ ], "src": "742:9:30" }, - "scope": 31452, + "scope": 31481, "stateMutability": "pure", "virtual": false, "visibility": "public" @@ -1418,12 +1418,13 @@ "contractKind": "contract", "fullyImplemented": true, "linearizedBaseContracts": [ - 31452 + 31481 ], "name": "Math", "nameLocation": "67:4:30", - "scope": 31453, - "usedErrors": [] + "scope": 31482, + "usedErrors": [], + "usedEvents": [] } ], "license": "MIT" diff --git a/packages/starksheet-solidity/out/MultiSendCallOnly.sol/MultiSendCallOnly.json b/packages/starksheet-solidity/out/MultiSendCallOnly.sol/MultiSendCallOnly.json index f16d8665..a86f3336 100644 --- a/packages/starksheet-solidity/out/MultiSendCallOnly.sol/MultiSendCallOnly.json +++ b/packages/starksheet-solidity/out/MultiSendCallOnly.sol/MultiSendCallOnly.json @@ -15,22 +15,22 @@ } ], "bytecode": { - "object": "0x608060405234801561001057600080fd5b506101ae806100206000396000f3fe60806040526004361061001e5760003560e01c80638d80ff0a14610023575b600080fd5b6100366100313660046100c7565b610038565b005b805160205b818110156100ac578083015160f81c6001820184015160601c601583018501516035840186015160558501870160008560008114610082576001811461001e5761008e565b6000808585888a5af191505b508061009957600080fd5b505080605501850194505050505061003d565b505050565b634e487b7160e01b600052604160045260246000fd5b6000602082840312156100d957600080fd5b813567ffffffffffffffff808211156100f157600080fd5b818401915084601f83011261010557600080fd5b813581811115610117576101176100b1565b604051601f8201601f19908116603f0116810190838211818310171561013f5761013f6100b1565b8160405282815287602084870101111561015857600080fd5b82602086016020830137600092810160200192909252509594505050505056fea2646970667358221220c15490bbb756a4c3c49d6335b2e81d2d098647b0ea70174c2279f199b1d0800364736f6c63430008110033", + "object": "0x608060405234801561001057600080fd5b506101ae806100206000396000f3fe60806040526004361061001e5760003560e01c80638d80ff0a14610023575b600080fd5b6100366100313660046100c7565b610038565b005b805160205b818110156100ac578083015160f81c6001820184015160601c601583018501516035840186015160558501870160008560008114610082576001811461001e5761008e565b6000808585888a5af191505b508061009957600080fd5b505080605501850194505050505061003d565b505050565b634e487b7160e01b600052604160045260246000fd5b6000602082840312156100d957600080fd5b813567ffffffffffffffff808211156100f157600080fd5b818401915084601f83011261010557600080fd5b813581811115610117576101176100b1565b604051601f8201601f19908116603f0116810190838211818310171561013f5761013f6100b1565b8160405282815287602084870101111561015857600080fd5b82602086016020830137600092810160200192909252509594505050505056fea2646970667358221220915f2e68ab0008ebbb1ed69f9c5c2817995c2578db9a979f782235cb1216b32764736f6c63430008150033", "sourceMap": "360:3059:24:-:0;;;;;;;;;;;;;;;;;;;", "linkReferences": {} }, "deployedBytecode": { - "object": "0x60806040526004361061001e5760003560e01c80638d80ff0a14610023575b600080fd5b6100366100313660046100c7565b610038565b005b805160205b818110156100ac578083015160f81c6001820184015160601c601583018501516035840186015160558501870160008560008114610082576001811461001e5761008e565b6000808585888a5af191505b508061009957600080fd5b505080605501850194505050505061003d565b505050565b634e487b7160e01b600052604160045260246000fd5b6000602082840312156100d957600080fd5b813567ffffffffffffffff808211156100f157600080fd5b818401915084601f83011261010557600080fd5b813581811115610117576101176100b1565b604051601f8201601f19908116603f0116810190838211818310171561013f5761013f6100b1565b8160405282815287602084870101111561015857600080fd5b82602086016020830137600092810160200192909252509594505050505056fea2646970667358221220c15490bbb756a4c3c49d6335b2e81d2d098647b0ea70174c2279f199b1d0800364736f6c63430008110033", + "object": "0x60806040526004361061001e5760003560e01c80638d80ff0a14610023575b600080fd5b6100366100313660046100c7565b610038565b005b805160205b818110156100ac578083015160f81c6001820184015160601c601583018501516035840186015160558501870160008560008114610082576001811461001e5761008e565b6000808585888a5af191505b508061009957600080fd5b505080605501850194505050505061003d565b505050565b634e487b7160e01b600052604160045260246000fd5b6000602082840312156100d957600080fd5b813567ffffffffffffffff808211156100f157600080fd5b818401915084601f83011261010557600080fd5b813581811115610117576101176100b1565b604051601f8201601f19908116603f0116810190838211818310171561013f5761013f6100b1565b8160405282815287602084870101111561015857600080fd5b82602086016020830137600092810160200192909252509594505050505056fea2646970667358221220915f2e68ab0008ebbb1ed69f9c5c2817995c2578db9a979f782235cb1216b32764736f6c63430008150033", "sourceMap": "360:3059:24:-:0;;;;;;;;;;;;;;;;;;;;;1348:2069;;;;;;:::i;:::-;;:::i;:::-;;;1518:12;1512:19;1553:4;1570:1831;1653:6;1650:1;1647:13;1570:1831;;;2044:1;2030:12;2026:20;2020:27;2014:4;2010:38;2318:4;2315:1;2311:12;2297;2293:31;2287:38;2281:4;2277:49;2480:4;2477:1;2473:12;2459;2455:31;2449:38;2663:4;2660:1;2656:12;2642;2638:31;2632:38;2857:4;2854:1;2850:12;2836;2832:31;2895:1;2920:9;2951:1;2946:104;;;;3133:1;3128:59;;;;2913:274;;2946:104;3030:1;3027;3015:10;3009:4;3002:5;2998:2;2991:5;2986:46;2975:57;;2913:274;-1:-1:-1;3210:7:24;3204:70;;3254:1;3251;3244:12;3204:70;;;3375:10;3369:4;3365:21;3362:1;3358:29;3353:34;;;;;;1570:1831;;;1574:72;;1348:2069;:::o;14:127:36:-;75:10;70:3;66:20;63:1;56:31;106:4;103:1;96:15;130:4;127:1;120:15;146:921;214:6;267:2;255:9;246:7;242:23;238:32;235:52;;;283:1;280;273:12;235:52;323:9;310:23;352:18;393:2;385:6;382:14;379:34;;;409:1;406;399:12;379:34;447:6;436:9;432:22;422:32;;492:7;485:4;481:2;477:13;473:27;463:55;;514:1;511;504:12;463:55;550:2;537:16;572:2;568;565:10;562:36;;;578:18;;:::i;:::-;653:2;647:9;621:2;707:13;;-1:-1:-1;;703:22:36;;;727:2;699:31;695:40;683:53;;;751:18;;;771:22;;;748:46;745:72;;;797:18;;:::i;:::-;837:10;833:2;826:22;872:2;864:6;857:18;912:7;907:2;902;898;894:11;890:20;887:33;884:53;;;933:1;930;923:12;884:53;989:2;984;980;976:11;971:2;963:6;959:15;946:46;1034:1;1012:15;;;1029:2;1008:24;1001:35;;;;-1:-1:-1;1016:6:36;146:921;-1:-1:-1;;;;;146:921:36:o", "linkReferences": {} }, "methodIdentifiers": { "multiSend(bytes)": "8d80ff0a" }, - "rawMetadata": "{\"compiler\":{\"version\":\"0.8.17+commit.8df45f5f\"},\"language\":\"Solidity\",\"output\":{\"abi\":[{\"inputs\":[{\"internalType\":\"bytes\",\"name\":\"transactions\",\"type\":\"bytes\"}],\"name\":\"multiSend\",\"outputs\":[],\"stateMutability\":\"payable\",\"type\":\"function\"}],\"devdoc\":{\"author\":\"Stefan George - @Georgi87Richard Meissner - @rmeissner\",\"kind\":\"dev\",\"methods\":{\"multiSend(bytes)\":{\"details\":\"Sends multiple transactions and reverts all if one fails.\",\"params\":{\"transactions\":\"Encoded transactions. Each transaction is encoded as a packed bytes of operation has to be uint8(0) in this version (=> 1 byte), to as a address (=> 20 bytes), value as a uint256 (=> 32 bytes), data length as a uint256 (=> 32 bytes), data as bytes. see abi.encodePacked for more information on packed encoding\"}}},\"title\":\"Multi Send Call Only - Allows to batch multiple transactions into one, but only calls\",\"version\":1},\"userdoc\":{\"kind\":\"user\",\"methods\":{\"multiSend(bytes)\":{\"notice\":\"The code is for most part the same as the normal MultiSend (to keep compatibility), but reverts if a transaction tries to use a delegatecall.This method is payable as delegatecalls keep the msg.value from the previous call If the calling method (e.g. execTransaction) received ETH this would revert otherwise\"}},\"notice\":\"The guard logic is not required here as this contract doesn't support nested delegate calls\",\"version\":1}},\"settings\":{\"compilationTarget\":{\"lib/safe-contracts/contracts/libraries/MultiSendCallOnly.sol\":\"MultiSendCallOnly\"},\"evmVersion\":\"london\",\"libraries\":{},\"metadata\":{\"bytecodeHash\":\"ipfs\"},\"optimizer\":{\"enabled\":true,\"runs\":200},\"remappings\":[\":@clemlaflemme/=lib/eth-projects-monorepo/packages/eth-projects-contracts/contracts/\",\":ds-test/=lib/forge-std/lib/ds-test/src/\",\":eth-projects-monorepo/=lib/eth-projects-monorepo/\",\":forge-std/=lib/forge-std/src/\",\":openzeppelin-contracts/=lib/openzeppelin-contracts/\",\":openzeppelin/=lib/openzeppelin-contracts/contracts/\",\":renderers/=lib/eth-projects-monorepo/packages/eth-projects-contracts/contracts/lib/renderers/\",\":safe-contracts/=lib/safe-contracts/contracts/\",\":solmate/=lib/solmate/src/\",\":utils/=lib/eth-projects-monorepo/packages/eth-projects-contracts/contracts/lib/utils/\"]},\"sources\":{\"lib/safe-contracts/contracts/libraries/MultiSendCallOnly.sol\":{\"keccak256\":\"0x66c326b0845b97c2ecef741eab1f3121630c1e1e04b6b369ab9faa4410dc33cd\",\"license\":\"LGPL-3.0-only\",\"urls\":[\"bzz-raw://b251404bb90d97ae2eb04f802007b6337c26a7f3dfb0253352a15878f86e4771\",\"dweb:/ipfs/QmUe2mgmRm4pyBfUfzERiHQJcvrb1qkKthRQCJNEkLF8SG\"]}},\"version\":1}", + "rawMetadata": "{\"compiler\":{\"version\":\"0.8.21+commit.d9974bed\"},\"language\":\"Solidity\",\"output\":{\"abi\":[{\"inputs\":[{\"internalType\":\"bytes\",\"name\":\"transactions\",\"type\":\"bytes\"}],\"name\":\"multiSend\",\"outputs\":[],\"stateMutability\":\"payable\",\"type\":\"function\"}],\"devdoc\":{\"author\":\"Stefan George - @Georgi87Richard Meissner - @rmeissner\",\"kind\":\"dev\",\"methods\":{\"multiSend(bytes)\":{\"details\":\"Sends multiple transactions and reverts all if one fails.\",\"params\":{\"transactions\":\"Encoded transactions. Each transaction is encoded as a packed bytes of operation has to be uint8(0) in this version (=> 1 byte), to as a address (=> 20 bytes), value as a uint256 (=> 32 bytes), data length as a uint256 (=> 32 bytes), data as bytes. see abi.encodePacked for more information on packed encoding\"}}},\"title\":\"Multi Send Call Only - Allows to batch multiple transactions into one, but only calls\",\"version\":1},\"userdoc\":{\"kind\":\"user\",\"methods\":{\"multiSend(bytes)\":{\"notice\":\"The code is for most part the same as the normal MultiSend (to keep compatibility), but reverts if a transaction tries to use a delegatecall.This method is payable as delegatecalls keep the msg.value from the previous call If the calling method (e.g. execTransaction) received ETH this would revert otherwise\"}},\"notice\":\"The guard logic is not required here as this contract doesn't support nested delegate calls\",\"version\":1}},\"settings\":{\"compilationTarget\":{\"lib/safe-contracts/contracts/libraries/MultiSendCallOnly.sol\":\"MultiSendCallOnly\"},\"evmVersion\":\"paris\",\"libraries\":{},\"metadata\":{\"bytecodeHash\":\"ipfs\"},\"optimizer\":{\"enabled\":true,\"runs\":200},\"remappings\":[\":@clemlaflemme/=lib/eth-projects-monorepo/packages/eth-projects-contracts/contracts/\",\":ds-test/=lib/forge-std/lib/ds-test/src/\",\":eth-projects-monorepo/=lib/eth-projects-monorepo/\",\":forge-std/=lib/forge-std/src/\",\":openzeppelin-contracts/=lib/openzeppelin-contracts/\",\":openzeppelin/=lib/openzeppelin-contracts/contracts/\",\":renderers/=lib/eth-projects-monorepo/packages/eth-projects-contracts/contracts/lib/renderers/\",\":safe-contracts/=lib/safe-contracts/contracts/\",\":solmate/=lib/solmate/src/\",\":utils/=lib/eth-projects-monorepo/packages/eth-projects-contracts/contracts/lib/utils/\"]},\"sources\":{\"lib/safe-contracts/contracts/libraries/MultiSendCallOnly.sol\":{\"keccak256\":\"0x66c326b0845b97c2ecef741eab1f3121630c1e1e04b6b369ab9faa4410dc33cd\",\"license\":\"LGPL-3.0-only\",\"urls\":[\"bzz-raw://b251404bb90d97ae2eb04f802007b6337c26a7f3dfb0253352a15878f86e4771\",\"dweb:/ipfs/QmUe2mgmRm4pyBfUfzERiHQJcvrb1qkKthRQCJNEkLF8SG\"]}},\"version\":1}", "metadata": { "compiler": { - "version": "0.8.17+commit.8df45f5f" + "version": "0.8.21+commit.d9974bed" }, "language": "Solidity", "output": { @@ -72,16 +72,16 @@ }, "settings": { "remappings": [ - ":@clemlaflemme/=lib/eth-projects-monorepo/packages/eth-projects-contracts/contracts/", - ":ds-test/=lib/forge-std/lib/ds-test/src/", - ":eth-projects-monorepo/=lib/eth-projects-monorepo/", - ":forge-std/=lib/forge-std/src/", - ":openzeppelin-contracts/=lib/openzeppelin-contracts/", - ":openzeppelin/=lib/openzeppelin-contracts/contracts/", - ":renderers/=lib/eth-projects-monorepo/packages/eth-projects-contracts/contracts/lib/renderers/", - ":safe-contracts/=lib/safe-contracts/contracts/", - ":solmate/=lib/solmate/src/", - ":utils/=lib/eth-projects-monorepo/packages/eth-projects-contracts/contracts/lib/utils/" + "@clemlaflemme/=lib/eth-projects-monorepo/packages/eth-projects-contracts/contracts/", + "ds-test/=lib/forge-std/lib/ds-test/src/", + "eth-projects-monorepo/=lib/eth-projects-monorepo/", + "forge-std/=lib/forge-std/src/", + "openzeppelin-contracts/=lib/openzeppelin-contracts/", + "openzeppelin/=lib/openzeppelin-contracts/contracts/", + "renderers/=lib/eth-projects-monorepo/packages/eth-projects-contracts/contracts/lib/renderers/", + "safe-contracts/=lib/safe-contracts/contracts/", + "solmate/=lib/solmate/src/", + "utils/=lib/eth-projects-monorepo/packages/eth-projects-contracts/contracts/lib/utils/" ], "optimizer": { "enabled": true, @@ -151,31 +151,37 @@ "statements": [ { "AST": { + "nativeSrc": "1484:1927:24", "nodeType": "YulBlock", "src": "1484:1927:24", "statements": [ { + "nativeSrc": "1498:33:24", "nodeType": "YulVariableDeclaration", "src": "1498:33:24", "value": { "arguments": [ { "name": "transactions", + "nativeSrc": "1518:12:24", "nodeType": "YulIdentifier", "src": "1518:12:24" } ], "functionName": { "name": "mload", + "nativeSrc": "1512:5:24", "nodeType": "YulIdentifier", "src": "1512:5:24" }, + "nativeSrc": "1512:19:24", "nodeType": "YulFunctionCall", "src": "1512:19:24" }, "variables": [ { "name": "length", + "nativeSrc": "1502:6:24", "nodeType": "YulTypedName", "src": "1502:6:24", "type": "" @@ -183,10 +189,12 @@ ] }, { + "nativeSrc": "1544:13:24", "nodeType": "YulVariableDeclaration", "src": "1544:13:24", "value": { "kind": "number", + "nativeSrc": "1553:4:24", "nodeType": "YulLiteral", "src": "1553:4:24", "type": "", @@ -195,6 +203,7 @@ "variables": [ { "name": "i", + "nativeSrc": "1548:1:24", "nodeType": "YulTypedName", "src": "1548:1:24", "type": "" @@ -203,16 +212,19 @@ }, { "body": { + "nativeSrc": "1735:1666:24", "nodeType": "YulBlock", "src": "1735:1666:24", "statements": [ { + "nativeSrc": "1993:55:24", "nodeType": "YulVariableDeclaration", "src": "1993:55:24", "value": { "arguments": [ { "kind": "number", + "nativeSrc": "2014:4:24", "nodeType": "YulLiteral", "src": "2014:4:24", "type": "", @@ -224,44 +236,53 @@ "arguments": [ { "name": "transactions", + "nativeSrc": "2030:12:24", "nodeType": "YulIdentifier", "src": "2030:12:24" }, { "name": "i", + "nativeSrc": "2044:1:24", "nodeType": "YulIdentifier", "src": "2044:1:24" } ], "functionName": { "name": "add", + "nativeSrc": "2026:3:24", "nodeType": "YulIdentifier", "src": "2026:3:24" }, + "nativeSrc": "2026:20:24", "nodeType": "YulFunctionCall", "src": "2026:20:24" } ], "functionName": { "name": "mload", + "nativeSrc": "2020:5:24", "nodeType": "YulIdentifier", "src": "2020:5:24" }, + "nativeSrc": "2020:27:24", "nodeType": "YulFunctionCall", "src": "2020:27:24" } ], "functionName": { "name": "shr", + "nativeSrc": "2010:3:24", "nodeType": "YulIdentifier", "src": "2010:3:24" }, + "nativeSrc": "2010:38:24", "nodeType": "YulFunctionCall", "src": "2010:38:24" }, "variables": [ { "name": "operation", + "nativeSrc": "1997:9:24", "nodeType": "YulTypedName", "src": "1997:9:24", "type": "" @@ -269,12 +290,14 @@ ] }, { + "nativeSrc": "2267:59:24", "nodeType": "YulVariableDeclaration", "src": "2267:59:24", "value": { "arguments": [ { "kind": "number", + "nativeSrc": "2281:4:24", "nodeType": "YulLiteral", "src": "2281:4:24", "type": "", @@ -286,6 +309,7 @@ "arguments": [ { "name": "transactions", + "nativeSrc": "2297:12:24", "nodeType": "YulIdentifier", "src": "2297:12:24" }, @@ -293,11 +317,13 @@ "arguments": [ { "name": "i", + "nativeSrc": "2315:1:24", "nodeType": "YulIdentifier", "src": "2315:1:24" }, { "kind": "number", + "nativeSrc": "2318:4:24", "nodeType": "YulLiteral", "src": "2318:4:24", "type": "", @@ -306,42 +332,51 @@ ], "functionName": { "name": "add", + "nativeSrc": "2311:3:24", "nodeType": "YulIdentifier", "src": "2311:3:24" }, + "nativeSrc": "2311:12:24", "nodeType": "YulFunctionCall", "src": "2311:12:24" } ], "functionName": { "name": "add", + "nativeSrc": "2293:3:24", "nodeType": "YulIdentifier", "src": "2293:3:24" }, + "nativeSrc": "2293:31:24", "nodeType": "YulFunctionCall", "src": "2293:31:24" } ], "functionName": { "name": "mload", + "nativeSrc": "2287:5:24", "nodeType": "YulIdentifier", "src": "2287:5:24" }, + "nativeSrc": "2287:38:24", "nodeType": "YulFunctionCall", "src": "2287:38:24" } ], "functionName": { "name": "shr", + "nativeSrc": "2277:3:24", "nodeType": "YulIdentifier", "src": "2277:3:24" }, + "nativeSrc": "2277:49:24", "nodeType": "YulFunctionCall", "src": "2277:49:24" }, "variables": [ { "name": "to", + "nativeSrc": "2271:2:24", "nodeType": "YulTypedName", "src": "2271:2:24", "type": "" @@ -349,6 +384,7 @@ ] }, { + "nativeSrc": "2436:51:24", "nodeType": "YulVariableDeclaration", "src": "2436:51:24", "value": { @@ -357,6 +393,7 @@ "arguments": [ { "name": "transactions", + "nativeSrc": "2459:12:24", "nodeType": "YulIdentifier", "src": "2459:12:24" }, @@ -364,11 +401,13 @@ "arguments": [ { "name": "i", + "nativeSrc": "2477:1:24", "nodeType": "YulIdentifier", "src": "2477:1:24" }, { "kind": "number", + "nativeSrc": "2480:4:24", "nodeType": "YulLiteral", "src": "2480:4:24", "type": "", @@ -377,33 +416,40 @@ ], "functionName": { "name": "add", + "nativeSrc": "2473:3:24", "nodeType": "YulIdentifier", "src": "2473:3:24" }, + "nativeSrc": "2473:12:24", "nodeType": "YulFunctionCall", "src": "2473:12:24" } ], "functionName": { "name": "add", + "nativeSrc": "2455:3:24", "nodeType": "YulIdentifier", "src": "2455:3:24" }, + "nativeSrc": "2455:31:24", "nodeType": "YulFunctionCall", "src": "2455:31:24" } ], "functionName": { "name": "mload", + "nativeSrc": "2449:5:24", "nodeType": "YulIdentifier", "src": "2449:5:24" }, + "nativeSrc": "2449:38:24", "nodeType": "YulFunctionCall", "src": "2449:38:24" }, "variables": [ { "name": "value", + "nativeSrc": "2440:5:24", "nodeType": "YulTypedName", "src": "2440:5:24", "type": "" @@ -411,6 +457,7 @@ ] }, { + "nativeSrc": "2614:56:24", "nodeType": "YulVariableDeclaration", "src": "2614:56:24", "value": { @@ -419,6 +466,7 @@ "arguments": [ { "name": "transactions", + "nativeSrc": "2642:12:24", "nodeType": "YulIdentifier", "src": "2642:12:24" }, @@ -426,11 +474,13 @@ "arguments": [ { "name": "i", + "nativeSrc": "2660:1:24", "nodeType": "YulIdentifier", "src": "2660:1:24" }, { "kind": "number", + "nativeSrc": "2663:4:24", "nodeType": "YulLiteral", "src": "2663:4:24", "type": "", @@ -439,33 +489,40 @@ ], "functionName": { "name": "add", + "nativeSrc": "2656:3:24", "nodeType": "YulIdentifier", "src": "2656:3:24" }, + "nativeSrc": "2656:12:24", "nodeType": "YulFunctionCall", "src": "2656:12:24" } ], "functionName": { "name": "add", + "nativeSrc": "2638:3:24", "nodeType": "YulIdentifier", "src": "2638:3:24" }, + "nativeSrc": "2638:31:24", "nodeType": "YulFunctionCall", "src": "2638:31:24" } ], "functionName": { "name": "mload", + "nativeSrc": "2632:5:24", "nodeType": "YulIdentifier", "src": "2632:5:24" }, + "nativeSrc": "2632:38:24", "nodeType": "YulFunctionCall", "src": "2632:38:24" }, "variables": [ { "name": "dataLength", + "nativeSrc": "2618:10:24", "nodeType": "YulTypedName", "src": "2618:10:24", "type": "" @@ -473,12 +530,14 @@ ] }, { + "nativeSrc": "2820:43:24", "nodeType": "YulVariableDeclaration", "src": "2820:43:24", "value": { "arguments": [ { "name": "transactions", + "nativeSrc": "2836:12:24", "nodeType": "YulIdentifier", "src": "2836:12:24" }, @@ -486,11 +545,13 @@ "arguments": [ { "name": "i", + "nativeSrc": "2854:1:24", "nodeType": "YulIdentifier", "src": "2854:1:24" }, { "kind": "number", + "nativeSrc": "2857:4:24", "nodeType": "YulLiteral", "src": "2857:4:24", "type": "", @@ -499,24 +560,29 @@ ], "functionName": { "name": "add", + "nativeSrc": "2850:3:24", "nodeType": "YulIdentifier", "src": "2850:3:24" }, + "nativeSrc": "2850:12:24", "nodeType": "YulFunctionCall", "src": "2850:12:24" } ], "functionName": { "name": "add", + "nativeSrc": "2832:3:24", "nodeType": "YulIdentifier", "src": "2832:3:24" }, + "nativeSrc": "2832:31:24", "nodeType": "YulFunctionCall", "src": "2832:31:24" }, "variables": [ { "name": "data", + "nativeSrc": "2824:4:24", "nodeType": "YulTypedName", "src": "2824:4:24", "type": "" @@ -524,10 +590,12 @@ ] }, { + "nativeSrc": "2880:16:24", "nodeType": "YulVariableDeclaration", "src": "2880:16:24", "value": { "kind": "number", + "nativeSrc": "2895:1:24", "nodeType": "YulLiteral", "src": "2895:1:24", "type": "", @@ -536,6 +604,7 @@ "variables": [ { "name": "success", + "nativeSrc": "2884:7:24", "nodeType": "YulTypedName", "src": "2884:7:24", "type": "" @@ -546,10 +615,12 @@ "cases": [ { "body": { + "nativeSrc": "2953:97:24", "nodeType": "YulBlock", "src": "2953:97:24", "statements": [ { + "nativeSrc": "2975:57:24", "nodeType": "YulAssignment", "src": "2975:57:24", "value": { @@ -558,34 +629,41 @@ "arguments": [], "functionName": { "name": "gas", + "nativeSrc": "2991:3:24", "nodeType": "YulIdentifier", "src": "2991:3:24" }, + "nativeSrc": "2991:5:24", "nodeType": "YulFunctionCall", "src": "2991:5:24" }, { "name": "to", + "nativeSrc": "2998:2:24", "nodeType": "YulIdentifier", "src": "2998:2:24" }, { "name": "value", + "nativeSrc": "3002:5:24", "nodeType": "YulIdentifier", "src": "3002:5:24" }, { "name": "data", + "nativeSrc": "3009:4:24", "nodeType": "YulIdentifier", "src": "3009:4:24" }, { "name": "dataLength", + "nativeSrc": "3015:10:24", "nodeType": "YulIdentifier", "src": "3015:10:24" }, { "kind": "number", + "nativeSrc": "3027:1:24", "nodeType": "YulLiteral", "src": "3027:1:24", "type": "", @@ -593,6 +671,7 @@ }, { "kind": "number", + "nativeSrc": "3030:1:24", "nodeType": "YulLiteral", "src": "3030:1:24", "type": "", @@ -601,15 +680,18 @@ ], "functionName": { "name": "call", + "nativeSrc": "2986:4:24", "nodeType": "YulIdentifier", "src": "2986:4:24" }, + "nativeSrc": "2986:46:24", "nodeType": "YulFunctionCall", "src": "2986:46:24" }, "variableNames": [ { "name": "success", + "nativeSrc": "2975:7:24", "nodeType": "YulIdentifier", "src": "2975:7:24" } @@ -617,10 +699,12 @@ } ] }, + "nativeSrc": "2946:104:24", "nodeType": "YulCase", "src": "2946:104:24", "value": { "kind": "number", + "nativeSrc": "2951:1:24", "nodeType": "YulLiteral", "src": "2951:1:24", "type": "", @@ -629,6 +713,7 @@ }, { "body": { + "nativeSrc": "3135:52:24", "nodeType": "YulBlock", "src": "3135:52:24", "statements": [ @@ -637,6 +722,7 @@ "arguments": [ { "kind": "number", + "nativeSrc": "3164:1:24", "nodeType": "YulLiteral", "src": "3164:1:24", "type": "", @@ -644,6 +730,7 @@ }, { "kind": "number", + "nativeSrc": "3167:1:24", "nodeType": "YulLiteral", "src": "3167:1:24", "type": "", @@ -652,21 +739,26 @@ ], "functionName": { "name": "revert", + "nativeSrc": "3157:6:24", "nodeType": "YulIdentifier", "src": "3157:6:24" }, + "nativeSrc": "3157:12:24", "nodeType": "YulFunctionCall", "src": "3157:12:24" }, + "nativeSrc": "3157:12:24", "nodeType": "YulExpressionStatement", "src": "3157:12:24" } ] }, + "nativeSrc": "3128:59:24", "nodeType": "YulCase", "src": "3128:59:24", "value": { "kind": "number", + "nativeSrc": "3133:1:24", "nodeType": "YulLiteral", "src": "3133:1:24", "type": "", @@ -676,14 +768,17 @@ ], "expression": { "name": "operation", + "nativeSrc": "2920:9:24", "nodeType": "YulIdentifier", "src": "2920:9:24" }, + "nativeSrc": "2913:274:24", "nodeType": "YulSwitch", "src": "2913:274:24" }, { "body": { + "nativeSrc": "3222:52:24", "nodeType": "YulBlock", "src": "3222:52:24", "statements": [ @@ -692,6 +787,7 @@ "arguments": [ { "kind": "number", + "nativeSrc": "3251:1:24", "nodeType": "YulLiteral", "src": "3251:1:24", "type": "", @@ -699,6 +795,7 @@ }, { "kind": "number", + "nativeSrc": "3254:1:24", "nodeType": "YulLiteral", "src": "3254:1:24", "type": "", @@ -707,12 +804,15 @@ ], "functionName": { "name": "revert", + "nativeSrc": "3244:6:24", "nodeType": "YulIdentifier", "src": "3244:6:24" }, + "nativeSrc": "3244:12:24", "nodeType": "YulFunctionCall", "src": "3244:12:24" }, + "nativeSrc": "3244:12:24", "nodeType": "YulExpressionStatement", "src": "3244:12:24" } @@ -722,11 +822,13 @@ "arguments": [ { "name": "success", + "nativeSrc": "3210:7:24", "nodeType": "YulIdentifier", "src": "3210:7:24" }, { "kind": "number", + "nativeSrc": "3219:1:24", "nodeType": "YulLiteral", "src": "3219:1:24", "type": "", @@ -735,22 +837,27 @@ ], "functionName": { "name": "eq", + "nativeSrc": "3207:2:24", "nodeType": "YulIdentifier", "src": "3207:2:24" }, + "nativeSrc": "3207:14:24", "nodeType": "YulFunctionCall", "src": "3207:14:24" }, + "nativeSrc": "3204:70:24", "nodeType": "YulIf", "src": "3204:70:24" }, { + "nativeSrc": "3353:34:24", "nodeType": "YulAssignment", "src": "3353:34:24", "value": { "arguments": [ { "name": "i", + "nativeSrc": "3362:1:24", "nodeType": "YulIdentifier", "src": "3362:1:24" }, @@ -758,6 +865,7 @@ "arguments": [ { "kind": "number", + "nativeSrc": "3369:4:24", "nodeType": "YulLiteral", "src": "3369:4:24", "type": "", @@ -765,30 +873,36 @@ }, { "name": "dataLength", + "nativeSrc": "3375:10:24", "nodeType": "YulIdentifier", "src": "3375:10:24" } ], "functionName": { "name": "add", + "nativeSrc": "3365:3:24", "nodeType": "YulIdentifier", "src": "3365:3:24" }, + "nativeSrc": "3365:21:24", "nodeType": "YulFunctionCall", "src": "3365:21:24" } ], "functionName": { "name": "add", + "nativeSrc": "3358:3:24", "nodeType": "YulIdentifier", "src": "3358:3:24" }, + "nativeSrc": "3358:29:24", "nodeType": "YulFunctionCall", "src": "3358:29:24" }, "variableNames": [ { "name": "i", + "nativeSrc": "3353:1:24", "nodeType": "YulIdentifier", "src": "3353:1:24" } @@ -800,30 +914,37 @@ "arguments": [ { "name": "i", + "nativeSrc": "1650:1:24", "nodeType": "YulIdentifier", "src": "1650:1:24" }, { "name": "length", + "nativeSrc": "1653:6:24", "nodeType": "YulIdentifier", "src": "1653:6:24" } ], "functionName": { "name": "lt", + "nativeSrc": "1647:2:24", "nodeType": "YulIdentifier", "src": "1647:2:24" }, + "nativeSrc": "1647:13:24", "nodeType": "YulFunctionCall", "src": "1647:13:24" }, + "nativeSrc": "1570:1831:24", "nodeType": "YulForLoop", "post": { + "nativeSrc": "1661:73:24", "nodeType": "YulBlock", "src": "1661:73:24", "statements": [] }, "pre": { + "nativeSrc": "1574:72:24", "nodeType": "YulBlock", "src": "1574:72:24", "statements": [] @@ -832,7 +953,7 @@ } ] }, - "evmVersion": "london", + "evmVersion": "paris", "externalReferences": [ { "declaration": 30369, @@ -959,7 +1080,8 @@ "name": "MultiSendCallOnly", "nameLocation": "369:17:24", "scope": 30376, - "usedErrors": [] + "usedErrors": [], + "usedEvents": [] } ], "license": "LGPL-3.0-only" diff --git a/packages/starksheet-solidity/out/Sheet.sol/Sheet.json b/packages/starksheet-solidity/out/Sheet.sol/Sheet.json index 75efbffb..b1fa9483 100644 --- a/packages/starksheet-solidity/out/Sheet.sol/Sheet.json +++ b/packages/starksheet-solidity/out/Sheet.sol/Sheet.json @@ -921,7 +921,7 @@ } ], "bytecode": { - "object": "0x60806040523480156200001157600080fd5b50604051806040016040528060078152602001660536865657420360cc1b815250604051806040016040528060048152602001630534854360e41b81525062000069620000636200008f60201b60201c565b62000093565b600162000077838262000188565b50600262000086828262000188565b50505062000254565b3390565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b634e487b7160e01b600052604160045260246000fd5b600181811c908216806200010e57607f821691505b6020821081036200012f57634e487b7160e01b600052602260045260246000fd5b50919050565b601f8211156200018357600081815260208120601f850160051c810160208610156200015e5750805b601f850160051c820191505b818110156200017f578281556001016200016a565b5050505b505050565b81516001600160401b03811115620001a457620001a4620000e3565b620001bc81620001b58454620000f9565b8462000135565b602080601f831160018114620001f45760008415620001db5750858301515b600019600386901b1c1916600185901b1785556200017f565b600085815260208120601f198616915b82811015620002255788860151825594840194600190910190840162000204565b5085821015620002445787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b6121cc80620002646000396000f3fe608060405234801561001057600080fd5b50600436106102275760003560e01c8063715018a611610130578063b85d8b85116100b8578063cf0983981161007c578063cf09839814610512578063cfbe95d814610535578063df4ca20614610556578063e985e9c514610576578063f2fde38b146105a457600080fd5b8063b85d8b85146104a4578063b88d4fde146104ce578063b8c368ec146104e1578063c47f0027146104ec578063c87b56dd146104ff57600080fd5b806395d89b41116100ff57806395d89b4114610439578063a22cb46514610441578063b46ebb1214610454578063b6d658e114610467578063b84c82461461049157600080fd5b8063715018a6146103fa578063768d5029146104025780638ada6b0f146104155780638da5cb5b1461042857600080fd5b80631b06443c116101b35780634f6ccce7116101825780634f6ccce71461038157806356d3163d146103a15780636352211e146103b45780636a0abc74146103c757806370a08231146103e757600080fd5b80631b06443c14610335578063206848f61461034857806323b872dd1461035b57806342842e0e1461036e57600080fd5b8063081812fc116101fa578063081812fc146102a1578063095ea7b3146102e2578063172b9eed146102f757806318160ddd1461030a5780631941fd141461031357600080fd5b806301ffc9a71461022c57806302f3c4c91461025457806306fdde03146102745780630715a24a1461027c575b600080fd5b61023f61023a36600461176a565b6105b7565b60405190151581526020015b60405180910390f35b610267610262366004611861565b610609565b60405161024b9190611951565b610267610638565b6102936fffffffffffffffffffffffffffffffff81565b60405190815260200161024b565b6102ca6102af366004611964565b6005602052600090815260409020546001600160a01b031681565b6040516001600160a01b03909116815260200161024b565b6102f56102f036600461197d565b6106c6565b005b6102676103053660046119a9565b6107ad565b61029360075481565b610326610321366004611964565b610875565b60405161024b939291906119de565b6102ca610343366004611a0e565b61092a565b610326610356366004611964565b6109e3565b6102f5610369366004611a2b565b610ae1565b6102f561037c366004611a2b565b610ca8565b61029361038f366004611964565b60086020526000908152604090205481565b6102f56103af366004611a0e565b610da0565b6102ca6103c2366004611964565b610dca565b6103da6103d53660046119a9565b610e1c565b60405161024b9190611a6c565b6102936103f5366004611a0e565b610e60565b6102f5610ec3565b6102f5610410366004611af9565b610ed7565b6009546102ca906001600160a01b031681565b6000546001600160a01b03166102ca565b610267611035565b6102f561044f366004611b63565b611042565b610267610462366004611964565b6110ae565b61047a610475366004611964565b611258565b60408051921515835260208301919091520161024b565b6102f561049f366004611ba1565b611275565b6104b56104b2366004611964565b90565b6040516001600160e01b0319909116815260200161024b565b6102f56104dc366004611be3565b6112c6565b6102ca600160801b81565b6102f56104fa366004611ba1565b6113ae565b61026761050d366004611964565b6113ff565b61023f610520366004611a0e565b600160801b6001600160a01b03919091161090565b61023f610543366004611861565b516001600160a01b0316600160801b1490565b610569610564366004611964565b6114c9565b60405161024b9190611c16565b61023f610584366004611c4d565b600660209081526000928352604080842090915290825290205460ff1681565b6102f56105b2366004611a0e565b611526565b60006301ffc9a760e01b6001600160e01b0319831614806105e857506380ac58cd60e01b6001600160e01b03198316145b806106035750635b5e139f60e01b6001600160e01b03198316145b92915050565b6060816020015160405160200161062291815260200190565b6040516020818303038152906040529050919050565b6001805461064590611c7b565b80601f016020809104026020016040519081016040528092919081815260200182805461067190611c7b565b80156106be5780601f10610693576101008083540402835291602001916106be565b820191906000526020600020905b8154815290600101906020018083116106a157829003601f168201915b505050505081565b6000818152600360205260409020546001600160a01b03163381148061070f57506001600160a01b038116600090815260066020908152604080832033845290915290205460ff165b6107515760405162461bcd60e51b815260206004820152600e60248201526d1393d517d055551213d49256915160921b60448201526064015b60405180910390fd5b60008281526005602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b606060006107ba83610e1c565b9050606060005b825181101561086d576000806107ef8584815181106107e2576107e2611cb5565b6020026020010151611258565b9150915081156108335783610803826110ae565b61080c90611ccb565b60405160200161081d929190611cef565b6040516020818303038152906040529350610858565b6040516108469085908390602001611cef565b60405160208183030381529060405293505b5050808061086590611d27565b9150506107c1565b509392505050565b600a602052600090815260409020805460018201546002830180546001600160a01b039093169391926108a790611c7b565b80601f01602080910402602001604051908101604052809291908181526020018280546108d390611c7b565b80156109205780601f106108f557610100808354040283529160200191610920565b820191906000526020600020905b81548152906001019060200180831161090357829003601f168201915b5050505050905083565b6000600160801b6001600160a01b03831610156109da576000610955836001600160a01b03166110ae565b604051632d737e4960e21b815290915073__$a792e50881dbcbffce7826062cdb0978aa$__9063b5cdf92490610992908490600090600401611d40565b602060405180830381865af41580156109af573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906109d39190611d62565b9392505050565b5090565b919050565b60008181526003602052604081205481906060906001600160a01b0316610a1057600160801b9250610a2b565b6000848152600a60205260409020546001600160a01b031692505b6000848152600a60205260409020600181015460029091018054859291908190610a5490611c7b565b80601f0160208091040260200160405190810160405280929190818152602001828054610a8090611c7b565b8015610acd5780601f10610aa257610100808354040283529160200191610acd565b820191906000526020600020905b815481529060010190602001808311610ab057829003601f168201915b505050505090509250925092509193909250565b6000818152600360205260409020546001600160a01b03848116911614610b375760405162461bcd60e51b815260206004820152600a60248201526957524f4e475f46524f4d60b01b6044820152606401610748565b6001600160a01b038216610b815760405162461bcd60e51b81526020600482015260116024820152701253959053125117d49150d25412515395607a1b6044820152606401610748565b336001600160a01b0384161480610bbb57506001600160a01b038316600090815260066020908152604080832033845290915290205460ff165b80610bdc57506000818152600560205260409020546001600160a01b031633145b610c195760405162461bcd60e51b815260206004820152600e60248201526d1393d517d055551213d49256915160921b6044820152606401610748565b6001600160a01b0380841660008181526004602090815260408083208054600019019055938616808352848320805460010190558583526003825284832080546001600160a01b03199081168317909155600590925284832080549092169091559251849392917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b610cb3838383610ae1565b6001600160a01b0382163b1580610d5c5750604051630a85bd0160e11b8082523360048301526001600160a01b03858116602484015260448301849052608060648401526000608484015290919084169063150b7a029060a4016020604051808303816000875af1158015610d2c573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610d509190611d7b565b6001600160e01b031916145b610d9b5760405162461bcd60e51b815260206004820152601060248201526f155394d0519157d49150d2541251539560821b6044820152606401610748565b505050565b610da861159f565b600980546001600160a01b0319166001600160a01b0392909216919091179055565b6000818152600360205260409020546001600160a01b0316806109de5760405162461bcd60e51b815260206004820152600a6024820152691393d517d3525395115160b21b6044820152606401610748565b60608082516040519150602081048252602082016020850160005b83811015610e4f578181015183820152602001610e37565b505050810160200160405292915050565b60006001600160a01b038216610ea75760405162461bcd60e51b815260206004820152600c60248201526b5a45524f5f4144445245535360a01b6044820152606401610748565b506001600160a01b031660009081526004602052604090205490565b610ecb61159f565b610ed560006115f9565b565b6000858152600360205260409020546001600160a01b0316610f2f57610efd3286611649565b60078054600090815260086020526040812087905581546001929190610f24908490611d98565b90915550610f889050565b6000858152600360205260409020546001600160a01b03163214610f8857600085815260036020526040908190205490516324f3f02560e21b81526001600160a01b039091166004820152326024820152604401610748565b6040518060600160405280856001600160a01b0316815260200184815260200183838080601f0160208091040260200160405190810160405280939291908181526020018383808284376000920182905250939094525050878152600a6020908152604091829020845181546001600160a01b0319166001600160a01b0390911617815590840151600182015590830151909150600282019061102b9082611df9565b5050505050505050565b6002805461064590611c7b565b3360008181526006602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b6000818152600a6020908152604080832081516060818101845282546001600160a01b0316825260018301549482019490945260028201805494959491938401916110f890611c7b565b80601f016020809104026020016040519081016040528092919081815260200182805461112490611c7b565b80156111715780601f1061114657610100808354040283529160200191611171565b820191906000526020600020905b81548152906001019060200180831161115457829003601f168201915b505050505081525050905061119381516001600160a01b0316600160801b1490565b156111a1576109d381610609565b60006111b0826000015161092a565b905060006111bf836020015190565b905060006111d084604001516107ad565b90506000836001600160a01b031683836040516020016111f1929190611eb9565b60408051601f198184030181529082905261120b91611eea565b600060405180830381855afa9150503d8060008114611246576040519150601f19603f3d011682016040523d82523d6000602084013e61124b565b606091505b5098975050505050505050565b600080611266600284611f06565b60019081149493901c92915050565b61127d61159f565b7f8dca0271872d00b3de3abafca544c52fcd7d512dd852c9894fa2c118ac759a93600283836040516112b193929190611fce565b60405180910390a16002610d9b828483611ffe565b6112d1858585610ae1565b6001600160a01b0384163b15806113685750604051630a85bd0160e11b808252906001600160a01b0386169063150b7a02906113199033908a908990899089906004016120be565b6020604051808303816000875af1158015611338573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061135c9190611d7b565b6001600160e01b031916145b6113a75760405162461bcd60e51b815260206004820152601060248201526f155394d0519157d49150d2541251539560821b6044820152606401610748565b5050505050565b6113b661159f565b7fb65b7b5ea384affd30f77f842e057d29dd1b13f133adf69a724a8105b164ab75600183836040516113ea93929190611fce565b60405180910390a16001610d9b828483611ffe565b6000818152600360205260409020546060906001600160a01b03168061143b57604051630243d1a960e21b815260048101849052602401610748565b6000611446846110ae565b6009546040516328de0f2f60e01b81529192506001600160a01b0316906328de0f2f9061147c90879085906001906004016120fd565b600060405180830381865afa158015611499573d6000803e3d6000fd5b505050506040513d6000823e601f3d908101601f191682016040526114c19190810190612128565b949350505050565b604080516060808201835260008083526020830181905292820152906114ee836110ae565b6040805160608101825285815260009586526003602090815295829020546001600160a01b0316958101959095528401525090919050565b61152e61159f565b6001600160a01b0381166115935760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610748565b61159c816115f9565b50565b6000546001600160a01b03163314610ed55760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610748565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b6001600160a01b0382166116935760405162461bcd60e51b81526020600482015260116024820152701253959053125117d49150d25412515395607a1b6044820152606401610748565b6000818152600360205260409020546001600160a01b0316156116e95760405162461bcd60e51b815260206004820152600e60248201526d1053149150511657d3525395115160921b6044820152606401610748565b6001600160a01b038216600081815260046020908152604080832080546001019055848352600390915280822080546001600160a01b0319168417905551839291907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b6001600160e01b03198116811461159c57600080fd5b60006020828403121561177c57600080fd5b81356109d381611754565b634e487b7160e01b600052604160045260246000fd5b604051601f8201601f1916810167ffffffffffffffff811182821017156117c6576117c6611787565b604052919050565b6001600160a01b038116811461159c57600080fd5b600067ffffffffffffffff8211156117fd576117fd611787565b50601f01601f191660200190565b600082601f83011261181c57600080fd5b813561182f61182a826117e3565b61179d565b81815284602083860101111561184457600080fd5b816020850160208301376000918101602001919091529392505050565b60006020828403121561187357600080fd5b813567ffffffffffffffff8082111561188b57600080fd5b908301906060828603121561189f57600080fd5b6040516060810181811083821117156118ba576118ba611787565b60405282356118c8816117ce565b8152602083810135908201526040830135828111156118e657600080fd5b6118f28782860161180b565b60408301525095945050505050565b60005b8381101561191c578181015183820152602001611904565b50506000910152565b6000815180845261193d816020860160208601611901565b601f01601f19169290920160200192915050565b6020815260006109d36020830184611925565b60006020828403121561197657600080fd5b5035919050565b6000806040838503121561199057600080fd5b823561199b816117ce565b946020939093013593505050565b6000602082840312156119bb57600080fd5b813567ffffffffffffffff8111156119d257600080fd5b6114c18482850161180b565b60018060a01b0384168152826020820152606060408201526000611a056060830184611925565b95945050505050565b600060208284031215611a2057600080fd5b81356109d3816117ce565b600080600060608486031215611a4057600080fd5b8335611a4b816117ce565b92506020840135611a5b816117ce565b929592945050506040919091013590565b6020808252825182820181905260009190848201906040850190845b81811015611aa457835183529284019291840191600101611a88565b50909695505050505050565b60008083601f840112611ac257600080fd5b50813567ffffffffffffffff811115611ada57600080fd5b602083019150836020828501011115611af257600080fd5b9250929050565b600080600080600060808688031215611b1157600080fd5b853594506020860135611b23816117ce565b935060408601359250606086013567ffffffffffffffff811115611b4657600080fd5b611b5288828901611ab0565b969995985093965092949392505050565b60008060408385031215611b7657600080fd5b8235611b81816117ce565b915060208301358015158114611b9657600080fd5b809150509250929050565b60008060208385031215611bb457600080fd5b823567ffffffffffffffff811115611bcb57600080fd5b611bd785828601611ab0565b90969095509350505050565b600080600080600060808688031215611bfb57600080fd5b8535611c06816117ce565b94506020860135611b23816117ce565b602081528151602082015260018060a01b036020830151166040820152600060408301516060808401526114c16080840182611925565b60008060408385031215611c6057600080fd5b8235611c6b816117ce565b91506020830135611b96816117ce565b600181811c90821680611c8f57607f821691505b602082108103611caf57634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052603260045260246000fd5b80516020808301519190811015611caf5760001960209190910360031b1b16919050565b60008351611d01818460208801611901565b9190910191825250602001919050565b634e487b7160e01b600052601160045260246000fd5b600060018201611d3957611d39611d11565b5060010190565b604081526000611d536040830185611925565b90508260208301529392505050565b600060208284031215611d7457600080fd5b5051919050565b600060208284031215611d8d57600080fd5b81516109d381611754565b8082018082111561060357610603611d11565b601f821115610d9b57600081815260208120601f850160051c81016020861015611dd25750805b601f850160051c820191505b81811015611df157828155600101611dde565b505050505050565b815167ffffffffffffffff811115611e1357611e13611787565b611e2781611e218454611c7b565b84611dab565b602080601f831160018114611e5c5760008415611e445750858301515b600019600386901b1c1916600185901b178555611df1565b600085815260208120601f198616915b82811015611e8b57888601518255948401946001909101908401611e6c565b5085821015611ea95787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b6001600160e01b0319831681528151600090611edc816004850160208701611901565b919091016004019392505050565b60008251611efc818460208701611901565b9190910192915050565b600082611f2357634e487b7160e01b600052601260045260246000fd5b500690565b60008154611f3581611c7b565b808552602060018381168015611f525760018114611f6c57611f9a565b60ff1985168884015283151560051b880183019550611f9a565b866000528260002060005b85811015611f925781548a8201860152908301908401611f77565b890184019650505b505050505092915050565b81835281816020850137506000828201602090810191909152601f909101601f19169091010190565b604081526000611fe16040830186611f28565b8281036020840152611ff4818587611fa5565b9695505050505050565b67ffffffffffffffff83111561201657612016611787565b61202a836120248354611c7b565b83611dab565b6000601f84116001811461205e57600085156120465750838201355b600019600387901b1c1916600186901b1783556113a7565b600083815260209020601f19861690835b8281101561208f578685013582556020948501946001909201910161206f565b50868210156120ac5760001960f88860031b161c19848701351681555b505060018560011b0183555050505050565b6001600160a01b03868116825285166020820152604081018490526080606082018190526000906120f29083018486611fa5565b979650505050505050565b8381526060602082015260006121166060830185611925565b8281036040840152611ff48185611f28565b60006020828403121561213a57600080fd5b815167ffffffffffffffff81111561215157600080fd5b8201601f8101841361216257600080fd5b805161217061182a826117e3565b81815285602083850101111561218557600080fd5b611a0582602083016020860161190156fea26469706673582212203fc548aa4f22e6f4c01757ba3f2e0383630418b3d17601758718ab19a4d9918d64736f6c63430008110033", + "object": "0x60806040523480156200001157600080fd5b50604051806040016040528060078152602001660536865657420360cc1b815250604051806040016040528060048152602001630534854360e41b81525062000069620000636200008f60201b60201c565b62000093565b600162000077838262000188565b50600262000086828262000188565b50505062000254565b3390565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b634e487b7160e01b600052604160045260246000fd5b600181811c908216806200010e57607f821691505b6020821081036200012f57634e487b7160e01b600052602260045260246000fd5b50919050565b601f8211156200018357600081815260208120601f850160051c810160208610156200015e5750805b601f850160051c820191505b818110156200017f578281556001016200016a565b5050505b505050565b81516001600160401b03811115620001a457620001a4620000e3565b620001bc81620001b58454620000f9565b8462000135565b602080601f831160018114620001f45760008415620001db5750858301515b600019600386901b1c1916600185901b1785556200017f565b600085815260208120601f198616915b82811015620002255788860151825594840194600190910190840162000204565b5085821015620002445787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b6121cc80620002646000396000f3fe608060405234801561001057600080fd5b50600436106102275760003560e01c8063715018a611610130578063b85d8b85116100b8578063cf0983981161007c578063cf09839814610512578063cfbe95d814610535578063df4ca20614610556578063e985e9c514610576578063f2fde38b146105a457600080fd5b8063b85d8b85146104a4578063b88d4fde146104ce578063b8c368ec146104e1578063c47f0027146104ec578063c87b56dd146104ff57600080fd5b806395d89b41116100ff57806395d89b4114610439578063a22cb46514610441578063b46ebb1214610454578063b6d658e114610467578063b84c82461461049157600080fd5b8063715018a6146103fa578063768d5029146104025780638ada6b0f146104155780638da5cb5b1461042857600080fd5b80631b06443c116101b35780634f6ccce7116101825780634f6ccce71461038157806356d3163d146103a15780636352211e146103b45780636a0abc74146103c757806370a08231146103e757600080fd5b80631b06443c14610335578063206848f61461034857806323b872dd1461035b57806342842e0e1461036e57600080fd5b8063081812fc116101fa578063081812fc146102a1578063095ea7b3146102e2578063172b9eed146102f757806318160ddd1461030a5780631941fd141461031357600080fd5b806301ffc9a71461022c57806302f3c4c91461025457806306fdde03146102745780630715a24a1461027c575b600080fd5b61023f61023a36600461176a565b6105b7565b60405190151581526020015b60405180910390f35b610267610262366004611861565b610609565b60405161024b9190611951565b610267610638565b6102936fffffffffffffffffffffffffffffffff81565b60405190815260200161024b565b6102ca6102af366004611964565b6005602052600090815260409020546001600160a01b031681565b6040516001600160a01b03909116815260200161024b565b6102f56102f036600461197d565b6106c6565b005b6102676103053660046119a9565b6107ad565b61029360075481565b610326610321366004611964565b610875565b60405161024b939291906119de565b6102ca610343366004611a0e565b61092a565b610326610356366004611964565b6109e3565b6102f5610369366004611a2b565b610ae1565b6102f561037c366004611a2b565b610ca8565b61029361038f366004611964565b60086020526000908152604090205481565b6102f56103af366004611a0e565b610da0565b6102ca6103c2366004611964565b610dca565b6103da6103d53660046119a9565b610e1c565b60405161024b9190611a6c565b6102936103f5366004611a0e565b610e60565b6102f5610ec3565b6102f5610410366004611af9565b610ed7565b6009546102ca906001600160a01b031681565b6000546001600160a01b03166102ca565b610267611035565b6102f561044f366004611b63565b611042565b610267610462366004611964565b6110ae565b61047a610475366004611964565b611258565b60408051921515835260208301919091520161024b565b6102f561049f366004611ba1565b611275565b6104b56104b2366004611964565b90565b6040516001600160e01b0319909116815260200161024b565b6102f56104dc366004611be3565b6112c6565b6102ca600160801b81565b6102f56104fa366004611ba1565b6113ae565b61026761050d366004611964565b6113ff565b61023f610520366004611a0e565b600160801b6001600160a01b03919091161090565b61023f610543366004611861565b516001600160a01b0316600160801b1490565b610569610564366004611964565b6114c9565b60405161024b9190611c16565b61023f610584366004611c4d565b600660209081526000928352604080842090915290825290205460ff1681565b6102f56105b2366004611a0e565b611526565b60006301ffc9a760e01b6001600160e01b0319831614806105e857506380ac58cd60e01b6001600160e01b03198316145b806106035750635b5e139f60e01b6001600160e01b03198316145b92915050565b6060816020015160405160200161062291815260200190565b6040516020818303038152906040529050919050565b6001805461064590611c7b565b80601f016020809104026020016040519081016040528092919081815260200182805461067190611c7b565b80156106be5780601f10610693576101008083540402835291602001916106be565b820191906000526020600020905b8154815290600101906020018083116106a157829003601f168201915b505050505081565b6000818152600360205260409020546001600160a01b03163381148061070f57506001600160a01b038116600090815260066020908152604080832033845290915290205460ff165b6107515760405162461bcd60e51b815260206004820152600e60248201526d1393d517d055551213d49256915160921b60448201526064015b60405180910390fd5b60008281526005602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b606060006107ba83610e1c565b9050606060005b825181101561086d576000806107ef8584815181106107e2576107e2611cb5565b6020026020010151611258565b9150915081156108335783610803826110ae565b61080c90611ccb565b60405160200161081d929190611cef565b6040516020818303038152906040529350610858565b6040516108469085908390602001611cef565b60405160208183030381529060405293505b5050808061086590611d27565b9150506107c1565b509392505050565b600a602052600090815260409020805460018201546002830180546001600160a01b039093169391926108a790611c7b565b80601f01602080910402602001604051908101604052809291908181526020018280546108d390611c7b565b80156109205780601f106108f557610100808354040283529160200191610920565b820191906000526020600020905b81548152906001019060200180831161090357829003601f168201915b5050505050905083565b6000600160801b6001600160a01b03831610156109da576000610955836001600160a01b03166110ae565b604051632d737e4960e21b815290915073__$a792e50881dbcbffce7826062cdb0978aa$__9063b5cdf92490610992908490600090600401611d40565b602060405180830381865af41580156109af573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906109d39190611d62565b9392505050565b5090565b919050565b60008181526003602052604081205481906060906001600160a01b0316610a1057600160801b9250610a2b565b6000848152600a60205260409020546001600160a01b031692505b6000848152600a60205260409020600181015460029091018054859291908190610a5490611c7b565b80601f0160208091040260200160405190810160405280929190818152602001828054610a8090611c7b565b8015610acd5780601f10610aa257610100808354040283529160200191610acd565b820191906000526020600020905b815481529060010190602001808311610ab057829003601f168201915b505050505090509250925092509193909250565b6000818152600360205260409020546001600160a01b03848116911614610b375760405162461bcd60e51b815260206004820152600a60248201526957524f4e475f46524f4d60b01b6044820152606401610748565b6001600160a01b038216610b815760405162461bcd60e51b81526020600482015260116024820152701253959053125117d49150d25412515395607a1b6044820152606401610748565b336001600160a01b0384161480610bbb57506001600160a01b038316600090815260066020908152604080832033845290915290205460ff165b80610bdc57506000818152600560205260409020546001600160a01b031633145b610c195760405162461bcd60e51b815260206004820152600e60248201526d1393d517d055551213d49256915160921b6044820152606401610748565b6001600160a01b0380841660008181526004602090815260408083208054600019019055938616808352848320805460010190558583526003825284832080546001600160a01b03199081168317909155600590925284832080549092169091559251849392917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b610cb3838383610ae1565b6001600160a01b0382163b1580610d5c5750604051630a85bd0160e11b8082523360048301526001600160a01b03858116602484015260448301849052608060648401526000608484015290919084169063150b7a029060a4016020604051808303816000875af1158015610d2c573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610d509190611d7b565b6001600160e01b031916145b610d9b5760405162461bcd60e51b815260206004820152601060248201526f155394d0519157d49150d2541251539560821b6044820152606401610748565b505050565b610da861159f565b600980546001600160a01b0319166001600160a01b0392909216919091179055565b6000818152600360205260409020546001600160a01b0316806109de5760405162461bcd60e51b815260206004820152600a6024820152691393d517d3525395115160b21b6044820152606401610748565b60608082516040519150602081048252602082016020850160005b83811015610e4f578181015183820152602001610e37565b505050810160200160405292915050565b60006001600160a01b038216610ea75760405162461bcd60e51b815260206004820152600c60248201526b5a45524f5f4144445245535360a01b6044820152606401610748565b506001600160a01b031660009081526004602052604090205490565b610ecb61159f565b610ed560006115f9565b565b6000858152600360205260409020546001600160a01b0316610f2f57610efd3286611649565b60078054600090815260086020526040812087905581546001929190610f24908490611d98565b90915550610f889050565b6000858152600360205260409020546001600160a01b03163214610f8857600085815260036020526040908190205490516324f3f02560e21b81526001600160a01b039091166004820152326024820152604401610748565b6040518060600160405280856001600160a01b0316815260200184815260200183838080601f0160208091040260200160405190810160405280939291908181526020018383808284376000920182905250939094525050878152600a6020908152604091829020845181546001600160a01b0319166001600160a01b0390911617815590840151600182015590830151909150600282019061102b9082611df9565b5050505050505050565b6002805461064590611c7b565b3360008181526006602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b6000818152600a6020908152604080832081516060818101845282546001600160a01b0316825260018301549482019490945260028201805494959491938401916110f890611c7b565b80601f016020809104026020016040519081016040528092919081815260200182805461112490611c7b565b80156111715780601f1061114657610100808354040283529160200191611171565b820191906000526020600020905b81548152906001019060200180831161115457829003601f168201915b505050505081525050905061119381516001600160a01b0316600160801b1490565b156111a1576109d381610609565b60006111b0826000015161092a565b905060006111bf836020015190565b905060006111d084604001516107ad565b90506000836001600160a01b031683836040516020016111f1929190611eb9565b60408051601f198184030181529082905261120b91611eea565b600060405180830381855afa9150503d8060008114611246576040519150601f19603f3d011682016040523d82523d6000602084013e61124b565b606091505b5098975050505050505050565b600080611266600284611f06565b60019081149493901c92915050565b61127d61159f565b7f8dca0271872d00b3de3abafca544c52fcd7d512dd852c9894fa2c118ac759a93600283836040516112b193929190611fce565b60405180910390a16002610d9b828483611ffe565b6112d1858585610ae1565b6001600160a01b0384163b15806113685750604051630a85bd0160e11b808252906001600160a01b0386169063150b7a02906113199033908a908990899089906004016120be565b6020604051808303816000875af1158015611338573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061135c9190611d7b565b6001600160e01b031916145b6113a75760405162461bcd60e51b815260206004820152601060248201526f155394d0519157d49150d2541251539560821b6044820152606401610748565b5050505050565b6113b661159f565b7fb65b7b5ea384affd30f77f842e057d29dd1b13f133adf69a724a8105b164ab75600183836040516113ea93929190611fce565b60405180910390a16001610d9b828483611ffe565b6000818152600360205260409020546060906001600160a01b03168061143b57604051630243d1a960e21b815260048101849052602401610748565b6000611446846110ae565b6009546040516328de0f2f60e01b81529192506001600160a01b0316906328de0f2f9061147c90879085906001906004016120fd565b600060405180830381865afa158015611499573d6000803e3d6000fd5b505050506040513d6000823e601f3d908101601f191682016040526114c19190810190612128565b949350505050565b604080516060808201835260008083526020830181905292820152906114ee836110ae565b6040805160608101825285815260009586526003602090815295829020546001600160a01b0316958101959095528401525090919050565b61152e61159f565b6001600160a01b0381166115935760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610748565b61159c816115f9565b50565b6000546001600160a01b03163314610ed55760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610748565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b6001600160a01b0382166116935760405162461bcd60e51b81526020600482015260116024820152701253959053125117d49150d25412515395607a1b6044820152606401610748565b6000818152600360205260409020546001600160a01b0316156116e95760405162461bcd60e51b815260206004820152600e60248201526d1053149150511657d3525395115160921b6044820152606401610748565b6001600160a01b038216600081815260046020908152604080832080546001019055848352600390915280822080546001600160a01b0319168417905551839291907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b6001600160e01b03198116811461159c57600080fd5b60006020828403121561177c57600080fd5b81356109d381611754565b634e487b7160e01b600052604160045260246000fd5b604051601f8201601f1916810167ffffffffffffffff811182821017156117c6576117c6611787565b604052919050565b6001600160a01b038116811461159c57600080fd5b600067ffffffffffffffff8211156117fd576117fd611787565b50601f01601f191660200190565b600082601f83011261181c57600080fd5b813561182f61182a826117e3565b61179d565b81815284602083860101111561184457600080fd5b816020850160208301376000918101602001919091529392505050565b60006020828403121561187357600080fd5b813567ffffffffffffffff8082111561188b57600080fd5b908301906060828603121561189f57600080fd5b6040516060810181811083821117156118ba576118ba611787565b60405282356118c8816117ce565b8152602083810135908201526040830135828111156118e657600080fd5b6118f28782860161180b565b60408301525095945050505050565b60005b8381101561191c578181015183820152602001611904565b50506000910152565b6000815180845261193d816020860160208601611901565b601f01601f19169290920160200192915050565b6020815260006109d36020830184611925565b60006020828403121561197657600080fd5b5035919050565b6000806040838503121561199057600080fd5b823561199b816117ce565b946020939093013593505050565b6000602082840312156119bb57600080fd5b813567ffffffffffffffff8111156119d257600080fd5b6114c18482850161180b565b60018060a01b0384168152826020820152606060408201526000611a056060830184611925565b95945050505050565b600060208284031215611a2057600080fd5b81356109d3816117ce565b600080600060608486031215611a4057600080fd5b8335611a4b816117ce565b92506020840135611a5b816117ce565b929592945050506040919091013590565b6020808252825182820181905260009190848201906040850190845b81811015611aa457835183529284019291840191600101611a88565b50909695505050505050565b60008083601f840112611ac257600080fd5b50813567ffffffffffffffff811115611ada57600080fd5b602083019150836020828501011115611af257600080fd5b9250929050565b600080600080600060808688031215611b1157600080fd5b853594506020860135611b23816117ce565b935060408601359250606086013567ffffffffffffffff811115611b4657600080fd5b611b5288828901611ab0565b969995985093965092949392505050565b60008060408385031215611b7657600080fd5b8235611b81816117ce565b915060208301358015158114611b9657600080fd5b809150509250929050565b60008060208385031215611bb457600080fd5b823567ffffffffffffffff811115611bcb57600080fd5b611bd785828601611ab0565b90969095509350505050565b600080600080600060808688031215611bfb57600080fd5b8535611c06816117ce565b94506020860135611b23816117ce565b602081528151602082015260018060a01b036020830151166040820152600060408301516060808401526114c16080840182611925565b60008060408385031215611c6057600080fd5b8235611c6b816117ce565b91506020830135611b96816117ce565b600181811c90821680611c8f57607f821691505b602082108103611caf57634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052603260045260246000fd5b80516020808301519190811015611caf5760001960209190910360031b1b16919050565b60008351611d01818460208801611901565b9190910191825250602001919050565b634e487b7160e01b600052601160045260246000fd5b600060018201611d3957611d39611d11565b5060010190565b604081526000611d536040830185611925565b90508260208301529392505050565b600060208284031215611d7457600080fd5b5051919050565b600060208284031215611d8d57600080fd5b81516109d381611754565b8082018082111561060357610603611d11565b601f821115610d9b57600081815260208120601f850160051c81016020861015611dd25750805b601f850160051c820191505b81811015611df157828155600101611dde565b505050505050565b815167ffffffffffffffff811115611e1357611e13611787565b611e2781611e218454611c7b565b84611dab565b602080601f831160018114611e5c5760008415611e445750858301515b600019600386901b1c1916600185901b178555611df1565b600085815260208120601f198616915b82811015611e8b57888601518255948401946001909101908401611e6c565b5085821015611ea95787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b6001600160e01b0319831681528151600090611edc816004850160208701611901565b919091016004019392505050565b60008251611efc818460208701611901565b9190910192915050565b600082611f2357634e487b7160e01b600052601260045260246000fd5b500690565b60008154611f3581611c7b565b808552602060018381168015611f525760018114611f6c57611f9a565b60ff1985168884015283151560051b880183019550611f9a565b866000528260002060005b85811015611f925781548a8201860152908301908401611f77565b890184019650505b505050505092915050565b81835281816020850137506000828201602090810191909152601f909101601f19169091010190565b604081526000611fe16040830186611f28565b8281036020840152611ff4818587611fa5565b9695505050505050565b67ffffffffffffffff83111561201657612016611787565b61202a836120248354611c7b565b83611dab565b6000601f84116001811461205e57600085156120465750838201355b600019600387901b1c1916600186901b1783556113a7565b600083815260209020601f19861690835b8281101561208f578685013582556020948501946001909201910161206f565b50868210156120ac5760001960f88860031b161c19848701351681555b505060018560011b0183555050505050565b6001600160a01b03868116825285166020820152604081018490526080606082018190526000906120f29083018486611fa5565b979650505050505050565b8381526060602082015260006121166060830185611925565b8281036040840152611ff48185611f28565b60006020828403121561213a57600080fd5b815167ffffffffffffffff81111561215157600080fd5b8201601f8101841361216257600080fd5b805161217061182a826117e3565b81815285602083850101111561218557600080fd5b611a0582602083016020860161190156fea2646970667358221220f213b9045b40918ed2b5d304162ec2dfc3bc6b581b97362b423df61fd1436e5c64736f6c63430008150033", "sourceMap": "473:5385:31:-:0;;;5099:42;;;;;;;;;;2154:111:25;;;;;;;;;;;;;-1:-1:-1;;;2154:111:25;;;;;;;;;;;;;;;;-1:-1:-1;;;2154:111:25;;;936:32:20;955:12;:10;;;:12;;:::i;:::-;936:18;:32::i;:::-;2220:4:25;:12;2227:5;2220:4;:12;:::i;:::-;-1:-1:-1;2242:6:25;:16;2251:7;2242:6;:16;:::i;:::-;;2154:111;;473:5385:31;;640:96:21;719:10;;640:96::o;2433:187:20:-;2506:16;2525:6;;-1:-1:-1;;;;;2541:17:20;;;-1:-1:-1;;;;;;2541:17:20;;;;;;2573:40;;2525:6;;;;;;;2573:40;;2506:16;2573:40;2496:124;2433:187;:::o;14:127:36:-;75:10;70:3;66:20;63:1;56:31;106:4;103:1;96:15;130:4;127:1;120:15;146:380;225:1;221:12;;;;268;;;289:61;;343:4;335:6;331:17;321:27;;289:61;396:2;388:6;385:14;365:18;362:38;359:161;;442:10;437:3;433:20;430:1;423:31;477:4;474:1;467:15;505:4;502:1;495:15;359:161;;146:380;;;:::o;657:545::-;759:2;754:3;751:11;748:448;;;795:1;820:5;816:2;809:17;865:4;861:2;851:19;935:2;923:10;919:19;916:1;912:27;906:4;902:38;971:4;959:10;956:20;953:47;;;-1:-1:-1;994:4:36;953:47;1049:2;1044:3;1040:12;1037:1;1033:20;1027:4;1023:31;1013:41;;1104:82;1122:2;1115:5;1112:13;1104:82;;;1167:17;;;1148:1;1137:13;1104:82;;;1108:3;;;748:448;657:545;;;:::o;1378:1352::-;1498:10;;-1:-1:-1;;;;;1520:30:36;;1517:56;;;1553:18;;:::i;:::-;1582:97;1672:6;1632:38;1664:4;1658:11;1632:38;:::i;:::-;1626:4;1582:97;:::i;:::-;1734:4;;1798:2;1787:14;;1815:1;1810:663;;;;2517:1;2534:6;2531:89;;;-1:-1:-1;2586:19:36;;;2580:26;2531:89;-1:-1:-1;;1335:1:36;1331:11;;;1327:24;1323:29;1313:40;1359:1;1355:11;;;1310:57;2633:81;;1780:944;;1810:663;604:1;597:14;;;641:4;628:18;;-1:-1:-1;;1846:20:36;;;1964:236;1978:7;1975:1;1972:14;1964:236;;;2067:19;;;2061:26;2046:42;;2159:27;;;;2127:1;2115:14;;;;1994:19;;1964:236;;;1968:3;2228:6;2219:7;2216:19;2213:201;;;2289:19;;;2283:26;-1:-1:-1;;2372:1:36;2368:14;;;2384:3;2364:24;2360:37;2356:42;2341:58;2326:74;;2213:201;-1:-1:-1;;;;;2460:1:36;2444:14;;;2440:22;2427:36;;-1:-1:-1;1378:1352:36:o;:::-;473:5385:31;;;;;;", "linkReferences": { "lib/eth-projects-monorepo/packages/eth-projects-contracts/contracts/lib/utils/Bytes.sol": { @@ -935,7 +935,7 @@ } }, "deployedBytecode": { - "object": "0x608060405234801561001057600080fd5b50600436106102275760003560e01c8063715018a611610130578063b85d8b85116100b8578063cf0983981161007c578063cf09839814610512578063cfbe95d814610535578063df4ca20614610556578063e985e9c514610576578063f2fde38b146105a457600080fd5b8063b85d8b85146104a4578063b88d4fde146104ce578063b8c368ec146104e1578063c47f0027146104ec578063c87b56dd146104ff57600080fd5b806395d89b41116100ff57806395d89b4114610439578063a22cb46514610441578063b46ebb1214610454578063b6d658e114610467578063b84c82461461049157600080fd5b8063715018a6146103fa578063768d5029146104025780638ada6b0f146104155780638da5cb5b1461042857600080fd5b80631b06443c116101b35780634f6ccce7116101825780634f6ccce71461038157806356d3163d146103a15780636352211e146103b45780636a0abc74146103c757806370a08231146103e757600080fd5b80631b06443c14610335578063206848f61461034857806323b872dd1461035b57806342842e0e1461036e57600080fd5b8063081812fc116101fa578063081812fc146102a1578063095ea7b3146102e2578063172b9eed146102f757806318160ddd1461030a5780631941fd141461031357600080fd5b806301ffc9a71461022c57806302f3c4c91461025457806306fdde03146102745780630715a24a1461027c575b600080fd5b61023f61023a36600461176a565b6105b7565b60405190151581526020015b60405180910390f35b610267610262366004611861565b610609565b60405161024b9190611951565b610267610638565b6102936fffffffffffffffffffffffffffffffff81565b60405190815260200161024b565b6102ca6102af366004611964565b6005602052600090815260409020546001600160a01b031681565b6040516001600160a01b03909116815260200161024b565b6102f56102f036600461197d565b6106c6565b005b6102676103053660046119a9565b6107ad565b61029360075481565b610326610321366004611964565b610875565b60405161024b939291906119de565b6102ca610343366004611a0e565b61092a565b610326610356366004611964565b6109e3565b6102f5610369366004611a2b565b610ae1565b6102f561037c366004611a2b565b610ca8565b61029361038f366004611964565b60086020526000908152604090205481565b6102f56103af366004611a0e565b610da0565b6102ca6103c2366004611964565b610dca565b6103da6103d53660046119a9565b610e1c565b60405161024b9190611a6c565b6102936103f5366004611a0e565b610e60565b6102f5610ec3565b6102f5610410366004611af9565b610ed7565b6009546102ca906001600160a01b031681565b6000546001600160a01b03166102ca565b610267611035565b6102f561044f366004611b63565b611042565b610267610462366004611964565b6110ae565b61047a610475366004611964565b611258565b60408051921515835260208301919091520161024b565b6102f561049f366004611ba1565b611275565b6104b56104b2366004611964565b90565b6040516001600160e01b0319909116815260200161024b565b6102f56104dc366004611be3565b6112c6565b6102ca600160801b81565b6102f56104fa366004611ba1565b6113ae565b61026761050d366004611964565b6113ff565b61023f610520366004611a0e565b600160801b6001600160a01b03919091161090565b61023f610543366004611861565b516001600160a01b0316600160801b1490565b610569610564366004611964565b6114c9565b60405161024b9190611c16565b61023f610584366004611c4d565b600660209081526000928352604080842090915290825290205460ff1681565b6102f56105b2366004611a0e565b611526565b60006301ffc9a760e01b6001600160e01b0319831614806105e857506380ac58cd60e01b6001600160e01b03198316145b806106035750635b5e139f60e01b6001600160e01b03198316145b92915050565b6060816020015160405160200161062291815260200190565b6040516020818303038152906040529050919050565b6001805461064590611c7b565b80601f016020809104026020016040519081016040528092919081815260200182805461067190611c7b565b80156106be5780601f10610693576101008083540402835291602001916106be565b820191906000526020600020905b8154815290600101906020018083116106a157829003601f168201915b505050505081565b6000818152600360205260409020546001600160a01b03163381148061070f57506001600160a01b038116600090815260066020908152604080832033845290915290205460ff165b6107515760405162461bcd60e51b815260206004820152600e60248201526d1393d517d055551213d49256915160921b60448201526064015b60405180910390fd5b60008281526005602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b606060006107ba83610e1c565b9050606060005b825181101561086d576000806107ef8584815181106107e2576107e2611cb5565b6020026020010151611258565b9150915081156108335783610803826110ae565b61080c90611ccb565b60405160200161081d929190611cef565b6040516020818303038152906040529350610858565b6040516108469085908390602001611cef565b60405160208183030381529060405293505b5050808061086590611d27565b9150506107c1565b509392505050565b600a602052600090815260409020805460018201546002830180546001600160a01b039093169391926108a790611c7b565b80601f01602080910402602001604051908101604052809291908181526020018280546108d390611c7b565b80156109205780601f106108f557610100808354040283529160200191610920565b820191906000526020600020905b81548152906001019060200180831161090357829003601f168201915b5050505050905083565b6000600160801b6001600160a01b03831610156109da576000610955836001600160a01b03166110ae565b604051632d737e4960e21b815290915073__$a792e50881dbcbffce7826062cdb0978aa$__9063b5cdf92490610992908490600090600401611d40565b602060405180830381865af41580156109af573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906109d39190611d62565b9392505050565b5090565b919050565b60008181526003602052604081205481906060906001600160a01b0316610a1057600160801b9250610a2b565b6000848152600a60205260409020546001600160a01b031692505b6000848152600a60205260409020600181015460029091018054859291908190610a5490611c7b565b80601f0160208091040260200160405190810160405280929190818152602001828054610a8090611c7b565b8015610acd5780601f10610aa257610100808354040283529160200191610acd565b820191906000526020600020905b815481529060010190602001808311610ab057829003601f168201915b505050505090509250925092509193909250565b6000818152600360205260409020546001600160a01b03848116911614610b375760405162461bcd60e51b815260206004820152600a60248201526957524f4e475f46524f4d60b01b6044820152606401610748565b6001600160a01b038216610b815760405162461bcd60e51b81526020600482015260116024820152701253959053125117d49150d25412515395607a1b6044820152606401610748565b336001600160a01b0384161480610bbb57506001600160a01b038316600090815260066020908152604080832033845290915290205460ff165b80610bdc57506000818152600560205260409020546001600160a01b031633145b610c195760405162461bcd60e51b815260206004820152600e60248201526d1393d517d055551213d49256915160921b6044820152606401610748565b6001600160a01b0380841660008181526004602090815260408083208054600019019055938616808352848320805460010190558583526003825284832080546001600160a01b03199081168317909155600590925284832080549092169091559251849392917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b610cb3838383610ae1565b6001600160a01b0382163b1580610d5c5750604051630a85bd0160e11b8082523360048301526001600160a01b03858116602484015260448301849052608060648401526000608484015290919084169063150b7a029060a4016020604051808303816000875af1158015610d2c573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610d509190611d7b565b6001600160e01b031916145b610d9b5760405162461bcd60e51b815260206004820152601060248201526f155394d0519157d49150d2541251539560821b6044820152606401610748565b505050565b610da861159f565b600980546001600160a01b0319166001600160a01b0392909216919091179055565b6000818152600360205260409020546001600160a01b0316806109de5760405162461bcd60e51b815260206004820152600a6024820152691393d517d3525395115160b21b6044820152606401610748565b60608082516040519150602081048252602082016020850160005b83811015610e4f578181015183820152602001610e37565b505050810160200160405292915050565b60006001600160a01b038216610ea75760405162461bcd60e51b815260206004820152600c60248201526b5a45524f5f4144445245535360a01b6044820152606401610748565b506001600160a01b031660009081526004602052604090205490565b610ecb61159f565b610ed560006115f9565b565b6000858152600360205260409020546001600160a01b0316610f2f57610efd3286611649565b60078054600090815260086020526040812087905581546001929190610f24908490611d98565b90915550610f889050565b6000858152600360205260409020546001600160a01b03163214610f8857600085815260036020526040908190205490516324f3f02560e21b81526001600160a01b039091166004820152326024820152604401610748565b6040518060600160405280856001600160a01b0316815260200184815260200183838080601f0160208091040260200160405190810160405280939291908181526020018383808284376000920182905250939094525050878152600a6020908152604091829020845181546001600160a01b0319166001600160a01b0390911617815590840151600182015590830151909150600282019061102b9082611df9565b5050505050505050565b6002805461064590611c7b565b3360008181526006602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b6000818152600a6020908152604080832081516060818101845282546001600160a01b0316825260018301549482019490945260028201805494959491938401916110f890611c7b565b80601f016020809104026020016040519081016040528092919081815260200182805461112490611c7b565b80156111715780601f1061114657610100808354040283529160200191611171565b820191906000526020600020905b81548152906001019060200180831161115457829003601f168201915b505050505081525050905061119381516001600160a01b0316600160801b1490565b156111a1576109d381610609565b60006111b0826000015161092a565b905060006111bf836020015190565b905060006111d084604001516107ad565b90506000836001600160a01b031683836040516020016111f1929190611eb9565b60408051601f198184030181529082905261120b91611eea565b600060405180830381855afa9150503d8060008114611246576040519150601f19603f3d011682016040523d82523d6000602084013e61124b565b606091505b5098975050505050505050565b600080611266600284611f06565b60019081149493901c92915050565b61127d61159f565b7f8dca0271872d00b3de3abafca544c52fcd7d512dd852c9894fa2c118ac759a93600283836040516112b193929190611fce565b60405180910390a16002610d9b828483611ffe565b6112d1858585610ae1565b6001600160a01b0384163b15806113685750604051630a85bd0160e11b808252906001600160a01b0386169063150b7a02906113199033908a908990899089906004016120be565b6020604051808303816000875af1158015611338573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061135c9190611d7b565b6001600160e01b031916145b6113a75760405162461bcd60e51b815260206004820152601060248201526f155394d0519157d49150d2541251539560821b6044820152606401610748565b5050505050565b6113b661159f565b7fb65b7b5ea384affd30f77f842e057d29dd1b13f133adf69a724a8105b164ab75600183836040516113ea93929190611fce565b60405180910390a16001610d9b828483611ffe565b6000818152600360205260409020546060906001600160a01b03168061143b57604051630243d1a960e21b815260048101849052602401610748565b6000611446846110ae565b6009546040516328de0f2f60e01b81529192506001600160a01b0316906328de0f2f9061147c90879085906001906004016120fd565b600060405180830381865afa158015611499573d6000803e3d6000fd5b505050506040513d6000823e601f3d908101601f191682016040526114c19190810190612128565b949350505050565b604080516060808201835260008083526020830181905292820152906114ee836110ae565b6040805160608101825285815260009586526003602090815295829020546001600160a01b0316958101959095528401525090919050565b61152e61159f565b6001600160a01b0381166115935760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610748565b61159c816115f9565b50565b6000546001600160a01b03163314610ed55760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610748565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b6001600160a01b0382166116935760405162461bcd60e51b81526020600482015260116024820152701253959053125117d49150d25412515395607a1b6044820152606401610748565b6000818152600360205260409020546001600160a01b0316156116e95760405162461bcd60e51b815260206004820152600e60248201526d1053149150511657d3525395115160921b6044820152606401610748565b6001600160a01b038216600081815260046020908152604080832080546001019055848352600390915280822080546001600160a01b0319168417905551839291907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b6001600160e01b03198116811461159c57600080fd5b60006020828403121561177c57600080fd5b81356109d381611754565b634e487b7160e01b600052604160045260246000fd5b604051601f8201601f1916810167ffffffffffffffff811182821017156117c6576117c6611787565b604052919050565b6001600160a01b038116811461159c57600080fd5b600067ffffffffffffffff8211156117fd576117fd611787565b50601f01601f191660200190565b600082601f83011261181c57600080fd5b813561182f61182a826117e3565b61179d565b81815284602083860101111561184457600080fd5b816020850160208301376000918101602001919091529392505050565b60006020828403121561187357600080fd5b813567ffffffffffffffff8082111561188b57600080fd5b908301906060828603121561189f57600080fd5b6040516060810181811083821117156118ba576118ba611787565b60405282356118c8816117ce565b8152602083810135908201526040830135828111156118e657600080fd5b6118f28782860161180b565b60408301525095945050505050565b60005b8381101561191c578181015183820152602001611904565b50506000910152565b6000815180845261193d816020860160208601611901565b601f01601f19169290920160200192915050565b6020815260006109d36020830184611925565b60006020828403121561197657600080fd5b5035919050565b6000806040838503121561199057600080fd5b823561199b816117ce565b946020939093013593505050565b6000602082840312156119bb57600080fd5b813567ffffffffffffffff8111156119d257600080fd5b6114c18482850161180b565b60018060a01b0384168152826020820152606060408201526000611a056060830184611925565b95945050505050565b600060208284031215611a2057600080fd5b81356109d3816117ce565b600080600060608486031215611a4057600080fd5b8335611a4b816117ce565b92506020840135611a5b816117ce565b929592945050506040919091013590565b6020808252825182820181905260009190848201906040850190845b81811015611aa457835183529284019291840191600101611a88565b50909695505050505050565b60008083601f840112611ac257600080fd5b50813567ffffffffffffffff811115611ada57600080fd5b602083019150836020828501011115611af257600080fd5b9250929050565b600080600080600060808688031215611b1157600080fd5b853594506020860135611b23816117ce565b935060408601359250606086013567ffffffffffffffff811115611b4657600080fd5b611b5288828901611ab0565b969995985093965092949392505050565b60008060408385031215611b7657600080fd5b8235611b81816117ce565b915060208301358015158114611b9657600080fd5b809150509250929050565b60008060208385031215611bb457600080fd5b823567ffffffffffffffff811115611bcb57600080fd5b611bd785828601611ab0565b90969095509350505050565b600080600080600060808688031215611bfb57600080fd5b8535611c06816117ce565b94506020860135611b23816117ce565b602081528151602082015260018060a01b036020830151166040820152600060408301516060808401526114c16080840182611925565b60008060408385031215611c6057600080fd5b8235611c6b816117ce565b91506020830135611b96816117ce565b600181811c90821680611c8f57607f821691505b602082108103611caf57634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052603260045260246000fd5b80516020808301519190811015611caf5760001960209190910360031b1b16919050565b60008351611d01818460208801611901565b9190910191825250602001919050565b634e487b7160e01b600052601160045260246000fd5b600060018201611d3957611d39611d11565b5060010190565b604081526000611d536040830185611925565b90508260208301529392505050565b600060208284031215611d7457600080fd5b5051919050565b600060208284031215611d8d57600080fd5b81516109d381611754565b8082018082111561060357610603611d11565b601f821115610d9b57600081815260208120601f850160051c81016020861015611dd25750805b601f850160051c820191505b81811015611df157828155600101611dde565b505050505050565b815167ffffffffffffffff811115611e1357611e13611787565b611e2781611e218454611c7b565b84611dab565b602080601f831160018114611e5c5760008415611e445750858301515b600019600386901b1c1916600185901b178555611df1565b600085815260208120601f198616915b82811015611e8b57888601518255948401946001909101908401611e6c565b5085821015611ea95787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b6001600160e01b0319831681528151600090611edc816004850160208701611901565b919091016004019392505050565b60008251611efc818460208701611901565b9190910192915050565b600082611f2357634e487b7160e01b600052601260045260246000fd5b500690565b60008154611f3581611c7b565b808552602060018381168015611f525760018114611f6c57611f9a565b60ff1985168884015283151560051b880183019550611f9a565b866000528260002060005b85811015611f925781548a8201860152908301908401611f77565b890184019650505b505050505092915050565b81835281816020850137506000828201602090810191909152601f909101601f19169091010190565b604081526000611fe16040830186611f28565b8281036020840152611ff4818587611fa5565b9695505050505050565b67ffffffffffffffff83111561201657612016611787565b61202a836120248354611c7b565b83611dab565b6000601f84116001811461205e57600085156120465750838201355b600019600387901b1c1916600186901b1783556113a7565b600083815260209020601f19861690835b8281101561208f578685013582556020948501946001909201910161206f565b50868210156120ac5760001960f88860031b161c19848701351681555b505060018560011b0183555050505050565b6001600160a01b03868116825285166020820152604081018490526080606082018190526000906120f29083018486611fa5565b979650505050505050565b8381526060602082015260006121166060830185611925565b8281036040840152611ff48185611f28565b60006020828403121561213a57600080fd5b815167ffffffffffffffff81111561215157600080fd5b8201601f8101841361216257600080fd5b805161217061182a826117e3565b81815285602083850101111561218557600080fd5b611a0582602083016020860161190156fea26469706673582212203fc548aa4f22e6f4c01757ba3f2e0383630418b3d17601758718ab19a4d9918d64736f6c63430008110033", + "object": "0x608060405234801561001057600080fd5b50600436106102275760003560e01c8063715018a611610130578063b85d8b85116100b8578063cf0983981161007c578063cf09839814610512578063cfbe95d814610535578063df4ca20614610556578063e985e9c514610576578063f2fde38b146105a457600080fd5b8063b85d8b85146104a4578063b88d4fde146104ce578063b8c368ec146104e1578063c47f0027146104ec578063c87b56dd146104ff57600080fd5b806395d89b41116100ff57806395d89b4114610439578063a22cb46514610441578063b46ebb1214610454578063b6d658e114610467578063b84c82461461049157600080fd5b8063715018a6146103fa578063768d5029146104025780638ada6b0f146104155780638da5cb5b1461042857600080fd5b80631b06443c116101b35780634f6ccce7116101825780634f6ccce71461038157806356d3163d146103a15780636352211e146103b45780636a0abc74146103c757806370a08231146103e757600080fd5b80631b06443c14610335578063206848f61461034857806323b872dd1461035b57806342842e0e1461036e57600080fd5b8063081812fc116101fa578063081812fc146102a1578063095ea7b3146102e2578063172b9eed146102f757806318160ddd1461030a5780631941fd141461031357600080fd5b806301ffc9a71461022c57806302f3c4c91461025457806306fdde03146102745780630715a24a1461027c575b600080fd5b61023f61023a36600461176a565b6105b7565b60405190151581526020015b60405180910390f35b610267610262366004611861565b610609565b60405161024b9190611951565b610267610638565b6102936fffffffffffffffffffffffffffffffff81565b60405190815260200161024b565b6102ca6102af366004611964565b6005602052600090815260409020546001600160a01b031681565b6040516001600160a01b03909116815260200161024b565b6102f56102f036600461197d565b6106c6565b005b6102676103053660046119a9565b6107ad565b61029360075481565b610326610321366004611964565b610875565b60405161024b939291906119de565b6102ca610343366004611a0e565b61092a565b610326610356366004611964565b6109e3565b6102f5610369366004611a2b565b610ae1565b6102f561037c366004611a2b565b610ca8565b61029361038f366004611964565b60086020526000908152604090205481565b6102f56103af366004611a0e565b610da0565b6102ca6103c2366004611964565b610dca565b6103da6103d53660046119a9565b610e1c565b60405161024b9190611a6c565b6102936103f5366004611a0e565b610e60565b6102f5610ec3565b6102f5610410366004611af9565b610ed7565b6009546102ca906001600160a01b031681565b6000546001600160a01b03166102ca565b610267611035565b6102f561044f366004611b63565b611042565b610267610462366004611964565b6110ae565b61047a610475366004611964565b611258565b60408051921515835260208301919091520161024b565b6102f561049f366004611ba1565b611275565b6104b56104b2366004611964565b90565b6040516001600160e01b0319909116815260200161024b565b6102f56104dc366004611be3565b6112c6565b6102ca600160801b81565b6102f56104fa366004611ba1565b6113ae565b61026761050d366004611964565b6113ff565b61023f610520366004611a0e565b600160801b6001600160a01b03919091161090565b61023f610543366004611861565b516001600160a01b0316600160801b1490565b610569610564366004611964565b6114c9565b60405161024b9190611c16565b61023f610584366004611c4d565b600660209081526000928352604080842090915290825290205460ff1681565b6102f56105b2366004611a0e565b611526565b60006301ffc9a760e01b6001600160e01b0319831614806105e857506380ac58cd60e01b6001600160e01b03198316145b806106035750635b5e139f60e01b6001600160e01b03198316145b92915050565b6060816020015160405160200161062291815260200190565b6040516020818303038152906040529050919050565b6001805461064590611c7b565b80601f016020809104026020016040519081016040528092919081815260200182805461067190611c7b565b80156106be5780601f10610693576101008083540402835291602001916106be565b820191906000526020600020905b8154815290600101906020018083116106a157829003601f168201915b505050505081565b6000818152600360205260409020546001600160a01b03163381148061070f57506001600160a01b038116600090815260066020908152604080832033845290915290205460ff165b6107515760405162461bcd60e51b815260206004820152600e60248201526d1393d517d055551213d49256915160921b60448201526064015b60405180910390fd5b60008281526005602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b606060006107ba83610e1c565b9050606060005b825181101561086d576000806107ef8584815181106107e2576107e2611cb5565b6020026020010151611258565b9150915081156108335783610803826110ae565b61080c90611ccb565b60405160200161081d929190611cef565b6040516020818303038152906040529350610858565b6040516108469085908390602001611cef565b60405160208183030381529060405293505b5050808061086590611d27565b9150506107c1565b509392505050565b600a602052600090815260409020805460018201546002830180546001600160a01b039093169391926108a790611c7b565b80601f01602080910402602001604051908101604052809291908181526020018280546108d390611c7b565b80156109205780601f106108f557610100808354040283529160200191610920565b820191906000526020600020905b81548152906001019060200180831161090357829003601f168201915b5050505050905083565b6000600160801b6001600160a01b03831610156109da576000610955836001600160a01b03166110ae565b604051632d737e4960e21b815290915073__$a792e50881dbcbffce7826062cdb0978aa$__9063b5cdf92490610992908490600090600401611d40565b602060405180830381865af41580156109af573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906109d39190611d62565b9392505050565b5090565b919050565b60008181526003602052604081205481906060906001600160a01b0316610a1057600160801b9250610a2b565b6000848152600a60205260409020546001600160a01b031692505b6000848152600a60205260409020600181015460029091018054859291908190610a5490611c7b565b80601f0160208091040260200160405190810160405280929190818152602001828054610a8090611c7b565b8015610acd5780601f10610aa257610100808354040283529160200191610acd565b820191906000526020600020905b815481529060010190602001808311610ab057829003601f168201915b505050505090509250925092509193909250565b6000818152600360205260409020546001600160a01b03848116911614610b375760405162461bcd60e51b815260206004820152600a60248201526957524f4e475f46524f4d60b01b6044820152606401610748565b6001600160a01b038216610b815760405162461bcd60e51b81526020600482015260116024820152701253959053125117d49150d25412515395607a1b6044820152606401610748565b336001600160a01b0384161480610bbb57506001600160a01b038316600090815260066020908152604080832033845290915290205460ff165b80610bdc57506000818152600560205260409020546001600160a01b031633145b610c195760405162461bcd60e51b815260206004820152600e60248201526d1393d517d055551213d49256915160921b6044820152606401610748565b6001600160a01b0380841660008181526004602090815260408083208054600019019055938616808352848320805460010190558583526003825284832080546001600160a01b03199081168317909155600590925284832080549092169091559251849392917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b610cb3838383610ae1565b6001600160a01b0382163b1580610d5c5750604051630a85bd0160e11b8082523360048301526001600160a01b03858116602484015260448301849052608060648401526000608484015290919084169063150b7a029060a4016020604051808303816000875af1158015610d2c573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610d509190611d7b565b6001600160e01b031916145b610d9b5760405162461bcd60e51b815260206004820152601060248201526f155394d0519157d49150d2541251539560821b6044820152606401610748565b505050565b610da861159f565b600980546001600160a01b0319166001600160a01b0392909216919091179055565b6000818152600360205260409020546001600160a01b0316806109de5760405162461bcd60e51b815260206004820152600a6024820152691393d517d3525395115160b21b6044820152606401610748565b60608082516040519150602081048252602082016020850160005b83811015610e4f578181015183820152602001610e37565b505050810160200160405292915050565b60006001600160a01b038216610ea75760405162461bcd60e51b815260206004820152600c60248201526b5a45524f5f4144445245535360a01b6044820152606401610748565b506001600160a01b031660009081526004602052604090205490565b610ecb61159f565b610ed560006115f9565b565b6000858152600360205260409020546001600160a01b0316610f2f57610efd3286611649565b60078054600090815260086020526040812087905581546001929190610f24908490611d98565b90915550610f889050565b6000858152600360205260409020546001600160a01b03163214610f8857600085815260036020526040908190205490516324f3f02560e21b81526001600160a01b039091166004820152326024820152604401610748565b6040518060600160405280856001600160a01b0316815260200184815260200183838080601f0160208091040260200160405190810160405280939291908181526020018383808284376000920182905250939094525050878152600a6020908152604091829020845181546001600160a01b0319166001600160a01b0390911617815590840151600182015590830151909150600282019061102b9082611df9565b5050505050505050565b6002805461064590611c7b565b3360008181526006602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b6000818152600a6020908152604080832081516060818101845282546001600160a01b0316825260018301549482019490945260028201805494959491938401916110f890611c7b565b80601f016020809104026020016040519081016040528092919081815260200182805461112490611c7b565b80156111715780601f1061114657610100808354040283529160200191611171565b820191906000526020600020905b81548152906001019060200180831161115457829003601f168201915b505050505081525050905061119381516001600160a01b0316600160801b1490565b156111a1576109d381610609565b60006111b0826000015161092a565b905060006111bf836020015190565b905060006111d084604001516107ad565b90506000836001600160a01b031683836040516020016111f1929190611eb9565b60408051601f198184030181529082905261120b91611eea565b600060405180830381855afa9150503d8060008114611246576040519150601f19603f3d011682016040523d82523d6000602084013e61124b565b606091505b5098975050505050505050565b600080611266600284611f06565b60019081149493901c92915050565b61127d61159f565b7f8dca0271872d00b3de3abafca544c52fcd7d512dd852c9894fa2c118ac759a93600283836040516112b193929190611fce565b60405180910390a16002610d9b828483611ffe565b6112d1858585610ae1565b6001600160a01b0384163b15806113685750604051630a85bd0160e11b808252906001600160a01b0386169063150b7a02906113199033908a908990899089906004016120be565b6020604051808303816000875af1158015611338573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061135c9190611d7b565b6001600160e01b031916145b6113a75760405162461bcd60e51b815260206004820152601060248201526f155394d0519157d49150d2541251539560821b6044820152606401610748565b5050505050565b6113b661159f565b7fb65b7b5ea384affd30f77f842e057d29dd1b13f133adf69a724a8105b164ab75600183836040516113ea93929190611fce565b60405180910390a16001610d9b828483611ffe565b6000818152600360205260409020546060906001600160a01b03168061143b57604051630243d1a960e21b815260048101849052602401610748565b6000611446846110ae565b6009546040516328de0f2f60e01b81529192506001600160a01b0316906328de0f2f9061147c90879085906001906004016120fd565b600060405180830381865afa158015611499573d6000803e3d6000fd5b505050506040513d6000823e601f3d908101601f191682016040526114c19190810190612128565b949350505050565b604080516060808201835260008083526020830181905292820152906114ee836110ae565b6040805160608101825285815260009586526003602090815295829020546001600160a01b0316958101959095528401525090919050565b61152e61159f565b6001600160a01b0381166115935760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610748565b61159c816115f9565b50565b6000546001600160a01b03163314610ed55760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610748565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b6001600160a01b0382166116935760405162461bcd60e51b81526020600482015260116024820152701253959053125117d49150d25412515395607a1b6044820152606401610748565b6000818152600360205260409020546001600160a01b0316156116e95760405162461bcd60e51b815260206004820152600e60248201526d1053149150511657d3525395115160921b6044820152606401610748565b6001600160a01b038216600081815260046020908152604080832080546001019055848352600390915280822080546001600160a01b0319168417905551839291907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b6001600160e01b03198116811461159c57600080fd5b60006020828403121561177c57600080fd5b81356109d381611754565b634e487b7160e01b600052604160045260246000fd5b604051601f8201601f1916810167ffffffffffffffff811182821017156117c6576117c6611787565b604052919050565b6001600160a01b038116811461159c57600080fd5b600067ffffffffffffffff8211156117fd576117fd611787565b50601f01601f191660200190565b600082601f83011261181c57600080fd5b813561182f61182a826117e3565b61179d565b81815284602083860101111561184457600080fd5b816020850160208301376000918101602001919091529392505050565b60006020828403121561187357600080fd5b813567ffffffffffffffff8082111561188b57600080fd5b908301906060828603121561189f57600080fd5b6040516060810181811083821117156118ba576118ba611787565b60405282356118c8816117ce565b8152602083810135908201526040830135828111156118e657600080fd5b6118f28782860161180b565b60408301525095945050505050565b60005b8381101561191c578181015183820152602001611904565b50506000910152565b6000815180845261193d816020860160208601611901565b601f01601f19169290920160200192915050565b6020815260006109d36020830184611925565b60006020828403121561197657600080fd5b5035919050565b6000806040838503121561199057600080fd5b823561199b816117ce565b946020939093013593505050565b6000602082840312156119bb57600080fd5b813567ffffffffffffffff8111156119d257600080fd5b6114c18482850161180b565b60018060a01b0384168152826020820152606060408201526000611a056060830184611925565b95945050505050565b600060208284031215611a2057600080fd5b81356109d3816117ce565b600080600060608486031215611a4057600080fd5b8335611a4b816117ce565b92506020840135611a5b816117ce565b929592945050506040919091013590565b6020808252825182820181905260009190848201906040850190845b81811015611aa457835183529284019291840191600101611a88565b50909695505050505050565b60008083601f840112611ac257600080fd5b50813567ffffffffffffffff811115611ada57600080fd5b602083019150836020828501011115611af257600080fd5b9250929050565b600080600080600060808688031215611b1157600080fd5b853594506020860135611b23816117ce565b935060408601359250606086013567ffffffffffffffff811115611b4657600080fd5b611b5288828901611ab0565b969995985093965092949392505050565b60008060408385031215611b7657600080fd5b8235611b81816117ce565b915060208301358015158114611b9657600080fd5b809150509250929050565b60008060208385031215611bb457600080fd5b823567ffffffffffffffff811115611bcb57600080fd5b611bd785828601611ab0565b90969095509350505050565b600080600080600060808688031215611bfb57600080fd5b8535611c06816117ce565b94506020860135611b23816117ce565b602081528151602082015260018060a01b036020830151166040820152600060408301516060808401526114c16080840182611925565b60008060408385031215611c6057600080fd5b8235611c6b816117ce565b91506020830135611b96816117ce565b600181811c90821680611c8f57607f821691505b602082108103611caf57634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052603260045260246000fd5b80516020808301519190811015611caf5760001960209190910360031b1b16919050565b60008351611d01818460208801611901565b9190910191825250602001919050565b634e487b7160e01b600052601160045260246000fd5b600060018201611d3957611d39611d11565b5060010190565b604081526000611d536040830185611925565b90508260208301529392505050565b600060208284031215611d7457600080fd5b5051919050565b600060208284031215611d8d57600080fd5b81516109d381611754565b8082018082111561060357610603611d11565b601f821115610d9b57600081815260208120601f850160051c81016020861015611dd25750805b601f850160051c820191505b81811015611df157828155600101611dde565b505050505050565b815167ffffffffffffffff811115611e1357611e13611787565b611e2781611e218454611c7b565b84611dab565b602080601f831160018114611e5c5760008415611e445750858301515b600019600386901b1c1916600185901b178555611df1565b600085815260208120601f198616915b82811015611e8b57888601518255948401946001909101908401611e6c565b5085821015611ea95787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b6001600160e01b0319831681528151600090611edc816004850160208701611901565b919091016004019392505050565b60008251611efc818460208701611901565b9190910192915050565b600082611f2357634e487b7160e01b600052601260045260246000fd5b500690565b60008154611f3581611c7b565b808552602060018381168015611f525760018114611f6c57611f9a565b60ff1985168884015283151560051b880183019550611f9a565b866000528260002060005b85811015611f925781548a8201860152908301908401611f77565b890184019650505b505050505092915050565b81835281816020850137506000828201602090810191909152601f909101601f19169091010190565b604081526000611fe16040830186611f28565b8281036020840152611ff4818587611fa5565b9695505050505050565b67ffffffffffffffff83111561201657612016611787565b61202a836120248354611c7b565b83611dab565b6000601f84116001811461205e57600085156120465750838201355b600019600387901b1c1916600186901b1783556113a7565b600083815260209020601f19861690835b8281101561208f578685013582556020948501946001909201910161206f565b50868210156120ac5760001960f88860031b161c19848701351681555b505060018560011b0183555050505050565b6001600160a01b03868116825285166020820152604081018490526080606082018190526000906120f29083018486611fa5565b979650505050505050565b8381526060602082015260006121166060830185611925565b8281036040840152611ff48185611f28565b60006020828403121561213a57600080fd5b815167ffffffffffffffff81111561215157600080fd5b8201601f8101841361216257600080fd5b805161217061182a826117e3565b81815285602083850101111561218557600080fd5b611a0582602083016020860161190156fea2646970667358221220f213b9045b40918ed2b5d304162ec2dfc3bc6b581b97362b423df61fd1436e5c64736f6c63430008150033", "sourceMap": "473:5385:31:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4714:335:25;;;;;;:::i;:::-;;:::i;:::-;;;565:14:36;;558:22;540:41;;528:2;513:18;4714:335:25;;;;;;;;3096:292:31;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;899:18:25:-;;;:::i;740:52:31:-;;780:12;740:52;;;;;3866:25:36;;;3854:2;3839:18;740:52:31;3720:177:36;1844:46:25;;;;;;:::i;:::-;;;;;;;;;;;;-1:-1:-1;;;;;1844:46:25;;;;;;-1:-1:-1;;;;;4251:32:36;;;4233:51;;4221:2;4206:18;1844:46:25;4087:203:36;2453:282:25;;;;;;:::i;:::-;;:::i;:::-;;3919:624:31;;;;;;:::i;:::-;;:::i;902:26::-;;;;;;1018:41;;;;;;:::i;:::-;;:::i;:::-;;;;;;;;;:::i;3394:401::-;;;;;;:::i;:::-;;:::i;1554:349::-;;;;;;:::i;:::-;;:::i;2950:741:25:-;;;;;;:::i;:::-;;:::i;3697:396::-;;;;;;:::i;:::-;;:::i;934:47:31:-;;;;;;:::i;:::-;;;;;;;;;;;;;;5433:94;;;;;;:::i;:::-;;:::i;1327:149:25:-;;;;;;:::i;:::-;;:::i;2520:570:31:-;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;1482:168:25:-;;;;;;:::i;:::-;;:::i;1831:101:20:-;;;:::i;1066:482:31:-;;;;;;:::i;:::-;;:::i;988:23::-;;;;;-1:-1:-1;;;;;988:23:31;;;1201:85:20;1247:7;1273:6;-1:-1:-1;;;;;1273:6:20;1201:85;;924:20:25;;;:::i;2741:203::-;;;;;;:::i;:::-;;:::i;4549:544:31:-;;;;;;:::i;:::-;;:::i;2228:125::-;;;;;;:::i;:::-;;:::i;:::-;;;;8332:14:36;;8325:22;8307:41;;8379:2;8364:18;;8357:34;;;;8280:18;2228:125:31;8139:258:36;5283:144:31;;;;;;:::i;:::-;;:::i;3801:112::-;;;;;;:::i;:::-;3897:8;3801:112;;;;-1:-1:-1;;;;;;9164:33:36;;;9146:52;;9134:2;9119:18;3801:112:31;9002:202:36;4099:427:25;;;;;;:::i;:::-;;:::i;798:52:31:-;;-1:-1:-1;;;798:52:31;;5147:130;;;;;;:::i;:::-;;:::i;5533:323::-;;;;;;:::i;:::-;;:::i;2359:155::-;;;;;;:::i;:::-;-1:-1:-1;;;;;;;;2463:44:31;;;;;;2359:155;2096:126;;;;;;:::i;:::-;2183:20;-1:-1:-1;;;;;2183:32:31;-1:-1:-1;;;2183:32:31;;2096:126;1909:181;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;1897:68:25:-;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;2081:198:20;;;;;;:::i;:::-;;:::i;4714:335:25:-;4790:4;-1:-1:-1;;;;;;;;;4825:25:25;;;;:100;;-1:-1:-1;;;;;;;;;;4900:25:25;;;4825:100;:175;;;-1:-1:-1;;;;;;;;;;4975:25:25;;;4825:175;4806:194;4714:335;-1:-1:-1;;4714:335:25:o;3096:292:31:-;3168:12;3370:4;:10;;;3357:24;;;;;;10992:19:36;;11036:2;11027:12;;10863:182;3357:24:31;;;;;;;;;;;;;3350:31;;3096:292;;;:::o;899:18:25:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;2453:282::-;2524:13;2540:12;;;:8;:12;;;;;;-1:-1:-1;;;;;2540:12:25;2571:10;:19;;;:58;;-1:-1:-1;;;;;;2594:23:25;;;;;;:16;:23;;;;;;;;2618:10;2594:35;;;;;;;;;;2571:58;2563:85;;;;-1:-1:-1;;;2563:85:25;;11637:2:36;2563:85:25;;;11619:21:36;11676:2;11656:18;;;11649:30;-1:-1:-1;;;11695:18:36;;;11688:44;11749:18;;2563:85:25;;;;;;;;;2659:15;;;;:11;:15;;;;;;:25;;-1:-1:-1;;;;;;2659:25:25;-1:-1:-1;;;;;2659:25:25;;;;;;;;;2700:28;;2659:15;;2700:28;;;;;;;2514:221;2453:282;;:::o;3919:624:31:-;3988:12;4012:32;4047:31;4069:8;4047:21;:31::i;:::-;4012:66;;4088:29;4132:9;4127:377;4151:15;:22;4147:1;:26;4127:377;;;4195:12;4209:11;4224:32;4237:15;4253:1;4237:18;;;;;;;;:::i;:::-;;;;;;;4224:12;:32::i;:::-;4194:62;;;;4274:7;4270:224;;;4333:16;4359;4371:3;4359:11;:16::i;:::-;4351:25;;;:::i;:::-;4320:57;;;;;;;;;:::i;:::-;;;;;;;;;;;;;4301:76;;4270:224;;;4435:44;;;;4448:16;;4474:3;;4435:44;;;:::i;:::-;;;;;;;;;;;;;4416:63;;4270:224;4180:324;;4175:3;;;;;:::i;:::-;;;;4127:377;;;-1:-1:-1;4520:16:31;3919:624;-1:-1:-1;;;3919:624:31:o;1018:41::-;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;1018:41:31;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;3394:401::-;3472:7;-1:-1:-1;;;;;;;;2463:44:31;;;3491:298;;;3553:42;3598:46;3626:15;-1:-1:-1;;;;;3610:33:31;3598:11;:46::i;:::-;3681:42;;-1:-1:-1;;;3681:42:31;;3553:91;;-1:-1:-1;3681:39:31;;;;:42;;3553:91;;3721:1;;3681:42;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;3658:67;3394:401;-1:-1:-1;;;3394:401:31:o;3491:298::-;-1:-1:-1;3763:15:31;3394:401::o;3491:298::-;3394:401;;;:::o;1554:349::-;1604:23;1677:12;;;:8;:12;;;;;;1604:23;;1644:17;;-1:-1:-1;;;;;1677:12:31;1673:157;;-1:-1:-1;;;1719:26:31;;1673:157;;;1794:9;;;;:5;:9;;;;;:25;-1:-1:-1;;;;;1794:25:31;;-1:-1:-1;1673:157:31;1864:9;;;;:5;:9;;;;;:15;;;;1881:14;;;;1839:57;;1847:15;;1864;1881:14;;;1839:57;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1554:349;;;;;:::o;2950:741:25:-;3081:12;;;;:8;:12;;;;;;-1:-1:-1;;;;;3073:20:25;;;3081:12;;3073:20;3065:43;;;;-1:-1:-1;;;3065:43:25;;13572:2:36;3065:43:25;;;13554:21:36;13611:2;13591:18;;;13584:30;-1:-1:-1;;;13630:18:36;;;13623:40;13680:18;;3065:43:25;13370:334:36;3065:43:25;-1:-1:-1;;;;;3127:16:25;;3119:46;;;;-1:-1:-1;;;3119:46:25;;13911:2:36;3119:46:25;;;13893:21:36;13950:2;13930:18;;;13923:30;-1:-1:-1;;;13969:18:36;;;13962:47;14026:18;;3119:46:25;13709:341:36;3119:46:25;3197:10;-1:-1:-1;;;;;3197:18:25;;;;:56;;-1:-1:-1;;;;;;3219:22:25;;;;;;:16;:22;;;;;;;;3242:10;3219:34;;;;;;;;;;3197:56;:89;;;-1:-1:-1;3271:15:25;;;;:11;:15;;;;;;-1:-1:-1;;;;;3271:15:25;3257:10;:29;3197:89;3176:150;;;;-1:-1:-1;;;3176:150:25;;11637:2:36;3176:150:25;;;11619:21:36;11676:2;11656:18;;;11649:30;-1:-1:-1;;;11695:18:36;;;11688:44;11749:18;;3176:150:25;11435:338:36;3176:150:25;-1:-1:-1;;;;;3526:16:25;;;;;;;:10;:16;;;;;;;;:18;;-1:-1:-1;;3526:18:25;;;3559:14;;;;;;;;;:16;;3526:18;3559:16;;;3596:12;;;:8;:12;;;;;:17;;-1:-1:-1;;;;;;3596:17:25;;;;;;;;3631:11;:15;;;;;;3624:22;;;;;;;;3662;;3605:2;;3559:14;3526:16;3662:22;;;2950:741;;;:::o;3697:396::-;3816:26;3829:4;3835:2;3839;3816:12;:26::i;:::-;-1:-1:-1;;;;;3874:14:25;;;:19;;:170;;-1:-1:-1;3913:66:25;;-1:-1:-1;;;3913:66:25;;;3954:10;3913:66;;;14360:34:36;-1:-1:-1;;;;;14430:15:36;;;14410:18;;;14403:43;14462:18;;;14455:34;;;14525:3;14505:18;;;14498:31;-1:-1:-1;14545:19:36;;;14538:30;3999:45:25;;3913:40;;;;3999:45;;14585:19:36;;3913:66:25;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;-1:-1:-1;;;;;;3913:131:25;;3874:170;3853:233;;;;-1:-1:-1;;;3853:233:25;;15071:2:36;3853:233:25;;;15053:21:36;15110:2;15090:18;;;15083:30;-1:-1:-1;;;15129:18:36;;;15122:46;15185:18;;3853:233:25;14869:340:36;3853:233:25;3697:396;;;:::o;5433:94:31:-;1094:13:20;:11;:13::i;:::-;5500:8:31::1;:20:::0;;-1:-1:-1;;;;;;5500:20:31::1;-1:-1:-1::0;;;;;5500:20:31;;;::::1;::::0;;;::::1;::::0;;5433:94::o;1327:149:25:-;1385:13;1427:12;;;:8;:12;;;;;;-1:-1:-1;;;;;1427:12:25;;1410:59;;;;-1:-1:-1;;;1410:59:25;;15416:2:36;1410:59:25;;;15398:21:36;15455:2;15435:18;;;15428:30;-1:-1:-1;;;15474:18:36;;;15467:40;15524:18;;1410:59:25;15214:334:36;2520:570:31;2595:16;2623:23;2696:8;2690:15;2734:4;2728:11;2718:21;;2776:4;2771:3;2767:14;2759:6;2752:30;2822:4;2814:6;2810:17;2871:4;2861:8;2857:19;2905:1;2890:105;2915:3;2912:1;2909:10;2890:105;;;2974:17;;;2968:24;2951:15;;;2944:49;2934:4;2927:12;2890:105;;;-1:-1:-1;;;3022:27:31;;3035:4;3022:27;3016:4;3009:41;3042:6;2520:570;-1:-1:-1;;2520:570:31:o;1482:168:25:-;1545:7;-1:-1:-1;;;;;1572:19:25;;1564:44;;;;-1:-1:-1;;;1564:44:25;;15755:2:36;1564:44:25;;;15737:21:36;15794:2;15774:18;;;15767:30;-1:-1:-1;;;15813:18:36;;;15806:42;15865:18;;1564:44:25;15553:336:36;1564:44:25;-1:-1:-1;;;;;;1626:17:25;;;;;:10;:17;;;;;;;1482:168::o;1831:101:20:-;1094:13;:11;:13::i;:::-;1895:30:::1;1922:1;1895:18;:30::i;:::-;1831:101::o:0;1066:482:31:-;1201:1;1177:12;;;:8;:12;;;;;;-1:-1:-1;;;;;1177:12:31;1173:299;;1219:20;1225:9;1236:2;1219:5;:20::i;:::-;1266:11;;;1253:25;;;;:12;:25;;;;;:30;;;1297:16;;1312:1;;1266:11;1253:25;1297:16;;1312:1;;1297:16;:::i;:::-;;;;-1:-1:-1;1173:299:31;;-1:-1:-1;1173:299:31;;1348:12;;;;:8;:12;;;;;;-1:-1:-1;;;;;1348:12:31;1364:9;1348:25;1344:118;;1423:12;;;;:8;:12;;;;;;;;1400:47;;-1:-1:-1;;;1400:47:31;;-1:-1:-1;;;;;1423:12:31;;;1400:47;;;16236:34:36;1437:9:31;16286:18:36;;;16279:43;16171:18;;1400:47:31;16024:304:36;1344:118:31;1494:47;;;;;;;;1511:15;-1:-1:-1;;;;;1494:47:31;;;;;1529:5;1494:47;;;;1536:4;;1494:47;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;1494:47:31;;;;-1:-1:-1;;1482:9:31;;;:5;:9;;;;;;;;;:59;;;;-1:-1:-1;;;;;;1482:59:31;-1:-1:-1;;;;;1482:59:31;;;;;;;;;;-1:-1:-1;1482:59:31;;;;;;;:9;;-1:-1:-1;1482:59:31;;;;;;;;:::i;:::-;-1:-1:-1;;;;;;;;1066:482:31:o;924:20:25:-;;;;;;;:::i;2741:203::-;2843:10;2826:28;;;;:16;:28;;;;;;;;-1:-1:-1;;;;;2826:38:25;;;;;;;;;;;;:49;;-1:-1:-1;;2826:49:25;;;;;;;;;;2891:46;;540:41:36;;;2826:38:25;;2843:10;2891:46;;513:18:36;2891:46:25;;;;;;;2741:203;;:::o;4549:544:31:-;4630:20;4653:12;;;:5;:12;;;;;;;;4630:35;;4606:12;4630:35;;;;;;;-1:-1:-1;;;;;4630:35:31;;;;;;;;;;;;;;;;;;;4606:12;;4630:20;:35;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4680:17;4692:4;2183:20;-1:-1:-1;;;;;2183:32:31;-1:-1:-1;;;2183:32:31;;2096:126;4680:17;4676:80;;;4720:25;4740:4;4720:19;:25::i;4676:80::-;4766:31;4800:44;4823:4;:20;;;4800:22;:44::i;:::-;4766:78;;4854:15;4872:27;4888:4;:10;;;3897:8;3801:112;4872:27;4854:45;;4909:21;4933:26;4949:4;:9;;;4933:15;:26::i;:::-;4909:50;;4972:19;4995:23;-1:-1:-1;;;;;4995:34:31;5043:8;5053;5030:32;;;;;;;;;:::i;:::-;;;;-1:-1:-1;;5030:32:31;;;;;;;;;;4995:68;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;4969:94:31;4549:544;-1:-1:-1;;;;;;;;4549:544:31:o;2228:125::-;2286:4;;2319:9;2327:1;2319:5;:9;:::i;:::-;2332:1;2319:14;;;;2335:10;;;;2228:125;-1:-1:-1;;2228:125:31:o;5283:144::-;1094:13:20;:11;:13::i;:::-;5361:31:31::1;5374:6;5382:9;;5361:31;;;;;;;;:::i;:::-;;;;;;;;5402:6;:18;5411:9:::0;;5402:6;:18:::1;:::i;4099:427:25:-:0;4247:26;4260:4;4266:2;4270;4247:12;:26::i;:::-;-1:-1:-1;;;;;4305:14:25;;;:19;;:172;;-1:-1:-1;4344:68:25;;-1:-1:-1;;;4344:68:25;;;4432:45;-1:-1:-1;;;;;4344:40:25;;;4432:45;;4344:68;;4385:10;;4397:4;;4403:2;;4407:4;;;;4344:68;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;-1:-1:-1;;;;;;4344:133:25;;4305:172;4284:235;;;;-1:-1:-1;;;4284:235:25;;15071:2:36;4284:235:25;;;15053:21:36;15110:2;15090:18;;;15083:30;-1:-1:-1;;;15129:18:36;;;15122:46;15185:18;;4284:235:25;14869:340:36;4284:235:25;4099:427;;;;;:::o;5147:130:31:-;1094:13:20;:11;:13::i;:::-;5221:25:31::1;5232:4;5238:7;;5221:25;;;;;;;;:::i;:::-;;;;;;;;5256:4;:14;5263:7:::0;;5256:4;:14:::1;:::i;5533:323::-:0;5618:13;5634:12;;;:8;:12;;;;;;5593:13;;-1:-1:-1;;;;;5634:12:31;;5656:82;;5702:25;;-1:-1:-1;;;5702:25:31;;;;;3866::36;;;3839:18;;5702:25:31;3720:177:36;5656:82:31;5747:18;5768:15;5780:2;5768:11;:15::i;:::-;5814:8;;5800:49;;-1:-1:-1;;;5800:49:31;;5747:36;;-1:-1:-1;;;;;;5814:8:31;;5800:32;;:49;;5833:2;;5747:36;;5814:8;;5800:49;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;5800:49:31;;;;;;;;;;;;:::i;:::-;5793:56;5533:323;-1:-1:-1;;;;5533:323:31:o;1909:181::-;-1:-1:-1;;;;;;;;;;;;;;;;;;;;;;;;2014:15:31;2026:2;2014:11;:15::i;:::-;2046:37;;;;;;;;;;;-1:-1:-1;2063:12:31;;;:8;2046:37;2063:12;;;;;;;;-1:-1:-1;;;;;2063:12:31;2046:37;;;;;;;;;;-1:-1:-1;2046:37:31;;1909:181;-1:-1:-1;1909:181:31:o;2081:198:20:-;1094:13;:11;:13::i;:::-;-1:-1:-1;;;;;2169:22:20;::::1;2161:73;;;::::0;-1:-1:-1;;;2161:73:20;;23941:2:36;2161:73:20::1;::::0;::::1;23923:21:36::0;23980:2;23960:18;;;23953:30;24019:34;23999:18;;;23992:62;-1:-1:-1;;;24070:18:36;;;24063:36;24116:19;;2161:73:20::1;23739:402:36::0;2161:73:20::1;2244:28;2263:8;2244:18;:28::i;:::-;2081:198:::0;:::o;1359:130::-;1247:7;1273:6;-1:-1:-1;;;;;1273:6:20;719:10:21;1422:23:20;1414:68;;;;-1:-1:-1;;;1414:68:20;;24348:2:36;1414:68:20;;;24330:21:36;;;24367:18;;;24360:30;24426:34;24406:18;;;24399:62;24478:18;;1414:68:20;24146:356:36;2433:187:20;2506:16;2525:6;;-1:-1:-1;;;;;2541:17:20;;;-1:-1:-1;;;;;;2541:17:20;;;;;;2573:40;;2525:6;;;;;;;2573:40;;2506:16;2573:40;2496:124;2433:187;:::o;5243:371:25:-;-1:-1:-1;;;;;5317:16:25;;5309:46;;;;-1:-1:-1;;;5309:46:25;;13911:2:36;5309:46:25;;;13893:21:36;13950:2;13930:18;;;13923:30;-1:-1:-1;;;13969:18:36;;;13962:47;14026:18;;5309:46:25;13709:341:36;5309:46:25;5398:1;5374:12;;;:8;:12;;;;;;-1:-1:-1;;;;;5374:12:25;:26;5366:53;;;;-1:-1:-1;;;5366:53:25;;24709:2:36;5366:53:25;;;24691:21:36;24748:2;24728:18;;;24721:30;-1:-1:-1;;;24767:18:36;;;24760:44;24821:18;;5366:53:25;24507:338:36;5366:53:25;-1:-1:-1;;;;;5509:14:25;;;;;;:10;:14;;;;;;;;:16;;;;;;5546:12;;;:8;:12;;;;;;:17;;-1:-1:-1;;;;;;5546:17:25;;;;;5579:28;5555:2;;5509:14;;5579:28;;5509:14;;5579:28;5243:371;;:::o;14:131:36:-;-1:-1:-1;;;;;;88:32:36;;78:43;;68:71;;135:1;132;125:12;150:245;208:6;261:2;249:9;240:7;236:23;232:32;229:52;;;277:1;274;267:12;229:52;316:9;303:23;335:30;359:5;335:30;:::i;592:127::-;653:10;648:3;644:20;641:1;634:31;684:4;681:1;674:15;708:4;705:1;698:15;724:275;795:2;789:9;860:2;841:13;;-1:-1:-1;;837:27:36;825:40;;895:18;880:34;;916:22;;;877:62;874:88;;;942:18;;:::i;:::-;978:2;971:22;724:275;;-1:-1:-1;724:275:36:o;1004:131::-;-1:-1:-1;;;;;1079:31:36;;1069:42;;1059:70;;1125:1;1122;1115:12;1140:186;1188:4;1221:18;1213:6;1210:30;1207:56;;;1243:18;;:::i;:::-;-1:-1:-1;1309:2:36;1288:15;-1:-1:-1;;1284:29:36;1315:4;1280:40;;1140:186::o;1331:462::-;1373:5;1426:3;1419:4;1411:6;1407:17;1403:27;1393:55;;1444:1;1441;1434:12;1393:55;1480:6;1467:20;1511:48;1527:31;1555:2;1527:31;:::i;:::-;1511:48;:::i;:::-;1584:2;1575:7;1568:19;1630:3;1623:4;1618:2;1610:6;1606:15;1602:26;1599:35;1596:55;;;1647:1;1644;1637:12;1596:55;1712:2;1705:4;1697:6;1693:17;1686:4;1677:7;1673:18;1660:55;1760:1;1735:16;;;1753:4;1731:27;1724:38;;;;1739:7;1331:462;-1:-1:-1;;;1331:462:36:o;1798:941::-;1884:6;1937:2;1925:9;1916:7;1912:23;1908:32;1905:52;;;1953:1;1950;1943:12;1905:52;1993:9;1980:23;2022:18;2063:2;2055:6;2052:14;2049:34;;;2079:1;2076;2069:12;2049:34;2102:22;;;;2158:4;2140:16;;;2136:27;2133:47;;;2176:1;2173;2166:12;2133:47;2209:2;2203:9;2251:4;2243:6;2239:17;2306:6;2294:10;2291:22;2286:2;2274:10;2271:18;2268:46;2265:72;;;2317:18;;:::i;:::-;2353:2;2346:22;2390:16;;2415:31;2390:16;2415:31;:::i;:::-;2455:21;;2530:2;2522:11;;;2509:25;2492:15;;;2485:50;2581:2;2573:11;;2560:25;2597:16;;;2594:36;;;2626:1;2623;2616:12;2594:36;2663:44;2699:7;2688:8;2684:2;2680:17;2663:44;:::i;:::-;2658:2;2646:15;;2639:69;-1:-1:-1;2650:6:36;1798:941;-1:-1:-1;;;;;1798:941:36:o;2744:250::-;2829:1;2839:113;2853:6;2850:1;2847:13;2839:113;;;2929:11;;;2923:18;2910:11;;;2903:39;2875:2;2868:10;2839:113;;;-1:-1:-1;;2986:1:36;2968:16;;2961:27;2744:250::o;2999:270::-;3040:3;3078:5;3072:12;3105:6;3100:3;3093:19;3121:76;3190:6;3183:4;3178:3;3174:14;3167:4;3160:5;3156:16;3121:76;:::i;:::-;3251:2;3230:15;-1:-1:-1;;3226:29:36;3217:39;;;;3258:4;3213:50;;2999:270;-1:-1:-1;;2999:270:36:o;3274:217::-;3421:2;3410:9;3403:21;3384:4;3441:44;3481:2;3470:9;3466:18;3458:6;3441:44;:::i;3902:180::-;3961:6;4014:2;4002:9;3993:7;3989:23;3985:32;3982:52;;;4030:1;4027;4020:12;3982:52;-1:-1:-1;4053:23:36;;3902:180;-1:-1:-1;3902:180:36:o;4295:315::-;4363:6;4371;4424:2;4412:9;4403:7;4399:23;4395:32;4392:52;;;4440:1;4437;4430:12;4392:52;4479:9;4466:23;4498:31;4523:5;4498:31;:::i;:::-;4548:5;4600:2;4585:18;;;;4572:32;;-1:-1:-1;;;4295:315:36:o;4615:320::-;4683:6;4736:2;4724:9;4715:7;4711:23;4707:32;4704:52;;;4752:1;4749;4742:12;4704:52;4792:9;4779:23;4825:18;4817:6;4814:30;4811:50;;;4857:1;4854;4847:12;4811:50;4880:49;4921:7;4912:6;4901:9;4897:22;4880:49;:::i;4940:385::-;5172:1;5168;5163:3;5159:11;5155:19;5147:6;5143:32;5132:9;5125:51;5212:6;5207:2;5196:9;5192:18;5185:34;5255:2;5250;5239:9;5235:18;5228:30;5106:4;5275:44;5315:2;5304:9;5300:18;5292:6;5275:44;:::i;:::-;5267:52;4940:385;-1:-1:-1;;;;;4940:385:36:o;5330:247::-;5389:6;5442:2;5430:9;5421:7;5417:23;5413:32;5410:52;;;5458:1;5455;5448:12;5410:52;5497:9;5484:23;5516:31;5541:5;5516:31;:::i;5582:456::-;5659:6;5667;5675;5728:2;5716:9;5707:7;5703:23;5699:32;5696:52;;;5744:1;5741;5734:12;5696:52;5783:9;5770:23;5802:31;5827:5;5802:31;:::i;:::-;5852:5;-1:-1:-1;5909:2:36;5894:18;;5881:32;5922:33;5881:32;5922:33;:::i;:::-;5582:456;;5974:7;;-1:-1:-1;;;6028:2:36;6013:18;;;;6000:32;;5582:456::o;6043:632::-;6214:2;6266:21;;;6336:13;;6239:18;;;6358:22;;;6185:4;;6214:2;6437:15;;;;6411:2;6396:18;;;6185:4;6480:169;6494:6;6491:1;6488:13;6480:169;;;6555:13;;6543:26;;6624:15;;;;6589:12;;;;6516:1;6509:9;6480:169;;;-1:-1:-1;6666:3:36;;6043:632;-1:-1:-1;;;;;;6043:632:36:o;6680:347::-;6731:8;6741:6;6795:3;6788:4;6780:6;6776:17;6772:27;6762:55;;6813:1;6810;6803:12;6762:55;-1:-1:-1;6836:20:36;;6879:18;6868:30;;6865:50;;;6911:1;6908;6901:12;6865:50;6948:4;6940:6;6936:17;6924:29;;7000:3;6993:4;6984:6;6976;6972:19;6968:30;6965:39;6962:59;;;7017:1;7014;7007:12;6962:59;6680:347;;;;;:::o;7032:681::-;7129:6;7137;7145;7153;7161;7214:3;7202:9;7193:7;7189:23;7185:33;7182:53;;;7231:1;7228;7221:12;7182:53;7267:9;7254:23;7244:33;;7327:2;7316:9;7312:18;7299:32;7340:31;7365:5;7340:31;:::i;:::-;7390:5;-1:-1:-1;7442:2:36;7427:18;;7414:32;;-1:-1:-1;7497:2:36;7482:18;;7469:32;7524:18;7513:30;;7510:50;;;7556:1;7553;7546:12;7510:50;7595:58;7645:7;7636:6;7625:9;7621:22;7595:58;:::i;:::-;7032:681;;;;-1:-1:-1;7032:681:36;;-1:-1:-1;7672:8:36;;7569:84;7032:681;-1:-1:-1;;;7032:681:36:o;7718:416::-;7783:6;7791;7844:2;7832:9;7823:7;7819:23;7815:32;7812:52;;;7860:1;7857;7850:12;7812:52;7899:9;7886:23;7918:31;7943:5;7918:31;:::i;:::-;7968:5;-1:-1:-1;8025:2:36;8010:18;;7997:32;8067:15;;8060:23;8048:36;;8038:64;;8098:1;8095;8088:12;8038:64;8121:7;8111:17;;;7718:416;;;;;:::o;8402:410::-;8473:6;8481;8534:2;8522:9;8513:7;8509:23;8505:32;8502:52;;;8550:1;8547;8540:12;8502:52;8590:9;8577:23;8623:18;8615:6;8612:30;8609:50;;;8655:1;8652;8645:12;8609:50;8694:58;8744:7;8735:6;8724:9;8720:22;8694:58;:::i;:::-;8771:8;;8668:84;;-1:-1:-1;8402:410:36;-1:-1:-1;;;;8402:410:36:o;9209:754::-;9306:6;9314;9322;9330;9338;9391:3;9379:9;9370:7;9366:23;9362:33;9359:53;;;9408:1;9405;9398:12;9359:53;9447:9;9434:23;9466:31;9491:5;9466:31;:::i;:::-;9516:5;-1:-1:-1;9573:2:36;9558:18;;9545:32;9586:33;9545:32;9586:33;:::i;9968:497::-;10159:2;10148:9;10141:21;10204:6;10198:13;10193:2;10182:9;10178:18;10171:41;10293:1;10289;10284:3;10280:11;10276:19;10270:2;10262:6;10258:15;10252:22;10248:48;10243:2;10232:9;10228:18;10221:76;10122:4;10344:2;10336:6;10332:15;10326:22;10386:4;10379;10368:9;10364:20;10357:34;10408:51;10454:3;10443:9;10439:19;10425:12;10408:51;:::i;10470:388::-;10538:6;10546;10599:2;10587:9;10578:7;10574:23;10570:32;10567:52;;;10615:1;10612;10605:12;10567:52;10654:9;10641:23;10673:31;10698:5;10673:31;:::i;:::-;10723:5;-1:-1:-1;10780:2:36;10765:18;;10752:32;10793:33;10752:32;10793:33;:::i;11050:380::-;11129:1;11125:12;;;;11172;;;11193:61;;11247:4;11239:6;11235:17;11225:27;;11193:61;11300:2;11292:6;11289:14;11269:18;11266:38;11263:161;;11346:10;11341:3;11337:20;11334:1;11327:31;11381:4;11378:1;11371:15;11409:4;11406:1;11399:15;11263:161;;11050:380;;;:::o;11778:127::-;11839:10;11834:3;11830:20;11827:1;11820:31;11870:4;11867:1;11860:15;11894:4;11891:1;11884:15;11910:297;12028:12;;12075:4;12064:16;;;12058:23;;12028:12;12093:16;;12090:111;;;-1:-1:-1;;12167:4:36;12163:17;;;;12160:1;12156:25;12152:38;12141:50;;11910:297;-1:-1:-1;11910:297:36:o;12212:383::-;12369:3;12407:6;12401:13;12423:66;12482:6;12477:3;12470:4;12462:6;12458:17;12423:66;:::i;:::-;12511:16;;;;12536:21;;;-1:-1:-1;12584:4:36;12573:16;;12212:383;-1:-1:-1;12212:383:36:o;12600:127::-;12661:10;12656:3;12652:20;12649:1;12642:31;12692:4;12689:1;12682:15;12716:4;12713:1;12706:15;12732:135;12771:3;12792:17;;;12789:43;;12812:18;;:::i;:::-;-1:-1:-1;12859:1:36;12848:13;;12732:135::o;12872:304::-;13063:2;13052:9;13045:21;13026:4;13083:44;13123:2;13112:9;13108:18;13100:6;13083:44;:::i;:::-;13075:52;;13163:6;13158:2;13147:9;13143:18;13136:34;12872:304;;;;;:::o;13181:184::-;13251:6;13304:2;13292:9;13283:7;13279:23;13275:32;13272:52;;;13320:1;13317;13310:12;13272:52;-1:-1:-1;13343:16:36;;13181:184;-1:-1:-1;13181:184:36:o;14615:249::-;14684:6;14737:2;14725:9;14716:7;14712:23;14708:32;14705:52;;;14753:1;14750;14743:12;14705:52;14785:9;14779:16;14804:30;14828:5;14804:30;:::i;15894:125::-;15959:9;;;15980:10;;;15977:36;;;15993:18;;:::i;16458:544::-;16559:2;16554:3;16551:11;16548:448;;;16595:1;16620:5;16616:2;16609:17;16665:4;16661:2;16651:19;16735:2;16723:10;16719:19;16716:1;16712:27;16706:4;16702:38;16771:4;16759:10;16756:20;16753:47;;;-1:-1:-1;16794:4:36;16753:47;16849:2;16844:3;16840:12;16837:1;16833:20;16827:4;16823:31;16813:41;;16904:82;16922:2;16915:5;16912:13;16904:82;;;16967:17;;;16948:1;16937:13;16904:82;;;16908:3;;;16458:544;;;:::o;17178:1348::-;17302:3;17296:10;17329:18;17321:6;17318:30;17315:56;;;17351:18;;:::i;:::-;17380:96;17469:6;17429:38;17461:4;17455:11;17429:38;:::i;:::-;17423:4;17380:96;:::i;:::-;17531:4;;17595:2;17584:14;;17612:1;17607:662;;;;18313:1;18330:6;18327:89;;;-1:-1:-1;18382:19:36;;;18376:26;18327:89;-1:-1:-1;;17135:1:36;17131:11;;;17127:24;17123:29;17113:40;17159:1;17155:11;;;17110:57;18429:81;;17577:943;;17607:662;16405:1;16398:14;;;16442:4;16429:18;;-1:-1:-1;;17643:20:36;;;17760:236;17774:7;17771:1;17768:14;17760:236;;;17863:19;;;17857:26;17842:42;;17955:27;;;;17923:1;17911:14;;;;17790:19;;17760:236;;;17764:3;18024:6;18015:7;18012:19;18009:201;;;18085:19;;;18079:26;-1:-1:-1;;18168:1:36;18164:14;;;18180:3;18160:24;18156:37;18152:42;18137:58;18122:74;;18009:201;-1:-1:-1;;;;;18256:1:36;18240:14;;;18236:22;18223:36;;-1:-1:-1;17178:1348:36:o;18531:384::-;-1:-1:-1;;;;;;18716:33:36;;18704:46;;18773:13;;18686:3;;18795:74;18773:13;18858:1;18849:11;;18842:4;18830:17;;18795:74;:::i;:::-;18889:16;;;;18907:1;18885:24;;18531:384;-1:-1:-1;;;18531:384:36:o;18920:287::-;19049:3;19087:6;19081:13;19103:66;19162:6;19157:3;19150:4;19142:6;19138:17;19103:66;:::i;:::-;19185:16;;;;;18920:287;-1:-1:-1;;18920:287:36:o;19212:209::-;19244:1;19270;19260:132;;19314:10;19309:3;19305:20;19302:1;19295:31;19349:4;19346:1;19339:15;19377:4;19374:1;19367:15;19260:132;-1:-1:-1;19406:9:36;;19212:209::o;19426:772::-;19476:3;19517:5;19511:12;19546:36;19572:9;19546:36;:::i;:::-;19591:19;;;19629:4;19652:1;19669:18;;;19696:146;;;;19856:1;19851:341;;;;19662:530;;19696:146;-1:-1:-1;;19738:24:36;;19724:12;;;19717:46;19810:14;;19803:22;19800:1;19796:30;19787:40;;19783:49;;;-1:-1:-1;19696:146:36;;19851:341;19882:5;19879:1;19872:16;19929:2;19926:1;19916:16;19954:1;19968:174;19982:6;19979:1;19976:13;19968:174;;;20069:14;;20051:11;;;20047:20;;20040:44;20112:16;;;;19997:10;;19968:174;;;20166:11;;20162:20;;;-1:-1:-1;;19662:530:36;;;;;;19426:772;;;;:::o;20203:267::-;20292:6;20287:3;20280:19;20344:6;20337:5;20330:4;20325:3;20321:14;20308:43;-1:-1:-1;20396:1:36;20371:16;;;20389:4;20367:27;;;20360:38;;;;20452:2;20431:15;;;-1:-1:-1;;20427:29:36;20418:39;;;20414:50;;20203:267::o;20475:415::-;20679:2;20668:9;20661:21;20642:4;20705:53;20754:2;20743:9;20739:18;20731:6;20705:53;:::i;:::-;20806:9;20798:6;20794:22;20789:2;20778:9;20774:18;20767:50;20834;20877:6;20869;20861;20834:50;:::i;:::-;20826:58;20475:415;-1:-1:-1;;;;;;20475:415:36:o;20895:1204::-;21019:18;21014:3;21011:27;21008:53;;;21041:18;;:::i;:::-;21070:93;21159:3;21119:38;21151:4;21145:11;21119:38;:::i;:::-;21113:4;21070:93;:::i;:::-;21189:1;21214:2;21209:3;21206:11;21231:1;21226:615;;;;21885:1;21902:3;21899:93;;;-1:-1:-1;21958:19:36;;;21945:33;21899:93;-1:-1:-1;;17135:1:36;17131:11;;;17127:24;17123:29;17113:40;17159:1;17155:11;;;17110:57;22005:78;;21199:894;;21226:615;16405:1;16398:14;;;16442:4;16429:18;;-1:-1:-1;;21262:17:36;;;21362:9;21384:229;21398:7;21395:1;21392:14;21384:229;;;21487:19;;;21474:33;21459:49;;21594:4;21579:20;;;;21547:1;21535:14;;;;21414:12;21384:229;;;21388:3;21641;21632:7;21629:16;21626:159;;;21765:1;21761:6;21755:3;21749;21746:1;21742:11;21738:21;21734:34;21730:39;21717:9;21712:3;21708:19;21695:33;21691:79;21683:6;21676:95;21626:159;;;21828:1;21822:3;21819:1;21815:11;21811:19;21805:4;21798:33;21199:894;;20895:1204;;;:::o;22104:516::-;-1:-1:-1;;;;;22383:15:36;;;22365:34;;22435:15;;22430:2;22415:18;;22408:43;22482:2;22467:18;;22460:34;;;22530:3;22525:2;22510:18;;22503:31;;;22308:4;;22551:63;;22594:19;;22586:6;22578;22551:63;:::i;:::-;22543:71;22104:516;-1:-1:-1;;;;;;;22104:516:36:o;22625:456::-;22845:6;22834:9;22827:25;22888:2;22883;22872:9;22868:18;22861:30;22808:4;22914:44;22954:2;22943:9;22939:18;22931:6;22914:44;:::i;:::-;23006:9;22998:6;22994:22;22989:2;22978:9;22974:18;22967:50;23034:41;23068:6;23060;23034:41;:::i;23086:648::-;23166:6;23219:2;23207:9;23198:7;23194:23;23190:32;23187:52;;;23235:1;23232;23225:12;23187:52;23268:9;23262:16;23301:18;23293:6;23290:30;23287:50;;;23333:1;23330;23323:12;23287:50;23356:22;;23409:4;23401:13;;23397:27;-1:-1:-1;23387:55:36;;23438:1;23435;23428:12;23387:55;23467:2;23461:9;23492:48;23508:31;23536:2;23508:31;:::i;23492:48::-;23563:2;23556:5;23549:17;23603:7;23598:2;23593;23589;23585:11;23581:20;23578:33;23575:53;;;23624:1;23621;23614:12;23575:53;23637:67;23701:2;23696;23689:5;23685:14;23680:2;23676;23672:11;23637:67;:::i", "linkReferences": { "lib/eth-projects-monorepo/packages/eth-projects-contracts/contracts/lib/utils/Bytes.sol": { @@ -987,10 +987,10 @@ "transferFrom(address,address,uint256)": "23b872dd", "transferOwnership(address)": "f2fde38b" }, - "rawMetadata": "{\"compiler\":{\"version\":\"0.8.17+commit.8df45f5f\"},\"language\":\"Solidity\",\"output\":{\"abi\":[{\"inputs\":[],\"stateMutability\":\"nonpayable\",\"type\":\"constructor\"},{\"inputs\":[{\"internalType\":\"uint256\",\"name\":\"id\",\"type\":\"uint256\"}],\"name\":\"NonExistantTokenError\",\"type\":\"error\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"owner\",\"type\":\"address\"},{\"internalType\":\"address\",\"name\":\"caller\",\"type\":\"address\"}],\"name\":\"SetCellIsNotOwnerError\",\"type\":\"error\"},{\"anonymous\":false,\"inputs\":[{\"indexed\":true,\"internalType\":\"address\",\"name\":\"owner\",\"type\":\"address\"},{\"indexed\":true,\"internalType\":\"address\",\"name\":\"spender\",\"type\":\"address\"},{\"indexed\":true,\"internalType\":\"uint256\",\"name\":\"id\",\"type\":\"uint256\"}],\"name\":\"Approval\",\"type\":\"event\"},{\"anonymous\":false,\"inputs\":[{\"indexed\":true,\"internalType\":\"address\",\"name\":\"owner\",\"type\":\"address\"},{\"indexed\":true,\"internalType\":\"address\",\"name\":\"operator\",\"type\":\"address\"},{\"indexed\":false,\"internalType\":\"bool\",\"name\":\"approved\",\"type\":\"bool\"}],\"name\":\"ApprovalForAll\",\"type\":\"event\"},{\"anonymous\":false,\"inputs\":[{\"indexed\":false,\"internalType\":\"uint256\",\"name\":\"id\",\"type\":\"uint256\"},{\"indexed\":false,\"internalType\":\"uint256\",\"name\":\"value\",\"type\":\"uint256\"},{\"indexed\":false,\"internalType\":\"address\",\"name\":\"contractAddress\",\"type\":\"address\"}],\"name\":\"CellUpdate\",\"type\":\"event\"},{\"anonymous\":false,\"inputs\":[{\"indexed\":false,\"internalType\":\"string\",\"name\":\"previousName\",\"type\":\"string\"},{\"indexed\":false,\"internalType\":\"string\",\"name\":\"newName\",\"type\":\"string\"}],\"name\":\"NameUpdate\",\"type\":\"event\"},{\"anonymous\":false,\"inputs\":[{\"indexed\":true,\"internalType\":\"address\",\"name\":\"previousOwner\",\"type\":\"address\"},{\"indexed\":true,\"internalType\":\"address\",\"name\":\"newOwner\",\"type\":\"address\"}],\"name\":\"OwnershipTransferred\",\"type\":\"event\"},{\"anonymous\":false,\"inputs\":[{\"indexed\":false,\"internalType\":\"string\",\"name\":\"previousSymbol\",\"type\":\"string\"},{\"indexed\":false,\"internalType\":\"string\",\"name\":\"newSymbol\",\"type\":\"string\"}],\"name\":\"SymbolUpdate\",\"type\":\"event\"},{\"anonymous\":false,\"inputs\":[{\"indexed\":true,\"internalType\":\"address\",\"name\":\"from\",\"type\":\"address\"},{\"indexed\":true,\"internalType\":\"address\",\"name\":\"to\",\"type\":\"address\"},{\"indexed\":true,\"internalType\":\"uint256\",\"name\":\"id\",\"type\":\"uint256\"}],\"name\":\"Transfer\",\"type\":\"event\"},{\"inputs\":[],\"name\":\"DEFAULT_VALUE\",\"outputs\":[{\"internalType\":\"uint256\",\"name\":\"\",\"type\":\"uint256\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"RC_BOUND\",\"outputs\":[{\"internalType\":\"address\",\"name\":\"\",\"type\":\"address\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"contractAddress\",\"type\":\"address\"}],\"name\":\"_contractAddressIsTokenId\",\"outputs\":[{\"internalType\":\"bool\",\"name\":\"\",\"type\":\"bool\"}],\"stateMutability\":\"pure\",\"type\":\"function\"},{\"inputs\":[{\"components\":[{\"internalType\":\"address\",\"name\":\"contractAddress\",\"type\":\"address\"},{\"internalType\":\"bytes32\",\"name\":\"value\",\"type\":\"bytes32\"},{\"internalType\":\"bytes\",\"name\":\"data\",\"type\":\"bytes\"}],\"internalType\":\"struct CellData\",\"name\":\"cell\",\"type\":\"tuple\"}],\"name\":\"_isConstant\",\"outputs\":[{\"internalType\":\"bool\",\"name\":\"\",\"type\":\"bool\"}],\"stateMutability\":\"pure\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"bytes\",\"name\":\"callData\",\"type\":\"bytes\"}],\"name\":\"_renderCallData\",\"outputs\":[{\"internalType\":\"bytes\",\"name\":\"\",\"type\":\"bytes\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"uint256\",\"name\":\"value\",\"type\":\"uint256\"}],\"name\":\"_renderCell\",\"outputs\":[{\"internalType\":\"bytes\",\"name\":\"\",\"type\":\"bytes\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"components\":[{\"internalType\":\"address\",\"name\":\"contractAddress\",\"type\":\"address\"},{\"internalType\":\"bytes32\",\"name\":\"value\",\"type\":\"bytes32\"},{\"internalType\":\"bytes\",\"name\":\"data\",\"type\":\"bytes\"}],\"internalType\":\"struct CellData\",\"name\":\"cell\",\"type\":\"tuple\"}],\"name\":\"_renderConstantCell\",\"outputs\":[{\"internalType\":\"bytes\",\"name\":\"\",\"type\":\"bytes\"}],\"stateMutability\":\"pure\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"contractAddress\",\"type\":\"address\"}],\"name\":\"_renderContractAddress\",\"outputs\":[{\"internalType\":\"address\",\"name\":\"\",\"type\":\"address\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"bytes32\",\"name\":\"selector\",\"type\":\"bytes32\"}],\"name\":\"_renderSelector\",\"outputs\":[{\"internalType\":\"bytes4\",\"name\":\"\",\"type\":\"bytes4\"}],\"stateMutability\":\"pure\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"uint256\",\"name\":\"value\",\"type\":\"uint256\"}],\"name\":\"_renderValue\",\"outputs\":[{\"internalType\":\"bool\",\"name\":\"\",\"type\":\"bool\"},{\"internalType\":\"uint256\",\"name\":\"\",\"type\":\"uint256\"}],\"stateMutability\":\"pure\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"spender\",\"type\":\"address\"},{\"internalType\":\"uint256\",\"name\":\"id\",\"type\":\"uint256\"}],\"name\":\"approve\",\"outputs\":[],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"owner\",\"type\":\"address\"}],\"name\":\"balanceOf\",\"outputs\":[{\"internalType\":\"uint256\",\"name\":\"\",\"type\":\"uint256\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"bytes\",\"name\":\"callData\",\"type\":\"bytes\"}],\"name\":\"callData2Uint256Array\",\"outputs\":[{\"internalType\":\"uint256[]\",\"name\":\"\",\"type\":\"uint256[]\"}],\"stateMutability\":\"pure\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"uint256\",\"name\":\"\",\"type\":\"uint256\"}],\"name\":\"cells\",\"outputs\":[{\"internalType\":\"address\",\"name\":\"contractAddress\",\"type\":\"address\"},{\"internalType\":\"bytes32\",\"name\":\"value\",\"type\":\"bytes32\"},{\"internalType\":\"bytes\",\"name\":\"data\",\"type\":\"bytes\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"uint256\",\"name\":\"\",\"type\":\"uint256\"}],\"name\":\"getApproved\",\"outputs\":[{\"internalType\":\"address\",\"name\":\"\",\"type\":\"address\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"uint256\",\"name\":\"id\",\"type\":\"uint256\"}],\"name\":\"getCell\",\"outputs\":[{\"internalType\":\"address\",\"name\":\"contractAddress\",\"type\":\"address\"},{\"internalType\":\"bytes32\",\"name\":\"value\",\"type\":\"bytes32\"},{\"internalType\":\"bytes\",\"name\":\"data\",\"type\":\"bytes\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"\",\"type\":\"address\"},{\"internalType\":\"address\",\"name\":\"\",\"type\":\"address\"}],\"name\":\"isApprovedForAll\",\"outputs\":[{\"internalType\":\"bool\",\"name\":\"\",\"type\":\"bool\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"name\",\"outputs\":[{\"internalType\":\"string\",\"name\":\"\",\"type\":\"string\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"owner\",\"outputs\":[{\"internalType\":\"address\",\"name\":\"\",\"type\":\"address\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"uint256\",\"name\":\"id\",\"type\":\"uint256\"}],\"name\":\"ownerOf\",\"outputs\":[{\"internalType\":\"address\",\"name\":\"owner\",\"type\":\"address\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"uint256\",\"name\":\"id\",\"type\":\"uint256\"}],\"name\":\"renderCell\",\"outputs\":[{\"components\":[{\"internalType\":\"uint256\",\"name\":\"id\",\"type\":\"uint256\"},{\"internalType\":\"address\",\"name\":\"owner\",\"type\":\"address\"},{\"internalType\":\"bytes\",\"name\":\"value\",\"type\":\"bytes\"}],\"internalType\":\"struct CellRendered\",\"name\":\"\",\"type\":\"tuple\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"renderer\",\"outputs\":[{\"internalType\":\"address\",\"name\":\"\",\"type\":\"address\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"renounceOwnership\",\"outputs\":[],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"from\",\"type\":\"address\"},{\"internalType\":\"address\",\"name\":\"to\",\"type\":\"address\"},{\"internalType\":\"uint256\",\"name\":\"id\",\"type\":\"uint256\"}],\"name\":\"safeTransferFrom\",\"outputs\":[],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"from\",\"type\":\"address\"},{\"internalType\":\"address\",\"name\":\"to\",\"type\":\"address\"},{\"internalType\":\"uint256\",\"name\":\"id\",\"type\":\"uint256\"},{\"internalType\":\"bytes\",\"name\":\"data\",\"type\":\"bytes\"}],\"name\":\"safeTransferFrom\",\"outputs\":[],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"operator\",\"type\":\"address\"},{\"internalType\":\"bool\",\"name\":\"approved\",\"type\":\"bool\"}],\"name\":\"setApprovalForAll\",\"outputs\":[],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"uint256\",\"name\":\"id\",\"type\":\"uint256\"},{\"internalType\":\"uint160\",\"name\":\"contractAddress\",\"type\":\"uint160\"},{\"internalType\":\"bytes32\",\"name\":\"value\",\"type\":\"bytes32\"},{\"internalType\":\"bytes\",\"name\":\"data\",\"type\":\"bytes\"}],\"name\":\"setCell\",\"outputs\":[],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"string\",\"name\":\"newName\",\"type\":\"string\"}],\"name\":\"setName\",\"outputs\":[],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"newRender\",\"type\":\"address\"}],\"name\":\"setRenderer\",\"outputs\":[],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"string\",\"name\":\"newSymbol\",\"type\":\"string\"}],\"name\":\"setSymbol\",\"outputs\":[],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"bytes4\",\"name\":\"interfaceId\",\"type\":\"bytes4\"}],\"name\":\"supportsInterface\",\"outputs\":[{\"internalType\":\"bool\",\"name\":\"\",\"type\":\"bool\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"symbol\",\"outputs\":[{\"internalType\":\"string\",\"name\":\"\",\"type\":\"string\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"uint256\",\"name\":\"\",\"type\":\"uint256\"}],\"name\":\"tokenByIndex\",\"outputs\":[{\"internalType\":\"uint256\",\"name\":\"\",\"type\":\"uint256\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"uint256\",\"name\":\"id\",\"type\":\"uint256\"}],\"name\":\"tokenURI\",\"outputs\":[{\"internalType\":\"string\",\"name\":\"\",\"type\":\"string\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"totalSupply\",\"outputs\":[{\"internalType\":\"uint256\",\"name\":\"\",\"type\":\"uint256\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"from\",\"type\":\"address\"},{\"internalType\":\"address\",\"name\":\"to\",\"type\":\"address\"},{\"internalType\":\"uint256\",\"name\":\"id\",\"type\":\"uint256\"}],\"name\":\"transferFrom\",\"outputs\":[],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"newOwner\",\"type\":\"address\"}],\"name\":\"transferOwnership\",\"outputs\":[],\"stateMutability\":\"nonpayable\",\"type\":\"function\"}],\"devdoc\":{\"kind\":\"dev\",\"methods\":{\"owner()\":{\"details\":\"Returns the address of the current owner.\"},\"renounceOwnership()\":{\"details\":\"Leaves the contract without owner. It will not be possible to call `onlyOwner` functions anymore. Can only be called by the current owner. NOTE: Renouncing ownership will leave the contract without an owner, thereby removing any functionality that is only available to the owner.\"},\"transferOwnership(address)\":{\"details\":\"Transfers ownership of the contract to a new account (`newOwner`). Can only be called by the current owner.\"}},\"version\":1},\"userdoc\":{\"kind\":\"user\",\"methods\":{},\"version\":1}},\"settings\":{\"compilationTarget\":{\"src/Sheet.sol\":\"Sheet\"},\"evmVersion\":\"london\",\"libraries\":{},\"metadata\":{\"bytecodeHash\":\"ipfs\"},\"optimizer\":{\"enabled\":true,\"runs\":200},\"remappings\":[\":@clemlaflemme/=lib/eth-projects-monorepo/packages/eth-projects-contracts/contracts/\",\":ds-test/=lib/forge-std/lib/ds-test/src/\",\":eth-projects-monorepo/=lib/eth-projects-monorepo/\",\":forge-std/=lib/forge-std/src/\",\":openzeppelin-contracts/=lib/openzeppelin-contracts/\",\":openzeppelin/=lib/openzeppelin-contracts/contracts/\",\":renderers/=lib/eth-projects-monorepo/packages/eth-projects-contracts/contracts/lib/renderers/\",\":safe-contracts/=lib/safe-contracts/contracts/\",\":solmate/=lib/solmate/src/\",\":utils/=lib/eth-projects-monorepo/packages/eth-projects-contracts/contracts/lib/utils/\"]},\"sources\":{\"lib/eth-projects-monorepo/packages/eth-projects-contracts/contracts/lib/utils/Bytes.sol\":{\"keccak256\":\"0xd894eac2f223760da25e079d125b4c0de282a6d609a1e8a1834f5dc1c02550d5\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://2c305f8b0dc8b57df9e5b06e51e3e6ed374c2e655cc5edf7b9a7e0d86eb629a0\",\"dweb:/ipfs/QmXi9SmrcYfqSVGVP4WMtYQmBMhGVm8xdLus54YojtaNBi\"]},\"lib/openzeppelin-contracts/contracts/access/Ownable.sol\":{\"keccak256\":\"0xa94b34880e3c1b0b931662cb1c09e5dfa6662f31cba80e07c5ee71cd135c9673\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://40fb1b5102468f783961d0af743f91b9980cf66b50d1d12009f6bb1869cea4d2\",\"dweb:/ipfs/QmYqEbJML4jB1GHbzD4cUZDtJg5wVwNm3vDJq1GbyDus8y\"]},\"lib/openzeppelin-contracts/contracts/utils/Context.sol\":{\"keccak256\":\"0xe2e337e6dde9ef6b680e07338c493ebea1b5fd09b43424112868e9cc1706bca7\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://6df0ddf21ce9f58271bdfaa85cde98b200ef242a05a3f85c2bc10a8294800a92\",\"dweb:/ipfs/QmRK2Y5Yc6BK7tGKkgsgn3aJEQGi5aakeSPZvS65PV8Xp3\"]},\"lib/solmate/src/tokens/ERC721.sol\":{\"keccak256\":\"0x04af19f16f00ba65ae168d6d10da5210dc18da6bcec6974dccf984ba388aa22d\",\"license\":\"AGPL-3.0-only\",\"urls\":[\"bzz-raw://098e69f22b67da6927e03203c12ebfda5b0490518f6d9cce7853001ac5ad8403\",\"dweb:/ipfs/QmYyzfurQe88PsVjRNfutV3gS7Vi68f7zgtVZVtLfd4ViK\"]},\"src/Interfaces.sol\":{\"keccak256\":\"0x6e20e29459d96085394767369237fb5a02d7cf6e22b930debedf47325c39c707\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://04351e9c841b435cb1e20bf4dd3ccab087dad3d4ba5a57908c8f674181e19cb5\",\"dweb:/ipfs/QmY8oxNAeMrP3mf7yNHvdz5JgafffP4yN8jnxWHEHoo6Sx\"]},\"src/Sheet.sol\":{\"keccak256\":\"0xdcf71eec34ef84cb2838babe8242dc9628a477d467dfb746e975ff40c168315e\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://1f54dd464e26c05289d0a14b6f3e3d3f6583f2a1bb1be1ddb5535fbc8061057a\",\"dweb:/ipfs/QmXaK6msxofR8mcJK6i9v5xHT75D9nAtnU5Ks5QSWzYG2G\"]}},\"version\":1}", + "rawMetadata": "{\"compiler\":{\"version\":\"0.8.21+commit.d9974bed\"},\"language\":\"Solidity\",\"output\":{\"abi\":[{\"inputs\":[],\"stateMutability\":\"nonpayable\",\"type\":\"constructor\"},{\"inputs\":[{\"internalType\":\"uint256\",\"name\":\"id\",\"type\":\"uint256\"}],\"name\":\"NonExistantTokenError\",\"type\":\"error\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"owner\",\"type\":\"address\"},{\"internalType\":\"address\",\"name\":\"caller\",\"type\":\"address\"}],\"name\":\"SetCellIsNotOwnerError\",\"type\":\"error\"},{\"anonymous\":false,\"inputs\":[{\"indexed\":true,\"internalType\":\"address\",\"name\":\"owner\",\"type\":\"address\"},{\"indexed\":true,\"internalType\":\"address\",\"name\":\"spender\",\"type\":\"address\"},{\"indexed\":true,\"internalType\":\"uint256\",\"name\":\"id\",\"type\":\"uint256\"}],\"name\":\"Approval\",\"type\":\"event\"},{\"anonymous\":false,\"inputs\":[{\"indexed\":true,\"internalType\":\"address\",\"name\":\"owner\",\"type\":\"address\"},{\"indexed\":true,\"internalType\":\"address\",\"name\":\"operator\",\"type\":\"address\"},{\"indexed\":false,\"internalType\":\"bool\",\"name\":\"approved\",\"type\":\"bool\"}],\"name\":\"ApprovalForAll\",\"type\":\"event\"},{\"anonymous\":false,\"inputs\":[{\"indexed\":false,\"internalType\":\"uint256\",\"name\":\"id\",\"type\":\"uint256\"},{\"indexed\":false,\"internalType\":\"uint256\",\"name\":\"value\",\"type\":\"uint256\"},{\"indexed\":false,\"internalType\":\"address\",\"name\":\"contractAddress\",\"type\":\"address\"}],\"name\":\"CellUpdate\",\"type\":\"event\"},{\"anonymous\":false,\"inputs\":[{\"indexed\":false,\"internalType\":\"string\",\"name\":\"previousName\",\"type\":\"string\"},{\"indexed\":false,\"internalType\":\"string\",\"name\":\"newName\",\"type\":\"string\"}],\"name\":\"NameUpdate\",\"type\":\"event\"},{\"anonymous\":false,\"inputs\":[{\"indexed\":true,\"internalType\":\"address\",\"name\":\"previousOwner\",\"type\":\"address\"},{\"indexed\":true,\"internalType\":\"address\",\"name\":\"newOwner\",\"type\":\"address\"}],\"name\":\"OwnershipTransferred\",\"type\":\"event\"},{\"anonymous\":false,\"inputs\":[{\"indexed\":false,\"internalType\":\"string\",\"name\":\"previousSymbol\",\"type\":\"string\"},{\"indexed\":false,\"internalType\":\"string\",\"name\":\"newSymbol\",\"type\":\"string\"}],\"name\":\"SymbolUpdate\",\"type\":\"event\"},{\"anonymous\":false,\"inputs\":[{\"indexed\":true,\"internalType\":\"address\",\"name\":\"from\",\"type\":\"address\"},{\"indexed\":true,\"internalType\":\"address\",\"name\":\"to\",\"type\":\"address\"},{\"indexed\":true,\"internalType\":\"uint256\",\"name\":\"id\",\"type\":\"uint256\"}],\"name\":\"Transfer\",\"type\":\"event\"},{\"inputs\":[],\"name\":\"DEFAULT_VALUE\",\"outputs\":[{\"internalType\":\"uint256\",\"name\":\"\",\"type\":\"uint256\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"RC_BOUND\",\"outputs\":[{\"internalType\":\"address\",\"name\":\"\",\"type\":\"address\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"contractAddress\",\"type\":\"address\"}],\"name\":\"_contractAddressIsTokenId\",\"outputs\":[{\"internalType\":\"bool\",\"name\":\"\",\"type\":\"bool\"}],\"stateMutability\":\"pure\",\"type\":\"function\"},{\"inputs\":[{\"components\":[{\"internalType\":\"address\",\"name\":\"contractAddress\",\"type\":\"address\"},{\"internalType\":\"bytes32\",\"name\":\"value\",\"type\":\"bytes32\"},{\"internalType\":\"bytes\",\"name\":\"data\",\"type\":\"bytes\"}],\"internalType\":\"struct CellData\",\"name\":\"cell\",\"type\":\"tuple\"}],\"name\":\"_isConstant\",\"outputs\":[{\"internalType\":\"bool\",\"name\":\"\",\"type\":\"bool\"}],\"stateMutability\":\"pure\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"bytes\",\"name\":\"callData\",\"type\":\"bytes\"}],\"name\":\"_renderCallData\",\"outputs\":[{\"internalType\":\"bytes\",\"name\":\"\",\"type\":\"bytes\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"uint256\",\"name\":\"value\",\"type\":\"uint256\"}],\"name\":\"_renderCell\",\"outputs\":[{\"internalType\":\"bytes\",\"name\":\"\",\"type\":\"bytes\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"components\":[{\"internalType\":\"address\",\"name\":\"contractAddress\",\"type\":\"address\"},{\"internalType\":\"bytes32\",\"name\":\"value\",\"type\":\"bytes32\"},{\"internalType\":\"bytes\",\"name\":\"data\",\"type\":\"bytes\"}],\"internalType\":\"struct CellData\",\"name\":\"cell\",\"type\":\"tuple\"}],\"name\":\"_renderConstantCell\",\"outputs\":[{\"internalType\":\"bytes\",\"name\":\"\",\"type\":\"bytes\"}],\"stateMutability\":\"pure\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"contractAddress\",\"type\":\"address\"}],\"name\":\"_renderContractAddress\",\"outputs\":[{\"internalType\":\"address\",\"name\":\"\",\"type\":\"address\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"bytes32\",\"name\":\"selector\",\"type\":\"bytes32\"}],\"name\":\"_renderSelector\",\"outputs\":[{\"internalType\":\"bytes4\",\"name\":\"\",\"type\":\"bytes4\"}],\"stateMutability\":\"pure\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"uint256\",\"name\":\"value\",\"type\":\"uint256\"}],\"name\":\"_renderValue\",\"outputs\":[{\"internalType\":\"bool\",\"name\":\"\",\"type\":\"bool\"},{\"internalType\":\"uint256\",\"name\":\"\",\"type\":\"uint256\"}],\"stateMutability\":\"pure\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"spender\",\"type\":\"address\"},{\"internalType\":\"uint256\",\"name\":\"id\",\"type\":\"uint256\"}],\"name\":\"approve\",\"outputs\":[],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"owner\",\"type\":\"address\"}],\"name\":\"balanceOf\",\"outputs\":[{\"internalType\":\"uint256\",\"name\":\"\",\"type\":\"uint256\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"bytes\",\"name\":\"callData\",\"type\":\"bytes\"}],\"name\":\"callData2Uint256Array\",\"outputs\":[{\"internalType\":\"uint256[]\",\"name\":\"\",\"type\":\"uint256[]\"}],\"stateMutability\":\"pure\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"uint256\",\"name\":\"\",\"type\":\"uint256\"}],\"name\":\"cells\",\"outputs\":[{\"internalType\":\"address\",\"name\":\"contractAddress\",\"type\":\"address\"},{\"internalType\":\"bytes32\",\"name\":\"value\",\"type\":\"bytes32\"},{\"internalType\":\"bytes\",\"name\":\"data\",\"type\":\"bytes\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"uint256\",\"name\":\"\",\"type\":\"uint256\"}],\"name\":\"getApproved\",\"outputs\":[{\"internalType\":\"address\",\"name\":\"\",\"type\":\"address\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"uint256\",\"name\":\"id\",\"type\":\"uint256\"}],\"name\":\"getCell\",\"outputs\":[{\"internalType\":\"address\",\"name\":\"contractAddress\",\"type\":\"address\"},{\"internalType\":\"bytes32\",\"name\":\"value\",\"type\":\"bytes32\"},{\"internalType\":\"bytes\",\"name\":\"data\",\"type\":\"bytes\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"\",\"type\":\"address\"},{\"internalType\":\"address\",\"name\":\"\",\"type\":\"address\"}],\"name\":\"isApprovedForAll\",\"outputs\":[{\"internalType\":\"bool\",\"name\":\"\",\"type\":\"bool\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"name\",\"outputs\":[{\"internalType\":\"string\",\"name\":\"\",\"type\":\"string\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"owner\",\"outputs\":[{\"internalType\":\"address\",\"name\":\"\",\"type\":\"address\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"uint256\",\"name\":\"id\",\"type\":\"uint256\"}],\"name\":\"ownerOf\",\"outputs\":[{\"internalType\":\"address\",\"name\":\"owner\",\"type\":\"address\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"uint256\",\"name\":\"id\",\"type\":\"uint256\"}],\"name\":\"renderCell\",\"outputs\":[{\"components\":[{\"internalType\":\"uint256\",\"name\":\"id\",\"type\":\"uint256\"},{\"internalType\":\"address\",\"name\":\"owner\",\"type\":\"address\"},{\"internalType\":\"bytes\",\"name\":\"value\",\"type\":\"bytes\"}],\"internalType\":\"struct CellRendered\",\"name\":\"\",\"type\":\"tuple\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"renderer\",\"outputs\":[{\"internalType\":\"address\",\"name\":\"\",\"type\":\"address\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"renounceOwnership\",\"outputs\":[],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"from\",\"type\":\"address\"},{\"internalType\":\"address\",\"name\":\"to\",\"type\":\"address\"},{\"internalType\":\"uint256\",\"name\":\"id\",\"type\":\"uint256\"}],\"name\":\"safeTransferFrom\",\"outputs\":[],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"from\",\"type\":\"address\"},{\"internalType\":\"address\",\"name\":\"to\",\"type\":\"address\"},{\"internalType\":\"uint256\",\"name\":\"id\",\"type\":\"uint256\"},{\"internalType\":\"bytes\",\"name\":\"data\",\"type\":\"bytes\"}],\"name\":\"safeTransferFrom\",\"outputs\":[],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"operator\",\"type\":\"address\"},{\"internalType\":\"bool\",\"name\":\"approved\",\"type\":\"bool\"}],\"name\":\"setApprovalForAll\",\"outputs\":[],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"uint256\",\"name\":\"id\",\"type\":\"uint256\"},{\"internalType\":\"uint160\",\"name\":\"contractAddress\",\"type\":\"uint160\"},{\"internalType\":\"bytes32\",\"name\":\"value\",\"type\":\"bytes32\"},{\"internalType\":\"bytes\",\"name\":\"data\",\"type\":\"bytes\"}],\"name\":\"setCell\",\"outputs\":[],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"string\",\"name\":\"newName\",\"type\":\"string\"}],\"name\":\"setName\",\"outputs\":[],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"newRender\",\"type\":\"address\"}],\"name\":\"setRenderer\",\"outputs\":[],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"string\",\"name\":\"newSymbol\",\"type\":\"string\"}],\"name\":\"setSymbol\",\"outputs\":[],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"bytes4\",\"name\":\"interfaceId\",\"type\":\"bytes4\"}],\"name\":\"supportsInterface\",\"outputs\":[{\"internalType\":\"bool\",\"name\":\"\",\"type\":\"bool\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"symbol\",\"outputs\":[{\"internalType\":\"string\",\"name\":\"\",\"type\":\"string\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"uint256\",\"name\":\"\",\"type\":\"uint256\"}],\"name\":\"tokenByIndex\",\"outputs\":[{\"internalType\":\"uint256\",\"name\":\"\",\"type\":\"uint256\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"uint256\",\"name\":\"id\",\"type\":\"uint256\"}],\"name\":\"tokenURI\",\"outputs\":[{\"internalType\":\"string\",\"name\":\"\",\"type\":\"string\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"totalSupply\",\"outputs\":[{\"internalType\":\"uint256\",\"name\":\"\",\"type\":\"uint256\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"from\",\"type\":\"address\"},{\"internalType\":\"address\",\"name\":\"to\",\"type\":\"address\"},{\"internalType\":\"uint256\",\"name\":\"id\",\"type\":\"uint256\"}],\"name\":\"transferFrom\",\"outputs\":[],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"newOwner\",\"type\":\"address\"}],\"name\":\"transferOwnership\",\"outputs\":[],\"stateMutability\":\"nonpayable\",\"type\":\"function\"}],\"devdoc\":{\"kind\":\"dev\",\"methods\":{\"owner()\":{\"details\":\"Returns the address of the current owner.\"},\"renounceOwnership()\":{\"details\":\"Leaves the contract without owner. It will not be possible to call `onlyOwner` functions anymore. Can only be called by the current owner. NOTE: Renouncing ownership will leave the contract without an owner, thereby removing any functionality that is only available to the owner.\"},\"transferOwnership(address)\":{\"details\":\"Transfers ownership of the contract to a new account (`newOwner`). Can only be called by the current owner.\"}},\"version\":1},\"userdoc\":{\"kind\":\"user\",\"methods\":{},\"version\":1}},\"settings\":{\"compilationTarget\":{\"src/Sheet.sol\":\"Sheet\"},\"evmVersion\":\"paris\",\"libraries\":{},\"metadata\":{\"bytecodeHash\":\"ipfs\"},\"optimizer\":{\"enabled\":true,\"runs\":200},\"remappings\":[\":@clemlaflemme/=lib/eth-projects-monorepo/packages/eth-projects-contracts/contracts/\",\":ds-test/=lib/forge-std/lib/ds-test/src/\",\":eth-projects-monorepo/=lib/eth-projects-monorepo/\",\":forge-std/=lib/forge-std/src/\",\":openzeppelin-contracts/=lib/openzeppelin-contracts/\",\":openzeppelin/=lib/openzeppelin-contracts/contracts/\",\":renderers/=lib/eth-projects-monorepo/packages/eth-projects-contracts/contracts/lib/renderers/\",\":safe-contracts/=lib/safe-contracts/contracts/\",\":solmate/=lib/solmate/src/\",\":utils/=lib/eth-projects-monorepo/packages/eth-projects-contracts/contracts/lib/utils/\"]},\"sources\":{\"lib/eth-projects-monorepo/packages/eth-projects-contracts/contracts/lib/utils/Bytes.sol\":{\"keccak256\":\"0xd894eac2f223760da25e079d125b4c0de282a6d609a1e8a1834f5dc1c02550d5\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://2c305f8b0dc8b57df9e5b06e51e3e6ed374c2e655cc5edf7b9a7e0d86eb629a0\",\"dweb:/ipfs/QmXi9SmrcYfqSVGVP4WMtYQmBMhGVm8xdLus54YojtaNBi\"]},\"lib/openzeppelin-contracts/contracts/access/Ownable.sol\":{\"keccak256\":\"0xa94b34880e3c1b0b931662cb1c09e5dfa6662f31cba80e07c5ee71cd135c9673\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://40fb1b5102468f783961d0af743f91b9980cf66b50d1d12009f6bb1869cea4d2\",\"dweb:/ipfs/QmYqEbJML4jB1GHbzD4cUZDtJg5wVwNm3vDJq1GbyDus8y\"]},\"lib/openzeppelin-contracts/contracts/utils/Context.sol\":{\"keccak256\":\"0xe2e337e6dde9ef6b680e07338c493ebea1b5fd09b43424112868e9cc1706bca7\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://6df0ddf21ce9f58271bdfaa85cde98b200ef242a05a3f85c2bc10a8294800a92\",\"dweb:/ipfs/QmRK2Y5Yc6BK7tGKkgsgn3aJEQGi5aakeSPZvS65PV8Xp3\"]},\"lib/solmate/src/tokens/ERC721.sol\":{\"keccak256\":\"0x04af19f16f00ba65ae168d6d10da5210dc18da6bcec6974dccf984ba388aa22d\",\"license\":\"AGPL-3.0-only\",\"urls\":[\"bzz-raw://098e69f22b67da6927e03203c12ebfda5b0490518f6d9cce7853001ac5ad8403\",\"dweb:/ipfs/QmYyzfurQe88PsVjRNfutV3gS7Vi68f7zgtVZVtLfd4ViK\"]},\"src/Interfaces.sol\":{\"keccak256\":\"0x6e20e29459d96085394767369237fb5a02d7cf6e22b930debedf47325c39c707\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://04351e9c841b435cb1e20bf4dd3ccab087dad3d4ba5a57908c8f674181e19cb5\",\"dweb:/ipfs/QmY8oxNAeMrP3mf7yNHvdz5JgafffP4yN8jnxWHEHoo6Sx\"]},\"src/Sheet.sol\":{\"keccak256\":\"0xdcf71eec34ef84cb2838babe8242dc9628a477d467dfb746e975ff40c168315e\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://1f54dd464e26c05289d0a14b6f3e3d3f6583f2a1bb1be1ddb5535fbc8061057a\",\"dweb:/ipfs/QmXaK6msxofR8mcJK6i9v5xHT75D9nAtnU5Ks5QSWzYG2G\"]}},\"version\":1}", "metadata": { "compiler": { - "version": "0.8.17+commit.8df45f5f" + "version": "0.8.21+commit.d9974bed" }, "language": "Solidity", "output": { @@ -1927,16 +1927,16 @@ }, "settings": { "remappings": [ - ":@clemlaflemme/=lib/eth-projects-monorepo/packages/eth-projects-contracts/contracts/", - ":ds-test/=lib/forge-std/lib/ds-test/src/", - ":eth-projects-monorepo/=lib/eth-projects-monorepo/", - ":forge-std/=lib/forge-std/src/", - ":openzeppelin-contracts/=lib/openzeppelin-contracts/", - ":openzeppelin/=lib/openzeppelin-contracts/contracts/", - ":renderers/=lib/eth-projects-monorepo/packages/eth-projects-contracts/contracts/lib/renderers/", - ":safe-contracts/=lib/safe-contracts/contracts/", - ":solmate/=lib/solmate/src/", - ":utils/=lib/eth-projects-monorepo/packages/eth-projects-contracts/contracts/lib/utils/" + "@clemlaflemme/=lib/eth-projects-monorepo/packages/eth-projects-contracts/contracts/", + "ds-test/=lib/forge-std/lib/ds-test/src/", + "eth-projects-monorepo/=lib/eth-projects-monorepo/", + "forge-std/=lib/forge-std/src/", + "openzeppelin-contracts/=lib/openzeppelin-contracts/", + "openzeppelin/=lib/openzeppelin-contracts/contracts/", + "renderers/=lib/eth-projects-monorepo/packages/eth-projects-contracts/contracts/lib/renderers/", + "safe-contracts/=lib/safe-contracts/contracts/", + "solmate/=lib/solmate/src/", + "utils/=lib/eth-projects-monorepo/packages/eth-projects-contracts/contracts/lib/utils/" ], "optimizer": { "enabled": true, @@ -2004,16 +2004,16 @@ }, "ast": { "absolutePath": "src/Sheet.sol", - "id": 32046, + "id": 32075, "exportedSymbols": { "Bytes": [ 762 ], "CellData": [ - 31465 + 31494 ], "CellRendered": [ - 31472 + 31501 ], "Context": [ 29323 @@ -2025,29 +2025,29 @@ 30939 ], "ICellRenderer": [ - 31315 + 31344 ], "ISheet": [ - 31351 + 31380 ], "NonExistantTokenError": [ - 31482 + 31511 ], "Ownable": [ 29301 ], "SetCellIsNotOwnerError": [ - 31478 + 31507 ], "Sheet": [ - 32045 + 32074 ] }, "nodeType": "SourceUnit", "src": "32:5827:31", "nodes": [ { - "id": 31454, + "id": 31483, "nodeType": "PragmaDirective", "src": "32:24:31", "nodes": [], @@ -2059,59 +2059,59 @@ ] }, { - "id": 31455, + "id": 31484, "nodeType": "ImportDirective", "src": "58:35:31", "nodes": [], "absolutePath": "lib/solmate/src/tokens/ERC721.sol", "file": "solmate/tokens/ERC721.sol", "nameLocation": "-1:-1:-1", - "scope": 32046, + "scope": 32075, "sourceUnit": 30940, "symbolAliases": [], "unitAlias": "" }, { - "id": 31456, + "id": 31485, "nodeType": "ImportDirective", "src": "94:41:31", "nodes": [], "absolutePath": "lib/openzeppelin-contracts/contracts/access/Ownable.sol", "file": "openzeppelin/access/Ownable.sol", "nameLocation": "-1:-1:-1", - "scope": 32046, + "scope": 32075, "sourceUnit": 29302, "symbolAliases": [], "unitAlias": "" }, { - "id": 31457, + "id": 31486, "nodeType": "ImportDirective", "src": "136:26:31", "nodes": [], "absolutePath": "src/Interfaces.sol", "file": "./Interfaces.sol", "nameLocation": "-1:-1:-1", - "scope": 32046, - "sourceUnit": 31352, + "scope": 32075, + "sourceUnit": 31381, "symbolAliases": [], "unitAlias": "" }, { - "id": 31458, + "id": 31487, "nodeType": "ImportDirective", "src": "163:43:31", "nodes": [], "absolutePath": "lib/eth-projects-monorepo/packages/eth-projects-contracts/contracts/lib/utils/Bytes.sol", "file": "@clemlaflemme/lib/utils/Bytes.sol", "nameLocation": "-1:-1:-1", - "scope": 32046, + "scope": 32075, "sourceUnit": 763, "symbolAliases": [], "unitAlias": "" }, { - "id": 31465, + "id": 31494, "nodeType": "StructDefinition", "src": "208:83:31", "nodes": [], @@ -2119,12 +2119,12 @@ "members": [ { "constant": false, - "id": 31460, + "id": 31489, "mutability": "mutable", "name": "contractAddress", "nameLocation": "238:15:31", "nodeType": "VariableDeclaration", - "scope": 31465, + "scope": 31494, "src": "230:23:31", "stateVariable": false, "storageLocation": "default", @@ -2133,7 +2133,7 @@ "typeString": "address" }, "typeName": { - "id": 31459, + "id": 31488, "name": "address", "nodeType": "ElementaryTypeName", "src": "230:7:31", @@ -2147,12 +2147,12 @@ }, { "constant": false, - "id": 31462, + "id": 31491, "mutability": "mutable", "name": "value", "nameLocation": "267:5:31", "nodeType": "VariableDeclaration", - "scope": 31465, + "scope": 31494, "src": "259:13:31", "stateVariable": false, "storageLocation": "default", @@ -2161,7 +2161,7 @@ "typeString": "bytes32" }, "typeName": { - "id": 31461, + "id": 31490, "name": "bytes32", "nodeType": "ElementaryTypeName", "src": "259:7:31", @@ -2174,12 +2174,12 @@ }, { "constant": false, - "id": 31464, + "id": 31493, "mutability": "mutable", "name": "data", "nameLocation": "284:4:31", "nodeType": "VariableDeclaration", - "scope": 31465, + "scope": 31494, "src": "278:10:31", "stateVariable": false, "storageLocation": "default", @@ -2188,7 +2188,7 @@ "typeString": "bytes" }, "typeName": { - "id": 31463, + "id": 31492, "name": "bytes", "nodeType": "ElementaryTypeName", "src": "278:5:31", @@ -2202,11 +2202,11 @@ ], "name": "CellData", "nameLocation": "215:8:31", - "scope": 32046, + "scope": 32075, "visibility": "public" }, { - "id": 31472, + "id": 31501, "nodeType": "StructDefinition", "src": "293:75:31", "nodes": [], @@ -2214,12 +2214,12 @@ "members": [ { "constant": false, - "id": 31467, + "id": 31496, "mutability": "mutable", "name": "id", "nameLocation": "327:2:31", "nodeType": "VariableDeclaration", - "scope": 31472, + "scope": 31501, "src": "319:10:31", "stateVariable": false, "storageLocation": "default", @@ -2228,7 +2228,7 @@ "typeString": "uint256" }, "typeName": { - "id": 31466, + "id": 31495, "name": "uint256", "nodeType": "ElementaryTypeName", "src": "319:7:31", @@ -2241,12 +2241,12 @@ }, { "constant": false, - "id": 31469, + "id": 31498, "mutability": "mutable", "name": "owner", "nameLocation": "343:5:31", "nodeType": "VariableDeclaration", - "scope": 31472, + "scope": 31501, "src": "335:13:31", "stateVariable": false, "storageLocation": "default", @@ -2255,7 +2255,7 @@ "typeString": "address" }, "typeName": { - "id": 31468, + "id": 31497, "name": "address", "nodeType": "ElementaryTypeName", "src": "335:7:31", @@ -2269,12 +2269,12 @@ }, { "constant": false, - "id": 31471, + "id": 31500, "mutability": "mutable", "name": "value", "nameLocation": "360:5:31", "nodeType": "VariableDeclaration", - "scope": 31472, + "scope": 31501, "src": "354:11:31", "stateVariable": false, "storageLocation": "default", @@ -2283,7 +2283,7 @@ "typeString": "bytes" }, "typeName": { - "id": 31470, + "id": 31499, "name": "bytes", "nodeType": "ElementaryTypeName", "src": "354:5:31", @@ -2297,11 +2297,11 @@ ], "name": "CellRendered", "nameLocation": "300:12:31", - "scope": 32046, + "scope": 32075, "visibility": "public" }, { - "id": 31478, + "id": 31507, "nodeType": "ErrorDefinition", "src": "370:60:31", "nodes": [], @@ -2309,17 +2309,17 @@ "name": "SetCellIsNotOwnerError", "nameLocation": "376:22:31", "parameters": { - "id": 31477, + "id": 31506, "nodeType": "ParameterList", "parameters": [ { "constant": false, - "id": 31474, + "id": 31503, "mutability": "mutable", "name": "owner", "nameLocation": "407:5:31", "nodeType": "VariableDeclaration", - "scope": 31478, + "scope": 31507, "src": "399:13:31", "stateVariable": false, "storageLocation": "default", @@ -2328,7 +2328,7 @@ "typeString": "address" }, "typeName": { - "id": 31473, + "id": 31502, "name": "address", "nodeType": "ElementaryTypeName", "src": "399:7:31", @@ -2342,12 +2342,12 @@ }, { "constant": false, - "id": 31476, + "id": 31505, "mutability": "mutable", "name": "caller", "nameLocation": "422:6:31", "nodeType": "VariableDeclaration", - "scope": 31478, + "scope": 31507, "src": "414:14:31", "stateVariable": false, "storageLocation": "default", @@ -2356,7 +2356,7 @@ "typeString": "address" }, "typeName": { - "id": 31475, + "id": 31504, "name": "address", "nodeType": "ElementaryTypeName", "src": "414:7:31", @@ -2373,7 +2373,7 @@ } }, { - "id": 31482, + "id": 31511, "nodeType": "ErrorDefinition", "src": "431:40:31", "nodes": [], @@ -2381,17 +2381,17 @@ "name": "NonExistantTokenError", "nameLocation": "437:21:31", "parameters": { - "id": 31481, + "id": 31510, "nodeType": "ParameterList", "parameters": [ { "constant": false, - "id": 31480, + "id": 31509, "mutability": "mutable", "name": "id", "nameLocation": "467:2:31", "nodeType": "VariableDeclaration", - "scope": 31482, + "scope": 31511, "src": "459:10:31", "stateVariable": false, "storageLocation": "default", @@ -2400,7 +2400,7 @@ "typeString": "uint256" }, "typeName": { - "id": 31479, + "id": 31508, "name": "uint256", "nodeType": "ElementaryTypeName", "src": "459:7:31", @@ -2416,12 +2416,12 @@ } }, { - "id": 32045, + "id": 32074, "nodeType": "ContractDefinition", "src": "473:5385:31", "nodes": [ { - "id": 31494, + "id": 31523, "nodeType": "EventDefinition", "src": "513:69:31", "nodes": [], @@ -2430,18 +2430,18 @@ "name": "CellUpdate", "nameLocation": "519:10:31", "parameters": { - "id": 31493, + "id": 31522, "nodeType": "ParameterList", "parameters": [ { "constant": false, - "id": 31488, + "id": 31517, "indexed": false, "mutability": "mutable", "name": "id", "nameLocation": "538:2:31", "nodeType": "VariableDeclaration", - "scope": 31494, + "scope": 31523, "src": "530:10:31", "stateVariable": false, "storageLocation": "default", @@ -2450,7 +2450,7 @@ "typeString": "uint256" }, "typeName": { - "id": 31487, + "id": 31516, "name": "uint256", "nodeType": "ElementaryTypeName", "src": "530:7:31", @@ -2463,13 +2463,13 @@ }, { "constant": false, - "id": 31490, + "id": 31519, "indexed": false, "mutability": "mutable", "name": "value", "nameLocation": "550:5:31", "nodeType": "VariableDeclaration", - "scope": 31494, + "scope": 31523, "src": "542:13:31", "stateVariable": false, "storageLocation": "default", @@ -2478,7 +2478,7 @@ "typeString": "uint256" }, "typeName": { - "id": 31489, + "id": 31518, "name": "uint256", "nodeType": "ElementaryTypeName", "src": "542:7:31", @@ -2491,13 +2491,13 @@ }, { "constant": false, - "id": 31492, + "id": 31521, "indexed": false, "mutability": "mutable", "name": "contractAddress", "nameLocation": "565:15:31", "nodeType": "VariableDeclaration", - "scope": 31494, + "scope": 31523, "src": "557:23:31", "stateVariable": false, "storageLocation": "default", @@ -2506,7 +2506,7 @@ "typeString": "address" }, "typeName": { - "id": 31491, + "id": 31520, "name": "address", "nodeType": "ElementaryTypeName", "src": "557:7:31", @@ -2523,7 +2523,7 @@ } }, { - "id": 31500, + "id": 31529, "nodeType": "EventDefinition", "src": "587:54:31", "nodes": [], @@ -2532,18 +2532,18 @@ "name": "NameUpdate", "nameLocation": "593:10:31", "parameters": { - "id": 31499, + "id": 31528, "nodeType": "ParameterList", "parameters": [ { "constant": false, - "id": 31496, + "id": 31525, "indexed": false, "mutability": "mutable", "name": "previousName", "nameLocation": "611:12:31", "nodeType": "VariableDeclaration", - "scope": 31500, + "scope": 31529, "src": "604:19:31", "stateVariable": false, "storageLocation": "default", @@ -2552,7 +2552,7 @@ "typeString": "string" }, "typeName": { - "id": 31495, + "id": 31524, "name": "string", "nodeType": "ElementaryTypeName", "src": "604:6:31", @@ -2565,13 +2565,13 @@ }, { "constant": false, - "id": 31498, + "id": 31527, "indexed": false, "mutability": "mutable", "name": "newName", "nameLocation": "632:7:31", "nodeType": "VariableDeclaration", - "scope": 31500, + "scope": 31529, "src": "625:14:31", "stateVariable": false, "storageLocation": "default", @@ -2580,7 +2580,7 @@ "typeString": "string" }, "typeName": { - "id": 31497, + "id": 31526, "name": "string", "nodeType": "ElementaryTypeName", "src": "625:6:31", @@ -2596,7 +2596,7 @@ } }, { - "id": 31506, + "id": 31535, "nodeType": "EventDefinition", "src": "646:60:31", "nodes": [], @@ -2605,18 +2605,18 @@ "name": "SymbolUpdate", "nameLocation": "652:12:31", "parameters": { - "id": 31505, + "id": 31534, "nodeType": "ParameterList", "parameters": [ { "constant": false, - "id": 31502, + "id": 31531, "indexed": false, "mutability": "mutable", "name": "previousSymbol", "nameLocation": "672:14:31", "nodeType": "VariableDeclaration", - "scope": 31506, + "scope": 31535, "src": "665:21:31", "stateVariable": false, "storageLocation": "default", @@ -2625,7 +2625,7 @@ "typeString": "string" }, "typeName": { - "id": 31501, + "id": 31530, "name": "string", "nodeType": "ElementaryTypeName", "src": "665:6:31", @@ -2638,13 +2638,13 @@ }, { "constant": false, - "id": 31504, + "id": 31533, "indexed": false, "mutability": "mutable", "name": "newSymbol", "nameLocation": "695:9:31", "nodeType": "VariableDeclaration", - "scope": 31506, + "scope": 31535, "src": "688:16:31", "stateVariable": false, "storageLocation": "default", @@ -2653,7 +2653,7 @@ "typeString": "string" }, "typeName": { - "id": 31503, + "id": 31532, "name": "string", "nodeType": "ElementaryTypeName", "src": "688:6:31", @@ -2669,13 +2669,13 @@ } }, { - "id": 31509, + "id": 31538, "nodeType": "UsingForDirective", "src": "712:22:31", "nodes": [], "global": false, "libraryName": { - "id": 31507, + "id": 31536, "name": "Bytes", "nameLocations": [ "718:5:31" @@ -2685,7 +2685,7 @@ "src": "718:5:31" }, "typeName": { - "id": 31508, + "id": 31537, "name": "bytes", "nodeType": "ElementaryTypeName", "src": "728:5:31", @@ -2696,7 +2696,7 @@ } }, { - "id": 31516, + "id": 31545, "nodeType": "VariableDeclaration", "src": "740:52:31", "nodes": [], @@ -2705,7 +2705,7 @@ "mutability": "constant", "name": "DEFAULT_VALUE", "nameLocation": "764:13:31", - "scope": 32045, + "scope": 32074, "stateVariable": true, "storageLocation": "default", "typeDescriptions": { @@ -2713,7 +2713,7 @@ "typeString": "uint256" }, "typeName": { - "id": 31510, + "id": 31539, "name": "uint256", "nodeType": "ElementaryTypeName", "src": "740:7:31", @@ -2727,7 +2727,7 @@ "typeIdentifier": "t_rational_340282366920938463463374607431768211455_by_1", "typeString": "int_const 3402...(31 digits omitted)...1455" }, - "id": 31515, + "id": 31544, "isConstant": false, "isLValue": false, "isPure": true, @@ -2737,14 +2737,14 @@ "typeIdentifier": "t_rational_340282366920938463463374607431768211456_by_1", "typeString": "int_const 3402...(31 digits omitted)...1456" }, - "id": 31513, + "id": 31542, "isConstant": false, "isLValue": false, "isPure": true, "lValueRequested": false, "leftExpression": { "hexValue": "32", - "id": 31511, + "id": 31540, "isConstant": false, "isLValue": false, "isPure": true, @@ -2762,7 +2762,7 @@ "operator": "**", "rightExpression": { "hexValue": "313238", - "id": 31512, + "id": 31541, "isConstant": false, "isLValue": false, "isPure": true, @@ -2786,7 +2786,7 @@ "operator": "-", "rightExpression": { "hexValue": "31", - "id": 31514, + "id": 31543, "isConstant": false, "isLValue": false, "isPure": true, @@ -2809,7 +2809,7 @@ "visibility": "public" }, { - "id": 31524, + "id": 31553, "nodeType": "VariableDeclaration", "src": "798:52:31", "nodes": [], @@ -2818,7 +2818,7 @@ "mutability": "constant", "name": "RC_BOUND", "nameLocation": "822:8:31", - "scope": 32045, + "scope": 32074, "stateVariable": true, "storageLocation": "default", "typeDescriptions": { @@ -2826,7 +2826,7 @@ "typeString": "address" }, "typeName": { - "id": 31517, + "id": 31546, "name": "address", "nodeType": "ElementaryTypeName", "src": "798:7:31", @@ -2843,14 +2843,14 @@ "typeIdentifier": "t_rational_340282366920938463463374607431768211456_by_1", "typeString": "int_const 3402...(31 digits omitted)...1456" }, - "id": 31522, + "id": 31551, "isConstant": false, "isLValue": false, "isPure": true, "lValueRequested": false, "leftExpression": { "hexValue": "32", - "id": 31520, + "id": 31549, "isConstant": false, "isLValue": false, "isPure": true, @@ -2868,7 +2868,7 @@ "operator": "**", "rightExpression": { "hexValue": "313238", - "id": 31521, + "id": 31550, "isConstant": false, "isLValue": false, "isPure": true, @@ -2896,7 +2896,7 @@ "typeString": "int_const 3402...(31 digits omitted)...1456" } ], - "id": 31519, + "id": 31548, "isConstant": false, "isLValue": false, "isPure": true, @@ -2908,14 +2908,14 @@ "typeString": "type(address)" }, "typeName": { - "id": 31518, + "id": 31547, "name": "address", "nodeType": "ElementaryTypeName", "src": "833:7:31", "typeDescriptions": {} } }, - "id": 31523, + "id": 31552, "isConstant": false, "isLValue": false, "isPure": true, @@ -2934,7 +2934,7 @@ "visibility": "public" }, { - "id": 31527, + "id": 31556, "nodeType": "VariableDeclaration", "src": "856:40:31", "nodes": [], @@ -2942,7 +2942,7 @@ "mutability": "constant", "name": "_SHOULD_RENDER_FLAG", "nameLocation": "873:19:31", - "scope": 32045, + "scope": 32074, "stateVariable": true, "storageLocation": "default", "typeDescriptions": { @@ -2950,7 +2950,7 @@ "typeString": "uint256" }, "typeName": { - "id": 31525, + "id": 31554, "name": "uint256", "nodeType": "ElementaryTypeName", "src": "856:7:31", @@ -2961,7 +2961,7 @@ }, "value": { "hexValue": "32", - "id": 31526, + "id": 31555, "isConstant": false, "isLValue": false, "isPure": true, @@ -2978,7 +2978,7 @@ "visibility": "internal" }, { - "id": 31529, + "id": 31558, "nodeType": "VariableDeclaration", "src": "902:26:31", "nodes": [], @@ -2987,7 +2987,7 @@ "mutability": "mutable", "name": "totalSupply", "nameLocation": "917:11:31", - "scope": 32045, + "scope": 32074, "stateVariable": true, "storageLocation": "default", "typeDescriptions": { @@ -2995,7 +2995,7 @@ "typeString": "uint256" }, "typeName": { - "id": 31528, + "id": 31557, "name": "uint256", "nodeType": "ElementaryTypeName", "src": "902:7:31", @@ -3007,7 +3007,7 @@ "visibility": "public" }, { - "id": 31533, + "id": 31562, "nodeType": "VariableDeclaration", "src": "934:47:31", "nodes": [], @@ -3016,7 +3016,7 @@ "mutability": "mutable", "name": "tokenByIndex", "nameLocation": "969:12:31", - "scope": 32045, + "scope": 32074, "stateVariable": true, "storageLocation": "default", "typeDescriptions": { @@ -3024,9 +3024,11 @@ "typeString": "mapping(uint256 => uint256)" }, "typeName": { - "id": 31532, + "id": 31561, + "keyName": "", + "keyNameLocation": "-1:-1:-1", "keyType": { - "id": 31530, + "id": 31559, "name": "uint256", "nodeType": "ElementaryTypeName", "src": "942:7:31", @@ -3041,8 +3043,10 @@ "typeIdentifier": "t_mapping$_t_uint256_$_t_uint256_$", "typeString": "mapping(uint256 => uint256)" }, + "valueName": "", + "valueNameLocation": "-1:-1:-1", "valueType": { - "id": 31531, + "id": 31560, "name": "uint256", "nodeType": "ElementaryTypeName", "src": "953:7:31", @@ -3055,7 +3059,7 @@ "visibility": "public" }, { - "id": 31535, + "id": 31564, "nodeType": "VariableDeclaration", "src": "988:23:31", "nodes": [], @@ -3064,7 +3068,7 @@ "mutability": "mutable", "name": "renderer", "nameLocation": "1003:8:31", - "scope": 32045, + "scope": 32074, "stateVariable": true, "storageLocation": "default", "typeDescriptions": { @@ -3072,7 +3076,7 @@ "typeString": "address" }, "typeName": { - "id": 31534, + "id": 31563, "name": "address", "nodeType": "ElementaryTypeName", "src": "988:7:31", @@ -3085,7 +3089,7 @@ "visibility": "public" }, { - "id": 31540, + "id": 31569, "nodeType": "VariableDeclaration", "src": "1018:41:31", "nodes": [], @@ -3094,17 +3098,19 @@ "mutability": "mutable", "name": "cells", "nameLocation": "1054:5:31", - "scope": 32045, + "scope": 32074, "stateVariable": true, "storageLocation": "default", "typeDescriptions": { - "typeIdentifier": "t_mapping$_t_uint256_$_t_struct$_CellData_$31465_storage_$", + "typeIdentifier": "t_mapping$_t_uint256_$_t_struct$_CellData_$31494_storage_$", "typeString": "mapping(uint256 => struct CellData)" }, "typeName": { - "id": 31539, + "id": 31568, + "keyName": "", + "keyNameLocation": "-1:-1:-1", "keyType": { - "id": 31536, + "id": 31565, "name": "uint256", "nodeType": "ElementaryTypeName", "src": "1026:7:31", @@ -3116,26 +3122,28 @@ "nodeType": "Mapping", "src": "1018:28:31", "typeDescriptions": { - "typeIdentifier": "t_mapping$_t_uint256_$_t_struct$_CellData_$31465_storage_$", + "typeIdentifier": "t_mapping$_t_uint256_$_t_struct$_CellData_$31494_storage_$", "typeString": "mapping(uint256 => struct CellData)" }, + "valueName": "", + "valueNameLocation": "-1:-1:-1", "valueType": { - "id": 31538, + "id": 31567, "nodeType": "UserDefinedTypeName", "pathNode": { - "id": 31537, + "id": 31566, "name": "CellData", "nameLocations": [ "1037:8:31" ], "nodeType": "IdentifierPath", - "referencedDeclaration": 31465, + "referencedDeclaration": 31494, "src": "1037:8:31" }, - "referencedDeclaration": 31465, + "referencedDeclaration": 31494, "src": "1037:8:31", "typeDescriptions": { - "typeIdentifier": "t_struct$_CellData_$31465_storage_ptr", + "typeIdentifier": "t_struct$_CellData_$31494_storage_ptr", "typeString": "struct CellData" } } @@ -3143,12 +3151,12 @@ "visibility": "public" }, { - "id": 31608, + "id": 31637, "nodeType": "FunctionDefinition", "src": "1066:482:31", "nodes": [], "body": { - "id": 31607, + "id": 31636, "nodeType": "Block", "src": "1163:385:31", "nodes": [], @@ -3159,14 +3167,14 @@ "typeIdentifier": "t_address", "typeString": "address" }, - "id": 31558, + "id": 31587, "isConstant": false, "isLValue": false, "isPure": false, "lValueRequested": false, "leftExpression": { "baseExpression": { - "id": 31551, + "id": 31580, "name": "_ownerOf", "nodeType": "Identifier", "overloadedDeclarations": [], @@ -3177,13 +3185,13 @@ "typeString": "mapping(uint256 => address)" } }, - "id": 31553, + "id": 31582, "indexExpression": { - "id": 31552, + "id": 31581, "name": "id", "nodeType": "Identifier", "overloadedDeclarations": [], - "referencedDeclaration": 31542, + "referencedDeclaration": 31571, "src": "1186:2:31", "typeDescriptions": { "typeIdentifier": "t_uint256", @@ -3207,7 +3215,7 @@ "arguments": [ { "hexValue": "30", - "id": 31556, + "id": 31585, "isConstant": false, "isLValue": false, "isPure": true, @@ -3229,7 +3237,7 @@ "typeString": "int_const 0" } ], - "id": 31555, + "id": 31584, "isConstant": false, "isLValue": false, "isPure": true, @@ -3241,14 +3249,14 @@ "typeString": "type(address)" }, "typeName": { - "id": 31554, + "id": 31583, "name": "address", "nodeType": "ElementaryTypeName", "src": "1193:7:31", "typeDescriptions": {} } }, - "id": 31557, + "id": 31586, "isConstant": false, "isLValue": false, "isPure": true, @@ -3271,7 +3279,7 @@ } }, "falseBody": { - "id": 31592, + "id": 31621, "nodeType": "Block", "src": "1330:142:31", "statements": [ @@ -3281,14 +3289,14 @@ "typeIdentifier": "t_address", "typeString": "address" }, - "id": 31581, + "id": 31610, "isConstant": false, "isLValue": false, "isPure": false, "lValueRequested": false, "leftExpression": { "baseExpression": { - "id": 31576, + "id": 31605, "name": "_ownerOf", "nodeType": "Identifier", "overloadedDeclarations": [], @@ -3299,13 +3307,13 @@ "typeString": "mapping(uint256 => address)" } }, - "id": 31578, + "id": 31607, "indexExpression": { - "id": 31577, + "id": 31606, "name": "id", "nodeType": "Identifier", "overloadedDeclarations": [], - "referencedDeclaration": 31542, + "referencedDeclaration": 31571, "src": "1357:2:31", "typeDescriptions": { "typeIdentifier": "t_uint256", @@ -3327,7 +3335,7 @@ "operator": "!=", "rightExpression": { "expression": { - "id": 31579, + "id": 31608, "name": "tx", "nodeType": "Identifier", "overloadedDeclarations": [], @@ -3338,7 +3346,7 @@ "typeString": "tx" } }, - "id": 31580, + "id": 31609, "isConstant": false, "isLValue": false, "isPure": false, @@ -3358,11 +3366,11 @@ "typeString": "bool" } }, - "id": 31591, + "id": 31620, "nodeType": "IfStatement", "src": "1344:118:31", "trueBody": { - "id": 31590, + "id": 31619, "nodeType": "Block", "src": "1375:87:31", "statements": [ @@ -3371,7 +3379,7 @@ "arguments": [ { "baseExpression": { - "id": 31583, + "id": 31612, "name": "_ownerOf", "nodeType": "Identifier", "overloadedDeclarations": [], @@ -3382,13 +3390,13 @@ "typeString": "mapping(uint256 => address)" } }, - "id": 31585, + "id": 31614, "indexExpression": { - "id": 31584, + "id": 31613, "name": "id", "nodeType": "Identifier", "overloadedDeclarations": [], - "referencedDeclaration": 31542, + "referencedDeclaration": 31571, "src": "1432:2:31", "typeDescriptions": { "typeIdentifier": "t_uint256", @@ -3408,7 +3416,7 @@ }, { "expression": { - "id": 31586, + "id": 31615, "name": "tx", "nodeType": "Identifier", "overloadedDeclarations": [], @@ -3419,7 +3427,7 @@ "typeString": "tx" } }, - "id": 31587, + "id": 31616, "isConstant": false, "isLValue": false, "isPure": false, @@ -3445,18 +3453,18 @@ "typeString": "address" } ], - "id": 31582, + "id": 31611, "name": "SetCellIsNotOwnerError", "nodeType": "Identifier", "overloadedDeclarations": [], - "referencedDeclaration": 31478, + "referencedDeclaration": 31507, "src": "1400:22:31", "typeDescriptions": { "typeIdentifier": "t_function_error_pure$_t_address_$_t_address_$returns$__$", "typeString": "function (address,address) pure" } }, - "id": 31588, + "id": 31617, "isConstant": false, "isLValue": false, "isPure": false, @@ -3472,7 +3480,7 @@ "typeString": "tuple()" } }, - "id": 31589, + "id": 31618, "nodeType": "RevertStatement", "src": "1393:54:31" } @@ -3481,11 +3489,11 @@ } ] }, - "id": 31593, + "id": 31622, "nodeType": "IfStatement", "src": "1173:299:31", "trueBody": { - "id": 31575, + "id": 31604, "nodeType": "Block", "src": "1205:119:31", "statements": [ @@ -3494,7 +3502,7 @@ "arguments": [ { "expression": { - "id": 31560, + "id": 31589, "name": "tx", "nodeType": "Identifier", "overloadedDeclarations": [], @@ -3505,7 +3513,7 @@ "typeString": "tx" } }, - "id": 31561, + "id": 31590, "isConstant": false, "isLValue": false, "isPure": false, @@ -3520,11 +3528,11 @@ } }, { - "id": 31562, + "id": 31591, "name": "id", "nodeType": "Identifier", "overloadedDeclarations": [], - "referencedDeclaration": 31542, + "referencedDeclaration": 31571, "src": "1236:2:31", "typeDescriptions": { "typeIdentifier": "t_uint256", @@ -3543,7 +3551,7 @@ "typeString": "uint256" } ], - "id": 31559, + "id": 31588, "name": "_mint", "nodeType": "Identifier", "overloadedDeclarations": [], @@ -3554,7 +3562,7 @@ "typeString": "function (address,uint256)" } }, - "id": 31563, + "id": 31592, "isConstant": false, "isLValue": false, "isPure": false, @@ -3570,37 +3578,37 @@ "typeString": "tuple()" } }, - "id": 31564, + "id": 31593, "nodeType": "ExpressionStatement", "src": "1219:20:31" }, { "expression": { - "id": 31569, + "id": 31598, "isConstant": false, "isLValue": false, "isPure": false, "lValueRequested": false, "leftHandSide": { "baseExpression": { - "id": 31565, + "id": 31594, "name": "tokenByIndex", "nodeType": "Identifier", "overloadedDeclarations": [], - "referencedDeclaration": 31533, + "referencedDeclaration": 31562, "src": "1253:12:31", "typeDescriptions": { "typeIdentifier": "t_mapping$_t_uint256_$_t_uint256_$", "typeString": "mapping(uint256 => uint256)" } }, - "id": 31567, + "id": 31596, "indexExpression": { - "id": 31566, + "id": 31595, "name": "totalSupply", "nodeType": "Identifier", "overloadedDeclarations": [], - "referencedDeclaration": 31529, + "referencedDeclaration": 31558, "src": "1266:11:31", "typeDescriptions": { "typeIdentifier": "t_uint256", @@ -3621,11 +3629,11 @@ "nodeType": "Assignment", "operator": "=", "rightHandSide": { - "id": 31568, + "id": 31597, "name": "id", "nodeType": "Identifier", "overloadedDeclarations": [], - "referencedDeclaration": 31542, + "referencedDeclaration": 31571, "src": "1281:2:31", "typeDescriptions": { "typeIdentifier": "t_uint256", @@ -3638,23 +3646,23 @@ "typeString": "uint256" } }, - "id": 31570, + "id": 31599, "nodeType": "ExpressionStatement", "src": "1253:30:31" }, { "expression": { - "id": 31573, + "id": 31602, "isConstant": false, "isLValue": false, "isPure": false, "lValueRequested": false, "leftHandSide": { - "id": 31571, + "id": 31600, "name": "totalSupply", "nodeType": "Identifier", "overloadedDeclarations": [], - "referencedDeclaration": 31529, + "referencedDeclaration": 31558, "src": "1297:11:31", "typeDescriptions": { "typeIdentifier": "t_uint256", @@ -3665,7 +3673,7 @@ "operator": "+=", "rightHandSide": { "hexValue": "31", - "id": 31572, + "id": 31601, "isConstant": false, "isLValue": false, "isPure": true, @@ -3685,7 +3693,7 @@ "typeString": "uint256" } }, - "id": 31574, + "id": 31603, "nodeType": "ExpressionStatement", "src": "1297:16:31" } @@ -3694,31 +3702,31 @@ }, { "expression": { - "id": 31605, + "id": 31634, "isConstant": false, "isLValue": false, "isPure": false, "lValueRequested": false, "leftHandSide": { "baseExpression": { - "id": 31594, + "id": 31623, "name": "cells", "nodeType": "Identifier", "overloadedDeclarations": [], - "referencedDeclaration": 31540, + "referencedDeclaration": 31569, "src": "1482:5:31", "typeDescriptions": { - "typeIdentifier": "t_mapping$_t_uint256_$_t_struct$_CellData_$31465_storage_$", + "typeIdentifier": "t_mapping$_t_uint256_$_t_struct$_CellData_$31494_storage_$", "typeString": "mapping(uint256 => struct CellData storage ref)" } }, - "id": 31596, + "id": 31625, "indexExpression": { - "id": 31595, + "id": 31624, "name": "id", "nodeType": "Identifier", "overloadedDeclarations": [], - "referencedDeclaration": 31542, + "referencedDeclaration": 31571, "src": "1488:2:31", "typeDescriptions": { "typeIdentifier": "t_uint256", @@ -3732,7 +3740,7 @@ "nodeType": "IndexAccess", "src": "1482:9:31", "typeDescriptions": { - "typeIdentifier": "t_struct$_CellData_$31465_storage", + "typeIdentifier": "t_struct$_CellData_$31494_storage", "typeString": "struct CellData storage ref" } }, @@ -3743,11 +3751,11 @@ { "arguments": [ { - "id": 31600, + "id": 31629, "name": "contractAddress", "nodeType": "Identifier", "overloadedDeclarations": [], - "referencedDeclaration": 31544, + "referencedDeclaration": 31573, "src": "1511:15:31", "typeDescriptions": { "typeIdentifier": "t_uint160", @@ -3762,7 +3770,7 @@ "typeString": "uint160" } ], - "id": 31599, + "id": 31628, "isConstant": false, "isLValue": false, "isPure": true, @@ -3774,14 +3782,14 @@ "typeString": "type(address)" }, "typeName": { - "id": 31598, + "id": 31627, "name": "address", "nodeType": "ElementaryTypeName", "src": "1503:7:31", "typeDescriptions": {} } }, - "id": 31601, + "id": 31630, "isConstant": false, "isLValue": false, "isPure": false, @@ -3798,11 +3806,11 @@ } }, { - "id": 31602, + "id": 31631, "name": "value", "nodeType": "Identifier", "overloadedDeclarations": [], - "referencedDeclaration": 31546, + "referencedDeclaration": 31575, "src": "1529:5:31", "typeDescriptions": { "typeIdentifier": "t_bytes32", @@ -3810,11 +3818,11 @@ } }, { - "id": 31603, + "id": 31632, "name": "data", "nodeType": "Identifier", "overloadedDeclarations": [], - "referencedDeclaration": 31548, + "referencedDeclaration": 31577, "src": "1536:4:31", "typeDescriptions": { "typeIdentifier": "t_bytes_calldata_ptr", @@ -3837,18 +3845,18 @@ "typeString": "bytes calldata" } ], - "id": 31597, + "id": 31626, "name": "CellData", "nodeType": "Identifier", "overloadedDeclarations": [], - "referencedDeclaration": 31465, + "referencedDeclaration": 31494, "src": "1494:8:31", "typeDescriptions": { - "typeIdentifier": "t_type$_t_struct$_CellData_$31465_storage_ptr_$", + "typeIdentifier": "t_type$_t_struct$_CellData_$31494_storage_ptr_$", "typeString": "type(struct CellData storage pointer)" } }, - "id": 31604, + "id": 31633, "isConstant": false, "isLValue": false, "isPure": false, @@ -3860,17 +3868,17 @@ "src": "1494:47:31", "tryCall": false, "typeDescriptions": { - "typeIdentifier": "t_struct$_CellData_$31465_memory_ptr", + "typeIdentifier": "t_struct$_CellData_$31494_memory_ptr", "typeString": "struct CellData memory" } }, "src": "1482:59:31", "typeDescriptions": { - "typeIdentifier": "t_struct$_CellData_$31465_storage", + "typeIdentifier": "t_struct$_CellData_$31494_storage", "typeString": "struct CellData storage ref" } }, - "id": 31606, + "id": 31635, "nodeType": "ExpressionStatement", "src": "1482:59:31" } @@ -3883,17 +3891,17 @@ "name": "setCell", "nameLocation": "1075:7:31", "parameters": { - "id": 31549, + "id": 31578, "nodeType": "ParameterList", "parameters": [ { "constant": false, - "id": 31542, + "id": 31571, "mutability": "mutable", "name": "id", "nameLocation": "1091:2:31", "nodeType": "VariableDeclaration", - "scope": 31608, + "scope": 31637, "src": "1083:10:31", "stateVariable": false, "storageLocation": "default", @@ -3902,7 +3910,7 @@ "typeString": "uint256" }, "typeName": { - "id": 31541, + "id": 31570, "name": "uint256", "nodeType": "ElementaryTypeName", "src": "1083:7:31", @@ -3915,12 +3923,12 @@ }, { "constant": false, - "id": 31544, + "id": 31573, "mutability": "mutable", "name": "contractAddress", "nameLocation": "1103:15:31", "nodeType": "VariableDeclaration", - "scope": 31608, + "scope": 31637, "src": "1095:23:31", "stateVariable": false, "storageLocation": "default", @@ -3929,7 +3937,7 @@ "typeString": "uint160" }, "typeName": { - "id": 31543, + "id": 31572, "name": "uint160", "nodeType": "ElementaryTypeName", "src": "1095:7:31", @@ -3942,12 +3950,12 @@ }, { "constant": false, - "id": 31546, + "id": 31575, "mutability": "mutable", "name": "value", "nameLocation": "1128:5:31", "nodeType": "VariableDeclaration", - "scope": 31608, + "scope": 31637, "src": "1120:13:31", "stateVariable": false, "storageLocation": "default", @@ -3956,7 +3964,7 @@ "typeString": "bytes32" }, "typeName": { - "id": 31545, + "id": 31574, "name": "bytes32", "nodeType": "ElementaryTypeName", "src": "1120:7:31", @@ -3969,12 +3977,12 @@ }, { "constant": false, - "id": 31548, + "id": 31577, "mutability": "mutable", "name": "data", "nameLocation": "1150:4:31", "nodeType": "VariableDeclaration", - "scope": 31608, + "scope": 31637, "src": "1135:19:31", "stateVariable": false, "storageLocation": "calldata", @@ -3983,7 +3991,7 @@ "typeString": "bytes" }, "typeName": { - "id": 31547, + "id": 31576, "name": "bytes", "nodeType": "ElementaryTypeName", "src": "1135:5:31", @@ -3998,23 +4006,23 @@ "src": "1082:73:31" }, "returnParameters": { - "id": 31550, + "id": 31579, "nodeType": "ParameterList", "parameters": [], "src": "1163:0:31" }, - "scope": 32045, + "scope": 32074, "stateMutability": "nonpayable", "virtual": false, "visibility": "public" }, { - "id": 31653, + "id": 31682, "nodeType": "FunctionDefinition", "src": "1554:349:31", "nodes": [], "body": { - "id": 31652, + "id": 31681, "nodeType": "Block", "src": "1663:240:31", "nodes": [], @@ -4025,14 +4033,14 @@ "typeIdentifier": "t_address", "typeString": "address" }, - "id": 31626, + "id": 31655, "isConstant": false, "isLValue": false, "isPure": false, "lValueRequested": false, "leftExpression": { "baseExpression": { - "id": 31619, + "id": 31648, "name": "_ownerOf", "nodeType": "Identifier", "overloadedDeclarations": [], @@ -4043,13 +4051,13 @@ "typeString": "mapping(uint256 => address)" } }, - "id": 31621, + "id": 31650, "indexExpression": { - "id": 31620, + "id": 31649, "name": "id", "nodeType": "Identifier", "overloadedDeclarations": [], - "referencedDeclaration": 31610, + "referencedDeclaration": 31639, "src": "1686:2:31", "typeDescriptions": { "typeIdentifier": "t_uint256", @@ -4073,7 +4081,7 @@ "arguments": [ { "hexValue": "30", - "id": 31624, + "id": 31653, "isConstant": false, "isLValue": false, "isPure": true, @@ -4095,7 +4103,7 @@ "typeString": "int_const 0" } ], - "id": 31623, + "id": 31652, "isConstant": false, "isLValue": false, "isPure": true, @@ -4107,14 +4115,14 @@ "typeString": "type(address)" }, "typeName": { - "id": 31622, + "id": 31651, "name": "address", "nodeType": "ElementaryTypeName", "src": "1693:7:31", "typeDescriptions": {} } }, - "id": 31625, + "id": 31654, "isConstant": false, "isLValue": false, "isPure": true, @@ -4137,23 +4145,23 @@ } }, "falseBody": { - "id": 31639, + "id": 31668, "nodeType": "Block", "src": "1762:68:31", "statements": [ { "expression": { - "id": 31637, + "id": 31666, "isConstant": false, "isLValue": false, "isPure": false, "lValueRequested": false, "leftHandSide": { - "id": 31632, + "id": 31661, "name": "contractAddress", "nodeType": "Identifier", "overloadedDeclarations": [], - "referencedDeclaration": 31613, + "referencedDeclaration": 31642, "src": "1776:15:31", "typeDescriptions": { "typeIdentifier": "t_address", @@ -4165,24 +4173,24 @@ "rightHandSide": { "expression": { "baseExpression": { - "id": 31633, + "id": 31662, "name": "cells", "nodeType": "Identifier", "overloadedDeclarations": [], - "referencedDeclaration": 31540, + "referencedDeclaration": 31569, "src": "1794:5:31", "typeDescriptions": { - "typeIdentifier": "t_mapping$_t_uint256_$_t_struct$_CellData_$31465_storage_$", + "typeIdentifier": "t_mapping$_t_uint256_$_t_struct$_CellData_$31494_storage_$", "typeString": "mapping(uint256 => struct CellData storage ref)" } }, - "id": 31635, + "id": 31664, "indexExpression": { - "id": 31634, + "id": 31663, "name": "id", "nodeType": "Identifier", "overloadedDeclarations": [], - "referencedDeclaration": 31610, + "referencedDeclaration": 31639, "src": "1800:2:31", "typeDescriptions": { "typeIdentifier": "t_uint256", @@ -4196,11 +4204,11 @@ "nodeType": "IndexAccess", "src": "1794:9:31", "typeDescriptions": { - "typeIdentifier": "t_struct$_CellData_$31465_storage", + "typeIdentifier": "t_struct$_CellData_$31494_storage", "typeString": "struct CellData storage ref" } }, - "id": 31636, + "id": 31665, "isConstant": false, "isLValue": true, "isPure": false, @@ -4208,7 +4216,7 @@ "memberLocation": "1804:15:31", "memberName": "contractAddress", "nodeType": "MemberAccess", - "referencedDeclaration": 31460, + "referencedDeclaration": 31489, "src": "1794:25:31", "typeDescriptions": { "typeIdentifier": "t_address", @@ -4221,33 +4229,33 @@ "typeString": "address" } }, - "id": 31638, + "id": 31667, "nodeType": "ExpressionStatement", "src": "1776:43:31" } ] }, - "id": 31640, + "id": 31669, "nodeType": "IfStatement", "src": "1673:157:31", "trueBody": { - "id": 31631, + "id": 31660, "nodeType": "Block", "src": "1705:51:31", "statements": [ { "expression": { - "id": 31629, + "id": 31658, "isConstant": false, "isLValue": false, "isPure": false, "lValueRequested": false, "leftHandSide": { - "id": 31627, + "id": 31656, "name": "contractAddress", "nodeType": "Identifier", "overloadedDeclarations": [], - "referencedDeclaration": 31613, + "referencedDeclaration": 31642, "src": "1719:15:31", "typeDescriptions": { "typeIdentifier": "t_address", @@ -4257,11 +4265,11 @@ "nodeType": "Assignment", "operator": "=", "rightHandSide": { - "id": 31628, + "id": 31657, "name": "RC_BOUND", "nodeType": "Identifier", "overloadedDeclarations": [], - "referencedDeclaration": 31524, + "referencedDeclaration": 31553, "src": "1737:8:31", "typeDescriptions": { "typeIdentifier": "t_address", @@ -4274,7 +4282,7 @@ "typeString": "address" } }, - "id": 31630, + "id": 31659, "nodeType": "ExpressionStatement", "src": "1719:26:31" } @@ -4285,11 +4293,11 @@ "expression": { "components": [ { - "id": 31641, + "id": 31670, "name": "contractAddress", "nodeType": "Identifier", "overloadedDeclarations": [], - "referencedDeclaration": 31613, + "referencedDeclaration": 31642, "src": "1847:15:31", "typeDescriptions": { "typeIdentifier": "t_address", @@ -4299,24 +4307,24 @@ { "expression": { "baseExpression": { - "id": 31642, + "id": 31671, "name": "cells", "nodeType": "Identifier", "overloadedDeclarations": [], - "referencedDeclaration": 31540, + "referencedDeclaration": 31569, "src": "1864:5:31", "typeDescriptions": { - "typeIdentifier": "t_mapping$_t_uint256_$_t_struct$_CellData_$31465_storage_$", + "typeIdentifier": "t_mapping$_t_uint256_$_t_struct$_CellData_$31494_storage_$", "typeString": "mapping(uint256 => struct CellData storage ref)" } }, - "id": 31644, + "id": 31673, "indexExpression": { - "id": 31643, + "id": 31672, "name": "id", "nodeType": "Identifier", "overloadedDeclarations": [], - "referencedDeclaration": 31610, + "referencedDeclaration": 31639, "src": "1870:2:31", "typeDescriptions": { "typeIdentifier": "t_uint256", @@ -4330,11 +4338,11 @@ "nodeType": "IndexAccess", "src": "1864:9:31", "typeDescriptions": { - "typeIdentifier": "t_struct$_CellData_$31465_storage", + "typeIdentifier": "t_struct$_CellData_$31494_storage", "typeString": "struct CellData storage ref" } }, - "id": 31645, + "id": 31674, "isConstant": false, "isLValue": true, "isPure": false, @@ -4342,7 +4350,7 @@ "memberLocation": "1874:5:31", "memberName": "value", "nodeType": "MemberAccess", - "referencedDeclaration": 31462, + "referencedDeclaration": 31491, "src": "1864:15:31", "typeDescriptions": { "typeIdentifier": "t_bytes32", @@ -4352,24 +4360,24 @@ { "expression": { "baseExpression": { - "id": 31646, + "id": 31675, "name": "cells", "nodeType": "Identifier", "overloadedDeclarations": [], - "referencedDeclaration": 31540, + "referencedDeclaration": 31569, "src": "1881:5:31", "typeDescriptions": { - "typeIdentifier": "t_mapping$_t_uint256_$_t_struct$_CellData_$31465_storage_$", + "typeIdentifier": "t_mapping$_t_uint256_$_t_struct$_CellData_$31494_storage_$", "typeString": "mapping(uint256 => struct CellData storage ref)" } }, - "id": 31648, + "id": 31677, "indexExpression": { - "id": 31647, + "id": 31676, "name": "id", "nodeType": "Identifier", "overloadedDeclarations": [], - "referencedDeclaration": 31610, + "referencedDeclaration": 31639, "src": "1887:2:31", "typeDescriptions": { "typeIdentifier": "t_uint256", @@ -4383,11 +4391,11 @@ "nodeType": "IndexAccess", "src": "1881:9:31", "typeDescriptions": { - "typeIdentifier": "t_struct$_CellData_$31465_storage", + "typeIdentifier": "t_struct$_CellData_$31494_storage", "typeString": "struct CellData storage ref" } }, - "id": 31649, + "id": 31678, "isConstant": false, "isLValue": true, "isPure": false, @@ -4395,7 +4403,7 @@ "memberLocation": "1891:4:31", "memberName": "data", "nodeType": "MemberAccess", - "referencedDeclaration": 31464, + "referencedDeclaration": 31493, "src": "1881:14:31", "typeDescriptions": { "typeIdentifier": "t_bytes_storage", @@ -4403,7 +4411,7 @@ } } ], - "id": 31650, + "id": 31679, "isConstant": false, "isInlineArray": false, "isLValue": false, @@ -4416,8 +4424,8 @@ "typeString": "tuple(address,bytes32,bytes storage ref)" } }, - "functionReturnParameters": 31618, - "id": 31651, + "functionReturnParameters": 31647, + "id": 31680, "nodeType": "Return", "src": "1839:57:31" } @@ -4430,17 +4438,17 @@ "name": "getCell", "nameLocation": "1563:7:31", "parameters": { - "id": 31611, + "id": 31640, "nodeType": "ParameterList", "parameters": [ { "constant": false, - "id": 31610, + "id": 31639, "mutability": "mutable", "name": "id", "nameLocation": "1579:2:31", "nodeType": "VariableDeclaration", - "scope": 31653, + "scope": 31682, "src": "1571:10:31", "stateVariable": false, "storageLocation": "default", @@ -4449,7 +4457,7 @@ "typeString": "uint256" }, "typeName": { - "id": 31609, + "id": 31638, "name": "uint256", "nodeType": "ElementaryTypeName", "src": "1571:7:31", @@ -4464,17 +4472,17 @@ "src": "1570:12:31" }, "returnParameters": { - "id": 31618, + "id": 31647, "nodeType": "ParameterList", "parameters": [ { "constant": false, - "id": 31613, + "id": 31642, "mutability": "mutable", "name": "contractAddress", "nameLocation": "1612:15:31", "nodeType": "VariableDeclaration", - "scope": 31653, + "scope": 31682, "src": "1604:23:31", "stateVariable": false, "storageLocation": "default", @@ -4483,7 +4491,7 @@ "typeString": "address" }, "typeName": { - "id": 31612, + "id": 31641, "name": "address", "nodeType": "ElementaryTypeName", "src": "1604:7:31", @@ -4497,12 +4505,12 @@ }, { "constant": false, - "id": 31615, + "id": 31644, "mutability": "mutable", "name": "value", "nameLocation": "1637:5:31", "nodeType": "VariableDeclaration", - "scope": 31653, + "scope": 31682, "src": "1629:13:31", "stateVariable": false, "storageLocation": "default", @@ -4511,7 +4519,7 @@ "typeString": "bytes32" }, "typeName": { - "id": 31614, + "id": 31643, "name": "bytes32", "nodeType": "ElementaryTypeName", "src": "1629:7:31", @@ -4524,12 +4532,12 @@ }, { "constant": false, - "id": 31617, + "id": 31646, "mutability": "mutable", "name": "data", "nameLocation": "1657:4:31", "nodeType": "VariableDeclaration", - "scope": 31653, + "scope": 31682, "src": "1644:17:31", "stateVariable": false, "storageLocation": "memory", @@ -4538,7 +4546,7 @@ "typeString": "bytes" }, "typeName": { - "id": 31616, + "id": 31645, "name": "bytes", "nodeType": "ElementaryTypeName", "src": "1644:5:31", @@ -4552,35 +4560,35 @@ ], "src": "1603:59:31" }, - "scope": 32045, + "scope": 32074, "stateMutability": "view", "virtual": false, "visibility": "public" }, { - "id": 31676, + "id": 31705, "nodeType": "FunctionDefinition", "src": "1909:181:31", "nodes": [], "body": { - "id": 31675, + "id": 31704, "nodeType": "Block", "src": "1983:107:31", "nodes": [], "statements": [ { "assignments": [ - 31662 + 31691 ], "declarations": [ { "constant": false, - "id": 31662, + "id": 31691, "mutability": "mutable", "name": "value", "nameLocation": "2006:5:31", "nodeType": "VariableDeclaration", - "scope": 31675, + "scope": 31704, "src": "1993:18:31", "stateVariable": false, "storageLocation": "memory", @@ -4589,7 +4597,7 @@ "typeString": "bytes" }, "typeName": { - "id": 31661, + "id": 31690, "name": "bytes", "nodeType": "ElementaryTypeName", "src": "1993:5:31", @@ -4601,15 +4609,15 @@ "visibility": "internal" } ], - "id": 31666, + "id": 31695, "initialValue": { "arguments": [ { - "id": 31664, + "id": 31693, "name": "id", "nodeType": "Identifier", "overloadedDeclarations": [], - "referencedDeclaration": 31655, + "referencedDeclaration": 31684, "src": "2026:2:31", "typeDescriptions": { "typeIdentifier": "t_uint256", @@ -4624,18 +4632,18 @@ "typeString": "uint256" } ], - "id": 31663, + "id": 31692, "name": "_renderCell", "nodeType": "Identifier", "overloadedDeclarations": [], - "referencedDeclaration": 31948, + "referencedDeclaration": 31977, "src": "2014:11:31", "typeDescriptions": { "typeIdentifier": "t_function_internal_view$_t_uint256_$returns$_t_bytes_memory_ptr_$", "typeString": "function (uint256) view returns (bytes memory)" } }, - "id": 31665, + "id": 31694, "isConstant": false, "isLValue": false, "isPure": false, @@ -4658,11 +4666,11 @@ "expression": { "arguments": [ { - "id": 31668, + "id": 31697, "name": "id", "nodeType": "Identifier", "overloadedDeclarations": [], - "referencedDeclaration": 31655, + "referencedDeclaration": 31684, "src": "2059:2:31", "typeDescriptions": { "typeIdentifier": "t_uint256", @@ -4671,7 +4679,7 @@ }, { "baseExpression": { - "id": 31669, + "id": 31698, "name": "_ownerOf", "nodeType": "Identifier", "overloadedDeclarations": [], @@ -4682,13 +4690,13 @@ "typeString": "mapping(uint256 => address)" } }, - "id": 31671, + "id": 31700, "indexExpression": { - "id": 31670, + "id": 31699, "name": "id", "nodeType": "Identifier", "overloadedDeclarations": [], - "referencedDeclaration": 31655, + "referencedDeclaration": 31684, "src": "2072:2:31", "typeDescriptions": { "typeIdentifier": "t_uint256", @@ -4707,11 +4715,11 @@ } }, { - "id": 31672, + "id": 31701, "name": "value", "nodeType": "Identifier", "overloadedDeclarations": [], - "referencedDeclaration": 31662, + "referencedDeclaration": 31691, "src": "2077:5:31", "typeDescriptions": { "typeIdentifier": "t_bytes_memory_ptr", @@ -4734,18 +4742,18 @@ "typeString": "bytes memory" } ], - "id": 31667, + "id": 31696, "name": "CellRendered", "nodeType": "Identifier", "overloadedDeclarations": [], - "referencedDeclaration": 31472, + "referencedDeclaration": 31501, "src": "2046:12:31", "typeDescriptions": { - "typeIdentifier": "t_type$_t_struct$_CellRendered_$31472_storage_ptr_$", + "typeIdentifier": "t_type$_t_struct$_CellRendered_$31501_storage_ptr_$", "typeString": "type(struct CellRendered storage pointer)" } }, - "id": 31673, + "id": 31702, "isConstant": false, "isLValue": false, "isPure": false, @@ -4757,12 +4765,12 @@ "src": "2046:37:31", "tryCall": false, "typeDescriptions": { - "typeIdentifier": "t_struct$_CellRendered_$31472_memory_ptr", + "typeIdentifier": "t_struct$_CellRendered_$31501_memory_ptr", "typeString": "struct CellRendered memory" } }, - "functionReturnParameters": 31660, - "id": 31674, + "functionReturnParameters": 31689, + "id": 31703, "nodeType": "Return", "src": "2039:44:31" } @@ -4775,17 +4783,17 @@ "name": "renderCell", "nameLocation": "1918:10:31", "parameters": { - "id": 31656, + "id": 31685, "nodeType": "ParameterList", "parameters": [ { "constant": false, - "id": 31655, + "id": 31684, "mutability": "mutable", "name": "id", "nameLocation": "1937:2:31", "nodeType": "VariableDeclaration", - "scope": 31676, + "scope": 31705, "src": "1929:10:31", "stateVariable": false, "storageLocation": "default", @@ -4794,7 +4802,7 @@ "typeString": "uint256" }, "typeName": { - "id": 31654, + "id": 31683, "name": "uint256", "nodeType": "ElementaryTypeName", "src": "1929:7:31", @@ -4809,41 +4817,41 @@ "src": "1928:12:31" }, "returnParameters": { - "id": 31660, + "id": 31689, "nodeType": "ParameterList", "parameters": [ { "constant": false, - "id": 31659, + "id": 31688, "mutability": "mutable", "name": "", "nameLocation": "-1:-1:-1", "nodeType": "VariableDeclaration", - "scope": 31676, + "scope": 31705, "src": "1962:19:31", "stateVariable": false, "storageLocation": "memory", "typeDescriptions": { - "typeIdentifier": "t_struct$_CellRendered_$31472_memory_ptr", + "typeIdentifier": "t_struct$_CellRendered_$31501_memory_ptr", "typeString": "struct CellRendered" }, "typeName": { - "id": 31658, + "id": 31687, "nodeType": "UserDefinedTypeName", "pathNode": { - "id": 31657, + "id": 31686, "name": "CellRendered", "nameLocations": [ "1962:12:31" ], "nodeType": "IdentifierPath", - "referencedDeclaration": 31472, + "referencedDeclaration": 31501, "src": "1962:12:31" }, - "referencedDeclaration": 31472, + "referencedDeclaration": 31501, "src": "1962:12:31", "typeDescriptions": { - "typeIdentifier": "t_struct$_CellRendered_$31472_storage_ptr", + "typeIdentifier": "t_struct$_CellRendered_$31501_storage_ptr", "typeString": "struct CellRendered" } }, @@ -4852,18 +4860,18 @@ ], "src": "1961:21:31" }, - "scope": 32045, + "scope": 32074, "stateMutability": "view", "virtual": false, "visibility": "public" }, { - "id": 31690, + "id": 31719, "nodeType": "FunctionDefinition", "src": "2096:126:31", "nodes": [], "body": { - "id": 31689, + "id": 31718, "nodeType": "Block", "src": "2166:56:31", "nodes": [], @@ -4874,25 +4882,25 @@ "typeIdentifier": "t_address", "typeString": "address" }, - "id": 31687, + "id": 31716, "isConstant": false, "isLValue": false, "isPure": false, "lValueRequested": false, "leftExpression": { "expression": { - "id": 31684, + "id": 31713, "name": "cell", "nodeType": "Identifier", "overloadedDeclarations": [], - "referencedDeclaration": 31679, + "referencedDeclaration": 31708, "src": "2183:4:31", "typeDescriptions": { - "typeIdentifier": "t_struct$_CellData_$31465_memory_ptr", + "typeIdentifier": "t_struct$_CellData_$31494_memory_ptr", "typeString": "struct CellData memory" } }, - "id": 31685, + "id": 31714, "isConstant": false, "isLValue": true, "isPure": false, @@ -4900,7 +4908,7 @@ "memberLocation": "2188:15:31", "memberName": "contractAddress", "nodeType": "MemberAccess", - "referencedDeclaration": 31460, + "referencedDeclaration": 31489, "src": "2183:20:31", "typeDescriptions": { "typeIdentifier": "t_address", @@ -4910,11 +4918,11 @@ "nodeType": "BinaryOperation", "operator": "==", "rightExpression": { - "id": 31686, + "id": 31715, "name": "RC_BOUND", "nodeType": "Identifier", "overloadedDeclarations": [], - "referencedDeclaration": 31524, + "referencedDeclaration": 31553, "src": "2207:8:31", "typeDescriptions": { "typeIdentifier": "t_address", @@ -4927,8 +4935,8 @@ "typeString": "bool" } }, - "functionReturnParameters": 31683, - "id": 31688, + "functionReturnParameters": 31712, + "id": 31717, "nodeType": "Return", "src": "2176:39:31" } @@ -4941,41 +4949,41 @@ "name": "_isConstant", "nameLocation": "2105:11:31", "parameters": { - "id": 31680, + "id": 31709, "nodeType": "ParameterList", "parameters": [ { "constant": false, - "id": 31679, + "id": 31708, "mutability": "mutable", "name": "cell", "nameLocation": "2133:4:31", "nodeType": "VariableDeclaration", - "scope": 31690, + "scope": 31719, "src": "2117:20:31", "stateVariable": false, "storageLocation": "memory", "typeDescriptions": { - "typeIdentifier": "t_struct$_CellData_$31465_memory_ptr", + "typeIdentifier": "t_struct$_CellData_$31494_memory_ptr", "typeString": "struct CellData" }, "typeName": { - "id": 31678, + "id": 31707, "nodeType": "UserDefinedTypeName", "pathNode": { - "id": 31677, + "id": 31706, "name": "CellData", "nameLocations": [ "2117:8:31" ], "nodeType": "IdentifierPath", - "referencedDeclaration": 31465, + "referencedDeclaration": 31494, "src": "2117:8:31" }, - "referencedDeclaration": 31465, + "referencedDeclaration": 31494, "src": "2117:8:31", "typeDescriptions": { - "typeIdentifier": "t_struct$_CellData_$31465_storage_ptr", + "typeIdentifier": "t_struct$_CellData_$31494_storage_ptr", "typeString": "struct CellData" } }, @@ -4985,17 +4993,17 @@ "src": "2116:22:31" }, "returnParameters": { - "id": 31683, + "id": 31712, "nodeType": "ParameterList", "parameters": [ { "constant": false, - "id": 31682, + "id": 31711, "mutability": "mutable", "name": "", "nameLocation": "-1:-1:-1", "nodeType": "VariableDeclaration", - "scope": 31690, + "scope": 31719, "src": "2160:4:31", "stateVariable": false, "storageLocation": "default", @@ -5004,7 +5012,7 @@ "typeString": "bool" }, "typeName": { - "id": 31681, + "id": 31710, "name": "bool", "nodeType": "ElementaryTypeName", "src": "2160:4:31", @@ -5018,18 +5026,18 @@ ], "src": "2159:6:31" }, - "scope": 32045, + "scope": 32074, "stateMutability": "pure", "virtual": false, "visibility": "public" }, { - "id": 31710, + "id": 31739, "nodeType": "FunctionDefinition", "src": "2228:125:31", "nodes": [], "body": { - "id": 31709, + "id": 31738, "nodeType": "Block", "src": "2301:52:31", "nodes": [], @@ -5042,7 +5050,7 @@ "typeIdentifier": "t_uint256", "typeString": "uint256" }, - "id": 31703, + "id": 31732, "isConstant": false, "isLValue": false, "isPure": false, @@ -5052,17 +5060,17 @@ "typeIdentifier": "t_uint256", "typeString": "uint256" }, - "id": 31701, + "id": 31730, "isConstant": false, "isLValue": false, "isPure": false, "lValueRequested": false, "leftExpression": { - "id": 31699, + "id": 31728, "name": "value", "nodeType": "Identifier", "overloadedDeclarations": [], - "referencedDeclaration": 31692, + "referencedDeclaration": 31721, "src": "2319:5:31", "typeDescriptions": { "typeIdentifier": "t_uint256", @@ -5073,7 +5081,7 @@ "operator": "%", "rightExpression": { "hexValue": "32", - "id": 31700, + "id": 31729, "isConstant": false, "isLValue": false, "isPure": true, @@ -5097,7 +5105,7 @@ "operator": "==", "rightExpression": { "hexValue": "31", - "id": 31702, + "id": 31731, "isConstant": false, "isLValue": false, "isPure": true, @@ -5122,17 +5130,17 @@ "typeIdentifier": "t_uint256", "typeString": "uint256" }, - "id": 31706, + "id": 31735, "isConstant": false, "isLValue": false, "isPure": false, "lValueRequested": false, "leftExpression": { - "id": 31704, + "id": 31733, "name": "value", "nodeType": "Identifier", "overloadedDeclarations": [], - "referencedDeclaration": 31692, + "referencedDeclaration": 31721, "src": "2335:5:31", "typeDescriptions": { "typeIdentifier": "t_uint256", @@ -5143,7 +5151,7 @@ "operator": ">>", "rightExpression": { "hexValue": "31", - "id": 31705, + "id": 31734, "isConstant": false, "isLValue": false, "isPure": true, @@ -5164,7 +5172,7 @@ } } ], - "id": 31707, + "id": 31736, "isConstant": false, "isInlineArray": false, "isLValue": false, @@ -5177,8 +5185,8 @@ "typeString": "tuple(bool,uint256)" } }, - "functionReturnParameters": 31698, - "id": 31708, + "functionReturnParameters": 31727, + "id": 31737, "nodeType": "Return", "src": "2311:35:31" } @@ -5191,17 +5199,17 @@ "name": "_renderValue", "nameLocation": "2237:12:31", "parameters": { - "id": 31693, + "id": 31722, "nodeType": "ParameterList", "parameters": [ { "constant": false, - "id": 31692, + "id": 31721, "mutability": "mutable", "name": "value", "nameLocation": "2258:5:31", "nodeType": "VariableDeclaration", - "scope": 31710, + "scope": 31739, "src": "2250:13:31", "stateVariable": false, "storageLocation": "default", @@ -5210,7 +5218,7 @@ "typeString": "uint256" }, "typeName": { - "id": 31691, + "id": 31720, "name": "uint256", "nodeType": "ElementaryTypeName", "src": "2250:7:31", @@ -5225,17 +5233,17 @@ "src": "2249:15:31" }, "returnParameters": { - "id": 31698, + "id": 31727, "nodeType": "ParameterList", "parameters": [ { "constant": false, - "id": 31695, + "id": 31724, "mutability": "mutable", "name": "", "nameLocation": "-1:-1:-1", "nodeType": "VariableDeclaration", - "scope": 31710, + "scope": 31739, "src": "2286:4:31", "stateVariable": false, "storageLocation": "default", @@ -5244,7 +5252,7 @@ "typeString": "bool" }, "typeName": { - "id": 31694, + "id": 31723, "name": "bool", "nodeType": "ElementaryTypeName", "src": "2286:4:31", @@ -5257,12 +5265,12 @@ }, { "constant": false, - "id": 31697, + "id": 31726, "mutability": "mutable", "name": "", "nameLocation": "-1:-1:-1", "nodeType": "VariableDeclaration", - "scope": 31710, + "scope": 31739, "src": "2292:7:31", "stateVariable": false, "storageLocation": "default", @@ -5271,7 +5279,7 @@ "typeString": "uint256" }, "typeName": { - "id": 31696, + "id": 31725, "name": "uint256", "nodeType": "ElementaryTypeName", "src": "2292:7:31", @@ -5285,18 +5293,18 @@ ], "src": "2285:15:31" }, - "scope": 32045, + "scope": 32074, "stateMutability": "pure", "virtual": false, "visibility": "public" }, { - "id": 31728, + "id": 31757, "nodeType": "FunctionDefinition", "src": "2359:155:31", "nodes": [], "body": { - "id": 31727, + "id": 31756, "nodeType": "Block", "src": "2446:68:31", "nodes": [], @@ -5307,7 +5315,7 @@ "typeIdentifier": "t_uint160", "typeString": "uint160" }, - "id": 31725, + "id": 31754, "isConstant": false, "isLValue": false, "isPure": false, @@ -5315,11 +5323,11 @@ "leftExpression": { "arguments": [ { - "id": 31719, + "id": 31748, "name": "contractAddress", "nodeType": "Identifier", "overloadedDeclarations": [], - "referencedDeclaration": 31712, + "referencedDeclaration": 31741, "src": "2471:15:31", "typeDescriptions": { "typeIdentifier": "t_address", @@ -5334,7 +5342,7 @@ "typeString": "address" } ], - "id": 31718, + "id": 31747, "isConstant": false, "isLValue": false, "isPure": true, @@ -5346,14 +5354,14 @@ "typeString": "type(uint160)" }, "typeName": { - "id": 31717, + "id": 31746, "name": "uint160", "nodeType": "ElementaryTypeName", "src": "2463:7:31", "typeDescriptions": {} } }, - "id": 31720, + "id": 31749, "isConstant": false, "isLValue": false, "isPure": false, @@ -5374,11 +5382,11 @@ "rightExpression": { "arguments": [ { - "id": 31723, + "id": 31752, "name": "RC_BOUND", "nodeType": "Identifier", "overloadedDeclarations": [], - "referencedDeclaration": 31524, + "referencedDeclaration": 31553, "src": "2498:8:31", "typeDescriptions": { "typeIdentifier": "t_address", @@ -5393,7 +5401,7 @@ "typeString": "address" } ], - "id": 31722, + "id": 31751, "isConstant": false, "isLValue": false, "isPure": true, @@ -5405,14 +5413,14 @@ "typeString": "type(uint160)" }, "typeName": { - "id": 31721, + "id": 31750, "name": "uint160", "nodeType": "ElementaryTypeName", "src": "2490:7:31", "typeDescriptions": {} } }, - "id": 31724, + "id": 31753, "isConstant": false, "isLValue": false, "isPure": true, @@ -5434,8 +5442,8 @@ "typeString": "bool" } }, - "functionReturnParameters": 31716, - "id": 31726, + "functionReturnParameters": 31745, + "id": 31755, "nodeType": "Return", "src": "2456:51:31" } @@ -5448,17 +5456,17 @@ "name": "_contractAddressIsTokenId", "nameLocation": "2368:25:31", "parameters": { - "id": 31713, + "id": 31742, "nodeType": "ParameterList", "parameters": [ { "constant": false, - "id": 31712, + "id": 31741, "mutability": "mutable", "name": "contractAddress", "nameLocation": "2402:15:31", "nodeType": "VariableDeclaration", - "scope": 31728, + "scope": 31757, "src": "2394:23:31", "stateVariable": false, "storageLocation": "default", @@ -5467,7 +5475,7 @@ "typeString": "address" }, "typeName": { - "id": 31711, + "id": 31740, "name": "address", "nodeType": "ElementaryTypeName", "src": "2394:7:31", @@ -5483,17 +5491,17 @@ "src": "2393:25:31" }, "returnParameters": { - "id": 31716, + "id": 31745, "nodeType": "ParameterList", "parameters": [ { "constant": false, - "id": 31715, + "id": 31744, "mutability": "mutable", "name": "", "nameLocation": "-1:-1:-1", "nodeType": "VariableDeclaration", - "scope": 31728, + "scope": 31757, "src": "2440:4:31", "stateVariable": false, "storageLocation": "default", @@ -5502,7 +5510,7 @@ "typeString": "bool" }, "typeName": { - "id": 31714, + "id": 31743, "name": "bool", "nodeType": "ElementaryTypeName", "src": "2440:4:31", @@ -5516,35 +5524,35 @@ ], "src": "2439:6:31" }, - "scope": 32045, + "scope": 32074, "stateMutability": "pure", "virtual": false, "visibility": "public" }, { - "id": 31746, + "id": 31775, "nodeType": "FunctionDefinition", "src": "2520:570:31", "nodes": [], "body": { - "id": 31745, + "id": 31774, "nodeType": "Block", "src": "2613:477:31", "nodes": [], "statements": [ { "assignments": [ - 31740 + 31769 ], "declarations": [ { "constant": false, - "id": 31740, + "id": 31769, "mutability": "mutable", "name": "output", "nameLocation": "2640:6:31", "nodeType": "VariableDeclaration", - "scope": 31745, + "scope": 31774, "src": "2623:23:31", "stateVariable": false, "storageLocation": "memory", @@ -5554,7 +5562,7 @@ }, "typeName": { "baseType": { - "id": 31738, + "id": 31767, "name": "uint256", "nodeType": "ElementaryTypeName", "src": "2623:7:31", @@ -5563,7 +5571,7 @@ "typeString": "uint256" } }, - "id": 31739, + "id": 31768, "nodeType": "ArrayTypeName", "src": "2623:9:31", "typeDescriptions": { @@ -5574,37 +5582,43 @@ "visibility": "internal" } ], - "id": 31741, + "id": 31770, "nodeType": "VariableDeclarationStatement", "src": "2623:23:31" }, { "AST": { + "nativeSrc": "2665:395:31", "nodeType": "YulBlock", "src": "2665:395:31", "statements": [ { + "nativeSrc": "2679:26:31", "nodeType": "YulVariableDeclaration", "src": "2679:26:31", "value": { "arguments": [ { "name": "callData", + "nativeSrc": "2696:8:31", "nodeType": "YulIdentifier", "src": "2696:8:31" } ], "functionName": { "name": "mload", + "nativeSrc": "2690:5:31", "nodeType": "YulIdentifier", "src": "2690:5:31" }, + "nativeSrc": "2690:15:31", "nodeType": "YulFunctionCall", "src": "2690:15:31" }, "variables": [ { "name": "len", + "nativeSrc": "2683:3:31", "nodeType": "YulTypedName", "src": "2683:3:31", "type": "" @@ -5612,12 +5626,14 @@ ] }, { + "nativeSrc": "2718:21:31", "nodeType": "YulAssignment", "src": "2718:21:31", "value": { "arguments": [ { "kind": "number", + "nativeSrc": "2734:4:31", "nodeType": "YulLiteral", "src": "2734:4:31", "type": "", @@ -5626,15 +5642,18 @@ ], "functionName": { "name": "mload", + "nativeSrc": "2728:5:31", "nodeType": "YulIdentifier", "src": "2728:5:31" }, + "nativeSrc": "2728:11:31", "nodeType": "YulFunctionCall", "src": "2728:11:31" }, "variableNames": [ { "name": "output", + "nativeSrc": "2718:6:31", "nodeType": "YulIdentifier", "src": "2718:6:31" } @@ -5645,6 +5664,7 @@ "arguments": [ { "name": "output", + "nativeSrc": "2759:6:31", "nodeType": "YulIdentifier", "src": "2759:6:31" }, @@ -5652,11 +5672,13 @@ "arguments": [ { "name": "len", + "nativeSrc": "2771:3:31", "nodeType": "YulIdentifier", "src": "2771:3:31" }, { "kind": "number", + "nativeSrc": "2776:4:31", "nodeType": "YulLiteral", "src": "2776:4:31", "type": "", @@ -5665,36 +5687,44 @@ ], "functionName": { "name": "div", + "nativeSrc": "2767:3:31", "nodeType": "YulIdentifier", "src": "2767:3:31" }, + "nativeSrc": "2767:14:31", "nodeType": "YulFunctionCall", "src": "2767:14:31" } ], "functionName": { "name": "mstore", + "nativeSrc": "2752:6:31", "nodeType": "YulIdentifier", "src": "2752:6:31" }, + "nativeSrc": "2752:30:31", "nodeType": "YulFunctionCall", "src": "2752:30:31" }, + "nativeSrc": "2752:30:31", "nodeType": "YulExpressionStatement", "src": "2752:30:31" }, { + "nativeSrc": "2795:32:31", "nodeType": "YulVariableDeclaration", "src": "2795:32:31", "value": { "arguments": [ { "name": "output", + "nativeSrc": "2814:6:31", "nodeType": "YulIdentifier", "src": "2814:6:31" }, { "kind": "number", + "nativeSrc": "2822:4:31", "nodeType": "YulLiteral", "src": "2822:4:31", "type": "", @@ -5703,15 +5733,18 @@ ], "functionName": { "name": "add", + "nativeSrc": "2810:3:31", "nodeType": "YulIdentifier", "src": "2810:3:31" }, + "nativeSrc": "2810:17:31", "nodeType": "YulFunctionCall", "src": "2810:17:31" }, "variables": [ { "name": "_output", + "nativeSrc": "2799:7:31", "nodeType": "YulTypedName", "src": "2799:7:31", "type": "" @@ -5719,17 +5752,20 @@ ] }, { + "nativeSrc": "2840:36:31", "nodeType": "YulVariableDeclaration", "src": "2840:36:31", "value": { "arguments": [ { "name": "callData", + "nativeSrc": "2861:8:31", "nodeType": "YulIdentifier", "src": "2861:8:31" }, { "kind": "number", + "nativeSrc": "2871:4:31", "nodeType": "YulLiteral", "src": "2871:4:31", "type": "", @@ -5738,15 +5774,18 @@ ], "functionName": { "name": "add", + "nativeSrc": "2857:3:31", "nodeType": "YulIdentifier", "src": "2857:3:31" }, + "nativeSrc": "2857:19:31", "nodeType": "YulFunctionCall", "src": "2857:19:31" }, "variables": [ { "name": "_callData", + "nativeSrc": "2844:9:31", "nodeType": "YulTypedName", "src": "2844:9:31", "type": "" @@ -5755,6 +5794,7 @@ }, { "body": { + "nativeSrc": "2942:53:31", "nodeType": "YulBlock", "src": "2942:53:31", "statements": [ @@ -5765,20 +5805,24 @@ "arguments": [ { "name": "_output", + "nativeSrc": "2955:7:31", "nodeType": "YulIdentifier", "src": "2955:7:31" }, { "name": "i", + "nativeSrc": "2964:1:31", "nodeType": "YulIdentifier", "src": "2964:1:31" } ], "functionName": { "name": "add", + "nativeSrc": "2951:3:31", "nodeType": "YulIdentifier", "src": "2951:3:31" }, + "nativeSrc": "2951:15:31", "nodeType": "YulFunctionCall", "src": "2951:15:31" }, @@ -5788,41 +5832,50 @@ "arguments": [ { "name": "_callData", + "nativeSrc": "2978:9:31", "nodeType": "YulIdentifier", "src": "2978:9:31" }, { "name": "i", + "nativeSrc": "2989:1:31", "nodeType": "YulIdentifier", "src": "2989:1:31" } ], "functionName": { "name": "add", + "nativeSrc": "2974:3:31", "nodeType": "YulIdentifier", "src": "2974:3:31" }, + "nativeSrc": "2974:17:31", "nodeType": "YulFunctionCall", "src": "2974:17:31" } ], "functionName": { "name": "mload", + "nativeSrc": "2968:5:31", "nodeType": "YulIdentifier", "src": "2968:5:31" }, + "nativeSrc": "2968:24:31", "nodeType": "YulFunctionCall", "src": "2968:24:31" } ], "functionName": { "name": "mstore", + "nativeSrc": "2944:6:31", "nodeType": "YulIdentifier", "src": "2944:6:31" }, + "nativeSrc": "2944:49:31", "nodeType": "YulFunctionCall", "src": "2944:49:31" }, + "nativeSrc": "2944:49:31", "nodeType": "YulExpressionStatement", "src": "2944:49:31" } @@ -5832,40 +5885,49 @@ "arguments": [ { "name": "i", + "nativeSrc": "2912:1:31", "nodeType": "YulIdentifier", "src": "2912:1:31" }, { "name": "len", + "nativeSrc": "2915:3:31", "nodeType": "YulIdentifier", "src": "2915:3:31" } ], "functionName": { "name": "lt", + "nativeSrc": "2909:2:31", "nodeType": "YulIdentifier", "src": "2909:2:31" }, + "nativeSrc": "2909:10:31", "nodeType": "YulFunctionCall", "src": "2909:10:31" }, + "nativeSrc": "2890:105:31", "nodeType": "YulForLoop", "post": { + "nativeSrc": "2920:21:31", "nodeType": "YulBlock", "src": "2920:21:31", "statements": [ { + "nativeSrc": "2922:17:31", "nodeType": "YulAssignment", "src": "2922:17:31", "value": { "arguments": [ { "name": "i", + "nativeSrc": "2931:1:31", "nodeType": "YulIdentifier", "src": "2931:1:31" }, { "kind": "number", + "nativeSrc": "2934:4:31", "nodeType": "YulLiteral", "src": "2934:4:31", "type": "", @@ -5874,15 +5936,18 @@ ], "functionName": { "name": "add", + "nativeSrc": "2927:3:31", "nodeType": "YulIdentifier", "src": "2927:3:31" }, + "nativeSrc": "2927:12:31", "nodeType": "YulFunctionCall", "src": "2927:12:31" }, "variableNames": [ { "name": "i", + "nativeSrc": "2922:1:31", "nodeType": "YulIdentifier", "src": "2922:1:31" } @@ -5891,14 +5956,17 @@ ] }, "pre": { + "nativeSrc": "2894:14:31", "nodeType": "YulBlock", "src": "2894:14:31", "statements": [ { + "nativeSrc": "2896:10:31", "nodeType": "YulVariableDeclaration", "src": "2896:10:31", "value": { "kind": "number", + "nativeSrc": "2905:1:31", "nodeType": "YulLiteral", "src": "2905:1:31", "type": "", @@ -5907,6 +5975,7 @@ "variables": [ { "name": "i", + "nativeSrc": "2900:1:31", "nodeType": "YulTypedName", "src": "2900:1:31", "type": "" @@ -5922,6 +5991,7 @@ "arguments": [ { "kind": "number", + "nativeSrc": "3016:4:31", "nodeType": "YulLiteral", "src": "3016:4:31", "type": "", @@ -5933,11 +6003,13 @@ "arguments": [ { "name": "len", + "nativeSrc": "3030:3:31", "nodeType": "YulIdentifier", "src": "3030:3:31" }, { "kind": "number", + "nativeSrc": "3035:4:31", "nodeType": "YulLiteral", "src": "3035:4:31", "type": "", @@ -5946,104 +6018,112 @@ ], "functionName": { "name": "add", + "nativeSrc": "3026:3:31", "nodeType": "YulIdentifier", "src": "3026:3:31" }, + "nativeSrc": "3026:14:31", "nodeType": "YulFunctionCall", "src": "3026:14:31" }, { "name": "output", + "nativeSrc": "3042:6:31", "nodeType": "YulIdentifier", "src": "3042:6:31" } ], "functionName": { "name": "add", + "nativeSrc": "3022:3:31", "nodeType": "YulIdentifier", "src": "3022:3:31" }, + "nativeSrc": "3022:27:31", "nodeType": "YulFunctionCall", "src": "3022:27:31" } ], "functionName": { "name": "mstore", + "nativeSrc": "3009:6:31", "nodeType": "YulIdentifier", "src": "3009:6:31" }, + "nativeSrc": "3009:41:31", "nodeType": "YulFunctionCall", "src": "3009:41:31" }, + "nativeSrc": "3009:41:31", "nodeType": "YulExpressionStatement", "src": "3009:41:31" } ] }, - "evmVersion": "london", + "evmVersion": "paris", "externalReferences": [ { - "declaration": 31730, + "declaration": 31759, "isOffset": false, "isSlot": false, "src": "2696:8:31", "valueSize": 1 }, { - "declaration": 31730, + "declaration": 31759, "isOffset": false, "isSlot": false, "src": "2861:8:31", "valueSize": 1 }, { - "declaration": 31740, + "declaration": 31769, "isOffset": false, "isSlot": false, "src": "2718:6:31", "valueSize": 1 }, { - "declaration": 31740, + "declaration": 31769, "isOffset": false, "isSlot": false, "src": "2759:6:31", "valueSize": 1 }, { - "declaration": 31740, + "declaration": 31769, "isOffset": false, "isSlot": false, "src": "2814:6:31", "valueSize": 1 }, { - "declaration": 31740, + "declaration": 31769, "isOffset": false, "isSlot": false, "src": "3042:6:31", "valueSize": 1 } ], - "id": 31742, + "id": 31771, "nodeType": "InlineAssembly", "src": "2656:404:31" }, { "expression": { - "id": 31743, + "id": 31772, "name": "output", "nodeType": "Identifier", "overloadedDeclarations": [], - "referencedDeclaration": 31740, + "referencedDeclaration": 31769, "src": "3077:6:31", "typeDescriptions": { "typeIdentifier": "t_array$_t_uint256_$dyn_memory_ptr", "typeString": "uint256[] memory" } }, - "functionReturnParameters": 31735, - "id": 31744, + "functionReturnParameters": 31764, + "id": 31773, "nodeType": "Return", "src": "3070:13:31" } @@ -6056,17 +6136,17 @@ "name": "callData2Uint256Array", "nameLocation": "2529:21:31", "parameters": { - "id": 31731, + "id": 31760, "nodeType": "ParameterList", "parameters": [ { "constant": false, - "id": 31730, + "id": 31759, "mutability": "mutable", "name": "callData", "nameLocation": "2564:8:31", "nodeType": "VariableDeclaration", - "scope": 31746, + "scope": 31775, "src": "2551:21:31", "stateVariable": false, "storageLocation": "memory", @@ -6075,7 +6155,7 @@ "typeString": "bytes" }, "typeName": { - "id": 31729, + "id": 31758, "name": "bytes", "nodeType": "ElementaryTypeName", "src": "2551:5:31", @@ -6090,17 +6170,17 @@ "src": "2550:23:31" }, "returnParameters": { - "id": 31735, + "id": 31764, "nodeType": "ParameterList", "parameters": [ { "constant": false, - "id": 31734, + "id": 31763, "mutability": "mutable", "name": "", "nameLocation": "-1:-1:-1", "nodeType": "VariableDeclaration", - "scope": 31746, + "scope": 31775, "src": "2595:16:31", "stateVariable": false, "storageLocation": "memory", @@ -6110,7 +6190,7 @@ }, "typeName": { "baseType": { - "id": 31732, + "id": 31761, "name": "uint256", "nodeType": "ElementaryTypeName", "src": "2595:7:31", @@ -6119,7 +6199,7 @@ "typeString": "uint256" } }, - "id": 31733, + "id": 31762, "nodeType": "ArrayTypeName", "src": "2595:9:31", "typeDescriptions": { @@ -6132,18 +6212,18 @@ ], "src": "2594:18:31" }, - "scope": 32045, + "scope": 32074, "stateMutability": "pure", "virtual": false, "visibility": "public" }, { - "id": 31762, + "id": 31791, "nodeType": "FunctionDefinition", "src": "3096:292:31", "nodes": [], "body": { - "id": 31761, + "id": 31790, "nodeType": "Block", "src": "3182:206:31", "nodes": [], @@ -6153,18 +6233,18 @@ "arguments": [ { "expression": { - "id": 31757, + "id": 31786, "name": "cell", "nodeType": "Identifier", "overloadedDeclarations": [], - "referencedDeclaration": 31749, + "referencedDeclaration": 31778, "src": "3370:4:31", "typeDescriptions": { - "typeIdentifier": "t_struct$_CellData_$31465_memory_ptr", + "typeIdentifier": "t_struct$_CellData_$31494_memory_ptr", "typeString": "struct CellData memory" } }, - "id": 31758, + "id": 31787, "isConstant": false, "isLValue": true, "isPure": false, @@ -6172,7 +6252,7 @@ "memberLocation": "3375:5:31", "memberName": "value", "nodeType": "MemberAccess", - "referencedDeclaration": 31462, + "referencedDeclaration": 31491, "src": "3370:10:31", "typeDescriptions": { "typeIdentifier": "t_bytes32", @@ -6188,7 +6268,7 @@ } ], "expression": { - "id": 31755, + "id": 31784, "isConstant": false, "isLValue": false, "isPure": true, @@ -6200,14 +6280,14 @@ "typeString": "type(bytes storage pointer)" }, "typeName": { - "id": 31754, + "id": 31783, "name": "bytes", "nodeType": "ElementaryTypeName", "src": "3357:5:31", "typeDescriptions": {} } }, - "id": 31756, + "id": 31785, "isConstant": false, "isLValue": false, "isPure": false, @@ -6221,7 +6301,7 @@ "typeString": "function () pure returns (bytes memory)" } }, - "id": 31759, + "id": 31788, "isConstant": false, "isLValue": false, "isPure": false, @@ -6237,8 +6317,8 @@ "typeString": "bytes memory" } }, - "functionReturnParameters": 31753, - "id": 31760, + "functionReturnParameters": 31782, + "id": 31789, "nodeType": "Return", "src": "3350:31:31" } @@ -6251,41 +6331,41 @@ "name": "_renderConstantCell", "nameLocation": "3105:19:31", "parameters": { - "id": 31750, + "id": 31779, "nodeType": "ParameterList", "parameters": [ { "constant": false, - "id": 31749, + "id": 31778, "mutability": "mutable", "name": "cell", "nameLocation": "3141:4:31", "nodeType": "VariableDeclaration", - "scope": 31762, + "scope": 31791, "src": "3125:20:31", "stateVariable": false, "storageLocation": "memory", "typeDescriptions": { - "typeIdentifier": "t_struct$_CellData_$31465_memory_ptr", + "typeIdentifier": "t_struct$_CellData_$31494_memory_ptr", "typeString": "struct CellData" }, "typeName": { - "id": 31748, + "id": 31777, "nodeType": "UserDefinedTypeName", "pathNode": { - "id": 31747, + "id": 31776, "name": "CellData", "nameLocations": [ "3125:8:31" ], "nodeType": "IdentifierPath", - "referencedDeclaration": 31465, + "referencedDeclaration": 31494, "src": "3125:8:31" }, - "referencedDeclaration": 31465, + "referencedDeclaration": 31494, "src": "3125:8:31", "typeDescriptions": { - "typeIdentifier": "t_struct$_CellData_$31465_storage_ptr", + "typeIdentifier": "t_struct$_CellData_$31494_storage_ptr", "typeString": "struct CellData" } }, @@ -6295,17 +6375,17 @@ "src": "3124:22:31" }, "returnParameters": { - "id": 31753, + "id": 31782, "nodeType": "ParameterList", "parameters": [ { "constant": false, - "id": 31752, + "id": 31781, "mutability": "mutable", "name": "", "nameLocation": "-1:-1:-1", "nodeType": "VariableDeclaration", - "scope": 31762, + "scope": 31791, "src": "3168:12:31", "stateVariable": false, "storageLocation": "memory", @@ -6314,7 +6394,7 @@ "typeString": "bytes" }, "typeName": { - "id": 31751, + "id": 31780, "name": "bytes", "nodeType": "ElementaryTypeName", "src": "3168:5:31", @@ -6328,18 +6408,18 @@ ], "src": "3167:14:31" }, - "scope": 32045, + "scope": 32074, "stateMutability": "pure", "virtual": false, "visibility": "public" }, { - "id": 31801, + "id": 31830, "nodeType": "FunctionDefinition", "src": "3394:401:31", "nodes": [], "body": { - "id": 31800, + "id": 31829, "nodeType": "Block", "src": "3481:314:31", "nodes": [], @@ -6348,11 +6428,11 @@ "condition": { "arguments": [ { - "id": 31770, + "id": 31799, "name": "contractAddress", "nodeType": "Identifier", "overloadedDeclarations": [], - "referencedDeclaration": 31764, + "referencedDeclaration": 31793, "src": "3521:15:31", "typeDescriptions": { "typeIdentifier": "t_address", @@ -6367,18 +6447,18 @@ "typeString": "address" } ], - "id": 31769, + "id": 31798, "name": "_contractAddressIsTokenId", "nodeType": "Identifier", "overloadedDeclarations": [], - "referencedDeclaration": 31728, + "referencedDeclaration": 31757, "src": "3495:25:31", "typeDescriptions": { "typeIdentifier": "t_function_internal_pure$_t_address_$returns$_t_bool_$", "typeString": "function (address) pure returns (bool)" } }, - "id": 31771, + "id": 31800, "isConstant": false, "isLValue": false, "isPure": false, @@ -6395,51 +6475,51 @@ } }, "falseBody": { - "id": 31798, + "id": 31827, "nodeType": "Block", "src": "3742:47:31", "statements": [ { "expression": { - "id": 31796, + "id": 31825, "name": "contractAddress", "nodeType": "Identifier", "overloadedDeclarations": [], - "referencedDeclaration": 31764, + "referencedDeclaration": 31793, "src": "3763:15:31", "typeDescriptions": { "typeIdentifier": "t_address", "typeString": "address" } }, - "functionReturnParameters": 31768, - "id": 31797, + "functionReturnParameters": 31797, + "id": 31826, "nodeType": "Return", "src": "3756:22:31" } ] }, - "id": 31799, + "id": 31828, "nodeType": "IfStatement", "src": "3491:298:31", "trueBody": { - "id": 31795, + "id": 31824, "nodeType": "Block", "src": "3539:197:31", "statements": [ { "assignments": [ - 31773 + 31802 ], "declarations": [ { "constant": false, - "id": 31773, + "id": 31802, "mutability": "mutable", "name": "renderedContractAddressResult", "nameLocation": "3566:29:31", "nodeType": "VariableDeclaration", - "scope": 31795, + "scope": 31824, "src": "3553:42:31", "stateVariable": false, "storageLocation": "memory", @@ -6448,7 +6528,7 @@ "typeString": "bytes" }, "typeName": { - "id": 31772, + "id": 31801, "name": "bytes", "nodeType": "ElementaryTypeName", "src": "3553:5:31", @@ -6460,7 +6540,7 @@ "visibility": "internal" } ], - "id": 31783, + "id": 31812, "initialValue": { "arguments": [ { @@ -6468,11 +6548,11 @@ { "arguments": [ { - "id": 31779, + "id": 31808, "name": "contractAddress", "nodeType": "Identifier", "overloadedDeclarations": [], - "referencedDeclaration": 31764, + "referencedDeclaration": 31793, "src": "3626:15:31", "typeDescriptions": { "typeIdentifier": "t_address", @@ -6487,7 +6567,7 @@ "typeString": "address" } ], - "id": 31778, + "id": 31807, "isConstant": false, "isLValue": false, "isPure": true, @@ -6499,14 +6579,14 @@ "typeString": "type(uint160)" }, "typeName": { - "id": 31777, + "id": 31806, "name": "uint160", "nodeType": "ElementaryTypeName", "src": "3618:7:31", "typeDescriptions": {} } }, - "id": 31780, + "id": 31809, "isConstant": false, "isLValue": false, "isPure": false, @@ -6530,7 +6610,7 @@ "typeString": "uint160" } ], - "id": 31776, + "id": 31805, "isConstant": false, "isLValue": false, "isPure": true, @@ -6542,14 +6622,14 @@ "typeString": "type(uint256)" }, "typeName": { - "id": 31775, + "id": 31804, "name": "uint256", "nodeType": "ElementaryTypeName", "src": "3610:7:31", "typeDescriptions": {} } }, - "id": 31781, + "id": 31810, "isConstant": false, "isLValue": false, "isPure": false, @@ -6573,18 +6653,18 @@ "typeString": "uint256" } ], - "id": 31774, + "id": 31803, "name": "_renderCell", "nodeType": "Identifier", "overloadedDeclarations": [], - "referencedDeclaration": 31948, + "referencedDeclaration": 31977, "src": "3598:11:31", "typeDescriptions": { "typeIdentifier": "t_function_internal_view$_t_uint256_$returns$_t_bytes_memory_ptr_$", "typeString": "function (uint256) view returns (bytes memory)" } }, - "id": 31782, + "id": 31811, "isConstant": false, "isLValue": false, "isPure": false, @@ -6612,7 +6692,7 @@ "arguments": [ { "hexValue": "30", - "id": 31790, + "id": 31819, "isConstant": false, "isLValue": false, "isPure": true, @@ -6635,18 +6715,18 @@ } ], "expression": { - "id": 31788, + "id": 31817, "name": "renderedContractAddressResult", "nodeType": "Identifier", "overloadedDeclarations": [], - "referencedDeclaration": 31773, + "referencedDeclaration": 31802, "src": "3681:29:31", "typeDescriptions": { "typeIdentifier": "t_bytes_memory_ptr", "typeString": "bytes memory" } }, - "id": 31789, + "id": 31818, "isConstant": false, "isLValue": false, "isPure": false, @@ -6657,11 +6737,11 @@ "referencedDeclaration": 706, "src": "3681:39:31", "typeDescriptions": { - "typeIdentifier": "t_function_delegatecall_pure$_t_bytes_memory_ptr_$_t_uint256_$returns$_t_uint256_$bound_to$_t_bytes_memory_ptr_$", + "typeIdentifier": "t_function_delegatecall_pure$_t_bytes_memory_ptr_$_t_uint256_$returns$_t_uint256_$attached_to$_t_bytes_memory_ptr_$", "typeString": "function (bytes memory,uint256) pure returns (uint256)" } }, - "id": 31791, + "id": 31820, "isConstant": false, "isLValue": false, "isPure": false, @@ -6685,7 +6765,7 @@ "typeString": "uint256" } ], - "id": 31787, + "id": 31816, "isConstant": false, "isLValue": false, "isPure": true, @@ -6697,14 +6777,14 @@ "typeString": "type(uint160)" }, "typeName": { - "id": 31786, + "id": 31815, "name": "uint160", "nodeType": "ElementaryTypeName", "src": "3673:7:31", "typeDescriptions": {} } }, - "id": 31792, + "id": 31821, "isConstant": false, "isLValue": false, "isPure": false, @@ -6728,7 +6808,7 @@ "typeString": "uint160" } ], - "id": 31785, + "id": 31814, "isConstant": false, "isLValue": false, "isPure": true, @@ -6740,14 +6820,14 @@ "typeString": "type(address)" }, "typeName": { - "id": 31784, + "id": 31813, "name": "address", "nodeType": "ElementaryTypeName", "src": "3665:7:31", "typeDescriptions": {} } }, - "id": 31793, + "id": 31822, "isConstant": false, "isLValue": false, "isPure": false, @@ -6763,8 +6843,8 @@ "typeString": "address" } }, - "functionReturnParameters": 31768, - "id": 31794, + "functionReturnParameters": 31797, + "id": 31823, "nodeType": "Return", "src": "3658:67:31" } @@ -6780,17 +6860,17 @@ "name": "_renderContractAddress", "nameLocation": "3403:22:31", "parameters": { - "id": 31765, + "id": 31794, "nodeType": "ParameterList", "parameters": [ { "constant": false, - "id": 31764, + "id": 31793, "mutability": "mutable", "name": "contractAddress", "nameLocation": "3434:15:31", "nodeType": "VariableDeclaration", - "scope": 31801, + "scope": 31830, "src": "3426:23:31", "stateVariable": false, "storageLocation": "default", @@ -6799,7 +6879,7 @@ "typeString": "address" }, "typeName": { - "id": 31763, + "id": 31792, "name": "address", "nodeType": "ElementaryTypeName", "src": "3426:7:31", @@ -6815,17 +6895,17 @@ "src": "3425:25:31" }, "returnParameters": { - "id": 31768, + "id": 31797, "nodeType": "ParameterList", "parameters": [ { "constant": false, - "id": 31767, + "id": 31796, "mutability": "mutable", "name": "", "nameLocation": "-1:-1:-1", "nodeType": "VariableDeclaration", - "scope": 31801, + "scope": 31830, "src": "3472:7:31", "stateVariable": false, "storageLocation": "default", @@ -6834,7 +6914,7 @@ "typeString": "address" }, "typeName": { - "id": 31766, + "id": 31795, "name": "address", "nodeType": "ElementaryTypeName", "src": "3472:7:31", @@ -6849,18 +6929,18 @@ ], "src": "3471:9:31" }, - "scope": 32045, + "scope": 32074, "stateMutability": "view", "virtual": false, "visibility": "public" }, { - "id": 31814, + "id": 31843, "nodeType": "FunctionDefinition", "src": "3801:112:31", "nodes": [], "body": { - "id": 31813, + "id": 31842, "nodeType": "Block", "src": "3873:40:31", "nodes": [], @@ -6869,11 +6949,11 @@ "expression": { "arguments": [ { - "id": 31810, + "id": 31839, "name": "selector", "nodeType": "Identifier", "overloadedDeclarations": [], - "referencedDeclaration": 31803, + "referencedDeclaration": 31832, "src": "3897:8:31", "typeDescriptions": { "typeIdentifier": "t_bytes32", @@ -6888,7 +6968,7 @@ "typeString": "bytes32" } ], - "id": 31809, + "id": 31838, "isConstant": false, "isLValue": false, "isPure": true, @@ -6900,14 +6980,14 @@ "typeString": "type(bytes4)" }, "typeName": { - "id": 31808, + "id": 31837, "name": "bytes4", "nodeType": "ElementaryTypeName", "src": "3890:6:31", "typeDescriptions": {} } }, - "id": 31811, + "id": 31840, "isConstant": false, "isLValue": false, "isPure": false, @@ -6923,8 +7003,8 @@ "typeString": "bytes4" } }, - "functionReturnParameters": 31807, - "id": 31812, + "functionReturnParameters": 31836, + "id": 31841, "nodeType": "Return", "src": "3883:23:31" } @@ -6937,17 +7017,17 @@ "name": "_renderSelector", "nameLocation": "3810:15:31", "parameters": { - "id": 31804, + "id": 31833, "nodeType": "ParameterList", "parameters": [ { "constant": false, - "id": 31803, + "id": 31832, "mutability": "mutable", "name": "selector", "nameLocation": "3834:8:31", "nodeType": "VariableDeclaration", - "scope": 31814, + "scope": 31843, "src": "3826:16:31", "stateVariable": false, "storageLocation": "default", @@ -6956,7 +7036,7 @@ "typeString": "bytes32" }, "typeName": { - "id": 31802, + "id": 31831, "name": "bytes32", "nodeType": "ElementaryTypeName", "src": "3826:7:31", @@ -6971,17 +7051,17 @@ "src": "3825:18:31" }, "returnParameters": { - "id": 31807, + "id": 31836, "nodeType": "ParameterList", "parameters": [ { "constant": false, - "id": 31806, + "id": 31835, "mutability": "mutable", "name": "", "nameLocation": "-1:-1:-1", "nodeType": "VariableDeclaration", - "scope": 31814, + "scope": 31843, "src": "3865:6:31", "stateVariable": false, "storageLocation": "default", @@ -6990,7 +7070,7 @@ "typeString": "bytes4" }, "typeName": { - "id": 31805, + "id": 31834, "name": "bytes4", "nodeType": "ElementaryTypeName", "src": "3865:6:31", @@ -7004,35 +7084,35 @@ ], "src": "3864:8:31" }, - "scope": 32045, + "scope": 32074, "stateMutability": "pure", "virtual": false, "visibility": "public" }, { - "id": 31889, + "id": 31918, "nodeType": "FunctionDefinition", "src": "3919:624:31", "nodes": [], "body": { - "id": 31888, + "id": 31917, "nodeType": "Block", "src": "4002:541:31", "nodes": [], "statements": [ { "assignments": [ - 31825 + 31854 ], "declarations": [ { "constant": false, - "id": 31825, + "id": 31854, "mutability": "mutable", "name": "callDataUint256", "nameLocation": "4029:15:31", "nodeType": "VariableDeclaration", - "scope": 31888, + "scope": 31917, "src": "4012:32:31", "stateVariable": false, "storageLocation": "memory", @@ -7042,7 +7122,7 @@ }, "typeName": { "baseType": { - "id": 31823, + "id": 31852, "name": "uint256", "nodeType": "ElementaryTypeName", "src": "4012:7:31", @@ -7051,7 +7131,7 @@ "typeString": "uint256" } }, - "id": 31824, + "id": 31853, "nodeType": "ArrayTypeName", "src": "4012:9:31", "typeDescriptions": { @@ -7062,15 +7142,15 @@ "visibility": "internal" } ], - "id": 31829, + "id": 31858, "initialValue": { "arguments": [ { - "id": 31827, + "id": 31856, "name": "callData", "nodeType": "Identifier", "overloadedDeclarations": [], - "referencedDeclaration": 31816, + "referencedDeclaration": 31845, "src": "4069:8:31", "typeDescriptions": { "typeIdentifier": "t_bytes_memory_ptr", @@ -7085,18 +7165,18 @@ "typeString": "bytes memory" } ], - "id": 31826, + "id": 31855, "name": "callData2Uint256Array", "nodeType": "Identifier", "overloadedDeclarations": [], - "referencedDeclaration": 31746, + "referencedDeclaration": 31775, "src": "4047:21:31", "typeDescriptions": { "typeIdentifier": "t_function_internal_pure$_t_bytes_memory_ptr_$returns$_t_array$_t_uint256_$dyn_memory_ptr_$", "typeString": "function (bytes memory) pure returns (uint256[] memory)" } }, - "id": 31828, + "id": 31857, "isConstant": false, "isLValue": false, "isPure": false, @@ -7117,17 +7197,17 @@ }, { "assignments": [ - 31831 + 31860 ], "declarations": [ { "constant": false, - "id": 31831, + "id": 31860, "mutability": "mutable", "name": "renderedCallData", "nameLocation": "4101:16:31", "nodeType": "VariableDeclaration", - "scope": 31888, + "scope": 31917, "src": "4088:29:31", "stateVariable": false, "storageLocation": "memory", @@ -7136,7 +7216,7 @@ "typeString": "bytes" }, "typeName": { - "id": 31830, + "id": 31859, "name": "bytes", "nodeType": "ElementaryTypeName", "src": "4088:5:31", @@ -7148,30 +7228,30 @@ "visibility": "internal" } ], - "id": 31832, + "id": 31861, "nodeType": "VariableDeclarationStatement", "src": "4088:29:31" }, { "body": { - "id": 31884, + "id": 31913, "nodeType": "Block", "src": "4180:324:31", "statements": [ { "assignments": [ - 31845, - 31847 + 31874, + 31876 ], "declarations": [ { "constant": false, - "id": 31845, + "id": 31874, "mutability": "mutable", "name": "isToken", "nameLocation": "4200:7:31", "nodeType": "VariableDeclaration", - "scope": 31884, + "scope": 31913, "src": "4195:12:31", "stateVariable": false, "storageLocation": "default", @@ -7180,7 +7260,7 @@ "typeString": "bool" }, "typeName": { - "id": 31844, + "id": 31873, "name": "bool", "nodeType": "ElementaryTypeName", "src": "4195:4:31", @@ -7193,12 +7273,12 @@ }, { "constant": false, - "id": 31847, + "id": 31876, "mutability": "mutable", "name": "arg", "nameLocation": "4217:3:31", "nodeType": "VariableDeclaration", - "scope": 31884, + "scope": 31913, "src": "4209:11:31", "stateVariable": false, "storageLocation": "default", @@ -7207,7 +7287,7 @@ "typeString": "uint256" }, "typeName": { - "id": 31846, + "id": 31875, "name": "uint256", "nodeType": "ElementaryTypeName", "src": "4209:7:31", @@ -7219,29 +7299,29 @@ "visibility": "internal" } ], - "id": 31853, + "id": 31882, "initialValue": { "arguments": [ { "baseExpression": { - "id": 31849, + "id": 31878, "name": "callDataUint256", "nodeType": "Identifier", "overloadedDeclarations": [], - "referencedDeclaration": 31825, + "referencedDeclaration": 31854, "src": "4237:15:31", "typeDescriptions": { "typeIdentifier": "t_array$_t_uint256_$dyn_memory_ptr", "typeString": "uint256[] memory" } }, - "id": 31851, + "id": 31880, "indexExpression": { - "id": 31850, + "id": 31879, "name": "i", "nodeType": "Identifier", "overloadedDeclarations": [], - "referencedDeclaration": 31834, + "referencedDeclaration": 31863, "src": "4253:1:31", "typeDescriptions": { "typeIdentifier": "t_uint256", @@ -7267,18 +7347,18 @@ "typeString": "uint256" } ], - "id": 31848, + "id": 31877, "name": "_renderValue", "nodeType": "Identifier", "overloadedDeclarations": [], - "referencedDeclaration": 31710, + "referencedDeclaration": 31739, "src": "4224:12:31", "typeDescriptions": { "typeIdentifier": "t_function_internal_pure$_t_uint256_$returns$_t_bool_$_t_uint256_$", "typeString": "function (uint256) pure returns (bool,uint256)" } }, - "id": 31852, + "id": 31881, "isConstant": false, "isLValue": false, "isPure": false, @@ -7299,11 +7379,11 @@ }, { "condition": { - "id": 31854, + "id": 31883, "name": "isToken", "nodeType": "Identifier", "overloadedDeclarations": [], - "referencedDeclaration": 31845, + "referencedDeclaration": 31874, "src": "4274:7:31", "typeDescriptions": { "typeIdentifier": "t_bool", @@ -7311,23 +7391,23 @@ } }, "falseBody": { - "id": 31882, + "id": 31911, "nodeType": "Block", "src": "4398:96:31", "statements": [ { "expression": { - "id": 31880, + "id": 31909, "isConstant": false, "isLValue": false, "isPure": false, "lValueRequested": false, "leftHandSide": { - "id": 31870, + "id": 31899, "name": "renderedCallData", "nodeType": "Identifier", "overloadedDeclarations": [], - "referencedDeclaration": 31831, + "referencedDeclaration": 31860, "src": "4416:16:31", "typeDescriptions": { "typeIdentifier": "t_bytes_memory_ptr", @@ -7339,11 +7419,11 @@ "rightHandSide": { "arguments": [ { - "id": 31874, + "id": 31903, "name": "renderedCallData", "nodeType": "Identifier", "overloadedDeclarations": [], - "referencedDeclaration": 31831, + "referencedDeclaration": 31860, "src": "4448:16:31", "typeDescriptions": { "typeIdentifier": "t_bytes_memory_ptr", @@ -7353,11 +7433,11 @@ { "arguments": [ { - "id": 31877, + "id": 31906, "name": "arg", "nodeType": "Identifier", "overloadedDeclarations": [], - "referencedDeclaration": 31847, + "referencedDeclaration": 31876, "src": "4474:3:31", "typeDescriptions": { "typeIdentifier": "t_uint256", @@ -7372,7 +7452,7 @@ "typeString": "uint256" } ], - "id": 31876, + "id": 31905, "isConstant": false, "isLValue": false, "isPure": true, @@ -7384,14 +7464,14 @@ "typeString": "type(bytes32)" }, "typeName": { - "id": 31875, + "id": 31904, "name": "bytes32", "nodeType": "ElementaryTypeName", "src": "4466:7:31", "typeDescriptions": {} } }, - "id": 31878, + "id": 31907, "isConstant": false, "isLValue": false, "isPure": false, @@ -7420,7 +7500,7 @@ } ], "expression": { - "id": 31872, + "id": 31901, "isConstant": false, "isLValue": false, "isPure": true, @@ -7432,14 +7512,14 @@ "typeString": "type(bytes storage pointer)" }, "typeName": { - "id": 31871, + "id": 31900, "name": "bytes", "nodeType": "ElementaryTypeName", "src": "4435:5:31", "typeDescriptions": {} } }, - "id": 31873, + "id": 31902, "isConstant": false, "isLValue": false, "isPure": false, @@ -7453,7 +7533,7 @@ "typeString": "function () pure returns (bytes memory)" } }, - "id": 31879, + "id": 31908, "isConstant": false, "isLValue": false, "isPure": false, @@ -7475,33 +7555,33 @@ "typeString": "bytes memory" } }, - "id": 31881, + "id": 31910, "nodeType": "ExpressionStatement", "src": "4416:63:31" } ] }, - "id": 31883, + "id": 31912, "nodeType": "IfStatement", "src": "4270:224:31", "trueBody": { - "id": 31869, + "id": 31898, "nodeType": "Block", "src": "4283:109:31", "statements": [ { "expression": { - "id": 31867, + "id": 31896, "isConstant": false, "isLValue": false, "isPure": false, "lValueRequested": false, "leftHandSide": { - "id": 31855, + "id": 31884, "name": "renderedCallData", "nodeType": "Identifier", "overloadedDeclarations": [], - "referencedDeclaration": 31831, + "referencedDeclaration": 31860, "src": "4301:16:31", "typeDescriptions": { "typeIdentifier": "t_bytes_memory_ptr", @@ -7513,11 +7593,11 @@ "rightHandSide": { "arguments": [ { - "id": 31859, + "id": 31888, "name": "renderedCallData", "nodeType": "Identifier", "overloadedDeclarations": [], - "referencedDeclaration": 31831, + "referencedDeclaration": 31860, "src": "4333:16:31", "typeDescriptions": { "typeIdentifier": "t_bytes_memory_ptr", @@ -7529,11 +7609,11 @@ { "arguments": [ { - "id": 31863, + "id": 31892, "name": "arg", "nodeType": "Identifier", "overloadedDeclarations": [], - "referencedDeclaration": 31847, + "referencedDeclaration": 31876, "src": "4371:3:31", "typeDescriptions": { "typeIdentifier": "t_uint256", @@ -7548,18 +7628,18 @@ "typeString": "uint256" } ], - "id": 31862, + "id": 31891, "name": "_renderCell", "nodeType": "Identifier", "overloadedDeclarations": [], - "referencedDeclaration": 31948, + "referencedDeclaration": 31977, "src": "4359:11:31", "typeDescriptions": { "typeIdentifier": "t_function_internal_view$_t_uint256_$returns$_t_bytes_memory_ptr_$", "typeString": "function (uint256) view returns (bytes memory)" } }, - "id": 31864, + "id": 31893, "isConstant": false, "isLValue": false, "isPure": false, @@ -7583,7 +7663,7 @@ "typeString": "bytes memory" } ], - "id": 31861, + "id": 31890, "isConstant": false, "isLValue": false, "isPure": true, @@ -7595,14 +7675,14 @@ "typeString": "type(bytes32)" }, "typeName": { - "id": 31860, + "id": 31889, "name": "bytes32", "nodeType": "ElementaryTypeName", "src": "4351:7:31", "typeDescriptions": {} } }, - "id": 31865, + "id": 31894, "isConstant": false, "isLValue": false, "isPure": false, @@ -7631,7 +7711,7 @@ } ], "expression": { - "id": 31857, + "id": 31886, "isConstant": false, "isLValue": false, "isPure": true, @@ -7643,14 +7723,14 @@ "typeString": "type(bytes storage pointer)" }, "typeName": { - "id": 31856, + "id": 31885, "name": "bytes", "nodeType": "ElementaryTypeName", "src": "4320:5:31", "typeDescriptions": {} } }, - "id": 31858, + "id": 31887, "isConstant": false, "isLValue": false, "isPure": false, @@ -7664,7 +7744,7 @@ "typeString": "function () pure returns (bytes memory)" } }, - "id": 31866, + "id": 31895, "isConstant": false, "isLValue": false, "isPure": false, @@ -7686,7 +7766,7 @@ "typeString": "bytes memory" } }, - "id": 31868, + "id": 31897, "nodeType": "ExpressionStatement", "src": "4301:76:31" } @@ -7700,17 +7780,17 @@ "typeIdentifier": "t_uint256", "typeString": "uint256" }, - "id": 31840, + "id": 31869, "isConstant": false, "isLValue": false, "isPure": false, "lValueRequested": false, "leftExpression": { - "id": 31837, + "id": 31866, "name": "i", "nodeType": "Identifier", "overloadedDeclarations": [], - "referencedDeclaration": 31834, + "referencedDeclaration": 31863, "src": "4147:1:31", "typeDescriptions": { "typeIdentifier": "t_uint256", @@ -7721,18 +7801,18 @@ "operator": "<", "rightExpression": { "expression": { - "id": 31838, + "id": 31867, "name": "callDataUint256", "nodeType": "Identifier", "overloadedDeclarations": [], - "referencedDeclaration": 31825, + "referencedDeclaration": 31854, "src": "4151:15:31", "typeDescriptions": { "typeIdentifier": "t_array$_t_uint256_$dyn_memory_ptr", "typeString": "uint256[] memory" } }, - "id": 31839, + "id": 31868, "isConstant": false, "isLValue": false, "isPure": false, @@ -7752,20 +7832,20 @@ "typeString": "bool" } }, - "id": 31885, + "id": 31914, "initializationExpression": { "assignments": [ - 31834 + 31863 ], "declarations": [ { "constant": false, - "id": 31834, + "id": 31863, "mutability": "mutable", "name": "i", "nameLocation": "4140:1:31", "nodeType": "VariableDeclaration", - "scope": 31885, + "scope": 31914, "src": "4132:9:31", "stateVariable": false, "storageLocation": "default", @@ -7774,7 +7854,7 @@ "typeString": "uint256" }, "typeName": { - "id": 31833, + "id": 31862, "name": "uint256", "nodeType": "ElementaryTypeName", "src": "4132:7:31", @@ -7786,10 +7866,10 @@ "visibility": "internal" } ], - "id": 31836, + "id": 31865, "initialValue": { "hexValue": "30", - "id": 31835, + "id": 31864, "isConstant": false, "isLValue": false, "isPure": true, @@ -7808,7 +7888,7 @@ }, "loopExpression": { "expression": { - "id": 31842, + "id": 31871, "isConstant": false, "isLValue": false, "isPure": false, @@ -7818,11 +7898,11 @@ "prefix": false, "src": "4175:3:31", "subExpression": { - "id": 31841, + "id": 31870, "name": "i", "nodeType": "Identifier", "overloadedDeclarations": [], - "referencedDeclaration": 31834, + "referencedDeclaration": 31863, "src": "4175:1:31", "typeDescriptions": { "typeIdentifier": "t_uint256", @@ -7834,7 +7914,7 @@ "typeString": "uint256" } }, - "id": 31843, + "id": 31872, "nodeType": "ExpressionStatement", "src": "4175:3:31" }, @@ -7843,19 +7923,19 @@ }, { "expression": { - "id": 31886, + "id": 31915, "name": "renderedCallData", "nodeType": "Identifier", "overloadedDeclarations": [], - "referencedDeclaration": 31831, + "referencedDeclaration": 31860, "src": "4520:16:31", "typeDescriptions": { "typeIdentifier": "t_bytes_memory_ptr", "typeString": "bytes memory" } }, - "functionReturnParameters": 31820, - "id": 31887, + "functionReturnParameters": 31849, + "id": 31916, "nodeType": "Return", "src": "4513:23:31" } @@ -7868,17 +7948,17 @@ "name": "_renderCallData", "nameLocation": "3928:15:31", "parameters": { - "id": 31817, + "id": 31846, "nodeType": "ParameterList", "parameters": [ { "constant": false, - "id": 31816, + "id": 31845, "mutability": "mutable", "name": "callData", "nameLocation": "3957:8:31", "nodeType": "VariableDeclaration", - "scope": 31889, + "scope": 31918, "src": "3944:21:31", "stateVariable": false, "storageLocation": "memory", @@ -7887,7 +7967,7 @@ "typeString": "bytes" }, "typeName": { - "id": 31815, + "id": 31844, "name": "bytes", "nodeType": "ElementaryTypeName", "src": "3944:5:31", @@ -7902,17 +7982,17 @@ "src": "3943:23:31" }, "returnParameters": { - "id": 31820, + "id": 31849, "nodeType": "ParameterList", "parameters": [ { "constant": false, - "id": 31819, + "id": 31848, "mutability": "mutable", "name": "", "nameLocation": "-1:-1:-1", "nodeType": "VariableDeclaration", - "scope": 31889, + "scope": 31918, "src": "3988:12:31", "stateVariable": false, "storageLocation": "memory", @@ -7921,7 +8001,7 @@ "typeString": "bytes" }, "typeName": { - "id": 31818, + "id": 31847, "name": "bytes", "nodeType": "ElementaryTypeName", "src": "3988:5:31", @@ -7935,86 +8015,86 @@ ], "src": "3987:14:31" }, - "scope": 32045, + "scope": 32074, "stateMutability": "view", "virtual": false, "visibility": "public" }, { - "id": 31948, + "id": 31977, "nodeType": "FunctionDefinition", "src": "4549:544:31", "nodes": [], "body": { - "id": 31947, + "id": 31976, "nodeType": "Block", "src": "4620:473:31", "nodes": [], "statements": [ { "assignments": [ - 31898 + 31927 ], "declarations": [ { "constant": false, - "id": 31898, + "id": 31927, "mutability": "mutable", "name": "cell", "nameLocation": "4646:4:31", "nodeType": "VariableDeclaration", - "scope": 31947, + "scope": 31976, "src": "4630:20:31", "stateVariable": false, "storageLocation": "memory", "typeDescriptions": { - "typeIdentifier": "t_struct$_CellData_$31465_memory_ptr", + "typeIdentifier": "t_struct$_CellData_$31494_memory_ptr", "typeString": "struct CellData" }, "typeName": { - "id": 31897, + "id": 31926, "nodeType": "UserDefinedTypeName", "pathNode": { - "id": 31896, + "id": 31925, "name": "CellData", "nameLocations": [ "4630:8:31" ], "nodeType": "IdentifierPath", - "referencedDeclaration": 31465, + "referencedDeclaration": 31494, "src": "4630:8:31" }, - "referencedDeclaration": 31465, + "referencedDeclaration": 31494, "src": "4630:8:31", "typeDescriptions": { - "typeIdentifier": "t_struct$_CellData_$31465_storage_ptr", + "typeIdentifier": "t_struct$_CellData_$31494_storage_ptr", "typeString": "struct CellData" } }, "visibility": "internal" } ], - "id": 31902, + "id": 31931, "initialValue": { "baseExpression": { - "id": 31899, + "id": 31928, "name": "cells", "nodeType": "Identifier", "overloadedDeclarations": [], - "referencedDeclaration": 31540, + "referencedDeclaration": 31569, "src": "4653:5:31", "typeDescriptions": { - "typeIdentifier": "t_mapping$_t_uint256_$_t_struct$_CellData_$31465_storage_$", + "typeIdentifier": "t_mapping$_t_uint256_$_t_struct$_CellData_$31494_storage_$", "typeString": "mapping(uint256 => struct CellData storage ref)" } }, - "id": 31901, + "id": 31930, "indexExpression": { - "id": 31900, + "id": 31929, "name": "value", "nodeType": "Identifier", "overloadedDeclarations": [], - "referencedDeclaration": 31891, + "referencedDeclaration": 31920, "src": "4659:5:31", "typeDescriptions": { "typeIdentifier": "t_uint256", @@ -8028,7 +8108,7 @@ "nodeType": "IndexAccess", "src": "4653:12:31", "typeDescriptions": { - "typeIdentifier": "t_struct$_CellData_$31465_storage", + "typeIdentifier": "t_struct$_CellData_$31494_storage", "typeString": "struct CellData storage ref" } }, @@ -8039,14 +8119,14 @@ "condition": { "arguments": [ { - "id": 31904, + "id": 31933, "name": "cell", "nodeType": "Identifier", "overloadedDeclarations": [], - "referencedDeclaration": 31898, + "referencedDeclaration": 31927, "src": "4692:4:31", "typeDescriptions": { - "typeIdentifier": "t_struct$_CellData_$31465_memory_ptr", + "typeIdentifier": "t_struct$_CellData_$31494_memory_ptr", "typeString": "struct CellData memory" } } @@ -8054,22 +8134,22 @@ "expression": { "argumentTypes": [ { - "typeIdentifier": "t_struct$_CellData_$31465_memory_ptr", + "typeIdentifier": "t_struct$_CellData_$31494_memory_ptr", "typeString": "struct CellData memory" } ], - "id": 31903, + "id": 31932, "name": "_isConstant", "nodeType": "Identifier", "overloadedDeclarations": [], - "referencedDeclaration": 31690, + "referencedDeclaration": 31719, "src": "4680:11:31", "typeDescriptions": { - "typeIdentifier": "t_function_internal_pure$_t_struct$_CellData_$31465_memory_ptr_$returns$_t_bool_$", + "typeIdentifier": "t_function_internal_pure$_t_struct$_CellData_$31494_memory_ptr_$returns$_t_bool_$", "typeString": "function (struct CellData memory) pure returns (bool)" } }, - "id": 31905, + "id": 31934, "isConstant": false, "isLValue": false, "isPure": false, @@ -8085,11 +8165,11 @@ "typeString": "bool" } }, - "id": 31911, + "id": 31940, "nodeType": "IfStatement", "src": "4676:80:31", "trueBody": { - "id": 31910, + "id": 31939, "nodeType": "Block", "src": "4699:57:31", "statements": [ @@ -8097,14 +8177,14 @@ "expression": { "arguments": [ { - "id": 31907, + "id": 31936, "name": "cell", "nodeType": "Identifier", "overloadedDeclarations": [], - "referencedDeclaration": 31898, + "referencedDeclaration": 31927, "src": "4740:4:31", "typeDescriptions": { - "typeIdentifier": "t_struct$_CellData_$31465_memory_ptr", + "typeIdentifier": "t_struct$_CellData_$31494_memory_ptr", "typeString": "struct CellData memory" } } @@ -8112,22 +8192,22 @@ "expression": { "argumentTypes": [ { - "typeIdentifier": "t_struct$_CellData_$31465_memory_ptr", + "typeIdentifier": "t_struct$_CellData_$31494_memory_ptr", "typeString": "struct CellData memory" } ], - "id": 31906, + "id": 31935, "name": "_renderConstantCell", "nodeType": "Identifier", "overloadedDeclarations": [], - "referencedDeclaration": 31762, + "referencedDeclaration": 31791, "src": "4720:19:31", "typeDescriptions": { - "typeIdentifier": "t_function_internal_pure$_t_struct$_CellData_$31465_memory_ptr_$returns$_t_bytes_memory_ptr_$", + "typeIdentifier": "t_function_internal_pure$_t_struct$_CellData_$31494_memory_ptr_$returns$_t_bytes_memory_ptr_$", "typeString": "function (struct CellData memory) pure returns (bytes memory)" } }, - "id": 31908, + "id": 31937, "isConstant": false, "isLValue": false, "isPure": false, @@ -8143,8 +8223,8 @@ "typeString": "bytes memory" } }, - "functionReturnParameters": 31895, - "id": 31909, + "functionReturnParameters": 31924, + "id": 31938, "nodeType": "Return", "src": "4713:32:31" } @@ -8153,17 +8233,17 @@ }, { "assignments": [ - 31913 + 31942 ], "declarations": [ { "constant": false, - "id": 31913, + "id": 31942, "mutability": "mutable", "name": "renderedContractAddress", "nameLocation": "4774:23:31", "nodeType": "VariableDeclaration", - "scope": 31947, + "scope": 31976, "src": "4766:31:31", "stateVariable": false, "storageLocation": "default", @@ -8172,7 +8252,7 @@ "typeString": "address" }, "typeName": { - "id": 31912, + "id": 31941, "name": "address", "nodeType": "ElementaryTypeName", "src": "4766:7:31", @@ -8185,23 +8265,23 @@ "visibility": "internal" } ], - "id": 31918, + "id": 31947, "initialValue": { "arguments": [ { "expression": { - "id": 31915, + "id": 31944, "name": "cell", "nodeType": "Identifier", "overloadedDeclarations": [], - "referencedDeclaration": 31898, + "referencedDeclaration": 31927, "src": "4823:4:31", "typeDescriptions": { - "typeIdentifier": "t_struct$_CellData_$31465_memory_ptr", + "typeIdentifier": "t_struct$_CellData_$31494_memory_ptr", "typeString": "struct CellData memory" } }, - "id": 31916, + "id": 31945, "isConstant": false, "isLValue": true, "isPure": false, @@ -8209,7 +8289,7 @@ "memberLocation": "4828:15:31", "memberName": "contractAddress", "nodeType": "MemberAccess", - "referencedDeclaration": 31460, + "referencedDeclaration": 31489, "src": "4823:20:31", "typeDescriptions": { "typeIdentifier": "t_address", @@ -8224,18 +8304,18 @@ "typeString": "address" } ], - "id": 31914, + "id": 31943, "name": "_renderContractAddress", "nodeType": "Identifier", "overloadedDeclarations": [], - "referencedDeclaration": 31801, + "referencedDeclaration": 31830, "src": "4800:22:31", "typeDescriptions": { "typeIdentifier": "t_function_internal_view$_t_address_$returns$_t_address_$", "typeString": "function (address) view returns (address)" } }, - "id": 31917, + "id": 31946, "isConstant": false, "isLValue": false, "isPure": false, @@ -8256,17 +8336,17 @@ }, { "assignments": [ - 31920 + 31949 ], "declarations": [ { "constant": false, - "id": 31920, + "id": 31949, "mutability": "mutable", "name": "selector", "nameLocation": "4861:8:31", "nodeType": "VariableDeclaration", - "scope": 31947, + "scope": 31976, "src": "4854:15:31", "stateVariable": false, "storageLocation": "default", @@ -8275,7 +8355,7 @@ "typeString": "bytes4" }, "typeName": { - "id": 31919, + "id": 31948, "name": "bytes4", "nodeType": "ElementaryTypeName", "src": "4854:6:31", @@ -8287,23 +8367,23 @@ "visibility": "internal" } ], - "id": 31925, + "id": 31954, "initialValue": { "arguments": [ { "expression": { - "id": 31922, + "id": 31951, "name": "cell", "nodeType": "Identifier", "overloadedDeclarations": [], - "referencedDeclaration": 31898, + "referencedDeclaration": 31927, "src": "4888:4:31", "typeDescriptions": { - "typeIdentifier": "t_struct$_CellData_$31465_memory_ptr", + "typeIdentifier": "t_struct$_CellData_$31494_memory_ptr", "typeString": "struct CellData memory" } }, - "id": 31923, + "id": 31952, "isConstant": false, "isLValue": true, "isPure": false, @@ -8311,7 +8391,7 @@ "memberLocation": "4893:5:31", "memberName": "value", "nodeType": "MemberAccess", - "referencedDeclaration": 31462, + "referencedDeclaration": 31491, "src": "4888:10:31", "typeDescriptions": { "typeIdentifier": "t_bytes32", @@ -8326,18 +8406,18 @@ "typeString": "bytes32" } ], - "id": 31921, + "id": 31950, "name": "_renderSelector", "nodeType": "Identifier", "overloadedDeclarations": [], - "referencedDeclaration": 31814, + "referencedDeclaration": 31843, "src": "4872:15:31", "typeDescriptions": { "typeIdentifier": "t_function_internal_pure$_t_bytes32_$returns$_t_bytes4_$", "typeString": "function (bytes32) pure returns (bytes4)" } }, - "id": 31924, + "id": 31953, "isConstant": false, "isLValue": false, "isPure": false, @@ -8358,17 +8438,17 @@ }, { "assignments": [ - 31927 + 31956 ], "declarations": [ { "constant": false, - "id": 31927, + "id": 31956, "mutability": "mutable", "name": "callData", "nameLocation": "4922:8:31", "nodeType": "VariableDeclaration", - "scope": 31947, + "scope": 31976, "src": "4909:21:31", "stateVariable": false, "storageLocation": "memory", @@ -8377,7 +8457,7 @@ "typeString": "bytes" }, "typeName": { - "id": 31926, + "id": 31955, "name": "bytes", "nodeType": "ElementaryTypeName", "src": "4909:5:31", @@ -8389,23 +8469,23 @@ "visibility": "internal" } ], - "id": 31932, + "id": 31961, "initialValue": { "arguments": [ { "expression": { - "id": 31929, + "id": 31958, "name": "cell", "nodeType": "Identifier", "overloadedDeclarations": [], - "referencedDeclaration": 31898, + "referencedDeclaration": 31927, "src": "4949:4:31", "typeDescriptions": { - "typeIdentifier": "t_struct$_CellData_$31465_memory_ptr", + "typeIdentifier": "t_struct$_CellData_$31494_memory_ptr", "typeString": "struct CellData memory" } }, - "id": 31930, + "id": 31959, "isConstant": false, "isLValue": true, "isPure": false, @@ -8413,7 +8493,7 @@ "memberLocation": "4954:4:31", "memberName": "data", "nodeType": "MemberAccess", - "referencedDeclaration": 31464, + "referencedDeclaration": 31493, "src": "4949:9:31", "typeDescriptions": { "typeIdentifier": "t_bytes_memory_ptr", @@ -8428,18 +8508,18 @@ "typeString": "bytes memory" } ], - "id": 31928, + "id": 31957, "name": "_renderCallData", "nodeType": "Identifier", "overloadedDeclarations": [], - "referencedDeclaration": 31889, + "referencedDeclaration": 31918, "src": "4933:15:31", "typeDescriptions": { "typeIdentifier": "t_function_internal_view$_t_bytes_memory_ptr_$returns$_t_bytes_memory_ptr_$", "typeString": "function (bytes memory) view returns (bytes memory)" } }, - "id": 31931, + "id": 31960, "isConstant": false, "isLValue": false, "isPure": false, @@ -8461,18 +8541,18 @@ { "assignments": [ null, - 31934 + 31963 ], "declarations": [ null, { "constant": false, - "id": 31934, + "id": 31963, "mutability": "mutable", "name": "result", "nameLocation": "4985:6:31", "nodeType": "VariableDeclaration", - "scope": 31947, + "scope": 31976, "src": "4972:19:31", "stateVariable": false, "storageLocation": "memory", @@ -8481,7 +8561,7 @@ "typeString": "bytes" }, "typeName": { - "id": 31933, + "id": 31962, "name": "bytes", "nodeType": "ElementaryTypeName", "src": "4972:5:31", @@ -8493,17 +8573,17 @@ "visibility": "internal" } ], - "id": 31944, + "id": 31973, "initialValue": { "arguments": [ { "arguments": [ { - "id": 31940, + "id": 31969, "name": "selector", "nodeType": "Identifier", "overloadedDeclarations": [], - "referencedDeclaration": 31920, + "referencedDeclaration": 31949, "src": "5043:8:31", "typeDescriptions": { "typeIdentifier": "t_bytes4", @@ -8511,11 +8591,11 @@ } }, { - "id": 31941, + "id": 31970, "name": "callData", "nodeType": "Identifier", "overloadedDeclarations": [], - "referencedDeclaration": 31927, + "referencedDeclaration": 31956, "src": "5053:8:31", "typeDescriptions": { "typeIdentifier": "t_bytes_memory_ptr", @@ -8535,7 +8615,7 @@ } ], "expression": { - "id": 31938, + "id": 31967, "isConstant": false, "isLValue": false, "isPure": true, @@ -8547,14 +8627,14 @@ "typeString": "type(bytes storage pointer)" }, "typeName": { - "id": 31937, + "id": 31966, "name": "bytes", "nodeType": "ElementaryTypeName", "src": "5030:5:31", "typeDescriptions": {} } }, - "id": 31939, + "id": 31968, "isConstant": false, "isLValue": false, "isPure": false, @@ -8568,7 +8648,7 @@ "typeString": "function () pure returns (bytes memory)" } }, - "id": 31942, + "id": 31971, "isConstant": false, "isLValue": false, "isPure": false, @@ -8593,18 +8673,18 @@ } ], "expression": { - "id": 31935, + "id": 31964, "name": "renderedContractAddress", "nodeType": "Identifier", "overloadedDeclarations": [], - "referencedDeclaration": 31913, + "referencedDeclaration": 31942, "src": "4995:23:31", "typeDescriptions": { "typeIdentifier": "t_address", "typeString": "address" } }, - "id": 31936, + "id": 31965, "isConstant": false, "isLValue": false, "isPure": false, @@ -8618,7 +8698,7 @@ "typeString": "function (bytes memory) view returns (bool,bytes memory)" } }, - "id": 31943, + "id": 31972, "isConstant": false, "isLValue": false, "isPure": false, @@ -8639,19 +8719,19 @@ }, { "expression": { - "id": 31945, + "id": 31974, "name": "result", "nodeType": "Identifier", "overloadedDeclarations": [], - "referencedDeclaration": 31934, + "referencedDeclaration": 31963, "src": "5080:6:31", "typeDescriptions": { "typeIdentifier": "t_bytes_memory_ptr", "typeString": "bytes memory" } }, - "functionReturnParameters": 31895, - "id": 31946, + "functionReturnParameters": 31924, + "id": 31975, "nodeType": "Return", "src": "5073:13:31" } @@ -8664,17 +8744,17 @@ "name": "_renderCell", "nameLocation": "4558:11:31", "parameters": { - "id": 31892, + "id": 31921, "nodeType": "ParameterList", "parameters": [ { "constant": false, - "id": 31891, + "id": 31920, "mutability": "mutable", "name": "value", "nameLocation": "4578:5:31", "nodeType": "VariableDeclaration", - "scope": 31948, + "scope": 31977, "src": "4570:13:31", "stateVariable": false, "storageLocation": "default", @@ -8683,7 +8763,7 @@ "typeString": "uint256" }, "typeName": { - "id": 31890, + "id": 31919, "name": "uint256", "nodeType": "ElementaryTypeName", "src": "4570:7:31", @@ -8698,17 +8778,17 @@ "src": "4569:15:31" }, "returnParameters": { - "id": 31895, + "id": 31924, "nodeType": "ParameterList", "parameters": [ { "constant": false, - "id": 31894, + "id": 31923, "mutability": "mutable", "name": "", "nameLocation": "-1:-1:-1", "nodeType": "VariableDeclaration", - "scope": 31948, + "scope": 31977, "src": "4606:12:31", "stateVariable": false, "storageLocation": "memory", @@ -8717,7 +8797,7 @@ "typeString": "bytes" }, "typeName": { - "id": 31893, + "id": 31922, "name": "bytes", "nodeType": "ElementaryTypeName", "src": "4606:5:31", @@ -8731,18 +8811,18 @@ ], "src": "4605:14:31" }, - "scope": 32045, + "scope": 32074, "stateMutability": "view", "virtual": false, "visibility": "public" }, { - "id": 31956, + "id": 31985, "nodeType": "FunctionDefinition", "src": "5099:42:31", "nodes": [], "body": { - "id": 31955, + "id": 31984, "nodeType": "Block", "src": "5139:2:31", "nodes": [], @@ -8755,7 +8835,7 @@ "arguments": [ { "hexValue": "53686565742030", - "id": 31951, + "id": 31980, "isConstant": false, "isLValue": false, "isPure": true, @@ -8771,7 +8851,7 @@ }, { "hexValue": "53485430", - "id": 31952, + "id": 31981, "isConstant": false, "isLValue": false, "isPure": true, @@ -8786,10 +8866,10 @@ "value": "SHT0" } ], - "id": 31953, + "id": 31982, "kind": "baseConstructorSpecifier", "modifierName": { - "id": 31950, + "id": 31979, "name": "ERC721", "nameLocations": [ "5113:6:31" @@ -8805,29 +8885,29 @@ "name": "", "nameLocation": "-1:-1:-1", "parameters": { - "id": 31949, + "id": 31978, "nodeType": "ParameterList", "parameters": [], "src": "5110:2:31" }, "returnParameters": { - "id": 31954, + "id": 31983, "nodeType": "ParameterList", "parameters": [], "src": "5139:0:31" }, - "scope": 32045, + "scope": 32074, "stateMutability": "nonpayable", "virtual": false, "visibility": "public" }, { - "id": 31973, + "id": 32002, "nodeType": "FunctionDefinition", "src": "5147:130:31", "nodes": [], "body": { - "id": 31972, + "id": 32001, "nodeType": "Block", "src": "5206:71:31", "nodes": [], @@ -8836,7 +8916,7 @@ "eventCall": { "arguments": [ { - "id": 31964, + "id": 31993, "name": "name", "nodeType": "Identifier", "overloadedDeclarations": [], @@ -8848,11 +8928,11 @@ } }, { - "id": 31965, + "id": 31994, "name": "newName", "nodeType": "Identifier", "overloadedDeclarations": [], - "referencedDeclaration": 31958, + "referencedDeclaration": 31987, "src": "5238:7:31", "typeDescriptions": { "typeIdentifier": "t_string_calldata_ptr", @@ -8871,18 +8951,18 @@ "typeString": "string calldata" } ], - "id": 31963, + "id": 31992, "name": "NameUpdate", "nodeType": "Identifier", "overloadedDeclarations": [], - "referencedDeclaration": 31500, + "referencedDeclaration": 31529, "src": "5221:10:31", "typeDescriptions": { "typeIdentifier": "t_function_event_nonpayable$_t_string_memory_ptr_$_t_string_memory_ptr_$returns$__$", "typeString": "function (string memory,string memory)" } }, - "id": 31966, + "id": 31995, "isConstant": false, "isLValue": false, "isPure": false, @@ -8898,19 +8978,19 @@ "typeString": "tuple()" } }, - "id": 31967, + "id": 31996, "nodeType": "EmitStatement", "src": "5216:30:31" }, { "expression": { - "id": 31970, + "id": 31999, "isConstant": false, "isLValue": false, "isPure": false, "lValueRequested": false, "leftHandSide": { - "id": 31968, + "id": 31997, "name": "name", "nodeType": "Identifier", "overloadedDeclarations": [], @@ -8924,11 +9004,11 @@ "nodeType": "Assignment", "operator": "=", "rightHandSide": { - "id": 31969, + "id": 31998, "name": "newName", "nodeType": "Identifier", "overloadedDeclarations": [], - "referencedDeclaration": 31958, + "referencedDeclaration": 31987, "src": "5263:7:31", "typeDescriptions": { "typeIdentifier": "t_string_calldata_ptr", @@ -8941,7 +9021,7 @@ "typeString": "string storage ref" } }, - "id": 31971, + "id": 32000, "nodeType": "ExpressionStatement", "src": "5256:14:31" } @@ -8952,10 +9032,10 @@ "kind": "function", "modifiers": [ { - "id": 31961, + "id": 31990, "kind": "modifierInvocation", "modifierName": { - "id": 31960, + "id": 31989, "name": "onlyOwner", "nameLocations": [ "5196:9:31" @@ -8971,17 +9051,17 @@ "name": "setName", "nameLocation": "5156:7:31", "parameters": { - "id": 31959, + "id": 31988, "nodeType": "ParameterList", "parameters": [ { "constant": false, - "id": 31958, + "id": 31987, "mutability": "mutable", "name": "newName", "nameLocation": "5180:7:31", "nodeType": "VariableDeclaration", - "scope": 31973, + "scope": 32002, "src": "5164:23:31", "stateVariable": false, "storageLocation": "calldata", @@ -8990,7 +9070,7 @@ "typeString": "string" }, "typeName": { - "id": 31957, + "id": 31986, "name": "string", "nodeType": "ElementaryTypeName", "src": "5164:6:31", @@ -9005,23 +9085,23 @@ "src": "5163:25:31" }, "returnParameters": { - "id": 31962, + "id": 31991, "nodeType": "ParameterList", "parameters": [], "src": "5206:0:31" }, - "scope": 32045, + "scope": 32074, "stateMutability": "nonpayable", "virtual": false, "visibility": "public" }, { - "id": 31990, + "id": 32019, "nodeType": "FunctionDefinition", "src": "5283:144:31", "nodes": [], "body": { - "id": 31989, + "id": 32018, "nodeType": "Block", "src": "5346:81:31", "nodes": [], @@ -9030,7 +9110,7 @@ "eventCall": { "arguments": [ { - "id": 31981, + "id": 32010, "name": "symbol", "nodeType": "Identifier", "overloadedDeclarations": [], @@ -9042,11 +9122,11 @@ } }, { - "id": 31982, + "id": 32011, "name": "newSymbol", "nodeType": "Identifier", "overloadedDeclarations": [], - "referencedDeclaration": 31975, + "referencedDeclaration": 32004, "src": "5382:9:31", "typeDescriptions": { "typeIdentifier": "t_string_calldata_ptr", @@ -9065,18 +9145,18 @@ "typeString": "string calldata" } ], - "id": 31980, + "id": 32009, "name": "SymbolUpdate", "nodeType": "Identifier", "overloadedDeclarations": [], - "referencedDeclaration": 31506, + "referencedDeclaration": 31535, "src": "5361:12:31", "typeDescriptions": { "typeIdentifier": "t_function_event_nonpayable$_t_string_memory_ptr_$_t_string_memory_ptr_$returns$__$", "typeString": "function (string memory,string memory)" } }, - "id": 31983, + "id": 32012, "isConstant": false, "isLValue": false, "isPure": false, @@ -9092,19 +9172,19 @@ "typeString": "tuple()" } }, - "id": 31984, + "id": 32013, "nodeType": "EmitStatement", "src": "5356:36:31" }, { "expression": { - "id": 31987, + "id": 32016, "isConstant": false, "isLValue": false, "isPure": false, "lValueRequested": false, "leftHandSide": { - "id": 31985, + "id": 32014, "name": "symbol", "nodeType": "Identifier", "overloadedDeclarations": [], @@ -9118,11 +9198,11 @@ "nodeType": "Assignment", "operator": "=", "rightHandSide": { - "id": 31986, + "id": 32015, "name": "newSymbol", "nodeType": "Identifier", "overloadedDeclarations": [], - "referencedDeclaration": 31975, + "referencedDeclaration": 32004, "src": "5411:9:31", "typeDescriptions": { "typeIdentifier": "t_string_calldata_ptr", @@ -9135,7 +9215,7 @@ "typeString": "string storage ref" } }, - "id": 31988, + "id": 32017, "nodeType": "ExpressionStatement", "src": "5402:18:31" } @@ -9146,10 +9226,10 @@ "kind": "function", "modifiers": [ { - "id": 31978, + "id": 32007, "kind": "modifierInvocation", "modifierName": { - "id": 31977, + "id": 32006, "name": "onlyOwner", "nameLocations": [ "5336:9:31" @@ -9165,17 +9245,17 @@ "name": "setSymbol", "nameLocation": "5292:9:31", "parameters": { - "id": 31976, + "id": 32005, "nodeType": "ParameterList", "parameters": [ { "constant": false, - "id": 31975, + "id": 32004, "mutability": "mutable", "name": "newSymbol", "nameLocation": "5318:9:31", "nodeType": "VariableDeclaration", - "scope": 31990, + "scope": 32019, "src": "5302:25:31", "stateVariable": false, "storageLocation": "calldata", @@ -9184,7 +9264,7 @@ "typeString": "string" }, "typeName": { - "id": 31974, + "id": 32003, "name": "string", "nodeType": "ElementaryTypeName", "src": "5302:6:31", @@ -9199,40 +9279,40 @@ "src": "5301:27:31" }, "returnParameters": { - "id": 31979, + "id": 32008, "nodeType": "ParameterList", "parameters": [], "src": "5346:0:31" }, - "scope": 32045, + "scope": 32074, "stateMutability": "nonpayable", "virtual": false, "visibility": "public" }, { - "id": 32002, + "id": 32031, "nodeType": "FunctionDefinition", "src": "5433:94:31", "nodes": [], "body": { - "id": 32001, + "id": 32030, "nodeType": "Block", "src": "5490:37:31", "nodes": [], "statements": [ { "expression": { - "id": 31999, + "id": 32028, "isConstant": false, "isLValue": false, "isPure": false, "lValueRequested": false, "leftHandSide": { - "id": 31997, + "id": 32026, "name": "renderer", "nodeType": "Identifier", "overloadedDeclarations": [], - "referencedDeclaration": 31535, + "referencedDeclaration": 31564, "src": "5500:8:31", "typeDescriptions": { "typeIdentifier": "t_address", @@ -9242,11 +9322,11 @@ "nodeType": "Assignment", "operator": "=", "rightHandSide": { - "id": 31998, + "id": 32027, "name": "newRender", "nodeType": "Identifier", "overloadedDeclarations": [], - "referencedDeclaration": 31992, + "referencedDeclaration": 32021, "src": "5511:9:31", "typeDescriptions": { "typeIdentifier": "t_address", @@ -9259,7 +9339,7 @@ "typeString": "address" } }, - "id": 32000, + "id": 32029, "nodeType": "ExpressionStatement", "src": "5500:20:31" } @@ -9270,10 +9350,10 @@ "kind": "function", "modifiers": [ { - "id": 31995, + "id": 32024, "kind": "modifierInvocation", "modifierName": { - "id": 31994, + "id": 32023, "name": "onlyOwner", "nameLocations": [ "5480:9:31" @@ -9289,17 +9369,17 @@ "name": "setRenderer", "nameLocation": "5442:11:31", "parameters": { - "id": 31993, + "id": 32022, "nodeType": "ParameterList", "parameters": [ { "constant": false, - "id": 31992, + "id": 32021, "mutability": "mutable", "name": "newRender", "nameLocation": "5462:9:31", "nodeType": "VariableDeclaration", - "scope": 32002, + "scope": 32031, "src": "5454:17:31", "stateVariable": false, "storageLocation": "default", @@ -9308,7 +9388,7 @@ "typeString": "address" }, "typeName": { - "id": 31991, + "id": 32020, "name": "address", "nodeType": "ElementaryTypeName", "src": "5454:7:31", @@ -9324,40 +9404,40 @@ "src": "5453:19:31" }, "returnParameters": { - "id": 31996, + "id": 32025, "nodeType": "ParameterList", "parameters": [], "src": "5490:0:31" }, - "scope": 32045, + "scope": 32074, "stateMutability": "nonpayable", "virtual": false, "visibility": "public" }, { - "id": 32044, + "id": 32073, "nodeType": "FunctionDefinition", "src": "5533:323:31", "nodes": [], "body": { - "id": 32043, + "id": 32072, "nodeType": "Block", "src": "5608:248:31", "nodes": [], "statements": [ { "assignments": [ - 32011 + 32040 ], "declarations": [ { "constant": false, - "id": 32011, + "id": 32040, "mutability": "mutable", "name": "owner", "nameLocation": "5626:5:31", "nodeType": "VariableDeclaration", - "scope": 32043, + "scope": 32072, "src": "5618:13:31", "stateVariable": false, "storageLocation": "default", @@ -9366,7 +9446,7 @@ "typeString": "address" }, "typeName": { - "id": 32010, + "id": 32039, "name": "address", "nodeType": "ElementaryTypeName", "src": "5618:7:31", @@ -9379,10 +9459,10 @@ "visibility": "internal" } ], - "id": 32015, + "id": 32044, "initialValue": { "baseExpression": { - "id": 32012, + "id": 32041, "name": "_ownerOf", "nodeType": "Identifier", "overloadedDeclarations": [], @@ -9393,13 +9473,13 @@ "typeString": "mapping(uint256 => address)" } }, - "id": 32014, + "id": 32043, "indexExpression": { - "id": 32013, + "id": 32042, "name": "id", "nodeType": "Identifier", "overloadedDeclarations": [], - "referencedDeclaration": 32004, + "referencedDeclaration": 32033, "src": "5643:2:31", "typeDescriptions": { "typeIdentifier": "t_uint256", @@ -9426,17 +9506,17 @@ "typeIdentifier": "t_address", "typeString": "address" }, - "id": 32021, + "id": 32050, "isConstant": false, "isLValue": false, "isPure": false, "lValueRequested": false, "leftExpression": { - "id": 32016, + "id": 32045, "name": "owner", "nodeType": "Identifier", "overloadedDeclarations": [], - "referencedDeclaration": 32011, + "referencedDeclaration": 32040, "src": "5660:5:31", "typeDescriptions": { "typeIdentifier": "t_address", @@ -9449,7 +9529,7 @@ "arguments": [ { "hexValue": "30", - "id": 32019, + "id": 32048, "isConstant": false, "isLValue": false, "isPure": true, @@ -9471,7 +9551,7 @@ "typeString": "int_const 0" } ], - "id": 32018, + "id": 32047, "isConstant": false, "isLValue": false, "isPure": true, @@ -9483,14 +9563,14 @@ "typeString": "type(address)" }, "typeName": { - "id": 32017, + "id": 32046, "name": "address", "nodeType": "ElementaryTypeName", "src": "5669:7:31", "typeDescriptions": {} } }, - "id": 32020, + "id": 32049, "isConstant": false, "isLValue": false, "isPure": true, @@ -9512,11 +9592,11 @@ "typeString": "bool" } }, - "id": 32027, + "id": 32056, "nodeType": "IfStatement", "src": "5656:82:31", "trueBody": { - "id": 32026, + "id": 32055, "nodeType": "Block", "src": "5681:57:31", "statements": [ @@ -9524,11 +9604,11 @@ "errorCall": { "arguments": [ { - "id": 32023, + "id": 32052, "name": "id", "nodeType": "Identifier", "overloadedDeclarations": [], - "referencedDeclaration": 32004, + "referencedDeclaration": 32033, "src": "5724:2:31", "typeDescriptions": { "typeIdentifier": "t_uint256", @@ -9543,18 +9623,18 @@ "typeString": "uint256" } ], - "id": 32022, + "id": 32051, "name": "NonExistantTokenError", "nodeType": "Identifier", "overloadedDeclarations": [], - "referencedDeclaration": 31482, + "referencedDeclaration": 31511, "src": "5702:21:31", "typeDescriptions": { "typeIdentifier": "t_function_error_pure$_t_uint256_$returns$__$", "typeString": "function (uint256) pure" } }, - "id": 32024, + "id": 32053, "isConstant": false, "isLValue": false, "isPure": false, @@ -9570,7 +9650,7 @@ "typeString": "tuple()" } }, - "id": 32025, + "id": 32054, "nodeType": "RevertStatement", "src": "5695:32:31" } @@ -9579,17 +9659,17 @@ }, { "assignments": [ - 32029 + 32058 ], "declarations": [ { "constant": false, - "id": 32029, + "id": 32058, "mutability": "mutable", "name": "value", "nameLocation": "5760:5:31", "nodeType": "VariableDeclaration", - "scope": 32043, + "scope": 32072, "src": "5747:18:31", "stateVariable": false, "storageLocation": "memory", @@ -9598,7 +9678,7 @@ "typeString": "bytes" }, "typeName": { - "id": 32028, + "id": 32057, "name": "bytes", "nodeType": "ElementaryTypeName", "src": "5747:5:31", @@ -9610,15 +9690,15 @@ "visibility": "internal" } ], - "id": 32033, + "id": 32062, "initialValue": { "arguments": [ { - "id": 32031, + "id": 32060, "name": "id", "nodeType": "Identifier", "overloadedDeclarations": [], - "referencedDeclaration": 32004, + "referencedDeclaration": 32033, "src": "5780:2:31", "typeDescriptions": { "typeIdentifier": "t_uint256", @@ -9633,18 +9713,18 @@ "typeString": "uint256" } ], - "id": 32030, + "id": 32059, "name": "_renderCell", "nodeType": "Identifier", "overloadedDeclarations": [], - "referencedDeclaration": 31948, + "referencedDeclaration": 31977, "src": "5768:11:31", "typeDescriptions": { "typeIdentifier": "t_function_internal_view$_t_uint256_$returns$_t_bytes_memory_ptr_$", "typeString": "function (uint256) view returns (bytes memory)" } }, - "id": 32032, + "id": 32061, "isConstant": false, "isLValue": false, "isPure": false, @@ -9667,11 +9747,11 @@ "expression": { "arguments": [ { - "id": 32038, + "id": 32067, "name": "id", "nodeType": "Identifier", "overloadedDeclarations": [], - "referencedDeclaration": 32004, + "referencedDeclaration": 32033, "src": "5833:2:31", "typeDescriptions": { "typeIdentifier": "t_uint256", @@ -9679,11 +9759,11 @@ } }, { - "id": 32039, + "id": 32068, "name": "value", "nodeType": "Identifier", "overloadedDeclarations": [], - "referencedDeclaration": 32029, + "referencedDeclaration": 32058, "src": "5837:5:31", "typeDescriptions": { "typeIdentifier": "t_bytes_memory_ptr", @@ -9691,7 +9771,7 @@ } }, { - "id": 32040, + "id": 32069, "name": "name", "nodeType": "Identifier", "overloadedDeclarations": [], @@ -9721,11 +9801,11 @@ "expression": { "arguments": [ { - "id": 32035, + "id": 32064, "name": "renderer", "nodeType": "Identifier", "overloadedDeclarations": [], - "referencedDeclaration": 31535, + "referencedDeclaration": 31564, "src": "5814:8:31", "typeDescriptions": { "typeIdentifier": "t_address", @@ -9740,18 +9820,18 @@ "typeString": "address" } ], - "id": 32034, + "id": 32063, "name": "ICellRenderer", "nodeType": "Identifier", "overloadedDeclarations": [], - "referencedDeclaration": 31315, + "referencedDeclaration": 31344, "src": "5800:13:31", "typeDescriptions": { - "typeIdentifier": "t_type$_t_contract$_ICellRenderer_$31315_$", + "typeIdentifier": "t_type$_t_contract$_ICellRenderer_$31344_$", "typeString": "type(contract ICellRenderer)" } }, - "id": 32036, + "id": 32065, "isConstant": false, "isLValue": false, "isPure": false, @@ -9763,11 +9843,11 @@ "src": "5800:23:31", "tryCall": false, "typeDescriptions": { - "typeIdentifier": "t_contract$_ICellRenderer_$31315", + "typeIdentifier": "t_contract$_ICellRenderer_$31344", "typeString": "contract ICellRenderer" } }, - "id": 32037, + "id": 32066, "isConstant": false, "isLValue": false, "isPure": false, @@ -9775,14 +9855,14 @@ "memberLocation": "5824:8:31", "memberName": "tokenURI", "nodeType": "MemberAccess", - "referencedDeclaration": 31314, + "referencedDeclaration": 31343, "src": "5800:32:31", "typeDescriptions": { "typeIdentifier": "t_function_external_view$_t_uint256_$_t_bytes_memory_ptr_$_t_string_memory_ptr_$returns$_t_string_memory_ptr_$", "typeString": "function (uint256,bytes memory,string memory) view external returns (string memory)" } }, - "id": 32041, + "id": 32070, "isConstant": false, "isLValue": false, "isPure": false, @@ -9798,8 +9878,8 @@ "typeString": "string memory" } }, - "functionReturnParameters": 32009, - "id": 32042, + "functionReturnParameters": 32038, + "id": 32071, "nodeType": "Return", "src": "5793:56:31" } @@ -9815,23 +9895,23 @@ "name": "tokenURI", "nameLocation": "5542:8:31", "overrides": { - "id": 32006, + "id": 32035, "nodeType": "OverrideSpecifier", "overrides": [], "src": "5575:8:31" }, "parameters": { - "id": 32005, + "id": 32034, "nodeType": "ParameterList", "parameters": [ { "constant": false, - "id": 32004, + "id": 32033, "mutability": "mutable", "name": "id", "nameLocation": "5559:2:31", "nodeType": "VariableDeclaration", - "scope": 32044, + "scope": 32073, "src": "5551:10:31", "stateVariable": false, "storageLocation": "default", @@ -9840,7 +9920,7 @@ "typeString": "uint256" }, "typeName": { - "id": 32003, + "id": 32032, "name": "uint256", "nodeType": "ElementaryTypeName", "src": "5551:7:31", @@ -9855,17 +9935,17 @@ "src": "5550:12:31" }, "returnParameters": { - "id": 32009, + "id": 32038, "nodeType": "ParameterList", "parameters": [ { "constant": false, - "id": 32008, + "id": 32037, "mutability": "mutable", "name": "", "nameLocation": "-1:-1:-1", "nodeType": "VariableDeclaration", - "scope": 32044, + "scope": 32073, "src": "5593:13:31", "stateVariable": false, "storageLocation": "memory", @@ -9874,7 +9954,7 @@ "typeString": "string" }, "typeName": { - "id": 32007, + "id": 32036, "name": "string", "nodeType": "ElementaryTypeName", "src": "5593:6:31", @@ -9888,7 +9968,7 @@ ], "src": "5592:15:31" }, - "scope": 32045, + "scope": 32074, "stateMutability": "view", "virtual": false, "visibility": "public" @@ -9898,7 +9978,7 @@ "baseContracts": [ { "baseName": { - "id": 31483, + "id": 31512, "name": "Ownable", "nameLocations": [ "491:7:31" @@ -9907,13 +9987,13 @@ "referencedDeclaration": 29301, "src": "491:7:31" }, - "id": 31484, + "id": 31513, "nodeType": "InheritanceSpecifier", "src": "491:7:31" }, { "baseName": { - "id": 31485, + "id": 31514, "name": "ERC721", "nameLocations": [ "500:6:31" @@ -9922,7 +10002,7 @@ "referencedDeclaration": 30919, "src": "500:6:31" }, - "id": 31486, + "id": 31515, "nodeType": "InheritanceSpecifier", "src": "500:6:31" } @@ -9932,17 +10012,26 @@ "contractKind": "contract", "fullyImplemented": true, "linearizedBaseContracts": [ - 32045, + 32074, 30919, 29301, 29323 ], "name": "Sheet", "nameLocation": "482:5:31", - "scope": 32046, + "scope": 32075, "usedErrors": [ - 31478, - 31482 + 31507, + 31511 + ], + "usedEvents": [ + 29202, + 30386, + 30394, + 30402, + 31523, + 31529, + 31535 ] } ], diff --git a/packages/starksheet-solidity/src/Evmsheet.sol b/packages/starksheet-solidity/src/Evmsheet.sol index 422803b2..854bf116 100644 --- a/packages/starksheet-solidity/src/Evmsheet.sol +++ b/packages/starksheet-solidity/src/Evmsheet.sol @@ -54,4 +54,11 @@ contract Evmsheet is Ownable { function getSheets() public view returns (address[] memory) { return sheets; } + + function withdraw() public onlyOwner { + (bool success,) = msg.sender.call{value: address(this).balance}(""); + require(success, "Withdrawal failed"); + } + + receive() external payable {} } diff --git a/packages/starksheet-solidity/test/Evmsheet.t.sol b/packages/starksheet-solidity/test/Evmsheet.t.sol index 3f31a499..d4608ce1 100644 --- a/packages/starksheet-solidity/test/Evmsheet.t.sol +++ b/packages/starksheet-solidity/test/Evmsheet.t.sol @@ -13,11 +13,13 @@ contract EvmsheetTest is Test { ICellRenderer public renderer; MultiSendCallOnly public multicall; - uint256 price = 0.01 ether; + uint256 _price = 0.01 ether; + + receive() external payable {} function setUp() public { renderer = new BasicCellRenderer(); - evmsheet = new Evmsheet(address(renderer), price); + evmsheet = new Evmsheet(address(renderer), _price); multicall = new MultiSendCallOnly(); } @@ -40,7 +42,7 @@ contract EvmsheetTest is Test { } function testAddSheet() public { - evmsheet.addSheet{value: price}("name", "SMB", 0); + evmsheet.addSheet{value: _price}("name", "SMB", 0); address newSheet = evmsheet.sheets(0); assertEq(ISheet(newSheet).name(), "name"); assertEq(ISheet(newSheet).symbol(), "SMB"); @@ -52,14 +54,29 @@ contract EvmsheetTest is Test { bytes memory transaction = bytes.concat( bytes1(0x00), // operation bytes20(address(evmsheet)), // address - bytes32(price), // value + bytes32(_price), // value bytes32(encodedCall.length), // calldata len encodedCall // calldata ); - multicall.multiSend{value: price}(transaction); + multicall.multiSend{value: _price}(transaction); address newSheet = evmsheet.sheets(0); assertEq(ISheet(newSheet).name(), "Sheet0"); assertEq(ISheet(newSheet).symbol(), "SHT0"); assertEq(ISheet(newSheet).owner(), tx.origin); } + + function testWithdraw() public { + evmsheet.addSheet{value: _price}("name", "SMB", 0); + uint256 prevBalance = address(this).balance; + evmsheet.withdraw(); + uint256 newBalance = address(this).balance; + assertEq(newBalance - prevBalance, _price); + } + + function testWithdrawShouldRevert() public { + evmsheet.addSheet{value: _price}("name", "SMB", 0); + vm.expectRevert(); + vm.prank(address(0xDEAD)); + evmsheet.withdraw(); + } } diff --git a/packages/starksheet-webapp/.dockerignore b/packages/starksheet-webapp/.dockerignore new file mode 100644 index 00000000..0ab2d889 --- /dev/null +++ b/packages/starksheet-webapp/.dockerignore @@ -0,0 +1,3 @@ +build +node_modules +.env diff --git a/packages/starksheet-webapp/.vscode/settings.json b/packages/starksheet-webapp/.vscode/settings.json new file mode 100644 index 00000000..ec3ea137 --- /dev/null +++ b/packages/starksheet-webapp/.vscode/settings.json @@ -0,0 +1,3 @@ +{ + "githubPullRequests.ignoredPullRequestBranches": ["staging"] +} diff --git a/packages/starksheet-webapp/Dockerfile b/packages/starksheet-webapp/Dockerfile new file mode 100644 index 00000000..dfe7e434 --- /dev/null +++ b/packages/starksheet-webapp/Dockerfile @@ -0,0 +1,9 @@ +FROM node:18 + +WORKDIR /app/starksheet/packages/starksheet-webapp +RUN npm update -g npm + +COPY . . +RUN npm install + +CMD ["npm", "start", "--omit=dev"] diff --git a/packages/starksheet-webapp/package-lock.json b/packages/starksheet-webapp/package-lock.json index 7ebd51be..24f0c189 100644 --- a/packages/starksheet-webapp/package-lock.json +++ b/packages/starksheet-webapp/package-lock.json @@ -1,14 +1,14 @@ { "name": "onsheet-webapp", "version": "0.2.0", - "lockfileVersion": 2, + "lockfileVersion": 3, "requires": true, "packages": { "": { "name": "onsheet-webapp", "version": "0.2.0", - "hasInstallScript": true, "dependencies": { + "@argent/get-starknet": "^6.4.7", "@emotion/react": "^11.9.3", "@emotion/styled": "^11.9.3", "@mui/material": "^5.8.6", @@ -25,7 +25,6 @@ "ethers": "5.7.2", "ethers-multisend": "^2.4.0", "expr-eval": "^2.0.2", - "get-starknet": "^2.0.0", "notistack": "^2.0.5", "react": "^18.2.0", "react-contenteditable": "^3.3.6", @@ -33,25 +32,44 @@ "react-hotkeys": "^2.0.0", "react-router-dom": "^6.10.0", "react-scripts": "5.0.1", - "starknet": "^4.22.0", + "starknet": "^5.18.0", "ts-toolbelt": "^9.6.0", "web-vitals": "^2.1.4", "wido-widget": "^1.0.8" }, "devDependencies": { - "@typechain/ethers-v5": "^11.0.0", "@types/bn.js": "^5.1.0", "prettier": "2.7.1", - "typechain": "^8.2.0", + "typechain": "^8.1.0", "typescript": "^4.8.2" } }, + "node_modules/@aashutoshrathi/word-wrap": { + "version": "1.2.6", + "license": "MIT", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/@adobe/css-tools": { + "version": "4.3.1", + "license": "MIT" + }, + "node_modules/@alloc/quick-lru": { + "version": "5.2.0", + "license": "MIT", + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, "node_modules/@ampproject/remapping": { - "version": "2.2.0", - "resolved": "https://registry.npmjs.org/@ampproject/remapping/-/remapping-2.2.0.tgz", - "integrity": "sha512-qRmjj8nj9qmLTQXXmaR1cck3UXSRMPrbsLJAasZpF+t3riI71BXed5ebIOYwQntykeZuhjsdweEc9BxH5Jc26w==", + "version": "2.2.1", + "license": "Apache-2.0", "dependencies": { - "@jridgewell/gen-mapping": "^0.1.0", + "@jridgewell/gen-mapping": "^0.3.0", "@jridgewell/trace-mapping": "^0.3.9" }, "engines": { @@ -59,82 +77,201 @@ } }, "node_modules/@argent/get-starknet": { - "version": "5.3.21", - "resolved": "https://registry.npmjs.org/@argent/get-starknet/-/get-starknet-5.3.21.tgz", - "integrity": "sha512-ykxyo5EgEHTsTLK95ILHtkigVxI/OTt6n2IfYpNi9ZJNjazLyoGiN2GG7tT8C38giasR0Wpmq6NJB74efX07oQ==", + "version": "6.4.7", + "license": "MIT", "dependencies": { - "get-starknet": "^1.0.0" + "@argent/web-sdk": "^6.4.1", + "@argent/x-window": "^6.4.0", + "bowser": "^2.11.0", + "get-starknet-core": "^3.1.0", + "lodash-es": "^4.17.21", + "svelte-forms": "^2.3.1" + }, + "peerDependencies": { + "starknet": "5.18.0" } }, - "node_modules/@argent/get-starknet/node_modules/get-starknet": { - "version": "1.5.0", - "resolved": "https://registry.npmjs.org/get-starknet/-/get-starknet-1.5.0.tgz", - "integrity": "sha512-6A14mdPoMwO4orETjG5D+wwaZOzuAyNp/5+ZlDJnU+UU7QRGMYILUo8WjgqeVTg0mcN0BZoUE0C/Qhgd7dBvVQ==", + "node_modules/@argent/web-sdk": { + "version": "6.4.1", + "license": "MIT", "dependencies": { - "bowser": "^2.11.0" + "@argent/x-window": "^6.4.0", + "get-starknet-core": "^3.0.1", + "lodash-es": "^4.17.21", + "trpc-browser": "^1.3.2" }, "peerDependencies": { - "starknet": "^3.12.3" + "starknet": "5.12.0" } }, - "node_modules/@argent/get-starknet/node_modules/starknet": { - "version": "3.19.0", - "resolved": "https://registry.npmjs.org/starknet/-/starknet-3.19.0.tgz", - "integrity": "sha512-1iUJdGtRDu2j3G8sS+yzRhp9O3O5Dr803oDfrm234Qmn05JTh5bU/wZwFPw9zWmMI0jyNZgjS+8dxPpBcpLgrQ==", - "peer": true, + "node_modules/@argent/x-window": { + "version": "6.4.0", + "license": "MIT", + "peerDependencies": { + "starknet": "^4.21.0", + "zod": "^3.20.6" + } + }, + "node_modules/@babel/cli": { + "version": "7.22.10", + "license": "MIT", "dependencies": { - "@ethersproject/bytes": "^5.6.1", - "bn.js": "^5.2.1", - "cross-fetch": "^3.1.5", - "elliptic": "^6.5.4", - "ethereum-cryptography": "^1.0.3", - "hash.js": "^1.1.7", - "json-bigint": "^1.0.0", - "minimalistic-assert": "^1.0.1", - "pako": "^2.0.4", - "ts-custom-error": "^3.2.0", - "url-join": "^4.0.1" + "@jridgewell/trace-mapping": "^0.3.17", + "commander": "^4.0.1", + "convert-source-map": "^1.1.0", + "fs-readdir-recursive": "^1.1.0", + "glob": "^7.2.0", + "make-dir": "^2.1.0", + "slash": "^2.0.0" + }, + "bin": { + "babel": "bin/babel.js", + "babel-external-helpers": "bin/babel-external-helpers.js" + }, + "engines": { + "node": ">=6.9.0" + }, + "optionalDependencies": { + "@nicolo-ribaudo/chokidar-2": "2.1.8-no-fsevents.3", + "chokidar": "^3.4.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/cli/node_modules/commander": { + "version": "4.1.1", + "license": "MIT", + "engines": { + "node": ">= 6" + } + }, + "node_modules/@babel/cli/node_modules/make-dir": { + "version": "2.1.0", + "license": "MIT", + "dependencies": { + "pify": "^4.0.1", + "semver": "^5.6.0" + }, + "engines": { + "node": ">=6" + } + }, + "node_modules/@babel/cli/node_modules/pify": { + "version": "4.0.1", + "license": "MIT", + "engines": { + "node": ">=6" + } + }, + "node_modules/@babel/cli/node_modules/semver": { + "version": "5.7.2", + "license": "ISC", + "bin": { + "semver": "bin/semver" + } + }, + "node_modules/@babel/cli/node_modules/slash": { + "version": "2.0.0", + "license": "MIT", + "engines": { + "node": ">=6" } }, "node_modules/@babel/code-frame": { - "version": "7.18.6", - "resolved": "https://registry.npmjs.org/@babel/code-frame/-/code-frame-7.18.6.tgz", - "integrity": "sha512-TDCmlK5eOvH+eH7cdAFlNXeVJqWIQ7gW9tY1GJIpUtFb6CmjVyq2VM3u71bOyR8CRihcCgMUYoDNyLXao3+70Q==", + "version": "7.22.10", + "license": "MIT", "dependencies": { - "@babel/highlight": "^7.18.6" + "@babel/highlight": "^7.22.10", + "chalk": "^2.4.2" }, "engines": { "node": ">=6.9.0" } }, + "node_modules/@babel/code-frame/node_modules/ansi-styles": { + "version": "3.2.1", + "license": "MIT", + "dependencies": { + "color-convert": "^1.9.0" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/@babel/code-frame/node_modules/chalk": { + "version": "2.4.2", + "license": "MIT", + "dependencies": { + "ansi-styles": "^3.2.1", + "escape-string-regexp": "^1.0.5", + "supports-color": "^5.3.0" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/@babel/code-frame/node_modules/color-convert": { + "version": "1.9.3", + "license": "MIT", + "dependencies": { + "color-name": "1.1.3" + } + }, + "node_modules/@babel/code-frame/node_modules/color-name": { + "version": "1.1.3", + "license": "MIT" + }, + "node_modules/@babel/code-frame/node_modules/escape-string-regexp": { + "version": "1.0.5", + "license": "MIT", + "engines": { + "node": ">=0.8.0" + } + }, + "node_modules/@babel/code-frame/node_modules/has-flag": { + "version": "3.0.0", + "license": "MIT", + "engines": { + "node": ">=4" + } + }, + "node_modules/@babel/code-frame/node_modules/supports-color": { + "version": "5.5.0", + "license": "MIT", + "dependencies": { + "has-flag": "^3.0.0" + }, + "engines": { + "node": ">=4" + } + }, "node_modules/@babel/compat-data": { - "version": "7.18.6", - "resolved": "https://registry.npmjs.org/@babel/compat-data/-/compat-data-7.18.6.tgz", - "integrity": "sha512-tzulrgDT0QD6U7BJ4TKVk2SDDg7wlP39P9yAx1RfLy7vP/7rsDRlWVfbWxElslu56+r7QOhB2NSDsabYYruoZQ==", + "version": "7.22.9", + "license": "MIT", "engines": { "node": ">=6.9.0" } }, "node_modules/@babel/core": { - "version": "7.18.6", - "resolved": "https://registry.npmjs.org/@babel/core/-/core-7.18.6.tgz", - "integrity": "sha512-cQbWBpxcbbs/IUredIPkHiAGULLV8iwgNRMFzvbhEXISp4f3rUUXE5+TIw6KwUWUR3DwyI6gmBRnmAtYaWehwQ==", - "dependencies": { - "@ampproject/remapping": "^2.1.0", - "@babel/code-frame": "^7.18.6", - "@babel/generator": "^7.18.6", - "@babel/helper-compilation-targets": "^7.18.6", - "@babel/helper-module-transforms": "^7.18.6", - "@babel/helpers": "^7.18.6", - "@babel/parser": "^7.18.6", - "@babel/template": "^7.18.6", - "@babel/traverse": "^7.18.6", - "@babel/types": "^7.18.6", + "version": "7.22.11", + "license": "MIT", + "dependencies": { + "@ampproject/remapping": "^2.2.0", + "@babel/code-frame": "^7.22.10", + "@babel/generator": "^7.22.10", + "@babel/helper-compilation-targets": "^7.22.10", + "@babel/helper-module-transforms": "^7.22.9", + "@babel/helpers": "^7.22.11", + "@babel/parser": "^7.22.11", + "@babel/template": "^7.22.5", + "@babel/traverse": "^7.22.11", + "@babel/types": "^7.22.11", "convert-source-map": "^1.7.0", "debug": "^4.1.0", "gensync": "^1.0.0-beta.2", - "json5": "^2.2.1", - "semver": "^6.3.0" + "json5": "^2.2.3", + "semver": "^6.3.1" }, "engines": { "node": ">=6.9.0" @@ -145,152 +282,109 @@ } }, "node_modules/@babel/core/node_modules/semver": { - "version": "6.3.0", - "resolved": "https://registry.npmjs.org/semver/-/semver-6.3.0.tgz", - "integrity": "sha512-b39TBaTSfV6yBrapU89p5fKekE2m/NwnDocOVruQFS1/veMgdzuPcnOM34M6CwxW8jH/lxEa5rBoDeUwu5HHTw==", + "version": "6.3.1", + "license": "ISC", "bin": { "semver": "bin/semver.js" } }, "node_modules/@babel/eslint-parser": { - "version": "7.18.2", - "resolved": "https://registry.npmjs.org/@babel/eslint-parser/-/eslint-parser-7.18.2.tgz", - "integrity": "sha512-oFQYkE8SuH14+uR51JVAmdqwKYXGRjEXx7s+WiagVjqQ+HPE+nnwyF2qlVG8evUsUHmPcA+6YXMEDbIhEyQc5A==", + "version": "7.22.11", + "license": "MIT", "dependencies": { - "eslint-scope": "^5.1.1", + "@nicolo-ribaudo/eslint-scope-5-internals": "5.1.1-v1", "eslint-visitor-keys": "^2.1.0", - "semver": "^6.3.0" + "semver": "^6.3.1" }, "engines": { "node": "^10.13.0 || ^12.13.0 || >=14.0.0" }, "peerDependencies": { - "@babel/core": ">=7.11.0", + "@babel/core": "^7.11.0", "eslint": "^7.5.0 || ^8.0.0" } }, - "node_modules/@babel/eslint-parser/node_modules/eslint-scope": { - "version": "5.1.1", - "resolved": "https://registry.npmjs.org/eslint-scope/-/eslint-scope-5.1.1.tgz", - "integrity": "sha512-2NxwbF/hZ0KpepYN0cNbo+FN6XoK7GaHlQhgx/hIZl6Va0bF45RQOOwhLIy8lQDbuCiadSLCBnH2CFYquit5bw==", - "dependencies": { - "esrecurse": "^4.3.0", - "estraverse": "^4.1.1" - }, - "engines": { - "node": ">=8.0.0" - } - }, "node_modules/@babel/eslint-parser/node_modules/eslint-visitor-keys": { "version": "2.1.0", - "resolved": "https://registry.npmjs.org/eslint-visitor-keys/-/eslint-visitor-keys-2.1.0.tgz", - "integrity": "sha512-0rSmRBzXgDzIsD6mGdJgevzgezI534Cer5L/vyMX0kHzT/jiB43jRhd9YUlMGYLQy2zprNmoT8qasCGtY+QaKw==", + "license": "Apache-2.0", "engines": { "node": ">=10" } }, - "node_modules/@babel/eslint-parser/node_modules/estraverse": { - "version": "4.3.0", - "resolved": "https://registry.npmjs.org/estraverse/-/estraverse-4.3.0.tgz", - "integrity": "sha512-39nnKffWz8xN1BU/2c79n9nB9HDzo0niYUqx6xyqUnyoAnQyyWpOTdZEeiCch8BBu515t4wp9ZmgVfVhn9EBpw==", - "engines": { - "node": ">=4.0" - } - }, "node_modules/@babel/eslint-parser/node_modules/semver": { - "version": "6.3.0", - "resolved": "https://registry.npmjs.org/semver/-/semver-6.3.0.tgz", - "integrity": "sha512-b39TBaTSfV6yBrapU89p5fKekE2m/NwnDocOVruQFS1/veMgdzuPcnOM34M6CwxW8jH/lxEa5rBoDeUwu5HHTw==", + "version": "6.3.1", + "license": "ISC", "bin": { "semver": "bin/semver.js" } }, "node_modules/@babel/generator": { - "version": "7.18.7", - "resolved": "https://registry.npmjs.org/@babel/generator/-/generator-7.18.7.tgz", - "integrity": "sha512-shck+7VLlY72a2w9c3zYWuE1pwOKEiQHV7GTUbSnhyl5eu3i04t30tBY82ZRWrDfo3gkakCFtevExnxbkf2a3A==", + "version": "7.22.10", + "license": "MIT", "dependencies": { - "@babel/types": "^7.18.7", + "@babel/types": "^7.22.10", "@jridgewell/gen-mapping": "^0.3.2", + "@jridgewell/trace-mapping": "^0.3.17", "jsesc": "^2.5.1" }, "engines": { "node": ">=6.9.0" } }, - "node_modules/@babel/generator/node_modules/@jridgewell/gen-mapping": { - "version": "0.3.2", - "resolved": "https://registry.npmjs.org/@jridgewell/gen-mapping/-/gen-mapping-0.3.2.tgz", - "integrity": "sha512-mh65xKQAzI6iBcFzwv28KVWSmCkdRBWoOh+bYQGW3+6OZvbbN3TqMGo5hqYxQniRcH9F2VZIoJCm4pa3BPDK/A==", - "dependencies": { - "@jridgewell/set-array": "^1.0.1", - "@jridgewell/sourcemap-codec": "^1.4.10", - "@jridgewell/trace-mapping": "^0.3.9" - }, - "engines": { - "node": ">=6.0.0" - } - }, "node_modules/@babel/helper-annotate-as-pure": { - "version": "7.18.6", - "resolved": "https://registry.npmjs.org/@babel/helper-annotate-as-pure/-/helper-annotate-as-pure-7.18.6.tgz", - "integrity": "sha512-duORpUiYrEpzKIop6iNbjnwKLAKnJ47csTyRACyEmWj0QdUrm5aqNJGHSSEQSUAvNW0ojX0dOmK9dZduvkfeXA==", + "version": "7.22.5", + "license": "MIT", "dependencies": { - "@babel/types": "^7.18.6" + "@babel/types": "^7.22.5" }, "engines": { "node": ">=6.9.0" } }, "node_modules/@babel/helper-builder-binary-assignment-operator-visitor": { - "version": "7.18.6", - "resolved": "https://registry.npmjs.org/@babel/helper-builder-binary-assignment-operator-visitor/-/helper-builder-binary-assignment-operator-visitor-7.18.6.tgz", - "integrity": "sha512-KT10c1oWEpmrIRYnthbzHgoOf6B+Xd6a5yhdbNtdhtG7aO1or5HViuf1TQR36xY/QprXA5nvxO6nAjhJ4y38jw==", + "version": "7.22.10", + "license": "MIT", "dependencies": { - "@babel/helper-explode-assignable-expression": "^7.18.6", - "@babel/types": "^7.18.6" + "@babel/types": "^7.22.10" }, "engines": { "node": ">=6.9.0" } }, "node_modules/@babel/helper-compilation-targets": { - "version": "7.18.6", - "resolved": "https://registry.npmjs.org/@babel/helper-compilation-targets/-/helper-compilation-targets-7.18.6.tgz", - "integrity": "sha512-vFjbfhNCzqdeAtZflUFrG5YIFqGTqsctrtkZ1D/NB0mDW9TwW3GmmUepYY4G9wCET5rY5ugz4OGTcLd614IzQg==", + "version": "7.22.10", + "license": "MIT", "dependencies": { - "@babel/compat-data": "^7.18.6", - "@babel/helper-validator-option": "^7.18.6", - "browserslist": "^4.20.2", - "semver": "^6.3.0" + "@babel/compat-data": "^7.22.9", + "@babel/helper-validator-option": "^7.22.5", + "browserslist": "^4.21.9", + "lru-cache": "^5.1.1", + "semver": "^6.3.1" }, "engines": { "node": ">=6.9.0" - }, - "peerDependencies": { - "@babel/core": "^7.0.0" } }, "node_modules/@babel/helper-compilation-targets/node_modules/semver": { - "version": "6.3.0", - "resolved": "https://registry.npmjs.org/semver/-/semver-6.3.0.tgz", - "integrity": "sha512-b39TBaTSfV6yBrapU89p5fKekE2m/NwnDocOVruQFS1/veMgdzuPcnOM34M6CwxW8jH/lxEa5rBoDeUwu5HHTw==", + "version": "6.3.1", + "license": "ISC", "bin": { "semver": "bin/semver.js" } }, "node_modules/@babel/helper-create-class-features-plugin": { - "version": "7.18.6", - "resolved": "https://registry.npmjs.org/@babel/helper-create-class-features-plugin/-/helper-create-class-features-plugin-7.18.6.tgz", - "integrity": "sha512-YfDzdnoxHGV8CzqHGyCbFvXg5QESPFkXlHtvdCkesLjjVMT2Adxe4FGUR5ChIb3DxSaXO12iIOCWoXdsUVwnqw==", + "version": "7.22.11", + "license": "MIT", "dependencies": { - "@babel/helper-annotate-as-pure": "^7.18.6", - "@babel/helper-environment-visitor": "^7.18.6", - "@babel/helper-function-name": "^7.18.6", - "@babel/helper-member-expression-to-functions": "^7.18.6", - "@babel/helper-optimise-call-expression": "^7.18.6", - "@babel/helper-replace-supers": "^7.18.6", - "@babel/helper-split-export-declaration": "^7.18.6" + "@babel/helper-annotate-as-pure": "^7.22.5", + "@babel/helper-environment-visitor": "^7.22.5", + "@babel/helper-function-name": "^7.22.5", + "@babel/helper-member-expression-to-functions": "^7.22.5", + "@babel/helper-optimise-call-expression": "^7.22.5", + "@babel/helper-replace-supers": "^7.22.9", + "@babel/helper-skip-transparent-expression-wrappers": "^7.22.5", + "@babel/helper-split-export-declaration": "^7.22.6", + "semver": "^6.3.1" }, "engines": { "node": ">=6.9.0" @@ -299,13 +393,20 @@ "@babel/core": "^7.0.0" } }, + "node_modules/@babel/helper-create-class-features-plugin/node_modules/semver": { + "version": "6.3.1", + "license": "ISC", + "bin": { + "semver": "bin/semver.js" + } + }, "node_modules/@babel/helper-create-regexp-features-plugin": { - "version": "7.18.6", - "resolved": "https://registry.npmjs.org/@babel/helper-create-regexp-features-plugin/-/helper-create-regexp-features-plugin-7.18.6.tgz", - "integrity": "sha512-7LcpH1wnQLGrI+4v+nPp+zUvIkF9x0ddv1Hkdue10tg3gmRnLy97DXh4STiOf1qeIInyD69Qv5kKSZzKD8B/7A==", + "version": "7.22.9", + "license": "MIT", "dependencies": { - "@babel/helper-annotate-as-pure": "^7.18.6", - "regexpu-core": "^5.1.0" + "@babel/helper-annotate-as-pure": "^7.22.5", + "regexpu-core": "^5.3.1", + "semver": "^6.3.1" }, "engines": { "node": ">=6.9.0" @@ -314,142 +415,116 @@ "@babel/core": "^7.0.0" } }, + "node_modules/@babel/helper-create-regexp-features-plugin/node_modules/semver": { + "version": "6.3.1", + "license": "ISC", + "bin": { + "semver": "bin/semver.js" + } + }, "node_modules/@babel/helper-define-polyfill-provider": { - "version": "0.3.1", - "resolved": "https://registry.npmjs.org/@babel/helper-define-polyfill-provider/-/helper-define-polyfill-provider-0.3.1.tgz", - "integrity": "sha512-J9hGMpJQmtWmj46B3kBHmL38UhJGhYX7eqkcq+2gsstyYt341HmPeWspihX43yVRA0mS+8GGk2Gckc7bY/HCmA==", + "version": "0.4.2", + "license": "MIT", "dependencies": { - "@babel/helper-compilation-targets": "^7.13.0", - "@babel/helper-module-imports": "^7.12.13", - "@babel/helper-plugin-utils": "^7.13.0", - "@babel/traverse": "^7.13.0", + "@babel/helper-compilation-targets": "^7.22.6", + "@babel/helper-plugin-utils": "^7.22.5", "debug": "^4.1.1", "lodash.debounce": "^4.0.8", - "resolve": "^1.14.2", - "semver": "^6.1.2" + "resolve": "^1.14.2" }, "peerDependencies": { - "@babel/core": "^7.4.0-0" - } - }, - "node_modules/@babel/helper-define-polyfill-provider/node_modules/semver": { - "version": "6.3.0", - "resolved": "https://registry.npmjs.org/semver/-/semver-6.3.0.tgz", - "integrity": "sha512-b39TBaTSfV6yBrapU89p5fKekE2m/NwnDocOVruQFS1/veMgdzuPcnOM34M6CwxW8jH/lxEa5rBoDeUwu5HHTw==", - "bin": { - "semver": "bin/semver.js" + "@babel/core": "^7.4.0 || ^8.0.0-0 <8.0.0" } }, "node_modules/@babel/helper-environment-visitor": { - "version": "7.18.6", - "resolved": "https://registry.npmjs.org/@babel/helper-environment-visitor/-/helper-environment-visitor-7.18.6.tgz", - "integrity": "sha512-8n6gSfn2baOY+qlp+VSzsosjCVGFqWKmDF0cCWOybh52Dw3SEyoWR1KrhMJASjLwIEkkAufZ0xvr+SxLHSpy2Q==", - "engines": { - "node": ">=6.9.0" - } - }, - "node_modules/@babel/helper-explode-assignable-expression": { - "version": "7.18.6", - "resolved": "https://registry.npmjs.org/@babel/helper-explode-assignable-expression/-/helper-explode-assignable-expression-7.18.6.tgz", - "integrity": "sha512-eyAYAsQmB80jNfg4baAtLeWAQHfHFiR483rzFK+BhETlGZaQC9bsfrugfXDCbRHLQbIA7U5NxhhOxN7p/dWIcg==", - "dependencies": { - "@babel/types": "^7.18.6" - }, + "version": "7.22.5", + "license": "MIT", "engines": { "node": ">=6.9.0" } }, "node_modules/@babel/helper-function-name": { - "version": "7.18.6", - "resolved": "https://registry.npmjs.org/@babel/helper-function-name/-/helper-function-name-7.18.6.tgz", - "integrity": "sha512-0mWMxV1aC97dhjCah5U5Ua7668r5ZmSC2DLfH2EZnf9c3/dHZKiFa5pRLMH5tjSl471tY6496ZWk/kjNONBxhw==", + "version": "7.22.5", + "license": "MIT", "dependencies": { - "@babel/template": "^7.18.6", - "@babel/types": "^7.18.6" + "@babel/template": "^7.22.5", + "@babel/types": "^7.22.5" }, "engines": { "node": ">=6.9.0" } }, "node_modules/@babel/helper-hoist-variables": { - "version": "7.18.6", - "resolved": "https://registry.npmjs.org/@babel/helper-hoist-variables/-/helper-hoist-variables-7.18.6.tgz", - "integrity": "sha512-UlJQPkFqFULIcyW5sbzgbkxn2FKRgwWiRexcuaR8RNJRy8+LLveqPjwZV/bwrLZCN0eUHD/x8D0heK1ozuoo6Q==", + "version": "7.22.5", + "license": "MIT", "dependencies": { - "@babel/types": "^7.18.6" + "@babel/types": "^7.22.5" }, "engines": { "node": ">=6.9.0" } }, "node_modules/@babel/helper-member-expression-to-functions": { - "version": "7.18.6", - "resolved": "https://registry.npmjs.org/@babel/helper-member-expression-to-functions/-/helper-member-expression-to-functions-7.18.6.tgz", - "integrity": "sha512-CeHxqwwipekotzPDUuJOfIMtcIHBuc7WAzLmTYWctVigqS5RktNMQ5bEwQSuGewzYnCtTWa3BARXeiLxDTv+Ng==", + "version": "7.22.5", + "license": "MIT", "dependencies": { - "@babel/types": "^7.18.6" + "@babel/types": "^7.22.5" }, "engines": { "node": ">=6.9.0" } }, "node_modules/@babel/helper-module-imports": { - "version": "7.18.6", - "resolved": "https://registry.npmjs.org/@babel/helper-module-imports/-/helper-module-imports-7.18.6.tgz", - "integrity": "sha512-0NFvs3VkuSYbFi1x2Vd6tKrywq+z/cLeYC/RJNFrIX/30Bf5aiGYbtvGXolEktzJH8o5E5KJ3tT+nkxuuZFVlA==", + "version": "7.22.5", + "license": "MIT", "dependencies": { - "@babel/types": "^7.18.6" + "@babel/types": "^7.22.5" }, "engines": { "node": ">=6.9.0" } }, "node_modules/@babel/helper-module-transforms": { - "version": "7.18.6", - "resolved": "https://registry.npmjs.org/@babel/helper-module-transforms/-/helper-module-transforms-7.18.6.tgz", - "integrity": "sha512-L//phhB4al5uucwzlimruukHB3jRd5JGClwRMD/ROrVjXfLqovYnvQrK/JK36WYyVwGGO7OD3kMyVTjx+WVPhw==", + "version": "7.22.9", + "license": "MIT", "dependencies": { - "@babel/helper-environment-visitor": "^7.18.6", - "@babel/helper-module-imports": "^7.18.6", - "@babel/helper-simple-access": "^7.18.6", - "@babel/helper-split-export-declaration": "^7.18.6", - "@babel/helper-validator-identifier": "^7.18.6", - "@babel/template": "^7.18.6", - "@babel/traverse": "^7.18.6", - "@babel/types": "^7.18.6" + "@babel/helper-environment-visitor": "^7.22.5", + "@babel/helper-module-imports": "^7.22.5", + "@babel/helper-simple-access": "^7.22.5", + "@babel/helper-split-export-declaration": "^7.22.6", + "@babel/helper-validator-identifier": "^7.22.5" }, "engines": { "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0" } }, "node_modules/@babel/helper-optimise-call-expression": { - "version": "7.18.6", - "resolved": "https://registry.npmjs.org/@babel/helper-optimise-call-expression/-/helper-optimise-call-expression-7.18.6.tgz", - "integrity": "sha512-HP59oD9/fEHQkdcbgFCnbmgH5vIQTJbxh2yf+CdM89/glUNnuzr87Q8GIjGEnOktTROemO0Pe0iPAYbqZuOUiA==", + "version": "7.22.5", + "license": "MIT", "dependencies": { - "@babel/types": "^7.18.6" + "@babel/types": "^7.22.5" }, "engines": { "node": ">=6.9.0" } }, "node_modules/@babel/helper-plugin-utils": { - "version": "7.18.6", - "resolved": "https://registry.npmjs.org/@babel/helper-plugin-utils/-/helper-plugin-utils-7.18.6.tgz", - "integrity": "sha512-gvZnm1YAAxh13eJdkb9EWHBnF3eAub3XTLCZEehHT2kWxiKVRL64+ae5Y6Ivne0mVHmMYKT+xWgZO+gQhuLUBg==", + "version": "7.22.5", + "license": "MIT", "engines": { "node": ">=6.9.0" } }, "node_modules/@babel/helper-remap-async-to-generator": { - "version": "7.18.6", - "resolved": "https://registry.npmjs.org/@babel/helper-remap-async-to-generator/-/helper-remap-async-to-generator-7.18.6.tgz", - "integrity": "sha512-z5wbmV55TveUPZlCLZvxWHtrjuJd+8inFhk7DG0WW87/oJuGDcjDiu7HIvGcpf5464L6xKCg3vNkmlVVz9hwyQ==", + "version": "7.22.9", + "license": "MIT", "dependencies": { - "@babel/helper-annotate-as-pure": "^7.18.6", - "@babel/helper-environment-visitor": "^7.18.6", - "@babel/helper-wrap-function": "^7.18.6", - "@babel/types": "^7.18.6" + "@babel/helper-annotate-as-pure": "^7.22.5", + "@babel/helper-environment-visitor": "^7.22.5", + "@babel/helper-wrap-function": "^7.22.9" }, "engines": { "node": ">=6.9.0" @@ -459,238 +534,207 @@ } }, "node_modules/@babel/helper-replace-supers": { - "version": "7.18.6", - "resolved": "https://registry.npmjs.org/@babel/helper-replace-supers/-/helper-replace-supers-7.18.6.tgz", - "integrity": "sha512-fTf7zoXnUGl9gF25fXCWE26t7Tvtyn6H4hkLSYhATwJvw2uYxd3aoXplMSe0g9XbwK7bmxNes7+FGO0rB/xC0g==", + "version": "7.22.9", + "license": "MIT", "dependencies": { - "@babel/helper-environment-visitor": "^7.18.6", - "@babel/helper-member-expression-to-functions": "^7.18.6", - "@babel/helper-optimise-call-expression": "^7.18.6", - "@babel/traverse": "^7.18.6", - "@babel/types": "^7.18.6" + "@babel/helper-environment-visitor": "^7.22.5", + "@babel/helper-member-expression-to-functions": "^7.22.5", + "@babel/helper-optimise-call-expression": "^7.22.5" }, "engines": { "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0" } }, "node_modules/@babel/helper-simple-access": { - "version": "7.18.6", - "resolved": "https://registry.npmjs.org/@babel/helper-simple-access/-/helper-simple-access-7.18.6.tgz", - "integrity": "sha512-iNpIgTgyAvDQpDj76POqg+YEt8fPxx3yaNBg3S30dxNKm2SWfYhD0TGrK/Eu9wHpUW63VQU894TsTg+GLbUa1g==", + "version": "7.22.5", + "license": "MIT", "dependencies": { - "@babel/types": "^7.18.6" + "@babel/types": "^7.22.5" }, "engines": { "node": ">=6.9.0" } }, "node_modules/@babel/helper-skip-transparent-expression-wrappers": { - "version": "7.18.6", - "resolved": "https://registry.npmjs.org/@babel/helper-skip-transparent-expression-wrappers/-/helper-skip-transparent-expression-wrappers-7.18.6.tgz", - "integrity": "sha512-4KoLhwGS9vGethZpAhYnMejWkX64wsnHPDwvOsKWU6Fg4+AlK2Jz3TyjQLMEPvz+1zemi/WBdkYxCD0bAfIkiw==", + "version": "7.22.5", + "license": "MIT", "dependencies": { - "@babel/types": "^7.18.6" + "@babel/types": "^7.22.5" }, "engines": { "node": ">=6.9.0" } }, "node_modules/@babel/helper-split-export-declaration": { - "version": "7.18.6", - "resolved": "https://registry.npmjs.org/@babel/helper-split-export-declaration/-/helper-split-export-declaration-7.18.6.tgz", - "integrity": "sha512-bde1etTx6ZyTmobl9LLMMQsaizFVZrquTEHOqKeQESMKo4PlObf+8+JA25ZsIpZhT/WEd39+vOdLXAFG/nELpA==", + "version": "7.22.6", + "license": "MIT", "dependencies": { - "@babel/types": "^7.18.6" + "@babel/types": "^7.22.5" }, "engines": { "node": ">=6.9.0" } }, + "node_modules/@babel/helper-string-parser": { + "version": "7.22.5", + "license": "MIT", + "engines": { + "node": ">=6.9.0" + } + }, "node_modules/@babel/helper-validator-identifier": { - "version": "7.18.6", - "resolved": "https://registry.npmjs.org/@babel/helper-validator-identifier/-/helper-validator-identifier-7.18.6.tgz", - "integrity": "sha512-MmetCkz9ej86nJQV+sFCxoGGrUbU3q02kgLciwkrt9QqEB7cP39oKEY0PakknEO0Gu20SskMRi+AYZ3b1TpN9g==", + "version": "7.22.5", + "license": "MIT", "engines": { "node": ">=6.9.0" } }, "node_modules/@babel/helper-validator-option": { - "version": "7.18.6", - "resolved": "https://registry.npmjs.org/@babel/helper-validator-option/-/helper-validator-option-7.18.6.tgz", - "integrity": "sha512-XO7gESt5ouv/LRJdrVjkShckw6STTaB7l9BrpBaAHDeF5YZT+01PCwmR0SJHnkW6i8OwW/EVWRShfi4j2x+KQw==", + "version": "7.22.5", + "license": "MIT", "engines": { "node": ">=6.9.0" } }, "node_modules/@babel/helper-wrap-function": { - "version": "7.18.6", - "resolved": "https://registry.npmjs.org/@babel/helper-wrap-function/-/helper-wrap-function-7.18.6.tgz", - "integrity": "sha512-I5/LZfozwMNbwr/b1vhhuYD+J/mU+gfGAj5td7l5Rv9WYmH6i3Om69WGKNmlIpsVW/mF6O5bvTKbvDQZVgjqOw==", + "version": "7.22.10", + "license": "MIT", "dependencies": { - "@babel/helper-function-name": "^7.18.6", - "@babel/template": "^7.18.6", - "@babel/traverse": "^7.18.6", - "@babel/types": "^7.18.6" + "@babel/helper-function-name": "^7.22.5", + "@babel/template": "^7.22.5", + "@babel/types": "^7.22.10" }, "engines": { "node": ">=6.9.0" } }, "node_modules/@babel/helpers": { - "version": "7.18.6", - "resolved": "https://registry.npmjs.org/@babel/helpers/-/helpers-7.18.6.tgz", - "integrity": "sha512-vzSiiqbQOghPngUYt/zWGvK3LAsPhz55vc9XNN0xAl2gV4ieShI2OQli5duxWHD+72PZPTKAcfcZDE1Cwc5zsQ==", + "version": "7.22.11", + "license": "MIT", "dependencies": { - "@babel/template": "^7.18.6", - "@babel/traverse": "^7.18.6", - "@babel/types": "^7.18.6" + "@babel/template": "^7.22.5", + "@babel/traverse": "^7.22.11", + "@babel/types": "^7.22.11" }, "engines": { "node": ">=6.9.0" } }, "node_modules/@babel/highlight": { - "version": "7.18.6", - "resolved": "https://registry.npmjs.org/@babel/highlight/-/highlight-7.18.6.tgz", - "integrity": "sha512-u7stbOuYjaPezCuLj29hNW1v64M2Md2qupEKP1fHc7WdOA3DgLh37suiSrZYY7haUB7iBeQZ9P1uiRF359do3g==", + "version": "7.22.10", + "license": "MIT", "dependencies": { - "@babel/helper-validator-identifier": "^7.18.6", - "chalk": "^2.0.0", + "@babel/helper-validator-identifier": "^7.22.5", + "chalk": "^2.4.2", "js-tokens": "^4.0.0" }, "engines": { "node": ">=6.9.0" } }, - "node_modules/@babel/parser": { - "version": "7.18.6", - "resolved": "https://registry.npmjs.org/@babel/parser/-/parser-7.18.6.tgz", - "integrity": "sha512-uQVSa9jJUe/G/304lXspfWVpKpK4euFLgGiMQFOCpM/bgcAdeoHwi/OQz23O9GK2osz26ZiXRRV9aV+Yl1O8tw==", - "bin": { - "parser": "bin/babel-parser.js" + "node_modules/@babel/highlight/node_modules/ansi-styles": { + "version": "3.2.1", + "license": "MIT", + "dependencies": { + "color-convert": "^1.9.0" }, "engines": { - "node": ">=6.0.0" + "node": ">=4" } }, - "node_modules/@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression": { - "version": "7.18.6", - "resolved": "https://registry.npmjs.org/@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression/-/plugin-bugfix-safari-id-destructuring-collision-in-function-expression-7.18.6.tgz", - "integrity": "sha512-Dgxsyg54Fx1d4Nge8UnvTrED63vrwOdPmyvPzlNN/boaliRP54pm3pGzZD1SJUwrBA+Cs/xdG8kXX6Mn/RfISQ==", + "node_modules/@babel/highlight/node_modules/chalk": { + "version": "2.4.2", + "license": "MIT", "dependencies": { - "@babel/helper-plugin-utils": "^7.18.6" + "ansi-styles": "^3.2.1", + "escape-string-regexp": "^1.0.5", + "supports-color": "^5.3.0" }, "engines": { - "node": ">=6.9.0" - }, - "peerDependencies": { - "@babel/core": "^7.0.0" + "node": ">=4" } }, - "node_modules/@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining": { - "version": "7.18.6", - "resolved": "https://registry.npmjs.org/@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining/-/plugin-bugfix-v8-spread-parameters-in-optional-chaining-7.18.6.tgz", - "integrity": "sha512-Udgu8ZRgrBrttVz6A0EVL0SJ1z+RLbIeqsu632SA1hf0awEppD6TvdznoH+orIF8wtFFAV/Enmw9Y+9oV8TQcw==", + "node_modules/@babel/highlight/node_modules/color-convert": { + "version": "1.9.3", + "license": "MIT", "dependencies": { - "@babel/helper-plugin-utils": "^7.18.6", - "@babel/helper-skip-transparent-expression-wrappers": "^7.18.6", - "@babel/plugin-proposal-optional-chaining": "^7.18.6" - }, + "color-name": "1.1.3" + } + }, + "node_modules/@babel/highlight/node_modules/color-name": { + "version": "1.1.3", + "license": "MIT" + }, + "node_modules/@babel/highlight/node_modules/escape-string-regexp": { + "version": "1.0.5", + "license": "MIT", "engines": { - "node": ">=6.9.0" - }, - "peerDependencies": { - "@babel/core": "^7.13.0" + "node": ">=0.8.0" } }, - "node_modules/@babel/plugin-proposal-async-generator-functions": { - "version": "7.18.6", - "resolved": "https://registry.npmjs.org/@babel/plugin-proposal-async-generator-functions/-/plugin-proposal-async-generator-functions-7.18.6.tgz", - "integrity": "sha512-WAz4R9bvozx4qwf74M+sfqPMKfSqwM0phxPTR6iJIi8robgzXwkEgmeJG1gEKhm6sDqT/U9aV3lfcqybIpev8w==", - "dependencies": { - "@babel/helper-environment-visitor": "^7.18.6", - "@babel/helper-plugin-utils": "^7.18.6", - "@babel/helper-remap-async-to-generator": "^7.18.6", - "@babel/plugin-syntax-async-generators": "^7.8.4" - }, + "node_modules/@babel/highlight/node_modules/has-flag": { + "version": "3.0.0", + "license": "MIT", "engines": { - "node": ">=6.9.0" - }, - "peerDependencies": { - "@babel/core": "^7.0.0-0" + "node": ">=4" } }, - "node_modules/@babel/plugin-proposal-class-properties": { - "version": "7.18.6", - "resolved": "https://registry.npmjs.org/@babel/plugin-proposal-class-properties/-/plugin-proposal-class-properties-7.18.6.tgz", - "integrity": "sha512-cumfXOF0+nzZrrN8Rf0t7M+tF6sZc7vhQwYQck9q1/5w2OExlD+b4v4RpMJFaV1Z7WcDRgO6FqvxqxGlwo+RHQ==", + "node_modules/@babel/highlight/node_modules/supports-color": { + "version": "5.5.0", + "license": "MIT", "dependencies": { - "@babel/helper-create-class-features-plugin": "^7.18.6", - "@babel/helper-plugin-utils": "^7.18.6" + "has-flag": "^3.0.0" }, "engines": { - "node": ">=6.9.0" - }, - "peerDependencies": { - "@babel/core": "^7.0.0-0" + "node": ">=4" } }, - "node_modules/@babel/plugin-proposal-class-static-block": { - "version": "7.18.6", - "resolved": "https://registry.npmjs.org/@babel/plugin-proposal-class-static-block/-/plugin-proposal-class-static-block-7.18.6.tgz", - "integrity": "sha512-+I3oIiNxrCpup3Gi8n5IGMwj0gOCAjcJUSQEcotNnCCPMEnixawOQ+KeJPlgfjzx+FKQ1QSyZOWe7wmoJp7vhw==", - "dependencies": { - "@babel/helper-create-class-features-plugin": "^7.18.6", - "@babel/helper-plugin-utils": "^7.18.6", - "@babel/plugin-syntax-class-static-block": "^7.14.5" + "node_modules/@babel/parser": { + "version": "7.22.11", + "license": "MIT", + "bin": { + "parser": "bin/babel-parser.js" }, "engines": { - "node": ">=6.9.0" - }, - "peerDependencies": { - "@babel/core": "^7.12.0" + "node": ">=6.0.0" } }, - "node_modules/@babel/plugin-proposal-decorators": { - "version": "7.18.6", - "resolved": "https://registry.npmjs.org/@babel/plugin-proposal-decorators/-/plugin-proposal-decorators-7.18.6.tgz", - "integrity": "sha512-gAdhsjaYmiZVxx5vTMiRfj31nB7LhwBJFMSLzeDxc7X4tKLixup0+k9ughn0RcpBrv9E3PBaXJW7jF5TCihAOg==", + "node_modules/@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression": { + "version": "7.22.5", + "license": "MIT", "dependencies": { - "@babel/helper-create-class-features-plugin": "^7.18.6", - "@babel/helper-plugin-utils": "^7.18.6", - "@babel/helper-replace-supers": "^7.18.6", - "@babel/helper-split-export-declaration": "^7.18.6", - "@babel/plugin-syntax-decorators": "^7.18.6" + "@babel/helper-plugin-utils": "^7.22.5" }, "engines": { "node": ">=6.9.0" }, "peerDependencies": { - "@babel/core": "^7.0.0-0" + "@babel/core": "^7.0.0" } }, - "node_modules/@babel/plugin-proposal-dynamic-import": { - "version": "7.18.6", - "resolved": "https://registry.npmjs.org/@babel/plugin-proposal-dynamic-import/-/plugin-proposal-dynamic-import-7.18.6.tgz", - "integrity": "sha512-1auuwmK+Rz13SJj36R+jqFPMJWyKEDd7lLSdOj4oJK0UTgGueSAtkrCvz9ewmgyU/P941Rv2fQwZJN8s6QruXw==", + "node_modules/@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining": { + "version": "7.22.5", + "license": "MIT", "dependencies": { - "@babel/helper-plugin-utils": "^7.18.6", - "@babel/plugin-syntax-dynamic-import": "^7.8.3" + "@babel/helper-plugin-utils": "^7.22.5", + "@babel/helper-skip-transparent-expression-wrappers": "^7.22.5", + "@babel/plugin-transform-optional-chaining": "^7.22.5" }, "engines": { "node": ">=6.9.0" }, "peerDependencies": { - "@babel/core": "^7.0.0-0" + "@babel/core": "^7.13.0" } }, - "node_modules/@babel/plugin-proposal-export-namespace-from": { - "version": "7.18.6", - "resolved": "https://registry.npmjs.org/@babel/plugin-proposal-export-namespace-from/-/plugin-proposal-export-namespace-from-7.18.6.tgz", - "integrity": "sha512-zr/QcUlUo7GPo6+X1wC98NJADqmy5QTFWWhqeQWiki4XHafJtLl/YMGkmRB2szDD2IYJCCdBTd4ElwhId9T7Xw==", + "node_modules/@babel/plugin-external-helpers": { + "version": "7.22.5", + "license": "MIT", "dependencies": { - "@babel/helper-plugin-utils": "^7.18.6", - "@babel/plugin-syntax-export-namespace-from": "^7.8.3" + "@babel/helper-plugin-utils": "^7.22.5" }, "engines": { "node": ">=6.9.0" @@ -699,13 +743,12 @@ "@babel/core": "^7.0.0-0" } }, - "node_modules/@babel/plugin-proposal-json-strings": { + "node_modules/@babel/plugin-proposal-class-properties": { "version": "7.18.6", - "resolved": "https://registry.npmjs.org/@babel/plugin-proposal-json-strings/-/plugin-proposal-json-strings-7.18.6.tgz", - "integrity": "sha512-lr1peyn9kOdbYc0xr0OdHTZ5FMqS6Di+H0Fz2I/JwMzGmzJETNeOFq2pBySw6X/KFL5EWDjlJuMsUGRFb8fQgQ==", + "license": "MIT", "dependencies": { - "@babel/helper-plugin-utils": "^7.18.6", - "@babel/plugin-syntax-json-strings": "^7.8.3" + "@babel/helper-create-class-features-plugin": "^7.18.6", + "@babel/helper-plugin-utils": "^7.18.6" }, "engines": { "node": ">=6.9.0" @@ -714,13 +757,15 @@ "@babel/core": "^7.0.0-0" } }, - "node_modules/@babel/plugin-proposal-logical-assignment-operators": { - "version": "7.18.6", - "resolved": "https://registry.npmjs.org/@babel/plugin-proposal-logical-assignment-operators/-/plugin-proposal-logical-assignment-operators-7.18.6.tgz", - "integrity": "sha512-zMo66azZth/0tVd7gmkxOkOjs2rpHyhpcFo565PUP37hSp6hSd9uUKIfTDFMz58BwqgQKhJ9YxtM5XddjXVn+Q==", + "node_modules/@babel/plugin-proposal-decorators": { + "version": "7.22.10", + "license": "MIT", "dependencies": { - "@babel/helper-plugin-utils": "^7.18.6", - "@babel/plugin-syntax-logical-assignment-operators": "^7.10.4" + "@babel/helper-create-class-features-plugin": "^7.22.10", + "@babel/helper-plugin-utils": "^7.22.5", + "@babel/helper-replace-supers": "^7.22.9", + "@babel/helper-split-export-declaration": "^7.22.6", + "@babel/plugin-syntax-decorators": "^7.22.10" }, "engines": { "node": ">=6.9.0" @@ -731,8 +776,7 @@ }, "node_modules/@babel/plugin-proposal-nullish-coalescing-operator": { "version": "7.18.6", - "resolved": "https://registry.npmjs.org/@babel/plugin-proposal-nullish-coalescing-operator/-/plugin-proposal-nullish-coalescing-operator-7.18.6.tgz", - "integrity": "sha512-wQxQzxYeJqHcfppzBDnm1yAY0jSRkUXR2z8RePZYrKwMKgMlE8+Z6LUno+bd6LvbGh8Gltvy74+9pIYkr+XkKA==", + "license": "MIT", "dependencies": { "@babel/helper-plugin-utils": "^7.18.6", "@babel/plugin-syntax-nullish-coalescing-operator": "^7.8.3" @@ -746,8 +790,7 @@ }, "node_modules/@babel/plugin-proposal-numeric-separator": { "version": "7.18.6", - "resolved": "https://registry.npmjs.org/@babel/plugin-proposal-numeric-separator/-/plugin-proposal-numeric-separator-7.18.6.tgz", - "integrity": "sha512-ozlZFogPqoLm8WBr5Z8UckIoE4YQ5KESVcNudyXOR8uqIkliTEgJ3RoketfG6pmzLdeZF0H/wjE9/cCEitBl7Q==", + "license": "MIT", "dependencies": { "@babel/helper-plugin-utils": "^7.18.6", "@babel/plugin-syntax-numeric-separator": "^7.10.4" @@ -760,30 +803,14 @@ } }, "node_modules/@babel/plugin-proposal-object-rest-spread": { - "version": "7.18.6", - "resolved": "https://registry.npmjs.org/@babel/plugin-proposal-object-rest-spread/-/plugin-proposal-object-rest-spread-7.18.6.tgz", - "integrity": "sha512-9yuM6wr4rIsKa1wlUAbZEazkCrgw2sMPEXCr4Rnwetu7cEW1NydkCWytLuYletbf8vFxdJxFhwEZqMpOx2eZyw==", + "version": "7.20.7", + "license": "MIT", "dependencies": { - "@babel/compat-data": "^7.18.6", - "@babel/helper-compilation-targets": "^7.18.6", - "@babel/helper-plugin-utils": "^7.18.6", + "@babel/compat-data": "^7.20.5", + "@babel/helper-compilation-targets": "^7.20.7", + "@babel/helper-plugin-utils": "^7.20.2", "@babel/plugin-syntax-object-rest-spread": "^7.8.3", - "@babel/plugin-transform-parameters": "^7.18.6" - }, - "engines": { - "node": ">=6.9.0" - }, - "peerDependencies": { - "@babel/core": "^7.0.0-0" - } - }, - "node_modules/@babel/plugin-proposal-optional-catch-binding": { - "version": "7.18.6", - "resolved": "https://registry.npmjs.org/@babel/plugin-proposal-optional-catch-binding/-/plugin-proposal-optional-catch-binding-7.18.6.tgz", - "integrity": "sha512-Q40HEhs9DJQyaZfUjjn6vE8Cv4GmMHCYuMGIWUnlxH6400VGxOuwWsPt4FxXxJkC/5eOzgn0z21M9gMT4MOhbw==", - "dependencies": { - "@babel/helper-plugin-utils": "^7.18.6", - "@babel/plugin-syntax-optional-catch-binding": "^7.8.3" + "@babel/plugin-transform-parameters": "^7.20.7" }, "engines": { "node": ">=6.9.0" @@ -793,12 +820,11 @@ } }, "node_modules/@babel/plugin-proposal-optional-chaining": { - "version": "7.18.6", - "resolved": "https://registry.npmjs.org/@babel/plugin-proposal-optional-chaining/-/plugin-proposal-optional-chaining-7.18.6.tgz", - "integrity": "sha512-PatI6elL5eMzoypFAiYDpYQyMtXTn+iMhuxxQt5mAXD4fEmKorpSI3PHd+i3JXBJN3xyA6MvJv7at23HffFHwA==", + "version": "7.21.0", + "license": "MIT", "dependencies": { - "@babel/helper-plugin-utils": "^7.18.6", - "@babel/helper-skip-transparent-expression-wrappers": "^7.18.6", + "@babel/helper-plugin-utils": "^7.20.2", + "@babel/helper-skip-transparent-expression-wrappers": "^7.20.0", "@babel/plugin-syntax-optional-chaining": "^7.8.3" }, "engines": { @@ -810,8 +836,7 @@ }, "node_modules/@babel/plugin-proposal-private-methods": { "version": "7.18.6", - "resolved": "https://registry.npmjs.org/@babel/plugin-proposal-private-methods/-/plugin-proposal-private-methods-7.18.6.tgz", - "integrity": "sha512-nutsvktDItsNn4rpGItSNV2sz1XwS+nfU0Rg8aCx3W3NOKVzdMjJRu0O5OkgDp3ZGICSTbgRpxZoWsxoKRvbeA==", + "license": "MIT", "dependencies": { "@babel/helper-create-class-features-plugin": "^7.18.6", "@babel/helper-plugin-utils": "^7.18.6" @@ -824,15 +849,8 @@ } }, "node_modules/@babel/plugin-proposal-private-property-in-object": { - "version": "7.18.6", - "resolved": "https://registry.npmjs.org/@babel/plugin-proposal-private-property-in-object/-/plugin-proposal-private-property-in-object-7.18.6.tgz", - "integrity": "sha512-9Rysx7FOctvT5ouj5JODjAFAkgGoudQuLPamZb0v1TGLpapdNaftzifU8NTWQm0IRjqoYypdrSmyWgkocDQ8Dw==", - "dependencies": { - "@babel/helper-annotate-as-pure": "^7.18.6", - "@babel/helper-create-class-features-plugin": "^7.18.6", - "@babel/helper-plugin-utils": "^7.18.6", - "@babel/plugin-syntax-private-property-in-object": "^7.14.5" - }, + "version": "7.21.0-placeholder-for-preset-env.2", + "license": "MIT", "engines": { "node": ">=6.9.0" }, @@ -840,25 +858,9 @@ "@babel/core": "^7.0.0-0" } }, - "node_modules/@babel/plugin-proposal-unicode-property-regex": { - "version": "7.18.6", - "resolved": "https://registry.npmjs.org/@babel/plugin-proposal-unicode-property-regex/-/plugin-proposal-unicode-property-regex-7.18.6.tgz", - "integrity": "sha512-2BShG/d5yoZyXZfVePH91urL5wTG6ASZU9M4o03lKK8u8UW1y08OMttBSOADTcJrnPMpvDXRG3G8fyLh4ovs8w==", - "dependencies": { - "@babel/helper-create-regexp-features-plugin": "^7.18.6", - "@babel/helper-plugin-utils": "^7.18.6" - }, - "engines": { - "node": ">=4" - }, - "peerDependencies": { - "@babel/core": "^7.0.0-0" - } - }, "node_modules/@babel/plugin-syntax-async-generators": { "version": "7.8.4", - "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-async-generators/-/plugin-syntax-async-generators-7.8.4.tgz", - "integrity": "sha512-tycmZxkGfZaxhMRbXlPXuVFpdWlXpir2W4AMhSJgRKzk/eDlIXOhb2LHWoLpDF7TEHylV5zNhykX6KAgHJmTNw==", + "license": "MIT", "dependencies": { "@babel/helper-plugin-utils": "^7.8.0" }, @@ -868,8 +870,7 @@ }, "node_modules/@babel/plugin-syntax-bigint": { "version": "7.8.3", - "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-bigint/-/plugin-syntax-bigint-7.8.3.tgz", - "integrity": "sha512-wnTnFlG+YxQm3vDxpGE57Pj0srRU4sHE/mDkt1qv2YJJSeUAec2ma4WLUnUPeKjyrfntVwe/N6dCXpU+zL3Npg==", + "license": "MIT", "dependencies": { "@babel/helper-plugin-utils": "^7.8.0" }, @@ -879,8 +880,7 @@ }, "node_modules/@babel/plugin-syntax-class-properties": { "version": "7.12.13", - "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-class-properties/-/plugin-syntax-class-properties-7.12.13.tgz", - "integrity": "sha512-fm4idjKla0YahUNgFNLCB0qySdsoPiZP3iQE3rky0mBUtMZ23yDJ9SJdg6dXTSDnulOVqiF3Hgr9nbXvXTQZYA==", + "license": "MIT", "dependencies": { "@babel/helper-plugin-utils": "^7.12.13" }, @@ -890,8 +890,7 @@ }, "node_modules/@babel/plugin-syntax-class-static-block": { "version": "7.14.5", - "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-class-static-block/-/plugin-syntax-class-static-block-7.14.5.tgz", - "integrity": "sha512-b+YyPmr6ldyNnM6sqYeMWE+bgJcJpO6yS4QD7ymxgH34GBPNDM/THBh8iunyvKIZztiwLH4CJZ0RxTk9emgpjw==", + "license": "MIT", "dependencies": { "@babel/helper-plugin-utils": "^7.14.5" }, @@ -903,11 +902,10 @@ } }, "node_modules/@babel/plugin-syntax-decorators": { - "version": "7.18.6", - "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-decorators/-/plugin-syntax-decorators-7.18.6.tgz", - "integrity": "sha512-fqyLgjcxf/1yhyZ6A+yo1u9gJ7eleFQod2lkaUsF9DQ7sbbY3Ligym3L0+I2c0WmqNKDpoD9UTb1AKP3qRMOAQ==", + "version": "7.22.10", + "license": "MIT", "dependencies": { - "@babel/helper-plugin-utils": "^7.18.6" + "@babel/helper-plugin-utils": "^7.22.5" }, "engines": { "node": ">=6.9.0" @@ -918,8 +916,7 @@ }, "node_modules/@babel/plugin-syntax-dynamic-import": { "version": "7.8.3", - "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-dynamic-import/-/plugin-syntax-dynamic-import-7.8.3.tgz", - "integrity": "sha512-5gdGbFon+PszYzqs83S3E5mpi7/y/8M9eC90MRTZfduQOYW76ig6SOSPNe41IG5LoP3FGBn2N0RjVDSQiS94kQ==", + "license": "MIT", "dependencies": { "@babel/helper-plugin-utils": "^7.8.0" }, @@ -929,8 +926,7 @@ }, "node_modules/@babel/plugin-syntax-export-namespace-from": { "version": "7.8.3", - "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-export-namespace-from/-/plugin-syntax-export-namespace-from-7.8.3.tgz", - "integrity": "sha512-MXf5laXo6c1IbEbegDmzGPwGNTsHZmEy6QGznu5Sh2UCWvueywb2ee+CCE4zQiZstxU9BMoQO9i6zUFSY0Kj0Q==", + "license": "MIT", "dependencies": { "@babel/helper-plugin-utils": "^7.8.3" }, @@ -939,11 +935,10 @@ } }, "node_modules/@babel/plugin-syntax-flow": { - "version": "7.18.6", - "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-flow/-/plugin-syntax-flow-7.18.6.tgz", - "integrity": "sha512-LUbR+KNTBWCUAqRG9ex5Gnzu2IOkt8jRJbHHXFT9q+L9zm7M/QQbEqXyw1n1pohYvOyWC8CjeyjrSaIwiYjK7A==", + "version": "7.22.5", + "license": "MIT", "dependencies": { - "@babel/helper-plugin-utils": "^7.18.6" + "@babel/helper-plugin-utils": "^7.22.5" }, "engines": { "node": ">=6.9.0" @@ -953,11 +948,23 @@ } }, "node_modules/@babel/plugin-syntax-import-assertions": { - "version": "7.18.6", - "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-import-assertions/-/plugin-syntax-import-assertions-7.18.6.tgz", - "integrity": "sha512-/DU3RXad9+bZwrgWJQKbr39gYbJpLJHezqEzRzi/BHRlJ9zsQb4CK2CA/5apllXNomwA1qHwzvHl+AdEmC5krQ==", + "version": "7.22.5", + "license": "MIT", "dependencies": { - "@babel/helper-plugin-utils": "^7.18.6" + "@babel/helper-plugin-utils": "^7.22.5" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-syntax-import-attributes": { + "version": "7.22.5", + "license": "MIT", + "dependencies": { + "@babel/helper-plugin-utils": "^7.22.5" }, "engines": { "node": ">=6.9.0" @@ -968,8 +975,7 @@ }, "node_modules/@babel/plugin-syntax-import-meta": { "version": "7.10.4", - "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-import-meta/-/plugin-syntax-import-meta-7.10.4.tgz", - "integrity": "sha512-Yqfm+XDx0+Prh3VSeEQCPU81yC+JWZ2pDPFSS4ZdpfZhp4MkFMaDC1UqseovEKwSUpnIL7+vK+Clp7bfh0iD7g==", + "license": "MIT", "dependencies": { "@babel/helper-plugin-utils": "^7.10.4" }, @@ -979,8 +985,7 @@ }, "node_modules/@babel/plugin-syntax-json-strings": { "version": "7.8.3", - "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-json-strings/-/plugin-syntax-json-strings-7.8.3.tgz", - "integrity": "sha512-lY6kdGpWHvjoe2vk4WrAapEuBR69EMxZl+RoGRhrFGNYVK8mOPAW8VfbT/ZgrFbXlDNiiaxQnAtgVCZ6jv30EA==", + "license": "MIT", "dependencies": { "@babel/helper-plugin-utils": "^7.8.0" }, @@ -989,11 +994,10 @@ } }, "node_modules/@babel/plugin-syntax-jsx": { - "version": "7.18.6", - "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-jsx/-/plugin-syntax-jsx-7.18.6.tgz", - "integrity": "sha512-6mmljtAedFGTWu2p/8WIORGwy+61PLgOMPOdazc7YoJ9ZCWUyFy3A6CpPkRKLKD1ToAesxX8KGEViAiLo9N+7Q==", + "version": "7.22.5", + "license": "MIT", "dependencies": { - "@babel/helper-plugin-utils": "^7.18.6" + "@babel/helper-plugin-utils": "^7.22.5" }, "engines": { "node": ">=6.9.0" @@ -1004,8 +1008,7 @@ }, "node_modules/@babel/plugin-syntax-logical-assignment-operators": { "version": "7.10.4", - "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-logical-assignment-operators/-/plugin-syntax-logical-assignment-operators-7.10.4.tgz", - "integrity": "sha512-d8waShlpFDinQ5MtvGU9xDAOzKH47+FFoney2baFIoMr952hKOLp1HR7VszoZvOsV/4+RRszNY7D17ba0te0ig==", + "license": "MIT", "dependencies": { "@babel/helper-plugin-utils": "^7.10.4" }, @@ -1015,8 +1018,7 @@ }, "node_modules/@babel/plugin-syntax-nullish-coalescing-operator": { "version": "7.8.3", - "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-nullish-coalescing-operator/-/plugin-syntax-nullish-coalescing-operator-7.8.3.tgz", - "integrity": "sha512-aSff4zPII1u2QD7y+F8oDsz19ew4IGEJg9SVW+bqwpwtfFleiQDMdzA/R+UlWDzfnHFCxxleFT0PMIrR36XLNQ==", + "license": "MIT", "dependencies": { "@babel/helper-plugin-utils": "^7.8.0" }, @@ -1026,8 +1028,7 @@ }, "node_modules/@babel/plugin-syntax-numeric-separator": { "version": "7.10.4", - "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-numeric-separator/-/plugin-syntax-numeric-separator-7.10.4.tgz", - "integrity": "sha512-9H6YdfkcK/uOnY/K7/aA2xpzaAgkQn37yzWUMRK7OaPOqOpGS1+n0H5hxT9AUw9EsSjPW8SVyMJwYRtWs3X3ug==", + "license": "MIT", "dependencies": { "@babel/helper-plugin-utils": "^7.10.4" }, @@ -1037,8 +1038,7 @@ }, "node_modules/@babel/plugin-syntax-object-rest-spread": { "version": "7.8.3", - "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-object-rest-spread/-/plugin-syntax-object-rest-spread-7.8.3.tgz", - "integrity": "sha512-XoqMijGZb9y3y2XskN+P1wUGiVwWZ5JmoDRwx5+3GmEplNyVM2s2Dg8ILFQm8rWM48orGy5YpI5Bl8U1y7ydlA==", + "license": "MIT", "dependencies": { "@babel/helper-plugin-utils": "^7.8.0" }, @@ -1048,8 +1048,7 @@ }, "node_modules/@babel/plugin-syntax-optional-catch-binding": { "version": "7.8.3", - "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-optional-catch-binding/-/plugin-syntax-optional-catch-binding-7.8.3.tgz", - "integrity": "sha512-6VPD0Pc1lpTqw0aKoeRTMiB+kWhAoT24PA+ksWSBrFtl5SIRVpZlwN3NNPQjehA2E/91FV3RjLWoVTglWcSV3Q==", + "license": "MIT", "dependencies": { "@babel/helper-plugin-utils": "^7.8.0" }, @@ -1059,8 +1058,7 @@ }, "node_modules/@babel/plugin-syntax-optional-chaining": { "version": "7.8.3", - "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-optional-chaining/-/plugin-syntax-optional-chaining-7.8.3.tgz", - "integrity": "sha512-KoK9ErH1MBlCPxV0VANkXW2/dw4vlbGDrFgz8bmUsBGYkFRcbRwMh6cIJubdPrkxRwuGdtCk0v/wPTKbQgBjkg==", + "license": "MIT", "dependencies": { "@babel/helper-plugin-utils": "^7.8.0" }, @@ -1070,8 +1068,7 @@ }, "node_modules/@babel/plugin-syntax-private-property-in-object": { "version": "7.14.5", - "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-private-property-in-object/-/plugin-syntax-private-property-in-object-7.14.5.tgz", - "integrity": "sha512-0wVnp9dxJ72ZUJDV27ZfbSj6iHLoytYZmh3rFcxNnvsJF3ktkzLDZPy/mA17HGsaQT3/DQsWYX1f1QGWkCoVUg==", + "license": "MIT", "dependencies": { "@babel/helper-plugin-utils": "^7.14.5" }, @@ -1084,8 +1081,7 @@ }, "node_modules/@babel/plugin-syntax-top-level-await": { "version": "7.14.5", - "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-top-level-await/-/plugin-syntax-top-level-await-7.14.5.tgz", - "integrity": "sha512-hx++upLv5U1rgYfwe1xBQUhRmU41NEvpUvrp8jkrSCdvGSnM5/qdRMtylJ6PG5OFkBaHkbTAKTnd3/YyESRHFw==", + "license": "MIT", "dependencies": { "@babel/helper-plugin-utils": "^7.14.5" }, @@ -1097,11 +1093,10 @@ } }, "node_modules/@babel/plugin-syntax-typescript": { - "version": "7.18.6", - "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-typescript/-/plugin-syntax-typescript-7.18.6.tgz", - "integrity": "sha512-mAWAuq4rvOepWCBid55JuRNvpTNf2UGVgoz4JV0fXEKolsVZDzsa4NqCef758WZJj/GDu0gVGItjKFiClTAmZA==", + "version": "7.22.5", + "license": "MIT", "dependencies": { - "@babel/helper-plugin-utils": "^7.18.6" + "@babel/helper-plugin-utils": "^7.22.5" }, "engines": { "node": ">=6.9.0" @@ -1110,28 +1105,25 @@ "@babel/core": "^7.0.0-0" } }, - "node_modules/@babel/plugin-transform-arrow-functions": { + "node_modules/@babel/plugin-syntax-unicode-sets-regex": { "version": "7.18.6", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-arrow-functions/-/plugin-transform-arrow-functions-7.18.6.tgz", - "integrity": "sha512-9S9X9RUefzrsHZmKMbDXxweEH+YlE8JJEuat9FdvW9Qh1cw7W64jELCtWNkPBPX5En45uy28KGvA/AySqUh8CQ==", + "license": "MIT", "dependencies": { + "@babel/helper-create-regexp-features-plugin": "^7.18.6", "@babel/helper-plugin-utils": "^7.18.6" }, "engines": { "node": ">=6.9.0" }, "peerDependencies": { - "@babel/core": "^7.0.0-0" + "@babel/core": "^7.0.0" } }, - "node_modules/@babel/plugin-transform-async-to-generator": { - "version": "7.18.6", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-async-to-generator/-/plugin-transform-async-to-generator-7.18.6.tgz", - "integrity": "sha512-ARE5wZLKnTgPW7/1ftQmSi1CmkqqHo2DNmtztFhvgtOWSDfq0Cq9/9L+KnZNYSNrydBekhW3rwShduf59RoXag==", + "node_modules/@babel/plugin-transform-arrow-functions": { + "version": "7.22.5", + "license": "MIT", "dependencies": { - "@babel/helper-module-imports": "^7.18.6", - "@babel/helper-plugin-utils": "^7.18.6", - "@babel/helper-remap-async-to-generator": "^7.18.6" + "@babel/helper-plugin-utils": "^7.22.5" }, "engines": { "node": ">=6.9.0" @@ -1140,12 +1132,14 @@ "@babel/core": "^7.0.0-0" } }, - "node_modules/@babel/plugin-transform-block-scoped-functions": { - "version": "7.18.6", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-block-scoped-functions/-/plugin-transform-block-scoped-functions-7.18.6.tgz", - "integrity": "sha512-ExUcOqpPWnliRcPqves5HJcJOvHvIIWfuS4sroBUenPuMdmW+SMHDakmtS7qOo13sVppmUijqeTv7qqGsvURpQ==", + "node_modules/@babel/plugin-transform-async-generator-functions": { + "version": "7.22.11", + "license": "MIT", "dependencies": { - "@babel/helper-plugin-utils": "^7.18.6" + "@babel/helper-environment-visitor": "^7.22.5", + "@babel/helper-plugin-utils": "^7.22.5", + "@babel/helper-remap-async-to-generator": "^7.22.9", + "@babel/plugin-syntax-async-generators": "^7.8.4" }, "engines": { "node": ">=6.9.0" @@ -1154,12 +1148,13 @@ "@babel/core": "^7.0.0-0" } }, - "node_modules/@babel/plugin-transform-block-scoping": { - "version": "7.18.6", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-block-scoping/-/plugin-transform-block-scoping-7.18.6.tgz", - "integrity": "sha512-pRqwb91C42vs1ahSAWJkxOxU1RHWDn16XAa6ggQ72wjLlWyYeAcLvTtE0aM8ph3KNydy9CQF2nLYcjq1WysgxQ==", + "node_modules/@babel/plugin-transform-async-to-generator": { + "version": "7.22.5", + "license": "MIT", "dependencies": { - "@babel/helper-plugin-utils": "^7.18.6" + "@babel/helper-module-imports": "^7.22.5", + "@babel/helper-plugin-utils": "^7.22.5", + "@babel/helper-remap-async-to-generator": "^7.22.5" }, "engines": { "node": ">=6.9.0" @@ -1168,19 +1163,11 @@ "@babel/core": "^7.0.0-0" } }, - "node_modules/@babel/plugin-transform-classes": { - "version": "7.18.6", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-classes/-/plugin-transform-classes-7.18.6.tgz", - "integrity": "sha512-XTg8XW/mKpzAF3actL554Jl/dOYoJtv3l8fxaEczpgz84IeeVf+T1u2CSvPHuZbt0w3JkIx4rdn/MRQI7mo0HQ==", + "node_modules/@babel/plugin-transform-block-scoped-functions": { + "version": "7.22.5", + "license": "MIT", "dependencies": { - "@babel/helper-annotate-as-pure": "^7.18.6", - "@babel/helper-environment-visitor": "^7.18.6", - "@babel/helper-function-name": "^7.18.6", - "@babel/helper-optimise-call-expression": "^7.18.6", - "@babel/helper-plugin-utils": "^7.18.6", - "@babel/helper-replace-supers": "^7.18.6", - "@babel/helper-split-export-declaration": "^7.18.6", - "globals": "^11.1.0" + "@babel/helper-plugin-utils": "^7.22.5" }, "engines": { "node": ">=6.9.0" @@ -1189,12 +1176,11 @@ "@babel/core": "^7.0.0-0" } }, - "node_modules/@babel/plugin-transform-computed-properties": { - "version": "7.18.6", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-computed-properties/-/plugin-transform-computed-properties-7.18.6.tgz", - "integrity": "sha512-9repI4BhNrR0KenoR9vm3/cIc1tSBIo+u1WVjKCAynahj25O8zfbiE6JtAtHPGQSs4yZ+bA8mRasRP+qc+2R5A==", + "node_modules/@babel/plugin-transform-block-scoping": { + "version": "7.22.10", + "license": "MIT", "dependencies": { - "@babel/helper-plugin-utils": "^7.18.6" + "@babel/helper-plugin-utils": "^7.22.5" }, "engines": { "node": ">=6.9.0" @@ -1203,12 +1189,12 @@ "@babel/core": "^7.0.0-0" } }, - "node_modules/@babel/plugin-transform-destructuring": { - "version": "7.18.6", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-destructuring/-/plugin-transform-destructuring-7.18.6.tgz", - "integrity": "sha512-tgy3u6lRp17ilY8r1kP4i2+HDUwxlVqq3RTc943eAWSzGgpU1qhiKpqZ5CMyHReIYPHdo3Kg8v8edKtDqSVEyQ==", + "node_modules/@babel/plugin-transform-class-properties": { + "version": "7.22.5", + "license": "MIT", "dependencies": { - "@babel/helper-plugin-utils": "^7.18.6" + "@babel/helper-create-class-features-plugin": "^7.22.5", + "@babel/helper-plugin-utils": "^7.22.5" }, "engines": { "node": ">=6.9.0" @@ -1217,27 +1203,34 @@ "@babel/core": "^7.0.0-0" } }, - "node_modules/@babel/plugin-transform-dotall-regex": { - "version": "7.18.6", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-dotall-regex/-/plugin-transform-dotall-regex-7.18.6.tgz", - "integrity": "sha512-6S3jpun1eEbAxq7TdjLotAsl4WpQI9DxfkycRcKrjhQYzU87qpXdknpBg/e+TdcMehqGnLFi7tnFUBR02Vq6wg==", + "node_modules/@babel/plugin-transform-class-static-block": { + "version": "7.22.11", + "license": "MIT", "dependencies": { - "@babel/helper-create-regexp-features-plugin": "^7.18.6", - "@babel/helper-plugin-utils": "^7.18.6" + "@babel/helper-create-class-features-plugin": "^7.22.11", + "@babel/helper-plugin-utils": "^7.22.5", + "@babel/plugin-syntax-class-static-block": "^7.14.5" }, "engines": { "node": ">=6.9.0" }, "peerDependencies": { - "@babel/core": "^7.0.0-0" + "@babel/core": "^7.12.0" } }, - "node_modules/@babel/plugin-transform-duplicate-keys": { - "version": "7.18.6", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-duplicate-keys/-/plugin-transform-duplicate-keys-7.18.6.tgz", - "integrity": "sha512-NJU26U/208+sxYszf82nmGYqVF9QN8py2HFTblPT9hbawi8+1C5a9JubODLTGFuT0qlkqVinmkwOD13s0sZktg==", - "dependencies": { - "@babel/helper-plugin-utils": "^7.18.6" + "node_modules/@babel/plugin-transform-classes": { + "version": "7.22.6", + "license": "MIT", + "dependencies": { + "@babel/helper-annotate-as-pure": "^7.22.5", + "@babel/helper-compilation-targets": "^7.22.6", + "@babel/helper-environment-visitor": "^7.22.5", + "@babel/helper-function-name": "^7.22.5", + "@babel/helper-optimise-call-expression": "^7.22.5", + "@babel/helper-plugin-utils": "^7.22.5", + "@babel/helper-replace-supers": "^7.22.5", + "@babel/helper-split-export-declaration": "^7.22.6", + "globals": "^11.1.0" }, "engines": { "node": ">=6.9.0" @@ -1246,13 +1239,12 @@ "@babel/core": "^7.0.0-0" } }, - "node_modules/@babel/plugin-transform-exponentiation-operator": { - "version": "7.18.6", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-exponentiation-operator/-/plugin-transform-exponentiation-operator-7.18.6.tgz", - "integrity": "sha512-wzEtc0+2c88FVR34aQmiz56dxEkxr2g8DQb/KfaFa1JYXOFVsbhvAonFN6PwVWj++fKmku8NP80plJ5Et4wqHw==", + "node_modules/@babel/plugin-transform-computed-properties": { + "version": "7.22.5", + "license": "MIT", "dependencies": { - "@babel/helper-builder-binary-assignment-operator-visitor": "^7.18.6", - "@babel/helper-plugin-utils": "^7.18.6" + "@babel/helper-plugin-utils": "^7.22.5", + "@babel/template": "^7.22.5" }, "engines": { "node": ">=6.9.0" @@ -1261,13 +1253,11 @@ "@babel/core": "^7.0.0-0" } }, - "node_modules/@babel/plugin-transform-flow-strip-types": { - "version": "7.18.6", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-flow-strip-types/-/plugin-transform-flow-strip-types-7.18.6.tgz", - "integrity": "sha512-wE0xtA7csz+hw4fKPwxmu5jnzAsXPIO57XnRwzXP3T19jWh1BODnPGoG9xKYwvAwusP7iUktHayRFbMPGtODaQ==", + "node_modules/@babel/plugin-transform-destructuring": { + "version": "7.22.10", + "license": "MIT", "dependencies": { - "@babel/helper-plugin-utils": "^7.18.6", - "@babel/plugin-syntax-flow": "^7.18.6" + "@babel/helper-plugin-utils": "^7.22.5" }, "engines": { "node": ">=6.9.0" @@ -1276,12 +1266,12 @@ "@babel/core": "^7.0.0-0" } }, - "node_modules/@babel/plugin-transform-for-of": { - "version": "7.18.6", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-for-of/-/plugin-transform-for-of-7.18.6.tgz", - "integrity": "sha512-WAjoMf4wIiSsy88KmG7tgj2nFdEK7E46tArVtcgED7Bkj6Fg/tG5SbvNIOKxbFS2VFgNh6+iaPswBeQZm4ox8w==", + "node_modules/@babel/plugin-transform-dotall-regex": { + "version": "7.22.5", + "license": "MIT", "dependencies": { - "@babel/helper-plugin-utils": "^7.18.6" + "@babel/helper-create-regexp-features-plugin": "^7.22.5", + "@babel/helper-plugin-utils": "^7.22.5" }, "engines": { "node": ">=6.9.0" @@ -1290,14 +1280,11 @@ "@babel/core": "^7.0.0-0" } }, - "node_modules/@babel/plugin-transform-function-name": { - "version": "7.18.6", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-function-name/-/plugin-transform-function-name-7.18.6.tgz", - "integrity": "sha512-kJha/Gbs5RjzIu0CxZwf5e3aTTSlhZnHMT8zPWnJMjNpLOUgqevg+PN5oMH68nMCXnfiMo4Bhgxqj59KHTlAnA==", + "node_modules/@babel/plugin-transform-duplicate-keys": { + "version": "7.22.5", + "license": "MIT", "dependencies": { - "@babel/helper-compilation-targets": "^7.18.6", - "@babel/helper-function-name": "^7.18.6", - "@babel/helper-plugin-utils": "^7.18.6" + "@babel/helper-plugin-utils": "^7.22.5" }, "engines": { "node": ">=6.9.0" @@ -1306,12 +1293,12 @@ "@babel/core": "^7.0.0-0" } }, - "node_modules/@babel/plugin-transform-literals": { - "version": "7.18.6", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-literals/-/plugin-transform-literals-7.18.6.tgz", - "integrity": "sha512-x3HEw0cJZVDoENXOp20HlypIHfl0zMIhMVZEBVTfmqbObIpsMxMbmU5nOEO8R7LYT+z5RORKPlTI5Hj4OsO9/Q==", + "node_modules/@babel/plugin-transform-dynamic-import": { + "version": "7.22.11", + "license": "MIT", "dependencies": { - "@babel/helper-plugin-utils": "^7.18.6" + "@babel/helper-plugin-utils": "^7.22.5", + "@babel/plugin-syntax-dynamic-import": "^7.8.3" }, "engines": { "node": ">=6.9.0" @@ -1320,12 +1307,12 @@ "@babel/core": "^7.0.0-0" } }, - "node_modules/@babel/plugin-transform-member-expression-literals": { - "version": "7.18.6", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-member-expression-literals/-/plugin-transform-member-expression-literals-7.18.6.tgz", - "integrity": "sha512-qSF1ihLGO3q+/g48k85tUjD033C29TNTVB2paCwZPVmOsjn9pClvYYrM2VeJpBY2bcNkuny0YUyTNRyRxJ54KA==", + "node_modules/@babel/plugin-transform-exponentiation-operator": { + "version": "7.22.5", + "license": "MIT", "dependencies": { - "@babel/helper-plugin-utils": "^7.18.6" + "@babel/helper-builder-binary-assignment-operator-visitor": "^7.22.5", + "@babel/helper-plugin-utils": "^7.22.5" }, "engines": { "node": ">=6.9.0" @@ -1334,14 +1321,12 @@ "@babel/core": "^7.0.0-0" } }, - "node_modules/@babel/plugin-transform-modules-amd": { - "version": "7.18.6", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-modules-amd/-/plugin-transform-modules-amd-7.18.6.tgz", - "integrity": "sha512-Pra5aXsmTsOnjM3IajS8rTaLCy++nGM4v3YR4esk5PCsyg9z8NA5oQLwxzMUtDBd8F+UmVza3VxoAaWCbzH1rg==", + "node_modules/@babel/plugin-transform-export-namespace-from": { + "version": "7.22.11", + "license": "MIT", "dependencies": { - "@babel/helper-module-transforms": "^7.18.6", - "@babel/helper-plugin-utils": "^7.18.6", - "babel-plugin-dynamic-import-node": "^2.3.3" + "@babel/helper-plugin-utils": "^7.22.5", + "@babel/plugin-syntax-export-namespace-from": "^7.8.3" }, "engines": { "node": ">=6.9.0" @@ -1350,15 +1335,12 @@ "@babel/core": "^7.0.0-0" } }, - "node_modules/@babel/plugin-transform-modules-commonjs": { - "version": "7.18.6", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-modules-commonjs/-/plugin-transform-modules-commonjs-7.18.6.tgz", - "integrity": "sha512-Qfv2ZOWikpvmedXQJDSbxNqy7Xr/j2Y8/KfijM0iJyKkBTmWuvCA1yeH1yDM7NJhBW/2aXxeucLj6i80/LAJ/Q==", + "node_modules/@babel/plugin-transform-flow-strip-types": { + "version": "7.22.5", + "license": "MIT", "dependencies": { - "@babel/helper-module-transforms": "^7.18.6", - "@babel/helper-plugin-utils": "^7.18.6", - "@babel/helper-simple-access": "^7.18.6", - "babel-plugin-dynamic-import-node": "^2.3.3" + "@babel/helper-plugin-utils": "^7.22.5", + "@babel/plugin-syntax-flow": "^7.22.5" }, "engines": { "node": ">=6.9.0" @@ -1367,16 +1349,11 @@ "@babel/core": "^7.0.0-0" } }, - "node_modules/@babel/plugin-transform-modules-systemjs": { - "version": "7.18.6", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-modules-systemjs/-/plugin-transform-modules-systemjs-7.18.6.tgz", - "integrity": "sha512-UbPYpXxLjTw6w6yXX2BYNxF3p6QY225wcTkfQCy3OMnSlS/C3xGtwUjEzGkldb/sy6PWLiCQ3NbYfjWUTI3t4g==", + "node_modules/@babel/plugin-transform-for-of": { + "version": "7.22.5", + "license": "MIT", "dependencies": { - "@babel/helper-hoist-variables": "^7.18.6", - "@babel/helper-module-transforms": "^7.18.6", - "@babel/helper-plugin-utils": "^7.18.6", - "@babel/helper-validator-identifier": "^7.18.6", - "babel-plugin-dynamic-import-node": "^2.3.3" + "@babel/helper-plugin-utils": "^7.22.5" }, "engines": { "node": ">=6.9.0" @@ -1385,13 +1362,13 @@ "@babel/core": "^7.0.0-0" } }, - "node_modules/@babel/plugin-transform-modules-umd": { - "version": "7.18.6", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-modules-umd/-/plugin-transform-modules-umd-7.18.6.tgz", - "integrity": "sha512-dcegErExVeXcRqNtkRU/z8WlBLnvD4MRnHgNs3MytRO1Mn1sHRyhbcpYbVMGclAqOjdW+9cfkdZno9dFdfKLfQ==", + "node_modules/@babel/plugin-transform-function-name": { + "version": "7.22.5", + "license": "MIT", "dependencies": { - "@babel/helper-module-transforms": "^7.18.6", - "@babel/helper-plugin-utils": "^7.18.6" + "@babel/helper-compilation-targets": "^7.22.5", + "@babel/helper-function-name": "^7.22.5", + "@babel/helper-plugin-utils": "^7.22.5" }, "engines": { "node": ">=6.9.0" @@ -1400,27 +1377,25 @@ "@babel/core": "^7.0.0-0" } }, - "node_modules/@babel/plugin-transform-named-capturing-groups-regex": { - "version": "7.18.6", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-named-capturing-groups-regex/-/plugin-transform-named-capturing-groups-regex-7.18.6.tgz", - "integrity": "sha512-UmEOGF8XgaIqD74bC8g7iV3RYj8lMf0Bw7NJzvnS9qQhM4mg+1WHKotUIdjxgD2RGrgFLZZPCFPFj3P/kVDYhg==", + "node_modules/@babel/plugin-transform-json-strings": { + "version": "7.22.11", + "license": "MIT", "dependencies": { - "@babel/helper-create-regexp-features-plugin": "^7.18.6", - "@babel/helper-plugin-utils": "^7.18.6" + "@babel/helper-plugin-utils": "^7.22.5", + "@babel/plugin-syntax-json-strings": "^7.8.3" }, "engines": { "node": ">=6.9.0" }, "peerDependencies": { - "@babel/core": "^7.0.0" + "@babel/core": "^7.0.0-0" } }, - "node_modules/@babel/plugin-transform-new-target": { - "version": "7.18.6", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-new-target/-/plugin-transform-new-target-7.18.6.tgz", - "integrity": "sha512-DjwFA/9Iu3Z+vrAn+8pBUGcjhxKguSMlsFqeCKbhb9BAV756v0krzVK04CRDi/4aqmk8BsHb4a/gFcaA5joXRw==", + "node_modules/@babel/plugin-transform-literals": { + "version": "7.22.5", + "license": "MIT", "dependencies": { - "@babel/helper-plugin-utils": "^7.18.6" + "@babel/helper-plugin-utils": "^7.22.5" }, "engines": { "node": ">=6.9.0" @@ -1429,13 +1404,12 @@ "@babel/core": "^7.0.0-0" } }, - "node_modules/@babel/plugin-transform-object-super": { - "version": "7.18.6", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-object-super/-/plugin-transform-object-super-7.18.6.tgz", - "integrity": "sha512-uvGz6zk+pZoS1aTZrOvrbj6Pp/kK2mp45t2B+bTDre2UgsZZ8EZLSJtUg7m/no0zOJUWgFONpB7Zv9W2tSaFlA==", + "node_modules/@babel/plugin-transform-logical-assignment-operators": { + "version": "7.22.11", + "license": "MIT", "dependencies": { - "@babel/helper-plugin-utils": "^7.18.6", - "@babel/helper-replace-supers": "^7.18.6" + "@babel/helper-plugin-utils": "^7.22.5", + "@babel/plugin-syntax-logical-assignment-operators": "^7.10.4" }, "engines": { "node": ">=6.9.0" @@ -1444,12 +1418,11 @@ "@babel/core": "^7.0.0-0" } }, - "node_modules/@babel/plugin-transform-parameters": { - "version": "7.18.6", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-parameters/-/plugin-transform-parameters-7.18.6.tgz", - "integrity": "sha512-FjdqgMv37yVl/gwvzkcB+wfjRI8HQmc5EgOG9iGNvUY1ok+TjsoaMP7IqCDZBhkFcM5f3OPVMs6Dmp03C5k4/A==", + "node_modules/@babel/plugin-transform-member-expression-literals": { + "version": "7.22.5", + "license": "MIT", "dependencies": { - "@babel/helper-plugin-utils": "^7.18.6" + "@babel/helper-plugin-utils": "^7.22.5" }, "engines": { "node": ">=6.9.0" @@ -1458,12 +1431,12 @@ "@babel/core": "^7.0.0-0" } }, - "node_modules/@babel/plugin-transform-property-literals": { - "version": "7.18.6", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-property-literals/-/plugin-transform-property-literals-7.18.6.tgz", - "integrity": "sha512-cYcs6qlgafTud3PAzrrRNbQtfpQ8+y/+M5tKmksS9+M1ckbH6kzY8MrexEM9mcA6JDsukE19iIRvAyYl463sMg==", + "node_modules/@babel/plugin-transform-modules-amd": { + "version": "7.22.5", + "license": "MIT", "dependencies": { - "@babel/helper-plugin-utils": "^7.18.6" + "@babel/helper-module-transforms": "^7.22.5", + "@babel/helper-plugin-utils": "^7.22.5" }, "engines": { "node": ">=6.9.0" @@ -1472,12 +1445,13 @@ "@babel/core": "^7.0.0-0" } }, - "node_modules/@babel/plugin-transform-react-constant-elements": { - "version": "7.18.6", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-react-constant-elements/-/plugin-transform-react-constant-elements-7.18.6.tgz", - "integrity": "sha512-4g5H1bonF1dqgMe+wQ2fvDlRZ/mN/KwArk13teDv+xxn+pUDEiiDluQd6D2B30MJcL1u3qr0WZpfq0mw9/zSqA==", + "node_modules/@babel/plugin-transform-modules-commonjs": { + "version": "7.22.11", + "license": "MIT", "dependencies": { - "@babel/helper-plugin-utils": "^7.18.6" + "@babel/helper-module-transforms": "^7.22.9", + "@babel/helper-plugin-utils": "^7.22.5", + "@babel/helper-simple-access": "^7.22.5" }, "engines": { "node": ">=6.9.0" @@ -1486,12 +1460,14 @@ "@babel/core": "^7.0.0-0" } }, - "node_modules/@babel/plugin-transform-react-display-name": { - "version": "7.18.6", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-react-display-name/-/plugin-transform-react-display-name-7.18.6.tgz", - "integrity": "sha512-TV4sQ+T013n61uMoygyMRm+xf04Bd5oqFpv2jAEQwSZ8NwQA7zeRPg1LMVg2PWi3zWBz+CLKD+v5bcpZ/BS0aA==", + "node_modules/@babel/plugin-transform-modules-systemjs": { + "version": "7.22.11", + "license": "MIT", "dependencies": { - "@babel/helper-plugin-utils": "^7.18.6" + "@babel/helper-hoist-variables": "^7.22.5", + "@babel/helper-module-transforms": "^7.22.9", + "@babel/helper-plugin-utils": "^7.22.5", + "@babel/helper-validator-identifier": "^7.22.5" }, "engines": { "node": ">=6.9.0" @@ -1500,16 +1476,12 @@ "@babel/core": "^7.0.0-0" } }, - "node_modules/@babel/plugin-transform-react-jsx": { - "version": "7.18.6", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-react-jsx/-/plugin-transform-react-jsx-7.18.6.tgz", - "integrity": "sha512-Mz7xMPxoy9kPS/JScj6fJs03TZ/fZ1dJPlMjRAgTaxaS0fUBk8FV/A2rRgfPsVCZqALNwMexD+0Uaf5zlcKPpw==", + "node_modules/@babel/plugin-transform-modules-umd": { + "version": "7.22.5", + "license": "MIT", "dependencies": { - "@babel/helper-annotate-as-pure": "^7.18.6", - "@babel/helper-module-imports": "^7.18.6", - "@babel/helper-plugin-utils": "^7.18.6", - "@babel/plugin-syntax-jsx": "^7.18.6", - "@babel/types": "^7.18.6" + "@babel/helper-module-transforms": "^7.22.5", + "@babel/helper-plugin-utils": "^7.22.5" }, "engines": { "node": ">=6.9.0" @@ -1518,27 +1490,25 @@ "@babel/core": "^7.0.0-0" } }, - "node_modules/@babel/plugin-transform-react-jsx-development": { - "version": "7.18.6", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-react-jsx-development/-/plugin-transform-react-jsx-development-7.18.6.tgz", - "integrity": "sha512-SA6HEjwYFKF7WDjWcMcMGUimmw/nhNRDWxr+KaLSCrkD/LMDBvWRmHAYgE1HDeF8KUuI8OAu+RT6EOtKxSW2qA==", + "node_modules/@babel/plugin-transform-named-capturing-groups-regex": { + "version": "7.22.5", + "license": "MIT", "dependencies": { - "@babel/plugin-transform-react-jsx": "^7.18.6" + "@babel/helper-create-regexp-features-plugin": "^7.22.5", + "@babel/helper-plugin-utils": "^7.22.5" }, "engines": { "node": ">=6.9.0" }, "peerDependencies": { - "@babel/core": "^7.0.0-0" + "@babel/core": "^7.0.0" } }, - "node_modules/@babel/plugin-transform-react-pure-annotations": { - "version": "7.18.6", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-react-pure-annotations/-/plugin-transform-react-pure-annotations-7.18.6.tgz", - "integrity": "sha512-I8VfEPg9r2TRDdvnHgPepTKvuRomzA8+u+nhY7qSI1fR2hRNebasZEETLyM5mAUr0Ku56OkXJ0I7NHJnO6cJiQ==", + "node_modules/@babel/plugin-transform-new-target": { + "version": "7.22.5", + "license": "MIT", "dependencies": { - "@babel/helper-annotate-as-pure": "^7.18.6", - "@babel/helper-plugin-utils": "^7.18.6" + "@babel/helper-plugin-utils": "^7.22.5" }, "engines": { "node": ">=6.9.0" @@ -1547,13 +1517,12 @@ "@babel/core": "^7.0.0-0" } }, - "node_modules/@babel/plugin-transform-regenerator": { - "version": "7.18.6", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-regenerator/-/plugin-transform-regenerator-7.18.6.tgz", - "integrity": "sha512-poqRI2+qiSdeldcz4wTSTXBRryoq3Gc70ye7m7UD5Ww0nE29IXqMl6r7Nd15WBgRd74vloEMlShtH6CKxVzfmQ==", + "node_modules/@babel/plugin-transform-nullish-coalescing-operator": { + "version": "7.22.11", + "license": "MIT", "dependencies": { - "@babel/helper-plugin-utils": "^7.18.6", - "regenerator-transform": "^0.15.0" + "@babel/helper-plugin-utils": "^7.22.5", + "@babel/plugin-syntax-nullish-coalescing-operator": "^7.8.3" }, "engines": { "node": ">=6.9.0" @@ -1562,12 +1531,12 @@ "@babel/core": "^7.0.0-0" } }, - "node_modules/@babel/plugin-transform-reserved-words": { - "version": "7.18.6", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-reserved-words/-/plugin-transform-reserved-words-7.18.6.tgz", - "integrity": "sha512-oX/4MyMoypzHjFrT1CdivfKZ+XvIPMFXwwxHp/r0Ddy2Vuomt4HDFGmft1TAY2yiTKiNSsh3kjBAzcM8kSdsjA==", + "node_modules/@babel/plugin-transform-numeric-separator": { + "version": "7.22.11", + "license": "MIT", "dependencies": { - "@babel/helper-plugin-utils": "^7.18.6" + "@babel/helper-plugin-utils": "^7.22.5", + "@babel/plugin-syntax-numeric-separator": "^7.10.4" }, "engines": { "node": ">=6.9.0" @@ -1576,17 +1545,15 @@ "@babel/core": "^7.0.0-0" } }, - "node_modules/@babel/plugin-transform-runtime": { - "version": "7.18.6", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-runtime/-/plugin-transform-runtime-7.18.6.tgz", - "integrity": "sha512-8uRHk9ZmRSnWqUgyae249EJZ94b0yAGLBIqzZzl+0iEdbno55Pmlt/32JZsHwXD9k/uZj18Aqqk35wBX4CBTXA==", + "node_modules/@babel/plugin-transform-object-rest-spread": { + "version": "7.22.11", + "license": "MIT", "dependencies": { - "@babel/helper-module-imports": "^7.18.6", - "@babel/helper-plugin-utils": "^7.18.6", - "babel-plugin-polyfill-corejs2": "^0.3.1", - "babel-plugin-polyfill-corejs3": "^0.5.2", - "babel-plugin-polyfill-regenerator": "^0.3.1", - "semver": "^6.3.0" + "@babel/compat-data": "^7.22.9", + "@babel/helper-compilation-targets": "^7.22.10", + "@babel/helper-plugin-utils": "^7.22.5", + "@babel/plugin-syntax-object-rest-spread": "^7.8.3", + "@babel/plugin-transform-parameters": "^7.22.5" }, "engines": { "node": ">=6.9.0" @@ -1595,20 +1562,232 @@ "@babel/core": "^7.0.0-0" } }, - "node_modules/@babel/plugin-transform-runtime/node_modules/semver": { - "version": "6.3.0", - "resolved": "https://registry.npmjs.org/semver/-/semver-6.3.0.tgz", - "integrity": "sha512-b39TBaTSfV6yBrapU89p5fKekE2m/NwnDocOVruQFS1/veMgdzuPcnOM34M6CwxW8jH/lxEa5rBoDeUwu5HHTw==", + "node_modules/@babel/plugin-transform-object-super": { + "version": "7.22.5", + "license": "MIT", + "dependencies": { + "@babel/helper-plugin-utils": "^7.22.5", + "@babel/helper-replace-supers": "^7.22.5" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-transform-optional-catch-binding": { + "version": "7.22.11", + "license": "MIT", + "dependencies": { + "@babel/helper-plugin-utils": "^7.22.5", + "@babel/plugin-syntax-optional-catch-binding": "^7.8.3" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-transform-optional-chaining": { + "version": "7.22.12", + "license": "MIT", + "dependencies": { + "@babel/helper-plugin-utils": "^7.22.5", + "@babel/helper-skip-transparent-expression-wrappers": "^7.22.5", + "@babel/plugin-syntax-optional-chaining": "^7.8.3" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-transform-parameters": { + "version": "7.22.5", + "license": "MIT", + "dependencies": { + "@babel/helper-plugin-utils": "^7.22.5" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-transform-private-methods": { + "version": "7.22.5", + "license": "MIT", + "dependencies": { + "@babel/helper-create-class-features-plugin": "^7.22.5", + "@babel/helper-plugin-utils": "^7.22.5" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-transform-private-property-in-object": { + "version": "7.22.11", + "license": "MIT", + "dependencies": { + "@babel/helper-annotate-as-pure": "^7.22.5", + "@babel/helper-create-class-features-plugin": "^7.22.11", + "@babel/helper-plugin-utils": "^7.22.5", + "@babel/plugin-syntax-private-property-in-object": "^7.14.5" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-transform-property-literals": { + "version": "7.22.5", + "license": "MIT", + "dependencies": { + "@babel/helper-plugin-utils": "^7.22.5" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-transform-react-constant-elements": { + "version": "7.22.5", + "license": "MIT", + "dependencies": { + "@babel/helper-plugin-utils": "^7.22.5" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-transform-react-display-name": { + "version": "7.22.5", + "license": "MIT", + "dependencies": { + "@babel/helper-plugin-utils": "^7.22.5" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-transform-react-jsx": { + "version": "7.22.5", + "license": "MIT", + "dependencies": { + "@babel/helper-annotate-as-pure": "^7.22.5", + "@babel/helper-module-imports": "^7.22.5", + "@babel/helper-plugin-utils": "^7.22.5", + "@babel/plugin-syntax-jsx": "^7.22.5", + "@babel/types": "^7.22.5" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-transform-react-jsx-development": { + "version": "7.22.5", + "license": "MIT", + "dependencies": { + "@babel/plugin-transform-react-jsx": "^7.22.5" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-transform-react-pure-annotations": { + "version": "7.22.5", + "license": "MIT", + "dependencies": { + "@babel/helper-annotate-as-pure": "^7.22.5", + "@babel/helper-plugin-utils": "^7.22.5" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-transform-regenerator": { + "version": "7.22.10", + "license": "MIT", + "dependencies": { + "@babel/helper-plugin-utils": "^7.22.5", + "regenerator-transform": "^0.15.2" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-transform-reserved-words": { + "version": "7.22.5", + "license": "MIT", + "dependencies": { + "@babel/helper-plugin-utils": "^7.22.5" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-transform-runtime": { + "version": "7.22.10", + "license": "MIT", + "dependencies": { + "@babel/helper-module-imports": "^7.22.5", + "@babel/helper-plugin-utils": "^7.22.5", + "babel-plugin-polyfill-corejs2": "^0.4.5", + "babel-plugin-polyfill-corejs3": "^0.8.3", + "babel-plugin-polyfill-regenerator": "^0.5.2", + "semver": "^6.3.1" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-transform-runtime/node_modules/semver": { + "version": "6.3.1", + "license": "ISC", "bin": { "semver": "bin/semver.js" } }, "node_modules/@babel/plugin-transform-shorthand-properties": { - "version": "7.18.6", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-shorthand-properties/-/plugin-transform-shorthand-properties-7.18.6.tgz", - "integrity": "sha512-eCLXXJqv8okzg86ywZJbRn19YJHU4XUa55oz2wbHhaQVn/MM+XhukiT7SYqp/7o00dg52Rj51Ny+Ecw4oyoygw==", + "version": "7.22.5", + "license": "MIT", "dependencies": { - "@babel/helper-plugin-utils": "^7.18.6" + "@babel/helper-plugin-utils": "^7.22.5" }, "engines": { "node": ">=6.9.0" @@ -1618,12 +1797,11 @@ } }, "node_modules/@babel/plugin-transform-spread": { - "version": "7.18.6", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-spread/-/plugin-transform-spread-7.18.6.tgz", - "integrity": "sha512-ayT53rT/ENF8WWexIRg9AiV9h0aIteyWn5ptfZTZQrjk/+f3WdrJGCY4c9wcgl2+MKkKPhzbYp97FTsquZpDCw==", + "version": "7.22.5", + "license": "MIT", "dependencies": { - "@babel/helper-plugin-utils": "^7.18.6", - "@babel/helper-skip-transparent-expression-wrappers": "^7.18.6" + "@babel/helper-plugin-utils": "^7.22.5", + "@babel/helper-skip-transparent-expression-wrappers": "^7.22.5" }, "engines": { "node": ">=6.9.0" @@ -1633,11 +1811,10 @@ } }, "node_modules/@babel/plugin-transform-sticky-regex": { - "version": "7.18.6", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-sticky-regex/-/plugin-transform-sticky-regex-7.18.6.tgz", - "integrity": "sha512-kfiDrDQ+PBsQDO85yj1icueWMfGfJFKN1KCkndygtu/C9+XUfydLC8Iv5UYJqRwy4zk8EcplRxEOeLyjq1gm6Q==", + "version": "7.22.5", + "license": "MIT", "dependencies": { - "@babel/helper-plugin-utils": "^7.18.6" + "@babel/helper-plugin-utils": "^7.22.5" }, "engines": { "node": ">=6.9.0" @@ -1647,11 +1824,10 @@ } }, "node_modules/@babel/plugin-transform-template-literals": { - "version": "7.18.6", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-template-literals/-/plugin-transform-template-literals-7.18.6.tgz", - "integrity": "sha512-UuqlRrQmT2SWRvahW46cGSany0uTlcj8NYOS5sRGYi8FxPYPoLd5DDmMd32ZXEj2Jq+06uGVQKHxa/hJx2EzKw==", + "version": "7.22.5", + "license": "MIT", "dependencies": { - "@babel/helper-plugin-utils": "^7.18.6" + "@babel/helper-plugin-utils": "^7.22.5" }, "engines": { "node": ">=6.9.0" @@ -1661,11 +1837,10 @@ } }, "node_modules/@babel/plugin-transform-typeof-symbol": { - "version": "7.18.6", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-typeof-symbol/-/plugin-transform-typeof-symbol-7.18.6.tgz", - "integrity": "sha512-7m71iS/QhsPk85xSjFPovHPcH3H9qeyzsujhTc+vcdnsXavoWYJ74zx0lP5RhpC5+iDnVLO+PPMHzC11qels1g==", + "version": "7.22.5", + "license": "MIT", "dependencies": { - "@babel/helper-plugin-utils": "^7.18.6" + "@babel/helper-plugin-utils": "^7.22.5" }, "engines": { "node": ">=6.9.0" @@ -1675,13 +1850,13 @@ } }, "node_modules/@babel/plugin-transform-typescript": { - "version": "7.18.6", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-typescript/-/plugin-transform-typescript-7.18.6.tgz", - "integrity": "sha512-ijHNhzIrLj5lQCnI6aaNVRtGVuUZhOXFLRVFs7lLrkXTHip4FKty5oAuQdk4tywG0/WjXmjTfQCWmuzrvFer1w==", + "version": "7.22.11", + "license": "MIT", "dependencies": { - "@babel/helper-create-class-features-plugin": "^7.18.6", - "@babel/helper-plugin-utils": "^7.18.6", - "@babel/plugin-syntax-typescript": "^7.18.6" + "@babel/helper-annotate-as-pure": "^7.22.5", + "@babel/helper-create-class-features-plugin": "^7.22.11", + "@babel/helper-plugin-utils": "^7.22.5", + "@babel/plugin-syntax-typescript": "^7.22.5" }, "engines": { "node": ">=6.9.0" @@ -1691,11 +1866,24 @@ } }, "node_modules/@babel/plugin-transform-unicode-escapes": { - "version": "7.18.6", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-unicode-escapes/-/plugin-transform-unicode-escapes-7.18.6.tgz", - "integrity": "sha512-XNRwQUXYMP7VLuy54cr/KS/WeL3AZeORhrmeZ7iewgu+X2eBqmpaLI/hzqr9ZxCeUoq0ASK4GUzSM0BDhZkLFw==", + "version": "7.22.10", + "license": "MIT", "dependencies": { - "@babel/helper-plugin-utils": "^7.18.6" + "@babel/helper-plugin-utils": "^7.22.5" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-transform-unicode-property-regex": { + "version": "7.22.5", + "license": "MIT", + "dependencies": { + "@babel/helper-create-regexp-features-plugin": "^7.22.5", + "@babel/helper-plugin-utils": "^7.22.5" }, "engines": { "node": ">=6.9.0" @@ -1705,12 +1893,11 @@ } }, "node_modules/@babel/plugin-transform-unicode-regex": { - "version": "7.18.6", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-unicode-regex/-/plugin-transform-unicode-regex-7.18.6.tgz", - "integrity": "sha512-gE7A6Lt7YLnNOL3Pb9BNeZvi+d8l7tcRrG4+pwJjK9hD2xX4mEvjlQW60G9EEmfXVYRPv9VRQcyegIVHCql/AA==", + "version": "7.22.5", + "license": "MIT", "dependencies": { - "@babel/helper-create-regexp-features-plugin": "^7.18.6", - "@babel/helper-plugin-utils": "^7.18.6" + "@babel/helper-create-regexp-features-plugin": "^7.22.5", + "@babel/helper-plugin-utils": "^7.22.5" }, "engines": { "node": ">=6.9.0" @@ -1719,38 +1906,39 @@ "@babel/core": "^7.0.0-0" } }, - "node_modules/@babel/preset-env": { - "version": "7.18.6", - "resolved": "https://registry.npmjs.org/@babel/preset-env/-/preset-env-7.18.6.tgz", - "integrity": "sha512-WrthhuIIYKrEFAwttYzgRNQ5hULGmwTj+D6l7Zdfsv5M7IWV/OZbUfbeL++Qrzx1nVJwWROIFhCHRYQV4xbPNw==", + "node_modules/@babel/plugin-transform-unicode-sets-regex": { + "version": "7.22.5", + "license": "MIT", "dependencies": { - "@babel/compat-data": "^7.18.6", - "@babel/helper-compilation-targets": "^7.18.6", - "@babel/helper-plugin-utils": "^7.18.6", - "@babel/helper-validator-option": "^7.18.6", - "@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression": "^7.18.6", - "@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining": "^7.18.6", - "@babel/plugin-proposal-async-generator-functions": "^7.18.6", - "@babel/plugin-proposal-class-properties": "^7.18.6", - "@babel/plugin-proposal-class-static-block": "^7.18.6", - "@babel/plugin-proposal-dynamic-import": "^7.18.6", - "@babel/plugin-proposal-export-namespace-from": "^7.18.6", - "@babel/plugin-proposal-json-strings": "^7.18.6", - "@babel/plugin-proposal-logical-assignment-operators": "^7.18.6", - "@babel/plugin-proposal-nullish-coalescing-operator": "^7.18.6", - "@babel/plugin-proposal-numeric-separator": "^7.18.6", - "@babel/plugin-proposal-object-rest-spread": "^7.18.6", - "@babel/plugin-proposal-optional-catch-binding": "^7.18.6", - "@babel/plugin-proposal-optional-chaining": "^7.18.6", - "@babel/plugin-proposal-private-methods": "^7.18.6", - "@babel/plugin-proposal-private-property-in-object": "^7.18.6", - "@babel/plugin-proposal-unicode-property-regex": "^7.18.6", + "@babel/helper-create-regexp-features-plugin": "^7.22.5", + "@babel/helper-plugin-utils": "^7.22.5" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0" + } + }, + "node_modules/@babel/preset-env": { + "version": "7.22.10", + "license": "MIT", + "dependencies": { + "@babel/compat-data": "^7.22.9", + "@babel/helper-compilation-targets": "^7.22.10", + "@babel/helper-plugin-utils": "^7.22.5", + "@babel/helper-validator-option": "^7.22.5", + "@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression": "^7.22.5", + "@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining": "^7.22.5", + "@babel/plugin-proposal-private-property-in-object": "7.21.0-placeholder-for-preset-env.2", "@babel/plugin-syntax-async-generators": "^7.8.4", "@babel/plugin-syntax-class-properties": "^7.12.13", "@babel/plugin-syntax-class-static-block": "^7.14.5", "@babel/plugin-syntax-dynamic-import": "^7.8.3", "@babel/plugin-syntax-export-namespace-from": "^7.8.3", - "@babel/plugin-syntax-import-assertions": "^7.18.6", + "@babel/plugin-syntax-import-assertions": "^7.22.5", + "@babel/plugin-syntax-import-attributes": "^7.22.5", + "@babel/plugin-syntax-import-meta": "^7.10.4", "@babel/plugin-syntax-json-strings": "^7.8.3", "@babel/plugin-syntax-logical-assignment-operators": "^7.10.4", "@babel/plugin-syntax-nullish-coalescing-operator": "^7.8.3", @@ -1760,45 +1948,62 @@ "@babel/plugin-syntax-optional-chaining": "^7.8.3", "@babel/plugin-syntax-private-property-in-object": "^7.14.5", "@babel/plugin-syntax-top-level-await": "^7.14.5", - "@babel/plugin-transform-arrow-functions": "^7.18.6", - "@babel/plugin-transform-async-to-generator": "^7.18.6", - "@babel/plugin-transform-block-scoped-functions": "^7.18.6", - "@babel/plugin-transform-block-scoping": "^7.18.6", - "@babel/plugin-transform-classes": "^7.18.6", - "@babel/plugin-transform-computed-properties": "^7.18.6", - "@babel/plugin-transform-destructuring": "^7.18.6", - "@babel/plugin-transform-dotall-regex": "^7.18.6", - "@babel/plugin-transform-duplicate-keys": "^7.18.6", - "@babel/plugin-transform-exponentiation-operator": "^7.18.6", - "@babel/plugin-transform-for-of": "^7.18.6", - "@babel/plugin-transform-function-name": "^7.18.6", - "@babel/plugin-transform-literals": "^7.18.6", - "@babel/plugin-transform-member-expression-literals": "^7.18.6", - "@babel/plugin-transform-modules-amd": "^7.18.6", - "@babel/plugin-transform-modules-commonjs": "^7.18.6", - "@babel/plugin-transform-modules-systemjs": "^7.18.6", - "@babel/plugin-transform-modules-umd": "^7.18.6", - "@babel/plugin-transform-named-capturing-groups-regex": "^7.18.6", - "@babel/plugin-transform-new-target": "^7.18.6", - "@babel/plugin-transform-object-super": "^7.18.6", - "@babel/plugin-transform-parameters": "^7.18.6", - "@babel/plugin-transform-property-literals": "^7.18.6", - "@babel/plugin-transform-regenerator": "^7.18.6", - "@babel/plugin-transform-reserved-words": "^7.18.6", - "@babel/plugin-transform-shorthand-properties": "^7.18.6", - "@babel/plugin-transform-spread": "^7.18.6", - "@babel/plugin-transform-sticky-regex": "^7.18.6", - "@babel/plugin-transform-template-literals": "^7.18.6", - "@babel/plugin-transform-typeof-symbol": "^7.18.6", - "@babel/plugin-transform-unicode-escapes": "^7.18.6", - "@babel/plugin-transform-unicode-regex": "^7.18.6", - "@babel/preset-modules": "^0.1.5", - "@babel/types": "^7.18.6", - "babel-plugin-polyfill-corejs2": "^0.3.1", - "babel-plugin-polyfill-corejs3": "^0.5.2", - "babel-plugin-polyfill-regenerator": "^0.3.1", - "core-js-compat": "^3.22.1", - "semver": "^6.3.0" + "@babel/plugin-syntax-unicode-sets-regex": "^7.18.6", + "@babel/plugin-transform-arrow-functions": "^7.22.5", + "@babel/plugin-transform-async-generator-functions": "^7.22.10", + "@babel/plugin-transform-async-to-generator": "^7.22.5", + "@babel/plugin-transform-block-scoped-functions": "^7.22.5", + "@babel/plugin-transform-block-scoping": "^7.22.10", + "@babel/plugin-transform-class-properties": "^7.22.5", + "@babel/plugin-transform-class-static-block": "^7.22.5", + "@babel/plugin-transform-classes": "^7.22.6", + "@babel/plugin-transform-computed-properties": "^7.22.5", + "@babel/plugin-transform-destructuring": "^7.22.10", + "@babel/plugin-transform-dotall-regex": "^7.22.5", + "@babel/plugin-transform-duplicate-keys": "^7.22.5", + "@babel/plugin-transform-dynamic-import": "^7.22.5", + "@babel/plugin-transform-exponentiation-operator": "^7.22.5", + "@babel/plugin-transform-export-namespace-from": "^7.22.5", + "@babel/plugin-transform-for-of": "^7.22.5", + "@babel/plugin-transform-function-name": "^7.22.5", + "@babel/plugin-transform-json-strings": "^7.22.5", + "@babel/plugin-transform-literals": "^7.22.5", + "@babel/plugin-transform-logical-assignment-operators": "^7.22.5", + "@babel/plugin-transform-member-expression-literals": "^7.22.5", + "@babel/plugin-transform-modules-amd": "^7.22.5", + "@babel/plugin-transform-modules-commonjs": "^7.22.5", + "@babel/plugin-transform-modules-systemjs": "^7.22.5", + "@babel/plugin-transform-modules-umd": "^7.22.5", + "@babel/plugin-transform-named-capturing-groups-regex": "^7.22.5", + "@babel/plugin-transform-new-target": "^7.22.5", + "@babel/plugin-transform-nullish-coalescing-operator": "^7.22.5", + "@babel/plugin-transform-numeric-separator": "^7.22.5", + "@babel/plugin-transform-object-rest-spread": "^7.22.5", + "@babel/plugin-transform-object-super": "^7.22.5", + "@babel/plugin-transform-optional-catch-binding": "^7.22.5", + "@babel/plugin-transform-optional-chaining": "^7.22.10", + "@babel/plugin-transform-parameters": "^7.22.5", + "@babel/plugin-transform-private-methods": "^7.22.5", + "@babel/plugin-transform-private-property-in-object": "^7.22.5", + "@babel/plugin-transform-property-literals": "^7.22.5", + "@babel/plugin-transform-regenerator": "^7.22.10", + "@babel/plugin-transform-reserved-words": "^7.22.5", + "@babel/plugin-transform-shorthand-properties": "^7.22.5", + "@babel/plugin-transform-spread": "^7.22.5", + "@babel/plugin-transform-sticky-regex": "^7.22.5", + "@babel/plugin-transform-template-literals": "^7.22.5", + "@babel/plugin-transform-typeof-symbol": "^7.22.5", + "@babel/plugin-transform-unicode-escapes": "^7.22.10", + "@babel/plugin-transform-unicode-property-regex": "^7.22.5", + "@babel/plugin-transform-unicode-regex": "^7.22.5", + "@babel/plugin-transform-unicode-sets-regex": "^7.22.5", + "@babel/preset-modules": "0.1.6-no-external-plugins", + "@babel/types": "^7.22.10", + "babel-plugin-polyfill-corejs2": "^0.4.5", + "babel-plugin-polyfill-corejs3": "^0.8.3", + "babel-plugin-polyfill-regenerator": "^0.5.2", + "core-js-compat": "^3.31.0", + "semver": "^6.3.1" }, "engines": { "node": ">=6.9.0" @@ -1808,39 +2013,34 @@ } }, "node_modules/@babel/preset-env/node_modules/semver": { - "version": "6.3.0", - "resolved": "https://registry.npmjs.org/semver/-/semver-6.3.0.tgz", - "integrity": "sha512-b39TBaTSfV6yBrapU89p5fKekE2m/NwnDocOVruQFS1/veMgdzuPcnOM34M6CwxW8jH/lxEa5rBoDeUwu5HHTw==", + "version": "6.3.1", + "license": "ISC", "bin": { "semver": "bin/semver.js" } }, "node_modules/@babel/preset-modules": { - "version": "0.1.5", - "resolved": "https://registry.npmjs.org/@babel/preset-modules/-/preset-modules-0.1.5.tgz", - "integrity": "sha512-A57th6YRG7oR3cq/yt/Y84MvGgE0eJG2F1JLhKuyG+jFxEgrd/HAMJatiFtmOiZurz+0DkrvbheCLaV5f2JfjA==", + "version": "0.1.6-no-external-plugins", + "license": "MIT", "dependencies": { "@babel/helper-plugin-utils": "^7.0.0", - "@babel/plugin-proposal-unicode-property-regex": "^7.4.4", - "@babel/plugin-transform-dotall-regex": "^7.4.4", "@babel/types": "^7.4.4", "esutils": "^2.0.2" }, "peerDependencies": { - "@babel/core": "^7.0.0-0" + "@babel/core": "^7.0.0-0 || ^8.0.0-0 <8.0.0" } }, "node_modules/@babel/preset-react": { - "version": "7.18.6", - "resolved": "https://registry.npmjs.org/@babel/preset-react/-/preset-react-7.18.6.tgz", - "integrity": "sha512-zXr6atUmyYdiWRVLOZahakYmOBHtWc2WGCkP8PYTgZi0iJXDY2CN180TdrIW4OGOAdLc7TifzDIvtx6izaRIzg==", + "version": "7.22.5", + "license": "MIT", "dependencies": { - "@babel/helper-plugin-utils": "^7.18.6", - "@babel/helper-validator-option": "^7.18.6", - "@babel/plugin-transform-react-display-name": "^7.18.6", - "@babel/plugin-transform-react-jsx": "^7.18.6", - "@babel/plugin-transform-react-jsx-development": "^7.18.6", - "@babel/plugin-transform-react-pure-annotations": "^7.18.6" + "@babel/helper-plugin-utils": "^7.22.5", + "@babel/helper-validator-option": "^7.22.5", + "@babel/plugin-transform-react-display-name": "^7.22.5", + "@babel/plugin-transform-react-jsx": "^7.22.5", + "@babel/plugin-transform-react-jsx-development": "^7.22.5", + "@babel/plugin-transform-react-pure-annotations": "^7.22.5" }, "engines": { "node": ">=6.9.0" @@ -1850,13 +2050,14 @@ } }, "node_modules/@babel/preset-typescript": { - "version": "7.18.6", - "resolved": "https://registry.npmjs.org/@babel/preset-typescript/-/preset-typescript-7.18.6.tgz", - "integrity": "sha512-s9ik86kXBAnD760aybBucdpnLsAt0jK1xqJn2juOn9lkOvSHV60os5hxoVJsPzMQxvnUJFAlkont2DvvaYEBtQ==", + "version": "7.22.11", + "license": "MIT", "dependencies": { - "@babel/helper-plugin-utils": "^7.18.6", - "@babel/helper-validator-option": "^7.18.6", - "@babel/plugin-transform-typescript": "^7.18.6" + "@babel/helper-plugin-utils": "^7.22.5", + "@babel/helper-validator-option": "^7.22.5", + "@babel/plugin-syntax-jsx": "^7.22.5", + "@babel/plugin-transform-modules-commonjs": "^7.22.11", + "@babel/plugin-transform-typescript": "^7.22.11" }, "engines": { "node": ">=6.9.0" @@ -1865,55 +2066,44 @@ "@babel/core": "^7.0.0-0" } }, - "node_modules/@babel/runtime": { - "version": "7.18.6", - "resolved": "https://registry.npmjs.org/@babel/runtime/-/runtime-7.18.6.tgz", - "integrity": "sha512-t9wi7/AW6XtKahAe20Yw0/mMljKq0B1r2fPdvaAdV/KPDZewFXdaaa6K7lxmZBZ8FBNpCiAT6iHPmd6QO9bKfQ==", - "dependencies": { - "regenerator-runtime": "^0.13.4" - }, - "engines": { - "node": ">=6.9.0" - } + "node_modules/@babel/regjsgen": { + "version": "0.8.0", + "license": "MIT" }, - "node_modules/@babel/runtime-corejs3": { - "version": "7.18.6", - "resolved": "https://registry.npmjs.org/@babel/runtime-corejs3/-/runtime-corejs3-7.18.6.tgz", - "integrity": "sha512-cOu5wH2JFBgMjje+a+fz2JNIWU4GzYpl05oSob3UDvBEh6EuIn+TXFHMmBbhSb+k/4HMzgKCQfEEDArAWNF9Cw==", + "node_modules/@babel/runtime": { + "version": "7.22.11", + "license": "MIT", "dependencies": { - "core-js-pure": "^3.20.2", - "regenerator-runtime": "^0.13.4" + "regenerator-runtime": "^0.14.0" }, "engines": { "node": ">=6.9.0" } }, "node_modules/@babel/template": { - "version": "7.18.6", - "resolved": "https://registry.npmjs.org/@babel/template/-/template-7.18.6.tgz", - "integrity": "sha512-JoDWzPe+wgBsTTgdnIma3iHNFC7YVJoPssVBDjiHfNlyt4YcunDtcDOUmfVDfCK5MfdsaIoX9PkijPhjH3nYUw==", + "version": "7.22.5", + "license": "MIT", "dependencies": { - "@babel/code-frame": "^7.18.6", - "@babel/parser": "^7.18.6", - "@babel/types": "^7.18.6" + "@babel/code-frame": "^7.22.5", + "@babel/parser": "^7.22.5", + "@babel/types": "^7.22.5" }, "engines": { "node": ">=6.9.0" } }, "node_modules/@babel/traverse": { - "version": "7.18.6", - "resolved": "https://registry.npmjs.org/@babel/traverse/-/traverse-7.18.6.tgz", - "integrity": "sha512-zS/OKyqmD7lslOtFqbscH6gMLFYOfG1YPqCKfAW5KrTeolKqvB8UelR49Fpr6y93kYkW2Ik00mT1LOGiAGvizw==", - "dependencies": { - "@babel/code-frame": "^7.18.6", - "@babel/generator": "^7.18.6", - "@babel/helper-environment-visitor": "^7.18.6", - "@babel/helper-function-name": "^7.18.6", - "@babel/helper-hoist-variables": "^7.18.6", - "@babel/helper-split-export-declaration": "^7.18.6", - "@babel/parser": "^7.18.6", - "@babel/types": "^7.18.6", + "version": "7.22.11", + "license": "MIT", + "dependencies": { + "@babel/code-frame": "^7.22.10", + "@babel/generator": "^7.22.10", + "@babel/helper-environment-visitor": "^7.22.5", + "@babel/helper-function-name": "^7.22.5", + "@babel/helper-hoist-variables": "^7.22.5", + "@babel/helper-split-export-declaration": "^7.22.6", + "@babel/parser": "^7.22.11", + "@babel/types": "^7.22.11", "debug": "^4.1.0", "globals": "^11.1.0" }, @@ -1922,11 +2112,11 @@ } }, "node_modules/@babel/types": { - "version": "7.18.7", - "resolved": "https://registry.npmjs.org/@babel/types/-/types-7.18.7.tgz", - "integrity": "sha512-QG3yxTcTIBoAcQmkCs+wAPYZhu7Dk9rXKacINfNbdJDNERTbLQbHGyVG8q/YGMPeCJRIhSY0+fTc5+xuh6WPSQ==", + "version": "7.22.11", + "license": "MIT", "dependencies": { - "@babel/helper-validator-identifier": "^7.18.6", + "@babel/helper-string-parser": "^7.22.5", + "@babel/helper-validator-identifier": "^7.22.5", "to-fast-properties": "^2.0.0" }, "engines": { @@ -1935,19 +2125,16 @@ }, "node_modules/@bcoe/v8-coverage": { "version": "0.2.3", - "resolved": "https://registry.npmjs.org/@bcoe/v8-coverage/-/v8-coverage-0.2.3.tgz", - "integrity": "sha512-0hYQ8SB4Db5zvZB4axdMHGwEaQjkZzFjQiN9LVYvIFB2nSUHW9tYpxWriPrWDASIxiaXax83REcLxuSdnGPZtw==" + "license": "MIT" }, "node_modules/@chainsafe/as-sha256": { "version": "0.3.1", - "resolved": "https://registry.npmjs.org/@chainsafe/as-sha256/-/as-sha256-0.3.1.tgz", - "integrity": "sha512-hldFFYuf49ed7DAakWVXSJODuq3pzJEguD8tQ7h+sGkM18vja+OFoJI9krnGmgzyuZC2ETX0NOIcCTy31v2Mtg==", + "license": "Apache-2.0", "peer": true }, "node_modules/@chainsafe/persistent-merkle-tree": { "version": "0.4.2", - "resolved": "https://registry.npmjs.org/@chainsafe/persistent-merkle-tree/-/persistent-merkle-tree-0.4.2.tgz", - "integrity": "sha512-lLO3ihKPngXLTus/L7WHKaw9PnNJWizlOF1H9NNzHP6Xvh82vzg9F2bzkXhYIFshMZ2gTCEz8tq6STe7r5NDfQ==", + "license": "Apache-2.0", "peer": true, "dependencies": { "@chainsafe/as-sha256": "^0.3.1" @@ -1955,8 +2142,7 @@ }, "node_modules/@chainsafe/ssz": { "version": "0.9.4", - "resolved": "https://registry.npmjs.org/@chainsafe/ssz/-/ssz-0.9.4.tgz", - "integrity": "sha512-77Qtg2N1ayqs4Bg/wvnWfg5Bta7iy7IRh8XqXh7oNMeP2HBbBwx8m6yTpA8p0EHItWPEBkgZd5S5/LSlp3GXuQ==", + "license": "Apache-2.0", "peer": true, "dependencies": { "@chainsafe/as-sha256": "^0.3.1", @@ -1966,15 +2152,13 @@ }, "node_modules/@csstools/normalize.css": { "version": "12.0.0", - "resolved": "https://registry.npmjs.org/@csstools/normalize.css/-/normalize.css-12.0.0.tgz", - "integrity": "sha512-M0qqxAcwCsIVfpFQSlGN5XjXWu8l5JDZN+fPt1LeW5SZexQTgnaEvgXAY+CeygRw0EeppWHi12JxESWiWrB0Sg==" + "license": "CC0-1.0" }, "node_modules/@csstools/postcss-cascade-layers": { - "version": "1.0.4", - "resolved": "https://registry.npmjs.org/@csstools/postcss-cascade-layers/-/postcss-cascade-layers-1.0.4.tgz", - "integrity": "sha512-zP2tQIFu4C3HueOT+G4Pkla7f2Z6pfXphc1Y9wDE5jS2Ss6dk/asQ7FFEFWKgy3EkYc7E1FSjzhfeZVGg5sjXQ==", + "version": "1.1.1", + "license": "CC0-1.0", "dependencies": { - "@csstools/selector-specificity": "^2.0.0", + "@csstools/selector-specificity": "^2.0.2", "postcss-selector-parser": "^6.0.10" }, "engines": { @@ -1989,9 +2173,8 @@ } }, "node_modules/@csstools/postcss-color-function": { - "version": "1.1.0", - "resolved": "https://registry.npmjs.org/@csstools/postcss-color-function/-/postcss-color-function-1.1.0.tgz", - "integrity": "sha512-5D5ND/mZWcQoSfYnSPsXtuiFxhzmhxt6pcjrFLJyldj+p0ZN2vvRpYNX+lahFTtMhAYOa2WmkdGINr0yP0CvGA==", + "version": "1.1.1", + "license": "CC0-1.0", "dependencies": { "@csstools/postcss-progressive-custom-properties": "^1.1.0", "postcss-value-parser": "^4.2.0" @@ -2004,27 +2187,29 @@ "url": "https://opencollective.com/csstools" }, "peerDependencies": { - "postcss": "^8.4" + "postcss": "^8.2" } }, "node_modules/@csstools/postcss-font-format-keywords": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/@csstools/postcss-font-format-keywords/-/postcss-font-format-keywords-1.0.0.tgz", - "integrity": "sha512-oO0cZt8do8FdVBX8INftvIA4lUrKUSCcWUf9IwH9IPWOgKT22oAZFXeHLoDK7nhB2SmkNycp5brxfNMRLIhd6Q==", + "version": "1.0.1", + "license": "CC0-1.0", "dependencies": { "postcss-value-parser": "^4.2.0" }, "engines": { "node": "^12 || ^14 || >=16" }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/csstools" + }, "peerDependencies": { - "postcss": "^8.3" + "postcss": "^8.2" } }, "node_modules/@csstools/postcss-hwb-function": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/@csstools/postcss-hwb-function/-/postcss-hwb-function-1.0.1.tgz", - "integrity": "sha512-AMZwWyHbbNLBsDADWmoXT9A5yl5dsGEBeJSJRUJt8Y9n8Ziu7Wstt4MC8jtPW7xjcLecyfJwtnUTNSmOzcnWeg==", + "version": "1.0.2", + "license": "CC0-1.0", "dependencies": { "postcss-value-parser": "^4.2.0" }, @@ -2036,13 +2221,12 @@ "url": "https://opencollective.com/csstools" }, "peerDependencies": { - "postcss": "^8.4" + "postcss": "^8.2" } }, "node_modules/@csstools/postcss-ic-unit": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/@csstools/postcss-ic-unit/-/postcss-ic-unit-1.0.0.tgz", - "integrity": "sha512-i4yps1mBp2ijrx7E96RXrQXQQHm6F4ym1TOD0D69/sjDjZvQ22tqiEvaNw7pFZTUO5b9vWRHzbHzP9+UKuw+bA==", + "version": "1.0.1", + "license": "CC0-1.0", "dependencies": { "@csstools/postcss-progressive-custom-properties": "^1.1.0", "postcss-value-parser": "^4.2.0" @@ -2050,14 +2234,17 @@ "engines": { "node": "^12 || ^14 || >=16" }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/csstools" + }, "peerDependencies": { - "postcss": "^8.3" + "postcss": "^8.2" } }, "node_modules/@csstools/postcss-is-pseudo-class": { - "version": "2.0.6", - "resolved": "https://registry.npmjs.org/@csstools/postcss-is-pseudo-class/-/postcss-is-pseudo-class-2.0.6.tgz", - "integrity": "sha512-Oqs396oenuyyMdRXOstxXbxei8fYEgToYjmlYHEi5gk0QLk7xQ72LY7NDr7waWAAmdVzRqPpbE26Q7/cUrGu4Q==", + "version": "2.0.7", + "license": "CC0-1.0", "dependencies": { "@csstools/selector-specificity": "^2.0.0", "postcss-selector-parser": "^6.0.10" @@ -2073,26 +2260,27 @@ "postcss": "^8.2" } }, - "node_modules/@csstools/postcss-normalize-display-values": { + "node_modules/@csstools/postcss-nested-calc": { "version": "1.0.0", - "resolved": "https://registry.npmjs.org/@csstools/postcss-normalize-display-values/-/postcss-normalize-display-values-1.0.0.tgz", - "integrity": "sha512-bX+nx5V8XTJEmGtpWTO6kywdS725t71YSLlxWt78XoHUbELWgoCXeOFymRJmL3SU1TLlKSIi7v52EWqe60vJTQ==", + "license": "CC0-1.0", "dependencies": { "postcss-value-parser": "^4.2.0" }, "engines": { "node": "^12 || ^14 || >=16" }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/csstools" + }, "peerDependencies": { - "postcss": "^8.3" + "postcss": "^8.2" } }, - "node_modules/@csstools/postcss-oklab-function": { - "version": "1.1.0", - "resolved": "https://registry.npmjs.org/@csstools/postcss-oklab-function/-/postcss-oklab-function-1.1.0.tgz", - "integrity": "sha512-e/Q5HopQzmnQgqimG9v3w2IG4VRABsBq3itOcn4bnm+j4enTgQZ0nWsaH/m9GV2otWGQ0nwccYL5vmLKyvP1ww==", + "node_modules/@csstools/postcss-normalize-display-values": { + "version": "1.0.1", + "license": "CC0-1.0", "dependencies": { - "@csstools/postcss-progressive-custom-properties": "^1.1.0", "postcss-value-parser": "^4.2.0" }, "engines": { @@ -2103,13 +2291,30 @@ "url": "https://opencollective.com/csstools" }, "peerDependencies": { - "postcss": "^8.4" + "postcss": "^8.2" } }, - "node_modules/@csstools/postcss-progressive-custom-properties": { - "version": "1.3.0", - "resolved": "https://registry.npmjs.org/@csstools/postcss-progressive-custom-properties/-/postcss-progressive-custom-properties-1.3.0.tgz", - "integrity": "sha512-ASA9W1aIy5ygskZYuWams4BzafD12ULvSypmaLJT2jvQ8G0M3I8PRQhC0h7mG0Z3LI05+agZjqSR9+K9yaQQjA==", + "node_modules/@csstools/postcss-oklab-function": { + "version": "1.1.1", + "license": "CC0-1.0", + "dependencies": { + "@csstools/postcss-progressive-custom-properties": "^1.1.0", + "postcss-value-parser": "^4.2.0" + }, + "engines": { + "node": "^12 || ^14 || >=16" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/csstools" + }, + "peerDependencies": { + "postcss": "^8.2" + } + }, + "node_modules/@csstools/postcss-progressive-custom-properties": { + "version": "1.3.0", + "license": "CC0-1.0", "dependencies": { "postcss-value-parser": "^4.2.0" }, @@ -2121,9 +2326,25 @@ } }, "node_modules/@csstools/postcss-stepped-value-functions": { + "version": "1.0.1", + "license": "CC0-1.0", + "dependencies": { + "postcss-value-parser": "^4.2.0" + }, + "engines": { + "node": "^12 || ^14 || >=16" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/csstools" + }, + "peerDependencies": { + "postcss": "^8.2" + } + }, + "node_modules/@csstools/postcss-text-decoration-shorthand": { "version": "1.0.0", - "resolved": "https://registry.npmjs.org/@csstools/postcss-stepped-value-functions/-/postcss-stepped-value-functions-1.0.0.tgz", - "integrity": "sha512-q8c4bs1GumAiRenmFjASBcWSLKrbzHzWl6C2HcaAxAXIiL2rUlUWbqQZUjwVG5tied0rld19j/Mm90K3qI26vw==", + "license": "CC0-1.0", "dependencies": { "postcss-value-parser": "^4.2.0" }, @@ -2135,13 +2356,12 @@ "url": "https://opencollective.com/csstools" }, "peerDependencies": { - "postcss": "^8.3" + "postcss": "^8.2" } }, "node_modules/@csstools/postcss-trigonometric-functions": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/@csstools/postcss-trigonometric-functions/-/postcss-trigonometric-functions-1.0.1.tgz", - "integrity": "sha512-G78CY/+GePc6dDCTUbwI6TTFQ5fs3N9POHhI6v0QzteGpf6ylARiJUNz9HrRKi4eVYBNXjae1W2766iUEFxHlw==", + "version": "1.0.2", + "license": "CC0-1.0", "dependencies": { "postcss-value-parser": "^4.2.0" }, @@ -2153,13 +2373,12 @@ "url": "https://opencollective.com/csstools" }, "peerDependencies": { - "postcss": "^8.4" + "postcss": "^8.2" } }, "node_modules/@csstools/postcss-unset-value": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/@csstools/postcss-unset-value/-/postcss-unset-value-1.0.1.tgz", - "integrity": "sha512-f1G1WGDXEU/RN1TWAxBPQgQudtLnLQPyiWdtypkPC+mVYNKFKH/HYXSxH4MVNqwF8M0eDsoiU7HumJHCg/L/jg==", + "version": "1.0.2", + "license": "CC0-1.0", "engines": { "node": "^12 || ^14 || >=16" }, @@ -2168,107 +2387,54 @@ "url": "https://opencollective.com/csstools" }, "peerDependencies": { - "postcss": "^8.3" + "postcss": "^8.2" } }, "node_modules/@csstools/selector-specificity": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/@csstools/selector-specificity/-/selector-specificity-2.0.1.tgz", - "integrity": "sha512-aG20vknL4/YjQF9BSV7ts4EWm/yrjagAN7OWBNmlbEOUiu0llj4OGrFoOKK3g2vey4/p2omKCoHrWtPxSwV3HA==", + "version": "2.2.0", + "license": "CC0-1.0", "engines": { - "node": "^12 || ^14 || >=16" + "node": "^14 || ^16 || >=18" }, "funding": { "type": "opencollective", "url": "https://opencollective.com/csstools" }, "peerDependencies": { - "postcss": "^8.3", "postcss-selector-parser": "^6.0.10" } }, "node_modules/@emotion/babel-plugin": { - "version": "11.9.2", - "resolved": "https://registry.npmjs.org/@emotion/babel-plugin/-/babel-plugin-11.9.2.tgz", - "integrity": "sha512-Pr/7HGH6H6yKgnVFNEj2MVlreu3ADqftqjqwUvDy/OJzKFgxKeTQ+eeUf20FOTuHVkDON2iNa25rAXVYtWJCjw==", - "dependencies": { - "@babel/helper-module-imports": "^7.12.13", - "@babel/plugin-syntax-jsx": "^7.12.13", - "@babel/runtime": "^7.13.10", - "@emotion/hash": "^0.8.0", - "@emotion/memoize": "^0.7.5", - "@emotion/serialize": "^1.0.2", - "babel-plugin-macros": "^2.6.1", + "version": "11.11.0", + "license": "MIT", + "dependencies": { + "@babel/helper-module-imports": "^7.16.7", + "@babel/runtime": "^7.18.3", + "@emotion/hash": "^0.9.1", + "@emotion/memoize": "^0.8.1", + "@emotion/serialize": "^1.1.2", + "babel-plugin-macros": "^3.1.0", "convert-source-map": "^1.5.0", "escape-string-regexp": "^4.0.0", "find-root": "^1.1.0", "source-map": "^0.5.7", - "stylis": "4.0.13" - }, - "peerDependencies": { - "@babel/core": "^7.0.0" - } - }, - "node_modules/@emotion/babel-plugin/node_modules/babel-plugin-macros": { - "version": "2.8.0", - "resolved": "https://registry.npmjs.org/babel-plugin-macros/-/babel-plugin-macros-2.8.0.tgz", - "integrity": "sha512-SEP5kJpfGYqYKpBrj5XU3ahw5p5GOHJ0U5ssOSQ/WBVdwkD2Dzlce95exQTs3jOVWPPKLBN2rlEWkCK7dSmLvg==", - "dependencies": { - "@babel/runtime": "^7.7.2", - "cosmiconfig": "^6.0.0", - "resolve": "^1.12.0" - } - }, - "node_modules/@emotion/babel-plugin/node_modules/cosmiconfig": { - "version": "6.0.0", - "resolved": "https://registry.npmjs.org/cosmiconfig/-/cosmiconfig-6.0.0.tgz", - "integrity": "sha512-xb3ZL6+L8b9JLLCx3ZdoZy4+2ECphCMo2PwqgP1tlfVq6M6YReyzBJtvWWtbDSpNr9hn96pkCiZqUcFEc+54Qg==", - "dependencies": { - "@types/parse-json": "^4.0.0", - "import-fresh": "^3.1.0", - "parse-json": "^5.0.0", - "path-type": "^4.0.0", - "yaml": "^1.7.2" - }, - "engines": { - "node": ">=8" - } - }, - "node_modules/@emotion/babel-plugin/node_modules/escape-string-regexp": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/escape-string-regexp/-/escape-string-regexp-4.0.0.tgz", - "integrity": "sha512-TtpcNJ3XAzx3Gq8sWRzJaVajRs0uVxA2YAkdb1jm2YkPz4G6egUFAyA3n5vtEIZefPk5Wa4UXbKuS5fKkJWdgA==", - "engines": { - "node": ">=10" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, - "node_modules/@emotion/babel-plugin/node_modules/source-map": { - "version": "0.5.7", - "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.5.7.tgz", - "integrity": "sha512-LbrmJOMUSdEVxIKvdcJzQC+nQhe8FUZQTXQy6+I75skNgn3OoQ0DZA8YnFa7gp8tqtL3KPf1kmo0R5DoApeSGQ==", - "engines": { - "node": ">=0.10.0" + "stylis": "4.2.0" } }, "node_modules/@emotion/cache": { - "version": "11.9.3", - "resolved": "https://registry.npmjs.org/@emotion/cache/-/cache-11.9.3.tgz", - "integrity": "sha512-0dgkI/JKlCXa+lEXviaMtGBL0ynpx4osh7rjOXE71q9bIF8G+XhJgvi+wDu0B0IdCVx37BffiwXlN9I3UuzFvg==", + "version": "11.11.0", + "license": "MIT", "dependencies": { - "@emotion/memoize": "^0.7.4", - "@emotion/sheet": "^1.1.1", - "@emotion/utils": "^1.0.0", - "@emotion/weak-memoize": "^0.2.5", - "stylis": "4.0.13" + "@emotion/memoize": "^0.8.1", + "@emotion/sheet": "^1.2.2", + "@emotion/utils": "^1.2.1", + "@emotion/weak-memoize": "^0.3.1", + "stylis": "4.2.0" } }, "node_modules/@emotion/core": { "version": "10.3.1", - "resolved": "https://registry.npmjs.org/@emotion/core/-/core-10.3.1.tgz", - "integrity": "sha512-447aUEjPIm0MnE6QYIaFz9VQOHSXf4Iu6EWOIqq11EAPqinkSZmfymPTmlOE3QjLv846lH4JVZBUOtwGbuQoww==", + "license": "MIT", "dependencies": { "@babel/runtime": "^7.5.5", "@emotion/cache": "^10.0.27", @@ -2283,8 +2449,7 @@ }, "node_modules/@emotion/core/node_modules/@emotion/cache": { "version": "10.0.29", - "resolved": "https://registry.npmjs.org/@emotion/cache/-/cache-10.0.29.tgz", - "integrity": "sha512-fU2VtSVlHiF27empSbxi1O2JFdNWZO+2NFHfwO0pxgTep6Xa3uGb+3pVKfLww2l/IBGLNEZl5Xf/++A4wAYDYQ==", + "license": "MIT", "dependencies": { "@emotion/sheet": "0.9.4", "@emotion/stylis": "0.8.5", @@ -2292,15 +2457,17 @@ "@emotion/weak-memoize": "0.2.5" } }, + "node_modules/@emotion/core/node_modules/@emotion/hash": { + "version": "0.8.0", + "license": "MIT" + }, "node_modules/@emotion/core/node_modules/@emotion/memoize": { "version": "0.7.4", - "resolved": "https://registry.npmjs.org/@emotion/memoize/-/memoize-0.7.4.tgz", - "integrity": "sha512-Ja/Vfqe3HpuzRsG1oBtWTHk2PGZ7GR+2Vz5iYGelAw8dx32K0y7PjVuxK6z1nMpZOqAFsRUPCkK1YjJ56qJlgw==" + "license": "MIT" }, "node_modules/@emotion/core/node_modules/@emotion/serialize": { "version": "0.11.16", - "resolved": "https://registry.npmjs.org/@emotion/serialize/-/serialize-0.11.16.tgz", - "integrity": "sha512-G3J4o8by0VRrO+PFeSc3js2myYNOXVJ3Ya+RGVxnshRYgsvErfAOglKAiy1Eo1vhzxqtUvjCyS5gtewzkmvSSg==", + "license": "MIT", "dependencies": { "@emotion/hash": "0.8.0", "@emotion/memoize": "0.7.4", @@ -2311,38 +2478,44 @@ }, "node_modules/@emotion/core/node_modules/@emotion/sheet": { "version": "0.9.4", - "resolved": "https://registry.npmjs.org/@emotion/sheet/-/sheet-0.9.4.tgz", - "integrity": "sha512-zM9PFmgVSqBw4zL101Q0HrBVTGmpAxFZH/pYx/cjJT5advXguvcgjHFTCaIO3enL/xr89vK2bh0Mfyj9aa0ANA==" + "license": "MIT" + }, + "node_modules/@emotion/core/node_modules/@emotion/unitless": { + "version": "0.7.5", + "license": "MIT" }, "node_modules/@emotion/core/node_modules/@emotion/utils": { "version": "0.11.3", - "resolved": "https://registry.npmjs.org/@emotion/utils/-/utils-0.11.3.tgz", - "integrity": "sha512-0o4l6pZC+hI88+bzuaX/6BgOvQVhbt2PfmxauVaYOGgbsAw14wdKyvMCZXnsnsHys94iadcF+RG/wZyx6+ZZBw==" + "license": "MIT" + }, + "node_modules/@emotion/core/node_modules/@emotion/weak-memoize": { + "version": "0.2.5", + "license": "MIT" }, "node_modules/@emotion/core/node_modules/csstype": { "version": "2.6.21", - "resolved": "https://registry.npmjs.org/csstype/-/csstype-2.6.21.tgz", - "integrity": "sha512-Z1PhmomIfypOpoMjRQB70jfvy/wxT50qW08YXO5lMIJkrdq4yOTR+AW7FqutScmB9NkLwxo+jU+kZLbofZZq/w==" + "license": "MIT" }, "node_modules/@emotion/css": { "version": "10.0.27", - "resolved": "https://registry.npmjs.org/@emotion/css/-/css-10.0.27.tgz", - "integrity": "sha512-6wZjsvYeBhyZQYNrGoR5yPMYbMBNEnanDrqmsqS1mzDm1cOTu12shvl2j4QHNS36UaTE0USIJawCH9C8oW34Zw==", + "license": "MIT", "dependencies": { "@emotion/serialize": "^0.11.15", "@emotion/utils": "0.11.3", "babel-plugin-emotion": "^10.0.27" } }, + "node_modules/@emotion/css/node_modules/@emotion/hash": { + "version": "0.8.0", + "license": "MIT" + }, "node_modules/@emotion/css/node_modules/@emotion/memoize": { "version": "0.7.4", - "resolved": "https://registry.npmjs.org/@emotion/memoize/-/memoize-0.7.4.tgz", - "integrity": "sha512-Ja/Vfqe3HpuzRsG1oBtWTHk2PGZ7GR+2Vz5iYGelAw8dx32K0y7PjVuxK6z1nMpZOqAFsRUPCkK1YjJ56qJlgw==" + "license": "MIT" }, "node_modules/@emotion/css/node_modules/@emotion/serialize": { "version": "0.11.16", - "resolved": "https://registry.npmjs.org/@emotion/serialize/-/serialize-0.11.16.tgz", - "integrity": "sha512-G3J4o8by0VRrO+PFeSc3js2myYNOXVJ3Ya+RGVxnshRYgsvErfAOglKAiy1Eo1vhzxqtUvjCyS5gtewzkmvSSg==", + "license": "MIT", "dependencies": { "@emotion/hash": "0.8.0", "@emotion/memoize": "0.7.4", @@ -2351,97 +2524,86 @@ "csstype": "^2.5.7" } }, + "node_modules/@emotion/css/node_modules/@emotion/unitless": { + "version": "0.7.5", + "license": "MIT" + }, "node_modules/@emotion/css/node_modules/@emotion/utils": { "version": "0.11.3", - "resolved": "https://registry.npmjs.org/@emotion/utils/-/utils-0.11.3.tgz", - "integrity": "sha512-0o4l6pZC+hI88+bzuaX/6BgOvQVhbt2PfmxauVaYOGgbsAw14wdKyvMCZXnsnsHys94iadcF+RG/wZyx6+ZZBw==" + "license": "MIT" }, "node_modules/@emotion/css/node_modules/csstype": { "version": "2.6.21", - "resolved": "https://registry.npmjs.org/csstype/-/csstype-2.6.21.tgz", - "integrity": "sha512-Z1PhmomIfypOpoMjRQB70jfvy/wxT50qW08YXO5lMIJkrdq4yOTR+AW7FqutScmB9NkLwxo+jU+kZLbofZZq/w==" + "license": "MIT" }, "node_modules/@emotion/hash": { - "version": "0.8.0", - "resolved": "https://registry.npmjs.org/@emotion/hash/-/hash-0.8.0.tgz", - "integrity": "sha512-kBJtf7PH6aWwZ6fka3zQ0p6SBYzx4fl1LoZXE2RrnYST9Xljm7WfKJrU4g/Xr3Beg72MLrp1AWNUmuYJTL7Cow==" + "version": "0.9.1", + "license": "MIT" }, "node_modules/@emotion/is-prop-valid": { - "version": "1.1.3", - "resolved": "https://registry.npmjs.org/@emotion/is-prop-valid/-/is-prop-valid-1.1.3.tgz", - "integrity": "sha512-RFg04p6C+1uO19uG8N+vqanzKqiM9eeV1LDOG3bmkYmuOj7NbKNlFC/4EZq5gnwAIlcC/jOT24f8Td0iax2SXA==", + "version": "1.2.1", + "license": "MIT", "dependencies": { - "@emotion/memoize": "^0.7.4" + "@emotion/memoize": "^0.8.1" } }, "node_modules/@emotion/memoize": { - "version": "0.7.5", - "resolved": "https://registry.npmjs.org/@emotion/memoize/-/memoize-0.7.5.tgz", - "integrity": "sha512-igX9a37DR2ZPGYtV6suZ6whr8pTFtyHL3K/oLUotxpSVO2ASaprmAe2Dkq7tBo7CRY7MMDrAa9nuQP9/YG8FxQ==" + "version": "0.8.1", + "license": "MIT" }, "node_modules/@emotion/react": { - "version": "11.9.3", - "resolved": "https://registry.npmjs.org/@emotion/react/-/react-11.9.3.tgz", - "integrity": "sha512-g9Q1GcTOlzOEjqwuLF/Zd9LC+4FljjPjDfxSM7KmEakm+hsHXk+bYZ2q+/hTJzr0OUNkujo72pXLQvXj6H+GJQ==", - "dependencies": { - "@babel/runtime": "^7.13.10", - "@emotion/babel-plugin": "^11.7.1", - "@emotion/cache": "^11.9.3", - "@emotion/serialize": "^1.0.4", - "@emotion/utils": "^1.1.0", - "@emotion/weak-memoize": "^0.2.5", + "version": "11.11.1", + "license": "MIT", + "dependencies": { + "@babel/runtime": "^7.18.3", + "@emotion/babel-plugin": "^11.11.0", + "@emotion/cache": "^11.11.0", + "@emotion/serialize": "^1.1.2", + "@emotion/use-insertion-effect-with-fallbacks": "^1.0.1", + "@emotion/utils": "^1.2.1", + "@emotion/weak-memoize": "^0.3.1", "hoist-non-react-statics": "^3.3.1" }, "peerDependencies": { - "@babel/core": "^7.0.0", "react": ">=16.8.0" }, "peerDependenciesMeta": { - "@babel/core": { - "optional": true - }, "@types/react": { "optional": true } } }, "node_modules/@emotion/serialize": { - "version": "1.0.4", - "resolved": "https://registry.npmjs.org/@emotion/serialize/-/serialize-1.0.4.tgz", - "integrity": "sha512-1JHamSpH8PIfFwAMryO2bNka+y8+KA5yga5Ocf2d7ZEiJjb7xlLW7aknBGZqJLajuLOvJ+72vN+IBSwPlXD1Pg==", + "version": "1.1.2", + "license": "MIT", "dependencies": { - "@emotion/hash": "^0.8.0", - "@emotion/memoize": "^0.7.4", - "@emotion/unitless": "^0.7.5", - "@emotion/utils": "^1.0.0", + "@emotion/hash": "^0.9.1", + "@emotion/memoize": "^0.8.1", + "@emotion/unitless": "^0.8.1", + "@emotion/utils": "^1.2.1", "csstype": "^3.0.2" } }, "node_modules/@emotion/sheet": { - "version": "1.1.1", - "resolved": "https://registry.npmjs.org/@emotion/sheet/-/sheet-1.1.1.tgz", - "integrity": "sha512-J3YPccVRMiTZxYAY0IOq3kd+hUP8idY8Kz6B/Cyo+JuXq52Ek+zbPbSQUrVQp95aJ+lsAW7DPL1P2Z+U1jGkKA==" + "version": "1.2.2", + "license": "MIT" }, "node_modules/@emotion/styled": { - "version": "11.9.3", - "resolved": "https://registry.npmjs.org/@emotion/styled/-/styled-11.9.3.tgz", - "integrity": "sha512-o3sBNwbtoVz9v7WB1/Y/AmXl69YHmei2mrVnK7JgyBJ//Rst5yqPZCecEJlMlJrFeWHp+ki/54uN265V2pEcXA==", + "version": "11.11.0", + "license": "MIT", "dependencies": { - "@babel/runtime": "^7.13.10", - "@emotion/babel-plugin": "^11.7.1", - "@emotion/is-prop-valid": "^1.1.3", - "@emotion/serialize": "^1.0.4", - "@emotion/utils": "^1.1.0" + "@babel/runtime": "^7.18.3", + "@emotion/babel-plugin": "^11.11.0", + "@emotion/is-prop-valid": "^1.2.1", + "@emotion/serialize": "^1.1.2", + "@emotion/use-insertion-effect-with-fallbacks": "^1.0.1", + "@emotion/utils": "^1.2.1" }, "peerDependencies": { - "@babel/core": "^7.0.0", "@emotion/react": "^11.0.0-rc.0", "react": ">=16.8.0" }, "peerDependenciesMeta": { - "@babel/core": { - "optional": true - }, "@types/react": { "optional": true } @@ -2449,8 +2611,7 @@ }, "node_modules/@emotion/styled-base": { "version": "10.3.0", - "resolved": "https://registry.npmjs.org/@emotion/styled-base/-/styled-base-10.3.0.tgz", - "integrity": "sha512-PBRqsVKR7QRNkmfH78hTSSwHWcwDpecH9W6heujWAcyp2wdz/64PP73s7fWS1dIPm8/Exc8JAzYS8dEWXjv60w==", + "license": "MIT", "dependencies": { "@babel/runtime": "^7.5.5", "@emotion/is-prop-valid": "0.8.8", @@ -2462,23 +2623,24 @@ "react": ">=16.3.0" } }, + "node_modules/@emotion/styled-base/node_modules/@emotion/hash": { + "version": "0.8.0", + "license": "MIT" + }, "node_modules/@emotion/styled-base/node_modules/@emotion/is-prop-valid": { "version": "0.8.8", - "resolved": "https://registry.npmjs.org/@emotion/is-prop-valid/-/is-prop-valid-0.8.8.tgz", - "integrity": "sha512-u5WtneEAr5IDG2Wv65yhunPSMLIpuKsbuOktRojfrEiEvRyC85LgPMZI63cr7NUqT8ZIGdSVg8ZKGxIug4lXcA==", + "license": "MIT", "dependencies": { "@emotion/memoize": "0.7.4" } }, "node_modules/@emotion/styled-base/node_modules/@emotion/memoize": { "version": "0.7.4", - "resolved": "https://registry.npmjs.org/@emotion/memoize/-/memoize-0.7.4.tgz", - "integrity": "sha512-Ja/Vfqe3HpuzRsG1oBtWTHk2PGZ7GR+2Vz5iYGelAw8dx32K0y7PjVuxK6z1nMpZOqAFsRUPCkK1YjJ56qJlgw==" + "license": "MIT" }, "node_modules/@emotion/styled-base/node_modules/@emotion/serialize": { "version": "0.11.16", - "resolved": "https://registry.npmjs.org/@emotion/serialize/-/serialize-0.11.16.tgz", - "integrity": "sha512-G3J4o8by0VRrO+PFeSc3js2myYNOXVJ3Ya+RGVxnshRYgsvErfAOglKAiy1Eo1vhzxqtUvjCyS5gtewzkmvSSg==", + "license": "MIT", "dependencies": { "@emotion/hash": "0.8.0", "@emotion/memoize": "0.7.4", @@ -2487,45 +2649,69 @@ "csstype": "^2.5.7" } }, + "node_modules/@emotion/styled-base/node_modules/@emotion/unitless": { + "version": "0.7.5", + "license": "MIT" + }, "node_modules/@emotion/styled-base/node_modules/@emotion/utils": { "version": "0.11.3", - "resolved": "https://registry.npmjs.org/@emotion/utils/-/utils-0.11.3.tgz", - "integrity": "sha512-0o4l6pZC+hI88+bzuaX/6BgOvQVhbt2PfmxauVaYOGgbsAw14wdKyvMCZXnsnsHys94iadcF+RG/wZyx6+ZZBw==" + "license": "MIT" }, "node_modules/@emotion/styled-base/node_modules/csstype": { "version": "2.6.21", - "resolved": "https://registry.npmjs.org/csstype/-/csstype-2.6.21.tgz", - "integrity": "sha512-Z1PhmomIfypOpoMjRQB70jfvy/wxT50qW08YXO5lMIJkrdq4yOTR+AW7FqutScmB9NkLwxo+jU+kZLbofZZq/w==" + "license": "MIT" }, "node_modules/@emotion/stylis": { "version": "0.8.5", - "resolved": "https://registry.npmjs.org/@emotion/stylis/-/stylis-0.8.5.tgz", - "integrity": "sha512-h6KtPihKFn3T9fuIrwvXXUOwlx3rfUvfZIcP5a6rh8Y7zjE3O06hT5Ss4S/YI1AYhuZ1kjaE/5EaOOI2NqSylQ==" + "license": "MIT" }, "node_modules/@emotion/unitless": { - "version": "0.7.5", - "resolved": "https://registry.npmjs.org/@emotion/unitless/-/unitless-0.7.5.tgz", - "integrity": "sha512-OWORNpfjMsSSUBVrRBVGECkhWcULOAJz9ZW8uK9qgxD+87M7jHRcvh/A96XXNhXTLmKcoYSQtBEX7lHMO7YRwg==" + "version": "0.8.1", + "license": "MIT" + }, + "node_modules/@emotion/use-insertion-effect-with-fallbacks": { + "version": "1.0.1", + "license": "MIT", + "peerDependencies": { + "react": ">=16.8.0" + } }, "node_modules/@emotion/utils": { - "version": "1.1.0", - "resolved": "https://registry.npmjs.org/@emotion/utils/-/utils-1.1.0.tgz", - "integrity": "sha512-iRLa/Y4Rs5H/f2nimczYmS5kFJEbpiVvgN3XVfZ022IYhuNA1IRSHEizcof88LtCTXtl9S2Cxt32KgaXEu72JQ==" + "version": "1.2.1", + "license": "MIT" }, "node_modules/@emotion/weak-memoize": { - "version": "0.2.5", - "resolved": "https://registry.npmjs.org/@emotion/weak-memoize/-/weak-memoize-0.2.5.tgz", - "integrity": "sha512-6U71C2Wp7r5XtFtQzYrW5iKFT67OixrSxjI4MptCHzdSVlgabczzqLe0ZSgnub/5Kp4hSbpDB1tMytZY9pwxxA==" + "version": "0.3.1", + "license": "MIT" + }, + "node_modules/@eslint-community/eslint-utils": { + "version": "4.4.0", + "license": "MIT", + "dependencies": { + "eslint-visitor-keys": "^3.3.0" + }, + "engines": { + "node": "^12.22.0 || ^14.17.0 || >=16.0.0" + }, + "peerDependencies": { + "eslint": "^6.0.0 || ^7.0.0 || >=8.0.0" + } + }, + "node_modules/@eslint-community/regexpp": { + "version": "4.8.0", + "license": "MIT", + "engines": { + "node": "^12.0.0 || ^14.0.0 || >=16.0.0" + } }, "node_modules/@eslint/eslintrc": { - "version": "1.3.0", - "resolved": "https://registry.npmjs.org/@eslint/eslintrc/-/eslintrc-1.3.0.tgz", - "integrity": "sha512-UWW0TMTmk2d7hLcWD1/e2g5HDM/HQ3csaLSqXCfqwh4uNDuNqlaKWXmEsL4Cs41Z0KnILNvwbHAah3C2yt06kw==", + "version": "2.1.2", + "license": "MIT", "dependencies": { "ajv": "^6.12.4", "debug": "^4.3.2", - "espree": "^9.3.2", - "globals": "^13.15.0", + "espree": "^9.6.0", + "globals": "^13.19.0", "ignore": "^5.2.0", "import-fresh": "^3.2.1", "js-yaml": "^4.1.0", @@ -2534,17 +2720,18 @@ }, "engines": { "node": "^12.22.0 || ^14.17.0 || >=16.0.0" + }, + "funding": { + "url": "https://opencollective.com/eslint" } }, "node_modules/@eslint/eslintrc/node_modules/argparse": { "version": "2.0.1", - "resolved": "https://registry.npmjs.org/argparse/-/argparse-2.0.1.tgz", - "integrity": "sha512-8+9WqebbFzpX9OR+Wa6O29asIogeRMzcGtAINdpMHHyAg10f05aSFVBbcEqGf/PXw1EjAZ+q2/bEBg3DvurK3Q==" + "license": "Python-2.0" }, "node_modules/@eslint/eslintrc/node_modules/globals": { - "version": "13.15.0", - "resolved": "https://registry.npmjs.org/globals/-/globals-13.15.0.tgz", - "integrity": "sha512-bpzcOlgDhMG070Av0Vy5Owklpv1I6+j96GhUI7Rh7IzDCKLzboflLrrfqMu8NquDbiR4EOQk7XzJwqVJxicxog==", + "version": "13.21.0", + "license": "MIT", "dependencies": { "type-fest": "^0.20.2" }, @@ -2557,8 +2744,7 @@ }, "node_modules/@eslint/eslintrc/node_modules/js-yaml": { "version": "4.1.0", - "resolved": "https://registry.npmjs.org/js-yaml/-/js-yaml-4.1.0.tgz", - "integrity": "sha512-wpxZs9NoxZaJESJGIZTyDEaYpl0FKSA+FB9aJiyemKhMwkxQg63h4T1KJgUGHpTqPDNRcmmYLugrRjJlBtWvRA==", + "license": "MIT", "dependencies": { "argparse": "^2.0.1" }, @@ -2568,8 +2754,7 @@ }, "node_modules/@eslint/eslintrc/node_modules/type-fest": { "version": "0.20.2", - "resolved": "https://registry.npmjs.org/type-fest/-/type-fest-0.20.2.tgz", - "integrity": "sha512-Ne+eE4r0/iWnpAxD852z3A+N0Bt5RN//NjJwRd2VFHEmrywxf5vsZlh4R6lixl6B+wz/8d+maTSAkN1FIkI3LQ==", + "license": "(MIT OR CC0-1.0)", "engines": { "node": ">=10" }, @@ -2577,10 +2762,16 @@ "url": "https://github.com/sponsors/sindresorhus" } }, + "node_modules/@eslint/js": { + "version": "8.48.0", + "license": "MIT", + "engines": { + "node": "^12.22.0 || ^14.17.0 || >=16.0.0" + } + }, "node_modules/@ethereumjs/common": { "version": "2.5.0", - "resolved": "https://registry.npmjs.org/@ethereumjs/common/-/common-2.5.0.tgz", - "integrity": "sha512-DEHjW6e38o+JmB/NO3GZBpW4lpaiBpkFgXF6jLcJ6gETBYpEyaA5nTimsWBUJR3Vmtm/didUEbNjajskugZORg==", + "license": "MIT", "dependencies": { "crc-32": "^1.2.0", "ethereumjs-util": "^7.1.1" @@ -2588,8 +2779,7 @@ }, "node_modules/@ethereumjs/common/node_modules/ethereum-cryptography": { "version": "0.1.3", - "resolved": "https://registry.npmjs.org/ethereum-cryptography/-/ethereum-cryptography-0.1.3.tgz", - "integrity": "sha512-w8/4x1SGGzc+tO97TASLja6SLd3fRIK2tLVcV2Gx4IB21hE19atll5Cq9o3d0ZmAYC/8aw0ipieTSiekAea4SQ==", + "license": "MIT", "dependencies": { "@types/pbkdf2": "^3.0.0", "@types/secp256k1": "^4.0.1", @@ -2610,8 +2800,7 @@ }, "node_modules/@ethereumjs/common/node_modules/ethereumjs-util": { "version": "7.1.5", - "resolved": "https://registry.npmjs.org/ethereumjs-util/-/ethereumjs-util-7.1.5.tgz", - "integrity": "sha512-SDl5kKrQAudFBUe5OJM9Ac6WmMyYmXX/6sTmLZ3ffG2eY6ZIGBes3pEDxNN6V72WyOw4CPD5RomKdsa8DAAwLg==", + "license": "MPL-2.0", "dependencies": { "@types/bn.js": "^5.1.0", "bn.js": "^5.1.2", @@ -2623,10 +2812,19 @@ "node": ">=10.0.0" } }, + "node_modules/@ethereumjs/rlp": { + "version": "4.0.1", + "license": "MPL-2.0", + "bin": { + "rlp": "bin/rlp" + }, + "engines": { + "node": ">=14" + } + }, "node_modules/@ethereumjs/tx": { "version": "3.3.2", - "resolved": "https://registry.npmjs.org/@ethereumjs/tx/-/tx-3.3.2.tgz", - "integrity": "sha512-6AaJhwg4ucmwTvw/1qLaZUX5miWrwZ4nLOUsKyb/HtzS3BMw/CasKhdi1ims9mBKeK9sOJCH4qGKOBGyJCeeog==", + "license": "MPL-2.0", "dependencies": { "@ethereumjs/common": "^2.5.0", "ethereumjs-util": "^7.1.2" @@ -2634,8 +2832,7 @@ }, "node_modules/@ethereumjs/tx/node_modules/ethereum-cryptography": { "version": "0.1.3", - "resolved": "https://registry.npmjs.org/ethereum-cryptography/-/ethereum-cryptography-0.1.3.tgz", - "integrity": "sha512-w8/4x1SGGzc+tO97TASLja6SLd3fRIK2tLVcV2Gx4IB21hE19atll5Cq9o3d0ZmAYC/8aw0ipieTSiekAea4SQ==", + "license": "MIT", "dependencies": { "@types/pbkdf2": "^3.0.0", "@types/secp256k1": "^4.0.1", @@ -2656,8 +2853,7 @@ }, "node_modules/@ethereumjs/tx/node_modules/ethereumjs-util": { "version": "7.1.5", - "resolved": "https://registry.npmjs.org/ethereumjs-util/-/ethereumjs-util-7.1.5.tgz", - "integrity": "sha512-SDl5kKrQAudFBUe5OJM9Ac6WmMyYmXX/6sTmLZ3ffG2eY6ZIGBes3pEDxNN6V72WyOw4CPD5RomKdsa8DAAwLg==", + "license": "MPL-2.0", "dependencies": { "@types/bn.js": "^5.1.0", "bn.js": "^5.1.2", @@ -2669,10 +2865,73 @@ "node": ">=10.0.0" } }, + "node_modules/@ethereumjs/util": { + "version": "8.1.0", + "license": "MPL-2.0", + "dependencies": { + "@ethereumjs/rlp": "^4.0.1", + "ethereum-cryptography": "^2.0.0", + "micro-ftch": "^0.3.1" + }, + "engines": { + "node": ">=14" + } + }, + "node_modules/@ethereumjs/util/node_modules/@noble/curves": { + "version": "1.1.0", + "license": "MIT", + "dependencies": { + "@noble/hashes": "1.3.1" + }, + "funding": { + "url": "https://paulmillr.com/funding/" + } + }, + "node_modules/@ethereumjs/util/node_modules/@noble/hashes": { + "version": "1.3.1", + "license": "MIT", + "engines": { + "node": ">= 16" + }, + "funding": { + "url": "https://paulmillr.com/funding/" + } + }, + "node_modules/@ethereumjs/util/node_modules/@scure/bip32": { + "version": "1.3.1", + "license": "MIT", + "dependencies": { + "@noble/curves": "~1.1.0", + "@noble/hashes": "~1.3.1", + "@scure/base": "~1.1.0" + }, + "funding": { + "url": "https://paulmillr.com/funding/" + } + }, + "node_modules/@ethereumjs/util/node_modules/@scure/bip39": { + "version": "1.2.1", + "license": "MIT", + "dependencies": { + "@noble/hashes": "~1.3.0", + "@scure/base": "~1.1.0" + }, + "funding": { + "url": "https://paulmillr.com/funding/" + } + }, + "node_modules/@ethereumjs/util/node_modules/ethereum-cryptography": { + "version": "2.1.2", + "license": "MIT", + "dependencies": { + "@noble/curves": "1.1.0", + "@noble/hashes": "1.3.1", + "@scure/bip32": "1.3.1", + "@scure/bip39": "1.2.1" + } + }, "node_modules/@ethersproject/abi": { "version": "5.7.0", - "resolved": "https://registry.npmjs.org/@ethersproject/abi/-/abi-5.7.0.tgz", - "integrity": "sha512-351ktp42TiRcYB3H1OP8yajPeAQstMW/yCFokj/AthP9bLHzQFPlOrxOcwYEDkUAICmOHljvN4K39OMTMUa9RA==", "funding": [ { "type": "individual", @@ -2683,6 +2942,7 @@ "url": "https://www.buymeacoffee.com/ricmoo" } ], + "license": "MIT", "dependencies": { "@ethersproject/address": "^5.7.0", "@ethersproject/bignumber": "^5.7.0", @@ -2697,8 +2957,6 @@ }, "node_modules/@ethersproject/abstract-provider": { "version": "5.7.0", - "resolved": "https://registry.npmjs.org/@ethersproject/abstract-provider/-/abstract-provider-5.7.0.tgz", - "integrity": "sha512-R41c9UkchKCpAqStMYUpdunjo3pkEvZC3FAwZn5S5MGbXoMQOHIdHItezTETxAO5bevtMApSyEhn9+CHcDsWBw==", "funding": [ { "type": "individual", @@ -2709,6 +2967,7 @@ "url": "https://www.buymeacoffee.com/ricmoo" } ], + "license": "MIT", "dependencies": { "@ethersproject/bignumber": "^5.7.0", "@ethersproject/bytes": "^5.7.0", @@ -2721,8 +2980,6 @@ }, "node_modules/@ethersproject/abstract-signer": { "version": "5.7.0", - "resolved": "https://registry.npmjs.org/@ethersproject/abstract-signer/-/abstract-signer-5.7.0.tgz", - "integrity": "sha512-a16V8bq1/Cz+TGCkE2OPMTOUDLS3grCpdjoJCYNnVBbdYEMSgKrU0+B90s8b6H+ByYTBZN7a3g76jdIJi7UfKQ==", "funding": [ { "type": "individual", @@ -2733,6 +2990,7 @@ "url": "https://www.buymeacoffee.com/ricmoo" } ], + "license": "MIT", "dependencies": { "@ethersproject/abstract-provider": "^5.7.0", "@ethersproject/bignumber": "^5.7.0", @@ -2743,8 +3001,6 @@ }, "node_modules/@ethersproject/address": { "version": "5.7.0", - "resolved": "https://registry.npmjs.org/@ethersproject/address/-/address-5.7.0.tgz", - "integrity": "sha512-9wYhYt7aghVGo758POM5nqcOMaE168Q6aRLJZwUmiqSrAungkG74gSSeKEIR7ukixesdRZGPgVqme6vmxs1fkA==", "funding": [ { "type": "individual", @@ -2755,6 +3011,7 @@ "url": "https://www.buymeacoffee.com/ricmoo" } ], + "license": "MIT", "dependencies": { "@ethersproject/bignumber": "^5.7.0", "@ethersproject/bytes": "^5.7.0", @@ -2765,8 +3022,6 @@ }, "node_modules/@ethersproject/base64": { "version": "5.7.0", - "resolved": "https://registry.npmjs.org/@ethersproject/base64/-/base64-5.7.0.tgz", - "integrity": "sha512-Dr8tcHt2mEbsZr/mwTPIQAf3Ai0Bks/7gTw9dSqk1mQvhW3XvRlmDJr/4n+wg1JmCl16NZue17CDh8xb/vZ0sQ==", "funding": [ { "type": "individual", @@ -2777,14 +3032,13 @@ "url": "https://www.buymeacoffee.com/ricmoo" } ], + "license": "MIT", "dependencies": { "@ethersproject/bytes": "^5.7.0" } }, "node_modules/@ethersproject/basex": { "version": "5.7.0", - "resolved": "https://registry.npmjs.org/@ethersproject/basex/-/basex-5.7.0.tgz", - "integrity": "sha512-ywlh43GwZLv2Voc2gQVTKBoVQ1mti3d8HK5aMxsfu/nRDnMmNqaSJ3r3n85HBByT8OpoY96SXM1FogC533T4zw==", "funding": [ { "type": "individual", @@ -2795,6 +3049,7 @@ "url": "https://www.buymeacoffee.com/ricmoo" } ], + "license": "MIT", "dependencies": { "@ethersproject/bytes": "^5.7.0", "@ethersproject/properties": "^5.7.0" @@ -2802,8 +3057,6 @@ }, "node_modules/@ethersproject/bignumber": { "version": "5.7.0", - "resolved": "https://registry.npmjs.org/@ethersproject/bignumber/-/bignumber-5.7.0.tgz", - "integrity": "sha512-n1CAdIHRWjSucQO3MC1zPSVgV/6dy/fjL9pMrPP9peL+QxEg9wOsVqwD4+818B6LUEtaXzVHQiuivzRoxPxUGw==", "funding": [ { "type": "individual", @@ -2814,6 +3067,7 @@ "url": "https://www.buymeacoffee.com/ricmoo" } ], + "license": "MIT", "dependencies": { "@ethersproject/bytes": "^5.7.0", "@ethersproject/logger": "^5.7.0", @@ -2822,8 +3076,6 @@ }, "node_modules/@ethersproject/bytes": { "version": "5.7.0", - "resolved": "https://registry.npmjs.org/@ethersproject/bytes/-/bytes-5.7.0.tgz", - "integrity": "sha512-nsbxwgFXWh9NyYWo+U8atvmMsSdKJprTcICAkvbBffT75qDocbuggBU0SJiVK2MuTrp0q+xvLkTnGMPK1+uA9A==", "funding": [ { "type": "individual", @@ -2834,14 +3086,13 @@ "url": "https://www.buymeacoffee.com/ricmoo" } ], + "license": "MIT", "dependencies": { "@ethersproject/logger": "^5.7.0" } }, "node_modules/@ethersproject/constants": { "version": "5.7.0", - "resolved": "https://registry.npmjs.org/@ethersproject/constants/-/constants-5.7.0.tgz", - "integrity": "sha512-DHI+y5dBNvkpYUMiRQyxRBYBefZkJfo70VUkUAsRjcPs47muV9evftfZ0PJVCXYbAiCgght0DtcF9srFQmIgWA==", "funding": [ { "type": "individual", @@ -2852,14 +3103,13 @@ "url": "https://www.buymeacoffee.com/ricmoo" } ], + "license": "MIT", "dependencies": { "@ethersproject/bignumber": "^5.7.0" } }, "node_modules/@ethersproject/contracts": { "version": "5.7.0", - "resolved": "https://registry.npmjs.org/@ethersproject/contracts/-/contracts-5.7.0.tgz", - "integrity": "sha512-5GJbzEU3X+d33CdfPhcyS+z8MzsTrBGk/sc+G+59+tPa9yFkl6HQ9D6L0QMgNTA9q8dT0XKxxkyp883XsQvbbg==", "funding": [ { "type": "individual", @@ -2870,6 +3120,7 @@ "url": "https://www.buymeacoffee.com/ricmoo" } ], + "license": "MIT", "dependencies": { "@ethersproject/abi": "^5.7.0", "@ethersproject/abstract-provider": "^5.7.0", @@ -2885,8 +3136,6 @@ }, "node_modules/@ethersproject/hash": { "version": "5.7.0", - "resolved": "https://registry.npmjs.org/@ethersproject/hash/-/hash-5.7.0.tgz", - "integrity": "sha512-qX5WrQfnah1EFnO5zJv1v46a8HW0+E5xuBBDTwMFZLuVTx0tbU2kkx15NqdjxecrLGatQN9FGQKpb1FKdHCt+g==", "funding": [ { "type": "individual", @@ -2897,6 +3146,7 @@ "url": "https://www.buymeacoffee.com/ricmoo" } ], + "license": "MIT", "dependencies": { "@ethersproject/abstract-signer": "^5.7.0", "@ethersproject/address": "^5.7.0", @@ -2911,8 +3161,6 @@ }, "node_modules/@ethersproject/hdnode": { "version": "5.7.0", - "resolved": "https://registry.npmjs.org/@ethersproject/hdnode/-/hdnode-5.7.0.tgz", - "integrity": "sha512-OmyYo9EENBPPf4ERhR7oj6uAtUAhYGqOnIS+jE5pTXvdKBS99ikzq1E7Iv0ZQZ5V36Lqx1qZLeak0Ra16qpeOg==", "funding": [ { "type": "individual", @@ -2923,6 +3171,7 @@ "url": "https://www.buymeacoffee.com/ricmoo" } ], + "license": "MIT", "dependencies": { "@ethersproject/abstract-signer": "^5.7.0", "@ethersproject/basex": "^5.7.0", @@ -2940,8 +3189,6 @@ }, "node_modules/@ethersproject/json-wallets": { "version": "5.7.0", - "resolved": "https://registry.npmjs.org/@ethersproject/json-wallets/-/json-wallets-5.7.0.tgz", - "integrity": "sha512-8oee5Xgu6+RKgJTkvEMl2wDgSPSAQ9MB/3JYjFV9jlKvcYHUXZC+cQp0njgmxdHkYWn8s6/IqIZYm0YWCjO/0g==", "funding": [ { "type": "individual", @@ -2952,6 +3199,7 @@ "url": "https://www.buymeacoffee.com/ricmoo" } ], + "license": "MIT", "dependencies": { "@ethersproject/abstract-signer": "^5.7.0", "@ethersproject/address": "^5.7.0", @@ -2970,8 +3218,6 @@ }, "node_modules/@ethersproject/keccak256": { "version": "5.7.0", - "resolved": "https://registry.npmjs.org/@ethersproject/keccak256/-/keccak256-5.7.0.tgz", - "integrity": "sha512-2UcPboeL/iW+pSg6vZ6ydF8tCnv3Iu/8tUmLLzWWGzxWKFFqOBQFLo6uLUv6BDrLgCDfN28RJ/wtByx+jZ4KBg==", "funding": [ { "type": "individual", @@ -2982,6 +3228,7 @@ "url": "https://www.buymeacoffee.com/ricmoo" } ], + "license": "MIT", "dependencies": { "@ethersproject/bytes": "^5.7.0", "js-sha3": "0.8.0" @@ -2989,8 +3236,6 @@ }, "node_modules/@ethersproject/logger": { "version": "5.7.0", - "resolved": "https://registry.npmjs.org/@ethersproject/logger/-/logger-5.7.0.tgz", - "integrity": "sha512-0odtFdXu/XHtjQXJYA3u9G0G8btm0ND5Cu8M7i5vhEcE8/HmF4Lbdqanwyv4uQTr2tx6b7fQRmgLrsnpQlmnig==", "funding": [ { "type": "individual", @@ -3000,12 +3245,11 @@ "type": "individual", "url": "https://www.buymeacoffee.com/ricmoo" } - ] + ], + "license": "MIT" }, "node_modules/@ethersproject/networks": { "version": "5.7.1", - "resolved": "https://registry.npmjs.org/@ethersproject/networks/-/networks-5.7.1.tgz", - "integrity": "sha512-n/MufjFYv3yFcUyfhnXotyDlNdFb7onmkSy8aQERi2PjNcnWQ66xXxa3XlS8nCcA8aJKJjIIMNJTC7tu80GwpQ==", "funding": [ { "type": "individual", @@ -3016,14 +3260,13 @@ "url": "https://www.buymeacoffee.com/ricmoo" } ], + "license": "MIT", "dependencies": { "@ethersproject/logger": "^5.7.0" } }, "node_modules/@ethersproject/pbkdf2": { "version": "5.7.0", - "resolved": "https://registry.npmjs.org/@ethersproject/pbkdf2/-/pbkdf2-5.7.0.tgz", - "integrity": "sha512-oR/dBRZR6GTyaofd86DehG72hY6NpAjhabkhxgr3X2FpJtJuodEl2auADWBZfhDHgVCbu3/H/Ocq2uC6dpNjjw==", "funding": [ { "type": "individual", @@ -3034,6 +3277,7 @@ "url": "https://www.buymeacoffee.com/ricmoo" } ], + "license": "MIT", "dependencies": { "@ethersproject/bytes": "^5.7.0", "@ethersproject/sha2": "^5.7.0" @@ -3041,8 +3285,6 @@ }, "node_modules/@ethersproject/properties": { "version": "5.7.0", - "resolved": "https://registry.npmjs.org/@ethersproject/properties/-/properties-5.7.0.tgz", - "integrity": "sha512-J87jy8suntrAkIZtecpxEPxY//szqr1mlBaYlQ0r4RCaiD2hjheqF9s1LVE8vVuJCXisjIP+JgtK/Do54ej4Sw==", "funding": [ { "type": "individual", @@ -3053,14 +3295,13 @@ "url": "https://www.buymeacoffee.com/ricmoo" } ], + "license": "MIT", "dependencies": { "@ethersproject/logger": "^5.7.0" } }, "node_modules/@ethersproject/providers": { "version": "5.7.2", - "resolved": "https://registry.npmjs.org/@ethersproject/providers/-/providers-5.7.2.tgz", - "integrity": "sha512-g34EWZ1WWAVgr4aptGlVBF8mhl3VWjv+8hoAnzStu8Ah22VHBsuGzP17eb6xDVRzw895G4W7vvx60lFFur/1Rg==", "funding": [ { "type": "individual", @@ -3071,6 +3312,7 @@ "url": "https://www.buymeacoffee.com/ricmoo" } ], + "license": "MIT", "dependencies": { "@ethersproject/abstract-provider": "^5.7.0", "@ethersproject/abstract-signer": "^5.7.0", @@ -3094,30 +3336,8 @@ "ws": "7.4.6" } }, - "node_modules/@ethersproject/providers/node_modules/ws": { - "version": "7.4.6", - "resolved": "https://registry.npmjs.org/ws/-/ws-7.4.6.tgz", - "integrity": "sha512-YmhHDO4MzaDLB+M9ym/mDA5z0naX8j7SIlT8f8z+I0VtzsRbekxEutHSme7NPS2qE8StCYQNUnfWdXta/Yu85A==", - "engines": { - "node": ">=8.3.0" - }, - "peerDependencies": { - "bufferutil": "^4.0.1", - "utf-8-validate": "^5.0.2" - }, - "peerDependenciesMeta": { - "bufferutil": { - "optional": true - }, - "utf-8-validate": { - "optional": true - } - } - }, "node_modules/@ethersproject/random": { "version": "5.7.0", - "resolved": "https://registry.npmjs.org/@ethersproject/random/-/random-5.7.0.tgz", - "integrity": "sha512-19WjScqRA8IIeWclFme75VMXSBvi4e6InrUNuaR4s5pTF2qNhcGdCUwdxUVGtDDqC00sDLCO93jPQoDUH4HVmQ==", "funding": [ { "type": "individual", @@ -3128,6 +3348,7 @@ "url": "https://www.buymeacoffee.com/ricmoo" } ], + "license": "MIT", "dependencies": { "@ethersproject/bytes": "^5.7.0", "@ethersproject/logger": "^5.7.0" @@ -3135,8 +3356,6 @@ }, "node_modules/@ethersproject/rlp": { "version": "5.7.0", - "resolved": "https://registry.npmjs.org/@ethersproject/rlp/-/rlp-5.7.0.tgz", - "integrity": "sha512-rBxzX2vK8mVF7b0Tol44t5Tb8gomOHkj5guL+HhzQ1yBh/ydjGnpw6at+X6Iw0Kp3OzzzkcKp8N9r0W4kYSs9w==", "funding": [ { "type": "individual", @@ -3147,6 +3366,7 @@ "url": "https://www.buymeacoffee.com/ricmoo" } ], + "license": "MIT", "dependencies": { "@ethersproject/bytes": "^5.7.0", "@ethersproject/logger": "^5.7.0" @@ -3154,8 +3374,6 @@ }, "node_modules/@ethersproject/sha2": { "version": "5.7.0", - "resolved": "https://registry.npmjs.org/@ethersproject/sha2/-/sha2-5.7.0.tgz", - "integrity": "sha512-gKlH42riwb3KYp0reLsFTokByAKoJdgFCwI+CCiX/k+Jm2mbNs6oOaCjYQSlI1+XBVejwH2KrmCbMAT/GnRDQw==", "funding": [ { "type": "individual", @@ -3166,6 +3384,7 @@ "url": "https://www.buymeacoffee.com/ricmoo" } ], + "license": "MIT", "dependencies": { "@ethersproject/bytes": "^5.7.0", "@ethersproject/logger": "^5.7.0", @@ -3174,8 +3393,6 @@ }, "node_modules/@ethersproject/signing-key": { "version": "5.7.0", - "resolved": "https://registry.npmjs.org/@ethersproject/signing-key/-/signing-key-5.7.0.tgz", - "integrity": "sha512-MZdy2nL3wO0u7gkB4nA/pEf8lu1TlFswPNmy8AiYkfKTdO6eXBJyUdmHO/ehm/htHw9K/qF8ujnTyUAD+Ry54Q==", "funding": [ { "type": "individual", @@ -3186,6 +3403,7 @@ "url": "https://www.buymeacoffee.com/ricmoo" } ], + "license": "MIT", "dependencies": { "@ethersproject/bytes": "^5.7.0", "@ethersproject/logger": "^5.7.0", @@ -3197,8 +3415,6 @@ }, "node_modules/@ethersproject/solidity": { "version": "5.7.0", - "resolved": "https://registry.npmjs.org/@ethersproject/solidity/-/solidity-5.7.0.tgz", - "integrity": "sha512-HmabMd2Dt/raavyaGukF4XxizWKhKQ24DoLtdNbBmNKUOPqwjsKQSdV9GQtj9CBEea9DlzETlVER1gYeXXBGaA==", "funding": [ { "type": "individual", @@ -3209,6 +3425,7 @@ "url": "https://www.buymeacoffee.com/ricmoo" } ], + "license": "MIT", "dependencies": { "@ethersproject/bignumber": "^5.7.0", "@ethersproject/bytes": "^5.7.0", @@ -3220,8 +3437,6 @@ }, "node_modules/@ethersproject/strings": { "version": "5.7.0", - "resolved": "https://registry.npmjs.org/@ethersproject/strings/-/strings-5.7.0.tgz", - "integrity": "sha512-/9nu+lj0YswRNSH0NXYqrh8775XNyEdUQAuf3f+SmOrnVewcJ5SBNAjF7lpgehKi4abvNNXyf+HX86czCdJ8Mg==", "funding": [ { "type": "individual", @@ -3232,6 +3447,7 @@ "url": "https://www.buymeacoffee.com/ricmoo" } ], + "license": "MIT", "dependencies": { "@ethersproject/bytes": "^5.7.0", "@ethersproject/constants": "^5.7.0", @@ -3240,8 +3456,6 @@ }, "node_modules/@ethersproject/transactions": { "version": "5.7.0", - "resolved": "https://registry.npmjs.org/@ethersproject/transactions/-/transactions-5.7.0.tgz", - "integrity": "sha512-kmcNicCp1lp8qanMTC3RIikGgoJ80ztTyvtsFvCYpSCfkjhD0jZ2LOrnbcuxuToLIUYYf+4XwD1rP+B/erDIhQ==", "funding": [ { "type": "individual", @@ -3252,6 +3466,7 @@ "url": "https://www.buymeacoffee.com/ricmoo" } ], + "license": "MIT", "dependencies": { "@ethersproject/address": "^5.7.0", "@ethersproject/bignumber": "^5.7.0", @@ -3266,8 +3481,6 @@ }, "node_modules/@ethersproject/units": { "version": "5.7.0", - "resolved": "https://registry.npmjs.org/@ethersproject/units/-/units-5.7.0.tgz", - "integrity": "sha512-pD3xLMy3SJu9kG5xDGI7+xhTEmGXlEqXU4OfNapmfnxLVY4EMSSRp7j1k7eezutBPH7RBN/7QPnwR7hzNlEFeg==", "funding": [ { "type": "individual", @@ -3278,6 +3491,7 @@ "url": "https://www.buymeacoffee.com/ricmoo" } ], + "license": "MIT", "dependencies": { "@ethersproject/bignumber": "^5.7.0", "@ethersproject/constants": "^5.7.0", @@ -3286,8 +3500,6 @@ }, "node_modules/@ethersproject/wallet": { "version": "5.7.0", - "resolved": "https://registry.npmjs.org/@ethersproject/wallet/-/wallet-5.7.0.tgz", - "integrity": "sha512-MhmXlJXEJFBFVKrDLB4ZdDzxcBxQ3rLyCkhNqVu3CDYvR97E+8r01UgrI+TI99Le+aYm/in/0vp86guJuM7FCA==", "funding": [ { "type": "individual", @@ -3298,6 +3510,7 @@ "url": "https://www.buymeacoffee.com/ricmoo" } ], + "license": "MIT", "dependencies": { "@ethersproject/abstract-provider": "^5.7.0", "@ethersproject/abstract-signer": "^5.7.0", @@ -3318,8 +3531,6 @@ }, "node_modules/@ethersproject/web": { "version": "5.7.1", - "resolved": "https://registry.npmjs.org/@ethersproject/web/-/web-5.7.1.tgz", - "integrity": "sha512-Gueu8lSvyjBWL4cYsWsjh6MtMwM0+H4HvqFPZfB6dV8ctbP9zFAO73VG1cMWae0FLPCtz0peKPpZY8/ugJJX2w==", "funding": [ { "type": "individual", @@ -3330,6 +3541,7 @@ "url": "https://www.buymeacoffee.com/ricmoo" } ], + "license": "MIT", "dependencies": { "@ethersproject/base64": "^5.7.0", "@ethersproject/bytes": "^5.7.0", @@ -3340,8 +3552,6 @@ }, "node_modules/@ethersproject/wordlists": { "version": "5.7.0", - "resolved": "https://registry.npmjs.org/@ethersproject/wordlists/-/wordlists-5.7.0.tgz", - "integrity": "sha512-S2TFNJNfHWVHNE6cNDjbVlZ6MgE17MIxMbMg2zv3wn+3XSJGosL1m9ZVv3GXCf/2ymSsQ+hRI5IzoMJTG6aoVA==", "funding": [ { "type": "individual", @@ -3352,6 +3562,7 @@ "url": "https://www.buymeacoffee.com/ricmoo" } ], + "license": "MIT", "dependencies": { "@ethersproject/bytes": "^5.7.0", "@ethersproject/hash": "^5.7.0", @@ -3360,38 +3571,74 @@ "@ethersproject/strings": "^5.7.0" } }, + "node_modules/@floating-ui/core": { + "version": "1.4.1", + "license": "MIT", + "dependencies": { + "@floating-ui/utils": "^0.1.1" + } + }, + "node_modules/@floating-ui/dom": { + "version": "1.5.1", + "license": "MIT", + "dependencies": { + "@floating-ui/core": "^1.4.1", + "@floating-ui/utils": "^0.1.1" + } + }, + "node_modules/@floating-ui/react-dom": { + "version": "2.0.1", + "license": "MIT", + "dependencies": { + "@floating-ui/dom": "^1.3.0" + }, + "peerDependencies": { + "react": ">=16.8.0", + "react-dom": ">=16.8.0" + } + }, + "node_modules/@floating-ui/utils": { + "version": "0.1.1", + "license": "MIT" + }, "node_modules/@fontsource/ibm-plex-mono": { "version": "4.5.13", - "resolved": "https://registry.npmjs.org/@fontsource/ibm-plex-mono/-/ibm-plex-mono-4.5.13.tgz", - "integrity": "sha512-KAE7X2LgCV4X6p7vj1h2phRnhPX4YUa8FBAB0Jj9xW7Q+p+k2ce4HEAMJJ2RFHI075ClgQx+KZuDBNuiKgp5yw==" + "license": "MIT" }, "node_modules/@fontsource/inter": { "version": "4.5.15", - "resolved": "https://registry.npmjs.org/@fontsource/inter/-/inter-4.5.15.tgz", - "integrity": "sha512-FzleM9AxZQK2nqsTDtBiY0PMEVWvnKnuu2i09+p6DHvrHsuucoV2j0tmw+kAT3L4hvsLdAIDv6MdGehsPIdT+Q==" + "license": "MIT" }, "node_modules/@humanwhocodes/config-array": { - "version": "0.9.5", - "resolved": "https://registry.npmjs.org/@humanwhocodes/config-array/-/config-array-0.9.5.tgz", - "integrity": "sha512-ObyMyWxZiCu/yTisA7uzx81s40xR2fD5Cg/2Kq7G02ajkNubJf6BopgDTmDyc3U7sXpNKM8cYOw7s7Tyr+DnCw==", + "version": "0.11.10", + "license": "Apache-2.0", "dependencies": { "@humanwhocodes/object-schema": "^1.2.1", "debug": "^4.1.1", - "minimatch": "^3.0.4" + "minimatch": "^3.0.5" }, "engines": { "node": ">=10.10.0" } }, + "node_modules/@humanwhocodes/module-importer": { + "version": "1.0.1", + "license": "Apache-2.0", + "engines": { + "node": ">=12.22" + }, + "funding": { + "type": "github", + "url": "https://github.com/sponsors/nzakas" + } + }, "node_modules/@humanwhocodes/object-schema": { "version": "1.2.1", - "resolved": "https://registry.npmjs.org/@humanwhocodes/object-schema/-/object-schema-1.2.1.tgz", - "integrity": "sha512-ZnQMnLV4e7hDlUvw8H+U8ASL02SS2Gn6+9Ac3wGGLIe7+je2AeAOxPY+izIPJDfFDb7eDjev0Us8MO1iFRN8hA==" + "license": "BSD-3-Clause" }, "node_modules/@istanbuljs/load-nyc-config": { "version": "1.1.0", - "resolved": "https://registry.npmjs.org/@istanbuljs/load-nyc-config/-/load-nyc-config-1.1.0.tgz", - "integrity": "sha512-VjeHSlIzpv/NyD3N0YuHfXOPDIixcA1q2ZV98wsMqcYlPmv2n3Yb2lYP9XMElnaFVXg5A7YLTeLu6V84uQDjmQ==", + "license": "ISC", "dependencies": { "camelcase": "^5.3.1", "find-up": "^4.1.0", @@ -3405,16 +3652,14 @@ }, "node_modules/@istanbuljs/load-nyc-config/node_modules/camelcase": { "version": "5.3.1", - "resolved": "https://registry.npmjs.org/camelcase/-/camelcase-5.3.1.tgz", - "integrity": "sha512-L28STB170nwWS63UjtlEOE3dldQApaJXZkOI1uMFfzf3rRuPegHaHesyee+YxQ+W6SvRDQV6UrdOdRiR153wJg==", + "license": "MIT", "engines": { "node": ">=6" } }, "node_modules/@istanbuljs/load-nyc-config/node_modules/find-up": { "version": "4.1.0", - "resolved": "https://registry.npmjs.org/find-up/-/find-up-4.1.0.tgz", - "integrity": "sha512-PpOwAdQ/YlXQ2vj8a3h8IipDuYRi3wceVQQGYWxNINccq40Anw7BlsEXCMbt1Zt+OLA6Fq9suIpIWD0OsnISlw==", + "license": "MIT", "dependencies": { "locate-path": "^5.0.0", "path-exists": "^4.0.0" @@ -3425,8 +3670,7 @@ }, "node_modules/@istanbuljs/load-nyc-config/node_modules/locate-path": { "version": "5.0.0", - "resolved": "https://registry.npmjs.org/locate-path/-/locate-path-5.0.0.tgz", - "integrity": "sha512-t7hw9pI+WvuwNJXwk5zVHpyhIqzg2qTlklJOf0mVxGSbe3Fp2VieZcduNYjaLDoy6p9uGpQEGWG87WpMKlNq8g==", + "license": "MIT", "dependencies": { "p-locate": "^4.1.0" }, @@ -3436,8 +3680,7 @@ }, "node_modules/@istanbuljs/load-nyc-config/node_modules/p-limit": { "version": "2.3.0", - "resolved": "https://registry.npmjs.org/p-limit/-/p-limit-2.3.0.tgz", - "integrity": "sha512-//88mFWSJx8lxCzwdAABTJL2MyWB12+eIY7MDL2SqLmAkeKU9qxRvWuSyTjm3FUmpBEMuFfckAIqEaVGUDxb6w==", + "license": "MIT", "dependencies": { "p-try": "^2.0.0" }, @@ -3450,8 +3693,7 @@ }, "node_modules/@istanbuljs/load-nyc-config/node_modules/p-locate": { "version": "4.1.0", - "resolved": "https://registry.npmjs.org/p-locate/-/p-locate-4.1.0.tgz", - "integrity": "sha512-R79ZZ/0wAxKGu3oYMlz8jy/kbhsNrS7SKZ7PxEHBgJ5+F2mtFW2fK2cOtBh1cHYkQsbzFV7I+EoRKe6Yt0oK7A==", + "license": "MIT", "dependencies": { "p-limit": "^2.2.0" }, @@ -3459,18 +3701,23 @@ "node": ">=8" } }, + "node_modules/@istanbuljs/load-nyc-config/node_modules/resolve-from": { + "version": "5.0.0", + "license": "MIT", + "engines": { + "node": ">=8" + } + }, "node_modules/@istanbuljs/schema": { "version": "0.1.3", - "resolved": "https://registry.npmjs.org/@istanbuljs/schema/-/schema-0.1.3.tgz", - "integrity": "sha512-ZXRY4jNvVgSVQ8DL3LTcakaAtXwTVUxE81hslsyD2AtoXW/wVob10HkOJ1X/pAlcI7D+2YoZKg5do8G/w6RYgA==", + "license": "MIT", "engines": { "node": ">=8" } }, "node_modules/@jest/console": { "version": "27.5.1", - "resolved": "https://registry.npmjs.org/@jest/console/-/console-27.5.1.tgz", - "integrity": "sha512-kZ/tNpS3NXn0mlXXXPNuDZnb4c0oZ20r4K5eemM2k30ZC3G0T02nXUvyhf5YdbXWHPEJLc9qGLxEZ216MdL+Zg==", + "license": "MIT", "dependencies": { "@jest/types": "^27.5.1", "@types/node": "*", @@ -3483,74 +3730,9 @@ "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0" } }, - "node_modules/@jest/console/node_modules/ansi-styles": { - "version": "4.3.0", - "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", - "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", - "dependencies": { - "color-convert": "^2.0.1" - }, - "engines": { - "node": ">=8" - }, - "funding": { - "url": "https://github.com/chalk/ansi-styles?sponsor=1" - } - }, - "node_modules/@jest/console/node_modules/chalk": { - "version": "4.1.2", - "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz", - "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==", - "dependencies": { - "ansi-styles": "^4.1.0", - "supports-color": "^7.1.0" - }, - "engines": { - "node": ">=10" - }, - "funding": { - "url": "https://github.com/chalk/chalk?sponsor=1" - } - }, - "node_modules/@jest/console/node_modules/color-convert": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz", - "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==", - "dependencies": { - "color-name": "~1.1.4" - }, - "engines": { - "node": ">=7.0.0" - } - }, - "node_modules/@jest/console/node_modules/color-name": { - "version": "1.1.4", - "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz", - "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==" - }, - "node_modules/@jest/console/node_modules/has-flag": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz", - "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==", - "engines": { - "node": ">=8" - } - }, - "node_modules/@jest/console/node_modules/supports-color": { - "version": "7.2.0", - "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", - "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", - "dependencies": { - "has-flag": "^4.0.0" - }, - "engines": { - "node": ">=8" - } - }, - "node_modules/@jest/core": { - "version": "27.5.1", - "resolved": "https://registry.npmjs.org/@jest/core/-/core-27.5.1.tgz", - "integrity": "sha512-AK6/UTrvQD0Cd24NSqmIA6rKsu0tKIxfiCducZvqxYdmMisOYAsdItspT+fQDQYARPf8XgjAFZi0ogW2agH5nQ==", + "node_modules/@jest/core": { + "version": "27.5.1", + "license": "MIT", "dependencies": { "@jest/console": "^27.5.1", "@jest/reporters": "^27.5.1", @@ -3593,74 +3775,9 @@ } } }, - "node_modules/@jest/core/node_modules/ansi-styles": { - "version": "4.3.0", - "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", - "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", - "dependencies": { - "color-convert": "^2.0.1" - }, - "engines": { - "node": ">=8" - }, - "funding": { - "url": "https://github.com/chalk/ansi-styles?sponsor=1" - } - }, - "node_modules/@jest/core/node_modules/chalk": { - "version": "4.1.2", - "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz", - "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==", - "dependencies": { - "ansi-styles": "^4.1.0", - "supports-color": "^7.1.0" - }, - "engines": { - "node": ">=10" - }, - "funding": { - "url": "https://github.com/chalk/chalk?sponsor=1" - } - }, - "node_modules/@jest/core/node_modules/color-convert": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz", - "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==", - "dependencies": { - "color-name": "~1.1.4" - }, - "engines": { - "node": ">=7.0.0" - } - }, - "node_modules/@jest/core/node_modules/color-name": { - "version": "1.1.4", - "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz", - "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==" - }, - "node_modules/@jest/core/node_modules/has-flag": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz", - "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==", - "engines": { - "node": ">=8" - } - }, - "node_modules/@jest/core/node_modules/supports-color": { - "version": "7.2.0", - "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", - "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", - "dependencies": { - "has-flag": "^4.0.0" - }, - "engines": { - "node": ">=8" - } - }, "node_modules/@jest/environment": { "version": "27.5.1", - "resolved": "https://registry.npmjs.org/@jest/environment/-/environment-27.5.1.tgz", - "integrity": "sha512-/WQjhPJe3/ghaol/4Bq480JKXV/Rfw8nQdN7f41fM8VDHLcxKXou6QyXAh3EFr9/bVG3x74z1NWDkP87EiY8gA==", + "license": "MIT", "dependencies": { "@jest/fake-timers": "^27.5.1", "@jest/types": "^27.5.1", @@ -3673,8 +3790,7 @@ }, "node_modules/@jest/fake-timers": { "version": "27.5.1", - "resolved": "https://registry.npmjs.org/@jest/fake-timers/-/fake-timers-27.5.1.tgz", - "integrity": "sha512-/aPowoolwa07k7/oM3aASneNeBGCmGQsc3ugN4u6s4C/+s5M64MFo/+djTdiwcbQlRfFElGuDXWzaWj6QgKObQ==", + "license": "MIT", "dependencies": { "@jest/types": "^27.5.1", "@sinonjs/fake-timers": "^8.0.1", @@ -3689,8 +3805,7 @@ }, "node_modules/@jest/globals": { "version": "27.5.1", - "resolved": "https://registry.npmjs.org/@jest/globals/-/globals-27.5.1.tgz", - "integrity": "sha512-ZEJNB41OBQQgGzgyInAv0UUfDDj3upmHydjieSxFvTRuZElrx7tXg/uVQ5hYVEwiXs3+aMsAeEc9X7xiSKCm4Q==", + "license": "MIT", "dependencies": { "@jest/environment": "^27.5.1", "@jest/types": "^27.5.1", @@ -3702,8 +3817,7 @@ }, "node_modules/@jest/reporters": { "version": "27.5.1", - "resolved": "https://registry.npmjs.org/@jest/reporters/-/reporters-27.5.1.tgz", - "integrity": "sha512-cPXh9hWIlVJMQkVk84aIvXuBB4uQQmFqZiacloFuGiP3ah1sbCxCosidXFDfqG8+6fO1oR2dTJTlsOy4VFmUfw==", + "license": "MIT", "dependencies": { "@bcoe/v8-coverage": "^0.2.3", "@jest/console": "^27.5.1", @@ -3743,84 +3857,18 @@ } } }, - "node_modules/@jest/reporters/node_modules/ansi-styles": { - "version": "4.3.0", - "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", - "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", - "dependencies": { - "color-convert": "^2.0.1" - }, - "engines": { - "node": ">=8" - }, - "funding": { - "url": "https://github.com/chalk/ansi-styles?sponsor=1" - } - }, - "node_modules/@jest/reporters/node_modules/chalk": { - "version": "4.1.2", - "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz", - "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==", - "dependencies": { - "ansi-styles": "^4.1.0", - "supports-color": "^7.1.0" - }, - "engines": { - "node": ">=10" - }, - "funding": { - "url": "https://github.com/chalk/chalk?sponsor=1" - } - }, - "node_modules/@jest/reporters/node_modules/color-convert": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz", - "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==", - "dependencies": { - "color-name": "~1.1.4" - }, - "engines": { - "node": ">=7.0.0" - } - }, - "node_modules/@jest/reporters/node_modules/color-name": { - "version": "1.1.4", - "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz", - "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==" - }, - "node_modules/@jest/reporters/node_modules/has-flag": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz", - "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==", - "engines": { - "node": ">=8" - } - }, "node_modules/@jest/reporters/node_modules/source-map": { "version": "0.6.1", - "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz", - "integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==", + "license": "BSD-3-Clause", "engines": { "node": ">=0.10.0" } }, - "node_modules/@jest/reporters/node_modules/supports-color": { - "version": "7.2.0", - "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", - "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", - "dependencies": { - "has-flag": "^4.0.0" - }, - "engines": { - "node": ">=8" - } - }, "node_modules/@jest/schemas": { - "version": "28.0.2", - "resolved": "https://registry.npmjs.org/@jest/schemas/-/schemas-28.0.2.tgz", - "integrity": "sha512-YVDJZjd4izeTDkij00vHHAymNXQ6WWsdChFRK86qck6Jpr3DCL5W3Is3vslviRlP+bLuMYRLbdp98amMvqudhA==", + "version": "28.1.3", + "license": "MIT", "dependencies": { - "@sinclair/typebox": "^0.23.3" + "@sinclair/typebox": "^0.24.1" }, "engines": { "node": "^12.13.0 || ^14.15.0 || ^16.10.0 || >=17.0.0" @@ -3828,8 +3876,7 @@ }, "node_modules/@jest/source-map": { "version": "27.5.1", - "resolved": "https://registry.npmjs.org/@jest/source-map/-/source-map-27.5.1.tgz", - "integrity": "sha512-y9NIHUYF3PJRlHk98NdC/N1gl88BL08aQQgu4k4ZopQkCw9t9cV8mtl3TV8b/YCB8XaVTFrmUTAJvjsntDireg==", + "license": "MIT", "dependencies": { "callsites": "^3.0.0", "graceful-fs": "^4.2.9", @@ -3841,16 +3888,14 @@ }, "node_modules/@jest/source-map/node_modules/source-map": { "version": "0.6.1", - "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz", - "integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==", + "license": "BSD-3-Clause", "engines": { "node": ">=0.10.0" } }, "node_modules/@jest/test-result": { "version": "27.5.1", - "resolved": "https://registry.npmjs.org/@jest/test-result/-/test-result-27.5.1.tgz", - "integrity": "sha512-EW35l2RYFUcUQxFJz5Cv5MTOxlJIQs4I7gxzi2zVU7PJhOwfYq1MdC5nhSmYjX1gmMmLPvB3sIaC+BkcHRBfag==", + "license": "MIT", "dependencies": { "@jest/console": "^27.5.1", "@jest/types": "^27.5.1", @@ -3863,8 +3908,7 @@ }, "node_modules/@jest/test-sequencer": { "version": "27.5.1", - "resolved": "https://registry.npmjs.org/@jest/test-sequencer/-/test-sequencer-27.5.1.tgz", - "integrity": "sha512-LCheJF7WB2+9JuCS7VB/EmGIdQuhtqjRNI9A43idHv3E4KltCTsPsLxvdaubFHSYwY/fNjMWjl6vNRhDiN7vpQ==", + "license": "MIT", "dependencies": { "@jest/test-result": "^27.5.1", "graceful-fs": "^4.2.9", @@ -3877,8 +3921,7 @@ }, "node_modules/@jest/transform": { "version": "27.5.1", - "resolved": "https://registry.npmjs.org/@jest/transform/-/transform-27.5.1.tgz", - "integrity": "sha512-ipON6WtYgl/1329g5AIJVbUuEh0wZVbdpGwC99Jw4LwuoBNS95MVphU6zOeD9pDkon+LLbFL7lOQRapbB8SCHw==", + "license": "MIT", "dependencies": { "@babel/core": "^7.1.0", "@jest/types": "^27.5.1", @@ -3900,82 +3943,16 @@ "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0" } }, - "node_modules/@jest/transform/node_modules/ansi-styles": { - "version": "4.3.0", - "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", - "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", - "dependencies": { - "color-convert": "^2.0.1" - }, - "engines": { - "node": ">=8" - }, - "funding": { - "url": "https://github.com/chalk/ansi-styles?sponsor=1" - } - }, - "node_modules/@jest/transform/node_modules/chalk": { - "version": "4.1.2", - "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz", - "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==", - "dependencies": { - "ansi-styles": "^4.1.0", - "supports-color": "^7.1.0" - }, - "engines": { - "node": ">=10" - }, - "funding": { - "url": "https://github.com/chalk/chalk?sponsor=1" - } - }, - "node_modules/@jest/transform/node_modules/color-convert": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz", - "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==", - "dependencies": { - "color-name": "~1.1.4" - }, - "engines": { - "node": ">=7.0.0" - } - }, - "node_modules/@jest/transform/node_modules/color-name": { - "version": "1.1.4", - "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz", - "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==" - }, - "node_modules/@jest/transform/node_modules/has-flag": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz", - "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==", - "engines": { - "node": ">=8" - } - }, "node_modules/@jest/transform/node_modules/source-map": { "version": "0.6.1", - "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz", - "integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==", + "license": "BSD-3-Clause", "engines": { "node": ">=0.10.0" } }, - "node_modules/@jest/transform/node_modules/supports-color": { - "version": "7.2.0", - "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", - "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", - "dependencies": { - "has-flag": "^4.0.0" - }, - "engines": { - "node": ">=8" - } - }, "node_modules/@jest/types": { "version": "27.5.1", - "resolved": "https://registry.npmjs.org/@jest/types/-/types-27.5.1.tgz", - "integrity": "sha512-Cx46iJ9QpwQTjIdq5VJu2QTMMs3QlEjI0x1QbBP5W1+nMzyc2XmimiRR/CbX9TO0cPTeUlxWMOu8mslYsJ8DEw==", + "license": "MIT", "dependencies": { "@types/istanbul-lib-coverage": "^2.0.0", "@types/istanbul-reports": "^3.0.0", @@ -3987,74 +3964,9 @@ "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0" } }, - "node_modules/@jest/types/node_modules/ansi-styles": { - "version": "4.3.0", - "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", - "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", - "dependencies": { - "color-convert": "^2.0.1" - }, - "engines": { - "node": ">=8" - }, - "funding": { - "url": "https://github.com/chalk/ansi-styles?sponsor=1" - } - }, - "node_modules/@jest/types/node_modules/chalk": { - "version": "4.1.2", - "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz", - "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==", - "dependencies": { - "ansi-styles": "^4.1.0", - "supports-color": "^7.1.0" - }, - "engines": { - "node": ">=10" - }, - "funding": { - "url": "https://github.com/chalk/chalk?sponsor=1" - } - }, - "node_modules/@jest/types/node_modules/color-convert": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz", - "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==", - "dependencies": { - "color-name": "~1.1.4" - }, - "engines": { - "node": ">=7.0.0" - } - }, - "node_modules/@jest/types/node_modules/color-name": { - "version": "1.1.4", - "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz", - "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==" - }, - "node_modules/@jest/types/node_modules/has-flag": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz", - "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==", - "engines": { - "node": ">=8" - } - }, - "node_modules/@jest/types/node_modules/supports-color": { - "version": "7.2.0", - "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", - "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", - "dependencies": { - "has-flag": "^4.0.0" - }, - "engines": { - "node": ">=8" - } - }, "node_modules/@jimp/bmp": { "version": "0.16.13", - "resolved": "https://registry.npmjs.org/@jimp/bmp/-/bmp-0.16.13.tgz", - "integrity": "sha512-9edAxu7N2FX7vzkdl5Jo1BbACfycUtBQX+XBMcHA2bk62P8R0otgkHg798frgAk/WxQIzwxqOH6wMiCwrlAzdQ==", + "license": "MIT", "dependencies": { "@babel/runtime": "^7.7.2", "@jimp/utils": "^0.16.13", @@ -4066,8 +3978,7 @@ }, "node_modules/@jimp/core": { "version": "0.16.13", - "resolved": "https://registry.npmjs.org/@jimp/core/-/core-0.16.13.tgz", - "integrity": "sha512-qXpA1tzTnlkTku9yqtuRtS/wVntvE6f3m3GNxdTdtmc+O+Wcg9Xo2ABPMh7Nc0AHbMKzwvwgB2JnjZmlmJEObg==", + "license": "MIT", "dependencies": { "@babel/runtime": "^7.7.2", "@jimp/utils": "^0.16.13", @@ -4084,8 +3995,6 @@ }, "node_modules/@jimp/core/node_modules/buffer": { "version": "5.7.1", - "resolved": "https://registry.npmjs.org/buffer/-/buffer-5.7.1.tgz", - "integrity": "sha512-EHcyIPBQ4BSGlvjB16k5KgAJ27CIsHY/2JBmCRReo48y9rQ3MaUzWX3KVlBa4U7MyX02HdVj0K7C3WaB3ju7FQ==", "funding": [ { "type": "github", @@ -4100,6 +4009,7 @@ "url": "https://feross.org/support" } ], + "license": "MIT", "dependencies": { "base64-js": "^1.3.1", "ieee754": "^1.1.13" @@ -4107,8 +4017,7 @@ }, "node_modules/@jimp/custom": { "version": "0.16.13", - "resolved": "https://registry.npmjs.org/@jimp/custom/-/custom-0.16.13.tgz", - "integrity": "sha512-LTATglVUPGkPf15zX1wTMlZ0+AU7cGEGF6ekVF1crA8eHUWsGjrYTB+Ht4E3HTrCok8weQG+K01rJndCp/l4XA==", + "license": "MIT", "dependencies": { "@babel/runtime": "^7.7.2", "@jimp/core": "^0.16.13" @@ -4116,8 +4025,7 @@ }, "node_modules/@jimp/gif": { "version": "0.16.13", - "resolved": "https://registry.npmjs.org/@jimp/gif/-/gif-0.16.13.tgz", - "integrity": "sha512-yFAMZGv3o+YcjXilMWWwS/bv1iSqykFahFMSO169uVMtfQVfa90kt4/kDwrXNR6Q9i6VHpFiGZMlF2UnHClBvg==", + "license": "MIT", "dependencies": { "@babel/runtime": "^7.7.2", "@jimp/utils": "^0.16.13", @@ -4130,8 +4038,7 @@ }, "node_modules/@jimp/jpeg": { "version": "0.16.13", - "resolved": "https://registry.npmjs.org/@jimp/jpeg/-/jpeg-0.16.13.tgz", - "integrity": "sha512-BJHlDxzTlCqP2ThqP8J0eDrbBfod7npWCbJAcfkKqdQuFk0zBPaZ6KKaQKyKxmWJ87Z6ohANZoMKEbtvrwz1AA==", + "license": "MIT", "dependencies": { "@babel/runtime": "^7.7.2", "@jimp/utils": "^0.16.13", @@ -4143,8 +4050,7 @@ }, "node_modules/@jimp/plugin-resize": { "version": "0.16.13", - "resolved": "https://registry.npmjs.org/@jimp/plugin-resize/-/plugin-resize-0.16.13.tgz", - "integrity": "sha512-qoqtN8LDknm3fJm9nuPygJv30O3vGhSBD2TxrsCnhtOsxKAqVPJtFVdGd/qVuZ8nqQANQmTlfqTiK9mVWQ7MiQ==", + "license": "MIT", "dependencies": { "@babel/runtime": "^7.7.2", "@jimp/utils": "^0.16.13" @@ -4155,8 +4061,7 @@ }, "node_modules/@jimp/png": { "version": "0.16.13", - "resolved": "https://registry.npmjs.org/@jimp/png/-/png-0.16.13.tgz", - "integrity": "sha512-8cGqINvbWJf1G0Her9zbq9I80roEX0A+U45xFby3tDWfzn+Zz8XKDF1Nv9VUwVx0N3zpcG1RPs9hfheG4Cq2kg==", + "license": "MIT", "dependencies": { "@babel/runtime": "^7.7.2", "@jimp/utils": "^0.16.13", @@ -4168,8 +4073,7 @@ }, "node_modules/@jimp/tiff": { "version": "0.16.13", - "resolved": "https://registry.npmjs.org/@jimp/tiff/-/tiff-0.16.13.tgz", - "integrity": "sha512-oJY8d9u95SwW00VPHuCNxPap6Q1+E/xM5QThb9Hu+P6EGuu6lIeLaNBMmFZyblwFbwrH+WBOZlvIzDhi4Dm/6Q==", + "license": "MIT", "dependencies": { "@babel/runtime": "^7.7.2", "utif": "^2.0.1" @@ -4180,8 +4084,7 @@ }, "node_modules/@jimp/types": { "version": "0.16.13", - "resolved": "https://registry.npmjs.org/@jimp/types/-/types-0.16.13.tgz", - "integrity": "sha512-mC0yVNUobFDjoYLg4hoUwzMKgNlxynzwt3cDXzumGvRJ7Kb8qQGOWJQjQFo5OxmGExqzPphkirdbBF88RVLBCg==", + "license": "MIT", "dependencies": { "@babel/runtime": "^7.7.2", "@jimp/bmp": "^0.16.13", @@ -4197,86 +4100,69 @@ }, "node_modules/@jimp/utils": { "version": "0.16.13", - "resolved": "https://registry.npmjs.org/@jimp/utils/-/utils-0.16.13.tgz", - "integrity": "sha512-VyCpkZzFTHXtKgVO35iKN0sYR10psGpV6SkcSeV4oF7eSYlR8Bl6aQLCzVeFjvESF7mxTmIiI3/XrMobVrtxDA==", + "license": "MIT", "dependencies": { "@babel/runtime": "^7.7.2", "regenerator-runtime": "^0.13.3" } }, + "node_modules/@jimp/utils/node_modules/regenerator-runtime": { + "version": "0.13.11", + "license": "MIT" + }, "node_modules/@jridgewell/gen-mapping": { - "version": "0.1.1", - "resolved": "https://registry.npmjs.org/@jridgewell/gen-mapping/-/gen-mapping-0.1.1.tgz", - "integrity": "sha512-sQXCasFk+U8lWYEe66WxRDOE9PjVz4vSM51fTu3Hw+ClTpUSQb718772vH3pyS5pShp6lvQM7SxgIDXXXmOX7w==", + "version": "0.3.3", + "license": "MIT", "dependencies": { - "@jridgewell/set-array": "^1.0.0", - "@jridgewell/sourcemap-codec": "^1.4.10" + "@jridgewell/set-array": "^1.0.1", + "@jridgewell/sourcemap-codec": "^1.4.10", + "@jridgewell/trace-mapping": "^0.3.9" }, "engines": { "node": ">=6.0.0" } }, "node_modules/@jridgewell/resolve-uri": { - "version": "3.1.0", - "resolved": "https://registry.npmjs.org/@jridgewell/resolve-uri/-/resolve-uri-3.1.0.tgz", - "integrity": "sha512-F2msla3tad+Mfht5cJq7LSXcdudKTWCVYUgw6pLFOOHSTtZlj6SWNYAp+AhuqLmWdBO2X5hPrLcu8cVP8fy28w==", + "version": "3.1.1", + "license": "MIT", "engines": { "node": ">=6.0.0" } }, "node_modules/@jridgewell/set-array": { "version": "1.1.2", - "resolved": "https://registry.npmjs.org/@jridgewell/set-array/-/set-array-1.1.2.tgz", - "integrity": "sha512-xnkseuNADM0gt2bs+BvhO0p78Mk762YnZdsuzFV018NoG1Sj1SCQvpSqa7XUaTam5vAGasABV9qXASMKnFMwMw==", + "license": "MIT", "engines": { "node": ">=6.0.0" } }, "node_modules/@jridgewell/source-map": { - "version": "0.3.2", - "resolved": "https://registry.npmjs.org/@jridgewell/source-map/-/source-map-0.3.2.tgz", - "integrity": "sha512-m7O9o2uR8k2ObDysZYzdfhb08VuEml5oWGiosa1VdaPZ/A6QyPkAJuwN0Q1lhULOf6B7MtQmHENS743hWtCrgw==", + "version": "0.3.5", + "license": "MIT", "dependencies": { "@jridgewell/gen-mapping": "^0.3.0", "@jridgewell/trace-mapping": "^0.3.9" } }, - "node_modules/@jridgewell/source-map/node_modules/@jridgewell/gen-mapping": { - "version": "0.3.2", - "resolved": "https://registry.npmjs.org/@jridgewell/gen-mapping/-/gen-mapping-0.3.2.tgz", - "integrity": "sha512-mh65xKQAzI6iBcFzwv28KVWSmCkdRBWoOh+bYQGW3+6OZvbbN3TqMGo5hqYxQniRcH9F2VZIoJCm4pa3BPDK/A==", - "dependencies": { - "@jridgewell/set-array": "^1.0.1", - "@jridgewell/sourcemap-codec": "^1.4.10", - "@jridgewell/trace-mapping": "^0.3.9" - }, - "engines": { - "node": ">=6.0.0" - } - }, "node_modules/@jridgewell/sourcemap-codec": { - "version": "1.4.14", - "resolved": "https://registry.npmjs.org/@jridgewell/sourcemap-codec/-/sourcemap-codec-1.4.14.tgz", - "integrity": "sha512-XPSJHWmi394fuUuzDnGz1wiKqWfo1yXecHQMRf2l6hztTO+nPru658AyDngaBe7isIxEkRsPR3FZh+s7iVa4Uw==" + "version": "1.4.15", + "license": "MIT" }, "node_modules/@jridgewell/trace-mapping": { - "version": "0.3.18", - "resolved": "https://registry.npmjs.org/@jridgewell/trace-mapping/-/trace-mapping-0.3.18.tgz", - "integrity": "sha512-w+niJYzMHdd7USdiH2U6869nqhD2nbfZXND5Yp93qIbEmnDNk7PD48o+YchRVpzMU7M6jVCbenTR7PA1FLQ9pA==", + "version": "0.3.19", + "license": "MIT", "dependencies": { - "@jridgewell/resolve-uri": "3.1.0", - "@jridgewell/sourcemap-codec": "1.4.14" + "@jridgewell/resolve-uri": "^3.1.0", + "@jridgewell/sourcemap-codec": "^1.4.14" } }, "node_modules/@leichtgewicht/ip-codec": { "version": "2.0.4", - "resolved": "https://registry.npmjs.org/@leichtgewicht/ip-codec/-/ip-codec-2.0.4.tgz", - "integrity": "sha512-Hcv+nVC0kZnQ3tD9GVu5xSMR4VVYOteQIr/hwFPVEvPdlXqgGEuRjiheChHgdM+JyqdgNcmzZOX/tnl0JOiI7A==" + "license": "MIT" }, "node_modules/@metamask/eth-sig-util": { "version": "4.0.1", - "resolved": "https://registry.npmjs.org/@metamask/eth-sig-util/-/eth-sig-util-4.0.1.tgz", - "integrity": "sha512-tghyZKLHZjcdlDqCA3gNZmLeR0XvOE9U1qoQO9ohyAZT6Pya+H9vkBPcsyXytmYLNgVoin7CKCmweo/R43V+tQ==", + "license": "ISC", "peer": true, "dependencies": { "ethereumjs-abi": "^0.6.8", @@ -4290,18 +4176,18 @@ } }, "node_modules/@mui/base": { - "version": "5.0.0-alpha.87", - "resolved": "https://registry.npmjs.org/@mui/base/-/base-5.0.0-alpha.87.tgz", - "integrity": "sha512-PuxRYrvG63Yj/UTwf4hSwZ5ClMv88iXHK+5hUV1CrG3kNPo6FFQiIFNRaNpRt/3nsXj6+xygJByNFA8m4Leetg==", - "dependencies": { - "@babel/runtime": "^7.17.2", - "@emotion/is-prop-valid": "^1.1.2", - "@mui/types": "^7.1.4", - "@mui/utils": "^5.8.6", - "@popperjs/core": "^2.11.5", - "clsx": "^1.1.1", + "version": "5.0.0-beta.12", + "license": "MIT", + "dependencies": { + "@babel/runtime": "^7.22.10", + "@emotion/is-prop-valid": "^1.2.1", + "@floating-ui/react-dom": "^2.0.1", + "@mui/types": "^7.2.4", + "@mui/utils": "^5.14.6", + "@popperjs/core": "^2.11.8", + "clsx": "^2.0.0", "prop-types": "^15.8.1", - "react-is": "^17.0.2" + "react-is": "^18.2.0" }, "engines": { "node": ">=12.0.0" @@ -4321,22 +4207,31 @@ } } }, + "node_modules/@mui/core-downloads-tracker": { + "version": "5.14.6", + "license": "MIT", + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/mui" + } + }, "node_modules/@mui/material": { - "version": "5.8.6", - "resolved": "https://registry.npmjs.org/@mui/material/-/material-5.8.6.tgz", - "integrity": "sha512-9fo5AiNHs+HY5ArMzsDMFrAmJSRw90y/qu81oDIszgK7Bfrm8GuI7Eb0mO6WADWPEyKOzOov/WZsm4G6jPEM4g==", - "dependencies": { - "@babel/runtime": "^7.17.2", - "@mui/base": "5.0.0-alpha.87", - "@mui/system": "^5.8.6", - "@mui/types": "^7.1.4", - "@mui/utils": "^5.8.6", - "@types/react-transition-group": "^4.4.4", - "clsx": "^1.1.1", - "csstype": "^3.1.0", + "version": "5.14.6", + "resolved": "https://registry.npmjs.org/@mui/material/-/material-5.14.6.tgz", + "integrity": "sha512-C3UgGrmtvcGkQkm0ONBU7bTdapTjQc2Se3b2354xMmU7lgSgW7VM6EP9wIH5XqqoJ60m9l/s9kbTWX0Y+EaWvA==", + "dependencies": { + "@babel/runtime": "^7.22.10", + "@mui/base": "5.0.0-beta.12", + "@mui/core-downloads-tracker": "^5.14.6", + "@mui/system": "^5.14.6", + "@mui/types": "^7.2.4", + "@mui/utils": "^5.14.6", + "@types/react-transition-group": "^4.4.6", + "clsx": "^2.0.0", + "csstype": "^3.1.2", "prop-types": "^15.8.1", - "react-is": "^17.0.2", - "react-transition-group": "^4.4.2" + "react-is": "^18.2.0", + "react-transition-group": "^4.4.5" }, "engines": { "node": ">=12.0.0" @@ -4365,12 +4260,11 @@ } }, "node_modules/@mui/private-theming": { - "version": "5.8.6", - "resolved": "https://registry.npmjs.org/@mui/private-theming/-/private-theming-5.8.6.tgz", - "integrity": "sha512-yHsJk1qU9r/q0DlnxGRJPHyM0Y/nUv8FTNgDTiI9I58GWuVuZqeTUr7JRvPh6ybeP/FLtW5eXEavRK9wxVk4uQ==", + "version": "5.14.6", + "license": "MIT", "dependencies": { - "@babel/runtime": "^7.17.2", - "@mui/utils": "^5.8.6", + "@babel/runtime": "^7.22.10", + "@mui/utils": "^5.14.6", "prop-types": "^15.8.1" }, "engines": { @@ -4391,12 +4285,12 @@ } }, "node_modules/@mui/styled-engine": { - "version": "5.8.0", - "resolved": "https://registry.npmjs.org/@mui/styled-engine/-/styled-engine-5.8.0.tgz", - "integrity": "sha512-Q3spibB8/EgeMYHc+/o3RRTnAYkSl7ROCLhXJ830W8HZ2/iDiyYp16UcxKPurkXvLhUaILyofPVrP3Su2uKsAw==", + "version": "5.14.6", + "license": "MIT", "dependencies": { - "@babel/runtime": "^7.17.2", - "@emotion/cache": "^11.7.1", + "@babel/runtime": "^7.22.10", + "@emotion/cache": "^11.11.0", + "csstype": "^3.1.2", "prop-types": "^15.8.1" }, "engines": { @@ -4421,17 +4315,16 @@ } }, "node_modules/@mui/system": { - "version": "5.8.6", - "resolved": "https://registry.npmjs.org/@mui/system/-/system-5.8.6.tgz", - "integrity": "sha512-+a+rD58XltKQHDrrjcuCta2cUBqdnLDUDwnphSLCMFigRl8/uk+R+fdQRlMNRXAOgnMb8ioWIgfjxri5pmTH4A==", - "dependencies": { - "@babel/runtime": "^7.17.2", - "@mui/private-theming": "^5.8.6", - "@mui/styled-engine": "^5.8.0", - "@mui/types": "^7.1.4", - "@mui/utils": "^5.8.6", - "clsx": "^1.1.1", - "csstype": "^3.1.0", + "version": "5.14.6", + "license": "MIT", + "dependencies": { + "@babel/runtime": "^7.22.10", + "@mui/private-theming": "^5.14.6", + "@mui/styled-engine": "^5.14.6", + "@mui/types": "^7.2.4", + "@mui/utils": "^5.14.6", + "clsx": "^2.0.0", + "csstype": "^3.1.2", "prop-types": "^15.8.1" }, "engines": { @@ -4460,9 +4353,8 @@ } }, "node_modules/@mui/types": { - "version": "7.1.4", - "resolved": "https://registry.npmjs.org/@mui/types/-/types-7.1.4.tgz", - "integrity": "sha512-uveM3byMbthO+6tXZ1n2zm0W3uJCQYtwt/v5zV5I77v2v18u0ITkb8xwhsDD2i3V2Kye7SaNR6FFJ6lMuY/WqQ==", + "version": "7.2.4", + "license": "MIT", "peerDependencies": { "@types/react": "*" }, @@ -4473,15 +4365,14 @@ } }, "node_modules/@mui/utils": { - "version": "5.8.6", - "resolved": "https://registry.npmjs.org/@mui/utils/-/utils-5.8.6.tgz", - "integrity": "sha512-QM2Sd1xZo2jOt2Vz5Rmro+pi2FLJyiv4+OjxkUwXR3oUM65KSMAMLl/KNYU55s3W3DLRFP5MVwE4FhAbHseHAg==", + "version": "5.14.6", + "license": "MIT", "dependencies": { - "@babel/runtime": "^7.17.2", + "@babel/runtime": "^7.22.10", "@types/prop-types": "^15.7.5", - "@types/react-is": "^16.7.1 || ^17.0.0", + "@types/react-is": "^18.2.1", "prop-types": "^15.8.1", - "react-is": "^17.0.2" + "react-is": "^18.2.0" }, "engines": { "node": ">=12.0.0" @@ -4496,35 +4387,74 @@ }, "node_modules/@multiformats/base-x": { "version": "4.0.1", - "resolved": "https://registry.npmjs.org/@multiformats/base-x/-/base-x-4.0.1.tgz", - "integrity": "sha512-eMk0b9ReBbV23xXU693TAIrLyeO5iTgBZGSJfpqriG8UkYvr/hC9u9pyMlAakDNHWmbhMZCDs6KQO0jzKD8OTw==" + "license": "MIT" }, - "node_modules/@noble/hashes": { - "version": "1.1.1", - "resolved": "https://registry.npmjs.org/@noble/hashes/-/hashes-1.1.1.tgz", - "integrity": "sha512-Lkp9+NijmV7eSVZqiUvt3UCuuHeJpUVmRrvh430gyJjJiuJMqkeHf6/A9lQ/smmbWV/0spDeJscscPzyB4waZg==", - "funding": [ - { - "type": "individual", - "url": "https://paulmillr.com/funding/" - } - ] + "node_modules/@nicolo-ribaudo/chokidar-2": { + "version": "2.1.8-no-fsevents.3", + "license": "MIT", + "optional": true }, - "node_modules/@noble/secp256k1": { - "version": "1.6.0", - "resolved": "https://registry.npmjs.org/@noble/secp256k1/-/secp256k1-1.6.0.tgz", - "integrity": "sha512-DWSsg8zMHOYMYBqIQi96BQuthZrp98LCeMNcUOaffCIVYQ5yxDbNikLF+H7jEnmNNmXbtVic46iCuVWzar+MgA==", + "node_modules/@nicolo-ribaudo/eslint-scope-5-internals": { + "version": "5.1.1-v1", + "license": "MIT", + "dependencies": { + "eslint-scope": "5.1.1" + } + }, + "node_modules/@nicolo-ribaudo/eslint-scope-5-internals/node_modules/eslint-scope": { + "version": "5.1.1", + "license": "BSD-2-Clause", + "dependencies": { + "esrecurse": "^4.3.0", + "estraverse": "^4.1.1" + }, + "engines": { + "node": ">=8.0.0" + } + }, + "node_modules/@nicolo-ribaudo/eslint-scope-5-internals/node_modules/estraverse": { + "version": "4.3.0", + "license": "BSD-2-Clause", + "engines": { + "node": ">=4.0" + } + }, + "node_modules/@noble/curves": { + "version": "1.0.0", + "funding": [ + { + "type": "individual", + "url": "https://paulmillr.com/funding/" + } + ], + "license": "MIT", + "dependencies": { + "@noble/hashes": "1.3.0" + } + }, + "node_modules/@noble/hashes": { + "version": "1.3.0", + "funding": [ + { + "type": "individual", + "url": "https://paulmillr.com/funding/" + } + ], + "license": "MIT" + }, + "node_modules/@noble/secp256k1": { + "version": "1.7.1", "funding": [ { "type": "individual", "url": "https://paulmillr.com/funding/" } - ] + ], + "license": "MIT" }, "node_modules/@nodelib/fs.scandir": { "version": "2.1.5", - "resolved": "https://registry.npmjs.org/@nodelib/fs.scandir/-/fs.scandir-2.1.5.tgz", - "integrity": "sha512-vq24Bq3ym5HEQm2NKCr3yXDwjc7vTsEThRDnkp2DK9p1uqLR+DHurm/NOTo0KG7HYHU7eppKZj3MyqYuMBf62g==", + "license": "MIT", "dependencies": { "@nodelib/fs.stat": "2.0.5", "run-parallel": "^1.1.9" @@ -4535,16 +4465,14 @@ }, "node_modules/@nodelib/fs.stat": { "version": "2.0.5", - "resolved": "https://registry.npmjs.org/@nodelib/fs.stat/-/fs.stat-2.0.5.tgz", - "integrity": "sha512-RkhPPp2zrqDAQA/2jNhnztcPAlv64XdhIp7a7454A5ovI7Bukxgt7MX7udwAu3zg1DcpPU0rz3VV1SeaqvY4+A==", + "license": "MIT", "engines": { "node": ">= 8" } }, "node_modules/@nodelib/fs.walk": { "version": "1.2.8", - "resolved": "https://registry.npmjs.org/@nodelib/fs.walk/-/fs.walk-1.2.8.tgz", - "integrity": "sha512-oGB+UxlgWcgQkgwo8GcEGwemoTFt3FIO9ababBmaGwXIoBKZ+GTy0pP185beGg7Llih/NSHSV2XAs1lnznocSg==", + "license": "MIT", "dependencies": { "@nodelib/fs.scandir": "2.1.5", "fastq": "^1.6.0" @@ -4555,8 +4483,7 @@ }, "node_modules/@nomicfoundation/ethereumjs-block": { "version": "5.0.1", - "resolved": "https://registry.npmjs.org/@nomicfoundation/ethereumjs-block/-/ethereumjs-block-5.0.1.tgz", - "integrity": "sha512-u1Yioemi6Ckj3xspygu/SfFvm8vZEO8/Yx5a1QLzi6nVU0jz3Pg2OmHKJ5w+D9Ogk1vhwRiqEBAqcb0GVhCyHw==", + "license": "MPL-2.0", "peer": true, "dependencies": { "@nomicfoundation/ethereumjs-common": "4.0.1", @@ -4573,8 +4500,7 @@ }, "node_modules/@nomicfoundation/ethereumjs-block/node_modules/ethereum-cryptography": { "version": "0.1.3", - "resolved": "https://registry.npmjs.org/ethereum-cryptography/-/ethereum-cryptography-0.1.3.tgz", - "integrity": "sha512-w8/4x1SGGzc+tO97TASLja6SLd3fRIK2tLVcV2Gx4IB21hE19atll5Cq9o3d0ZmAYC/8aw0ipieTSiekAea4SQ==", + "license": "MIT", "peer": true, "dependencies": { "@types/pbkdf2": "^3.0.0", @@ -4596,8 +4522,7 @@ }, "node_modules/@nomicfoundation/ethereumjs-blockchain": { "version": "7.0.1", - "resolved": "https://registry.npmjs.org/@nomicfoundation/ethereumjs-blockchain/-/ethereumjs-blockchain-7.0.1.tgz", - "integrity": "sha512-NhzndlGg829XXbqJEYrF1VeZhAwSPgsK/OB7TVrdzft3y918hW5KNd7gIZ85sn6peDZOdjBsAXIpXZ38oBYE5A==", + "license": "MPL-2.0", "peer": true, "dependencies": { "@nomicfoundation/ethereumjs-block": "5.0.1", @@ -4620,8 +4545,7 @@ }, "node_modules/@nomicfoundation/ethereumjs-blockchain/node_modules/ethereum-cryptography": { "version": "0.1.3", - "resolved": "https://registry.npmjs.org/ethereum-cryptography/-/ethereum-cryptography-0.1.3.tgz", - "integrity": "sha512-w8/4x1SGGzc+tO97TASLja6SLd3fRIK2tLVcV2Gx4IB21hE19atll5Cq9o3d0ZmAYC/8aw0ipieTSiekAea4SQ==", + "license": "MIT", "peer": true, "dependencies": { "@types/pbkdf2": "^3.0.0", @@ -4641,25 +4565,9 @@ "setimmediate": "^1.0.5" } }, - "node_modules/@nomicfoundation/ethereumjs-blockchain/node_modules/lru-cache": { - "version": "5.1.1", - "resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-5.1.1.tgz", - "integrity": "sha512-KpNARQA3Iwv+jTA0utUVVbrh+Jlrr1Fv0e56GGzAFOXN7dk/FviaDW8LHmK52DlcH4WP2n6gI8vN1aesBFgo9w==", - "peer": true, - "dependencies": { - "yallist": "^3.0.2" - } - }, - "node_modules/@nomicfoundation/ethereumjs-blockchain/node_modules/yallist": { - "version": "3.1.1", - "resolved": "https://registry.npmjs.org/yallist/-/yallist-3.1.1.tgz", - "integrity": "sha512-a4UGQaWPH59mOXUYnAG2ewncQS4i4F43Tv3JoAM+s2VDAmS9NsK8GpDMLrCHPksFT7h3K6TOoUNn2pb7RoXx4g==", - "peer": true - }, "node_modules/@nomicfoundation/ethereumjs-common": { "version": "4.0.1", - "resolved": "https://registry.npmjs.org/@nomicfoundation/ethereumjs-common/-/ethereumjs-common-4.0.1.tgz", - "integrity": "sha512-OBErlkfp54GpeiE06brBW/TTbtbuBJV5YI5Nz/aB2evTDo+KawyEzPjBlSr84z/8MFfj8wS2wxzQX1o32cev5g==", + "license": "MIT", "peer": true, "dependencies": { "@nomicfoundation/ethereumjs-util": "9.0.1", @@ -4668,8 +4576,7 @@ }, "node_modules/@nomicfoundation/ethereumjs-ethash": { "version": "3.0.1", - "resolved": "https://registry.npmjs.org/@nomicfoundation/ethereumjs-ethash/-/ethereumjs-ethash-3.0.1.tgz", - "integrity": "sha512-KDjGIB5igzWOp8Ik5I6QiRH5DH+XgILlplsHR7TEuWANZA759G6krQ6o8bvj+tRUz08YygMQu/sGd9mJ1DYT8w==", + "license": "MPL-2.0", "peer": true, "dependencies": { "@nomicfoundation/ethereumjs-block": "5.0.1", @@ -4685,8 +4592,7 @@ }, "node_modules/@nomicfoundation/ethereumjs-ethash/node_modules/ethereum-cryptography": { "version": "0.1.3", - "resolved": "https://registry.npmjs.org/ethereum-cryptography/-/ethereum-cryptography-0.1.3.tgz", - "integrity": "sha512-w8/4x1SGGzc+tO97TASLja6SLd3fRIK2tLVcV2Gx4IB21hE19atll5Cq9o3d0ZmAYC/8aw0ipieTSiekAea4SQ==", + "license": "MIT", "peer": true, "dependencies": { "@types/pbkdf2": "^3.0.0", @@ -4708,8 +4614,7 @@ }, "node_modules/@nomicfoundation/ethereumjs-evm": { "version": "2.0.1", - "resolved": "https://registry.npmjs.org/@nomicfoundation/ethereumjs-evm/-/ethereumjs-evm-2.0.1.tgz", - "integrity": "sha512-oL8vJcnk0Bx/onl+TgQOQ1t/534GKFaEG17fZmwtPFeH8S5soiBYPCLUrvANOl4sCp9elYxIMzIiTtMtNNN8EQ==", + "license": "MPL-2.0", "peer": true, "dependencies": { "@ethersproject/providers": "^5.7.1", @@ -4727,8 +4632,7 @@ }, "node_modules/@nomicfoundation/ethereumjs-evm/node_modules/ethereum-cryptography": { "version": "0.1.3", - "resolved": "https://registry.npmjs.org/ethereum-cryptography/-/ethereum-cryptography-0.1.3.tgz", - "integrity": "sha512-w8/4x1SGGzc+tO97TASLja6SLd3fRIK2tLVcV2Gx4IB21hE19atll5Cq9o3d0ZmAYC/8aw0ipieTSiekAea4SQ==", + "license": "MIT", "peer": true, "dependencies": { "@types/pbkdf2": "^3.0.0", @@ -4750,8 +4654,7 @@ }, "node_modules/@nomicfoundation/ethereumjs-rlp": { "version": "5.0.1", - "resolved": "https://registry.npmjs.org/@nomicfoundation/ethereumjs-rlp/-/ethereumjs-rlp-5.0.1.tgz", - "integrity": "sha512-xtxrMGa8kP4zF5ApBQBtjlSbN5E2HI8m8FYgVSYAnO6ssUoY5pVPGy2H8+xdf/bmMa22Ce8nWMH3aEW8CcqMeQ==", + "license": "MPL-2.0", "peer": true, "bin": { "rlp": "bin/rlp" @@ -4762,8 +4665,7 @@ }, "node_modules/@nomicfoundation/ethereumjs-statemanager": { "version": "2.0.1", - "resolved": "https://registry.npmjs.org/@nomicfoundation/ethereumjs-statemanager/-/ethereumjs-statemanager-2.0.1.tgz", - "integrity": "sha512-B5ApMOnlruVOR7gisBaYwFX+L/AP7i/2oAahatssjPIBVDF6wTX1K7Qpa39E/nzsH8iYuL3krkYeUFIdO3EMUQ==", + "license": "MPL-2.0", "peer": true, "dependencies": { "@nomicfoundation/ethereumjs-common": "4.0.1", @@ -4776,8 +4678,7 @@ }, "node_modules/@nomicfoundation/ethereumjs-statemanager/node_modules/ethereum-cryptography": { "version": "0.1.3", - "resolved": "https://registry.npmjs.org/ethereum-cryptography/-/ethereum-cryptography-0.1.3.tgz", - "integrity": "sha512-w8/4x1SGGzc+tO97TASLja6SLd3fRIK2tLVcV2Gx4IB21hE19atll5Cq9o3d0ZmAYC/8aw0ipieTSiekAea4SQ==", + "license": "MIT", "peer": true, "dependencies": { "@types/pbkdf2": "^3.0.0", @@ -4799,8 +4700,7 @@ }, "node_modules/@nomicfoundation/ethereumjs-trie": { "version": "6.0.1", - "resolved": "https://registry.npmjs.org/@nomicfoundation/ethereumjs-trie/-/ethereumjs-trie-6.0.1.tgz", - "integrity": "sha512-A64It/IMpDVODzCgxDgAAla8jNjNtsoQZIzZUfIV5AY6Coi4nvn7+VReBn5itlxMiL2yaTlQr9TRWp3CSI6VoA==", + "license": "MPL-2.0", "peer": true, "dependencies": { "@nomicfoundation/ethereumjs-rlp": "5.0.1", @@ -4815,8 +4715,7 @@ }, "node_modules/@nomicfoundation/ethereumjs-trie/node_modules/ethereum-cryptography": { "version": "0.1.3", - "resolved": "https://registry.npmjs.org/ethereum-cryptography/-/ethereum-cryptography-0.1.3.tgz", - "integrity": "sha512-w8/4x1SGGzc+tO97TASLja6SLd3fRIK2tLVcV2Gx4IB21hE19atll5Cq9o3d0ZmAYC/8aw0ipieTSiekAea4SQ==", + "license": "MIT", "peer": true, "dependencies": { "@types/pbkdf2": "^3.0.0", @@ -4838,8 +4737,7 @@ }, "node_modules/@nomicfoundation/ethereumjs-tx": { "version": "5.0.1", - "resolved": "https://registry.npmjs.org/@nomicfoundation/ethereumjs-tx/-/ethereumjs-tx-5.0.1.tgz", - "integrity": "sha512-0HwxUF2u2hrsIM1fsasjXvlbDOq1ZHFV2dd1yGq8CA+MEYhaxZr8OTScpVkkxqMwBcc5y83FyPl0J9MZn3kY0w==", + "license": "MPL-2.0", "peer": true, "dependencies": { "@chainsafe/ssz": "^0.9.2", @@ -4855,8 +4753,7 @@ }, "node_modules/@nomicfoundation/ethereumjs-tx/node_modules/ethereum-cryptography": { "version": "0.1.3", - "resolved": "https://registry.npmjs.org/ethereum-cryptography/-/ethereum-cryptography-0.1.3.tgz", - "integrity": "sha512-w8/4x1SGGzc+tO97TASLja6SLd3fRIK2tLVcV2Gx4IB21hE19atll5Cq9o3d0ZmAYC/8aw0ipieTSiekAea4SQ==", + "license": "MIT", "peer": true, "dependencies": { "@types/pbkdf2": "^3.0.0", @@ -4878,8 +4775,7 @@ }, "node_modules/@nomicfoundation/ethereumjs-util": { "version": "9.0.1", - "resolved": "https://registry.npmjs.org/@nomicfoundation/ethereumjs-util/-/ethereumjs-util-9.0.1.tgz", - "integrity": "sha512-TwbhOWQ8QoSCFhV/DDfSmyfFIHjPjFBj957219+V3jTZYZ2rf9PmDtNOeZWAE3p3vlp8xb02XGpd0v6nTUPbsA==", + "license": "MPL-2.0", "peer": true, "dependencies": { "@chainsafe/ssz": "^0.10.0", @@ -4892,8 +4788,7 @@ }, "node_modules/@nomicfoundation/ethereumjs-util/node_modules/@chainsafe/persistent-merkle-tree": { "version": "0.5.0", - "resolved": "https://registry.npmjs.org/@chainsafe/persistent-merkle-tree/-/persistent-merkle-tree-0.5.0.tgz", - "integrity": "sha512-l0V1b5clxA3iwQLXP40zYjyZYospQLZXzBVIhhr9kDg/1qHZfzzHw0jj4VPBijfYCArZDlPkRi1wZaV2POKeuw==", + "license": "Apache-2.0", "peer": true, "dependencies": { "@chainsafe/as-sha256": "^0.3.1" @@ -4901,8 +4796,7 @@ }, "node_modules/@nomicfoundation/ethereumjs-util/node_modules/@chainsafe/ssz": { "version": "0.10.2", - "resolved": "https://registry.npmjs.org/@chainsafe/ssz/-/ssz-0.10.2.tgz", - "integrity": "sha512-/NL3Lh8K+0q7A3LsiFq09YXS9fPE+ead2rr7vM2QK8PLzrNsw3uqrif9bpRX5UxgeRjM+vYi+boCM3+GM4ovXg==", + "license": "Apache-2.0", "peer": true, "dependencies": { "@chainsafe/as-sha256": "^0.3.1", @@ -4911,8 +4805,7 @@ }, "node_modules/@nomicfoundation/ethereumjs-util/node_modules/ethereum-cryptography": { "version": "0.1.3", - "resolved": "https://registry.npmjs.org/ethereum-cryptography/-/ethereum-cryptography-0.1.3.tgz", - "integrity": "sha512-w8/4x1SGGzc+tO97TASLja6SLd3fRIK2tLVcV2Gx4IB21hE19atll5Cq9o3d0ZmAYC/8aw0ipieTSiekAea4SQ==", + "license": "MIT", "peer": true, "dependencies": { "@types/pbkdf2": "^3.0.0", @@ -4934,8 +4827,7 @@ }, "node_modules/@nomicfoundation/ethereumjs-vm": { "version": "7.0.1", - "resolved": "https://registry.npmjs.org/@nomicfoundation/ethereumjs-vm/-/ethereumjs-vm-7.0.1.tgz", - "integrity": "sha512-rArhyn0jPsS/D+ApFsz3yVJMQ29+pVzNZ0VJgkzAZ+7FqXSRtThl1C1prhmlVr3YNUlfpZ69Ak+RUT4g7VoOuQ==", + "license": "MPL-2.0", "peer": true, "dependencies": { "@nomicfoundation/ethereumjs-block": "5.0.1", @@ -4958,8 +4850,7 @@ }, "node_modules/@nomicfoundation/ethereumjs-vm/node_modules/ethereum-cryptography": { "version": "0.1.3", - "resolved": "https://registry.npmjs.org/ethereum-cryptography/-/ethereum-cryptography-0.1.3.tgz", - "integrity": "sha512-w8/4x1SGGzc+tO97TASLja6SLd3fRIK2tLVcV2Gx4IB21hE19atll5Cq9o3d0ZmAYC/8aw0ipieTSiekAea4SQ==", + "license": "MIT", "peer": true, "dependencies": { "@types/pbkdf2": "^3.0.0", @@ -4981,8 +4872,7 @@ }, "node_modules/@nomicfoundation/solidity-analyzer": { "version": "0.1.1", - "resolved": "https://registry.npmjs.org/@nomicfoundation/solidity-analyzer/-/solidity-analyzer-0.1.1.tgz", - "integrity": "sha512-1LMtXj1puAxyFusBgUIy5pZk3073cNXYnXUpuNKFghHbIit/xZgbk0AokpUADbNm3gyD6bFWl3LRFh3dhVdREg==", + "license": "MIT", "peer": true, "engines": { "node": ">= 12" @@ -5000,29 +4890,12 @@ "@nomicfoundation/solidity-analyzer-win32-x64-msvc": "0.1.1" } }, - "node_modules/@nomicfoundation/solidity-analyzer-darwin-arm64": { - "version": "0.1.1", - "resolved": "https://registry.npmjs.org/@nomicfoundation/solidity-analyzer-darwin-arm64/-/solidity-analyzer-darwin-arm64-0.1.1.tgz", - "integrity": "sha512-KcTodaQw8ivDZyF+D76FokN/HdpgGpfjc/gFCImdLUyqB6eSWVaZPazMbeAjmfhx3R0zm/NYVzxwAokFKgrc0w==", - "cpu": [ - "arm64" - ], - "optional": true, - "os": [ - "darwin" - ], - "peer": true, - "engines": { - "node": ">= 10" - } - }, "node_modules/@nomicfoundation/solidity-analyzer-darwin-x64": { "version": "0.1.1", - "resolved": "https://registry.npmjs.org/@nomicfoundation/solidity-analyzer-darwin-x64/-/solidity-analyzer-darwin-x64-0.1.1.tgz", - "integrity": "sha512-XhQG4BaJE6cIbjAVtzGOGbK3sn1BO9W29uhk9J8y8fZF1DYz0Doj8QDMfpMu+A6TjPDs61lbsmeYodIDnfveSA==", "cpu": [ "x64" ], + "license": "MIT", "optional": true, "os": [ "darwin" @@ -5032,151 +4905,21 @@ "node": ">= 10" } }, - "node_modules/@nomicfoundation/solidity-analyzer-freebsd-x64": { - "version": "0.1.1", - "resolved": "https://registry.npmjs.org/@nomicfoundation/solidity-analyzer-freebsd-x64/-/solidity-analyzer-freebsd-x64-0.1.1.tgz", - "integrity": "sha512-GHF1VKRdHW3G8CndkwdaeLkVBi5A9u2jwtlS7SLhBc8b5U/GcoL39Q+1CSO3hYqePNP+eV5YI7Zgm0ea6kMHoA==", - "cpu": [ - "x64" - ], - "optional": true, - "os": [ - "freebsd" - ], - "peer": true, - "engines": { - "node": ">= 10" - } - }, - "node_modules/@nomicfoundation/solidity-analyzer-linux-arm64-gnu": { - "version": "0.1.1", - "resolved": "https://registry.npmjs.org/@nomicfoundation/solidity-analyzer-linux-arm64-gnu/-/solidity-analyzer-linux-arm64-gnu-0.1.1.tgz", - "integrity": "sha512-g4Cv2fO37ZsUENQ2vwPnZc2zRenHyAxHcyBjKcjaSmmkKrFr64yvzeNO8S3GBFCo90rfochLs99wFVGT/0owpg==", - "cpu": [ - "arm64" - ], - "optional": true, - "os": [ - "linux" - ], - "peer": true, - "engines": { - "node": ">= 10" - } - }, - "node_modules/@nomicfoundation/solidity-analyzer-linux-arm64-musl": { - "version": "0.1.1", - "resolved": "https://registry.npmjs.org/@nomicfoundation/solidity-analyzer-linux-arm64-musl/-/solidity-analyzer-linux-arm64-musl-0.1.1.tgz", - "integrity": "sha512-WJ3CE5Oek25OGE3WwzK7oaopY8xMw9Lhb0mlYuJl/maZVo+WtP36XoQTb7bW/i8aAdHW5Z+BqrHMux23pvxG3w==", - "cpu": [ - "arm64" - ], - "optional": true, - "os": [ - "linux" - ], - "peer": true, - "engines": { - "node": ">= 10" - } - }, - "node_modules/@nomicfoundation/solidity-analyzer-linux-x64-gnu": { - "version": "0.1.1", - "resolved": "https://registry.npmjs.org/@nomicfoundation/solidity-analyzer-linux-x64-gnu/-/solidity-analyzer-linux-x64-gnu-0.1.1.tgz", - "integrity": "sha512-5WN7leSr5fkUBBjE4f3wKENUy9HQStu7HmWqbtknfXkkil+eNWiBV275IOlpXku7v3uLsXTOKpnnGHJYI2qsdA==", - "cpu": [ - "x64" - ], - "optional": true, - "os": [ - "linux" - ], - "peer": true, - "engines": { - "node": ">= 10" - } - }, - "node_modules/@nomicfoundation/solidity-analyzer-linux-x64-musl": { - "version": "0.1.1", - "resolved": "https://registry.npmjs.org/@nomicfoundation/solidity-analyzer-linux-x64-musl/-/solidity-analyzer-linux-x64-musl-0.1.1.tgz", - "integrity": "sha512-KdYMkJOq0SYPQMmErv/63CwGwMm5XHenEna9X9aB8mQmhDBrYrlAOSsIPgFCUSL0hjxE3xHP65/EPXR/InD2+w==", - "cpu": [ - "x64" - ], - "optional": true, - "os": [ - "linux" - ], - "peer": true, - "engines": { - "node": ">= 10" - } - }, - "node_modules/@nomicfoundation/solidity-analyzer-win32-arm64-msvc": { - "version": "0.1.1", - "resolved": "https://registry.npmjs.org/@nomicfoundation/solidity-analyzer-win32-arm64-msvc/-/solidity-analyzer-win32-arm64-msvc-0.1.1.tgz", - "integrity": "sha512-VFZASBfl4qiBYwW5xeY20exWhmv6ww9sWu/krWSesv3q5hA0o1JuzmPHR4LPN6SUZj5vcqci0O6JOL8BPw+APg==", - "cpu": [ - "arm64" - ], - "optional": true, - "os": [ - "win32" - ], - "peer": true, - "engines": { - "node": ">= 10" - } - }, - "node_modules/@nomicfoundation/solidity-analyzer-win32-ia32-msvc": { - "version": "0.1.1", - "resolved": "https://registry.npmjs.org/@nomicfoundation/solidity-analyzer-win32-ia32-msvc/-/solidity-analyzer-win32-ia32-msvc-0.1.1.tgz", - "integrity": "sha512-JnFkYuyCSA70j6Si6cS1A9Gh1aHTEb8kOTBApp/c7NRTFGNMH8eaInKlyuuiIbvYFhlXW4LicqyYuWNNq9hkpQ==", - "cpu": [ - "ia32" - ], - "optional": true, - "os": [ - "win32" - ], - "peer": true, - "engines": { - "node": ">= 10" - } - }, - "node_modules/@nomicfoundation/solidity-analyzer-win32-x64-msvc": { - "version": "0.1.1", - "resolved": "https://registry.npmjs.org/@nomicfoundation/solidity-analyzer-win32-x64-msvc/-/solidity-analyzer-win32-x64-msvc-0.1.1.tgz", - "integrity": "sha512-HrVJr6+WjIXGnw3Q9u6KQcbZCtk0caVWhCdFADySvRyUxJ8PnzlaP+MhwNE8oyT8OZ6ejHBRrrgjSqDCFXGirw==", - "cpu": [ - "x64" - ], - "optional": true, - "os": [ - "win32" - ], - "peer": true, - "engines": { - "node": ">= 10" - } - }, "node_modules/@openzeppelin/contracts": { - "version": "3.4.1-solc-0.7-2", - "resolved": "https://registry.npmjs.org/@openzeppelin/contracts/-/contracts-3.4.1-solc-0.7-2.tgz", - "integrity": "sha512-tAG9LWg8+M2CMu7hIsqHPaTyG4uDzjr6mhvH96LvOpLZZj6tgzTluBt+LsCf1/QaYrlis6pITvpIaIhE+iZB+Q==" + "version": "3.4.2-solc-0.7", + "license": "MIT" }, "node_modules/@pmmmwh/react-refresh-webpack-plugin": { - "version": "0.5.7", - "resolved": "https://registry.npmjs.org/@pmmmwh/react-refresh-webpack-plugin/-/react-refresh-webpack-plugin-0.5.7.tgz", - "integrity": "sha512-bcKCAzF0DV2IIROp9ZHkRJa6O4jy7NlnHdWL3GmcUxYWNjLXkK5kfELELwEfSP5hXPfVL/qOGMAROuMQb9GG8Q==", + "version": "0.5.11", + "license": "MIT", "dependencies": { "ansi-html-community": "^0.0.8", "common-path-prefix": "^3.0.0", - "core-js-pure": "^3.8.1", + "core-js-pure": "^3.23.3", "error-stack-parser": "^2.0.6", "find-up": "^5.0.0", "html-entities": "^2.1.0", - "loader-utils": "^2.0.0", + "loader-utils": "^2.0.4", "schema-utils": "^3.0.0", "source-map": "^0.7.3" }, @@ -5187,7 +4930,7 @@ "@types/webpack": "4.x || 5.x", "react-refresh": ">=0.10.0 <1.0.0", "sockjs-client": "^1.4.0", - "type-fest": ">=0.17.0 <3.0.0", + "type-fest": ">=0.17.0 <5.0.0", "webpack": ">=4.43.0 <6.0.0", "webpack-dev-server": "3.x || 4.x", "webpack-hot-middleware": "2.x", @@ -5214,10 +4957,16 @@ } } }, + "node_modules/@pmmmwh/react-refresh-webpack-plugin/node_modules/source-map": { + "version": "0.7.4", + "license": "BSD-3-Clause", + "engines": { + "node": ">= 8" + } + }, "node_modules/@popperjs/core": { - "version": "2.11.5", - "resolved": "https://registry.npmjs.org/@popperjs/core/-/core-2.11.5.tgz", - "integrity": "sha512-9X2obfABZuDVLCgPK9aX0a/x4jaOEweTTWE2+9sr0Qqqevj2Uv5XorvusThmc9XGYpS9yI+fhh8RTafBtGposw==", + "version": "2.11.8", + "license": "MIT", "funding": { "type": "opencollective", "url": "https://opencollective.com/popperjs" @@ -5225,8 +4974,7 @@ }, "node_modules/@reduxjs/toolkit": { "version": "1.9.5", - "resolved": "https://registry.npmjs.org/@reduxjs/toolkit/-/toolkit-1.9.5.tgz", - "integrity": "sha512-Rt97jHmfTeaxL4swLRNPD/zV4OxTes4la07Xc4hetpUW/vc75t5m1ANyxG6ymnEQ2FsLQsoMlYB2vV1sO3m8tQ==", + "license": "MIT", "dependencies": { "immer": "^9.0.21", "redux": "^4.2.1", @@ -5247,17 +4995,15 @@ } }, "node_modules/@remix-run/router": { - "version": "1.5.0", - "resolved": "https://registry.npmjs.org/@remix-run/router/-/router-1.5.0.tgz", - "integrity": "sha512-bkUDCp8o1MvFO+qxkODcbhSqRa6P2GXgrGZVpt0dCXNW2HCSCqYI0ZoAqEOSAjRWmmlKcYgFvN4B4S+zo/f8kg==", + "version": "1.8.0", + "license": "MIT", "engines": { - "node": ">=14" + "node": ">=14.0.0" } }, "node_modules/@rollup/plugin-babel": { "version": "5.3.1", - "resolved": "https://registry.npmjs.org/@rollup/plugin-babel/-/plugin-babel-5.3.1.tgz", - "integrity": "sha512-WFfdLWU/xVWKeRQnKmIAQULUI7Il0gZnBIH/ZFO069wYIfPu+8zrfp/KMW0atmELoRDq8FbiP3VCss9MhCut7Q==", + "license": "MIT", "dependencies": { "@babel/helper-module-imports": "^7.10.4", "@rollup/pluginutils": "^3.1.0" @@ -5278,8 +5024,7 @@ }, "node_modules/@rollup/plugin-node-resolve": { "version": "11.2.1", - "resolved": "https://registry.npmjs.org/@rollup/plugin-node-resolve/-/plugin-node-resolve-11.2.1.tgz", - "integrity": "sha512-yc2n43jcqVyGE2sqV5/YCmocy9ArjVAP/BeXyTtADTBBX6V0e5UMqwO8CdQ0kzjb6zu5P1qMzsScCMRvE9OlVg==", + "license": "MIT", "dependencies": { "@rollup/pluginutils": "^3.1.0", "@types/resolve": "1.17.1", @@ -5297,8 +5042,7 @@ }, "node_modules/@rollup/plugin-replace": { "version": "2.4.2", - "resolved": "https://registry.npmjs.org/@rollup/plugin-replace/-/plugin-replace-2.4.2.tgz", - "integrity": "sha512-IGcu+cydlUMZ5En85jxHH4qj2hta/11BHq95iHEyb2sbgiN0eCdzvUcHw5gt9pBL5lTi4JDYJ1acCoMGpTvEZg==", + "license": "MIT", "dependencies": { "@rollup/pluginutils": "^3.1.0", "magic-string": "^0.25.7" @@ -5309,8 +5053,7 @@ }, "node_modules/@rollup/pluginutils": { "version": "3.1.0", - "resolved": "https://registry.npmjs.org/@rollup/pluginutils/-/pluginutils-3.1.0.tgz", - "integrity": "sha512-GksZ6pr6TpIjHm8h9lSQ8pi8BE9VeubNT0OMJ3B5uZJ8pz73NPiqOtCog/x2/QzM1ENChPKxMDhiQuRHsqc+lg==", + "license": "MIT", "dependencies": { "@types/estree": "0.0.39", "estree-walker": "^1.0.1", @@ -5325,60 +5068,71 @@ }, "node_modules/@rollup/pluginutils/node_modules/@types/estree": { "version": "0.0.39", - "resolved": "https://registry.npmjs.org/@types/estree/-/estree-0.0.39.tgz", - "integrity": "sha512-EYNwp3bU+98cpU4lAWYYL7Zz+2gryWH1qbdDTidVd6hkiR6weksdbMadyXKXNPEkQFhXM+hVO9ZygomHXp+AIw==" + "license": "MIT" }, "node_modules/@rushstack/eslint-patch": { - "version": "1.1.4", - "resolved": "https://registry.npmjs.org/@rushstack/eslint-patch/-/eslint-patch-1.1.4.tgz", - "integrity": "sha512-LwzQKA4vzIct1zNZzBmRKI9QuNpLgTQMEjsQLf3BXuGYb3QPTP4Yjf6mkdX+X1mYttZ808QpOwAzZjv28kq7DA==" + "version": "1.3.3", + "license": "MIT" }, "node_modules/@scure/base": { - "version": "1.1.1", - "resolved": "https://registry.npmjs.org/@scure/base/-/base-1.1.1.tgz", - "integrity": "sha512-ZxOhsSyxYwLJj3pLZCefNitxsj093tb2vq90mp2txoYeBqbcjDjqFhyM8eUjq/uFm6zJ+mUuqxlS2FkuSY1MTA==", + "version": "1.1.2", + "license": "MIT", + "funding": { + "url": "https://paulmillr.com/funding/" + } + }, + "node_modules/@scure/bip32": { + "version": "1.1.5", "funding": [ { "type": "individual", "url": "https://paulmillr.com/funding/" } - ] + ], + "license": "MIT", + "dependencies": { + "@noble/hashes": "~1.2.0", + "@noble/secp256k1": "~1.7.0", + "@scure/base": "~1.1.0" + } }, - "node_modules/@scure/bip32": { - "version": "1.1.0", - "resolved": "https://registry.npmjs.org/@scure/bip32/-/bip32-1.1.0.tgz", - "integrity": "sha512-ftTW3kKX54YXLCxH6BB7oEEoJfoE2pIgw7MINKAs5PsS6nqKPuKk1haTF/EuHmYqG330t5GSrdmtRuHaY1a62Q==", + "node_modules/@scure/bip32/node_modules/@noble/hashes": { + "version": "1.2.0", "funding": [ { "type": "individual", "url": "https://paulmillr.com/funding/" } ], - "dependencies": { - "@noble/hashes": "~1.1.1", - "@noble/secp256k1": "~1.6.0", - "@scure/base": "~1.1.0" - } + "license": "MIT" }, "node_modules/@scure/bip39": { - "version": "1.1.0", - "resolved": "https://registry.npmjs.org/@scure/bip39/-/bip39-1.1.0.tgz", - "integrity": "sha512-pwrPOS16VeTKg98dYXQyIjJEcWfz7/1YJIwxUEPFfQPtc86Ym/1sVgQ2RLoD43AazMk2l/unK4ITySSpW2+82w==", + "version": "1.1.1", "funding": [ { "type": "individual", "url": "https://paulmillr.com/funding/" } ], + "license": "MIT", "dependencies": { - "@noble/hashes": "~1.1.1", + "@noble/hashes": "~1.2.0", "@scure/base": "~1.1.0" } }, + "node_modules/@scure/bip39/node_modules/@noble/hashes": { + "version": "1.2.0", + "funding": [ + { + "type": "individual", + "url": "https://paulmillr.com/funding/" + } + ], + "license": "MIT" + }, "node_modules/@sentry/core": { "version": "5.30.0", - "resolved": "https://registry.npmjs.org/@sentry/core/-/core-5.30.0.tgz", - "integrity": "sha512-TmfrII8w1PQZSZgPpUESqjB+jC6MvZJZdLtE/0hZ+SrnKhW3x5WlYLvTXZpcWePYBku7rl2wn1RZu6uT0qCTeg==", + "license": "BSD-3-Clause", "peer": true, "dependencies": { "@sentry/hub": "5.30.0", @@ -5393,14 +5147,12 @@ }, "node_modules/@sentry/core/node_modules/tslib": { "version": "1.14.1", - "resolved": "https://registry.npmjs.org/tslib/-/tslib-1.14.1.tgz", - "integrity": "sha512-Xni35NKzjgMrwevysHTCArtLDpPvye8zV/0E4EyYn43P7/7qvQwPh9BGkHewbMulVntbigmcT7rdX3BNo9wRJg==", + "license": "0BSD", "peer": true }, "node_modules/@sentry/hub": { "version": "5.30.0", - "resolved": "https://registry.npmjs.org/@sentry/hub/-/hub-5.30.0.tgz", - "integrity": "sha512-2tYrGnzb1gKz2EkMDQcfLrDTvmGcQPuWxLnJKXJvYTQDGLlEvi2tWz1VIHjunmOvJrB5aIQLhm+dcMRwFZDCqQ==", + "license": "BSD-3-Clause", "peer": true, "dependencies": { "@sentry/types": "5.30.0", @@ -5413,14 +5165,12 @@ }, "node_modules/@sentry/hub/node_modules/tslib": { "version": "1.14.1", - "resolved": "https://registry.npmjs.org/tslib/-/tslib-1.14.1.tgz", - "integrity": "sha512-Xni35NKzjgMrwevysHTCArtLDpPvye8zV/0E4EyYn43P7/7qvQwPh9BGkHewbMulVntbigmcT7rdX3BNo9wRJg==", + "license": "0BSD", "peer": true }, "node_modules/@sentry/minimal": { "version": "5.30.0", - "resolved": "https://registry.npmjs.org/@sentry/minimal/-/minimal-5.30.0.tgz", - "integrity": "sha512-BwWb/owZKtkDX+Sc4zCSTNcvZUq7YcH3uAVlmh/gtR9rmUvbzAA3ewLuB3myi4wWRAMEtny6+J/FN/x+2wn9Xw==", + "license": "BSD-3-Clause", "peer": true, "dependencies": { "@sentry/hub": "5.30.0", @@ -5433,14 +5183,12 @@ }, "node_modules/@sentry/minimal/node_modules/tslib": { "version": "1.14.1", - "resolved": "https://registry.npmjs.org/tslib/-/tslib-1.14.1.tgz", - "integrity": "sha512-Xni35NKzjgMrwevysHTCArtLDpPvye8zV/0E4EyYn43P7/7qvQwPh9BGkHewbMulVntbigmcT7rdX3BNo9wRJg==", + "license": "0BSD", "peer": true }, "node_modules/@sentry/node": { "version": "5.30.0", - "resolved": "https://registry.npmjs.org/@sentry/node/-/node-5.30.0.tgz", - "integrity": "sha512-Br5oyVBF0fZo6ZS9bxbJZG4ApAjRqAnqFFurMVJJdunNb80brh7a5Qva2kjhm+U6r9NJAB5OmDyPkA1Qnt+QVg==", + "license": "BSD-3-Clause", "peer": true, "dependencies": { "@sentry/core": "5.30.0", @@ -5459,8 +5207,7 @@ }, "node_modules/@sentry/node/node_modules/cookie": { "version": "0.4.2", - "resolved": "https://registry.npmjs.org/cookie/-/cookie-0.4.2.tgz", - "integrity": "sha512-aSWTXFzaKWkvHO1Ny/s+ePFpvKsPnjc551iI41v3ny/ow6tBG5Vd+FuqGNhh1LxOmVzOlGUriIlOaokOvhaStA==", + "license": "MIT", "peer": true, "engines": { "node": ">= 0.6" @@ -5468,14 +5215,12 @@ }, "node_modules/@sentry/node/node_modules/tslib": { "version": "1.14.1", - "resolved": "https://registry.npmjs.org/tslib/-/tslib-1.14.1.tgz", - "integrity": "sha512-Xni35NKzjgMrwevysHTCArtLDpPvye8zV/0E4EyYn43P7/7qvQwPh9BGkHewbMulVntbigmcT7rdX3BNo9wRJg==", + "license": "0BSD", "peer": true }, "node_modules/@sentry/tracing": { "version": "5.30.0", - "resolved": "https://registry.npmjs.org/@sentry/tracing/-/tracing-5.30.0.tgz", - "integrity": "sha512-dUFowCr0AIMwiLD7Fs314Mdzcug+gBVo/+NCMyDw8tFxJkwWAKl7Qa2OZxLQ0ZHjakcj1hNKfCQJ9rhyfOl4Aw==", + "license": "MIT", "peer": true, "dependencies": { "@sentry/hub": "5.30.0", @@ -5490,14 +5235,12 @@ }, "node_modules/@sentry/tracing/node_modules/tslib": { "version": "1.14.1", - "resolved": "https://registry.npmjs.org/tslib/-/tslib-1.14.1.tgz", - "integrity": "sha512-Xni35NKzjgMrwevysHTCArtLDpPvye8zV/0E4EyYn43P7/7qvQwPh9BGkHewbMulVntbigmcT7rdX3BNo9wRJg==", + "license": "0BSD", "peer": true }, "node_modules/@sentry/types": { "version": "5.30.0", - "resolved": "https://registry.npmjs.org/@sentry/types/-/types-5.30.0.tgz", - "integrity": "sha512-R8xOqlSTZ+htqrfteCWU5Nk0CDN5ApUTvrlvBuiH1DyP6czDZ4ktbZB0hAgBlVcK0U+qpD3ag3Tqqpa5Q67rPw==", + "license": "BSD-3-Clause", "peer": true, "engines": { "node": ">=6" @@ -5505,8 +5248,7 @@ }, "node_modules/@sentry/utils": { "version": "5.30.0", - "resolved": "https://registry.npmjs.org/@sentry/utils/-/utils-5.30.0.tgz", - "integrity": "sha512-zaYmoH0NWWtvnJjC9/CBseXMtKHm/tm40sz3YfJRxeQjyzRqNQPgivpd9R/oDJCYj999mzdW382p/qi2ypjLww==", + "license": "BSD-3-Clause", "peer": true, "dependencies": { "@sentry/types": "5.30.0", @@ -5518,19 +5260,16 @@ }, "node_modules/@sentry/utils/node_modules/tslib": { "version": "1.14.1", - "resolved": "https://registry.npmjs.org/tslib/-/tslib-1.14.1.tgz", - "integrity": "sha512-Xni35NKzjgMrwevysHTCArtLDpPvye8zV/0E4EyYn43P7/7qvQwPh9BGkHewbMulVntbigmcT7rdX3BNo9wRJg==", + "license": "0BSD", "peer": true }, "node_modules/@sinclair/typebox": { - "version": "0.23.5", - "resolved": "https://registry.npmjs.org/@sinclair/typebox/-/typebox-0.23.5.tgz", - "integrity": "sha512-AFBVi/iT4g20DHoujvMH1aEDn8fGJh4xsRGCP6d8RpLPMqsNPvW01Jcn0QysXTsg++/xj25NmJsGyH9xug/wKg==" + "version": "0.24.51", + "license": "MIT" }, "node_modules/@sindresorhus/is": { "version": "4.6.0", - "resolved": "https://registry.npmjs.org/@sindresorhus/is/-/is-4.6.0.tgz", - "integrity": "sha512-t09vSN3MdfsyCHoFcTRCH/iUtG7OJ0CsjzB8cjAmKc/va/kIgeDI/TxsigdncE/4be734m0cvIYwNaV4i2XqAw==", + "license": "MIT", "engines": { "node": ">=10" }, @@ -5539,102 +5278,89 @@ } }, "node_modules/@sinonjs/commons": { - "version": "1.8.3", - "resolved": "https://registry.npmjs.org/@sinonjs/commons/-/commons-1.8.3.tgz", - "integrity": "sha512-xkNcLAn/wZaX14RPlwizcKicDk9G3F8m2nU3L7Ukm5zBgTwiT0wsoFAHx9Jq56fJA1z/7uKGtCRu16sOUCLIHQ==", + "version": "1.8.6", + "license": "BSD-3-Clause", "dependencies": { "type-detect": "4.0.8" } }, "node_modules/@sinonjs/fake-timers": { "version": "8.1.0", - "resolved": "https://registry.npmjs.org/@sinonjs/fake-timers/-/fake-timers-8.1.0.tgz", - "integrity": "sha512-OAPJUAtgeINhh/TAlUID4QTs53Njm7xzddaVlEs/SXwgtiD1tW22zAB/W1wdqfrpmikgaWQ9Fw6Ws+hsiRm5Vg==", + "license": "BSD-3-Clause", "dependencies": { "@sinonjs/commons": "^1.7.0" } }, "node_modules/@styled-system/background": { "version": "5.1.2", - "resolved": "https://registry.npmjs.org/@styled-system/background/-/background-5.1.2.tgz", - "integrity": "sha512-jtwH2C/U6ssuGSvwTN3ri/IyjdHb8W9X/g8Y0JLcrH02G+BW3OS8kZdHphF1/YyRklnrKrBT2ngwGUK6aqqV3A==", + "license": "MIT", "dependencies": { "@styled-system/core": "^5.1.2" } }, "node_modules/@styled-system/border": { "version": "5.1.5", - "resolved": "https://registry.npmjs.org/@styled-system/border/-/border-5.1.5.tgz", - "integrity": "sha512-JvddhNrnhGigtzWRCVuAHepniyVi6hBlimxWDVAdcTuk7aRn9BYJUwfHslURtwYFsF5FoEs8Zmr1oZq2M1AP0A==", + "license": "MIT", "dependencies": { "@styled-system/core": "^5.1.2" } }, "node_modules/@styled-system/color": { "version": "5.1.2", - "resolved": "https://registry.npmjs.org/@styled-system/color/-/color-5.1.2.tgz", - "integrity": "sha512-1kCkeKDZkt4GYkuFNKc7vJQMcOmTl3bJY3YBUs7fCNM6mMYJeT1pViQ2LwBSBJytj3AB0o4IdLBoepgSgGl5MA==", + "license": "MIT", "dependencies": { "@styled-system/core": "^5.1.2" } }, "node_modules/@styled-system/core": { "version": "5.1.2", - "resolved": "https://registry.npmjs.org/@styled-system/core/-/core-5.1.2.tgz", - "integrity": "sha512-XclBDdNIy7OPOsN4HBsawG2eiWfCcuFt6gxKn1x4QfMIgeO6TOlA2pZZ5GWZtIhCUqEPTgIBta6JXsGyCkLBYw==", + "license": "MIT", "dependencies": { "object-assign": "^4.1.1" } }, "node_modules/@styled-system/css": { "version": "5.1.5", - "resolved": "https://registry.npmjs.org/@styled-system/css/-/css-5.1.5.tgz", - "integrity": "sha512-XkORZdS5kypzcBotAMPBoeckDs9aSZVkvrAlq5K3xP8IMAUek+x2O4NtwoSgkYkWWzVBu6DGdFZLR790QWGG+A==" + "license": "MIT" }, "node_modules/@styled-system/flexbox": { "version": "5.1.2", - "resolved": "https://registry.npmjs.org/@styled-system/flexbox/-/flexbox-5.1.2.tgz", - "integrity": "sha512-6hHV52+eUk654Y1J2v77B8iLeBNtc+SA3R4necsu2VVinSD7+XY5PCCEzBFaWs42dtOEDIa2lMrgL0YBC01mDQ==", + "license": "MIT", "dependencies": { "@styled-system/core": "^5.1.2" } }, "node_modules/@styled-system/grid": { "version": "5.1.2", - "resolved": "https://registry.npmjs.org/@styled-system/grid/-/grid-5.1.2.tgz", - "integrity": "sha512-K3YiV1KyHHzgdNuNlaw8oW2ktMuGga99o1e/NAfTEi5Zsa7JXxzwEnVSDSBdJC+z6R8WYTCYRQC6bkVFcvdTeg==", + "license": "MIT", "dependencies": { "@styled-system/core": "^5.1.2" } }, "node_modules/@styled-system/layout": { "version": "5.1.2", - "resolved": "https://registry.npmjs.org/@styled-system/layout/-/layout-5.1.2.tgz", - "integrity": "sha512-wUhkMBqSeacPFhoE9S6UF3fsMEKFv91gF4AdDWp0Aym1yeMPpqz9l9qS/6vjSsDPF7zOb5cOKC3tcKKOMuDCPw==", + "license": "MIT", "dependencies": { "@styled-system/core": "^5.1.2" } }, "node_modules/@styled-system/position": { "version": "5.1.2", - "resolved": "https://registry.npmjs.org/@styled-system/position/-/position-5.1.2.tgz", - "integrity": "sha512-60IZfMXEOOZe3l1mCu6sj/2NAyUmES2kR9Kzp7s2D3P4qKsZWxD1Se1+wJvevb+1TP+ZMkGPEYYXRyU8M1aF5A==", + "license": "MIT", "dependencies": { "@styled-system/core": "^5.1.2" } }, "node_modules/@styled-system/shadow": { "version": "5.1.2", - "resolved": "https://registry.npmjs.org/@styled-system/shadow/-/shadow-5.1.2.tgz", - "integrity": "sha512-wqniqYb7XuZM7K7C0d1Euxc4eGtqEe/lvM0WjuAFsQVImiq6KGT7s7is+0bNI8O4Dwg27jyu4Lfqo/oIQXNzAg==", + "license": "MIT", "dependencies": { "@styled-system/core": "^5.1.2" } }, "node_modules/@styled-system/should-forward-prop": { "version": "5.1.5", - "resolved": "https://registry.npmjs.org/@styled-system/should-forward-prop/-/should-forward-prop-5.1.5.tgz", - "integrity": "sha512-+rPRomgCGYnUIaFabDoOgpSDc4UUJ1KsmlnzcEp0tu5lFrBQKgZclSo18Z1URhaZm7a6agGtS5Xif7tuC2s52Q==", + "license": "MIT", "dependencies": { "@emotion/is-prop-valid": "^0.8.1", "@emotion/memoize": "^0.7.1", @@ -5643,37 +5369,36 @@ }, "node_modules/@styled-system/should-forward-prop/node_modules/@emotion/is-prop-valid": { "version": "0.8.8", - "resolved": "https://registry.npmjs.org/@emotion/is-prop-valid/-/is-prop-valid-0.8.8.tgz", - "integrity": "sha512-u5WtneEAr5IDG2Wv65yhunPSMLIpuKsbuOktRojfrEiEvRyC85LgPMZI63cr7NUqT8ZIGdSVg8ZKGxIug4lXcA==", + "license": "MIT", "dependencies": { "@emotion/memoize": "0.7.4" } }, - "node_modules/@styled-system/should-forward-prop/node_modules/@emotion/memoize": { + "node_modules/@styled-system/should-forward-prop/node_modules/@emotion/is-prop-valid/node_modules/@emotion/memoize": { "version": "0.7.4", - "resolved": "https://registry.npmjs.org/@emotion/memoize/-/memoize-0.7.4.tgz", - "integrity": "sha512-Ja/Vfqe3HpuzRsG1oBtWTHk2PGZ7GR+2Vz5iYGelAw8dx32K0y7PjVuxK6z1nMpZOqAFsRUPCkK1YjJ56qJlgw==" + "license": "MIT" + }, + "node_modules/@styled-system/should-forward-prop/node_modules/@emotion/memoize": { + "version": "0.7.5", + "license": "MIT" }, "node_modules/@styled-system/space": { "version": "5.1.2", - "resolved": "https://registry.npmjs.org/@styled-system/space/-/space-5.1.2.tgz", - "integrity": "sha512-+zzYpR8uvfhcAbaPXhH8QgDAV//flxqxSjHiS9cDFQQUSznXMQmxJegbhcdEF7/eNnJgHeIXv1jmny78kipgBA==", + "license": "MIT", "dependencies": { "@styled-system/core": "^5.1.2" } }, "node_modules/@styled-system/typography": { "version": "5.1.2", - "resolved": "https://registry.npmjs.org/@styled-system/typography/-/typography-5.1.2.tgz", - "integrity": "sha512-BxbVUnN8N7hJ4aaPOd7wEsudeT7CxarR+2hns8XCX1zp0DFfbWw4xYa/olA0oQaqx7F1hzDg+eRaGzAJbF+jOg==", + "license": "MIT", "dependencies": { "@styled-system/core": "^5.1.2" } }, "node_modules/@styled-system/variant": { "version": "5.1.5", - "resolved": "https://registry.npmjs.org/@styled-system/variant/-/variant-5.1.5.tgz", - "integrity": "sha512-Yn8hXAFoWIro8+Q5J8YJd/mP85Teiut3fsGVR9CAxwgNfIAiqlYxsk5iHU7VHJks/0KjL4ATSjmbtCDC/4l1qw==", + "license": "MIT", "dependencies": { "@styled-system/core": "^5.1.2", "@styled-system/css": "^5.1.5" @@ -5681,8 +5406,7 @@ }, "node_modules/@surma/rollup-plugin-off-main-thread": { "version": "2.2.3", - "resolved": "https://registry.npmjs.org/@surma/rollup-plugin-off-main-thread/-/rollup-plugin-off-main-thread-2.2.3.tgz", - "integrity": "sha512-lR8q/9W7hZpMWweNiAKU7NQerBnzQQLvi8qnTDU/fxItPhtZVMbPV3lbCwjhIlNBe9Bbr5V+KHshvWmVSG9cxQ==", + "license": "Apache-2.0", "dependencies": { "ejs": "^3.1.6", "json5": "^2.2.0", @@ -5692,8 +5416,7 @@ }, "node_modules/@svgr/babel-plugin-add-jsx-attribute": { "version": "5.4.0", - "resolved": "https://registry.npmjs.org/@svgr/babel-plugin-add-jsx-attribute/-/babel-plugin-add-jsx-attribute-5.4.0.tgz", - "integrity": "sha512-ZFf2gs/8/6B8PnSofI0inYXr2SDNTDScPXhN7k5EqD4aZ3gi6u+rbmZHVB8IM3wDyx8ntKACZbtXSm7oZGRqVg==", + "license": "MIT", "engines": { "node": ">=10" }, @@ -5704,8 +5427,7 @@ }, "node_modules/@svgr/babel-plugin-remove-jsx-attribute": { "version": "5.4.0", - "resolved": "https://registry.npmjs.org/@svgr/babel-plugin-remove-jsx-attribute/-/babel-plugin-remove-jsx-attribute-5.4.0.tgz", - "integrity": "sha512-yaS4o2PgUtwLFGTKbsiAy6D0o3ugcUhWK0Z45umJ66EPWunAz9fuFw2gJuje6wqQvQWOTJvIahUwndOXb7QCPg==", + "license": "MIT", "engines": { "node": ">=10" }, @@ -5716,8 +5438,7 @@ }, "node_modules/@svgr/babel-plugin-remove-jsx-empty-expression": { "version": "5.0.1", - "resolved": "https://registry.npmjs.org/@svgr/babel-plugin-remove-jsx-empty-expression/-/babel-plugin-remove-jsx-empty-expression-5.0.1.tgz", - "integrity": "sha512-LA72+88A11ND/yFIMzyuLRSMJ+tRKeYKeQ+mR3DcAZ5I4h5CPWN9AHyUzJbWSYp/u2u0xhmgOe0+E41+GjEueA==", + "license": "MIT", "engines": { "node": ">=10" }, @@ -5728,8 +5449,7 @@ }, "node_modules/@svgr/babel-plugin-replace-jsx-attribute-value": { "version": "5.0.1", - "resolved": "https://registry.npmjs.org/@svgr/babel-plugin-replace-jsx-attribute-value/-/babel-plugin-replace-jsx-attribute-value-5.0.1.tgz", - "integrity": "sha512-PoiE6ZD2Eiy5mK+fjHqwGOS+IXX0wq/YDtNyIgOrc6ejFnxN4b13pRpiIPbtPwHEc+NT2KCjteAcq33/F1Y9KQ==", + "license": "MIT", "engines": { "node": ">=10" }, @@ -5740,8 +5460,7 @@ }, "node_modules/@svgr/babel-plugin-svg-dynamic-title": { "version": "5.4.0", - "resolved": "https://registry.npmjs.org/@svgr/babel-plugin-svg-dynamic-title/-/babel-plugin-svg-dynamic-title-5.4.0.tgz", - "integrity": "sha512-zSOZH8PdZOpuG1ZVx/cLVePB2ibo3WPpqo7gFIjLV9a0QsuQAzJiwwqmuEdTaW2pegyBE17Uu15mOgOcgabQZg==", + "license": "MIT", "engines": { "node": ">=10" }, @@ -5752,8 +5471,7 @@ }, "node_modules/@svgr/babel-plugin-svg-em-dimensions": { "version": "5.4.0", - "resolved": "https://registry.npmjs.org/@svgr/babel-plugin-svg-em-dimensions/-/babel-plugin-svg-em-dimensions-5.4.0.tgz", - "integrity": "sha512-cPzDbDA5oT/sPXDCUYoVXEmm3VIoAWAPT6mSPTJNbQaBNUuEKVKyGH93oDY4e42PYHRW67N5alJx/eEol20abw==", + "license": "MIT", "engines": { "node": ">=10" }, @@ -5764,8 +5482,7 @@ }, "node_modules/@svgr/babel-plugin-transform-react-native-svg": { "version": "5.4.0", - "resolved": "https://registry.npmjs.org/@svgr/babel-plugin-transform-react-native-svg/-/babel-plugin-transform-react-native-svg-5.4.0.tgz", - "integrity": "sha512-3eYP/SaopZ41GHwXma7Rmxcv9uRslRDTY1estspeB1w1ueZWd/tPlMfEOoccYpEMZU3jD4OU7YitnXcF5hLW2Q==", + "license": "MIT", "engines": { "node": ">=10" }, @@ -5776,8 +5493,7 @@ }, "node_modules/@svgr/babel-plugin-transform-svg-component": { "version": "5.5.0", - "resolved": "https://registry.npmjs.org/@svgr/babel-plugin-transform-svg-component/-/babel-plugin-transform-svg-component-5.5.0.tgz", - "integrity": "sha512-q4jSH1UUvbrsOtlo/tKcgSeiCHRSBdXoIoqX1pgcKK/aU3JD27wmMKwGtpB8qRYUYoyXvfGxUVKchLuR5pB3rQ==", + "license": "MIT", "engines": { "node": ">=10" }, @@ -5788,8 +5504,7 @@ }, "node_modules/@svgr/babel-preset": { "version": "5.5.0", - "resolved": "https://registry.npmjs.org/@svgr/babel-preset/-/babel-preset-5.5.0.tgz", - "integrity": "sha512-4FiXBjvQ+z2j7yASeGPEi8VD/5rrGQk4Xrq3EdJmoZgz/tpqChpo5hgXDvmEauwtvOc52q8ghhZK4Oy7qph4ig==", + "license": "MIT", "dependencies": { "@svgr/babel-plugin-add-jsx-attribute": "^5.4.0", "@svgr/babel-plugin-remove-jsx-attribute": "^5.4.0", @@ -5810,8 +5525,7 @@ }, "node_modules/@svgr/core": { "version": "5.5.0", - "resolved": "https://registry.npmjs.org/@svgr/core/-/core-5.5.0.tgz", - "integrity": "sha512-q52VOcsJPvV3jO1wkPtzTuKlvX7Y3xIcWRpCMtBF3MrteZJtBfQw/+u0B1BHy5ColpQc1/YVTrPEtSYIMNZlrQ==", + "license": "MIT", "dependencies": { "@svgr/plugin-jsx": "^5.5.0", "camelcase": "^6.2.0", @@ -5827,8 +5541,7 @@ }, "node_modules/@svgr/hast-util-to-babel-ast": { "version": "5.5.0", - "resolved": "https://registry.npmjs.org/@svgr/hast-util-to-babel-ast/-/hast-util-to-babel-ast-5.5.0.tgz", - "integrity": "sha512-cAaR/CAiZRB8GP32N+1jocovUtvlj0+e65TB50/6Lcime+EA49m/8l+P2ko+XPJ4dw3xaPS3jOL4F2X4KWxoeQ==", + "license": "MIT", "dependencies": { "@babel/types": "^7.12.6" }, @@ -5842,8 +5555,7 @@ }, "node_modules/@svgr/plugin-jsx": { "version": "5.5.0", - "resolved": "https://registry.npmjs.org/@svgr/plugin-jsx/-/plugin-jsx-5.5.0.tgz", - "integrity": "sha512-V/wVh33j12hGh05IDg8GpIUXbjAPnTdPTKuP4VNLggnwaHMPNQNae2pRnyTAILWCQdz5GyMqtO488g7CKM8CBA==", + "license": "MIT", "dependencies": { "@babel/core": "^7.12.3", "@svgr/babel-preset": "^5.5.0", @@ -5860,8 +5572,7 @@ }, "node_modules/@svgr/plugin-svgo": { "version": "5.5.0", - "resolved": "https://registry.npmjs.org/@svgr/plugin-svgo/-/plugin-svgo-5.5.0.tgz", - "integrity": "sha512-r5swKk46GuQl4RrVejVwpeeJaydoxkdwkM1mBKOgJLBUJPGaLci6ylg/IjhrRsREKDkr4kbMWdgOtbXEh0fyLQ==", + "license": "MIT", "dependencies": { "cosmiconfig": "^7.0.0", "deepmerge": "^4.2.2", @@ -5877,8 +5588,7 @@ }, "node_modules/@svgr/webpack": { "version": "5.5.0", - "resolved": "https://registry.npmjs.org/@svgr/webpack/-/webpack-5.5.0.tgz", - "integrity": "sha512-DOBOK255wfQxguUta2INKkzPj6AIS6iafZYiYmHn6W3pHlycSRRlvWKCfLDG10fXfLWqE3DJHgRUOyJYmARa7g==", + "license": "MIT", "dependencies": { "@babel/core": "^7.12.3", "@babel/plugin-transform-react-constant-elements": "^7.12.1", @@ -5899,8 +5609,7 @@ }, "node_modules/@szmarczak/http-timer": { "version": "5.0.1", - "resolved": "https://registry.npmjs.org/@szmarczak/http-timer/-/http-timer-5.0.1.tgz", - "integrity": "sha512-+PmQX0PiAYPMeVYe237LJAYvOMYW1j2rH5YROyS3b4CTVJum34HfRvKvAzozHAQG0TnHNdUfY9nCeUyRAs//cw==", + "license": "MIT", "dependencies": { "defer-to-connect": "^2.0.1" }, @@ -5909,206 +5618,90 @@ } }, "node_modules/@testing-library/dom": { - "version": "8.14.0", - "resolved": "https://registry.npmjs.org/@testing-library/dom/-/dom-8.14.0.tgz", - "integrity": "sha512-m8FOdUo77iMTwVRCyzWcqxlEIk+GnopbrRI15a0EaLbpZSCinIVI4kSQzWhkShK83GogvEFJSsHF3Ws0z1vrqA==", + "version": "9.3.1", + "license": "MIT", + "peer": true, "dependencies": { "@babel/code-frame": "^7.10.4", "@babel/runtime": "^7.12.5", - "@types/aria-query": "^4.2.0", - "aria-query": "^5.0.0", + "@types/aria-query": "^5.0.1", + "aria-query": "5.1.3", "chalk": "^4.1.0", "dom-accessibility-api": "^0.5.9", - "lz-string": "^1.4.4", + "lz-string": "^1.5.0", "pretty-format": "^27.0.2" }, "engines": { - "node": ">=12" + "node": ">=14" } }, - "node_modules/@testing-library/dom/node_modules/ansi-styles": { - "version": "4.3.0", - "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", - "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", + "node_modules/@testing-library/jest-dom": { + "version": "5.17.0", + "license": "MIT", "dependencies": { - "color-convert": "^2.0.1" + "@adobe/css-tools": "^4.0.1", + "@babel/runtime": "^7.9.2", + "@types/testing-library__jest-dom": "^5.9.1", + "aria-query": "^5.0.0", + "chalk": "^3.0.0", + "css.escape": "^1.5.1", + "dom-accessibility-api": "^0.5.6", + "lodash": "^4.17.15", + "redent": "^3.0.0" }, "engines": { - "node": ">=8" - }, - "funding": { - "url": "https://github.com/chalk/ansi-styles?sponsor=1" + "node": ">=8", + "npm": ">=6", + "yarn": ">=1" } }, - "node_modules/@testing-library/dom/node_modules/aria-query": { - "version": "5.0.0", - "resolved": "https://registry.npmjs.org/aria-query/-/aria-query-5.0.0.tgz", - "integrity": "sha512-V+SM7AbUwJ+EBnB8+DXs0hPZHO0W6pqBcc0dW90OwtVG02PswOu/teuARoLQjdDOH+t9pJgGnW5/Qmouf3gPJg==", + "node_modules/@testing-library/jest-dom/node_modules/chalk": { + "version": "3.0.0", + "license": "MIT", + "dependencies": { + "ansi-styles": "^4.1.0", + "supports-color": "^7.1.0" + }, "engines": { - "node": ">=6.0" + "node": ">=8" } }, - "node_modules/@testing-library/dom/node_modules/chalk": { - "version": "4.1.2", - "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz", - "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==", + "node_modules/@testing-library/react": { + "version": "13.4.0", + "license": "MIT", "dependencies": { - "ansi-styles": "^4.1.0", - "supports-color": "^7.1.0" + "@babel/runtime": "^7.12.5", + "@testing-library/dom": "^8.5.0", + "@types/react-dom": "^18.0.0" }, "engines": { - "node": ">=10" + "node": ">=12" }, - "funding": { - "url": "https://github.com/chalk/chalk?sponsor=1" + "peerDependencies": { + "react": "^18.0.0", + "react-dom": "^18.0.0" } }, - "node_modules/@testing-library/dom/node_modules/color-convert": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz", - "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==", + "node_modules/@testing-library/react/node_modules/@testing-library/dom": { + "version": "8.20.1", + "license": "MIT", "dependencies": { - "color-name": "~1.1.4" + "@babel/code-frame": "^7.10.4", + "@babel/runtime": "^7.12.5", + "@types/aria-query": "^5.0.1", + "aria-query": "5.1.3", + "chalk": "^4.1.0", + "dom-accessibility-api": "^0.5.9", + "lz-string": "^1.5.0", + "pretty-format": "^27.0.2" }, "engines": { - "node": ">=7.0.0" - } - }, - "node_modules/@testing-library/dom/node_modules/color-name": { - "version": "1.1.4", - "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz", - "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==" - }, - "node_modules/@testing-library/dom/node_modules/has-flag": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz", - "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==", - "engines": { - "node": ">=8" - } - }, - "node_modules/@testing-library/dom/node_modules/supports-color": { - "version": "7.2.0", - "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", - "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", - "dependencies": { - "has-flag": "^4.0.0" - }, - "engines": { - "node": ">=8" - } - }, - "node_modules/@testing-library/jest-dom": { - "version": "5.16.4", - "resolved": "https://registry.npmjs.org/@testing-library/jest-dom/-/jest-dom-5.16.4.tgz", - "integrity": "sha512-Gy+IoFutbMQcky0k+bqqumXZ1cTGswLsFqmNLzNdSKkU9KGV2u9oXhukCbbJ9/LRPKiqwxEE8VpV/+YZlfkPUA==", - "dependencies": { - "@babel/runtime": "^7.9.2", - "@types/testing-library__jest-dom": "^5.9.1", - "aria-query": "^5.0.0", - "chalk": "^3.0.0", - "css": "^3.0.0", - "css.escape": "^1.5.1", - "dom-accessibility-api": "^0.5.6", - "lodash": "^4.17.15", - "redent": "^3.0.0" - }, - "engines": { - "node": ">=8", - "npm": ">=6", - "yarn": ">=1" - } - }, - "node_modules/@testing-library/jest-dom/node_modules/ansi-styles": { - "version": "4.3.0", - "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", - "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", - "dependencies": { - "color-convert": "^2.0.1" - }, - "engines": { - "node": ">=8" - }, - "funding": { - "url": "https://github.com/chalk/ansi-styles?sponsor=1" - } - }, - "node_modules/@testing-library/jest-dom/node_modules/aria-query": { - "version": "5.0.0", - "resolved": "https://registry.npmjs.org/aria-query/-/aria-query-5.0.0.tgz", - "integrity": "sha512-V+SM7AbUwJ+EBnB8+DXs0hPZHO0W6pqBcc0dW90OwtVG02PswOu/teuARoLQjdDOH+t9pJgGnW5/Qmouf3gPJg==", - "engines": { - "node": ">=6.0" - } - }, - "node_modules/@testing-library/jest-dom/node_modules/chalk": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/chalk/-/chalk-3.0.0.tgz", - "integrity": "sha512-4D3B6Wf41KOYRFdszmDqMCGq5VV/uMAB273JILmO+3jAlh8X4qDtdtgCR3fxtbLEMzSx22QdhnDcJvu2u1fVwg==", - "dependencies": { - "ansi-styles": "^4.1.0", - "supports-color": "^7.1.0" - }, - "engines": { - "node": ">=8" - } - }, - "node_modules/@testing-library/jest-dom/node_modules/color-convert": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz", - "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==", - "dependencies": { - "color-name": "~1.1.4" - }, - "engines": { - "node": ">=7.0.0" - } - }, - "node_modules/@testing-library/jest-dom/node_modules/color-name": { - "version": "1.1.4", - "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz", - "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==" - }, - "node_modules/@testing-library/jest-dom/node_modules/has-flag": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz", - "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==", - "engines": { - "node": ">=8" - } - }, - "node_modules/@testing-library/jest-dom/node_modules/supports-color": { - "version": "7.2.0", - "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", - "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", - "dependencies": { - "has-flag": "^4.0.0" - }, - "engines": { - "node": ">=8" - } - }, - "node_modules/@testing-library/react": { - "version": "13.3.0", - "resolved": "https://registry.npmjs.org/@testing-library/react/-/react-13.3.0.tgz", - "integrity": "sha512-DB79aA426+deFgGSjnf5grczDPiL4taK3hFaa+M5q7q20Kcve9eQottOG5kZ74KEr55v0tU2CQormSSDK87zYQ==", - "dependencies": { - "@babel/runtime": "^7.12.5", - "@testing-library/dom": "^8.5.0", - "@types/react-dom": "^18.0.0" - }, - "engines": { - "node": ">=12" - }, - "peerDependencies": { - "react": "^18.0.0", - "react-dom": "^18.0.0" + "node": ">=12" } }, "node_modules/@testing-library/user-event": { "version": "13.5.0", - "resolved": "https://registry.npmjs.org/@testing-library/user-event/-/user-event-13.5.0.tgz", - "integrity": "sha512-5Kwtbo3Y/NowpkbRuSepbyMFkZmHgD+vPzYB/RJ4oxt5Gj/avFFBYjhw27cqSVPVw/3a67NK1PbiIr9k4Gwmdg==", + "license": "MIT", "dependencies": { "@babel/runtime": "^7.12.5" }, @@ -6122,54 +5715,51 @@ }, "node_modules/@tokenizer/token": { "version": "0.3.0", - "resolved": "https://registry.npmjs.org/@tokenizer/token/-/token-0.3.0.tgz", - "integrity": "sha512-OvjF+z51L3ov0OyAU0duzsYuvO01PH7x4t6DJx+guahgTnBHkhJdG7soQeTSFLWN3efnHyibZ4Z8l2EuWwJN3A==" + "license": "MIT" }, "node_modules/@tootallnate/once": { "version": "1.1.2", - "resolved": "https://registry.npmjs.org/@tootallnate/once/-/once-1.1.2.tgz", - "integrity": "sha512-RbzJvlNzmRq5c3O09UipeuXno4tA1FE6ikOjxZK0tuxVv3412l64l5t1W5pj4+rJq9vpkm/kwiR07aZXnsKPxw==", + "license": "MIT", "engines": { "node": ">= 6" } }, + "node_modules/@trpc/client": { + "version": "10.38.0", + "funding": [ + "https://trpc.io/sponsor" + ], + "license": "MIT", + "peer": true, + "peerDependencies": { + "@trpc/server": "10.38.0" + } + }, + "node_modules/@trpc/server": { + "version": "10.38.0", + "funding": [ + "https://trpc.io/sponsor" + ], + "license": "MIT", + "peer": true + }, "node_modules/@trysound/sax": { "version": "0.2.0", - "resolved": "https://registry.npmjs.org/@trysound/sax/-/sax-0.2.0.tgz", - "integrity": "sha512-L7z9BgrNEcYyUYtF+HaEfiS5ebkh9jXqbszz7pC0hRBPaatV0XjSD3+eHrpqFemQfgwiFF0QPIarnIihIDn7OA==", + "license": "ISC", "engines": { "node": ">=10.13.0" } }, - "node_modules/@typechain/ethers-v5": { - "version": "11.0.0", - "resolved": "https://registry.npmjs.org/@typechain/ethers-v5/-/ethers-v5-11.0.0.tgz", - "integrity": "sha512-JDAvOjtzGuEQukgArIEseHznS2+v+vG3TpfODjNj4tu1kgmVu66G9gk7THOO04HJ5q+OJSLx9b46lc3GRGPIVA==", - "dev": true, - "dependencies": { - "lodash": "^4.17.15", - "ts-essentials": "^7.0.1" - }, - "peerDependencies": { - "@ethersproject/abi": "^5.0.0", - "@ethersproject/providers": "^5.0.0", - "ethers": "^5.1.3", - "typechain": "^8.2.0", - "typescript": ">=4.3.0" - } - }, "node_modules/@types/aria-query": { - "version": "4.2.2", - "resolved": "https://registry.npmjs.org/@types/aria-query/-/aria-query-4.2.2.tgz", - "integrity": "sha512-HnYpAE1Y6kRyKM/XkEuiRQhTHvkzMBurTHnpFLYLBGPIylZNPs9jJcuOOYWxPLJCSEtmZT0Y8rHDokKN7rRTig==" + "version": "5.0.1", + "license": "MIT" }, "node_modules/@types/babel__core": { - "version": "7.1.19", - "resolved": "https://registry.npmjs.org/@types/babel__core/-/babel__core-7.1.19.tgz", - "integrity": "sha512-WEOTgRsbYkvA/KCsDwVEGkd7WAr1e3g31VHQ8zy5gul/V1qKullU/BU5I68X5v7V3GnB9eotmom4v5a5gjxorw==", + "version": "7.20.1", + "license": "MIT", "dependencies": { - "@babel/parser": "^7.1.0", - "@babel/types": "^7.0.0", + "@babel/parser": "^7.20.7", + "@babel/types": "^7.20.7", "@types/babel__generator": "*", "@types/babel__template": "*", "@types/babel__traverse": "*" @@ -6177,41 +5767,36 @@ }, "node_modules/@types/babel__generator": { "version": "7.6.4", - "resolved": "https://registry.npmjs.org/@types/babel__generator/-/babel__generator-7.6.4.tgz", - "integrity": "sha512-tFkciB9j2K755yrTALxD44McOrk+gfpIpvC3sxHjRawj6PfnQxrse4Clq5y/Rq+G3mrBurMax/lG8Qn2t9mSsg==", + "license": "MIT", "dependencies": { "@babel/types": "^7.0.0" } }, "node_modules/@types/babel__template": { "version": "7.4.1", - "resolved": "https://registry.npmjs.org/@types/babel__template/-/babel__template-7.4.1.tgz", - "integrity": "sha512-azBFKemX6kMg5Io+/rdGT0dkGreboUVR0Cdm3fz9QJWpaQGJRQXl7C+6hOTCZcMll7KFyEQpgbYI2lHdsS4U7g==", + "license": "MIT", "dependencies": { "@babel/parser": "^7.1.0", "@babel/types": "^7.0.0" } }, "node_modules/@types/babel__traverse": { - "version": "7.17.1", - "resolved": "https://registry.npmjs.org/@types/babel__traverse/-/babel__traverse-7.17.1.tgz", - "integrity": "sha512-kVzjari1s2YVi77D3w1yuvohV2idweYXMCDzqBiVNN63TcDWrIlTVOYpqVrvbbyOE/IyzBoTKF0fdnLPEORFxA==", + "version": "7.20.1", + "license": "MIT", "dependencies": { - "@babel/types": "^7.3.0" + "@babel/types": "^7.20.7" } }, "node_modules/@types/bn.js": { "version": "5.1.1", - "resolved": "https://registry.npmjs.org/@types/bn.js/-/bn.js-5.1.1.tgz", - "integrity": "sha512-qNrYbZqMx0uJAfKnKclPh+dTwK33KfLHYqtyODwd5HnXOjnkhc4qgn3BrK6RWyGZm5+sIFE7Q7Vz6QQtJB7w7g==", + "license": "MIT", "dependencies": { "@types/node": "*" } }, "node_modules/@types/body-parser": { "version": "1.19.2", - "resolved": "https://registry.npmjs.org/@types/body-parser/-/body-parser-1.19.2.tgz", - "integrity": "sha512-ALYone6pm6QmwZoAgeyNksccT9Q4AWZQ6PvfwR37GT6r6FWUPguq6sUmNGSMV2Wr761oQoBxwGGa6DR5o1DC9g==", + "license": "MIT", "dependencies": { "@types/connect": "*", "@types/node": "*" @@ -6219,16 +5804,14 @@ }, "node_modules/@types/bonjour": { "version": "3.5.10", - "resolved": "https://registry.npmjs.org/@types/bonjour/-/bonjour-3.5.10.tgz", - "integrity": "sha512-p7ienRMiS41Nu2/igbJxxLDWrSZ0WxM8UQgCeO9KhoVF7cOVFkrKsiDr1EsJIla8vV3oEEjGcz11jc5yimhzZw==", + "license": "MIT", "dependencies": { "@types/node": "*" } }, "node_modules/@types/cacheable-request": { "version": "6.0.3", - "resolved": "https://registry.npmjs.org/@types/cacheable-request/-/cacheable-request-6.0.3.tgz", - "integrity": "sha512-IQ3EbTzGxIigb1I3qPZc1rWJnH0BmSKv5QYTalEwweFvyBDLSAe24zP0le/hyi7ecGfZVlIVAg4BZqb8WBwKqw==", + "license": "MIT", "dependencies": { "@types/http-cache-semantics": "*", "@types/keyv": "^3.1.4", @@ -6238,34 +5821,30 @@ }, "node_modules/@types/connect": { "version": "3.4.35", - "resolved": "https://registry.npmjs.org/@types/connect/-/connect-3.4.35.tgz", - "integrity": "sha512-cdeYyv4KWoEgpBISTxWvqYsVy444DOqehiF3fM3ne10AmJ62RSyNkUnxMJXHQWRQQX2eR94m5y1IZyDwBjV9FQ==", + "license": "MIT", "dependencies": { "@types/node": "*" } }, "node_modules/@types/connect-history-api-fallback": { - "version": "1.3.5", - "resolved": "https://registry.npmjs.org/@types/connect-history-api-fallback/-/connect-history-api-fallback-1.3.5.tgz", - "integrity": "sha512-h8QJa8xSb1WD4fpKBDcATDNGXghFj6/3GRWG6dhmRcu0RX1Ubasur2Uvx5aeEwlf0MwblEC2bMzzMQntxnw/Cw==", + "version": "1.5.0", + "license": "MIT", "dependencies": { "@types/express-serve-static-core": "*", "@types/node": "*" } }, "node_modules/@types/eslint": { - "version": "8.4.3", - "resolved": "https://registry.npmjs.org/@types/eslint/-/eslint-8.4.3.tgz", - "integrity": "sha512-YP1S7YJRMPs+7KZKDb9G63n8YejIwW9BALq7a5j2+H4yl6iOv9CB29edho+cuFRrvmJbbaH2yiVChKLJVysDGw==", + "version": "8.44.2", + "license": "MIT", "dependencies": { "@types/estree": "*", "@types/json-schema": "*" } }, "node_modules/@types/eslint-scope": { - "version": "3.7.3", - "resolved": "https://registry.npmjs.org/@types/eslint-scope/-/eslint-scope-3.7.3.tgz", - "integrity": "sha512-PB3ldyrcnAicT35TWPs5IcwKD8S333HMaa2VVv4+wdvebJkjWuW/xESoB8IwRcog8HYVYamb1g/R31Qv5Bx03g==", + "version": "3.7.4", + "license": "MIT", "dependencies": { "@types/eslint": "*", "@types/estree": "*" @@ -6273,42 +5852,38 @@ }, "node_modules/@types/estree": { "version": "1.0.1", - "resolved": "https://registry.npmjs.org/@types/estree/-/estree-1.0.1.tgz", - "integrity": "sha512-LG4opVs2ANWZ1TJoKc937iMmNstM/d0ae1vNbnBvBhqCSezgVUOzcLCqbI5elV8Vy6WKwKjaqR+zO9VKirBBCA==" + "license": "MIT" }, "node_modules/@types/express": { - "version": "4.17.13", - "resolved": "https://registry.npmjs.org/@types/express/-/express-4.17.13.tgz", - "integrity": "sha512-6bSZTPaTIACxn48l50SR+axgrqm6qXFIxrdAKaG6PaJk3+zuUr35hBlgT7vOmJcum+OEaIBLtHV/qloEAFITeA==", + "version": "4.17.17", + "license": "MIT", "dependencies": { "@types/body-parser": "*", - "@types/express-serve-static-core": "^4.17.18", + "@types/express-serve-static-core": "^4.17.33", "@types/qs": "*", "@types/serve-static": "*" } }, "node_modules/@types/express-serve-static-core": { - "version": "4.17.29", - "resolved": "https://registry.npmjs.org/@types/express-serve-static-core/-/express-serve-static-core-4.17.29.tgz", - "integrity": "sha512-uMd++6dMKS32EOuw1Uli3e3BPgdLIXmezcfHv7N4c1s3gkhikBplORPpMq3fuWkxncZN1reb16d5n8yhQ80x7Q==", + "version": "4.17.36", + "license": "MIT", "dependencies": { "@types/node": "*", "@types/qs": "*", - "@types/range-parser": "*" + "@types/range-parser": "*", + "@types/send": "*" } }, "node_modules/@types/graceful-fs": { - "version": "4.1.5", - "resolved": "https://registry.npmjs.org/@types/graceful-fs/-/graceful-fs-4.1.5.tgz", - "integrity": "sha512-anKkLmZZ+xm4p8JWBf4hElkM4XR+EZeA2M9BAkkTldmcyDY4mbdIJnRghDJH3Ov5ooY7/UAoENtmdMSkaAd7Cw==", + "version": "4.1.6", + "license": "MIT", "dependencies": { "@types/node": "*" } }, "node_modules/@types/hoist-non-react-statics": { "version": "3.3.1", - "resolved": "https://registry.npmjs.org/@types/hoist-non-react-statics/-/hoist-non-react-statics-3.3.1.tgz", - "integrity": "sha512-iMIqiko6ooLrTh1joXodJK5X9xeEALT1kM5G3ZLhD3hszxBdIEd5C75U834D9mLcINgD4OyZf5uQXjkuYydWvA==", + "license": "MIT", "dependencies": { "@types/react": "*", "hoist-non-react-statics": "^3.3.0" @@ -6316,128 +5891,111 @@ }, "node_modules/@types/html-minifier-terser": { "version": "6.1.0", - "resolved": "https://registry.npmjs.org/@types/html-minifier-terser/-/html-minifier-terser-6.1.0.tgz", - "integrity": "sha512-oh/6byDPnL1zeNXFrDXFLyZjkr1MsBG667IM792caf1L2UPOOMf65NFzjUH/ltyfwjAGfs1rsX1eftK0jC/KIg==" + "license": "MIT" }, "node_modules/@types/http-cache-semantics": { "version": "4.0.1", - "resolved": "https://registry.npmjs.org/@types/http-cache-semantics/-/http-cache-semantics-4.0.1.tgz", - "integrity": "sha512-SZs7ekbP8CN0txVG2xVRH6EgKmEm31BOxA07vkFaETzZz1xh+cbt8BcI0slpymvwhx5dlFnQG2rTlPVQn+iRPQ==" + "license": "MIT" + }, + "node_modules/@types/http-errors": { + "version": "2.0.1", + "license": "MIT" }, "node_modules/@types/http-proxy": { - "version": "1.17.9", - "resolved": "https://registry.npmjs.org/@types/http-proxy/-/http-proxy-1.17.9.tgz", - "integrity": "sha512-QsbSjA/fSk7xB+UXlCT3wHBy5ai9wOcNDWwZAtud+jXhwOM3l+EYZh8Lng4+/6n8uar0J7xILzqftJdJ/Wdfkw==", + "version": "1.17.11", + "license": "MIT", "dependencies": { "@types/node": "*" } }, "node_modules/@types/istanbul-lib-coverage": { "version": "2.0.4", - "resolved": "https://registry.npmjs.org/@types/istanbul-lib-coverage/-/istanbul-lib-coverage-2.0.4.tgz", - "integrity": "sha512-z/QT1XN4K4KYuslS23k62yDIDLwLFkzxOuMplDtObz0+y7VqJCaO2o+SPwHCvLFZh7xazvvoor2tA/hPz9ee7g==" + "license": "MIT" }, "node_modules/@types/istanbul-lib-report": { "version": "3.0.0", - "resolved": "https://registry.npmjs.org/@types/istanbul-lib-report/-/istanbul-lib-report-3.0.0.tgz", - "integrity": "sha512-plGgXAPfVKFoYfa9NpYDAkseG+g6Jr294RqeqcqDixSbU34MZVJRi/P+7Y8GDpzkEwLaGZZOpKIEmeVZNtKsrg==", + "license": "MIT", "dependencies": { "@types/istanbul-lib-coverage": "*" } }, "node_modules/@types/istanbul-reports": { "version": "3.0.1", - "resolved": "https://registry.npmjs.org/@types/istanbul-reports/-/istanbul-reports-3.0.1.tgz", - "integrity": "sha512-c3mAZEuK0lvBp8tmuL74XRKn1+y2dcwOUpH7x4WrF6gk1GIgiluDRgMYQtw2OFcBvAJWlt6ASU3tSqxp0Uu0Aw==", + "license": "MIT", "dependencies": { "@types/istanbul-lib-report": "*" } }, "node_modules/@types/jest": { "version": "27.5.2", - "resolved": "https://registry.npmjs.org/@types/jest/-/jest-27.5.2.tgz", - "integrity": "sha512-mpT8LJJ4CMeeahobofYWIjFo0xonRS/HfxnVEPMPFSQdGUt1uHCnoPT7Zhb+sjDU2wz0oKV0OLUR0WzrHNgfeA==", + "license": "MIT", "dependencies": { "jest-matcher-utils": "^27.0.0", "pretty-format": "^27.0.0" } }, "node_modules/@types/json-schema": { - "version": "7.0.11", - "resolved": "https://registry.npmjs.org/@types/json-schema/-/json-schema-7.0.11.tgz", - "integrity": "sha512-wOuvG1SN4Us4rez+tylwwwCV1psiNVOkJeM3AUWUNWg/jDQY2+HE/444y5gc+jBmRqASOm2Oeh5c1axHobwRKQ==" + "version": "7.0.12", + "license": "MIT" }, "node_modules/@types/json5": { "version": "0.0.29", - "resolved": "https://registry.npmjs.org/@types/json5/-/json5-0.0.29.tgz", - "integrity": "sha512-dRLjCWHYg4oaA77cxO64oO+7JwCwnIzkZPdrrC71jQmQtlhM556pwKo5bUzqvZndkVbeFLIIi+9TC40JNF5hNQ==" + "license": "MIT" }, "node_modules/@types/keyv": { "version": "3.1.4", - "resolved": "https://registry.npmjs.org/@types/keyv/-/keyv-3.1.4.tgz", - "integrity": "sha512-BQ5aZNSCpj7D6K2ksrRCTmKRLEpnPvWDiLPfoGyhZ++8YtiK9d/3DBKPJgry359X/P1PfruyYwvnvwFjuEiEIg==", + "license": "MIT", "dependencies": { "@types/node": "*" } }, "node_modules/@types/lru-cache": { "version": "5.1.1", - "resolved": "https://registry.npmjs.org/@types/lru-cache/-/lru-cache-5.1.1.tgz", - "integrity": "sha512-ssE3Vlrys7sdIzs5LOxCzTVMsU7i9oa/IaW92wF32JFb3CVczqOkru2xspuKczHEbG3nvmPY7IFqVmGGHdNbYw==", + "license": "MIT", "peer": true }, "node_modules/@types/mime": { "version": "1.3.2", - "resolved": "https://registry.npmjs.org/@types/mime/-/mime-1.3.2.tgz", - "integrity": "sha512-YATxVxgRqNH6nHEIsvg6k2Boc1JHI9ZbH5iWFFv/MTkchz3b1ieGDa5T0a9RznNdI0KhVbdbWSN+KWWrQZRxTw==" + "license": "MIT" }, "node_modules/@types/node": { - "version": "16.11.41", - "resolved": "https://registry.npmjs.org/@types/node/-/node-16.11.41.tgz", - "integrity": "sha512-mqoYK2TnVjdkGk8qXAVGc/x9nSaTpSrFaGFm43BUH3IdoBV0nta6hYaGmdOvIMlbHJbUEVen3gvwpwovAZKNdQ==" + "version": "16.18.46", + "license": "MIT" }, "node_modules/@types/parse-json": { "version": "4.0.0", - "resolved": "https://registry.npmjs.org/@types/parse-json/-/parse-json-4.0.0.tgz", - "integrity": "sha512-//oorEZjL6sbPcKUaCdIGlIUeH26mgzimjBB77G6XRgnDl/L5wOnpyBGRe/Mmf5CVW3PwEBE1NjiMZ/ssFh4wA==" + "license": "MIT" }, "node_modules/@types/pbkdf2": { "version": "3.1.0", - "resolved": "https://registry.npmjs.org/@types/pbkdf2/-/pbkdf2-3.1.0.tgz", - "integrity": "sha512-Cf63Rv7jCQ0LaL8tNXmEyqTHuIJxRdlS5vMh1mj5voN4+QFhVZnlZruezqpWYDiJ8UTzhP0VmeLXCmBk66YrMQ==", + "license": "MIT", "dependencies": { "@types/node": "*" } }, "node_modules/@types/prettier": { - "version": "2.6.3", - "resolved": "https://registry.npmjs.org/@types/prettier/-/prettier-2.6.3.tgz", - "integrity": "sha512-ymZk3LEC/fsut+/Q5qejp6R9O1rMxz3XaRHDV6kX8MrGAhOSPqVARbDi+EZvInBpw+BnCX3TD240byVkOfQsHg==" + "version": "2.7.3", + "license": "MIT" }, "node_modules/@types/prop-types": { "version": "15.7.5", - "resolved": "https://registry.npmjs.org/@types/prop-types/-/prop-types-15.7.5.tgz", - "integrity": "sha512-JCB8C6SnDoQf0cNycqd/35A7MjcnK+ZTqE7judS6o7utxUCg6imJg3QK2qzHKszlTjcj2cn+NwMB2i96ubpj7w==" + "license": "MIT" }, "node_modules/@types/q": { "version": "1.5.5", - "resolved": "https://registry.npmjs.org/@types/q/-/q-1.5.5.tgz", - "integrity": "sha512-L28j2FcJfSZOnL1WBjDYp2vUHCeIFlyYI/53EwD/rKUBQ7MtUUfbQWiyKJGpcnv4/WgrhWsFKrcPstcAt/J0tQ==" + "license": "MIT" }, "node_modules/@types/qs": { "version": "6.9.7", - "resolved": "https://registry.npmjs.org/@types/qs/-/qs-6.9.7.tgz", - "integrity": "sha512-FGa1F62FT09qcrueBA6qYTrJPVDzah9a+493+o2PCXsesWHIn27G98TsSMs3WPNbZIEj4+VJf6saSFpvD+3Zsw==" + "license": "MIT" }, "node_modules/@types/range-parser": { "version": "1.2.4", - "resolved": "https://registry.npmjs.org/@types/range-parser/-/range-parser-1.2.4.tgz", - "integrity": "sha512-EEhsLsD6UsDM1yFhAvy0Cjr6VwmpMWqFBCb9w07wVugF7w9nfajxLuVmngTIpgS6svCnm6Vaw+MZhoDCKnOfsw==" + "license": "MIT" }, "node_modules/@types/react": { - "version": "18.0.14", - "resolved": "https://registry.npmjs.org/@types/react/-/react-18.0.14.tgz", - "integrity": "sha512-x4gGuASSiWmo0xjDLpm5mPb52syZHJx02VKbqUKdLmKtAwIh63XClGsiTI1K6DO5q7ox4xAsQrU+Gl3+gGXF9Q==", + "version": "18.2.21", + "license": "MIT", "dependencies": { "@types/prop-types": "*", "@types/scheduler": "*", @@ -6445,154 +6003,157 @@ } }, "node_modules/@types/react-dom": { - "version": "18.0.5", - "resolved": "https://registry.npmjs.org/@types/react-dom/-/react-dom-18.0.5.tgz", - "integrity": "sha512-OWPWTUrY/NIrjsAPkAk1wW9LZeIjSvkXRhclsFO8CZcZGCOg2G0YZy4ft+rOyYxy8B7ui5iZzi9OkDebZ7/QSA==", + "version": "18.2.7", + "license": "MIT", "dependencies": { "@types/react": "*" } }, "node_modules/@types/react-is": { - "version": "17.0.3", - "resolved": "https://registry.npmjs.org/@types/react-is/-/react-is-17.0.3.tgz", - "integrity": "sha512-aBTIWg1emtu95bLTLx0cpkxwGW3ueZv71nE2YFBpL8k/z5czEW8yYpOo8Dp+UUAFAtKwNaOsh/ioSeQnWlZcfw==", + "version": "18.2.1", + "license": "MIT", "dependencies": { "@types/react": "*" } }, "node_modules/@types/react-transition-group": { - "version": "4.4.5", - "resolved": "https://registry.npmjs.org/@types/react-transition-group/-/react-transition-group-4.4.5.tgz", - "integrity": "sha512-juKD/eiSM3/xZYzjuzH6ZwpP+/lejltmiS3QEzV/vmb/Q8+HfDmxu+Baga8UEMGBqV88Nbg4l2hY/K2DkyaLLA==", + "version": "4.4.6", + "license": "MIT", "dependencies": { "@types/react": "*" } }, "node_modules/@types/readable-stream": { "version": "2.3.15", - "resolved": "https://registry.npmjs.org/@types/readable-stream/-/readable-stream-2.3.15.tgz", - "integrity": "sha512-oM5JSKQCcICF1wvGgmecmHldZ48OZamtMxcGGVICOJA8o8cahXC1zEVAif8iwoc5j8etxFaRFnf095+CDsuoFQ==", + "license": "MIT", "peer": true, "dependencies": { "@types/node": "*", "safe-buffer": "~5.1.1" } }, + "node_modules/@types/readable-stream/node_modules/safe-buffer": { + "version": "5.1.2", + "license": "MIT", + "peer": true + }, "node_modules/@types/resolve": { "version": "1.17.1", - "resolved": "https://registry.npmjs.org/@types/resolve/-/resolve-1.17.1.tgz", - "integrity": "sha512-yy7HuzQhj0dhGpD8RLXSZWEkLsV9ibvxvi6EiJ3bkqLAO1RGo0WbkWQiwpRlSFymTJRz0d3k5LM3kkx8ArDbLw==", + "license": "MIT", "dependencies": { "@types/node": "*" } }, "node_modules/@types/responselike": { "version": "1.0.0", - "resolved": "https://registry.npmjs.org/@types/responselike/-/responselike-1.0.0.tgz", - "integrity": "sha512-85Y2BjiufFzaMIlvJDvTTB8Fxl2xfLo4HgmHzVBz08w4wDePCTjYw66PdrolO0kzli3yam/YCgRufyo1DdQVTA==", + "license": "MIT", "dependencies": { "@types/node": "*" } }, "node_modules/@types/retry": { "version": "0.12.0", - "resolved": "https://registry.npmjs.org/@types/retry/-/retry-0.12.0.tgz", - "integrity": "sha512-wWKOClTTiizcZhXnPY4wikVAwmdYHp8q6DmC+EJUzAMsycb7HB32Kh9RN4+0gExjmPmZSAQjgURXIGATPegAvA==" + "license": "MIT" }, "node_modules/@types/scheduler": { - "version": "0.16.2", - "resolved": "https://registry.npmjs.org/@types/scheduler/-/scheduler-0.16.2.tgz", - "integrity": "sha512-hppQEBDmlwhFAXKJX2KnWLYu5yMfi91yazPb2l+lbJiwW+wdo1gNeRA+3RgNSO39WYX2euey41KEwnqesU2Jew==" + "version": "0.16.3", + "license": "MIT" }, "node_modules/@types/secp256k1": { "version": "4.0.3", - "resolved": "https://registry.npmjs.org/@types/secp256k1/-/secp256k1-4.0.3.tgz", - "integrity": "sha512-Da66lEIFeIz9ltsdMZcpQvmrmmoqrfju8pm1BH8WbYjZSwUgCwXLb9C+9XYogwBITnbsSaMdVPb2ekf7TV+03w==", + "license": "MIT", + "dependencies": { + "@types/node": "*" + } + }, + "node_modules/@types/semver": { + "version": "7.5.0", + "license": "MIT" + }, + "node_modules/@types/send": { + "version": "0.17.1", + "license": "MIT", "dependencies": { + "@types/mime": "^1", "@types/node": "*" } }, "node_modules/@types/serve-index": { "version": "1.9.1", - "resolved": "https://registry.npmjs.org/@types/serve-index/-/serve-index-1.9.1.tgz", - "integrity": "sha512-d/Hs3nWDxNL2xAczmOVZNj92YZCS6RGxfBPjKzuu/XirCgXdpKEb88dYNbrYGint6IVWLNP+yonwVAuRC0T2Dg==", + "license": "MIT", "dependencies": { "@types/express": "*" } }, "node_modules/@types/serve-static": { - "version": "1.13.10", - "resolved": "https://registry.npmjs.org/@types/serve-static/-/serve-static-1.13.10.tgz", - "integrity": "sha512-nCkHGI4w7ZgAdNkrEu0bv+4xNV/XDqW+DydknebMOQwkpDGx8G+HTlj7R7ABI8i8nKxVw0wtKPi1D+lPOkh4YQ==", + "version": "1.15.2", + "license": "MIT", "dependencies": { - "@types/mime": "^1", + "@types/http-errors": "*", + "@types/mime": "*", "@types/node": "*" } }, "node_modules/@types/sockjs": { "version": "0.3.33", - "resolved": "https://registry.npmjs.org/@types/sockjs/-/sockjs-0.3.33.tgz", - "integrity": "sha512-f0KEEe05NvUnat+boPTZ0dgaLZ4SfSouXUgv5noUiefG2ajgKjmETo9ZJyuqsl7dfl2aHlLJUiki6B4ZYldiiw==", + "license": "MIT", "dependencies": { "@types/node": "*" } }, "node_modules/@types/stack-utils": { "version": "2.0.1", - "resolved": "https://registry.npmjs.org/@types/stack-utils/-/stack-utils-2.0.1.tgz", - "integrity": "sha512-Hl219/BT5fLAaz6NDkSuhzasy49dwQS/DSdu4MdggFB8zcXv7vflBI3xp7FEmkmdDkBUI2bPUNeMttp2knYdxw==" + "license": "MIT" + }, + "node_modules/@types/stylis": { + "version": "4.2.0", + "license": "MIT" }, "node_modules/@types/testing-library__jest-dom": { - "version": "5.14.5", - "resolved": "https://registry.npmjs.org/@types/testing-library__jest-dom/-/testing-library__jest-dom-5.14.5.tgz", - "integrity": "sha512-SBwbxYoyPIvxHbeHxTZX2Pe/74F/tX2/D3mMvzabdeJ25bBojfW0TyB8BHrbq/9zaaKICJZjLP+8r6AeZMFCuQ==", + "version": "5.14.9", + "license": "MIT", "dependencies": { "@types/jest": "*" } }, "node_modules/@types/trusted-types": { - "version": "2.0.2", - "resolved": "https://registry.npmjs.org/@types/trusted-types/-/trusted-types-2.0.2.tgz", - "integrity": "sha512-F5DIZ36YVLE+PN+Zwws4kJogq47hNgX3Nx6WyDJ3kcplxyke3XIzB8uK5n/Lpm1HBsbGzd6nmGehL8cPekP+Tg==" + "version": "2.0.3", + "license": "MIT" }, "node_modules/@types/use-sync-external-store": { "version": "0.0.3", - "resolved": "https://registry.npmjs.org/@types/use-sync-external-store/-/use-sync-external-store-0.0.3.tgz", - "integrity": "sha512-EwmlvuaxPNej9+T4v5AuBPJa2x2UOJVdjCtDHgcDqitUeOtjnJKJ+apYjVcAoBEMjKW1VVFGZLUb5+qqa09XFA==" + "license": "MIT" }, "node_modules/@types/ws": { - "version": "8.5.3", - "resolved": "https://registry.npmjs.org/@types/ws/-/ws-8.5.3.tgz", - "integrity": "sha512-6YOoWjruKj1uLf3INHH7D3qTXwFfEsg1kf3c0uDdSBJwfa/llkwIjrAGV7j7mVgGNbzTQ3HiHKKDXl6bJPD97w==", + "version": "8.5.5", + "license": "MIT", "dependencies": { "@types/node": "*" } }, "node_modules/@types/yargs": { - "version": "16.0.4", - "resolved": "https://registry.npmjs.org/@types/yargs/-/yargs-16.0.4.tgz", - "integrity": "sha512-T8Yc9wt/5LbJyCaLiHPReJa0kApcIgJ7Bn735GjItUfh08Z1pJvu8QZqb9s+mMvKV6WUQRV7K2R46YbjMXTTJw==", + "version": "16.0.5", + "license": "MIT", "dependencies": { "@types/yargs-parser": "*" } }, "node_modules/@types/yargs-parser": { "version": "21.0.0", - "resolved": "https://registry.npmjs.org/@types/yargs-parser/-/yargs-parser-21.0.0.tgz", - "integrity": "sha512-iO9ZQHkZxHn4mSakYV0vFHAVDyEOIJQrV2uZ06HxEPcx+mt8swXoZHIbaaJ2crJYFfErySgktuTZ3BeLz+XmFA==" + "license": "MIT" }, "node_modules/@typescript-eslint/eslint-plugin": { - "version": "5.30.0", - "resolved": "https://registry.npmjs.org/@typescript-eslint/eslint-plugin/-/eslint-plugin-5.30.0.tgz", - "integrity": "sha512-lvhRJ2pGe2V9MEU46ELTdiHgiAFZPKtLhiU5wlnaYpMc2+c1R8fh8i80ZAa665drvjHKUJyRRGg3gEm1If54ow==", + "version": "5.62.0", + "license": "MIT", "dependencies": { - "@typescript-eslint/scope-manager": "5.30.0", - "@typescript-eslint/type-utils": "5.30.0", - "@typescript-eslint/utils": "5.30.0", + "@eslint-community/regexpp": "^4.4.0", + "@typescript-eslint/scope-manager": "5.62.0", + "@typescript-eslint/type-utils": "5.62.0", + "@typescript-eslint/utils": "5.62.0", "debug": "^4.3.4", - "functional-red-black-tree": "^1.0.1", + "graphemer": "^1.4.0", "ignore": "^5.2.0", - "regexpp": "^3.2.0", + "natural-compare-lite": "^1.4.0", "semver": "^7.3.7", "tsutils": "^3.21.0" }, @@ -6614,11 +6175,10 @@ } }, "node_modules/@typescript-eslint/experimental-utils": { - "version": "5.30.0", - "resolved": "https://registry.npmjs.org/@typescript-eslint/experimental-utils/-/experimental-utils-5.30.0.tgz", - "integrity": "sha512-k+EM/r2hxSMX+S+ji9qQVyVMeJ8IEunadngM+1rEDLdUbqQlYoUv78HWCKoOHJao+KSyLbhYHFhh7h54+rB63A==", + "version": "5.62.0", + "license": "MIT", "dependencies": { - "@typescript-eslint/utils": "5.30.0" + "@typescript-eslint/utils": "5.62.0" }, "engines": { "node": "^12.22.0 || ^14.17.0 || >=16.0.0" @@ -6632,13 +6192,12 @@ } }, "node_modules/@typescript-eslint/parser": { - "version": "5.30.0", - "resolved": "https://registry.npmjs.org/@typescript-eslint/parser/-/parser-5.30.0.tgz", - "integrity": "sha512-2oYYUws5o2liX6SrFQ5RB88+PuRymaM2EU02/9Ppoyu70vllPnHVO7ioxDdq/ypXHA277R04SVjxvwI8HmZpzA==", + "version": "5.62.0", + "license": "BSD-2-Clause", "dependencies": { - "@typescript-eslint/scope-manager": "5.30.0", - "@typescript-eslint/types": "5.30.0", - "@typescript-eslint/typescript-estree": "5.30.0", + "@typescript-eslint/scope-manager": "5.62.0", + "@typescript-eslint/types": "5.62.0", + "@typescript-eslint/typescript-estree": "5.62.0", "debug": "^4.3.4" }, "engines": { @@ -6658,12 +6217,11 @@ } }, "node_modules/@typescript-eslint/scope-manager": { - "version": "5.30.0", - "resolved": "https://registry.npmjs.org/@typescript-eslint/scope-manager/-/scope-manager-5.30.0.tgz", - "integrity": "sha512-3TZxvlQcK5fhTBw5solQucWSJvonXf5yua5nx8OqK94hxdrT7/6W3/CS42MLd/f1BmlmmbGEgQcTHHCktUX5bQ==", + "version": "5.62.0", + "license": "MIT", "dependencies": { - "@typescript-eslint/types": "5.30.0", - "@typescript-eslint/visitor-keys": "5.30.0" + "@typescript-eslint/types": "5.62.0", + "@typescript-eslint/visitor-keys": "5.62.0" }, "engines": { "node": "^12.22.0 || ^14.17.0 || >=16.0.0" @@ -6674,11 +6232,11 @@ } }, "node_modules/@typescript-eslint/type-utils": { - "version": "5.30.0", - "resolved": "https://registry.npmjs.org/@typescript-eslint/type-utils/-/type-utils-5.30.0.tgz", - "integrity": "sha512-GF8JZbZqSS+azehzlv/lmQQ3EU3VfWYzCczdZjJRxSEeXDQkqFhCBgFhallLDbPwQOEQ4MHpiPfkjKk7zlmeNg==", + "version": "5.62.0", + "license": "MIT", "dependencies": { - "@typescript-eslint/utils": "5.30.0", + "@typescript-eslint/typescript-estree": "5.62.0", + "@typescript-eslint/utils": "5.62.0", "debug": "^4.3.4", "tsutils": "^3.21.0" }, @@ -6699,9 +6257,8 @@ } }, "node_modules/@typescript-eslint/types": { - "version": "5.30.0", - "resolved": "https://registry.npmjs.org/@typescript-eslint/types/-/types-5.30.0.tgz", - "integrity": "sha512-vfqcBrsRNWw/LBXyncMF/KrUTYYzzygCSsVqlZ1qGu1QtGs6vMkt3US0VNSQ05grXi5Yadp3qv5XZdYLjpp8ag==", + "version": "5.62.0", + "license": "MIT", "engines": { "node": "^12.22.0 || ^14.17.0 || >=16.0.0" }, @@ -6711,12 +6268,11 @@ } }, "node_modules/@typescript-eslint/typescript-estree": { - "version": "5.30.0", - "resolved": "https://registry.npmjs.org/@typescript-eslint/typescript-estree/-/typescript-estree-5.30.0.tgz", - "integrity": "sha512-hDEawogreZB4n1zoqcrrtg/wPyyiCxmhPLpZ6kmWfKF5M5G0clRLaEexpuWr31fZ42F96SlD/5xCt1bT5Qm4Nw==", + "version": "5.62.0", + "license": "BSD-2-Clause", "dependencies": { - "@typescript-eslint/types": "5.30.0", - "@typescript-eslint/visitor-keys": "5.30.0", + "@typescript-eslint/types": "5.62.0", + "@typescript-eslint/visitor-keys": "5.62.0", "debug": "^4.3.4", "globby": "^11.1.0", "is-glob": "^4.0.3", @@ -6737,16 +6293,17 @@ } }, "node_modules/@typescript-eslint/utils": { - "version": "5.30.0", - "resolved": "https://registry.npmjs.org/@typescript-eslint/utils/-/utils-5.30.0.tgz", - "integrity": "sha512-0bIgOgZflLKIcZsWvfklsaQTM3ZUbmtH0rJ1hKyV3raoUYyeZwcjQ8ZUJTzS7KnhNcsVT1Rxs7zeeMHEhGlltw==", + "version": "5.62.0", + "license": "MIT", "dependencies": { + "@eslint-community/eslint-utils": "^4.2.0", "@types/json-schema": "^7.0.9", - "@typescript-eslint/scope-manager": "5.30.0", - "@typescript-eslint/types": "5.30.0", - "@typescript-eslint/typescript-estree": "5.30.0", + "@types/semver": "^7.3.12", + "@typescript-eslint/scope-manager": "5.62.0", + "@typescript-eslint/types": "5.62.0", + "@typescript-eslint/typescript-estree": "5.62.0", "eslint-scope": "^5.1.1", - "eslint-utils": "^3.0.0" + "semver": "^7.3.7" }, "engines": { "node": "^12.22.0 || ^14.17.0 || >=16.0.0" @@ -6761,8 +6318,7 @@ }, "node_modules/@typescript-eslint/utils/node_modules/eslint-scope": { "version": "5.1.1", - "resolved": "https://registry.npmjs.org/eslint-scope/-/eslint-scope-5.1.1.tgz", - "integrity": "sha512-2NxwbF/hZ0KpepYN0cNbo+FN6XoK7GaHlQhgx/hIZl6Va0bF45RQOOwhLIy8lQDbuCiadSLCBnH2CFYquit5bw==", + "license": "BSD-2-Clause", "dependencies": { "esrecurse": "^4.3.0", "estraverse": "^4.1.1" @@ -6773,18 +6329,16 @@ }, "node_modules/@typescript-eslint/utils/node_modules/estraverse": { "version": "4.3.0", - "resolved": "https://registry.npmjs.org/estraverse/-/estraverse-4.3.0.tgz", - "integrity": "sha512-39nnKffWz8xN1BU/2c79n9nB9HDzo0niYUqx6xyqUnyoAnQyyWpOTdZEeiCch8BBu515t4wp9ZmgVfVhn9EBpw==", + "license": "BSD-2-Clause", "engines": { "node": ">=4.0" } }, "node_modules/@typescript-eslint/visitor-keys": { - "version": "5.30.0", - "resolved": "https://registry.npmjs.org/@typescript-eslint/visitor-keys/-/visitor-keys-5.30.0.tgz", - "integrity": "sha512-6WcIeRk2DQ3pHKxU1Ni0qMXJkjO/zLjBymlYBy/53qxe7yjEFSvzKLDToJjURUhSl2Fzhkl4SMXQoETauF74cw==", + "version": "5.62.0", + "license": "MIT", "dependencies": { - "@typescript-eslint/types": "5.30.0", + "@typescript-eslint/types": "5.62.0", "eslint-visitor-keys": "^3.3.0" }, "engines": { @@ -6796,31 +6350,23 @@ } }, "node_modules/@uniswap/conedison": { - "version": "1.6.0", - "resolved": "https://registry.npmjs.org/@uniswap/conedison/-/conedison-1.6.0.tgz", - "integrity": "sha512-ZoXOkGgSndRECElK5mAezjbwOlwzkn71swQ3rFQlivPChdLaD0SprCNnuNkwj+sdRm2dRtmX9V3L9KDVVWhLDQ==", + "version": "1.8.0", + "license": "GPL-3.0-or-later", "peerDependencies": { "@uniswap/sdk-core": ">=3", "ethers": "^5.6.1" } }, - "node_modules/@uniswap/default-token-list": { - "version": "2.3.0", - "resolved": "https://registry.npmjs.org/@uniswap/default-token-list/-/default-token-list-2.3.0.tgz", - "integrity": "sha512-yfd4snv9K20tEbNwy9Vjym41RU3Yb2lN0seKxsgkr+m3f6oub2lWyXfTiNwgGFbOQPDvX4dxjMhA+M+S7mxqKg==" - }, "node_modules/@uniswap/lib": { "version": "4.0.1-alpha", - "resolved": "https://registry.npmjs.org/@uniswap/lib/-/lib-4.0.1-alpha.tgz", - "integrity": "sha512-f6UIliwBbRsgVLxIaBANF6w09tYqc6Y/qXdsrbEmXHyFA7ILiKrIwRFXe1yOg8M3cksgVsO9N7yuL2DdCGQKBA==", + "license": "GPL-3.0-or-later", "engines": { "node": ">=10" } }, "node_modules/@uniswap/permit2-sdk": { "version": "1.2.0", - "resolved": "https://registry.npmjs.org/@uniswap/permit2-sdk/-/permit2-sdk-1.2.0.tgz", - "integrity": "sha512-Ietv3FxN7+RCXcPSED/i/8b0a2GUZrMdyX05k3FsSztvYKyPFAMS/hBXojF0NZqYB1bHecqYc7Ej+7tV/rdYXg==", + "license": "MIT", "dependencies": { "ethers": "^5.3.1", "tiny-invariant": "^1.3.1" @@ -6828,8 +6374,7 @@ }, "node_modules/@uniswap/redux-multicall": { "version": "1.1.8", - "resolved": "https://registry.npmjs.org/@uniswap/redux-multicall/-/redux-multicall-1.1.8.tgz", - "integrity": "sha512-LttOBVJuoRNC6N4MHsb5dF2GszLsj1ddPKKccEw1XOX17bGrFdm2A6GwKgES+v+Hj3lluDbQL6atcQtymP21iw==", + "license": "MIT", "engines": { "node": ">=10" }, @@ -6842,22 +6387,9 @@ "react-redux": ">=7" } }, - "node_modules/@uniswap/router-sdk": { - "version": "1.4.0", - "resolved": "https://registry.npmjs.org/@uniswap/router-sdk/-/router-sdk-1.4.0.tgz", - "integrity": "sha512-GyUX8x+hnwnh89DHyA/yKWUwhU3Eukx3B76vfvMMWfr++GA4CW6PzT5j4JgNZDrsBTOSJWxTdU5YbgOuwU2XGg==", - "dependencies": { - "@ethersproject/abi": "^5.5.0", - "@uniswap/sdk-core": "^3.0.1", - "@uniswap/swap-router-contracts": "1.1.0", - "@uniswap/v2-sdk": "^3.0.1", - "@uniswap/v3-sdk": "^3.8.3" - } - }, "node_modules/@uniswap/sdk-core": { - "version": "3.2.2", - "resolved": "https://registry.npmjs.org/@uniswap/sdk-core/-/sdk-core-3.2.2.tgz", - "integrity": "sha512-dPA34T8EVfFzKtw1NC1Mr7M0aXpY1UN+lUpdBv757JxKKMlGQTg96XTIfjYCflqEshxlBdz2+IVQgk6H+dMu5g==", + "version": "3.2.3", + "license": "MIT", "dependencies": { "@ethersproject/address": "^5.0.2", "big.js": "^5.2.2", @@ -6870,46 +6402,9 @@ "node": ">=10" } }, - "node_modules/@uniswap/smart-order-router": { - "version": "2.10.2", - "resolved": "https://registry.npmjs.org/@uniswap/smart-order-router/-/smart-order-router-2.10.2.tgz", - "integrity": "sha512-Nq/O5p5vUxcGL2PpdB4/mjq0cgfpisPA8Q29dPs3+dgYJ3PNgIasCoENMHgauTvCFCNyql+GwanfeW/DtEcd5A==", - "dependencies": { - "@uniswap/default-token-list": "^2.0.0", - "@uniswap/router-sdk": "^1.3.0", - "@uniswap/swap-router-contracts": "^1.3.0", - "@uniswap/token-lists": "^1.0.0-beta.25", - "@uniswap/v2-sdk": "^3.0.1", - "@uniswap/v3-sdk": "^3.7.0", - "async-retry": "^1.3.1", - "await-timeout": "^1.1.1", - "axios": "^0.21.1", - "bunyan": "^1.8.15", - "bunyan-blackhole": "^1.1.1", - "ethers": "^5.6.1", - "graphql": "^15.5.0", - "graphql-request": "^3.4.0", - "lodash": "^4.17.21", - "mnemonist": "^0.38.3", - "node-cache": "^5.1.2", - "stats-lite": "^2.2.0" - }, - "engines": { - "node": ">=10" - }, - "peerDependencies": { - "jsbi": "^3.2.0" - } - }, - "node_modules/@uniswap/smart-order-router/node_modules/@openzeppelin/contracts": { - "version": "3.4.2-solc-0.7", - "resolved": "https://registry.npmjs.org/@openzeppelin/contracts/-/contracts-3.4.2-solc-0.7.tgz", - "integrity": "sha512-W6QmqgkADuFcTLzHL8vVoNBtkwjvQRpYIAom7KiUNoLKghyx3FgH0GBjt8NRvigV1ZmMOBllvE1By1C+bi8WpA==" - }, - "node_modules/@uniswap/smart-order-router/node_modules/@uniswap/swap-router-contracts": { + "node_modules/@uniswap/swap-router-contracts": { "version": "1.3.0", - "resolved": "https://registry.npmjs.org/@uniswap/swap-router-contracts/-/swap-router-contracts-1.3.0.tgz", - "integrity": "sha512-iKvCuRkHXEe0EMjOf8HFUISTIhlxI57kKFllf3C3PUIE0HmwxrayyoflwAz5u/TRsFGYqJ9IjX2UgzLCsrNa5A==", + "license": "GPL-2.0-or-later", "dependencies": { "@openzeppelin/contracts": "3.4.2-solc-0.7", "@uniswap/v2-core": "1.0.1", @@ -6922,10 +6417,9 @@ "node": ">=10" } }, - "node_modules/@uniswap/smart-order-router/node_modules/@uniswap/v3-periphery": { + "node_modules/@uniswap/swap-router-contracts/node_modules/@uniswap/v3-periphery": { "version": "1.4.1", - "resolved": "https://registry.npmjs.org/@uniswap/v3-periphery/-/v3-periphery-1.4.1.tgz", - "integrity": "sha512-Ab0ZCKOQrQMKIcpBTezTsEhWfQjItd0TtkCG8mPhoQu+wC67nPaf4hYUhM6wGHeFUmDiYY5MpEQuokB0ENvoTg==", + "license": "GPL-2.0-or-later", "dependencies": { "@openzeppelin/contracts": "3.4.2-solc-0.7", "@uniswap/lib": "^4.0.1-alpha", @@ -6938,81 +6432,34 @@ "node": ">=10" } }, - "node_modules/@uniswap/swap-router-contracts": { - "version": "1.1.0", - "resolved": "https://registry.npmjs.org/@uniswap/swap-router-contracts/-/swap-router-contracts-1.1.0.tgz", - "integrity": "sha512-GPmpx1lvjXWloB95+YUabr3UHJYr3scnSS8EzaNXnNrIz9nYZ+XQcMaJxOKe85Yi7IfcUQpj0HzD2TW99dtolA==", - "dependencies": { - "@openzeppelin/contracts": "3.4.1-solc-0.7-2", - "@uniswap/v2-core": "1.0.1", - "@uniswap/v3-core": "1.0.0", - "@uniswap/v3-periphery": "1.3.0", - "hardhat-watcher": "^2.1.1" - }, + "node_modules/@uniswap/swap-router-contracts/node_modules/dotenv": { + "version": "14.3.2", + "license": "BSD-2-Clause", "engines": { - "node": ">=10" + "node": ">=12" } }, "node_modules/@uniswap/token-lists": { - "version": "1.0.0-beta.31", - "resolved": "https://registry.npmjs.org/@uniswap/token-lists/-/token-lists-1.0.0-beta.31.tgz", - "integrity": "sha512-BQVoelKCRf64IToPEs1wxiXOnhr/ukwPOF78XG11PrTAOL4F8umjYKFb8ZPv1/dIJsPaC7GhLSriEqyp94SasQ==", + "version": "1.0.0-beta.33", + "license": "MIT", "engines": { "node": ">=10" } }, - "node_modules/@uniswap/universal-router": { - "version": "1.3.1", - "resolved": "https://registry.npmjs.org/@uniswap/universal-router/-/universal-router-1.3.1.tgz", - "integrity": "sha512-JJY4Z1aXJ70OB08WKl+wSazTfV7pZ1bXgKRhvPLSv8/4HXxQPCYMVi53Waeu93VdAdaYt1jviWR+uRV6a6/uoA==", - "dependencies": { - "@openzeppelin/contracts": "4.7.0", - "@uniswap/v2-core": "1.0.1", - "@uniswap/v3-core": "1.0.0" - }, - "engines": { - "node": ">=14" - } - }, - "node_modules/@uniswap/universal-router-sdk": { - "version": "1.4.4", - "resolved": "https://registry.npmjs.org/@uniswap/universal-router-sdk/-/universal-router-sdk-1.4.4.tgz", - "integrity": "sha512-yrcMAYV8Ytpgo2Gyih/4qgBi26okIjr6ztU8aW82gDXt95P3uaShP9Sc3yrOlqeAaUiRUHdPVhxSokMfVDXbRg==", - "dependencies": { - "@uniswap/permit2-sdk": "^1.2.0", - "@uniswap/router-sdk": "^1.4.0", - "@uniswap/sdk-core": "^3.1.0", - "@uniswap/universal-router": "1.3.1", - "@uniswap/v2-sdk": "^3.0.1", - "@uniswap/v3-sdk": "^3.9.0", - "bignumber.js": "^9.0.2", - "ethers": "^5.3.1" - }, - "engines": { - "node": ">=14" - } - }, - "node_modules/@uniswap/universal-router/node_modules/@openzeppelin/contracts": { - "version": "4.7.0", - "resolved": "https://registry.npmjs.org/@openzeppelin/contracts/-/contracts-4.7.0.tgz", - "integrity": "sha512-52Qb+A1DdOss8QvJrijYYPSf32GUg2pGaG/yCxtaA3cu4jduouTdg4XZSMLW9op54m1jH7J8hoajhHKOPsoJFw==" - }, "node_modules/@uniswap/v2-core": { "version": "1.0.1", - "resolved": "https://registry.npmjs.org/@uniswap/v2-core/-/v2-core-1.0.1.tgz", - "integrity": "sha512-MtybtkUPSyysqLY2U210NBDeCHX+ltHt3oADGdjqoThZaFRDKwM6k1Nb3F0A3hk5hwuQvytFWhrWHOEq6nVJ8Q==", + "license": "GPL-3.0-or-later", "engines": { "node": ">=10" } }, "node_modules/@uniswap/v2-sdk": { - "version": "3.0.1", - "resolved": "https://registry.npmjs.org/@uniswap/v2-sdk/-/v2-sdk-3.0.1.tgz", - "integrity": "sha512-eSpm2gjo2CZh9FACH5fq42str/oSNyWcDxB27o5k44bEew4sxb+pld4gGIf/byJndLBvArR9PtH8c0n/goNOTw==", + "version": "3.2.0", + "license": "MIT", "dependencies": { "@ethersproject/address": "^5.0.0", "@ethersproject/solidity": "^5.0.0", - "@uniswap/sdk-core": "^3.0.0-alpha.3", + "@uniswap/sdk-core": "^4.0.2", "tiny-invariant": "^1.1.0", "tiny-warning": "^1.0.3" }, @@ -7020,38 +6467,49 @@ "node": ">=10" } }, + "node_modules/@uniswap/v2-sdk/node_modules/@uniswap/sdk-core": { + "version": "4.0.6", + "license": "MIT", + "dependencies": { + "@ethersproject/address": "^5.0.2", + "big.js": "^5.2.2", + "decimal.js-light": "^2.5.0", + "jsbi": "^3.1.4", + "tiny-invariant": "^1.1.0", + "toformat": "^2.0.0" + }, + "engines": { + "node": ">=10" + } + }, "node_modules/@uniswap/v3-core": { "version": "1.0.0", - "resolved": "https://registry.npmjs.org/@uniswap/v3-core/-/v3-core-1.0.0.tgz", - "integrity": "sha512-kSC4djMGKMHj7sLMYVnn61k9nu+lHjMIxgg9CDQT+s2QYLoA56GbSK9Oxr+qJXzzygbkrmuY6cwgP6cW2JXPFA==", + "license": "BUSL-1.1", "engines": { "node": ">=10" } }, "node_modules/@uniswap/v3-periphery": { - "version": "1.3.0", - "resolved": "https://registry.npmjs.org/@uniswap/v3-periphery/-/v3-periphery-1.3.0.tgz", - "integrity": "sha512-HjHdI5RkjBl8zz3bqHShrbULFoZSrjbbrRHoO2vbzn+WRzTa6xY4PWphZv2Tlcb38YEKfKHp6NPl5hVedac8uw==", + "version": "1.4.3", + "license": "GPL-2.0-or-later", "dependencies": { - "@openzeppelin/contracts": "3.4.1-solc-0.7-2", + "@openzeppelin/contracts": "3.4.2-solc-0.7", "@uniswap/lib": "^4.0.1-alpha", "@uniswap/v2-core": "1.0.1", "@uniswap/v3-core": "1.0.0", - "base64-sol": "1.0.1", - "hardhat-watcher": "^2.1.1" + "base64-sol": "1.0.1" }, "engines": { "node": ">=10" } }, "node_modules/@uniswap/v3-sdk": { - "version": "3.9.0", - "resolved": "https://registry.npmjs.org/@uniswap/v3-sdk/-/v3-sdk-3.9.0.tgz", - "integrity": "sha512-LuoF3UcY1DxSAQKJ3E4/1Eq4HaNp+x+7q9mvbpiu+/PBj+O1DjLforAMrKxu+RsA0aarmZtz7yBnAPy+akgfgQ==", + "version": "3.10.0", + "license": "MIT", "dependencies": { "@ethersproject/abi": "^5.0.12", "@ethersproject/solidity": "^5.0.9", - "@uniswap/sdk-core": "^3.0.1", + "@uniswap/sdk-core": "^4", "@uniswap/swap-router-contracts": "^1.2.1", "@uniswap/v3-periphery": "^1.1.1", "@uniswap/v3-staker": "1.0.0", @@ -7062,38 +6520,16 @@ "node": ">=10" } }, - "node_modules/@uniswap/v3-sdk/node_modules/@openzeppelin/contracts": { - "version": "3.4.2-solc-0.7", - "resolved": "https://registry.npmjs.org/@openzeppelin/contracts/-/contracts-3.4.2-solc-0.7.tgz", - "integrity": "sha512-W6QmqgkADuFcTLzHL8vVoNBtkwjvQRpYIAom7KiUNoLKghyx3FgH0GBjt8NRvigV1ZmMOBllvE1By1C+bi8WpA==" - }, - "node_modules/@uniswap/v3-sdk/node_modules/@uniswap/swap-router-contracts": { - "version": "1.3.0", - "resolved": "https://registry.npmjs.org/@uniswap/swap-router-contracts/-/swap-router-contracts-1.3.0.tgz", - "integrity": "sha512-iKvCuRkHXEe0EMjOf8HFUISTIhlxI57kKFllf3C3PUIE0HmwxrayyoflwAz5u/TRsFGYqJ9IjX2UgzLCsrNa5A==", - "dependencies": { - "@openzeppelin/contracts": "3.4.2-solc-0.7", - "@uniswap/v2-core": "1.0.1", - "@uniswap/v3-core": "1.0.0", - "@uniswap/v3-periphery": "1.4.1", - "dotenv": "^14.2.0", - "hardhat-watcher": "^2.1.1" - }, - "engines": { - "node": ">=10" - } - }, - "node_modules/@uniswap/v3-sdk/node_modules/@uniswap/v3-periphery": { - "version": "1.4.1", - "resolved": "https://registry.npmjs.org/@uniswap/v3-periphery/-/v3-periphery-1.4.1.tgz", - "integrity": "sha512-Ab0ZCKOQrQMKIcpBTezTsEhWfQjItd0TtkCG8mPhoQu+wC67nPaf4hYUhM6wGHeFUmDiYY5MpEQuokB0ENvoTg==", + "node_modules/@uniswap/v3-sdk/node_modules/@uniswap/sdk-core": { + "version": "4.0.6", + "license": "MIT", "dependencies": { - "@openzeppelin/contracts": "3.4.2-solc-0.7", - "@uniswap/lib": "^4.0.1-alpha", - "@uniswap/v2-core": "1.0.1", - "@uniswap/v3-core": "1.0.0", - "base64-sol": "1.0.1", - "hardhat-watcher": "^2.1.1" + "@ethersproject/address": "^5.0.2", + "big.js": "^5.2.2", + "decimal.js-light": "^2.5.0", + "jsbi": "^3.1.4", + "tiny-invariant": "^1.1.0", + "toformat": "^2.0.0" }, "engines": { "node": ">=10" @@ -7101,9 +6537,7 @@ }, "node_modules/@uniswap/v3-staker": { "version": "1.0.0", - "resolved": "https://registry.npmjs.org/@uniswap/v3-staker/-/v3-staker-1.0.0.tgz", - "integrity": "sha512-JV0Qc46Px5alvg6YWd+UIaGH9lDuYG/Js7ngxPit1SPaIP30AlVer1UYB7BRYeUVVxE+byUyIeN5jeQ7LLDjIw==", - "deprecated": "Please upgrade to 1.0.1", + "license": "GPL-3.0-or-later", "dependencies": { "@openzeppelin/contracts": "3.4.1-solc-0.7-2", "@uniswap/v3-core": "1.0.0", @@ -7113,15 +6547,17 @@ "node": ">=10" } }, + "node_modules/@uniswap/v3-staker/node_modules/@openzeppelin/contracts": { + "version": "3.4.1-solc-0.7-2", + "license": "MIT" + }, "node_modules/@vibrant/color": { "version": "3.2.1-alpha.1", - "resolved": "https://registry.npmjs.org/@vibrant/color/-/color-3.2.1-alpha.1.tgz", - "integrity": "sha512-cvm+jAPwao2NerTr3d1JttYyLhp3eD/AQBeevxF7KT6HctToWZCwr2AeTr003/wKgbjzdOV1qySnbyOeu+R+Jw==" + "license": "MIT" }, "node_modules/@vibrant/core": { "version": "3.2.1-alpha.1", - "resolved": "https://registry.npmjs.org/@vibrant/core/-/core-3.2.1-alpha.1.tgz", - "integrity": "sha512-X9Oa9WfPEQnZ6L+5dLRlh+IlsxJkYTw9b/g3stFKoNXbVRKCeXHmH48l7jIBBOg3VcXOGUdsYBqsTwPNkIveaA==", + "license": "MIT", "dependencies": { "@vibrant/color": "^3.2.1-alpha.1", "@vibrant/generator": "^3.2.1-alpha.1", @@ -7133,8 +6569,7 @@ }, "node_modules/@vibrant/generator": { "version": "3.2.1-alpha.1", - "resolved": "https://registry.npmjs.org/@vibrant/generator/-/generator-3.2.1-alpha.1.tgz", - "integrity": "sha512-luS5YvMhwMqG01YTj1dJ+cmkuIw1VCByOR6zIaCOwQqI/mcOs88JBWcA1r2TywJTOPlVpjfnDvAlyaKBKh4dMA==", + "license": "MIT", "dependencies": { "@vibrant/color": "^3.2.1-alpha.1", "@vibrant/types": "^3.2.1-alpha.1" @@ -7142,8 +6577,7 @@ }, "node_modules/@vibrant/generator-default": { "version": "3.2.1-alpha.1", - "resolved": "https://registry.npmjs.org/@vibrant/generator-default/-/generator-default-3.2.1-alpha.1.tgz", - "integrity": "sha512-BWnQhDaz92UhyHnpdAzKXHQecY+jvyMXtzjKYbveFxThm6+HVoLjwONlbck7oyOpFzV2OM7V11XuR85BxaHvjw==", + "license": "MIT", "dependencies": { "@vibrant/color": "^3.2.1-alpha.1", "@vibrant/generator": "^3.2.1-alpha.1" @@ -7151,8 +6585,7 @@ }, "node_modules/@vibrant/image": { "version": "3.2.1-alpha.1", - "resolved": "https://registry.npmjs.org/@vibrant/image/-/image-3.2.1-alpha.1.tgz", - "integrity": "sha512-4aF5k79QfyhZOqRovJpbnIjWfe3uuWhY8voqVdd4/qgu4o70/AwVlM+pYmCaJVzI45VWNWWHYA5QlYuKsXnBqQ==", + "license": "MIT", "dependencies": { "@vibrant/color": "^3.2.1-alpha.1", "@vibrant/types": "^3.2.1-alpha.1" @@ -7160,16 +6593,14 @@ }, "node_modules/@vibrant/image-browser": { "version": "3.2.1-alpha.1", - "resolved": "https://registry.npmjs.org/@vibrant/image-browser/-/image-browser-3.2.1-alpha.1.tgz", - "integrity": "sha512-6xWvQfB20sE6YtCWylgEAHuee3iD8h3aFIDbCS2yj7jIelKcYTrrp5jg2d2BhOOB6pC5JzF+QfpCrm0DmAIlgQ==", + "license": "MIT", "dependencies": { "@vibrant/image": "^3.2.1-alpha.1" } }, "node_modules/@vibrant/image-node": { "version": "3.2.1-alpha.1", - "resolved": "https://registry.npmjs.org/@vibrant/image-node/-/image-node-3.2.1-alpha.1.tgz", - "integrity": "sha512-/Io/Rpo4EkO6AhaXdcxUXkbOFhSFtjm0LSAM4c0AyGA5EbC8PyZqjk8b11bQAEMCaYaweFQfTdGD7oVbXe21CQ==", + "license": "MIT", "dependencies": { "@jimp/custom": "^0.16.1", "@jimp/plugin-resize": "^0.16.1", @@ -7179,8 +6610,7 @@ }, "node_modules/@vibrant/quantizer": { "version": "3.2.1-alpha.1", - "resolved": "https://registry.npmjs.org/@vibrant/quantizer/-/quantizer-3.2.1-alpha.1.tgz", - "integrity": "sha512-iHnPx/+n4iLtYLm1GClSfyg2fFbMatFG0ipCyp9M6tXNIPAg+pSvUJSGBnVnH7Nl/bR8Gkkj1h0pJ4RsKcdIrQ==", + "license": "MIT", "dependencies": { "@vibrant/color": "^3.2.1-alpha.1", "@vibrant/image": "^3.2.1-alpha.1", @@ -7189,8 +6619,7 @@ }, "node_modules/@vibrant/quantizer-mmcq": { "version": "3.2.1-alpha.1", - "resolved": "https://registry.npmjs.org/@vibrant/quantizer-mmcq/-/quantizer-mmcq-3.2.1-alpha.1.tgz", - "integrity": "sha512-Wuk9PTZtxr8qsWTcgP6lcrrmrq36syVwxf+BUxdgQYntBcQ053SaN34lVGOJ0WPdK5vABoxbYljhceCgiILtZw==", + "license": "MIT", "dependencies": { "@vibrant/color": "^3.2.1-alpha.1", "@vibrant/image": "^3.2.1-alpha.1", @@ -7199,29 +6628,25 @@ }, "node_modules/@vibrant/types": { "version": "3.2.1-alpha.1", - "resolved": "https://registry.npmjs.org/@vibrant/types/-/types-3.2.1-alpha.1.tgz", - "integrity": "sha512-ts9u7nsrENoYI5s0MmPOeY5kCLFKvQndKVDOPFCbTA0z493uhDp8mpiQhjFYTf3kPbS04z9zbHLE2luFC7x4KQ==" + "license": "MIT" }, "node_modules/@vibrant/worker": { "version": "3.2.1-alpha.1", - "resolved": "https://registry.npmjs.org/@vibrant/worker/-/worker-3.2.1-alpha.1.tgz", - "integrity": "sha512-mtSlBdHkFNr4FOnMtqtHJxy9z5AsUcZzGlpiHzvWOoaoN9lNTDPwxOBd0q4VTYWuGPrIm6Fuq5m7aRbLv7KqiQ==", + "license": "MIT", "dependencies": { "@vibrant/types": "^3.2.1-alpha.1" } }, "node_modules/@web3-react/abstract-connector": { "version": "6.0.7", - "resolved": "https://registry.npmjs.org/@web3-react/abstract-connector/-/abstract-connector-6.0.7.tgz", - "integrity": "sha512-RhQasA4Ox8CxUC0OENc1AJJm8UTybu/oOCM61Zjg6y0iF7Z0sqv1Ai1VdhC33hrQpA8qSBgoXN9PaP8jKmtdqg==", + "license": "GPL-3.0-or-later", "dependencies": { "@web3-react/types": "^6.0.7" } }, "node_modules/@web3-react/core": { "version": "6.1.9", - "resolved": "https://registry.npmjs.org/@web3-react/core/-/core-6.1.9.tgz", - "integrity": "sha512-P877DslsbAkWIlMANpWiK7pCvNwlz0kJC0EGckuVh0wlA23J4UnFxq6xyOaxkxaDCu14rA/tAO0NbwjcXTQgSA==", + "license": "GPL-3.0-or-later", "dependencies": { "@ethersproject/keccak256": "^5.0.0-beta.130", "@web3-react/abstract-connector": "^6.0.7", @@ -7235,8 +6660,7 @@ }, "node_modules/@web3-react/injected-connector": { "version": "6.0.7", - "resolved": "https://registry.npmjs.org/@web3-react/injected-connector/-/injected-connector-6.0.7.tgz", - "integrity": "sha512-Y7aJSz6pg+MWKtvdyuqyy6LWuH+4Tqtph1LWfiyVms9II9ar/9B/de4R8wh4wjg91wmHkU+D75yP09E/Soh2RA==", + "license": "GPL-3.0-or-later", "dependencies": { "@web3-react/abstract-connector": "^6.0.7", "@web3-react/types": "^6.0.7", @@ -7245,176 +6669,143 @@ }, "node_modules/@web3-react/types": { "version": "6.0.7", - "resolved": "https://registry.npmjs.org/@web3-react/types/-/types-6.0.7.tgz", - "integrity": "sha512-ofGmfDhxmNT1/P/MgVa8IKSkCStFiyvXe+U5tyZurKdrtTDFU+wJ/LxClPDtFerWpczNFPUSrKcuhfPX1sI6+A==" + "license": "GPL-3.0-or-later" }, "node_modules/@webassemblyjs/ast": { - "version": "1.11.5", - "resolved": "https://registry.npmjs.org/@webassemblyjs/ast/-/ast-1.11.5.tgz", - "integrity": "sha512-LHY/GSAZZRpsNQH+/oHqhRQ5FT7eoULcBqgfyTB5nQHogFnK3/7QoN7dLnwSE/JkUAF0SrRuclT7ODqMFtWxxQ==", + "version": "1.11.6", + "license": "MIT", "dependencies": { - "@webassemblyjs/helper-numbers": "1.11.5", - "@webassemblyjs/helper-wasm-bytecode": "1.11.5" + "@webassemblyjs/helper-numbers": "1.11.6", + "@webassemblyjs/helper-wasm-bytecode": "1.11.6" } }, "node_modules/@webassemblyjs/floating-point-hex-parser": { - "version": "1.11.5", - "resolved": "https://registry.npmjs.org/@webassemblyjs/floating-point-hex-parser/-/floating-point-hex-parser-1.11.5.tgz", - "integrity": "sha512-1j1zTIC5EZOtCplMBG/IEwLtUojtwFVwdyVMbL/hwWqbzlQoJsWCOavrdnLkemwNoC/EOwtUFch3fuo+cbcXYQ==" + "version": "1.11.6", + "license": "MIT" }, "node_modules/@webassemblyjs/helper-api-error": { - "version": "1.11.5", - "resolved": "https://registry.npmjs.org/@webassemblyjs/helper-api-error/-/helper-api-error-1.11.5.tgz", - "integrity": "sha512-L65bDPmfpY0+yFrsgz8b6LhXmbbs38OnwDCf6NpnMUYqa+ENfE5Dq9E42ny0qz/PdR0LJyq/T5YijPnU8AXEpA==" + "version": "1.11.6", + "license": "MIT" }, "node_modules/@webassemblyjs/helper-buffer": { - "version": "1.11.5", - "resolved": "https://registry.npmjs.org/@webassemblyjs/helper-buffer/-/helper-buffer-1.11.5.tgz", - "integrity": "sha512-fDKo1gstwFFSfacIeH5KfwzjykIE6ldh1iH9Y/8YkAZrhmu4TctqYjSh7t0K2VyDSXOZJ1MLhht/k9IvYGcIxg==" + "version": "1.11.6", + "license": "MIT" }, "node_modules/@webassemblyjs/helper-numbers": { - "version": "1.11.5", - "resolved": "https://registry.npmjs.org/@webassemblyjs/helper-numbers/-/helper-numbers-1.11.5.tgz", - "integrity": "sha512-DhykHXM0ZABqfIGYNv93A5KKDw/+ywBFnuWybZZWcuzWHfbp21wUfRkbtz7dMGwGgT4iXjWuhRMA2Mzod6W4WA==", + "version": "1.11.6", + "license": "MIT", "dependencies": { - "@webassemblyjs/floating-point-hex-parser": "1.11.5", - "@webassemblyjs/helper-api-error": "1.11.5", + "@webassemblyjs/floating-point-hex-parser": "1.11.6", + "@webassemblyjs/helper-api-error": "1.11.6", "@xtuc/long": "4.2.2" } }, "node_modules/@webassemblyjs/helper-wasm-bytecode": { - "version": "1.11.5", - "resolved": "https://registry.npmjs.org/@webassemblyjs/helper-wasm-bytecode/-/helper-wasm-bytecode-1.11.5.tgz", - "integrity": "sha512-oC4Qa0bNcqnjAowFn7MPCETQgDYytpsfvz4ujZz63Zu/a/v71HeCAAmZsgZ3YVKec3zSPYytG3/PrRCqbtcAvA==" + "version": "1.11.6", + "license": "MIT" }, "node_modules/@webassemblyjs/helper-wasm-section": { - "version": "1.11.5", - "resolved": "https://registry.npmjs.org/@webassemblyjs/helper-wasm-section/-/helper-wasm-section-1.11.5.tgz", - "integrity": "sha512-uEoThA1LN2NA+K3B9wDo3yKlBfVtC6rh0i4/6hvbz071E8gTNZD/pT0MsBf7MeD6KbApMSkaAK0XeKyOZC7CIA==", + "version": "1.11.6", + "license": "MIT", "dependencies": { - "@webassemblyjs/ast": "1.11.5", - "@webassemblyjs/helper-buffer": "1.11.5", - "@webassemblyjs/helper-wasm-bytecode": "1.11.5", - "@webassemblyjs/wasm-gen": "1.11.5" + "@webassemblyjs/ast": "1.11.6", + "@webassemblyjs/helper-buffer": "1.11.6", + "@webassemblyjs/helper-wasm-bytecode": "1.11.6", + "@webassemblyjs/wasm-gen": "1.11.6" } }, "node_modules/@webassemblyjs/ieee754": { - "version": "1.11.5", - "resolved": "https://registry.npmjs.org/@webassemblyjs/ieee754/-/ieee754-1.11.5.tgz", - "integrity": "sha512-37aGq6qVL8A8oPbPrSGMBcp38YZFXcHfiROflJn9jxSdSMMM5dS5P/9e2/TpaJuhE+wFrbukN2WI6Hw9MH5acg==", + "version": "1.11.6", + "license": "MIT", "dependencies": { "@xtuc/ieee754": "^1.2.0" } }, "node_modules/@webassemblyjs/leb128": { - "version": "1.11.5", - "resolved": "https://registry.npmjs.org/@webassemblyjs/leb128/-/leb128-1.11.5.tgz", - "integrity": "sha512-ajqrRSXaTJoPW+xmkfYN6l8VIeNnR4vBOTQO9HzR7IygoCcKWkICbKFbVTNMjMgMREqXEr0+2M6zukzM47ZUfQ==", + "version": "1.11.6", + "license": "Apache-2.0", "dependencies": { "@xtuc/long": "4.2.2" } }, "node_modules/@webassemblyjs/utf8": { - "version": "1.11.5", - "resolved": "https://registry.npmjs.org/@webassemblyjs/utf8/-/utf8-1.11.5.tgz", - "integrity": "sha512-WiOhulHKTZU5UPlRl53gHR8OxdGsSOxqfpqWeA2FmcwBMaoEdz6b2x2si3IwC9/fSPLfe8pBMRTHVMk5nlwnFQ==" + "version": "1.11.6", + "license": "MIT" }, "node_modules/@webassemblyjs/wasm-edit": { - "version": "1.11.5", - "resolved": "https://registry.npmjs.org/@webassemblyjs/wasm-edit/-/wasm-edit-1.11.5.tgz", - "integrity": "sha512-C0p9D2fAu3Twwqvygvf42iGCQ4av8MFBLiTb+08SZ4cEdwzWx9QeAHDo1E2k+9s/0w1DM40oflJOpkZ8jW4HCQ==", + "version": "1.11.6", + "license": "MIT", "dependencies": { - "@webassemblyjs/ast": "1.11.5", - "@webassemblyjs/helper-buffer": "1.11.5", - "@webassemblyjs/helper-wasm-bytecode": "1.11.5", - "@webassemblyjs/helper-wasm-section": "1.11.5", - "@webassemblyjs/wasm-gen": "1.11.5", - "@webassemblyjs/wasm-opt": "1.11.5", - "@webassemblyjs/wasm-parser": "1.11.5", - "@webassemblyjs/wast-printer": "1.11.5" + "@webassemblyjs/ast": "1.11.6", + "@webassemblyjs/helper-buffer": "1.11.6", + "@webassemblyjs/helper-wasm-bytecode": "1.11.6", + "@webassemblyjs/helper-wasm-section": "1.11.6", + "@webassemblyjs/wasm-gen": "1.11.6", + "@webassemblyjs/wasm-opt": "1.11.6", + "@webassemblyjs/wasm-parser": "1.11.6", + "@webassemblyjs/wast-printer": "1.11.6" } }, "node_modules/@webassemblyjs/wasm-gen": { - "version": "1.11.5", - "resolved": "https://registry.npmjs.org/@webassemblyjs/wasm-gen/-/wasm-gen-1.11.5.tgz", - "integrity": "sha512-14vteRlRjxLK9eSyYFvw1K8Vv+iPdZU0Aebk3j6oB8TQiQYuO6hj9s4d7qf6f2HJr2khzvNldAFG13CgdkAIfA==", + "version": "1.11.6", + "license": "MIT", "dependencies": { - "@webassemblyjs/ast": "1.11.5", - "@webassemblyjs/helper-wasm-bytecode": "1.11.5", - "@webassemblyjs/ieee754": "1.11.5", - "@webassemblyjs/leb128": "1.11.5", - "@webassemblyjs/utf8": "1.11.5" + "@webassemblyjs/ast": "1.11.6", + "@webassemblyjs/helper-wasm-bytecode": "1.11.6", + "@webassemblyjs/ieee754": "1.11.6", + "@webassemblyjs/leb128": "1.11.6", + "@webassemblyjs/utf8": "1.11.6" } }, "node_modules/@webassemblyjs/wasm-opt": { - "version": "1.11.5", - "resolved": "https://registry.npmjs.org/@webassemblyjs/wasm-opt/-/wasm-opt-1.11.5.tgz", - "integrity": "sha512-tcKwlIXstBQgbKy1MlbDMlXaxpucn42eb17H29rawYLxm5+MsEmgPzeCP8B1Cl69hCice8LeKgZpRUAPtqYPgw==", + "version": "1.11.6", + "license": "MIT", "dependencies": { - "@webassemblyjs/ast": "1.11.5", - "@webassemblyjs/helper-buffer": "1.11.5", - "@webassemblyjs/wasm-gen": "1.11.5", - "@webassemblyjs/wasm-parser": "1.11.5" + "@webassemblyjs/ast": "1.11.6", + "@webassemblyjs/helper-buffer": "1.11.6", + "@webassemblyjs/wasm-gen": "1.11.6", + "@webassemblyjs/wasm-parser": "1.11.6" } }, "node_modules/@webassemblyjs/wasm-parser": { - "version": "1.11.5", - "resolved": "https://registry.npmjs.org/@webassemblyjs/wasm-parser/-/wasm-parser-1.11.5.tgz", - "integrity": "sha512-SVXUIwsLQlc8srSD7jejsfTU83g7pIGr2YYNb9oHdtldSxaOhvA5xwvIiWIfcX8PlSakgqMXsLpLfbbJ4cBYew==", + "version": "1.11.6", + "license": "MIT", "dependencies": { - "@webassemblyjs/ast": "1.11.5", - "@webassemblyjs/helper-api-error": "1.11.5", - "@webassemblyjs/helper-wasm-bytecode": "1.11.5", - "@webassemblyjs/ieee754": "1.11.5", - "@webassemblyjs/leb128": "1.11.5", - "@webassemblyjs/utf8": "1.11.5" + "@webassemblyjs/ast": "1.11.6", + "@webassemblyjs/helper-api-error": "1.11.6", + "@webassemblyjs/helper-wasm-bytecode": "1.11.6", + "@webassemblyjs/ieee754": "1.11.6", + "@webassemblyjs/leb128": "1.11.6", + "@webassemblyjs/utf8": "1.11.6" } }, "node_modules/@webassemblyjs/wast-printer": { - "version": "1.11.5", - "resolved": "https://registry.npmjs.org/@webassemblyjs/wast-printer/-/wast-printer-1.11.5.tgz", - "integrity": "sha512-f7Pq3wvg3GSPUPzR0F6bmI89Hdb+u9WXrSKc4v+N0aV0q6r42WoF92Jp2jEorBEBRoRNXgjp53nBniDXcqZYPA==", + "version": "1.11.6", + "license": "MIT", "dependencies": { - "@webassemblyjs/ast": "1.11.5", + "@webassemblyjs/ast": "1.11.6", "@xtuc/long": "4.2.2" } }, "node_modules/@xtuc/ieee754": { "version": "1.2.0", - "resolved": "https://registry.npmjs.org/@xtuc/ieee754/-/ieee754-1.2.0.tgz", - "integrity": "sha512-DX8nKgqcGwsc0eJSqYt5lwP4DH5FlHnmuWWBRy7X0NcaGR0ZtuyeESgMwTYVEtxmsNGY+qit4QYT/MIYTOTPeA==" + "license": "BSD-3-Clause" }, "node_modules/@xtuc/long": { "version": "4.2.2", - "resolved": "https://registry.npmjs.org/@xtuc/long/-/long-4.2.2.tgz", - "integrity": "sha512-NuHqBY1PB/D8xU6s/thBgOAiAP7HOYDQ32+BFZILJ8ivkUkAHQnWfn6WhL79Owj1qmUnoN/YPhktdIoucipkAQ==" + "license": "Apache-2.0" }, "node_modules/abab": { "version": "2.0.6", - "resolved": "https://registry.npmjs.org/abab/-/abab-2.0.6.tgz", - "integrity": "sha512-j2afSsaIENvHZN2B8GOpF566vZ5WVk5opAiMTvWgaQT8DkbOqsTfvNAvHoRGU2zzP8cPoqys+xHTRDWW8L+/BA==" - }, - "node_modules/abort-controller": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/abort-controller/-/abort-controller-3.0.0.tgz", - "integrity": "sha512-h8lQ8tacZYnR3vNQTgibj+tODHI5/+l06Au2Pcriv/Gmet0eaj4TwWH41sO9wnHDiQsEj19q0drzdWdeAHtweg==", - "peer": true, - "dependencies": { - "event-target-shim": "^5.0.0" - }, - "engines": { - "node": ">=6.5" - } + "license": "BSD-3-Clause" }, "node_modules/abortcontroller-polyfill": { "version": "1.7.5", - "resolved": "https://registry.npmjs.org/abortcontroller-polyfill/-/abortcontroller-polyfill-1.7.5.tgz", - "integrity": "sha512-JMJ5soJWP18htbbxJjG7bG6yuI6pRhgJ0scHHTfkUjf6wjP912xZWvM+A4sJK3gqd9E8fcPbDnOefbA9Th/FIQ==" + "license": "MIT" }, "node_modules/abstract-level": { "version": "1.0.3", - "resolved": "https://registry.npmjs.org/abstract-level/-/abstract-level-1.0.3.tgz", - "integrity": "sha512-t6jv+xHy+VYwc4xqZMn2Pa9DjcdzvzZmQGRjTFc8spIbRGHgBrEKbPq+rYXc7CCo0lxgYvSgKVg9qZAhpVQSjA==", + "license": "MIT", "peer": true, "dependencies": { "buffer": "^6.0.3", @@ -7431,8 +6822,7 @@ }, "node_modules/accepts": { "version": "1.3.8", - "resolved": "https://registry.npmjs.org/accepts/-/accepts-1.3.8.tgz", - "integrity": "sha512-PYAthTa2m2VKxuvSD3DPC/Gy+U+sOA1LAuT8mkmRuvw+NACSaeXEQ+NHcVF7rONl6qcaxV3Uuemwawk+7+SJLw==", + "license": "MIT", "dependencies": { "mime-types": "~2.1.34", "negotiator": "0.6.3" @@ -7442,9 +6832,8 @@ } }, "node_modules/acorn": { - "version": "8.7.1", - "resolved": "https://registry.npmjs.org/acorn/-/acorn-8.7.1.tgz", - "integrity": "sha512-Xx54uLJQZ19lKygFXOWsscKUbsBZW0CPykPhVQdhIeIwrbPmJzqeASDInc8nKBnp/JT6igTs82qPXz069H8I/A==", + "version": "8.10.0", + "license": "MIT", "bin": { "acorn": "bin/acorn" }, @@ -7454,8 +6843,7 @@ }, "node_modules/acorn-globals": { "version": "6.0.0", - "resolved": "https://registry.npmjs.org/acorn-globals/-/acorn-globals-6.0.0.tgz", - "integrity": "sha512-ZQl7LOWaF5ePqqcX4hLuv/bLXYQNfNWw2c0/yX/TsPRKamzHcTGQnlCjHT3TsmkOUVEPS3crCxiPfdzE/Trlhg==", + "license": "MIT", "dependencies": { "acorn": "^7.1.1", "acorn-walk": "^7.1.1" @@ -7463,8 +6851,7 @@ }, "node_modules/acorn-globals/node_modules/acorn": { "version": "7.4.1", - "resolved": "https://registry.npmjs.org/acorn/-/acorn-7.4.1.tgz", - "integrity": "sha512-nQyp0o1/mNdbTO1PO6kHkwSrmgZ0MT/jCCpNiwbUjGoRN4dlBhqJtoQuCnEOKzgTVwg0ZWiCoQy6SxMebQVh8A==", + "license": "MIT", "bin": { "acorn": "bin/acorn" }, @@ -7473,62 +6860,36 @@ } }, "node_modules/acorn-import-assertions": { - "version": "1.8.0", - "resolved": "https://registry.npmjs.org/acorn-import-assertions/-/acorn-import-assertions-1.8.0.tgz", - "integrity": "sha512-m7VZ3jwz4eK6A4Vtt8Ew1/mNbP24u0FhdyfA7fSvnJR6LMdfOYnmuIrrJAgrYfYJ10F/otaHTtrtrtmHdMNzEw==", + "version": "1.9.0", + "license": "MIT", "peerDependencies": { "acorn": "^8" } }, "node_modules/acorn-jsx": { "version": "5.3.2", - "resolved": "https://registry.npmjs.org/acorn-jsx/-/acorn-jsx-5.3.2.tgz", - "integrity": "sha512-rq9s+JNhf0IChjtDXxllJ7g41oZk5SlXtp0LHwyA5cejwn7vKmKp4pPri6YEePv2PU65sAsegbXtIinmDFDXgQ==", + "license": "MIT", "peerDependencies": { "acorn": "^6.0.0 || ^7.0.0 || ^8.0.0" } }, - "node_modules/acorn-node": { - "version": "1.8.2", - "resolved": "https://registry.npmjs.org/acorn-node/-/acorn-node-1.8.2.tgz", - "integrity": "sha512-8mt+fslDufLYntIoPAaIMUe/lrbrehIiwmR3t2k9LljIzoigEPF27eLk2hy8zSGzmR/ogr7zbRKINMo1u0yh5A==", - "dependencies": { - "acorn": "^7.0.0", - "acorn-walk": "^7.0.0", - "xtend": "^4.0.2" - } - }, - "node_modules/acorn-node/node_modules/acorn": { - "version": "7.4.1", - "resolved": "https://registry.npmjs.org/acorn/-/acorn-7.4.1.tgz", - "integrity": "sha512-nQyp0o1/mNdbTO1PO6kHkwSrmgZ0MT/jCCpNiwbUjGoRN4dlBhqJtoQuCnEOKzgTVwg0ZWiCoQy6SxMebQVh8A==", - "bin": { - "acorn": "bin/acorn" - }, - "engines": { - "node": ">=0.4.0" - } - }, "node_modules/acorn-walk": { "version": "7.2.0", - "resolved": "https://registry.npmjs.org/acorn-walk/-/acorn-walk-7.2.0.tgz", - "integrity": "sha512-OPdCF6GsMIP+Az+aWfAAOEt2/+iVDKE7oy6lJ098aoe59oAmK76qV6Gw60SbZ8jHuG2wH058GF4pLFbYamYrVA==", + "license": "MIT", "engines": { "node": ">=0.4.0" } }, "node_modules/address": { - "version": "1.2.0", - "resolved": "https://registry.npmjs.org/address/-/address-1.2.0.tgz", - "integrity": "sha512-tNEZYz5G/zYunxFm7sfhAxkXEuLj3K6BKwv6ZURlsF6yiUQ65z0Q2wZW9L5cPUl9ocofGvXOdFYbFHp0+6MOig==", + "version": "1.2.2", + "license": "MIT", "engines": { "node": ">= 10.0.0" } }, "node_modules/adjust-sourcemap-loader": { "version": "4.0.0", - "resolved": "https://registry.npmjs.org/adjust-sourcemap-loader/-/adjust-sourcemap-loader-4.0.0.tgz", - "integrity": "sha512-OXwN5b9pCUXNQHJpwwD2qP40byEmSgzj8B4ydSN0uMNYWiFmJ6x6KwUllMmfk8Rwu/HJDFR7U8ubsWBoN0Xp0A==", + "license": "MIT", "dependencies": { "loader-utils": "^2.0.0", "regex-parser": "^2.2.11" @@ -7539,8 +6900,7 @@ }, "node_modules/adm-zip": { "version": "0.4.16", - "resolved": "https://registry.npmjs.org/adm-zip/-/adm-zip-0.4.16.tgz", - "integrity": "sha512-TFi4HBKSGfIKsK5YCkKaaFG2m4PEDyViZmEwof3MTIgzimHLto6muaHVpbrljdIvIrFZzEq/p4nafOeLcYegrg==", + "license": "MIT", "peer": true, "engines": { "node": ">=0.3.0" @@ -7548,13 +6908,11 @@ }, "node_modules/aes-js": { "version": "3.0.0", - "resolved": "https://registry.npmjs.org/aes-js/-/aes-js-3.0.0.tgz", - "integrity": "sha512-H7wUZRn8WpTq9jocdxQ2c8x2sKo9ZVmzfRE13GiNJXfp7NcKYEdvl3vspKjXox6RIG2VtaRe4JFvxG4rqp2Zuw==" + "license": "MIT" }, "node_modules/agent-base": { "version": "6.0.2", - "resolved": "https://registry.npmjs.org/agent-base/-/agent-base-6.0.2.tgz", - "integrity": "sha512-RZNwNclF7+MS/8bDg70amg32dyeZGZxiDuQmZxKLAlQjr3jGyLx+4Kkk58UO7D2QdgFIQCovuSuZESne6RG6XQ==", + "license": "MIT", "dependencies": { "debug": "4" }, @@ -7564,8 +6922,7 @@ }, "node_modules/aggregate-error": { "version": "3.1.0", - "resolved": "https://registry.npmjs.org/aggregate-error/-/aggregate-error-3.1.0.tgz", - "integrity": "sha512-4I7Td01quW/RpocfNayFdFVk1qSuoh0E7JrbRJ16nH01HhKFQ88INq9Sd+nd72zqRySlr9BmDA8xlEJ6vJMrYA==", + "license": "MIT", "peer": true, "dependencies": { "clean-stack": "^2.0.0", @@ -7577,8 +6934,7 @@ }, "node_modules/ajv": { "version": "6.12.6", - "resolved": "https://registry.npmjs.org/ajv/-/ajv-6.12.6.tgz", - "integrity": "sha512-j3fVLgvTo527anyYyJOGTYJbG+vnnQYvE0m5mmkc1TK+nxAppkCLMIL0aZ4dblVCNoGShhm+kzE4ZUykBoMg4g==", + "license": "MIT", "dependencies": { "fast-deep-equal": "^3.1.1", "fast-json-stable-stringify": "^2.0.0", @@ -7592,8 +6948,7 @@ }, "node_modules/ajv-formats": { "version": "2.1.1", - "resolved": "https://registry.npmjs.org/ajv-formats/-/ajv-formats-2.1.1.tgz", - "integrity": "sha512-Wx0Kx52hxE7C18hkMEggYlEifqWZtYaRgouJor+WMdPnQyEK13vgEWyVNup7SoeeoLMsr4kf5h6dOW11I15MUA==", + "license": "MIT", "dependencies": { "ajv": "^8.0.0" }, @@ -7607,9 +6962,8 @@ } }, "node_modules/ajv-formats/node_modules/ajv": { - "version": "8.11.0", - "resolved": "https://registry.npmjs.org/ajv/-/ajv-8.11.0.tgz", - "integrity": "sha512-wGgprdCvMalC0BztXvitD2hC04YffAvtsUn93JbGXYLAtCUO4xd17mCCZQxUOItiBwZvJScWo8NIvQMQ71rdpg==", + "version": "8.12.0", + "license": "MIT", "dependencies": { "fast-deep-equal": "^3.1.1", "json-schema-traverse": "^1.0.0", @@ -7623,21 +6977,18 @@ }, "node_modules/ajv-formats/node_modules/json-schema-traverse": { "version": "1.0.0", - "resolved": "https://registry.npmjs.org/json-schema-traverse/-/json-schema-traverse-1.0.0.tgz", - "integrity": "sha512-NM8/P9n3XjXhIZn1lLhkFaACTOURQXjWhV4BA/RnOv8xvgqtqpAX9IO4mRQxSx1Rlo4tqzeqb0sOlruaOy3dug==" + "license": "MIT" }, "node_modules/ajv-keywords": { "version": "3.5.2", - "resolved": "https://registry.npmjs.org/ajv-keywords/-/ajv-keywords-3.5.2.tgz", - "integrity": "sha512-5p6WTN0DdTGVQk6VjcEju19IgaHudalcfabD7yhDGeA6bcQnmL+CpveLJq/3hvfwd1aof6L386Ougkx6RfyMIQ==", + "license": "MIT", "peerDependencies": { "ajv": "^6.9.1" } }, "node_modules/ansi-colors": { "version": "4.1.3", - "resolved": "https://registry.npmjs.org/ansi-colors/-/ansi-colors-4.1.3.tgz", - "integrity": "sha512-/6w/C21Pm1A7aZitlI5Ni/2J6FFQN8i1Cvz3kHABAAbw93v/NlvKdVOqz7CCWz/3iv/JplRSEEZ83XION15ovw==", + "license": "MIT", "peer": true, "engines": { "node": ">=6" @@ -7645,8 +6996,7 @@ }, "node_modules/ansi-escapes": { "version": "4.3.2", - "resolved": "https://registry.npmjs.org/ansi-escapes/-/ansi-escapes-4.3.2.tgz", - "integrity": "sha512-gKXj5ALrKWQLsYG9jlTRmR/xKluxHV+Z9QEwNIgCfM1/uwPMCuzVVnh5mwTd+OuBZcwSIMbqssNWRm1lE51QaQ==", + "license": "MIT", "dependencies": { "type-fest": "^0.21.3" }, @@ -7659,48 +7009,49 @@ }, "node_modules/ansi-html-community": { "version": "0.0.8", - "resolved": "https://registry.npmjs.org/ansi-html-community/-/ansi-html-community-0.0.8.tgz", - "integrity": "sha512-1APHAyr3+PCamwNw3bXCPp4HFLONZt/yIH0sZp0/469KWNTEy+qN5jQ3GVX6DMZ1UXAi34yVwtTeaG/HpBuuzw==", "engines": [ "node >= 0.8.0" ], + "license": "Apache-2.0", "bin": { "ansi-html": "bin/ansi-html" } }, "node_modules/ansi-regex": { "version": "5.0.1", - "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-5.0.1.tgz", - "integrity": "sha512-quJQXlTSUGL2LH9SUXo8VwsY4soanhgo6LNSm84E1LBcE8s3O0wpdiRzyR9z/ZZJMlMWv37qOOb9pdJlMUEKFQ==", + "license": "MIT", "engines": { "node": ">=8" } }, "node_modules/ansi-sequence-parser": { - "version": "1.1.0", - "resolved": "https://registry.npmjs.org/ansi-sequence-parser/-/ansi-sequence-parser-1.1.0.tgz", - "integrity": "sha512-lEm8mt52to2fT8GhciPCGeCXACSz2UwIN4X2e2LJSnZ5uAbn2/dsYdOmUXq0AtWS5cpAupysIneExOgH0Vd2TQ==" + "version": "1.1.1", + "license": "MIT" }, "node_modules/ansi-styles": { - "version": "3.2.1", - "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-3.2.1.tgz", - "integrity": "sha512-VT0ZI6kZRdTh8YyJw3SMbYm/u+NqfsAxEpWO0Pf9sq8/e94WxxOpPKx9FR1FlyCtOVDNOQ+8ntlqFxiRc+r5qA==", + "version": "4.3.0", + "license": "MIT", "dependencies": { - "color-convert": "^1.9.0" + "color-convert": "^2.0.1" }, "engines": { - "node": ">=4" + "node": ">=8" + }, + "funding": { + "url": "https://github.com/chalk/ansi-styles?sponsor=1" } }, "node_modules/any-base": { "version": "1.1.0", - "resolved": "https://registry.npmjs.org/any-base/-/any-base-1.1.0.tgz", - "integrity": "sha512-uMgjozySS8adZZYePpaWs8cxB9/kdzmpX6SgJZ+wbz1K5eYk5QMYDVJaZKhxyIHUdnnJkfR7SVgStgH7LkGUyg==" + "license": "MIT" + }, + "node_modules/any-promise": { + "version": "1.3.0", + "license": "MIT" }, "node_modules/anymatch": { - "version": "3.1.2", - "resolved": "https://registry.npmjs.org/anymatch/-/anymatch-3.1.2.tgz", - "integrity": "sha512-P43ePfOAIupkguHUycrc4qJ9kz8ZiuOUijaETwX7THt0Y/GNK7v0aa8rY816xWjZ7rJdA5XdMcpVFTKMq+RvWg==", + "version": "3.1.3", + "license": "ISC", "dependencies": { "normalize-path": "^3.0.0", "picomatch": "^2.0.4" @@ -7711,42 +7062,33 @@ }, "node_modules/arg": { "version": "5.0.2", - "resolved": "https://registry.npmjs.org/arg/-/arg-5.0.2.tgz", - "integrity": "sha512-PYjyFOLKQ9y57JvQ6QLo8dAgNqswh8M1RMJYdQduT6xbWSgK36P/Z/v+p888pM69jMMfS8Xd8F6I1kQ/I9HUGg==" + "license": "MIT" }, "node_modules/argparse": { "version": "1.0.10", - "resolved": "https://registry.npmjs.org/argparse/-/argparse-1.0.10.tgz", - "integrity": "sha512-o5Roy6tNG4SL/FOkCAN6RzjiakZS25RLYFrcMttJqbdd8BWrnA+fGz57iN5Pb06pvBGvl5gQ0B48dJlslXvoTg==", + "license": "MIT", "dependencies": { "sprintf-js": "~1.0.2" } }, "node_modules/aria-query": { - "version": "4.2.2", - "resolved": "https://registry.npmjs.org/aria-query/-/aria-query-4.2.2.tgz", - "integrity": "sha512-o/HelwhuKpTj/frsOsbNLNgnNGVIFsVP/SW2BSF14gVl7kAfMOJ6/8wUAUvG1R1NHKrfG+2sHZTu0yauT1qBrA==", + "version": "5.1.3", + "license": "Apache-2.0", "dependencies": { - "@babel/runtime": "^7.10.2", - "@babel/runtime-corejs3": "^7.10.2" - }, - "engines": { - "node": ">=6.0" + "deep-equal": "^2.0.5" } }, "node_modules/array-back": { "version": "3.1.0", - "resolved": "https://registry.npmjs.org/array-back/-/array-back-3.1.0.tgz", - "integrity": "sha512-TkuxA4UCOvxuDK6NZYXCalszEzj+TLszyASooky+i742l9TqsOdYCMJJupxRic61hwquNtppB3hgcuq9SVSH1Q==", "dev": true, + "license": "MIT", "engines": { "node": ">=6" } }, "node_modules/array-buffer-byte-length": { "version": "1.0.0", - "resolved": "https://registry.npmjs.org/array-buffer-byte-length/-/array-buffer-byte-length-1.0.0.tgz", - "integrity": "sha512-LPuwb2P+NrQw3XhxGc36+XSvuBPopovXYTR9Ew++Du9Yb/bx5AzBfrIsBoj0EZUifjQU+sHL21sseZ3jerWO/A==", + "license": "MIT", "dependencies": { "call-bind": "^1.0.2", "is-array-buffer": "^3.0.1" @@ -7757,18 +7099,16 @@ }, "node_modules/array-flatten": { "version": "2.1.2", - "resolved": "https://registry.npmjs.org/array-flatten/-/array-flatten-2.1.2.tgz", - "integrity": "sha512-hNfzcOV8W4NdualtqBFPyVO+54DSJuZGY9qT4pRroB6S9e3iiido2ISIC5h9R2sPJ8H3FHCIiEnsv1lPXO3KtQ==" + "license": "MIT" }, "node_modules/array-includes": { - "version": "3.1.5", - "resolved": "https://registry.npmjs.org/array-includes/-/array-includes-3.1.5.tgz", - "integrity": "sha512-iSDYZMMyTPkiFasVqfuAQnWAYcvO/SeBSCGKePoEthjp4LEMTe4uLc7b025o4jAZpHhihh8xPo99TNWUWWkGDQ==", + "version": "3.1.6", + "license": "MIT", "dependencies": { "call-bind": "^1.0.2", "define-properties": "^1.1.4", - "es-abstract": "^1.19.5", - "get-intrinsic": "^1.1.1", + "es-abstract": "^1.20.4", + "get-intrinsic": "^1.1.3", "is-string": "^1.0.7" }, "engines": { @@ -7780,16 +7120,14 @@ }, "node_modules/array-union": { "version": "2.1.0", - "resolved": "https://registry.npmjs.org/array-union/-/array-union-2.1.0.tgz", - "integrity": "sha512-HGyxoOTYUyCM6stUe6EJgnd4EoewAI7zMdfqO+kGjnlZmBDz/cR5pf8r/cR4Wq60sL/p0IkcjUEEPwS3GFrIyw==", + "license": "MIT", "engines": { "node": ">=8" } }, "node_modules/array.prototype.find": { "version": "2.2.1", - "resolved": "https://registry.npmjs.org/array.prototype.find/-/array.prototype.find-2.2.1.tgz", - "integrity": "sha512-I2ri5Z9uMpMvnsNrHre9l3PaX+z9D0/z6F7Yt2u15q7wt0I62g5kX6xUKR1SJiefgG+u2/gJUmM8B47XRvQR6w==", + "license": "MIT", "dependencies": { "call-bind": "^1.0.2", "define-properties": "^1.1.4", @@ -7800,14 +7138,30 @@ "url": "https://github.com/sponsors/ljharb" } }, + "node_modules/array.prototype.findlastindex": { + "version": "1.2.2", + "license": "MIT", + "dependencies": { + "call-bind": "^1.0.2", + "define-properties": "^1.1.4", + "es-abstract": "^1.20.4", + "es-shim-unscopables": "^1.0.0", + "get-intrinsic": "^1.1.3" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, "node_modules/array.prototype.flat": { - "version": "1.3.0", - "resolved": "https://registry.npmjs.org/array.prototype.flat/-/array.prototype.flat-1.3.0.tgz", - "integrity": "sha512-12IUEkHsAhA4DY5s0FPgNXIdc8VRSqD9Zp78a5au9abH/SOBrsp082JOWFNTjkMozh8mqcdiKuaLGhPeYztxSw==", + "version": "1.3.1", + "license": "MIT", "dependencies": { "call-bind": "^1.0.2", - "define-properties": "^1.1.3", - "es-abstract": "^1.19.2", + "define-properties": "^1.1.4", + "es-abstract": "^1.20.4", "es-shim-unscopables": "^1.0.0" }, "engines": { @@ -7818,13 +7172,12 @@ } }, "node_modules/array.prototype.flatmap": { - "version": "1.3.0", - "resolved": "https://registry.npmjs.org/array.prototype.flatmap/-/array.prototype.flatmap-1.3.0.tgz", - "integrity": "sha512-PZC9/8TKAIxcWKdyeb77EzULHPrIX/tIZebLJUQOMR1OwYosT8yggdfWScfTBCDj5utONvOuPQQumYsU2ULbkg==", + "version": "1.3.1", + "license": "MIT", "dependencies": { "call-bind": "^1.0.2", - "define-properties": "^1.1.3", - "es-abstract": "^1.19.2", + "define-properties": "^1.1.4", + "es-abstract": "^1.20.4", "es-shim-unscopables": "^1.0.0" }, "engines": { @@ -7835,13 +7188,12 @@ } }, "node_modules/array.prototype.reduce": { - "version": "1.0.4", - "resolved": "https://registry.npmjs.org/array.prototype.reduce/-/array.prototype.reduce-1.0.4.tgz", - "integrity": "sha512-WnM+AjG/DvLRLo4DDl+r+SvCzYtD2Jd9oeBYMcEaI7t3fFrHY9M53/wdLcTvmZNQ70IU6Htj0emFkZ5TS+lrdw==", + "version": "1.0.5", + "license": "MIT", "dependencies": { "call-bind": "^1.0.2", - "define-properties": "^1.1.3", - "es-abstract": "^1.19.2", + "define-properties": "^1.1.4", + "es-abstract": "^1.20.4", "es-array-method-boxes-properly": "^1.0.0", "is-string": "^1.0.7" }, @@ -7852,78 +7204,85 @@ "url": "https://github.com/sponsors/ljharb" } }, + "node_modules/array.prototype.tosorted": { + "version": "1.1.1", + "license": "MIT", + "dependencies": { + "call-bind": "^1.0.2", + "define-properties": "^1.1.4", + "es-abstract": "^1.20.4", + "es-shim-unscopables": "^1.0.0", + "get-intrinsic": "^1.1.3" + } + }, + "node_modules/arraybuffer.prototype.slice": { + "version": "1.0.1", + "license": "MIT", + "dependencies": { + "array-buffer-byte-length": "^1.0.0", + "call-bind": "^1.0.2", + "define-properties": "^1.2.0", + "get-intrinsic": "^1.2.1", + "is-array-buffer": "^3.0.2", + "is-shared-array-buffer": "^1.0.2" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, "node_modules/asap": { "version": "2.0.6", - "resolved": "https://registry.npmjs.org/asap/-/asap-2.0.6.tgz", - "integrity": "sha512-BSHWgDSAiKs50o2Re8ppvp3seVHXSRM44cdSsT9FfNEUUZLOGWVCsiWaRPWM1Znn+mqZ1OfVZ3z3DWEzSp7hRA==" + "license": "MIT" }, "node_modules/asn1": { "version": "0.2.6", - "resolved": "https://registry.npmjs.org/asn1/-/asn1-0.2.6.tgz", - "integrity": "sha512-ix/FxPn0MDjeyJ7i/yoHGFt/EX6LyNbxSEhPPXODPL+KB0VPk86UYfL0lMdy+KCnv+fmvIzySwaK5COwqVbWTQ==", + "license": "MIT", "dependencies": { "safer-buffer": "~2.1.0" } }, "node_modules/assert-plus": { "version": "1.0.0", - "resolved": "https://registry.npmjs.org/assert-plus/-/assert-plus-1.0.0.tgz", - "integrity": "sha512-NfJ4UzBCcQGLDlQq7nHxH+tv3kyZ0hHQqF5BO6J7tNJeP5do1llPr8dZ8zHonfhAu0PHAdMkSo+8o0wxg9lZWw==", + "license": "MIT", "engines": { "node": ">=0.8" } }, "node_modules/ast-types-flow": { "version": "0.0.7", - "resolved": "https://registry.npmjs.org/ast-types-flow/-/ast-types-flow-0.0.7.tgz", - "integrity": "sha512-eBvWn1lvIApYMhzQMsu9ciLfkBY499mFZlNqG+/9WR7PVlroQw0vG30cOQQbaKz3sCEc44TAOu2ykzqXSNnwag==" + "license": "ISC" }, "node_modules/async": { "version": "3.2.4", - "resolved": "https://registry.npmjs.org/async/-/async-3.2.4.tgz", - "integrity": "sha512-iAB+JbDEGXhyIUavoDl9WP/Jj106Kz9DEn1DPgYw5ruDn0e3Wgi3sKFm55sASdGBNOQB8F59d9qQ7deqrHA8wQ==" + "license": "MIT" }, "node_modules/async-limiter": { "version": "1.0.1", - "resolved": "https://registry.npmjs.org/async-limiter/-/async-limiter-1.0.1.tgz", - "integrity": "sha512-csOlWGAcRFJaI6m+F2WKdnMKr4HhdhFVBk0H/QbJFMCr+uO2kwohwXQPxw/9OCxp05r5ghVBFSyioixx3gfkNQ==" + "license": "MIT" }, - "node_modules/async-retry": { - "version": "1.3.3", - "resolved": "https://registry.npmjs.org/async-retry/-/async-retry-1.3.3.tgz", - "integrity": "sha512-wfr/jstw9xNi/0teMHrRW7dsz3Lt5ARhYNZ2ewpadnhaIp5mbALhOAP+EAdsC7t4Z6wqsDVv9+W6gm1Dk9mEyw==", + "node_modules/asynciterator.prototype": { + "version": "1.0.0", + "license": "MIT", "dependencies": { - "retry": "0.13.1" + "has-symbols": "^1.0.3" } }, "node_modules/asynckit": { "version": "0.4.0", - "resolved": "https://registry.npmjs.org/asynckit/-/asynckit-0.4.0.tgz", - "integrity": "sha512-Oei9OH4tRh0YqU3GxhX79dM/mwVgvbZJaSNaRk+bshkj0S5cfHcgYakreBjrHwatXKbz+IoIdYLxrKim2MjW0Q==" + "license": "MIT" }, "node_modules/at-least-node": { "version": "1.0.0", - "resolved": "https://registry.npmjs.org/at-least-node/-/at-least-node-1.0.0.tgz", - "integrity": "sha512-+q/t7Ekv1EDY2l6Gda6LLiX14rU9TV20Wa3ofeQmwPFZbOMo9DXrLbOjFaaclkXKWidIaopwAObQDqwWtGUjqg==", + "license": "ISC", "engines": { "node": ">= 4.0.0" } }, - "node_modules/atob": { - "version": "2.1.2", - "resolved": "https://registry.npmjs.org/atob/-/atob-2.1.2.tgz", - "integrity": "sha512-Wm6ukoaOGJi/73p/cl2GvLjTI5JM1k/O14isD73YML8StrH/7/lRFgmg8nICZgD3bZZvjwCGxtMOD3wWNAu8cg==", - "bin": { - "atob": "bin/atob.js" - }, - "engines": { - "node": ">= 4.5.0" - } - }, "node_modules/autoprefixer": { - "version": "10.4.7", - "resolved": "https://registry.npmjs.org/autoprefixer/-/autoprefixer-10.4.7.tgz", - "integrity": "sha512-ypHju4Y2Oav95SipEcCcI5J7CGPuvz8oat7sUtYj3ClK44bldfvtvcxK6IEK++7rqB7YchDGzweZIBG+SD0ZAA==", + "version": "10.4.15", "funding": [ { "type": "opencollective", @@ -7932,11 +7291,16 @@ { "type": "tidelift", "url": "https://tidelift.com/funding/github/npm/autoprefixer" + }, + { + "type": "github", + "url": "https://github.com/sponsors/ai" } ], + "license": "MIT", "dependencies": { - "browserslist": "^4.20.3", - "caniuse-lite": "^1.0.30001335", + "browserslist": "^4.21.10", + "caniuse-lite": "^1.0.30001520", "fraction.js": "^4.2.0", "normalize-range": "^0.1.2", "picocolors": "^1.0.0", @@ -7954,8 +7318,7 @@ }, "node_modules/available-typed-arrays": { "version": "1.0.5", - "resolved": "https://registry.npmjs.org/available-typed-arrays/-/available-typed-arrays-1.0.5.tgz", - "integrity": "sha512-DMD0KiN46eipeziST1LPP/STfDU0sufISXmjSgvVsoU2tqxctQeASejWcfNtxYKqETM1UxQ8sp2OrSBWpHY6sw==", + "license": "MIT", "engines": { "node": ">= 0.4" }, @@ -7963,52 +7326,34 @@ "url": "https://github.com/sponsors/ljharb" } }, - "node_modules/await-timeout": { - "version": "1.1.1", - "resolved": "https://registry.npmjs.org/await-timeout/-/await-timeout-1.1.1.tgz", - "integrity": "sha512-gsDXAS6XVc4Jt+7S92MPX6Noq69bdeXUPEaXd8dk3+yVr629LTDLxNt4j1ycBbrU+AStK2PhKIyNIM+xzWMVOQ==", - "engines": { - "node": ">=6" - } - }, "node_modules/aws-sign2": { "version": "0.7.0", - "resolved": "https://registry.npmjs.org/aws-sign2/-/aws-sign2-0.7.0.tgz", - "integrity": "sha512-08kcGqnYf/YmjoRhfxyu+CLxBjUtHLXLXX/vUfx9l2LYzG3c1m61nrpyFUZI6zeS+Li/wWMMidD9KgrqtGq3mA==", + "license": "Apache-2.0", "engines": { "node": "*" } }, "node_modules/aws4": { "version": "1.12.0", - "resolved": "https://registry.npmjs.org/aws4/-/aws4-1.12.0.tgz", - "integrity": "sha512-NmWvPnx0F1SfrQbYwOi7OeaNGokp9XhzNioJ/CSBs8Qa4vxug81mhJEAVZwxXuBmYB5KDRfMq/F3RR0BIU7sWg==" + "license": "MIT" }, "node_modules/axe-core": { - "version": "4.4.2", - "resolved": "https://registry.npmjs.org/axe-core/-/axe-core-4.4.2.tgz", - "integrity": "sha512-LVAaGp/wkkgYJcjmHsoKx4juT1aQvJyPcW09MLCjVTh3V2cc6PnyempiLMNH5iMdfIX/zdbjUx2KDjMLCTdPeA==", + "version": "4.7.2", + "license": "MPL-2.0", "engines": { - "node": ">=12" + "node": ">=4" } }, - "node_modules/axios": { - "version": "0.21.4", - "resolved": "https://registry.npmjs.org/axios/-/axios-0.21.4.tgz", - "integrity": "sha512-ut5vewkiu8jjGBdqpM44XxjuCjq9LAKeHVmoVfHVzy8eHgxxq8SbAVQNovDA8mVi05kP0Ea/n/UzcSHcTJQfNg==", + "node_modules/axobject-query": { + "version": "3.2.1", + "license": "Apache-2.0", "dependencies": { - "follow-redirects": "^1.14.0" + "dequal": "^2.0.3" } }, - "node_modules/axobject-query": { - "version": "2.2.0", - "resolved": "https://registry.npmjs.org/axobject-query/-/axobject-query-2.2.0.tgz", - "integrity": "sha512-Td525n+iPOOyUQIeBfcASuG6uJsDOITl7Mds5gFyerkWiX7qhUTdYUBlSgNMyVqtSJqwpt1kXGLdUt6SykLMRA==" - }, "node_modules/babel-jest": { "version": "27.5.1", - "resolved": "https://registry.npmjs.org/babel-jest/-/babel-jest-27.5.1.tgz", - "integrity": "sha512-cdQ5dXjGRd0IBRATiQ4mZGlGlRE8kJpjPOixdNRdT+m3UcNqmYWN6rK6nvtXYfY3D76cb8s/O1Ss8ea24PIwcg==", + "license": "MIT", "dependencies": { "@jest/transform": "^27.5.1", "@jest/types": "^27.5.1", @@ -8026,74 +7371,9 @@ "@babel/core": "^7.8.0" } }, - "node_modules/babel-jest/node_modules/ansi-styles": { - "version": "4.3.0", - "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", - "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", - "dependencies": { - "color-convert": "^2.0.1" - }, - "engines": { - "node": ">=8" - }, - "funding": { - "url": "https://github.com/chalk/ansi-styles?sponsor=1" - } - }, - "node_modules/babel-jest/node_modules/chalk": { - "version": "4.1.2", - "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz", - "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==", - "dependencies": { - "ansi-styles": "^4.1.0", - "supports-color": "^7.1.0" - }, - "engines": { - "node": ">=10" - }, - "funding": { - "url": "https://github.com/chalk/chalk?sponsor=1" - } - }, - "node_modules/babel-jest/node_modules/color-convert": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz", - "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==", - "dependencies": { - "color-name": "~1.1.4" - }, - "engines": { - "node": ">=7.0.0" - } - }, - "node_modules/babel-jest/node_modules/color-name": { - "version": "1.1.4", - "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz", - "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==" - }, - "node_modules/babel-jest/node_modules/has-flag": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz", - "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==", - "engines": { - "node": ">=8" - } - }, - "node_modules/babel-jest/node_modules/supports-color": { - "version": "7.2.0", - "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", - "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", - "dependencies": { - "has-flag": "^4.0.0" - }, - "engines": { - "node": ">=8" - } - }, "node_modules/babel-loader": { - "version": "8.2.5", - "resolved": "https://registry.npmjs.org/babel-loader/-/babel-loader-8.2.5.tgz", - "integrity": "sha512-OSiFfH89LrEMiWd4pLNqGz4CwJDtbs2ZVc+iGu2HrkRfPxId9F2anQj38IxWpmRfsUY0aBZYi1EFcd3mhtRMLQ==", + "version": "8.3.0", + "license": "MIT", "dependencies": { "find-cache-dir": "^3.3.1", "loader-utils": "^2.0.0", @@ -8110,8 +7390,7 @@ }, "node_modules/babel-loader/node_modules/schema-utils": { "version": "2.7.1", - "resolved": "https://registry.npmjs.org/schema-utils/-/schema-utils-2.7.1.tgz", - "integrity": "sha512-SHiNtMOUGWBQJwzISiVYKu82GiV4QYGePp3odlY1tuKO7gPtphAT5R/py0fA6xtbgLL/RvtJZnU9b8s0F1q0Xg==", + "license": "MIT", "dependencies": { "@types/json-schema": "^7.0.5", "ajv": "^6.12.4", @@ -8125,18 +7404,9 @@ "url": "https://opencollective.com/webpack" } }, - "node_modules/babel-plugin-dynamic-import-node": { - "version": "2.3.3", - "resolved": "https://registry.npmjs.org/babel-plugin-dynamic-import-node/-/babel-plugin-dynamic-import-node-2.3.3.tgz", - "integrity": "sha512-jZVI+s9Zg3IqA/kdi0i6UDCybUI3aSBLnglhYbSSjKlV7yF1F/5LWv8MakQmvYpnbJDS6fcBL2KzHSxNCMtWSQ==", - "dependencies": { - "object.assign": "^4.1.0" - } - }, "node_modules/babel-plugin-emotion": { "version": "10.2.2", - "resolved": "https://registry.npmjs.org/babel-plugin-emotion/-/babel-plugin-emotion-10.2.2.tgz", - "integrity": "sha512-SMSkGoqTbTyUTDeuVuPIWifPdUGkTk1Kf9BWRiXIOIcuyMfsdp2EjeiiFvOzX8NOBvEh/ypKYvUh2rkgAJMCLA==", + "license": "MIT", "dependencies": { "@babel/helper-module-imports": "^7.0.0", "@emotion/hash": "0.8.0", @@ -8150,15 +7420,17 @@ "source-map": "^0.5.7" } }, + "node_modules/babel-plugin-emotion/node_modules/@emotion/hash": { + "version": "0.8.0", + "license": "MIT" + }, "node_modules/babel-plugin-emotion/node_modules/@emotion/memoize": { "version": "0.7.4", - "resolved": "https://registry.npmjs.org/@emotion/memoize/-/memoize-0.7.4.tgz", - "integrity": "sha512-Ja/Vfqe3HpuzRsG1oBtWTHk2PGZ7GR+2Vz5iYGelAw8dx32K0y7PjVuxK6z1nMpZOqAFsRUPCkK1YjJ56qJlgw==" + "license": "MIT" }, "node_modules/babel-plugin-emotion/node_modules/@emotion/serialize": { "version": "0.11.16", - "resolved": "https://registry.npmjs.org/@emotion/serialize/-/serialize-0.11.16.tgz", - "integrity": "sha512-G3J4o8by0VRrO+PFeSc3js2myYNOXVJ3Ya+RGVxnshRYgsvErfAOglKAiy1Eo1vhzxqtUvjCyS5gtewzkmvSSg==", + "license": "MIT", "dependencies": { "@emotion/hash": "0.8.0", "@emotion/memoize": "0.7.4", @@ -8167,15 +7439,17 @@ "csstype": "^2.5.7" } }, + "node_modules/babel-plugin-emotion/node_modules/@emotion/unitless": { + "version": "0.7.5", + "license": "MIT" + }, "node_modules/babel-plugin-emotion/node_modules/@emotion/utils": { "version": "0.11.3", - "resolved": "https://registry.npmjs.org/@emotion/utils/-/utils-0.11.3.tgz", - "integrity": "sha512-0o4l6pZC+hI88+bzuaX/6BgOvQVhbt2PfmxauVaYOGgbsAw14wdKyvMCZXnsnsHys94iadcF+RG/wZyx6+ZZBw==" + "license": "MIT" }, "node_modules/babel-plugin-emotion/node_modules/babel-plugin-macros": { "version": "2.8.0", - "resolved": "https://registry.npmjs.org/babel-plugin-macros/-/babel-plugin-macros-2.8.0.tgz", - "integrity": "sha512-SEP5kJpfGYqYKpBrj5XU3ahw5p5GOHJ0U5ssOSQ/WBVdwkD2Dzlce95exQTs3jOVWPPKLBN2rlEWkCK7dSmLvg==", + "license": "MIT", "dependencies": { "@babel/runtime": "^7.7.2", "cosmiconfig": "^6.0.0", @@ -8184,8 +7458,7 @@ }, "node_modules/babel-plugin-emotion/node_modules/cosmiconfig": { "version": "6.0.0", - "resolved": "https://registry.npmjs.org/cosmiconfig/-/cosmiconfig-6.0.0.tgz", - "integrity": "sha512-xb3ZL6+L8b9JLLCx3ZdoZy4+2ECphCMo2PwqgP1tlfVq6M6YReyzBJtvWWtbDSpNr9hn96pkCiZqUcFEc+54Qg==", + "license": "MIT", "dependencies": { "@types/parse-json": "^4.0.0", "import-fresh": "^3.1.0", @@ -8199,21 +7472,18 @@ }, "node_modules/babel-plugin-emotion/node_modules/csstype": { "version": "2.6.21", - "resolved": "https://registry.npmjs.org/csstype/-/csstype-2.6.21.tgz", - "integrity": "sha512-Z1PhmomIfypOpoMjRQB70jfvy/wxT50qW08YXO5lMIJkrdq4yOTR+AW7FqutScmB9NkLwxo+jU+kZLbofZZq/w==" + "license": "MIT" }, - "node_modules/babel-plugin-emotion/node_modules/source-map": { - "version": "0.5.7", - "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.5.7.tgz", - "integrity": "sha512-LbrmJOMUSdEVxIKvdcJzQC+nQhe8FUZQTXQy6+I75skNgn3OoQ0DZA8YnFa7gp8tqtL3KPf1kmo0R5DoApeSGQ==", + "node_modules/babel-plugin-emotion/node_modules/escape-string-regexp": { + "version": "1.0.5", + "license": "MIT", "engines": { - "node": ">=0.10.0" + "node": ">=0.8.0" } }, "node_modules/babel-plugin-istanbul": { "version": "6.1.1", - "resolved": "https://registry.npmjs.org/babel-plugin-istanbul/-/babel-plugin-istanbul-6.1.1.tgz", - "integrity": "sha512-Y1IQok9821cC9onCx5otgFfRm7Lm+I+wwxOx738M/WLPZ9Q42m4IG5W0FNX8WLL2gYMZo3JkuXIH2DOpWM+qwA==", + "license": "BSD-3-Clause", "dependencies": { "@babel/helper-plugin-utils": "^7.0.0", "@istanbuljs/load-nyc-config": "^1.0.0", @@ -8227,8 +7497,7 @@ }, "node_modules/babel-plugin-jest-hoist": { "version": "27.5.1", - "resolved": "https://registry.npmjs.org/babel-plugin-jest-hoist/-/babel-plugin-jest-hoist-27.5.1.tgz", - "integrity": "sha512-50wCwD5EMNW4aRpOwtqzyZHIewTYNxLA4nhB+09d8BIssfNfzBRhkBIHiaPv1Si226TQSvp8gxAJm2iY2qs2hQ==", + "license": "MIT", "dependencies": { "@babel/template": "^7.3.3", "@babel/types": "^7.3.3", @@ -8241,8 +7510,7 @@ }, "node_modules/babel-plugin-macros": { "version": "3.1.0", - "resolved": "https://registry.npmjs.org/babel-plugin-macros/-/babel-plugin-macros-3.1.0.tgz", - "integrity": "sha512-Cg7TFGpIr01vOQNODXOOaGz2NpCU5gl8x1qJFbb6hbZxR7XrcE2vtbAsTAbJ7/xwJtUuJEw8K8Zr/AE0LHlesg==", + "license": "MIT", "dependencies": { "@babel/runtime": "^7.12.5", "cosmiconfig": "^7.0.0", @@ -8255,85 +7523,62 @@ }, "node_modules/babel-plugin-named-asset-import": { "version": "0.3.8", - "resolved": "https://registry.npmjs.org/babel-plugin-named-asset-import/-/babel-plugin-named-asset-import-0.3.8.tgz", - "integrity": "sha512-WXiAc++qo7XcJ1ZnTYGtLxmBCVbddAml3CEXgWaBzNzLNoxtQ8AiGEFDMOhot9XjTCQbvP5E77Fj9Gk924f00Q==", + "license": "MIT", "peerDependencies": { "@babel/core": "^7.1.0" } }, "node_modules/babel-plugin-polyfill-corejs2": { - "version": "0.3.1", - "resolved": "https://registry.npmjs.org/babel-plugin-polyfill-corejs2/-/babel-plugin-polyfill-corejs2-0.3.1.tgz", - "integrity": "sha512-v7/T6EQcNfVLfcN2X8Lulb7DjprieyLWJK/zOWH5DUYcAgex9sP3h25Q+DLsX9TloXe3y1O8l2q2Jv9q8UVB9w==", + "version": "0.4.5", + "license": "MIT", "dependencies": { - "@babel/compat-data": "^7.13.11", - "@babel/helper-define-polyfill-provider": "^0.3.1", - "semver": "^6.1.1" + "@babel/compat-data": "^7.22.6", + "@babel/helper-define-polyfill-provider": "^0.4.2", + "semver": "^6.3.1" }, "peerDependencies": { - "@babel/core": "^7.0.0-0" + "@babel/core": "^7.4.0 || ^8.0.0-0 <8.0.0" } }, "node_modules/babel-plugin-polyfill-corejs2/node_modules/semver": { - "version": "6.3.0", - "resolved": "https://registry.npmjs.org/semver/-/semver-6.3.0.tgz", - "integrity": "sha512-b39TBaTSfV6yBrapU89p5fKekE2m/NwnDocOVruQFS1/veMgdzuPcnOM34M6CwxW8jH/lxEa5rBoDeUwu5HHTw==", + "version": "6.3.1", + "license": "ISC", "bin": { "semver": "bin/semver.js" } }, "node_modules/babel-plugin-polyfill-corejs3": { - "version": "0.5.2", - "resolved": "https://registry.npmjs.org/babel-plugin-polyfill-corejs3/-/babel-plugin-polyfill-corejs3-0.5.2.tgz", - "integrity": "sha512-G3uJih0XWiID451fpeFaYGVuxHEjzKTHtc9uGFEjR6hHrvNzeS/PX+LLLcetJcytsB5m4j+K3o/EpXJNb/5IEQ==", + "version": "0.8.3", + "license": "MIT", "dependencies": { - "@babel/helper-define-polyfill-provider": "^0.3.1", - "core-js-compat": "^3.21.0" + "@babel/helper-define-polyfill-provider": "^0.4.2", + "core-js-compat": "^3.31.0" }, "peerDependencies": { - "@babel/core": "^7.0.0-0" + "@babel/core": "^7.4.0 || ^8.0.0-0 <8.0.0" } }, "node_modules/babel-plugin-polyfill-regenerator": { - "version": "0.3.1", - "resolved": "https://registry.npmjs.org/babel-plugin-polyfill-regenerator/-/babel-plugin-polyfill-regenerator-0.3.1.tgz", - "integrity": "sha512-Y2B06tvgHYt1x0yz17jGkGeeMr5FeKUu+ASJ+N6nB5lQ8Dapfg42i0OVrf8PNGJ3zKL4A23snMi1IRwrqqND7A==", - "dependencies": { - "@babel/helper-define-polyfill-provider": "^0.3.1" - }, - "peerDependencies": { - "@babel/core": "^7.0.0-0" - } - }, - "node_modules/babel-plugin-styled-components": { - "version": "2.1.1", - "resolved": "https://registry.npmjs.org/babel-plugin-styled-components/-/babel-plugin-styled-components-2.1.1.tgz", - "integrity": "sha512-c8lJlszObVQPguHkI+akXv8+Jgb9Ccujx0EetL7oIvwU100LxO6XAGe45qry37wUL40a5U9f23SYrivro2XKhA==", + "version": "0.5.2", + "license": "MIT", "dependencies": { - "@babel/helper-annotate-as-pure": "^7.16.0", - "@babel/helper-module-imports": "^7.16.0", - "babel-plugin-syntax-jsx": "^6.18.0", - "lodash": "^4.17.21", - "picomatch": "^2.3.0" + "@babel/helper-define-polyfill-provider": "^0.4.2" }, "peerDependencies": { - "styled-components": ">= 2" + "@babel/core": "^7.4.0 || ^8.0.0-0 <8.0.0" } }, "node_modules/babel-plugin-syntax-jsx": { "version": "6.18.0", - "resolved": "https://registry.npmjs.org/babel-plugin-syntax-jsx/-/babel-plugin-syntax-jsx-6.18.0.tgz", - "integrity": "sha512-qrPaCSo9c8RHNRHIotaufGbuOBN8rtdC4QrrFFc43vyWCCz7Kl7GL1PGaXtMGQZUXrkCjNEgxDfmAuAabr/rlw==" + "license": "MIT" }, "node_modules/babel-plugin-transform-react-remove-prop-types": { "version": "0.4.24", - "resolved": "https://registry.npmjs.org/babel-plugin-transform-react-remove-prop-types/-/babel-plugin-transform-react-remove-prop-types-0.4.24.tgz", - "integrity": "sha512-eqj0hVcJUR57/Ug2zE1Yswsw4LhuqqHhD+8v120T1cl3kjg76QwtyBrdIk4WVwK+lAhBJVYCd/v+4nc4y+8JsA==" + "license": "MIT" }, "node_modules/babel-preset-current-node-syntax": { "version": "1.0.1", - "resolved": "https://registry.npmjs.org/babel-preset-current-node-syntax/-/babel-preset-current-node-syntax-1.0.1.tgz", - "integrity": "sha512-M7LQ0bxarkxQoN+vz5aJPsLBn77n8QgTFmo8WK0/44auK2xlCXrYcUxHFxgU7qW5Yzw/CjmLRK2uJzaCd7LvqQ==", + "license": "MIT", "dependencies": { "@babel/plugin-syntax-async-generators": "^7.8.4", "@babel/plugin-syntax-bigint": "^7.8.3", @@ -8354,8 +7599,7 @@ }, "node_modules/babel-preset-jest": { "version": "27.5.1", - "resolved": "https://registry.npmjs.org/babel-preset-jest/-/babel-preset-jest-27.5.1.tgz", - "integrity": "sha512-Nptf2FzlPCWYuJg41HBqXVT8ym6bXOevuCTbhxlUpjwtysGaIWFvDEjp4y+G7fl13FgOdjs7P/DmErqH7da0Ag==", + "license": "MIT", "dependencies": { "babel-plugin-jest-hoist": "^27.5.1", "babel-preset-current-node-syntax": "^1.0.0" @@ -8369,8 +7613,7 @@ }, "node_modules/babel-preset-react-app": { "version": "10.0.1", - "resolved": "https://registry.npmjs.org/babel-preset-react-app/-/babel-preset-react-app-10.0.1.tgz", - "integrity": "sha512-b0D9IZ1WhhCWkrTXyFuIIgqGzSkRIH5D5AmB0bXbzYAB1OBAwHcUeyWW2LorutLWF5btNo/N7r/cIdmvvKJlYg==", + "license": "MIT", "dependencies": { "@babel/core": "^7.16.0", "@babel/plugin-proposal-class-properties": "^7.16.0", @@ -8392,21 +7635,17 @@ }, "node_modules/balanced-match": { "version": "1.0.2", - "resolved": "https://registry.npmjs.org/balanced-match/-/balanced-match-1.0.2.tgz", - "integrity": "sha512-3oSeUO0TMV67hN1AmbXsK4yaqU7tjiHlbxRDZOpH0KW9+CeX4bRAaX0Anxt0tx2MrpRpWwQaPwIlISEJhYU5Pw==" + "license": "MIT" }, "node_modules/base-x": { "version": "3.0.9", - "resolved": "https://registry.npmjs.org/base-x/-/base-x-3.0.9.tgz", - "integrity": "sha512-H7JU6iBHTal1gp56aKoaa//YUxEaAOUiydvrV/pILqIHXTtqxSkATOnDA2u+jZ/61sD+L/412+7kzXRtWukhpQ==", + "license": "MIT", "dependencies": { "safe-buffer": "^5.0.1" } }, "node_modules/base64-js": { "version": "1.5.1", - "resolved": "https://registry.npmjs.org/base64-js/-/base64-js-1.5.1.tgz", - "integrity": "sha512-AKpaYlHn8t4SVbOHCy+b5+KKgvR4vrsD8vbvrbiQJps7fKDTkjkDry6ji0rUJjC0kzbNePLwzxq8iypo41qeWA==", "funding": [ { "type": "github", @@ -8420,40 +7659,35 @@ "type": "consulting", "url": "https://feross.org/support" } - ] + ], + "license": "MIT" }, "node_modules/base64-sol": { "version": "1.0.1", - "resolved": "https://registry.npmjs.org/base64-sol/-/base64-sol-1.0.1.tgz", - "integrity": "sha512-ld3cCNMeXt4uJXmLZBHFGMvVpK9KsLVEhPpFRXnvSVAqABKbuNZg/+dsq3NuM+wxFLb/UrVkz7m1ciWmkMfTbg==" + "license": "MIT" }, "node_modules/batch": { "version": "0.6.1", - "resolved": "https://registry.npmjs.org/batch/-/batch-0.6.1.tgz", - "integrity": "sha512-x+VAiMRL6UPkx+kudNvxTl6hB2XNNCG2r+7wixVfIYwu/2HKRXimwQyaumLjMveWvT2Hkd/cAJw+QBMfJ/EKVw==" + "license": "MIT" }, "node_modules/bcrypt-pbkdf": { "version": "1.0.2", - "resolved": "https://registry.npmjs.org/bcrypt-pbkdf/-/bcrypt-pbkdf-1.0.2.tgz", - "integrity": "sha512-qeFIXtP4MSoi6NLqO12WfqARWWuCKi2Rn/9hJLEmtB5yTNr9DqFWkJRCf2qShWzPeAMRnOgCrq0sg/KLv5ES9w==", + "license": "BSD-3-Clause", "dependencies": { "tweetnacl": "^0.14.3" } }, "node_modules/bcrypt-pbkdf/node_modules/tweetnacl": { "version": "0.14.5", - "resolved": "https://registry.npmjs.org/tweetnacl/-/tweetnacl-0.14.5.tgz", - "integrity": "sha512-KXXFFdAbFXY4geFIwoyNK+f5Z1b7swfXABfL7HXCmoIWMKU3dmS26672A4EeQtDzLKy7SXmfBu51JolvEKwtGA==" + "license": "Unlicense" }, "node_modules/bech32": { "version": "1.1.4", - "resolved": "https://registry.npmjs.org/bech32/-/bech32-1.1.4.tgz", - "integrity": "sha512-s0IrSOzLlbvX7yp4WBfPITzpAU8sqQcpsmwXDiKwrG4r491vwCO/XpejasRNl0piBMe/DvP4Tz0mIS/X1DPJBQ==" + "license": "MIT" }, "node_modules/bfj": { "version": "7.0.2", - "resolved": "https://registry.npmjs.org/bfj/-/bfj-7.0.2.tgz", - "integrity": "sha512-+e/UqUzwmzJamNF50tBV6tZPTORow7gQ96iFow+8b562OdMpEK0BcJEq2OSPEDmAbSMBQ7PKZ87ubFkgxpYWgw==", + "license": "MIT", "dependencies": { "bluebird": "^3.5.5", "check-types": "^11.1.1", @@ -8466,61 +7700,52 @@ }, "node_modules/big.js": { "version": "5.2.2", - "resolved": "https://registry.npmjs.org/big.js/-/big.js-5.2.2.tgz", - "integrity": "sha512-vyL2OymJxmarO8gxMr0mhChsO9QGwhynfuu4+MHTAW6czfq9humCB7rKpUjDd9YUiDPU4mzpyupFSvOClAwbmQ==", + "license": "MIT", "engines": { "node": "*" } }, "node_modules/bigint-crypto-utils": { - "version": "3.2.2", - "resolved": "https://registry.npmjs.org/bigint-crypto-utils/-/bigint-crypto-utils-3.2.2.tgz", - "integrity": "sha512-U1RbE3aX9ayCUVcIPHuPDPKcK3SFOXf93J1UK/iHlJuQB7bhagPIX06/CLpLEsDThJ7KA4Dhrnzynl+d2weTiw==", + "version": "3.3.0", + "license": "MIT", "peer": true, "engines": { "node": ">=14.0.0" } }, "node_modules/bignumber.js": { - "version": "9.0.2", - "resolved": "https://registry.npmjs.org/bignumber.js/-/bignumber.js-9.0.2.tgz", - "integrity": "sha512-GAcQvbpsM0pUb0zw1EI0KhQEZ+lRwR5fYaAp3vPOYuP7aDvGy6cVN6XHLauvF8SOga2y0dcLcjt3iQDTSEliyw==", + "version": "9.1.1", + "license": "MIT", "engines": { "node": "*" } }, "node_modules/binary-extensions": { "version": "2.2.0", - "resolved": "https://registry.npmjs.org/binary-extensions/-/binary-extensions-2.2.0.tgz", - "integrity": "sha512-jDctJ/IVQbZoJykoeHbhXpOlNBqGNcwXJKJog42E5HDPUwQTSdjCHdihjj0DlnheQ7blbT6dHOafNAiS8ooQKA==", + "license": "MIT", "engines": { "node": ">=8" } }, "node_modules/blakejs": { "version": "1.2.1", - "resolved": "https://registry.npmjs.org/blakejs/-/blakejs-1.2.1.tgz", - "integrity": "sha512-QXUSXI3QVc/gJME0dBpXrag1kbzOqCjCX8/b54ntNyW6sjtoqxqRk3LTmXzaJoh71zMsDCjM+47jS7XiwN/+fQ==" + "license": "MIT" }, "node_modules/bluebird": { "version": "3.7.2", - "resolved": "https://registry.npmjs.org/bluebird/-/bluebird-3.7.2.tgz", - "integrity": "sha512-XpNj6GDQzdfW+r2Wnn7xiSAd7TM3jzkxGXBGTtWKuSXv1xUV+azxAm8jdWZN06QTQk+2N2XB9jRDkvbmQmcRtg==" + "license": "MIT" }, "node_modules/bmp-js": { "version": "0.1.0", - "resolved": "https://registry.npmjs.org/bmp-js/-/bmp-js-0.1.0.tgz", - "integrity": "sha512-vHdS19CnY3hwiNdkaqk93DvjVLfbEcI8mys4UjuWrlX1haDmroo8o4xCzh4wD6DGV6HxRCyauwhHRqMTfERtjw==" + "license": "MIT" }, "node_modules/bn.js": { "version": "5.2.1", - "resolved": "https://registry.npmjs.org/bn.js/-/bn.js-5.2.1.tgz", - "integrity": "sha512-eXRvHzWyYPBuB4NBy0cmYQjGitUrtqwbvlzP3G6VFnNRbsZQIxQ10PbKKHt8gZ/HW/D/747aDl+QkDqg3KQLMQ==" + "license": "MIT" }, "node_modules/body-parser": { - "version": "1.20.0", - "resolved": "https://registry.npmjs.org/body-parser/-/body-parser-1.20.0.tgz", - "integrity": "sha512-DfJ+q6EPcGKZD1QWUjSpqp+Q7bDQTsQIF4zfUAtZ6qk+H/3/QRhg9CEp39ss+/T2vw0+HaidC0ecJj/DRLIaKg==", + "version": "1.20.1", + "license": "MIT", "dependencies": { "bytes": "3.1.2", "content-type": "~1.0.4", @@ -8530,7 +7755,7 @@ "http-errors": "2.0.0", "iconv-lite": "0.4.24", "on-finished": "2.4.1", - "qs": "6.10.3", + "qs": "6.11.0", "raw-body": "2.5.1", "type-is": "~1.6.18", "unpipe": "1.0.0" @@ -8542,24 +7767,21 @@ }, "node_modules/body-parser/node_modules/bytes": { "version": "3.1.2", - "resolved": "https://registry.npmjs.org/bytes/-/bytes-3.1.2.tgz", - "integrity": "sha512-/Nf7TyzTx6S3yRJObOAV7956r8cr2+Oj8AC5dt8wSP3BQAoeX58NoHyCU8P8zGkNXStjTSi6fzO6F0pBdcYbEg==", + "license": "MIT", "engines": { "node": ">= 0.8" } }, "node_modules/body-parser/node_modules/debug": { "version": "2.6.9", - "resolved": "https://registry.npmjs.org/debug/-/debug-2.6.9.tgz", - "integrity": "sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA==", + "license": "MIT", "dependencies": { "ms": "2.0.0" } }, "node_modules/body-parser/node_modules/iconv-lite": { "version": "0.4.24", - "resolved": "https://registry.npmjs.org/iconv-lite/-/iconv-lite-0.4.24.tgz", - "integrity": "sha512-v3MXnZAcvnywkTUEZomIActle7RXXeedOR31wwl7VlyoXO4Qi9arvSenNQWne1TcRwhCL1HwLI21bEqdpj8/rA==", + "license": "MIT", "dependencies": { "safer-buffer": ">= 2.1.2 < 3" }, @@ -8569,13 +7791,11 @@ }, "node_modules/body-parser/node_modules/ms": { "version": "2.0.0", - "resolved": "https://registry.npmjs.org/ms/-/ms-2.0.0.tgz", - "integrity": "sha512-Tpp60P6IUJDTuOq/5Z8cdskzJujfwqfOTkrwIwj7IRISpnkJnT6SyJ4PCPnGMoFjC9ddhal5KVIYtAt97ix05A==" + "license": "MIT" }, "node_modules/bonjour-service": { - "version": "1.0.13", - "resolved": "https://registry.npmjs.org/bonjour-service/-/bonjour-service-1.0.13.tgz", - "integrity": "sha512-LWKRU/7EqDUC9CTAQtuZl5HzBALoCYwtLhffW3et7vZMwv3bWLpJf8bRYlMD5OCcDpTfnPgNCV4yo9ZIaJGMiA==", + "version": "1.1.1", + "license": "MIT", "dependencies": { "array-flatten": "^2.1.2", "dns-equal": "^1.0.0", @@ -8585,18 +7805,15 @@ }, "node_modules/boolbase": { "version": "1.0.0", - "resolved": "https://registry.npmjs.org/boolbase/-/boolbase-1.0.0.tgz", - "integrity": "sha512-JZOSA7Mo9sNGB8+UjSgzdLtokWAky1zbztM3WRLCbZ70/3cTANmQmOdR7y2g+J0e2WXywy1yS468tY+IruqEww==" + "license": "ISC" }, "node_modules/bowser": { "version": "2.11.0", - "resolved": "https://registry.npmjs.org/bowser/-/bowser-2.11.0.tgz", - "integrity": "sha512-AlcaJBi/pqqJBIQ8U9Mcpc9i8Aqxn88Skv5d+xBX006BY5u8N3mGLHa5Lgppa7L/HfwgwLgZ6NYs+Ag6uUmJRA==" + "license": "MIT" }, "node_modules/brace-expansion": { "version": "1.1.11", - "resolved": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-1.1.11.tgz", - "integrity": "sha512-iCuPHDFgrHX7H2vEI/5xpz07zSHB00TpugqhmYtVmMO6518mCuRMoOYFldEBl0g187ufozdaHgWKcYFb61qGiA==", + "license": "MIT", "dependencies": { "balanced-match": "^1.0.0", "concat-map": "0.0.1" @@ -8604,8 +7821,7 @@ }, "node_modules/braces": { "version": "3.0.2", - "resolved": "https://registry.npmjs.org/braces/-/braces-3.0.2.tgz", - "integrity": "sha512-b8um+L1RzM3WDSzvhm6gIz1yfTbBt6YTlcEKAvsmqCZZFw46z626lVj9j1yEPW33H5H+lBQpZMP1k8l+78Ha0A==", + "license": "MIT", "dependencies": { "fill-range": "^7.0.1" }, @@ -8615,13 +7831,11 @@ }, "node_modules/brorand": { "version": "1.1.0", - "resolved": "https://registry.npmjs.org/brorand/-/brorand-1.1.0.tgz", - "integrity": "sha512-cKV8tMCEpQs4hK/ik71d6LrPOnpkpGBR0wzxqr68g2m/LB2GxVYQroAjMJZRVM1Y4BCjCKc3vAamxSzOY2RP+w==" + "license": "MIT" }, "node_modules/browser-level": { "version": "1.0.1", - "resolved": "https://registry.npmjs.org/browser-level/-/browser-level-1.0.1.tgz", - "integrity": "sha512-XECYKJ+Dbzw0lbydyQuJzwNXtOpbMSq737qxJN11sIRTErOMShvDpbzTlgju7orJKvx4epULolZAuJGLzCmWRQ==", + "license": "MIT", "peer": true, "dependencies": { "abstract-level": "^1.0.2", @@ -8632,19 +7846,16 @@ }, "node_modules/browser-process-hrtime": { "version": "1.0.0", - "resolved": "https://registry.npmjs.org/browser-process-hrtime/-/browser-process-hrtime-1.0.0.tgz", - "integrity": "sha512-9o5UecI3GhkpM6DrXr69PblIuWxPKk9Y0jHBRhdocZ2y7YECBFCsHm79Pr3OyR2AvjhDkabFJaDJMYRazHgsow==" + "license": "BSD-2-Clause" }, "node_modules/browser-stdout": { "version": "1.3.1", - "resolved": "https://registry.npmjs.org/browser-stdout/-/browser-stdout-1.3.1.tgz", - "integrity": "sha512-qhAVI1+Av2X7qelOfAIYwXONood6XlZE/fXaBSmW/T5SzLAmCgzi+eiWE7fUvbHaeNBQH13UftjpXxsfLkMpgw==", + "license": "ISC", "peer": true }, "node_modules/browserify-aes": { "version": "1.2.0", - "resolved": "https://registry.npmjs.org/browserify-aes/-/browserify-aes-1.2.0.tgz", - "integrity": "sha512-+7CHXqGuspUn/Sl5aO7Ea0xWGAtETPXNSAjHo48JfLdPWcMng33Xe4znFvQweqc/uzk5zSOI3H52CYnjCfb5hA==", + "license": "MIT", "dependencies": { "buffer-xor": "^1.0.3", "cipher-base": "^1.0.0", @@ -8655,9 +7866,7 @@ } }, "node_modules/browserslist": { - "version": "4.21.1", - "resolved": "https://registry.npmjs.org/browserslist/-/browserslist-4.21.1.tgz", - "integrity": "sha512-Nq8MFCSrnJXSc88yliwlzQe3qNe3VntIjhsArW9IJOEPSHNx23FalwApUVbzAWABLhYJJ7y8AynWI/XM8OdfjQ==", + "version": "4.21.10", "funding": [ { "type": "opencollective", @@ -8666,13 +7875,18 @@ { "type": "tidelift", "url": "https://tidelift.com/funding/github/npm/browserslist" + }, + { + "type": "github", + "url": "https://github.com/sponsors/ai" } ], + "license": "MIT", "dependencies": { - "caniuse-lite": "^1.0.30001359", - "electron-to-chromium": "^1.4.172", - "node-releases": "^2.0.5", - "update-browserslist-db": "^1.0.4" + "caniuse-lite": "^1.0.30001517", + "electron-to-chromium": "^1.4.477", + "node-releases": "^2.0.13", + "update-browserslist-db": "^1.0.11" }, "bin": { "browserslist": "cli.js" @@ -8683,16 +7897,14 @@ }, "node_modules/bs58": { "version": "4.0.1", - "resolved": "https://registry.npmjs.org/bs58/-/bs58-4.0.1.tgz", - "integrity": "sha512-Ok3Wdf5vOIlBrgCvTq96gBkJw+JUEzdBgyaza5HLtPm7yTHkjRy8+JzNyHF7BHa0bNWOQIp3m5YF0nnFcOIKLw==", + "license": "MIT", "dependencies": { "base-x": "^3.0.2" } }, "node_modules/bs58check": { "version": "2.1.2", - "resolved": "https://registry.npmjs.org/bs58check/-/bs58check-2.1.2.tgz", - "integrity": "sha512-0TS1jicxdU09dwJMNZtVAfzPi6Q6QeN0pM1Fkzrjn+XYHvzMKPU3pHVpva+769iNVSfIYWf7LJ6WR+BuuMf8cA==", + "license": "MIT", "dependencies": { "bs58": "^4.0.0", "create-hash": "^1.1.0", @@ -8701,16 +7913,13 @@ }, "node_modules/bser": { "version": "2.1.1", - "resolved": "https://registry.npmjs.org/bser/-/bser-2.1.1.tgz", - "integrity": "sha512-gQxTNE/GAfIIrmHLUE3oJyp5FO6HRBfhjnw4/wMmA63ZGDJnWBmgY/lyQBpnDUkGmAhbSe39tx2d/iTOAfglwQ==", + "license": "Apache-2.0", "dependencies": { "node-int64": "^0.4.0" } }, "node_modules/buffer": { "version": "6.0.3", - "resolved": "https://registry.npmjs.org/buffer/-/buffer-6.0.3.tgz", - "integrity": "sha512-FTiCpNxtwiZZHEZbcbTIcZjERVICn9yq/pDFkTl95/AxzD1naBctN7YO68riM/gLSDY7sdrMby8hofADYuuqOA==", "funding": [ { "type": "github", @@ -8725,6 +7934,7 @@ "url": "https://feross.org/support" } ], + "license": "MIT", "peer": true, "dependencies": { "base64-js": "^1.3.1", @@ -8733,32 +7943,27 @@ }, "node_modules/buffer-equal": { "version": "0.0.1", - "resolved": "https://registry.npmjs.org/buffer-equal/-/buffer-equal-0.0.1.tgz", - "integrity": "sha512-RgSV6InVQ9ODPdLWJ5UAqBqJBOg370Nz6ZQtRzpt6nUjc8v0St97uJ4PYC6NztqIScrAXafKM3mZPMygSe1ggA==", + "license": "MIT", "engines": { "node": ">=0.4.0" } }, "node_modules/buffer-from": { "version": "1.1.2", - "resolved": "https://registry.npmjs.org/buffer-from/-/buffer-from-1.1.2.tgz", - "integrity": "sha512-E+XQCRwSbaaiChtv6k6Dwgc+bx+Bs6vuKJHHl5kox/BaKbhiXzqQOwK4cO22yElGp2OCmjwVhT3HmxgyPGnJfQ==" + "license": "MIT" }, "node_modules/buffer-to-arraybuffer": { "version": "0.0.5", - "resolved": "https://registry.npmjs.org/buffer-to-arraybuffer/-/buffer-to-arraybuffer-0.0.5.tgz", - "integrity": "sha512-3dthu5CYiVB1DEJp61FtApNnNndTckcqe4pFcLdvHtrpG+kcyekCJKg4MRiDcFW7A6AODnXB9U4dwQiCW5kzJQ==" + "license": "MIT" }, "node_modules/buffer-xor": { "version": "1.0.3", - "resolved": "https://registry.npmjs.org/buffer-xor/-/buffer-xor-1.0.3.tgz", - "integrity": "sha512-571s0T7nZWK6vB67HI5dyUF7wXiNcfaPPPTl6zYCNApANjIvYJTg7hlud/+cJpdAhS7dVzqMLmfhfHR3rAcOjQ==" + "license": "MIT" }, "node_modules/bufferutil": { - "version": "4.0.6", - "resolved": "https://registry.npmjs.org/bufferutil/-/bufferutil-4.0.6.tgz", - "integrity": "sha512-jduaYOYtnio4aIAyc6UbvPCVcgq7nYpVnucyxr6eCYg/Woad9Hf/oxxBRDnGGjPfjUm6j5O/uBWhIu4iLebFaw==", + "version": "4.0.7", "hasInstallScript": true, + "license": "MIT", "dependencies": { "node-gyp-build": "^4.3.0" }, @@ -8768,8 +7973,7 @@ }, "node_modules/builtin-modules": { "version": "3.3.0", - "resolved": "https://registry.npmjs.org/builtin-modules/-/builtin-modules-3.3.0.tgz", - "integrity": "sha512-zhaCDicdLuWN5UbN5IMnFqNMhNfo919sH85y2/ea+5Yg9TsTkeZxpL+JLbp6cgYFS4sRLp3YV4S6yDuqVWHYOw==", + "license": "MIT", "engines": { "node": ">=6" }, @@ -8777,38 +7981,8 @@ "url": "https://github.com/sponsors/sindresorhus" } }, - "node_modules/bunyan": { - "version": "1.8.15", - "resolved": "https://registry.npmjs.org/bunyan/-/bunyan-1.8.15.tgz", - "integrity": "sha512-0tECWShh6wUysgucJcBAoYegf3JJoZWibxdqhTm7OHPeT42qdjkZ29QCMcKwbgU1kiH+auSIasNRXMLWXafXig==", - "engines": [ - "node >=0.10.0" - ], - "bin": { - "bunyan": "bin/bunyan" - }, - "optionalDependencies": { - "dtrace-provider": "~0.8", - "moment": "^2.19.3", - "mv": "~2", - "safe-json-stringify": "~1" - } - }, - "node_modules/bunyan-blackhole": { - "version": "1.1.1", - "resolved": "https://registry.npmjs.org/bunyan-blackhole/-/bunyan-blackhole-1.1.1.tgz", - "integrity": "sha512-UwzNPhbbSqbzeJhCbygqjlAY7p0ZUdv1ADXPQvDh3CA7VW3C/rCc1gaQO/8j9QL4vsKQCQZQSQIEwX+lxioPAQ==", - "dependencies": { - "stream-blackhole": "^1.0.3" - }, - "peerDependencies": { - "bunyan": "~1.x.x" - } - }, "node_modules/busboy": { "version": "1.6.0", - "resolved": "https://registry.npmjs.org/busboy/-/busboy-1.6.0.tgz", - "integrity": "sha512-8SFQbg/0hQ9xy3UNTB0YEnsNBbWfhf7RtnzpL7TkBiTBRfrQ9Fxcnz7VJsleJpyp6rVLvXiuORqjlHi5q+PYuA==", "peer": true, "dependencies": { "streamsearch": "^1.1.0" @@ -8819,24 +7993,21 @@ }, "node_modules/bytes": { "version": "3.0.0", - "resolved": "https://registry.npmjs.org/bytes/-/bytes-3.0.0.tgz", - "integrity": "sha512-pMhOfFDPiv9t5jjIXkHosWmkSyQbvsgEVNkz0ERHbuLh2T/7j4Mqqpz523Fe8MVY89KC6Sh/QfS2sM+SjgFDcw==", + "license": "MIT", "engines": { "node": ">= 0.8" } }, "node_modules/cacheable-lookup": { "version": "6.1.0", - "resolved": "https://registry.npmjs.org/cacheable-lookup/-/cacheable-lookup-6.1.0.tgz", - "integrity": "sha512-KJ/Dmo1lDDhmW2XDPMo+9oiy/CeqosPguPCrgcVzKyZrL6pM1gU2GmPY/xo6OQPTUaA/c0kwHuywB4E6nmT9ww==", + "license": "MIT", "engines": { "node": ">=10.6.0" } }, "node_modules/cacheable-request": { - "version": "7.0.2", - "resolved": "https://registry.npmjs.org/cacheable-request/-/cacheable-request-7.0.2.tgz", - "integrity": "sha512-pouW8/FmiPQbuGpkXQ9BAPv/Mo5xDGANgSNXzTzJ8DrKGuXOssM4wIQRjfanNRh3Yu5cfYPvcorqbhg2KIJtew==", + "version": "7.0.4", + "license": "MIT", "dependencies": { "clone-response": "^1.0.2", "get-stream": "^5.1.0", @@ -8852,8 +8023,7 @@ }, "node_modules/cacheable-request/node_modules/get-stream": { "version": "5.2.0", - "resolved": "https://registry.npmjs.org/get-stream/-/get-stream-5.2.0.tgz", - "integrity": "sha512-nBF+F1rAZVCu/p7rjzgA+Yb4lfYXrpl7a6VmJrU8wF9I1CKvP/QwPNZHnOlwbTkY6dvtFIzFMSyQXbLoTQPRpA==", + "license": "MIT", "dependencies": { "pump": "^3.0.0" }, @@ -8866,16 +8036,14 @@ }, "node_modules/cacheable-request/node_modules/lowercase-keys": { "version": "2.0.0", - "resolved": "https://registry.npmjs.org/lowercase-keys/-/lowercase-keys-2.0.0.tgz", - "integrity": "sha512-tqNXrS78oMOE73NMxK4EMLQsQowWf8jKooH9g7xPavRT706R6bkQJ6DY2Te7QukaZsulxa30wQ7bk0pm4XiHmA==", + "license": "MIT", "engines": { "node": ">=8" } }, "node_modules/call-bind": { "version": "1.0.2", - "resolved": "https://registry.npmjs.org/call-bind/-/call-bind-1.0.2.tgz", - "integrity": "sha512-7O+FbCihrB5WGbFYesctwmTKae6rOiIzmz1icreWJ+0aA7LJfuqhEso2T9ncpcFtzMQtzXf2QGGueWJGTYsqrA==", + "license": "MIT", "dependencies": { "function-bind": "^1.1.1", "get-intrinsic": "^1.0.2" @@ -8886,16 +8054,14 @@ }, "node_modules/callsites": { "version": "3.1.0", - "resolved": "https://registry.npmjs.org/callsites/-/callsites-3.1.0.tgz", - "integrity": "sha512-P8BjAsXvZS+VIDUI11hHCQEv74YT67YUi5JJFNWIqL235sBmjX4+qx9Muvls5ivyNENctx46xQLQ3aTuE7ssaQ==", + "license": "MIT", "engines": { "node": ">=6" } }, "node_modules/camel-case": { "version": "4.1.2", - "resolved": "https://registry.npmjs.org/camel-case/-/camel-case-4.1.2.tgz", - "integrity": "sha512-gxGWBrTT1JuMx6R+o5PTXMmUnhnVzLQ9SNutD4YqKtI6ap897t3tKECYla6gCWEkplXnlNybEkZg9GEGxKFCgw==", + "license": "MIT", "dependencies": { "pascal-case": "^3.1.2", "tslib": "^2.0.3" @@ -8903,8 +8069,7 @@ }, "node_modules/camelcase": { "version": "6.3.0", - "resolved": "https://registry.npmjs.org/camelcase/-/camelcase-6.3.0.tgz", - "integrity": "sha512-Gmy6FhYlCY7uOElZUSbxo2UCDH8owEk996gkbrpsgGtrJLM3J7jGxl9Ic7Qwwj4ivOE5AWZWRMecDdF7hqGjFA==", + "license": "MIT", "engines": { "node": ">=10" }, @@ -8914,24 +8079,21 @@ }, "node_modules/camelcase-css": { "version": "2.0.1", - "resolved": "https://registry.npmjs.org/camelcase-css/-/camelcase-css-2.0.1.tgz", - "integrity": "sha512-QOSvevhslijgYwRx6Rv7zKdMF8lbRmx+uQGx2+vDc+KI/eBnsy9kit5aj23AgGu3pa4t9AgwbnXWqS+iOY+2aA==", + "license": "MIT", "engines": { "node": ">= 6" } }, "node_modules/camelize": { "version": "1.0.1", - "resolved": "https://registry.npmjs.org/camelize/-/camelize-1.0.1.tgz", - "integrity": "sha512-dU+Tx2fsypxTgtLoE36npi3UqcjSSMNYfkqgmoEhtZrraP5VWq0K7FkWVTYa8eMPtnU/G2txVsfdCJTn9uzpuQ==", + "license": "MIT", "funding": { "url": "https://github.com/sponsors/ljharb" } }, "node_modules/caniuse-api": { "version": "3.0.0", - "resolved": "https://registry.npmjs.org/caniuse-api/-/caniuse-api-3.0.0.tgz", - "integrity": "sha512-bsTwuIg/BZZK/vreVTYYbSWoe2F+71P7K5QGEX+pT250DZbfU1MQ5prOKpPR+LL6uWKK3KMwMCAS74QB3Um1uw==", + "license": "MIT", "dependencies": { "browserslist": "^4.0.0", "caniuse-lite": "^1.0.0", @@ -8940,9 +8102,7 @@ } }, "node_modules/caniuse-lite": { - "version": "1.0.30001359", - "resolved": "https://registry.npmjs.org/caniuse-lite/-/caniuse-lite-1.0.30001359.tgz", - "integrity": "sha512-Xln/BAsPzEuiVLgJ2/45IaqD9jShtk3Y33anKb4+yLwQzws3+v6odKfpgES/cDEaZMLzSChpIGdbOYtH9MyuHw==", + "version": "1.0.30001524", "funding": [ { "type": "opencollective", @@ -8951,13 +8111,17 @@ { "type": "tidelift", "url": "https://tidelift.com/funding/github/npm/caniuse-lite" + }, + { + "type": "github", + "url": "https://github.com/sponsors/ai" } - ] + ], + "license": "CC-BY-4.0" }, "node_modules/case": { "version": "1.6.3", - "resolved": "https://registry.npmjs.org/case/-/case-1.6.3.tgz", - "integrity": "sha512-mzDSXIPaFwVDvZAHqZ9VlbyF4yyXRuX6IvB06WvPYkqJVO24kX1PPhv9bfpKNFZyxYFmmgo03HUiD8iklmJYRQ==", + "license": "(MIT OR GPL-3.0-or-later)", "peer": true, "engines": { "node": ">= 0.8.0" @@ -8965,62 +8129,57 @@ }, "node_modules/case-sensitive-paths-webpack-plugin": { "version": "2.4.0", - "resolved": "https://registry.npmjs.org/case-sensitive-paths-webpack-plugin/-/case-sensitive-paths-webpack-plugin-2.4.0.tgz", - "integrity": "sha512-roIFONhcxog0JSSWbvVAh3OocukmSgpqOH6YpMkCvav/ySIV3JKg4Dc8vYtQjYi/UxpNE36r/9v+VqTQqgkYmw==", + "license": "MIT", "engines": { "node": ">=4" } }, "node_modules/caseless": { "version": "0.12.0", - "resolved": "https://registry.npmjs.org/caseless/-/caseless-0.12.0.tgz", - "integrity": "sha512-4tYFyifaFfGacoiObjJegolkwSU4xQNGbVgUiNYVUxbQ2x2lUsFvY4hVgVzGiIe6WLOPqycWXA40l+PWsxthUw==" + "license": "Apache-2.0" }, "node_modules/catering": { "version": "2.1.1", - "resolved": "https://registry.npmjs.org/catering/-/catering-2.1.1.tgz", - "integrity": "sha512-K7Qy8O9p76sL3/3m7/zLKbRkyOlSZAgzEaLhyj2mXS8PsCud2Eo4hAb8aLtZqHh0QGqLcb9dlJSu6lHRVENm1w==", + "license": "MIT", "peer": true, "engines": { "node": ">=6" } }, "node_modules/chalk": { - "version": "2.4.2", - "resolved": "https://registry.npmjs.org/chalk/-/chalk-2.4.2.tgz", - "integrity": "sha512-Mti+f9lpJNcwF4tWV8/OrTTtF1gZi+f8FqlyAdouralcFWFQWF2+NgCHShjkCb+IFBLq9buZwE1xckQU4peSuQ==", + "version": "4.1.2", + "license": "MIT", "dependencies": { - "ansi-styles": "^3.2.1", - "escape-string-regexp": "^1.0.5", - "supports-color": "^5.3.0" + "ansi-styles": "^4.1.0", + "supports-color": "^7.1.0" }, "engines": { - "node": ">=4" + "node": ">=10" + }, + "funding": { + "url": "https://github.com/chalk/chalk?sponsor=1" } }, "node_modules/char-regex": { "version": "1.0.2", - "resolved": "https://registry.npmjs.org/char-regex/-/char-regex-1.0.2.tgz", - "integrity": "sha512-kWWXztvZ5SBQV+eRgKFeh8q5sLuZY2+8WUIzlxWVTg+oGwY14qylx1KbKzHd8P6ZYkAg0xyIDU9JMHhyJMZ1jw==", + "license": "MIT", "engines": { "node": ">=10" } }, "node_modules/check-types": { - "version": "11.1.2", - "resolved": "https://registry.npmjs.org/check-types/-/check-types-11.1.2.tgz", - "integrity": "sha512-tzWzvgePgLORb9/3a0YenggReLKAIb2owL03H2Xdoe5pKcUyWRSEQ8xfCar8t2SIAuEDwtmx2da1YB52YuHQMQ==" + "version": "11.2.2", + "license": "MIT" }, "node_modules/chokidar": { "version": "3.5.3", - "resolved": "https://registry.npmjs.org/chokidar/-/chokidar-3.5.3.tgz", - "integrity": "sha512-Dr3sfKRP6oTcjf2JmUmFJfeVMvXBdegxB0iVQ5eb2V10uFJUCAS8OByZdVAyVb8xXNz3GjjTgj9kLWsZTqE6kw==", "funding": [ { "type": "individual", "url": "https://paulmillr.com/funding/" } ], + "license": "MIT", "dependencies": { "anymatch": "~3.1.2", "braces": "~3.0.2", @@ -9039,8 +8198,7 @@ }, "node_modules/chokidar/node_modules/glob-parent": { "version": "5.1.2", - "resolved": "https://registry.npmjs.org/glob-parent/-/glob-parent-5.1.2.tgz", - "integrity": "sha512-AOIgSQCepiJYwP3ARnGx+5VnTu2HBYdzbGP45eLw1vr3zB3vZLeyed1sC9hnbcOc9/SrMyM5RPQrkGz4aS9Zow==", + "license": "ISC", "dependencies": { "is-glob": "^4.0.1" }, @@ -9050,27 +8208,31 @@ }, "node_modules/chownr": { "version": "1.1.4", - "resolved": "https://registry.npmjs.org/chownr/-/chownr-1.1.4.tgz", - "integrity": "sha512-jJ0bqzaylmJtVnNgzTeSOs8DPavpbYgEr/b0YL8/2GO3xJEhInFmhKMUnEJQjZumK7KXGFhUy89PrsJWlakBVg==" + "license": "ISC" }, "node_modules/chrome-trace-event": { "version": "1.0.3", - "resolved": "https://registry.npmjs.org/chrome-trace-event/-/chrome-trace-event-1.0.3.tgz", - "integrity": "sha512-p3KULyQg4S7NIHixdwbGX+nFHkoBiA4YQmyWtjb8XngSKV124nJmRysgAeujbUVb15vh+RvFUfCPqU7rXk+hZg==", + "license": "MIT", "engines": { "node": ">=6.0" } }, "node_modules/ci-info": { - "version": "3.3.2", - "resolved": "https://registry.npmjs.org/ci-info/-/ci-info-3.3.2.tgz", - "integrity": "sha512-xmDt/QIAdeZ9+nfdPsaBCpMvHNLFiLdjj59qjqn+6iPe6YmHGQ35sBnQ8uslRBXFmXkiZQOJRjvQeoGppoTjjg==" + "version": "3.8.0", + "funding": [ + { + "type": "github", + "url": "https://github.com/sponsors/sibiraj-s" + } + ], + "license": "MIT", + "engines": { + "node": ">=8" + } }, "node_modules/cids": { "version": "1.1.9", - "resolved": "https://registry.npmjs.org/cids/-/cids-1.1.9.tgz", - "integrity": "sha512-l11hWRfugIcbGuTZwAM5PwpjPPjyb6UZOGwlHSnOBV5o07XhQ4gNpBN67FbODvpjyHtd+0Xs6KNvUcGBiDRsdg==", - "deprecated": "This module has been superseded by the multiformats module", + "license": "MIT", "dependencies": { "multibase": "^4.0.1", "multicodec": "^3.0.1", @@ -9084,28 +8246,24 @@ }, "node_modules/cipher-base": { "version": "1.0.4", - "resolved": "https://registry.npmjs.org/cipher-base/-/cipher-base-1.0.4.tgz", - "integrity": "sha512-Kkht5ye6ZGmwv40uUDZztayT2ThLQGfnj/T71N/XzeZeo3nf8foyW7zGTsPYkEya3m5f3cAypH+qe7YOrM1U2Q==", + "license": "MIT", "dependencies": { "inherits": "^2.0.1", "safe-buffer": "^5.0.1" } }, "node_modules/cjs-module-lexer": { - "version": "1.2.2", - "resolved": "https://registry.npmjs.org/cjs-module-lexer/-/cjs-module-lexer-1.2.2.tgz", - "integrity": "sha512-cOU9usZw8/dXIXKtwa8pM0OTJQuJkxMN6w30csNRUerHfeQ5R6U3kkU/FtJeIf3M202OHfY2U8ccInBG7/xogA==" + "version": "1.2.3", + "license": "MIT" }, "node_modules/class-is": { "version": "1.1.0", - "resolved": "https://registry.npmjs.org/class-is/-/class-is-1.1.0.tgz", - "integrity": "sha512-rhjH9AG1fvabIDoGRVH587413LPjTZgmDF9fOFCbFJQV4yuocX1mHxxvXI4g3cGwbVY9wAYIoKlg1N79frJKQw==" + "license": "MIT" }, "node_modules/classic-level": { "version": "1.3.0", - "resolved": "https://registry.npmjs.org/classic-level/-/classic-level-1.3.0.tgz", - "integrity": "sha512-iwFAJQYtqRTRM0F6L8h4JCt00ZSGdOyqh7yVrhhjrOpFhmBjNlRUey64MCiyo6UmQHMJ+No3c81nujPv+n9yrg==", "hasInstallScript": true, + "license": "MIT", "peer": true, "dependencies": { "abstract-level": "^1.0.2", @@ -9119,9 +8277,8 @@ } }, "node_modules/clean-css": { - "version": "5.3.0", - "resolved": "https://registry.npmjs.org/clean-css/-/clean-css-5.3.0.tgz", - "integrity": "sha512-YYuuxv4H/iNb1Z/5IbMRoxgrzjWGhOEFfd+groZ5dMCVkpENiMZmwspdrzBo9286JjM1gZJPAyL7ZIdzuvu2AQ==", + "version": "5.3.2", + "license": "MIT", "dependencies": { "source-map": "~0.6.0" }, @@ -9131,16 +8288,14 @@ }, "node_modules/clean-css/node_modules/source-map": { "version": "0.6.1", - "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz", - "integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==", + "license": "BSD-3-Clause", "engines": { "node": ">=0.10.0" } }, "node_modules/clean-stack": { "version": "2.2.0", - "resolved": "https://registry.npmjs.org/clean-stack/-/clean-stack-2.2.0.tgz", - "integrity": "sha512-4diC9HaTE+KRAMWhDhrGOECgWZxoevMc5TlkObMqNSsVU62PYzXZ/SMTjzyGAFF1YusgxGcSWTEXBhp0CPwQ1A==", + "license": "MIT", "peer": true, "engines": { "node": ">=6" @@ -9148,26 +8303,16 @@ }, "node_modules/cliui": { "version": "7.0.4", - "resolved": "https://registry.npmjs.org/cliui/-/cliui-7.0.4.tgz", - "integrity": "sha512-OcRE68cOsVMXp1Yvonl/fzkQOyjLSu/8bhPDfQt0e0/Eb283TKP20Fs2MqoPsr9SwA595rRCA+QMzYc9nBP+JQ==", + "license": "ISC", "dependencies": { "string-width": "^4.2.0", "strip-ansi": "^6.0.0", "wrap-ansi": "^7.0.0" } }, - "node_modules/clone": { - "version": "2.1.2", - "resolved": "https://registry.npmjs.org/clone/-/clone-2.1.2.tgz", - "integrity": "sha512-3Pe/CF1Nn94hyhIYpjtiLhdCoEoz0DqQ+988E9gmeEdQZlojxnOb74wctFyuwWQHzqyf9X7C7MG8juUpqBJT8w==", - "engines": { - "node": ">=0.8" - } - }, "node_modules/clone-response": { "version": "1.0.3", - "resolved": "https://registry.npmjs.org/clone-response/-/clone-response-1.0.3.tgz", - "integrity": "sha512-ROoL94jJH2dUVML2Y/5PEDNaSHgeOdSDicUyS7izcF63G6sTc/FTjLub4b8Il9S8S0beOfYt0TaA5qvFK+w0wA==", + "license": "MIT", "dependencies": { "mimic-response": "^1.0.0" }, @@ -9176,17 +8321,15 @@ } }, "node_modules/clsx": { - "version": "1.1.1", - "resolved": "https://registry.npmjs.org/clsx/-/clsx-1.1.1.tgz", - "integrity": "sha512-6/bPho624p3S2pMyvP5kKBPXnI3ufHLObBFCfgx+LkeR5lg2XYy2hqZqUf45ypD8COn2bhgGJSUE+l5dhNBieA==", + "version": "2.0.0", + "license": "MIT", "engines": { "node": ">=6" } }, "node_modules/co": { "version": "4.6.0", - "resolved": "https://registry.npmjs.org/co/-/co-4.6.0.tgz", - "integrity": "sha512-QVb0dM5HvG+uaxitm8wONl7jltx8dqhfU33DcqtOZcLSVIKSDDLDi7+0LbAKiyI8hD9u42m2YxXSkMGWThaecQ==", + "license": "MIT", "engines": { "iojs": ">= 1.0.0", "node": ">= 0.12.0" @@ -9194,8 +8337,7 @@ }, "node_modules/coa": { "version": "2.0.2", - "resolved": "https://registry.npmjs.org/coa/-/coa-2.0.2.tgz", - "integrity": "sha512-q5/jG+YQnSy4nRTV4F7lPepBJZ8qBNJJDBuJdoejDyLXgmL7IEo+Le2JDZudFTFt7mrCqIRaSjws4ygRCTCAXA==", + "license": "MIT", "dependencies": { "@types/q": "^1.5.1", "chalk": "^2.4.1", @@ -9205,38 +8347,92 @@ "node": ">= 4.0" } }, - "node_modules/collect-v8-coverage": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/collect-v8-coverage/-/collect-v8-coverage-1.0.1.tgz", - "integrity": "sha512-iBPtljfCNcTKNAto0KEtDfZ3qzjJvqE3aTGZsbhjSBlorqpXJlaWWtPO35D+ZImoC3KWejX64o+yPGxhWSTzfg==" + "node_modules/coa/node_modules/ansi-styles": { + "version": "3.2.1", + "license": "MIT", + "dependencies": { + "color-convert": "^1.9.0" + }, + "engines": { + "node": ">=4" + } }, - "node_modules/color-convert": { + "node_modules/coa/node_modules/chalk": { + "version": "2.4.2", + "license": "MIT", + "dependencies": { + "ansi-styles": "^3.2.1", + "escape-string-regexp": "^1.0.5", + "supports-color": "^5.3.0" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/coa/node_modules/color-convert": { "version": "1.9.3", - "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-1.9.3.tgz", - "integrity": "sha512-QfAUtd+vFdAtFQcC8CCyYt1fYWxSqAiK2cSD6zDB8N3cpsEBAvRxp9zOGg6G/SHHJYAT88/az/IuDGALsNVbGg==", + "license": "MIT", "dependencies": { "color-name": "1.1.3" } }, - "node_modules/color-name": { + "node_modules/coa/node_modules/color-name": { "version": "1.1.3", - "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.3.tgz", - "integrity": "sha512-72fSenhMw2HZMTVHeCA9KCmpEIbzWiQsjN+BHcBbS9vr1mtt+vJjPdksIBNUmKAW8TFUDPJK5SUU3QhE9NEXDw==" + "license": "MIT" + }, + "node_modules/coa/node_modules/escape-string-regexp": { + "version": "1.0.5", + "license": "MIT", + "engines": { + "node": ">=0.8.0" + } + }, + "node_modules/coa/node_modules/has-flag": { + "version": "3.0.0", + "license": "MIT", + "engines": { + "node": ">=4" + } + }, + "node_modules/coa/node_modules/supports-color": { + "version": "5.5.0", + "license": "MIT", + "dependencies": { + "has-flag": "^3.0.0" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/collect-v8-coverage": { + "version": "1.0.2", + "license": "MIT" + }, + "node_modules/color-convert": { + "version": "2.0.1", + "license": "MIT", + "dependencies": { + "color-name": "~1.1.4" + }, + "engines": { + "node": ">=7.0.0" + } + }, + "node_modules/color-name": { + "version": "1.1.4", + "license": "MIT" }, "node_modules/colord": { - "version": "2.9.2", - "resolved": "https://registry.npmjs.org/colord/-/colord-2.9.2.tgz", - "integrity": "sha512-Uqbg+J445nc1TKn4FoDPS6ZZqAvEDnwrH42yo8B40JSOgSLxMZ/gt3h4nmCtPLQeXhjJJkqBx7SCY35WnIixaQ==" + "version": "2.9.3", + "license": "MIT" }, "node_modules/colorette": { - "version": "2.0.19", - "resolved": "https://registry.npmjs.org/colorette/-/colorette-2.0.19.tgz", - "integrity": "sha512-3tlv/dIP7FWvj3BsbHrGLJ6l/oKh1O3TcgBqMn+yyCagOxc23fyzDS6HypQbgxWbkpDnf52p1LuR4eWDQ/K9WQ==" + "version": "2.0.20", + "license": "MIT" }, "node_modules/combined-stream": { "version": "1.0.8", - "resolved": "https://registry.npmjs.org/combined-stream/-/combined-stream-1.0.8.tgz", - "integrity": "sha512-FQN4MRfuJeHf7cBbBMJFXhKSDq+2kAArBlmRBvcvFE5BB1HZKXtSFASDhdlz9zOYwxh8lDdnvmMOe/+5cdoEdg==", + "license": "MIT", "dependencies": { "delayed-stream": "~1.0.0" }, @@ -9246,15 +8442,13 @@ }, "node_modules/command-exists": { "version": "1.2.9", - "resolved": "https://registry.npmjs.org/command-exists/-/command-exists-1.2.9.tgz", - "integrity": "sha512-LTQ/SGc+s0Xc0Fu5WaKnR0YiygZkm9eKFvyS+fRsU7/ZWFF8ykFM6Pc9aCVf1+xasOOZpO3BAVgVrKvsqKHV7w==", + "license": "MIT", "peer": true }, "node_modules/command-line-args": { "version": "5.2.1", - "resolved": "https://registry.npmjs.org/command-line-args/-/command-line-args-5.2.1.tgz", - "integrity": "sha512-H4UfQhZyakIjC74I9d34fGYDwk3XpSr17QhEd0Q3I9Xq1CETHo4Hcuo87WyWHpAF1aSLjLRf5lD9ZGX2qStUvg==", "dev": true, + "license": "MIT", "dependencies": { "array-back": "^3.1.0", "find-replace": "^3.0.0", @@ -9267,9 +8461,8 @@ }, "node_modules/command-line-usage": { "version": "6.1.3", - "resolved": "https://registry.npmjs.org/command-line-usage/-/command-line-usage-6.1.3.tgz", - "integrity": "sha512-sH5ZSPr+7UStsloltmDh7Ce5fb8XPlHyoPzTpyyMuYCtervL65+ubVZ6Q61cFtFl62UyJlc8/JwERRbAFPUqgw==", "dev": true, + "license": "MIT", "dependencies": { "array-back": "^4.0.2", "chalk": "^2.4.2", @@ -9280,54 +8473,111 @@ "node": ">=8.0.0" } }, + "node_modules/command-line-usage/node_modules/ansi-styles": { + "version": "3.2.1", + "dev": true, + "license": "MIT", + "dependencies": { + "color-convert": "^1.9.0" + }, + "engines": { + "node": ">=4" + } + }, "node_modules/command-line-usage/node_modules/array-back": { "version": "4.0.2", - "resolved": "https://registry.npmjs.org/array-back/-/array-back-4.0.2.tgz", - "integrity": "sha512-NbdMezxqf94cnNfWLL7V/im0Ub+Anbb0IoZhvzie8+4HJ4nMQuzHuy49FkGYCJK2yAloZ3meiB6AVMClbrI1vg==", "dev": true, + "license": "MIT", "engines": { "node": ">=8" } }, + "node_modules/command-line-usage/node_modules/chalk": { + "version": "2.4.2", + "dev": true, + "license": "MIT", + "dependencies": { + "ansi-styles": "^3.2.1", + "escape-string-regexp": "^1.0.5", + "supports-color": "^5.3.0" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/command-line-usage/node_modules/color-convert": { + "version": "1.9.3", + "dev": true, + "license": "MIT", + "dependencies": { + "color-name": "1.1.3" + } + }, + "node_modules/command-line-usage/node_modules/color-name": { + "version": "1.1.3", + "dev": true, + "license": "MIT" + }, + "node_modules/command-line-usage/node_modules/escape-string-regexp": { + "version": "1.0.5", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=0.8.0" + } + }, + "node_modules/command-line-usage/node_modules/has-flag": { + "version": "3.0.0", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=4" + } + }, + "node_modules/command-line-usage/node_modules/supports-color": { + "version": "5.5.0", + "dev": true, + "license": "MIT", + "dependencies": { + "has-flag": "^3.0.0" + }, + "engines": { + "node": ">=4" + } + }, "node_modules/command-line-usage/node_modules/typical": { "version": "5.2.0", - "resolved": "https://registry.npmjs.org/typical/-/typical-5.2.0.tgz", - "integrity": "sha512-dvdQgNDNJo+8B2uBQoqdb11eUCE1JQXhvjC/CZtgvZseVd5TYMXnq0+vuUemXbd/Se29cTaUuPX3YIc2xgbvIg==", "dev": true, + "license": "MIT", "engines": { "node": ">=8" } }, "node_modules/commander": { "version": "8.3.0", - "resolved": "https://registry.npmjs.org/commander/-/commander-8.3.0.tgz", - "integrity": "sha512-OkTL9umf+He2DZkUq8f8J9of7yL6RJKI24dVITBmNfZBmri9zYZQrKkuXiKhyfPSu8tUhnVBB1iKXevvnlR4Ww==", + "license": "MIT", "engines": { "node": ">= 12" } }, "node_modules/common-path-prefix": { "version": "3.0.0", - "resolved": "https://registry.npmjs.org/common-path-prefix/-/common-path-prefix-3.0.0.tgz", - "integrity": "sha512-QE33hToZseCH3jS0qN96O/bSh3kaw/h+Tq7ngyY9eWDUnTlTNUyqfqvCXioLe5Na5jFsL78ra/wuBU4iuEgd4w==" + "license": "ISC" }, "node_modules/common-tags": { "version": "1.8.2", - "resolved": "https://registry.npmjs.org/common-tags/-/common-tags-1.8.2.tgz", - "integrity": "sha512-gk/Z852D2Wtb//0I+kRFNKKE9dIIVirjoqPoA1wJU+XePVXZfGeBpk45+A1rKO4Q43prqWBNY/MiIeRLbPWUaA==", + "license": "MIT", "engines": { "node": ">=4.0.0" } }, "node_modules/commondir": { "version": "1.0.1", - "resolved": "https://registry.npmjs.org/commondir/-/commondir-1.0.1.tgz", - "integrity": "sha512-W9pAhw0ja1Edb5GVdIF1mjZw/ASI0AlShXM83UUGe2DVr5TdAPEA1OA8m/g8zWp9x6On7gqufY+FatDbC3MDQg==" + "license": "MIT" }, "node_modules/compressible": { "version": "2.0.18", - "resolved": "https://registry.npmjs.org/compressible/-/compressible-2.0.18.tgz", - "integrity": "sha512-AF3r7P5dWxL8MxyITRMlORQNaOA2IkAFaTr4k7BUumjPtRpGDTZpl0Pb1XCO6JeDCBdp126Cgs9sMxqSjgYyRg==", + "license": "MIT", "dependencies": { "mime-db": ">= 1.43.0 < 2" }, @@ -9337,8 +8587,7 @@ }, "node_modules/compression": { "version": "1.7.4", - "resolved": "https://registry.npmjs.org/compression/-/compression-1.7.4.tgz", - "integrity": "sha512-jaSIDzP9pZVS4ZfQ+TzvtiWhdpFhE2RDHz8QJkpX9SIpLq88VueF5jJw6t+6CUQcAoA6t+x89MLrWAqpfDE8iQ==", + "license": "MIT", "dependencies": { "accepts": "~1.3.5", "bytes": "3.0.0", @@ -9354,44 +8603,41 @@ }, "node_modules/compression/node_modules/debug": { "version": "2.6.9", - "resolved": "https://registry.npmjs.org/debug/-/debug-2.6.9.tgz", - "integrity": "sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA==", + "license": "MIT", "dependencies": { "ms": "2.0.0" } }, "node_modules/compression/node_modules/ms": { "version": "2.0.0", - "resolved": "https://registry.npmjs.org/ms/-/ms-2.0.0.tgz", - "integrity": "sha512-Tpp60P6IUJDTuOq/5Z8cdskzJujfwqfOTkrwIwj7IRISpnkJnT6SyJ4PCPnGMoFjC9ddhal5KVIYtAt97ix05A==" + "license": "MIT" + }, + "node_modules/compression/node_modules/safe-buffer": { + "version": "5.1.2", + "license": "MIT" }, "node_modules/concat-map": { "version": "0.0.1", - "resolved": "https://registry.npmjs.org/concat-map/-/concat-map-0.0.1.tgz", - "integrity": "sha512-/Srv4dswyQNBfohGpz9o6Yb3Gz3SrUDqBH5rTuhGR7ahtlbYKnVxw2bCFMRljaA7EXHaXZ8wsHdodFvbkhKmqg==" + "license": "MIT" }, "node_modules/confusing-browser-globals": { "version": "1.0.11", - "resolved": "https://registry.npmjs.org/confusing-browser-globals/-/confusing-browser-globals-1.0.11.tgz", - "integrity": "sha512-JsPKdmh8ZkmnHxDk55FZ1TqVLvEQTvoByJZRN9jzI0UjxK/QgAmsphz7PGtqgPieQZ/CQcHWXCR7ATDNhGe+YA==" + "license": "MIT" }, "node_modules/connect-history-api-fallback": { - "version": "1.6.0", - "resolved": "https://registry.npmjs.org/connect-history-api-fallback/-/connect-history-api-fallback-1.6.0.tgz", - "integrity": "sha512-e54B99q/OUoH64zYYRf3HBP5z24G38h5D3qXu23JGRoigpX5Ss4r9ZnDk3g0Z8uQC2x2lPaJ+UlWBc1ZWBWdLg==", + "version": "2.0.0", + "license": "MIT", "engines": { "node": ">=0.8" } }, "node_modules/consolidated-events": { "version": "2.0.2", - "resolved": "https://registry.npmjs.org/consolidated-events/-/consolidated-events-2.0.2.tgz", - "integrity": "sha512-2/uRVMdRypf5z/TW/ncD/66l75P5hH2vM/GR8Jf8HLc2xnfJtmina6F6du8+v4Z2vTrMo7jC+W1tmEEuuELgkQ==" + "license": "MIT" }, "node_modules/content-disposition": { "version": "0.5.4", - "resolved": "https://registry.npmjs.org/content-disposition/-/content-disposition-0.5.4.tgz", - "integrity": "sha512-FveZTNuGw04cxlAiWbzi6zTAL/lhehaWbTtgluJh4/E95DqMwTmha3KZN1aAWA8cFIhHzMZUvLevkw5Rqk+tSQ==", + "license": "MIT", "dependencies": { "safe-buffer": "5.2.1" }, @@ -9399,29 +8645,9 @@ "node": ">= 0.6" } }, - "node_modules/content-disposition/node_modules/safe-buffer": { - "version": "5.2.1", - "resolved": "https://registry.npmjs.org/safe-buffer/-/safe-buffer-5.2.1.tgz", - "integrity": "sha512-rp3So07KcdmmKbGvgaNxQSJr7bGVSVk5S9Eq1F+ppbRo70+YeaDxkw5Dd8NPN+GD6bjnYm2VuPuCXmpuYvmCXQ==", - "funding": [ - { - "type": "github", - "url": "https://github.com/sponsors/feross" - }, - { - "type": "patreon", - "url": "https://www.patreon.com/feross" - }, - { - "type": "consulting", - "url": "https://feross.org/support" - } - ] - }, "node_modules/content-hash": { "version": "2.5.2", - "resolved": "https://registry.npmjs.org/content-hash/-/content-hash-2.5.2.tgz", - "integrity": "sha512-FvIQKy0S1JaWV10sMsA7TRx8bpU+pqPkhbsfvOJAdjRXvYxEckAwQWGwtRjiaJfh+E0DvcWUGqcdjwMGFjsSdw==", + "license": "ISC", "dependencies": { "cids": "^0.7.1", "multicodec": "^0.5.5", @@ -9430,8 +8656,6 @@ }, "node_modules/content-hash/node_modules/buffer": { "version": "5.7.1", - "resolved": "https://registry.npmjs.org/buffer/-/buffer-5.7.1.tgz", - "integrity": "sha512-EHcyIPBQ4BSGlvjB16k5KgAJ27CIsHY/2JBmCRReo48y9rQ3MaUzWX3KVlBa4U7MyX02HdVj0K7C3WaB3ju7FQ==", "funding": [ { "type": "github", @@ -9446,6 +8670,7 @@ "url": "https://feross.org/support" } ], + "license": "MIT", "dependencies": { "base64-js": "^1.3.1", "ieee754": "^1.1.13" @@ -9453,9 +8678,7 @@ }, "node_modules/content-hash/node_modules/cids": { "version": "0.7.5", - "resolved": "https://registry.npmjs.org/cids/-/cids-0.7.5.tgz", - "integrity": "sha512-zT7mPeghoWAu+ppn8+BS1tQ5qGmbMfB4AregnQjA/qHY3GC1m1ptI9GkWNlgeu38r7CuRdXB47uY2XgAYt6QVA==", - "deprecated": "This module has been superseded by the multiformats module", + "license": "MIT", "dependencies": { "buffer": "^5.5.0", "class-is": "^1.1.0", @@ -9470,9 +8693,7 @@ }, "node_modules/content-hash/node_modules/cids/node_modules/multicodec": { "version": "1.0.4", - "resolved": "https://registry.npmjs.org/multicodec/-/multicodec-1.0.4.tgz", - "integrity": "sha512-NDd7FeS3QamVtbgfvu5h7fd1IlbaC4EQ0/pgU4zqE2vdHCmBGsUa0TiM8/TdSeG6BMPC92OOCf8F1ocE/Wkrrg==", - "deprecated": "This module has been superseded by the multiformats module", + "license": "MIT", "dependencies": { "buffer": "^5.6.0", "varint": "^5.0.0" @@ -9480,9 +8701,7 @@ }, "node_modules/content-hash/node_modules/multibase": { "version": "0.6.1", - "resolved": "https://registry.npmjs.org/multibase/-/multibase-0.6.1.tgz", - "integrity": "sha512-pFfAwyTjbbQgNc3G7D48JkJxWtoJoBMaR4xQUOuB8RnCgRqaYmWNFeJTTvrJ2w51bjLq2zTby6Rqj9TQ9elSUw==", - "deprecated": "This module has been superseded by the multiformats module", + "license": "MIT", "dependencies": { "base-x": "^3.0.8", "buffer": "^5.5.0" @@ -9490,17 +8709,14 @@ }, "node_modules/content-hash/node_modules/multicodec": { "version": "0.5.7", - "resolved": "https://registry.npmjs.org/multicodec/-/multicodec-0.5.7.tgz", - "integrity": "sha512-PscoRxm3f+88fAtELwUnZxGDkduE2HD9Q6GHUOywQLjOGT/HAdhjLDYNZ1e7VR0s0TP0EwZ16LNUTFpoBGivOA==", - "deprecated": "This module has been superseded by the multiformats module", + "license": "MIT", "dependencies": { "varint": "^5.0.0" } }, "node_modules/content-hash/node_modules/multihashes": { "version": "0.4.21", - "resolved": "https://registry.npmjs.org/multihashes/-/multihashes-0.4.21.tgz", - "integrity": "sha512-uVSvmeCWf36pU2nB4/1kzYZjsXD9vofZKpgudqkceYY5g2aZZXJ5r9lxuzoRLl1OAp28XljXsEJ/X/85ZsKmKw==", + "license": "MIT", "dependencies": { "buffer": "^5.5.0", "multibase": "^0.7.0", @@ -9509,9 +8725,7 @@ }, "node_modules/content-hash/node_modules/multihashes/node_modules/multibase": { "version": "0.7.0", - "resolved": "https://registry.npmjs.org/multibase/-/multibase-0.7.0.tgz", - "integrity": "sha512-TW8q03O0f6PNFTQDvh3xxH03c8CjGaaYrjkl9UQPG6rz53TQzzxJVCIWVjzcbN/Q5Y53Zd0IBQBMVktVgNx4Fg==", - "deprecated": "This module has been superseded by the multiformats module", + "license": "MIT", "dependencies": { "base-x": "^3.0.8", "buffer": "^5.5.0" @@ -9519,88 +8733,66 @@ }, "node_modules/content-hash/node_modules/varint": { "version": "5.0.2", - "resolved": "https://registry.npmjs.org/varint/-/varint-5.0.2.tgz", - "integrity": "sha512-lKxKYG6H03yCZUpAGOPOsMcGxd1RHCu1iKvEHYDPmTyq2HueGhD73ssNBqqQWfvYs04G9iUFRvmAVLW20Jw6ow==" + "license": "MIT" }, "node_modules/content-type": { - "version": "1.0.4", - "resolved": "https://registry.npmjs.org/content-type/-/content-type-1.0.4.tgz", - "integrity": "sha512-hIP3EEPs8tB9AT1L+NUqtwOAps4mk2Zob89MWXMHjHWg9milF/j4osnnQLXBCBFBk/tvIG/tUc9mOUJiPBhPXA==", + "version": "1.0.5", + "license": "MIT", "engines": { "node": ">= 0.6" } }, "node_modules/convert-source-map": { - "version": "1.8.0", - "resolved": "https://registry.npmjs.org/convert-source-map/-/convert-source-map-1.8.0.tgz", - "integrity": "sha512-+OQdjP49zViI/6i7nIJpA8rAl4sV/JdPfU9nZs3VqOwGIgizICvuN2ru6fMd+4llL0tar18UYJXfZ/TWtmhUjA==", - "dependencies": { - "safe-buffer": "~5.1.1" - } + "version": "1.9.0", + "license": "MIT" }, "node_modules/cookie": { "version": "0.5.0", - "resolved": "https://registry.npmjs.org/cookie/-/cookie-0.5.0.tgz", - "integrity": "sha512-YZ3GUyn/o8gfKJlnlX7g7xq4gyO6OSuhGPKaaGssGB2qgDUS0gPgtTvoyZLTt9Ab6dC4hfc9dV5arkvc/OCmrw==", + "license": "MIT", "engines": { "node": ">= 0.6" } }, "node_modules/cookie-signature": { "version": "1.0.6", - "resolved": "https://registry.npmjs.org/cookie-signature/-/cookie-signature-1.0.6.tgz", - "integrity": "sha512-QADzlaHc8icV8I7vbaJXJwod9HWYp8uCqf1xa4OfNu1T7JVxQIrUgOWtHdNDtPiywmFbiS12VjotIXLrKM3orQ==" + "license": "MIT" }, "node_modules/core-js": { - "version": "3.23.3", - "resolved": "https://registry.npmjs.org/core-js/-/core-js-3.23.3.tgz", - "integrity": "sha512-oAKwkj9xcWNBAvGbT//WiCdOMpb9XQG92/Fe3ABFM/R16BsHgePG00mFOgKf7IsCtfj8tA1kHtf/VwErhriz5Q==", + "version": "3.32.1", "hasInstallScript": true, + "license": "MIT", "funding": { "type": "opencollective", "url": "https://opencollective.com/core-js" } }, "node_modules/core-js-compat": { - "version": "3.23.3", - "resolved": "https://registry.npmjs.org/core-js-compat/-/core-js-compat-3.23.3.tgz", - "integrity": "sha512-WSzUs2h2vvmKsacLHNTdpyOC9k43AEhcGoFlVgCY4L7aw98oSBKtPL6vD0/TqZjRWRQYdDSLkzZIni4Crbbiqw==", + "version": "3.32.1", + "license": "MIT", "dependencies": { - "browserslist": "^4.21.0", - "semver": "7.0.0" + "browserslist": "^4.21.10" }, "funding": { "type": "opencollective", "url": "https://opencollective.com/core-js" } }, - "node_modules/core-js-compat/node_modules/semver": { - "version": "7.0.0", - "resolved": "https://registry.npmjs.org/semver/-/semver-7.0.0.tgz", - "integrity": "sha512-+GB6zVA9LWh6zovYQLALHwv5rb2PHGlJi3lfiqIHxR0uuwCgefcOJc59v9fv1w8GbStwxuuqqAjI9NMAOOgq1A==", - "bin": { - "semver": "bin/semver.js" - } - }, "node_modules/core-js-pure": { - "version": "3.23.3", - "resolved": "https://registry.npmjs.org/core-js-pure/-/core-js-pure-3.23.3.tgz", - "integrity": "sha512-XpoouuqIj4P+GWtdyV8ZO3/u4KftkeDVMfvp+308eGMhCrA3lVDSmAxO0c6GGOcmgVlaKDrgWVMo49h2ab/TDA==", + "version": "3.32.1", "hasInstallScript": true, + "license": "MIT", "funding": { "type": "opencollective", "url": "https://opencollective.com/core-js" } }, "node_modules/core-util-is": { - "version": "1.0.3", - "resolved": "https://registry.npmjs.org/core-util-is/-/core-util-is-1.0.3.tgz", - "integrity": "sha512-ZQBvi1DcpJ4GDqanjucZ2Hj3wEO5pZDS89BWbkcrvdxksJorwUDDZamX9ldFkp9aw2lmBDLgkObEA4DWNJ9FYQ==" + "version": "1.0.2", + "license": "MIT" }, "node_modules/cors": { "version": "2.8.5", - "resolved": "https://registry.npmjs.org/cors/-/cors-2.8.5.tgz", - "integrity": "sha512-KIHbLJqu73RGr/hnbrO9uBeixNGuvSQjul/jdFvS/KFSIH1hWVd1ng7zOHx+YrEfInLG7q4n6GHQ9cDtxv/P6g==", + "license": "MIT", "dependencies": { "object-assign": "^4", "vary": "^1" @@ -9610,9 +8802,8 @@ } }, "node_modules/cosmiconfig": { - "version": "7.0.1", - "resolved": "https://registry.npmjs.org/cosmiconfig/-/cosmiconfig-7.0.1.tgz", - "integrity": "sha512-a1YWNUV2HwGimB7dU2s1wUMurNKjpx60HxBB6xUM8Re+2s1g1IIfJvFR0/iCF+XHdE0GMTKTuLR32UQff4TEyQ==", + "version": "7.1.0", + "license": "MIT", "dependencies": { "@types/parse-json": "^4.0.0", "import-fresh": "^3.2.1", @@ -9626,8 +8817,7 @@ }, "node_modules/crc-32": { "version": "1.2.2", - "resolved": "https://registry.npmjs.org/crc-32/-/crc-32-1.2.2.tgz", - "integrity": "sha512-ROmzCKrTnOwybPcJApAA6WBWij23HVfGVNKqqrZpuyZOHqK2CwHSvpGuyt/UNNvaIjEd8X5IFGp4Mh+Ie1IHJQ==", + "license": "Apache-2.0", "bin": { "crc32": "bin/crc32.njs" }, @@ -9637,8 +8827,7 @@ }, "node_modules/create-hash": { "version": "1.2.0", - "resolved": "https://registry.npmjs.org/create-hash/-/create-hash-1.2.0.tgz", - "integrity": "sha512-z00bCGNHDG8mHAkP7CtT1qVu+bFQUPjYq/4Iv3C3kWjTFV10zIjfSoeqXo9Asws8gwSHDGj/hl2u4OGIjapeCg==", + "license": "MIT", "dependencies": { "cipher-base": "^1.0.1", "inherits": "^2.0.1", @@ -9649,8 +8838,7 @@ }, "node_modules/create-hmac": { "version": "1.1.7", - "resolved": "https://registry.npmjs.org/create-hmac/-/create-hmac-1.1.7.tgz", - "integrity": "sha512-MJG9liiZ+ogc4TzUwuvbER1JRdgvUFSB5+VR/g5h82fGaIRWMWddtKBHi7/sVhfjQZ6SehlyhvQYrcYkaUIpLg==", + "license": "MIT", "dependencies": { "cipher-base": "^1.0.3", "create-hash": "^1.1.0", @@ -9661,17 +8849,15 @@ } }, "node_modules/cross-fetch": { - "version": "3.1.5", - "resolved": "https://registry.npmjs.org/cross-fetch/-/cross-fetch-3.1.5.tgz", - "integrity": "sha512-lvb1SBsI0Z7GDwmuid+mU3kWVBwTVUbe7S0H52yaaAdQOXq2YktTCZdlAcNKFzE6QtRz0snpw9bNiPeOIkkQvw==", + "version": "3.1.8", + "license": "MIT", "dependencies": { - "node-fetch": "2.6.7" + "node-fetch": "^2.6.12" } }, "node_modules/cross-spawn": { "version": "7.0.3", - "resolved": "https://registry.npmjs.org/cross-spawn/-/cross-spawn-7.0.3.tgz", - "integrity": "sha512-iRDPJKUPVEND7dHPO8rkbOnPpyDygcDFtWjpeWNCgy8WP2rXcxXL8TskReQl6OrB2G7+UJrags1q15Fudc7G6w==", + "license": "MIT", "dependencies": { "path-key": "^3.1.0", "shebang-command": "^2.0.0", @@ -9683,26 +8869,14 @@ }, "node_modules/crypto-random-string": { "version": "2.0.0", - "resolved": "https://registry.npmjs.org/crypto-random-string/-/crypto-random-string-2.0.0.tgz", - "integrity": "sha512-v1plID3y9r/lPhviJ1wrXpLeyUIGAZ2SHNYTEapm7/8A9nLPoyvVp3RK/EPFqn5kEznyWgYZNsRtYYIWbuG8KA==", + "license": "MIT", "engines": { "node": ">=8" } }, - "node_modules/css": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/css/-/css-3.0.0.tgz", - "integrity": "sha512-DG9pFfwOrzc+hawpmqX/dHYHJG+Bsdb0klhyi1sDneOgGOXy9wQIC8hzyVp1e4NRYDBdxcylvywPkkXCHAzTyQ==", - "dependencies": { - "inherits": "^2.0.4", - "source-map": "^0.6.1", - "source-map-resolve": "^0.6.0" - } - }, "node_modules/css-blank-pseudo": { "version": "3.0.3", - "resolved": "https://registry.npmjs.org/css-blank-pseudo/-/css-blank-pseudo-3.0.3.tgz", - "integrity": "sha512-VS90XWtsHGqoM0t4KpH053c4ehxZ2E6HtGI7x68YFV0pTo/QmkV/YFA+NnlvK8guxZVNWGQhVNJGC39Q8XF4OQ==", + "license": "CC0-1.0", "dependencies": { "postcss-selector-parser": "^6.0.9" }, @@ -9718,16 +8892,14 @@ }, "node_modules/css-color-keywords": { "version": "1.0.0", - "resolved": "https://registry.npmjs.org/css-color-keywords/-/css-color-keywords-1.0.0.tgz", - "integrity": "sha512-FyyrDHZKEjXDpNJYvVsV960FiqQyXc/LlYmsxl2BcdMb2WPx0OGRVgTg55rPSyLSNMqP52R9r8geSp7apN3Ofg==", + "license": "ISC", "engines": { "node": ">=4" } }, "node_modules/css-declaration-sorter": { - "version": "6.3.0", - "resolved": "https://registry.npmjs.org/css-declaration-sorter/-/css-declaration-sorter-6.3.0.tgz", - "integrity": "sha512-OGT677UGHJTAVMRhPO+HJ4oKln3wkBTwtDFH0ojbqm+MJm6xuDMHp2nkhh/ThaBqq20IbraBQSWKfSLNHQO9Og==", + "version": "6.4.1", + "license": "ISC", "engines": { "node": "^10 || ^12 || >=14" }, @@ -9737,8 +8909,7 @@ }, "node_modules/css-has-pseudo": { "version": "3.0.4", - "resolved": "https://registry.npmjs.org/css-has-pseudo/-/css-has-pseudo-3.0.4.tgz", - "integrity": "sha512-Vse0xpR1K9MNlp2j5w1pgWIJtm1a8qS0JwS9goFYcImjlHEmywP9VUF05aGBXzGpDJF86QXk4L0ypBmwPhGArw==", + "license": "CC0-1.0", "dependencies": { "postcss-selector-parser": "^6.0.9" }, @@ -9753,18 +8924,17 @@ } }, "node_modules/css-loader": { - "version": "6.7.1", - "resolved": "https://registry.npmjs.org/css-loader/-/css-loader-6.7.1.tgz", - "integrity": "sha512-yB5CNFa14MbPJcomwNh3wLThtkZgcNyI2bNMRt8iE5Z8Vwl7f8vQXFAzn2HDOJvtDq2NTZBUGMSUNNyrv3/+cw==", + "version": "6.8.1", + "license": "MIT", "dependencies": { "icss-utils": "^5.1.0", - "postcss": "^8.4.7", + "postcss": "^8.4.21", "postcss-modules-extract-imports": "^3.0.0", - "postcss-modules-local-by-default": "^4.0.0", + "postcss-modules-local-by-default": "^4.0.3", "postcss-modules-scope": "^3.0.0", "postcss-modules-values": "^4.0.0", "postcss-value-parser": "^4.2.0", - "semver": "^7.3.5" + "semver": "^7.3.8" }, "engines": { "node": ">= 12.13.0" @@ -9779,8 +8949,7 @@ }, "node_modules/css-minimizer-webpack-plugin": { "version": "3.4.1", - "resolved": "https://registry.npmjs.org/css-minimizer-webpack-plugin/-/css-minimizer-webpack-plugin-3.4.1.tgz", - "integrity": "sha512-1u6D71zeIfgngN2XNRJefc/hY7Ybsxd74Jm4qngIXyUEk7fss3VUzuHxLAq/R8NAba4QU9OUSaMZlbpRc7bM4Q==", + "license": "MIT", "dependencies": { "cssnano": "^5.0.6", "jest-worker": "^27.0.2", @@ -9815,9 +8984,8 @@ } }, "node_modules/css-minimizer-webpack-plugin/node_modules/ajv": { - "version": "8.11.0", - "resolved": "https://registry.npmjs.org/ajv/-/ajv-8.11.0.tgz", - "integrity": "sha512-wGgprdCvMalC0BztXvitD2hC04YffAvtsUn93JbGXYLAtCUO4xd17mCCZQxUOItiBwZvJScWo8NIvQMQ71rdpg==", + "version": "8.12.0", + "license": "MIT", "dependencies": { "fast-deep-equal": "^3.1.1", "json-schema-traverse": "^1.0.0", @@ -9831,8 +8999,7 @@ }, "node_modules/css-minimizer-webpack-plugin/node_modules/ajv-keywords": { "version": "5.1.0", - "resolved": "https://registry.npmjs.org/ajv-keywords/-/ajv-keywords-5.1.0.tgz", - "integrity": "sha512-YCS/JNFAUyr5vAuhk1DWm1CBxRHW9LbJ2ozWeemrIqpbsqKjHVxYPyi5GC0rjZIT5JxJ3virVTS8wk4i/Z+krw==", + "license": "MIT", "dependencies": { "fast-deep-equal": "^3.1.3" }, @@ -9842,18 +9009,16 @@ }, "node_modules/css-minimizer-webpack-plugin/node_modules/json-schema-traverse": { "version": "1.0.0", - "resolved": "https://registry.npmjs.org/json-schema-traverse/-/json-schema-traverse-1.0.0.tgz", - "integrity": "sha512-NM8/P9n3XjXhIZn1lLhkFaACTOURQXjWhV4BA/RnOv8xvgqtqpAX9IO4mRQxSx1Rlo4tqzeqb0sOlruaOy3dug==" + "license": "MIT" }, "node_modules/css-minimizer-webpack-plugin/node_modules/schema-utils": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/schema-utils/-/schema-utils-4.0.0.tgz", - "integrity": "sha512-1edyXKgh6XnJsJSQ8mKWXnN/BVaIbFMLpouRUrXgVq7WYne5kw3MW7UPhO44uRXQSIpTSXoJbmrR2X0w9kUTyg==", + "version": "4.2.0", + "license": "MIT", "dependencies": { "@types/json-schema": "^7.0.9", - "ajv": "^8.8.0", + "ajv": "^8.9.0", "ajv-formats": "^2.1.1", - "ajv-keywords": "^5.0.0" + "ajv-keywords": "^5.1.0" }, "engines": { "node": ">= 12.13.0" @@ -9865,16 +9030,14 @@ }, "node_modules/css-minimizer-webpack-plugin/node_modules/source-map": { "version": "0.6.1", - "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz", - "integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==", + "license": "BSD-3-Clause", "engines": { "node": ">=0.10.0" } }, "node_modules/css-prefers-color-scheme": { "version": "6.0.3", - "resolved": "https://registry.npmjs.org/css-prefers-color-scheme/-/css-prefers-color-scheme-6.0.3.tgz", - "integrity": "sha512-4BqMbZksRkJQx2zAjrokiGMd07RqOa2IxIrrN10lyBe9xhn9DEvjUK79J6jkeiv9D9hQFXKb6g1jwU62jziJZA==", + "license": "CC0-1.0", "bin": { "css-prefers-color-scheme": "dist/cli.cjs" }, @@ -9887,8 +9050,7 @@ }, "node_modules/css-select": { "version": "4.3.0", - "resolved": "https://registry.npmjs.org/css-select/-/css-select-4.3.0.tgz", - "integrity": "sha512-wPpOYtnsVontu2mODhA19JrqWxNsfdatRKd64kmpRbQgh1KtItko5sTnEpPdpSaJszTOhEMlF/RPz28qj4HqhQ==", + "license": "BSD-2-Clause", "dependencies": { "boolbase": "^1.0.0", "css-what": "^6.0.1", @@ -9902,13 +9064,11 @@ }, "node_modules/css-select-base-adapter": { "version": "0.1.1", - "resolved": "https://registry.npmjs.org/css-select-base-adapter/-/css-select-base-adapter-0.1.1.tgz", - "integrity": "sha512-jQVeeRG70QI08vSTwf1jHxp74JoZsr2XSgETae8/xC8ovSnL2WF87GTLO86Sbwdt2lK4Umg4HnnwMO4YF3Ce7w==" + "license": "MIT" }, "node_modules/css-to-react-native": { "version": "3.2.0", - "resolved": "https://registry.npmjs.org/css-to-react-native/-/css-to-react-native-3.2.0.tgz", - "integrity": "sha512-e8RKaLXMOFii+02mOlqwjbD00KSEKqblnpO9e++1aXS1fPQOpS1YoqdVHBqPjHNoxeF2mimzVqawm2KCbEdtHQ==", + "license": "MIT", "dependencies": { "camelize": "^1.0.0", "css-color-keywords": "^1.0.0", @@ -9917,8 +9077,7 @@ }, "node_modules/css-tree": { "version": "1.0.0-alpha.37", - "resolved": "https://registry.npmjs.org/css-tree/-/css-tree-1.0.0-alpha.37.tgz", - "integrity": "sha512-DMxWJg0rnz7UgxKT0Q1HU/L9BeJI0M6ksor0OgqOnF+aRCDWg/N2641HmVyU9KVIu0OVVWOb2IpC9A+BJRnejg==", + "license": "MIT", "dependencies": { "mdn-data": "2.0.4", "source-map": "^0.6.1" @@ -9929,16 +9088,14 @@ }, "node_modules/css-tree/node_modules/source-map": { "version": "0.6.1", - "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz", - "integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==", + "license": "BSD-3-Clause", "engines": { "node": ">=0.10.0" } }, "node_modules/css-what": { "version": "6.1.0", - "resolved": "https://registry.npmjs.org/css-what/-/css-what-6.1.0.tgz", - "integrity": "sha512-HTUrgRJ7r4dsZKU6GjmpfRK1O76h97Z8MfS1G0FozR+oF2kG6Vfe8JE6zwrkbxigziPHinCJ+gCPjA9EaBDtRw==", + "license": "BSD-2-Clause", "engines": { "node": ">= 6" }, @@ -9948,30 +9105,25 @@ }, "node_modules/css.escape": { "version": "1.5.1", - "resolved": "https://registry.npmjs.org/css.escape/-/css.escape-1.5.1.tgz", - "integrity": "sha512-YUifsXXuknHlUsmlgyY0PKzgPOr7/FjCePfHNt0jxm83wHZi44VDMQ7/fGNkjY3/jV1MC+1CmZbaHzugyeRtpg==" - }, - "node_modules/css/node_modules/source-map": { - "version": "0.6.1", - "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz", - "integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==", - "engines": { - "node": ">=0.10.0" - } + "license": "MIT" }, "node_modules/cssdb": { - "version": "6.6.3", - "resolved": "https://registry.npmjs.org/cssdb/-/cssdb-6.6.3.tgz", - "integrity": "sha512-7GDvDSmE+20+WcSMhP17Q1EVWUrLlbxxpMDqG731n8P99JhnQZHR9YvtjPvEHfjFUjvQJvdpKCjlKOX+xe4UVA==", - "funding": { - "type": "opencollective", - "url": "https://opencollective.com/csstools" - } + "version": "7.7.1", + "funding": [ + { + "type": "opencollective", + "url": "https://opencollective.com/csstools" + }, + { + "type": "github", + "url": "https://github.com/sponsors/csstools" + } + ], + "license": "CC0-1.0" }, "node_modules/cssesc": { "version": "3.0.0", - "resolved": "https://registry.npmjs.org/cssesc/-/cssesc-3.0.0.tgz", - "integrity": "sha512-/Tb/JcjK111nNScGob5MNtsntNM1aCNUDipB/TkwZFhyDrrE47SOx/18wF2bbjgc3ZzCSKW1T5nt5EbFoAz/Vg==", + "license": "MIT", "bin": { "cssesc": "bin/cssesc" }, @@ -9980,11 +9132,10 @@ } }, "node_modules/cssnano": { - "version": "5.1.12", - "resolved": "https://registry.npmjs.org/cssnano/-/cssnano-5.1.12.tgz", - "integrity": "sha512-TgvArbEZu0lk/dvg2ja+B7kYoD7BBCmn3+k58xD0qjrGHsFzXY/wKTo9M5egcUCabPol05e/PVoIu79s2JN4WQ==", + "version": "5.1.15", + "license": "MIT", "dependencies": { - "cssnano-preset-default": "^5.2.12", + "cssnano-preset-default": "^5.2.14", "lilconfig": "^2.0.3", "yaml": "^1.10.2" }, @@ -10000,24 +9151,23 @@ } }, "node_modules/cssnano-preset-default": { - "version": "5.2.12", - "resolved": "https://registry.npmjs.org/cssnano-preset-default/-/cssnano-preset-default-5.2.12.tgz", - "integrity": "sha512-OyCBTZi+PXgylz9HAA5kHyoYhfGcYdwFmyaJzWnzxuGRtnMw/kR6ilW9XzlzlRAtB6PLT/r+prYgkef7hngFew==", + "version": "5.2.14", + "license": "MIT", "dependencies": { - "css-declaration-sorter": "^6.3.0", + "css-declaration-sorter": "^6.3.1", "cssnano-utils": "^3.1.0", "postcss-calc": "^8.2.3", - "postcss-colormin": "^5.3.0", - "postcss-convert-values": "^5.1.2", + "postcss-colormin": "^5.3.1", + "postcss-convert-values": "^5.1.3", "postcss-discard-comments": "^5.1.2", "postcss-discard-duplicates": "^5.1.0", "postcss-discard-empty": "^5.1.1", "postcss-discard-overridden": "^5.1.0", - "postcss-merge-longhand": "^5.1.6", - "postcss-merge-rules": "^5.1.2", + "postcss-merge-longhand": "^5.1.7", + "postcss-merge-rules": "^5.1.4", "postcss-minify-font-values": "^5.1.0", "postcss-minify-gradients": "^5.1.1", - "postcss-minify-params": "^5.1.3", + "postcss-minify-params": "^5.1.4", "postcss-minify-selectors": "^5.2.1", "postcss-normalize-charset": "^5.1.0", "postcss-normalize-display-values": "^5.1.0", @@ -10025,11 +9175,11 @@ "postcss-normalize-repeat-style": "^5.1.1", "postcss-normalize-string": "^5.1.0", "postcss-normalize-timing-functions": "^5.1.0", - "postcss-normalize-unicode": "^5.1.0", + "postcss-normalize-unicode": "^5.1.1", "postcss-normalize-url": "^5.1.0", "postcss-normalize-whitespace": "^5.1.1", "postcss-ordered-values": "^5.1.3", - "postcss-reduce-initial": "^5.1.0", + "postcss-reduce-initial": "^5.1.2", "postcss-reduce-transforms": "^5.1.0", "postcss-svgo": "^5.1.0", "postcss-unique-selectors": "^5.1.1" @@ -10043,8 +9193,7 @@ }, "node_modules/cssnano-utils": { "version": "3.1.0", - "resolved": "https://registry.npmjs.org/cssnano-utils/-/cssnano-utils-3.1.0.tgz", - "integrity": "sha512-JQNR19/YZhz4psLX/rQ9M83e3z2Wf/HdJbryzte4a3NSuafyp9w/I4U+hx5C2S9g41qlstH7DEWnZaaj83OuEA==", + "license": "MIT", "engines": { "node": "^10 || ^12 || >=14.0" }, @@ -10054,8 +9203,7 @@ }, "node_modules/csso": { "version": "4.2.0", - "resolved": "https://registry.npmjs.org/csso/-/csso-4.2.0.tgz", - "integrity": "sha512-wvlcdIbf6pwKEk7vHj8/Bkc0B4ylXZruLvOgs9doS5eOsOpuodOV2zJChSpkp+pRpYQLQMeF04nr3Z68Sta9jA==", + "license": "MIT", "dependencies": { "css-tree": "^1.1.2" }, @@ -10065,8 +9213,7 @@ }, "node_modules/csso/node_modules/css-tree": { "version": "1.1.3", - "resolved": "https://registry.npmjs.org/css-tree/-/css-tree-1.1.3.tgz", - "integrity": "sha512-tRpdppF7TRazZrjJ6v3stzv93qxRcSsFmW6cX0Zm2NVKpxE1WV1HblnghVv9TreireHkqI/VDEsfolRF1p6y7Q==", + "license": "MIT", "dependencies": { "mdn-data": "2.0.14", "source-map": "^0.6.1" @@ -10077,26 +9224,22 @@ }, "node_modules/csso/node_modules/mdn-data": { "version": "2.0.14", - "resolved": "https://registry.npmjs.org/mdn-data/-/mdn-data-2.0.14.tgz", - "integrity": "sha512-dn6wd0uw5GsdswPFfsgMp5NSB0/aDe6fK94YJV/AJDYXL6HVLWBsxeq7js7Ad+mU2K9LAlwpk6kN2D5mwCPVow==" + "license": "CC0-1.0" }, "node_modules/csso/node_modules/source-map": { "version": "0.6.1", - "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz", - "integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==", + "license": "BSD-3-Clause", "engines": { "node": ">=0.10.0" } }, "node_modules/cssom": { "version": "0.4.4", - "resolved": "https://registry.npmjs.org/cssom/-/cssom-0.4.4.tgz", - "integrity": "sha512-p3pvU7r1MyyqbTk+WbNJIgJjG2VmTIaB10rI93LzVPrmDJKkzKYMtxxyAvQXR/NS6otuzveI7+7BBq3SjBS2mw==" + "license": "MIT" }, "node_modules/cssstyle": { "version": "2.3.0", - "resolved": "https://registry.npmjs.org/cssstyle/-/cssstyle-2.3.0.tgz", - "integrity": "sha512-AZL67abkUzIuvcHqk7c09cezpGNcxUxU4Ioi/05xHk4DQeTkWmGYftIE6ctU6AEt+Gn4n1lDStOtj7FKycP71A==", + "license": "MIT", "dependencies": { "cssom": "~0.3.6" }, @@ -10106,18 +9249,15 @@ }, "node_modules/cssstyle/node_modules/cssom": { "version": "0.3.8", - "resolved": "https://registry.npmjs.org/cssom/-/cssom-0.3.8.tgz", - "integrity": "sha512-b0tGHbfegbhPJpxpiBPU2sCkigAqtM9O121le6bbOlgyV+NyGyCmVfJ6QW9eRjz8CpNfWEOYBIMIGRYkLwsIYg==" + "license": "MIT" }, "node_modules/csstype": { - "version": "3.1.0", - "resolved": "https://registry.npmjs.org/csstype/-/csstype-3.1.0.tgz", - "integrity": "sha512-uX1KG+x9h5hIJsaKR9xHUeUraxf8IODOwq9JLNPq6BwB04a/xgpq3rcx47l5BZu5zBPlgD342tdke3Hom/nJRA==" + "version": "3.1.2", + "license": "MIT" }, "node_modules/d": { "version": "1.0.1", - "resolved": "https://registry.npmjs.org/d/-/d-1.0.1.tgz", - "integrity": "sha512-m62ShEObQ39CfralilEQRjH6oAMtNCV1xJyEx5LpRYUVN+EviphDgUc/F3hnYbADmkiNs67Y+3ylmlG7Lnu+FA==", + "license": "ISC", "dependencies": { "es5-ext": "^0.10.50", "type": "^1.0.1" @@ -10125,13 +9265,11 @@ }, "node_modules/damerau-levenshtein": { "version": "1.0.8", - "resolved": "https://registry.npmjs.org/damerau-levenshtein/-/damerau-levenshtein-1.0.8.tgz", - "integrity": "sha512-sdQSFB7+llfUcQHUQO3+B8ERRj0Oa4w9POWMI/puGtuf7gFywGmkaLCElnudfTiKZV+NvHqL0ifzdrI8Ro7ESA==" + "license": "BSD-2-Clause" }, "node_modules/dashdash": { "version": "1.14.1", - "resolved": "https://registry.npmjs.org/dashdash/-/dashdash-1.14.1.tgz", - "integrity": "sha512-jRFi8UDGo6j+odZiEpjazZaWqEal3w/basFjQHQEwVtZJGDpxbH1MeYluwCS8Xq5wmLJooDlMgvVarmWfGM44g==", + "license": "MIT", "dependencies": { "assert-plus": "^1.0.0" }, @@ -10141,8 +9279,7 @@ }, "node_modules/data-urls": { "version": "2.0.0", - "resolved": "https://registry.npmjs.org/data-urls/-/data-urls-2.0.0.tgz", - "integrity": "sha512-X5eWTSXO/BJmpdIKCRuKUgSCgAN0OwliVK3yPKbwIWU1Tdw5BRajxlzMidvh+gwko9AfQ9zIj52pzF91Q3YAvQ==", + "license": "MIT", "dependencies": { "abab": "^2.0.3", "whatwg-mimetype": "^2.3.0", @@ -10154,8 +9291,7 @@ }, "node_modules/debug": { "version": "4.3.4", - "resolved": "https://registry.npmjs.org/debug/-/debug-4.3.4.tgz", - "integrity": "sha512-PRWFHuSU3eDtQJPvnNY7Jcket1j0t5OuOsFzPPzsekD52Zl8qUfFIPEiswXqIvHWGVHOgX+7G/vCNNhehwxfkQ==", + "license": "MIT", "dependencies": { "ms": "2.1.2" }, @@ -10170,8 +9306,7 @@ }, "node_modules/decamelize": { "version": "4.0.0", - "resolved": "https://registry.npmjs.org/decamelize/-/decamelize-4.0.0.tgz", - "integrity": "sha512-9iE1PgSik9HeIIw2JO94IidnE3eBoQrFJ3w7sFuzSX4DpmZ3v5sZpUiV5Swcf6mQEF+Y0ru8Neo+p+nyh2J+hQ==", + "license": "MIT", "peer": true, "engines": { "node": ">=10" @@ -10181,27 +9316,23 @@ } }, "node_modules/decimal.js": { - "version": "10.3.1", - "resolved": "https://registry.npmjs.org/decimal.js/-/decimal.js-10.3.1.tgz", - "integrity": "sha512-V0pfhfr8suzyPGOx3nmq4aHqabehUZn6Ch9kyFpV79TGDTWFmHqUqXdabR7QHqxzrYolF4+tVmJhUG4OURg5dQ==" + "version": "10.4.3", + "license": "MIT" }, "node_modules/decimal.js-light": { "version": "2.5.1", - "resolved": "https://registry.npmjs.org/decimal.js-light/-/decimal.js-light-2.5.1.tgz", - "integrity": "sha512-qIMFpTMZmny+MMIitAB6D7iVPEorVw6YQRWkvarTkT4tBeSLLiHzcwj6q0MmYSFCiVpiqPJTJEYIrpcPzVEIvg==" + "license": "MIT" }, "node_modules/decode-uri-component": { "version": "0.2.2", - "resolved": "https://registry.npmjs.org/decode-uri-component/-/decode-uri-component-0.2.2.tgz", - "integrity": "sha512-FqUYQ+8o158GyGTrMFJms9qh3CqTKvAqgqsTnkLI8sKu0028orqBhxNMFkFen0zGyg6epACD32pjVk58ngIErQ==", + "license": "MIT", "engines": { "node": ">=0.10" } }, "node_modules/decompress-response": { "version": "6.0.0", - "resolved": "https://registry.npmjs.org/decompress-response/-/decompress-response-6.0.0.tgz", - "integrity": "sha512-aW35yZM6Bb/4oJlZncMH2LCoZtJXTRxES17vE3hoRiowU2kWHaJKFkSBDnDR+cm9J+9QhXmREyIfv0pji9ejCQ==", + "license": "MIT", "dependencies": { "mimic-response": "^3.1.0" }, @@ -10214,8 +9345,7 @@ }, "node_modules/decompress-response/node_modules/mimic-response": { "version": "3.1.0", - "resolved": "https://registry.npmjs.org/mimic-response/-/mimic-response-3.1.0.tgz", - "integrity": "sha512-z0yWI+4FDrrweS8Zmt4Ej5HdJmky15+L2e6Wgn3+iK5fWzb6T3fhNFq2+MeTRb064c6Wr4N/wv0DzQTjNzHNGQ==", + "license": "MIT", "engines": { "node": ">=10" }, @@ -10225,35 +9355,57 @@ }, "node_modules/dedent": { "version": "0.7.0", - "resolved": "https://registry.npmjs.org/dedent/-/dedent-0.7.0.tgz", - "integrity": "sha512-Q6fKUPqnAHAyhiUgFU7BUzLiv0kd8saH9al7tnu5Q/okj6dnupxyTgFIBjVzJATdfIAm9NAsvXNzjaKa+bxVyA==" + "license": "MIT" + }, + "node_modules/deep-equal": { + "version": "2.2.2", + "license": "MIT", + "dependencies": { + "array-buffer-byte-length": "^1.0.0", + "call-bind": "^1.0.2", + "es-get-iterator": "^1.1.3", + "get-intrinsic": "^1.2.1", + "is-arguments": "^1.1.1", + "is-array-buffer": "^3.0.2", + "is-date-object": "^1.0.5", + "is-regex": "^1.1.4", + "is-shared-array-buffer": "^1.0.2", + "isarray": "^2.0.5", + "object-is": "^1.1.5", + "object-keys": "^1.1.1", + "object.assign": "^4.1.4", + "regexp.prototype.flags": "^1.5.0", + "side-channel": "^1.0.4", + "which-boxed-primitive": "^1.0.2", + "which-collection": "^1.0.1", + "which-typed-array": "^1.1.9" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } }, "node_modules/deep-extend": { "version": "0.6.0", - "resolved": "https://registry.npmjs.org/deep-extend/-/deep-extend-0.6.0.tgz", - "integrity": "sha512-LOHxIOaPYdHlJRtCQfDIVZtfw/ufM8+rVj649RIHzcm/vGwQRXFt6OPqIFWsm2XEMrNIEtWR64sY1LEKD2vAOA==", "dev": true, + "license": "MIT", "engines": { "node": ">=4.0.0" } }, "node_modules/deep-is": { "version": "0.1.4", - "resolved": "https://registry.npmjs.org/deep-is/-/deep-is-0.1.4.tgz", - "integrity": "sha512-oIPzksmTg4/MriiaYGO+okXDT7ztn/w3Eptv/+gSIdMdKsJo0u4CfYNFJPy+4SKMuCqGw2wxnA+URMg3t8a/bQ==" + "license": "MIT" }, "node_modules/deepmerge": { - "version": "4.2.2", - "resolved": "https://registry.npmjs.org/deepmerge/-/deepmerge-4.2.2.tgz", - "integrity": "sha512-FJ3UgI4gIl+PHZm53knsuSFpE+nESMr7M4v9QcgB7S63Kj/6WqMiFQJpBBYz1Pt+66bZpP3Q7Lye0Oo9MPKEdg==", + "version": "4.3.1", + "license": "MIT", "engines": { "node": ">=0.10.0" } }, "node_modules/default-gateway": { "version": "6.0.3", - "resolved": "https://registry.npmjs.org/default-gateway/-/default-gateway-6.0.3.tgz", - "integrity": "sha512-fwSOJsbbNzZ/CUFpqFBqYfYNLj1NbMPm8MMCIzHjC83iSJRBEGmDUxU+WP661BaBQImeC2yHwXtz+P/O9o+XEg==", + "license": "BSD-2-Clause", "dependencies": { "execa": "^5.0.0" }, @@ -10263,24 +9415,21 @@ }, "node_modules/defer-to-connect": { "version": "2.0.1", - "resolved": "https://registry.npmjs.org/defer-to-connect/-/defer-to-connect-2.0.1.tgz", - "integrity": "sha512-4tvttepXG1VaYGrRibk5EwJd1t4udunSOVMdLSAL6mId1ix438oPwPZMALY41FCijukO1L0twNcGsdzS7dHgDg==", + "license": "MIT", "engines": { "node": ">=10" } }, "node_modules/define-lazy-prop": { "version": "2.0.0", - "resolved": "https://registry.npmjs.org/define-lazy-prop/-/define-lazy-prop-2.0.0.tgz", - "integrity": "sha512-Ds09qNh8yw3khSjiJjiUInaGX9xlqZDY7JVryGxdxV7NPeuqQfplOpQ66yJFZut3jLa5zOwkXw1g9EI2uKh4Og==", + "license": "MIT", "engines": { "node": ">=8" } }, "node_modules/define-properties": { - "version": "1.1.4", - "resolved": "https://registry.npmjs.org/define-properties/-/define-properties-1.1.4.tgz", - "integrity": "sha512-uckOqKcfaVvtBdsVkdPv3XjveQJsNQqmhXgRi8uhvWWuPYZCNlzT8qAyblUgNoXdHdjMTzAqeGjAoli8f+bzPA==", + "version": "1.2.0", + "license": "MIT", "dependencies": { "has-property-descriptors": "^1.0.0", "object-keys": "^1.1.1" @@ -10292,31 +9441,30 @@ "url": "https://github.com/sponsors/ljharb" } }, - "node_modules/defined": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/defined/-/defined-1.0.0.tgz", - "integrity": "sha512-Y2caI5+ZwS5c3RiNDJ6u53VhQHv+hHKwhkI1iHvceKUHw9Df6EK2zRLfjejRgMuCuxK7PfSWIMwWecceVvThjQ==" - }, "node_modules/delayed-stream": { "version": "1.0.0", - "resolved": "https://registry.npmjs.org/delayed-stream/-/delayed-stream-1.0.0.tgz", - "integrity": "sha512-ZySD7Nf91aLB0RxL4KGrKHBXl7Eds1DAmEdcoVawXnLD7SDhpNgtuII2aAkg7a7QS41jxPSZ17p4VdGnMHk3MQ==", + "license": "MIT", "engines": { "node": ">=0.4.0" } }, "node_modules/depd": { "version": "2.0.0", - "resolved": "https://registry.npmjs.org/depd/-/depd-2.0.0.tgz", - "integrity": "sha512-g7nH6P6dyDioJogAAGprGpCtVImJhpPk/roCzdb3fIh61/s/nPsfR6onyMwkCAR/OlC3yBC0lESvUoQEAssIrw==", + "license": "MIT", "engines": { "node": ">= 0.8" } }, + "node_modules/dequal": { + "version": "2.0.3", + "license": "MIT", + "engines": { + "node": ">=6" + } + }, "node_modules/destroy": { "version": "1.2.0", - "resolved": "https://registry.npmjs.org/destroy/-/destroy-1.2.0.tgz", - "integrity": "sha512-2sJGJTaXIIaR1w4iJSNoN0hnMY7Gpc/n8D4qSCJw8QqFWXf7cuAgnEHxBpweaVcPevC2l3KpjYCx3NypQQgaJg==", + "license": "MIT", "engines": { "node": ">= 0.8", "npm": "1.2.8000 || >= 1.4.16" @@ -10324,21 +9472,18 @@ }, "node_modules/detect-newline": { "version": "3.1.0", - "resolved": "https://registry.npmjs.org/detect-newline/-/detect-newline-3.1.0.tgz", - "integrity": "sha512-TLz+x/vEXm/Y7P7wn1EJFNLxYpUD4TgMosxY6fAVJUnJMbupHBOncxyWUG9OpTaH9EBD7uFI5LfEgmMOc54DsA==", + "license": "MIT", "engines": { "node": ">=8" } }, "node_modules/detect-node": { "version": "2.1.0", - "resolved": "https://registry.npmjs.org/detect-node/-/detect-node-2.1.0.tgz", - "integrity": "sha512-T0NIuQpnTvFDATNuHN5roPwSBG83rFsuO+MXXH9/3N1eFbn4wcPjttvjMLEPWJ0RGUYgQE7cGgS3tNxbqCGM7g==" + "license": "MIT" }, "node_modules/detect-port-alt": { "version": "1.1.6", - "resolved": "https://registry.npmjs.org/detect-port-alt/-/detect-port-alt-1.1.6.tgz", - "integrity": "sha512-5tQykt+LqfJFBEYaDITx7S7cR7mJ/zQmLXZ2qt5w04ainYZw6tBf9dBunMjVeVOdYVRUzUOE4HkY5J7+uttb5Q==", + "license": "MIT", "dependencies": { "address": "^1.0.1", "debug": "^2.6.0" @@ -10353,42 +9498,22 @@ }, "node_modules/detect-port-alt/node_modules/debug": { "version": "2.6.9", - "resolved": "https://registry.npmjs.org/debug/-/debug-2.6.9.tgz", - "integrity": "sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA==", + "license": "MIT", "dependencies": { "ms": "2.0.0" } }, "node_modules/detect-port-alt/node_modules/ms": { "version": "2.0.0", - "resolved": "https://registry.npmjs.org/ms/-/ms-2.0.0.tgz", - "integrity": "sha512-Tpp60P6IUJDTuOq/5Z8cdskzJujfwqfOTkrwIwj7IRISpnkJnT6SyJ4PCPnGMoFjC9ddhal5KVIYtAt97ix05A==" - }, - "node_modules/detective": { - "version": "5.2.1", - "resolved": "https://registry.npmjs.org/detective/-/detective-5.2.1.tgz", - "integrity": "sha512-v9XE1zRnz1wRtgurGu0Bs8uHKFSTdteYZNbIPFVhUZ39L/S79ppMpdmVOZAnoz1jfEFodc48n6MX483Xo3t1yw==", - "dependencies": { - "acorn-node": "^1.8.2", - "defined": "^1.0.0", - "minimist": "^1.2.6" - }, - "bin": { - "detective": "bin/detective.js" - }, - "engines": { - "node": ">=0.8.0" - } + "license": "MIT" }, "node_modules/didyoumean": { "version": "1.2.2", - "resolved": "https://registry.npmjs.org/didyoumean/-/didyoumean-1.2.2.tgz", - "integrity": "sha512-gxtyfqMg7GKyhQmb056K7M3xszy/myH8w+B4RT+QXBQsvAOdc3XymqDDPHx1BgPgsdAA5SIifona89YtRATDzw==" + "license": "Apache-2.0" }, "node_modules/diff": { "version": "5.0.0", - "resolved": "https://registry.npmjs.org/diff/-/diff-5.0.0.tgz", - "integrity": "sha512-/VTCrvm5Z0JGty/BWHljh+BAiw3IK+2j87NGMu8Nwc/f48WoDAC395uomO9ZD117ZOBaHmkX1oyLvkVM/aIT3w==", + "license": "BSD-3-Clause", "peer": true, "engines": { "node": ">=0.3.1" @@ -10396,21 +9521,18 @@ }, "node_modules/diff-sequences": { "version": "27.5.1", - "resolved": "https://registry.npmjs.org/diff-sequences/-/diff-sequences-27.5.1.tgz", - "integrity": "sha512-k1gCAXAsNgLwEL+Y8Wvl+M6oEFj5bgazfZULpS5CneoPPXRaCCW7dm+q21Ky2VEE5X+VeRDBVg1Pcvvsr4TtNQ==", + "license": "MIT", "engines": { "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0" } }, "node_modules/dijkstrajs": { "version": "1.0.3", - "resolved": "https://registry.npmjs.org/dijkstrajs/-/dijkstrajs-1.0.3.tgz", - "integrity": "sha512-qiSlmBq9+BCdCA/L46dw8Uy93mloxsPSbwnm5yrKn2vMPiy8KyAskTF6zuV/j5BMsmOGZDPs7KjU+mjb670kfA==" + "license": "MIT" }, "node_modules/dir-glob": { "version": "3.0.1", - "resolved": "https://registry.npmjs.org/dir-glob/-/dir-glob-3.0.1.tgz", - "integrity": "sha512-WkrWp9GR4KXfKGYzOLmTuGVi1UWFfws377n9cc55/tb6DuqyF6pcQ5AbiHEshaDpY9v6oaSr2XCDidGmMwdzIA==", + "license": "MIT", "dependencies": { "path-type": "^4.0.0" }, @@ -10420,18 +9542,15 @@ }, "node_modules/dlv": { "version": "1.1.3", - "resolved": "https://registry.npmjs.org/dlv/-/dlv-1.1.3.tgz", - "integrity": "sha512-+HlytyjlPKnIG8XuRG8WvmBP8xs8P71y+SKKS6ZXWoEgLuePxtDoUEiH7WkdePWrQ5JBpE6aoVqfZfJUQkjXwA==" + "license": "MIT" }, "node_modules/dns-equal": { "version": "1.0.0", - "resolved": "https://registry.npmjs.org/dns-equal/-/dns-equal-1.0.0.tgz", - "integrity": "sha512-z+paD6YUQsk+AbGCEM4PrOXSss5gd66QfcVBFTKR/HpFL9jCqikS94HYwKww6fQyO7IxrIIyUu+g0Ka9tUS2Cg==" + "license": "MIT" }, "node_modules/dns-packet": { - "version": "5.4.0", - "resolved": "https://registry.npmjs.org/dns-packet/-/dns-packet-5.4.0.tgz", - "integrity": "sha512-EgqGeaBB8hLiHLZtp/IbaDQTL8pZ0+IvwzSHA6d7VyMDM+B9hgddEMa9xjK5oYnw0ci0JQ6g2XCD7/f6cafU6g==", + "version": "5.6.1", + "license": "MIT", "dependencies": { "@leichtgewicht/ip-codec": "^2.0.1" }, @@ -10441,8 +9560,7 @@ }, "node_modules/doctrine": { "version": "3.0.0", - "resolved": "https://registry.npmjs.org/doctrine/-/doctrine-3.0.0.tgz", - "integrity": "sha512-yS+Q5i3hBf7GBkd4KG8a7eBNNWNGLTaEwwYWUijIYM7zrlYDM0BFXHjjPWlWZ1Rg7UaddZeIDmi9jF3HmqiQ2w==", + "license": "Apache-2.0", "dependencies": { "esutils": "^2.0.2" }, @@ -10452,8 +9570,7 @@ }, "node_modules/document.contains": { "version": "1.0.2", - "resolved": "https://registry.npmjs.org/document.contains/-/document.contains-1.0.2.tgz", - "integrity": "sha512-YcvYFs15mX8m3AO1QNQy3BlIpSMfNRj3Ujk2BEJxsZG+HZf7/hZ6jr7mDpXrF8q+ff95Vef5yjhiZxm8CGJr6Q==", + "license": "MIT", "dependencies": { "define-properties": "^1.1.3" }, @@ -10462,22 +9579,19 @@ } }, "node_modules/dom-accessibility-api": { - "version": "0.5.14", - "resolved": "https://registry.npmjs.org/dom-accessibility-api/-/dom-accessibility-api-0.5.14.tgz", - "integrity": "sha512-NMt+m9zFMPZe0JcY9gN224Qvk6qLIdqex29clBvc/y75ZBX9YA9wNK3frsYvu2DI1xcCIwxwnX+TlsJ2DSOADg==" + "version": "0.5.16", + "license": "MIT" }, "node_modules/dom-converter": { "version": "0.2.0", - "resolved": "https://registry.npmjs.org/dom-converter/-/dom-converter-0.2.0.tgz", - "integrity": "sha512-gd3ypIPfOMr9h5jIKq8E3sHOTCjeirnl0WK5ZdS1AW0Odt0b1PaWaHdJ4Qk4klv+YB9aJBS7mESXjFoDQPu6DA==", + "license": "MIT", "dependencies": { "utila": "~0.4" } }, "node_modules/dom-helpers": { "version": "5.2.1", - "resolved": "https://registry.npmjs.org/dom-helpers/-/dom-helpers-5.2.1.tgz", - "integrity": "sha512-nRCa7CK3VTrM2NmGkIy4cbK7IZlgBE/PYMn55rrXefr5xXDP0LdtfPnblFDoVdcAfslJ7or6iqAUnx0CCGIWQA==", + "license": "MIT", "dependencies": { "@babel/runtime": "^7.8.7", "csstype": "^3.0.2" @@ -10485,8 +9599,7 @@ }, "node_modules/dom-serializer": { "version": "1.4.1", - "resolved": "https://registry.npmjs.org/dom-serializer/-/dom-serializer-1.4.1.tgz", - "integrity": "sha512-VHwB3KfrcOOkelEG2ZOfxqLZdfkil8PtJi4P8N2MMXucZq2yLp75ClViUlOVwyoHEDjYU433Aq+5zWP61+RGag==", + "license": "MIT", "dependencies": { "domelementtype": "^2.0.1", "domhandler": "^4.2.0", @@ -10497,25 +9610,21 @@ } }, "node_modules/dom-walk": { - "version": "0.1.2", - "resolved": "https://registry.npmjs.org/dom-walk/-/dom-walk-0.1.2.tgz", - "integrity": "sha512-6QvTW9mrGeIegrFXdtQi9pk7O/nSK6lSdXW2eqUspN5LWD7UTji2Fqw5V2YLjBpHEoU9Xl/eUWNpDeZvoyOv2w==" + "version": "0.1.2" }, "node_modules/domelementtype": { "version": "2.3.0", - "resolved": "https://registry.npmjs.org/domelementtype/-/domelementtype-2.3.0.tgz", - "integrity": "sha512-OLETBj6w0OsagBwdXnPdN0cnMfF9opN69co+7ZrbfPGrdpPVNBUj02spi6B1N7wChLQiPn4CSH/zJvXw56gmHw==", "funding": [ { "type": "github", "url": "https://github.com/sponsors/fb55" } - ] + ], + "license": "BSD-2-Clause" }, "node_modules/domexception": { "version": "2.0.1", - "resolved": "https://registry.npmjs.org/domexception/-/domexception-2.0.1.tgz", - "integrity": "sha512-yxJ2mFy/sibVQlu5qHjOkf9J3K6zgmCxgJ94u2EdvDOV09H+32LtRswEcUsmUWN72pVLOEnTSRaIVVzVQgS0dg==", + "license": "MIT", "dependencies": { "webidl-conversions": "^5.0.0" }, @@ -10525,16 +9634,14 @@ }, "node_modules/domexception/node_modules/webidl-conversions": { "version": "5.0.0", - "resolved": "https://registry.npmjs.org/webidl-conversions/-/webidl-conversions-5.0.0.tgz", - "integrity": "sha512-VlZwKPCkYKxQgeSbH5EyngOmRp7Ww7I9rQLERETtf5ofd9pGeswWiOtogpEO850jziPRarreGxn5QIiTqpb2wA==", + "license": "BSD-2-Clause", "engines": { "node": ">=8" } }, "node_modules/domhandler": { "version": "4.3.1", - "resolved": "https://registry.npmjs.org/domhandler/-/domhandler-4.3.1.tgz", - "integrity": "sha512-GrwoxYN+uWlzO8uhUXRl0P+kHE4GtVPfYzVLcUxPL7KNdHKj66vvlhiweIHqYYXWlw+T8iLMp42Lm67ghw4WMQ==", + "license": "BSD-2-Clause", "dependencies": { "domelementtype": "^2.2.0" }, @@ -10547,8 +9654,7 @@ }, "node_modules/domutils": { "version": "2.8.0", - "resolved": "https://registry.npmjs.org/domutils/-/domutils-2.8.0.tgz", - "integrity": "sha512-w96Cjofp72M5IIhpjgobBimYEfoPjx1Vx0BSX9P30WBdZW2WIKU0T1Bd0kz2eNZ9ikjKgHbEyKx8BB6H1L3h3A==", + "license": "BSD-2-Clause", "dependencies": { "dom-serializer": "^1.0.1", "domelementtype": "^2.2.0", @@ -10560,48 +9666,30 @@ }, "node_modules/dot-case": { "version": "3.0.4", - "resolved": "https://registry.npmjs.org/dot-case/-/dot-case-3.0.4.tgz", - "integrity": "sha512-Kv5nKlh6yRrdrGvxeJ2e5y2eRUpkUosIW4A2AS38zwSz27zu7ufDwQPi5Jhs3XAlGNetl3bmnGhQsMtkKJnj3w==", + "license": "MIT", "dependencies": { "no-case": "^3.0.4", "tslib": "^2.0.3" } }, "node_modules/dotenv": { - "version": "14.3.2", - "resolved": "https://registry.npmjs.org/dotenv/-/dotenv-14.3.2.tgz", - "integrity": "sha512-vwEppIphpFdvaMCaHfCEv9IgwcxMljMw2TnAQBB4VWPvzXQLTb82jwmdOKzlEVUL3gNFT4l4TPKO+Bn+sqcrVQ==", + "version": "10.0.0", + "license": "BSD-2-Clause", "engines": { - "node": ">=12" + "node": ">=10" } }, "node_modules/dotenv-expand": { "version": "5.1.0", - "resolved": "https://registry.npmjs.org/dotenv-expand/-/dotenv-expand-5.1.0.tgz", - "integrity": "sha512-YXQl1DSa4/PQyRfgrv6aoNjhasp/p4qs9FjJ4q4cQk+8m4r6k4ZSiEyytKG8f8W9gi8WsQtIObNmKd+tMzNTmA==" - }, - "node_modules/dtrace-provider": { - "version": "0.8.8", - "resolved": "https://registry.npmjs.org/dtrace-provider/-/dtrace-provider-0.8.8.tgz", - "integrity": "sha512-b7Z7cNtHPhH9EJhNNbbeqTcXB8LGFFZhq1PGgEvpeHlzd36bhbdTWoE/Ba/YguqpBSlAPKnARWhVlhunCMwfxg==", - "hasInstallScript": true, - "optional": true, - "dependencies": { - "nan": "^2.14.0" - }, - "engines": { - "node": ">=0.10" - } + "license": "BSD-2-Clause" }, "node_modules/duplexer": { "version": "0.1.2", - "resolved": "https://registry.npmjs.org/duplexer/-/duplexer-0.1.2.tgz", - "integrity": "sha512-jtD6YG370ZCIi/9GTaJKQxWTZD045+4R4hTk/x1UyoqadyJ9x9CgSi1RlVDQF8U2sxLLSnFkCaMihqljHIWgMg==" + "license": "MIT" }, "node_modules/ecc-jsbn": { "version": "0.1.2", - "resolved": "https://registry.npmjs.org/ecc-jsbn/-/ecc-jsbn-0.1.2.tgz", - "integrity": "sha512-eh9O+hwRHNbG4BLTjEl3nw044CkGm5X6LoaCf7LPp7UU8Qrt47JYNi6nPX8xjW97TKGKm1ouctg0QSpZe9qrnw==", + "license": "MIT", "dependencies": { "jsbn": "~0.1.0", "safer-buffer": "^2.1.0" @@ -10609,13 +9697,11 @@ }, "node_modules/ee-first": { "version": "1.1.1", - "resolved": "https://registry.npmjs.org/ee-first/-/ee-first-1.1.1.tgz", - "integrity": "sha512-WMwm9LhRUo+WUaRN+vRuETqG89IgZphVSNkdFgeb6sS/E4OrDIN7t48CAewSHXc6C8lefD8KKfr5vY61brQlow==" + "license": "MIT" }, "node_modules/ejs": { - "version": "3.1.8", - "resolved": "https://registry.npmjs.org/ejs/-/ejs-3.1.8.tgz", - "integrity": "sha512-/sXZeMlhS0ArkfX2Aw780gJzXSMPnKjtspYZv+f3NiKLlubezAHDU5+9xz6gd3/NhG3txQCo6xlglmTS+oTGEQ==", + "version": "3.1.9", + "license": "Apache-2.0", "dependencies": { "jake": "^10.8.5" }, @@ -10627,14 +9713,12 @@ } }, "node_modules/electron-to-chromium": { - "version": "1.4.172", - "resolved": "https://registry.npmjs.org/electron-to-chromium/-/electron-to-chromium-1.4.172.tgz", - "integrity": "sha512-yDoFfTJnqBAB6hSiPvzmsBJSrjOXJtHSJoqJdI/zSIh7DYupYnIOHt/bbPw/WE31BJjNTybDdNAs21gCMnTh0Q==" + "version": "1.4.503", + "license": "ISC" }, "node_modules/elliptic": { "version": "6.5.4", - "resolved": "https://registry.npmjs.org/elliptic/-/elliptic-6.5.4.tgz", - "integrity": "sha512-iLhC6ULemrljPZb+QutR5TQGB+pdW6KGD5RSegS+8sorOZT+rdQFbsQFJgvN3eRqNALqJer4oQ16YvJHlU8hzQ==", + "license": "MIT", "dependencies": { "bn.js": "^4.11.9", "brorand": "^1.1.0", @@ -10647,13 +9731,11 @@ }, "node_modules/elliptic/node_modules/bn.js": { "version": "4.12.0", - "resolved": "https://registry.npmjs.org/bn.js/-/bn.js-4.12.0.tgz", - "integrity": "sha512-c98Bf3tPniI+scsdk237ku1Dc3ujXQTSgyiPUDEOe7tRkhrqridvh8klBv0HCEso1OLOYcHuCv/cS6DNxKH+ZA==" + "license": "MIT" }, "node_modules/emittery": { "version": "0.8.1", - "resolved": "https://registry.npmjs.org/emittery/-/emittery-0.8.1.tgz", - "integrity": "sha512-uDfvUjVrfGJJhymx/kz6prltenw1u7WrCg1oa94zYY8xxVpLLUu045LAT0dhDZdXG58/EpPL/5kA180fQ/qudg==", + "license": "MIT", "engines": { "node": ">=10" }, @@ -10663,34 +9745,29 @@ }, "node_modules/emoji-regex": { "version": "9.2.2", - "resolved": "https://registry.npmjs.org/emoji-regex/-/emoji-regex-9.2.2.tgz", - "integrity": "sha512-L18DaJsXSUk2+42pv8mLs5jJT2hqFkFE4j21wOmgbUqsZ2hL72NsUU785g9RXgo3s0ZNgVl42TiHp3ZtOv/Vyg==" + "license": "MIT" }, "node_modules/emojis-list": { "version": "3.0.0", - "resolved": "https://registry.npmjs.org/emojis-list/-/emojis-list-3.0.0.tgz", - "integrity": "sha512-/kyM18EfinwXZbno9FyUGeFh87KC8HRQBQGildHZbEuRyWFOmv1U10o9BBp8XVZDVNNuQKyIGIu5ZYAAXJ0V2Q==", + "license": "MIT", "engines": { "node": ">= 4" } }, "node_modules/encode-utf8": { "version": "1.0.3", - "resolved": "https://registry.npmjs.org/encode-utf8/-/encode-utf8-1.0.3.tgz", - "integrity": "sha512-ucAnuBEhUK4boH2HjVYG5Q2mQyPorvv0u/ocS+zhdw0S8AlHYY+GOFhP1Gio5z4icpP2ivFSvhtFjQi8+T9ppw==" + "license": "MIT" }, "node_modules/encodeurl": { "version": "1.0.2", - "resolved": "https://registry.npmjs.org/encodeurl/-/encodeurl-1.0.2.tgz", - "integrity": "sha512-TPJXq8JqFaVYm2CWmPvnP2Iyo4ZSM7/QKcSmuMLDObfpH5fi7RUGmd/rTDf+rut/saiDiQEeVTNgAmJEdAOx0w==", + "license": "MIT", "engines": { "node": ">= 0.8" } }, "node_modules/encoding": { "version": "0.1.13", - "resolved": "https://registry.npmjs.org/encoding/-/encoding-0.1.13.tgz", - "integrity": "sha512-ETBauow1T35Y/WZMkio9jiM0Z5xjHHmJ4XmjZOq1l/dXz3lr2sRn87nJy20RupqSh1F2m3HHPSp8ShIPQJrJ3A==", + "license": "MIT", "optional": true, "dependencies": { "iconv-lite": "^0.6.2" @@ -10698,16 +9775,14 @@ }, "node_modules/end-of-stream": { "version": "1.4.4", - "resolved": "https://registry.npmjs.org/end-of-stream/-/end-of-stream-1.4.4.tgz", - "integrity": "sha512-+uw1inIHVPQoaVuHzRyXd21icM+cnt4CzD5rW+NC1wjOUSTOs+Te7FOv7AhN7vS9x/oIyhLP5PR1H+phQAHu5Q==", + "license": "MIT", "dependencies": { "once": "^1.4.0" } }, "node_modules/enhanced-resolve": { - "version": "5.13.0", - "resolved": "https://registry.npmjs.org/enhanced-resolve/-/enhanced-resolve-5.13.0.tgz", - "integrity": "sha512-eyV8f0y1+bzyfh8xAwW/WTSZpLbjhqc4ne9eGSH4Zo2ejdyiNG9pU6mf9DG8a7+Auk6MFTlNOT4Y2y/9k8GKVg==", + "version": "5.15.0", + "license": "MIT", "dependencies": { "graceful-fs": "^4.2.4", "tapable": "^2.2.0" @@ -10717,12 +9792,12 @@ } }, "node_modules/enquirer": { - "version": "2.3.6", - "resolved": "https://registry.npmjs.org/enquirer/-/enquirer-2.3.6.tgz", - "integrity": "sha512-yjNnPr315/FjS4zIsUxYguYUPP2e1NK4d7E7ZOLiyYCcbFBiTMyID+2wvm2w6+pZ/odMA7cRkjhsPbltwBOrLg==", + "version": "2.4.1", + "license": "MIT", "peer": true, "dependencies": { - "ansi-colors": "^4.1.1" + "ansi-colors": "^4.1.1", + "strip-ansi": "^6.0.1" }, "engines": { "node": ">=8.6" @@ -10730,16 +9805,14 @@ }, "node_modules/entities": { "version": "2.2.0", - "resolved": "https://registry.npmjs.org/entities/-/entities-2.2.0.tgz", - "integrity": "sha512-p92if5Nz619I0w+akJrLZH0MX0Pb5DX39XOwQTtXSdQQOaYH03S1uIQp4mhOZtAXrxq4ViO67YTiLBo2638o9A==", + "license": "BSD-2-Clause", "funding": { "url": "https://github.com/fb55/entities?sponsor=1" } }, "node_modules/env-paths": { "version": "2.2.1", - "resolved": "https://registry.npmjs.org/env-paths/-/env-paths-2.2.1.tgz", - "integrity": "sha512-+h1lkLKhZMTYjog1VEpJNG7NZJWcuc2DDk/qsqSTRRCOXiLjeQ1d1/udrUGhqMxUgAlwKNZ0cf2uqan5GLuS2A==", + "license": "MIT", "peer": true, "engines": { "node": ">=6" @@ -10747,32 +9820,30 @@ }, "node_modules/error-ex": { "version": "1.3.2", - "resolved": "https://registry.npmjs.org/error-ex/-/error-ex-1.3.2.tgz", - "integrity": "sha512-7dFHNmqeFSEt2ZBsCriorKnn3Z2pj+fd9kmI6QoWw4//DL+icEBfc0U7qJCisqrTsKTjw4fNFy2pW9OqStD84g==", + "license": "MIT", "dependencies": { "is-arrayish": "^0.2.1" } }, "node_modules/error-stack-parser": { "version": "2.1.4", - "resolved": "https://registry.npmjs.org/error-stack-parser/-/error-stack-parser-2.1.4.tgz", - "integrity": "sha512-Sk5V6wVazPhq5MhpO+AUxJn5x7XSXGl1R93Vn7i+zS15KDVxQijejNCrz8340/2bgLBjR9GtEG8ZVKONDjcqGQ==", + "license": "MIT", "dependencies": { "stackframe": "^1.3.4" } }, "node_modules/es-abstract": { - "version": "1.21.2", - "resolved": "https://registry.npmjs.org/es-abstract/-/es-abstract-1.21.2.tgz", - "integrity": "sha512-y/B5POM2iBnIxCiernH1G7rC9qQoM77lLIMQLuob0zhp8C56Po81+2Nj0WFKnd0pNReDTnkYryc+zhOzpEIROg==", + "version": "1.22.1", + "license": "MIT", "dependencies": { "array-buffer-byte-length": "^1.0.0", + "arraybuffer.prototype.slice": "^1.0.1", "available-typed-arrays": "^1.0.5", "call-bind": "^1.0.2", "es-set-tostringtag": "^2.0.1", "es-to-primitive": "^1.2.1", "function.prototype.name": "^1.1.5", - "get-intrinsic": "^1.2.0", + "get-intrinsic": "^1.2.1", "get-symbol-description": "^1.0.0", "globalthis": "^1.0.3", "gopd": "^1.0.1", @@ -10792,14 +9863,18 @@ "object-inspect": "^1.12.3", "object-keys": "^1.1.1", "object.assign": "^4.1.4", - "regexp.prototype.flags": "^1.4.3", + "regexp.prototype.flags": "^1.5.0", + "safe-array-concat": "^1.0.0", "safe-regex-test": "^1.0.0", "string.prototype.trim": "^1.2.7", "string.prototype.trimend": "^1.0.6", "string.prototype.trimstart": "^1.0.6", + "typed-array-buffer": "^1.0.0", + "typed-array-byte-length": "^1.0.0", + "typed-array-byte-offset": "^1.0.0", "typed-array-length": "^1.0.4", "unbox-primitive": "^1.0.2", - "which-typed-array": "^1.1.9" + "which-typed-array": "^1.1.10" }, "engines": { "node": ">= 0.4" @@ -10810,39 +9885,72 @@ }, "node_modules/es-array-method-boxes-properly": { "version": "1.0.0", - "resolved": "https://registry.npmjs.org/es-array-method-boxes-properly/-/es-array-method-boxes-properly-1.0.0.tgz", - "integrity": "sha512-wd6JXUmyHmt8T5a2xreUwKcGPq6f1f+WwIJkijUqiGcJz1qqnZgP6XIK+QyIWU5lT7imeNxUll48bziG+TSYcA==" - }, - "node_modules/es-module-lexer": { - "version": "1.2.1", - "resolved": "https://registry.npmjs.org/es-module-lexer/-/es-module-lexer-1.2.1.tgz", - "integrity": "sha512-9978wrXM50Y4rTMmW5kXIC09ZdXQZqkE4mxhwkd8VbzsGkXGPgV4zWuqQJgCEzYngdo2dYDa0l8xhX4fkSwJSg==" + "license": "MIT" }, - "node_modules/es-set-tostringtag": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/es-set-tostringtag/-/es-set-tostringtag-2.0.1.tgz", - "integrity": "sha512-g3OMbtlwY3QewlqAiMLI47KywjWZoEytKr8pf6iTC8uJq5bIAH52Z9pnQ8pVL6whrCto53JZDuUIsifGeLorTg==", + "node_modules/es-get-iterator": { + "version": "1.1.3", + "license": "MIT", "dependencies": { + "call-bind": "^1.0.2", "get-intrinsic": "^1.1.3", - "has": "^1.0.3", - "has-tostringtag": "^1.0.0" + "has-symbols": "^1.0.3", + "is-arguments": "^1.1.1", + "is-map": "^2.0.2", + "is-set": "^2.0.2", + "is-string": "^1.0.7", + "isarray": "^2.0.5", + "stop-iteration-iterator": "^1.0.0" }, - "engines": { - "node": ">= 0.4" + "funding": { + "url": "https://github.com/sponsors/ljharb" } }, - "node_modules/es-shim-unscopables": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/es-shim-unscopables/-/es-shim-unscopables-1.0.0.tgz", - "integrity": "sha512-Jm6GPcCdC30eMLbZ2x8z2WuRwAws3zTBBKuusffYVUrNj/GVSUAZ+xKMaUpfNDR5IbyNA5LJbaecoUVbmUcB1w==", + "node_modules/es-iterator-helpers": { + "version": "1.0.14", + "license": "MIT", "dependencies": { - "has": "^1.0.3" - } - }, - "node_modules/es-to-primitive": { - "version": "1.2.1", - "resolved": "https://registry.npmjs.org/es-to-primitive/-/es-to-primitive-1.2.1.tgz", - "integrity": "sha512-QCOllgZJtaUo9miYBcLChTUaHNjJF3PYs1VidD7AwiEj1kYxKeQTctLAezAOH5ZKRH0g2IgPn6KwB4IT8iRpvA==", + "asynciterator.prototype": "^1.0.0", + "call-bind": "^1.0.2", + "define-properties": "^1.2.0", + "es-abstract": "^1.22.1", + "es-set-tostringtag": "^2.0.1", + "function-bind": "^1.1.1", + "get-intrinsic": "^1.2.1", + "globalthis": "^1.0.3", + "has-property-descriptors": "^1.0.0", + "has-proto": "^1.0.1", + "has-symbols": "^1.0.3", + "internal-slot": "^1.0.5", + "iterator.prototype": "^1.1.0", + "safe-array-concat": "^1.0.0" + } + }, + "node_modules/es-module-lexer": { + "version": "1.3.0", + "license": "MIT" + }, + "node_modules/es-set-tostringtag": { + "version": "2.0.1", + "license": "MIT", + "dependencies": { + "get-intrinsic": "^1.1.3", + "has": "^1.0.3", + "has-tostringtag": "^1.0.0" + }, + "engines": { + "node": ">= 0.4" + } + }, + "node_modules/es-shim-unscopables": { + "version": "1.0.0", + "license": "MIT", + "dependencies": { + "has": "^1.0.3" + } + }, + "node_modules/es-to-primitive": { + "version": "1.2.1", + "license": "MIT", "dependencies": { "is-callable": "^1.1.4", "is-date-object": "^1.0.1", @@ -10857,9 +9965,8 @@ }, "node_modules/es5-ext": { "version": "0.10.62", - "resolved": "https://registry.npmjs.org/es5-ext/-/es5-ext-0.10.62.tgz", - "integrity": "sha512-BHLqn0klhEpnOKSrzn/Xsz2UIW8j+cGmo9JLzr8BiUapV8hPL9+FliFqjwr9ngW7jWdnxv6eO+/LqyhJVqgrjA==", "hasInstallScript": true, + "license": "ISC", "dependencies": { "es6-iterator": "^2.0.3", "es6-symbol": "^3.1.3", @@ -10871,8 +9978,7 @@ }, "node_modules/es6-iterator": { "version": "2.0.3", - "resolved": "https://registry.npmjs.org/es6-iterator/-/es6-iterator-2.0.3.tgz", - "integrity": "sha512-zw4SRzoUkd+cl+ZoE15A9o1oQd920Bb0iOJMQkQhl3jNc03YqVjAhG7scf9C5KWRU/R13Orf588uCC6525o02g==", + "license": "MIT", "dependencies": { "d": "1", "es5-ext": "^0.10.35", @@ -10881,13 +9987,11 @@ }, "node_modules/es6-promise": { "version": "4.2.8", - "resolved": "https://registry.npmjs.org/es6-promise/-/es6-promise-4.2.8.tgz", - "integrity": "sha512-HJDGx5daxeIvxdBxvG2cb9g4tEvwIk3i8+nhX0yGrYmZUzbkdg8QbDevheDB8gd0//uPj4c1EQua8Q+MViT0/w==" + "license": "MIT" }, "node_modules/es6-symbol": { "version": "3.1.3", - "resolved": "https://registry.npmjs.org/es6-symbol/-/es6-symbol-3.1.3.tgz", - "integrity": "sha512-NJ6Yn3FuDinBaBRWl/q5X/s4koRHBrgKAu+yGI6JCBeiu3qrcbJhwT2GeR/EXVfylRk8dpQVJoLEFhK+Mu31NA==", + "license": "ISC", "dependencies": { "d": "^1.0.1", "ext": "^1.1.2" @@ -10895,34 +9999,32 @@ }, "node_modules/escalade": { "version": "3.1.1", - "resolved": "https://registry.npmjs.org/escalade/-/escalade-3.1.1.tgz", - "integrity": "sha512-k0er2gUkLf8O0zKJiAhmkTnJlTvINGv7ygDNPbeIsX/TJjGJZHuh9B2UxbsaEkmlEo9MfhrSzmhIlhRlI2GXnw==", + "license": "MIT", "engines": { "node": ">=6" } }, "node_modules/escape-html": { "version": "1.0.3", - "resolved": "https://registry.npmjs.org/escape-html/-/escape-html-1.0.3.tgz", - "integrity": "sha512-NiSupZ4OeuGwr68lGIeym/ksIZMJodUGOSCZ/FSnTxcrekbvqrgdUxlJOMpijaKZVjAJrWrGs/6Jy8OMuyj9ow==" + "license": "MIT" }, "node_modules/escape-string-regexp": { - "version": "1.0.5", - "resolved": "https://registry.npmjs.org/escape-string-regexp/-/escape-string-regexp-1.0.5.tgz", - "integrity": "sha512-vbRorB5FUQWvla16U8R/qgaFIya2qGzwDrNmCZuYKrbdSUMG6I1ZCGQRefkRVhuOkIGVne7BQ35DSfo1qvJqFg==", + "version": "4.0.0", + "license": "MIT", "engines": { - "node": ">=0.8.0" + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" } }, "node_modules/escodegen": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/escodegen/-/escodegen-2.0.0.tgz", - "integrity": "sha512-mmHKys/C8BFUGI+MAWNcSYoORYLMdPzjrknd2Vc+bUsjN5bXcr8EhrNB+UTqfL1y3I9c4fw2ihgtMPQLBRiQxw==", + "version": "2.1.0", + "license": "BSD-2-Clause", "dependencies": { "esprima": "^4.0.1", "estraverse": "^5.2.0", - "esutils": "^2.0.2", - "optionator": "^0.8.1" + "esutils": "^2.0.2" }, "bin": { "escodegen": "bin/escodegen.js", @@ -10935,102 +10037,55 @@ "source-map": "~0.6.1" } }, - "node_modules/escodegen/node_modules/levn": { - "version": "0.3.0", - "resolved": "https://registry.npmjs.org/levn/-/levn-0.3.0.tgz", - "integrity": "sha512-0OO4y2iOHix2W6ujICbKIaEQXvFQHue65vUG3pb5EUomzPI90z9hsA1VsO/dbIIpC53J8gxM9Q4Oho0jrCM/yA==", - "dependencies": { - "prelude-ls": "~1.1.2", - "type-check": "~0.3.2" - }, - "engines": { - "node": ">= 0.8.0" - } - }, - "node_modules/escodegen/node_modules/optionator": { - "version": "0.8.3", - "resolved": "https://registry.npmjs.org/optionator/-/optionator-0.8.3.tgz", - "integrity": "sha512-+IW9pACdk3XWmmTXG8m3upGUJst5XRGzxMRjXzAuJ1XnIFNvfhjjIuYkDvysnPQ7qzqVzLt78BCruntqRhWQbA==", - "dependencies": { - "deep-is": "~0.1.3", - "fast-levenshtein": "~2.0.6", - "levn": "~0.3.0", - "prelude-ls": "~1.1.2", - "type-check": "~0.3.2", - "word-wrap": "~1.2.3" - }, - "engines": { - "node": ">= 0.8.0" - } - }, - "node_modules/escodegen/node_modules/prelude-ls": { - "version": "1.1.2", - "resolved": "https://registry.npmjs.org/prelude-ls/-/prelude-ls-1.1.2.tgz", - "integrity": "sha512-ESF23V4SKG6lVSGZgYNpbsiaAkdab6ZgOxe52p7+Kid3W3u3bxR4Vfd/o21dmN7jSt0IwgZ4v5MUd26FEtXE9w==", - "engines": { - "node": ">= 0.8.0" - } - }, "node_modules/escodegen/node_modules/source-map": { "version": "0.6.1", - "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz", - "integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==", + "license": "BSD-3-Clause", "optional": true, "engines": { "node": ">=0.10.0" } }, - "node_modules/escodegen/node_modules/type-check": { - "version": "0.3.2", - "resolved": "https://registry.npmjs.org/type-check/-/type-check-0.3.2.tgz", - "integrity": "sha512-ZCmOJdvOWDBYJlzAoFkC+Q0+bUyEOS1ltgp1MGU03fqHG+dbi9tBFU2Rd9QKiDZFAYrhPh2JUf7rZRIuHRKtOg==", - "dependencies": { - "prelude-ls": "~1.1.2" - }, - "engines": { - "node": ">= 0.8.0" - } - }, "node_modules/eslint": { - "version": "8.18.0", - "resolved": "https://registry.npmjs.org/eslint/-/eslint-8.18.0.tgz", - "integrity": "sha512-As1EfFMVk7Xc6/CvhssHUjsAQSkpfXvUGMFC3ce8JDe6WvqCgRrLOBQbVpsBFr1X1V+RACOadnzVvcUS5ni2bA==", - "dependencies": { - "@eslint/eslintrc": "^1.3.0", - "@humanwhocodes/config-array": "^0.9.2", - "ajv": "^6.10.0", + "version": "8.48.0", + "license": "MIT", + "dependencies": { + "@eslint-community/eslint-utils": "^4.2.0", + "@eslint-community/regexpp": "^4.6.1", + "@eslint/eslintrc": "^2.1.2", + "@eslint/js": "8.48.0", + "@humanwhocodes/config-array": "^0.11.10", + "@humanwhocodes/module-importer": "^1.0.1", + "@nodelib/fs.walk": "^1.2.8", + "ajv": "^6.12.4", "chalk": "^4.0.0", "cross-spawn": "^7.0.2", "debug": "^4.3.2", "doctrine": "^3.0.0", "escape-string-regexp": "^4.0.0", - "eslint-scope": "^7.1.1", - "eslint-utils": "^3.0.0", - "eslint-visitor-keys": "^3.3.0", - "espree": "^9.3.2", - "esquery": "^1.4.0", + "eslint-scope": "^7.2.2", + "eslint-visitor-keys": "^3.4.3", + "espree": "^9.6.1", + "esquery": "^1.4.2", "esutils": "^2.0.2", "fast-deep-equal": "^3.1.3", "file-entry-cache": "^6.0.1", - "functional-red-black-tree": "^1.0.1", - "glob-parent": "^6.0.1", - "globals": "^13.15.0", + "find-up": "^5.0.0", + "glob-parent": "^6.0.2", + "globals": "^13.19.0", + "graphemer": "^1.4.0", "ignore": "^5.2.0", - "import-fresh": "^3.0.0", "imurmurhash": "^0.1.4", "is-glob": "^4.0.0", + "is-path-inside": "^3.0.3", "js-yaml": "^4.1.0", "json-stable-stringify-without-jsonify": "^1.0.1", "levn": "^0.4.1", "lodash.merge": "^4.6.2", "minimatch": "^3.1.2", "natural-compare": "^1.4.0", - "optionator": "^0.9.1", - "regexpp": "^3.2.0", + "optionator": "^0.9.3", "strip-ansi": "^6.0.1", - "strip-json-comments": "^3.1.0", - "text-table": "^0.2.0", - "v8-compile-cache": "^2.0.3" + "text-table": "^0.2.0" }, "bin": { "eslint": "bin/eslint.js" @@ -11044,8 +10099,7 @@ }, "node_modules/eslint-config-react-app": { "version": "7.0.1", - "resolved": "https://registry.npmjs.org/eslint-config-react-app/-/eslint-config-react-app-7.0.1.tgz", - "integrity": "sha512-K6rNzvkIeHaTd8m/QEh1Zko0KI7BACWkkneSs6s9cKZC/J27X3eZR6Upt1jkmZ/4FK+XUOPPxMEN7+lbUXfSlA==", + "license": "MIT", "dependencies": { "@babel/core": "^7.16.0", "@babel/eslint-parser": "^7.16.3", @@ -11070,107 +10124,46 @@ } }, "node_modules/eslint-import-resolver-node": { - "version": "0.3.6", - "resolved": "https://registry.npmjs.org/eslint-import-resolver-node/-/eslint-import-resolver-node-0.3.6.tgz", - "integrity": "sha512-0En0w03NRVMn9Uiyn8YRPDKvWjxCWkslUEhGNTdGx15RvPJYQ+lbOlqrlNI2vEAs4pDYK4f/HN2TbDmk5TP0iw==", + "version": "0.3.9", + "license": "MIT", "dependencies": { "debug": "^3.2.7", - "resolve": "^1.20.0" + "is-core-module": "^2.13.0", + "resolve": "^1.22.4" } }, "node_modules/eslint-import-resolver-node/node_modules/debug": { "version": "3.2.7", - "resolved": "https://registry.npmjs.org/debug/-/debug-3.2.7.tgz", - "integrity": "sha512-CFjzYYAi4ThfiQvizrFQevTTXHtnCqWfe7x1AhgEscTz6ZbLbfoLRLPugTQyBth6f8ZERVUSyWHFD/7Wu4t1XQ==", + "license": "MIT", "dependencies": { "ms": "^2.1.1" } }, "node_modules/eslint-module-utils": { - "version": "2.7.3", - "resolved": "https://registry.npmjs.org/eslint-module-utils/-/eslint-module-utils-2.7.3.tgz", - "integrity": "sha512-088JEC7O3lDZM9xGe0RerkOMd0EjFl+Yvd1jPWIkMT5u3H9+HC34mWWPnqPrN13gieT9pBOO+Qt07Nb/6TresQ==", + "version": "2.8.0", + "license": "MIT", "dependencies": { - "debug": "^3.2.7", - "find-up": "^2.1.0" + "debug": "^3.2.7" }, "engines": { "node": ">=4" + }, + "peerDependenciesMeta": { + "eslint": { + "optional": true + } } }, "node_modules/eslint-module-utils/node_modules/debug": { "version": "3.2.7", - "resolved": "https://registry.npmjs.org/debug/-/debug-3.2.7.tgz", - "integrity": "sha512-CFjzYYAi4ThfiQvizrFQevTTXHtnCqWfe7x1AhgEscTz6ZbLbfoLRLPugTQyBth6f8ZERVUSyWHFD/7Wu4t1XQ==", + "license": "MIT", "dependencies": { "ms": "^2.1.1" } }, - "node_modules/eslint-module-utils/node_modules/find-up": { - "version": "2.1.0", - "resolved": "https://registry.npmjs.org/find-up/-/find-up-2.1.0.tgz", - "integrity": "sha512-NWzkk0jSJtTt08+FBFMvXoeZnOJD+jTtsRmBYbAIzJdX6l7dLgR7CTubCM5/eDdPUBvLCeVasP1brfVR/9/EZQ==", - "dependencies": { - "locate-path": "^2.0.0" - }, - "engines": { - "node": ">=4" - } - }, - "node_modules/eslint-module-utils/node_modules/locate-path": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/locate-path/-/locate-path-2.0.0.tgz", - "integrity": "sha512-NCI2kiDkyR7VeEKm27Kda/iQHyKJe1Bu0FlTbYp3CqJu+9IFe9bLyAjMxf5ZDDbEg+iMPzB5zYyUTSm8wVTKmA==", - "dependencies": { - "p-locate": "^2.0.0", - "path-exists": "^3.0.0" - }, - "engines": { - "node": ">=4" - } - }, - "node_modules/eslint-module-utils/node_modules/p-limit": { - "version": "1.3.0", - "resolved": "https://registry.npmjs.org/p-limit/-/p-limit-1.3.0.tgz", - "integrity": "sha512-vvcXsLAJ9Dr5rQOPk7toZQZJApBl2K4J6dANSsEuh6QI41JYcsS/qhTGa9ErIUUgK3WNQoJYvylxvjqmiqEA9Q==", - "dependencies": { - "p-try": "^1.0.0" - }, - "engines": { - "node": ">=4" - } - }, - "node_modules/eslint-module-utils/node_modules/p-locate": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/p-locate/-/p-locate-2.0.0.tgz", - "integrity": "sha512-nQja7m7gSKuewoVRen45CtVfODR3crN3goVQ0DDZ9N3yHxgpkuBhZqsaiotSQRrADUrne346peY7kT3TSACykg==", - "dependencies": { - "p-limit": "^1.1.0" - }, - "engines": { - "node": ">=4" - } - }, - "node_modules/eslint-module-utils/node_modules/p-try": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/p-try/-/p-try-1.0.0.tgz", - "integrity": "sha512-U1etNYuMJoIz3ZXSrrySFjsXQTWOx2/jdi86L+2pRvph/qMKL6sbcCYdH23fqsbm8TH2Gn0OybpT4eSFlCVHww==", - "engines": { - "node": ">=4" - } - }, - "node_modules/eslint-module-utils/node_modules/path-exists": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/path-exists/-/path-exists-3.0.0.tgz", - "integrity": "sha512-bpC7GYwiDYQ4wYLe+FA8lhRjhQCMcQGuSgGGqDkg/QerRWw9CmGRT0iSOVRSZJ29NMLZgIzqaljJ63oaL4NIJQ==", - "engines": { - "node": ">=4" - } - }, "node_modules/eslint-plugin-flowtype": { "version": "8.0.3", - "resolved": "https://registry.npmjs.org/eslint-plugin-flowtype/-/eslint-plugin-flowtype-8.0.3.tgz", - "integrity": "sha512-dX8l6qUL6O+fYPtpNRideCFSpmWOUVx5QcaGLVqe/vlDiBSe4vYljDWDETwnyFzpl7By/WVIu6rcrniCgH9BqQ==", + "license": "BSD-3-Clause", "dependencies": { "lodash": "^4.17.21", "string-natural-compare": "^3.0.1" @@ -11185,23 +10178,26 @@ } }, "node_modules/eslint-plugin-import": { - "version": "2.26.0", - "resolved": "https://registry.npmjs.org/eslint-plugin-import/-/eslint-plugin-import-2.26.0.tgz", - "integrity": "sha512-hYfi3FXaM8WPLf4S1cikh/r4IxnO6zrhZbEGz2b660EJRbuxgpDS5gkCuYgGWg2xxh2rBuIr4Pvhve/7c31koA==", + "version": "2.28.1", + "license": "MIT", "dependencies": { - "array-includes": "^3.1.4", - "array.prototype.flat": "^1.2.5", - "debug": "^2.6.9", + "array-includes": "^3.1.6", + "array.prototype.findlastindex": "^1.2.2", + "array.prototype.flat": "^1.3.1", + "array.prototype.flatmap": "^1.3.1", + "debug": "^3.2.7", "doctrine": "^2.1.0", - "eslint-import-resolver-node": "^0.3.6", - "eslint-module-utils": "^2.7.3", + "eslint-import-resolver-node": "^0.3.7", + "eslint-module-utils": "^2.8.0", "has": "^1.0.3", - "is-core-module": "^2.8.1", + "is-core-module": "^2.13.0", "is-glob": "^4.0.3", "minimatch": "^3.1.2", - "object.values": "^1.1.5", - "resolve": "^1.22.0", - "tsconfig-paths": "^3.14.1" + "object.fromentries": "^2.0.6", + "object.groupby": "^1.0.0", + "object.values": "^1.1.6", + "semver": "^6.3.1", + "tsconfig-paths": "^3.14.2" }, "engines": { "node": ">=4" @@ -11211,17 +10207,15 @@ } }, "node_modules/eslint-plugin-import/node_modules/debug": { - "version": "2.6.9", - "resolved": "https://registry.npmjs.org/debug/-/debug-2.6.9.tgz", - "integrity": "sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA==", + "version": "3.2.7", + "license": "MIT", "dependencies": { - "ms": "2.0.0" + "ms": "^2.1.1" } }, "node_modules/eslint-plugin-import/node_modules/doctrine": { "version": "2.1.0", - "resolved": "https://registry.npmjs.org/doctrine/-/doctrine-2.1.0.tgz", - "integrity": "sha512-35mSku4ZXK0vfCuHEDAwt55dg2jNajHZ1odvF+8SSr82EsZY4QmXfuWso8oEd8zRhVObSN18aM0CjSdoBX7zIw==", + "license": "Apache-2.0", "dependencies": { "esutils": "^2.0.2" }, @@ -11229,15 +10223,16 @@ "node": ">=0.10.0" } }, - "node_modules/eslint-plugin-import/node_modules/ms": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/ms/-/ms-2.0.0.tgz", - "integrity": "sha512-Tpp60P6IUJDTuOq/5Z8cdskzJujfwqfOTkrwIwj7IRISpnkJnT6SyJ4PCPnGMoFjC9ddhal5KVIYtAt97ix05A==" + "node_modules/eslint-plugin-import/node_modules/semver": { + "version": "6.3.1", + "license": "ISC", + "bin": { + "semver": "bin/semver.js" + } }, "node_modules/eslint-plugin-jest": { "version": "25.7.0", - "resolved": "https://registry.npmjs.org/eslint-plugin-jest/-/eslint-plugin-jest-25.7.0.tgz", - "integrity": "sha512-PWLUEXeeF7C9QGKqvdSbzLOiLTx+bno7/HC9eefePfEb257QFHg7ye3dh80AZVkaa/RQsBB1Q/ORQvg2X7F0NQ==", + "license": "MIT", "dependencies": { "@typescript-eslint/experimental-utils": "^5.0.0" }, @@ -11258,22 +10253,24 @@ } }, "node_modules/eslint-plugin-jsx-a11y": { - "version": "6.6.0", - "resolved": "https://registry.npmjs.org/eslint-plugin-jsx-a11y/-/eslint-plugin-jsx-a11y-6.6.0.tgz", - "integrity": "sha512-kTeLuIzpNhXL2CwLlc8AHI0aFRwWHcg483yepO9VQiHzM9bZwJdzTkzBszbuPrbgGmq2rlX/FaT2fJQsjUSHsw==", + "version": "6.7.1", + "license": "MIT", "dependencies": { - "@babel/runtime": "^7.18.3", - "aria-query": "^4.2.2", - "array-includes": "^3.1.5", + "@babel/runtime": "^7.20.7", + "aria-query": "^5.1.3", + "array-includes": "^3.1.6", + "array.prototype.flatmap": "^1.3.1", "ast-types-flow": "^0.0.7", - "axe-core": "^4.4.2", - "axobject-query": "^2.2.0", + "axe-core": "^4.6.2", + "axobject-query": "^3.1.1", "damerau-levenshtein": "^1.0.8", "emoji-regex": "^9.2.2", "has": "^1.0.3", - "jsx-ast-utils": "^3.3.1", - "language-tags": "^1.0.5", + "jsx-ast-utils": "^3.3.3", + "language-tags": "=1.0.5", "minimatch": "^3.1.2", + "object.entries": "^1.1.6", + "object.fromentries": "^2.0.6", "semver": "^6.3.0" }, "engines": { @@ -11284,32 +10281,32 @@ } }, "node_modules/eslint-plugin-jsx-a11y/node_modules/semver": { - "version": "6.3.0", - "resolved": "https://registry.npmjs.org/semver/-/semver-6.3.0.tgz", - "integrity": "sha512-b39TBaTSfV6yBrapU89p5fKekE2m/NwnDocOVruQFS1/veMgdzuPcnOM34M6CwxW8jH/lxEa5rBoDeUwu5HHTw==", + "version": "6.3.1", + "license": "ISC", "bin": { "semver": "bin/semver.js" } }, "node_modules/eslint-plugin-react": { - "version": "7.30.1", - "resolved": "https://registry.npmjs.org/eslint-plugin-react/-/eslint-plugin-react-7.30.1.tgz", - "integrity": "sha512-NbEvI9jtqO46yJA3wcRF9Mo0lF9T/jhdHqhCHXiXtD+Zcb98812wvokjWpU7Q4QH5edo6dmqrukxVvWWXHlsUg==", + "version": "7.33.2", + "license": "MIT", "dependencies": { - "array-includes": "^3.1.5", - "array.prototype.flatmap": "^1.3.0", + "array-includes": "^3.1.6", + "array.prototype.flatmap": "^1.3.1", + "array.prototype.tosorted": "^1.1.1", "doctrine": "^2.1.0", + "es-iterator-helpers": "^1.0.12", "estraverse": "^5.3.0", "jsx-ast-utils": "^2.4.1 || ^3.0.0", "minimatch": "^3.1.2", - "object.entries": "^1.1.5", - "object.fromentries": "^2.0.5", - "object.hasown": "^1.1.1", - "object.values": "^1.1.5", + "object.entries": "^1.1.6", + "object.fromentries": "^2.0.6", + "object.hasown": "^1.1.2", + "object.values": "^1.1.6", "prop-types": "^15.8.1", - "resolve": "^2.0.0-next.3", - "semver": "^6.3.0", - "string.prototype.matchall": "^4.0.7" + "resolve": "^2.0.0-next.4", + "semver": "^6.3.1", + "string.prototype.matchall": "^4.0.8" }, "engines": { "node": ">=4" @@ -11320,8 +10317,7 @@ }, "node_modules/eslint-plugin-react-hooks": { "version": "4.6.0", - "resolved": "https://registry.npmjs.org/eslint-plugin-react-hooks/-/eslint-plugin-react-hooks-4.6.0.tgz", - "integrity": "sha512-oFc7Itz9Qxh2x4gNHStv3BqJq54ExXmfC+a1NjAta66IAN87Wu0R/QArgIS9qKzX3dXKPI9H5crl9QchNMY9+g==", + "license": "MIT", "engines": { "node": ">=10" }, @@ -11331,8 +10327,7 @@ }, "node_modules/eslint-plugin-react/node_modules/doctrine": { "version": "2.1.0", - "resolved": "https://registry.npmjs.org/doctrine/-/doctrine-2.1.0.tgz", - "integrity": "sha512-35mSku4ZXK0vfCuHEDAwt55dg2jNajHZ1odvF+8SSr82EsZY4QmXfuWso8oEd8zRhVObSN18aM0CjSdoBX7zIw==", + "license": "Apache-2.0", "dependencies": { "esutils": "^2.0.2" }, @@ -11342,8 +10337,7 @@ }, "node_modules/eslint-plugin-react/node_modules/resolve": { "version": "2.0.0-next.4", - "resolved": "https://registry.npmjs.org/resolve/-/resolve-2.0.0-next.4.tgz", - "integrity": "sha512-iMDbmAWtfU+MHpxt/I5iWI7cY6YVEZUQ3MBgPQ++XD1PELuJHIl82xBmObyP2KyQmkNB2dsqF7seoQQiAn5yDQ==", + "license": "MIT", "dependencies": { "is-core-module": "^2.9.0", "path-parse": "^1.0.7", @@ -11357,19 +10351,17 @@ } }, "node_modules/eslint-plugin-react/node_modules/semver": { - "version": "6.3.0", - "resolved": "https://registry.npmjs.org/semver/-/semver-6.3.0.tgz", - "integrity": "sha512-b39TBaTSfV6yBrapU89p5fKekE2m/NwnDocOVruQFS1/veMgdzuPcnOM34M6CwxW8jH/lxEa5rBoDeUwu5HHTw==", + "version": "6.3.1", + "license": "ISC", "bin": { "semver": "bin/semver.js" } }, "node_modules/eslint-plugin-testing-library": { - "version": "5.5.1", - "resolved": "https://registry.npmjs.org/eslint-plugin-testing-library/-/eslint-plugin-testing-library-5.5.1.tgz", - "integrity": "sha512-plLEkkbAKBjPxsLj7x4jNapcHAg2ernkQlKKrN2I8NrQwPISZHyCUNvg5Hv3EDqOQReToQb5bnqXYbkijJPE/g==", + "version": "5.11.1", + "license": "MIT", "dependencies": { - "@typescript-eslint/utils": "^5.13.0" + "@typescript-eslint/utils": "^5.58.0" }, "engines": { "node": "^12.22.0 || ^14.17.0 || >=16.0.0", @@ -11380,54 +10372,32 @@ } }, "node_modules/eslint-scope": { - "version": "7.1.1", - "resolved": "https://registry.npmjs.org/eslint-scope/-/eslint-scope-7.1.1.tgz", - "integrity": "sha512-QKQM/UXpIiHcLqJ5AOyIW7XZmzjkzQXYE54n1++wb0u9V/abW3l9uQnxX8Z5Xd18xyKIMTUAyQ0k1e8pz6LUrw==", + "version": "7.2.2", + "license": "BSD-2-Clause", "dependencies": { "esrecurse": "^4.3.0", "estraverse": "^5.2.0" }, "engines": { "node": "^12.22.0 || ^14.17.0 || >=16.0.0" - } - }, - "node_modules/eslint-utils": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/eslint-utils/-/eslint-utils-3.0.0.tgz", - "integrity": "sha512-uuQC43IGctw68pJA1RgbQS8/NP7rch6Cwd4j3ZBtgo4/8Flj4eGE7ZYSZRN3iq5pVUv6GPdW5Z1RFleo84uLDA==", - "dependencies": { - "eslint-visitor-keys": "^2.0.0" - }, - "engines": { - "node": "^10.0.0 || ^12.0.0 || >= 14.0.0" }, "funding": { - "url": "https://github.com/sponsors/mysticatea" - }, - "peerDependencies": { - "eslint": ">=5" - } - }, - "node_modules/eslint-utils/node_modules/eslint-visitor-keys": { - "version": "2.1.0", - "resolved": "https://registry.npmjs.org/eslint-visitor-keys/-/eslint-visitor-keys-2.1.0.tgz", - "integrity": "sha512-0rSmRBzXgDzIsD6mGdJgevzgezI534Cer5L/vyMX0kHzT/jiB43jRhd9YUlMGYLQy2zprNmoT8qasCGtY+QaKw==", - "engines": { - "node": ">=10" + "url": "https://opencollective.com/eslint" } }, "node_modules/eslint-visitor-keys": { - "version": "3.3.0", - "resolved": "https://registry.npmjs.org/eslint-visitor-keys/-/eslint-visitor-keys-3.3.0.tgz", - "integrity": "sha512-mQ+suqKJVyeuwGYHAdjMFqjCyfl8+Ldnxuyp3ldiMBFKkvytrXUZWaiPCEav8qDHKty44bD+qV1IP4T+w+xXRA==", + "version": "3.4.3", + "license": "Apache-2.0", "engines": { "node": "^12.22.0 || ^14.17.0 || >=16.0.0" + }, + "funding": { + "url": "https://opencollective.com/eslint" } }, "node_modules/eslint-webpack-plugin": { "version": "3.2.0", - "resolved": "https://registry.npmjs.org/eslint-webpack-plugin/-/eslint-webpack-plugin-3.2.0.tgz", - "integrity": "sha512-avrKcGncpPbPSUHX6B3stNGzkKFto3eL+DKM4+VyMrVnhPc3vRczVlCq3uhuFOdRvDHTVXuzwk1ZKUrqDQHQ9w==", + "license": "MIT", "dependencies": { "@types/eslint": "^7.29.0 || ^8.4.1", "jest-worker": "^28.0.2", @@ -11448,9 +10418,8 @@ } }, "node_modules/eslint-webpack-plugin/node_modules/ajv": { - "version": "8.11.0", - "resolved": "https://registry.npmjs.org/ajv/-/ajv-8.11.0.tgz", - "integrity": "sha512-wGgprdCvMalC0BztXvitD2hC04YffAvtsUn93JbGXYLAtCUO4xd17mCCZQxUOItiBwZvJScWo8NIvQMQ71rdpg==", + "version": "8.12.0", + "license": "MIT", "dependencies": { "fast-deep-equal": "^3.1.1", "json-schema-traverse": "^1.0.0", @@ -11464,8 +10433,7 @@ }, "node_modules/eslint-webpack-plugin/node_modules/ajv-keywords": { "version": "5.1.0", - "resolved": "https://registry.npmjs.org/ajv-keywords/-/ajv-keywords-5.1.0.tgz", - "integrity": "sha512-YCS/JNFAUyr5vAuhk1DWm1CBxRHW9LbJ2ozWeemrIqpbsqKjHVxYPyi5GC0rjZIT5JxJ3virVTS8wk4i/Z+krw==", + "license": "MIT", "dependencies": { "fast-deep-equal": "^3.1.3" }, @@ -11473,18 +10441,9 @@ "ajv": "^8.8.2" } }, - "node_modules/eslint-webpack-plugin/node_modules/has-flag": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz", - "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==", - "engines": { - "node": ">=8" - } - }, "node_modules/eslint-webpack-plugin/node_modules/jest-worker": { - "version": "28.1.1", - "resolved": "https://registry.npmjs.org/jest-worker/-/jest-worker-28.1.1.tgz", - "integrity": "sha512-Au7slXB08C6h+xbJPp7VIb6U0XX5Kc9uel/WFc6/rcTzGiaVCBRngBExSYuXSLFPULPSYU3cJ3ybS988lNFQhQ==", + "version": "28.1.3", + "license": "MIT", "dependencies": { "@types/node": "*", "merge-stream": "^2.0.0", @@ -11496,18 +10455,16 @@ }, "node_modules/eslint-webpack-plugin/node_modules/json-schema-traverse": { "version": "1.0.0", - "resolved": "https://registry.npmjs.org/json-schema-traverse/-/json-schema-traverse-1.0.0.tgz", - "integrity": "sha512-NM8/P9n3XjXhIZn1lLhkFaACTOURQXjWhV4BA/RnOv8xvgqtqpAX9IO4mRQxSx1Rlo4tqzeqb0sOlruaOy3dug==" + "license": "MIT" }, "node_modules/eslint-webpack-plugin/node_modules/schema-utils": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/schema-utils/-/schema-utils-4.0.0.tgz", - "integrity": "sha512-1edyXKgh6XnJsJSQ8mKWXnN/BVaIbFMLpouRUrXgVq7WYne5kw3MW7UPhO44uRXQSIpTSXoJbmrR2X0w9kUTyg==", + "version": "4.2.0", + "license": "MIT", "dependencies": { "@types/json-schema": "^7.0.9", - "ajv": "^8.8.0", + "ajv": "^8.9.0", "ajv-formats": "^2.1.1", - "ajv-keywords": "^5.0.0" + "ajv-keywords": "^5.1.0" }, "engines": { "node": ">= 12.13.0" @@ -11519,8 +10476,7 @@ }, "node_modules/eslint-webpack-plugin/node_modules/supports-color": { "version": "8.1.1", - "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-8.1.1.tgz", - "integrity": "sha512-MpUEN2OodtUzxvKQl72cUF7RQ5EiHsGvSsVG0ia9c5RbWGL2CI4C7EpPS8UTBIplnlzZiNuV56w+FuNxy3ty2Q==", + "license": "MIT", "dependencies": { "has-flag": "^4.0.0" }, @@ -11531,71 +10487,13 @@ "url": "https://github.com/chalk/supports-color?sponsor=1" } }, - "node_modules/eslint/node_modules/ansi-styles": { - "version": "4.3.0", - "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", - "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", - "dependencies": { - "color-convert": "^2.0.1" - }, - "engines": { - "node": ">=8" - }, - "funding": { - "url": "https://github.com/chalk/ansi-styles?sponsor=1" - } - }, "node_modules/eslint/node_modules/argparse": { "version": "2.0.1", - "resolved": "https://registry.npmjs.org/argparse/-/argparse-2.0.1.tgz", - "integrity": "sha512-8+9WqebbFzpX9OR+Wa6O29asIogeRMzcGtAINdpMHHyAg10f05aSFVBbcEqGf/PXw1EjAZ+q2/bEBg3DvurK3Q==" - }, - "node_modules/eslint/node_modules/chalk": { - "version": "4.1.2", - "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz", - "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==", - "dependencies": { - "ansi-styles": "^4.1.0", - "supports-color": "^7.1.0" - }, - "engines": { - "node": ">=10" - }, - "funding": { - "url": "https://github.com/chalk/chalk?sponsor=1" - } - }, - "node_modules/eslint/node_modules/color-convert": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz", - "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==", - "dependencies": { - "color-name": "~1.1.4" - }, - "engines": { - "node": ">=7.0.0" - } - }, - "node_modules/eslint/node_modules/color-name": { - "version": "1.1.4", - "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz", - "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==" - }, - "node_modules/eslint/node_modules/escape-string-regexp": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/escape-string-regexp/-/escape-string-regexp-4.0.0.tgz", - "integrity": "sha512-TtpcNJ3XAzx3Gq8sWRzJaVajRs0uVxA2YAkdb1jm2YkPz4G6egUFAyA3n5vtEIZefPk5Wa4UXbKuS5fKkJWdgA==", - "engines": { - "node": ">=10" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } + "license": "Python-2.0" }, "node_modules/eslint/node_modules/globals": { - "version": "13.15.0", - "resolved": "https://registry.npmjs.org/globals/-/globals-13.15.0.tgz", - "integrity": "sha512-bpzcOlgDhMG070Av0Vy5Owklpv1I6+j96GhUI7Rh7IzDCKLzboflLrrfqMu8NquDbiR4EOQk7XzJwqVJxicxog==", + "version": "13.21.0", + "license": "MIT", "dependencies": { "type-fest": "^0.20.2" }, @@ -11606,18 +10504,9 @@ "url": "https://github.com/sponsors/sindresorhus" } }, - "node_modules/eslint/node_modules/has-flag": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz", - "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==", - "engines": { - "node": ">=8" - } - }, "node_modules/eslint/node_modules/js-yaml": { "version": "4.1.0", - "resolved": "https://registry.npmjs.org/js-yaml/-/js-yaml-4.1.0.tgz", - "integrity": "sha512-wpxZs9NoxZaJESJGIZTyDEaYpl0FKSA+FB9aJiyemKhMwkxQg63h4T1KJgUGHpTqPDNRcmmYLugrRjJlBtWvRA==", + "license": "MIT", "dependencies": { "argparse": "^2.0.1" }, @@ -11625,21 +10514,9 @@ "js-yaml": "bin/js-yaml.js" } }, - "node_modules/eslint/node_modules/supports-color": { - "version": "7.2.0", - "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", - "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", - "dependencies": { - "has-flag": "^4.0.0" - }, - "engines": { - "node": ">=8" - } - }, "node_modules/eslint/node_modules/type-fest": { "version": "0.20.2", - "resolved": "https://registry.npmjs.org/type-fest/-/type-fest-0.20.2.tgz", - "integrity": "sha512-Ne+eE4r0/iWnpAxD852z3A+N0Bt5RN//NjJwRd2VFHEmrywxf5vsZlh4R6lixl6B+wz/8d+maTSAkN1FIkI3LQ==", + "license": "(MIT OR CC0-1.0)", "engines": { "node": ">=10" }, @@ -11649,29 +10526,29 @@ }, "node_modules/esm": { "version": "3.2.25", - "resolved": "https://registry.npmjs.org/esm/-/esm-3.2.25.tgz", - "integrity": "sha512-U1suiZ2oDVWv4zPO56S0NcR5QriEahGtdN2OR6FiOG4WJvcjBVFB0qI4+eKoWFH483PKGuLuu6V8Z4T5g63UVA==", + "license": "MIT", "engines": { "node": ">=6" } }, "node_modules/espree": { - "version": "9.3.2", - "resolved": "https://registry.npmjs.org/espree/-/espree-9.3.2.tgz", - "integrity": "sha512-D211tC7ZwouTIuY5x9XnS0E9sWNChB7IYKX/Xp5eQj3nFXhqmiUDB9q27y76oFl8jTg3pXcQx/bpxMfs3CIZbA==", + "version": "9.6.1", + "license": "BSD-2-Clause", "dependencies": { - "acorn": "^8.7.1", + "acorn": "^8.9.0", "acorn-jsx": "^5.3.2", - "eslint-visitor-keys": "^3.3.0" + "eslint-visitor-keys": "^3.4.1" }, "engines": { "node": "^12.22.0 || ^14.17.0 || >=16.0.0" + }, + "funding": { + "url": "https://opencollective.com/eslint" } }, "node_modules/esprima": { "version": "4.0.1", - "resolved": "https://registry.npmjs.org/esprima/-/esprima-4.0.1.tgz", - "integrity": "sha512-eGuFFw7Upda+g4p+QHvnW0RyTX/SVeJBDM/gCtMARO0cLuT2HcEKnTPvhjV6aGeqrCB/sbNop0Kszm0jsaWU4A==", + "license": "BSD-2-Clause", "bin": { "esparse": "bin/esparse.js", "esvalidate": "bin/esvalidate.js" @@ -11681,9 +10558,8 @@ } }, "node_modules/esquery": { - "version": "1.4.0", - "resolved": "https://registry.npmjs.org/esquery/-/esquery-1.4.0.tgz", - "integrity": "sha512-cCDispWt5vHHtwMY2YrAQ4ibFkAL8RbH5YGBnZBc90MolvvfkkQcJro/aZiAQUlQ3qgrYS6D6v8Gc5G5CQsc9w==", + "version": "1.5.0", + "license": "BSD-3-Clause", "dependencies": { "estraverse": "^5.1.0" }, @@ -11693,8 +10569,7 @@ }, "node_modules/esrecurse": { "version": "4.3.0", - "resolved": "https://registry.npmjs.org/esrecurse/-/esrecurse-4.3.0.tgz", - "integrity": "sha512-KmfKL3b6G+RXvP8N1vr3Tq1kL/oCFgn2NYXEtqP8/L3pKapUA4G8cFVaoF3SU323CD4XypR/ffioHmkti6/Tag==", + "license": "BSD-2-Clause", "dependencies": { "estraverse": "^5.2.0" }, @@ -11704,37 +10579,32 @@ }, "node_modules/estraverse": { "version": "5.3.0", - "resolved": "https://registry.npmjs.org/estraverse/-/estraverse-5.3.0.tgz", - "integrity": "sha512-MMdARuVEQziNTeJD8DgMqmhwR11BRQ/cBP+pLtYdSTnf3MIO8fFeiINEbX36ZdNlfU/7A9f3gUw49B3oQsvwBA==", + "license": "BSD-2-Clause", "engines": { "node": ">=4.0" } }, "node_modules/estree-walker": { "version": "1.0.1", - "resolved": "https://registry.npmjs.org/estree-walker/-/estree-walker-1.0.1.tgz", - "integrity": "sha512-1fMXF3YP4pZZVozF8j/ZLfvnR8NSIljt56UhbZ5PeeDmmGHpgpdwQt7ITlGvYaQukCvuBRMLEiKiYC+oeIg4cg==" + "license": "MIT" }, "node_modules/esutils": { "version": "2.0.3", - "resolved": "https://registry.npmjs.org/esutils/-/esutils-2.0.3.tgz", - "integrity": "sha512-kVscqXk4OCp68SZ0dkgEKVi6/8ij300KBWTJq32P/dYeWTSwK41WyTxalN1eRmA5Z9UU/LX9D7FWSmV9SAYx6g==", + "license": "BSD-2-Clause", "engines": { "node": ">=0.10.0" } }, "node_modules/etag": { "version": "1.8.1", - "resolved": "https://registry.npmjs.org/etag/-/etag-1.8.1.tgz", - "integrity": "sha512-aIL5Fx7mawVa300al2BnEE4iNvo1qETxLrPI/o05L7z6go7fCw1J6EQmbK4FmJ2AS7kgVF/KEZWufBfdClMcPg==", + "license": "MIT", "engines": { "node": ">= 0.6" } }, "node_modules/eth-ens-namehash": { "version": "2.0.8", - "resolved": "https://registry.npmjs.org/eth-ens-namehash/-/eth-ens-namehash-2.0.8.tgz", - "integrity": "sha512-VWEI1+KJfz4Km//dadyvBBoBeSQ0MHTXPvr8UIXiLW6IanxvAV+DmlZAijZwAyggqGUfwQBeHf7tc9wzc1piSw==", + "license": "ISC", "dependencies": { "idna-uts46-hx": "^2.3.1", "js-sha3": "^0.5.7" @@ -11742,13 +10612,11 @@ }, "node_modules/eth-ens-namehash/node_modules/js-sha3": { "version": "0.5.7", - "resolved": "https://registry.npmjs.org/js-sha3/-/js-sha3-0.5.7.tgz", - "integrity": "sha512-GII20kjaPX0zJ8wzkTbNDYMY7msuZcTWk8S5UOh6806Jq/wz1J8/bnr8uGU0DAUmYDjj2Mr4X1cW8v/GLYnR+g==" + "license": "MIT" }, "node_modules/eth-lib": { "version": "0.1.29", - "resolved": "https://registry.npmjs.org/eth-lib/-/eth-lib-0.1.29.tgz", - "integrity": "sha512-bfttrr3/7gG4E02HoWTDUcDDslN003OlOoBxk9virpAZQ1ja/jDgwkWB8QfJF7ojuEowrqy+lzp9VcJG7/k5bQ==", + "license": "MIT", "dependencies": { "bn.js": "^4.11.6", "elliptic": "^6.4.0", @@ -11760,13 +10628,15 @@ }, "node_modules/eth-lib/node_modules/bn.js": { "version": "4.12.0", - "resolved": "https://registry.npmjs.org/bn.js/-/bn.js-4.12.0.tgz", - "integrity": "sha512-c98Bf3tPniI+scsdk237ku1Dc3ujXQTSgyiPUDEOe7tRkhrqridvh8klBv0HCEso1OLOYcHuCv/cS6DNxKH+ZA==" + "license": "MIT" + }, + "node_modules/eth-lib/node_modules/safe-buffer": { + "version": "5.1.2", + "license": "MIT" }, "node_modules/eth-lib/node_modules/ws": { "version": "3.3.3", - "resolved": "https://registry.npmjs.org/ws/-/ws-3.3.3.tgz", - "integrity": "sha512-nnWLa/NwZSt4KQJu51MYlCcSQ5g7INpOrOMt4XV8j4dqTXdmlUmSHQ8/oLC069ckre0fRsgfvsKwbTdtKLCDkA==", + "license": "MIT", "dependencies": { "async-limiter": "~1.0.0", "safe-buffer": "~5.1.0", @@ -11775,27 +10645,34 @@ }, "node_modules/ethereum-bloom-filters": { "version": "1.0.10", - "resolved": "https://registry.npmjs.org/ethereum-bloom-filters/-/ethereum-bloom-filters-1.0.10.tgz", - "integrity": "sha512-rxJ5OFN3RwjQxDcFP2Z5+Q9ho4eIdEmSc2ht0fCu8Se9nbXjZ7/031uXoUYJ87KHCOdVeiUuwSnoS7hmYAGVHA==", + "license": "MIT", "dependencies": { "js-sha3": "^0.8.0" } }, "node_modules/ethereum-cryptography": { - "version": "1.1.0", - "resolved": "https://registry.npmjs.org/ethereum-cryptography/-/ethereum-cryptography-1.1.0.tgz", - "integrity": "sha512-wyNVTBR4wIR2yoXdMv4Qt44mTVBpPgSW/DQCTmNO6nQluwpyrAIvmL4mxPbziFuc6VWJQa3rwUxn0nUFU03nyQ==", + "version": "1.2.0", + "license": "MIT", "dependencies": { - "@noble/hashes": "1.1.1", - "@noble/secp256k1": "1.6.0", - "@scure/bip32": "1.1.0", - "@scure/bip39": "1.1.0" + "@noble/hashes": "1.2.0", + "@noble/secp256k1": "1.7.1", + "@scure/bip32": "1.1.5", + "@scure/bip39": "1.1.1" } }, + "node_modules/ethereum-cryptography/node_modules/@noble/hashes": { + "version": "1.2.0", + "funding": [ + { + "type": "individual", + "url": "https://paulmillr.com/funding/" + } + ], + "license": "MIT" + }, "node_modules/ethereumjs-abi": { "version": "0.6.8", - "resolved": "https://registry.npmjs.org/ethereumjs-abi/-/ethereumjs-abi-0.6.8.tgz", - "integrity": "sha512-Tx0r/iXI6r+lRsdvkFDlut0N08jWMnKRZ6Gkq+Nmw75lZe4e6o3EkSnkaBP5NF6+m5PTGAr9JP43N3LyeoglsA==", + "license": "MIT", "peer": true, "dependencies": { "bn.js": "^4.11.8", @@ -11804,14 +10681,12 @@ }, "node_modules/ethereumjs-abi/node_modules/bn.js": { "version": "4.12.0", - "resolved": "https://registry.npmjs.org/bn.js/-/bn.js-4.12.0.tgz", - "integrity": "sha512-c98Bf3tPniI+scsdk237ku1Dc3ujXQTSgyiPUDEOe7tRkhrqridvh8klBv0HCEso1OLOYcHuCv/cS6DNxKH+ZA==", + "license": "MIT", "peer": true }, "node_modules/ethereumjs-util": { "version": "6.2.1", - "resolved": "https://registry.npmjs.org/ethereumjs-util/-/ethereumjs-util-6.2.1.tgz", - "integrity": "sha512-W2Ktez4L01Vexijrm5EB6w7dg4n/TgpoYU4avuT5T3Vmnw/eCRtiBrJfQYS/DCSvDIOLn2k57GcHdeBcgVxAqw==", + "license": "MPL-2.0", "peer": true, "dependencies": { "@types/bn.js": "^4.11.3", @@ -11825,8 +10700,7 @@ }, "node_modules/ethereumjs-util/node_modules/@types/bn.js": { "version": "4.11.6", - "resolved": "https://registry.npmjs.org/@types/bn.js/-/bn.js-4.11.6.tgz", - "integrity": "sha512-pqr857jrp2kPuO9uRjZ3PwnJTjoQy+fcdxvBTvHm6dkmEL9q+hDD/2j/0ELOBPtPnS8LjCX0gI9nbl8lVkadpg==", + "license": "MIT", "peer": true, "dependencies": { "@types/node": "*" @@ -11834,14 +10708,12 @@ }, "node_modules/ethereumjs-util/node_modules/bn.js": { "version": "4.12.0", - "resolved": "https://registry.npmjs.org/bn.js/-/bn.js-4.12.0.tgz", - "integrity": "sha512-c98Bf3tPniI+scsdk237ku1Dc3ujXQTSgyiPUDEOe7tRkhrqridvh8klBv0HCEso1OLOYcHuCv/cS6DNxKH+ZA==", + "license": "MIT", "peer": true }, "node_modules/ethereumjs-util/node_modules/ethereum-cryptography": { "version": "0.1.3", - "resolved": "https://registry.npmjs.org/ethereum-cryptography/-/ethereum-cryptography-0.1.3.tgz", - "integrity": "sha512-w8/4x1SGGzc+tO97TASLja6SLd3fRIK2tLVcV2Gx4IB21hE19atll5Cq9o3d0ZmAYC/8aw0ipieTSiekAea4SQ==", + "license": "MIT", "peer": true, "dependencies": { "@types/pbkdf2": "^3.0.0", @@ -11863,8 +10735,6 @@ }, "node_modules/ethers": { "version": "5.7.2", - "resolved": "https://registry.npmjs.org/ethers/-/ethers-5.7.2.tgz", - "integrity": "sha512-wswUsmWo1aOK8rR7DIKiWSw9DbLWe6x98Jrn8wcTflTVvaXhAMaB5zGAXy0GYQEQp9iO1iSHWVyARQm11zUtyg==", "funding": [ { "type": "individual", @@ -11875,6 +10745,7 @@ "url": "https://www.buymeacoffee.com/ricmoo" } ], + "license": "MIT", "dependencies": { "@ethersproject/abi": "5.7.0", "@ethersproject/abstract-provider": "5.7.0", @@ -11910,8 +10781,7 @@ }, "node_modules/ethers-multisend": { "version": "2.4.0", - "resolved": "https://registry.npmjs.org/ethers-multisend/-/ethers-multisend-2.4.0.tgz", - "integrity": "sha512-/zL3/1TSS5ZFjyMcaPrk60fVmZUTYishIS/HtL3uUH52OcCswXNv9sTEa/+61nnO4x+VLxr2syM9pfwjhskYQA==", + "license": "MIT", "dependencies": { "@ethersproject/abi": "^5.0.0", "@ethersproject/abstract-provider": "^5.5.1", @@ -11925,8 +10795,7 @@ }, "node_modules/ethjs-unit": { "version": "0.1.6", - "resolved": "https://registry.npmjs.org/ethjs-unit/-/ethjs-unit-0.1.6.tgz", - "integrity": "sha512-/Sn9Y0oKl0uqQuvgFk/zQgR7aw1g36qX/jzSQ5lSwlO0GigPymk4eGQfeNTD03w1dPOqfz8V77Cy43jH56pagw==", + "license": "MIT", "dependencies": { "bn.js": "4.11.6", "number-to-bn": "1.7.0" @@ -11938,13 +10807,11 @@ }, "node_modules/ethjs-unit/node_modules/bn.js": { "version": "4.11.6", - "resolved": "https://registry.npmjs.org/bn.js/-/bn.js-4.11.6.tgz", - "integrity": "sha512-XWwnNNFCuuSQ0m3r3C4LE3EiORltHd9M05pq6FOlVeiophzRbMo50Sbz1ehl8K3Z+jw9+vmgnXefY1hz8X+2wA==" + "license": "MIT" }, "node_modules/ethjs-util": { "version": "0.1.6", - "resolved": "https://registry.npmjs.org/ethjs-util/-/ethjs-util-0.1.6.tgz", - "integrity": "sha512-CUnVOQq7gSpDHZVVrQW8ExxUETWrnrvXYvYz55wOU8Uj4VCgw56XC2B/fVqQN+f7gmrnRHSLVnFAwsCuNwji8w==", + "license": "MIT", "peer": true, "dependencies": { "is-hex-prefixed": "1.0.0", @@ -11955,32 +10822,20 @@ "npm": ">=3" } }, - "node_modules/event-target-shim": { - "version": "5.0.1", - "resolved": "https://registry.npmjs.org/event-target-shim/-/event-target-shim-5.0.1.tgz", - "integrity": "sha512-i/2XbnSz/uxRCU6+NdVJgKWDTM427+MqYbkQzD321DuCQJUqOuJKIA0IM2+W2xtYHdKOmZ4dR6fExsd4SXL+WQ==", - "peer": true, - "engines": { - "node": ">=6" - } - }, "node_modules/eventemitter3": { "version": "4.0.7", - "resolved": "https://registry.npmjs.org/eventemitter3/-/eventemitter3-4.0.7.tgz", - "integrity": "sha512-8guHBZCwKnFhYdHr2ysuRWErTwhoN2X8XELRlrRwpmfeY2jjuUN4taQMsULKUVo1K4DvZl+0pgfyoysHxvmvEw==" + "license": "MIT" }, "node_modules/events": { "version": "3.3.0", - "resolved": "https://registry.npmjs.org/events/-/events-3.3.0.tgz", - "integrity": "sha512-mQw+2fkQbALzQ7V0MY0IqdnXNOeTtP4r0lN9z7AAawCXgqea7bDii20AYrIBrFd/Hx0M2Ocz6S111CaFkUcb0Q==", + "license": "MIT", "engines": { "node": ">=0.8.x" } }, "node_modules/evp_bytestokey": { "version": "1.0.3", - "resolved": "https://registry.npmjs.org/evp_bytestokey/-/evp_bytestokey-1.0.3.tgz", - "integrity": "sha512-/f2Go4TognH/KvCISP7OUsHn85hT9nUkxxA9BEWxFn+Oj9o8ZNLm/40hdlgSLyuOimsrTKLUMEorQexp/aPQeA==", + "license": "MIT", "dependencies": { "md5.js": "^1.3.4", "safe-buffer": "^5.1.1" @@ -11988,8 +10843,7 @@ }, "node_modules/execa": { "version": "5.1.1", - "resolved": "https://registry.npmjs.org/execa/-/execa-5.1.1.tgz", - "integrity": "sha512-8uSpZZocAZRBAPIEINJj3Lo9HyGitllczc27Eh5YYojjMFMn8yHMDMaUHE2Jqfq05D/wucwI4JGURyXt1vchyg==", + "license": "MIT", "dependencies": { "cross-spawn": "^7.0.3", "get-stream": "^6.0.0", @@ -12009,22 +10863,17 @@ } }, "node_modules/exif-parser": { - "version": "0.1.12", - "resolved": "https://registry.npmjs.org/exif-parser/-/exif-parser-0.1.12.tgz", - "integrity": "sha512-c2bQfLNbMzLPmzQuOr8fy0csy84WmwnER81W88DzTp9CYNPJ6yzOj2EZAh9pywYpqHnshVLHQJ8WzldAyfY+Iw==" + "version": "0.1.12" }, "node_modules/exit": { "version": "0.1.2", - "resolved": "https://registry.npmjs.org/exit/-/exit-0.1.2.tgz", - "integrity": "sha512-Zk/eNKV2zbjpKzrsQ+n1G6poVbErQxJ0LBOJXaKZ1EViLzH+hrLu9cdXI4zw9dBQJslwBEpbQ2P1oS7nDxs6jQ==", "engines": { "node": ">= 0.8.0" } }, "node_modules/expect": { "version": "27.5.1", - "resolved": "https://registry.npmjs.org/expect/-/expect-27.5.1.tgz", - "integrity": "sha512-E1q5hSUG2AmYQwQJ041nvgpkODHQvB+RKlB4IYdru6uJsyFTRyZAP463M+1lINorwbqAmUggi6+WwkD8lCS/Dw==", + "license": "MIT", "dependencies": { "@jest/types": "^27.5.1", "jest-get-type": "^27.5.1", @@ -12037,17 +10886,15 @@ }, "node_modules/expr-eval": { "version": "2.0.2", - "resolved": "https://registry.npmjs.org/expr-eval/-/expr-eval-2.0.2.tgz", - "integrity": "sha512-4EMSHGOPSwAfBiibw3ndnP0AvjDWLsMvGOvWEZ2F96IGk0bIVdjQisOHxReSkE13mHcfbuCiXw+G4y0zv6N8Eg==" + "license": "MIT" }, "node_modules/express": { - "version": "4.18.1", - "resolved": "https://registry.npmjs.org/express/-/express-4.18.1.tgz", - "integrity": "sha512-zZBcOX9TfehHQhtupq57OF8lFZ3UZi08Y97dwFCkD8p9d/d2Y3M+ykKcwaMDEL+4qyUolgBDX6AblpR3fL212Q==", + "version": "4.18.2", + "license": "MIT", "dependencies": { "accepts": "~1.3.8", "array-flatten": "1.1.1", - "body-parser": "1.20.0", + "body-parser": "1.20.1", "content-disposition": "0.5.4", "content-type": "~1.0.4", "cookie": "0.5.0", @@ -12066,7 +10913,7 @@ "parseurl": "~1.3.3", "path-to-regexp": "0.1.7", "proxy-addr": "~2.0.7", - "qs": "6.10.3", + "qs": "6.11.0", "range-parser": "~1.2.1", "safe-buffer": "5.2.1", "send": "0.18.0", @@ -12083,87 +10930,48 @@ }, "node_modules/express/node_modules/array-flatten": { "version": "1.1.1", - "resolved": "https://registry.npmjs.org/array-flatten/-/array-flatten-1.1.1.tgz", - "integrity": "sha512-PCVAQswWemu6UdxsDFFX/+gVeYqKAod3D3UVm91jHwynguOwAvYPhx8nNlM++NqRcK6CxxpUafjmhIdKiHibqg==" + "license": "MIT" }, "node_modules/express/node_modules/debug": { "version": "2.6.9", - "resolved": "https://registry.npmjs.org/debug/-/debug-2.6.9.tgz", - "integrity": "sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA==", + "license": "MIT", "dependencies": { "ms": "2.0.0" } }, "node_modules/express/node_modules/ms": { "version": "2.0.0", - "resolved": "https://registry.npmjs.org/ms/-/ms-2.0.0.tgz", - "integrity": "sha512-Tpp60P6IUJDTuOq/5Z8cdskzJujfwqfOTkrwIwj7IRISpnkJnT6SyJ4PCPnGMoFjC9ddhal5KVIYtAt97ix05A==" - }, - "node_modules/express/node_modules/safe-buffer": { - "version": "5.2.1", - "resolved": "https://registry.npmjs.org/safe-buffer/-/safe-buffer-5.2.1.tgz", - "integrity": "sha512-rp3So07KcdmmKbGvgaNxQSJr7bGVSVk5S9Eq1F+ppbRo70+YeaDxkw5Dd8NPN+GD6bjnYm2VuPuCXmpuYvmCXQ==", - "funding": [ - { - "type": "github", - "url": "https://github.com/sponsors/feross" - }, - { - "type": "patreon", - "url": "https://www.patreon.com/feross" - }, - { - "type": "consulting", - "url": "https://feross.org/support" - } - ] + "license": "MIT" }, "node_modules/ext": { "version": "1.7.0", - "resolved": "https://registry.npmjs.org/ext/-/ext-1.7.0.tgz", - "integrity": "sha512-6hxeJYaL110a9b5TEJSj0gojyHQAmA2ch5Os+ySCiA1QGdS697XWY1pzsrSjqA9LDEEgdB/KypIlR59RcLuHYw==", + "license": "ISC", "dependencies": { "type": "^2.7.2" } }, "node_modules/ext/node_modules/type": { "version": "2.7.2", - "resolved": "https://registry.npmjs.org/type/-/type-2.7.2.tgz", - "integrity": "sha512-dzlvlNlt6AXU7EBSfpAscydQ7gXB+pPGsPnfJnZpiNJBDj7IaJzQlBZYGdEi4R9HmPdBv2XmWJ6YUtoTa7lmCw==" + "license": "ISC" }, "node_modules/extend": { "version": "3.0.2", - "resolved": "https://registry.npmjs.org/extend/-/extend-3.0.2.tgz", - "integrity": "sha512-fjquC59cD7CyW6urNXK0FBufkZcoiGG80wTuPujX590cB5Ttln20E2UB4S/WARVqhXffZl2LNgS+gQdPIIim/g==" - }, - "node_modules/extract-files": { - "version": "9.0.0", - "resolved": "https://registry.npmjs.org/extract-files/-/extract-files-9.0.0.tgz", - "integrity": "sha512-CvdFfHkC95B4bBBk36hcEmvdR2awOdhhVUYH6S/zrVj3477zven/fJMYg7121h4T1xHZC+tetUpubpAhxwI7hQ==", - "engines": { - "node": "^10.17.0 || ^12.0.0 || >= 13.7.0" - }, - "funding": { - "url": "https://github.com/sponsors/jaydenseric" - } + "license": "MIT" }, "node_modules/extsprintf": { "version": "1.3.0", - "resolved": "https://registry.npmjs.org/extsprintf/-/extsprintf-1.3.0.tgz", - "integrity": "sha512-11Ndz7Nv+mvAC1j0ktTa7fAb0vLyGGX+rMHNBYQviQDGU0Hw7lhctJANqbPhu9nV9/izT/IntTgZ7Im/9LJs9g==", "engines": [ "node >=0.6.0" - ] + ], + "license": "MIT" }, "node_modules/fast-deep-equal": { "version": "3.1.3", - "resolved": "https://registry.npmjs.org/fast-deep-equal/-/fast-deep-equal-3.1.3.tgz", - "integrity": "sha512-f3qQ9oQy9j2AhBe/H9VC91wLmKBCCU/gDOnKNAYG5hswO7BLKj09Hc5HYNz9cGI++xlpDCIgDaitVs03ATR84Q==" + "license": "MIT" }, "node_modules/fast-glob": { - "version": "3.2.11", - "resolved": "https://registry.npmjs.org/fast-glob/-/fast-glob-3.2.11.tgz", - "integrity": "sha512-xrO3+1bxSo3ZVHAnqzyuewYT6aMFHRAd4Kcs92MAonjwQZLsK9d0SF1IyQ3k5PoirxTW0Oe/RqFgMQ6TcNE5Ew==", + "version": "3.3.1", + "license": "MIT", "dependencies": { "@nodelib/fs.stat": "^2.0.2", "@nodelib/fs.walk": "^1.2.3", @@ -12177,8 +10985,7 @@ }, "node_modules/fast-glob/node_modules/glob-parent": { "version": "5.1.2", - "resolved": "https://registry.npmjs.org/glob-parent/-/glob-parent-5.1.2.tgz", - "integrity": "sha512-AOIgSQCepiJYwP3ARnGx+5VnTu2HBYdzbGP45eLw1vr3zB3vZLeyed1sC9hnbcOc9/SrMyM5RPQrkGz4aS9Zow==", + "license": "ISC", "dependencies": { "is-glob": "^4.0.1" }, @@ -12188,26 +10995,22 @@ }, "node_modules/fast-json-stable-stringify": { "version": "2.1.0", - "resolved": "https://registry.npmjs.org/fast-json-stable-stringify/-/fast-json-stable-stringify-2.1.0.tgz", - "integrity": "sha512-lhd/wF+Lk98HZoTCtlVraHtfh5XYijIjalXck7saUtuanSDyLMxnHhSXEDJqHxD7msR8D0uCmqlkwjCV8xvwHw==" + "license": "MIT" }, "node_modules/fast-levenshtein": { "version": "2.0.6", - "resolved": "https://registry.npmjs.org/fast-levenshtein/-/fast-levenshtein-2.0.6.tgz", - "integrity": "sha512-DCXu6Ifhqcks7TZKY3Hxp3y6qphY5SJZmrWMDrKcERSOXWQdMhU9Ig/PYrzyw/ul9jOIyh0N4M0tbC5hodg8dw==" + "license": "MIT" }, "node_modules/fastq": { - "version": "1.13.0", - "resolved": "https://registry.npmjs.org/fastq/-/fastq-1.13.0.tgz", - "integrity": "sha512-YpkpUnK8od0o1hmeSc7UUs/eB/vIPWJYjKck2QKIzAf71Vm1AAQ3EbuZB3g2JIy+pg+ERD0vqI79KyZiB2e2Nw==", + "version": "1.15.0", + "license": "ISC", "dependencies": { "reusify": "^1.0.4" } }, "node_modules/faye-websocket": { "version": "0.11.4", - "resolved": "https://registry.npmjs.org/faye-websocket/-/faye-websocket-0.11.4.tgz", - "integrity": "sha512-CzbClwlXAuiRQAlUyfqPgvPoNKTckTPGfwZV4ZdAhVcP2lh9KUxJg2b5GkE7XbjKQ3YJnQ9z6D9ntLAlB+tP8g==", + "license": "Apache-2.0", "dependencies": { "websocket-driver": ">=0.5.1" }, @@ -12216,17 +11019,15 @@ } }, "node_modules/fb-watchman": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/fb-watchman/-/fb-watchman-2.0.1.tgz", - "integrity": "sha512-DkPJKQeY6kKwmuMretBhr7G6Vodr7bFwDYTXIkfG1gjvNpaxBTQV3PbXg6bR1c1UP4jPOX0jHUbbHANL9vRjVg==", + "version": "2.0.2", + "license": "Apache-2.0", "dependencies": { "bser": "2.1.1" } }, "node_modules/file-entry-cache": { "version": "6.0.1", - "resolved": "https://registry.npmjs.org/file-entry-cache/-/file-entry-cache-6.0.1.tgz", - "integrity": "sha512-7Gps/XWymbLk2QLYK4NzpMOrYjMhdIxXuIvy2QBsLE6ljuodKvdkWs/cpyJJ3CVIVpH0Oi1Hvg1ovbMzLdFBBg==", + "license": "MIT", "dependencies": { "flat-cache": "^3.0.4" }, @@ -12236,8 +11037,7 @@ }, "node_modules/file-loader": { "version": "6.2.0", - "resolved": "https://registry.npmjs.org/file-loader/-/file-loader-6.2.0.tgz", - "integrity": "sha512-qo3glqyTa61Ytg4u73GultjHGjdRyig3tG6lPtyX/jOEJvHif9uB0/OCI2Kif6ctF3caQTW2G5gym21oAsI4pw==", + "license": "MIT", "dependencies": { "loader-utils": "^2.0.0", "schema-utils": "^3.0.0" @@ -12255,8 +11055,7 @@ }, "node_modules/file-type": { "version": "16.5.4", - "resolved": "https://registry.npmjs.org/file-type/-/file-type-16.5.4.tgz", - "integrity": "sha512-/yFHK0aGjFEgDJjEKP0pWCplsPFPhwyfwevf/pVxiN0tmE4L9LmwWxWukdJSHdoCli4VgQLehjJtwQBnqmsKcw==", + "license": "MIT", "dependencies": { "readable-web-to-node-stream": "^3.0.0", "strtok3": "^6.2.4", @@ -12271,24 +11070,21 @@ }, "node_modules/filelist": { "version": "1.0.4", - "resolved": "https://registry.npmjs.org/filelist/-/filelist-1.0.4.tgz", - "integrity": "sha512-w1cEuf3S+DrLCQL7ET6kz+gmlJdbq9J7yXCSjK/OZCPA+qEN1WyF4ZAf0YYJa4/shHJra2t/d/r8SV4Ji+x+8Q==", + "license": "Apache-2.0", "dependencies": { "minimatch": "^5.0.1" } }, "node_modules/filelist/node_modules/brace-expansion": { "version": "2.0.1", - "resolved": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-2.0.1.tgz", - "integrity": "sha512-XnAIvQ8eM+kC6aULx6wuQiwVsnzsi9d3WxzV3FpWTGA19F621kwdbsAcFKXgKUHZWsy+mY6iL1sHTxWEFCytDA==", + "license": "MIT", "dependencies": { "balanced-match": "^1.0.0" } }, "node_modules/filelist/node_modules/minimatch": { - "version": "5.1.0", - "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-5.1.0.tgz", - "integrity": "sha512-9TPBGGak4nHfGZsPBohm9AWg6NoT7QTCehS3BIJABslyZbzxfV78QM2Y6+i741OPZIafFAaiiEMh5OyIrJPgtg==", + "version": "5.1.6", + "license": "ISC", "dependencies": { "brace-expansion": "^2.0.1" }, @@ -12298,16 +11094,14 @@ }, "node_modules/filesize": { "version": "8.0.7", - "resolved": "https://registry.npmjs.org/filesize/-/filesize-8.0.7.tgz", - "integrity": "sha512-pjmC+bkIF8XI7fWaH8KxHcZL3DPybs1roSKP4rKDvy20tAWwIObE4+JIseG2byfGKhud5ZnM4YSGKBz7Sh0ndQ==", + "license": "BSD-3-Clause", "engines": { "node": ">= 0.4.0" } }, "node_modules/fill-range": { "version": "7.0.1", - "resolved": "https://registry.npmjs.org/fill-range/-/fill-range-7.0.1.tgz", - "integrity": "sha512-qOo9F+dMUmC2Lcb4BbVvnKJxTPjCm+RRpe4gDuGrzkL7mEVl/djYSu2OdQ2Pa302N4oqkSg9ir6jaLWJ2USVpQ==", + "license": "MIT", "dependencies": { "to-regex-range": "^5.0.1" }, @@ -12317,8 +11111,7 @@ }, "node_modules/finalhandler": { "version": "1.2.0", - "resolved": "https://registry.npmjs.org/finalhandler/-/finalhandler-1.2.0.tgz", - "integrity": "sha512-5uXcUVftlQMFnWC9qu/svkWv3GTd2PfUhK/3PLkYNAe7FbqJMt3515HaxE6eRL74GdsriiwujiawdaB1BpEISg==", + "license": "MIT", "dependencies": { "debug": "2.6.9", "encodeurl": "~1.0.2", @@ -12334,21 +11127,18 @@ }, "node_modules/finalhandler/node_modules/debug": { "version": "2.6.9", - "resolved": "https://registry.npmjs.org/debug/-/debug-2.6.9.tgz", - "integrity": "sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA==", + "license": "MIT", "dependencies": { "ms": "2.0.0" } }, "node_modules/finalhandler/node_modules/ms": { "version": "2.0.0", - "resolved": "https://registry.npmjs.org/ms/-/ms-2.0.0.tgz", - "integrity": "sha512-Tpp60P6IUJDTuOq/5Z8cdskzJujfwqfOTkrwIwj7IRISpnkJnT6SyJ4PCPnGMoFjC9ddhal5KVIYtAt97ix05A==" + "license": "MIT" }, "node_modules/find-cache-dir": { "version": "3.3.2", - "resolved": "https://registry.npmjs.org/find-cache-dir/-/find-cache-dir-3.3.2.tgz", - "integrity": "sha512-wXZV5emFEjrridIgED11OoUKLxiYjAcqot/NJdAkOhlJ+vGzwhOAfcG5OX1jP+S0PcjEn8bdMJv+g2jwQ3Onig==", + "license": "MIT", "dependencies": { "commondir": "^1.0.1", "make-dir": "^3.0.2", @@ -12363,9 +11153,8 @@ }, "node_modules/find-replace": { "version": "3.0.0", - "resolved": "https://registry.npmjs.org/find-replace/-/find-replace-3.0.0.tgz", - "integrity": "sha512-6Tb2myMioCAgv5kfvP5/PkZZ/ntTpVK39fHY7WkWBgvbeE+VHd/tZuZ4mrC+bxh4cfOZeYKVPaJIZtZXV7GNCQ==", "dev": true, + "license": "MIT", "dependencies": { "array-back": "^3.0.1" }, @@ -12375,13 +11164,11 @@ }, "node_modules/find-root": { "version": "1.1.0", - "resolved": "https://registry.npmjs.org/find-root/-/find-root-1.1.0.tgz", - "integrity": "sha512-NKfW6bec6GfKc0SGx1e07QZY9PE99u0Bft/0rzSD5k3sO/vwkVUpDUKVm5Gpp5Ue3YfShPFTX2070tDs5kB9Ng==" + "license": "MIT" }, "node_modules/find-up": { "version": "5.0.0", - "resolved": "https://registry.npmjs.org/find-up/-/find-up-5.0.0.tgz", - "integrity": "sha512-78/PXT1wlLLDgTzDs7sjq9hzz0vXD+zn+7wypEe4fXQxCmdmqfGsEPQxmiCSQI3ajFV91bVSsvNtrJRiW6nGng==", + "license": "MIT", "dependencies": { "locate-path": "^6.0.0", "path-exists": "^4.0.0" @@ -12395,40 +11182,37 @@ }, "node_modules/flat": { "version": "5.0.2", - "resolved": "https://registry.npmjs.org/flat/-/flat-5.0.2.tgz", - "integrity": "sha512-b6suED+5/3rTpUBdG1gupIl8MPFCAMA0QXwmljLhvCUKcUvdE4gWky9zpuGCcXHOsz4J9wPGNWq6OKpmIzz3hQ==", + "license": "BSD-3-Clause", "peer": true, "bin": { "flat": "cli.js" } }, "node_modules/flat-cache": { - "version": "3.0.4", - "resolved": "https://registry.npmjs.org/flat-cache/-/flat-cache-3.0.4.tgz", - "integrity": "sha512-dm9s5Pw7Jc0GvMYbshN6zchCA9RgQlzzEZX3vylR9IqFfS8XciblUXOKfW6SiuJ0e13eDYZoZV5wdrev7P3Nwg==", + "version": "3.1.0", + "license": "MIT", "dependencies": { - "flatted": "^3.1.0", + "flatted": "^3.2.7", + "keyv": "^4.5.3", "rimraf": "^3.0.2" }, "engines": { - "node": "^10.12.0 || >=12.0.0" + "node": ">=12.0.0" } }, "node_modules/flatted": { - "version": "3.2.6", - "resolved": "https://registry.npmjs.org/flatted/-/flatted-3.2.6.tgz", - "integrity": "sha512-0sQoMh9s0BYsm+12Huy/rkKxVu4R1+r96YX5cG44rHV0pQ6iC3Q+mkoMFaGWObMFYQxCVT+ssG1ksneA2MI9KQ==" + "version": "3.2.7", + "license": "ISC" }, "node_modules/follow-redirects": { - "version": "1.15.1", - "resolved": "https://registry.npmjs.org/follow-redirects/-/follow-redirects-1.15.1.tgz", - "integrity": "sha512-yLAMQs+k0b2m7cVxpS1VKJVvoz7SS9Td1zss3XRwXj+ZDH00RJgnuLx7E44wx02kQLrdM3aOOy+FpzS7+8OizA==", + "version": "1.15.2", "funding": [ { "type": "individual", "url": "https://github.com/sponsors/RubenVerborgh" } ], + "license": "MIT", "engines": { "node": ">=4.0" }, @@ -12440,24 +11224,21 @@ }, "node_modules/for-each": { "version": "0.3.3", - "resolved": "https://registry.npmjs.org/for-each/-/for-each-0.3.3.tgz", - "integrity": "sha512-jqYfLp7mo9vIyQf8ykW2v7A+2N4QjeCeI5+Dz9XraiO1ign81wjiH7Fb9vSOWvQfNtmSa4H2RoQTrrXivdUZmw==", + "license": "MIT", "dependencies": { "is-callable": "^1.1.3" } }, "node_modules/forever-agent": { "version": "0.6.1", - "resolved": "https://registry.npmjs.org/forever-agent/-/forever-agent-0.6.1.tgz", - "integrity": "sha512-j0KLYPhm6zeac4lz3oJ3o65qvgQCcPubiyotZrXqEaG4hNagNYO8qdlUrX5vwqv9ohqeT/Z3j6+yW067yWWdUw==", + "license": "Apache-2.0", "engines": { "node": "*" } }, "node_modules/fork-ts-checker-webpack-plugin": { - "version": "6.5.2", - "resolved": "https://registry.npmjs.org/fork-ts-checker-webpack-plugin/-/fork-ts-checker-webpack-plugin-6.5.2.tgz", - "integrity": "sha512-m5cUmF30xkZ7h4tWUgTAcEaKmUW7tfyUyTqNNOz7OxWJ0v1VWKTcOvH8FWHUwSjlW/356Ijc9vi3XfcPstpQKA==", + "version": "6.5.3", + "license": "MIT", "dependencies": { "@babel/code-frame": "^7.8.3", "@types/json-schema": "^7.0.5", @@ -12492,55 +11273,9 @@ } } }, - "node_modules/fork-ts-checker-webpack-plugin/node_modules/ansi-styles": { - "version": "4.3.0", - "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", - "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", - "dependencies": { - "color-convert": "^2.0.1" - }, - "engines": { - "node": ">=8" - }, - "funding": { - "url": "https://github.com/chalk/ansi-styles?sponsor=1" - } - }, - "node_modules/fork-ts-checker-webpack-plugin/node_modules/chalk": { - "version": "4.1.2", - "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz", - "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==", - "dependencies": { - "ansi-styles": "^4.1.0", - "supports-color": "^7.1.0" - }, - "engines": { - "node": ">=10" - }, - "funding": { - "url": "https://github.com/chalk/chalk?sponsor=1" - } - }, - "node_modules/fork-ts-checker-webpack-plugin/node_modules/color-convert": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz", - "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==", - "dependencies": { - "color-name": "~1.1.4" - }, - "engines": { - "node": ">=7.0.0" - } - }, - "node_modules/fork-ts-checker-webpack-plugin/node_modules/color-name": { - "version": "1.1.4", - "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz", - "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==" - }, "node_modules/fork-ts-checker-webpack-plugin/node_modules/cosmiconfig": { "version": "6.0.0", - "resolved": "https://registry.npmjs.org/cosmiconfig/-/cosmiconfig-6.0.0.tgz", - "integrity": "sha512-xb3ZL6+L8b9JLLCx3ZdoZy4+2ECphCMo2PwqgP1tlfVq6M6YReyzBJtvWWtbDSpNr9hn96pkCiZqUcFEc+54Qg==", + "license": "MIT", "dependencies": { "@types/parse-json": "^4.0.0", "import-fresh": "^3.1.0", @@ -12554,8 +11289,7 @@ }, "node_modules/fork-ts-checker-webpack-plugin/node_modules/fs-extra": { "version": "9.1.0", - "resolved": "https://registry.npmjs.org/fs-extra/-/fs-extra-9.1.0.tgz", - "integrity": "sha512-hcg3ZmepS30/7BSFqRvoo3DOMQu7IjqxO5nCDt+zM9XWjb33Wg7ziNT+Qvqbuc3+gWpzO02JubVyk2G4Zvo1OQ==", + "license": "MIT", "dependencies": { "at-least-node": "^1.0.0", "graceful-fs": "^4.2.0", @@ -12566,18 +11300,9 @@ "node": ">=10" } }, - "node_modules/fork-ts-checker-webpack-plugin/node_modules/has-flag": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz", - "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==", - "engines": { - "node": ">=8" - } - }, "node_modules/fork-ts-checker-webpack-plugin/node_modules/schema-utils": { "version": "2.7.0", - "resolved": "https://registry.npmjs.org/schema-utils/-/schema-utils-2.7.0.tgz", - "integrity": "sha512-0ilKFI6QQF5nxDZLFn2dMjvc4hjg/Wkg7rHd3jK6/A4a1Hl9VFdQWvgB1UMGoU94pad1P/8N7fMcEnLnSiju8A==", + "license": "MIT", "dependencies": { "@types/json-schema": "^7.0.4", "ajv": "^6.12.2", @@ -12591,29 +11316,16 @@ "url": "https://opencollective.com/webpack" } }, - "node_modules/fork-ts-checker-webpack-plugin/node_modules/supports-color": { - "version": "7.2.0", - "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", - "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", - "dependencies": { - "has-flag": "^4.0.0" - }, - "engines": { - "node": ">=8" - } - }, "node_modules/fork-ts-checker-webpack-plugin/node_modules/tapable": { "version": "1.1.3", - "resolved": "https://registry.npmjs.org/tapable/-/tapable-1.1.3.tgz", - "integrity": "sha512-4WK/bYZmj8xLr+HUCODHGF1ZFzsYffasLUgEiMBY4fgtltdO6B4WJtlSbPaDTLpYTcGVwM2qLnFTICEcNxs3kA==", + "license": "MIT", "engines": { "node": ">=6" } }, "node_modules/form-data": { "version": "3.0.1", - "resolved": "https://registry.npmjs.org/form-data/-/form-data-3.0.1.tgz", - "integrity": "sha512-RHkBKtLWUVwd7SqRIvCZMEvAMoGUp0XU+seQiZejj0COz3RI3hWP4sCv3gZWWLjJTd7rGwcsF5eKZGii0r/hbg==", + "license": "MIT", "dependencies": { "asynckit": "^0.4.0", "combined-stream": "^1.0.8", @@ -12625,27 +11337,23 @@ }, "node_modules/form-data-encoder": { "version": "1.7.1", - "resolved": "https://registry.npmjs.org/form-data-encoder/-/form-data-encoder-1.7.1.tgz", - "integrity": "sha512-EFRDrsMm/kyqbTQocNvRXMLjc7Es2Vk+IQFx/YW7hkUH1eBl4J1fqiP34l74Yt0pFLCNpc06fkbVk00008mzjg==" + "license": "MIT" }, "node_modules/forwarded": { "version": "0.2.0", - "resolved": "https://registry.npmjs.org/forwarded/-/forwarded-0.2.0.tgz", - "integrity": "sha512-buRG0fpBtRHSTCOASe6hD258tEubFoRLb4ZNA6NxMVHNw2gOcwHo9wyablzMzOA5z9xA9L1KNjk/Nt6MT9aYow==", + "license": "MIT", "engines": { "node": ">= 0.6" } }, "node_modules/fp-ts": { "version": "1.19.3", - "resolved": "https://registry.npmjs.org/fp-ts/-/fp-ts-1.19.3.tgz", - "integrity": "sha512-H5KQDspykdHuztLTg+ajGN0Z2qUjcEf3Ybxc6hLt0k7/zPkn29XnKnxlBPyW2XIddWrGaJBzBl4VLYOtk39yZg==", + "license": "MIT", "peer": true }, "node_modules/fraction.js": { - "version": "4.2.0", - "resolved": "https://registry.npmjs.org/fraction.js/-/fraction.js-4.2.0.tgz", - "integrity": "sha512-MhLuK+2gUcnZe8ZHlaaINnQLl0xRIGRfcGk2yl8xoQAfHrSsL3rYu6FCmBdkdbhc9EPlwyGHewaRsvwRMJtAlA==", + "version": "4.2.1", + "license": "MIT", "engines": { "node": "*" }, @@ -12656,16 +11364,14 @@ }, "node_modules/fresh": { "version": "0.5.2", - "resolved": "https://registry.npmjs.org/fresh/-/fresh-0.5.2.tgz", - "integrity": "sha512-zJ2mQYM18rEFOudeV4GShTGIQ7RbzA7ozbU9I/XBpm7kqgMywgmylMwXHxZJmkVoYkna9d2pVXVXPdYTP9ej8Q==", + "license": "MIT", "engines": { "node": ">= 0.6" } }, "node_modules/fs-extra": { "version": "10.1.0", - "resolved": "https://registry.npmjs.org/fs-extra/-/fs-extra-10.1.0.tgz", - "integrity": "sha512-oRXApq54ETRj4eMiFzGnHWGy+zo5raudjuxN0b8H7s/RU2oW0Wvsx9O0ACRN/kRq9E8Vu/ReskGB5o3ji+FzHQ==", + "license": "MIT", "dependencies": { "graceful-fs": "^4.2.0", "jsonfile": "^6.0.1", @@ -12677,27 +11383,26 @@ }, "node_modules/fs-minipass": { "version": "1.2.7", - "resolved": "https://registry.npmjs.org/fs-minipass/-/fs-minipass-1.2.7.tgz", - "integrity": "sha512-GWSSJGFy4e9GUeCcbIkED+bgAoFyj7XF1mV8rma3QW4NIqX9Kyx79N/PF61H5udOV3aY1IaMLs6pGbH71nlCTA==", + "license": "ISC", "dependencies": { "minipass": "^2.6.0" } }, "node_modules/fs-monkey": { - "version": "1.0.3", - "resolved": "https://registry.npmjs.org/fs-monkey/-/fs-monkey-1.0.3.tgz", - "integrity": "sha512-cybjIfiiE+pTWicSCLFHSrXZ6EilF30oh91FDP9S2B051prEa7QWfrVTQm10/dDpswBDXZugPa1Ogu8Yh+HV0Q==" + "version": "1.0.4", + "license": "Unlicense" + }, + "node_modules/fs-readdir-recursive": { + "version": "1.1.0", + "license": "MIT" }, "node_modules/fs.realpath": { "version": "1.0.0", - "resolved": "https://registry.npmjs.org/fs.realpath/-/fs.realpath-1.0.0.tgz", - "integrity": "sha512-OO0pH2lK6a0hZnAdau5ItzHPI6pUlvI7jMVnxUQRtw4owF2wk8lOSabtGDCTP4Ggrg2MbGnWO9X8K1t4+fGMDw==" + "license": "ISC" }, "node_modules/fsevents": { - "version": "2.3.2", - "resolved": "https://registry.npmjs.org/fsevents/-/fsevents-2.3.2.tgz", - "integrity": "sha512-xiqMQR4xAeHTuB9uWm+fFRcIOgKBMiOBP+eXiyT7jsgVCq1bkVygt00oASowB7EdtpOHaaPgKt812P9ab+DDKA==", - "hasInstallScript": true, + "version": "2.3.3", + "license": "MIT", "optional": true, "os": [ "darwin" @@ -12708,13 +11413,11 @@ }, "node_modules/function-bind": { "version": "1.1.1", - "resolved": "https://registry.npmjs.org/function-bind/-/function-bind-1.1.1.tgz", - "integrity": "sha512-yIovAzMX49sF8Yl58fSCWJ5svSLuaibPxXQJFLmBObTuCr0Mf1KiPopGM9NiFjiYBCbfaa2Fh6breQ6ANVTI0A==" + "license": "MIT" }, "node_modules/function.prototype.name": { "version": "1.1.5", - "resolved": "https://registry.npmjs.org/function.prototype.name/-/function.prototype.name-1.1.5.tgz", - "integrity": "sha512-uN7m/BzVKQnCUF/iW8jYea67v++2u7m5UgENbHRtdDVclOUP+FMPlCNdmk0h/ysGyo2tavMJEDqJAkJdRa1vMA==", + "license": "MIT", "dependencies": { "call-bind": "^1.0.2", "define-properties": "^1.1.3", @@ -12730,40 +11433,37 @@ }, "node_modules/functional-red-black-tree": { "version": "1.0.1", - "resolved": "https://registry.npmjs.org/functional-red-black-tree/-/functional-red-black-tree-1.0.1.tgz", - "integrity": "sha512-dsKNQNdj6xA3T+QlADDA7mOSlX0qiMINjn0cgr+eGHGsbSHzTabcIogz2+p/iqP1Xs6EP/sS2SbqH+brGTbq0g==" + "license": "MIT", + "peer": true }, "node_modules/functions-have-names": { "version": "1.2.3", - "resolved": "https://registry.npmjs.org/functions-have-names/-/functions-have-names-1.2.3.tgz", - "integrity": "sha512-xckBUXyTIqT97tq2x2AMb+g163b5JFysYk0x4qxNFwbfQkmNZoiRHb6sPzI9/QV33WeuvVYBUIiD4NzNIyqaRQ==", + "license": "MIT", "funding": { "url": "https://github.com/sponsors/ljharb" } }, "node_modules/gensync": { "version": "1.0.0-beta.2", - "resolved": "https://registry.npmjs.org/gensync/-/gensync-1.0.0-beta.2.tgz", - "integrity": "sha512-3hN7NaskYvMDLQY55gnW3NQ+mesEAepTqlg+VEbj7zzqEMBVNhzcGYYeqFo/TlYz6eQiFcp1HcsCZO+nGgS8zg==", + "license": "MIT", "engines": { "node": ">=6.9.0" } }, "node_modules/get-caller-file": { "version": "2.0.5", - "resolved": "https://registry.npmjs.org/get-caller-file/-/get-caller-file-2.0.5.tgz", - "integrity": "sha512-DyFP3BM/3YHTQOCUL/w0OZHR0lpKeGrxotcHWcqNEdnltqFwXVfhEBQ94eIo34AfQpo0rGki4cyIiftY06h2Fg==", + "license": "ISC", "engines": { "node": "6.* || 8.* || >= 10.*" } }, "node_modules/get-intrinsic": { - "version": "1.2.0", - "resolved": "https://registry.npmjs.org/get-intrinsic/-/get-intrinsic-1.2.0.tgz", - "integrity": "sha512-L049y6nFOuom5wGyRc3/gdTLO94dySVKRACj1RmJZBQXlbTMhtNIgkWkUHq+jYmZvKf14EW1EoJnnjbmoHij0Q==", + "version": "1.2.1", + "license": "MIT", "dependencies": { "function-bind": "^1.1.1", "has": "^1.0.3", + "has-proto": "^1.0.1", "has-symbols": "^1.0.3" }, "funding": { @@ -12772,32 +11472,20 @@ }, "node_modules/get-own-enumerable-property-symbols": { "version": "3.0.2", - "resolved": "https://registry.npmjs.org/get-own-enumerable-property-symbols/-/get-own-enumerable-property-symbols-3.0.2.tgz", - "integrity": "sha512-I0UBV/XOz1XkIJHEUDMZAbzCThU/H8DxmSfmdGcKPnVhu2VfFqr34jr9777IyaTYvxjedWhqVIilEDsCdP5G6g==" + "license": "ISC" }, "node_modules/get-package-type": { "version": "0.1.0", - "resolved": "https://registry.npmjs.org/get-package-type/-/get-package-type-0.1.0.tgz", - "integrity": "sha512-pjzuKtY64GYfWizNAJ0fr9VqttZkNiK2iS430LtIHzjBEr6bX8Am2zm4sW4Ro5wjWW5cAlRL1qAMTcXbjNAO2Q==", + "license": "MIT", "engines": { "node": ">=8.0.0" } }, - "node_modules/get-starknet": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/get-starknet/-/get-starknet-2.0.0.tgz", - "integrity": "sha512-MT5jMq0ARo4yE1MhPeWwDw2A0sp+X+HETJoZXqEzhkmeN6lv/eefpEyBbjFCleyEEnpTkZfxqhgFCnDK4OUPoA==", - "dependencies": { - "bowser": "^2.11.0", - "get-starknet-core": "^2.0.0" - } - }, "node_modules/get-starknet-core": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/get-starknet-core/-/get-starknet-core-2.0.1.tgz", - "integrity": "sha512-uYI8wn9a2iyIfJRSJeZvoIvAWq495AKP5U154kFf/Izet+nP/VilTxKUG6CxdUwe9KuBpG0UZE9ODIxPgBYo2w==", + "version": "3.2.0", + "license": "MIT", "peerDependencies": { - "starknet": "^4.9.0" + "starknet": "^5.18.0" }, "peerDependenciesMeta": { "starknet": { @@ -12807,8 +11495,7 @@ }, "node_modules/get-stream": { "version": "6.0.1", - "resolved": "https://registry.npmjs.org/get-stream/-/get-stream-6.0.1.tgz", - "integrity": "sha512-ts6Wi+2j3jQjqi70w5AlN8DFnkSwC+MqmxEzdEALB2qXZYV3X/b1CTfgPLGJNMeAWxdPfU8FO1ms3NUfaHCPYg==", + "license": "MIT", "engines": { "node": ">=10" }, @@ -12818,8 +11505,7 @@ }, "node_modules/get-symbol-description": { "version": "1.0.0", - "resolved": "https://registry.npmjs.org/get-symbol-description/-/get-symbol-description-1.0.0.tgz", - "integrity": "sha512-2EmdH1YvIQiZpltCNgkuiUnyukzxM/R6NDJX31Ke3BG1Nq5b0S2PhX59UKi9vZpPDQVdqn+1IcaAwnzTT5vCjw==", + "license": "MIT", "dependencies": { "call-bind": "^1.0.2", "get-intrinsic": "^1.1.1" @@ -12833,16 +11519,14 @@ }, "node_modules/getpass": { "version": "0.1.7", - "resolved": "https://registry.npmjs.org/getpass/-/getpass-0.1.7.tgz", - "integrity": "sha512-0fzj9JxOLfJ+XGLhR8ze3unN0KZCgZwiSSDz168VERjK8Wl8kVSdcu2kspd4s4wtAa1y/qrVRiAA0WclVsu0ng==", + "license": "MIT", "dependencies": { "assert-plus": "^1.0.0" } }, "node_modules/gifwrap": { "version": "0.9.4", - "resolved": "https://registry.npmjs.org/gifwrap/-/gifwrap-0.9.4.tgz", - "integrity": "sha512-MDMwbhASQuVeD4JKd1fKgNgCRL3fGqMM4WaqpNhWO0JiMOAjbQdumbs4BbBZEy9/M00EHEjKN3HieVhCUlwjeQ==", + "license": "MIT", "dependencies": { "image-q": "^4.0.0", "omggif": "^1.0.10" @@ -12850,8 +11534,7 @@ }, "node_modules/glob": { "version": "7.2.3", - "resolved": "https://registry.npmjs.org/glob/-/glob-7.2.3.tgz", - "integrity": "sha512-nFR0zLpU2YCaRxwoCJvL6UvCH2JFyFVIvwTLsIf21AuHlMskA1hhTdk+LlYJtOlYt9v6dvszD2BGRqBL+iQK9Q==", + "license": "ISC", "dependencies": { "fs.realpath": "^1.0.0", "inflight": "^1.0.4", @@ -12869,8 +11552,7 @@ }, "node_modules/glob-parent": { "version": "6.0.2", - "resolved": "https://registry.npmjs.org/glob-parent/-/glob-parent-6.0.2.tgz", - "integrity": "sha512-XxwI8EOhVQgWp6iDL+3b0r86f4d6AX6zSU55HfB4ydCEuXLXc5FcYeOu+nnGftS4TEju/11rt4KJPTMgbfmv4A==", + "license": "ISC", "dependencies": { "is-glob": "^4.0.3" }, @@ -12880,13 +11562,11 @@ }, "node_modules/glob-to-regexp": { "version": "0.4.1", - "resolved": "https://registry.npmjs.org/glob-to-regexp/-/glob-to-regexp-0.4.1.tgz", - "integrity": "sha512-lkX1HJXwyMcprw/5YUZc2s7DrpAiHB21/V+E1rHUrVNokkvB6bqMzT0VfV6/86ZNabt1k14YOIaT7nDvOX3Iiw==" + "license": "BSD-2-Clause" }, "node_modules/global": { "version": "4.4.0", - "resolved": "https://registry.npmjs.org/global/-/global-4.4.0.tgz", - "integrity": "sha512-wv/LAoHdRE3BeTGz53FAamhGlPLhlssK45usmGFThIi4XqnBmjKQ16u+RNbP7WvigRZDxUsM0J3gcQ5yicaL0w==", + "license": "MIT", "dependencies": { "min-document": "^2.19.0", "process": "^0.11.10" @@ -12894,8 +11574,7 @@ }, "node_modules/global-modules": { "version": "2.0.0", - "resolved": "https://registry.npmjs.org/global-modules/-/global-modules-2.0.0.tgz", - "integrity": "sha512-NGbfmJBp9x8IxyJSd1P+otYK8vonoJactOogrVfFRIAEY1ukil8RSKDz2Yo7wh1oihl51l/r6W4epkeKJHqL8A==", + "license": "MIT", "dependencies": { "global-prefix": "^3.0.0" }, @@ -12905,8 +11584,7 @@ }, "node_modules/global-prefix": { "version": "3.0.0", - "resolved": "https://registry.npmjs.org/global-prefix/-/global-prefix-3.0.0.tgz", - "integrity": "sha512-awConJSVCHVGND6x3tmMaKcQvwXLhjdkmomy2W+Goaui8YPgYgXJZewhg3fWC+DlfqqQuWg8AwqjGTD2nAPVWg==", + "license": "MIT", "dependencies": { "ini": "^1.3.5", "kind-of": "^6.0.2", @@ -12918,8 +11596,7 @@ }, "node_modules/global-prefix/node_modules/which": { "version": "1.3.1", - "resolved": "https://registry.npmjs.org/which/-/which-1.3.1.tgz", - "integrity": "sha512-HxJdYWq1MTIQbJ3nw0cqssHoTNU267KlrDuGZ1WYlxDStUtKUhOaJmh112/TZmHxxUfuJqPXSOm7tDyas0OSIQ==", + "license": "ISC", "dependencies": { "isexe": "^2.0.0" }, @@ -12929,16 +11606,14 @@ }, "node_modules/globals": { "version": "11.12.0", - "resolved": "https://registry.npmjs.org/globals/-/globals-11.12.0.tgz", - "integrity": "sha512-WOBp/EEGUiIsJSp7wcv/y6MO+lV9UoncWqxuFfm8eBwzWNgyfBd6Gz+IeKQ9jCmyhoH99g15M3T+QaVHFjizVA==", + "license": "MIT", "engines": { "node": ">=4" } }, "node_modules/globalthis": { "version": "1.0.3", - "resolved": "https://registry.npmjs.org/globalthis/-/globalthis-1.0.3.tgz", - "integrity": "sha512-sFdI5LyBiNTHjRd7cGPWapiHWMOXKyuBNX/cWJ3NfzrZQVa8GI/8cofCl74AOVqq9W5kNmguTIzJ/1s2gyI9wA==", + "license": "MIT", "dependencies": { "define-properties": "^1.1.3" }, @@ -12951,8 +11626,7 @@ }, "node_modules/globby": { "version": "11.1.0", - "resolved": "https://registry.npmjs.org/globby/-/globby-11.1.0.tgz", - "integrity": "sha512-jhIXaOzy1sb8IyocaruWSn1TjmnBVs8Ayhcy83rmxNJ8q2uWKCAj3CnJY+KpGSXCueAPc0i05kVvVKtP1t9S3g==", + "license": "MIT", "dependencies": { "array-union": "^2.1.0", "dir-glob": "^3.0.1", @@ -12970,8 +11644,7 @@ }, "node_modules/gopd": { "version": "1.0.1", - "resolved": "https://registry.npmjs.org/gopd/-/gopd-1.0.1.tgz", - "integrity": "sha512-d65bNlIadxvpb/A2abVdlqKqV563juRnZ1Wtk6s1sIR8uNsXR70xqIzVqxVf1eTqDunwT2MkczEeaezCKTZhwA==", + "license": "MIT", "dependencies": { "get-intrinsic": "^1.1.3" }, @@ -12981,8 +11654,7 @@ }, "node_modules/got": { "version": "12.1.0", - "resolved": "https://registry.npmjs.org/got/-/got-12.1.0.tgz", - "integrity": "sha512-hBv2ty9QN2RdbJJMK3hesmSkFTjVIHyIDDbssCKnSmq62edGgImJWD10Eb1k77TiV1bxloxqcFAVK8+9pkhOig==", + "license": "MIT", "dependencies": { "@sindresorhus/is": "^4.6.0", "@szmarczak/http-timer": "^5.0.1", @@ -13006,35 +11678,16 @@ } }, "node_modules/graceful-fs": { - "version": "4.2.10", - "resolved": "https://registry.npmjs.org/graceful-fs/-/graceful-fs-4.2.10.tgz", - "integrity": "sha512-9ByhssR2fPVsNZj478qUUbKfmL0+t5BDVyjShtyZZLiK7ZDAArFFfopyOTj0M05wE2tJPisA4iTnnXl2YoPvOA==" - }, - "node_modules/graphql": { - "version": "15.8.0", - "resolved": "https://registry.npmjs.org/graphql/-/graphql-15.8.0.tgz", - "integrity": "sha512-5gghUc24tP9HRznNpV2+FIoq3xKkj5dTQqf4v0CpdPbFVwFkWoxOM+o+2OC9ZSvjEMTjfmG9QT+gcvggTwW1zw==", - "engines": { - "node": ">= 10.x" - } + "version": "4.2.11", + "license": "ISC" }, - "node_modules/graphql-request": { - "version": "3.7.0", - "resolved": "https://registry.npmjs.org/graphql-request/-/graphql-request-3.7.0.tgz", - "integrity": "sha512-dw5PxHCgBneN2DDNqpWu8QkbbJ07oOziy8z+bK/TAXufsOLaETuVO4GkXrbs0WjhdKhBMN3BkpN/RIvUHkmNUQ==", - "dependencies": { - "cross-fetch": "^3.0.6", - "extract-files": "^9.0.0", - "form-data": "^3.0.0" - }, - "peerDependencies": { - "graphql": "14 - 16" - } + "node_modules/graphemer": { + "version": "1.4.0", + "license": "MIT" }, "node_modules/gzip-size": { "version": "6.0.0", - "resolved": "https://registry.npmjs.org/gzip-size/-/gzip-size-6.0.0.tgz", - "integrity": "sha512-ax7ZYomf6jqPTQ4+XCpUGyXKHk5WweS+e05MBO4/y3WJ5RkmPXNKvX+bx1behVILVwr6JSQvZAku021CHPXG3Q==", + "license": "MIT", "dependencies": { "duplexer": "^0.1.2" }, @@ -13047,22 +11700,18 @@ }, "node_modules/handle-thing": { "version": "2.0.1", - "resolved": "https://registry.npmjs.org/handle-thing/-/handle-thing-2.0.1.tgz", - "integrity": "sha512-9Qn4yBxelxoh2Ow62nP+Ka/kMnOXRi8BXnRaUwezLNhqelnN49xKz4F/dPP8OYLxLxq6JDtZb2i9XznUQbNPTg==" + "license": "MIT" }, "node_modules/har-schema": { "version": "2.0.0", - "resolved": "https://registry.npmjs.org/har-schema/-/har-schema-2.0.0.tgz", - "integrity": "sha512-Oqluz6zhGX8cyRaTQlFMPw80bSJVG2x/cFb8ZPhUILGgHka9SsokCCOQgpveePerqidZOrT14ipqfJb7ILcW5Q==", + "license": "ISC", "engines": { "node": ">=4" } }, "node_modules/har-validator": { "version": "5.1.5", - "resolved": "https://registry.npmjs.org/har-validator/-/har-validator-5.1.5.tgz", - "integrity": "sha512-nmT2T0lljbxdQZfspsno9hgrG3Uir6Ks5afism62poxqBM6sDnMEuPmzTq8XN0OEwqKLLdh1jQI3qyE66Nzb3w==", - "deprecated": "this library is no longer supported", + "license": "MIT", "dependencies": { "ajv": "^6.12.3", "har-schema": "^2.0.0" @@ -13072,9 +11721,8 @@ } }, "node_modules/hardhat": { - "version": "2.14.0", - "resolved": "https://registry.npmjs.org/hardhat/-/hardhat-2.14.0.tgz", - "integrity": "sha512-73jsInY4zZahMSVFurSK+5TNCJTXMv+vemvGia0Ac34Mm19fYp6vEPVGF3sucbumszsYxiTT2TbS8Ii2dsDSoQ==", + "version": "2.17.1", + "license": "MIT", "peer": true, "dependencies": { "@ethersproject/abi": "^5.1.2", @@ -13093,7 +11741,6 @@ "@sentry/node": "^5.18.1", "@types/bn.js": "^5.1.0", "@types/lru-cache": "^5.1.0", - "abort-controller": "^3.0.0", "adm-zip": "^0.4.16", "aggregate-error": "^3.0.0", "ansi-escapes": "^4.3.0", @@ -13116,7 +11763,6 @@ "mnemonist": "^0.38.0", "mocha": "^10.0.0", "p-map": "^4.0.0", - "qs": "^6.7.0", "raw-body": "^2.4.1", "resolve": "1.17.0", "semver": "^6.3.0", @@ -13131,9 +11777,6 @@ "bin": { "hardhat": "internal/cli/bootstrap.js" }, - "engines": { - "node": ">=14.0.0" - }, "peerDependencies": { "ts-node": "*", "typescript": "*" @@ -13149,8 +11792,7 @@ }, "node_modules/hardhat-watcher": { "version": "2.5.0", - "resolved": "https://registry.npmjs.org/hardhat-watcher/-/hardhat-watcher-2.5.0.tgz", - "integrity": "sha512-Su2qcSMIo2YO2PrmJ0/tdkf+6pSt8zf9+4URR5edMVti6+ShI8T3xhPrwugdyTOFuyj8lKHrcTZNKUFYowYiyA==", + "license": "MIT", "dependencies": { "chokidar": "^3.5.3" }, @@ -13158,16 +11800,59 @@ "hardhat": "^2.0.0" } }, + "node_modules/hardhat/node_modules/ansi-styles": { + "version": "3.2.1", + "license": "MIT", + "peer": true, + "dependencies": { + "color-convert": "^1.9.0" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/hardhat/node_modules/chalk": { + "version": "2.4.2", + "license": "MIT", + "peer": true, + "dependencies": { + "ansi-styles": "^3.2.1", + "escape-string-regexp": "^1.0.5", + "supports-color": "^5.3.0" + }, + "engines": { + "node": ">=4" + } + }, "node_modules/hardhat/node_modules/ci-info": { "version": "2.0.0", - "resolved": "https://registry.npmjs.org/ci-info/-/ci-info-2.0.0.tgz", - "integrity": "sha512-5tK7EtrZ0N+OLFMthtqOj4fI2Jeb88C4CAZPu25LDVUgXJ0A3Js4PMGqrn0JU1W0Mh1/Z8wZzYPxqUrXeBboCQ==", + "license": "MIT", + "peer": true + }, + "node_modules/hardhat/node_modules/color-convert": { + "version": "1.9.3", + "license": "MIT", + "peer": true, + "dependencies": { + "color-name": "1.1.3" + } + }, + "node_modules/hardhat/node_modules/color-name": { + "version": "1.1.3", + "license": "MIT", "peer": true }, + "node_modules/hardhat/node_modules/escape-string-regexp": { + "version": "1.0.5", + "license": "MIT", + "peer": true, + "engines": { + "node": ">=0.8.0" + } + }, "node_modules/hardhat/node_modules/find-up": { "version": "2.1.0", - "resolved": "https://registry.npmjs.org/find-up/-/find-up-2.1.0.tgz", - "integrity": "sha512-NWzkk0jSJtTt08+FBFMvXoeZnOJD+jTtsRmBYbAIzJdX6l7dLgR7CTubCM5/eDdPUBvLCeVasP1brfVR/9/EZQ==", + "license": "MIT", "peer": true, "dependencies": { "locate-path": "^2.0.0" @@ -13178,8 +11863,7 @@ }, "node_modules/hardhat/node_modules/fs-extra": { "version": "7.0.1", - "resolved": "https://registry.npmjs.org/fs-extra/-/fs-extra-7.0.1.tgz", - "integrity": "sha512-YJDaCJZEnBmcbw13fvdAM9AwNOJwOzrE4pqMqBq5nFiEqXUqHwlK4B+3pUw6JNvfSPtX05xFHtYy/1ni01eGCw==", + "license": "MIT", "peer": true, "dependencies": { "graceful-fs": "^4.1.2", @@ -13192,8 +11876,7 @@ }, "node_modules/hardhat/node_modules/glob": { "version": "7.2.0", - "resolved": "https://registry.npmjs.org/glob/-/glob-7.2.0.tgz", - "integrity": "sha512-lmLf6gtyrPq8tTjSmrO94wBeQbFR3HbLHbuyD69wuyQkImp2hWqMGB47OX65FBkPffO641IP9jWa1z4ivqG26Q==", + "license": "ISC", "peer": true, "dependencies": { "fs.realpath": "^1.0.0", @@ -13210,10 +11893,17 @@ "url": "https://github.com/sponsors/isaacs" } }, + "node_modules/hardhat/node_modules/has-flag": { + "version": "3.0.0", + "license": "MIT", + "peer": true, + "engines": { + "node": ">=4" + } + }, "node_modules/hardhat/node_modules/jsonfile": { "version": "4.0.0", - "resolved": "https://registry.npmjs.org/jsonfile/-/jsonfile-4.0.0.tgz", - "integrity": "sha512-m6F1R3z8jjlf2imQHS2Qez5sjKWQzbuuhuJ/FKYFRZvPE3PuHcSMVZzfsLhGVOkfd20obL5SWEBew5ShlquNxg==", + "license": "MIT", "peer": true, "optionalDependencies": { "graceful-fs": "^4.1.6" @@ -13221,8 +11911,7 @@ }, "node_modules/hardhat/node_modules/locate-path": { "version": "2.0.0", - "resolved": "https://registry.npmjs.org/locate-path/-/locate-path-2.0.0.tgz", - "integrity": "sha512-NCI2kiDkyR7VeEKm27Kda/iQHyKJe1Bu0FlTbYp3CqJu+9IFe9bLyAjMxf5ZDDbEg+iMPzB5zYyUTSm8wVTKmA==", + "license": "MIT", "peer": true, "dependencies": { "p-locate": "^2.0.0", @@ -13234,8 +11923,7 @@ }, "node_modules/hardhat/node_modules/p-limit": { "version": "1.3.0", - "resolved": "https://registry.npmjs.org/p-limit/-/p-limit-1.3.0.tgz", - "integrity": "sha512-vvcXsLAJ9Dr5rQOPk7toZQZJApBl2K4J6dANSsEuh6QI41JYcsS/qhTGa9ErIUUgK3WNQoJYvylxvjqmiqEA9Q==", + "license": "MIT", "peer": true, "dependencies": { "p-try": "^1.0.0" @@ -13246,8 +11934,7 @@ }, "node_modules/hardhat/node_modules/p-locate": { "version": "2.0.0", - "resolved": "https://registry.npmjs.org/p-locate/-/p-locate-2.0.0.tgz", - "integrity": "sha512-nQja7m7gSKuewoVRen45CtVfODR3crN3goVQ0DDZ9N3yHxgpkuBhZqsaiotSQRrADUrne346peY7kT3TSACykg==", + "license": "MIT", "peer": true, "dependencies": { "p-limit": "^1.1.0" @@ -13258,8 +11945,7 @@ }, "node_modules/hardhat/node_modules/p-try": { "version": "1.0.0", - "resolved": "https://registry.npmjs.org/p-try/-/p-try-1.0.0.tgz", - "integrity": "sha512-U1etNYuMJoIz3ZXSrrySFjsXQTWOx2/jdi86L+2pRvph/qMKL6sbcCYdH23fqsbm8TH2Gn0OybpT4eSFlCVHww==", + "license": "MIT", "peer": true, "engines": { "node": ">=4" @@ -13267,8 +11953,7 @@ }, "node_modules/hardhat/node_modules/path-exists": { "version": "3.0.0", - "resolved": "https://registry.npmjs.org/path-exists/-/path-exists-3.0.0.tgz", - "integrity": "sha512-bpC7GYwiDYQ4wYLe+FA8lhRjhQCMcQGuSgGGqDkg/QerRWw9CmGRT0iSOVRSZJ29NMLZgIzqaljJ63oaL4NIJQ==", + "license": "MIT", "peer": true, "engines": { "node": ">=4" @@ -13276,8 +11961,7 @@ }, "node_modules/hardhat/node_modules/resolve": { "version": "1.17.0", - "resolved": "https://registry.npmjs.org/resolve/-/resolve-1.17.0.tgz", - "integrity": "sha512-ic+7JYiV8Vi2yzQGFWOkiZD5Z9z7O2Zhm9XMaTxdJExKasieFCr+yXZ/WmXsckHiKl12ar0y6XiXDx3m4RHn1w==", + "license": "MIT", "peer": true, "dependencies": { "path-parse": "^1.0.6" @@ -13287,18 +11971,27 @@ } }, "node_modules/hardhat/node_modules/semver": { - "version": "6.3.0", - "resolved": "https://registry.npmjs.org/semver/-/semver-6.3.0.tgz", - "integrity": "sha512-b39TBaTSfV6yBrapU89p5fKekE2m/NwnDocOVruQFS1/veMgdzuPcnOM34M6CwxW8jH/lxEa5rBoDeUwu5HHTw==", + "version": "6.3.1", + "license": "ISC", "peer": true, "bin": { "semver": "bin/semver.js" } }, + "node_modules/hardhat/node_modules/supports-color": { + "version": "5.5.0", + "license": "MIT", + "peer": true, + "dependencies": { + "has-flag": "^3.0.0" + }, + "engines": { + "node": ">=4" + } + }, "node_modules/hardhat/node_modules/universalify": { "version": "0.1.2", - "resolved": "https://registry.npmjs.org/universalify/-/universalify-0.1.2.tgz", - "integrity": "sha512-rBJeI5CXAlmy1pV+617WB9J63U6XcazHHF2f2dbJix4XzpUF0RS3Zbj0FGIOCAva5P/d/GBOYaACQ1w+0azUkg==", + "license": "MIT", "peer": true, "engines": { "node": ">= 4.0.0" @@ -13306,13 +11999,11 @@ }, "node_modules/harmony-reflect": { "version": "1.6.2", - "resolved": "https://registry.npmjs.org/harmony-reflect/-/harmony-reflect-1.6.2.tgz", - "integrity": "sha512-HIp/n38R9kQjDEziXyDTuW3vvoxxyxjxFzXLrBr18uB47GnSt+G9D29fqrpM5ZkspMcPICud3XsBJQ4Y2URg8g==" + "license": "(Apache-2.0 OR MPL-1.1)" }, "node_modules/has": { "version": "1.0.3", - "resolved": "https://registry.npmjs.org/has/-/has-1.0.3.tgz", - "integrity": "sha512-f2dvO0VU6Oej7RkWJGrehjbzMAjFp5/VKPp5tTpWIV4JHHZK1/BxbFRtf/siA2SWTe09caDmVtYYzWEIbBS4zw==", + "license": "MIT", "dependencies": { "function-bind": "^1.1.1" }, @@ -13322,24 +12013,21 @@ }, "node_modules/has-bigints": { "version": "1.0.2", - "resolved": "https://registry.npmjs.org/has-bigints/-/has-bigints-1.0.2.tgz", - "integrity": "sha512-tSvCKtBr9lkF0Ex0aQiP9N+OpV4zi2r/Nee5VkRDbaqv35RLYMzbwQfFSZZH0kR+Rd6302UJZ2p/bJCEoR3VoQ==", + "license": "MIT", "funding": { "url": "https://github.com/sponsors/ljharb" } }, "node_modules/has-flag": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-3.0.0.tgz", - "integrity": "sha512-sKJf1+ceQBr4SMkvQnBDNDtf4TXpVhVGateu0t918bl30FnbE2m4vNLX+VWe/dpjlb+HugGYzW7uQXH98HPEYw==", + "version": "4.0.0", + "license": "MIT", "engines": { - "node": ">=4" + "node": ">=8" } }, "node_modules/has-property-descriptors": { "version": "1.0.0", - "resolved": "https://registry.npmjs.org/has-property-descriptors/-/has-property-descriptors-1.0.0.tgz", - "integrity": "sha512-62DVLZGoiEBDHQyqG4w9xCuZ7eJEwNmJRWw2VY84Oedb7WFcA27fiEVe8oUQx9hAUJ4ekurquucTGwsyO1XGdQ==", + "license": "MIT", "dependencies": { "get-intrinsic": "^1.1.1" }, @@ -13349,8 +12037,7 @@ }, "node_modules/has-proto": { "version": "1.0.1", - "resolved": "https://registry.npmjs.org/has-proto/-/has-proto-1.0.1.tgz", - "integrity": "sha512-7qE+iP+O+bgF9clE5+UoBFzE65mlBiVj3tKCrlNQ0Ogwm0BjpT/gK4SlLYDMybDh5I3TCTKnPPa0oMG7JDYrhg==", + "license": "MIT", "engines": { "node": ">= 0.4" }, @@ -13360,8 +12047,7 @@ }, "node_modules/has-symbols": { "version": "1.0.3", - "resolved": "https://registry.npmjs.org/has-symbols/-/has-symbols-1.0.3.tgz", - "integrity": "sha512-l3LCuF6MgDNwTDKkdYGEihYjt5pRPbEg46rtlmnSPlUbgmB8LOIrKJbYYFBSbnPaJexMKtiPO8hmeRjRz2Td+A==", + "license": "MIT", "engines": { "node": ">= 0.4" }, @@ -13371,8 +12057,7 @@ }, "node_modules/has-tostringtag": { "version": "1.0.0", - "resolved": "https://registry.npmjs.org/has-tostringtag/-/has-tostringtag-1.0.0.tgz", - "integrity": "sha512-kFjcSNhnlGV1kyoGk7OXKSawH5JOb/LzUc5w9B02hOTO0dfFRjbHQKvg1d6cf3HbeUmtU9VbbV3qzZ2Teh97WQ==", + "license": "MIT", "dependencies": { "has-symbols": "^1.0.2" }, @@ -13385,8 +12070,7 @@ }, "node_modules/hash-base": { "version": "3.1.0", - "resolved": "https://registry.npmjs.org/hash-base/-/hash-base-3.1.0.tgz", - "integrity": "sha512-1nmYp/rhMDiE7AYkDw+lLwlAzz0AntGIe51F3RfFfEqyQ3feY2eI/NcwC6umIQVOASPMsWJLJScWKSSvzL9IVA==", + "license": "MIT", "dependencies": { "inherits": "^2.0.4", "readable-stream": "^3.6.0", @@ -13396,29 +12080,9 @@ "node": ">=4" } }, - "node_modules/hash-base/node_modules/safe-buffer": { - "version": "5.2.1", - "resolved": "https://registry.npmjs.org/safe-buffer/-/safe-buffer-5.2.1.tgz", - "integrity": "sha512-rp3So07KcdmmKbGvgaNxQSJr7bGVSVk5S9Eq1F+ppbRo70+YeaDxkw5Dd8NPN+GD6bjnYm2VuPuCXmpuYvmCXQ==", - "funding": [ - { - "type": "github", - "url": "https://github.com/sponsors/feross" - }, - { - "type": "patreon", - "url": "https://www.patreon.com/feross" - }, - { - "type": "consulting", - "url": "https://feross.org/support" - } - ] - }, "node_modules/hash.js": { "version": "1.1.7", - "resolved": "https://registry.npmjs.org/hash.js/-/hash.js-1.1.7.tgz", - "integrity": "sha512-taOaskGt4z4SOANNseOviYDvjEJinIkRgmp7LbKP2YTTmVxWBl87s/uzK9r+44BclBSp2X7K1hqeNfz9JbBeXA==", + "license": "MIT", "dependencies": { "inherits": "^2.0.3", "minimalistic-assert": "^1.0.1" @@ -13426,16 +12090,14 @@ }, "node_modules/he": { "version": "1.2.0", - "resolved": "https://registry.npmjs.org/he/-/he-1.2.0.tgz", - "integrity": "sha512-F/1DnUGPopORZi0ni+CvrCgHQ5FyEAHRLSApuYWMmrbSwoN2Mn/7k+Gl38gJnR7yyDZk6WLXwiGod1JOWNDKGw==", + "license": "MIT", "bin": { "he": "bin/he" } }, "node_modules/hmac-drbg": { "version": "1.0.1", - "resolved": "https://registry.npmjs.org/hmac-drbg/-/hmac-drbg-1.0.1.tgz", - "integrity": "sha512-Tti3gMqLdZfhOQY1Mzf/AanLiqh1WTiJgEj26ZuYQ9fbkLomzGchCws4FyrSd4VkpBfiNhaE1On+lOz894jvXg==", + "license": "MIT", "dependencies": { "hash.js": "^1.0.3", "minimalistic-assert": "^1.0.0", @@ -13444,29 +12106,25 @@ }, "node_modules/hoist-non-react-statics": { "version": "3.3.2", - "resolved": "https://registry.npmjs.org/hoist-non-react-statics/-/hoist-non-react-statics-3.3.2.tgz", - "integrity": "sha512-/gGivxi8JPKWNm/W0jSmzcMPpfpPLc3dY/6GxhX2hQ9iGj3aDfklV4ET7NjKpSinLpJ5vafa9iiGIEZg10SfBw==", + "license": "BSD-3-Clause", "dependencies": { "react-is": "^16.7.0" } }, "node_modules/hoist-non-react-statics/node_modules/react-is": { "version": "16.13.1", - "resolved": "https://registry.npmjs.org/react-is/-/react-is-16.13.1.tgz", - "integrity": "sha512-24e6ynE2H+OKt4kqsOvNd8kBpV65zoxbA4BVsEOB3ARVWQki/DHzaUoC5KuON/BiccDaCCTZBuOcfZs70kR8bQ==" + "license": "MIT" }, "node_modules/hoopy": { "version": "0.1.4", - "resolved": "https://registry.npmjs.org/hoopy/-/hoopy-0.1.4.tgz", - "integrity": "sha512-HRcs+2mr52W0K+x8RzcLzuPPmVIKMSv97RGHy0Ea9y/mpcaK+xTrjICA04KAHi4GRzxliNqNJEFYWHghy3rSfQ==", + "license": "MIT", "engines": { "node": ">= 6.0.0" } }, "node_modules/hpack.js": { "version": "2.1.6", - "resolved": "https://registry.npmjs.org/hpack.js/-/hpack.js-2.1.6.tgz", - "integrity": "sha512-zJxVehUdMGIKsRaNt7apO2Gqp0BdqW5yaiGHXXmbpvxgBYVZnAql+BJb4RO5ad2MgpbZKn5G6nMnegrH1FcNYQ==", + "license": "MIT", "dependencies": { "inherits": "^2.0.1", "obuf": "^1.0.0", @@ -13474,10 +12132,13 @@ "wbuf": "^1.1.0" } }, + "node_modules/hpack.js/node_modules/isarray": { + "version": "1.0.0", + "license": "MIT" + }, "node_modules/hpack.js/node_modules/readable-stream": { - "version": "2.3.7", - "resolved": "https://registry.npmjs.org/readable-stream/-/readable-stream-2.3.7.tgz", - "integrity": "sha512-Ebho8K4jIbHAxnuxi7o42OrZgF/ZTNcsZj6nRKyUmkhLFq8CHItp/fy6hQZuZmP/n3yZ9VBUbp4zz/mX8hmYPw==", + "version": "2.3.8", + "license": "MIT", "dependencies": { "core-util-is": "~1.0.0", "inherits": "~2.0.3", @@ -13488,18 +12149,20 @@ "util-deprecate": "~1.0.1" } }, + "node_modules/hpack.js/node_modules/safe-buffer": { + "version": "5.1.2", + "license": "MIT" + }, "node_modules/hpack.js/node_modules/string_decoder": { "version": "1.1.1", - "resolved": "https://registry.npmjs.org/string_decoder/-/string_decoder-1.1.1.tgz", - "integrity": "sha512-n/ShnvDi6FHbbVfviro+WojiFzv+s8MPMHBczVePfUpDJLwoLT0ht1l4YwBCbi8pJAveEEdnkHyPyTP/mzRfwg==", + "license": "MIT", "dependencies": { "safe-buffer": "~5.1.0" } }, "node_modules/html-encoding-sniffer": { "version": "2.0.1", - "resolved": "https://registry.npmjs.org/html-encoding-sniffer/-/html-encoding-sniffer-2.0.1.tgz", - "integrity": "sha512-D5JbOMBIR/TVZkubHT+OyT2705QvogUW4IBn6nHd756OwieSF9aDYFj4dv6HHEVGYbHaLETa3WggZYWWMyy3ZQ==", + "license": "MIT", "dependencies": { "whatwg-encoding": "^1.0.5" }, @@ -13508,19 +12171,26 @@ } }, "node_modules/html-entities": { - "version": "2.3.3", - "resolved": "https://registry.npmjs.org/html-entities/-/html-entities-2.3.3.tgz", - "integrity": "sha512-DV5Ln36z34NNTDgnz0EWGBLZENelNAtkiFA4kyNOG2tDI6Mz1uSWiq1wAKdyjnJwyDiDO7Fa2SO1CTxPXL8VxA==" + "version": "2.4.0", + "funding": [ + { + "type": "github", + "url": "https://github.com/sponsors/mdevils" + }, + { + "type": "patreon", + "url": "https://patreon.com/mdevils" + } + ], + "license": "MIT" }, "node_modules/html-escaper": { "version": "2.0.2", - "resolved": "https://registry.npmjs.org/html-escaper/-/html-escaper-2.0.2.tgz", - "integrity": "sha512-H2iMtd0I4Mt5eYiapRdIDjp+XzelXQ0tFE4JS7YFwFevXXMmOp9myNrUvCg0D6ws8iqkRPBfKHgbwig1SmlLfg==" + "license": "MIT" }, "node_modules/html-minifier-terser": { "version": "6.1.0", - "resolved": "https://registry.npmjs.org/html-minifier-terser/-/html-minifier-terser-6.1.0.tgz", - "integrity": "sha512-YXxSlJBZTP7RS3tWnQw74ooKa6L9b9i9QYXY21eUEvhZ3u9XLfv6OnFsQq6RxkhHygsaUMvYsZRV5rU/OVNZxw==", + "license": "MIT", "dependencies": { "camel-case": "^4.1.2", "clean-css": "^5.2.2", @@ -13538,9 +12208,8 @@ } }, "node_modules/html-webpack-plugin": { - "version": "5.5.0", - "resolved": "https://registry.npmjs.org/html-webpack-plugin/-/html-webpack-plugin-5.5.0.tgz", - "integrity": "sha512-sy88PC2cRTVxvETRgUHFrL4No3UxvcH8G1NepGhqaTT+GXN2kTamqasot0inS5hXeg1cMbFDt27zzo9p35lZVw==", + "version": "5.5.3", + "license": "MIT", "dependencies": { "@types/html-minifier-terser": "^6.0.0", "html-minifier-terser": "^6.0.2", @@ -13561,8 +12230,6 @@ }, "node_modules/htmlparser2": { "version": "6.1.0", - "resolved": "https://registry.npmjs.org/htmlparser2/-/htmlparser2-6.1.0.tgz", - "integrity": "sha512-gyyPk6rgonLFEDGoeRgQNaEUvdJ4ktTmmUh/h2t7s+M8oPpIPxgNACWa+6ESR57kXstwqPiCut0V8NRpcwgU7A==", "funding": [ "https://github.com/fb55/htmlparser2?sponsor=1", { @@ -13570,6 +12237,7 @@ "url": "https://github.com/sponsors/fb55" } ], + "license": "MIT", "dependencies": { "domelementtype": "^2.0.1", "domhandler": "^4.0.0", @@ -13579,18 +12247,15 @@ }, "node_modules/http-cache-semantics": { "version": "4.1.1", - "resolved": "https://registry.npmjs.org/http-cache-semantics/-/http-cache-semantics-4.1.1.tgz", - "integrity": "sha512-er295DKPVsV82j5kw1Gjt+ADA/XYHsajl82cGNQG2eyoPkvgUhX+nDIyelzhIWbbsXP39EHcI6l5tYs2FYqYXQ==" + "license": "BSD-2-Clause" }, "node_modules/http-deceiver": { "version": "1.2.7", - "resolved": "https://registry.npmjs.org/http-deceiver/-/http-deceiver-1.2.7.tgz", - "integrity": "sha512-LmpOGxTfbpgtGVxJrj5k7asXHCgNZp5nLfp+hWc8QQRqtb7fUy6kRY3BO1h9ddF6yIPYUARgxGOwB42DnxIaNw==" + "license": "MIT" }, "node_modules/http-errors": { "version": "2.0.0", - "resolved": "https://registry.npmjs.org/http-errors/-/http-errors-2.0.0.tgz", - "integrity": "sha512-FtwrG/euBzaEjYeRqOgly7G0qviiXoJWnvEH2Z1plBdXgbyjv34pHTSb9zoeHMyDy33+DWy5Wt9Wo+TURtOYSQ==", + "license": "MIT", "dependencies": { "depd": "2.0.0", "inherits": "2.0.4", @@ -13604,18 +12269,15 @@ }, "node_modules/http-https": { "version": "1.0.0", - "resolved": "https://registry.npmjs.org/http-https/-/http-https-1.0.0.tgz", - "integrity": "sha512-o0PWwVCSp3O0wS6FvNr6xfBCHgt0m1tvPLFOCc2iFDKTRAXhB7m8klDf7ErowFH8POa6dVdGatKU5I1YYwzUyg==" + "license": "ISC" }, "node_modules/http-parser-js": { "version": "0.5.8", - "resolved": "https://registry.npmjs.org/http-parser-js/-/http-parser-js-0.5.8.tgz", - "integrity": "sha512-SGeBX54F94Wgu5RH3X5jsDtf4eHyRogWX1XGT3b4HuW3tQPM4AaBzoUji/4AAJNXCEOWZ5O0DgZmJw1947gD5Q==" + "license": "MIT" }, "node_modules/http-proxy": { "version": "1.18.1", - "resolved": "https://registry.npmjs.org/http-proxy/-/http-proxy-1.18.1.tgz", - "integrity": "sha512-7mz/721AbnJwIVbnaSv1Cz3Am0ZLT/UBwkC92VlxhXv/k/BBQfM2fXElQNC27BVGr0uwUpplYPQM9LnaBMR5NQ==", + "license": "MIT", "dependencies": { "eventemitter3": "^4.0.0", "follow-redirects": "^1.0.0", @@ -13627,8 +12289,7 @@ }, "node_modules/http-proxy-agent": { "version": "4.0.1", - "resolved": "https://registry.npmjs.org/http-proxy-agent/-/http-proxy-agent-4.0.1.tgz", - "integrity": "sha512-k0zdNgqWTGA6aeIRVpvfVob4fL52dTfaehylg0Y4UvSySvOq/Y+BOyPrgpUrA7HylqvU8vIZGsRuXmspskV0Tg==", + "license": "MIT", "dependencies": { "@tootallnate/once": "1", "agent-base": "6", @@ -13640,8 +12301,7 @@ }, "node_modules/http-proxy-middleware": { "version": "2.0.6", - "resolved": "https://registry.npmjs.org/http-proxy-middleware/-/http-proxy-middleware-2.0.6.tgz", - "integrity": "sha512-ya/UeJ6HVBYxrgYotAZo1KvPWlgB48kUJLDePFeneHsVujFaW5WNj2NgWCAE//B1Dl02BIfYlpNgBy8Kf8Rjmw==", + "license": "MIT", "dependencies": { "@types/http-proxy": "^1.17.8", "http-proxy": "^1.18.1", @@ -13663,8 +12323,7 @@ }, "node_modules/http-signature": { "version": "1.2.0", - "resolved": "https://registry.npmjs.org/http-signature/-/http-signature-1.2.0.tgz", - "integrity": "sha512-CAbnr6Rz4CYQkLYUtSNXxQPUH2gK8f3iWexVlsnMeD+GjlsQ0Xsy1cOX+mN3dtxYomRy21CiOzU8Uhw6OwncEQ==", + "license": "MIT", "dependencies": { "assert-plus": "^1.0.0", "jsprim": "^1.2.2", @@ -13677,8 +12336,7 @@ }, "node_modules/http2-wrapper": { "version": "2.2.0", - "resolved": "https://registry.npmjs.org/http2-wrapper/-/http2-wrapper-2.2.0.tgz", - "integrity": "sha512-kZB0wxMo0sh1PehyjJUWRFEd99KC5TLjZ2cULC4f9iqJBAmKQQXEICjxl5iPJRwP40dpeHFqqhm7tYCvODpqpQ==", + "license": "MIT", "dependencies": { "quick-lru": "^5.1.1", "resolve-alpn": "^1.2.0" @@ -13689,8 +12347,7 @@ }, "node_modules/https-proxy-agent": { "version": "5.0.1", - "resolved": "https://registry.npmjs.org/https-proxy-agent/-/https-proxy-agent-5.0.1.tgz", - "integrity": "sha512-dFcAjpTQFgoLMzC2VwU+C/CbS7uRL0lWmxDITmqm7C+7F0Odmj6s9l6alZc6AELXhrnggM2CeWSXHGOdX2YtwA==", + "license": "MIT", "dependencies": { "agent-base": "6", "debug": "4" @@ -13701,16 +12358,14 @@ }, "node_modules/human-signals": { "version": "2.1.0", - "resolved": "https://registry.npmjs.org/human-signals/-/human-signals-2.1.0.tgz", - "integrity": "sha512-B4FFZ6q/T2jhhksgkbEW3HBvWIfDW85snkQgawt07S7J5QXTk6BkNV+0yAeZrM5QpMAdYlocGoljn0sJ/WQkFw==", + "license": "Apache-2.0", "engines": { "node": ">=10.17.0" } }, "node_modules/iconv-lite": { "version": "0.6.3", - "resolved": "https://registry.npmjs.org/iconv-lite/-/iconv-lite-0.6.3.tgz", - "integrity": "sha512-4fCk79wshMdzMp2rH06qWrJE4iolqLhCUH+OiuIgU++RB0+94NlDL81atO7GX55uUKueo0txHNtvEyI6D7WdMw==", + "license": "MIT", "dependencies": { "safer-buffer": ">= 2.1.2 < 3.0.0" }, @@ -13720,8 +12375,7 @@ }, "node_modules/icss-utils": { "version": "5.1.0", - "resolved": "https://registry.npmjs.org/icss-utils/-/icss-utils-5.1.0.tgz", - "integrity": "sha512-soFhflCVWLfRNOPU3iv5Z9VUdT44xFRbzjLsEzSr5AQmgqPMTHdU3PMT1Cf1ssx8fLNJDA1juftYl+PUcv3MqA==", + "license": "ISC", "engines": { "node": "^10 || ^12 || >= 14" }, @@ -13730,14 +12384,12 @@ } }, "node_modules/idb": { - "version": "6.1.5", - "resolved": "https://registry.npmjs.org/idb/-/idb-6.1.5.tgz", - "integrity": "sha512-IJtugpKkiVXQn5Y+LteyBCNk1N8xpGV3wWZk9EVtZWH8DYkjBn0bX1XnGP9RkyZF0sAcywa6unHqSWKe7q4LGw==" + "version": "7.1.1", + "license": "ISC" }, "node_modules/identity-obj-proxy": { "version": "3.0.0", - "resolved": "https://registry.npmjs.org/identity-obj-proxy/-/identity-obj-proxy-3.0.0.tgz", - "integrity": "sha512-00n6YnVHKrinT9t0d9+5yZC6UBNJANpYEQvL2LlX6Ab9lnmxzIRcEmTPuyGScvl1+jKuCICX1Z0Ab1pPKKdikA==", + "license": "MIT", "dependencies": { "harmony-reflect": "^1.4.6" }, @@ -13747,8 +12399,7 @@ }, "node_modules/idna-uts46-hx": { "version": "2.3.1", - "resolved": "https://registry.npmjs.org/idna-uts46-hx/-/idna-uts46-hx-2.3.1.tgz", - "integrity": "sha512-PWoF9Keq6laYdIRwwCdhTPl60xRqAloYNMQLiyUnG42VjT53oW07BXIRM+NK7eQjzXjAk2gUvX9caRxlnF9TAA==", + "license": "MIT", "dependencies": { "punycode": "2.1.0" }, @@ -13758,16 +12409,13 @@ }, "node_modules/idna-uts46-hx/node_modules/punycode": { "version": "2.1.0", - "resolved": "https://registry.npmjs.org/punycode/-/punycode-2.1.0.tgz", - "integrity": "sha512-Yxz2kRwT90aPiWEMHVYnEf4+rhwF1tBmmZ4KepCP+Wkium9JxtWnUm1nqGwpiAHr/tnTSeHqr3wb++jgSkXjhA==", + "license": "MIT", "engines": { "node": ">=6" } }, "node_modules/ieee754": { "version": "1.2.1", - "resolved": "https://registry.npmjs.org/ieee754/-/ieee754-1.2.1.tgz", - "integrity": "sha512-dcyqhDvX1C46lXZcVqCpK+FtMRQVdIMN6/Df5js2zouUsqG7I6sFxitIC+7KYK29KdXOLHdu9zL4sFnoVQnqaA==", "funding": [ { "type": "github", @@ -13781,48 +12429,43 @@ "type": "consulting", "url": "https://feross.org/support" } - ] + ], + "license": "BSD-3-Clause" }, "node_modules/ignore": { - "version": "5.2.0", - "resolved": "https://registry.npmjs.org/ignore/-/ignore-5.2.0.tgz", - "integrity": "sha512-CmxgYGiEPCLhfLnpPp1MoRmifwEIOgjcHXxOBjv7mY96c+eWScsOP9c112ZyLdWHi0FxHjI+4uVhKYp/gcdRmQ==", + "version": "5.2.4", + "license": "MIT", "engines": { "node": ">= 4" } }, "node_modules/image-q": { "version": "4.0.0", - "resolved": "https://registry.npmjs.org/image-q/-/image-q-4.0.0.tgz", - "integrity": "sha512-PfJGVgIfKQJuq3s0tTDOKtztksibuUEbJQIYT3by6wctQo+Rdlh7ef4evJ5NCdxY4CfMbvFkocEwbl4BF8RlJw==", + "license": "MIT", "dependencies": { "@types/node": "16.9.1" } }, "node_modules/image-q/node_modules/@types/node": { "version": "16.9.1", - "resolved": "https://registry.npmjs.org/@types/node/-/node-16.9.1.tgz", - "integrity": "sha512-QpLcX9ZSsq3YYUUnD3nFDY8H7wctAhQj/TFKL8Ya8v5fMm3CFXxo8zStsLAl780ltoYoo1WvKUVGBQK+1ifr7g==" + "license": "MIT" }, "node_modules/immer": { "version": "9.0.21", - "resolved": "https://registry.npmjs.org/immer/-/immer-9.0.21.tgz", - "integrity": "sha512-bc4NBHqOqSfRW7POMkHd51LvClaeMXpm8dx0e8oE2GORbq5aRK7Bxl4FyzVLdGtLmvLKL7BTDBG5ACQm4HWjTA==", + "license": "MIT", "funding": { "type": "opencollective", "url": "https://opencollective.com/immer" } }, "node_modules/immutable": { - "version": "4.3.0", - "resolved": "https://registry.npmjs.org/immutable/-/immutable-4.3.0.tgz", - "integrity": "sha512-0AOCmOip+xgJwEVTQj1EfiDDOkPmuyllDuTuEX+DDXUgapLAsBIfkg3sxCYyCEA8mQqZrrxPUGjcOQ2JS3WLkg==", + "version": "4.3.4", + "license": "MIT", "peer": true }, "node_modules/import-fresh": { "version": "3.3.0", - "resolved": "https://registry.npmjs.org/import-fresh/-/import-fresh-3.3.0.tgz", - "integrity": "sha512-veYYhQa+D1QBKznvhUHxb8faxlrwUnxseDAbAp457E0wLNio2bOSKnjYDhMj+YiAq61xrMGhQk9iXVk5FzgQMw==", + "license": "MIT", "dependencies": { "parent-module": "^1.0.0", "resolve-from": "^4.0.0" @@ -13834,18 +12477,9 @@ "url": "https://github.com/sponsors/sindresorhus" } }, - "node_modules/import-fresh/node_modules/resolve-from": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/resolve-from/-/resolve-from-4.0.0.tgz", - "integrity": "sha512-pb/MYmXstAkysRFx8piNI1tGFNQIFA3vkE3Gq4EuA1dF6gHp/+vgZqsCGJapvy8N3Q+4o7FwvquPJcnZ7RYy4g==", - "engines": { - "node": ">=4" - } - }, "node_modules/import-local": { "version": "3.1.0", - "resolved": "https://registry.npmjs.org/import-local/-/import-local-3.1.0.tgz", - "integrity": "sha512-ASB07uLtnDs1o6EHjKpX34BKYDSqnFerfTOJL2HvMqF70LnxpjkzDB8J44oT9pu4AMPkQwf8jl6szgvNd2tRIg==", + "license": "MIT", "dependencies": { "pkg-dir": "^4.2.0", "resolve-cwd": "^3.0.0" @@ -13862,24 +12496,21 @@ }, "node_modules/imurmurhash": { "version": "0.1.4", - "resolved": "https://registry.npmjs.org/imurmurhash/-/imurmurhash-0.1.4.tgz", - "integrity": "sha512-JmXMZ6wuvDmLiHEml9ykzqO6lwFbof0GG4IkcGaENdCRDDmMVnny7s5HsIgHCbaq0w2MyPhDqkhTUgS2LU2PHA==", + "license": "MIT", "engines": { "node": ">=0.8.19" } }, "node_modules/indent-string": { "version": "4.0.0", - "resolved": "https://registry.npmjs.org/indent-string/-/indent-string-4.0.0.tgz", - "integrity": "sha512-EdDDZu4A2OyIK7Lr/2zG+w5jmbuk1DVBnEwREQvBzspBJkCEbRa8GxU1lghYcaGJCnRWibjDXlq779X1/y5xwg==", + "license": "MIT", "engines": { "node": ">=8" } }, "node_modules/inflight": { "version": "1.0.6", - "resolved": "https://registry.npmjs.org/inflight/-/inflight-1.0.6.tgz", - "integrity": "sha512-k92I/b08q4wvFscXCLvqfsHCrjrF7yiXsQuIVvVE7N82W3+aqpzuUdBbfhWcy/FZR3/4IgflMgKLOsvPDrGCJA==", + "license": "ISC", "dependencies": { "once": "^1.3.0", "wrappy": "1" @@ -13887,18 +12518,15 @@ }, "node_modules/inherits": { "version": "2.0.4", - "resolved": "https://registry.npmjs.org/inherits/-/inherits-2.0.4.tgz", - "integrity": "sha512-k/vGaX4/Yla3WzyMCvTQOXYeIHvqOKtnqBduzTHpzpQZzAskKMhZ2K+EnBiSM9zGSoIFeMpXKxa4dYeZIQqewQ==" + "license": "ISC" }, "node_modules/ini": { "version": "1.3.8", - "resolved": "https://registry.npmjs.org/ini/-/ini-1.3.8.tgz", - "integrity": "sha512-JV/yugV2uzW5iMRSiZAyDtQd+nxtUnjeLt0acNdw98kKLrvuRVyB80tsREOE7yvGVgalhZ6RNXCmEHkUKBKxew==" + "license": "ISC" }, "node_modules/internal-slot": { "version": "1.0.5", - "resolved": "https://registry.npmjs.org/internal-slot/-/internal-slot-1.0.5.tgz", - "integrity": "sha512-Y+R5hJrzs52QCG2laLn4udYVnxsfny9CpOhNhUvk/SSSVyF6T27FzRbF0sroPidSu3X8oEAkOn2K804mjpt6UQ==", + "license": "MIT", "dependencies": { "get-intrinsic": "^1.2.0", "has": "^1.0.3", @@ -13910,25 +12538,22 @@ }, "node_modules/io-ts": { "version": "1.10.4", - "resolved": "https://registry.npmjs.org/io-ts/-/io-ts-1.10.4.tgz", - "integrity": "sha512-b23PteSnYXSONJ6JQXRAlvJhuw8KOtkqa87W4wDtvMrud/DTJd5X+NpOOI+O/zZwVq6v0VLAaJ+1EDViKEuN9g==", + "license": "MIT", "peer": true, "dependencies": { "fp-ts": "^1.0.0" } }, "node_modules/ipaddr.js": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/ipaddr.js/-/ipaddr.js-2.0.1.tgz", - "integrity": "sha512-1qTgH9NG+IIJ4yfKs2e6Pp1bZg8wbDbKHT21HrLIeYBTRLgMYKnMTPAuI3Lcs61nfx5h1xlXnbJtH1kX5/d/ng==", + "version": "2.1.0", + "license": "MIT", "engines": { "node": ">= 10" } }, "node_modules/is-arguments": { "version": "1.1.1", - "resolved": "https://registry.npmjs.org/is-arguments/-/is-arguments-1.1.1.tgz", - "integrity": "sha512-8Q7EARjzEnKpt/PCD7e1cgUS0a6X8u5tdSiMqXhojOdoV9TsMsiO+9VLC5vAmO8N7/GmXn7yjR8qnA6bVAEzfA==", + "license": "MIT", "dependencies": { "call-bind": "^1.0.2", "has-tostringtag": "^1.0.0" @@ -13942,8 +12567,7 @@ }, "node_modules/is-array-buffer": { "version": "3.0.2", - "resolved": "https://registry.npmjs.org/is-array-buffer/-/is-array-buffer-3.0.2.tgz", - "integrity": "sha512-y+FyyR/w8vfIRq4eQcM1EYgSTnmHXPqaF+IgzgraytCFq5Xh8lllDVmAZolPJiZttZLeFSINPYMaEJ7/vWUa1w==", + "license": "MIT", "dependencies": { "call-bind": "^1.0.2", "get-intrinsic": "^1.2.0", @@ -13955,13 +12579,24 @@ }, "node_modules/is-arrayish": { "version": "0.2.1", - "resolved": "https://registry.npmjs.org/is-arrayish/-/is-arrayish-0.2.1.tgz", - "integrity": "sha512-zz06S8t0ozoDXMG+ube26zeCTNXcKIPJZJi8hBrF4idCLms4CG9QtK7qBl1boi5ODzFpjswb5JPmHCbMpjaYzg==" + "license": "MIT" + }, + "node_modules/is-async-function": { + "version": "2.0.0", + "license": "MIT", + "dependencies": { + "has-tostringtag": "^1.0.0" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } }, "node_modules/is-bigint": { "version": "1.0.4", - "resolved": "https://registry.npmjs.org/is-bigint/-/is-bigint-1.0.4.tgz", - "integrity": "sha512-zB9CruMamjym81i2JZ3UMn54PKGsQzsJeo6xvN3HJJ4CAsQNB6iRutp2To77OfCNuoxspsIhzaPoO1zyCEhFOg==", + "license": "MIT", "dependencies": { "has-bigints": "^1.0.1" }, @@ -13971,8 +12606,7 @@ }, "node_modules/is-binary-path": { "version": "2.1.0", - "resolved": "https://registry.npmjs.org/is-binary-path/-/is-binary-path-2.1.0.tgz", - "integrity": "sha512-ZMERYes6pDydyuGidse7OsHxtbI7WVeUEozgR/g7rd0xUimYNlvZRE/K2MgZTjWy725IfelLeVcEM97mmtRGXw==", + "license": "MIT", "dependencies": { "binary-extensions": "^2.0.0" }, @@ -13982,8 +12616,7 @@ }, "node_modules/is-boolean-object": { "version": "1.1.2", - "resolved": "https://registry.npmjs.org/is-boolean-object/-/is-boolean-object-1.1.2.tgz", - "integrity": "sha512-gDYaKHJmnj4aWxyj6YHyXVpdQawtVLHU5cb+eztPGczf6cjuTdwve5ZIEfgXqH4e57An1D1AKf8CZ3kYrQRqYA==", + "license": "MIT", "dependencies": { "call-bind": "^1.0.2", "has-tostringtag": "^1.0.0" @@ -13997,8 +12630,6 @@ }, "node_modules/is-buffer": { "version": "2.0.5", - "resolved": "https://registry.npmjs.org/is-buffer/-/is-buffer-2.0.5.tgz", - "integrity": "sha512-i2R6zNFDwgEHJyQUtJEk0XFi1i0dPFn/oqjK3/vPCcDeJvW5NQ83V8QbicfF1SupOaB0h8ntgBC2YiE7dfyctQ==", "funding": [ { "type": "github", @@ -14013,6 +12644,7 @@ "url": "https://feross.org/support" } ], + "license": "MIT", "peer": true, "engines": { "node": ">=4" @@ -14020,8 +12652,7 @@ }, "node_modules/is-callable": { "version": "1.2.7", - "resolved": "https://registry.npmjs.org/is-callable/-/is-callable-1.2.7.tgz", - "integrity": "sha512-1BC0BVFhS/p0qtw6enp8e+8OD0UrK0oFLztSjNzhcKA3WDuJxxAPXzPuPtKkjEY9UUoEWlX/8fgKeu2S8i9JTA==", + "license": "MIT", "engines": { "node": ">= 0.4" }, @@ -14030,9 +12661,8 @@ } }, "node_modules/is-core-module": { - "version": "2.9.0", - "resolved": "https://registry.npmjs.org/is-core-module/-/is-core-module-2.9.0.tgz", - "integrity": "sha512-+5FPy5PnwmO3lvfMb0AsoPaBG+5KHUI0wYFXOtYPnVVVspTFUuMZNfNaNVRt3FZadstu2c8x23vykRW/NBoU6A==", + "version": "2.13.0", + "license": "MIT", "dependencies": { "has": "^1.0.3" }, @@ -14042,8 +12672,7 @@ }, "node_modules/is-date-object": { "version": "1.0.5", - "resolved": "https://registry.npmjs.org/is-date-object/-/is-date-object-1.0.5.tgz", - "integrity": "sha512-9YQaSxsAiSwcvS33MBk3wTCVnWK+HhF8VZR2jRxehM16QcVOdHqPn4VPHmRK4lSr38n9JriurInLcP90xsYNfQ==", + "license": "MIT", "dependencies": { "has-tostringtag": "^1.0.0" }, @@ -14056,8 +12685,7 @@ }, "node_modules/is-docker": { "version": "2.2.1", - "resolved": "https://registry.npmjs.org/is-docker/-/is-docker-2.2.1.tgz", - "integrity": "sha512-F+i2BKsFrH66iaUFc0woD8sLy8getkwTwtOBjvs56Cx4CgJDeKQeqfz8wAYiSb8JOprWhHH5p77PbmYCvvUuXQ==", + "license": "MIT", "bin": { "is-docker": "cli.js" }, @@ -14070,37 +12698,42 @@ }, "node_modules/is-extglob": { "version": "2.1.1", - "resolved": "https://registry.npmjs.org/is-extglob/-/is-extglob-2.1.1.tgz", - "integrity": "sha512-SbKbANkN603Vi4jEZv49LeVJMn4yGwsbzZworEoyEiutsN3nJYdbO36zfhGJ6QEDpOZIFkDtnq5JRxmvl3jsoQ==", + "license": "MIT", "engines": { "node": ">=0.10.0" } }, + "node_modules/is-finalizationregistry": { + "version": "1.0.2", + "license": "MIT", + "dependencies": { + "call-bind": "^1.0.2" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, "node_modules/is-fullwidth-code-point": { "version": "3.0.0", - "resolved": "https://registry.npmjs.org/is-fullwidth-code-point/-/is-fullwidth-code-point-3.0.0.tgz", - "integrity": "sha512-zymm5+u+sCsSWyD9qNaejV3DFvhCKclKdizYaJUuHA83RLjb7nSuGnddCHGv0hk+KY7BMAlsWeK4Ueg6EV6XQg==", + "license": "MIT", "engines": { "node": ">=8" } }, "node_modules/is-function": { "version": "1.0.2", - "resolved": "https://registry.npmjs.org/is-function/-/is-function-1.0.2.tgz", - "integrity": "sha512-lw7DUp0aWXYg+CBCN+JKkcE0Q2RayZnSvnZBlwgxHBQhqt5pZNVy4Ri7H9GmmXkdu7LUthszM+Tor1u/2iBcpQ==" + "license": "MIT" }, "node_modules/is-generator-fn": { "version": "2.1.0", - "resolved": "https://registry.npmjs.org/is-generator-fn/-/is-generator-fn-2.1.0.tgz", - "integrity": "sha512-cTIB4yPYL/Grw0EaSzASzg6bBy9gqCofvWN8okThAYIxKJZC+udlRAmGbM0XLeniEJSs8uEgHPGuHSe1XsOLSQ==", + "license": "MIT", "engines": { "node": ">=6" } }, "node_modules/is-generator-function": { "version": "1.0.10", - "resolved": "https://registry.npmjs.org/is-generator-function/-/is-generator-function-1.0.10.tgz", - "integrity": "sha512-jsEjy9l3yiXEQ+PsXdmBwEPcOxaXWLspKdplFUVI9vq1iZgIekeC0L167qeu86czQaxed3q/Uzuw0swL0irL8A==", + "license": "MIT", "dependencies": { "has-tostringtag": "^1.0.0" }, @@ -14113,8 +12746,7 @@ }, "node_modules/is-glob": { "version": "4.0.3", - "resolved": "https://registry.npmjs.org/is-glob/-/is-glob-4.0.3.tgz", - "integrity": "sha512-xelSayHH36ZgE7ZWhli7pW34hNbNl8Ojv5KVmkJD4hBdD3th8Tfk9vYasLM+mXWOZhFkgZfxhLSnrwRr4elSSg==", + "license": "MIT", "dependencies": { "is-extglob": "^2.1.1" }, @@ -14124,22 +12756,26 @@ }, "node_modules/is-hex-prefixed": { "version": "1.0.0", - "resolved": "https://registry.npmjs.org/is-hex-prefixed/-/is-hex-prefixed-1.0.0.tgz", - "integrity": "sha512-WvtOiug1VFrE9v1Cydwm+FnXd3+w9GaeVUss5W4v/SLy3UW00vP+6iNF2SdnfiBoLy4bTqVdkftNGTUeOFVsbA==", + "license": "MIT", "engines": { "node": ">=6.5.0", "npm": ">=3" } }, + "node_modules/is-map": { + "version": "2.0.2", + "license": "MIT", + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, "node_modules/is-module": { "version": "1.0.0", - "resolved": "https://registry.npmjs.org/is-module/-/is-module-1.0.0.tgz", - "integrity": "sha512-51ypPSPCoTEIN9dy5Oy+h4pShgJmPCygKfyRCISBI+JoWT/2oJvK8QPxmwv7b/p239jXrm9M1mlQbyKJ5A152g==" + "license": "MIT" }, "node_modules/is-negative-zero": { "version": "2.0.2", - "resolved": "https://registry.npmjs.org/is-negative-zero/-/is-negative-zero-2.0.2.tgz", - "integrity": "sha512-dqJvarLawXsFbNDeJW7zAz8ItJ9cd28YufuuFzh0G8pNHjJMnY08Dv7sYX2uF5UpQOwieAeOExEYAWWfu7ZZUA==", + "license": "MIT", "engines": { "node": ">= 0.4" }, @@ -14149,16 +12785,14 @@ }, "node_modules/is-number": { "version": "7.0.0", - "resolved": "https://registry.npmjs.org/is-number/-/is-number-7.0.0.tgz", - "integrity": "sha512-41Cifkg6e8TylSpdtTpeLVMqvSBEVzTttHvERD741+pnZ8ANv0004MRL43QKPDlK9cGvNp6NZWZUBlbGXYxxng==", + "license": "MIT", "engines": { "node": ">=0.12.0" } }, "node_modules/is-number-object": { "version": "1.0.7", - "resolved": "https://registry.npmjs.org/is-number-object/-/is-number-object-1.0.7.tgz", - "integrity": "sha512-k1U0IRzLMo7ZlYIfzRu23Oh6MiIFasgpb9X76eqfFZAqwH44UI4KTBvBYIZ1dSL9ZzChTB9ShHfLkR4pdW5krQ==", + "license": "MIT", "dependencies": { "has-tostringtag": "^1.0.0" }, @@ -14171,16 +12805,21 @@ }, "node_modules/is-obj": { "version": "1.0.1", - "resolved": "https://registry.npmjs.org/is-obj/-/is-obj-1.0.1.tgz", - "integrity": "sha512-l4RyHgRqGN4Y3+9JHVrNqO+tN0rV5My76uW5/nuO4K1b6vw5G8d/cmFjP9tRfEsdhZNt0IFdZuK/c2Vr4Nb+Qg==", + "license": "MIT", "engines": { "node": ">=0.10.0" } }, + "node_modules/is-path-inside": { + "version": "3.0.3", + "license": "MIT", + "engines": { + "node": ">=8" + } + }, "node_modules/is-plain-obj": { "version": "3.0.0", - "resolved": "https://registry.npmjs.org/is-plain-obj/-/is-plain-obj-3.0.0.tgz", - "integrity": "sha512-gwsOE28k+23GP1B6vFl1oVh/WOzmawBrKwo5Ev6wMKzPkaXaCDIQKzLnvsA42DRlbVTWorkgTKIviAKCWkfUwA==", + "license": "MIT", "engines": { "node": ">=10" }, @@ -14190,13 +12829,15 @@ }, "node_modules/is-potential-custom-element-name": { "version": "1.0.1", - "resolved": "https://registry.npmjs.org/is-potential-custom-element-name/-/is-potential-custom-element-name-1.0.1.tgz", - "integrity": "sha512-bCYeRA2rVibKZd+s2625gGnGF/t7DSqDs4dP7CrLA1m7jKWz6pps0LpYLJN8Q64HtmPKJ1hrN3nzPNKFEKOUiQ==" + "license": "MIT" + }, + "node_modules/is-promise": { + "version": "4.0.0", + "license": "MIT" }, "node_modules/is-regex": { "version": "1.1.4", - "resolved": "https://registry.npmjs.org/is-regex/-/is-regex-1.1.4.tgz", - "integrity": "sha512-kvRdxDsxZjhzUX07ZnLydzS1TU/TJlTUHHY4YLL87e37oUA49DfkLqgy+VjFocowy29cKvcSiu+kIv728jTTVg==", + "license": "MIT", "dependencies": { "call-bind": "^1.0.2", "has-tostringtag": "^1.0.0" @@ -14210,24 +12851,28 @@ }, "node_modules/is-regexp": { "version": "1.0.0", - "resolved": "https://registry.npmjs.org/is-regexp/-/is-regexp-1.0.0.tgz", - "integrity": "sha512-7zjFAPO4/gwyQAAgRRmqeEeyIICSdmCqa3tsVHMdBzaXXRiqopZL4Cyghg/XulGWrtABTpbnYYzzIRffLkP4oA==", + "license": "MIT", "engines": { "node": ">=0.10.0" } }, "node_modules/is-root": { "version": "2.1.0", - "resolved": "https://registry.npmjs.org/is-root/-/is-root-2.1.0.tgz", - "integrity": "sha512-AGOriNp96vNBd3HtU+RzFEc75FfR5ymiYv8E553I71SCeXBiMsVDUtdio1OEFvrPyLIQ9tVR5RxXIFe5PUFjMg==", + "license": "MIT", "engines": { "node": ">=6" } }, + "node_modules/is-set": { + "version": "2.0.2", + "license": "MIT", + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, "node_modules/is-shared-array-buffer": { "version": "1.0.2", - "resolved": "https://registry.npmjs.org/is-shared-array-buffer/-/is-shared-array-buffer-1.0.2.tgz", - "integrity": "sha512-sqN2UDu1/0y6uvXyStCOzyhAjCSlHceFoMKJW8W9EU9cvic/QdsZ0kEU93HEy3IUEFZIiH/3w+AH/UQbPHNdhA==", + "license": "MIT", "dependencies": { "call-bind": "^1.0.2" }, @@ -14237,8 +12882,7 @@ }, "node_modules/is-stream": { "version": "2.0.1", - "resolved": "https://registry.npmjs.org/is-stream/-/is-stream-2.0.1.tgz", - "integrity": "sha512-hFoiJiTl63nn+kstHGBtewWSKnQLpyb155KHheA1l39uvtO9nWIop1p3udqPcUd/xbF1VLMO4n7OI6p7RbngDg==", + "license": "MIT", "engines": { "node": ">=8" }, @@ -14248,8 +12892,7 @@ }, "node_modules/is-string": { "version": "1.0.7", - "resolved": "https://registry.npmjs.org/is-string/-/is-string-1.0.7.tgz", - "integrity": "sha512-tE2UXzivje6ofPW7l23cjDOMa09gb7xlAqG6jG5ej6uPV32TlWP3NKPigtaGeHNu9fohccRYvIiZMfOOnOYUtg==", + "license": "MIT", "dependencies": { "has-tostringtag": "^1.0.0" }, @@ -14262,8 +12905,7 @@ }, "node_modules/is-symbol": { "version": "1.0.4", - "resolved": "https://registry.npmjs.org/is-symbol/-/is-symbol-1.0.4.tgz", - "integrity": "sha512-C/CPBqKWnvdcxqIARxyOh4v1UUEOCHpgDa0WYgpKDFMszcrPcffg5uhwSgPCLD2WWxmq6isisz87tzT01tuGhg==", + "license": "MIT", "dependencies": { "has-symbols": "^1.0.2" }, @@ -14275,15 +12917,10 @@ } }, "node_modules/is-typed-array": { - "version": "1.1.10", - "resolved": "https://registry.npmjs.org/is-typed-array/-/is-typed-array-1.1.10.tgz", - "integrity": "sha512-PJqgEHiWZvMpaFZ3uTc8kHPM4+4ADTlDniuQL7cU/UDA0Ql7F70yGfHph3cLNe+c9toaigv+DFzTJKhc2CtO6A==", + "version": "1.1.12", + "license": "MIT", "dependencies": { - "available-typed-arrays": "^1.0.5", - "call-bind": "^1.0.2", - "for-each": "^0.3.3", - "gopd": "^1.0.1", - "has-tostringtag": "^1.0.0" + "which-typed-array": "^1.1.11" }, "engines": { "node": ">= 0.4" @@ -14294,13 +12931,11 @@ }, "node_modules/is-typedarray": { "version": "1.0.0", - "resolved": "https://registry.npmjs.org/is-typedarray/-/is-typedarray-1.0.0.tgz", - "integrity": "sha512-cyA56iCMHAh5CdzjJIa4aohJyeO1YbwLi3Jc35MmRU6poroFjIGZzUzupGiRPOjgHg9TLu43xbpwXk523fMxKA==" + "license": "MIT" }, "node_modules/is-unicode-supported": { "version": "0.1.0", - "resolved": "https://registry.npmjs.org/is-unicode-supported/-/is-unicode-supported-0.1.0.tgz", - "integrity": "sha512-knxG2q4UC3u8stRGyAVJCOdxFmv5DZiRcdlIaAQXAbSfJya+OhopNotLQrstBhququ4ZpuKbDc/8S6mgXgPFPw==", + "license": "MIT", "peer": true, "engines": { "node": ">=10" @@ -14309,10 +12944,16 @@ "url": "https://github.com/sponsors/sindresorhus" } }, + "node_modules/is-weakmap": { + "version": "2.0.1", + "license": "MIT", + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, "node_modules/is-weakref": { "version": "1.0.2", - "resolved": "https://registry.npmjs.org/is-weakref/-/is-weakref-1.0.2.tgz", - "integrity": "sha512-qctsuLZmIQ0+vSSMfoVvyFe2+GSEvnmZ2ezTup1SBse9+twCCeial6EEi3Nc2KFcf6+qz2FBPnjXsk8xhKSaPQ==", + "license": "MIT", "dependencies": { "call-bind": "^1.0.2" }, @@ -14320,10 +12961,20 @@ "url": "https://github.com/sponsors/ljharb" } }, + "node_modules/is-weakset": { + "version": "2.0.2", + "license": "MIT", + "dependencies": { + "call-bind": "^1.0.2", + "get-intrinsic": "^1.1.1" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, "node_modules/is-wsl": { "version": "2.2.0", - "resolved": "https://registry.npmjs.org/is-wsl/-/is-wsl-2.2.0.tgz", - "integrity": "sha512-fKzAra0rGJUUBwGBgNkHZuToZcn+TtXHpeCgmkMJMMYx1sQDYaCSyjJBSCa2nH1DGm7s3n1oBnohoVTBaN7Lww==", + "license": "MIT", "dependencies": { "is-docker": "^2.0.0" }, @@ -14332,24 +12983,16 @@ } }, "node_modules/isarray": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/isarray/-/isarray-1.0.0.tgz", - "integrity": "sha512-VLghIWNM6ELQzo7zwmcg0NmTVyWKYjvIeM83yjp0wRDTmUnrM678fQbcKBo6n2CJEF0szoG//ytg+TKla89ALQ==" + "version": "2.0.5", + "license": "MIT" }, "node_modules/isexe": { "version": "2.0.0", - "resolved": "https://registry.npmjs.org/isexe/-/isexe-2.0.0.tgz", - "integrity": "sha512-RHxMLp9lnKHGHRng9QFhRCMbYAcVpn69smSGcq3f36xjgVVWThj4qqLbTLlq7Ssj8B+fIQ1EuCEGI2lKsyQeIw==" - }, - "node_modules/isnumber": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/isnumber/-/isnumber-1.0.0.tgz", - "integrity": "sha512-JLiSz/zsZcGFXPrB4I/AGBvtStkt+8QmksyZBZnVXnnK9XdTEyz0tX8CRYljtwYDuIuZzih6DpHQdi+3Q6zHPw==" + "license": "ISC" }, "node_modules/isomorphic-fetch": { "version": "3.0.0", - "resolved": "https://registry.npmjs.org/isomorphic-fetch/-/isomorphic-fetch-3.0.0.tgz", - "integrity": "sha512-qvUtwJ3j6qwsF3jLxkZ72qCgjMysPzDfeV240JHiGZsANBYd+EEuu35v7dfrJ9Up0Ak07D7GGSkGhCHTqg/5wA==", + "license": "MIT", "dependencies": { "node-fetch": "^2.6.1", "whatwg-fetch": "^3.4.1" @@ -14357,21 +13000,18 @@ }, "node_modules/isstream": { "version": "0.1.2", - "resolved": "https://registry.npmjs.org/isstream/-/isstream-0.1.2.tgz", - "integrity": "sha512-Yljz7ffyPbrLpLngrMtZ7NduUgVvi6wG9RJ9IUcyCd59YQ911PBJphODUcbOVbqYfxe1wuYf/LJ8PauMRwsM/g==" + "license": "MIT" }, "node_modules/istanbul-lib-coverage": { "version": "3.2.0", - "resolved": "https://registry.npmjs.org/istanbul-lib-coverage/-/istanbul-lib-coverage-3.2.0.tgz", - "integrity": "sha512-eOeJ5BHCmHYvQK7xt9GkdHuzuCGS1Y6g9Gvnx3Ym33fz/HpLRYxiS0wHNr+m/MBC8B647Xt608vCDEvhl9c6Mw==", + "license": "BSD-3-Clause", "engines": { "node": ">=8" } }, "node_modules/istanbul-lib-instrument": { - "version": "5.2.0", - "resolved": "https://registry.npmjs.org/istanbul-lib-instrument/-/istanbul-lib-instrument-5.2.0.tgz", - "integrity": "sha512-6Lthe1hqXHBNsqvgDzGO6l03XNeu3CrG4RqQ1KM9+l5+jNGpEJfIELx1NS3SEHmJQA8np/u+E4EPRKRiu6m19A==", + "version": "5.2.1", + "license": "BSD-3-Clause", "dependencies": { "@babel/core": "^7.12.3", "@babel/parser": "^7.14.7", @@ -14384,49 +13024,40 @@ } }, "node_modules/istanbul-lib-instrument/node_modules/semver": { - "version": "6.3.0", - "resolved": "https://registry.npmjs.org/semver/-/semver-6.3.0.tgz", - "integrity": "sha512-b39TBaTSfV6yBrapU89p5fKekE2m/NwnDocOVruQFS1/veMgdzuPcnOM34M6CwxW8jH/lxEa5rBoDeUwu5HHTw==", + "version": "6.3.1", + "license": "ISC", "bin": { "semver": "bin/semver.js" } }, "node_modules/istanbul-lib-report": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/istanbul-lib-report/-/istanbul-lib-report-3.0.0.tgz", - "integrity": "sha512-wcdi+uAKzfiGT2abPpKZ0hSU1rGQjUQnLvtY5MpQ7QCTahD3VODhcu4wcfY1YtkGaDD5yuydOLINXsfbus9ROw==", + "version": "3.0.1", + "license": "BSD-3-Clause", "dependencies": { "istanbul-lib-coverage": "^3.0.0", - "make-dir": "^3.0.0", + "make-dir": "^4.0.0", "supports-color": "^7.1.0" }, "engines": { - "node": ">=8" + "node": ">=10" } }, - "node_modules/istanbul-lib-report/node_modules/has-flag": { + "node_modules/istanbul-lib-report/node_modules/make-dir": { "version": "4.0.0", - "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz", - "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==", - "engines": { - "node": ">=8" - } - }, - "node_modules/istanbul-lib-report/node_modules/supports-color": { - "version": "7.2.0", - "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", - "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", + "license": "MIT", "dependencies": { - "has-flag": "^4.0.0" + "semver": "^7.5.3" }, "engines": { - "node": ">=8" + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" } }, "node_modules/istanbul-lib-source-maps": { "version": "4.0.1", - "resolved": "https://registry.npmjs.org/istanbul-lib-source-maps/-/istanbul-lib-source-maps-4.0.1.tgz", - "integrity": "sha512-n3s8EwkdFIJCG3BPKBYvskgXGoy88ARzvegkitk60NxRdwltLOTaH7CUiMRXvwYorl0Q712iEjcWB+fK/MrWVw==", + "license": "BSD-3-Clause", "dependencies": { "debug": "^4.1.1", "istanbul-lib-coverage": "^3.0.0", @@ -14438,16 +13069,14 @@ }, "node_modules/istanbul-lib-source-maps/node_modules/source-map": { "version": "0.6.1", - "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz", - "integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==", + "license": "BSD-3-Clause", "engines": { "node": ">=0.10.0" } }, "node_modules/istanbul-reports": { - "version": "3.1.4", - "resolved": "https://registry.npmjs.org/istanbul-reports/-/istanbul-reports-3.1.4.tgz", - "integrity": "sha512-r1/DshN4KSE7xWEknZLLLLDn5CJybV3nw01VTkp6D5jzLuELlcbudfj/eSQFvrKsJuTVCGnePO7ho82Nw9zzfw==", + "version": "3.1.6", + "license": "BSD-3-Clause", "dependencies": { "html-escaper": "^2.0.0", "istanbul-lib-report": "^3.0.0" @@ -14456,15 +13085,25 @@ "node": ">=8" } }, + "node_modules/iterator.prototype": { + "version": "1.1.0", + "license": "MIT", + "dependencies": { + "define-properties": "^1.1.4", + "get-intrinsic": "^1.1.3", + "has-symbols": "^1.0.3", + "has-tostringtag": "^1.0.0", + "reflect.getprototypeof": "^1.0.3" + } + }, "node_modules/jake": { - "version": "10.8.5", - "resolved": "https://registry.npmjs.org/jake/-/jake-10.8.5.tgz", - "integrity": "sha512-sVpxYeuAhWt0OTWITwT98oyV0GsXyMlXCF+3L1SuafBVUIr/uILGRB+NqwkzhgXKvoJpDIpQvqkUALgdmQsQxw==", + "version": "10.8.7", + "license": "Apache-2.0", "dependencies": { "async": "^3.2.3", "chalk": "^4.0.2", - "filelist": "^1.0.1", - "minimatch": "^3.0.4" + "filelist": "^1.0.4", + "minimatch": "^3.1.2" }, "bin": { "jake": "bin/cli.js" @@ -14473,74 +13112,9 @@ "node": ">=10" } }, - "node_modules/jake/node_modules/ansi-styles": { - "version": "4.3.0", - "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", - "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", - "dependencies": { - "color-convert": "^2.0.1" - }, - "engines": { - "node": ">=8" - }, - "funding": { - "url": "https://github.com/chalk/ansi-styles?sponsor=1" - } - }, - "node_modules/jake/node_modules/chalk": { - "version": "4.1.2", - "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz", - "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==", - "dependencies": { - "ansi-styles": "^4.1.0", - "supports-color": "^7.1.0" - }, - "engines": { - "node": ">=10" - }, - "funding": { - "url": "https://github.com/chalk/chalk?sponsor=1" - } - }, - "node_modules/jake/node_modules/color-convert": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz", - "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==", - "dependencies": { - "color-name": "~1.1.4" - }, - "engines": { - "node": ">=7.0.0" - } - }, - "node_modules/jake/node_modules/color-name": { - "version": "1.1.4", - "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz", - "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==" - }, - "node_modules/jake/node_modules/has-flag": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz", - "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==", - "engines": { - "node": ">=8" - } - }, - "node_modules/jake/node_modules/supports-color": { - "version": "7.2.0", - "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", - "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", - "dependencies": { - "has-flag": "^4.0.0" - }, - "engines": { - "node": ">=8" - } - }, "node_modules/jest": { "version": "27.5.1", - "resolved": "https://registry.npmjs.org/jest/-/jest-27.5.1.tgz", - "integrity": "sha512-Yn0mADZB89zTtjkPJEXwrac3LHudkQMR+Paqa8uxJHCBr9agxztUifWCyiYrjhMPBoUVBjyny0I7XH6ozDr7QQ==", + "license": "MIT", "dependencies": { "@jest/core": "^27.5.1", "import-local": "^3.0.2", @@ -14563,8 +13137,7 @@ }, "node_modules/jest-changed-files": { "version": "27.5.1", - "resolved": "https://registry.npmjs.org/jest-changed-files/-/jest-changed-files-27.5.1.tgz", - "integrity": "sha512-buBLMiByfWGCoMsLLzGUUSpAmIAGnbR2KJoMN10ziLhOLvP4e0SlypHnAel8iqQXTrcbmfEY9sSqae5sgUsTvw==", + "license": "MIT", "dependencies": { "@jest/types": "^27.5.1", "execa": "^5.0.0", @@ -14576,8 +13149,7 @@ }, "node_modules/jest-circus": { "version": "27.5.1", - "resolved": "https://registry.npmjs.org/jest-circus/-/jest-circus-27.5.1.tgz", - "integrity": "sha512-D95R7x5UtlMA5iBYsOHFFbMD/GVA4R/Kdq15f7xYWUfWHBto9NYRsOvnSauTgdF+ogCpJ4tyKOXhUifxS65gdw==", + "license": "MIT", "dependencies": { "@jest/environment": "^27.5.1", "@jest/test-result": "^27.5.1", @@ -14603,74 +13175,9 @@ "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0" } }, - "node_modules/jest-circus/node_modules/ansi-styles": { - "version": "4.3.0", - "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", - "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", - "dependencies": { - "color-convert": "^2.0.1" - }, - "engines": { - "node": ">=8" - }, - "funding": { - "url": "https://github.com/chalk/ansi-styles?sponsor=1" - } - }, - "node_modules/jest-circus/node_modules/chalk": { - "version": "4.1.2", - "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz", - "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==", - "dependencies": { - "ansi-styles": "^4.1.0", - "supports-color": "^7.1.0" - }, - "engines": { - "node": ">=10" - }, - "funding": { - "url": "https://github.com/chalk/chalk?sponsor=1" - } - }, - "node_modules/jest-circus/node_modules/color-convert": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz", - "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==", - "dependencies": { - "color-name": "~1.1.4" - }, - "engines": { - "node": ">=7.0.0" - } - }, - "node_modules/jest-circus/node_modules/color-name": { - "version": "1.1.4", - "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz", - "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==" - }, - "node_modules/jest-circus/node_modules/has-flag": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz", - "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==", - "engines": { - "node": ">=8" - } - }, - "node_modules/jest-circus/node_modules/supports-color": { - "version": "7.2.0", - "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", - "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", - "dependencies": { - "has-flag": "^4.0.0" - }, - "engines": { - "node": ">=8" - } - }, "node_modules/jest-cli": { "version": "27.5.1", - "resolved": "https://registry.npmjs.org/jest-cli/-/jest-cli-27.5.1.tgz", - "integrity": "sha512-Hc6HOOwYq4/74/c62dEE3r5elx8wjYqxY0r0G/nFrLDPMFRu6RA/u8qINOIkvhxG7mMQ5EJsOGfRpI8L6eFUVw==", + "license": "MIT", "dependencies": { "@jest/core": "^27.5.1", "@jest/test-result": "^27.5.1", @@ -14700,74 +13207,9 @@ } } }, - "node_modules/jest-cli/node_modules/ansi-styles": { - "version": "4.3.0", - "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", - "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", - "dependencies": { - "color-convert": "^2.0.1" - }, - "engines": { - "node": ">=8" - }, - "funding": { - "url": "https://github.com/chalk/ansi-styles?sponsor=1" - } - }, - "node_modules/jest-cli/node_modules/chalk": { - "version": "4.1.2", - "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz", - "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==", - "dependencies": { - "ansi-styles": "^4.1.0", - "supports-color": "^7.1.0" - }, - "engines": { - "node": ">=10" - }, - "funding": { - "url": "https://github.com/chalk/chalk?sponsor=1" - } - }, - "node_modules/jest-cli/node_modules/color-convert": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz", - "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==", - "dependencies": { - "color-name": "~1.1.4" - }, - "engines": { - "node": ">=7.0.0" - } - }, - "node_modules/jest-cli/node_modules/color-name": { - "version": "1.1.4", - "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz", - "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==" - }, - "node_modules/jest-cli/node_modules/has-flag": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz", - "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==", - "engines": { - "node": ">=8" - } - }, - "node_modules/jest-cli/node_modules/supports-color": { - "version": "7.2.0", - "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", - "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", - "dependencies": { - "has-flag": "^4.0.0" - }, - "engines": { - "node": ">=8" - } - }, "node_modules/jest-config": { "version": "27.5.1", - "resolved": "https://registry.npmjs.org/jest-config/-/jest-config-27.5.1.tgz", - "integrity": "sha512-5sAsjm6tGdsVbW9ahcChPAFCk4IlkQUknH5AvKjuLTSlcO/wCZKyFdn7Rg0EkC+OGgWODEy2hDpWB1PgzH0JNA==", + "license": "MIT", "dependencies": { "@babel/core": "^7.8.0", "@jest/test-sequencer": "^27.5.1", @@ -14806,22904 +13248,767 @@ } } }, - "node_modules/jest-config/node_modules/ansi-styles": { - "version": "4.3.0", - "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", - "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", + "node_modules/jest-diff": { + "version": "27.5.1", + "license": "MIT", "dependencies": { - "color-convert": "^2.0.1" + "chalk": "^4.0.0", + "diff-sequences": "^27.5.1", + "jest-get-type": "^27.5.1", + "pretty-format": "^27.5.1" }, "engines": { - "node": ">=8" - }, - "funding": { - "url": "https://github.com/chalk/ansi-styles?sponsor=1" + "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0" } }, - "node_modules/jest-config/node_modules/chalk": { - "version": "4.1.2", - "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz", - "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==", + "node_modules/jest-docblock": { + "version": "27.5.1", + "license": "MIT", "dependencies": { - "ansi-styles": "^4.1.0", - "supports-color": "^7.1.0" + "detect-newline": "^3.0.0" }, "engines": { - "node": ">=10" - }, - "funding": { - "url": "https://github.com/chalk/chalk?sponsor=1" + "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0" } }, - "node_modules/jest-config/node_modules/color-convert": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz", - "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==", + "node_modules/jest-each": { + "version": "27.5.1", + "license": "MIT", "dependencies": { - "color-name": "~1.1.4" + "@jest/types": "^27.5.1", + "chalk": "^4.0.0", + "jest-get-type": "^27.5.1", + "jest-util": "^27.5.1", + "pretty-format": "^27.5.1" }, "engines": { - "node": ">=7.0.0" - } - }, - "node_modules/jest-config/node_modules/color-name": { - "version": "1.1.4", - "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz", - "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==" - }, - "node_modules/jest-config/node_modules/has-flag": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz", - "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==", - "engines": { - "node": ">=8" + "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0" } }, - "node_modules/jest-config/node_modules/supports-color": { - "version": "7.2.0", - "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", - "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", + "node_modules/jest-environment-jsdom": { + "version": "27.5.1", + "license": "MIT", "dependencies": { - "has-flag": "^4.0.0" + "@jest/environment": "^27.5.1", + "@jest/fake-timers": "^27.5.1", + "@jest/types": "^27.5.1", + "@types/node": "*", + "jest-mock": "^27.5.1", + "jest-util": "^27.5.1", + "jsdom": "^16.6.0" }, "engines": { - "node": ">=8" + "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0" } }, - "node_modules/jest-diff": { + "node_modules/jest-environment-node": { "version": "27.5.1", - "resolved": "https://registry.npmjs.org/jest-diff/-/jest-diff-27.5.1.tgz", - "integrity": "sha512-m0NvkX55LDt9T4mctTEgnZk3fmEg3NRYutvMPWM/0iPnkFj2wIeF45O1718cMSOFO1vINkqmxqD8vE37uTEbqw==", + "license": "MIT", "dependencies": { - "chalk": "^4.0.0", - "diff-sequences": "^27.5.1", - "jest-get-type": "^27.5.1", - "pretty-format": "^27.5.1" + "@jest/environment": "^27.5.1", + "@jest/fake-timers": "^27.5.1", + "@jest/types": "^27.5.1", + "@types/node": "*", + "jest-mock": "^27.5.1", + "jest-util": "^27.5.1" }, "engines": { "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0" } }, - "node_modules/jest-diff/node_modules/ansi-styles": { - "version": "4.3.0", - "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", - "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", - "dependencies": { - "color-convert": "^2.0.1" - }, + "node_modules/jest-get-type": { + "version": "27.5.1", + "license": "MIT", "engines": { - "node": ">=8" - }, - "funding": { - "url": "https://github.com/chalk/ansi-styles?sponsor=1" + "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0" } }, - "node_modules/jest-diff/node_modules/chalk": { - "version": "4.1.2", - "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz", - "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==", + "node_modules/jest-haste-map": { + "version": "27.5.1", + "license": "MIT", "dependencies": { - "ansi-styles": "^4.1.0", - "supports-color": "^7.1.0" - }, - "engines": { - "node": ">=10" - }, - "funding": { - "url": "https://github.com/chalk/chalk?sponsor=1" - } - }, - "node_modules/jest-diff/node_modules/color-convert": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz", - "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==", - "dependencies": { - "color-name": "~1.1.4" + "@jest/types": "^27.5.1", + "@types/graceful-fs": "^4.1.2", + "@types/node": "*", + "anymatch": "^3.0.3", + "fb-watchman": "^2.0.0", + "graceful-fs": "^4.2.9", + "jest-regex-util": "^27.5.1", + "jest-serializer": "^27.5.1", + "jest-util": "^27.5.1", + "jest-worker": "^27.5.1", + "micromatch": "^4.0.4", + "walker": "^1.0.7" }, "engines": { - "node": ">=7.0.0" - } - }, - "node_modules/jest-diff/node_modules/color-name": { - "version": "1.1.4", - "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz", - "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==" - }, - "node_modules/jest-diff/node_modules/has-flag": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz", - "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==", - "engines": { - "node": ">=8" + "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0" + }, + "optionalDependencies": { + "fsevents": "^2.3.2" } }, - "node_modules/jest-diff/node_modules/supports-color": { - "version": "7.2.0", - "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", - "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", + "node_modules/jest-jasmine2": { + "version": "27.5.1", + "license": "MIT", "dependencies": { - "has-flag": "^4.0.0" + "@jest/environment": "^27.5.1", + "@jest/source-map": "^27.5.1", + "@jest/test-result": "^27.5.1", + "@jest/types": "^27.5.1", + "@types/node": "*", + "chalk": "^4.0.0", + "co": "^4.6.0", + "expect": "^27.5.1", + "is-generator-fn": "^2.0.0", + "jest-each": "^27.5.1", + "jest-matcher-utils": "^27.5.1", + "jest-message-util": "^27.5.1", + "jest-runtime": "^27.5.1", + "jest-snapshot": "^27.5.1", + "jest-util": "^27.5.1", + "pretty-format": "^27.5.1", + "throat": "^6.0.1" }, "engines": { - "node": ">=8" + "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0" } }, - "node_modules/jest-docblock": { + "node_modules/jest-leak-detector": { "version": "27.5.1", - "resolved": "https://registry.npmjs.org/jest-docblock/-/jest-docblock-27.5.1.tgz", - "integrity": "sha512-rl7hlABeTsRYxKiUfpHrQrG4e2obOiTQWfMEH3PxPjOtdsfLQO4ReWSZaQ7DETm4xu07rl4q/h4zcKXyU0/OzQ==", + "license": "MIT", "dependencies": { - "detect-newline": "^3.0.0" + "jest-get-type": "^27.5.1", + "pretty-format": "^27.5.1" }, "engines": { "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0" } }, - "node_modules/jest-each": { + "node_modules/jest-matcher-utils": { "version": "27.5.1", - "resolved": "https://registry.npmjs.org/jest-each/-/jest-each-27.5.1.tgz", - "integrity": "sha512-1Ff6p+FbhT/bXQnEouYy00bkNSY7OUpfIcmdl8vZ31A1UUaurOLPA8a8BbJOF2RDUElwJhmeaV7LnagI+5UwNQ==", + "license": "MIT", "dependencies": { - "@jest/types": "^27.5.1", "chalk": "^4.0.0", + "jest-diff": "^27.5.1", "jest-get-type": "^27.5.1", - "jest-util": "^27.5.1", "pretty-format": "^27.5.1" }, "engines": { "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0" } }, - "node_modules/jest-each/node_modules/ansi-styles": { - "version": "4.3.0", - "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", - "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", + "node_modules/jest-message-util": { + "version": "27.5.1", + "license": "MIT", "dependencies": { - "color-convert": "^2.0.1" + "@babel/code-frame": "^7.12.13", + "@jest/types": "^27.5.1", + "@types/stack-utils": "^2.0.0", + "chalk": "^4.0.0", + "graceful-fs": "^4.2.9", + "micromatch": "^4.0.4", + "pretty-format": "^27.5.1", + "slash": "^3.0.0", + "stack-utils": "^2.0.3" }, "engines": { - "node": ">=8" - }, - "funding": { - "url": "https://github.com/chalk/ansi-styles?sponsor=1" + "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0" } }, - "node_modules/jest-each/node_modules/chalk": { - "version": "4.1.2", - "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz", - "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==", + "node_modules/jest-mock": { + "version": "27.5.1", + "license": "MIT", "dependencies": { - "ansi-styles": "^4.1.0", - "supports-color": "^7.1.0" + "@jest/types": "^27.5.1", + "@types/node": "*" }, "engines": { - "node": ">=10" - }, - "funding": { - "url": "https://github.com/chalk/chalk?sponsor=1" + "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0" } }, - "node_modules/jest-each/node_modules/color-convert": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz", - "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==", - "dependencies": { - "color-name": "~1.1.4" - }, + "node_modules/jest-pnp-resolver": { + "version": "1.2.3", + "license": "MIT", "engines": { - "node": ">=7.0.0" + "node": ">=6" + }, + "peerDependencies": { + "jest-resolve": "*" + }, + "peerDependenciesMeta": { + "jest-resolve": { + "optional": true + } } }, - "node_modules/jest-each/node_modules/color-name": { - "version": "1.1.4", - "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz", - "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==" - }, - "node_modules/jest-each/node_modules/has-flag": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz", - "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==", + "node_modules/jest-regex-util": { + "version": "27.5.1", + "license": "MIT", "engines": { - "node": ">=8" + "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0" } }, - "node_modules/jest-each/node_modules/supports-color": { - "version": "7.2.0", - "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", - "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", + "node_modules/jest-resolve": { + "version": "27.5.1", + "license": "MIT", "dependencies": { - "has-flag": "^4.0.0" + "@jest/types": "^27.5.1", + "chalk": "^4.0.0", + "graceful-fs": "^4.2.9", + "jest-haste-map": "^27.5.1", + "jest-pnp-resolver": "^1.2.2", + "jest-util": "^27.5.1", + "jest-validate": "^27.5.1", + "resolve": "^1.20.0", + "resolve.exports": "^1.1.0", + "slash": "^3.0.0" }, "engines": { - "node": ">=8" + "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0" } }, - "node_modules/jest-environment-jsdom": { + "node_modules/jest-resolve-dependencies": { "version": "27.5.1", - "resolved": "https://registry.npmjs.org/jest-environment-jsdom/-/jest-environment-jsdom-27.5.1.tgz", - "integrity": "sha512-TFBvkTC1Hnnnrka/fUb56atfDtJ9VMZ94JkjTbggl1PEpwrYtUBKMezB3inLmWqQsXYLcMwNoDQwoBTAvFfsfw==", + "license": "MIT", "dependencies": { - "@jest/environment": "^27.5.1", - "@jest/fake-timers": "^27.5.1", "@jest/types": "^27.5.1", - "@types/node": "*", - "jest-mock": "^27.5.1", - "jest-util": "^27.5.1", - "jsdom": "^16.6.0" + "jest-regex-util": "^27.5.1", + "jest-snapshot": "^27.5.1" }, "engines": { "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0" } }, - "node_modules/jest-environment-node": { + "node_modules/jest-runner": { "version": "27.5.1", - "resolved": "https://registry.npmjs.org/jest-environment-node/-/jest-environment-node-27.5.1.tgz", - "integrity": "sha512-Jt4ZUnxdOsTGwSRAfKEnE6BcwsSPNOijjwifq5sDFSA2kesnXTvNqKHYgM0hDq3549Uf/KzdXNYn4wMZJPlFLw==", + "license": "MIT", "dependencies": { + "@jest/console": "^27.5.1", "@jest/environment": "^27.5.1", - "@jest/fake-timers": "^27.5.1", + "@jest/test-result": "^27.5.1", + "@jest/transform": "^27.5.1", "@jest/types": "^27.5.1", "@types/node": "*", - "jest-mock": "^27.5.1", - "jest-util": "^27.5.1" + "chalk": "^4.0.0", + "emittery": "^0.8.1", + "graceful-fs": "^4.2.9", + "jest-docblock": "^27.5.1", + "jest-environment-jsdom": "^27.5.1", + "jest-environment-node": "^27.5.1", + "jest-haste-map": "^27.5.1", + "jest-leak-detector": "^27.5.1", + "jest-message-util": "^27.5.1", + "jest-resolve": "^27.5.1", + "jest-runtime": "^27.5.1", + "jest-util": "^27.5.1", + "jest-worker": "^27.5.1", + "source-map-support": "^0.5.6", + "throat": "^6.0.1" }, "engines": { "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0" } }, - "node_modules/jest-get-type": { + "node_modules/jest-runtime": { "version": "27.5.1", - "resolved": "https://registry.npmjs.org/jest-get-type/-/jest-get-type-27.5.1.tgz", - "integrity": "sha512-2KY95ksYSaK7DMBWQn6dQz3kqAf3BB64y2udeG+hv4KfSOb9qwcYQstTJc1KCbsix+wLZWZYN8t7nwX3GOBLRw==", + "license": "MIT", + "dependencies": { + "@jest/environment": "^27.5.1", + "@jest/fake-timers": "^27.5.1", + "@jest/globals": "^27.5.1", + "@jest/source-map": "^27.5.1", + "@jest/test-result": "^27.5.1", + "@jest/transform": "^27.5.1", + "@jest/types": "^27.5.1", + "chalk": "^4.0.0", + "cjs-module-lexer": "^1.0.0", + "collect-v8-coverage": "^1.0.0", + "execa": "^5.0.0", + "glob": "^7.1.3", + "graceful-fs": "^4.2.9", + "jest-haste-map": "^27.5.1", + "jest-message-util": "^27.5.1", + "jest-mock": "^27.5.1", + "jest-regex-util": "^27.5.1", + "jest-resolve": "^27.5.1", + "jest-snapshot": "^27.5.1", + "jest-util": "^27.5.1", + "slash": "^3.0.0", + "strip-bom": "^4.0.0" + }, "engines": { "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0" } }, - "node_modules/jest-haste-map": { + "node_modules/jest-serializer": { "version": "27.5.1", - "resolved": "https://registry.npmjs.org/jest-haste-map/-/jest-haste-map-27.5.1.tgz", - "integrity": "sha512-7GgkZ4Fw4NFbMSDSpZwXeBiIbx+t/46nJ2QitkOjvwPYyZmqttu2TDSimMHP1EkPOi4xUZAN1doE5Vd25H4Jng==", + "license": "MIT", "dependencies": { - "@jest/types": "^27.5.1", - "@types/graceful-fs": "^4.1.2", "@types/node": "*", - "anymatch": "^3.0.3", - "fb-watchman": "^2.0.0", - "graceful-fs": "^4.2.9", - "jest-regex-util": "^27.5.1", - "jest-serializer": "^27.5.1", - "jest-util": "^27.5.1", - "jest-worker": "^27.5.1", - "micromatch": "^4.0.4", - "walker": "^1.0.7" + "graceful-fs": "^4.2.9" }, "engines": { "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0" - }, - "optionalDependencies": { - "fsevents": "^2.3.2" } }, - "node_modules/jest-jasmine2": { + "node_modules/jest-snapshot": { "version": "27.5.1", - "resolved": "https://registry.npmjs.org/jest-jasmine2/-/jest-jasmine2-27.5.1.tgz", - "integrity": "sha512-jtq7VVyG8SqAorDpApwiJJImd0V2wv1xzdheGHRGyuT7gZm6gG47QEskOlzsN1PG/6WNaCo5pmwMHDf3AkG2pQ==", + "license": "MIT", "dependencies": { - "@jest/environment": "^27.5.1", - "@jest/source-map": "^27.5.1", - "@jest/test-result": "^27.5.1", + "@babel/core": "^7.7.2", + "@babel/generator": "^7.7.2", + "@babel/plugin-syntax-typescript": "^7.7.2", + "@babel/traverse": "^7.7.2", + "@babel/types": "^7.0.0", + "@jest/transform": "^27.5.1", "@jest/types": "^27.5.1", - "@types/node": "*", + "@types/babel__traverse": "^7.0.4", + "@types/prettier": "^2.1.5", + "babel-preset-current-node-syntax": "^1.0.0", "chalk": "^4.0.0", - "co": "^4.6.0", "expect": "^27.5.1", - "is-generator-fn": "^2.0.0", - "jest-each": "^27.5.1", + "graceful-fs": "^4.2.9", + "jest-diff": "^27.5.1", + "jest-get-type": "^27.5.1", + "jest-haste-map": "^27.5.1", "jest-matcher-utils": "^27.5.1", "jest-message-util": "^27.5.1", - "jest-runtime": "^27.5.1", - "jest-snapshot": "^27.5.1", "jest-util": "^27.5.1", + "natural-compare": "^1.4.0", "pretty-format": "^27.5.1", - "throat": "^6.0.1" + "semver": "^7.3.2" }, "engines": { "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0" } }, - "node_modules/jest-jasmine2/node_modules/ansi-styles": { - "version": "4.3.0", - "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", - "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", + "node_modules/jest-util": { + "version": "27.5.1", + "license": "MIT", "dependencies": { - "color-convert": "^2.0.1" + "@jest/types": "^27.5.1", + "@types/node": "*", + "chalk": "^4.0.0", + "ci-info": "^3.2.0", + "graceful-fs": "^4.2.9", + "picomatch": "^2.2.3" }, "engines": { - "node": ">=8" - }, - "funding": { - "url": "https://github.com/chalk/ansi-styles?sponsor=1" + "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0" } }, - "node_modules/jest-jasmine2/node_modules/chalk": { - "version": "4.1.2", - "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz", - "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==", + "node_modules/jest-validate": { + "version": "27.5.1", + "license": "MIT", "dependencies": { - "ansi-styles": "^4.1.0", - "supports-color": "^7.1.0" + "@jest/types": "^27.5.1", + "camelcase": "^6.2.0", + "chalk": "^4.0.0", + "jest-get-type": "^27.5.1", + "leven": "^3.1.0", + "pretty-format": "^27.5.1" }, "engines": { - "node": ">=10" - }, - "funding": { - "url": "https://github.com/chalk/chalk?sponsor=1" + "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0" } }, - "node_modules/jest-jasmine2/node_modules/color-convert": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz", - "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==", + "node_modules/jest-watch-typeahead": { + "version": "1.1.0", + "license": "MIT", "dependencies": { - "color-name": "~1.1.4" + "ansi-escapes": "^4.3.1", + "chalk": "^4.0.0", + "jest-regex-util": "^28.0.0", + "jest-watcher": "^28.0.0", + "slash": "^4.0.0", + "string-length": "^5.0.1", + "strip-ansi": "^7.0.1" }, "engines": { - "node": ">=7.0.0" + "node": "^12.22.0 || ^14.17.0 || >=16.0.0" + }, + "peerDependencies": { + "jest": "^27.0.0 || ^28.0.0" } }, - "node_modules/jest-jasmine2/node_modules/color-name": { - "version": "1.1.4", - "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz", - "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==" - }, - "node_modules/jest-jasmine2/node_modules/has-flag": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz", - "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==", + "node_modules/jest-watch-typeahead/node_modules/@jest/console": { + "version": "28.1.3", + "license": "MIT", + "dependencies": { + "@jest/types": "^28.1.3", + "@types/node": "*", + "chalk": "^4.0.0", + "jest-message-util": "^28.1.3", + "jest-util": "^28.1.3", + "slash": "^3.0.0" + }, "engines": { - "node": ">=8" + "node": "^12.13.0 || ^14.15.0 || ^16.10.0 || >=17.0.0" } }, - "node_modules/jest-jasmine2/node_modules/supports-color": { - "version": "7.2.0", - "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", - "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", - "dependencies": { - "has-flag": "^4.0.0" - }, + "node_modules/jest-watch-typeahead/node_modules/@jest/console/node_modules/slash": { + "version": "3.0.0", + "license": "MIT", "engines": { "node": ">=8" } }, - "node_modules/jest-leak-detector": { - "version": "27.5.1", - "resolved": "https://registry.npmjs.org/jest-leak-detector/-/jest-leak-detector-27.5.1.tgz", - "integrity": "sha512-POXfWAMvfU6WMUXftV4HolnJfnPOGEu10fscNCA76KBpRRhcMN2c8d3iT2pxQS3HLbA+5X4sOUPzYO2NUyIlHQ==", + "node_modules/jest-watch-typeahead/node_modules/@jest/test-result": { + "version": "28.1.3", + "license": "MIT", "dependencies": { - "jest-get-type": "^27.5.1", - "pretty-format": "^27.5.1" + "@jest/console": "^28.1.3", + "@jest/types": "^28.1.3", + "@types/istanbul-lib-coverage": "^2.0.0", + "collect-v8-coverage": "^1.0.0" }, "engines": { - "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0" + "node": "^12.13.0 || ^14.15.0 || ^16.10.0 || >=17.0.0" } }, - "node_modules/jest-matcher-utils": { - "version": "27.5.1", - "resolved": "https://registry.npmjs.org/jest-matcher-utils/-/jest-matcher-utils-27.5.1.tgz", - "integrity": "sha512-z2uTx/T6LBaCoNWNFWwChLBKYxTMcGBRjAt+2SbP929/Fflb9aa5LGma654Rz8z9HLxsrUaYzxE9T/EFIL/PAw==", + "node_modules/jest-watch-typeahead/node_modules/@jest/types": { + "version": "28.1.3", + "license": "MIT", "dependencies": { - "chalk": "^4.0.0", - "jest-diff": "^27.5.1", - "jest-get-type": "^27.5.1", - "pretty-format": "^27.5.1" + "@jest/schemas": "^28.1.3", + "@types/istanbul-lib-coverage": "^2.0.0", + "@types/istanbul-reports": "^3.0.0", + "@types/node": "*", + "@types/yargs": "^17.0.8", + "chalk": "^4.0.0" }, "engines": { - "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0" + "node": "^12.13.0 || ^14.15.0 || ^16.10.0 || >=17.0.0" } }, - "node_modules/jest-matcher-utils/node_modules/ansi-styles": { - "version": "4.3.0", - "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", - "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", + "node_modules/jest-watch-typeahead/node_modules/@types/yargs": { + "version": "17.0.24", + "license": "MIT", "dependencies": { - "color-convert": "^2.0.1" - }, + "@types/yargs-parser": "*" + } + }, + "node_modules/jest-watch-typeahead/node_modules/ansi-styles": { + "version": "5.2.0", + "license": "MIT", "engines": { - "node": ">=8" + "node": ">=10" }, "funding": { "url": "https://github.com/chalk/ansi-styles?sponsor=1" } }, - "node_modules/jest-matcher-utils/node_modules/chalk": { - "version": "4.1.2", - "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz", - "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==", - "dependencies": { - "ansi-styles": "^4.1.0", - "supports-color": "^7.1.0" - }, + "node_modules/jest-watch-typeahead/node_modules/emittery": { + "version": "0.10.2", + "license": "MIT", "engines": { - "node": ">=10" + "node": ">=12" }, "funding": { - "url": "https://github.com/chalk/chalk?sponsor=1" + "url": "https://github.com/sindresorhus/emittery?sponsor=1" } }, - "node_modules/jest-matcher-utils/node_modules/color-convert": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz", - "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==", + "node_modules/jest-watch-typeahead/node_modules/jest-message-util": { + "version": "28.1.3", + "license": "MIT", "dependencies": { - "color-name": "~1.1.4" + "@babel/code-frame": "^7.12.13", + "@jest/types": "^28.1.3", + "@types/stack-utils": "^2.0.0", + "chalk": "^4.0.0", + "graceful-fs": "^4.2.9", + "micromatch": "^4.0.4", + "pretty-format": "^28.1.3", + "slash": "^3.0.0", + "stack-utils": "^2.0.3" }, "engines": { - "node": ">=7.0.0" + "node": "^12.13.0 || ^14.15.0 || ^16.10.0 || >=17.0.0" } }, - "node_modules/jest-matcher-utils/node_modules/color-name": { - "version": "1.1.4", - "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz", - "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==" - }, - "node_modules/jest-matcher-utils/node_modules/has-flag": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz", - "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==", + "node_modules/jest-watch-typeahead/node_modules/jest-message-util/node_modules/slash": { + "version": "3.0.0", + "license": "MIT", "engines": { "node": ">=8" } }, - "node_modules/jest-matcher-utils/node_modules/supports-color": { - "version": "7.2.0", - "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", - "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", - "dependencies": { - "has-flag": "^4.0.0" - }, + "node_modules/jest-watch-typeahead/node_modules/jest-regex-util": { + "version": "28.0.2", + "license": "MIT", "engines": { - "node": ">=8" + "node": "^12.13.0 || ^14.15.0 || ^16.10.0 || >=17.0.0" } }, - "node_modules/jest-message-util": { - "version": "27.5.1", - "resolved": "https://registry.npmjs.org/jest-message-util/-/jest-message-util-27.5.1.tgz", - "integrity": "sha512-rMyFe1+jnyAAf+NHwTclDz0eAaLkVDdKVHHBFWsBWHnnh5YeJMNWWsv7AbFYXfK3oTqvL7VTWkhNLu1jX24D+g==", + "node_modules/jest-watch-typeahead/node_modules/jest-util": { + "version": "28.1.3", + "license": "MIT", "dependencies": { - "@babel/code-frame": "^7.12.13", - "@jest/types": "^27.5.1", - "@types/stack-utils": "^2.0.0", + "@jest/types": "^28.1.3", + "@types/node": "*", "chalk": "^4.0.0", + "ci-info": "^3.2.0", "graceful-fs": "^4.2.9", - "micromatch": "^4.0.4", - "pretty-format": "^27.5.1", - "slash": "^3.0.0", - "stack-utils": "^2.0.3" + "picomatch": "^2.2.3" }, "engines": { - "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0" + "node": "^12.13.0 || ^14.15.0 || ^16.10.0 || >=17.0.0" } }, - "node_modules/jest-message-util/node_modules/ansi-styles": { - "version": "4.3.0", - "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", - "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", + "node_modules/jest-watch-typeahead/node_modules/jest-watcher": { + "version": "28.1.3", + "license": "MIT", "dependencies": { - "color-convert": "^2.0.1" + "@jest/test-result": "^28.1.3", + "@jest/types": "^28.1.3", + "@types/node": "*", + "ansi-escapes": "^4.2.1", + "chalk": "^4.0.0", + "emittery": "^0.10.2", + "jest-util": "^28.1.3", + "string-length": "^4.0.1" }, "engines": { - "node": ">=8" - }, - "funding": { - "url": "https://github.com/chalk/ansi-styles?sponsor=1" + "node": "^12.13.0 || ^14.15.0 || ^16.10.0 || >=17.0.0" } }, - "node_modules/jest-message-util/node_modules/chalk": { - "version": "4.1.2", - "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz", - "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==", + "node_modules/jest-watch-typeahead/node_modules/jest-watcher/node_modules/string-length": { + "version": "4.0.2", + "license": "MIT", "dependencies": { - "ansi-styles": "^4.1.0", - "supports-color": "^7.1.0" + "char-regex": "^1.0.2", + "strip-ansi": "^6.0.0" }, "engines": { "node": ">=10" - }, - "funding": { - "url": "https://github.com/chalk/chalk?sponsor=1" } }, - "node_modules/jest-message-util/node_modules/color-convert": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz", - "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==", + "node_modules/jest-watch-typeahead/node_modules/jest-watcher/node_modules/strip-ansi": { + "version": "6.0.1", + "license": "MIT", "dependencies": { - "color-name": "~1.1.4" + "ansi-regex": "^5.0.1" }, "engines": { - "node": ">=7.0.0" + "node": ">=8" } }, - "node_modules/jest-message-util/node_modules/color-name": { - "version": "1.1.4", - "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz", - "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==" + "node_modules/jest-watch-typeahead/node_modules/pretty-format": { + "version": "28.1.3", + "license": "MIT", + "dependencies": { + "@jest/schemas": "^28.1.3", + "ansi-regex": "^5.0.1", + "ansi-styles": "^5.0.0", + "react-is": "^18.0.0" + }, + "engines": { + "node": "^12.13.0 || ^14.15.0 || ^16.10.0 || >=17.0.0" + } }, - "node_modules/jest-message-util/node_modules/has-flag": { + "node_modules/jest-watch-typeahead/node_modules/slash": { "version": "4.0.0", - "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz", - "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==", + "license": "MIT", "engines": { - "node": ">=8" + "node": ">=12" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" } }, - "node_modules/jest-message-util/node_modules/supports-color": { - "version": "7.2.0", - "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", - "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", + "node_modules/jest-watch-typeahead/node_modules/string-length": { + "version": "5.0.1", + "license": "MIT", "dependencies": { - "has-flag": "^4.0.0" + "char-regex": "^2.0.0", + "strip-ansi": "^7.0.1" }, "engines": { - "node": ">=8" + "node": ">=12.20" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" } }, - "node_modules/jest-mock": { - "version": "27.5.1", - "resolved": "https://registry.npmjs.org/jest-mock/-/jest-mock-27.5.1.tgz", - "integrity": "sha512-K4jKbY1d4ENhbrG2zuPWaQBvDly+iZ2yAW+T1fATN78hc0sInwn7wZB8XtlNnvHug5RMwV897Xm4LqmPM4e2Og==", - "dependencies": { - "@jest/types": "^27.5.1", - "@types/node": "*" - }, + "node_modules/jest-watch-typeahead/node_modules/string-length/node_modules/char-regex": { + "version": "2.0.1", + "license": "MIT", "engines": { - "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0" + "node": ">=12.20" } }, - "node_modules/jest-pnp-resolver": { - "version": "1.2.2", - "resolved": "https://registry.npmjs.org/jest-pnp-resolver/-/jest-pnp-resolver-1.2.2.tgz", - "integrity": "sha512-olV41bKSMm8BdnuMsewT4jqlZ8+3TCARAXjZGT9jcoSnrfUnRCqnMoF9XEeoWjbzObpqF9dRhHQj0Xb9QdF6/w==", - "engines": { - "node": ">=6" + "node_modules/jest-watch-typeahead/node_modules/strip-ansi": { + "version": "7.1.0", + "license": "MIT", + "dependencies": { + "ansi-regex": "^6.0.1" }, - "peerDependencies": { - "jest-resolve": "*" + "engines": { + "node": ">=12" }, - "peerDependenciesMeta": { - "jest-resolve": { - "optional": true - } + "funding": { + "url": "https://github.com/chalk/strip-ansi?sponsor=1" } }, - "node_modules/jest-regex-util": { - "version": "27.5.1", - "resolved": "https://registry.npmjs.org/jest-regex-util/-/jest-regex-util-27.5.1.tgz", - "integrity": "sha512-4bfKq2zie+x16okqDXjXn9ql2B0dScQu+vcwe4TvFVhkVyuWLqpZrZtXxLLWoXYgn0E87I6r6GRYHF7wFZBUvg==", + "node_modules/jest-watch-typeahead/node_modules/strip-ansi/node_modules/ansi-regex": { + "version": "6.0.1", + "license": "MIT", "engines": { - "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0" + "node": ">=12" + }, + "funding": { + "url": "https://github.com/chalk/ansi-regex?sponsor=1" } }, - "node_modules/jest-resolve": { + "node_modules/jest-watcher": { "version": "27.5.1", - "resolved": "https://registry.npmjs.org/jest-resolve/-/jest-resolve-27.5.1.tgz", - "integrity": "sha512-FFDy8/9E6CV83IMbDpcjOhumAQPDyETnU2KZ1O98DwTnz8AOBsW/Xv3GySr1mOZdItLR+zDZ7I/UdTFbgSOVCw==", + "license": "MIT", "dependencies": { + "@jest/test-result": "^27.5.1", "@jest/types": "^27.5.1", + "@types/node": "*", + "ansi-escapes": "^4.2.1", "chalk": "^4.0.0", - "graceful-fs": "^4.2.9", - "jest-haste-map": "^27.5.1", - "jest-pnp-resolver": "^1.2.2", "jest-util": "^27.5.1", - "jest-validate": "^27.5.1", - "resolve": "^1.20.0", - "resolve.exports": "^1.1.0", - "slash": "^3.0.0" + "string-length": "^4.0.1" }, "engines": { "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0" } }, - "node_modules/jest-resolve-dependencies": { + "node_modules/jest-worker": { "version": "27.5.1", - "resolved": "https://registry.npmjs.org/jest-resolve-dependencies/-/jest-resolve-dependencies-27.5.1.tgz", - "integrity": "sha512-QQOOdY4PE39iawDn5rzbIePNigfe5B9Z91GDD1ae/xNDlu9kaat8QQ5EKnNmVWPV54hUdxCVwwj6YMgR2O7IOg==", + "license": "MIT", "dependencies": { - "@jest/types": "^27.5.1", - "jest-regex-util": "^27.5.1", - "jest-snapshot": "^27.5.1" + "@types/node": "*", + "merge-stream": "^2.0.0", + "supports-color": "^8.0.0" }, "engines": { - "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0" + "node": ">= 10.13.0" } }, - "node_modules/jest-resolve/node_modules/ansi-styles": { - "version": "4.3.0", - "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", - "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", + "node_modules/jest-worker/node_modules/supports-color": { + "version": "8.1.1", + "license": "MIT", "dependencies": { - "color-convert": "^2.0.1" + "has-flag": "^4.0.0" }, "engines": { - "node": ">=8" + "node": ">=10" }, "funding": { - "url": "https://github.com/chalk/ansi-styles?sponsor=1" + "url": "https://github.com/chalk/supports-color?sponsor=1" } }, - "node_modules/jest-resolve/node_modules/chalk": { - "version": "4.1.2", - "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz", - "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==", - "dependencies": { - "ansi-styles": "^4.1.0", - "supports-color": "^7.1.0" - }, - "engines": { - "node": ">=10" - }, - "funding": { - "url": "https://github.com/chalk/chalk?sponsor=1" - } - }, - "node_modules/jest-resolve/node_modules/color-convert": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz", - "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==", - "dependencies": { - "color-name": "~1.1.4" - }, - "engines": { - "node": ">=7.0.0" - } - }, - "node_modules/jest-resolve/node_modules/color-name": { - "version": "1.1.4", - "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz", - "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==" - }, - "node_modules/jest-resolve/node_modules/has-flag": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz", - "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==", - "engines": { - "node": ">=8" - } - }, - "node_modules/jest-resolve/node_modules/supports-color": { - "version": "7.2.0", - "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", - "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", - "dependencies": { - "has-flag": "^4.0.0" - }, - "engines": { - "node": ">=8" - } - }, - "node_modules/jest-runner": { - "version": "27.5.1", - "resolved": "https://registry.npmjs.org/jest-runner/-/jest-runner-27.5.1.tgz", - "integrity": "sha512-g4NPsM4mFCOwFKXO4p/H/kWGdJp9V8kURY2lX8Me2drgXqG7rrZAx5kv+5H7wtt/cdFIjhqYx1HrlqWHaOvDaQ==", - "dependencies": { - "@jest/console": "^27.5.1", - "@jest/environment": "^27.5.1", - "@jest/test-result": "^27.5.1", - "@jest/transform": "^27.5.1", - "@jest/types": "^27.5.1", - "@types/node": "*", - "chalk": "^4.0.0", - "emittery": "^0.8.1", - "graceful-fs": "^4.2.9", - "jest-docblock": "^27.5.1", - "jest-environment-jsdom": "^27.5.1", - "jest-environment-node": "^27.5.1", - "jest-haste-map": "^27.5.1", - "jest-leak-detector": "^27.5.1", - "jest-message-util": "^27.5.1", - "jest-resolve": "^27.5.1", - "jest-runtime": "^27.5.1", - "jest-util": "^27.5.1", - "jest-worker": "^27.5.1", - "source-map-support": "^0.5.6", - "throat": "^6.0.1" - }, - "engines": { - "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0" - } - }, - "node_modules/jest-runner/node_modules/ansi-styles": { - "version": "4.3.0", - "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", - "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", - "dependencies": { - "color-convert": "^2.0.1" - }, - "engines": { - "node": ">=8" - }, - "funding": { - "url": "https://github.com/chalk/ansi-styles?sponsor=1" - } - }, - "node_modules/jest-runner/node_modules/chalk": { - "version": "4.1.2", - "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz", - "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==", - "dependencies": { - "ansi-styles": "^4.1.0", - "supports-color": "^7.1.0" - }, - "engines": { - "node": ">=10" - }, - "funding": { - "url": "https://github.com/chalk/chalk?sponsor=1" - } - }, - "node_modules/jest-runner/node_modules/color-convert": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz", - "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==", - "dependencies": { - "color-name": "~1.1.4" - }, - "engines": { - "node": ">=7.0.0" - } - }, - "node_modules/jest-runner/node_modules/color-name": { - "version": "1.1.4", - "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz", - "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==" - }, - "node_modules/jest-runner/node_modules/has-flag": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz", - "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==", - "engines": { - "node": ">=8" - } - }, - "node_modules/jest-runner/node_modules/supports-color": { - "version": "7.2.0", - "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", - "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", - "dependencies": { - "has-flag": "^4.0.0" - }, - "engines": { - "node": ">=8" - } - }, - "node_modules/jest-runtime": { - "version": "27.5.1", - "resolved": "https://registry.npmjs.org/jest-runtime/-/jest-runtime-27.5.1.tgz", - "integrity": "sha512-o7gxw3Gf+H2IGt8fv0RiyE1+r83FJBRruoA+FXrlHw6xEyBsU8ugA6IPfTdVyA0w8HClpbK+DGJxH59UrNMx8A==", - "dependencies": { - "@jest/environment": "^27.5.1", - "@jest/fake-timers": "^27.5.1", - "@jest/globals": "^27.5.1", - "@jest/source-map": "^27.5.1", - "@jest/test-result": "^27.5.1", - "@jest/transform": "^27.5.1", - "@jest/types": "^27.5.1", - "chalk": "^4.0.0", - "cjs-module-lexer": "^1.0.0", - "collect-v8-coverage": "^1.0.0", - "execa": "^5.0.0", - "glob": "^7.1.3", - "graceful-fs": "^4.2.9", - "jest-haste-map": "^27.5.1", - "jest-message-util": "^27.5.1", - "jest-mock": "^27.5.1", - "jest-regex-util": "^27.5.1", - "jest-resolve": "^27.5.1", - "jest-snapshot": "^27.5.1", - "jest-util": "^27.5.1", - "slash": "^3.0.0", - "strip-bom": "^4.0.0" - }, - "engines": { - "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0" - } - }, - "node_modules/jest-runtime/node_modules/ansi-styles": { - "version": "4.3.0", - "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", - "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", - "dependencies": { - "color-convert": "^2.0.1" - }, - "engines": { - "node": ">=8" - }, - "funding": { - "url": "https://github.com/chalk/ansi-styles?sponsor=1" - } - }, - "node_modules/jest-runtime/node_modules/chalk": { - "version": "4.1.2", - "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz", - "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==", - "dependencies": { - "ansi-styles": "^4.1.0", - "supports-color": "^7.1.0" - }, - "engines": { - "node": ">=10" - }, - "funding": { - "url": "https://github.com/chalk/chalk?sponsor=1" - } - }, - "node_modules/jest-runtime/node_modules/color-convert": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz", - "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==", - "dependencies": { - "color-name": "~1.1.4" - }, - "engines": { - "node": ">=7.0.0" - } - }, - "node_modules/jest-runtime/node_modules/color-name": { - "version": "1.1.4", - "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz", - "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==" - }, - "node_modules/jest-runtime/node_modules/has-flag": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz", - "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==", - "engines": { - "node": ">=8" - } - }, - "node_modules/jest-runtime/node_modules/supports-color": { - "version": "7.2.0", - "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", - "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", - "dependencies": { - "has-flag": "^4.0.0" - }, - "engines": { - "node": ">=8" - } - }, - "node_modules/jest-serializer": { - "version": "27.5.1", - "resolved": "https://registry.npmjs.org/jest-serializer/-/jest-serializer-27.5.1.tgz", - "integrity": "sha512-jZCyo6iIxO1aqUxpuBlwTDMkzOAJS4a3eYz3YzgxxVQFwLeSA7Jfq5cbqCY+JLvTDrWirgusI/0KwxKMgrdf7w==", - "dependencies": { - "@types/node": "*", - "graceful-fs": "^4.2.9" - }, - "engines": { - "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0" - } - }, - "node_modules/jest-snapshot": { - "version": "27.5.1", - "resolved": "https://registry.npmjs.org/jest-snapshot/-/jest-snapshot-27.5.1.tgz", - "integrity": "sha512-yYykXI5a0I31xX67mgeLw1DZ0bJB+gpq5IpSuCAoyDi0+BhgU/RIrL+RTzDmkNTchvDFWKP8lp+w/42Z3us5sA==", - "dependencies": { - "@babel/core": "^7.7.2", - "@babel/generator": "^7.7.2", - "@babel/plugin-syntax-typescript": "^7.7.2", - "@babel/traverse": "^7.7.2", - "@babel/types": "^7.0.0", - "@jest/transform": "^27.5.1", - "@jest/types": "^27.5.1", - "@types/babel__traverse": "^7.0.4", - "@types/prettier": "^2.1.5", - "babel-preset-current-node-syntax": "^1.0.0", - "chalk": "^4.0.0", - "expect": "^27.5.1", - "graceful-fs": "^4.2.9", - "jest-diff": "^27.5.1", - "jest-get-type": "^27.5.1", - "jest-haste-map": "^27.5.1", - "jest-matcher-utils": "^27.5.1", - "jest-message-util": "^27.5.1", - "jest-util": "^27.5.1", - "natural-compare": "^1.4.0", - "pretty-format": "^27.5.1", - "semver": "^7.3.2" - }, - "engines": { - "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0" - } - }, - "node_modules/jest-snapshot/node_modules/ansi-styles": { - "version": "4.3.0", - "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", - "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", - "dependencies": { - "color-convert": "^2.0.1" - }, - "engines": { - "node": ">=8" - }, - "funding": { - "url": "https://github.com/chalk/ansi-styles?sponsor=1" - } - }, - "node_modules/jest-snapshot/node_modules/chalk": { - "version": "4.1.2", - "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz", - "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==", - "dependencies": { - "ansi-styles": "^4.1.0", - "supports-color": "^7.1.0" - }, - "engines": { - "node": ">=10" - }, - "funding": { - "url": "https://github.com/chalk/chalk?sponsor=1" - } - }, - "node_modules/jest-snapshot/node_modules/color-convert": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz", - "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==", - "dependencies": { - "color-name": "~1.1.4" - }, - "engines": { - "node": ">=7.0.0" - } - }, - "node_modules/jest-snapshot/node_modules/color-name": { - "version": "1.1.4", - "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz", - "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==" - }, - "node_modules/jest-snapshot/node_modules/has-flag": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz", - "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==", - "engines": { - "node": ">=8" - } - }, - "node_modules/jest-snapshot/node_modules/supports-color": { - "version": "7.2.0", - "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", - "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", - "dependencies": { - "has-flag": "^4.0.0" - }, - "engines": { - "node": ">=8" - } - }, - "node_modules/jest-util": { - "version": "27.5.1", - "resolved": "https://registry.npmjs.org/jest-util/-/jest-util-27.5.1.tgz", - "integrity": "sha512-Kv2o/8jNvX1MQ0KGtw480E/w4fBCDOnH6+6DmeKi6LZUIlKA5kwY0YNdlzaWTiVgxqAqik11QyxDOKk543aKXw==", - "dependencies": { - "@jest/types": "^27.5.1", - "@types/node": "*", - "chalk": "^4.0.0", - "ci-info": "^3.2.0", - "graceful-fs": "^4.2.9", - "picomatch": "^2.2.3" - }, - "engines": { - "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0" - } - }, - "node_modules/jest-util/node_modules/ansi-styles": { - "version": "4.3.0", - "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", - "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", - "dependencies": { - "color-convert": "^2.0.1" - }, - "engines": { - "node": ">=8" - }, - "funding": { - "url": "https://github.com/chalk/ansi-styles?sponsor=1" - } - }, - "node_modules/jest-util/node_modules/chalk": { - "version": "4.1.2", - "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz", - "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==", - "dependencies": { - "ansi-styles": "^4.1.0", - "supports-color": "^7.1.0" - }, - "engines": { - "node": ">=10" - }, - "funding": { - "url": "https://github.com/chalk/chalk?sponsor=1" - } - }, - "node_modules/jest-util/node_modules/color-convert": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz", - "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==", - "dependencies": { - "color-name": "~1.1.4" - }, - "engines": { - "node": ">=7.0.0" - } - }, - "node_modules/jest-util/node_modules/color-name": { - "version": "1.1.4", - "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz", - "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==" - }, - "node_modules/jest-util/node_modules/has-flag": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz", - "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==", - "engines": { - "node": ">=8" - } - }, - "node_modules/jest-util/node_modules/supports-color": { - "version": "7.2.0", - "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", - "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", - "dependencies": { - "has-flag": "^4.0.0" - }, - "engines": { - "node": ">=8" - } - }, - "node_modules/jest-validate": { - "version": "27.5.1", - "resolved": "https://registry.npmjs.org/jest-validate/-/jest-validate-27.5.1.tgz", - "integrity": "sha512-thkNli0LYTmOI1tDB3FI1S1RTp/Bqyd9pTarJwL87OIBFuqEb5Apv5EaApEudYg4g86e3CT6kM0RowkhtEnCBQ==", - "dependencies": { - "@jest/types": "^27.5.1", - "camelcase": "^6.2.0", - "chalk": "^4.0.0", - "jest-get-type": "^27.5.1", - "leven": "^3.1.0", - "pretty-format": "^27.5.1" - }, - "engines": { - "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0" - } - }, - "node_modules/jest-validate/node_modules/ansi-styles": { - "version": "4.3.0", - "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", - "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", - "dependencies": { - "color-convert": "^2.0.1" - }, - "engines": { - "node": ">=8" - }, - "funding": { - "url": "https://github.com/chalk/ansi-styles?sponsor=1" - } - }, - "node_modules/jest-validate/node_modules/chalk": { - "version": "4.1.2", - "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz", - "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==", - "dependencies": { - "ansi-styles": "^4.1.0", - "supports-color": "^7.1.0" - }, - "engines": { - "node": ">=10" - }, - "funding": { - "url": "https://github.com/chalk/chalk?sponsor=1" - } - }, - "node_modules/jest-validate/node_modules/color-convert": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz", - "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==", - "dependencies": { - "color-name": "~1.1.4" - }, - "engines": { - "node": ">=7.0.0" - } - }, - "node_modules/jest-validate/node_modules/color-name": { - "version": "1.1.4", - "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz", - "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==" - }, - "node_modules/jest-validate/node_modules/has-flag": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz", - "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==", - "engines": { - "node": ">=8" - } - }, - "node_modules/jest-validate/node_modules/supports-color": { - "version": "7.2.0", - "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", - "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", - "dependencies": { - "has-flag": "^4.0.0" - }, - "engines": { - "node": ">=8" - } - }, - "node_modules/jest-watch-typeahead": { - "version": "1.1.0", - "resolved": "https://registry.npmjs.org/jest-watch-typeahead/-/jest-watch-typeahead-1.1.0.tgz", - "integrity": "sha512-Va5nLSJTN7YFtC2jd+7wsoe1pNe5K4ShLux/E5iHEwlB9AxaxmggY7to9KUqKojhaJw3aXqt5WAb4jGPOolpEw==", - "dependencies": { - "ansi-escapes": "^4.3.1", - "chalk": "^4.0.0", - "jest-regex-util": "^28.0.0", - "jest-watcher": "^28.0.0", - "slash": "^4.0.0", - "string-length": "^5.0.1", - "strip-ansi": "^7.0.1" - }, - "engines": { - "node": "^12.22.0 || ^14.17.0 || >=16.0.0" - }, - "peerDependencies": { - "jest": "^27.0.0 || ^28.0.0" - } - }, - "node_modules/jest-watch-typeahead/node_modules/@jest/console": { - "version": "28.1.1", - "resolved": "https://registry.npmjs.org/@jest/console/-/console-28.1.1.tgz", - "integrity": "sha512-0RiUocPVFEm3WRMOStIHbRWllG6iW6E3/gUPnf4lkrVFyXIIDeCe+vlKeYyFOMhB2EPE6FLFCNADSOOQMaqvyA==", - "dependencies": { - "@jest/types": "^28.1.1", - "@types/node": "*", - "chalk": "^4.0.0", - "jest-message-util": "^28.1.1", - "jest-util": "^28.1.1", - "slash": "^3.0.0" - }, - "engines": { - "node": "^12.13.0 || ^14.15.0 || ^16.10.0 || >=17.0.0" - } - }, - "node_modules/jest-watch-typeahead/node_modules/@jest/console/node_modules/slash": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/slash/-/slash-3.0.0.tgz", - "integrity": "sha512-g9Q1haeby36OSStwb4ntCGGGaKsaVSjQ68fBxoQcutl5fS1vuY18H3wSt3jFyFtrkx+Kz0V1G85A4MyAdDMi2Q==", - "engines": { - "node": ">=8" - } - }, - "node_modules/jest-watch-typeahead/node_modules/@jest/test-result": { - "version": "28.1.1", - "resolved": "https://registry.npmjs.org/@jest/test-result/-/test-result-28.1.1.tgz", - "integrity": "sha512-hPmkugBktqL6rRzwWAtp1JtYT4VHwv8OQ+9lE5Gymj6dHzubI/oJHMUpPOt8NrdVWSrz9S7bHjJUmv2ggFoUNQ==", - "dependencies": { - "@jest/console": "^28.1.1", - "@jest/types": "^28.1.1", - "@types/istanbul-lib-coverage": "^2.0.0", - "collect-v8-coverage": "^1.0.0" - }, - "engines": { - "node": "^12.13.0 || ^14.15.0 || ^16.10.0 || >=17.0.0" - } - }, - "node_modules/jest-watch-typeahead/node_modules/@jest/types": { - "version": "28.1.1", - "resolved": "https://registry.npmjs.org/@jest/types/-/types-28.1.1.tgz", - "integrity": "sha512-vRXVqSg1VhDnB8bWcmvLzmg0Bt9CRKVgHPXqYwvWMX3TvAjeO+nRuK6+VdTKCtWOvYlmkF/HqNAL/z+N3B53Kw==", - "dependencies": { - "@jest/schemas": "^28.0.2", - "@types/istanbul-lib-coverage": "^2.0.0", - "@types/istanbul-reports": "^3.0.0", - "@types/node": "*", - "@types/yargs": "^17.0.8", - "chalk": "^4.0.0" - }, - "engines": { - "node": "^12.13.0 || ^14.15.0 || ^16.10.0 || >=17.0.0" - } - }, - "node_modules/jest-watch-typeahead/node_modules/@types/yargs": { - "version": "17.0.10", - "resolved": "https://registry.npmjs.org/@types/yargs/-/yargs-17.0.10.tgz", - "integrity": "sha512-gmEaFwpj/7f/ROdtIlci1R1VYU1J4j95m8T+Tj3iBgiBFKg1foE/PSl93bBd5T9LDXNPo8UlNN6W0qwD8O5OaA==", - "dependencies": { - "@types/yargs-parser": "*" - } - }, - "node_modules/jest-watch-typeahead/node_modules/ansi-styles": { - "version": "4.3.0", - "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", - "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", - "dependencies": { - "color-convert": "^2.0.1" - }, - "engines": { - "node": ">=8" - }, - "funding": { - "url": "https://github.com/chalk/ansi-styles?sponsor=1" - } - }, - "node_modules/jest-watch-typeahead/node_modules/chalk": { - "version": "4.1.2", - "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz", - "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==", - "dependencies": { - "ansi-styles": "^4.1.0", - "supports-color": "^7.1.0" - }, - "engines": { - "node": ">=10" - }, - "funding": { - "url": "https://github.com/chalk/chalk?sponsor=1" - } - }, - "node_modules/jest-watch-typeahead/node_modules/color-convert": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz", - "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==", - "dependencies": { - "color-name": "~1.1.4" - }, - "engines": { - "node": ">=7.0.0" - } - }, - "node_modules/jest-watch-typeahead/node_modules/color-name": { - "version": "1.1.4", - "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz", - "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==" - }, - "node_modules/jest-watch-typeahead/node_modules/emittery": { - "version": "0.10.2", - "resolved": "https://registry.npmjs.org/emittery/-/emittery-0.10.2.tgz", - "integrity": "sha512-aITqOwnLanpHLNXZJENbOgjUBeHocD+xsSJmNrjovKBW5HbSpW3d1pEls7GFQPUWXiwG9+0P4GtHfEqC/4M0Iw==", - "engines": { - "node": ">=12" - }, - "funding": { - "url": "https://github.com/sindresorhus/emittery?sponsor=1" - } - }, - "node_modules/jest-watch-typeahead/node_modules/has-flag": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz", - "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==", - "engines": { - "node": ">=8" - } - }, - "node_modules/jest-watch-typeahead/node_modules/jest-message-util": { - "version": "28.1.1", - "resolved": "https://registry.npmjs.org/jest-message-util/-/jest-message-util-28.1.1.tgz", - "integrity": "sha512-xoDOOT66fLfmTRiqkoLIU7v42mal/SqwDKvfmfiWAdJMSJiU+ozgluO7KbvoAgiwIrrGZsV7viETjc8GNrA/IQ==", - "dependencies": { - "@babel/code-frame": "^7.12.13", - "@jest/types": "^28.1.1", - "@types/stack-utils": "^2.0.0", - "chalk": "^4.0.0", - "graceful-fs": "^4.2.9", - "micromatch": "^4.0.4", - "pretty-format": "^28.1.1", - "slash": "^3.0.0", - "stack-utils": "^2.0.3" - }, - "engines": { - "node": "^12.13.0 || ^14.15.0 || ^16.10.0 || >=17.0.0" - } - }, - "node_modules/jest-watch-typeahead/node_modules/jest-message-util/node_modules/slash": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/slash/-/slash-3.0.0.tgz", - "integrity": "sha512-g9Q1haeby36OSStwb4ntCGGGaKsaVSjQ68fBxoQcutl5fS1vuY18H3wSt3jFyFtrkx+Kz0V1G85A4MyAdDMi2Q==", - "engines": { - "node": ">=8" - } - }, - "node_modules/jest-watch-typeahead/node_modules/jest-regex-util": { - "version": "28.0.2", - "resolved": "https://registry.npmjs.org/jest-regex-util/-/jest-regex-util-28.0.2.tgz", - "integrity": "sha512-4s0IgyNIy0y9FK+cjoVYoxamT7Zeo7MhzqRGx7YDYmaQn1wucY9rotiGkBzzcMXTtjrCAP/f7f+E0F7+fxPNdw==", - "engines": { - "node": "^12.13.0 || ^14.15.0 || ^16.10.0 || >=17.0.0" - } - }, - "node_modules/jest-watch-typeahead/node_modules/jest-util": { - "version": "28.1.1", - "resolved": "https://registry.npmjs.org/jest-util/-/jest-util-28.1.1.tgz", - "integrity": "sha512-FktOu7ca1DZSyhPAxgxB6hfh2+9zMoJ7aEQA759Z6p45NuO8mWcqujH+UdHlCm/V6JTWwDztM2ITCzU1ijJAfw==", - "dependencies": { - "@jest/types": "^28.1.1", - "@types/node": "*", - "chalk": "^4.0.0", - "ci-info": "^3.2.0", - "graceful-fs": "^4.2.9", - "picomatch": "^2.2.3" - }, - "engines": { - "node": "^12.13.0 || ^14.15.0 || ^16.10.0 || >=17.0.0" - } - }, - "node_modules/jest-watch-typeahead/node_modules/jest-watcher": { - "version": "28.1.1", - "resolved": "https://registry.npmjs.org/jest-watcher/-/jest-watcher-28.1.1.tgz", - "integrity": "sha512-RQIpeZ8EIJMxbQrXpJQYIIlubBnB9imEHsxxE41f54ZwcqWLysL/A0ZcdMirf+XsMn3xfphVQVV4EW0/p7i7Ug==", - "dependencies": { - "@jest/test-result": "^28.1.1", - "@jest/types": "^28.1.1", - "@types/node": "*", - "ansi-escapes": "^4.2.1", - "chalk": "^4.0.0", - "emittery": "^0.10.2", - "jest-util": "^28.1.1", - "string-length": "^4.0.1" - }, - "engines": { - "node": "^12.13.0 || ^14.15.0 || ^16.10.0 || >=17.0.0" - } - }, - "node_modules/jest-watch-typeahead/node_modules/jest-watcher/node_modules/string-length": { - "version": "4.0.2", - "resolved": "https://registry.npmjs.org/string-length/-/string-length-4.0.2.tgz", - "integrity": "sha512-+l6rNN5fYHNhZZy41RXsYptCjA2Igmq4EG7kZAYFQI1E1VTXarr6ZPXBg6eq7Y6eK4FEhY6AJlyuFIb/v/S0VQ==", - "dependencies": { - "char-regex": "^1.0.2", - "strip-ansi": "^6.0.0" - }, - "engines": { - "node": ">=10" - } - }, - "node_modules/jest-watch-typeahead/node_modules/jest-watcher/node_modules/strip-ansi": { - "version": "6.0.1", - "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-6.0.1.tgz", - "integrity": "sha512-Y38VPSHcqkFrCpFnQ9vuSXmquuv5oXOKpGeT6aGrr3o3Gc9AlVa6JBfUSOCnbxGGZF+/0ooI7KrPuUSztUdU5A==", - "dependencies": { - "ansi-regex": "^5.0.1" - }, - "engines": { - "node": ">=8" - } - }, - "node_modules/jest-watch-typeahead/node_modules/pretty-format": { - "version": "28.1.1", - "resolved": "https://registry.npmjs.org/pretty-format/-/pretty-format-28.1.1.tgz", - "integrity": "sha512-wwJbVTGFHeucr5Jw2bQ9P+VYHyLdAqedFLEkdQUVaBF/eiidDwH5OpilINq4mEfhbCjLnirt6HTTDhv1HaTIQw==", - "dependencies": { - "@jest/schemas": "^28.0.2", - "ansi-regex": "^5.0.1", - "ansi-styles": "^5.0.0", - "react-is": "^18.0.0" - }, - "engines": { - "node": "^12.13.0 || ^14.15.0 || ^16.10.0 || >=17.0.0" - } - }, - "node_modules/jest-watch-typeahead/node_modules/pretty-format/node_modules/ansi-styles": { - "version": "5.2.0", - "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-5.2.0.tgz", - "integrity": "sha512-Cxwpt2SfTzTtXcfOlzGEee8O+c+MmUgGrNiBcXnuWxuFJHe6a5Hz7qwhwe5OgaSYI0IJvkLqWX1ASG+cJOkEiA==", - "engines": { - "node": ">=10" - }, - "funding": { - "url": "https://github.com/chalk/ansi-styles?sponsor=1" - } - }, - "node_modules/jest-watch-typeahead/node_modules/react-is": { - "version": "18.2.0", - "resolved": "https://registry.npmjs.org/react-is/-/react-is-18.2.0.tgz", - "integrity": "sha512-xWGDIW6x921xtzPkhiULtthJHoJvBbF3q26fzloPCK0hsvxtPVelvftw3zjbHWSkR2km9Z+4uxbDDK/6Zw9B8w==" - }, - "node_modules/jest-watch-typeahead/node_modules/slash": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/slash/-/slash-4.0.0.tgz", - "integrity": "sha512-3dOsAHXXUkQTpOYcoAxLIorMTp4gIQr5IW3iVb7A7lFIp0VHhnynm9izx6TssdrIcVIESAlVjtnO2K8bg+Coew==", - "engines": { - "node": ">=12" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, - "node_modules/jest-watch-typeahead/node_modules/string-length": { - "version": "5.0.1", - "resolved": "https://registry.npmjs.org/string-length/-/string-length-5.0.1.tgz", - "integrity": "sha512-9Ep08KAMUn0OadnVaBuRdE2l615CQ508kr0XMadjClfYpdCyvrbFp6Taebo8yyxokQ4viUd/xPPUA4FGgUa0ow==", - "dependencies": { - "char-regex": "^2.0.0", - "strip-ansi": "^7.0.1" - }, - "engines": { - "node": ">=12.20" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, - "node_modules/jest-watch-typeahead/node_modules/string-length/node_modules/char-regex": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/char-regex/-/char-regex-2.0.1.tgz", - "integrity": "sha512-oSvEeo6ZUD7NepqAat3RqoucZ5SeqLJgOvVIwkafu6IP3V0pO38s/ypdVUmDDK6qIIHNlYHJAKX9E7R7HoKElw==", - "engines": { - "node": ">=12.20" - } - }, - "node_modules/jest-watch-typeahead/node_modules/strip-ansi": { - "version": "7.0.1", - "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-7.0.1.tgz", - "integrity": "sha512-cXNxvT8dFNRVfhVME3JAe98mkXDYN2O1l7jmcwMnOslDeESg1rF/OZMtK0nRAhiari1unG5cD4jG3rapUAkLbw==", - "dependencies": { - "ansi-regex": "^6.0.1" - }, - "engines": { - "node": ">=12" - }, - "funding": { - "url": "https://github.com/chalk/strip-ansi?sponsor=1" - } - }, - "node_modules/jest-watch-typeahead/node_modules/strip-ansi/node_modules/ansi-regex": { - "version": "6.0.1", - "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-6.0.1.tgz", - "integrity": "sha512-n5M855fKb2SsfMIiFFoVrABHJC8QtHwVx+mHWP3QcEqBHYienj5dHSgjbxtC0WEZXYt4wcD6zrQElDPhFuZgfA==", - "engines": { - "node": ">=12" - }, - "funding": { - "url": "https://github.com/chalk/ansi-regex?sponsor=1" - } - }, - "node_modules/jest-watch-typeahead/node_modules/supports-color": { - "version": "7.2.0", - "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", - "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", - "dependencies": { - "has-flag": "^4.0.0" - }, - "engines": { - "node": ">=8" - } - }, - "node_modules/jest-watcher": { - "version": "27.5.1", - "resolved": "https://registry.npmjs.org/jest-watcher/-/jest-watcher-27.5.1.tgz", - "integrity": "sha512-z676SuD6Z8o8qbmEGhoEUFOM1+jfEiL3DXHK/xgEiG2EyNYfFG60jluWcupY6dATjfEsKQuibReS1djInQnoVw==", - "dependencies": { - "@jest/test-result": "^27.5.1", - "@jest/types": "^27.5.1", - "@types/node": "*", - "ansi-escapes": "^4.2.1", - "chalk": "^4.0.0", - "jest-util": "^27.5.1", - "string-length": "^4.0.1" - }, - "engines": { - "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0" - } - }, - "node_modules/jest-watcher/node_modules/ansi-styles": { - "version": "4.3.0", - "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", - "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", - "dependencies": { - "color-convert": "^2.0.1" - }, - "engines": { - "node": ">=8" - }, - "funding": { - "url": "https://github.com/chalk/ansi-styles?sponsor=1" - } - }, - "node_modules/jest-watcher/node_modules/chalk": { - "version": "4.1.2", - "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz", - "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==", - "dependencies": { - "ansi-styles": "^4.1.0", - "supports-color": "^7.1.0" - }, - "engines": { - "node": ">=10" - }, - "funding": { - "url": "https://github.com/chalk/chalk?sponsor=1" - } - }, - "node_modules/jest-watcher/node_modules/color-convert": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz", - "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==", - "dependencies": { - "color-name": "~1.1.4" - }, - "engines": { - "node": ">=7.0.0" - } - }, - "node_modules/jest-watcher/node_modules/color-name": { - "version": "1.1.4", - "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz", - "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==" - }, - "node_modules/jest-watcher/node_modules/has-flag": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz", - "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==", - "engines": { - "node": ">=8" - } - }, - "node_modules/jest-watcher/node_modules/supports-color": { - "version": "7.2.0", - "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", - "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", - "dependencies": { - "has-flag": "^4.0.0" - }, - "engines": { - "node": ">=8" - } - }, - "node_modules/jest-worker": { - "version": "27.5.1", - "resolved": "https://registry.npmjs.org/jest-worker/-/jest-worker-27.5.1.tgz", - "integrity": "sha512-7vuh85V5cdDofPyxn58nrPjBktZo0u9x1g8WtjQol+jZDaE+fhN+cIvTj11GndBnMnyfrUOG1sZQxCdjKh+DKg==", - "dependencies": { - "@types/node": "*", - "merge-stream": "^2.0.0", - "supports-color": "^8.0.0" - }, - "engines": { - "node": ">= 10.13.0" - } - }, - "node_modules/jest-worker/node_modules/has-flag": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz", - "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==", - "engines": { - "node": ">=8" - } - }, - "node_modules/jest-worker/node_modules/supports-color": { - "version": "8.1.1", - "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-8.1.1.tgz", - "integrity": "sha512-MpUEN2OodtUzxvKQl72cUF7RQ5EiHsGvSsVG0ia9c5RbWGL2CI4C7EpPS8UTBIplnlzZiNuV56w+FuNxy3ty2Q==", - "dependencies": { - "has-flag": "^4.0.0" - }, - "engines": { - "node": ">=10" - }, - "funding": { - "url": "https://github.com/chalk/supports-color?sponsor=1" - } - }, - "node_modules/jotai": { - "version": "1.4.0", - "resolved": "https://registry.npmjs.org/jotai/-/jotai-1.4.0.tgz", - "integrity": "sha512-CUB+A3N+WjtimZvtDnMXvVRognzKh86KB3rKnQlbRvpnmGYU+O9aOZMWSgTaxstXc4Y5GYy02LBEjiv4Rs8MAg==", - "engines": { - "node": ">=12.7.0" - }, - "peerDependencies": { - "@babel/core": "*", - "@babel/template": "*", - "@urql/core": "*", - "immer": "*", - "optics-ts": "*", - "react": ">=16.8", - "react-query": "*", - "valtio": "*", - "wonka": "*", - "xstate": "*" - }, - "peerDependenciesMeta": { - "@babel/core": { - "optional": true - }, - "@babel/template": { - "optional": true - }, - "@urql/core": { - "optional": true - }, - "immer": { - "optional": true - }, - "optics-ts": { - "optional": true - }, - "react-query": { - "optional": true - }, - "valtio": { - "optional": true - }, - "wonka": { - "optional": true - }, - "xstate": { - "optional": true - } - } - }, - "node_modules/jotai-immer": { - "version": "0.1.0", - "resolved": "https://registry.npmjs.org/jotai-immer/-/jotai-immer-0.1.0.tgz", - "integrity": "sha512-TwiPKgrf/V0tSh2CSEEilhhCHm0LSgIrZmIXvQRp7+aKT+cATNFUBJeSBUb42wMnTh43DoveGSUiTN1oyTv6Wg==", - "peerDependencies": { - "immer": "*", - "jotai": "*", - "react": ">=17.0.0" - } - }, - "node_modules/jpeg-js": { - "version": "0.4.4", - "resolved": "https://registry.npmjs.org/jpeg-js/-/jpeg-js-0.4.4.tgz", - "integrity": "sha512-WZzeDOEtTOBK4Mdsar0IqEU5sMr3vSV2RqkAIzUEV2BHnUfKGyswWFPFwK5EeDo93K3FohSHbLAjj0s1Wzd+dg==" - }, - "node_modules/js-sdsl": { - "version": "4.4.0", - "resolved": "https://registry.npmjs.org/js-sdsl/-/js-sdsl-4.4.0.tgz", - "integrity": "sha512-FfVSdx6pJ41Oa+CF7RDaFmTnCaFhua+SNYQX74riGOpl96x+2jQCqEfQ2bnXu/5DPCqlRuiqyvTJM0Qjz26IVg==", - "peer": true, - "funding": { - "type": "opencollective", - "url": "https://opencollective.com/js-sdsl" - } - }, - "node_modules/js-sha3": { - "version": "0.8.0", - "resolved": "https://registry.npmjs.org/js-sha3/-/js-sha3-0.8.0.tgz", - "integrity": "sha512-gF1cRrHhIzNfToc802P800N8PpXS+evLLXfsVpowqmAFR9uwbi89WvXg2QspOmXL8QL86J4T1EpFu+yUkwJY3Q==" - }, - "node_modules/js-tokens": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/js-tokens/-/js-tokens-4.0.0.tgz", - "integrity": "sha512-RdJUflcE3cUzKiMqQgsCu06FPu9UdIJO0beYbPhHN4k6apgJtifcoCtT9bcxOpYBtpD2kCM6Sbzg4CausW/PKQ==" - }, - "node_modules/js-yaml": { - "version": "3.14.1", - "resolved": "https://registry.npmjs.org/js-yaml/-/js-yaml-3.14.1.tgz", - "integrity": "sha512-okMH7OXXJ7YrN9Ok3/SXrnu4iX9yOk+25nqX4imS2npuvTYDmo/QEZoqwZkYaIDk3jVvBOTOIEgEhaLOynBS9g==", - "dependencies": { - "argparse": "^1.0.7", - "esprima": "^4.0.0" - }, - "bin": { - "js-yaml": "bin/js-yaml.js" - } - }, - "node_modules/jsbi": { - "version": "3.2.5", - "resolved": "https://registry.npmjs.org/jsbi/-/jsbi-3.2.5.tgz", - "integrity": "sha512-aBE4n43IPvjaddScbvWRA2YlTzKEynHzu7MqOyTipdHucf/VxS63ViCjxYRg86M8Rxwbt/GfzHl1kKERkt45fQ==" - }, - "node_modules/jsbn": { - "version": "0.1.1", - "resolved": "https://registry.npmjs.org/jsbn/-/jsbn-0.1.1.tgz", - "integrity": "sha512-UVU9dibq2JcFWxQPA6KCqj5O42VOmAY3zQUfEKxU0KpTGXwNoCjkX1e13eHNvw/xPynt6pU0rZ1htjWTNTSXsg==" - }, - "node_modules/jsdom": { - "version": "16.7.0", - "resolved": "https://registry.npmjs.org/jsdom/-/jsdom-16.7.0.tgz", - "integrity": "sha512-u9Smc2G1USStM+s/x1ru5Sxrl6mPYCbByG1U/hUmqaVsm4tbNyS7CicOSRyuGQYZhTu0h84qkZZQ/I+dzizSVw==", - "dependencies": { - "abab": "^2.0.5", - "acorn": "^8.2.4", - "acorn-globals": "^6.0.0", - "cssom": "^0.4.4", - "cssstyle": "^2.3.0", - "data-urls": "^2.0.0", - "decimal.js": "^10.2.1", - "domexception": "^2.0.1", - "escodegen": "^2.0.0", - "form-data": "^3.0.0", - "html-encoding-sniffer": "^2.0.1", - "http-proxy-agent": "^4.0.1", - "https-proxy-agent": "^5.0.0", - "is-potential-custom-element-name": "^1.0.1", - "nwsapi": "^2.2.0", - "parse5": "6.0.1", - "saxes": "^5.0.1", - "symbol-tree": "^3.2.4", - "tough-cookie": "^4.0.0", - "w3c-hr-time": "^1.0.2", - "w3c-xmlserializer": "^2.0.0", - "webidl-conversions": "^6.1.0", - "whatwg-encoding": "^1.0.5", - "whatwg-mimetype": "^2.3.0", - "whatwg-url": "^8.5.0", - "ws": "^7.4.6", - "xml-name-validator": "^3.0.0" - }, - "engines": { - "node": ">=10" - }, - "peerDependencies": { - "canvas": "^2.5.0" - }, - "peerDependenciesMeta": { - "canvas": { - "optional": true - } - } - }, - "node_modules/jsesc": { - "version": "2.5.2", - "resolved": "https://registry.npmjs.org/jsesc/-/jsesc-2.5.2.tgz", - "integrity": "sha512-OYu7XEzjkCQ3C5Ps3QIZsQfNpqoJyZZA99wd9aWd05NCtC5pWOkShK2mkL6HXQR6/Cy2lbNdPlZBpuQHXE63gA==", - "bin": { - "jsesc": "bin/jsesc" - }, - "engines": { - "node": ">=4" - } - }, - "node_modules/json-bigint": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/json-bigint/-/json-bigint-1.0.0.tgz", - "integrity": "sha512-SiPv/8VpZuWbvLSMtTDU8hEfrZWg/mH/nV/b4o0CYbSxu1UIQPLdwKOCIyLQX+VIPO5vrLX3i8qtqFyhdPSUSQ==", - "dependencies": { - "bignumber.js": "^9.0.0" - } - }, - "node_modules/json-buffer": { - "version": "3.0.1", - "resolved": "https://registry.npmjs.org/json-buffer/-/json-buffer-3.0.1.tgz", - "integrity": "sha512-4bV5BfR2mqfQTJm+V5tPPdf+ZpuhiIvTuAB5g8kcrXOZpTT/QwwVRWBywX1ozr6lEuPdbHxwaJlm9G6mI2sfSQ==" - }, - "node_modules/json-parse-even-better-errors": { - "version": "2.3.1", - "resolved": "https://registry.npmjs.org/json-parse-even-better-errors/-/json-parse-even-better-errors-2.3.1.tgz", - "integrity": "sha512-xyFwyhro/JEof6Ghe2iz2NcXoj2sloNsWr/XsERDK/oiPCfaNhl5ONfp+jQdAZRQQ0IJWNzH9zIZF7li91kh2w==" - }, - "node_modules/json-schema": { - "version": "0.4.0", - "resolved": "https://registry.npmjs.org/json-schema/-/json-schema-0.4.0.tgz", - "integrity": "sha512-es94M3nTIfsEPisRafak+HDLfHXnKBhV3vU5eqPcS3flIWqcxJWgXHXiey3YrpaNsanY5ei1VoYEbOzijuq9BA==" - }, - "node_modules/json-schema-traverse": { - "version": "0.4.1", - "resolved": "https://registry.npmjs.org/json-schema-traverse/-/json-schema-traverse-0.4.1.tgz", - "integrity": "sha512-xbbCH5dCYU5T8LcEhhuh7HJ88HXuW3qsI3Y0zOZFKfZEHcpWiHU/Jxzk629Brsab/mMiHQti9wMP+845RPe3Vg==" - }, - "node_modules/json-stable-stringify-without-jsonify": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/json-stable-stringify-without-jsonify/-/json-stable-stringify-without-jsonify-1.0.1.tgz", - "integrity": "sha512-Bdboy+l7tA3OGW6FjyFHWkP5LuByj1Tk33Ljyq0axyzdk9//JSi2u3fP1QSmd1KNwq6VOKYGlAu87CisVir6Pw==" - }, - "node_modules/json-stringify-safe": { - "version": "5.0.1", - "resolved": "https://registry.npmjs.org/json-stringify-safe/-/json-stringify-safe-5.0.1.tgz", - "integrity": "sha512-ZClg6AaYvamvYEE82d3Iyd3vSSIjQ+odgjaTzRuO3s7toCdFKczob2i0zCh7JE8kWn17yvAWhUVxvqGwUalsRA==" - }, - "node_modules/json5": { - "version": "2.2.3", - "resolved": "https://registry.npmjs.org/json5/-/json5-2.2.3.tgz", - "integrity": "sha512-XmOWe7eyHYH14cLdVPoyg+GOH3rYX++KpzrylJwSW98t3Nk+U8XOl8FWKOgwtzdb8lXGf6zYwDUzeHMWfxasyg==", - "bin": { - "json5": "lib/cli.js" - }, - "engines": { - "node": ">=6" - } - }, - "node_modules/jsonc-parser": { - "version": "3.2.0", - "resolved": "https://registry.npmjs.org/jsonc-parser/-/jsonc-parser-3.2.0.tgz", - "integrity": "sha512-gfFQZrcTc8CnKXp6Y4/CBT3fTc0OVuDofpre4aEeEpSBPV5X5v4+Vmx+8snU7RLPrNHPKSgLxGo9YuQzz20o+w==" - }, - "node_modules/jsonfile": { - "version": "6.1.0", - "resolved": "https://registry.npmjs.org/jsonfile/-/jsonfile-6.1.0.tgz", - "integrity": "sha512-5dgndWOriYSm5cnYaJNhalLNDKOqFwyDB/rr1E9ZsGciGvKPs8R2xYGCacuf3z6K1YKDz182fd+fY3cn3pMqXQ==", - "dependencies": { - "universalify": "^2.0.0" - }, - "optionalDependencies": { - "graceful-fs": "^4.1.6" - } - }, - "node_modules/jsonpointer": { - "version": "5.0.0", - "resolved": "https://registry.npmjs.org/jsonpointer/-/jsonpointer-5.0.0.tgz", - "integrity": "sha512-PNYZIdMjVIvVgDSYKTT63Y+KZ6IZvGRNNWcxwD+GNnUz1MKPfv30J8ueCjdwcN0nDx2SlshgyB7Oy0epAzVRRg==", - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/jsprim": { - "version": "1.4.2", - "resolved": "https://registry.npmjs.org/jsprim/-/jsprim-1.4.2.tgz", - "integrity": "sha512-P2bSOMAc/ciLz6DzgjVlGJP9+BrJWu5UDGK70C2iweC5QBIeFf0ZXRvGjEj2uYgrY2MkAAhsSWHDWlFtEroZWw==", - "dependencies": { - "assert-plus": "1.0.0", - "extsprintf": "1.3.0", - "json-schema": "0.4.0", - "verror": "1.10.0" - }, - "engines": { - "node": ">=0.6.0" - } - }, - "node_modules/jsx-ast-utils": { - "version": "3.3.1", - "resolved": "https://registry.npmjs.org/jsx-ast-utils/-/jsx-ast-utils-3.3.1.tgz", - "integrity": "sha512-pxrjmNpeRw5wwVeWyEAk7QJu2GnBO3uzPFmHCKJJFPKK2Cy0cWL23krGtLdnMmbIi6/FjlrQpPyfQI19ByPOhQ==", - "dependencies": { - "array-includes": "^3.1.5", - "object.assign": "^4.1.2" - }, - "engines": { - "node": ">=4.0" - } - }, - "node_modules/keccak": { - "version": "3.0.3", - "resolved": "https://registry.npmjs.org/keccak/-/keccak-3.0.3.tgz", - "integrity": "sha512-JZrLIAJWuZxKbCilMpNz5Vj7Vtb4scDG3dMXLOsbzBmQGyjwE61BbW7bJkfKKCShXiQZt3T6sBgALRtmd+nZaQ==", - "hasInstallScript": true, - "dependencies": { - "node-addon-api": "^2.0.0", - "node-gyp-build": "^4.2.0", - "readable-stream": "^3.6.0" - }, - "engines": { - "node": ">=10.0.0" - } - }, - "node_modules/keyv": { - "version": "4.5.2", - "resolved": "https://registry.npmjs.org/keyv/-/keyv-4.5.2.tgz", - "integrity": "sha512-5MHbFaKn8cNSmVW7BYnijeAVlE4cYA/SVkifVgrh7yotnfhKmjuXpDKjrABLnT0SfHWV21P8ow07OGfRrNDg8g==", - "dependencies": { - "json-buffer": "3.0.1" - } - }, - "node_modules/kind-of": { - "version": "6.0.3", - "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-6.0.3.tgz", - "integrity": "sha512-dcS1ul+9tmeD95T+x28/ehLgd9mENa3LsvDTtzm3vyBEO7RPptvAD+t44WVXaUjTBRcrpFeFlC8WCruUR456hw==", - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/klaw": { - "version": "1.3.1", - "resolved": "https://registry.npmjs.org/klaw/-/klaw-1.3.1.tgz", - "integrity": "sha512-TED5xi9gGQjGpNnvRWknrwAB1eL5GciPfVFOt3Vk1OJCVDQbzuSfrF3hkUQKlsgKrG1F+0t5W0m+Fje1jIt8rw==", - "peer": true, - "optionalDependencies": { - "graceful-fs": "^4.1.9" - } - }, - "node_modules/kleur": { - "version": "3.0.3", - "resolved": "https://registry.npmjs.org/kleur/-/kleur-3.0.3.tgz", - "integrity": "sha512-eTIzlVOSUR+JxdDFepEYcBMtZ9Qqdef+rnzWdRZuMbOywu5tO2w2N7rqjoANZ5k9vywhL6Br1VRjUIgTQx4E8w==", - "engines": { - "node": ">=6" - } - }, - "node_modules/klona": { - "version": "2.0.5", - "resolved": "https://registry.npmjs.org/klona/-/klona-2.0.5.tgz", - "integrity": "sha512-pJiBpiXMbt7dkzXe8Ghj/u4FfXOOa98fPW+bihOJ4SjnoijweJrNThJfd3ifXpXhREjpoF2mZVH1GfS9LV3kHQ==", - "engines": { - "node": ">= 8" - } - }, - "node_modules/language-subtag-registry": { - "version": "0.3.21", - "resolved": "https://registry.npmjs.org/language-subtag-registry/-/language-subtag-registry-0.3.21.tgz", - "integrity": "sha512-L0IqwlIXjilBVVYKFT37X9Ih11Um5NEl9cbJIuU/SwP/zEEAbBPOnEeeuxVMf45ydWQRDQN3Nqc96OgbH1K+Pg==" - }, - "node_modules/language-tags": { - "version": "1.0.5", - "resolved": "https://registry.npmjs.org/language-tags/-/language-tags-1.0.5.tgz", - "integrity": "sha512-qJhlO9cGXi6hBGKoxEG/sKZDAHD5Hnu9Hs4WbOY3pCWXDhw0N8x1NenNzm2EnNLkLkk7J2SdxAkDSbb6ftT+UQ==", - "dependencies": { - "language-subtag-registry": "~0.3.2" - } - }, - "node_modules/level": { - "version": "8.0.0", - "resolved": "https://registry.npmjs.org/level/-/level-8.0.0.tgz", - "integrity": "sha512-ypf0jjAk2BWI33yzEaaotpq7fkOPALKAgDBxggO6Q9HGX2MRXn0wbP1Jn/tJv1gtL867+YOjOB49WaUF3UoJNQ==", - "peer": true, - "dependencies": { - "browser-level": "^1.0.1", - "classic-level": "^1.2.0" - }, - "engines": { - "node": ">=12" - }, - "funding": { - "type": "opencollective", - "url": "https://opencollective.com/level" - } - }, - "node_modules/level-supports": { - "version": "4.0.1", - "resolved": "https://registry.npmjs.org/level-supports/-/level-supports-4.0.1.tgz", - "integrity": "sha512-PbXpve8rKeNcZ9C1mUicC9auIYFyGpkV9/i6g76tLgANwWhtG2v7I4xNBUlkn3lE2/dZF3Pi0ygYGtLc4RXXdA==", - "peer": true, - "engines": { - "node": ">=12" - } - }, - "node_modules/level-transcoder": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/level-transcoder/-/level-transcoder-1.0.1.tgz", - "integrity": "sha512-t7bFwFtsQeD8cl8NIoQ2iwxA0CL/9IFw7/9gAjOonH0PWTTiRfY7Hq+Ejbsxh86tXobDQ6IOiddjNYIfOBs06w==", - "peer": true, - "dependencies": { - "buffer": "^6.0.3", - "module-error": "^1.0.1" - }, - "engines": { - "node": ">=12" - } - }, - "node_modules/leven": { - "version": "3.1.0", - "resolved": "https://registry.npmjs.org/leven/-/leven-3.1.0.tgz", - "integrity": "sha512-qsda+H8jTaUaN/x5vzW2rzc+8Rw4TAQ/4KjB46IwK5VH+IlVeeeje/EoZRpiXvIqjFgK84QffqPztGI3VBLG1A==", - "engines": { - "node": ">=6" - } - }, - "node_modules/levn": { - "version": "0.4.1", - "resolved": "https://registry.npmjs.org/levn/-/levn-0.4.1.tgz", - "integrity": "sha512-+bT2uH4E5LGE7h/n3evcS/sQlJXCpIp6ym8OWJ5eV6+67Dsql/LaaT7qJBAt2rzfoa/5QBGBhxDix1dMt2kQKQ==", - "dependencies": { - "prelude-ls": "^1.2.1", - "type-check": "~0.4.0" - }, - "engines": { - "node": ">= 0.8.0" - } - }, - "node_modules/lilconfig": { - "version": "2.0.5", - "resolved": "https://registry.npmjs.org/lilconfig/-/lilconfig-2.0.5.tgz", - "integrity": "sha512-xaYmXZtTHPAw5m+xLN8ab9C+3a8YmV3asNSPOATITbtwrfbwaLJj8h66H1WMIpALCkqsIzK3h7oQ+PdX+LQ9Eg==", - "engines": { - "node": ">=10" - } - }, - "node_modules/lines-and-columns": { - "version": "1.2.4", - "resolved": "https://registry.npmjs.org/lines-and-columns/-/lines-and-columns-1.2.4.tgz", - "integrity": "sha512-7ylylesZQ/PV29jhEDl3Ufjo6ZX7gCqJr5F7PKrqc93v7fzSymt1BpwEU8nAUXs8qzzvqhbjhK5QZg6Mt/HkBg==" - }, - "node_modules/load-bmfont": { - "version": "1.4.1", - "resolved": "https://registry.npmjs.org/load-bmfont/-/load-bmfont-1.4.1.tgz", - "integrity": "sha512-8UyQoYmdRDy81Brz6aLAUhfZLwr5zV0L3taTQ4hju7m6biuwiWiJXjPhBJxbUQJA8PrkvJ/7Enqmwk2sM14soA==", - "dependencies": { - "buffer-equal": "0.0.1", - "mime": "^1.3.4", - "parse-bmfont-ascii": "^1.0.3", - "parse-bmfont-binary": "^1.0.5", - "parse-bmfont-xml": "^1.1.4", - "phin": "^2.9.1", - "xhr": "^2.0.1", - "xtend": "^4.0.0" - } - }, - "node_modules/loader-runner": { - "version": "4.3.0", - "resolved": "https://registry.npmjs.org/loader-runner/-/loader-runner-4.3.0.tgz", - "integrity": "sha512-3R/1M+yS3j5ou80Me59j7F9IMs4PXs3VqRrm0TU3AbKPxlmpoY1TNscJV/oGJXo8qCatFGTfDbY6W6ipGOYXfg==", - "engines": { - "node": ">=6.11.5" - } - }, - "node_modules/loader-utils": { - "version": "2.0.4", - "resolved": "https://registry.npmjs.org/loader-utils/-/loader-utils-2.0.4.tgz", - "integrity": "sha512-xXqpXoINfFhgua9xiqD8fPFHgkoq1mmmpE92WlDbm9rNRd/EbRb+Gqf908T2DMfuHjjJlksiK2RbHVOdD/MqSw==", - "dependencies": { - "big.js": "^5.2.2", - "emojis-list": "^3.0.0", - "json5": "^2.1.2" - }, - "engines": { - "node": ">=8.9.0" - } - }, - "node_modules/locate-path": { - "version": "6.0.0", - "resolved": "https://registry.npmjs.org/locate-path/-/locate-path-6.0.0.tgz", - "integrity": "sha512-iPZK6eYjbxRu3uB4/WZ3EsEIMJFMqAoopl3R+zuq0UjcAm/MO6KCweDgPfP3elTztoKP3KtnVHxTn2NHBSDVUw==", - "dependencies": { - "p-locate": "^5.0.0" - }, - "engines": { - "node": ">=10" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, - "node_modules/lodash": { - "version": "4.17.21", - "resolved": "https://registry.npmjs.org/lodash/-/lodash-4.17.21.tgz", - "integrity": "sha512-v2kDEe57lecTulaDIuNTPy3Ry4gLGJ6Z1O3vE1krgXZNrsQ+LFTGHVxVjcXPs17LhbZVGedAJv8XZ1tvj5FvSg==" - }, - "node_modules/lodash.camelcase": { - "version": "4.3.0", - "resolved": "https://registry.npmjs.org/lodash.camelcase/-/lodash.camelcase-4.3.0.tgz", - "integrity": "sha512-TwuEnCnxbc3rAvhf/LbG7tJUDzhqXyFnv3dtzLOPgCG/hODL7WFnsbwktkD7yUV0RrreP/l1PALq/YSg6VvjlA==", - "dev": true - }, - "node_modules/lodash.debounce": { - "version": "4.0.8", - "resolved": "https://registry.npmjs.org/lodash.debounce/-/lodash.debounce-4.0.8.tgz", - "integrity": "sha512-FT1yDzDYEoYWhnSGnpE/4Kj1fLZkDFyqRb7fNt6FdYOSxlUWAtp42Eh6Wb0rGIv/m9Bgo7x4GhQbm5Ys4SG5ow==" - }, - "node_modules/lodash.memoize": { - "version": "4.1.2", - "resolved": "https://registry.npmjs.org/lodash.memoize/-/lodash.memoize-4.1.2.tgz", - "integrity": "sha512-t7j+NzmgnQzTAYXcsHYLgimltOV1MXHtlOWf6GjL9Kj8GK5FInw5JotxvbOs+IvV1/Dzo04/fCGfLVs7aXb4Ag==" - }, - "node_modules/lodash.merge": { - "version": "4.6.2", - "resolved": "https://registry.npmjs.org/lodash.merge/-/lodash.merge-4.6.2.tgz", - "integrity": "sha512-0KpjqXRVvrYyCsX1swR/XTK0va6VQkQM6MNo7PqW77ByjAhoARA8EfrP1N4+KlKj8YS0ZUCtRT/YUuhyYDujIQ==" - }, - "node_modules/lodash.sortby": { - "version": "4.7.0", - "resolved": "https://registry.npmjs.org/lodash.sortby/-/lodash.sortby-4.7.0.tgz", - "integrity": "sha512-HDWXG8isMntAyRF5vZ7xKuEvOhT4AhlRt/3czTSjvGUxjYCBVRQY48ViDHyfYz9VIoBkW4TMGQNapx+l3RUwdA==" - }, - "node_modules/lodash.uniq": { - "version": "4.5.0", - "resolved": "https://registry.npmjs.org/lodash.uniq/-/lodash.uniq-4.5.0.tgz", - "integrity": "sha512-xfBaXQd9ryd9dlSDvnvI0lvxfLJlYAZzXomUYzLKtUeOQvOP5piqAWuGtrhWeqaXK9hhoM/iyJc5AV+XfsX3HQ==" - }, - "node_modules/log-symbols": { - "version": "4.1.0", - "resolved": "https://registry.npmjs.org/log-symbols/-/log-symbols-4.1.0.tgz", - "integrity": "sha512-8XPvpAA8uyhfteu8pIvQxpJZ7SYYdpUivZpGy6sFsBuKRY/7rQGavedeB8aK+Zkyq6upMFVL/9AW6vOYzfRyLg==", - "peer": true, - "dependencies": { - "chalk": "^4.1.0", - "is-unicode-supported": "^0.1.0" - }, - "engines": { - "node": ">=10" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, - "node_modules/log-symbols/node_modules/ansi-styles": { - "version": "4.3.0", - "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", - "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", - "peer": true, - "dependencies": { - "color-convert": "^2.0.1" - }, - "engines": { - "node": ">=8" - }, - "funding": { - "url": "https://github.com/chalk/ansi-styles?sponsor=1" - } - }, - "node_modules/log-symbols/node_modules/chalk": { - "version": "4.1.2", - "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz", - "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==", - "peer": true, - "dependencies": { - "ansi-styles": "^4.1.0", - "supports-color": "^7.1.0" - }, - "engines": { - "node": ">=10" - }, - "funding": { - "url": "https://github.com/chalk/chalk?sponsor=1" - } - }, - "node_modules/log-symbols/node_modules/color-convert": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz", - "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==", - "peer": true, - "dependencies": { - "color-name": "~1.1.4" - }, - "engines": { - "node": ">=7.0.0" - } - }, - "node_modules/log-symbols/node_modules/color-name": { - "version": "1.1.4", - "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz", - "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==", - "peer": true - }, - "node_modules/log-symbols/node_modules/has-flag": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz", - "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==", - "peer": true, - "engines": { - "node": ">=8" - } - }, - "node_modules/log-symbols/node_modules/supports-color": { - "version": "7.2.0", - "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", - "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", - "peer": true, - "dependencies": { - "has-flag": "^4.0.0" - }, - "engines": { - "node": ">=8" - } - }, - "node_modules/loose-envify": { - "version": "1.4.0", - "resolved": "https://registry.npmjs.org/loose-envify/-/loose-envify-1.4.0.tgz", - "integrity": "sha512-lyuxPGr/Wfhrlem2CL/UcnUc1zcqKAImBDzukY7Y5F/yQiNdko6+fRLevlw1HgMySw7f611UIY408EtxRSoK3Q==", - "dependencies": { - "js-tokens": "^3.0.0 || ^4.0.0" - }, - "bin": { - "loose-envify": "cli.js" - } - }, - "node_modules/lower-case": { - "version": "2.0.2", - "resolved": "https://registry.npmjs.org/lower-case/-/lower-case-2.0.2.tgz", - "integrity": "sha512-7fm3l3NAF9WfN6W3JOmf5drwpVqX78JtoGJ3A6W0a6ZnldM41w2fV5D490psKFTpMds8TJse/eHLFFsNHHjHgg==", - "dependencies": { - "tslib": "^2.0.3" - } - }, - "node_modules/lowercase-keys": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/lowercase-keys/-/lowercase-keys-3.0.0.tgz", - "integrity": "sha512-ozCC6gdQ+glXOQsveKD0YsDy8DSQFjDTz4zyzEHNV5+JP5D62LmfDZ6o1cycFx9ouG940M5dE8C8CTewdj2YWQ==", - "engines": { - "node": "^12.20.0 || ^14.13.1 || >=16.0.0" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, - "node_modules/lru_map": { - "version": "0.3.3", - "resolved": "https://registry.npmjs.org/lru_map/-/lru_map-0.3.3.tgz", - "integrity": "sha512-Pn9cox5CsMYngeDbmChANltQl+5pi6XmTrraMSzhPmMBbmgcxmqWry0U3PGapCU1yB4/LqCcom7qhHZiF/jGfQ==", - "peer": true - }, - "node_modules/lru-cache": { - "version": "6.0.0", - "resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-6.0.0.tgz", - "integrity": "sha512-Jo6dJ04CmSjuznwJSS3pUeWmd/H0ffTlkXXgwZi+eq1UCmqQwCh+eLsYOYCwY991i2Fah4h1BEMCx4qThGbsiA==", - "dependencies": { - "yallist": "^4.0.0" - }, - "engines": { - "node": ">=10" - } - }, - "node_modules/lunr": { - "version": "2.3.9", - "resolved": "https://registry.npmjs.org/lunr/-/lunr-2.3.9.tgz", - "integrity": "sha512-zTU3DaZaF3Rt9rhN3uBMGQD3dD2/vFQqnvZCDv4dl5iOzq2IZQqTxu90r4E5J+nP70J3ilqVCrbho2eWaeW8Ow==" - }, - "node_modules/lz-string": { - "version": "1.4.4", - "resolved": "https://registry.npmjs.org/lz-string/-/lz-string-1.4.4.tgz", - "integrity": "sha512-0ckx7ZHRPqb0oUm8zNr+90mtf9DQB60H1wMCjBtfi62Kl3a7JbHob6gA2bC+xRvZoOL+1hzUK8jeuEIQE8svEQ==", - "bin": { - "lz-string": "bin/bin.js" - } - }, - "node_modules/magic-string": { - "version": "0.25.9", - "resolved": "https://registry.npmjs.org/magic-string/-/magic-string-0.25.9.tgz", - "integrity": "sha512-RmF0AsMzgt25qzqqLc1+MbHmhdx0ojF2Fvs4XnOqz2ZOBXzzkEwc/dJQZCYHAn7v1jbVOjAZfK8msRn4BxO4VQ==", - "dependencies": { - "sourcemap-codec": "^1.4.8" - } - }, - "node_modules/make-dir": { - "version": "3.1.0", - "resolved": "https://registry.npmjs.org/make-dir/-/make-dir-3.1.0.tgz", - "integrity": "sha512-g3FeP20LNwhALb/6Cz6Dd4F2ngze0jz7tbzrD2wAV+o9FeNHe4rL+yK2md0J/fiSf1sa1ADhXqi5+oVwOM/eGw==", - "dependencies": { - "semver": "^6.0.0" - }, - "engines": { - "node": ">=8" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, - "node_modules/make-dir/node_modules/semver": { - "version": "6.3.0", - "resolved": "https://registry.npmjs.org/semver/-/semver-6.3.0.tgz", - "integrity": "sha512-b39TBaTSfV6yBrapU89p5fKekE2m/NwnDocOVruQFS1/veMgdzuPcnOM34M6CwxW8jH/lxEa5rBoDeUwu5HHTw==", - "bin": { - "semver": "bin/semver.js" - } - }, - "node_modules/make-plural": { - "version": "7.2.0", - "resolved": "https://registry.npmjs.org/make-plural/-/make-plural-7.2.0.tgz", - "integrity": "sha512-WkdI+iaWaBCFM2wUXwos8Z7spg5Dt64Xe/VI6NpRaly21cDtD76N6S97K//UtzV0dHOiXX+E90TnszdXHG0aMg==" - }, - "node_modules/makeerror": { - "version": "1.0.12", - "resolved": "https://registry.npmjs.org/makeerror/-/makeerror-1.0.12.tgz", - "integrity": "sha512-JmqCvUhmt43madlpFzG4BQzG2Z3m6tvQDNKdClZnO3VbIudJYmxsT0FNJMeiB2+JTSlTQTSbU8QdesVmwJcmLg==", - "dependencies": { - "tmpl": "1.0.5" - } - }, - "node_modules/marked": { - "version": "4.3.0", - "resolved": "https://registry.npmjs.org/marked/-/marked-4.3.0.tgz", - "integrity": "sha512-PRsaiG84bK+AMvxziE/lCFss8juXjNaWzVbN5tXAm4XjeaS9NAHhop+PjQxz2A9h8Q4M/xGmzP8vqNwy6JeK0A==", - "bin": { - "marked": "bin/marked.js" - }, - "engines": { - "node": ">= 12" - } - }, - "node_modules/mcl-wasm": { - "version": "0.7.9", - "resolved": "https://registry.npmjs.org/mcl-wasm/-/mcl-wasm-0.7.9.tgz", - "integrity": "sha512-iJIUcQWA88IJB/5L15GnJVnSQJmf/YaxxV6zRavv83HILHaJQb6y0iFyDMdDO0gN8X37tdxmAOrH/P8B6RB8sQ==", - "peer": true, - "engines": { - "node": ">=8.9.0" - } - }, - "node_modules/md5.js": { - "version": "1.3.5", - "resolved": "https://registry.npmjs.org/md5.js/-/md5.js-1.3.5.tgz", - "integrity": "sha512-xitP+WxNPcTTOgnTJcrhM0xvdPepipPSf3I8EIpGKeFLjt3PlJLIDG3u8EX53ZIubkb+5U2+3rELYpEhHhzdkg==", - "dependencies": { - "hash-base": "^3.0.0", - "inherits": "^2.0.1", - "safe-buffer": "^5.1.2" - } - }, - "node_modules/mdn-data": { - "version": "2.0.4", - "resolved": "https://registry.npmjs.org/mdn-data/-/mdn-data-2.0.4.tgz", - "integrity": "sha512-iV3XNKw06j5Q7mi6h+9vbx23Tv7JkjEVgKHW4pimwyDGWm0OIQntJJ+u1C6mg6mK1EaTv42XQ7w76yuzH7M2cA==" - }, - "node_modules/media-typer": { - "version": "0.3.0", - "resolved": "https://registry.npmjs.org/media-typer/-/media-typer-0.3.0.tgz", - "integrity": "sha512-dq+qelQ9akHpcOl/gUVRTxVIOkAJ1wR3QAvb4RsVjS8oVoFjDGTc679wJYmUmknUF5HwMLOgb5O+a3KxfWapPQ==", - "engines": { - "node": ">= 0.6" - } - }, - "node_modules/memfs": { - "version": "3.4.7", - "resolved": "https://registry.npmjs.org/memfs/-/memfs-3.4.7.tgz", - "integrity": "sha512-ygaiUSNalBX85388uskeCyhSAoOSgzBbtVCr9jA2RROssFL9Q19/ZXFqS+2Th2sr1ewNIWgFdLzLC3Yl1Zv+lw==", - "dependencies": { - "fs-monkey": "^1.0.3" - }, - "engines": { - "node": ">= 4.0.0" - } - }, - "node_modules/memoize-one": { - "version": "5.2.1", - "resolved": "https://registry.npmjs.org/memoize-one/-/memoize-one-5.2.1.tgz", - "integrity": "sha512-zYiwtZUcYyXKo/np96AGZAckk+FWWsUdJ3cHGGmld7+AhvcWmQyGCYUh1hc4Q/pkOhb65dQR/pqCyK0cOaHz4Q==" - }, - "node_modules/memory-level": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/memory-level/-/memory-level-1.0.0.tgz", - "integrity": "sha512-UXzwewuWeHBz5krr7EvehKcmLFNoXxGcvuYhC41tRnkrTbJohtS7kVn9akmgirtRygg+f7Yjsfi8Uu5SGSQ4Og==", - "peer": true, - "dependencies": { - "abstract-level": "^1.0.0", - "functional-red-black-tree": "^1.0.1", - "module-error": "^1.0.1" - }, - "engines": { - "node": ">=12" - } - }, - "node_modules/memorystream": { - "version": "0.3.1", - "resolved": "https://registry.npmjs.org/memorystream/-/memorystream-0.3.1.tgz", - "integrity": "sha512-S3UwM3yj5mtUSEfP41UZmt/0SCoVYUcU1rkXv+BQ5Ig8ndL4sPoJNBUJERafdPb5jjHJGuMgytgKvKIf58XNBw==", - "peer": true, - "engines": { - "node": ">= 0.10.0" - } - }, - "node_modules/merge-descriptors": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/merge-descriptors/-/merge-descriptors-1.0.1.tgz", - "integrity": "sha512-cCi6g3/Zr1iqQi6ySbseM1Xvooa98N0w31jzUYrXPX2xqObmFGHJ0tQ5u74H3mVh7wLouTseZyYIq39g8cNp1w==" - }, - "node_modules/merge-stream": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/merge-stream/-/merge-stream-2.0.0.tgz", - "integrity": "sha512-abv/qOcuPfk3URPfDzmZU1LKmuw8kT+0nIHvKrKgFrwifol/doWcdA4ZqsWQ8ENrFKkd67Mfpo/LovbIUsbt3w==" - }, - "node_modules/merge2": { - "version": "1.4.1", - "resolved": "https://registry.npmjs.org/merge2/-/merge2-1.4.1.tgz", - "integrity": "sha512-8q7VEgMJW4J8tcfVPy8g09NcQwZdbwFEqhe/WZkoIzjn/3TGDwtOCYtXGxA3O8tPzpczCCDgv+P2P5y00ZJOOg==", - "engines": { - "node": ">= 8" - } - }, - "node_modules/methods": { - "version": "1.1.2", - "resolved": "https://registry.npmjs.org/methods/-/methods-1.1.2.tgz", - "integrity": "sha512-iclAHeNqNm68zFtnZ0e+1L2yUIdvzNoauKU4WBA3VvH/vPFieF7qfRlwUZU+DA9P9bPXIS90ulxoUoCH23sV2w==", - "engines": { - "node": ">= 0.6" - } - }, - "node_modules/micromatch": { - "version": "4.0.5", - "resolved": "https://registry.npmjs.org/micromatch/-/micromatch-4.0.5.tgz", - "integrity": "sha512-DMy+ERcEW2q8Z2Po+WNXuw3c5YaUSFjAO5GsJqfEl7UjvtIuFKO6ZrKvcItdy98dwFI2N1tg3zNIdKaQT+aNdA==", - "dependencies": { - "braces": "^3.0.2", - "picomatch": "^2.3.1" - }, - "engines": { - "node": ">=8.6" - } - }, - "node_modules/mime": { - "version": "1.6.0", - "resolved": "https://registry.npmjs.org/mime/-/mime-1.6.0.tgz", - "integrity": "sha512-x0Vn8spI+wuJ1O6S7gnbaQg8Pxh4NNHb7KSINmEWKiPE4RKOplvijn+NkmYmmRgP68mc70j2EbeTFRsrswaQeg==", - "bin": { - "mime": "cli.js" - }, - "engines": { - "node": ">=4" - } - }, - "node_modules/mime-db": { - "version": "1.52.0", - "resolved": "https://registry.npmjs.org/mime-db/-/mime-db-1.52.0.tgz", - "integrity": "sha512-sPU4uV7dYlvtWJxwwxHD0PuihVNiE7TyAbQ5SWxDCB9mUYvOgroQOwYQQOKPJ8CIbE+1ETVlOoK1UC2nU3gYvg==", - "engines": { - "node": ">= 0.6" - } - }, - "node_modules/mime-types": { - "version": "2.1.35", - "resolved": "https://registry.npmjs.org/mime-types/-/mime-types-2.1.35.tgz", - "integrity": "sha512-ZDY+bPm5zTTF+YpCrAU9nK0UgICYPT0QtT1NZWFv4s++TNkcgVaT0g6+4R2uI4MjQjzysHB1zxuWL50hzaeXiw==", - "dependencies": { - "mime-db": "1.52.0" - }, - "engines": { - "node": ">= 0.6" - } - }, - "node_modules/mimic-fn": { - "version": "2.1.0", - "resolved": "https://registry.npmjs.org/mimic-fn/-/mimic-fn-2.1.0.tgz", - "integrity": "sha512-OqbOk5oEQeAZ8WXWydlu9HJjz9WVdEIvamMCcXmuqUYjTknH/sqsWvhQ3vgwKFRR1HpjvNBKQ37nbJgYzGqGcg==", - "engines": { - "node": ">=6" - } - }, - "node_modules/mimic-response": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/mimic-response/-/mimic-response-1.0.1.tgz", - "integrity": "sha512-j5EctnkH7amfV/q5Hgmoal1g2QHFJRraOtmx0JpIqkxhBhI/lJSl1nMpQ45hVarwNETOoWEimndZ4QK0RHxuxQ==", - "engines": { - "node": ">=4" - } - }, - "node_modules/min-document": { - "version": "2.19.0", - "resolved": "https://registry.npmjs.org/min-document/-/min-document-2.19.0.tgz", - "integrity": "sha512-9Wy1B3m3f66bPPmU5hdA4DR4PB2OfDU/+GS3yAB7IQozE3tqXaVv2zOjgla7MEGSRv95+ILmOuvhLkOK6wJtCQ==", - "dependencies": { - "dom-walk": "^0.1.0" - } - }, - "node_modules/min-indent": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/min-indent/-/min-indent-1.0.1.tgz", - "integrity": "sha512-I9jwMn07Sy/IwOj3zVkVik2JTvgpaykDZEigL6Rx6N9LbMywwUSMtxET+7lVoDLLd3O3IXwJwvuuns8UB/HeAg==", - "engines": { - "node": ">=4" - } - }, - "node_modules/mini-css-extract-plugin": { - "version": "2.6.1", - "resolved": "https://registry.npmjs.org/mini-css-extract-plugin/-/mini-css-extract-plugin-2.6.1.tgz", - "integrity": "sha512-wd+SD57/K6DiV7jIR34P+s3uckTRuQvx0tKPcvjFlrEylk6P4mQ2KSWk1hblj1Kxaqok7LogKOieygXqBczNlg==", - "dependencies": { - "schema-utils": "^4.0.0" - }, - "engines": { - "node": ">= 12.13.0" - }, - "funding": { - "type": "opencollective", - "url": "https://opencollective.com/webpack" - }, - "peerDependencies": { - "webpack": "^5.0.0" - } - }, - "node_modules/mini-css-extract-plugin/node_modules/ajv": { - "version": "8.11.0", - "resolved": "https://registry.npmjs.org/ajv/-/ajv-8.11.0.tgz", - "integrity": "sha512-wGgprdCvMalC0BztXvitD2hC04YffAvtsUn93JbGXYLAtCUO4xd17mCCZQxUOItiBwZvJScWo8NIvQMQ71rdpg==", - "dependencies": { - "fast-deep-equal": "^3.1.1", - "json-schema-traverse": "^1.0.0", - "require-from-string": "^2.0.2", - "uri-js": "^4.2.2" - }, - "funding": { - "type": "github", - "url": "https://github.com/sponsors/epoberezkin" - } - }, - "node_modules/mini-css-extract-plugin/node_modules/ajv-keywords": { - "version": "5.1.0", - "resolved": "https://registry.npmjs.org/ajv-keywords/-/ajv-keywords-5.1.0.tgz", - "integrity": "sha512-YCS/JNFAUyr5vAuhk1DWm1CBxRHW9LbJ2ozWeemrIqpbsqKjHVxYPyi5GC0rjZIT5JxJ3virVTS8wk4i/Z+krw==", - "dependencies": { - "fast-deep-equal": "^3.1.3" - }, - "peerDependencies": { - "ajv": "^8.8.2" - } - }, - "node_modules/mini-css-extract-plugin/node_modules/json-schema-traverse": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/json-schema-traverse/-/json-schema-traverse-1.0.0.tgz", - "integrity": "sha512-NM8/P9n3XjXhIZn1lLhkFaACTOURQXjWhV4BA/RnOv8xvgqtqpAX9IO4mRQxSx1Rlo4tqzeqb0sOlruaOy3dug==" - }, - "node_modules/mini-css-extract-plugin/node_modules/schema-utils": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/schema-utils/-/schema-utils-4.0.0.tgz", - "integrity": "sha512-1edyXKgh6XnJsJSQ8mKWXnN/BVaIbFMLpouRUrXgVq7WYne5kw3MW7UPhO44uRXQSIpTSXoJbmrR2X0w9kUTyg==", - "dependencies": { - "@types/json-schema": "^7.0.9", - "ajv": "^8.8.0", - "ajv-formats": "^2.1.1", - "ajv-keywords": "^5.0.0" - }, - "engines": { - "node": ">= 12.13.0" - }, - "funding": { - "type": "opencollective", - "url": "https://opencollective.com/webpack" - } - }, - "node_modules/minimalistic-assert": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/minimalistic-assert/-/minimalistic-assert-1.0.1.tgz", - "integrity": "sha512-UtJcAD4yEaGtjPezWuO9wC4nwUnVH/8/Im3yEHQP4b67cXlD/Qr9hdITCU1xDbSEXg2XKNaP8jsReV7vQd00/A==" - }, - "node_modules/minimalistic-crypto-utils": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/minimalistic-crypto-utils/-/minimalistic-crypto-utils-1.0.1.tgz", - "integrity": "sha512-JIYlbt6g8i5jKfJ3xz7rF0LXmv2TkDxBLUkiBeZ7bAx4GnnNMr8xFpGnOxn6GhTEHx3SjRrZEoU+j04prX1ktg==" - }, - "node_modules/minimatch": { - "version": "3.1.2", - "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-3.1.2.tgz", - "integrity": "sha512-J7p63hRiAjw1NDEww1W7i37+ByIrOWO5XQQAzZ3VOcL0PNybwpfmV/N05zFAzwQ9USyEcX6t3UO+K5aqBQOIHw==", - "dependencies": { - "brace-expansion": "^1.1.7" - }, - "engines": { - "node": "*" - } - }, - "node_modules/minimist": { - "version": "1.2.6", - "resolved": "https://registry.npmjs.org/minimist/-/minimist-1.2.6.tgz", - "integrity": "sha512-Jsjnk4bw3YJqYzbdyBiNsPWHPfO++UGG749Cxs6peCu5Xg4nrena6OVxOYxrQTqww0Jmwt+Ref8rggumkTLz9Q==" - }, - "node_modules/minipass": { - "version": "2.9.0", - "resolved": "https://registry.npmjs.org/minipass/-/minipass-2.9.0.tgz", - "integrity": "sha512-wxfUjg9WebH+CUDX/CdbRlh5SmfZiy/hpkxaRI16Y9W56Pa75sWgd/rvFilSgrauD9NyFymP/+JFV3KwzIsJeg==", - "dependencies": { - "safe-buffer": "^5.1.2", - "yallist": "^3.0.0" - } - }, - "node_modules/minipass/node_modules/yallist": { - "version": "3.1.1", - "resolved": "https://registry.npmjs.org/yallist/-/yallist-3.1.1.tgz", - "integrity": "sha512-a4UGQaWPH59mOXUYnAG2ewncQS4i4F43Tv3JoAM+s2VDAmS9NsK8GpDMLrCHPksFT7h3K6TOoUNn2pb7RoXx4g==" - }, - "node_modules/minizlib": { - "version": "1.3.3", - "resolved": "https://registry.npmjs.org/minizlib/-/minizlib-1.3.3.tgz", - "integrity": "sha512-6ZYMOEnmVsdCeTJVE0W9ZD+pVnE8h9Hma/iOwwRDsdQoePpoX56/8B6z3P9VNwppJuBKNRuFDRNRqRWexT9G9Q==", - "dependencies": { - "minipass": "^2.9.0" - } - }, - "node_modules/mkdirp": { - "version": "0.5.6", - "resolved": "https://registry.npmjs.org/mkdirp/-/mkdirp-0.5.6.tgz", - "integrity": "sha512-FP+p8RB8OWpF3YZBCrP5gtADmtXApB5AMLn+vdyA+PyxCjrCs00mjyUozssO33cwDeT3wNGdLxJ5M//YqtHAJw==", - "dependencies": { - "minimist": "^1.2.6" - }, - "bin": { - "mkdirp": "bin/cmd.js" - } - }, - "node_modules/mkdirp-promise": { - "version": "5.0.1", - "resolved": "https://registry.npmjs.org/mkdirp-promise/-/mkdirp-promise-5.0.1.tgz", - "integrity": "sha512-Hepn5kb1lJPtVW84RFT40YG1OddBNTOVUZR2bzQUHc+Z03en8/3uX0+060JDhcEzyO08HmipsN9DcnFMxhIL9w==", - "deprecated": "This package is broken and no longer maintained. 'mkdirp' itself supports promises now, please switch to that.", - "dependencies": { - "mkdirp": "*" - }, - "engines": { - "node": ">=4" - } - }, - "node_modules/mnemonist": { - "version": "0.38.5", - "resolved": "https://registry.npmjs.org/mnemonist/-/mnemonist-0.38.5.tgz", - "integrity": "sha512-bZTFT5rrPKtPJxj8KSV0WkPyNxl72vQepqqVUAW2ARUpUSF2qXMB6jZj7hW5/k7C1rtpzqbD/IIbJwLXUjCHeg==", - "dependencies": { - "obliterator": "^2.0.0" - } - }, - "node_modules/mocha": { - "version": "10.2.0", - "resolved": "https://registry.npmjs.org/mocha/-/mocha-10.2.0.tgz", - "integrity": "sha512-IDY7fl/BecMwFHzoqF2sg/SHHANeBoMMXFlS9r0OXKDssYE1M5O43wUY/9BVPeIvfH2zmEbBfseqN9gBQZzXkg==", - "peer": true, - "dependencies": { - "ansi-colors": "4.1.1", - "browser-stdout": "1.3.1", - "chokidar": "3.5.3", - "debug": "4.3.4", - "diff": "5.0.0", - "escape-string-regexp": "4.0.0", - "find-up": "5.0.0", - "glob": "7.2.0", - "he": "1.2.0", - "js-yaml": "4.1.0", - "log-symbols": "4.1.0", - "minimatch": "5.0.1", - "ms": "2.1.3", - "nanoid": "3.3.3", - "serialize-javascript": "6.0.0", - "strip-json-comments": "3.1.1", - "supports-color": "8.1.1", - "workerpool": "6.2.1", - "yargs": "16.2.0", - "yargs-parser": "20.2.4", - "yargs-unparser": "2.0.0" - }, - "bin": { - "_mocha": "bin/_mocha", - "mocha": "bin/mocha.js" - }, - "engines": { - "node": ">= 14.0.0" - }, - "funding": { - "type": "opencollective", - "url": "https://opencollective.com/mochajs" - } - }, - "node_modules/mocha/node_modules/ansi-colors": { - "version": "4.1.1", - "resolved": "https://registry.npmjs.org/ansi-colors/-/ansi-colors-4.1.1.tgz", - "integrity": "sha512-JoX0apGbHaUJBNl6yF+p6JAFYZ666/hhCGKN5t9QFjbJQKUU/g8MNbFDbvfrgKXvI1QpZplPOnwIo99lX/AAmA==", - "peer": true, - "engines": { - "node": ">=6" - } - }, - "node_modules/mocha/node_modules/argparse": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/argparse/-/argparse-2.0.1.tgz", - "integrity": "sha512-8+9WqebbFzpX9OR+Wa6O29asIogeRMzcGtAINdpMHHyAg10f05aSFVBbcEqGf/PXw1EjAZ+q2/bEBg3DvurK3Q==", - "peer": true - }, - "node_modules/mocha/node_modules/escape-string-regexp": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/escape-string-regexp/-/escape-string-regexp-4.0.0.tgz", - "integrity": "sha512-TtpcNJ3XAzx3Gq8sWRzJaVajRs0uVxA2YAkdb1jm2YkPz4G6egUFAyA3n5vtEIZefPk5Wa4UXbKuS5fKkJWdgA==", - "peer": true, - "engines": { - "node": ">=10" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, - "node_modules/mocha/node_modules/glob": { - "version": "7.2.0", - "resolved": "https://registry.npmjs.org/glob/-/glob-7.2.0.tgz", - "integrity": "sha512-lmLf6gtyrPq8tTjSmrO94wBeQbFR3HbLHbuyD69wuyQkImp2hWqMGB47OX65FBkPffO641IP9jWa1z4ivqG26Q==", - "peer": true, - "dependencies": { - "fs.realpath": "^1.0.0", - "inflight": "^1.0.4", - "inherits": "2", - "minimatch": "^3.0.4", - "once": "^1.3.0", - "path-is-absolute": "^1.0.0" - }, - "engines": { - "node": "*" - }, - "funding": { - "url": "https://github.com/sponsors/isaacs" - } - }, - "node_modules/mocha/node_modules/glob/node_modules/minimatch": { - "version": "3.1.2", - "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-3.1.2.tgz", - "integrity": "sha512-J7p63hRiAjw1NDEww1W7i37+ByIrOWO5XQQAzZ3VOcL0PNybwpfmV/N05zFAzwQ9USyEcX6t3UO+K5aqBQOIHw==", - "peer": true, - "dependencies": { - "brace-expansion": "^1.1.7" - }, - "engines": { - "node": "*" - } - }, - "node_modules/mocha/node_modules/has-flag": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz", - "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==", - "peer": true, - "engines": { - "node": ">=8" - } - }, - "node_modules/mocha/node_modules/js-yaml": { - "version": "4.1.0", - "resolved": "https://registry.npmjs.org/js-yaml/-/js-yaml-4.1.0.tgz", - "integrity": "sha512-wpxZs9NoxZaJESJGIZTyDEaYpl0FKSA+FB9aJiyemKhMwkxQg63h4T1KJgUGHpTqPDNRcmmYLugrRjJlBtWvRA==", - "peer": true, - "dependencies": { - "argparse": "^2.0.1" - }, - "bin": { - "js-yaml": "bin/js-yaml.js" - } - }, - "node_modules/mocha/node_modules/minimatch": { - "version": "5.0.1", - "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-5.0.1.tgz", - "integrity": "sha512-nLDxIFRyhDblz3qMuq+SoRZED4+miJ/G+tdDrjkkkRnjAsBexeGpgjLEQ0blJy7rHhR2b93rhQY4SvyWu9v03g==", - "peer": true, - "dependencies": { - "brace-expansion": "^2.0.1" - }, - "engines": { - "node": ">=10" - } - }, - "node_modules/mocha/node_modules/minimatch/node_modules/brace-expansion": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-2.0.1.tgz", - "integrity": "sha512-XnAIvQ8eM+kC6aULx6wuQiwVsnzsi9d3WxzV3FpWTGA19F621kwdbsAcFKXgKUHZWsy+mY6iL1sHTxWEFCytDA==", - "peer": true, - "dependencies": { - "balanced-match": "^1.0.0" - } - }, - "node_modules/mocha/node_modules/ms": { - "version": "2.1.3", - "resolved": "https://registry.npmjs.org/ms/-/ms-2.1.3.tgz", - "integrity": "sha512-6FlzubTLZG3J2a/NVCAleEhjzq5oxgHyaCU9yYXvcLsvoVaHJq/s5xXI6/XXP6tz7R9xAOtHnSO/tXtF3WRTlA==", - "peer": true - }, - "node_modules/mocha/node_modules/nanoid": { - "version": "3.3.3", - "resolved": "https://registry.npmjs.org/nanoid/-/nanoid-3.3.3.tgz", - "integrity": "sha512-p1sjXuopFs0xg+fPASzQ28agW1oHD7xDsd9Xkf3T15H3c/cifrFHVwrh74PdoklAPi+i7MdRsE47vm2r6JoB+w==", - "peer": true, - "bin": { - "nanoid": "bin/nanoid.cjs" - }, - "engines": { - "node": "^10 || ^12 || ^13.7 || ^14 || >=15.0.1" - } - }, - "node_modules/mocha/node_modules/serialize-javascript": { - "version": "6.0.0", - "resolved": "https://registry.npmjs.org/serialize-javascript/-/serialize-javascript-6.0.0.tgz", - "integrity": "sha512-Qr3TosvguFt8ePWqsvRfrKyQXIiW+nGbYpy8XK24NQHE83caxWt+mIymTT19DGFbNWNLfEwsrkSmN64lVWB9ag==", - "peer": true, - "dependencies": { - "randombytes": "^2.1.0" - } - }, - "node_modules/mocha/node_modules/supports-color": { - "version": "8.1.1", - "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-8.1.1.tgz", - "integrity": "sha512-MpUEN2OodtUzxvKQl72cUF7RQ5EiHsGvSsVG0ia9c5RbWGL2CI4C7EpPS8UTBIplnlzZiNuV56w+FuNxy3ty2Q==", - "peer": true, - "dependencies": { - "has-flag": "^4.0.0" - }, - "engines": { - "node": ">=10" - }, - "funding": { - "url": "https://github.com/chalk/supports-color?sponsor=1" - } - }, - "node_modules/mocha/node_modules/yargs-parser": { - "version": "20.2.4", - "resolved": "https://registry.npmjs.org/yargs-parser/-/yargs-parser-20.2.4.tgz", - "integrity": "sha512-WOkpgNhPTlE73h4VFAFsOnomJVaovO8VqLDzy5saChRBFQFBoMYirowyW+Q9HB4HFF4Z7VZTiG3iSzJJA29yRA==", - "peer": true, - "engines": { - "node": ">=10" - } - }, - "node_modules/mock-fs": { - "version": "4.14.0", - "resolved": "https://registry.npmjs.org/mock-fs/-/mock-fs-4.14.0.tgz", - "integrity": "sha512-qYvlv/exQ4+svI3UOvPUpLDF0OMX5euvUH0Ny4N5QyRyhNdgAgUrVH3iUINSzEPLvx0kbo/Bp28GJKIqvE7URw==" - }, - "node_modules/module-error": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/module-error/-/module-error-1.0.2.tgz", - "integrity": "sha512-0yuvsqSCv8LbaOKhnsQ/T5JhyFlCYLPXK3U2sgV10zoKQwzs/MyfuQUOZQ1V/6OCOJsK/TRgNVrPuPDqtdMFtA==", - "peer": true, - "engines": { - "node": ">=10" - } - }, - "node_modules/moment": { - "version": "2.29.4", - "resolved": "https://registry.npmjs.org/moment/-/moment-2.29.4.tgz", - "integrity": "sha512-5LC9SOxjSc2HF6vO2CyuTDNivEdoz2IvyJJGj6X8DJ0eFyfszE0QiEd+iXmBvUP3WHxSjFH/vIsA0EN00cgr8w==", - "optional": true, - "engines": { - "node": "*" - } - }, - "node_modules/ms": { - "version": "2.1.2", - "resolved": "https://registry.npmjs.org/ms/-/ms-2.1.2.tgz", - "integrity": "sha512-sGkPx+VjMtmA6MX27oA4FBFELFCZZ4S4XqeGOXCv68tT+jb3vk/RyaKWP0PTKyWtmLSM0b+adUTEvbs1PEaH2w==" - }, - "node_modules/ms.macro": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/ms.macro/-/ms.macro-2.0.0.tgz", - "integrity": "sha512-vkb83Sa4BZ2ynF/C1x5D8ofExja36mYW6OB7JNh6Ek0NSw3Oj4moM0nN69rfbm28aHlON52E+dTEgW+3up3x1g==", - "dependencies": { - "babel-plugin-macros": "^2.0.0", - "ms": "^2.0.0" - } - }, - "node_modules/ms.macro/node_modules/babel-plugin-macros": { - "version": "2.8.0", - "resolved": "https://registry.npmjs.org/babel-plugin-macros/-/babel-plugin-macros-2.8.0.tgz", - "integrity": "sha512-SEP5kJpfGYqYKpBrj5XU3ahw5p5GOHJ0U5ssOSQ/WBVdwkD2Dzlce95exQTs3jOVWPPKLBN2rlEWkCK7dSmLvg==", - "dependencies": { - "@babel/runtime": "^7.7.2", - "cosmiconfig": "^6.0.0", - "resolve": "^1.12.0" - } - }, - "node_modules/ms.macro/node_modules/cosmiconfig": { - "version": "6.0.0", - "resolved": "https://registry.npmjs.org/cosmiconfig/-/cosmiconfig-6.0.0.tgz", - "integrity": "sha512-xb3ZL6+L8b9JLLCx3ZdoZy4+2ECphCMo2PwqgP1tlfVq6M6YReyzBJtvWWtbDSpNr9hn96pkCiZqUcFEc+54Qg==", - "dependencies": { - "@types/parse-json": "^4.0.0", - "import-fresh": "^3.1.0", - "parse-json": "^5.0.0", - "path-type": "^4.0.0", - "yaml": "^1.7.2" - }, - "engines": { - "node": ">=8" - } - }, - "node_modules/multibase": { - "version": "4.0.6", - "resolved": "https://registry.npmjs.org/multibase/-/multibase-4.0.6.tgz", - "integrity": "sha512-x23pDe5+svdLz/k5JPGCVdfn7Q5mZVMBETiC+ORfO+sor9Sgs0smJzAjfTbM5tckeCqnaUuMYoz+k3RXMmJClQ==", - "deprecated": "This module has been superseded by the multiformats module", - "dependencies": { - "@multiformats/base-x": "^4.0.1" - }, - "engines": { - "node": ">=12.0.0", - "npm": ">=6.0.0" - } - }, - "node_modules/multicast-dns": { - "version": "7.2.5", - "resolved": "https://registry.npmjs.org/multicast-dns/-/multicast-dns-7.2.5.tgz", - "integrity": "sha512-2eznPJP8z2BFLX50tf0LuODrpINqP1RVIm/CObbTcBRITQgmC/TjcREF1NeTBzIcR5XO/ukWo+YHOjBbFwIupg==", - "dependencies": { - "dns-packet": "^5.2.2", - "thunky": "^1.0.2" - }, - "bin": { - "multicast-dns": "cli.js" - } - }, - "node_modules/multicodec": { - "version": "3.2.1", - "resolved": "https://registry.npmjs.org/multicodec/-/multicodec-3.2.1.tgz", - "integrity": "sha512-+expTPftro8VAW8kfvcuNNNBgb9gPeNYV9dn+z1kJRWF2vih+/S79f2RVeIwmrJBUJ6NT9IUPWnZDQvegEh5pw==", - "deprecated": "This module has been superseded by the multiformats module", - "dependencies": { - "uint8arrays": "^3.0.0", - "varint": "^6.0.0" - } - }, - "node_modules/multiformats": { - "version": "9.9.0", - "resolved": "https://registry.npmjs.org/multiformats/-/multiformats-9.9.0.tgz", - "integrity": "sha512-HoMUjhH9T8DDBNT+6xzkrd9ga/XiBI4xLr58LJACwK6G3HTOPeMz4nB4KJs33L2BelrIJa7P0VuNaVF3hMYfjg==" - }, - "node_modules/multihashes": { - "version": "4.0.3", - "resolved": "https://registry.npmjs.org/multihashes/-/multihashes-4.0.3.tgz", - "integrity": "sha512-0AhMH7Iu95XjDLxIeuCOOE4t9+vQZsACyKZ9Fxw2pcsRmlX4iCn1mby0hS0bb+nQOVpdQYWPpnyusw4da5RPhA==", - "dependencies": { - "multibase": "^4.0.1", - "uint8arrays": "^3.0.0", - "varint": "^5.0.2" - }, - "engines": { - "node": ">=12.0.0", - "npm": ">=6.0.0" - } - }, - "node_modules/multihashes/node_modules/varint": { - "version": "5.0.2", - "resolved": "https://registry.npmjs.org/varint/-/varint-5.0.2.tgz", - "integrity": "sha512-lKxKYG6H03yCZUpAGOPOsMcGxd1RHCu1iKvEHYDPmTyq2HueGhD73ssNBqqQWfvYs04G9iUFRvmAVLW20Jw6ow==" - }, - "node_modules/mv": { - "version": "2.1.1", - "resolved": "https://registry.npmjs.org/mv/-/mv-2.1.1.tgz", - "integrity": "sha512-at/ZndSy3xEGJ8i0ygALh8ru9qy7gWW1cmkaqBN29JmMlIvM//MEO9y1sk/avxuwnPcfhkejkLsuPxH81BrkSg==", - "optional": true, - "dependencies": { - "mkdirp": "~0.5.1", - "ncp": "~2.0.0", - "rimraf": "~2.4.0" - }, - "engines": { - "node": ">=0.8.0" - } - }, - "node_modules/mv/node_modules/glob": { - "version": "6.0.4", - "resolved": "https://registry.npmjs.org/glob/-/glob-6.0.4.tgz", - "integrity": "sha512-MKZeRNyYZAVVVG1oZeLaWie1uweH40m9AZwIwxyPbTSX4hHrVYSzLg0Ro5Z5R7XKkIX+Cc6oD1rqeDJnwsB8/A==", - "optional": true, - "dependencies": { - "inflight": "^1.0.4", - "inherits": "2", - "minimatch": "2 || 3", - "once": "^1.3.0", - "path-is-absolute": "^1.0.0" - }, - "engines": { - "node": "*" - } - }, - "node_modules/mv/node_modules/rimraf": { - "version": "2.4.5", - "resolved": "https://registry.npmjs.org/rimraf/-/rimraf-2.4.5.tgz", - "integrity": "sha512-J5xnxTyqaiw06JjMftq7L9ouA448dw/E7dKghkP9WpKNuwmARNNg+Gk8/u5ryb9N/Yo2+z3MCwuqFK/+qPOPfQ==", - "optional": true, - "dependencies": { - "glob": "^6.0.1" - }, - "bin": { - "rimraf": "bin.js" - } - }, - "node_modules/nan": { - "version": "2.17.0", - "resolved": "https://registry.npmjs.org/nan/-/nan-2.17.0.tgz", - "integrity": "sha512-2ZTgtl0nJsO0KQCjEpxcIr5D+Yv90plTitZt9JBfQvVJDS5seMl3FOvsh3+9CoYWXf/1l5OaZzzF6nDm4cagaQ==", - "optional": true - }, - "node_modules/nano-json-stream-parser": { - "version": "0.1.2", - "resolved": "https://registry.npmjs.org/nano-json-stream-parser/-/nano-json-stream-parser-0.1.2.tgz", - "integrity": "sha512-9MqxMH/BSJC7dnLsEMPyfN5Dvoo49IsPFYMcHw3Bcfc2kN0lpHRBSzlMSVx4HGyJ7s9B31CyBTVehWJoQ8Ctew==" - }, - "node_modules/nanoid": { - "version": "3.3.4", - "resolved": "https://registry.npmjs.org/nanoid/-/nanoid-3.3.4.tgz", - "integrity": "sha512-MqBkQh/OHTS2egovRtLk45wEyNXwF+cokD+1YPf9u5VfJiRdAiRwB2froX5Co9Rh20xs4siNPm8naNotSD6RBw==", - "bin": { - "nanoid": "bin/nanoid.cjs" - }, - "engines": { - "node": "^10 || ^12 || ^13.7 || ^14 || >=15.0.1" - } - }, - "node_modules/napi-macros": { - "version": "2.2.2", - "resolved": "https://registry.npmjs.org/napi-macros/-/napi-macros-2.2.2.tgz", - "integrity": "sha512-hmEVtAGYzVQpCKdbQea4skABsdXW4RUh5t5mJ2zzqowJS2OyXZTU1KhDVFhx+NlWZ4ap9mqR9TcDO3LTTttd+g==", - "peer": true - }, - "node_modules/natural-compare": { - "version": "1.4.0", - "resolved": "https://registry.npmjs.org/natural-compare/-/natural-compare-1.4.0.tgz", - "integrity": "sha512-OWND8ei3VtNC9h7V60qff3SVobHr996CTwgxubgyQYEpg290h9J0buyECNNJexkFm5sOajh5G116RYA1c8ZMSw==" - }, - "node_modules/ncp": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/ncp/-/ncp-2.0.0.tgz", - "integrity": "sha512-zIdGUrPRFTUELUvr3Gmc7KZ2Sw/h1PiVM0Af/oHB6zgnV1ikqSfRk+TOufi79aHYCW3NiOXmr1BP5nWbzojLaA==", - "optional": true, - "bin": { - "ncp": "bin/ncp" - } - }, - "node_modules/negotiator": { - "version": "0.6.3", - "resolved": "https://registry.npmjs.org/negotiator/-/negotiator-0.6.3.tgz", - "integrity": "sha512-+EUsqGPLsM+j/zdChZjsnX51g4XrHFOIXwfnCVPGlQk/k5giakcKsuxCObBRu6DSm9opw/O6slWbJdghQM4bBg==", - "engines": { - "node": ">= 0.6" - } - }, - "node_modules/neo-async": { - "version": "2.6.2", - "resolved": "https://registry.npmjs.org/neo-async/-/neo-async-2.6.2.tgz", - "integrity": "sha512-Yd3UES5mWCSqR+qNT93S3UoYUkqAZ9lLg8a7g9rimsWmYGK8cVToA4/sF3RrshdyV3sAGMXVUmpMYOw+dLpOuw==" - }, - "node_modules/next-tick": { - "version": "1.1.0", - "resolved": "https://registry.npmjs.org/next-tick/-/next-tick-1.1.0.tgz", - "integrity": "sha512-CXdUiJembsNjuToQvxayPZF9Vqht7hewsvy2sOWafLvi2awflj9mOC6bHIg50orX8IJvWKY9wYQ/zB2kogPslQ==" - }, - "node_modules/no-case": { - "version": "3.0.4", - "resolved": "https://registry.npmjs.org/no-case/-/no-case-3.0.4.tgz", - "integrity": "sha512-fgAN3jGAh+RoxUGZHTSOLJIqUc2wmoBwGR4tbpNAKmmovFoWq0OdRkb0VkldReO2a2iBT/OEulG9XSUc10r3zg==", - "dependencies": { - "lower-case": "^2.0.2", - "tslib": "^2.0.3" - } - }, - "node_modules/node-addon-api": { - "version": "2.0.2", - "resolved": "https://registry.npmjs.org/node-addon-api/-/node-addon-api-2.0.2.tgz", - "integrity": "sha512-Ntyt4AIXyaLIuMHF6IOoTakB3K+RWxwtsHNRxllEoA6vPwP9o4866g6YWDLUdnucilZhmkxiHwHr11gAENw+QA==" - }, - "node_modules/node-cache": { - "version": "5.1.2", - "resolved": "https://registry.npmjs.org/node-cache/-/node-cache-5.1.2.tgz", - "integrity": "sha512-t1QzWwnk4sjLWaQAS8CHgOJ+RAfmHpxFWmc36IWTiWHQfs0w5JDMBS1b1ZxQteo0vVVuWJvIUKHDkkeK7vIGCg==", - "dependencies": { - "clone": "2.x" - }, - "engines": { - "node": ">= 8.0.0" - } - }, - "node_modules/node-fetch": { - "version": "2.6.7", - "resolved": "https://registry.npmjs.org/node-fetch/-/node-fetch-2.6.7.tgz", - "integrity": "sha512-ZjMPFEfVx5j+y2yF35Kzx5sF7kDzxuDj6ziH4FFbOp87zKDZNx8yExJIb05OGF4Nlt9IHFIMBkRl41VdvcNdbQ==", - "dependencies": { - "whatwg-url": "^5.0.0" - }, - "engines": { - "node": "4.x || >=6.0.0" - }, - "peerDependencies": { - "encoding": "^0.1.0" - }, - "peerDependenciesMeta": { - "encoding": { - "optional": true - } - } - }, - "node_modules/node-fetch/node_modules/tr46": { - "version": "0.0.3", - "resolved": "https://registry.npmjs.org/tr46/-/tr46-0.0.3.tgz", - "integrity": "sha512-N3WMsuqV66lT30CrXNbEjx4GEwlow3v6rr4mCcv6prnfwhS01rkgyFdjPNBYd9br7LpXV1+Emh01fHnq2Gdgrw==" - }, - "node_modules/node-fetch/node_modules/webidl-conversions": { - "version": "3.0.1", - "resolved": "https://registry.npmjs.org/webidl-conversions/-/webidl-conversions-3.0.1.tgz", - "integrity": "sha512-2JAn3z8AR6rjK8Sm8orRC0h/bcl/DqL7tRPdGZ4I1CjdF+EaMLmYxBHyXuKL849eucPFhvBoxMsflfOb8kxaeQ==" - }, - "node_modules/node-fetch/node_modules/whatwg-url": { - "version": "5.0.0", - "resolved": "https://registry.npmjs.org/whatwg-url/-/whatwg-url-5.0.0.tgz", - "integrity": "sha512-saE57nupxk6v3HY35+jzBwYa0rKSy0XR8JSxZPwgLr7ys0IBzhGviA1/TUGJLmSVqs8pb9AnvICXEuOHLprYTw==", - "dependencies": { - "tr46": "~0.0.3", - "webidl-conversions": "^3.0.0" - } - }, - "node_modules/node-forge": { - "version": "1.3.1", - "resolved": "https://registry.npmjs.org/node-forge/-/node-forge-1.3.1.tgz", - "integrity": "sha512-dPEtOeMvF9VMcYV/1Wb8CPoVAXtp6MKMlcbAt4ddqmGqUJ6fQZFXkNZNkNlfevtNkGtaSoXf/vNNNSvgrdXwtA==", - "engines": { - "node": ">= 6.13.0" - } - }, - "node_modules/node-gyp-build": { - "version": "4.5.0", - "resolved": "https://registry.npmjs.org/node-gyp-build/-/node-gyp-build-4.5.0.tgz", - "integrity": "sha512-2iGbaQBV+ITgCz76ZEjmhUKAKVf7xfY1sRl4UiKQspfZMH2h06SyhNsnSVy50cwkFQDGLyif6m/6uFXHkOZ6rg==", - "bin": { - "node-gyp-build": "bin.js", - "node-gyp-build-optional": "optional.js", - "node-gyp-build-test": "build-test.js" - } - }, - "node_modules/node-int64": { - "version": "0.4.0", - "resolved": "https://registry.npmjs.org/node-int64/-/node-int64-0.4.0.tgz", - "integrity": "sha512-O5lz91xSOeoXP6DulyHfllpq+Eg00MWitZIbtPfoSEvqIHdl5gfcY6hYzDWnj0qD5tz52PI08u9qUvSVeUBeHw==" - }, - "node_modules/node-releases": { - "version": "2.0.5", - "resolved": "https://registry.npmjs.org/node-releases/-/node-releases-2.0.5.tgz", - "integrity": "sha512-U9h1NLROZTq9uE1SNffn6WuPDg8icmi3ns4rEl/oTfIle4iLjTliCzgTsbaIFMq/Xn078/lfY/BL0GWZ+psK4Q==" - }, - "node_modules/node-vibrant": { - "version": "3.2.1-alpha.1", - "resolved": "https://registry.npmjs.org/node-vibrant/-/node-vibrant-3.2.1-alpha.1.tgz", - "integrity": "sha512-EQergCp7fvbvUCE0VMCBnvaAV0lGWSP8SXLmuWQIBzQK5M5pIwcd9fIOXuzFkJx/8hUiiiLvAzzGDS/bIy2ikA==", - "dependencies": { - "@types/node": "^10.12.18", - "@vibrant/core": "^3.2.1-alpha.1", - "@vibrant/generator-default": "^3.2.1-alpha.1", - "@vibrant/image-browser": "^3.2.1-alpha.1", - "@vibrant/image-node": "^3.2.1-alpha.1", - "@vibrant/quantizer-mmcq": "^3.2.1-alpha.1", - "url": "^0.11.0" - } - }, - "node_modules/node-vibrant/node_modules/@types/node": { - "version": "10.17.60", - "resolved": "https://registry.npmjs.org/@types/node/-/node-10.17.60.tgz", - "integrity": "sha512-F0KIgDJfy2nA3zMLmWGKxcH2ZVEtCZXHHdOQs2gSaQ27+lNeEfGxzkIw90aXswATX7AZ33tahPbzy6KAfUreVw==" - }, - "node_modules/normalize-path": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/normalize-path/-/normalize-path-3.0.0.tgz", - "integrity": "sha512-6eZs5Ls3WtCisHWp9S2GUy8dqkpGi4BVSz3GaqiE6ezub0512ESztXUwUB6C6IKbQkY2Pnb/mD4WYojCRwcwLA==", - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/normalize-range": { - "version": "0.1.2", - "resolved": "https://registry.npmjs.org/normalize-range/-/normalize-range-0.1.2.tgz", - "integrity": "sha512-bdok/XvKII3nUpklnV6P2hxtMNrCboOjAcyBuQnWEhO665FwrSNRxU+AqpsyvO6LgGYPspN+lu5CLtw4jPRKNA==", - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/normalize-url": { - "version": "6.1.0", - "resolved": "https://registry.npmjs.org/normalize-url/-/normalize-url-6.1.0.tgz", - "integrity": "sha512-DlL+XwOy3NxAQ8xuC0okPgK46iuVNAK01YN7RueYBqqFeGsBjV9XmCAzAdgt+667bCl5kPh9EqKKDwnaPG1I7A==", - "engines": { - "node": ">=10" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, - "node_modules/notistack": { - "version": "2.0.5", - "resolved": "https://registry.npmjs.org/notistack/-/notistack-2.0.5.tgz", - "integrity": "sha512-Ig2T1Muqkc1PaSQcEDrK7diKv6cBxw02Iq6uv074ySfgq524TV5lK41diAb6OSsaiWfp3aRt+T3+0MF8m2EcJQ==", - "dependencies": { - "clsx": "^1.1.0", - "hoist-non-react-statics": "^3.3.0" - }, - "funding": { - "type": "opencollective", - "url": "https://opencollective.com/notistack" - }, - "peerDependencies": { - "@emotion/react": "^11.4.1", - "@emotion/styled": "^11.3.0", - "@mui/material": "^5.0.0", - "react": "^16.8.0 || ^17.0.0 || ^18.0.0", - "react-dom": "^16.8.0 || ^17.0.0 || ^18.0.0" - }, - "peerDependenciesMeta": { - "@emotion/react": { - "optional": true - }, - "@emotion/styled": { - "optional": true - } - } - }, - "node_modules/npm-run-path": { - "version": "4.0.1", - "resolved": "https://registry.npmjs.org/npm-run-path/-/npm-run-path-4.0.1.tgz", - "integrity": "sha512-S48WzZW777zhNIrn7gxOlISNAqi9ZC/uQFnRdbeIHhZhCA6UqpkOT8T1G7BvfdgP4Er8gF4sUbaS0i7QvIfCWw==", - "dependencies": { - "path-key": "^3.0.0" - }, - "engines": { - "node": ">=8" - } - }, - "node_modules/nth-check": { - "version": "2.1.1", - "resolved": "https://registry.npmjs.org/nth-check/-/nth-check-2.1.1.tgz", - "integrity": "sha512-lqjrjmaOoAnWfMmBPL+XNnynZh2+swxiX3WUE0s4yEHI6m+AwrK2UZOimIRl3X/4QctVqS8AiZjFqyOGrMXb/w==", - "dependencies": { - "boolbase": "^1.0.0" - }, - "funding": { - "url": "https://github.com/fb55/nth-check?sponsor=1" - } - }, - "node_modules/number-to-bn": { - "version": "1.7.0", - "resolved": "https://registry.npmjs.org/number-to-bn/-/number-to-bn-1.7.0.tgz", - "integrity": "sha512-wsJ9gfSz1/s4ZsJN01lyonwuxA1tml6X1yBDnfpMglypcBRFZZkus26EdPSlqS5GJfYddVZa22p3VNb3z5m5Ig==", - "dependencies": { - "bn.js": "4.11.6", - "strip-hex-prefix": "1.0.0" - }, - "engines": { - "node": ">=6.5.0", - "npm": ">=3" - } - }, - "node_modules/number-to-bn/node_modules/bn.js": { - "version": "4.11.6", - "resolved": "https://registry.npmjs.org/bn.js/-/bn.js-4.11.6.tgz", - "integrity": "sha512-XWwnNNFCuuSQ0m3r3C4LE3EiORltHd9M05pq6FOlVeiophzRbMo50Sbz1ehl8K3Z+jw9+vmgnXefY1hz8X+2wA==" - }, - "node_modules/nwsapi": { - "version": "2.2.1", - "resolved": "https://registry.npmjs.org/nwsapi/-/nwsapi-2.2.1.tgz", - "integrity": "sha512-JYOWTeFoS0Z93587vRJgASD5Ut11fYl5NyihP3KrYBvMe1FRRs6RN7m20SA/16GM4P6hTnZjT+UmDOt38UeXNg==" - }, - "node_modules/oauth-sign": { - "version": "0.9.0", - "resolved": "https://registry.npmjs.org/oauth-sign/-/oauth-sign-0.9.0.tgz", - "integrity": "sha512-fexhUFFPTGV8ybAtSIGbV6gOkSv8UtRbDBnAyLQw4QPKkgNlsH2ByPGtMUqdWkos6YCRmAqViwgZrJc/mRDzZQ==", - "engines": { - "node": "*" - } - }, - "node_modules/object-assign": { - "version": "4.1.1", - "resolved": "https://registry.npmjs.org/object-assign/-/object-assign-4.1.1.tgz", - "integrity": "sha512-rJgTQnkUnH1sFw8yT6VSU3zD3sWmu6sZhIseY8VX+GRu3P6F7Fu+JNDoXfklElbLJSnc3FUQHVe4cU5hj+BcUg==", - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/object-hash": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/object-hash/-/object-hash-3.0.0.tgz", - "integrity": "sha512-RSn9F68PjH9HqtltsSnqYC1XXoWe9Bju5+213R98cNGttag9q9yAOTzdbsqvIa7aNm5WffBZFpWYr2aWrklWAw==", - "engines": { - "node": ">= 6" - } - }, - "node_modules/object-inspect": { - "version": "1.12.3", - "resolved": "https://registry.npmjs.org/object-inspect/-/object-inspect-1.12.3.tgz", - "integrity": "sha512-geUvdk7c+eizMNUDkRpW1wJwgfOiOeHbxBR/hLXK1aT6zmVSO0jsQcs7fj6MGw89jC/cjGfLcNOrtMYtGqm81g==", - "funding": { - "url": "https://github.com/sponsors/ljharb" - } - }, - "node_modules/object-is": { - "version": "1.1.5", - "resolved": "https://registry.npmjs.org/object-is/-/object-is-1.1.5.tgz", - "integrity": "sha512-3cyDsyHgtmi7I7DfSSI2LDp6SK2lwvtbg0p0R1e0RvTqF5ceGx+K2dfSjm1bKDMVCFEDAQvy+o8c6a7VujOddw==", - "dependencies": { - "call-bind": "^1.0.2", - "define-properties": "^1.1.3" - }, - "engines": { - "node": ">= 0.4" - }, - "funding": { - "url": "https://github.com/sponsors/ljharb" - } - }, - "node_modules/object-keys": { - "version": "1.1.1", - "resolved": "https://registry.npmjs.org/object-keys/-/object-keys-1.1.1.tgz", - "integrity": "sha512-NuAESUOUMrlIXOfHKzD6bpPu3tYt3xvjNdRIQ+FeT0lNb4K8WR70CaDxhuNguS2XG+GjkyMwOzsN5ZktImfhLA==", - "engines": { - "node": ">= 0.4" - } - }, - "node_modules/object.assign": { - "version": "4.1.4", - "resolved": "https://registry.npmjs.org/object.assign/-/object.assign-4.1.4.tgz", - "integrity": "sha512-1mxKf0e58bvyjSCtKYY4sRe9itRk3PJpquJOjeIkz885CczcI4IvJJDLPS72oowuSh+pBxUFROpX+TU++hxhZQ==", - "dependencies": { - "call-bind": "^1.0.2", - "define-properties": "^1.1.4", - "has-symbols": "^1.0.3", - "object-keys": "^1.1.1" - }, - "engines": { - "node": ">= 0.4" - }, - "funding": { - "url": "https://github.com/sponsors/ljharb" - } - }, - "node_modules/object.entries": { - "version": "1.1.5", - "resolved": "https://registry.npmjs.org/object.entries/-/object.entries-1.1.5.tgz", - "integrity": "sha512-TyxmjUoZggd4OrrU1W66FMDG6CuqJxsFvymeyXI51+vQLN67zYfZseptRge703kKQdo4uccgAKebXFcRCzk4+g==", - "dependencies": { - "call-bind": "^1.0.2", - "define-properties": "^1.1.3", - "es-abstract": "^1.19.1" - }, - "engines": { - "node": ">= 0.4" - } - }, - "node_modules/object.fromentries": { - "version": "2.0.5", - "resolved": "https://registry.npmjs.org/object.fromentries/-/object.fromentries-2.0.5.tgz", - "integrity": "sha512-CAyG5mWQRRiBU57Re4FKoTBjXfDoNwdFVH2Y1tS9PqCsfUTymAohOkEMSG3aRNKmv4lV3O7p1et7c187q6bynw==", - "dependencies": { - "call-bind": "^1.0.2", - "define-properties": "^1.1.3", - "es-abstract": "^1.19.1" - }, - "engines": { - "node": ">= 0.4" - }, - "funding": { - "url": "https://github.com/sponsors/ljharb" - } - }, - "node_modules/object.getownpropertydescriptors": { - "version": "2.1.4", - "resolved": "https://registry.npmjs.org/object.getownpropertydescriptors/-/object.getownpropertydescriptors-2.1.4.tgz", - "integrity": "sha512-sccv3L/pMModT6dJAYF3fzGMVcb38ysQ0tEE6ixv2yXJDtEIPph268OlAdJj5/qZMZDq2g/jqvwppt36uS/uQQ==", - "dependencies": { - "array.prototype.reduce": "^1.0.4", - "call-bind": "^1.0.2", - "define-properties": "^1.1.4", - "es-abstract": "^1.20.1" - }, - "engines": { - "node": ">= 0.8" - }, - "funding": { - "url": "https://github.com/sponsors/ljharb" - } - }, - "node_modules/object.hasown": { - "version": "1.1.1", - "resolved": "https://registry.npmjs.org/object.hasown/-/object.hasown-1.1.1.tgz", - "integrity": "sha512-LYLe4tivNQzq4JdaWW6WO3HMZZJWzkkH8fnI6EebWl0VZth2wL2Lovm74ep2/gZzlaTdV62JZHEqHQ2yVn8Q/A==", - "dependencies": { - "define-properties": "^1.1.4", - "es-abstract": "^1.19.5" - }, - "funding": { - "url": "https://github.com/sponsors/ljharb" - } - }, - "node_modules/object.values": { - "version": "1.1.5", - "resolved": "https://registry.npmjs.org/object.values/-/object.values-1.1.5.tgz", - "integrity": "sha512-QUZRW0ilQ3PnPpbNtgdNV1PDbEqLIiSFB3l+EnGtBQ/8SUTLj1PZwtQHABZtLgwpJZTSZhuGLOGk57Drx2IvYg==", - "dependencies": { - "call-bind": "^1.0.2", - "define-properties": "^1.1.3", - "es-abstract": "^1.19.1" - }, - "engines": { - "node": ">= 0.4" - }, - "funding": { - "url": "https://github.com/sponsors/ljharb" - } - }, - "node_modules/obliterator": { - "version": "2.0.4", - "resolved": "https://registry.npmjs.org/obliterator/-/obliterator-2.0.4.tgz", - "integrity": "sha512-lgHwxlxV1qIg1Eap7LgIeoBWIMFibOjbrYPIPJZcI1mmGAI2m3lNYpK12Y+GBdPQ0U1hRwSord7GIaawz962qQ==" - }, - "node_modules/oboe": { - "version": "2.1.5", - "resolved": "https://registry.npmjs.org/oboe/-/oboe-2.1.5.tgz", - "integrity": "sha512-zRFWiF+FoicxEs3jNI/WYUrVEgA7DeET/InK0XQuudGHRg8iIob3cNPrJTKaz4004uaA9Pbe+Dwa8iluhjLZWA==", - "dependencies": { - "http-https": "^1.0.0" - } - }, - "node_modules/obuf": { - "version": "1.1.2", - "resolved": "https://registry.npmjs.org/obuf/-/obuf-1.1.2.tgz", - "integrity": "sha512-PX1wu0AmAdPqOL1mWhqmlOd8kOIZQwGZw6rh7uby9fTc5lhaOWFLX3I6R1hrF9k3zUY40e6igsLGkDXK92LJNg==" - }, - "node_modules/omggif": { - "version": "1.0.10", - "resolved": "https://registry.npmjs.org/omggif/-/omggif-1.0.10.tgz", - "integrity": "sha512-LMJTtvgc/nugXj0Vcrrs68Mn2D1r0zf630VNtqtpI1FEO7e+O9FP4gqs9AcnBaSEeoHIPm28u6qgPR0oyEpGSw==" - }, - "node_modules/on-finished": { - "version": "2.4.1", - "resolved": "https://registry.npmjs.org/on-finished/-/on-finished-2.4.1.tgz", - "integrity": "sha512-oVlzkg3ENAhCk2zdv7IJwd/QUD4z2RxRwpkcGY8psCVcCYZNq4wYnVWALHM+brtuJjePWiYF/ClmuDr8Ch5+kg==", - "dependencies": { - "ee-first": "1.1.1" - }, - "engines": { - "node": ">= 0.8" - } - }, - "node_modules/on-headers": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/on-headers/-/on-headers-1.0.2.tgz", - "integrity": "sha512-pZAE+FJLoyITytdqK0U5s+FIpjN0JP3OzFi/u8Rx+EV5/W+JTWGXG8xFzevE7AjBfDqHv/8vL8qQsIhHnqRkrA==", - "engines": { - "node": ">= 0.8" - } - }, - "node_modules/once": { - "version": "1.4.0", - "resolved": "https://registry.npmjs.org/once/-/once-1.4.0.tgz", - "integrity": "sha512-lNaJgI+2Q5URQBkccEKHTQOPaXdUxnZZElQTZY0MFUAuaEqe1E+Nyvgdz/aIyNi6Z9MzO5dv1H8n58/GELp3+w==", - "dependencies": { - "wrappy": "1" - } - }, - "node_modules/onetime": { - "version": "5.1.2", - "resolved": "https://registry.npmjs.org/onetime/-/onetime-5.1.2.tgz", - "integrity": "sha512-kbpaSSGJTWdAY5KPVeMOKXSrPtr8C8C7wodJbcsd51jRnmD+GZu8Y0VoU6Dm5Z4vWr0Ig/1NKuWRKf7j5aaYSg==", - "dependencies": { - "mimic-fn": "^2.1.0" - }, - "engines": { - "node": ">=6" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, - "node_modules/open": { - "version": "8.4.0", - "resolved": "https://registry.npmjs.org/open/-/open-8.4.0.tgz", - "integrity": "sha512-XgFPPM+B28FtCCgSb9I+s9szOC1vZRSwgWsRUA5ylIxRTgKozqjOCrVOqGsYABPYK5qnfqClxZTFBa8PKt2v6Q==", - "dependencies": { - "define-lazy-prop": "^2.0.0", - "is-docker": "^2.1.1", - "is-wsl": "^2.2.0" - }, - "engines": { - "node": ">=12" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, - "node_modules/optionator": { - "version": "0.9.1", - "resolved": "https://registry.npmjs.org/optionator/-/optionator-0.9.1.tgz", - "integrity": "sha512-74RlY5FCnhq4jRxVUPKDaRwrVNXMqsGsiW6AJw4XK8hmtm10wC0ypZBLw5IIp85NZMr91+qd1RvvENwg7jjRFw==", - "dependencies": { - "deep-is": "^0.1.3", - "fast-levenshtein": "^2.0.6", - "levn": "^0.4.1", - "prelude-ls": "^1.2.1", - "type-check": "^0.4.0", - "word-wrap": "^1.2.3" - }, - "engines": { - "node": ">= 0.8.0" - } - }, - "node_modules/os-tmpdir": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/os-tmpdir/-/os-tmpdir-1.0.2.tgz", - "integrity": "sha512-D2FR03Vir7FIu45XBY20mTb+/ZSWB00sjU9jdQXt83gDrI4Ztz5Fs7/yy74g2N5SVQY4xY1qDr4rNddwYRVX0g==", - "peer": true, - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/p-cancelable": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/p-cancelable/-/p-cancelable-3.0.0.tgz", - "integrity": "sha512-mlVgR3PGuzlo0MmTdk4cXqXWlwQDLnONTAg6sm62XkMJEiRxN3GL3SffkYvqwonbkJBcrI7Uvv5Zh9yjvn2iUw==", - "engines": { - "node": ">=12.20" - } - }, - "node_modules/p-limit": { - "version": "3.1.0", - "resolved": "https://registry.npmjs.org/p-limit/-/p-limit-3.1.0.tgz", - "integrity": "sha512-TYOanM3wGwNGsZN2cVTYPArw454xnXj5qmWF1bEoAc4+cU/ol7GVh7odevjp1FNHduHc3KZMcFduxU5Xc6uJRQ==", - "dependencies": { - "yocto-queue": "^0.1.0" - }, - "engines": { - "node": ">=10" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, - "node_modules/p-locate": { - "version": "5.0.0", - "resolved": "https://registry.npmjs.org/p-locate/-/p-locate-5.0.0.tgz", - "integrity": "sha512-LaNjtRWUBY++zB5nE/NwcaoMylSPk+S+ZHNB1TzdbMJMny6dynpAGt7X/tl/QYq3TIeE6nxHppbo2LGymrG5Pw==", - "dependencies": { - "p-limit": "^3.0.2" - }, - "engines": { - "node": ">=10" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, - "node_modules/p-map": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/p-map/-/p-map-4.0.0.tgz", - "integrity": "sha512-/bjOqmgETBYB5BoEeGVea8dmvHb2m9GLy1E9W43yeyfP6QQCZGFNa+XRceJEuDB6zqr+gKpIAmlLebMpykw/MQ==", - "peer": true, - "dependencies": { - "aggregate-error": "^3.0.0" - }, - "engines": { - "node": ">=10" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, - "node_modules/p-retry": { - "version": "4.6.2", - "resolved": "https://registry.npmjs.org/p-retry/-/p-retry-4.6.2.tgz", - "integrity": "sha512-312Id396EbJdvRONlngUx0NydfrIQ5lsYu0znKVUzVvArzEIt08V1qhtyESbGVd1FGX7UKtiFp5uwKZdM8wIuQ==", - "dependencies": { - "@types/retry": "0.12.0", - "retry": "^0.13.1" - }, - "engines": { - "node": ">=8" - } - }, - "node_modules/p-try": { - "version": "2.2.0", - "resolved": "https://registry.npmjs.org/p-try/-/p-try-2.2.0.tgz", - "integrity": "sha512-R4nPAVTAU0B9D35/Gk3uJf/7XYbQcyohSKdvAxIRSNghFl4e71hVoGnBNQz9cWaXxO2I10KTC+3jMdvvoKw6dQ==", - "engines": { - "node": ">=6" - } - }, - "node_modules/pako": { - "version": "2.0.4", - "resolved": "https://registry.npmjs.org/pako/-/pako-2.0.4.tgz", - "integrity": "sha512-v8tweI900AUkZN6heMU/4Uy4cXRc2AYNRggVmTR+dEncawDJgCdLMximOVA2p4qO57WMynangsfGRb5WD6L1Bg==" - }, - "node_modules/param-case": { - "version": "3.0.4", - "resolved": "https://registry.npmjs.org/param-case/-/param-case-3.0.4.tgz", - "integrity": "sha512-RXlj7zCYokReqWpOPH9oYivUzLYZ5vAPIfEmCTNViosC78F8F0H9y7T7gG2M39ymgutxF5gcFEsyZQSph9Bp3A==", - "dependencies": { - "dot-case": "^3.0.4", - "tslib": "^2.0.3" - } - }, - "node_modules/parent-module": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/parent-module/-/parent-module-1.0.1.tgz", - "integrity": "sha512-GQ2EWRpQV8/o+Aw8YqtfZZPfNRWZYkbidE9k5rpl/hC3vtHHBfGm2Ifi6qWV+coDGkrUKZAxE3Lot5kcsRlh+g==", - "dependencies": { - "callsites": "^3.0.0" - }, - "engines": { - "node": ">=6" - } - }, - "node_modules/parse-bmfont-ascii": { - "version": "1.0.6", - "resolved": "https://registry.npmjs.org/parse-bmfont-ascii/-/parse-bmfont-ascii-1.0.6.tgz", - "integrity": "sha512-U4RrVsUFCleIOBsIGYOMKjn9PavsGOXxbvYGtMOEfnId0SVNsgehXh1DxUdVPLoxd5mvcEtvmKs2Mmf0Mpa1ZA==" - }, - "node_modules/parse-bmfont-binary": { - "version": "1.0.6", - "resolved": "https://registry.npmjs.org/parse-bmfont-binary/-/parse-bmfont-binary-1.0.6.tgz", - "integrity": "sha512-GxmsRea0wdGdYthjuUeWTMWPqm2+FAd4GI8vCvhgJsFnoGhTrLhXDDupwTo7rXVAgaLIGoVHDZS9p/5XbSqeWA==" - }, - "node_modules/parse-bmfont-xml": { - "version": "1.1.4", - "resolved": "https://registry.npmjs.org/parse-bmfont-xml/-/parse-bmfont-xml-1.1.4.tgz", - "integrity": "sha512-bjnliEOmGv3y1aMEfREMBJ9tfL3WR0i0CKPj61DnSLaoxWR3nLrsQrEbCId/8rF4NyRF0cCqisSVXyQYWM+mCQ==", - "dependencies": { - "xml-parse-from-string": "^1.0.0", - "xml2js": "^0.4.5" - } - }, - "node_modules/parse-headers": { - "version": "2.0.5", - "resolved": "https://registry.npmjs.org/parse-headers/-/parse-headers-2.0.5.tgz", - "integrity": "sha512-ft3iAoLOB/MlwbNXgzy43SWGP6sQki2jQvAyBg/zDFAgr9bfNWZIUj42Kw2eJIl8kEi4PbgE6U1Zau/HwI75HA==" - }, - "node_modules/parse-json": { - "version": "5.2.0", - "resolved": "https://registry.npmjs.org/parse-json/-/parse-json-5.2.0.tgz", - "integrity": "sha512-ayCKvm/phCGxOkYRSCM82iDwct8/EonSEgCSxWxD7ve6jHggsFl4fZVQBPRNgQoKiuV/odhFrGzQXZwbifC8Rg==", - "dependencies": { - "@babel/code-frame": "^7.0.0", - "error-ex": "^1.3.1", - "json-parse-even-better-errors": "^2.3.0", - "lines-and-columns": "^1.1.6" - }, - "engines": { - "node": ">=8" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, - "node_modules/parse5": { - "version": "6.0.1", - "resolved": "https://registry.npmjs.org/parse5/-/parse5-6.0.1.tgz", - "integrity": "sha512-Ofn/CTFzRGTTxwpNEs9PP93gXShHcTq255nzRYSKe8AkVpZY7e1fpmTfOyoIvjP5HG7Z2ZM7VS9PPhQGW2pOpw==" - }, - "node_modules/parseurl": { - "version": "1.3.3", - "resolved": "https://registry.npmjs.org/parseurl/-/parseurl-1.3.3.tgz", - "integrity": "sha512-CiyeOxFT/JZyN5m0z9PfXw4SCBJ6Sygz1Dpl0wqjlhDEGGBP1GnsUVEL0p63hoG1fcj3fHynXi9NYO4nWOL+qQ==", - "engines": { - "node": ">= 0.8" - } - }, - "node_modules/pascal-case": { - "version": "3.1.2", - "resolved": "https://registry.npmjs.org/pascal-case/-/pascal-case-3.1.2.tgz", - "integrity": "sha512-uWlGT3YSnK9x3BQJaOdcZwrnV6hPpd8jFH1/ucpiLRPh/2zCVJKS19E4GvYHvaCcACn3foXZ0cLB9Wrx1KGe5g==", - "dependencies": { - "no-case": "^3.0.4", - "tslib": "^2.0.3" - } - }, - "node_modules/path-exists": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/path-exists/-/path-exists-4.0.0.tgz", - "integrity": "sha512-ak9Qy5Q7jYb2Wwcey5Fpvg2KoAc/ZIhLSLOSBmRmygPsGwkVVt0fZa0qrtMz+m6tJTAHfZQ8FnmB4MG4LWy7/w==", - "engines": { - "node": ">=8" - } - }, - "node_modules/path-is-absolute": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/path-is-absolute/-/path-is-absolute-1.0.1.tgz", - "integrity": "sha512-AVbw3UJ2e9bq64vSaS9Am0fje1Pa8pbGqTTsmXfaIiMpnr5DlDhfJOuLj9Sf95ZPVDAUerDfEk88MPmPe7UCQg==", - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/path-key": { - "version": "3.1.1", - "resolved": "https://registry.npmjs.org/path-key/-/path-key-3.1.1.tgz", - "integrity": "sha512-ojmeN0qd+y0jszEtoY48r0Peq5dwMEkIlCOu6Q5f41lfkswXuKtYrhgoTpLnyIcHm24Uhqx+5Tqm2InSwLhE6Q==", - "engines": { - "node": ">=8" - } - }, - "node_modules/path-parse": { - "version": "1.0.7", - "resolved": "https://registry.npmjs.org/path-parse/-/path-parse-1.0.7.tgz", - "integrity": "sha512-LDJzPVEEEPR+y48z93A0Ed0yXb8pAByGWo/k5YYdYgpY2/2EsOsksJrq7lOHxryrVOn1ejG6oAp8ahvOIQD8sw==" - }, - "node_modules/path-to-regexp": { - "version": "0.1.7", - "resolved": "https://registry.npmjs.org/path-to-regexp/-/path-to-regexp-0.1.7.tgz", - "integrity": "sha512-5DFkuoqlv1uYQKxy8omFBeJPQcdoE07Kv2sferDCrAq1ohOU+MSDswDIbnx3YAM60qIOnYa53wBhXW0EbMonrQ==" - }, - "node_modules/path-type": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/path-type/-/path-type-4.0.0.tgz", - "integrity": "sha512-gDKb8aZMDeD/tZWs9P6+q0J9Mwkdl6xMV8TjnGP3qJVJ06bdMgkbBlLU8IdfOsIsFz2BW1rNVT3XuNEl8zPAvw==", - "engines": { - "node": ">=8" - } - }, - "node_modules/pbkdf2": { - "version": "3.1.2", - "resolved": "https://registry.npmjs.org/pbkdf2/-/pbkdf2-3.1.2.tgz", - "integrity": "sha512-iuh7L6jA7JEGu2WxDwtQP1ddOpaJNC4KlDEFfdQajSGgGPNi4OyDc2R7QnbY2bR9QjBVGwgvTdNJZoE7RaxUMA==", - "dependencies": { - "create-hash": "^1.1.2", - "create-hmac": "^1.1.4", - "ripemd160": "^2.0.1", - "safe-buffer": "^5.0.1", - "sha.js": "^2.4.8" - }, - "engines": { - "node": ">=0.12" - } - }, - "node_modules/peek-readable": { - "version": "4.1.0", - "resolved": "https://registry.npmjs.org/peek-readable/-/peek-readable-4.1.0.tgz", - "integrity": "sha512-ZI3LnwUv5nOGbQzD9c2iDG6toheuXSZP5esSHBjopsXH4dg19soufvpUGA3uohi5anFtGb2lhAVdHzH6R/Evvg==", - "engines": { - "node": ">=8" - }, - "funding": { - "type": "github", - "url": "https://github.com/sponsors/Borewit" - } - }, - "node_modules/performance-now": { - "version": "2.1.0", - "resolved": "https://registry.npmjs.org/performance-now/-/performance-now-2.1.0.tgz", - "integrity": "sha512-7EAHlyLHI56VEIdK57uwHdHKIaAGbnXPiw0yWbarQZOKaKpvUIgW0jWRVLiatnM+XXlSwsanIBH/hzGMJulMow==" - }, - "node_modules/phin": { - "version": "2.9.3", - "resolved": "https://registry.npmjs.org/phin/-/phin-2.9.3.tgz", - "integrity": "sha512-CzFr90qM24ju5f88quFC/6qohjC144rehe5n6DH900lgXmUe86+xCKc10ev56gRKC4/BkHUoG4uSiQgBiIXwDA==" - }, - "node_modules/picocolors": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/picocolors/-/picocolors-1.0.0.tgz", - "integrity": "sha512-1fygroTLlHu66zi26VoTDv8yRgm0Fccecssto+MhsZ0D/DGW2sm8E8AjW7NU5VVTRt5GxbeZ5qBuJr+HyLYkjQ==" - }, - "node_modules/picomatch": { - "version": "2.3.1", - "resolved": "https://registry.npmjs.org/picomatch/-/picomatch-2.3.1.tgz", - "integrity": "sha512-JU3teHTNjmE2VCGFzuY8EXzCDVwEqB2a8fsIvwaStHhAWJEeVd1o1QD80CU6+ZdEXXSLbSsuLwJjkCBWqRQUVA==", - "engines": { - "node": ">=8.6" - }, - "funding": { - "url": "https://github.com/sponsors/jonschlinkert" - } - }, - "node_modules/pify": { - "version": "2.3.0", - "resolved": "https://registry.npmjs.org/pify/-/pify-2.3.0.tgz", - "integrity": "sha512-udgsAY+fTnvv7kI7aaxbqwWNb0AHiB0qBO89PZKPkoTmGOgdbrHDKD+0B2X4uTfJ/FT1R09r9gTsjUjNJotuog==", - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/pirates": { - "version": "4.0.5", - "resolved": "https://registry.npmjs.org/pirates/-/pirates-4.0.5.tgz", - "integrity": "sha512-8V9+HQPupnaXMA23c5hvl69zXvTwTzyAYasnkb0Tts4XvO4CliqONMOnvlq26rkhLC3nWDFBJf73LU1e1VZLaQ==", - "engines": { - "node": ">= 6" - } - }, - "node_modules/pixelmatch": { - "version": "4.0.2", - "resolved": "https://registry.npmjs.org/pixelmatch/-/pixelmatch-4.0.2.tgz", - "integrity": "sha512-J8B6xqiO37sU/gkcMglv6h5Jbd9xNER7aHzpfRdNmV4IbQBzBpe4l9XmbG+xPF/znacgu2jfEw+wHffaq/YkXA==", - "dependencies": { - "pngjs": "^3.0.0" - }, - "bin": { - "pixelmatch": "bin/pixelmatch" - } - }, - "node_modules/pkg-dir": { - "version": "4.2.0", - "resolved": "https://registry.npmjs.org/pkg-dir/-/pkg-dir-4.2.0.tgz", - "integrity": "sha512-HRDzbaKjC+AOWVXxAU/x54COGeIv9eb+6CkDSQoNTt4XyWoIJvuPsXizxu/Fr23EiekbtZwmh1IcIG/l/a10GQ==", - "dependencies": { - "find-up": "^4.0.0" - }, - "engines": { - "node": ">=8" - } - }, - "node_modules/pkg-dir/node_modules/find-up": { - "version": "4.1.0", - "resolved": "https://registry.npmjs.org/find-up/-/find-up-4.1.0.tgz", - "integrity": "sha512-PpOwAdQ/YlXQ2vj8a3h8IipDuYRi3wceVQQGYWxNINccq40Anw7BlsEXCMbt1Zt+OLA6Fq9suIpIWD0OsnISlw==", - "dependencies": { - "locate-path": "^5.0.0", - "path-exists": "^4.0.0" - }, - "engines": { - "node": ">=8" - } - }, - "node_modules/pkg-dir/node_modules/locate-path": { - "version": "5.0.0", - "resolved": "https://registry.npmjs.org/locate-path/-/locate-path-5.0.0.tgz", - "integrity": "sha512-t7hw9pI+WvuwNJXwk5zVHpyhIqzg2qTlklJOf0mVxGSbe3Fp2VieZcduNYjaLDoy6p9uGpQEGWG87WpMKlNq8g==", - "dependencies": { - "p-locate": "^4.1.0" - }, - "engines": { - "node": ">=8" - } - }, - "node_modules/pkg-dir/node_modules/p-limit": { - "version": "2.3.0", - "resolved": "https://registry.npmjs.org/p-limit/-/p-limit-2.3.0.tgz", - "integrity": "sha512-//88mFWSJx8lxCzwdAABTJL2MyWB12+eIY7MDL2SqLmAkeKU9qxRvWuSyTjm3FUmpBEMuFfckAIqEaVGUDxb6w==", - "dependencies": { - "p-try": "^2.0.0" - }, - "engines": { - "node": ">=6" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, - "node_modules/pkg-dir/node_modules/p-locate": { - "version": "4.1.0", - "resolved": "https://registry.npmjs.org/p-locate/-/p-locate-4.1.0.tgz", - "integrity": "sha512-R79ZZ/0wAxKGu3oYMlz8jy/kbhsNrS7SKZ7PxEHBgJ5+F2mtFW2fK2cOtBh1cHYkQsbzFV7I+EoRKe6Yt0oK7A==", - "dependencies": { - "p-limit": "^2.2.0" - }, - "engines": { - "node": ">=8" - } - }, - "node_modules/pkg-up": { - "version": "3.1.0", - "resolved": "https://registry.npmjs.org/pkg-up/-/pkg-up-3.1.0.tgz", - "integrity": "sha512-nDywThFk1i4BQK4twPQ6TA4RT8bDY96yeuCVBWL3ePARCiEKDRSrNGbFIgUJpLp+XeIR65v8ra7WuJOFUBtkMA==", - "dependencies": { - "find-up": "^3.0.0" - }, - "engines": { - "node": ">=8" - } - }, - "node_modules/pkg-up/node_modules/find-up": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/find-up/-/find-up-3.0.0.tgz", - "integrity": "sha512-1yD6RmLI1XBfxugvORwlck6f75tYL+iR0jqwsOrOxMZyGYqUuDhJ0l4AXdO1iX/FTs9cBAMEk1gWSEx1kSbylg==", - "dependencies": { - "locate-path": "^3.0.0" - }, - "engines": { - "node": ">=6" - } - }, - "node_modules/pkg-up/node_modules/locate-path": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/locate-path/-/locate-path-3.0.0.tgz", - "integrity": "sha512-7AO748wWnIhNqAuaty2ZWHkQHRSNfPVIsPIfwEOWO22AmaoVrWavlOcMR5nzTLNYvp36X220/maaRsrec1G65A==", - "dependencies": { - "p-locate": "^3.0.0", - "path-exists": "^3.0.0" - }, - "engines": { - "node": ">=6" - } - }, - "node_modules/pkg-up/node_modules/p-limit": { - "version": "2.3.0", - "resolved": "https://registry.npmjs.org/p-limit/-/p-limit-2.3.0.tgz", - "integrity": "sha512-//88mFWSJx8lxCzwdAABTJL2MyWB12+eIY7MDL2SqLmAkeKU9qxRvWuSyTjm3FUmpBEMuFfckAIqEaVGUDxb6w==", - "dependencies": { - "p-try": "^2.0.0" - }, - "engines": { - "node": ">=6" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, - "node_modules/pkg-up/node_modules/p-locate": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/p-locate/-/p-locate-3.0.0.tgz", - "integrity": "sha512-x+12w/To+4GFfgJhBEpiDcLozRJGegY+Ei7/z0tSLkMmxGZNybVMSfWj9aJn8Z5Fc7dBUNJOOVgPv2H7IwulSQ==", - "dependencies": { - "p-limit": "^2.0.0" - }, - "engines": { - "node": ">=6" - } - }, - "node_modules/pkg-up/node_modules/path-exists": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/path-exists/-/path-exists-3.0.0.tgz", - "integrity": "sha512-bpC7GYwiDYQ4wYLe+FA8lhRjhQCMcQGuSgGGqDkg/QerRWw9CmGRT0iSOVRSZJ29NMLZgIzqaljJ63oaL4NIJQ==", - "engines": { - "node": ">=4" - } - }, - "node_modules/pngjs": { - "version": "3.4.0", - "resolved": "https://registry.npmjs.org/pngjs/-/pngjs-3.4.0.tgz", - "integrity": "sha512-NCrCHhWmnQklfH4MtJMRjZ2a8c80qXeMlQMv2uVp9ISJMTt562SbGd6n2oq0PaPgKm7Z6pL9E2UlLIhC+SHL3w==", - "engines": { - "node": ">=4.0.0" - } - }, - "node_modules/polished": { - "version": "3.7.2", - "resolved": "https://registry.npmjs.org/polished/-/polished-3.7.2.tgz", - "integrity": "sha512-pQKtpZGmsZrW8UUpQMAnR7s3ppHeMQVNyMDKtUyKwuvDmklzcEyM5Kllb3JyE/sE/x7arDmyd35i+4vp99H6sQ==", - "dependencies": { - "@babel/runtime": "^7.12.5" - }, - "engines": { - "node": ">=10" - } - }, - "node_modules/popper-max-size-modifier": { - "version": "0.2.0", - "resolved": "https://registry.npmjs.org/popper-max-size-modifier/-/popper-max-size-modifier-0.2.0.tgz", - "integrity": "sha512-UerPt9pZfTFnpSpIBVJrR3ibHMuU1k5K01AyNLfMUWCr4z1MFH+dsayPlAF9ZeYExa02HPiQn5OIMqUSVtJEbg==", - "deprecated": "We recommend switching to Floating UI which supports this modifier out of the box: https://floating-ui.com/docs/size", - "peerDependencies": { - "@popperjs/core": "^2.2.0" - } - }, - "node_modules/postcss": { - "version": "8.4.14", - "resolved": "https://registry.npmjs.org/postcss/-/postcss-8.4.14.tgz", - "integrity": "sha512-E398TUmfAYFPBSdzgeieK2Y1+1cpdxJx8yXbK/m57nRhKSmk1GB2tO4lbLBtlkfPQTDKfe4Xqv1ASWPpayPEig==", - "funding": [ - { - "type": "opencollective", - "url": "https://opencollective.com/postcss/" - }, - { - "type": "tidelift", - "url": "https://tidelift.com/funding/github/npm/postcss" - } - ], - "dependencies": { - "nanoid": "^3.3.4", - "picocolors": "^1.0.0", - "source-map-js": "^1.0.2" - }, - "engines": { - "node": "^10 || ^12 || >=14" - } - }, - "node_modules/postcss-attribute-case-insensitive": { - "version": "5.0.1", - "resolved": "https://registry.npmjs.org/postcss-attribute-case-insensitive/-/postcss-attribute-case-insensitive-5.0.1.tgz", - "integrity": "sha512-wrt2VndqSLJpyBRNz9OmJcgnhI9MaongeWgapdBuUMu2a/KNJ8SENesG4SdiTnQwGO9b1VKbTWYAfCPeokLqZQ==", - "dependencies": { - "postcss-selector-parser": "^6.0.10" - }, - "engines": { - "node": "^12 || ^14 || >=16" - }, - "funding": { - "type": "opencollective", - "url": "https://opencollective.com/csstools" - }, - "peerDependencies": { - "postcss": "^8.3" - } - }, - "node_modules/postcss-browser-comments": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/postcss-browser-comments/-/postcss-browser-comments-4.0.0.tgz", - "integrity": "sha512-X9X9/WN3KIvY9+hNERUqX9gncsgBA25XaeR+jshHz2j8+sYyHktHw1JdKuMjeLpGktXidqDhA7b/qm1mrBDmgg==", - "engines": { - "node": ">=8" - }, - "peerDependencies": { - "browserslist": ">=4", - "postcss": ">=8" - } - }, - "node_modules/postcss-calc": { - "version": "8.2.4", - "resolved": "https://registry.npmjs.org/postcss-calc/-/postcss-calc-8.2.4.tgz", - "integrity": "sha512-SmWMSJmB8MRnnULldx0lQIyhSNvuDl9HfrZkaqqE/WHAhToYsAvDq+yAsA/kIyINDszOp3Rh0GFoNuH5Ypsm3Q==", - "dependencies": { - "postcss-selector-parser": "^6.0.9", - "postcss-value-parser": "^4.2.0" - }, - "peerDependencies": { - "postcss": "^8.2.2" - } - }, - "node_modules/postcss-clamp": { - "version": "4.1.0", - "resolved": "https://registry.npmjs.org/postcss-clamp/-/postcss-clamp-4.1.0.tgz", - "integrity": "sha512-ry4b1Llo/9zz+PKC+030KUnPITTJAHeOwjfAyyB60eT0AorGLdzp52s31OsPRHRf8NchkgFoG2y6fCfn1IV1Ow==", - "dependencies": { - "postcss-value-parser": "^4.2.0" - }, - "engines": { - "node": ">=7.6.0" - }, - "peerDependencies": { - "postcss": "^8.4.6" - } - }, - "node_modules/postcss-color-functional-notation": { - "version": "4.2.3", - "resolved": "https://registry.npmjs.org/postcss-color-functional-notation/-/postcss-color-functional-notation-4.2.3.tgz", - "integrity": "sha512-5fbr6FzFzjwHXKsVnkmEYrJYG8VNNzvD1tAXaPPWR97S6rhKI5uh2yOfV5TAzhDkZoq4h+chxEplFDc8GeyFtw==", - "dependencies": { - "postcss-value-parser": "^4.2.0" - }, - "engines": { - "node": "^12 || ^14 || >=16" - }, - "funding": { - "type": "opencollective", - "url": "https://opencollective.com/csstools" - }, - "peerDependencies": { - "postcss": "^8.4" - } - }, - "node_modules/postcss-color-hex-alpha": { - "version": "8.0.4", - "resolved": "https://registry.npmjs.org/postcss-color-hex-alpha/-/postcss-color-hex-alpha-8.0.4.tgz", - "integrity": "sha512-nLo2DCRC9eE4w2JmuKgVA3fGL3d01kGq752pVALF68qpGLmx2Qrk91QTKkdUqqp45T1K1XV8IhQpcu1hoAQflQ==", - "dependencies": { - "postcss-value-parser": "^4.2.0" - }, - "engines": { - "node": "^12 || ^14 || >=16" - }, - "funding": { - "type": "opencollective", - "url": "https://opencollective.com/csstools" - }, - "peerDependencies": { - "postcss": "^8.4" - } - }, - "node_modules/postcss-color-rebeccapurple": { - "version": "7.1.0", - "resolved": "https://registry.npmjs.org/postcss-color-rebeccapurple/-/postcss-color-rebeccapurple-7.1.0.tgz", - "integrity": "sha512-1jtE5AKnZcKq4pjOrltFHcbEM2/IvtbD1OdhZ/wqds18//bh0UmQkffcCkzDJU+/vGodfIsVQeKn+45CJvX9Bw==", - "dependencies": { - "postcss-value-parser": "^4.2.0" - }, - "engines": { - "node": "^12 || ^14 || >=16" - }, - "funding": { - "type": "opencollective", - "url": "https://opencollective.com/csstools" - }, - "peerDependencies": { - "postcss": "^8.3" - } - }, - "node_modules/postcss-colormin": { - "version": "5.3.0", - "resolved": "https://registry.npmjs.org/postcss-colormin/-/postcss-colormin-5.3.0.tgz", - "integrity": "sha512-WdDO4gOFG2Z8n4P8TWBpshnL3JpmNmJwdnfP2gbk2qBA8PWwOYcmjmI/t3CmMeL72a7Hkd+x/Mg9O2/0rD54Pg==", - "dependencies": { - "browserslist": "^4.16.6", - "caniuse-api": "^3.0.0", - "colord": "^2.9.1", - "postcss-value-parser": "^4.2.0" - }, - "engines": { - "node": "^10 || ^12 || >=14.0" - }, - "peerDependencies": { - "postcss": "^8.2.15" - } - }, - "node_modules/postcss-convert-values": { - "version": "5.1.2", - "resolved": "https://registry.npmjs.org/postcss-convert-values/-/postcss-convert-values-5.1.2.tgz", - "integrity": "sha512-c6Hzc4GAv95B7suy4udszX9Zy4ETyMCgFPUDtWjdFTKH1SE9eFY/jEpHSwTH1QPuwxHpWslhckUQWbNRM4ho5g==", - "dependencies": { - "browserslist": "^4.20.3", - "postcss-value-parser": "^4.2.0" - }, - "engines": { - "node": "^10 || ^12 || >=14.0" - }, - "peerDependencies": { - "postcss": "^8.2.15" - } - }, - "node_modules/postcss-custom-media": { - "version": "8.0.2", - "resolved": "https://registry.npmjs.org/postcss-custom-media/-/postcss-custom-media-8.0.2.tgz", - "integrity": "sha512-7yi25vDAoHAkbhAzX9dHx2yc6ntS4jQvejrNcC+csQJAXjj15e7VcWfMgLqBNAbOvqi5uIa9huOVwdHbf+sKqg==", - "dependencies": { - "postcss-value-parser": "^4.2.0" - }, - "engines": { - "node": "^12 || ^14 || >=16" - }, - "funding": { - "type": "opencollective", - "url": "https://opencollective.com/csstools" - }, - "peerDependencies": { - "postcss": "^8.3" - } - }, - "node_modules/postcss-custom-properties": { - "version": "12.1.8", - "resolved": "https://registry.npmjs.org/postcss-custom-properties/-/postcss-custom-properties-12.1.8.tgz", - "integrity": "sha512-8rbj8kVu00RQh2fQF81oBqtduiANu4MIxhyf0HbbStgPtnFlWn0yiaYTpLHrPnJbffVY1s9apWsIoVZcc68FxA==", - "dependencies": { - "postcss-value-parser": "^4.2.0" - }, - "engines": { - "node": "^12 || ^14 || >=16" - }, - "funding": { - "type": "opencollective", - "url": "https://opencollective.com/csstools" - }, - "peerDependencies": { - "postcss": "^8.4" - } - }, - "node_modules/postcss-custom-selectors": { - "version": "6.0.3", - "resolved": "https://registry.npmjs.org/postcss-custom-selectors/-/postcss-custom-selectors-6.0.3.tgz", - "integrity": "sha512-fgVkmyiWDwmD3JbpCmB45SvvlCD6z9CG6Ie6Iere22W5aHea6oWa7EM2bpnv2Fj3I94L3VbtvX9KqwSi5aFzSg==", - "dependencies": { - "postcss-selector-parser": "^6.0.4" - }, - "engines": { - "node": "^12 || ^14 || >=16" - }, - "funding": { - "type": "opencollective", - "url": "https://opencollective.com/csstools" - }, - "peerDependencies": { - "postcss": "^8.3" - } - }, - "node_modules/postcss-dir-pseudo-class": { - "version": "6.0.4", - "resolved": "https://registry.npmjs.org/postcss-dir-pseudo-class/-/postcss-dir-pseudo-class-6.0.4.tgz", - "integrity": "sha512-I8epwGy5ftdzNWEYok9VjW9whC4xnelAtbajGv4adql4FIF09rnrxnA9Y8xSHN47y7gqFIv10C5+ImsLeJpKBw==", - "dependencies": { - "postcss-selector-parser": "^6.0.9" - }, - "engines": { - "node": "^12 || ^14 || >=16" - }, - "peerDependencies": { - "postcss": "^8.4" - } - }, - "node_modules/postcss-discard-comments": { - "version": "5.1.2", - "resolved": "https://registry.npmjs.org/postcss-discard-comments/-/postcss-discard-comments-5.1.2.tgz", - "integrity": "sha512-+L8208OVbHVF2UQf1iDmRcbdjJkuBF6IS29yBDSiWUIzpYaAhtNl6JYnYm12FnkeCwQqF5LeklOu6rAqgfBZqQ==", - "engines": { - "node": "^10 || ^12 || >=14.0" - }, - "peerDependencies": { - "postcss": "^8.2.15" - } - }, - "node_modules/postcss-discard-duplicates": { - "version": "5.1.0", - "resolved": "https://registry.npmjs.org/postcss-discard-duplicates/-/postcss-discard-duplicates-5.1.0.tgz", - "integrity": "sha512-zmX3IoSI2aoenxHV6C7plngHWWhUOV3sP1T8y2ifzxzbtnuhk1EdPwm0S1bIUNaJ2eNbWeGLEwzw8huPD67aQw==", - "engines": { - "node": "^10 || ^12 || >=14.0" - }, - "peerDependencies": { - "postcss": "^8.2.15" - } - }, - "node_modules/postcss-discard-empty": { - "version": "5.1.1", - "resolved": "https://registry.npmjs.org/postcss-discard-empty/-/postcss-discard-empty-5.1.1.tgz", - "integrity": "sha512-zPz4WljiSuLWsI0ir4Mcnr4qQQ5e1Ukc3i7UfE2XcrwKK2LIPIqE5jxMRxO6GbI3cv//ztXDsXwEWT3BHOGh3A==", - "engines": { - "node": "^10 || ^12 || >=14.0" - }, - "peerDependencies": { - "postcss": "^8.2.15" - } - }, - "node_modules/postcss-discard-overridden": { - "version": "5.1.0", - "resolved": "https://registry.npmjs.org/postcss-discard-overridden/-/postcss-discard-overridden-5.1.0.tgz", - "integrity": "sha512-21nOL7RqWR1kasIVdKs8HNqQJhFxLsyRfAnUDm4Fe4t4mCWL9OJiHvlHPjcd8zc5Myu89b/7wZDnOSjFgeWRtw==", - "engines": { - "node": "^10 || ^12 || >=14.0" - }, - "peerDependencies": { - "postcss": "^8.2.15" - } - }, - "node_modules/postcss-double-position-gradients": { - "version": "3.1.1", - "resolved": "https://registry.npmjs.org/postcss-double-position-gradients/-/postcss-double-position-gradients-3.1.1.tgz", - "integrity": "sha512-jM+CGkTs4FcG53sMPjrrGE0rIvLDdCrqMzgDC5fLI7JHDO7o6QG8C5TQBtExb13hdBdoH9C2QVbG4jo2y9lErQ==", - "dependencies": { - "@csstools/postcss-progressive-custom-properties": "^1.1.0", - "postcss-value-parser": "^4.2.0" - }, - "engines": { - "node": "^12 || ^14 || >=16" - }, - "peerDependencies": { - "postcss": "^8.4" - } - }, - "node_modules/postcss-env-function": { - "version": "4.0.6", - "resolved": "https://registry.npmjs.org/postcss-env-function/-/postcss-env-function-4.0.6.tgz", - "integrity": "sha512-kpA6FsLra+NqcFnL81TnsU+Z7orGtDTxcOhl6pwXeEq1yFPpRMkCDpHhrz8CFQDr/Wfm0jLiNQ1OsGGPjlqPwA==", - "dependencies": { - "postcss-value-parser": "^4.2.0" - }, - "engines": { - "node": "^12 || ^14 || >=16" - }, - "peerDependencies": { - "postcss": "^8.4" - } - }, - "node_modules/postcss-flexbugs-fixes": { - "version": "5.0.2", - "resolved": "https://registry.npmjs.org/postcss-flexbugs-fixes/-/postcss-flexbugs-fixes-5.0.2.tgz", - "integrity": "sha512-18f9voByak7bTktR2QgDveglpn9DTbBWPUzSOe9g0N4WR/2eSt6Vrcbf0hmspvMI6YWGywz6B9f7jzpFNJJgnQ==", - "peerDependencies": { - "postcss": "^8.1.4" - } - }, - "node_modules/postcss-focus-visible": { - "version": "6.0.4", - "resolved": "https://registry.npmjs.org/postcss-focus-visible/-/postcss-focus-visible-6.0.4.tgz", - "integrity": "sha512-QcKuUU/dgNsstIK6HELFRT5Y3lbrMLEOwG+A4s5cA+fx3A3y/JTq3X9LaOj3OC3ALH0XqyrgQIgey/MIZ8Wczw==", - "dependencies": { - "postcss-selector-parser": "^6.0.9" - }, - "engines": { - "node": "^12 || ^14 || >=16" - }, - "peerDependencies": { - "postcss": "^8.4" - } - }, - "node_modules/postcss-focus-within": { - "version": "5.0.4", - "resolved": "https://registry.npmjs.org/postcss-focus-within/-/postcss-focus-within-5.0.4.tgz", - "integrity": "sha512-vvjDN++C0mu8jz4af5d52CB184ogg/sSxAFS+oUJQq2SuCe7T5U2iIsVJtsCp2d6R4j0jr5+q3rPkBVZkXD9fQ==", - "dependencies": { - "postcss-selector-parser": "^6.0.9" - }, - "engines": { - "node": "^12 || ^14 || >=16" - }, - "peerDependencies": { - "postcss": "^8.4" - } - }, - "node_modules/postcss-font-variant": { - "version": "5.0.0", - "resolved": "https://registry.npmjs.org/postcss-font-variant/-/postcss-font-variant-5.0.0.tgz", - "integrity": "sha512-1fmkBaCALD72CK2a9i468mA/+tr9/1cBxRRMXOUaZqO43oWPR5imcyPjXwuv7PXbCid4ndlP5zWhidQVVa3hmA==", - "peerDependencies": { - "postcss": "^8.1.0" - } - }, - "node_modules/postcss-gap-properties": { - "version": "3.0.3", - "resolved": "https://registry.npmjs.org/postcss-gap-properties/-/postcss-gap-properties-3.0.3.tgz", - "integrity": "sha512-rPPZRLPmEKgLk/KlXMqRaNkYTUpE7YC+bOIQFN5xcu1Vp11Y4faIXv6/Jpft6FMnl6YRxZqDZG0qQOW80stzxQ==", - "engines": { - "node": "^12 || ^14 || >=16" - }, - "peerDependencies": { - "postcss": "^8.4" - } - }, - "node_modules/postcss-image-set-function": { - "version": "4.0.6", - "resolved": "https://registry.npmjs.org/postcss-image-set-function/-/postcss-image-set-function-4.0.6.tgz", - "integrity": "sha512-KfdC6vg53GC+vPd2+HYzsZ6obmPqOk6HY09kttU19+Gj1nC3S3XBVEXDHxkhxTohgZqzbUb94bKXvKDnYWBm/A==", - "dependencies": { - "postcss-value-parser": "^4.2.0" - }, - "engines": { - "node": "^12 || ^14 || >=16" - }, - "peerDependencies": { - "postcss": "^8.4" - } - }, - "node_modules/postcss-import": { - "version": "14.1.0", - "resolved": "https://registry.npmjs.org/postcss-import/-/postcss-import-14.1.0.tgz", - "integrity": "sha512-flwI+Vgm4SElObFVPpTIT7SU7R3qk2L7PyduMcokiaVKuWv9d/U+Gm/QAd8NDLuykTWTkcrjOeD2Pp1rMeBTGw==", - "dependencies": { - "postcss-value-parser": "^4.0.0", - "read-cache": "^1.0.0", - "resolve": "^1.1.7" - }, - "engines": { - "node": ">=10.0.0" - }, - "peerDependencies": { - "postcss": "^8.0.0" - } - }, - "node_modules/postcss-initial": { - "version": "4.0.1", - "resolved": "https://registry.npmjs.org/postcss-initial/-/postcss-initial-4.0.1.tgz", - "integrity": "sha512-0ueD7rPqX8Pn1xJIjay0AZeIuDoF+V+VvMt/uOnn+4ezUKhZM/NokDeP6DwMNyIoYByuN/94IQnt5FEkaN59xQ==", - "peerDependencies": { - "postcss": "^8.0.0" - } - }, - "node_modules/postcss-js": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/postcss-js/-/postcss-js-4.0.0.tgz", - "integrity": "sha512-77QESFBwgX4irogGVPgQ5s07vLvFqWr228qZY+w6lW599cRlK/HmnlivnnVUxkjHnCu4J16PDMHcH+e+2HbvTQ==", - "dependencies": { - "camelcase-css": "^2.0.1" - }, - "engines": { - "node": "^12 || ^14 || >= 16" - }, - "funding": { - "type": "opencollective", - "url": "https://opencollective.com/postcss/" - }, - "peerDependencies": { - "postcss": "^8.3.3" - } - }, - "node_modules/postcss-lab-function": { - "version": "4.2.0", - "resolved": "https://registry.npmjs.org/postcss-lab-function/-/postcss-lab-function-4.2.0.tgz", - "integrity": "sha512-Zb1EO9DGYfa3CP8LhINHCcTTCTLI+R3t7AX2mKsDzdgVQ/GkCpHOTgOr6HBHslP7XDdVbqgHW5vvRPMdVANQ8w==", - "dependencies": { - "@csstools/postcss-progressive-custom-properties": "^1.1.0", - "postcss-value-parser": "^4.2.0" - }, - "engines": { - "node": "^12 || ^14 || >=16" - }, - "funding": { - "type": "opencollective", - "url": "https://opencollective.com/csstools" - }, - "peerDependencies": { - "postcss": "^8.4" - } - }, - "node_modules/postcss-load-config": { - "version": "3.1.4", - "resolved": "https://registry.npmjs.org/postcss-load-config/-/postcss-load-config-3.1.4.tgz", - "integrity": "sha512-6DiM4E7v4coTE4uzA8U//WhtPwyhiim3eyjEMFCnUpzbrkK9wJHgKDT2mR+HbtSrd/NubVaYTOpSpjUl8NQeRg==", - "dependencies": { - "lilconfig": "^2.0.5", - "yaml": "^1.10.2" - }, - "engines": { - "node": ">= 10" - }, - "funding": { - "type": "opencollective", - "url": "https://opencollective.com/postcss/" - }, - "peerDependencies": { - "postcss": ">=8.0.9", - "ts-node": ">=9.0.0" - }, - "peerDependenciesMeta": { - "postcss": { - "optional": true - }, - "ts-node": { - "optional": true - } - } - }, - "node_modules/postcss-loader": { - "version": "6.2.1", - "resolved": "https://registry.npmjs.org/postcss-loader/-/postcss-loader-6.2.1.tgz", - "integrity": "sha512-WbbYpmAaKcux/P66bZ40bpWsBucjx/TTgVVzRZ9yUO8yQfVBlameJ0ZGVaPfH64hNSBh63a+ICP5nqOpBA0w+Q==", - "dependencies": { - "cosmiconfig": "^7.0.0", - "klona": "^2.0.5", - "semver": "^7.3.5" - }, - "engines": { - "node": ">= 12.13.0" - }, - "funding": { - "type": "opencollective", - "url": "https://opencollective.com/webpack" - }, - "peerDependencies": { - "postcss": "^7.0.0 || ^8.0.1", - "webpack": "^5.0.0" - } - }, - "node_modules/postcss-logical": { - "version": "5.0.4", - "resolved": "https://registry.npmjs.org/postcss-logical/-/postcss-logical-5.0.4.tgz", - "integrity": "sha512-RHXxplCeLh9VjinvMrZONq7im4wjWGlRJAqmAVLXyZaXwfDWP73/oq4NdIp+OZwhQUMj0zjqDfM5Fj7qby+B4g==", - "engines": { - "node": "^12 || ^14 || >=16" - }, - "peerDependencies": { - "postcss": "^8.4" - } - }, - "node_modules/postcss-media-minmax": { - "version": "5.0.0", - "resolved": "https://registry.npmjs.org/postcss-media-minmax/-/postcss-media-minmax-5.0.0.tgz", - "integrity": "sha512-yDUvFf9QdFZTuCUg0g0uNSHVlJ5X1lSzDZjPSFaiCWvjgsvu8vEVxtahPrLMinIDEEGnx6cBe6iqdx5YWz08wQ==", - "engines": { - "node": ">=10.0.0" - }, - "peerDependencies": { - "postcss": "^8.1.0" - } - }, - "node_modules/postcss-merge-longhand": { - "version": "5.1.6", - "resolved": "https://registry.npmjs.org/postcss-merge-longhand/-/postcss-merge-longhand-5.1.6.tgz", - "integrity": "sha512-6C/UGF/3T5OE2CEbOuX7iNO63dnvqhGZeUnKkDeifebY0XqkkvrctYSZurpNE902LDf2yKwwPFgotnfSoPhQiw==", - "dependencies": { - "postcss-value-parser": "^4.2.0", - "stylehacks": "^5.1.0" - }, - "engines": { - "node": "^10 || ^12 || >=14.0" - }, - "peerDependencies": { - "postcss": "^8.2.15" - } - }, - "node_modules/postcss-merge-rules": { - "version": "5.1.2", - "resolved": "https://registry.npmjs.org/postcss-merge-rules/-/postcss-merge-rules-5.1.2.tgz", - "integrity": "sha512-zKMUlnw+zYCWoPN6yhPjtcEdlJaMUZ0WyVcxTAmw3lkkN/NDMRkOkiuctQEoWAOvH7twaxUUdvBWl0d4+hifRQ==", - "dependencies": { - "browserslist": "^4.16.6", - "caniuse-api": "^3.0.0", - "cssnano-utils": "^3.1.0", - "postcss-selector-parser": "^6.0.5" - }, - "engines": { - "node": "^10 || ^12 || >=14.0" - }, - "peerDependencies": { - "postcss": "^8.2.15" - } - }, - "node_modules/postcss-minify-font-values": { - "version": "5.1.0", - "resolved": "https://registry.npmjs.org/postcss-minify-font-values/-/postcss-minify-font-values-5.1.0.tgz", - "integrity": "sha512-el3mYTgx13ZAPPirSVsHqFzl+BBBDrXvbySvPGFnQcTI4iNslrPaFq4muTkLZmKlGk4gyFAYUBMH30+HurREyA==", - "dependencies": { - "postcss-value-parser": "^4.2.0" - }, - "engines": { - "node": "^10 || ^12 || >=14.0" - }, - "peerDependencies": { - "postcss": "^8.2.15" - } - }, - "node_modules/postcss-minify-gradients": { - "version": "5.1.1", - "resolved": "https://registry.npmjs.org/postcss-minify-gradients/-/postcss-minify-gradients-5.1.1.tgz", - "integrity": "sha512-VGvXMTpCEo4qHTNSa9A0a3D+dxGFZCYwR6Jokk+/3oB6flu2/PnPXAh2x7x52EkY5xlIHLm+Le8tJxe/7TNhzw==", - "dependencies": { - "colord": "^2.9.1", - "cssnano-utils": "^3.1.0", - "postcss-value-parser": "^4.2.0" - }, - "engines": { - "node": "^10 || ^12 || >=14.0" - }, - "peerDependencies": { - "postcss": "^8.2.15" - } - }, - "node_modules/postcss-minify-params": { - "version": "5.1.3", - "resolved": "https://registry.npmjs.org/postcss-minify-params/-/postcss-minify-params-5.1.3.tgz", - "integrity": "sha512-bkzpWcjykkqIujNL+EVEPOlLYi/eZ050oImVtHU7b4lFS82jPnsCb44gvC6pxaNt38Els3jWYDHTjHKf0koTgg==", - "dependencies": { - "browserslist": "^4.16.6", - "cssnano-utils": "^3.1.0", - "postcss-value-parser": "^4.2.0" - }, - "engines": { - "node": "^10 || ^12 || >=14.0" - }, - "peerDependencies": { - "postcss": "^8.2.15" - } - }, - "node_modules/postcss-minify-selectors": { - "version": "5.2.1", - "resolved": "https://registry.npmjs.org/postcss-minify-selectors/-/postcss-minify-selectors-5.2.1.tgz", - "integrity": "sha512-nPJu7OjZJTsVUmPdm2TcaiohIwxP+v8ha9NehQ2ye9szv4orirRU3SDdtUmKH+10nzn0bAyOXZ0UEr7OpvLehg==", - "dependencies": { - "postcss-selector-parser": "^6.0.5" - }, - "engines": { - "node": "^10 || ^12 || >=14.0" - }, - "peerDependencies": { - "postcss": "^8.2.15" - } - }, - "node_modules/postcss-modules-extract-imports": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/postcss-modules-extract-imports/-/postcss-modules-extract-imports-3.0.0.tgz", - "integrity": "sha512-bdHleFnP3kZ4NYDhuGlVK+CMrQ/pqUm8bx/oGL93K6gVwiclvX5x0n76fYMKuIGKzlABOy13zsvqjb0f92TEXw==", - "engines": { - "node": "^10 || ^12 || >= 14" - }, - "peerDependencies": { - "postcss": "^8.1.0" - } - }, - "node_modules/postcss-modules-local-by-default": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/postcss-modules-local-by-default/-/postcss-modules-local-by-default-4.0.0.tgz", - "integrity": "sha512-sT7ihtmGSF9yhm6ggikHdV0hlziDTX7oFoXtuVWeDd3hHObNkcHRo9V3yg7vCAY7cONyxJC/XXCmmiHHcvX7bQ==", - "dependencies": { - "icss-utils": "^5.0.0", - "postcss-selector-parser": "^6.0.2", - "postcss-value-parser": "^4.1.0" - }, - "engines": { - "node": "^10 || ^12 || >= 14" - }, - "peerDependencies": { - "postcss": "^8.1.0" - } - }, - "node_modules/postcss-modules-scope": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/postcss-modules-scope/-/postcss-modules-scope-3.0.0.tgz", - "integrity": "sha512-hncihwFA2yPath8oZ15PZqvWGkWf+XUfQgUGamS4LqoP1anQLOsOJw0vr7J7IwLpoY9fatA2qiGUGmuZL0Iqlg==", - "dependencies": { - "postcss-selector-parser": "^6.0.4" - }, - "engines": { - "node": "^10 || ^12 || >= 14" - }, - "peerDependencies": { - "postcss": "^8.1.0" - } - }, - "node_modules/postcss-modules-values": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/postcss-modules-values/-/postcss-modules-values-4.0.0.tgz", - "integrity": "sha512-RDxHkAiEGI78gS2ofyvCsu7iycRv7oqw5xMWn9iMoR0N/7mf9D50ecQqUo5BZ9Zh2vH4bCUR/ktCqbB9m8vJjQ==", - "dependencies": { - "icss-utils": "^5.0.0" - }, - "engines": { - "node": "^10 || ^12 || >= 14" - }, - "peerDependencies": { - "postcss": "^8.1.0" - } - }, - "node_modules/postcss-nested": { - "version": "5.0.6", - "resolved": "https://registry.npmjs.org/postcss-nested/-/postcss-nested-5.0.6.tgz", - "integrity": "sha512-rKqm2Fk0KbA8Vt3AdGN0FB9OBOMDVajMG6ZCf/GoHgdxUJ4sBFp0A/uMIRm+MJUdo33YXEtjqIz8u7DAp8B7DA==", - "dependencies": { - "postcss-selector-parser": "^6.0.6" - }, - "engines": { - "node": ">=12.0" - }, - "funding": { - "type": "opencollective", - "url": "https://opencollective.com/postcss/" - }, - "peerDependencies": { - "postcss": "^8.2.14" - } - }, - "node_modules/postcss-nesting": { - "version": "10.1.9", - "resolved": "https://registry.npmjs.org/postcss-nesting/-/postcss-nesting-10.1.9.tgz", - "integrity": "sha512-WlnqQecNMT7eizBpWwAnQOIk7Zr0A+OZJccEwQoTwmcIsZCVdcjT1LjXj1hBk6zR3BDLZQYsb5KZj2HquZgvTw==", - "dependencies": { - "@csstools/selector-specificity": "^2.0.0", - "postcss-selector-parser": "^6.0.10" - }, - "engines": { - "node": "^12 || ^14 || >=16" - }, - "funding": { - "type": "opencollective", - "url": "https://opencollective.com/csstools" - }, - "peerDependencies": { - "postcss": "^8.2" - } - }, - "node_modules/postcss-normalize": { - "version": "10.0.1", - "resolved": "https://registry.npmjs.org/postcss-normalize/-/postcss-normalize-10.0.1.tgz", - "integrity": "sha512-+5w18/rDev5mqERcG3W5GZNMJa1eoYYNGo8gB7tEwaos0ajk3ZXAI4mHGcNT47NE+ZnZD1pEpUOFLvltIwmeJA==", - "dependencies": { - "@csstools/normalize.css": "*", - "postcss-browser-comments": "^4", - "sanitize.css": "*" - }, - "engines": { - "node": ">= 12" - }, - "peerDependencies": { - "browserslist": ">= 4", - "postcss": ">= 8" - } - }, - "node_modules/postcss-normalize-charset": { - "version": "5.1.0", - "resolved": "https://registry.npmjs.org/postcss-normalize-charset/-/postcss-normalize-charset-5.1.0.tgz", - "integrity": "sha512-mSgUJ+pd/ldRGVx26p2wz9dNZ7ji6Pn8VWBajMXFf8jk7vUoSrZ2lt/wZR7DtlZYKesmZI680qjr2CeFF2fbUg==", - "engines": { - "node": "^10 || ^12 || >=14.0" - }, - "peerDependencies": { - "postcss": "^8.2.15" - } - }, - "node_modules/postcss-normalize-display-values": { - "version": "5.1.0", - "resolved": "https://registry.npmjs.org/postcss-normalize-display-values/-/postcss-normalize-display-values-5.1.0.tgz", - "integrity": "sha512-WP4KIM4o2dazQXWmFaqMmcvsKmhdINFblgSeRgn8BJ6vxaMyaJkwAzpPpuvSIoG/rmX3M+IrRZEz2H0glrQNEA==", - "dependencies": { - "postcss-value-parser": "^4.2.0" - }, - "engines": { - "node": "^10 || ^12 || >=14.0" - }, - "peerDependencies": { - "postcss": "^8.2.15" - } - }, - "node_modules/postcss-normalize-positions": { - "version": "5.1.1", - "resolved": "https://registry.npmjs.org/postcss-normalize-positions/-/postcss-normalize-positions-5.1.1.tgz", - "integrity": "sha512-6UpCb0G4eofTCQLFVuI3EVNZzBNPiIKcA1AKVka+31fTVySphr3VUgAIULBhxZkKgwLImhzMR2Bw1ORK+37INg==", - "dependencies": { - "postcss-value-parser": "^4.2.0" - }, - "engines": { - "node": "^10 || ^12 || >=14.0" - }, - "peerDependencies": { - "postcss": "^8.2.15" - } - }, - "node_modules/postcss-normalize-repeat-style": { - "version": "5.1.1", - "resolved": "https://registry.npmjs.org/postcss-normalize-repeat-style/-/postcss-normalize-repeat-style-5.1.1.tgz", - "integrity": "sha512-mFpLspGWkQtBcWIRFLmewo8aC3ImN2i/J3v8YCFUwDnPu3Xz4rLohDO26lGjwNsQxB3YF0KKRwspGzE2JEuS0g==", - "dependencies": { - "postcss-value-parser": "^4.2.0" - }, - "engines": { - "node": "^10 || ^12 || >=14.0" - }, - "peerDependencies": { - "postcss": "^8.2.15" - } - }, - "node_modules/postcss-normalize-string": { - "version": "5.1.0", - "resolved": "https://registry.npmjs.org/postcss-normalize-string/-/postcss-normalize-string-5.1.0.tgz", - "integrity": "sha512-oYiIJOf4T9T1N4i+abeIc7Vgm/xPCGih4bZz5Nm0/ARVJ7K6xrDlLwvwqOydvyL3RHNf8qZk6vo3aatiw/go3w==", - "dependencies": { - "postcss-value-parser": "^4.2.0" - }, - "engines": { - "node": "^10 || ^12 || >=14.0" - }, - "peerDependencies": { - "postcss": "^8.2.15" - } - }, - "node_modules/postcss-normalize-timing-functions": { - "version": "5.1.0", - "resolved": "https://registry.npmjs.org/postcss-normalize-timing-functions/-/postcss-normalize-timing-functions-5.1.0.tgz", - "integrity": "sha512-DOEkzJ4SAXv5xkHl0Wa9cZLF3WCBhF3o1SKVxKQAa+0pYKlueTpCgvkFAHfk+Y64ezX9+nITGrDZeVGgITJXjg==", - "dependencies": { - "postcss-value-parser": "^4.2.0" - }, - "engines": { - "node": "^10 || ^12 || >=14.0" - }, - "peerDependencies": { - "postcss": "^8.2.15" - } - }, - "node_modules/postcss-normalize-unicode": { - "version": "5.1.0", - "resolved": "https://registry.npmjs.org/postcss-normalize-unicode/-/postcss-normalize-unicode-5.1.0.tgz", - "integrity": "sha512-J6M3MizAAZ2dOdSjy2caayJLQT8E8K9XjLce8AUQMwOrCvjCHv24aLC/Lps1R1ylOfol5VIDMaM/Lo9NGlk1SQ==", - "dependencies": { - "browserslist": "^4.16.6", - "postcss-value-parser": "^4.2.0" - }, - "engines": { - "node": "^10 || ^12 || >=14.0" - }, - "peerDependencies": { - "postcss": "^8.2.15" - } - }, - "node_modules/postcss-normalize-url": { - "version": "5.1.0", - "resolved": "https://registry.npmjs.org/postcss-normalize-url/-/postcss-normalize-url-5.1.0.tgz", - "integrity": "sha512-5upGeDO+PVthOxSmds43ZeMeZfKH+/DKgGRD7TElkkyS46JXAUhMzIKiCa7BabPeIy3AQcTkXwVVN7DbqsiCew==", - "dependencies": { - "normalize-url": "^6.0.1", - "postcss-value-parser": "^4.2.0" - }, - "engines": { - "node": "^10 || ^12 || >=14.0" - }, - "peerDependencies": { - "postcss": "^8.2.15" - } - }, - "node_modules/postcss-normalize-whitespace": { - "version": "5.1.1", - "resolved": "https://registry.npmjs.org/postcss-normalize-whitespace/-/postcss-normalize-whitespace-5.1.1.tgz", - "integrity": "sha512-83ZJ4t3NUDETIHTa3uEg6asWjSBYL5EdkVB0sDncx9ERzOKBVJIUeDO9RyA9Zwtig8El1d79HBp0JEi8wvGQnA==", - "dependencies": { - "postcss-value-parser": "^4.2.0" - }, - "engines": { - "node": "^10 || ^12 || >=14.0" - }, - "peerDependencies": { - "postcss": "^8.2.15" - } - }, - "node_modules/postcss-opacity-percentage": { - "version": "1.1.2", - "resolved": "https://registry.npmjs.org/postcss-opacity-percentage/-/postcss-opacity-percentage-1.1.2.tgz", - "integrity": "sha512-lyUfF7miG+yewZ8EAk9XUBIlrHyUE6fijnesuz+Mj5zrIHIEw6KcIZSOk/elVMqzLvREmXB83Zi/5QpNRYd47w==", - "funding": [ - { - "type": "kofi", - "url": "https://ko-fi.com/mrcgrtz" - }, - { - "type": "liberapay", - "url": "https://liberapay.com/mrcgrtz" - } - ], - "engines": { - "node": "^12 || ^14 || >=16" - } - }, - "node_modules/postcss-ordered-values": { - "version": "5.1.3", - "resolved": "https://registry.npmjs.org/postcss-ordered-values/-/postcss-ordered-values-5.1.3.tgz", - "integrity": "sha512-9UO79VUhPwEkzbb3RNpqqghc6lcYej1aveQteWY+4POIwlqkYE21HKWaLDF6lWNuqCobEAyTovVhtI32Rbv2RQ==", - "dependencies": { - "cssnano-utils": "^3.1.0", - "postcss-value-parser": "^4.2.0" - }, - "engines": { - "node": "^10 || ^12 || >=14.0" - }, - "peerDependencies": { - "postcss": "^8.2.15" - } - }, - "node_modules/postcss-overflow-shorthand": { - "version": "3.0.3", - "resolved": "https://registry.npmjs.org/postcss-overflow-shorthand/-/postcss-overflow-shorthand-3.0.3.tgz", - "integrity": "sha512-CxZwoWup9KXzQeeIxtgOciQ00tDtnylYIlJBBODqkgS/PU2jISuWOL/mYLHmZb9ZhZiCaNKsCRiLp22dZUtNsg==", - "engines": { - "node": "^12 || ^14 || >=16" - }, - "peerDependencies": { - "postcss": "^8.4" - } - }, - "node_modules/postcss-page-break": { - "version": "3.0.4", - "resolved": "https://registry.npmjs.org/postcss-page-break/-/postcss-page-break-3.0.4.tgz", - "integrity": "sha512-1JGu8oCjVXLa9q9rFTo4MbeeA5FMe00/9C7lN4va606Rdb+HkxXtXsmEDrIraQ11fGz/WvKWa8gMuCKkrXpTsQ==", - "peerDependencies": { - "postcss": "^8" - } - }, - "node_modules/postcss-place": { - "version": "7.0.4", - "resolved": "https://registry.npmjs.org/postcss-place/-/postcss-place-7.0.4.tgz", - "integrity": "sha512-MrgKeiiu5OC/TETQO45kV3npRjOFxEHthsqGtkh3I1rPbZSbXGD/lZVi9j13cYh+NA8PIAPyk6sGjT9QbRyvSg==", - "dependencies": { - "postcss-value-parser": "^4.2.0" - }, - "engines": { - "node": "^12 || ^14 || >=16" - }, - "peerDependencies": { - "postcss": "^8.4" - } - }, - "node_modules/postcss-preset-env": { - "version": "7.7.2", - "resolved": "https://registry.npmjs.org/postcss-preset-env/-/postcss-preset-env-7.7.2.tgz", - "integrity": "sha512-1q0ih7EDsZmCb/FMDRvosna7Gsbdx8CvYO5hYT120hcp2ZAuOHpSzibujZ4JpIUcAC02PG6b+eftxqjTFh5BNA==", - "dependencies": { - "@csstools/postcss-cascade-layers": "^1.0.4", - "@csstools/postcss-color-function": "^1.1.0", - "@csstools/postcss-font-format-keywords": "^1.0.0", - "@csstools/postcss-hwb-function": "^1.0.1", - "@csstools/postcss-ic-unit": "^1.0.0", - "@csstools/postcss-is-pseudo-class": "^2.0.6", - "@csstools/postcss-normalize-display-values": "^1.0.0", - "@csstools/postcss-oklab-function": "^1.1.0", - "@csstools/postcss-progressive-custom-properties": "^1.3.0", - "@csstools/postcss-stepped-value-functions": "^1.0.0", - "@csstools/postcss-trigonometric-functions": "^1.0.1", - "@csstools/postcss-unset-value": "^1.0.1", - "autoprefixer": "^10.4.7", - "browserslist": "^4.21.0", - "css-blank-pseudo": "^3.0.3", - "css-has-pseudo": "^3.0.4", - "css-prefers-color-scheme": "^6.0.3", - "cssdb": "^6.6.3", - "postcss-attribute-case-insensitive": "^5.0.1", - "postcss-clamp": "^4.1.0", - "postcss-color-functional-notation": "^4.2.3", - "postcss-color-hex-alpha": "^8.0.4", - "postcss-color-rebeccapurple": "^7.1.0", - "postcss-custom-media": "^8.0.2", - "postcss-custom-properties": "^12.1.8", - "postcss-custom-selectors": "^6.0.3", - "postcss-dir-pseudo-class": "^6.0.4", - "postcss-double-position-gradients": "^3.1.1", - "postcss-env-function": "^4.0.6", - "postcss-focus-visible": "^6.0.4", - "postcss-focus-within": "^5.0.4", - "postcss-font-variant": "^5.0.0", - "postcss-gap-properties": "^3.0.3", - "postcss-image-set-function": "^4.0.6", - "postcss-initial": "^4.0.1", - "postcss-lab-function": "^4.2.0", - "postcss-logical": "^5.0.4", - "postcss-media-minmax": "^5.0.0", - "postcss-nesting": "^10.1.9", - "postcss-opacity-percentage": "^1.1.2", - "postcss-overflow-shorthand": "^3.0.3", - "postcss-page-break": "^3.0.4", - "postcss-place": "^7.0.4", - "postcss-pseudo-class-any-link": "^7.1.5", - "postcss-replace-overflow-wrap": "^4.0.0", - "postcss-selector-not": "^6.0.0", - "postcss-value-parser": "^4.2.0" - }, - "engines": { - "node": "^12 || ^14 || >=16" - }, - "funding": { - "type": "opencollective", - "url": "https://opencollective.com/csstools" - }, - "peerDependencies": { - "postcss": "^8.2" - } - }, - "node_modules/postcss-pseudo-class-any-link": { - "version": "7.1.5", - "resolved": "https://registry.npmjs.org/postcss-pseudo-class-any-link/-/postcss-pseudo-class-any-link-7.1.5.tgz", - "integrity": "sha512-nSGKGScwFTaaV8Cyi27W9FegX3l3b7tmNxujxmykI/j3++cBAiq8fTUAU3ZK0s2aneN2T8cTUvKdNedzp3JIEA==", - "dependencies": { - "postcss-selector-parser": "^6.0.10" - }, - "engines": { - "node": "^12 || ^14 || >=16" - }, - "funding": { - "type": "opencollective", - "url": "https://opencollective.com/csstools" - }, - "peerDependencies": { - "postcss": "^8.2" - } - }, - "node_modules/postcss-reduce-initial": { - "version": "5.1.0", - "resolved": "https://registry.npmjs.org/postcss-reduce-initial/-/postcss-reduce-initial-5.1.0.tgz", - "integrity": "sha512-5OgTUviz0aeH6MtBjHfbr57tml13PuedK/Ecg8szzd4XRMbYxH4572JFG067z+FqBIf6Zp/d+0581glkvvWMFw==", - "dependencies": { - "browserslist": "^4.16.6", - "caniuse-api": "^3.0.0" - }, - "engines": { - "node": "^10 || ^12 || >=14.0" - }, - "peerDependencies": { - "postcss": "^8.2.15" - } - }, - "node_modules/postcss-reduce-transforms": { - "version": "5.1.0", - "resolved": "https://registry.npmjs.org/postcss-reduce-transforms/-/postcss-reduce-transforms-5.1.0.tgz", - "integrity": "sha512-2fbdbmgir5AvpW9RLtdONx1QoYG2/EtqpNQbFASDlixBbAYuTcJ0dECwlqNqH7VbaUnEnh8SrxOe2sRIn24XyQ==", - "dependencies": { - "postcss-value-parser": "^4.2.0" - }, - "engines": { - "node": "^10 || ^12 || >=14.0" - }, - "peerDependencies": { - "postcss": "^8.2.15" - } - }, - "node_modules/postcss-replace-overflow-wrap": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/postcss-replace-overflow-wrap/-/postcss-replace-overflow-wrap-4.0.0.tgz", - "integrity": "sha512-KmF7SBPphT4gPPcKZc7aDkweHiKEEO8cla/GjcBK+ckKxiZslIu3C4GCRW3DNfL0o7yW7kMQu9xlZ1kXRXLXtw==", - "peerDependencies": { - "postcss": "^8.0.3" - } - }, - "node_modules/postcss-selector-not": { - "version": "6.0.0", - "resolved": "https://registry.npmjs.org/postcss-selector-not/-/postcss-selector-not-6.0.0.tgz", - "integrity": "sha512-i/HI/VNd3V9e1WOLCwJsf9nePBRXqcGtVibcJ9FsVo0agfDEfsLSlFt94aYjY35wUNcdG0KrvdyjEr7It50wLQ==", - "dependencies": { - "postcss-selector-parser": "^6.0.10" - }, - "engines": { - "node": "^12 || ^14 || >=16" - }, - "funding": { - "type": "opencollective", - "url": "https://opencollective.com/csstools" - }, - "peerDependencies": { - "postcss": "^8.3" - } - }, - "node_modules/postcss-selector-parser": { - "version": "6.0.10", - "resolved": "https://registry.npmjs.org/postcss-selector-parser/-/postcss-selector-parser-6.0.10.tgz", - "integrity": "sha512-IQ7TZdoaqbT+LCpShg46jnZVlhWD2w6iQYAcYXfHARZ7X1t/UGhhceQDs5X0cGqKvYlHNOuv7Oa1xmb0oQuA3w==", - "dependencies": { - "cssesc": "^3.0.0", - "util-deprecate": "^1.0.2" - }, - "engines": { - "node": ">=4" - } - }, - "node_modules/postcss-svgo": { - "version": "5.1.0", - "resolved": "https://registry.npmjs.org/postcss-svgo/-/postcss-svgo-5.1.0.tgz", - "integrity": "sha512-D75KsH1zm5ZrHyxPakAxJWtkyXew5qwS70v56exwvw542d9CRtTo78K0WeFxZB4G7JXKKMbEZtZayTGdIky/eA==", - "dependencies": { - "postcss-value-parser": "^4.2.0", - "svgo": "^2.7.0" - }, - "engines": { - "node": "^10 || ^12 || >=14.0" - }, - "peerDependencies": { - "postcss": "^8.2.15" - } - }, - "node_modules/postcss-svgo/node_modules/commander": { - "version": "7.2.0", - "resolved": "https://registry.npmjs.org/commander/-/commander-7.2.0.tgz", - "integrity": "sha512-QrWXB+ZQSVPmIWIhtEO9H+gwHaMGYiF5ChvoJ+K9ZGHG/sVsa6yiesAD1GC/x46sET00Xlwo1u49RVVVzvcSkw==", - "engines": { - "node": ">= 10" - } - }, - "node_modules/postcss-svgo/node_modules/css-tree": { - "version": "1.1.3", - "resolved": "https://registry.npmjs.org/css-tree/-/css-tree-1.1.3.tgz", - "integrity": "sha512-tRpdppF7TRazZrjJ6v3stzv93qxRcSsFmW6cX0Zm2NVKpxE1WV1HblnghVv9TreireHkqI/VDEsfolRF1p6y7Q==", - "dependencies": { - "mdn-data": "2.0.14", - "source-map": "^0.6.1" - }, - "engines": { - "node": ">=8.0.0" - } - }, - "node_modules/postcss-svgo/node_modules/mdn-data": { - "version": "2.0.14", - "resolved": "https://registry.npmjs.org/mdn-data/-/mdn-data-2.0.14.tgz", - "integrity": "sha512-dn6wd0uw5GsdswPFfsgMp5NSB0/aDe6fK94YJV/AJDYXL6HVLWBsxeq7js7Ad+mU2K9LAlwpk6kN2D5mwCPVow==" - }, - "node_modules/postcss-svgo/node_modules/source-map": { - "version": "0.6.1", - "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz", - "integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==", - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/postcss-svgo/node_modules/svgo": { - "version": "2.8.0", - "resolved": "https://registry.npmjs.org/svgo/-/svgo-2.8.0.tgz", - "integrity": "sha512-+N/Q9kV1+F+UeWYoSiULYo4xYSDQlTgb+ayMobAXPwMnLvop7oxKMo9OzIrX5x3eS4L4f2UHhc9axXwY8DpChg==", - "dependencies": { - "@trysound/sax": "0.2.0", - "commander": "^7.2.0", - "css-select": "^4.1.3", - "css-tree": "^1.1.3", - "csso": "^4.2.0", - "picocolors": "^1.0.0", - "stable": "^0.1.8" - }, - "bin": { - "svgo": "bin/svgo" - }, - "engines": { - "node": ">=10.13.0" - } - }, - "node_modules/postcss-unique-selectors": { - "version": "5.1.1", - "resolved": "https://registry.npmjs.org/postcss-unique-selectors/-/postcss-unique-selectors-5.1.1.tgz", - "integrity": "sha512-5JiODlELrz8L2HwxfPnhOWZYWDxVHWL83ufOv84NrcgipI7TaeRsatAhK4Tr2/ZiYldpK/wBvw5BD3qfaK96GA==", - "dependencies": { - "postcss-selector-parser": "^6.0.5" - }, - "engines": { - "node": "^10 || ^12 || >=14.0" - }, - "peerDependencies": { - "postcss": "^8.2.15" - } - }, - "node_modules/postcss-value-parser": { - "version": "4.2.0", - "resolved": "https://registry.npmjs.org/postcss-value-parser/-/postcss-value-parser-4.2.0.tgz", - "integrity": "sha512-1NNCs6uurfkVbeXG4S8JFT9t19m45ICnif8zWLd5oPSZ50QnwMfK+H3jv408d4jw/7Bttv5axS5IiHoLaVNHeQ==" - }, - "node_modules/prelude-ls": { - "version": "1.2.1", - "resolved": "https://registry.npmjs.org/prelude-ls/-/prelude-ls-1.2.1.tgz", - "integrity": "sha512-vkcDPrRZo1QZLbn5RLGPpg/WmIQ65qoWWhcGKf/b5eplkkarX0m9z8ppCat4mlOqUsWpyNuYgO3VRyrYHSzX5g==", - "engines": { - "node": ">= 0.8.0" - } - }, - "node_modules/prettier": { - "version": "2.7.1", - "resolved": "https://registry.npmjs.org/prettier/-/prettier-2.7.1.tgz", - "integrity": "sha512-ujppO+MkdPqoVINuDFDRLClm7D78qbDt0/NR+wp5FqEZOoTNAjPHWj17QRhu7geIHJfcNhRk1XVQmF8Bp3ye+g==", - "dev": true, - "bin": { - "prettier": "bin-prettier.js" - }, - "engines": { - "node": ">=10.13.0" - }, - "funding": { - "url": "https://github.com/prettier/prettier?sponsor=1" - } - }, - "node_modules/pretty-bytes": { - "version": "5.6.0", - "resolved": "https://registry.npmjs.org/pretty-bytes/-/pretty-bytes-5.6.0.tgz", - "integrity": "sha512-FFw039TmrBqFK8ma/7OL3sDz/VytdtJr044/QUJtH0wK9lb9jLq9tJyIxUwtQJHwar2BqtiA4iCWSwo9JLkzFg==", - "engines": { - "node": ">=6" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, - "node_modules/pretty-error": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/pretty-error/-/pretty-error-4.0.0.tgz", - "integrity": "sha512-AoJ5YMAcXKYxKhuJGdcvse+Voc6v1RgnsR3nWcYU7q4t6z0Q6T86sv5Zq8VIRbOWWFpvdGE83LtdSMNd+6Y0xw==", - "dependencies": { - "lodash": "^4.17.20", - "renderkid": "^3.0.0" - } - }, - "node_modules/pretty-format": { - "version": "27.5.1", - "resolved": "https://registry.npmjs.org/pretty-format/-/pretty-format-27.5.1.tgz", - "integrity": "sha512-Qb1gy5OrP5+zDf2Bvnzdl3jsTf1qXVMazbvCoKhtKqVs4/YK4ozX4gKQJJVyNe+cajNPn0KoC0MC3FUmaHWEmQ==", - "dependencies": { - "ansi-regex": "^5.0.1", - "ansi-styles": "^5.0.0", - "react-is": "^17.0.1" - }, - "engines": { - "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0" - } - }, - "node_modules/pretty-format/node_modules/ansi-styles": { - "version": "5.2.0", - "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-5.2.0.tgz", - "integrity": "sha512-Cxwpt2SfTzTtXcfOlzGEee8O+c+MmUgGrNiBcXnuWxuFJHe6a5Hz7qwhwe5OgaSYI0IJvkLqWX1ASG+cJOkEiA==", - "engines": { - "node": ">=10" - }, - "funding": { - "url": "https://github.com/chalk/ansi-styles?sponsor=1" - } - }, - "node_modules/process": { - "version": "0.11.10", - "resolved": "https://registry.npmjs.org/process/-/process-0.11.10.tgz", - "integrity": "sha512-cdGef/drWFoydD1JsMzuFf8100nZl+GT+yacc2bEced5f9Rjk4z+WtFUTBu9PhOi9j/jfmBPu0mMEY4wIdAF8A==", - "engines": { - "node": ">= 0.6.0" - } - }, - "node_modules/process-nextick-args": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/process-nextick-args/-/process-nextick-args-2.0.1.tgz", - "integrity": "sha512-3ouUOpQhtgrbOa17J7+uxOTpITYWaGP7/AhoR3+A+/1e9skrzelGi/dXzEYyvbxubEF6Wn2ypscTKiKJFFn1ag==" - }, - "node_modules/promise": { - "version": "8.1.0", - "resolved": "https://registry.npmjs.org/promise/-/promise-8.1.0.tgz", - "integrity": "sha512-W04AqnILOL/sPRXziNicCjSNRruLAuIHEOVBazepu0545DDNGYHz7ar9ZgZ1fMU8/MA4mVxp5rkBWRi6OXIy3Q==", - "dependencies": { - "asap": "~2.0.6" - } - }, - "node_modules/prompts": { - "version": "2.4.2", - "resolved": "https://registry.npmjs.org/prompts/-/prompts-2.4.2.tgz", - "integrity": "sha512-NxNv/kLguCA7p3jE8oL2aEBsrJWgAakBpgmgK6lpPWV+WuOmY6r2/zbAVnP+T8bQlA0nzHXSJSJW0Hq7ylaD2Q==", - "dependencies": { - "kleur": "^3.0.3", - "sisteransi": "^1.0.5" - }, - "engines": { - "node": ">= 6" - } - }, - "node_modules/prop-types": { - "version": "15.8.1", - "resolved": "https://registry.npmjs.org/prop-types/-/prop-types-15.8.1.tgz", - "integrity": "sha512-oj87CgZICdulUohogVAR7AjlC0327U4el4L6eAvOqCeudMDVU0NThNaV+b9Df4dXgSP1gXMTnPdhfe/2qDH5cg==", - "dependencies": { - "loose-envify": "^1.4.0", - "object-assign": "^4.1.1", - "react-is": "^16.13.1" - } - }, - "node_modules/prop-types-exact": { - "version": "1.2.0", - "resolved": "https://registry.npmjs.org/prop-types-exact/-/prop-types-exact-1.2.0.tgz", - "integrity": "sha512-K+Tk3Kd9V0odiXFP9fwDHUYRyvK3Nun3GVyPapSIs5OBkITAm15W0CPFD/YKTkMUAbc0b9CUwRQp2ybiBIq+eA==", - "dependencies": { - "has": "^1.0.3", - "object.assign": "^4.1.0", - "reflect.ownkeys": "^0.2.0" - } - }, - "node_modules/prop-types/node_modules/react-is": { - "version": "16.13.1", - "resolved": "https://registry.npmjs.org/react-is/-/react-is-16.13.1.tgz", - "integrity": "sha512-24e6ynE2H+OKt4kqsOvNd8kBpV65zoxbA4BVsEOB3ARVWQki/DHzaUoC5KuON/BiccDaCCTZBuOcfZs70kR8bQ==" - }, - "node_modules/proxy-addr": { - "version": "2.0.7", - "resolved": "https://registry.npmjs.org/proxy-addr/-/proxy-addr-2.0.7.tgz", - "integrity": "sha512-llQsMLSUDUPT44jdrU/O37qlnifitDP+ZwrmmZcoSKyLKvtZxpyV0n2/bD/N4tBAAZ/gJEdZU7KMraoK1+XYAg==", - "dependencies": { - "forwarded": "0.2.0", - "ipaddr.js": "1.9.1" - }, - "engines": { - "node": ">= 0.10" - } - }, - "node_modules/proxy-addr/node_modules/ipaddr.js": { - "version": "1.9.1", - "resolved": "https://registry.npmjs.org/ipaddr.js/-/ipaddr.js-1.9.1.tgz", - "integrity": "sha512-0KI/607xoxSToH7GjN1FfSbLoU0+btTicjsQSWQlh/hZykN8KpmMf7uYwPW3R+akZ6R/w18ZlXSHBYXiYUPO3g==", - "engines": { - "node": ">= 0.10" - } - }, - "node_modules/psl": { - "version": "1.8.0", - "resolved": "https://registry.npmjs.org/psl/-/psl-1.8.0.tgz", - "integrity": "sha512-RIdOzyoavK+hA18OGGWDqUTsCLhtA7IcZ/6NCs4fFJaHBDab+pDDmDIByWFRQJq2Cd7r1OoQxBGKOaztq+hjIQ==" - }, - "node_modules/pump": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/pump/-/pump-3.0.0.tgz", - "integrity": "sha512-LwZy+p3SFs1Pytd/jYct4wpv49HiYCqd9Rlc5ZVdk0V+8Yzv6jR5Blk3TRmPL1ft69TxP0IMZGJ+WPFU2BFhww==", - "dependencies": { - "end-of-stream": "^1.1.0", - "once": "^1.3.1" - } - }, - "node_modules/punycode": { - "version": "2.1.1", - "resolved": "https://registry.npmjs.org/punycode/-/punycode-2.1.1.tgz", - "integrity": "sha512-XRsRjdf+j5ml+y/6GKHPZbrF/8p2Yga0JPtdqTIY2Xe5ohJPD9saDJJLPvp9+NSBprVvevdXZybnj2cv8OEd0A==", - "engines": { - "node": ">=6" - } - }, - "node_modules/q": { - "version": "1.5.1", - "resolved": "https://registry.npmjs.org/q/-/q-1.5.1.tgz", - "integrity": "sha512-kV/CThkXo6xyFEZUugw/+pIOywXcDbFYgSct5cT3gqlbkBE1SJdwy6UQoZvodiWF/ckQLZyDE/Bu1M6gVu5lVw==", - "engines": { - "node": ">=0.6.0", - "teleport": ">=0.2.0" - } - }, - "node_modules/qrcode": { - "version": "1.5.3", - "resolved": "https://registry.npmjs.org/qrcode/-/qrcode-1.5.3.tgz", - "integrity": "sha512-puyri6ApkEHYiVl4CFzo1tDkAZ+ATcnbJrJ6RiBM1Fhctdn/ix9MTE3hRph33omisEbC/2fcfemsseiKgBPKZg==", - "dependencies": { - "dijkstrajs": "^1.0.1", - "encode-utf8": "^1.0.3", - "pngjs": "^5.0.0", - "yargs": "^15.3.1" - }, - "bin": { - "qrcode": "bin/qrcode" - }, - "engines": { - "node": ">=10.13.0" - } - }, - "node_modules/qrcode/node_modules/ansi-styles": { - "version": "4.3.0", - "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", - "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", - "dependencies": { - "color-convert": "^2.0.1" - }, - "engines": { - "node": ">=8" - }, - "funding": { - "url": "https://github.com/chalk/ansi-styles?sponsor=1" - } - }, - "node_modules/qrcode/node_modules/camelcase": { - "version": "5.3.1", - "resolved": "https://registry.npmjs.org/camelcase/-/camelcase-5.3.1.tgz", - "integrity": "sha512-L28STB170nwWS63UjtlEOE3dldQApaJXZkOI1uMFfzf3rRuPegHaHesyee+YxQ+W6SvRDQV6UrdOdRiR153wJg==", - "engines": { - "node": ">=6" - } - }, - "node_modules/qrcode/node_modules/cliui": { - "version": "6.0.0", - "resolved": "https://registry.npmjs.org/cliui/-/cliui-6.0.0.tgz", - "integrity": "sha512-t6wbgtoCXvAzst7QgXxJYqPt0usEfbgQdftEPbLL/cvv6HPE5VgvqCuAIDR0NgU52ds6rFwqrgakNLrHEjCbrQ==", - "dependencies": { - "string-width": "^4.2.0", - "strip-ansi": "^6.0.0", - "wrap-ansi": "^6.2.0" - } - }, - "node_modules/qrcode/node_modules/color-convert": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz", - "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==", - "dependencies": { - "color-name": "~1.1.4" - }, - "engines": { - "node": ">=7.0.0" - } - }, - "node_modules/qrcode/node_modules/color-name": { - "version": "1.1.4", - "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz", - "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==" - }, - "node_modules/qrcode/node_modules/decamelize": { - "version": "1.2.0", - "resolved": "https://registry.npmjs.org/decamelize/-/decamelize-1.2.0.tgz", - "integrity": "sha512-z2S+W9X73hAUUki+N+9Za2lBlun89zigOyGrsax+KUQ6wKW4ZoWpEYBkGhQjwAjjDCkWxhY0VKEhk8wzY7F5cA==", - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/qrcode/node_modules/find-up": { - "version": "4.1.0", - "resolved": "https://registry.npmjs.org/find-up/-/find-up-4.1.0.tgz", - "integrity": "sha512-PpOwAdQ/YlXQ2vj8a3h8IipDuYRi3wceVQQGYWxNINccq40Anw7BlsEXCMbt1Zt+OLA6Fq9suIpIWD0OsnISlw==", - "dependencies": { - "locate-path": "^5.0.0", - "path-exists": "^4.0.0" - }, - "engines": { - "node": ">=8" - } - }, - "node_modules/qrcode/node_modules/locate-path": { - "version": "5.0.0", - "resolved": "https://registry.npmjs.org/locate-path/-/locate-path-5.0.0.tgz", - "integrity": "sha512-t7hw9pI+WvuwNJXwk5zVHpyhIqzg2qTlklJOf0mVxGSbe3Fp2VieZcduNYjaLDoy6p9uGpQEGWG87WpMKlNq8g==", - "dependencies": { - "p-locate": "^4.1.0" - }, - "engines": { - "node": ">=8" - } - }, - "node_modules/qrcode/node_modules/p-limit": { - "version": "2.3.0", - "resolved": "https://registry.npmjs.org/p-limit/-/p-limit-2.3.0.tgz", - "integrity": "sha512-//88mFWSJx8lxCzwdAABTJL2MyWB12+eIY7MDL2SqLmAkeKU9qxRvWuSyTjm3FUmpBEMuFfckAIqEaVGUDxb6w==", - "dependencies": { - "p-try": "^2.0.0" - }, - "engines": { - "node": ">=6" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, - "node_modules/qrcode/node_modules/p-locate": { - "version": "4.1.0", - "resolved": "https://registry.npmjs.org/p-locate/-/p-locate-4.1.0.tgz", - "integrity": "sha512-R79ZZ/0wAxKGu3oYMlz8jy/kbhsNrS7SKZ7PxEHBgJ5+F2mtFW2fK2cOtBh1cHYkQsbzFV7I+EoRKe6Yt0oK7A==", - "dependencies": { - "p-limit": "^2.2.0" - }, - "engines": { - "node": ">=8" - } - }, - "node_modules/qrcode/node_modules/pngjs": { - "version": "5.0.0", - "resolved": "https://registry.npmjs.org/pngjs/-/pngjs-5.0.0.tgz", - "integrity": "sha512-40QW5YalBNfQo5yRYmiw7Yz6TKKVr3h6970B2YE+3fQpsWcrbj1PzJgxeJ19DRQjhMbKPIuMY8rFaXc8moolVw==", - "engines": { - "node": ">=10.13.0" - } - }, - "node_modules/qrcode/node_modules/wrap-ansi": { - "version": "6.2.0", - "resolved": "https://registry.npmjs.org/wrap-ansi/-/wrap-ansi-6.2.0.tgz", - "integrity": "sha512-r6lPcBGxZXlIcymEu7InxDMhdW0KDxpLgoFLcguasxCaJ/SOIZwINatK9KY/tf+ZrlywOKU0UDj3ATXUBfxJXA==", - "dependencies": { - "ansi-styles": "^4.0.0", - "string-width": "^4.1.0", - "strip-ansi": "^6.0.0" - }, - "engines": { - "node": ">=8" - } - }, - "node_modules/qrcode/node_modules/y18n": { - "version": "4.0.3", - "resolved": "https://registry.npmjs.org/y18n/-/y18n-4.0.3.tgz", - "integrity": "sha512-JKhqTOwSrqNA1NY5lSztJ1GrBiUodLMmIZuLiDaMRJ+itFd+ABVE8XBjOvIWL+rSqNDC74LCSFmlb/U4UZ4hJQ==" - }, - "node_modules/qrcode/node_modules/yargs": { - "version": "15.4.1", - "resolved": "https://registry.npmjs.org/yargs/-/yargs-15.4.1.tgz", - "integrity": "sha512-aePbxDmcYW++PaqBsJ+HYUFwCdv4LVvdnhBy78E57PIor8/OVvhMrADFFEDh8DHDFRv/O9i3lPhsENjO7QX0+A==", - "dependencies": { - "cliui": "^6.0.0", - "decamelize": "^1.2.0", - "find-up": "^4.1.0", - "get-caller-file": "^2.0.1", - "require-directory": "^2.1.1", - "require-main-filename": "^2.0.0", - "set-blocking": "^2.0.0", - "string-width": "^4.2.0", - "which-module": "^2.0.0", - "y18n": "^4.0.0", - "yargs-parser": "^18.1.2" - }, - "engines": { - "node": ">=8" - } - }, - "node_modules/qrcode/node_modules/yargs-parser": { - "version": "18.1.3", - "resolved": "https://registry.npmjs.org/yargs-parser/-/yargs-parser-18.1.3.tgz", - "integrity": "sha512-o50j0JeToy/4K6OZcaQmW6lyXXKhq7csREXcDwk2omFPJEwUNOVtJKvmDr9EI1fAJZUyZcRF7kxGBWmRXudrCQ==", - "dependencies": { - "camelcase": "^5.0.0", - "decamelize": "^1.2.0" - }, - "engines": { - "node": ">=6" - } - }, - "node_modules/qs": { - "version": "6.10.3", - "resolved": "https://registry.npmjs.org/qs/-/qs-6.10.3.tgz", - "integrity": "sha512-wr7M2E0OFRfIfJZjKGieI8lBKb7fRCH4Fv5KNPEs7gJ8jadvotdsS08PzOKR7opXhZ/Xkjtt3WF9g38drmyRqQ==", - "dependencies": { - "side-channel": "^1.0.4" - }, - "engines": { - "node": ">=0.6" - }, - "funding": { - "url": "https://github.com/sponsors/ljharb" - } - }, - "node_modules/query-string": { - "version": "5.1.1", - "resolved": "https://registry.npmjs.org/query-string/-/query-string-5.1.1.tgz", - "integrity": "sha512-gjWOsm2SoGlgLEdAGt7a6slVOk9mGiXmPFMqrEhLQ68rhQuBnpfs3+EmlvqKyxnCo9/PPlF+9MtY02S1aFg+Jw==", - "dependencies": { - "decode-uri-component": "^0.2.0", - "object-assign": "^4.1.0", - "strict-uri-encode": "^1.0.0" - }, - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/querystring": { - "version": "0.2.0", - "resolved": "https://registry.npmjs.org/querystring/-/querystring-0.2.0.tgz", - "integrity": "sha512-X/xY82scca2tau62i9mDyU9K+I+djTMUsvwf7xnUX5GLvVzgJybOJf4Y6o9Zx3oJK/LSXg5tTZBjwzqVPaPO2g==", - "deprecated": "The querystring API is considered Legacy. new code should use the URLSearchParams API instead.", - "engines": { - "node": ">=0.4.x" - } - }, - "node_modules/queue-microtask": { - "version": "1.2.3", - "resolved": "https://registry.npmjs.org/queue-microtask/-/queue-microtask-1.2.3.tgz", - "integrity": "sha512-NuaNSa6flKT5JaSYQzJok04JzTL1CA6aGhv5rfLW3PgqA+M2ChpZQnAC8h8i4ZFkBS8X5RqkDBHA7r4hej3K9A==", - "funding": [ - { - "type": "github", - "url": "https://github.com/sponsors/feross" - }, - { - "type": "patreon", - "url": "https://www.patreon.com/feross" - }, - { - "type": "consulting", - "url": "https://feross.org/support" - } - ] - }, - "node_modules/quick-lru": { - "version": "5.1.1", - "resolved": "https://registry.npmjs.org/quick-lru/-/quick-lru-5.1.1.tgz", - "integrity": "sha512-WuyALRjWPDGtt/wzJiadO5AXY+8hZ80hVpe6MyivgraREW751X3SbhRvG3eLKOYN+8VEvqLcf3wdnt44Z4S4SA==", - "engines": { - "node": ">=10" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, - "node_modules/raf": { - "version": "3.4.1", - "resolved": "https://registry.npmjs.org/raf/-/raf-3.4.1.tgz", - "integrity": "sha512-Sq4CW4QhwOHE8ucn6J34MqtZCeWFP2aQSmrlroYgqAV1PjStIhJXxYuTgUIfkEk7zTLjmIjLmU5q+fbD1NnOJA==", - "dependencies": { - "performance-now": "^2.1.0" - } - }, - "node_modules/randombytes": { - "version": "2.1.0", - "resolved": "https://registry.npmjs.org/randombytes/-/randombytes-2.1.0.tgz", - "integrity": "sha512-vYl3iOX+4CKUWuxGi9Ukhie6fsqXqS9FE2Zaic4tNFD2N2QQaXOMFbuKK4QmDHC0JO6B1Zp41J0LpT0oR68amQ==", - "dependencies": { - "safe-buffer": "^5.1.0" - } - }, - "node_modules/range-parser": { - "version": "1.2.1", - "resolved": "https://registry.npmjs.org/range-parser/-/range-parser-1.2.1.tgz", - "integrity": "sha512-Hrgsx+orqoygnmhFbKaHE6c296J+HTAQXoxEF6gNupROmmGJRoyzfG3ccAveqCBrwr/2yxQ5BVd/GTl5agOwSg==", - "engines": { - "node": ">= 0.6" - } - }, - "node_modules/raw-body": { - "version": "2.5.1", - "resolved": "https://registry.npmjs.org/raw-body/-/raw-body-2.5.1.tgz", - "integrity": "sha512-qqJBtEyVgS0ZmPGdCFPWJ3FreoqvG4MVQln/kCgF7Olq95IbOp0/BWyMwbdtn4VTvkM8Y7khCQ2Xgk/tcrCXig==", - "dependencies": { - "bytes": "3.1.2", - "http-errors": "2.0.0", - "iconv-lite": "0.4.24", - "unpipe": "1.0.0" - }, - "engines": { - "node": ">= 0.8" - } - }, - "node_modules/raw-body/node_modules/bytes": { - "version": "3.1.2", - "resolved": "https://registry.npmjs.org/bytes/-/bytes-3.1.2.tgz", - "integrity": "sha512-/Nf7TyzTx6S3yRJObOAV7956r8cr2+Oj8AC5dt8wSP3BQAoeX58NoHyCU8P8zGkNXStjTSi6fzO6F0pBdcYbEg==", - "engines": { - "node": ">= 0.8" - } - }, - "node_modules/raw-body/node_modules/iconv-lite": { - "version": "0.4.24", - "resolved": "https://registry.npmjs.org/iconv-lite/-/iconv-lite-0.4.24.tgz", - "integrity": "sha512-v3MXnZAcvnywkTUEZomIActle7RXXeedOR31wwl7VlyoXO4Qi9arvSenNQWne1TcRwhCL1HwLI21bEqdpj8/rA==", - "dependencies": { - "safer-buffer": ">= 2.1.2 < 3" - }, - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/react": { - "version": "18.2.0", - "resolved": "https://registry.npmjs.org/react/-/react-18.2.0.tgz", - "integrity": "sha512-/3IjMdb2L9QbBdWiW5e3P2/npwMBaU9mHCSCUzNln0ZCYbcfTsGbTJrU/kGemdH2IWmB2ioZ+zkxtmq6g09fGQ==", - "dependencies": { - "loose-envify": "^1.1.0" - }, - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/react-app-polyfill": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/react-app-polyfill/-/react-app-polyfill-3.0.0.tgz", - "integrity": "sha512-sZ41cxiU5llIB003yxxQBYrARBqe0repqPTTYBTmMqTz9szeBbE37BehCE891NZsmdZqqP+xWKdT3eo3vOzN8w==", - "dependencies": { - "core-js": "^3.19.2", - "object-assign": "^4.1.1", - "promise": "^8.1.0", - "raf": "^3.4.1", - "regenerator-runtime": "^0.13.9", - "whatwg-fetch": "^3.6.2" - }, - "engines": { - "node": ">=14" - } - }, - "node_modules/react-contenteditable": { - "version": "3.3.6", - "resolved": "https://registry.npmjs.org/react-contenteditable/-/react-contenteditable-3.3.6.tgz", - "integrity": "sha512-61+Anbmzggel1sP7nwvxq3d2woD3duR5R89RoLGqKan1A+nruFIcmLjw2F+qqk70AyABls0BDKzE1vqS1UIF1g==", - "dependencies": { - "fast-deep-equal": "^3.1.3", - "prop-types": "^15.7.1" - }, - "peerDependencies": { - "react": ">=16.3" - } - }, - "node_modules/react-dev-utils": { - "version": "12.0.1", - "resolved": "https://registry.npmjs.org/react-dev-utils/-/react-dev-utils-12.0.1.tgz", - "integrity": "sha512-84Ivxmr17KjUupyqzFode6xKhjwuEJDROWKJy/BthkL7Wn6NJ8h4WE6k/exAv6ImS+0oZLRRW5j/aINMHyeGeQ==", - "dependencies": { - "@babel/code-frame": "^7.16.0", - "address": "^1.1.2", - "browserslist": "^4.18.1", - "chalk": "^4.1.2", - "cross-spawn": "^7.0.3", - "detect-port-alt": "^1.1.6", - "escape-string-regexp": "^4.0.0", - "filesize": "^8.0.6", - "find-up": "^5.0.0", - "fork-ts-checker-webpack-plugin": "^6.5.0", - "global-modules": "^2.0.0", - "globby": "^11.0.4", - "gzip-size": "^6.0.0", - "immer": "^9.0.7", - "is-root": "^2.1.0", - "loader-utils": "^3.2.0", - "open": "^8.4.0", - "pkg-up": "^3.1.0", - "prompts": "^2.4.2", - "react-error-overlay": "^6.0.11", - "recursive-readdir": "^2.2.2", - "shell-quote": "^1.7.3", - "strip-ansi": "^6.0.1", - "text-table": "^0.2.0" - }, - "engines": { - "node": ">=14" - } - }, - "node_modules/react-dev-utils/node_modules/ansi-styles": { - "version": "4.3.0", - "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", - "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", - "dependencies": { - "color-convert": "^2.0.1" - }, - "engines": { - "node": ">=8" - }, - "funding": { - "url": "https://github.com/chalk/ansi-styles?sponsor=1" - } - }, - "node_modules/react-dev-utils/node_modules/chalk": { - "version": "4.1.2", - "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz", - "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==", - "dependencies": { - "ansi-styles": "^4.1.0", - "supports-color": "^7.1.0" - }, - "engines": { - "node": ">=10" - }, - "funding": { - "url": "https://github.com/chalk/chalk?sponsor=1" - } - }, - "node_modules/react-dev-utils/node_modules/color-convert": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz", - "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==", - "dependencies": { - "color-name": "~1.1.4" - }, - "engines": { - "node": ">=7.0.0" - } - }, - "node_modules/react-dev-utils/node_modules/color-name": { - "version": "1.1.4", - "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz", - "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==" - }, - "node_modules/react-dev-utils/node_modules/escape-string-regexp": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/escape-string-regexp/-/escape-string-regexp-4.0.0.tgz", - "integrity": "sha512-TtpcNJ3XAzx3Gq8sWRzJaVajRs0uVxA2YAkdb1jm2YkPz4G6egUFAyA3n5vtEIZefPk5Wa4UXbKuS5fKkJWdgA==", - "engines": { - "node": ">=10" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, - "node_modules/react-dev-utils/node_modules/has-flag": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz", - "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==", - "engines": { - "node": ">=8" - } - }, - "node_modules/react-dev-utils/node_modules/loader-utils": { - "version": "3.2.1", - "resolved": "https://registry.npmjs.org/loader-utils/-/loader-utils-3.2.1.tgz", - "integrity": "sha512-ZvFw1KWS3GVyYBYb7qkmRM/WwL2TQQBxgCK62rlvm4WpVQ23Nb4tYjApUlfjrEGvOs7KHEsmyUn75OHZrJMWPw==", - "engines": { - "node": ">= 12.13.0" - } - }, - "node_modules/react-dev-utils/node_modules/supports-color": { - "version": "7.2.0", - "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", - "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", - "dependencies": { - "has-flag": "^4.0.0" - }, - "engines": { - "node": ">=8" - } - }, - "node_modules/react-dom": { - "version": "18.2.0", - "resolved": "https://registry.npmjs.org/react-dom/-/react-dom-18.2.0.tgz", - "integrity": "sha512-6IMTriUmvsjHUjNtEDudZfuDQUoWXVxKHhlEGSk81n4YFS+r/Kl99wXiwlVXtPBtJenozv2P+hxDsw9eA7Xo6g==", - "dependencies": { - "loose-envify": "^1.1.0", - "scheduler": "^0.23.0" - }, - "peerDependencies": { - "react": "^18.2.0" - } - }, - "node_modules/react-error-overlay": { - "version": "6.0.11", - "resolved": "https://registry.npmjs.org/react-error-overlay/-/react-error-overlay-6.0.11.tgz", - "integrity": "sha512-/6UZ2qgEyH2aqzYZgQPxEnz33NJ2gNsnHA2o5+o4wW9bLM/JYQitNP9xPhsXwC08hMMovfGe/8retsdDsczPRg==" - }, - "node_modules/react-fast-compare": { - "version": "3.2.1", - "resolved": "https://registry.npmjs.org/react-fast-compare/-/react-fast-compare-3.2.1.tgz", - "integrity": "sha512-xTYf9zFim2pEif/Fw16dBiXpe0hoy5PxcD8+OwBnTtNLfIm3g6WxhKNurY+6OmdH1u6Ta/W/Vl6vjbYP1MFnDg==" - }, - "node_modules/react-feather": { - "version": "2.0.10", - "resolved": "https://registry.npmjs.org/react-feather/-/react-feather-2.0.10.tgz", - "integrity": "sha512-BLhukwJ+Z92Nmdcs+EMw6dy1Z/VLiJTzEQACDUEnWMClhYnFykJCGWQx+NmwP/qQHGX/5CzQ+TGi8ofg2+HzVQ==", - "dependencies": { - "prop-types": "^15.7.2" - }, - "peerDependencies": { - "react": ">=16.8.6" - } - }, - "node_modules/react-hotkeys": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/react-hotkeys/-/react-hotkeys-2.0.0.tgz", - "integrity": "sha512-3n3OU8vLX/pfcJrR3xJ1zlww6KS1kEJt0Whxc4FiGV+MJrQ1mYSYI3qS/11d2MJDFm8IhOXMTFQirfu6AVOF6Q==", - "dependencies": { - "prop-types": "^15.6.1" - }, - "peerDependencies": { - "react": ">= 0.14.0" - } - }, - "node_modules/react-is": { - "version": "17.0.2", - "resolved": "https://registry.npmjs.org/react-is/-/react-is-17.0.2.tgz", - "integrity": "sha512-w2GsyukL62IJnlaff/nRegPQR94C/XXamvMWmSHRJ4y7Ts/4ocGRmTHvOs8PSE6pB3dWOrD/nueuU5sduBsQ4w==" - }, - "node_modules/react-outside-click-handler": { - "version": "1.3.0", - "resolved": "https://registry.npmjs.org/react-outside-click-handler/-/react-outside-click-handler-1.3.0.tgz", - "integrity": "sha512-Te/7zFU0oHpAnctl//pP3hEAeobfeHMyygHB8MnjP6sX5OR8KHT1G3jmLsV3U9RnIYo+Yn+peJYWu+D5tUS8qQ==", - "dependencies": { - "airbnb-prop-types": "^2.15.0", - "consolidated-events": "^1.1.1 || ^2.0.0", - "document.contains": "^1.0.1", - "object.values": "^1.1.0", - "prop-types": "^15.7.2" - }, - "peerDependencies": { - "react": "^0.14 || >=15", - "react-dom": "^0.14 || >=15" - } - }, - "node_modules/react-outside-click-handler/node_modules/airbnb-prop-types": { - "version": "2.16.0", - "resolved": "https://registry.npmjs.org/airbnb-prop-types/-/airbnb-prop-types-2.16.0.tgz", - "integrity": "sha512-7WHOFolP/6cS96PhKNrslCLMYAI8yB1Pp6u6XmxozQOiZbsI5ycglZr5cHhBFfuRcQQjzCMith5ZPZdYiJCxUg==", - "dependencies": { - "array.prototype.find": "^2.1.1", - "function.prototype.name": "^1.1.2", - "is-regex": "^1.1.0", - "object-is": "^1.1.2", - "object.assign": "^4.1.0", - "object.entries": "^1.1.2", - "prop-types": "^15.7.2", - "prop-types-exact": "^1.2.0", - "react-is": "^16.13.1" - }, - "funding": { - "url": "https://github.com/sponsors/ljharb" - }, - "peerDependencies": { - "react": "^0.14 || ^15.0.0 || ^16.0.0-alpha" - } - }, - "node_modules/react-outside-click-handler/node_modules/react-is": { - "version": "16.13.1", - "resolved": "https://registry.npmjs.org/react-is/-/react-is-16.13.1.tgz", - "integrity": "sha512-24e6ynE2H+OKt4kqsOvNd8kBpV65zoxbA4BVsEOB3ARVWQki/DHzaUoC5KuON/BiccDaCCTZBuOcfZs70kR8bQ==" - }, - "node_modules/react-popper": { - "version": "2.3.0", - "resolved": "https://registry.npmjs.org/react-popper/-/react-popper-2.3.0.tgz", - "integrity": "sha512-e1hj8lL3uM+sgSR4Lxzn5h1GxBlpa4CQz0XLF8kx4MDrDRWY0Ena4c97PUeSX9i5W3UAfDP0z0FXCTQkoXUl3Q==", - "dependencies": { - "react-fast-compare": "^3.0.1", - "warning": "^4.0.2" - }, - "peerDependencies": { - "@popperjs/core": "^2.0.0", - "react": "^16.8.0 || ^17 || ^18", - "react-dom": "^16.8.0 || ^17 || ^18" - } - }, - "node_modules/react-redux": { - "version": "8.0.5", - "resolved": "https://registry.npmjs.org/react-redux/-/react-redux-8.0.5.tgz", - "integrity": "sha512-Q2f6fCKxPFpkXt1qNRZdEDLlScsDWyrgSj0mliK59qU6W5gvBiKkdMEG2lJzhd1rCctf0hb6EtePPLZ2e0m1uw==", - "dependencies": { - "@babel/runtime": "^7.12.1", - "@types/hoist-non-react-statics": "^3.3.1", - "@types/use-sync-external-store": "^0.0.3", - "hoist-non-react-statics": "^3.3.2", - "react-is": "^18.0.0", - "use-sync-external-store": "^1.0.0" - }, - "peerDependencies": { - "@types/react": "^16.8 || ^17.0 || ^18.0", - "@types/react-dom": "^16.8 || ^17.0 || ^18.0", - "react": "^16.8 || ^17.0 || ^18.0", - "react-dom": "^16.8 || ^17.0 || ^18.0", - "react-native": ">=0.59", - "redux": "^4" - }, - "peerDependenciesMeta": { - "@types/react": { - "optional": true - }, - "@types/react-dom": { - "optional": true - }, - "react-dom": { - "optional": true - }, - "react-native": { - "optional": true - }, - "redux": { - "optional": true - } - } - }, - "node_modules/react-redux/node_modules/react-is": { - "version": "18.2.0", - "resolved": "https://registry.npmjs.org/react-is/-/react-is-18.2.0.tgz", - "integrity": "sha512-xWGDIW6x921xtzPkhiULtthJHoJvBbF3q26fzloPCK0hsvxtPVelvftw3zjbHWSkR2km9Z+4uxbDDK/6Zw9B8w==" - }, - "node_modules/react-refresh": { - "version": "0.11.0", - "resolved": "https://registry.npmjs.org/react-refresh/-/react-refresh-0.11.0.tgz", - "integrity": "sha512-F27qZr8uUqwhWZboondsPx8tnC3Ct3SxZA3V5WyEvujRyyNv0VYPhoBg1gZ8/MV5tubQp76Trw8lTv9hzRBa+A==", - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/react-router": { - "version": "6.10.0", - "resolved": "https://registry.npmjs.org/react-router/-/react-router-6.10.0.tgz", - "integrity": "sha512-Nrg0BWpQqrC3ZFFkyewrflCud9dio9ME3ojHCF/WLsprJVzkq3q3UeEhMCAW1dobjeGbWgjNn/PVF6m46ANxXQ==", - "dependencies": { - "@remix-run/router": "1.5.0" - }, - "engines": { - "node": ">=14" - }, - "peerDependencies": { - "react": ">=16.8" - } - }, - "node_modules/react-router-dom": { - "version": "6.10.0", - "resolved": "https://registry.npmjs.org/react-router-dom/-/react-router-dom-6.10.0.tgz", - "integrity": "sha512-E5dfxRPuXKJqzwSe/qGcqdwa18QiWC6f3H3cWXM24qj4N0/beCIf/CWTipop2xm7mR0RCS99NnaqPNjHtrAzCg==", - "dependencies": { - "@remix-run/router": "1.5.0", - "react-router": "6.10.0" - }, - "engines": { - "node": ">=14" - }, - "peerDependencies": { - "react": ">=16.8", - "react-dom": ">=16.8" - } - }, - "node_modules/react-scripts": { - "version": "5.0.1", - "resolved": "https://registry.npmjs.org/react-scripts/-/react-scripts-5.0.1.tgz", - "integrity": "sha512-8VAmEm/ZAwQzJ+GOMLbBsTdDKOpuZh7RPs0UymvBR2vRk4iZWCskjbFnxqjrzoIvlNNRZ3QJFx6/qDSi6zSnaQ==", - "dependencies": { - "@babel/core": "^7.16.0", - "@pmmmwh/react-refresh-webpack-plugin": "^0.5.3", - "@svgr/webpack": "^5.5.0", - "babel-jest": "^27.4.2", - "babel-loader": "^8.2.3", - "babel-plugin-named-asset-import": "^0.3.8", - "babel-preset-react-app": "^10.0.1", - "bfj": "^7.0.2", - "browserslist": "^4.18.1", - "camelcase": "^6.2.1", - "case-sensitive-paths-webpack-plugin": "^2.4.0", - "css-loader": "^6.5.1", - "css-minimizer-webpack-plugin": "^3.2.0", - "dotenv": "^10.0.0", - "dotenv-expand": "^5.1.0", - "eslint": "^8.3.0", - "eslint-config-react-app": "^7.0.1", - "eslint-webpack-plugin": "^3.1.1", - "file-loader": "^6.2.0", - "fs-extra": "^10.0.0", - "html-webpack-plugin": "^5.5.0", - "identity-obj-proxy": "^3.0.0", - "jest": "^27.4.3", - "jest-resolve": "^27.4.2", - "jest-watch-typeahead": "^1.0.0", - "mini-css-extract-plugin": "^2.4.5", - "postcss": "^8.4.4", - "postcss-flexbugs-fixes": "^5.0.2", - "postcss-loader": "^6.2.1", - "postcss-normalize": "^10.0.1", - "postcss-preset-env": "^7.0.1", - "prompts": "^2.4.2", - "react-app-polyfill": "^3.0.0", - "react-dev-utils": "^12.0.1", - "react-refresh": "^0.11.0", - "resolve": "^1.20.0", - "resolve-url-loader": "^4.0.0", - "sass-loader": "^12.3.0", - "semver": "^7.3.5", - "source-map-loader": "^3.0.0", - "style-loader": "^3.3.1", - "tailwindcss": "^3.0.2", - "terser-webpack-plugin": "^5.2.5", - "webpack": "^5.64.4", - "webpack-dev-server": "^4.6.0", - "webpack-manifest-plugin": "^4.0.2", - "workbox-webpack-plugin": "^6.4.1" - }, - "bin": { - "react-scripts": "bin/react-scripts.js" - }, - "engines": { - "node": ">=14.0.0" - }, - "optionalDependencies": { - "fsevents": "^2.3.2" - }, - "peerDependencies": { - "react": ">= 16", - "typescript": "^3.2.1 || ^4" - }, - "peerDependenciesMeta": { - "typescript": { - "optional": true - } - } - }, - "node_modules/react-scripts/node_modules/dotenv": { - "version": "10.0.0", - "resolved": "https://registry.npmjs.org/dotenv/-/dotenv-10.0.0.tgz", - "integrity": "sha512-rlBi9d8jpv9Sf1klPjNfFAuWDjKLwTIJJ/VxtoTwIR6hnZxcEOQCZg2oIL3MWBYw5GpUDKOEnND7LXTbIpQ03Q==", - "engines": { - "node": ">=10" - } - }, - "node_modules/react-transition-group": { - "version": "4.4.2", - "resolved": "https://registry.npmjs.org/react-transition-group/-/react-transition-group-4.4.2.tgz", - "integrity": "sha512-/RNYfRAMlZwDSr6z4zNKV6xu53/e2BuaBbGhbyYIXTrmgu/bGHzmqOs7mJSJBHy9Ud+ApHx3QjrkKSp1pxvlFg==", - "dependencies": { - "@babel/runtime": "^7.5.5", - "dom-helpers": "^5.0.1", - "loose-envify": "^1.4.0", - "prop-types": "^15.6.2" - }, - "peerDependencies": { - "react": ">=16.6.0", - "react-dom": ">=16.6.0" - } - }, - "node_modules/react-virtualized-auto-sizer": { - "version": "1.0.15", - "resolved": "https://registry.npmjs.org/react-virtualized-auto-sizer/-/react-virtualized-auto-sizer-1.0.15.tgz", - "integrity": "sha512-01yhkssgHShMiu5W8k+86kgl8lutpl+Uef9KP4wrozXnzZjxWIgj+cH8Qi064oQpKD8myn/JNMzp4tcZNQ3Avg==", - "peerDependencies": { - "react": "^15.3.0 || ^16.0.0-alpha || ^17.0.0 || ^18.0.0-rc", - "react-dom": "^15.3.0 || ^16.0.0-alpha || ^17.0.0 || ^18.0.0-rc" - } - }, - "node_modules/react-window": { - "version": "1.8.9", - "resolved": "https://registry.npmjs.org/react-window/-/react-window-1.8.9.tgz", - "integrity": "sha512-+Eqx/fj1Aa5WnhRfj9dJg4VYATGwIUP2ItwItiJ6zboKWA6EX3lYDAXfGF2hyNqplEprhbtjbipiADEcwQ823Q==", - "dependencies": { - "@babel/runtime": "^7.0.0", - "memoize-one": ">=3.1.1 <6" - }, - "engines": { - "node": ">8.0.0" - }, - "peerDependencies": { - "react": "^15.0.0 || ^16.0.0 || ^17.0.0 || ^18.0.0", - "react-dom": "^15.0.0 || ^16.0.0 || ^17.0.0 || ^18.0.0" - } - }, - "node_modules/read-cache": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/read-cache/-/read-cache-1.0.0.tgz", - "integrity": "sha512-Owdv/Ft7IjOgm/i0xvNDZ1LrRANRfew4b2prF3OWMQLxLfu3bS8FVhCsrSCMK4lR56Y9ya+AThoTpDCTxCmpRA==", - "dependencies": { - "pify": "^2.3.0" - } - }, - "node_modules/readable-stream": { - "version": "3.6.0", - "resolved": "https://registry.npmjs.org/readable-stream/-/readable-stream-3.6.0.tgz", - "integrity": "sha512-BViHy7LKeTz4oNnkcLJ+lVSL6vpiFeX6/d3oSH8zCW7UxP2onchk+vTGB143xuFjHS3deTgkKoXXymXqymiIdA==", - "dependencies": { - "inherits": "^2.0.3", - "string_decoder": "^1.1.1", - "util-deprecate": "^1.0.1" - }, - "engines": { - "node": ">= 6" - } - }, - "node_modules/readable-web-to-node-stream": { - "version": "3.0.2", - "resolved": "https://registry.npmjs.org/readable-web-to-node-stream/-/readable-web-to-node-stream-3.0.2.tgz", - "integrity": "sha512-ePeK6cc1EcKLEhJFt/AebMCLL+GgSKhuygrZ/GLaKZYEecIgIECf4UaUuaByiGtzckwR4ain9VzUh95T1exYGw==", - "dependencies": { - "readable-stream": "^3.6.0" - }, - "engines": { - "node": ">=8" - }, - "funding": { - "type": "github", - "url": "https://github.com/sponsors/Borewit" - } - }, - "node_modules/readdirp": { - "version": "3.6.0", - "resolved": "https://registry.npmjs.org/readdirp/-/readdirp-3.6.0.tgz", - "integrity": "sha512-hOS089on8RduqdbhvQ5Z37A0ESjsqz6qnRcffsMU3495FuTdqSm+7bhJ29JvIOsBDEEnan5DPu9t3To9VRlMzA==", - "dependencies": { - "picomatch": "^2.2.1" - }, - "engines": { - "node": ">=8.10.0" - } - }, - "node_modules/rebass": { - "version": "4.0.7", - "resolved": "https://registry.npmjs.org/rebass/-/rebass-4.0.7.tgz", - "integrity": "sha512-GJot6j6Qcr7jk1QIgf9qBoud75CGRpN8pGcEo98TSp4KNSWV01ZLvGwFKGI35oEBuNs+lpEd3+pnwkQUTSFytg==", - "dependencies": { - "reflexbox": "^4.0.6" - } - }, - "node_modules/rebass/node_modules/@emotion/styled": { - "version": "10.3.0", - "resolved": "https://registry.npmjs.org/@emotion/styled/-/styled-10.3.0.tgz", - "integrity": "sha512-GgcUpXBBEU5ido+/p/mCT2/Xx+Oqmp9JzQRuC+a4lYM4i4LBBn/dWvc0rQ19N9ObA8/T4NWMrPNe79kMBDJqoQ==", - "dependencies": { - "@emotion/styled-base": "^10.3.0", - "babel-plugin-emotion": "^10.0.27" - }, - "peerDependencies": { - "@emotion/core": "^10.0.27", - "react": ">=16.3.0" - } - }, - "node_modules/rebass/node_modules/react": { - "version": "16.14.0", - "resolved": "https://registry.npmjs.org/react/-/react-16.14.0.tgz", - "integrity": "sha512-0X2CImDkJGApiAlcf0ODKIneSwBPhqJawOa5wCtKbu7ZECrmS26NvtSILynQ66cgkT/RJ4LidJOc3bUESwmU8g==", - "peer": true, - "dependencies": { - "loose-envify": "^1.1.0", - "object-assign": "^4.1.1", - "prop-types": "^15.6.2" - }, - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/rebass/node_modules/reflexbox": { - "version": "4.0.6", - "resolved": "https://registry.npmjs.org/reflexbox/-/reflexbox-4.0.6.tgz", - "integrity": "sha512-UNUL4YoJEXAPjRKHuty1tuOk+LV1nDJ2KYViDcH7lYm5yU3AQ+EKNXxPU3E14bQNK/pE09b1hYl+ZKdA94tWLQ==", - "dependencies": { - "@emotion/core": "^10.0.0", - "@emotion/styled": "^10.0.0", - "@styled-system/css": "^5.0.0", - "@styled-system/should-forward-prop": "^5.0.0", - "styled-system": "^5.0.0" - }, - "peerDependencies": { - "react": "^16.8.6" - } - }, - "node_modules/recursive-readdir": { - "version": "2.2.3", - "resolved": "https://registry.npmjs.org/recursive-readdir/-/recursive-readdir-2.2.3.tgz", - "integrity": "sha512-8HrF5ZsXk5FAH9dgsx3BlUer73nIhuj+9OrQwEbLTPOBzGkL1lsFCR01am+v+0m2Cmbs1nP12hLDl5FA7EszKA==", - "dependencies": { - "minimatch": "^3.0.5" - }, - "engines": { - "node": ">=6.0.0" - } - }, - "node_modules/redent": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/redent/-/redent-3.0.0.tgz", - "integrity": "sha512-6tDA8g98We0zd0GvVeMT9arEOnTw9qM03L9cJXaCjrip1OO764RDBLBfrB4cwzNGDj5OA5ioymC9GkizgWJDUg==", - "dependencies": { - "indent-string": "^4.0.0", - "strip-indent": "^3.0.0" - }, - "engines": { - "node": ">=8" - } - }, - "node_modules/reduce-flatten": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/reduce-flatten/-/reduce-flatten-2.0.0.tgz", - "integrity": "sha512-EJ4UNY/U1t2P/2k6oqotuX2Cc3T6nxJwsM0N0asT7dhrtH1ltUxDn4NalSYmPE2rCkVpcf/X6R0wDwcFpzhd4w==", - "dev": true, - "engines": { - "node": ">=6" - } - }, - "node_modules/redux": { - "version": "4.2.1", - "resolved": "https://registry.npmjs.org/redux/-/redux-4.2.1.tgz", - "integrity": "sha512-LAUYz4lc+Do8/g7aeRa8JkyDErK6ekstQaqWQrNRW//MY1TvCEpMtpTWvlQ+FPbWCx+Xixu/6SHt5N0HR+SB4w==", - "dependencies": { - "@babel/runtime": "^7.9.2" - } - }, - "node_modules/redux-thunk": { - "version": "2.4.2", - "resolved": "https://registry.npmjs.org/redux-thunk/-/redux-thunk-2.4.2.tgz", - "integrity": "sha512-+P3TjtnP0k/FEjcBL5FZpoovtvrTNT/UXd4/sluaSyrURlSlhLSzEdfsTBW7WsKB6yPvgd7q/iZPICFjW4o57Q==", - "peerDependencies": { - "redux": "^4" - } - }, - "node_modules/reflect.ownkeys": { - "version": "0.2.0", - "resolved": "https://registry.npmjs.org/reflect.ownkeys/-/reflect.ownkeys-0.2.0.tgz", - "integrity": "sha512-qOLsBKHCpSOFKK1NUOCGC5VyeufB6lEsFe92AL2bhIJsacZS1qdoOZSbPk3MYKuT2cFlRDnulKXuuElIrMjGUg==" - }, - "node_modules/regenerate": { - "version": "1.4.2", - "resolved": "https://registry.npmjs.org/regenerate/-/regenerate-1.4.2.tgz", - "integrity": "sha512-zrceR/XhGYU/d/opr2EKO7aRHUeiBI8qjtfHqADTwZd6Szfy16la6kqD0MIUs5z5hx6AaKa+PixpPrR289+I0A==" - }, - "node_modules/regenerate-unicode-properties": { - "version": "10.0.1", - "resolved": "https://registry.npmjs.org/regenerate-unicode-properties/-/regenerate-unicode-properties-10.0.1.tgz", - "integrity": "sha512-vn5DU6yg6h8hP/2OkQo3K7uVILvY4iu0oI4t3HFa81UPkhGJwkRwM10JEc3upjdhHjs/k8GJY1sRBhk5sr69Bw==", - "dependencies": { - "regenerate": "^1.4.2" - }, - "engines": { - "node": ">=4" - } - }, - "node_modules/regenerator-runtime": { - "version": "0.13.9", - "resolved": "https://registry.npmjs.org/regenerator-runtime/-/regenerator-runtime-0.13.9.tgz", - "integrity": "sha512-p3VT+cOEgxFsRRA9X4lkI1E+k2/CtnKtU4gcxyaCUreilL/vqI6CdZ3wxVUx3UOUg+gnUOQQcRI7BmSI656MYA==" - }, - "node_modules/regenerator-transform": { - "version": "0.15.0", - "resolved": "https://registry.npmjs.org/regenerator-transform/-/regenerator-transform-0.15.0.tgz", - "integrity": "sha512-LsrGtPmbYg19bcPHwdtmXwbW+TqNvtY4riE3P83foeHRroMbH6/2ddFBfab3t7kbzc7v7p4wbkIecHImqt0QNg==", - "dependencies": { - "@babel/runtime": "^7.8.4" - } - }, - "node_modules/regex-parser": { - "version": "2.2.11", - "resolved": "https://registry.npmjs.org/regex-parser/-/regex-parser-2.2.11.tgz", - "integrity": "sha512-jbD/FT0+9MBU2XAZluI7w2OBs1RBi6p9M83nkoZayQXXU9e8Robt69FcZc7wU4eJD/YFTjn1JdCk3rbMJajz8Q==" - }, - "node_modules/regexp.prototype.flags": { - "version": "1.4.3", - "resolved": "https://registry.npmjs.org/regexp.prototype.flags/-/regexp.prototype.flags-1.4.3.tgz", - "integrity": "sha512-fjggEOO3slI6Wvgjwflkc4NFRCTZAu5CnNfBd5qOMYhWdn67nJBBu34/TkD++eeFmd8C9r9jfXJ27+nSiRkSUA==", - "dependencies": { - "call-bind": "^1.0.2", - "define-properties": "^1.1.3", - "functions-have-names": "^1.2.2" - }, - "engines": { - "node": ">= 0.4" - }, - "funding": { - "url": "https://github.com/sponsors/ljharb" - } - }, - "node_modules/regexpp": { - "version": "3.2.0", - "resolved": "https://registry.npmjs.org/regexpp/-/regexpp-3.2.0.tgz", - "integrity": "sha512-pq2bWo9mVD43nbts2wGv17XLiNLya+GklZ8kaDLV2Z08gDCsGpnKn9BFMepvWuHCbyVvY7J5o5+BVvoQbmlJLg==", - "engines": { - "node": ">=8" - }, - "funding": { - "url": "https://github.com/sponsors/mysticatea" - } - }, - "node_modules/regexpu-core": { - "version": "5.1.0", - "resolved": "https://registry.npmjs.org/regexpu-core/-/regexpu-core-5.1.0.tgz", - "integrity": "sha512-bb6hk+xWd2PEOkj5It46A16zFMs2mv86Iwpdu94la4S3sJ7C973h2dHpYKwIBGaWSO7cIRJ+UX0IeMaWcO4qwA==", - "dependencies": { - "regenerate": "^1.4.2", - "regenerate-unicode-properties": "^10.0.1", - "regjsgen": "^0.6.0", - "regjsparser": "^0.8.2", - "unicode-match-property-ecmascript": "^2.0.0", - "unicode-match-property-value-ecmascript": "^2.0.0" - }, - "engines": { - "node": ">=4" - } - }, - "node_modules/regjsgen": { - "version": "0.6.0", - "resolved": "https://registry.npmjs.org/regjsgen/-/regjsgen-0.6.0.tgz", - "integrity": "sha512-ozE883Uigtqj3bx7OhL1KNbCzGyW2NQZPl6Hs09WTvCuZD5sTI4JY58bkbQWa/Y9hxIsvJ3M8Nbf7j54IqeZbA==" - }, - "node_modules/regjsparser": { - "version": "0.8.4", - "resolved": "https://registry.npmjs.org/regjsparser/-/regjsparser-0.8.4.tgz", - "integrity": "sha512-J3LABycON/VNEu3abOviqGHuB/LOtOQj8SKmfP9anY5GfAVw/SPjwzSjxGjbZXIxbGfqTHtJw58C2Li/WkStmA==", - "dependencies": { - "jsesc": "~0.5.0" - }, - "bin": { - "regjsparser": "bin/parser" - } - }, - "node_modules/regjsparser/node_modules/jsesc": { - "version": "0.5.0", - "resolved": "https://registry.npmjs.org/jsesc/-/jsesc-0.5.0.tgz", - "integrity": "sha512-uZz5UnB7u4T9LvwmFqXii7pZSouaRPorGs5who1Ip7VO0wxanFvBL7GkM6dTHlgX+jhBApRetaWpnDabOeTcnA==", - "bin": { - "jsesc": "bin/jsesc" - } - }, - "node_modules/relateurl": { - "version": "0.2.7", - "resolved": "https://registry.npmjs.org/relateurl/-/relateurl-0.2.7.tgz", - "integrity": "sha512-G08Dxvm4iDN3MLM0EsP62EDV9IuhXPR6blNz6Utcp7zyV3tr4HVNINt6MpaRWbxoOHT3Q7YN2P+jaHX8vUbgog==", - "engines": { - "node": ">= 0.10" - } - }, - "node_modules/relative-luminance": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/relative-luminance/-/relative-luminance-2.0.1.tgz", - "integrity": "sha512-wFuITNthJilFPwkK7gNJcULxXBcfFZvZORsvdvxeOdO44wCeZnuQkf3nFFzOR/dpJNxYsdRZJLsepWbyKhnMww==", - "dependencies": { - "esm": "^3.0.84" - } - }, - "node_modules/renderkid": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/renderkid/-/renderkid-3.0.0.tgz", - "integrity": "sha512-q/7VIQA8lmM1hF+jn+sFSPWGlMkSAeNYcPLmDQx2zzuiDfaLrOmumR8iaUKlenFgh0XRPIUeSPlH3A+AW3Z5pg==", - "dependencies": { - "css-select": "^4.1.3", - "dom-converter": "^0.2.0", - "htmlparser2": "^6.1.0", - "lodash": "^4.17.21", - "strip-ansi": "^6.0.1" - } - }, - "node_modules/request": { - "version": "2.88.2", - "resolved": "https://registry.npmjs.org/request/-/request-2.88.2.tgz", - "integrity": "sha512-MsvtOrfG9ZcrOwAW+Qi+F6HbD0CWXEh9ou77uOb7FM2WPhwT7smM833PzanhJLsgXjN89Ir6V2PczXNnMpwKhw==", - "deprecated": "request has been deprecated, see https://github.com/request/request/issues/3142", - "dependencies": { - "aws-sign2": "~0.7.0", - "aws4": "^1.8.0", - "caseless": "~0.12.0", - "combined-stream": "~1.0.6", - "extend": "~3.0.2", - "forever-agent": "~0.6.1", - "form-data": "~2.3.2", - "har-validator": "~5.1.3", - "http-signature": "~1.2.0", - "is-typedarray": "~1.0.0", - "isstream": "~0.1.2", - "json-stringify-safe": "~5.0.1", - "mime-types": "~2.1.19", - "oauth-sign": "~0.9.0", - "performance-now": "^2.1.0", - "qs": "~6.5.2", - "safe-buffer": "^5.1.2", - "tough-cookie": "~2.5.0", - "tunnel-agent": "^0.6.0", - "uuid": "^3.3.2" - }, - "engines": { - "node": ">= 6" - } - }, - "node_modules/request/node_modules/form-data": { - "version": "2.3.3", - "resolved": "https://registry.npmjs.org/form-data/-/form-data-2.3.3.tgz", - "integrity": "sha512-1lLKB2Mu3aGP1Q/2eCOx0fNbRMe7XdwktwOruhfqqd0rIJWwN4Dh+E3hrPSlDCXnSR7UtZ1N38rVXm+6+MEhJQ==", - "dependencies": { - "asynckit": "^0.4.0", - "combined-stream": "^1.0.6", - "mime-types": "^2.1.12" - }, - "engines": { - "node": ">= 0.12" - } - }, - "node_modules/request/node_modules/qs": { - "version": "6.5.3", - "resolved": "https://registry.npmjs.org/qs/-/qs-6.5.3.tgz", - "integrity": "sha512-qxXIEh4pCGfHICj1mAJQ2/2XVZkjCDTcEgfoSQxc/fYivUZxTkk7L3bDBJSoNrEzXI17oUO5Dp07ktqE5KzczA==", - "engines": { - "node": ">=0.6" - } - }, - "node_modules/request/node_modules/tough-cookie": { - "version": "2.5.0", - "resolved": "https://registry.npmjs.org/tough-cookie/-/tough-cookie-2.5.0.tgz", - "integrity": "sha512-nlLsUzgm1kfLXSXfRZMc1KLAugd4hqJHDTvc2hDIwS3mZAfMEuMbc03SujMF+GEcpaX/qboeycw6iO8JwVv2+g==", - "dependencies": { - "psl": "^1.1.28", - "punycode": "^2.1.1" - }, - "engines": { - "node": ">=0.8" - } - }, - "node_modules/request/node_modules/uuid": { - "version": "3.4.0", - "resolved": "https://registry.npmjs.org/uuid/-/uuid-3.4.0.tgz", - "integrity": "sha512-HjSDRw6gZE5JMggctHBcjVak08+KEVhSIiDzFnT9S9aegmp85S/bReBVTb4QTFaRNptJ9kuYaNhnbNEOkbKb/A==", - "deprecated": "Please upgrade to version 7 or higher. Older versions may use Math.random() in certain circumstances, which is known to be problematic. See https://v8.dev/blog/math-random for details.", - "bin": { - "uuid": "bin/uuid" - } - }, - "node_modules/require-directory": { - "version": "2.1.1", - "resolved": "https://registry.npmjs.org/require-directory/-/require-directory-2.1.1.tgz", - "integrity": "sha512-fGxEI7+wsG9xrvdjsrlmL22OMTTiHRwAMroiEeMgq8gzoLC/PQr7RsRDSTLUg/bZAZtF+TVIkHc6/4RIKrui+Q==", - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/require-from-string": { - "version": "2.0.2", - "resolved": "https://registry.npmjs.org/require-from-string/-/require-from-string-2.0.2.tgz", - "integrity": "sha512-Xf0nWe6RseziFMu+Ap9biiUbmplq6S9/p+7w7YXP/JBHhrUDDUhwa+vANyubuqfZWTveU//DYVGsDG7RKL/vEw==", - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/require-main-filename": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/require-main-filename/-/require-main-filename-2.0.0.tgz", - "integrity": "sha512-NKN5kMDylKuldxYLSUfrbo5Tuzh4hd+2E8NPPX02mZtn1VuREQToYe/ZdlJy+J3uCpfaiGF05e7B8W0iXbQHmg==" - }, - "node_modules/requires-port": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/requires-port/-/requires-port-1.0.0.tgz", - "integrity": "sha512-KigOCHcocU3XODJxsu8i/j8T9tzT4adHiecwORRQ0ZZFcp7ahwXuRU1m+yuO90C5ZUyGeGfocHDI14M3L3yDAQ==" - }, - "node_modules/reselect": { - "version": "4.1.8", - "resolved": "https://registry.npmjs.org/reselect/-/reselect-4.1.8.tgz", - "integrity": "sha512-ab9EmR80F/zQTMNeneUr4cv+jSwPJgIlvEmVwLerwrWVbpLlBuls9XHzIeTFy4cegU2NHBp3va0LKOzU5qFEYQ==" - }, - "node_modules/resize-observer-polyfill": { - "version": "1.5.1", - "resolved": "https://registry.npmjs.org/resize-observer-polyfill/-/resize-observer-polyfill-1.5.1.tgz", - "integrity": "sha512-LwZrotdHOo12nQuZlHEmtuXdqGoOD0OhaxopaNFxWzInpEgaLWoVuAMbTzixuosCx2nEG58ngzW3vxdWoxIgdg==" - }, - "node_modules/resolve": { - "version": "1.22.1", - "resolved": "https://registry.npmjs.org/resolve/-/resolve-1.22.1.tgz", - "integrity": "sha512-nBpuuYuY5jFsli/JIs1oldw6fOQCBioohqWZg/2hiaOybXOft4lonv85uDOKXdf8rhyK159cxU5cDcK/NKk8zw==", - "dependencies": { - "is-core-module": "^2.9.0", - "path-parse": "^1.0.7", - "supports-preserve-symlinks-flag": "^1.0.0" - }, - "bin": { - "resolve": "bin/resolve" - }, - "funding": { - "url": "https://github.com/sponsors/ljharb" - } - }, - "node_modules/resolve-alpn": { - "version": "1.2.1", - "resolved": "https://registry.npmjs.org/resolve-alpn/-/resolve-alpn-1.2.1.tgz", - "integrity": "sha512-0a1F4l73/ZFZOakJnQ3FvkJ2+gSTQWz/r2KE5OdDY0TxPm5h4GkqkWWfM47T7HsbnOtcJVEF4epCVy6u7Q3K+g==" - }, - "node_modules/resolve-cwd": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/resolve-cwd/-/resolve-cwd-3.0.0.tgz", - "integrity": "sha512-OrZaX2Mb+rJCpH/6CpSqt9xFVpN++x01XnN2ie9g6P5/3xelLAkXWVADpdz1IHD/KFfEXyE6V0U01OQ3UO2rEg==", - "dependencies": { - "resolve-from": "^5.0.0" - }, - "engines": { - "node": ">=8" - } - }, - "node_modules/resolve-from": { - "version": "5.0.0", - "resolved": "https://registry.npmjs.org/resolve-from/-/resolve-from-5.0.0.tgz", - "integrity": "sha512-qYg9KP24dD5qka9J47d0aVky0N+b4fTU89LN9iDnjB5waksiC49rvMB0PrUJQGoTmH50XPiqOvAjDfaijGxYZw==", - "engines": { - "node": ">=8" - } - }, - "node_modules/resolve-url-loader": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/resolve-url-loader/-/resolve-url-loader-4.0.0.tgz", - "integrity": "sha512-05VEMczVREcbtT7Bz+C+96eUO5HDNvdthIiMB34t7FcF8ehcu4wC0sSgPUubs3XW2Q3CNLJk/BJrCU9wVRymiA==", - "dependencies": { - "adjust-sourcemap-loader": "^4.0.0", - "convert-source-map": "^1.7.0", - "loader-utils": "^2.0.0", - "postcss": "^7.0.35", - "source-map": "0.6.1" - }, - "engines": { - "node": ">=8.9" - }, - "peerDependencies": { - "rework": "1.0.1", - "rework-visit": "1.0.0" - }, - "peerDependenciesMeta": { - "rework": { - "optional": true - }, - "rework-visit": { - "optional": true - } - } - }, - "node_modules/resolve-url-loader/node_modules/picocolors": { - "version": "0.2.1", - "resolved": "https://registry.npmjs.org/picocolors/-/picocolors-0.2.1.tgz", - "integrity": "sha512-cMlDqaLEqfSaW8Z7N5Jw+lyIW869EzT73/F5lhtY9cLGoVxSXznfgfXMO0Z5K0o0Q2TkTXq+0KFsdnSe3jDViA==" - }, - "node_modules/resolve-url-loader/node_modules/postcss": { - "version": "7.0.39", - "resolved": "https://registry.npmjs.org/postcss/-/postcss-7.0.39.tgz", - "integrity": "sha512-yioayjNbHn6z1/Bywyb2Y4s3yvDAeXGOyxqD+LnVOinq6Mdmd++SW2wUNVzavyyHxd6+DxzWGIuosg6P1Rj8uA==", - "dependencies": { - "picocolors": "^0.2.1", - "source-map": "^0.6.1" - }, - "engines": { - "node": ">=6.0.0" - }, - "funding": { - "type": "opencollective", - "url": "https://opencollective.com/postcss/" - } - }, - "node_modules/resolve-url-loader/node_modules/source-map": { - "version": "0.6.1", - "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz", - "integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==", - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/resolve.exports": { - "version": "1.1.0", - "resolved": "https://registry.npmjs.org/resolve.exports/-/resolve.exports-1.1.0.tgz", - "integrity": "sha512-J1l+Zxxp4XK3LUDZ9m60LRJF/mAe4z6a4xyabPHk7pvK5t35dACV32iIjJDFeWZFfZlO29w6SZ67knR0tHzJtQ==", - "engines": { - "node": ">=10" - } - }, - "node_modules/responselike": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/responselike/-/responselike-2.0.1.tgz", - "integrity": "sha512-4gl03wn3hj1HP3yzgdI7d3lCkF95F21Pz4BPGvKHinyQzALR5CapwC8yIi0Rh58DEMQ/SguC03wFj2k0M/mHhw==", - "dependencies": { - "lowercase-keys": "^2.0.0" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, - "node_modules/responselike/node_modules/lowercase-keys": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/lowercase-keys/-/lowercase-keys-2.0.0.tgz", - "integrity": "sha512-tqNXrS78oMOE73NMxK4EMLQsQowWf8jKooH9g7xPavRT706R6bkQJ6DY2Te7QukaZsulxa30wQ7bk0pm4XiHmA==", - "engines": { - "node": ">=8" - } - }, - "node_modules/retry": { - "version": "0.13.1", - "resolved": "https://registry.npmjs.org/retry/-/retry-0.13.1.tgz", - "integrity": "sha512-XQBQ3I8W1Cge0Seh+6gjj03LbmRFWuoszgK9ooCpwYIrhhoO80pfq4cUkU5DkknwfOfFteRwlZ56PYOGYyFWdg==", - "engines": { - "node": ">= 4" - } - }, - "node_modules/reusify": { - "version": "1.0.4", - "resolved": "https://registry.npmjs.org/reusify/-/reusify-1.0.4.tgz", - "integrity": "sha512-U9nH88a3fc/ekCF1l0/UP1IosiuIjyTh7hBvXVMHYgVcfGvt897Xguj2UOLDeI5BG2m7/uwyaLVT6fbtCwTyzw==", - "engines": { - "iojs": ">=1.0.0", - "node": ">=0.10.0" - } - }, - "node_modules/rimraf": { - "version": "3.0.2", - "resolved": "https://registry.npmjs.org/rimraf/-/rimraf-3.0.2.tgz", - "integrity": "sha512-JZkJMZkAGFFPP2YqXZXPbMlMBgsxzE8ILs4lMIX/2o0L9UBw9O/Y3o6wFw/i9YLapcUJWwqbi3kdxIPdC62TIA==", - "dependencies": { - "glob": "^7.1.3" - }, - "bin": { - "rimraf": "bin.js" - }, - "funding": { - "url": "https://github.com/sponsors/isaacs" - } - }, - "node_modules/ripemd160": { - "version": "2.0.2", - "resolved": "https://registry.npmjs.org/ripemd160/-/ripemd160-2.0.2.tgz", - "integrity": "sha512-ii4iagi25WusVoiC4B4lq7pbXfAp3D9v5CwfkY33vffw2+pkDjY1D8GaN7spsxvCSx8dkPqOZCEZyfxcmJG2IA==", - "dependencies": { - "hash-base": "^3.0.0", - "inherits": "^2.0.1" - } - }, - "node_modules/rlp": { - "version": "2.2.7", - "resolved": "https://registry.npmjs.org/rlp/-/rlp-2.2.7.tgz", - "integrity": "sha512-d5gdPmgQ0Z+AklL2NVXr/IoSjNZFfTVvQWzL/AM2AOcSzYP2xjlb0AC8YyCLc41MSNf6P6QVtjgPdmVtzb+4lQ==", - "dependencies": { - "bn.js": "^5.2.0" - }, - "bin": { - "rlp": "bin/rlp" - } - }, - "node_modules/rollup": { - "version": "2.75.7", - "resolved": "https://registry.npmjs.org/rollup/-/rollup-2.75.7.tgz", - "integrity": "sha512-VSE1iy0eaAYNCxEXaleThdFXqZJ42qDBatAwrfnPlENEZ8erQ+0LYX4JXOLPceWfZpV1VtZwZ3dFCuOZiSyFtQ==", - "bin": { - "rollup": "dist/bin/rollup" - }, - "engines": { - "node": ">=10.0.0" - }, - "optionalDependencies": { - "fsevents": "~2.3.2" - } - }, - "node_modules/rollup-plugin-terser": { - "version": "7.0.2", - "resolved": "https://registry.npmjs.org/rollup-plugin-terser/-/rollup-plugin-terser-7.0.2.tgz", - "integrity": "sha512-w3iIaU4OxcF52UUXiZNsNeuXIMDvFrr+ZXK6bFZ0Q60qyVfq4uLptoS4bbq3paG3x216eQllFZX7zt6TIImguQ==", - "dependencies": { - "@babel/code-frame": "^7.10.4", - "jest-worker": "^26.2.1", - "serialize-javascript": "^4.0.0", - "terser": "^5.0.0" - }, - "peerDependencies": { - "rollup": "^2.0.0" - } - }, - "node_modules/rollup-plugin-terser/node_modules/has-flag": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz", - "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==", - "engines": { - "node": ">=8" - } - }, - "node_modules/rollup-plugin-terser/node_modules/jest-worker": { - "version": "26.6.2", - "resolved": "https://registry.npmjs.org/jest-worker/-/jest-worker-26.6.2.tgz", - "integrity": "sha512-KWYVV1c4i+jbMpaBC+U++4Va0cp8OisU185o73T1vo99hqi7w8tSJfUXYswwqqrjzwxa6KpRK54WhPvwf5w6PQ==", - "dependencies": { - "@types/node": "*", - "merge-stream": "^2.0.0", - "supports-color": "^7.0.0" - }, - "engines": { - "node": ">= 10.13.0" - } - }, - "node_modules/rollup-plugin-terser/node_modules/serialize-javascript": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/serialize-javascript/-/serialize-javascript-4.0.0.tgz", - "integrity": "sha512-GaNA54380uFefWghODBWEGisLZFj00nS5ACs6yHa9nLqlLpVLO8ChDGeKRjZnV4Nh4n0Qi7nhYZD/9fCPzEqkw==", - "dependencies": { - "randombytes": "^2.1.0" - } - }, - "node_modules/rollup-plugin-terser/node_modules/supports-color": { - "version": "7.2.0", - "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", - "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", - "dependencies": { - "has-flag": "^4.0.0" - }, - "engines": { - "node": ">=8" - } - }, - "node_modules/run-parallel": { - "version": "1.2.0", - "resolved": "https://registry.npmjs.org/run-parallel/-/run-parallel-1.2.0.tgz", - "integrity": "sha512-5l4VyZR86LZ/lDxZTR6jqL8AFE2S0IFLMP26AbjsLVADxHdhB/c0GUsH+y39UfCi3dzz8OlQuPmnaJOMoDHQBA==", - "funding": [ - { - "type": "github", - "url": "https://github.com/sponsors/feross" - }, - { - "type": "patreon", - "url": "https://www.patreon.com/feross" - }, - { - "type": "consulting", - "url": "https://feross.org/support" - } - ], - "dependencies": { - "queue-microtask": "^1.2.2" - } - }, - "node_modules/run-parallel-limit": { - "version": "1.1.0", - "resolved": "https://registry.npmjs.org/run-parallel-limit/-/run-parallel-limit-1.1.0.tgz", - "integrity": "sha512-jJA7irRNM91jaKc3Hcl1npHsFLOXOoTkPCUL1JEa1R82O2miplXXRaGdjW/KM/98YQWDhJLiSs793CnXfblJUw==", - "funding": [ - { - "type": "github", - "url": "https://github.com/sponsors/feross" - }, - { - "type": "patreon", - "url": "https://www.patreon.com/feross" - }, - { - "type": "consulting", - "url": "https://feross.org/support" - } - ], - "peer": true, - "dependencies": { - "queue-microtask": "^1.2.2" - } - }, - "node_modules/rustbn.js": { - "version": "0.2.0", - "resolved": "https://registry.npmjs.org/rustbn.js/-/rustbn.js-0.2.0.tgz", - "integrity": "sha512-4VlvkRUuCJvr2J6Y0ImW7NvTCriMi7ErOAqWk1y69vAdoNIzCF3yPmgeNzx+RQTLEDFq5sHfscn1MwHxP9hNfA==", - "peer": true - }, - "node_modules/safe-buffer": { - "version": "5.1.2", - "resolved": "https://registry.npmjs.org/safe-buffer/-/safe-buffer-5.1.2.tgz", - "integrity": "sha512-Gd2UZBJDkXlY7GbJxfsE8/nvKkUEU1G38c1siN6QP6a9PT9MmHB8GnpscSmMJSoF8LOIrt8ud/wPtojys4G6+g==" - }, - "node_modules/safe-json-stringify": { - "version": "1.2.0", - "resolved": "https://registry.npmjs.org/safe-json-stringify/-/safe-json-stringify-1.2.0.tgz", - "integrity": "sha512-gH8eh2nZudPQO6TytOvbxnuhYBOvDBBLW52tz5q6X58lJcd/tkmqFR+5Z9adS8aJtURSXWThWy/xJtJwixErvg==", - "optional": true - }, - "node_modules/safe-regex-test": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/safe-regex-test/-/safe-regex-test-1.0.0.tgz", - "integrity": "sha512-JBUUzyOgEwXQY1NuPtvcj/qcBDbDmEvWufhlnXZIm75DEHp+afM1r1ujJpJsV/gSM4t59tpDyPi1sd6ZaPFfsA==", - "dependencies": { - "call-bind": "^1.0.2", - "get-intrinsic": "^1.1.3", - "is-regex": "^1.1.4" - }, - "funding": { - "url": "https://github.com/sponsors/ljharb" - } - }, - "node_modules/safer-buffer": { - "version": "2.1.2", - "resolved": "https://registry.npmjs.org/safer-buffer/-/safer-buffer-2.1.2.tgz", - "integrity": "sha512-YZo3K82SD7Riyi0E1EQPojLz7kpepnSQI9IyPbHHg1XXXevb5dJI7tpyN2ADxGcQbHG7vcyRHk0cbwqcQriUtg==" - }, - "node_modules/sanitize.css": { - "version": "13.0.0", - "resolved": "https://registry.npmjs.org/sanitize.css/-/sanitize.css-13.0.0.tgz", - "integrity": "sha512-ZRwKbh/eQ6w9vmTjkuG0Ioi3HBwPFce0O+v//ve+aOq1oeCy7jMV2qzzAlpsNuqpqCBjjriM1lbtZbF/Q8jVyA==" - }, - "node_modules/sass-loader": { - "version": "12.6.0", - "resolved": "https://registry.npmjs.org/sass-loader/-/sass-loader-12.6.0.tgz", - "integrity": "sha512-oLTaH0YCtX4cfnJZxKSLAyglED0naiYfNG1iXfU5w1LNZ+ukoA5DtyDIN5zmKVZwYNJP4KRc5Y3hkWga+7tYfA==", - "dependencies": { - "klona": "^2.0.4", - "neo-async": "^2.6.2" - }, - "engines": { - "node": ">= 12.13.0" - }, - "funding": { - "type": "opencollective", - "url": "https://opencollective.com/webpack" - }, - "peerDependencies": { - "fibers": ">= 3.1.0", - "node-sass": "^4.0.0 || ^5.0.0 || ^6.0.0 || ^7.0.0", - "sass": "^1.3.0", - "sass-embedded": "*", - "webpack": "^5.0.0" - }, - "peerDependenciesMeta": { - "fibers": { - "optional": true - }, - "node-sass": { - "optional": true - }, - "sass": { - "optional": true - }, - "sass-embedded": { - "optional": true - } - } - }, - "node_modules/sax": { - "version": "1.2.4", - "resolved": "https://registry.npmjs.org/sax/-/sax-1.2.4.tgz", - "integrity": "sha512-NqVDv9TpANUjFm0N8uM5GxL36UgKi9/atZw+x7YFnQ8ckwFGKrl4xX4yWtrey3UJm5nP1kUbnYgLopqWNSRhWw==" - }, - "node_modules/saxes": { - "version": "5.0.1", - "resolved": "https://registry.npmjs.org/saxes/-/saxes-5.0.1.tgz", - "integrity": "sha512-5LBh1Tls8c9xgGjw3QrMwETmTMVk0oFgvrFSvWx62llR2hcEInrKNZ2GZCCuuy2lvWrdl5jhbpeqc5hRYKFOcw==", - "dependencies": { - "xmlchars": "^2.2.0" - }, - "engines": { - "node": ">=10" - } - }, - "node_modules/scheduler": { - "version": "0.23.0", - "resolved": "https://registry.npmjs.org/scheduler/-/scheduler-0.23.0.tgz", - "integrity": "sha512-CtuThmgHNg7zIZWAXi3AsyIzA3n4xx7aNyjwC2VJldO2LMVDhFK+63xGqq6CsJH4rTAt6/M+N4GhZiDYPx9eUw==", - "dependencies": { - "loose-envify": "^1.1.0" - } - }, - "node_modules/schema-utils": { - "version": "3.1.2", - "resolved": "https://registry.npmjs.org/schema-utils/-/schema-utils-3.1.2.tgz", - "integrity": "sha512-pvjEHOgWc9OWA/f/DE3ohBWTD6EleVLf7iFUkoSwAxttdBhB9QUebQgxER2kWueOvRJXPHNnyrvvh9eZINB8Eg==", - "dependencies": { - "@types/json-schema": "^7.0.8", - "ajv": "^6.12.5", - "ajv-keywords": "^3.5.2" - }, - "engines": { - "node": ">= 10.13.0" - }, - "funding": { - "type": "opencollective", - "url": "https://opencollective.com/webpack" - } - }, - "node_modules/scrypt-js": { - "version": "3.0.1", - "resolved": "https://registry.npmjs.org/scrypt-js/-/scrypt-js-3.0.1.tgz", - "integrity": "sha512-cdwTTnqPu0Hyvf5in5asVdZocVDTNRmR7XEcJuIzMjJeSHybHl7vpB66AzwTaIg6CLSbtjcxc8fqcySfnTkccA==" - }, - "node_modules/secp256k1": { - "version": "4.0.3", - "resolved": "https://registry.npmjs.org/secp256k1/-/secp256k1-4.0.3.tgz", - "integrity": "sha512-NLZVf+ROMxwtEj3Xa562qgv2BK5e2WNmXPiOdVIPLgs6lyTzMvBq0aWTYMI5XCP9jZMVKOcqZLw/Wc4vDkuxhA==", - "hasInstallScript": true, - "dependencies": { - "elliptic": "^6.5.4", - "node-addon-api": "^2.0.0", - "node-gyp-build": "^4.2.0" - }, - "engines": { - "node": ">=10.0.0" - } - }, - "node_modules/select-hose": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/select-hose/-/select-hose-2.0.0.tgz", - "integrity": "sha512-mEugaLK+YfkijB4fx0e6kImuJdCIt2LxCRcbEYPqRGCs4F2ogyfZU5IAZRdjCP8JPq2AtdNoC/Dux63d9Kiryg==" - }, - "node_modules/selfsigned": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/selfsigned/-/selfsigned-2.0.1.tgz", - "integrity": "sha512-LmME957M1zOsUhG+67rAjKfiWFox3SBxE/yymatMZsAx+oMrJ0YQ8AToOnyCm7xbeg2ep37IHLxdu0o2MavQOQ==", - "dependencies": { - "node-forge": "^1" - }, - "engines": { - "node": ">=10" - } - }, - "node_modules/semver": { - "version": "7.3.7", - "resolved": "https://registry.npmjs.org/semver/-/semver-7.3.7.tgz", - "integrity": "sha512-QlYTucUYOews+WeEujDoEGziz4K6c47V/Bd+LjSSYcA94p+DmINdf7ncaUinThfvZyu13lN9OY1XDxt8C0Tw0g==", - "dependencies": { - "lru-cache": "^6.0.0" - }, - "bin": { - "semver": "bin/semver.js" - }, - "engines": { - "node": ">=10" - } - }, - "node_modules/send": { - "version": "0.18.0", - "resolved": "https://registry.npmjs.org/send/-/send-0.18.0.tgz", - "integrity": "sha512-qqWzuOjSFOuqPjFe4NOsMLafToQQwBSOEpS+FwEt3A2V3vKubTquT3vmLTQpFgMXp8AlFWFuP1qKaJZOtPpVXg==", - "dependencies": { - "debug": "2.6.9", - "depd": "2.0.0", - "destroy": "1.2.0", - "encodeurl": "~1.0.2", - "escape-html": "~1.0.3", - "etag": "~1.8.1", - "fresh": "0.5.2", - "http-errors": "2.0.0", - "mime": "1.6.0", - "ms": "2.1.3", - "on-finished": "2.4.1", - "range-parser": "~1.2.1", - "statuses": "2.0.1" - }, - "engines": { - "node": ">= 0.8.0" - } - }, - "node_modules/send/node_modules/debug": { - "version": "2.6.9", - "resolved": "https://registry.npmjs.org/debug/-/debug-2.6.9.tgz", - "integrity": "sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA==", - "dependencies": { - "ms": "2.0.0" - } - }, - "node_modules/send/node_modules/debug/node_modules/ms": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/ms/-/ms-2.0.0.tgz", - "integrity": "sha512-Tpp60P6IUJDTuOq/5Z8cdskzJujfwqfOTkrwIwj7IRISpnkJnT6SyJ4PCPnGMoFjC9ddhal5KVIYtAt97ix05A==" - }, - "node_modules/send/node_modules/ms": { - "version": "2.1.3", - "resolved": "https://registry.npmjs.org/ms/-/ms-2.1.3.tgz", - "integrity": "sha512-6FlzubTLZG3J2a/NVCAleEhjzq5oxgHyaCU9yYXvcLsvoVaHJq/s5xXI6/XXP6tz7R9xAOtHnSO/tXtF3WRTlA==" - }, - "node_modules/serialize-javascript": { - "version": "6.0.1", - "resolved": "https://registry.npmjs.org/serialize-javascript/-/serialize-javascript-6.0.1.tgz", - "integrity": "sha512-owoXEFjWRllis8/M1Q+Cw5k8ZH40e3zhp/ovX+Xr/vi1qj6QesbyXXViFbpNvWvPNAD62SutwEXavefrLJWj7w==", - "dependencies": { - "randombytes": "^2.1.0" - } - }, - "node_modules/serve-index": { - "version": "1.9.1", - "resolved": "https://registry.npmjs.org/serve-index/-/serve-index-1.9.1.tgz", - "integrity": "sha512-pXHfKNP4qujrtteMrSBb0rc8HJ9Ms/GrXwcUtUtD5s4ewDJI8bT3Cz2zTVRMKtri49pLx2e0Ya8ziP5Ya2pZZw==", - "dependencies": { - "accepts": "~1.3.4", - "batch": "0.6.1", - "debug": "2.6.9", - "escape-html": "~1.0.3", - "http-errors": "~1.6.2", - "mime-types": "~2.1.17", - "parseurl": "~1.3.2" - }, - "engines": { - "node": ">= 0.8.0" - } - }, - "node_modules/serve-index/node_modules/debug": { - "version": "2.6.9", - "resolved": "https://registry.npmjs.org/debug/-/debug-2.6.9.tgz", - "integrity": "sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA==", - "dependencies": { - "ms": "2.0.0" - } - }, - "node_modules/serve-index/node_modules/depd": { - "version": "1.1.2", - "resolved": "https://registry.npmjs.org/depd/-/depd-1.1.2.tgz", - "integrity": "sha512-7emPTl6Dpo6JRXOXjLRxck+FlLRX5847cLKEn00PLAgc3g2hTZZgr+e4c2v6QpSmLeFP3n5yUo7ft6avBK/5jQ==", - "engines": { - "node": ">= 0.6" - } - }, - "node_modules/serve-index/node_modules/http-errors": { - "version": "1.6.3", - "resolved": "https://registry.npmjs.org/http-errors/-/http-errors-1.6.3.tgz", - "integrity": "sha512-lks+lVC8dgGyh97jxvxeYTWQFvh4uw4yC12gVl63Cg30sjPX4wuGcdkICVXDAESr6OJGjqGA8Iz5mkeN6zlD7A==", - "dependencies": { - "depd": "~1.1.2", - "inherits": "2.0.3", - "setprototypeof": "1.1.0", - "statuses": ">= 1.4.0 < 2" - }, - "engines": { - "node": ">= 0.6" - } - }, - "node_modules/serve-index/node_modules/inherits": { - "version": "2.0.3", - "resolved": "https://registry.npmjs.org/inherits/-/inherits-2.0.3.tgz", - "integrity": "sha512-x00IRNXNy63jwGkJmzPigoySHbaqpNuzKbBOmzK+g2OdZpQ9w+sxCN+VSB3ja7IAge2OP2qpfxTjeNcyjmW1uw==" - }, - "node_modules/serve-index/node_modules/ms": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/ms/-/ms-2.0.0.tgz", - "integrity": "sha512-Tpp60P6IUJDTuOq/5Z8cdskzJujfwqfOTkrwIwj7IRISpnkJnT6SyJ4PCPnGMoFjC9ddhal5KVIYtAt97ix05A==" - }, - "node_modules/serve-index/node_modules/setprototypeof": { - "version": "1.1.0", - "resolved": "https://registry.npmjs.org/setprototypeof/-/setprototypeof-1.1.0.tgz", - "integrity": "sha512-BvE/TwpZX4FXExxOxZyRGQQv651MSwmWKZGqvmPcRIjDqWub67kTKuIMx43cZZrS/cBBzwBcNDWoFxt2XEFIpQ==" - }, - "node_modules/serve-index/node_modules/statuses": { - "version": "1.5.0", - "resolved": "https://registry.npmjs.org/statuses/-/statuses-1.5.0.tgz", - "integrity": "sha512-OpZ3zP+jT1PI7I8nemJX4AKmAX070ZkYPVWV/AaKTJl+tXCTGyVdC1a4SL8RUQYEwk/f34ZX8UTykN68FwrqAA==", - "engines": { - "node": ">= 0.6" - } - }, - "node_modules/serve-static": { - "version": "1.15.0", - "resolved": "https://registry.npmjs.org/serve-static/-/serve-static-1.15.0.tgz", - "integrity": "sha512-XGuRDNjXUijsUL0vl6nSD7cwURuzEgglbOaFuZM9g3kwDXOWVTck0jLzjPzGD+TazWbboZYu52/9/XPdUgne9g==", - "dependencies": { - "encodeurl": "~1.0.2", - "escape-html": "~1.0.3", - "parseurl": "~1.3.3", - "send": "0.18.0" - }, - "engines": { - "node": ">= 0.8.0" - } - }, - "node_modules/servify": { - "version": "0.1.12", - "resolved": "https://registry.npmjs.org/servify/-/servify-0.1.12.tgz", - "integrity": "sha512-/xE6GvsKKqyo1BAY+KxOWXcLpPsUUyji7Qg3bVD7hh1eRze5bR1uYiuDA/k3Gof1s9BTzQZEJK8sNcNGFIzeWw==", - "dependencies": { - "body-parser": "^1.16.0", - "cors": "^2.8.1", - "express": "^4.14.0", - "request": "^2.79.0", - "xhr": "^2.3.3" - }, - "engines": { - "node": ">=6" - } - }, - "node_modules/set-blocking": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/set-blocking/-/set-blocking-2.0.0.tgz", - "integrity": "sha512-KiKBS8AnWGEyLzofFfmvKwpdPzqiy16LvQfK3yv/fVH7Bj13/wl3JSR1J+rfgRE9q7xUJK4qvgS8raSOeLUehw==" - }, - "node_modules/setimmediate": { - "version": "1.0.5", - "resolved": "https://registry.npmjs.org/setimmediate/-/setimmediate-1.0.5.tgz", - "integrity": "sha512-MATJdZp8sLqDl/68LfQmbP8zKPLQNV6BIZoIgrscFDQ+RsvK/BxeDQOgyxKKoh0y/8h3BqVFnCqQ/gd+reiIXA==" - }, - "node_modules/setprototypeof": { - "version": "1.2.0", - "resolved": "https://registry.npmjs.org/setprototypeof/-/setprototypeof-1.2.0.tgz", - "integrity": "sha512-E5LDX7Wrp85Kil5bhZv46j8jOeboKq5JMmYM3gVGdGH8xFpPWXUMsNrlODCrkoxMEeNi/XZIwuRvY4XNwYMJpw==" - }, - "node_modules/sha.js": { - "version": "2.4.11", - "resolved": "https://registry.npmjs.org/sha.js/-/sha.js-2.4.11.tgz", - "integrity": "sha512-QMEp5B7cftE7APOjk5Y6xgrbWu+WkLVQwk8JNjZ8nKRciZaByEW6MubieAiToS7+dwvrjGhH8jRXz3MVd0AYqQ==", - "dependencies": { - "inherits": "^2.0.1", - "safe-buffer": "^5.0.1" - }, - "bin": { - "sha.js": "bin.js" - } - }, - "node_modules/shallowequal": { - "version": "1.1.0", - "resolved": "https://registry.npmjs.org/shallowequal/-/shallowequal-1.1.0.tgz", - "integrity": "sha512-y0m1JoUZSlPAjXVtPPW70aZWfIL/dSP7AFkRnniLCrK/8MDKog3TySTBmckD+RObVxH0v4Tox67+F14PdED2oQ==" - }, - "node_modules/shebang-command": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/shebang-command/-/shebang-command-2.0.0.tgz", - "integrity": "sha512-kHxr2zZpYtdmrN1qDjrrX/Z1rR1kG8Dx+gkpK1G4eXmvXswmcE1hTWBWYUzlraYw1/yZp6YuDY77YtvbN0dmDA==", - "dependencies": { - "shebang-regex": "^3.0.0" - }, - "engines": { - "node": ">=8" - } - }, - "node_modules/shebang-regex": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/shebang-regex/-/shebang-regex-3.0.0.tgz", - "integrity": "sha512-7++dFhtcx3353uBaq8DDR4NuxBetBzC7ZQOhmTQInHEd6bSrXdiEyzCvG07Z44UYdLShWUyXt5M/yhz8ekcb1A==", - "engines": { - "node": ">=8" - } - }, - "node_modules/shell-quote": { - "version": "1.7.3", - "resolved": "https://registry.npmjs.org/shell-quote/-/shell-quote-1.7.3.tgz", - "integrity": "sha512-Vpfqwm4EnqGdlsBFNmHhxhElJYrdfcxPThu+ryKS5J8L/fhAwLazFZtq+S+TWZ9ANj2piSQLGj6NQg+lKPmxrw==" - }, - "node_modules/shiki": { - "version": "0.14.2", - "resolved": "https://registry.npmjs.org/shiki/-/shiki-0.14.2.tgz", - "integrity": "sha512-ltSZlSLOuSY0M0Y75KA+ieRaZ0Trf5Wl3gutE7jzLuIcWxLp5i/uEnLoQWNvgKXQ5OMpGkJnVMRLAuzjc0LJ2A==", - "dependencies": { - "ansi-sequence-parser": "^1.1.0", - "jsonc-parser": "^3.2.0", - "vscode-oniguruma": "^1.7.0", - "vscode-textmate": "^8.0.0" - } - }, - "node_modules/side-channel": { - "version": "1.0.4", - "resolved": "https://registry.npmjs.org/side-channel/-/side-channel-1.0.4.tgz", - "integrity": "sha512-q5XPytqFEIKHkGdiMIrY10mvLRvnQh42/+GoBlFW3b2LXLE2xxJpZFdm94we0BaoV3RwJyGqg5wS7epxTv0Zvw==", - "dependencies": { - "call-bind": "^1.0.0", - "get-intrinsic": "^1.0.2", - "object-inspect": "^1.9.0" - }, - "funding": { - "url": "https://github.com/sponsors/ljharb" - } - }, - "node_modules/signal-exit": { - "version": "3.0.7", - "resolved": "https://registry.npmjs.org/signal-exit/-/signal-exit-3.0.7.tgz", - "integrity": "sha512-wnD2ZE+l+SPC/uoS0vXeE9L1+0wuaMqKlfz9AMUo38JsyLSBWSFcHR1Rri62LZc12vLr1gb3jl7iwQhgwpAbGQ==" - }, - "node_modules/simple-concat": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/simple-concat/-/simple-concat-1.0.1.tgz", - "integrity": "sha512-cSFtAPtRhljv69IK0hTVZQ+OfE9nePi/rtJmw5UjHeVyVroEqJXP1sFztKUy1qU+xvz3u/sfYJLa947b7nAN2Q==", - "funding": [ - { - "type": "github", - "url": "https://github.com/sponsors/feross" - }, - { - "type": "patreon", - "url": "https://www.patreon.com/feross" - }, - { - "type": "consulting", - "url": "https://feross.org/support" - } - ] - }, - "node_modules/simple-get": { - "version": "2.8.2", - "resolved": "https://registry.npmjs.org/simple-get/-/simple-get-2.8.2.tgz", - "integrity": "sha512-Ijd/rV5o+mSBBs4F/x9oDPtTx9Zb6X9brmnXvMW4J7IR15ngi9q5xxqWBKU744jTZiaXtxaPL7uHG6vtN8kUkw==", - "dependencies": { - "decompress-response": "^3.3.0", - "once": "^1.3.1", - "simple-concat": "^1.0.0" - } - }, - "node_modules/simple-get/node_modules/decompress-response": { - "version": "3.3.0", - "resolved": "https://registry.npmjs.org/decompress-response/-/decompress-response-3.3.0.tgz", - "integrity": "sha512-BzRPQuY1ip+qDonAOz42gRm/pg9F768C+npV/4JOsxRC2sq+Rlk+Q4ZCAsOhnIaMrgarILY+RMUIvMmmX1qAEA==", - "dependencies": { - "mimic-response": "^1.0.0" - }, - "engines": { - "node": ">=4" - } - }, - "node_modules/sisteransi": { - "version": "1.0.5", - "resolved": "https://registry.npmjs.org/sisteransi/-/sisteransi-1.0.5.tgz", - "integrity": "sha512-bLGGlR1QxBcynn2d5YmDX4MGjlZvy2MRBDRNHLJ8VI6l6+9FUiyTFNJ0IveOSP0bcXgVDPRcfGqA0pjaqUpfVg==" - }, - "node_modules/slash": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/slash/-/slash-3.0.0.tgz", - "integrity": "sha512-g9Q1haeby36OSStwb4ntCGGGaKsaVSjQ68fBxoQcutl5fS1vuY18H3wSt3jFyFtrkx+Kz0V1G85A4MyAdDMi2Q==", - "engines": { - "node": ">=8" - } - }, - "node_modules/sockjs": { - "version": "0.3.24", - "resolved": "https://registry.npmjs.org/sockjs/-/sockjs-0.3.24.tgz", - "integrity": "sha512-GJgLTZ7vYb/JtPSSZ10hsOYIvEYsjbNU+zPdIHcUaWVNUEPivzxku31865sSSud0Da0W4lEeOPlmw93zLQchuQ==", - "dependencies": { - "faye-websocket": "^0.11.3", - "uuid": "^8.3.2", - "websocket-driver": "^0.7.4" - } - }, - "node_modules/solc": { - "version": "0.7.3", - "resolved": "https://registry.npmjs.org/solc/-/solc-0.7.3.tgz", - "integrity": "sha512-GAsWNAjGzIDg7VxzP6mPjdurby3IkGCjQcM8GFYZT6RyaoUZKmMU6Y7YwG+tFGhv7dwZ8rmR4iwFDrrD99JwqA==", - "peer": true, - "dependencies": { - "command-exists": "^1.2.8", - "commander": "3.0.2", - "follow-redirects": "^1.12.1", - "fs-extra": "^0.30.0", - "js-sha3": "0.8.0", - "memorystream": "^0.3.1", - "require-from-string": "^2.0.0", - "semver": "^5.5.0", - "tmp": "0.0.33" - }, - "bin": { - "solcjs": "solcjs" - }, - "engines": { - "node": ">=8.0.0" - } - }, - "node_modules/solc/node_modules/commander": { - "version": "3.0.2", - "resolved": "https://registry.npmjs.org/commander/-/commander-3.0.2.tgz", - "integrity": "sha512-Gar0ASD4BDyKC4hl4DwHqDrmvjoxWKZigVnAbn5H1owvm4CxCPdb0HQDehwNYMJpla5+M2tPmPARzhtYuwpHow==", - "peer": true - }, - "node_modules/solc/node_modules/fs-extra": { - "version": "0.30.0", - "resolved": "https://registry.npmjs.org/fs-extra/-/fs-extra-0.30.0.tgz", - "integrity": "sha512-UvSPKyhMn6LEd/WpUaV9C9t3zATuqoqfWc3QdPhPLb58prN9tqYPlPWi8Krxi44loBoUzlobqZ3+8tGpxxSzwA==", - "peer": true, - "dependencies": { - "graceful-fs": "^4.1.2", - "jsonfile": "^2.1.0", - "klaw": "^1.0.0", - "path-is-absolute": "^1.0.0", - "rimraf": "^2.2.8" - } - }, - "node_modules/solc/node_modules/jsonfile": { - "version": "2.4.0", - "resolved": "https://registry.npmjs.org/jsonfile/-/jsonfile-2.4.0.tgz", - "integrity": "sha512-PKllAqbgLgxHaj8TElYymKCAgrASebJrWpTnEkOaTowt23VKXXN0sUeriJ+eh7y6ufb/CC5ap11pz71/cM0hUw==", - "peer": true, - "optionalDependencies": { - "graceful-fs": "^4.1.6" - } - }, - "node_modules/solc/node_modules/rimraf": { - "version": "2.7.1", - "resolved": "https://registry.npmjs.org/rimraf/-/rimraf-2.7.1.tgz", - "integrity": "sha512-uWjbaKIK3T1OSVptzX7Nl6PvQ3qAGtKEtVRjRuazjfL3Bx5eI409VZSqgND+4UNnmzLVdPj9FqFJNPqBZFve4w==", - "peer": true, - "dependencies": { - "glob": "^7.1.3" - }, - "bin": { - "rimraf": "bin.js" - } - }, - "node_modules/solc/node_modules/semver": { - "version": "5.7.1", - "resolved": "https://registry.npmjs.org/semver/-/semver-5.7.1.tgz", - "integrity": "sha512-sauaDf/PZdVgrLTNYHRtpXa1iRiKcaebiKQ1BJdpQlWH2lCvexQdX55snPFyK7QzpudqbCI0qXFfOasHdyNDGQ==", - "peer": true, - "bin": { - "semver": "bin/semver" - } - }, - "node_modules/source-list-map": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/source-list-map/-/source-list-map-2.0.1.tgz", - "integrity": "sha512-qnQ7gVMxGNxsiL4lEuJwe/To8UnK7fAnmbGEEH8RpLouuKbeEm0lhbQVFIrNSuB+G7tVrAlVsZgETT5nljf+Iw==" - }, - "node_modules/source-map": { - "version": "0.7.4", - "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.7.4.tgz", - "integrity": "sha512-l3BikUxvPOcn5E74dZiq5BGsTb5yEwhaTSzccU6t4sDOH8NWJCstKO5QT2CvtFoK6F0saL7p9xHAqHOlCPJygA==", - "engines": { - "node": ">= 8" - } - }, - "node_modules/source-map-js": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/source-map-js/-/source-map-js-1.0.2.tgz", - "integrity": "sha512-R0XvVJ9WusLiqTCEiGCmICCMplcCkIwwR11mOSD9CR5u+IXYdiseeEuXCVAjS54zqwkLcPNnmU4OeJ6tUrWhDw==", - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/source-map-loader": { - "version": "3.0.1", - "resolved": "https://registry.npmjs.org/source-map-loader/-/source-map-loader-3.0.1.tgz", - "integrity": "sha512-Vp1UsfyPvgujKQzi4pyDiTOnE3E4H+yHvkVRN3c/9PJmQS4CQJExvcDvaX/D+RV+xQben9HJ56jMJS3CgUeWyA==", - "dependencies": { - "abab": "^2.0.5", - "iconv-lite": "^0.6.3", - "source-map-js": "^1.0.1" - }, - "engines": { - "node": ">= 12.13.0" - }, - "funding": { - "type": "opencollective", - "url": "https://opencollective.com/webpack" - }, - "peerDependencies": { - "webpack": "^5.0.0" - } - }, - "node_modules/source-map-resolve": { - "version": "0.6.0", - "resolved": "https://registry.npmjs.org/source-map-resolve/-/source-map-resolve-0.6.0.tgz", - "integrity": "sha512-KXBr9d/fO/bWo97NXsPIAW1bFSBOuCnjbNTBMO7N59hsv5i9yzRDfcYwwt0l04+VqnKC+EwzvJZIP/qkuMgR/w==", - "deprecated": "See https://github.com/lydell/source-map-resolve#deprecated", - "dependencies": { - "atob": "^2.1.2", - "decode-uri-component": "^0.2.0" - } - }, - "node_modules/source-map-support": { - "version": "0.5.21", - "resolved": "https://registry.npmjs.org/source-map-support/-/source-map-support-0.5.21.tgz", - "integrity": "sha512-uBHU3L3czsIyYXKX88fdrGovxdSCoTGDRZ6SYXtSRxLZUzHg5P/66Ht6uoUlHu9EZod+inXhKo3qQgwXUT/y1w==", - "dependencies": { - "buffer-from": "^1.0.0", - "source-map": "^0.6.0" - } - }, - "node_modules/source-map-support/node_modules/source-map": { - "version": "0.6.1", - "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz", - "integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==", - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/sourcemap-codec": { - "version": "1.4.8", - "resolved": "https://registry.npmjs.org/sourcemap-codec/-/sourcemap-codec-1.4.8.tgz", - "integrity": "sha512-9NykojV5Uih4lgo5So5dtw+f0JgJX30KCNI8gwhz2J9A15wD0Ml6tjHKwf6fTSa6fAdVBdZeNOs9eJ71qCk8vA==" - }, - "node_modules/spdy": { - "version": "4.0.2", - "resolved": "https://registry.npmjs.org/spdy/-/spdy-4.0.2.tgz", - "integrity": "sha512-r46gZQZQV+Kl9oItvl1JZZqJKGr+oEkB08A6BzkiR7593/7IbtuncXHd2YoYeTsG4157ZssMu9KYvUHLcjcDoA==", - "dependencies": { - "debug": "^4.1.0", - "handle-thing": "^2.0.0", - "http-deceiver": "^1.2.7", - "select-hose": "^2.0.0", - "spdy-transport": "^3.0.0" - }, - "engines": { - "node": ">=6.0.0" - } - }, - "node_modules/spdy-transport": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/spdy-transport/-/spdy-transport-3.0.0.tgz", - "integrity": "sha512-hsLVFE5SjA6TCisWeJXFKniGGOpBgMLmerfO2aCyCU5s7nJ/rpAepqmFifv/GCbSbueEeAJJnmSQ2rKC/g8Fcw==", - "dependencies": { - "debug": "^4.1.0", - "detect-node": "^2.0.4", - "hpack.js": "^2.1.6", - "obuf": "^1.1.2", - "readable-stream": "^3.0.6", - "wbuf": "^1.7.3" - } - }, - "node_modules/sprintf-js": { - "version": "1.0.3", - "resolved": "https://registry.npmjs.org/sprintf-js/-/sprintf-js-1.0.3.tgz", - "integrity": "sha512-D9cPgkvLlV3t3IzL0D0YLvGA9Ahk4PcvVwUbN0dSGr1aP0Nrt4AEnTUbuGvquEC0mA64Gqt1fzirlRs5ibXx8g==" - }, - "node_modules/sshpk": { - "version": "1.17.0", - "resolved": "https://registry.npmjs.org/sshpk/-/sshpk-1.17.0.tgz", - "integrity": "sha512-/9HIEs1ZXGhSPE8X6Ccm7Nam1z8KcoCqPdI7ecm1N33EzAetWahvQWVqLZtaZQ+IDKX4IyA2o0gBzqIMkAagHQ==", - "dependencies": { - "asn1": "~0.2.3", - "assert-plus": "^1.0.0", - "bcrypt-pbkdf": "^1.0.0", - "dashdash": "^1.12.0", - "ecc-jsbn": "~0.1.1", - "getpass": "^0.1.1", - "jsbn": "~0.1.0", - "safer-buffer": "^2.0.2", - "tweetnacl": "~0.14.0" - }, - "bin": { - "sshpk-conv": "bin/sshpk-conv", - "sshpk-sign": "bin/sshpk-sign", - "sshpk-verify": "bin/sshpk-verify" - }, - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/sshpk/node_modules/tweetnacl": { - "version": "0.14.5", - "resolved": "https://registry.npmjs.org/tweetnacl/-/tweetnacl-0.14.5.tgz", - "integrity": "sha512-KXXFFdAbFXY4geFIwoyNK+f5Z1b7swfXABfL7HXCmoIWMKU3dmS26672A4EeQtDzLKy7SXmfBu51JolvEKwtGA==" - }, - "node_modules/stable": { - "version": "0.1.8", - "resolved": "https://registry.npmjs.org/stable/-/stable-0.1.8.tgz", - "integrity": "sha512-ji9qxRnOVfcuLDySj9qzhGSEFVobyt1kIOSkj1qZzYLzq7Tos/oUUWvotUPQLlrsidqsK6tBH89Bc9kL5zHA6w==", - "deprecated": "Modern JS already guarantees Array#sort() is a stable sort, so this library is deprecated. See the compatibility table on MDN: https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Array/sort#browser_compatibility" - }, - "node_modules/stack-utils": { - "version": "2.0.5", - "resolved": "https://registry.npmjs.org/stack-utils/-/stack-utils-2.0.5.tgz", - "integrity": "sha512-xrQcmYhOsn/1kX+Vraq+7j4oE2j/6BFscZ0etmYg81xuM8Gq0022Pxb8+IqgOFUIaxHs0KaSb7T1+OegiNrNFA==", - "dependencies": { - "escape-string-regexp": "^2.0.0" - }, - "engines": { - "node": ">=10" - } - }, - "node_modules/stack-utils/node_modules/escape-string-regexp": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/escape-string-regexp/-/escape-string-regexp-2.0.0.tgz", - "integrity": "sha512-UpzcLCXolUWcNu5HtVMHYdXJjArjsF9C0aNnquZYY4uW/Vu0miy5YoWvbV345HauVvcAUnpRuhMMcqTcGOY2+w==", - "engines": { - "node": ">=8" - } - }, - "node_modules/stackframe": { - "version": "1.3.4", - "resolved": "https://registry.npmjs.org/stackframe/-/stackframe-1.3.4.tgz", - "integrity": "sha512-oeVtt7eWQS+Na6F//S4kJ2K2VbRlS9D43mAlMyVpVWovy9o+jfgH8O9agzANzaiLjclA0oYzUXEM4PurhSUChw==" - }, - "node_modules/stacktrace-parser": { - "version": "0.1.10", - "resolved": "https://registry.npmjs.org/stacktrace-parser/-/stacktrace-parser-0.1.10.tgz", - "integrity": "sha512-KJP1OCML99+8fhOHxwwzyWrlUuVX5GQ0ZpJTd1DFXhdkrvg1szxfHhawXUZ3g9TkXORQd4/WG68jMlQZ2p8wlg==", - "peer": true, - "dependencies": { - "type-fest": "^0.7.1" - }, - "engines": { - "node": ">=6" - } - }, - "node_modules/stacktrace-parser/node_modules/type-fest": { - "version": "0.7.1", - "resolved": "https://registry.npmjs.org/type-fest/-/type-fest-0.7.1.tgz", - "integrity": "sha512-Ne2YiiGN8bmrmJJEuTWTLJR32nh/JdL1+PSicowtNb0WFpn59GK8/lfD61bVtzguz7b3PBt74nxpv/Pw5po5Rg==", - "peer": true, - "engines": { - "node": ">=8" - } - }, - "node_modules/starknet": { - "version": "4.22.0", - "resolved": "https://registry.npmjs.org/starknet/-/starknet-4.22.0.tgz", - "integrity": "sha512-jC9Taxb6a/ht9zmS1LU/DSLfwJKpgCJnE9AktVksc5SE/+jQMpqxsq6fm7PRiqupjiqRC1DOS8N47cj+KaGv4Q==", - "dependencies": { - "@ethersproject/bytes": "^5.6.1", - "bn.js": "^5.2.1", - "elliptic": "^6.5.4", - "ethereum-cryptography": "^1.0.3", - "hash.js": "^1.1.7", - "isomorphic-fetch": "^3.0.0", - "json-bigint": "^1.0.0", - "minimalistic-assert": "^1.0.1", - "pako": "^2.0.4", - "ts-custom-error": "^3.3.1", - "url-join": "^4.0.1" - } - }, - "node_modules/stats-lite": { - "version": "2.2.0", - "resolved": "https://registry.npmjs.org/stats-lite/-/stats-lite-2.2.0.tgz", - "integrity": "sha512-/Kz55rgUIv2KP2MKphwYT/NCuSfAlbbMRv2ZWw7wyXayu230zdtzhxxuXXcvsc6EmmhS8bSJl3uS1wmMHFumbA==", - "dependencies": { - "isnumber": "~1.0.0" - }, - "engines": { - "node": ">=2.0.0" - } - }, - "node_modules/statuses": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/statuses/-/statuses-2.0.1.tgz", - "integrity": "sha512-RwNA9Z/7PrK06rYLIzFMlaF+l73iwpzsqRIFgbMLbTcLD6cOao82TaWefPXQvB2fOC4AjuYSEndS7N/mTCbkdQ==", - "engines": { - "node": ">= 0.8" - } - }, - "node_modules/stream-blackhole": { - "version": "1.0.3", - "resolved": "https://registry.npmjs.org/stream-blackhole/-/stream-blackhole-1.0.3.tgz", - "integrity": "sha512-7NWl3dkmCd12mPkEwTbBPGxwvxj7L4O9DTjJudn02Fmk9K+RuPaDF8zeGo3kmjbsffU5E1aGpZ1dTR9AaRg6AQ==" - }, - "node_modules/streamsearch": { - "version": "1.1.0", - "resolved": "https://registry.npmjs.org/streamsearch/-/streamsearch-1.1.0.tgz", - "integrity": "sha512-Mcc5wHehp9aXz1ax6bZUyY5afg9u2rv5cqQI3mRrYkGC8rW2hM02jWuwjtL++LS5qinSyhj2QfLyNsuc+VsExg==", - "peer": true, - "engines": { - "node": ">=10.0.0" - } - }, - "node_modules/strict-uri-encode": { - "version": "1.1.0", - "resolved": "https://registry.npmjs.org/strict-uri-encode/-/strict-uri-encode-1.1.0.tgz", - "integrity": "sha512-R3f198pcvnB+5IpnBlRkphuE9n46WyVl8I39W/ZUTZLz4nqSP/oLYUrcnJrw462Ds8he4YKMov2efsTIw1BDGQ==", - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/string_decoder": { - "version": "1.3.0", - "resolved": "https://registry.npmjs.org/string_decoder/-/string_decoder-1.3.0.tgz", - "integrity": "sha512-hkRX8U1WjJFd8LsDJ2yQ/wWWxaopEsABU1XfkM8A+j0+85JAGppt16cr1Whg6KIbb4okU6Mql6BOj+uup/wKeA==", - "dependencies": { - "safe-buffer": "~5.2.0" - } - }, - "node_modules/string_decoder/node_modules/safe-buffer": { - "version": "5.2.1", - "resolved": "https://registry.npmjs.org/safe-buffer/-/safe-buffer-5.2.1.tgz", - "integrity": "sha512-rp3So07KcdmmKbGvgaNxQSJr7bGVSVk5S9Eq1F+ppbRo70+YeaDxkw5Dd8NPN+GD6bjnYm2VuPuCXmpuYvmCXQ==", - "funding": [ - { - "type": "github", - "url": "https://github.com/sponsors/feross" - }, - { - "type": "patreon", - "url": "https://www.patreon.com/feross" - }, - { - "type": "consulting", - "url": "https://feross.org/support" - } - ] - }, - "node_modules/string-format": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/string-format/-/string-format-2.0.0.tgz", - "integrity": "sha512-bbEs3scLeYNXLecRRuk6uJxdXUSj6le/8rNPHChIJTn2V79aXVTR1EH2OH5zLKKoz0V02fOUKZZcw01pLUShZA==", - "dev": true - }, - "node_modules/string-length": { - "version": "4.0.2", - "resolved": "https://registry.npmjs.org/string-length/-/string-length-4.0.2.tgz", - "integrity": "sha512-+l6rNN5fYHNhZZy41RXsYptCjA2Igmq4EG7kZAYFQI1E1VTXarr6ZPXBg6eq7Y6eK4FEhY6AJlyuFIb/v/S0VQ==", - "dependencies": { - "char-regex": "^1.0.2", - "strip-ansi": "^6.0.0" - }, - "engines": { - "node": ">=10" - } - }, - "node_modules/string-natural-compare": { - "version": "3.0.1", - "resolved": "https://registry.npmjs.org/string-natural-compare/-/string-natural-compare-3.0.1.tgz", - "integrity": "sha512-n3sPwynL1nwKi3WJ6AIsClwBMa0zTi54fn2oLU6ndfTSIO05xaznjSf15PcBZU6FNWbmN5Q6cxT4V5hGvB4taw==" - }, - "node_modules/string-width": { - "version": "4.2.3", - "resolved": "https://registry.npmjs.org/string-width/-/string-width-4.2.3.tgz", - "integrity": "sha512-wKyQRQpjJ0sIp62ErSZdGsjMJWsap5oRNihHhu6G7JVO/9jIB6UyevL+tXuOqrng8j/cxKTWyWUwvSTriiZz/g==", - "dependencies": { - "emoji-regex": "^8.0.0", - "is-fullwidth-code-point": "^3.0.0", - "strip-ansi": "^6.0.1" - }, - "engines": { - "node": ">=8" - } - }, - "node_modules/string-width/node_modules/emoji-regex": { - "version": "8.0.0", - "resolved": "https://registry.npmjs.org/emoji-regex/-/emoji-regex-8.0.0.tgz", - "integrity": "sha512-MSjYzcWNOA0ewAHpz0MxpYFvwg6yjy1NG3xteoqz644VCo/RPgnr1/GGt+ic3iJTzQ8Eu3TdM14SawnVUmGE6A==" - }, - "node_modules/string.prototype.matchall": { - "version": "4.0.7", - "resolved": "https://registry.npmjs.org/string.prototype.matchall/-/string.prototype.matchall-4.0.7.tgz", - "integrity": "sha512-f48okCX7JiwVi1NXCVWcFnZgADDC/n2vePlQ/KUCNqCikLLilQvwjMO8+BHVKvgzH0JB0J9LEPgxOGT02RoETg==", - "dependencies": { - "call-bind": "^1.0.2", - "define-properties": "^1.1.3", - "es-abstract": "^1.19.1", - "get-intrinsic": "^1.1.1", - "has-symbols": "^1.0.3", - "internal-slot": "^1.0.3", - "regexp.prototype.flags": "^1.4.1", - "side-channel": "^1.0.4" - }, - "funding": { - "url": "https://github.com/sponsors/ljharb" - } - }, - "node_modules/string.prototype.trim": { - "version": "1.2.7", - "resolved": "https://registry.npmjs.org/string.prototype.trim/-/string.prototype.trim-1.2.7.tgz", - "integrity": "sha512-p6TmeT1T3411M8Cgg9wBTMRtY2q9+PNy9EV1i2lIXUN/btt763oIfxwN3RR8VU6wHX8j/1CFy0L+YuThm6bgOg==", - "dependencies": { - "call-bind": "^1.0.2", - "define-properties": "^1.1.4", - "es-abstract": "^1.20.4" - }, - "engines": { - "node": ">= 0.4" - }, - "funding": { - "url": "https://github.com/sponsors/ljharb" - } - }, - "node_modules/string.prototype.trimend": { - "version": "1.0.6", - "resolved": "https://registry.npmjs.org/string.prototype.trimend/-/string.prototype.trimend-1.0.6.tgz", - "integrity": "sha512-JySq+4mrPf9EsDBEDYMOb/lM7XQLulwg5R/m1r0PXEFqrV0qHvl58sdTilSXtKOflCsK2E8jxf+GKC0T07RWwQ==", - "dependencies": { - "call-bind": "^1.0.2", - "define-properties": "^1.1.4", - "es-abstract": "^1.20.4" - }, - "funding": { - "url": "https://github.com/sponsors/ljharb" - } - }, - "node_modules/string.prototype.trimstart": { - "version": "1.0.6", - "resolved": "https://registry.npmjs.org/string.prototype.trimstart/-/string.prototype.trimstart-1.0.6.tgz", - "integrity": "sha512-omqjMDaY92pbn5HOX7f9IccLA+U1tA9GvtU4JrodiXFfYB7jPzzHpRzpglLAjtUV6bB557zwClJezTqnAiYnQA==", - "dependencies": { - "call-bind": "^1.0.2", - "define-properties": "^1.1.4", - "es-abstract": "^1.20.4" - }, - "funding": { - "url": "https://github.com/sponsors/ljharb" - } - }, - "node_modules/stringify-object": { - "version": "3.3.0", - "resolved": "https://registry.npmjs.org/stringify-object/-/stringify-object-3.3.0.tgz", - "integrity": "sha512-rHqiFh1elqCQ9WPLIC8I0Q/g/wj5J1eMkyoiD6eoQApWHP0FtlK7rqnhmabL5VUY9JQCcqwwvlOaSuutekgyrw==", - "dependencies": { - "get-own-enumerable-property-symbols": "^3.0.0", - "is-obj": "^1.0.1", - "is-regexp": "^1.0.0" - }, - "engines": { - "node": ">=4" - } - }, - "node_modules/strip-ansi": { - "version": "6.0.1", - "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-6.0.1.tgz", - "integrity": "sha512-Y38VPSHcqkFrCpFnQ9vuSXmquuv5oXOKpGeT6aGrr3o3Gc9AlVa6JBfUSOCnbxGGZF+/0ooI7KrPuUSztUdU5A==", - "dependencies": { - "ansi-regex": "^5.0.1" - }, - "engines": { - "node": ">=8" - } - }, - "node_modules/strip-bom": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/strip-bom/-/strip-bom-4.0.0.tgz", - "integrity": "sha512-3xurFv5tEgii33Zi8Jtp55wEIILR9eh34FAW00PZf+JnSsTmV/ioewSgQl97JHvgjoRGwPShsWm+IdrxB35d0w==", - "engines": { - "node": ">=8" - } - }, - "node_modules/strip-comments": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/strip-comments/-/strip-comments-2.0.1.tgz", - "integrity": "sha512-ZprKx+bBLXv067WTCALv8SSz5l2+XhpYCsVtSqlMnkAXMWDq+/ekVbl1ghqP9rUHTzv6sm/DwCOiYutU/yp1fw==", - "engines": { - "node": ">=10" - } - }, - "node_modules/strip-final-newline": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/strip-final-newline/-/strip-final-newline-2.0.0.tgz", - "integrity": "sha512-BrpvfNAE3dcvq7ll3xVumzjKjZQ5tI1sEUIKr3Uoks0XUl45St3FlatVqef9prk4jRDzhW6WZg+3bk93y6pLjA==", - "engines": { - "node": ">=6" - } - }, - "node_modules/strip-hex-prefix": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/strip-hex-prefix/-/strip-hex-prefix-1.0.0.tgz", - "integrity": "sha512-q8d4ue7JGEiVcypji1bALTos+0pWtyGlivAWyPuTkHzuTCJqrK9sWxYQZUq6Nq3cuyv3bm734IhHvHtGGURU6A==", - "dependencies": { - "is-hex-prefixed": "1.0.0" - }, - "engines": { - "node": ">=6.5.0", - "npm": ">=3" - } - }, - "node_modules/strip-indent": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/strip-indent/-/strip-indent-3.0.0.tgz", - "integrity": "sha512-laJTa3Jb+VQpaC6DseHhF7dXVqHTfJPCRDaEbid/drOhgitgYku/letMUqOXFoWV0zIIUbjpdH2t+tYj4bQMRQ==", - "dependencies": { - "min-indent": "^1.0.0" - }, - "engines": { - "node": ">=8" - } - }, - "node_modules/strip-json-comments": { - "version": "3.1.1", - "resolved": "https://registry.npmjs.org/strip-json-comments/-/strip-json-comments-3.1.1.tgz", - "integrity": "sha512-6fPc+R4ihwqP6N/aIv2f1gMH8lOVtWQHoqC4yK6oSDVVocumAsfCqjkXnqiYMhmMwS/mEHLp7Vehlt3ql6lEig==", - "engines": { - "node": ">=8" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, - "node_modules/strtok3": { - "version": "6.3.0", - "resolved": "https://registry.npmjs.org/strtok3/-/strtok3-6.3.0.tgz", - "integrity": "sha512-fZtbhtvI9I48xDSywd/somNqgUHl2L2cstmXCCif0itOf96jeW18MBSyrLuNicYQVkvpOxkZtkzujiTJ9LW5Jw==", - "dependencies": { - "@tokenizer/token": "^0.3.0", - "peek-readable": "^4.1.0" - }, - "engines": { - "node": ">=10" - }, - "funding": { - "type": "github", - "url": "https://github.com/sponsors/Borewit" - } - }, - "node_modules/style-loader": { - "version": "3.3.1", - "resolved": "https://registry.npmjs.org/style-loader/-/style-loader-3.3.1.tgz", - "integrity": "sha512-GPcQ+LDJbrcxHORTRes6Jy2sfvK2kS6hpSfI/fXhPt+spVzxF6LJ1dHLN9zIGmVaaP044YKaIatFaufENRiDoQ==", - "engines": { - "node": ">= 12.13.0" - }, - "funding": { - "type": "opencollective", - "url": "https://opencollective.com/webpack" - }, - "peerDependencies": { - "webpack": "^5.0.0" - } - }, - "node_modules/styled-components": { - "version": "5.3.10", - "resolved": "https://registry.npmjs.org/styled-components/-/styled-components-5.3.10.tgz", - "integrity": "sha512-3kSzSBN0TiCnGJM04UwO1HklIQQSXW7rCARUk+VyMR7clz8XVlA3jijtf5ypqoDIdNMKx3la4VvaPFR855SFcg==", - "dependencies": { - "@babel/helper-module-imports": "^7.0.0", - "@babel/traverse": "^7.4.5", - "@emotion/is-prop-valid": "^1.1.0", - "@emotion/stylis": "^0.8.4", - "@emotion/unitless": "^0.7.4", - "babel-plugin-styled-components": ">= 1.12.0", - "css-to-react-native": "^3.0.0", - "hoist-non-react-statics": "^3.0.0", - "shallowequal": "^1.1.0", - "supports-color": "^5.5.0" - }, - "engines": { - "node": ">=10" - }, - "funding": { - "type": "opencollective", - "url": "https://opencollective.com/styled-components" - }, - "peerDependencies": { - "react": ">= 16.8.0", - "react-dom": ">= 16.8.0", - "react-is": ">= 16.8.0" - } - }, - "node_modules/styled-system": { - "version": "5.1.5", - "resolved": "https://registry.npmjs.org/styled-system/-/styled-system-5.1.5.tgz", - "integrity": "sha512-7VoD0o2R3RKzOzPK0jYrVnS8iJdfkKsQJNiLRDjikOpQVqQHns/DXWaPZOH4tIKkhAT7I6wIsy9FWTWh2X3q+A==", - "dependencies": { - "@styled-system/background": "^5.1.2", - "@styled-system/border": "^5.1.5", - "@styled-system/color": "^5.1.2", - "@styled-system/core": "^5.1.2", - "@styled-system/flexbox": "^5.1.2", - "@styled-system/grid": "^5.1.2", - "@styled-system/layout": "^5.1.2", - "@styled-system/position": "^5.1.2", - "@styled-system/shadow": "^5.1.2", - "@styled-system/space": "^5.1.2", - "@styled-system/typography": "^5.1.2", - "@styled-system/variant": "^5.1.5", - "object-assign": "^4.1.1" - } - }, - "node_modules/stylehacks": { - "version": "5.1.0", - "resolved": "https://registry.npmjs.org/stylehacks/-/stylehacks-5.1.0.tgz", - "integrity": "sha512-SzLmvHQTrIWfSgljkQCw2++C9+Ne91d/6Sp92I8c5uHTcy/PgeHamwITIbBW9wnFTY/3ZfSXR9HIL6Ikqmcu6Q==", - "dependencies": { - "browserslist": "^4.16.6", - "postcss-selector-parser": "^6.0.4" - }, - "engines": { - "node": "^10 || ^12 || >=14.0" - }, - "peerDependencies": { - "postcss": "^8.2.15" - } - }, - "node_modules/stylis": { - "version": "4.0.13", - "resolved": "https://registry.npmjs.org/stylis/-/stylis-4.0.13.tgz", - "integrity": "sha512-xGPXiFVl4YED9Jh7Euv2V220mriG9u4B2TA6Ybjc1catrstKD2PpIdU3U0RKpkVBC2EhmL/F0sPCr9vrFTNRag==" - }, - "node_modules/supports-color": { - "version": "5.5.0", - "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-5.5.0.tgz", - "integrity": "sha512-QjVjwdXIt408MIiAqCX4oUKsgU2EqAGzs2Ppkm4aQYbjm+ZEWEcW4SfFNTr4uMNZma0ey4f5lgLrkB0aX0QMow==", - "dependencies": { - "has-flag": "^3.0.0" - }, - "engines": { - "node": ">=4" - } - }, - "node_modules/supports-hyperlinks": { - "version": "2.2.0", - "resolved": "https://registry.npmjs.org/supports-hyperlinks/-/supports-hyperlinks-2.2.0.tgz", - "integrity": "sha512-6sXEzV5+I5j8Bmq9/vUphGRM/RJNT9SCURJLjwfOg51heRtguGWDzcaBlgAzKhQa0EVNpPEKzQuBwZ8S8WaCeQ==", - "dependencies": { - "has-flag": "^4.0.0", - "supports-color": "^7.0.0" - }, - "engines": { - "node": ">=8" - } - }, - "node_modules/supports-hyperlinks/node_modules/has-flag": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz", - "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==", - "engines": { - "node": ">=8" - } - }, - "node_modules/supports-hyperlinks/node_modules/supports-color": { - "version": "7.2.0", - "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", - "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", - "dependencies": { - "has-flag": "^4.0.0" - }, - "engines": { - "node": ">=8" - } - }, - "node_modules/supports-preserve-symlinks-flag": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/supports-preserve-symlinks-flag/-/supports-preserve-symlinks-flag-1.0.0.tgz", - "integrity": "sha512-ot0WnXS9fgdkgIcePe6RHNk1WA8+muPa6cSjeR3V8K27q9BB1rTE3R1p7Hv0z1ZyAc8s6Vvv8DIyWf681MAt0w==", - "engines": { - "node": ">= 0.4" - }, - "funding": { - "url": "https://github.com/sponsors/ljharb" - } - }, - "node_modules/svg-parser": { - "version": "2.0.4", - "resolved": "https://registry.npmjs.org/svg-parser/-/svg-parser-2.0.4.tgz", - "integrity": "sha512-e4hG1hRwoOdRb37cIMSgzNsxyzKfayW6VOflrwvR+/bzrkyxY/31WkbgnQpgtrNp1SdpJvpUAGTa/ZoiPNDuRQ==" - }, - "node_modules/svgo": { - "version": "1.3.2", - "resolved": "https://registry.npmjs.org/svgo/-/svgo-1.3.2.tgz", - "integrity": "sha512-yhy/sQYxR5BkC98CY7o31VGsg014AKLEPxdfhora76l36hD9Rdy5NZA/Ocn6yayNPgSamYdtX2rFJdcv07AYVw==", - "deprecated": "This SVGO version is no longer supported. Upgrade to v2.x.x.", - "dependencies": { - "chalk": "^2.4.1", - "coa": "^2.0.2", - "css-select": "^2.0.0", - "css-select-base-adapter": "^0.1.1", - "css-tree": "1.0.0-alpha.37", - "csso": "^4.0.2", - "js-yaml": "^3.13.1", - "mkdirp": "~0.5.1", - "object.values": "^1.1.0", - "sax": "~1.2.4", - "stable": "^0.1.8", - "unquote": "~1.1.1", - "util.promisify": "~1.0.0" - }, - "bin": { - "svgo": "bin/svgo" - }, - "engines": { - "node": ">=4.0.0" - } - }, - "node_modules/svgo/node_modules/css-select": { - "version": "2.1.0", - "resolved": "https://registry.npmjs.org/css-select/-/css-select-2.1.0.tgz", - "integrity": "sha512-Dqk7LQKpwLoH3VovzZnkzegqNSuAziQyNZUcrdDM401iY+R5NkGBXGmtO05/yaXQziALuPogeG0b7UAgjnTJTQ==", - "dependencies": { - "boolbase": "^1.0.0", - "css-what": "^3.2.1", - "domutils": "^1.7.0", - "nth-check": "^1.0.2" - } - }, - "node_modules/svgo/node_modules/css-what": { - "version": "3.4.2", - "resolved": "https://registry.npmjs.org/css-what/-/css-what-3.4.2.tgz", - "integrity": "sha512-ACUm3L0/jiZTqfzRM3Hi9Q8eZqd6IK37mMWPLz9PJxkLWllYeRf+EHUSHYEtFop2Eqytaq1FizFVh7XfBnXCDQ==", - "engines": { - "node": ">= 6" - }, - "funding": { - "url": "https://github.com/sponsors/fb55" - } - }, - "node_modules/svgo/node_modules/dom-serializer": { - "version": "0.2.2", - "resolved": "https://registry.npmjs.org/dom-serializer/-/dom-serializer-0.2.2.tgz", - "integrity": "sha512-2/xPb3ORsQ42nHYiSunXkDjPLBaEj/xTwUO4B7XCZQTRk7EBtTOPaygh10YAAh2OI1Qrp6NWfpAhzswj0ydt9g==", - "dependencies": { - "domelementtype": "^2.0.1", - "entities": "^2.0.0" - } - }, - "node_modules/svgo/node_modules/domutils": { - "version": "1.7.0", - "resolved": "https://registry.npmjs.org/domutils/-/domutils-1.7.0.tgz", - "integrity": "sha512-Lgd2XcJ/NjEw+7tFvfKxOzCYKZsdct5lczQ2ZaQY8Djz7pfAD3Gbp8ySJWtreII/vDlMVmxwa6pHmdxIYgttDg==", - "dependencies": { - "dom-serializer": "0", - "domelementtype": "1" - } - }, - "node_modules/svgo/node_modules/domutils/node_modules/domelementtype": { - "version": "1.3.1", - "resolved": "https://registry.npmjs.org/domelementtype/-/domelementtype-1.3.1.tgz", - "integrity": "sha512-BSKB+TSpMpFI/HOxCNr1O8aMOTZ8hT3pM3GQ0w/mWRmkhEDSFJkkyzz4XQsBV44BChwGkrDfMyjVD0eA2aFV3w==" - }, - "node_modules/svgo/node_modules/nth-check": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/nth-check/-/nth-check-1.0.2.tgz", - "integrity": "sha512-WeBOdju8SnzPN5vTUJYxYUxLeXpCaVP5i5e0LF8fg7WORF2Wd7wFX/pk0tYZk7s8T+J7VLy0Da6J1+wCT0AtHg==", - "dependencies": { - "boolbase": "~1.0.0" - } - }, - "node_modules/swarm-js": { - "version": "0.1.42", - "resolved": "https://registry.npmjs.org/swarm-js/-/swarm-js-0.1.42.tgz", - "integrity": "sha512-BV7c/dVlA3R6ya1lMlSSNPLYrntt0LUq4YMgy3iwpCIc6rZnS5W2wUoctarZ5pXlpKtxDDf9hNziEkcfrxdhqQ==", - "dependencies": { - "bluebird": "^3.5.0", - "buffer": "^5.0.5", - "eth-lib": "^0.1.26", - "fs-extra": "^4.0.2", - "got": "^11.8.5", - "mime-types": "^2.1.16", - "mkdirp-promise": "^5.0.1", - "mock-fs": "^4.1.0", - "setimmediate": "^1.0.5", - "tar": "^4.0.2", - "xhr-request": "^1.0.1" - } - }, - "node_modules/swarm-js/node_modules/@szmarczak/http-timer": { - "version": "4.0.6", - "resolved": "https://registry.npmjs.org/@szmarczak/http-timer/-/http-timer-4.0.6.tgz", - "integrity": "sha512-4BAffykYOgO+5nzBWYwE3W90sBgLJoUPRWWcL8wlyiM8IB8ipJz3UMJ9KXQd1RKQXpKp8Tutn80HZtWsu2u76w==", - "dependencies": { - "defer-to-connect": "^2.0.0" - }, - "engines": { - "node": ">=10" - } - }, - "node_modules/swarm-js/node_modules/buffer": { - "version": "5.7.1", - "resolved": "https://registry.npmjs.org/buffer/-/buffer-5.7.1.tgz", - "integrity": "sha512-EHcyIPBQ4BSGlvjB16k5KgAJ27CIsHY/2JBmCRReo48y9rQ3MaUzWX3KVlBa4U7MyX02HdVj0K7C3WaB3ju7FQ==", - "funding": [ - { - "type": "github", - "url": "https://github.com/sponsors/feross" - }, - { - "type": "patreon", - "url": "https://www.patreon.com/feross" - }, - { - "type": "consulting", - "url": "https://feross.org/support" - } - ], - "dependencies": { - "base64-js": "^1.3.1", - "ieee754": "^1.1.13" - } - }, - "node_modules/swarm-js/node_modules/cacheable-lookup": { - "version": "5.0.4", - "resolved": "https://registry.npmjs.org/cacheable-lookup/-/cacheable-lookup-5.0.4.tgz", - "integrity": "sha512-2/kNscPhpcxrOigMZzbiWF7dz8ilhb/nIHU3EyZiXWXpeq/au8qJ8VhdftMkty3n7Gj6HIGalQG8oiBNB3AJgA==", - "engines": { - "node": ">=10.6.0" - } - }, - "node_modules/swarm-js/node_modules/fs-extra": { - "version": "4.0.3", - "resolved": "https://registry.npmjs.org/fs-extra/-/fs-extra-4.0.3.tgz", - "integrity": "sha512-q6rbdDd1o2mAnQreO7YADIxf/Whx4AHBiRf6d+/cVT8h44ss+lHgxf1FemcqDnQt9X3ct4McHr+JMGlYSsK7Cg==", - "dependencies": { - "graceful-fs": "^4.1.2", - "jsonfile": "^4.0.0", - "universalify": "^0.1.0" - } - }, - "node_modules/swarm-js/node_modules/got": { - "version": "11.8.6", - "resolved": "https://registry.npmjs.org/got/-/got-11.8.6.tgz", - "integrity": "sha512-6tfZ91bOr7bOXnK7PRDCGBLa1H4U080YHNaAQ2KsMGlLEzRbk44nsZF2E1IeRc3vtJHPVbKCYgdFbaGO2ljd8g==", - "dependencies": { - "@sindresorhus/is": "^4.0.0", - "@szmarczak/http-timer": "^4.0.5", - "@types/cacheable-request": "^6.0.1", - "@types/responselike": "^1.0.0", - "cacheable-lookup": "^5.0.3", - "cacheable-request": "^7.0.2", - "decompress-response": "^6.0.0", - "http2-wrapper": "^1.0.0-beta.5.2", - "lowercase-keys": "^2.0.0", - "p-cancelable": "^2.0.0", - "responselike": "^2.0.0" - }, - "engines": { - "node": ">=10.19.0" - }, - "funding": { - "url": "https://github.com/sindresorhus/got?sponsor=1" - } - }, - "node_modules/swarm-js/node_modules/http2-wrapper": { - "version": "1.0.3", - "resolved": "https://registry.npmjs.org/http2-wrapper/-/http2-wrapper-1.0.3.tgz", - "integrity": "sha512-V+23sDMr12Wnz7iTcDeJr3O6AIxlnvT/bmaAAAP/Xda35C90p9599p0F1eHR/N1KILWSoWVAiOMFjBBXaXSMxg==", - "dependencies": { - "quick-lru": "^5.1.1", - "resolve-alpn": "^1.0.0" - }, - "engines": { - "node": ">=10.19.0" - } - }, - "node_modules/swarm-js/node_modules/jsonfile": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/jsonfile/-/jsonfile-4.0.0.tgz", - "integrity": "sha512-m6F1R3z8jjlf2imQHS2Qez5sjKWQzbuuhuJ/FKYFRZvPE3PuHcSMVZzfsLhGVOkfd20obL5SWEBew5ShlquNxg==", - "optionalDependencies": { - "graceful-fs": "^4.1.6" - } - }, - "node_modules/swarm-js/node_modules/lowercase-keys": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/lowercase-keys/-/lowercase-keys-2.0.0.tgz", - "integrity": "sha512-tqNXrS78oMOE73NMxK4EMLQsQowWf8jKooH9g7xPavRT706R6bkQJ6DY2Te7QukaZsulxa30wQ7bk0pm4XiHmA==", - "engines": { - "node": ">=8" - } - }, - "node_modules/swarm-js/node_modules/p-cancelable": { - "version": "2.1.1", - "resolved": "https://registry.npmjs.org/p-cancelable/-/p-cancelable-2.1.1.tgz", - "integrity": "sha512-BZOr3nRQHOntUjTrH8+Lh54smKHoHyur8We1V8DSMVrl5A2malOOwuJRnKRDjSnkoeBh4at6BwEnb5I7Jl31wg==", - "engines": { - "node": ">=8" - } - }, - "node_modules/swarm-js/node_modules/universalify": { - "version": "0.1.2", - "resolved": "https://registry.npmjs.org/universalify/-/universalify-0.1.2.tgz", - "integrity": "sha512-rBJeI5CXAlmy1pV+617WB9J63U6XcazHHF2f2dbJix4XzpUF0RS3Zbj0FGIOCAva5P/d/GBOYaACQ1w+0azUkg==", - "engines": { - "node": ">= 4.0.0" - } - }, - "node_modules/symbol-tree": { - "version": "3.2.4", - "resolved": "https://registry.npmjs.org/symbol-tree/-/symbol-tree-3.2.4.tgz", - "integrity": "sha512-9QNk5KwDF+Bvz+PyObkmSYjI5ksVUYtjW7AU22r2NKcfLJcXp96hkDWU3+XndOsUb+AQ9QhfzfCT2O+CNWT5Tw==" - }, - "node_modules/table-layout": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/table-layout/-/table-layout-1.0.2.tgz", - "integrity": "sha512-qd/R7n5rQTRFi+Zf2sk5XVVd9UQl6ZkduPFC3S7WEGJAmetDTjY3qPN50eSKzwuzEyQKy5TN2TiZdkIjos2L6A==", - "dev": true, - "dependencies": { - "array-back": "^4.0.1", - "deep-extend": "~0.6.0", - "typical": "^5.2.0", - "wordwrapjs": "^4.0.0" - }, - "engines": { - "node": ">=8.0.0" - } - }, - "node_modules/table-layout/node_modules/array-back": { - "version": "4.0.2", - "resolved": "https://registry.npmjs.org/array-back/-/array-back-4.0.2.tgz", - "integrity": "sha512-NbdMezxqf94cnNfWLL7V/im0Ub+Anbb0IoZhvzie8+4HJ4nMQuzHuy49FkGYCJK2yAloZ3meiB6AVMClbrI1vg==", - "dev": true, - "engines": { - "node": ">=8" - } - }, - "node_modules/table-layout/node_modules/typical": { - "version": "5.2.0", - "resolved": "https://registry.npmjs.org/typical/-/typical-5.2.0.tgz", - "integrity": "sha512-dvdQgNDNJo+8B2uBQoqdb11eUCE1JQXhvjC/CZtgvZseVd5TYMXnq0+vuUemXbd/Se29cTaUuPX3YIc2xgbvIg==", - "dev": true, - "engines": { - "node": ">=8" - } - }, - "node_modules/tailwindcss": { - "version": "3.1.4", - "resolved": "https://registry.npmjs.org/tailwindcss/-/tailwindcss-3.1.4.tgz", - "integrity": "sha512-NrxbFV4tYsga/hpWbRyUfIaBrNMXDxx5BsHgBS4v5tlyjf+sDsgBg5m9OxjrXIqAS/uR9kicxLKP+bEHI7BSeQ==", - "dependencies": { - "arg": "^5.0.2", - "chokidar": "^3.5.3", - "color-name": "^1.1.4", - "detective": "^5.2.1", - "didyoumean": "^1.2.2", - "dlv": "^1.1.3", - "fast-glob": "^3.2.11", - "glob-parent": "^6.0.2", - "is-glob": "^4.0.3", - "lilconfig": "^2.0.5", - "normalize-path": "^3.0.0", - "object-hash": "^3.0.0", - "picocolors": "^1.0.0", - "postcss": "^8.4.14", - "postcss-import": "^14.1.0", - "postcss-js": "^4.0.0", - "postcss-load-config": "^3.1.4", - "postcss-nested": "5.0.6", - "postcss-selector-parser": "^6.0.10", - "postcss-value-parser": "^4.2.0", - "quick-lru": "^5.1.1", - "resolve": "^1.22.0" - }, - "bin": { - "tailwind": "lib/cli.js", - "tailwindcss": "lib/cli.js" - }, - "engines": { - "node": ">=12.13.0" - }, - "peerDependencies": { - "postcss": "^8.0.9" - } - }, - "node_modules/tailwindcss/node_modules/color-name": { - "version": "1.1.4", - "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz", - "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==" - }, - "node_modules/tapable": { - "version": "2.2.1", - "resolved": "https://registry.npmjs.org/tapable/-/tapable-2.2.1.tgz", - "integrity": "sha512-GNzQvQTOIP6RyTfE2Qxb8ZVlNmw0n88vp1szwWRimP02mnTsx3Wtn5qRdqY9w2XduFNUgvOwhNnQsjwCp+kqaQ==", - "engines": { - "node": ">=6" - } - }, - "node_modules/tar": { - "version": "4.4.19", - "resolved": "https://registry.npmjs.org/tar/-/tar-4.4.19.tgz", - "integrity": "sha512-a20gEsvHnWe0ygBY8JbxoM4w3SJdhc7ZAuxkLqh+nvNQN2IOt0B5lLgM490X5Hl8FF0dl0tOf2ewFYAlIFgzVA==", - "dependencies": { - "chownr": "^1.1.4", - "fs-minipass": "^1.2.7", - "minipass": "^2.9.0", - "minizlib": "^1.3.3", - "mkdirp": "^0.5.5", - "safe-buffer": "^5.2.1", - "yallist": "^3.1.1" - }, - "engines": { - "node": ">=4.5" - } - }, - "node_modules/tar/node_modules/safe-buffer": { - "version": "5.2.1", - "resolved": "https://registry.npmjs.org/safe-buffer/-/safe-buffer-5.2.1.tgz", - "integrity": "sha512-rp3So07KcdmmKbGvgaNxQSJr7bGVSVk5S9Eq1F+ppbRo70+YeaDxkw5Dd8NPN+GD6bjnYm2VuPuCXmpuYvmCXQ==", - "funding": [ - { - "type": "github", - "url": "https://github.com/sponsors/feross" - }, - { - "type": "patreon", - "url": "https://www.patreon.com/feross" - }, - { - "type": "consulting", - "url": "https://feross.org/support" - } - ] - }, - "node_modules/tar/node_modules/yallist": { - "version": "3.1.1", - "resolved": "https://registry.npmjs.org/yallist/-/yallist-3.1.1.tgz", - "integrity": "sha512-a4UGQaWPH59mOXUYnAG2ewncQS4i4F43Tv3JoAM+s2VDAmS9NsK8GpDMLrCHPksFT7h3K6TOoUNn2pb7RoXx4g==" - }, - "node_modules/temp-dir": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/temp-dir/-/temp-dir-2.0.0.tgz", - "integrity": "sha512-aoBAniQmmwtcKp/7BzsH8Cxzv8OL736p7v1ihGb5e9DJ9kTwGWHrQrVB5+lfVDzfGrdRzXch+ig7LHaY1JTOrg==", - "engines": { - "node": ">=8" - } - }, - "node_modules/tempy": { - "version": "0.6.0", - "resolved": "https://registry.npmjs.org/tempy/-/tempy-0.6.0.tgz", - "integrity": "sha512-G13vtMYPT/J8A4X2SjdtBTphZlrp1gKv6hZiOjw14RCWg6GbHuQBGtjlx75xLbYV/wEc0D7G5K4rxKP/cXk8Bw==", - "dependencies": { - "is-stream": "^2.0.0", - "temp-dir": "^2.0.0", - "type-fest": "^0.16.0", - "unique-string": "^2.0.0" - }, - "engines": { - "node": ">=10" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, - "node_modules/tempy/node_modules/type-fest": { - "version": "0.16.0", - "resolved": "https://registry.npmjs.org/type-fest/-/type-fest-0.16.0.tgz", - "integrity": "sha512-eaBzG6MxNzEn9kiwvtre90cXaNLkmadMWa1zQMs3XORCXNbsH/OewwbxC5ia9dCxIxnTAsSxXJaa/p5y8DlvJg==", - "engines": { - "node": ">=10" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, - "node_modules/terminal-link": { - "version": "2.1.1", - "resolved": "https://registry.npmjs.org/terminal-link/-/terminal-link-2.1.1.tgz", - "integrity": "sha512-un0FmiRUQNr5PJqy9kP7c40F5BOfpGlYTrxonDChEZB7pzZxRNp/bt+ymiy9/npwXya9KH99nJ/GXFIiUkYGFQ==", - "dependencies": { - "ansi-escapes": "^4.2.1", - "supports-hyperlinks": "^2.0.0" - }, - "engines": { - "node": ">=8" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, - "node_modules/terser": { - "version": "5.17.1", - "resolved": "https://registry.npmjs.org/terser/-/terser-5.17.1.tgz", - "integrity": "sha512-hVl35zClmpisy6oaoKALOpS0rDYLxRFLHhRuDlEGTKey9qHjS1w9GMORjuwIMt70Wan4lwsLYyWDVnWgF+KUEw==", - "dependencies": { - "@jridgewell/source-map": "^0.3.2", - "acorn": "^8.5.0", - "commander": "^2.20.0", - "source-map-support": "~0.5.20" - }, - "bin": { - "terser": "bin/terser" - }, - "engines": { - "node": ">=10" - } - }, - "node_modules/terser-webpack-plugin": { - "version": "5.3.7", - "resolved": "https://registry.npmjs.org/terser-webpack-plugin/-/terser-webpack-plugin-5.3.7.tgz", - "integrity": "sha512-AfKwIktyP7Cu50xNjXF/6Qb5lBNzYaWpU6YfoX3uZicTx0zTy0stDDCsvjDapKsSDvOeWo5MEq4TmdBy2cNoHw==", - "dependencies": { - "@jridgewell/trace-mapping": "^0.3.17", - "jest-worker": "^27.4.5", - "schema-utils": "^3.1.1", - "serialize-javascript": "^6.0.1", - "terser": "^5.16.5" - }, - "engines": { - "node": ">= 10.13.0" - }, - "funding": { - "type": "opencollective", - "url": "https://opencollective.com/webpack" - }, - "peerDependencies": { - "webpack": "^5.1.0" - }, - "peerDependenciesMeta": { - "@swc/core": { - "optional": true - }, - "esbuild": { - "optional": true - }, - "uglify-js": { - "optional": true - } - } - }, - "node_modules/terser/node_modules/commander": { - "version": "2.20.3", - "resolved": "https://registry.npmjs.org/commander/-/commander-2.20.3.tgz", - "integrity": "sha512-GpVkmM8vF2vQUkj2LvZmD35JxeJOLCwJ9cUkugyk2nuhbv3+mJvpLYYt+0+USMxE+oj+ey/lJEnhZw75x/OMcQ==" - }, - "node_modules/test-exclude": { - "version": "6.0.0", - "resolved": "https://registry.npmjs.org/test-exclude/-/test-exclude-6.0.0.tgz", - "integrity": "sha512-cAGWPIyOHU6zlmg88jwm7VRyXnMN7iV68OGAbYDk/Mh/xC/pzVPlQtY6ngoIH/5/tciuhGfvESU8GrHrcxD56w==", - "dependencies": { - "@istanbuljs/schema": "^0.1.2", - "glob": "^7.1.4", - "minimatch": "^3.0.4" - }, - "engines": { - "node": ">=8" - } - }, - "node_modules/text-table": { - "version": "0.2.0", - "resolved": "https://registry.npmjs.org/text-table/-/text-table-0.2.0.tgz", - "integrity": "sha512-N+8UisAXDGk8PFXP4HAzVR9nbfmVJ3zYLAWiTIoqC5v5isinhr+r5uaO8+7r3BMfuNIufIsA7RdpVgacC2cSpw==" - }, - "node_modules/throat": { - "version": "6.0.1", - "resolved": "https://registry.npmjs.org/throat/-/throat-6.0.1.tgz", - "integrity": "sha512-8hmiGIJMDlwjg7dlJ4yKGLK8EsYqKgPWbG3b4wjJddKNwc7N7Dpn08Df4szr/sZdMVeOstrdYSsqzX6BYbcB+w==" - }, - "node_modules/thunky": { - "version": "1.1.0", - "resolved": "https://registry.npmjs.org/thunky/-/thunky-1.1.0.tgz", - "integrity": "sha512-eHY7nBftgThBqOyHGVN+l8gF0BucP09fMo0oO/Lb0w1OF80dJv+lDVpXG60WMQvkcxAkNybKsrEIE3ZtKGmPrA==" - }, - "node_modules/timed-out": { - "version": "4.0.1", - "resolved": "https://registry.npmjs.org/timed-out/-/timed-out-4.0.1.tgz", - "integrity": "sha512-G7r3AhovYtr5YKOWQkta8RKAPb+J9IsO4uVmzjl8AZwfhs8UcUwTiD6gcJYSgOtzyjvQKrKYn41syHbUWMkafA==", - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/timm": { - "version": "1.7.1", - "resolved": "https://registry.npmjs.org/timm/-/timm-1.7.1.tgz", - "integrity": "sha512-IjZc9KIotudix8bMaBW6QvMuq64BrJWFs1+4V0lXwWGQZwH+LnX87doAYhem4caOEusRP9/g6jVDQmZ8XOk1nw==" - }, - "node_modules/tiny-invariant": { - "version": "1.3.1", - "resolved": "https://registry.npmjs.org/tiny-invariant/-/tiny-invariant-1.3.1.tgz", - "integrity": "sha512-AD5ih2NlSssTCwsMznbvwMZpJ1cbhkGd2uueNxzv2jDlEeZdU04JQfRnggJQ8DrcVBGjAsCKwFBbDlVNtEMlzw==" - }, - "node_modules/tiny-warning": { - "version": "1.0.3", - "resolved": "https://registry.npmjs.org/tiny-warning/-/tiny-warning-1.0.3.tgz", - "integrity": "sha512-lBN9zLN/oAf68o3zNXYrdCt1kP8WsiGW8Oo2ka41b2IM5JL/S1CTyX1rW0mb/zSuJun0ZUrDxx4sqvYS2FWzPA==" - }, - "node_modules/tinycolor2": { - "version": "1.6.0", - "resolved": "https://registry.npmjs.org/tinycolor2/-/tinycolor2-1.6.0.tgz", - "integrity": "sha512-XPaBkWQJdsf3pLKJV9p4qN/S+fm2Oj8AIPo1BTUhg5oxkvm9+SVEGFdhyOz7tTdUTfvxMiAs4sp6/eZO2Ew+pw==" - }, - "node_modules/tmp": { - "version": "0.0.33", - "resolved": "https://registry.npmjs.org/tmp/-/tmp-0.0.33.tgz", - "integrity": "sha512-jRCJlojKnZ3addtTOjdIqoRuPEKBvNXcGYqzO6zWZX8KfKEpnGY5jfggJQ3EjKuu8D4bJRr0y+cYJFmYbImXGw==", - "peer": true, - "dependencies": { - "os-tmpdir": "~1.0.2" - }, - "engines": { - "node": ">=0.6.0" - } - }, - "node_modules/tmpl": { - "version": "1.0.5", - "resolved": "https://registry.npmjs.org/tmpl/-/tmpl-1.0.5.tgz", - "integrity": "sha512-3f0uOEAQwIqGuWW2MVzYg8fV/QNnc/IpuJNG837rLuczAaLVHslWHZQj4IGiEl5Hs3kkbhwL9Ab7Hrsmuj+Smw==" - }, - "node_modules/to-fast-properties": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/to-fast-properties/-/to-fast-properties-2.0.0.tgz", - "integrity": "sha512-/OaKK0xYrs3DmxRYqL/yDc+FxFUVYhDlXMhRmv3z915w2HF1tnN1omB354j8VUGO/hbRzyD6Y3sA7v7GS/ceog==", - "engines": { - "node": ">=4" - } - }, - "node_modules/to-regex-range": { - "version": "5.0.1", - "resolved": "https://registry.npmjs.org/to-regex-range/-/to-regex-range-5.0.1.tgz", - "integrity": "sha512-65P7iz6X5yEr1cwcgvQxbbIw7Uk3gOy5dIdtZ4rDveLqhrdJP+Li/Hx6tyK0NEb+2GCyneCMJiGqrADCSNk8sQ==", - "dependencies": { - "is-number": "^7.0.0" - }, - "engines": { - "node": ">=8.0" - } - }, - "node_modules/toformat": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/toformat/-/toformat-2.0.0.tgz", - "integrity": "sha512-03SWBVop6nU8bpyZCx7SodpYznbZF5R4ljwNLBcTQzKOD9xuihRo/psX58llS1BMFhhAI08H3luot5GoXJz2pQ==" - }, - "node_modules/toidentifier": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/toidentifier/-/toidentifier-1.0.1.tgz", - "integrity": "sha512-o5sSPKEkg/DIQNmH43V0/uerLrpzVedkUh8tGNvaeXpfpuwjKenlSox/2O/BTlZUtEe+JG7s5YhEz608PlAHRA==", - "engines": { - "node": ">=0.6" - } - }, - "node_modules/token-types": { - "version": "4.2.1", - "resolved": "https://registry.npmjs.org/token-types/-/token-types-4.2.1.tgz", - "integrity": "sha512-6udB24Q737UD/SDsKAHI9FCRP7Bqc9D/MQUV02ORQg5iskjtLJlZJNdN4kKtcdtwCeWIwIHDGaUsTsCCAa8sFQ==", - "dependencies": { - "@tokenizer/token": "^0.3.0", - "ieee754": "^1.2.1" - }, - "engines": { - "node": ">=10" - }, - "funding": { - "type": "github", - "url": "https://github.com/sponsors/Borewit" - } - }, - "node_modules/tough-cookie": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/tough-cookie/-/tough-cookie-4.0.0.tgz", - "integrity": "sha512-tHdtEpQCMrc1YLrMaqXXcj6AxhYi/xgit6mZu1+EDWUn+qhUf8wMQoFIy9NXuq23zAwtcB0t/MjACGR18pcRbg==", - "dependencies": { - "psl": "^1.1.33", - "punycode": "^2.1.1", - "universalify": "^0.1.2" - }, - "engines": { - "node": ">=6" - } - }, - "node_modules/tough-cookie/node_modules/universalify": { - "version": "0.1.2", - "resolved": "https://registry.npmjs.org/universalify/-/universalify-0.1.2.tgz", - "integrity": "sha512-rBJeI5CXAlmy1pV+617WB9J63U6XcazHHF2f2dbJix4XzpUF0RS3Zbj0FGIOCAva5P/d/GBOYaACQ1w+0azUkg==", - "engines": { - "node": ">= 4.0.0" - } - }, - "node_modules/tr46": { - "version": "2.1.0", - "resolved": "https://registry.npmjs.org/tr46/-/tr46-2.1.0.tgz", - "integrity": "sha512-15Ih7phfcdP5YxqiB+iDtLoaTz4Nd35+IiAv0kQ5FNKHzXgdWqPoTIqEDDJmXceQt4JZk6lVPT8lnDlPpGDppw==", - "dependencies": { - "punycode": "^2.1.1" - }, - "engines": { - "node": ">=8" - } - }, - "node_modules/tryer": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/tryer/-/tryer-1.0.1.tgz", - "integrity": "sha512-c3zayb8/kWWpycWYg87P71E1S1ZL6b6IJxfb5fvsUgsf0S2MVGaDhDXXjDMpdCpfWXqptc+4mXwmiy1ypXqRAA==" - }, - "node_modules/ts-command-line-args": { - "version": "2.3.1", - "resolved": "https://registry.npmjs.org/ts-command-line-args/-/ts-command-line-args-2.3.1.tgz", - "integrity": "sha512-FR3y7pLl/fuUNSmnPhfLArGqRrpojQgIEEOVzYx9DhTmfIN7C9RWSfpkJEF4J+Gk7aVx5pak8I7vWZsaN4N84g==", - "dev": true, - "dependencies": { - "chalk": "^4.1.0", - "command-line-args": "^5.1.1", - "command-line-usage": "^6.1.0", - "string-format": "^2.0.0" - }, - "bin": { - "write-markdown": "dist/write-markdown.js" - } - }, - "node_modules/ts-command-line-args/node_modules/ansi-styles": { - "version": "4.3.0", - "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", - "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", - "dev": true, - "dependencies": { - "color-convert": "^2.0.1" - }, - "engines": { - "node": ">=8" - }, - "funding": { - "url": "https://github.com/chalk/ansi-styles?sponsor=1" - } - }, - "node_modules/ts-command-line-args/node_modules/chalk": { - "version": "4.1.2", - "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz", - "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==", - "dev": true, - "dependencies": { - "ansi-styles": "^4.1.0", - "supports-color": "^7.1.0" - }, - "engines": { - "node": ">=10" - }, - "funding": { - "url": "https://github.com/chalk/chalk?sponsor=1" - } - }, - "node_modules/ts-command-line-args/node_modules/color-convert": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz", - "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==", - "dev": true, - "dependencies": { - "color-name": "~1.1.4" - }, - "engines": { - "node": ">=7.0.0" - } - }, - "node_modules/ts-command-line-args/node_modules/color-name": { - "version": "1.1.4", - "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz", - "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==", - "dev": true - }, - "node_modules/ts-command-line-args/node_modules/has-flag": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz", - "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==", - "dev": true, - "engines": { - "node": ">=8" - } - }, - "node_modules/ts-command-line-args/node_modules/supports-color": { - "version": "7.2.0", - "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", - "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", - "dev": true, - "dependencies": { - "has-flag": "^4.0.0" - }, - "engines": { - "node": ">=8" - } - }, - "node_modules/ts-custom-error": { - "version": "3.3.1", - "resolved": "https://registry.npmjs.org/ts-custom-error/-/ts-custom-error-3.3.1.tgz", - "integrity": "sha512-5OX1tzOjxWEgsr/YEUWSuPrQ00deKLh6D7OTWcvNHm12/7QPyRh8SYpyWvA4IZv8H/+GQWQEh/kwo95Q9OVW1A==", - "engines": { - "node": ">=14.0.0" - } - }, - "node_modules/ts-essentials": { - "version": "7.0.3", - "resolved": "https://registry.npmjs.org/ts-essentials/-/ts-essentials-7.0.3.tgz", - "integrity": "sha512-8+gr5+lqO3G84KdiTSMRLtuyJ+nTBVRKuCrK4lidMPdVeEp0uqC875uE5NMcaA7YYMN7XsNiFQuMvasF8HT/xQ==", - "dev": true, - "peerDependencies": { - "typescript": ">=3.7.0" - } - }, - "node_modules/ts-toolbelt": { - "version": "9.6.0", - "resolved": "https://registry.npmjs.org/ts-toolbelt/-/ts-toolbelt-9.6.0.tgz", - "integrity": "sha512-nsZd8ZeNUzukXPlJmTBwUAuABDe/9qtVDelJeT/qW0ow3ZS3BsQJtNkan1802aM9Uf68/Y8ljw86Hu0h5IUW3w==" - }, - "node_modules/tsconfig-paths": { - "version": "3.14.1", - "resolved": "https://registry.npmjs.org/tsconfig-paths/-/tsconfig-paths-3.14.1.tgz", - "integrity": "sha512-fxDhWnFSLt3VuTwtvJt5fpwxBHg5AdKWMsgcPOOIilyjymcYVZoCQF8fvFRezCNfblEXmi+PcM1eYHeOAgXCOQ==", - "dependencies": { - "@types/json5": "^0.0.29", - "json5": "^1.0.1", - "minimist": "^1.2.6", - "strip-bom": "^3.0.0" - } - }, - "node_modules/tsconfig-paths/node_modules/json5": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/json5/-/json5-1.0.2.tgz", - "integrity": "sha512-g1MWMLBiz8FKi1e4w0UyVL3w+iJceWAFBAaBnnGKOpNa5f8TLktkbre1+s6oICydWAm+HRUGTmI+//xv2hvXYA==", - "dependencies": { - "minimist": "^1.2.0" - }, - "bin": { - "json5": "lib/cli.js" - } - }, - "node_modules/tsconfig-paths/node_modules/strip-bom": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/strip-bom/-/strip-bom-3.0.0.tgz", - "integrity": "sha512-vavAMRXOgBVNF6nyEEmL3DBK19iRpDcoIwW+swQ+CbGiu7lju6t+JklA1MHweoWtadgt4ISVUsXLyDq34ddcwA==", - "engines": { - "node": ">=4" - } - }, - "node_modules/tslib": { - "version": "2.4.0", - "resolved": "https://registry.npmjs.org/tslib/-/tslib-2.4.0.tgz", - "integrity": "sha512-d6xOpEDfsi2CZVlPQzGeux8XMwLT9hssAsaPYExaQMuYskwb+x1x7J371tWlbBdWHroy99KnVB6qIkUbs5X3UQ==" - }, - "node_modules/tsort": { - "version": "0.0.1", - "resolved": "https://registry.npmjs.org/tsort/-/tsort-0.0.1.tgz", - "integrity": "sha512-Tyrf5mxF8Ofs1tNoxA13lFeZ2Zrbd6cKbuH3V+MQ5sb6DtBj5FjrXVsRWT8YvNAQTqNoz66dz1WsbigI22aEnw==", - "peer": true - }, - "node_modules/tsutils": { - "version": "3.21.0", - "resolved": "https://registry.npmjs.org/tsutils/-/tsutils-3.21.0.tgz", - "integrity": "sha512-mHKK3iUXL+3UF6xL5k0PEhKRUBKPBCv/+RkEOpjRWxxx27KKRBmmA60A9pgOUvMi8GKhRMPEmjBRPzs2W7O1OA==", - "dependencies": { - "tslib": "^1.8.1" - }, - "engines": { - "node": ">= 6" - }, - "peerDependencies": { - "typescript": ">=2.8.0 || >= 3.2.0-dev || >= 3.3.0-dev || >= 3.4.0-dev || >= 3.5.0-dev || >= 3.6.0-dev || >= 3.6.0-beta || >= 3.7.0-dev || >= 3.7.0-beta" - } - }, - "node_modules/tsutils/node_modules/tslib": { - "version": "1.14.1", - "resolved": "https://registry.npmjs.org/tslib/-/tslib-1.14.1.tgz", - "integrity": "sha512-Xni35NKzjgMrwevysHTCArtLDpPvye8zV/0E4EyYn43P7/7qvQwPh9BGkHewbMulVntbigmcT7rdX3BNo9wRJg==" - }, - "node_modules/tunnel-agent": { - "version": "0.6.0", - "resolved": "https://registry.npmjs.org/tunnel-agent/-/tunnel-agent-0.6.0.tgz", - "integrity": "sha512-McnNiV1l8RYeY8tBgEpuodCC1mLUdbSN+CYBL7kJsJNInOP8UjDDEwdk6Mw60vdLLrr5NHKZhMAOSrR2NZuQ+w==", - "dependencies": { - "safe-buffer": "^5.0.1" - }, - "engines": { - "node": "*" - } - }, - "node_modules/tweetnacl": { - "version": "1.0.3", - "resolved": "https://registry.npmjs.org/tweetnacl/-/tweetnacl-1.0.3.tgz", - "integrity": "sha512-6rt+RN7aOi1nGMyC4Xa5DdYiukl2UWCbcJft7YhxReBGQD7OAM8Pbxw6YMo4r2diNEA8FEmu32YOn9rhaiE5yw==", - "peer": true - }, - "node_modules/tweetnacl-util": { - "version": "0.15.1", - "resolved": "https://registry.npmjs.org/tweetnacl-util/-/tweetnacl-util-0.15.1.tgz", - "integrity": "sha512-RKJBIj8lySrShN4w6i/BonWp2Z/uxwC3h4y7xsRrpP59ZboCd0GpEVsOnMDYLMmKBpYhb5TgHzZXy7wTfYFBRw==", - "peer": true - }, - "node_modules/type": { - "version": "1.2.0", - "resolved": "https://registry.npmjs.org/type/-/type-1.2.0.tgz", - "integrity": "sha512-+5nt5AAniqsCnu2cEQQdpzCAh33kVx8n0VoFidKpB1dVVLAN/F+bgVOqOJqOnEnrhp222clB5p3vUlD+1QAnfg==" - }, - "node_modules/type-check": { - "version": "0.4.0", - "resolved": "https://registry.npmjs.org/type-check/-/type-check-0.4.0.tgz", - "integrity": "sha512-XleUoc9uwGXqjWwXaUTZAmzMcFZ5858QA2vvx1Ur5xIcixXIP+8LnFDgRplU30us6teqdlskFfu+ae4K79Ooew==", - "dependencies": { - "prelude-ls": "^1.2.1" - }, - "engines": { - "node": ">= 0.8.0" - } - }, - "node_modules/type-detect": { - "version": "4.0.8", - "resolved": "https://registry.npmjs.org/type-detect/-/type-detect-4.0.8.tgz", - "integrity": "sha512-0fr/mIH1dlO+x7TlcMy+bIDqKPsw/70tVyeHW787goQjhmqaZe10uwLujubK9q9Lg6Fiho1KUKDYz0Z7k7g5/g==", - "engines": { - "node": ">=4" - } - }, - "node_modules/type-fest": { - "version": "0.21.3", - "resolved": "https://registry.npmjs.org/type-fest/-/type-fest-0.21.3.tgz", - "integrity": "sha512-t0rzBq87m3fVcduHDUFhKmyyX+9eo6WQjZvf51Ea/M0Q7+T374Jp1aUiyUl0GKxp8M/OETVHSDvmkyPgvX+X2w==", - "engines": { - "node": ">=10" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, - "node_modules/type-is": { - "version": "1.6.18", - "resolved": "https://registry.npmjs.org/type-is/-/type-is-1.6.18.tgz", - "integrity": "sha512-TkRKr9sUTxEH8MdfuCSP7VizJyzRNMjj2J2do2Jr3Kym598JVdEksuzPQCnlFPW4ky9Q+iA+ma9BGm06XQBy8g==", - "dependencies": { - "media-typer": "0.3.0", - "mime-types": "~2.1.24" - }, - "engines": { - "node": ">= 0.6" - } - }, - "node_modules/typechain": { - "version": "8.2.0", - "resolved": "https://registry.npmjs.org/typechain/-/typechain-8.2.0.tgz", - "integrity": "sha512-tZqhqjxJ9xAS/Lh32jccTjMkpx7sTdUVVHAy5Bf0TIer5QFNYXotiX74oCvoVYjyxUKDK3MXHtMFzMyD3kE+jg==", - "dev": true, - "dependencies": { - "@types/prettier": "^2.1.1", - "debug": "^4.3.1", - "fs-extra": "^7.0.0", - "glob": "7.1.7", - "js-sha3": "^0.8.0", - "lodash": "^4.17.15", - "mkdirp": "^1.0.4", - "prettier": "^2.3.1", - "ts-command-line-args": "^2.2.0", - "ts-essentials": "^7.0.1" - }, - "bin": { - "typechain": "dist/cli/cli.js" - }, - "peerDependencies": { - "typescript": ">=4.3.0" - } - }, - "node_modules/typechain/node_modules/fs-extra": { - "version": "7.0.1", - "resolved": "https://registry.npmjs.org/fs-extra/-/fs-extra-7.0.1.tgz", - "integrity": "sha512-YJDaCJZEnBmcbw13fvdAM9AwNOJwOzrE4pqMqBq5nFiEqXUqHwlK4B+3pUw6JNvfSPtX05xFHtYy/1ni01eGCw==", - "dev": true, - "dependencies": { - "graceful-fs": "^4.1.2", - "jsonfile": "^4.0.0", - "universalify": "^0.1.0" - }, - "engines": { - "node": ">=6 <7 || >=8" - } - }, - "node_modules/typechain/node_modules/glob": { - "version": "7.1.7", - "resolved": "https://registry.npmjs.org/glob/-/glob-7.1.7.tgz", - "integrity": "sha512-OvD9ENzPLbegENnYP5UUfJIirTg4+XwMWGaQfQTY0JenxNvvIKP3U3/tAQSPIu/lHxXYSZmpXlUHeqAIdKzBLQ==", - "dev": true, - "dependencies": { - "fs.realpath": "^1.0.0", - "inflight": "^1.0.4", - "inherits": "2", - "minimatch": "^3.0.4", - "once": "^1.3.0", - "path-is-absolute": "^1.0.0" - }, - "engines": { - "node": "*" - }, - "funding": { - "url": "https://github.com/sponsors/isaacs" - } - }, - "node_modules/typechain/node_modules/jsonfile": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/jsonfile/-/jsonfile-4.0.0.tgz", - "integrity": "sha512-m6F1R3z8jjlf2imQHS2Qez5sjKWQzbuuhuJ/FKYFRZvPE3PuHcSMVZzfsLhGVOkfd20obL5SWEBew5ShlquNxg==", - "dev": true, - "optionalDependencies": { - "graceful-fs": "^4.1.6" - } - }, - "node_modules/typechain/node_modules/mkdirp": { - "version": "1.0.4", - "resolved": "https://registry.npmjs.org/mkdirp/-/mkdirp-1.0.4.tgz", - "integrity": "sha512-vVqVZQyf3WLx2Shd0qJ9xuvqgAyKPLAiqITEtqW0oIUjzo3PePDd6fW9iFz30ef7Ysp/oiWqbhszeGWW2T6Gzw==", - "dev": true, - "bin": { - "mkdirp": "bin/cmd.js" - }, - "engines": { - "node": ">=10" - } - }, - "node_modules/typechain/node_modules/universalify": { - "version": "0.1.2", - "resolved": "https://registry.npmjs.org/universalify/-/universalify-0.1.2.tgz", - "integrity": "sha512-rBJeI5CXAlmy1pV+617WB9J63U6XcazHHF2f2dbJix4XzpUF0RS3Zbj0FGIOCAva5P/d/GBOYaACQ1w+0azUkg==", - "dev": true, - "engines": { - "node": ">= 4.0.0" - } - }, - "node_modules/typed-array-length": { - "version": "1.0.4", - "resolved": "https://registry.npmjs.org/typed-array-length/-/typed-array-length-1.0.4.tgz", - "integrity": "sha512-KjZypGq+I/H7HI5HlOoGHkWUUGq+Q0TPhQurLbyrVrvnKTBgzLhIJ7j6J/XTQOi0d1RjyZ0wdas8bKs2p0x3Ng==", - "dependencies": { - "call-bind": "^1.0.2", - "for-each": "^0.3.3", - "is-typed-array": "^1.1.9" - }, - "funding": { - "url": "https://github.com/sponsors/ljharb" - } - }, - "node_modules/typedarray-to-buffer": { - "version": "3.1.5", - "resolved": "https://registry.npmjs.org/typedarray-to-buffer/-/typedarray-to-buffer-3.1.5.tgz", - "integrity": "sha512-zdu8XMNEDepKKR+XYOXAVPtWui0ly0NtohUscw+UmaHiAWT8hrV1rr//H6V+0DvJ3OQ19S979M0laLfX8rm82Q==", - "dependencies": { - "is-typedarray": "^1.0.0" - } - }, - "node_modules/typedoc": { - "version": "0.23.28", - "resolved": "https://registry.npmjs.org/typedoc/-/typedoc-0.23.28.tgz", - "integrity": "sha512-9x1+hZWTHEQcGoP7qFmlo4unUoVJLB0H/8vfO/7wqTnZxg4kPuji9y3uRzEu0ZKez63OJAUmiGhUrtukC6Uj3w==", - "dependencies": { - "lunr": "^2.3.9", - "marked": "^4.2.12", - "minimatch": "^7.1.3", - "shiki": "^0.14.1" - }, - "bin": { - "typedoc": "bin/typedoc" - }, - "engines": { - "node": ">= 14.14" - }, - "peerDependencies": { - "typescript": "4.6.x || 4.7.x || 4.8.x || 4.9.x || 5.0.x" - } - }, - "node_modules/typedoc/node_modules/brace-expansion": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-2.0.1.tgz", - "integrity": "sha512-XnAIvQ8eM+kC6aULx6wuQiwVsnzsi9d3WxzV3FpWTGA19F621kwdbsAcFKXgKUHZWsy+mY6iL1sHTxWEFCytDA==", - "dependencies": { - "balanced-match": "^1.0.0" - } - }, - "node_modules/typedoc/node_modules/minimatch": { - "version": "7.4.6", - "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-7.4.6.tgz", - "integrity": "sha512-sBz8G/YjVniEz6lKPNpKxXwazJe4c19fEfV2GDMX6AjFz+MX9uDWIZW8XreVhkFW3fkIdTv/gxWr/Kks5FFAVw==", - "dependencies": { - "brace-expansion": "^2.0.1" - }, - "engines": { - "node": ">=10" - }, - "funding": { - "url": "https://github.com/sponsors/isaacs" - } - }, - "node_modules/typescript": { - "version": "4.8.2", - "resolved": "https://registry.npmjs.org/typescript/-/typescript-4.8.2.tgz", - "integrity": "sha512-C0I1UsrrDHo2fYI5oaCGbSejwX4ch+9Y5jTQELvovfmFkK3HHSZJB8MSJcWLmCUBzQBchCrZ9rMRV6GuNrvGtw==", - "bin": { - "tsc": "bin/tsc", - "tsserver": "bin/tsserver" - }, - "engines": { - "node": ">=4.2.0" - } - }, - "node_modules/typical": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/typical/-/typical-4.0.0.tgz", - "integrity": "sha512-VAH4IvQ7BDFYglMd7BPRDfLgxZZX4O4TFcRDA6EN5X7erNJJq+McIEp8np9aVtxrCJ6qx4GTYVfOWNjcqwZgRw==", - "dev": true, - "engines": { - "node": ">=8" - } - }, - "node_modules/uint8arrays": { - "version": "3.1.1", - "resolved": "https://registry.npmjs.org/uint8arrays/-/uint8arrays-3.1.1.tgz", - "integrity": "sha512-+QJa8QRnbdXVpHYjLoTpJIdCTiw9Ir62nocClWuXIq2JIh4Uta0cQsTSpFL678p2CN8B+XSApwcU+pQEqVpKWg==", - "dependencies": { - "multiformats": "^9.4.2" - } - }, - "node_modules/ultron": { - "version": "1.1.1", - "resolved": "https://registry.npmjs.org/ultron/-/ultron-1.1.1.tgz", - "integrity": "sha512-UIEXBNeYmKptWH6z8ZnqTeS8fV74zG0/eRU9VGkpzz+LIJNs8W/zM/L+7ctCkRrgbNnnR0xxw4bKOr0cW0N0Og==" - }, - "node_modules/unbox-primitive": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/unbox-primitive/-/unbox-primitive-1.0.2.tgz", - "integrity": "sha512-61pPlCD9h51VoreyJ0BReideM3MDKMKnh6+V9L08331ipq6Q8OFXZYiqP6n/tbHx4s5I9uRhcye6BrbkizkBDw==", - "dependencies": { - "call-bind": "^1.0.2", - "has-bigints": "^1.0.2", - "has-symbols": "^1.0.3", - "which-boxed-primitive": "^1.0.2" - }, - "funding": { - "url": "https://github.com/sponsors/ljharb" - } - }, - "node_modules/undici": { - "version": "5.22.0", - "resolved": "https://registry.npmjs.org/undici/-/undici-5.22.0.tgz", - "integrity": "sha512-fR9RXCc+6Dxav4P9VV/sp5w3eFiSdOjJYsbtWfd4s5L5C4ogyuVpdKIVHeW0vV1MloM65/f7W45nR9ZxwVdyiA==", - "peer": true, - "dependencies": { - "busboy": "^1.6.0" - }, - "engines": { - "node": ">=14.0" - } - }, - "node_modules/unicode-canonical-property-names-ecmascript": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/unicode-canonical-property-names-ecmascript/-/unicode-canonical-property-names-ecmascript-2.0.0.tgz", - "integrity": "sha512-yY5PpDlfVIU5+y/BSCxAJRBIS1Zc2dDG3Ujq+sR0U+JjUevW2JhocOF+soROYDSaAezOzOKuyyixhD6mBknSmQ==", - "engines": { - "node": ">=4" - } - }, - "node_modules/unicode-match-property-ecmascript": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/unicode-match-property-ecmascript/-/unicode-match-property-ecmascript-2.0.0.tgz", - "integrity": "sha512-5kaZCrbp5mmbz5ulBkDkbY0SsPOjKqVS35VpL9ulMPfSl0J0Xsm+9Evphv9CoIZFwre7aJoa94AY6seMKGVN5Q==", - "dependencies": { - "unicode-canonical-property-names-ecmascript": "^2.0.0", - "unicode-property-aliases-ecmascript": "^2.0.0" - }, - "engines": { - "node": ">=4" - } - }, - "node_modules/unicode-match-property-value-ecmascript": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/unicode-match-property-value-ecmascript/-/unicode-match-property-value-ecmascript-2.0.0.tgz", - "integrity": "sha512-7Yhkc0Ye+t4PNYzOGKedDhXbYIBe1XEQYQxOPyhcXNMJ0WCABqqj6ckydd6pWRZTHV4GuCPKdBAUiMc60tsKVw==", - "engines": { - "node": ">=4" - } - }, - "node_modules/unicode-property-aliases-ecmascript": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/unicode-property-aliases-ecmascript/-/unicode-property-aliases-ecmascript-2.0.0.tgz", - "integrity": "sha512-5Zfuy9q/DFr4tfO7ZPeVXb1aPoeQSdeFMLpYuFebehDAhbuevLs5yxSZmIFN1tP5F9Wl4IpJrYojg85/zgyZHQ==", - "engines": { - "node": ">=4" - } - }, - "node_modules/unique-string": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/unique-string/-/unique-string-2.0.0.tgz", - "integrity": "sha512-uNaeirEPvpZWSgzwsPGtU2zVSTrn/8L5q/IexZmH0eH6SA73CmAA5U4GwORTxQAZs95TAXLNqeLoPPNO5gZfWg==", - "dependencies": { - "crypto-random-string": "^2.0.0" - }, - "engines": { - "node": ">=8" - } - }, - "node_modules/universalify": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/universalify/-/universalify-2.0.0.tgz", - "integrity": "sha512-hAZsKq7Yy11Zu1DE0OzWjw7nnLZmJZYTDZZyEFHZdUhV8FkH5MCfoU1XMaxXovpyW5nq5scPqq0ZDP9Zyl04oQ==", - "engines": { - "node": ">= 10.0.0" - } - }, - "node_modules/unpipe": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/unpipe/-/unpipe-1.0.0.tgz", - "integrity": "sha512-pjy2bYhSsufwWlKwPc+l3cN7+wuJlK6uz0YdJEOlQDbl6jo/YlPi4mb8agUkVC8BF7V8NuzeyPNqRksA3hztKQ==", - "engines": { - "node": ">= 0.8" - } - }, - "node_modules/unquote": { - "version": "1.1.1", - "resolved": "https://registry.npmjs.org/unquote/-/unquote-1.1.1.tgz", - "integrity": "sha512-vRCqFv6UhXpWxZPyGDh/F3ZpNv8/qo7w6iufLpQg9aKnQ71qM4B5KiI7Mia9COcjEhrO9LueHpMYjYzsWH3OIg==" - }, - "node_modules/upath": { - "version": "1.2.0", - "resolved": "https://registry.npmjs.org/upath/-/upath-1.2.0.tgz", - "integrity": "sha512-aZwGpamFO61g3OlfT7OQCHqhGnW43ieH9WZeP7QxN/G/jS4jfqUkZxoryvJgVPEcrl5NL/ggHsSmLMHuH64Lhg==", - "engines": { - "node": ">=4", - "yarn": "*" - } - }, - "node_modules/update-browserslist-db": { - "version": "1.0.4", - "resolved": "https://registry.npmjs.org/update-browserslist-db/-/update-browserslist-db-1.0.4.tgz", - "integrity": "sha512-jnmO2BEGUjsMOe/Fg9u0oczOe/ppIDZPebzccl1yDWGLFP16Pa1/RM5wEoKYPG2zstNcDuAStejyxsOuKINdGA==", - "funding": [ - { - "type": "opencollective", - "url": "https://opencollective.com/browserslist" - }, - { - "type": "tidelift", - "url": "https://tidelift.com/funding/github/npm/browserslist" - } - ], - "dependencies": { - "escalade": "^3.1.1", - "picocolors": "^1.0.0" - }, - "bin": { - "browserslist-lint": "cli.js" - }, - "peerDependencies": { - "browserslist": ">= 4.21.0" - } - }, - "node_modules/uri-js": { - "version": "4.4.1", - "resolved": "https://registry.npmjs.org/uri-js/-/uri-js-4.4.1.tgz", - "integrity": "sha512-7rKUyy33Q1yc98pQ1DAmLtwX109F7TIfWlW1Ydo8Wl1ii1SeHieeh0HHfPeL2fMXK6z0s8ecKs9frCuLJvndBg==", - "dependencies": { - "punycode": "^2.1.0" - } - }, - "node_modules/url": { - "version": "0.11.0", - "resolved": "https://registry.npmjs.org/url/-/url-0.11.0.tgz", - "integrity": "sha512-kbailJa29QrtXnxgq+DdCEGlbTeYM2eJUxsz6vjZavrCYPMIFHMKQmSKYAIuUK2i7hgPm28a8piX5NTUtM/LKQ==", - "dependencies": { - "punycode": "1.3.2", - "querystring": "0.2.0" - } - }, - "node_modules/url-join": { - "version": "4.0.1", - "resolved": "https://registry.npmjs.org/url-join/-/url-join-4.0.1.tgz", - "integrity": "sha512-jk1+QP6ZJqyOiuEI9AEWQfju/nB2Pw466kbA0LEZljHwKeMgd9WrAEgEGxjPDD2+TNbbb37rTyhEfrCXfuKXnA==" - }, - "node_modules/url-set-query": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/url-set-query/-/url-set-query-1.0.0.tgz", - "integrity": "sha512-3AChu4NiXquPfeckE5R5cGdiHCMWJx1dwCWOmWIL4KHAziJNOFIYJlpGFeKDvwLPHovZRCxK3cYlwzqI9Vp+Gg==" - }, - "node_modules/url/node_modules/punycode": { - "version": "1.3.2", - "resolved": "https://registry.npmjs.org/punycode/-/punycode-1.3.2.tgz", - "integrity": "sha512-RofWgt/7fL5wP1Y7fxE7/EmTLzQVnB0ycyibJ0OOHIlJqTNzglYFxVwETOcIoJqJmpDXJ9xImDv+Fq34F/d4Dw==" - }, - "node_modules/use-sync-external-store": { - "version": "1.2.0", - "resolved": "https://registry.npmjs.org/use-sync-external-store/-/use-sync-external-store-1.2.0.tgz", - "integrity": "sha512-eEgnFxGQ1Ife9bzYs6VLi8/4X6CObHMw9Qr9tPY43iKwsPw8xE8+EFsf/2cFZ5S3esXgpWgtSCtLNS41F+sKPA==", - "peerDependencies": { - "react": "^16.8.0 || ^17.0.0 || ^18.0.0" - } - }, - "node_modules/utf-8-validate": { - "version": "5.0.9", - "resolved": "https://registry.npmjs.org/utf-8-validate/-/utf-8-validate-5.0.9.tgz", - "integrity": "sha512-Yek7dAy0v3Kl0orwMlvi7TPtiCNrdfHNd7Gcc/pLq4BLXqfAmd0J7OWMizUQnTTJsyjKn02mU7anqwfmUP4J8Q==", - "hasInstallScript": true, - "dependencies": { - "node-gyp-build": "^4.3.0" - }, - "engines": { - "node": ">=6.14.2" - } - }, - "node_modules/utf8": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/utf8/-/utf8-3.0.0.tgz", - "integrity": "sha512-E8VjFIQ/TyQgp+TZfS6l8yp/xWppSAHzidGiRrqe4bK4XP9pTRyKFgGJpO3SN7zdX4DeomTrwaseCHovfpFcqQ==" - }, - "node_modules/utif": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/utif/-/utif-2.0.1.tgz", - "integrity": "sha512-Z/S1fNKCicQTf375lIP9G8Sa1H/phcysstNrrSdZKj1f9g58J4NMgb5IgiEZN9/nLMPDwF0W7hdOe9Qq2IYoLg==", - "dependencies": { - "pako": "^1.0.5" - } - }, - "node_modules/utif/node_modules/pako": { - "version": "1.0.11", - "resolved": "https://registry.npmjs.org/pako/-/pako-1.0.11.tgz", - "integrity": "sha512-4hLB8Py4zZce5s4yd9XzopqwVv/yGNhV1Bl8NTmCq1763HeK2+EwVTv+leGeL13Dnh2wfbqowVPXCIO0z4taYw==" - }, - "node_modules/util": { - "version": "0.12.5", - "resolved": "https://registry.npmjs.org/util/-/util-0.12.5.tgz", - "integrity": "sha512-kZf/K6hEIrWHI6XqOFUiiMa+79wE/D8Q+NCNAWclkyg3b4d2k7s0QGepNjiABc+aR3N1PAyHL7p6UcLY6LmrnA==", - "dependencies": { - "inherits": "^2.0.3", - "is-arguments": "^1.0.4", - "is-generator-function": "^1.0.7", - "is-typed-array": "^1.1.3", - "which-typed-array": "^1.1.2" - } - }, - "node_modules/util-deprecate": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/util-deprecate/-/util-deprecate-1.0.2.tgz", - "integrity": "sha512-EPD5q1uXyFxJpCrLnCc1nHnq3gOa6DZBocAIiI2TaSCA7VCJ1UJDMagCzIkXNsUYfD1daK//LTEQ8xiIbrHtcw==" - }, - "node_modules/util.promisify": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/util.promisify/-/util.promisify-1.0.1.tgz", - "integrity": "sha512-g9JpC/3He3bm38zsLupWryXHoEcS22YHthuPQSJdMy6KNrzIRzWqcsHzD/WUnqe45whVou4VIsPew37DoXWNrA==", - "dependencies": { - "define-properties": "^1.1.3", - "es-abstract": "^1.17.2", - "has-symbols": "^1.0.1", - "object.getownpropertydescriptors": "^2.1.0" - }, - "funding": { - "url": "https://github.com/sponsors/ljharb" - } - }, - "node_modules/utila": { - "version": "0.4.0", - "resolved": "https://registry.npmjs.org/utila/-/utila-0.4.0.tgz", - "integrity": "sha512-Z0DbgELS9/L/75wZbro8xAnT50pBVFQZ+hUEueGDU5FN51YSCYM+jdxsfCiHjwNP/4LCDD0i/graKpeBnOXKRA==" - }, - "node_modules/utils-merge": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/utils-merge/-/utils-merge-1.0.1.tgz", - "integrity": "sha512-pMZTvIkT1d+TFGvDOqodOclx0QWkkgi6Tdoa8gC8ffGAAqz9pzPTZWAybbsHHoED/ztMtkv/VoYTYyShUn81hA==", - "engines": { - "node": ">= 0.4.0" - } - }, - "node_modules/uuid": { - "version": "8.3.2", - "resolved": "https://registry.npmjs.org/uuid/-/uuid-8.3.2.tgz", - "integrity": "sha512-+NYs2QeMWy+GWFOEm9xnn6HCDp0l7QBD7ml8zLUmJ+93Q5NF0NocErnwkTkXVFNiX3/fpC6afS8Dhb/gz7R7eg==", - "bin": { - "uuid": "dist/bin/uuid" - } - }, - "node_modules/v8-compile-cache": { - "version": "2.3.0", - "resolved": "https://registry.npmjs.org/v8-compile-cache/-/v8-compile-cache-2.3.0.tgz", - "integrity": "sha512-l8lCEmLcLYZh4nbunNZvQCJc5pv7+RCwa8q/LdUx8u7lsWvPDKmpodJAJNwkAhJC//dFY48KuIEmjtd4RViDrA==" - }, - "node_modules/v8-to-istanbul": { - "version": "8.1.1", - "resolved": "https://registry.npmjs.org/v8-to-istanbul/-/v8-to-istanbul-8.1.1.tgz", - "integrity": "sha512-FGtKtv3xIpR6BYhvgH8MI/y78oT7d8Au3ww4QIxymrCtZEh5b8gCw2siywE+puhEmuWKDtmfrvF5UlB298ut3w==", - "dependencies": { - "@types/istanbul-lib-coverage": "^2.0.1", - "convert-source-map": "^1.6.0", - "source-map": "^0.7.3" - }, - "engines": { - "node": ">=10.12.0" - } - }, - "node_modules/varint": { - "version": "6.0.0", - "resolved": "https://registry.npmjs.org/varint/-/varint-6.0.0.tgz", - "integrity": "sha512-cXEIW6cfr15lFv563k4GuVuW/fiwjknytD37jIOLSdSWuOI6WnO/oKwmP2FQTU2l01LP8/M5TSAJpzUaGe3uWg==" - }, - "node_modules/vary": { - "version": "1.1.2", - "resolved": "https://registry.npmjs.org/vary/-/vary-1.1.2.tgz", - "integrity": "sha512-BNGbWLfd0eUPabhkXUVm0j8uuvREyTh5ovRa/dyow/BqAbZJyC+5fU+IzQOzmAKzYqYRAISoRhdQr3eIZ/PXqg==", - "engines": { - "node": ">= 0.8" - } - }, - "node_modules/verror": { - "version": "1.10.0", - "resolved": "https://registry.npmjs.org/verror/-/verror-1.10.0.tgz", - "integrity": "sha512-ZZKSmDAEFOijERBLkmYfJ+vmk3w+7hOLYDNkRCuRuMJGEmqYNCNLyBBFwWKVMhfwaEF3WOd0Zlw86U/WC/+nYw==", - "engines": [ - "node >=0.6.0" - ], - "dependencies": { - "assert-plus": "^1.0.0", - "core-util-is": "1.0.2", - "extsprintf": "^1.2.0" - } - }, - "node_modules/verror/node_modules/core-util-is": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/core-util-is/-/core-util-is-1.0.2.tgz", - "integrity": "sha512-3lqz5YjWTYnW6dlDa5TLaTCcShfar1e40rmcJVwCBJC6mWlFuj0eCHIElmG1g5kyuJ/GD+8Wn4FFCcz4gJPfaQ==" - }, - "node_modules/vscode-oniguruma": { - "version": "1.7.0", - "resolved": "https://registry.npmjs.org/vscode-oniguruma/-/vscode-oniguruma-1.7.0.tgz", - "integrity": "sha512-L9WMGRfrjOhgHSdOYgCt/yRMsXzLDJSL7BPrOZt73gU0iWO4mpqzqQzOz5srxqTvMBaR0XZTSrVWo4j55Rc6cA==" - }, - "node_modules/vscode-textmate": { - "version": "8.0.0", - "resolved": "https://registry.npmjs.org/vscode-textmate/-/vscode-textmate-8.0.0.tgz", - "integrity": "sha512-AFbieoL7a5LMqcnOF04ji+rpXadgOXnZsxQr//r83kLPr7biP7am3g9zbaZIaBGwBRWeSvoMD4mgPdX3e4NWBg==" - }, - "node_modules/w3c-hr-time": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/w3c-hr-time/-/w3c-hr-time-1.0.2.tgz", - "integrity": "sha512-z8P5DvDNjKDoFIHK7q8r8lackT6l+jo/Ye3HOle7l9nICP9lf1Ci25fy9vHd0JOWewkIFzXIEig3TdKT7JQ5fQ==", - "dependencies": { - "browser-process-hrtime": "^1.0.0" - } - }, - "node_modules/w3c-xmlserializer": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/w3c-xmlserializer/-/w3c-xmlserializer-2.0.0.tgz", - "integrity": "sha512-4tzD0mF8iSiMiNs30BiLO3EpfGLZUT2MSX/G+o7ZywDzliWQ3OPtTZ0PTC3B3ca1UAf4cJMHB+2Bf56EriJuRA==", - "dependencies": { - "xml-name-validator": "^3.0.0" - }, - "engines": { - "node": ">=10" - } - }, - "node_modules/walker": { - "version": "1.0.8", - "resolved": "https://registry.npmjs.org/walker/-/walker-1.0.8.tgz", - "integrity": "sha512-ts/8E8l5b7kY0vlWLewOkDXMmPdLcVV4GmOQLyxuSswIJsweeFZtAsMF7k1Nszz+TYBQrlYRmzOnr398y1JemQ==", - "dependencies": { - "makeerror": "1.0.12" - } - }, - "node_modules/warning": { - "version": "4.0.3", - "resolved": "https://registry.npmjs.org/warning/-/warning-4.0.3.tgz", - "integrity": "sha512-rpJyN222KWIvHJ/F53XSZv0Zl/accqHR8et1kpaMTD/fLCRxtV8iX8czMzY7sVZupTI3zcUTg8eycS2kNF9l6w==", - "dependencies": { - "loose-envify": "^1.0.0" - } - }, - "node_modules/watchpack": { - "version": "2.4.0", - "resolved": "https://registry.npmjs.org/watchpack/-/watchpack-2.4.0.tgz", - "integrity": "sha512-Lcvm7MGST/4fup+ifyKi2hjyIAwcdI4HRgtvTpIUxBRhB+RFtUh8XtDOxUfctVCnhVi+QQj49i91OyvzkJl6cg==", - "dependencies": { - "glob-to-regexp": "^0.4.1", - "graceful-fs": "^4.1.2" - }, - "engines": { - "node": ">=10.13.0" - } - }, - "node_modules/wbuf": { - "version": "1.7.3", - "resolved": "https://registry.npmjs.org/wbuf/-/wbuf-1.7.3.tgz", - "integrity": "sha512-O84QOnr0icsbFGLS0O3bI5FswxzRr8/gHwWkDlQFskhSPryQXvrTMxjxGP4+iWYoauLoBvfDpkrOauZ+0iZpDA==", - "dependencies": { - "minimalistic-assert": "^1.0.0" - } - }, - "node_modules/wcag-contrast": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/wcag-contrast/-/wcag-contrast-3.0.0.tgz", - "integrity": "sha512-RWbpg/S7FOXDCwqC2oFhN/vh8dHzj0OS6dpyOSDHyQFSmqmR+lAUStV/ziTT1GzDqL9wol+nZQB4vCi5yEak+w==", - "dependencies": { - "relative-luminance": "^2.0.0" - } - }, - "node_modules/web-vitals": { - "version": "2.1.4", - "resolved": "https://registry.npmjs.org/web-vitals/-/web-vitals-2.1.4.tgz", - "integrity": "sha512-sVWcwhU5mX6crfI5Vd2dC4qchyTqxV8URinzt25XqVh+bHEPGH4C3NPrNionCP7Obx59wrYEbNlw4Z8sjALzZg==" - }, - "node_modules/web3": { - "version": "1.9.0", - "resolved": "https://registry.npmjs.org/web3/-/web3-1.9.0.tgz", - "integrity": "sha512-E9IvVy/d2ozfQQsCiV+zh/LmlZGv9fQxI0UedDVjm87yOKf4AYbBNEn1iWtHveiGzAk2CEMZMUzAZzaQNSSYog==", - "hasInstallScript": true, - "dependencies": { - "web3-bzz": "1.9.0", - "web3-core": "1.9.0", - "web3-eth": "1.9.0", - "web3-eth-personal": "1.9.0", - "web3-net": "1.9.0", - "web3-shh": "1.9.0", - "web3-utils": "1.9.0" - }, - "engines": { - "node": ">=8.0.0" - } - }, - "node_modules/web3-bzz": { - "version": "1.9.0", - "resolved": "https://registry.npmjs.org/web3-bzz/-/web3-bzz-1.9.0.tgz", - "integrity": "sha512-9Zli9dikX8GdHwBb5/WPzpSVuy3EWMKY3P4EokCQra31fD7DLizqAAaTUsFwnK7xYkw5ogpHgelw9uKHHzNajg==", - "hasInstallScript": true, - "dependencies": { - "@types/node": "^12.12.6", - "got": "12.1.0", - "swarm-js": "^0.1.40" - }, - "engines": { - "node": ">=8.0.0" - } - }, - "node_modules/web3-bzz/node_modules/@types/node": { - "version": "12.20.55", - "resolved": "https://registry.npmjs.org/@types/node/-/node-12.20.55.tgz", - "integrity": "sha512-J8xLz7q2OFulZ2cyGTLE1TbbZcjpno7FaN6zdJNrgAdrJ+DZzh/uFR6YrTb4C+nXakvud8Q4+rbhoIWlYQbUFQ==" - }, - "node_modules/web3-core": { - "version": "1.9.0", - "resolved": "https://registry.npmjs.org/web3-core/-/web3-core-1.9.0.tgz", - "integrity": "sha512-DZ+TPmq/ZLlx4LSVzFgrHCP/QFpKDbGWO4HoquZSdu24cjk5SZ+FEU1SZB2OaK3/bgBh+25mRbmv8y56ysUu1w==", - "dependencies": { - "@types/bn.js": "^5.1.1", - "@types/node": "^12.12.6", - "bignumber.js": "^9.0.0", - "web3-core-helpers": "1.9.0", - "web3-core-method": "1.9.0", - "web3-core-requestmanager": "1.9.0", - "web3-utils": "1.9.0" - }, - "engines": { - "node": ">=8.0.0" - } - }, - "node_modules/web3-core-helpers": { - "version": "1.9.0", - "resolved": "https://registry.npmjs.org/web3-core-helpers/-/web3-core-helpers-1.9.0.tgz", - "integrity": "sha512-NeJzylAp9Yj9xAt2uTT+kyug3X0DLnfBdnAcGZuY6HhoNPDIfQRA9CkJjLngVRlGTLZGjNp9x9eR+RyZQgUlXg==", - "dependencies": { - "web3-eth-iban": "1.9.0", - "web3-utils": "1.9.0" - }, - "engines": { - "node": ">=8.0.0" - } - }, - "node_modules/web3-core-method": { - "version": "1.9.0", - "resolved": "https://registry.npmjs.org/web3-core-method/-/web3-core-method-1.9.0.tgz", - "integrity": "sha512-sswbNsY2xRBBhGeaLt9c/eDc+0yDDhi6keUBAkgIRa9ueSx/VKzUY9HMqiV6bXDcGT2fJyejq74FfEB4lc/+/w==", - "dependencies": { - "@ethersproject/transactions": "^5.6.2", - "web3-core-helpers": "1.9.0", - "web3-core-promievent": "1.9.0", - "web3-core-subscriptions": "1.9.0", - "web3-utils": "1.9.0" - }, - "engines": { - "node": ">=8.0.0" - } - }, - "node_modules/web3-core-promievent": { - "version": "1.9.0", - "resolved": "https://registry.npmjs.org/web3-core-promievent/-/web3-core-promievent-1.9.0.tgz", - "integrity": "sha512-PHG1Mn23IGwMZhnPDN8dETKypqsFbHfiyRqP+XsVMPmTHkVfzDQTCBU/c2r6hUktBDoGKut5xZQpGfhFk71KbQ==", - "dependencies": { - "eventemitter3": "4.0.4" - }, - "engines": { - "node": ">=8.0.0" - } - }, - "node_modules/web3-core-promievent/node_modules/eventemitter3": { - "version": "4.0.4", - "resolved": "https://registry.npmjs.org/eventemitter3/-/eventemitter3-4.0.4.tgz", - "integrity": "sha512-rlaVLnVxtxvoyLsQQFBx53YmXHDxRIzzTLbdfxqi4yocpSjAxXwkU0cScM5JgSKMqEhrZpnvQ2D9gjylR0AimQ==" - }, - "node_modules/web3-core-requestmanager": { - "version": "1.9.0", - "resolved": "https://registry.npmjs.org/web3-core-requestmanager/-/web3-core-requestmanager-1.9.0.tgz", - "integrity": "sha512-hcJ5PCtTIJpj+8qWxoseqlCovDo94JJjTX7dZOLXgwp8ah7E3WRYozhGyZocerx+KebKyg1mCQIhkDpMwjfo9Q==", - "dependencies": { - "util": "^0.12.5", - "web3-core-helpers": "1.9.0", - "web3-providers-http": "1.9.0", - "web3-providers-ipc": "1.9.0", - "web3-providers-ws": "1.9.0" - }, - "engines": { - "node": ">=8.0.0" - } - }, - "node_modules/web3-core-subscriptions": { - "version": "1.9.0", - "resolved": "https://registry.npmjs.org/web3-core-subscriptions/-/web3-core-subscriptions-1.9.0.tgz", - "integrity": "sha512-MaIo29yz7hTV8X8bioclPDbHFOVuHmnbMv+D3PDH12ceJFJAXGyW8GL5KU1DYyWIj4TD1HM4WknyVA/YWBiiLA==", - "dependencies": { - "eventemitter3": "4.0.4", - "web3-core-helpers": "1.9.0" - }, - "engines": { - "node": ">=8.0.0" - } - }, - "node_modules/web3-core-subscriptions/node_modules/eventemitter3": { - "version": "4.0.4", - "resolved": "https://registry.npmjs.org/eventemitter3/-/eventemitter3-4.0.4.tgz", - "integrity": "sha512-rlaVLnVxtxvoyLsQQFBx53YmXHDxRIzzTLbdfxqi4yocpSjAxXwkU0cScM5JgSKMqEhrZpnvQ2D9gjylR0AimQ==" - }, - "node_modules/web3-core/node_modules/@types/node": { - "version": "12.20.55", - "resolved": "https://registry.npmjs.org/@types/node/-/node-12.20.55.tgz", - "integrity": "sha512-J8xLz7q2OFulZ2cyGTLE1TbbZcjpno7FaN6zdJNrgAdrJ+DZzh/uFR6YrTb4C+nXakvud8Q4+rbhoIWlYQbUFQ==" - }, - "node_modules/web3-eth": { - "version": "1.9.0", - "resolved": "https://registry.npmjs.org/web3-eth/-/web3-eth-1.9.0.tgz", - "integrity": "sha512-c5gSWk9bLNr6VPATHmZ1n7LTIefIZQnJMzfnvkoBcIFGKJbGmsuRhv6lEXsKdAO/FlqYnSbaw3fOq1fVFiIOFQ==", - "dependencies": { - "web3-core": "1.9.0", - "web3-core-helpers": "1.9.0", - "web3-core-method": "1.9.0", - "web3-core-subscriptions": "1.9.0", - "web3-eth-abi": "1.9.0", - "web3-eth-accounts": "1.9.0", - "web3-eth-contract": "1.9.0", - "web3-eth-ens": "1.9.0", - "web3-eth-iban": "1.9.0", - "web3-eth-personal": "1.9.0", - "web3-net": "1.9.0", - "web3-utils": "1.9.0" - }, - "engines": { - "node": ">=8.0.0" - } - }, - "node_modules/web3-eth-abi": { - "version": "1.9.0", - "resolved": "https://registry.npmjs.org/web3-eth-abi/-/web3-eth-abi-1.9.0.tgz", - "integrity": "sha512-0BLQ3FKMrzJkA930jOX3fMaybAyubk06HChclLpiR0NWmgWXm1tmBrJdkyRy2ZTZpmfuZc9xTFRfl0yZID1voA==", - "dependencies": { - "@ethersproject/abi": "^5.6.3", - "web3-utils": "1.9.0" - }, - "engines": { - "node": ">=8.0.0" - } - }, - "node_modules/web3-eth-accounts": { - "version": "1.9.0", - "resolved": "https://registry.npmjs.org/web3-eth-accounts/-/web3-eth-accounts-1.9.0.tgz", - "integrity": "sha512-VeIZVevmnSll0AC1k5F/y398ZE89d1SRuYk8IewLUhL/tVAsFEsjl2SGgm0+aDcHmgPrkW+qsCJ+C7rWg/N4ZA==", - "dependencies": { - "@ethereumjs/common": "2.5.0", - "@ethereumjs/tx": "3.3.2", - "eth-lib": "0.2.8", - "ethereumjs-util": "^7.1.5", - "scrypt-js": "^3.0.1", - "uuid": "^9.0.0", - "web3-core": "1.9.0", - "web3-core-helpers": "1.9.0", - "web3-core-method": "1.9.0", - "web3-utils": "1.9.0" - }, - "engines": { - "node": ">=8.0.0" - } - }, - "node_modules/web3-eth-accounts/node_modules/eth-lib": { - "version": "0.2.8", - "resolved": "https://registry.npmjs.org/eth-lib/-/eth-lib-0.2.8.tgz", - "integrity": "sha512-ArJ7x1WcWOlSpzdoTBX8vkwlkSQ85CjjifSZtV4co64vWxSV8geWfPI9x4SVYu3DSxnX4yWFVTtGL+j9DUFLNw==", - "dependencies": { - "bn.js": "^4.11.6", - "elliptic": "^6.4.0", - "xhr-request-promise": "^0.1.2" - } - }, - "node_modules/web3-eth-accounts/node_modules/eth-lib/node_modules/bn.js": { - "version": "4.12.0", - "resolved": "https://registry.npmjs.org/bn.js/-/bn.js-4.12.0.tgz", - "integrity": "sha512-c98Bf3tPniI+scsdk237ku1Dc3ujXQTSgyiPUDEOe7tRkhrqridvh8klBv0HCEso1OLOYcHuCv/cS6DNxKH+ZA==" - }, - "node_modules/web3-eth-accounts/node_modules/ethereum-cryptography": { - "version": "0.1.3", - "resolved": "https://registry.npmjs.org/ethereum-cryptography/-/ethereum-cryptography-0.1.3.tgz", - "integrity": "sha512-w8/4x1SGGzc+tO97TASLja6SLd3fRIK2tLVcV2Gx4IB21hE19atll5Cq9o3d0ZmAYC/8aw0ipieTSiekAea4SQ==", - "dependencies": { - "@types/pbkdf2": "^3.0.0", - "@types/secp256k1": "^4.0.1", - "blakejs": "^1.1.0", - "browserify-aes": "^1.2.0", - "bs58check": "^2.1.2", - "create-hash": "^1.2.0", - "create-hmac": "^1.1.7", - "hash.js": "^1.1.7", - "keccak": "^3.0.0", - "pbkdf2": "^3.0.17", - "randombytes": "^2.1.0", - "safe-buffer": "^5.1.2", - "scrypt-js": "^3.0.0", - "secp256k1": "^4.0.1", - "setimmediate": "^1.0.5" - } - }, - "node_modules/web3-eth-accounts/node_modules/ethereumjs-util": { - "version": "7.1.5", - "resolved": "https://registry.npmjs.org/ethereumjs-util/-/ethereumjs-util-7.1.5.tgz", - "integrity": "sha512-SDl5kKrQAudFBUe5OJM9Ac6WmMyYmXX/6sTmLZ3ffG2eY6ZIGBes3pEDxNN6V72WyOw4CPD5RomKdsa8DAAwLg==", - "dependencies": { - "@types/bn.js": "^5.1.0", - "bn.js": "^5.1.2", - "create-hash": "^1.1.2", - "ethereum-cryptography": "^0.1.3", - "rlp": "^2.2.4" - }, - "engines": { - "node": ">=10.0.0" - } - }, - "node_modules/web3-eth-accounts/node_modules/uuid": { - "version": "9.0.0", - "resolved": "https://registry.npmjs.org/uuid/-/uuid-9.0.0.tgz", - "integrity": "sha512-MXcSTerfPa4uqyzStbRoTgt5XIe3x5+42+q1sDuy3R5MDk66URdLMOZe5aPX/SQd+kuYAh0FdP/pO28IkQyTeg==", - "bin": { - "uuid": "dist/bin/uuid" - } - }, - "node_modules/web3-eth-contract": { - "version": "1.9.0", - "resolved": "https://registry.npmjs.org/web3-eth-contract/-/web3-eth-contract-1.9.0.tgz", - "integrity": "sha512-+j26hpSaEtAdUed0TN5rnc+YZOcjPxMjFX4ZBKatvFkImdbVv/tzTvcHlltubSpgb2ZLyZ89lSL6phKYwd2zNQ==", - "dependencies": { - "@types/bn.js": "^5.1.1", - "web3-core": "1.9.0", - "web3-core-helpers": "1.9.0", - "web3-core-method": "1.9.0", - "web3-core-promievent": "1.9.0", - "web3-core-subscriptions": "1.9.0", - "web3-eth-abi": "1.9.0", - "web3-utils": "1.9.0" - }, - "engines": { - "node": ">=8.0.0" - } - }, - "node_modules/web3-eth-ens": { - "version": "1.9.0", - "resolved": "https://registry.npmjs.org/web3-eth-ens/-/web3-eth-ens-1.9.0.tgz", - "integrity": "sha512-LOJZeN+AGe9arhuExnrPPFYQr4WSxXEkpvYIlst/joOEUNLDwfndHnJIK6PI5mXaYSROBtTx6erv+HupzGo7vA==", - "dependencies": { - "content-hash": "^2.5.2", - "eth-ens-namehash": "2.0.8", - "web3-core": "1.9.0", - "web3-core-helpers": "1.9.0", - "web3-core-promievent": "1.9.0", - "web3-eth-abi": "1.9.0", - "web3-eth-contract": "1.9.0", - "web3-utils": "1.9.0" - }, - "engines": { - "node": ">=8.0.0" - } - }, - "node_modules/web3-eth-iban": { - "version": "1.9.0", - "resolved": "https://registry.npmjs.org/web3-eth-iban/-/web3-eth-iban-1.9.0.tgz", - "integrity": "sha512-jPAm77PuEs1kE/UrrBFJdPD2PN42pwfXA0gFuuw35bZezhskYML9W4QCxcqnUtceyEA4FUn7K2qTMuCk+23fog==", - "dependencies": { - "bn.js": "^5.2.1", - "web3-utils": "1.9.0" - }, - "engines": { - "node": ">=8.0.0" - } - }, - "node_modules/web3-eth-personal": { - "version": "1.9.0", - "resolved": "https://registry.npmjs.org/web3-eth-personal/-/web3-eth-personal-1.9.0.tgz", - "integrity": "sha512-r9Ldo/luBqJlv1vCUEQnUS+C3a3ZdbYxVHyfDkj6RWMyCqqo8JE41HWE+pfa0RmB1xnGL2g8TbYcHcqItck/qg==", - "dependencies": { - "@types/node": "^12.12.6", - "web3-core": "1.9.0", - "web3-core-helpers": "1.9.0", - "web3-core-method": "1.9.0", - "web3-net": "1.9.0", - "web3-utils": "1.9.0" - }, - "engines": { - "node": ">=8.0.0" - } - }, - "node_modules/web3-eth-personal/node_modules/@types/node": { - "version": "12.20.55", - "resolved": "https://registry.npmjs.org/@types/node/-/node-12.20.55.tgz", - "integrity": "sha512-J8xLz7q2OFulZ2cyGTLE1TbbZcjpno7FaN6zdJNrgAdrJ+DZzh/uFR6YrTb4C+nXakvud8Q4+rbhoIWlYQbUFQ==" - }, - "node_modules/web3-net": { - "version": "1.9.0", - "resolved": "https://registry.npmjs.org/web3-net/-/web3-net-1.9.0.tgz", - "integrity": "sha512-L+fDZFgrLM5Y15aonl2q6L+RvfaImAngmC0Jv45hV2FJ5IfRT0/2ob9etxZmvEBWvOpbqSvghfOhJIT3XZ37Pg==", - "dependencies": { - "web3-core": "1.9.0", - "web3-core-method": "1.9.0", - "web3-utils": "1.9.0" - }, - "engines": { - "node": ">=8.0.0" - } - }, - "node_modules/web3-providers-http": { - "version": "1.9.0", - "resolved": "https://registry.npmjs.org/web3-providers-http/-/web3-providers-http-1.9.0.tgz", - "integrity": "sha512-5+dMNDAE0rRFz6SJpfnBqlVi2J5bB/Ivr2SanMt2YUrkxW5t8betZbzVwRkTbwtUvkqgj3xeUQzqpOttiv+IqQ==", - "dependencies": { - "abortcontroller-polyfill": "^1.7.3", - "cross-fetch": "^3.1.4", - "es6-promise": "^4.2.8", - "web3-core-helpers": "1.9.0" - }, - "engines": { - "node": ">=8.0.0" - } - }, - "node_modules/web3-providers-ipc": { - "version": "1.9.0", - "resolved": "https://registry.npmjs.org/web3-providers-ipc/-/web3-providers-ipc-1.9.0.tgz", - "integrity": "sha512-cPXU93Du40HCylvjaa5x62DbnGqH+86HpK/+kMcFIzF6sDUBhKpag2tSbYhGbj7GMpfkmDTUiiMLdWnFV6+uBA==", - "dependencies": { - "oboe": "2.1.5", - "web3-core-helpers": "1.9.0" - }, - "engines": { - "node": ">=8.0.0" - } - }, - "node_modules/web3-providers-ws": { - "version": "1.9.0", - "resolved": "https://registry.npmjs.org/web3-providers-ws/-/web3-providers-ws-1.9.0.tgz", - "integrity": "sha512-JRVsnQZ7j2k1a2yzBNHe39xqk1ijOv01dfIBFw52VeEkSRzvrOcsPIM/ttSyBuJqt70ntMxXY0ekCrqfleKH/w==", - "dependencies": { - "eventemitter3": "4.0.4", - "web3-core-helpers": "1.9.0", - "websocket": "^1.0.32" - }, - "engines": { - "node": ">=8.0.0" - } - }, - "node_modules/web3-providers-ws/node_modules/eventemitter3": { - "version": "4.0.4", - "resolved": "https://registry.npmjs.org/eventemitter3/-/eventemitter3-4.0.4.tgz", - "integrity": "sha512-rlaVLnVxtxvoyLsQQFBx53YmXHDxRIzzTLbdfxqi4yocpSjAxXwkU0cScM5JgSKMqEhrZpnvQ2D9gjylR0AimQ==" - }, - "node_modules/web3-shh": { - "version": "1.9.0", - "resolved": "https://registry.npmjs.org/web3-shh/-/web3-shh-1.9.0.tgz", - "integrity": "sha512-bIBZlralgz4ICCrwkefB2nPPJWfx28NuHIpjB7d9ADKynElubQuqudYhKtSEkKXACuME/BJm0pIFJcJs/gDnMg==", - "hasInstallScript": true, - "dependencies": { - "web3-core": "1.9.0", - "web3-core-method": "1.9.0", - "web3-core-subscriptions": "1.9.0", - "web3-net": "1.9.0" - }, - "engines": { - "node": ">=8.0.0" - } - }, - "node_modules/web3-utils": { - "version": "1.9.0", - "resolved": "https://registry.npmjs.org/web3-utils/-/web3-utils-1.9.0.tgz", - "integrity": "sha512-p++69rCNNfu2jM9n5+VD/g26l+qkEOQ1m6cfRQCbH8ZRrtquTmrirJMgTmyOoax5a5XRYOuws14aypCOs51pdQ==", - "dependencies": { - "bn.js": "^5.2.1", - "ethereum-bloom-filters": "^1.0.6", - "ethereumjs-util": "^7.1.0", - "ethjs-unit": "0.1.6", - "number-to-bn": "1.7.0", - "randombytes": "^2.1.0", - "utf8": "3.0.0" - }, - "engines": { - "node": ">=8.0.0" - } - }, - "node_modules/web3-utils/node_modules/ethereum-cryptography": { - "version": "0.1.3", - "resolved": "https://registry.npmjs.org/ethereum-cryptography/-/ethereum-cryptography-0.1.3.tgz", - "integrity": "sha512-w8/4x1SGGzc+tO97TASLja6SLd3fRIK2tLVcV2Gx4IB21hE19atll5Cq9o3d0ZmAYC/8aw0ipieTSiekAea4SQ==", - "dependencies": { - "@types/pbkdf2": "^3.0.0", - "@types/secp256k1": "^4.0.1", - "blakejs": "^1.1.0", - "browserify-aes": "^1.2.0", - "bs58check": "^2.1.2", - "create-hash": "^1.2.0", - "create-hmac": "^1.1.7", - "hash.js": "^1.1.7", - "keccak": "^3.0.0", - "pbkdf2": "^3.0.17", - "randombytes": "^2.1.0", - "safe-buffer": "^5.1.2", - "scrypt-js": "^3.0.0", - "secp256k1": "^4.0.1", - "setimmediate": "^1.0.5" - } - }, - "node_modules/web3-utils/node_modules/ethereumjs-util": { - "version": "7.1.5", - "resolved": "https://registry.npmjs.org/ethereumjs-util/-/ethereumjs-util-7.1.5.tgz", - "integrity": "sha512-SDl5kKrQAudFBUe5OJM9Ac6WmMyYmXX/6sTmLZ3ffG2eY6ZIGBes3pEDxNN6V72WyOw4CPD5RomKdsa8DAAwLg==", - "dependencies": { - "@types/bn.js": "^5.1.0", - "bn.js": "^5.1.2", - "create-hash": "^1.1.2", - "ethereum-cryptography": "^0.1.3", - "rlp": "^2.2.4" - }, - "engines": { - "node": ">=10.0.0" - } - }, - "node_modules/webidl-conversions": { - "version": "6.1.0", - "resolved": "https://registry.npmjs.org/webidl-conversions/-/webidl-conversions-6.1.0.tgz", - "integrity": "sha512-qBIvFLGiBpLjfwmYAaHPXsn+ho5xZnGvyGvsarywGNc8VyQJUMHJ8OBKGGrPER0okBeMDaan4mNBlgBROxuI8w==", - "engines": { - "node": ">=10.4" - } - }, - "node_modules/webpack": { - "version": "5.81.0", - "resolved": "https://registry.npmjs.org/webpack/-/webpack-5.81.0.tgz", - "integrity": "sha512-AAjaJ9S4hYCVODKLQTgG5p5e11hiMawBwV2v8MYLE0C/6UAGLuAF4n1qa9GOwdxnicaP+5k6M5HrLmD4+gIB8Q==", - "dependencies": { - "@types/eslint-scope": "^3.7.3", - "@types/estree": "^1.0.0", - "@webassemblyjs/ast": "^1.11.5", - "@webassemblyjs/wasm-edit": "^1.11.5", - "@webassemblyjs/wasm-parser": "^1.11.5", - "acorn": "^8.7.1", - "acorn-import-assertions": "^1.7.6", - "browserslist": "^4.14.5", - "chrome-trace-event": "^1.0.2", - "enhanced-resolve": "^5.13.0", - "es-module-lexer": "^1.2.1", - "eslint-scope": "5.1.1", - "events": "^3.2.0", - "glob-to-regexp": "^0.4.1", - "graceful-fs": "^4.2.9", - "json-parse-even-better-errors": "^2.3.1", - "loader-runner": "^4.2.0", - "mime-types": "^2.1.27", - "neo-async": "^2.6.2", - "schema-utils": "^3.1.2", - "tapable": "^2.1.1", - "terser-webpack-plugin": "^5.3.7", - "watchpack": "^2.4.0", - "webpack-sources": "^3.2.3" - }, - "bin": { - "webpack": "bin/webpack.js" - }, - "engines": { - "node": ">=10.13.0" - }, - "funding": { - "type": "opencollective", - "url": "https://opencollective.com/webpack" - }, - "peerDependenciesMeta": { - "webpack-cli": { - "optional": true - } - } - }, - "node_modules/webpack-dev-middleware": { - "version": "5.3.3", - "resolved": "https://registry.npmjs.org/webpack-dev-middleware/-/webpack-dev-middleware-5.3.3.tgz", - "integrity": "sha512-hj5CYrY0bZLB+eTO+x/j67Pkrquiy7kWepMHmUMoPsmcUaeEnQJqFzHJOyxgWlq746/wUuA64p9ta34Kyb01pA==", - "dependencies": { - "colorette": "^2.0.10", - "memfs": "^3.4.3", - "mime-types": "^2.1.31", - "range-parser": "^1.2.1", - "schema-utils": "^4.0.0" - }, - "engines": { - "node": ">= 12.13.0" - }, - "funding": { - "type": "opencollective", - "url": "https://opencollective.com/webpack" - }, - "peerDependencies": { - "webpack": "^4.0.0 || ^5.0.0" - } - }, - "node_modules/webpack-dev-middleware/node_modules/ajv": { - "version": "8.11.0", - "resolved": "https://registry.npmjs.org/ajv/-/ajv-8.11.0.tgz", - "integrity": "sha512-wGgprdCvMalC0BztXvitD2hC04YffAvtsUn93JbGXYLAtCUO4xd17mCCZQxUOItiBwZvJScWo8NIvQMQ71rdpg==", - "dependencies": { - "fast-deep-equal": "^3.1.1", - "json-schema-traverse": "^1.0.0", - "require-from-string": "^2.0.2", - "uri-js": "^4.2.2" - }, - "funding": { - "type": "github", - "url": "https://github.com/sponsors/epoberezkin" - } - }, - "node_modules/webpack-dev-middleware/node_modules/ajv-keywords": { - "version": "5.1.0", - "resolved": "https://registry.npmjs.org/ajv-keywords/-/ajv-keywords-5.1.0.tgz", - "integrity": "sha512-YCS/JNFAUyr5vAuhk1DWm1CBxRHW9LbJ2ozWeemrIqpbsqKjHVxYPyi5GC0rjZIT5JxJ3virVTS8wk4i/Z+krw==", - "dependencies": { - "fast-deep-equal": "^3.1.3" - }, - "peerDependencies": { - "ajv": "^8.8.2" - } - }, - "node_modules/webpack-dev-middleware/node_modules/json-schema-traverse": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/json-schema-traverse/-/json-schema-traverse-1.0.0.tgz", - "integrity": "sha512-NM8/P9n3XjXhIZn1lLhkFaACTOURQXjWhV4BA/RnOv8xvgqtqpAX9IO4mRQxSx1Rlo4tqzeqb0sOlruaOy3dug==" - }, - "node_modules/webpack-dev-middleware/node_modules/schema-utils": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/schema-utils/-/schema-utils-4.0.0.tgz", - "integrity": "sha512-1edyXKgh6XnJsJSQ8mKWXnN/BVaIbFMLpouRUrXgVq7WYne5kw3MW7UPhO44uRXQSIpTSXoJbmrR2X0w9kUTyg==", - "dependencies": { - "@types/json-schema": "^7.0.9", - "ajv": "^8.8.0", - "ajv-formats": "^2.1.1", - "ajv-keywords": "^5.0.0" - }, - "engines": { - "node": ">= 12.13.0" - }, - "funding": { - "type": "opencollective", - "url": "https://opencollective.com/webpack" - } - }, - "node_modules/webpack-dev-server": { - "version": "4.9.2", - "resolved": "https://registry.npmjs.org/webpack-dev-server/-/webpack-dev-server-4.9.2.tgz", - "integrity": "sha512-H95Ns95dP24ZsEzO6G9iT+PNw4Q7ltll1GfJHV4fKphuHWgKFzGHWi4alTlTnpk1SPPk41X+l2RB7rLfIhnB9Q==", - "dependencies": { - "@types/bonjour": "^3.5.9", - "@types/connect-history-api-fallback": "^1.3.5", - "@types/express": "^4.17.13", - "@types/serve-index": "^1.9.1", - "@types/serve-static": "^1.13.10", - "@types/sockjs": "^0.3.33", - "@types/ws": "^8.5.1", - "ansi-html-community": "^0.0.8", - "bonjour-service": "^1.0.11", - "chokidar": "^3.5.3", - "colorette": "^2.0.10", - "compression": "^1.7.4", - "connect-history-api-fallback": "^1.6.0", - "default-gateway": "^6.0.3", - "express": "^4.17.3", - "graceful-fs": "^4.2.6", - "html-entities": "^2.3.2", - "http-proxy-middleware": "^2.0.3", - "ipaddr.js": "^2.0.1", - "open": "^8.0.9", - "p-retry": "^4.5.0", - "rimraf": "^3.0.2", - "schema-utils": "^4.0.0", - "selfsigned": "^2.0.1", - "serve-index": "^1.9.1", - "sockjs": "^0.3.24", - "spdy": "^4.0.2", - "webpack-dev-middleware": "^5.3.1", - "ws": "^8.4.2" - }, - "bin": { - "webpack-dev-server": "bin/webpack-dev-server.js" - }, - "engines": { - "node": ">= 12.13.0" - }, - "peerDependencies": { - "webpack": "^4.37.0 || ^5.0.0" - }, - "peerDependenciesMeta": { - "webpack-cli": { - "optional": true - } - } - }, - "node_modules/webpack-dev-server/node_modules/ajv": { - "version": "8.11.0", - "resolved": "https://registry.npmjs.org/ajv/-/ajv-8.11.0.tgz", - "integrity": "sha512-wGgprdCvMalC0BztXvitD2hC04YffAvtsUn93JbGXYLAtCUO4xd17mCCZQxUOItiBwZvJScWo8NIvQMQ71rdpg==", - "dependencies": { - "fast-deep-equal": "^3.1.1", - "json-schema-traverse": "^1.0.0", - "require-from-string": "^2.0.2", - "uri-js": "^4.2.2" - }, - "funding": { - "type": "github", - "url": "https://github.com/sponsors/epoberezkin" - } - }, - "node_modules/webpack-dev-server/node_modules/ajv-keywords": { - "version": "5.1.0", - "resolved": "https://registry.npmjs.org/ajv-keywords/-/ajv-keywords-5.1.0.tgz", - "integrity": "sha512-YCS/JNFAUyr5vAuhk1DWm1CBxRHW9LbJ2ozWeemrIqpbsqKjHVxYPyi5GC0rjZIT5JxJ3virVTS8wk4i/Z+krw==", - "dependencies": { - "fast-deep-equal": "^3.1.3" - }, - "peerDependencies": { - "ajv": "^8.8.2" - } - }, - "node_modules/webpack-dev-server/node_modules/json-schema-traverse": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/json-schema-traverse/-/json-schema-traverse-1.0.0.tgz", - "integrity": "sha512-NM8/P9n3XjXhIZn1lLhkFaACTOURQXjWhV4BA/RnOv8xvgqtqpAX9IO4mRQxSx1Rlo4tqzeqb0sOlruaOy3dug==" - }, - "node_modules/webpack-dev-server/node_modules/schema-utils": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/schema-utils/-/schema-utils-4.0.0.tgz", - "integrity": "sha512-1edyXKgh6XnJsJSQ8mKWXnN/BVaIbFMLpouRUrXgVq7WYne5kw3MW7UPhO44uRXQSIpTSXoJbmrR2X0w9kUTyg==", - "dependencies": { - "@types/json-schema": "^7.0.9", - "ajv": "^8.8.0", - "ajv-formats": "^2.1.1", - "ajv-keywords": "^5.0.0" - }, - "engines": { - "node": ">= 12.13.0" - }, - "funding": { - "type": "opencollective", - "url": "https://opencollective.com/webpack" - } - }, - "node_modules/webpack-dev-server/node_modules/ws": { - "version": "8.8.0", - "resolved": "https://registry.npmjs.org/ws/-/ws-8.8.0.tgz", - "integrity": "sha512-JDAgSYQ1ksuwqfChJusw1LSJ8BizJ2e/vVu5Lxjq3YvNJNlROv1ui4i+c/kUUrPheBvQl4c5UbERhTwKa6QBJQ==", - "engines": { - "node": ">=10.0.0" - }, - "peerDependencies": { - "bufferutil": "^4.0.1", - "utf-8-validate": "^5.0.2" - }, - "peerDependenciesMeta": { - "bufferutil": { - "optional": true - }, - "utf-8-validate": { - "optional": true - } - } - }, - "node_modules/webpack-manifest-plugin": { - "version": "4.1.1", - "resolved": "https://registry.npmjs.org/webpack-manifest-plugin/-/webpack-manifest-plugin-4.1.1.tgz", - "integrity": "sha512-YXUAwxtfKIJIKkhg03MKuiFAD72PlrqCiwdwO4VEXdRO5V0ORCNwaOwAZawPZalCbmH9kBDmXnNeQOw+BIEiow==", - "dependencies": { - "tapable": "^2.0.0", - "webpack-sources": "^2.2.0" - }, - "engines": { - "node": ">=12.22.0" - }, - "peerDependencies": { - "webpack": "^4.44.2 || ^5.47.0" - } - }, - "node_modules/webpack-manifest-plugin/node_modules/source-map": { - "version": "0.6.1", - "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz", - "integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==", - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/webpack-manifest-plugin/node_modules/webpack-sources": { - "version": "2.3.1", - "resolved": "https://registry.npmjs.org/webpack-sources/-/webpack-sources-2.3.1.tgz", - "integrity": "sha512-y9EI9AO42JjEcrTJFOYmVywVZdKVUfOvDUPsJea5GIr1JOEGFVqwlY2K098fFoIjOkDzHn2AjRvM8dsBZu+gCA==", - "dependencies": { - "source-list-map": "^2.0.1", - "source-map": "^0.6.1" - }, - "engines": { - "node": ">=10.13.0" - } - }, - "node_modules/webpack-sources": { - "version": "3.2.3", - "resolved": "https://registry.npmjs.org/webpack-sources/-/webpack-sources-3.2.3.tgz", - "integrity": "sha512-/DyMEOrDgLKKIG0fmvtz+4dUX/3Ghozwgm6iPp8KRhvn+eQf9+Q7GWxVNMk3+uCPWfdXYC4ExGBckIXdFEfH1w==", - "engines": { - "node": ">=10.13.0" - } - }, - "node_modules/webpack/node_modules/eslint-scope": { - "version": "5.1.1", - "resolved": "https://registry.npmjs.org/eslint-scope/-/eslint-scope-5.1.1.tgz", - "integrity": "sha512-2NxwbF/hZ0KpepYN0cNbo+FN6XoK7GaHlQhgx/hIZl6Va0bF45RQOOwhLIy8lQDbuCiadSLCBnH2CFYquit5bw==", - "dependencies": { - "esrecurse": "^4.3.0", - "estraverse": "^4.1.1" - }, - "engines": { - "node": ">=8.0.0" - } - }, - "node_modules/webpack/node_modules/estraverse": { - "version": "4.3.0", - "resolved": "https://registry.npmjs.org/estraverse/-/estraverse-4.3.0.tgz", - "integrity": "sha512-39nnKffWz8xN1BU/2c79n9nB9HDzo0niYUqx6xyqUnyoAnQyyWpOTdZEeiCch8BBu515t4wp9ZmgVfVhn9EBpw==", - "engines": { - "node": ">=4.0" - } - }, - "node_modules/websocket": { - "version": "1.0.34", - "resolved": "https://registry.npmjs.org/websocket/-/websocket-1.0.34.tgz", - "integrity": "sha512-PRDso2sGwF6kM75QykIesBijKSVceR6jL2G8NGYyq2XrItNC2P5/qL5XeR056GhA+Ly7JMFvJb9I312mJfmqnQ==", - "dependencies": { - "bufferutil": "^4.0.1", - "debug": "^2.2.0", - "es5-ext": "^0.10.50", - "typedarray-to-buffer": "^3.1.5", - "utf-8-validate": "^5.0.2", - "yaeti": "^0.0.6" - }, - "engines": { - "node": ">=4.0.0" - } - }, - "node_modules/websocket-driver": { - "version": "0.7.4", - "resolved": "https://registry.npmjs.org/websocket-driver/-/websocket-driver-0.7.4.tgz", - "integrity": "sha512-b17KeDIQVjvb0ssuSDF2cYXSg2iztliJ4B9WdsuB6J952qCPKmnVq4DyW5motImXHDC1cBT/1UezrJVsKw5zjg==", - "dependencies": { - "http-parser-js": ">=0.5.1", - "safe-buffer": ">=5.1.0", - "websocket-extensions": ">=0.1.1" - }, - "engines": { - "node": ">=0.8.0" - } - }, - "node_modules/websocket-extensions": { - "version": "0.1.4", - "resolved": "https://registry.npmjs.org/websocket-extensions/-/websocket-extensions-0.1.4.tgz", - "integrity": "sha512-OqedPIGOfsDlo31UNwYbCFMSaO9m9G/0faIHj5/dZFDMFqPTcx6UwqyOy3COEaEOg/9VsGIpdqn62W5KhoKSpg==", - "engines": { - "node": ">=0.8.0" - } - }, - "node_modules/websocket/node_modules/debug": { - "version": "2.6.9", - "resolved": "https://registry.npmjs.org/debug/-/debug-2.6.9.tgz", - "integrity": "sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA==", - "dependencies": { - "ms": "2.0.0" - } - }, - "node_modules/websocket/node_modules/ms": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/ms/-/ms-2.0.0.tgz", - "integrity": "sha512-Tpp60P6IUJDTuOq/5Z8cdskzJujfwqfOTkrwIwj7IRISpnkJnT6SyJ4PCPnGMoFjC9ddhal5KVIYtAt97ix05A==" - }, - "node_modules/whatwg-encoding": { - "version": "1.0.5", - "resolved": "https://registry.npmjs.org/whatwg-encoding/-/whatwg-encoding-1.0.5.tgz", - "integrity": "sha512-b5lim54JOPN9HtzvK9HFXvBma/rnfFeqsic0hSpjtDbVxR3dJKLc+KB4V6GgiGOvl7CY/KNh8rxSo9DKQrnUEw==", - "dependencies": { - "iconv-lite": "0.4.24" - } - }, - "node_modules/whatwg-encoding/node_modules/iconv-lite": { - "version": "0.4.24", - "resolved": "https://registry.npmjs.org/iconv-lite/-/iconv-lite-0.4.24.tgz", - "integrity": "sha512-v3MXnZAcvnywkTUEZomIActle7RXXeedOR31wwl7VlyoXO4Qi9arvSenNQWne1TcRwhCL1HwLI21bEqdpj8/rA==", - "dependencies": { - "safer-buffer": ">= 2.1.2 < 3" - }, - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/whatwg-fetch": { - "version": "3.6.2", - "resolved": "https://registry.npmjs.org/whatwg-fetch/-/whatwg-fetch-3.6.2.tgz", - "integrity": "sha512-bJlen0FcuU/0EMLrdbJ7zOnW6ITZLrZMIarMUVmdKtsGvZna8vxKYaexICWPfZ8qwf9fzNq+UEIZrnSaApt6RA==" - }, - "node_modules/whatwg-mimetype": { - "version": "2.3.0", - "resolved": "https://registry.npmjs.org/whatwg-mimetype/-/whatwg-mimetype-2.3.0.tgz", - "integrity": "sha512-M4yMwr6mAnQz76TbJm914+gPpB/nCwvZbJU28cUD6dR004SAxDLOOSUaB1JDRqLtaOV/vi0IC5lEAGFgrjGv/g==" - }, - "node_modules/whatwg-url": { - "version": "8.7.0", - "resolved": "https://registry.npmjs.org/whatwg-url/-/whatwg-url-8.7.0.tgz", - "integrity": "sha512-gAojqb/m9Q8a5IV96E3fHJM70AzCkgt4uXYX2O7EmuyOnLrViCQlsEBmF9UQIu3/aeAIp2U17rtbpZWNntQqdg==", - "dependencies": { - "lodash": "^4.7.0", - "tr46": "^2.1.0", - "webidl-conversions": "^6.1.0" - }, - "engines": { - "node": ">=10" - } - }, - "node_modules/which": { - "version": "2.0.2", - "resolved": "https://registry.npmjs.org/which/-/which-2.0.2.tgz", - "integrity": "sha512-BLI3Tl1TW3Pvl70l3yq3Y64i+awpwXqsGBYWkkqMtnbXgrMD+yj7rhW0kuEDxzJaYXGjEW5ogapKNMEKNMjibA==", - "dependencies": { - "isexe": "^2.0.0" - }, - "bin": { - "node-which": "bin/node-which" - }, - "engines": { - "node": ">= 8" - } - }, - "node_modules/which-boxed-primitive": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/which-boxed-primitive/-/which-boxed-primitive-1.0.2.tgz", - "integrity": "sha512-bwZdv0AKLpplFY2KZRX6TvyuN7ojjr7lwkg6ml0roIy9YeuSr7JS372qlNW18UQYzgYK9ziGcerWqZOmEn9VNg==", - "dependencies": { - "is-bigint": "^1.0.1", - "is-boolean-object": "^1.1.0", - "is-number-object": "^1.0.4", - "is-string": "^1.0.5", - "is-symbol": "^1.0.3" - }, - "funding": { - "url": "https://github.com/sponsors/ljharb" - } - }, - "node_modules/which-module": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/which-module/-/which-module-2.0.1.tgz", - "integrity": "sha512-iBdZ57RDvnOR9AGBhML2vFZf7h8vmBjhoaZqODJBFWHVtKkDmKuHai3cx5PgVMrX5YDNp27AofYbAwctSS+vhQ==" - }, - "node_modules/which-typed-array": { - "version": "1.1.9", - "resolved": "https://registry.npmjs.org/which-typed-array/-/which-typed-array-1.1.9.tgz", - "integrity": "sha512-w9c4xkx6mPidwp7180ckYWfMmvxpjlZuIudNtDf4N/tTAUB8VJbX25qZoAsrtGuYNnGw3pa0AXgbGKRB8/EceA==", - "dependencies": { - "available-typed-arrays": "^1.0.5", - "call-bind": "^1.0.2", - "for-each": "^0.3.3", - "gopd": "^1.0.1", - "has-tostringtag": "^1.0.0", - "is-typed-array": "^1.1.10" - }, - "engines": { - "node": ">= 0.4" - }, - "funding": { - "url": "https://github.com/sponsors/ljharb" - } - }, - "node_modules/wicg-inert": { - "version": "3.1.2", - "resolved": "https://registry.npmjs.org/wicg-inert/-/wicg-inert-3.1.2.tgz", - "integrity": "sha512-Ba9tGNYxXwaqKEi9sJJvPMKuo063umUPsHN0JJsjrs2j8KDSzkWLMZGZ+MH1Jf1Fq4OWZ5HsESJID6nRza2ang==" - }, - "node_modules/wido": { - "version": "0.2.8", - "resolved": "https://registry.npmjs.org/wido/-/wido-0.2.8.tgz", - "integrity": "sha512-jPjVdVXfGTXeR+DM7ZHF8UONeaScpQQZh+drhRSZQZEKO6rl3jZnJAZUGNQn/49mJ9JmU8gLFPSePyDssz64UQ==" - }, - "node_modules/wido-widget": { - "version": "1.0.8", - "resolved": "https://registry.npmjs.org/wido-widget/-/wido-widget-1.0.8.tgz", - "integrity": "sha512-qeoqVnIX9rlFck0YOWj8g0r4GZSFzZlzR7Oerabf/3GQnFkJDgv/n2VMisizDKFvoKtDf9N1DuR+K4tRqpZNXw==", - "dependencies": { - "@argent/get-starknet": "^5.2.0", - "@babel/runtime": ">=7.17.0", - "@fontsource/ibm-plex-mono": "^4.5.1", - "@fontsource/inter": "^4.5.1", - "@popperjs/core": "^2.4.4", - "@reduxjs/toolkit": "^1.6.1", - "@uniswap/conedison": "^1.2.1", - "@uniswap/permit2-sdk": "^1.2.0", - "@uniswap/redux-multicall": "^1.1.8", - "@uniswap/router-sdk": "^1.3.0", - "@uniswap/sdk-core": "^3.0.1", - "@uniswap/smart-order-router": "^2.10.0", - "@uniswap/token-lists": "^1.0.0-beta.30", - "@uniswap/universal-router-sdk": "^1.3.4", - "@uniswap/v2-sdk": "^3.0.1", - "@uniswap/v3-sdk": "^3.8.2", - "@web3-react/core": "^6.1.9", - "@web3-react/injected-connector": "^6.0.7", - "ajv": "^8.11.0", - "ajv-formats": "^2.1.1", - "cids": "^1.0.0", - "ethers": "^5.6.1", - "immer": "^9.0.6", - "jotai": "1.4.0", - "jotai-immer": "0.1.0", - "jsbi": "^3.1.4", - "make-plural": "^7.0.0", - "ms.macro": "^2.0.0", - "multicodec": "^3.0.1", - "multihashes": "^4.0.2", - "node-vibrant": "^3.2.1-alpha.1", - "polished": "^3.3.2", - "popper-max-size-modifier": "^0.2.0", - "qrcode": "^1.5.0", - "react": ">=17.0.1", - "react-dom": ">=17.0.1", - "react-feather": "^2.0.8", - "react-outside-click-handler": "^1.3.0", - "react-popper": "^2.2.3", - "react-redux": "^8.0.5", - "react-virtualized-auto-sizer": "^1.0.2", - "react-window": "^1.8.5", - "rebass": "^4.0.7", - "redux": ">=4.1.2", - "resize-observer-polyfill": "^1.5.1", - "setimmediate": "^1.0.5", - "starknet": "^4.17.1", - "styled-components": ">=5", - "tiny-invariant": "^1.2.0", - "typedoc": "^0.23.25", - "wcag-contrast": "^3.0.0", - "web3": "^1.8.2", - "wicg-inert": "^3.1.1", - "wido": "^0.2.6" - }, - "optionalDependencies": { - "bufferutil": "^4.0.6", - "encoding": "^0.1.13", - "utf-8-validate": "^5.0.8" - }, - "peerDependencies": { - "@babel/runtime": ">=7.17.0", - "ethers": "^5.6.1", - "react": ">=17.0.1", - "react-dom": ">=17.0.1", - "react-redux": ">=7.2.2", - "redux": ">=4.1.2", - "styled-components": ">=5" - } - }, - "node_modules/wido-widget/node_modules/ajv": { - "version": "8.12.0", - "resolved": "https://registry.npmjs.org/ajv/-/ajv-8.12.0.tgz", - "integrity": "sha512-sRu1kpcO9yLtYxBKvqfTeh9KzZEwO3STyX1HT+4CaDzC6HpTGYhIhPIzj9XuKU7KYDwnaeh5hcOwjy1QuJzBPA==", - "dependencies": { - "fast-deep-equal": "^3.1.1", - "json-schema-traverse": "^1.0.0", - "require-from-string": "^2.0.2", - "uri-js": "^4.2.2" - }, - "funding": { - "type": "github", - "url": "https://github.com/sponsors/epoberezkin" - } - }, - "node_modules/wido-widget/node_modules/json-schema-traverse": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/json-schema-traverse/-/json-schema-traverse-1.0.0.tgz", - "integrity": "sha512-NM8/P9n3XjXhIZn1lLhkFaACTOURQXjWhV4BA/RnOv8xvgqtqpAX9IO4mRQxSx1Rlo4tqzeqb0sOlruaOy3dug==" - }, - "node_modules/word-wrap": { - "version": "1.2.3", - "resolved": "https://registry.npmjs.org/word-wrap/-/word-wrap-1.2.3.tgz", - "integrity": "sha512-Hz/mrNwitNRh/HUAtM/VT/5VH+ygD6DV7mYKZAtHOrbs8U7lvPS6xf7EJKMF0uW1KJCl0H701g3ZGus+muE5vQ==", - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/wordwrapjs": { - "version": "4.0.1", - "resolved": "https://registry.npmjs.org/wordwrapjs/-/wordwrapjs-4.0.1.tgz", - "integrity": "sha512-kKlNACbvHrkpIw6oPeYDSmdCTu2hdMHoyXLTcUKala++lx5Y+wjJ/e474Jqv5abnVmwxw08DiTuHmw69lJGksA==", - "dev": true, - "dependencies": { - "reduce-flatten": "^2.0.0", - "typical": "^5.2.0" - }, - "engines": { - "node": ">=8.0.0" - } - }, - "node_modules/wordwrapjs/node_modules/typical": { - "version": "5.2.0", - "resolved": "https://registry.npmjs.org/typical/-/typical-5.2.0.tgz", - "integrity": "sha512-dvdQgNDNJo+8B2uBQoqdb11eUCE1JQXhvjC/CZtgvZseVd5TYMXnq0+vuUemXbd/Se29cTaUuPX3YIc2xgbvIg==", - "dev": true, - "engines": { - "node": ">=8" - } - }, - "node_modules/workbox-background-sync": { - "version": "6.5.3", - "resolved": "https://registry.npmjs.org/workbox-background-sync/-/workbox-background-sync-6.5.3.tgz", - "integrity": "sha512-0DD/V05FAcek6tWv9XYj2w5T/plxhDSpclIcAGjA/b7t/6PdaRkQ7ZgtAX6Q/L7kV7wZ8uYRJUoH11VjNipMZw==", - "dependencies": { - "idb": "^6.1.4", - "workbox-core": "6.5.3" - } - }, - "node_modules/workbox-broadcast-update": { - "version": "6.5.3", - "resolved": "https://registry.npmjs.org/workbox-broadcast-update/-/workbox-broadcast-update-6.5.3.tgz", - "integrity": "sha512-4AwCIA5DiDrYhlN+Miv/fp5T3/whNmSL+KqhTwRBTZIL6pvTgE4lVuRzAt1JltmqyMcQ3SEfCdfxczuI4kwFQg==", - "dependencies": { - "workbox-core": "6.5.3" - } - }, - "node_modules/workbox-build": { - "version": "6.5.3", - "resolved": "https://registry.npmjs.org/workbox-build/-/workbox-build-6.5.3.tgz", - "integrity": "sha512-8JNHHS7u13nhwIYCDea9MNXBNPHXCs5KDZPKI/ZNTr3f4sMGoD7hgFGecbyjX1gw4z6e9bMpMsOEJNyH5htA/w==", - "dependencies": { - "@apideck/better-ajv-errors": "^0.3.1", - "@babel/core": "^7.11.1", - "@babel/preset-env": "^7.11.0", - "@babel/runtime": "^7.11.2", - "@rollup/plugin-babel": "^5.2.0", - "@rollup/plugin-node-resolve": "^11.2.1", - "@rollup/plugin-replace": "^2.4.1", - "@surma/rollup-plugin-off-main-thread": "^2.2.3", - "ajv": "^8.6.0", - "common-tags": "^1.8.0", - "fast-json-stable-stringify": "^2.1.0", - "fs-extra": "^9.0.1", - "glob": "^7.1.6", - "lodash": "^4.17.20", - "pretty-bytes": "^5.3.0", - "rollup": "^2.43.1", - "rollup-plugin-terser": "^7.0.0", - "source-map": "^0.8.0-beta.0", - "stringify-object": "^3.3.0", - "strip-comments": "^2.0.1", - "tempy": "^0.6.0", - "upath": "^1.2.0", - "workbox-background-sync": "6.5.3", - "workbox-broadcast-update": "6.5.3", - "workbox-cacheable-response": "6.5.3", - "workbox-core": "6.5.3", - "workbox-expiration": "6.5.3", - "workbox-google-analytics": "6.5.3", - "workbox-navigation-preload": "6.5.3", - "workbox-precaching": "6.5.3", - "workbox-range-requests": "6.5.3", - "workbox-recipes": "6.5.3", - "workbox-routing": "6.5.3", - "workbox-strategies": "6.5.3", - "workbox-streams": "6.5.3", - "workbox-sw": "6.5.3", - "workbox-window": "6.5.3" - }, - "engines": { - "node": ">=10.0.0" - } - }, - "node_modules/workbox-build/node_modules/@apideck/better-ajv-errors": { - "version": "0.3.6", - "resolved": "https://registry.npmjs.org/@apideck/better-ajv-errors/-/better-ajv-errors-0.3.6.tgz", - "integrity": "sha512-P+ZygBLZtkp0qqOAJJVX4oX/sFo5JR3eBWwwuqHHhK0GIgQOKWrAfiAaWX0aArHkRWHMuggFEgAZNxVPwPZYaA==", - "dependencies": { - "json-schema": "^0.4.0", - "jsonpointer": "^5.0.0", - "leven": "^3.1.0" - }, - "engines": { - "node": ">=10" - }, - "peerDependencies": { - "ajv": ">=8" - } - }, - "node_modules/workbox-build/node_modules/ajv": { - "version": "8.11.0", - "resolved": "https://registry.npmjs.org/ajv/-/ajv-8.11.0.tgz", - "integrity": "sha512-wGgprdCvMalC0BztXvitD2hC04YffAvtsUn93JbGXYLAtCUO4xd17mCCZQxUOItiBwZvJScWo8NIvQMQ71rdpg==", - "dependencies": { - "fast-deep-equal": "^3.1.1", - "json-schema-traverse": "^1.0.0", - "require-from-string": "^2.0.2", - "uri-js": "^4.2.2" - }, - "funding": { - "type": "github", - "url": "https://github.com/sponsors/epoberezkin" - } - }, - "node_modules/workbox-build/node_modules/fs-extra": { - "version": "9.1.0", - "resolved": "https://registry.npmjs.org/fs-extra/-/fs-extra-9.1.0.tgz", - "integrity": "sha512-hcg3ZmepS30/7BSFqRvoo3DOMQu7IjqxO5nCDt+zM9XWjb33Wg7ziNT+Qvqbuc3+gWpzO02JubVyk2G4Zvo1OQ==", - "dependencies": { - "at-least-node": "^1.0.0", - "graceful-fs": "^4.2.0", - "jsonfile": "^6.0.1", - "universalify": "^2.0.0" - }, - "engines": { - "node": ">=10" - } - }, - "node_modules/workbox-build/node_modules/json-schema-traverse": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/json-schema-traverse/-/json-schema-traverse-1.0.0.tgz", - "integrity": "sha512-NM8/P9n3XjXhIZn1lLhkFaACTOURQXjWhV4BA/RnOv8xvgqtqpAX9IO4mRQxSx1Rlo4tqzeqb0sOlruaOy3dug==" - }, - "node_modules/workbox-build/node_modules/source-map": { - "version": "0.8.0-beta.0", - "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.8.0-beta.0.tgz", - "integrity": "sha512-2ymg6oRBpebeZi9UUNsgQ89bhx01TcTkmNTGnNO88imTmbSgy4nfujrgVEFKWpMTEGA11EDkTt7mqObTPdigIA==", - "dependencies": { - "whatwg-url": "^7.0.0" - }, - "engines": { - "node": ">= 8" - } - }, - "node_modules/workbox-build/node_modules/tr46": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/tr46/-/tr46-1.0.1.tgz", - "integrity": "sha512-dTpowEjclQ7Kgx5SdBkqRzVhERQXov8/l9Ft9dVM9fmg0W0KQSVaXX9T4i6twCPNtYiZM53lpSSUAwJbFPOHxA==", - "dependencies": { - "punycode": "^2.1.0" - } - }, - "node_modules/workbox-build/node_modules/webidl-conversions": { - "version": "4.0.2", - "resolved": "https://registry.npmjs.org/webidl-conversions/-/webidl-conversions-4.0.2.tgz", - "integrity": "sha512-YQ+BmxuTgd6UXZW3+ICGfyqRyHXVlD5GtQr5+qjiNW7bF0cqrzX500HVXPBOvgXb5YnzDd+h0zqyv61KUD7+Sg==" - }, - "node_modules/workbox-build/node_modules/whatwg-url": { - "version": "7.1.0", - "resolved": "https://registry.npmjs.org/whatwg-url/-/whatwg-url-7.1.0.tgz", - "integrity": "sha512-WUu7Rg1DroM7oQvGWfOiAK21n74Gg+T4elXEQYkOhtyLeWiJFoOGLXPKI/9gzIie9CtwVLm8wtw6YJdKyxSjeg==", - "dependencies": { - "lodash.sortby": "^4.7.0", - "tr46": "^1.0.1", - "webidl-conversions": "^4.0.2" - } - }, - "node_modules/workbox-cacheable-response": { - "version": "6.5.3", - "resolved": "https://registry.npmjs.org/workbox-cacheable-response/-/workbox-cacheable-response-6.5.3.tgz", - "integrity": "sha512-6JE/Zm05hNasHzzAGKDkqqgYtZZL2H06ic2GxuRLStA4S/rHUfm2mnLFFXuHAaGR1XuuYyVCEey1M6H3PdZ7SQ==", - "dependencies": { - "workbox-core": "6.5.3" - } - }, - "node_modules/workbox-core": { - "version": "6.5.3", - "resolved": "https://registry.npmjs.org/workbox-core/-/workbox-core-6.5.3.tgz", - "integrity": "sha512-Bb9ey5n/M9x+l3fBTlLpHt9ASTzgSGj6vxni7pY72ilB/Pb3XtN+cZ9yueboVhD5+9cNQrC9n/E1fSrqWsUz7Q==" - }, - "node_modules/workbox-expiration": { - "version": "6.5.3", - "resolved": "https://registry.npmjs.org/workbox-expiration/-/workbox-expiration-6.5.3.tgz", - "integrity": "sha512-jzYopYR1zD04ZMdlbn/R2Ik6ixiXbi15c9iX5H8CTi6RPDz7uhvMLZPKEndZTpfgmUk8mdmT9Vx/AhbuCl5Sqw==", - "dependencies": { - "idb": "^6.1.4", - "workbox-core": "6.5.3" - } - }, - "node_modules/workbox-google-analytics": { - "version": "6.5.3", - "resolved": "https://registry.npmjs.org/workbox-google-analytics/-/workbox-google-analytics-6.5.3.tgz", - "integrity": "sha512-3GLCHotz5umoRSb4aNQeTbILETcrTVEozSfLhHSBaegHs1PnqCmN0zbIy2TjTpph2AGXiNwDrWGF0AN+UgDNTw==", - "dependencies": { - "workbox-background-sync": "6.5.3", - "workbox-core": "6.5.3", - "workbox-routing": "6.5.3", - "workbox-strategies": "6.5.3" - } - }, - "node_modules/workbox-navigation-preload": { - "version": "6.5.3", - "resolved": "https://registry.npmjs.org/workbox-navigation-preload/-/workbox-navigation-preload-6.5.3.tgz", - "integrity": "sha512-bK1gDFTc5iu6lH3UQ07QVo+0ovErhRNGvJJO/1ngknT0UQ702nmOUhoN9qE5mhuQSrnK+cqu7O7xeaJ+Rd9Tmg==", - "dependencies": { - "workbox-core": "6.5.3" - } - }, - "node_modules/workbox-precaching": { - "version": "6.5.3", - "resolved": "https://registry.npmjs.org/workbox-precaching/-/workbox-precaching-6.5.3.tgz", - "integrity": "sha512-sjNfgNLSsRX5zcc63H/ar/hCf+T19fRtTqvWh795gdpghWb5xsfEkecXEvZ8biEi1QD7X/ljtHphdaPvXDygMQ==", - "dependencies": { - "workbox-core": "6.5.3", - "workbox-routing": "6.5.3", - "workbox-strategies": "6.5.3" - } - }, - "node_modules/workbox-range-requests": { - "version": "6.5.3", - "resolved": "https://registry.npmjs.org/workbox-range-requests/-/workbox-range-requests-6.5.3.tgz", - "integrity": "sha512-pGCP80Bpn/0Q0MQsfETSfmtXsQcu3M2QCJwSFuJ6cDp8s2XmbUXkzbuQhCUzKR86ZH2Vex/VUjb2UaZBGamijA==", - "dependencies": { - "workbox-core": "6.5.3" - } - }, - "node_modules/workbox-recipes": { - "version": "6.5.3", - "resolved": "https://registry.npmjs.org/workbox-recipes/-/workbox-recipes-6.5.3.tgz", - "integrity": "sha512-IcgiKYmbGiDvvf3PMSEtmwqxwfQ5zwI7OZPio3GWu4PfehA8jI8JHI3KZj+PCfRiUPZhjQHJ3v1HbNs+SiSkig==", - "dependencies": { - "workbox-cacheable-response": "6.5.3", - "workbox-core": "6.5.3", - "workbox-expiration": "6.5.3", - "workbox-precaching": "6.5.3", - "workbox-routing": "6.5.3", - "workbox-strategies": "6.5.3" - } - }, - "node_modules/workbox-routing": { - "version": "6.5.3", - "resolved": "https://registry.npmjs.org/workbox-routing/-/workbox-routing-6.5.3.tgz", - "integrity": "sha512-DFjxcuRAJjjt4T34RbMm3MCn+xnd36UT/2RfPRfa8VWJGItGJIn7tG+GwVTdHmvE54i/QmVTJepyAGWtoLPTmg==", - "dependencies": { - "workbox-core": "6.5.3" - } - }, - "node_modules/workbox-strategies": { - "version": "6.5.3", - "resolved": "https://registry.npmjs.org/workbox-strategies/-/workbox-strategies-6.5.3.tgz", - "integrity": "sha512-MgmGRrDVXs7rtSCcetZgkSZyMpRGw8HqL2aguszOc3nUmzGZsT238z/NN9ZouCxSzDu3PQ3ZSKmovAacaIhu1w==", - "dependencies": { - "workbox-core": "6.5.3" - } - }, - "node_modules/workbox-streams": { - "version": "6.5.3", - "resolved": "https://registry.npmjs.org/workbox-streams/-/workbox-streams-6.5.3.tgz", - "integrity": "sha512-vN4Qi8o+b7zj1FDVNZ+PlmAcy1sBoV7SC956uhqYvZ9Sg1fViSbOpydULOssVJ4tOyKRifH/eoi6h99d+sJ33w==", - "dependencies": { - "workbox-core": "6.5.3", - "workbox-routing": "6.5.3" - } - }, - "node_modules/workbox-sw": { - "version": "6.5.3", - "resolved": "https://registry.npmjs.org/workbox-sw/-/workbox-sw-6.5.3.tgz", - "integrity": "sha512-BQBzm092w+NqdIEF2yhl32dERt9j9MDGUTa2Eaa+o3YKL4Qqw55W9yQC6f44FdAHdAJrJvp0t+HVrfh8AiGj8A==" - }, - "node_modules/workbox-webpack-plugin": { - "version": "6.5.3", - "resolved": "https://registry.npmjs.org/workbox-webpack-plugin/-/workbox-webpack-plugin-6.5.3.tgz", - "integrity": "sha512-Es8Xr02Gi6Kc3zaUwR691ZLy61hz3vhhs5GztcklQ7kl5k2qAusPh0s6LF3wEtlpfs9ZDErnmy5SErwoll7jBA==", - "dependencies": { - "fast-json-stable-stringify": "^2.1.0", - "pretty-bytes": "^5.4.1", - "upath": "^1.2.0", - "webpack-sources": "^1.4.3", - "workbox-build": "6.5.3" - }, - "engines": { - "node": ">=10.0.0" - }, - "peerDependencies": { - "webpack": "^4.4.0 || ^5.9.0" - } - }, - "node_modules/workbox-webpack-plugin/node_modules/source-map": { - "version": "0.6.1", - "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz", - "integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==", - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/workbox-webpack-plugin/node_modules/webpack-sources": { - "version": "1.4.3", - "resolved": "https://registry.npmjs.org/webpack-sources/-/webpack-sources-1.4.3.tgz", - "integrity": "sha512-lgTS3Xhv1lCOKo7SA5TjKXMjpSM4sBjNV5+q2bqesbSPs5FjGmU6jjtBSkX9b4qW87vDIsCIlUPOEhbZrMdjeQ==", - "dependencies": { - "source-list-map": "^2.0.0", - "source-map": "~0.6.1" - } - }, - "node_modules/workbox-window": { - "version": "6.5.3", - "resolved": "https://registry.npmjs.org/workbox-window/-/workbox-window-6.5.3.tgz", - "integrity": "sha512-GnJbx1kcKXDtoJBVZs/P7ddP0Yt52NNy4nocjBpYPiRhMqTpJCNrSL+fGHZ/i/oP6p/vhE8II0sA6AZGKGnssw==", - "dependencies": { - "@types/trusted-types": "^2.0.2", - "workbox-core": "6.5.3" - } - }, - "node_modules/workerpool": { - "version": "6.2.1", - "resolved": "https://registry.npmjs.org/workerpool/-/workerpool-6.2.1.tgz", - "integrity": "sha512-ILEIE97kDZvF9Wb9f6h5aXK4swSlKGUcOEGiIYb2OOu/IrDU9iwj0fD//SsA6E5ibwJxpEvhullJY4Sl4GcpAw==", - "peer": true - }, - "node_modules/wrap-ansi": { - "version": "7.0.0", - "resolved": "https://registry.npmjs.org/wrap-ansi/-/wrap-ansi-7.0.0.tgz", - "integrity": "sha512-YVGIj2kamLSTxw6NsZjoBxfSwsn0ycdesmc4p+Q21c5zPuZ1pl+NfxVdxPtdHvmNVOQ6XSYG4AUtyt/Fi7D16Q==", - "dependencies": { - "ansi-styles": "^4.0.0", - "string-width": "^4.1.0", - "strip-ansi": "^6.0.0" - }, - "engines": { - "node": ">=10" - }, - "funding": { - "url": "https://github.com/chalk/wrap-ansi?sponsor=1" - } - }, - "node_modules/wrap-ansi/node_modules/ansi-styles": { - "version": "4.3.0", - "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", - "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", - "dependencies": { - "color-convert": "^2.0.1" - }, - "engines": { - "node": ">=8" - }, - "funding": { - "url": "https://github.com/chalk/ansi-styles?sponsor=1" - } - }, - "node_modules/wrap-ansi/node_modules/color-convert": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz", - "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==", - "dependencies": { - "color-name": "~1.1.4" - }, - "engines": { - "node": ">=7.0.0" - } - }, - "node_modules/wrap-ansi/node_modules/color-name": { - "version": "1.1.4", - "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz", - "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==" - }, - "node_modules/wrappy": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/wrappy/-/wrappy-1.0.2.tgz", - "integrity": "sha512-l4Sp/DRseor9wL6EvV2+TuQn63dMkPjZ/sp9XkghTEbV9KlPS1xUsZ3u7/IQO4wxtcFB4bgpQPRcR3QCvezPcQ==" - }, - "node_modules/write-file-atomic": { - "version": "3.0.3", - "resolved": "https://registry.npmjs.org/write-file-atomic/-/write-file-atomic-3.0.3.tgz", - "integrity": "sha512-AvHcyZ5JnSfq3ioSyjrBkH9yW4m7Ayk8/9My/DD9onKeu/94fwrMocemO2QAJFAlnnDN+ZDS+ZjAR5ua1/PV/Q==", - "dependencies": { - "imurmurhash": "^0.1.4", - "is-typedarray": "^1.0.0", - "signal-exit": "^3.0.2", - "typedarray-to-buffer": "^3.1.5" - } - }, - "node_modules/ws": { - "version": "7.5.8", - "resolved": "https://registry.npmjs.org/ws/-/ws-7.5.8.tgz", - "integrity": "sha512-ri1Id1WinAX5Jqn9HejiGb8crfRio0Qgu8+MtL36rlTA6RLsMdWt1Az/19A2Qij6uSHUMphEFaTKa4WG+UNHNw==", - "engines": { - "node": ">=8.3.0" - }, - "peerDependencies": { - "bufferutil": "^4.0.1", - "utf-8-validate": "^5.0.2" - }, - "peerDependenciesMeta": { - "bufferutil": { - "optional": true - }, - "utf-8-validate": { - "optional": true - } - } - }, - "node_modules/xhr": { - "version": "2.6.0", - "resolved": "https://registry.npmjs.org/xhr/-/xhr-2.6.0.tgz", - "integrity": "sha512-/eCGLb5rxjx5e3mF1A7s+pLlR6CGyqWN91fv1JgER5mVWg1MZmlhBvy9kjcsOdRk8RrIujotWyJamfyrp+WIcA==", - "dependencies": { - "global": "~4.4.0", - "is-function": "^1.0.1", - "parse-headers": "^2.0.0", - "xtend": "^4.0.0" - } - }, - "node_modules/xhr-request": { - "version": "1.1.0", - "resolved": "https://registry.npmjs.org/xhr-request/-/xhr-request-1.1.0.tgz", - "integrity": "sha512-Y7qzEaR3FDtL3fP30k9wO/e+FBnBByZeybKOhASsGP30NIkRAAkKD/sCnLvgEfAIEC1rcmK7YG8f4oEnIrrWzA==", - "dependencies": { - "buffer-to-arraybuffer": "^0.0.5", - "object-assign": "^4.1.1", - "query-string": "^5.0.1", - "simple-get": "^2.7.0", - "timed-out": "^4.0.1", - "url-set-query": "^1.0.0", - "xhr": "^2.0.4" - } - }, - "node_modules/xhr-request-promise": { - "version": "0.1.3", - "resolved": "https://registry.npmjs.org/xhr-request-promise/-/xhr-request-promise-0.1.3.tgz", - "integrity": "sha512-YUBytBsuwgitWtdRzXDDkWAXzhdGB8bYm0sSzMPZT7Z2MBjMSTHFsyCT1yCRATY+XC69DUrQraRAEgcoCRaIPg==", - "dependencies": { - "xhr-request": "^1.1.0" - } - }, - "node_modules/xml-name-validator": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/xml-name-validator/-/xml-name-validator-3.0.0.tgz", - "integrity": "sha512-A5CUptxDsvxKJEU3yO6DuWBSJz/qizqzJKOMIfUJHETbBw/sFaDxgd6fxm1ewUaM0jZ444Fc5vC5ROYurg/4Pw==" - }, - "node_modules/xml-parse-from-string": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/xml-parse-from-string/-/xml-parse-from-string-1.0.1.tgz", - "integrity": "sha512-ErcKwJTF54uRzzNMXq2X5sMIy88zJvfN2DmdoQvy7PAFJ+tPRU6ydWuOKNMyfmOjdyBQTFREi60s0Y0SyI0G0g==" - }, - "node_modules/xml2js": { - "version": "0.4.23", - "resolved": "https://registry.npmjs.org/xml2js/-/xml2js-0.4.23.tgz", - "integrity": "sha512-ySPiMjM0+pLDftHgXY4By0uswI3SPKLDw/i3UXbnO8M/p28zqexCUoPmQFrYD+/1BzhGJSs2i1ERWKJAtiLrug==", - "dependencies": { - "sax": ">=0.6.0", - "xmlbuilder": "~11.0.0" - }, - "engines": { - "node": ">=4.0.0" - } - }, - "node_modules/xmlbuilder": { - "version": "11.0.1", - "resolved": "https://registry.npmjs.org/xmlbuilder/-/xmlbuilder-11.0.1.tgz", - "integrity": "sha512-fDlsI/kFEx7gLvbecc0/ohLG50fugQp8ryHzMTuW9vSa1GJ0XYWKnhsUx7oie3G98+r56aTQIUB4kht42R3JvA==", - "engines": { - "node": ">=4.0" - } - }, - "node_modules/xmlchars": { - "version": "2.2.0", - "resolved": "https://registry.npmjs.org/xmlchars/-/xmlchars-2.2.0.tgz", - "integrity": "sha512-JZnDKK8B0RCDw84FNdDAIpZK+JuJw+s7Lz8nksI7SIuU3UXJJslUthsi+uWBUYOwPFwW7W7PRLRfUKpxjtjFCw==" - }, - "node_modules/xtend": { - "version": "4.0.2", - "resolved": "https://registry.npmjs.org/xtend/-/xtend-4.0.2.tgz", - "integrity": "sha512-LKYU1iAXJXUgAXn9URjiu+MWhyUXHsvfp7mcuYm9dSUKK0/CjtrUwFAxD82/mCWbtLsGjFIad0wIsod4zrTAEQ==", - "engines": { - "node": ">=0.4" - } - }, - "node_modules/y18n": { - "version": "5.0.8", - "resolved": "https://registry.npmjs.org/y18n/-/y18n-5.0.8.tgz", - "integrity": "sha512-0pfFzegeDWJHJIAmTLRP2DwHjdF5s7jo9tuztdQxAhINCdvS+3nGINqPd00AphqJR/0LhANUS6/+7SCb98YOfA==", - "engines": { - "node": ">=10" - } - }, - "node_modules/yaeti": { - "version": "0.0.6", - "resolved": "https://registry.npmjs.org/yaeti/-/yaeti-0.0.6.tgz", - "integrity": "sha512-MvQa//+KcZCUkBTIC9blM+CU9J2GzuTytsOUwf2lidtvkx/6gnEp1QvJv34t9vdjhFmha/mUiNDbN0D0mJWdug==", - "engines": { - "node": ">=0.10.32" - } - }, - "node_modules/yallist": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/yallist/-/yallist-4.0.0.tgz", - "integrity": "sha512-3wdGidZyq5PB084XLES5TpOSRA3wjXAlIWMhum2kRcv/41Sn2emQ0dycQW4uZXLejwKvg6EsvbdlVL+FYEct7A==" - }, - "node_modules/yaml": { - "version": "1.10.2", - "resolved": "https://registry.npmjs.org/yaml/-/yaml-1.10.2.tgz", - "integrity": "sha512-r3vXyErRCYJ7wg28yvBY5VSoAF8ZvlcW9/BwUzEtUsjvX/DKs24dIkuwjtuprwJJHsbyUbLApepYTR1BN4uHrg==", - "engines": { - "node": ">= 6" - } - }, - "node_modules/yargs": { - "version": "16.2.0", - "resolved": "https://registry.npmjs.org/yargs/-/yargs-16.2.0.tgz", - "integrity": "sha512-D1mvvtDG0L5ft/jGWkLpG1+m0eQxOfaBvTNELraWj22wSVUMWxZUvYgJYcKh6jGGIkJFhH4IZPQhR4TKpc8mBw==", - "dependencies": { - "cliui": "^7.0.2", - "escalade": "^3.1.1", - "get-caller-file": "^2.0.5", - "require-directory": "^2.1.1", - "string-width": "^4.2.0", - "y18n": "^5.0.5", - "yargs-parser": "^20.2.2" - }, - "engines": { - "node": ">=10" - } - }, - "node_modules/yargs-parser": { - "version": "20.2.9", - "resolved": "https://registry.npmjs.org/yargs-parser/-/yargs-parser-20.2.9.tgz", - "integrity": "sha512-y11nGElTIV+CT3Zv9t7VKl+Q3hTQoT9a1Qzezhhl6Rp21gJ/IVTW7Z3y9EWXhuUBC2Shnf+DX0antecpAwSP8w==", - "engines": { - "node": ">=10" - } - }, - "node_modules/yargs-unparser": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/yargs-unparser/-/yargs-unparser-2.0.0.tgz", - "integrity": "sha512-7pRTIA9Qc1caZ0bZ6RYRGbHJthJWuakf+WmHK0rVeLkNrrGhfoabBNdue6kdINI6r4if7ocq9aD/n7xwKOdzOA==", - "peer": true, - "dependencies": { - "camelcase": "^6.0.0", - "decamelize": "^4.0.0", - "flat": "^5.0.2", - "is-plain-obj": "^2.1.0" - }, - "engines": { - "node": ">=10" - } - }, - "node_modules/yargs-unparser/node_modules/is-plain-obj": { - "version": "2.1.0", - "resolved": "https://registry.npmjs.org/is-plain-obj/-/is-plain-obj-2.1.0.tgz", - "integrity": "sha512-YWnfyRwxL/+SsrWYfOpUtz5b3YD+nyfkHvjbcanzk8zgyO4ASD67uVMRt8k5bM4lLMDnXfriRhOpemw+NfT1eA==", - "peer": true, - "engines": { - "node": ">=8" - } - }, - "node_modules/yocto-queue": { - "version": "0.1.0", - "resolved": "https://registry.npmjs.org/yocto-queue/-/yocto-queue-0.1.0.tgz", - "integrity": "sha512-rVksvsnNCdJ/ohGc6xgPwyN8eheCxsiLM8mxuE/t/mOVqJewPuO1miLpTHQiRgTKCLexL4MeAFVagts7HmNZ2Q==", - "engines": { - "node": ">=10" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - } - }, - "dependencies": { - "@ampproject/remapping": { - "version": "2.2.0", - "resolved": "https://registry.npmjs.org/@ampproject/remapping/-/remapping-2.2.0.tgz", - "integrity": "sha512-qRmjj8nj9qmLTQXXmaR1cck3UXSRMPrbsLJAasZpF+t3riI71BXed5ebIOYwQntykeZuhjsdweEc9BxH5Jc26w==", - "requires": { - "@jridgewell/gen-mapping": "^0.1.0", - "@jridgewell/trace-mapping": "^0.3.9" - } - }, - "@argent/get-starknet": { - "version": "5.3.21", - "resolved": "https://registry.npmjs.org/@argent/get-starknet/-/get-starknet-5.3.21.tgz", - "integrity": "sha512-ykxyo5EgEHTsTLK95ILHtkigVxI/OTt6n2IfYpNi9ZJNjazLyoGiN2GG7tT8C38giasR0Wpmq6NJB74efX07oQ==", - "requires": { - "get-starknet": "^1.0.0" - }, - "dependencies": { - "get-starknet": { - "version": "1.5.0", - "resolved": "https://registry.npmjs.org/get-starknet/-/get-starknet-1.5.0.tgz", - "integrity": "sha512-6A14mdPoMwO4orETjG5D+wwaZOzuAyNp/5+ZlDJnU+UU7QRGMYILUo8WjgqeVTg0mcN0BZoUE0C/Qhgd7dBvVQ==", - "requires": { - "bowser": "^2.11.0" - } - }, - "starknet": { - "version": "3.19.0", - "resolved": "https://registry.npmjs.org/starknet/-/starknet-3.19.0.tgz", - "integrity": "sha512-1iUJdGtRDu2j3G8sS+yzRhp9O3O5Dr803oDfrm234Qmn05JTh5bU/wZwFPw9zWmMI0jyNZgjS+8dxPpBcpLgrQ==", - "peer": true, - "requires": { - "@ethersproject/bytes": "^5.6.1", - "bn.js": "^5.2.1", - "cross-fetch": "^3.1.5", - "elliptic": "^6.5.4", - "ethereum-cryptography": "^1.0.3", - "hash.js": "^1.1.7", - "json-bigint": "^1.0.0", - "minimalistic-assert": "^1.0.1", - "pako": "^2.0.4", - "ts-custom-error": "^3.2.0", - "url-join": "^4.0.1" - } - } - } - }, - "@babel/code-frame": { - "version": "7.18.6", - "resolved": "https://registry.npmjs.org/@babel/code-frame/-/code-frame-7.18.6.tgz", - "integrity": "sha512-TDCmlK5eOvH+eH7cdAFlNXeVJqWIQ7gW9tY1GJIpUtFb6CmjVyq2VM3u71bOyR8CRihcCgMUYoDNyLXao3+70Q==", - "requires": { - "@babel/highlight": "^7.18.6" - } - }, - "@babel/compat-data": { - "version": "7.18.6", - "resolved": "https://registry.npmjs.org/@babel/compat-data/-/compat-data-7.18.6.tgz", - "integrity": "sha512-tzulrgDT0QD6U7BJ4TKVk2SDDg7wlP39P9yAx1RfLy7vP/7rsDRlWVfbWxElslu56+r7QOhB2NSDsabYYruoZQ==" - }, - "@babel/core": { - "version": "7.18.6", - "resolved": "https://registry.npmjs.org/@babel/core/-/core-7.18.6.tgz", - "integrity": "sha512-cQbWBpxcbbs/IUredIPkHiAGULLV8iwgNRMFzvbhEXISp4f3rUUXE5+TIw6KwUWUR3DwyI6gmBRnmAtYaWehwQ==", - "requires": { - "@ampproject/remapping": "^2.1.0", - "@babel/code-frame": "^7.18.6", - "@babel/generator": "^7.18.6", - "@babel/helper-compilation-targets": "^7.18.6", - "@babel/helper-module-transforms": "^7.18.6", - "@babel/helpers": "^7.18.6", - "@babel/parser": "^7.18.6", - "@babel/template": "^7.18.6", - "@babel/traverse": "^7.18.6", - "@babel/types": "^7.18.6", - "convert-source-map": "^1.7.0", - "debug": "^4.1.0", - "gensync": "^1.0.0-beta.2", - "json5": "^2.2.1", - "semver": "^6.3.0" - }, - "dependencies": { - "semver": { - "version": "6.3.0", - "resolved": "https://registry.npmjs.org/semver/-/semver-6.3.0.tgz", - "integrity": "sha512-b39TBaTSfV6yBrapU89p5fKekE2m/NwnDocOVruQFS1/veMgdzuPcnOM34M6CwxW8jH/lxEa5rBoDeUwu5HHTw==" - } - } - }, - "@babel/eslint-parser": { - "version": "7.18.2", - "resolved": "https://registry.npmjs.org/@babel/eslint-parser/-/eslint-parser-7.18.2.tgz", - "integrity": "sha512-oFQYkE8SuH14+uR51JVAmdqwKYXGRjEXx7s+WiagVjqQ+HPE+nnwyF2qlVG8evUsUHmPcA+6YXMEDbIhEyQc5A==", - "requires": { - "eslint-scope": "^5.1.1", - "eslint-visitor-keys": "^2.1.0", - "semver": "^6.3.0" - }, - "dependencies": { - "eslint-scope": { - "version": "5.1.1", - "resolved": "https://registry.npmjs.org/eslint-scope/-/eslint-scope-5.1.1.tgz", - "integrity": "sha512-2NxwbF/hZ0KpepYN0cNbo+FN6XoK7GaHlQhgx/hIZl6Va0bF45RQOOwhLIy8lQDbuCiadSLCBnH2CFYquit5bw==", - "requires": { - "esrecurse": "^4.3.0", - "estraverse": "^4.1.1" - } - }, - "eslint-visitor-keys": { - "version": "2.1.0", - "resolved": "https://registry.npmjs.org/eslint-visitor-keys/-/eslint-visitor-keys-2.1.0.tgz", - "integrity": "sha512-0rSmRBzXgDzIsD6mGdJgevzgezI534Cer5L/vyMX0kHzT/jiB43jRhd9YUlMGYLQy2zprNmoT8qasCGtY+QaKw==" - }, - "estraverse": { - "version": "4.3.0", - "resolved": "https://registry.npmjs.org/estraverse/-/estraverse-4.3.0.tgz", - "integrity": "sha512-39nnKffWz8xN1BU/2c79n9nB9HDzo0niYUqx6xyqUnyoAnQyyWpOTdZEeiCch8BBu515t4wp9ZmgVfVhn9EBpw==" - }, - "semver": { - "version": "6.3.0", - "resolved": "https://registry.npmjs.org/semver/-/semver-6.3.0.tgz", - "integrity": "sha512-b39TBaTSfV6yBrapU89p5fKekE2m/NwnDocOVruQFS1/veMgdzuPcnOM34M6CwxW8jH/lxEa5rBoDeUwu5HHTw==" - } - } - }, - "@babel/generator": { - "version": "7.18.7", - "resolved": "https://registry.npmjs.org/@babel/generator/-/generator-7.18.7.tgz", - "integrity": "sha512-shck+7VLlY72a2w9c3zYWuE1pwOKEiQHV7GTUbSnhyl5eu3i04t30tBY82ZRWrDfo3gkakCFtevExnxbkf2a3A==", - "requires": { - "@babel/types": "^7.18.7", - "@jridgewell/gen-mapping": "^0.3.2", - "jsesc": "^2.5.1" - }, - "dependencies": { - "@jridgewell/gen-mapping": { - "version": "0.3.2", - "resolved": "https://registry.npmjs.org/@jridgewell/gen-mapping/-/gen-mapping-0.3.2.tgz", - "integrity": "sha512-mh65xKQAzI6iBcFzwv28KVWSmCkdRBWoOh+bYQGW3+6OZvbbN3TqMGo5hqYxQniRcH9F2VZIoJCm4pa3BPDK/A==", - "requires": { - "@jridgewell/set-array": "^1.0.1", - "@jridgewell/sourcemap-codec": "^1.4.10", - "@jridgewell/trace-mapping": "^0.3.9" - } - } - } - }, - "@babel/helper-annotate-as-pure": { - "version": "7.18.6", - "resolved": "https://registry.npmjs.org/@babel/helper-annotate-as-pure/-/helper-annotate-as-pure-7.18.6.tgz", - "integrity": "sha512-duORpUiYrEpzKIop6iNbjnwKLAKnJ47csTyRACyEmWj0QdUrm5aqNJGHSSEQSUAvNW0ojX0dOmK9dZduvkfeXA==", - "requires": { - "@babel/types": "^7.18.6" - } - }, - "@babel/helper-builder-binary-assignment-operator-visitor": { - "version": "7.18.6", - "resolved": "https://registry.npmjs.org/@babel/helper-builder-binary-assignment-operator-visitor/-/helper-builder-binary-assignment-operator-visitor-7.18.6.tgz", - "integrity": "sha512-KT10c1oWEpmrIRYnthbzHgoOf6B+Xd6a5yhdbNtdhtG7aO1or5HViuf1TQR36xY/QprXA5nvxO6nAjhJ4y38jw==", - "requires": { - "@babel/helper-explode-assignable-expression": "^7.18.6", - "@babel/types": "^7.18.6" - } - }, - "@babel/helper-compilation-targets": { - "version": "7.18.6", - "resolved": "https://registry.npmjs.org/@babel/helper-compilation-targets/-/helper-compilation-targets-7.18.6.tgz", - "integrity": "sha512-vFjbfhNCzqdeAtZflUFrG5YIFqGTqsctrtkZ1D/NB0mDW9TwW3GmmUepYY4G9wCET5rY5ugz4OGTcLd614IzQg==", - "requires": { - "@babel/compat-data": "^7.18.6", - "@babel/helper-validator-option": "^7.18.6", - "browserslist": "^4.20.2", - "semver": "^6.3.0" - }, - "dependencies": { - "semver": { - "version": "6.3.0", - "resolved": "https://registry.npmjs.org/semver/-/semver-6.3.0.tgz", - "integrity": "sha512-b39TBaTSfV6yBrapU89p5fKekE2m/NwnDocOVruQFS1/veMgdzuPcnOM34M6CwxW8jH/lxEa5rBoDeUwu5HHTw==" - } - } - }, - "@babel/helper-create-class-features-plugin": { - "version": "7.18.6", - "resolved": "https://registry.npmjs.org/@babel/helper-create-class-features-plugin/-/helper-create-class-features-plugin-7.18.6.tgz", - "integrity": "sha512-YfDzdnoxHGV8CzqHGyCbFvXg5QESPFkXlHtvdCkesLjjVMT2Adxe4FGUR5ChIb3DxSaXO12iIOCWoXdsUVwnqw==", - "requires": { - "@babel/helper-annotate-as-pure": "^7.18.6", - "@babel/helper-environment-visitor": "^7.18.6", - "@babel/helper-function-name": "^7.18.6", - "@babel/helper-member-expression-to-functions": "^7.18.6", - "@babel/helper-optimise-call-expression": "^7.18.6", - "@babel/helper-replace-supers": "^7.18.6", - "@babel/helper-split-export-declaration": "^7.18.6" - } - }, - "@babel/helper-create-regexp-features-plugin": { - "version": "7.18.6", - "resolved": "https://registry.npmjs.org/@babel/helper-create-regexp-features-plugin/-/helper-create-regexp-features-plugin-7.18.6.tgz", - "integrity": "sha512-7LcpH1wnQLGrI+4v+nPp+zUvIkF9x0ddv1Hkdue10tg3gmRnLy97DXh4STiOf1qeIInyD69Qv5kKSZzKD8B/7A==", - "requires": { - "@babel/helper-annotate-as-pure": "^7.18.6", - "regexpu-core": "^5.1.0" - } - }, - "@babel/helper-define-polyfill-provider": { - "version": "0.3.1", - "resolved": "https://registry.npmjs.org/@babel/helper-define-polyfill-provider/-/helper-define-polyfill-provider-0.3.1.tgz", - "integrity": "sha512-J9hGMpJQmtWmj46B3kBHmL38UhJGhYX7eqkcq+2gsstyYt341HmPeWspihX43yVRA0mS+8GGk2Gckc7bY/HCmA==", - "requires": { - "@babel/helper-compilation-targets": "^7.13.0", - "@babel/helper-module-imports": "^7.12.13", - "@babel/helper-plugin-utils": "^7.13.0", - "@babel/traverse": "^7.13.0", - "debug": "^4.1.1", - "lodash.debounce": "^4.0.8", - "resolve": "^1.14.2", - "semver": "^6.1.2" - }, - "dependencies": { - "semver": { - "version": "6.3.0", - "resolved": "https://registry.npmjs.org/semver/-/semver-6.3.0.tgz", - "integrity": "sha512-b39TBaTSfV6yBrapU89p5fKekE2m/NwnDocOVruQFS1/veMgdzuPcnOM34M6CwxW8jH/lxEa5rBoDeUwu5HHTw==" - } - } - }, - "@babel/helper-environment-visitor": { - "version": "7.18.6", - "resolved": "https://registry.npmjs.org/@babel/helper-environment-visitor/-/helper-environment-visitor-7.18.6.tgz", - "integrity": "sha512-8n6gSfn2baOY+qlp+VSzsosjCVGFqWKmDF0cCWOybh52Dw3SEyoWR1KrhMJASjLwIEkkAufZ0xvr+SxLHSpy2Q==" - }, - "@babel/helper-explode-assignable-expression": { - "version": "7.18.6", - "resolved": "https://registry.npmjs.org/@babel/helper-explode-assignable-expression/-/helper-explode-assignable-expression-7.18.6.tgz", - "integrity": "sha512-eyAYAsQmB80jNfg4baAtLeWAQHfHFiR483rzFK+BhETlGZaQC9bsfrugfXDCbRHLQbIA7U5NxhhOxN7p/dWIcg==", - "requires": { - "@babel/types": "^7.18.6" - } - }, - "@babel/helper-function-name": { - "version": "7.18.6", - "resolved": "https://registry.npmjs.org/@babel/helper-function-name/-/helper-function-name-7.18.6.tgz", - "integrity": "sha512-0mWMxV1aC97dhjCah5U5Ua7668r5ZmSC2DLfH2EZnf9c3/dHZKiFa5pRLMH5tjSl471tY6496ZWk/kjNONBxhw==", - "requires": { - "@babel/template": "^7.18.6", - "@babel/types": "^7.18.6" - } - }, - "@babel/helper-hoist-variables": { - "version": "7.18.6", - "resolved": "https://registry.npmjs.org/@babel/helper-hoist-variables/-/helper-hoist-variables-7.18.6.tgz", - "integrity": "sha512-UlJQPkFqFULIcyW5sbzgbkxn2FKRgwWiRexcuaR8RNJRy8+LLveqPjwZV/bwrLZCN0eUHD/x8D0heK1ozuoo6Q==", - "requires": { - "@babel/types": "^7.18.6" - } - }, - "@babel/helper-member-expression-to-functions": { - "version": "7.18.6", - "resolved": "https://registry.npmjs.org/@babel/helper-member-expression-to-functions/-/helper-member-expression-to-functions-7.18.6.tgz", - "integrity": "sha512-CeHxqwwipekotzPDUuJOfIMtcIHBuc7WAzLmTYWctVigqS5RktNMQ5bEwQSuGewzYnCtTWa3BARXeiLxDTv+Ng==", - "requires": { - "@babel/types": "^7.18.6" - } - }, - "@babel/helper-module-imports": { - "version": "7.18.6", - "resolved": "https://registry.npmjs.org/@babel/helper-module-imports/-/helper-module-imports-7.18.6.tgz", - "integrity": "sha512-0NFvs3VkuSYbFi1x2Vd6tKrywq+z/cLeYC/RJNFrIX/30Bf5aiGYbtvGXolEktzJH8o5E5KJ3tT+nkxuuZFVlA==", - "requires": { - "@babel/types": "^7.18.6" - } - }, - "@babel/helper-module-transforms": { - "version": "7.18.6", - "resolved": "https://registry.npmjs.org/@babel/helper-module-transforms/-/helper-module-transforms-7.18.6.tgz", - "integrity": "sha512-L//phhB4al5uucwzlimruukHB3jRd5JGClwRMD/ROrVjXfLqovYnvQrK/JK36WYyVwGGO7OD3kMyVTjx+WVPhw==", - "requires": { - "@babel/helper-environment-visitor": "^7.18.6", - "@babel/helper-module-imports": "^7.18.6", - "@babel/helper-simple-access": "^7.18.6", - "@babel/helper-split-export-declaration": "^7.18.6", - "@babel/helper-validator-identifier": "^7.18.6", - "@babel/template": "^7.18.6", - "@babel/traverse": "^7.18.6", - "@babel/types": "^7.18.6" - } - }, - "@babel/helper-optimise-call-expression": { - "version": "7.18.6", - "resolved": "https://registry.npmjs.org/@babel/helper-optimise-call-expression/-/helper-optimise-call-expression-7.18.6.tgz", - "integrity": "sha512-HP59oD9/fEHQkdcbgFCnbmgH5vIQTJbxh2yf+CdM89/glUNnuzr87Q8GIjGEnOktTROemO0Pe0iPAYbqZuOUiA==", - "requires": { - "@babel/types": "^7.18.6" - } - }, - "@babel/helper-plugin-utils": { - "version": "7.18.6", - "resolved": "https://registry.npmjs.org/@babel/helper-plugin-utils/-/helper-plugin-utils-7.18.6.tgz", - "integrity": "sha512-gvZnm1YAAxh13eJdkb9EWHBnF3eAub3XTLCZEehHT2kWxiKVRL64+ae5Y6Ivne0mVHmMYKT+xWgZO+gQhuLUBg==" - }, - "@babel/helper-remap-async-to-generator": { - "version": "7.18.6", - "resolved": "https://registry.npmjs.org/@babel/helper-remap-async-to-generator/-/helper-remap-async-to-generator-7.18.6.tgz", - "integrity": "sha512-z5wbmV55TveUPZlCLZvxWHtrjuJd+8inFhk7DG0WW87/oJuGDcjDiu7HIvGcpf5464L6xKCg3vNkmlVVz9hwyQ==", - "requires": { - "@babel/helper-annotate-as-pure": "^7.18.6", - "@babel/helper-environment-visitor": "^7.18.6", - "@babel/helper-wrap-function": "^7.18.6", - "@babel/types": "^7.18.6" - } - }, - "@babel/helper-replace-supers": { - "version": "7.18.6", - "resolved": "https://registry.npmjs.org/@babel/helper-replace-supers/-/helper-replace-supers-7.18.6.tgz", - "integrity": "sha512-fTf7zoXnUGl9gF25fXCWE26t7Tvtyn6H4hkLSYhATwJvw2uYxd3aoXplMSe0g9XbwK7bmxNes7+FGO0rB/xC0g==", - "requires": { - "@babel/helper-environment-visitor": "^7.18.6", - "@babel/helper-member-expression-to-functions": "^7.18.6", - "@babel/helper-optimise-call-expression": "^7.18.6", - "@babel/traverse": "^7.18.6", - "@babel/types": "^7.18.6" - } - }, - "@babel/helper-simple-access": { - "version": "7.18.6", - "resolved": "https://registry.npmjs.org/@babel/helper-simple-access/-/helper-simple-access-7.18.6.tgz", - "integrity": "sha512-iNpIgTgyAvDQpDj76POqg+YEt8fPxx3yaNBg3S30dxNKm2SWfYhD0TGrK/Eu9wHpUW63VQU894TsTg+GLbUa1g==", - "requires": { - "@babel/types": "^7.18.6" - } - }, - "@babel/helper-skip-transparent-expression-wrappers": { - "version": "7.18.6", - "resolved": "https://registry.npmjs.org/@babel/helper-skip-transparent-expression-wrappers/-/helper-skip-transparent-expression-wrappers-7.18.6.tgz", - "integrity": "sha512-4KoLhwGS9vGethZpAhYnMejWkX64wsnHPDwvOsKWU6Fg4+AlK2Jz3TyjQLMEPvz+1zemi/WBdkYxCD0bAfIkiw==", - "requires": { - "@babel/types": "^7.18.6" - } - }, - "@babel/helper-split-export-declaration": { - "version": "7.18.6", - "resolved": "https://registry.npmjs.org/@babel/helper-split-export-declaration/-/helper-split-export-declaration-7.18.6.tgz", - "integrity": "sha512-bde1etTx6ZyTmobl9LLMMQsaizFVZrquTEHOqKeQESMKo4PlObf+8+JA25ZsIpZhT/WEd39+vOdLXAFG/nELpA==", - "requires": { - "@babel/types": "^7.18.6" - } - }, - "@babel/helper-validator-identifier": { - "version": "7.18.6", - "resolved": "https://registry.npmjs.org/@babel/helper-validator-identifier/-/helper-validator-identifier-7.18.6.tgz", - "integrity": "sha512-MmetCkz9ej86nJQV+sFCxoGGrUbU3q02kgLciwkrt9QqEB7cP39oKEY0PakknEO0Gu20SskMRi+AYZ3b1TpN9g==" - }, - "@babel/helper-validator-option": { - "version": "7.18.6", - "resolved": "https://registry.npmjs.org/@babel/helper-validator-option/-/helper-validator-option-7.18.6.tgz", - "integrity": "sha512-XO7gESt5ouv/LRJdrVjkShckw6STTaB7l9BrpBaAHDeF5YZT+01PCwmR0SJHnkW6i8OwW/EVWRShfi4j2x+KQw==" - }, - "@babel/helper-wrap-function": { - "version": "7.18.6", - "resolved": "https://registry.npmjs.org/@babel/helper-wrap-function/-/helper-wrap-function-7.18.6.tgz", - "integrity": "sha512-I5/LZfozwMNbwr/b1vhhuYD+J/mU+gfGAj5td7l5Rv9WYmH6i3Om69WGKNmlIpsVW/mF6O5bvTKbvDQZVgjqOw==", - "requires": { - "@babel/helper-function-name": "^7.18.6", - "@babel/template": "^7.18.6", - "@babel/traverse": "^7.18.6", - "@babel/types": "^7.18.6" - } - }, - "@babel/helpers": { - "version": "7.18.6", - "resolved": "https://registry.npmjs.org/@babel/helpers/-/helpers-7.18.6.tgz", - "integrity": "sha512-vzSiiqbQOghPngUYt/zWGvK3LAsPhz55vc9XNN0xAl2gV4ieShI2OQli5duxWHD+72PZPTKAcfcZDE1Cwc5zsQ==", - "requires": { - "@babel/template": "^7.18.6", - "@babel/traverse": "^7.18.6", - "@babel/types": "^7.18.6" - } - }, - "@babel/highlight": { - "version": "7.18.6", - "resolved": "https://registry.npmjs.org/@babel/highlight/-/highlight-7.18.6.tgz", - "integrity": "sha512-u7stbOuYjaPezCuLj29hNW1v64M2Md2qupEKP1fHc7WdOA3DgLh37suiSrZYY7haUB7iBeQZ9P1uiRF359do3g==", - "requires": { - "@babel/helper-validator-identifier": "^7.18.6", - "chalk": "^2.0.0", - "js-tokens": "^4.0.0" - } - }, - "@babel/parser": { - "version": "7.18.6", - "resolved": "https://registry.npmjs.org/@babel/parser/-/parser-7.18.6.tgz", - "integrity": "sha512-uQVSa9jJUe/G/304lXspfWVpKpK4euFLgGiMQFOCpM/bgcAdeoHwi/OQz23O9GK2osz26ZiXRRV9aV+Yl1O8tw==" - }, - "@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression": { - "version": "7.18.6", - "resolved": "https://registry.npmjs.org/@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression/-/plugin-bugfix-safari-id-destructuring-collision-in-function-expression-7.18.6.tgz", - "integrity": "sha512-Dgxsyg54Fx1d4Nge8UnvTrED63vrwOdPmyvPzlNN/boaliRP54pm3pGzZD1SJUwrBA+Cs/xdG8kXX6Mn/RfISQ==", - "requires": { - "@babel/helper-plugin-utils": "^7.18.6" - } - }, - "@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining": { - "version": "7.18.6", - "resolved": "https://registry.npmjs.org/@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining/-/plugin-bugfix-v8-spread-parameters-in-optional-chaining-7.18.6.tgz", - "integrity": "sha512-Udgu8ZRgrBrttVz6A0EVL0SJ1z+RLbIeqsu632SA1hf0awEppD6TvdznoH+orIF8wtFFAV/Enmw9Y+9oV8TQcw==", - "requires": { - "@babel/helper-plugin-utils": "^7.18.6", - "@babel/helper-skip-transparent-expression-wrappers": "^7.18.6", - "@babel/plugin-proposal-optional-chaining": "^7.18.6" - } - }, - "@babel/plugin-proposal-async-generator-functions": { - "version": "7.18.6", - "resolved": "https://registry.npmjs.org/@babel/plugin-proposal-async-generator-functions/-/plugin-proposal-async-generator-functions-7.18.6.tgz", - "integrity": "sha512-WAz4R9bvozx4qwf74M+sfqPMKfSqwM0phxPTR6iJIi8robgzXwkEgmeJG1gEKhm6sDqT/U9aV3lfcqybIpev8w==", - "requires": { - "@babel/helper-environment-visitor": "^7.18.6", - "@babel/helper-plugin-utils": "^7.18.6", - "@babel/helper-remap-async-to-generator": "^7.18.6", - "@babel/plugin-syntax-async-generators": "^7.8.4" - } - }, - "@babel/plugin-proposal-class-properties": { - "version": "7.18.6", - "resolved": "https://registry.npmjs.org/@babel/plugin-proposal-class-properties/-/plugin-proposal-class-properties-7.18.6.tgz", - "integrity": "sha512-cumfXOF0+nzZrrN8Rf0t7M+tF6sZc7vhQwYQck9q1/5w2OExlD+b4v4RpMJFaV1Z7WcDRgO6FqvxqxGlwo+RHQ==", - "requires": { - "@babel/helper-create-class-features-plugin": "^7.18.6", - "@babel/helper-plugin-utils": "^7.18.6" - } - }, - "@babel/plugin-proposal-class-static-block": { - "version": "7.18.6", - "resolved": "https://registry.npmjs.org/@babel/plugin-proposal-class-static-block/-/plugin-proposal-class-static-block-7.18.6.tgz", - "integrity": "sha512-+I3oIiNxrCpup3Gi8n5IGMwj0gOCAjcJUSQEcotNnCCPMEnixawOQ+KeJPlgfjzx+FKQ1QSyZOWe7wmoJp7vhw==", - "requires": { - "@babel/helper-create-class-features-plugin": "^7.18.6", - "@babel/helper-plugin-utils": "^7.18.6", - "@babel/plugin-syntax-class-static-block": "^7.14.5" - } - }, - "@babel/plugin-proposal-decorators": { - "version": "7.18.6", - "resolved": "https://registry.npmjs.org/@babel/plugin-proposal-decorators/-/plugin-proposal-decorators-7.18.6.tgz", - "integrity": "sha512-gAdhsjaYmiZVxx5vTMiRfj31nB7LhwBJFMSLzeDxc7X4tKLixup0+k9ughn0RcpBrv9E3PBaXJW7jF5TCihAOg==", - "requires": { - "@babel/helper-create-class-features-plugin": "^7.18.6", - "@babel/helper-plugin-utils": "^7.18.6", - "@babel/helper-replace-supers": "^7.18.6", - "@babel/helper-split-export-declaration": "^7.18.6", - "@babel/plugin-syntax-decorators": "^7.18.6" - } - }, - "@babel/plugin-proposal-dynamic-import": { - "version": "7.18.6", - "resolved": "https://registry.npmjs.org/@babel/plugin-proposal-dynamic-import/-/plugin-proposal-dynamic-import-7.18.6.tgz", - "integrity": "sha512-1auuwmK+Rz13SJj36R+jqFPMJWyKEDd7lLSdOj4oJK0UTgGueSAtkrCvz9ewmgyU/P941Rv2fQwZJN8s6QruXw==", - "requires": { - "@babel/helper-plugin-utils": "^7.18.6", - "@babel/plugin-syntax-dynamic-import": "^7.8.3" - } - }, - "@babel/plugin-proposal-export-namespace-from": { - "version": "7.18.6", - "resolved": "https://registry.npmjs.org/@babel/plugin-proposal-export-namespace-from/-/plugin-proposal-export-namespace-from-7.18.6.tgz", - "integrity": "sha512-zr/QcUlUo7GPo6+X1wC98NJADqmy5QTFWWhqeQWiki4XHafJtLl/YMGkmRB2szDD2IYJCCdBTd4ElwhId9T7Xw==", - "requires": { - "@babel/helper-plugin-utils": "^7.18.6", - "@babel/plugin-syntax-export-namespace-from": "^7.8.3" - } - }, - "@babel/plugin-proposal-json-strings": { - "version": "7.18.6", - "resolved": "https://registry.npmjs.org/@babel/plugin-proposal-json-strings/-/plugin-proposal-json-strings-7.18.6.tgz", - "integrity": "sha512-lr1peyn9kOdbYc0xr0OdHTZ5FMqS6Di+H0Fz2I/JwMzGmzJETNeOFq2pBySw6X/KFL5EWDjlJuMsUGRFb8fQgQ==", - "requires": { - "@babel/helper-plugin-utils": "^7.18.6", - "@babel/plugin-syntax-json-strings": "^7.8.3" - } - }, - "@babel/plugin-proposal-logical-assignment-operators": { - "version": "7.18.6", - "resolved": "https://registry.npmjs.org/@babel/plugin-proposal-logical-assignment-operators/-/plugin-proposal-logical-assignment-operators-7.18.6.tgz", - "integrity": "sha512-zMo66azZth/0tVd7gmkxOkOjs2rpHyhpcFo565PUP37hSp6hSd9uUKIfTDFMz58BwqgQKhJ9YxtM5XddjXVn+Q==", - "requires": { - "@babel/helper-plugin-utils": "^7.18.6", - "@babel/plugin-syntax-logical-assignment-operators": "^7.10.4" - } - }, - "@babel/plugin-proposal-nullish-coalescing-operator": { - "version": "7.18.6", - "resolved": "https://registry.npmjs.org/@babel/plugin-proposal-nullish-coalescing-operator/-/plugin-proposal-nullish-coalescing-operator-7.18.6.tgz", - "integrity": "sha512-wQxQzxYeJqHcfppzBDnm1yAY0jSRkUXR2z8RePZYrKwMKgMlE8+Z6LUno+bd6LvbGh8Gltvy74+9pIYkr+XkKA==", - "requires": { - "@babel/helper-plugin-utils": "^7.18.6", - "@babel/plugin-syntax-nullish-coalescing-operator": "^7.8.3" - } - }, - "@babel/plugin-proposal-numeric-separator": { - "version": "7.18.6", - "resolved": "https://registry.npmjs.org/@babel/plugin-proposal-numeric-separator/-/plugin-proposal-numeric-separator-7.18.6.tgz", - "integrity": "sha512-ozlZFogPqoLm8WBr5Z8UckIoE4YQ5KESVcNudyXOR8uqIkliTEgJ3RoketfG6pmzLdeZF0H/wjE9/cCEitBl7Q==", - "requires": { - "@babel/helper-plugin-utils": "^7.18.6", - "@babel/plugin-syntax-numeric-separator": "^7.10.4" - } - }, - "@babel/plugin-proposal-object-rest-spread": { - "version": "7.18.6", - "resolved": "https://registry.npmjs.org/@babel/plugin-proposal-object-rest-spread/-/plugin-proposal-object-rest-spread-7.18.6.tgz", - "integrity": "sha512-9yuM6wr4rIsKa1wlUAbZEazkCrgw2sMPEXCr4Rnwetu7cEW1NydkCWytLuYletbf8vFxdJxFhwEZqMpOx2eZyw==", - "requires": { - "@babel/compat-data": "^7.18.6", - "@babel/helper-compilation-targets": "^7.18.6", - "@babel/helper-plugin-utils": "^7.18.6", - "@babel/plugin-syntax-object-rest-spread": "^7.8.3", - "@babel/plugin-transform-parameters": "^7.18.6" - } - }, - "@babel/plugin-proposal-optional-catch-binding": { - "version": "7.18.6", - "resolved": "https://registry.npmjs.org/@babel/plugin-proposal-optional-catch-binding/-/plugin-proposal-optional-catch-binding-7.18.6.tgz", - "integrity": "sha512-Q40HEhs9DJQyaZfUjjn6vE8Cv4GmMHCYuMGIWUnlxH6400VGxOuwWsPt4FxXxJkC/5eOzgn0z21M9gMT4MOhbw==", - "requires": { - "@babel/helper-plugin-utils": "^7.18.6", - "@babel/plugin-syntax-optional-catch-binding": "^7.8.3" - } - }, - "@babel/plugin-proposal-optional-chaining": { - "version": "7.18.6", - "resolved": "https://registry.npmjs.org/@babel/plugin-proposal-optional-chaining/-/plugin-proposal-optional-chaining-7.18.6.tgz", - "integrity": "sha512-PatI6elL5eMzoypFAiYDpYQyMtXTn+iMhuxxQt5mAXD4fEmKorpSI3PHd+i3JXBJN3xyA6MvJv7at23HffFHwA==", - "requires": { - "@babel/helper-plugin-utils": "^7.18.6", - "@babel/helper-skip-transparent-expression-wrappers": "^7.18.6", - "@babel/plugin-syntax-optional-chaining": "^7.8.3" - } - }, - "@babel/plugin-proposal-private-methods": { - "version": "7.18.6", - "resolved": "https://registry.npmjs.org/@babel/plugin-proposal-private-methods/-/plugin-proposal-private-methods-7.18.6.tgz", - "integrity": "sha512-nutsvktDItsNn4rpGItSNV2sz1XwS+nfU0Rg8aCx3W3NOKVzdMjJRu0O5OkgDp3ZGICSTbgRpxZoWsxoKRvbeA==", - "requires": { - "@babel/helper-create-class-features-plugin": "^7.18.6", - "@babel/helper-plugin-utils": "^7.18.6" - } - }, - "@babel/plugin-proposal-private-property-in-object": { - "version": "7.18.6", - "resolved": "https://registry.npmjs.org/@babel/plugin-proposal-private-property-in-object/-/plugin-proposal-private-property-in-object-7.18.6.tgz", - "integrity": "sha512-9Rysx7FOctvT5ouj5JODjAFAkgGoudQuLPamZb0v1TGLpapdNaftzifU8NTWQm0IRjqoYypdrSmyWgkocDQ8Dw==", - "requires": { - "@babel/helper-annotate-as-pure": "^7.18.6", - "@babel/helper-create-class-features-plugin": "^7.18.6", - "@babel/helper-plugin-utils": "^7.18.6", - "@babel/plugin-syntax-private-property-in-object": "^7.14.5" - } - }, - "@babel/plugin-proposal-unicode-property-regex": { - "version": "7.18.6", - "resolved": "https://registry.npmjs.org/@babel/plugin-proposal-unicode-property-regex/-/plugin-proposal-unicode-property-regex-7.18.6.tgz", - "integrity": "sha512-2BShG/d5yoZyXZfVePH91urL5wTG6ASZU9M4o03lKK8u8UW1y08OMttBSOADTcJrnPMpvDXRG3G8fyLh4ovs8w==", - "requires": { - "@babel/helper-create-regexp-features-plugin": "^7.18.6", - "@babel/helper-plugin-utils": "^7.18.6" - } - }, - "@babel/plugin-syntax-async-generators": { - "version": "7.8.4", - "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-async-generators/-/plugin-syntax-async-generators-7.8.4.tgz", - "integrity": "sha512-tycmZxkGfZaxhMRbXlPXuVFpdWlXpir2W4AMhSJgRKzk/eDlIXOhb2LHWoLpDF7TEHylV5zNhykX6KAgHJmTNw==", - "requires": { - "@babel/helper-plugin-utils": "^7.8.0" - } - }, - "@babel/plugin-syntax-bigint": { - "version": "7.8.3", - "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-bigint/-/plugin-syntax-bigint-7.8.3.tgz", - "integrity": "sha512-wnTnFlG+YxQm3vDxpGE57Pj0srRU4sHE/mDkt1qv2YJJSeUAec2ma4WLUnUPeKjyrfntVwe/N6dCXpU+zL3Npg==", - "requires": { - "@babel/helper-plugin-utils": "^7.8.0" - } - }, - "@babel/plugin-syntax-class-properties": { - "version": "7.12.13", - "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-class-properties/-/plugin-syntax-class-properties-7.12.13.tgz", - "integrity": "sha512-fm4idjKla0YahUNgFNLCB0qySdsoPiZP3iQE3rky0mBUtMZ23yDJ9SJdg6dXTSDnulOVqiF3Hgr9nbXvXTQZYA==", - "requires": { - "@babel/helper-plugin-utils": "^7.12.13" - } - }, - "@babel/plugin-syntax-class-static-block": { - "version": "7.14.5", - "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-class-static-block/-/plugin-syntax-class-static-block-7.14.5.tgz", - "integrity": "sha512-b+YyPmr6ldyNnM6sqYeMWE+bgJcJpO6yS4QD7ymxgH34GBPNDM/THBh8iunyvKIZztiwLH4CJZ0RxTk9emgpjw==", - "requires": { - "@babel/helper-plugin-utils": "^7.14.5" - } - }, - "@babel/plugin-syntax-decorators": { - "version": "7.18.6", - "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-decorators/-/plugin-syntax-decorators-7.18.6.tgz", - "integrity": "sha512-fqyLgjcxf/1yhyZ6A+yo1u9gJ7eleFQod2lkaUsF9DQ7sbbY3Ligym3L0+I2c0WmqNKDpoD9UTb1AKP3qRMOAQ==", - "requires": { - "@babel/helper-plugin-utils": "^7.18.6" - } - }, - "@babel/plugin-syntax-dynamic-import": { - "version": "7.8.3", - "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-dynamic-import/-/plugin-syntax-dynamic-import-7.8.3.tgz", - "integrity": "sha512-5gdGbFon+PszYzqs83S3E5mpi7/y/8M9eC90MRTZfduQOYW76ig6SOSPNe41IG5LoP3FGBn2N0RjVDSQiS94kQ==", - "requires": { - "@babel/helper-plugin-utils": "^7.8.0" - } - }, - "@babel/plugin-syntax-export-namespace-from": { - "version": "7.8.3", - "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-export-namespace-from/-/plugin-syntax-export-namespace-from-7.8.3.tgz", - "integrity": "sha512-MXf5laXo6c1IbEbegDmzGPwGNTsHZmEy6QGznu5Sh2UCWvueywb2ee+CCE4zQiZstxU9BMoQO9i6zUFSY0Kj0Q==", - "requires": { - "@babel/helper-plugin-utils": "^7.8.3" - } - }, - "@babel/plugin-syntax-flow": { - "version": "7.18.6", - "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-flow/-/plugin-syntax-flow-7.18.6.tgz", - "integrity": "sha512-LUbR+KNTBWCUAqRG9ex5Gnzu2IOkt8jRJbHHXFT9q+L9zm7M/QQbEqXyw1n1pohYvOyWC8CjeyjrSaIwiYjK7A==", - "requires": { - "@babel/helper-plugin-utils": "^7.18.6" - } - }, - "@babel/plugin-syntax-import-assertions": { - "version": "7.18.6", - "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-import-assertions/-/plugin-syntax-import-assertions-7.18.6.tgz", - "integrity": "sha512-/DU3RXad9+bZwrgWJQKbr39gYbJpLJHezqEzRzi/BHRlJ9zsQb4CK2CA/5apllXNomwA1qHwzvHl+AdEmC5krQ==", - "requires": { - "@babel/helper-plugin-utils": "^7.18.6" - } - }, - "@babel/plugin-syntax-import-meta": { - "version": "7.10.4", - "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-import-meta/-/plugin-syntax-import-meta-7.10.4.tgz", - "integrity": "sha512-Yqfm+XDx0+Prh3VSeEQCPU81yC+JWZ2pDPFSS4ZdpfZhp4MkFMaDC1UqseovEKwSUpnIL7+vK+Clp7bfh0iD7g==", - "requires": { - "@babel/helper-plugin-utils": "^7.10.4" - } - }, - "@babel/plugin-syntax-json-strings": { - "version": "7.8.3", - "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-json-strings/-/plugin-syntax-json-strings-7.8.3.tgz", - "integrity": "sha512-lY6kdGpWHvjoe2vk4WrAapEuBR69EMxZl+RoGRhrFGNYVK8mOPAW8VfbT/ZgrFbXlDNiiaxQnAtgVCZ6jv30EA==", - "requires": { - "@babel/helper-plugin-utils": "^7.8.0" - } - }, - "@babel/plugin-syntax-jsx": { - "version": "7.18.6", - "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-jsx/-/plugin-syntax-jsx-7.18.6.tgz", - "integrity": "sha512-6mmljtAedFGTWu2p/8WIORGwy+61PLgOMPOdazc7YoJ9ZCWUyFy3A6CpPkRKLKD1ToAesxX8KGEViAiLo9N+7Q==", - "requires": { - "@babel/helper-plugin-utils": "^7.18.6" - } - }, - "@babel/plugin-syntax-logical-assignment-operators": { - "version": "7.10.4", - "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-logical-assignment-operators/-/plugin-syntax-logical-assignment-operators-7.10.4.tgz", - "integrity": "sha512-d8waShlpFDinQ5MtvGU9xDAOzKH47+FFoney2baFIoMr952hKOLp1HR7VszoZvOsV/4+RRszNY7D17ba0te0ig==", - "requires": { - "@babel/helper-plugin-utils": "^7.10.4" - } - }, - "@babel/plugin-syntax-nullish-coalescing-operator": { - "version": "7.8.3", - "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-nullish-coalescing-operator/-/plugin-syntax-nullish-coalescing-operator-7.8.3.tgz", - "integrity": "sha512-aSff4zPII1u2QD7y+F8oDsz19ew4IGEJg9SVW+bqwpwtfFleiQDMdzA/R+UlWDzfnHFCxxleFT0PMIrR36XLNQ==", - "requires": { - "@babel/helper-plugin-utils": "^7.8.0" - } - }, - "@babel/plugin-syntax-numeric-separator": { - "version": "7.10.4", - "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-numeric-separator/-/plugin-syntax-numeric-separator-7.10.4.tgz", - "integrity": "sha512-9H6YdfkcK/uOnY/K7/aA2xpzaAgkQn37yzWUMRK7OaPOqOpGS1+n0H5hxT9AUw9EsSjPW8SVyMJwYRtWs3X3ug==", - "requires": { - "@babel/helper-plugin-utils": "^7.10.4" - } - }, - "@babel/plugin-syntax-object-rest-spread": { - "version": "7.8.3", - "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-object-rest-spread/-/plugin-syntax-object-rest-spread-7.8.3.tgz", - "integrity": "sha512-XoqMijGZb9y3y2XskN+P1wUGiVwWZ5JmoDRwx5+3GmEplNyVM2s2Dg8ILFQm8rWM48orGy5YpI5Bl8U1y7ydlA==", - "requires": { - "@babel/helper-plugin-utils": "^7.8.0" - } - }, - "@babel/plugin-syntax-optional-catch-binding": { - "version": "7.8.3", - "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-optional-catch-binding/-/plugin-syntax-optional-catch-binding-7.8.3.tgz", - "integrity": "sha512-6VPD0Pc1lpTqw0aKoeRTMiB+kWhAoT24PA+ksWSBrFtl5SIRVpZlwN3NNPQjehA2E/91FV3RjLWoVTglWcSV3Q==", - "requires": { - "@babel/helper-plugin-utils": "^7.8.0" - } - }, - "@babel/plugin-syntax-optional-chaining": { - "version": "7.8.3", - "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-optional-chaining/-/plugin-syntax-optional-chaining-7.8.3.tgz", - "integrity": "sha512-KoK9ErH1MBlCPxV0VANkXW2/dw4vlbGDrFgz8bmUsBGYkFRcbRwMh6cIJubdPrkxRwuGdtCk0v/wPTKbQgBjkg==", - "requires": { - "@babel/helper-plugin-utils": "^7.8.0" - } - }, - "@babel/plugin-syntax-private-property-in-object": { - "version": "7.14.5", - "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-private-property-in-object/-/plugin-syntax-private-property-in-object-7.14.5.tgz", - "integrity": "sha512-0wVnp9dxJ72ZUJDV27ZfbSj6iHLoytYZmh3rFcxNnvsJF3ktkzLDZPy/mA17HGsaQT3/DQsWYX1f1QGWkCoVUg==", - "requires": { - "@babel/helper-plugin-utils": "^7.14.5" - } - }, - "@babel/plugin-syntax-top-level-await": { - "version": "7.14.5", - "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-top-level-await/-/plugin-syntax-top-level-await-7.14.5.tgz", - "integrity": "sha512-hx++upLv5U1rgYfwe1xBQUhRmU41NEvpUvrp8jkrSCdvGSnM5/qdRMtylJ6PG5OFkBaHkbTAKTnd3/YyESRHFw==", - "requires": { - "@babel/helper-plugin-utils": "^7.14.5" - } - }, - "@babel/plugin-syntax-typescript": { - "version": "7.18.6", - "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-typescript/-/plugin-syntax-typescript-7.18.6.tgz", - "integrity": "sha512-mAWAuq4rvOepWCBid55JuRNvpTNf2UGVgoz4JV0fXEKolsVZDzsa4NqCef758WZJj/GDu0gVGItjKFiClTAmZA==", - "requires": { - "@babel/helper-plugin-utils": "^7.18.6" - } - }, - "@babel/plugin-transform-arrow-functions": { - "version": "7.18.6", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-arrow-functions/-/plugin-transform-arrow-functions-7.18.6.tgz", - "integrity": "sha512-9S9X9RUefzrsHZmKMbDXxweEH+YlE8JJEuat9FdvW9Qh1cw7W64jELCtWNkPBPX5En45uy28KGvA/AySqUh8CQ==", - "requires": { - "@babel/helper-plugin-utils": "^7.18.6" - } - }, - "@babel/plugin-transform-async-to-generator": { - "version": "7.18.6", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-async-to-generator/-/plugin-transform-async-to-generator-7.18.6.tgz", - "integrity": "sha512-ARE5wZLKnTgPW7/1ftQmSi1CmkqqHo2DNmtztFhvgtOWSDfq0Cq9/9L+KnZNYSNrydBekhW3rwShduf59RoXag==", - "requires": { - "@babel/helper-module-imports": "^7.18.6", - "@babel/helper-plugin-utils": "^7.18.6", - "@babel/helper-remap-async-to-generator": "^7.18.6" - } - }, - "@babel/plugin-transform-block-scoped-functions": { - "version": "7.18.6", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-block-scoped-functions/-/plugin-transform-block-scoped-functions-7.18.6.tgz", - "integrity": "sha512-ExUcOqpPWnliRcPqves5HJcJOvHvIIWfuS4sroBUenPuMdmW+SMHDakmtS7qOo13sVppmUijqeTv7qqGsvURpQ==", - "requires": { - "@babel/helper-plugin-utils": "^7.18.6" - } - }, - "@babel/plugin-transform-block-scoping": { - "version": "7.18.6", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-block-scoping/-/plugin-transform-block-scoping-7.18.6.tgz", - "integrity": "sha512-pRqwb91C42vs1ahSAWJkxOxU1RHWDn16XAa6ggQ72wjLlWyYeAcLvTtE0aM8ph3KNydy9CQF2nLYcjq1WysgxQ==", - "requires": { - "@babel/helper-plugin-utils": "^7.18.6" - } - }, - "@babel/plugin-transform-classes": { - "version": "7.18.6", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-classes/-/plugin-transform-classes-7.18.6.tgz", - "integrity": "sha512-XTg8XW/mKpzAF3actL554Jl/dOYoJtv3l8fxaEczpgz84IeeVf+T1u2CSvPHuZbt0w3JkIx4rdn/MRQI7mo0HQ==", - "requires": { - "@babel/helper-annotate-as-pure": "^7.18.6", - "@babel/helper-environment-visitor": "^7.18.6", - "@babel/helper-function-name": "^7.18.6", - "@babel/helper-optimise-call-expression": "^7.18.6", - "@babel/helper-plugin-utils": "^7.18.6", - "@babel/helper-replace-supers": "^7.18.6", - "@babel/helper-split-export-declaration": "^7.18.6", - "globals": "^11.1.0" - } - }, - "@babel/plugin-transform-computed-properties": { - "version": "7.18.6", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-computed-properties/-/plugin-transform-computed-properties-7.18.6.tgz", - "integrity": "sha512-9repI4BhNrR0KenoR9vm3/cIc1tSBIo+u1WVjKCAynahj25O8zfbiE6JtAtHPGQSs4yZ+bA8mRasRP+qc+2R5A==", - "requires": { - "@babel/helper-plugin-utils": "^7.18.6" - } - }, - "@babel/plugin-transform-destructuring": { - "version": "7.18.6", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-destructuring/-/plugin-transform-destructuring-7.18.6.tgz", - "integrity": "sha512-tgy3u6lRp17ilY8r1kP4i2+HDUwxlVqq3RTc943eAWSzGgpU1qhiKpqZ5CMyHReIYPHdo3Kg8v8edKtDqSVEyQ==", - "requires": { - "@babel/helper-plugin-utils": "^7.18.6" - } - }, - "@babel/plugin-transform-dotall-regex": { - "version": "7.18.6", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-dotall-regex/-/plugin-transform-dotall-regex-7.18.6.tgz", - "integrity": "sha512-6S3jpun1eEbAxq7TdjLotAsl4WpQI9DxfkycRcKrjhQYzU87qpXdknpBg/e+TdcMehqGnLFi7tnFUBR02Vq6wg==", - "requires": { - "@babel/helper-create-regexp-features-plugin": "^7.18.6", - "@babel/helper-plugin-utils": "^7.18.6" - } - }, - "@babel/plugin-transform-duplicate-keys": { - "version": "7.18.6", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-duplicate-keys/-/plugin-transform-duplicate-keys-7.18.6.tgz", - "integrity": "sha512-NJU26U/208+sxYszf82nmGYqVF9QN8py2HFTblPT9hbawi8+1C5a9JubODLTGFuT0qlkqVinmkwOD13s0sZktg==", - "requires": { - "@babel/helper-plugin-utils": "^7.18.6" - } - }, - "@babel/plugin-transform-exponentiation-operator": { - "version": "7.18.6", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-exponentiation-operator/-/plugin-transform-exponentiation-operator-7.18.6.tgz", - "integrity": "sha512-wzEtc0+2c88FVR34aQmiz56dxEkxr2g8DQb/KfaFa1JYXOFVsbhvAonFN6PwVWj++fKmku8NP80plJ5Et4wqHw==", - "requires": { - "@babel/helper-builder-binary-assignment-operator-visitor": "^7.18.6", - "@babel/helper-plugin-utils": "^7.18.6" - } - }, - "@babel/plugin-transform-flow-strip-types": { - "version": "7.18.6", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-flow-strip-types/-/plugin-transform-flow-strip-types-7.18.6.tgz", - "integrity": "sha512-wE0xtA7csz+hw4fKPwxmu5jnzAsXPIO57XnRwzXP3T19jWh1BODnPGoG9xKYwvAwusP7iUktHayRFbMPGtODaQ==", - "requires": { - "@babel/helper-plugin-utils": "^7.18.6", - "@babel/plugin-syntax-flow": "^7.18.6" - } - }, - "@babel/plugin-transform-for-of": { - "version": "7.18.6", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-for-of/-/plugin-transform-for-of-7.18.6.tgz", - "integrity": "sha512-WAjoMf4wIiSsy88KmG7tgj2nFdEK7E46tArVtcgED7Bkj6Fg/tG5SbvNIOKxbFS2VFgNh6+iaPswBeQZm4ox8w==", - "requires": { - "@babel/helper-plugin-utils": "^7.18.6" - } - }, - "@babel/plugin-transform-function-name": { - "version": "7.18.6", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-function-name/-/plugin-transform-function-name-7.18.6.tgz", - "integrity": "sha512-kJha/Gbs5RjzIu0CxZwf5e3aTTSlhZnHMT8zPWnJMjNpLOUgqevg+PN5oMH68nMCXnfiMo4Bhgxqj59KHTlAnA==", - "requires": { - "@babel/helper-compilation-targets": "^7.18.6", - "@babel/helper-function-name": "^7.18.6", - "@babel/helper-plugin-utils": "^7.18.6" - } - }, - "@babel/plugin-transform-literals": { - "version": "7.18.6", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-literals/-/plugin-transform-literals-7.18.6.tgz", - "integrity": "sha512-x3HEw0cJZVDoENXOp20HlypIHfl0zMIhMVZEBVTfmqbObIpsMxMbmU5nOEO8R7LYT+z5RORKPlTI5Hj4OsO9/Q==", - "requires": { - "@babel/helper-plugin-utils": "^7.18.6" - } - }, - "@babel/plugin-transform-member-expression-literals": { - "version": "7.18.6", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-member-expression-literals/-/plugin-transform-member-expression-literals-7.18.6.tgz", - "integrity": "sha512-qSF1ihLGO3q+/g48k85tUjD033C29TNTVB2paCwZPVmOsjn9pClvYYrM2VeJpBY2bcNkuny0YUyTNRyRxJ54KA==", - "requires": { - "@babel/helper-plugin-utils": "^7.18.6" - } - }, - "@babel/plugin-transform-modules-amd": { - "version": "7.18.6", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-modules-amd/-/plugin-transform-modules-amd-7.18.6.tgz", - "integrity": "sha512-Pra5aXsmTsOnjM3IajS8rTaLCy++nGM4v3YR4esk5PCsyg9z8NA5oQLwxzMUtDBd8F+UmVza3VxoAaWCbzH1rg==", - "requires": { - "@babel/helper-module-transforms": "^7.18.6", - "@babel/helper-plugin-utils": "^7.18.6", - "babel-plugin-dynamic-import-node": "^2.3.3" - } - }, - "@babel/plugin-transform-modules-commonjs": { - "version": "7.18.6", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-modules-commonjs/-/plugin-transform-modules-commonjs-7.18.6.tgz", - "integrity": "sha512-Qfv2ZOWikpvmedXQJDSbxNqy7Xr/j2Y8/KfijM0iJyKkBTmWuvCA1yeH1yDM7NJhBW/2aXxeucLj6i80/LAJ/Q==", - "requires": { - "@babel/helper-module-transforms": "^7.18.6", - "@babel/helper-plugin-utils": "^7.18.6", - "@babel/helper-simple-access": "^7.18.6", - "babel-plugin-dynamic-import-node": "^2.3.3" - } - }, - "@babel/plugin-transform-modules-systemjs": { - "version": "7.18.6", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-modules-systemjs/-/plugin-transform-modules-systemjs-7.18.6.tgz", - "integrity": "sha512-UbPYpXxLjTw6w6yXX2BYNxF3p6QY225wcTkfQCy3OMnSlS/C3xGtwUjEzGkldb/sy6PWLiCQ3NbYfjWUTI3t4g==", - "requires": { - "@babel/helper-hoist-variables": "^7.18.6", - "@babel/helper-module-transforms": "^7.18.6", - "@babel/helper-plugin-utils": "^7.18.6", - "@babel/helper-validator-identifier": "^7.18.6", - "babel-plugin-dynamic-import-node": "^2.3.3" - } - }, - "@babel/plugin-transform-modules-umd": { - "version": "7.18.6", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-modules-umd/-/plugin-transform-modules-umd-7.18.6.tgz", - "integrity": "sha512-dcegErExVeXcRqNtkRU/z8WlBLnvD4MRnHgNs3MytRO1Mn1sHRyhbcpYbVMGclAqOjdW+9cfkdZno9dFdfKLfQ==", - "requires": { - "@babel/helper-module-transforms": "^7.18.6", - "@babel/helper-plugin-utils": "^7.18.6" - } - }, - "@babel/plugin-transform-named-capturing-groups-regex": { - "version": "7.18.6", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-named-capturing-groups-regex/-/plugin-transform-named-capturing-groups-regex-7.18.6.tgz", - "integrity": "sha512-UmEOGF8XgaIqD74bC8g7iV3RYj8lMf0Bw7NJzvnS9qQhM4mg+1WHKotUIdjxgD2RGrgFLZZPCFPFj3P/kVDYhg==", - "requires": { - "@babel/helper-create-regexp-features-plugin": "^7.18.6", - "@babel/helper-plugin-utils": "^7.18.6" - } - }, - "@babel/plugin-transform-new-target": { - "version": "7.18.6", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-new-target/-/plugin-transform-new-target-7.18.6.tgz", - "integrity": "sha512-DjwFA/9Iu3Z+vrAn+8pBUGcjhxKguSMlsFqeCKbhb9BAV756v0krzVK04CRDi/4aqmk8BsHb4a/gFcaA5joXRw==", - "requires": { - "@babel/helper-plugin-utils": "^7.18.6" - } - }, - "@babel/plugin-transform-object-super": { - "version": "7.18.6", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-object-super/-/plugin-transform-object-super-7.18.6.tgz", - "integrity": "sha512-uvGz6zk+pZoS1aTZrOvrbj6Pp/kK2mp45t2B+bTDre2UgsZZ8EZLSJtUg7m/no0zOJUWgFONpB7Zv9W2tSaFlA==", - "requires": { - "@babel/helper-plugin-utils": "^7.18.6", - "@babel/helper-replace-supers": "^7.18.6" - } - }, - "@babel/plugin-transform-parameters": { - "version": "7.18.6", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-parameters/-/plugin-transform-parameters-7.18.6.tgz", - "integrity": "sha512-FjdqgMv37yVl/gwvzkcB+wfjRI8HQmc5EgOG9iGNvUY1ok+TjsoaMP7IqCDZBhkFcM5f3OPVMs6Dmp03C5k4/A==", - "requires": { - "@babel/helper-plugin-utils": "^7.18.6" - } - }, - "@babel/plugin-transform-property-literals": { - "version": "7.18.6", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-property-literals/-/plugin-transform-property-literals-7.18.6.tgz", - "integrity": "sha512-cYcs6qlgafTud3PAzrrRNbQtfpQ8+y/+M5tKmksS9+M1ckbH6kzY8MrexEM9mcA6JDsukE19iIRvAyYl463sMg==", - "requires": { - "@babel/helper-plugin-utils": "^7.18.6" - } - }, - "@babel/plugin-transform-react-constant-elements": { - "version": "7.18.6", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-react-constant-elements/-/plugin-transform-react-constant-elements-7.18.6.tgz", - "integrity": "sha512-4g5H1bonF1dqgMe+wQ2fvDlRZ/mN/KwArk13teDv+xxn+pUDEiiDluQd6D2B30MJcL1u3qr0WZpfq0mw9/zSqA==", - "requires": { - "@babel/helper-plugin-utils": "^7.18.6" - } - }, - "@babel/plugin-transform-react-display-name": { - "version": "7.18.6", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-react-display-name/-/plugin-transform-react-display-name-7.18.6.tgz", - "integrity": "sha512-TV4sQ+T013n61uMoygyMRm+xf04Bd5oqFpv2jAEQwSZ8NwQA7zeRPg1LMVg2PWi3zWBz+CLKD+v5bcpZ/BS0aA==", - "requires": { - "@babel/helper-plugin-utils": "^7.18.6" - } - }, - "@babel/plugin-transform-react-jsx": { - "version": "7.18.6", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-react-jsx/-/plugin-transform-react-jsx-7.18.6.tgz", - "integrity": "sha512-Mz7xMPxoy9kPS/JScj6fJs03TZ/fZ1dJPlMjRAgTaxaS0fUBk8FV/A2rRgfPsVCZqALNwMexD+0Uaf5zlcKPpw==", - "requires": { - "@babel/helper-annotate-as-pure": "^7.18.6", - "@babel/helper-module-imports": "^7.18.6", - "@babel/helper-plugin-utils": "^7.18.6", - "@babel/plugin-syntax-jsx": "^7.18.6", - "@babel/types": "^7.18.6" - } - }, - "@babel/plugin-transform-react-jsx-development": { - "version": "7.18.6", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-react-jsx-development/-/plugin-transform-react-jsx-development-7.18.6.tgz", - "integrity": "sha512-SA6HEjwYFKF7WDjWcMcMGUimmw/nhNRDWxr+KaLSCrkD/LMDBvWRmHAYgE1HDeF8KUuI8OAu+RT6EOtKxSW2qA==", - "requires": { - "@babel/plugin-transform-react-jsx": "^7.18.6" - } - }, - "@babel/plugin-transform-react-pure-annotations": { - "version": "7.18.6", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-react-pure-annotations/-/plugin-transform-react-pure-annotations-7.18.6.tgz", - "integrity": "sha512-I8VfEPg9r2TRDdvnHgPepTKvuRomzA8+u+nhY7qSI1fR2hRNebasZEETLyM5mAUr0Ku56OkXJ0I7NHJnO6cJiQ==", - "requires": { - "@babel/helper-annotate-as-pure": "^7.18.6", - "@babel/helper-plugin-utils": "^7.18.6" - } - }, - "@babel/plugin-transform-regenerator": { - "version": "7.18.6", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-regenerator/-/plugin-transform-regenerator-7.18.6.tgz", - "integrity": "sha512-poqRI2+qiSdeldcz4wTSTXBRryoq3Gc70ye7m7UD5Ww0nE29IXqMl6r7Nd15WBgRd74vloEMlShtH6CKxVzfmQ==", - "requires": { - "@babel/helper-plugin-utils": "^7.18.6", - "regenerator-transform": "^0.15.0" - } - }, - "@babel/plugin-transform-reserved-words": { - "version": "7.18.6", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-reserved-words/-/plugin-transform-reserved-words-7.18.6.tgz", - "integrity": "sha512-oX/4MyMoypzHjFrT1CdivfKZ+XvIPMFXwwxHp/r0Ddy2Vuomt4HDFGmft1TAY2yiTKiNSsh3kjBAzcM8kSdsjA==", - "requires": { - "@babel/helper-plugin-utils": "^7.18.6" - } - }, - "@babel/plugin-transform-runtime": { - "version": "7.18.6", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-runtime/-/plugin-transform-runtime-7.18.6.tgz", - "integrity": "sha512-8uRHk9ZmRSnWqUgyae249EJZ94b0yAGLBIqzZzl+0iEdbno55Pmlt/32JZsHwXD9k/uZj18Aqqk35wBX4CBTXA==", - "requires": { - "@babel/helper-module-imports": "^7.18.6", - "@babel/helper-plugin-utils": "^7.18.6", - "babel-plugin-polyfill-corejs2": "^0.3.1", - "babel-plugin-polyfill-corejs3": "^0.5.2", - "babel-plugin-polyfill-regenerator": "^0.3.1", - "semver": "^6.3.0" - }, - "dependencies": { - "semver": { - "version": "6.3.0", - "resolved": "https://registry.npmjs.org/semver/-/semver-6.3.0.tgz", - "integrity": "sha512-b39TBaTSfV6yBrapU89p5fKekE2m/NwnDocOVruQFS1/veMgdzuPcnOM34M6CwxW8jH/lxEa5rBoDeUwu5HHTw==" - } - } - }, - "@babel/plugin-transform-shorthand-properties": { - "version": "7.18.6", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-shorthand-properties/-/plugin-transform-shorthand-properties-7.18.6.tgz", - "integrity": "sha512-eCLXXJqv8okzg86ywZJbRn19YJHU4XUa55oz2wbHhaQVn/MM+XhukiT7SYqp/7o00dg52Rj51Ny+Ecw4oyoygw==", - "requires": { - "@babel/helper-plugin-utils": "^7.18.6" - } - }, - "@babel/plugin-transform-spread": { - "version": "7.18.6", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-spread/-/plugin-transform-spread-7.18.6.tgz", - "integrity": "sha512-ayT53rT/ENF8WWexIRg9AiV9h0aIteyWn5ptfZTZQrjk/+f3WdrJGCY4c9wcgl2+MKkKPhzbYp97FTsquZpDCw==", - "requires": { - "@babel/helper-plugin-utils": "^7.18.6", - "@babel/helper-skip-transparent-expression-wrappers": "^7.18.6" - } - }, - "@babel/plugin-transform-sticky-regex": { - "version": "7.18.6", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-sticky-regex/-/plugin-transform-sticky-regex-7.18.6.tgz", - "integrity": "sha512-kfiDrDQ+PBsQDO85yj1icueWMfGfJFKN1KCkndygtu/C9+XUfydLC8Iv5UYJqRwy4zk8EcplRxEOeLyjq1gm6Q==", - "requires": { - "@babel/helper-plugin-utils": "^7.18.6" - } - }, - "@babel/plugin-transform-template-literals": { - "version": "7.18.6", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-template-literals/-/plugin-transform-template-literals-7.18.6.tgz", - "integrity": "sha512-UuqlRrQmT2SWRvahW46cGSany0uTlcj8NYOS5sRGYi8FxPYPoLd5DDmMd32ZXEj2Jq+06uGVQKHxa/hJx2EzKw==", - "requires": { - "@babel/helper-plugin-utils": "^7.18.6" - } - }, - "@babel/plugin-transform-typeof-symbol": { - "version": "7.18.6", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-typeof-symbol/-/plugin-transform-typeof-symbol-7.18.6.tgz", - "integrity": "sha512-7m71iS/QhsPk85xSjFPovHPcH3H9qeyzsujhTc+vcdnsXavoWYJ74zx0lP5RhpC5+iDnVLO+PPMHzC11qels1g==", - "requires": { - "@babel/helper-plugin-utils": "^7.18.6" - } - }, - "@babel/plugin-transform-typescript": { - "version": "7.18.6", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-typescript/-/plugin-transform-typescript-7.18.6.tgz", - "integrity": "sha512-ijHNhzIrLj5lQCnI6aaNVRtGVuUZhOXFLRVFs7lLrkXTHip4FKty5oAuQdk4tywG0/WjXmjTfQCWmuzrvFer1w==", - "requires": { - "@babel/helper-create-class-features-plugin": "^7.18.6", - "@babel/helper-plugin-utils": "^7.18.6", - "@babel/plugin-syntax-typescript": "^7.18.6" - } - }, - "@babel/plugin-transform-unicode-escapes": { - "version": "7.18.6", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-unicode-escapes/-/plugin-transform-unicode-escapes-7.18.6.tgz", - "integrity": "sha512-XNRwQUXYMP7VLuy54cr/KS/WeL3AZeORhrmeZ7iewgu+X2eBqmpaLI/hzqr9ZxCeUoq0ASK4GUzSM0BDhZkLFw==", - "requires": { - "@babel/helper-plugin-utils": "^7.18.6" - } - }, - "@babel/plugin-transform-unicode-regex": { - "version": "7.18.6", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-unicode-regex/-/plugin-transform-unicode-regex-7.18.6.tgz", - "integrity": "sha512-gE7A6Lt7YLnNOL3Pb9BNeZvi+d8l7tcRrG4+pwJjK9hD2xX4mEvjlQW60G9EEmfXVYRPv9VRQcyegIVHCql/AA==", - "requires": { - "@babel/helper-create-regexp-features-plugin": "^7.18.6", - "@babel/helper-plugin-utils": "^7.18.6" - } - }, - "@babel/preset-env": { - "version": "7.18.6", - "resolved": "https://registry.npmjs.org/@babel/preset-env/-/preset-env-7.18.6.tgz", - "integrity": "sha512-WrthhuIIYKrEFAwttYzgRNQ5hULGmwTj+D6l7Zdfsv5M7IWV/OZbUfbeL++Qrzx1nVJwWROIFhCHRYQV4xbPNw==", - "requires": { - "@babel/compat-data": "^7.18.6", - "@babel/helper-compilation-targets": "^7.18.6", - "@babel/helper-plugin-utils": "^7.18.6", - "@babel/helper-validator-option": "^7.18.6", - "@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression": "^7.18.6", - "@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining": "^7.18.6", - "@babel/plugin-proposal-async-generator-functions": "^7.18.6", - "@babel/plugin-proposal-class-properties": "^7.18.6", - "@babel/plugin-proposal-class-static-block": "^7.18.6", - "@babel/plugin-proposal-dynamic-import": "^7.18.6", - "@babel/plugin-proposal-export-namespace-from": "^7.18.6", - "@babel/plugin-proposal-json-strings": "^7.18.6", - "@babel/plugin-proposal-logical-assignment-operators": "^7.18.6", - "@babel/plugin-proposal-nullish-coalescing-operator": "^7.18.6", - "@babel/plugin-proposal-numeric-separator": "^7.18.6", - "@babel/plugin-proposal-object-rest-spread": "^7.18.6", - "@babel/plugin-proposal-optional-catch-binding": "^7.18.6", - "@babel/plugin-proposal-optional-chaining": "^7.18.6", - "@babel/plugin-proposal-private-methods": "^7.18.6", - "@babel/plugin-proposal-private-property-in-object": "^7.18.6", - "@babel/plugin-proposal-unicode-property-regex": "^7.18.6", - "@babel/plugin-syntax-async-generators": "^7.8.4", - "@babel/plugin-syntax-class-properties": "^7.12.13", - "@babel/plugin-syntax-class-static-block": "^7.14.5", - "@babel/plugin-syntax-dynamic-import": "^7.8.3", - "@babel/plugin-syntax-export-namespace-from": "^7.8.3", - "@babel/plugin-syntax-import-assertions": "^7.18.6", - "@babel/plugin-syntax-json-strings": "^7.8.3", - "@babel/plugin-syntax-logical-assignment-operators": "^7.10.4", - "@babel/plugin-syntax-nullish-coalescing-operator": "^7.8.3", - "@babel/plugin-syntax-numeric-separator": "^7.10.4", - "@babel/plugin-syntax-object-rest-spread": "^7.8.3", - "@babel/plugin-syntax-optional-catch-binding": "^7.8.3", - "@babel/plugin-syntax-optional-chaining": "^7.8.3", - "@babel/plugin-syntax-private-property-in-object": "^7.14.5", - "@babel/plugin-syntax-top-level-await": "^7.14.5", - "@babel/plugin-transform-arrow-functions": "^7.18.6", - "@babel/plugin-transform-async-to-generator": "^7.18.6", - "@babel/plugin-transform-block-scoped-functions": "^7.18.6", - "@babel/plugin-transform-block-scoping": "^7.18.6", - "@babel/plugin-transform-classes": "^7.18.6", - "@babel/plugin-transform-computed-properties": "^7.18.6", - "@babel/plugin-transform-destructuring": "^7.18.6", - "@babel/plugin-transform-dotall-regex": "^7.18.6", - "@babel/plugin-transform-duplicate-keys": "^7.18.6", - "@babel/plugin-transform-exponentiation-operator": "^7.18.6", - "@babel/plugin-transform-for-of": "^7.18.6", - "@babel/plugin-transform-function-name": "^7.18.6", - "@babel/plugin-transform-literals": "^7.18.6", - "@babel/plugin-transform-member-expression-literals": "^7.18.6", - "@babel/plugin-transform-modules-amd": "^7.18.6", - "@babel/plugin-transform-modules-commonjs": "^7.18.6", - "@babel/plugin-transform-modules-systemjs": "^7.18.6", - "@babel/plugin-transform-modules-umd": "^7.18.6", - "@babel/plugin-transform-named-capturing-groups-regex": "^7.18.6", - "@babel/plugin-transform-new-target": "^7.18.6", - "@babel/plugin-transform-object-super": "^7.18.6", - "@babel/plugin-transform-parameters": "^7.18.6", - "@babel/plugin-transform-property-literals": "^7.18.6", - "@babel/plugin-transform-regenerator": "^7.18.6", - "@babel/plugin-transform-reserved-words": "^7.18.6", - "@babel/plugin-transform-shorthand-properties": "^7.18.6", - "@babel/plugin-transform-spread": "^7.18.6", - "@babel/plugin-transform-sticky-regex": "^7.18.6", - "@babel/plugin-transform-template-literals": "^7.18.6", - "@babel/plugin-transform-typeof-symbol": "^7.18.6", - "@babel/plugin-transform-unicode-escapes": "^7.18.6", - "@babel/plugin-transform-unicode-regex": "^7.18.6", - "@babel/preset-modules": "^0.1.5", - "@babel/types": "^7.18.6", - "babel-plugin-polyfill-corejs2": "^0.3.1", - "babel-plugin-polyfill-corejs3": "^0.5.2", - "babel-plugin-polyfill-regenerator": "^0.3.1", - "core-js-compat": "^3.22.1", - "semver": "^6.3.0" - }, - "dependencies": { - "semver": { - "version": "6.3.0", - "resolved": "https://registry.npmjs.org/semver/-/semver-6.3.0.tgz", - "integrity": "sha512-b39TBaTSfV6yBrapU89p5fKekE2m/NwnDocOVruQFS1/veMgdzuPcnOM34M6CwxW8jH/lxEa5rBoDeUwu5HHTw==" - } - } - }, - "@babel/preset-modules": { - "version": "0.1.5", - "resolved": "https://registry.npmjs.org/@babel/preset-modules/-/preset-modules-0.1.5.tgz", - "integrity": "sha512-A57th6YRG7oR3cq/yt/Y84MvGgE0eJG2F1JLhKuyG+jFxEgrd/HAMJatiFtmOiZurz+0DkrvbheCLaV5f2JfjA==", - "requires": { - "@babel/helper-plugin-utils": "^7.0.0", - "@babel/plugin-proposal-unicode-property-regex": "^7.4.4", - "@babel/plugin-transform-dotall-regex": "^7.4.4", - "@babel/types": "^7.4.4", - "esutils": "^2.0.2" - } - }, - "@babel/preset-react": { - "version": "7.18.6", - "resolved": "https://registry.npmjs.org/@babel/preset-react/-/preset-react-7.18.6.tgz", - "integrity": "sha512-zXr6atUmyYdiWRVLOZahakYmOBHtWc2WGCkP8PYTgZi0iJXDY2CN180TdrIW4OGOAdLc7TifzDIvtx6izaRIzg==", - "requires": { - "@babel/helper-plugin-utils": "^7.18.6", - "@babel/helper-validator-option": "^7.18.6", - "@babel/plugin-transform-react-display-name": "^7.18.6", - "@babel/plugin-transform-react-jsx": "^7.18.6", - "@babel/plugin-transform-react-jsx-development": "^7.18.6", - "@babel/plugin-transform-react-pure-annotations": "^7.18.6" - } - }, - "@babel/preset-typescript": { - "version": "7.18.6", - "resolved": "https://registry.npmjs.org/@babel/preset-typescript/-/preset-typescript-7.18.6.tgz", - "integrity": "sha512-s9ik86kXBAnD760aybBucdpnLsAt0jK1xqJn2juOn9lkOvSHV60os5hxoVJsPzMQxvnUJFAlkont2DvvaYEBtQ==", - "requires": { - "@babel/helper-plugin-utils": "^7.18.6", - "@babel/helper-validator-option": "^7.18.6", - "@babel/plugin-transform-typescript": "^7.18.6" - } - }, - "@babel/runtime": { - "version": "7.18.6", - "resolved": "https://registry.npmjs.org/@babel/runtime/-/runtime-7.18.6.tgz", - "integrity": "sha512-t9wi7/AW6XtKahAe20Yw0/mMljKq0B1r2fPdvaAdV/KPDZewFXdaaa6K7lxmZBZ8FBNpCiAT6iHPmd6QO9bKfQ==", - "requires": { - "regenerator-runtime": "^0.13.4" - } - }, - "@babel/runtime-corejs3": { - "version": "7.18.6", - "resolved": "https://registry.npmjs.org/@babel/runtime-corejs3/-/runtime-corejs3-7.18.6.tgz", - "integrity": "sha512-cOu5wH2JFBgMjje+a+fz2JNIWU4GzYpl05oSob3UDvBEh6EuIn+TXFHMmBbhSb+k/4HMzgKCQfEEDArAWNF9Cw==", - "requires": { - "core-js-pure": "^3.20.2", - "regenerator-runtime": "^0.13.4" - } - }, - "@babel/template": { - "version": "7.18.6", - "resolved": "https://registry.npmjs.org/@babel/template/-/template-7.18.6.tgz", - "integrity": "sha512-JoDWzPe+wgBsTTgdnIma3iHNFC7YVJoPssVBDjiHfNlyt4YcunDtcDOUmfVDfCK5MfdsaIoX9PkijPhjH3nYUw==", - "requires": { - "@babel/code-frame": "^7.18.6", - "@babel/parser": "^7.18.6", - "@babel/types": "^7.18.6" - } - }, - "@babel/traverse": { - "version": "7.18.6", - "resolved": "https://registry.npmjs.org/@babel/traverse/-/traverse-7.18.6.tgz", - "integrity": "sha512-zS/OKyqmD7lslOtFqbscH6gMLFYOfG1YPqCKfAW5KrTeolKqvB8UelR49Fpr6y93kYkW2Ik00mT1LOGiAGvizw==", - "requires": { - "@babel/code-frame": "^7.18.6", - "@babel/generator": "^7.18.6", - "@babel/helper-environment-visitor": "^7.18.6", - "@babel/helper-function-name": "^7.18.6", - "@babel/helper-hoist-variables": "^7.18.6", - "@babel/helper-split-export-declaration": "^7.18.6", - "@babel/parser": "^7.18.6", - "@babel/types": "^7.18.6", - "debug": "^4.1.0", - "globals": "^11.1.0" - } - }, - "@babel/types": { - "version": "7.18.7", - "resolved": "https://registry.npmjs.org/@babel/types/-/types-7.18.7.tgz", - "integrity": "sha512-QG3yxTcTIBoAcQmkCs+wAPYZhu7Dk9rXKacINfNbdJDNERTbLQbHGyVG8q/YGMPeCJRIhSY0+fTc5+xuh6WPSQ==", - "requires": { - "@babel/helper-validator-identifier": "^7.18.6", - "to-fast-properties": "^2.0.0" - } - }, - "@bcoe/v8-coverage": { - "version": "0.2.3", - "resolved": "https://registry.npmjs.org/@bcoe/v8-coverage/-/v8-coverage-0.2.3.tgz", - "integrity": "sha512-0hYQ8SB4Db5zvZB4axdMHGwEaQjkZzFjQiN9LVYvIFB2nSUHW9tYpxWriPrWDASIxiaXax83REcLxuSdnGPZtw==" - }, - "@chainsafe/as-sha256": { - "version": "0.3.1", - "resolved": "https://registry.npmjs.org/@chainsafe/as-sha256/-/as-sha256-0.3.1.tgz", - "integrity": "sha512-hldFFYuf49ed7DAakWVXSJODuq3pzJEguD8tQ7h+sGkM18vja+OFoJI9krnGmgzyuZC2ETX0NOIcCTy31v2Mtg==", - "peer": true - }, - "@chainsafe/persistent-merkle-tree": { - "version": "0.4.2", - "resolved": "https://registry.npmjs.org/@chainsafe/persistent-merkle-tree/-/persistent-merkle-tree-0.4.2.tgz", - "integrity": "sha512-lLO3ihKPngXLTus/L7WHKaw9PnNJWizlOF1H9NNzHP6Xvh82vzg9F2bzkXhYIFshMZ2gTCEz8tq6STe7r5NDfQ==", - "peer": true, - "requires": { - "@chainsafe/as-sha256": "^0.3.1" - } - }, - "@chainsafe/ssz": { - "version": "0.9.4", - "resolved": "https://registry.npmjs.org/@chainsafe/ssz/-/ssz-0.9.4.tgz", - "integrity": "sha512-77Qtg2N1ayqs4Bg/wvnWfg5Bta7iy7IRh8XqXh7oNMeP2HBbBwx8m6yTpA8p0EHItWPEBkgZd5S5/LSlp3GXuQ==", - "peer": true, - "requires": { - "@chainsafe/as-sha256": "^0.3.1", - "@chainsafe/persistent-merkle-tree": "^0.4.2", - "case": "^1.6.3" - } - }, - "@csstools/normalize.css": { - "version": "12.0.0", - "resolved": "https://registry.npmjs.org/@csstools/normalize.css/-/normalize.css-12.0.0.tgz", - "integrity": "sha512-M0qqxAcwCsIVfpFQSlGN5XjXWu8l5JDZN+fPt1LeW5SZexQTgnaEvgXAY+CeygRw0EeppWHi12JxESWiWrB0Sg==" - }, - "@csstools/postcss-cascade-layers": { - "version": "1.0.4", - "resolved": "https://registry.npmjs.org/@csstools/postcss-cascade-layers/-/postcss-cascade-layers-1.0.4.tgz", - "integrity": "sha512-zP2tQIFu4C3HueOT+G4Pkla7f2Z6pfXphc1Y9wDE5jS2Ss6dk/asQ7FFEFWKgy3EkYc7E1FSjzhfeZVGg5sjXQ==", - "requires": { - "@csstools/selector-specificity": "^2.0.0", - "postcss-selector-parser": "^6.0.10" - } - }, - "@csstools/postcss-color-function": { - "version": "1.1.0", - "resolved": "https://registry.npmjs.org/@csstools/postcss-color-function/-/postcss-color-function-1.1.0.tgz", - "integrity": "sha512-5D5ND/mZWcQoSfYnSPsXtuiFxhzmhxt6pcjrFLJyldj+p0ZN2vvRpYNX+lahFTtMhAYOa2WmkdGINr0yP0CvGA==", - "requires": { - "@csstools/postcss-progressive-custom-properties": "^1.1.0", - "postcss-value-parser": "^4.2.0" - } - }, - "@csstools/postcss-font-format-keywords": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/@csstools/postcss-font-format-keywords/-/postcss-font-format-keywords-1.0.0.tgz", - "integrity": "sha512-oO0cZt8do8FdVBX8INftvIA4lUrKUSCcWUf9IwH9IPWOgKT22oAZFXeHLoDK7nhB2SmkNycp5brxfNMRLIhd6Q==", - "requires": { - "postcss-value-parser": "^4.2.0" - } - }, - "@csstools/postcss-hwb-function": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/@csstools/postcss-hwb-function/-/postcss-hwb-function-1.0.1.tgz", - "integrity": "sha512-AMZwWyHbbNLBsDADWmoXT9A5yl5dsGEBeJSJRUJt8Y9n8Ziu7Wstt4MC8jtPW7xjcLecyfJwtnUTNSmOzcnWeg==", - "requires": { - "postcss-value-parser": "^4.2.0" - } - }, - "@csstools/postcss-ic-unit": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/@csstools/postcss-ic-unit/-/postcss-ic-unit-1.0.0.tgz", - "integrity": "sha512-i4yps1mBp2ijrx7E96RXrQXQQHm6F4ym1TOD0D69/sjDjZvQ22tqiEvaNw7pFZTUO5b9vWRHzbHzP9+UKuw+bA==", - "requires": { - "@csstools/postcss-progressive-custom-properties": "^1.1.0", - "postcss-value-parser": "^4.2.0" - } - }, - "@csstools/postcss-is-pseudo-class": { - "version": "2.0.6", - "resolved": "https://registry.npmjs.org/@csstools/postcss-is-pseudo-class/-/postcss-is-pseudo-class-2.0.6.tgz", - "integrity": "sha512-Oqs396oenuyyMdRXOstxXbxei8fYEgToYjmlYHEi5gk0QLk7xQ72LY7NDr7waWAAmdVzRqPpbE26Q7/cUrGu4Q==", - "requires": { - "@csstools/selector-specificity": "^2.0.0", - "postcss-selector-parser": "^6.0.10" - } - }, - "@csstools/postcss-normalize-display-values": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/@csstools/postcss-normalize-display-values/-/postcss-normalize-display-values-1.0.0.tgz", - "integrity": "sha512-bX+nx5V8XTJEmGtpWTO6kywdS725t71YSLlxWt78XoHUbELWgoCXeOFymRJmL3SU1TLlKSIi7v52EWqe60vJTQ==", - "requires": { - "postcss-value-parser": "^4.2.0" - } - }, - "@csstools/postcss-oklab-function": { - "version": "1.1.0", - "resolved": "https://registry.npmjs.org/@csstools/postcss-oklab-function/-/postcss-oklab-function-1.1.0.tgz", - "integrity": "sha512-e/Q5HopQzmnQgqimG9v3w2IG4VRABsBq3itOcn4bnm+j4enTgQZ0nWsaH/m9GV2otWGQ0nwccYL5vmLKyvP1ww==", - "requires": { - "@csstools/postcss-progressive-custom-properties": "^1.1.0", - "postcss-value-parser": "^4.2.0" - } - }, - "@csstools/postcss-progressive-custom-properties": { - "version": "1.3.0", - "resolved": "https://registry.npmjs.org/@csstools/postcss-progressive-custom-properties/-/postcss-progressive-custom-properties-1.3.0.tgz", - "integrity": "sha512-ASA9W1aIy5ygskZYuWams4BzafD12ULvSypmaLJT2jvQ8G0M3I8PRQhC0h7mG0Z3LI05+agZjqSR9+K9yaQQjA==", - "requires": { - "postcss-value-parser": "^4.2.0" - } - }, - "@csstools/postcss-stepped-value-functions": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/@csstools/postcss-stepped-value-functions/-/postcss-stepped-value-functions-1.0.0.tgz", - "integrity": "sha512-q8c4bs1GumAiRenmFjASBcWSLKrbzHzWl6C2HcaAxAXIiL2rUlUWbqQZUjwVG5tied0rld19j/Mm90K3qI26vw==", - "requires": { - "postcss-value-parser": "^4.2.0" - } - }, - "@csstools/postcss-trigonometric-functions": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/@csstools/postcss-trigonometric-functions/-/postcss-trigonometric-functions-1.0.1.tgz", - "integrity": "sha512-G78CY/+GePc6dDCTUbwI6TTFQ5fs3N9POHhI6v0QzteGpf6ylARiJUNz9HrRKi4eVYBNXjae1W2766iUEFxHlw==", - "requires": { - "postcss-value-parser": "^4.2.0" - } - }, - "@csstools/postcss-unset-value": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/@csstools/postcss-unset-value/-/postcss-unset-value-1.0.1.tgz", - "integrity": "sha512-f1G1WGDXEU/RN1TWAxBPQgQudtLnLQPyiWdtypkPC+mVYNKFKH/HYXSxH4MVNqwF8M0eDsoiU7HumJHCg/L/jg==", - "requires": {} - }, - "@csstools/selector-specificity": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/@csstools/selector-specificity/-/selector-specificity-2.0.1.tgz", - "integrity": "sha512-aG20vknL4/YjQF9BSV7ts4EWm/yrjagAN7OWBNmlbEOUiu0llj4OGrFoOKK3g2vey4/p2omKCoHrWtPxSwV3HA==", - "requires": {} - }, - "@emotion/babel-plugin": { - "version": "11.9.2", - "resolved": "https://registry.npmjs.org/@emotion/babel-plugin/-/babel-plugin-11.9.2.tgz", - "integrity": "sha512-Pr/7HGH6H6yKgnVFNEj2MVlreu3ADqftqjqwUvDy/OJzKFgxKeTQ+eeUf20FOTuHVkDON2iNa25rAXVYtWJCjw==", - "requires": { - "@babel/helper-module-imports": "^7.12.13", - "@babel/plugin-syntax-jsx": "^7.12.13", - "@babel/runtime": "^7.13.10", - "@emotion/hash": "^0.8.0", - "@emotion/memoize": "^0.7.5", - "@emotion/serialize": "^1.0.2", - "babel-plugin-macros": "^2.6.1", - "convert-source-map": "^1.5.0", - "escape-string-regexp": "^4.0.0", - "find-root": "^1.1.0", - "source-map": "^0.5.7", - "stylis": "4.0.13" - }, - "dependencies": { - "babel-plugin-macros": { - "version": "2.8.0", - "resolved": "https://registry.npmjs.org/babel-plugin-macros/-/babel-plugin-macros-2.8.0.tgz", - "integrity": "sha512-SEP5kJpfGYqYKpBrj5XU3ahw5p5GOHJ0U5ssOSQ/WBVdwkD2Dzlce95exQTs3jOVWPPKLBN2rlEWkCK7dSmLvg==", - "requires": { - "@babel/runtime": "^7.7.2", - "cosmiconfig": "^6.0.0", - "resolve": "^1.12.0" - } - }, - "cosmiconfig": { - "version": "6.0.0", - "resolved": "https://registry.npmjs.org/cosmiconfig/-/cosmiconfig-6.0.0.tgz", - "integrity": "sha512-xb3ZL6+L8b9JLLCx3ZdoZy4+2ECphCMo2PwqgP1tlfVq6M6YReyzBJtvWWtbDSpNr9hn96pkCiZqUcFEc+54Qg==", - "requires": { - "@types/parse-json": "^4.0.0", - "import-fresh": "^3.1.0", - "parse-json": "^5.0.0", - "path-type": "^4.0.0", - "yaml": "^1.7.2" - } - }, - "escape-string-regexp": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/escape-string-regexp/-/escape-string-regexp-4.0.0.tgz", - "integrity": "sha512-TtpcNJ3XAzx3Gq8sWRzJaVajRs0uVxA2YAkdb1jm2YkPz4G6egUFAyA3n5vtEIZefPk5Wa4UXbKuS5fKkJWdgA==" - }, - "source-map": { - "version": "0.5.7", - "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.5.7.tgz", - "integrity": "sha512-LbrmJOMUSdEVxIKvdcJzQC+nQhe8FUZQTXQy6+I75skNgn3OoQ0DZA8YnFa7gp8tqtL3KPf1kmo0R5DoApeSGQ==" - } - } - }, - "@emotion/cache": { - "version": "11.9.3", - "resolved": "https://registry.npmjs.org/@emotion/cache/-/cache-11.9.3.tgz", - "integrity": "sha512-0dgkI/JKlCXa+lEXviaMtGBL0ynpx4osh7rjOXE71q9bIF8G+XhJgvi+wDu0B0IdCVx37BffiwXlN9I3UuzFvg==", - "requires": { - "@emotion/memoize": "^0.7.4", - "@emotion/sheet": "^1.1.1", - "@emotion/utils": "^1.0.0", - "@emotion/weak-memoize": "^0.2.5", - "stylis": "4.0.13" - } - }, - "@emotion/core": { - "version": "10.3.1", - "resolved": "https://registry.npmjs.org/@emotion/core/-/core-10.3.1.tgz", - "integrity": "sha512-447aUEjPIm0MnE6QYIaFz9VQOHSXf4Iu6EWOIqq11EAPqinkSZmfymPTmlOE3QjLv846lH4JVZBUOtwGbuQoww==", - "requires": { - "@babel/runtime": "^7.5.5", - "@emotion/cache": "^10.0.27", - "@emotion/css": "^10.0.27", - "@emotion/serialize": "^0.11.15", - "@emotion/sheet": "0.9.4", - "@emotion/utils": "0.11.3" - }, - "dependencies": { - "@emotion/cache": { - "version": "10.0.29", - "resolved": "https://registry.npmjs.org/@emotion/cache/-/cache-10.0.29.tgz", - "integrity": "sha512-fU2VtSVlHiF27empSbxi1O2JFdNWZO+2NFHfwO0pxgTep6Xa3uGb+3pVKfLww2l/IBGLNEZl5Xf/++A4wAYDYQ==", - "requires": { - "@emotion/sheet": "0.9.4", - "@emotion/stylis": "0.8.5", - "@emotion/utils": "0.11.3", - "@emotion/weak-memoize": "0.2.5" - } - }, - "@emotion/memoize": { - "version": "0.7.4", - "resolved": "https://registry.npmjs.org/@emotion/memoize/-/memoize-0.7.4.tgz", - "integrity": "sha512-Ja/Vfqe3HpuzRsG1oBtWTHk2PGZ7GR+2Vz5iYGelAw8dx32K0y7PjVuxK6z1nMpZOqAFsRUPCkK1YjJ56qJlgw==" - }, - "@emotion/serialize": { - "version": "0.11.16", - "resolved": "https://registry.npmjs.org/@emotion/serialize/-/serialize-0.11.16.tgz", - "integrity": "sha512-G3J4o8by0VRrO+PFeSc3js2myYNOXVJ3Ya+RGVxnshRYgsvErfAOglKAiy1Eo1vhzxqtUvjCyS5gtewzkmvSSg==", - "requires": { - "@emotion/hash": "0.8.0", - "@emotion/memoize": "0.7.4", - "@emotion/unitless": "0.7.5", - "@emotion/utils": "0.11.3", - "csstype": "^2.5.7" - } - }, - "@emotion/sheet": { - "version": "0.9.4", - "resolved": "https://registry.npmjs.org/@emotion/sheet/-/sheet-0.9.4.tgz", - "integrity": "sha512-zM9PFmgVSqBw4zL101Q0HrBVTGmpAxFZH/pYx/cjJT5advXguvcgjHFTCaIO3enL/xr89vK2bh0Mfyj9aa0ANA==" - }, - "@emotion/utils": { - "version": "0.11.3", - "resolved": "https://registry.npmjs.org/@emotion/utils/-/utils-0.11.3.tgz", - "integrity": "sha512-0o4l6pZC+hI88+bzuaX/6BgOvQVhbt2PfmxauVaYOGgbsAw14wdKyvMCZXnsnsHys94iadcF+RG/wZyx6+ZZBw==" - }, - "csstype": { - "version": "2.6.21", - "resolved": "https://registry.npmjs.org/csstype/-/csstype-2.6.21.tgz", - "integrity": "sha512-Z1PhmomIfypOpoMjRQB70jfvy/wxT50qW08YXO5lMIJkrdq4yOTR+AW7FqutScmB9NkLwxo+jU+kZLbofZZq/w==" - } - } - }, - "@emotion/css": { - "version": "10.0.27", - "resolved": "https://registry.npmjs.org/@emotion/css/-/css-10.0.27.tgz", - "integrity": "sha512-6wZjsvYeBhyZQYNrGoR5yPMYbMBNEnanDrqmsqS1mzDm1cOTu12shvl2j4QHNS36UaTE0USIJawCH9C8oW34Zw==", - "requires": { - "@emotion/serialize": "^0.11.15", - "@emotion/utils": "0.11.3", - "babel-plugin-emotion": "^10.0.27" - }, - "dependencies": { - "@emotion/memoize": { - "version": "0.7.4", - "resolved": "https://registry.npmjs.org/@emotion/memoize/-/memoize-0.7.4.tgz", - "integrity": "sha512-Ja/Vfqe3HpuzRsG1oBtWTHk2PGZ7GR+2Vz5iYGelAw8dx32K0y7PjVuxK6z1nMpZOqAFsRUPCkK1YjJ56qJlgw==" - }, - "@emotion/serialize": { - "version": "0.11.16", - "resolved": "https://registry.npmjs.org/@emotion/serialize/-/serialize-0.11.16.tgz", - "integrity": "sha512-G3J4o8by0VRrO+PFeSc3js2myYNOXVJ3Ya+RGVxnshRYgsvErfAOglKAiy1Eo1vhzxqtUvjCyS5gtewzkmvSSg==", - "requires": { - "@emotion/hash": "0.8.0", - "@emotion/memoize": "0.7.4", - "@emotion/unitless": "0.7.5", - "@emotion/utils": "0.11.3", - "csstype": "^2.5.7" - } - }, - "@emotion/utils": { - "version": "0.11.3", - "resolved": "https://registry.npmjs.org/@emotion/utils/-/utils-0.11.3.tgz", - "integrity": "sha512-0o4l6pZC+hI88+bzuaX/6BgOvQVhbt2PfmxauVaYOGgbsAw14wdKyvMCZXnsnsHys94iadcF+RG/wZyx6+ZZBw==" - }, - "csstype": { - "version": "2.6.21", - "resolved": "https://registry.npmjs.org/csstype/-/csstype-2.6.21.tgz", - "integrity": "sha512-Z1PhmomIfypOpoMjRQB70jfvy/wxT50qW08YXO5lMIJkrdq4yOTR+AW7FqutScmB9NkLwxo+jU+kZLbofZZq/w==" - } - } - }, - "@emotion/hash": { - "version": "0.8.0", - "resolved": "https://registry.npmjs.org/@emotion/hash/-/hash-0.8.0.tgz", - "integrity": "sha512-kBJtf7PH6aWwZ6fka3zQ0p6SBYzx4fl1LoZXE2RrnYST9Xljm7WfKJrU4g/Xr3Beg72MLrp1AWNUmuYJTL7Cow==" - }, - "@emotion/is-prop-valid": { - "version": "1.1.3", - "resolved": "https://registry.npmjs.org/@emotion/is-prop-valid/-/is-prop-valid-1.1.3.tgz", - "integrity": "sha512-RFg04p6C+1uO19uG8N+vqanzKqiM9eeV1LDOG3bmkYmuOj7NbKNlFC/4EZq5gnwAIlcC/jOT24f8Td0iax2SXA==", - "requires": { - "@emotion/memoize": "^0.7.4" - } - }, - "@emotion/memoize": { - "version": "0.7.5", - "resolved": "https://registry.npmjs.org/@emotion/memoize/-/memoize-0.7.5.tgz", - "integrity": "sha512-igX9a37DR2ZPGYtV6suZ6whr8pTFtyHL3K/oLUotxpSVO2ASaprmAe2Dkq7tBo7CRY7MMDrAa9nuQP9/YG8FxQ==" - }, - "@emotion/react": { - "version": "11.9.3", - "resolved": "https://registry.npmjs.org/@emotion/react/-/react-11.9.3.tgz", - "integrity": "sha512-g9Q1GcTOlzOEjqwuLF/Zd9LC+4FljjPjDfxSM7KmEakm+hsHXk+bYZ2q+/hTJzr0OUNkujo72pXLQvXj6H+GJQ==", - "requires": { - "@babel/runtime": "^7.13.10", - "@emotion/babel-plugin": "^11.7.1", - "@emotion/cache": "^11.9.3", - "@emotion/serialize": "^1.0.4", - "@emotion/utils": "^1.1.0", - "@emotion/weak-memoize": "^0.2.5", - "hoist-non-react-statics": "^3.3.1" - } - }, - "@emotion/serialize": { - "version": "1.0.4", - "resolved": "https://registry.npmjs.org/@emotion/serialize/-/serialize-1.0.4.tgz", - "integrity": "sha512-1JHamSpH8PIfFwAMryO2bNka+y8+KA5yga5Ocf2d7ZEiJjb7xlLW7aknBGZqJLajuLOvJ+72vN+IBSwPlXD1Pg==", - "requires": { - "@emotion/hash": "^0.8.0", - "@emotion/memoize": "^0.7.4", - "@emotion/unitless": "^0.7.5", - "@emotion/utils": "^1.0.0", - "csstype": "^3.0.2" - } - }, - "@emotion/sheet": { - "version": "1.1.1", - "resolved": "https://registry.npmjs.org/@emotion/sheet/-/sheet-1.1.1.tgz", - "integrity": "sha512-J3YPccVRMiTZxYAY0IOq3kd+hUP8idY8Kz6B/Cyo+JuXq52Ek+zbPbSQUrVQp95aJ+lsAW7DPL1P2Z+U1jGkKA==" - }, - "@emotion/styled": { - "version": "11.9.3", - "resolved": "https://registry.npmjs.org/@emotion/styled/-/styled-11.9.3.tgz", - "integrity": "sha512-o3sBNwbtoVz9v7WB1/Y/AmXl69YHmei2mrVnK7JgyBJ//Rst5yqPZCecEJlMlJrFeWHp+ki/54uN265V2pEcXA==", - "requires": { - "@babel/runtime": "^7.13.10", - "@emotion/babel-plugin": "^11.7.1", - "@emotion/is-prop-valid": "^1.1.3", - "@emotion/serialize": "^1.0.4", - "@emotion/utils": "^1.1.0" - } - }, - "@emotion/styled-base": { - "version": "10.3.0", - "resolved": "https://registry.npmjs.org/@emotion/styled-base/-/styled-base-10.3.0.tgz", - "integrity": "sha512-PBRqsVKR7QRNkmfH78hTSSwHWcwDpecH9W6heujWAcyp2wdz/64PP73s7fWS1dIPm8/Exc8JAzYS8dEWXjv60w==", - "requires": { - "@babel/runtime": "^7.5.5", - "@emotion/is-prop-valid": "0.8.8", - "@emotion/serialize": "^0.11.15", - "@emotion/utils": "0.11.3" - }, - "dependencies": { - "@emotion/is-prop-valid": { - "version": "0.8.8", - "resolved": "https://registry.npmjs.org/@emotion/is-prop-valid/-/is-prop-valid-0.8.8.tgz", - "integrity": "sha512-u5WtneEAr5IDG2Wv65yhunPSMLIpuKsbuOktRojfrEiEvRyC85LgPMZI63cr7NUqT8ZIGdSVg8ZKGxIug4lXcA==", - "requires": { - "@emotion/memoize": "0.7.4" - } - }, - "@emotion/memoize": { - "version": "0.7.4", - "resolved": "https://registry.npmjs.org/@emotion/memoize/-/memoize-0.7.4.tgz", - "integrity": "sha512-Ja/Vfqe3HpuzRsG1oBtWTHk2PGZ7GR+2Vz5iYGelAw8dx32K0y7PjVuxK6z1nMpZOqAFsRUPCkK1YjJ56qJlgw==" - }, - "@emotion/serialize": { - "version": "0.11.16", - "resolved": "https://registry.npmjs.org/@emotion/serialize/-/serialize-0.11.16.tgz", - "integrity": "sha512-G3J4o8by0VRrO+PFeSc3js2myYNOXVJ3Ya+RGVxnshRYgsvErfAOglKAiy1Eo1vhzxqtUvjCyS5gtewzkmvSSg==", - "requires": { - "@emotion/hash": "0.8.0", - "@emotion/memoize": "0.7.4", - "@emotion/unitless": "0.7.5", - "@emotion/utils": "0.11.3", - "csstype": "^2.5.7" - } - }, - "@emotion/utils": { - "version": "0.11.3", - "resolved": "https://registry.npmjs.org/@emotion/utils/-/utils-0.11.3.tgz", - "integrity": "sha512-0o4l6pZC+hI88+bzuaX/6BgOvQVhbt2PfmxauVaYOGgbsAw14wdKyvMCZXnsnsHys94iadcF+RG/wZyx6+ZZBw==" - }, - "csstype": { - "version": "2.6.21", - "resolved": "https://registry.npmjs.org/csstype/-/csstype-2.6.21.tgz", - "integrity": "sha512-Z1PhmomIfypOpoMjRQB70jfvy/wxT50qW08YXO5lMIJkrdq4yOTR+AW7FqutScmB9NkLwxo+jU+kZLbofZZq/w==" - } - } - }, - "@emotion/stylis": { - "version": "0.8.5", - "resolved": "https://registry.npmjs.org/@emotion/stylis/-/stylis-0.8.5.tgz", - "integrity": "sha512-h6KtPihKFn3T9fuIrwvXXUOwlx3rfUvfZIcP5a6rh8Y7zjE3O06hT5Ss4S/YI1AYhuZ1kjaE/5EaOOI2NqSylQ==" - }, - "@emotion/unitless": { - "version": "0.7.5", - "resolved": "https://registry.npmjs.org/@emotion/unitless/-/unitless-0.7.5.tgz", - "integrity": "sha512-OWORNpfjMsSSUBVrRBVGECkhWcULOAJz9ZW8uK9qgxD+87M7jHRcvh/A96XXNhXTLmKcoYSQtBEX7lHMO7YRwg==" - }, - "@emotion/utils": { - "version": "1.1.0", - "resolved": "https://registry.npmjs.org/@emotion/utils/-/utils-1.1.0.tgz", - "integrity": "sha512-iRLa/Y4Rs5H/f2nimczYmS5kFJEbpiVvgN3XVfZ022IYhuNA1IRSHEizcof88LtCTXtl9S2Cxt32KgaXEu72JQ==" - }, - "@emotion/weak-memoize": { - "version": "0.2.5", - "resolved": "https://registry.npmjs.org/@emotion/weak-memoize/-/weak-memoize-0.2.5.tgz", - "integrity": "sha512-6U71C2Wp7r5XtFtQzYrW5iKFT67OixrSxjI4MptCHzdSVlgabczzqLe0ZSgnub/5Kp4hSbpDB1tMytZY9pwxxA==" - }, - "@eslint/eslintrc": { - "version": "1.3.0", - "resolved": "https://registry.npmjs.org/@eslint/eslintrc/-/eslintrc-1.3.0.tgz", - "integrity": "sha512-UWW0TMTmk2d7hLcWD1/e2g5HDM/HQ3csaLSqXCfqwh4uNDuNqlaKWXmEsL4Cs41Z0KnILNvwbHAah3C2yt06kw==", - "requires": { - "ajv": "^6.12.4", - "debug": "^4.3.2", - "espree": "^9.3.2", - "globals": "^13.15.0", - "ignore": "^5.2.0", - "import-fresh": "^3.2.1", - "js-yaml": "^4.1.0", - "minimatch": "^3.1.2", - "strip-json-comments": "^3.1.1" - }, - "dependencies": { - "argparse": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/argparse/-/argparse-2.0.1.tgz", - "integrity": "sha512-8+9WqebbFzpX9OR+Wa6O29asIogeRMzcGtAINdpMHHyAg10f05aSFVBbcEqGf/PXw1EjAZ+q2/bEBg3DvurK3Q==" - }, - "globals": { - "version": "13.15.0", - "resolved": "https://registry.npmjs.org/globals/-/globals-13.15.0.tgz", - "integrity": "sha512-bpzcOlgDhMG070Av0Vy5Owklpv1I6+j96GhUI7Rh7IzDCKLzboflLrrfqMu8NquDbiR4EOQk7XzJwqVJxicxog==", - "requires": { - "type-fest": "^0.20.2" - } - }, - "js-yaml": { - "version": "4.1.0", - "resolved": "https://registry.npmjs.org/js-yaml/-/js-yaml-4.1.0.tgz", - "integrity": "sha512-wpxZs9NoxZaJESJGIZTyDEaYpl0FKSA+FB9aJiyemKhMwkxQg63h4T1KJgUGHpTqPDNRcmmYLugrRjJlBtWvRA==", - "requires": { - "argparse": "^2.0.1" - } - }, - "type-fest": { - "version": "0.20.2", - "resolved": "https://registry.npmjs.org/type-fest/-/type-fest-0.20.2.tgz", - "integrity": "sha512-Ne+eE4r0/iWnpAxD852z3A+N0Bt5RN//NjJwRd2VFHEmrywxf5vsZlh4R6lixl6B+wz/8d+maTSAkN1FIkI3LQ==" - } - } - }, - "@ethereumjs/common": { - "version": "2.5.0", - "resolved": "https://registry.npmjs.org/@ethereumjs/common/-/common-2.5.0.tgz", - "integrity": "sha512-DEHjW6e38o+JmB/NO3GZBpW4lpaiBpkFgXF6jLcJ6gETBYpEyaA5nTimsWBUJR3Vmtm/didUEbNjajskugZORg==", - "requires": { - "crc-32": "^1.2.0", - "ethereumjs-util": "^7.1.1" - }, - "dependencies": { - "ethereum-cryptography": { - "version": "0.1.3", - "resolved": "https://registry.npmjs.org/ethereum-cryptography/-/ethereum-cryptography-0.1.3.tgz", - "integrity": "sha512-w8/4x1SGGzc+tO97TASLja6SLd3fRIK2tLVcV2Gx4IB21hE19atll5Cq9o3d0ZmAYC/8aw0ipieTSiekAea4SQ==", - "requires": { - "@types/pbkdf2": "^3.0.0", - "@types/secp256k1": "^4.0.1", - "blakejs": "^1.1.0", - "browserify-aes": "^1.2.0", - "bs58check": "^2.1.2", - "create-hash": "^1.2.0", - "create-hmac": "^1.1.7", - "hash.js": "^1.1.7", - "keccak": "^3.0.0", - "pbkdf2": "^3.0.17", - "randombytes": "^2.1.0", - "safe-buffer": "^5.1.2", - "scrypt-js": "^3.0.0", - "secp256k1": "^4.0.1", - "setimmediate": "^1.0.5" - } - }, - "ethereumjs-util": { - "version": "7.1.5", - "resolved": "https://registry.npmjs.org/ethereumjs-util/-/ethereumjs-util-7.1.5.tgz", - "integrity": "sha512-SDl5kKrQAudFBUe5OJM9Ac6WmMyYmXX/6sTmLZ3ffG2eY6ZIGBes3pEDxNN6V72WyOw4CPD5RomKdsa8DAAwLg==", - "requires": { - "@types/bn.js": "^5.1.0", - "bn.js": "^5.1.2", - "create-hash": "^1.1.2", - "ethereum-cryptography": "^0.1.3", - "rlp": "^2.2.4" - } - } - } - }, - "@ethereumjs/tx": { - "version": "3.3.2", - "resolved": "https://registry.npmjs.org/@ethereumjs/tx/-/tx-3.3.2.tgz", - "integrity": "sha512-6AaJhwg4ucmwTvw/1qLaZUX5miWrwZ4nLOUsKyb/HtzS3BMw/CasKhdi1ims9mBKeK9sOJCH4qGKOBGyJCeeog==", - "requires": { - "@ethereumjs/common": "^2.5.0", - "ethereumjs-util": "^7.1.2" - }, - "dependencies": { - "ethereum-cryptography": { - "version": "0.1.3", - "resolved": "https://registry.npmjs.org/ethereum-cryptography/-/ethereum-cryptography-0.1.3.tgz", - "integrity": "sha512-w8/4x1SGGzc+tO97TASLja6SLd3fRIK2tLVcV2Gx4IB21hE19atll5Cq9o3d0ZmAYC/8aw0ipieTSiekAea4SQ==", - "requires": { - "@types/pbkdf2": "^3.0.0", - "@types/secp256k1": "^4.0.1", - "blakejs": "^1.1.0", - "browserify-aes": "^1.2.0", - "bs58check": "^2.1.2", - "create-hash": "^1.2.0", - "create-hmac": "^1.1.7", - "hash.js": "^1.1.7", - "keccak": "^3.0.0", - "pbkdf2": "^3.0.17", - "randombytes": "^2.1.0", - "safe-buffer": "^5.1.2", - "scrypt-js": "^3.0.0", - "secp256k1": "^4.0.1", - "setimmediate": "^1.0.5" - } - }, - "ethereumjs-util": { - "version": "7.1.5", - "resolved": "https://registry.npmjs.org/ethereumjs-util/-/ethereumjs-util-7.1.5.tgz", - "integrity": "sha512-SDl5kKrQAudFBUe5OJM9Ac6WmMyYmXX/6sTmLZ3ffG2eY6ZIGBes3pEDxNN6V72WyOw4CPD5RomKdsa8DAAwLg==", - "requires": { - "@types/bn.js": "^5.1.0", - "bn.js": "^5.1.2", - "create-hash": "^1.1.2", - "ethereum-cryptography": "^0.1.3", - "rlp": "^2.2.4" - } - } - } - }, - "@ethersproject/abi": { - "version": "5.7.0", - "resolved": "https://registry.npmjs.org/@ethersproject/abi/-/abi-5.7.0.tgz", - "integrity": "sha512-351ktp42TiRcYB3H1OP8yajPeAQstMW/yCFokj/AthP9bLHzQFPlOrxOcwYEDkUAICmOHljvN4K39OMTMUa9RA==", - "requires": { - "@ethersproject/address": "^5.7.0", - "@ethersproject/bignumber": "^5.7.0", - "@ethersproject/bytes": "^5.7.0", - "@ethersproject/constants": "^5.7.0", - "@ethersproject/hash": "^5.7.0", - "@ethersproject/keccak256": "^5.7.0", - "@ethersproject/logger": "^5.7.0", - "@ethersproject/properties": "^5.7.0", - "@ethersproject/strings": "^5.7.0" - } - }, - "@ethersproject/abstract-provider": { - "version": "5.7.0", - "resolved": "https://registry.npmjs.org/@ethersproject/abstract-provider/-/abstract-provider-5.7.0.tgz", - "integrity": "sha512-R41c9UkchKCpAqStMYUpdunjo3pkEvZC3FAwZn5S5MGbXoMQOHIdHItezTETxAO5bevtMApSyEhn9+CHcDsWBw==", - "requires": { - "@ethersproject/bignumber": "^5.7.0", - "@ethersproject/bytes": "^5.7.0", - "@ethersproject/logger": "^5.7.0", - "@ethersproject/networks": "^5.7.0", - "@ethersproject/properties": "^5.7.0", - "@ethersproject/transactions": "^5.7.0", - "@ethersproject/web": "^5.7.0" - } - }, - "@ethersproject/abstract-signer": { - "version": "5.7.0", - "resolved": "https://registry.npmjs.org/@ethersproject/abstract-signer/-/abstract-signer-5.7.0.tgz", - "integrity": "sha512-a16V8bq1/Cz+TGCkE2OPMTOUDLS3grCpdjoJCYNnVBbdYEMSgKrU0+B90s8b6H+ByYTBZN7a3g76jdIJi7UfKQ==", - "requires": { - "@ethersproject/abstract-provider": "^5.7.0", - "@ethersproject/bignumber": "^5.7.0", - "@ethersproject/bytes": "^5.7.0", - "@ethersproject/logger": "^5.7.0", - "@ethersproject/properties": "^5.7.0" - } - }, - "@ethersproject/address": { - "version": "5.7.0", - "resolved": "https://registry.npmjs.org/@ethersproject/address/-/address-5.7.0.tgz", - "integrity": "sha512-9wYhYt7aghVGo758POM5nqcOMaE168Q6aRLJZwUmiqSrAungkG74gSSeKEIR7ukixesdRZGPgVqme6vmxs1fkA==", - "requires": { - "@ethersproject/bignumber": "^5.7.0", - "@ethersproject/bytes": "^5.7.0", - "@ethersproject/keccak256": "^5.7.0", - "@ethersproject/logger": "^5.7.0", - "@ethersproject/rlp": "^5.7.0" - } - }, - "@ethersproject/base64": { - "version": "5.7.0", - "resolved": "https://registry.npmjs.org/@ethersproject/base64/-/base64-5.7.0.tgz", - "integrity": "sha512-Dr8tcHt2mEbsZr/mwTPIQAf3Ai0Bks/7gTw9dSqk1mQvhW3XvRlmDJr/4n+wg1JmCl16NZue17CDh8xb/vZ0sQ==", - "requires": { - "@ethersproject/bytes": "^5.7.0" - } - }, - "@ethersproject/basex": { - "version": "5.7.0", - "resolved": "https://registry.npmjs.org/@ethersproject/basex/-/basex-5.7.0.tgz", - "integrity": "sha512-ywlh43GwZLv2Voc2gQVTKBoVQ1mti3d8HK5aMxsfu/nRDnMmNqaSJ3r3n85HBByT8OpoY96SXM1FogC533T4zw==", - "requires": { - "@ethersproject/bytes": "^5.7.0", - "@ethersproject/properties": "^5.7.0" - } - }, - "@ethersproject/bignumber": { - "version": "5.7.0", - "resolved": "https://registry.npmjs.org/@ethersproject/bignumber/-/bignumber-5.7.0.tgz", - "integrity": "sha512-n1CAdIHRWjSucQO3MC1zPSVgV/6dy/fjL9pMrPP9peL+QxEg9wOsVqwD4+818B6LUEtaXzVHQiuivzRoxPxUGw==", - "requires": { - "@ethersproject/bytes": "^5.7.0", - "@ethersproject/logger": "^5.7.0", - "bn.js": "^5.2.1" - } - }, - "@ethersproject/bytes": { - "version": "5.7.0", - "resolved": "https://registry.npmjs.org/@ethersproject/bytes/-/bytes-5.7.0.tgz", - "integrity": "sha512-nsbxwgFXWh9NyYWo+U8atvmMsSdKJprTcICAkvbBffT75qDocbuggBU0SJiVK2MuTrp0q+xvLkTnGMPK1+uA9A==", - "requires": { - "@ethersproject/logger": "^5.7.0" - } - }, - "@ethersproject/constants": { - "version": "5.7.0", - "resolved": "https://registry.npmjs.org/@ethersproject/constants/-/constants-5.7.0.tgz", - "integrity": "sha512-DHI+y5dBNvkpYUMiRQyxRBYBefZkJfo70VUkUAsRjcPs47muV9evftfZ0PJVCXYbAiCgght0DtcF9srFQmIgWA==", - "requires": { - "@ethersproject/bignumber": "^5.7.0" - } - }, - "@ethersproject/contracts": { - "version": "5.7.0", - "resolved": "https://registry.npmjs.org/@ethersproject/contracts/-/contracts-5.7.0.tgz", - "integrity": "sha512-5GJbzEU3X+d33CdfPhcyS+z8MzsTrBGk/sc+G+59+tPa9yFkl6HQ9D6L0QMgNTA9q8dT0XKxxkyp883XsQvbbg==", - "requires": { - "@ethersproject/abi": "^5.7.0", - "@ethersproject/abstract-provider": "^5.7.0", - "@ethersproject/abstract-signer": "^5.7.0", - "@ethersproject/address": "^5.7.0", - "@ethersproject/bignumber": "^5.7.0", - "@ethersproject/bytes": "^5.7.0", - "@ethersproject/constants": "^5.7.0", - "@ethersproject/logger": "^5.7.0", - "@ethersproject/properties": "^5.7.0", - "@ethersproject/transactions": "^5.7.0" - } - }, - "@ethersproject/hash": { - "version": "5.7.0", - "resolved": "https://registry.npmjs.org/@ethersproject/hash/-/hash-5.7.0.tgz", - "integrity": "sha512-qX5WrQfnah1EFnO5zJv1v46a8HW0+E5xuBBDTwMFZLuVTx0tbU2kkx15NqdjxecrLGatQN9FGQKpb1FKdHCt+g==", - "requires": { - "@ethersproject/abstract-signer": "^5.7.0", - "@ethersproject/address": "^5.7.0", - "@ethersproject/base64": "^5.7.0", - "@ethersproject/bignumber": "^5.7.0", - "@ethersproject/bytes": "^5.7.0", - "@ethersproject/keccak256": "^5.7.0", - "@ethersproject/logger": "^5.7.0", - "@ethersproject/properties": "^5.7.0", - "@ethersproject/strings": "^5.7.0" - } - }, - "@ethersproject/hdnode": { - "version": "5.7.0", - "resolved": "https://registry.npmjs.org/@ethersproject/hdnode/-/hdnode-5.7.0.tgz", - "integrity": "sha512-OmyYo9EENBPPf4ERhR7oj6uAtUAhYGqOnIS+jE5pTXvdKBS99ikzq1E7Iv0ZQZ5V36Lqx1qZLeak0Ra16qpeOg==", - "requires": { - "@ethersproject/abstract-signer": "^5.7.0", - "@ethersproject/basex": "^5.7.0", - "@ethersproject/bignumber": "^5.7.0", - "@ethersproject/bytes": "^5.7.0", - "@ethersproject/logger": "^5.7.0", - "@ethersproject/pbkdf2": "^5.7.0", - "@ethersproject/properties": "^5.7.0", - "@ethersproject/sha2": "^5.7.0", - "@ethersproject/signing-key": "^5.7.0", - "@ethersproject/strings": "^5.7.0", - "@ethersproject/transactions": "^5.7.0", - "@ethersproject/wordlists": "^5.7.0" - } - }, - "@ethersproject/json-wallets": { - "version": "5.7.0", - "resolved": "https://registry.npmjs.org/@ethersproject/json-wallets/-/json-wallets-5.7.0.tgz", - "integrity": "sha512-8oee5Xgu6+RKgJTkvEMl2wDgSPSAQ9MB/3JYjFV9jlKvcYHUXZC+cQp0njgmxdHkYWn8s6/IqIZYm0YWCjO/0g==", - "requires": { - "@ethersproject/abstract-signer": "^5.7.0", - "@ethersproject/address": "^5.7.0", - "@ethersproject/bytes": "^5.7.0", - "@ethersproject/hdnode": "^5.7.0", - "@ethersproject/keccak256": "^5.7.0", - "@ethersproject/logger": "^5.7.0", - "@ethersproject/pbkdf2": "^5.7.0", - "@ethersproject/properties": "^5.7.0", - "@ethersproject/random": "^5.7.0", - "@ethersproject/strings": "^5.7.0", - "@ethersproject/transactions": "^5.7.0", - "aes-js": "3.0.0", - "scrypt-js": "3.0.1" - } - }, - "@ethersproject/keccak256": { - "version": "5.7.0", - "resolved": "https://registry.npmjs.org/@ethersproject/keccak256/-/keccak256-5.7.0.tgz", - "integrity": "sha512-2UcPboeL/iW+pSg6vZ6ydF8tCnv3Iu/8tUmLLzWWGzxWKFFqOBQFLo6uLUv6BDrLgCDfN28RJ/wtByx+jZ4KBg==", - "requires": { - "@ethersproject/bytes": "^5.7.0", - "js-sha3": "0.8.0" - } - }, - "@ethersproject/logger": { - "version": "5.7.0", - "resolved": "https://registry.npmjs.org/@ethersproject/logger/-/logger-5.7.0.tgz", - "integrity": "sha512-0odtFdXu/XHtjQXJYA3u9G0G8btm0ND5Cu8M7i5vhEcE8/HmF4Lbdqanwyv4uQTr2tx6b7fQRmgLrsnpQlmnig==" - }, - "@ethersproject/networks": { - "version": "5.7.1", - "resolved": "https://registry.npmjs.org/@ethersproject/networks/-/networks-5.7.1.tgz", - "integrity": "sha512-n/MufjFYv3yFcUyfhnXotyDlNdFb7onmkSy8aQERi2PjNcnWQ66xXxa3XlS8nCcA8aJKJjIIMNJTC7tu80GwpQ==", - "requires": { - "@ethersproject/logger": "^5.7.0" - } - }, - "@ethersproject/pbkdf2": { - "version": "5.7.0", - "resolved": "https://registry.npmjs.org/@ethersproject/pbkdf2/-/pbkdf2-5.7.0.tgz", - "integrity": "sha512-oR/dBRZR6GTyaofd86DehG72hY6NpAjhabkhxgr3X2FpJtJuodEl2auADWBZfhDHgVCbu3/H/Ocq2uC6dpNjjw==", - "requires": { - "@ethersproject/bytes": "^5.7.0", - "@ethersproject/sha2": "^5.7.0" - } - }, - "@ethersproject/properties": { - "version": "5.7.0", - "resolved": "https://registry.npmjs.org/@ethersproject/properties/-/properties-5.7.0.tgz", - "integrity": "sha512-J87jy8suntrAkIZtecpxEPxY//szqr1mlBaYlQ0r4RCaiD2hjheqF9s1LVE8vVuJCXisjIP+JgtK/Do54ej4Sw==", - "requires": { - "@ethersproject/logger": "^5.7.0" - } - }, - "@ethersproject/providers": { - "version": "5.7.2", - "resolved": "https://registry.npmjs.org/@ethersproject/providers/-/providers-5.7.2.tgz", - "integrity": "sha512-g34EWZ1WWAVgr4aptGlVBF8mhl3VWjv+8hoAnzStu8Ah22VHBsuGzP17eb6xDVRzw895G4W7vvx60lFFur/1Rg==", - "requires": { - "@ethersproject/abstract-provider": "^5.7.0", - "@ethersproject/abstract-signer": "^5.7.0", - "@ethersproject/address": "^5.7.0", - "@ethersproject/base64": "^5.7.0", - "@ethersproject/basex": "^5.7.0", - "@ethersproject/bignumber": "^5.7.0", - "@ethersproject/bytes": "^5.7.0", - "@ethersproject/constants": "^5.7.0", - "@ethersproject/hash": "^5.7.0", - "@ethersproject/logger": "^5.7.0", - "@ethersproject/networks": "^5.7.0", - "@ethersproject/properties": "^5.7.0", - "@ethersproject/random": "^5.7.0", - "@ethersproject/rlp": "^5.7.0", - "@ethersproject/sha2": "^5.7.0", - "@ethersproject/strings": "^5.7.0", - "@ethersproject/transactions": "^5.7.0", - "@ethersproject/web": "^5.7.0", - "bech32": "1.1.4", - "ws": "7.4.6" - }, - "dependencies": { - "ws": { - "version": "7.4.6", - "resolved": "https://registry.npmjs.org/ws/-/ws-7.4.6.tgz", - "integrity": "sha512-YmhHDO4MzaDLB+M9ym/mDA5z0naX8j7SIlT8f8z+I0VtzsRbekxEutHSme7NPS2qE8StCYQNUnfWdXta/Yu85A==", - "requires": {} - } - } - }, - "@ethersproject/random": { - "version": "5.7.0", - "resolved": "https://registry.npmjs.org/@ethersproject/random/-/random-5.7.0.tgz", - "integrity": "sha512-19WjScqRA8IIeWclFme75VMXSBvi4e6InrUNuaR4s5pTF2qNhcGdCUwdxUVGtDDqC00sDLCO93jPQoDUH4HVmQ==", - "requires": { - "@ethersproject/bytes": "^5.7.0", - "@ethersproject/logger": "^5.7.0" - } - }, - "@ethersproject/rlp": { - "version": "5.7.0", - "resolved": "https://registry.npmjs.org/@ethersproject/rlp/-/rlp-5.7.0.tgz", - "integrity": "sha512-rBxzX2vK8mVF7b0Tol44t5Tb8gomOHkj5guL+HhzQ1yBh/ydjGnpw6at+X6Iw0Kp3OzzzkcKp8N9r0W4kYSs9w==", - "requires": { - "@ethersproject/bytes": "^5.7.0", - "@ethersproject/logger": "^5.7.0" - } - }, - "@ethersproject/sha2": { - "version": "5.7.0", - "resolved": "https://registry.npmjs.org/@ethersproject/sha2/-/sha2-5.7.0.tgz", - "integrity": "sha512-gKlH42riwb3KYp0reLsFTokByAKoJdgFCwI+CCiX/k+Jm2mbNs6oOaCjYQSlI1+XBVejwH2KrmCbMAT/GnRDQw==", - "requires": { - "@ethersproject/bytes": "^5.7.0", - "@ethersproject/logger": "^5.7.0", - "hash.js": "1.1.7" - } - }, - "@ethersproject/signing-key": { - "version": "5.7.0", - "resolved": "https://registry.npmjs.org/@ethersproject/signing-key/-/signing-key-5.7.0.tgz", - "integrity": "sha512-MZdy2nL3wO0u7gkB4nA/pEf8lu1TlFswPNmy8AiYkfKTdO6eXBJyUdmHO/ehm/htHw9K/qF8ujnTyUAD+Ry54Q==", - "requires": { - "@ethersproject/bytes": "^5.7.0", - "@ethersproject/logger": "^5.7.0", - "@ethersproject/properties": "^5.7.0", - "bn.js": "^5.2.1", - "elliptic": "6.5.4", - "hash.js": "1.1.7" - } - }, - "@ethersproject/solidity": { - "version": "5.7.0", - "resolved": "https://registry.npmjs.org/@ethersproject/solidity/-/solidity-5.7.0.tgz", - "integrity": "sha512-HmabMd2Dt/raavyaGukF4XxizWKhKQ24DoLtdNbBmNKUOPqwjsKQSdV9GQtj9CBEea9DlzETlVER1gYeXXBGaA==", - "requires": { - "@ethersproject/bignumber": "^5.7.0", - "@ethersproject/bytes": "^5.7.0", - "@ethersproject/keccak256": "^5.7.0", - "@ethersproject/logger": "^5.7.0", - "@ethersproject/sha2": "^5.7.0", - "@ethersproject/strings": "^5.7.0" - } - }, - "@ethersproject/strings": { - "version": "5.7.0", - "resolved": "https://registry.npmjs.org/@ethersproject/strings/-/strings-5.7.0.tgz", - "integrity": "sha512-/9nu+lj0YswRNSH0NXYqrh8775XNyEdUQAuf3f+SmOrnVewcJ5SBNAjF7lpgehKi4abvNNXyf+HX86czCdJ8Mg==", - "requires": { - "@ethersproject/bytes": "^5.7.0", - "@ethersproject/constants": "^5.7.0", - "@ethersproject/logger": "^5.7.0" - } - }, - "@ethersproject/transactions": { - "version": "5.7.0", - "resolved": "https://registry.npmjs.org/@ethersproject/transactions/-/transactions-5.7.0.tgz", - "integrity": "sha512-kmcNicCp1lp8qanMTC3RIikGgoJ80ztTyvtsFvCYpSCfkjhD0jZ2LOrnbcuxuToLIUYYf+4XwD1rP+B/erDIhQ==", - "requires": { - "@ethersproject/address": "^5.7.0", - "@ethersproject/bignumber": "^5.7.0", - "@ethersproject/bytes": "^5.7.0", - "@ethersproject/constants": "^5.7.0", - "@ethersproject/keccak256": "^5.7.0", - "@ethersproject/logger": "^5.7.0", - "@ethersproject/properties": "^5.7.0", - "@ethersproject/rlp": "^5.7.0", - "@ethersproject/signing-key": "^5.7.0" - } - }, - "@ethersproject/units": { - "version": "5.7.0", - "resolved": "https://registry.npmjs.org/@ethersproject/units/-/units-5.7.0.tgz", - "integrity": "sha512-pD3xLMy3SJu9kG5xDGI7+xhTEmGXlEqXU4OfNapmfnxLVY4EMSSRp7j1k7eezutBPH7RBN/7QPnwR7hzNlEFeg==", - "requires": { - "@ethersproject/bignumber": "^5.7.0", - "@ethersproject/constants": "^5.7.0", - "@ethersproject/logger": "^5.7.0" - } - }, - "@ethersproject/wallet": { - "version": "5.7.0", - "resolved": "https://registry.npmjs.org/@ethersproject/wallet/-/wallet-5.7.0.tgz", - "integrity": "sha512-MhmXlJXEJFBFVKrDLB4ZdDzxcBxQ3rLyCkhNqVu3CDYvR97E+8r01UgrI+TI99Le+aYm/in/0vp86guJuM7FCA==", - "requires": { - "@ethersproject/abstract-provider": "^5.7.0", - "@ethersproject/abstract-signer": "^5.7.0", - "@ethersproject/address": "^5.7.0", - "@ethersproject/bignumber": "^5.7.0", - "@ethersproject/bytes": "^5.7.0", - "@ethersproject/hash": "^5.7.0", - "@ethersproject/hdnode": "^5.7.0", - "@ethersproject/json-wallets": "^5.7.0", - "@ethersproject/keccak256": "^5.7.0", - "@ethersproject/logger": "^5.7.0", - "@ethersproject/properties": "^5.7.0", - "@ethersproject/random": "^5.7.0", - "@ethersproject/signing-key": "^5.7.0", - "@ethersproject/transactions": "^5.7.0", - "@ethersproject/wordlists": "^5.7.0" - } - }, - "@ethersproject/web": { - "version": "5.7.1", - "resolved": "https://registry.npmjs.org/@ethersproject/web/-/web-5.7.1.tgz", - "integrity": "sha512-Gueu8lSvyjBWL4cYsWsjh6MtMwM0+H4HvqFPZfB6dV8ctbP9zFAO73VG1cMWae0FLPCtz0peKPpZY8/ugJJX2w==", - "requires": { - "@ethersproject/base64": "^5.7.0", - "@ethersproject/bytes": "^5.7.0", - "@ethersproject/logger": "^5.7.0", - "@ethersproject/properties": "^5.7.0", - "@ethersproject/strings": "^5.7.0" - } - }, - "@ethersproject/wordlists": { - "version": "5.7.0", - "resolved": "https://registry.npmjs.org/@ethersproject/wordlists/-/wordlists-5.7.0.tgz", - "integrity": "sha512-S2TFNJNfHWVHNE6cNDjbVlZ6MgE17MIxMbMg2zv3wn+3XSJGosL1m9ZVv3GXCf/2ymSsQ+hRI5IzoMJTG6aoVA==", - "requires": { - "@ethersproject/bytes": "^5.7.0", - "@ethersproject/hash": "^5.7.0", - "@ethersproject/logger": "^5.7.0", - "@ethersproject/properties": "^5.7.0", - "@ethersproject/strings": "^5.7.0" - } - }, - "@fontsource/ibm-plex-mono": { - "version": "4.5.13", - "resolved": "https://registry.npmjs.org/@fontsource/ibm-plex-mono/-/ibm-plex-mono-4.5.13.tgz", - "integrity": "sha512-KAE7X2LgCV4X6p7vj1h2phRnhPX4YUa8FBAB0Jj9xW7Q+p+k2ce4HEAMJJ2RFHI075ClgQx+KZuDBNuiKgp5yw==" - }, - "@fontsource/inter": { - "version": "4.5.15", - "resolved": "https://registry.npmjs.org/@fontsource/inter/-/inter-4.5.15.tgz", - "integrity": "sha512-FzleM9AxZQK2nqsTDtBiY0PMEVWvnKnuu2i09+p6DHvrHsuucoV2j0tmw+kAT3L4hvsLdAIDv6MdGehsPIdT+Q==" - }, - "@humanwhocodes/config-array": { - "version": "0.9.5", - "resolved": "https://registry.npmjs.org/@humanwhocodes/config-array/-/config-array-0.9.5.tgz", - "integrity": "sha512-ObyMyWxZiCu/yTisA7uzx81s40xR2fD5Cg/2Kq7G02ajkNubJf6BopgDTmDyc3U7sXpNKM8cYOw7s7Tyr+DnCw==", - "requires": { - "@humanwhocodes/object-schema": "^1.2.1", - "debug": "^4.1.1", - "minimatch": "^3.0.4" - } - }, - "@humanwhocodes/object-schema": { - "version": "1.2.1", - "resolved": "https://registry.npmjs.org/@humanwhocodes/object-schema/-/object-schema-1.2.1.tgz", - "integrity": "sha512-ZnQMnLV4e7hDlUvw8H+U8ASL02SS2Gn6+9Ac3wGGLIe7+je2AeAOxPY+izIPJDfFDb7eDjev0Us8MO1iFRN8hA==" - }, - "@istanbuljs/load-nyc-config": { - "version": "1.1.0", - "resolved": "https://registry.npmjs.org/@istanbuljs/load-nyc-config/-/load-nyc-config-1.1.0.tgz", - "integrity": "sha512-VjeHSlIzpv/NyD3N0YuHfXOPDIixcA1q2ZV98wsMqcYlPmv2n3Yb2lYP9XMElnaFVXg5A7YLTeLu6V84uQDjmQ==", - "requires": { - "camelcase": "^5.3.1", - "find-up": "^4.1.0", - "get-package-type": "^0.1.0", - "js-yaml": "^3.13.1", - "resolve-from": "^5.0.0" - }, - "dependencies": { - "camelcase": { - "version": "5.3.1", - "resolved": "https://registry.npmjs.org/camelcase/-/camelcase-5.3.1.tgz", - "integrity": "sha512-L28STB170nwWS63UjtlEOE3dldQApaJXZkOI1uMFfzf3rRuPegHaHesyee+YxQ+W6SvRDQV6UrdOdRiR153wJg==" - }, - "find-up": { - "version": "4.1.0", - "resolved": "https://registry.npmjs.org/find-up/-/find-up-4.1.0.tgz", - "integrity": "sha512-PpOwAdQ/YlXQ2vj8a3h8IipDuYRi3wceVQQGYWxNINccq40Anw7BlsEXCMbt1Zt+OLA6Fq9suIpIWD0OsnISlw==", - "requires": { - "locate-path": "^5.0.0", - "path-exists": "^4.0.0" - } - }, - "locate-path": { - "version": "5.0.0", - "resolved": "https://registry.npmjs.org/locate-path/-/locate-path-5.0.0.tgz", - "integrity": "sha512-t7hw9pI+WvuwNJXwk5zVHpyhIqzg2qTlklJOf0mVxGSbe3Fp2VieZcduNYjaLDoy6p9uGpQEGWG87WpMKlNq8g==", - "requires": { - "p-locate": "^4.1.0" - } - }, - "p-limit": { - "version": "2.3.0", - "resolved": "https://registry.npmjs.org/p-limit/-/p-limit-2.3.0.tgz", - "integrity": "sha512-//88mFWSJx8lxCzwdAABTJL2MyWB12+eIY7MDL2SqLmAkeKU9qxRvWuSyTjm3FUmpBEMuFfckAIqEaVGUDxb6w==", - "requires": { - "p-try": "^2.0.0" - } - }, - "p-locate": { - "version": "4.1.0", - "resolved": "https://registry.npmjs.org/p-locate/-/p-locate-4.1.0.tgz", - "integrity": "sha512-R79ZZ/0wAxKGu3oYMlz8jy/kbhsNrS7SKZ7PxEHBgJ5+F2mtFW2fK2cOtBh1cHYkQsbzFV7I+EoRKe6Yt0oK7A==", - "requires": { - "p-limit": "^2.2.0" - } - } - } - }, - "@istanbuljs/schema": { - "version": "0.1.3", - "resolved": "https://registry.npmjs.org/@istanbuljs/schema/-/schema-0.1.3.tgz", - "integrity": "sha512-ZXRY4jNvVgSVQ8DL3LTcakaAtXwTVUxE81hslsyD2AtoXW/wVob10HkOJ1X/pAlcI7D+2YoZKg5do8G/w6RYgA==" - }, - "@jest/console": { - "version": "27.5.1", - "resolved": "https://registry.npmjs.org/@jest/console/-/console-27.5.1.tgz", - "integrity": "sha512-kZ/tNpS3NXn0mlXXXPNuDZnb4c0oZ20r4K5eemM2k30ZC3G0T02nXUvyhf5YdbXWHPEJLc9qGLxEZ216MdL+Zg==", - "requires": { - "@jest/types": "^27.5.1", - "@types/node": "*", - "chalk": "^4.0.0", - "jest-message-util": "^27.5.1", - "jest-util": "^27.5.1", - "slash": "^3.0.0" - }, - "dependencies": { - "ansi-styles": { - "version": "4.3.0", - "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", - "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", - "requires": { - "color-convert": "^2.0.1" - } - }, - "chalk": { - "version": "4.1.2", - "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz", - "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==", - "requires": { - "ansi-styles": "^4.1.0", - "supports-color": "^7.1.0" - } - }, - "color-convert": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz", - "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==", - "requires": { - "color-name": "~1.1.4" - } - }, - "color-name": { - "version": "1.1.4", - "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz", - "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==" - }, - "has-flag": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz", - "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==" - }, - "supports-color": { - "version": "7.2.0", - "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", - "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", - "requires": { - "has-flag": "^4.0.0" - } - } - } - }, - "@jest/core": { - "version": "27.5.1", - "resolved": "https://registry.npmjs.org/@jest/core/-/core-27.5.1.tgz", - "integrity": "sha512-AK6/UTrvQD0Cd24NSqmIA6rKsu0tKIxfiCducZvqxYdmMisOYAsdItspT+fQDQYARPf8XgjAFZi0ogW2agH5nQ==", - "requires": { - "@jest/console": "^27.5.1", - "@jest/reporters": "^27.5.1", - "@jest/test-result": "^27.5.1", - "@jest/transform": "^27.5.1", - "@jest/types": "^27.5.1", - "@types/node": "*", - "ansi-escapes": "^4.2.1", - "chalk": "^4.0.0", - "emittery": "^0.8.1", - "exit": "^0.1.2", - "graceful-fs": "^4.2.9", - "jest-changed-files": "^27.5.1", - "jest-config": "^27.5.1", - "jest-haste-map": "^27.5.1", - "jest-message-util": "^27.5.1", - "jest-regex-util": "^27.5.1", - "jest-resolve": "^27.5.1", - "jest-resolve-dependencies": "^27.5.1", - "jest-runner": "^27.5.1", - "jest-runtime": "^27.5.1", - "jest-snapshot": "^27.5.1", - "jest-util": "^27.5.1", - "jest-validate": "^27.5.1", - "jest-watcher": "^27.5.1", - "micromatch": "^4.0.4", - "rimraf": "^3.0.0", - "slash": "^3.0.0", - "strip-ansi": "^6.0.0" - }, - "dependencies": { - "ansi-styles": { - "version": "4.3.0", - "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", - "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", - "requires": { - "color-convert": "^2.0.1" - } - }, - "chalk": { - "version": "4.1.2", - "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz", - "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==", - "requires": { - "ansi-styles": "^4.1.0", - "supports-color": "^7.1.0" - } - }, - "color-convert": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz", - "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==", - "requires": { - "color-name": "~1.1.4" - } - }, - "color-name": { - "version": "1.1.4", - "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz", - "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==" - }, - "has-flag": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz", - "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==" - }, - "supports-color": { - "version": "7.2.0", - "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", - "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", - "requires": { - "has-flag": "^4.0.0" - } - } - } - }, - "@jest/environment": { - "version": "27.5.1", - "resolved": "https://registry.npmjs.org/@jest/environment/-/environment-27.5.1.tgz", - "integrity": "sha512-/WQjhPJe3/ghaol/4Bq480JKXV/Rfw8nQdN7f41fM8VDHLcxKXou6QyXAh3EFr9/bVG3x74z1NWDkP87EiY8gA==", - "requires": { - "@jest/fake-timers": "^27.5.1", - "@jest/types": "^27.5.1", - "@types/node": "*", - "jest-mock": "^27.5.1" - } - }, - "@jest/fake-timers": { - "version": "27.5.1", - "resolved": "https://registry.npmjs.org/@jest/fake-timers/-/fake-timers-27.5.1.tgz", - "integrity": "sha512-/aPowoolwa07k7/oM3aASneNeBGCmGQsc3ugN4u6s4C/+s5M64MFo/+djTdiwcbQlRfFElGuDXWzaWj6QgKObQ==", - "requires": { - "@jest/types": "^27.5.1", - "@sinonjs/fake-timers": "^8.0.1", - "@types/node": "*", - "jest-message-util": "^27.5.1", - "jest-mock": "^27.5.1", - "jest-util": "^27.5.1" - } - }, - "@jest/globals": { - "version": "27.5.1", - "resolved": "https://registry.npmjs.org/@jest/globals/-/globals-27.5.1.tgz", - "integrity": "sha512-ZEJNB41OBQQgGzgyInAv0UUfDDj3upmHydjieSxFvTRuZElrx7tXg/uVQ5hYVEwiXs3+aMsAeEc9X7xiSKCm4Q==", - "requires": { - "@jest/environment": "^27.5.1", - "@jest/types": "^27.5.1", - "expect": "^27.5.1" - } - }, - "@jest/reporters": { - "version": "27.5.1", - "resolved": "https://registry.npmjs.org/@jest/reporters/-/reporters-27.5.1.tgz", - "integrity": "sha512-cPXh9hWIlVJMQkVk84aIvXuBB4uQQmFqZiacloFuGiP3ah1sbCxCosidXFDfqG8+6fO1oR2dTJTlsOy4VFmUfw==", - "requires": { - "@bcoe/v8-coverage": "^0.2.3", - "@jest/console": "^27.5.1", - "@jest/test-result": "^27.5.1", - "@jest/transform": "^27.5.1", - "@jest/types": "^27.5.1", - "@types/node": "*", - "chalk": "^4.0.0", - "collect-v8-coverage": "^1.0.0", - "exit": "^0.1.2", - "glob": "^7.1.2", - "graceful-fs": "^4.2.9", - "istanbul-lib-coverage": "^3.0.0", - "istanbul-lib-instrument": "^5.1.0", - "istanbul-lib-report": "^3.0.0", - "istanbul-lib-source-maps": "^4.0.0", - "istanbul-reports": "^3.1.3", - "jest-haste-map": "^27.5.1", - "jest-resolve": "^27.5.1", - "jest-util": "^27.5.1", - "jest-worker": "^27.5.1", - "slash": "^3.0.0", - "source-map": "^0.6.0", - "string-length": "^4.0.1", - "terminal-link": "^2.0.0", - "v8-to-istanbul": "^8.1.0" - }, - "dependencies": { - "ansi-styles": { - "version": "4.3.0", - "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", - "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", - "requires": { - "color-convert": "^2.0.1" - } - }, - "chalk": { - "version": "4.1.2", - "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz", - "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==", - "requires": { - "ansi-styles": "^4.1.0", - "supports-color": "^7.1.0" - } - }, - "color-convert": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz", - "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==", - "requires": { - "color-name": "~1.1.4" - } - }, - "color-name": { - "version": "1.1.4", - "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz", - "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==" - }, - "has-flag": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz", - "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==" - }, - "source-map": { - "version": "0.6.1", - "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz", - "integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==" - }, - "supports-color": { - "version": "7.2.0", - "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", - "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", - "requires": { - "has-flag": "^4.0.0" - } - } - } - }, - "@jest/schemas": { - "version": "28.0.2", - "resolved": "https://registry.npmjs.org/@jest/schemas/-/schemas-28.0.2.tgz", - "integrity": "sha512-YVDJZjd4izeTDkij00vHHAymNXQ6WWsdChFRK86qck6Jpr3DCL5W3Is3vslviRlP+bLuMYRLbdp98amMvqudhA==", - "requires": { - "@sinclair/typebox": "^0.23.3" - } - }, - "@jest/source-map": { - "version": "27.5.1", - "resolved": "https://registry.npmjs.org/@jest/source-map/-/source-map-27.5.1.tgz", - "integrity": "sha512-y9NIHUYF3PJRlHk98NdC/N1gl88BL08aQQgu4k4ZopQkCw9t9cV8mtl3TV8b/YCB8XaVTFrmUTAJvjsntDireg==", - "requires": { - "callsites": "^3.0.0", - "graceful-fs": "^4.2.9", - "source-map": "^0.6.0" - }, - "dependencies": { - "source-map": { - "version": "0.6.1", - "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz", - "integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==" - } - } - }, - "@jest/test-result": { - "version": "27.5.1", - "resolved": "https://registry.npmjs.org/@jest/test-result/-/test-result-27.5.1.tgz", - "integrity": "sha512-EW35l2RYFUcUQxFJz5Cv5MTOxlJIQs4I7gxzi2zVU7PJhOwfYq1MdC5nhSmYjX1gmMmLPvB3sIaC+BkcHRBfag==", - "requires": { - "@jest/console": "^27.5.1", - "@jest/types": "^27.5.1", - "@types/istanbul-lib-coverage": "^2.0.0", - "collect-v8-coverage": "^1.0.0" - } - }, - "@jest/test-sequencer": { - "version": "27.5.1", - "resolved": "https://registry.npmjs.org/@jest/test-sequencer/-/test-sequencer-27.5.1.tgz", - "integrity": "sha512-LCheJF7WB2+9JuCS7VB/EmGIdQuhtqjRNI9A43idHv3E4KltCTsPsLxvdaubFHSYwY/fNjMWjl6vNRhDiN7vpQ==", - "requires": { - "@jest/test-result": "^27.5.1", - "graceful-fs": "^4.2.9", - "jest-haste-map": "^27.5.1", - "jest-runtime": "^27.5.1" - } - }, - "@jest/transform": { - "version": "27.5.1", - "resolved": "https://registry.npmjs.org/@jest/transform/-/transform-27.5.1.tgz", - "integrity": "sha512-ipON6WtYgl/1329g5AIJVbUuEh0wZVbdpGwC99Jw4LwuoBNS95MVphU6zOeD9pDkon+LLbFL7lOQRapbB8SCHw==", - "requires": { - "@babel/core": "^7.1.0", - "@jest/types": "^27.5.1", - "babel-plugin-istanbul": "^6.1.1", - "chalk": "^4.0.0", - "convert-source-map": "^1.4.0", - "fast-json-stable-stringify": "^2.0.0", - "graceful-fs": "^4.2.9", - "jest-haste-map": "^27.5.1", - "jest-regex-util": "^27.5.1", - "jest-util": "^27.5.1", - "micromatch": "^4.0.4", - "pirates": "^4.0.4", - "slash": "^3.0.0", - "source-map": "^0.6.1", - "write-file-atomic": "^3.0.0" - }, - "dependencies": { - "ansi-styles": { - "version": "4.3.0", - "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", - "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", - "requires": { - "color-convert": "^2.0.1" - } - }, - "chalk": { - "version": "4.1.2", - "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz", - "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==", - "requires": { - "ansi-styles": "^4.1.0", - "supports-color": "^7.1.0" - } - }, - "color-convert": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz", - "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==", - "requires": { - "color-name": "~1.1.4" - } - }, - "color-name": { - "version": "1.1.4", - "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz", - "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==" - }, - "has-flag": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz", - "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==" - }, - "source-map": { - "version": "0.6.1", - "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz", - "integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==" - }, - "supports-color": { - "version": "7.2.0", - "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", - "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", - "requires": { - "has-flag": "^4.0.0" - } - } - } - }, - "@jest/types": { - "version": "27.5.1", - "resolved": "https://registry.npmjs.org/@jest/types/-/types-27.5.1.tgz", - "integrity": "sha512-Cx46iJ9QpwQTjIdq5VJu2QTMMs3QlEjI0x1QbBP5W1+nMzyc2XmimiRR/CbX9TO0cPTeUlxWMOu8mslYsJ8DEw==", - "requires": { - "@types/istanbul-lib-coverage": "^2.0.0", - "@types/istanbul-reports": "^3.0.0", - "@types/node": "*", - "@types/yargs": "^16.0.0", - "chalk": "^4.0.0" - }, - "dependencies": { - "ansi-styles": { - "version": "4.3.0", - "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", - "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", - "requires": { - "color-convert": "^2.0.1" - } - }, - "chalk": { - "version": "4.1.2", - "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz", - "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==", - "requires": { - "ansi-styles": "^4.1.0", - "supports-color": "^7.1.0" - } - }, - "color-convert": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz", - "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==", - "requires": { - "color-name": "~1.1.4" - } - }, - "color-name": { - "version": "1.1.4", - "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz", - "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==" - }, - "has-flag": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz", - "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==" - }, - "supports-color": { - "version": "7.2.0", - "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", - "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", - "requires": { - "has-flag": "^4.0.0" - } - } - } - }, - "@jimp/bmp": { - "version": "0.16.13", - "resolved": "https://registry.npmjs.org/@jimp/bmp/-/bmp-0.16.13.tgz", - "integrity": "sha512-9edAxu7N2FX7vzkdl5Jo1BbACfycUtBQX+XBMcHA2bk62P8R0otgkHg798frgAk/WxQIzwxqOH6wMiCwrlAzdQ==", - "requires": { - "@babel/runtime": "^7.7.2", - "@jimp/utils": "^0.16.13", - "bmp-js": "^0.1.0" - } - }, - "@jimp/core": { - "version": "0.16.13", - "resolved": "https://registry.npmjs.org/@jimp/core/-/core-0.16.13.tgz", - "integrity": "sha512-qXpA1tzTnlkTku9yqtuRtS/wVntvE6f3m3GNxdTdtmc+O+Wcg9Xo2ABPMh7Nc0AHbMKzwvwgB2JnjZmlmJEObg==", - "requires": { - "@babel/runtime": "^7.7.2", - "@jimp/utils": "^0.16.13", - "any-base": "^1.1.0", - "buffer": "^5.2.0", - "exif-parser": "^0.1.12", - "file-type": "^16.5.4", - "load-bmfont": "^1.3.1", - "mkdirp": "^0.5.1", - "phin": "^2.9.1", - "pixelmatch": "^4.0.2", - "tinycolor2": "^1.4.1" - }, - "dependencies": { - "buffer": { - "version": "5.7.1", - "resolved": "https://registry.npmjs.org/buffer/-/buffer-5.7.1.tgz", - "integrity": "sha512-EHcyIPBQ4BSGlvjB16k5KgAJ27CIsHY/2JBmCRReo48y9rQ3MaUzWX3KVlBa4U7MyX02HdVj0K7C3WaB3ju7FQ==", - "requires": { - "base64-js": "^1.3.1", - "ieee754": "^1.1.13" - } - } - } - }, - "@jimp/custom": { - "version": "0.16.13", - "resolved": "https://registry.npmjs.org/@jimp/custom/-/custom-0.16.13.tgz", - "integrity": "sha512-LTATglVUPGkPf15zX1wTMlZ0+AU7cGEGF6ekVF1crA8eHUWsGjrYTB+Ht4E3HTrCok8weQG+K01rJndCp/l4XA==", - "requires": { - "@babel/runtime": "^7.7.2", - "@jimp/core": "^0.16.13" - } - }, - "@jimp/gif": { - "version": "0.16.13", - "resolved": "https://registry.npmjs.org/@jimp/gif/-/gif-0.16.13.tgz", - "integrity": "sha512-yFAMZGv3o+YcjXilMWWwS/bv1iSqykFahFMSO169uVMtfQVfa90kt4/kDwrXNR6Q9i6VHpFiGZMlF2UnHClBvg==", - "requires": { - "@babel/runtime": "^7.7.2", - "@jimp/utils": "^0.16.13", - "gifwrap": "^0.9.2", - "omggif": "^1.0.9" - } - }, - "@jimp/jpeg": { - "version": "0.16.13", - "resolved": "https://registry.npmjs.org/@jimp/jpeg/-/jpeg-0.16.13.tgz", - "integrity": "sha512-BJHlDxzTlCqP2ThqP8J0eDrbBfod7npWCbJAcfkKqdQuFk0zBPaZ6KKaQKyKxmWJ87Z6ohANZoMKEbtvrwz1AA==", - "requires": { - "@babel/runtime": "^7.7.2", - "@jimp/utils": "^0.16.13", - "jpeg-js": "^0.4.2" - } - }, - "@jimp/plugin-resize": { - "version": "0.16.13", - "resolved": "https://registry.npmjs.org/@jimp/plugin-resize/-/plugin-resize-0.16.13.tgz", - "integrity": "sha512-qoqtN8LDknm3fJm9nuPygJv30O3vGhSBD2TxrsCnhtOsxKAqVPJtFVdGd/qVuZ8nqQANQmTlfqTiK9mVWQ7MiQ==", - "requires": { - "@babel/runtime": "^7.7.2", - "@jimp/utils": "^0.16.13" - } - }, - "@jimp/png": { - "version": "0.16.13", - "resolved": "https://registry.npmjs.org/@jimp/png/-/png-0.16.13.tgz", - "integrity": "sha512-8cGqINvbWJf1G0Her9zbq9I80roEX0A+U45xFby3tDWfzn+Zz8XKDF1Nv9VUwVx0N3zpcG1RPs9hfheG4Cq2kg==", - "requires": { - "@babel/runtime": "^7.7.2", - "@jimp/utils": "^0.16.13", - "pngjs": "^3.3.3" - } - }, - "@jimp/tiff": { - "version": "0.16.13", - "resolved": "https://registry.npmjs.org/@jimp/tiff/-/tiff-0.16.13.tgz", - "integrity": "sha512-oJY8d9u95SwW00VPHuCNxPap6Q1+E/xM5QThb9Hu+P6EGuu6lIeLaNBMmFZyblwFbwrH+WBOZlvIzDhi4Dm/6Q==", - "requires": { - "@babel/runtime": "^7.7.2", - "utif": "^2.0.1" - } - }, - "@jimp/types": { - "version": "0.16.13", - "resolved": "https://registry.npmjs.org/@jimp/types/-/types-0.16.13.tgz", - "integrity": "sha512-mC0yVNUobFDjoYLg4hoUwzMKgNlxynzwt3cDXzumGvRJ7Kb8qQGOWJQjQFo5OxmGExqzPphkirdbBF88RVLBCg==", - "requires": { - "@babel/runtime": "^7.7.2", - "@jimp/bmp": "^0.16.13", - "@jimp/gif": "^0.16.13", - "@jimp/jpeg": "^0.16.13", - "@jimp/png": "^0.16.13", - "@jimp/tiff": "^0.16.13", - "timm": "^1.6.1" - } - }, - "@jimp/utils": { - "version": "0.16.13", - "resolved": "https://registry.npmjs.org/@jimp/utils/-/utils-0.16.13.tgz", - "integrity": "sha512-VyCpkZzFTHXtKgVO35iKN0sYR10psGpV6SkcSeV4oF7eSYlR8Bl6aQLCzVeFjvESF7mxTmIiI3/XrMobVrtxDA==", - "requires": { - "@babel/runtime": "^7.7.2", - "regenerator-runtime": "^0.13.3" - } - }, - "@jridgewell/gen-mapping": { - "version": "0.1.1", - "resolved": "https://registry.npmjs.org/@jridgewell/gen-mapping/-/gen-mapping-0.1.1.tgz", - "integrity": "sha512-sQXCasFk+U8lWYEe66WxRDOE9PjVz4vSM51fTu3Hw+ClTpUSQb718772vH3pyS5pShp6lvQM7SxgIDXXXmOX7w==", - "requires": { - "@jridgewell/set-array": "^1.0.0", - "@jridgewell/sourcemap-codec": "^1.4.10" - } - }, - "@jridgewell/resolve-uri": { - "version": "3.1.0", - "resolved": "https://registry.npmjs.org/@jridgewell/resolve-uri/-/resolve-uri-3.1.0.tgz", - "integrity": "sha512-F2msla3tad+Mfht5cJq7LSXcdudKTWCVYUgw6pLFOOHSTtZlj6SWNYAp+AhuqLmWdBO2X5hPrLcu8cVP8fy28w==" - }, - "@jridgewell/set-array": { - "version": "1.1.2", - "resolved": "https://registry.npmjs.org/@jridgewell/set-array/-/set-array-1.1.2.tgz", - "integrity": "sha512-xnkseuNADM0gt2bs+BvhO0p78Mk762YnZdsuzFV018NoG1Sj1SCQvpSqa7XUaTam5vAGasABV9qXASMKnFMwMw==" - }, - "@jridgewell/source-map": { - "version": "0.3.2", - "resolved": "https://registry.npmjs.org/@jridgewell/source-map/-/source-map-0.3.2.tgz", - "integrity": "sha512-m7O9o2uR8k2ObDysZYzdfhb08VuEml5oWGiosa1VdaPZ/A6QyPkAJuwN0Q1lhULOf6B7MtQmHENS743hWtCrgw==", - "requires": { - "@jridgewell/gen-mapping": "^0.3.0", - "@jridgewell/trace-mapping": "^0.3.9" - }, - "dependencies": { - "@jridgewell/gen-mapping": { - "version": "0.3.2", - "resolved": "https://registry.npmjs.org/@jridgewell/gen-mapping/-/gen-mapping-0.3.2.tgz", - "integrity": "sha512-mh65xKQAzI6iBcFzwv28KVWSmCkdRBWoOh+bYQGW3+6OZvbbN3TqMGo5hqYxQniRcH9F2VZIoJCm4pa3BPDK/A==", - "requires": { - "@jridgewell/set-array": "^1.0.1", - "@jridgewell/sourcemap-codec": "^1.4.10", - "@jridgewell/trace-mapping": "^0.3.9" - } - } - } - }, - "@jridgewell/sourcemap-codec": { - "version": "1.4.14", - "resolved": "https://registry.npmjs.org/@jridgewell/sourcemap-codec/-/sourcemap-codec-1.4.14.tgz", - "integrity": "sha512-XPSJHWmi394fuUuzDnGz1wiKqWfo1yXecHQMRf2l6hztTO+nPru658AyDngaBe7isIxEkRsPR3FZh+s7iVa4Uw==" - }, - "@jridgewell/trace-mapping": { - "version": "0.3.18", - "resolved": "https://registry.npmjs.org/@jridgewell/trace-mapping/-/trace-mapping-0.3.18.tgz", - "integrity": "sha512-w+niJYzMHdd7USdiH2U6869nqhD2nbfZXND5Yp93qIbEmnDNk7PD48o+YchRVpzMU7M6jVCbenTR7PA1FLQ9pA==", - "requires": { - "@jridgewell/resolve-uri": "3.1.0", - "@jridgewell/sourcemap-codec": "1.4.14" - } - }, - "@leichtgewicht/ip-codec": { - "version": "2.0.4", - "resolved": "https://registry.npmjs.org/@leichtgewicht/ip-codec/-/ip-codec-2.0.4.tgz", - "integrity": "sha512-Hcv+nVC0kZnQ3tD9GVu5xSMR4VVYOteQIr/hwFPVEvPdlXqgGEuRjiheChHgdM+JyqdgNcmzZOX/tnl0JOiI7A==" - }, - "@metamask/eth-sig-util": { - "version": "4.0.1", - "resolved": "https://registry.npmjs.org/@metamask/eth-sig-util/-/eth-sig-util-4.0.1.tgz", - "integrity": "sha512-tghyZKLHZjcdlDqCA3gNZmLeR0XvOE9U1qoQO9ohyAZT6Pya+H9vkBPcsyXytmYLNgVoin7CKCmweo/R43V+tQ==", - "peer": true, - "requires": { - "ethereumjs-abi": "^0.6.8", - "ethereumjs-util": "^6.2.1", - "ethjs-util": "^0.1.6", - "tweetnacl": "^1.0.3", - "tweetnacl-util": "^0.15.1" - } - }, - "@mui/base": { - "version": "5.0.0-alpha.87", - "resolved": "https://registry.npmjs.org/@mui/base/-/base-5.0.0-alpha.87.tgz", - "integrity": "sha512-PuxRYrvG63Yj/UTwf4hSwZ5ClMv88iXHK+5hUV1CrG3kNPo6FFQiIFNRaNpRt/3nsXj6+xygJByNFA8m4Leetg==", - "requires": { - "@babel/runtime": "^7.17.2", - "@emotion/is-prop-valid": "^1.1.2", - "@mui/types": "^7.1.4", - "@mui/utils": "^5.8.6", - "@popperjs/core": "^2.11.5", - "clsx": "^1.1.1", - "prop-types": "^15.8.1", - "react-is": "^17.0.2" - } - }, - "@mui/material": { - "version": "5.8.6", - "resolved": "https://registry.npmjs.org/@mui/material/-/material-5.8.6.tgz", - "integrity": "sha512-9fo5AiNHs+HY5ArMzsDMFrAmJSRw90y/qu81oDIszgK7Bfrm8GuI7Eb0mO6WADWPEyKOzOov/WZsm4G6jPEM4g==", - "requires": { - "@babel/runtime": "^7.17.2", - "@mui/base": "5.0.0-alpha.87", - "@mui/system": "^5.8.6", - "@mui/types": "^7.1.4", - "@mui/utils": "^5.8.6", - "@types/react-transition-group": "^4.4.4", - "clsx": "^1.1.1", - "csstype": "^3.1.0", - "prop-types": "^15.8.1", - "react-is": "^17.0.2", - "react-transition-group": "^4.4.2" - } - }, - "@mui/private-theming": { - "version": "5.8.6", - "resolved": "https://registry.npmjs.org/@mui/private-theming/-/private-theming-5.8.6.tgz", - "integrity": "sha512-yHsJk1qU9r/q0DlnxGRJPHyM0Y/nUv8FTNgDTiI9I58GWuVuZqeTUr7JRvPh6ybeP/FLtW5eXEavRK9wxVk4uQ==", - "requires": { - "@babel/runtime": "^7.17.2", - "@mui/utils": "^5.8.6", - "prop-types": "^15.8.1" - } - }, - "@mui/styled-engine": { - "version": "5.8.0", - "resolved": "https://registry.npmjs.org/@mui/styled-engine/-/styled-engine-5.8.0.tgz", - "integrity": "sha512-Q3spibB8/EgeMYHc+/o3RRTnAYkSl7ROCLhXJ830W8HZ2/iDiyYp16UcxKPurkXvLhUaILyofPVrP3Su2uKsAw==", - "requires": { - "@babel/runtime": "^7.17.2", - "@emotion/cache": "^11.7.1", - "prop-types": "^15.8.1" - } - }, - "@mui/system": { - "version": "5.8.6", - "resolved": "https://registry.npmjs.org/@mui/system/-/system-5.8.6.tgz", - "integrity": "sha512-+a+rD58XltKQHDrrjcuCta2cUBqdnLDUDwnphSLCMFigRl8/uk+R+fdQRlMNRXAOgnMb8ioWIgfjxri5pmTH4A==", - "requires": { - "@babel/runtime": "^7.17.2", - "@mui/private-theming": "^5.8.6", - "@mui/styled-engine": "^5.8.0", - "@mui/types": "^7.1.4", - "@mui/utils": "^5.8.6", - "clsx": "^1.1.1", - "csstype": "^3.1.0", - "prop-types": "^15.8.1" - } - }, - "@mui/types": { - "version": "7.1.4", - "resolved": "https://registry.npmjs.org/@mui/types/-/types-7.1.4.tgz", - "integrity": "sha512-uveM3byMbthO+6tXZ1n2zm0W3uJCQYtwt/v5zV5I77v2v18u0ITkb8xwhsDD2i3V2Kye7SaNR6FFJ6lMuY/WqQ==", - "requires": {} - }, - "@mui/utils": { - "version": "5.8.6", - "resolved": "https://registry.npmjs.org/@mui/utils/-/utils-5.8.6.tgz", - "integrity": "sha512-QM2Sd1xZo2jOt2Vz5Rmro+pi2FLJyiv4+OjxkUwXR3oUM65KSMAMLl/KNYU55s3W3DLRFP5MVwE4FhAbHseHAg==", - "requires": { - "@babel/runtime": "^7.17.2", - "@types/prop-types": "^15.7.5", - "@types/react-is": "^16.7.1 || ^17.0.0", - "prop-types": "^15.8.1", - "react-is": "^17.0.2" - } - }, - "@multiformats/base-x": { - "version": "4.0.1", - "resolved": "https://registry.npmjs.org/@multiformats/base-x/-/base-x-4.0.1.tgz", - "integrity": "sha512-eMk0b9ReBbV23xXU693TAIrLyeO5iTgBZGSJfpqriG8UkYvr/hC9u9pyMlAakDNHWmbhMZCDs6KQO0jzKD8OTw==" - }, - "@noble/hashes": { - "version": "1.1.1", - "resolved": "https://registry.npmjs.org/@noble/hashes/-/hashes-1.1.1.tgz", - "integrity": "sha512-Lkp9+NijmV7eSVZqiUvt3UCuuHeJpUVmRrvh430gyJjJiuJMqkeHf6/A9lQ/smmbWV/0spDeJscscPzyB4waZg==" - }, - "@noble/secp256k1": { - "version": "1.6.0", - "resolved": "https://registry.npmjs.org/@noble/secp256k1/-/secp256k1-1.6.0.tgz", - "integrity": "sha512-DWSsg8zMHOYMYBqIQi96BQuthZrp98LCeMNcUOaffCIVYQ5yxDbNikLF+H7jEnmNNmXbtVic46iCuVWzar+MgA==" - }, - "@nodelib/fs.scandir": { - "version": "2.1.5", - "resolved": "https://registry.npmjs.org/@nodelib/fs.scandir/-/fs.scandir-2.1.5.tgz", - "integrity": "sha512-vq24Bq3ym5HEQm2NKCr3yXDwjc7vTsEThRDnkp2DK9p1uqLR+DHurm/NOTo0KG7HYHU7eppKZj3MyqYuMBf62g==", - "requires": { - "@nodelib/fs.stat": "2.0.5", - "run-parallel": "^1.1.9" - } - }, - "@nodelib/fs.stat": { - "version": "2.0.5", - "resolved": "https://registry.npmjs.org/@nodelib/fs.stat/-/fs.stat-2.0.5.tgz", - "integrity": "sha512-RkhPPp2zrqDAQA/2jNhnztcPAlv64XdhIp7a7454A5ovI7Bukxgt7MX7udwAu3zg1DcpPU0rz3VV1SeaqvY4+A==" - }, - "@nodelib/fs.walk": { - "version": "1.2.8", - "resolved": "https://registry.npmjs.org/@nodelib/fs.walk/-/fs.walk-1.2.8.tgz", - "integrity": "sha512-oGB+UxlgWcgQkgwo8GcEGwemoTFt3FIO9ababBmaGwXIoBKZ+GTy0pP185beGg7Llih/NSHSV2XAs1lnznocSg==", - "requires": { - "@nodelib/fs.scandir": "2.1.5", - "fastq": "^1.6.0" - } - }, - "@nomicfoundation/ethereumjs-block": { - "version": "5.0.1", - "resolved": "https://registry.npmjs.org/@nomicfoundation/ethereumjs-block/-/ethereumjs-block-5.0.1.tgz", - "integrity": "sha512-u1Yioemi6Ckj3xspygu/SfFvm8vZEO8/Yx5a1QLzi6nVU0jz3Pg2OmHKJ5w+D9Ogk1vhwRiqEBAqcb0GVhCyHw==", - "peer": true, - "requires": { - "@nomicfoundation/ethereumjs-common": "4.0.1", - "@nomicfoundation/ethereumjs-rlp": "5.0.1", - "@nomicfoundation/ethereumjs-trie": "6.0.1", - "@nomicfoundation/ethereumjs-tx": "5.0.1", - "@nomicfoundation/ethereumjs-util": "9.0.1", - "ethereum-cryptography": "0.1.3", - "ethers": "^5.7.1" - }, - "dependencies": { - "ethereum-cryptography": { - "version": "0.1.3", - "resolved": "https://registry.npmjs.org/ethereum-cryptography/-/ethereum-cryptography-0.1.3.tgz", - "integrity": "sha512-w8/4x1SGGzc+tO97TASLja6SLd3fRIK2tLVcV2Gx4IB21hE19atll5Cq9o3d0ZmAYC/8aw0ipieTSiekAea4SQ==", - "peer": true, - "requires": { - "@types/pbkdf2": "^3.0.0", - "@types/secp256k1": "^4.0.1", - "blakejs": "^1.1.0", - "browserify-aes": "^1.2.0", - "bs58check": "^2.1.2", - "create-hash": "^1.2.0", - "create-hmac": "^1.1.7", - "hash.js": "^1.1.7", - "keccak": "^3.0.0", - "pbkdf2": "^3.0.17", - "randombytes": "^2.1.0", - "safe-buffer": "^5.1.2", - "scrypt-js": "^3.0.0", - "secp256k1": "^4.0.1", - "setimmediate": "^1.0.5" - } - } - } - }, - "@nomicfoundation/ethereumjs-blockchain": { - "version": "7.0.1", - "resolved": "https://registry.npmjs.org/@nomicfoundation/ethereumjs-blockchain/-/ethereumjs-blockchain-7.0.1.tgz", - "integrity": "sha512-NhzndlGg829XXbqJEYrF1VeZhAwSPgsK/OB7TVrdzft3y918hW5KNd7gIZ85sn6peDZOdjBsAXIpXZ38oBYE5A==", - "peer": true, - "requires": { - "@nomicfoundation/ethereumjs-block": "5.0.1", - "@nomicfoundation/ethereumjs-common": "4.0.1", - "@nomicfoundation/ethereumjs-ethash": "3.0.1", - "@nomicfoundation/ethereumjs-rlp": "5.0.1", - "@nomicfoundation/ethereumjs-trie": "6.0.1", - "@nomicfoundation/ethereumjs-tx": "5.0.1", - "@nomicfoundation/ethereumjs-util": "9.0.1", - "abstract-level": "^1.0.3", - "debug": "^4.3.3", - "ethereum-cryptography": "0.1.3", - "level": "^8.0.0", - "lru-cache": "^5.1.1", - "memory-level": "^1.0.0" - }, - "dependencies": { - "ethereum-cryptography": { - "version": "0.1.3", - "resolved": "https://registry.npmjs.org/ethereum-cryptography/-/ethereum-cryptography-0.1.3.tgz", - "integrity": "sha512-w8/4x1SGGzc+tO97TASLja6SLd3fRIK2tLVcV2Gx4IB21hE19atll5Cq9o3d0ZmAYC/8aw0ipieTSiekAea4SQ==", - "peer": true, - "requires": { - "@types/pbkdf2": "^3.0.0", - "@types/secp256k1": "^4.0.1", - "blakejs": "^1.1.0", - "browserify-aes": "^1.2.0", - "bs58check": "^2.1.2", - "create-hash": "^1.2.0", - "create-hmac": "^1.1.7", - "hash.js": "^1.1.7", - "keccak": "^3.0.0", - "pbkdf2": "^3.0.17", - "randombytes": "^2.1.0", - "safe-buffer": "^5.1.2", - "scrypt-js": "^3.0.0", - "secp256k1": "^4.0.1", - "setimmediate": "^1.0.5" - } - }, - "lru-cache": { - "version": "5.1.1", - "resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-5.1.1.tgz", - "integrity": "sha512-KpNARQA3Iwv+jTA0utUVVbrh+Jlrr1Fv0e56GGzAFOXN7dk/FviaDW8LHmK52DlcH4WP2n6gI8vN1aesBFgo9w==", - "peer": true, - "requires": { - "yallist": "^3.0.2" - } - }, - "yallist": { - "version": "3.1.1", - "resolved": "https://registry.npmjs.org/yallist/-/yallist-3.1.1.tgz", - "integrity": "sha512-a4UGQaWPH59mOXUYnAG2ewncQS4i4F43Tv3JoAM+s2VDAmS9NsK8GpDMLrCHPksFT7h3K6TOoUNn2pb7RoXx4g==", - "peer": true - } - } - }, - "@nomicfoundation/ethereumjs-common": { - "version": "4.0.1", - "resolved": "https://registry.npmjs.org/@nomicfoundation/ethereumjs-common/-/ethereumjs-common-4.0.1.tgz", - "integrity": "sha512-OBErlkfp54GpeiE06brBW/TTbtbuBJV5YI5Nz/aB2evTDo+KawyEzPjBlSr84z/8MFfj8wS2wxzQX1o32cev5g==", - "peer": true, - "requires": { - "@nomicfoundation/ethereumjs-util": "9.0.1", - "crc-32": "^1.2.0" - } - }, - "@nomicfoundation/ethereumjs-ethash": { - "version": "3.0.1", - "resolved": "https://registry.npmjs.org/@nomicfoundation/ethereumjs-ethash/-/ethereumjs-ethash-3.0.1.tgz", - "integrity": "sha512-KDjGIB5igzWOp8Ik5I6QiRH5DH+XgILlplsHR7TEuWANZA759G6krQ6o8bvj+tRUz08YygMQu/sGd9mJ1DYT8w==", - "peer": true, - "requires": { - "@nomicfoundation/ethereumjs-block": "5.0.1", - "@nomicfoundation/ethereumjs-rlp": "5.0.1", - "@nomicfoundation/ethereumjs-util": "9.0.1", - "abstract-level": "^1.0.3", - "bigint-crypto-utils": "^3.0.23", - "ethereum-cryptography": "0.1.3" - }, - "dependencies": { - "ethereum-cryptography": { - "version": "0.1.3", - "resolved": "https://registry.npmjs.org/ethereum-cryptography/-/ethereum-cryptography-0.1.3.tgz", - "integrity": "sha512-w8/4x1SGGzc+tO97TASLja6SLd3fRIK2tLVcV2Gx4IB21hE19atll5Cq9o3d0ZmAYC/8aw0ipieTSiekAea4SQ==", - "peer": true, - "requires": { - "@types/pbkdf2": "^3.0.0", - "@types/secp256k1": "^4.0.1", - "blakejs": "^1.1.0", - "browserify-aes": "^1.2.0", - "bs58check": "^2.1.2", - "create-hash": "^1.2.0", - "create-hmac": "^1.1.7", - "hash.js": "^1.1.7", - "keccak": "^3.0.0", - "pbkdf2": "^3.0.17", - "randombytes": "^2.1.0", - "safe-buffer": "^5.1.2", - "scrypt-js": "^3.0.0", - "secp256k1": "^4.0.1", - "setimmediate": "^1.0.5" - } - } - } - }, - "@nomicfoundation/ethereumjs-evm": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/@nomicfoundation/ethereumjs-evm/-/ethereumjs-evm-2.0.1.tgz", - "integrity": "sha512-oL8vJcnk0Bx/onl+TgQOQ1t/534GKFaEG17fZmwtPFeH8S5soiBYPCLUrvANOl4sCp9elYxIMzIiTtMtNNN8EQ==", - "peer": true, - "requires": { - "@ethersproject/providers": "^5.7.1", - "@nomicfoundation/ethereumjs-common": "4.0.1", - "@nomicfoundation/ethereumjs-tx": "5.0.1", - "@nomicfoundation/ethereumjs-util": "9.0.1", - "debug": "^4.3.3", - "ethereum-cryptography": "0.1.3", - "mcl-wasm": "^0.7.1", - "rustbn.js": "~0.2.0" - }, - "dependencies": { - "ethereum-cryptography": { - "version": "0.1.3", - "resolved": "https://registry.npmjs.org/ethereum-cryptography/-/ethereum-cryptography-0.1.3.tgz", - "integrity": "sha512-w8/4x1SGGzc+tO97TASLja6SLd3fRIK2tLVcV2Gx4IB21hE19atll5Cq9o3d0ZmAYC/8aw0ipieTSiekAea4SQ==", - "peer": true, - "requires": { - "@types/pbkdf2": "^3.0.0", - "@types/secp256k1": "^4.0.1", - "blakejs": "^1.1.0", - "browserify-aes": "^1.2.0", - "bs58check": "^2.1.2", - "create-hash": "^1.2.0", - "create-hmac": "^1.1.7", - "hash.js": "^1.1.7", - "keccak": "^3.0.0", - "pbkdf2": "^3.0.17", - "randombytes": "^2.1.0", - "safe-buffer": "^5.1.2", - "scrypt-js": "^3.0.0", - "secp256k1": "^4.0.1", - "setimmediate": "^1.0.5" - } - } - } - }, - "@nomicfoundation/ethereumjs-rlp": { - "version": "5.0.1", - "resolved": "https://registry.npmjs.org/@nomicfoundation/ethereumjs-rlp/-/ethereumjs-rlp-5.0.1.tgz", - "integrity": "sha512-xtxrMGa8kP4zF5ApBQBtjlSbN5E2HI8m8FYgVSYAnO6ssUoY5pVPGy2H8+xdf/bmMa22Ce8nWMH3aEW8CcqMeQ==", - "peer": true - }, - "@nomicfoundation/ethereumjs-statemanager": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/@nomicfoundation/ethereumjs-statemanager/-/ethereumjs-statemanager-2.0.1.tgz", - "integrity": "sha512-B5ApMOnlruVOR7gisBaYwFX+L/AP7i/2oAahatssjPIBVDF6wTX1K7Qpa39E/nzsH8iYuL3krkYeUFIdO3EMUQ==", - "peer": true, - "requires": { - "@nomicfoundation/ethereumjs-common": "4.0.1", - "@nomicfoundation/ethereumjs-rlp": "5.0.1", - "debug": "^4.3.3", - "ethereum-cryptography": "0.1.3", - "ethers": "^5.7.1", - "js-sdsl": "^4.1.4" - }, - "dependencies": { - "ethereum-cryptography": { - "version": "0.1.3", - "resolved": "https://registry.npmjs.org/ethereum-cryptography/-/ethereum-cryptography-0.1.3.tgz", - "integrity": "sha512-w8/4x1SGGzc+tO97TASLja6SLd3fRIK2tLVcV2Gx4IB21hE19atll5Cq9o3d0ZmAYC/8aw0ipieTSiekAea4SQ==", - "peer": true, - "requires": { - "@types/pbkdf2": "^3.0.0", - "@types/secp256k1": "^4.0.1", - "blakejs": "^1.1.0", - "browserify-aes": "^1.2.0", - "bs58check": "^2.1.2", - "create-hash": "^1.2.0", - "create-hmac": "^1.1.7", - "hash.js": "^1.1.7", - "keccak": "^3.0.0", - "pbkdf2": "^3.0.17", - "randombytes": "^2.1.0", - "safe-buffer": "^5.1.2", - "scrypt-js": "^3.0.0", - "secp256k1": "^4.0.1", - "setimmediate": "^1.0.5" - } - } - } - }, - "@nomicfoundation/ethereumjs-trie": { - "version": "6.0.1", - "resolved": "https://registry.npmjs.org/@nomicfoundation/ethereumjs-trie/-/ethereumjs-trie-6.0.1.tgz", - "integrity": "sha512-A64It/IMpDVODzCgxDgAAla8jNjNtsoQZIzZUfIV5AY6Coi4nvn7+VReBn5itlxMiL2yaTlQr9TRWp3CSI6VoA==", - "peer": true, - "requires": { - "@nomicfoundation/ethereumjs-rlp": "5.0.1", - "@nomicfoundation/ethereumjs-util": "9.0.1", - "@types/readable-stream": "^2.3.13", - "ethereum-cryptography": "0.1.3", - "readable-stream": "^3.6.0" - }, - "dependencies": { - "ethereum-cryptography": { - "version": "0.1.3", - "resolved": "https://registry.npmjs.org/ethereum-cryptography/-/ethereum-cryptography-0.1.3.tgz", - "integrity": "sha512-w8/4x1SGGzc+tO97TASLja6SLd3fRIK2tLVcV2Gx4IB21hE19atll5Cq9o3d0ZmAYC/8aw0ipieTSiekAea4SQ==", - "peer": true, - "requires": { - "@types/pbkdf2": "^3.0.0", - "@types/secp256k1": "^4.0.1", - "blakejs": "^1.1.0", - "browserify-aes": "^1.2.0", - "bs58check": "^2.1.2", - "create-hash": "^1.2.0", - "create-hmac": "^1.1.7", - "hash.js": "^1.1.7", - "keccak": "^3.0.0", - "pbkdf2": "^3.0.17", - "randombytes": "^2.1.0", - "safe-buffer": "^5.1.2", - "scrypt-js": "^3.0.0", - "secp256k1": "^4.0.1", - "setimmediate": "^1.0.5" - } - } - } - }, - "@nomicfoundation/ethereumjs-tx": { - "version": "5.0.1", - "resolved": "https://registry.npmjs.org/@nomicfoundation/ethereumjs-tx/-/ethereumjs-tx-5.0.1.tgz", - "integrity": "sha512-0HwxUF2u2hrsIM1fsasjXvlbDOq1ZHFV2dd1yGq8CA+MEYhaxZr8OTScpVkkxqMwBcc5y83FyPl0J9MZn3kY0w==", - "peer": true, - "requires": { - "@chainsafe/ssz": "^0.9.2", - "@ethersproject/providers": "^5.7.2", - "@nomicfoundation/ethereumjs-common": "4.0.1", - "@nomicfoundation/ethereumjs-rlp": "5.0.1", - "@nomicfoundation/ethereumjs-util": "9.0.1", - "ethereum-cryptography": "0.1.3" - }, - "dependencies": { - "ethereum-cryptography": { - "version": "0.1.3", - "resolved": "https://registry.npmjs.org/ethereum-cryptography/-/ethereum-cryptography-0.1.3.tgz", - "integrity": "sha512-w8/4x1SGGzc+tO97TASLja6SLd3fRIK2tLVcV2Gx4IB21hE19atll5Cq9o3d0ZmAYC/8aw0ipieTSiekAea4SQ==", - "peer": true, - "requires": { - "@types/pbkdf2": "^3.0.0", - "@types/secp256k1": "^4.0.1", - "blakejs": "^1.1.0", - "browserify-aes": "^1.2.0", - "bs58check": "^2.1.2", - "create-hash": "^1.2.0", - "create-hmac": "^1.1.7", - "hash.js": "^1.1.7", - "keccak": "^3.0.0", - "pbkdf2": "^3.0.17", - "randombytes": "^2.1.0", - "safe-buffer": "^5.1.2", - "scrypt-js": "^3.0.0", - "secp256k1": "^4.0.1", - "setimmediate": "^1.0.5" - } - } - } - }, - "@nomicfoundation/ethereumjs-util": { - "version": "9.0.1", - "resolved": "https://registry.npmjs.org/@nomicfoundation/ethereumjs-util/-/ethereumjs-util-9.0.1.tgz", - "integrity": "sha512-TwbhOWQ8QoSCFhV/DDfSmyfFIHjPjFBj957219+V3jTZYZ2rf9PmDtNOeZWAE3p3vlp8xb02XGpd0v6nTUPbsA==", - "peer": true, - "requires": { - "@chainsafe/ssz": "^0.10.0", - "@nomicfoundation/ethereumjs-rlp": "5.0.1", - "ethereum-cryptography": "0.1.3" - }, - "dependencies": { - "@chainsafe/persistent-merkle-tree": { - "version": "0.5.0", - "resolved": "https://registry.npmjs.org/@chainsafe/persistent-merkle-tree/-/persistent-merkle-tree-0.5.0.tgz", - "integrity": "sha512-l0V1b5clxA3iwQLXP40zYjyZYospQLZXzBVIhhr9kDg/1qHZfzzHw0jj4VPBijfYCArZDlPkRi1wZaV2POKeuw==", - "peer": true, - "requires": { - "@chainsafe/as-sha256": "^0.3.1" - } - }, - "@chainsafe/ssz": { - "version": "0.10.2", - "resolved": "https://registry.npmjs.org/@chainsafe/ssz/-/ssz-0.10.2.tgz", - "integrity": "sha512-/NL3Lh8K+0q7A3LsiFq09YXS9fPE+ead2rr7vM2QK8PLzrNsw3uqrif9bpRX5UxgeRjM+vYi+boCM3+GM4ovXg==", - "peer": true, - "requires": { - "@chainsafe/as-sha256": "^0.3.1", - "@chainsafe/persistent-merkle-tree": "^0.5.0" - } - }, - "ethereum-cryptography": { - "version": "0.1.3", - "resolved": "https://registry.npmjs.org/ethereum-cryptography/-/ethereum-cryptography-0.1.3.tgz", - "integrity": "sha512-w8/4x1SGGzc+tO97TASLja6SLd3fRIK2tLVcV2Gx4IB21hE19atll5Cq9o3d0ZmAYC/8aw0ipieTSiekAea4SQ==", - "peer": true, - "requires": { - "@types/pbkdf2": "^3.0.0", - "@types/secp256k1": "^4.0.1", - "blakejs": "^1.1.0", - "browserify-aes": "^1.2.0", - "bs58check": "^2.1.2", - "create-hash": "^1.2.0", - "create-hmac": "^1.1.7", - "hash.js": "^1.1.7", - "keccak": "^3.0.0", - "pbkdf2": "^3.0.17", - "randombytes": "^2.1.0", - "safe-buffer": "^5.1.2", - "scrypt-js": "^3.0.0", - "secp256k1": "^4.0.1", - "setimmediate": "^1.0.5" - } - } - } - }, - "@nomicfoundation/ethereumjs-vm": { - "version": "7.0.1", - "resolved": "https://registry.npmjs.org/@nomicfoundation/ethereumjs-vm/-/ethereumjs-vm-7.0.1.tgz", - "integrity": "sha512-rArhyn0jPsS/D+ApFsz3yVJMQ29+pVzNZ0VJgkzAZ+7FqXSRtThl1C1prhmlVr3YNUlfpZ69Ak+RUT4g7VoOuQ==", - "peer": true, - "requires": { - "@nomicfoundation/ethereumjs-block": "5.0.1", - "@nomicfoundation/ethereumjs-blockchain": "7.0.1", - "@nomicfoundation/ethereumjs-common": "4.0.1", - "@nomicfoundation/ethereumjs-evm": "2.0.1", - "@nomicfoundation/ethereumjs-rlp": "5.0.1", - "@nomicfoundation/ethereumjs-statemanager": "2.0.1", - "@nomicfoundation/ethereumjs-trie": "6.0.1", - "@nomicfoundation/ethereumjs-tx": "5.0.1", - "@nomicfoundation/ethereumjs-util": "9.0.1", - "debug": "^4.3.3", - "ethereum-cryptography": "0.1.3", - "mcl-wasm": "^0.7.1", - "rustbn.js": "~0.2.0" - }, - "dependencies": { - "ethereum-cryptography": { - "version": "0.1.3", - "resolved": "https://registry.npmjs.org/ethereum-cryptography/-/ethereum-cryptography-0.1.3.tgz", - "integrity": "sha512-w8/4x1SGGzc+tO97TASLja6SLd3fRIK2tLVcV2Gx4IB21hE19atll5Cq9o3d0ZmAYC/8aw0ipieTSiekAea4SQ==", - "peer": true, - "requires": { - "@types/pbkdf2": "^3.0.0", - "@types/secp256k1": "^4.0.1", - "blakejs": "^1.1.0", - "browserify-aes": "^1.2.0", - "bs58check": "^2.1.2", - "create-hash": "^1.2.0", - "create-hmac": "^1.1.7", - "hash.js": "^1.1.7", - "keccak": "^3.0.0", - "pbkdf2": "^3.0.17", - "randombytes": "^2.1.0", - "safe-buffer": "^5.1.2", - "scrypt-js": "^3.0.0", - "secp256k1": "^4.0.1", - "setimmediate": "^1.0.5" - } - } - } - }, - "@nomicfoundation/solidity-analyzer": { - "version": "0.1.1", - "resolved": "https://registry.npmjs.org/@nomicfoundation/solidity-analyzer/-/solidity-analyzer-0.1.1.tgz", - "integrity": "sha512-1LMtXj1puAxyFusBgUIy5pZk3073cNXYnXUpuNKFghHbIit/xZgbk0AokpUADbNm3gyD6bFWl3LRFh3dhVdREg==", - "peer": true, - "requires": { - "@nomicfoundation/solidity-analyzer-darwin-arm64": "0.1.1", - "@nomicfoundation/solidity-analyzer-darwin-x64": "0.1.1", - "@nomicfoundation/solidity-analyzer-freebsd-x64": "0.1.1", - "@nomicfoundation/solidity-analyzer-linux-arm64-gnu": "0.1.1", - "@nomicfoundation/solidity-analyzer-linux-arm64-musl": "0.1.1", - "@nomicfoundation/solidity-analyzer-linux-x64-gnu": "0.1.1", - "@nomicfoundation/solidity-analyzer-linux-x64-musl": "0.1.1", - "@nomicfoundation/solidity-analyzer-win32-arm64-msvc": "0.1.1", - "@nomicfoundation/solidity-analyzer-win32-ia32-msvc": "0.1.1", - "@nomicfoundation/solidity-analyzer-win32-x64-msvc": "0.1.1" - } - }, - "@nomicfoundation/solidity-analyzer-darwin-arm64": { - "version": "0.1.1", - "resolved": "https://registry.npmjs.org/@nomicfoundation/solidity-analyzer-darwin-arm64/-/solidity-analyzer-darwin-arm64-0.1.1.tgz", - "integrity": "sha512-KcTodaQw8ivDZyF+D76FokN/HdpgGpfjc/gFCImdLUyqB6eSWVaZPazMbeAjmfhx3R0zm/NYVzxwAokFKgrc0w==", - "optional": true, - "peer": true - }, - "@nomicfoundation/solidity-analyzer-darwin-x64": { - "version": "0.1.1", - "resolved": "https://registry.npmjs.org/@nomicfoundation/solidity-analyzer-darwin-x64/-/solidity-analyzer-darwin-x64-0.1.1.tgz", - "integrity": "sha512-XhQG4BaJE6cIbjAVtzGOGbK3sn1BO9W29uhk9J8y8fZF1DYz0Doj8QDMfpMu+A6TjPDs61lbsmeYodIDnfveSA==", - "optional": true, - "peer": true - }, - "@nomicfoundation/solidity-analyzer-freebsd-x64": { - "version": "0.1.1", - "resolved": "https://registry.npmjs.org/@nomicfoundation/solidity-analyzer-freebsd-x64/-/solidity-analyzer-freebsd-x64-0.1.1.tgz", - "integrity": "sha512-GHF1VKRdHW3G8CndkwdaeLkVBi5A9u2jwtlS7SLhBc8b5U/GcoL39Q+1CSO3hYqePNP+eV5YI7Zgm0ea6kMHoA==", - "optional": true, - "peer": true - }, - "@nomicfoundation/solidity-analyzer-linux-arm64-gnu": { - "version": "0.1.1", - "resolved": "https://registry.npmjs.org/@nomicfoundation/solidity-analyzer-linux-arm64-gnu/-/solidity-analyzer-linux-arm64-gnu-0.1.1.tgz", - "integrity": "sha512-g4Cv2fO37ZsUENQ2vwPnZc2zRenHyAxHcyBjKcjaSmmkKrFr64yvzeNO8S3GBFCo90rfochLs99wFVGT/0owpg==", - "optional": true, - "peer": true - }, - "@nomicfoundation/solidity-analyzer-linux-arm64-musl": { - "version": "0.1.1", - "resolved": "https://registry.npmjs.org/@nomicfoundation/solidity-analyzer-linux-arm64-musl/-/solidity-analyzer-linux-arm64-musl-0.1.1.tgz", - "integrity": "sha512-WJ3CE5Oek25OGE3WwzK7oaopY8xMw9Lhb0mlYuJl/maZVo+WtP36XoQTb7bW/i8aAdHW5Z+BqrHMux23pvxG3w==", - "optional": true, - "peer": true - }, - "@nomicfoundation/solidity-analyzer-linux-x64-gnu": { - "version": "0.1.1", - "resolved": "https://registry.npmjs.org/@nomicfoundation/solidity-analyzer-linux-x64-gnu/-/solidity-analyzer-linux-x64-gnu-0.1.1.tgz", - "integrity": "sha512-5WN7leSr5fkUBBjE4f3wKENUy9HQStu7HmWqbtknfXkkil+eNWiBV275IOlpXku7v3uLsXTOKpnnGHJYI2qsdA==", - "optional": true, - "peer": true - }, - "@nomicfoundation/solidity-analyzer-linux-x64-musl": { - "version": "0.1.1", - "resolved": "https://registry.npmjs.org/@nomicfoundation/solidity-analyzer-linux-x64-musl/-/solidity-analyzer-linux-x64-musl-0.1.1.tgz", - "integrity": "sha512-KdYMkJOq0SYPQMmErv/63CwGwMm5XHenEna9X9aB8mQmhDBrYrlAOSsIPgFCUSL0hjxE3xHP65/EPXR/InD2+w==", - "optional": true, - "peer": true - }, - "@nomicfoundation/solidity-analyzer-win32-arm64-msvc": { - "version": "0.1.1", - "resolved": "https://registry.npmjs.org/@nomicfoundation/solidity-analyzer-win32-arm64-msvc/-/solidity-analyzer-win32-arm64-msvc-0.1.1.tgz", - "integrity": "sha512-VFZASBfl4qiBYwW5xeY20exWhmv6ww9sWu/krWSesv3q5hA0o1JuzmPHR4LPN6SUZj5vcqci0O6JOL8BPw+APg==", - "optional": true, - "peer": true - }, - "@nomicfoundation/solidity-analyzer-win32-ia32-msvc": { - "version": "0.1.1", - "resolved": "https://registry.npmjs.org/@nomicfoundation/solidity-analyzer-win32-ia32-msvc/-/solidity-analyzer-win32-ia32-msvc-0.1.1.tgz", - "integrity": "sha512-JnFkYuyCSA70j6Si6cS1A9Gh1aHTEb8kOTBApp/c7NRTFGNMH8eaInKlyuuiIbvYFhlXW4LicqyYuWNNq9hkpQ==", - "optional": true, - "peer": true - }, - "@nomicfoundation/solidity-analyzer-win32-x64-msvc": { - "version": "0.1.1", - "resolved": "https://registry.npmjs.org/@nomicfoundation/solidity-analyzer-win32-x64-msvc/-/solidity-analyzer-win32-x64-msvc-0.1.1.tgz", - "integrity": "sha512-HrVJr6+WjIXGnw3Q9u6KQcbZCtk0caVWhCdFADySvRyUxJ8PnzlaP+MhwNE8oyT8OZ6ejHBRrrgjSqDCFXGirw==", - "optional": true, - "peer": true - }, - "@openzeppelin/contracts": { - "version": "3.4.1-solc-0.7-2", - "resolved": "https://registry.npmjs.org/@openzeppelin/contracts/-/contracts-3.4.1-solc-0.7-2.tgz", - "integrity": "sha512-tAG9LWg8+M2CMu7hIsqHPaTyG4uDzjr6mhvH96LvOpLZZj6tgzTluBt+LsCf1/QaYrlis6pITvpIaIhE+iZB+Q==" - }, - "@pmmmwh/react-refresh-webpack-plugin": { - "version": "0.5.7", - "resolved": "https://registry.npmjs.org/@pmmmwh/react-refresh-webpack-plugin/-/react-refresh-webpack-plugin-0.5.7.tgz", - "integrity": "sha512-bcKCAzF0DV2IIROp9ZHkRJa6O4jy7NlnHdWL3GmcUxYWNjLXkK5kfELELwEfSP5hXPfVL/qOGMAROuMQb9GG8Q==", - "requires": { - "ansi-html-community": "^0.0.8", - "common-path-prefix": "^3.0.0", - "core-js-pure": "^3.8.1", - "error-stack-parser": "^2.0.6", - "find-up": "^5.0.0", - "html-entities": "^2.1.0", - "loader-utils": "^2.0.0", - "schema-utils": "^3.0.0", - "source-map": "^0.7.3" - } - }, - "@popperjs/core": { - "version": "2.11.5", - "resolved": "https://registry.npmjs.org/@popperjs/core/-/core-2.11.5.tgz", - "integrity": "sha512-9X2obfABZuDVLCgPK9aX0a/x4jaOEweTTWE2+9sr0Qqqevj2Uv5XorvusThmc9XGYpS9yI+fhh8RTafBtGposw==" - }, - "@reduxjs/toolkit": { - "version": "1.9.5", - "resolved": "https://registry.npmjs.org/@reduxjs/toolkit/-/toolkit-1.9.5.tgz", - "integrity": "sha512-Rt97jHmfTeaxL4swLRNPD/zV4OxTes4la07Xc4hetpUW/vc75t5m1ANyxG6ymnEQ2FsLQsoMlYB2vV1sO3m8tQ==", - "requires": { - "immer": "^9.0.21", - "redux": "^4.2.1", - "redux-thunk": "^2.4.2", - "reselect": "^4.1.8" - } - }, - "@remix-run/router": { - "version": "1.5.0", - "resolved": "https://registry.npmjs.org/@remix-run/router/-/router-1.5.0.tgz", - "integrity": "sha512-bkUDCp8o1MvFO+qxkODcbhSqRa6P2GXgrGZVpt0dCXNW2HCSCqYI0ZoAqEOSAjRWmmlKcYgFvN4B4S+zo/f8kg==" - }, - "@rollup/plugin-babel": { - "version": "5.3.1", - "resolved": "https://registry.npmjs.org/@rollup/plugin-babel/-/plugin-babel-5.3.1.tgz", - "integrity": "sha512-WFfdLWU/xVWKeRQnKmIAQULUI7Il0gZnBIH/ZFO069wYIfPu+8zrfp/KMW0atmELoRDq8FbiP3VCss9MhCut7Q==", - "requires": { - "@babel/helper-module-imports": "^7.10.4", - "@rollup/pluginutils": "^3.1.0" - } - }, - "@rollup/plugin-node-resolve": { - "version": "11.2.1", - "resolved": "https://registry.npmjs.org/@rollup/plugin-node-resolve/-/plugin-node-resolve-11.2.1.tgz", - "integrity": "sha512-yc2n43jcqVyGE2sqV5/YCmocy9ArjVAP/BeXyTtADTBBX6V0e5UMqwO8CdQ0kzjb6zu5P1qMzsScCMRvE9OlVg==", - "requires": { - "@rollup/pluginutils": "^3.1.0", - "@types/resolve": "1.17.1", - "builtin-modules": "^3.1.0", - "deepmerge": "^4.2.2", - "is-module": "^1.0.0", - "resolve": "^1.19.0" - } - }, - "@rollup/plugin-replace": { - "version": "2.4.2", - "resolved": "https://registry.npmjs.org/@rollup/plugin-replace/-/plugin-replace-2.4.2.tgz", - "integrity": "sha512-IGcu+cydlUMZ5En85jxHH4qj2hta/11BHq95iHEyb2sbgiN0eCdzvUcHw5gt9pBL5lTi4JDYJ1acCoMGpTvEZg==", - "requires": { - "@rollup/pluginutils": "^3.1.0", - "magic-string": "^0.25.7" - } - }, - "@rollup/pluginutils": { - "version": "3.1.0", - "resolved": "https://registry.npmjs.org/@rollup/pluginutils/-/pluginutils-3.1.0.tgz", - "integrity": "sha512-GksZ6pr6TpIjHm8h9lSQ8pi8BE9VeubNT0OMJ3B5uZJ8pz73NPiqOtCog/x2/QzM1ENChPKxMDhiQuRHsqc+lg==", - "requires": { - "@types/estree": "0.0.39", - "estree-walker": "^1.0.1", - "picomatch": "^2.2.2" - }, - "dependencies": { - "@types/estree": { - "version": "0.0.39", - "resolved": "https://registry.npmjs.org/@types/estree/-/estree-0.0.39.tgz", - "integrity": "sha512-EYNwp3bU+98cpU4lAWYYL7Zz+2gryWH1qbdDTidVd6hkiR6weksdbMadyXKXNPEkQFhXM+hVO9ZygomHXp+AIw==" - } - } - }, - "@rushstack/eslint-patch": { - "version": "1.1.4", - "resolved": "https://registry.npmjs.org/@rushstack/eslint-patch/-/eslint-patch-1.1.4.tgz", - "integrity": "sha512-LwzQKA4vzIct1zNZzBmRKI9QuNpLgTQMEjsQLf3BXuGYb3QPTP4Yjf6mkdX+X1mYttZ808QpOwAzZjv28kq7DA==" - }, - "@scure/base": { - "version": "1.1.1", - "resolved": "https://registry.npmjs.org/@scure/base/-/base-1.1.1.tgz", - "integrity": "sha512-ZxOhsSyxYwLJj3pLZCefNitxsj093tb2vq90mp2txoYeBqbcjDjqFhyM8eUjq/uFm6zJ+mUuqxlS2FkuSY1MTA==" - }, - "@scure/bip32": { - "version": "1.1.0", - "resolved": "https://registry.npmjs.org/@scure/bip32/-/bip32-1.1.0.tgz", - "integrity": "sha512-ftTW3kKX54YXLCxH6BB7oEEoJfoE2pIgw7MINKAs5PsS6nqKPuKk1haTF/EuHmYqG330t5GSrdmtRuHaY1a62Q==", - "requires": { - "@noble/hashes": "~1.1.1", - "@noble/secp256k1": "~1.6.0", - "@scure/base": "~1.1.0" - } - }, - "@scure/bip39": { - "version": "1.1.0", - "resolved": "https://registry.npmjs.org/@scure/bip39/-/bip39-1.1.0.tgz", - "integrity": "sha512-pwrPOS16VeTKg98dYXQyIjJEcWfz7/1YJIwxUEPFfQPtc86Ym/1sVgQ2RLoD43AazMk2l/unK4ITySSpW2+82w==", - "requires": { - "@noble/hashes": "~1.1.1", - "@scure/base": "~1.1.0" - } - }, - "@sentry/core": { - "version": "5.30.0", - "resolved": "https://registry.npmjs.org/@sentry/core/-/core-5.30.0.tgz", - "integrity": "sha512-TmfrII8w1PQZSZgPpUESqjB+jC6MvZJZdLtE/0hZ+SrnKhW3x5WlYLvTXZpcWePYBku7rl2wn1RZu6uT0qCTeg==", - "peer": true, - "requires": { - "@sentry/hub": "5.30.0", - "@sentry/minimal": "5.30.0", - "@sentry/types": "5.30.0", - "@sentry/utils": "5.30.0", - "tslib": "^1.9.3" - }, - "dependencies": { - "tslib": { - "version": "1.14.1", - "resolved": "https://registry.npmjs.org/tslib/-/tslib-1.14.1.tgz", - "integrity": "sha512-Xni35NKzjgMrwevysHTCArtLDpPvye8zV/0E4EyYn43P7/7qvQwPh9BGkHewbMulVntbigmcT7rdX3BNo9wRJg==", - "peer": true - } - } - }, - "@sentry/hub": { - "version": "5.30.0", - "resolved": "https://registry.npmjs.org/@sentry/hub/-/hub-5.30.0.tgz", - "integrity": "sha512-2tYrGnzb1gKz2EkMDQcfLrDTvmGcQPuWxLnJKXJvYTQDGLlEvi2tWz1VIHjunmOvJrB5aIQLhm+dcMRwFZDCqQ==", - "peer": true, - "requires": { - "@sentry/types": "5.30.0", - "@sentry/utils": "5.30.0", - "tslib": "^1.9.3" - }, - "dependencies": { - "tslib": { - "version": "1.14.1", - "resolved": "https://registry.npmjs.org/tslib/-/tslib-1.14.1.tgz", - "integrity": "sha512-Xni35NKzjgMrwevysHTCArtLDpPvye8zV/0E4EyYn43P7/7qvQwPh9BGkHewbMulVntbigmcT7rdX3BNo9wRJg==", - "peer": true - } - } - }, - "@sentry/minimal": { - "version": "5.30.0", - "resolved": "https://registry.npmjs.org/@sentry/minimal/-/minimal-5.30.0.tgz", - "integrity": "sha512-BwWb/owZKtkDX+Sc4zCSTNcvZUq7YcH3uAVlmh/gtR9rmUvbzAA3ewLuB3myi4wWRAMEtny6+J/FN/x+2wn9Xw==", - "peer": true, - "requires": { - "@sentry/hub": "5.30.0", - "@sentry/types": "5.30.0", - "tslib": "^1.9.3" - }, - "dependencies": { - "tslib": { - "version": "1.14.1", - "resolved": "https://registry.npmjs.org/tslib/-/tslib-1.14.1.tgz", - "integrity": "sha512-Xni35NKzjgMrwevysHTCArtLDpPvye8zV/0E4EyYn43P7/7qvQwPh9BGkHewbMulVntbigmcT7rdX3BNo9wRJg==", - "peer": true - } - } - }, - "@sentry/node": { - "version": "5.30.0", - "resolved": "https://registry.npmjs.org/@sentry/node/-/node-5.30.0.tgz", - "integrity": "sha512-Br5oyVBF0fZo6ZS9bxbJZG4ApAjRqAnqFFurMVJJdunNb80brh7a5Qva2kjhm+U6r9NJAB5OmDyPkA1Qnt+QVg==", - "peer": true, - "requires": { - "@sentry/core": "5.30.0", - "@sentry/hub": "5.30.0", - "@sentry/tracing": "5.30.0", - "@sentry/types": "5.30.0", - "@sentry/utils": "5.30.0", - "cookie": "^0.4.1", - "https-proxy-agent": "^5.0.0", - "lru_map": "^0.3.3", - "tslib": "^1.9.3" - }, - "dependencies": { - "cookie": { - "version": "0.4.2", - "resolved": "https://registry.npmjs.org/cookie/-/cookie-0.4.2.tgz", - "integrity": "sha512-aSWTXFzaKWkvHO1Ny/s+ePFpvKsPnjc551iI41v3ny/ow6tBG5Vd+FuqGNhh1LxOmVzOlGUriIlOaokOvhaStA==", - "peer": true - }, - "tslib": { - "version": "1.14.1", - "resolved": "https://registry.npmjs.org/tslib/-/tslib-1.14.1.tgz", - "integrity": "sha512-Xni35NKzjgMrwevysHTCArtLDpPvye8zV/0E4EyYn43P7/7qvQwPh9BGkHewbMulVntbigmcT7rdX3BNo9wRJg==", - "peer": true - } - } - }, - "@sentry/tracing": { - "version": "5.30.0", - "resolved": "https://registry.npmjs.org/@sentry/tracing/-/tracing-5.30.0.tgz", - "integrity": "sha512-dUFowCr0AIMwiLD7Fs314Mdzcug+gBVo/+NCMyDw8tFxJkwWAKl7Qa2OZxLQ0ZHjakcj1hNKfCQJ9rhyfOl4Aw==", - "peer": true, - "requires": { - "@sentry/hub": "5.30.0", - "@sentry/minimal": "5.30.0", - "@sentry/types": "5.30.0", - "@sentry/utils": "5.30.0", - "tslib": "^1.9.3" - }, - "dependencies": { - "tslib": { - "version": "1.14.1", - "resolved": "https://registry.npmjs.org/tslib/-/tslib-1.14.1.tgz", - "integrity": "sha512-Xni35NKzjgMrwevysHTCArtLDpPvye8zV/0E4EyYn43P7/7qvQwPh9BGkHewbMulVntbigmcT7rdX3BNo9wRJg==", - "peer": true - } - } - }, - "@sentry/types": { - "version": "5.30.0", - "resolved": "https://registry.npmjs.org/@sentry/types/-/types-5.30.0.tgz", - "integrity": "sha512-R8xOqlSTZ+htqrfteCWU5Nk0CDN5ApUTvrlvBuiH1DyP6czDZ4ktbZB0hAgBlVcK0U+qpD3ag3Tqqpa5Q67rPw==", - "peer": true - }, - "@sentry/utils": { - "version": "5.30.0", - "resolved": "https://registry.npmjs.org/@sentry/utils/-/utils-5.30.0.tgz", - "integrity": "sha512-zaYmoH0NWWtvnJjC9/CBseXMtKHm/tm40sz3YfJRxeQjyzRqNQPgivpd9R/oDJCYj999mzdW382p/qi2ypjLww==", - "peer": true, - "requires": { - "@sentry/types": "5.30.0", - "tslib": "^1.9.3" - }, - "dependencies": { - "tslib": { - "version": "1.14.1", - "resolved": "https://registry.npmjs.org/tslib/-/tslib-1.14.1.tgz", - "integrity": "sha512-Xni35NKzjgMrwevysHTCArtLDpPvye8zV/0E4EyYn43P7/7qvQwPh9BGkHewbMulVntbigmcT7rdX3BNo9wRJg==", - "peer": true - } - } - }, - "@sinclair/typebox": { - "version": "0.23.5", - "resolved": "https://registry.npmjs.org/@sinclair/typebox/-/typebox-0.23.5.tgz", - "integrity": "sha512-AFBVi/iT4g20DHoujvMH1aEDn8fGJh4xsRGCP6d8RpLPMqsNPvW01Jcn0QysXTsg++/xj25NmJsGyH9xug/wKg==" - }, - "@sindresorhus/is": { - "version": "4.6.0", - "resolved": "https://registry.npmjs.org/@sindresorhus/is/-/is-4.6.0.tgz", - "integrity": "sha512-t09vSN3MdfsyCHoFcTRCH/iUtG7OJ0CsjzB8cjAmKc/va/kIgeDI/TxsigdncE/4be734m0cvIYwNaV4i2XqAw==" - }, - "@sinonjs/commons": { - "version": "1.8.3", - "resolved": "https://registry.npmjs.org/@sinonjs/commons/-/commons-1.8.3.tgz", - "integrity": "sha512-xkNcLAn/wZaX14RPlwizcKicDk9G3F8m2nU3L7Ukm5zBgTwiT0wsoFAHx9Jq56fJA1z/7uKGtCRu16sOUCLIHQ==", - "requires": { - "type-detect": "4.0.8" - } - }, - "@sinonjs/fake-timers": { - "version": "8.1.0", - "resolved": "https://registry.npmjs.org/@sinonjs/fake-timers/-/fake-timers-8.1.0.tgz", - "integrity": "sha512-OAPJUAtgeINhh/TAlUID4QTs53Njm7xzddaVlEs/SXwgtiD1tW22zAB/W1wdqfrpmikgaWQ9Fw6Ws+hsiRm5Vg==", - "requires": { - "@sinonjs/commons": "^1.7.0" - } - }, - "@styled-system/background": { - "version": "5.1.2", - "resolved": "https://registry.npmjs.org/@styled-system/background/-/background-5.1.2.tgz", - "integrity": "sha512-jtwH2C/U6ssuGSvwTN3ri/IyjdHb8W9X/g8Y0JLcrH02G+BW3OS8kZdHphF1/YyRklnrKrBT2ngwGUK6aqqV3A==", - "requires": { - "@styled-system/core": "^5.1.2" - } - }, - "@styled-system/border": { - "version": "5.1.5", - "resolved": "https://registry.npmjs.org/@styled-system/border/-/border-5.1.5.tgz", - "integrity": "sha512-JvddhNrnhGigtzWRCVuAHepniyVi6hBlimxWDVAdcTuk7aRn9BYJUwfHslURtwYFsF5FoEs8Zmr1oZq2M1AP0A==", - "requires": { - "@styled-system/core": "^5.1.2" - } - }, - "@styled-system/color": { - "version": "5.1.2", - "resolved": "https://registry.npmjs.org/@styled-system/color/-/color-5.1.2.tgz", - "integrity": "sha512-1kCkeKDZkt4GYkuFNKc7vJQMcOmTl3bJY3YBUs7fCNM6mMYJeT1pViQ2LwBSBJytj3AB0o4IdLBoepgSgGl5MA==", - "requires": { - "@styled-system/core": "^5.1.2" - } - }, - "@styled-system/core": { - "version": "5.1.2", - "resolved": "https://registry.npmjs.org/@styled-system/core/-/core-5.1.2.tgz", - "integrity": "sha512-XclBDdNIy7OPOsN4HBsawG2eiWfCcuFt6gxKn1x4QfMIgeO6TOlA2pZZ5GWZtIhCUqEPTgIBta6JXsGyCkLBYw==", - "requires": { - "object-assign": "^4.1.1" - } - }, - "@styled-system/css": { - "version": "5.1.5", - "resolved": "https://registry.npmjs.org/@styled-system/css/-/css-5.1.5.tgz", - "integrity": "sha512-XkORZdS5kypzcBotAMPBoeckDs9aSZVkvrAlq5K3xP8IMAUek+x2O4NtwoSgkYkWWzVBu6DGdFZLR790QWGG+A==" - }, - "@styled-system/flexbox": { - "version": "5.1.2", - "resolved": "https://registry.npmjs.org/@styled-system/flexbox/-/flexbox-5.1.2.tgz", - "integrity": "sha512-6hHV52+eUk654Y1J2v77B8iLeBNtc+SA3R4necsu2VVinSD7+XY5PCCEzBFaWs42dtOEDIa2lMrgL0YBC01mDQ==", - "requires": { - "@styled-system/core": "^5.1.2" - } - }, - "@styled-system/grid": { - "version": "5.1.2", - "resolved": "https://registry.npmjs.org/@styled-system/grid/-/grid-5.1.2.tgz", - "integrity": "sha512-K3YiV1KyHHzgdNuNlaw8oW2ktMuGga99o1e/NAfTEi5Zsa7JXxzwEnVSDSBdJC+z6R8WYTCYRQC6bkVFcvdTeg==", - "requires": { - "@styled-system/core": "^5.1.2" - } - }, - "@styled-system/layout": { - "version": "5.1.2", - "resolved": "https://registry.npmjs.org/@styled-system/layout/-/layout-5.1.2.tgz", - "integrity": "sha512-wUhkMBqSeacPFhoE9S6UF3fsMEKFv91gF4AdDWp0Aym1yeMPpqz9l9qS/6vjSsDPF7zOb5cOKC3tcKKOMuDCPw==", - "requires": { - "@styled-system/core": "^5.1.2" - } - }, - "@styled-system/position": { - "version": "5.1.2", - "resolved": "https://registry.npmjs.org/@styled-system/position/-/position-5.1.2.tgz", - "integrity": "sha512-60IZfMXEOOZe3l1mCu6sj/2NAyUmES2kR9Kzp7s2D3P4qKsZWxD1Se1+wJvevb+1TP+ZMkGPEYYXRyU8M1aF5A==", - "requires": { - "@styled-system/core": "^5.1.2" - } - }, - "@styled-system/shadow": { - "version": "5.1.2", - "resolved": "https://registry.npmjs.org/@styled-system/shadow/-/shadow-5.1.2.tgz", - "integrity": "sha512-wqniqYb7XuZM7K7C0d1Euxc4eGtqEe/lvM0WjuAFsQVImiq6KGT7s7is+0bNI8O4Dwg27jyu4Lfqo/oIQXNzAg==", - "requires": { - "@styled-system/core": "^5.1.2" - } - }, - "@styled-system/should-forward-prop": { - "version": "5.1.5", - "resolved": "https://registry.npmjs.org/@styled-system/should-forward-prop/-/should-forward-prop-5.1.5.tgz", - "integrity": "sha512-+rPRomgCGYnUIaFabDoOgpSDc4UUJ1KsmlnzcEp0tu5lFrBQKgZclSo18Z1URhaZm7a6agGtS5Xif7tuC2s52Q==", - "requires": { - "@emotion/is-prop-valid": "^0.8.1", - "@emotion/memoize": "^0.7.1", - "styled-system": "^5.1.5" - }, - "dependencies": { - "@emotion/is-prop-valid": { - "version": "0.8.8", - "resolved": "https://registry.npmjs.org/@emotion/is-prop-valid/-/is-prop-valid-0.8.8.tgz", - "integrity": "sha512-u5WtneEAr5IDG2Wv65yhunPSMLIpuKsbuOktRojfrEiEvRyC85LgPMZI63cr7NUqT8ZIGdSVg8ZKGxIug4lXcA==", - "requires": { - "@emotion/memoize": "0.7.4" - } - }, - "@emotion/memoize": { - "version": "0.7.4", - "resolved": "https://registry.npmjs.org/@emotion/memoize/-/memoize-0.7.4.tgz", - "integrity": "sha512-Ja/Vfqe3HpuzRsG1oBtWTHk2PGZ7GR+2Vz5iYGelAw8dx32K0y7PjVuxK6z1nMpZOqAFsRUPCkK1YjJ56qJlgw==" - } - } - }, - "@styled-system/space": { - "version": "5.1.2", - "resolved": "https://registry.npmjs.org/@styled-system/space/-/space-5.1.2.tgz", - "integrity": "sha512-+zzYpR8uvfhcAbaPXhH8QgDAV//flxqxSjHiS9cDFQQUSznXMQmxJegbhcdEF7/eNnJgHeIXv1jmny78kipgBA==", - "requires": { - "@styled-system/core": "^5.1.2" - } - }, - "@styled-system/typography": { - "version": "5.1.2", - "resolved": "https://registry.npmjs.org/@styled-system/typography/-/typography-5.1.2.tgz", - "integrity": "sha512-BxbVUnN8N7hJ4aaPOd7wEsudeT7CxarR+2hns8XCX1zp0DFfbWw4xYa/olA0oQaqx7F1hzDg+eRaGzAJbF+jOg==", - "requires": { - "@styled-system/core": "^5.1.2" - } - }, - "@styled-system/variant": { - "version": "5.1.5", - "resolved": "https://registry.npmjs.org/@styled-system/variant/-/variant-5.1.5.tgz", - "integrity": "sha512-Yn8hXAFoWIro8+Q5J8YJd/mP85Teiut3fsGVR9CAxwgNfIAiqlYxsk5iHU7VHJks/0KjL4ATSjmbtCDC/4l1qw==", - "requires": { - "@styled-system/core": "^5.1.2", - "@styled-system/css": "^5.1.5" - } - }, - "@surma/rollup-plugin-off-main-thread": { - "version": "2.2.3", - "resolved": "https://registry.npmjs.org/@surma/rollup-plugin-off-main-thread/-/rollup-plugin-off-main-thread-2.2.3.tgz", - "integrity": "sha512-lR8q/9W7hZpMWweNiAKU7NQerBnzQQLvi8qnTDU/fxItPhtZVMbPV3lbCwjhIlNBe9Bbr5V+KHshvWmVSG9cxQ==", - "requires": { - "ejs": "^3.1.6", - "json5": "^2.2.0", - "magic-string": "^0.25.0", - "string.prototype.matchall": "^4.0.6" - } - }, - "@svgr/babel-plugin-add-jsx-attribute": { - "version": "5.4.0", - "resolved": "https://registry.npmjs.org/@svgr/babel-plugin-add-jsx-attribute/-/babel-plugin-add-jsx-attribute-5.4.0.tgz", - "integrity": "sha512-ZFf2gs/8/6B8PnSofI0inYXr2SDNTDScPXhN7k5EqD4aZ3gi6u+rbmZHVB8IM3wDyx8ntKACZbtXSm7oZGRqVg==" - }, - "@svgr/babel-plugin-remove-jsx-attribute": { - "version": "5.4.0", - "resolved": "https://registry.npmjs.org/@svgr/babel-plugin-remove-jsx-attribute/-/babel-plugin-remove-jsx-attribute-5.4.0.tgz", - "integrity": "sha512-yaS4o2PgUtwLFGTKbsiAy6D0o3ugcUhWK0Z45umJ66EPWunAz9fuFw2gJuje6wqQvQWOTJvIahUwndOXb7QCPg==" - }, - "@svgr/babel-plugin-remove-jsx-empty-expression": { - "version": "5.0.1", - "resolved": "https://registry.npmjs.org/@svgr/babel-plugin-remove-jsx-empty-expression/-/babel-plugin-remove-jsx-empty-expression-5.0.1.tgz", - "integrity": "sha512-LA72+88A11ND/yFIMzyuLRSMJ+tRKeYKeQ+mR3DcAZ5I4h5CPWN9AHyUzJbWSYp/u2u0xhmgOe0+E41+GjEueA==" - }, - "@svgr/babel-plugin-replace-jsx-attribute-value": { - "version": "5.0.1", - "resolved": "https://registry.npmjs.org/@svgr/babel-plugin-replace-jsx-attribute-value/-/babel-plugin-replace-jsx-attribute-value-5.0.1.tgz", - "integrity": "sha512-PoiE6ZD2Eiy5mK+fjHqwGOS+IXX0wq/YDtNyIgOrc6ejFnxN4b13pRpiIPbtPwHEc+NT2KCjteAcq33/F1Y9KQ==" - }, - "@svgr/babel-plugin-svg-dynamic-title": { - "version": "5.4.0", - "resolved": "https://registry.npmjs.org/@svgr/babel-plugin-svg-dynamic-title/-/babel-plugin-svg-dynamic-title-5.4.0.tgz", - "integrity": "sha512-zSOZH8PdZOpuG1ZVx/cLVePB2ibo3WPpqo7gFIjLV9a0QsuQAzJiwwqmuEdTaW2pegyBE17Uu15mOgOcgabQZg==" - }, - "@svgr/babel-plugin-svg-em-dimensions": { - "version": "5.4.0", - "resolved": "https://registry.npmjs.org/@svgr/babel-plugin-svg-em-dimensions/-/babel-plugin-svg-em-dimensions-5.4.0.tgz", - "integrity": "sha512-cPzDbDA5oT/sPXDCUYoVXEmm3VIoAWAPT6mSPTJNbQaBNUuEKVKyGH93oDY4e42PYHRW67N5alJx/eEol20abw==" - }, - "@svgr/babel-plugin-transform-react-native-svg": { - "version": "5.4.0", - "resolved": "https://registry.npmjs.org/@svgr/babel-plugin-transform-react-native-svg/-/babel-plugin-transform-react-native-svg-5.4.0.tgz", - "integrity": "sha512-3eYP/SaopZ41GHwXma7Rmxcv9uRslRDTY1estspeB1w1ueZWd/tPlMfEOoccYpEMZU3jD4OU7YitnXcF5hLW2Q==" - }, - "@svgr/babel-plugin-transform-svg-component": { - "version": "5.5.0", - "resolved": "https://registry.npmjs.org/@svgr/babel-plugin-transform-svg-component/-/babel-plugin-transform-svg-component-5.5.0.tgz", - "integrity": "sha512-q4jSH1UUvbrsOtlo/tKcgSeiCHRSBdXoIoqX1pgcKK/aU3JD27wmMKwGtpB8qRYUYoyXvfGxUVKchLuR5pB3rQ==" - }, - "@svgr/babel-preset": { - "version": "5.5.0", - "resolved": "https://registry.npmjs.org/@svgr/babel-preset/-/babel-preset-5.5.0.tgz", - "integrity": "sha512-4FiXBjvQ+z2j7yASeGPEi8VD/5rrGQk4Xrq3EdJmoZgz/tpqChpo5hgXDvmEauwtvOc52q8ghhZK4Oy7qph4ig==", - "requires": { - "@svgr/babel-plugin-add-jsx-attribute": "^5.4.0", - "@svgr/babel-plugin-remove-jsx-attribute": "^5.4.0", - "@svgr/babel-plugin-remove-jsx-empty-expression": "^5.0.1", - "@svgr/babel-plugin-replace-jsx-attribute-value": "^5.0.1", - "@svgr/babel-plugin-svg-dynamic-title": "^5.4.0", - "@svgr/babel-plugin-svg-em-dimensions": "^5.4.0", - "@svgr/babel-plugin-transform-react-native-svg": "^5.4.0", - "@svgr/babel-plugin-transform-svg-component": "^5.5.0" - } - }, - "@svgr/core": { - "version": "5.5.0", - "resolved": "https://registry.npmjs.org/@svgr/core/-/core-5.5.0.tgz", - "integrity": "sha512-q52VOcsJPvV3jO1wkPtzTuKlvX7Y3xIcWRpCMtBF3MrteZJtBfQw/+u0B1BHy5ColpQc1/YVTrPEtSYIMNZlrQ==", - "requires": { - "@svgr/plugin-jsx": "^5.5.0", - "camelcase": "^6.2.0", - "cosmiconfig": "^7.0.0" - } - }, - "@svgr/hast-util-to-babel-ast": { - "version": "5.5.0", - "resolved": "https://registry.npmjs.org/@svgr/hast-util-to-babel-ast/-/hast-util-to-babel-ast-5.5.0.tgz", - "integrity": "sha512-cAaR/CAiZRB8GP32N+1jocovUtvlj0+e65TB50/6Lcime+EA49m/8l+P2ko+XPJ4dw3xaPS3jOL4F2X4KWxoeQ==", - "requires": { - "@babel/types": "^7.12.6" - } - }, - "@svgr/plugin-jsx": { - "version": "5.5.0", - "resolved": "https://registry.npmjs.org/@svgr/plugin-jsx/-/plugin-jsx-5.5.0.tgz", - "integrity": "sha512-V/wVh33j12hGh05IDg8GpIUXbjAPnTdPTKuP4VNLggnwaHMPNQNae2pRnyTAILWCQdz5GyMqtO488g7CKM8CBA==", - "requires": { - "@babel/core": "^7.12.3", - "@svgr/babel-preset": "^5.5.0", - "@svgr/hast-util-to-babel-ast": "^5.5.0", - "svg-parser": "^2.0.2" - } - }, - "@svgr/plugin-svgo": { - "version": "5.5.0", - "resolved": "https://registry.npmjs.org/@svgr/plugin-svgo/-/plugin-svgo-5.5.0.tgz", - "integrity": "sha512-r5swKk46GuQl4RrVejVwpeeJaydoxkdwkM1mBKOgJLBUJPGaLci6ylg/IjhrRsREKDkr4kbMWdgOtbXEh0fyLQ==", - "requires": { - "cosmiconfig": "^7.0.0", - "deepmerge": "^4.2.2", - "svgo": "^1.2.2" - } - }, - "@svgr/webpack": { - "version": "5.5.0", - "resolved": "https://registry.npmjs.org/@svgr/webpack/-/webpack-5.5.0.tgz", - "integrity": "sha512-DOBOK255wfQxguUta2INKkzPj6AIS6iafZYiYmHn6W3pHlycSRRlvWKCfLDG10fXfLWqE3DJHgRUOyJYmARa7g==", - "requires": { - "@babel/core": "^7.12.3", - "@babel/plugin-transform-react-constant-elements": "^7.12.1", - "@babel/preset-env": "^7.12.1", - "@babel/preset-react": "^7.12.5", - "@svgr/core": "^5.5.0", - "@svgr/plugin-jsx": "^5.5.0", - "@svgr/plugin-svgo": "^5.5.0", - "loader-utils": "^2.0.0" - } - }, - "@szmarczak/http-timer": { - "version": "5.0.1", - "resolved": "https://registry.npmjs.org/@szmarczak/http-timer/-/http-timer-5.0.1.tgz", - "integrity": "sha512-+PmQX0PiAYPMeVYe237LJAYvOMYW1j2rH5YROyS3b4CTVJum34HfRvKvAzozHAQG0TnHNdUfY9nCeUyRAs//cw==", - "requires": { - "defer-to-connect": "^2.0.1" - } - }, - "@testing-library/dom": { - "version": "8.14.0", - "resolved": "https://registry.npmjs.org/@testing-library/dom/-/dom-8.14.0.tgz", - "integrity": "sha512-m8FOdUo77iMTwVRCyzWcqxlEIk+GnopbrRI15a0EaLbpZSCinIVI4kSQzWhkShK83GogvEFJSsHF3Ws0z1vrqA==", - "requires": { - "@babel/code-frame": "^7.10.4", - "@babel/runtime": "^7.12.5", - "@types/aria-query": "^4.2.0", - "aria-query": "^5.0.0", - "chalk": "^4.1.0", - "dom-accessibility-api": "^0.5.9", - "lz-string": "^1.4.4", - "pretty-format": "^27.0.2" - }, - "dependencies": { - "ansi-styles": { - "version": "4.3.0", - "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", - "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", - "requires": { - "color-convert": "^2.0.1" - } - }, - "aria-query": { - "version": "5.0.0", - "resolved": "https://registry.npmjs.org/aria-query/-/aria-query-5.0.0.tgz", - "integrity": "sha512-V+SM7AbUwJ+EBnB8+DXs0hPZHO0W6pqBcc0dW90OwtVG02PswOu/teuARoLQjdDOH+t9pJgGnW5/Qmouf3gPJg==" - }, - "chalk": { - "version": "4.1.2", - "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz", - "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==", - "requires": { - "ansi-styles": "^4.1.0", - "supports-color": "^7.1.0" - } - }, - "color-convert": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz", - "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==", - "requires": { - "color-name": "~1.1.4" - } - }, - "color-name": { - "version": "1.1.4", - "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz", - "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==" - }, - "has-flag": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz", - "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==" - }, - "supports-color": { - "version": "7.2.0", - "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", - "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", - "requires": { - "has-flag": "^4.0.0" - } - } - } - }, - "@testing-library/jest-dom": { - "version": "5.16.4", - "resolved": "https://registry.npmjs.org/@testing-library/jest-dom/-/jest-dom-5.16.4.tgz", - "integrity": "sha512-Gy+IoFutbMQcky0k+bqqumXZ1cTGswLsFqmNLzNdSKkU9KGV2u9oXhukCbbJ9/LRPKiqwxEE8VpV/+YZlfkPUA==", - "requires": { - "@babel/runtime": "^7.9.2", - "@types/testing-library__jest-dom": "^5.9.1", - "aria-query": "^5.0.0", - "chalk": "^3.0.0", - "css": "^3.0.0", - "css.escape": "^1.5.1", - "dom-accessibility-api": "^0.5.6", - "lodash": "^4.17.15", - "redent": "^3.0.0" - }, - "dependencies": { - "ansi-styles": { - "version": "4.3.0", - "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", - "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", - "requires": { - "color-convert": "^2.0.1" - } - }, - "aria-query": { - "version": "5.0.0", - "resolved": "https://registry.npmjs.org/aria-query/-/aria-query-5.0.0.tgz", - "integrity": "sha512-V+SM7AbUwJ+EBnB8+DXs0hPZHO0W6pqBcc0dW90OwtVG02PswOu/teuARoLQjdDOH+t9pJgGnW5/Qmouf3gPJg==" - }, - "chalk": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/chalk/-/chalk-3.0.0.tgz", - "integrity": "sha512-4D3B6Wf41KOYRFdszmDqMCGq5VV/uMAB273JILmO+3jAlh8X4qDtdtgCR3fxtbLEMzSx22QdhnDcJvu2u1fVwg==", - "requires": { - "ansi-styles": "^4.1.0", - "supports-color": "^7.1.0" - } - }, - "color-convert": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz", - "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==", - "requires": { - "color-name": "~1.1.4" - } - }, - "color-name": { - "version": "1.1.4", - "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz", - "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==" - }, - "has-flag": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz", - "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==" - }, - "supports-color": { - "version": "7.2.0", - "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", - "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", - "requires": { - "has-flag": "^4.0.0" - } - } - } - }, - "@testing-library/react": { - "version": "13.3.0", - "resolved": "https://registry.npmjs.org/@testing-library/react/-/react-13.3.0.tgz", - "integrity": "sha512-DB79aA426+deFgGSjnf5grczDPiL4taK3hFaa+M5q7q20Kcve9eQottOG5kZ74KEr55v0tU2CQormSSDK87zYQ==", - "requires": { - "@babel/runtime": "^7.12.5", - "@testing-library/dom": "^8.5.0", - "@types/react-dom": "^18.0.0" - } - }, - "@testing-library/user-event": { - "version": "13.5.0", - "resolved": "https://registry.npmjs.org/@testing-library/user-event/-/user-event-13.5.0.tgz", - "integrity": "sha512-5Kwtbo3Y/NowpkbRuSepbyMFkZmHgD+vPzYB/RJ4oxt5Gj/avFFBYjhw27cqSVPVw/3a67NK1PbiIr9k4Gwmdg==", - "requires": { - "@babel/runtime": "^7.12.5" - } - }, - "@tokenizer/token": { - "version": "0.3.0", - "resolved": "https://registry.npmjs.org/@tokenizer/token/-/token-0.3.0.tgz", - "integrity": "sha512-OvjF+z51L3ov0OyAU0duzsYuvO01PH7x4t6DJx+guahgTnBHkhJdG7soQeTSFLWN3efnHyibZ4Z8l2EuWwJN3A==" - }, - "@tootallnate/once": { - "version": "1.1.2", - "resolved": "https://registry.npmjs.org/@tootallnate/once/-/once-1.1.2.tgz", - "integrity": "sha512-RbzJvlNzmRq5c3O09UipeuXno4tA1FE6ikOjxZK0tuxVv3412l64l5t1W5pj4+rJq9vpkm/kwiR07aZXnsKPxw==" - }, - "@trysound/sax": { - "version": "0.2.0", - "resolved": "https://registry.npmjs.org/@trysound/sax/-/sax-0.2.0.tgz", - "integrity": "sha512-L7z9BgrNEcYyUYtF+HaEfiS5ebkh9jXqbszz7pC0hRBPaatV0XjSD3+eHrpqFemQfgwiFF0QPIarnIihIDn7OA==" - }, - "@typechain/ethers-v5": { - "version": "11.0.0", - "resolved": "https://registry.npmjs.org/@typechain/ethers-v5/-/ethers-v5-11.0.0.tgz", - "integrity": "sha512-JDAvOjtzGuEQukgArIEseHznS2+v+vG3TpfODjNj4tu1kgmVu66G9gk7THOO04HJ5q+OJSLx9b46lc3GRGPIVA==", - "dev": true, - "requires": { - "lodash": "^4.17.15", - "ts-essentials": "^7.0.1" - } - }, - "@types/aria-query": { - "version": "4.2.2", - "resolved": "https://registry.npmjs.org/@types/aria-query/-/aria-query-4.2.2.tgz", - "integrity": "sha512-HnYpAE1Y6kRyKM/XkEuiRQhTHvkzMBurTHnpFLYLBGPIylZNPs9jJcuOOYWxPLJCSEtmZT0Y8rHDokKN7rRTig==" - }, - "@types/babel__core": { - "version": "7.1.19", - "resolved": "https://registry.npmjs.org/@types/babel__core/-/babel__core-7.1.19.tgz", - "integrity": "sha512-WEOTgRsbYkvA/KCsDwVEGkd7WAr1e3g31VHQ8zy5gul/V1qKullU/BU5I68X5v7V3GnB9eotmom4v5a5gjxorw==", - "requires": { - "@babel/parser": "^7.1.0", - "@babel/types": "^7.0.0", - "@types/babel__generator": "*", - "@types/babel__template": "*", - "@types/babel__traverse": "*" - } - }, - "@types/babel__generator": { - "version": "7.6.4", - "resolved": "https://registry.npmjs.org/@types/babel__generator/-/babel__generator-7.6.4.tgz", - "integrity": "sha512-tFkciB9j2K755yrTALxD44McOrk+gfpIpvC3sxHjRawj6PfnQxrse4Clq5y/Rq+G3mrBurMax/lG8Qn2t9mSsg==", - "requires": { - "@babel/types": "^7.0.0" - } - }, - "@types/babel__template": { - "version": "7.4.1", - "resolved": "https://registry.npmjs.org/@types/babel__template/-/babel__template-7.4.1.tgz", - "integrity": "sha512-azBFKemX6kMg5Io+/rdGT0dkGreboUVR0Cdm3fz9QJWpaQGJRQXl7C+6hOTCZcMll7KFyEQpgbYI2lHdsS4U7g==", - "requires": { - "@babel/parser": "^7.1.0", - "@babel/types": "^7.0.0" - } - }, - "@types/babel__traverse": { - "version": "7.17.1", - "resolved": "https://registry.npmjs.org/@types/babel__traverse/-/babel__traverse-7.17.1.tgz", - "integrity": "sha512-kVzjari1s2YVi77D3w1yuvohV2idweYXMCDzqBiVNN63TcDWrIlTVOYpqVrvbbyOE/IyzBoTKF0fdnLPEORFxA==", - "requires": { - "@babel/types": "^7.3.0" - } - }, - "@types/bn.js": { - "version": "5.1.1", - "resolved": "https://registry.npmjs.org/@types/bn.js/-/bn.js-5.1.1.tgz", - "integrity": "sha512-qNrYbZqMx0uJAfKnKclPh+dTwK33KfLHYqtyODwd5HnXOjnkhc4qgn3BrK6RWyGZm5+sIFE7Q7Vz6QQtJB7w7g==", - "requires": { - "@types/node": "*" - } - }, - "@types/body-parser": { - "version": "1.19.2", - "resolved": "https://registry.npmjs.org/@types/body-parser/-/body-parser-1.19.2.tgz", - "integrity": "sha512-ALYone6pm6QmwZoAgeyNksccT9Q4AWZQ6PvfwR37GT6r6FWUPguq6sUmNGSMV2Wr761oQoBxwGGa6DR5o1DC9g==", - "requires": { - "@types/connect": "*", - "@types/node": "*" - } - }, - "@types/bonjour": { - "version": "3.5.10", - "resolved": "https://registry.npmjs.org/@types/bonjour/-/bonjour-3.5.10.tgz", - "integrity": "sha512-p7ienRMiS41Nu2/igbJxxLDWrSZ0WxM8UQgCeO9KhoVF7cOVFkrKsiDr1EsJIla8vV3oEEjGcz11jc5yimhzZw==", - "requires": { - "@types/node": "*" - } - }, - "@types/cacheable-request": { - "version": "6.0.3", - "resolved": "https://registry.npmjs.org/@types/cacheable-request/-/cacheable-request-6.0.3.tgz", - "integrity": "sha512-IQ3EbTzGxIigb1I3qPZc1rWJnH0BmSKv5QYTalEwweFvyBDLSAe24zP0le/hyi7ecGfZVlIVAg4BZqb8WBwKqw==", - "requires": { - "@types/http-cache-semantics": "*", - "@types/keyv": "^3.1.4", - "@types/node": "*", - "@types/responselike": "^1.0.0" - } - }, - "@types/connect": { - "version": "3.4.35", - "resolved": "https://registry.npmjs.org/@types/connect/-/connect-3.4.35.tgz", - "integrity": "sha512-cdeYyv4KWoEgpBISTxWvqYsVy444DOqehiF3fM3ne10AmJ62RSyNkUnxMJXHQWRQQX2eR94m5y1IZyDwBjV9FQ==", - "requires": { - "@types/node": "*" - } - }, - "@types/connect-history-api-fallback": { - "version": "1.3.5", - "resolved": "https://registry.npmjs.org/@types/connect-history-api-fallback/-/connect-history-api-fallback-1.3.5.tgz", - "integrity": "sha512-h8QJa8xSb1WD4fpKBDcATDNGXghFj6/3GRWG6dhmRcu0RX1Ubasur2Uvx5aeEwlf0MwblEC2bMzzMQntxnw/Cw==", - "requires": { - "@types/express-serve-static-core": "*", - "@types/node": "*" - } - }, - "@types/eslint": { - "version": "8.4.3", - "resolved": "https://registry.npmjs.org/@types/eslint/-/eslint-8.4.3.tgz", - "integrity": "sha512-YP1S7YJRMPs+7KZKDb9G63n8YejIwW9BALq7a5j2+H4yl6iOv9CB29edho+cuFRrvmJbbaH2yiVChKLJVysDGw==", - "requires": { - "@types/estree": "*", - "@types/json-schema": "*" - } - }, - "@types/eslint-scope": { - "version": "3.7.3", - "resolved": "https://registry.npmjs.org/@types/eslint-scope/-/eslint-scope-3.7.3.tgz", - "integrity": "sha512-PB3ldyrcnAicT35TWPs5IcwKD8S333HMaa2VVv4+wdvebJkjWuW/xESoB8IwRcog8HYVYamb1g/R31Qv5Bx03g==", - "requires": { - "@types/eslint": "*", - "@types/estree": "*" - } - }, - "@types/estree": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/@types/estree/-/estree-1.0.1.tgz", - "integrity": "sha512-LG4opVs2ANWZ1TJoKc937iMmNstM/d0ae1vNbnBvBhqCSezgVUOzcLCqbI5elV8Vy6WKwKjaqR+zO9VKirBBCA==" - }, - "@types/express": { - "version": "4.17.13", - "resolved": "https://registry.npmjs.org/@types/express/-/express-4.17.13.tgz", - "integrity": "sha512-6bSZTPaTIACxn48l50SR+axgrqm6qXFIxrdAKaG6PaJk3+zuUr35hBlgT7vOmJcum+OEaIBLtHV/qloEAFITeA==", - "requires": { - "@types/body-parser": "*", - "@types/express-serve-static-core": "^4.17.18", - "@types/qs": "*", - "@types/serve-static": "*" - } - }, - "@types/express-serve-static-core": { - "version": "4.17.29", - "resolved": "https://registry.npmjs.org/@types/express-serve-static-core/-/express-serve-static-core-4.17.29.tgz", - "integrity": "sha512-uMd++6dMKS32EOuw1Uli3e3BPgdLIXmezcfHv7N4c1s3gkhikBplORPpMq3fuWkxncZN1reb16d5n8yhQ80x7Q==", - "requires": { - "@types/node": "*", - "@types/qs": "*", - "@types/range-parser": "*" - } - }, - "@types/graceful-fs": { - "version": "4.1.5", - "resolved": "https://registry.npmjs.org/@types/graceful-fs/-/graceful-fs-4.1.5.tgz", - "integrity": "sha512-anKkLmZZ+xm4p8JWBf4hElkM4XR+EZeA2M9BAkkTldmcyDY4mbdIJnRghDJH3Ov5ooY7/UAoENtmdMSkaAd7Cw==", - "requires": { - "@types/node": "*" - } - }, - "@types/hoist-non-react-statics": { - "version": "3.3.1", - "resolved": "https://registry.npmjs.org/@types/hoist-non-react-statics/-/hoist-non-react-statics-3.3.1.tgz", - "integrity": "sha512-iMIqiko6ooLrTh1joXodJK5X9xeEALT1kM5G3ZLhD3hszxBdIEd5C75U834D9mLcINgD4OyZf5uQXjkuYydWvA==", - "requires": { - "@types/react": "*", - "hoist-non-react-statics": "^3.3.0" - } - }, - "@types/html-minifier-terser": { - "version": "6.1.0", - "resolved": "https://registry.npmjs.org/@types/html-minifier-terser/-/html-minifier-terser-6.1.0.tgz", - "integrity": "sha512-oh/6byDPnL1zeNXFrDXFLyZjkr1MsBG667IM792caf1L2UPOOMf65NFzjUH/ltyfwjAGfs1rsX1eftK0jC/KIg==" - }, - "@types/http-cache-semantics": { - "version": "4.0.1", - "resolved": "https://registry.npmjs.org/@types/http-cache-semantics/-/http-cache-semantics-4.0.1.tgz", - "integrity": "sha512-SZs7ekbP8CN0txVG2xVRH6EgKmEm31BOxA07vkFaETzZz1xh+cbt8BcI0slpymvwhx5dlFnQG2rTlPVQn+iRPQ==" - }, - "@types/http-proxy": { - "version": "1.17.9", - "resolved": "https://registry.npmjs.org/@types/http-proxy/-/http-proxy-1.17.9.tgz", - "integrity": "sha512-QsbSjA/fSk7xB+UXlCT3wHBy5ai9wOcNDWwZAtud+jXhwOM3l+EYZh8Lng4+/6n8uar0J7xILzqftJdJ/Wdfkw==", - "requires": { - "@types/node": "*" - } - }, - "@types/istanbul-lib-coverage": { - "version": "2.0.4", - "resolved": "https://registry.npmjs.org/@types/istanbul-lib-coverage/-/istanbul-lib-coverage-2.0.4.tgz", - "integrity": "sha512-z/QT1XN4K4KYuslS23k62yDIDLwLFkzxOuMplDtObz0+y7VqJCaO2o+SPwHCvLFZh7xazvvoor2tA/hPz9ee7g==" - }, - "@types/istanbul-lib-report": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/@types/istanbul-lib-report/-/istanbul-lib-report-3.0.0.tgz", - "integrity": "sha512-plGgXAPfVKFoYfa9NpYDAkseG+g6Jr294RqeqcqDixSbU34MZVJRi/P+7Y8GDpzkEwLaGZZOpKIEmeVZNtKsrg==", - "requires": { - "@types/istanbul-lib-coverage": "*" - } - }, - "@types/istanbul-reports": { - "version": "3.0.1", - "resolved": "https://registry.npmjs.org/@types/istanbul-reports/-/istanbul-reports-3.0.1.tgz", - "integrity": "sha512-c3mAZEuK0lvBp8tmuL74XRKn1+y2dcwOUpH7x4WrF6gk1GIgiluDRgMYQtw2OFcBvAJWlt6ASU3tSqxp0Uu0Aw==", - "requires": { - "@types/istanbul-lib-report": "*" - } - }, - "@types/jest": { - "version": "27.5.2", - "resolved": "https://registry.npmjs.org/@types/jest/-/jest-27.5.2.tgz", - "integrity": "sha512-mpT8LJJ4CMeeahobofYWIjFo0xonRS/HfxnVEPMPFSQdGUt1uHCnoPT7Zhb+sjDU2wz0oKV0OLUR0WzrHNgfeA==", - "requires": { - "jest-matcher-utils": "^27.0.0", - "pretty-format": "^27.0.0" - } - }, - "@types/json-schema": { - "version": "7.0.11", - "resolved": "https://registry.npmjs.org/@types/json-schema/-/json-schema-7.0.11.tgz", - "integrity": "sha512-wOuvG1SN4Us4rez+tylwwwCV1psiNVOkJeM3AUWUNWg/jDQY2+HE/444y5gc+jBmRqASOm2Oeh5c1axHobwRKQ==" - }, - "@types/json5": { - "version": "0.0.29", - "resolved": "https://registry.npmjs.org/@types/json5/-/json5-0.0.29.tgz", - "integrity": "sha512-dRLjCWHYg4oaA77cxO64oO+7JwCwnIzkZPdrrC71jQmQtlhM556pwKo5bUzqvZndkVbeFLIIi+9TC40JNF5hNQ==" - }, - "@types/keyv": { - "version": "3.1.4", - "resolved": "https://registry.npmjs.org/@types/keyv/-/keyv-3.1.4.tgz", - "integrity": "sha512-BQ5aZNSCpj7D6K2ksrRCTmKRLEpnPvWDiLPfoGyhZ++8YtiK9d/3DBKPJgry359X/P1PfruyYwvnvwFjuEiEIg==", - "requires": { - "@types/node": "*" - } - }, - "@types/lru-cache": { - "version": "5.1.1", - "resolved": "https://registry.npmjs.org/@types/lru-cache/-/lru-cache-5.1.1.tgz", - "integrity": "sha512-ssE3Vlrys7sdIzs5LOxCzTVMsU7i9oa/IaW92wF32JFb3CVczqOkru2xspuKczHEbG3nvmPY7IFqVmGGHdNbYw==", - "peer": true - }, - "@types/mime": { - "version": "1.3.2", - "resolved": "https://registry.npmjs.org/@types/mime/-/mime-1.3.2.tgz", - "integrity": "sha512-YATxVxgRqNH6nHEIsvg6k2Boc1JHI9ZbH5iWFFv/MTkchz3b1ieGDa5T0a9RznNdI0KhVbdbWSN+KWWrQZRxTw==" - }, - "@types/node": { - "version": "16.11.41", - "resolved": "https://registry.npmjs.org/@types/node/-/node-16.11.41.tgz", - "integrity": "sha512-mqoYK2TnVjdkGk8qXAVGc/x9nSaTpSrFaGFm43BUH3IdoBV0nta6hYaGmdOvIMlbHJbUEVen3gvwpwovAZKNdQ==" - }, - "@types/parse-json": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/@types/parse-json/-/parse-json-4.0.0.tgz", - "integrity": "sha512-//oorEZjL6sbPcKUaCdIGlIUeH26mgzimjBB77G6XRgnDl/L5wOnpyBGRe/Mmf5CVW3PwEBE1NjiMZ/ssFh4wA==" - }, - "@types/pbkdf2": { - "version": "3.1.0", - "resolved": "https://registry.npmjs.org/@types/pbkdf2/-/pbkdf2-3.1.0.tgz", - "integrity": "sha512-Cf63Rv7jCQ0LaL8tNXmEyqTHuIJxRdlS5vMh1mj5voN4+QFhVZnlZruezqpWYDiJ8UTzhP0VmeLXCmBk66YrMQ==", - "requires": { - "@types/node": "*" - } - }, - "@types/prettier": { - "version": "2.6.3", - "resolved": "https://registry.npmjs.org/@types/prettier/-/prettier-2.6.3.tgz", - "integrity": "sha512-ymZk3LEC/fsut+/Q5qejp6R9O1rMxz3XaRHDV6kX8MrGAhOSPqVARbDi+EZvInBpw+BnCX3TD240byVkOfQsHg==" - }, - "@types/prop-types": { - "version": "15.7.5", - "resolved": "https://registry.npmjs.org/@types/prop-types/-/prop-types-15.7.5.tgz", - "integrity": "sha512-JCB8C6SnDoQf0cNycqd/35A7MjcnK+ZTqE7judS6o7utxUCg6imJg3QK2qzHKszlTjcj2cn+NwMB2i96ubpj7w==" - }, - "@types/q": { - "version": "1.5.5", - "resolved": "https://registry.npmjs.org/@types/q/-/q-1.5.5.tgz", - "integrity": "sha512-L28j2FcJfSZOnL1WBjDYp2vUHCeIFlyYI/53EwD/rKUBQ7MtUUfbQWiyKJGpcnv4/WgrhWsFKrcPstcAt/J0tQ==" - }, - "@types/qs": { - "version": "6.9.7", - "resolved": "https://registry.npmjs.org/@types/qs/-/qs-6.9.7.tgz", - "integrity": "sha512-FGa1F62FT09qcrueBA6qYTrJPVDzah9a+493+o2PCXsesWHIn27G98TsSMs3WPNbZIEj4+VJf6saSFpvD+3Zsw==" - }, - "@types/range-parser": { - "version": "1.2.4", - "resolved": "https://registry.npmjs.org/@types/range-parser/-/range-parser-1.2.4.tgz", - "integrity": "sha512-EEhsLsD6UsDM1yFhAvy0Cjr6VwmpMWqFBCb9w07wVugF7w9nfajxLuVmngTIpgS6svCnm6Vaw+MZhoDCKnOfsw==" - }, - "@types/react": { - "version": "18.0.14", - "resolved": "https://registry.npmjs.org/@types/react/-/react-18.0.14.tgz", - "integrity": "sha512-x4gGuASSiWmo0xjDLpm5mPb52syZHJx02VKbqUKdLmKtAwIh63XClGsiTI1K6DO5q7ox4xAsQrU+Gl3+gGXF9Q==", - "requires": { - "@types/prop-types": "*", - "@types/scheduler": "*", - "csstype": "^3.0.2" - } - }, - "@types/react-dom": { - "version": "18.0.5", - "resolved": "https://registry.npmjs.org/@types/react-dom/-/react-dom-18.0.5.tgz", - "integrity": "sha512-OWPWTUrY/NIrjsAPkAk1wW9LZeIjSvkXRhclsFO8CZcZGCOg2G0YZy4ft+rOyYxy8B7ui5iZzi9OkDebZ7/QSA==", - "requires": { - "@types/react": "*" - } - }, - "@types/react-is": { - "version": "17.0.3", - "resolved": "https://registry.npmjs.org/@types/react-is/-/react-is-17.0.3.tgz", - "integrity": "sha512-aBTIWg1emtu95bLTLx0cpkxwGW3ueZv71nE2YFBpL8k/z5czEW8yYpOo8Dp+UUAFAtKwNaOsh/ioSeQnWlZcfw==", - "requires": { - "@types/react": "*" - } - }, - "@types/react-transition-group": { - "version": "4.4.5", - "resolved": "https://registry.npmjs.org/@types/react-transition-group/-/react-transition-group-4.4.5.tgz", - "integrity": "sha512-juKD/eiSM3/xZYzjuzH6ZwpP+/lejltmiS3QEzV/vmb/Q8+HfDmxu+Baga8UEMGBqV88Nbg4l2hY/K2DkyaLLA==", - "requires": { - "@types/react": "*" - } - }, - "@types/readable-stream": { - "version": "2.3.15", - "resolved": "https://registry.npmjs.org/@types/readable-stream/-/readable-stream-2.3.15.tgz", - "integrity": "sha512-oM5JSKQCcICF1wvGgmecmHldZ48OZamtMxcGGVICOJA8o8cahXC1zEVAif8iwoc5j8etxFaRFnf095+CDsuoFQ==", - "peer": true, - "requires": { - "@types/node": "*", - "safe-buffer": "~5.1.1" - } - }, - "@types/resolve": { - "version": "1.17.1", - "resolved": "https://registry.npmjs.org/@types/resolve/-/resolve-1.17.1.tgz", - "integrity": "sha512-yy7HuzQhj0dhGpD8RLXSZWEkLsV9ibvxvi6EiJ3bkqLAO1RGo0WbkWQiwpRlSFymTJRz0d3k5LM3kkx8ArDbLw==", - "requires": { - "@types/node": "*" - } - }, - "@types/responselike": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/@types/responselike/-/responselike-1.0.0.tgz", - "integrity": "sha512-85Y2BjiufFzaMIlvJDvTTB8Fxl2xfLo4HgmHzVBz08w4wDePCTjYw66PdrolO0kzli3yam/YCgRufyo1DdQVTA==", - "requires": { - "@types/node": "*" - } - }, - "@types/retry": { - "version": "0.12.0", - "resolved": "https://registry.npmjs.org/@types/retry/-/retry-0.12.0.tgz", - "integrity": "sha512-wWKOClTTiizcZhXnPY4wikVAwmdYHp8q6DmC+EJUzAMsycb7HB32Kh9RN4+0gExjmPmZSAQjgURXIGATPegAvA==" - }, - "@types/scheduler": { - "version": "0.16.2", - "resolved": "https://registry.npmjs.org/@types/scheduler/-/scheduler-0.16.2.tgz", - "integrity": "sha512-hppQEBDmlwhFAXKJX2KnWLYu5yMfi91yazPb2l+lbJiwW+wdo1gNeRA+3RgNSO39WYX2euey41KEwnqesU2Jew==" - }, - "@types/secp256k1": { - "version": "4.0.3", - "resolved": "https://registry.npmjs.org/@types/secp256k1/-/secp256k1-4.0.3.tgz", - "integrity": "sha512-Da66lEIFeIz9ltsdMZcpQvmrmmoqrfju8pm1BH8WbYjZSwUgCwXLb9C+9XYogwBITnbsSaMdVPb2ekf7TV+03w==", - "requires": { - "@types/node": "*" - } - }, - "@types/serve-index": { - "version": "1.9.1", - "resolved": "https://registry.npmjs.org/@types/serve-index/-/serve-index-1.9.1.tgz", - "integrity": "sha512-d/Hs3nWDxNL2xAczmOVZNj92YZCS6RGxfBPjKzuu/XirCgXdpKEb88dYNbrYGint6IVWLNP+yonwVAuRC0T2Dg==", - "requires": { - "@types/express": "*" - } - }, - "@types/serve-static": { - "version": "1.13.10", - "resolved": "https://registry.npmjs.org/@types/serve-static/-/serve-static-1.13.10.tgz", - "integrity": "sha512-nCkHGI4w7ZgAdNkrEu0bv+4xNV/XDqW+DydknebMOQwkpDGx8G+HTlj7R7ABI8i8nKxVw0wtKPi1D+lPOkh4YQ==", - "requires": { - "@types/mime": "^1", - "@types/node": "*" - } - }, - "@types/sockjs": { - "version": "0.3.33", - "resolved": "https://registry.npmjs.org/@types/sockjs/-/sockjs-0.3.33.tgz", - "integrity": "sha512-f0KEEe05NvUnat+boPTZ0dgaLZ4SfSouXUgv5noUiefG2ajgKjmETo9ZJyuqsl7dfl2aHlLJUiki6B4ZYldiiw==", - "requires": { - "@types/node": "*" - } - }, - "@types/stack-utils": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/@types/stack-utils/-/stack-utils-2.0.1.tgz", - "integrity": "sha512-Hl219/BT5fLAaz6NDkSuhzasy49dwQS/DSdu4MdggFB8zcXv7vflBI3xp7FEmkmdDkBUI2bPUNeMttp2knYdxw==" - }, - "@types/testing-library__jest-dom": { - "version": "5.14.5", - "resolved": "https://registry.npmjs.org/@types/testing-library__jest-dom/-/testing-library__jest-dom-5.14.5.tgz", - "integrity": "sha512-SBwbxYoyPIvxHbeHxTZX2Pe/74F/tX2/D3mMvzabdeJ25bBojfW0TyB8BHrbq/9zaaKICJZjLP+8r6AeZMFCuQ==", - "requires": { - "@types/jest": "*" - } - }, - "@types/trusted-types": { - "version": "2.0.2", - "resolved": "https://registry.npmjs.org/@types/trusted-types/-/trusted-types-2.0.2.tgz", - "integrity": "sha512-F5DIZ36YVLE+PN+Zwws4kJogq47hNgX3Nx6WyDJ3kcplxyke3XIzB8uK5n/Lpm1HBsbGzd6nmGehL8cPekP+Tg==" - }, - "@types/use-sync-external-store": { - "version": "0.0.3", - "resolved": "https://registry.npmjs.org/@types/use-sync-external-store/-/use-sync-external-store-0.0.3.tgz", - "integrity": "sha512-EwmlvuaxPNej9+T4v5AuBPJa2x2UOJVdjCtDHgcDqitUeOtjnJKJ+apYjVcAoBEMjKW1VVFGZLUb5+qqa09XFA==" - }, - "@types/ws": { - "version": "8.5.3", - "resolved": "https://registry.npmjs.org/@types/ws/-/ws-8.5.3.tgz", - "integrity": "sha512-6YOoWjruKj1uLf3INHH7D3qTXwFfEsg1kf3c0uDdSBJwfa/llkwIjrAGV7j7mVgGNbzTQ3HiHKKDXl6bJPD97w==", - "requires": { - "@types/node": "*" - } - }, - "@types/yargs": { - "version": "16.0.4", - "resolved": "https://registry.npmjs.org/@types/yargs/-/yargs-16.0.4.tgz", - "integrity": "sha512-T8Yc9wt/5LbJyCaLiHPReJa0kApcIgJ7Bn735GjItUfh08Z1pJvu8QZqb9s+mMvKV6WUQRV7K2R46YbjMXTTJw==", - "requires": { - "@types/yargs-parser": "*" - } - }, - "@types/yargs-parser": { - "version": "21.0.0", - "resolved": "https://registry.npmjs.org/@types/yargs-parser/-/yargs-parser-21.0.0.tgz", - "integrity": "sha512-iO9ZQHkZxHn4mSakYV0vFHAVDyEOIJQrV2uZ06HxEPcx+mt8swXoZHIbaaJ2crJYFfErySgktuTZ3BeLz+XmFA==" - }, - "@typescript-eslint/eslint-plugin": { - "version": "5.30.0", - "resolved": "https://registry.npmjs.org/@typescript-eslint/eslint-plugin/-/eslint-plugin-5.30.0.tgz", - "integrity": "sha512-lvhRJ2pGe2V9MEU46ELTdiHgiAFZPKtLhiU5wlnaYpMc2+c1R8fh8i80ZAa665drvjHKUJyRRGg3gEm1If54ow==", - "requires": { - "@typescript-eslint/scope-manager": "5.30.0", - "@typescript-eslint/type-utils": "5.30.0", - "@typescript-eslint/utils": "5.30.0", - "debug": "^4.3.4", - "functional-red-black-tree": "^1.0.1", - "ignore": "^5.2.0", - "regexpp": "^3.2.0", - "semver": "^7.3.7", - "tsutils": "^3.21.0" - } - }, - "@typescript-eslint/experimental-utils": { - "version": "5.30.0", - "resolved": "https://registry.npmjs.org/@typescript-eslint/experimental-utils/-/experimental-utils-5.30.0.tgz", - "integrity": "sha512-k+EM/r2hxSMX+S+ji9qQVyVMeJ8IEunadngM+1rEDLdUbqQlYoUv78HWCKoOHJao+KSyLbhYHFhh7h54+rB63A==", - "requires": { - "@typescript-eslint/utils": "5.30.0" - } - }, - "@typescript-eslint/parser": { - "version": "5.30.0", - "resolved": "https://registry.npmjs.org/@typescript-eslint/parser/-/parser-5.30.0.tgz", - "integrity": "sha512-2oYYUws5o2liX6SrFQ5RB88+PuRymaM2EU02/9Ppoyu70vllPnHVO7ioxDdq/ypXHA277R04SVjxvwI8HmZpzA==", - "requires": { - "@typescript-eslint/scope-manager": "5.30.0", - "@typescript-eslint/types": "5.30.0", - "@typescript-eslint/typescript-estree": "5.30.0", - "debug": "^4.3.4" - } - }, - "@typescript-eslint/scope-manager": { - "version": "5.30.0", - "resolved": "https://registry.npmjs.org/@typescript-eslint/scope-manager/-/scope-manager-5.30.0.tgz", - "integrity": "sha512-3TZxvlQcK5fhTBw5solQucWSJvonXf5yua5nx8OqK94hxdrT7/6W3/CS42MLd/f1BmlmmbGEgQcTHHCktUX5bQ==", - "requires": { - "@typescript-eslint/types": "5.30.0", - "@typescript-eslint/visitor-keys": "5.30.0" - } - }, - "@typescript-eslint/type-utils": { - "version": "5.30.0", - "resolved": "https://registry.npmjs.org/@typescript-eslint/type-utils/-/type-utils-5.30.0.tgz", - "integrity": "sha512-GF8JZbZqSS+azehzlv/lmQQ3EU3VfWYzCczdZjJRxSEeXDQkqFhCBgFhallLDbPwQOEQ4MHpiPfkjKk7zlmeNg==", - "requires": { - "@typescript-eslint/utils": "5.30.0", - "debug": "^4.3.4", - "tsutils": "^3.21.0" - } - }, - "@typescript-eslint/types": { - "version": "5.30.0", - "resolved": "https://registry.npmjs.org/@typescript-eslint/types/-/types-5.30.0.tgz", - "integrity": "sha512-vfqcBrsRNWw/LBXyncMF/KrUTYYzzygCSsVqlZ1qGu1QtGs6vMkt3US0VNSQ05grXi5Yadp3qv5XZdYLjpp8ag==" - }, - "@typescript-eslint/typescript-estree": { - "version": "5.30.0", - "resolved": "https://registry.npmjs.org/@typescript-eslint/typescript-estree/-/typescript-estree-5.30.0.tgz", - "integrity": "sha512-hDEawogreZB4n1zoqcrrtg/wPyyiCxmhPLpZ6kmWfKF5M5G0clRLaEexpuWr31fZ42F96SlD/5xCt1bT5Qm4Nw==", - "requires": { - "@typescript-eslint/types": "5.30.0", - "@typescript-eslint/visitor-keys": "5.30.0", - "debug": "^4.3.4", - "globby": "^11.1.0", - "is-glob": "^4.0.3", - "semver": "^7.3.7", - "tsutils": "^3.21.0" - } - }, - "@typescript-eslint/utils": { - "version": "5.30.0", - "resolved": "https://registry.npmjs.org/@typescript-eslint/utils/-/utils-5.30.0.tgz", - "integrity": "sha512-0bIgOgZflLKIcZsWvfklsaQTM3ZUbmtH0rJ1hKyV3raoUYyeZwcjQ8ZUJTzS7KnhNcsVT1Rxs7zeeMHEhGlltw==", - "requires": { - "@types/json-schema": "^7.0.9", - "@typescript-eslint/scope-manager": "5.30.0", - "@typescript-eslint/types": "5.30.0", - "@typescript-eslint/typescript-estree": "5.30.0", - "eslint-scope": "^5.1.1", - "eslint-utils": "^3.0.0" - }, - "dependencies": { - "eslint-scope": { - "version": "5.1.1", - "resolved": "https://registry.npmjs.org/eslint-scope/-/eslint-scope-5.1.1.tgz", - "integrity": "sha512-2NxwbF/hZ0KpepYN0cNbo+FN6XoK7GaHlQhgx/hIZl6Va0bF45RQOOwhLIy8lQDbuCiadSLCBnH2CFYquit5bw==", - "requires": { - "esrecurse": "^4.3.0", - "estraverse": "^4.1.1" - } - }, - "estraverse": { - "version": "4.3.0", - "resolved": "https://registry.npmjs.org/estraverse/-/estraverse-4.3.0.tgz", - "integrity": "sha512-39nnKffWz8xN1BU/2c79n9nB9HDzo0niYUqx6xyqUnyoAnQyyWpOTdZEeiCch8BBu515t4wp9ZmgVfVhn9EBpw==" - } - } - }, - "@typescript-eslint/visitor-keys": { - "version": "5.30.0", - "resolved": "https://registry.npmjs.org/@typescript-eslint/visitor-keys/-/visitor-keys-5.30.0.tgz", - "integrity": "sha512-6WcIeRk2DQ3pHKxU1Ni0qMXJkjO/zLjBymlYBy/53qxe7yjEFSvzKLDToJjURUhSl2Fzhkl4SMXQoETauF74cw==", - "requires": { - "@typescript-eslint/types": "5.30.0", - "eslint-visitor-keys": "^3.3.0" - } - }, - "@uniswap/conedison": { - "version": "1.6.0", - "resolved": "https://registry.npmjs.org/@uniswap/conedison/-/conedison-1.6.0.tgz", - "integrity": "sha512-ZoXOkGgSndRECElK5mAezjbwOlwzkn71swQ3rFQlivPChdLaD0SprCNnuNkwj+sdRm2dRtmX9V3L9KDVVWhLDQ==", - "requires": {} - }, - "@uniswap/default-token-list": { - "version": "2.3.0", - "resolved": "https://registry.npmjs.org/@uniswap/default-token-list/-/default-token-list-2.3.0.tgz", - "integrity": "sha512-yfd4snv9K20tEbNwy9Vjym41RU3Yb2lN0seKxsgkr+m3f6oub2lWyXfTiNwgGFbOQPDvX4dxjMhA+M+S7mxqKg==" - }, - "@uniswap/lib": { - "version": "4.0.1-alpha", - "resolved": "https://registry.npmjs.org/@uniswap/lib/-/lib-4.0.1-alpha.tgz", - "integrity": "sha512-f6UIliwBbRsgVLxIaBANF6w09tYqc6Y/qXdsrbEmXHyFA7ILiKrIwRFXe1yOg8M3cksgVsO9N7yuL2DdCGQKBA==" - }, - "@uniswap/permit2-sdk": { - "version": "1.2.0", - "resolved": "https://registry.npmjs.org/@uniswap/permit2-sdk/-/permit2-sdk-1.2.0.tgz", - "integrity": "sha512-Ietv3FxN7+RCXcPSED/i/8b0a2GUZrMdyX05k3FsSztvYKyPFAMS/hBXojF0NZqYB1bHecqYc7Ej+7tV/rdYXg==", - "requires": { - "ethers": "^5.3.1", - "tiny-invariant": "^1.3.1" - } - }, - "@uniswap/redux-multicall": { - "version": "1.1.8", - "resolved": "https://registry.npmjs.org/@uniswap/redux-multicall/-/redux-multicall-1.1.8.tgz", - "integrity": "sha512-LttOBVJuoRNC6N4MHsb5dF2GszLsj1ddPKKccEw1XOX17bGrFdm2A6GwKgES+v+Hj3lluDbQL6atcQtymP21iw==", - "requires": {} - }, - "@uniswap/router-sdk": { - "version": "1.4.0", - "resolved": "https://registry.npmjs.org/@uniswap/router-sdk/-/router-sdk-1.4.0.tgz", - "integrity": "sha512-GyUX8x+hnwnh89DHyA/yKWUwhU3Eukx3B76vfvMMWfr++GA4CW6PzT5j4JgNZDrsBTOSJWxTdU5YbgOuwU2XGg==", - "requires": { - "@ethersproject/abi": "^5.5.0", - "@uniswap/sdk-core": "^3.0.1", - "@uniswap/swap-router-contracts": "1.1.0", - "@uniswap/v2-sdk": "^3.0.1", - "@uniswap/v3-sdk": "^3.8.3" - } - }, - "@uniswap/sdk-core": { - "version": "3.2.2", - "resolved": "https://registry.npmjs.org/@uniswap/sdk-core/-/sdk-core-3.2.2.tgz", - "integrity": "sha512-dPA34T8EVfFzKtw1NC1Mr7M0aXpY1UN+lUpdBv757JxKKMlGQTg96XTIfjYCflqEshxlBdz2+IVQgk6H+dMu5g==", - "requires": { - "@ethersproject/address": "^5.0.2", - "big.js": "^5.2.2", - "decimal.js-light": "^2.5.0", - "jsbi": "^3.1.4", - "tiny-invariant": "^1.1.0", - "toformat": "^2.0.0" - } - }, - "@uniswap/smart-order-router": { - "version": "2.10.2", - "resolved": "https://registry.npmjs.org/@uniswap/smart-order-router/-/smart-order-router-2.10.2.tgz", - "integrity": "sha512-Nq/O5p5vUxcGL2PpdB4/mjq0cgfpisPA8Q29dPs3+dgYJ3PNgIasCoENMHgauTvCFCNyql+GwanfeW/DtEcd5A==", - "requires": { - "@uniswap/default-token-list": "^2.0.0", - "@uniswap/router-sdk": "^1.3.0", - "@uniswap/swap-router-contracts": "^1.3.0", - "@uniswap/token-lists": "^1.0.0-beta.25", - "@uniswap/v2-sdk": "^3.0.1", - "@uniswap/v3-sdk": "^3.7.0", - "async-retry": "^1.3.1", - "await-timeout": "^1.1.1", - "axios": "^0.21.1", - "bunyan": "^1.8.15", - "bunyan-blackhole": "^1.1.1", - "ethers": "^5.6.1", - "graphql": "^15.5.0", - "graphql-request": "^3.4.0", - "lodash": "^4.17.21", - "mnemonist": "^0.38.3", - "node-cache": "^5.1.2", - "stats-lite": "^2.2.0" - }, - "dependencies": { - "@openzeppelin/contracts": { - "version": "3.4.2-solc-0.7", - "resolved": "https://registry.npmjs.org/@openzeppelin/contracts/-/contracts-3.4.2-solc-0.7.tgz", - "integrity": "sha512-W6QmqgkADuFcTLzHL8vVoNBtkwjvQRpYIAom7KiUNoLKghyx3FgH0GBjt8NRvigV1ZmMOBllvE1By1C+bi8WpA==" - }, - "@uniswap/swap-router-contracts": { - "version": "1.3.0", - "resolved": "https://registry.npmjs.org/@uniswap/swap-router-contracts/-/swap-router-contracts-1.3.0.tgz", - "integrity": "sha512-iKvCuRkHXEe0EMjOf8HFUISTIhlxI57kKFllf3C3PUIE0HmwxrayyoflwAz5u/TRsFGYqJ9IjX2UgzLCsrNa5A==", - "requires": { - "@openzeppelin/contracts": "3.4.2-solc-0.7", - "@uniswap/v2-core": "1.0.1", - "@uniswap/v3-core": "1.0.0", - "@uniswap/v3-periphery": "1.4.1", - "dotenv": "^14.2.0", - "hardhat-watcher": "^2.1.1" - } - }, - "@uniswap/v3-periphery": { - "version": "1.4.1", - "resolved": "https://registry.npmjs.org/@uniswap/v3-periphery/-/v3-periphery-1.4.1.tgz", - "integrity": "sha512-Ab0ZCKOQrQMKIcpBTezTsEhWfQjItd0TtkCG8mPhoQu+wC67nPaf4hYUhM6wGHeFUmDiYY5MpEQuokB0ENvoTg==", - "requires": { - "@openzeppelin/contracts": "3.4.2-solc-0.7", - "@uniswap/lib": "^4.0.1-alpha", - "@uniswap/v2-core": "1.0.1", - "@uniswap/v3-core": "1.0.0", - "base64-sol": "1.0.1", - "hardhat-watcher": "^2.1.1" - } - } - } - }, - "@uniswap/swap-router-contracts": { - "version": "1.1.0", - "resolved": "https://registry.npmjs.org/@uniswap/swap-router-contracts/-/swap-router-contracts-1.1.0.tgz", - "integrity": "sha512-GPmpx1lvjXWloB95+YUabr3UHJYr3scnSS8EzaNXnNrIz9nYZ+XQcMaJxOKe85Yi7IfcUQpj0HzD2TW99dtolA==", - "requires": { - "@openzeppelin/contracts": "3.4.1-solc-0.7-2", - "@uniswap/v2-core": "1.0.1", - "@uniswap/v3-core": "1.0.0", - "@uniswap/v3-periphery": "1.3.0", - "hardhat-watcher": "^2.1.1" - } - }, - "@uniswap/token-lists": { - "version": "1.0.0-beta.31", - "resolved": "https://registry.npmjs.org/@uniswap/token-lists/-/token-lists-1.0.0-beta.31.tgz", - "integrity": "sha512-BQVoelKCRf64IToPEs1wxiXOnhr/ukwPOF78XG11PrTAOL4F8umjYKFb8ZPv1/dIJsPaC7GhLSriEqyp94SasQ==" - }, - "@uniswap/universal-router": { - "version": "1.3.1", - "resolved": "https://registry.npmjs.org/@uniswap/universal-router/-/universal-router-1.3.1.tgz", - "integrity": "sha512-JJY4Z1aXJ70OB08WKl+wSazTfV7pZ1bXgKRhvPLSv8/4HXxQPCYMVi53Waeu93VdAdaYt1jviWR+uRV6a6/uoA==", - "requires": { - "@openzeppelin/contracts": "4.7.0", - "@uniswap/v2-core": "1.0.1", - "@uniswap/v3-core": "1.0.0" - }, - "dependencies": { - "@openzeppelin/contracts": { - "version": "4.7.0", - "resolved": "https://registry.npmjs.org/@openzeppelin/contracts/-/contracts-4.7.0.tgz", - "integrity": "sha512-52Qb+A1DdOss8QvJrijYYPSf32GUg2pGaG/yCxtaA3cu4jduouTdg4XZSMLW9op54m1jH7J8hoajhHKOPsoJFw==" - } - } - }, - "@uniswap/universal-router-sdk": { - "version": "1.4.4", - "resolved": "https://registry.npmjs.org/@uniswap/universal-router-sdk/-/universal-router-sdk-1.4.4.tgz", - "integrity": "sha512-yrcMAYV8Ytpgo2Gyih/4qgBi26okIjr6ztU8aW82gDXt95P3uaShP9Sc3yrOlqeAaUiRUHdPVhxSokMfVDXbRg==", - "requires": { - "@uniswap/permit2-sdk": "^1.2.0", - "@uniswap/router-sdk": "^1.4.0", - "@uniswap/sdk-core": "^3.1.0", - "@uniswap/universal-router": "1.3.1", - "@uniswap/v2-sdk": "^3.0.1", - "@uniswap/v3-sdk": "^3.9.0", - "bignumber.js": "^9.0.2", - "ethers": "^5.3.1" - } - }, - "@uniswap/v2-core": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/@uniswap/v2-core/-/v2-core-1.0.1.tgz", - "integrity": "sha512-MtybtkUPSyysqLY2U210NBDeCHX+ltHt3oADGdjqoThZaFRDKwM6k1Nb3F0A3hk5hwuQvytFWhrWHOEq6nVJ8Q==" - }, - "@uniswap/v2-sdk": { - "version": "3.0.1", - "resolved": "https://registry.npmjs.org/@uniswap/v2-sdk/-/v2-sdk-3.0.1.tgz", - "integrity": "sha512-eSpm2gjo2CZh9FACH5fq42str/oSNyWcDxB27o5k44bEew4sxb+pld4gGIf/byJndLBvArR9PtH8c0n/goNOTw==", - "requires": { - "@ethersproject/address": "^5.0.0", - "@ethersproject/solidity": "^5.0.0", - "@uniswap/sdk-core": "^3.0.0-alpha.3", - "tiny-invariant": "^1.1.0", - "tiny-warning": "^1.0.3" - } - }, - "@uniswap/v3-core": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/@uniswap/v3-core/-/v3-core-1.0.0.tgz", - "integrity": "sha512-kSC4djMGKMHj7sLMYVnn61k9nu+lHjMIxgg9CDQT+s2QYLoA56GbSK9Oxr+qJXzzygbkrmuY6cwgP6cW2JXPFA==" - }, - "@uniswap/v3-periphery": { - "version": "1.3.0", - "resolved": "https://registry.npmjs.org/@uniswap/v3-periphery/-/v3-periphery-1.3.0.tgz", - "integrity": "sha512-HjHdI5RkjBl8zz3bqHShrbULFoZSrjbbrRHoO2vbzn+WRzTa6xY4PWphZv2Tlcb38YEKfKHp6NPl5hVedac8uw==", - "requires": { - "@openzeppelin/contracts": "3.4.1-solc-0.7-2", - "@uniswap/lib": "^4.0.1-alpha", - "@uniswap/v2-core": "1.0.1", - "@uniswap/v3-core": "1.0.0", - "base64-sol": "1.0.1", - "hardhat-watcher": "^2.1.1" - } - }, - "@uniswap/v3-sdk": { - "version": "3.9.0", - "resolved": "https://registry.npmjs.org/@uniswap/v3-sdk/-/v3-sdk-3.9.0.tgz", - "integrity": "sha512-LuoF3UcY1DxSAQKJ3E4/1Eq4HaNp+x+7q9mvbpiu+/PBj+O1DjLforAMrKxu+RsA0aarmZtz7yBnAPy+akgfgQ==", - "requires": { - "@ethersproject/abi": "^5.0.12", - "@ethersproject/solidity": "^5.0.9", - "@uniswap/sdk-core": "^3.0.1", - "@uniswap/swap-router-contracts": "^1.2.1", - "@uniswap/v3-periphery": "^1.1.1", - "@uniswap/v3-staker": "1.0.0", - "tiny-invariant": "^1.1.0", - "tiny-warning": "^1.0.3" - }, - "dependencies": { - "@openzeppelin/contracts": { - "version": "3.4.2-solc-0.7", - "resolved": "https://registry.npmjs.org/@openzeppelin/contracts/-/contracts-3.4.2-solc-0.7.tgz", - "integrity": "sha512-W6QmqgkADuFcTLzHL8vVoNBtkwjvQRpYIAom7KiUNoLKghyx3FgH0GBjt8NRvigV1ZmMOBllvE1By1C+bi8WpA==" - }, - "@uniswap/swap-router-contracts": { - "version": "1.3.0", - "resolved": "https://registry.npmjs.org/@uniswap/swap-router-contracts/-/swap-router-contracts-1.3.0.tgz", - "integrity": "sha512-iKvCuRkHXEe0EMjOf8HFUISTIhlxI57kKFllf3C3PUIE0HmwxrayyoflwAz5u/TRsFGYqJ9IjX2UgzLCsrNa5A==", - "requires": { - "@openzeppelin/contracts": "3.4.2-solc-0.7", - "@uniswap/v2-core": "1.0.1", - "@uniswap/v3-core": "1.0.0", - "@uniswap/v3-periphery": "1.4.1", - "dotenv": "^14.2.0", - "hardhat-watcher": "^2.1.1" - } - }, - "@uniswap/v3-periphery": { - "version": "1.4.1", - "resolved": "https://registry.npmjs.org/@uniswap/v3-periphery/-/v3-periphery-1.4.1.tgz", - "integrity": "sha512-Ab0ZCKOQrQMKIcpBTezTsEhWfQjItd0TtkCG8mPhoQu+wC67nPaf4hYUhM6wGHeFUmDiYY5MpEQuokB0ENvoTg==", - "requires": { - "@openzeppelin/contracts": "3.4.2-solc-0.7", - "@uniswap/lib": "^4.0.1-alpha", - "@uniswap/v2-core": "1.0.1", - "@uniswap/v3-core": "1.0.0", - "base64-sol": "1.0.1", - "hardhat-watcher": "^2.1.1" - } - } - } - }, - "@uniswap/v3-staker": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/@uniswap/v3-staker/-/v3-staker-1.0.0.tgz", - "integrity": "sha512-JV0Qc46Px5alvg6YWd+UIaGH9lDuYG/Js7ngxPit1SPaIP30AlVer1UYB7BRYeUVVxE+byUyIeN5jeQ7LLDjIw==", - "requires": { - "@openzeppelin/contracts": "3.4.1-solc-0.7-2", - "@uniswap/v3-core": "1.0.0", - "@uniswap/v3-periphery": "^1.0.1" - } - }, - "@vibrant/color": { - "version": "3.2.1-alpha.1", - "resolved": "https://registry.npmjs.org/@vibrant/color/-/color-3.2.1-alpha.1.tgz", - "integrity": "sha512-cvm+jAPwao2NerTr3d1JttYyLhp3eD/AQBeevxF7KT6HctToWZCwr2AeTr003/wKgbjzdOV1qySnbyOeu+R+Jw==" - }, - "@vibrant/core": { - "version": "3.2.1-alpha.1", - "resolved": "https://registry.npmjs.org/@vibrant/core/-/core-3.2.1-alpha.1.tgz", - "integrity": "sha512-X9Oa9WfPEQnZ6L+5dLRlh+IlsxJkYTw9b/g3stFKoNXbVRKCeXHmH48l7jIBBOg3VcXOGUdsYBqsTwPNkIveaA==", - "requires": { - "@vibrant/color": "^3.2.1-alpha.1", - "@vibrant/generator": "^3.2.1-alpha.1", - "@vibrant/image": "^3.2.1-alpha.1", - "@vibrant/quantizer": "^3.2.1-alpha.1", - "@vibrant/types": "^3.2.1-alpha.1", - "@vibrant/worker": "^3.2.1-alpha.1" - } - }, - "@vibrant/generator": { - "version": "3.2.1-alpha.1", - "resolved": "https://registry.npmjs.org/@vibrant/generator/-/generator-3.2.1-alpha.1.tgz", - "integrity": "sha512-luS5YvMhwMqG01YTj1dJ+cmkuIw1VCByOR6zIaCOwQqI/mcOs88JBWcA1r2TywJTOPlVpjfnDvAlyaKBKh4dMA==", - "requires": { - "@vibrant/color": "^3.2.1-alpha.1", - "@vibrant/types": "^3.2.1-alpha.1" - } - }, - "@vibrant/generator-default": { - "version": "3.2.1-alpha.1", - "resolved": "https://registry.npmjs.org/@vibrant/generator-default/-/generator-default-3.2.1-alpha.1.tgz", - "integrity": "sha512-BWnQhDaz92UhyHnpdAzKXHQecY+jvyMXtzjKYbveFxThm6+HVoLjwONlbck7oyOpFzV2OM7V11XuR85BxaHvjw==", - "requires": { - "@vibrant/color": "^3.2.1-alpha.1", - "@vibrant/generator": "^3.2.1-alpha.1" - } - }, - "@vibrant/image": { - "version": "3.2.1-alpha.1", - "resolved": "https://registry.npmjs.org/@vibrant/image/-/image-3.2.1-alpha.1.tgz", - "integrity": "sha512-4aF5k79QfyhZOqRovJpbnIjWfe3uuWhY8voqVdd4/qgu4o70/AwVlM+pYmCaJVzI45VWNWWHYA5QlYuKsXnBqQ==", - "requires": { - "@vibrant/color": "^3.2.1-alpha.1", - "@vibrant/types": "^3.2.1-alpha.1" - } - }, - "@vibrant/image-browser": { - "version": "3.2.1-alpha.1", - "resolved": "https://registry.npmjs.org/@vibrant/image-browser/-/image-browser-3.2.1-alpha.1.tgz", - "integrity": "sha512-6xWvQfB20sE6YtCWylgEAHuee3iD8h3aFIDbCS2yj7jIelKcYTrrp5jg2d2BhOOB6pC5JzF+QfpCrm0DmAIlgQ==", - "requires": { - "@vibrant/image": "^3.2.1-alpha.1" - } - }, - "@vibrant/image-node": { - "version": "3.2.1-alpha.1", - "resolved": "https://registry.npmjs.org/@vibrant/image-node/-/image-node-3.2.1-alpha.1.tgz", - "integrity": "sha512-/Io/Rpo4EkO6AhaXdcxUXkbOFhSFtjm0LSAM4c0AyGA5EbC8PyZqjk8b11bQAEMCaYaweFQfTdGD7oVbXe21CQ==", - "requires": { - "@jimp/custom": "^0.16.1", - "@jimp/plugin-resize": "^0.16.1", - "@jimp/types": "^0.16.1", - "@vibrant/image": "^3.2.1-alpha.1" - } - }, - "@vibrant/quantizer": { - "version": "3.2.1-alpha.1", - "resolved": "https://registry.npmjs.org/@vibrant/quantizer/-/quantizer-3.2.1-alpha.1.tgz", - "integrity": "sha512-iHnPx/+n4iLtYLm1GClSfyg2fFbMatFG0ipCyp9M6tXNIPAg+pSvUJSGBnVnH7Nl/bR8Gkkj1h0pJ4RsKcdIrQ==", - "requires": { - "@vibrant/color": "^3.2.1-alpha.1", - "@vibrant/image": "^3.2.1-alpha.1", - "@vibrant/types": "^3.2.1-alpha.1" - } - }, - "@vibrant/quantizer-mmcq": { - "version": "3.2.1-alpha.1", - "resolved": "https://registry.npmjs.org/@vibrant/quantizer-mmcq/-/quantizer-mmcq-3.2.1-alpha.1.tgz", - "integrity": "sha512-Wuk9PTZtxr8qsWTcgP6lcrrmrq36syVwxf+BUxdgQYntBcQ053SaN34lVGOJ0WPdK5vABoxbYljhceCgiILtZw==", - "requires": { - "@vibrant/color": "^3.2.1-alpha.1", - "@vibrant/image": "^3.2.1-alpha.1", - "@vibrant/quantizer": "^3.2.1-alpha.1" - } - }, - "@vibrant/types": { - "version": "3.2.1-alpha.1", - "resolved": "https://registry.npmjs.org/@vibrant/types/-/types-3.2.1-alpha.1.tgz", - "integrity": "sha512-ts9u7nsrENoYI5s0MmPOeY5kCLFKvQndKVDOPFCbTA0z493uhDp8mpiQhjFYTf3kPbS04z9zbHLE2luFC7x4KQ==" - }, - "@vibrant/worker": { - "version": "3.2.1-alpha.1", - "resolved": "https://registry.npmjs.org/@vibrant/worker/-/worker-3.2.1-alpha.1.tgz", - "integrity": "sha512-mtSlBdHkFNr4FOnMtqtHJxy9z5AsUcZzGlpiHzvWOoaoN9lNTDPwxOBd0q4VTYWuGPrIm6Fuq5m7aRbLv7KqiQ==", - "requires": { - "@vibrant/types": "^3.2.1-alpha.1" - } - }, - "@web3-react/abstract-connector": { - "version": "6.0.7", - "resolved": "https://registry.npmjs.org/@web3-react/abstract-connector/-/abstract-connector-6.0.7.tgz", - "integrity": "sha512-RhQasA4Ox8CxUC0OENc1AJJm8UTybu/oOCM61Zjg6y0iF7Z0sqv1Ai1VdhC33hrQpA8qSBgoXN9PaP8jKmtdqg==", - "requires": { - "@web3-react/types": "^6.0.7" - } - }, - "@web3-react/core": { - "version": "6.1.9", - "resolved": "https://registry.npmjs.org/@web3-react/core/-/core-6.1.9.tgz", - "integrity": "sha512-P877DslsbAkWIlMANpWiK7pCvNwlz0kJC0EGckuVh0wlA23J4UnFxq6xyOaxkxaDCu14rA/tAO0NbwjcXTQgSA==", - "requires": { - "@ethersproject/keccak256": "^5.0.0-beta.130", - "@web3-react/abstract-connector": "^6.0.7", - "@web3-react/types": "^6.0.7", - "tiny-invariant": "^1.0.6", - "tiny-warning": "^1.0.3" - } - }, - "@web3-react/injected-connector": { - "version": "6.0.7", - "resolved": "https://registry.npmjs.org/@web3-react/injected-connector/-/injected-connector-6.0.7.tgz", - "integrity": "sha512-Y7aJSz6pg+MWKtvdyuqyy6LWuH+4Tqtph1LWfiyVms9II9ar/9B/de4R8wh4wjg91wmHkU+D75yP09E/Soh2RA==", - "requires": { - "@web3-react/abstract-connector": "^6.0.7", - "@web3-react/types": "^6.0.7", - "tiny-warning": "^1.0.3" - } - }, - "@web3-react/types": { - "version": "6.0.7", - "resolved": "https://registry.npmjs.org/@web3-react/types/-/types-6.0.7.tgz", - "integrity": "sha512-ofGmfDhxmNT1/P/MgVa8IKSkCStFiyvXe+U5tyZurKdrtTDFU+wJ/LxClPDtFerWpczNFPUSrKcuhfPX1sI6+A==" - }, - "@webassemblyjs/ast": { - "version": "1.11.5", - "resolved": "https://registry.npmjs.org/@webassemblyjs/ast/-/ast-1.11.5.tgz", - "integrity": "sha512-LHY/GSAZZRpsNQH+/oHqhRQ5FT7eoULcBqgfyTB5nQHogFnK3/7QoN7dLnwSE/JkUAF0SrRuclT7ODqMFtWxxQ==", - "requires": { - "@webassemblyjs/helper-numbers": "1.11.5", - "@webassemblyjs/helper-wasm-bytecode": "1.11.5" - } - }, - "@webassemblyjs/floating-point-hex-parser": { - "version": "1.11.5", - "resolved": "https://registry.npmjs.org/@webassemblyjs/floating-point-hex-parser/-/floating-point-hex-parser-1.11.5.tgz", - "integrity": "sha512-1j1zTIC5EZOtCplMBG/IEwLtUojtwFVwdyVMbL/hwWqbzlQoJsWCOavrdnLkemwNoC/EOwtUFch3fuo+cbcXYQ==" - }, - "@webassemblyjs/helper-api-error": { - "version": "1.11.5", - "resolved": "https://registry.npmjs.org/@webassemblyjs/helper-api-error/-/helper-api-error-1.11.5.tgz", - "integrity": "sha512-L65bDPmfpY0+yFrsgz8b6LhXmbbs38OnwDCf6NpnMUYqa+ENfE5Dq9E42ny0qz/PdR0LJyq/T5YijPnU8AXEpA==" - }, - "@webassemblyjs/helper-buffer": { - "version": "1.11.5", - "resolved": "https://registry.npmjs.org/@webassemblyjs/helper-buffer/-/helper-buffer-1.11.5.tgz", - "integrity": "sha512-fDKo1gstwFFSfacIeH5KfwzjykIE6ldh1iH9Y/8YkAZrhmu4TctqYjSh7t0K2VyDSXOZJ1MLhht/k9IvYGcIxg==" - }, - "@webassemblyjs/helper-numbers": { - "version": "1.11.5", - "resolved": "https://registry.npmjs.org/@webassemblyjs/helper-numbers/-/helper-numbers-1.11.5.tgz", - "integrity": "sha512-DhykHXM0ZABqfIGYNv93A5KKDw/+ywBFnuWybZZWcuzWHfbp21wUfRkbtz7dMGwGgT4iXjWuhRMA2Mzod6W4WA==", - "requires": { - "@webassemblyjs/floating-point-hex-parser": "1.11.5", - "@webassemblyjs/helper-api-error": "1.11.5", - "@xtuc/long": "4.2.2" - } - }, - "@webassemblyjs/helper-wasm-bytecode": { - "version": "1.11.5", - "resolved": "https://registry.npmjs.org/@webassemblyjs/helper-wasm-bytecode/-/helper-wasm-bytecode-1.11.5.tgz", - "integrity": "sha512-oC4Qa0bNcqnjAowFn7MPCETQgDYytpsfvz4ujZz63Zu/a/v71HeCAAmZsgZ3YVKec3zSPYytG3/PrRCqbtcAvA==" - }, - "@webassemblyjs/helper-wasm-section": { - "version": "1.11.5", - "resolved": "https://registry.npmjs.org/@webassemblyjs/helper-wasm-section/-/helper-wasm-section-1.11.5.tgz", - "integrity": "sha512-uEoThA1LN2NA+K3B9wDo3yKlBfVtC6rh0i4/6hvbz071E8gTNZD/pT0MsBf7MeD6KbApMSkaAK0XeKyOZC7CIA==", - "requires": { - "@webassemblyjs/ast": "1.11.5", - "@webassemblyjs/helper-buffer": "1.11.5", - "@webassemblyjs/helper-wasm-bytecode": "1.11.5", - "@webassemblyjs/wasm-gen": "1.11.5" - } - }, - "@webassemblyjs/ieee754": { - "version": "1.11.5", - "resolved": "https://registry.npmjs.org/@webassemblyjs/ieee754/-/ieee754-1.11.5.tgz", - "integrity": "sha512-37aGq6qVL8A8oPbPrSGMBcp38YZFXcHfiROflJn9jxSdSMMM5dS5P/9e2/TpaJuhE+wFrbukN2WI6Hw9MH5acg==", - "requires": { - "@xtuc/ieee754": "^1.2.0" - } - }, - "@webassemblyjs/leb128": { - "version": "1.11.5", - "resolved": "https://registry.npmjs.org/@webassemblyjs/leb128/-/leb128-1.11.5.tgz", - "integrity": "sha512-ajqrRSXaTJoPW+xmkfYN6l8VIeNnR4vBOTQO9HzR7IygoCcKWkICbKFbVTNMjMgMREqXEr0+2M6zukzM47ZUfQ==", - "requires": { - "@xtuc/long": "4.2.2" - } - }, - "@webassemblyjs/utf8": { - "version": "1.11.5", - "resolved": "https://registry.npmjs.org/@webassemblyjs/utf8/-/utf8-1.11.5.tgz", - "integrity": "sha512-WiOhulHKTZU5UPlRl53gHR8OxdGsSOxqfpqWeA2FmcwBMaoEdz6b2x2si3IwC9/fSPLfe8pBMRTHVMk5nlwnFQ==" - }, - "@webassemblyjs/wasm-edit": { - "version": "1.11.5", - "resolved": "https://registry.npmjs.org/@webassemblyjs/wasm-edit/-/wasm-edit-1.11.5.tgz", - "integrity": "sha512-C0p9D2fAu3Twwqvygvf42iGCQ4av8MFBLiTb+08SZ4cEdwzWx9QeAHDo1E2k+9s/0w1DM40oflJOpkZ8jW4HCQ==", - "requires": { - "@webassemblyjs/ast": "1.11.5", - "@webassemblyjs/helper-buffer": "1.11.5", - "@webassemblyjs/helper-wasm-bytecode": "1.11.5", - "@webassemblyjs/helper-wasm-section": "1.11.5", - "@webassemblyjs/wasm-gen": "1.11.5", - "@webassemblyjs/wasm-opt": "1.11.5", - "@webassemblyjs/wasm-parser": "1.11.5", - "@webassemblyjs/wast-printer": "1.11.5" - } - }, - "@webassemblyjs/wasm-gen": { - "version": "1.11.5", - "resolved": "https://registry.npmjs.org/@webassemblyjs/wasm-gen/-/wasm-gen-1.11.5.tgz", - "integrity": "sha512-14vteRlRjxLK9eSyYFvw1K8Vv+iPdZU0Aebk3j6oB8TQiQYuO6hj9s4d7qf6f2HJr2khzvNldAFG13CgdkAIfA==", - "requires": { - "@webassemblyjs/ast": "1.11.5", - "@webassemblyjs/helper-wasm-bytecode": "1.11.5", - "@webassemblyjs/ieee754": "1.11.5", - "@webassemblyjs/leb128": "1.11.5", - "@webassemblyjs/utf8": "1.11.5" - } - }, - "@webassemblyjs/wasm-opt": { - "version": "1.11.5", - "resolved": "https://registry.npmjs.org/@webassemblyjs/wasm-opt/-/wasm-opt-1.11.5.tgz", - "integrity": "sha512-tcKwlIXstBQgbKy1MlbDMlXaxpucn42eb17H29rawYLxm5+MsEmgPzeCP8B1Cl69hCice8LeKgZpRUAPtqYPgw==", - "requires": { - "@webassemblyjs/ast": "1.11.5", - "@webassemblyjs/helper-buffer": "1.11.5", - "@webassemblyjs/wasm-gen": "1.11.5", - "@webassemblyjs/wasm-parser": "1.11.5" - } - }, - "@webassemblyjs/wasm-parser": { - "version": "1.11.5", - "resolved": "https://registry.npmjs.org/@webassemblyjs/wasm-parser/-/wasm-parser-1.11.5.tgz", - "integrity": "sha512-SVXUIwsLQlc8srSD7jejsfTU83g7pIGr2YYNb9oHdtldSxaOhvA5xwvIiWIfcX8PlSakgqMXsLpLfbbJ4cBYew==", - "requires": { - "@webassemblyjs/ast": "1.11.5", - "@webassemblyjs/helper-api-error": "1.11.5", - "@webassemblyjs/helper-wasm-bytecode": "1.11.5", - "@webassemblyjs/ieee754": "1.11.5", - "@webassemblyjs/leb128": "1.11.5", - "@webassemblyjs/utf8": "1.11.5" - } - }, - "@webassemblyjs/wast-printer": { - "version": "1.11.5", - "resolved": "https://registry.npmjs.org/@webassemblyjs/wast-printer/-/wast-printer-1.11.5.tgz", - "integrity": "sha512-f7Pq3wvg3GSPUPzR0F6bmI89Hdb+u9WXrSKc4v+N0aV0q6r42WoF92Jp2jEorBEBRoRNXgjp53nBniDXcqZYPA==", - "requires": { - "@webassemblyjs/ast": "1.11.5", - "@xtuc/long": "4.2.2" - } - }, - "@xtuc/ieee754": { - "version": "1.2.0", - "resolved": "https://registry.npmjs.org/@xtuc/ieee754/-/ieee754-1.2.0.tgz", - "integrity": "sha512-DX8nKgqcGwsc0eJSqYt5lwP4DH5FlHnmuWWBRy7X0NcaGR0ZtuyeESgMwTYVEtxmsNGY+qit4QYT/MIYTOTPeA==" - }, - "@xtuc/long": { - "version": "4.2.2", - "resolved": "https://registry.npmjs.org/@xtuc/long/-/long-4.2.2.tgz", - "integrity": "sha512-NuHqBY1PB/D8xU6s/thBgOAiAP7HOYDQ32+BFZILJ8ivkUkAHQnWfn6WhL79Owj1qmUnoN/YPhktdIoucipkAQ==" - }, - "abab": { - "version": "2.0.6", - "resolved": "https://registry.npmjs.org/abab/-/abab-2.0.6.tgz", - "integrity": "sha512-j2afSsaIENvHZN2B8GOpF566vZ5WVk5opAiMTvWgaQT8DkbOqsTfvNAvHoRGU2zzP8cPoqys+xHTRDWW8L+/BA==" - }, - "abort-controller": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/abort-controller/-/abort-controller-3.0.0.tgz", - "integrity": "sha512-h8lQ8tacZYnR3vNQTgibj+tODHI5/+l06Au2Pcriv/Gmet0eaj4TwWH41sO9wnHDiQsEj19q0drzdWdeAHtweg==", - "peer": true, - "requires": { - "event-target-shim": "^5.0.0" - } - }, - "abortcontroller-polyfill": { - "version": "1.7.5", - "resolved": "https://registry.npmjs.org/abortcontroller-polyfill/-/abortcontroller-polyfill-1.7.5.tgz", - "integrity": "sha512-JMJ5soJWP18htbbxJjG7bG6yuI6pRhgJ0scHHTfkUjf6wjP912xZWvM+A4sJK3gqd9E8fcPbDnOefbA9Th/FIQ==" - }, - "abstract-level": { - "version": "1.0.3", - "resolved": "https://registry.npmjs.org/abstract-level/-/abstract-level-1.0.3.tgz", - "integrity": "sha512-t6jv+xHy+VYwc4xqZMn2Pa9DjcdzvzZmQGRjTFc8spIbRGHgBrEKbPq+rYXc7CCo0lxgYvSgKVg9qZAhpVQSjA==", - "peer": true, - "requires": { - "buffer": "^6.0.3", - "catering": "^2.1.0", - "is-buffer": "^2.0.5", - "level-supports": "^4.0.0", - "level-transcoder": "^1.0.1", - "module-error": "^1.0.1", - "queue-microtask": "^1.2.3" - } - }, - "accepts": { - "version": "1.3.8", - "resolved": "https://registry.npmjs.org/accepts/-/accepts-1.3.8.tgz", - "integrity": "sha512-PYAthTa2m2VKxuvSD3DPC/Gy+U+sOA1LAuT8mkmRuvw+NACSaeXEQ+NHcVF7rONl6qcaxV3Uuemwawk+7+SJLw==", - "requires": { - "mime-types": "~2.1.34", - "negotiator": "0.6.3" - } - }, - "acorn": { - "version": "8.7.1", - "resolved": "https://registry.npmjs.org/acorn/-/acorn-8.7.1.tgz", - "integrity": "sha512-Xx54uLJQZ19lKygFXOWsscKUbsBZW0CPykPhVQdhIeIwrbPmJzqeASDInc8nKBnp/JT6igTs82qPXz069H8I/A==" - }, - "acorn-globals": { - "version": "6.0.0", - "resolved": "https://registry.npmjs.org/acorn-globals/-/acorn-globals-6.0.0.tgz", - "integrity": "sha512-ZQl7LOWaF5ePqqcX4hLuv/bLXYQNfNWw2c0/yX/TsPRKamzHcTGQnlCjHT3TsmkOUVEPS3crCxiPfdzE/Trlhg==", - "requires": { - "acorn": "^7.1.1", - "acorn-walk": "^7.1.1" - }, - "dependencies": { - "acorn": { - "version": "7.4.1", - "resolved": "https://registry.npmjs.org/acorn/-/acorn-7.4.1.tgz", - "integrity": "sha512-nQyp0o1/mNdbTO1PO6kHkwSrmgZ0MT/jCCpNiwbUjGoRN4dlBhqJtoQuCnEOKzgTVwg0ZWiCoQy6SxMebQVh8A==" - } - } - }, - "acorn-import-assertions": { - "version": "1.8.0", - "resolved": "https://registry.npmjs.org/acorn-import-assertions/-/acorn-import-assertions-1.8.0.tgz", - "integrity": "sha512-m7VZ3jwz4eK6A4Vtt8Ew1/mNbP24u0FhdyfA7fSvnJR6LMdfOYnmuIrrJAgrYfYJ10F/otaHTtrtrtmHdMNzEw==", - "requires": {} - }, - "acorn-jsx": { - "version": "5.3.2", - "resolved": "https://registry.npmjs.org/acorn-jsx/-/acorn-jsx-5.3.2.tgz", - "integrity": "sha512-rq9s+JNhf0IChjtDXxllJ7g41oZk5SlXtp0LHwyA5cejwn7vKmKp4pPri6YEePv2PU65sAsegbXtIinmDFDXgQ==", - "requires": {} - }, - "acorn-node": { - "version": "1.8.2", - "resolved": "https://registry.npmjs.org/acorn-node/-/acorn-node-1.8.2.tgz", - "integrity": "sha512-8mt+fslDufLYntIoPAaIMUe/lrbrehIiwmR3t2k9LljIzoigEPF27eLk2hy8zSGzmR/ogr7zbRKINMo1u0yh5A==", - "requires": { - "acorn": "^7.0.0", - "acorn-walk": "^7.0.0", - "xtend": "^4.0.2" - }, - "dependencies": { - "acorn": { - "version": "7.4.1", - "resolved": "https://registry.npmjs.org/acorn/-/acorn-7.4.1.tgz", - "integrity": "sha512-nQyp0o1/mNdbTO1PO6kHkwSrmgZ0MT/jCCpNiwbUjGoRN4dlBhqJtoQuCnEOKzgTVwg0ZWiCoQy6SxMebQVh8A==" - } - } - }, - "acorn-walk": { - "version": "7.2.0", - "resolved": "https://registry.npmjs.org/acorn-walk/-/acorn-walk-7.2.0.tgz", - "integrity": "sha512-OPdCF6GsMIP+Az+aWfAAOEt2/+iVDKE7oy6lJ098aoe59oAmK76qV6Gw60SbZ8jHuG2wH058GF4pLFbYamYrVA==" - }, - "address": { - "version": "1.2.0", - "resolved": "https://registry.npmjs.org/address/-/address-1.2.0.tgz", - "integrity": "sha512-tNEZYz5G/zYunxFm7sfhAxkXEuLj3K6BKwv6ZURlsF6yiUQ65z0Q2wZW9L5cPUl9ocofGvXOdFYbFHp0+6MOig==" - }, - "adjust-sourcemap-loader": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/adjust-sourcemap-loader/-/adjust-sourcemap-loader-4.0.0.tgz", - "integrity": "sha512-OXwN5b9pCUXNQHJpwwD2qP40byEmSgzj8B4ydSN0uMNYWiFmJ6x6KwUllMmfk8Rwu/HJDFR7U8ubsWBoN0Xp0A==", - "requires": { - "loader-utils": "^2.0.0", - "regex-parser": "^2.2.11" - } - }, - "adm-zip": { - "version": "0.4.16", - "resolved": "https://registry.npmjs.org/adm-zip/-/adm-zip-0.4.16.tgz", - "integrity": "sha512-TFi4HBKSGfIKsK5YCkKaaFG2m4PEDyViZmEwof3MTIgzimHLto6muaHVpbrljdIvIrFZzEq/p4nafOeLcYegrg==", - "peer": true - }, - "aes-js": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/aes-js/-/aes-js-3.0.0.tgz", - "integrity": "sha512-H7wUZRn8WpTq9jocdxQ2c8x2sKo9ZVmzfRE13GiNJXfp7NcKYEdvl3vspKjXox6RIG2VtaRe4JFvxG4rqp2Zuw==" - }, - "agent-base": { - "version": "6.0.2", - "resolved": "https://registry.npmjs.org/agent-base/-/agent-base-6.0.2.tgz", - "integrity": "sha512-RZNwNclF7+MS/8bDg70amg32dyeZGZxiDuQmZxKLAlQjr3jGyLx+4Kkk58UO7D2QdgFIQCovuSuZESne6RG6XQ==", - "requires": { - "debug": "4" - } - }, - "aggregate-error": { - "version": "3.1.0", - "resolved": "https://registry.npmjs.org/aggregate-error/-/aggregate-error-3.1.0.tgz", - "integrity": "sha512-4I7Td01quW/RpocfNayFdFVk1qSuoh0E7JrbRJ16nH01HhKFQ88INq9Sd+nd72zqRySlr9BmDA8xlEJ6vJMrYA==", - "peer": true, - "requires": { - "clean-stack": "^2.0.0", - "indent-string": "^4.0.0" - } - }, - "ajv": { - "version": "6.12.6", - "resolved": "https://registry.npmjs.org/ajv/-/ajv-6.12.6.tgz", - "integrity": "sha512-j3fVLgvTo527anyYyJOGTYJbG+vnnQYvE0m5mmkc1TK+nxAppkCLMIL0aZ4dblVCNoGShhm+kzE4ZUykBoMg4g==", - "requires": { - "fast-deep-equal": "^3.1.1", - "fast-json-stable-stringify": "^2.0.0", - "json-schema-traverse": "^0.4.1", - "uri-js": "^4.2.2" - } - }, - "ajv-formats": { - "version": "2.1.1", - "resolved": "https://registry.npmjs.org/ajv-formats/-/ajv-formats-2.1.1.tgz", - "integrity": "sha512-Wx0Kx52hxE7C18hkMEggYlEifqWZtYaRgouJor+WMdPnQyEK13vgEWyVNup7SoeeoLMsr4kf5h6dOW11I15MUA==", - "requires": { - "ajv": "^8.0.0" - }, - "dependencies": { - "ajv": { - "version": "8.11.0", - "resolved": "https://registry.npmjs.org/ajv/-/ajv-8.11.0.tgz", - "integrity": "sha512-wGgprdCvMalC0BztXvitD2hC04YffAvtsUn93JbGXYLAtCUO4xd17mCCZQxUOItiBwZvJScWo8NIvQMQ71rdpg==", - "requires": { - "fast-deep-equal": "^3.1.1", - "json-schema-traverse": "^1.0.0", - "require-from-string": "^2.0.2", - "uri-js": "^4.2.2" - } - }, - "json-schema-traverse": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/json-schema-traverse/-/json-schema-traverse-1.0.0.tgz", - "integrity": "sha512-NM8/P9n3XjXhIZn1lLhkFaACTOURQXjWhV4BA/RnOv8xvgqtqpAX9IO4mRQxSx1Rlo4tqzeqb0sOlruaOy3dug==" - } - } - }, - "ajv-keywords": { - "version": "3.5.2", - "resolved": "https://registry.npmjs.org/ajv-keywords/-/ajv-keywords-3.5.2.tgz", - "integrity": "sha512-5p6WTN0DdTGVQk6VjcEju19IgaHudalcfabD7yhDGeA6bcQnmL+CpveLJq/3hvfwd1aof6L386Ougkx6RfyMIQ==", - "requires": {} - }, - "ansi-colors": { - "version": "4.1.3", - "resolved": "https://registry.npmjs.org/ansi-colors/-/ansi-colors-4.1.3.tgz", - "integrity": "sha512-/6w/C21Pm1A7aZitlI5Ni/2J6FFQN8i1Cvz3kHABAAbw93v/NlvKdVOqz7CCWz/3iv/JplRSEEZ83XION15ovw==", - "peer": true - }, - "ansi-escapes": { - "version": "4.3.2", - "resolved": "https://registry.npmjs.org/ansi-escapes/-/ansi-escapes-4.3.2.tgz", - "integrity": "sha512-gKXj5ALrKWQLsYG9jlTRmR/xKluxHV+Z9QEwNIgCfM1/uwPMCuzVVnh5mwTd+OuBZcwSIMbqssNWRm1lE51QaQ==", - "requires": { - "type-fest": "^0.21.3" - } - }, - "ansi-html-community": { - "version": "0.0.8", - "resolved": "https://registry.npmjs.org/ansi-html-community/-/ansi-html-community-0.0.8.tgz", - "integrity": "sha512-1APHAyr3+PCamwNw3bXCPp4HFLONZt/yIH0sZp0/469KWNTEy+qN5jQ3GVX6DMZ1UXAi34yVwtTeaG/HpBuuzw==" - }, - "ansi-regex": { - "version": "5.0.1", - "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-5.0.1.tgz", - "integrity": "sha512-quJQXlTSUGL2LH9SUXo8VwsY4soanhgo6LNSm84E1LBcE8s3O0wpdiRzyR9z/ZZJMlMWv37qOOb9pdJlMUEKFQ==" - }, - "ansi-sequence-parser": { - "version": "1.1.0", - "resolved": "https://registry.npmjs.org/ansi-sequence-parser/-/ansi-sequence-parser-1.1.0.tgz", - "integrity": "sha512-lEm8mt52to2fT8GhciPCGeCXACSz2UwIN4X2e2LJSnZ5uAbn2/dsYdOmUXq0AtWS5cpAupysIneExOgH0Vd2TQ==" - }, - "ansi-styles": { - "version": "3.2.1", - "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-3.2.1.tgz", - "integrity": "sha512-VT0ZI6kZRdTh8YyJw3SMbYm/u+NqfsAxEpWO0Pf9sq8/e94WxxOpPKx9FR1FlyCtOVDNOQ+8ntlqFxiRc+r5qA==", - "requires": { - "color-convert": "^1.9.0" - } - }, - "any-base": { - "version": "1.1.0", - "resolved": "https://registry.npmjs.org/any-base/-/any-base-1.1.0.tgz", - "integrity": "sha512-uMgjozySS8adZZYePpaWs8cxB9/kdzmpX6SgJZ+wbz1K5eYk5QMYDVJaZKhxyIHUdnnJkfR7SVgStgH7LkGUyg==" - }, - "anymatch": { - "version": "3.1.2", - "resolved": "https://registry.npmjs.org/anymatch/-/anymatch-3.1.2.tgz", - "integrity": "sha512-P43ePfOAIupkguHUycrc4qJ9kz8ZiuOUijaETwX7THt0Y/GNK7v0aa8rY816xWjZ7rJdA5XdMcpVFTKMq+RvWg==", - "requires": { - "normalize-path": "^3.0.0", - "picomatch": "^2.0.4" - } - }, - "arg": { - "version": "5.0.2", - "resolved": "https://registry.npmjs.org/arg/-/arg-5.0.2.tgz", - "integrity": "sha512-PYjyFOLKQ9y57JvQ6QLo8dAgNqswh8M1RMJYdQduT6xbWSgK36P/Z/v+p888pM69jMMfS8Xd8F6I1kQ/I9HUGg==" - }, - "argparse": { - "version": "1.0.10", - "resolved": "https://registry.npmjs.org/argparse/-/argparse-1.0.10.tgz", - "integrity": "sha512-o5Roy6tNG4SL/FOkCAN6RzjiakZS25RLYFrcMttJqbdd8BWrnA+fGz57iN5Pb06pvBGvl5gQ0B48dJlslXvoTg==", - "requires": { - "sprintf-js": "~1.0.2" - } - }, - "aria-query": { - "version": "4.2.2", - "resolved": "https://registry.npmjs.org/aria-query/-/aria-query-4.2.2.tgz", - "integrity": "sha512-o/HelwhuKpTj/frsOsbNLNgnNGVIFsVP/SW2BSF14gVl7kAfMOJ6/8wUAUvG1R1NHKrfG+2sHZTu0yauT1qBrA==", - "requires": { - "@babel/runtime": "^7.10.2", - "@babel/runtime-corejs3": "^7.10.2" - } - }, - "array-back": { - "version": "3.1.0", - "resolved": "https://registry.npmjs.org/array-back/-/array-back-3.1.0.tgz", - "integrity": "sha512-TkuxA4UCOvxuDK6NZYXCalszEzj+TLszyASooky+i742l9TqsOdYCMJJupxRic61hwquNtppB3hgcuq9SVSH1Q==", - "dev": true - }, - "array-buffer-byte-length": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/array-buffer-byte-length/-/array-buffer-byte-length-1.0.0.tgz", - "integrity": "sha512-LPuwb2P+NrQw3XhxGc36+XSvuBPopovXYTR9Ew++Du9Yb/bx5AzBfrIsBoj0EZUifjQU+sHL21sseZ3jerWO/A==", - "requires": { - "call-bind": "^1.0.2", - "is-array-buffer": "^3.0.1" - } - }, - "array-flatten": { - "version": "2.1.2", - "resolved": "https://registry.npmjs.org/array-flatten/-/array-flatten-2.1.2.tgz", - "integrity": "sha512-hNfzcOV8W4NdualtqBFPyVO+54DSJuZGY9qT4pRroB6S9e3iiido2ISIC5h9R2sPJ8H3FHCIiEnsv1lPXO3KtQ==" - }, - "array-includes": { - "version": "3.1.5", - "resolved": "https://registry.npmjs.org/array-includes/-/array-includes-3.1.5.tgz", - "integrity": "sha512-iSDYZMMyTPkiFasVqfuAQnWAYcvO/SeBSCGKePoEthjp4LEMTe4uLc7b025o4jAZpHhihh8xPo99TNWUWWkGDQ==", - "requires": { - "call-bind": "^1.0.2", - "define-properties": "^1.1.4", - "es-abstract": "^1.19.5", - "get-intrinsic": "^1.1.1", - "is-string": "^1.0.7" - } - }, - "array-union": { - "version": "2.1.0", - "resolved": "https://registry.npmjs.org/array-union/-/array-union-2.1.0.tgz", - "integrity": "sha512-HGyxoOTYUyCM6stUe6EJgnd4EoewAI7zMdfqO+kGjnlZmBDz/cR5pf8r/cR4Wq60sL/p0IkcjUEEPwS3GFrIyw==" - }, - "array.prototype.find": { - "version": "2.2.1", - "resolved": "https://registry.npmjs.org/array.prototype.find/-/array.prototype.find-2.2.1.tgz", - "integrity": "sha512-I2ri5Z9uMpMvnsNrHre9l3PaX+z9D0/z6F7Yt2u15q7wt0I62g5kX6xUKR1SJiefgG+u2/gJUmM8B47XRvQR6w==", - "requires": { - "call-bind": "^1.0.2", - "define-properties": "^1.1.4", - "es-abstract": "^1.20.4", - "es-shim-unscopables": "^1.0.0" - } - }, - "array.prototype.flat": { - "version": "1.3.0", - "resolved": "https://registry.npmjs.org/array.prototype.flat/-/array.prototype.flat-1.3.0.tgz", - "integrity": "sha512-12IUEkHsAhA4DY5s0FPgNXIdc8VRSqD9Zp78a5au9abH/SOBrsp082JOWFNTjkMozh8mqcdiKuaLGhPeYztxSw==", - "requires": { - "call-bind": "^1.0.2", - "define-properties": "^1.1.3", - "es-abstract": "^1.19.2", - "es-shim-unscopables": "^1.0.0" - } - }, - "array.prototype.flatmap": { - "version": "1.3.0", - "resolved": "https://registry.npmjs.org/array.prototype.flatmap/-/array.prototype.flatmap-1.3.0.tgz", - "integrity": "sha512-PZC9/8TKAIxcWKdyeb77EzULHPrIX/tIZebLJUQOMR1OwYosT8yggdfWScfTBCDj5utONvOuPQQumYsU2ULbkg==", - "requires": { - "call-bind": "^1.0.2", - "define-properties": "^1.1.3", - "es-abstract": "^1.19.2", - "es-shim-unscopables": "^1.0.0" - } - }, - "array.prototype.reduce": { - "version": "1.0.4", - "resolved": "https://registry.npmjs.org/array.prototype.reduce/-/array.prototype.reduce-1.0.4.tgz", - "integrity": "sha512-WnM+AjG/DvLRLo4DDl+r+SvCzYtD2Jd9oeBYMcEaI7t3fFrHY9M53/wdLcTvmZNQ70IU6Htj0emFkZ5TS+lrdw==", - "requires": { - "call-bind": "^1.0.2", - "define-properties": "^1.1.3", - "es-abstract": "^1.19.2", - "es-array-method-boxes-properly": "^1.0.0", - "is-string": "^1.0.7" - } - }, - "asap": { - "version": "2.0.6", - "resolved": "https://registry.npmjs.org/asap/-/asap-2.0.6.tgz", - "integrity": "sha512-BSHWgDSAiKs50o2Re8ppvp3seVHXSRM44cdSsT9FfNEUUZLOGWVCsiWaRPWM1Znn+mqZ1OfVZ3z3DWEzSp7hRA==" - }, - "asn1": { - "version": "0.2.6", - "resolved": "https://registry.npmjs.org/asn1/-/asn1-0.2.6.tgz", - "integrity": "sha512-ix/FxPn0MDjeyJ7i/yoHGFt/EX6LyNbxSEhPPXODPL+KB0VPk86UYfL0lMdy+KCnv+fmvIzySwaK5COwqVbWTQ==", - "requires": { - "safer-buffer": "~2.1.0" - } - }, - "assert-plus": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/assert-plus/-/assert-plus-1.0.0.tgz", - "integrity": "sha512-NfJ4UzBCcQGLDlQq7nHxH+tv3kyZ0hHQqF5BO6J7tNJeP5do1llPr8dZ8zHonfhAu0PHAdMkSo+8o0wxg9lZWw==" - }, - "ast-types-flow": { - "version": "0.0.7", - "resolved": "https://registry.npmjs.org/ast-types-flow/-/ast-types-flow-0.0.7.tgz", - "integrity": "sha512-eBvWn1lvIApYMhzQMsu9ciLfkBY499mFZlNqG+/9WR7PVlroQw0vG30cOQQbaKz3sCEc44TAOu2ykzqXSNnwag==" - }, - "async": { - "version": "3.2.4", - "resolved": "https://registry.npmjs.org/async/-/async-3.2.4.tgz", - "integrity": "sha512-iAB+JbDEGXhyIUavoDl9WP/Jj106Kz9DEn1DPgYw5ruDn0e3Wgi3sKFm55sASdGBNOQB8F59d9qQ7deqrHA8wQ==" - }, - "async-limiter": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/async-limiter/-/async-limiter-1.0.1.tgz", - "integrity": "sha512-csOlWGAcRFJaI6m+F2WKdnMKr4HhdhFVBk0H/QbJFMCr+uO2kwohwXQPxw/9OCxp05r5ghVBFSyioixx3gfkNQ==" - }, - "async-retry": { - "version": "1.3.3", - "resolved": "https://registry.npmjs.org/async-retry/-/async-retry-1.3.3.tgz", - "integrity": "sha512-wfr/jstw9xNi/0teMHrRW7dsz3Lt5ARhYNZ2ewpadnhaIp5mbALhOAP+EAdsC7t4Z6wqsDVv9+W6gm1Dk9mEyw==", - "requires": { - "retry": "0.13.1" - } - }, - "asynckit": { - "version": "0.4.0", - "resolved": "https://registry.npmjs.org/asynckit/-/asynckit-0.4.0.tgz", - "integrity": "sha512-Oei9OH4tRh0YqU3GxhX79dM/mwVgvbZJaSNaRk+bshkj0S5cfHcgYakreBjrHwatXKbz+IoIdYLxrKim2MjW0Q==" - }, - "at-least-node": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/at-least-node/-/at-least-node-1.0.0.tgz", - "integrity": "sha512-+q/t7Ekv1EDY2l6Gda6LLiX14rU9TV20Wa3ofeQmwPFZbOMo9DXrLbOjFaaclkXKWidIaopwAObQDqwWtGUjqg==" - }, - "atob": { - "version": "2.1.2", - "resolved": "https://registry.npmjs.org/atob/-/atob-2.1.2.tgz", - "integrity": "sha512-Wm6ukoaOGJi/73p/cl2GvLjTI5JM1k/O14isD73YML8StrH/7/lRFgmg8nICZgD3bZZvjwCGxtMOD3wWNAu8cg==" - }, - "autoprefixer": { - "version": "10.4.7", - "resolved": "https://registry.npmjs.org/autoprefixer/-/autoprefixer-10.4.7.tgz", - "integrity": "sha512-ypHju4Y2Oav95SipEcCcI5J7CGPuvz8oat7sUtYj3ClK44bldfvtvcxK6IEK++7rqB7YchDGzweZIBG+SD0ZAA==", - "requires": { - "browserslist": "^4.20.3", - "caniuse-lite": "^1.0.30001335", - "fraction.js": "^4.2.0", - "normalize-range": "^0.1.2", - "picocolors": "^1.0.0", - "postcss-value-parser": "^4.2.0" - } - }, - "available-typed-arrays": { - "version": "1.0.5", - "resolved": "https://registry.npmjs.org/available-typed-arrays/-/available-typed-arrays-1.0.5.tgz", - "integrity": "sha512-DMD0KiN46eipeziST1LPP/STfDU0sufISXmjSgvVsoU2tqxctQeASejWcfNtxYKqETM1UxQ8sp2OrSBWpHY6sw==" - }, - "await-timeout": { - "version": "1.1.1", - "resolved": "https://registry.npmjs.org/await-timeout/-/await-timeout-1.1.1.tgz", - "integrity": "sha512-gsDXAS6XVc4Jt+7S92MPX6Noq69bdeXUPEaXd8dk3+yVr629LTDLxNt4j1ycBbrU+AStK2PhKIyNIM+xzWMVOQ==" - }, - "aws-sign2": { - "version": "0.7.0", - "resolved": "https://registry.npmjs.org/aws-sign2/-/aws-sign2-0.7.0.tgz", - "integrity": "sha512-08kcGqnYf/YmjoRhfxyu+CLxBjUtHLXLXX/vUfx9l2LYzG3c1m61nrpyFUZI6zeS+Li/wWMMidD9KgrqtGq3mA==" - }, - "aws4": { - "version": "1.12.0", - "resolved": "https://registry.npmjs.org/aws4/-/aws4-1.12.0.tgz", - "integrity": "sha512-NmWvPnx0F1SfrQbYwOi7OeaNGokp9XhzNioJ/CSBs8Qa4vxug81mhJEAVZwxXuBmYB5KDRfMq/F3RR0BIU7sWg==" - }, - "axe-core": { - "version": "4.4.2", - "resolved": "https://registry.npmjs.org/axe-core/-/axe-core-4.4.2.tgz", - "integrity": "sha512-LVAaGp/wkkgYJcjmHsoKx4juT1aQvJyPcW09MLCjVTh3V2cc6PnyempiLMNH5iMdfIX/zdbjUx2KDjMLCTdPeA==" - }, - "axios": { - "version": "0.21.4", - "resolved": "https://registry.npmjs.org/axios/-/axios-0.21.4.tgz", - "integrity": "sha512-ut5vewkiu8jjGBdqpM44XxjuCjq9LAKeHVmoVfHVzy8eHgxxq8SbAVQNovDA8mVi05kP0Ea/n/UzcSHcTJQfNg==", - "requires": { - "follow-redirects": "^1.14.0" - } - }, - "axobject-query": { - "version": "2.2.0", - "resolved": "https://registry.npmjs.org/axobject-query/-/axobject-query-2.2.0.tgz", - "integrity": "sha512-Td525n+iPOOyUQIeBfcASuG6uJsDOITl7Mds5gFyerkWiX7qhUTdYUBlSgNMyVqtSJqwpt1kXGLdUt6SykLMRA==" - }, - "babel-jest": { - "version": "27.5.1", - "resolved": "https://registry.npmjs.org/babel-jest/-/babel-jest-27.5.1.tgz", - "integrity": "sha512-cdQ5dXjGRd0IBRATiQ4mZGlGlRE8kJpjPOixdNRdT+m3UcNqmYWN6rK6nvtXYfY3D76cb8s/O1Ss8ea24PIwcg==", - "requires": { - "@jest/transform": "^27.5.1", - "@jest/types": "^27.5.1", - "@types/babel__core": "^7.1.14", - "babel-plugin-istanbul": "^6.1.1", - "babel-preset-jest": "^27.5.1", - "chalk": "^4.0.0", - "graceful-fs": "^4.2.9", - "slash": "^3.0.0" - }, - "dependencies": { - "ansi-styles": { - "version": "4.3.0", - "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", - "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", - "requires": { - "color-convert": "^2.0.1" - } - }, - "chalk": { - "version": "4.1.2", - "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz", - "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==", - "requires": { - "ansi-styles": "^4.1.0", - "supports-color": "^7.1.0" - } - }, - "color-convert": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz", - "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==", - "requires": { - "color-name": "~1.1.4" - } - }, - "color-name": { - "version": "1.1.4", - "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz", - "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==" - }, - "has-flag": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz", - "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==" - }, - "supports-color": { - "version": "7.2.0", - "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", - "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", - "requires": { - "has-flag": "^4.0.0" - } - } - } - }, - "babel-loader": { - "version": "8.2.5", - "resolved": "https://registry.npmjs.org/babel-loader/-/babel-loader-8.2.5.tgz", - "integrity": "sha512-OSiFfH89LrEMiWd4pLNqGz4CwJDtbs2ZVc+iGu2HrkRfPxId9F2anQj38IxWpmRfsUY0aBZYi1EFcd3mhtRMLQ==", - "requires": { - "find-cache-dir": "^3.3.1", - "loader-utils": "^2.0.0", - "make-dir": "^3.1.0", - "schema-utils": "^2.6.5" - }, - "dependencies": { - "schema-utils": { - "version": "2.7.1", - "resolved": "https://registry.npmjs.org/schema-utils/-/schema-utils-2.7.1.tgz", - "integrity": "sha512-SHiNtMOUGWBQJwzISiVYKu82GiV4QYGePp3odlY1tuKO7gPtphAT5R/py0fA6xtbgLL/RvtJZnU9b8s0F1q0Xg==", - "requires": { - "@types/json-schema": "^7.0.5", - "ajv": "^6.12.4", - "ajv-keywords": "^3.5.2" - } - } - } - }, - "babel-plugin-dynamic-import-node": { - "version": "2.3.3", - "resolved": "https://registry.npmjs.org/babel-plugin-dynamic-import-node/-/babel-plugin-dynamic-import-node-2.3.3.tgz", - "integrity": "sha512-jZVI+s9Zg3IqA/kdi0i6UDCybUI3aSBLnglhYbSSjKlV7yF1F/5LWv8MakQmvYpnbJDS6fcBL2KzHSxNCMtWSQ==", - "requires": { - "object.assign": "^4.1.0" - } - }, - "babel-plugin-emotion": { - "version": "10.2.2", - "resolved": "https://registry.npmjs.org/babel-plugin-emotion/-/babel-plugin-emotion-10.2.2.tgz", - "integrity": "sha512-SMSkGoqTbTyUTDeuVuPIWifPdUGkTk1Kf9BWRiXIOIcuyMfsdp2EjeiiFvOzX8NOBvEh/ypKYvUh2rkgAJMCLA==", - "requires": { - "@babel/helper-module-imports": "^7.0.0", - "@emotion/hash": "0.8.0", - "@emotion/memoize": "0.7.4", - "@emotion/serialize": "^0.11.16", - "babel-plugin-macros": "^2.0.0", - "babel-plugin-syntax-jsx": "^6.18.0", - "convert-source-map": "^1.5.0", - "escape-string-regexp": "^1.0.5", - "find-root": "^1.1.0", - "source-map": "^0.5.7" - }, - "dependencies": { - "@emotion/memoize": { - "version": "0.7.4", - "resolved": "https://registry.npmjs.org/@emotion/memoize/-/memoize-0.7.4.tgz", - "integrity": "sha512-Ja/Vfqe3HpuzRsG1oBtWTHk2PGZ7GR+2Vz5iYGelAw8dx32K0y7PjVuxK6z1nMpZOqAFsRUPCkK1YjJ56qJlgw==" - }, - "@emotion/serialize": { - "version": "0.11.16", - "resolved": "https://registry.npmjs.org/@emotion/serialize/-/serialize-0.11.16.tgz", - "integrity": "sha512-G3J4o8by0VRrO+PFeSc3js2myYNOXVJ3Ya+RGVxnshRYgsvErfAOglKAiy1Eo1vhzxqtUvjCyS5gtewzkmvSSg==", - "requires": { - "@emotion/hash": "0.8.0", - "@emotion/memoize": "0.7.4", - "@emotion/unitless": "0.7.5", - "@emotion/utils": "0.11.3", - "csstype": "^2.5.7" - } - }, - "@emotion/utils": { - "version": "0.11.3", - "resolved": "https://registry.npmjs.org/@emotion/utils/-/utils-0.11.3.tgz", - "integrity": "sha512-0o4l6pZC+hI88+bzuaX/6BgOvQVhbt2PfmxauVaYOGgbsAw14wdKyvMCZXnsnsHys94iadcF+RG/wZyx6+ZZBw==" - }, - "babel-plugin-macros": { - "version": "2.8.0", - "resolved": "https://registry.npmjs.org/babel-plugin-macros/-/babel-plugin-macros-2.8.0.tgz", - "integrity": "sha512-SEP5kJpfGYqYKpBrj5XU3ahw5p5GOHJ0U5ssOSQ/WBVdwkD2Dzlce95exQTs3jOVWPPKLBN2rlEWkCK7dSmLvg==", - "requires": { - "@babel/runtime": "^7.7.2", - "cosmiconfig": "^6.0.0", - "resolve": "^1.12.0" - } - }, - "cosmiconfig": { - "version": "6.0.0", - "resolved": "https://registry.npmjs.org/cosmiconfig/-/cosmiconfig-6.0.0.tgz", - "integrity": "sha512-xb3ZL6+L8b9JLLCx3ZdoZy4+2ECphCMo2PwqgP1tlfVq6M6YReyzBJtvWWtbDSpNr9hn96pkCiZqUcFEc+54Qg==", - "requires": { - "@types/parse-json": "^4.0.0", - "import-fresh": "^3.1.0", - "parse-json": "^5.0.0", - "path-type": "^4.0.0", - "yaml": "^1.7.2" - } - }, - "csstype": { - "version": "2.6.21", - "resolved": "https://registry.npmjs.org/csstype/-/csstype-2.6.21.tgz", - "integrity": "sha512-Z1PhmomIfypOpoMjRQB70jfvy/wxT50qW08YXO5lMIJkrdq4yOTR+AW7FqutScmB9NkLwxo+jU+kZLbofZZq/w==" - }, - "source-map": { - "version": "0.5.7", - "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.5.7.tgz", - "integrity": "sha512-LbrmJOMUSdEVxIKvdcJzQC+nQhe8FUZQTXQy6+I75skNgn3OoQ0DZA8YnFa7gp8tqtL3KPf1kmo0R5DoApeSGQ==" - } - } - }, - "babel-plugin-istanbul": { - "version": "6.1.1", - "resolved": "https://registry.npmjs.org/babel-plugin-istanbul/-/babel-plugin-istanbul-6.1.1.tgz", - "integrity": "sha512-Y1IQok9821cC9onCx5otgFfRm7Lm+I+wwxOx738M/WLPZ9Q42m4IG5W0FNX8WLL2gYMZo3JkuXIH2DOpWM+qwA==", - "requires": { - "@babel/helper-plugin-utils": "^7.0.0", - "@istanbuljs/load-nyc-config": "^1.0.0", - "@istanbuljs/schema": "^0.1.2", - "istanbul-lib-instrument": "^5.0.4", - "test-exclude": "^6.0.0" - } - }, - "babel-plugin-jest-hoist": { - "version": "27.5.1", - "resolved": "https://registry.npmjs.org/babel-plugin-jest-hoist/-/babel-plugin-jest-hoist-27.5.1.tgz", - "integrity": "sha512-50wCwD5EMNW4aRpOwtqzyZHIewTYNxLA4nhB+09d8BIssfNfzBRhkBIHiaPv1Si226TQSvp8gxAJm2iY2qs2hQ==", - "requires": { - "@babel/template": "^7.3.3", - "@babel/types": "^7.3.3", - "@types/babel__core": "^7.0.0", - "@types/babel__traverse": "^7.0.6" - } - }, - "babel-plugin-macros": { - "version": "3.1.0", - "resolved": "https://registry.npmjs.org/babel-plugin-macros/-/babel-plugin-macros-3.1.0.tgz", - "integrity": "sha512-Cg7TFGpIr01vOQNODXOOaGz2NpCU5gl8x1qJFbb6hbZxR7XrcE2vtbAsTAbJ7/xwJtUuJEw8K8Zr/AE0LHlesg==", - "requires": { - "@babel/runtime": "^7.12.5", - "cosmiconfig": "^7.0.0", - "resolve": "^1.19.0" - } - }, - "babel-plugin-named-asset-import": { - "version": "0.3.8", - "resolved": "https://registry.npmjs.org/babel-plugin-named-asset-import/-/babel-plugin-named-asset-import-0.3.8.tgz", - "integrity": "sha512-WXiAc++qo7XcJ1ZnTYGtLxmBCVbddAml3CEXgWaBzNzLNoxtQ8AiGEFDMOhot9XjTCQbvP5E77Fj9Gk924f00Q==", - "requires": {} - }, - "babel-plugin-polyfill-corejs2": { - "version": "0.3.1", - "resolved": "https://registry.npmjs.org/babel-plugin-polyfill-corejs2/-/babel-plugin-polyfill-corejs2-0.3.1.tgz", - "integrity": "sha512-v7/T6EQcNfVLfcN2X8Lulb7DjprieyLWJK/zOWH5DUYcAgex9sP3h25Q+DLsX9TloXe3y1O8l2q2Jv9q8UVB9w==", - "requires": { - "@babel/compat-data": "^7.13.11", - "@babel/helper-define-polyfill-provider": "^0.3.1", - "semver": "^6.1.1" - }, - "dependencies": { - "semver": { - "version": "6.3.0", - "resolved": "https://registry.npmjs.org/semver/-/semver-6.3.0.tgz", - "integrity": "sha512-b39TBaTSfV6yBrapU89p5fKekE2m/NwnDocOVruQFS1/veMgdzuPcnOM34M6CwxW8jH/lxEa5rBoDeUwu5HHTw==" - } - } - }, - "babel-plugin-polyfill-corejs3": { - "version": "0.5.2", - "resolved": "https://registry.npmjs.org/babel-plugin-polyfill-corejs3/-/babel-plugin-polyfill-corejs3-0.5.2.tgz", - "integrity": "sha512-G3uJih0XWiID451fpeFaYGVuxHEjzKTHtc9uGFEjR6hHrvNzeS/PX+LLLcetJcytsB5m4j+K3o/EpXJNb/5IEQ==", - "requires": { - "@babel/helper-define-polyfill-provider": "^0.3.1", - "core-js-compat": "^3.21.0" - } - }, - "babel-plugin-polyfill-regenerator": { - "version": "0.3.1", - "resolved": "https://registry.npmjs.org/babel-plugin-polyfill-regenerator/-/babel-plugin-polyfill-regenerator-0.3.1.tgz", - "integrity": "sha512-Y2B06tvgHYt1x0yz17jGkGeeMr5FeKUu+ASJ+N6nB5lQ8Dapfg42i0OVrf8PNGJ3zKL4A23snMi1IRwrqqND7A==", - "requires": { - "@babel/helper-define-polyfill-provider": "^0.3.1" - } - }, - "babel-plugin-styled-components": { - "version": "2.1.1", - "resolved": "https://registry.npmjs.org/babel-plugin-styled-components/-/babel-plugin-styled-components-2.1.1.tgz", - "integrity": "sha512-c8lJlszObVQPguHkI+akXv8+Jgb9Ccujx0EetL7oIvwU100LxO6XAGe45qry37wUL40a5U9f23SYrivro2XKhA==", - "requires": { - "@babel/helper-annotate-as-pure": "^7.16.0", - "@babel/helper-module-imports": "^7.16.0", - "babel-plugin-syntax-jsx": "^6.18.0", - "lodash": "^4.17.21", - "picomatch": "^2.3.0" - } - }, - "babel-plugin-syntax-jsx": { - "version": "6.18.0", - "resolved": "https://registry.npmjs.org/babel-plugin-syntax-jsx/-/babel-plugin-syntax-jsx-6.18.0.tgz", - "integrity": "sha512-qrPaCSo9c8RHNRHIotaufGbuOBN8rtdC4QrrFFc43vyWCCz7Kl7GL1PGaXtMGQZUXrkCjNEgxDfmAuAabr/rlw==" - }, - "babel-plugin-transform-react-remove-prop-types": { - "version": "0.4.24", - "resolved": "https://registry.npmjs.org/babel-plugin-transform-react-remove-prop-types/-/babel-plugin-transform-react-remove-prop-types-0.4.24.tgz", - "integrity": "sha512-eqj0hVcJUR57/Ug2zE1Yswsw4LhuqqHhD+8v120T1cl3kjg76QwtyBrdIk4WVwK+lAhBJVYCd/v+4nc4y+8JsA==" - }, - "babel-preset-current-node-syntax": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/babel-preset-current-node-syntax/-/babel-preset-current-node-syntax-1.0.1.tgz", - "integrity": "sha512-M7LQ0bxarkxQoN+vz5aJPsLBn77n8QgTFmo8WK0/44auK2xlCXrYcUxHFxgU7qW5Yzw/CjmLRK2uJzaCd7LvqQ==", - "requires": { - "@babel/plugin-syntax-async-generators": "^7.8.4", - "@babel/plugin-syntax-bigint": "^7.8.3", - "@babel/plugin-syntax-class-properties": "^7.8.3", - "@babel/plugin-syntax-import-meta": "^7.8.3", - "@babel/plugin-syntax-json-strings": "^7.8.3", - "@babel/plugin-syntax-logical-assignment-operators": "^7.8.3", - "@babel/plugin-syntax-nullish-coalescing-operator": "^7.8.3", - "@babel/plugin-syntax-numeric-separator": "^7.8.3", - "@babel/plugin-syntax-object-rest-spread": "^7.8.3", - "@babel/plugin-syntax-optional-catch-binding": "^7.8.3", - "@babel/plugin-syntax-optional-chaining": "^7.8.3", - "@babel/plugin-syntax-top-level-await": "^7.8.3" - } - }, - "babel-preset-jest": { - "version": "27.5.1", - "resolved": "https://registry.npmjs.org/babel-preset-jest/-/babel-preset-jest-27.5.1.tgz", - "integrity": "sha512-Nptf2FzlPCWYuJg41HBqXVT8ym6bXOevuCTbhxlUpjwtysGaIWFvDEjp4y+G7fl13FgOdjs7P/DmErqH7da0Ag==", - "requires": { - "babel-plugin-jest-hoist": "^27.5.1", - "babel-preset-current-node-syntax": "^1.0.0" - } - }, - "babel-preset-react-app": { - "version": "10.0.1", - "resolved": "https://registry.npmjs.org/babel-preset-react-app/-/babel-preset-react-app-10.0.1.tgz", - "integrity": "sha512-b0D9IZ1WhhCWkrTXyFuIIgqGzSkRIH5D5AmB0bXbzYAB1OBAwHcUeyWW2LorutLWF5btNo/N7r/cIdmvvKJlYg==", - "requires": { - "@babel/core": "^7.16.0", - "@babel/plugin-proposal-class-properties": "^7.16.0", - "@babel/plugin-proposal-decorators": "^7.16.4", - "@babel/plugin-proposal-nullish-coalescing-operator": "^7.16.0", - "@babel/plugin-proposal-numeric-separator": "^7.16.0", - "@babel/plugin-proposal-optional-chaining": "^7.16.0", - "@babel/plugin-proposal-private-methods": "^7.16.0", - "@babel/plugin-transform-flow-strip-types": "^7.16.0", - "@babel/plugin-transform-react-display-name": "^7.16.0", - "@babel/plugin-transform-runtime": "^7.16.4", - "@babel/preset-env": "^7.16.4", - "@babel/preset-react": "^7.16.0", - "@babel/preset-typescript": "^7.16.0", - "@babel/runtime": "^7.16.3", - "babel-plugin-macros": "^3.1.0", - "babel-plugin-transform-react-remove-prop-types": "^0.4.24" - } - }, - "balanced-match": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/balanced-match/-/balanced-match-1.0.2.tgz", - "integrity": "sha512-3oSeUO0TMV67hN1AmbXsK4yaqU7tjiHlbxRDZOpH0KW9+CeX4bRAaX0Anxt0tx2MrpRpWwQaPwIlISEJhYU5Pw==" - }, - "base-x": { - "version": "3.0.9", - "resolved": "https://registry.npmjs.org/base-x/-/base-x-3.0.9.tgz", - "integrity": "sha512-H7JU6iBHTal1gp56aKoaa//YUxEaAOUiydvrV/pILqIHXTtqxSkATOnDA2u+jZ/61sD+L/412+7kzXRtWukhpQ==", - "requires": { - "safe-buffer": "^5.0.1" - } - }, - "base64-js": { - "version": "1.5.1", - "resolved": "https://registry.npmjs.org/base64-js/-/base64-js-1.5.1.tgz", - "integrity": "sha512-AKpaYlHn8t4SVbOHCy+b5+KKgvR4vrsD8vbvrbiQJps7fKDTkjkDry6ji0rUJjC0kzbNePLwzxq8iypo41qeWA==" - }, - "base64-sol": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/base64-sol/-/base64-sol-1.0.1.tgz", - "integrity": "sha512-ld3cCNMeXt4uJXmLZBHFGMvVpK9KsLVEhPpFRXnvSVAqABKbuNZg/+dsq3NuM+wxFLb/UrVkz7m1ciWmkMfTbg==" - }, - "batch": { - "version": "0.6.1", - "resolved": "https://registry.npmjs.org/batch/-/batch-0.6.1.tgz", - "integrity": "sha512-x+VAiMRL6UPkx+kudNvxTl6hB2XNNCG2r+7wixVfIYwu/2HKRXimwQyaumLjMveWvT2Hkd/cAJw+QBMfJ/EKVw==" - }, - "bcrypt-pbkdf": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/bcrypt-pbkdf/-/bcrypt-pbkdf-1.0.2.tgz", - "integrity": "sha512-qeFIXtP4MSoi6NLqO12WfqARWWuCKi2Rn/9hJLEmtB5yTNr9DqFWkJRCf2qShWzPeAMRnOgCrq0sg/KLv5ES9w==", - "requires": { - "tweetnacl": "^0.14.3" - }, - "dependencies": { - "tweetnacl": { - "version": "0.14.5", - "resolved": "https://registry.npmjs.org/tweetnacl/-/tweetnacl-0.14.5.tgz", - "integrity": "sha512-KXXFFdAbFXY4geFIwoyNK+f5Z1b7swfXABfL7HXCmoIWMKU3dmS26672A4EeQtDzLKy7SXmfBu51JolvEKwtGA==" - } - } - }, - "bech32": { - "version": "1.1.4", - "resolved": "https://registry.npmjs.org/bech32/-/bech32-1.1.4.tgz", - "integrity": "sha512-s0IrSOzLlbvX7yp4WBfPITzpAU8sqQcpsmwXDiKwrG4r491vwCO/XpejasRNl0piBMe/DvP4Tz0mIS/X1DPJBQ==" - }, - "bfj": { - "version": "7.0.2", - "resolved": "https://registry.npmjs.org/bfj/-/bfj-7.0.2.tgz", - "integrity": "sha512-+e/UqUzwmzJamNF50tBV6tZPTORow7gQ96iFow+8b562OdMpEK0BcJEq2OSPEDmAbSMBQ7PKZ87ubFkgxpYWgw==", - "requires": { - "bluebird": "^3.5.5", - "check-types": "^11.1.1", - "hoopy": "^0.1.4", - "tryer": "^1.0.1" - } - }, - "big.js": { - "version": "5.2.2", - "resolved": "https://registry.npmjs.org/big.js/-/big.js-5.2.2.tgz", - "integrity": "sha512-vyL2OymJxmarO8gxMr0mhChsO9QGwhynfuu4+MHTAW6czfq9humCB7rKpUjDd9YUiDPU4mzpyupFSvOClAwbmQ==" - }, - "bigint-crypto-utils": { - "version": "3.2.2", - "resolved": "https://registry.npmjs.org/bigint-crypto-utils/-/bigint-crypto-utils-3.2.2.tgz", - "integrity": "sha512-U1RbE3aX9ayCUVcIPHuPDPKcK3SFOXf93J1UK/iHlJuQB7bhagPIX06/CLpLEsDThJ7KA4Dhrnzynl+d2weTiw==", - "peer": true - }, - "bignumber.js": { - "version": "9.0.2", - "resolved": "https://registry.npmjs.org/bignumber.js/-/bignumber.js-9.0.2.tgz", - "integrity": "sha512-GAcQvbpsM0pUb0zw1EI0KhQEZ+lRwR5fYaAp3vPOYuP7aDvGy6cVN6XHLauvF8SOga2y0dcLcjt3iQDTSEliyw==" - }, - "binary-extensions": { - "version": "2.2.0", - "resolved": "https://registry.npmjs.org/binary-extensions/-/binary-extensions-2.2.0.tgz", - "integrity": "sha512-jDctJ/IVQbZoJykoeHbhXpOlNBqGNcwXJKJog42E5HDPUwQTSdjCHdihjj0DlnheQ7blbT6dHOafNAiS8ooQKA==" - }, - "blakejs": { - "version": "1.2.1", - "resolved": "https://registry.npmjs.org/blakejs/-/blakejs-1.2.1.tgz", - "integrity": "sha512-QXUSXI3QVc/gJME0dBpXrag1kbzOqCjCX8/b54ntNyW6sjtoqxqRk3LTmXzaJoh71zMsDCjM+47jS7XiwN/+fQ==" - }, - "bluebird": { - "version": "3.7.2", - "resolved": "https://registry.npmjs.org/bluebird/-/bluebird-3.7.2.tgz", - "integrity": "sha512-XpNj6GDQzdfW+r2Wnn7xiSAd7TM3jzkxGXBGTtWKuSXv1xUV+azxAm8jdWZN06QTQk+2N2XB9jRDkvbmQmcRtg==" - }, - "bmp-js": { - "version": "0.1.0", - "resolved": "https://registry.npmjs.org/bmp-js/-/bmp-js-0.1.0.tgz", - "integrity": "sha512-vHdS19CnY3hwiNdkaqk93DvjVLfbEcI8mys4UjuWrlX1haDmroo8o4xCzh4wD6DGV6HxRCyauwhHRqMTfERtjw==" - }, - "bn.js": { - "version": "5.2.1", - "resolved": "https://registry.npmjs.org/bn.js/-/bn.js-5.2.1.tgz", - "integrity": "sha512-eXRvHzWyYPBuB4NBy0cmYQjGitUrtqwbvlzP3G6VFnNRbsZQIxQ10PbKKHt8gZ/HW/D/747aDl+QkDqg3KQLMQ==" - }, - "body-parser": { - "version": "1.20.0", - "resolved": "https://registry.npmjs.org/body-parser/-/body-parser-1.20.0.tgz", - "integrity": "sha512-DfJ+q6EPcGKZD1QWUjSpqp+Q7bDQTsQIF4zfUAtZ6qk+H/3/QRhg9CEp39ss+/T2vw0+HaidC0ecJj/DRLIaKg==", - "requires": { - "bytes": "3.1.2", - "content-type": "~1.0.4", - "debug": "2.6.9", - "depd": "2.0.0", - "destroy": "1.2.0", - "http-errors": "2.0.0", - "iconv-lite": "0.4.24", - "on-finished": "2.4.1", - "qs": "6.10.3", - "raw-body": "2.5.1", - "type-is": "~1.6.18", - "unpipe": "1.0.0" - }, - "dependencies": { - "bytes": { - "version": "3.1.2", - "resolved": "https://registry.npmjs.org/bytes/-/bytes-3.1.2.tgz", - "integrity": "sha512-/Nf7TyzTx6S3yRJObOAV7956r8cr2+Oj8AC5dt8wSP3BQAoeX58NoHyCU8P8zGkNXStjTSi6fzO6F0pBdcYbEg==" - }, - "debug": { - "version": "2.6.9", - "resolved": "https://registry.npmjs.org/debug/-/debug-2.6.9.tgz", - "integrity": "sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA==", - "requires": { - "ms": "2.0.0" - } - }, - "iconv-lite": { - "version": "0.4.24", - "resolved": "https://registry.npmjs.org/iconv-lite/-/iconv-lite-0.4.24.tgz", - "integrity": "sha512-v3MXnZAcvnywkTUEZomIActle7RXXeedOR31wwl7VlyoXO4Qi9arvSenNQWne1TcRwhCL1HwLI21bEqdpj8/rA==", - "requires": { - "safer-buffer": ">= 2.1.2 < 3" - } - }, - "ms": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/ms/-/ms-2.0.0.tgz", - "integrity": "sha512-Tpp60P6IUJDTuOq/5Z8cdskzJujfwqfOTkrwIwj7IRISpnkJnT6SyJ4PCPnGMoFjC9ddhal5KVIYtAt97ix05A==" - } - } - }, - "bonjour-service": { - "version": "1.0.13", - "resolved": "https://registry.npmjs.org/bonjour-service/-/bonjour-service-1.0.13.tgz", - "integrity": "sha512-LWKRU/7EqDUC9CTAQtuZl5HzBALoCYwtLhffW3et7vZMwv3bWLpJf8bRYlMD5OCcDpTfnPgNCV4yo9ZIaJGMiA==", - "requires": { - "array-flatten": "^2.1.2", - "dns-equal": "^1.0.0", - "fast-deep-equal": "^3.1.3", - "multicast-dns": "^7.2.5" - } - }, - "boolbase": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/boolbase/-/boolbase-1.0.0.tgz", - "integrity": "sha512-JZOSA7Mo9sNGB8+UjSgzdLtokWAky1zbztM3WRLCbZ70/3cTANmQmOdR7y2g+J0e2WXywy1yS468tY+IruqEww==" - }, - "bowser": { - "version": "2.11.0", - "resolved": "https://registry.npmjs.org/bowser/-/bowser-2.11.0.tgz", - "integrity": "sha512-AlcaJBi/pqqJBIQ8U9Mcpc9i8Aqxn88Skv5d+xBX006BY5u8N3mGLHa5Lgppa7L/HfwgwLgZ6NYs+Ag6uUmJRA==" - }, - "brace-expansion": { - "version": "1.1.11", - "resolved": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-1.1.11.tgz", - "integrity": "sha512-iCuPHDFgrHX7H2vEI/5xpz07zSHB00TpugqhmYtVmMO6518mCuRMoOYFldEBl0g187ufozdaHgWKcYFb61qGiA==", - "requires": { - "balanced-match": "^1.0.0", - "concat-map": "0.0.1" - } - }, - "braces": { - "version": "3.0.2", - "resolved": "https://registry.npmjs.org/braces/-/braces-3.0.2.tgz", - "integrity": "sha512-b8um+L1RzM3WDSzvhm6gIz1yfTbBt6YTlcEKAvsmqCZZFw46z626lVj9j1yEPW33H5H+lBQpZMP1k8l+78Ha0A==", - "requires": { - "fill-range": "^7.0.1" - } - }, - "brorand": { - "version": "1.1.0", - "resolved": "https://registry.npmjs.org/brorand/-/brorand-1.1.0.tgz", - "integrity": "sha512-cKV8tMCEpQs4hK/ik71d6LrPOnpkpGBR0wzxqr68g2m/LB2GxVYQroAjMJZRVM1Y4BCjCKc3vAamxSzOY2RP+w==" - }, - "browser-level": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/browser-level/-/browser-level-1.0.1.tgz", - "integrity": "sha512-XECYKJ+Dbzw0lbydyQuJzwNXtOpbMSq737qxJN11sIRTErOMShvDpbzTlgju7orJKvx4epULolZAuJGLzCmWRQ==", - "peer": true, - "requires": { - "abstract-level": "^1.0.2", - "catering": "^2.1.1", - "module-error": "^1.0.2", - "run-parallel-limit": "^1.1.0" - } - }, - "browser-process-hrtime": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/browser-process-hrtime/-/browser-process-hrtime-1.0.0.tgz", - "integrity": "sha512-9o5UecI3GhkpM6DrXr69PblIuWxPKk9Y0jHBRhdocZ2y7YECBFCsHm79Pr3OyR2AvjhDkabFJaDJMYRazHgsow==" - }, - "browser-stdout": { - "version": "1.3.1", - "resolved": "https://registry.npmjs.org/browser-stdout/-/browser-stdout-1.3.1.tgz", - "integrity": "sha512-qhAVI1+Av2X7qelOfAIYwXONood6XlZE/fXaBSmW/T5SzLAmCgzi+eiWE7fUvbHaeNBQH13UftjpXxsfLkMpgw==", - "peer": true - }, - "browserify-aes": { - "version": "1.2.0", - "resolved": "https://registry.npmjs.org/browserify-aes/-/browserify-aes-1.2.0.tgz", - "integrity": "sha512-+7CHXqGuspUn/Sl5aO7Ea0xWGAtETPXNSAjHo48JfLdPWcMng33Xe4znFvQweqc/uzk5zSOI3H52CYnjCfb5hA==", - "requires": { - "buffer-xor": "^1.0.3", - "cipher-base": "^1.0.0", - "create-hash": "^1.1.0", - "evp_bytestokey": "^1.0.3", - "inherits": "^2.0.1", - "safe-buffer": "^5.0.1" - } - }, - "browserslist": { - "version": "4.21.1", - "resolved": "https://registry.npmjs.org/browserslist/-/browserslist-4.21.1.tgz", - "integrity": "sha512-Nq8MFCSrnJXSc88yliwlzQe3qNe3VntIjhsArW9IJOEPSHNx23FalwApUVbzAWABLhYJJ7y8AynWI/XM8OdfjQ==", - "requires": { - "caniuse-lite": "^1.0.30001359", - "electron-to-chromium": "^1.4.172", - "node-releases": "^2.0.5", - "update-browserslist-db": "^1.0.4" - } - }, - "bs58": { - "version": "4.0.1", - "resolved": "https://registry.npmjs.org/bs58/-/bs58-4.0.1.tgz", - "integrity": "sha512-Ok3Wdf5vOIlBrgCvTq96gBkJw+JUEzdBgyaza5HLtPm7yTHkjRy8+JzNyHF7BHa0bNWOQIp3m5YF0nnFcOIKLw==", - "requires": { - "base-x": "^3.0.2" - } - }, - "bs58check": { - "version": "2.1.2", - "resolved": "https://registry.npmjs.org/bs58check/-/bs58check-2.1.2.tgz", - "integrity": "sha512-0TS1jicxdU09dwJMNZtVAfzPi6Q6QeN0pM1Fkzrjn+XYHvzMKPU3pHVpva+769iNVSfIYWf7LJ6WR+BuuMf8cA==", - "requires": { - "bs58": "^4.0.0", - "create-hash": "^1.1.0", - "safe-buffer": "^5.1.2" - } - }, - "bser": { - "version": "2.1.1", - "resolved": "https://registry.npmjs.org/bser/-/bser-2.1.1.tgz", - "integrity": "sha512-gQxTNE/GAfIIrmHLUE3oJyp5FO6HRBfhjnw4/wMmA63ZGDJnWBmgY/lyQBpnDUkGmAhbSe39tx2d/iTOAfglwQ==", - "requires": { - "node-int64": "^0.4.0" - } - }, - "buffer": { - "version": "6.0.3", - "resolved": "https://registry.npmjs.org/buffer/-/buffer-6.0.3.tgz", - "integrity": "sha512-FTiCpNxtwiZZHEZbcbTIcZjERVICn9yq/pDFkTl95/AxzD1naBctN7YO68riM/gLSDY7sdrMby8hofADYuuqOA==", - "peer": true, - "requires": { - "base64-js": "^1.3.1", - "ieee754": "^1.2.1" - } - }, - "buffer-equal": { - "version": "0.0.1", - "resolved": "https://registry.npmjs.org/buffer-equal/-/buffer-equal-0.0.1.tgz", - "integrity": "sha512-RgSV6InVQ9ODPdLWJ5UAqBqJBOg370Nz6ZQtRzpt6nUjc8v0St97uJ4PYC6NztqIScrAXafKM3mZPMygSe1ggA==" - }, - "buffer-from": { - "version": "1.1.2", - "resolved": "https://registry.npmjs.org/buffer-from/-/buffer-from-1.1.2.tgz", - "integrity": "sha512-E+XQCRwSbaaiChtv6k6Dwgc+bx+Bs6vuKJHHl5kox/BaKbhiXzqQOwK4cO22yElGp2OCmjwVhT3HmxgyPGnJfQ==" - }, - "buffer-to-arraybuffer": { - "version": "0.0.5", - "resolved": "https://registry.npmjs.org/buffer-to-arraybuffer/-/buffer-to-arraybuffer-0.0.5.tgz", - "integrity": "sha512-3dthu5CYiVB1DEJp61FtApNnNndTckcqe4pFcLdvHtrpG+kcyekCJKg4MRiDcFW7A6AODnXB9U4dwQiCW5kzJQ==" - }, - "buffer-xor": { - "version": "1.0.3", - "resolved": "https://registry.npmjs.org/buffer-xor/-/buffer-xor-1.0.3.tgz", - "integrity": "sha512-571s0T7nZWK6vB67HI5dyUF7wXiNcfaPPPTl6zYCNApANjIvYJTg7hlud/+cJpdAhS7dVzqMLmfhfHR3rAcOjQ==" - }, - "bufferutil": { - "version": "4.0.6", - "resolved": "https://registry.npmjs.org/bufferutil/-/bufferutil-4.0.6.tgz", - "integrity": "sha512-jduaYOYtnio4aIAyc6UbvPCVcgq7nYpVnucyxr6eCYg/Woad9Hf/oxxBRDnGGjPfjUm6j5O/uBWhIu4iLebFaw==", - "requires": { - "node-gyp-build": "^4.3.0" - } - }, - "builtin-modules": { - "version": "3.3.0", - "resolved": "https://registry.npmjs.org/builtin-modules/-/builtin-modules-3.3.0.tgz", - "integrity": "sha512-zhaCDicdLuWN5UbN5IMnFqNMhNfo919sH85y2/ea+5Yg9TsTkeZxpL+JLbp6cgYFS4sRLp3YV4S6yDuqVWHYOw==" - }, - "bunyan": { - "version": "1.8.15", - "resolved": "https://registry.npmjs.org/bunyan/-/bunyan-1.8.15.tgz", - "integrity": "sha512-0tECWShh6wUysgucJcBAoYegf3JJoZWibxdqhTm7OHPeT42qdjkZ29QCMcKwbgU1kiH+auSIasNRXMLWXafXig==", - "requires": { - "dtrace-provider": "~0.8", - "moment": "^2.19.3", - "mv": "~2", - "safe-json-stringify": "~1" - } - }, - "bunyan-blackhole": { - "version": "1.1.1", - "resolved": "https://registry.npmjs.org/bunyan-blackhole/-/bunyan-blackhole-1.1.1.tgz", - "integrity": "sha512-UwzNPhbbSqbzeJhCbygqjlAY7p0ZUdv1ADXPQvDh3CA7VW3C/rCc1gaQO/8j9QL4vsKQCQZQSQIEwX+lxioPAQ==", - "requires": { - "stream-blackhole": "^1.0.3" - } - }, - "busboy": { - "version": "1.6.0", - "resolved": "https://registry.npmjs.org/busboy/-/busboy-1.6.0.tgz", - "integrity": "sha512-8SFQbg/0hQ9xy3UNTB0YEnsNBbWfhf7RtnzpL7TkBiTBRfrQ9Fxcnz7VJsleJpyp6rVLvXiuORqjlHi5q+PYuA==", - "peer": true, - "requires": { - "streamsearch": "^1.1.0" - } - }, - "bytes": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/bytes/-/bytes-3.0.0.tgz", - "integrity": "sha512-pMhOfFDPiv9t5jjIXkHosWmkSyQbvsgEVNkz0ERHbuLh2T/7j4Mqqpz523Fe8MVY89KC6Sh/QfS2sM+SjgFDcw==" - }, - "cacheable-lookup": { - "version": "6.1.0", - "resolved": "https://registry.npmjs.org/cacheable-lookup/-/cacheable-lookup-6.1.0.tgz", - "integrity": "sha512-KJ/Dmo1lDDhmW2XDPMo+9oiy/CeqosPguPCrgcVzKyZrL6pM1gU2GmPY/xo6OQPTUaA/c0kwHuywB4E6nmT9ww==" - }, - "cacheable-request": { - "version": "7.0.2", - "resolved": "https://registry.npmjs.org/cacheable-request/-/cacheable-request-7.0.2.tgz", - "integrity": "sha512-pouW8/FmiPQbuGpkXQ9BAPv/Mo5xDGANgSNXzTzJ8DrKGuXOssM4wIQRjfanNRh3Yu5cfYPvcorqbhg2KIJtew==", - "requires": { - "clone-response": "^1.0.2", - "get-stream": "^5.1.0", - "http-cache-semantics": "^4.0.0", - "keyv": "^4.0.0", - "lowercase-keys": "^2.0.0", - "normalize-url": "^6.0.1", - "responselike": "^2.0.0" - }, - "dependencies": { - "get-stream": { - "version": "5.2.0", - "resolved": "https://registry.npmjs.org/get-stream/-/get-stream-5.2.0.tgz", - "integrity": "sha512-nBF+F1rAZVCu/p7rjzgA+Yb4lfYXrpl7a6VmJrU8wF9I1CKvP/QwPNZHnOlwbTkY6dvtFIzFMSyQXbLoTQPRpA==", - "requires": { - "pump": "^3.0.0" - } - }, - "lowercase-keys": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/lowercase-keys/-/lowercase-keys-2.0.0.tgz", - "integrity": "sha512-tqNXrS78oMOE73NMxK4EMLQsQowWf8jKooH9g7xPavRT706R6bkQJ6DY2Te7QukaZsulxa30wQ7bk0pm4XiHmA==" - } - } - }, - "call-bind": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/call-bind/-/call-bind-1.0.2.tgz", - "integrity": "sha512-7O+FbCihrB5WGbFYesctwmTKae6rOiIzmz1icreWJ+0aA7LJfuqhEso2T9ncpcFtzMQtzXf2QGGueWJGTYsqrA==", - "requires": { - "function-bind": "^1.1.1", - "get-intrinsic": "^1.0.2" - } - }, - "callsites": { - "version": "3.1.0", - "resolved": "https://registry.npmjs.org/callsites/-/callsites-3.1.0.tgz", - "integrity": "sha512-P8BjAsXvZS+VIDUI11hHCQEv74YT67YUi5JJFNWIqL235sBmjX4+qx9Muvls5ivyNENctx46xQLQ3aTuE7ssaQ==" - }, - "camel-case": { - "version": "4.1.2", - "resolved": "https://registry.npmjs.org/camel-case/-/camel-case-4.1.2.tgz", - "integrity": "sha512-gxGWBrTT1JuMx6R+o5PTXMmUnhnVzLQ9SNutD4YqKtI6ap897t3tKECYla6gCWEkplXnlNybEkZg9GEGxKFCgw==", - "requires": { - "pascal-case": "^3.1.2", - "tslib": "^2.0.3" - } - }, - "camelcase": { - "version": "6.3.0", - "resolved": "https://registry.npmjs.org/camelcase/-/camelcase-6.3.0.tgz", - "integrity": "sha512-Gmy6FhYlCY7uOElZUSbxo2UCDH8owEk996gkbrpsgGtrJLM3J7jGxl9Ic7Qwwj4ivOE5AWZWRMecDdF7hqGjFA==" - }, - "camelcase-css": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/camelcase-css/-/camelcase-css-2.0.1.tgz", - "integrity": "sha512-QOSvevhslijgYwRx6Rv7zKdMF8lbRmx+uQGx2+vDc+KI/eBnsy9kit5aj23AgGu3pa4t9AgwbnXWqS+iOY+2aA==" - }, - "camelize": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/camelize/-/camelize-1.0.1.tgz", - "integrity": "sha512-dU+Tx2fsypxTgtLoE36npi3UqcjSSMNYfkqgmoEhtZrraP5VWq0K7FkWVTYa8eMPtnU/G2txVsfdCJTn9uzpuQ==" - }, - "caniuse-api": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/caniuse-api/-/caniuse-api-3.0.0.tgz", - "integrity": "sha512-bsTwuIg/BZZK/vreVTYYbSWoe2F+71P7K5QGEX+pT250DZbfU1MQ5prOKpPR+LL6uWKK3KMwMCAS74QB3Um1uw==", - "requires": { - "browserslist": "^4.0.0", - "caniuse-lite": "^1.0.0", - "lodash.memoize": "^4.1.2", - "lodash.uniq": "^4.5.0" - } - }, - "caniuse-lite": { - "version": "1.0.30001359", - "resolved": "https://registry.npmjs.org/caniuse-lite/-/caniuse-lite-1.0.30001359.tgz", - "integrity": "sha512-Xln/BAsPzEuiVLgJ2/45IaqD9jShtk3Y33anKb4+yLwQzws3+v6odKfpgES/cDEaZMLzSChpIGdbOYtH9MyuHw==" - }, - "case": { - "version": "1.6.3", - "resolved": "https://registry.npmjs.org/case/-/case-1.6.3.tgz", - "integrity": "sha512-mzDSXIPaFwVDvZAHqZ9VlbyF4yyXRuX6IvB06WvPYkqJVO24kX1PPhv9bfpKNFZyxYFmmgo03HUiD8iklmJYRQ==", - "peer": true - }, - "case-sensitive-paths-webpack-plugin": { - "version": "2.4.0", - "resolved": "https://registry.npmjs.org/case-sensitive-paths-webpack-plugin/-/case-sensitive-paths-webpack-plugin-2.4.0.tgz", - "integrity": "sha512-roIFONhcxog0JSSWbvVAh3OocukmSgpqOH6YpMkCvav/ySIV3JKg4Dc8vYtQjYi/UxpNE36r/9v+VqTQqgkYmw==" - }, - "caseless": { - "version": "0.12.0", - "resolved": "https://registry.npmjs.org/caseless/-/caseless-0.12.0.tgz", - "integrity": "sha512-4tYFyifaFfGacoiObjJegolkwSU4xQNGbVgUiNYVUxbQ2x2lUsFvY4hVgVzGiIe6WLOPqycWXA40l+PWsxthUw==" - }, - "catering": { - "version": "2.1.1", - "resolved": "https://registry.npmjs.org/catering/-/catering-2.1.1.tgz", - "integrity": "sha512-K7Qy8O9p76sL3/3m7/zLKbRkyOlSZAgzEaLhyj2mXS8PsCud2Eo4hAb8aLtZqHh0QGqLcb9dlJSu6lHRVENm1w==", - "peer": true - }, - "chalk": { - "version": "2.4.2", - "resolved": "https://registry.npmjs.org/chalk/-/chalk-2.4.2.tgz", - "integrity": "sha512-Mti+f9lpJNcwF4tWV8/OrTTtF1gZi+f8FqlyAdouralcFWFQWF2+NgCHShjkCb+IFBLq9buZwE1xckQU4peSuQ==", - "requires": { - "ansi-styles": "^3.2.1", - "escape-string-regexp": "^1.0.5", - "supports-color": "^5.3.0" - } - }, - "char-regex": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/char-regex/-/char-regex-1.0.2.tgz", - "integrity": "sha512-kWWXztvZ5SBQV+eRgKFeh8q5sLuZY2+8WUIzlxWVTg+oGwY14qylx1KbKzHd8P6ZYkAg0xyIDU9JMHhyJMZ1jw==" - }, - "check-types": { - "version": "11.1.2", - "resolved": "https://registry.npmjs.org/check-types/-/check-types-11.1.2.tgz", - "integrity": "sha512-tzWzvgePgLORb9/3a0YenggReLKAIb2owL03H2Xdoe5pKcUyWRSEQ8xfCar8t2SIAuEDwtmx2da1YB52YuHQMQ==" - }, - "chokidar": { - "version": "3.5.3", - "resolved": "https://registry.npmjs.org/chokidar/-/chokidar-3.5.3.tgz", - "integrity": "sha512-Dr3sfKRP6oTcjf2JmUmFJfeVMvXBdegxB0iVQ5eb2V10uFJUCAS8OByZdVAyVb8xXNz3GjjTgj9kLWsZTqE6kw==", - "requires": { - "anymatch": "~3.1.2", - "braces": "~3.0.2", - "fsevents": "~2.3.2", - "glob-parent": "~5.1.2", - "is-binary-path": "~2.1.0", - "is-glob": "~4.0.1", - "normalize-path": "~3.0.0", - "readdirp": "~3.6.0" - }, - "dependencies": { - "glob-parent": { - "version": "5.1.2", - "resolved": "https://registry.npmjs.org/glob-parent/-/glob-parent-5.1.2.tgz", - "integrity": "sha512-AOIgSQCepiJYwP3ARnGx+5VnTu2HBYdzbGP45eLw1vr3zB3vZLeyed1sC9hnbcOc9/SrMyM5RPQrkGz4aS9Zow==", - "requires": { - "is-glob": "^4.0.1" - } - } - } - }, - "chownr": { - "version": "1.1.4", - "resolved": "https://registry.npmjs.org/chownr/-/chownr-1.1.4.tgz", - "integrity": "sha512-jJ0bqzaylmJtVnNgzTeSOs8DPavpbYgEr/b0YL8/2GO3xJEhInFmhKMUnEJQjZumK7KXGFhUy89PrsJWlakBVg==" - }, - "chrome-trace-event": { - "version": "1.0.3", - "resolved": "https://registry.npmjs.org/chrome-trace-event/-/chrome-trace-event-1.0.3.tgz", - "integrity": "sha512-p3KULyQg4S7NIHixdwbGX+nFHkoBiA4YQmyWtjb8XngSKV124nJmRysgAeujbUVb15vh+RvFUfCPqU7rXk+hZg==" - }, - "ci-info": { - "version": "3.3.2", - "resolved": "https://registry.npmjs.org/ci-info/-/ci-info-3.3.2.tgz", - "integrity": "sha512-xmDt/QIAdeZ9+nfdPsaBCpMvHNLFiLdjj59qjqn+6iPe6YmHGQ35sBnQ8uslRBXFmXkiZQOJRjvQeoGppoTjjg==" - }, - "cids": { - "version": "1.1.9", - "resolved": "https://registry.npmjs.org/cids/-/cids-1.1.9.tgz", - "integrity": "sha512-l11hWRfugIcbGuTZwAM5PwpjPPjyb6UZOGwlHSnOBV5o07XhQ4gNpBN67FbODvpjyHtd+0Xs6KNvUcGBiDRsdg==", - "requires": { - "multibase": "^4.0.1", - "multicodec": "^3.0.1", - "multihashes": "^4.0.1", - "uint8arrays": "^3.0.0" - } - }, - "cipher-base": { - "version": "1.0.4", - "resolved": "https://registry.npmjs.org/cipher-base/-/cipher-base-1.0.4.tgz", - "integrity": "sha512-Kkht5ye6ZGmwv40uUDZztayT2ThLQGfnj/T71N/XzeZeo3nf8foyW7zGTsPYkEya3m5f3cAypH+qe7YOrM1U2Q==", - "requires": { - "inherits": "^2.0.1", - "safe-buffer": "^5.0.1" - } - }, - "cjs-module-lexer": { - "version": "1.2.2", - "resolved": "https://registry.npmjs.org/cjs-module-lexer/-/cjs-module-lexer-1.2.2.tgz", - "integrity": "sha512-cOU9usZw8/dXIXKtwa8pM0OTJQuJkxMN6w30csNRUerHfeQ5R6U3kkU/FtJeIf3M202OHfY2U8ccInBG7/xogA==" - }, - "class-is": { - "version": "1.1.0", - "resolved": "https://registry.npmjs.org/class-is/-/class-is-1.1.0.tgz", - "integrity": "sha512-rhjH9AG1fvabIDoGRVH587413LPjTZgmDF9fOFCbFJQV4yuocX1mHxxvXI4g3cGwbVY9wAYIoKlg1N79frJKQw==" - }, - "classic-level": { - "version": "1.3.0", - "resolved": "https://registry.npmjs.org/classic-level/-/classic-level-1.3.0.tgz", - "integrity": "sha512-iwFAJQYtqRTRM0F6L8h4JCt00ZSGdOyqh7yVrhhjrOpFhmBjNlRUey64MCiyo6UmQHMJ+No3c81nujPv+n9yrg==", - "peer": true, - "requires": { - "abstract-level": "^1.0.2", - "catering": "^2.1.0", - "module-error": "^1.0.1", - "napi-macros": "^2.2.2", - "node-gyp-build": "^4.3.0" - } - }, - "clean-css": { - "version": "5.3.0", - "resolved": "https://registry.npmjs.org/clean-css/-/clean-css-5.3.0.tgz", - "integrity": "sha512-YYuuxv4H/iNb1Z/5IbMRoxgrzjWGhOEFfd+groZ5dMCVkpENiMZmwspdrzBo9286JjM1gZJPAyL7ZIdzuvu2AQ==", - "requires": { - "source-map": "~0.6.0" - }, - "dependencies": { - "source-map": { - "version": "0.6.1", - "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz", - "integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==" - } - } - }, - "clean-stack": { - "version": "2.2.0", - "resolved": "https://registry.npmjs.org/clean-stack/-/clean-stack-2.2.0.tgz", - "integrity": "sha512-4diC9HaTE+KRAMWhDhrGOECgWZxoevMc5TlkObMqNSsVU62PYzXZ/SMTjzyGAFF1YusgxGcSWTEXBhp0CPwQ1A==", - "peer": true - }, - "cliui": { - "version": "7.0.4", - "resolved": "https://registry.npmjs.org/cliui/-/cliui-7.0.4.tgz", - "integrity": "sha512-OcRE68cOsVMXp1Yvonl/fzkQOyjLSu/8bhPDfQt0e0/Eb283TKP20Fs2MqoPsr9SwA595rRCA+QMzYc9nBP+JQ==", - "requires": { - "string-width": "^4.2.0", - "strip-ansi": "^6.0.0", - "wrap-ansi": "^7.0.0" - } - }, - "clone": { - "version": "2.1.2", - "resolved": "https://registry.npmjs.org/clone/-/clone-2.1.2.tgz", - "integrity": "sha512-3Pe/CF1Nn94hyhIYpjtiLhdCoEoz0DqQ+988E9gmeEdQZlojxnOb74wctFyuwWQHzqyf9X7C7MG8juUpqBJT8w==" - }, - "clone-response": { - "version": "1.0.3", - "resolved": "https://registry.npmjs.org/clone-response/-/clone-response-1.0.3.tgz", - "integrity": "sha512-ROoL94jJH2dUVML2Y/5PEDNaSHgeOdSDicUyS7izcF63G6sTc/FTjLub4b8Il9S8S0beOfYt0TaA5qvFK+w0wA==", - "requires": { - "mimic-response": "^1.0.0" - } - }, - "clsx": { - "version": "1.1.1", - "resolved": "https://registry.npmjs.org/clsx/-/clsx-1.1.1.tgz", - "integrity": "sha512-6/bPho624p3S2pMyvP5kKBPXnI3ufHLObBFCfgx+LkeR5lg2XYy2hqZqUf45ypD8COn2bhgGJSUE+l5dhNBieA==" - }, - "co": { - "version": "4.6.0", - "resolved": "https://registry.npmjs.org/co/-/co-4.6.0.tgz", - "integrity": "sha512-QVb0dM5HvG+uaxitm8wONl7jltx8dqhfU33DcqtOZcLSVIKSDDLDi7+0LbAKiyI8hD9u42m2YxXSkMGWThaecQ==" - }, - "coa": { - "version": "2.0.2", - "resolved": "https://registry.npmjs.org/coa/-/coa-2.0.2.tgz", - "integrity": "sha512-q5/jG+YQnSy4nRTV4F7lPepBJZ8qBNJJDBuJdoejDyLXgmL7IEo+Le2JDZudFTFt7mrCqIRaSjws4ygRCTCAXA==", - "requires": { - "@types/q": "^1.5.1", - "chalk": "^2.4.1", - "q": "^1.1.2" - } - }, - "collect-v8-coverage": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/collect-v8-coverage/-/collect-v8-coverage-1.0.1.tgz", - "integrity": "sha512-iBPtljfCNcTKNAto0KEtDfZ3qzjJvqE3aTGZsbhjSBlorqpXJlaWWtPO35D+ZImoC3KWejX64o+yPGxhWSTzfg==" - }, - "color-convert": { - "version": "1.9.3", - "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-1.9.3.tgz", - "integrity": "sha512-QfAUtd+vFdAtFQcC8CCyYt1fYWxSqAiK2cSD6zDB8N3cpsEBAvRxp9zOGg6G/SHHJYAT88/az/IuDGALsNVbGg==", - "requires": { - "color-name": "1.1.3" - } - }, - "color-name": { - "version": "1.1.3", - "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.3.tgz", - "integrity": "sha512-72fSenhMw2HZMTVHeCA9KCmpEIbzWiQsjN+BHcBbS9vr1mtt+vJjPdksIBNUmKAW8TFUDPJK5SUU3QhE9NEXDw==" - }, - "colord": { - "version": "2.9.2", - "resolved": "https://registry.npmjs.org/colord/-/colord-2.9.2.tgz", - "integrity": "sha512-Uqbg+J445nc1TKn4FoDPS6ZZqAvEDnwrH42yo8B40JSOgSLxMZ/gt3h4nmCtPLQeXhjJJkqBx7SCY35WnIixaQ==" - }, - "colorette": { - "version": "2.0.19", - "resolved": "https://registry.npmjs.org/colorette/-/colorette-2.0.19.tgz", - "integrity": "sha512-3tlv/dIP7FWvj3BsbHrGLJ6l/oKh1O3TcgBqMn+yyCagOxc23fyzDS6HypQbgxWbkpDnf52p1LuR4eWDQ/K9WQ==" - }, - "combined-stream": { - "version": "1.0.8", - "resolved": "https://registry.npmjs.org/combined-stream/-/combined-stream-1.0.8.tgz", - "integrity": "sha512-FQN4MRfuJeHf7cBbBMJFXhKSDq+2kAArBlmRBvcvFE5BB1HZKXtSFASDhdlz9zOYwxh8lDdnvmMOe/+5cdoEdg==", - "requires": { - "delayed-stream": "~1.0.0" - } - }, - "command-exists": { - "version": "1.2.9", - "resolved": "https://registry.npmjs.org/command-exists/-/command-exists-1.2.9.tgz", - "integrity": "sha512-LTQ/SGc+s0Xc0Fu5WaKnR0YiygZkm9eKFvyS+fRsU7/ZWFF8ykFM6Pc9aCVf1+xasOOZpO3BAVgVrKvsqKHV7w==", - "peer": true - }, - "command-line-args": { - "version": "5.2.1", - "resolved": "https://registry.npmjs.org/command-line-args/-/command-line-args-5.2.1.tgz", - "integrity": "sha512-H4UfQhZyakIjC74I9d34fGYDwk3XpSr17QhEd0Q3I9Xq1CETHo4Hcuo87WyWHpAF1aSLjLRf5lD9ZGX2qStUvg==", - "dev": true, - "requires": { - "array-back": "^3.1.0", - "find-replace": "^3.0.0", - "lodash.camelcase": "^4.3.0", - "typical": "^4.0.0" - } - }, - "command-line-usage": { - "version": "6.1.3", - "resolved": "https://registry.npmjs.org/command-line-usage/-/command-line-usage-6.1.3.tgz", - "integrity": "sha512-sH5ZSPr+7UStsloltmDh7Ce5fb8XPlHyoPzTpyyMuYCtervL65+ubVZ6Q61cFtFl62UyJlc8/JwERRbAFPUqgw==", - "dev": true, - "requires": { - "array-back": "^4.0.2", - "chalk": "^2.4.2", - "table-layout": "^1.0.2", - "typical": "^5.2.0" - }, - "dependencies": { - "array-back": { - "version": "4.0.2", - "resolved": "https://registry.npmjs.org/array-back/-/array-back-4.0.2.tgz", - "integrity": "sha512-NbdMezxqf94cnNfWLL7V/im0Ub+Anbb0IoZhvzie8+4HJ4nMQuzHuy49FkGYCJK2yAloZ3meiB6AVMClbrI1vg==", - "dev": true - }, - "typical": { - "version": "5.2.0", - "resolved": "https://registry.npmjs.org/typical/-/typical-5.2.0.tgz", - "integrity": "sha512-dvdQgNDNJo+8B2uBQoqdb11eUCE1JQXhvjC/CZtgvZseVd5TYMXnq0+vuUemXbd/Se29cTaUuPX3YIc2xgbvIg==", - "dev": true - } - } - }, - "commander": { - "version": "8.3.0", - "resolved": "https://registry.npmjs.org/commander/-/commander-8.3.0.tgz", - "integrity": "sha512-OkTL9umf+He2DZkUq8f8J9of7yL6RJKI24dVITBmNfZBmri9zYZQrKkuXiKhyfPSu8tUhnVBB1iKXevvnlR4Ww==" - }, - "common-path-prefix": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/common-path-prefix/-/common-path-prefix-3.0.0.tgz", - "integrity": "sha512-QE33hToZseCH3jS0qN96O/bSh3kaw/h+Tq7ngyY9eWDUnTlTNUyqfqvCXioLe5Na5jFsL78ra/wuBU4iuEgd4w==" - }, - "common-tags": { - "version": "1.8.2", - "resolved": "https://registry.npmjs.org/common-tags/-/common-tags-1.8.2.tgz", - "integrity": "sha512-gk/Z852D2Wtb//0I+kRFNKKE9dIIVirjoqPoA1wJU+XePVXZfGeBpk45+A1rKO4Q43prqWBNY/MiIeRLbPWUaA==" - }, - "commondir": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/commondir/-/commondir-1.0.1.tgz", - "integrity": "sha512-W9pAhw0ja1Edb5GVdIF1mjZw/ASI0AlShXM83UUGe2DVr5TdAPEA1OA8m/g8zWp9x6On7gqufY+FatDbC3MDQg==" - }, - "compressible": { - "version": "2.0.18", - "resolved": "https://registry.npmjs.org/compressible/-/compressible-2.0.18.tgz", - "integrity": "sha512-AF3r7P5dWxL8MxyITRMlORQNaOA2IkAFaTr4k7BUumjPtRpGDTZpl0Pb1XCO6JeDCBdp126Cgs9sMxqSjgYyRg==", - "requires": { - "mime-db": ">= 1.43.0 < 2" - } - }, - "compression": { - "version": "1.7.4", - "resolved": "https://registry.npmjs.org/compression/-/compression-1.7.4.tgz", - "integrity": "sha512-jaSIDzP9pZVS4ZfQ+TzvtiWhdpFhE2RDHz8QJkpX9SIpLq88VueF5jJw6t+6CUQcAoA6t+x89MLrWAqpfDE8iQ==", - "requires": { - "accepts": "~1.3.5", - "bytes": "3.0.0", - "compressible": "~2.0.16", - "debug": "2.6.9", - "on-headers": "~1.0.2", - "safe-buffer": "5.1.2", - "vary": "~1.1.2" - }, - "dependencies": { - "debug": { - "version": "2.6.9", - "resolved": "https://registry.npmjs.org/debug/-/debug-2.6.9.tgz", - "integrity": "sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA==", - "requires": { - "ms": "2.0.0" - } - }, - "ms": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/ms/-/ms-2.0.0.tgz", - "integrity": "sha512-Tpp60P6IUJDTuOq/5Z8cdskzJujfwqfOTkrwIwj7IRISpnkJnT6SyJ4PCPnGMoFjC9ddhal5KVIYtAt97ix05A==" - } - } - }, - "concat-map": { - "version": "0.0.1", - "resolved": "https://registry.npmjs.org/concat-map/-/concat-map-0.0.1.tgz", - "integrity": "sha512-/Srv4dswyQNBfohGpz9o6Yb3Gz3SrUDqBH5rTuhGR7ahtlbYKnVxw2bCFMRljaA7EXHaXZ8wsHdodFvbkhKmqg==" - }, - "confusing-browser-globals": { - "version": "1.0.11", - "resolved": "https://registry.npmjs.org/confusing-browser-globals/-/confusing-browser-globals-1.0.11.tgz", - "integrity": "sha512-JsPKdmh8ZkmnHxDk55FZ1TqVLvEQTvoByJZRN9jzI0UjxK/QgAmsphz7PGtqgPieQZ/CQcHWXCR7ATDNhGe+YA==" - }, - "connect-history-api-fallback": { - "version": "1.6.0", - "resolved": "https://registry.npmjs.org/connect-history-api-fallback/-/connect-history-api-fallback-1.6.0.tgz", - "integrity": "sha512-e54B99q/OUoH64zYYRf3HBP5z24G38h5D3qXu23JGRoigpX5Ss4r9ZnDk3g0Z8uQC2x2lPaJ+UlWBc1ZWBWdLg==" - }, - "consolidated-events": { - "version": "2.0.2", - "resolved": "https://registry.npmjs.org/consolidated-events/-/consolidated-events-2.0.2.tgz", - "integrity": "sha512-2/uRVMdRypf5z/TW/ncD/66l75P5hH2vM/GR8Jf8HLc2xnfJtmina6F6du8+v4Z2vTrMo7jC+W1tmEEuuELgkQ==" - }, - "content-disposition": { - "version": "0.5.4", - "resolved": "https://registry.npmjs.org/content-disposition/-/content-disposition-0.5.4.tgz", - "integrity": "sha512-FveZTNuGw04cxlAiWbzi6zTAL/lhehaWbTtgluJh4/E95DqMwTmha3KZN1aAWA8cFIhHzMZUvLevkw5Rqk+tSQ==", - "requires": { - "safe-buffer": "5.2.1" - }, - "dependencies": { - "safe-buffer": { - "version": "5.2.1", - "resolved": "https://registry.npmjs.org/safe-buffer/-/safe-buffer-5.2.1.tgz", - "integrity": "sha512-rp3So07KcdmmKbGvgaNxQSJr7bGVSVk5S9Eq1F+ppbRo70+YeaDxkw5Dd8NPN+GD6bjnYm2VuPuCXmpuYvmCXQ==" - } - } - }, - "content-hash": { - "version": "2.5.2", - "resolved": "https://registry.npmjs.org/content-hash/-/content-hash-2.5.2.tgz", - "integrity": "sha512-FvIQKy0S1JaWV10sMsA7TRx8bpU+pqPkhbsfvOJAdjRXvYxEckAwQWGwtRjiaJfh+E0DvcWUGqcdjwMGFjsSdw==", - "requires": { - "cids": "^0.7.1", - "multicodec": "^0.5.5", - "multihashes": "^0.4.15" - }, - "dependencies": { - "buffer": { - "version": "5.7.1", - "resolved": "https://registry.npmjs.org/buffer/-/buffer-5.7.1.tgz", - "integrity": "sha512-EHcyIPBQ4BSGlvjB16k5KgAJ27CIsHY/2JBmCRReo48y9rQ3MaUzWX3KVlBa4U7MyX02HdVj0K7C3WaB3ju7FQ==", - "requires": { - "base64-js": "^1.3.1", - "ieee754": "^1.1.13" - } - }, - "cids": { - "version": "0.7.5", - "resolved": "https://registry.npmjs.org/cids/-/cids-0.7.5.tgz", - "integrity": "sha512-zT7mPeghoWAu+ppn8+BS1tQ5qGmbMfB4AregnQjA/qHY3GC1m1ptI9GkWNlgeu38r7CuRdXB47uY2XgAYt6QVA==", - "requires": { - "buffer": "^5.5.0", - "class-is": "^1.1.0", - "multibase": "~0.6.0", - "multicodec": "^1.0.0", - "multihashes": "~0.4.15" - }, - "dependencies": { - "multicodec": { - "version": "1.0.4", - "resolved": "https://registry.npmjs.org/multicodec/-/multicodec-1.0.4.tgz", - "integrity": "sha512-NDd7FeS3QamVtbgfvu5h7fd1IlbaC4EQ0/pgU4zqE2vdHCmBGsUa0TiM8/TdSeG6BMPC92OOCf8F1ocE/Wkrrg==", - "requires": { - "buffer": "^5.6.0", - "varint": "^5.0.0" - } - } - } - }, - "multibase": { - "version": "0.6.1", - "resolved": "https://registry.npmjs.org/multibase/-/multibase-0.6.1.tgz", - "integrity": "sha512-pFfAwyTjbbQgNc3G7D48JkJxWtoJoBMaR4xQUOuB8RnCgRqaYmWNFeJTTvrJ2w51bjLq2zTby6Rqj9TQ9elSUw==", - "requires": { - "base-x": "^3.0.8", - "buffer": "^5.5.0" - } - }, - "multicodec": { - "version": "0.5.7", - "resolved": "https://registry.npmjs.org/multicodec/-/multicodec-0.5.7.tgz", - "integrity": "sha512-PscoRxm3f+88fAtELwUnZxGDkduE2HD9Q6GHUOywQLjOGT/HAdhjLDYNZ1e7VR0s0TP0EwZ16LNUTFpoBGivOA==", - "requires": { - "varint": "^5.0.0" - } - }, - "multihashes": { - "version": "0.4.21", - "resolved": "https://registry.npmjs.org/multihashes/-/multihashes-0.4.21.tgz", - "integrity": "sha512-uVSvmeCWf36pU2nB4/1kzYZjsXD9vofZKpgudqkceYY5g2aZZXJ5r9lxuzoRLl1OAp28XljXsEJ/X/85ZsKmKw==", - "requires": { - "buffer": "^5.5.0", - "multibase": "^0.7.0", - "varint": "^5.0.0" - }, - "dependencies": { - "multibase": { - "version": "0.7.0", - "resolved": "https://registry.npmjs.org/multibase/-/multibase-0.7.0.tgz", - "integrity": "sha512-TW8q03O0f6PNFTQDvh3xxH03c8CjGaaYrjkl9UQPG6rz53TQzzxJVCIWVjzcbN/Q5Y53Zd0IBQBMVktVgNx4Fg==", - "requires": { - "base-x": "^3.0.8", - "buffer": "^5.5.0" - } - } - } - }, - "varint": { - "version": "5.0.2", - "resolved": "https://registry.npmjs.org/varint/-/varint-5.0.2.tgz", - "integrity": "sha512-lKxKYG6H03yCZUpAGOPOsMcGxd1RHCu1iKvEHYDPmTyq2HueGhD73ssNBqqQWfvYs04G9iUFRvmAVLW20Jw6ow==" - } - } - }, - "content-type": { - "version": "1.0.4", - "resolved": "https://registry.npmjs.org/content-type/-/content-type-1.0.4.tgz", - "integrity": "sha512-hIP3EEPs8tB9AT1L+NUqtwOAps4mk2Zob89MWXMHjHWg9milF/j4osnnQLXBCBFBk/tvIG/tUc9mOUJiPBhPXA==" - }, - "convert-source-map": { - "version": "1.8.0", - "resolved": "https://registry.npmjs.org/convert-source-map/-/convert-source-map-1.8.0.tgz", - "integrity": "sha512-+OQdjP49zViI/6i7nIJpA8rAl4sV/JdPfU9nZs3VqOwGIgizICvuN2ru6fMd+4llL0tar18UYJXfZ/TWtmhUjA==", - "requires": { - "safe-buffer": "~5.1.1" - } - }, - "cookie": { - "version": "0.5.0", - "resolved": "https://registry.npmjs.org/cookie/-/cookie-0.5.0.tgz", - "integrity": "sha512-YZ3GUyn/o8gfKJlnlX7g7xq4gyO6OSuhGPKaaGssGB2qgDUS0gPgtTvoyZLTt9Ab6dC4hfc9dV5arkvc/OCmrw==" - }, - "cookie-signature": { - "version": "1.0.6", - "resolved": "https://registry.npmjs.org/cookie-signature/-/cookie-signature-1.0.6.tgz", - "integrity": "sha512-QADzlaHc8icV8I7vbaJXJwod9HWYp8uCqf1xa4OfNu1T7JVxQIrUgOWtHdNDtPiywmFbiS12VjotIXLrKM3orQ==" - }, - "core-js": { - "version": "3.23.3", - "resolved": "https://registry.npmjs.org/core-js/-/core-js-3.23.3.tgz", - "integrity": "sha512-oAKwkj9xcWNBAvGbT//WiCdOMpb9XQG92/Fe3ABFM/R16BsHgePG00mFOgKf7IsCtfj8tA1kHtf/VwErhriz5Q==" - }, - "core-js-compat": { - "version": "3.23.3", - "resolved": "https://registry.npmjs.org/core-js-compat/-/core-js-compat-3.23.3.tgz", - "integrity": "sha512-WSzUs2h2vvmKsacLHNTdpyOC9k43AEhcGoFlVgCY4L7aw98oSBKtPL6vD0/TqZjRWRQYdDSLkzZIni4Crbbiqw==", - "requires": { - "browserslist": "^4.21.0", - "semver": "7.0.0" - }, - "dependencies": { - "semver": { - "version": "7.0.0", - "resolved": "https://registry.npmjs.org/semver/-/semver-7.0.0.tgz", - "integrity": "sha512-+GB6zVA9LWh6zovYQLALHwv5rb2PHGlJi3lfiqIHxR0uuwCgefcOJc59v9fv1w8GbStwxuuqqAjI9NMAOOgq1A==" - } - } - }, - "core-js-pure": { - "version": "3.23.3", - "resolved": "https://registry.npmjs.org/core-js-pure/-/core-js-pure-3.23.3.tgz", - "integrity": "sha512-XpoouuqIj4P+GWtdyV8ZO3/u4KftkeDVMfvp+308eGMhCrA3lVDSmAxO0c6GGOcmgVlaKDrgWVMo49h2ab/TDA==" - }, - "core-util-is": { - "version": "1.0.3", - "resolved": "https://registry.npmjs.org/core-util-is/-/core-util-is-1.0.3.tgz", - "integrity": "sha512-ZQBvi1DcpJ4GDqanjucZ2Hj3wEO5pZDS89BWbkcrvdxksJorwUDDZamX9ldFkp9aw2lmBDLgkObEA4DWNJ9FYQ==" - }, - "cors": { - "version": "2.8.5", - "resolved": "https://registry.npmjs.org/cors/-/cors-2.8.5.tgz", - "integrity": "sha512-KIHbLJqu73RGr/hnbrO9uBeixNGuvSQjul/jdFvS/KFSIH1hWVd1ng7zOHx+YrEfInLG7q4n6GHQ9cDtxv/P6g==", - "requires": { - "object-assign": "^4", - "vary": "^1" - } - }, - "cosmiconfig": { - "version": "7.0.1", - "resolved": "https://registry.npmjs.org/cosmiconfig/-/cosmiconfig-7.0.1.tgz", - "integrity": "sha512-a1YWNUV2HwGimB7dU2s1wUMurNKjpx60HxBB6xUM8Re+2s1g1IIfJvFR0/iCF+XHdE0GMTKTuLR32UQff4TEyQ==", - "requires": { - "@types/parse-json": "^4.0.0", - "import-fresh": "^3.2.1", - "parse-json": "^5.0.0", - "path-type": "^4.0.0", - "yaml": "^1.10.0" - } - }, - "crc-32": { - "version": "1.2.2", - "resolved": "https://registry.npmjs.org/crc-32/-/crc-32-1.2.2.tgz", - "integrity": "sha512-ROmzCKrTnOwybPcJApAA6WBWij23HVfGVNKqqrZpuyZOHqK2CwHSvpGuyt/UNNvaIjEd8X5IFGp4Mh+Ie1IHJQ==" - }, - "create-hash": { - "version": "1.2.0", - "resolved": "https://registry.npmjs.org/create-hash/-/create-hash-1.2.0.tgz", - "integrity": "sha512-z00bCGNHDG8mHAkP7CtT1qVu+bFQUPjYq/4Iv3C3kWjTFV10zIjfSoeqXo9Asws8gwSHDGj/hl2u4OGIjapeCg==", - "requires": { - "cipher-base": "^1.0.1", - "inherits": "^2.0.1", - "md5.js": "^1.3.4", - "ripemd160": "^2.0.1", - "sha.js": "^2.4.0" - } - }, - "create-hmac": { - "version": "1.1.7", - "resolved": "https://registry.npmjs.org/create-hmac/-/create-hmac-1.1.7.tgz", - "integrity": "sha512-MJG9liiZ+ogc4TzUwuvbER1JRdgvUFSB5+VR/g5h82fGaIRWMWddtKBHi7/sVhfjQZ6SehlyhvQYrcYkaUIpLg==", - "requires": { - "cipher-base": "^1.0.3", - "create-hash": "^1.1.0", - "inherits": "^2.0.1", - "ripemd160": "^2.0.0", - "safe-buffer": "^5.0.1", - "sha.js": "^2.4.8" - } - }, - "cross-fetch": { - "version": "3.1.5", - "resolved": "https://registry.npmjs.org/cross-fetch/-/cross-fetch-3.1.5.tgz", - "integrity": "sha512-lvb1SBsI0Z7GDwmuid+mU3kWVBwTVUbe7S0H52yaaAdQOXq2YktTCZdlAcNKFzE6QtRz0snpw9bNiPeOIkkQvw==", - "requires": { - "node-fetch": "2.6.7" - } - }, - "cross-spawn": { - "version": "7.0.3", - "resolved": "https://registry.npmjs.org/cross-spawn/-/cross-spawn-7.0.3.tgz", - "integrity": "sha512-iRDPJKUPVEND7dHPO8rkbOnPpyDygcDFtWjpeWNCgy8WP2rXcxXL8TskReQl6OrB2G7+UJrags1q15Fudc7G6w==", - "requires": { - "path-key": "^3.1.0", - "shebang-command": "^2.0.0", - "which": "^2.0.1" - } - }, - "crypto-random-string": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/crypto-random-string/-/crypto-random-string-2.0.0.tgz", - "integrity": "sha512-v1plID3y9r/lPhviJ1wrXpLeyUIGAZ2SHNYTEapm7/8A9nLPoyvVp3RK/EPFqn5kEznyWgYZNsRtYYIWbuG8KA==" - }, - "css": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/css/-/css-3.0.0.tgz", - "integrity": "sha512-DG9pFfwOrzc+hawpmqX/dHYHJG+Bsdb0klhyi1sDneOgGOXy9wQIC8hzyVp1e4NRYDBdxcylvywPkkXCHAzTyQ==", - "requires": { - "inherits": "^2.0.4", - "source-map": "^0.6.1", - "source-map-resolve": "^0.6.0" - }, - "dependencies": { - "source-map": { - "version": "0.6.1", - "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz", - "integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==" - } - } - }, - "css-blank-pseudo": { - "version": "3.0.3", - "resolved": "https://registry.npmjs.org/css-blank-pseudo/-/css-blank-pseudo-3.0.3.tgz", - "integrity": "sha512-VS90XWtsHGqoM0t4KpH053c4ehxZ2E6HtGI7x68YFV0pTo/QmkV/YFA+NnlvK8guxZVNWGQhVNJGC39Q8XF4OQ==", - "requires": { - "postcss-selector-parser": "^6.0.9" - } - }, - "css-color-keywords": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/css-color-keywords/-/css-color-keywords-1.0.0.tgz", - "integrity": "sha512-FyyrDHZKEjXDpNJYvVsV960FiqQyXc/LlYmsxl2BcdMb2WPx0OGRVgTg55rPSyLSNMqP52R9r8geSp7apN3Ofg==" - }, - "css-declaration-sorter": { - "version": "6.3.0", - "resolved": "https://registry.npmjs.org/css-declaration-sorter/-/css-declaration-sorter-6.3.0.tgz", - "integrity": "sha512-OGT677UGHJTAVMRhPO+HJ4oKln3wkBTwtDFH0ojbqm+MJm6xuDMHp2nkhh/ThaBqq20IbraBQSWKfSLNHQO9Og==", - "requires": {} - }, - "css-has-pseudo": { - "version": "3.0.4", - "resolved": "https://registry.npmjs.org/css-has-pseudo/-/css-has-pseudo-3.0.4.tgz", - "integrity": "sha512-Vse0xpR1K9MNlp2j5w1pgWIJtm1a8qS0JwS9goFYcImjlHEmywP9VUF05aGBXzGpDJF86QXk4L0ypBmwPhGArw==", - "requires": { - "postcss-selector-parser": "^6.0.9" - } - }, - "css-loader": { - "version": "6.7.1", - "resolved": "https://registry.npmjs.org/css-loader/-/css-loader-6.7.1.tgz", - "integrity": "sha512-yB5CNFa14MbPJcomwNh3wLThtkZgcNyI2bNMRt8iE5Z8Vwl7f8vQXFAzn2HDOJvtDq2NTZBUGMSUNNyrv3/+cw==", - "requires": { - "icss-utils": "^5.1.0", - "postcss": "^8.4.7", - "postcss-modules-extract-imports": "^3.0.0", - "postcss-modules-local-by-default": "^4.0.0", - "postcss-modules-scope": "^3.0.0", - "postcss-modules-values": "^4.0.0", - "postcss-value-parser": "^4.2.0", - "semver": "^7.3.5" - } - }, - "css-minimizer-webpack-plugin": { - "version": "3.4.1", - "resolved": "https://registry.npmjs.org/css-minimizer-webpack-plugin/-/css-minimizer-webpack-plugin-3.4.1.tgz", - "integrity": "sha512-1u6D71zeIfgngN2XNRJefc/hY7Ybsxd74Jm4qngIXyUEk7fss3VUzuHxLAq/R8NAba4QU9OUSaMZlbpRc7bM4Q==", - "requires": { - "cssnano": "^5.0.6", - "jest-worker": "^27.0.2", - "postcss": "^8.3.5", - "schema-utils": "^4.0.0", - "serialize-javascript": "^6.0.0", - "source-map": "^0.6.1" - }, - "dependencies": { - "ajv": { - "version": "8.11.0", - "resolved": "https://registry.npmjs.org/ajv/-/ajv-8.11.0.tgz", - "integrity": "sha512-wGgprdCvMalC0BztXvitD2hC04YffAvtsUn93JbGXYLAtCUO4xd17mCCZQxUOItiBwZvJScWo8NIvQMQ71rdpg==", - "requires": { - "fast-deep-equal": "^3.1.1", - "json-schema-traverse": "^1.0.0", - "require-from-string": "^2.0.2", - "uri-js": "^4.2.2" - } - }, - "ajv-keywords": { - "version": "5.1.0", - "resolved": "https://registry.npmjs.org/ajv-keywords/-/ajv-keywords-5.1.0.tgz", - "integrity": "sha512-YCS/JNFAUyr5vAuhk1DWm1CBxRHW9LbJ2ozWeemrIqpbsqKjHVxYPyi5GC0rjZIT5JxJ3virVTS8wk4i/Z+krw==", - "requires": { - "fast-deep-equal": "^3.1.3" - } - }, - "json-schema-traverse": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/json-schema-traverse/-/json-schema-traverse-1.0.0.tgz", - "integrity": "sha512-NM8/P9n3XjXhIZn1lLhkFaACTOURQXjWhV4BA/RnOv8xvgqtqpAX9IO4mRQxSx1Rlo4tqzeqb0sOlruaOy3dug==" - }, - "schema-utils": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/schema-utils/-/schema-utils-4.0.0.tgz", - "integrity": "sha512-1edyXKgh6XnJsJSQ8mKWXnN/BVaIbFMLpouRUrXgVq7WYne5kw3MW7UPhO44uRXQSIpTSXoJbmrR2X0w9kUTyg==", - "requires": { - "@types/json-schema": "^7.0.9", - "ajv": "^8.8.0", - "ajv-formats": "^2.1.1", - "ajv-keywords": "^5.0.0" - } - }, - "source-map": { - "version": "0.6.1", - "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz", - "integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==" - } - } - }, - "css-prefers-color-scheme": { - "version": "6.0.3", - "resolved": "https://registry.npmjs.org/css-prefers-color-scheme/-/css-prefers-color-scheme-6.0.3.tgz", - "integrity": "sha512-4BqMbZksRkJQx2zAjrokiGMd07RqOa2IxIrrN10lyBe9xhn9DEvjUK79J6jkeiv9D9hQFXKb6g1jwU62jziJZA==", - "requires": {} - }, - "css-select": { - "version": "4.3.0", - "resolved": "https://registry.npmjs.org/css-select/-/css-select-4.3.0.tgz", - "integrity": "sha512-wPpOYtnsVontu2mODhA19JrqWxNsfdatRKd64kmpRbQgh1KtItko5sTnEpPdpSaJszTOhEMlF/RPz28qj4HqhQ==", - "requires": { - "boolbase": "^1.0.0", - "css-what": "^6.0.1", - "domhandler": "^4.3.1", - "domutils": "^2.8.0", - "nth-check": "^2.0.1" - } - }, - "css-select-base-adapter": { - "version": "0.1.1", - "resolved": "https://registry.npmjs.org/css-select-base-adapter/-/css-select-base-adapter-0.1.1.tgz", - "integrity": "sha512-jQVeeRG70QI08vSTwf1jHxp74JoZsr2XSgETae8/xC8ovSnL2WF87GTLO86Sbwdt2lK4Umg4HnnwMO4YF3Ce7w==" - }, - "css-to-react-native": { - "version": "3.2.0", - "resolved": "https://registry.npmjs.org/css-to-react-native/-/css-to-react-native-3.2.0.tgz", - "integrity": "sha512-e8RKaLXMOFii+02mOlqwjbD00KSEKqblnpO9e++1aXS1fPQOpS1YoqdVHBqPjHNoxeF2mimzVqawm2KCbEdtHQ==", - "requires": { - "camelize": "^1.0.0", - "css-color-keywords": "^1.0.0", - "postcss-value-parser": "^4.0.2" - } - }, - "css-tree": { - "version": "1.0.0-alpha.37", - "resolved": "https://registry.npmjs.org/css-tree/-/css-tree-1.0.0-alpha.37.tgz", - "integrity": "sha512-DMxWJg0rnz7UgxKT0Q1HU/L9BeJI0M6ksor0OgqOnF+aRCDWg/N2641HmVyU9KVIu0OVVWOb2IpC9A+BJRnejg==", - "requires": { - "mdn-data": "2.0.4", - "source-map": "^0.6.1" - }, - "dependencies": { - "source-map": { - "version": "0.6.1", - "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz", - "integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==" - } - } - }, - "css-what": { - "version": "6.1.0", - "resolved": "https://registry.npmjs.org/css-what/-/css-what-6.1.0.tgz", - "integrity": "sha512-HTUrgRJ7r4dsZKU6GjmpfRK1O76h97Z8MfS1G0FozR+oF2kG6Vfe8JE6zwrkbxigziPHinCJ+gCPjA9EaBDtRw==" - }, - "css.escape": { - "version": "1.5.1", - "resolved": "https://registry.npmjs.org/css.escape/-/css.escape-1.5.1.tgz", - "integrity": "sha512-YUifsXXuknHlUsmlgyY0PKzgPOr7/FjCePfHNt0jxm83wHZi44VDMQ7/fGNkjY3/jV1MC+1CmZbaHzugyeRtpg==" - }, - "cssdb": { - "version": "6.6.3", - "resolved": "https://registry.npmjs.org/cssdb/-/cssdb-6.6.3.tgz", - "integrity": "sha512-7GDvDSmE+20+WcSMhP17Q1EVWUrLlbxxpMDqG731n8P99JhnQZHR9YvtjPvEHfjFUjvQJvdpKCjlKOX+xe4UVA==" - }, - "cssesc": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/cssesc/-/cssesc-3.0.0.tgz", - "integrity": "sha512-/Tb/JcjK111nNScGob5MNtsntNM1aCNUDipB/TkwZFhyDrrE47SOx/18wF2bbjgc3ZzCSKW1T5nt5EbFoAz/Vg==" - }, - "cssnano": { - "version": "5.1.12", - "resolved": "https://registry.npmjs.org/cssnano/-/cssnano-5.1.12.tgz", - "integrity": "sha512-TgvArbEZu0lk/dvg2ja+B7kYoD7BBCmn3+k58xD0qjrGHsFzXY/wKTo9M5egcUCabPol05e/PVoIu79s2JN4WQ==", - "requires": { - "cssnano-preset-default": "^5.2.12", - "lilconfig": "^2.0.3", - "yaml": "^1.10.2" - } - }, - "cssnano-preset-default": { - "version": "5.2.12", - "resolved": "https://registry.npmjs.org/cssnano-preset-default/-/cssnano-preset-default-5.2.12.tgz", - "integrity": "sha512-OyCBTZi+PXgylz9HAA5kHyoYhfGcYdwFmyaJzWnzxuGRtnMw/kR6ilW9XzlzlRAtB6PLT/r+prYgkef7hngFew==", - "requires": { - "css-declaration-sorter": "^6.3.0", - "cssnano-utils": "^3.1.0", - "postcss-calc": "^8.2.3", - "postcss-colormin": "^5.3.0", - "postcss-convert-values": "^5.1.2", - "postcss-discard-comments": "^5.1.2", - "postcss-discard-duplicates": "^5.1.0", - "postcss-discard-empty": "^5.1.1", - "postcss-discard-overridden": "^5.1.0", - "postcss-merge-longhand": "^5.1.6", - "postcss-merge-rules": "^5.1.2", - "postcss-minify-font-values": "^5.1.0", - "postcss-minify-gradients": "^5.1.1", - "postcss-minify-params": "^5.1.3", - "postcss-minify-selectors": "^5.2.1", - "postcss-normalize-charset": "^5.1.0", - "postcss-normalize-display-values": "^5.1.0", - "postcss-normalize-positions": "^5.1.1", - "postcss-normalize-repeat-style": "^5.1.1", - "postcss-normalize-string": "^5.1.0", - "postcss-normalize-timing-functions": "^5.1.0", - "postcss-normalize-unicode": "^5.1.0", - "postcss-normalize-url": "^5.1.0", - "postcss-normalize-whitespace": "^5.1.1", - "postcss-ordered-values": "^5.1.3", - "postcss-reduce-initial": "^5.1.0", - "postcss-reduce-transforms": "^5.1.0", - "postcss-svgo": "^5.1.0", - "postcss-unique-selectors": "^5.1.1" - } - }, - "cssnano-utils": { - "version": "3.1.0", - "resolved": "https://registry.npmjs.org/cssnano-utils/-/cssnano-utils-3.1.0.tgz", - "integrity": "sha512-JQNR19/YZhz4psLX/rQ9M83e3z2Wf/HdJbryzte4a3NSuafyp9w/I4U+hx5C2S9g41qlstH7DEWnZaaj83OuEA==", - "requires": {} - }, - "csso": { - "version": "4.2.0", - "resolved": "https://registry.npmjs.org/csso/-/csso-4.2.0.tgz", - "integrity": "sha512-wvlcdIbf6pwKEk7vHj8/Bkc0B4ylXZruLvOgs9doS5eOsOpuodOV2zJChSpkp+pRpYQLQMeF04nr3Z68Sta9jA==", - "requires": { - "css-tree": "^1.1.2" - }, - "dependencies": { - "css-tree": { - "version": "1.1.3", - "resolved": "https://registry.npmjs.org/css-tree/-/css-tree-1.1.3.tgz", - "integrity": "sha512-tRpdppF7TRazZrjJ6v3stzv93qxRcSsFmW6cX0Zm2NVKpxE1WV1HblnghVv9TreireHkqI/VDEsfolRF1p6y7Q==", - "requires": { - "mdn-data": "2.0.14", - "source-map": "^0.6.1" - } - }, - "mdn-data": { - "version": "2.0.14", - "resolved": "https://registry.npmjs.org/mdn-data/-/mdn-data-2.0.14.tgz", - "integrity": "sha512-dn6wd0uw5GsdswPFfsgMp5NSB0/aDe6fK94YJV/AJDYXL6HVLWBsxeq7js7Ad+mU2K9LAlwpk6kN2D5mwCPVow==" - }, - "source-map": { - "version": "0.6.1", - "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz", - "integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==" - } - } - }, - "cssom": { - "version": "0.4.4", - "resolved": "https://registry.npmjs.org/cssom/-/cssom-0.4.4.tgz", - "integrity": "sha512-p3pvU7r1MyyqbTk+WbNJIgJjG2VmTIaB10rI93LzVPrmDJKkzKYMtxxyAvQXR/NS6otuzveI7+7BBq3SjBS2mw==" - }, - "cssstyle": { - "version": "2.3.0", - "resolved": "https://registry.npmjs.org/cssstyle/-/cssstyle-2.3.0.tgz", - "integrity": "sha512-AZL67abkUzIuvcHqk7c09cezpGNcxUxU4Ioi/05xHk4DQeTkWmGYftIE6ctU6AEt+Gn4n1lDStOtj7FKycP71A==", - "requires": { - "cssom": "~0.3.6" - }, - "dependencies": { - "cssom": { - "version": "0.3.8", - "resolved": "https://registry.npmjs.org/cssom/-/cssom-0.3.8.tgz", - "integrity": "sha512-b0tGHbfegbhPJpxpiBPU2sCkigAqtM9O121le6bbOlgyV+NyGyCmVfJ6QW9eRjz8CpNfWEOYBIMIGRYkLwsIYg==" - } - } - }, - "csstype": { - "version": "3.1.0", - "resolved": "https://registry.npmjs.org/csstype/-/csstype-3.1.0.tgz", - "integrity": "sha512-uX1KG+x9h5hIJsaKR9xHUeUraxf8IODOwq9JLNPq6BwB04a/xgpq3rcx47l5BZu5zBPlgD342tdke3Hom/nJRA==" - }, - "d": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/d/-/d-1.0.1.tgz", - "integrity": "sha512-m62ShEObQ39CfralilEQRjH6oAMtNCV1xJyEx5LpRYUVN+EviphDgUc/F3hnYbADmkiNs67Y+3ylmlG7Lnu+FA==", - "requires": { - "es5-ext": "^0.10.50", - "type": "^1.0.1" - } - }, - "damerau-levenshtein": { - "version": "1.0.8", - "resolved": "https://registry.npmjs.org/damerau-levenshtein/-/damerau-levenshtein-1.0.8.tgz", - "integrity": "sha512-sdQSFB7+llfUcQHUQO3+B8ERRj0Oa4w9POWMI/puGtuf7gFywGmkaLCElnudfTiKZV+NvHqL0ifzdrI8Ro7ESA==" - }, - "dashdash": { - "version": "1.14.1", - "resolved": "https://registry.npmjs.org/dashdash/-/dashdash-1.14.1.tgz", - "integrity": "sha512-jRFi8UDGo6j+odZiEpjazZaWqEal3w/basFjQHQEwVtZJGDpxbH1MeYluwCS8Xq5wmLJooDlMgvVarmWfGM44g==", - "requires": { - "assert-plus": "^1.0.0" - } - }, - "data-urls": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/data-urls/-/data-urls-2.0.0.tgz", - "integrity": "sha512-X5eWTSXO/BJmpdIKCRuKUgSCgAN0OwliVK3yPKbwIWU1Tdw5BRajxlzMidvh+gwko9AfQ9zIj52pzF91Q3YAvQ==", - "requires": { - "abab": "^2.0.3", - "whatwg-mimetype": "^2.3.0", - "whatwg-url": "^8.0.0" - } - }, - "debug": { - "version": "4.3.4", - "resolved": "https://registry.npmjs.org/debug/-/debug-4.3.4.tgz", - "integrity": "sha512-PRWFHuSU3eDtQJPvnNY7Jcket1j0t5OuOsFzPPzsekD52Zl8qUfFIPEiswXqIvHWGVHOgX+7G/vCNNhehwxfkQ==", - "requires": { - "ms": "2.1.2" - } - }, - "decamelize": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/decamelize/-/decamelize-4.0.0.tgz", - "integrity": "sha512-9iE1PgSik9HeIIw2JO94IidnE3eBoQrFJ3w7sFuzSX4DpmZ3v5sZpUiV5Swcf6mQEF+Y0ru8Neo+p+nyh2J+hQ==", - "peer": true - }, - "decimal.js": { - "version": "10.3.1", - "resolved": "https://registry.npmjs.org/decimal.js/-/decimal.js-10.3.1.tgz", - "integrity": "sha512-V0pfhfr8suzyPGOx3nmq4aHqabehUZn6Ch9kyFpV79TGDTWFmHqUqXdabR7QHqxzrYolF4+tVmJhUG4OURg5dQ==" - }, - "decimal.js-light": { - "version": "2.5.1", - "resolved": "https://registry.npmjs.org/decimal.js-light/-/decimal.js-light-2.5.1.tgz", - "integrity": "sha512-qIMFpTMZmny+MMIitAB6D7iVPEorVw6YQRWkvarTkT4tBeSLLiHzcwj6q0MmYSFCiVpiqPJTJEYIrpcPzVEIvg==" - }, - "decode-uri-component": { - "version": "0.2.2", - "resolved": "https://registry.npmjs.org/decode-uri-component/-/decode-uri-component-0.2.2.tgz", - "integrity": "sha512-FqUYQ+8o158GyGTrMFJms9qh3CqTKvAqgqsTnkLI8sKu0028orqBhxNMFkFen0zGyg6epACD32pjVk58ngIErQ==" - }, - "decompress-response": { - "version": "6.0.0", - "resolved": "https://registry.npmjs.org/decompress-response/-/decompress-response-6.0.0.tgz", - "integrity": "sha512-aW35yZM6Bb/4oJlZncMH2LCoZtJXTRxES17vE3hoRiowU2kWHaJKFkSBDnDR+cm9J+9QhXmREyIfv0pji9ejCQ==", - "requires": { - "mimic-response": "^3.1.0" - }, - "dependencies": { - "mimic-response": { - "version": "3.1.0", - "resolved": "https://registry.npmjs.org/mimic-response/-/mimic-response-3.1.0.tgz", - "integrity": "sha512-z0yWI+4FDrrweS8Zmt4Ej5HdJmky15+L2e6Wgn3+iK5fWzb6T3fhNFq2+MeTRb064c6Wr4N/wv0DzQTjNzHNGQ==" - } - } - }, - "dedent": { - "version": "0.7.0", - "resolved": "https://registry.npmjs.org/dedent/-/dedent-0.7.0.tgz", - "integrity": "sha512-Q6fKUPqnAHAyhiUgFU7BUzLiv0kd8saH9al7tnu5Q/okj6dnupxyTgFIBjVzJATdfIAm9NAsvXNzjaKa+bxVyA==" - }, - "deep-extend": { - "version": "0.6.0", - "resolved": "https://registry.npmjs.org/deep-extend/-/deep-extend-0.6.0.tgz", - "integrity": "sha512-LOHxIOaPYdHlJRtCQfDIVZtfw/ufM8+rVj649RIHzcm/vGwQRXFt6OPqIFWsm2XEMrNIEtWR64sY1LEKD2vAOA==", - "dev": true - }, - "deep-is": { - "version": "0.1.4", - "resolved": "https://registry.npmjs.org/deep-is/-/deep-is-0.1.4.tgz", - "integrity": "sha512-oIPzksmTg4/MriiaYGO+okXDT7ztn/w3Eptv/+gSIdMdKsJo0u4CfYNFJPy+4SKMuCqGw2wxnA+URMg3t8a/bQ==" - }, - "deepmerge": { - "version": "4.2.2", - "resolved": "https://registry.npmjs.org/deepmerge/-/deepmerge-4.2.2.tgz", - "integrity": "sha512-FJ3UgI4gIl+PHZm53knsuSFpE+nESMr7M4v9QcgB7S63Kj/6WqMiFQJpBBYz1Pt+66bZpP3Q7Lye0Oo9MPKEdg==" - }, - "default-gateway": { - "version": "6.0.3", - "resolved": "https://registry.npmjs.org/default-gateway/-/default-gateway-6.0.3.tgz", - "integrity": "sha512-fwSOJsbbNzZ/CUFpqFBqYfYNLj1NbMPm8MMCIzHjC83iSJRBEGmDUxU+WP661BaBQImeC2yHwXtz+P/O9o+XEg==", - "requires": { - "execa": "^5.0.0" - } - }, - "defer-to-connect": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/defer-to-connect/-/defer-to-connect-2.0.1.tgz", - "integrity": "sha512-4tvttepXG1VaYGrRibk5EwJd1t4udunSOVMdLSAL6mId1ix438oPwPZMALY41FCijukO1L0twNcGsdzS7dHgDg==" - }, - "define-lazy-prop": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/define-lazy-prop/-/define-lazy-prop-2.0.0.tgz", - "integrity": "sha512-Ds09qNh8yw3khSjiJjiUInaGX9xlqZDY7JVryGxdxV7NPeuqQfplOpQ66yJFZut3jLa5zOwkXw1g9EI2uKh4Og==" - }, - "define-properties": { - "version": "1.1.4", - "resolved": "https://registry.npmjs.org/define-properties/-/define-properties-1.1.4.tgz", - "integrity": "sha512-uckOqKcfaVvtBdsVkdPv3XjveQJsNQqmhXgRi8uhvWWuPYZCNlzT8qAyblUgNoXdHdjMTzAqeGjAoli8f+bzPA==", - "requires": { - "has-property-descriptors": "^1.0.0", - "object-keys": "^1.1.1" - } - }, - "defined": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/defined/-/defined-1.0.0.tgz", - "integrity": "sha512-Y2caI5+ZwS5c3RiNDJ6u53VhQHv+hHKwhkI1iHvceKUHw9Df6EK2zRLfjejRgMuCuxK7PfSWIMwWecceVvThjQ==" - }, - "delayed-stream": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/delayed-stream/-/delayed-stream-1.0.0.tgz", - "integrity": "sha512-ZySD7Nf91aLB0RxL4KGrKHBXl7Eds1DAmEdcoVawXnLD7SDhpNgtuII2aAkg7a7QS41jxPSZ17p4VdGnMHk3MQ==" - }, - "depd": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/depd/-/depd-2.0.0.tgz", - "integrity": "sha512-g7nH6P6dyDioJogAAGprGpCtVImJhpPk/roCzdb3fIh61/s/nPsfR6onyMwkCAR/OlC3yBC0lESvUoQEAssIrw==" - }, - "destroy": { - "version": "1.2.0", - "resolved": "https://registry.npmjs.org/destroy/-/destroy-1.2.0.tgz", - "integrity": "sha512-2sJGJTaXIIaR1w4iJSNoN0hnMY7Gpc/n8D4qSCJw8QqFWXf7cuAgnEHxBpweaVcPevC2l3KpjYCx3NypQQgaJg==" - }, - "detect-newline": { - "version": "3.1.0", - "resolved": "https://registry.npmjs.org/detect-newline/-/detect-newline-3.1.0.tgz", - "integrity": "sha512-TLz+x/vEXm/Y7P7wn1EJFNLxYpUD4TgMosxY6fAVJUnJMbupHBOncxyWUG9OpTaH9EBD7uFI5LfEgmMOc54DsA==" - }, - "detect-node": { - "version": "2.1.0", - "resolved": "https://registry.npmjs.org/detect-node/-/detect-node-2.1.0.tgz", - "integrity": "sha512-T0NIuQpnTvFDATNuHN5roPwSBG83rFsuO+MXXH9/3N1eFbn4wcPjttvjMLEPWJ0RGUYgQE7cGgS3tNxbqCGM7g==" - }, - "detect-port-alt": { - "version": "1.1.6", - "resolved": "https://registry.npmjs.org/detect-port-alt/-/detect-port-alt-1.1.6.tgz", - "integrity": "sha512-5tQykt+LqfJFBEYaDITx7S7cR7mJ/zQmLXZ2qt5w04ainYZw6tBf9dBunMjVeVOdYVRUzUOE4HkY5J7+uttb5Q==", - "requires": { - "address": "^1.0.1", - "debug": "^2.6.0" - }, - "dependencies": { - "debug": { - "version": "2.6.9", - "resolved": "https://registry.npmjs.org/debug/-/debug-2.6.9.tgz", - "integrity": "sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA==", - "requires": { - "ms": "2.0.0" - } - }, - "ms": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/ms/-/ms-2.0.0.tgz", - "integrity": "sha512-Tpp60P6IUJDTuOq/5Z8cdskzJujfwqfOTkrwIwj7IRISpnkJnT6SyJ4PCPnGMoFjC9ddhal5KVIYtAt97ix05A==" - } - } - }, - "detective": { - "version": "5.2.1", - "resolved": "https://registry.npmjs.org/detective/-/detective-5.2.1.tgz", - "integrity": "sha512-v9XE1zRnz1wRtgurGu0Bs8uHKFSTdteYZNbIPFVhUZ39L/S79ppMpdmVOZAnoz1jfEFodc48n6MX483Xo3t1yw==", - "requires": { - "acorn-node": "^1.8.2", - "defined": "^1.0.0", - "minimist": "^1.2.6" - } - }, - "didyoumean": { - "version": "1.2.2", - "resolved": "https://registry.npmjs.org/didyoumean/-/didyoumean-1.2.2.tgz", - "integrity": "sha512-gxtyfqMg7GKyhQmb056K7M3xszy/myH8w+B4RT+QXBQsvAOdc3XymqDDPHx1BgPgsdAA5SIifona89YtRATDzw==" - }, - "diff": { - "version": "5.0.0", - "resolved": "https://registry.npmjs.org/diff/-/diff-5.0.0.tgz", - "integrity": "sha512-/VTCrvm5Z0JGty/BWHljh+BAiw3IK+2j87NGMu8Nwc/f48WoDAC395uomO9ZD117ZOBaHmkX1oyLvkVM/aIT3w==", - "peer": true - }, - "diff-sequences": { - "version": "27.5.1", - "resolved": "https://registry.npmjs.org/diff-sequences/-/diff-sequences-27.5.1.tgz", - "integrity": "sha512-k1gCAXAsNgLwEL+Y8Wvl+M6oEFj5bgazfZULpS5CneoPPXRaCCW7dm+q21Ky2VEE5X+VeRDBVg1Pcvvsr4TtNQ==" - }, - "dijkstrajs": { - "version": "1.0.3", - "resolved": "https://registry.npmjs.org/dijkstrajs/-/dijkstrajs-1.0.3.tgz", - "integrity": "sha512-qiSlmBq9+BCdCA/L46dw8Uy93mloxsPSbwnm5yrKn2vMPiy8KyAskTF6zuV/j5BMsmOGZDPs7KjU+mjb670kfA==" - }, - "dir-glob": { - "version": "3.0.1", - "resolved": "https://registry.npmjs.org/dir-glob/-/dir-glob-3.0.1.tgz", - "integrity": "sha512-WkrWp9GR4KXfKGYzOLmTuGVi1UWFfws377n9cc55/tb6DuqyF6pcQ5AbiHEshaDpY9v6oaSr2XCDidGmMwdzIA==", - "requires": { - "path-type": "^4.0.0" - } - }, - "dlv": { - "version": "1.1.3", - "resolved": "https://registry.npmjs.org/dlv/-/dlv-1.1.3.tgz", - "integrity": "sha512-+HlytyjlPKnIG8XuRG8WvmBP8xs8P71y+SKKS6ZXWoEgLuePxtDoUEiH7WkdePWrQ5JBpE6aoVqfZfJUQkjXwA==" - }, - "dns-equal": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/dns-equal/-/dns-equal-1.0.0.tgz", - "integrity": "sha512-z+paD6YUQsk+AbGCEM4PrOXSss5gd66QfcVBFTKR/HpFL9jCqikS94HYwKww6fQyO7IxrIIyUu+g0Ka9tUS2Cg==" - }, - "dns-packet": { - "version": "5.4.0", - "resolved": "https://registry.npmjs.org/dns-packet/-/dns-packet-5.4.0.tgz", - "integrity": "sha512-EgqGeaBB8hLiHLZtp/IbaDQTL8pZ0+IvwzSHA6d7VyMDM+B9hgddEMa9xjK5oYnw0ci0JQ6g2XCD7/f6cafU6g==", - "requires": { - "@leichtgewicht/ip-codec": "^2.0.1" - } - }, - "doctrine": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/doctrine/-/doctrine-3.0.0.tgz", - "integrity": "sha512-yS+Q5i3hBf7GBkd4KG8a7eBNNWNGLTaEwwYWUijIYM7zrlYDM0BFXHjjPWlWZ1Rg7UaddZeIDmi9jF3HmqiQ2w==", - "requires": { - "esutils": "^2.0.2" - } - }, - "document.contains": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/document.contains/-/document.contains-1.0.2.tgz", - "integrity": "sha512-YcvYFs15mX8m3AO1QNQy3BlIpSMfNRj3Ujk2BEJxsZG+HZf7/hZ6jr7mDpXrF8q+ff95Vef5yjhiZxm8CGJr6Q==", - "requires": { - "define-properties": "^1.1.3" - } - }, - "dom-accessibility-api": { - "version": "0.5.14", - "resolved": "https://registry.npmjs.org/dom-accessibility-api/-/dom-accessibility-api-0.5.14.tgz", - "integrity": "sha512-NMt+m9zFMPZe0JcY9gN224Qvk6qLIdqex29clBvc/y75ZBX9YA9wNK3frsYvu2DI1xcCIwxwnX+TlsJ2DSOADg==" - }, - "dom-converter": { - "version": "0.2.0", - "resolved": "https://registry.npmjs.org/dom-converter/-/dom-converter-0.2.0.tgz", - "integrity": "sha512-gd3ypIPfOMr9h5jIKq8E3sHOTCjeirnl0WK5ZdS1AW0Odt0b1PaWaHdJ4Qk4klv+YB9aJBS7mESXjFoDQPu6DA==", - "requires": { - "utila": "~0.4" - } - }, - "dom-helpers": { - "version": "5.2.1", - "resolved": "https://registry.npmjs.org/dom-helpers/-/dom-helpers-5.2.1.tgz", - "integrity": "sha512-nRCa7CK3VTrM2NmGkIy4cbK7IZlgBE/PYMn55rrXefr5xXDP0LdtfPnblFDoVdcAfslJ7or6iqAUnx0CCGIWQA==", - "requires": { - "@babel/runtime": "^7.8.7", - "csstype": "^3.0.2" - } - }, - "dom-serializer": { - "version": "1.4.1", - "resolved": "https://registry.npmjs.org/dom-serializer/-/dom-serializer-1.4.1.tgz", - "integrity": "sha512-VHwB3KfrcOOkelEG2ZOfxqLZdfkil8PtJi4P8N2MMXucZq2yLp75ClViUlOVwyoHEDjYU433Aq+5zWP61+RGag==", - "requires": { - "domelementtype": "^2.0.1", - "domhandler": "^4.2.0", - "entities": "^2.0.0" - } - }, - "dom-walk": { - "version": "0.1.2", - "resolved": "https://registry.npmjs.org/dom-walk/-/dom-walk-0.1.2.tgz", - "integrity": "sha512-6QvTW9mrGeIegrFXdtQi9pk7O/nSK6lSdXW2eqUspN5LWD7UTji2Fqw5V2YLjBpHEoU9Xl/eUWNpDeZvoyOv2w==" - }, - "domelementtype": { - "version": "2.3.0", - "resolved": "https://registry.npmjs.org/domelementtype/-/domelementtype-2.3.0.tgz", - "integrity": "sha512-OLETBj6w0OsagBwdXnPdN0cnMfF9opN69co+7ZrbfPGrdpPVNBUj02spi6B1N7wChLQiPn4CSH/zJvXw56gmHw==" - }, - "domexception": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/domexception/-/domexception-2.0.1.tgz", - "integrity": "sha512-yxJ2mFy/sibVQlu5qHjOkf9J3K6zgmCxgJ94u2EdvDOV09H+32LtRswEcUsmUWN72pVLOEnTSRaIVVzVQgS0dg==", - "requires": { - "webidl-conversions": "^5.0.0" - }, - "dependencies": { - "webidl-conversions": { - "version": "5.0.0", - "resolved": "https://registry.npmjs.org/webidl-conversions/-/webidl-conversions-5.0.0.tgz", - "integrity": "sha512-VlZwKPCkYKxQgeSbH5EyngOmRp7Ww7I9rQLERETtf5ofd9pGeswWiOtogpEO850jziPRarreGxn5QIiTqpb2wA==" - } - } - }, - "domhandler": { - "version": "4.3.1", - "resolved": "https://registry.npmjs.org/domhandler/-/domhandler-4.3.1.tgz", - "integrity": "sha512-GrwoxYN+uWlzO8uhUXRl0P+kHE4GtVPfYzVLcUxPL7KNdHKj66vvlhiweIHqYYXWlw+T8iLMp42Lm67ghw4WMQ==", - "requires": { - "domelementtype": "^2.2.0" - } - }, - "domutils": { - "version": "2.8.0", - "resolved": "https://registry.npmjs.org/domutils/-/domutils-2.8.0.tgz", - "integrity": "sha512-w96Cjofp72M5IIhpjgobBimYEfoPjx1Vx0BSX9P30WBdZW2WIKU0T1Bd0kz2eNZ9ikjKgHbEyKx8BB6H1L3h3A==", - "requires": { - "dom-serializer": "^1.0.1", - "domelementtype": "^2.2.0", - "domhandler": "^4.2.0" - } - }, - "dot-case": { - "version": "3.0.4", - "resolved": "https://registry.npmjs.org/dot-case/-/dot-case-3.0.4.tgz", - "integrity": "sha512-Kv5nKlh6yRrdrGvxeJ2e5y2eRUpkUosIW4A2AS38zwSz27zu7ufDwQPi5Jhs3XAlGNetl3bmnGhQsMtkKJnj3w==", - "requires": { - "no-case": "^3.0.4", - "tslib": "^2.0.3" - } - }, - "dotenv": { - "version": "14.3.2", - "resolved": "https://registry.npmjs.org/dotenv/-/dotenv-14.3.2.tgz", - "integrity": "sha512-vwEppIphpFdvaMCaHfCEv9IgwcxMljMw2TnAQBB4VWPvzXQLTb82jwmdOKzlEVUL3gNFT4l4TPKO+Bn+sqcrVQ==" - }, - "dotenv-expand": { - "version": "5.1.0", - "resolved": "https://registry.npmjs.org/dotenv-expand/-/dotenv-expand-5.1.0.tgz", - "integrity": "sha512-YXQl1DSa4/PQyRfgrv6aoNjhasp/p4qs9FjJ4q4cQk+8m4r6k4ZSiEyytKG8f8W9gi8WsQtIObNmKd+tMzNTmA==" - }, - "dtrace-provider": { - "version": "0.8.8", - "resolved": "https://registry.npmjs.org/dtrace-provider/-/dtrace-provider-0.8.8.tgz", - "integrity": "sha512-b7Z7cNtHPhH9EJhNNbbeqTcXB8LGFFZhq1PGgEvpeHlzd36bhbdTWoE/Ba/YguqpBSlAPKnARWhVlhunCMwfxg==", - "optional": true, - "requires": { - "nan": "^2.14.0" - } - }, - "duplexer": { - "version": "0.1.2", - "resolved": "https://registry.npmjs.org/duplexer/-/duplexer-0.1.2.tgz", - "integrity": "sha512-jtD6YG370ZCIi/9GTaJKQxWTZD045+4R4hTk/x1UyoqadyJ9x9CgSi1RlVDQF8U2sxLLSnFkCaMihqljHIWgMg==" - }, - "ecc-jsbn": { - "version": "0.1.2", - "resolved": "https://registry.npmjs.org/ecc-jsbn/-/ecc-jsbn-0.1.2.tgz", - "integrity": "sha512-eh9O+hwRHNbG4BLTjEl3nw044CkGm5X6LoaCf7LPp7UU8Qrt47JYNi6nPX8xjW97TKGKm1ouctg0QSpZe9qrnw==", - "requires": { - "jsbn": "~0.1.0", - "safer-buffer": "^2.1.0" - } - }, - "ee-first": { - "version": "1.1.1", - "resolved": "https://registry.npmjs.org/ee-first/-/ee-first-1.1.1.tgz", - "integrity": "sha512-WMwm9LhRUo+WUaRN+vRuETqG89IgZphVSNkdFgeb6sS/E4OrDIN7t48CAewSHXc6C8lefD8KKfr5vY61brQlow==" - }, - "ejs": { - "version": "3.1.8", - "resolved": "https://registry.npmjs.org/ejs/-/ejs-3.1.8.tgz", - "integrity": "sha512-/sXZeMlhS0ArkfX2Aw780gJzXSMPnKjtspYZv+f3NiKLlubezAHDU5+9xz6gd3/NhG3txQCo6xlglmTS+oTGEQ==", - "requires": { - "jake": "^10.8.5" - } - }, - "electron-to-chromium": { - "version": "1.4.172", - "resolved": "https://registry.npmjs.org/electron-to-chromium/-/electron-to-chromium-1.4.172.tgz", - "integrity": "sha512-yDoFfTJnqBAB6hSiPvzmsBJSrjOXJtHSJoqJdI/zSIh7DYupYnIOHt/bbPw/WE31BJjNTybDdNAs21gCMnTh0Q==" - }, - "elliptic": { - "version": "6.5.4", - "resolved": "https://registry.npmjs.org/elliptic/-/elliptic-6.5.4.tgz", - "integrity": "sha512-iLhC6ULemrljPZb+QutR5TQGB+pdW6KGD5RSegS+8sorOZT+rdQFbsQFJgvN3eRqNALqJer4oQ16YvJHlU8hzQ==", - "requires": { - "bn.js": "^4.11.9", - "brorand": "^1.1.0", - "hash.js": "^1.0.0", - "hmac-drbg": "^1.0.1", - "inherits": "^2.0.4", - "minimalistic-assert": "^1.0.1", - "minimalistic-crypto-utils": "^1.0.1" - }, - "dependencies": { - "bn.js": { - "version": "4.12.0", - "resolved": "https://registry.npmjs.org/bn.js/-/bn.js-4.12.0.tgz", - "integrity": "sha512-c98Bf3tPniI+scsdk237ku1Dc3ujXQTSgyiPUDEOe7tRkhrqridvh8klBv0HCEso1OLOYcHuCv/cS6DNxKH+ZA==" - } - } - }, - "emittery": { - "version": "0.8.1", - "resolved": "https://registry.npmjs.org/emittery/-/emittery-0.8.1.tgz", - "integrity": "sha512-uDfvUjVrfGJJhymx/kz6prltenw1u7WrCg1oa94zYY8xxVpLLUu045LAT0dhDZdXG58/EpPL/5kA180fQ/qudg==" - }, - "emoji-regex": { - "version": "9.2.2", - "resolved": "https://registry.npmjs.org/emoji-regex/-/emoji-regex-9.2.2.tgz", - "integrity": "sha512-L18DaJsXSUk2+42pv8mLs5jJT2hqFkFE4j21wOmgbUqsZ2hL72NsUU785g9RXgo3s0ZNgVl42TiHp3ZtOv/Vyg==" - }, - "emojis-list": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/emojis-list/-/emojis-list-3.0.0.tgz", - "integrity": "sha512-/kyM18EfinwXZbno9FyUGeFh87KC8HRQBQGildHZbEuRyWFOmv1U10o9BBp8XVZDVNNuQKyIGIu5ZYAAXJ0V2Q==" - }, - "encode-utf8": { - "version": "1.0.3", - "resolved": "https://registry.npmjs.org/encode-utf8/-/encode-utf8-1.0.3.tgz", - "integrity": "sha512-ucAnuBEhUK4boH2HjVYG5Q2mQyPorvv0u/ocS+zhdw0S8AlHYY+GOFhP1Gio5z4icpP2ivFSvhtFjQi8+T9ppw==" - }, - "encodeurl": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/encodeurl/-/encodeurl-1.0.2.tgz", - "integrity": "sha512-TPJXq8JqFaVYm2CWmPvnP2Iyo4ZSM7/QKcSmuMLDObfpH5fi7RUGmd/rTDf+rut/saiDiQEeVTNgAmJEdAOx0w==" - }, - "encoding": { - "version": "0.1.13", - "resolved": "https://registry.npmjs.org/encoding/-/encoding-0.1.13.tgz", - "integrity": "sha512-ETBauow1T35Y/WZMkio9jiM0Z5xjHHmJ4XmjZOq1l/dXz3lr2sRn87nJy20RupqSh1F2m3HHPSp8ShIPQJrJ3A==", - "optional": true, - "requires": { - "iconv-lite": "^0.6.2" - } - }, - "end-of-stream": { - "version": "1.4.4", - "resolved": "https://registry.npmjs.org/end-of-stream/-/end-of-stream-1.4.4.tgz", - "integrity": "sha512-+uw1inIHVPQoaVuHzRyXd21icM+cnt4CzD5rW+NC1wjOUSTOs+Te7FOv7AhN7vS9x/oIyhLP5PR1H+phQAHu5Q==", - "requires": { - "once": "^1.4.0" - } - }, - "enhanced-resolve": { - "version": "5.13.0", - "resolved": "https://registry.npmjs.org/enhanced-resolve/-/enhanced-resolve-5.13.0.tgz", - "integrity": "sha512-eyV8f0y1+bzyfh8xAwW/WTSZpLbjhqc4ne9eGSH4Zo2ejdyiNG9pU6mf9DG8a7+Auk6MFTlNOT4Y2y/9k8GKVg==", - "requires": { - "graceful-fs": "^4.2.4", - "tapable": "^2.2.0" - } - }, - "enquirer": { - "version": "2.3.6", - "resolved": "https://registry.npmjs.org/enquirer/-/enquirer-2.3.6.tgz", - "integrity": "sha512-yjNnPr315/FjS4zIsUxYguYUPP2e1NK4d7E7ZOLiyYCcbFBiTMyID+2wvm2w6+pZ/odMA7cRkjhsPbltwBOrLg==", - "peer": true, - "requires": { - "ansi-colors": "^4.1.1" - } - }, - "entities": { - "version": "2.2.0", - "resolved": "https://registry.npmjs.org/entities/-/entities-2.2.0.tgz", - "integrity": "sha512-p92if5Nz619I0w+akJrLZH0MX0Pb5DX39XOwQTtXSdQQOaYH03S1uIQp4mhOZtAXrxq4ViO67YTiLBo2638o9A==" - }, - "env-paths": { - "version": "2.2.1", - "resolved": "https://registry.npmjs.org/env-paths/-/env-paths-2.2.1.tgz", - "integrity": "sha512-+h1lkLKhZMTYjog1VEpJNG7NZJWcuc2DDk/qsqSTRRCOXiLjeQ1d1/udrUGhqMxUgAlwKNZ0cf2uqan5GLuS2A==", - "peer": true - }, - "error-ex": { - "version": "1.3.2", - "resolved": "https://registry.npmjs.org/error-ex/-/error-ex-1.3.2.tgz", - "integrity": "sha512-7dFHNmqeFSEt2ZBsCriorKnn3Z2pj+fd9kmI6QoWw4//DL+icEBfc0U7qJCisqrTsKTjw4fNFy2pW9OqStD84g==", - "requires": { - "is-arrayish": "^0.2.1" - } - }, - "error-stack-parser": { - "version": "2.1.4", - "resolved": "https://registry.npmjs.org/error-stack-parser/-/error-stack-parser-2.1.4.tgz", - "integrity": "sha512-Sk5V6wVazPhq5MhpO+AUxJn5x7XSXGl1R93Vn7i+zS15KDVxQijejNCrz8340/2bgLBjR9GtEG8ZVKONDjcqGQ==", - "requires": { - "stackframe": "^1.3.4" - } - }, - "es-abstract": { - "version": "1.21.2", - "resolved": "https://registry.npmjs.org/es-abstract/-/es-abstract-1.21.2.tgz", - "integrity": "sha512-y/B5POM2iBnIxCiernH1G7rC9qQoM77lLIMQLuob0zhp8C56Po81+2Nj0WFKnd0pNReDTnkYryc+zhOzpEIROg==", - "requires": { - "array-buffer-byte-length": "^1.0.0", - "available-typed-arrays": "^1.0.5", - "call-bind": "^1.0.2", - "es-set-tostringtag": "^2.0.1", - "es-to-primitive": "^1.2.1", - "function.prototype.name": "^1.1.5", - "get-intrinsic": "^1.2.0", - "get-symbol-description": "^1.0.0", - "globalthis": "^1.0.3", - "gopd": "^1.0.1", - "has": "^1.0.3", - "has-property-descriptors": "^1.0.0", - "has-proto": "^1.0.1", - "has-symbols": "^1.0.3", - "internal-slot": "^1.0.5", - "is-array-buffer": "^3.0.2", - "is-callable": "^1.2.7", - "is-negative-zero": "^2.0.2", - "is-regex": "^1.1.4", - "is-shared-array-buffer": "^1.0.2", - "is-string": "^1.0.7", - "is-typed-array": "^1.1.10", - "is-weakref": "^1.0.2", - "object-inspect": "^1.12.3", - "object-keys": "^1.1.1", - "object.assign": "^4.1.4", - "regexp.prototype.flags": "^1.4.3", - "safe-regex-test": "^1.0.0", - "string.prototype.trim": "^1.2.7", - "string.prototype.trimend": "^1.0.6", - "string.prototype.trimstart": "^1.0.6", - "typed-array-length": "^1.0.4", - "unbox-primitive": "^1.0.2", - "which-typed-array": "^1.1.9" - } - }, - "es-array-method-boxes-properly": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/es-array-method-boxes-properly/-/es-array-method-boxes-properly-1.0.0.tgz", - "integrity": "sha512-wd6JXUmyHmt8T5a2xreUwKcGPq6f1f+WwIJkijUqiGcJz1qqnZgP6XIK+QyIWU5lT7imeNxUll48bziG+TSYcA==" - }, - "es-module-lexer": { - "version": "1.2.1", - "resolved": "https://registry.npmjs.org/es-module-lexer/-/es-module-lexer-1.2.1.tgz", - "integrity": "sha512-9978wrXM50Y4rTMmW5kXIC09ZdXQZqkE4mxhwkd8VbzsGkXGPgV4zWuqQJgCEzYngdo2dYDa0l8xhX4fkSwJSg==" - }, - "es-set-tostringtag": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/es-set-tostringtag/-/es-set-tostringtag-2.0.1.tgz", - "integrity": "sha512-g3OMbtlwY3QewlqAiMLI47KywjWZoEytKr8pf6iTC8uJq5bIAH52Z9pnQ8pVL6whrCto53JZDuUIsifGeLorTg==", - "requires": { - "get-intrinsic": "^1.1.3", - "has": "^1.0.3", - "has-tostringtag": "^1.0.0" - } - }, - "es-shim-unscopables": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/es-shim-unscopables/-/es-shim-unscopables-1.0.0.tgz", - "integrity": "sha512-Jm6GPcCdC30eMLbZ2x8z2WuRwAws3zTBBKuusffYVUrNj/GVSUAZ+xKMaUpfNDR5IbyNA5LJbaecoUVbmUcB1w==", - "requires": { - "has": "^1.0.3" - } - }, - "es-to-primitive": { - "version": "1.2.1", - "resolved": "https://registry.npmjs.org/es-to-primitive/-/es-to-primitive-1.2.1.tgz", - "integrity": "sha512-QCOllgZJtaUo9miYBcLChTUaHNjJF3PYs1VidD7AwiEj1kYxKeQTctLAezAOH5ZKRH0g2IgPn6KwB4IT8iRpvA==", - "requires": { - "is-callable": "^1.1.4", - "is-date-object": "^1.0.1", - "is-symbol": "^1.0.2" - } - }, - "es5-ext": { - "version": "0.10.62", - "resolved": "https://registry.npmjs.org/es5-ext/-/es5-ext-0.10.62.tgz", - "integrity": "sha512-BHLqn0klhEpnOKSrzn/Xsz2UIW8j+cGmo9JLzr8BiUapV8hPL9+FliFqjwr9ngW7jWdnxv6eO+/LqyhJVqgrjA==", - "requires": { - "es6-iterator": "^2.0.3", - "es6-symbol": "^3.1.3", - "next-tick": "^1.1.0" - } - }, - "es6-iterator": { - "version": "2.0.3", - "resolved": "https://registry.npmjs.org/es6-iterator/-/es6-iterator-2.0.3.tgz", - "integrity": "sha512-zw4SRzoUkd+cl+ZoE15A9o1oQd920Bb0iOJMQkQhl3jNc03YqVjAhG7scf9C5KWRU/R13Orf588uCC6525o02g==", - "requires": { - "d": "1", - "es5-ext": "^0.10.35", - "es6-symbol": "^3.1.1" - } - }, - "es6-promise": { - "version": "4.2.8", - "resolved": "https://registry.npmjs.org/es6-promise/-/es6-promise-4.2.8.tgz", - "integrity": "sha512-HJDGx5daxeIvxdBxvG2cb9g4tEvwIk3i8+nhX0yGrYmZUzbkdg8QbDevheDB8gd0//uPj4c1EQua8Q+MViT0/w==" - }, - "es6-symbol": { - "version": "3.1.3", - "resolved": "https://registry.npmjs.org/es6-symbol/-/es6-symbol-3.1.3.tgz", - "integrity": "sha512-NJ6Yn3FuDinBaBRWl/q5X/s4koRHBrgKAu+yGI6JCBeiu3qrcbJhwT2GeR/EXVfylRk8dpQVJoLEFhK+Mu31NA==", - "requires": { - "d": "^1.0.1", - "ext": "^1.1.2" - } - }, - "escalade": { - "version": "3.1.1", - "resolved": "https://registry.npmjs.org/escalade/-/escalade-3.1.1.tgz", - "integrity": "sha512-k0er2gUkLf8O0zKJiAhmkTnJlTvINGv7ygDNPbeIsX/TJjGJZHuh9B2UxbsaEkmlEo9MfhrSzmhIlhRlI2GXnw==" - }, - "escape-html": { - "version": "1.0.3", - "resolved": "https://registry.npmjs.org/escape-html/-/escape-html-1.0.3.tgz", - "integrity": "sha512-NiSupZ4OeuGwr68lGIeym/ksIZMJodUGOSCZ/FSnTxcrekbvqrgdUxlJOMpijaKZVjAJrWrGs/6Jy8OMuyj9ow==" - }, - "escape-string-regexp": { - "version": "1.0.5", - "resolved": "https://registry.npmjs.org/escape-string-regexp/-/escape-string-regexp-1.0.5.tgz", - "integrity": "sha512-vbRorB5FUQWvla16U8R/qgaFIya2qGzwDrNmCZuYKrbdSUMG6I1ZCGQRefkRVhuOkIGVne7BQ35DSfo1qvJqFg==" - }, - "escodegen": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/escodegen/-/escodegen-2.0.0.tgz", - "integrity": "sha512-mmHKys/C8BFUGI+MAWNcSYoORYLMdPzjrknd2Vc+bUsjN5bXcr8EhrNB+UTqfL1y3I9c4fw2ihgtMPQLBRiQxw==", - "requires": { - "esprima": "^4.0.1", - "estraverse": "^5.2.0", - "esutils": "^2.0.2", - "optionator": "^0.8.1", - "source-map": "~0.6.1" - }, - "dependencies": { - "levn": { - "version": "0.3.0", - "resolved": "https://registry.npmjs.org/levn/-/levn-0.3.0.tgz", - "integrity": "sha512-0OO4y2iOHix2W6ujICbKIaEQXvFQHue65vUG3pb5EUomzPI90z9hsA1VsO/dbIIpC53J8gxM9Q4Oho0jrCM/yA==", - "requires": { - "prelude-ls": "~1.1.2", - "type-check": "~0.3.2" - } - }, - "optionator": { - "version": "0.8.3", - "resolved": "https://registry.npmjs.org/optionator/-/optionator-0.8.3.tgz", - "integrity": "sha512-+IW9pACdk3XWmmTXG8m3upGUJst5XRGzxMRjXzAuJ1XnIFNvfhjjIuYkDvysnPQ7qzqVzLt78BCruntqRhWQbA==", - "requires": { - "deep-is": "~0.1.3", - "fast-levenshtein": "~2.0.6", - "levn": "~0.3.0", - "prelude-ls": "~1.1.2", - "type-check": "~0.3.2", - "word-wrap": "~1.2.3" - } - }, - "prelude-ls": { - "version": "1.1.2", - "resolved": "https://registry.npmjs.org/prelude-ls/-/prelude-ls-1.1.2.tgz", - "integrity": "sha512-ESF23V4SKG6lVSGZgYNpbsiaAkdab6ZgOxe52p7+Kid3W3u3bxR4Vfd/o21dmN7jSt0IwgZ4v5MUd26FEtXE9w==" - }, - "source-map": { - "version": "0.6.1", - "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz", - "integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==", - "optional": true - }, - "type-check": { - "version": "0.3.2", - "resolved": "https://registry.npmjs.org/type-check/-/type-check-0.3.2.tgz", - "integrity": "sha512-ZCmOJdvOWDBYJlzAoFkC+Q0+bUyEOS1ltgp1MGU03fqHG+dbi9tBFU2Rd9QKiDZFAYrhPh2JUf7rZRIuHRKtOg==", - "requires": { - "prelude-ls": "~1.1.2" - } - } - } - }, - "eslint": { - "version": "8.18.0", - "resolved": "https://registry.npmjs.org/eslint/-/eslint-8.18.0.tgz", - "integrity": "sha512-As1EfFMVk7Xc6/CvhssHUjsAQSkpfXvUGMFC3ce8JDe6WvqCgRrLOBQbVpsBFr1X1V+RACOadnzVvcUS5ni2bA==", - "requires": { - "@eslint/eslintrc": "^1.3.0", - "@humanwhocodes/config-array": "^0.9.2", - "ajv": "^6.10.0", - "chalk": "^4.0.0", - "cross-spawn": "^7.0.2", - "debug": "^4.3.2", - "doctrine": "^3.0.0", - "escape-string-regexp": "^4.0.0", - "eslint-scope": "^7.1.1", - "eslint-utils": "^3.0.0", - "eslint-visitor-keys": "^3.3.0", - "espree": "^9.3.2", - "esquery": "^1.4.0", - "esutils": "^2.0.2", - "fast-deep-equal": "^3.1.3", - "file-entry-cache": "^6.0.1", - "functional-red-black-tree": "^1.0.1", - "glob-parent": "^6.0.1", - "globals": "^13.15.0", - "ignore": "^5.2.0", - "import-fresh": "^3.0.0", - "imurmurhash": "^0.1.4", - "is-glob": "^4.0.0", - "js-yaml": "^4.1.0", - "json-stable-stringify-without-jsonify": "^1.0.1", - "levn": "^0.4.1", - "lodash.merge": "^4.6.2", - "minimatch": "^3.1.2", - "natural-compare": "^1.4.0", - "optionator": "^0.9.1", - "regexpp": "^3.2.0", - "strip-ansi": "^6.0.1", - "strip-json-comments": "^3.1.0", - "text-table": "^0.2.0", - "v8-compile-cache": "^2.0.3" - }, - "dependencies": { - "ansi-styles": { - "version": "4.3.0", - "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", - "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", - "requires": { - "color-convert": "^2.0.1" - } - }, - "argparse": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/argparse/-/argparse-2.0.1.tgz", - "integrity": "sha512-8+9WqebbFzpX9OR+Wa6O29asIogeRMzcGtAINdpMHHyAg10f05aSFVBbcEqGf/PXw1EjAZ+q2/bEBg3DvurK3Q==" - }, - "chalk": { - "version": "4.1.2", - "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz", - "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==", - "requires": { - "ansi-styles": "^4.1.0", - "supports-color": "^7.1.0" - } - }, - "color-convert": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz", - "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==", - "requires": { - "color-name": "~1.1.4" - } - }, - "color-name": { - "version": "1.1.4", - "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz", - "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==" - }, - "escape-string-regexp": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/escape-string-regexp/-/escape-string-regexp-4.0.0.tgz", - "integrity": "sha512-TtpcNJ3XAzx3Gq8sWRzJaVajRs0uVxA2YAkdb1jm2YkPz4G6egUFAyA3n5vtEIZefPk5Wa4UXbKuS5fKkJWdgA==" - }, - "globals": { - "version": "13.15.0", - "resolved": "https://registry.npmjs.org/globals/-/globals-13.15.0.tgz", - "integrity": "sha512-bpzcOlgDhMG070Av0Vy5Owklpv1I6+j96GhUI7Rh7IzDCKLzboflLrrfqMu8NquDbiR4EOQk7XzJwqVJxicxog==", - "requires": { - "type-fest": "^0.20.2" - } - }, - "has-flag": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz", - "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==" - }, - "js-yaml": { - "version": "4.1.0", - "resolved": "https://registry.npmjs.org/js-yaml/-/js-yaml-4.1.0.tgz", - "integrity": "sha512-wpxZs9NoxZaJESJGIZTyDEaYpl0FKSA+FB9aJiyemKhMwkxQg63h4T1KJgUGHpTqPDNRcmmYLugrRjJlBtWvRA==", - "requires": { - "argparse": "^2.0.1" - } - }, - "supports-color": { - "version": "7.2.0", - "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", - "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", - "requires": { - "has-flag": "^4.0.0" - } - }, - "type-fest": { - "version": "0.20.2", - "resolved": "https://registry.npmjs.org/type-fest/-/type-fest-0.20.2.tgz", - "integrity": "sha512-Ne+eE4r0/iWnpAxD852z3A+N0Bt5RN//NjJwRd2VFHEmrywxf5vsZlh4R6lixl6B+wz/8d+maTSAkN1FIkI3LQ==" - } - } - }, - "eslint-config-react-app": { - "version": "7.0.1", - "resolved": "https://registry.npmjs.org/eslint-config-react-app/-/eslint-config-react-app-7.0.1.tgz", - "integrity": "sha512-K6rNzvkIeHaTd8m/QEh1Zko0KI7BACWkkneSs6s9cKZC/J27X3eZR6Upt1jkmZ/4FK+XUOPPxMEN7+lbUXfSlA==", - "requires": { - "@babel/core": "^7.16.0", - "@babel/eslint-parser": "^7.16.3", - "@rushstack/eslint-patch": "^1.1.0", - "@typescript-eslint/eslint-plugin": "^5.5.0", - "@typescript-eslint/parser": "^5.5.0", - "babel-preset-react-app": "^10.0.1", - "confusing-browser-globals": "^1.0.11", - "eslint-plugin-flowtype": "^8.0.3", - "eslint-plugin-import": "^2.25.3", - "eslint-plugin-jest": "^25.3.0", - "eslint-plugin-jsx-a11y": "^6.5.1", - "eslint-plugin-react": "^7.27.1", - "eslint-plugin-react-hooks": "^4.3.0", - "eslint-plugin-testing-library": "^5.0.1" - } - }, - "eslint-import-resolver-node": { - "version": "0.3.6", - "resolved": "https://registry.npmjs.org/eslint-import-resolver-node/-/eslint-import-resolver-node-0.3.6.tgz", - "integrity": "sha512-0En0w03NRVMn9Uiyn8YRPDKvWjxCWkslUEhGNTdGx15RvPJYQ+lbOlqrlNI2vEAs4pDYK4f/HN2TbDmk5TP0iw==", - "requires": { - "debug": "^3.2.7", - "resolve": "^1.20.0" - }, - "dependencies": { - "debug": { - "version": "3.2.7", - "resolved": "https://registry.npmjs.org/debug/-/debug-3.2.7.tgz", - "integrity": "sha512-CFjzYYAi4ThfiQvizrFQevTTXHtnCqWfe7x1AhgEscTz6ZbLbfoLRLPugTQyBth6f8ZERVUSyWHFD/7Wu4t1XQ==", - "requires": { - "ms": "^2.1.1" - } - } - } - }, - "eslint-module-utils": { - "version": "2.7.3", - "resolved": "https://registry.npmjs.org/eslint-module-utils/-/eslint-module-utils-2.7.3.tgz", - "integrity": "sha512-088JEC7O3lDZM9xGe0RerkOMd0EjFl+Yvd1jPWIkMT5u3H9+HC34mWWPnqPrN13gieT9pBOO+Qt07Nb/6TresQ==", - "requires": { - "debug": "^3.2.7", - "find-up": "^2.1.0" - }, - "dependencies": { - "debug": { - "version": "3.2.7", - "resolved": "https://registry.npmjs.org/debug/-/debug-3.2.7.tgz", - "integrity": "sha512-CFjzYYAi4ThfiQvizrFQevTTXHtnCqWfe7x1AhgEscTz6ZbLbfoLRLPugTQyBth6f8ZERVUSyWHFD/7Wu4t1XQ==", - "requires": { - "ms": "^2.1.1" - } - }, - "find-up": { - "version": "2.1.0", - "resolved": "https://registry.npmjs.org/find-up/-/find-up-2.1.0.tgz", - "integrity": "sha512-NWzkk0jSJtTt08+FBFMvXoeZnOJD+jTtsRmBYbAIzJdX6l7dLgR7CTubCM5/eDdPUBvLCeVasP1brfVR/9/EZQ==", - "requires": { - "locate-path": "^2.0.0" - } - }, - "locate-path": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/locate-path/-/locate-path-2.0.0.tgz", - "integrity": "sha512-NCI2kiDkyR7VeEKm27Kda/iQHyKJe1Bu0FlTbYp3CqJu+9IFe9bLyAjMxf5ZDDbEg+iMPzB5zYyUTSm8wVTKmA==", - "requires": { - "p-locate": "^2.0.0", - "path-exists": "^3.0.0" - } - }, - "p-limit": { - "version": "1.3.0", - "resolved": "https://registry.npmjs.org/p-limit/-/p-limit-1.3.0.tgz", - "integrity": "sha512-vvcXsLAJ9Dr5rQOPk7toZQZJApBl2K4J6dANSsEuh6QI41JYcsS/qhTGa9ErIUUgK3WNQoJYvylxvjqmiqEA9Q==", - "requires": { - "p-try": "^1.0.0" - } - }, - "p-locate": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/p-locate/-/p-locate-2.0.0.tgz", - "integrity": "sha512-nQja7m7gSKuewoVRen45CtVfODR3crN3goVQ0DDZ9N3yHxgpkuBhZqsaiotSQRrADUrne346peY7kT3TSACykg==", - "requires": { - "p-limit": "^1.1.0" - } - }, - "p-try": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/p-try/-/p-try-1.0.0.tgz", - "integrity": "sha512-U1etNYuMJoIz3ZXSrrySFjsXQTWOx2/jdi86L+2pRvph/qMKL6sbcCYdH23fqsbm8TH2Gn0OybpT4eSFlCVHww==" - }, - "path-exists": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/path-exists/-/path-exists-3.0.0.tgz", - "integrity": "sha512-bpC7GYwiDYQ4wYLe+FA8lhRjhQCMcQGuSgGGqDkg/QerRWw9CmGRT0iSOVRSZJ29NMLZgIzqaljJ63oaL4NIJQ==" - } - } - }, - "eslint-plugin-flowtype": { - "version": "8.0.3", - "resolved": "https://registry.npmjs.org/eslint-plugin-flowtype/-/eslint-plugin-flowtype-8.0.3.tgz", - "integrity": "sha512-dX8l6qUL6O+fYPtpNRideCFSpmWOUVx5QcaGLVqe/vlDiBSe4vYljDWDETwnyFzpl7By/WVIu6rcrniCgH9BqQ==", - "requires": { - "lodash": "^4.17.21", - "string-natural-compare": "^3.0.1" - } - }, - "eslint-plugin-import": { - "version": "2.26.0", - "resolved": "https://registry.npmjs.org/eslint-plugin-import/-/eslint-plugin-import-2.26.0.tgz", - "integrity": "sha512-hYfi3FXaM8WPLf4S1cikh/r4IxnO6zrhZbEGz2b660EJRbuxgpDS5gkCuYgGWg2xxh2rBuIr4Pvhve/7c31koA==", - "requires": { - "array-includes": "^3.1.4", - "array.prototype.flat": "^1.2.5", - "debug": "^2.6.9", - "doctrine": "^2.1.0", - "eslint-import-resolver-node": "^0.3.6", - "eslint-module-utils": "^2.7.3", - "has": "^1.0.3", - "is-core-module": "^2.8.1", - "is-glob": "^4.0.3", - "minimatch": "^3.1.2", - "object.values": "^1.1.5", - "resolve": "^1.22.0", - "tsconfig-paths": "^3.14.1" - }, - "dependencies": { - "debug": { - "version": "2.6.9", - "resolved": "https://registry.npmjs.org/debug/-/debug-2.6.9.tgz", - "integrity": "sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA==", - "requires": { - "ms": "2.0.0" - } - }, - "doctrine": { - "version": "2.1.0", - "resolved": "https://registry.npmjs.org/doctrine/-/doctrine-2.1.0.tgz", - "integrity": "sha512-35mSku4ZXK0vfCuHEDAwt55dg2jNajHZ1odvF+8SSr82EsZY4QmXfuWso8oEd8zRhVObSN18aM0CjSdoBX7zIw==", - "requires": { - "esutils": "^2.0.2" - } - }, - "ms": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/ms/-/ms-2.0.0.tgz", - "integrity": "sha512-Tpp60P6IUJDTuOq/5Z8cdskzJujfwqfOTkrwIwj7IRISpnkJnT6SyJ4PCPnGMoFjC9ddhal5KVIYtAt97ix05A==" - } - } - }, - "eslint-plugin-jest": { - "version": "25.7.0", - "resolved": "https://registry.npmjs.org/eslint-plugin-jest/-/eslint-plugin-jest-25.7.0.tgz", - "integrity": "sha512-PWLUEXeeF7C9QGKqvdSbzLOiLTx+bno7/HC9eefePfEb257QFHg7ye3dh80AZVkaa/RQsBB1Q/ORQvg2X7F0NQ==", - "requires": { - "@typescript-eslint/experimental-utils": "^5.0.0" - } - }, - "eslint-plugin-jsx-a11y": { - "version": "6.6.0", - "resolved": "https://registry.npmjs.org/eslint-plugin-jsx-a11y/-/eslint-plugin-jsx-a11y-6.6.0.tgz", - "integrity": "sha512-kTeLuIzpNhXL2CwLlc8AHI0aFRwWHcg483yepO9VQiHzM9bZwJdzTkzBszbuPrbgGmq2rlX/FaT2fJQsjUSHsw==", - "requires": { - "@babel/runtime": "^7.18.3", - "aria-query": "^4.2.2", - "array-includes": "^3.1.5", - "ast-types-flow": "^0.0.7", - "axe-core": "^4.4.2", - "axobject-query": "^2.2.0", - "damerau-levenshtein": "^1.0.8", - "emoji-regex": "^9.2.2", - "has": "^1.0.3", - "jsx-ast-utils": "^3.3.1", - "language-tags": "^1.0.5", - "minimatch": "^3.1.2", - "semver": "^6.3.0" - }, - "dependencies": { - "semver": { - "version": "6.3.0", - "resolved": "https://registry.npmjs.org/semver/-/semver-6.3.0.tgz", - "integrity": "sha512-b39TBaTSfV6yBrapU89p5fKekE2m/NwnDocOVruQFS1/veMgdzuPcnOM34M6CwxW8jH/lxEa5rBoDeUwu5HHTw==" - } - } - }, - "eslint-plugin-react": { - "version": "7.30.1", - "resolved": "https://registry.npmjs.org/eslint-plugin-react/-/eslint-plugin-react-7.30.1.tgz", - "integrity": "sha512-NbEvI9jtqO46yJA3wcRF9Mo0lF9T/jhdHqhCHXiXtD+Zcb98812wvokjWpU7Q4QH5edo6dmqrukxVvWWXHlsUg==", - "requires": { - "array-includes": "^3.1.5", - "array.prototype.flatmap": "^1.3.0", - "doctrine": "^2.1.0", - "estraverse": "^5.3.0", - "jsx-ast-utils": "^2.4.1 || ^3.0.0", - "minimatch": "^3.1.2", - "object.entries": "^1.1.5", - "object.fromentries": "^2.0.5", - "object.hasown": "^1.1.1", - "object.values": "^1.1.5", - "prop-types": "^15.8.1", - "resolve": "^2.0.0-next.3", - "semver": "^6.3.0", - "string.prototype.matchall": "^4.0.7" - }, - "dependencies": { - "doctrine": { - "version": "2.1.0", - "resolved": "https://registry.npmjs.org/doctrine/-/doctrine-2.1.0.tgz", - "integrity": "sha512-35mSku4ZXK0vfCuHEDAwt55dg2jNajHZ1odvF+8SSr82EsZY4QmXfuWso8oEd8zRhVObSN18aM0CjSdoBX7zIw==", - "requires": { - "esutils": "^2.0.2" - } - }, - "resolve": { - "version": "2.0.0-next.4", - "resolved": "https://registry.npmjs.org/resolve/-/resolve-2.0.0-next.4.tgz", - "integrity": "sha512-iMDbmAWtfU+MHpxt/I5iWI7cY6YVEZUQ3MBgPQ++XD1PELuJHIl82xBmObyP2KyQmkNB2dsqF7seoQQiAn5yDQ==", - "requires": { - "is-core-module": "^2.9.0", - "path-parse": "^1.0.7", - "supports-preserve-symlinks-flag": "^1.0.0" - } - }, - "semver": { - "version": "6.3.0", - "resolved": "https://registry.npmjs.org/semver/-/semver-6.3.0.tgz", - "integrity": "sha512-b39TBaTSfV6yBrapU89p5fKekE2m/NwnDocOVruQFS1/veMgdzuPcnOM34M6CwxW8jH/lxEa5rBoDeUwu5HHTw==" - } - } - }, - "eslint-plugin-react-hooks": { - "version": "4.6.0", - "resolved": "https://registry.npmjs.org/eslint-plugin-react-hooks/-/eslint-plugin-react-hooks-4.6.0.tgz", - "integrity": "sha512-oFc7Itz9Qxh2x4gNHStv3BqJq54ExXmfC+a1NjAta66IAN87Wu0R/QArgIS9qKzX3dXKPI9H5crl9QchNMY9+g==", - "requires": {} - }, - "eslint-plugin-testing-library": { - "version": "5.5.1", - "resolved": "https://registry.npmjs.org/eslint-plugin-testing-library/-/eslint-plugin-testing-library-5.5.1.tgz", - "integrity": "sha512-plLEkkbAKBjPxsLj7x4jNapcHAg2ernkQlKKrN2I8NrQwPISZHyCUNvg5Hv3EDqOQReToQb5bnqXYbkijJPE/g==", - "requires": { - "@typescript-eslint/utils": "^5.13.0" - } - }, - "eslint-scope": { - "version": "7.1.1", - "resolved": "https://registry.npmjs.org/eslint-scope/-/eslint-scope-7.1.1.tgz", - "integrity": "sha512-QKQM/UXpIiHcLqJ5AOyIW7XZmzjkzQXYE54n1++wb0u9V/abW3l9uQnxX8Z5Xd18xyKIMTUAyQ0k1e8pz6LUrw==", - "requires": { - "esrecurse": "^4.3.0", - "estraverse": "^5.2.0" - } - }, - "eslint-utils": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/eslint-utils/-/eslint-utils-3.0.0.tgz", - "integrity": "sha512-uuQC43IGctw68pJA1RgbQS8/NP7rch6Cwd4j3ZBtgo4/8Flj4eGE7ZYSZRN3iq5pVUv6GPdW5Z1RFleo84uLDA==", - "requires": { - "eslint-visitor-keys": "^2.0.0" - }, - "dependencies": { - "eslint-visitor-keys": { - "version": "2.1.0", - "resolved": "https://registry.npmjs.org/eslint-visitor-keys/-/eslint-visitor-keys-2.1.0.tgz", - "integrity": "sha512-0rSmRBzXgDzIsD6mGdJgevzgezI534Cer5L/vyMX0kHzT/jiB43jRhd9YUlMGYLQy2zprNmoT8qasCGtY+QaKw==" - } - } - }, - "eslint-visitor-keys": { - "version": "3.3.0", - "resolved": "https://registry.npmjs.org/eslint-visitor-keys/-/eslint-visitor-keys-3.3.0.tgz", - "integrity": "sha512-mQ+suqKJVyeuwGYHAdjMFqjCyfl8+Ldnxuyp3ldiMBFKkvytrXUZWaiPCEav8qDHKty44bD+qV1IP4T+w+xXRA==" - }, - "eslint-webpack-plugin": { - "version": "3.2.0", - "resolved": "https://registry.npmjs.org/eslint-webpack-plugin/-/eslint-webpack-plugin-3.2.0.tgz", - "integrity": "sha512-avrKcGncpPbPSUHX6B3stNGzkKFto3eL+DKM4+VyMrVnhPc3vRczVlCq3uhuFOdRvDHTVXuzwk1ZKUrqDQHQ9w==", - "requires": { - "@types/eslint": "^7.29.0 || ^8.4.1", - "jest-worker": "^28.0.2", - "micromatch": "^4.0.5", - "normalize-path": "^3.0.0", - "schema-utils": "^4.0.0" - }, - "dependencies": { - "ajv": { - "version": "8.11.0", - "resolved": "https://registry.npmjs.org/ajv/-/ajv-8.11.0.tgz", - "integrity": "sha512-wGgprdCvMalC0BztXvitD2hC04YffAvtsUn93JbGXYLAtCUO4xd17mCCZQxUOItiBwZvJScWo8NIvQMQ71rdpg==", - "requires": { - "fast-deep-equal": "^3.1.1", - "json-schema-traverse": "^1.0.0", - "require-from-string": "^2.0.2", - "uri-js": "^4.2.2" - } - }, - "ajv-keywords": { - "version": "5.1.0", - "resolved": "https://registry.npmjs.org/ajv-keywords/-/ajv-keywords-5.1.0.tgz", - "integrity": "sha512-YCS/JNFAUyr5vAuhk1DWm1CBxRHW9LbJ2ozWeemrIqpbsqKjHVxYPyi5GC0rjZIT5JxJ3virVTS8wk4i/Z+krw==", - "requires": { - "fast-deep-equal": "^3.1.3" - } - }, - "has-flag": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz", - "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==" - }, - "jest-worker": { - "version": "28.1.1", - "resolved": "https://registry.npmjs.org/jest-worker/-/jest-worker-28.1.1.tgz", - "integrity": "sha512-Au7slXB08C6h+xbJPp7VIb6U0XX5Kc9uel/WFc6/rcTzGiaVCBRngBExSYuXSLFPULPSYU3cJ3ybS988lNFQhQ==", - "requires": { - "@types/node": "*", - "merge-stream": "^2.0.0", - "supports-color": "^8.0.0" - } - }, - "json-schema-traverse": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/json-schema-traverse/-/json-schema-traverse-1.0.0.tgz", - "integrity": "sha512-NM8/P9n3XjXhIZn1lLhkFaACTOURQXjWhV4BA/RnOv8xvgqtqpAX9IO4mRQxSx1Rlo4tqzeqb0sOlruaOy3dug==" - }, - "schema-utils": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/schema-utils/-/schema-utils-4.0.0.tgz", - "integrity": "sha512-1edyXKgh6XnJsJSQ8mKWXnN/BVaIbFMLpouRUrXgVq7WYne5kw3MW7UPhO44uRXQSIpTSXoJbmrR2X0w9kUTyg==", - "requires": { - "@types/json-schema": "^7.0.9", - "ajv": "^8.8.0", - "ajv-formats": "^2.1.1", - "ajv-keywords": "^5.0.0" - } - }, - "supports-color": { - "version": "8.1.1", - "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-8.1.1.tgz", - "integrity": "sha512-MpUEN2OodtUzxvKQl72cUF7RQ5EiHsGvSsVG0ia9c5RbWGL2CI4C7EpPS8UTBIplnlzZiNuV56w+FuNxy3ty2Q==", - "requires": { - "has-flag": "^4.0.0" - } - } - } - }, - "esm": { - "version": "3.2.25", - "resolved": "https://registry.npmjs.org/esm/-/esm-3.2.25.tgz", - "integrity": "sha512-U1suiZ2oDVWv4zPO56S0NcR5QriEahGtdN2OR6FiOG4WJvcjBVFB0qI4+eKoWFH483PKGuLuu6V8Z4T5g63UVA==" - }, - "espree": { - "version": "9.3.2", - "resolved": "https://registry.npmjs.org/espree/-/espree-9.3.2.tgz", - "integrity": "sha512-D211tC7ZwouTIuY5x9XnS0E9sWNChB7IYKX/Xp5eQj3nFXhqmiUDB9q27y76oFl8jTg3pXcQx/bpxMfs3CIZbA==", - "requires": { - "acorn": "^8.7.1", - "acorn-jsx": "^5.3.2", - "eslint-visitor-keys": "^3.3.0" - } - }, - "esprima": { - "version": "4.0.1", - "resolved": "https://registry.npmjs.org/esprima/-/esprima-4.0.1.tgz", - "integrity": "sha512-eGuFFw7Upda+g4p+QHvnW0RyTX/SVeJBDM/gCtMARO0cLuT2HcEKnTPvhjV6aGeqrCB/sbNop0Kszm0jsaWU4A==" - }, - "esquery": { - "version": "1.4.0", - "resolved": "https://registry.npmjs.org/esquery/-/esquery-1.4.0.tgz", - "integrity": "sha512-cCDispWt5vHHtwMY2YrAQ4ibFkAL8RbH5YGBnZBc90MolvvfkkQcJro/aZiAQUlQ3qgrYS6D6v8Gc5G5CQsc9w==", - "requires": { - "estraverse": "^5.1.0" - } - }, - "esrecurse": { - "version": "4.3.0", - "resolved": "https://registry.npmjs.org/esrecurse/-/esrecurse-4.3.0.tgz", - "integrity": "sha512-KmfKL3b6G+RXvP8N1vr3Tq1kL/oCFgn2NYXEtqP8/L3pKapUA4G8cFVaoF3SU323CD4XypR/ffioHmkti6/Tag==", - "requires": { - "estraverse": "^5.2.0" - } - }, - "estraverse": { - "version": "5.3.0", - "resolved": "https://registry.npmjs.org/estraverse/-/estraverse-5.3.0.tgz", - "integrity": "sha512-MMdARuVEQziNTeJD8DgMqmhwR11BRQ/cBP+pLtYdSTnf3MIO8fFeiINEbX36ZdNlfU/7A9f3gUw49B3oQsvwBA==" - }, - "estree-walker": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/estree-walker/-/estree-walker-1.0.1.tgz", - "integrity": "sha512-1fMXF3YP4pZZVozF8j/ZLfvnR8NSIljt56UhbZ5PeeDmmGHpgpdwQt7ITlGvYaQukCvuBRMLEiKiYC+oeIg4cg==" - }, - "esutils": { - "version": "2.0.3", - "resolved": "https://registry.npmjs.org/esutils/-/esutils-2.0.3.tgz", - "integrity": "sha512-kVscqXk4OCp68SZ0dkgEKVi6/8ij300KBWTJq32P/dYeWTSwK41WyTxalN1eRmA5Z9UU/LX9D7FWSmV9SAYx6g==" - }, - "etag": { - "version": "1.8.1", - "resolved": "https://registry.npmjs.org/etag/-/etag-1.8.1.tgz", - "integrity": "sha512-aIL5Fx7mawVa300al2BnEE4iNvo1qETxLrPI/o05L7z6go7fCw1J6EQmbK4FmJ2AS7kgVF/KEZWufBfdClMcPg==" - }, - "eth-ens-namehash": { - "version": "2.0.8", - "resolved": "https://registry.npmjs.org/eth-ens-namehash/-/eth-ens-namehash-2.0.8.tgz", - "integrity": "sha512-VWEI1+KJfz4Km//dadyvBBoBeSQ0MHTXPvr8UIXiLW6IanxvAV+DmlZAijZwAyggqGUfwQBeHf7tc9wzc1piSw==", - "requires": { - "idna-uts46-hx": "^2.3.1", - "js-sha3": "^0.5.7" - }, - "dependencies": { - "js-sha3": { - "version": "0.5.7", - "resolved": "https://registry.npmjs.org/js-sha3/-/js-sha3-0.5.7.tgz", - "integrity": "sha512-GII20kjaPX0zJ8wzkTbNDYMY7msuZcTWk8S5UOh6806Jq/wz1J8/bnr8uGU0DAUmYDjj2Mr4X1cW8v/GLYnR+g==" - } - } - }, - "eth-lib": { - "version": "0.1.29", - "resolved": "https://registry.npmjs.org/eth-lib/-/eth-lib-0.1.29.tgz", - "integrity": "sha512-bfttrr3/7gG4E02HoWTDUcDDslN003OlOoBxk9virpAZQ1ja/jDgwkWB8QfJF7ojuEowrqy+lzp9VcJG7/k5bQ==", - "requires": { - "bn.js": "^4.11.6", - "elliptic": "^6.4.0", - "nano-json-stream-parser": "^0.1.2", - "servify": "^0.1.12", - "ws": "^3.0.0", - "xhr-request-promise": "^0.1.2" - }, - "dependencies": { - "bn.js": { - "version": "4.12.0", - "resolved": "https://registry.npmjs.org/bn.js/-/bn.js-4.12.0.tgz", - "integrity": "sha512-c98Bf3tPniI+scsdk237ku1Dc3ujXQTSgyiPUDEOe7tRkhrqridvh8klBv0HCEso1OLOYcHuCv/cS6DNxKH+ZA==" - }, - "ws": { - "version": "3.3.3", - "resolved": "https://registry.npmjs.org/ws/-/ws-3.3.3.tgz", - "integrity": "sha512-nnWLa/NwZSt4KQJu51MYlCcSQ5g7INpOrOMt4XV8j4dqTXdmlUmSHQ8/oLC069ckre0fRsgfvsKwbTdtKLCDkA==", - "requires": { - "async-limiter": "~1.0.0", - "safe-buffer": "~5.1.0", - "ultron": "~1.1.0" - } - } - } - }, - "ethereum-bloom-filters": { - "version": "1.0.10", - "resolved": "https://registry.npmjs.org/ethereum-bloom-filters/-/ethereum-bloom-filters-1.0.10.tgz", - "integrity": "sha512-rxJ5OFN3RwjQxDcFP2Z5+Q9ho4eIdEmSc2ht0fCu8Se9nbXjZ7/031uXoUYJ87KHCOdVeiUuwSnoS7hmYAGVHA==", - "requires": { - "js-sha3": "^0.8.0" - } - }, - "ethereum-cryptography": { - "version": "1.1.0", - "resolved": "https://registry.npmjs.org/ethereum-cryptography/-/ethereum-cryptography-1.1.0.tgz", - "integrity": "sha512-wyNVTBR4wIR2yoXdMv4Qt44mTVBpPgSW/DQCTmNO6nQluwpyrAIvmL4mxPbziFuc6VWJQa3rwUxn0nUFU03nyQ==", - "requires": { - "@noble/hashes": "1.1.1", - "@noble/secp256k1": "1.6.0", - "@scure/bip32": "1.1.0", - "@scure/bip39": "1.1.0" - } - }, - "ethereumjs-abi": { - "version": "0.6.8", - "resolved": "https://registry.npmjs.org/ethereumjs-abi/-/ethereumjs-abi-0.6.8.tgz", - "integrity": "sha512-Tx0r/iXI6r+lRsdvkFDlut0N08jWMnKRZ6Gkq+Nmw75lZe4e6o3EkSnkaBP5NF6+m5PTGAr9JP43N3LyeoglsA==", - "peer": true, - "requires": { - "bn.js": "^4.11.8", - "ethereumjs-util": "^6.0.0" - }, - "dependencies": { - "bn.js": { - "version": "4.12.0", - "resolved": "https://registry.npmjs.org/bn.js/-/bn.js-4.12.0.tgz", - "integrity": "sha512-c98Bf3tPniI+scsdk237ku1Dc3ujXQTSgyiPUDEOe7tRkhrqridvh8klBv0HCEso1OLOYcHuCv/cS6DNxKH+ZA==", - "peer": true - } - } - }, - "ethereumjs-util": { - "version": "6.2.1", - "resolved": "https://registry.npmjs.org/ethereumjs-util/-/ethereumjs-util-6.2.1.tgz", - "integrity": "sha512-W2Ktez4L01Vexijrm5EB6w7dg4n/TgpoYU4avuT5T3Vmnw/eCRtiBrJfQYS/DCSvDIOLn2k57GcHdeBcgVxAqw==", - "peer": true, - "requires": { - "@types/bn.js": "^4.11.3", - "bn.js": "^4.11.0", - "create-hash": "^1.1.2", - "elliptic": "^6.5.2", - "ethereum-cryptography": "^0.1.3", - "ethjs-util": "0.1.6", - "rlp": "^2.2.3" - }, - "dependencies": { - "@types/bn.js": { - "version": "4.11.6", - "resolved": "https://registry.npmjs.org/@types/bn.js/-/bn.js-4.11.6.tgz", - "integrity": "sha512-pqr857jrp2kPuO9uRjZ3PwnJTjoQy+fcdxvBTvHm6dkmEL9q+hDD/2j/0ELOBPtPnS8LjCX0gI9nbl8lVkadpg==", - "peer": true, - "requires": { - "@types/node": "*" - } - }, - "bn.js": { - "version": "4.12.0", - "resolved": "https://registry.npmjs.org/bn.js/-/bn.js-4.12.0.tgz", - "integrity": "sha512-c98Bf3tPniI+scsdk237ku1Dc3ujXQTSgyiPUDEOe7tRkhrqridvh8klBv0HCEso1OLOYcHuCv/cS6DNxKH+ZA==", - "peer": true - }, - "ethereum-cryptography": { - "version": "0.1.3", - "resolved": "https://registry.npmjs.org/ethereum-cryptography/-/ethereum-cryptography-0.1.3.tgz", - "integrity": "sha512-w8/4x1SGGzc+tO97TASLja6SLd3fRIK2tLVcV2Gx4IB21hE19atll5Cq9o3d0ZmAYC/8aw0ipieTSiekAea4SQ==", - "peer": true, - "requires": { - "@types/pbkdf2": "^3.0.0", - "@types/secp256k1": "^4.0.1", - "blakejs": "^1.1.0", - "browserify-aes": "^1.2.0", - "bs58check": "^2.1.2", - "create-hash": "^1.2.0", - "create-hmac": "^1.1.7", - "hash.js": "^1.1.7", - "keccak": "^3.0.0", - "pbkdf2": "^3.0.17", - "randombytes": "^2.1.0", - "safe-buffer": "^5.1.2", - "scrypt-js": "^3.0.0", - "secp256k1": "^4.0.1", - "setimmediate": "^1.0.5" - } - } - } - }, - "ethers": { - "version": "5.7.2", - "resolved": "https://registry.npmjs.org/ethers/-/ethers-5.7.2.tgz", - "integrity": "sha512-wswUsmWo1aOK8rR7DIKiWSw9DbLWe6x98Jrn8wcTflTVvaXhAMaB5zGAXy0GYQEQp9iO1iSHWVyARQm11zUtyg==", - "requires": { - "@ethersproject/abi": "5.7.0", - "@ethersproject/abstract-provider": "5.7.0", - "@ethersproject/abstract-signer": "5.7.0", - "@ethersproject/address": "5.7.0", - "@ethersproject/base64": "5.7.0", - "@ethersproject/basex": "5.7.0", - "@ethersproject/bignumber": "5.7.0", - "@ethersproject/bytes": "5.7.0", - "@ethersproject/constants": "5.7.0", - "@ethersproject/contracts": "5.7.0", - "@ethersproject/hash": "5.7.0", - "@ethersproject/hdnode": "5.7.0", - "@ethersproject/json-wallets": "5.7.0", - "@ethersproject/keccak256": "5.7.0", - "@ethersproject/logger": "5.7.0", - "@ethersproject/networks": "5.7.1", - "@ethersproject/pbkdf2": "5.7.0", - "@ethersproject/properties": "5.7.0", - "@ethersproject/providers": "5.7.2", - "@ethersproject/random": "5.7.0", - "@ethersproject/rlp": "5.7.0", - "@ethersproject/sha2": "5.7.0", - "@ethersproject/signing-key": "5.7.0", - "@ethersproject/solidity": "5.7.0", - "@ethersproject/strings": "5.7.0", - "@ethersproject/transactions": "5.7.0", - "@ethersproject/units": "5.7.0", - "@ethersproject/wallet": "5.7.0", - "@ethersproject/web": "5.7.1", - "@ethersproject/wordlists": "5.7.0" - } - }, - "ethers-multisend": { - "version": "2.4.0", - "resolved": "https://registry.npmjs.org/ethers-multisend/-/ethers-multisend-2.4.0.tgz", - "integrity": "sha512-/zL3/1TSS5ZFjyMcaPrk60fVmZUTYishIS/HtL3uUH52OcCswXNv9sTEa/+61nnO4x+VLxr2syM9pfwjhskYQA==", - "requires": { - "@ethersproject/abi": "^5.0.0", - "@ethersproject/abstract-provider": "^5.5.1", - "@ethersproject/address": "^5.0.0", - "@ethersproject/bignumber": "^5.0.0", - "@ethersproject/bytes": "^5.0.0", - "@ethersproject/contracts": "^5.5.0", - "@ethersproject/solidity": "^5.0.0", - "@ethersproject/units": "^5.0.0" - } - }, - "ethjs-unit": { - "version": "0.1.6", - "resolved": "https://registry.npmjs.org/ethjs-unit/-/ethjs-unit-0.1.6.tgz", - "integrity": "sha512-/Sn9Y0oKl0uqQuvgFk/zQgR7aw1g36qX/jzSQ5lSwlO0GigPymk4eGQfeNTD03w1dPOqfz8V77Cy43jH56pagw==", - "requires": { - "bn.js": "4.11.6", - "number-to-bn": "1.7.0" - }, - "dependencies": { - "bn.js": { - "version": "4.11.6", - "resolved": "https://registry.npmjs.org/bn.js/-/bn.js-4.11.6.tgz", - "integrity": "sha512-XWwnNNFCuuSQ0m3r3C4LE3EiORltHd9M05pq6FOlVeiophzRbMo50Sbz1ehl8K3Z+jw9+vmgnXefY1hz8X+2wA==" - } - } - }, - "ethjs-util": { - "version": "0.1.6", - "resolved": "https://registry.npmjs.org/ethjs-util/-/ethjs-util-0.1.6.tgz", - "integrity": "sha512-CUnVOQq7gSpDHZVVrQW8ExxUETWrnrvXYvYz55wOU8Uj4VCgw56XC2B/fVqQN+f7gmrnRHSLVnFAwsCuNwji8w==", - "peer": true, - "requires": { - "is-hex-prefixed": "1.0.0", - "strip-hex-prefix": "1.0.0" - } - }, - "event-target-shim": { - "version": "5.0.1", - "resolved": "https://registry.npmjs.org/event-target-shim/-/event-target-shim-5.0.1.tgz", - "integrity": "sha512-i/2XbnSz/uxRCU6+NdVJgKWDTM427+MqYbkQzD321DuCQJUqOuJKIA0IM2+W2xtYHdKOmZ4dR6fExsd4SXL+WQ==", - "peer": true - }, - "eventemitter3": { - "version": "4.0.7", - "resolved": "https://registry.npmjs.org/eventemitter3/-/eventemitter3-4.0.7.tgz", - "integrity": "sha512-8guHBZCwKnFhYdHr2ysuRWErTwhoN2X8XELRlrRwpmfeY2jjuUN4taQMsULKUVo1K4DvZl+0pgfyoysHxvmvEw==" - }, - "events": { - "version": "3.3.0", - "resolved": "https://registry.npmjs.org/events/-/events-3.3.0.tgz", - "integrity": "sha512-mQw+2fkQbALzQ7V0MY0IqdnXNOeTtP4r0lN9z7AAawCXgqea7bDii20AYrIBrFd/Hx0M2Ocz6S111CaFkUcb0Q==" - }, - "evp_bytestokey": { - "version": "1.0.3", - "resolved": "https://registry.npmjs.org/evp_bytestokey/-/evp_bytestokey-1.0.3.tgz", - "integrity": "sha512-/f2Go4TognH/KvCISP7OUsHn85hT9nUkxxA9BEWxFn+Oj9o8ZNLm/40hdlgSLyuOimsrTKLUMEorQexp/aPQeA==", - "requires": { - "md5.js": "^1.3.4", - "safe-buffer": "^5.1.1" - } - }, - "execa": { - "version": "5.1.1", - "resolved": "https://registry.npmjs.org/execa/-/execa-5.1.1.tgz", - "integrity": "sha512-8uSpZZocAZRBAPIEINJj3Lo9HyGitllczc27Eh5YYojjMFMn8yHMDMaUHE2Jqfq05D/wucwI4JGURyXt1vchyg==", - "requires": { - "cross-spawn": "^7.0.3", - "get-stream": "^6.0.0", - "human-signals": "^2.1.0", - "is-stream": "^2.0.0", - "merge-stream": "^2.0.0", - "npm-run-path": "^4.0.1", - "onetime": "^5.1.2", - "signal-exit": "^3.0.3", - "strip-final-newline": "^2.0.0" - } - }, - "exif-parser": { - "version": "0.1.12", - "resolved": "https://registry.npmjs.org/exif-parser/-/exif-parser-0.1.12.tgz", - "integrity": "sha512-c2bQfLNbMzLPmzQuOr8fy0csy84WmwnER81W88DzTp9CYNPJ6yzOj2EZAh9pywYpqHnshVLHQJ8WzldAyfY+Iw==" - }, - "exit": { - "version": "0.1.2", - "resolved": "https://registry.npmjs.org/exit/-/exit-0.1.2.tgz", - "integrity": "sha512-Zk/eNKV2zbjpKzrsQ+n1G6poVbErQxJ0LBOJXaKZ1EViLzH+hrLu9cdXI4zw9dBQJslwBEpbQ2P1oS7nDxs6jQ==" - }, - "expect": { - "version": "27.5.1", - "resolved": "https://registry.npmjs.org/expect/-/expect-27.5.1.tgz", - "integrity": "sha512-E1q5hSUG2AmYQwQJ041nvgpkODHQvB+RKlB4IYdru6uJsyFTRyZAP463M+1lINorwbqAmUggi6+WwkD8lCS/Dw==", - "requires": { - "@jest/types": "^27.5.1", - "jest-get-type": "^27.5.1", - "jest-matcher-utils": "^27.5.1", - "jest-message-util": "^27.5.1" - } - }, - "expr-eval": { - "version": "2.0.2", - "resolved": "https://registry.npmjs.org/expr-eval/-/expr-eval-2.0.2.tgz", - "integrity": "sha512-4EMSHGOPSwAfBiibw3ndnP0AvjDWLsMvGOvWEZ2F96IGk0bIVdjQisOHxReSkE13mHcfbuCiXw+G4y0zv6N8Eg==" - }, - "express": { - "version": "4.18.1", - "resolved": "https://registry.npmjs.org/express/-/express-4.18.1.tgz", - "integrity": "sha512-zZBcOX9TfehHQhtupq57OF8lFZ3UZi08Y97dwFCkD8p9d/d2Y3M+ykKcwaMDEL+4qyUolgBDX6AblpR3fL212Q==", - "requires": { - "accepts": "~1.3.8", - "array-flatten": "1.1.1", - "body-parser": "1.20.0", - "content-disposition": "0.5.4", - "content-type": "~1.0.4", - "cookie": "0.5.0", - "cookie-signature": "1.0.6", - "debug": "2.6.9", - "depd": "2.0.0", - "encodeurl": "~1.0.2", - "escape-html": "~1.0.3", - "etag": "~1.8.1", - "finalhandler": "1.2.0", - "fresh": "0.5.2", - "http-errors": "2.0.0", - "merge-descriptors": "1.0.1", - "methods": "~1.1.2", - "on-finished": "2.4.1", - "parseurl": "~1.3.3", - "path-to-regexp": "0.1.7", - "proxy-addr": "~2.0.7", - "qs": "6.10.3", - "range-parser": "~1.2.1", - "safe-buffer": "5.2.1", - "send": "0.18.0", - "serve-static": "1.15.0", - "setprototypeof": "1.2.0", - "statuses": "2.0.1", - "type-is": "~1.6.18", - "utils-merge": "1.0.1", - "vary": "~1.1.2" - }, - "dependencies": { - "array-flatten": { - "version": "1.1.1", - "resolved": "https://registry.npmjs.org/array-flatten/-/array-flatten-1.1.1.tgz", - "integrity": "sha512-PCVAQswWemu6UdxsDFFX/+gVeYqKAod3D3UVm91jHwynguOwAvYPhx8nNlM++NqRcK6CxxpUafjmhIdKiHibqg==" - }, - "debug": { - "version": "2.6.9", - "resolved": "https://registry.npmjs.org/debug/-/debug-2.6.9.tgz", - "integrity": "sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA==", - "requires": { - "ms": "2.0.0" - } - }, - "ms": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/ms/-/ms-2.0.0.tgz", - "integrity": "sha512-Tpp60P6IUJDTuOq/5Z8cdskzJujfwqfOTkrwIwj7IRISpnkJnT6SyJ4PCPnGMoFjC9ddhal5KVIYtAt97ix05A==" - }, - "safe-buffer": { - "version": "5.2.1", - "resolved": "https://registry.npmjs.org/safe-buffer/-/safe-buffer-5.2.1.tgz", - "integrity": "sha512-rp3So07KcdmmKbGvgaNxQSJr7bGVSVk5S9Eq1F+ppbRo70+YeaDxkw5Dd8NPN+GD6bjnYm2VuPuCXmpuYvmCXQ==" - } - } - }, - "ext": { - "version": "1.7.0", - "resolved": "https://registry.npmjs.org/ext/-/ext-1.7.0.tgz", - "integrity": "sha512-6hxeJYaL110a9b5TEJSj0gojyHQAmA2ch5Os+ySCiA1QGdS697XWY1pzsrSjqA9LDEEgdB/KypIlR59RcLuHYw==", - "requires": { - "type": "^2.7.2" - }, - "dependencies": { - "type": { - "version": "2.7.2", - "resolved": "https://registry.npmjs.org/type/-/type-2.7.2.tgz", - "integrity": "sha512-dzlvlNlt6AXU7EBSfpAscydQ7gXB+pPGsPnfJnZpiNJBDj7IaJzQlBZYGdEi4R9HmPdBv2XmWJ6YUtoTa7lmCw==" - } - } - }, - "extend": { - "version": "3.0.2", - "resolved": "https://registry.npmjs.org/extend/-/extend-3.0.2.tgz", - "integrity": "sha512-fjquC59cD7CyW6urNXK0FBufkZcoiGG80wTuPujX590cB5Ttln20E2UB4S/WARVqhXffZl2LNgS+gQdPIIim/g==" - }, - "extract-files": { - "version": "9.0.0", - "resolved": "https://registry.npmjs.org/extract-files/-/extract-files-9.0.0.tgz", - "integrity": "sha512-CvdFfHkC95B4bBBk36hcEmvdR2awOdhhVUYH6S/zrVj3477zven/fJMYg7121h4T1xHZC+tetUpubpAhxwI7hQ==" - }, - "extsprintf": { - "version": "1.3.0", - "resolved": "https://registry.npmjs.org/extsprintf/-/extsprintf-1.3.0.tgz", - "integrity": "sha512-11Ndz7Nv+mvAC1j0ktTa7fAb0vLyGGX+rMHNBYQviQDGU0Hw7lhctJANqbPhu9nV9/izT/IntTgZ7Im/9LJs9g==" - }, - "fast-deep-equal": { - "version": "3.1.3", - "resolved": "https://registry.npmjs.org/fast-deep-equal/-/fast-deep-equal-3.1.3.tgz", - "integrity": "sha512-f3qQ9oQy9j2AhBe/H9VC91wLmKBCCU/gDOnKNAYG5hswO7BLKj09Hc5HYNz9cGI++xlpDCIgDaitVs03ATR84Q==" - }, - "fast-glob": { - "version": "3.2.11", - "resolved": "https://registry.npmjs.org/fast-glob/-/fast-glob-3.2.11.tgz", - "integrity": "sha512-xrO3+1bxSo3ZVHAnqzyuewYT6aMFHRAd4Kcs92MAonjwQZLsK9d0SF1IyQ3k5PoirxTW0Oe/RqFgMQ6TcNE5Ew==", - "requires": { - "@nodelib/fs.stat": "^2.0.2", - "@nodelib/fs.walk": "^1.2.3", - "glob-parent": "^5.1.2", - "merge2": "^1.3.0", - "micromatch": "^4.0.4" - }, - "dependencies": { - "glob-parent": { - "version": "5.1.2", - "resolved": "https://registry.npmjs.org/glob-parent/-/glob-parent-5.1.2.tgz", - "integrity": "sha512-AOIgSQCepiJYwP3ARnGx+5VnTu2HBYdzbGP45eLw1vr3zB3vZLeyed1sC9hnbcOc9/SrMyM5RPQrkGz4aS9Zow==", - "requires": { - "is-glob": "^4.0.1" - } - } - } - }, - "fast-json-stable-stringify": { - "version": "2.1.0", - "resolved": "https://registry.npmjs.org/fast-json-stable-stringify/-/fast-json-stable-stringify-2.1.0.tgz", - "integrity": "sha512-lhd/wF+Lk98HZoTCtlVraHtfh5XYijIjalXck7saUtuanSDyLMxnHhSXEDJqHxD7msR8D0uCmqlkwjCV8xvwHw==" - }, - "fast-levenshtein": { - "version": "2.0.6", - "resolved": "https://registry.npmjs.org/fast-levenshtein/-/fast-levenshtein-2.0.6.tgz", - "integrity": "sha512-DCXu6Ifhqcks7TZKY3Hxp3y6qphY5SJZmrWMDrKcERSOXWQdMhU9Ig/PYrzyw/ul9jOIyh0N4M0tbC5hodg8dw==" - }, - "fastq": { - "version": "1.13.0", - "resolved": "https://registry.npmjs.org/fastq/-/fastq-1.13.0.tgz", - "integrity": "sha512-YpkpUnK8od0o1hmeSc7UUs/eB/vIPWJYjKck2QKIzAf71Vm1AAQ3EbuZB3g2JIy+pg+ERD0vqI79KyZiB2e2Nw==", - "requires": { - "reusify": "^1.0.4" - } - }, - "faye-websocket": { - "version": "0.11.4", - "resolved": "https://registry.npmjs.org/faye-websocket/-/faye-websocket-0.11.4.tgz", - "integrity": "sha512-CzbClwlXAuiRQAlUyfqPgvPoNKTckTPGfwZV4ZdAhVcP2lh9KUxJg2b5GkE7XbjKQ3YJnQ9z6D9ntLAlB+tP8g==", - "requires": { - "websocket-driver": ">=0.5.1" - } - }, - "fb-watchman": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/fb-watchman/-/fb-watchman-2.0.1.tgz", - "integrity": "sha512-DkPJKQeY6kKwmuMretBhr7G6Vodr7bFwDYTXIkfG1gjvNpaxBTQV3PbXg6bR1c1UP4jPOX0jHUbbHANL9vRjVg==", - "requires": { - "bser": "2.1.1" - } - }, - "file-entry-cache": { - "version": "6.0.1", - "resolved": "https://registry.npmjs.org/file-entry-cache/-/file-entry-cache-6.0.1.tgz", - "integrity": "sha512-7Gps/XWymbLk2QLYK4NzpMOrYjMhdIxXuIvy2QBsLE6ljuodKvdkWs/cpyJJ3CVIVpH0Oi1Hvg1ovbMzLdFBBg==", - "requires": { - "flat-cache": "^3.0.4" - } - }, - "file-loader": { - "version": "6.2.0", - "resolved": "https://registry.npmjs.org/file-loader/-/file-loader-6.2.0.tgz", - "integrity": "sha512-qo3glqyTa61Ytg4u73GultjHGjdRyig3tG6lPtyX/jOEJvHif9uB0/OCI2Kif6ctF3caQTW2G5gym21oAsI4pw==", - "requires": { - "loader-utils": "^2.0.0", - "schema-utils": "^3.0.0" - } - }, - "file-type": { - "version": "16.5.4", - "resolved": "https://registry.npmjs.org/file-type/-/file-type-16.5.4.tgz", - "integrity": "sha512-/yFHK0aGjFEgDJjEKP0pWCplsPFPhwyfwevf/pVxiN0tmE4L9LmwWxWukdJSHdoCli4VgQLehjJtwQBnqmsKcw==", - "requires": { - "readable-web-to-node-stream": "^3.0.0", - "strtok3": "^6.2.4", - "token-types": "^4.1.1" - } - }, - "filelist": { - "version": "1.0.4", - "resolved": "https://registry.npmjs.org/filelist/-/filelist-1.0.4.tgz", - "integrity": "sha512-w1cEuf3S+DrLCQL7ET6kz+gmlJdbq9J7yXCSjK/OZCPA+qEN1WyF4ZAf0YYJa4/shHJra2t/d/r8SV4Ji+x+8Q==", - "requires": { - "minimatch": "^5.0.1" - }, - "dependencies": { - "brace-expansion": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-2.0.1.tgz", - "integrity": "sha512-XnAIvQ8eM+kC6aULx6wuQiwVsnzsi9d3WxzV3FpWTGA19F621kwdbsAcFKXgKUHZWsy+mY6iL1sHTxWEFCytDA==", - "requires": { - "balanced-match": "^1.0.0" - } - }, - "minimatch": { - "version": "5.1.0", - "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-5.1.0.tgz", - "integrity": "sha512-9TPBGGak4nHfGZsPBohm9AWg6NoT7QTCehS3BIJABslyZbzxfV78QM2Y6+i741OPZIafFAaiiEMh5OyIrJPgtg==", - "requires": { - "brace-expansion": "^2.0.1" - } - } - } - }, - "filesize": { - "version": "8.0.7", - "resolved": "https://registry.npmjs.org/filesize/-/filesize-8.0.7.tgz", - "integrity": "sha512-pjmC+bkIF8XI7fWaH8KxHcZL3DPybs1roSKP4rKDvy20tAWwIObE4+JIseG2byfGKhud5ZnM4YSGKBz7Sh0ndQ==" - }, - "fill-range": { - "version": "7.0.1", - "resolved": "https://registry.npmjs.org/fill-range/-/fill-range-7.0.1.tgz", - "integrity": "sha512-qOo9F+dMUmC2Lcb4BbVvnKJxTPjCm+RRpe4gDuGrzkL7mEVl/djYSu2OdQ2Pa302N4oqkSg9ir6jaLWJ2USVpQ==", - "requires": { - "to-regex-range": "^5.0.1" - } - }, - "finalhandler": { - "version": "1.2.0", - "resolved": "https://registry.npmjs.org/finalhandler/-/finalhandler-1.2.0.tgz", - "integrity": "sha512-5uXcUVftlQMFnWC9qu/svkWv3GTd2PfUhK/3PLkYNAe7FbqJMt3515HaxE6eRL74GdsriiwujiawdaB1BpEISg==", - "requires": { - "debug": "2.6.9", - "encodeurl": "~1.0.2", - "escape-html": "~1.0.3", - "on-finished": "2.4.1", - "parseurl": "~1.3.3", - "statuses": "2.0.1", - "unpipe": "~1.0.0" - }, - "dependencies": { - "debug": { - "version": "2.6.9", - "resolved": "https://registry.npmjs.org/debug/-/debug-2.6.9.tgz", - "integrity": "sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA==", - "requires": { - "ms": "2.0.0" - } - }, - "ms": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/ms/-/ms-2.0.0.tgz", - "integrity": "sha512-Tpp60P6IUJDTuOq/5Z8cdskzJujfwqfOTkrwIwj7IRISpnkJnT6SyJ4PCPnGMoFjC9ddhal5KVIYtAt97ix05A==" - } - } - }, - "find-cache-dir": { - "version": "3.3.2", - "resolved": "https://registry.npmjs.org/find-cache-dir/-/find-cache-dir-3.3.2.tgz", - "integrity": "sha512-wXZV5emFEjrridIgED11OoUKLxiYjAcqot/NJdAkOhlJ+vGzwhOAfcG5OX1jP+S0PcjEn8bdMJv+g2jwQ3Onig==", - "requires": { - "commondir": "^1.0.1", - "make-dir": "^3.0.2", - "pkg-dir": "^4.1.0" - } - }, - "find-replace": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/find-replace/-/find-replace-3.0.0.tgz", - "integrity": "sha512-6Tb2myMioCAgv5kfvP5/PkZZ/ntTpVK39fHY7WkWBgvbeE+VHd/tZuZ4mrC+bxh4cfOZeYKVPaJIZtZXV7GNCQ==", - "dev": true, - "requires": { - "array-back": "^3.0.1" - } - }, - "find-root": { - "version": "1.1.0", - "resolved": "https://registry.npmjs.org/find-root/-/find-root-1.1.0.tgz", - "integrity": "sha512-NKfW6bec6GfKc0SGx1e07QZY9PE99u0Bft/0rzSD5k3sO/vwkVUpDUKVm5Gpp5Ue3YfShPFTX2070tDs5kB9Ng==" - }, - "find-up": { - "version": "5.0.0", - "resolved": "https://registry.npmjs.org/find-up/-/find-up-5.0.0.tgz", - "integrity": "sha512-78/PXT1wlLLDgTzDs7sjq9hzz0vXD+zn+7wypEe4fXQxCmdmqfGsEPQxmiCSQI3ajFV91bVSsvNtrJRiW6nGng==", - "requires": { - "locate-path": "^6.0.0", - "path-exists": "^4.0.0" - } - }, - "flat": { - "version": "5.0.2", - "resolved": "https://registry.npmjs.org/flat/-/flat-5.0.2.tgz", - "integrity": "sha512-b6suED+5/3rTpUBdG1gupIl8MPFCAMA0QXwmljLhvCUKcUvdE4gWky9zpuGCcXHOsz4J9wPGNWq6OKpmIzz3hQ==", - "peer": true - }, - "flat-cache": { - "version": "3.0.4", - "resolved": "https://registry.npmjs.org/flat-cache/-/flat-cache-3.0.4.tgz", - "integrity": "sha512-dm9s5Pw7Jc0GvMYbshN6zchCA9RgQlzzEZX3vylR9IqFfS8XciblUXOKfW6SiuJ0e13eDYZoZV5wdrev7P3Nwg==", - "requires": { - "flatted": "^3.1.0", - "rimraf": "^3.0.2" - } - }, - "flatted": { - "version": "3.2.6", - "resolved": "https://registry.npmjs.org/flatted/-/flatted-3.2.6.tgz", - "integrity": "sha512-0sQoMh9s0BYsm+12Huy/rkKxVu4R1+r96YX5cG44rHV0pQ6iC3Q+mkoMFaGWObMFYQxCVT+ssG1ksneA2MI9KQ==" - }, - "follow-redirects": { - "version": "1.15.1", - "resolved": "https://registry.npmjs.org/follow-redirects/-/follow-redirects-1.15.1.tgz", - "integrity": "sha512-yLAMQs+k0b2m7cVxpS1VKJVvoz7SS9Td1zss3XRwXj+ZDH00RJgnuLx7E44wx02kQLrdM3aOOy+FpzS7+8OizA==" - }, - "for-each": { - "version": "0.3.3", - "resolved": "https://registry.npmjs.org/for-each/-/for-each-0.3.3.tgz", - "integrity": "sha512-jqYfLp7mo9vIyQf8ykW2v7A+2N4QjeCeI5+Dz9XraiO1ign81wjiH7Fb9vSOWvQfNtmSa4H2RoQTrrXivdUZmw==", - "requires": { - "is-callable": "^1.1.3" - } - }, - "forever-agent": { - "version": "0.6.1", - "resolved": "https://registry.npmjs.org/forever-agent/-/forever-agent-0.6.1.tgz", - "integrity": "sha512-j0KLYPhm6zeac4lz3oJ3o65qvgQCcPubiyotZrXqEaG4hNagNYO8qdlUrX5vwqv9ohqeT/Z3j6+yW067yWWdUw==" - }, - "fork-ts-checker-webpack-plugin": { - "version": "6.5.2", - "resolved": "https://registry.npmjs.org/fork-ts-checker-webpack-plugin/-/fork-ts-checker-webpack-plugin-6.5.2.tgz", - "integrity": "sha512-m5cUmF30xkZ7h4tWUgTAcEaKmUW7tfyUyTqNNOz7OxWJ0v1VWKTcOvH8FWHUwSjlW/356Ijc9vi3XfcPstpQKA==", - "requires": { - "@babel/code-frame": "^7.8.3", - "@types/json-schema": "^7.0.5", - "chalk": "^4.1.0", - "chokidar": "^3.4.2", - "cosmiconfig": "^6.0.0", - "deepmerge": "^4.2.2", - "fs-extra": "^9.0.0", - "glob": "^7.1.6", - "memfs": "^3.1.2", - "minimatch": "^3.0.4", - "schema-utils": "2.7.0", - "semver": "^7.3.2", - "tapable": "^1.0.0" - }, - "dependencies": { - "ansi-styles": { - "version": "4.3.0", - "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", - "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", - "requires": { - "color-convert": "^2.0.1" - } - }, - "chalk": { - "version": "4.1.2", - "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz", - "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==", - "requires": { - "ansi-styles": "^4.1.0", - "supports-color": "^7.1.0" - } - }, - "color-convert": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz", - "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==", - "requires": { - "color-name": "~1.1.4" - } - }, - "color-name": { - "version": "1.1.4", - "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz", - "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==" - }, - "cosmiconfig": { - "version": "6.0.0", - "resolved": "https://registry.npmjs.org/cosmiconfig/-/cosmiconfig-6.0.0.tgz", - "integrity": "sha512-xb3ZL6+L8b9JLLCx3ZdoZy4+2ECphCMo2PwqgP1tlfVq6M6YReyzBJtvWWtbDSpNr9hn96pkCiZqUcFEc+54Qg==", - "requires": { - "@types/parse-json": "^4.0.0", - "import-fresh": "^3.1.0", - "parse-json": "^5.0.0", - "path-type": "^4.0.0", - "yaml": "^1.7.2" - } - }, - "fs-extra": { - "version": "9.1.0", - "resolved": "https://registry.npmjs.org/fs-extra/-/fs-extra-9.1.0.tgz", - "integrity": "sha512-hcg3ZmepS30/7BSFqRvoo3DOMQu7IjqxO5nCDt+zM9XWjb33Wg7ziNT+Qvqbuc3+gWpzO02JubVyk2G4Zvo1OQ==", - "requires": { - "at-least-node": "^1.0.0", - "graceful-fs": "^4.2.0", - "jsonfile": "^6.0.1", - "universalify": "^2.0.0" - } - }, - "has-flag": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz", - "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==" - }, - "schema-utils": { - "version": "2.7.0", - "resolved": "https://registry.npmjs.org/schema-utils/-/schema-utils-2.7.0.tgz", - "integrity": "sha512-0ilKFI6QQF5nxDZLFn2dMjvc4hjg/Wkg7rHd3jK6/A4a1Hl9VFdQWvgB1UMGoU94pad1P/8N7fMcEnLnSiju8A==", - "requires": { - "@types/json-schema": "^7.0.4", - "ajv": "^6.12.2", - "ajv-keywords": "^3.4.1" - } - }, - "supports-color": { - "version": "7.2.0", - "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", - "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", - "requires": { - "has-flag": "^4.0.0" - } - }, - "tapable": { - "version": "1.1.3", - "resolved": "https://registry.npmjs.org/tapable/-/tapable-1.1.3.tgz", - "integrity": "sha512-4WK/bYZmj8xLr+HUCODHGF1ZFzsYffasLUgEiMBY4fgtltdO6B4WJtlSbPaDTLpYTcGVwM2qLnFTICEcNxs3kA==" - } - } - }, - "form-data": { - "version": "3.0.1", - "resolved": "https://registry.npmjs.org/form-data/-/form-data-3.0.1.tgz", - "integrity": "sha512-RHkBKtLWUVwd7SqRIvCZMEvAMoGUp0XU+seQiZejj0COz3RI3hWP4sCv3gZWWLjJTd7rGwcsF5eKZGii0r/hbg==", - "requires": { - "asynckit": "^0.4.0", - "combined-stream": "^1.0.8", - "mime-types": "^2.1.12" - } - }, - "form-data-encoder": { - "version": "1.7.1", - "resolved": "https://registry.npmjs.org/form-data-encoder/-/form-data-encoder-1.7.1.tgz", - "integrity": "sha512-EFRDrsMm/kyqbTQocNvRXMLjc7Es2Vk+IQFx/YW7hkUH1eBl4J1fqiP34l74Yt0pFLCNpc06fkbVk00008mzjg==" - }, - "forwarded": { - "version": "0.2.0", - "resolved": "https://registry.npmjs.org/forwarded/-/forwarded-0.2.0.tgz", - "integrity": "sha512-buRG0fpBtRHSTCOASe6hD258tEubFoRLb4ZNA6NxMVHNw2gOcwHo9wyablzMzOA5z9xA9L1KNjk/Nt6MT9aYow==" - }, - "fp-ts": { - "version": "1.19.3", - "resolved": "https://registry.npmjs.org/fp-ts/-/fp-ts-1.19.3.tgz", - "integrity": "sha512-H5KQDspykdHuztLTg+ajGN0Z2qUjcEf3Ybxc6hLt0k7/zPkn29XnKnxlBPyW2XIddWrGaJBzBl4VLYOtk39yZg==", - "peer": true - }, - "fraction.js": { - "version": "4.2.0", - "resolved": "https://registry.npmjs.org/fraction.js/-/fraction.js-4.2.0.tgz", - "integrity": "sha512-MhLuK+2gUcnZe8ZHlaaINnQLl0xRIGRfcGk2yl8xoQAfHrSsL3rYu6FCmBdkdbhc9EPlwyGHewaRsvwRMJtAlA==" - }, - "fresh": { - "version": "0.5.2", - "resolved": "https://registry.npmjs.org/fresh/-/fresh-0.5.2.tgz", - "integrity": "sha512-zJ2mQYM18rEFOudeV4GShTGIQ7RbzA7ozbU9I/XBpm7kqgMywgmylMwXHxZJmkVoYkna9d2pVXVXPdYTP9ej8Q==" - }, - "fs-extra": { - "version": "10.1.0", - "resolved": "https://registry.npmjs.org/fs-extra/-/fs-extra-10.1.0.tgz", - "integrity": "sha512-oRXApq54ETRj4eMiFzGnHWGy+zo5raudjuxN0b8H7s/RU2oW0Wvsx9O0ACRN/kRq9E8Vu/ReskGB5o3ji+FzHQ==", - "requires": { - "graceful-fs": "^4.2.0", - "jsonfile": "^6.0.1", - "universalify": "^2.0.0" - } - }, - "fs-minipass": { - "version": "1.2.7", - "resolved": "https://registry.npmjs.org/fs-minipass/-/fs-minipass-1.2.7.tgz", - "integrity": "sha512-GWSSJGFy4e9GUeCcbIkED+bgAoFyj7XF1mV8rma3QW4NIqX9Kyx79N/PF61H5udOV3aY1IaMLs6pGbH71nlCTA==", - "requires": { - "minipass": "^2.6.0" - } - }, - "fs-monkey": { - "version": "1.0.3", - "resolved": "https://registry.npmjs.org/fs-monkey/-/fs-monkey-1.0.3.tgz", - "integrity": "sha512-cybjIfiiE+pTWicSCLFHSrXZ6EilF30oh91FDP9S2B051prEa7QWfrVTQm10/dDpswBDXZugPa1Ogu8Yh+HV0Q==" - }, - "fs.realpath": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/fs.realpath/-/fs.realpath-1.0.0.tgz", - "integrity": "sha512-OO0pH2lK6a0hZnAdau5ItzHPI6pUlvI7jMVnxUQRtw4owF2wk8lOSabtGDCTP4Ggrg2MbGnWO9X8K1t4+fGMDw==" - }, - "fsevents": { - "version": "2.3.2", - "resolved": "https://registry.npmjs.org/fsevents/-/fsevents-2.3.2.tgz", - "integrity": "sha512-xiqMQR4xAeHTuB9uWm+fFRcIOgKBMiOBP+eXiyT7jsgVCq1bkVygt00oASowB7EdtpOHaaPgKt812P9ab+DDKA==", - "optional": true - }, - "function-bind": { - "version": "1.1.1", - "resolved": "https://registry.npmjs.org/function-bind/-/function-bind-1.1.1.tgz", - "integrity": "sha512-yIovAzMX49sF8Yl58fSCWJ5svSLuaibPxXQJFLmBObTuCr0Mf1KiPopGM9NiFjiYBCbfaa2Fh6breQ6ANVTI0A==" - }, - "function.prototype.name": { - "version": "1.1.5", - "resolved": "https://registry.npmjs.org/function.prototype.name/-/function.prototype.name-1.1.5.tgz", - "integrity": "sha512-uN7m/BzVKQnCUF/iW8jYea67v++2u7m5UgENbHRtdDVclOUP+FMPlCNdmk0h/ysGyo2tavMJEDqJAkJdRa1vMA==", - "requires": { - "call-bind": "^1.0.2", - "define-properties": "^1.1.3", - "es-abstract": "^1.19.0", - "functions-have-names": "^1.2.2" - } - }, - "functional-red-black-tree": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/functional-red-black-tree/-/functional-red-black-tree-1.0.1.tgz", - "integrity": "sha512-dsKNQNdj6xA3T+QlADDA7mOSlX0qiMINjn0cgr+eGHGsbSHzTabcIogz2+p/iqP1Xs6EP/sS2SbqH+brGTbq0g==" - }, - "functions-have-names": { - "version": "1.2.3", - "resolved": "https://registry.npmjs.org/functions-have-names/-/functions-have-names-1.2.3.tgz", - "integrity": "sha512-xckBUXyTIqT97tq2x2AMb+g163b5JFysYk0x4qxNFwbfQkmNZoiRHb6sPzI9/QV33WeuvVYBUIiD4NzNIyqaRQ==" - }, - "gensync": { - "version": "1.0.0-beta.2", - "resolved": "https://registry.npmjs.org/gensync/-/gensync-1.0.0-beta.2.tgz", - "integrity": "sha512-3hN7NaskYvMDLQY55gnW3NQ+mesEAepTqlg+VEbj7zzqEMBVNhzcGYYeqFo/TlYz6eQiFcp1HcsCZO+nGgS8zg==" - }, - "get-caller-file": { - "version": "2.0.5", - "resolved": "https://registry.npmjs.org/get-caller-file/-/get-caller-file-2.0.5.tgz", - "integrity": "sha512-DyFP3BM/3YHTQOCUL/w0OZHR0lpKeGrxotcHWcqNEdnltqFwXVfhEBQ94eIo34AfQpo0rGki4cyIiftY06h2Fg==" - }, - "get-intrinsic": { - "version": "1.2.0", - "resolved": "https://registry.npmjs.org/get-intrinsic/-/get-intrinsic-1.2.0.tgz", - "integrity": "sha512-L049y6nFOuom5wGyRc3/gdTLO94dySVKRACj1RmJZBQXlbTMhtNIgkWkUHq+jYmZvKf14EW1EoJnnjbmoHij0Q==", - "requires": { - "function-bind": "^1.1.1", - "has": "^1.0.3", - "has-symbols": "^1.0.3" - } - }, - "get-own-enumerable-property-symbols": { - "version": "3.0.2", - "resolved": "https://registry.npmjs.org/get-own-enumerable-property-symbols/-/get-own-enumerable-property-symbols-3.0.2.tgz", - "integrity": "sha512-I0UBV/XOz1XkIJHEUDMZAbzCThU/H8DxmSfmdGcKPnVhu2VfFqr34jr9777IyaTYvxjedWhqVIilEDsCdP5G6g==" - }, - "get-package-type": { - "version": "0.1.0", - "resolved": "https://registry.npmjs.org/get-package-type/-/get-package-type-0.1.0.tgz", - "integrity": "sha512-pjzuKtY64GYfWizNAJ0fr9VqttZkNiK2iS430LtIHzjBEr6bX8Am2zm4sW4Ro5wjWW5cAlRL1qAMTcXbjNAO2Q==" - }, - "get-starknet": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/get-starknet/-/get-starknet-2.0.0.tgz", - "integrity": "sha512-MT5jMq0ARo4yE1MhPeWwDw2A0sp+X+HETJoZXqEzhkmeN6lv/eefpEyBbjFCleyEEnpTkZfxqhgFCnDK4OUPoA==", - "requires": { - "bowser": "^2.11.0", - "get-starknet-core": "^2.0.0" - } - }, - "get-starknet-core": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/get-starknet-core/-/get-starknet-core-2.0.1.tgz", - "integrity": "sha512-uYI8wn9a2iyIfJRSJeZvoIvAWq495AKP5U154kFf/Izet+nP/VilTxKUG6CxdUwe9KuBpG0UZE9ODIxPgBYo2w==", - "requires": {} - }, - "get-stream": { - "version": "6.0.1", - "resolved": "https://registry.npmjs.org/get-stream/-/get-stream-6.0.1.tgz", - "integrity": "sha512-ts6Wi+2j3jQjqi70w5AlN8DFnkSwC+MqmxEzdEALB2qXZYV3X/b1CTfgPLGJNMeAWxdPfU8FO1ms3NUfaHCPYg==" - }, - "get-symbol-description": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/get-symbol-description/-/get-symbol-description-1.0.0.tgz", - "integrity": "sha512-2EmdH1YvIQiZpltCNgkuiUnyukzxM/R6NDJX31Ke3BG1Nq5b0S2PhX59UKi9vZpPDQVdqn+1IcaAwnzTT5vCjw==", - "requires": { - "call-bind": "^1.0.2", - "get-intrinsic": "^1.1.1" - } - }, - "getpass": { - "version": "0.1.7", - "resolved": "https://registry.npmjs.org/getpass/-/getpass-0.1.7.tgz", - "integrity": "sha512-0fzj9JxOLfJ+XGLhR8ze3unN0KZCgZwiSSDz168VERjK8Wl8kVSdcu2kspd4s4wtAa1y/qrVRiAA0WclVsu0ng==", - "requires": { - "assert-plus": "^1.0.0" - } - }, - "gifwrap": { - "version": "0.9.4", - "resolved": "https://registry.npmjs.org/gifwrap/-/gifwrap-0.9.4.tgz", - "integrity": "sha512-MDMwbhASQuVeD4JKd1fKgNgCRL3fGqMM4WaqpNhWO0JiMOAjbQdumbs4BbBZEy9/M00EHEjKN3HieVhCUlwjeQ==", - "requires": { - "image-q": "^4.0.0", - "omggif": "^1.0.10" - } - }, - "glob": { - "version": "7.2.3", - "resolved": "https://registry.npmjs.org/glob/-/glob-7.2.3.tgz", - "integrity": "sha512-nFR0zLpU2YCaRxwoCJvL6UvCH2JFyFVIvwTLsIf21AuHlMskA1hhTdk+LlYJtOlYt9v6dvszD2BGRqBL+iQK9Q==", - "requires": { - "fs.realpath": "^1.0.0", - "inflight": "^1.0.4", - "inherits": "2", - "minimatch": "^3.1.1", - "once": "^1.3.0", - "path-is-absolute": "^1.0.0" - } - }, - "glob-parent": { - "version": "6.0.2", - "resolved": "https://registry.npmjs.org/glob-parent/-/glob-parent-6.0.2.tgz", - "integrity": "sha512-XxwI8EOhVQgWp6iDL+3b0r86f4d6AX6zSU55HfB4ydCEuXLXc5FcYeOu+nnGftS4TEju/11rt4KJPTMgbfmv4A==", - "requires": { - "is-glob": "^4.0.3" - } - }, - "glob-to-regexp": { - "version": "0.4.1", - "resolved": "https://registry.npmjs.org/glob-to-regexp/-/glob-to-regexp-0.4.1.tgz", - "integrity": "sha512-lkX1HJXwyMcprw/5YUZc2s7DrpAiHB21/V+E1rHUrVNokkvB6bqMzT0VfV6/86ZNabt1k14YOIaT7nDvOX3Iiw==" - }, - "global": { - "version": "4.4.0", - "resolved": "https://registry.npmjs.org/global/-/global-4.4.0.tgz", - "integrity": "sha512-wv/LAoHdRE3BeTGz53FAamhGlPLhlssK45usmGFThIi4XqnBmjKQ16u+RNbP7WvigRZDxUsM0J3gcQ5yicaL0w==", - "requires": { - "min-document": "^2.19.0", - "process": "^0.11.10" - } - }, - "global-modules": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/global-modules/-/global-modules-2.0.0.tgz", - "integrity": "sha512-NGbfmJBp9x8IxyJSd1P+otYK8vonoJactOogrVfFRIAEY1ukil8RSKDz2Yo7wh1oihl51l/r6W4epkeKJHqL8A==", - "requires": { - "global-prefix": "^3.0.0" - } - }, - "global-prefix": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/global-prefix/-/global-prefix-3.0.0.tgz", - "integrity": "sha512-awConJSVCHVGND6x3tmMaKcQvwXLhjdkmomy2W+Goaui8YPgYgXJZewhg3fWC+DlfqqQuWg8AwqjGTD2nAPVWg==", - "requires": { - "ini": "^1.3.5", - "kind-of": "^6.0.2", - "which": "^1.3.1" - }, - "dependencies": { - "which": { - "version": "1.3.1", - "resolved": "https://registry.npmjs.org/which/-/which-1.3.1.tgz", - "integrity": "sha512-HxJdYWq1MTIQbJ3nw0cqssHoTNU267KlrDuGZ1WYlxDStUtKUhOaJmh112/TZmHxxUfuJqPXSOm7tDyas0OSIQ==", - "requires": { - "isexe": "^2.0.0" - } - } - } - }, - "globals": { - "version": "11.12.0", - "resolved": "https://registry.npmjs.org/globals/-/globals-11.12.0.tgz", - "integrity": "sha512-WOBp/EEGUiIsJSp7wcv/y6MO+lV9UoncWqxuFfm8eBwzWNgyfBd6Gz+IeKQ9jCmyhoH99g15M3T+QaVHFjizVA==" - }, - "globalthis": { - "version": "1.0.3", - "resolved": "https://registry.npmjs.org/globalthis/-/globalthis-1.0.3.tgz", - "integrity": "sha512-sFdI5LyBiNTHjRd7cGPWapiHWMOXKyuBNX/cWJ3NfzrZQVa8GI/8cofCl74AOVqq9W5kNmguTIzJ/1s2gyI9wA==", - "requires": { - "define-properties": "^1.1.3" - } - }, - "globby": { - "version": "11.1.0", - "resolved": "https://registry.npmjs.org/globby/-/globby-11.1.0.tgz", - "integrity": "sha512-jhIXaOzy1sb8IyocaruWSn1TjmnBVs8Ayhcy83rmxNJ8q2uWKCAj3CnJY+KpGSXCueAPc0i05kVvVKtP1t9S3g==", - "requires": { - "array-union": "^2.1.0", - "dir-glob": "^3.0.1", - "fast-glob": "^3.2.9", - "ignore": "^5.2.0", - "merge2": "^1.4.1", - "slash": "^3.0.0" - } - }, - "gopd": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/gopd/-/gopd-1.0.1.tgz", - "integrity": "sha512-d65bNlIadxvpb/A2abVdlqKqV563juRnZ1Wtk6s1sIR8uNsXR70xqIzVqxVf1eTqDunwT2MkczEeaezCKTZhwA==", - "requires": { - "get-intrinsic": "^1.1.3" - } - }, - "got": { - "version": "12.1.0", - "resolved": "https://registry.npmjs.org/got/-/got-12.1.0.tgz", - "integrity": "sha512-hBv2ty9QN2RdbJJMK3hesmSkFTjVIHyIDDbssCKnSmq62edGgImJWD10Eb1k77TiV1bxloxqcFAVK8+9pkhOig==", - "requires": { - "@sindresorhus/is": "^4.6.0", - "@szmarczak/http-timer": "^5.0.1", - "@types/cacheable-request": "^6.0.2", - "@types/responselike": "^1.0.0", - "cacheable-lookup": "^6.0.4", - "cacheable-request": "^7.0.2", - "decompress-response": "^6.0.0", - "form-data-encoder": "1.7.1", - "get-stream": "^6.0.1", - "http2-wrapper": "^2.1.10", - "lowercase-keys": "^3.0.0", - "p-cancelable": "^3.0.0", - "responselike": "^2.0.0" - } - }, - "graceful-fs": { - "version": "4.2.10", - "resolved": "https://registry.npmjs.org/graceful-fs/-/graceful-fs-4.2.10.tgz", - "integrity": "sha512-9ByhssR2fPVsNZj478qUUbKfmL0+t5BDVyjShtyZZLiK7ZDAArFFfopyOTj0M05wE2tJPisA4iTnnXl2YoPvOA==" - }, - "graphql": { - "version": "15.8.0", - "resolved": "https://registry.npmjs.org/graphql/-/graphql-15.8.0.tgz", - "integrity": "sha512-5gghUc24tP9HRznNpV2+FIoq3xKkj5dTQqf4v0CpdPbFVwFkWoxOM+o+2OC9ZSvjEMTjfmG9QT+gcvggTwW1zw==" - }, - "graphql-request": { - "version": "3.7.0", - "resolved": "https://registry.npmjs.org/graphql-request/-/graphql-request-3.7.0.tgz", - "integrity": "sha512-dw5PxHCgBneN2DDNqpWu8QkbbJ07oOziy8z+bK/TAXufsOLaETuVO4GkXrbs0WjhdKhBMN3BkpN/RIvUHkmNUQ==", - "requires": { - "cross-fetch": "^3.0.6", - "extract-files": "^9.0.0", - "form-data": "^3.0.0" - } - }, - "gzip-size": { - "version": "6.0.0", - "resolved": "https://registry.npmjs.org/gzip-size/-/gzip-size-6.0.0.tgz", - "integrity": "sha512-ax7ZYomf6jqPTQ4+XCpUGyXKHk5WweS+e05MBO4/y3WJ5RkmPXNKvX+bx1behVILVwr6JSQvZAku021CHPXG3Q==", - "requires": { - "duplexer": "^0.1.2" - } - }, - "handle-thing": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/handle-thing/-/handle-thing-2.0.1.tgz", - "integrity": "sha512-9Qn4yBxelxoh2Ow62nP+Ka/kMnOXRi8BXnRaUwezLNhqelnN49xKz4F/dPP8OYLxLxq6JDtZb2i9XznUQbNPTg==" - }, - "har-schema": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/har-schema/-/har-schema-2.0.0.tgz", - "integrity": "sha512-Oqluz6zhGX8cyRaTQlFMPw80bSJVG2x/cFb8ZPhUILGgHka9SsokCCOQgpveePerqidZOrT14ipqfJb7ILcW5Q==" - }, - "har-validator": { - "version": "5.1.5", - "resolved": "https://registry.npmjs.org/har-validator/-/har-validator-5.1.5.tgz", - "integrity": "sha512-nmT2T0lljbxdQZfspsno9hgrG3Uir6Ks5afism62poxqBM6sDnMEuPmzTq8XN0OEwqKLLdh1jQI3qyE66Nzb3w==", - "requires": { - "ajv": "^6.12.3", - "har-schema": "^2.0.0" - } - }, - "hardhat": { - "version": "2.14.0", - "resolved": "https://registry.npmjs.org/hardhat/-/hardhat-2.14.0.tgz", - "integrity": "sha512-73jsInY4zZahMSVFurSK+5TNCJTXMv+vemvGia0Ac34Mm19fYp6vEPVGF3sucbumszsYxiTT2TbS8Ii2dsDSoQ==", - "peer": true, - "requires": { - "@ethersproject/abi": "^5.1.2", - "@metamask/eth-sig-util": "^4.0.0", - "@nomicfoundation/ethereumjs-block": "5.0.1", - "@nomicfoundation/ethereumjs-blockchain": "7.0.1", - "@nomicfoundation/ethereumjs-common": "4.0.1", - "@nomicfoundation/ethereumjs-evm": "2.0.1", - "@nomicfoundation/ethereumjs-rlp": "5.0.1", - "@nomicfoundation/ethereumjs-statemanager": "2.0.1", - "@nomicfoundation/ethereumjs-trie": "6.0.1", - "@nomicfoundation/ethereumjs-tx": "5.0.1", - "@nomicfoundation/ethereumjs-util": "9.0.1", - "@nomicfoundation/ethereumjs-vm": "7.0.1", - "@nomicfoundation/solidity-analyzer": "^0.1.0", - "@sentry/node": "^5.18.1", - "@types/bn.js": "^5.1.0", - "@types/lru-cache": "^5.1.0", - "abort-controller": "^3.0.0", - "adm-zip": "^0.4.16", - "aggregate-error": "^3.0.0", - "ansi-escapes": "^4.3.0", - "chalk": "^2.4.2", - "chokidar": "^3.4.0", - "ci-info": "^2.0.0", - "debug": "^4.1.1", - "enquirer": "^2.3.0", - "env-paths": "^2.2.0", - "ethereum-cryptography": "^1.0.3", - "ethereumjs-abi": "^0.6.8", - "find-up": "^2.1.0", - "fp-ts": "1.19.3", - "fs-extra": "^7.0.1", - "glob": "7.2.0", - "immutable": "^4.0.0-rc.12", - "io-ts": "1.10.4", - "keccak": "^3.0.2", - "lodash": "^4.17.11", - "mnemonist": "^0.38.0", - "mocha": "^10.0.0", - "p-map": "^4.0.0", - "qs": "^6.7.0", - "raw-body": "^2.4.1", - "resolve": "1.17.0", - "semver": "^6.3.0", - "solc": "0.7.3", - "source-map-support": "^0.5.13", - "stacktrace-parser": "^0.1.10", - "tsort": "0.0.1", - "undici": "^5.14.0", - "uuid": "^8.3.2", - "ws": "^7.4.6" - }, - "dependencies": { - "ci-info": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/ci-info/-/ci-info-2.0.0.tgz", - "integrity": "sha512-5tK7EtrZ0N+OLFMthtqOj4fI2Jeb88C4CAZPu25LDVUgXJ0A3Js4PMGqrn0JU1W0Mh1/Z8wZzYPxqUrXeBboCQ==", - "peer": true - }, - "find-up": { - "version": "2.1.0", - "resolved": "https://registry.npmjs.org/find-up/-/find-up-2.1.0.tgz", - "integrity": "sha512-NWzkk0jSJtTt08+FBFMvXoeZnOJD+jTtsRmBYbAIzJdX6l7dLgR7CTubCM5/eDdPUBvLCeVasP1brfVR/9/EZQ==", - "peer": true, - "requires": { - "locate-path": "^2.0.0" - } - }, - "fs-extra": { - "version": "7.0.1", - "resolved": "https://registry.npmjs.org/fs-extra/-/fs-extra-7.0.1.tgz", - "integrity": "sha512-YJDaCJZEnBmcbw13fvdAM9AwNOJwOzrE4pqMqBq5nFiEqXUqHwlK4B+3pUw6JNvfSPtX05xFHtYy/1ni01eGCw==", - "peer": true, - "requires": { - "graceful-fs": "^4.1.2", - "jsonfile": "^4.0.0", - "universalify": "^0.1.0" - } - }, - "glob": { - "version": "7.2.0", - "resolved": "https://registry.npmjs.org/glob/-/glob-7.2.0.tgz", - "integrity": "sha512-lmLf6gtyrPq8tTjSmrO94wBeQbFR3HbLHbuyD69wuyQkImp2hWqMGB47OX65FBkPffO641IP9jWa1z4ivqG26Q==", - "peer": true, - "requires": { - "fs.realpath": "^1.0.0", - "inflight": "^1.0.4", - "inherits": "2", - "minimatch": "^3.0.4", - "once": "^1.3.0", - "path-is-absolute": "^1.0.0" - } - }, - "jsonfile": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/jsonfile/-/jsonfile-4.0.0.tgz", - "integrity": "sha512-m6F1R3z8jjlf2imQHS2Qez5sjKWQzbuuhuJ/FKYFRZvPE3PuHcSMVZzfsLhGVOkfd20obL5SWEBew5ShlquNxg==", - "peer": true, - "requires": { - "graceful-fs": "^4.1.6" - } - }, - "locate-path": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/locate-path/-/locate-path-2.0.0.tgz", - "integrity": "sha512-NCI2kiDkyR7VeEKm27Kda/iQHyKJe1Bu0FlTbYp3CqJu+9IFe9bLyAjMxf5ZDDbEg+iMPzB5zYyUTSm8wVTKmA==", - "peer": true, - "requires": { - "p-locate": "^2.0.0", - "path-exists": "^3.0.0" - } - }, - "p-limit": { - "version": "1.3.0", - "resolved": "https://registry.npmjs.org/p-limit/-/p-limit-1.3.0.tgz", - "integrity": "sha512-vvcXsLAJ9Dr5rQOPk7toZQZJApBl2K4J6dANSsEuh6QI41JYcsS/qhTGa9ErIUUgK3WNQoJYvylxvjqmiqEA9Q==", - "peer": true, - "requires": { - "p-try": "^1.0.0" - } - }, - "p-locate": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/p-locate/-/p-locate-2.0.0.tgz", - "integrity": "sha512-nQja7m7gSKuewoVRen45CtVfODR3crN3goVQ0DDZ9N3yHxgpkuBhZqsaiotSQRrADUrne346peY7kT3TSACykg==", - "peer": true, - "requires": { - "p-limit": "^1.1.0" - } - }, - "p-try": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/p-try/-/p-try-1.0.0.tgz", - "integrity": "sha512-U1etNYuMJoIz3ZXSrrySFjsXQTWOx2/jdi86L+2pRvph/qMKL6sbcCYdH23fqsbm8TH2Gn0OybpT4eSFlCVHww==", - "peer": true - }, - "path-exists": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/path-exists/-/path-exists-3.0.0.tgz", - "integrity": "sha512-bpC7GYwiDYQ4wYLe+FA8lhRjhQCMcQGuSgGGqDkg/QerRWw9CmGRT0iSOVRSZJ29NMLZgIzqaljJ63oaL4NIJQ==", - "peer": true - }, - "resolve": { - "version": "1.17.0", - "resolved": "https://registry.npmjs.org/resolve/-/resolve-1.17.0.tgz", - "integrity": "sha512-ic+7JYiV8Vi2yzQGFWOkiZD5Z9z7O2Zhm9XMaTxdJExKasieFCr+yXZ/WmXsckHiKl12ar0y6XiXDx3m4RHn1w==", - "peer": true, - "requires": { - "path-parse": "^1.0.6" - } - }, - "semver": { - "version": "6.3.0", - "resolved": "https://registry.npmjs.org/semver/-/semver-6.3.0.tgz", - "integrity": "sha512-b39TBaTSfV6yBrapU89p5fKekE2m/NwnDocOVruQFS1/veMgdzuPcnOM34M6CwxW8jH/lxEa5rBoDeUwu5HHTw==", - "peer": true - }, - "universalify": { - "version": "0.1.2", - "resolved": "https://registry.npmjs.org/universalify/-/universalify-0.1.2.tgz", - "integrity": "sha512-rBJeI5CXAlmy1pV+617WB9J63U6XcazHHF2f2dbJix4XzpUF0RS3Zbj0FGIOCAva5P/d/GBOYaACQ1w+0azUkg==", - "peer": true - } - } - }, - "hardhat-watcher": { - "version": "2.5.0", - "resolved": "https://registry.npmjs.org/hardhat-watcher/-/hardhat-watcher-2.5.0.tgz", - "integrity": "sha512-Su2qcSMIo2YO2PrmJ0/tdkf+6pSt8zf9+4URR5edMVti6+ShI8T3xhPrwugdyTOFuyj8lKHrcTZNKUFYowYiyA==", - "requires": { - "chokidar": "^3.5.3" - } - }, - "harmony-reflect": { - "version": "1.6.2", - "resolved": "https://registry.npmjs.org/harmony-reflect/-/harmony-reflect-1.6.2.tgz", - "integrity": "sha512-HIp/n38R9kQjDEziXyDTuW3vvoxxyxjxFzXLrBr18uB47GnSt+G9D29fqrpM5ZkspMcPICud3XsBJQ4Y2URg8g==" - }, - "has": { - "version": "1.0.3", - "resolved": "https://registry.npmjs.org/has/-/has-1.0.3.tgz", - "integrity": "sha512-f2dvO0VU6Oej7RkWJGrehjbzMAjFp5/VKPp5tTpWIV4JHHZK1/BxbFRtf/siA2SWTe09caDmVtYYzWEIbBS4zw==", - "requires": { - "function-bind": "^1.1.1" - } - }, - "has-bigints": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/has-bigints/-/has-bigints-1.0.2.tgz", - "integrity": "sha512-tSvCKtBr9lkF0Ex0aQiP9N+OpV4zi2r/Nee5VkRDbaqv35RLYMzbwQfFSZZH0kR+Rd6302UJZ2p/bJCEoR3VoQ==" - }, - "has-flag": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-3.0.0.tgz", - "integrity": "sha512-sKJf1+ceQBr4SMkvQnBDNDtf4TXpVhVGateu0t918bl30FnbE2m4vNLX+VWe/dpjlb+HugGYzW7uQXH98HPEYw==" - }, - "has-property-descriptors": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/has-property-descriptors/-/has-property-descriptors-1.0.0.tgz", - "integrity": "sha512-62DVLZGoiEBDHQyqG4w9xCuZ7eJEwNmJRWw2VY84Oedb7WFcA27fiEVe8oUQx9hAUJ4ekurquucTGwsyO1XGdQ==", - "requires": { - "get-intrinsic": "^1.1.1" - } - }, - "has-proto": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/has-proto/-/has-proto-1.0.1.tgz", - "integrity": "sha512-7qE+iP+O+bgF9clE5+UoBFzE65mlBiVj3tKCrlNQ0Ogwm0BjpT/gK4SlLYDMybDh5I3TCTKnPPa0oMG7JDYrhg==" - }, - "has-symbols": { - "version": "1.0.3", - "resolved": "https://registry.npmjs.org/has-symbols/-/has-symbols-1.0.3.tgz", - "integrity": "sha512-l3LCuF6MgDNwTDKkdYGEihYjt5pRPbEg46rtlmnSPlUbgmB8LOIrKJbYYFBSbnPaJexMKtiPO8hmeRjRz2Td+A==" - }, - "has-tostringtag": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/has-tostringtag/-/has-tostringtag-1.0.0.tgz", - "integrity": "sha512-kFjcSNhnlGV1kyoGk7OXKSawH5JOb/LzUc5w9B02hOTO0dfFRjbHQKvg1d6cf3HbeUmtU9VbbV3qzZ2Teh97WQ==", - "requires": { - "has-symbols": "^1.0.2" - } - }, - "hash-base": { - "version": "3.1.0", - "resolved": "https://registry.npmjs.org/hash-base/-/hash-base-3.1.0.tgz", - "integrity": "sha512-1nmYp/rhMDiE7AYkDw+lLwlAzz0AntGIe51F3RfFfEqyQ3feY2eI/NcwC6umIQVOASPMsWJLJScWKSSvzL9IVA==", - "requires": { - "inherits": "^2.0.4", - "readable-stream": "^3.6.0", - "safe-buffer": "^5.2.0" - }, - "dependencies": { - "safe-buffer": { - "version": "5.2.1", - "resolved": "https://registry.npmjs.org/safe-buffer/-/safe-buffer-5.2.1.tgz", - "integrity": "sha512-rp3So07KcdmmKbGvgaNxQSJr7bGVSVk5S9Eq1F+ppbRo70+YeaDxkw5Dd8NPN+GD6bjnYm2VuPuCXmpuYvmCXQ==" - } - } - }, - "hash.js": { - "version": "1.1.7", - "resolved": "https://registry.npmjs.org/hash.js/-/hash.js-1.1.7.tgz", - "integrity": "sha512-taOaskGt4z4SOANNseOviYDvjEJinIkRgmp7LbKP2YTTmVxWBl87s/uzK9r+44BclBSp2X7K1hqeNfz9JbBeXA==", - "requires": { - "inherits": "^2.0.3", - "minimalistic-assert": "^1.0.1" - } - }, - "he": { - "version": "1.2.0", - "resolved": "https://registry.npmjs.org/he/-/he-1.2.0.tgz", - "integrity": "sha512-F/1DnUGPopORZi0ni+CvrCgHQ5FyEAHRLSApuYWMmrbSwoN2Mn/7k+Gl38gJnR7yyDZk6WLXwiGod1JOWNDKGw==" - }, - "hmac-drbg": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/hmac-drbg/-/hmac-drbg-1.0.1.tgz", - "integrity": "sha512-Tti3gMqLdZfhOQY1Mzf/AanLiqh1WTiJgEj26ZuYQ9fbkLomzGchCws4FyrSd4VkpBfiNhaE1On+lOz894jvXg==", - "requires": { - "hash.js": "^1.0.3", - "minimalistic-assert": "^1.0.0", - "minimalistic-crypto-utils": "^1.0.1" - } - }, - "hoist-non-react-statics": { - "version": "3.3.2", - "resolved": "https://registry.npmjs.org/hoist-non-react-statics/-/hoist-non-react-statics-3.3.2.tgz", - "integrity": "sha512-/gGivxi8JPKWNm/W0jSmzcMPpfpPLc3dY/6GxhX2hQ9iGj3aDfklV4ET7NjKpSinLpJ5vafa9iiGIEZg10SfBw==", - "requires": { - "react-is": "^16.7.0" - }, - "dependencies": { - "react-is": { - "version": "16.13.1", - "resolved": "https://registry.npmjs.org/react-is/-/react-is-16.13.1.tgz", - "integrity": "sha512-24e6ynE2H+OKt4kqsOvNd8kBpV65zoxbA4BVsEOB3ARVWQki/DHzaUoC5KuON/BiccDaCCTZBuOcfZs70kR8bQ==" - } - } - }, - "hoopy": { - "version": "0.1.4", - "resolved": "https://registry.npmjs.org/hoopy/-/hoopy-0.1.4.tgz", - "integrity": "sha512-HRcs+2mr52W0K+x8RzcLzuPPmVIKMSv97RGHy0Ea9y/mpcaK+xTrjICA04KAHi4GRzxliNqNJEFYWHghy3rSfQ==" - }, - "hpack.js": { - "version": "2.1.6", - "resolved": "https://registry.npmjs.org/hpack.js/-/hpack.js-2.1.6.tgz", - "integrity": "sha512-zJxVehUdMGIKsRaNt7apO2Gqp0BdqW5yaiGHXXmbpvxgBYVZnAql+BJb4RO5ad2MgpbZKn5G6nMnegrH1FcNYQ==", - "requires": { - "inherits": "^2.0.1", - "obuf": "^1.0.0", - "readable-stream": "^2.0.1", - "wbuf": "^1.1.0" - }, - "dependencies": { - "readable-stream": { - "version": "2.3.7", - "resolved": "https://registry.npmjs.org/readable-stream/-/readable-stream-2.3.7.tgz", - "integrity": "sha512-Ebho8K4jIbHAxnuxi7o42OrZgF/ZTNcsZj6nRKyUmkhLFq8CHItp/fy6hQZuZmP/n3yZ9VBUbp4zz/mX8hmYPw==", - "requires": { - "core-util-is": "~1.0.0", - "inherits": "~2.0.3", - "isarray": "~1.0.0", - "process-nextick-args": "~2.0.0", - "safe-buffer": "~5.1.1", - "string_decoder": "~1.1.1", - "util-deprecate": "~1.0.1" - } - }, - "string_decoder": { - "version": "1.1.1", - "resolved": "https://registry.npmjs.org/string_decoder/-/string_decoder-1.1.1.tgz", - "integrity": "sha512-n/ShnvDi6FHbbVfviro+WojiFzv+s8MPMHBczVePfUpDJLwoLT0ht1l4YwBCbi8pJAveEEdnkHyPyTP/mzRfwg==", - "requires": { - "safe-buffer": "~5.1.0" - } - } - } - }, - "html-encoding-sniffer": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/html-encoding-sniffer/-/html-encoding-sniffer-2.0.1.tgz", - "integrity": "sha512-D5JbOMBIR/TVZkubHT+OyT2705QvogUW4IBn6nHd756OwieSF9aDYFj4dv6HHEVGYbHaLETa3WggZYWWMyy3ZQ==", - "requires": { - "whatwg-encoding": "^1.0.5" - } - }, - "html-entities": { - "version": "2.3.3", - "resolved": "https://registry.npmjs.org/html-entities/-/html-entities-2.3.3.tgz", - "integrity": "sha512-DV5Ln36z34NNTDgnz0EWGBLZENelNAtkiFA4kyNOG2tDI6Mz1uSWiq1wAKdyjnJwyDiDO7Fa2SO1CTxPXL8VxA==" - }, - "html-escaper": { - "version": "2.0.2", - "resolved": "https://registry.npmjs.org/html-escaper/-/html-escaper-2.0.2.tgz", - "integrity": "sha512-H2iMtd0I4Mt5eYiapRdIDjp+XzelXQ0tFE4JS7YFwFevXXMmOp9myNrUvCg0D6ws8iqkRPBfKHgbwig1SmlLfg==" - }, - "html-minifier-terser": { - "version": "6.1.0", - "resolved": "https://registry.npmjs.org/html-minifier-terser/-/html-minifier-terser-6.1.0.tgz", - "integrity": "sha512-YXxSlJBZTP7RS3tWnQw74ooKa6L9b9i9QYXY21eUEvhZ3u9XLfv6OnFsQq6RxkhHygsaUMvYsZRV5rU/OVNZxw==", - "requires": { - "camel-case": "^4.1.2", - "clean-css": "^5.2.2", - "commander": "^8.3.0", - "he": "^1.2.0", - "param-case": "^3.0.4", - "relateurl": "^0.2.7", - "terser": "^5.10.0" - } - }, - "html-webpack-plugin": { - "version": "5.5.0", - "resolved": "https://registry.npmjs.org/html-webpack-plugin/-/html-webpack-plugin-5.5.0.tgz", - "integrity": "sha512-sy88PC2cRTVxvETRgUHFrL4No3UxvcH8G1NepGhqaTT+GXN2kTamqasot0inS5hXeg1cMbFDt27zzo9p35lZVw==", - "requires": { - "@types/html-minifier-terser": "^6.0.0", - "html-minifier-terser": "^6.0.2", - "lodash": "^4.17.21", - "pretty-error": "^4.0.0", - "tapable": "^2.0.0" - } - }, - "htmlparser2": { - "version": "6.1.0", - "resolved": "https://registry.npmjs.org/htmlparser2/-/htmlparser2-6.1.0.tgz", - "integrity": "sha512-gyyPk6rgonLFEDGoeRgQNaEUvdJ4ktTmmUh/h2t7s+M8oPpIPxgNACWa+6ESR57kXstwqPiCut0V8NRpcwgU7A==", - "requires": { - "domelementtype": "^2.0.1", - "domhandler": "^4.0.0", - "domutils": "^2.5.2", - "entities": "^2.0.0" - } - }, - "http-cache-semantics": { - "version": "4.1.1", - "resolved": "https://registry.npmjs.org/http-cache-semantics/-/http-cache-semantics-4.1.1.tgz", - "integrity": "sha512-er295DKPVsV82j5kw1Gjt+ADA/XYHsajl82cGNQG2eyoPkvgUhX+nDIyelzhIWbbsXP39EHcI6l5tYs2FYqYXQ==" - }, - "http-deceiver": { - "version": "1.2.7", - "resolved": "https://registry.npmjs.org/http-deceiver/-/http-deceiver-1.2.7.tgz", - "integrity": "sha512-LmpOGxTfbpgtGVxJrj5k7asXHCgNZp5nLfp+hWc8QQRqtb7fUy6kRY3BO1h9ddF6yIPYUARgxGOwB42DnxIaNw==" - }, - "http-errors": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/http-errors/-/http-errors-2.0.0.tgz", - "integrity": "sha512-FtwrG/euBzaEjYeRqOgly7G0qviiXoJWnvEH2Z1plBdXgbyjv34pHTSb9zoeHMyDy33+DWy5Wt9Wo+TURtOYSQ==", - "requires": { - "depd": "2.0.0", - "inherits": "2.0.4", - "setprototypeof": "1.2.0", - "statuses": "2.0.1", - "toidentifier": "1.0.1" - } - }, - "http-https": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/http-https/-/http-https-1.0.0.tgz", - "integrity": "sha512-o0PWwVCSp3O0wS6FvNr6xfBCHgt0m1tvPLFOCc2iFDKTRAXhB7m8klDf7ErowFH8POa6dVdGatKU5I1YYwzUyg==" - }, - "http-parser-js": { - "version": "0.5.8", - "resolved": "https://registry.npmjs.org/http-parser-js/-/http-parser-js-0.5.8.tgz", - "integrity": "sha512-SGeBX54F94Wgu5RH3X5jsDtf4eHyRogWX1XGT3b4HuW3tQPM4AaBzoUji/4AAJNXCEOWZ5O0DgZmJw1947gD5Q==" - }, - "http-proxy": { - "version": "1.18.1", - "resolved": "https://registry.npmjs.org/http-proxy/-/http-proxy-1.18.1.tgz", - "integrity": "sha512-7mz/721AbnJwIVbnaSv1Cz3Am0ZLT/UBwkC92VlxhXv/k/BBQfM2fXElQNC27BVGr0uwUpplYPQM9LnaBMR5NQ==", - "requires": { - "eventemitter3": "^4.0.0", - "follow-redirects": "^1.0.0", - "requires-port": "^1.0.0" - } - }, - "http-proxy-agent": { - "version": "4.0.1", - "resolved": "https://registry.npmjs.org/http-proxy-agent/-/http-proxy-agent-4.0.1.tgz", - "integrity": "sha512-k0zdNgqWTGA6aeIRVpvfVob4fL52dTfaehylg0Y4UvSySvOq/Y+BOyPrgpUrA7HylqvU8vIZGsRuXmspskV0Tg==", - "requires": { - "@tootallnate/once": "1", - "agent-base": "6", - "debug": "4" - } - }, - "http-proxy-middleware": { - "version": "2.0.6", - "resolved": "https://registry.npmjs.org/http-proxy-middleware/-/http-proxy-middleware-2.0.6.tgz", - "integrity": "sha512-ya/UeJ6HVBYxrgYotAZo1KvPWlgB48kUJLDePFeneHsVujFaW5WNj2NgWCAE//B1Dl02BIfYlpNgBy8Kf8Rjmw==", - "requires": { - "@types/http-proxy": "^1.17.8", - "http-proxy": "^1.18.1", - "is-glob": "^4.0.1", - "is-plain-obj": "^3.0.0", - "micromatch": "^4.0.2" - } - }, - "http-signature": { - "version": "1.2.0", - "resolved": "https://registry.npmjs.org/http-signature/-/http-signature-1.2.0.tgz", - "integrity": "sha512-CAbnr6Rz4CYQkLYUtSNXxQPUH2gK8f3iWexVlsnMeD+GjlsQ0Xsy1cOX+mN3dtxYomRy21CiOzU8Uhw6OwncEQ==", - "requires": { - "assert-plus": "^1.0.0", - "jsprim": "^1.2.2", - "sshpk": "^1.7.0" - } - }, - "http2-wrapper": { - "version": "2.2.0", - "resolved": "https://registry.npmjs.org/http2-wrapper/-/http2-wrapper-2.2.0.tgz", - "integrity": "sha512-kZB0wxMo0sh1PehyjJUWRFEd99KC5TLjZ2cULC4f9iqJBAmKQQXEICjxl5iPJRwP40dpeHFqqhm7tYCvODpqpQ==", - "requires": { - "quick-lru": "^5.1.1", - "resolve-alpn": "^1.2.0" - } - }, - "https-proxy-agent": { - "version": "5.0.1", - "resolved": "https://registry.npmjs.org/https-proxy-agent/-/https-proxy-agent-5.0.1.tgz", - "integrity": "sha512-dFcAjpTQFgoLMzC2VwU+C/CbS7uRL0lWmxDITmqm7C+7F0Odmj6s9l6alZc6AELXhrnggM2CeWSXHGOdX2YtwA==", - "requires": { - "agent-base": "6", - "debug": "4" - } - }, - "human-signals": { - "version": "2.1.0", - "resolved": "https://registry.npmjs.org/human-signals/-/human-signals-2.1.0.tgz", - "integrity": "sha512-B4FFZ6q/T2jhhksgkbEW3HBvWIfDW85snkQgawt07S7J5QXTk6BkNV+0yAeZrM5QpMAdYlocGoljn0sJ/WQkFw==" - }, - "iconv-lite": { - "version": "0.6.3", - "resolved": "https://registry.npmjs.org/iconv-lite/-/iconv-lite-0.6.3.tgz", - "integrity": "sha512-4fCk79wshMdzMp2rH06qWrJE4iolqLhCUH+OiuIgU++RB0+94NlDL81atO7GX55uUKueo0txHNtvEyI6D7WdMw==", - "requires": { - "safer-buffer": ">= 2.1.2 < 3.0.0" - } - }, - "icss-utils": { - "version": "5.1.0", - "resolved": "https://registry.npmjs.org/icss-utils/-/icss-utils-5.1.0.tgz", - "integrity": "sha512-soFhflCVWLfRNOPU3iv5Z9VUdT44xFRbzjLsEzSr5AQmgqPMTHdU3PMT1Cf1ssx8fLNJDA1juftYl+PUcv3MqA==", - "requires": {} - }, - "idb": { - "version": "6.1.5", - "resolved": "https://registry.npmjs.org/idb/-/idb-6.1.5.tgz", - "integrity": "sha512-IJtugpKkiVXQn5Y+LteyBCNk1N8xpGV3wWZk9EVtZWH8DYkjBn0bX1XnGP9RkyZF0sAcywa6unHqSWKe7q4LGw==" - }, - "identity-obj-proxy": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/identity-obj-proxy/-/identity-obj-proxy-3.0.0.tgz", - "integrity": "sha512-00n6YnVHKrinT9t0d9+5yZC6UBNJANpYEQvL2LlX6Ab9lnmxzIRcEmTPuyGScvl1+jKuCICX1Z0Ab1pPKKdikA==", - "requires": { - "harmony-reflect": "^1.4.6" - } - }, - "idna-uts46-hx": { - "version": "2.3.1", - "resolved": "https://registry.npmjs.org/idna-uts46-hx/-/idna-uts46-hx-2.3.1.tgz", - "integrity": "sha512-PWoF9Keq6laYdIRwwCdhTPl60xRqAloYNMQLiyUnG42VjT53oW07BXIRM+NK7eQjzXjAk2gUvX9caRxlnF9TAA==", - "requires": { - "punycode": "2.1.0" - }, - "dependencies": { - "punycode": { - "version": "2.1.0", - "resolved": "https://registry.npmjs.org/punycode/-/punycode-2.1.0.tgz", - "integrity": "sha512-Yxz2kRwT90aPiWEMHVYnEf4+rhwF1tBmmZ4KepCP+Wkium9JxtWnUm1nqGwpiAHr/tnTSeHqr3wb++jgSkXjhA==" - } - } - }, - "ieee754": { - "version": "1.2.1", - "resolved": "https://registry.npmjs.org/ieee754/-/ieee754-1.2.1.tgz", - "integrity": "sha512-dcyqhDvX1C46lXZcVqCpK+FtMRQVdIMN6/Df5js2zouUsqG7I6sFxitIC+7KYK29KdXOLHdu9zL4sFnoVQnqaA==" - }, - "ignore": { - "version": "5.2.0", - "resolved": "https://registry.npmjs.org/ignore/-/ignore-5.2.0.tgz", - "integrity": "sha512-CmxgYGiEPCLhfLnpPp1MoRmifwEIOgjcHXxOBjv7mY96c+eWScsOP9c112ZyLdWHi0FxHjI+4uVhKYp/gcdRmQ==" - }, - "image-q": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/image-q/-/image-q-4.0.0.tgz", - "integrity": "sha512-PfJGVgIfKQJuq3s0tTDOKtztksibuUEbJQIYT3by6wctQo+Rdlh7ef4evJ5NCdxY4CfMbvFkocEwbl4BF8RlJw==", - "requires": { - "@types/node": "16.9.1" - }, - "dependencies": { - "@types/node": { - "version": "16.9.1", - "resolved": "https://registry.npmjs.org/@types/node/-/node-16.9.1.tgz", - "integrity": "sha512-QpLcX9ZSsq3YYUUnD3nFDY8H7wctAhQj/TFKL8Ya8v5fMm3CFXxo8zStsLAl780ltoYoo1WvKUVGBQK+1ifr7g==" - } - } - }, - "immer": { - "version": "9.0.21", - "resolved": "https://registry.npmjs.org/immer/-/immer-9.0.21.tgz", - "integrity": "sha512-bc4NBHqOqSfRW7POMkHd51LvClaeMXpm8dx0e8oE2GORbq5aRK7Bxl4FyzVLdGtLmvLKL7BTDBG5ACQm4HWjTA==" - }, - "immutable": { - "version": "4.3.0", - "resolved": "https://registry.npmjs.org/immutable/-/immutable-4.3.0.tgz", - "integrity": "sha512-0AOCmOip+xgJwEVTQj1EfiDDOkPmuyllDuTuEX+DDXUgapLAsBIfkg3sxCYyCEA8mQqZrrxPUGjcOQ2JS3WLkg==", - "peer": true - }, - "import-fresh": { - "version": "3.3.0", - "resolved": "https://registry.npmjs.org/import-fresh/-/import-fresh-3.3.0.tgz", - "integrity": "sha512-veYYhQa+D1QBKznvhUHxb8faxlrwUnxseDAbAp457E0wLNio2bOSKnjYDhMj+YiAq61xrMGhQk9iXVk5FzgQMw==", - "requires": { - "parent-module": "^1.0.0", - "resolve-from": "^4.0.0" - }, - "dependencies": { - "resolve-from": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/resolve-from/-/resolve-from-4.0.0.tgz", - "integrity": "sha512-pb/MYmXstAkysRFx8piNI1tGFNQIFA3vkE3Gq4EuA1dF6gHp/+vgZqsCGJapvy8N3Q+4o7FwvquPJcnZ7RYy4g==" - } - } - }, - "import-local": { - "version": "3.1.0", - "resolved": "https://registry.npmjs.org/import-local/-/import-local-3.1.0.tgz", - "integrity": "sha512-ASB07uLtnDs1o6EHjKpX34BKYDSqnFerfTOJL2HvMqF70LnxpjkzDB8J44oT9pu4AMPkQwf8jl6szgvNd2tRIg==", - "requires": { - "pkg-dir": "^4.2.0", - "resolve-cwd": "^3.0.0" - } - }, - "imurmurhash": { - "version": "0.1.4", - "resolved": "https://registry.npmjs.org/imurmurhash/-/imurmurhash-0.1.4.tgz", - "integrity": "sha512-JmXMZ6wuvDmLiHEml9ykzqO6lwFbof0GG4IkcGaENdCRDDmMVnny7s5HsIgHCbaq0w2MyPhDqkhTUgS2LU2PHA==" - }, - "indent-string": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/indent-string/-/indent-string-4.0.0.tgz", - "integrity": "sha512-EdDDZu4A2OyIK7Lr/2zG+w5jmbuk1DVBnEwREQvBzspBJkCEbRa8GxU1lghYcaGJCnRWibjDXlq779X1/y5xwg==" - }, - "inflight": { - "version": "1.0.6", - "resolved": "https://registry.npmjs.org/inflight/-/inflight-1.0.6.tgz", - "integrity": "sha512-k92I/b08q4wvFscXCLvqfsHCrjrF7yiXsQuIVvVE7N82W3+aqpzuUdBbfhWcy/FZR3/4IgflMgKLOsvPDrGCJA==", - "requires": { - "once": "^1.3.0", - "wrappy": "1" - } - }, - "inherits": { - "version": "2.0.4", - "resolved": "https://registry.npmjs.org/inherits/-/inherits-2.0.4.tgz", - "integrity": "sha512-k/vGaX4/Yla3WzyMCvTQOXYeIHvqOKtnqBduzTHpzpQZzAskKMhZ2K+EnBiSM9zGSoIFeMpXKxa4dYeZIQqewQ==" - }, - "ini": { - "version": "1.3.8", - "resolved": "https://registry.npmjs.org/ini/-/ini-1.3.8.tgz", - "integrity": "sha512-JV/yugV2uzW5iMRSiZAyDtQd+nxtUnjeLt0acNdw98kKLrvuRVyB80tsREOE7yvGVgalhZ6RNXCmEHkUKBKxew==" - }, - "internal-slot": { - "version": "1.0.5", - "resolved": "https://registry.npmjs.org/internal-slot/-/internal-slot-1.0.5.tgz", - "integrity": "sha512-Y+R5hJrzs52QCG2laLn4udYVnxsfny9CpOhNhUvk/SSSVyF6T27FzRbF0sroPidSu3X8oEAkOn2K804mjpt6UQ==", - "requires": { - "get-intrinsic": "^1.2.0", - "has": "^1.0.3", - "side-channel": "^1.0.4" - } - }, - "io-ts": { - "version": "1.10.4", - "resolved": "https://registry.npmjs.org/io-ts/-/io-ts-1.10.4.tgz", - "integrity": "sha512-b23PteSnYXSONJ6JQXRAlvJhuw8KOtkqa87W4wDtvMrud/DTJd5X+NpOOI+O/zZwVq6v0VLAaJ+1EDViKEuN9g==", - "peer": true, - "requires": { - "fp-ts": "^1.0.0" - } - }, - "ipaddr.js": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/ipaddr.js/-/ipaddr.js-2.0.1.tgz", - "integrity": "sha512-1qTgH9NG+IIJ4yfKs2e6Pp1bZg8wbDbKHT21HrLIeYBTRLgMYKnMTPAuI3Lcs61nfx5h1xlXnbJtH1kX5/d/ng==" - }, - "is-arguments": { - "version": "1.1.1", - "resolved": "https://registry.npmjs.org/is-arguments/-/is-arguments-1.1.1.tgz", - "integrity": "sha512-8Q7EARjzEnKpt/PCD7e1cgUS0a6X8u5tdSiMqXhojOdoV9TsMsiO+9VLC5vAmO8N7/GmXn7yjR8qnA6bVAEzfA==", - "requires": { - "call-bind": "^1.0.2", - "has-tostringtag": "^1.0.0" - } - }, - "is-array-buffer": { - "version": "3.0.2", - "resolved": "https://registry.npmjs.org/is-array-buffer/-/is-array-buffer-3.0.2.tgz", - "integrity": "sha512-y+FyyR/w8vfIRq4eQcM1EYgSTnmHXPqaF+IgzgraytCFq5Xh8lllDVmAZolPJiZttZLeFSINPYMaEJ7/vWUa1w==", - "requires": { - "call-bind": "^1.0.2", - "get-intrinsic": "^1.2.0", - "is-typed-array": "^1.1.10" - } - }, - "is-arrayish": { - "version": "0.2.1", - "resolved": "https://registry.npmjs.org/is-arrayish/-/is-arrayish-0.2.1.tgz", - "integrity": "sha512-zz06S8t0ozoDXMG+ube26zeCTNXcKIPJZJi8hBrF4idCLms4CG9QtK7qBl1boi5ODzFpjswb5JPmHCbMpjaYzg==" - }, - "is-bigint": { - "version": "1.0.4", - "resolved": "https://registry.npmjs.org/is-bigint/-/is-bigint-1.0.4.tgz", - "integrity": "sha512-zB9CruMamjym81i2JZ3UMn54PKGsQzsJeo6xvN3HJJ4CAsQNB6iRutp2To77OfCNuoxspsIhzaPoO1zyCEhFOg==", - "requires": { - "has-bigints": "^1.0.1" - } - }, - "is-binary-path": { - "version": "2.1.0", - "resolved": "https://registry.npmjs.org/is-binary-path/-/is-binary-path-2.1.0.tgz", - "integrity": "sha512-ZMERYes6pDydyuGidse7OsHxtbI7WVeUEozgR/g7rd0xUimYNlvZRE/K2MgZTjWy725IfelLeVcEM97mmtRGXw==", - "requires": { - "binary-extensions": "^2.0.0" - } - }, - "is-boolean-object": { - "version": "1.1.2", - "resolved": "https://registry.npmjs.org/is-boolean-object/-/is-boolean-object-1.1.2.tgz", - "integrity": "sha512-gDYaKHJmnj4aWxyj6YHyXVpdQawtVLHU5cb+eztPGczf6cjuTdwve5ZIEfgXqH4e57An1D1AKf8CZ3kYrQRqYA==", - "requires": { - "call-bind": "^1.0.2", - "has-tostringtag": "^1.0.0" - } - }, - "is-buffer": { - "version": "2.0.5", - "resolved": "https://registry.npmjs.org/is-buffer/-/is-buffer-2.0.5.tgz", - "integrity": "sha512-i2R6zNFDwgEHJyQUtJEk0XFi1i0dPFn/oqjK3/vPCcDeJvW5NQ83V8QbicfF1SupOaB0h8ntgBC2YiE7dfyctQ==", - "peer": true - }, - "is-callable": { - "version": "1.2.7", - "resolved": "https://registry.npmjs.org/is-callable/-/is-callable-1.2.7.tgz", - "integrity": "sha512-1BC0BVFhS/p0qtw6enp8e+8OD0UrK0oFLztSjNzhcKA3WDuJxxAPXzPuPtKkjEY9UUoEWlX/8fgKeu2S8i9JTA==" - }, - "is-core-module": { - "version": "2.9.0", - "resolved": "https://registry.npmjs.org/is-core-module/-/is-core-module-2.9.0.tgz", - "integrity": "sha512-+5FPy5PnwmO3lvfMb0AsoPaBG+5KHUI0wYFXOtYPnVVVspTFUuMZNfNaNVRt3FZadstu2c8x23vykRW/NBoU6A==", - "requires": { - "has": "^1.0.3" - } - }, - "is-date-object": { - "version": "1.0.5", - "resolved": "https://registry.npmjs.org/is-date-object/-/is-date-object-1.0.5.tgz", - "integrity": "sha512-9YQaSxsAiSwcvS33MBk3wTCVnWK+HhF8VZR2jRxehM16QcVOdHqPn4VPHmRK4lSr38n9JriurInLcP90xsYNfQ==", - "requires": { - "has-tostringtag": "^1.0.0" - } - }, - "is-docker": { - "version": "2.2.1", - "resolved": "https://registry.npmjs.org/is-docker/-/is-docker-2.2.1.tgz", - "integrity": "sha512-F+i2BKsFrH66iaUFc0woD8sLy8getkwTwtOBjvs56Cx4CgJDeKQeqfz8wAYiSb8JOprWhHH5p77PbmYCvvUuXQ==" - }, - "is-extglob": { - "version": "2.1.1", - "resolved": "https://registry.npmjs.org/is-extglob/-/is-extglob-2.1.1.tgz", - "integrity": "sha512-SbKbANkN603Vi4jEZv49LeVJMn4yGwsbzZworEoyEiutsN3nJYdbO36zfhGJ6QEDpOZIFkDtnq5JRxmvl3jsoQ==" - }, - "is-fullwidth-code-point": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/is-fullwidth-code-point/-/is-fullwidth-code-point-3.0.0.tgz", - "integrity": "sha512-zymm5+u+sCsSWyD9qNaejV3DFvhCKclKdizYaJUuHA83RLjb7nSuGnddCHGv0hk+KY7BMAlsWeK4Ueg6EV6XQg==" - }, - "is-function": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/is-function/-/is-function-1.0.2.tgz", - "integrity": "sha512-lw7DUp0aWXYg+CBCN+JKkcE0Q2RayZnSvnZBlwgxHBQhqt5pZNVy4Ri7H9GmmXkdu7LUthszM+Tor1u/2iBcpQ==" - }, - "is-generator-fn": { - "version": "2.1.0", - "resolved": "https://registry.npmjs.org/is-generator-fn/-/is-generator-fn-2.1.0.tgz", - "integrity": "sha512-cTIB4yPYL/Grw0EaSzASzg6bBy9gqCofvWN8okThAYIxKJZC+udlRAmGbM0XLeniEJSs8uEgHPGuHSe1XsOLSQ==" - }, - "is-generator-function": { - "version": "1.0.10", - "resolved": "https://registry.npmjs.org/is-generator-function/-/is-generator-function-1.0.10.tgz", - "integrity": "sha512-jsEjy9l3yiXEQ+PsXdmBwEPcOxaXWLspKdplFUVI9vq1iZgIekeC0L167qeu86czQaxed3q/Uzuw0swL0irL8A==", - "requires": { - "has-tostringtag": "^1.0.0" - } - }, - "is-glob": { - "version": "4.0.3", - "resolved": "https://registry.npmjs.org/is-glob/-/is-glob-4.0.3.tgz", - "integrity": "sha512-xelSayHH36ZgE7ZWhli7pW34hNbNl8Ojv5KVmkJD4hBdD3th8Tfk9vYasLM+mXWOZhFkgZfxhLSnrwRr4elSSg==", - "requires": { - "is-extglob": "^2.1.1" - } - }, - "is-hex-prefixed": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/is-hex-prefixed/-/is-hex-prefixed-1.0.0.tgz", - "integrity": "sha512-WvtOiug1VFrE9v1Cydwm+FnXd3+w9GaeVUss5W4v/SLy3UW00vP+6iNF2SdnfiBoLy4bTqVdkftNGTUeOFVsbA==" - }, - "is-module": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/is-module/-/is-module-1.0.0.tgz", - "integrity": "sha512-51ypPSPCoTEIN9dy5Oy+h4pShgJmPCygKfyRCISBI+JoWT/2oJvK8QPxmwv7b/p239jXrm9M1mlQbyKJ5A152g==" - }, - "is-negative-zero": { - "version": "2.0.2", - "resolved": "https://registry.npmjs.org/is-negative-zero/-/is-negative-zero-2.0.2.tgz", - "integrity": "sha512-dqJvarLawXsFbNDeJW7zAz8ItJ9cd28YufuuFzh0G8pNHjJMnY08Dv7sYX2uF5UpQOwieAeOExEYAWWfu7ZZUA==" - }, - "is-number": { - "version": "7.0.0", - "resolved": "https://registry.npmjs.org/is-number/-/is-number-7.0.0.tgz", - "integrity": "sha512-41Cifkg6e8TylSpdtTpeLVMqvSBEVzTttHvERD741+pnZ8ANv0004MRL43QKPDlK9cGvNp6NZWZUBlbGXYxxng==" - }, - "is-number-object": { - "version": "1.0.7", - "resolved": "https://registry.npmjs.org/is-number-object/-/is-number-object-1.0.7.tgz", - "integrity": "sha512-k1U0IRzLMo7ZlYIfzRu23Oh6MiIFasgpb9X76eqfFZAqwH44UI4KTBvBYIZ1dSL9ZzChTB9ShHfLkR4pdW5krQ==", - "requires": { - "has-tostringtag": "^1.0.0" - } - }, - "is-obj": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/is-obj/-/is-obj-1.0.1.tgz", - "integrity": "sha512-l4RyHgRqGN4Y3+9JHVrNqO+tN0rV5My76uW5/nuO4K1b6vw5G8d/cmFjP9tRfEsdhZNt0IFdZuK/c2Vr4Nb+Qg==" - }, - "is-plain-obj": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/is-plain-obj/-/is-plain-obj-3.0.0.tgz", - "integrity": "sha512-gwsOE28k+23GP1B6vFl1oVh/WOzmawBrKwo5Ev6wMKzPkaXaCDIQKzLnvsA42DRlbVTWorkgTKIviAKCWkfUwA==" - }, - "is-potential-custom-element-name": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/is-potential-custom-element-name/-/is-potential-custom-element-name-1.0.1.tgz", - "integrity": "sha512-bCYeRA2rVibKZd+s2625gGnGF/t7DSqDs4dP7CrLA1m7jKWz6pps0LpYLJN8Q64HtmPKJ1hrN3nzPNKFEKOUiQ==" - }, - "is-regex": { - "version": "1.1.4", - "resolved": "https://registry.npmjs.org/is-regex/-/is-regex-1.1.4.tgz", - "integrity": "sha512-kvRdxDsxZjhzUX07ZnLydzS1TU/TJlTUHHY4YLL87e37oUA49DfkLqgy+VjFocowy29cKvcSiu+kIv728jTTVg==", - "requires": { - "call-bind": "^1.0.2", - "has-tostringtag": "^1.0.0" - } - }, - "is-regexp": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/is-regexp/-/is-regexp-1.0.0.tgz", - "integrity": "sha512-7zjFAPO4/gwyQAAgRRmqeEeyIICSdmCqa3tsVHMdBzaXXRiqopZL4Cyghg/XulGWrtABTpbnYYzzIRffLkP4oA==" - }, - "is-root": { - "version": "2.1.0", - "resolved": "https://registry.npmjs.org/is-root/-/is-root-2.1.0.tgz", - "integrity": "sha512-AGOriNp96vNBd3HtU+RzFEc75FfR5ymiYv8E553I71SCeXBiMsVDUtdio1OEFvrPyLIQ9tVR5RxXIFe5PUFjMg==" - }, - "is-shared-array-buffer": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/is-shared-array-buffer/-/is-shared-array-buffer-1.0.2.tgz", - "integrity": "sha512-sqN2UDu1/0y6uvXyStCOzyhAjCSlHceFoMKJW8W9EU9cvic/QdsZ0kEU93HEy3IUEFZIiH/3w+AH/UQbPHNdhA==", - "requires": { - "call-bind": "^1.0.2" - } - }, - "is-stream": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/is-stream/-/is-stream-2.0.1.tgz", - "integrity": "sha512-hFoiJiTl63nn+kstHGBtewWSKnQLpyb155KHheA1l39uvtO9nWIop1p3udqPcUd/xbF1VLMO4n7OI6p7RbngDg==" - }, - "is-string": { - "version": "1.0.7", - "resolved": "https://registry.npmjs.org/is-string/-/is-string-1.0.7.tgz", - "integrity": "sha512-tE2UXzivje6ofPW7l23cjDOMa09gb7xlAqG6jG5ej6uPV32TlWP3NKPigtaGeHNu9fohccRYvIiZMfOOnOYUtg==", - "requires": { - "has-tostringtag": "^1.0.0" - } - }, - "is-symbol": { - "version": "1.0.4", - "resolved": "https://registry.npmjs.org/is-symbol/-/is-symbol-1.0.4.tgz", - "integrity": "sha512-C/CPBqKWnvdcxqIARxyOh4v1UUEOCHpgDa0WYgpKDFMszcrPcffg5uhwSgPCLD2WWxmq6isisz87tzT01tuGhg==", - "requires": { - "has-symbols": "^1.0.2" - } - }, - "is-typed-array": { - "version": "1.1.10", - "resolved": "https://registry.npmjs.org/is-typed-array/-/is-typed-array-1.1.10.tgz", - "integrity": "sha512-PJqgEHiWZvMpaFZ3uTc8kHPM4+4ADTlDniuQL7cU/UDA0Ql7F70yGfHph3cLNe+c9toaigv+DFzTJKhc2CtO6A==", - "requires": { - "available-typed-arrays": "^1.0.5", - "call-bind": "^1.0.2", - "for-each": "^0.3.3", - "gopd": "^1.0.1", - "has-tostringtag": "^1.0.0" - } - }, - "is-typedarray": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/is-typedarray/-/is-typedarray-1.0.0.tgz", - "integrity": "sha512-cyA56iCMHAh5CdzjJIa4aohJyeO1YbwLi3Jc35MmRU6poroFjIGZzUzupGiRPOjgHg9TLu43xbpwXk523fMxKA==" - }, - "is-unicode-supported": { - "version": "0.1.0", - "resolved": "https://registry.npmjs.org/is-unicode-supported/-/is-unicode-supported-0.1.0.tgz", - "integrity": "sha512-knxG2q4UC3u8stRGyAVJCOdxFmv5DZiRcdlIaAQXAbSfJya+OhopNotLQrstBhququ4ZpuKbDc/8S6mgXgPFPw==", - "peer": true - }, - "is-weakref": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/is-weakref/-/is-weakref-1.0.2.tgz", - "integrity": "sha512-qctsuLZmIQ0+vSSMfoVvyFe2+GSEvnmZ2ezTup1SBse9+twCCeial6EEi3Nc2KFcf6+qz2FBPnjXsk8xhKSaPQ==", - "requires": { - "call-bind": "^1.0.2" - } - }, - "is-wsl": { - "version": "2.2.0", - "resolved": "https://registry.npmjs.org/is-wsl/-/is-wsl-2.2.0.tgz", - "integrity": "sha512-fKzAra0rGJUUBwGBgNkHZuToZcn+TtXHpeCgmkMJMMYx1sQDYaCSyjJBSCa2nH1DGm7s3n1oBnohoVTBaN7Lww==", - "requires": { - "is-docker": "^2.0.0" - } - }, - "isarray": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/isarray/-/isarray-1.0.0.tgz", - "integrity": "sha512-VLghIWNM6ELQzo7zwmcg0NmTVyWKYjvIeM83yjp0wRDTmUnrM678fQbcKBo6n2CJEF0szoG//ytg+TKla89ALQ==" - }, - "isexe": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/isexe/-/isexe-2.0.0.tgz", - "integrity": "sha512-RHxMLp9lnKHGHRng9QFhRCMbYAcVpn69smSGcq3f36xjgVVWThj4qqLbTLlq7Ssj8B+fIQ1EuCEGI2lKsyQeIw==" - }, - "isnumber": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/isnumber/-/isnumber-1.0.0.tgz", - "integrity": "sha512-JLiSz/zsZcGFXPrB4I/AGBvtStkt+8QmksyZBZnVXnnK9XdTEyz0tX8CRYljtwYDuIuZzih6DpHQdi+3Q6zHPw==" - }, - "isomorphic-fetch": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/isomorphic-fetch/-/isomorphic-fetch-3.0.0.tgz", - "integrity": "sha512-qvUtwJ3j6qwsF3jLxkZ72qCgjMysPzDfeV240JHiGZsANBYd+EEuu35v7dfrJ9Up0Ak07D7GGSkGhCHTqg/5wA==", - "requires": { - "node-fetch": "^2.6.1", - "whatwg-fetch": "^3.4.1" - } - }, - "isstream": { - "version": "0.1.2", - "resolved": "https://registry.npmjs.org/isstream/-/isstream-0.1.2.tgz", - "integrity": "sha512-Yljz7ffyPbrLpLngrMtZ7NduUgVvi6wG9RJ9IUcyCd59YQ911PBJphODUcbOVbqYfxe1wuYf/LJ8PauMRwsM/g==" - }, - "istanbul-lib-coverage": { - "version": "3.2.0", - "resolved": "https://registry.npmjs.org/istanbul-lib-coverage/-/istanbul-lib-coverage-3.2.0.tgz", - "integrity": "sha512-eOeJ5BHCmHYvQK7xt9GkdHuzuCGS1Y6g9Gvnx3Ym33fz/HpLRYxiS0wHNr+m/MBC8B647Xt608vCDEvhl9c6Mw==" - }, - "istanbul-lib-instrument": { - "version": "5.2.0", - "resolved": "https://registry.npmjs.org/istanbul-lib-instrument/-/istanbul-lib-instrument-5.2.0.tgz", - "integrity": "sha512-6Lthe1hqXHBNsqvgDzGO6l03XNeu3CrG4RqQ1KM9+l5+jNGpEJfIELx1NS3SEHmJQA8np/u+E4EPRKRiu6m19A==", - "requires": { - "@babel/core": "^7.12.3", - "@babel/parser": "^7.14.7", - "@istanbuljs/schema": "^0.1.2", - "istanbul-lib-coverage": "^3.2.0", - "semver": "^6.3.0" - }, - "dependencies": { - "semver": { - "version": "6.3.0", - "resolved": "https://registry.npmjs.org/semver/-/semver-6.3.0.tgz", - "integrity": "sha512-b39TBaTSfV6yBrapU89p5fKekE2m/NwnDocOVruQFS1/veMgdzuPcnOM34M6CwxW8jH/lxEa5rBoDeUwu5HHTw==" - } - } - }, - "istanbul-lib-report": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/istanbul-lib-report/-/istanbul-lib-report-3.0.0.tgz", - "integrity": "sha512-wcdi+uAKzfiGT2abPpKZ0hSU1rGQjUQnLvtY5MpQ7QCTahD3VODhcu4wcfY1YtkGaDD5yuydOLINXsfbus9ROw==", - "requires": { - "istanbul-lib-coverage": "^3.0.0", - "make-dir": "^3.0.0", - "supports-color": "^7.1.0" - }, - "dependencies": { - "has-flag": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz", - "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==" - }, - "supports-color": { - "version": "7.2.0", - "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", - "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", - "requires": { - "has-flag": "^4.0.0" - } - } - } - }, - "istanbul-lib-source-maps": { - "version": "4.0.1", - "resolved": "https://registry.npmjs.org/istanbul-lib-source-maps/-/istanbul-lib-source-maps-4.0.1.tgz", - "integrity": "sha512-n3s8EwkdFIJCG3BPKBYvskgXGoy88ARzvegkitk60NxRdwltLOTaH7CUiMRXvwYorl0Q712iEjcWB+fK/MrWVw==", - "requires": { - "debug": "^4.1.1", - "istanbul-lib-coverage": "^3.0.0", - "source-map": "^0.6.1" - }, - "dependencies": { - "source-map": { - "version": "0.6.1", - "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz", - "integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==" - } - } - }, - "istanbul-reports": { - "version": "3.1.4", - "resolved": "https://registry.npmjs.org/istanbul-reports/-/istanbul-reports-3.1.4.tgz", - "integrity": "sha512-r1/DshN4KSE7xWEknZLLLLDn5CJybV3nw01VTkp6D5jzLuELlcbudfj/eSQFvrKsJuTVCGnePO7ho82Nw9zzfw==", - "requires": { - "html-escaper": "^2.0.0", - "istanbul-lib-report": "^3.0.0" - } - }, - "jake": { - "version": "10.8.5", - "resolved": "https://registry.npmjs.org/jake/-/jake-10.8.5.tgz", - "integrity": "sha512-sVpxYeuAhWt0OTWITwT98oyV0GsXyMlXCF+3L1SuafBVUIr/uILGRB+NqwkzhgXKvoJpDIpQvqkUALgdmQsQxw==", - "requires": { - "async": "^3.2.3", - "chalk": "^4.0.2", - "filelist": "^1.0.1", - "minimatch": "^3.0.4" - }, - "dependencies": { - "ansi-styles": { - "version": "4.3.0", - "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", - "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", - "requires": { - "color-convert": "^2.0.1" - } - }, - "chalk": { - "version": "4.1.2", - "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz", - "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==", - "requires": { - "ansi-styles": "^4.1.0", - "supports-color": "^7.1.0" - } - }, - "color-convert": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz", - "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==", - "requires": { - "color-name": "~1.1.4" - } - }, - "color-name": { - "version": "1.1.4", - "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz", - "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==" - }, - "has-flag": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz", - "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==" - }, - "supports-color": { - "version": "7.2.0", - "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", - "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", - "requires": { - "has-flag": "^4.0.0" - } - } - } - }, - "jest": { - "version": "27.5.1", - "resolved": "https://registry.npmjs.org/jest/-/jest-27.5.1.tgz", - "integrity": "sha512-Yn0mADZB89zTtjkPJEXwrac3LHudkQMR+Paqa8uxJHCBr9agxztUifWCyiYrjhMPBoUVBjyny0I7XH6ozDr7QQ==", - "requires": { - "@jest/core": "^27.5.1", - "import-local": "^3.0.2", - "jest-cli": "^27.5.1" - } - }, - "jest-changed-files": { - "version": "27.5.1", - "resolved": "https://registry.npmjs.org/jest-changed-files/-/jest-changed-files-27.5.1.tgz", - "integrity": "sha512-buBLMiByfWGCoMsLLzGUUSpAmIAGnbR2KJoMN10ziLhOLvP4e0SlypHnAel8iqQXTrcbmfEY9sSqae5sgUsTvw==", - "requires": { - "@jest/types": "^27.5.1", - "execa": "^5.0.0", - "throat": "^6.0.1" - } - }, - "jest-circus": { - "version": "27.5.1", - "resolved": "https://registry.npmjs.org/jest-circus/-/jest-circus-27.5.1.tgz", - "integrity": "sha512-D95R7x5UtlMA5iBYsOHFFbMD/GVA4R/Kdq15f7xYWUfWHBto9NYRsOvnSauTgdF+ogCpJ4tyKOXhUifxS65gdw==", - "requires": { - "@jest/environment": "^27.5.1", - "@jest/test-result": "^27.5.1", - "@jest/types": "^27.5.1", - "@types/node": "*", - "chalk": "^4.0.0", - "co": "^4.6.0", - "dedent": "^0.7.0", - "expect": "^27.5.1", - "is-generator-fn": "^2.0.0", - "jest-each": "^27.5.1", - "jest-matcher-utils": "^27.5.1", - "jest-message-util": "^27.5.1", - "jest-runtime": "^27.5.1", - "jest-snapshot": "^27.5.1", - "jest-util": "^27.5.1", - "pretty-format": "^27.5.1", - "slash": "^3.0.0", - "stack-utils": "^2.0.3", - "throat": "^6.0.1" - }, - "dependencies": { - "ansi-styles": { - "version": "4.3.0", - "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", - "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", - "requires": { - "color-convert": "^2.0.1" - } - }, - "chalk": { - "version": "4.1.2", - "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz", - "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==", - "requires": { - "ansi-styles": "^4.1.0", - "supports-color": "^7.1.0" - } - }, - "color-convert": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz", - "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==", - "requires": { - "color-name": "~1.1.4" - } - }, - "color-name": { - "version": "1.1.4", - "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz", - "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==" - }, - "has-flag": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz", - "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==" - }, - "supports-color": { - "version": "7.2.0", - "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", - "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", - "requires": { - "has-flag": "^4.0.0" - } - } - } - }, - "jest-cli": { - "version": "27.5.1", - "resolved": "https://registry.npmjs.org/jest-cli/-/jest-cli-27.5.1.tgz", - "integrity": "sha512-Hc6HOOwYq4/74/c62dEE3r5elx8wjYqxY0r0G/nFrLDPMFRu6RA/u8qINOIkvhxG7mMQ5EJsOGfRpI8L6eFUVw==", - "requires": { - "@jest/core": "^27.5.1", - "@jest/test-result": "^27.5.1", - "@jest/types": "^27.5.1", - "chalk": "^4.0.0", - "exit": "^0.1.2", - "graceful-fs": "^4.2.9", - "import-local": "^3.0.2", - "jest-config": "^27.5.1", - "jest-util": "^27.5.1", - "jest-validate": "^27.5.1", - "prompts": "^2.0.1", - "yargs": "^16.2.0" - }, - "dependencies": { - "ansi-styles": { - "version": "4.3.0", - "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", - "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", - "requires": { - "color-convert": "^2.0.1" - } - }, - "chalk": { - "version": "4.1.2", - "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz", - "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==", - "requires": { - "ansi-styles": "^4.1.0", - "supports-color": "^7.1.0" - } - }, - "color-convert": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz", - "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==", - "requires": { - "color-name": "~1.1.4" - } - }, - "color-name": { - "version": "1.1.4", - "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz", - "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==" - }, - "has-flag": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz", - "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==" - }, - "supports-color": { - "version": "7.2.0", - "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", - "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", - "requires": { - "has-flag": "^4.0.0" - } - } - } - }, - "jest-config": { - "version": "27.5.1", - "resolved": "https://registry.npmjs.org/jest-config/-/jest-config-27.5.1.tgz", - "integrity": "sha512-5sAsjm6tGdsVbW9ahcChPAFCk4IlkQUknH5AvKjuLTSlcO/wCZKyFdn7Rg0EkC+OGgWODEy2hDpWB1PgzH0JNA==", - "requires": { - "@babel/core": "^7.8.0", - "@jest/test-sequencer": "^27.5.1", - "@jest/types": "^27.5.1", - "babel-jest": "^27.5.1", - "chalk": "^4.0.0", - "ci-info": "^3.2.0", - "deepmerge": "^4.2.2", - "glob": "^7.1.1", - "graceful-fs": "^4.2.9", - "jest-circus": "^27.5.1", - "jest-environment-jsdom": "^27.5.1", - "jest-environment-node": "^27.5.1", - "jest-get-type": "^27.5.1", - "jest-jasmine2": "^27.5.1", - "jest-regex-util": "^27.5.1", - "jest-resolve": "^27.5.1", - "jest-runner": "^27.5.1", - "jest-util": "^27.5.1", - "jest-validate": "^27.5.1", - "micromatch": "^4.0.4", - "parse-json": "^5.2.0", - "pretty-format": "^27.5.1", - "slash": "^3.0.0", - "strip-json-comments": "^3.1.1" - }, - "dependencies": { - "ansi-styles": { - "version": "4.3.0", - "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", - "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", - "requires": { - "color-convert": "^2.0.1" - } - }, - "chalk": { - "version": "4.1.2", - "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz", - "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==", - "requires": { - "ansi-styles": "^4.1.0", - "supports-color": "^7.1.0" - } - }, - "color-convert": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz", - "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==", - "requires": { - "color-name": "~1.1.4" - } - }, - "color-name": { - "version": "1.1.4", - "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz", - "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==" - }, - "has-flag": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz", - "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==" - }, - "supports-color": { - "version": "7.2.0", - "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", - "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", - "requires": { - "has-flag": "^4.0.0" - } - } - } - }, - "jest-diff": { - "version": "27.5.1", - "resolved": "https://registry.npmjs.org/jest-diff/-/jest-diff-27.5.1.tgz", - "integrity": "sha512-m0NvkX55LDt9T4mctTEgnZk3fmEg3NRYutvMPWM/0iPnkFj2wIeF45O1718cMSOFO1vINkqmxqD8vE37uTEbqw==", - "requires": { - "chalk": "^4.0.0", - "diff-sequences": "^27.5.1", - "jest-get-type": "^27.5.1", - "pretty-format": "^27.5.1" - }, - "dependencies": { - "ansi-styles": { - "version": "4.3.0", - "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", - "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", - "requires": { - "color-convert": "^2.0.1" - } - }, - "chalk": { - "version": "4.1.2", - "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz", - "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==", - "requires": { - "ansi-styles": "^4.1.0", - "supports-color": "^7.1.0" - } - }, - "color-convert": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz", - "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==", - "requires": { - "color-name": "~1.1.4" - } - }, - "color-name": { - "version": "1.1.4", - "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz", - "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==" - }, - "has-flag": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz", - "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==" - }, - "supports-color": { - "version": "7.2.0", - "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", - "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", - "requires": { - "has-flag": "^4.0.0" - } - } - } - }, - "jest-docblock": { - "version": "27.5.1", - "resolved": "https://registry.npmjs.org/jest-docblock/-/jest-docblock-27.5.1.tgz", - "integrity": "sha512-rl7hlABeTsRYxKiUfpHrQrG4e2obOiTQWfMEH3PxPjOtdsfLQO4ReWSZaQ7DETm4xu07rl4q/h4zcKXyU0/OzQ==", - "requires": { - "detect-newline": "^3.0.0" - } - }, - "jest-each": { - "version": "27.5.1", - "resolved": "https://registry.npmjs.org/jest-each/-/jest-each-27.5.1.tgz", - "integrity": "sha512-1Ff6p+FbhT/bXQnEouYy00bkNSY7OUpfIcmdl8vZ31A1UUaurOLPA8a8BbJOF2RDUElwJhmeaV7LnagI+5UwNQ==", - "requires": { - "@jest/types": "^27.5.1", - "chalk": "^4.0.0", - "jest-get-type": "^27.5.1", - "jest-util": "^27.5.1", - "pretty-format": "^27.5.1" - }, - "dependencies": { - "ansi-styles": { - "version": "4.3.0", - "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", - "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", - "requires": { - "color-convert": "^2.0.1" - } - }, - "chalk": { - "version": "4.1.2", - "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz", - "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==", - "requires": { - "ansi-styles": "^4.1.0", - "supports-color": "^7.1.0" - } - }, - "color-convert": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz", - "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==", - "requires": { - "color-name": "~1.1.4" - } - }, - "color-name": { - "version": "1.1.4", - "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz", - "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==" - }, - "has-flag": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz", - "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==" - }, - "supports-color": { - "version": "7.2.0", - "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", - "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", - "requires": { - "has-flag": "^4.0.0" - } - } - } - }, - "jest-environment-jsdom": { - "version": "27.5.1", - "resolved": "https://registry.npmjs.org/jest-environment-jsdom/-/jest-environment-jsdom-27.5.1.tgz", - "integrity": "sha512-TFBvkTC1Hnnnrka/fUb56atfDtJ9VMZ94JkjTbggl1PEpwrYtUBKMezB3inLmWqQsXYLcMwNoDQwoBTAvFfsfw==", - "requires": { - "@jest/environment": "^27.5.1", - "@jest/fake-timers": "^27.5.1", - "@jest/types": "^27.5.1", - "@types/node": "*", - "jest-mock": "^27.5.1", - "jest-util": "^27.5.1", - "jsdom": "^16.6.0" - } - }, - "jest-environment-node": { - "version": "27.5.1", - "resolved": "https://registry.npmjs.org/jest-environment-node/-/jest-environment-node-27.5.1.tgz", - "integrity": "sha512-Jt4ZUnxdOsTGwSRAfKEnE6BcwsSPNOijjwifq5sDFSA2kesnXTvNqKHYgM0hDq3549Uf/KzdXNYn4wMZJPlFLw==", - "requires": { - "@jest/environment": "^27.5.1", - "@jest/fake-timers": "^27.5.1", - "@jest/types": "^27.5.1", - "@types/node": "*", - "jest-mock": "^27.5.1", - "jest-util": "^27.5.1" - } - }, - "jest-get-type": { - "version": "27.5.1", - "resolved": "https://registry.npmjs.org/jest-get-type/-/jest-get-type-27.5.1.tgz", - "integrity": "sha512-2KY95ksYSaK7DMBWQn6dQz3kqAf3BB64y2udeG+hv4KfSOb9qwcYQstTJc1KCbsix+wLZWZYN8t7nwX3GOBLRw==" - }, - "jest-haste-map": { - "version": "27.5.1", - "resolved": "https://registry.npmjs.org/jest-haste-map/-/jest-haste-map-27.5.1.tgz", - "integrity": "sha512-7GgkZ4Fw4NFbMSDSpZwXeBiIbx+t/46nJ2QitkOjvwPYyZmqttu2TDSimMHP1EkPOi4xUZAN1doE5Vd25H4Jng==", - "requires": { - "@jest/types": "^27.5.1", - "@types/graceful-fs": "^4.1.2", - "@types/node": "*", - "anymatch": "^3.0.3", - "fb-watchman": "^2.0.0", - "fsevents": "^2.3.2", - "graceful-fs": "^4.2.9", - "jest-regex-util": "^27.5.1", - "jest-serializer": "^27.5.1", - "jest-util": "^27.5.1", - "jest-worker": "^27.5.1", - "micromatch": "^4.0.4", - "walker": "^1.0.7" - } - }, - "jest-jasmine2": { - "version": "27.5.1", - "resolved": "https://registry.npmjs.org/jest-jasmine2/-/jest-jasmine2-27.5.1.tgz", - "integrity": "sha512-jtq7VVyG8SqAorDpApwiJJImd0V2wv1xzdheGHRGyuT7gZm6gG47QEskOlzsN1PG/6WNaCo5pmwMHDf3AkG2pQ==", - "requires": { - "@jest/environment": "^27.5.1", - "@jest/source-map": "^27.5.1", - "@jest/test-result": "^27.5.1", - "@jest/types": "^27.5.1", - "@types/node": "*", - "chalk": "^4.0.0", - "co": "^4.6.0", - "expect": "^27.5.1", - "is-generator-fn": "^2.0.0", - "jest-each": "^27.5.1", - "jest-matcher-utils": "^27.5.1", - "jest-message-util": "^27.5.1", - "jest-runtime": "^27.5.1", - "jest-snapshot": "^27.5.1", - "jest-util": "^27.5.1", - "pretty-format": "^27.5.1", - "throat": "^6.0.1" - }, - "dependencies": { - "ansi-styles": { - "version": "4.3.0", - "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", - "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", - "requires": { - "color-convert": "^2.0.1" - } - }, - "chalk": { - "version": "4.1.2", - "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz", - "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==", - "requires": { - "ansi-styles": "^4.1.0", - "supports-color": "^7.1.0" - } - }, - "color-convert": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz", - "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==", - "requires": { - "color-name": "~1.1.4" - } - }, - "color-name": { - "version": "1.1.4", - "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz", - "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==" - }, - "has-flag": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz", - "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==" - }, - "supports-color": { - "version": "7.2.0", - "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", - "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", - "requires": { - "has-flag": "^4.0.0" - } - } - } - }, - "jest-leak-detector": { - "version": "27.5.1", - "resolved": "https://registry.npmjs.org/jest-leak-detector/-/jest-leak-detector-27.5.1.tgz", - "integrity": "sha512-POXfWAMvfU6WMUXftV4HolnJfnPOGEu10fscNCA76KBpRRhcMN2c8d3iT2pxQS3HLbA+5X4sOUPzYO2NUyIlHQ==", - "requires": { - "jest-get-type": "^27.5.1", - "pretty-format": "^27.5.1" - } - }, - "jest-matcher-utils": { - "version": "27.5.1", - "resolved": "https://registry.npmjs.org/jest-matcher-utils/-/jest-matcher-utils-27.5.1.tgz", - "integrity": "sha512-z2uTx/T6LBaCoNWNFWwChLBKYxTMcGBRjAt+2SbP929/Fflb9aa5LGma654Rz8z9HLxsrUaYzxE9T/EFIL/PAw==", - "requires": { - "chalk": "^4.0.0", - "jest-diff": "^27.5.1", - "jest-get-type": "^27.5.1", - "pretty-format": "^27.5.1" - }, - "dependencies": { - "ansi-styles": { - "version": "4.3.0", - "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", - "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", - "requires": { - "color-convert": "^2.0.1" - } - }, - "chalk": { - "version": "4.1.2", - "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz", - "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==", - "requires": { - "ansi-styles": "^4.1.0", - "supports-color": "^7.1.0" - } - }, - "color-convert": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz", - "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==", - "requires": { - "color-name": "~1.1.4" - } - }, - "color-name": { - "version": "1.1.4", - "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz", - "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==" - }, - "has-flag": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz", - "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==" - }, - "supports-color": { - "version": "7.2.0", - "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", - "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", - "requires": { - "has-flag": "^4.0.0" - } - } - } - }, - "jest-message-util": { - "version": "27.5.1", - "resolved": "https://registry.npmjs.org/jest-message-util/-/jest-message-util-27.5.1.tgz", - "integrity": "sha512-rMyFe1+jnyAAf+NHwTclDz0eAaLkVDdKVHHBFWsBWHnnh5YeJMNWWsv7AbFYXfK3oTqvL7VTWkhNLu1jX24D+g==", - "requires": { - "@babel/code-frame": "^7.12.13", - "@jest/types": "^27.5.1", - "@types/stack-utils": "^2.0.0", - "chalk": "^4.0.0", - "graceful-fs": "^4.2.9", - "micromatch": "^4.0.4", - "pretty-format": "^27.5.1", - "slash": "^3.0.0", - "stack-utils": "^2.0.3" - }, - "dependencies": { - "ansi-styles": { - "version": "4.3.0", - "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", - "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", - "requires": { - "color-convert": "^2.0.1" - } - }, - "chalk": { - "version": "4.1.2", - "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz", - "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==", - "requires": { - "ansi-styles": "^4.1.0", - "supports-color": "^7.1.0" - } - }, - "color-convert": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz", - "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==", - "requires": { - "color-name": "~1.1.4" - } - }, - "color-name": { - "version": "1.1.4", - "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz", - "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==" - }, - "has-flag": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz", - "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==" - }, - "supports-color": { - "version": "7.2.0", - "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", - "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", - "requires": { - "has-flag": "^4.0.0" - } - } - } - }, - "jest-mock": { - "version": "27.5.1", - "resolved": "https://registry.npmjs.org/jest-mock/-/jest-mock-27.5.1.tgz", - "integrity": "sha512-K4jKbY1d4ENhbrG2zuPWaQBvDly+iZ2yAW+T1fATN78hc0sInwn7wZB8XtlNnvHug5RMwV897Xm4LqmPM4e2Og==", - "requires": { - "@jest/types": "^27.5.1", - "@types/node": "*" - } - }, - "jest-pnp-resolver": { - "version": "1.2.2", - "resolved": "https://registry.npmjs.org/jest-pnp-resolver/-/jest-pnp-resolver-1.2.2.tgz", - "integrity": "sha512-olV41bKSMm8BdnuMsewT4jqlZ8+3TCARAXjZGT9jcoSnrfUnRCqnMoF9XEeoWjbzObpqF9dRhHQj0Xb9QdF6/w==", - "requires": {} - }, - "jest-regex-util": { - "version": "27.5.1", - "resolved": "https://registry.npmjs.org/jest-regex-util/-/jest-regex-util-27.5.1.tgz", - "integrity": "sha512-4bfKq2zie+x16okqDXjXn9ql2B0dScQu+vcwe4TvFVhkVyuWLqpZrZtXxLLWoXYgn0E87I6r6GRYHF7wFZBUvg==" - }, - "jest-resolve": { - "version": "27.5.1", - "resolved": "https://registry.npmjs.org/jest-resolve/-/jest-resolve-27.5.1.tgz", - "integrity": "sha512-FFDy8/9E6CV83IMbDpcjOhumAQPDyETnU2KZ1O98DwTnz8AOBsW/Xv3GySr1mOZdItLR+zDZ7I/UdTFbgSOVCw==", - "requires": { - "@jest/types": "^27.5.1", - "chalk": "^4.0.0", - "graceful-fs": "^4.2.9", - "jest-haste-map": "^27.5.1", - "jest-pnp-resolver": "^1.2.2", - "jest-util": "^27.5.1", - "jest-validate": "^27.5.1", - "resolve": "^1.20.0", - "resolve.exports": "^1.1.0", - "slash": "^3.0.0" - }, - "dependencies": { - "ansi-styles": { - "version": "4.3.0", - "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", - "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", - "requires": { - "color-convert": "^2.0.1" - } - }, - "chalk": { - "version": "4.1.2", - "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz", - "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==", - "requires": { - "ansi-styles": "^4.1.0", - "supports-color": "^7.1.0" - } - }, - "color-convert": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz", - "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==", - "requires": { - "color-name": "~1.1.4" - } - }, - "color-name": { - "version": "1.1.4", - "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz", - "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==" - }, - "has-flag": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz", - "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==" - }, - "supports-color": { - "version": "7.2.0", - "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", - "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", - "requires": { - "has-flag": "^4.0.0" - } - } - } - }, - "jest-resolve-dependencies": { - "version": "27.5.1", - "resolved": "https://registry.npmjs.org/jest-resolve-dependencies/-/jest-resolve-dependencies-27.5.1.tgz", - "integrity": "sha512-QQOOdY4PE39iawDn5rzbIePNigfe5B9Z91GDD1ae/xNDlu9kaat8QQ5EKnNmVWPV54hUdxCVwwj6YMgR2O7IOg==", - "requires": { - "@jest/types": "^27.5.1", - "jest-regex-util": "^27.5.1", - "jest-snapshot": "^27.5.1" - } - }, - "jest-runner": { - "version": "27.5.1", - "resolved": "https://registry.npmjs.org/jest-runner/-/jest-runner-27.5.1.tgz", - "integrity": "sha512-g4NPsM4mFCOwFKXO4p/H/kWGdJp9V8kURY2lX8Me2drgXqG7rrZAx5kv+5H7wtt/cdFIjhqYx1HrlqWHaOvDaQ==", - "requires": { - "@jest/console": "^27.5.1", - "@jest/environment": "^27.5.1", - "@jest/test-result": "^27.5.1", - "@jest/transform": "^27.5.1", - "@jest/types": "^27.5.1", - "@types/node": "*", - "chalk": "^4.0.0", - "emittery": "^0.8.1", - "graceful-fs": "^4.2.9", - "jest-docblock": "^27.5.1", - "jest-environment-jsdom": "^27.5.1", - "jest-environment-node": "^27.5.1", - "jest-haste-map": "^27.5.1", - "jest-leak-detector": "^27.5.1", - "jest-message-util": "^27.5.1", - "jest-resolve": "^27.5.1", - "jest-runtime": "^27.5.1", - "jest-util": "^27.5.1", - "jest-worker": "^27.5.1", - "source-map-support": "^0.5.6", - "throat": "^6.0.1" - }, - "dependencies": { - "ansi-styles": { - "version": "4.3.0", - "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", - "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", - "requires": { - "color-convert": "^2.0.1" - } - }, - "chalk": { - "version": "4.1.2", - "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz", - "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==", - "requires": { - "ansi-styles": "^4.1.0", - "supports-color": "^7.1.0" - } - }, - "color-convert": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz", - "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==", - "requires": { - "color-name": "~1.1.4" - } - }, - "color-name": { - "version": "1.1.4", - "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz", - "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==" - }, - "has-flag": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz", - "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==" - }, - "supports-color": { - "version": "7.2.0", - "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", - "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", - "requires": { - "has-flag": "^4.0.0" - } - } - } - }, - "jest-runtime": { - "version": "27.5.1", - "resolved": "https://registry.npmjs.org/jest-runtime/-/jest-runtime-27.5.1.tgz", - "integrity": "sha512-o7gxw3Gf+H2IGt8fv0RiyE1+r83FJBRruoA+FXrlHw6xEyBsU8ugA6IPfTdVyA0w8HClpbK+DGJxH59UrNMx8A==", - "requires": { - "@jest/environment": "^27.5.1", - "@jest/fake-timers": "^27.5.1", - "@jest/globals": "^27.5.1", - "@jest/source-map": "^27.5.1", - "@jest/test-result": "^27.5.1", - "@jest/transform": "^27.5.1", - "@jest/types": "^27.5.1", - "chalk": "^4.0.0", - "cjs-module-lexer": "^1.0.0", - "collect-v8-coverage": "^1.0.0", - "execa": "^5.0.0", - "glob": "^7.1.3", - "graceful-fs": "^4.2.9", - "jest-haste-map": "^27.5.1", - "jest-message-util": "^27.5.1", - "jest-mock": "^27.5.1", - "jest-regex-util": "^27.5.1", - "jest-resolve": "^27.5.1", - "jest-snapshot": "^27.5.1", - "jest-util": "^27.5.1", - "slash": "^3.0.0", - "strip-bom": "^4.0.0" - }, - "dependencies": { - "ansi-styles": { - "version": "4.3.0", - "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", - "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", - "requires": { - "color-convert": "^2.0.1" - } - }, - "chalk": { - "version": "4.1.2", - "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz", - "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==", - "requires": { - "ansi-styles": "^4.1.0", - "supports-color": "^7.1.0" - } - }, - "color-convert": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz", - "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==", - "requires": { - "color-name": "~1.1.4" - } - }, - "color-name": { - "version": "1.1.4", - "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz", - "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==" - }, - "has-flag": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz", - "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==" - }, - "supports-color": { - "version": "7.2.0", - "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", - "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", - "requires": { - "has-flag": "^4.0.0" - } - } - } - }, - "jest-serializer": { - "version": "27.5.1", - "resolved": "https://registry.npmjs.org/jest-serializer/-/jest-serializer-27.5.1.tgz", - "integrity": "sha512-jZCyo6iIxO1aqUxpuBlwTDMkzOAJS4a3eYz3YzgxxVQFwLeSA7Jfq5cbqCY+JLvTDrWirgusI/0KwxKMgrdf7w==", - "requires": { - "@types/node": "*", - "graceful-fs": "^4.2.9" - } - }, - "jest-snapshot": { - "version": "27.5.1", - "resolved": "https://registry.npmjs.org/jest-snapshot/-/jest-snapshot-27.5.1.tgz", - "integrity": "sha512-yYykXI5a0I31xX67mgeLw1DZ0bJB+gpq5IpSuCAoyDi0+BhgU/RIrL+RTzDmkNTchvDFWKP8lp+w/42Z3us5sA==", - "requires": { - "@babel/core": "^7.7.2", - "@babel/generator": "^7.7.2", - "@babel/plugin-syntax-typescript": "^7.7.2", - "@babel/traverse": "^7.7.2", - "@babel/types": "^7.0.0", - "@jest/transform": "^27.5.1", - "@jest/types": "^27.5.1", - "@types/babel__traverse": "^7.0.4", - "@types/prettier": "^2.1.5", - "babel-preset-current-node-syntax": "^1.0.0", - "chalk": "^4.0.0", - "expect": "^27.5.1", - "graceful-fs": "^4.2.9", - "jest-diff": "^27.5.1", - "jest-get-type": "^27.5.1", - "jest-haste-map": "^27.5.1", - "jest-matcher-utils": "^27.5.1", - "jest-message-util": "^27.5.1", - "jest-util": "^27.5.1", - "natural-compare": "^1.4.0", - "pretty-format": "^27.5.1", - "semver": "^7.3.2" - }, - "dependencies": { - "ansi-styles": { - "version": "4.3.0", - "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", - "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", - "requires": { - "color-convert": "^2.0.1" - } - }, - "chalk": { - "version": "4.1.2", - "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz", - "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==", - "requires": { - "ansi-styles": "^4.1.0", - "supports-color": "^7.1.0" - } - }, - "color-convert": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz", - "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==", - "requires": { - "color-name": "~1.1.4" - } - }, - "color-name": { - "version": "1.1.4", - "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz", - "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==" - }, - "has-flag": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz", - "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==" - }, - "supports-color": { - "version": "7.2.0", - "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", - "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", - "requires": { - "has-flag": "^4.0.0" - } - } - } - }, - "jest-util": { - "version": "27.5.1", - "resolved": "https://registry.npmjs.org/jest-util/-/jest-util-27.5.1.tgz", - "integrity": "sha512-Kv2o/8jNvX1MQ0KGtw480E/w4fBCDOnH6+6DmeKi6LZUIlKA5kwY0YNdlzaWTiVgxqAqik11QyxDOKk543aKXw==", - "requires": { - "@jest/types": "^27.5.1", - "@types/node": "*", - "chalk": "^4.0.0", - "ci-info": "^3.2.0", - "graceful-fs": "^4.2.9", - "picomatch": "^2.2.3" - }, - "dependencies": { - "ansi-styles": { - "version": "4.3.0", - "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", - "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", - "requires": { - "color-convert": "^2.0.1" - } - }, - "chalk": { - "version": "4.1.2", - "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz", - "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==", - "requires": { - "ansi-styles": "^4.1.0", - "supports-color": "^7.1.0" - } - }, - "color-convert": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz", - "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==", - "requires": { - "color-name": "~1.1.4" - } - }, - "color-name": { - "version": "1.1.4", - "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz", - "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==" - }, - "has-flag": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz", - "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==" - }, - "supports-color": { - "version": "7.2.0", - "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", - "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", - "requires": { - "has-flag": "^4.0.0" - } - } + "node_modules/jiti": { + "version": "1.19.3", + "license": "MIT", + "bin": { + "jiti": "bin/jiti.js" } }, - "jest-validate": { - "version": "27.5.1", - "resolved": "https://registry.npmjs.org/jest-validate/-/jest-validate-27.5.1.tgz", - "integrity": "sha512-thkNli0LYTmOI1tDB3FI1S1RTp/Bqyd9pTarJwL87OIBFuqEb5Apv5EaApEudYg4g86e3CT6kM0RowkhtEnCBQ==", - "requires": { - "@jest/types": "^27.5.1", - "camelcase": "^6.2.0", - "chalk": "^4.0.0", - "jest-get-type": "^27.5.1", - "leven": "^3.1.0", - "pretty-format": "^27.5.1" + "node_modules/jotai": { + "version": "1.4.0", + "license": "MIT", + "engines": { + "node": ">=12.7.0" }, - "dependencies": { - "ansi-styles": { - "version": "4.3.0", - "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", - "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", - "requires": { - "color-convert": "^2.0.1" - } - }, - "chalk": { - "version": "4.1.2", - "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz", - "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==", - "requires": { - "ansi-styles": "^4.1.0", - "supports-color": "^7.1.0" - } - }, - "color-convert": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz", - "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==", - "requires": { - "color-name": "~1.1.4" - } - }, - "color-name": { - "version": "1.1.4", - "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz", - "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==" - }, - "has-flag": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz", - "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==" - }, - "supports-color": { - "version": "7.2.0", - "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", - "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", - "requires": { - "has-flag": "^4.0.0" - } - } - } - }, - "jest-watch-typeahead": { - "version": "1.1.0", - "resolved": "https://registry.npmjs.org/jest-watch-typeahead/-/jest-watch-typeahead-1.1.0.tgz", - "integrity": "sha512-Va5nLSJTN7YFtC2jd+7wsoe1pNe5K4ShLux/E5iHEwlB9AxaxmggY7to9KUqKojhaJw3aXqt5WAb4jGPOolpEw==", - "requires": { - "ansi-escapes": "^4.3.1", - "chalk": "^4.0.0", - "jest-regex-util": "^28.0.0", - "jest-watcher": "^28.0.0", - "slash": "^4.0.0", - "string-length": "^5.0.1", - "strip-ansi": "^7.0.1" + "peerDependencies": { + "@babel/core": "*", + "@babel/template": "*", + "@urql/core": "*", + "immer": "*", + "optics-ts": "*", + "react": ">=16.8", + "react-query": "*", + "valtio": "*", + "wonka": "*", + "xstate": "*" }, - "dependencies": { - "@jest/console": { - "version": "28.1.1", - "resolved": "https://registry.npmjs.org/@jest/console/-/console-28.1.1.tgz", - "integrity": "sha512-0RiUocPVFEm3WRMOStIHbRWllG6iW6E3/gUPnf4lkrVFyXIIDeCe+vlKeYyFOMhB2EPE6FLFCNADSOOQMaqvyA==", - "requires": { - "@jest/types": "^28.1.1", - "@types/node": "*", - "chalk": "^4.0.0", - "jest-message-util": "^28.1.1", - "jest-util": "^28.1.1", - "slash": "^3.0.0" - }, - "dependencies": { - "slash": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/slash/-/slash-3.0.0.tgz", - "integrity": "sha512-g9Q1haeby36OSStwb4ntCGGGaKsaVSjQ68fBxoQcutl5fS1vuY18H3wSt3jFyFtrkx+Kz0V1G85A4MyAdDMi2Q==" - } - } - }, - "@jest/test-result": { - "version": "28.1.1", - "resolved": "https://registry.npmjs.org/@jest/test-result/-/test-result-28.1.1.tgz", - "integrity": "sha512-hPmkugBktqL6rRzwWAtp1JtYT4VHwv8OQ+9lE5Gymj6dHzubI/oJHMUpPOt8NrdVWSrz9S7bHjJUmv2ggFoUNQ==", - "requires": { - "@jest/console": "^28.1.1", - "@jest/types": "^28.1.1", - "@types/istanbul-lib-coverage": "^2.0.0", - "collect-v8-coverage": "^1.0.0" - } - }, - "@jest/types": { - "version": "28.1.1", - "resolved": "https://registry.npmjs.org/@jest/types/-/types-28.1.1.tgz", - "integrity": "sha512-vRXVqSg1VhDnB8bWcmvLzmg0Bt9CRKVgHPXqYwvWMX3TvAjeO+nRuK6+VdTKCtWOvYlmkF/HqNAL/z+N3B53Kw==", - "requires": { - "@jest/schemas": "^28.0.2", - "@types/istanbul-lib-coverage": "^2.0.0", - "@types/istanbul-reports": "^3.0.0", - "@types/node": "*", - "@types/yargs": "^17.0.8", - "chalk": "^4.0.0" - } - }, - "@types/yargs": { - "version": "17.0.10", - "resolved": "https://registry.npmjs.org/@types/yargs/-/yargs-17.0.10.tgz", - "integrity": "sha512-gmEaFwpj/7f/ROdtIlci1R1VYU1J4j95m8T+Tj3iBgiBFKg1foE/PSl93bBd5T9LDXNPo8UlNN6W0qwD8O5OaA==", - "requires": { - "@types/yargs-parser": "*" - } - }, - "ansi-styles": { - "version": "4.3.0", - "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", - "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", - "requires": { - "color-convert": "^2.0.1" - } - }, - "chalk": { - "version": "4.1.2", - "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz", - "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==", - "requires": { - "ansi-styles": "^4.1.0", - "supports-color": "^7.1.0" - } - }, - "color-convert": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz", - "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==", - "requires": { - "color-name": "~1.1.4" - } - }, - "color-name": { - "version": "1.1.4", - "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz", - "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==" - }, - "emittery": { - "version": "0.10.2", - "resolved": "https://registry.npmjs.org/emittery/-/emittery-0.10.2.tgz", - "integrity": "sha512-aITqOwnLanpHLNXZJENbOgjUBeHocD+xsSJmNrjovKBW5HbSpW3d1pEls7GFQPUWXiwG9+0P4GtHfEqC/4M0Iw==" - }, - "has-flag": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz", - "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==" - }, - "jest-message-util": { - "version": "28.1.1", - "resolved": "https://registry.npmjs.org/jest-message-util/-/jest-message-util-28.1.1.tgz", - "integrity": "sha512-xoDOOT66fLfmTRiqkoLIU7v42mal/SqwDKvfmfiWAdJMSJiU+ozgluO7KbvoAgiwIrrGZsV7viETjc8GNrA/IQ==", - "requires": { - "@babel/code-frame": "^7.12.13", - "@jest/types": "^28.1.1", - "@types/stack-utils": "^2.0.0", - "chalk": "^4.0.0", - "graceful-fs": "^4.2.9", - "micromatch": "^4.0.4", - "pretty-format": "^28.1.1", - "slash": "^3.0.0", - "stack-utils": "^2.0.3" - }, - "dependencies": { - "slash": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/slash/-/slash-3.0.0.tgz", - "integrity": "sha512-g9Q1haeby36OSStwb4ntCGGGaKsaVSjQ68fBxoQcutl5fS1vuY18H3wSt3jFyFtrkx+Kz0V1G85A4MyAdDMi2Q==" - } - } - }, - "jest-regex-util": { - "version": "28.0.2", - "resolved": "https://registry.npmjs.org/jest-regex-util/-/jest-regex-util-28.0.2.tgz", - "integrity": "sha512-4s0IgyNIy0y9FK+cjoVYoxamT7Zeo7MhzqRGx7YDYmaQn1wucY9rotiGkBzzcMXTtjrCAP/f7f+E0F7+fxPNdw==" - }, - "jest-util": { - "version": "28.1.1", - "resolved": "https://registry.npmjs.org/jest-util/-/jest-util-28.1.1.tgz", - "integrity": "sha512-FktOu7ca1DZSyhPAxgxB6hfh2+9zMoJ7aEQA759Z6p45NuO8mWcqujH+UdHlCm/V6JTWwDztM2ITCzU1ijJAfw==", - "requires": { - "@jest/types": "^28.1.1", - "@types/node": "*", - "chalk": "^4.0.0", - "ci-info": "^3.2.0", - "graceful-fs": "^4.2.9", - "picomatch": "^2.2.3" - } - }, - "jest-watcher": { - "version": "28.1.1", - "resolved": "https://registry.npmjs.org/jest-watcher/-/jest-watcher-28.1.1.tgz", - "integrity": "sha512-RQIpeZ8EIJMxbQrXpJQYIIlubBnB9imEHsxxE41f54ZwcqWLysL/A0ZcdMirf+XsMn3xfphVQVV4EW0/p7i7Ug==", - "requires": { - "@jest/test-result": "^28.1.1", - "@jest/types": "^28.1.1", - "@types/node": "*", - "ansi-escapes": "^4.2.1", - "chalk": "^4.0.0", - "emittery": "^0.10.2", - "jest-util": "^28.1.1", - "string-length": "^4.0.1" - }, - "dependencies": { - "string-length": { - "version": "4.0.2", - "resolved": "https://registry.npmjs.org/string-length/-/string-length-4.0.2.tgz", - "integrity": "sha512-+l6rNN5fYHNhZZy41RXsYptCjA2Igmq4EG7kZAYFQI1E1VTXarr6ZPXBg6eq7Y6eK4FEhY6AJlyuFIb/v/S0VQ==", - "requires": { - "char-regex": "^1.0.2", - "strip-ansi": "^6.0.0" - } - }, - "strip-ansi": { - "version": "6.0.1", - "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-6.0.1.tgz", - "integrity": "sha512-Y38VPSHcqkFrCpFnQ9vuSXmquuv5oXOKpGeT6aGrr3o3Gc9AlVa6JBfUSOCnbxGGZF+/0ooI7KrPuUSztUdU5A==", - "requires": { - "ansi-regex": "^5.0.1" - } - } - } - }, - "pretty-format": { - "version": "28.1.1", - "resolved": "https://registry.npmjs.org/pretty-format/-/pretty-format-28.1.1.tgz", - "integrity": "sha512-wwJbVTGFHeucr5Jw2bQ9P+VYHyLdAqedFLEkdQUVaBF/eiidDwH5OpilINq4mEfhbCjLnirt6HTTDhv1HaTIQw==", - "requires": { - "@jest/schemas": "^28.0.2", - "ansi-regex": "^5.0.1", - "ansi-styles": "^5.0.0", - "react-is": "^18.0.0" - }, - "dependencies": { - "ansi-styles": { - "version": "5.2.0", - "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-5.2.0.tgz", - "integrity": "sha512-Cxwpt2SfTzTtXcfOlzGEee8O+c+MmUgGrNiBcXnuWxuFJHe6a5Hz7qwhwe5OgaSYI0IJvkLqWX1ASG+cJOkEiA==" - } - } - }, - "react-is": { - "version": "18.2.0", - "resolved": "https://registry.npmjs.org/react-is/-/react-is-18.2.0.tgz", - "integrity": "sha512-xWGDIW6x921xtzPkhiULtthJHoJvBbF3q26fzloPCK0hsvxtPVelvftw3zjbHWSkR2km9Z+4uxbDDK/6Zw9B8w==" - }, - "slash": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/slash/-/slash-4.0.0.tgz", - "integrity": "sha512-3dOsAHXXUkQTpOYcoAxLIorMTp4gIQr5IW3iVb7A7lFIp0VHhnynm9izx6TssdrIcVIESAlVjtnO2K8bg+Coew==" - }, - "string-length": { - "version": "5.0.1", - "resolved": "https://registry.npmjs.org/string-length/-/string-length-5.0.1.tgz", - "integrity": "sha512-9Ep08KAMUn0OadnVaBuRdE2l615CQ508kr0XMadjClfYpdCyvrbFp6Taebo8yyxokQ4viUd/xPPUA4FGgUa0ow==", - "requires": { - "char-regex": "^2.0.0", - "strip-ansi": "^7.0.1" - }, - "dependencies": { - "char-regex": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/char-regex/-/char-regex-2.0.1.tgz", - "integrity": "sha512-oSvEeo6ZUD7NepqAat3RqoucZ5SeqLJgOvVIwkafu6IP3V0pO38s/ypdVUmDDK6qIIHNlYHJAKX9E7R7HoKElw==" - } - } + "peerDependenciesMeta": { + "@babel/core": { + "optional": true }, - "strip-ansi": { - "version": "7.0.1", - "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-7.0.1.tgz", - "integrity": "sha512-cXNxvT8dFNRVfhVME3JAe98mkXDYN2O1l7jmcwMnOslDeESg1rF/OZMtK0nRAhiari1unG5cD4jG3rapUAkLbw==", - "requires": { - "ansi-regex": "^6.0.1" - }, - "dependencies": { - "ansi-regex": { - "version": "6.0.1", - "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-6.0.1.tgz", - "integrity": "sha512-n5M855fKb2SsfMIiFFoVrABHJC8QtHwVx+mHWP3QcEqBHYienj5dHSgjbxtC0WEZXYt4wcD6zrQElDPhFuZgfA==" - } - } + "@babel/template": { + "optional": true }, - "supports-color": { - "version": "7.2.0", - "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", - "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", - "requires": { - "has-flag": "^4.0.0" - } - } - } - }, - "jest-watcher": { - "version": "27.5.1", - "resolved": "https://registry.npmjs.org/jest-watcher/-/jest-watcher-27.5.1.tgz", - "integrity": "sha512-z676SuD6Z8o8qbmEGhoEUFOM1+jfEiL3DXHK/xgEiG2EyNYfFG60jluWcupY6dATjfEsKQuibReS1djInQnoVw==", - "requires": { - "@jest/test-result": "^27.5.1", - "@jest/types": "^27.5.1", - "@types/node": "*", - "ansi-escapes": "^4.2.1", - "chalk": "^4.0.0", - "jest-util": "^27.5.1", - "string-length": "^4.0.1" - }, - "dependencies": { - "ansi-styles": { - "version": "4.3.0", - "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", - "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", - "requires": { - "color-convert": "^2.0.1" - } + "@urql/core": { + "optional": true }, - "chalk": { - "version": "4.1.2", - "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz", - "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==", - "requires": { - "ansi-styles": "^4.1.0", - "supports-color": "^7.1.0" - } + "immer": { + "optional": true }, - "color-convert": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz", - "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==", - "requires": { - "color-name": "~1.1.4" - } + "optics-ts": { + "optional": true }, - "color-name": { - "version": "1.1.4", - "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz", - "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==" + "react-query": { + "optional": true }, - "has-flag": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz", - "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==" + "valtio": { + "optional": true }, - "supports-color": { - "version": "7.2.0", - "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", - "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", - "requires": { - "has-flag": "^4.0.0" - } - } - } - }, - "jest-worker": { - "version": "27.5.1", - "resolved": "https://registry.npmjs.org/jest-worker/-/jest-worker-27.5.1.tgz", - "integrity": "sha512-7vuh85V5cdDofPyxn58nrPjBktZo0u9x1g8WtjQol+jZDaE+fhN+cIvTj11GndBnMnyfrUOG1sZQxCdjKh+DKg==", - "requires": { - "@types/node": "*", - "merge-stream": "^2.0.0", - "supports-color": "^8.0.0" - }, - "dependencies": { - "has-flag": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz", - "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==" + "wonka": { + "optional": true }, - "supports-color": { - "version": "8.1.1", - "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-8.1.1.tgz", - "integrity": "sha512-MpUEN2OodtUzxvKQl72cUF7RQ5EiHsGvSsVG0ia9c5RbWGL2CI4C7EpPS8UTBIplnlzZiNuV56w+FuNxy3ty2Q==", - "requires": { - "has-flag": "^4.0.0" - } + "xstate": { + "optional": true } } }, - "jotai": { - "version": "1.4.0", - "resolved": "https://registry.npmjs.org/jotai/-/jotai-1.4.0.tgz", - "integrity": "sha512-CUB+A3N+WjtimZvtDnMXvVRognzKh86KB3rKnQlbRvpnmGYU+O9aOZMWSgTaxstXc4Y5GYy02LBEjiv4Rs8MAg==", - "requires": {} - }, - "jotai-immer": { + "node_modules/jotai-immer": { "version": "0.1.0", - "resolved": "https://registry.npmjs.org/jotai-immer/-/jotai-immer-0.1.0.tgz", - "integrity": "sha512-TwiPKgrf/V0tSh2CSEEilhhCHm0LSgIrZmIXvQRp7+aKT+cATNFUBJeSBUb42wMnTh43DoveGSUiTN1oyTv6Wg==", - "requires": {} + "license": "MIT", + "peerDependencies": { + "immer": "*", + "jotai": "*", + "react": ">=17.0.0" + } }, - "jpeg-js": { + "node_modules/jpeg-js": { "version": "0.4.4", - "resolved": "https://registry.npmjs.org/jpeg-js/-/jpeg-js-0.4.4.tgz", - "integrity": "sha512-WZzeDOEtTOBK4Mdsar0IqEU5sMr3vSV2RqkAIzUEV2BHnUfKGyswWFPFwK5EeDo93K3FohSHbLAjj0s1Wzd+dg==" + "license": "BSD-3-Clause" }, - "js-sdsl": { - "version": "4.4.0", - "resolved": "https://registry.npmjs.org/js-sdsl/-/js-sdsl-4.4.0.tgz", - "integrity": "sha512-FfVSdx6pJ41Oa+CF7RDaFmTnCaFhua+SNYQX74riGOpl96x+2jQCqEfQ2bnXu/5DPCqlRuiqyvTJM0Qjz26IVg==", - "peer": true + "node_modules/js-sdsl": { + "version": "4.4.2", + "license": "MIT", + "peer": true, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/js-sdsl" + } }, - "js-sha3": { + "node_modules/js-sha3": { "version": "0.8.0", - "resolved": "https://registry.npmjs.org/js-sha3/-/js-sha3-0.8.0.tgz", - "integrity": "sha512-gF1cRrHhIzNfToc802P800N8PpXS+evLLXfsVpowqmAFR9uwbi89WvXg2QspOmXL8QL86J4T1EpFu+yUkwJY3Q==" + "license": "MIT" }, - "js-tokens": { + "node_modules/js-tokens": { "version": "4.0.0", - "resolved": "https://registry.npmjs.org/js-tokens/-/js-tokens-4.0.0.tgz", - "integrity": "sha512-RdJUflcE3cUzKiMqQgsCu06FPu9UdIJO0beYbPhHN4k6apgJtifcoCtT9bcxOpYBtpD2kCM6Sbzg4CausW/PKQ==" + "license": "MIT" }, - "js-yaml": { + "node_modules/js-yaml": { "version": "3.14.1", - "resolved": "https://registry.npmjs.org/js-yaml/-/js-yaml-3.14.1.tgz", - "integrity": "sha512-okMH7OXXJ7YrN9Ok3/SXrnu4iX9yOk+25nqX4imS2npuvTYDmo/QEZoqwZkYaIDk3jVvBOTOIEgEhaLOynBS9g==", - "requires": { + "license": "MIT", + "dependencies": { "argparse": "^1.0.7", "esprima": "^4.0.0" + }, + "bin": { + "js-yaml": "bin/js-yaml.js" } }, - "jsbi": { + "node_modules/jsbi": { "version": "3.2.5", - "resolved": "https://registry.npmjs.org/jsbi/-/jsbi-3.2.5.tgz", - "integrity": "sha512-aBE4n43IPvjaddScbvWRA2YlTzKEynHzu7MqOyTipdHucf/VxS63ViCjxYRg86M8Rxwbt/GfzHl1kKERkt45fQ==" + "license": "Apache-2.0" }, - "jsbn": { + "node_modules/jsbn": { "version": "0.1.1", - "resolved": "https://registry.npmjs.org/jsbn/-/jsbn-0.1.1.tgz", - "integrity": "sha512-UVU9dibq2JcFWxQPA6KCqj5O42VOmAY3zQUfEKxU0KpTGXwNoCjkX1e13eHNvw/xPynt6pU0rZ1htjWTNTSXsg==" + "license": "MIT" }, - "jsdom": { + "node_modules/jsdom": { "version": "16.7.0", - "resolved": "https://registry.npmjs.org/jsdom/-/jsdom-16.7.0.tgz", - "integrity": "sha512-u9Smc2G1USStM+s/x1ru5Sxrl6mPYCbByG1U/hUmqaVsm4tbNyS7CicOSRyuGQYZhTu0h84qkZZQ/I+dzizSVw==", - "requires": { + "license": "MIT", + "dependencies": { "abab": "^2.0.5", "acorn": "^8.2.4", "acorn-globals": "^6.0.0", @@ -37731,205 +14036,254 @@ "whatwg-url": "^8.5.0", "ws": "^7.4.6", "xml-name-validator": "^3.0.0" + }, + "engines": { + "node": ">=10" + }, + "peerDependencies": { + "canvas": "^2.5.0" + }, + "peerDependenciesMeta": { + "canvas": { + "optional": true + } } }, - "jsesc": { + "node_modules/jsesc": { "version": "2.5.2", - "resolved": "https://registry.npmjs.org/jsesc/-/jsesc-2.5.2.tgz", - "integrity": "sha512-OYu7XEzjkCQ3C5Ps3QIZsQfNpqoJyZZA99wd9aWd05NCtC5pWOkShK2mkL6HXQR6/Cy2lbNdPlZBpuQHXE63gA==" + "license": "MIT", + "bin": { + "jsesc": "bin/jsesc" + }, + "engines": { + "node": ">=4" + } }, - "json-bigint": { + "node_modules/json-bigint": { "version": "1.0.0", - "resolved": "https://registry.npmjs.org/json-bigint/-/json-bigint-1.0.0.tgz", - "integrity": "sha512-SiPv/8VpZuWbvLSMtTDU8hEfrZWg/mH/nV/b4o0CYbSxu1UIQPLdwKOCIyLQX+VIPO5vrLX3i8qtqFyhdPSUSQ==", - "requires": { + "license": "MIT", + "dependencies": { "bignumber.js": "^9.0.0" } }, - "json-buffer": { + "node_modules/json-buffer": { "version": "3.0.1", - "resolved": "https://registry.npmjs.org/json-buffer/-/json-buffer-3.0.1.tgz", - "integrity": "sha512-4bV5BfR2mqfQTJm+V5tPPdf+ZpuhiIvTuAB5g8kcrXOZpTT/QwwVRWBywX1ozr6lEuPdbHxwaJlm9G6mI2sfSQ==" + "license": "MIT" }, - "json-parse-even-better-errors": { + "node_modules/json-parse-even-better-errors": { "version": "2.3.1", - "resolved": "https://registry.npmjs.org/json-parse-even-better-errors/-/json-parse-even-better-errors-2.3.1.tgz", - "integrity": "sha512-xyFwyhro/JEof6Ghe2iz2NcXoj2sloNsWr/XsERDK/oiPCfaNhl5ONfp+jQdAZRQQ0IJWNzH9zIZF7li91kh2w==" + "license": "MIT" }, - "json-schema": { + "node_modules/json-schema": { "version": "0.4.0", - "resolved": "https://registry.npmjs.org/json-schema/-/json-schema-0.4.0.tgz", - "integrity": "sha512-es94M3nTIfsEPisRafak+HDLfHXnKBhV3vU5eqPcS3flIWqcxJWgXHXiey3YrpaNsanY5ei1VoYEbOzijuq9BA==" + "license": "(AFL-2.1 OR BSD-3-Clause)" }, - "json-schema-traverse": { + "node_modules/json-schema-traverse": { "version": "0.4.1", - "resolved": "https://registry.npmjs.org/json-schema-traverse/-/json-schema-traverse-0.4.1.tgz", - "integrity": "sha512-xbbCH5dCYU5T8LcEhhuh7HJ88HXuW3qsI3Y0zOZFKfZEHcpWiHU/Jxzk629Brsab/mMiHQti9wMP+845RPe3Vg==" + "license": "MIT" }, - "json-stable-stringify-without-jsonify": { + "node_modules/json-stable-stringify-without-jsonify": { "version": "1.0.1", - "resolved": "https://registry.npmjs.org/json-stable-stringify-without-jsonify/-/json-stable-stringify-without-jsonify-1.0.1.tgz", - "integrity": "sha512-Bdboy+l7tA3OGW6FjyFHWkP5LuByj1Tk33Ljyq0axyzdk9//JSi2u3fP1QSmd1KNwq6VOKYGlAu87CisVir6Pw==" + "license": "MIT" }, - "json-stringify-safe": { + "node_modules/json-stringify-safe": { "version": "5.0.1", - "resolved": "https://registry.npmjs.org/json-stringify-safe/-/json-stringify-safe-5.0.1.tgz", - "integrity": "sha512-ZClg6AaYvamvYEE82d3Iyd3vSSIjQ+odgjaTzRuO3s7toCdFKczob2i0zCh7JE8kWn17yvAWhUVxvqGwUalsRA==" + "license": "ISC" }, - "json5": { + "node_modules/json5": { "version": "2.2.3", - "resolved": "https://registry.npmjs.org/json5/-/json5-2.2.3.tgz", - "integrity": "sha512-XmOWe7eyHYH14cLdVPoyg+GOH3rYX++KpzrylJwSW98t3Nk+U8XOl8FWKOgwtzdb8lXGf6zYwDUzeHMWfxasyg==" + "license": "MIT", + "bin": { + "json5": "lib/cli.js" + }, + "engines": { + "node": ">=6" + } }, - "jsonc-parser": { + "node_modules/jsonc-parser": { "version": "3.2.0", - "resolved": "https://registry.npmjs.org/jsonc-parser/-/jsonc-parser-3.2.0.tgz", - "integrity": "sha512-gfFQZrcTc8CnKXp6Y4/CBT3fTc0OVuDofpre4aEeEpSBPV5X5v4+Vmx+8snU7RLPrNHPKSgLxGo9YuQzz20o+w==" + "license": "MIT" }, - "jsonfile": { + "node_modules/jsonfile": { "version": "6.1.0", - "resolved": "https://registry.npmjs.org/jsonfile/-/jsonfile-6.1.0.tgz", - "integrity": "sha512-5dgndWOriYSm5cnYaJNhalLNDKOqFwyDB/rr1E9ZsGciGvKPs8R2xYGCacuf3z6K1YKDz182fd+fY3cn3pMqXQ==", - "requires": { - "graceful-fs": "^4.1.6", + "license": "MIT", + "dependencies": { "universalify": "^2.0.0" + }, + "optionalDependencies": { + "graceful-fs": "^4.1.6" + } + }, + "node_modules/jsonpointer": { + "version": "5.0.1", + "license": "MIT", + "engines": { + "node": ">=0.10.0" } }, - "jsonpointer": { - "version": "5.0.0", - "resolved": "https://registry.npmjs.org/jsonpointer/-/jsonpointer-5.0.0.tgz", - "integrity": "sha512-PNYZIdMjVIvVgDSYKTT63Y+KZ6IZvGRNNWcxwD+GNnUz1MKPfv30J8ueCjdwcN0nDx2SlshgyB7Oy0epAzVRRg==" - }, - "jsprim": { + "node_modules/jsprim": { "version": "1.4.2", - "resolved": "https://registry.npmjs.org/jsprim/-/jsprim-1.4.2.tgz", - "integrity": "sha512-P2bSOMAc/ciLz6DzgjVlGJP9+BrJWu5UDGK70C2iweC5QBIeFf0ZXRvGjEj2uYgrY2MkAAhsSWHDWlFtEroZWw==", - "requires": { + "license": "MIT", + "dependencies": { "assert-plus": "1.0.0", "extsprintf": "1.3.0", "json-schema": "0.4.0", "verror": "1.10.0" + }, + "engines": { + "node": ">=0.6.0" } }, - "jsx-ast-utils": { - "version": "3.3.1", - "resolved": "https://registry.npmjs.org/jsx-ast-utils/-/jsx-ast-utils-3.3.1.tgz", - "integrity": "sha512-pxrjmNpeRw5wwVeWyEAk7QJu2GnBO3uzPFmHCKJJFPKK2Cy0cWL23krGtLdnMmbIi6/FjlrQpPyfQI19ByPOhQ==", - "requires": { - "array-includes": "^3.1.5", - "object.assign": "^4.1.2" + "node_modules/jsx-ast-utils": { + "version": "3.3.5", + "license": "MIT", + "dependencies": { + "array-includes": "^3.1.6", + "array.prototype.flat": "^1.3.1", + "object.assign": "^4.1.4", + "object.values": "^1.1.6" + }, + "engines": { + "node": ">=4.0" } }, - "keccak": { + "node_modules/keccak": { "version": "3.0.3", - "resolved": "https://registry.npmjs.org/keccak/-/keccak-3.0.3.tgz", - "integrity": "sha512-JZrLIAJWuZxKbCilMpNz5Vj7Vtb4scDG3dMXLOsbzBmQGyjwE61BbW7bJkfKKCShXiQZt3T6sBgALRtmd+nZaQ==", - "requires": { + "hasInstallScript": true, + "license": "MIT", + "dependencies": { "node-addon-api": "^2.0.0", "node-gyp-build": "^4.2.0", "readable-stream": "^3.6.0" + }, + "engines": { + "node": ">=10.0.0" } }, - "keyv": { - "version": "4.5.2", - "resolved": "https://registry.npmjs.org/keyv/-/keyv-4.5.2.tgz", - "integrity": "sha512-5MHbFaKn8cNSmVW7BYnijeAVlE4cYA/SVkifVgrh7yotnfhKmjuXpDKjrABLnT0SfHWV21P8ow07OGfRrNDg8g==", - "requires": { + "node_modules/keyv": { + "version": "4.5.3", + "license": "MIT", + "dependencies": { "json-buffer": "3.0.1" } }, - "kind-of": { + "node_modules/kind-of": { "version": "6.0.3", - "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-6.0.3.tgz", - "integrity": "sha512-dcS1ul+9tmeD95T+x28/ehLgd9mENa3LsvDTtzm3vyBEO7RPptvAD+t44WVXaUjTBRcrpFeFlC8WCruUR456hw==" + "license": "MIT", + "engines": { + "node": ">=0.10.0" + } }, - "klaw": { + "node_modules/klaw": { "version": "1.3.1", - "resolved": "https://registry.npmjs.org/klaw/-/klaw-1.3.1.tgz", - "integrity": "sha512-TED5xi9gGQjGpNnvRWknrwAB1eL5GciPfVFOt3Vk1OJCVDQbzuSfrF3hkUQKlsgKrG1F+0t5W0m+Fje1jIt8rw==", + "license": "MIT", "peer": true, - "requires": { + "optionalDependencies": { "graceful-fs": "^4.1.9" } }, - "kleur": { + "node_modules/kleur": { "version": "3.0.3", - "resolved": "https://registry.npmjs.org/kleur/-/kleur-3.0.3.tgz", - "integrity": "sha512-eTIzlVOSUR+JxdDFepEYcBMtZ9Qqdef+rnzWdRZuMbOywu5tO2w2N7rqjoANZ5k9vywhL6Br1VRjUIgTQx4E8w==" + "license": "MIT", + "engines": { + "node": ">=6" + } }, - "klona": { - "version": "2.0.5", - "resolved": "https://registry.npmjs.org/klona/-/klona-2.0.5.tgz", - "integrity": "sha512-pJiBpiXMbt7dkzXe8Ghj/u4FfXOOa98fPW+bihOJ4SjnoijweJrNThJfd3ifXpXhREjpoF2mZVH1GfS9LV3kHQ==" + "node_modules/klona": { + "version": "2.0.6", + "license": "MIT", + "engines": { + "node": ">= 8" + } }, - "language-subtag-registry": { - "version": "0.3.21", - "resolved": "https://registry.npmjs.org/language-subtag-registry/-/language-subtag-registry-0.3.21.tgz", - "integrity": "sha512-L0IqwlIXjilBVVYKFT37X9Ih11Um5NEl9cbJIuU/SwP/zEEAbBPOnEeeuxVMf45ydWQRDQN3Nqc96OgbH1K+Pg==" + "node_modules/language-subtag-registry": { + "version": "0.3.22", + "license": "CC0-1.0" }, - "language-tags": { + "node_modules/language-tags": { "version": "1.0.5", - "resolved": "https://registry.npmjs.org/language-tags/-/language-tags-1.0.5.tgz", - "integrity": "sha512-qJhlO9cGXi6hBGKoxEG/sKZDAHD5Hnu9Hs4WbOY3pCWXDhw0N8x1NenNzm2EnNLkLkk7J2SdxAkDSbb6ftT+UQ==", - "requires": { + "license": "MIT", + "dependencies": { "language-subtag-registry": "~0.3.2" } }, - "level": { + "node_modules/launch-editor": { + "version": "2.6.0", + "license": "MIT", + "dependencies": { + "picocolors": "^1.0.0", + "shell-quote": "^1.7.3" + } + }, + "node_modules/level": { "version": "8.0.0", - "resolved": "https://registry.npmjs.org/level/-/level-8.0.0.tgz", - "integrity": "sha512-ypf0jjAk2BWI33yzEaaotpq7fkOPALKAgDBxggO6Q9HGX2MRXn0wbP1Jn/tJv1gtL867+YOjOB49WaUF3UoJNQ==", + "license": "MIT", "peer": true, - "requires": { + "dependencies": { "browser-level": "^1.0.1", "classic-level": "^1.2.0" + }, + "engines": { + "node": ">=12" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/level" } }, - "level-supports": { + "node_modules/level-supports": { "version": "4.0.1", - "resolved": "https://registry.npmjs.org/level-supports/-/level-supports-4.0.1.tgz", - "integrity": "sha512-PbXpve8rKeNcZ9C1mUicC9auIYFyGpkV9/i6g76tLgANwWhtG2v7I4xNBUlkn3lE2/dZF3Pi0ygYGtLc4RXXdA==", - "peer": true + "license": "MIT", + "peer": true, + "engines": { + "node": ">=12" + } }, - "level-transcoder": { + "node_modules/level-transcoder": { "version": "1.0.1", - "resolved": "https://registry.npmjs.org/level-transcoder/-/level-transcoder-1.0.1.tgz", - "integrity": "sha512-t7bFwFtsQeD8cl8NIoQ2iwxA0CL/9IFw7/9gAjOonH0PWTTiRfY7Hq+Ejbsxh86tXobDQ6IOiddjNYIfOBs06w==", + "license": "MIT", "peer": true, - "requires": { + "dependencies": { "buffer": "^6.0.3", "module-error": "^1.0.1" + }, + "engines": { + "node": ">=12" } }, - "leven": { + "node_modules/leven": { "version": "3.1.0", - "resolved": "https://registry.npmjs.org/leven/-/leven-3.1.0.tgz", - "integrity": "sha512-qsda+H8jTaUaN/x5vzW2rzc+8Rw4TAQ/4KjB46IwK5VH+IlVeeeje/EoZRpiXvIqjFgK84QffqPztGI3VBLG1A==" + "license": "MIT", + "engines": { + "node": ">=6" + } }, - "levn": { + "node_modules/levn": { "version": "0.4.1", - "resolved": "https://registry.npmjs.org/levn/-/levn-0.4.1.tgz", - "integrity": "sha512-+bT2uH4E5LGE7h/n3evcS/sQlJXCpIp6ym8OWJ5eV6+67Dsql/LaaT7qJBAt2rzfoa/5QBGBhxDix1dMt2kQKQ==", - "requires": { + "license": "MIT", + "dependencies": { "prelude-ls": "^1.2.1", "type-check": "~0.4.0" + }, + "engines": { + "node": ">= 0.8.0" } }, - "lilconfig": { - "version": "2.0.5", - "resolved": "https://registry.npmjs.org/lilconfig/-/lilconfig-2.0.5.tgz", - "integrity": "sha512-xaYmXZtTHPAw5m+xLN8ab9C+3a8YmV3asNSPOATITbtwrfbwaLJj8h66H1WMIpALCkqsIzK3h7oQ+PdX+LQ9Eg==" + "node_modules/lilconfig": { + "version": "2.1.0", + "license": "MIT", + "engines": { + "node": ">=10" + } }, - "lines-and-columns": { + "node_modules/lines-and-columns": { "version": "1.2.4", - "resolved": "https://registry.npmjs.org/lines-and-columns/-/lines-and-columns-1.2.4.tgz", - "integrity": "sha512-7ylylesZQ/PV29jhEDl3Ufjo6ZX7gCqJr5F7PKrqc93v7fzSymt1BpwEU8nAUXs8qzzvqhbjhK5QZg6Mt/HkBg==" + "license": "MIT" }, - "load-bmfont": { + "node_modules/load-bmfont": { "version": "1.4.1", - "resolved": "https://registry.npmjs.org/load-bmfont/-/load-bmfont-1.4.1.tgz", - "integrity": "sha512-8UyQoYmdRDy81Brz6aLAUhfZLwr5zV0L3taTQ4hju7m6biuwiWiJXjPhBJxbUQJA8PrkvJ/7Enqmwk2sM14soA==", - "requires": { + "license": "MIT", + "dependencies": { "buffer-equal": "0.0.1", "mime": "^1.3.4", "parse-bmfont-ascii": "^1.0.3", @@ -37940,460 +14294,490 @@ "xtend": "^4.0.0" } }, - "loader-runner": { + "node_modules/loader-runner": { "version": "4.3.0", - "resolved": "https://registry.npmjs.org/loader-runner/-/loader-runner-4.3.0.tgz", - "integrity": "sha512-3R/1M+yS3j5ou80Me59j7F9IMs4PXs3VqRrm0TU3AbKPxlmpoY1TNscJV/oGJXo8qCatFGTfDbY6W6ipGOYXfg==" + "license": "MIT", + "engines": { + "node": ">=6.11.5" + } }, - "loader-utils": { + "node_modules/loader-utils": { "version": "2.0.4", - "resolved": "https://registry.npmjs.org/loader-utils/-/loader-utils-2.0.4.tgz", - "integrity": "sha512-xXqpXoINfFhgua9xiqD8fPFHgkoq1mmmpE92WlDbm9rNRd/EbRb+Gqf908T2DMfuHjjJlksiK2RbHVOdD/MqSw==", - "requires": { + "license": "MIT", + "dependencies": { "big.js": "^5.2.2", "emojis-list": "^3.0.0", "json5": "^2.1.2" + }, + "engines": { + "node": ">=8.9.0" } }, - "locate-path": { + "node_modules/locate-path": { "version": "6.0.0", - "resolved": "https://registry.npmjs.org/locate-path/-/locate-path-6.0.0.tgz", - "integrity": "sha512-iPZK6eYjbxRu3uB4/WZ3EsEIMJFMqAoopl3R+zuq0UjcAm/MO6KCweDgPfP3elTztoKP3KtnVHxTn2NHBSDVUw==", - "requires": { + "license": "MIT", + "dependencies": { "p-locate": "^5.0.0" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" } }, - "lodash": { + "node_modules/lodash": { + "version": "4.17.21", + "license": "MIT" + }, + "node_modules/lodash-es": { "version": "4.17.21", - "resolved": "https://registry.npmjs.org/lodash/-/lodash-4.17.21.tgz", - "integrity": "sha512-v2kDEe57lecTulaDIuNTPy3Ry4gLGJ6Z1O3vE1krgXZNrsQ+LFTGHVxVjcXPs17LhbZVGedAJv8XZ1tvj5FvSg==" + "license": "MIT" }, - "lodash.camelcase": { + "node_modules/lodash.camelcase": { "version": "4.3.0", - "resolved": "https://registry.npmjs.org/lodash.camelcase/-/lodash.camelcase-4.3.0.tgz", - "integrity": "sha512-TwuEnCnxbc3rAvhf/LbG7tJUDzhqXyFnv3dtzLOPgCG/hODL7WFnsbwktkD7yUV0RrreP/l1PALq/YSg6VvjlA==", - "dev": true + "dev": true, + "license": "MIT" }, - "lodash.debounce": { + "node_modules/lodash.debounce": { "version": "4.0.8", - "resolved": "https://registry.npmjs.org/lodash.debounce/-/lodash.debounce-4.0.8.tgz", - "integrity": "sha512-FT1yDzDYEoYWhnSGnpE/4Kj1fLZkDFyqRb7fNt6FdYOSxlUWAtp42Eh6Wb0rGIv/m9Bgo7x4GhQbm5Ys4SG5ow==" + "license": "MIT" }, - "lodash.memoize": { + "node_modules/lodash.memoize": { "version": "4.1.2", - "resolved": "https://registry.npmjs.org/lodash.memoize/-/lodash.memoize-4.1.2.tgz", - "integrity": "sha512-t7j+NzmgnQzTAYXcsHYLgimltOV1MXHtlOWf6GjL9Kj8GK5FInw5JotxvbOs+IvV1/Dzo04/fCGfLVs7aXb4Ag==" + "license": "MIT" }, - "lodash.merge": { + "node_modules/lodash.merge": { "version": "4.6.2", - "resolved": "https://registry.npmjs.org/lodash.merge/-/lodash.merge-4.6.2.tgz", - "integrity": "sha512-0KpjqXRVvrYyCsX1swR/XTK0va6VQkQM6MNo7PqW77ByjAhoARA8EfrP1N4+KlKj8YS0ZUCtRT/YUuhyYDujIQ==" + "license": "MIT" }, - "lodash.sortby": { + "node_modules/lodash.sortby": { "version": "4.7.0", - "resolved": "https://registry.npmjs.org/lodash.sortby/-/lodash.sortby-4.7.0.tgz", - "integrity": "sha512-HDWXG8isMntAyRF5vZ7xKuEvOhT4AhlRt/3czTSjvGUxjYCBVRQY48ViDHyfYz9VIoBkW4TMGQNapx+l3RUwdA==" + "license": "MIT" }, - "lodash.uniq": { + "node_modules/lodash.uniq": { "version": "4.5.0", - "resolved": "https://registry.npmjs.org/lodash.uniq/-/lodash.uniq-4.5.0.tgz", - "integrity": "sha512-xfBaXQd9ryd9dlSDvnvI0lvxfLJlYAZzXomUYzLKtUeOQvOP5piqAWuGtrhWeqaXK9hhoM/iyJc5AV+XfsX3HQ==" + "license": "MIT" }, - "log-symbols": { + "node_modules/log-symbols": { "version": "4.1.0", - "resolved": "https://registry.npmjs.org/log-symbols/-/log-symbols-4.1.0.tgz", - "integrity": "sha512-8XPvpAA8uyhfteu8pIvQxpJZ7SYYdpUivZpGy6sFsBuKRY/7rQGavedeB8aK+Zkyq6upMFVL/9AW6vOYzfRyLg==", + "license": "MIT", "peer": true, - "requires": { + "dependencies": { "chalk": "^4.1.0", "is-unicode-supported": "^0.1.0" }, - "dependencies": { - "ansi-styles": { - "version": "4.3.0", - "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", - "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", - "peer": true, - "requires": { - "color-convert": "^2.0.1" - } - }, - "chalk": { - "version": "4.1.2", - "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz", - "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==", - "peer": true, - "requires": { - "ansi-styles": "^4.1.0", - "supports-color": "^7.1.0" - } - }, - "color-convert": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz", - "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==", - "peer": true, - "requires": { - "color-name": "~1.1.4" - } - }, - "color-name": { - "version": "1.1.4", - "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz", - "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==", - "peer": true - }, - "has-flag": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz", - "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==", - "peer": true - }, - "supports-color": { - "version": "7.2.0", - "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", - "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", - "peer": true, - "requires": { - "has-flag": "^4.0.0" - } - } + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" } }, - "loose-envify": { + "node_modules/loose-envify": { "version": "1.4.0", - "resolved": "https://registry.npmjs.org/loose-envify/-/loose-envify-1.4.0.tgz", - "integrity": "sha512-lyuxPGr/Wfhrlem2CL/UcnUc1zcqKAImBDzukY7Y5F/yQiNdko6+fRLevlw1HgMySw7f611UIY408EtxRSoK3Q==", - "requires": { + "license": "MIT", + "dependencies": { "js-tokens": "^3.0.0 || ^4.0.0" + }, + "bin": { + "loose-envify": "cli.js" } }, - "lower-case": { + "node_modules/lossless-json": { + "version": "2.0.11", + "license": "MIT" + }, + "node_modules/lower-case": { "version": "2.0.2", - "resolved": "https://registry.npmjs.org/lower-case/-/lower-case-2.0.2.tgz", - "integrity": "sha512-7fm3l3NAF9WfN6W3JOmf5drwpVqX78JtoGJ3A6W0a6ZnldM41w2fV5D490psKFTpMds8TJse/eHLFFsNHHjHgg==", - "requires": { + "license": "MIT", + "dependencies": { "tslib": "^2.0.3" } }, - "lowercase-keys": { + "node_modules/lowercase-keys": { "version": "3.0.0", - "resolved": "https://registry.npmjs.org/lowercase-keys/-/lowercase-keys-3.0.0.tgz", - "integrity": "sha512-ozCC6gdQ+glXOQsveKD0YsDy8DSQFjDTz4zyzEHNV5+JP5D62LmfDZ6o1cycFx9ouG940M5dE8C8CTewdj2YWQ==" + "license": "MIT", + "engines": { + "node": "^12.20.0 || ^14.13.1 || >=16.0.0" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } }, - "lru_map": { + "node_modules/lru_map": { "version": "0.3.3", - "resolved": "https://registry.npmjs.org/lru_map/-/lru_map-0.3.3.tgz", - "integrity": "sha512-Pn9cox5CsMYngeDbmChANltQl+5pi6XmTrraMSzhPmMBbmgcxmqWry0U3PGapCU1yB4/LqCcom7qhHZiF/jGfQ==", + "license": "MIT", "peer": true }, - "lru-cache": { - "version": "6.0.0", - "resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-6.0.0.tgz", - "integrity": "sha512-Jo6dJ04CmSjuznwJSS3pUeWmd/H0ffTlkXXgwZi+eq1UCmqQwCh+eLsYOYCwY991i2Fah4h1BEMCx4qThGbsiA==", - "requires": { - "yallist": "^4.0.0" + "node_modules/lru-cache": { + "version": "5.1.1", + "license": "ISC", + "dependencies": { + "yallist": "^3.0.2" } }, - "lunr": { + "node_modules/lunr": { "version": "2.3.9", - "resolved": "https://registry.npmjs.org/lunr/-/lunr-2.3.9.tgz", - "integrity": "sha512-zTU3DaZaF3Rt9rhN3uBMGQD3dD2/vFQqnvZCDv4dl5iOzq2IZQqTxu90r4E5J+nP70J3ilqVCrbho2eWaeW8Ow==" + "license": "MIT" }, - "lz-string": { - "version": "1.4.4", - "resolved": "https://registry.npmjs.org/lz-string/-/lz-string-1.4.4.tgz", - "integrity": "sha512-0ckx7ZHRPqb0oUm8zNr+90mtf9DQB60H1wMCjBtfi62Kl3a7JbHob6gA2bC+xRvZoOL+1hzUK8jeuEIQE8svEQ==" + "node_modules/lz-string": { + "version": "1.5.0", + "license": "MIT", + "bin": { + "lz-string": "bin/bin.js" + } }, - "magic-string": { + "node_modules/magic-string": { "version": "0.25.9", - "resolved": "https://registry.npmjs.org/magic-string/-/magic-string-0.25.9.tgz", - "integrity": "sha512-RmF0AsMzgt25qzqqLc1+MbHmhdx0ojF2Fvs4XnOqz2ZOBXzzkEwc/dJQZCYHAn7v1jbVOjAZfK8msRn4BxO4VQ==", - "requires": { + "license": "MIT", + "dependencies": { "sourcemap-codec": "^1.4.8" } }, - "make-dir": { + "node_modules/make-dir": { "version": "3.1.0", - "resolved": "https://registry.npmjs.org/make-dir/-/make-dir-3.1.0.tgz", - "integrity": "sha512-g3FeP20LNwhALb/6Cz6Dd4F2ngze0jz7tbzrD2wAV+o9FeNHe4rL+yK2md0J/fiSf1sa1ADhXqi5+oVwOM/eGw==", - "requires": { + "license": "MIT", + "dependencies": { "semver": "^6.0.0" }, - "dependencies": { - "semver": { - "version": "6.3.0", - "resolved": "https://registry.npmjs.org/semver/-/semver-6.3.0.tgz", - "integrity": "sha512-b39TBaTSfV6yBrapU89p5fKekE2m/NwnDocOVruQFS1/veMgdzuPcnOM34M6CwxW8jH/lxEa5rBoDeUwu5HHTw==" - } + "engines": { + "node": ">=8" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" } }, - "make-plural": { - "version": "7.2.0", - "resolved": "https://registry.npmjs.org/make-plural/-/make-plural-7.2.0.tgz", - "integrity": "sha512-WkdI+iaWaBCFM2wUXwos8Z7spg5Dt64Xe/VI6NpRaly21cDtD76N6S97K//UtzV0dHOiXX+E90TnszdXHG0aMg==" + "node_modules/make-dir/node_modules/semver": { + "version": "6.3.1", + "license": "ISC", + "bin": { + "semver": "bin/semver.js" + } + }, + "node_modules/make-plural": { + "version": "7.3.0", + "license": "Unicode-DFS-2016" }, - "makeerror": { + "node_modules/makeerror": { "version": "1.0.12", - "resolved": "https://registry.npmjs.org/makeerror/-/makeerror-1.0.12.tgz", - "integrity": "sha512-JmqCvUhmt43madlpFzG4BQzG2Z3m6tvQDNKdClZnO3VbIudJYmxsT0FNJMeiB2+JTSlTQTSbU8QdesVmwJcmLg==", - "requires": { + "license": "BSD-3-Clause", + "dependencies": { "tmpl": "1.0.5" } }, - "marked": { + "node_modules/marked": { "version": "4.3.0", - "resolved": "https://registry.npmjs.org/marked/-/marked-4.3.0.tgz", - "integrity": "sha512-PRsaiG84bK+AMvxziE/lCFss8juXjNaWzVbN5tXAm4XjeaS9NAHhop+PjQxz2A9h8Q4M/xGmzP8vqNwy6JeK0A==" + "license": "MIT", + "bin": { + "marked": "bin/marked.js" + }, + "engines": { + "node": ">= 12" + } }, - "mcl-wasm": { + "node_modules/mcl-wasm": { "version": "0.7.9", - "resolved": "https://registry.npmjs.org/mcl-wasm/-/mcl-wasm-0.7.9.tgz", - "integrity": "sha512-iJIUcQWA88IJB/5L15GnJVnSQJmf/YaxxV6zRavv83HILHaJQb6y0iFyDMdDO0gN8X37tdxmAOrH/P8B6RB8sQ==", - "peer": true + "license": "BSD-3-Clause", + "peer": true, + "engines": { + "node": ">=8.9.0" + } }, - "md5.js": { + "node_modules/md5.js": { "version": "1.3.5", - "resolved": "https://registry.npmjs.org/md5.js/-/md5.js-1.3.5.tgz", - "integrity": "sha512-xitP+WxNPcTTOgnTJcrhM0xvdPepipPSf3I8EIpGKeFLjt3PlJLIDG3u8EX53ZIubkb+5U2+3rELYpEhHhzdkg==", - "requires": { + "license": "MIT", + "dependencies": { "hash-base": "^3.0.0", "inherits": "^2.0.1", "safe-buffer": "^5.1.2" } }, - "mdn-data": { + "node_modules/mdn-data": { "version": "2.0.4", - "resolved": "https://registry.npmjs.org/mdn-data/-/mdn-data-2.0.4.tgz", - "integrity": "sha512-iV3XNKw06j5Q7mi6h+9vbx23Tv7JkjEVgKHW4pimwyDGWm0OIQntJJ+u1C6mg6mK1EaTv42XQ7w76yuzH7M2cA==" + "license": "CC0-1.0" }, - "media-typer": { + "node_modules/media-typer": { "version": "0.3.0", - "resolved": "https://registry.npmjs.org/media-typer/-/media-typer-0.3.0.tgz", - "integrity": "sha512-dq+qelQ9akHpcOl/gUVRTxVIOkAJ1wR3QAvb4RsVjS8oVoFjDGTc679wJYmUmknUF5HwMLOgb5O+a3KxfWapPQ==" + "license": "MIT", + "engines": { + "node": ">= 0.6" + } }, - "memfs": { - "version": "3.4.7", - "resolved": "https://registry.npmjs.org/memfs/-/memfs-3.4.7.tgz", - "integrity": "sha512-ygaiUSNalBX85388uskeCyhSAoOSgzBbtVCr9jA2RROssFL9Q19/ZXFqS+2Th2sr1ewNIWgFdLzLC3Yl1Zv+lw==", - "requires": { - "fs-monkey": "^1.0.3" + "node_modules/memfs": { + "version": "3.5.3", + "license": "Unlicense", + "dependencies": { + "fs-monkey": "^1.0.4" + }, + "engines": { + "node": ">= 4.0.0" } }, - "memoize-one": { + "node_modules/memoize-one": { "version": "5.2.1", - "resolved": "https://registry.npmjs.org/memoize-one/-/memoize-one-5.2.1.tgz", - "integrity": "sha512-zYiwtZUcYyXKo/np96AGZAckk+FWWsUdJ3cHGGmld7+AhvcWmQyGCYUh1hc4Q/pkOhb65dQR/pqCyK0cOaHz4Q==" + "license": "MIT" }, - "memory-level": { + "node_modules/memory-level": { "version": "1.0.0", - "resolved": "https://registry.npmjs.org/memory-level/-/memory-level-1.0.0.tgz", - "integrity": "sha512-UXzwewuWeHBz5krr7EvehKcmLFNoXxGcvuYhC41tRnkrTbJohtS7kVn9akmgirtRygg+f7Yjsfi8Uu5SGSQ4Og==", + "license": "MIT", "peer": true, - "requires": { + "dependencies": { "abstract-level": "^1.0.0", "functional-red-black-tree": "^1.0.1", "module-error": "^1.0.1" + }, + "engines": { + "node": ">=12" } }, - "memorystream": { + "node_modules/memorystream": { "version": "0.3.1", - "resolved": "https://registry.npmjs.org/memorystream/-/memorystream-0.3.1.tgz", - "integrity": "sha512-S3UwM3yj5mtUSEfP41UZmt/0SCoVYUcU1rkXv+BQ5Ig8ndL4sPoJNBUJERafdPb5jjHJGuMgytgKvKIf58XNBw==", - "peer": true + "peer": true, + "engines": { + "node": ">= 0.10.0" + } }, - "merge-descriptors": { + "node_modules/merge-descriptors": { "version": "1.0.1", - "resolved": "https://registry.npmjs.org/merge-descriptors/-/merge-descriptors-1.0.1.tgz", - "integrity": "sha512-cCi6g3/Zr1iqQi6ySbseM1Xvooa98N0w31jzUYrXPX2xqObmFGHJ0tQ5u74H3mVh7wLouTseZyYIq39g8cNp1w==" + "license": "MIT" }, - "merge-stream": { + "node_modules/merge-stream": { "version": "2.0.0", - "resolved": "https://registry.npmjs.org/merge-stream/-/merge-stream-2.0.0.tgz", - "integrity": "sha512-abv/qOcuPfk3URPfDzmZU1LKmuw8kT+0nIHvKrKgFrwifol/doWcdA4ZqsWQ8ENrFKkd67Mfpo/LovbIUsbt3w==" + "license": "MIT" }, - "merge2": { + "node_modules/merge2": { "version": "1.4.1", - "resolved": "https://registry.npmjs.org/merge2/-/merge2-1.4.1.tgz", - "integrity": "sha512-8q7VEgMJW4J8tcfVPy8g09NcQwZdbwFEqhe/WZkoIzjn/3TGDwtOCYtXGxA3O8tPzpczCCDgv+P2P5y00ZJOOg==" + "license": "MIT", + "engines": { + "node": ">= 8" + } }, - "methods": { + "node_modules/methods": { "version": "1.1.2", - "resolved": "https://registry.npmjs.org/methods/-/methods-1.1.2.tgz", - "integrity": "sha512-iclAHeNqNm68zFtnZ0e+1L2yUIdvzNoauKU4WBA3VvH/vPFieF7qfRlwUZU+DA9P9bPXIS90ulxoUoCH23sV2w==" + "license": "MIT", + "engines": { + "node": ">= 0.6" + } + }, + "node_modules/micro-ftch": { + "version": "0.3.1", + "license": "MIT" + }, + "node_modules/micro-starknet": { + "version": "0.2.3", + "funding": [ + { + "type": "individual", + "url": "https://paulmillr.com/funding/" + } + ], + "license": "MIT", + "dependencies": { + "@noble/curves": "~1.0.0", + "@noble/hashes": "~1.3.0" + } }, - "micromatch": { + "node_modules/micromatch": { "version": "4.0.5", - "resolved": "https://registry.npmjs.org/micromatch/-/micromatch-4.0.5.tgz", - "integrity": "sha512-DMy+ERcEW2q8Z2Po+WNXuw3c5YaUSFjAO5GsJqfEl7UjvtIuFKO6ZrKvcItdy98dwFI2N1tg3zNIdKaQT+aNdA==", - "requires": { + "license": "MIT", + "dependencies": { "braces": "^3.0.2", "picomatch": "^2.3.1" + }, + "engines": { + "node": ">=8.6" } }, - "mime": { + "node_modules/mime": { "version": "1.6.0", - "resolved": "https://registry.npmjs.org/mime/-/mime-1.6.0.tgz", - "integrity": "sha512-x0Vn8spI+wuJ1O6S7gnbaQg8Pxh4NNHb7KSINmEWKiPE4RKOplvijn+NkmYmmRgP68mc70j2EbeTFRsrswaQeg==" + "license": "MIT", + "bin": { + "mime": "cli.js" + }, + "engines": { + "node": ">=4" + } }, - "mime-db": { + "node_modules/mime-db": { "version": "1.52.0", - "resolved": "https://registry.npmjs.org/mime-db/-/mime-db-1.52.0.tgz", - "integrity": "sha512-sPU4uV7dYlvtWJxwwxHD0PuihVNiE7TyAbQ5SWxDCB9mUYvOgroQOwYQQOKPJ8CIbE+1ETVlOoK1UC2nU3gYvg==" + "license": "MIT", + "engines": { + "node": ">= 0.6" + } }, - "mime-types": { + "node_modules/mime-types": { "version": "2.1.35", - "resolved": "https://registry.npmjs.org/mime-types/-/mime-types-2.1.35.tgz", - "integrity": "sha512-ZDY+bPm5zTTF+YpCrAU9nK0UgICYPT0QtT1NZWFv4s++TNkcgVaT0g6+4R2uI4MjQjzysHB1zxuWL50hzaeXiw==", - "requires": { + "license": "MIT", + "dependencies": { "mime-db": "1.52.0" + }, + "engines": { + "node": ">= 0.6" } }, - "mimic-fn": { + "node_modules/mimic-fn": { "version": "2.1.0", - "resolved": "https://registry.npmjs.org/mimic-fn/-/mimic-fn-2.1.0.tgz", - "integrity": "sha512-OqbOk5oEQeAZ8WXWydlu9HJjz9WVdEIvamMCcXmuqUYjTknH/sqsWvhQ3vgwKFRR1HpjvNBKQ37nbJgYzGqGcg==" + "license": "MIT", + "engines": { + "node": ">=6" + } }, - "mimic-response": { + "node_modules/mimic-response": { "version": "1.0.1", - "resolved": "https://registry.npmjs.org/mimic-response/-/mimic-response-1.0.1.tgz", - "integrity": "sha512-j5EctnkH7amfV/q5Hgmoal1g2QHFJRraOtmx0JpIqkxhBhI/lJSl1nMpQ45hVarwNETOoWEimndZ4QK0RHxuxQ==" + "license": "MIT", + "engines": { + "node": ">=4" + } }, - "min-document": { + "node_modules/min-document": { "version": "2.19.0", - "resolved": "https://registry.npmjs.org/min-document/-/min-document-2.19.0.tgz", - "integrity": "sha512-9Wy1B3m3f66bPPmU5hdA4DR4PB2OfDU/+GS3yAB7IQozE3tqXaVv2zOjgla7MEGSRv95+ILmOuvhLkOK6wJtCQ==", - "requires": { + "dependencies": { "dom-walk": "^0.1.0" } }, - "min-indent": { + "node_modules/min-indent": { "version": "1.0.1", - "resolved": "https://registry.npmjs.org/min-indent/-/min-indent-1.0.1.tgz", - "integrity": "sha512-I9jwMn07Sy/IwOj3zVkVik2JTvgpaykDZEigL6Rx6N9LbMywwUSMtxET+7lVoDLLd3O3IXwJwvuuns8UB/HeAg==" - }, - "mini-css-extract-plugin": { - "version": "2.6.1", - "resolved": "https://registry.npmjs.org/mini-css-extract-plugin/-/mini-css-extract-plugin-2.6.1.tgz", - "integrity": "sha512-wd+SD57/K6DiV7jIR34P+s3uckTRuQvx0tKPcvjFlrEylk6P4mQ2KSWk1hblj1Kxaqok7LogKOieygXqBczNlg==", - "requires": { + "license": "MIT", + "engines": { + "node": ">=4" + } + }, + "node_modules/mini-css-extract-plugin": { + "version": "2.7.6", + "license": "MIT", + "dependencies": { "schema-utils": "^4.0.0" }, + "engines": { + "node": ">= 12.13.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/webpack" + }, + "peerDependencies": { + "webpack": "^5.0.0" + } + }, + "node_modules/mini-css-extract-plugin/node_modules/ajv": { + "version": "8.12.0", + "license": "MIT", + "dependencies": { + "fast-deep-equal": "^3.1.1", + "json-schema-traverse": "^1.0.0", + "require-from-string": "^2.0.2", + "uri-js": "^4.2.2" + }, + "funding": { + "type": "github", + "url": "https://github.com/sponsors/epoberezkin" + } + }, + "node_modules/mini-css-extract-plugin/node_modules/ajv-keywords": { + "version": "5.1.0", + "license": "MIT", "dependencies": { - "ajv": { - "version": "8.11.0", - "resolved": "https://registry.npmjs.org/ajv/-/ajv-8.11.0.tgz", - "integrity": "sha512-wGgprdCvMalC0BztXvitD2hC04YffAvtsUn93JbGXYLAtCUO4xd17mCCZQxUOItiBwZvJScWo8NIvQMQ71rdpg==", - "requires": { - "fast-deep-equal": "^3.1.1", - "json-schema-traverse": "^1.0.0", - "require-from-string": "^2.0.2", - "uri-js": "^4.2.2" - } - }, - "ajv-keywords": { - "version": "5.1.0", - "resolved": "https://registry.npmjs.org/ajv-keywords/-/ajv-keywords-5.1.0.tgz", - "integrity": "sha512-YCS/JNFAUyr5vAuhk1DWm1CBxRHW9LbJ2ozWeemrIqpbsqKjHVxYPyi5GC0rjZIT5JxJ3virVTS8wk4i/Z+krw==", - "requires": { - "fast-deep-equal": "^3.1.3" - } - }, - "json-schema-traverse": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/json-schema-traverse/-/json-schema-traverse-1.0.0.tgz", - "integrity": "sha512-NM8/P9n3XjXhIZn1lLhkFaACTOURQXjWhV4BA/RnOv8xvgqtqpAX9IO4mRQxSx1Rlo4tqzeqb0sOlruaOy3dug==" - }, - "schema-utils": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/schema-utils/-/schema-utils-4.0.0.tgz", - "integrity": "sha512-1edyXKgh6XnJsJSQ8mKWXnN/BVaIbFMLpouRUrXgVq7WYne5kw3MW7UPhO44uRXQSIpTSXoJbmrR2X0w9kUTyg==", - "requires": { - "@types/json-schema": "^7.0.9", - "ajv": "^8.8.0", - "ajv-formats": "^2.1.1", - "ajv-keywords": "^5.0.0" - } - } + "fast-deep-equal": "^3.1.3" + }, + "peerDependencies": { + "ajv": "^8.8.2" + } + }, + "node_modules/mini-css-extract-plugin/node_modules/json-schema-traverse": { + "version": "1.0.0", + "license": "MIT" + }, + "node_modules/mini-css-extract-plugin/node_modules/schema-utils": { + "version": "4.2.0", + "license": "MIT", + "dependencies": { + "@types/json-schema": "^7.0.9", + "ajv": "^8.9.0", + "ajv-formats": "^2.1.1", + "ajv-keywords": "^5.1.0" + }, + "engines": { + "node": ">= 12.13.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/webpack" } }, - "minimalistic-assert": { + "node_modules/minimalistic-assert": { "version": "1.0.1", - "resolved": "https://registry.npmjs.org/minimalistic-assert/-/minimalistic-assert-1.0.1.tgz", - "integrity": "sha512-UtJcAD4yEaGtjPezWuO9wC4nwUnVH/8/Im3yEHQP4b67cXlD/Qr9hdITCU1xDbSEXg2XKNaP8jsReV7vQd00/A==" + "license": "ISC" }, - "minimalistic-crypto-utils": { + "node_modules/minimalistic-crypto-utils": { "version": "1.0.1", - "resolved": "https://registry.npmjs.org/minimalistic-crypto-utils/-/minimalistic-crypto-utils-1.0.1.tgz", - "integrity": "sha512-JIYlbt6g8i5jKfJ3xz7rF0LXmv2TkDxBLUkiBeZ7bAx4GnnNMr8xFpGnOxn6GhTEHx3SjRrZEoU+j04prX1ktg==" + "license": "MIT" }, - "minimatch": { + "node_modules/minimatch": { "version": "3.1.2", - "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-3.1.2.tgz", - "integrity": "sha512-J7p63hRiAjw1NDEww1W7i37+ByIrOWO5XQQAzZ3VOcL0PNybwpfmV/N05zFAzwQ9USyEcX6t3UO+K5aqBQOIHw==", - "requires": { + "license": "ISC", + "dependencies": { "brace-expansion": "^1.1.7" + }, + "engines": { + "node": "*" } }, - "minimist": { - "version": "1.2.6", - "resolved": "https://registry.npmjs.org/minimist/-/minimist-1.2.6.tgz", - "integrity": "sha512-Jsjnk4bw3YJqYzbdyBiNsPWHPfO++UGG749Cxs6peCu5Xg4nrena6OVxOYxrQTqww0Jmwt+Ref8rggumkTLz9Q==" + "node_modules/minimist": { + "version": "1.2.8", + "license": "MIT", + "funding": { + "url": "https://github.com/sponsors/ljharb" + } }, - "minipass": { + "node_modules/minipass": { "version": "2.9.0", - "resolved": "https://registry.npmjs.org/minipass/-/minipass-2.9.0.tgz", - "integrity": "sha512-wxfUjg9WebH+CUDX/CdbRlh5SmfZiy/hpkxaRI16Y9W56Pa75sWgd/rvFilSgrauD9NyFymP/+JFV3KwzIsJeg==", - "requires": { + "license": "ISC", + "dependencies": { "safe-buffer": "^5.1.2", "yallist": "^3.0.0" - }, - "dependencies": { - "yallist": { - "version": "3.1.1", - "resolved": "https://registry.npmjs.org/yallist/-/yallist-3.1.1.tgz", - "integrity": "sha512-a4UGQaWPH59mOXUYnAG2ewncQS4i4F43Tv3JoAM+s2VDAmS9NsK8GpDMLrCHPksFT7h3K6TOoUNn2pb7RoXx4g==" - } } }, - "minizlib": { + "node_modules/minizlib": { "version": "1.3.3", - "resolved": "https://registry.npmjs.org/minizlib/-/minizlib-1.3.3.tgz", - "integrity": "sha512-6ZYMOEnmVsdCeTJVE0W9ZD+pVnE8h9Hma/iOwwRDsdQoePpoX56/8B6z3P9VNwppJuBKNRuFDRNRqRWexT9G9Q==", - "requires": { + "license": "MIT", + "dependencies": { "minipass": "^2.9.0" } }, - "mkdirp": { + "node_modules/mkdirp": { "version": "0.5.6", - "resolved": "https://registry.npmjs.org/mkdirp/-/mkdirp-0.5.6.tgz", - "integrity": "sha512-FP+p8RB8OWpF3YZBCrP5gtADmtXApB5AMLn+vdyA+PyxCjrCs00mjyUozssO33cwDeT3wNGdLxJ5M//YqtHAJw==", - "requires": { + "license": "MIT", + "dependencies": { "minimist": "^1.2.6" + }, + "bin": { + "mkdirp": "bin/cmd.js" } }, - "mkdirp-promise": { + "node_modules/mkdirp-promise": { "version": "5.0.1", - "resolved": "https://registry.npmjs.org/mkdirp-promise/-/mkdirp-promise-5.0.1.tgz", - "integrity": "sha512-Hepn5kb1lJPtVW84RFT40YG1OddBNTOVUZR2bzQUHc+Z03en8/3uX0+060JDhcEzyO08HmipsN9DcnFMxhIL9w==", - "requires": { + "license": "ISC", + "dependencies": { "mkdirp": "*" + }, + "engines": { + "node": ">=4" } }, - "mnemonist": { + "node_modules/mnemonist": { "version": "0.38.5", - "resolved": "https://registry.npmjs.org/mnemonist/-/mnemonist-0.38.5.tgz", - "integrity": "sha512-bZTFT5rrPKtPJxj8KSV0WkPyNxl72vQepqqVUAW2ARUpUSF2qXMB6jZj7hW5/k7C1rtpzqbD/IIbJwLXUjCHeg==", - "requires": { + "license": "MIT", + "peer": true, + "dependencies": { "obliterator": "^2.0.0" } }, - "mocha": { + "node_modules/mocha": { "version": "10.2.0", - "resolved": "https://registry.npmjs.org/mocha/-/mocha-10.2.0.tgz", - "integrity": "sha512-IDY7fl/BecMwFHzoqF2sg/SHHANeBoMMXFlS9r0OXKDssYE1M5O43wUY/9BVPeIvfH2zmEbBfseqN9gBQZzXkg==", + "license": "MIT", "peer": true, - "requires": { + "dependencies": { "ansi-colors": "4.1.1", "browser-stdout": "1.3.1", "chokidar": "3.5.3", @@ -38416,385 +14800,358 @@ "yargs-parser": "20.2.4", "yargs-unparser": "2.0.0" }, + "bin": { + "_mocha": "bin/_mocha", + "mocha": "bin/mocha.js" + }, + "engines": { + "node": ">= 14.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/mochajs" + } + }, + "node_modules/mocha/node_modules/ansi-colors": { + "version": "4.1.1", + "license": "MIT", + "peer": true, + "engines": { + "node": ">=6" + } + }, + "node_modules/mocha/node_modules/argparse": { + "version": "2.0.1", + "license": "Python-2.0", + "peer": true + }, + "node_modules/mocha/node_modules/glob": { + "version": "7.2.0", + "license": "ISC", + "peer": true, + "dependencies": { + "fs.realpath": "^1.0.0", + "inflight": "^1.0.4", + "inherits": "2", + "minimatch": "^3.0.4", + "once": "^1.3.0", + "path-is-absolute": "^1.0.0" + }, + "engines": { + "node": "*" + }, + "funding": { + "url": "https://github.com/sponsors/isaacs" + } + }, + "node_modules/mocha/node_modules/glob/node_modules/minimatch": { + "version": "3.1.2", + "license": "ISC", + "peer": true, "dependencies": { - "ansi-colors": { - "version": "4.1.1", - "resolved": "https://registry.npmjs.org/ansi-colors/-/ansi-colors-4.1.1.tgz", - "integrity": "sha512-JoX0apGbHaUJBNl6yF+p6JAFYZ666/hhCGKN5t9QFjbJQKUU/g8MNbFDbvfrgKXvI1QpZplPOnwIo99lX/AAmA==", - "peer": true - }, - "argparse": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/argparse/-/argparse-2.0.1.tgz", - "integrity": "sha512-8+9WqebbFzpX9OR+Wa6O29asIogeRMzcGtAINdpMHHyAg10f05aSFVBbcEqGf/PXw1EjAZ+q2/bEBg3DvurK3Q==", - "peer": true - }, - "escape-string-regexp": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/escape-string-regexp/-/escape-string-regexp-4.0.0.tgz", - "integrity": "sha512-TtpcNJ3XAzx3Gq8sWRzJaVajRs0uVxA2YAkdb1jm2YkPz4G6egUFAyA3n5vtEIZefPk5Wa4UXbKuS5fKkJWdgA==", - "peer": true - }, - "glob": { - "version": "7.2.0", - "resolved": "https://registry.npmjs.org/glob/-/glob-7.2.0.tgz", - "integrity": "sha512-lmLf6gtyrPq8tTjSmrO94wBeQbFR3HbLHbuyD69wuyQkImp2hWqMGB47OX65FBkPffO641IP9jWa1z4ivqG26Q==", - "peer": true, - "requires": { - "fs.realpath": "^1.0.0", - "inflight": "^1.0.4", - "inherits": "2", - "minimatch": "^3.0.4", - "once": "^1.3.0", - "path-is-absolute": "^1.0.0" - }, - "dependencies": { - "minimatch": { - "version": "3.1.2", - "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-3.1.2.tgz", - "integrity": "sha512-J7p63hRiAjw1NDEww1W7i37+ByIrOWO5XQQAzZ3VOcL0PNybwpfmV/N05zFAzwQ9USyEcX6t3UO+K5aqBQOIHw==", - "peer": true, - "requires": { - "brace-expansion": "^1.1.7" - } - } - } - }, - "has-flag": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz", - "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==", - "peer": true - }, - "js-yaml": { - "version": "4.1.0", - "resolved": "https://registry.npmjs.org/js-yaml/-/js-yaml-4.1.0.tgz", - "integrity": "sha512-wpxZs9NoxZaJESJGIZTyDEaYpl0FKSA+FB9aJiyemKhMwkxQg63h4T1KJgUGHpTqPDNRcmmYLugrRjJlBtWvRA==", - "peer": true, - "requires": { - "argparse": "^2.0.1" - } - }, - "minimatch": { - "version": "5.0.1", - "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-5.0.1.tgz", - "integrity": "sha512-nLDxIFRyhDblz3qMuq+SoRZED4+miJ/G+tdDrjkkkRnjAsBexeGpgjLEQ0blJy7rHhR2b93rhQY4SvyWu9v03g==", - "peer": true, - "requires": { - "brace-expansion": "^2.0.1" - }, - "dependencies": { - "brace-expansion": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-2.0.1.tgz", - "integrity": "sha512-XnAIvQ8eM+kC6aULx6wuQiwVsnzsi9d3WxzV3FpWTGA19F621kwdbsAcFKXgKUHZWsy+mY6iL1sHTxWEFCytDA==", - "peer": true, - "requires": { - "balanced-match": "^1.0.0" - } - } - } - }, - "ms": { - "version": "2.1.3", - "resolved": "https://registry.npmjs.org/ms/-/ms-2.1.3.tgz", - "integrity": "sha512-6FlzubTLZG3J2a/NVCAleEhjzq5oxgHyaCU9yYXvcLsvoVaHJq/s5xXI6/XXP6tz7R9xAOtHnSO/tXtF3WRTlA==", - "peer": true - }, - "nanoid": { - "version": "3.3.3", - "resolved": "https://registry.npmjs.org/nanoid/-/nanoid-3.3.3.tgz", - "integrity": "sha512-p1sjXuopFs0xg+fPASzQ28agW1oHD7xDsd9Xkf3T15H3c/cifrFHVwrh74PdoklAPi+i7MdRsE47vm2r6JoB+w==", - "peer": true - }, - "serialize-javascript": { - "version": "6.0.0", - "resolved": "https://registry.npmjs.org/serialize-javascript/-/serialize-javascript-6.0.0.tgz", - "integrity": "sha512-Qr3TosvguFt8ePWqsvRfrKyQXIiW+nGbYpy8XK24NQHE83caxWt+mIymTT19DGFbNWNLfEwsrkSmN64lVWB9ag==", - "peer": true, - "requires": { - "randombytes": "^2.1.0" - } - }, - "supports-color": { - "version": "8.1.1", - "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-8.1.1.tgz", - "integrity": "sha512-MpUEN2OodtUzxvKQl72cUF7RQ5EiHsGvSsVG0ia9c5RbWGL2CI4C7EpPS8UTBIplnlzZiNuV56w+FuNxy3ty2Q==", - "peer": true, - "requires": { - "has-flag": "^4.0.0" - } - }, - "yargs-parser": { - "version": "20.2.4", - "resolved": "https://registry.npmjs.org/yargs-parser/-/yargs-parser-20.2.4.tgz", - "integrity": "sha512-WOkpgNhPTlE73h4VFAFsOnomJVaovO8VqLDzy5saChRBFQFBoMYirowyW+Q9HB4HFF4Z7VZTiG3iSzJJA29yRA==", - "peer": true - } + "brace-expansion": "^1.1.7" + }, + "engines": { + "node": "*" } }, - "mock-fs": { - "version": "4.14.0", - "resolved": "https://registry.npmjs.org/mock-fs/-/mock-fs-4.14.0.tgz", - "integrity": "sha512-qYvlv/exQ4+svI3UOvPUpLDF0OMX5euvUH0Ny4N5QyRyhNdgAgUrVH3iUINSzEPLvx0kbo/Bp28GJKIqvE7URw==" + "node_modules/mocha/node_modules/js-yaml": { + "version": "4.1.0", + "license": "MIT", + "peer": true, + "dependencies": { + "argparse": "^2.0.1" + }, + "bin": { + "js-yaml": "bin/js-yaml.js" + } }, - "module-error": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/module-error/-/module-error-1.0.2.tgz", - "integrity": "sha512-0yuvsqSCv8LbaOKhnsQ/T5JhyFlCYLPXK3U2sgV10zoKQwzs/MyfuQUOZQ1V/6OCOJsK/TRgNVrPuPDqtdMFtA==", + "node_modules/mocha/node_modules/minimatch": { + "version": "5.0.1", + "license": "ISC", + "peer": true, + "dependencies": { + "brace-expansion": "^2.0.1" + }, + "engines": { + "node": ">=10" + } + }, + "node_modules/mocha/node_modules/minimatch/node_modules/brace-expansion": { + "version": "2.0.1", + "license": "MIT", + "peer": true, + "dependencies": { + "balanced-match": "^1.0.0" + } + }, + "node_modules/mocha/node_modules/ms": { + "version": "2.1.3", + "license": "MIT", "peer": true }, - "moment": { - "version": "2.29.4", - "resolved": "https://registry.npmjs.org/moment/-/moment-2.29.4.tgz", - "integrity": "sha512-5LC9SOxjSc2HF6vO2CyuTDNivEdoz2IvyJJGj6X8DJ0eFyfszE0QiEd+iXmBvUP3WHxSjFH/vIsA0EN00cgr8w==", - "optional": true + "node_modules/mocha/node_modules/nanoid": { + "version": "3.3.3", + "license": "MIT", + "peer": true, + "bin": { + "nanoid": "bin/nanoid.cjs" + }, + "engines": { + "node": "^10 || ^12 || ^13.7 || ^14 || >=15.0.1" + } + }, + "node_modules/mocha/node_modules/serialize-javascript": { + "version": "6.0.0", + "license": "BSD-3-Clause", + "peer": true, + "dependencies": { + "randombytes": "^2.1.0" + } + }, + "node_modules/mocha/node_modules/supports-color": { + "version": "8.1.1", + "license": "MIT", + "peer": true, + "dependencies": { + "has-flag": "^4.0.0" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/chalk/supports-color?sponsor=1" + } + }, + "node_modules/mock-fs": { + "version": "4.14.0", + "license": "MIT" + }, + "node_modules/module-error": { + "version": "1.0.2", + "license": "MIT", + "peer": true, + "engines": { + "node": ">=10" + } }, - "ms": { + "node_modules/ms": { "version": "2.1.2", - "resolved": "https://registry.npmjs.org/ms/-/ms-2.1.2.tgz", - "integrity": "sha512-sGkPx+VjMtmA6MX27oA4FBFELFCZZ4S4XqeGOXCv68tT+jb3vk/RyaKWP0PTKyWtmLSM0b+adUTEvbs1PEaH2w==" + "license": "MIT" }, - "ms.macro": { + "node_modules/ms.macro": { "version": "2.0.0", - "resolved": "https://registry.npmjs.org/ms.macro/-/ms.macro-2.0.0.tgz", - "integrity": "sha512-vkb83Sa4BZ2ynF/C1x5D8ofExja36mYW6OB7JNh6Ek0NSw3Oj4moM0nN69rfbm28aHlON52E+dTEgW+3up3x1g==", - "requires": { + "license": "MIT", + "dependencies": { "babel-plugin-macros": "^2.0.0", "ms": "^2.0.0" + } + }, + "node_modules/ms.macro/node_modules/babel-plugin-macros": { + "version": "2.8.0", + "license": "MIT", + "dependencies": { + "@babel/runtime": "^7.7.2", + "cosmiconfig": "^6.0.0", + "resolve": "^1.12.0" + } + }, + "node_modules/ms.macro/node_modules/cosmiconfig": { + "version": "6.0.0", + "license": "MIT", + "dependencies": { + "@types/parse-json": "^4.0.0", + "import-fresh": "^3.1.0", + "parse-json": "^5.0.0", + "path-type": "^4.0.0", + "yaml": "^1.7.2" }, - "dependencies": { - "babel-plugin-macros": { - "version": "2.8.0", - "resolved": "https://registry.npmjs.org/babel-plugin-macros/-/babel-plugin-macros-2.8.0.tgz", - "integrity": "sha512-SEP5kJpfGYqYKpBrj5XU3ahw5p5GOHJ0U5ssOSQ/WBVdwkD2Dzlce95exQTs3jOVWPPKLBN2rlEWkCK7dSmLvg==", - "requires": { - "@babel/runtime": "^7.7.2", - "cosmiconfig": "^6.0.0", - "resolve": "^1.12.0" - } - }, - "cosmiconfig": { - "version": "6.0.0", - "resolved": "https://registry.npmjs.org/cosmiconfig/-/cosmiconfig-6.0.0.tgz", - "integrity": "sha512-xb3ZL6+L8b9JLLCx3ZdoZy4+2ECphCMo2PwqgP1tlfVq6M6YReyzBJtvWWtbDSpNr9hn96pkCiZqUcFEc+54Qg==", - "requires": { - "@types/parse-json": "^4.0.0", - "import-fresh": "^3.1.0", - "parse-json": "^5.0.0", - "path-type": "^4.0.0", - "yaml": "^1.7.2" - } - } + "engines": { + "node": ">=8" } }, - "multibase": { + "node_modules/multibase": { "version": "4.0.6", - "resolved": "https://registry.npmjs.org/multibase/-/multibase-4.0.6.tgz", - "integrity": "sha512-x23pDe5+svdLz/k5JPGCVdfn7Q5mZVMBETiC+ORfO+sor9Sgs0smJzAjfTbM5tckeCqnaUuMYoz+k3RXMmJClQ==", - "requires": { + "license": "MIT", + "dependencies": { "@multiformats/base-x": "^4.0.1" + }, + "engines": { + "node": ">=12.0.0", + "npm": ">=6.0.0" } }, - "multicast-dns": { + "node_modules/multicast-dns": { "version": "7.2.5", - "resolved": "https://registry.npmjs.org/multicast-dns/-/multicast-dns-7.2.5.tgz", - "integrity": "sha512-2eznPJP8z2BFLX50tf0LuODrpINqP1RVIm/CObbTcBRITQgmC/TjcREF1NeTBzIcR5XO/ukWo+YHOjBbFwIupg==", - "requires": { + "license": "MIT", + "dependencies": { "dns-packet": "^5.2.2", "thunky": "^1.0.2" + }, + "bin": { + "multicast-dns": "cli.js" } }, - "multicodec": { + "node_modules/multicodec": { "version": "3.2.1", - "resolved": "https://registry.npmjs.org/multicodec/-/multicodec-3.2.1.tgz", - "integrity": "sha512-+expTPftro8VAW8kfvcuNNNBgb9gPeNYV9dn+z1kJRWF2vih+/S79f2RVeIwmrJBUJ6NT9IUPWnZDQvegEh5pw==", - "requires": { + "license": "MIT", + "dependencies": { "uint8arrays": "^3.0.0", "varint": "^6.0.0" } }, - "multiformats": { + "node_modules/multiformats": { "version": "9.9.0", - "resolved": "https://registry.npmjs.org/multiformats/-/multiformats-9.9.0.tgz", - "integrity": "sha512-HoMUjhH9T8DDBNT+6xzkrd9ga/XiBI4xLr58LJACwK6G3HTOPeMz4nB4KJs33L2BelrIJa7P0VuNaVF3hMYfjg==" + "license": "(Apache-2.0 AND MIT)" }, - "multihashes": { + "node_modules/multihashes": { "version": "4.0.3", - "resolved": "https://registry.npmjs.org/multihashes/-/multihashes-4.0.3.tgz", - "integrity": "sha512-0AhMH7Iu95XjDLxIeuCOOE4t9+vQZsACyKZ9Fxw2pcsRmlX4iCn1mby0hS0bb+nQOVpdQYWPpnyusw4da5RPhA==", - "requires": { + "license": "MIT", + "dependencies": { "multibase": "^4.0.1", "uint8arrays": "^3.0.0", "varint": "^5.0.2" }, - "dependencies": { - "varint": { - "version": "5.0.2", - "resolved": "https://registry.npmjs.org/varint/-/varint-5.0.2.tgz", - "integrity": "sha512-lKxKYG6H03yCZUpAGOPOsMcGxd1RHCu1iKvEHYDPmTyq2HueGhD73ssNBqqQWfvYs04G9iUFRvmAVLW20Jw6ow==" - } + "engines": { + "node": ">=12.0.0", + "npm": ">=6.0.0" } }, - "mv": { - "version": "2.1.1", - "resolved": "https://registry.npmjs.org/mv/-/mv-2.1.1.tgz", - "integrity": "sha512-at/ZndSy3xEGJ8i0ygALh8ru9qy7gWW1cmkaqBN29JmMlIvM//MEO9y1sk/avxuwnPcfhkejkLsuPxH81BrkSg==", - "optional": true, - "requires": { - "mkdirp": "~0.5.1", - "ncp": "~2.0.0", - "rimraf": "~2.4.0" - }, - "dependencies": { - "glob": { - "version": "6.0.4", - "resolved": "https://registry.npmjs.org/glob/-/glob-6.0.4.tgz", - "integrity": "sha512-MKZeRNyYZAVVVG1oZeLaWie1uweH40m9AZwIwxyPbTSX4hHrVYSzLg0Ro5Z5R7XKkIX+Cc6oD1rqeDJnwsB8/A==", - "optional": true, - "requires": { - "inflight": "^1.0.4", - "inherits": "2", - "minimatch": "2 || 3", - "once": "^1.3.0", - "path-is-absolute": "^1.0.0" - } - }, - "rimraf": { - "version": "2.4.5", - "resolved": "https://registry.npmjs.org/rimraf/-/rimraf-2.4.5.tgz", - "integrity": "sha512-J5xnxTyqaiw06JjMftq7L9ouA448dw/E7dKghkP9WpKNuwmARNNg+Gk8/u5ryb9N/Yo2+z3MCwuqFK/+qPOPfQ==", - "optional": true, - "requires": { - "glob": "^6.0.1" - } - } - } + "node_modules/multihashes/node_modules/varint": { + "version": "5.0.2", + "license": "MIT" }, - "nan": { - "version": "2.17.0", - "resolved": "https://registry.npmjs.org/nan/-/nan-2.17.0.tgz", - "integrity": "sha512-2ZTgtl0nJsO0KQCjEpxcIr5D+Yv90plTitZt9JBfQvVJDS5seMl3FOvsh3+9CoYWXf/1l5OaZzzF6nDm4cagaQ==", - "optional": true + "node_modules/mz": { + "version": "2.7.0", + "license": "MIT", + "dependencies": { + "any-promise": "^1.0.0", + "object-assign": "^4.0.1", + "thenify-all": "^1.0.0" + } }, - "nano-json-stream-parser": { + "node_modules/nano-json-stream-parser": { "version": "0.1.2", - "resolved": "https://registry.npmjs.org/nano-json-stream-parser/-/nano-json-stream-parser-0.1.2.tgz", - "integrity": "sha512-9MqxMH/BSJC7dnLsEMPyfN5Dvoo49IsPFYMcHw3Bcfc2kN0lpHRBSzlMSVx4HGyJ7s9B31CyBTVehWJoQ8Ctew==" + "license": "MIT" }, - "nanoid": { - "version": "3.3.4", - "resolved": "https://registry.npmjs.org/nanoid/-/nanoid-3.3.4.tgz", - "integrity": "sha512-MqBkQh/OHTS2egovRtLk45wEyNXwF+cokD+1YPf9u5VfJiRdAiRwB2froX5Co9Rh20xs4siNPm8naNotSD6RBw==" + "node_modules/nanoid": { + "version": "3.3.6", + "funding": [ + { + "type": "github", + "url": "https://github.com/sponsors/ai" + } + ], + "license": "MIT", + "bin": { + "nanoid": "bin/nanoid.cjs" + }, + "engines": { + "node": "^10 || ^12 || ^13.7 || ^14 || >=15.0.1" + } }, - "napi-macros": { + "node_modules/napi-macros": { "version": "2.2.2", - "resolved": "https://registry.npmjs.org/napi-macros/-/napi-macros-2.2.2.tgz", - "integrity": "sha512-hmEVtAGYzVQpCKdbQea4skABsdXW4RUh5t5mJ2zzqowJS2OyXZTU1KhDVFhx+NlWZ4ap9mqR9TcDO3LTTttd+g==", + "license": "MIT", "peer": true }, - "natural-compare": { + "node_modules/natural-compare": { "version": "1.4.0", - "resolved": "https://registry.npmjs.org/natural-compare/-/natural-compare-1.4.0.tgz", - "integrity": "sha512-OWND8ei3VtNC9h7V60qff3SVobHr996CTwgxubgyQYEpg290h9J0buyECNNJexkFm5sOajh5G116RYA1c8ZMSw==" + "license": "MIT" }, - "ncp": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/ncp/-/ncp-2.0.0.tgz", - "integrity": "sha512-zIdGUrPRFTUELUvr3Gmc7KZ2Sw/h1PiVM0Af/oHB6zgnV1ikqSfRk+TOufi79aHYCW3NiOXmr1BP5nWbzojLaA==", - "optional": true + "node_modules/natural-compare-lite": { + "version": "1.4.0", + "license": "MIT" }, - "negotiator": { + "node_modules/negotiator": { "version": "0.6.3", - "resolved": "https://registry.npmjs.org/negotiator/-/negotiator-0.6.3.tgz", - "integrity": "sha512-+EUsqGPLsM+j/zdChZjsnX51g4XrHFOIXwfnCVPGlQk/k5giakcKsuxCObBRu6DSm9opw/O6slWbJdghQM4bBg==" + "license": "MIT", + "engines": { + "node": ">= 0.6" + } }, - "neo-async": { + "node_modules/neo-async": { "version": "2.6.2", - "resolved": "https://registry.npmjs.org/neo-async/-/neo-async-2.6.2.tgz", - "integrity": "sha512-Yd3UES5mWCSqR+qNT93S3UoYUkqAZ9lLg8a7g9rimsWmYGK8cVToA4/sF3RrshdyV3sAGMXVUmpMYOw+dLpOuw==" + "license": "MIT" }, - "next-tick": { + "node_modules/next-tick": { "version": "1.1.0", - "resolved": "https://registry.npmjs.org/next-tick/-/next-tick-1.1.0.tgz", - "integrity": "sha512-CXdUiJembsNjuToQvxayPZF9Vqht7hewsvy2sOWafLvi2awflj9mOC6bHIg50orX8IJvWKY9wYQ/zB2kogPslQ==" + "license": "ISC" }, - "no-case": { + "node_modules/no-case": { "version": "3.0.4", - "resolved": "https://registry.npmjs.org/no-case/-/no-case-3.0.4.tgz", - "integrity": "sha512-fgAN3jGAh+RoxUGZHTSOLJIqUc2wmoBwGR4tbpNAKmmovFoWq0OdRkb0VkldReO2a2iBT/OEulG9XSUc10r3zg==", - "requires": { + "license": "MIT", + "dependencies": { "lower-case": "^2.0.2", "tslib": "^2.0.3" } }, - "node-addon-api": { + "node_modules/node-addon-api": { "version": "2.0.2", - "resolved": "https://registry.npmjs.org/node-addon-api/-/node-addon-api-2.0.2.tgz", - "integrity": "sha512-Ntyt4AIXyaLIuMHF6IOoTakB3K+RWxwtsHNRxllEoA6vPwP9o4866g6YWDLUdnucilZhmkxiHwHr11gAENw+QA==" + "license": "MIT" }, - "node-cache": { - "version": "5.1.2", - "resolved": "https://registry.npmjs.org/node-cache/-/node-cache-5.1.2.tgz", - "integrity": "sha512-t1QzWwnk4sjLWaQAS8CHgOJ+RAfmHpxFWmc36IWTiWHQfs0w5JDMBS1b1ZxQteo0vVVuWJvIUKHDkkeK7vIGCg==", - "requires": { - "clone": "2.x" - } - }, - "node-fetch": { - "version": "2.6.7", - "resolved": "https://registry.npmjs.org/node-fetch/-/node-fetch-2.6.7.tgz", - "integrity": "sha512-ZjMPFEfVx5j+y2yF35Kzx5sF7kDzxuDj6ziH4FFbOp87zKDZNx8yExJIb05OGF4Nlt9IHFIMBkRl41VdvcNdbQ==", - "requires": { + "node_modules/node-fetch": { + "version": "2.7.0", + "license": "MIT", + "dependencies": { "whatwg-url": "^5.0.0" }, - "dependencies": { - "tr46": { - "version": "0.0.3", - "resolved": "https://registry.npmjs.org/tr46/-/tr46-0.0.3.tgz", - "integrity": "sha512-N3WMsuqV66lT30CrXNbEjx4GEwlow3v6rr4mCcv6prnfwhS01rkgyFdjPNBYd9br7LpXV1+Emh01fHnq2Gdgrw==" - }, - "webidl-conversions": { - "version": "3.0.1", - "resolved": "https://registry.npmjs.org/webidl-conversions/-/webidl-conversions-3.0.1.tgz", - "integrity": "sha512-2JAn3z8AR6rjK8Sm8orRC0h/bcl/DqL7tRPdGZ4I1CjdF+EaMLmYxBHyXuKL849eucPFhvBoxMsflfOb8kxaeQ==" - }, - "whatwg-url": { - "version": "5.0.0", - "resolved": "https://registry.npmjs.org/whatwg-url/-/whatwg-url-5.0.0.tgz", - "integrity": "sha512-saE57nupxk6v3HY35+jzBwYa0rKSy0XR8JSxZPwgLr7ys0IBzhGviA1/TUGJLmSVqs8pb9AnvICXEuOHLprYTw==", - "requires": { - "tr46": "~0.0.3", - "webidl-conversions": "^3.0.0" - } + "engines": { + "node": "4.x || >=6.0.0" + }, + "peerDependencies": { + "encoding": "^0.1.0" + }, + "peerDependenciesMeta": { + "encoding": { + "optional": true } } }, - "node-forge": { + "node_modules/node-fetch/node_modules/tr46": { + "version": "0.0.3", + "license": "MIT" + }, + "node_modules/node-fetch/node_modules/webidl-conversions": { + "version": "3.0.1", + "license": "BSD-2-Clause" + }, + "node_modules/node-fetch/node_modules/whatwg-url": { + "version": "5.0.0", + "license": "MIT", + "dependencies": { + "tr46": "~0.0.3", + "webidl-conversions": "^3.0.0" + } + }, + "node_modules/node-forge": { "version": "1.3.1", - "resolved": "https://registry.npmjs.org/node-forge/-/node-forge-1.3.1.tgz", - "integrity": "sha512-dPEtOeMvF9VMcYV/1Wb8CPoVAXtp6MKMlcbAt4ddqmGqUJ6fQZFXkNZNkNlfevtNkGtaSoXf/vNNNSvgrdXwtA==" + "license": "(BSD-3-Clause OR GPL-2.0)", + "engines": { + "node": ">= 6.13.0" + } }, - "node-gyp-build": { - "version": "4.5.0", - "resolved": "https://registry.npmjs.org/node-gyp-build/-/node-gyp-build-4.5.0.tgz", - "integrity": "sha512-2iGbaQBV+ITgCz76ZEjmhUKAKVf7xfY1sRl4UiKQspfZMH2h06SyhNsnSVy50cwkFQDGLyif6m/6uFXHkOZ6rg==" + "node_modules/node-gyp-build": { + "version": "4.6.1", + "license": "MIT", + "bin": { + "node-gyp-build": "bin.js", + "node-gyp-build-optional": "optional.js", + "node-gyp-build-test": "build-test.js" + } }, - "node-int64": { + "node_modules/node-int64": { "version": "0.4.0", - "resolved": "https://registry.npmjs.org/node-int64/-/node-int64-0.4.0.tgz", - "integrity": "sha512-O5lz91xSOeoXP6DulyHfllpq+Eg00MWitZIbtPfoSEvqIHdl5gfcY6hYzDWnj0qD5tz52PI08u9qUvSVeUBeHw==" + "license": "MIT" }, - "node-releases": { - "version": "2.0.5", - "resolved": "https://registry.npmjs.org/node-releases/-/node-releases-2.0.5.tgz", - "integrity": "sha512-U9h1NLROZTq9uE1SNffn6WuPDg8icmi3ns4rEl/oTfIle4iLjTliCzgTsbaIFMq/Xn078/lfY/BL0GWZ+psK4Q==" + "node_modules/node-releases": { + "version": "2.0.13", + "license": "MIT" }, - "node-vibrant": { + "node_modules/node-vibrant": { "version": "3.2.1-alpha.1", - "resolved": "https://registry.npmjs.org/node-vibrant/-/node-vibrant-3.2.1-alpha.1.tgz", - "integrity": "sha512-EQergCp7fvbvUCE0VMCBnvaAV0lGWSP8SXLmuWQIBzQK5M5pIwcd9fIOXuzFkJx/8hUiiiLvAzzGDS/bIy2ikA==", - "requires": { + "license": "MIT", + "dependencies": { "@types/node": "^10.12.18", "@vibrant/core": "^3.2.1-alpha.1", "@vibrant/generator-default": "^3.2.1-alpha.1", @@ -38802,1601 +15159,2290 @@ "@vibrant/image-node": "^3.2.1-alpha.1", "@vibrant/quantizer-mmcq": "^3.2.1-alpha.1", "url": "^0.11.0" - }, - "dependencies": { - "@types/node": { - "version": "10.17.60", - "resolved": "https://registry.npmjs.org/@types/node/-/node-10.17.60.tgz", - "integrity": "sha512-F0KIgDJfy2nA3zMLmWGKxcH2ZVEtCZXHHdOQs2gSaQ27+lNeEfGxzkIw90aXswATX7AZ33tahPbzy6KAfUreVw==" - } } }, - "normalize-path": { + "node_modules/node-vibrant/node_modules/@types/node": { + "version": "10.17.60", + "license": "MIT" + }, + "node_modules/normalize-path": { "version": "3.0.0", - "resolved": "https://registry.npmjs.org/normalize-path/-/normalize-path-3.0.0.tgz", - "integrity": "sha512-6eZs5Ls3WtCisHWp9S2GUy8dqkpGi4BVSz3GaqiE6ezub0512ESztXUwUB6C6IKbQkY2Pnb/mD4WYojCRwcwLA==" + "license": "MIT", + "engines": { + "node": ">=0.10.0" + } }, - "normalize-range": { + "node_modules/normalize-range": { "version": "0.1.2", - "resolved": "https://registry.npmjs.org/normalize-range/-/normalize-range-0.1.2.tgz", - "integrity": "sha512-bdok/XvKII3nUpklnV6P2hxtMNrCboOjAcyBuQnWEhO665FwrSNRxU+AqpsyvO6LgGYPspN+lu5CLtw4jPRKNA==" + "license": "MIT", + "engines": { + "node": ">=0.10.0" + } }, - "normalize-url": { + "node_modules/normalize-url": { "version": "6.1.0", - "resolved": "https://registry.npmjs.org/normalize-url/-/normalize-url-6.1.0.tgz", - "integrity": "sha512-DlL+XwOy3NxAQ8xuC0okPgK46iuVNAK01YN7RueYBqqFeGsBjV9XmCAzAdgt+667bCl5kPh9EqKKDwnaPG1I7A==" + "license": "MIT", + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } }, - "notistack": { - "version": "2.0.5", - "resolved": "https://registry.npmjs.org/notistack/-/notistack-2.0.5.tgz", - "integrity": "sha512-Ig2T1Muqkc1PaSQcEDrK7diKv6cBxw02Iq6uv074ySfgq524TV5lK41diAb6OSsaiWfp3aRt+T3+0MF8m2EcJQ==", - "requires": { + "node_modules/notistack": { + "version": "2.0.8", + "license": "MIT", + "dependencies": { "clsx": "^1.1.0", "hoist-non-react-statics": "^3.3.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/notistack" + }, + "peerDependencies": { + "@emotion/react": "^11.4.1", + "@emotion/styled": "^11.3.0", + "@mui/material": "^5.0.0", + "react": "^16.8.0 || ^17.0.0 || ^18.0.0", + "react-dom": "^16.8.0 || ^17.0.0 || ^18.0.0" + }, + "peerDependenciesMeta": { + "@emotion/react": { + "optional": true + }, + "@emotion/styled": { + "optional": true + } + } + }, + "node_modules/notistack/node_modules/clsx": { + "version": "1.2.1", + "license": "MIT", + "engines": { + "node": ">=6" } }, - "npm-run-path": { + "node_modules/npm-run-path": { "version": "4.0.1", - "resolved": "https://registry.npmjs.org/npm-run-path/-/npm-run-path-4.0.1.tgz", - "integrity": "sha512-S48WzZW777zhNIrn7gxOlISNAqi9ZC/uQFnRdbeIHhZhCA6UqpkOT8T1G7BvfdgP4Er8gF4sUbaS0i7QvIfCWw==", - "requires": { + "license": "MIT", + "dependencies": { "path-key": "^3.0.0" + }, + "engines": { + "node": ">=8" } }, - "nth-check": { + "node_modules/nth-check": { "version": "2.1.1", - "resolved": "https://registry.npmjs.org/nth-check/-/nth-check-2.1.1.tgz", - "integrity": "sha512-lqjrjmaOoAnWfMmBPL+XNnynZh2+swxiX3WUE0s4yEHI6m+AwrK2UZOimIRl3X/4QctVqS8AiZjFqyOGrMXb/w==", - "requires": { + "license": "BSD-2-Clause", + "dependencies": { "boolbase": "^1.0.0" + }, + "funding": { + "url": "https://github.com/fb55/nth-check?sponsor=1" } }, - "number-to-bn": { + "node_modules/number-to-bn": { "version": "1.7.0", - "resolved": "https://registry.npmjs.org/number-to-bn/-/number-to-bn-1.7.0.tgz", - "integrity": "sha512-wsJ9gfSz1/s4ZsJN01lyonwuxA1tml6X1yBDnfpMglypcBRFZZkus26EdPSlqS5GJfYddVZa22p3VNb3z5m5Ig==", - "requires": { + "license": "MIT", + "dependencies": { "bn.js": "4.11.6", "strip-hex-prefix": "1.0.0" }, - "dependencies": { - "bn.js": { - "version": "4.11.6", - "resolved": "https://registry.npmjs.org/bn.js/-/bn.js-4.11.6.tgz", - "integrity": "sha512-XWwnNNFCuuSQ0m3r3C4LE3EiORltHd9M05pq6FOlVeiophzRbMo50Sbz1ehl8K3Z+jw9+vmgnXefY1hz8X+2wA==" - } + "engines": { + "node": ">=6.5.0", + "npm": ">=3" } }, - "nwsapi": { - "version": "2.2.1", - "resolved": "https://registry.npmjs.org/nwsapi/-/nwsapi-2.2.1.tgz", - "integrity": "sha512-JYOWTeFoS0Z93587vRJgASD5Ut11fYl5NyihP3KrYBvMe1FRRs6RN7m20SA/16GM4P6hTnZjT+UmDOt38UeXNg==" + "node_modules/number-to-bn/node_modules/bn.js": { + "version": "4.11.6", + "license": "MIT" }, - "oauth-sign": { + "node_modules/nwsapi": { + "version": "2.2.7", + "license": "MIT" + }, + "node_modules/oauth-sign": { "version": "0.9.0", - "resolved": "https://registry.npmjs.org/oauth-sign/-/oauth-sign-0.9.0.tgz", - "integrity": "sha512-fexhUFFPTGV8ybAtSIGbV6gOkSv8UtRbDBnAyLQw4QPKkgNlsH2ByPGtMUqdWkos6YCRmAqViwgZrJc/mRDzZQ==" + "license": "Apache-2.0", + "engines": { + "node": "*" + } }, - "object-assign": { + "node_modules/object-assign": { "version": "4.1.1", - "resolved": "https://registry.npmjs.org/object-assign/-/object-assign-4.1.1.tgz", - "integrity": "sha512-rJgTQnkUnH1sFw8yT6VSU3zD3sWmu6sZhIseY8VX+GRu3P6F7Fu+JNDoXfklElbLJSnc3FUQHVe4cU5hj+BcUg==" + "license": "MIT", + "engines": { + "node": ">=0.10.0" + } }, - "object-hash": { + "node_modules/object-hash": { "version": "3.0.0", - "resolved": "https://registry.npmjs.org/object-hash/-/object-hash-3.0.0.tgz", - "integrity": "sha512-RSn9F68PjH9HqtltsSnqYC1XXoWe9Bju5+213R98cNGttag9q9yAOTzdbsqvIa7aNm5WffBZFpWYr2aWrklWAw==" + "license": "MIT", + "engines": { + "node": ">= 6" + } }, - "object-inspect": { + "node_modules/object-inspect": { "version": "1.12.3", - "resolved": "https://registry.npmjs.org/object-inspect/-/object-inspect-1.12.3.tgz", - "integrity": "sha512-geUvdk7c+eizMNUDkRpW1wJwgfOiOeHbxBR/hLXK1aT6zmVSO0jsQcs7fj6MGw89jC/cjGfLcNOrtMYtGqm81g==" + "license": "MIT", + "funding": { + "url": "https://github.com/sponsors/ljharb" + } }, - "object-is": { + "node_modules/object-is": { "version": "1.1.5", - "resolved": "https://registry.npmjs.org/object-is/-/object-is-1.1.5.tgz", - "integrity": "sha512-3cyDsyHgtmi7I7DfSSI2LDp6SK2lwvtbg0p0R1e0RvTqF5ceGx+K2dfSjm1bKDMVCFEDAQvy+o8c6a7VujOddw==", - "requires": { + "license": "MIT", + "dependencies": { "call-bind": "^1.0.2", "define-properties": "^1.1.3" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" } }, - "object-keys": { + "node_modules/object-keys": { "version": "1.1.1", - "resolved": "https://registry.npmjs.org/object-keys/-/object-keys-1.1.1.tgz", - "integrity": "sha512-NuAESUOUMrlIXOfHKzD6bpPu3tYt3xvjNdRIQ+FeT0lNb4K8WR70CaDxhuNguS2XG+GjkyMwOzsN5ZktImfhLA==" + "license": "MIT", + "engines": { + "node": ">= 0.4" + } }, - "object.assign": { + "node_modules/object.assign": { "version": "4.1.4", - "resolved": "https://registry.npmjs.org/object.assign/-/object.assign-4.1.4.tgz", - "integrity": "sha512-1mxKf0e58bvyjSCtKYY4sRe9itRk3PJpquJOjeIkz885CczcI4IvJJDLPS72oowuSh+pBxUFROpX+TU++hxhZQ==", - "requires": { + "license": "MIT", + "dependencies": { "call-bind": "^1.0.2", "define-properties": "^1.1.4", "has-symbols": "^1.0.3", "object-keys": "^1.1.1" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" } }, - "object.entries": { - "version": "1.1.5", - "resolved": "https://registry.npmjs.org/object.entries/-/object.entries-1.1.5.tgz", - "integrity": "sha512-TyxmjUoZggd4OrrU1W66FMDG6CuqJxsFvymeyXI51+vQLN67zYfZseptRge703kKQdo4uccgAKebXFcRCzk4+g==", - "requires": { + "node_modules/object.entries": { + "version": "1.1.6", + "license": "MIT", + "dependencies": { "call-bind": "^1.0.2", - "define-properties": "^1.1.3", - "es-abstract": "^1.19.1" + "define-properties": "^1.1.4", + "es-abstract": "^1.20.4" + }, + "engines": { + "node": ">= 0.4" } }, - "object.fromentries": { - "version": "2.0.5", - "resolved": "https://registry.npmjs.org/object.fromentries/-/object.fromentries-2.0.5.tgz", - "integrity": "sha512-CAyG5mWQRRiBU57Re4FKoTBjXfDoNwdFVH2Y1tS9PqCsfUTymAohOkEMSG3aRNKmv4lV3O7p1et7c187q6bynw==", - "requires": { + "node_modules/object.fromentries": { + "version": "2.0.6", + "license": "MIT", + "dependencies": { "call-bind": "^1.0.2", - "define-properties": "^1.1.3", - "es-abstract": "^1.19.1" + "define-properties": "^1.1.4", + "es-abstract": "^1.20.4" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/object.getownpropertydescriptors": { + "version": "2.1.6", + "license": "MIT", + "dependencies": { + "array.prototype.reduce": "^1.0.5", + "call-bind": "^1.0.2", + "define-properties": "^1.2.0", + "es-abstract": "^1.21.2", + "safe-array-concat": "^1.0.0" + }, + "engines": { + "node": ">= 0.8" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" } }, - "object.getownpropertydescriptors": { - "version": "2.1.4", - "resolved": "https://registry.npmjs.org/object.getownpropertydescriptors/-/object.getownpropertydescriptors-2.1.4.tgz", - "integrity": "sha512-sccv3L/pMModT6dJAYF3fzGMVcb38ysQ0tEE6ixv2yXJDtEIPph268OlAdJj5/qZMZDq2g/jqvwppt36uS/uQQ==", - "requires": { - "array.prototype.reduce": "^1.0.4", + "node_modules/object.groupby": { + "version": "1.0.0", + "license": "MIT", + "dependencies": { "call-bind": "^1.0.2", - "define-properties": "^1.1.4", - "es-abstract": "^1.20.1" + "define-properties": "^1.2.0", + "es-abstract": "^1.21.2", + "get-intrinsic": "^1.2.1" } }, - "object.hasown": { - "version": "1.1.1", - "resolved": "https://registry.npmjs.org/object.hasown/-/object.hasown-1.1.1.tgz", - "integrity": "sha512-LYLe4tivNQzq4JdaWW6WO3HMZZJWzkkH8fnI6EebWl0VZth2wL2Lovm74ep2/gZzlaTdV62JZHEqHQ2yVn8Q/A==", - "requires": { + "node_modules/object.hasown": { + "version": "1.1.2", + "license": "MIT", + "dependencies": { "define-properties": "^1.1.4", - "es-abstract": "^1.19.5" + "es-abstract": "^1.20.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" } }, - "object.values": { - "version": "1.1.5", - "resolved": "https://registry.npmjs.org/object.values/-/object.values-1.1.5.tgz", - "integrity": "sha512-QUZRW0ilQ3PnPpbNtgdNV1PDbEqLIiSFB3l+EnGtBQ/8SUTLj1PZwtQHABZtLgwpJZTSZhuGLOGk57Drx2IvYg==", - "requires": { + "node_modules/object.values": { + "version": "1.1.6", + "license": "MIT", + "dependencies": { "call-bind": "^1.0.2", - "define-properties": "^1.1.3", - "es-abstract": "^1.19.1" + "define-properties": "^1.1.4", + "es-abstract": "^1.20.4" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" } }, - "obliterator": { + "node_modules/obliterator": { "version": "2.0.4", - "resolved": "https://registry.npmjs.org/obliterator/-/obliterator-2.0.4.tgz", - "integrity": "sha512-lgHwxlxV1qIg1Eap7LgIeoBWIMFibOjbrYPIPJZcI1mmGAI2m3lNYpK12Y+GBdPQ0U1hRwSord7GIaawz962qQ==" + "license": "MIT", + "peer": true }, - "oboe": { + "node_modules/oboe": { "version": "2.1.5", - "resolved": "https://registry.npmjs.org/oboe/-/oboe-2.1.5.tgz", - "integrity": "sha512-zRFWiF+FoicxEs3jNI/WYUrVEgA7DeET/InK0XQuudGHRg8iIob3cNPrJTKaz4004uaA9Pbe+Dwa8iluhjLZWA==", - "requires": { + "license": "BSD", + "dependencies": { "http-https": "^1.0.0" } }, - "obuf": { + "node_modules/obuf": { "version": "1.1.2", - "resolved": "https://registry.npmjs.org/obuf/-/obuf-1.1.2.tgz", - "integrity": "sha512-PX1wu0AmAdPqOL1mWhqmlOd8kOIZQwGZw6rh7uby9fTc5lhaOWFLX3I6R1hrF9k3zUY40e6igsLGkDXK92LJNg==" + "license": "MIT" }, - "omggif": { + "node_modules/omggif": { "version": "1.0.10", - "resolved": "https://registry.npmjs.org/omggif/-/omggif-1.0.10.tgz", - "integrity": "sha512-LMJTtvgc/nugXj0Vcrrs68Mn2D1r0zf630VNtqtpI1FEO7e+O9FP4gqs9AcnBaSEeoHIPm28u6qgPR0oyEpGSw==" + "license": "MIT" }, - "on-finished": { + "node_modules/on-finished": { "version": "2.4.1", - "resolved": "https://registry.npmjs.org/on-finished/-/on-finished-2.4.1.tgz", - "integrity": "sha512-oVlzkg3ENAhCk2zdv7IJwd/QUD4z2RxRwpkcGY8psCVcCYZNq4wYnVWALHM+brtuJjePWiYF/ClmuDr8Ch5+kg==", - "requires": { + "license": "MIT", + "dependencies": { "ee-first": "1.1.1" + }, + "engines": { + "node": ">= 0.8" } }, - "on-headers": { + "node_modules/on-headers": { "version": "1.0.2", - "resolved": "https://registry.npmjs.org/on-headers/-/on-headers-1.0.2.tgz", - "integrity": "sha512-pZAE+FJLoyITytdqK0U5s+FIpjN0JP3OzFi/u8Rx+EV5/W+JTWGXG8xFzevE7AjBfDqHv/8vL8qQsIhHnqRkrA==" + "license": "MIT", + "engines": { + "node": ">= 0.8" + } }, - "once": { + "node_modules/once": { "version": "1.4.0", - "resolved": "https://registry.npmjs.org/once/-/once-1.4.0.tgz", - "integrity": "sha512-lNaJgI+2Q5URQBkccEKHTQOPaXdUxnZZElQTZY0MFUAuaEqe1E+Nyvgdz/aIyNi6Z9MzO5dv1H8n58/GELp3+w==", - "requires": { + "license": "ISC", + "dependencies": { "wrappy": "1" } }, - "onetime": { + "node_modules/onetime": { "version": "5.1.2", - "resolved": "https://registry.npmjs.org/onetime/-/onetime-5.1.2.tgz", - "integrity": "sha512-kbpaSSGJTWdAY5KPVeMOKXSrPtr8C8C7wodJbcsd51jRnmD+GZu8Y0VoU6Dm5Z4vWr0Ig/1NKuWRKf7j5aaYSg==", - "requires": { + "license": "MIT", + "dependencies": { "mimic-fn": "^2.1.0" + }, + "engines": { + "node": ">=6" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" } }, - "open": { - "version": "8.4.0", - "resolved": "https://registry.npmjs.org/open/-/open-8.4.0.tgz", - "integrity": "sha512-XgFPPM+B28FtCCgSb9I+s9szOC1vZRSwgWsRUA5ylIxRTgKozqjOCrVOqGsYABPYK5qnfqClxZTFBa8PKt2v6Q==", - "requires": { + "node_modules/open": { + "version": "8.4.2", + "license": "MIT", + "dependencies": { "define-lazy-prop": "^2.0.0", "is-docker": "^2.1.1", "is-wsl": "^2.2.0" + }, + "engines": { + "node": ">=12" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" } }, - "optionator": { - "version": "0.9.1", - "resolved": "https://registry.npmjs.org/optionator/-/optionator-0.9.1.tgz", - "integrity": "sha512-74RlY5FCnhq4jRxVUPKDaRwrVNXMqsGsiW6AJw4XK8hmtm10wC0ypZBLw5IIp85NZMr91+qd1RvvENwg7jjRFw==", - "requires": { + "node_modules/optionator": { + "version": "0.9.3", + "license": "MIT", + "dependencies": { + "@aashutoshrathi/word-wrap": "^1.2.3", "deep-is": "^0.1.3", "fast-levenshtein": "^2.0.6", "levn": "^0.4.1", "prelude-ls": "^1.2.1", - "type-check": "^0.4.0", - "word-wrap": "^1.2.3" + "type-check": "^0.4.0" + }, + "engines": { + "node": ">= 0.8.0" } }, - "os-tmpdir": { + "node_modules/os-tmpdir": { "version": "1.0.2", - "resolved": "https://registry.npmjs.org/os-tmpdir/-/os-tmpdir-1.0.2.tgz", - "integrity": "sha512-D2FR03Vir7FIu45XBY20mTb+/ZSWB00sjU9jdQXt83gDrI4Ztz5Fs7/yy74g2N5SVQY4xY1qDr4rNddwYRVX0g==", - "peer": true + "license": "MIT", + "peer": true, + "engines": { + "node": ">=0.10.0" + } }, - "p-cancelable": { + "node_modules/p-cancelable": { "version": "3.0.0", - "resolved": "https://registry.npmjs.org/p-cancelable/-/p-cancelable-3.0.0.tgz", - "integrity": "sha512-mlVgR3PGuzlo0MmTdk4cXqXWlwQDLnONTAg6sm62XkMJEiRxN3GL3SffkYvqwonbkJBcrI7Uvv5Zh9yjvn2iUw==" + "license": "MIT", + "engines": { + "node": ">=12.20" + } }, - "p-limit": { + "node_modules/p-limit": { "version": "3.1.0", - "resolved": "https://registry.npmjs.org/p-limit/-/p-limit-3.1.0.tgz", - "integrity": "sha512-TYOanM3wGwNGsZN2cVTYPArw454xnXj5qmWF1bEoAc4+cU/ol7GVh7odevjp1FNHduHc3KZMcFduxU5Xc6uJRQ==", - "requires": { + "license": "MIT", + "dependencies": { "yocto-queue": "^0.1.0" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" } }, - "p-locate": { + "node_modules/p-locate": { "version": "5.0.0", - "resolved": "https://registry.npmjs.org/p-locate/-/p-locate-5.0.0.tgz", - "integrity": "sha512-LaNjtRWUBY++zB5nE/NwcaoMylSPk+S+ZHNB1TzdbMJMny6dynpAGt7X/tl/QYq3TIeE6nxHppbo2LGymrG5Pw==", - "requires": { + "license": "MIT", + "dependencies": { "p-limit": "^3.0.2" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" } }, - "p-map": { + "node_modules/p-map": { "version": "4.0.0", - "resolved": "https://registry.npmjs.org/p-map/-/p-map-4.0.0.tgz", - "integrity": "sha512-/bjOqmgETBYB5BoEeGVea8dmvHb2m9GLy1E9W43yeyfP6QQCZGFNa+XRceJEuDB6zqr+gKpIAmlLebMpykw/MQ==", + "license": "MIT", "peer": true, - "requires": { + "dependencies": { "aggregate-error": "^3.0.0" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" } }, - "p-retry": { + "node_modules/p-retry": { "version": "4.6.2", - "resolved": "https://registry.npmjs.org/p-retry/-/p-retry-4.6.2.tgz", - "integrity": "sha512-312Id396EbJdvRONlngUx0NydfrIQ5lsYu0znKVUzVvArzEIt08V1qhtyESbGVd1FGX7UKtiFp5uwKZdM8wIuQ==", - "requires": { + "license": "MIT", + "dependencies": { "@types/retry": "0.12.0", "retry": "^0.13.1" + }, + "engines": { + "node": ">=8" } }, - "p-try": { + "node_modules/p-try": { "version": "2.2.0", - "resolved": "https://registry.npmjs.org/p-try/-/p-try-2.2.0.tgz", - "integrity": "sha512-R4nPAVTAU0B9D35/Gk3uJf/7XYbQcyohSKdvAxIRSNghFl4e71hVoGnBNQz9cWaXxO2I10KTC+3jMdvvoKw6dQ==" + "license": "MIT", + "engines": { + "node": ">=6" + } }, - "pako": { - "version": "2.0.4", - "resolved": "https://registry.npmjs.org/pako/-/pako-2.0.4.tgz", - "integrity": "sha512-v8tweI900AUkZN6heMU/4Uy4cXRc2AYNRggVmTR+dEncawDJgCdLMximOVA2p4qO57WMynangsfGRb5WD6L1Bg==" + "node_modules/pako": { + "version": "2.1.0", + "license": "(MIT AND Zlib)" }, - "param-case": { + "node_modules/param-case": { "version": "3.0.4", - "resolved": "https://registry.npmjs.org/param-case/-/param-case-3.0.4.tgz", - "integrity": "sha512-RXlj7zCYokReqWpOPH9oYivUzLYZ5vAPIfEmCTNViosC78F8F0H9y7T7gG2M39ymgutxF5gcFEsyZQSph9Bp3A==", - "requires": { + "license": "MIT", + "dependencies": { "dot-case": "^3.0.4", "tslib": "^2.0.3" } }, - "parent-module": { + "node_modules/parent-module": { "version": "1.0.1", - "resolved": "https://registry.npmjs.org/parent-module/-/parent-module-1.0.1.tgz", - "integrity": "sha512-GQ2EWRpQV8/o+Aw8YqtfZZPfNRWZYkbidE9k5rpl/hC3vtHHBfGm2Ifi6qWV+coDGkrUKZAxE3Lot5kcsRlh+g==", - "requires": { + "license": "MIT", + "dependencies": { "callsites": "^3.0.0" + }, + "engines": { + "node": ">=6" } }, - "parse-bmfont-ascii": { + "node_modules/parse-bmfont-ascii": { "version": "1.0.6", - "resolved": "https://registry.npmjs.org/parse-bmfont-ascii/-/parse-bmfont-ascii-1.0.6.tgz", - "integrity": "sha512-U4RrVsUFCleIOBsIGYOMKjn9PavsGOXxbvYGtMOEfnId0SVNsgehXh1DxUdVPLoxd5mvcEtvmKs2Mmf0Mpa1ZA==" + "license": "MIT" }, - "parse-bmfont-binary": { + "node_modules/parse-bmfont-binary": { "version": "1.0.6", - "resolved": "https://registry.npmjs.org/parse-bmfont-binary/-/parse-bmfont-binary-1.0.6.tgz", - "integrity": "sha512-GxmsRea0wdGdYthjuUeWTMWPqm2+FAd4GI8vCvhgJsFnoGhTrLhXDDupwTo7rXVAgaLIGoVHDZS9p/5XbSqeWA==" + "license": "MIT" }, - "parse-bmfont-xml": { + "node_modules/parse-bmfont-xml": { "version": "1.1.4", - "resolved": "https://registry.npmjs.org/parse-bmfont-xml/-/parse-bmfont-xml-1.1.4.tgz", - "integrity": "sha512-bjnliEOmGv3y1aMEfREMBJ9tfL3WR0i0CKPj61DnSLaoxWR3nLrsQrEbCId/8rF4NyRF0cCqisSVXyQYWM+mCQ==", - "requires": { + "license": "MIT", + "dependencies": { "xml-parse-from-string": "^1.0.0", "xml2js": "^0.4.5" } }, - "parse-headers": { + "node_modules/parse-headers": { "version": "2.0.5", - "resolved": "https://registry.npmjs.org/parse-headers/-/parse-headers-2.0.5.tgz", - "integrity": "sha512-ft3iAoLOB/MlwbNXgzy43SWGP6sQki2jQvAyBg/zDFAgr9bfNWZIUj42Kw2eJIl8kEi4PbgE6U1Zau/HwI75HA==" + "license": "MIT" }, - "parse-json": { + "node_modules/parse-json": { "version": "5.2.0", - "resolved": "https://registry.npmjs.org/parse-json/-/parse-json-5.2.0.tgz", - "integrity": "sha512-ayCKvm/phCGxOkYRSCM82iDwct8/EonSEgCSxWxD7ve6jHggsFl4fZVQBPRNgQoKiuV/odhFrGzQXZwbifC8Rg==", - "requires": { + "license": "MIT", + "dependencies": { "@babel/code-frame": "^7.0.0", "error-ex": "^1.3.1", "json-parse-even-better-errors": "^2.3.0", "lines-and-columns": "^1.1.6" + }, + "engines": { + "node": ">=8" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" } }, - "parse5": { + "node_modules/parse5": { "version": "6.0.1", - "resolved": "https://registry.npmjs.org/parse5/-/parse5-6.0.1.tgz", - "integrity": "sha512-Ofn/CTFzRGTTxwpNEs9PP93gXShHcTq255nzRYSKe8AkVpZY7e1fpmTfOyoIvjP5HG7Z2ZM7VS9PPhQGW2pOpw==" + "license": "MIT" }, - "parseurl": { + "node_modules/parseurl": { "version": "1.3.3", - "resolved": "https://registry.npmjs.org/parseurl/-/parseurl-1.3.3.tgz", - "integrity": "sha512-CiyeOxFT/JZyN5m0z9PfXw4SCBJ6Sygz1Dpl0wqjlhDEGGBP1GnsUVEL0p63hoG1fcj3fHynXi9NYO4nWOL+qQ==" + "license": "MIT", + "engines": { + "node": ">= 0.8" + } }, - "pascal-case": { + "node_modules/pascal-case": { "version": "3.1.2", - "resolved": "https://registry.npmjs.org/pascal-case/-/pascal-case-3.1.2.tgz", - "integrity": "sha512-uWlGT3YSnK9x3BQJaOdcZwrnV6hPpd8jFH1/ucpiLRPh/2zCVJKS19E4GvYHvaCcACn3foXZ0cLB9Wrx1KGe5g==", - "requires": { + "license": "MIT", + "dependencies": { "no-case": "^3.0.4", "tslib": "^2.0.3" } }, - "path-exists": { + "node_modules/path-exists": { "version": "4.0.0", - "resolved": "https://registry.npmjs.org/path-exists/-/path-exists-4.0.0.tgz", - "integrity": "sha512-ak9Qy5Q7jYb2Wwcey5Fpvg2KoAc/ZIhLSLOSBmRmygPsGwkVVt0fZa0qrtMz+m6tJTAHfZQ8FnmB4MG4LWy7/w==" + "license": "MIT", + "engines": { + "node": ">=8" + } }, - "path-is-absolute": { + "node_modules/path-is-absolute": { "version": "1.0.1", - "resolved": "https://registry.npmjs.org/path-is-absolute/-/path-is-absolute-1.0.1.tgz", - "integrity": "sha512-AVbw3UJ2e9bq64vSaS9Am0fje1Pa8pbGqTTsmXfaIiMpnr5DlDhfJOuLj9Sf95ZPVDAUerDfEk88MPmPe7UCQg==" + "license": "MIT", + "engines": { + "node": ">=0.10.0" + } }, - "path-key": { + "node_modules/path-key": { "version": "3.1.1", - "resolved": "https://registry.npmjs.org/path-key/-/path-key-3.1.1.tgz", - "integrity": "sha512-ojmeN0qd+y0jszEtoY48r0Peq5dwMEkIlCOu6Q5f41lfkswXuKtYrhgoTpLnyIcHm24Uhqx+5Tqm2InSwLhE6Q==" + "license": "MIT", + "engines": { + "node": ">=8" + } }, - "path-parse": { + "node_modules/path-parse": { "version": "1.0.7", - "resolved": "https://registry.npmjs.org/path-parse/-/path-parse-1.0.7.tgz", - "integrity": "sha512-LDJzPVEEEPR+y48z93A0Ed0yXb8pAByGWo/k5YYdYgpY2/2EsOsksJrq7lOHxryrVOn1ejG6oAp8ahvOIQD8sw==" + "license": "MIT" }, - "path-to-regexp": { + "node_modules/path-to-regexp": { "version": "0.1.7", - "resolved": "https://registry.npmjs.org/path-to-regexp/-/path-to-regexp-0.1.7.tgz", - "integrity": "sha512-5DFkuoqlv1uYQKxy8omFBeJPQcdoE07Kv2sferDCrAq1ohOU+MSDswDIbnx3YAM60qIOnYa53wBhXW0EbMonrQ==" + "license": "MIT" }, - "path-type": { + "node_modules/path-type": { "version": "4.0.0", - "resolved": "https://registry.npmjs.org/path-type/-/path-type-4.0.0.tgz", - "integrity": "sha512-gDKb8aZMDeD/tZWs9P6+q0J9Mwkdl6xMV8TjnGP3qJVJ06bdMgkbBlLU8IdfOsIsFz2BW1rNVT3XuNEl8zPAvw==" + "license": "MIT", + "engines": { + "node": ">=8" + } }, - "pbkdf2": { + "node_modules/pbkdf2": { "version": "3.1.2", - "resolved": "https://registry.npmjs.org/pbkdf2/-/pbkdf2-3.1.2.tgz", - "integrity": "sha512-iuh7L6jA7JEGu2WxDwtQP1ddOpaJNC4KlDEFfdQajSGgGPNi4OyDc2R7QnbY2bR9QjBVGwgvTdNJZoE7RaxUMA==", - "requires": { + "license": "MIT", + "dependencies": { "create-hash": "^1.1.2", "create-hmac": "^1.1.4", "ripemd160": "^2.0.1", "safe-buffer": "^5.0.1", "sha.js": "^2.4.8" + }, + "engines": { + "node": ">=0.12" } }, - "peek-readable": { + "node_modules/peek-readable": { "version": "4.1.0", - "resolved": "https://registry.npmjs.org/peek-readable/-/peek-readable-4.1.0.tgz", - "integrity": "sha512-ZI3LnwUv5nOGbQzD9c2iDG6toheuXSZP5esSHBjopsXH4dg19soufvpUGA3uohi5anFtGb2lhAVdHzH6R/Evvg==" + "license": "MIT", + "engines": { + "node": ">=8" + }, + "funding": { + "type": "github", + "url": "https://github.com/sponsors/Borewit" + } }, - "performance-now": { + "node_modules/performance-now": { "version": "2.1.0", - "resolved": "https://registry.npmjs.org/performance-now/-/performance-now-2.1.0.tgz", - "integrity": "sha512-7EAHlyLHI56VEIdK57uwHdHKIaAGbnXPiw0yWbarQZOKaKpvUIgW0jWRVLiatnM+XXlSwsanIBH/hzGMJulMow==" + "license": "MIT" + }, + "node_modules/phin": { + "version": "2.9.3", + "license": "MIT" + }, + "node_modules/picocolors": { + "version": "1.0.0", + "license": "ISC" + }, + "node_modules/picomatch": { + "version": "2.3.1", + "license": "MIT", + "engines": { + "node": ">=8.6" + }, + "funding": { + "url": "https://github.com/sponsors/jonschlinkert" + } + }, + "node_modules/pify": { + "version": "2.3.0", + "license": "MIT", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/pirates": { + "version": "4.0.6", + "license": "MIT", + "engines": { + "node": ">= 6" + } + }, + "node_modules/pixelmatch": { + "version": "4.0.2", + "license": "ISC", + "dependencies": { + "pngjs": "^3.0.0" + }, + "bin": { + "pixelmatch": "bin/pixelmatch" + } + }, + "node_modules/pkg-dir": { + "version": "4.2.0", + "license": "MIT", + "dependencies": { + "find-up": "^4.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/pkg-dir/node_modules/find-up": { + "version": "4.1.0", + "license": "MIT", + "dependencies": { + "locate-path": "^5.0.0", + "path-exists": "^4.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/pkg-dir/node_modules/locate-path": { + "version": "5.0.0", + "license": "MIT", + "dependencies": { + "p-locate": "^4.1.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/pkg-dir/node_modules/p-limit": { + "version": "2.3.0", + "license": "MIT", + "dependencies": { + "p-try": "^2.0.0" + }, + "engines": { + "node": ">=6" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/pkg-dir/node_modules/p-locate": { + "version": "4.1.0", + "license": "MIT", + "dependencies": { + "p-limit": "^2.2.0" + }, + "engines": { + "node": ">=8" + } }, - "phin": { - "version": "2.9.3", - "resolved": "https://registry.npmjs.org/phin/-/phin-2.9.3.tgz", - "integrity": "sha512-CzFr90qM24ju5f88quFC/6qohjC144rehe5n6DH900lgXmUe86+xCKc10ev56gRKC4/BkHUoG4uSiQgBiIXwDA==" + "node_modules/pkg-up": { + "version": "3.1.0", + "license": "MIT", + "dependencies": { + "find-up": "^3.0.0" + }, + "engines": { + "node": ">=8" + } }, - "picocolors": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/picocolors/-/picocolors-1.0.0.tgz", - "integrity": "sha512-1fygroTLlHu66zi26VoTDv8yRgm0Fccecssto+MhsZ0D/DGW2sm8E8AjW7NU5VVTRt5GxbeZ5qBuJr+HyLYkjQ==" + "node_modules/pkg-up/node_modules/find-up": { + "version": "3.0.0", + "license": "MIT", + "dependencies": { + "locate-path": "^3.0.0" + }, + "engines": { + "node": ">=6" + } }, - "picomatch": { - "version": "2.3.1", - "resolved": "https://registry.npmjs.org/picomatch/-/picomatch-2.3.1.tgz", - "integrity": "sha512-JU3teHTNjmE2VCGFzuY8EXzCDVwEqB2a8fsIvwaStHhAWJEeVd1o1QD80CU6+ZdEXXSLbSsuLwJjkCBWqRQUVA==" + "node_modules/pkg-up/node_modules/locate-path": { + "version": "3.0.0", + "license": "MIT", + "dependencies": { + "p-locate": "^3.0.0", + "path-exists": "^3.0.0" + }, + "engines": { + "node": ">=6" + } }, - "pify": { + "node_modules/pkg-up/node_modules/p-limit": { "version": "2.3.0", - "resolved": "https://registry.npmjs.org/pify/-/pify-2.3.0.tgz", - "integrity": "sha512-udgsAY+fTnvv7kI7aaxbqwWNb0AHiB0qBO89PZKPkoTmGOgdbrHDKD+0B2X4uTfJ/FT1R09r9gTsjUjNJotuog==" - }, - "pirates": { - "version": "4.0.5", - "resolved": "https://registry.npmjs.org/pirates/-/pirates-4.0.5.tgz", - "integrity": "sha512-8V9+HQPupnaXMA23c5hvl69zXvTwTzyAYasnkb0Tts4XvO4CliqONMOnvlq26rkhLC3nWDFBJf73LU1e1VZLaQ==" - }, - "pixelmatch": { - "version": "4.0.2", - "resolved": "https://registry.npmjs.org/pixelmatch/-/pixelmatch-4.0.2.tgz", - "integrity": "sha512-J8B6xqiO37sU/gkcMglv6h5Jbd9xNER7aHzpfRdNmV4IbQBzBpe4l9XmbG+xPF/znacgu2jfEw+wHffaq/YkXA==", - "requires": { - "pngjs": "^3.0.0" + "license": "MIT", + "dependencies": { + "p-try": "^2.0.0" + }, + "engines": { + "node": ">=6" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" } }, - "pkg-dir": { - "version": "4.2.0", - "resolved": "https://registry.npmjs.org/pkg-dir/-/pkg-dir-4.2.0.tgz", - "integrity": "sha512-HRDzbaKjC+AOWVXxAU/x54COGeIv9eb+6CkDSQoNTt4XyWoIJvuPsXizxu/Fr23EiekbtZwmh1IcIG/l/a10GQ==", - "requires": { - "find-up": "^4.0.0" - }, + "node_modules/pkg-up/node_modules/p-locate": { + "version": "3.0.0", + "license": "MIT", "dependencies": { - "find-up": { - "version": "4.1.0", - "resolved": "https://registry.npmjs.org/find-up/-/find-up-4.1.0.tgz", - "integrity": "sha512-PpOwAdQ/YlXQ2vj8a3h8IipDuYRi3wceVQQGYWxNINccq40Anw7BlsEXCMbt1Zt+OLA6Fq9suIpIWD0OsnISlw==", - "requires": { - "locate-path": "^5.0.0", - "path-exists": "^4.0.0" - } - }, - "locate-path": { - "version": "5.0.0", - "resolved": "https://registry.npmjs.org/locate-path/-/locate-path-5.0.0.tgz", - "integrity": "sha512-t7hw9pI+WvuwNJXwk5zVHpyhIqzg2qTlklJOf0mVxGSbe3Fp2VieZcduNYjaLDoy6p9uGpQEGWG87WpMKlNq8g==", - "requires": { - "p-locate": "^4.1.0" - } - }, - "p-limit": { - "version": "2.3.0", - "resolved": "https://registry.npmjs.org/p-limit/-/p-limit-2.3.0.tgz", - "integrity": "sha512-//88mFWSJx8lxCzwdAABTJL2MyWB12+eIY7MDL2SqLmAkeKU9qxRvWuSyTjm3FUmpBEMuFfckAIqEaVGUDxb6w==", - "requires": { - "p-try": "^2.0.0" - } - }, - "p-locate": { - "version": "4.1.0", - "resolved": "https://registry.npmjs.org/p-locate/-/p-locate-4.1.0.tgz", - "integrity": "sha512-R79ZZ/0wAxKGu3oYMlz8jy/kbhsNrS7SKZ7PxEHBgJ5+F2mtFW2fK2cOtBh1cHYkQsbzFV7I+EoRKe6Yt0oK7A==", - "requires": { - "p-limit": "^2.2.0" - } - } + "p-limit": "^2.0.0" + }, + "engines": { + "node": ">=6" } }, - "pkg-up": { - "version": "3.1.0", - "resolved": "https://registry.npmjs.org/pkg-up/-/pkg-up-3.1.0.tgz", - "integrity": "sha512-nDywThFk1i4BQK4twPQ6TA4RT8bDY96yeuCVBWL3ePARCiEKDRSrNGbFIgUJpLp+XeIR65v8ra7WuJOFUBtkMA==", - "requires": { - "find-up": "^3.0.0" - }, - "dependencies": { - "find-up": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/find-up/-/find-up-3.0.0.tgz", - "integrity": "sha512-1yD6RmLI1XBfxugvORwlck6f75tYL+iR0jqwsOrOxMZyGYqUuDhJ0l4AXdO1iX/FTs9cBAMEk1gWSEx1kSbylg==", - "requires": { - "locate-path": "^3.0.0" - } - }, - "locate-path": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/locate-path/-/locate-path-3.0.0.tgz", - "integrity": "sha512-7AO748wWnIhNqAuaty2ZWHkQHRSNfPVIsPIfwEOWO22AmaoVrWavlOcMR5nzTLNYvp36X220/maaRsrec1G65A==", - "requires": { - "p-locate": "^3.0.0", - "path-exists": "^3.0.0" - } - }, - "p-limit": { - "version": "2.3.0", - "resolved": "https://registry.npmjs.org/p-limit/-/p-limit-2.3.0.tgz", - "integrity": "sha512-//88mFWSJx8lxCzwdAABTJL2MyWB12+eIY7MDL2SqLmAkeKU9qxRvWuSyTjm3FUmpBEMuFfckAIqEaVGUDxb6w==", - "requires": { - "p-try": "^2.0.0" - } - }, - "p-locate": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/p-locate/-/p-locate-3.0.0.tgz", - "integrity": "sha512-x+12w/To+4GFfgJhBEpiDcLozRJGegY+Ei7/z0tSLkMmxGZNybVMSfWj9aJn8Z5Fc7dBUNJOOVgPv2H7IwulSQ==", - "requires": { - "p-limit": "^2.0.0" - } - }, - "path-exists": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/path-exists/-/path-exists-3.0.0.tgz", - "integrity": "sha512-bpC7GYwiDYQ4wYLe+FA8lhRjhQCMcQGuSgGGqDkg/QerRWw9CmGRT0iSOVRSZJ29NMLZgIzqaljJ63oaL4NIJQ==" - } + "node_modules/pkg-up/node_modules/path-exists": { + "version": "3.0.0", + "license": "MIT", + "engines": { + "node": ">=4" } }, - "pngjs": { + "node_modules/pngjs": { "version": "3.4.0", - "resolved": "https://registry.npmjs.org/pngjs/-/pngjs-3.4.0.tgz", - "integrity": "sha512-NCrCHhWmnQklfH4MtJMRjZ2a8c80qXeMlQMv2uVp9ISJMTt562SbGd6n2oq0PaPgKm7Z6pL9E2UlLIhC+SHL3w==" + "license": "MIT", + "engines": { + "node": ">=4.0.0" + } }, - "polished": { + "node_modules/polished": { "version": "3.7.2", - "resolved": "https://registry.npmjs.org/polished/-/polished-3.7.2.tgz", - "integrity": "sha512-pQKtpZGmsZrW8UUpQMAnR7s3ppHeMQVNyMDKtUyKwuvDmklzcEyM5Kllb3JyE/sE/x7arDmyd35i+4vp99H6sQ==", - "requires": { + "license": "MIT", + "dependencies": { "@babel/runtime": "^7.12.5" + }, + "engines": { + "node": ">=10" } }, - "popper-max-size-modifier": { + "node_modules/popper-max-size-modifier": { "version": "0.2.0", - "resolved": "https://registry.npmjs.org/popper-max-size-modifier/-/popper-max-size-modifier-0.2.0.tgz", - "integrity": "sha512-UerPt9pZfTFnpSpIBVJrR3ibHMuU1k5K01AyNLfMUWCr4z1MFH+dsayPlAF9ZeYExa02HPiQn5OIMqUSVtJEbg==", - "requires": {} - }, - "postcss": { - "version": "8.4.14", - "resolved": "https://registry.npmjs.org/postcss/-/postcss-8.4.14.tgz", - "integrity": "sha512-E398TUmfAYFPBSdzgeieK2Y1+1cpdxJx8yXbK/m57nRhKSmk1GB2tO4lbLBtlkfPQTDKfe4Xqv1ASWPpayPEig==", - "requires": { - "nanoid": "^3.3.4", + "license": "MIT", + "peerDependencies": { + "@popperjs/core": "^2.2.0" + } + }, + "node_modules/postcss": { + "version": "8.4.28", + "funding": [ + { + "type": "opencollective", + "url": "https://opencollective.com/postcss/" + }, + { + "type": "tidelift", + "url": "https://tidelift.com/funding/github/npm/postcss" + }, + { + "type": "github", + "url": "https://github.com/sponsors/ai" + } + ], + "license": "MIT", + "dependencies": { + "nanoid": "^3.3.6", "picocolors": "^1.0.0", "source-map-js": "^1.0.2" + }, + "engines": { + "node": "^10 || ^12 || >=14" } }, - "postcss-attribute-case-insensitive": { - "version": "5.0.1", - "resolved": "https://registry.npmjs.org/postcss-attribute-case-insensitive/-/postcss-attribute-case-insensitive-5.0.1.tgz", - "integrity": "sha512-wrt2VndqSLJpyBRNz9OmJcgnhI9MaongeWgapdBuUMu2a/KNJ8SENesG4SdiTnQwGO9b1VKbTWYAfCPeokLqZQ==", - "requires": { + "node_modules/postcss-attribute-case-insensitive": { + "version": "5.0.2", + "license": "MIT", + "dependencies": { "postcss-selector-parser": "^6.0.10" + }, + "engines": { + "node": "^12 || ^14 || >=16" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/csstools" + }, + "peerDependencies": { + "postcss": "^8.2" } }, - "postcss-browser-comments": { + "node_modules/postcss-browser-comments": { "version": "4.0.0", - "resolved": "https://registry.npmjs.org/postcss-browser-comments/-/postcss-browser-comments-4.0.0.tgz", - "integrity": "sha512-X9X9/WN3KIvY9+hNERUqX9gncsgBA25XaeR+jshHz2j8+sYyHktHw1JdKuMjeLpGktXidqDhA7b/qm1mrBDmgg==", - "requires": {} + "license": "CC0-1.0", + "engines": { + "node": ">=8" + }, + "peerDependencies": { + "browserslist": ">=4", + "postcss": ">=8" + } }, - "postcss-calc": { + "node_modules/postcss-calc": { "version": "8.2.4", - "resolved": "https://registry.npmjs.org/postcss-calc/-/postcss-calc-8.2.4.tgz", - "integrity": "sha512-SmWMSJmB8MRnnULldx0lQIyhSNvuDl9HfrZkaqqE/WHAhToYsAvDq+yAsA/kIyINDszOp3Rh0GFoNuH5Ypsm3Q==", - "requires": { + "license": "MIT", + "dependencies": { "postcss-selector-parser": "^6.0.9", "postcss-value-parser": "^4.2.0" + }, + "peerDependencies": { + "postcss": "^8.2.2" } }, - "postcss-clamp": { + "node_modules/postcss-clamp": { "version": "4.1.0", - "resolved": "https://registry.npmjs.org/postcss-clamp/-/postcss-clamp-4.1.0.tgz", - "integrity": "sha512-ry4b1Llo/9zz+PKC+030KUnPITTJAHeOwjfAyyB60eT0AorGLdzp52s31OsPRHRf8NchkgFoG2y6fCfn1IV1Ow==", - "requires": { + "license": "MIT", + "dependencies": { "postcss-value-parser": "^4.2.0" + }, + "engines": { + "node": ">=7.6.0" + }, + "peerDependencies": { + "postcss": "^8.4.6" } }, - "postcss-color-functional-notation": { - "version": "4.2.3", - "resolved": "https://registry.npmjs.org/postcss-color-functional-notation/-/postcss-color-functional-notation-4.2.3.tgz", - "integrity": "sha512-5fbr6FzFzjwHXKsVnkmEYrJYG8VNNzvD1tAXaPPWR97S6rhKI5uh2yOfV5TAzhDkZoq4h+chxEplFDc8GeyFtw==", - "requires": { + "node_modules/postcss-color-functional-notation": { + "version": "4.2.4", + "license": "CC0-1.0", + "dependencies": { "postcss-value-parser": "^4.2.0" + }, + "engines": { + "node": "^12 || ^14 || >=16" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/csstools" + }, + "peerDependencies": { + "postcss": "^8.2" } }, - "postcss-color-hex-alpha": { + "node_modules/postcss-color-hex-alpha": { "version": "8.0.4", - "resolved": "https://registry.npmjs.org/postcss-color-hex-alpha/-/postcss-color-hex-alpha-8.0.4.tgz", - "integrity": "sha512-nLo2DCRC9eE4w2JmuKgVA3fGL3d01kGq752pVALF68qpGLmx2Qrk91QTKkdUqqp45T1K1XV8IhQpcu1hoAQflQ==", - "requires": { + "license": "MIT", + "dependencies": { "postcss-value-parser": "^4.2.0" + }, + "engines": { + "node": "^12 || ^14 || >=16" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/csstools" + }, + "peerDependencies": { + "postcss": "^8.4" } }, - "postcss-color-rebeccapurple": { - "version": "7.1.0", - "resolved": "https://registry.npmjs.org/postcss-color-rebeccapurple/-/postcss-color-rebeccapurple-7.1.0.tgz", - "integrity": "sha512-1jtE5AKnZcKq4pjOrltFHcbEM2/IvtbD1OdhZ/wqds18//bh0UmQkffcCkzDJU+/vGodfIsVQeKn+45CJvX9Bw==", - "requires": { + "node_modules/postcss-color-rebeccapurple": { + "version": "7.1.1", + "license": "CC0-1.0", + "dependencies": { "postcss-value-parser": "^4.2.0" + }, + "engines": { + "node": "^12 || ^14 || >=16" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/csstools" + }, + "peerDependencies": { + "postcss": "^8.2" } }, - "postcss-colormin": { - "version": "5.3.0", - "resolved": "https://registry.npmjs.org/postcss-colormin/-/postcss-colormin-5.3.0.tgz", - "integrity": "sha512-WdDO4gOFG2Z8n4P8TWBpshnL3JpmNmJwdnfP2gbk2qBA8PWwOYcmjmI/t3CmMeL72a7Hkd+x/Mg9O2/0rD54Pg==", - "requires": { - "browserslist": "^4.16.6", + "node_modules/postcss-colormin": { + "version": "5.3.1", + "license": "MIT", + "dependencies": { + "browserslist": "^4.21.4", "caniuse-api": "^3.0.0", "colord": "^2.9.1", "postcss-value-parser": "^4.2.0" + }, + "engines": { + "node": "^10 || ^12 || >=14.0" + }, + "peerDependencies": { + "postcss": "^8.2.15" } }, - "postcss-convert-values": { - "version": "5.1.2", - "resolved": "https://registry.npmjs.org/postcss-convert-values/-/postcss-convert-values-5.1.2.tgz", - "integrity": "sha512-c6Hzc4GAv95B7suy4udszX9Zy4ETyMCgFPUDtWjdFTKH1SE9eFY/jEpHSwTH1QPuwxHpWslhckUQWbNRM4ho5g==", - "requires": { - "browserslist": "^4.20.3", + "node_modules/postcss-convert-values": { + "version": "5.1.3", + "license": "MIT", + "dependencies": { + "browserslist": "^4.21.4", "postcss-value-parser": "^4.2.0" + }, + "engines": { + "node": "^10 || ^12 || >=14.0" + }, + "peerDependencies": { + "postcss": "^8.2.15" } }, - "postcss-custom-media": { + "node_modules/postcss-custom-media": { "version": "8.0.2", - "resolved": "https://registry.npmjs.org/postcss-custom-media/-/postcss-custom-media-8.0.2.tgz", - "integrity": "sha512-7yi25vDAoHAkbhAzX9dHx2yc6ntS4jQvejrNcC+csQJAXjj15e7VcWfMgLqBNAbOvqi5uIa9huOVwdHbf+sKqg==", - "requires": { + "license": "MIT", + "dependencies": { "postcss-value-parser": "^4.2.0" + }, + "engines": { + "node": "^12 || ^14 || >=16" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/csstools" + }, + "peerDependencies": { + "postcss": "^8.3" } }, - "postcss-custom-properties": { - "version": "12.1.8", - "resolved": "https://registry.npmjs.org/postcss-custom-properties/-/postcss-custom-properties-12.1.8.tgz", - "integrity": "sha512-8rbj8kVu00RQh2fQF81oBqtduiANu4MIxhyf0HbbStgPtnFlWn0yiaYTpLHrPnJbffVY1s9apWsIoVZcc68FxA==", - "requires": { + "node_modules/postcss-custom-properties": { + "version": "12.1.11", + "license": "MIT", + "dependencies": { "postcss-value-parser": "^4.2.0" + }, + "engines": { + "node": "^12 || ^14 || >=16" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/csstools" + }, + "peerDependencies": { + "postcss": "^8.2" } }, - "postcss-custom-selectors": { + "node_modules/postcss-custom-selectors": { "version": "6.0.3", - "resolved": "https://registry.npmjs.org/postcss-custom-selectors/-/postcss-custom-selectors-6.0.3.tgz", - "integrity": "sha512-fgVkmyiWDwmD3JbpCmB45SvvlCD6z9CG6Ie6Iere22W5aHea6oWa7EM2bpnv2Fj3I94L3VbtvX9KqwSi5aFzSg==", - "requires": { + "license": "MIT", + "dependencies": { "postcss-selector-parser": "^6.0.4" + }, + "engines": { + "node": "^12 || ^14 || >=16" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/csstools" + }, + "peerDependencies": { + "postcss": "^8.3" } }, - "postcss-dir-pseudo-class": { - "version": "6.0.4", - "resolved": "https://registry.npmjs.org/postcss-dir-pseudo-class/-/postcss-dir-pseudo-class-6.0.4.tgz", - "integrity": "sha512-I8epwGy5ftdzNWEYok9VjW9whC4xnelAtbajGv4adql4FIF09rnrxnA9Y8xSHN47y7gqFIv10C5+ImsLeJpKBw==", - "requires": { - "postcss-selector-parser": "^6.0.9" + "node_modules/postcss-dir-pseudo-class": { + "version": "6.0.5", + "license": "CC0-1.0", + "dependencies": { + "postcss-selector-parser": "^6.0.10" + }, + "engines": { + "node": "^12 || ^14 || >=16" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/csstools" + }, + "peerDependencies": { + "postcss": "^8.2" } }, - "postcss-discard-comments": { + "node_modules/postcss-discard-comments": { "version": "5.1.2", - "resolved": "https://registry.npmjs.org/postcss-discard-comments/-/postcss-discard-comments-5.1.2.tgz", - "integrity": "sha512-+L8208OVbHVF2UQf1iDmRcbdjJkuBF6IS29yBDSiWUIzpYaAhtNl6JYnYm12FnkeCwQqF5LeklOu6rAqgfBZqQ==", - "requires": {} + "license": "MIT", + "engines": { + "node": "^10 || ^12 || >=14.0" + }, + "peerDependencies": { + "postcss": "^8.2.15" + } }, - "postcss-discard-duplicates": { + "node_modules/postcss-discard-duplicates": { "version": "5.1.0", - "resolved": "https://registry.npmjs.org/postcss-discard-duplicates/-/postcss-discard-duplicates-5.1.0.tgz", - "integrity": "sha512-zmX3IoSI2aoenxHV6C7plngHWWhUOV3sP1T8y2ifzxzbtnuhk1EdPwm0S1bIUNaJ2eNbWeGLEwzw8huPD67aQw==", - "requires": {} + "license": "MIT", + "engines": { + "node": "^10 || ^12 || >=14.0" + }, + "peerDependencies": { + "postcss": "^8.2.15" + } }, - "postcss-discard-empty": { + "node_modules/postcss-discard-empty": { "version": "5.1.1", - "resolved": "https://registry.npmjs.org/postcss-discard-empty/-/postcss-discard-empty-5.1.1.tgz", - "integrity": "sha512-zPz4WljiSuLWsI0ir4Mcnr4qQQ5e1Ukc3i7UfE2XcrwKK2LIPIqE5jxMRxO6GbI3cv//ztXDsXwEWT3BHOGh3A==", - "requires": {} + "license": "MIT", + "engines": { + "node": "^10 || ^12 || >=14.0" + }, + "peerDependencies": { + "postcss": "^8.2.15" + } }, - "postcss-discard-overridden": { + "node_modules/postcss-discard-overridden": { "version": "5.1.0", - "resolved": "https://registry.npmjs.org/postcss-discard-overridden/-/postcss-discard-overridden-5.1.0.tgz", - "integrity": "sha512-21nOL7RqWR1kasIVdKs8HNqQJhFxLsyRfAnUDm4Fe4t4mCWL9OJiHvlHPjcd8zc5Myu89b/7wZDnOSjFgeWRtw==", - "requires": {} + "license": "MIT", + "engines": { + "node": "^10 || ^12 || >=14.0" + }, + "peerDependencies": { + "postcss": "^8.2.15" + } }, - "postcss-double-position-gradients": { - "version": "3.1.1", - "resolved": "https://registry.npmjs.org/postcss-double-position-gradients/-/postcss-double-position-gradients-3.1.1.tgz", - "integrity": "sha512-jM+CGkTs4FcG53sMPjrrGE0rIvLDdCrqMzgDC5fLI7JHDO7o6QG8C5TQBtExb13hdBdoH9C2QVbG4jo2y9lErQ==", - "requires": { + "node_modules/postcss-double-position-gradients": { + "version": "3.1.2", + "license": "CC0-1.0", + "dependencies": { "@csstools/postcss-progressive-custom-properties": "^1.1.0", "postcss-value-parser": "^4.2.0" + }, + "engines": { + "node": "^12 || ^14 || >=16" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/csstools" + }, + "peerDependencies": { + "postcss": "^8.2" } }, - "postcss-env-function": { + "node_modules/postcss-env-function": { "version": "4.0.6", - "resolved": "https://registry.npmjs.org/postcss-env-function/-/postcss-env-function-4.0.6.tgz", - "integrity": "sha512-kpA6FsLra+NqcFnL81TnsU+Z7orGtDTxcOhl6pwXeEq1yFPpRMkCDpHhrz8CFQDr/Wfm0jLiNQ1OsGGPjlqPwA==", - "requires": { + "license": "CC0-1.0", + "dependencies": { "postcss-value-parser": "^4.2.0" + }, + "engines": { + "node": "^12 || ^14 || >=16" + }, + "peerDependencies": { + "postcss": "^8.4" } }, - "postcss-flexbugs-fixes": { + "node_modules/postcss-flexbugs-fixes": { "version": "5.0.2", - "resolved": "https://registry.npmjs.org/postcss-flexbugs-fixes/-/postcss-flexbugs-fixes-5.0.2.tgz", - "integrity": "sha512-18f9voByak7bTktR2QgDveglpn9DTbBWPUzSOe9g0N4WR/2eSt6Vrcbf0hmspvMI6YWGywz6B9f7jzpFNJJgnQ==", - "requires": {} + "license": "MIT", + "peerDependencies": { + "postcss": "^8.1.4" + } }, - "postcss-focus-visible": { + "node_modules/postcss-focus-visible": { "version": "6.0.4", - "resolved": "https://registry.npmjs.org/postcss-focus-visible/-/postcss-focus-visible-6.0.4.tgz", - "integrity": "sha512-QcKuUU/dgNsstIK6HELFRT5Y3lbrMLEOwG+A4s5cA+fx3A3y/JTq3X9LaOj3OC3ALH0XqyrgQIgey/MIZ8Wczw==", - "requires": { + "license": "CC0-1.0", + "dependencies": { "postcss-selector-parser": "^6.0.9" + }, + "engines": { + "node": "^12 || ^14 || >=16" + }, + "peerDependencies": { + "postcss": "^8.4" } }, - "postcss-focus-within": { + "node_modules/postcss-focus-within": { "version": "5.0.4", - "resolved": "https://registry.npmjs.org/postcss-focus-within/-/postcss-focus-within-5.0.4.tgz", - "integrity": "sha512-vvjDN++C0mu8jz4af5d52CB184ogg/sSxAFS+oUJQq2SuCe7T5U2iIsVJtsCp2d6R4j0jr5+q3rPkBVZkXD9fQ==", - "requires": { + "license": "CC0-1.0", + "dependencies": { "postcss-selector-parser": "^6.0.9" + }, + "engines": { + "node": "^12 || ^14 || >=16" + }, + "peerDependencies": { + "postcss": "^8.4" } }, - "postcss-font-variant": { + "node_modules/postcss-font-variant": { "version": "5.0.0", - "resolved": "https://registry.npmjs.org/postcss-font-variant/-/postcss-font-variant-5.0.0.tgz", - "integrity": "sha512-1fmkBaCALD72CK2a9i468mA/+tr9/1cBxRRMXOUaZqO43oWPR5imcyPjXwuv7PXbCid4ndlP5zWhidQVVa3hmA==", - "requires": {} + "license": "MIT", + "peerDependencies": { + "postcss": "^8.1.0" + } }, - "postcss-gap-properties": { - "version": "3.0.3", - "resolved": "https://registry.npmjs.org/postcss-gap-properties/-/postcss-gap-properties-3.0.3.tgz", - "integrity": "sha512-rPPZRLPmEKgLk/KlXMqRaNkYTUpE7YC+bOIQFN5xcu1Vp11Y4faIXv6/Jpft6FMnl6YRxZqDZG0qQOW80stzxQ==", - "requires": {} + "node_modules/postcss-gap-properties": { + "version": "3.0.5", + "license": "CC0-1.0", + "engines": { + "node": "^12 || ^14 || >=16" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/csstools" + }, + "peerDependencies": { + "postcss": "^8.2" + } }, - "postcss-image-set-function": { - "version": "4.0.6", - "resolved": "https://registry.npmjs.org/postcss-image-set-function/-/postcss-image-set-function-4.0.6.tgz", - "integrity": "sha512-KfdC6vg53GC+vPd2+HYzsZ6obmPqOk6HY09kttU19+Gj1nC3S3XBVEXDHxkhxTohgZqzbUb94bKXvKDnYWBm/A==", - "requires": { + "node_modules/postcss-image-set-function": { + "version": "4.0.7", + "license": "CC0-1.0", + "dependencies": { "postcss-value-parser": "^4.2.0" + }, + "engines": { + "node": "^12 || ^14 || >=16" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/csstools" + }, + "peerDependencies": { + "postcss": "^8.2" } }, - "postcss-import": { - "version": "14.1.0", - "resolved": "https://registry.npmjs.org/postcss-import/-/postcss-import-14.1.0.tgz", - "integrity": "sha512-flwI+Vgm4SElObFVPpTIT7SU7R3qk2L7PyduMcokiaVKuWv9d/U+Gm/QAd8NDLuykTWTkcrjOeD2Pp1rMeBTGw==", - "requires": { + "node_modules/postcss-import": { + "version": "15.1.0", + "license": "MIT", + "dependencies": { "postcss-value-parser": "^4.0.0", "read-cache": "^1.0.0", "resolve": "^1.1.7" + }, + "engines": { + "node": ">=14.0.0" + }, + "peerDependencies": { + "postcss": "^8.0.0" } }, - "postcss-initial": { + "node_modules/postcss-initial": { "version": "4.0.1", - "resolved": "https://registry.npmjs.org/postcss-initial/-/postcss-initial-4.0.1.tgz", - "integrity": "sha512-0ueD7rPqX8Pn1xJIjay0AZeIuDoF+V+VvMt/uOnn+4ezUKhZM/NokDeP6DwMNyIoYByuN/94IQnt5FEkaN59xQ==", - "requires": {} + "license": "MIT", + "peerDependencies": { + "postcss": "^8.0.0" + } }, - "postcss-js": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/postcss-js/-/postcss-js-4.0.0.tgz", - "integrity": "sha512-77QESFBwgX4irogGVPgQ5s07vLvFqWr228qZY+w6lW599cRlK/HmnlivnnVUxkjHnCu4J16PDMHcH+e+2HbvTQ==", - "requires": { + "node_modules/postcss-js": { + "version": "4.0.1", + "license": "MIT", + "dependencies": { "camelcase-css": "^2.0.1" + }, + "engines": { + "node": "^12 || ^14 || >= 16" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/postcss/" + }, + "peerDependencies": { + "postcss": "^8.4.21" } }, - "postcss-lab-function": { - "version": "4.2.0", - "resolved": "https://registry.npmjs.org/postcss-lab-function/-/postcss-lab-function-4.2.0.tgz", - "integrity": "sha512-Zb1EO9DGYfa3CP8LhINHCcTTCTLI+R3t7AX2mKsDzdgVQ/GkCpHOTgOr6HBHslP7XDdVbqgHW5vvRPMdVANQ8w==", - "requires": { + "node_modules/postcss-lab-function": { + "version": "4.2.1", + "license": "CC0-1.0", + "dependencies": { "@csstools/postcss-progressive-custom-properties": "^1.1.0", "postcss-value-parser": "^4.2.0" + }, + "engines": { + "node": "^12 || ^14 || >=16" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/csstools" + }, + "peerDependencies": { + "postcss": "^8.2" } }, - "postcss-load-config": { - "version": "3.1.4", - "resolved": "https://registry.npmjs.org/postcss-load-config/-/postcss-load-config-3.1.4.tgz", - "integrity": "sha512-6DiM4E7v4coTE4uzA8U//WhtPwyhiim3eyjEMFCnUpzbrkK9wJHgKDT2mR+HbtSrd/NubVaYTOpSpjUl8NQeRg==", - "requires": { + "node_modules/postcss-load-config": { + "version": "4.0.1", + "license": "MIT", + "dependencies": { "lilconfig": "^2.0.5", - "yaml": "^1.10.2" + "yaml": "^2.1.1" + }, + "engines": { + "node": ">= 14" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/postcss/" + }, + "peerDependencies": { + "postcss": ">=8.0.9", + "ts-node": ">=9.0.0" + }, + "peerDependenciesMeta": { + "postcss": { + "optional": true + }, + "ts-node": { + "optional": true + } + } + }, + "node_modules/postcss-load-config/node_modules/yaml": { + "version": "2.3.1", + "license": "ISC", + "engines": { + "node": ">= 14" } }, - "postcss-loader": { + "node_modules/postcss-loader": { "version": "6.2.1", - "resolved": "https://registry.npmjs.org/postcss-loader/-/postcss-loader-6.2.1.tgz", - "integrity": "sha512-WbbYpmAaKcux/P66bZ40bpWsBucjx/TTgVVzRZ9yUO8yQfVBlameJ0ZGVaPfH64hNSBh63a+ICP5nqOpBA0w+Q==", - "requires": { + "license": "MIT", + "dependencies": { "cosmiconfig": "^7.0.0", "klona": "^2.0.5", "semver": "^7.3.5" + }, + "engines": { + "node": ">= 12.13.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/webpack" + }, + "peerDependencies": { + "postcss": "^7.0.0 || ^8.0.1", + "webpack": "^5.0.0" } }, - "postcss-logical": { + "node_modules/postcss-logical": { "version": "5.0.4", - "resolved": "https://registry.npmjs.org/postcss-logical/-/postcss-logical-5.0.4.tgz", - "integrity": "sha512-RHXxplCeLh9VjinvMrZONq7im4wjWGlRJAqmAVLXyZaXwfDWP73/oq4NdIp+OZwhQUMj0zjqDfM5Fj7qby+B4g==", - "requires": {} + "license": "CC0-1.0", + "engines": { + "node": "^12 || ^14 || >=16" + }, + "peerDependencies": { + "postcss": "^8.4" + } }, - "postcss-media-minmax": { + "node_modules/postcss-media-minmax": { "version": "5.0.0", - "resolved": "https://registry.npmjs.org/postcss-media-minmax/-/postcss-media-minmax-5.0.0.tgz", - "integrity": "sha512-yDUvFf9QdFZTuCUg0g0uNSHVlJ5X1lSzDZjPSFaiCWvjgsvu8vEVxtahPrLMinIDEEGnx6cBe6iqdx5YWz08wQ==", - "requires": {} + "license": "MIT", + "engines": { + "node": ">=10.0.0" + }, + "peerDependencies": { + "postcss": "^8.1.0" + } }, - "postcss-merge-longhand": { - "version": "5.1.6", - "resolved": "https://registry.npmjs.org/postcss-merge-longhand/-/postcss-merge-longhand-5.1.6.tgz", - "integrity": "sha512-6C/UGF/3T5OE2CEbOuX7iNO63dnvqhGZeUnKkDeifebY0XqkkvrctYSZurpNE902LDf2yKwwPFgotnfSoPhQiw==", - "requires": { + "node_modules/postcss-merge-longhand": { + "version": "5.1.7", + "license": "MIT", + "dependencies": { "postcss-value-parser": "^4.2.0", - "stylehacks": "^5.1.0" + "stylehacks": "^5.1.1" + }, + "engines": { + "node": "^10 || ^12 || >=14.0" + }, + "peerDependencies": { + "postcss": "^8.2.15" } }, - "postcss-merge-rules": { - "version": "5.1.2", - "resolved": "https://registry.npmjs.org/postcss-merge-rules/-/postcss-merge-rules-5.1.2.tgz", - "integrity": "sha512-zKMUlnw+zYCWoPN6yhPjtcEdlJaMUZ0WyVcxTAmw3lkkN/NDMRkOkiuctQEoWAOvH7twaxUUdvBWl0d4+hifRQ==", - "requires": { - "browserslist": "^4.16.6", + "node_modules/postcss-merge-rules": { + "version": "5.1.4", + "license": "MIT", + "dependencies": { + "browserslist": "^4.21.4", "caniuse-api": "^3.0.0", "cssnano-utils": "^3.1.0", "postcss-selector-parser": "^6.0.5" + }, + "engines": { + "node": "^10 || ^12 || >=14.0" + }, + "peerDependencies": { + "postcss": "^8.2.15" } }, - "postcss-minify-font-values": { + "node_modules/postcss-minify-font-values": { "version": "5.1.0", - "resolved": "https://registry.npmjs.org/postcss-minify-font-values/-/postcss-minify-font-values-5.1.0.tgz", - "integrity": "sha512-el3mYTgx13ZAPPirSVsHqFzl+BBBDrXvbySvPGFnQcTI4iNslrPaFq4muTkLZmKlGk4gyFAYUBMH30+HurREyA==", - "requires": { + "license": "MIT", + "dependencies": { "postcss-value-parser": "^4.2.0" + }, + "engines": { + "node": "^10 || ^12 || >=14.0" + }, + "peerDependencies": { + "postcss": "^8.2.15" } }, - "postcss-minify-gradients": { + "node_modules/postcss-minify-gradients": { "version": "5.1.1", - "resolved": "https://registry.npmjs.org/postcss-minify-gradients/-/postcss-minify-gradients-5.1.1.tgz", - "integrity": "sha512-VGvXMTpCEo4qHTNSa9A0a3D+dxGFZCYwR6Jokk+/3oB6flu2/PnPXAh2x7x52EkY5xlIHLm+Le8tJxe/7TNhzw==", - "requires": { + "license": "MIT", + "dependencies": { "colord": "^2.9.1", "cssnano-utils": "^3.1.0", "postcss-value-parser": "^4.2.0" + }, + "engines": { + "node": "^10 || ^12 || >=14.0" + }, + "peerDependencies": { + "postcss": "^8.2.15" } }, - "postcss-minify-params": { - "version": "5.1.3", - "resolved": "https://registry.npmjs.org/postcss-minify-params/-/postcss-minify-params-5.1.3.tgz", - "integrity": "sha512-bkzpWcjykkqIujNL+EVEPOlLYi/eZ050oImVtHU7b4lFS82jPnsCb44gvC6pxaNt38Els3jWYDHTjHKf0koTgg==", - "requires": { - "browserslist": "^4.16.6", + "node_modules/postcss-minify-params": { + "version": "5.1.4", + "license": "MIT", + "dependencies": { + "browserslist": "^4.21.4", "cssnano-utils": "^3.1.0", "postcss-value-parser": "^4.2.0" + }, + "engines": { + "node": "^10 || ^12 || >=14.0" + }, + "peerDependencies": { + "postcss": "^8.2.15" } }, - "postcss-minify-selectors": { + "node_modules/postcss-minify-selectors": { "version": "5.2.1", - "resolved": "https://registry.npmjs.org/postcss-minify-selectors/-/postcss-minify-selectors-5.2.1.tgz", - "integrity": "sha512-nPJu7OjZJTsVUmPdm2TcaiohIwxP+v8ha9NehQ2ye9szv4orirRU3SDdtUmKH+10nzn0bAyOXZ0UEr7OpvLehg==", - "requires": { + "license": "MIT", + "dependencies": { "postcss-selector-parser": "^6.0.5" + }, + "engines": { + "node": "^10 || ^12 || >=14.0" + }, + "peerDependencies": { + "postcss": "^8.2.15" } }, - "postcss-modules-extract-imports": { + "node_modules/postcss-modules-extract-imports": { "version": "3.0.0", - "resolved": "https://registry.npmjs.org/postcss-modules-extract-imports/-/postcss-modules-extract-imports-3.0.0.tgz", - "integrity": "sha512-bdHleFnP3kZ4NYDhuGlVK+CMrQ/pqUm8bx/oGL93K6gVwiclvX5x0n76fYMKuIGKzlABOy13zsvqjb0f92TEXw==", - "requires": {} + "license": "ISC", + "engines": { + "node": "^10 || ^12 || >= 14" + }, + "peerDependencies": { + "postcss": "^8.1.0" + } }, - "postcss-modules-local-by-default": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/postcss-modules-local-by-default/-/postcss-modules-local-by-default-4.0.0.tgz", - "integrity": "sha512-sT7ihtmGSF9yhm6ggikHdV0hlziDTX7oFoXtuVWeDd3hHObNkcHRo9V3yg7vCAY7cONyxJC/XXCmmiHHcvX7bQ==", - "requires": { + "node_modules/postcss-modules-local-by-default": { + "version": "4.0.3", + "license": "MIT", + "dependencies": { "icss-utils": "^5.0.0", "postcss-selector-parser": "^6.0.2", "postcss-value-parser": "^4.1.0" + }, + "engines": { + "node": "^10 || ^12 || >= 14" + }, + "peerDependencies": { + "postcss": "^8.1.0" } }, - "postcss-modules-scope": { + "node_modules/postcss-modules-scope": { "version": "3.0.0", - "resolved": "https://registry.npmjs.org/postcss-modules-scope/-/postcss-modules-scope-3.0.0.tgz", - "integrity": "sha512-hncihwFA2yPath8oZ15PZqvWGkWf+XUfQgUGamS4LqoP1anQLOsOJw0vr7J7IwLpoY9fatA2qiGUGmuZL0Iqlg==", - "requires": { + "license": "ISC", + "dependencies": { "postcss-selector-parser": "^6.0.4" + }, + "engines": { + "node": "^10 || ^12 || >= 14" + }, + "peerDependencies": { + "postcss": "^8.1.0" } }, - "postcss-modules-values": { + "node_modules/postcss-modules-values": { "version": "4.0.0", - "resolved": "https://registry.npmjs.org/postcss-modules-values/-/postcss-modules-values-4.0.0.tgz", - "integrity": "sha512-RDxHkAiEGI78gS2ofyvCsu7iycRv7oqw5xMWn9iMoR0N/7mf9D50ecQqUo5BZ9Zh2vH4bCUR/ktCqbB9m8vJjQ==", - "requires": { + "license": "ISC", + "dependencies": { "icss-utils": "^5.0.0" + }, + "engines": { + "node": "^10 || ^12 || >= 14" + }, + "peerDependencies": { + "postcss": "^8.1.0" } }, - "postcss-nested": { - "version": "5.0.6", - "resolved": "https://registry.npmjs.org/postcss-nested/-/postcss-nested-5.0.6.tgz", - "integrity": "sha512-rKqm2Fk0KbA8Vt3AdGN0FB9OBOMDVajMG6ZCf/GoHgdxUJ4sBFp0A/uMIRm+MJUdo33YXEtjqIz8u7DAp8B7DA==", - "requires": { - "postcss-selector-parser": "^6.0.6" + "node_modules/postcss-nested": { + "version": "6.0.1", + "license": "MIT", + "dependencies": { + "postcss-selector-parser": "^6.0.11" + }, + "engines": { + "node": ">=12.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/postcss/" + }, + "peerDependencies": { + "postcss": "^8.2.14" } }, - "postcss-nesting": { - "version": "10.1.9", - "resolved": "https://registry.npmjs.org/postcss-nesting/-/postcss-nesting-10.1.9.tgz", - "integrity": "sha512-WlnqQecNMT7eizBpWwAnQOIk7Zr0A+OZJccEwQoTwmcIsZCVdcjT1LjXj1hBk6zR3BDLZQYsb5KZj2HquZgvTw==", - "requires": { + "node_modules/postcss-nesting": { + "version": "10.2.0", + "license": "CC0-1.0", + "dependencies": { "@csstools/selector-specificity": "^2.0.0", "postcss-selector-parser": "^6.0.10" + }, + "engines": { + "node": "^12 || ^14 || >=16" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/csstools" + }, + "peerDependencies": { + "postcss": "^8.2" } }, - "postcss-normalize": { + "node_modules/postcss-normalize": { "version": "10.0.1", - "resolved": "https://registry.npmjs.org/postcss-normalize/-/postcss-normalize-10.0.1.tgz", - "integrity": "sha512-+5w18/rDev5mqERcG3W5GZNMJa1eoYYNGo8gB7tEwaos0ajk3ZXAI4mHGcNT47NE+ZnZD1pEpUOFLvltIwmeJA==", - "requires": { + "license": "CC0-1.0", + "dependencies": { "@csstools/normalize.css": "*", "postcss-browser-comments": "^4", "sanitize.css": "*" + }, + "engines": { + "node": ">= 12" + }, + "peerDependencies": { + "browserslist": ">= 4", + "postcss": ">= 8" } }, - "postcss-normalize-charset": { + "node_modules/postcss-normalize-charset": { "version": "5.1.0", - "resolved": "https://registry.npmjs.org/postcss-normalize-charset/-/postcss-normalize-charset-5.1.0.tgz", - "integrity": "sha512-mSgUJ+pd/ldRGVx26p2wz9dNZ7ji6Pn8VWBajMXFf8jk7vUoSrZ2lt/wZR7DtlZYKesmZI680qjr2CeFF2fbUg==", - "requires": {} + "license": "MIT", + "engines": { + "node": "^10 || ^12 || >=14.0" + }, + "peerDependencies": { + "postcss": "^8.2.15" + } }, - "postcss-normalize-display-values": { + "node_modules/postcss-normalize-display-values": { "version": "5.1.0", - "resolved": "https://registry.npmjs.org/postcss-normalize-display-values/-/postcss-normalize-display-values-5.1.0.tgz", - "integrity": "sha512-WP4KIM4o2dazQXWmFaqMmcvsKmhdINFblgSeRgn8BJ6vxaMyaJkwAzpPpuvSIoG/rmX3M+IrRZEz2H0glrQNEA==", - "requires": { + "license": "MIT", + "dependencies": { "postcss-value-parser": "^4.2.0" + }, + "engines": { + "node": "^10 || ^12 || >=14.0" + }, + "peerDependencies": { + "postcss": "^8.2.15" } }, - "postcss-normalize-positions": { + "node_modules/postcss-normalize-positions": { "version": "5.1.1", - "resolved": "https://registry.npmjs.org/postcss-normalize-positions/-/postcss-normalize-positions-5.1.1.tgz", - "integrity": "sha512-6UpCb0G4eofTCQLFVuI3EVNZzBNPiIKcA1AKVka+31fTVySphr3VUgAIULBhxZkKgwLImhzMR2Bw1ORK+37INg==", - "requires": { + "license": "MIT", + "dependencies": { "postcss-value-parser": "^4.2.0" + }, + "engines": { + "node": "^10 || ^12 || >=14.0" + }, + "peerDependencies": { + "postcss": "^8.2.15" } }, - "postcss-normalize-repeat-style": { + "node_modules/postcss-normalize-repeat-style": { "version": "5.1.1", - "resolved": "https://registry.npmjs.org/postcss-normalize-repeat-style/-/postcss-normalize-repeat-style-5.1.1.tgz", - "integrity": "sha512-mFpLspGWkQtBcWIRFLmewo8aC3ImN2i/J3v8YCFUwDnPu3Xz4rLohDO26lGjwNsQxB3YF0KKRwspGzE2JEuS0g==", - "requires": { + "license": "MIT", + "dependencies": { "postcss-value-parser": "^4.2.0" + }, + "engines": { + "node": "^10 || ^12 || >=14.0" + }, + "peerDependencies": { + "postcss": "^8.2.15" } }, - "postcss-normalize-string": { + "node_modules/postcss-normalize-string": { "version": "5.1.0", - "resolved": "https://registry.npmjs.org/postcss-normalize-string/-/postcss-normalize-string-5.1.0.tgz", - "integrity": "sha512-oYiIJOf4T9T1N4i+abeIc7Vgm/xPCGih4bZz5Nm0/ARVJ7K6xrDlLwvwqOydvyL3RHNf8qZk6vo3aatiw/go3w==", - "requires": { + "license": "MIT", + "dependencies": { "postcss-value-parser": "^4.2.0" + }, + "engines": { + "node": "^10 || ^12 || >=14.0" + }, + "peerDependencies": { + "postcss": "^8.2.15" } }, - "postcss-normalize-timing-functions": { + "node_modules/postcss-normalize-timing-functions": { "version": "5.1.0", - "resolved": "https://registry.npmjs.org/postcss-normalize-timing-functions/-/postcss-normalize-timing-functions-5.1.0.tgz", - "integrity": "sha512-DOEkzJ4SAXv5xkHl0Wa9cZLF3WCBhF3o1SKVxKQAa+0pYKlueTpCgvkFAHfk+Y64ezX9+nITGrDZeVGgITJXjg==", - "requires": { + "license": "MIT", + "dependencies": { "postcss-value-parser": "^4.2.0" + }, + "engines": { + "node": "^10 || ^12 || >=14.0" + }, + "peerDependencies": { + "postcss": "^8.2.15" } }, - "postcss-normalize-unicode": { - "version": "5.1.0", - "resolved": "https://registry.npmjs.org/postcss-normalize-unicode/-/postcss-normalize-unicode-5.1.0.tgz", - "integrity": "sha512-J6M3MizAAZ2dOdSjy2caayJLQT8E8K9XjLce8AUQMwOrCvjCHv24aLC/Lps1R1ylOfol5VIDMaM/Lo9NGlk1SQ==", - "requires": { - "browserslist": "^4.16.6", + "node_modules/postcss-normalize-unicode": { + "version": "5.1.1", + "license": "MIT", + "dependencies": { + "browserslist": "^4.21.4", "postcss-value-parser": "^4.2.0" + }, + "engines": { + "node": "^10 || ^12 || >=14.0" + }, + "peerDependencies": { + "postcss": "^8.2.15" } }, - "postcss-normalize-url": { + "node_modules/postcss-normalize-url": { "version": "5.1.0", - "resolved": "https://registry.npmjs.org/postcss-normalize-url/-/postcss-normalize-url-5.1.0.tgz", - "integrity": "sha512-5upGeDO+PVthOxSmds43ZeMeZfKH+/DKgGRD7TElkkyS46JXAUhMzIKiCa7BabPeIy3AQcTkXwVVN7DbqsiCew==", - "requires": { + "license": "MIT", + "dependencies": { "normalize-url": "^6.0.1", "postcss-value-parser": "^4.2.0" + }, + "engines": { + "node": "^10 || ^12 || >=14.0" + }, + "peerDependencies": { + "postcss": "^8.2.15" } }, - "postcss-normalize-whitespace": { + "node_modules/postcss-normalize-whitespace": { "version": "5.1.1", - "resolved": "https://registry.npmjs.org/postcss-normalize-whitespace/-/postcss-normalize-whitespace-5.1.1.tgz", - "integrity": "sha512-83ZJ4t3NUDETIHTa3uEg6asWjSBYL5EdkVB0sDncx9ERzOKBVJIUeDO9RyA9Zwtig8El1d79HBp0JEi8wvGQnA==", - "requires": { + "license": "MIT", + "dependencies": { "postcss-value-parser": "^4.2.0" + }, + "engines": { + "node": "^10 || ^12 || >=14.0" + }, + "peerDependencies": { + "postcss": "^8.2.15" } }, - "postcss-opacity-percentage": { - "version": "1.1.2", - "resolved": "https://registry.npmjs.org/postcss-opacity-percentage/-/postcss-opacity-percentage-1.1.2.tgz", - "integrity": "sha512-lyUfF7miG+yewZ8EAk9XUBIlrHyUE6fijnesuz+Mj5zrIHIEw6KcIZSOk/elVMqzLvREmXB83Zi/5QpNRYd47w==" + "node_modules/postcss-opacity-percentage": { + "version": "1.1.3", + "funding": [ + { + "type": "kofi", + "url": "https://ko-fi.com/mrcgrtz" + }, + { + "type": "liberapay", + "url": "https://liberapay.com/mrcgrtz" + } + ], + "license": "MIT", + "engines": { + "node": "^12 || ^14 || >=16" + }, + "peerDependencies": { + "postcss": "^8.2" + } }, - "postcss-ordered-values": { + "node_modules/postcss-ordered-values": { "version": "5.1.3", - "resolved": "https://registry.npmjs.org/postcss-ordered-values/-/postcss-ordered-values-5.1.3.tgz", - "integrity": "sha512-9UO79VUhPwEkzbb3RNpqqghc6lcYej1aveQteWY+4POIwlqkYE21HKWaLDF6lWNuqCobEAyTovVhtI32Rbv2RQ==", - "requires": { + "license": "MIT", + "dependencies": { "cssnano-utils": "^3.1.0", "postcss-value-parser": "^4.2.0" + }, + "engines": { + "node": "^10 || ^12 || >=14.0" + }, + "peerDependencies": { + "postcss": "^8.2.15" } }, - "postcss-overflow-shorthand": { - "version": "3.0.3", - "resolved": "https://registry.npmjs.org/postcss-overflow-shorthand/-/postcss-overflow-shorthand-3.0.3.tgz", - "integrity": "sha512-CxZwoWup9KXzQeeIxtgOciQ00tDtnylYIlJBBODqkgS/PU2jISuWOL/mYLHmZb9ZhZiCaNKsCRiLp22dZUtNsg==", - "requires": {} + "node_modules/postcss-overflow-shorthand": { + "version": "3.0.4", + "license": "CC0-1.0", + "dependencies": { + "postcss-value-parser": "^4.2.0" + }, + "engines": { + "node": "^12 || ^14 || >=16" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/csstools" + }, + "peerDependencies": { + "postcss": "^8.2" + } }, - "postcss-page-break": { + "node_modules/postcss-page-break": { "version": "3.0.4", - "resolved": "https://registry.npmjs.org/postcss-page-break/-/postcss-page-break-3.0.4.tgz", - "integrity": "sha512-1JGu8oCjVXLa9q9rFTo4MbeeA5FMe00/9C7lN4va606Rdb+HkxXtXsmEDrIraQ11fGz/WvKWa8gMuCKkrXpTsQ==", - "requires": {} + "license": "MIT", + "peerDependencies": { + "postcss": "^8" + } }, - "postcss-place": { - "version": "7.0.4", - "resolved": "https://registry.npmjs.org/postcss-place/-/postcss-place-7.0.4.tgz", - "integrity": "sha512-MrgKeiiu5OC/TETQO45kV3npRjOFxEHthsqGtkh3I1rPbZSbXGD/lZVi9j13cYh+NA8PIAPyk6sGjT9QbRyvSg==", - "requires": { + "node_modules/postcss-place": { + "version": "7.0.5", + "license": "CC0-1.0", + "dependencies": { "postcss-value-parser": "^4.2.0" + }, + "engines": { + "node": "^12 || ^14 || >=16" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/csstools" + }, + "peerDependencies": { + "postcss": "^8.2" } }, - "postcss-preset-env": { - "version": "7.7.2", - "resolved": "https://registry.npmjs.org/postcss-preset-env/-/postcss-preset-env-7.7.2.tgz", - "integrity": "sha512-1q0ih7EDsZmCb/FMDRvosna7Gsbdx8CvYO5hYT120hcp2ZAuOHpSzibujZ4JpIUcAC02PG6b+eftxqjTFh5BNA==", - "requires": { - "@csstools/postcss-cascade-layers": "^1.0.4", - "@csstools/postcss-color-function": "^1.1.0", - "@csstools/postcss-font-format-keywords": "^1.0.0", - "@csstools/postcss-hwb-function": "^1.0.1", - "@csstools/postcss-ic-unit": "^1.0.0", - "@csstools/postcss-is-pseudo-class": "^2.0.6", - "@csstools/postcss-normalize-display-values": "^1.0.0", - "@csstools/postcss-oklab-function": "^1.1.0", + "node_modules/postcss-preset-env": { + "version": "7.8.3", + "license": "CC0-1.0", + "dependencies": { + "@csstools/postcss-cascade-layers": "^1.1.1", + "@csstools/postcss-color-function": "^1.1.1", + "@csstools/postcss-font-format-keywords": "^1.0.1", + "@csstools/postcss-hwb-function": "^1.0.2", + "@csstools/postcss-ic-unit": "^1.0.1", + "@csstools/postcss-is-pseudo-class": "^2.0.7", + "@csstools/postcss-nested-calc": "^1.0.0", + "@csstools/postcss-normalize-display-values": "^1.0.1", + "@csstools/postcss-oklab-function": "^1.1.1", "@csstools/postcss-progressive-custom-properties": "^1.3.0", - "@csstools/postcss-stepped-value-functions": "^1.0.0", - "@csstools/postcss-trigonometric-functions": "^1.0.1", - "@csstools/postcss-unset-value": "^1.0.1", - "autoprefixer": "^10.4.7", - "browserslist": "^4.21.0", + "@csstools/postcss-stepped-value-functions": "^1.0.1", + "@csstools/postcss-text-decoration-shorthand": "^1.0.0", + "@csstools/postcss-trigonometric-functions": "^1.0.2", + "@csstools/postcss-unset-value": "^1.0.2", + "autoprefixer": "^10.4.13", + "browserslist": "^4.21.4", "css-blank-pseudo": "^3.0.3", "css-has-pseudo": "^3.0.4", "css-prefers-color-scheme": "^6.0.3", - "cssdb": "^6.6.3", - "postcss-attribute-case-insensitive": "^5.0.1", + "cssdb": "^7.1.0", + "postcss-attribute-case-insensitive": "^5.0.2", "postcss-clamp": "^4.1.0", - "postcss-color-functional-notation": "^4.2.3", + "postcss-color-functional-notation": "^4.2.4", "postcss-color-hex-alpha": "^8.0.4", - "postcss-color-rebeccapurple": "^7.1.0", + "postcss-color-rebeccapurple": "^7.1.1", "postcss-custom-media": "^8.0.2", - "postcss-custom-properties": "^12.1.8", + "postcss-custom-properties": "^12.1.10", "postcss-custom-selectors": "^6.0.3", - "postcss-dir-pseudo-class": "^6.0.4", - "postcss-double-position-gradients": "^3.1.1", + "postcss-dir-pseudo-class": "^6.0.5", + "postcss-double-position-gradients": "^3.1.2", "postcss-env-function": "^4.0.6", "postcss-focus-visible": "^6.0.4", "postcss-focus-within": "^5.0.4", "postcss-font-variant": "^5.0.0", - "postcss-gap-properties": "^3.0.3", - "postcss-image-set-function": "^4.0.6", + "postcss-gap-properties": "^3.0.5", + "postcss-image-set-function": "^4.0.7", "postcss-initial": "^4.0.1", - "postcss-lab-function": "^4.2.0", + "postcss-lab-function": "^4.2.1", "postcss-logical": "^5.0.4", "postcss-media-minmax": "^5.0.0", - "postcss-nesting": "^10.1.9", + "postcss-nesting": "^10.2.0", "postcss-opacity-percentage": "^1.1.2", - "postcss-overflow-shorthand": "^3.0.3", + "postcss-overflow-shorthand": "^3.0.4", "postcss-page-break": "^3.0.4", - "postcss-place": "^7.0.4", - "postcss-pseudo-class-any-link": "^7.1.5", + "postcss-place": "^7.0.5", + "postcss-pseudo-class-any-link": "^7.1.6", "postcss-replace-overflow-wrap": "^4.0.0", - "postcss-selector-not": "^6.0.0", + "postcss-selector-not": "^6.0.1", "postcss-value-parser": "^4.2.0" + }, + "engines": { + "node": "^12 || ^14 || >=16" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/csstools" + }, + "peerDependencies": { + "postcss": "^8.2" } }, - "postcss-pseudo-class-any-link": { - "version": "7.1.5", - "resolved": "https://registry.npmjs.org/postcss-pseudo-class-any-link/-/postcss-pseudo-class-any-link-7.1.5.tgz", - "integrity": "sha512-nSGKGScwFTaaV8Cyi27W9FegX3l3b7tmNxujxmykI/j3++cBAiq8fTUAU3ZK0s2aneN2T8cTUvKdNedzp3JIEA==", - "requires": { + "node_modules/postcss-pseudo-class-any-link": { + "version": "7.1.6", + "license": "CC0-1.0", + "dependencies": { + "postcss-selector-parser": "^6.0.10" + }, + "engines": { + "node": "^12 || ^14 || >=16" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/csstools" + }, + "peerDependencies": { + "postcss": "^8.2" + } + }, + "node_modules/postcss-reduce-initial": { + "version": "5.1.2", + "license": "MIT", + "dependencies": { + "browserslist": "^4.21.4", + "caniuse-api": "^3.0.0" + }, + "engines": { + "node": "^10 || ^12 || >=14.0" + }, + "peerDependencies": { + "postcss": "^8.2.15" + } + }, + "node_modules/postcss-reduce-transforms": { + "version": "5.1.0", + "license": "MIT", + "dependencies": { + "postcss-value-parser": "^4.2.0" + }, + "engines": { + "node": "^10 || ^12 || >=14.0" + }, + "peerDependencies": { + "postcss": "^8.2.15" + } + }, + "node_modules/postcss-replace-overflow-wrap": { + "version": "4.0.0", + "license": "MIT", + "peerDependencies": { + "postcss": "^8.0.3" + } + }, + "node_modules/postcss-selector-not": { + "version": "6.0.1", + "license": "MIT", + "dependencies": { "postcss-selector-parser": "^6.0.10" + }, + "engines": { + "node": "^12 || ^14 || >=16" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/csstools" + }, + "peerDependencies": { + "postcss": "^8.2" + } + }, + "node_modules/postcss-selector-parser": { + "version": "6.0.13", + "license": "MIT", + "dependencies": { + "cssesc": "^3.0.0", + "util-deprecate": "^1.0.2" + }, + "engines": { + "node": ">=4" } }, - "postcss-reduce-initial": { + "node_modules/postcss-svgo": { "version": "5.1.0", - "resolved": "https://registry.npmjs.org/postcss-reduce-initial/-/postcss-reduce-initial-5.1.0.tgz", - "integrity": "sha512-5OgTUviz0aeH6MtBjHfbr57tml13PuedK/Ecg8szzd4XRMbYxH4572JFG067z+FqBIf6Zp/d+0581glkvvWMFw==", - "requires": { - "browserslist": "^4.16.6", - "caniuse-api": "^3.0.0" + "license": "MIT", + "dependencies": { + "postcss-value-parser": "^4.2.0", + "svgo": "^2.7.0" + }, + "engines": { + "node": "^10 || ^12 || >=14.0" + }, + "peerDependencies": { + "postcss": "^8.2.15" } }, - "postcss-reduce-transforms": { - "version": "5.1.0", - "resolved": "https://registry.npmjs.org/postcss-reduce-transforms/-/postcss-reduce-transforms-5.1.0.tgz", - "integrity": "sha512-2fbdbmgir5AvpW9RLtdONx1QoYG2/EtqpNQbFASDlixBbAYuTcJ0dECwlqNqH7VbaUnEnh8SrxOe2sRIn24XyQ==", - "requires": { - "postcss-value-parser": "^4.2.0" + "node_modules/postcss-svgo/node_modules/commander": { + "version": "7.2.0", + "license": "MIT", + "engines": { + "node": ">= 10" } }, - "postcss-replace-overflow-wrap": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/postcss-replace-overflow-wrap/-/postcss-replace-overflow-wrap-4.0.0.tgz", - "integrity": "sha512-KmF7SBPphT4gPPcKZc7aDkweHiKEEO8cla/GjcBK+ckKxiZslIu3C4GCRW3DNfL0o7yW7kMQu9xlZ1kXRXLXtw==", - "requires": {} - }, - "postcss-selector-not": { - "version": "6.0.0", - "resolved": "https://registry.npmjs.org/postcss-selector-not/-/postcss-selector-not-6.0.0.tgz", - "integrity": "sha512-i/HI/VNd3V9e1WOLCwJsf9nePBRXqcGtVibcJ9FsVo0agfDEfsLSlFt94aYjY35wUNcdG0KrvdyjEr7It50wLQ==", - "requires": { - "postcss-selector-parser": "^6.0.10" + "node_modules/postcss-svgo/node_modules/css-tree": { + "version": "1.1.3", + "license": "MIT", + "dependencies": { + "mdn-data": "2.0.14", + "source-map": "^0.6.1" + }, + "engines": { + "node": ">=8.0.0" } }, - "postcss-selector-parser": { - "version": "6.0.10", - "resolved": "https://registry.npmjs.org/postcss-selector-parser/-/postcss-selector-parser-6.0.10.tgz", - "integrity": "sha512-IQ7TZdoaqbT+LCpShg46jnZVlhWD2w6iQYAcYXfHARZ7X1t/UGhhceQDs5X0cGqKvYlHNOuv7Oa1xmb0oQuA3w==", - "requires": { - "cssesc": "^3.0.0", - "util-deprecate": "^1.0.2" + "node_modules/postcss-svgo/node_modules/mdn-data": { + "version": "2.0.14", + "license": "CC0-1.0" + }, + "node_modules/postcss-svgo/node_modules/source-map": { + "version": "0.6.1", + "license": "BSD-3-Clause", + "engines": { + "node": ">=0.10.0" } }, - "postcss-svgo": { - "version": "5.1.0", - "resolved": "https://registry.npmjs.org/postcss-svgo/-/postcss-svgo-5.1.0.tgz", - "integrity": "sha512-D75KsH1zm5ZrHyxPakAxJWtkyXew5qwS70v56exwvw542d9CRtTo78K0WeFxZB4G7JXKKMbEZtZayTGdIky/eA==", - "requires": { - "postcss-value-parser": "^4.2.0", - "svgo": "^2.7.0" - }, + "node_modules/postcss-svgo/node_modules/svgo": { + "version": "2.8.0", + "license": "MIT", "dependencies": { - "commander": { - "version": "7.2.0", - "resolved": "https://registry.npmjs.org/commander/-/commander-7.2.0.tgz", - "integrity": "sha512-QrWXB+ZQSVPmIWIhtEO9H+gwHaMGYiF5ChvoJ+K9ZGHG/sVsa6yiesAD1GC/x46sET00Xlwo1u49RVVVzvcSkw==" - }, - "css-tree": { - "version": "1.1.3", - "resolved": "https://registry.npmjs.org/css-tree/-/css-tree-1.1.3.tgz", - "integrity": "sha512-tRpdppF7TRazZrjJ6v3stzv93qxRcSsFmW6cX0Zm2NVKpxE1WV1HblnghVv9TreireHkqI/VDEsfolRF1p6y7Q==", - "requires": { - "mdn-data": "2.0.14", - "source-map": "^0.6.1" - } - }, - "mdn-data": { - "version": "2.0.14", - "resolved": "https://registry.npmjs.org/mdn-data/-/mdn-data-2.0.14.tgz", - "integrity": "sha512-dn6wd0uw5GsdswPFfsgMp5NSB0/aDe6fK94YJV/AJDYXL6HVLWBsxeq7js7Ad+mU2K9LAlwpk6kN2D5mwCPVow==" - }, - "source-map": { - "version": "0.6.1", - "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz", - "integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==" - }, - "svgo": { - "version": "2.8.0", - "resolved": "https://registry.npmjs.org/svgo/-/svgo-2.8.0.tgz", - "integrity": "sha512-+N/Q9kV1+F+UeWYoSiULYo4xYSDQlTgb+ayMobAXPwMnLvop7oxKMo9OzIrX5x3eS4L4f2UHhc9axXwY8DpChg==", - "requires": { - "@trysound/sax": "0.2.0", - "commander": "^7.2.0", - "css-select": "^4.1.3", - "css-tree": "^1.1.3", - "csso": "^4.2.0", - "picocolors": "^1.0.0", - "stable": "^0.1.8" - } - } + "@trysound/sax": "0.2.0", + "commander": "^7.2.0", + "css-select": "^4.1.3", + "css-tree": "^1.1.3", + "csso": "^4.2.0", + "picocolors": "^1.0.0", + "stable": "^0.1.8" + }, + "bin": { + "svgo": "bin/svgo" + }, + "engines": { + "node": ">=10.13.0" } }, - "postcss-unique-selectors": { + "node_modules/postcss-unique-selectors": { "version": "5.1.1", - "resolved": "https://registry.npmjs.org/postcss-unique-selectors/-/postcss-unique-selectors-5.1.1.tgz", - "integrity": "sha512-5JiODlELrz8L2HwxfPnhOWZYWDxVHWL83ufOv84NrcgipI7TaeRsatAhK4Tr2/ZiYldpK/wBvw5BD3qfaK96GA==", - "requires": { + "license": "MIT", + "dependencies": { "postcss-selector-parser": "^6.0.5" + }, + "engines": { + "node": "^10 || ^12 || >=14.0" + }, + "peerDependencies": { + "postcss": "^8.2.15" } }, - "postcss-value-parser": { + "node_modules/postcss-value-parser": { "version": "4.2.0", - "resolved": "https://registry.npmjs.org/postcss-value-parser/-/postcss-value-parser-4.2.0.tgz", - "integrity": "sha512-1NNCs6uurfkVbeXG4S8JFT9t19m45ICnif8zWLd5oPSZ50QnwMfK+H3jv408d4jw/7Bttv5axS5IiHoLaVNHeQ==" + "license": "MIT" }, - "prelude-ls": { + "node_modules/prelude-ls": { "version": "1.2.1", - "resolved": "https://registry.npmjs.org/prelude-ls/-/prelude-ls-1.2.1.tgz", - "integrity": "sha512-vkcDPrRZo1QZLbn5RLGPpg/WmIQ65qoWWhcGKf/b5eplkkarX0m9z8ppCat4mlOqUsWpyNuYgO3VRyrYHSzX5g==" + "license": "MIT", + "engines": { + "node": ">= 0.8.0" + } }, - "prettier": { + "node_modules/prettier": { "version": "2.7.1", - "resolved": "https://registry.npmjs.org/prettier/-/prettier-2.7.1.tgz", - "integrity": "sha512-ujppO+MkdPqoVINuDFDRLClm7D78qbDt0/NR+wp5FqEZOoTNAjPHWj17QRhu7geIHJfcNhRk1XVQmF8Bp3ye+g==", - "dev": true + "dev": true, + "license": "MIT", + "bin": { + "prettier": "bin-prettier.js" + }, + "engines": { + "node": ">=10.13.0" + }, + "funding": { + "url": "https://github.com/prettier/prettier?sponsor=1" + } }, - "pretty-bytes": { + "node_modules/pretty-bytes": { "version": "5.6.0", - "resolved": "https://registry.npmjs.org/pretty-bytes/-/pretty-bytes-5.6.0.tgz", - "integrity": "sha512-FFw039TmrBqFK8ma/7OL3sDz/VytdtJr044/QUJtH0wK9lb9jLq9tJyIxUwtQJHwar2BqtiA4iCWSwo9JLkzFg==" + "license": "MIT", + "engines": { + "node": ">=6" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } }, - "pretty-error": { + "node_modules/pretty-error": { "version": "4.0.0", - "resolved": "https://registry.npmjs.org/pretty-error/-/pretty-error-4.0.0.tgz", - "integrity": "sha512-AoJ5YMAcXKYxKhuJGdcvse+Voc6v1RgnsR3nWcYU7q4t6z0Q6T86sv5Zq8VIRbOWWFpvdGE83LtdSMNd+6Y0xw==", - "requires": { + "license": "MIT", + "dependencies": { "lodash": "^4.17.20", "renderkid": "^3.0.0" } }, - "pretty-format": { + "node_modules/pretty-format": { "version": "27.5.1", - "resolved": "https://registry.npmjs.org/pretty-format/-/pretty-format-27.5.1.tgz", - "integrity": "sha512-Qb1gy5OrP5+zDf2Bvnzdl3jsTf1qXVMazbvCoKhtKqVs4/YK4ozX4gKQJJVyNe+cajNPn0KoC0MC3FUmaHWEmQ==", - "requires": { + "license": "MIT", + "dependencies": { "ansi-regex": "^5.0.1", "ansi-styles": "^5.0.0", "react-is": "^17.0.1" }, - "dependencies": { - "ansi-styles": { - "version": "5.2.0", - "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-5.2.0.tgz", - "integrity": "sha512-Cxwpt2SfTzTtXcfOlzGEee8O+c+MmUgGrNiBcXnuWxuFJHe6a5Hz7qwhwe5OgaSYI0IJvkLqWX1ASG+cJOkEiA==" - } + "engines": { + "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0" + } + }, + "node_modules/pretty-format/node_modules/ansi-styles": { + "version": "5.2.0", + "license": "MIT", + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/chalk/ansi-styles?sponsor=1" } }, - "process": { + "node_modules/pretty-format/node_modules/react-is": { + "version": "17.0.2", + "license": "MIT" + }, + "node_modules/process": { "version": "0.11.10", - "resolved": "https://registry.npmjs.org/process/-/process-0.11.10.tgz", - "integrity": "sha512-cdGef/drWFoydD1JsMzuFf8100nZl+GT+yacc2bEced5f9Rjk4z+WtFUTBu9PhOi9j/jfmBPu0mMEY4wIdAF8A==" + "license": "MIT", + "engines": { + "node": ">= 0.6.0" + } }, - "process-nextick-args": { + "node_modules/process-nextick-args": { "version": "2.0.1", - "resolved": "https://registry.npmjs.org/process-nextick-args/-/process-nextick-args-2.0.1.tgz", - "integrity": "sha512-3ouUOpQhtgrbOa17J7+uxOTpITYWaGP7/AhoR3+A+/1e9skrzelGi/dXzEYyvbxubEF6Wn2ypscTKiKJFFn1ag==" + "license": "MIT" }, - "promise": { - "version": "8.1.0", - "resolved": "https://registry.npmjs.org/promise/-/promise-8.1.0.tgz", - "integrity": "sha512-W04AqnILOL/sPRXziNicCjSNRruLAuIHEOVBazepu0545DDNGYHz7ar9ZgZ1fMU8/MA4mVxp5rkBWRi6OXIy3Q==", - "requires": { + "node_modules/promise": { + "version": "8.3.0", + "license": "MIT", + "dependencies": { "asap": "~2.0.6" } }, - "prompts": { + "node_modules/prompts": { "version": "2.4.2", - "resolved": "https://registry.npmjs.org/prompts/-/prompts-2.4.2.tgz", - "integrity": "sha512-NxNv/kLguCA7p3jE8oL2aEBsrJWgAakBpgmgK6lpPWV+WuOmY6r2/zbAVnP+T8bQlA0nzHXSJSJW0Hq7ylaD2Q==", - "requires": { + "license": "MIT", + "dependencies": { "kleur": "^3.0.3", "sisteransi": "^1.0.5" + }, + "engines": { + "node": ">= 6" } }, - "prop-types": { + "node_modules/prop-types": { "version": "15.8.1", - "resolved": "https://registry.npmjs.org/prop-types/-/prop-types-15.8.1.tgz", - "integrity": "sha512-oj87CgZICdulUohogVAR7AjlC0327U4el4L6eAvOqCeudMDVU0NThNaV+b9Df4dXgSP1gXMTnPdhfe/2qDH5cg==", - "requires": { + "license": "MIT", + "dependencies": { "loose-envify": "^1.4.0", "object-assign": "^4.1.1", "react-is": "^16.13.1" - }, - "dependencies": { - "react-is": { - "version": "16.13.1", - "resolved": "https://registry.npmjs.org/react-is/-/react-is-16.13.1.tgz", - "integrity": "sha512-24e6ynE2H+OKt4kqsOvNd8kBpV65zoxbA4BVsEOB3ARVWQki/DHzaUoC5KuON/BiccDaCCTZBuOcfZs70kR8bQ==" - } } }, - "prop-types-exact": { + "node_modules/prop-types-exact": { "version": "1.2.0", - "resolved": "https://registry.npmjs.org/prop-types-exact/-/prop-types-exact-1.2.0.tgz", - "integrity": "sha512-K+Tk3Kd9V0odiXFP9fwDHUYRyvK3Nun3GVyPapSIs5OBkITAm15W0CPFD/YKTkMUAbc0b9CUwRQp2ybiBIq+eA==", - "requires": { + "license": "MIT", + "dependencies": { "has": "^1.0.3", "object.assign": "^4.1.0", "reflect.ownkeys": "^0.2.0" } }, - "proxy-addr": { + "node_modules/prop-types/node_modules/react-is": { + "version": "16.13.1", + "license": "MIT" + }, + "node_modules/proxy-addr": { "version": "2.0.7", - "resolved": "https://registry.npmjs.org/proxy-addr/-/proxy-addr-2.0.7.tgz", - "integrity": "sha512-llQsMLSUDUPT44jdrU/O37qlnifitDP+ZwrmmZcoSKyLKvtZxpyV0n2/bD/N4tBAAZ/gJEdZU7KMraoK1+XYAg==", - "requires": { + "license": "MIT", + "dependencies": { "forwarded": "0.2.0", "ipaddr.js": "1.9.1" }, - "dependencies": { - "ipaddr.js": { - "version": "1.9.1", - "resolved": "https://registry.npmjs.org/ipaddr.js/-/ipaddr.js-1.9.1.tgz", - "integrity": "sha512-0KI/607xoxSToH7GjN1FfSbLoU0+btTicjsQSWQlh/hZykN8KpmMf7uYwPW3R+akZ6R/w18ZlXSHBYXiYUPO3g==" - } + "engines": { + "node": ">= 0.10" } }, - "psl": { - "version": "1.8.0", - "resolved": "https://registry.npmjs.org/psl/-/psl-1.8.0.tgz", - "integrity": "sha512-RIdOzyoavK+hA18OGGWDqUTsCLhtA7IcZ/6NCs4fFJaHBDab+pDDmDIByWFRQJq2Cd7r1OoQxBGKOaztq+hjIQ==" + "node_modules/proxy-addr/node_modules/ipaddr.js": { + "version": "1.9.1", + "license": "MIT", + "engines": { + "node": ">= 0.10" + } + }, + "node_modules/psl": { + "version": "1.9.0", + "license": "MIT" }, - "pump": { + "node_modules/pump": { "version": "3.0.0", - "resolved": "https://registry.npmjs.org/pump/-/pump-3.0.0.tgz", - "integrity": "sha512-LwZy+p3SFs1Pytd/jYct4wpv49HiYCqd9Rlc5ZVdk0V+8Yzv6jR5Blk3TRmPL1ft69TxP0IMZGJ+WPFU2BFhww==", - "requires": { + "license": "MIT", + "dependencies": { "end-of-stream": "^1.1.0", "once": "^1.3.1" } }, - "punycode": { - "version": "2.1.1", - "resolved": "https://registry.npmjs.org/punycode/-/punycode-2.1.1.tgz", - "integrity": "sha512-XRsRjdf+j5ml+y/6GKHPZbrF/8p2Yga0JPtdqTIY2Xe5ohJPD9saDJJLPvp9+NSBprVvevdXZybnj2cv8OEd0A==" - }, - "q": { - "version": "1.5.1", - "resolved": "https://registry.npmjs.org/q/-/q-1.5.1.tgz", - "integrity": "sha512-kV/CThkXo6xyFEZUugw/+pIOywXcDbFYgSct5cT3gqlbkBE1SJdwy6UQoZvodiWF/ckQLZyDE/Bu1M6gVu5lVw==" + "node_modules/punycode": { + "version": "2.3.0", + "license": "MIT", + "engines": { + "node": ">=6" + } + }, + "node_modules/q": { + "version": "1.5.1", + "license": "MIT", + "engines": { + "node": ">=0.6.0", + "teleport": ">=0.2.0" + } + }, + "node_modules/qrcode": { + "version": "1.5.3", + "license": "MIT", + "dependencies": { + "dijkstrajs": "^1.0.1", + "encode-utf8": "^1.0.3", + "pngjs": "^5.0.0", + "yargs": "^15.3.1" + }, + "bin": { + "qrcode": "bin/qrcode" + }, + "engines": { + "node": ">=10.13.0" + } + }, + "node_modules/qrcode/node_modules/camelcase": { + "version": "5.3.1", + "license": "MIT", + "engines": { + "node": ">=6" + } + }, + "node_modules/qrcode/node_modules/cliui": { + "version": "6.0.0", + "license": "ISC", + "dependencies": { + "string-width": "^4.2.0", + "strip-ansi": "^6.0.0", + "wrap-ansi": "^6.2.0" + } + }, + "node_modules/qrcode/node_modules/decamelize": { + "version": "1.2.0", + "license": "MIT", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/qrcode/node_modules/find-up": { + "version": "4.1.0", + "license": "MIT", + "dependencies": { + "locate-path": "^5.0.0", + "path-exists": "^4.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/qrcode/node_modules/locate-path": { + "version": "5.0.0", + "license": "MIT", + "dependencies": { + "p-locate": "^4.1.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/qrcode/node_modules/p-limit": { + "version": "2.3.0", + "license": "MIT", + "dependencies": { + "p-try": "^2.0.0" + }, + "engines": { + "node": ">=6" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/qrcode/node_modules/p-locate": { + "version": "4.1.0", + "license": "MIT", + "dependencies": { + "p-limit": "^2.2.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/qrcode/node_modules/pngjs": { + "version": "5.0.0", + "license": "MIT", + "engines": { + "node": ">=10.13.0" + } + }, + "node_modules/qrcode/node_modules/wrap-ansi": { + "version": "6.2.0", + "license": "MIT", + "dependencies": { + "ansi-styles": "^4.0.0", + "string-width": "^4.1.0", + "strip-ansi": "^6.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/qrcode/node_modules/y18n": { + "version": "4.0.3", + "license": "ISC" }, - "qrcode": { - "version": "1.5.3", - "resolved": "https://registry.npmjs.org/qrcode/-/qrcode-1.5.3.tgz", - "integrity": "sha512-puyri6ApkEHYiVl4CFzo1tDkAZ+ATcnbJrJ6RiBM1Fhctdn/ix9MTE3hRph33omisEbC/2fcfemsseiKgBPKZg==", - "requires": { - "dijkstrajs": "^1.0.1", - "encode-utf8": "^1.0.3", - "pngjs": "^5.0.0", - "yargs": "^15.3.1" + "node_modules/qrcode/node_modules/yargs": { + "version": "15.4.1", + "license": "MIT", + "dependencies": { + "cliui": "^6.0.0", + "decamelize": "^1.2.0", + "find-up": "^4.1.0", + "get-caller-file": "^2.0.1", + "require-directory": "^2.1.1", + "require-main-filename": "^2.0.0", + "set-blocking": "^2.0.0", + "string-width": "^4.2.0", + "which-module": "^2.0.0", + "y18n": "^4.0.0", + "yargs-parser": "^18.1.2" }, + "engines": { + "node": ">=8" + } + }, + "node_modules/qrcode/node_modules/yargs-parser": { + "version": "18.1.3", + "license": "ISC", "dependencies": { - "ansi-styles": { - "version": "4.3.0", - "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", - "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", - "requires": { - "color-convert": "^2.0.1" - } - }, - "camelcase": { - "version": "5.3.1", - "resolved": "https://registry.npmjs.org/camelcase/-/camelcase-5.3.1.tgz", - "integrity": "sha512-L28STB170nwWS63UjtlEOE3dldQApaJXZkOI1uMFfzf3rRuPegHaHesyee+YxQ+W6SvRDQV6UrdOdRiR153wJg==" - }, - "cliui": { - "version": "6.0.0", - "resolved": "https://registry.npmjs.org/cliui/-/cliui-6.0.0.tgz", - "integrity": "sha512-t6wbgtoCXvAzst7QgXxJYqPt0usEfbgQdftEPbLL/cvv6HPE5VgvqCuAIDR0NgU52ds6rFwqrgakNLrHEjCbrQ==", - "requires": { - "string-width": "^4.2.0", - "strip-ansi": "^6.0.0", - "wrap-ansi": "^6.2.0" - } - }, - "color-convert": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz", - "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==", - "requires": { - "color-name": "~1.1.4" - } - }, - "color-name": { - "version": "1.1.4", - "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz", - "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==" - }, - "decamelize": { - "version": "1.2.0", - "resolved": "https://registry.npmjs.org/decamelize/-/decamelize-1.2.0.tgz", - "integrity": "sha512-z2S+W9X73hAUUki+N+9Za2lBlun89zigOyGrsax+KUQ6wKW4ZoWpEYBkGhQjwAjjDCkWxhY0VKEhk8wzY7F5cA==" - }, - "find-up": { - "version": "4.1.0", - "resolved": "https://registry.npmjs.org/find-up/-/find-up-4.1.0.tgz", - "integrity": "sha512-PpOwAdQ/YlXQ2vj8a3h8IipDuYRi3wceVQQGYWxNINccq40Anw7BlsEXCMbt1Zt+OLA6Fq9suIpIWD0OsnISlw==", - "requires": { - "locate-path": "^5.0.0", - "path-exists": "^4.0.0" - } - }, - "locate-path": { - "version": "5.0.0", - "resolved": "https://registry.npmjs.org/locate-path/-/locate-path-5.0.0.tgz", - "integrity": "sha512-t7hw9pI+WvuwNJXwk5zVHpyhIqzg2qTlklJOf0mVxGSbe3Fp2VieZcduNYjaLDoy6p9uGpQEGWG87WpMKlNq8g==", - "requires": { - "p-locate": "^4.1.0" - } - }, - "p-limit": { - "version": "2.3.0", - "resolved": "https://registry.npmjs.org/p-limit/-/p-limit-2.3.0.tgz", - "integrity": "sha512-//88mFWSJx8lxCzwdAABTJL2MyWB12+eIY7MDL2SqLmAkeKU9qxRvWuSyTjm3FUmpBEMuFfckAIqEaVGUDxb6w==", - "requires": { - "p-try": "^2.0.0" - } - }, - "p-locate": { - "version": "4.1.0", - "resolved": "https://registry.npmjs.org/p-locate/-/p-locate-4.1.0.tgz", - "integrity": "sha512-R79ZZ/0wAxKGu3oYMlz8jy/kbhsNrS7SKZ7PxEHBgJ5+F2mtFW2fK2cOtBh1cHYkQsbzFV7I+EoRKe6Yt0oK7A==", - "requires": { - "p-limit": "^2.2.0" - } - }, - "pngjs": { - "version": "5.0.0", - "resolved": "https://registry.npmjs.org/pngjs/-/pngjs-5.0.0.tgz", - "integrity": "sha512-40QW5YalBNfQo5yRYmiw7Yz6TKKVr3h6970B2YE+3fQpsWcrbj1PzJgxeJ19DRQjhMbKPIuMY8rFaXc8moolVw==" - }, - "wrap-ansi": { - "version": "6.2.0", - "resolved": "https://registry.npmjs.org/wrap-ansi/-/wrap-ansi-6.2.0.tgz", - "integrity": "sha512-r6lPcBGxZXlIcymEu7InxDMhdW0KDxpLgoFLcguasxCaJ/SOIZwINatK9KY/tf+ZrlywOKU0UDj3ATXUBfxJXA==", - "requires": { - "ansi-styles": "^4.0.0", - "string-width": "^4.1.0", - "strip-ansi": "^6.0.0" - } - }, - "y18n": { - "version": "4.0.3", - "resolved": "https://registry.npmjs.org/y18n/-/y18n-4.0.3.tgz", - "integrity": "sha512-JKhqTOwSrqNA1NY5lSztJ1GrBiUodLMmIZuLiDaMRJ+itFd+ABVE8XBjOvIWL+rSqNDC74LCSFmlb/U4UZ4hJQ==" - }, - "yargs": { - "version": "15.4.1", - "resolved": "https://registry.npmjs.org/yargs/-/yargs-15.4.1.tgz", - "integrity": "sha512-aePbxDmcYW++PaqBsJ+HYUFwCdv4LVvdnhBy78E57PIor8/OVvhMrADFFEDh8DHDFRv/O9i3lPhsENjO7QX0+A==", - "requires": { - "cliui": "^6.0.0", - "decamelize": "^1.2.0", - "find-up": "^4.1.0", - "get-caller-file": "^2.0.1", - "require-directory": "^2.1.1", - "require-main-filename": "^2.0.0", - "set-blocking": "^2.0.0", - "string-width": "^4.2.0", - "which-module": "^2.0.0", - "y18n": "^4.0.0", - "yargs-parser": "^18.1.2" - } - }, - "yargs-parser": { - "version": "18.1.3", - "resolved": "https://registry.npmjs.org/yargs-parser/-/yargs-parser-18.1.3.tgz", - "integrity": "sha512-o50j0JeToy/4K6OZcaQmW6lyXXKhq7csREXcDwk2omFPJEwUNOVtJKvmDr9EI1fAJZUyZcRF7kxGBWmRXudrCQ==", - "requires": { - "camelcase": "^5.0.0", - "decamelize": "^1.2.0" - } - } + "camelcase": "^5.0.0", + "decamelize": "^1.2.0" + }, + "engines": { + "node": ">=6" } }, - "qs": { - "version": "6.10.3", - "resolved": "https://registry.npmjs.org/qs/-/qs-6.10.3.tgz", - "integrity": "sha512-wr7M2E0OFRfIfJZjKGieI8lBKb7fRCH4Fv5KNPEs7gJ8jadvotdsS08PzOKR7opXhZ/Xkjtt3WF9g38drmyRqQ==", - "requires": { + "node_modules/qs": { + "version": "6.11.0", + "license": "BSD-3-Clause", + "dependencies": { "side-channel": "^1.0.4" + }, + "engines": { + "node": ">=0.6" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" } }, - "query-string": { + "node_modules/query-string": { "version": "5.1.1", - "resolved": "https://registry.npmjs.org/query-string/-/query-string-5.1.1.tgz", - "integrity": "sha512-gjWOsm2SoGlgLEdAGt7a6slVOk9mGiXmPFMqrEhLQ68rhQuBnpfs3+EmlvqKyxnCo9/PPlF+9MtY02S1aFg+Jw==", - "requires": { + "license": "MIT", + "dependencies": { "decode-uri-component": "^0.2.0", "object-assign": "^4.1.0", "strict-uri-encode": "^1.0.0" + }, + "engines": { + "node": ">=0.10.0" } }, - "querystring": { - "version": "0.2.0", - "resolved": "https://registry.npmjs.org/querystring/-/querystring-0.2.0.tgz", - "integrity": "sha512-X/xY82scca2tau62i9mDyU9K+I+djTMUsvwf7xnUX5GLvVzgJybOJf4Y6o9Zx3oJK/LSXg5tTZBjwzqVPaPO2g==" + "node_modules/querystringify": { + "version": "2.2.0", + "license": "MIT" }, - "queue-microtask": { + "node_modules/queue-microtask": { "version": "1.2.3", - "resolved": "https://registry.npmjs.org/queue-microtask/-/queue-microtask-1.2.3.tgz", - "integrity": "sha512-NuaNSa6flKT5JaSYQzJok04JzTL1CA6aGhv5rfLW3PgqA+M2ChpZQnAC8h8i4ZFkBS8X5RqkDBHA7r4hej3K9A==" + "funding": [ + { + "type": "github", + "url": "https://github.com/sponsors/feross" + }, + { + "type": "patreon", + "url": "https://www.patreon.com/feross" + }, + { + "type": "consulting", + "url": "https://feross.org/support" + } + ], + "license": "MIT" }, - "quick-lru": { + "node_modules/quick-lru": { "version": "5.1.1", - "resolved": "https://registry.npmjs.org/quick-lru/-/quick-lru-5.1.1.tgz", - "integrity": "sha512-WuyALRjWPDGtt/wzJiadO5AXY+8hZ80hVpe6MyivgraREW751X3SbhRvG3eLKOYN+8VEvqLcf3wdnt44Z4S4SA==" + "license": "MIT", + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } }, - "raf": { + "node_modules/raf": { "version": "3.4.1", - "resolved": "https://registry.npmjs.org/raf/-/raf-3.4.1.tgz", - "integrity": "sha512-Sq4CW4QhwOHE8ucn6J34MqtZCeWFP2aQSmrlroYgqAV1PjStIhJXxYuTgUIfkEk7zTLjmIjLmU5q+fbD1NnOJA==", - "requires": { + "license": "MIT", + "dependencies": { "performance-now": "^2.1.0" } }, - "randombytes": { + "node_modules/randombytes": { "version": "2.1.0", - "resolved": "https://registry.npmjs.org/randombytes/-/randombytes-2.1.0.tgz", - "integrity": "sha512-vYl3iOX+4CKUWuxGi9Ukhie6fsqXqS9FE2Zaic4tNFD2N2QQaXOMFbuKK4QmDHC0JO6B1Zp41J0LpT0oR68amQ==", - "requires": { + "license": "MIT", + "dependencies": { "safe-buffer": "^5.1.0" } }, - "range-parser": { + "node_modules/range-parser": { "version": "1.2.1", - "resolved": "https://registry.npmjs.org/range-parser/-/range-parser-1.2.1.tgz", - "integrity": "sha512-Hrgsx+orqoygnmhFbKaHE6c296J+HTAQXoxEF6gNupROmmGJRoyzfG3ccAveqCBrwr/2yxQ5BVd/GTl5agOwSg==" + "license": "MIT", + "engines": { + "node": ">= 0.6" + } }, - "raw-body": { + "node_modules/raw-body": { "version": "2.5.1", - "resolved": "https://registry.npmjs.org/raw-body/-/raw-body-2.5.1.tgz", - "integrity": "sha512-qqJBtEyVgS0ZmPGdCFPWJ3FreoqvG4MVQln/kCgF7Olq95IbOp0/BWyMwbdtn4VTvkM8Y7khCQ2Xgk/tcrCXig==", - "requires": { + "license": "MIT", + "dependencies": { "bytes": "3.1.2", "http-errors": "2.0.0", "iconv-lite": "0.4.24", "unpipe": "1.0.0" }, + "engines": { + "node": ">= 0.8" + } + }, + "node_modules/raw-body/node_modules/bytes": { + "version": "3.1.2", + "license": "MIT", + "engines": { + "node": ">= 0.8" + } + }, + "node_modules/raw-body/node_modules/iconv-lite": { + "version": "0.4.24", + "license": "MIT", "dependencies": { - "bytes": { - "version": "3.1.2", - "resolved": "https://registry.npmjs.org/bytes/-/bytes-3.1.2.tgz", - "integrity": "sha512-/Nf7TyzTx6S3yRJObOAV7956r8cr2+Oj8AC5dt8wSP3BQAoeX58NoHyCU8P8zGkNXStjTSi6fzO6F0pBdcYbEg==" - }, - "iconv-lite": { - "version": "0.4.24", - "resolved": "https://registry.npmjs.org/iconv-lite/-/iconv-lite-0.4.24.tgz", - "integrity": "sha512-v3MXnZAcvnywkTUEZomIActle7RXXeedOR31wwl7VlyoXO4Qi9arvSenNQWne1TcRwhCL1HwLI21bEqdpj8/rA==", - "requires": { - "safer-buffer": ">= 2.1.2 < 3" - } - } + "safer-buffer": ">= 2.1.2 < 3" + }, + "engines": { + "node": ">=0.10.0" } }, - "react": { + "node_modules/react": { "version": "18.2.0", - "resolved": "https://registry.npmjs.org/react/-/react-18.2.0.tgz", - "integrity": "sha512-/3IjMdb2L9QbBdWiW5e3P2/npwMBaU9mHCSCUzNln0ZCYbcfTsGbTJrU/kGemdH2IWmB2ioZ+zkxtmq6g09fGQ==", - "requires": { + "license": "MIT", + "dependencies": { "loose-envify": "^1.1.0" + }, + "engines": { + "node": ">=0.10.0" } }, - "react-app-polyfill": { + "node_modules/react-app-polyfill": { "version": "3.0.0", - "resolved": "https://registry.npmjs.org/react-app-polyfill/-/react-app-polyfill-3.0.0.tgz", - "integrity": "sha512-sZ41cxiU5llIB003yxxQBYrARBqe0repqPTTYBTmMqTz9szeBbE37BehCE891NZsmdZqqP+xWKdT3eo3vOzN8w==", - "requires": { + "license": "MIT", + "dependencies": { "core-js": "^3.19.2", "object-assign": "^4.1.1", "promise": "^8.1.0", "raf": "^3.4.1", "regenerator-runtime": "^0.13.9", "whatwg-fetch": "^3.6.2" + }, + "engines": { + "node": ">=14" } }, - "react-contenteditable": { - "version": "3.3.6", - "resolved": "https://registry.npmjs.org/react-contenteditable/-/react-contenteditable-3.3.6.tgz", - "integrity": "sha512-61+Anbmzggel1sP7nwvxq3d2woD3duR5R89RoLGqKan1A+nruFIcmLjw2F+qqk70AyABls0BDKzE1vqS1UIF1g==", - "requires": { + "node_modules/react-app-polyfill/node_modules/regenerator-runtime": { + "version": "0.13.11", + "license": "MIT" + }, + "node_modules/react-contenteditable": { + "version": "3.3.7", + "license": "Apache-2.0", + "dependencies": { "fast-deep-equal": "^3.1.3", "prop-types": "^15.7.1" + }, + "peerDependencies": { + "react": ">=16.3" } }, - "react-dev-utils": { + "node_modules/react-dev-utils": { "version": "12.0.1", - "resolved": "https://registry.npmjs.org/react-dev-utils/-/react-dev-utils-12.0.1.tgz", - "integrity": "sha512-84Ivxmr17KjUupyqzFode6xKhjwuEJDROWKJy/BthkL7Wn6NJ8h4WE6k/exAv6ImS+0oZLRRW5j/aINMHyeGeQ==", - "requires": { + "license": "MIT", + "dependencies": { "@babel/code-frame": "^7.16.0", "address": "^1.1.2", "browserslist": "^4.18.1", @@ -40422,151 +17468,117 @@ "strip-ansi": "^6.0.1", "text-table": "^0.2.0" }, - "dependencies": { - "ansi-styles": { - "version": "4.3.0", - "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", - "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", - "requires": { - "color-convert": "^2.0.1" - } - }, - "chalk": { - "version": "4.1.2", - "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz", - "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==", - "requires": { - "ansi-styles": "^4.1.0", - "supports-color": "^7.1.0" - } - }, - "color-convert": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz", - "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==", - "requires": { - "color-name": "~1.1.4" - } - }, - "color-name": { - "version": "1.1.4", - "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz", - "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==" - }, - "escape-string-regexp": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/escape-string-regexp/-/escape-string-regexp-4.0.0.tgz", - "integrity": "sha512-TtpcNJ3XAzx3Gq8sWRzJaVajRs0uVxA2YAkdb1jm2YkPz4G6egUFAyA3n5vtEIZefPk5Wa4UXbKuS5fKkJWdgA==" - }, - "has-flag": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz", - "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==" - }, - "loader-utils": { - "version": "3.2.1", - "resolved": "https://registry.npmjs.org/loader-utils/-/loader-utils-3.2.1.tgz", - "integrity": "sha512-ZvFw1KWS3GVyYBYb7qkmRM/WwL2TQQBxgCK62rlvm4WpVQ23Nb4tYjApUlfjrEGvOs7KHEsmyUn75OHZrJMWPw==" - }, - "supports-color": { - "version": "7.2.0", - "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", - "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", - "requires": { - "has-flag": "^4.0.0" - } - } + "engines": { + "node": ">=14" + } + }, + "node_modules/react-dev-utils/node_modules/loader-utils": { + "version": "3.2.1", + "license": "MIT", + "engines": { + "node": ">= 12.13.0" } }, - "react-dom": { + "node_modules/react-dom": { "version": "18.2.0", - "resolved": "https://registry.npmjs.org/react-dom/-/react-dom-18.2.0.tgz", - "integrity": "sha512-6IMTriUmvsjHUjNtEDudZfuDQUoWXVxKHhlEGSk81n4YFS+r/Kl99wXiwlVXtPBtJenozv2P+hxDsw9eA7Xo6g==", - "requires": { + "license": "MIT", + "dependencies": { "loose-envify": "^1.1.0", "scheduler": "^0.23.0" + }, + "peerDependencies": { + "react": "^18.2.0" } }, - "react-error-overlay": { + "node_modules/react-error-overlay": { "version": "6.0.11", - "resolved": "https://registry.npmjs.org/react-error-overlay/-/react-error-overlay-6.0.11.tgz", - "integrity": "sha512-/6UZ2qgEyH2aqzYZgQPxEnz33NJ2gNsnHA2o5+o4wW9bLM/JYQitNP9xPhsXwC08hMMovfGe/8retsdDsczPRg==" + "license": "MIT" }, - "react-fast-compare": { - "version": "3.2.1", - "resolved": "https://registry.npmjs.org/react-fast-compare/-/react-fast-compare-3.2.1.tgz", - "integrity": "sha512-xTYf9zFim2pEif/Fw16dBiXpe0hoy5PxcD8+OwBnTtNLfIm3g6WxhKNurY+6OmdH1u6Ta/W/Vl6vjbYP1MFnDg==" + "node_modules/react-fast-compare": { + "version": "3.2.2", + "license": "MIT" }, - "react-feather": { + "node_modules/react-feather": { "version": "2.0.10", - "resolved": "https://registry.npmjs.org/react-feather/-/react-feather-2.0.10.tgz", - "integrity": "sha512-BLhukwJ+Z92Nmdcs+EMw6dy1Z/VLiJTzEQACDUEnWMClhYnFykJCGWQx+NmwP/qQHGX/5CzQ+TGi8ofg2+HzVQ==", - "requires": { + "license": "MIT", + "dependencies": { "prop-types": "^15.7.2" + }, + "peerDependencies": { + "react": ">=16.8.6" } }, - "react-hotkeys": { + "node_modules/react-hotkeys": { "version": "2.0.0", - "resolved": "https://registry.npmjs.org/react-hotkeys/-/react-hotkeys-2.0.0.tgz", - "integrity": "sha512-3n3OU8vLX/pfcJrR3xJ1zlww6KS1kEJt0Whxc4FiGV+MJrQ1mYSYI3qS/11d2MJDFm8IhOXMTFQirfu6AVOF6Q==", - "requires": { + "license": "ISC", + "dependencies": { "prop-types": "^15.6.1" + }, + "peerDependencies": { + "react": ">= 0.14.0" } }, - "react-is": { - "version": "17.0.2", - "resolved": "https://registry.npmjs.org/react-is/-/react-is-17.0.2.tgz", - "integrity": "sha512-w2GsyukL62IJnlaff/nRegPQR94C/XXamvMWmSHRJ4y7Ts/4ocGRmTHvOs8PSE6pB3dWOrD/nueuU5sduBsQ4w==" + "node_modules/react-is": { + "version": "18.2.0", + "license": "MIT" }, - "react-outside-click-handler": { + "node_modules/react-outside-click-handler": { "version": "1.3.0", - "resolved": "https://registry.npmjs.org/react-outside-click-handler/-/react-outside-click-handler-1.3.0.tgz", - "integrity": "sha512-Te/7zFU0oHpAnctl//pP3hEAeobfeHMyygHB8MnjP6sX5OR8KHT1G3jmLsV3U9RnIYo+Yn+peJYWu+D5tUS8qQ==", - "requires": { + "license": "MIT", + "dependencies": { "airbnb-prop-types": "^2.15.0", "consolidated-events": "^1.1.1 || ^2.0.0", "document.contains": "^1.0.1", "object.values": "^1.1.0", "prop-types": "^15.7.2" }, + "peerDependencies": { + "react": "^0.14 || >=15", + "react-dom": "^0.14 || >=15" + } + }, + "node_modules/react-outside-click-handler/node_modules/airbnb-prop-types": { + "version": "2.16.0", + "license": "MIT", "dependencies": { - "airbnb-prop-types": { - "version": "2.16.0", - "resolved": "https://registry.npmjs.org/airbnb-prop-types/-/airbnb-prop-types-2.16.0.tgz", - "integrity": "sha512-7WHOFolP/6cS96PhKNrslCLMYAI8yB1Pp6u6XmxozQOiZbsI5ycglZr5cHhBFfuRcQQjzCMith5ZPZdYiJCxUg==", - "requires": { - "array.prototype.find": "^2.1.1", - "function.prototype.name": "^1.1.2", - "is-regex": "^1.1.0", - "object-is": "^1.1.2", - "object.assign": "^4.1.0", - "object.entries": "^1.1.2", - "prop-types": "^15.7.2", - "prop-types-exact": "^1.2.0", - "react-is": "^16.13.1" - } - }, - "react-is": { - "version": "16.13.1", - "resolved": "https://registry.npmjs.org/react-is/-/react-is-16.13.1.tgz", - "integrity": "sha512-24e6ynE2H+OKt4kqsOvNd8kBpV65zoxbA4BVsEOB3ARVWQki/DHzaUoC5KuON/BiccDaCCTZBuOcfZs70kR8bQ==" - } + "array.prototype.find": "^2.1.1", + "function.prototype.name": "^1.1.2", + "is-regex": "^1.1.0", + "object-is": "^1.1.2", + "object.assign": "^4.1.0", + "object.entries": "^1.1.2", + "prop-types": "^15.7.2", + "prop-types-exact": "^1.2.0", + "react-is": "^16.13.1" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + }, + "peerDependencies": { + "react": "^0.14 || ^15.0.0 || ^16.0.0-alpha" } }, - "react-popper": { + "node_modules/react-outside-click-handler/node_modules/react-is": { + "version": "16.13.1", + "license": "MIT" + }, + "node_modules/react-popper": { "version": "2.3.0", - "resolved": "https://registry.npmjs.org/react-popper/-/react-popper-2.3.0.tgz", - "integrity": "sha512-e1hj8lL3uM+sgSR4Lxzn5h1GxBlpa4CQz0XLF8kx4MDrDRWY0Ena4c97PUeSX9i5W3UAfDP0z0FXCTQkoXUl3Q==", - "requires": { + "license": "MIT", + "dependencies": { "react-fast-compare": "^3.0.1", "warning": "^4.0.2" + }, + "peerDependencies": { + "@popperjs/core": "^2.0.0", + "react": "^16.8.0 || ^17 || ^18", + "react-dom": "^16.8.0 || ^17 || ^18" } }, - "react-redux": { - "version": "8.0.5", - "resolved": "https://registry.npmjs.org/react-redux/-/react-redux-8.0.5.tgz", - "integrity": "sha512-Q2f6fCKxPFpkXt1qNRZdEDLlScsDWyrgSj0mliK59qU6W5gvBiKkdMEG2lJzhd1rCctf0hb6EtePPLZ2e0m1uw==", - "requires": { + "node_modules/react-redux": { + "version": "8.1.2", + "license": "MIT", + "dependencies": { "@babel/runtime": "^7.12.1", "@types/hoist-non-react-statics": "^3.3.1", "@types/use-sync-external-store": "^0.0.3", @@ -40574,41 +17586,71 @@ "react-is": "^18.0.0", "use-sync-external-store": "^1.0.0" }, - "dependencies": { - "react-is": { - "version": "18.2.0", - "resolved": "https://registry.npmjs.org/react-is/-/react-is-18.2.0.tgz", - "integrity": "sha512-xWGDIW6x921xtzPkhiULtthJHoJvBbF3q26fzloPCK0hsvxtPVelvftw3zjbHWSkR2km9Z+4uxbDDK/6Zw9B8w==" + "peerDependencies": { + "@types/react": "^16.8 || ^17.0 || ^18.0", + "@types/react-dom": "^16.8 || ^17.0 || ^18.0", + "react": "^16.8 || ^17.0 || ^18.0", + "react-dom": "^16.8 || ^17.0 || ^18.0", + "react-native": ">=0.59", + "redux": "^4 || ^5.0.0-beta.0" + }, + "peerDependenciesMeta": { + "@types/react": { + "optional": true + }, + "@types/react-dom": { + "optional": true + }, + "react-dom": { + "optional": true + }, + "react-native": { + "optional": true + }, + "redux": { + "optional": true } } }, - "react-refresh": { + "node_modules/react-refresh": { "version": "0.11.0", - "resolved": "https://registry.npmjs.org/react-refresh/-/react-refresh-0.11.0.tgz", - "integrity": "sha512-F27qZr8uUqwhWZboondsPx8tnC3Ct3SxZA3V5WyEvujRyyNv0VYPhoBg1gZ8/MV5tubQp76Trw8lTv9hzRBa+A==" + "license": "MIT", + "engines": { + "node": ">=0.10.0" + } }, - "react-router": { - "version": "6.10.0", - "resolved": "https://registry.npmjs.org/react-router/-/react-router-6.10.0.tgz", - "integrity": "sha512-Nrg0BWpQqrC3ZFFkyewrflCud9dio9ME3ojHCF/WLsprJVzkq3q3UeEhMCAW1dobjeGbWgjNn/PVF6m46ANxXQ==", - "requires": { - "@remix-run/router": "1.5.0" + "node_modules/react-router": { + "version": "6.15.0", + "license": "MIT", + "dependencies": { + "@remix-run/router": "1.8.0" + }, + "engines": { + "node": ">=14.0.0" + }, + "peerDependencies": { + "react": ">=16.8" } }, - "react-router-dom": { - "version": "6.10.0", - "resolved": "https://registry.npmjs.org/react-router-dom/-/react-router-dom-6.10.0.tgz", - "integrity": "sha512-E5dfxRPuXKJqzwSe/qGcqdwa18QiWC6f3H3cWXM24qj4N0/beCIf/CWTipop2xm7mR0RCS99NnaqPNjHtrAzCg==", - "requires": { - "@remix-run/router": "1.5.0", - "react-router": "6.10.0" + "node_modules/react-router-dom": { + "version": "6.15.0", + "license": "MIT", + "dependencies": { + "@remix-run/router": "1.8.0", + "react-router": "6.15.0" + }, + "engines": { + "node": ">=14.0.0" + }, + "peerDependencies": { + "react": ">=16.8", + "react-dom": ">=16.8" } }, - "react-scripts": { + "node_modules/react-scripts": { "version": "5.0.1", - "resolved": "https://registry.npmjs.org/react-scripts/-/react-scripts-5.0.1.tgz", - "integrity": "sha512-8VAmEm/ZAwQzJ+GOMLbBsTdDKOpuZh7RPs0UymvBR2vRk4iZWCskjbFnxqjrzoIvlNNRZ3QJFx6/qDSi6zSnaQ==", - "requires": { + "license": "MIT", + "dependencies": { "@babel/core": "^7.16.0", "@pmmmwh/react-refresh-webpack-plugin": "^0.5.3", "@svgr/webpack": "^5.5.0", @@ -40629,7 +17671,6 @@ "eslint-webpack-plugin": "^3.1.1", "file-loader": "^6.2.0", "fs-extra": "^10.0.0", - "fsevents": "^2.3.2", "html-webpack-plugin": "^5.5.0", "identity-obj-proxy": "^3.0.0", "jest": "^27.4.3", @@ -40658,255 +17699,309 @@ "webpack-manifest-plugin": "^4.0.2", "workbox-webpack-plugin": "^6.4.1" }, - "dependencies": { - "dotenv": { - "version": "10.0.0", - "resolved": "https://registry.npmjs.org/dotenv/-/dotenv-10.0.0.tgz", - "integrity": "sha512-rlBi9d8jpv9Sf1klPjNfFAuWDjKLwTIJJ/VxtoTwIR6hnZxcEOQCZg2oIL3MWBYw5GpUDKOEnND7LXTbIpQ03Q==" + "bin": { + "react-scripts": "bin/react-scripts.js" + }, + "engines": { + "node": ">=14.0.0" + }, + "optionalDependencies": { + "fsevents": "^2.3.2" + }, + "peerDependencies": { + "react": ">= 16", + "typescript": "^3.2.1 || ^4" + }, + "peerDependenciesMeta": { + "typescript": { + "optional": true } } }, - "react-transition-group": { - "version": "4.4.2", - "resolved": "https://registry.npmjs.org/react-transition-group/-/react-transition-group-4.4.2.tgz", - "integrity": "sha512-/RNYfRAMlZwDSr6z4zNKV6xu53/e2BuaBbGhbyYIXTrmgu/bGHzmqOs7mJSJBHy9Ud+ApHx3QjrkKSp1pxvlFg==", - "requires": { + "node_modules/react-transition-group": { + "version": "4.4.5", + "license": "BSD-3-Clause", + "dependencies": { "@babel/runtime": "^7.5.5", "dom-helpers": "^5.0.1", "loose-envify": "^1.4.0", "prop-types": "^15.6.2" + }, + "peerDependencies": { + "react": ">=16.6.0", + "react-dom": ">=16.6.0" } }, - "react-virtualized-auto-sizer": { - "version": "1.0.15", - "resolved": "https://registry.npmjs.org/react-virtualized-auto-sizer/-/react-virtualized-auto-sizer-1.0.15.tgz", - "integrity": "sha512-01yhkssgHShMiu5W8k+86kgl8lutpl+Uef9KP4wrozXnzZjxWIgj+cH8Qi064oQpKD8myn/JNMzp4tcZNQ3Avg==", - "requires": {} + "node_modules/react-virtualized-auto-sizer": { + "version": "1.0.20", + "license": "MIT", + "peerDependencies": { + "react": "^15.3.0 || ^16.0.0-alpha || ^17.0.0 || ^18.0.0-rc", + "react-dom": "^15.3.0 || ^16.0.0-alpha || ^17.0.0 || ^18.0.0-rc" + } }, - "react-window": { + "node_modules/react-window": { "version": "1.8.9", - "resolved": "https://registry.npmjs.org/react-window/-/react-window-1.8.9.tgz", - "integrity": "sha512-+Eqx/fj1Aa5WnhRfj9dJg4VYATGwIUP2ItwItiJ6zboKWA6EX3lYDAXfGF2hyNqplEprhbtjbipiADEcwQ823Q==", - "requires": { + "license": "MIT", + "dependencies": { "@babel/runtime": "^7.0.0", "memoize-one": ">=3.1.1 <6" + }, + "engines": { + "node": ">8.0.0" + }, + "peerDependencies": { + "react": "^15.0.0 || ^16.0.0 || ^17.0.0 || ^18.0.0", + "react-dom": "^15.0.0 || ^16.0.0 || ^17.0.0 || ^18.0.0" } }, - "read-cache": { + "node_modules/read-cache": { "version": "1.0.0", - "resolved": "https://registry.npmjs.org/read-cache/-/read-cache-1.0.0.tgz", - "integrity": "sha512-Owdv/Ft7IjOgm/i0xvNDZ1LrRANRfew4b2prF3OWMQLxLfu3bS8FVhCsrSCMK4lR56Y9ya+AThoTpDCTxCmpRA==", - "requires": { + "license": "MIT", + "dependencies": { "pify": "^2.3.0" } }, - "readable-stream": { - "version": "3.6.0", - "resolved": "https://registry.npmjs.org/readable-stream/-/readable-stream-3.6.0.tgz", - "integrity": "sha512-BViHy7LKeTz4oNnkcLJ+lVSL6vpiFeX6/d3oSH8zCW7UxP2onchk+vTGB143xuFjHS3deTgkKoXXymXqymiIdA==", - "requires": { + "node_modules/readable-stream": { + "version": "3.6.2", + "license": "MIT", + "dependencies": { "inherits": "^2.0.3", "string_decoder": "^1.1.1", "util-deprecate": "^1.0.1" + }, + "engines": { + "node": ">= 6" } }, - "readable-web-to-node-stream": { + "node_modules/readable-web-to-node-stream": { "version": "3.0.2", - "resolved": "https://registry.npmjs.org/readable-web-to-node-stream/-/readable-web-to-node-stream-3.0.2.tgz", - "integrity": "sha512-ePeK6cc1EcKLEhJFt/AebMCLL+GgSKhuygrZ/GLaKZYEecIgIECf4UaUuaByiGtzckwR4ain9VzUh95T1exYGw==", - "requires": { + "license": "MIT", + "dependencies": { "readable-stream": "^3.6.0" + }, + "engines": { + "node": ">=8" + }, + "funding": { + "type": "github", + "url": "https://github.com/sponsors/Borewit" } }, - "readdirp": { + "node_modules/readdirp": { "version": "3.6.0", - "resolved": "https://registry.npmjs.org/readdirp/-/readdirp-3.6.0.tgz", - "integrity": "sha512-hOS089on8RduqdbhvQ5Z37A0ESjsqz6qnRcffsMU3495FuTdqSm+7bhJ29JvIOsBDEEnan5DPu9t3To9VRlMzA==", - "requires": { + "license": "MIT", + "dependencies": { "picomatch": "^2.2.1" + }, + "engines": { + "node": ">=8.10.0" } }, - "rebass": { + "node_modules/rebass": { "version": "4.0.7", - "resolved": "https://registry.npmjs.org/rebass/-/rebass-4.0.7.tgz", - "integrity": "sha512-GJot6j6Qcr7jk1QIgf9qBoud75CGRpN8pGcEo98TSp4KNSWV01ZLvGwFKGI35oEBuNs+lpEd3+pnwkQUTSFytg==", - "requires": { + "license": "MIT", + "dependencies": { "reflexbox": "^4.0.6" + } + }, + "node_modules/rebass/node_modules/@emotion/styled": { + "version": "10.3.0", + "license": "MIT", + "dependencies": { + "@emotion/styled-base": "^10.3.0", + "babel-plugin-emotion": "^10.0.27" }, + "peerDependencies": { + "@emotion/core": "^10.0.27", + "react": ">=16.3.0" + } + }, + "node_modules/rebass/node_modules/react": { + "version": "16.14.0", + "license": "MIT", + "peer": true, "dependencies": { - "@emotion/styled": { - "version": "10.3.0", - "resolved": "https://registry.npmjs.org/@emotion/styled/-/styled-10.3.0.tgz", - "integrity": "sha512-GgcUpXBBEU5ido+/p/mCT2/Xx+Oqmp9JzQRuC+a4lYM4i4LBBn/dWvc0rQ19N9ObA8/T4NWMrPNe79kMBDJqoQ==", - "requires": { - "@emotion/styled-base": "^10.3.0", - "babel-plugin-emotion": "^10.0.27" - } - }, - "react": { - "version": "16.14.0", - "resolved": "https://registry.npmjs.org/react/-/react-16.14.0.tgz", - "integrity": "sha512-0X2CImDkJGApiAlcf0ODKIneSwBPhqJawOa5wCtKbu7ZECrmS26NvtSILynQ66cgkT/RJ4LidJOc3bUESwmU8g==", - "peer": true, - "requires": { - "loose-envify": "^1.1.0", - "object-assign": "^4.1.1", - "prop-types": "^15.6.2" - } - }, - "reflexbox": { - "version": "4.0.6", - "resolved": "https://registry.npmjs.org/reflexbox/-/reflexbox-4.0.6.tgz", - "integrity": "sha512-UNUL4YoJEXAPjRKHuty1tuOk+LV1nDJ2KYViDcH7lYm5yU3AQ+EKNXxPU3E14bQNK/pE09b1hYl+ZKdA94tWLQ==", - "requires": { - "@emotion/core": "^10.0.0", - "@emotion/styled": "^10.0.0", - "@styled-system/css": "^5.0.0", - "@styled-system/should-forward-prop": "^5.0.0", - "styled-system": "^5.0.0" - } - } + "loose-envify": "^1.1.0", + "object-assign": "^4.1.1", + "prop-types": "^15.6.2" + }, + "engines": { + "node": ">=0.10.0" } }, - "recursive-readdir": { + "node_modules/rebass/node_modules/reflexbox": { + "version": "4.0.6", + "license": "MIT", + "dependencies": { + "@emotion/core": "^10.0.0", + "@emotion/styled": "^10.0.0", + "@styled-system/css": "^5.0.0", + "@styled-system/should-forward-prop": "^5.0.0", + "styled-system": "^5.0.0" + }, + "peerDependencies": { + "react": "^16.8.6" + } + }, + "node_modules/recursive-readdir": { "version": "2.2.3", - "resolved": "https://registry.npmjs.org/recursive-readdir/-/recursive-readdir-2.2.3.tgz", - "integrity": "sha512-8HrF5ZsXk5FAH9dgsx3BlUer73nIhuj+9OrQwEbLTPOBzGkL1lsFCR01am+v+0m2Cmbs1nP12hLDl5FA7EszKA==", - "requires": { + "license": "MIT", + "dependencies": { "minimatch": "^3.0.5" + }, + "engines": { + "node": ">=6.0.0" } }, - "redent": { + "node_modules/redent": { "version": "3.0.0", - "resolved": "https://registry.npmjs.org/redent/-/redent-3.0.0.tgz", - "integrity": "sha512-6tDA8g98We0zd0GvVeMT9arEOnTw9qM03L9cJXaCjrip1OO764RDBLBfrB4cwzNGDj5OA5ioymC9GkizgWJDUg==", - "requires": { + "license": "MIT", + "dependencies": { "indent-string": "^4.0.0", "strip-indent": "^3.0.0" + }, + "engines": { + "node": ">=8" } }, - "reduce-flatten": { + "node_modules/reduce-flatten": { "version": "2.0.0", - "resolved": "https://registry.npmjs.org/reduce-flatten/-/reduce-flatten-2.0.0.tgz", - "integrity": "sha512-EJ4UNY/U1t2P/2k6oqotuX2Cc3T6nxJwsM0N0asT7dhrtH1ltUxDn4NalSYmPE2rCkVpcf/X6R0wDwcFpzhd4w==", - "dev": true + "dev": true, + "license": "MIT", + "engines": { + "node": ">=6" + } }, - "redux": { + "node_modules/redux": { "version": "4.2.1", - "resolved": "https://registry.npmjs.org/redux/-/redux-4.2.1.tgz", - "integrity": "sha512-LAUYz4lc+Do8/g7aeRa8JkyDErK6ekstQaqWQrNRW//MY1TvCEpMtpTWvlQ+FPbWCx+Xixu/6SHt5N0HR+SB4w==", - "requires": { + "license": "MIT", + "dependencies": { "@babel/runtime": "^7.9.2" } }, - "redux-thunk": { + "node_modules/redux-thunk": { "version": "2.4.2", - "resolved": "https://registry.npmjs.org/redux-thunk/-/redux-thunk-2.4.2.tgz", - "integrity": "sha512-+P3TjtnP0k/FEjcBL5FZpoovtvrTNT/UXd4/sluaSyrURlSlhLSzEdfsTBW7WsKB6yPvgd7q/iZPICFjW4o57Q==", - "requires": {} + "license": "MIT", + "peerDependencies": { + "redux": "^4" + } + }, + "node_modules/reflect.getprototypeof": { + "version": "1.0.3", + "license": "MIT", + "dependencies": { + "call-bind": "^1.0.2", + "define-properties": "^1.1.4", + "es-abstract": "^1.20.4", + "get-intrinsic": "^1.1.1", + "globalthis": "^1.0.3", + "which-builtin-type": "^1.1.3" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } }, - "reflect.ownkeys": { + "node_modules/reflect.ownkeys": { "version": "0.2.0", - "resolved": "https://registry.npmjs.org/reflect.ownkeys/-/reflect.ownkeys-0.2.0.tgz", - "integrity": "sha512-qOLsBKHCpSOFKK1NUOCGC5VyeufB6lEsFe92AL2bhIJsacZS1qdoOZSbPk3MYKuT2cFlRDnulKXuuElIrMjGUg==" + "license": "MIT" }, - "regenerate": { + "node_modules/regenerate": { "version": "1.4.2", - "resolved": "https://registry.npmjs.org/regenerate/-/regenerate-1.4.2.tgz", - "integrity": "sha512-zrceR/XhGYU/d/opr2EKO7aRHUeiBI8qjtfHqADTwZd6Szfy16la6kqD0MIUs5z5hx6AaKa+PixpPrR289+I0A==" + "license": "MIT" }, - "regenerate-unicode-properties": { - "version": "10.0.1", - "resolved": "https://registry.npmjs.org/regenerate-unicode-properties/-/regenerate-unicode-properties-10.0.1.tgz", - "integrity": "sha512-vn5DU6yg6h8hP/2OkQo3K7uVILvY4iu0oI4t3HFa81UPkhGJwkRwM10JEc3upjdhHjs/k8GJY1sRBhk5sr69Bw==", - "requires": { + "node_modules/regenerate-unicode-properties": { + "version": "10.1.0", + "license": "MIT", + "dependencies": { "regenerate": "^1.4.2" + }, + "engines": { + "node": ">=4" } }, - "regenerator-runtime": { - "version": "0.13.9", - "resolved": "https://registry.npmjs.org/regenerator-runtime/-/regenerator-runtime-0.13.9.tgz", - "integrity": "sha512-p3VT+cOEgxFsRRA9X4lkI1E+k2/CtnKtU4gcxyaCUreilL/vqI6CdZ3wxVUx3UOUg+gnUOQQcRI7BmSI656MYA==" + "node_modules/regenerator-runtime": { + "version": "0.14.0", + "license": "MIT" }, - "regenerator-transform": { - "version": "0.15.0", - "resolved": "https://registry.npmjs.org/regenerator-transform/-/regenerator-transform-0.15.0.tgz", - "integrity": "sha512-LsrGtPmbYg19bcPHwdtmXwbW+TqNvtY4riE3P83foeHRroMbH6/2ddFBfab3t7kbzc7v7p4wbkIecHImqt0QNg==", - "requires": { + "node_modules/regenerator-transform": { + "version": "0.15.2", + "license": "MIT", + "dependencies": { "@babel/runtime": "^7.8.4" } }, - "regex-parser": { + "node_modules/regex-parser": { "version": "2.2.11", - "resolved": "https://registry.npmjs.org/regex-parser/-/regex-parser-2.2.11.tgz", - "integrity": "sha512-jbD/FT0+9MBU2XAZluI7w2OBs1RBi6p9M83nkoZayQXXU9e8Robt69FcZc7wU4eJD/YFTjn1JdCk3rbMJajz8Q==" + "license": "MIT" }, - "regexp.prototype.flags": { - "version": "1.4.3", - "resolved": "https://registry.npmjs.org/regexp.prototype.flags/-/regexp.prototype.flags-1.4.3.tgz", - "integrity": "sha512-fjggEOO3slI6Wvgjwflkc4NFRCTZAu5CnNfBd5qOMYhWdn67nJBBu34/TkD++eeFmd8C9r9jfXJ27+nSiRkSUA==", - "requires": { + "node_modules/regexp.prototype.flags": { + "version": "1.5.0", + "license": "MIT", + "dependencies": { "call-bind": "^1.0.2", - "define-properties": "^1.1.3", - "functions-have-names": "^1.2.2" + "define-properties": "^1.2.0", + "functions-have-names": "^1.2.3" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" } }, - "regexpp": { - "version": "3.2.0", - "resolved": "https://registry.npmjs.org/regexpp/-/regexpp-3.2.0.tgz", - "integrity": "sha512-pq2bWo9mVD43nbts2wGv17XLiNLya+GklZ8kaDLV2Z08gDCsGpnKn9BFMepvWuHCbyVvY7J5o5+BVvoQbmlJLg==" - }, - "regexpu-core": { - "version": "5.1.0", - "resolved": "https://registry.npmjs.org/regexpu-core/-/regexpu-core-5.1.0.tgz", - "integrity": "sha512-bb6hk+xWd2PEOkj5It46A16zFMs2mv86Iwpdu94la4S3sJ7C973h2dHpYKwIBGaWSO7cIRJ+UX0IeMaWcO4qwA==", - "requires": { + "node_modules/regexpu-core": { + "version": "5.3.2", + "license": "MIT", + "dependencies": { + "@babel/regjsgen": "^0.8.0", "regenerate": "^1.4.2", - "regenerate-unicode-properties": "^10.0.1", - "regjsgen": "^0.6.0", - "regjsparser": "^0.8.2", + "regenerate-unicode-properties": "^10.1.0", + "regjsparser": "^0.9.1", "unicode-match-property-ecmascript": "^2.0.0", - "unicode-match-property-value-ecmascript": "^2.0.0" + "unicode-match-property-value-ecmascript": "^2.1.0" + }, + "engines": { + "node": ">=4" } }, - "regjsgen": { - "version": "0.6.0", - "resolved": "https://registry.npmjs.org/regjsgen/-/regjsgen-0.6.0.tgz", - "integrity": "sha512-ozE883Uigtqj3bx7OhL1KNbCzGyW2NQZPl6Hs09WTvCuZD5sTI4JY58bkbQWa/Y9hxIsvJ3M8Nbf7j54IqeZbA==" - }, - "regjsparser": { - "version": "0.8.4", - "resolved": "https://registry.npmjs.org/regjsparser/-/regjsparser-0.8.4.tgz", - "integrity": "sha512-J3LABycON/VNEu3abOviqGHuB/LOtOQj8SKmfP9anY5GfAVw/SPjwzSjxGjbZXIxbGfqTHtJw58C2Li/WkStmA==", - "requires": { + "node_modules/regjsparser": { + "version": "0.9.1", + "license": "BSD-2-Clause", + "dependencies": { "jsesc": "~0.5.0" }, - "dependencies": { - "jsesc": { - "version": "0.5.0", - "resolved": "https://registry.npmjs.org/jsesc/-/jsesc-0.5.0.tgz", - "integrity": "sha512-uZz5UnB7u4T9LvwmFqXii7pZSouaRPorGs5who1Ip7VO0wxanFvBL7GkM6dTHlgX+jhBApRetaWpnDabOeTcnA==" - } + "bin": { + "regjsparser": "bin/parser" + } + }, + "node_modules/regjsparser/node_modules/jsesc": { + "version": "0.5.0", + "bin": { + "jsesc": "bin/jsesc" } }, - "relateurl": { + "node_modules/relateurl": { "version": "0.2.7", - "resolved": "https://registry.npmjs.org/relateurl/-/relateurl-0.2.7.tgz", - "integrity": "sha512-G08Dxvm4iDN3MLM0EsP62EDV9IuhXPR6blNz6Utcp7zyV3tr4HVNINt6MpaRWbxoOHT3Q7YN2P+jaHX8vUbgog==" + "license": "MIT", + "engines": { + "node": ">= 0.10" + } }, - "relative-luminance": { + "node_modules/relative-luminance": { "version": "2.0.1", - "resolved": "https://registry.npmjs.org/relative-luminance/-/relative-luminance-2.0.1.tgz", - "integrity": "sha512-wFuITNthJilFPwkK7gNJcULxXBcfFZvZORsvdvxeOdO44wCeZnuQkf3nFFzOR/dpJNxYsdRZJLsepWbyKhnMww==", - "requires": { + "license": "BSD-2-Clause", + "dependencies": { "esm": "^3.0.84" } }, - "renderkid": { + "node_modules/renderkid": { "version": "3.0.0", - "resolved": "https://registry.npmjs.org/renderkid/-/renderkid-3.0.0.tgz", - "integrity": "sha512-q/7VIQA8lmM1hF+jn+sFSPWGlMkSAeNYcPLmDQx2zzuiDfaLrOmumR8iaUKlenFgh0XRPIUeSPlH3A+AW3Z5pg==", - "requires": { + "license": "MIT", + "dependencies": { "css-select": "^4.1.3", "dom-converter": "^0.2.0", "htmlparser2": "^6.1.0", @@ -40914,11 +18009,10 @@ "strip-ansi": "^6.0.1" } }, - "request": { + "node_modules/request": { "version": "2.88.2", - "resolved": "https://registry.npmjs.org/request/-/request-2.88.2.tgz", - "integrity": "sha512-MsvtOrfG9ZcrOwAW+Qi+F6HbD0CWXEh9ou77uOb7FM2WPhwT7smM833PzanhJLsgXjN89Ir6V2PczXNnMpwKhw==", - "requires": { + "license": "Apache-2.0", + "dependencies": { "aws-sign2": "~0.7.0", "aws4": "^1.8.0", "caseless": "~0.12.0", @@ -40940,371 +18034,524 @@ "tunnel-agent": "^0.6.0", "uuid": "^3.3.2" }, + "engines": { + "node": ">= 6" + } + }, + "node_modules/request/node_modules/form-data": { + "version": "2.3.3", + "license": "MIT", "dependencies": { - "form-data": { - "version": "2.3.3", - "resolved": "https://registry.npmjs.org/form-data/-/form-data-2.3.3.tgz", - "integrity": "sha512-1lLKB2Mu3aGP1Q/2eCOx0fNbRMe7XdwktwOruhfqqd0rIJWwN4Dh+E3hrPSlDCXnSR7UtZ1N38rVXm+6+MEhJQ==", - "requires": { - "asynckit": "^0.4.0", - "combined-stream": "^1.0.6", - "mime-types": "^2.1.12" - } - }, - "qs": { - "version": "6.5.3", - "resolved": "https://registry.npmjs.org/qs/-/qs-6.5.3.tgz", - "integrity": "sha512-qxXIEh4pCGfHICj1mAJQ2/2XVZkjCDTcEgfoSQxc/fYivUZxTkk7L3bDBJSoNrEzXI17oUO5Dp07ktqE5KzczA==" - }, - "tough-cookie": { - "version": "2.5.0", - "resolved": "https://registry.npmjs.org/tough-cookie/-/tough-cookie-2.5.0.tgz", - "integrity": "sha512-nlLsUzgm1kfLXSXfRZMc1KLAugd4hqJHDTvc2hDIwS3mZAfMEuMbc03SujMF+GEcpaX/qboeycw6iO8JwVv2+g==", - "requires": { - "psl": "^1.1.28", - "punycode": "^2.1.1" - } - }, - "uuid": { - "version": "3.4.0", - "resolved": "https://registry.npmjs.org/uuid/-/uuid-3.4.0.tgz", - "integrity": "sha512-HjSDRw6gZE5JMggctHBcjVak08+KEVhSIiDzFnT9S9aegmp85S/bReBVTb4QTFaRNptJ9kuYaNhnbNEOkbKb/A==" - } + "asynckit": "^0.4.0", + "combined-stream": "^1.0.6", + "mime-types": "^2.1.12" + }, + "engines": { + "node": ">= 0.12" + } + }, + "node_modules/request/node_modules/qs": { + "version": "6.5.3", + "license": "BSD-3-Clause", + "engines": { + "node": ">=0.6" + } + }, + "node_modules/request/node_modules/tough-cookie": { + "version": "2.5.0", + "license": "BSD-3-Clause", + "dependencies": { + "psl": "^1.1.28", + "punycode": "^2.1.1" + }, + "engines": { + "node": ">=0.8" + } + }, + "node_modules/request/node_modules/uuid": { + "version": "3.4.0", + "license": "MIT", + "bin": { + "uuid": "bin/uuid" } }, - "require-directory": { + "node_modules/require-directory": { "version": "2.1.1", - "resolved": "https://registry.npmjs.org/require-directory/-/require-directory-2.1.1.tgz", - "integrity": "sha512-fGxEI7+wsG9xrvdjsrlmL22OMTTiHRwAMroiEeMgq8gzoLC/PQr7RsRDSTLUg/bZAZtF+TVIkHc6/4RIKrui+Q==" + "license": "MIT", + "engines": { + "node": ">=0.10.0" + } }, - "require-from-string": { + "node_modules/require-from-string": { "version": "2.0.2", - "resolved": "https://registry.npmjs.org/require-from-string/-/require-from-string-2.0.2.tgz", - "integrity": "sha512-Xf0nWe6RseziFMu+Ap9biiUbmplq6S9/p+7w7YXP/JBHhrUDDUhwa+vANyubuqfZWTveU//DYVGsDG7RKL/vEw==" + "license": "MIT", + "engines": { + "node": ">=0.10.0" + } }, - "require-main-filename": { + "node_modules/require-main-filename": { "version": "2.0.0", - "resolved": "https://registry.npmjs.org/require-main-filename/-/require-main-filename-2.0.0.tgz", - "integrity": "sha512-NKN5kMDylKuldxYLSUfrbo5Tuzh4hd+2E8NPPX02mZtn1VuREQToYe/ZdlJy+J3uCpfaiGF05e7B8W0iXbQHmg==" + "license": "ISC" }, - "requires-port": { + "node_modules/requires-port": { "version": "1.0.0", - "resolved": "https://registry.npmjs.org/requires-port/-/requires-port-1.0.0.tgz", - "integrity": "sha512-KigOCHcocU3XODJxsu8i/j8T9tzT4adHiecwORRQ0ZZFcp7ahwXuRU1m+yuO90C5ZUyGeGfocHDI14M3L3yDAQ==" + "license": "MIT" }, - "reselect": { + "node_modules/reselect": { "version": "4.1.8", - "resolved": "https://registry.npmjs.org/reselect/-/reselect-4.1.8.tgz", - "integrity": "sha512-ab9EmR80F/zQTMNeneUr4cv+jSwPJgIlvEmVwLerwrWVbpLlBuls9XHzIeTFy4cegU2NHBp3va0LKOzU5qFEYQ==" + "license": "MIT" }, - "resize-observer-polyfill": { + "node_modules/resize-observer-polyfill": { "version": "1.5.1", - "resolved": "https://registry.npmjs.org/resize-observer-polyfill/-/resize-observer-polyfill-1.5.1.tgz", - "integrity": "sha512-LwZrotdHOo12nQuZlHEmtuXdqGoOD0OhaxopaNFxWzInpEgaLWoVuAMbTzixuosCx2nEG58ngzW3vxdWoxIgdg==" + "license": "MIT" }, - "resolve": { - "version": "1.22.1", - "resolved": "https://registry.npmjs.org/resolve/-/resolve-1.22.1.tgz", - "integrity": "sha512-nBpuuYuY5jFsli/JIs1oldw6fOQCBioohqWZg/2hiaOybXOft4lonv85uDOKXdf8rhyK159cxU5cDcK/NKk8zw==", - "requires": { - "is-core-module": "^2.9.0", + "node_modules/resolve": { + "version": "1.22.4", + "license": "MIT", + "dependencies": { + "is-core-module": "^2.13.0", "path-parse": "^1.0.7", "supports-preserve-symlinks-flag": "^1.0.0" + }, + "bin": { + "resolve": "bin/resolve" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" } }, - "resolve-alpn": { + "node_modules/resolve-alpn": { "version": "1.2.1", - "resolved": "https://registry.npmjs.org/resolve-alpn/-/resolve-alpn-1.2.1.tgz", - "integrity": "sha512-0a1F4l73/ZFZOakJnQ3FvkJ2+gSTQWz/r2KE5OdDY0TxPm5h4GkqkWWfM47T7HsbnOtcJVEF4epCVy6u7Q3K+g==" + "license": "MIT" }, - "resolve-cwd": { + "node_modules/resolve-cwd": { "version": "3.0.0", - "resolved": "https://registry.npmjs.org/resolve-cwd/-/resolve-cwd-3.0.0.tgz", - "integrity": "sha512-OrZaX2Mb+rJCpH/6CpSqt9xFVpN++x01XnN2ie9g6P5/3xelLAkXWVADpdz1IHD/KFfEXyE6V0U01OQ3UO2rEg==", - "requires": { + "license": "MIT", + "dependencies": { "resolve-from": "^5.0.0" + }, + "engines": { + "node": ">=8" } }, - "resolve-from": { + "node_modules/resolve-cwd/node_modules/resolve-from": { "version": "5.0.0", - "resolved": "https://registry.npmjs.org/resolve-from/-/resolve-from-5.0.0.tgz", - "integrity": "sha512-qYg9KP24dD5qka9J47d0aVky0N+b4fTU89LN9iDnjB5waksiC49rvMB0PrUJQGoTmH50XPiqOvAjDfaijGxYZw==" + "license": "MIT", + "engines": { + "node": ">=8" + } }, - "resolve-url-loader": { + "node_modules/resolve-from": { + "version": "4.0.0", + "license": "MIT", + "engines": { + "node": ">=4" + } + }, + "node_modules/resolve-url-loader": { "version": "4.0.0", - "resolved": "https://registry.npmjs.org/resolve-url-loader/-/resolve-url-loader-4.0.0.tgz", - "integrity": "sha512-05VEMczVREcbtT7Bz+C+96eUO5HDNvdthIiMB34t7FcF8ehcu4wC0sSgPUubs3XW2Q3CNLJk/BJrCU9wVRymiA==", - "requires": { + "license": "MIT", + "dependencies": { "adjust-sourcemap-loader": "^4.0.0", "convert-source-map": "^1.7.0", "loader-utils": "^2.0.0", "postcss": "^7.0.35", "source-map": "0.6.1" }, - "dependencies": { - "picocolors": { - "version": "0.2.1", - "resolved": "https://registry.npmjs.org/picocolors/-/picocolors-0.2.1.tgz", - "integrity": "sha512-cMlDqaLEqfSaW8Z7N5Jw+lyIW869EzT73/F5lhtY9cLGoVxSXznfgfXMO0Z5K0o0Q2TkTXq+0KFsdnSe3jDViA==" - }, - "postcss": { - "version": "7.0.39", - "resolved": "https://registry.npmjs.org/postcss/-/postcss-7.0.39.tgz", - "integrity": "sha512-yioayjNbHn6z1/Bywyb2Y4s3yvDAeXGOyxqD+LnVOinq6Mdmd++SW2wUNVzavyyHxd6+DxzWGIuosg6P1Rj8uA==", - "requires": { - "picocolors": "^0.2.1", - "source-map": "^0.6.1" - } + "engines": { + "node": ">=8.9" + }, + "peerDependencies": { + "rework": "1.0.1", + "rework-visit": "1.0.0" + }, + "peerDependenciesMeta": { + "rework": { + "optional": true }, - "source-map": { - "version": "0.6.1", - "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz", - "integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==" + "rework-visit": { + "optional": true } } }, - "resolve.exports": { - "version": "1.1.0", - "resolved": "https://registry.npmjs.org/resolve.exports/-/resolve.exports-1.1.0.tgz", - "integrity": "sha512-J1l+Zxxp4XK3LUDZ9m60LRJF/mAe4z6a4xyabPHk7pvK5t35dACV32iIjJDFeWZFfZlO29w6SZ67knR0tHzJtQ==" + "node_modules/resolve-url-loader/node_modules/picocolors": { + "version": "0.2.1", + "license": "ISC" + }, + "node_modules/resolve-url-loader/node_modules/postcss": { + "version": "7.0.39", + "license": "MIT", + "dependencies": { + "picocolors": "^0.2.1", + "source-map": "^0.6.1" + }, + "engines": { + "node": ">=6.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/postcss/" + } + }, + "node_modules/resolve-url-loader/node_modules/source-map": { + "version": "0.6.1", + "license": "BSD-3-Clause", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/resolve.exports": { + "version": "1.1.1", + "license": "MIT", + "engines": { + "node": ">=10" + } }, - "responselike": { + "node_modules/responselike": { "version": "2.0.1", - "resolved": "https://registry.npmjs.org/responselike/-/responselike-2.0.1.tgz", - "integrity": "sha512-4gl03wn3hj1HP3yzgdI7d3lCkF95F21Pz4BPGvKHinyQzALR5CapwC8yIi0Rh58DEMQ/SguC03wFj2k0M/mHhw==", - "requires": { + "license": "MIT", + "dependencies": { "lowercase-keys": "^2.0.0" }, - "dependencies": { - "lowercase-keys": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/lowercase-keys/-/lowercase-keys-2.0.0.tgz", - "integrity": "sha512-tqNXrS78oMOE73NMxK4EMLQsQowWf8jKooH9g7xPavRT706R6bkQJ6DY2Te7QukaZsulxa30wQ7bk0pm4XiHmA==" - } + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/responselike/node_modules/lowercase-keys": { + "version": "2.0.0", + "license": "MIT", + "engines": { + "node": ">=8" } }, - "retry": { + "node_modules/retry": { "version": "0.13.1", - "resolved": "https://registry.npmjs.org/retry/-/retry-0.13.1.tgz", - "integrity": "sha512-XQBQ3I8W1Cge0Seh+6gjj03LbmRFWuoszgK9ooCpwYIrhhoO80pfq4cUkU5DkknwfOfFteRwlZ56PYOGYyFWdg==" + "license": "MIT", + "engines": { + "node": ">= 4" + } }, - "reusify": { + "node_modules/reusify": { "version": "1.0.4", - "resolved": "https://registry.npmjs.org/reusify/-/reusify-1.0.4.tgz", - "integrity": "sha512-U9nH88a3fc/ekCF1l0/UP1IosiuIjyTh7hBvXVMHYgVcfGvt897Xguj2UOLDeI5BG2m7/uwyaLVT6fbtCwTyzw==" + "license": "MIT", + "engines": { + "iojs": ">=1.0.0", + "node": ">=0.10.0" + } }, - "rimraf": { + "node_modules/rimraf": { "version": "3.0.2", - "resolved": "https://registry.npmjs.org/rimraf/-/rimraf-3.0.2.tgz", - "integrity": "sha512-JZkJMZkAGFFPP2YqXZXPbMlMBgsxzE8ILs4lMIX/2o0L9UBw9O/Y3o6wFw/i9YLapcUJWwqbi3kdxIPdC62TIA==", - "requires": { + "license": "ISC", + "dependencies": { "glob": "^7.1.3" + }, + "bin": { + "rimraf": "bin.js" + }, + "funding": { + "url": "https://github.com/sponsors/isaacs" } }, - "ripemd160": { + "node_modules/ripemd160": { "version": "2.0.2", - "resolved": "https://registry.npmjs.org/ripemd160/-/ripemd160-2.0.2.tgz", - "integrity": "sha512-ii4iagi25WusVoiC4B4lq7pbXfAp3D9v5CwfkY33vffw2+pkDjY1D8GaN7spsxvCSx8dkPqOZCEZyfxcmJG2IA==", - "requires": { + "license": "MIT", + "dependencies": { "hash-base": "^3.0.0", "inherits": "^2.0.1" } }, - "rlp": { + "node_modules/rlp": { "version": "2.2.7", - "resolved": "https://registry.npmjs.org/rlp/-/rlp-2.2.7.tgz", - "integrity": "sha512-d5gdPmgQ0Z+AklL2NVXr/IoSjNZFfTVvQWzL/AM2AOcSzYP2xjlb0AC8YyCLc41MSNf6P6QVtjgPdmVtzb+4lQ==", - "requires": { + "license": "MPL-2.0", + "dependencies": { "bn.js": "^5.2.0" + }, + "bin": { + "rlp": "bin/rlp" } }, - "rollup": { - "version": "2.75.7", - "resolved": "https://registry.npmjs.org/rollup/-/rollup-2.75.7.tgz", - "integrity": "sha512-VSE1iy0eaAYNCxEXaleThdFXqZJ42qDBatAwrfnPlENEZ8erQ+0LYX4JXOLPceWfZpV1VtZwZ3dFCuOZiSyFtQ==", - "requires": { + "node_modules/rollup": { + "version": "2.79.1", + "license": "MIT", + "bin": { + "rollup": "dist/bin/rollup" + }, + "engines": { + "node": ">=10.0.0" + }, + "optionalDependencies": { "fsevents": "~2.3.2" } }, - "rollup-plugin-terser": { + "node_modules/rollup-plugin-terser": { "version": "7.0.2", - "resolved": "https://registry.npmjs.org/rollup-plugin-terser/-/rollup-plugin-terser-7.0.2.tgz", - "integrity": "sha512-w3iIaU4OxcF52UUXiZNsNeuXIMDvFrr+ZXK6bFZ0Q60qyVfq4uLptoS4bbq3paG3x216eQllFZX7zt6TIImguQ==", - "requires": { + "license": "MIT", + "dependencies": { "@babel/code-frame": "^7.10.4", "jest-worker": "^26.2.1", "serialize-javascript": "^4.0.0", "terser": "^5.0.0" }, + "peerDependencies": { + "rollup": "^2.0.0" + } + }, + "node_modules/rollup-plugin-terser/node_modules/jest-worker": { + "version": "26.6.2", + "license": "MIT", "dependencies": { - "has-flag": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz", - "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==" - }, - "jest-worker": { - "version": "26.6.2", - "resolved": "https://registry.npmjs.org/jest-worker/-/jest-worker-26.6.2.tgz", - "integrity": "sha512-KWYVV1c4i+jbMpaBC+U++4Va0cp8OisU185o73T1vo99hqi7w8tSJfUXYswwqqrjzwxa6KpRK54WhPvwf5w6PQ==", - "requires": { - "@types/node": "*", - "merge-stream": "^2.0.0", - "supports-color": "^7.0.0" - } - }, - "serialize-javascript": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/serialize-javascript/-/serialize-javascript-4.0.0.tgz", - "integrity": "sha512-GaNA54380uFefWghODBWEGisLZFj00nS5ACs6yHa9nLqlLpVLO8ChDGeKRjZnV4Nh4n0Qi7nhYZD/9fCPzEqkw==", - "requires": { - "randombytes": "^2.1.0" - } - }, - "supports-color": { - "version": "7.2.0", - "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", - "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", - "requires": { - "has-flag": "^4.0.0" - } - } + "@types/node": "*", + "merge-stream": "^2.0.0", + "supports-color": "^7.0.0" + }, + "engines": { + "node": ">= 10.13.0" + } + }, + "node_modules/rollup-plugin-terser/node_modules/serialize-javascript": { + "version": "4.0.0", + "license": "BSD-3-Clause", + "dependencies": { + "randombytes": "^2.1.0" } }, - "run-parallel": { + "node_modules/run-parallel": { "version": "1.2.0", - "resolved": "https://registry.npmjs.org/run-parallel/-/run-parallel-1.2.0.tgz", - "integrity": "sha512-5l4VyZR86LZ/lDxZTR6jqL8AFE2S0IFLMP26AbjsLVADxHdhB/c0GUsH+y39UfCi3dzz8OlQuPmnaJOMoDHQBA==", - "requires": { + "funding": [ + { + "type": "github", + "url": "https://github.com/sponsors/feross" + }, + { + "type": "patreon", + "url": "https://www.patreon.com/feross" + }, + { + "type": "consulting", + "url": "https://feross.org/support" + } + ], + "license": "MIT", + "dependencies": { "queue-microtask": "^1.2.2" } }, - "run-parallel-limit": { + "node_modules/run-parallel-limit": { "version": "1.1.0", - "resolved": "https://registry.npmjs.org/run-parallel-limit/-/run-parallel-limit-1.1.0.tgz", - "integrity": "sha512-jJA7irRNM91jaKc3Hcl1npHsFLOXOoTkPCUL1JEa1R82O2miplXXRaGdjW/KM/98YQWDhJLiSs793CnXfblJUw==", + "funding": [ + { + "type": "github", + "url": "https://github.com/sponsors/feross" + }, + { + "type": "patreon", + "url": "https://www.patreon.com/feross" + }, + { + "type": "consulting", + "url": "https://feross.org/support" + } + ], + "license": "MIT", "peer": true, - "requires": { + "dependencies": { "queue-microtask": "^1.2.2" } }, - "rustbn.js": { + "node_modules/rustbn.js": { "version": "0.2.0", - "resolved": "https://registry.npmjs.org/rustbn.js/-/rustbn.js-0.2.0.tgz", - "integrity": "sha512-4VlvkRUuCJvr2J6Y0ImW7NvTCriMi7ErOAqWk1y69vAdoNIzCF3yPmgeNzx+RQTLEDFq5sHfscn1MwHxP9hNfA==", + "license": "(MIT OR Apache-2.0)", "peer": true }, - "safe-buffer": { - "version": "5.1.2", - "resolved": "https://registry.npmjs.org/safe-buffer/-/safe-buffer-5.1.2.tgz", - "integrity": "sha512-Gd2UZBJDkXlY7GbJxfsE8/nvKkUEU1G38c1siN6QP6a9PT9MmHB8GnpscSmMJSoF8LOIrt8ud/wPtojys4G6+g==" + "node_modules/safe-array-concat": { + "version": "1.0.0", + "license": "MIT", + "dependencies": { + "call-bind": "^1.0.2", + "get-intrinsic": "^1.2.0", + "has-symbols": "^1.0.3", + "isarray": "^2.0.5" + }, + "engines": { + "node": ">=0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } }, - "safe-json-stringify": { - "version": "1.2.0", - "resolved": "https://registry.npmjs.org/safe-json-stringify/-/safe-json-stringify-1.2.0.tgz", - "integrity": "sha512-gH8eh2nZudPQO6TytOvbxnuhYBOvDBBLW52tz5q6X58lJcd/tkmqFR+5Z9adS8aJtURSXWThWy/xJtJwixErvg==", - "optional": true + "node_modules/safe-buffer": { + "version": "5.2.1", + "funding": [ + { + "type": "github", + "url": "https://github.com/sponsors/feross" + }, + { + "type": "patreon", + "url": "https://www.patreon.com/feross" + }, + { + "type": "consulting", + "url": "https://feross.org/support" + } + ], + "license": "MIT" }, - "safe-regex-test": { + "node_modules/safe-regex-test": { "version": "1.0.0", - "resolved": "https://registry.npmjs.org/safe-regex-test/-/safe-regex-test-1.0.0.tgz", - "integrity": "sha512-JBUUzyOgEwXQY1NuPtvcj/qcBDbDmEvWufhlnXZIm75DEHp+afM1r1ujJpJsV/gSM4t59tpDyPi1sd6ZaPFfsA==", - "requires": { + "license": "MIT", + "dependencies": { "call-bind": "^1.0.2", "get-intrinsic": "^1.1.3", "is-regex": "^1.1.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" } }, - "safer-buffer": { + "node_modules/safer-buffer": { "version": "2.1.2", - "resolved": "https://registry.npmjs.org/safer-buffer/-/safer-buffer-2.1.2.tgz", - "integrity": "sha512-YZo3K82SD7Riyi0E1EQPojLz7kpepnSQI9IyPbHHg1XXXevb5dJI7tpyN2ADxGcQbHG7vcyRHk0cbwqcQriUtg==" + "license": "MIT" }, - "sanitize.css": { + "node_modules/sanitize.css": { "version": "13.0.0", - "resolved": "https://registry.npmjs.org/sanitize.css/-/sanitize.css-13.0.0.tgz", - "integrity": "sha512-ZRwKbh/eQ6w9vmTjkuG0Ioi3HBwPFce0O+v//ve+aOq1oeCy7jMV2qzzAlpsNuqpqCBjjriM1lbtZbF/Q8jVyA==" + "license": "CC0-1.0" }, - "sass-loader": { + "node_modules/sass-loader": { "version": "12.6.0", - "resolved": "https://registry.npmjs.org/sass-loader/-/sass-loader-12.6.0.tgz", - "integrity": "sha512-oLTaH0YCtX4cfnJZxKSLAyglED0naiYfNG1iXfU5w1LNZ+ukoA5DtyDIN5zmKVZwYNJP4KRc5Y3hkWga+7tYfA==", - "requires": { + "license": "MIT", + "dependencies": { "klona": "^2.0.4", "neo-async": "^2.6.2" + }, + "engines": { + "node": ">= 12.13.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/webpack" + }, + "peerDependencies": { + "fibers": ">= 3.1.0", + "node-sass": "^4.0.0 || ^5.0.0 || ^6.0.0 || ^7.0.0", + "sass": "^1.3.0", + "sass-embedded": "*", + "webpack": "^5.0.0" + }, + "peerDependenciesMeta": { + "fibers": { + "optional": true + }, + "node-sass": { + "optional": true + }, + "sass": { + "optional": true + }, + "sass-embedded": { + "optional": true + } } }, - "sax": { + "node_modules/sax": { "version": "1.2.4", - "resolved": "https://registry.npmjs.org/sax/-/sax-1.2.4.tgz", - "integrity": "sha512-NqVDv9TpANUjFm0N8uM5GxL36UgKi9/atZw+x7YFnQ8ckwFGKrl4xX4yWtrey3UJm5nP1kUbnYgLopqWNSRhWw==" + "license": "ISC" }, - "saxes": { + "node_modules/saxes": { "version": "5.0.1", - "resolved": "https://registry.npmjs.org/saxes/-/saxes-5.0.1.tgz", - "integrity": "sha512-5LBh1Tls8c9xgGjw3QrMwETmTMVk0oFgvrFSvWx62llR2hcEInrKNZ2GZCCuuy2lvWrdl5jhbpeqc5hRYKFOcw==", - "requires": { + "license": "ISC", + "dependencies": { "xmlchars": "^2.2.0" + }, + "engines": { + "node": ">=10" } }, - "scheduler": { + "node_modules/scheduler": { "version": "0.23.0", - "resolved": "https://registry.npmjs.org/scheduler/-/scheduler-0.23.0.tgz", - "integrity": "sha512-CtuThmgHNg7zIZWAXi3AsyIzA3n4xx7aNyjwC2VJldO2LMVDhFK+63xGqq6CsJH4rTAt6/M+N4GhZiDYPx9eUw==", - "requires": { + "license": "MIT", + "dependencies": { "loose-envify": "^1.1.0" } }, - "schema-utils": { - "version": "3.1.2", - "resolved": "https://registry.npmjs.org/schema-utils/-/schema-utils-3.1.2.tgz", - "integrity": "sha512-pvjEHOgWc9OWA/f/DE3ohBWTD6EleVLf7iFUkoSwAxttdBhB9QUebQgxER2kWueOvRJXPHNnyrvvh9eZINB8Eg==", - "requires": { + "node_modules/schema-utils": { + "version": "3.3.0", + "license": "MIT", + "dependencies": { "@types/json-schema": "^7.0.8", "ajv": "^6.12.5", "ajv-keywords": "^3.5.2" + }, + "engines": { + "node": ">= 10.13.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/webpack" } }, - "scrypt-js": { + "node_modules/scrypt-js": { "version": "3.0.1", - "resolved": "https://registry.npmjs.org/scrypt-js/-/scrypt-js-3.0.1.tgz", - "integrity": "sha512-cdwTTnqPu0Hyvf5in5asVdZocVDTNRmR7XEcJuIzMjJeSHybHl7vpB66AzwTaIg6CLSbtjcxc8fqcySfnTkccA==" + "license": "MIT" }, - "secp256k1": { + "node_modules/secp256k1": { "version": "4.0.3", - "resolved": "https://registry.npmjs.org/secp256k1/-/secp256k1-4.0.3.tgz", - "integrity": "sha512-NLZVf+ROMxwtEj3Xa562qgv2BK5e2WNmXPiOdVIPLgs6lyTzMvBq0aWTYMI5XCP9jZMVKOcqZLw/Wc4vDkuxhA==", - "requires": { + "hasInstallScript": true, + "license": "MIT", + "dependencies": { "elliptic": "^6.5.4", "node-addon-api": "^2.0.0", "node-gyp-build": "^4.2.0" + }, + "engines": { + "node": ">=10.0.0" } }, - "select-hose": { + "node_modules/select-hose": { "version": "2.0.0", - "resolved": "https://registry.npmjs.org/select-hose/-/select-hose-2.0.0.tgz", - "integrity": "sha512-mEugaLK+YfkijB4fx0e6kImuJdCIt2LxCRcbEYPqRGCs4F2ogyfZU5IAZRdjCP8JPq2AtdNoC/Dux63d9Kiryg==" + "license": "MIT" }, - "selfsigned": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/selfsigned/-/selfsigned-2.0.1.tgz", - "integrity": "sha512-LmME957M1zOsUhG+67rAjKfiWFox3SBxE/yymatMZsAx+oMrJ0YQ8AToOnyCm7xbeg2ep37IHLxdu0o2MavQOQ==", - "requires": { + "node_modules/selfsigned": { + "version": "2.1.1", + "license": "MIT", + "dependencies": { "node-forge": "^1" + }, + "engines": { + "node": ">=10" } }, - "semver": { - "version": "7.3.7", - "resolved": "https://registry.npmjs.org/semver/-/semver-7.3.7.tgz", - "integrity": "sha512-QlYTucUYOews+WeEujDoEGziz4K6c47V/Bd+LjSSYcA94p+DmINdf7ncaUinThfvZyu13lN9OY1XDxt8C0Tw0g==", - "requires": { + "node_modules/semver": { + "version": "7.5.4", + "license": "ISC", + "dependencies": { "lru-cache": "^6.0.0" + }, + "bin": { + "semver": "bin/semver.js" + }, + "engines": { + "node": ">=10" + } + }, + "node_modules/semver/node_modules/lru-cache": { + "version": "6.0.0", + "license": "ISC", + "dependencies": { + "yallist": "^4.0.0" + }, + "engines": { + "node": ">=10" } }, - "send": { + "node_modules/semver/node_modules/yallist": { + "version": "4.0.0", + "license": "ISC" + }, + "node_modules/send": { "version": "0.18.0", - "resolved": "https://registry.npmjs.org/send/-/send-0.18.0.tgz", - "integrity": "sha512-qqWzuOjSFOuqPjFe4NOsMLafToQQwBSOEpS+FwEt3A2V3vKubTquT3vmLTQpFgMXp8AlFWFuP1qKaJZOtPpVXg==", - "requires": { + "license": "MIT", + "dependencies": { "debug": "2.6.9", "depd": "2.0.0", "destroy": "1.2.0", @@ -41319,42 +18566,36 @@ "range-parser": "~1.2.1", "statuses": "2.0.1" }, + "engines": { + "node": ">= 0.8.0" + } + }, + "node_modules/send/node_modules/debug": { + "version": "2.6.9", + "license": "MIT", "dependencies": { - "debug": { - "version": "2.6.9", - "resolved": "https://registry.npmjs.org/debug/-/debug-2.6.9.tgz", - "integrity": "sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA==", - "requires": { - "ms": "2.0.0" - }, - "dependencies": { - "ms": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/ms/-/ms-2.0.0.tgz", - "integrity": "sha512-Tpp60P6IUJDTuOq/5Z8cdskzJujfwqfOTkrwIwj7IRISpnkJnT6SyJ4PCPnGMoFjC9ddhal5KVIYtAt97ix05A==" - } - } - }, - "ms": { - "version": "2.1.3", - "resolved": "https://registry.npmjs.org/ms/-/ms-2.1.3.tgz", - "integrity": "sha512-6FlzubTLZG3J2a/NVCAleEhjzq5oxgHyaCU9yYXvcLsvoVaHJq/s5xXI6/XXP6tz7R9xAOtHnSO/tXtF3WRTlA==" - } + "ms": "2.0.0" } }, - "serialize-javascript": { + "node_modules/send/node_modules/debug/node_modules/ms": { + "version": "2.0.0", + "license": "MIT" + }, + "node_modules/send/node_modules/ms": { + "version": "2.1.3", + "license": "MIT" + }, + "node_modules/serialize-javascript": { "version": "6.0.1", - "resolved": "https://registry.npmjs.org/serialize-javascript/-/serialize-javascript-6.0.1.tgz", - "integrity": "sha512-owoXEFjWRllis8/M1Q+Cw5k8ZH40e3zhp/ovX+Xr/vi1qj6QesbyXXViFbpNvWvPNAD62SutwEXavefrLJWj7w==", - "requires": { + "license": "BSD-3-Clause", + "dependencies": { "randombytes": "^2.1.0" } }, - "serve-index": { + "node_modules/serve-index": { "version": "1.9.1", - "resolved": "https://registry.npmjs.org/serve-index/-/serve-index-1.9.1.tgz", - "integrity": "sha512-pXHfKNP4qujrtteMrSBb0rc8HJ9Ms/GrXwcUtUtD5s4ewDJI8bT3Cz2zTVRMKtri49pLx2e0Ya8ziP5Ya2pZZw==", - "requires": { + "license": "MIT", + "dependencies": { "accepts": "~1.3.4", "batch": "0.6.1", "debug": "2.6.9", @@ -41363,200 +18604,222 @@ "mime-types": "~2.1.17", "parseurl": "~1.3.2" }, + "engines": { + "node": ">= 0.8.0" + } + }, + "node_modules/serve-index/node_modules/debug": { + "version": "2.6.9", + "license": "MIT", "dependencies": { - "debug": { - "version": "2.6.9", - "resolved": "https://registry.npmjs.org/debug/-/debug-2.6.9.tgz", - "integrity": "sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA==", - "requires": { - "ms": "2.0.0" - } - }, - "depd": { - "version": "1.1.2", - "resolved": "https://registry.npmjs.org/depd/-/depd-1.1.2.tgz", - "integrity": "sha512-7emPTl6Dpo6JRXOXjLRxck+FlLRX5847cLKEn00PLAgc3g2hTZZgr+e4c2v6QpSmLeFP3n5yUo7ft6avBK/5jQ==" - }, - "http-errors": { - "version": "1.6.3", - "resolved": "https://registry.npmjs.org/http-errors/-/http-errors-1.6.3.tgz", - "integrity": "sha512-lks+lVC8dgGyh97jxvxeYTWQFvh4uw4yC12gVl63Cg30sjPX4wuGcdkICVXDAESr6OJGjqGA8Iz5mkeN6zlD7A==", - "requires": { - "depd": "~1.1.2", - "inherits": "2.0.3", - "setprototypeof": "1.1.0", - "statuses": ">= 1.4.0 < 2" - } - }, - "inherits": { - "version": "2.0.3", - "resolved": "https://registry.npmjs.org/inherits/-/inherits-2.0.3.tgz", - "integrity": "sha512-x00IRNXNy63jwGkJmzPigoySHbaqpNuzKbBOmzK+g2OdZpQ9w+sxCN+VSB3ja7IAge2OP2qpfxTjeNcyjmW1uw==" - }, - "ms": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/ms/-/ms-2.0.0.tgz", - "integrity": "sha512-Tpp60P6IUJDTuOq/5Z8cdskzJujfwqfOTkrwIwj7IRISpnkJnT6SyJ4PCPnGMoFjC9ddhal5KVIYtAt97ix05A==" - }, - "setprototypeof": { - "version": "1.1.0", - "resolved": "https://registry.npmjs.org/setprototypeof/-/setprototypeof-1.1.0.tgz", - "integrity": "sha512-BvE/TwpZX4FXExxOxZyRGQQv651MSwmWKZGqvmPcRIjDqWub67kTKuIMx43cZZrS/cBBzwBcNDWoFxt2XEFIpQ==" - }, - "statuses": { - "version": "1.5.0", - "resolved": "https://registry.npmjs.org/statuses/-/statuses-1.5.0.tgz", - "integrity": "sha512-OpZ3zP+jT1PI7I8nemJX4AKmAX070ZkYPVWV/AaKTJl+tXCTGyVdC1a4SL8RUQYEwk/f34ZX8UTykN68FwrqAA==" - } + "ms": "2.0.0" + } + }, + "node_modules/serve-index/node_modules/depd": { + "version": "1.1.2", + "license": "MIT", + "engines": { + "node": ">= 0.6" + } + }, + "node_modules/serve-index/node_modules/http-errors": { + "version": "1.6.3", + "license": "MIT", + "dependencies": { + "depd": "~1.1.2", + "inherits": "2.0.3", + "setprototypeof": "1.1.0", + "statuses": ">= 1.4.0 < 2" + }, + "engines": { + "node": ">= 0.6" + } + }, + "node_modules/serve-index/node_modules/inherits": { + "version": "2.0.3", + "license": "ISC" + }, + "node_modules/serve-index/node_modules/ms": { + "version": "2.0.0", + "license": "MIT" + }, + "node_modules/serve-index/node_modules/setprototypeof": { + "version": "1.1.0", + "license": "ISC" + }, + "node_modules/serve-index/node_modules/statuses": { + "version": "1.5.0", + "license": "MIT", + "engines": { + "node": ">= 0.6" } }, - "serve-static": { + "node_modules/serve-static": { "version": "1.15.0", - "resolved": "https://registry.npmjs.org/serve-static/-/serve-static-1.15.0.tgz", - "integrity": "sha512-XGuRDNjXUijsUL0vl6nSD7cwURuzEgglbOaFuZM9g3kwDXOWVTck0jLzjPzGD+TazWbboZYu52/9/XPdUgne9g==", - "requires": { + "license": "MIT", + "dependencies": { "encodeurl": "~1.0.2", "escape-html": "~1.0.3", "parseurl": "~1.3.3", "send": "0.18.0" + }, + "engines": { + "node": ">= 0.8.0" } }, - "servify": { + "node_modules/servify": { "version": "0.1.12", - "resolved": "https://registry.npmjs.org/servify/-/servify-0.1.12.tgz", - "integrity": "sha512-/xE6GvsKKqyo1BAY+KxOWXcLpPsUUyji7Qg3bVD7hh1eRze5bR1uYiuDA/k3Gof1s9BTzQZEJK8sNcNGFIzeWw==", - "requires": { + "license": "MIT", + "dependencies": { "body-parser": "^1.16.0", "cors": "^2.8.1", "express": "^4.14.0", "request": "^2.79.0", "xhr": "^2.3.3" + }, + "engines": { + "node": ">=6" } }, - "set-blocking": { + "node_modules/set-blocking": { "version": "2.0.0", - "resolved": "https://registry.npmjs.org/set-blocking/-/set-blocking-2.0.0.tgz", - "integrity": "sha512-KiKBS8AnWGEyLzofFfmvKwpdPzqiy16LvQfK3yv/fVH7Bj13/wl3JSR1J+rfgRE9q7xUJK4qvgS8raSOeLUehw==" + "license": "ISC" }, - "setimmediate": { + "node_modules/setimmediate": { "version": "1.0.5", - "resolved": "https://registry.npmjs.org/setimmediate/-/setimmediate-1.0.5.tgz", - "integrity": "sha512-MATJdZp8sLqDl/68LfQmbP8zKPLQNV6BIZoIgrscFDQ+RsvK/BxeDQOgyxKKoh0y/8h3BqVFnCqQ/gd+reiIXA==" + "license": "MIT" }, - "setprototypeof": { + "node_modules/setprototypeof": { "version": "1.2.0", - "resolved": "https://registry.npmjs.org/setprototypeof/-/setprototypeof-1.2.0.tgz", - "integrity": "sha512-E5LDX7Wrp85Kil5bhZv46j8jOeboKq5JMmYM3gVGdGH8xFpPWXUMsNrlODCrkoxMEeNi/XZIwuRvY4XNwYMJpw==" + "license": "ISC" }, - "sha.js": { + "node_modules/sha.js": { "version": "2.4.11", - "resolved": "https://registry.npmjs.org/sha.js/-/sha.js-2.4.11.tgz", - "integrity": "sha512-QMEp5B7cftE7APOjk5Y6xgrbWu+WkLVQwk8JNjZ8nKRciZaByEW6MubieAiToS7+dwvrjGhH8jRXz3MVd0AYqQ==", - "requires": { + "license": "(MIT AND BSD-3-Clause)", + "dependencies": { "inherits": "^2.0.1", "safe-buffer": "^5.0.1" + }, + "bin": { + "sha.js": "bin.js" } }, - "shallowequal": { + "node_modules/shallowequal": { "version": "1.1.0", - "resolved": "https://registry.npmjs.org/shallowequal/-/shallowequal-1.1.0.tgz", - "integrity": "sha512-y0m1JoUZSlPAjXVtPPW70aZWfIL/dSP7AFkRnniLCrK/8MDKog3TySTBmckD+RObVxH0v4Tox67+F14PdED2oQ==" + "license": "MIT" }, - "shebang-command": { + "node_modules/shebang-command": { "version": "2.0.0", - "resolved": "https://registry.npmjs.org/shebang-command/-/shebang-command-2.0.0.tgz", - "integrity": "sha512-kHxr2zZpYtdmrN1qDjrrX/Z1rR1kG8Dx+gkpK1G4eXmvXswmcE1hTWBWYUzlraYw1/yZp6YuDY77YtvbN0dmDA==", - "requires": { + "license": "MIT", + "dependencies": { "shebang-regex": "^3.0.0" + }, + "engines": { + "node": ">=8" } }, - "shebang-regex": { + "node_modules/shebang-regex": { "version": "3.0.0", - "resolved": "https://registry.npmjs.org/shebang-regex/-/shebang-regex-3.0.0.tgz", - "integrity": "sha512-7++dFhtcx3353uBaq8DDR4NuxBetBzC7ZQOhmTQInHEd6bSrXdiEyzCvG07Z44UYdLShWUyXt5M/yhz8ekcb1A==" + "license": "MIT", + "engines": { + "node": ">=8" + } }, - "shell-quote": { - "version": "1.7.3", - "resolved": "https://registry.npmjs.org/shell-quote/-/shell-quote-1.7.3.tgz", - "integrity": "sha512-Vpfqwm4EnqGdlsBFNmHhxhElJYrdfcxPThu+ryKS5J8L/fhAwLazFZtq+S+TWZ9ANj2piSQLGj6NQg+lKPmxrw==" - }, - "shiki": { - "version": "0.14.2", - "resolved": "https://registry.npmjs.org/shiki/-/shiki-0.14.2.tgz", - "integrity": "sha512-ltSZlSLOuSY0M0Y75KA+ieRaZ0Trf5Wl3gutE7jzLuIcWxLp5i/uEnLoQWNvgKXQ5OMpGkJnVMRLAuzjc0LJ2A==", - "requires": { + "node_modules/shell-quote": { + "version": "1.8.1", + "license": "MIT", + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/shiki": { + "version": "0.14.3", + "license": "MIT", + "dependencies": { "ansi-sequence-parser": "^1.1.0", "jsonc-parser": "^3.2.0", "vscode-oniguruma": "^1.7.0", "vscode-textmate": "^8.0.0" } }, - "side-channel": { + "node_modules/side-channel": { "version": "1.0.4", - "resolved": "https://registry.npmjs.org/side-channel/-/side-channel-1.0.4.tgz", - "integrity": "sha512-q5XPytqFEIKHkGdiMIrY10mvLRvnQh42/+GoBlFW3b2LXLE2xxJpZFdm94we0BaoV3RwJyGqg5wS7epxTv0Zvw==", - "requires": { + "license": "MIT", + "dependencies": { "call-bind": "^1.0.0", "get-intrinsic": "^1.0.2", "object-inspect": "^1.9.0" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" } }, - "signal-exit": { + "node_modules/signal-exit": { "version": "3.0.7", - "resolved": "https://registry.npmjs.org/signal-exit/-/signal-exit-3.0.7.tgz", - "integrity": "sha512-wnD2ZE+l+SPC/uoS0vXeE9L1+0wuaMqKlfz9AMUo38JsyLSBWSFcHR1Rri62LZc12vLr1gb3jl7iwQhgwpAbGQ==" + "license": "ISC" }, - "simple-concat": { + "node_modules/simple-concat": { "version": "1.0.1", - "resolved": "https://registry.npmjs.org/simple-concat/-/simple-concat-1.0.1.tgz", - "integrity": "sha512-cSFtAPtRhljv69IK0hTVZQ+OfE9nePi/rtJmw5UjHeVyVroEqJXP1sFztKUy1qU+xvz3u/sfYJLa947b7nAN2Q==" + "funding": [ + { + "type": "github", + "url": "https://github.com/sponsors/feross" + }, + { + "type": "patreon", + "url": "https://www.patreon.com/feross" + }, + { + "type": "consulting", + "url": "https://feross.org/support" + } + ], + "license": "MIT" }, - "simple-get": { + "node_modules/simple-get": { "version": "2.8.2", - "resolved": "https://registry.npmjs.org/simple-get/-/simple-get-2.8.2.tgz", - "integrity": "sha512-Ijd/rV5o+mSBBs4F/x9oDPtTx9Zb6X9brmnXvMW4J7IR15ngi9q5xxqWBKU744jTZiaXtxaPL7uHG6vtN8kUkw==", - "requires": { + "license": "MIT", + "dependencies": { "decompress-response": "^3.3.0", "once": "^1.3.1", "simple-concat": "^1.0.0" - }, + } + }, + "node_modules/simple-get/node_modules/decompress-response": { + "version": "3.3.0", + "license": "MIT", "dependencies": { - "decompress-response": { - "version": "3.3.0", - "resolved": "https://registry.npmjs.org/decompress-response/-/decompress-response-3.3.0.tgz", - "integrity": "sha512-BzRPQuY1ip+qDonAOz42gRm/pg9F768C+npV/4JOsxRC2sq+Rlk+Q4ZCAsOhnIaMrgarILY+RMUIvMmmX1qAEA==", - "requires": { - "mimic-response": "^1.0.0" - } - } + "mimic-response": "^1.0.0" + }, + "engines": { + "node": ">=4" } }, - "sisteransi": { + "node_modules/sisteransi": { "version": "1.0.5", - "resolved": "https://registry.npmjs.org/sisteransi/-/sisteransi-1.0.5.tgz", - "integrity": "sha512-bLGGlR1QxBcynn2d5YmDX4MGjlZvy2MRBDRNHLJ8VI6l6+9FUiyTFNJ0IveOSP0bcXgVDPRcfGqA0pjaqUpfVg==" + "license": "MIT" }, - "slash": { + "node_modules/slash": { "version": "3.0.0", - "resolved": "https://registry.npmjs.org/slash/-/slash-3.0.0.tgz", - "integrity": "sha512-g9Q1haeby36OSStwb4ntCGGGaKsaVSjQ68fBxoQcutl5fS1vuY18H3wSt3jFyFtrkx+Kz0V1G85A4MyAdDMi2Q==" + "license": "MIT", + "engines": { + "node": ">=8" + } }, - "sockjs": { + "node_modules/sockjs": { "version": "0.3.24", - "resolved": "https://registry.npmjs.org/sockjs/-/sockjs-0.3.24.tgz", - "integrity": "sha512-GJgLTZ7vYb/JtPSSZ10hsOYIvEYsjbNU+zPdIHcUaWVNUEPivzxku31865sSSud0Da0W4lEeOPlmw93zLQchuQ==", - "requires": { + "license": "MIT", + "dependencies": { "faye-websocket": "^0.11.3", "uuid": "^8.3.2", "websocket-driver": "^0.7.4" } }, - "solc": { + "node_modules/solc": { "version": "0.7.3", - "resolved": "https://registry.npmjs.org/solc/-/solc-0.7.3.tgz", - "integrity": "sha512-GAsWNAjGzIDg7VxzP6mPjdurby3IkGCjQcM8GFYZT6RyaoUZKmMU6Y7YwG+tFGhv7dwZ8rmR4iwFDrrD99JwqA==", + "license": "MIT", "peer": true, - "requires": { + "dependencies": { "command-exists": "^1.2.8", "commander": "3.0.2", "follow-redirects": "^1.12.1", @@ -41567,124 +18830,131 @@ "semver": "^5.5.0", "tmp": "0.0.33" }, + "bin": { + "solcjs": "solcjs" + }, + "engines": { + "node": ">=8.0.0" + } + }, + "node_modules/solc/node_modules/commander": { + "version": "3.0.2", + "license": "MIT", + "peer": true + }, + "node_modules/solc/node_modules/fs-extra": { + "version": "0.30.0", + "license": "MIT", + "peer": true, "dependencies": { - "commander": { - "version": "3.0.2", - "resolved": "https://registry.npmjs.org/commander/-/commander-3.0.2.tgz", - "integrity": "sha512-Gar0ASD4BDyKC4hl4DwHqDrmvjoxWKZigVnAbn5H1owvm4CxCPdb0HQDehwNYMJpla5+M2tPmPARzhtYuwpHow==", - "peer": true - }, - "fs-extra": { - "version": "0.30.0", - "resolved": "https://registry.npmjs.org/fs-extra/-/fs-extra-0.30.0.tgz", - "integrity": "sha512-UvSPKyhMn6LEd/WpUaV9C9t3zATuqoqfWc3QdPhPLb58prN9tqYPlPWi8Krxi44loBoUzlobqZ3+8tGpxxSzwA==", - "peer": true, - "requires": { - "graceful-fs": "^4.1.2", - "jsonfile": "^2.1.0", - "klaw": "^1.0.0", - "path-is-absolute": "^1.0.0", - "rimraf": "^2.2.8" - } - }, - "jsonfile": { - "version": "2.4.0", - "resolved": "https://registry.npmjs.org/jsonfile/-/jsonfile-2.4.0.tgz", - "integrity": "sha512-PKllAqbgLgxHaj8TElYymKCAgrASebJrWpTnEkOaTowt23VKXXN0sUeriJ+eh7y6ufb/CC5ap11pz71/cM0hUw==", - "peer": true, - "requires": { - "graceful-fs": "^4.1.6" - } - }, - "rimraf": { - "version": "2.7.1", - "resolved": "https://registry.npmjs.org/rimraf/-/rimraf-2.7.1.tgz", - "integrity": "sha512-uWjbaKIK3T1OSVptzX7Nl6PvQ3qAGtKEtVRjRuazjfL3Bx5eI409VZSqgND+4UNnmzLVdPj9FqFJNPqBZFve4w==", - "peer": true, - "requires": { - "glob": "^7.1.3" - } - }, - "semver": { - "version": "5.7.1", - "resolved": "https://registry.npmjs.org/semver/-/semver-5.7.1.tgz", - "integrity": "sha512-sauaDf/PZdVgrLTNYHRtpXa1iRiKcaebiKQ1BJdpQlWH2lCvexQdX55snPFyK7QzpudqbCI0qXFfOasHdyNDGQ==", - "peer": true - } + "graceful-fs": "^4.1.2", + "jsonfile": "^2.1.0", + "klaw": "^1.0.0", + "path-is-absolute": "^1.0.0", + "rimraf": "^2.2.8" + } + }, + "node_modules/solc/node_modules/jsonfile": { + "version": "2.4.0", + "license": "MIT", + "peer": true, + "optionalDependencies": { + "graceful-fs": "^4.1.6" + } + }, + "node_modules/solc/node_modules/rimraf": { + "version": "2.7.1", + "license": "ISC", + "peer": true, + "dependencies": { + "glob": "^7.1.3" + }, + "bin": { + "rimraf": "bin.js" } }, - "source-list-map": { + "node_modules/solc/node_modules/semver": { + "version": "5.7.2", + "license": "ISC", + "peer": true, + "bin": { + "semver": "bin/semver" + } + }, + "node_modules/source-list-map": { "version": "2.0.1", - "resolved": "https://registry.npmjs.org/source-list-map/-/source-list-map-2.0.1.tgz", - "integrity": "sha512-qnQ7gVMxGNxsiL4lEuJwe/To8UnK7fAnmbGEEH8RpLouuKbeEm0lhbQVFIrNSuB+G7tVrAlVsZgETT5nljf+Iw==" + "license": "MIT" }, - "source-map": { - "version": "0.7.4", - "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.7.4.tgz", - "integrity": "sha512-l3BikUxvPOcn5E74dZiq5BGsTb5yEwhaTSzccU6t4sDOH8NWJCstKO5QT2CvtFoK6F0saL7p9xHAqHOlCPJygA==" + "node_modules/source-map": { + "version": "0.5.7", + "license": "BSD-3-Clause", + "engines": { + "node": ">=0.10.0" + } }, - "source-map-js": { + "node_modules/source-map-js": { "version": "1.0.2", - "resolved": "https://registry.npmjs.org/source-map-js/-/source-map-js-1.0.2.tgz", - "integrity": "sha512-R0XvVJ9WusLiqTCEiGCmICCMplcCkIwwR11mOSD9CR5u+IXYdiseeEuXCVAjS54zqwkLcPNnmU4OeJ6tUrWhDw==" + "license": "BSD-3-Clause", + "engines": { + "node": ">=0.10.0" + } }, - "source-map-loader": { - "version": "3.0.1", - "resolved": "https://registry.npmjs.org/source-map-loader/-/source-map-loader-3.0.1.tgz", - "integrity": "sha512-Vp1UsfyPvgujKQzi4pyDiTOnE3E4H+yHvkVRN3c/9PJmQS4CQJExvcDvaX/D+RV+xQben9HJ56jMJS3CgUeWyA==", - "requires": { + "node_modules/source-map-loader": { + "version": "3.0.2", + "license": "MIT", + "dependencies": { "abab": "^2.0.5", "iconv-lite": "^0.6.3", "source-map-js": "^1.0.1" + }, + "engines": { + "node": ">= 12.13.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/webpack" + }, + "peerDependencies": { + "webpack": "^5.0.0" } }, - "source-map-resolve": { - "version": "0.6.0", - "resolved": "https://registry.npmjs.org/source-map-resolve/-/source-map-resolve-0.6.0.tgz", - "integrity": "sha512-KXBr9d/fO/bWo97NXsPIAW1bFSBOuCnjbNTBMO7N59hsv5i9yzRDfcYwwt0l04+VqnKC+EwzvJZIP/qkuMgR/w==", - "requires": { - "atob": "^2.1.2", - "decode-uri-component": "^0.2.0" - } - }, - "source-map-support": { + "node_modules/source-map-support": { "version": "0.5.21", - "resolved": "https://registry.npmjs.org/source-map-support/-/source-map-support-0.5.21.tgz", - "integrity": "sha512-uBHU3L3czsIyYXKX88fdrGovxdSCoTGDRZ6SYXtSRxLZUzHg5P/66Ht6uoUlHu9EZod+inXhKo3qQgwXUT/y1w==", - "requires": { + "license": "MIT", + "dependencies": { "buffer-from": "^1.0.0", "source-map": "^0.6.0" - }, - "dependencies": { - "source-map": { - "version": "0.6.1", - "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz", - "integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==" - } } }, - "sourcemap-codec": { + "node_modules/source-map-support/node_modules/source-map": { + "version": "0.6.1", + "license": "BSD-3-Clause", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/sourcemap-codec": { "version": "1.4.8", - "resolved": "https://registry.npmjs.org/sourcemap-codec/-/sourcemap-codec-1.4.8.tgz", - "integrity": "sha512-9NykojV5Uih4lgo5So5dtw+f0JgJX30KCNI8gwhz2J9A15wD0Ml6tjHKwf6fTSa6fAdVBdZeNOs9eJ71qCk8vA==" + "license": "MIT" }, - "spdy": { + "node_modules/spdy": { "version": "4.0.2", - "resolved": "https://registry.npmjs.org/spdy/-/spdy-4.0.2.tgz", - "integrity": "sha512-r46gZQZQV+Kl9oItvl1JZZqJKGr+oEkB08A6BzkiR7593/7IbtuncXHd2YoYeTsG4157ZssMu9KYvUHLcjcDoA==", - "requires": { + "license": "MIT", + "dependencies": { "debug": "^4.1.0", "handle-thing": "^2.0.0", "http-deceiver": "^1.2.7", "select-hose": "^2.0.0", "spdy-transport": "^3.0.0" + }, + "engines": { + "node": ">=6.0.0" } }, - "spdy-transport": { + "node_modules/spdy-transport": { "version": "3.0.0", - "resolved": "https://registry.npmjs.org/spdy-transport/-/spdy-transport-3.0.0.tgz", - "integrity": "sha512-hsLVFE5SjA6TCisWeJXFKniGGOpBgMLmerfO2aCyCU5s7nJ/rpAepqmFifv/GCbSbueEeAJJnmSQ2rKC/g8Fcw==", - "requires": { + "license": "MIT", + "dependencies": { "debug": "^4.1.0", "detect-node": "^2.0.4", "hpack.js": "^2.1.6", @@ -41693,16 +18963,14 @@ "wbuf": "^1.7.3" } }, - "sprintf-js": { + "node_modules/sprintf-js": { "version": "1.0.3", - "resolved": "https://registry.npmjs.org/sprintf-js/-/sprintf-js-1.0.3.tgz", - "integrity": "sha512-D9cPgkvLlV3t3IzL0D0YLvGA9Ahk4PcvVwUbN0dSGr1aP0Nrt4AEnTUbuGvquEC0mA64Gqt1fzirlRs5ibXx8g==" + "license": "BSD-3-Clause" }, - "sshpk": { + "node_modules/sshpk": { "version": "1.17.0", - "resolved": "https://registry.npmjs.org/sshpk/-/sshpk-1.17.0.tgz", - "integrity": "sha512-/9HIEs1ZXGhSPE8X6Ccm7Nam1z8KcoCqPdI7ecm1N33EzAetWahvQWVqLZtaZQ+IDKX4IyA2o0gBzqIMkAagHQ==", - "requires": { + "license": "MIT", + "dependencies": { "asn1": "~0.2.3", "assert-plus": "^1.0.0", "bcrypt-pbkdf": "^1.0.0", @@ -41713,291 +18981,358 @@ "safer-buffer": "^2.0.2", "tweetnacl": "~0.14.0" }, - "dependencies": { - "tweetnacl": { - "version": "0.14.5", - "resolved": "https://registry.npmjs.org/tweetnacl/-/tweetnacl-0.14.5.tgz", - "integrity": "sha512-KXXFFdAbFXY4geFIwoyNK+f5Z1b7swfXABfL7HXCmoIWMKU3dmS26672A4EeQtDzLKy7SXmfBu51JolvEKwtGA==" - } + "bin": { + "sshpk-conv": "bin/sshpk-conv", + "sshpk-sign": "bin/sshpk-sign", + "sshpk-verify": "bin/sshpk-verify" + }, + "engines": { + "node": ">=0.10.0" } }, - "stable": { + "node_modules/sshpk/node_modules/tweetnacl": { + "version": "0.14.5", + "license": "Unlicense" + }, + "node_modules/stable": { "version": "0.1.8", - "resolved": "https://registry.npmjs.org/stable/-/stable-0.1.8.tgz", - "integrity": "sha512-ji9qxRnOVfcuLDySj9qzhGSEFVobyt1kIOSkj1qZzYLzq7Tos/oUUWvotUPQLlrsidqsK6tBH89Bc9kL5zHA6w==" + "license": "MIT" }, - "stack-utils": { - "version": "2.0.5", - "resolved": "https://registry.npmjs.org/stack-utils/-/stack-utils-2.0.5.tgz", - "integrity": "sha512-xrQcmYhOsn/1kX+Vraq+7j4oE2j/6BFscZ0etmYg81xuM8Gq0022Pxb8+IqgOFUIaxHs0KaSb7T1+OegiNrNFA==", - "requires": { + "node_modules/stack-utils": { + "version": "2.0.6", + "license": "MIT", + "dependencies": { "escape-string-regexp": "^2.0.0" }, - "dependencies": { - "escape-string-regexp": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/escape-string-regexp/-/escape-string-regexp-2.0.0.tgz", - "integrity": "sha512-UpzcLCXolUWcNu5HtVMHYdXJjArjsF9C0aNnquZYY4uW/Vu0miy5YoWvbV345HauVvcAUnpRuhMMcqTcGOY2+w==" - } + "engines": { + "node": ">=10" + } + }, + "node_modules/stack-utils/node_modules/escape-string-regexp": { + "version": "2.0.0", + "license": "MIT", + "engines": { + "node": ">=8" } }, - "stackframe": { + "node_modules/stackframe": { "version": "1.3.4", - "resolved": "https://registry.npmjs.org/stackframe/-/stackframe-1.3.4.tgz", - "integrity": "sha512-oeVtt7eWQS+Na6F//S4kJ2K2VbRlS9D43mAlMyVpVWovy9o+jfgH8O9agzANzaiLjclA0oYzUXEM4PurhSUChw==" + "license": "MIT" }, - "stacktrace-parser": { + "node_modules/stacktrace-parser": { "version": "0.1.10", - "resolved": "https://registry.npmjs.org/stacktrace-parser/-/stacktrace-parser-0.1.10.tgz", - "integrity": "sha512-KJP1OCML99+8fhOHxwwzyWrlUuVX5GQ0ZpJTd1DFXhdkrvg1szxfHhawXUZ3g9TkXORQd4/WG68jMlQZ2p8wlg==", + "license": "MIT", "peer": true, - "requires": { + "dependencies": { "type-fest": "^0.7.1" }, - "dependencies": { - "type-fest": { - "version": "0.7.1", - "resolved": "https://registry.npmjs.org/type-fest/-/type-fest-0.7.1.tgz", - "integrity": "sha512-Ne2YiiGN8bmrmJJEuTWTLJR32nh/JdL1+PSicowtNb0WFpn59GK8/lfD61bVtzguz7b3PBt74nxpv/Pw5po5Rg==", - "peer": true - } + "engines": { + "node": ">=6" } }, - "starknet": { - "version": "4.22.0", - "resolved": "https://registry.npmjs.org/starknet/-/starknet-4.22.0.tgz", - "integrity": "sha512-jC9Taxb6a/ht9zmS1LU/DSLfwJKpgCJnE9AktVksc5SE/+jQMpqxsq6fm7PRiqupjiqRC1DOS8N47cj+KaGv4Q==", - "requires": { - "@ethersproject/bytes": "^5.6.1", - "bn.js": "^5.2.1", - "elliptic": "^6.5.4", - "ethereum-cryptography": "^1.0.3", - "hash.js": "^1.1.7", + "node_modules/stacktrace-parser/node_modules/type-fest": { + "version": "0.7.1", + "license": "(MIT OR CC0-1.0)", + "peer": true, + "engines": { + "node": ">=8" + } + }, + "node_modules/starknet": { + "version": "5.18.0", + "license": "MIT", + "dependencies": { + "@noble/curves": "~1.0.0", "isomorphic-fetch": "^3.0.0", - "json-bigint": "^1.0.0", - "minimalistic-assert": "^1.0.1", + "lossless-json": "^2.0.8", + "micro-starknet": "~0.2.1", "pako": "^2.0.4", - "ts-custom-error": "^3.3.1", "url-join": "^4.0.1" } }, - "stats-lite": { - "version": "2.2.0", - "resolved": "https://registry.npmjs.org/stats-lite/-/stats-lite-2.2.0.tgz", - "integrity": "sha512-/Kz55rgUIv2KP2MKphwYT/NCuSfAlbbMRv2ZWw7wyXayu230zdtzhxxuXXcvsc6EmmhS8bSJl3uS1wmMHFumbA==", - "requires": { - "isnumber": "~1.0.0" - } - }, - "statuses": { + "node_modules/statuses": { "version": "2.0.1", - "resolved": "https://registry.npmjs.org/statuses/-/statuses-2.0.1.tgz", - "integrity": "sha512-RwNA9Z/7PrK06rYLIzFMlaF+l73iwpzsqRIFgbMLbTcLD6cOao82TaWefPXQvB2fOC4AjuYSEndS7N/mTCbkdQ==" + "license": "MIT", + "engines": { + "node": ">= 0.8" + } }, - "stream-blackhole": { - "version": "1.0.3", - "resolved": "https://registry.npmjs.org/stream-blackhole/-/stream-blackhole-1.0.3.tgz", - "integrity": "sha512-7NWl3dkmCd12mPkEwTbBPGxwvxj7L4O9DTjJudn02Fmk9K+RuPaDF8zeGo3kmjbsffU5E1aGpZ1dTR9AaRg6AQ==" + "node_modules/stop-iteration-iterator": { + "version": "1.0.0", + "license": "MIT", + "dependencies": { + "internal-slot": "^1.0.4" + }, + "engines": { + "node": ">= 0.4" + } }, - "streamsearch": { + "node_modules/streamsearch": { "version": "1.1.0", - "resolved": "https://registry.npmjs.org/streamsearch/-/streamsearch-1.1.0.tgz", - "integrity": "sha512-Mcc5wHehp9aXz1ax6bZUyY5afg9u2rv5cqQI3mRrYkGC8rW2hM02jWuwjtL++LS5qinSyhj2QfLyNsuc+VsExg==", - "peer": true + "peer": true, + "engines": { + "node": ">=10.0.0" + } }, - "strict-uri-encode": { + "node_modules/strict-uri-encode": { "version": "1.1.0", - "resolved": "https://registry.npmjs.org/strict-uri-encode/-/strict-uri-encode-1.1.0.tgz", - "integrity": "sha512-R3f198pcvnB+5IpnBlRkphuE9n46WyVl8I39W/ZUTZLz4nqSP/oLYUrcnJrw462Ds8he4YKMov2efsTIw1BDGQ==" + "license": "MIT", + "engines": { + "node": ">=0.10.0" + } }, - "string_decoder": { + "node_modules/string_decoder": { "version": "1.3.0", - "resolved": "https://registry.npmjs.org/string_decoder/-/string_decoder-1.3.0.tgz", - "integrity": "sha512-hkRX8U1WjJFd8LsDJ2yQ/wWWxaopEsABU1XfkM8A+j0+85JAGppt16cr1Whg6KIbb4okU6Mql6BOj+uup/wKeA==", - "requires": { - "safe-buffer": "~5.2.0" - }, + "license": "MIT", "dependencies": { - "safe-buffer": { - "version": "5.2.1", - "resolved": "https://registry.npmjs.org/safe-buffer/-/safe-buffer-5.2.1.tgz", - "integrity": "sha512-rp3So07KcdmmKbGvgaNxQSJr7bGVSVk5S9Eq1F+ppbRo70+YeaDxkw5Dd8NPN+GD6bjnYm2VuPuCXmpuYvmCXQ==" - } + "safe-buffer": "~5.2.0" } }, - "string-format": { + "node_modules/string-format": { "version": "2.0.0", - "resolved": "https://registry.npmjs.org/string-format/-/string-format-2.0.0.tgz", - "integrity": "sha512-bbEs3scLeYNXLecRRuk6uJxdXUSj6le/8rNPHChIJTn2V79aXVTR1EH2OH5zLKKoz0V02fOUKZZcw01pLUShZA==", - "dev": true + "dev": true, + "license": "WTFPL OR MIT" }, - "string-length": { + "node_modules/string-length": { "version": "4.0.2", - "resolved": "https://registry.npmjs.org/string-length/-/string-length-4.0.2.tgz", - "integrity": "sha512-+l6rNN5fYHNhZZy41RXsYptCjA2Igmq4EG7kZAYFQI1E1VTXarr6ZPXBg6eq7Y6eK4FEhY6AJlyuFIb/v/S0VQ==", - "requires": { + "license": "MIT", + "dependencies": { "char-regex": "^1.0.2", "strip-ansi": "^6.0.0" + }, + "engines": { + "node": ">=10" } }, - "string-natural-compare": { + "node_modules/string-natural-compare": { "version": "3.0.1", - "resolved": "https://registry.npmjs.org/string-natural-compare/-/string-natural-compare-3.0.1.tgz", - "integrity": "sha512-n3sPwynL1nwKi3WJ6AIsClwBMa0zTi54fn2oLU6ndfTSIO05xaznjSf15PcBZU6FNWbmN5Q6cxT4V5hGvB4taw==" + "license": "MIT" }, - "string-width": { + "node_modules/string-width": { "version": "4.2.3", - "resolved": "https://registry.npmjs.org/string-width/-/string-width-4.2.3.tgz", - "integrity": "sha512-wKyQRQpjJ0sIp62ErSZdGsjMJWsap5oRNihHhu6G7JVO/9jIB6UyevL+tXuOqrng8j/cxKTWyWUwvSTriiZz/g==", - "requires": { + "license": "MIT", + "dependencies": { "emoji-regex": "^8.0.0", "is-fullwidth-code-point": "^3.0.0", "strip-ansi": "^6.0.1" }, - "dependencies": { - "emoji-regex": { - "version": "8.0.0", - "resolved": "https://registry.npmjs.org/emoji-regex/-/emoji-regex-8.0.0.tgz", - "integrity": "sha512-MSjYzcWNOA0ewAHpz0MxpYFvwg6yjy1NG3xteoqz644VCo/RPgnr1/GGt+ic3iJTzQ8Eu3TdM14SawnVUmGE6A==" - } + "engines": { + "node": ">=8" } }, - "string.prototype.matchall": { - "version": "4.0.7", - "resolved": "https://registry.npmjs.org/string.prototype.matchall/-/string.prototype.matchall-4.0.7.tgz", - "integrity": "sha512-f48okCX7JiwVi1NXCVWcFnZgADDC/n2vePlQ/KUCNqCikLLilQvwjMO8+BHVKvgzH0JB0J9LEPgxOGT02RoETg==", - "requires": { + "node_modules/string-width/node_modules/emoji-regex": { + "version": "8.0.0", + "license": "MIT" + }, + "node_modules/string.prototype.matchall": { + "version": "4.0.8", + "license": "MIT", + "dependencies": { "call-bind": "^1.0.2", - "define-properties": "^1.1.3", - "es-abstract": "^1.19.1", - "get-intrinsic": "^1.1.1", + "define-properties": "^1.1.4", + "es-abstract": "^1.20.4", + "get-intrinsic": "^1.1.3", "has-symbols": "^1.0.3", "internal-slot": "^1.0.3", - "regexp.prototype.flags": "^1.4.1", + "regexp.prototype.flags": "^1.4.3", "side-channel": "^1.0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" } }, - "string.prototype.trim": { + "node_modules/string.prototype.trim": { "version": "1.2.7", - "resolved": "https://registry.npmjs.org/string.prototype.trim/-/string.prototype.trim-1.2.7.tgz", - "integrity": "sha512-p6TmeT1T3411M8Cgg9wBTMRtY2q9+PNy9EV1i2lIXUN/btt763oIfxwN3RR8VU6wHX8j/1CFy0L+YuThm6bgOg==", - "requires": { + "license": "MIT", + "dependencies": { "call-bind": "^1.0.2", "define-properties": "^1.1.4", "es-abstract": "^1.20.4" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" } }, - "string.prototype.trimend": { + "node_modules/string.prototype.trimend": { "version": "1.0.6", - "resolved": "https://registry.npmjs.org/string.prototype.trimend/-/string.prototype.trimend-1.0.6.tgz", - "integrity": "sha512-JySq+4mrPf9EsDBEDYMOb/lM7XQLulwg5R/m1r0PXEFqrV0qHvl58sdTilSXtKOflCsK2E8jxf+GKC0T07RWwQ==", - "requires": { + "license": "MIT", + "dependencies": { "call-bind": "^1.0.2", "define-properties": "^1.1.4", "es-abstract": "^1.20.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" } }, - "string.prototype.trimstart": { + "node_modules/string.prototype.trimstart": { "version": "1.0.6", - "resolved": "https://registry.npmjs.org/string.prototype.trimstart/-/string.prototype.trimstart-1.0.6.tgz", - "integrity": "sha512-omqjMDaY92pbn5HOX7f9IccLA+U1tA9GvtU4JrodiXFfYB7jPzzHpRzpglLAjtUV6bB557zwClJezTqnAiYnQA==", - "requires": { + "license": "MIT", + "dependencies": { "call-bind": "^1.0.2", "define-properties": "^1.1.4", "es-abstract": "^1.20.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" } }, - "stringify-object": { + "node_modules/stringify-object": { "version": "3.3.0", - "resolved": "https://registry.npmjs.org/stringify-object/-/stringify-object-3.3.0.tgz", - "integrity": "sha512-rHqiFh1elqCQ9WPLIC8I0Q/g/wj5J1eMkyoiD6eoQApWHP0FtlK7rqnhmabL5VUY9JQCcqwwvlOaSuutekgyrw==", - "requires": { + "license": "BSD-2-Clause", + "dependencies": { "get-own-enumerable-property-symbols": "^3.0.0", "is-obj": "^1.0.1", "is-regexp": "^1.0.0" + }, + "engines": { + "node": ">=4" } }, - "strip-ansi": { + "node_modules/strip-ansi": { "version": "6.0.1", - "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-6.0.1.tgz", - "integrity": "sha512-Y38VPSHcqkFrCpFnQ9vuSXmquuv5oXOKpGeT6aGrr3o3Gc9AlVa6JBfUSOCnbxGGZF+/0ooI7KrPuUSztUdU5A==", - "requires": { + "license": "MIT", + "dependencies": { "ansi-regex": "^5.0.1" + }, + "engines": { + "node": ">=8" } }, - "strip-bom": { + "node_modules/strip-bom": { "version": "4.0.0", - "resolved": "https://registry.npmjs.org/strip-bom/-/strip-bom-4.0.0.tgz", - "integrity": "sha512-3xurFv5tEgii33Zi8Jtp55wEIILR9eh34FAW00PZf+JnSsTmV/ioewSgQl97JHvgjoRGwPShsWm+IdrxB35d0w==" + "license": "MIT", + "engines": { + "node": ">=8" + } }, - "strip-comments": { + "node_modules/strip-comments": { "version": "2.0.1", - "resolved": "https://registry.npmjs.org/strip-comments/-/strip-comments-2.0.1.tgz", - "integrity": "sha512-ZprKx+bBLXv067WTCALv8SSz5l2+XhpYCsVtSqlMnkAXMWDq+/ekVbl1ghqP9rUHTzv6sm/DwCOiYutU/yp1fw==" + "license": "MIT", + "engines": { + "node": ">=10" + } }, - "strip-final-newline": { + "node_modules/strip-final-newline": { "version": "2.0.0", - "resolved": "https://registry.npmjs.org/strip-final-newline/-/strip-final-newline-2.0.0.tgz", - "integrity": "sha512-BrpvfNAE3dcvq7ll3xVumzjKjZQ5tI1sEUIKr3Uoks0XUl45St3FlatVqef9prk4jRDzhW6WZg+3bk93y6pLjA==" + "license": "MIT", + "engines": { + "node": ">=6" + } }, - "strip-hex-prefix": { + "node_modules/strip-hex-prefix": { "version": "1.0.0", - "resolved": "https://registry.npmjs.org/strip-hex-prefix/-/strip-hex-prefix-1.0.0.tgz", - "integrity": "sha512-q8d4ue7JGEiVcypji1bALTos+0pWtyGlivAWyPuTkHzuTCJqrK9sWxYQZUq6Nq3cuyv3bm734IhHvHtGGURU6A==", - "requires": { + "license": "MIT", + "dependencies": { "is-hex-prefixed": "1.0.0" + }, + "engines": { + "node": ">=6.5.0", + "npm": ">=3" } }, - "strip-indent": { + "node_modules/strip-indent": { "version": "3.0.0", - "resolved": "https://registry.npmjs.org/strip-indent/-/strip-indent-3.0.0.tgz", - "integrity": "sha512-laJTa3Jb+VQpaC6DseHhF7dXVqHTfJPCRDaEbid/drOhgitgYku/letMUqOXFoWV0zIIUbjpdH2t+tYj4bQMRQ==", - "requires": { + "license": "MIT", + "dependencies": { "min-indent": "^1.0.0" + }, + "engines": { + "node": ">=8" } }, - "strip-json-comments": { + "node_modules/strip-json-comments": { "version": "3.1.1", - "resolved": "https://registry.npmjs.org/strip-json-comments/-/strip-json-comments-3.1.1.tgz", - "integrity": "sha512-6fPc+R4ihwqP6N/aIv2f1gMH8lOVtWQHoqC4yK6oSDVVocumAsfCqjkXnqiYMhmMwS/mEHLp7Vehlt3ql6lEig==" + "license": "MIT", + "engines": { + "node": ">=8" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } }, - "strtok3": { + "node_modules/strtok3": { "version": "6.3.0", - "resolved": "https://registry.npmjs.org/strtok3/-/strtok3-6.3.0.tgz", - "integrity": "sha512-fZtbhtvI9I48xDSywd/somNqgUHl2L2cstmXCCif0itOf96jeW18MBSyrLuNicYQVkvpOxkZtkzujiTJ9LW5Jw==", - "requires": { + "license": "MIT", + "dependencies": { "@tokenizer/token": "^0.3.0", "peek-readable": "^4.1.0" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "type": "github", + "url": "https://github.com/sponsors/Borewit" } }, - "style-loader": { - "version": "3.3.1", - "resolved": "https://registry.npmjs.org/style-loader/-/style-loader-3.3.1.tgz", - "integrity": "sha512-GPcQ+LDJbrcxHORTRes6Jy2sfvK2kS6hpSfI/fXhPt+spVzxF6LJ1dHLN9zIGmVaaP044YKaIatFaufENRiDoQ==", - "requires": {} - }, - "styled-components": { - "version": "5.3.10", - "resolved": "https://registry.npmjs.org/styled-components/-/styled-components-5.3.10.tgz", - "integrity": "sha512-3kSzSBN0TiCnGJM04UwO1HklIQQSXW7rCARUk+VyMR7clz8XVlA3jijtf5ypqoDIdNMKx3la4VvaPFR855SFcg==", - "requires": { - "@babel/helper-module-imports": "^7.0.0", - "@babel/traverse": "^7.4.5", - "@emotion/is-prop-valid": "^1.1.0", - "@emotion/stylis": "^0.8.4", - "@emotion/unitless": "^0.7.4", - "babel-plugin-styled-components": ">= 1.12.0", - "css-to-react-native": "^3.0.0", - "hoist-non-react-statics": "^3.0.0", + "node_modules/style-loader": { + "version": "3.3.3", + "license": "MIT", + "engines": { + "node": ">= 12.13.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/webpack" + }, + "peerDependencies": { + "webpack": "^5.0.0" + } + }, + "node_modules/styled-components": { + "version": "6.0.7", + "license": "MIT", + "dependencies": { + "@babel/cli": "^7.21.0", + "@babel/core": "^7.21.0", + "@babel/helper-module-imports": "^7.18.6", + "@babel/plugin-external-helpers": "^7.18.6", + "@babel/plugin-proposal-class-properties": "^7.18.6", + "@babel/plugin-proposal-object-rest-spread": "^7.20.7", + "@babel/preset-env": "^7.20.2", + "@babel/preset-react": "^7.18.6", + "@babel/preset-typescript": "^7.21.0", + "@babel/traverse": "^7.21.2", + "@emotion/is-prop-valid": "^1.2.1", + "@emotion/unitless": "^0.8.0", + "@types/stylis": "^4.0.2", + "css-to-react-native": "^3.2.0", + "csstype": "^3.1.2", + "postcss": "^8.4.23", "shallowequal": "^1.1.0", - "supports-color": "^5.5.0" + "stylis": "^4.3.0", + "tslib": "^2.5.0" + }, + "engines": { + "node": ">= 16" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/styled-components" + }, + "peerDependencies": { + "babel-plugin-styled-components": ">= 2", + "react": ">= 16.8.0", + "react-dom": ">= 16.8.0" + }, + "peerDependenciesMeta": { + "babel-plugin-styled-components": { + "optional": true + } } }, - "styled-system": { + "node_modules/styled-components/node_modules/stylis": { + "version": "4.3.0", + "license": "MIT" + }, + "node_modules/styled-system": { "version": "5.1.5", - "resolved": "https://registry.npmjs.org/styled-system/-/styled-system-5.1.5.tgz", - "integrity": "sha512-7VoD0o2R3RKzOzPK0jYrVnS8iJdfkKsQJNiLRDjikOpQVqQHns/DXWaPZOH4tIKkhAT7I6wIsy9FWTWh2X3q+A==", - "requires": { + "license": "MIT", + "dependencies": { "@styled-system/background": "^5.1.2", "@styled-system/border": "^5.1.5", "@styled-system/color": "^5.1.2", @@ -42013,67 +19348,115 @@ "object-assign": "^4.1.1" } }, - "stylehacks": { - "version": "5.1.0", - "resolved": "https://registry.npmjs.org/stylehacks/-/stylehacks-5.1.0.tgz", - "integrity": "sha512-SzLmvHQTrIWfSgljkQCw2++C9+Ne91d/6Sp92I8c5uHTcy/PgeHamwITIbBW9wnFTY/3ZfSXR9HIL6Ikqmcu6Q==", - "requires": { - "browserslist": "^4.16.6", - "postcss-selector-parser": "^6.0.4" + "node_modules/stylehacks": { + "version": "5.1.1", + "license": "MIT", + "dependencies": { + "browserslist": "^4.21.4", + "postcss-selector-parser": "^6.0.4" + }, + "engines": { + "node": "^10 || ^12 || >=14.0" + }, + "peerDependencies": { + "postcss": "^8.2.15" + } + }, + "node_modules/stylis": { + "version": "4.2.0", + "license": "MIT" + }, + "node_modules/sucrase": { + "version": "3.34.0", + "license": "MIT", + "dependencies": { + "@jridgewell/gen-mapping": "^0.3.2", + "commander": "^4.0.0", + "glob": "7.1.6", + "lines-and-columns": "^1.1.6", + "mz": "^2.7.0", + "pirates": "^4.0.1", + "ts-interface-checker": "^0.1.9" + }, + "bin": { + "sucrase": "bin/sucrase", + "sucrase-node": "bin/sucrase-node" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/sucrase/node_modules/commander": { + "version": "4.1.1", + "license": "MIT", + "engines": { + "node": ">= 6" } }, - "stylis": { - "version": "4.0.13", - "resolved": "https://registry.npmjs.org/stylis/-/stylis-4.0.13.tgz", - "integrity": "sha512-xGPXiFVl4YED9Jh7Euv2V220mriG9u4B2TA6Ybjc1catrstKD2PpIdU3U0RKpkVBC2EhmL/F0sPCr9vrFTNRag==" + "node_modules/sucrase/node_modules/glob": { + "version": "7.1.6", + "license": "ISC", + "dependencies": { + "fs.realpath": "^1.0.0", + "inflight": "^1.0.4", + "inherits": "2", + "minimatch": "^3.0.4", + "once": "^1.3.0", + "path-is-absolute": "^1.0.0" + }, + "engines": { + "node": "*" + }, + "funding": { + "url": "https://github.com/sponsors/isaacs" + } }, - "supports-color": { - "version": "5.5.0", - "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-5.5.0.tgz", - "integrity": "sha512-QjVjwdXIt408MIiAqCX4oUKsgU2EqAGzs2Ppkm4aQYbjm+ZEWEcW4SfFNTr4uMNZma0ey4f5lgLrkB0aX0QMow==", - "requires": { - "has-flag": "^3.0.0" + "node_modules/supports-color": { + "version": "7.2.0", + "license": "MIT", + "dependencies": { + "has-flag": "^4.0.0" + }, + "engines": { + "node": ">=8" } }, - "supports-hyperlinks": { - "version": "2.2.0", - "resolved": "https://registry.npmjs.org/supports-hyperlinks/-/supports-hyperlinks-2.2.0.tgz", - "integrity": "sha512-6sXEzV5+I5j8Bmq9/vUphGRM/RJNT9SCURJLjwfOg51heRtguGWDzcaBlgAzKhQa0EVNpPEKzQuBwZ8S8WaCeQ==", - "requires": { + "node_modules/supports-hyperlinks": { + "version": "2.3.0", + "license": "MIT", + "dependencies": { "has-flag": "^4.0.0", "supports-color": "^7.0.0" }, - "dependencies": { - "has-flag": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz", - "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==" - }, - "supports-color": { - "version": "7.2.0", - "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", - "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", - "requires": { - "has-flag": "^4.0.0" - } - } + "engines": { + "node": ">=8" } }, - "supports-preserve-symlinks-flag": { + "node_modules/supports-preserve-symlinks-flag": { "version": "1.0.0", - "resolved": "https://registry.npmjs.org/supports-preserve-symlinks-flag/-/supports-preserve-symlinks-flag-1.0.0.tgz", - "integrity": "sha512-ot0WnXS9fgdkgIcePe6RHNk1WA8+muPa6cSjeR3V8K27q9BB1rTE3R1p7Hv0z1ZyAc8s6Vvv8DIyWf681MAt0w==" + "license": "MIT", + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/svelte-forms": { + "version": "2.3.1", + "license": "MIT", + "dependencies": { + "is-promise": "^4.0.0" + } }, - "svg-parser": { + "node_modules/svg-parser": { "version": "2.0.4", - "resolved": "https://registry.npmjs.org/svg-parser/-/svg-parser-2.0.4.tgz", - "integrity": "sha512-e4hG1hRwoOdRb37cIMSgzNsxyzKfayW6VOflrwvR+/bzrkyxY/31WkbgnQpgtrNp1SdpJvpUAGTa/ZoiPNDuRQ==" + "license": "MIT" }, - "svgo": { + "node_modules/svgo": { "version": "1.3.2", - "resolved": "https://registry.npmjs.org/svgo/-/svgo-1.3.2.tgz", - "integrity": "sha512-yhy/sQYxR5BkC98CY7o31VGsg014AKLEPxdfhora76l36hD9Rdy5NZA/Ocn6yayNPgSamYdtX2rFJdcv07AYVw==", - "requires": { + "license": "MIT", + "dependencies": { "chalk": "^2.4.1", "coa": "^2.0.2", "css-select": "^2.0.0", @@ -42088,63 +19471,121 @@ "unquote": "~1.1.1", "util.promisify": "~1.0.0" }, + "bin": { + "svgo": "bin/svgo" + }, + "engines": { + "node": ">=4.0.0" + } + }, + "node_modules/svgo/node_modules/ansi-styles": { + "version": "3.2.1", + "license": "MIT", "dependencies": { - "css-select": { - "version": "2.1.0", - "resolved": "https://registry.npmjs.org/css-select/-/css-select-2.1.0.tgz", - "integrity": "sha512-Dqk7LQKpwLoH3VovzZnkzegqNSuAziQyNZUcrdDM401iY+R5NkGBXGmtO05/yaXQziALuPogeG0b7UAgjnTJTQ==", - "requires": { - "boolbase": "^1.0.0", - "css-what": "^3.2.1", - "domutils": "^1.7.0", - "nth-check": "^1.0.2" - } - }, - "css-what": { - "version": "3.4.2", - "resolved": "https://registry.npmjs.org/css-what/-/css-what-3.4.2.tgz", - "integrity": "sha512-ACUm3L0/jiZTqfzRM3Hi9Q8eZqd6IK37mMWPLz9PJxkLWllYeRf+EHUSHYEtFop2Eqytaq1FizFVh7XfBnXCDQ==" - }, - "dom-serializer": { - "version": "0.2.2", - "resolved": "https://registry.npmjs.org/dom-serializer/-/dom-serializer-0.2.2.tgz", - "integrity": "sha512-2/xPb3ORsQ42nHYiSunXkDjPLBaEj/xTwUO4B7XCZQTRk7EBtTOPaygh10YAAh2OI1Qrp6NWfpAhzswj0ydt9g==", - "requires": { - "domelementtype": "^2.0.1", - "entities": "^2.0.0" - } - }, - "domutils": { - "version": "1.7.0", - "resolved": "https://registry.npmjs.org/domutils/-/domutils-1.7.0.tgz", - "integrity": "sha512-Lgd2XcJ/NjEw+7tFvfKxOzCYKZsdct5lczQ2ZaQY8Djz7pfAD3Gbp8ySJWtreII/vDlMVmxwa6pHmdxIYgttDg==", - "requires": { - "dom-serializer": "0", - "domelementtype": "1" - }, - "dependencies": { - "domelementtype": { - "version": "1.3.1", - "resolved": "https://registry.npmjs.org/domelementtype/-/domelementtype-1.3.1.tgz", - "integrity": "sha512-BSKB+TSpMpFI/HOxCNr1O8aMOTZ8hT3pM3GQ0w/mWRmkhEDSFJkkyzz4XQsBV44BChwGkrDfMyjVD0eA2aFV3w==" - } - } - }, - "nth-check": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/nth-check/-/nth-check-1.0.2.tgz", - "integrity": "sha512-WeBOdju8SnzPN5vTUJYxYUxLeXpCaVP5i5e0LF8fg7WORF2Wd7wFX/pk0tYZk7s8T+J7VLy0Da6J1+wCT0AtHg==", - "requires": { - "boolbase": "~1.0.0" - } - } + "color-convert": "^1.9.0" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/svgo/node_modules/chalk": { + "version": "2.4.2", + "license": "MIT", + "dependencies": { + "ansi-styles": "^3.2.1", + "escape-string-regexp": "^1.0.5", + "supports-color": "^5.3.0" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/svgo/node_modules/color-convert": { + "version": "1.9.3", + "license": "MIT", + "dependencies": { + "color-name": "1.1.3" + } + }, + "node_modules/svgo/node_modules/color-name": { + "version": "1.1.3", + "license": "MIT" + }, + "node_modules/svgo/node_modules/css-select": { + "version": "2.1.0", + "license": "BSD-2-Clause", + "dependencies": { + "boolbase": "^1.0.0", + "css-what": "^3.2.1", + "domutils": "^1.7.0", + "nth-check": "^1.0.2" + } + }, + "node_modules/svgo/node_modules/css-what": { + "version": "3.4.2", + "license": "BSD-2-Clause", + "engines": { + "node": ">= 6" + }, + "funding": { + "url": "https://github.com/sponsors/fb55" + } + }, + "node_modules/svgo/node_modules/dom-serializer": { + "version": "0.2.2", + "license": "MIT", + "dependencies": { + "domelementtype": "^2.0.1", + "entities": "^2.0.0" + } + }, + "node_modules/svgo/node_modules/domutils": { + "version": "1.7.0", + "license": "BSD-2-Clause", + "dependencies": { + "dom-serializer": "0", + "domelementtype": "1" + } + }, + "node_modules/svgo/node_modules/domutils/node_modules/domelementtype": { + "version": "1.3.1", + "license": "BSD-2-Clause" + }, + "node_modules/svgo/node_modules/escape-string-regexp": { + "version": "1.0.5", + "license": "MIT", + "engines": { + "node": ">=0.8.0" + } + }, + "node_modules/svgo/node_modules/has-flag": { + "version": "3.0.0", + "license": "MIT", + "engines": { + "node": ">=4" + } + }, + "node_modules/svgo/node_modules/nth-check": { + "version": "1.0.2", + "license": "BSD-2-Clause", + "dependencies": { + "boolbase": "~1.0.0" + } + }, + "node_modules/svgo/node_modules/supports-color": { + "version": "5.5.0", + "license": "MIT", + "dependencies": { + "has-flag": "^3.0.0" + }, + "engines": { + "node": ">=4" } }, - "swarm-js": { + "node_modules/swarm-js": { "version": "0.1.42", - "resolved": "https://registry.npmjs.org/swarm-js/-/swarm-js-0.1.42.tgz", - "integrity": "sha512-BV7c/dVlA3R6ya1lMlSSNPLYrntt0LUq4YMgy3iwpCIc6rZnS5W2wUoctarZ5pXlpKtxDDf9hNziEkcfrxdhqQ==", - "requires": { + "license": "MIT", + "dependencies": { "bluebird": "^3.5.0", "buffer": "^5.0.5", "eth-lib": "^0.1.26", @@ -42156,169 +19597,198 @@ "setimmediate": "^1.0.5", "tar": "^4.0.2", "xhr-request": "^1.0.1" - }, + } + }, + "node_modules/swarm-js/node_modules/@szmarczak/http-timer": { + "version": "4.0.6", + "license": "MIT", "dependencies": { - "@szmarczak/http-timer": { - "version": "4.0.6", - "resolved": "https://registry.npmjs.org/@szmarczak/http-timer/-/http-timer-4.0.6.tgz", - "integrity": "sha512-4BAffykYOgO+5nzBWYwE3W90sBgLJoUPRWWcL8wlyiM8IB8ipJz3UMJ9KXQd1RKQXpKp8Tutn80HZtWsu2u76w==", - "requires": { - "defer-to-connect": "^2.0.0" - } - }, - "buffer": { - "version": "5.7.1", - "resolved": "https://registry.npmjs.org/buffer/-/buffer-5.7.1.tgz", - "integrity": "sha512-EHcyIPBQ4BSGlvjB16k5KgAJ27CIsHY/2JBmCRReo48y9rQ3MaUzWX3KVlBa4U7MyX02HdVj0K7C3WaB3ju7FQ==", - "requires": { - "base64-js": "^1.3.1", - "ieee754": "^1.1.13" - } - }, - "cacheable-lookup": { - "version": "5.0.4", - "resolved": "https://registry.npmjs.org/cacheable-lookup/-/cacheable-lookup-5.0.4.tgz", - "integrity": "sha512-2/kNscPhpcxrOigMZzbiWF7dz8ilhb/nIHU3EyZiXWXpeq/au8qJ8VhdftMkty3n7Gj6HIGalQG8oiBNB3AJgA==" - }, - "fs-extra": { - "version": "4.0.3", - "resolved": "https://registry.npmjs.org/fs-extra/-/fs-extra-4.0.3.tgz", - "integrity": "sha512-q6rbdDd1o2mAnQreO7YADIxf/Whx4AHBiRf6d+/cVT8h44ss+lHgxf1FemcqDnQt9X3ct4McHr+JMGlYSsK7Cg==", - "requires": { - "graceful-fs": "^4.1.2", - "jsonfile": "^4.0.0", - "universalify": "^0.1.0" - } - }, - "got": { - "version": "11.8.6", - "resolved": "https://registry.npmjs.org/got/-/got-11.8.6.tgz", - "integrity": "sha512-6tfZ91bOr7bOXnK7PRDCGBLa1H4U080YHNaAQ2KsMGlLEzRbk44nsZF2E1IeRc3vtJHPVbKCYgdFbaGO2ljd8g==", - "requires": { - "@sindresorhus/is": "^4.0.0", - "@szmarczak/http-timer": "^4.0.5", - "@types/cacheable-request": "^6.0.1", - "@types/responselike": "^1.0.0", - "cacheable-lookup": "^5.0.3", - "cacheable-request": "^7.0.2", - "decompress-response": "^6.0.0", - "http2-wrapper": "^1.0.0-beta.5.2", - "lowercase-keys": "^2.0.0", - "p-cancelable": "^2.0.0", - "responselike": "^2.0.0" - } - }, - "http2-wrapper": { - "version": "1.0.3", - "resolved": "https://registry.npmjs.org/http2-wrapper/-/http2-wrapper-1.0.3.tgz", - "integrity": "sha512-V+23sDMr12Wnz7iTcDeJr3O6AIxlnvT/bmaAAAP/Xda35C90p9599p0F1eHR/N1KILWSoWVAiOMFjBBXaXSMxg==", - "requires": { - "quick-lru": "^5.1.1", - "resolve-alpn": "^1.0.0" - } - }, - "jsonfile": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/jsonfile/-/jsonfile-4.0.0.tgz", - "integrity": "sha512-m6F1R3z8jjlf2imQHS2Qez5sjKWQzbuuhuJ/FKYFRZvPE3PuHcSMVZzfsLhGVOkfd20obL5SWEBew5ShlquNxg==", - "requires": { - "graceful-fs": "^4.1.6" - } - }, - "lowercase-keys": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/lowercase-keys/-/lowercase-keys-2.0.0.tgz", - "integrity": "sha512-tqNXrS78oMOE73NMxK4EMLQsQowWf8jKooH9g7xPavRT706R6bkQJ6DY2Te7QukaZsulxa30wQ7bk0pm4XiHmA==" + "defer-to-connect": "^2.0.0" + }, + "engines": { + "node": ">=10" + } + }, + "node_modules/swarm-js/node_modules/buffer": { + "version": "5.7.1", + "funding": [ + { + "type": "github", + "url": "https://github.com/sponsors/feross" }, - "p-cancelable": { - "version": "2.1.1", - "resolved": "https://registry.npmjs.org/p-cancelable/-/p-cancelable-2.1.1.tgz", - "integrity": "sha512-BZOr3nRQHOntUjTrH8+Lh54smKHoHyur8We1V8DSMVrl5A2malOOwuJRnKRDjSnkoeBh4at6BwEnb5I7Jl31wg==" + { + "type": "patreon", + "url": "https://www.patreon.com/feross" }, - "universalify": { - "version": "0.1.2", - "resolved": "https://registry.npmjs.org/universalify/-/universalify-0.1.2.tgz", - "integrity": "sha512-rBJeI5CXAlmy1pV+617WB9J63U6XcazHHF2f2dbJix4XzpUF0RS3Zbj0FGIOCAva5P/d/GBOYaACQ1w+0azUkg==" + { + "type": "consulting", + "url": "https://feross.org/support" } + ], + "license": "MIT", + "dependencies": { + "base64-js": "^1.3.1", + "ieee754": "^1.1.13" + } + }, + "node_modules/swarm-js/node_modules/cacheable-lookup": { + "version": "5.0.4", + "license": "MIT", + "engines": { + "node": ">=10.6.0" + } + }, + "node_modules/swarm-js/node_modules/fs-extra": { + "version": "4.0.3", + "license": "MIT", + "dependencies": { + "graceful-fs": "^4.1.2", + "jsonfile": "^4.0.0", + "universalify": "^0.1.0" + } + }, + "node_modules/swarm-js/node_modules/got": { + "version": "11.8.6", + "license": "MIT", + "dependencies": { + "@sindresorhus/is": "^4.0.0", + "@szmarczak/http-timer": "^4.0.5", + "@types/cacheable-request": "^6.0.1", + "@types/responselike": "^1.0.0", + "cacheable-lookup": "^5.0.3", + "cacheable-request": "^7.0.2", + "decompress-response": "^6.0.0", + "http2-wrapper": "^1.0.0-beta.5.2", + "lowercase-keys": "^2.0.0", + "p-cancelable": "^2.0.0", + "responselike": "^2.0.0" + }, + "engines": { + "node": ">=10.19.0" + }, + "funding": { + "url": "https://github.com/sindresorhus/got?sponsor=1" + } + }, + "node_modules/swarm-js/node_modules/http2-wrapper": { + "version": "1.0.3", + "license": "MIT", + "dependencies": { + "quick-lru": "^5.1.1", + "resolve-alpn": "^1.0.0" + }, + "engines": { + "node": ">=10.19.0" + } + }, + "node_modules/swarm-js/node_modules/jsonfile": { + "version": "4.0.0", + "license": "MIT", + "optionalDependencies": { + "graceful-fs": "^4.1.6" + } + }, + "node_modules/swarm-js/node_modules/lowercase-keys": { + "version": "2.0.0", + "license": "MIT", + "engines": { + "node": ">=8" + } + }, + "node_modules/swarm-js/node_modules/p-cancelable": { + "version": "2.1.1", + "license": "MIT", + "engines": { + "node": ">=8" + } + }, + "node_modules/swarm-js/node_modules/universalify": { + "version": "0.1.2", + "license": "MIT", + "engines": { + "node": ">= 4.0.0" } }, - "symbol-tree": { + "node_modules/symbol-tree": { "version": "3.2.4", - "resolved": "https://registry.npmjs.org/symbol-tree/-/symbol-tree-3.2.4.tgz", - "integrity": "sha512-9QNk5KwDF+Bvz+PyObkmSYjI5ksVUYtjW7AU22r2NKcfLJcXp96hkDWU3+XndOsUb+AQ9QhfzfCT2O+CNWT5Tw==" + "license": "MIT" }, - "table-layout": { + "node_modules/table-layout": { "version": "1.0.2", - "resolved": "https://registry.npmjs.org/table-layout/-/table-layout-1.0.2.tgz", - "integrity": "sha512-qd/R7n5rQTRFi+Zf2sk5XVVd9UQl6ZkduPFC3S7WEGJAmetDTjY3qPN50eSKzwuzEyQKy5TN2TiZdkIjos2L6A==", "dev": true, - "requires": { + "license": "MIT", + "dependencies": { "array-back": "^4.0.1", "deep-extend": "~0.6.0", "typical": "^5.2.0", "wordwrapjs": "^4.0.0" }, - "dependencies": { - "array-back": { - "version": "4.0.2", - "resolved": "https://registry.npmjs.org/array-back/-/array-back-4.0.2.tgz", - "integrity": "sha512-NbdMezxqf94cnNfWLL7V/im0Ub+Anbb0IoZhvzie8+4HJ4nMQuzHuy49FkGYCJK2yAloZ3meiB6AVMClbrI1vg==", - "dev": true - }, - "typical": { - "version": "5.2.0", - "resolved": "https://registry.npmjs.org/typical/-/typical-5.2.0.tgz", - "integrity": "sha512-dvdQgNDNJo+8B2uBQoqdb11eUCE1JQXhvjC/CZtgvZseVd5TYMXnq0+vuUemXbd/Se29cTaUuPX3YIc2xgbvIg==", - "dev": true - } + "engines": { + "node": ">=8.0.0" } }, - "tailwindcss": { - "version": "3.1.4", - "resolved": "https://registry.npmjs.org/tailwindcss/-/tailwindcss-3.1.4.tgz", - "integrity": "sha512-NrxbFV4tYsga/hpWbRyUfIaBrNMXDxx5BsHgBS4v5tlyjf+sDsgBg5m9OxjrXIqAS/uR9kicxLKP+bEHI7BSeQ==", - "requires": { + "node_modules/table-layout/node_modules/array-back": { + "version": "4.0.2", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=8" + } + }, + "node_modules/table-layout/node_modules/typical": { + "version": "5.2.0", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=8" + } + }, + "node_modules/tailwindcss": { + "version": "3.3.3", + "license": "MIT", + "dependencies": { + "@alloc/quick-lru": "^5.2.0", "arg": "^5.0.2", "chokidar": "^3.5.3", - "color-name": "^1.1.4", - "detective": "^5.2.1", "didyoumean": "^1.2.2", "dlv": "^1.1.3", - "fast-glob": "^3.2.11", + "fast-glob": "^3.2.12", "glob-parent": "^6.0.2", "is-glob": "^4.0.3", - "lilconfig": "^2.0.5", + "jiti": "^1.18.2", + "lilconfig": "^2.1.0", + "micromatch": "^4.0.5", "normalize-path": "^3.0.0", "object-hash": "^3.0.0", "picocolors": "^1.0.0", - "postcss": "^8.4.14", - "postcss-import": "^14.1.0", - "postcss-js": "^4.0.0", - "postcss-load-config": "^3.1.4", - "postcss-nested": "5.0.6", - "postcss-selector-parser": "^6.0.10", - "postcss-value-parser": "^4.2.0", - "quick-lru": "^5.1.1", - "resolve": "^1.22.0" + "postcss": "^8.4.23", + "postcss-import": "^15.1.0", + "postcss-js": "^4.0.1", + "postcss-load-config": "^4.0.1", + "postcss-nested": "^6.0.1", + "postcss-selector-parser": "^6.0.11", + "resolve": "^1.22.2", + "sucrase": "^3.32.0" }, - "dependencies": { - "color-name": { - "version": "1.1.4", - "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz", - "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==" - } + "bin": { + "tailwind": "lib/cli.js", + "tailwindcss": "lib/cli.js" + }, + "engines": { + "node": ">=14.0.0" } }, - "tapable": { + "node_modules/tapable": { "version": "2.2.1", - "resolved": "https://registry.npmjs.org/tapable/-/tapable-2.2.1.tgz", - "integrity": "sha512-GNzQvQTOIP6RyTfE2Qxb8ZVlNmw0n88vp1szwWRimP02mnTsx3Wtn5qRdqY9w2XduFNUgvOwhNnQsjwCp+kqaQ==" + "license": "MIT", + "engines": { + "node": ">=6" + } }, - "tar": { + "node_modules/tar": { "version": "4.4.19", - "resolved": "https://registry.npmjs.org/tar/-/tar-4.4.19.tgz", - "integrity": "sha512-a20gEsvHnWe0ygBY8JbxoM4w3SJdhc7ZAuxkLqh+nvNQN2IOt0B5lLgM490X5Hl8FF0dl0tOf2ewFYAlIFgzVA==", - "requires": { + "license": "ISC", + "dependencies": { "chownr": "^1.1.4", "fs-minipass": "^1.2.7", "minipass": "^2.9.0", @@ -42327,397 +19797,434 @@ "safe-buffer": "^5.2.1", "yallist": "^3.1.1" }, - "dependencies": { - "safe-buffer": { - "version": "5.2.1", - "resolved": "https://registry.npmjs.org/safe-buffer/-/safe-buffer-5.2.1.tgz", - "integrity": "sha512-rp3So07KcdmmKbGvgaNxQSJr7bGVSVk5S9Eq1F+ppbRo70+YeaDxkw5Dd8NPN+GD6bjnYm2VuPuCXmpuYvmCXQ==" - }, - "yallist": { - "version": "3.1.1", - "resolved": "https://registry.npmjs.org/yallist/-/yallist-3.1.1.tgz", - "integrity": "sha512-a4UGQaWPH59mOXUYnAG2ewncQS4i4F43Tv3JoAM+s2VDAmS9NsK8GpDMLrCHPksFT7h3K6TOoUNn2pb7RoXx4g==" - } + "engines": { + "node": ">=4.5" } }, - "temp-dir": { + "node_modules/temp-dir": { "version": "2.0.0", - "resolved": "https://registry.npmjs.org/temp-dir/-/temp-dir-2.0.0.tgz", - "integrity": "sha512-aoBAniQmmwtcKp/7BzsH8Cxzv8OL736p7v1ihGb5e9DJ9kTwGWHrQrVB5+lfVDzfGrdRzXch+ig7LHaY1JTOrg==" + "license": "MIT", + "engines": { + "node": ">=8" + } }, - "tempy": { + "node_modules/tempy": { "version": "0.6.0", - "resolved": "https://registry.npmjs.org/tempy/-/tempy-0.6.0.tgz", - "integrity": "sha512-G13vtMYPT/J8A4X2SjdtBTphZlrp1gKv6hZiOjw14RCWg6GbHuQBGtjlx75xLbYV/wEc0D7G5K4rxKP/cXk8Bw==", - "requires": { + "license": "MIT", + "dependencies": { "is-stream": "^2.0.0", "temp-dir": "^2.0.0", "type-fest": "^0.16.0", "unique-string": "^2.0.0" }, - "dependencies": { - "type-fest": { - "version": "0.16.0", - "resolved": "https://registry.npmjs.org/type-fest/-/type-fest-0.16.0.tgz", - "integrity": "sha512-eaBzG6MxNzEn9kiwvtre90cXaNLkmadMWa1zQMs3XORCXNbsH/OewwbxC5ia9dCxIxnTAsSxXJaa/p5y8DlvJg==" - } + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/tempy/node_modules/type-fest": { + "version": "0.16.0", + "license": "(MIT OR CC0-1.0)", + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" } }, - "terminal-link": { + "node_modules/terminal-link": { "version": "2.1.1", - "resolved": "https://registry.npmjs.org/terminal-link/-/terminal-link-2.1.1.tgz", - "integrity": "sha512-un0FmiRUQNr5PJqy9kP7c40F5BOfpGlYTrxonDChEZB7pzZxRNp/bt+ymiy9/npwXya9KH99nJ/GXFIiUkYGFQ==", - "requires": { + "license": "MIT", + "dependencies": { "ansi-escapes": "^4.2.1", "supports-hyperlinks": "^2.0.0" + }, + "engines": { + "node": ">=8" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" } }, - "terser": { - "version": "5.17.1", - "resolved": "https://registry.npmjs.org/terser/-/terser-5.17.1.tgz", - "integrity": "sha512-hVl35zClmpisy6oaoKALOpS0rDYLxRFLHhRuDlEGTKey9qHjS1w9GMORjuwIMt70Wan4lwsLYyWDVnWgF+KUEw==", - "requires": { - "@jridgewell/source-map": "^0.3.2", - "acorn": "^8.5.0", + "node_modules/terser": { + "version": "5.19.2", + "license": "BSD-2-Clause", + "dependencies": { + "@jridgewell/source-map": "^0.3.3", + "acorn": "^8.8.2", "commander": "^2.20.0", "source-map-support": "~0.5.20" }, - "dependencies": { - "commander": { - "version": "2.20.3", - "resolved": "https://registry.npmjs.org/commander/-/commander-2.20.3.tgz", - "integrity": "sha512-GpVkmM8vF2vQUkj2LvZmD35JxeJOLCwJ9cUkugyk2nuhbv3+mJvpLYYt+0+USMxE+oj+ey/lJEnhZw75x/OMcQ==" - } + "bin": { + "terser": "bin/terser" + }, + "engines": { + "node": ">=10" } }, - "terser-webpack-plugin": { - "version": "5.3.7", - "resolved": "https://registry.npmjs.org/terser-webpack-plugin/-/terser-webpack-plugin-5.3.7.tgz", - "integrity": "sha512-AfKwIktyP7Cu50xNjXF/6Qb5lBNzYaWpU6YfoX3uZicTx0zTy0stDDCsvjDapKsSDvOeWo5MEq4TmdBy2cNoHw==", - "requires": { + "node_modules/terser-webpack-plugin": { + "version": "5.3.9", + "license": "MIT", + "dependencies": { "@jridgewell/trace-mapping": "^0.3.17", "jest-worker": "^27.4.5", "schema-utils": "^3.1.1", "serialize-javascript": "^6.0.1", - "terser": "^5.16.5" + "terser": "^5.16.8" + }, + "engines": { + "node": ">= 10.13.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/webpack" + }, + "peerDependencies": { + "webpack": "^5.1.0" + }, + "peerDependenciesMeta": { + "@swc/core": { + "optional": true + }, + "esbuild": { + "optional": true + }, + "uglify-js": { + "optional": true + } } }, - "test-exclude": { + "node_modules/terser/node_modules/commander": { + "version": "2.20.3", + "license": "MIT" + }, + "node_modules/test-exclude": { "version": "6.0.0", - "resolved": "https://registry.npmjs.org/test-exclude/-/test-exclude-6.0.0.tgz", - "integrity": "sha512-cAGWPIyOHU6zlmg88jwm7VRyXnMN7iV68OGAbYDk/Mh/xC/pzVPlQtY6ngoIH/5/tciuhGfvESU8GrHrcxD56w==", - "requires": { + "license": "ISC", + "dependencies": { "@istanbuljs/schema": "^0.1.2", "glob": "^7.1.4", "minimatch": "^3.0.4" + }, + "engines": { + "node": ">=8" } }, - "text-table": { + "node_modules/text-table": { "version": "0.2.0", - "resolved": "https://registry.npmjs.org/text-table/-/text-table-0.2.0.tgz", - "integrity": "sha512-N+8UisAXDGk8PFXP4HAzVR9nbfmVJ3zYLAWiTIoqC5v5isinhr+r5uaO8+7r3BMfuNIufIsA7RdpVgacC2cSpw==" + "license": "MIT" }, - "throat": { - "version": "6.0.1", - "resolved": "https://registry.npmjs.org/throat/-/throat-6.0.1.tgz", - "integrity": "sha512-8hmiGIJMDlwjg7dlJ4yKGLK8EsYqKgPWbG3b4wjJddKNwc7N7Dpn08Df4szr/sZdMVeOstrdYSsqzX6BYbcB+w==" + "node_modules/thenify": { + "version": "3.3.1", + "license": "MIT", + "dependencies": { + "any-promise": "^1.0.0" + } + }, + "node_modules/thenify-all": { + "version": "1.6.0", + "license": "MIT", + "dependencies": { + "thenify": ">= 3.1.0 < 4" + }, + "engines": { + "node": ">=0.8" + } }, - "thunky": { + "node_modules/throat": { + "version": "6.0.2", + "license": "MIT" + }, + "node_modules/thunky": { "version": "1.1.0", - "resolved": "https://registry.npmjs.org/thunky/-/thunky-1.1.0.tgz", - "integrity": "sha512-eHY7nBftgThBqOyHGVN+l8gF0BucP09fMo0oO/Lb0w1OF80dJv+lDVpXG60WMQvkcxAkNybKsrEIE3ZtKGmPrA==" + "license": "MIT" }, - "timed-out": { + "node_modules/timed-out": { "version": "4.0.1", - "resolved": "https://registry.npmjs.org/timed-out/-/timed-out-4.0.1.tgz", - "integrity": "sha512-G7r3AhovYtr5YKOWQkta8RKAPb+J9IsO4uVmzjl8AZwfhs8UcUwTiD6gcJYSgOtzyjvQKrKYn41syHbUWMkafA==" + "license": "MIT", + "engines": { + "node": ">=0.10.0" + } }, - "timm": { + "node_modules/timm": { "version": "1.7.1", - "resolved": "https://registry.npmjs.org/timm/-/timm-1.7.1.tgz", - "integrity": "sha512-IjZc9KIotudix8bMaBW6QvMuq64BrJWFs1+4V0lXwWGQZwH+LnX87doAYhem4caOEusRP9/g6jVDQmZ8XOk1nw==" + "license": "MIT" }, - "tiny-invariant": { + "node_modules/tiny-invariant": { "version": "1.3.1", - "resolved": "https://registry.npmjs.org/tiny-invariant/-/tiny-invariant-1.3.1.tgz", - "integrity": "sha512-AD5ih2NlSssTCwsMznbvwMZpJ1cbhkGd2uueNxzv2jDlEeZdU04JQfRnggJQ8DrcVBGjAsCKwFBbDlVNtEMlzw==" + "license": "MIT" }, - "tiny-warning": { + "node_modules/tiny-warning": { "version": "1.0.3", - "resolved": "https://registry.npmjs.org/tiny-warning/-/tiny-warning-1.0.3.tgz", - "integrity": "sha512-lBN9zLN/oAf68o3zNXYrdCt1kP8WsiGW8Oo2ka41b2IM5JL/S1CTyX1rW0mb/zSuJun0ZUrDxx4sqvYS2FWzPA==" + "license": "MIT" }, - "tinycolor2": { + "node_modules/tinycolor2": { "version": "1.6.0", - "resolved": "https://registry.npmjs.org/tinycolor2/-/tinycolor2-1.6.0.tgz", - "integrity": "sha512-XPaBkWQJdsf3pLKJV9p4qN/S+fm2Oj8AIPo1BTUhg5oxkvm9+SVEGFdhyOz7tTdUTfvxMiAs4sp6/eZO2Ew+pw==" + "license": "MIT" }, - "tmp": { + "node_modules/tmp": { "version": "0.0.33", - "resolved": "https://registry.npmjs.org/tmp/-/tmp-0.0.33.tgz", - "integrity": "sha512-jRCJlojKnZ3addtTOjdIqoRuPEKBvNXcGYqzO6zWZX8KfKEpnGY5jfggJQ3EjKuu8D4bJRr0y+cYJFmYbImXGw==", + "license": "MIT", "peer": true, - "requires": { + "dependencies": { "os-tmpdir": "~1.0.2" + }, + "engines": { + "node": ">=0.6.0" } }, - "tmpl": { + "node_modules/tmpl": { "version": "1.0.5", - "resolved": "https://registry.npmjs.org/tmpl/-/tmpl-1.0.5.tgz", - "integrity": "sha512-3f0uOEAQwIqGuWW2MVzYg8fV/QNnc/IpuJNG837rLuczAaLVHslWHZQj4IGiEl5Hs3kkbhwL9Ab7Hrsmuj+Smw==" + "license": "BSD-3-Clause" }, - "to-fast-properties": { + "node_modules/to-fast-properties": { "version": "2.0.0", - "resolved": "https://registry.npmjs.org/to-fast-properties/-/to-fast-properties-2.0.0.tgz", - "integrity": "sha512-/OaKK0xYrs3DmxRYqL/yDc+FxFUVYhDlXMhRmv3z915w2HF1tnN1omB354j8VUGO/hbRzyD6Y3sA7v7GS/ceog==" + "license": "MIT", + "engines": { + "node": ">=4" + } }, - "to-regex-range": { + "node_modules/to-regex-range": { "version": "5.0.1", - "resolved": "https://registry.npmjs.org/to-regex-range/-/to-regex-range-5.0.1.tgz", - "integrity": "sha512-65P7iz6X5yEr1cwcgvQxbbIw7Uk3gOy5dIdtZ4rDveLqhrdJP+Li/Hx6tyK0NEb+2GCyneCMJiGqrADCSNk8sQ==", - "requires": { + "license": "MIT", + "dependencies": { "is-number": "^7.0.0" + }, + "engines": { + "node": ">=8.0" } }, - "toformat": { + "node_modules/toformat": { "version": "2.0.0", - "resolved": "https://registry.npmjs.org/toformat/-/toformat-2.0.0.tgz", - "integrity": "sha512-03SWBVop6nU8bpyZCx7SodpYznbZF5R4ljwNLBcTQzKOD9xuihRo/psX58llS1BMFhhAI08H3luot5GoXJz2pQ==" + "license": "MIT" }, - "toidentifier": { + "node_modules/toidentifier": { "version": "1.0.1", - "resolved": "https://registry.npmjs.org/toidentifier/-/toidentifier-1.0.1.tgz", - "integrity": "sha512-o5sSPKEkg/DIQNmH43V0/uerLrpzVedkUh8tGNvaeXpfpuwjKenlSox/2O/BTlZUtEe+JG7s5YhEz608PlAHRA==" + "license": "MIT", + "engines": { + "node": ">=0.6" + } }, - "token-types": { + "node_modules/token-types": { "version": "4.2.1", - "resolved": "https://registry.npmjs.org/token-types/-/token-types-4.2.1.tgz", - "integrity": "sha512-6udB24Q737UD/SDsKAHI9FCRP7Bqc9D/MQUV02ORQg5iskjtLJlZJNdN4kKtcdtwCeWIwIHDGaUsTsCCAa8sFQ==", - "requires": { + "license": "MIT", + "dependencies": { "@tokenizer/token": "^0.3.0", "ieee754": "^1.2.1" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "type": "github", + "url": "https://github.com/sponsors/Borewit" } }, - "tough-cookie": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/tough-cookie/-/tough-cookie-4.0.0.tgz", - "integrity": "sha512-tHdtEpQCMrc1YLrMaqXXcj6AxhYi/xgit6mZu1+EDWUn+qhUf8wMQoFIy9NXuq23zAwtcB0t/MjACGR18pcRbg==", - "requires": { + "node_modules/tough-cookie": { + "version": "4.1.3", + "license": "BSD-3-Clause", + "dependencies": { "psl": "^1.1.33", "punycode": "^2.1.1", - "universalify": "^0.1.2" + "universalify": "^0.2.0", + "url-parse": "^1.5.3" }, - "dependencies": { - "universalify": { - "version": "0.1.2", - "resolved": "https://registry.npmjs.org/universalify/-/universalify-0.1.2.tgz", - "integrity": "sha512-rBJeI5CXAlmy1pV+617WB9J63U6XcazHHF2f2dbJix4XzpUF0RS3Zbj0FGIOCAva5P/d/GBOYaACQ1w+0azUkg==" - } + "engines": { + "node": ">=6" + } + }, + "node_modules/tough-cookie/node_modules/universalify": { + "version": "0.2.0", + "license": "MIT", + "engines": { + "node": ">= 4.0.0" } }, - "tr46": { + "node_modules/tr46": { "version": "2.1.0", - "resolved": "https://registry.npmjs.org/tr46/-/tr46-2.1.0.tgz", - "integrity": "sha512-15Ih7phfcdP5YxqiB+iDtLoaTz4Nd35+IiAv0kQ5FNKHzXgdWqPoTIqEDDJmXceQt4JZk6lVPT8lnDlPpGDppw==", - "requires": { + "license": "MIT", + "dependencies": { "punycode": "^2.1.1" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/trpc-browser": { + "version": "1.3.2", + "license": "MIT", + "workspaces": [ + ".", + "examples/with-plasmo" + ], + "peerDependencies": { + "@trpc/client": "^10.0.0", + "@trpc/server": "^10.0.0" } }, - "tryer": { + "node_modules/tryer": { "version": "1.0.1", - "resolved": "https://registry.npmjs.org/tryer/-/tryer-1.0.1.tgz", - "integrity": "sha512-c3zayb8/kWWpycWYg87P71E1S1ZL6b6IJxfb5fvsUgsf0S2MVGaDhDXXjDMpdCpfWXqptc+4mXwmiy1ypXqRAA==" + "license": "MIT" }, - "ts-command-line-args": { - "version": "2.3.1", - "resolved": "https://registry.npmjs.org/ts-command-line-args/-/ts-command-line-args-2.3.1.tgz", - "integrity": "sha512-FR3y7pLl/fuUNSmnPhfLArGqRrpojQgIEEOVzYx9DhTmfIN7C9RWSfpkJEF4J+Gk7aVx5pak8I7vWZsaN4N84g==", + "node_modules/ts-command-line-args": { + "version": "2.5.1", "dev": true, - "requires": { + "license": "ISC", + "dependencies": { "chalk": "^4.1.0", "command-line-args": "^5.1.1", "command-line-usage": "^6.1.0", "string-format": "^2.0.0" }, - "dependencies": { - "ansi-styles": { - "version": "4.3.0", - "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", - "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", - "dev": true, - "requires": { - "color-convert": "^2.0.1" - } - }, - "chalk": { - "version": "4.1.2", - "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz", - "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==", - "dev": true, - "requires": { - "ansi-styles": "^4.1.0", - "supports-color": "^7.1.0" - } - }, - "color-convert": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz", - "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==", - "dev": true, - "requires": { - "color-name": "~1.1.4" - } - }, - "color-name": { - "version": "1.1.4", - "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz", - "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==", - "dev": true - }, - "has-flag": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz", - "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==", - "dev": true - }, - "supports-color": { - "version": "7.2.0", - "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", - "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", - "dev": true, - "requires": { - "has-flag": "^4.0.0" - } - } + "bin": { + "write-markdown": "dist/write-markdown.js" } }, - "ts-custom-error": { + "node_modules/ts-custom-error": { "version": "3.3.1", - "resolved": "https://registry.npmjs.org/ts-custom-error/-/ts-custom-error-3.3.1.tgz", - "integrity": "sha512-5OX1tzOjxWEgsr/YEUWSuPrQ00deKLh6D7OTWcvNHm12/7QPyRh8SYpyWvA4IZv8H/+GQWQEh/kwo95Q9OVW1A==" + "license": "MIT", + "engines": { + "node": ">=14.0.0" + } }, - "ts-essentials": { + "node_modules/ts-essentials": { "version": "7.0.3", - "resolved": "https://registry.npmjs.org/ts-essentials/-/ts-essentials-7.0.3.tgz", - "integrity": "sha512-8+gr5+lqO3G84KdiTSMRLtuyJ+nTBVRKuCrK4lidMPdVeEp0uqC875uE5NMcaA7YYMN7XsNiFQuMvasF8HT/xQ==", "dev": true, - "requires": {} + "license": "MIT", + "peerDependencies": { + "typescript": ">=3.7.0" + } }, - "ts-toolbelt": { + "node_modules/ts-interface-checker": { + "version": "0.1.13", + "license": "Apache-2.0" + }, + "node_modules/ts-toolbelt": { "version": "9.6.0", - "resolved": "https://registry.npmjs.org/ts-toolbelt/-/ts-toolbelt-9.6.0.tgz", - "integrity": "sha512-nsZd8ZeNUzukXPlJmTBwUAuABDe/9qtVDelJeT/qW0ow3ZS3BsQJtNkan1802aM9Uf68/Y8ljw86Hu0h5IUW3w==" + "license": "Apache-2.0" }, - "tsconfig-paths": { - "version": "3.14.1", - "resolved": "https://registry.npmjs.org/tsconfig-paths/-/tsconfig-paths-3.14.1.tgz", - "integrity": "sha512-fxDhWnFSLt3VuTwtvJt5fpwxBHg5AdKWMsgcPOOIilyjymcYVZoCQF8fvFRezCNfblEXmi+PcM1eYHeOAgXCOQ==", - "requires": { + "node_modules/tsconfig-paths": { + "version": "3.14.2", + "license": "MIT", + "dependencies": { "@types/json5": "^0.0.29", - "json5": "^1.0.1", + "json5": "^1.0.2", "minimist": "^1.2.6", "strip-bom": "^3.0.0" - }, + } + }, + "node_modules/tsconfig-paths/node_modules/json5": { + "version": "1.0.2", + "license": "MIT", "dependencies": { - "json5": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/json5/-/json5-1.0.2.tgz", - "integrity": "sha512-g1MWMLBiz8FKi1e4w0UyVL3w+iJceWAFBAaBnnGKOpNa5f8TLktkbre1+s6oICydWAm+HRUGTmI+//xv2hvXYA==", - "requires": { - "minimist": "^1.2.0" - } - }, - "strip-bom": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/strip-bom/-/strip-bom-3.0.0.tgz", - "integrity": "sha512-vavAMRXOgBVNF6nyEEmL3DBK19iRpDcoIwW+swQ+CbGiu7lju6t+JklA1MHweoWtadgt4ISVUsXLyDq34ddcwA==" - } + "minimist": "^1.2.0" + }, + "bin": { + "json5": "lib/cli.js" } }, - "tslib": { - "version": "2.4.0", - "resolved": "https://registry.npmjs.org/tslib/-/tslib-2.4.0.tgz", - "integrity": "sha512-d6xOpEDfsi2CZVlPQzGeux8XMwLT9hssAsaPYExaQMuYskwb+x1x7J371tWlbBdWHroy99KnVB6qIkUbs5X3UQ==" + "node_modules/tsconfig-paths/node_modules/strip-bom": { + "version": "3.0.0", + "license": "MIT", + "engines": { + "node": ">=4" + } + }, + "node_modules/tslib": { + "version": "2.6.2", + "license": "0BSD" }, - "tsort": { + "node_modules/tsort": { "version": "0.0.1", - "resolved": "https://registry.npmjs.org/tsort/-/tsort-0.0.1.tgz", - "integrity": "sha512-Tyrf5mxF8Ofs1tNoxA13lFeZ2Zrbd6cKbuH3V+MQ5sb6DtBj5FjrXVsRWT8YvNAQTqNoz66dz1WsbigI22aEnw==", + "license": "MIT", "peer": true }, - "tsutils": { + "node_modules/tsutils": { "version": "3.21.0", - "resolved": "https://registry.npmjs.org/tsutils/-/tsutils-3.21.0.tgz", - "integrity": "sha512-mHKK3iUXL+3UF6xL5k0PEhKRUBKPBCv/+RkEOpjRWxxx27KKRBmmA60A9pgOUvMi8GKhRMPEmjBRPzs2W7O1OA==", - "requires": { + "license": "MIT", + "dependencies": { "tslib": "^1.8.1" }, - "dependencies": { - "tslib": { - "version": "1.14.1", - "resolved": "https://registry.npmjs.org/tslib/-/tslib-1.14.1.tgz", - "integrity": "sha512-Xni35NKzjgMrwevysHTCArtLDpPvye8zV/0E4EyYn43P7/7qvQwPh9BGkHewbMulVntbigmcT7rdX3BNo9wRJg==" - } + "engines": { + "node": ">= 6" + }, + "peerDependencies": { + "typescript": ">=2.8.0 || >= 3.2.0-dev || >= 3.3.0-dev || >= 3.4.0-dev || >= 3.5.0-dev || >= 3.6.0-dev || >= 3.6.0-beta || >= 3.7.0-dev || >= 3.7.0-beta" } }, - "tunnel-agent": { + "node_modules/tsutils/node_modules/tslib": { + "version": "1.14.1", + "license": "0BSD" + }, + "node_modules/tunnel-agent": { "version": "0.6.0", - "resolved": "https://registry.npmjs.org/tunnel-agent/-/tunnel-agent-0.6.0.tgz", - "integrity": "sha512-McnNiV1l8RYeY8tBgEpuodCC1mLUdbSN+CYBL7kJsJNInOP8UjDDEwdk6Mw60vdLLrr5NHKZhMAOSrR2NZuQ+w==", - "requires": { + "license": "Apache-2.0", + "dependencies": { "safe-buffer": "^5.0.1" + }, + "engines": { + "node": "*" } }, - "tweetnacl": { + "node_modules/tweetnacl": { "version": "1.0.3", - "resolved": "https://registry.npmjs.org/tweetnacl/-/tweetnacl-1.0.3.tgz", - "integrity": "sha512-6rt+RN7aOi1nGMyC4Xa5DdYiukl2UWCbcJft7YhxReBGQD7OAM8Pbxw6YMo4r2diNEA8FEmu32YOn9rhaiE5yw==", + "license": "Unlicense", "peer": true }, - "tweetnacl-util": { + "node_modules/tweetnacl-util": { "version": "0.15.1", - "resolved": "https://registry.npmjs.org/tweetnacl-util/-/tweetnacl-util-0.15.1.tgz", - "integrity": "sha512-RKJBIj8lySrShN4w6i/BonWp2Z/uxwC3h4y7xsRrpP59ZboCd0GpEVsOnMDYLMmKBpYhb5TgHzZXy7wTfYFBRw==", + "license": "Unlicense", "peer": true }, - "type": { + "node_modules/type": { "version": "1.2.0", - "resolved": "https://registry.npmjs.org/type/-/type-1.2.0.tgz", - "integrity": "sha512-+5nt5AAniqsCnu2cEQQdpzCAh33kVx8n0VoFidKpB1dVVLAN/F+bgVOqOJqOnEnrhp222clB5p3vUlD+1QAnfg==" + "license": "ISC" }, - "type-check": { + "node_modules/type-check": { "version": "0.4.0", - "resolved": "https://registry.npmjs.org/type-check/-/type-check-0.4.0.tgz", - "integrity": "sha512-XleUoc9uwGXqjWwXaUTZAmzMcFZ5858QA2vvx1Ur5xIcixXIP+8LnFDgRplU30us6teqdlskFfu+ae4K79Ooew==", - "requires": { + "license": "MIT", + "dependencies": { "prelude-ls": "^1.2.1" + }, + "engines": { + "node": ">= 0.8.0" } }, - "type-detect": { + "node_modules/type-detect": { "version": "4.0.8", - "resolved": "https://registry.npmjs.org/type-detect/-/type-detect-4.0.8.tgz", - "integrity": "sha512-0fr/mIH1dlO+x7TlcMy+bIDqKPsw/70tVyeHW787goQjhmqaZe10uwLujubK9q9Lg6Fiho1KUKDYz0Z7k7g5/g==" + "license": "MIT", + "engines": { + "node": ">=4" + } }, - "type-fest": { + "node_modules/type-fest": { "version": "0.21.3", - "resolved": "https://registry.npmjs.org/type-fest/-/type-fest-0.21.3.tgz", - "integrity": "sha512-t0rzBq87m3fVcduHDUFhKmyyX+9eo6WQjZvf51Ea/M0Q7+T374Jp1aUiyUl0GKxp8M/OETVHSDvmkyPgvX+X2w==" + "license": "(MIT OR CC0-1.0)", + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } }, - "type-is": { + "node_modules/type-is": { "version": "1.6.18", - "resolved": "https://registry.npmjs.org/type-is/-/type-is-1.6.18.tgz", - "integrity": "sha512-TkRKr9sUTxEH8MdfuCSP7VizJyzRNMjj2J2do2Jr3Kym598JVdEksuzPQCnlFPW4ky9Q+iA+ma9BGm06XQBy8g==", - "requires": { + "license": "MIT", + "dependencies": { "media-typer": "0.3.0", "mime-types": "~2.1.24" + }, + "engines": { + "node": ">= 0.6" } }, - "typechain": { - "version": "8.2.0", - "resolved": "https://registry.npmjs.org/typechain/-/typechain-8.2.0.tgz", - "integrity": "sha512-tZqhqjxJ9xAS/Lh32jccTjMkpx7sTdUVVHAy5Bf0TIer5QFNYXotiX74oCvoVYjyxUKDK3MXHtMFzMyD3kE+jg==", + "node_modules/typechain": { + "version": "8.3.1", "dev": true, - "requires": { + "license": "MIT", + "dependencies": { "@types/prettier": "^2.1.1", "debug": "^4.3.1", "fs-extra": "^7.0.0", @@ -42729,280 +20236,397 @@ "ts-command-line-args": "^2.2.0", "ts-essentials": "^7.0.1" }, + "bin": { + "typechain": "dist/cli/cli.js" + }, + "peerDependencies": { + "typescript": ">=4.3.0" + } + }, + "node_modules/typechain/node_modules/fs-extra": { + "version": "7.0.1", + "dev": true, + "license": "MIT", "dependencies": { - "fs-extra": { - "version": "7.0.1", - "resolved": "https://registry.npmjs.org/fs-extra/-/fs-extra-7.0.1.tgz", - "integrity": "sha512-YJDaCJZEnBmcbw13fvdAM9AwNOJwOzrE4pqMqBq5nFiEqXUqHwlK4B+3pUw6JNvfSPtX05xFHtYy/1ni01eGCw==", - "dev": true, - "requires": { - "graceful-fs": "^4.1.2", - "jsonfile": "^4.0.0", - "universalify": "^0.1.0" - } - }, - "glob": { - "version": "7.1.7", - "resolved": "https://registry.npmjs.org/glob/-/glob-7.1.7.tgz", - "integrity": "sha512-OvD9ENzPLbegENnYP5UUfJIirTg4+XwMWGaQfQTY0JenxNvvIKP3U3/tAQSPIu/lHxXYSZmpXlUHeqAIdKzBLQ==", - "dev": true, - "requires": { - "fs.realpath": "^1.0.0", - "inflight": "^1.0.4", - "inherits": "2", - "minimatch": "^3.0.4", - "once": "^1.3.0", - "path-is-absolute": "^1.0.0" - } - }, - "jsonfile": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/jsonfile/-/jsonfile-4.0.0.tgz", - "integrity": "sha512-m6F1R3z8jjlf2imQHS2Qez5sjKWQzbuuhuJ/FKYFRZvPE3PuHcSMVZzfsLhGVOkfd20obL5SWEBew5ShlquNxg==", - "dev": true, - "requires": { - "graceful-fs": "^4.1.6" - } - }, - "mkdirp": { - "version": "1.0.4", - "resolved": "https://registry.npmjs.org/mkdirp/-/mkdirp-1.0.4.tgz", - "integrity": "sha512-vVqVZQyf3WLx2Shd0qJ9xuvqgAyKPLAiqITEtqW0oIUjzo3PePDd6fW9iFz30ef7Ysp/oiWqbhszeGWW2T6Gzw==", - "dev": true - }, - "universalify": { - "version": "0.1.2", - "resolved": "https://registry.npmjs.org/universalify/-/universalify-0.1.2.tgz", - "integrity": "sha512-rBJeI5CXAlmy1pV+617WB9J63U6XcazHHF2f2dbJix4XzpUF0RS3Zbj0FGIOCAva5P/d/GBOYaACQ1w+0azUkg==", - "dev": true - } + "graceful-fs": "^4.1.2", + "jsonfile": "^4.0.0", + "universalify": "^0.1.0" + }, + "engines": { + "node": ">=6 <7 || >=8" + } + }, + "node_modules/typechain/node_modules/glob": { + "version": "7.1.7", + "dev": true, + "license": "ISC", + "dependencies": { + "fs.realpath": "^1.0.0", + "inflight": "^1.0.4", + "inherits": "2", + "minimatch": "^3.0.4", + "once": "^1.3.0", + "path-is-absolute": "^1.0.0" + }, + "engines": { + "node": "*" + }, + "funding": { + "url": "https://github.com/sponsors/isaacs" + } + }, + "node_modules/typechain/node_modules/jsonfile": { + "version": "4.0.0", + "dev": true, + "license": "MIT", + "optionalDependencies": { + "graceful-fs": "^4.1.6" + } + }, + "node_modules/typechain/node_modules/mkdirp": { + "version": "1.0.4", + "dev": true, + "license": "MIT", + "bin": { + "mkdirp": "bin/cmd.js" + }, + "engines": { + "node": ">=10" + } + }, + "node_modules/typechain/node_modules/universalify": { + "version": "0.1.2", + "dev": true, + "license": "MIT", + "engines": { + "node": ">= 4.0.0" + } + }, + "node_modules/typed-array-buffer": { + "version": "1.0.0", + "license": "MIT", + "dependencies": { + "call-bind": "^1.0.2", + "get-intrinsic": "^1.2.1", + "is-typed-array": "^1.1.10" + }, + "engines": { + "node": ">= 0.4" + } + }, + "node_modules/typed-array-byte-length": { + "version": "1.0.0", + "license": "MIT", + "dependencies": { + "call-bind": "^1.0.2", + "for-each": "^0.3.3", + "has-proto": "^1.0.1", + "is-typed-array": "^1.1.10" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/typed-array-byte-offset": { + "version": "1.0.0", + "license": "MIT", + "dependencies": { + "available-typed-arrays": "^1.0.5", + "call-bind": "^1.0.2", + "for-each": "^0.3.3", + "has-proto": "^1.0.1", + "is-typed-array": "^1.1.10" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" } }, - "typed-array-length": { + "node_modules/typed-array-length": { "version": "1.0.4", - "resolved": "https://registry.npmjs.org/typed-array-length/-/typed-array-length-1.0.4.tgz", - "integrity": "sha512-KjZypGq+I/H7HI5HlOoGHkWUUGq+Q0TPhQurLbyrVrvnKTBgzLhIJ7j6J/XTQOi0d1RjyZ0wdas8bKs2p0x3Ng==", - "requires": { + "license": "MIT", + "dependencies": { "call-bind": "^1.0.2", "for-each": "^0.3.3", "is-typed-array": "^1.1.9" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" } }, - "typedarray-to-buffer": { + "node_modules/typedarray-to-buffer": { "version": "3.1.5", - "resolved": "https://registry.npmjs.org/typedarray-to-buffer/-/typedarray-to-buffer-3.1.5.tgz", - "integrity": "sha512-zdu8XMNEDepKKR+XYOXAVPtWui0ly0NtohUscw+UmaHiAWT8hrV1rr//H6V+0DvJ3OQ19S979M0laLfX8rm82Q==", - "requires": { + "license": "MIT", + "dependencies": { "is-typedarray": "^1.0.0" } }, - "typedoc": { + "node_modules/typedoc": { "version": "0.23.28", - "resolved": "https://registry.npmjs.org/typedoc/-/typedoc-0.23.28.tgz", - "integrity": "sha512-9x1+hZWTHEQcGoP7qFmlo4unUoVJLB0H/8vfO/7wqTnZxg4kPuji9y3uRzEu0ZKez63OJAUmiGhUrtukC6Uj3w==", - "requires": { + "license": "Apache-2.0", + "dependencies": { "lunr": "^2.3.9", "marked": "^4.2.12", "minimatch": "^7.1.3", "shiki": "^0.14.1" }, + "bin": { + "typedoc": "bin/typedoc" + }, + "engines": { + "node": ">= 14.14" + }, + "peerDependencies": { + "typescript": "4.6.x || 4.7.x || 4.8.x || 4.9.x || 5.0.x" + } + }, + "node_modules/typedoc/node_modules/brace-expansion": { + "version": "2.0.1", + "license": "MIT", "dependencies": { - "brace-expansion": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-2.0.1.tgz", - "integrity": "sha512-XnAIvQ8eM+kC6aULx6wuQiwVsnzsi9d3WxzV3FpWTGA19F621kwdbsAcFKXgKUHZWsy+mY6iL1sHTxWEFCytDA==", - "requires": { - "balanced-match": "^1.0.0" - } - }, - "minimatch": { - "version": "7.4.6", - "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-7.4.6.tgz", - "integrity": "sha512-sBz8G/YjVniEz6lKPNpKxXwazJe4c19fEfV2GDMX6AjFz+MX9uDWIZW8XreVhkFW3fkIdTv/gxWr/Kks5FFAVw==", - "requires": { - "brace-expansion": "^2.0.1" - } - } + "balanced-match": "^1.0.0" + } + }, + "node_modules/typedoc/node_modules/minimatch": { + "version": "7.4.6", + "license": "ISC", + "dependencies": { + "brace-expansion": "^2.0.1" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/isaacs" } }, - "typescript": { - "version": "4.8.2", - "resolved": "https://registry.npmjs.org/typescript/-/typescript-4.8.2.tgz", - "integrity": "sha512-C0I1UsrrDHo2fYI5oaCGbSejwX4ch+9Y5jTQELvovfmFkK3HHSZJB8MSJcWLmCUBzQBchCrZ9rMRV6GuNrvGtw==" + "node_modules/typescript": { + "version": "4.9.5", + "license": "Apache-2.0", + "bin": { + "tsc": "bin/tsc", + "tsserver": "bin/tsserver" + }, + "engines": { + "node": ">=4.2.0" + } }, - "typical": { + "node_modules/typical": { "version": "4.0.0", - "resolved": "https://registry.npmjs.org/typical/-/typical-4.0.0.tgz", - "integrity": "sha512-VAH4IvQ7BDFYglMd7BPRDfLgxZZX4O4TFcRDA6EN5X7erNJJq+McIEp8np9aVtxrCJ6qx4GTYVfOWNjcqwZgRw==", - "dev": true + "dev": true, + "license": "MIT", + "engines": { + "node": ">=8" + } }, - "uint8arrays": { + "node_modules/uint8arrays": { "version": "3.1.1", - "resolved": "https://registry.npmjs.org/uint8arrays/-/uint8arrays-3.1.1.tgz", - "integrity": "sha512-+QJa8QRnbdXVpHYjLoTpJIdCTiw9Ir62nocClWuXIq2JIh4Uta0cQsTSpFL678p2CN8B+XSApwcU+pQEqVpKWg==", - "requires": { + "license": "MIT", + "dependencies": { "multiformats": "^9.4.2" } }, - "ultron": { + "node_modules/ultron": { "version": "1.1.1", - "resolved": "https://registry.npmjs.org/ultron/-/ultron-1.1.1.tgz", - "integrity": "sha512-UIEXBNeYmKptWH6z8ZnqTeS8fV74zG0/eRU9VGkpzz+LIJNs8W/zM/L+7ctCkRrgbNnnR0xxw4bKOr0cW0N0Og==" + "license": "MIT" }, - "unbox-primitive": { + "node_modules/unbox-primitive": { "version": "1.0.2", - "resolved": "https://registry.npmjs.org/unbox-primitive/-/unbox-primitive-1.0.2.tgz", - "integrity": "sha512-61pPlCD9h51VoreyJ0BReideM3MDKMKnh6+V9L08331ipq6Q8OFXZYiqP6n/tbHx4s5I9uRhcye6BrbkizkBDw==", - "requires": { + "license": "MIT", + "dependencies": { "call-bind": "^1.0.2", "has-bigints": "^1.0.2", "has-symbols": "^1.0.3", "which-boxed-primitive": "^1.0.2" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" } }, - "undici": { - "version": "5.22.0", - "resolved": "https://registry.npmjs.org/undici/-/undici-5.22.0.tgz", - "integrity": "sha512-fR9RXCc+6Dxav4P9VV/sp5w3eFiSdOjJYsbtWfd4s5L5C4ogyuVpdKIVHeW0vV1MloM65/f7W45nR9ZxwVdyiA==", + "node_modules/undici": { + "version": "5.23.0", + "license": "MIT", "peer": true, - "requires": { + "dependencies": { "busboy": "^1.6.0" + }, + "engines": { + "node": ">=14.0" } }, - "unicode-canonical-property-names-ecmascript": { + "node_modules/unicode-canonical-property-names-ecmascript": { "version": "2.0.0", - "resolved": "https://registry.npmjs.org/unicode-canonical-property-names-ecmascript/-/unicode-canonical-property-names-ecmascript-2.0.0.tgz", - "integrity": "sha512-yY5PpDlfVIU5+y/BSCxAJRBIS1Zc2dDG3Ujq+sR0U+JjUevW2JhocOF+soROYDSaAezOzOKuyyixhD6mBknSmQ==" + "license": "MIT", + "engines": { + "node": ">=4" + } }, - "unicode-match-property-ecmascript": { + "node_modules/unicode-match-property-ecmascript": { "version": "2.0.0", - "resolved": "https://registry.npmjs.org/unicode-match-property-ecmascript/-/unicode-match-property-ecmascript-2.0.0.tgz", - "integrity": "sha512-5kaZCrbp5mmbz5ulBkDkbY0SsPOjKqVS35VpL9ulMPfSl0J0Xsm+9Evphv9CoIZFwre7aJoa94AY6seMKGVN5Q==", - "requires": { + "license": "MIT", + "dependencies": { "unicode-canonical-property-names-ecmascript": "^2.0.0", "unicode-property-aliases-ecmascript": "^2.0.0" + }, + "engines": { + "node": ">=4" } }, - "unicode-match-property-value-ecmascript": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/unicode-match-property-value-ecmascript/-/unicode-match-property-value-ecmascript-2.0.0.tgz", - "integrity": "sha512-7Yhkc0Ye+t4PNYzOGKedDhXbYIBe1XEQYQxOPyhcXNMJ0WCABqqj6ckydd6pWRZTHV4GuCPKdBAUiMc60tsKVw==" + "node_modules/unicode-match-property-value-ecmascript": { + "version": "2.1.0", + "license": "MIT", + "engines": { + "node": ">=4" + } }, - "unicode-property-aliases-ecmascript": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/unicode-property-aliases-ecmascript/-/unicode-property-aliases-ecmascript-2.0.0.tgz", - "integrity": "sha512-5Zfuy9q/DFr4tfO7ZPeVXb1aPoeQSdeFMLpYuFebehDAhbuevLs5yxSZmIFN1tP5F9Wl4IpJrYojg85/zgyZHQ==" + "node_modules/unicode-property-aliases-ecmascript": { + "version": "2.1.0", + "license": "MIT", + "engines": { + "node": ">=4" + } }, - "unique-string": { + "node_modules/unique-string": { "version": "2.0.0", - "resolved": "https://registry.npmjs.org/unique-string/-/unique-string-2.0.0.tgz", - "integrity": "sha512-uNaeirEPvpZWSgzwsPGtU2zVSTrn/8L5q/IexZmH0eH6SA73CmAA5U4GwORTxQAZs95TAXLNqeLoPPNO5gZfWg==", - "requires": { + "license": "MIT", + "dependencies": { "crypto-random-string": "^2.0.0" + }, + "engines": { + "node": ">=8" } }, - "universalify": { + "node_modules/universalify": { "version": "2.0.0", - "resolved": "https://registry.npmjs.org/universalify/-/universalify-2.0.0.tgz", - "integrity": "sha512-hAZsKq7Yy11Zu1DE0OzWjw7nnLZmJZYTDZZyEFHZdUhV8FkH5MCfoU1XMaxXovpyW5nq5scPqq0ZDP9Zyl04oQ==" + "license": "MIT", + "engines": { + "node": ">= 10.0.0" + } }, - "unpipe": { + "node_modules/unpipe": { "version": "1.0.0", - "resolved": "https://registry.npmjs.org/unpipe/-/unpipe-1.0.0.tgz", - "integrity": "sha512-pjy2bYhSsufwWlKwPc+l3cN7+wuJlK6uz0YdJEOlQDbl6jo/YlPi4mb8agUkVC8BF7V8NuzeyPNqRksA3hztKQ==" + "license": "MIT", + "engines": { + "node": ">= 0.8" + } }, - "unquote": { + "node_modules/unquote": { "version": "1.1.1", - "resolved": "https://registry.npmjs.org/unquote/-/unquote-1.1.1.tgz", - "integrity": "sha512-vRCqFv6UhXpWxZPyGDh/F3ZpNv8/qo7w6iufLpQg9aKnQ71qM4B5KiI7Mia9COcjEhrO9LueHpMYjYzsWH3OIg==" + "license": "MIT" }, - "upath": { + "node_modules/upath": { "version": "1.2.0", - "resolved": "https://registry.npmjs.org/upath/-/upath-1.2.0.tgz", - "integrity": "sha512-aZwGpamFO61g3OlfT7OQCHqhGnW43ieH9WZeP7QxN/G/jS4jfqUkZxoryvJgVPEcrl5NL/ggHsSmLMHuH64Lhg==" + "license": "MIT", + "engines": { + "node": ">=4", + "yarn": "*" + } }, - "update-browserslist-db": { - "version": "1.0.4", - "resolved": "https://registry.npmjs.org/update-browserslist-db/-/update-browserslist-db-1.0.4.tgz", - "integrity": "sha512-jnmO2BEGUjsMOe/Fg9u0oczOe/ppIDZPebzccl1yDWGLFP16Pa1/RM5wEoKYPG2zstNcDuAStejyxsOuKINdGA==", - "requires": { + "node_modules/update-browserslist-db": { + "version": "1.0.11", + "funding": [ + { + "type": "opencollective", + "url": "https://opencollective.com/browserslist" + }, + { + "type": "tidelift", + "url": "https://tidelift.com/funding/github/npm/browserslist" + }, + { + "type": "github", + "url": "https://github.com/sponsors/ai" + } + ], + "license": "MIT", + "dependencies": { "escalade": "^3.1.1", "picocolors": "^1.0.0" + }, + "bin": { + "update-browserslist-db": "cli.js" + }, + "peerDependencies": { + "browserslist": ">= 4.21.0" } }, - "uri-js": { + "node_modules/uri-js": { "version": "4.4.1", - "resolved": "https://registry.npmjs.org/uri-js/-/uri-js-4.4.1.tgz", - "integrity": "sha512-7rKUyy33Q1yc98pQ1DAmLtwX109F7TIfWlW1Ydo8Wl1ii1SeHieeh0HHfPeL2fMXK6z0s8ecKs9frCuLJvndBg==", - "requires": { + "license": "BSD-2-Clause", + "dependencies": { "punycode": "^2.1.0" } }, - "url": { - "version": "0.11.0", - "resolved": "https://registry.npmjs.org/url/-/url-0.11.0.tgz", - "integrity": "sha512-kbailJa29QrtXnxgq+DdCEGlbTeYM2eJUxsz6vjZavrCYPMIFHMKQmSKYAIuUK2i7hgPm28a8piX5NTUtM/LKQ==", - "requires": { - "punycode": "1.3.2", - "querystring": "0.2.0" - }, + "node_modules/url": { + "version": "0.11.1", + "license": "MIT", "dependencies": { - "punycode": { - "version": "1.3.2", - "resolved": "https://registry.npmjs.org/punycode/-/punycode-1.3.2.tgz", - "integrity": "sha512-RofWgt/7fL5wP1Y7fxE7/EmTLzQVnB0ycyibJ0OOHIlJqTNzglYFxVwETOcIoJqJmpDXJ9xImDv+Fq34F/d4Dw==" - } + "punycode": "^1.4.1", + "qs": "^6.11.0" } }, - "url-join": { + "node_modules/url-join": { "version": "4.0.1", - "resolved": "https://registry.npmjs.org/url-join/-/url-join-4.0.1.tgz", - "integrity": "sha512-jk1+QP6ZJqyOiuEI9AEWQfju/nB2Pw466kbA0LEZljHwKeMgd9WrAEgEGxjPDD2+TNbbb37rTyhEfrCXfuKXnA==" + "license": "MIT" + }, + "node_modules/url-parse": { + "version": "1.5.10", + "license": "MIT", + "dependencies": { + "querystringify": "^2.1.1", + "requires-port": "^1.0.0" + } }, - "url-set-query": { + "node_modules/url-set-query": { "version": "1.0.0", - "resolved": "https://registry.npmjs.org/url-set-query/-/url-set-query-1.0.0.tgz", - "integrity": "sha512-3AChu4NiXquPfeckE5R5cGdiHCMWJx1dwCWOmWIL4KHAziJNOFIYJlpGFeKDvwLPHovZRCxK3cYlwzqI9Vp+Gg==" + "license": "MIT" + }, + "node_modules/url/node_modules/punycode": { + "version": "1.4.1", + "license": "MIT" }, - "use-sync-external-store": { + "node_modules/use-sync-external-store": { "version": "1.2.0", - "resolved": "https://registry.npmjs.org/use-sync-external-store/-/use-sync-external-store-1.2.0.tgz", - "integrity": "sha512-eEgnFxGQ1Ife9bzYs6VLi8/4X6CObHMw9Qr9tPY43iKwsPw8xE8+EFsf/2cFZ5S3esXgpWgtSCtLNS41F+sKPA==", - "requires": {} - }, - "utf-8-validate": { - "version": "5.0.9", - "resolved": "https://registry.npmjs.org/utf-8-validate/-/utf-8-validate-5.0.9.tgz", - "integrity": "sha512-Yek7dAy0v3Kl0orwMlvi7TPtiCNrdfHNd7Gcc/pLq4BLXqfAmd0J7OWMizUQnTTJsyjKn02mU7anqwfmUP4J8Q==", - "requires": { + "license": "MIT", + "peerDependencies": { + "react": "^16.8.0 || ^17.0.0 || ^18.0.0" + } + }, + "node_modules/utf-8-validate": { + "version": "5.0.10", + "hasInstallScript": true, + "license": "MIT", + "dependencies": { "node-gyp-build": "^4.3.0" + }, + "engines": { + "node": ">=6.14.2" } }, - "utf8": { + "node_modules/utf8": { "version": "3.0.0", - "resolved": "https://registry.npmjs.org/utf8/-/utf8-3.0.0.tgz", - "integrity": "sha512-E8VjFIQ/TyQgp+TZfS6l8yp/xWppSAHzidGiRrqe4bK4XP9pTRyKFgGJpO3SN7zdX4DeomTrwaseCHovfpFcqQ==" + "license": "MIT" }, - "utif": { + "node_modules/utif": { "version": "2.0.1", - "resolved": "https://registry.npmjs.org/utif/-/utif-2.0.1.tgz", - "integrity": "sha512-Z/S1fNKCicQTf375lIP9G8Sa1H/phcysstNrrSdZKj1f9g58J4NMgb5IgiEZN9/nLMPDwF0W7hdOe9Qq2IYoLg==", - "requires": { - "pako": "^1.0.5" - }, + "license": "MIT", "dependencies": { - "pako": { - "version": "1.0.11", - "resolved": "https://registry.npmjs.org/pako/-/pako-1.0.11.tgz", - "integrity": "sha512-4hLB8Py4zZce5s4yd9XzopqwVv/yGNhV1Bl8NTmCq1763HeK2+EwVTv+leGeL13Dnh2wfbqowVPXCIO0z4taYw==" - } + "pako": "^1.0.5" } }, - "util": { + "node_modules/utif/node_modules/pako": { + "version": "1.0.11", + "license": "(MIT AND Zlib)" + }, + "node_modules/util": { "version": "0.12.5", - "resolved": "https://registry.npmjs.org/util/-/util-0.12.5.tgz", - "integrity": "sha512-kZf/K6hEIrWHI6XqOFUiiMa+79wE/D8Q+NCNAWclkyg3b4d2k7s0QGepNjiABc+aR3N1PAyHL7p6UcLY6LmrnA==", - "requires": { + "license": "MIT", + "dependencies": { "inherits": "^2.0.3", "is-arguments": "^1.0.4", "is-generator-function": "^1.0.7", @@ -43010,557 +20634,566 @@ "which-typed-array": "^1.1.2" } }, - "util-deprecate": { + "node_modules/util-deprecate": { "version": "1.0.2", - "resolved": "https://registry.npmjs.org/util-deprecate/-/util-deprecate-1.0.2.tgz", - "integrity": "sha512-EPD5q1uXyFxJpCrLnCc1nHnq3gOa6DZBocAIiI2TaSCA7VCJ1UJDMagCzIkXNsUYfD1daK//LTEQ8xiIbrHtcw==" + "license": "MIT" }, - "util.promisify": { + "node_modules/util.promisify": { "version": "1.0.1", - "resolved": "https://registry.npmjs.org/util.promisify/-/util.promisify-1.0.1.tgz", - "integrity": "sha512-g9JpC/3He3bm38zsLupWryXHoEcS22YHthuPQSJdMy6KNrzIRzWqcsHzD/WUnqe45whVou4VIsPew37DoXWNrA==", - "requires": { + "license": "MIT", + "dependencies": { "define-properties": "^1.1.3", "es-abstract": "^1.17.2", "has-symbols": "^1.0.1", "object.getownpropertydescriptors": "^2.1.0" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" } }, - "utila": { + "node_modules/utila": { "version": "0.4.0", - "resolved": "https://registry.npmjs.org/utila/-/utila-0.4.0.tgz", - "integrity": "sha512-Z0DbgELS9/L/75wZbro8xAnT50pBVFQZ+hUEueGDU5FN51YSCYM+jdxsfCiHjwNP/4LCDD0i/graKpeBnOXKRA==" + "license": "MIT" }, - "utils-merge": { + "node_modules/utils-merge": { "version": "1.0.1", - "resolved": "https://registry.npmjs.org/utils-merge/-/utils-merge-1.0.1.tgz", - "integrity": "sha512-pMZTvIkT1d+TFGvDOqodOclx0QWkkgi6Tdoa8gC8ffGAAqz9pzPTZWAybbsHHoED/ztMtkv/VoYTYyShUn81hA==" + "license": "MIT", + "engines": { + "node": ">= 0.4.0" + } }, - "uuid": { + "node_modules/uuid": { "version": "8.3.2", - "resolved": "https://registry.npmjs.org/uuid/-/uuid-8.3.2.tgz", - "integrity": "sha512-+NYs2QeMWy+GWFOEm9xnn6HCDp0l7QBD7ml8zLUmJ+93Q5NF0NocErnwkTkXVFNiX3/fpC6afS8Dhb/gz7R7eg==" - }, - "v8-compile-cache": { - "version": "2.3.0", - "resolved": "https://registry.npmjs.org/v8-compile-cache/-/v8-compile-cache-2.3.0.tgz", - "integrity": "sha512-l8lCEmLcLYZh4nbunNZvQCJc5pv7+RCwa8q/LdUx8u7lsWvPDKmpodJAJNwkAhJC//dFY48KuIEmjtd4RViDrA==" + "license": "MIT", + "bin": { + "uuid": "dist/bin/uuid" + } }, - "v8-to-istanbul": { + "node_modules/v8-to-istanbul": { "version": "8.1.1", - "resolved": "https://registry.npmjs.org/v8-to-istanbul/-/v8-to-istanbul-8.1.1.tgz", - "integrity": "sha512-FGtKtv3xIpR6BYhvgH8MI/y78oT7d8Au3ww4QIxymrCtZEh5b8gCw2siywE+puhEmuWKDtmfrvF5UlB298ut3w==", - "requires": { + "license": "ISC", + "dependencies": { "@types/istanbul-lib-coverage": "^2.0.1", "convert-source-map": "^1.6.0", "source-map": "^0.7.3" + }, + "engines": { + "node": ">=10.12.0" + } + }, + "node_modules/v8-to-istanbul/node_modules/source-map": { + "version": "0.7.4", + "license": "BSD-3-Clause", + "engines": { + "node": ">= 8" } }, - "varint": { + "node_modules/varint": { "version": "6.0.0", - "resolved": "https://registry.npmjs.org/varint/-/varint-6.0.0.tgz", - "integrity": "sha512-cXEIW6cfr15lFv563k4GuVuW/fiwjknytD37jIOLSdSWuOI6WnO/oKwmP2FQTU2l01LP8/M5TSAJpzUaGe3uWg==" + "license": "MIT" }, - "vary": { + "node_modules/vary": { "version": "1.1.2", - "resolved": "https://registry.npmjs.org/vary/-/vary-1.1.2.tgz", - "integrity": "sha512-BNGbWLfd0eUPabhkXUVm0j8uuvREyTh5ovRa/dyow/BqAbZJyC+5fU+IzQOzmAKzYqYRAISoRhdQr3eIZ/PXqg==" + "license": "MIT", + "engines": { + "node": ">= 0.8" + } }, - "verror": { + "node_modules/verror": { "version": "1.10.0", - "resolved": "https://registry.npmjs.org/verror/-/verror-1.10.0.tgz", - "integrity": "sha512-ZZKSmDAEFOijERBLkmYfJ+vmk3w+7hOLYDNkRCuRuMJGEmqYNCNLyBBFwWKVMhfwaEF3WOd0Zlw86U/WC/+nYw==", - "requires": { + "engines": [ + "node >=0.6.0" + ], + "license": "MIT", + "dependencies": { "assert-plus": "^1.0.0", "core-util-is": "1.0.2", "extsprintf": "^1.2.0" - }, - "dependencies": { - "core-util-is": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/core-util-is/-/core-util-is-1.0.2.tgz", - "integrity": "sha512-3lqz5YjWTYnW6dlDa5TLaTCcShfar1e40rmcJVwCBJC6mWlFuj0eCHIElmG1g5kyuJ/GD+8Wn4FFCcz4gJPfaQ==" - } } }, - "vscode-oniguruma": { + "node_modules/vscode-oniguruma": { "version": "1.7.0", - "resolved": "https://registry.npmjs.org/vscode-oniguruma/-/vscode-oniguruma-1.7.0.tgz", - "integrity": "sha512-L9WMGRfrjOhgHSdOYgCt/yRMsXzLDJSL7BPrOZt73gU0iWO4mpqzqQzOz5srxqTvMBaR0XZTSrVWo4j55Rc6cA==" + "license": "MIT" }, - "vscode-textmate": { + "node_modules/vscode-textmate": { "version": "8.0.0", - "resolved": "https://registry.npmjs.org/vscode-textmate/-/vscode-textmate-8.0.0.tgz", - "integrity": "sha512-AFbieoL7a5LMqcnOF04ji+rpXadgOXnZsxQr//r83kLPr7biP7am3g9zbaZIaBGwBRWeSvoMD4mgPdX3e4NWBg==" + "license": "MIT" }, - "w3c-hr-time": { + "node_modules/w3c-hr-time": { "version": "1.0.2", - "resolved": "https://registry.npmjs.org/w3c-hr-time/-/w3c-hr-time-1.0.2.tgz", - "integrity": "sha512-z8P5DvDNjKDoFIHK7q8r8lackT6l+jo/Ye3HOle7l9nICP9lf1Ci25fy9vHd0JOWewkIFzXIEig3TdKT7JQ5fQ==", - "requires": { + "license": "MIT", + "dependencies": { "browser-process-hrtime": "^1.0.0" } }, - "w3c-xmlserializer": { + "node_modules/w3c-xmlserializer": { "version": "2.0.0", - "resolved": "https://registry.npmjs.org/w3c-xmlserializer/-/w3c-xmlserializer-2.0.0.tgz", - "integrity": "sha512-4tzD0mF8iSiMiNs30BiLO3EpfGLZUT2MSX/G+o7ZywDzliWQ3OPtTZ0PTC3B3ca1UAf4cJMHB+2Bf56EriJuRA==", - "requires": { + "license": "MIT", + "dependencies": { "xml-name-validator": "^3.0.0" + }, + "engines": { + "node": ">=10" } }, - "walker": { + "node_modules/walker": { "version": "1.0.8", - "resolved": "https://registry.npmjs.org/walker/-/walker-1.0.8.tgz", - "integrity": "sha512-ts/8E8l5b7kY0vlWLewOkDXMmPdLcVV4GmOQLyxuSswIJsweeFZtAsMF7k1Nszz+TYBQrlYRmzOnr398y1JemQ==", - "requires": { + "license": "Apache-2.0", + "dependencies": { "makeerror": "1.0.12" } }, - "warning": { + "node_modules/warning": { "version": "4.0.3", - "resolved": "https://registry.npmjs.org/warning/-/warning-4.0.3.tgz", - "integrity": "sha512-rpJyN222KWIvHJ/F53XSZv0Zl/accqHR8et1kpaMTD/fLCRxtV8iX8czMzY7sVZupTI3zcUTg8eycS2kNF9l6w==", - "requires": { + "license": "MIT", + "dependencies": { "loose-envify": "^1.0.0" } }, - "watchpack": { + "node_modules/watchpack": { "version": "2.4.0", - "resolved": "https://registry.npmjs.org/watchpack/-/watchpack-2.4.0.tgz", - "integrity": "sha512-Lcvm7MGST/4fup+ifyKi2hjyIAwcdI4HRgtvTpIUxBRhB+RFtUh8XtDOxUfctVCnhVi+QQj49i91OyvzkJl6cg==", - "requires": { + "license": "MIT", + "dependencies": { "glob-to-regexp": "^0.4.1", "graceful-fs": "^4.1.2" + }, + "engines": { + "node": ">=10.13.0" } }, - "wbuf": { + "node_modules/wbuf": { "version": "1.7.3", - "resolved": "https://registry.npmjs.org/wbuf/-/wbuf-1.7.3.tgz", - "integrity": "sha512-O84QOnr0icsbFGLS0O3bI5FswxzRr8/gHwWkDlQFskhSPryQXvrTMxjxGP4+iWYoauLoBvfDpkrOauZ+0iZpDA==", - "requires": { + "license": "MIT", + "dependencies": { "minimalistic-assert": "^1.0.0" } }, - "wcag-contrast": { + "node_modules/wcag-contrast": { "version": "3.0.0", - "resolved": "https://registry.npmjs.org/wcag-contrast/-/wcag-contrast-3.0.0.tgz", - "integrity": "sha512-RWbpg/S7FOXDCwqC2oFhN/vh8dHzj0OS6dpyOSDHyQFSmqmR+lAUStV/ziTT1GzDqL9wol+nZQB4vCi5yEak+w==", - "requires": { + "license": "BSD-2-Clause", + "dependencies": { "relative-luminance": "^2.0.0" } }, - "web-vitals": { + "node_modules/web-vitals": { "version": "2.1.4", - "resolved": "https://registry.npmjs.org/web-vitals/-/web-vitals-2.1.4.tgz", - "integrity": "sha512-sVWcwhU5mX6crfI5Vd2dC4qchyTqxV8URinzt25XqVh+bHEPGH4C3NPrNionCP7Obx59wrYEbNlw4Z8sjALzZg==" + "license": "Apache-2.0" }, - "web3": { - "version": "1.9.0", - "resolved": "https://registry.npmjs.org/web3/-/web3-1.9.0.tgz", - "integrity": "sha512-E9IvVy/d2ozfQQsCiV+zh/LmlZGv9fQxI0UedDVjm87yOKf4AYbBNEn1iWtHveiGzAk2CEMZMUzAZzaQNSSYog==", - "requires": { - "web3-bzz": "1.9.0", - "web3-core": "1.9.0", - "web3-eth": "1.9.0", - "web3-eth-personal": "1.9.0", - "web3-net": "1.9.0", - "web3-shh": "1.9.0", - "web3-utils": "1.9.0" - } - }, - "web3-bzz": { - "version": "1.9.0", - "resolved": "https://registry.npmjs.org/web3-bzz/-/web3-bzz-1.9.0.tgz", - "integrity": "sha512-9Zli9dikX8GdHwBb5/WPzpSVuy3EWMKY3P4EokCQra31fD7DLizqAAaTUsFwnK7xYkw5ogpHgelw9uKHHzNajg==", - "requires": { + "node_modules/web3": { + "version": "1.10.1", + "hasInstallScript": true, + "license": "LGPL-3.0", + "dependencies": { + "web3-bzz": "1.10.1", + "web3-core": "1.10.1", + "web3-eth": "1.10.1", + "web3-eth-personal": "1.10.1", + "web3-net": "1.10.1", + "web3-shh": "1.10.1", + "web3-utils": "1.10.1" + }, + "engines": { + "node": ">=8.0.0" + } + }, + "node_modules/web3-bzz": { + "version": "1.10.1", + "hasInstallScript": true, + "license": "LGPL-3.0", + "dependencies": { "@types/node": "^12.12.6", "got": "12.1.0", "swarm-js": "^0.1.40" }, - "dependencies": { - "@types/node": { - "version": "12.20.55", - "resolved": "https://registry.npmjs.org/@types/node/-/node-12.20.55.tgz", - "integrity": "sha512-J8xLz7q2OFulZ2cyGTLE1TbbZcjpno7FaN6zdJNrgAdrJ+DZzh/uFR6YrTb4C+nXakvud8Q4+rbhoIWlYQbUFQ==" - } + "engines": { + "node": ">=8.0.0" } }, - "web3-core": { - "version": "1.9.0", - "resolved": "https://registry.npmjs.org/web3-core/-/web3-core-1.9.0.tgz", - "integrity": "sha512-DZ+TPmq/ZLlx4LSVzFgrHCP/QFpKDbGWO4HoquZSdu24cjk5SZ+FEU1SZB2OaK3/bgBh+25mRbmv8y56ysUu1w==", - "requires": { + "node_modules/web3-bzz/node_modules/@types/node": { + "version": "12.20.55", + "license": "MIT" + }, + "node_modules/web3-core": { + "version": "1.10.1", + "license": "LGPL-3.0", + "dependencies": { "@types/bn.js": "^5.1.1", "@types/node": "^12.12.6", "bignumber.js": "^9.0.0", - "web3-core-helpers": "1.9.0", - "web3-core-method": "1.9.0", - "web3-core-requestmanager": "1.9.0", - "web3-utils": "1.9.0" + "web3-core-helpers": "1.10.1", + "web3-core-method": "1.10.1", + "web3-core-requestmanager": "1.10.1", + "web3-utils": "1.10.1" }, - "dependencies": { - "@types/node": { - "version": "12.20.55", - "resolved": "https://registry.npmjs.org/@types/node/-/node-12.20.55.tgz", - "integrity": "sha512-J8xLz7q2OFulZ2cyGTLE1TbbZcjpno7FaN6zdJNrgAdrJ+DZzh/uFR6YrTb4C+nXakvud8Q4+rbhoIWlYQbUFQ==" - } + "engines": { + "node": ">=8.0.0" } }, - "web3-core-helpers": { - "version": "1.9.0", - "resolved": "https://registry.npmjs.org/web3-core-helpers/-/web3-core-helpers-1.9.0.tgz", - "integrity": "sha512-NeJzylAp9Yj9xAt2uTT+kyug3X0DLnfBdnAcGZuY6HhoNPDIfQRA9CkJjLngVRlGTLZGjNp9x9eR+RyZQgUlXg==", - "requires": { - "web3-eth-iban": "1.9.0", - "web3-utils": "1.9.0" + "node_modules/web3-core-helpers": { + "version": "1.10.1", + "license": "LGPL-3.0", + "dependencies": { + "web3-eth-iban": "1.10.1", + "web3-utils": "1.10.1" + }, + "engines": { + "node": ">=8.0.0" } }, - "web3-core-method": { - "version": "1.9.0", - "resolved": "https://registry.npmjs.org/web3-core-method/-/web3-core-method-1.9.0.tgz", - "integrity": "sha512-sswbNsY2xRBBhGeaLt9c/eDc+0yDDhi6keUBAkgIRa9ueSx/VKzUY9HMqiV6bXDcGT2fJyejq74FfEB4lc/+/w==", - "requires": { + "node_modules/web3-core-method": { + "version": "1.10.1", + "license": "LGPL-3.0", + "dependencies": { "@ethersproject/transactions": "^5.6.2", - "web3-core-helpers": "1.9.0", - "web3-core-promievent": "1.9.0", - "web3-core-subscriptions": "1.9.0", - "web3-utils": "1.9.0" + "web3-core-helpers": "1.10.1", + "web3-core-promievent": "1.10.1", + "web3-core-subscriptions": "1.10.1", + "web3-utils": "1.10.1" + }, + "engines": { + "node": ">=8.0.0" } }, - "web3-core-promievent": { - "version": "1.9.0", - "resolved": "https://registry.npmjs.org/web3-core-promievent/-/web3-core-promievent-1.9.0.tgz", - "integrity": "sha512-PHG1Mn23IGwMZhnPDN8dETKypqsFbHfiyRqP+XsVMPmTHkVfzDQTCBU/c2r6hUktBDoGKut5xZQpGfhFk71KbQ==", - "requires": { + "node_modules/web3-core-promievent": { + "version": "1.10.1", + "license": "LGPL-3.0", + "dependencies": { "eventemitter3": "4.0.4" }, - "dependencies": { - "eventemitter3": { - "version": "4.0.4", - "resolved": "https://registry.npmjs.org/eventemitter3/-/eventemitter3-4.0.4.tgz", - "integrity": "sha512-rlaVLnVxtxvoyLsQQFBx53YmXHDxRIzzTLbdfxqi4yocpSjAxXwkU0cScM5JgSKMqEhrZpnvQ2D9gjylR0AimQ==" - } + "engines": { + "node": ">=8.0.0" } }, - "web3-core-requestmanager": { - "version": "1.9.0", - "resolved": "https://registry.npmjs.org/web3-core-requestmanager/-/web3-core-requestmanager-1.9.0.tgz", - "integrity": "sha512-hcJ5PCtTIJpj+8qWxoseqlCovDo94JJjTX7dZOLXgwp8ah7E3WRYozhGyZocerx+KebKyg1mCQIhkDpMwjfo9Q==", - "requires": { + "node_modules/web3-core-promievent/node_modules/eventemitter3": { + "version": "4.0.4", + "license": "MIT" + }, + "node_modules/web3-core-requestmanager": { + "version": "1.10.1", + "license": "LGPL-3.0", + "dependencies": { "util": "^0.12.5", - "web3-core-helpers": "1.9.0", - "web3-providers-http": "1.9.0", - "web3-providers-ipc": "1.9.0", - "web3-providers-ws": "1.9.0" + "web3-core-helpers": "1.10.1", + "web3-providers-http": "1.10.1", + "web3-providers-ipc": "1.10.1", + "web3-providers-ws": "1.10.1" + }, + "engines": { + "node": ">=8.0.0" } }, - "web3-core-subscriptions": { - "version": "1.9.0", - "resolved": "https://registry.npmjs.org/web3-core-subscriptions/-/web3-core-subscriptions-1.9.0.tgz", - "integrity": "sha512-MaIo29yz7hTV8X8bioclPDbHFOVuHmnbMv+D3PDH12ceJFJAXGyW8GL5KU1DYyWIj4TD1HM4WknyVA/YWBiiLA==", - "requires": { + "node_modules/web3-core-subscriptions": { + "version": "1.10.1", + "license": "LGPL-3.0", + "dependencies": { "eventemitter3": "4.0.4", - "web3-core-helpers": "1.9.0" + "web3-core-helpers": "1.10.1" }, - "dependencies": { - "eventemitter3": { - "version": "4.0.4", - "resolved": "https://registry.npmjs.org/eventemitter3/-/eventemitter3-4.0.4.tgz", - "integrity": "sha512-rlaVLnVxtxvoyLsQQFBx53YmXHDxRIzzTLbdfxqi4yocpSjAxXwkU0cScM5JgSKMqEhrZpnvQ2D9gjylR0AimQ==" - } + "engines": { + "node": ">=8.0.0" } }, - "web3-eth": { - "version": "1.9.0", - "resolved": "https://registry.npmjs.org/web3-eth/-/web3-eth-1.9.0.tgz", - "integrity": "sha512-c5gSWk9bLNr6VPATHmZ1n7LTIefIZQnJMzfnvkoBcIFGKJbGmsuRhv6lEXsKdAO/FlqYnSbaw3fOq1fVFiIOFQ==", - "requires": { - "web3-core": "1.9.0", - "web3-core-helpers": "1.9.0", - "web3-core-method": "1.9.0", - "web3-core-subscriptions": "1.9.0", - "web3-eth-abi": "1.9.0", - "web3-eth-accounts": "1.9.0", - "web3-eth-contract": "1.9.0", - "web3-eth-ens": "1.9.0", - "web3-eth-iban": "1.9.0", - "web3-eth-personal": "1.9.0", - "web3-net": "1.9.0", - "web3-utils": "1.9.0" - } - }, - "web3-eth-abi": { - "version": "1.9.0", - "resolved": "https://registry.npmjs.org/web3-eth-abi/-/web3-eth-abi-1.9.0.tgz", - "integrity": "sha512-0BLQ3FKMrzJkA930jOX3fMaybAyubk06HChclLpiR0NWmgWXm1tmBrJdkyRy2ZTZpmfuZc9xTFRfl0yZID1voA==", - "requires": { + "node_modules/web3-core-subscriptions/node_modules/eventemitter3": { + "version": "4.0.4", + "license": "MIT" + }, + "node_modules/web3-core/node_modules/@types/node": { + "version": "12.20.55", + "license": "MIT" + }, + "node_modules/web3-eth": { + "version": "1.10.1", + "license": "LGPL-3.0", + "dependencies": { + "web3-core": "1.10.1", + "web3-core-helpers": "1.10.1", + "web3-core-method": "1.10.1", + "web3-core-subscriptions": "1.10.1", + "web3-eth-abi": "1.10.1", + "web3-eth-accounts": "1.10.1", + "web3-eth-contract": "1.10.1", + "web3-eth-ens": "1.10.1", + "web3-eth-iban": "1.10.1", + "web3-eth-personal": "1.10.1", + "web3-net": "1.10.1", + "web3-utils": "1.10.1" + }, + "engines": { + "node": ">=8.0.0" + } + }, + "node_modules/web3-eth-abi": { + "version": "1.10.1", + "license": "LGPL-3.0", + "dependencies": { "@ethersproject/abi": "^5.6.3", - "web3-utils": "1.9.0" + "web3-utils": "1.10.1" + }, + "engines": { + "node": ">=8.0.0" } }, - "web3-eth-accounts": { - "version": "1.9.0", - "resolved": "https://registry.npmjs.org/web3-eth-accounts/-/web3-eth-accounts-1.9.0.tgz", - "integrity": "sha512-VeIZVevmnSll0AC1k5F/y398ZE89d1SRuYk8IewLUhL/tVAsFEsjl2SGgm0+aDcHmgPrkW+qsCJ+C7rWg/N4ZA==", - "requires": { + "node_modules/web3-eth-accounts": { + "version": "1.10.1", + "license": "LGPL-3.0", + "dependencies": { "@ethereumjs/common": "2.5.0", "@ethereumjs/tx": "3.3.2", + "@ethereumjs/util": "^8.1.0", "eth-lib": "0.2.8", - "ethereumjs-util": "^7.1.5", "scrypt-js": "^3.0.1", "uuid": "^9.0.0", - "web3-core": "1.9.0", - "web3-core-helpers": "1.9.0", - "web3-core-method": "1.9.0", - "web3-utils": "1.9.0" - }, - "dependencies": { - "eth-lib": { - "version": "0.2.8", - "resolved": "https://registry.npmjs.org/eth-lib/-/eth-lib-0.2.8.tgz", - "integrity": "sha512-ArJ7x1WcWOlSpzdoTBX8vkwlkSQ85CjjifSZtV4co64vWxSV8geWfPI9x4SVYu3DSxnX4yWFVTtGL+j9DUFLNw==", - "requires": { - "bn.js": "^4.11.6", - "elliptic": "^6.4.0", - "xhr-request-promise": "^0.1.2" - }, - "dependencies": { - "bn.js": { - "version": "4.12.0", - "resolved": "https://registry.npmjs.org/bn.js/-/bn.js-4.12.0.tgz", - "integrity": "sha512-c98Bf3tPniI+scsdk237ku1Dc3ujXQTSgyiPUDEOe7tRkhrqridvh8klBv0HCEso1OLOYcHuCv/cS6DNxKH+ZA==" - } - } - }, - "ethereum-cryptography": { - "version": "0.1.3", - "resolved": "https://registry.npmjs.org/ethereum-cryptography/-/ethereum-cryptography-0.1.3.tgz", - "integrity": "sha512-w8/4x1SGGzc+tO97TASLja6SLd3fRIK2tLVcV2Gx4IB21hE19atll5Cq9o3d0ZmAYC/8aw0ipieTSiekAea4SQ==", - "requires": { - "@types/pbkdf2": "^3.0.0", - "@types/secp256k1": "^4.0.1", - "blakejs": "^1.1.0", - "browserify-aes": "^1.2.0", - "bs58check": "^2.1.2", - "create-hash": "^1.2.0", - "create-hmac": "^1.1.7", - "hash.js": "^1.1.7", - "keccak": "^3.0.0", - "pbkdf2": "^3.0.17", - "randombytes": "^2.1.0", - "safe-buffer": "^5.1.2", - "scrypt-js": "^3.0.0", - "secp256k1": "^4.0.1", - "setimmediate": "^1.0.5" - } - }, - "ethereumjs-util": { - "version": "7.1.5", - "resolved": "https://registry.npmjs.org/ethereumjs-util/-/ethereumjs-util-7.1.5.tgz", - "integrity": "sha512-SDl5kKrQAudFBUe5OJM9Ac6WmMyYmXX/6sTmLZ3ffG2eY6ZIGBes3pEDxNN6V72WyOw4CPD5RomKdsa8DAAwLg==", - "requires": { - "@types/bn.js": "^5.1.0", - "bn.js": "^5.1.2", - "create-hash": "^1.1.2", - "ethereum-cryptography": "^0.1.3", - "rlp": "^2.2.4" - } - }, - "uuid": { - "version": "9.0.0", - "resolved": "https://registry.npmjs.org/uuid/-/uuid-9.0.0.tgz", - "integrity": "sha512-MXcSTerfPa4uqyzStbRoTgt5XIe3x5+42+q1sDuy3R5MDk66URdLMOZe5aPX/SQd+kuYAh0FdP/pO28IkQyTeg==" - } + "web3-core": "1.10.1", + "web3-core-helpers": "1.10.1", + "web3-core-method": "1.10.1", + "web3-utils": "1.10.1" + }, + "engines": { + "node": ">=8.0.0" } }, - "web3-eth-contract": { - "version": "1.9.0", - "resolved": "https://registry.npmjs.org/web3-eth-contract/-/web3-eth-contract-1.9.0.tgz", - "integrity": "sha512-+j26hpSaEtAdUed0TN5rnc+YZOcjPxMjFX4ZBKatvFkImdbVv/tzTvcHlltubSpgb2ZLyZ89lSL6phKYwd2zNQ==", - "requires": { + "node_modules/web3-eth-accounts/node_modules/bn.js": { + "version": "4.12.0", + "license": "MIT" + }, + "node_modules/web3-eth-accounts/node_modules/eth-lib": { + "version": "0.2.8", + "license": "MIT", + "dependencies": { + "bn.js": "^4.11.6", + "elliptic": "^6.4.0", + "xhr-request-promise": "^0.1.2" + } + }, + "node_modules/web3-eth-accounts/node_modules/uuid": { + "version": "9.0.0", + "license": "MIT", + "bin": { + "uuid": "dist/bin/uuid" + } + }, + "node_modules/web3-eth-contract": { + "version": "1.10.1", + "license": "LGPL-3.0", + "dependencies": { "@types/bn.js": "^5.1.1", - "web3-core": "1.9.0", - "web3-core-helpers": "1.9.0", - "web3-core-method": "1.9.0", - "web3-core-promievent": "1.9.0", - "web3-core-subscriptions": "1.9.0", - "web3-eth-abi": "1.9.0", - "web3-utils": "1.9.0" + "web3-core": "1.10.1", + "web3-core-helpers": "1.10.1", + "web3-core-method": "1.10.1", + "web3-core-promievent": "1.10.1", + "web3-core-subscriptions": "1.10.1", + "web3-eth-abi": "1.10.1", + "web3-utils": "1.10.1" + }, + "engines": { + "node": ">=8.0.0" } }, - "web3-eth-ens": { - "version": "1.9.0", - "resolved": "https://registry.npmjs.org/web3-eth-ens/-/web3-eth-ens-1.9.0.tgz", - "integrity": "sha512-LOJZeN+AGe9arhuExnrPPFYQr4WSxXEkpvYIlst/joOEUNLDwfndHnJIK6PI5mXaYSROBtTx6erv+HupzGo7vA==", - "requires": { + "node_modules/web3-eth-ens": { + "version": "1.10.1", + "license": "LGPL-3.0", + "dependencies": { "content-hash": "^2.5.2", "eth-ens-namehash": "2.0.8", - "web3-core": "1.9.0", - "web3-core-helpers": "1.9.0", - "web3-core-promievent": "1.9.0", - "web3-eth-abi": "1.9.0", - "web3-eth-contract": "1.9.0", - "web3-utils": "1.9.0" + "web3-core": "1.10.1", + "web3-core-helpers": "1.10.1", + "web3-core-promievent": "1.10.1", + "web3-eth-abi": "1.10.1", + "web3-eth-contract": "1.10.1", + "web3-utils": "1.10.1" + }, + "engines": { + "node": ">=8.0.0" } }, - "web3-eth-iban": { - "version": "1.9.0", - "resolved": "https://registry.npmjs.org/web3-eth-iban/-/web3-eth-iban-1.9.0.tgz", - "integrity": "sha512-jPAm77PuEs1kE/UrrBFJdPD2PN42pwfXA0gFuuw35bZezhskYML9W4QCxcqnUtceyEA4FUn7K2qTMuCk+23fog==", - "requires": { + "node_modules/web3-eth-iban": { + "version": "1.10.1", + "license": "LGPL-3.0", + "dependencies": { "bn.js": "^5.2.1", - "web3-utils": "1.9.0" + "web3-utils": "1.10.1" + }, + "engines": { + "node": ">=8.0.0" } }, - "web3-eth-personal": { - "version": "1.9.0", - "resolved": "https://registry.npmjs.org/web3-eth-personal/-/web3-eth-personal-1.9.0.tgz", - "integrity": "sha512-r9Ldo/luBqJlv1vCUEQnUS+C3a3ZdbYxVHyfDkj6RWMyCqqo8JE41HWE+pfa0RmB1xnGL2g8TbYcHcqItck/qg==", - "requires": { + "node_modules/web3-eth-personal": { + "version": "1.10.1", + "license": "LGPL-3.0", + "dependencies": { "@types/node": "^12.12.6", - "web3-core": "1.9.0", - "web3-core-helpers": "1.9.0", - "web3-core-method": "1.9.0", - "web3-net": "1.9.0", - "web3-utils": "1.9.0" + "web3-core": "1.10.1", + "web3-core-helpers": "1.10.1", + "web3-core-method": "1.10.1", + "web3-net": "1.10.1", + "web3-utils": "1.10.1" }, - "dependencies": { - "@types/node": { - "version": "12.20.55", - "resolved": "https://registry.npmjs.org/@types/node/-/node-12.20.55.tgz", - "integrity": "sha512-J8xLz7q2OFulZ2cyGTLE1TbbZcjpno7FaN6zdJNrgAdrJ+DZzh/uFR6YrTb4C+nXakvud8Q4+rbhoIWlYQbUFQ==" - } + "engines": { + "node": ">=8.0.0" } }, - "web3-net": { - "version": "1.9.0", - "resolved": "https://registry.npmjs.org/web3-net/-/web3-net-1.9.0.tgz", - "integrity": "sha512-L+fDZFgrLM5Y15aonl2q6L+RvfaImAngmC0Jv45hV2FJ5IfRT0/2ob9etxZmvEBWvOpbqSvghfOhJIT3XZ37Pg==", - "requires": { - "web3-core": "1.9.0", - "web3-core-method": "1.9.0", - "web3-utils": "1.9.0" + "node_modules/web3-eth-personal/node_modules/@types/node": { + "version": "12.20.55", + "license": "MIT" + }, + "node_modules/web3-net": { + "version": "1.10.1", + "license": "LGPL-3.0", + "dependencies": { + "web3-core": "1.10.1", + "web3-core-method": "1.10.1", + "web3-utils": "1.10.1" + }, + "engines": { + "node": ">=8.0.0" } }, - "web3-providers-http": { - "version": "1.9.0", - "resolved": "https://registry.npmjs.org/web3-providers-http/-/web3-providers-http-1.9.0.tgz", - "integrity": "sha512-5+dMNDAE0rRFz6SJpfnBqlVi2J5bB/Ivr2SanMt2YUrkxW5t8betZbzVwRkTbwtUvkqgj3xeUQzqpOttiv+IqQ==", - "requires": { + "node_modules/web3-providers-http": { + "version": "1.10.1", + "license": "LGPL-3.0", + "dependencies": { "abortcontroller-polyfill": "^1.7.3", "cross-fetch": "^3.1.4", "es6-promise": "^4.2.8", - "web3-core-helpers": "1.9.0" + "web3-core-helpers": "1.10.1" + }, + "engines": { + "node": ">=8.0.0" } }, - "web3-providers-ipc": { - "version": "1.9.0", - "resolved": "https://registry.npmjs.org/web3-providers-ipc/-/web3-providers-ipc-1.9.0.tgz", - "integrity": "sha512-cPXU93Du40HCylvjaa5x62DbnGqH+86HpK/+kMcFIzF6sDUBhKpag2tSbYhGbj7GMpfkmDTUiiMLdWnFV6+uBA==", - "requires": { + "node_modules/web3-providers-ipc": { + "version": "1.10.1", + "license": "LGPL-3.0", + "dependencies": { "oboe": "2.1.5", - "web3-core-helpers": "1.9.0" + "web3-core-helpers": "1.10.1" + }, + "engines": { + "node": ">=8.0.0" } }, - "web3-providers-ws": { - "version": "1.9.0", - "resolved": "https://registry.npmjs.org/web3-providers-ws/-/web3-providers-ws-1.9.0.tgz", - "integrity": "sha512-JRVsnQZ7j2k1a2yzBNHe39xqk1ijOv01dfIBFw52VeEkSRzvrOcsPIM/ttSyBuJqt70ntMxXY0ekCrqfleKH/w==", - "requires": { + "node_modules/web3-providers-ws": { + "version": "1.10.1", + "license": "LGPL-3.0", + "dependencies": { "eventemitter3": "4.0.4", - "web3-core-helpers": "1.9.0", + "web3-core-helpers": "1.10.1", "websocket": "^1.0.32" }, - "dependencies": { - "eventemitter3": { - "version": "4.0.4", - "resolved": "https://registry.npmjs.org/eventemitter3/-/eventemitter3-4.0.4.tgz", - "integrity": "sha512-rlaVLnVxtxvoyLsQQFBx53YmXHDxRIzzTLbdfxqi4yocpSjAxXwkU0cScM5JgSKMqEhrZpnvQ2D9gjylR0AimQ==" - } + "engines": { + "node": ">=8.0.0" } }, - "web3-shh": { - "version": "1.9.0", - "resolved": "https://registry.npmjs.org/web3-shh/-/web3-shh-1.9.0.tgz", - "integrity": "sha512-bIBZlralgz4ICCrwkefB2nPPJWfx28NuHIpjB7d9ADKynElubQuqudYhKtSEkKXACuME/BJm0pIFJcJs/gDnMg==", - "requires": { - "web3-core": "1.9.0", - "web3-core-method": "1.9.0", - "web3-core-subscriptions": "1.9.0", - "web3-net": "1.9.0" + "node_modules/web3-providers-ws/node_modules/eventemitter3": { + "version": "4.0.4", + "license": "MIT" + }, + "node_modules/web3-shh": { + "version": "1.10.1", + "hasInstallScript": true, + "license": "LGPL-3.0", + "dependencies": { + "web3-core": "1.10.1", + "web3-core-method": "1.10.1", + "web3-core-subscriptions": "1.10.1", + "web3-net": "1.10.1" + }, + "engines": { + "node": ">=8.0.0" } }, - "web3-utils": { - "version": "1.9.0", - "resolved": "https://registry.npmjs.org/web3-utils/-/web3-utils-1.9.0.tgz", - "integrity": "sha512-p++69rCNNfu2jM9n5+VD/g26l+qkEOQ1m6cfRQCbH8ZRrtquTmrirJMgTmyOoax5a5XRYOuws14aypCOs51pdQ==", - "requires": { + "node_modules/web3-utils": { + "version": "1.10.1", + "license": "LGPL-3.0", + "dependencies": { + "@ethereumjs/util": "^8.1.0", "bn.js": "^5.2.1", "ethereum-bloom-filters": "^1.0.6", - "ethereumjs-util": "^7.1.0", + "ethereum-cryptography": "^2.1.2", "ethjs-unit": "0.1.6", "number-to-bn": "1.7.0", "randombytes": "^2.1.0", "utf8": "3.0.0" }, + "engines": { + "node": ">=8.0.0" + } + }, + "node_modules/web3-utils/node_modules/@noble/curves": { + "version": "1.1.0", + "license": "MIT", "dependencies": { - "ethereum-cryptography": { - "version": "0.1.3", - "resolved": "https://registry.npmjs.org/ethereum-cryptography/-/ethereum-cryptography-0.1.3.tgz", - "integrity": "sha512-w8/4x1SGGzc+tO97TASLja6SLd3fRIK2tLVcV2Gx4IB21hE19atll5Cq9o3d0ZmAYC/8aw0ipieTSiekAea4SQ==", - "requires": { - "@types/pbkdf2": "^3.0.0", - "@types/secp256k1": "^4.0.1", - "blakejs": "^1.1.0", - "browserify-aes": "^1.2.0", - "bs58check": "^2.1.2", - "create-hash": "^1.2.0", - "create-hmac": "^1.1.7", - "hash.js": "^1.1.7", - "keccak": "^3.0.0", - "pbkdf2": "^3.0.17", - "randombytes": "^2.1.0", - "safe-buffer": "^5.1.2", - "scrypt-js": "^3.0.0", - "secp256k1": "^4.0.1", - "setimmediate": "^1.0.5" - } - }, - "ethereumjs-util": { - "version": "7.1.5", - "resolved": "https://registry.npmjs.org/ethereumjs-util/-/ethereumjs-util-7.1.5.tgz", - "integrity": "sha512-SDl5kKrQAudFBUe5OJM9Ac6WmMyYmXX/6sTmLZ3ffG2eY6ZIGBes3pEDxNN6V72WyOw4CPD5RomKdsa8DAAwLg==", - "requires": { - "@types/bn.js": "^5.1.0", - "bn.js": "^5.1.2", - "create-hash": "^1.1.2", - "ethereum-cryptography": "^0.1.3", - "rlp": "^2.2.4" - } - } + "@noble/hashes": "1.3.1" + }, + "funding": { + "url": "https://paulmillr.com/funding/" + } + }, + "node_modules/web3-utils/node_modules/@noble/hashes": { + "version": "1.3.1", + "license": "MIT", + "engines": { + "node": ">= 16" + }, + "funding": { + "url": "https://paulmillr.com/funding/" + } + }, + "node_modules/web3-utils/node_modules/@scure/bip32": { + "version": "1.3.1", + "license": "MIT", + "dependencies": { + "@noble/curves": "~1.1.0", + "@noble/hashes": "~1.3.1", + "@scure/base": "~1.1.0" + }, + "funding": { + "url": "https://paulmillr.com/funding/" + } + }, + "node_modules/web3-utils/node_modules/@scure/bip39": { + "version": "1.2.1", + "license": "MIT", + "dependencies": { + "@noble/hashes": "~1.3.0", + "@scure/base": "~1.1.0" + }, + "funding": { + "url": "https://paulmillr.com/funding/" + } + }, + "node_modules/web3-utils/node_modules/ethereum-cryptography": { + "version": "2.1.2", + "license": "MIT", + "dependencies": { + "@noble/curves": "1.1.0", + "@noble/hashes": "1.3.1", + "@scure/bip32": "1.3.1", + "@scure/bip39": "1.2.1" } }, - "webidl-conversions": { + "node_modules/webidl-conversions": { "version": "6.1.0", - "resolved": "https://registry.npmjs.org/webidl-conversions/-/webidl-conversions-6.1.0.tgz", - "integrity": "sha512-qBIvFLGiBpLjfwmYAaHPXsn+ho5xZnGvyGvsarywGNc8VyQJUMHJ8OBKGGrPER0okBeMDaan4mNBlgBROxuI8w==" - }, - "webpack": { - "version": "5.81.0", - "resolved": "https://registry.npmjs.org/webpack/-/webpack-5.81.0.tgz", - "integrity": "sha512-AAjaJ9S4hYCVODKLQTgG5p5e11hiMawBwV2v8MYLE0C/6UAGLuAF4n1qa9GOwdxnicaP+5k6M5HrLmD4+gIB8Q==", - "requires": { + "license": "BSD-2-Clause", + "engines": { + "node": ">=10.4" + } + }, + "node_modules/webpack": { + "version": "5.88.2", + "resolved": "https://registry.npmjs.org/webpack/-/webpack-5.88.2.tgz", + "integrity": "sha512-JmcgNZ1iKj+aiR0OvTYtWQqJwq37Pf683dY9bVORwVbUrDhLhdn/PlO2sHsFHPkj7sHNQF3JwaAkp49V+Sq1tQ==", + "dependencies": { "@types/eslint-scope": "^3.7.3", "@types/estree": "^1.0.0", "@webassemblyjs/ast": "^1.11.5", "@webassemblyjs/wasm-edit": "^1.11.5", "@webassemblyjs/wasm-parser": "^1.11.5", "acorn": "^8.7.1", - "acorn-import-assertions": "^1.7.6", + "acorn-import-assertions": "^1.9.0", "browserslist": "^4.14.5", "chrome-trace-event": "^1.0.2", - "enhanced-resolve": "^5.13.0", + "enhanced-resolve": "^5.15.0", "es-module-lexer": "^1.2.1", "eslint-scope": "5.1.1", "events": "^3.2.0", @@ -43570,192 +21203,276 @@ "loader-runner": "^4.2.0", "mime-types": "^2.1.27", "neo-async": "^2.6.2", - "schema-utils": "^3.1.2", + "schema-utils": "^3.2.0", "tapable": "^2.1.1", "terser-webpack-plugin": "^5.3.7", "watchpack": "^2.4.0", "webpack-sources": "^3.2.3" }, - "dependencies": { - "eslint-scope": { - "version": "5.1.1", - "resolved": "https://registry.npmjs.org/eslint-scope/-/eslint-scope-5.1.1.tgz", - "integrity": "sha512-2NxwbF/hZ0KpepYN0cNbo+FN6XoK7GaHlQhgx/hIZl6Va0bF45RQOOwhLIy8lQDbuCiadSLCBnH2CFYquit5bw==", - "requires": { - "esrecurse": "^4.3.0", - "estraverse": "^4.1.1" - } - }, - "estraverse": { - "version": "4.3.0", - "resolved": "https://registry.npmjs.org/estraverse/-/estraverse-4.3.0.tgz", - "integrity": "sha512-39nnKffWz8xN1BU/2c79n9nB9HDzo0niYUqx6xyqUnyoAnQyyWpOTdZEeiCch8BBu515t4wp9ZmgVfVhn9EBpw==" + "bin": { + "webpack": "bin/webpack.js" + }, + "engines": { + "node": ">=10.13.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/webpack" + }, + "peerDependenciesMeta": { + "webpack-cli": { + "optional": true } } }, - "webpack-dev-middleware": { + "node_modules/webpack-dev-middleware": { "version": "5.3.3", - "resolved": "https://registry.npmjs.org/webpack-dev-middleware/-/webpack-dev-middleware-5.3.3.tgz", - "integrity": "sha512-hj5CYrY0bZLB+eTO+x/j67Pkrquiy7kWepMHmUMoPsmcUaeEnQJqFzHJOyxgWlq746/wUuA64p9ta34Kyb01pA==", - "requires": { + "license": "MIT", + "dependencies": { "colorette": "^2.0.10", "memfs": "^3.4.3", "mime-types": "^2.1.31", "range-parser": "^1.2.1", "schema-utils": "^4.0.0" }, + "engines": { + "node": ">= 12.13.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/webpack" + }, + "peerDependencies": { + "webpack": "^4.0.0 || ^5.0.0" + } + }, + "node_modules/webpack-dev-middleware/node_modules/ajv": { + "version": "8.12.0", + "license": "MIT", "dependencies": { - "ajv": { - "version": "8.11.0", - "resolved": "https://registry.npmjs.org/ajv/-/ajv-8.11.0.tgz", - "integrity": "sha512-wGgprdCvMalC0BztXvitD2hC04YffAvtsUn93JbGXYLAtCUO4xd17mCCZQxUOItiBwZvJScWo8NIvQMQ71rdpg==", - "requires": { - "fast-deep-equal": "^3.1.1", - "json-schema-traverse": "^1.0.0", - "require-from-string": "^2.0.2", - "uri-js": "^4.2.2" - } - }, - "ajv-keywords": { - "version": "5.1.0", - "resolved": "https://registry.npmjs.org/ajv-keywords/-/ajv-keywords-5.1.0.tgz", - "integrity": "sha512-YCS/JNFAUyr5vAuhk1DWm1CBxRHW9LbJ2ozWeemrIqpbsqKjHVxYPyi5GC0rjZIT5JxJ3virVTS8wk4i/Z+krw==", - "requires": { - "fast-deep-equal": "^3.1.3" - } - }, - "json-schema-traverse": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/json-schema-traverse/-/json-schema-traverse-1.0.0.tgz", - "integrity": "sha512-NM8/P9n3XjXhIZn1lLhkFaACTOURQXjWhV4BA/RnOv8xvgqtqpAX9IO4mRQxSx1Rlo4tqzeqb0sOlruaOy3dug==" - }, - "schema-utils": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/schema-utils/-/schema-utils-4.0.0.tgz", - "integrity": "sha512-1edyXKgh6XnJsJSQ8mKWXnN/BVaIbFMLpouRUrXgVq7WYne5kw3MW7UPhO44uRXQSIpTSXoJbmrR2X0w9kUTyg==", - "requires": { - "@types/json-schema": "^7.0.9", - "ajv": "^8.8.0", - "ajv-formats": "^2.1.1", - "ajv-keywords": "^5.0.0" - } - } + "fast-deep-equal": "^3.1.1", + "json-schema-traverse": "^1.0.0", + "require-from-string": "^2.0.2", + "uri-js": "^4.2.2" + }, + "funding": { + "type": "github", + "url": "https://github.com/sponsors/epoberezkin" + } + }, + "node_modules/webpack-dev-middleware/node_modules/ajv-keywords": { + "version": "5.1.0", + "license": "MIT", + "dependencies": { + "fast-deep-equal": "^3.1.3" + }, + "peerDependencies": { + "ajv": "^8.8.2" + } + }, + "node_modules/webpack-dev-middleware/node_modules/json-schema-traverse": { + "version": "1.0.0", + "license": "MIT" + }, + "node_modules/webpack-dev-middleware/node_modules/schema-utils": { + "version": "4.2.0", + "license": "MIT", + "dependencies": { + "@types/json-schema": "^7.0.9", + "ajv": "^8.9.0", + "ajv-formats": "^2.1.1", + "ajv-keywords": "^5.1.0" + }, + "engines": { + "node": ">= 12.13.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/webpack" } }, - "webpack-dev-server": { - "version": "4.9.2", - "resolved": "https://registry.npmjs.org/webpack-dev-server/-/webpack-dev-server-4.9.2.tgz", - "integrity": "sha512-H95Ns95dP24ZsEzO6G9iT+PNw4Q7ltll1GfJHV4fKphuHWgKFzGHWi4alTlTnpk1SPPk41X+l2RB7rLfIhnB9Q==", - "requires": { + "node_modules/webpack-dev-server": { + "version": "4.15.1", + "license": "MIT", + "dependencies": { "@types/bonjour": "^3.5.9", "@types/connect-history-api-fallback": "^1.3.5", "@types/express": "^4.17.13", "@types/serve-index": "^1.9.1", "@types/serve-static": "^1.13.10", "@types/sockjs": "^0.3.33", - "@types/ws": "^8.5.1", + "@types/ws": "^8.5.5", "ansi-html-community": "^0.0.8", "bonjour-service": "^1.0.11", "chokidar": "^3.5.3", "colorette": "^2.0.10", "compression": "^1.7.4", - "connect-history-api-fallback": "^1.6.0", + "connect-history-api-fallback": "^2.0.0", "default-gateway": "^6.0.3", "express": "^4.17.3", "graceful-fs": "^4.2.6", "html-entities": "^2.3.2", "http-proxy-middleware": "^2.0.3", "ipaddr.js": "^2.0.1", + "launch-editor": "^2.6.0", "open": "^8.0.9", "p-retry": "^4.5.0", "rimraf": "^3.0.2", "schema-utils": "^4.0.0", - "selfsigned": "^2.0.1", + "selfsigned": "^2.1.1", "serve-index": "^1.9.1", "sockjs": "^0.3.24", "spdy": "^4.0.2", "webpack-dev-middleware": "^5.3.1", - "ws": "^8.4.2" + "ws": "^8.13.0" }, - "dependencies": { - "ajv": { - "version": "8.11.0", - "resolved": "https://registry.npmjs.org/ajv/-/ajv-8.11.0.tgz", - "integrity": "sha512-wGgprdCvMalC0BztXvitD2hC04YffAvtsUn93JbGXYLAtCUO4xd17mCCZQxUOItiBwZvJScWo8NIvQMQ71rdpg==", - "requires": { - "fast-deep-equal": "^3.1.1", - "json-schema-traverse": "^1.0.0", - "require-from-string": "^2.0.2", - "uri-js": "^4.2.2" - } - }, - "ajv-keywords": { - "version": "5.1.0", - "resolved": "https://registry.npmjs.org/ajv-keywords/-/ajv-keywords-5.1.0.tgz", - "integrity": "sha512-YCS/JNFAUyr5vAuhk1DWm1CBxRHW9LbJ2ozWeemrIqpbsqKjHVxYPyi5GC0rjZIT5JxJ3virVTS8wk4i/Z+krw==", - "requires": { - "fast-deep-equal": "^3.1.3" - } - }, - "json-schema-traverse": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/json-schema-traverse/-/json-schema-traverse-1.0.0.tgz", - "integrity": "sha512-NM8/P9n3XjXhIZn1lLhkFaACTOURQXjWhV4BA/RnOv8xvgqtqpAX9IO4mRQxSx1Rlo4tqzeqb0sOlruaOy3dug==" + "bin": { + "webpack-dev-server": "bin/webpack-dev-server.js" + }, + "engines": { + "node": ">= 12.13.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/webpack" + }, + "peerDependencies": { + "webpack": "^4.37.0 || ^5.0.0" + }, + "peerDependenciesMeta": { + "webpack": { + "optional": true }, - "schema-utils": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/schema-utils/-/schema-utils-4.0.0.tgz", - "integrity": "sha512-1edyXKgh6XnJsJSQ8mKWXnN/BVaIbFMLpouRUrXgVq7WYne5kw3MW7UPhO44uRXQSIpTSXoJbmrR2X0w9kUTyg==", - "requires": { - "@types/json-schema": "^7.0.9", - "ajv": "^8.8.0", - "ajv-formats": "^2.1.1", - "ajv-keywords": "^5.0.0" - } + "webpack-cli": { + "optional": true + } + } + }, + "node_modules/webpack-dev-server/node_modules/ajv": { + "version": "8.12.0", + "license": "MIT", + "dependencies": { + "fast-deep-equal": "^3.1.1", + "json-schema-traverse": "^1.0.0", + "require-from-string": "^2.0.2", + "uri-js": "^4.2.2" + }, + "funding": { + "type": "github", + "url": "https://github.com/sponsors/epoberezkin" + } + }, + "node_modules/webpack-dev-server/node_modules/ajv-keywords": { + "version": "5.1.0", + "license": "MIT", + "dependencies": { + "fast-deep-equal": "^3.1.3" + }, + "peerDependencies": { + "ajv": "^8.8.2" + } + }, + "node_modules/webpack-dev-server/node_modules/json-schema-traverse": { + "version": "1.0.0", + "license": "MIT" + }, + "node_modules/webpack-dev-server/node_modules/schema-utils": { + "version": "4.2.0", + "license": "MIT", + "dependencies": { + "@types/json-schema": "^7.0.9", + "ajv": "^8.9.0", + "ajv-formats": "^2.1.1", + "ajv-keywords": "^5.1.0" + }, + "engines": { + "node": ">= 12.13.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/webpack" + } + }, + "node_modules/webpack-dev-server/node_modules/ws": { + "version": "8.13.0", + "license": "MIT", + "engines": { + "node": ">=10.0.0" + }, + "peerDependencies": { + "bufferutil": "^4.0.1", + "utf-8-validate": ">=5.0.2" + }, + "peerDependenciesMeta": { + "bufferutil": { + "optional": true }, - "ws": { - "version": "8.8.0", - "resolved": "https://registry.npmjs.org/ws/-/ws-8.8.0.tgz", - "integrity": "sha512-JDAgSYQ1ksuwqfChJusw1LSJ8BizJ2e/vVu5Lxjq3YvNJNlROv1ui4i+c/kUUrPheBvQl4c5UbERhTwKa6QBJQ==", - "requires": {} + "utf-8-validate": { + "optional": true } } }, - "webpack-manifest-plugin": { + "node_modules/webpack-manifest-plugin": { "version": "4.1.1", - "resolved": "https://registry.npmjs.org/webpack-manifest-plugin/-/webpack-manifest-plugin-4.1.1.tgz", - "integrity": "sha512-YXUAwxtfKIJIKkhg03MKuiFAD72PlrqCiwdwO4VEXdRO5V0ORCNwaOwAZawPZalCbmH9kBDmXnNeQOw+BIEiow==", - "requires": { + "license": "MIT", + "dependencies": { "tapable": "^2.0.0", "webpack-sources": "^2.2.0" }, + "engines": { + "node": ">=12.22.0" + }, + "peerDependencies": { + "webpack": "^4.44.2 || ^5.47.0" + } + }, + "node_modules/webpack-manifest-plugin/node_modules/source-map": { + "version": "0.6.1", + "license": "BSD-3-Clause", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/webpack-manifest-plugin/node_modules/webpack-sources": { + "version": "2.3.1", + "license": "MIT", "dependencies": { - "source-map": { - "version": "0.6.1", - "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz", - "integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==" - }, - "webpack-sources": { - "version": "2.3.1", - "resolved": "https://registry.npmjs.org/webpack-sources/-/webpack-sources-2.3.1.tgz", - "integrity": "sha512-y9EI9AO42JjEcrTJFOYmVywVZdKVUfOvDUPsJea5GIr1JOEGFVqwlY2K098fFoIjOkDzHn2AjRvM8dsBZu+gCA==", - "requires": { - "source-list-map": "^2.0.1", - "source-map": "^0.6.1" - } - } + "source-list-map": "^2.0.1", + "source-map": "^0.6.1" + }, + "engines": { + "node": ">=10.13.0" } }, - "webpack-sources": { + "node_modules/webpack-sources": { "version": "3.2.3", - "resolved": "https://registry.npmjs.org/webpack-sources/-/webpack-sources-3.2.3.tgz", - "integrity": "sha512-/DyMEOrDgLKKIG0fmvtz+4dUX/3Ghozwgm6iPp8KRhvn+eQf9+Q7GWxVNMk3+uCPWfdXYC4ExGBckIXdFEfH1w==" + "license": "MIT", + "engines": { + "node": ">=10.13.0" + } + }, + "node_modules/webpack/node_modules/eslint-scope": { + "version": "5.1.1", + "license": "BSD-2-Clause", + "dependencies": { + "esrecurse": "^4.3.0", + "estraverse": "^4.1.1" + }, + "engines": { + "node": ">=8.0.0" + } + }, + "node_modules/webpack/node_modules/estraverse": { + "version": "4.3.0", + "license": "BSD-2-Clause", + "engines": { + "node": ">=4.0" + } }, - "websocket": { + "node_modules/websocket": { "version": "1.0.34", - "resolved": "https://registry.npmjs.org/websocket/-/websocket-1.0.34.tgz", - "integrity": "sha512-PRDso2sGwF6kM75QykIesBijKSVceR6jL2G8NGYyq2XrItNC2P5/qL5XeR056GhA+Ly7JMFvJb9I312mJfmqnQ==", - "requires": { + "license": "Apache-2.0", + "dependencies": { "bufferutil": "^4.0.1", "debug": "^2.2.0", "es5-ext": "^0.10.50", @@ -43763,128 +21480,175 @@ "utf-8-validate": "^5.0.2", "yaeti": "^0.0.6" }, - "dependencies": { - "debug": { - "version": "2.6.9", - "resolved": "https://registry.npmjs.org/debug/-/debug-2.6.9.tgz", - "integrity": "sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA==", - "requires": { - "ms": "2.0.0" - } - }, - "ms": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/ms/-/ms-2.0.0.tgz", - "integrity": "sha512-Tpp60P6IUJDTuOq/5Z8cdskzJujfwqfOTkrwIwj7IRISpnkJnT6SyJ4PCPnGMoFjC9ddhal5KVIYtAt97ix05A==" - } + "engines": { + "node": ">=4.0.0" } }, - "websocket-driver": { + "node_modules/websocket-driver": { "version": "0.7.4", - "resolved": "https://registry.npmjs.org/websocket-driver/-/websocket-driver-0.7.4.tgz", - "integrity": "sha512-b17KeDIQVjvb0ssuSDF2cYXSg2iztliJ4B9WdsuB6J952qCPKmnVq4DyW5motImXHDC1cBT/1UezrJVsKw5zjg==", - "requires": { + "license": "Apache-2.0", + "dependencies": { "http-parser-js": ">=0.5.1", "safe-buffer": ">=5.1.0", "websocket-extensions": ">=0.1.1" + }, + "engines": { + "node": ">=0.8.0" } }, - "websocket-extensions": { + "node_modules/websocket-extensions": { "version": "0.1.4", - "resolved": "https://registry.npmjs.org/websocket-extensions/-/websocket-extensions-0.1.4.tgz", - "integrity": "sha512-OqedPIGOfsDlo31UNwYbCFMSaO9m9G/0faIHj5/dZFDMFqPTcx6UwqyOy3COEaEOg/9VsGIpdqn62W5KhoKSpg==" + "license": "Apache-2.0", + "engines": { + "node": ">=0.8.0" + } }, - "whatwg-encoding": { + "node_modules/websocket/node_modules/debug": { + "version": "2.6.9", + "license": "MIT", + "dependencies": { + "ms": "2.0.0" + } + }, + "node_modules/websocket/node_modules/ms": { + "version": "2.0.0", + "license": "MIT" + }, + "node_modules/whatwg-encoding": { "version": "1.0.5", - "resolved": "https://registry.npmjs.org/whatwg-encoding/-/whatwg-encoding-1.0.5.tgz", - "integrity": "sha512-b5lim54JOPN9HtzvK9HFXvBma/rnfFeqsic0hSpjtDbVxR3dJKLc+KB4V6GgiGOvl7CY/KNh8rxSo9DKQrnUEw==", - "requires": { + "license": "MIT", + "dependencies": { "iconv-lite": "0.4.24" - }, + } + }, + "node_modules/whatwg-encoding/node_modules/iconv-lite": { + "version": "0.4.24", + "license": "MIT", "dependencies": { - "iconv-lite": { - "version": "0.4.24", - "resolved": "https://registry.npmjs.org/iconv-lite/-/iconv-lite-0.4.24.tgz", - "integrity": "sha512-v3MXnZAcvnywkTUEZomIActle7RXXeedOR31wwl7VlyoXO4Qi9arvSenNQWne1TcRwhCL1HwLI21bEqdpj8/rA==", - "requires": { - "safer-buffer": ">= 2.1.2 < 3" - } - } + "safer-buffer": ">= 2.1.2 < 3" + }, + "engines": { + "node": ">=0.10.0" } }, - "whatwg-fetch": { - "version": "3.6.2", - "resolved": "https://registry.npmjs.org/whatwg-fetch/-/whatwg-fetch-3.6.2.tgz", - "integrity": "sha512-bJlen0FcuU/0EMLrdbJ7zOnW6ITZLrZMIarMUVmdKtsGvZna8vxKYaexICWPfZ8qwf9fzNq+UEIZrnSaApt6RA==" + "node_modules/whatwg-fetch": { + "version": "3.6.17", + "license": "MIT" }, - "whatwg-mimetype": { + "node_modules/whatwg-mimetype": { "version": "2.3.0", - "resolved": "https://registry.npmjs.org/whatwg-mimetype/-/whatwg-mimetype-2.3.0.tgz", - "integrity": "sha512-M4yMwr6mAnQz76TbJm914+gPpB/nCwvZbJU28cUD6dR004SAxDLOOSUaB1JDRqLtaOV/vi0IC5lEAGFgrjGv/g==" + "license": "MIT" }, - "whatwg-url": { + "node_modules/whatwg-url": { "version": "8.7.0", - "resolved": "https://registry.npmjs.org/whatwg-url/-/whatwg-url-8.7.0.tgz", - "integrity": "sha512-gAojqb/m9Q8a5IV96E3fHJM70AzCkgt4uXYX2O7EmuyOnLrViCQlsEBmF9UQIu3/aeAIp2U17rtbpZWNntQqdg==", - "requires": { + "license": "MIT", + "dependencies": { "lodash": "^4.7.0", "tr46": "^2.1.0", "webidl-conversions": "^6.1.0" + }, + "engines": { + "node": ">=10" } }, - "which": { + "node_modules/which": { "version": "2.0.2", - "resolved": "https://registry.npmjs.org/which/-/which-2.0.2.tgz", - "integrity": "sha512-BLI3Tl1TW3Pvl70l3yq3Y64i+awpwXqsGBYWkkqMtnbXgrMD+yj7rhW0kuEDxzJaYXGjEW5ogapKNMEKNMjibA==", - "requires": { + "license": "ISC", + "dependencies": { "isexe": "^2.0.0" + }, + "bin": { + "node-which": "bin/node-which" + }, + "engines": { + "node": ">= 8" } }, - "which-boxed-primitive": { + "node_modules/which-boxed-primitive": { "version": "1.0.2", - "resolved": "https://registry.npmjs.org/which-boxed-primitive/-/which-boxed-primitive-1.0.2.tgz", - "integrity": "sha512-bwZdv0AKLpplFY2KZRX6TvyuN7ojjr7lwkg6ml0roIy9YeuSr7JS372qlNW18UQYzgYK9ziGcerWqZOmEn9VNg==", - "requires": { + "license": "MIT", + "dependencies": { "is-bigint": "^1.0.1", "is-boolean-object": "^1.1.0", "is-number-object": "^1.0.4", "is-string": "^1.0.5", "is-symbol": "^1.0.3" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/which-builtin-type": { + "version": "1.1.3", + "license": "MIT", + "dependencies": { + "function.prototype.name": "^1.1.5", + "has-tostringtag": "^1.0.0", + "is-async-function": "^2.0.0", + "is-date-object": "^1.0.5", + "is-finalizationregistry": "^1.0.2", + "is-generator-function": "^1.0.10", + "is-regex": "^1.1.4", + "is-weakref": "^1.0.2", + "isarray": "^2.0.5", + "which-boxed-primitive": "^1.0.2", + "which-collection": "^1.0.1", + "which-typed-array": "^1.1.9" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/which-collection": { + "version": "1.0.1", + "license": "MIT", + "dependencies": { + "is-map": "^2.0.1", + "is-set": "^2.0.1", + "is-weakmap": "^2.0.1", + "is-weakset": "^2.0.1" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" } }, - "which-module": { + "node_modules/which-module": { "version": "2.0.1", - "resolved": "https://registry.npmjs.org/which-module/-/which-module-2.0.1.tgz", - "integrity": "sha512-iBdZ57RDvnOR9AGBhML2vFZf7h8vmBjhoaZqODJBFWHVtKkDmKuHai3cx5PgVMrX5YDNp27AofYbAwctSS+vhQ==" + "license": "ISC" }, - "which-typed-array": { - "version": "1.1.9", - "resolved": "https://registry.npmjs.org/which-typed-array/-/which-typed-array-1.1.9.tgz", - "integrity": "sha512-w9c4xkx6mPidwp7180ckYWfMmvxpjlZuIudNtDf4N/tTAUB8VJbX25qZoAsrtGuYNnGw3pa0AXgbGKRB8/EceA==", - "requires": { + "node_modules/which-typed-array": { + "version": "1.1.11", + "license": "MIT", + "dependencies": { "available-typed-arrays": "^1.0.5", "call-bind": "^1.0.2", "for-each": "^0.3.3", "gopd": "^1.0.1", - "has-tostringtag": "^1.0.0", - "is-typed-array": "^1.1.10" + "has-tostringtag": "^1.0.0" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" } }, - "wicg-inert": { + "node_modules/wicg-inert": { "version": "3.1.2", - "resolved": "https://registry.npmjs.org/wicg-inert/-/wicg-inert-3.1.2.tgz", - "integrity": "sha512-Ba9tGNYxXwaqKEi9sJJvPMKuo063umUPsHN0JJsjrs2j8KDSzkWLMZGZ+MH1Jf1Fq4OWZ5HsESJID6nRza2ang==" + "license": "W3C-20150513" }, - "wido": { + "node_modules/wido": { "version": "0.2.8", - "resolved": "https://registry.npmjs.org/wido/-/wido-0.2.8.tgz", - "integrity": "sha512-jPjVdVXfGTXeR+DM7ZHF8UONeaScpQQZh+drhRSZQZEKO6rl3jZnJAZUGNQn/49mJ9JmU8gLFPSePyDssz64UQ==" + "license": "UNLICENSED" }, - "wido-widget": { - "version": "1.0.8", - "resolved": "https://registry.npmjs.org/wido-widget/-/wido-widget-1.0.8.tgz", - "integrity": "sha512-qeoqVnIX9rlFck0YOWj8g0r4GZSFzZlzR7Oerabf/3GQnFkJDgv/n2VMisizDKFvoKtDf9N1DuR+K4tRqpZNXw==", - "requires": { + "node_modules/wido-widget": { + "version": "1.6.1", + "resolved": "https://registry.npmjs.org/wido-widget/-/wido-widget-1.6.1.tgz", + "integrity": "sha512-7BtjtABwl0AW01C5hRK7nGvXjY78Q4Q2I5FHqN8YDu2DXNPYv5TNWl2LsomnmkyTkfW3qojfJWy0cuhw9l1hGg==", + "dependencies": { "@argent/get-starknet": "^5.2.0", "@babel/runtime": ">=7.17.0", "@fontsource/ibm-plex-mono": "^4.5.1", @@ -43894,20 +21658,15 @@ "@uniswap/conedison": "^1.2.1", "@uniswap/permit2-sdk": "^1.2.0", "@uniswap/redux-multicall": "^1.1.8", - "@uniswap/router-sdk": "^1.3.0", "@uniswap/sdk-core": "^3.0.1", - "@uniswap/smart-order-router": "^2.10.0", "@uniswap/token-lists": "^1.0.0-beta.30", - "@uniswap/universal-router-sdk": "^1.3.4", "@uniswap/v2-sdk": "^3.0.1", "@uniswap/v3-sdk": "^3.8.2", "@web3-react/core": "^6.1.9", "@web3-react/injected-connector": "^6.0.7", "ajv": "^8.11.0", "ajv-formats": "^2.1.1", - "bufferutil": "^4.0.6", "cids": "^1.0.0", - "encoding": "^0.1.13", "ethers": "^5.6.1", "immer": "^9.0.6", "jotai": "1.4.0", @@ -43937,401 +21696,449 @@ "styled-components": ">=5", "tiny-invariant": "^1.2.0", "typedoc": "^0.23.25", - "utf-8-validate": "^5.0.8", "wcag-contrast": "^3.0.0", "web3": "^1.8.2", "wicg-inert": "^3.1.1", "wido": "^0.2.6" }, + "optionalDependencies": { + "bufferutil": "^4.0.6", + "encoding": "^0.1.13", + "utf-8-validate": "^5.0.8" + }, + "peerDependencies": { + "@babel/runtime": ">=7.17.0", + "ethers": "^5.6.1", + "react": ">=17.0.1", + "react-dom": ">=17.0.1", + "react-redux": ">=8.0.5", + "redux": ">=4.1.2", + "styled-components": ">=5" + } + }, + "node_modules/wido-widget/node_modules/@argent/get-starknet": { + "version": "5.3.21", + "dependencies": { + "get-starknet": "^1.0.0" + } + }, + "node_modules/wido-widget/node_modules/@argent/get-starknet/node_modules/get-starknet": { + "version": "1.5.0", + "license": "MIT", + "dependencies": { + "bowser": "^2.11.0" + }, + "peerDependencies": { + "starknet": "^3.12.3" + } + }, + "node_modules/wido-widget/node_modules/@argent/get-starknet/node_modules/starknet": { + "version": "3.19.0", + "license": "MIT", + "peer": true, + "dependencies": { + "@ethersproject/bytes": "^5.6.1", + "bn.js": "^5.2.1", + "cross-fetch": "^3.1.5", + "elliptic": "^6.5.4", + "ethereum-cryptography": "^1.0.3", + "hash.js": "^1.1.7", + "json-bigint": "^1.0.0", + "minimalistic-assert": "^1.0.1", + "pako": "^2.0.4", + "ts-custom-error": "^3.2.0", + "url-join": "^4.0.1" + } + }, + "node_modules/wido-widget/node_modules/ajv": { + "version": "8.12.0", + "license": "MIT", + "dependencies": { + "fast-deep-equal": "^3.1.1", + "json-schema-traverse": "^1.0.0", + "require-from-string": "^2.0.2", + "uri-js": "^4.2.2" + }, + "funding": { + "type": "github", + "url": "https://github.com/sponsors/epoberezkin" + } + }, + "node_modules/wido-widget/node_modules/json-schema-traverse": { + "version": "1.0.0", + "license": "MIT" + }, + "node_modules/wido-widget/node_modules/starknet": { + "version": "4.22.0", + "license": "MIT", + "dependencies": { + "@ethersproject/bytes": "^5.6.1", + "bn.js": "^5.2.1", + "elliptic": "^6.5.4", + "ethereum-cryptography": "^1.0.3", + "hash.js": "^1.1.7", + "isomorphic-fetch": "^3.0.0", + "json-bigint": "^1.0.0", + "minimalistic-assert": "^1.0.1", + "pako": "^2.0.4", + "ts-custom-error": "^3.3.1", + "url-join": "^4.0.1" + } + }, + "node_modules/wordwrapjs": { + "version": "4.0.1", + "dev": true, + "license": "MIT", + "dependencies": { + "reduce-flatten": "^2.0.0", + "typical": "^5.2.0" + }, + "engines": { + "node": ">=8.0.0" + } + }, + "node_modules/wordwrapjs/node_modules/typical": { + "version": "5.2.0", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=8" + } + }, + "node_modules/workbox-background-sync": { + "version": "6.6.0", + "license": "MIT", + "dependencies": { + "idb": "^7.0.1", + "workbox-core": "6.6.0" + } + }, + "node_modules/workbox-broadcast-update": { + "version": "6.6.0", + "license": "MIT", + "dependencies": { + "workbox-core": "6.6.0" + } + }, + "node_modules/workbox-build": { + "version": "6.6.0", + "license": "MIT", + "dependencies": { + "@apideck/better-ajv-errors": "^0.3.1", + "@babel/core": "^7.11.1", + "@babel/preset-env": "^7.11.0", + "@babel/runtime": "^7.11.2", + "@rollup/plugin-babel": "^5.2.0", + "@rollup/plugin-node-resolve": "^11.2.1", + "@rollup/plugin-replace": "^2.4.1", + "@surma/rollup-plugin-off-main-thread": "^2.2.3", + "ajv": "^8.6.0", + "common-tags": "^1.8.0", + "fast-json-stable-stringify": "^2.1.0", + "fs-extra": "^9.0.1", + "glob": "^7.1.6", + "lodash": "^4.17.20", + "pretty-bytes": "^5.3.0", + "rollup": "^2.43.1", + "rollup-plugin-terser": "^7.0.0", + "source-map": "^0.8.0-beta.0", + "stringify-object": "^3.3.0", + "strip-comments": "^2.0.1", + "tempy": "^0.6.0", + "upath": "^1.2.0", + "workbox-background-sync": "6.6.0", + "workbox-broadcast-update": "6.6.0", + "workbox-cacheable-response": "6.6.0", + "workbox-core": "6.6.0", + "workbox-expiration": "6.6.0", + "workbox-google-analytics": "6.6.0", + "workbox-navigation-preload": "6.6.0", + "workbox-precaching": "6.6.0", + "workbox-range-requests": "6.6.0", + "workbox-recipes": "6.6.0", + "workbox-routing": "6.6.0", + "workbox-strategies": "6.6.0", + "workbox-streams": "6.6.0", + "workbox-sw": "6.6.0", + "workbox-window": "6.6.0" + }, + "engines": { + "node": ">=10.0.0" + } + }, + "node_modules/workbox-build/node_modules/@apideck/better-ajv-errors": { + "version": "0.3.6", + "license": "MIT", + "dependencies": { + "json-schema": "^0.4.0", + "jsonpointer": "^5.0.0", + "leven": "^3.1.0" + }, + "engines": { + "node": ">=10" + }, + "peerDependencies": { + "ajv": ">=8" + } + }, + "node_modules/workbox-build/node_modules/ajv": { + "version": "8.12.0", + "license": "MIT", + "dependencies": { + "fast-deep-equal": "^3.1.1", + "json-schema-traverse": "^1.0.0", + "require-from-string": "^2.0.2", + "uri-js": "^4.2.2" + }, + "funding": { + "type": "github", + "url": "https://github.com/sponsors/epoberezkin" + } + }, + "node_modules/workbox-build/node_modules/fs-extra": { + "version": "9.1.0", + "license": "MIT", "dependencies": { - "ajv": { - "version": "8.12.0", - "resolved": "https://registry.npmjs.org/ajv/-/ajv-8.12.0.tgz", - "integrity": "sha512-sRu1kpcO9yLtYxBKvqfTeh9KzZEwO3STyX1HT+4CaDzC6HpTGYhIhPIzj9XuKU7KYDwnaeh5hcOwjy1QuJzBPA==", - "requires": { - "fast-deep-equal": "^3.1.1", - "json-schema-traverse": "^1.0.0", - "require-from-string": "^2.0.2", - "uri-js": "^4.2.2" - } - }, - "json-schema-traverse": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/json-schema-traverse/-/json-schema-traverse-1.0.0.tgz", - "integrity": "sha512-NM8/P9n3XjXhIZn1lLhkFaACTOURQXjWhV4BA/RnOv8xvgqtqpAX9IO4mRQxSx1Rlo4tqzeqb0sOlruaOy3dug==" - } + "at-least-node": "^1.0.0", + "graceful-fs": "^4.2.0", + "jsonfile": "^6.0.1", + "universalify": "^2.0.0" + }, + "engines": { + "node": ">=10" } }, - "word-wrap": { - "version": "1.2.3", - "resolved": "https://registry.npmjs.org/word-wrap/-/word-wrap-1.2.3.tgz", - "integrity": "sha512-Hz/mrNwitNRh/HUAtM/VT/5VH+ygD6DV7mYKZAtHOrbs8U7lvPS6xf7EJKMF0uW1KJCl0H701g3ZGus+muE5vQ==" + "node_modules/workbox-build/node_modules/json-schema-traverse": { + "version": "1.0.0", + "license": "MIT" }, - "wordwrapjs": { - "version": "4.0.1", - "resolved": "https://registry.npmjs.org/wordwrapjs/-/wordwrapjs-4.0.1.tgz", - "integrity": "sha512-kKlNACbvHrkpIw6oPeYDSmdCTu2hdMHoyXLTcUKala++lx5Y+wjJ/e474Jqv5abnVmwxw08DiTuHmw69lJGksA==", - "dev": true, - "requires": { - "reduce-flatten": "^2.0.0", - "typical": "^5.2.0" - }, + "node_modules/workbox-build/node_modules/source-map": { + "version": "0.8.0-beta.0", + "license": "BSD-3-Clause", "dependencies": { - "typical": { - "version": "5.2.0", - "resolved": "https://registry.npmjs.org/typical/-/typical-5.2.0.tgz", - "integrity": "sha512-dvdQgNDNJo+8B2uBQoqdb11eUCE1JQXhvjC/CZtgvZseVd5TYMXnq0+vuUemXbd/Se29cTaUuPX3YIc2xgbvIg==", - "dev": true - } + "whatwg-url": "^7.0.0" + }, + "engines": { + "node": ">= 8" } }, - "workbox-background-sync": { - "version": "6.5.3", - "resolved": "https://registry.npmjs.org/workbox-background-sync/-/workbox-background-sync-6.5.3.tgz", - "integrity": "sha512-0DD/V05FAcek6tWv9XYj2w5T/plxhDSpclIcAGjA/b7t/6PdaRkQ7ZgtAX6Q/L7kV7wZ8uYRJUoH11VjNipMZw==", - "requires": { - "idb": "^6.1.4", - "workbox-core": "6.5.3" + "node_modules/workbox-build/node_modules/tr46": { + "version": "1.0.1", + "license": "MIT", + "dependencies": { + "punycode": "^2.1.0" } }, - "workbox-broadcast-update": { - "version": "6.5.3", - "resolved": "https://registry.npmjs.org/workbox-broadcast-update/-/workbox-broadcast-update-6.5.3.tgz", - "integrity": "sha512-4AwCIA5DiDrYhlN+Miv/fp5T3/whNmSL+KqhTwRBTZIL6pvTgE4lVuRzAt1JltmqyMcQ3SEfCdfxczuI4kwFQg==", - "requires": { - "workbox-core": "6.5.3" - } + "node_modules/workbox-build/node_modules/webidl-conversions": { + "version": "4.0.2", + "license": "BSD-2-Clause" }, - "workbox-build": { - "version": "6.5.3", - "resolved": "https://registry.npmjs.org/workbox-build/-/workbox-build-6.5.3.tgz", - "integrity": "sha512-8JNHHS7u13nhwIYCDea9MNXBNPHXCs5KDZPKI/ZNTr3f4sMGoD7hgFGecbyjX1gw4z6e9bMpMsOEJNyH5htA/w==", - "requires": { - "@apideck/better-ajv-errors": "^0.3.1", - "@babel/core": "^7.11.1", - "@babel/preset-env": "^7.11.0", - "@babel/runtime": "^7.11.2", - "@rollup/plugin-babel": "^5.2.0", - "@rollup/plugin-node-resolve": "^11.2.1", - "@rollup/plugin-replace": "^2.4.1", - "@surma/rollup-plugin-off-main-thread": "^2.2.3", - "ajv": "^8.6.0", - "common-tags": "^1.8.0", - "fast-json-stable-stringify": "^2.1.0", - "fs-extra": "^9.0.1", - "glob": "^7.1.6", - "lodash": "^4.17.20", - "pretty-bytes": "^5.3.0", - "rollup": "^2.43.1", - "rollup-plugin-terser": "^7.0.0", - "source-map": "^0.8.0-beta.0", - "stringify-object": "^3.3.0", - "strip-comments": "^2.0.1", - "tempy": "^0.6.0", - "upath": "^1.2.0", - "workbox-background-sync": "6.5.3", - "workbox-broadcast-update": "6.5.3", - "workbox-cacheable-response": "6.5.3", - "workbox-core": "6.5.3", - "workbox-expiration": "6.5.3", - "workbox-google-analytics": "6.5.3", - "workbox-navigation-preload": "6.5.3", - "workbox-precaching": "6.5.3", - "workbox-range-requests": "6.5.3", - "workbox-recipes": "6.5.3", - "workbox-routing": "6.5.3", - "workbox-strategies": "6.5.3", - "workbox-streams": "6.5.3", - "workbox-sw": "6.5.3", - "workbox-window": "6.5.3" - }, - "dependencies": { - "@apideck/better-ajv-errors": { - "version": "0.3.6", - "resolved": "https://registry.npmjs.org/@apideck/better-ajv-errors/-/better-ajv-errors-0.3.6.tgz", - "integrity": "sha512-P+ZygBLZtkp0qqOAJJVX4oX/sFo5JR3eBWwwuqHHhK0GIgQOKWrAfiAaWX0aArHkRWHMuggFEgAZNxVPwPZYaA==", - "requires": { - "json-schema": "^0.4.0", - "jsonpointer": "^5.0.0", - "leven": "^3.1.0" - } - }, - "ajv": { - "version": "8.11.0", - "resolved": "https://registry.npmjs.org/ajv/-/ajv-8.11.0.tgz", - "integrity": "sha512-wGgprdCvMalC0BztXvitD2hC04YffAvtsUn93JbGXYLAtCUO4xd17mCCZQxUOItiBwZvJScWo8NIvQMQ71rdpg==", - "requires": { - "fast-deep-equal": "^3.1.1", - "json-schema-traverse": "^1.0.0", - "require-from-string": "^2.0.2", - "uri-js": "^4.2.2" - } - }, - "fs-extra": { - "version": "9.1.0", - "resolved": "https://registry.npmjs.org/fs-extra/-/fs-extra-9.1.0.tgz", - "integrity": "sha512-hcg3ZmepS30/7BSFqRvoo3DOMQu7IjqxO5nCDt+zM9XWjb33Wg7ziNT+Qvqbuc3+gWpzO02JubVyk2G4Zvo1OQ==", - "requires": { - "at-least-node": "^1.0.0", - "graceful-fs": "^4.2.0", - "jsonfile": "^6.0.1", - "universalify": "^2.0.0" - } - }, - "json-schema-traverse": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/json-schema-traverse/-/json-schema-traverse-1.0.0.tgz", - "integrity": "sha512-NM8/P9n3XjXhIZn1lLhkFaACTOURQXjWhV4BA/RnOv8xvgqtqpAX9IO4mRQxSx1Rlo4tqzeqb0sOlruaOy3dug==" - }, - "source-map": { - "version": "0.8.0-beta.0", - "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.8.0-beta.0.tgz", - "integrity": "sha512-2ymg6oRBpebeZi9UUNsgQ89bhx01TcTkmNTGnNO88imTmbSgy4nfujrgVEFKWpMTEGA11EDkTt7mqObTPdigIA==", - "requires": { - "whatwg-url": "^7.0.0" - } - }, - "tr46": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/tr46/-/tr46-1.0.1.tgz", - "integrity": "sha512-dTpowEjclQ7Kgx5SdBkqRzVhERQXov8/l9Ft9dVM9fmg0W0KQSVaXX9T4i6twCPNtYiZM53lpSSUAwJbFPOHxA==", - "requires": { - "punycode": "^2.1.0" - } - }, - "webidl-conversions": { - "version": "4.0.2", - "resolved": "https://registry.npmjs.org/webidl-conversions/-/webidl-conversions-4.0.2.tgz", - "integrity": "sha512-YQ+BmxuTgd6UXZW3+ICGfyqRyHXVlD5GtQr5+qjiNW7bF0cqrzX500HVXPBOvgXb5YnzDd+h0zqyv61KUD7+Sg==" - }, - "whatwg-url": { - "version": "7.1.0", - "resolved": "https://registry.npmjs.org/whatwg-url/-/whatwg-url-7.1.0.tgz", - "integrity": "sha512-WUu7Rg1DroM7oQvGWfOiAK21n74Gg+T4elXEQYkOhtyLeWiJFoOGLXPKI/9gzIie9CtwVLm8wtw6YJdKyxSjeg==", - "requires": { - "lodash.sortby": "^4.7.0", - "tr46": "^1.0.1", - "webidl-conversions": "^4.0.2" - } - } + "node_modules/workbox-build/node_modules/whatwg-url": { + "version": "7.1.0", + "license": "MIT", + "dependencies": { + "lodash.sortby": "^4.7.0", + "tr46": "^1.0.1", + "webidl-conversions": "^4.0.2" } }, - "workbox-cacheable-response": { - "version": "6.5.3", - "resolved": "https://registry.npmjs.org/workbox-cacheable-response/-/workbox-cacheable-response-6.5.3.tgz", - "integrity": "sha512-6JE/Zm05hNasHzzAGKDkqqgYtZZL2H06ic2GxuRLStA4S/rHUfm2mnLFFXuHAaGR1XuuYyVCEey1M6H3PdZ7SQ==", - "requires": { - "workbox-core": "6.5.3" + "node_modules/workbox-cacheable-response": { + "version": "6.6.0", + "license": "MIT", + "dependencies": { + "workbox-core": "6.6.0" } }, - "workbox-core": { - "version": "6.5.3", - "resolved": "https://registry.npmjs.org/workbox-core/-/workbox-core-6.5.3.tgz", - "integrity": "sha512-Bb9ey5n/M9x+l3fBTlLpHt9ASTzgSGj6vxni7pY72ilB/Pb3XtN+cZ9yueboVhD5+9cNQrC9n/E1fSrqWsUz7Q==" + "node_modules/workbox-core": { + "version": "6.6.0", + "license": "MIT" }, - "workbox-expiration": { - "version": "6.5.3", - "resolved": "https://registry.npmjs.org/workbox-expiration/-/workbox-expiration-6.5.3.tgz", - "integrity": "sha512-jzYopYR1zD04ZMdlbn/R2Ik6ixiXbi15c9iX5H8CTi6RPDz7uhvMLZPKEndZTpfgmUk8mdmT9Vx/AhbuCl5Sqw==", - "requires": { - "idb": "^6.1.4", - "workbox-core": "6.5.3" + "node_modules/workbox-expiration": { + "version": "6.6.0", + "license": "MIT", + "dependencies": { + "idb": "^7.0.1", + "workbox-core": "6.6.0" } }, - "workbox-google-analytics": { - "version": "6.5.3", - "resolved": "https://registry.npmjs.org/workbox-google-analytics/-/workbox-google-analytics-6.5.3.tgz", - "integrity": "sha512-3GLCHotz5umoRSb4aNQeTbILETcrTVEozSfLhHSBaegHs1PnqCmN0zbIy2TjTpph2AGXiNwDrWGF0AN+UgDNTw==", - "requires": { - "workbox-background-sync": "6.5.3", - "workbox-core": "6.5.3", - "workbox-routing": "6.5.3", - "workbox-strategies": "6.5.3" + "node_modules/workbox-google-analytics": { + "version": "6.6.0", + "license": "MIT", + "dependencies": { + "workbox-background-sync": "6.6.0", + "workbox-core": "6.6.0", + "workbox-routing": "6.6.0", + "workbox-strategies": "6.6.0" } }, - "workbox-navigation-preload": { - "version": "6.5.3", - "resolved": "https://registry.npmjs.org/workbox-navigation-preload/-/workbox-navigation-preload-6.5.3.tgz", - "integrity": "sha512-bK1gDFTc5iu6lH3UQ07QVo+0ovErhRNGvJJO/1ngknT0UQ702nmOUhoN9qE5mhuQSrnK+cqu7O7xeaJ+Rd9Tmg==", - "requires": { - "workbox-core": "6.5.3" + "node_modules/workbox-navigation-preload": { + "version": "6.6.0", + "license": "MIT", + "dependencies": { + "workbox-core": "6.6.0" } }, - "workbox-precaching": { - "version": "6.5.3", - "resolved": "https://registry.npmjs.org/workbox-precaching/-/workbox-precaching-6.5.3.tgz", - "integrity": "sha512-sjNfgNLSsRX5zcc63H/ar/hCf+T19fRtTqvWh795gdpghWb5xsfEkecXEvZ8biEi1QD7X/ljtHphdaPvXDygMQ==", - "requires": { - "workbox-core": "6.5.3", - "workbox-routing": "6.5.3", - "workbox-strategies": "6.5.3" + "node_modules/workbox-precaching": { + "version": "6.6.0", + "license": "MIT", + "dependencies": { + "workbox-core": "6.6.0", + "workbox-routing": "6.6.0", + "workbox-strategies": "6.6.0" } }, - "workbox-range-requests": { - "version": "6.5.3", - "resolved": "https://registry.npmjs.org/workbox-range-requests/-/workbox-range-requests-6.5.3.tgz", - "integrity": "sha512-pGCP80Bpn/0Q0MQsfETSfmtXsQcu3M2QCJwSFuJ6cDp8s2XmbUXkzbuQhCUzKR86ZH2Vex/VUjb2UaZBGamijA==", - "requires": { - "workbox-core": "6.5.3" + "node_modules/workbox-range-requests": { + "version": "6.6.0", + "license": "MIT", + "dependencies": { + "workbox-core": "6.6.0" } }, - "workbox-recipes": { - "version": "6.5.3", - "resolved": "https://registry.npmjs.org/workbox-recipes/-/workbox-recipes-6.5.3.tgz", - "integrity": "sha512-IcgiKYmbGiDvvf3PMSEtmwqxwfQ5zwI7OZPio3GWu4PfehA8jI8JHI3KZj+PCfRiUPZhjQHJ3v1HbNs+SiSkig==", - "requires": { - "workbox-cacheable-response": "6.5.3", - "workbox-core": "6.5.3", - "workbox-expiration": "6.5.3", - "workbox-precaching": "6.5.3", - "workbox-routing": "6.5.3", - "workbox-strategies": "6.5.3" - } - }, - "workbox-routing": { - "version": "6.5.3", - "resolved": "https://registry.npmjs.org/workbox-routing/-/workbox-routing-6.5.3.tgz", - "integrity": "sha512-DFjxcuRAJjjt4T34RbMm3MCn+xnd36UT/2RfPRfa8VWJGItGJIn7tG+GwVTdHmvE54i/QmVTJepyAGWtoLPTmg==", - "requires": { - "workbox-core": "6.5.3" + "node_modules/workbox-recipes": { + "version": "6.6.0", + "license": "MIT", + "dependencies": { + "workbox-cacheable-response": "6.6.0", + "workbox-core": "6.6.0", + "workbox-expiration": "6.6.0", + "workbox-precaching": "6.6.0", + "workbox-routing": "6.6.0", + "workbox-strategies": "6.6.0" } }, - "workbox-strategies": { - "version": "6.5.3", - "resolved": "https://registry.npmjs.org/workbox-strategies/-/workbox-strategies-6.5.3.tgz", - "integrity": "sha512-MgmGRrDVXs7rtSCcetZgkSZyMpRGw8HqL2aguszOc3nUmzGZsT238z/NN9ZouCxSzDu3PQ3ZSKmovAacaIhu1w==", - "requires": { - "workbox-core": "6.5.3" + "node_modules/workbox-routing": { + "version": "6.6.0", + "license": "MIT", + "dependencies": { + "workbox-core": "6.6.0" } }, - "workbox-streams": { - "version": "6.5.3", - "resolved": "https://registry.npmjs.org/workbox-streams/-/workbox-streams-6.5.3.tgz", - "integrity": "sha512-vN4Qi8o+b7zj1FDVNZ+PlmAcy1sBoV7SC956uhqYvZ9Sg1fViSbOpydULOssVJ4tOyKRifH/eoi6h99d+sJ33w==", - "requires": { - "workbox-core": "6.5.3", - "workbox-routing": "6.5.3" + "node_modules/workbox-strategies": { + "version": "6.6.0", + "license": "MIT", + "dependencies": { + "workbox-core": "6.6.0" } }, - "workbox-sw": { - "version": "6.5.3", - "resolved": "https://registry.npmjs.org/workbox-sw/-/workbox-sw-6.5.3.tgz", - "integrity": "sha512-BQBzm092w+NqdIEF2yhl32dERt9j9MDGUTa2Eaa+o3YKL4Qqw55W9yQC6f44FdAHdAJrJvp0t+HVrfh8AiGj8A==" + "node_modules/workbox-streams": { + "version": "6.6.0", + "license": "MIT", + "dependencies": { + "workbox-core": "6.6.0", + "workbox-routing": "6.6.0" + } }, - "workbox-webpack-plugin": { - "version": "6.5.3", - "resolved": "https://registry.npmjs.org/workbox-webpack-plugin/-/workbox-webpack-plugin-6.5.3.tgz", - "integrity": "sha512-Es8Xr02Gi6Kc3zaUwR691ZLy61hz3vhhs5GztcklQ7kl5k2qAusPh0s6LF3wEtlpfs9ZDErnmy5SErwoll7jBA==", - "requires": { + "node_modules/workbox-sw": { + "version": "6.6.0", + "license": "MIT" + }, + "node_modules/workbox-webpack-plugin": { + "version": "6.6.0", + "license": "MIT", + "dependencies": { "fast-json-stable-stringify": "^2.1.0", "pretty-bytes": "^5.4.1", "upath": "^1.2.0", "webpack-sources": "^1.4.3", - "workbox-build": "6.5.3" + "workbox-build": "6.6.0" + }, + "engines": { + "node": ">=10.0.0" }, + "peerDependencies": { + "webpack": "^4.4.0 || ^5.9.0" + } + }, + "node_modules/workbox-webpack-plugin/node_modules/source-map": { + "version": "0.6.1", + "license": "BSD-3-Clause", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/workbox-webpack-plugin/node_modules/webpack-sources": { + "version": "1.4.3", + "license": "MIT", "dependencies": { - "source-map": { - "version": "0.6.1", - "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz", - "integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==" - }, - "webpack-sources": { - "version": "1.4.3", - "resolved": "https://registry.npmjs.org/webpack-sources/-/webpack-sources-1.4.3.tgz", - "integrity": "sha512-lgTS3Xhv1lCOKo7SA5TjKXMjpSM4sBjNV5+q2bqesbSPs5FjGmU6jjtBSkX9b4qW87vDIsCIlUPOEhbZrMdjeQ==", - "requires": { - "source-list-map": "^2.0.0", - "source-map": "~0.6.1" - } - } + "source-list-map": "^2.0.0", + "source-map": "~0.6.1" } }, - "workbox-window": { - "version": "6.5.3", - "resolved": "https://registry.npmjs.org/workbox-window/-/workbox-window-6.5.3.tgz", - "integrity": "sha512-GnJbx1kcKXDtoJBVZs/P7ddP0Yt52NNy4nocjBpYPiRhMqTpJCNrSL+fGHZ/i/oP6p/vhE8II0sA6AZGKGnssw==", - "requires": { + "node_modules/workbox-window": { + "version": "6.6.0", + "license": "MIT", + "dependencies": { "@types/trusted-types": "^2.0.2", - "workbox-core": "6.5.3" + "workbox-core": "6.6.0" } }, - "workerpool": { + "node_modules/workerpool": { "version": "6.2.1", - "resolved": "https://registry.npmjs.org/workerpool/-/workerpool-6.2.1.tgz", - "integrity": "sha512-ILEIE97kDZvF9Wb9f6h5aXK4swSlKGUcOEGiIYb2OOu/IrDU9iwj0fD//SsA6E5ibwJxpEvhullJY4Sl4GcpAw==", + "license": "Apache-2.0", "peer": true }, - "wrap-ansi": { + "node_modules/wrap-ansi": { "version": "7.0.0", - "resolved": "https://registry.npmjs.org/wrap-ansi/-/wrap-ansi-7.0.0.tgz", - "integrity": "sha512-YVGIj2kamLSTxw6NsZjoBxfSwsn0ycdesmc4p+Q21c5zPuZ1pl+NfxVdxPtdHvmNVOQ6XSYG4AUtyt/Fi7D16Q==", - "requires": { + "license": "MIT", + "dependencies": { "ansi-styles": "^4.0.0", "string-width": "^4.1.0", "strip-ansi": "^6.0.0" }, - "dependencies": { - "ansi-styles": { - "version": "4.3.0", - "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", - "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", - "requires": { - "color-convert": "^2.0.1" - } - }, - "color-convert": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz", - "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==", - "requires": { - "color-name": "~1.1.4" - } - }, - "color-name": { - "version": "1.1.4", - "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz", - "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==" - } + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/chalk/wrap-ansi?sponsor=1" } }, - "wrappy": { + "node_modules/wrappy": { "version": "1.0.2", - "resolved": "https://registry.npmjs.org/wrappy/-/wrappy-1.0.2.tgz", - "integrity": "sha512-l4Sp/DRseor9wL6EvV2+TuQn63dMkPjZ/sp9XkghTEbV9KlPS1xUsZ3u7/IQO4wxtcFB4bgpQPRcR3QCvezPcQ==" + "license": "ISC" }, - "write-file-atomic": { + "node_modules/write-file-atomic": { "version": "3.0.3", - "resolved": "https://registry.npmjs.org/write-file-atomic/-/write-file-atomic-3.0.3.tgz", - "integrity": "sha512-AvHcyZ5JnSfq3ioSyjrBkH9yW4m7Ayk8/9My/DD9onKeu/94fwrMocemO2QAJFAlnnDN+ZDS+ZjAR5ua1/PV/Q==", - "requires": { + "license": "ISC", + "dependencies": { "imurmurhash": "^0.1.4", "is-typedarray": "^1.0.0", "signal-exit": "^3.0.2", "typedarray-to-buffer": "^3.1.5" } }, - "ws": { - "version": "7.5.8", - "resolved": "https://registry.npmjs.org/ws/-/ws-7.5.8.tgz", - "integrity": "sha512-ri1Id1WinAX5Jqn9HejiGb8crfRio0Qgu8+MtL36rlTA6RLsMdWt1Az/19A2Qij6uSHUMphEFaTKa4WG+UNHNw==", - "requires": {} + "node_modules/ws": { + "version": "7.4.6", + "license": "MIT", + "engines": { + "node": ">=8.3.0" + }, + "peerDependencies": { + "bufferutil": "^4.0.1", + "utf-8-validate": "^5.0.2" + }, + "peerDependenciesMeta": { + "bufferutil": { + "optional": true + }, + "utf-8-validate": { + "optional": true + } + } }, - "xhr": { + "node_modules/xhr": { "version": "2.6.0", - "resolved": "https://registry.npmjs.org/xhr/-/xhr-2.6.0.tgz", - "integrity": "sha512-/eCGLb5rxjx5e3mF1A7s+pLlR6CGyqWN91fv1JgER5mVWg1MZmlhBvy9kjcsOdRk8RrIujotWyJamfyrp+WIcA==", - "requires": { + "license": "MIT", + "dependencies": { "global": "~4.4.0", "is-function": "^1.0.1", "parse-headers": "^2.0.0", "xtend": "^4.0.0" } }, - "xhr-request": { + "node_modules/xhr-request": { "version": "1.1.0", - "resolved": "https://registry.npmjs.org/xhr-request/-/xhr-request-1.1.0.tgz", - "integrity": "sha512-Y7qzEaR3FDtL3fP30k9wO/e+FBnBByZeybKOhASsGP30NIkRAAkKD/sCnLvgEfAIEC1rcmK7YG8f4oEnIrrWzA==", - "requires": { + "license": "MIT", + "dependencies": { "buffer-to-arraybuffer": "^0.0.5", "object-assign": "^4.1.1", "query-string": "^5.0.1", @@ -44341,73 +22148,79 @@ "xhr": "^2.0.4" } }, - "xhr-request-promise": { + "node_modules/xhr-request-promise": { "version": "0.1.3", - "resolved": "https://registry.npmjs.org/xhr-request-promise/-/xhr-request-promise-0.1.3.tgz", - "integrity": "sha512-YUBytBsuwgitWtdRzXDDkWAXzhdGB8bYm0sSzMPZT7Z2MBjMSTHFsyCT1yCRATY+XC69DUrQraRAEgcoCRaIPg==", - "requires": { + "license": "MIT", + "dependencies": { "xhr-request": "^1.1.0" } }, - "xml-name-validator": { + "node_modules/xml-name-validator": { "version": "3.0.0", - "resolved": "https://registry.npmjs.org/xml-name-validator/-/xml-name-validator-3.0.0.tgz", - "integrity": "sha512-A5CUptxDsvxKJEU3yO6DuWBSJz/qizqzJKOMIfUJHETbBw/sFaDxgd6fxm1ewUaM0jZ444Fc5vC5ROYurg/4Pw==" + "license": "Apache-2.0" }, - "xml-parse-from-string": { + "node_modules/xml-parse-from-string": { "version": "1.0.1", - "resolved": "https://registry.npmjs.org/xml-parse-from-string/-/xml-parse-from-string-1.0.1.tgz", - "integrity": "sha512-ErcKwJTF54uRzzNMXq2X5sMIy88zJvfN2DmdoQvy7PAFJ+tPRU6ydWuOKNMyfmOjdyBQTFREi60s0Y0SyI0G0g==" + "license": "MIT" }, - "xml2js": { + "node_modules/xml2js": { "version": "0.4.23", - "resolved": "https://registry.npmjs.org/xml2js/-/xml2js-0.4.23.tgz", - "integrity": "sha512-ySPiMjM0+pLDftHgXY4By0uswI3SPKLDw/i3UXbnO8M/p28zqexCUoPmQFrYD+/1BzhGJSs2i1ERWKJAtiLrug==", - "requires": { + "license": "MIT", + "dependencies": { "sax": ">=0.6.0", "xmlbuilder": "~11.0.0" + }, + "engines": { + "node": ">=4.0.0" } }, - "xmlbuilder": { + "node_modules/xmlbuilder": { "version": "11.0.1", - "resolved": "https://registry.npmjs.org/xmlbuilder/-/xmlbuilder-11.0.1.tgz", - "integrity": "sha512-fDlsI/kFEx7gLvbecc0/ohLG50fugQp8ryHzMTuW9vSa1GJ0XYWKnhsUx7oie3G98+r56aTQIUB4kht42R3JvA==" + "license": "MIT", + "engines": { + "node": ">=4.0" + } }, - "xmlchars": { + "node_modules/xmlchars": { "version": "2.2.0", - "resolved": "https://registry.npmjs.org/xmlchars/-/xmlchars-2.2.0.tgz", - "integrity": "sha512-JZnDKK8B0RCDw84FNdDAIpZK+JuJw+s7Lz8nksI7SIuU3UXJJslUthsi+uWBUYOwPFwW7W7PRLRfUKpxjtjFCw==" + "license": "MIT" }, - "xtend": { + "node_modules/xtend": { "version": "4.0.2", - "resolved": "https://registry.npmjs.org/xtend/-/xtend-4.0.2.tgz", - "integrity": "sha512-LKYU1iAXJXUgAXn9URjiu+MWhyUXHsvfp7mcuYm9dSUKK0/CjtrUwFAxD82/mCWbtLsGjFIad0wIsod4zrTAEQ==" + "license": "MIT", + "engines": { + "node": ">=0.4" + } }, - "y18n": { + "node_modules/y18n": { "version": "5.0.8", - "resolved": "https://registry.npmjs.org/y18n/-/y18n-5.0.8.tgz", - "integrity": "sha512-0pfFzegeDWJHJIAmTLRP2DwHjdF5s7jo9tuztdQxAhINCdvS+3nGINqPd00AphqJR/0LhANUS6/+7SCb98YOfA==" + "license": "ISC", + "engines": { + "node": ">=10" + } }, - "yaeti": { + "node_modules/yaeti": { "version": "0.0.6", - "resolved": "https://registry.npmjs.org/yaeti/-/yaeti-0.0.6.tgz", - "integrity": "sha512-MvQa//+KcZCUkBTIC9blM+CU9J2GzuTytsOUwf2lidtvkx/6gnEp1QvJv34t9vdjhFmha/mUiNDbN0D0mJWdug==" + "license": "MIT", + "engines": { + "node": ">=0.10.32" + } }, - "yallist": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/yallist/-/yallist-4.0.0.tgz", - "integrity": "sha512-3wdGidZyq5PB084XLES5TpOSRA3wjXAlIWMhum2kRcv/41Sn2emQ0dycQW4uZXLejwKvg6EsvbdlVL+FYEct7A==" + "node_modules/yallist": { + "version": "3.1.1", + "license": "ISC" }, - "yaml": { + "node_modules/yaml": { "version": "1.10.2", - "resolved": "https://registry.npmjs.org/yaml/-/yaml-1.10.2.tgz", - "integrity": "sha512-r3vXyErRCYJ7wg28yvBY5VSoAF8ZvlcW9/BwUzEtUsjvX/DKs24dIkuwjtuprwJJHsbyUbLApepYTR1BN4uHrg==" + "license": "ISC", + "engines": { + "node": ">= 6" + } }, - "yargs": { + "node_modules/yargs": { "version": "16.2.0", - "resolved": "https://registry.npmjs.org/yargs/-/yargs-16.2.0.tgz", - "integrity": "sha512-D1mvvtDG0L5ft/jGWkLpG1+m0eQxOfaBvTNELraWj22wSVUMWxZUvYgJYcKh6jGGIkJFhH4IZPQhR4TKpc8mBw==", - "requires": { + "license": "MIT", + "dependencies": { "cliui": "^7.0.2", "escalade": "^3.1.1", "get-caller-file": "^2.0.5", @@ -44415,37 +22228,57 @@ "string-width": "^4.2.0", "y18n": "^5.0.5", "yargs-parser": "^20.2.2" + }, + "engines": { + "node": ">=10" } }, - "yargs-parser": { - "version": "20.2.9", - "resolved": "https://registry.npmjs.org/yargs-parser/-/yargs-parser-20.2.9.tgz", - "integrity": "sha512-y11nGElTIV+CT3Zv9t7VKl+Q3hTQoT9a1Qzezhhl6Rp21gJ/IVTW7Z3y9EWXhuUBC2Shnf+DX0antecpAwSP8w==" + "node_modules/yargs-parser": { + "version": "20.2.4", + "license": "ISC", + "engines": { + "node": ">=10" + } }, - "yargs-unparser": { + "node_modules/yargs-unparser": { "version": "2.0.0", - "resolved": "https://registry.npmjs.org/yargs-unparser/-/yargs-unparser-2.0.0.tgz", - "integrity": "sha512-7pRTIA9Qc1caZ0bZ6RYRGbHJthJWuakf+WmHK0rVeLkNrrGhfoabBNdue6kdINI6r4if7ocq9aD/n7xwKOdzOA==", + "license": "MIT", "peer": true, - "requires": { + "dependencies": { "camelcase": "^6.0.0", "decamelize": "^4.0.0", "flat": "^5.0.2", "is-plain-obj": "^2.1.0" }, - "dependencies": { - "is-plain-obj": { - "version": "2.1.0", - "resolved": "https://registry.npmjs.org/is-plain-obj/-/is-plain-obj-2.1.0.tgz", - "integrity": "sha512-YWnfyRwxL/+SsrWYfOpUtz5b3YD+nyfkHvjbcanzk8zgyO4ASD67uVMRt8k5bM4lLMDnXfriRhOpemw+NfT1eA==", - "peer": true - } + "engines": { + "node": ">=10" + } + }, + "node_modules/yargs-unparser/node_modules/is-plain-obj": { + "version": "2.1.0", + "license": "MIT", + "peer": true, + "engines": { + "node": ">=8" } }, - "yocto-queue": { + "node_modules/yocto-queue": { "version": "0.1.0", - "resolved": "https://registry.npmjs.org/yocto-queue/-/yocto-queue-0.1.0.tgz", - "integrity": "sha512-rVksvsnNCdJ/ohGc6xgPwyN8eheCxsiLM8mxuE/t/mOVqJewPuO1miLpTHQiRgTKCLexL4MeAFVagts7HmNZ2Q==" + "license": "MIT", + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/zod": { + "version": "3.22.2", + "license": "MIT", + "peer": true, + "funding": { + "url": "https://github.com/sponsors/colinhacks" + } } } } diff --git a/packages/starksheet-webapp/package.json b/packages/starksheet-webapp/package.json index bd29e5b5..fe302eb4 100644 --- a/packages/starksheet-webapp/package.json +++ b/packages/starksheet-webapp/package.json @@ -3,6 +3,7 @@ "version": "0.2.0", "private": true, "dependencies": { + "@argent/get-starknet": "^6.4.7", "@emotion/react": "^11.9.3", "@emotion/styled": "^11.9.3", "@mui/material": "^5.8.6", @@ -19,7 +20,6 @@ "ethers": "5.7.2", "ethers-multisend": "^2.4.0", "expr-eval": "^2.0.2", - "get-starknet": "^2.0.0", "notistack": "^2.0.5", "react": "^18.2.0", "react-contenteditable": "^3.3.6", @@ -27,7 +27,7 @@ "react-hotkeys": "^2.0.0", "react-router-dom": "^6.10.0", "react-scripts": "5.0.1", - "starknet": "^4.22.0", + "starknet": "^5.18.0", "ts-toolbelt": "^9.6.0", "web-vitals": "^2.1.4", "wido-widget": "^1.0.8" @@ -50,9 +50,11 @@ }, "browserslist": { "production": [ - ">0.2%", - "not dead", - "not op_mini all" + "chrome >= 67", + "edge >= 79", + "firefox >= 68", + "opera >= 54", + "safari >= 14" ], "development": [ "last 1 chrome version", diff --git a/packages/starksheet-webapp/scripts/generate-contract-data.js b/packages/starksheet-webapp/scripts/generate-contract-data.js index 0519aa43..802e9695 100644 --- a/packages/starksheet-webapp/scripts/generate-contract-data.js +++ b/packages/starksheet-webapp/scripts/generate-contract-data.js @@ -17,14 +17,23 @@ const evmsheetDeploymentsFolder = path.join( "broadcast/Evmsheet.s.sol" ); +const evmChains = { + 5: "goerli", + 31337: "anvil", + 1263227476: "kakarot", +}; + const contractData = {}; let errorFiles = 0; let processedFiles = 0; // Read directory -fs.readdir(starksheetDeploymentsFolder, (err, files) => { - if (err) { - console.error("Error reading directory:", err); +const readStarksheet = () => { + let files; + try { + files = fs.readdirSync(starksheetDeploymentsFolder); + } catch (error) { + console.log("❌ Failed to read", starksheetDeploymentsFolder); return; } @@ -38,43 +47,41 @@ fs.readdir(starksheetDeploymentsFolder, (err, files) => { console.log(`Reading folder ${folder}`); // Read deployments.json file - fs.readFile(filePath, "utf8", (err, data) => { - if (err) { - console.error(`Error reading deployments.json for ${folder}`); - return; + const data = fs.readFileSync(filePath, "utf8"); + + try { + const deployments = JSON.parse(data); + contractData[folder] = { + addresses: {}, + deployedAbis: {}, + }; + for (const contractName in deployments) { + console.log(`Reading contract ${contractName}`); + const contractDeployment = deployments[contractName]; + const contractAddress = contractDeployment.address; + const contractAbi = JSON.parse( + fs.readFileSync( + path.join(starksheetCairoPath, contractDeployment.artifact) + ) + ).abi; + contractData[folder].addresses[ + contractName.toLowerCase().replace("starksheet", "spreadsheet") + ] = contractAddress; + contractData[folder].deployedAbis[contractAddress] = contractAbi; } - - try { - const deployments = JSON.parse(data); - contractData[folder] = { - addresses: {}, - deployedAbis: {}, - }; - for (const contractName in deployments) { - console.log(`Reading contract ${contractName}`); - const contractDeployment = deployments[contractName]; - const contractAddress = contractDeployment.address; - const contractAbi = JSON.parse( - fs.readFileSync( - path.join(starksheetCairoPath, contractDeployment.artifact) - ) - ).abi; - contractData[folder].addresses[ - contractName.toLowerCase().replace("starksheet", "spreadsheet") - ] = contractAddress; - contractData[folder].deployedAbis[contractAddress] = contractAbi; - } - } catch (error) { - console.error(`Error parsing deployments.json in ${folder}:`, error); - } - }); + } catch (error) { + console.error(`Error parsing deployments.json in ${folder}:`, error); + } }); -}); +}; // Read Evmsheet.s.sol directory -fs.readdir(evmsheetDeploymentsFolder, (err, subdirectories) => { - if (err) { - console.error("Error reading Evmsheet.s.sol directory:", err); +const readEvmsheet = () => { + let subdirectories; + try { + subdirectories = fs.readdirSync(evmsheetDeploymentsFolder); + } catch (error) { + console.log("❌ Failed to read", evmsheetDeploymentsFolder); return; } @@ -83,165 +90,152 @@ fs.readdir(evmsheetDeploymentsFolder, (err, subdirectories) => { const subdirectoryPath = path.join(evmsheetDeploymentsFolder, subdirectory); console.log(`Reading folder ${subdirectory}`); - const networkName = { - 5: "goerli", - 31337: "anvil", - }[subdirectory]; + const networkName = evmChains[subdirectory]; if (networkName === undefined) { throw new Error(`Unknown chainId ${subdirectory}`); } - // Read subdirectory - fs.readdir(subdirectoryPath, (err, files) => { - if (err) { - console.error(`Error reading ${subdirectory} directory:`, err); - return; - } - - if (subdirectoryPath.includes("dry-run")) { - console.log(`Dry-run: skipping`); - return; - } + if (subdirectoryPath.includes("dry-run")) { + console.log(`Dry-run: skipping`); + return; + } - const runLatestFiles = files.filter((file) => - file.startsWith("run-latest") + // Read subdirectory + const files = fs.readdirSync(subdirectoryPath); + const runLatestFiles = files.filter((file) => + file.startsWith("run-latest") + ); + if (runLatestFiles.length !== 1) { + throw new Error( + `Expected one run-latest.json file, found ${runLatestFiles.length}` ); - if (runLatestFiles.length !== 1) { - throw new Error( - `Expected one run-latest.json file, found ${runLatestFiles.length}` - ); - } - - const filePath = path.join(subdirectoryPath, runLatestFiles[0]); - console.log(`Reading : ${filePath}`); - - // Read run-latest.json file - fs.readFile(filePath, "utf8", (err, data) => { - if (err) { - console.error(`Error reading ${filePath}:`, err); - return; - } + } - try { - const runLatestData = JSON.parse(data); - const transactions = runLatestData.transactions; - - transactions.forEach((transaction) => { - const contractName = transaction.contractName || "Math"; - const contractAddress = transaction.contractAddress; - const contractAbi = JSON.parse( - fs.readFileSync( - path.join( - evmsheetDirectoryPath, - `out/${contractName}.sol/${contractName}.json` - ) - ) - ).abi; - - if (!contractData[networkName]) { - contractData[networkName] = { - addresses: {}, - deployedAbis: {}, - }; - } - contractData[networkName].addresses[ - contractName - .replace("Evmsheet", "spreadsheet") - .replace("MultiSendCallOnly", "multisend") - .toLowerCase() - ] = contractAddress; - contractData[networkName].deployedAbis[contractAddress] = - contractAbi; - }); - processedFiles = processedFiles + 1; - } catch (error) { - console.error(`Error parsing ${filePath}: ${error}`); - errorFiles = errorFiles + 1; - } finally { - // Check if all run-latest.json files have been processed - const totalRunLatestFiles = - subdirectories.length * runLatestFiles.length; - if (processedFiles + errorFiles === totalRunLatestFiles) { - // Merge starksheetAddresses and evmsheetAddresses - console.log(`Network found: ${Object.keys(contractData)}`); - process.env.REACT_APP_NETWORK - ? console.log( - `Building for network ${process.env.REACT_APP_NETWORK}` - ) - : console.log("No specific network, exporting all"); - if ( - process.env.REACT_APP_NETWORK && - !contractData[process.env.REACT_APP_NETWORK] - ) { - throw new Error( - `No data for network ${process.env.REACT_APP_NETWORK}` - ); - } - const mergedAddresses = { - network: process.env.REACT_APP_NETWORK - ? contractData[process.env.REACT_APP_NETWORK] - : contractData, - - abis: { - starknet: { - spreadsheet: JSON.parse( - fs.readFileSync( - path.join(starksheetCairoPath, "build/Starksheet.json") - ) - ).abi, - worksheet: JSON.parse( - fs.readFileSync( - path.join(starksheetCairoPath, "build/Sheet.json") - ) - ).abi, - }, - eth: { - spreadsheet: JSON.parse( - fs.readFileSync( - path.join( - evmsheetDirectoryPath, - "out/Evmsheet.sol/Evmsheet.json" - ) - ) - ).abi, - worksheet: JSON.parse( - fs.readFileSync( - path.join( - evmsheetDirectoryPath, - "out/Sheet.sol/Sheet.json" - ) - ) - ).abi, - }, - }, - }; - - const contractDataFilePath = path.join( - __dirname, - "../src/contracts/contractData.json" - ); - - console.log(Object.keys(mergedAddresses)); - console.log(mergedAddresses.network); - - // Write the JSON data to the contractDataFilePath - fs.writeFile( - contractDataFilePath, - JSON.stringify(mergedAddresses, null, 2), - "utf8", - (err) => { - if (err) { - console.error("Error writing to contractData.json:", err); - return; - } - - console.log("contractData.json file created successfully!"); - } - ); - } + const filePath = path.join(subdirectoryPath, runLatestFiles[0]); + console.log(`Reading ${filePath}`); + + // Read run-latest.json file + const data = fs.readFileSync(filePath, "utf8"); + try { + const runLatestData = JSON.parse(data); + const transactions = runLatestData.transactions; + + transactions.forEach((transaction) => { + const contractName = transaction.contractName || "Math"; + const contractAddress = transaction.contractAddress; + const contractAbi = JSON.parse( + fs.readFileSync( + path.join( + evmsheetDirectoryPath, + `out/${contractName}.sol/${contractName}.json` + ) + ) + ).abi; + + if (!contractData[networkName]) { + contractData[networkName] = { + addresses: {}, + deployedAbis: {}, + }; } + contractData[networkName].addresses[ + contractName + .replace("Evmsheet", "spreadsheet") + .replace("MultiSendCallOnly", "multisend") + .toLowerCase() + ] = contractAddress; + contractData[networkName].deployedAbis[contractAddress] = contractAbi; }); - }); + processedFiles = processedFiles + 1; + } catch (error) { + console.error(`Error parsing ${filePath}: ${error}`); + errorFiles = errorFiles + 1; + } }); -}); +}; + +readEvmsheet(); +readStarksheet(); + +// Merge starksheetAddresses and evmsheetAddresses +console.log(`Network found: ${Object.keys(contractData)}`); +process.env.REACT_APP_NETWORK + ? console.log(`Building for network ${process.env.REACT_APP_NETWORK}`) + : console.log("No specific network, exporting all"); +if ( + process.env.REACT_APP_NETWORK && + !contractData[process.env.REACT_APP_NETWORK] +) { + throw new Error(`No data for network ${process.env.REACT_APP_NETWORK}`); +} + +let starknetAbis = { + spreadsheet: {}, + worksheet: {}, +}; +try { + starknetAbis = { + spreadsheet: JSON.parse( + fs.readFileSync(path.join(starksheetCairoPath, "build/Starksheet.json")) + ).abi, + worksheet: JSON.parse( + fs.readFileSync(path.join(starksheetCairoPath, "build/Sheet.json")) + ).abi, + }; +} catch (error) { + console.log("❌ No ABIs for Starknet networks"); +} + +let evmAbis = { + spreadsheet: {}, + worksheet: {}, +}; +try { + evmAbis = { + spreadsheet: JSON.parse( + fs.readFileSync( + path.join(evmsheetDirectoryPath, "out/Evmsheet.sol/Evmsheet.json") + ) + ).abi, + worksheet: JSON.parse( + fs.readFileSync( + path.join(evmsheetDirectoryPath, "out/Sheet.sol/Sheet.json") + ) + ).abi, + }; +} catch (error) { + console.log("❌ No ABIs for Evm networks"); +} +const mergedAddresses = { + network: process.env.REACT_APP_NETWORK + ? contractData[process.env.REACT_APP_NETWORK] + : contractData, + + abis: { + starknet: starknetAbis, + eth: evmAbis, + }, +}; + +const contractDataFilePath = path.join( + __dirname, + "../src/contracts/contractData.json" +); + +console.log(mergedAddresses.network.addresses); + +// Write the JSON data to the contractDataFilePath +fs.writeFileSync( + contractDataFilePath, + JSON.stringify(mergedAddresses, null, 2), + "utf8", + (err) => { + if (err) { + console.error("Error writing to contractData.json:", err); + return; + } + + console.log("contractData.json file created successfully!"); + } +); diff --git a/packages/starksheet-webapp/src/components/ActionBar/ActionBar.tsx b/packages/starksheet-webapp/src/components/ActionBar/ActionBar.tsx index 566752a8..126e38a3 100644 --- a/packages/starksheet-webapp/src/components/ActionBar/ActionBar.tsx +++ b/packages/starksheet-webapp/src/components/ActionBar/ActionBar.tsx @@ -2,7 +2,6 @@ import { Box, BoxProps } from "@mui/material"; import { useSnackbar } from "notistack"; import React, { useCallback, useContext, useEffect } from "react"; import ContentEditable from "react-contenteditable"; -import { number } from "starknet"; import { CELL_BORDER_WIDTH } from "../../config"; import { AbisContext } from "../../contexts/AbisContext"; import { AccountContext } from "../../contexts/AccountContext"; @@ -11,17 +10,15 @@ import { OnsheetContext } from "../../contexts/OnsheetContext"; import { chainConfig } from "../../provider/chains"; import { CellData, CellGraph, Cell as CellType } from "../../types"; import { RC_BOUND } from "../../utils/constants"; -import { bn2hex, str2hex } from "../../utils/hexUtils"; -import { resolveContractAddress } from "../../utils/sheetUtils"; +import { bigint2hex, str2hex } from "../../utils/hexUtils"; +import { + resolveContractAddress, + tokenIdToCellName, +} from "../../utils/sheetUtils"; import Cell from "../Cell/Cell"; import FormulaField from "../FormulaField/FormulaField"; import SaveButton from "../SaveButton/SaveButton"; -import { - parse, - parseContractCall, - toPlainTextFormula, - tokenIdToCellName, -} from "./formula.utils"; +import { parse, parseContractCall, toPlainTextFormula } from "./formula.utils"; export type ActionBarProps = { inputRef: React.RefObject; @@ -62,10 +59,10 @@ function ActionBar({ inputRef, sx }: ActionBarProps) { const currentCell = currentCells[currentCellId]; if ( - currentCell.contractAddress.eq(cellData.contractAddress) && - currentCell.selector.eq(cellData.selector) && + currentCell.contractAddress === cellData.contractAddress && + currentCell.selector === cellData.selector && currentCell.calldata.length === cellData.calldata.length && - currentCell.calldata.every((c, i) => c.eq(cellData.calldata[i])) + currentCell.calldata.every((c, i) => c === cellData.calldata[i]) ) { return; } @@ -90,7 +87,11 @@ function ActionBar({ inputRef, sx }: ActionBarProps) { .sort((a, b) => a[1] - b[1]) .map((entry) => parseInt(entry[0])) .map((id) => currentCells[id]) - .filter((cell) => cell.abi?.stateMutability === "view"); + .filter( + (cell) => + cell.abi?.stateMutability === "view" || + cell.abi?.stateMutability === "pure" + ); for (const cell of indexes) { let value = cell.value; @@ -147,14 +148,14 @@ function ActionBar({ inputRef, sx }: ActionBarProps) { const _contractCall = parseContractCall(_value); if (!_contractCall) { - let selector = number.toBN(0); + let selector = BigInt(0); try { - selector = number.toBN(_value); + selector = BigInt(_value); } catch (e) { try { - selector = number.toBN(str2hex(_value)); + selector = BigInt(str2hex(_value)); } catch (e) { - selector = number.toBN(0); + selector = BigInt(0); } } setCellData({ @@ -167,7 +168,7 @@ function ActionBar({ inputRef, sx }: ActionBarProps) { let contractAddress; try { - contractAddress = number.toBN(_contractCall.contractAddress); + contractAddress = BigInt(_contractCall.contractAddress); } catch (e) { return; } @@ -177,7 +178,7 @@ function ActionBar({ inputRef, sx }: ActionBarProps) { contractAddress ); - getAbiForContract(bn2hex(resolvedContractAddress)).then((abi) => { + getAbiForContract(bigint2hex(resolvedContractAddress)).then((abi) => { const _cellData = parse(_contractCall, abi, chainConfig.chainType); setCellData(_cellData); }); @@ -204,7 +205,6 @@ function ActionBar({ inputRef, sx }: ActionBarProps) { }, [selectedCell, currentCells]); const owner = currentCells[selectedCell]?.owner?.toString(16); - return ( diff --git a/packages/starksheet-webapp/src/components/ActionBar/formula.utils.ts b/packages/starksheet-webapp/src/components/ActionBar/formula.utils.ts index 48ee0f54..59fa772f 100644 --- a/packages/starksheet-webapp/src/components/ActionBar/formula.utils.ts +++ b/packages/starksheet-webapp/src/components/ActionBar/formula.utils.ts @@ -1,23 +1,26 @@ -import BN from "bn.js"; import { BigNumber, ethers } from "ethers"; -import { FunctionAbi, number, uint256 } from "starknet"; -import { N_COL } from "../../config"; -import { Cell, CellData, ChainType, ContractAbi } from "../../types"; +import { FunctionAbi, uint256 } from "starknet"; +import { CellData, ChainType, ContractAbi } from "../../types"; import { ARGS_SEP, ARG_LIST_SEP, + CELL_NAME_REGEX, + CONTRACT_CALL_REGEX, CONTRACT_FUNCTION_SEP, + HEX_STRING_REGEX, RC_BOUND, } from "../../utils/constants"; -import { bn2hex, bn2uint, hex2str, str2hex } from "../../utils/hexUtils"; - -export const contractCallRegex = - /(?(0x)?[a-z0-9]+)\.(?[a-z_0-9]+)\((?[a-z0-9[\]{},;: ]*)\)/i; -export const cellNameRegex = /^[a-z]\d+$/i; -export const hexStringRegex = /^(0x)?[a-f0-9]+$/i; +import { bigint2hex, bigint2uint, hex2str } from "../../utils/hexUtils"; +import { + cellNameToTokenId, + encodeConst, + encodeTokenId, + isDependency, + tokenIdToCellName, +} from "../../utils/sheetUtils"; const isBigNumber = (arg: any): boolean => { - return arg instanceof BigNumber || arg instanceof BN; + return arg instanceof BigNumber || typeof arg === "bigint"; }; export function toPlainTextFormula( @@ -27,24 +30,23 @@ export function toPlainTextFormula( if (!cellData) return "0"; const { contractAddress, selector, calldata, abi } = cellData; - if (contractAddress.eq(RC_BOUND)) { - return selector.gte(RC_BOUND) ? bn2hex(selector) : selector.toString(); + if (contractAddress === RC_BOUND) { + return selector >= RC_BOUND ? bigint2hex(selector) : selector.toString(); } - const contractName = contractAddress.lt(RC_BOUND) - ? tokenIdToCellName(contractAddress.toNumber()) - : bn2hex(contractAddress); - const selectorHexString = bn2hex(selector); + const contractName = + contractAddress <= RC_BOUND + ? tokenIdToCellName(Number(contractAddress)) + : bigint2hex(contractAddress); + const selectorHexString = bigint2hex(selector); const operator = abi?.name || selectorHexString; const args = calldata.map((arg) => isDependency(arg) - ? tokenIdToCellName( - arg.sub(number.toBN(1)).div(number.toBN(2)).toNumber() - ) - : arg.gte(RC_BOUND) - ? "0x" + arg.div(number.toBN(2)).toString(16) - : arg.div(number.toBN(2)).toString() + ? tokenIdToCellName(Number((arg - 1n) / 2n)) + : arg >= RC_BOUND + ? "0x" + (arg / 2n).toString(16) + : (arg / 2n).toString() ); let displayedArgs = []; if (!!abi) { @@ -90,22 +92,29 @@ export function toPlainTextFormula( inputIndex++; } } else if (chainType === ChainType.EVM) { + const mapping: Record = {}; const data = "0x" + calldata - .map((arg) => - isDependency(arg) - ? arg.sub(number.toBN(1)).div(number.toBN(2)) - : arg.div(number.toBN(2)) - ) - .map(bn2uint(32)) + .map((arg) => { + if (isDependency(arg)) { + const placeholder = ethers.BigNumber.from( + ethers.utils.randomBytes(20) + ) + ._hex.slice(2) + .padStart(64, "0"); + mapping[placeholder] = tokenIdToCellName(Number((arg - 1n) / 2n)); + return placeholder; + } + return bigint2uint(32)(arg / 2n); + }) .join(""); const decodedData = ethers.utils.defaultAbiCoder.decode( abi.inputs.map((i) => i.type), data ); // @ts-ignore - displayedArgs = [customStringify(decodedData).slice(1, -1)]; + displayedArgs = [customStringify(mapping)(decodedData).slice(1, -1)]; } else { throw new Error( `ChainType ${chainType} has no cellData to string encoding function` @@ -120,21 +129,31 @@ export function toPlainTextFormula( )})`; } -function customStringify(input: any): any { - if (Array.isArray(input)) { - return "[" + input.map(customStringify).join(", ") + "]"; - } else if (typeof input === "object" && !isBigNumber(input)) { - return ( - "{" + - Object.entries(input) - .map(([key, value]) => `${key}: ${customStringify(value)}`) - .join(", ") + - "}" - ); - } else if (isBigNumber(input)) { - return input.toString(); - } else return `${input}`; -} +const customStringify = + (mapping: Record) => + (input: any): any => { + if (Array.isArray(input)) { + return "[" + input.map(customStringify(mapping)).join(", ") + "]"; + } else if (typeof input === "object" && !isBigNumber(input)) { + return ( + "{" + + Object.entries(input) + .map(([key, value]) => `${key}: ${customStringify(mapping)(value)}`) + .join(", ") + + "}" + ); + } else if (isBigNumber(input)) { + const key = input._hex.slice(2).padStart(64, "0"); + const ret = mapping[key] === undefined ? input.toString() : mapping[key]; + return ret; + } else if (typeof input === "string") { + const key = input.slice(2).padStart(64, "0").toLowerCase(); + if (mapping[key] !== undefined) { + return mapping[key]; + } + } + return `"${input}"`; + }; export function parseContractCall( formula: string @@ -145,19 +164,19 @@ export function parseContractCall( .replaceAll("\r", "") .replaceAll(" ", ""); - const formulaMatch = _formula.match(contractCallRegex); + const formulaMatch = _formula.match(CONTRACT_CALL_REGEX); if (!formulaMatch?.groups) { return null; } const contractAddress = formulaMatch.groups.contractAddress.match( - cellNameRegex + CELL_NAME_REGEX ) ? cellNameToTokenId(formulaMatch.groups.contractAddress).toString() : formulaMatch.groups.contractAddress; - if (!contractAddress.match(hexStringRegex)) { + if (!contractAddress.match(HEX_STRING_REGEX)) { return null; } @@ -184,7 +203,7 @@ export function parse( // Add global brackets if user input is just a comma separated list `[${rawCall.args}]` // Quote cell names before eval - .replace(/([A-O][0-9]+)/gi, '"$1"') + .replace(/([, [(]+)([A-O]{1}[0-9]{1,2})([, \])])/gi, '$1"$2"$3') ) as any[]; // retrieve function and corresponding abi @@ -210,56 +229,39 @@ export function parse( const encodedArgs = encodeInputs(args) as any[]; // Flatten the object prefixing arrays with their len // Result dismisses the first value, with is the len of the initial array of args - calldata = flattenWithLen(encodedArgs).slice(1) as BN[]; + calldata = flattenWithLen(encodedArgs).slice(1) as bigint[]; } else if (chainType === ChainType.EVM) { - // TODO: need to support cell references - calldata = ethers.utils.defaultAbiCoder + const m: Record = {}; + const mappedArgs = mapCellsToRandom(m)(args); + calldata = (ethers.utils.defaultAbiCoder .encode( selectorAbi.inputs.map((i) => i.type), - args + mappedArgs ) .slice(2) .match(/.{1,64}/g) - ?.map((bytes32) => encodeConst("0x" + bytes32)) as BN[]; + ?.map((bytes32) => { + const key = "0x" + bytes32.replace(/^0+/, ""); + if (m[key] !== undefined) { + const cellName = m[key]; + return encodeTokenId(cellNameToTokenId(cellName)); + } + return encodeConst("0x" + bytes32); + }) || []) as bigint[]; } else { throw new Error(`No parsing function for chainType ${chainType}`); } return { - contractAddress: number.toBN(rawCall.contractAddress), - selector: number.toBN(selector), + contractAddress: BigInt(rawCall.contractAddress), + selector: BigInt(selector), calldata, abi: selectorAbi, }; } -export const cellNameToTokenId = (arg: string) => { - const col = arg.toLowerCase().charCodeAt(0) - "a".charCodeAt(0); - const row = parseInt(arg.slice(1)) - 1; - return col + row * 15; -}; - -export const tokenIdToCellName = (id: number) => { - const col = ((id % N_COL) + 1 + 9).toString(36).toUpperCase(); - const row = Math.floor(id / N_COL) + 1; - return `${col}${row}`; -}; - -export const encodeConst = (_arg: number.BigNumberish): BN => { - try { - return number.toBN(_arg).mul(number.toBN(2)); - } catch (e) { - return number.toBN(str2hex(_arg.toString(16))).mul(number.toBN(2)); - } -}; - -export const encodeTokenId = (_arg: number.BigNumberish): BN => - number.toBN(_arg).mul(number.toBN(2)).add(number.toBN(1)); - -export const decode = (_arg: BN) => - isDependency(_arg) - ? _arg.sub(number.toBN(1)).div(number.toBN(2)) - : _arg.div(number.toBN(2)); +export const decode = (_arg: bigint) => + isDependency(_arg) ? (_arg - 1n) / 2n : _arg / 2n; /** * @@ -278,7 +280,7 @@ function encodeInputs(input: any): any { ); } } else if (typeof input === "string") { - return input.replaceAll('"', "").match(cellNameRegex) + return input.replaceAll('"', "").match(CELL_NAME_REGEX) ? encodeTokenId(cellNameToTokenId(input)) : encodeConst(input); } else if (typeof input === "number") { @@ -308,24 +310,6 @@ function flattenWithLen(input: any): any[] { } } -export const isDependency = (arg: BN): boolean => - arg.mod(number.toBN(2)).toNumber() !== 0; - -export function getDependencies(calldata: BN[]): number[] { - return calldata.filter(isDependency).map((data) => (data.toNumber() - 1) / 2); -} - -export const getAllDependencies = - (cells: Cell[], _dependencies: number[]) => (tokenId: number) => { - const deps = getDependencies(cells[tokenId].calldata); - deps.forEach((d) => _dependencies.push(d)); - if (deps.includes(tokenId)) { - // We break here because it's enough to conclude about a circular dep - return; - } - deps.map(getAllDependencies(cells, _dependencies)); - }; - export function getError( cellId: number, cellData: CellData | null, @@ -345,13 +329,13 @@ export function buildFormulaDisplay( formula: string, settings?: { text: boolean } ): string { - const operator = formula.match(contractCallRegex); + const operator = formula.match(CONTRACT_CALL_REGEX); let result = formula; if (settings?.text) { try { - return hex2str(bn2hex(number.toBN(formula))); + return hex2str(bigint2hex(BigInt(formula))); } catch (e) { return formula; } @@ -369,7 +353,7 @@ export function buildFormulaDisplay( operator.groups.args .split(";") .filter((arg) => - arg.replace("[", "").replace("]", "").match(cellNameRegex) + arg.replace("[", "").replace("]", "").match(CELL_NAME_REGEX) ) .forEach((name) => { result = result.replace(name, `${name}`); @@ -378,3 +362,27 @@ export function buildFormulaDisplay( return result; } + +const mapCellsToRandom = + (mapping: Record) => + (input: any): any => { + if (Array.isArray(input)) { + return input.map(mapCellsToRandom(mapping)); + } else if (typeof input === "object") { + return Object.entries(input) + .map(([key, value]) => ({ + [key]: mapCellsToRandom(mapping)(value), + })) + .reduce((prev, cur) => ({ ...prev, ...cur }), {}); + } else if ( + typeof input === "string" && + input.replace('"', "").match(CELL_NAME_REGEX) + ) { + const placeholder = ethers.BigNumber.from( + // restricted to 20 instead of 32 to handle addresses (bytes20) + ethers.utils.randomBytes(20) + )._hex; + mapping[placeholder] = input; + return placeholder; + } else return input; + }; diff --git a/packages/starksheet-webapp/src/components/ComputedCell/ComputedCell.tsx b/packages/starksheet-webapp/src/components/ComputedCell/ComputedCell.tsx index 7b802bb2..8aec98cb 100644 --- a/packages/starksheet-webapp/src/components/ComputedCell/ComputedCell.tsx +++ b/packages/starksheet-webapp/src/components/ComputedCell/ComputedCell.tsx @@ -1,6 +1,6 @@ import { useSnackbar } from "notistack"; import { useContext, useMemo } from "react"; -import { constants, number } from "starknet"; +import { constants } from "starknet"; import Tooltip from "../../Tooltip/Tooltip"; import { CELL_BORDER_WIDTH, CELL_WIDTH } from "../../config"; import { AccountContext } from "../../contexts/AccountContext"; @@ -11,7 +11,7 @@ import { useLocalStorage } from "../../hooks/useLocalStorage"; import { chainConfig } from "../../provider/chains"; import { CellGraph, Cell as CellType } from "../../types"; import { RC_BOUND } from "../../utils/constants"; -import { bn2hex, hex2str } from "../../utils/hexUtils"; +import { bigint2hex, hex2str } from "../../utils/hexUtils"; import Cell from "../Cell/Cell"; const BLUE = "#0000FF"; @@ -52,18 +52,15 @@ function ComputedCell({ cell }: ComputedCellProps) { const { background, borderColor, color } = useMemo(() => { const background = - cell.owner.eq(number.toBN(0)) && - cell.contractAddress.eq(RC_BOUND) && - cell.selector.eq(number.toBN(0)) + cell.owner === 0n && + cell.contractAddress === RC_BOUND && + cell.selector === 0n ? WHITE : isInvoke ? GREEN - : accountAddress === bn2hex(cell.owner) || - (cell.owner.eq(number.toBN(0)) && - !( - cell.contractAddress.eq(RC_BOUND) && - cell.selector.eq(number.toBN(0)) - )) + : accountAddress === bigint2hex(cell.owner) || + (cell.owner === 0n && + !(cell.contractAddress === RC_BOUND && cell.selector === 0n)) ? BLUE : GREY; @@ -83,25 +80,15 @@ function ComputedCell({ cell }: ComputedCellProps) { cell.abi?.name === "name" || cell.abi?.name === "symbol" || cellSettings.text; - if (renderString) return hex2str(bn2hex(value)); - if (cell.contractAddress.eq(number.toBN(chainConfig.addresses.math))) { - return value - .add( - number - .toBN("0x" + constants.FIELD_PRIME) - .div(number.toBN(2)) - .abs() - ) - .mod(number.toBN("0x" + constants.FIELD_PRIME)) - .sub( - number - .toBN("0x" + constants.FIELD_PRIME) - .div(number.toBN(2)) - .abs() - ) - .toString(); + if (renderString) return hex2str(bigint2hex(value)); + if (cell.contractAddress === BigInt(chainConfig.addresses.math)) { + return ( + ((value + BigInt("0x" + constants.FIELD_PRIME) / 2n) % + BigInt("0x" + constants.FIELD_PRIME)) - + BigInt("0x" + constants.FIELD_PRIME) / 2n + ).toString(); } - if (value.gte(RC_BOUND)) return bn2hex(value); + if (value >= RC_BOUND) return bigint2hex(value); return value.toString(); }, [cell, background, cellSettings.text]); diff --git a/packages/starksheet-webapp/src/components/FormulaField/FormulaField.tsx b/packages/starksheet-webapp/src/components/FormulaField/FormulaField.tsx index ba085ee8..e5c58440 100644 --- a/packages/starksheet-webapp/src/components/FormulaField/FormulaField.tsx +++ b/packages/starksheet-webapp/src/components/FormulaField/FormulaField.tsx @@ -11,13 +11,14 @@ import { FunctionAbi } from "starknet"; import { CELL_BORDER_WIDTH, CELL_HEIGHT, CELL_WIDTH } from "../../config"; import { AbisContext } from "../../contexts/AbisContext"; import { CellValuesContext } from "../../contexts/CellValuesContext"; -import { ARGS_SEP, CONTRACT_FUNCTION_SEP } from "../../utils/constants"; -import { bn2hex } from "../../utils/hexUtils"; import { - buildFormulaDisplay, - cellNameRegex, - cellNameToTokenId, -} from "../ActionBar/formula.utils"; + ARGS_SEP, + CELL_NAME_REGEX, + CONTRACT_FUNCTION_SEP, +} from "../../utils/constants"; +import { bigint2hex } from "../../utils/hexUtils"; +import { cellNameToTokenId } from "../../utils/sheetUtils"; +import { buildFormulaDisplay } from "../ActionBar/formula.utils"; export type FormulaFieldProps = { inputRef: React.RefObject; @@ -53,8 +54,8 @@ function FormulaField({ (value: string) => { let _selectedContractAddress = value.split(CONTRACT_FUNCTION_SEP)[0]; setSelectedContractAddress(_selectedContractAddress); - if (_selectedContractAddress.match(cellNameRegex)) { - _selectedContractAddress = bn2hex( + if (_selectedContractAddress.match(CELL_NAME_REGEX)) { + _selectedContractAddress = bigint2hex( currentCells[cellNameToTokenId(_selectedContractAddress)].value ); } diff --git a/packages/starksheet-webapp/src/components/SheetTable/SheetTable.tsx b/packages/starksheet-webapp/src/components/SheetTable/SheetTable.tsx index b3b1446b..f30132d4 100644 --- a/packages/starksheet-webapp/src/components/SheetTable/SheetTable.tsx +++ b/packages/starksheet-webapp/src/components/SheetTable/SheetTable.tsx @@ -1,7 +1,7 @@ import { Box, BoxProps } from "@mui/material"; import { useCallback, useContext, useEffect, useMemo } from "react"; import { useLoaderData, useNavigate } from "react-router-dom"; -import { FunctionAbi, number } from "starknet"; +import { FunctionAbi } from "starknet"; import { CELL_BORDER_WIDTH, CELL_HEIGHT, @@ -16,19 +16,19 @@ import { useSheetContract } from "../../hooks/useSheetContract"; import { chainConfig } from "../../provider/chains"; import { Cell, CellData, CellRendered } from "../../types"; import { RC_BOUND } from "../../utils/constants"; -import { bn2hex } from "../../utils/hexUtils"; +import { bigint2hex } from "../../utils/hexUtils"; import ComputedCell from "../ComputedCell/ComputedCell"; import GreyCell from "../GreyCell/GreyCell"; const defaultRenderedCell = (tokenId: number): CellRendered => ({ id: tokenId, - owner: number.toBN(0), - value: number.toBN(0), + owner: 0n, + value: 0n, }); const defaultCellData = (tokenId: number): CellData => ({ contractAddress: RC_BOUND, - selector: number.toBN(0), + selector: 0n, calldata: [], }); @@ -166,17 +166,16 @@ const SheetTable = ({ sx }: SheetTableProps) => { } ) .map(async (cell, _, array) => { - const resolvedContractAddress = cell.contractAddress.lt( - RC_BOUND - ) - ? array[cell.contractAddress.toNumber()].value - : cell.contractAddress; + const resolvedContractAddress = + cell.contractAddress < RC_BOUND + ? array[Number(cell.contractAddress)].value + : cell.contractAddress; const abi = await getAbiForContract( - bn2hex(resolvedContractAddress) + bigint2hex(resolvedContractAddress) ); return { ...cell, - abi: abi[bn2hex(cell.selector)] as FunctionAbi, + abi: abi[bigint2hex(cell.selector)] as FunctionAbi, }; }) ); @@ -189,6 +188,7 @@ const SheetTable = ({ sx }: SheetTableProps) => { })); }) .catch((error) => { + console.log(error); error = true; finalMessage = `Error: ${chainConfig.appName} cannot render sheet at address ${address}
diff --git a/packages/starksheet-webapp/src/components/Widget/Widget.tsx b/packages/starksheet-webapp/src/components/Widget/Widget.tsx index 76d29c33..aede2332 100644 --- a/packages/starksheet-webapp/src/components/Widget/Widget.tsx +++ b/packages/starksheet-webapp/src/components/Widget/Widget.tsx @@ -1,15 +1,15 @@ +import { connect, StarknetWindowObject } from "@argent/get-starknet"; import { Dialog } from "@mui/material"; import { useWeb3React, Web3ReactProvider } from "@web3-react/core"; -import { AccountInterface, WidoWidget } from "wido-widget"; -import { getSupportedTokens } from "wido"; -import { connect as getStarknet, StarknetWindowObject } from "get-starknet"; -import { useCallback, useEffect, useState } from "react"; import { InjectedConnector } from "@web3-react/injected-connector"; import { providers } from "ethers"; +import { useCallback, useEffect, useState } from "react"; +import { getSupportedTokens } from "wido"; +import { AccountInterface, WidoWidget } from "wido-widget"; import { useChainProvider } from "../../hooks/useChainProvider"; import { ChainId, ChainProvider, ChainType } from "../../types"; -const injected = new InjectedConnector({}) +const injected = new InjectedConnector({}); const WIDO_STARKNET_MAINNET_ID = 15366; const WIDO_STARKNET_TESTNET_ID = 15367; @@ -23,86 +23,98 @@ type WidgetProps = { type TokenList = { chainId: number; address: string; -}[] +}[]; const WidgetDialog = ({ open, onClose, provider }: WidgetProps) => { - const [ethProvider, setEthProvider] = useState() - const [starknetAccount, setStarknetAccount] = useState(undefined) - const [starknet, setStarknet] = useState() - - const [fromTokens, setFromTokens] = useState([]) - const [toTokens, setToTokens] = useState([]) - - const snChainId = provider.getChainId() === ChainId.STARKNET_MAINNET - ? WIDO_STARKNET_MAINNET_ID - : WIDO_STARKNET_TESTNET_ID; - - const ethChainId = provider.getChainId() === ChainId.STARKNET_MAINNET - ? parseInt(ChainId.ETHEREUM_MAINNET) - : parseInt(ChainId.ETHEREUM_TESTNET); + const [ethProvider, setEthProvider] = useState< + providers.Web3Provider | undefined + >(); + const [starknetAccount, setStarknetAccount] = useState< + AccountInterface | undefined + >(undefined); + const [starknet, setStarknet] = useState(); + + const [fromTokens, setFromTokens] = useState([]); + const [toTokens, setToTokens] = useState([]); + + const snChainId = + provider.getChainId() === ChainId.STARKNET_MAINNET + ? WIDO_STARKNET_MAINNET_ID + : WIDO_STARKNET_TESTNET_ID; + + const ethChainId = + provider.getChainId() === ChainId.STARKNET_MAINNET + ? parseInt(ChainId.ETHEREUM_MAINNET) + : parseInt(ChainId.ETHEREUM_TESTNET); useEffect(() => { getSupportedTokens({ chainId: [ethChainId, snChainId], }).then((tokens) => { - const ethereumTokens = tokens.filter(token => token.chainId === ethChainId); - const starknetTokens = tokens.filter(token => token.chainId === snChainId); + const ethereumTokens = tokens.filter( + (token) => token.chainId === ethChainId + ); + const starknetTokens = tokens.filter( + (token) => token.chainId === snChainId + ); setFromTokens(ethereumTokens); setToTokens(starknetTokens); - }) - }, [ethChainId, snChainId, setFromTokens, setToTokens]) + }); + }, [ethChainId, snChainId, setFromTokens, setToTokens]); - const { library, activate, account, chainId } = useWeb3React() + const { library, activate, account, chainId } = useWeb3React(); useEffect(() => { async function getStarknetAccount() { - let starknetWindow = await getStarknet({ modalMode: "neverAsk" }); - setStarknetAccount(starknetWindow?.account) + let starknetWindow = await connect({ modalMode: "neverAsk" }); + setStarknetAccount(starknetWindow?.account); } - getStarknetAccount() - }, [starknet, setStarknetAccount]) + getStarknetAccount(); + }, [starknet, setStarknetAccount]); useEffect(() => { - if (!library) return + if (!library) return; // every time account or chainId changes we need to re-create the provider // for the widget to update with the proper address - setEthProvider(new providers.Web3Provider(library)) - }, [library, account, chainId, setEthProvider]) + setEthProvider(new providers.Web3Provider(library)); + }, [library, account, chainId, setEthProvider]); const handleStarknet = useCallback(async () => { - const connection = await getStarknet() - await connection?.enable() - setStarknet(connection) - connection?.on('networkChanged', () => setStarknet(undefined)) - connection?.on('accountsChanged', () => setStarknet(undefined)) - }, [setStarknet]) + const connection = await connect(); + await connection?.enable(); + setStarknet(connection); + connection?.on("networkChanged", () => setStarknet(undefined)); + connection?.on("accountsChanged", () => setStarknet(undefined)); + }, [setStarknet]); const handleMetamask = useCallback(async () => { - await activate(injected) - }, [activate]) + await activate(injected); + }, [activate]); const handleConnectWalletClick = useCallback( (chainId: number) => { if (chainId === snChainId) { - handleStarknet() + handleStarknet(); } else { - handleMetamask() + handleMetamask(); } }, [snChainId, handleStarknet, handleMetamask] - ) - - const widget = + ); + + const widget = ( + + ); return ( { }} PaperProps={{ style: { - backgroundColor: 'transparent', - boxShadow: 'none', + backgroundColor: "transparent", + boxShadow: "none", }, }} /> ); }; -export default function Widget(props: Omit) { +export default function Widget(props: Omit) { const provider = useChainProvider(); // only display the widget for starknet chains @@ -134,5 +146,5 @@ export default function Widget(props: Omit) { provider}> - ) + ); } diff --git a/packages/starksheet-webapp/src/contexts/AbisContext.tsx b/packages/starksheet-webapp/src/contexts/AbisContext.tsx index 760cf22f..40cc0bd1 100644 --- a/packages/starksheet-webapp/src/contexts/AbisContext.tsx +++ b/packages/starksheet-webapp/src/contexts/AbisContext.tsx @@ -3,7 +3,7 @@ import { Abi } from "starknet"; import { useChainProvider } from "../hooks/useChainProvider"; import { ContractAbi, ContractAbis, InitialContractAbis } from "../types"; import { RC_BOUND } from "../utils/constants"; -import { bn2hex, normalizeHexString } from "../utils/hexUtils"; +import { bigint2hex, normalizeHexString } from "../utils/hexUtils"; export const AbisContext = React.createContext<{ contractAbis: ContractAbis; @@ -27,7 +27,7 @@ export const AbisContextProvider = ({ [normalizeHexString(cur[0])]: chainProvider.parseAbi(cur[1] as Abi), }), { - [bn2hex(RC_BOUND)]: {}, + [bigint2hex(RC_BOUND)]: {}, } ); diff --git a/packages/starksheet-webapp/src/contexts/AccountContext.tsx b/packages/starksheet-webapp/src/contexts/AccountContext.tsx index 8dae798c..9a8b96fb 100644 --- a/packages/starksheet-webapp/src/contexts/AccountContext.tsx +++ b/packages/starksheet-webapp/src/contexts/AccountContext.tsx @@ -1,5 +1,6 @@ import { useSnackbar } from "notistack"; import React, { PropsWithChildren, useMemo, useState } from "react"; +import { BigNumberish } from "starknet"; import { useChainProvider } from "../hooks"; import { ContractCall, TransactionResponse } from "../types"; @@ -27,7 +28,6 @@ export const AccountContextProvider = ({ children }: PropsWithChildren<{}>) => { const proof = useMemo(() => [], []); const provider = useChainProvider(); - const execute = provider.execute; const connect = () => provider @@ -39,6 +39,10 @@ export const AccountContextProvider = ({ children }: PropsWithChildren<{}>) => { enqueueSnackbar(error.toString(), { variant: "warning" }); }); + const execute = (calls: ContractCall[], options?: { value?: BigNumberish }) => + // @ts-ignore + provider.execute(calls, options); + return ( void; setCurrentUpdatedCells: (cells: { [key: number]: Cell }) => void; - computeValue: (values: BN[]) => (cell: CellData) => Promise; + computeValue: (values: bigint[]) => (cell: CellData) => Promise; updateCells: (cells: Cell[]) => void; buildChildren: (children: CellGraph, depth?: number) => (id: number) => void; buildParents: (children: CellGraph, depth?: number) => (id: number) => void; @@ -37,7 +34,7 @@ export const CellValuesContext = React.createContext<{ currentUpdatedCells: {}, setUpdatedValues: () => {}, setCurrentUpdatedCells: () => {}, - computeValue: () => async () => number.toBN(0), + computeValue: () => async () => 0n, updateCells: () => {}, buildChildren: () => () => {}, buildParents: () => () => {}, @@ -77,8 +74,8 @@ export const CellValuesContextProvider = ({ [selectedSheetAddress, setUpdatedValues] ); - const computeValue = (values: BN[]) => async (cell: CellData) => { - if (cell.contractAddress.eq(RC_BOUND) || !cell.abi) { + const computeValue = (values: bigint[]) => async (cell: CellData) => { + if (cell.contractAddress === RC_BOUND || !cell.abi) { return cell.selector; } @@ -87,12 +84,10 @@ export const CellValuesContextProvider = ({ cell.contractAddress ); - const contractAddress = bn2hex(resolvedContractAddress); + const contractAddress = bigint2hex(resolvedContractAddress); const calldata = cell.calldata.map((arg) => { - return isDependency(arg) - ? values[(arg.toNumber() - 1) / 2] - : arg.div(number.toBN(2)); + return isDependency(arg) ? values[(Number(arg) - 1) / 2] : arg / 2n; }); const call = { @@ -108,7 +103,7 @@ export const CellValuesContextProvider = ({ ? await chainProvider.callContract(call) : 0; - return number.toBN(value); + return BigInt(value); }; const buildChildren = useCallback( @@ -119,10 +114,10 @@ export const CellValuesContextProvider = ({ (cell) => cell.calldata .filter(isDependency) - .map((arg) => (arg.toNumber() - 1) / 2) + .map((arg) => (Number(arg) - 1) / 2) .includes(id) || - (cell.contractAddress.lt(RC_BOUND) && - cell.contractAddress.toNumber() === id) + (cell.contractAddress < RC_BOUND && + Number(cell.contractAddress) === id) ) .map((cell) => cell.id); @@ -141,9 +136,9 @@ export const CellValuesContextProvider = ({ const cell = values[selectedSheetAddress][id]; const currentParents = cell.calldata .filter(isDependency) - .map((arg) => (arg.toNumber() - 1) / 2); - if (cell.contractAddress.lt(RC_BOUND)) { - currentParents.push(cell.contractAddress.toNumber()); + .map((arg) => (Number(arg) - 1) / 2); + if (cell.contractAddress < RC_BOUND) { + currentParents.push(Number(cell.contractAddress)); } currentParents.forEach((_id) => { @@ -166,8 +161,8 @@ export const CellValuesContextProvider = ({ ...cell, }; if ( - !cell.contractAddress.eq(currentCells[id].contractAddress) || - !cell.selector.eq(currentCells[id].selector) || + cell.contractAddress !== currentCells[id].contractAddress || + cell.selector !== currentCells[id].selector || cell.calldata !== currentCells[id].calldata ) { newUpdatedCells[id] = newCells[id]; diff --git a/packages/starksheet-webapp/src/contexts/OnsheetContext.tsx b/packages/starksheet-webapp/src/contexts/OnsheetContext.tsx index 10424308..42da0848 100644 --- a/packages/starksheet-webapp/src/contexts/OnsheetContext.tsx +++ b/packages/starksheet-webapp/src/contexts/OnsheetContext.tsx @@ -1,4 +1,3 @@ -import { BN } from "bn.js"; import React, { PropsWithChildren, useCallback, @@ -75,9 +74,7 @@ export const OnsheetContextProvider = ({ children }: PropsWithChildren) => { address, defaultRenderer: renderer, sheets: [], - sheetPrice: - sheetPrice.div(new BN(10).pow(new BN(9))).toNumber() / - 1_000_000_000, + sheetPrice: Number(sheetPrice / 10n ** 9n) / 1_000_000_000, }; }) .then((_onsheet) => { diff --git a/packages/starksheet-webapp/src/contexts/TransactionsContext.tsx b/packages/starksheet-webapp/src/contexts/TransactionsContext.tsx index 35df3ec3..dad7ec8b 100644 --- a/packages/starksheet-webapp/src/contexts/TransactionsContext.tsx +++ b/packages/starksheet-webapp/src/contexts/TransactionsContext.tsx @@ -5,7 +5,6 @@ import React, { useContext, useMemo, } from "react"; -import { number } from "starknet"; import { useChainProvider } from "../hooks/useChainProvider"; import { useOnsheetContract } from "../hooks/useOnsheetContract"; import { ContractCall, NewSheet } from "../types"; @@ -59,8 +58,7 @@ export const TransactionsContextProvider = ({ .reduce((prev, cur) => [...prev, ...cur], []) .filter( (cell) => - (cell.owner.eq(number.toBN(0)) && - !cell.selector.eq(number.toBN(0))) || + (cell.owner === 0n && cell.selector !== 0n) || "0x" + cell.owner.toString(16) === accountAddress ) .map((cell) => contract.setCellTxBuilder(cell)); @@ -102,10 +100,7 @@ export const TransactionsContextProvider = ({ let options; if (costEth > 0) { options = { - value: number - .toBN(costEth * 1_000_000_000) - .mul(number.toBN(10).pow(number.toBN(9))) - .toString(), + value: (BigInt(costEth * 1_000_000_000) * 10n ** 9n).toString(), }; } @@ -131,7 +126,14 @@ export const TransactionsContextProvider = ({ ); }) .catch((error: any) => { - enqueueSnackbar(error.toString(), { variant: "error" }); + console.log("error", error.toString()); + if (error.toString() === "Error: Execute failed") { + // TODO: fix because braavos raises while it does work + setUpdatedValues({}); + validateNewSheets(); + } else { + enqueueSnackbar(error.toString(), { variant: "error" }); + } }); }, [ diff --git a/packages/starksheet-webapp/src/contracts/spreadsheet/EvmSpreadsheetContract.ts b/packages/starksheet-webapp/src/contracts/spreadsheet/EvmSpreadsheetContract.ts index e1339842..3aeba26a 100644 --- a/packages/starksheet-webapp/src/contracts/spreadsheet/EvmSpreadsheetContract.ts +++ b/packages/starksheet-webapp/src/contracts/spreadsheet/EvmSpreadsheetContract.ts @@ -1,10 +1,9 @@ import { JsonRpcProvider } from "@ethersproject/providers"; -import BN from "bn.js"; import { BigNumber, ethers } from "ethers"; import { Cell, ContractCall, SheetConstructorArgs } from "../../types"; import { SpreadsheetContract } from "../../types/contracts"; import { RC_BOUND } from "../../utils/constants"; -import { bn2uint, hex2str } from "../../utils/hexUtils"; +import { bigint2uint, hex2str } from "../../utils/hexUtils"; import { Evmsheet, Evmsheet__factory, Sheet__factory } from "../types"; /** @@ -12,13 +11,13 @@ import { Evmsheet, Evmsheet__factory, Sheet__factory } from "../types"; */ export class EvmSpreadsheetContract implements SpreadsheetContract { private contract: Evmsheet; - private sheetPrice: BN; + private sheetPrice: bigint; /** * The class constructor. */ constructor(private address: string, private provider: JsonRpcProvider) { - this.sheetPrice = new BN(0); + this.sheetPrice = 0n; this.contract = Evmsheet__factory.connect(address, provider); this.getSheetPrice().then((price) => { this.sheetPrice = price; @@ -57,9 +56,9 @@ export class EvmSpreadsheetContract implements SpreadsheetContract { /** * @inheritDoc */ - async getSheetPrice(): Promise { + async getSheetPrice(): Promise { const value: BigNumber = await this.contract.sheetPrice(); - return new BN(value.toString()); + return BigInt(value.toString()); } /** @@ -96,16 +95,17 @@ export class EvmSpreadsheetContract implements SpreadsheetContract { ): ContractCall { // If contractAddress is RC_BOUND, then the cell is constant and we store the selector // as a regular uint256 - const selector = cell.contractAddress.eq(RC_BOUND) - ? bn2uint(32)(cell.selector) - : bn2uint(4)(cell.selector).padEnd(64, "0"); + const selector = + cell.contractAddress === RC_BOUND + ? bigint2uint(32)(cell.selector) + : bigint2uint(4)(cell.selector).padEnd(64, "0"); return { to: cell.sheetAddress, calldata: Sheet__factory.createInterface().encodeFunctionData("setCell", [ cell.id, - "0x" + bn2uint(20)(cell.contractAddress), + "0x" + bigint2uint(20)(cell.contractAddress), "0x" + selector, - "0x" + cell.calldata.map(bn2uint(32)).join(""), + "0x" + cell.calldata.map(bigint2uint(32)).join(""), ]), }; } diff --git a/packages/starksheet-webapp/src/contracts/spreadsheet/StarknetSpreadsheetContract.ts b/packages/starksheet-webapp/src/contracts/spreadsheet/StarknetSpreadsheetContract.ts index de82f508..a377f405 100644 --- a/packages/starksheet-webapp/src/contracts/spreadsheet/StarknetSpreadsheetContract.ts +++ b/packages/starksheet-webapp/src/contracts/spreadsheet/StarknetSpreadsheetContract.ts @@ -1,5 +1,10 @@ -import BN from "bn.js"; -import { Contract, hash, number, ProviderInterface, stark } from "starknet"; +import { + BigNumberish, + CallData, + Contract, + hash, + ProviderInterface, +} from "starknet"; import { Abi, Cell, @@ -7,7 +12,7 @@ import { SheetConstructorArgs, SpreadsheetContract, } from "../../types"; -import { bn2hex } from "../../utils/hexUtils"; +import { bigint2hex } from "../../utils/hexUtils"; /** * Represents a starknet implementation of the SpreadsheetContract. @@ -45,7 +50,7 @@ export class StarknetSpreadsheetContract implements SpreadsheetContract { const renderer = await this.contract.functions[ "getSheetDefaultRendererAddress" ](); - return bn2hex(renderer.address); + return bigint2hex(renderer.address); } /** @@ -53,13 +58,13 @@ export class StarknetSpreadsheetContract implements SpreadsheetContract { */ async getSheets(): Promise { const { addresses } = await this.contract.functions["getSheets"](); - return addresses.map((address: BN) => bn2hex(address)); + return addresses.map((address: bigint) => bigint2hex(address)); } /** * @inheritDoc */ - async getSheetPrice(): Promise { + async getSheetPrice(): Promise { const price = await this.contract.functions["getSheetPrice"](); return price.price; } @@ -70,13 +75,12 @@ export class StarknetSpreadsheetContract implements SpreadsheetContract { setCellTxBuilder( cell: Cell & { tokenId: number; sheetAddress: string } ): ContractCall { - return cell.owner.eq(number.toBN(0)) + return cell.owner === 0n ? { to: cell.sheetAddress, entrypoint: "mintAndSetPublic", - calldata: stark.compileCalldata({ + calldata: CallData.compile({ tokenId: { - type: "struct", low: cell.tokenId, high: 0, }, @@ -89,7 +93,7 @@ export class StarknetSpreadsheetContract implements SpreadsheetContract { : { to: cell.sheetAddress, entrypoint: "setCell", - calldata: stark.compileCalldata({ + calldata: CallData.compile({ tokenId: cell.tokenId.toString(), contractAddress: cell.contractAddress.toString(), value: cell.selector.toString(), @@ -105,7 +109,7 @@ export class StarknetSpreadsheetContract implements SpreadsheetContract { return { to: this.address, entrypoint: "addSheet", - calldata: stark.compileCalldata({ + calldata: CallData.compile({ name, symbol, proof: [], @@ -117,7 +121,7 @@ export class StarknetSpreadsheetContract implements SpreadsheetContract { * @inheritDoc */ async calculateSheetAddress( - from: number.BigNumberish, + from: BigNumberish, constructorCalldata: SheetConstructorArgs ): Promise { const classHash = await this.proxyClassHash; @@ -149,7 +153,7 @@ export class StarknetSpreadsheetContract implements SpreadsheetContract { */ private async getSheetClassHash(): Promise { const classHash = await this.contract.functions["getSheetClassHash"](); - return bn2hex(classHash.hash); + return bigint2hex(classHash.hash); } /** @@ -159,6 +163,6 @@ export class StarknetSpreadsheetContract implements SpreadsheetContract { */ private async getProxyClassHash(): Promise { const classHash = await this.contract.functions["getProxyClassHash"](); - return bn2hex(classHash.hash); + return bigint2hex(classHash.hash); } } diff --git a/packages/starksheet-webapp/src/contracts/worksheet/EvmWorksheetContract.ts b/packages/starksheet-webapp/src/contracts/worksheet/EvmWorksheetContract.ts index a27b0eb1..ac41a458 100644 --- a/packages/starksheet-webapp/src/contracts/worksheet/EvmWorksheetContract.ts +++ b/packages/starksheet-webapp/src/contracts/worksheet/EvmWorksheetContract.ts @@ -1,13 +1,8 @@ import { JsonRpcProvider } from "@ethersproject/providers"; -import BN from "bn.js"; -import "ethers"; -import { number } from "starknet"; import { N_ROW } from "../../config"; import { CellData, CellRendered, WorksheetContract } from "../../types"; -import { - ethersHexStringToBN, - hexStringToIntegerArray, -} from "../../utils/hexUtils"; +import { RC_BOUND } from "../../utils/constants"; +import { hexStringToIntegerArray } from "../../utils/hexUtils"; import { Sheet, Sheet__factory } from "../types"; export class EvmWorksheetContract implements WorksheetContract { @@ -27,9 +22,13 @@ export class EvmWorksheetContract implements WorksheetContract { const [contractAddress, selector, data] = await this.contract.getCell( tokenId ); + return { - contractAddress: ethersHexStringToBN(contractAddress), - selector: number.toBN(selector.slice(0, 10)), + contractAddress: BigInt(contractAddress), + selector: + BigInt(contractAddress) === RC_BOUND + ? BigInt(selector) + : BigInt(selector.slice(0, 10)), calldata: hexStringToIntegerArray(data.slice(2)), }; } @@ -51,13 +50,13 @@ export class EvmWorksheetContract implements WorksheetContract { /** * @inheritDoc */ - async ownerOf(tokenId: number): Promise { + async ownerOf(tokenId: number): Promise { try { return await this.contract .ownerOf(tokenId) - .then((address: string) => new BN(address)); + .then((address: string) => BigInt(address)); } catch (error) { - return new BN(0); + return 0n; } } @@ -69,14 +68,14 @@ export class EvmWorksheetContract implements WorksheetContract { const cell = await this.contract.renderCell(tokenId); return { id: tokenId, - value: number.toBN(cell.value), - owner: number.toBN(cell.owner), + value: BigInt(cell.value), + owner: BigInt(cell.owner), }; } catch (error) { const owner = await this.ownerOf(tokenId); return { id: tokenId, - value: new BN(0), + value: 0n, owner: owner, error: true, } as CellRendered; diff --git a/packages/starksheet-webapp/src/contracts/worksheet/StarknetWorksheetContract.ts b/packages/starksheet-webapp/src/contracts/worksheet/StarknetWorksheetContract.ts index 42388188..df17d7d1 100644 --- a/packages/starksheet-webapp/src/contracts/worksheet/StarknetWorksheetContract.ts +++ b/packages/starksheet-webapp/src/contracts/worksheet/StarknetWorksheetContract.ts @@ -1,5 +1,4 @@ -import BN from "bn.js"; -import { Contract, number, ProviderInterface } from "starknet"; +import { BigNumberish, CallData, Contract, ProviderInterface } from "starknet"; import { N_ROW } from "../../config"; import { Abi, CellData, CellRendered, WorksheetContract } from "../../types"; import { hex2str, normalizeHexString } from "../../utils/hexUtils"; @@ -46,12 +45,13 @@ export class StarknetWorksheetContract implements WorksheetContract { const result = await this.contract.call("renderCell", [tokenId], { blockIdentifier: "latest", }); - return result.cell as CellRendered; + // @ts-ignore + return { ...result.cell, id: tokenId } as CellRendered; } catch (error) { const owner = await this.ownerOf(tokenId); return { id: tokenId, - value: number.toBN(0), + value: 0n, owner: owner, error: true, } as CellRendered; @@ -62,22 +62,29 @@ export class StarknetWorksheetContract implements WorksheetContract { const result = await this.contract.call("totalSupply", [], { blockIdentifier: "latest", }); - return result.totalSupply.low.toNumber(); + // @ts-ignore + return Number(result.totalSupply.low); } - async ownerOf(tokenId: number): Promise { - const result = await this.contract.call("ownerOf", [[tokenId, "0"]]); + async ownerOf(tokenId: number): Promise { + const result = await this.contract.call("ownerOf", [ + { low: tokenId, high: 0 }, + ]); + // @ts-ignore return result.owner; } - async getCell(tokenId: number.BigNumberish): Promise { - const _cell = await this.contract.call("getCell", [tokenId], { + async getCell(tokenId: BigNumberish): Promise { + const result = await this.contract.call("getCell", [tokenId], { blockIdentifier: "latest", }); return { - contractAddress: _cell.contractAddress, - selector: _cell.value, - calldata: _cell.cell_calldata, + // @ts-ignore + contractAddress: result.contractAddress, + // @ts-ignore + selector: result.value, + // @ts-ignore + calldata: result.cell_calldata, }; } @@ -90,23 +97,28 @@ export class StarknetWorksheetContract implements WorksheetContract { } private async tokenByIndex(index: number): Promise { - const result = await this.contract.call("tokenByIndex", [[index, "0"]], { - blockIdentifier: "latest", - }); - return result.tokenId.low.toNumber(); + const result = await this.contract.call( + "tokenByIndex", + CallData.compile({ + index: { + low: index, + high: 0, + }, + }) + ); + // @ts-ignore + return Number(result.tokenId.low); } async name(): Promise { - const result = await this.contract.call("name", [], { - blockIdentifier: "latest", - }); + const result = await this.contract.call("name", []); + // @ts-ignore return hex2str(normalizeHexString(result.name)); } async symbol(): Promise { - const result = await this.contract.call("symbol", [], { - blockIdentifier: "latest", - }); + const result = await this.contract.call("symbol", []); + // @ts-ignore return hex2str(normalizeHexString(result.symbol)); } } diff --git a/packages/starksheet-webapp/src/provider/EVMProvider.ts b/packages/starksheet-webapp/src/provider/EVMProvider.ts index dce8a02a..110838ab 100644 --- a/packages/starksheet-webapp/src/provider/EVMProvider.ts +++ b/packages/starksheet-webapp/src/provider/EVMProvider.ts @@ -1,8 +1,6 @@ import { JsonRpcProvider } from "@ethersproject/providers"; -import BN from "bn.js"; import { ethers } from "ethers"; import { MetaTransaction, OperationType, encodeMulti } from "ethers-multisend"; -import { number } from "starknet"; import { EvmSpreadsheetContract, EvmWorksheetContract } from "../contracts"; import { MultiSendCallOnly__factory } from "../contracts/types"; import { @@ -16,7 +14,7 @@ import { TransactionReceipt, WorksheetContract, } from "../types"; -import { bn2hex, bn2uint } from "../utils/hexUtils"; +import { bigint2hex, bigint2uint, normalizeHexString } from "../utils/hexUtils"; import { chainConfig } from "./chains"; /** @@ -53,7 +51,7 @@ export class EVMProvider implements ChainProvider { /** * - * Convert a ContractCall to an EVM call. The BN are converted using bn2uint (ie. padding with 0 at left) because + * Convert a ContractCall to an EVM call. The bigints are converted using bigint2uint (ie. padding with 0 at left) because * they come from hex strings, * @param call * @returns @@ -61,8 +59,8 @@ export class EVMProvider implements ChainProvider { contractCallToEVMCalldata(call: ContractCall): string { return ( "0x" + - bn2uint(4)(call.selector! as BN) + - (call.calldata as BN[]).map(bn2uint(32)).join("") + bigint2uint(4)(BigInt("0x" + call.selector!.toString(16))) + + (call.calldata as bigint[]).map(bigint2uint(32)).join("") ); } @@ -81,7 +79,7 @@ export class EVMProvider implements ChainProvider { const url = new URL(this.config.explorerApiUrl!); url.search = params.toString(); - let abi = []; + let abi: Abi = []; try { const rawAbi = await fetch(url) // check the response is not an error and decode its content to json @@ -111,23 +109,53 @@ export class EVMProvider implements ChainProvider { // parse the raw abi and return it abi = JSON.parse(rawAbi); + const iface = new ethers.utils.Interface(abi); + const others = await Promise.all( + iface.fragments + .filter( + (f: any) => + f.type === "function" && + f.stateMutability === "view" && + f.inputs.length === 0 && + f.name.toLowerCase().includes("impl") + ) + .map(async (f) => { + const implementationAddress = ( + await this.provider.call({ + to: address, + data: iface.getSighash(f), + }) + ) + .slice(2) + .replace(/^0+/, ""); + return Object.values( + (await this.getAbi("0x" + implementationAddress)) || {} + ) as Abi; + }) + ); + abi = [...abi, ...others.flat()]; } catch (error) { abi = []; } - return abi; + return abi as Abi; } parseAbi(abi: Abi): ContractAbi { try { const iface = new ethers.utils.Interface(abi); - return iface.fragments.reduce( - (prev, cur) => ({ - ...prev, - [iface.getSighash(cur)]: cur, - }), - {} + return iface.fragments + .filter((fragment) => fragment.type === "function") + .reduce( + (prev, cur) => ({ + ...prev, + [normalizeHexString(iface.getSighash(cur))]: cur, + }), + {} + ); + } catch (error) { + console.log( + `Couldn't parse the following ABI\n${abi}\n\nError: ${error}` ); - } catch { return {}; } } @@ -206,7 +234,7 @@ export class EVMProvider implements ChainProvider { const transactions: MetaTransaction[] = calls.map((call) => ({ to: call.to, - value: call.value ? bn2hex(call.value) : "0x0", + value: call.value ? bigint2hex(call.value) : "0x0", data: call.calldata as string, operation: OperationType.Call, })); @@ -218,14 +246,14 @@ export class EVMProvider implements ChainProvider { ); const value = transactions - .map((tx) => number.toBN(tx.value)) - .reduce((prev, cur) => prev.add(cur), number.toBN(0)); + .map((tx) => BigInt(tx.value)) + .reduce((prev, cur) => prev + cur, 0n); const multisend = MultiSendCallOnly__factory.connect( chainConfig.addresses.multisend!, signer ); - const overrides = value.gt(number.toBN(0)) ? { value: bn2hex(value) } : {}; + const overrides = value > 0n ? { value: bigint2hex(value) } : {}; const tx = await multisend.multiSend( // encodeMulti creates a new MetaTransaction, and the data includes to bytes selector and bytes lengths // So we slices "0x" + bytes4 + 2 times bytes.length diff --git a/packages/starksheet-webapp/src/provider/StarknetProvider.ts b/packages/starksheet-webapp/src/provider/StarknetProvider.ts index f63e2c68..959b4d7e 100644 --- a/packages/starksheet-webapp/src/provider/StarknetProvider.ts +++ b/packages/starksheet-webapp/src/provider/StarknetProvider.ts @@ -1,14 +1,15 @@ -import BN from "bn.js"; -import { BigNumberish } from "ethers"; -import { disconnect, connect as getStarknet } from "get-starknet"; +import { + StarknetWindowObject, + connect, + disconnect, +} from "@argent/get-starknet"; import { Abi, - Provider, - ProviderInterface, + BigNumberish, + CallData, RpcProvider, + TransactionFinalityStatus, hash, - number, - stark, } from "starknet"; import { StarknetSpreadsheetContract, @@ -25,22 +26,21 @@ import { WorksheetContract, } from "../types"; import { RC_BOUND } from "../utils/constants"; -import { bn2hex, hex2str, normalizeHexString } from "../utils/hexUtils"; +import { bigint2hex, hex2str, normalizeHexString } from "../utils/hexUtils"; import { chainAbi } from "./chains"; export class StarknetProvider implements ChainProvider { - private readonly provider: ProviderInterface; + private readonly provider: RpcProvider; private readonly spreadsheetContract: StarknetSpreadsheetContract; + private connection: StarknetWindowObject | undefined; /** * Constructs a StarknetProvider. */ constructor(rpcUrl: string, private config: ChainConfig) { - this.provider = config.gateway - ? new Provider({ sequencer: { network: config.gateway } }) - : new RpcProvider({ - nodeUrl: rpcUrl, - }); + this.provider = new RpcProvider({ + nodeUrl: rpcUrl, + }); const address = config.addresses.spreadsheet; const abi = chainAbi.spreadsheet; @@ -110,18 +110,31 @@ export class StarknetProvider implements ChainProvider { return new StarknetWorksheetContract(address, abi, this.provider); } + sleep = (delay: number) => + new Promise((resolve) => setTimeout(resolve, delay * 1_000)); + /** * @inheritDoc */ - waitForTransaction(hash: string): Promise { - return this.provider.waitForTransaction(hash, 3_000); + async waitForTransaction(hash: string): Promise { + for (let i = 0; i < 10; i++) { + try { + return await this.provider.getTransactionReceipt(hash); + } catch (e) { + await this.sleep(3); + } + } + return this.provider.waitForTransaction(hash, { + successStates: [TransactionFinalityStatus.ACCEPTED_ON_L2], + }); } /** * @inheritDoc */ - getTransactionReceipt(hash: string): Promise { - return this.provider.getTransactionReceipt(hash); + async getTransactionReceipt(hash: string): Promise { + const receipt = await this.provider.getTransactionReceipt(hash); + return { ...receipt, status: receipt.finality_status }; } /** @@ -129,13 +142,18 @@ export class StarknetProvider implements ChainProvider { */ async getAbi(address: string): Promise { let abi: Abi = []; - if (number.toBN(address).eq(RC_BOUND)) { + if (BigInt(address) === RC_BOUND) { return abi; } + let isContract = await this.addressAlreadyDeployed(address); let response; try { - response = await this.provider.getClassAt(address); + if (isContract) { + response = await this.provider.getClassAt(address); + } else { + response = await this.provider.getClassByHash(address); + } } catch (error) { response = { abi: [] }; } @@ -184,7 +202,7 @@ export class StarknetProvider implements ChainProvider { { contractAddress: call.to, entrypoint: call.entrypoint, - calldata: (call.calldata as BN[]).map((c) => bn2hex(c)), + calldata: (call.calldata as bigint[]).map((c) => bigint2hex(c)), }, "latest" ); @@ -195,42 +213,50 @@ export class StarknetProvider implements ChainProvider { * @inheritDoc */ async login(): Promise { - let starknetWindow = await getStarknet({ modalMode: "neverAsk" }); - - if (starknetWindow?.isConnected) { + if (this.connection?.isConnected) { await disconnect({ clearLastWallet: true }); } - starknetWindow = await getStarknet({ modalMode: "canAsk" }); - if (starknetWindow === null) { - throw new Error( - "Cannot find a starknet window, is ArgentX or Braavos installed?" - ); + const connection = await connect({ + modalMode: "alwaysAsk", + dappName: this.config.appName, + webWalletUrl: + this.config.chainId === ChainId.STARKNET_MAINNET + ? "https://web.argent.xyz" + : "https://web.hydrogen.argent47.net", + }); + + if (connection === null) { + return ""; } - if (!starknetWindow.isConnected) { + if (!connection.isConnected) { throw new Error("Login failed"); } if ( (this.config.chainId as string) !== - (starknetWindow.provider.chainId as string) + (connection.provider.chainId as string) ) { - if (starknetWindow.id === "argentX") { - await starknetWindow.request({ + if (connection.id === "argentX") { + await connection.request({ type: "wallet_switchStarknetChain", params: { chainId: this.config.chainId }, }); } else { - throw new Error( - `Wrong network detected: "${hex2str( - starknetWindow.provider.chainId - )}" instead of "${this.config.chainId}"` - ); + if (connection.provider.chainId !== undefined) { + throw new Error( + `Wrong network detected: "${hex2str( + connection.provider.chainId + )}" instead of "${hex2str(this.config.chainId)}"` + ); + } } } - return normalizeHexString(starknetWindow.account.address); + this.connection = connection; + await this.connection.enable({ starknetVersion: "v5" }); + return normalizeHexString(connection.account.address); } /** @@ -240,23 +266,19 @@ export class StarknetProvider implements ChainProvider { calls: ContractCall[], options?: { value?: BigNumberish } ): Promise { - const starknetWindow = await getStarknet({ modalMode: "neverAsk" }); - if (starknetWindow === null) { - throw new Error("Account is not connected"); - } - if (!starknetWindow.isConnected) { + if (!this.connection?.isConnected) { throw new Error("Account is not connected"); } + if (options?.value) { calls = [ { to: "0x49D36570D4E46F48E99674BD3FCC84644DDD6B96F7C741B1562B82F9E004DC7", entrypoint: "approve", - calldata: stark.compileCalldata({ + calldata: CallData.compile({ spender: calls[0].to, amount: { - type: "struct", - low: number.toBN(options.value.toString()), + low: options.value.toString(), high: 0, }, }), @@ -264,12 +286,20 @@ export class StarknetProvider implements ChainProvider { ...calls, ]; } - - return await starknetWindow.account.execute( + console.log(this.connection); + console.log(this.connection.account); + console.log( + calls.map((call) => ({ + contractAddress: call.to, + entrypoint: call.entrypoint, + calldata: [...call.calldata], + })) + ); + return await this.connection.account.execute( calls.map((call) => ({ contractAddress: call.to, entrypoint: call.entrypoint, - calldata: call.calldata as BN[], + calldata: [...call.calldata], })) ); } diff --git a/packages/starksheet-webapp/src/provider/chains.ts b/packages/starksheet-webapp/src/provider/chains.ts index 0866e768..53bf5775 100644 --- a/packages/starksheet-webapp/src/provider/chains.ts +++ b/packages/starksheet-webapp/src/provider/chains.ts @@ -1,3 +1,4 @@ +import { Abi } from "starknet"; import contractData from "../contracts/contractData.json"; import { ChainConfig, ChainId, ChainType } from "../types"; import { EVMProvider } from "./EVMProvider"; @@ -12,11 +13,12 @@ type SupportedChains = | "madara" | "katana" | "sharingan" - | "devnet"; + | "kakarot" + | "starknetDevnet"; const chainConfigs: Record> = { goerli: { - appName: "Evmsheet", + appName: "Ethsheet", chainId: ChainId.ETHEREUM_TESTNET, chainType: ChainType.EVM, explorerBaseUrl: "https://goerli.etherscan.io/address/", @@ -25,7 +27,7 @@ const chainConfigs: Record> = { rpcUrl: `https://goerli.infura.io/v3/${process.env.REACT_APP_INFURA_KEY}`, }, anvil: { - appName: "Evmsheet", + appName: "Ethsheet", chainId: ChainId.ANVIL, chainType: ChainType.EVM, explorerBaseUrl: "https://goerli.etherscan.io/address/", @@ -38,9 +40,8 @@ const chainConfigs: Record> = { chainId: ChainId.STARKNET_MAINNET, chainType: ChainType.STARKNET, explorerBaseUrl: "https://starkscan.co/contract/", - nftBaseUrl: "https://mintsquare.io/collection/starknet/", + nftBaseUrl: "https://flexing.gg/starknet/collection/", rpcUrl: `https://starknet-mainnet.infura.io/v3/${process.env.REACT_APP_INFURA_KEY}`, - gateway: "mainnet-alpha", }, testnet: { appName: "Starksheet", @@ -49,7 +50,6 @@ const chainConfigs: Record> = { explorerBaseUrl: "https://testnet.starkscan.co/contract/", nftBaseUrl: "https://mintsquare.io/collection/starknet-testnet/", rpcUrl: `https://starknet-goerli.infura.io/v3/${process.env.REACT_APP_INFURA_KEY}`, - gateway: "goerli-alpha", }, testnet2: { appName: "Starksheet", @@ -58,9 +58,8 @@ const chainConfigs: Record> = { explorerBaseUrl: "https://testnet-2.starkscan.co/contract/", nftBaseUrl: "", rpcUrl: `https://starknet-goerli2.infura.io/v3/${process.env.REACT_APP_INFURA_KEY}`, - gateway: "goerli-alpha-2", }, - devnet: { + starknetDevnet: { appName: "Starksheet", chainId: ChainId.STARKNET_TESTNET, chainType: ChainType.STARKNET, @@ -92,6 +91,14 @@ const chainConfigs: Record> = { nftBaseUrl: "", rpcUrl: process.env.REACT_APP_SHARINGAN_URL!, }, + kakarot: { + appName: "Kakasheet", + chainId: ChainId.STARKNET_TESTNET, + chainType: ChainType.EVM, + explorerBaseUrl: "", + nftBaseUrl: "", + rpcUrl: "http://127.0.0.1:3030", + }, }; const chainImplementations = { @@ -101,20 +108,28 @@ const chainImplementations = { const chainAbis = { [ChainType.EVM]: { - spreadsheet: contractData.abis.eth.spreadsheet, - worksheet: contractData.abis.eth.worksheet, + spreadsheet: contractData.abis.eth.spreadsheet as Abi, + worksheet: contractData.abis.eth.worksheet as Abi, }, [ChainType.STARKNET]: { - spreadsheet: contractData.abis.starknet.spreadsheet, - worksheet: contractData.abis.starknet.worksheet, + spreadsheet: contractData.abis.starknet.spreadsheet as Abi, + worksheet: contractData.abis.starknet.worksheet as Abi, }, }; -const network = (process.env.REACT_APP_NETWORK as SupportedChains) || "devnet"; +const network = + (process.env.REACT_APP_NETWORK!.replace(/-./g, (x) => + x[1].toUpperCase() + ) as SupportedChains) || "starknetDevnet"; + export const chainConfig: ChainConfig = { ...chainConfigs[network], + rpcUrl: process.env.REACT_APP_RPC_URL || chainConfigs[network].rpcUrl, addresses: contractData.network.addresses, }; -export const chainAbi = chainAbis[chainConfig.chainType]; +export const chainAbi = chainAbis[chainConfig.chainType] as { + spreadsheet: Abi; + worksheet: Abi; +}; export const chainImplementation = chainImplementations[chainConfig.chainType]; export const deployedAbis = contractData.network.deployedAbis; diff --git a/packages/starksheet-webapp/src/types/cells.ts b/packages/starksheet-webapp/src/types/cells.ts index 7d317a1b..fb4e0aba 100644 --- a/packages/starksheet-webapp/src/types/cells.ts +++ b/packages/starksheet-webapp/src/types/cells.ts @@ -1,19 +1,18 @@ -import BN from "bn.js"; import { FunctionAbi } from "starknet"; export type CellData = { - contractAddress: BN; - selector: BN; - calldata: BN[]; + contractAddress: bigint; + selector: bigint; + calldata: bigint[]; abi?: FunctionAbi; }; export type CellRendered = { id: number; - owner: BN; - value: BN; + owner: bigint; + value: bigint; error?: boolean; - parents?: BN[]; + parents?: bigint[]; }; export type Cell = CellRendered & CellData; diff --git a/packages/starksheet-webapp/src/types/contracts/SpreadsheetContract.ts b/packages/starksheet-webapp/src/types/contracts/SpreadsheetContract.ts index 26346824..18cb379d 100644 --- a/packages/starksheet-webapp/src/types/contracts/SpreadsheetContract.ts +++ b/packages/starksheet-webapp/src/types/contracts/SpreadsheetContract.ts @@ -1,4 +1,3 @@ -import BN from "bn.js"; import { Cell } from "../cells"; import { SheetConstructorArgs } from "../onsheet"; import { ContractCall } from "../provider"; @@ -10,7 +9,7 @@ export interface SpreadsheetContract { from: number | string, constructorCalldata: SheetConstructorArgs ): Promise; - getSheetPrice(): Promise; + getSheetPrice(): Promise; /** * Build a raw `setCell` transaction from a Cell. * diff --git a/packages/starksheet-webapp/src/types/contracts/WorksheetContract.ts b/packages/starksheet-webapp/src/types/contracts/WorksheetContract.ts index 1943f59b..874b99c6 100644 --- a/packages/starksheet-webapp/src/types/contracts/WorksheetContract.ts +++ b/packages/starksheet-webapp/src/types/contracts/WorksheetContract.ts @@ -1,9 +1,8 @@ -import type BN from "bn.js"; import { CellData, CellRendered } from "../cells"; export interface WorksheetContract { totalSupply(): Promise; - ownerOf(tokenId: number): Promise; + ownerOf(tokenId: number): Promise; getCell(tokenId: number): Promise; renderCell(tokenId: number): Promise; renderCells(): Promise; diff --git a/packages/starksheet-webapp/src/types/onsheet.ts b/packages/starksheet-webapp/src/types/onsheet.ts index 47bdd9cb..76f07904 100644 --- a/packages/starksheet-webapp/src/types/onsheet.ts +++ b/packages/starksheet-webapp/src/types/onsheet.ts @@ -1,14 +1,13 @@ -import BN from "bn.js"; -import { Abi, FunctionAbi, StructAbi, number } from "starknet"; +import { Abi, BigNumberish, FunctionAbi, StructAbi } from "starknet"; import { Cell } from "./cells"; export type SheetConstructorArgs = { - name: number.BigNumberish; - symbol: number.BigNumberish; - owner: number.BigNumberish; - merkleRoot: number.BigNumberish; - maxPerWallet: number.BigNumberish; - rendererAddress: number.BigNumberish; + name: BigNumberish; + symbol: BigNumberish; + owner: BigNumberish; + merkleRoot: BigNumberish; + maxPerWallet: BigNumberish; + rendererAddress: BigNumberish; }; export type Sheet = { @@ -68,5 +67,5 @@ export type OnsheetContractData = { contractAbis: { [address: string]: Abi }; }; -export type Uint256 = { low: number.BigNumberish; high: number.BigNumberish }; -export type Uint256Output = { low: BN; high: BN }; +export type Uint256 = { low: BigNumberish; high: BigNumberish }; +export type Uint256Output = { low: bigint; high: bigint }; diff --git a/packages/starksheet-webapp/src/types/provider/ChainConfig.ts b/packages/starksheet-webapp/src/types/provider/ChainConfig.ts index c49061a0..e9aa00ac 100644 --- a/packages/starksheet-webapp/src/types/provider/ChainConfig.ts +++ b/packages/starksheet-webapp/src/types/provider/ChainConfig.ts @@ -1,8 +1,6 @@ import { ChainId } from "./ChainId"; import { ChainType } from "./ChainType"; -type NetworkName = "mainnet-alpha" | "goerli-alpha" | "goerli-alpha-2"; - export interface ChainConfig { chainId: ChainId; chainType: ChainType; @@ -10,7 +8,6 @@ export interface ChainConfig { explorerApiUrl?: string; nftBaseUrl: string; rpcUrl: string; - gateway?: NetworkName; appName: string; addresses: { spreadsheet: string; diff --git a/packages/starksheet-webapp/src/types/provider/ContractCall.ts b/packages/starksheet-webapp/src/types/provider/ContractCall.ts index 1ec9a20c..9b4bba64 100644 --- a/packages/starksheet-webapp/src/types/provider/ContractCall.ts +++ b/packages/starksheet-webapp/src/types/provider/ContractCall.ts @@ -1,6 +1,4 @@ -import BN from "bn.js"; -import { BigNumberish } from "ethers"; -import { FunctionAbi } from "starknet"; +import { BigNumberish, FunctionAbi } from "starknet"; /** * Represents a contract call. @@ -22,12 +20,12 @@ export interface ContractCall { /** * The function selector. */ - selector?: BigNumberish | BN; + selector?: BigNumberish; /** * The calldata. In the EVM world, the calldata includes the bytes4 function selector. */ - calldata: (BigNumberish | BN)[] | string; + calldata: BigNumberish[] | string; /** * The value to send in chain base fee token diff --git a/packages/starksheet-webapp/src/utils/constants.ts b/packages/starksheet-webapp/src/utils/constants.ts index 127dd853..8c67104f 100644 --- a/packages/starksheet-webapp/src/utils/constants.ts +++ b/packages/starksheet-webapp/src/utils/constants.ts @@ -1,7 +1,8 @@ -import { number } from "starknet"; - -export const RC_BOUND = number.toBN(2).pow(number.toBN(128)); +export const RC_BOUND = 2n ** 128n; export const CONTRACT_FUNCTION_SEP = "."; export const ARGS_SEP = ","; export const ARG_LIST_SEP = ","; export const CELL_NAME_REGEX = /^[a-z]\d+$/i; +export const CONTRACT_CALL_REGEX = + /(?(0x)?[a-z0-9]+)\.(?[a-z_0-9]+)\((?[a-z0-9[\]{},;: "']*)\)/i; +export const HEX_STRING_REGEX = /^(0x)?[a-f0-9]+$/i; diff --git a/packages/starksheet-webapp/src/utils/hexUtils.ts b/packages/starksheet-webapp/src/utils/hexUtils.ts index fecc4d3e..a43397a5 100644 --- a/packages/starksheet-webapp/src/utils/hexUtils.ts +++ b/packages/starksheet-webapp/src/utils/hexUtils.ts @@ -1,7 +1,3 @@ -import BN from "bn.js"; -import { BigNumber } from "ethers"; -import { number } from "starknet"; - export function hex2str(hex: string): string { return (hex.match(/[a-f0-9]{2}/g) || []) .map((byte) => String.fromCharCode(parseInt(byte, 16))) @@ -19,23 +15,20 @@ export function isASCII(s: string) { } export const normalizeHexString = (address: string) => - !!address ? "0x" + number.toBN(address).toString(16) : ""; + !!address ? "0x" + BigInt(address).toString(16) : ""; -export const bn2hex = (hex: BN): string => "0x" + hex.toString(16); +export const bigint2hex = (hex: bigint): string => "0x" + hex.toString(16); -export const bn2bytes = +export const bigint2bytes = (n: number) => - (hex: BN): string => + (hex: bigint): string => hex.toString(16).padEnd(n * 2, "0"); -export const bn2uint = +export const bigint2uint = (n: number) => - (hex: BN): string => + (hex: bigint): string => hex.toString(16).padStart(n * 2, "0"); -export const ethersHexStringToBN = (hexstring: string) => - new BN(BigNumber.from(hexstring).toString()); - export function hexStringToIntegerArray(hexString: string) { // Remove any non-hex characters hexString = hexString.replace(/[^0-9a-fA-F]/g, ""); @@ -48,9 +41,8 @@ export function hexStringToIntegerArray(hexString: string) { } // Convert each pair to an integer and store it in a new array - const integerArray = Array.from( - hexPairs, - (pair) => new BN(parseInt(pair, 16)) + const integerArray = Array.from(hexPairs, (pair) => + BigInt(parseInt(pair, 16)) ); return integerArray; diff --git a/packages/starksheet-webapp/src/utils/sheetUtils.ts b/packages/starksheet-webapp/src/utils/sheetUtils.ts index 64accfe5..5afff67d 100644 --- a/packages/starksheet-webapp/src/utils/sheetUtils.ts +++ b/packages/starksheet-webapp/src/utils/sheetUtils.ts @@ -1,8 +1,55 @@ -import BN from "bn.js"; +import { BigNumberish } from "starknet"; +import { N_COL } from "../config"; +import { Cell } from "../types"; import { RC_BOUND } from "./constants"; - -export const resolveContractAddress = (values: BN[], contractAddress: BN) => { - return contractAddress.lt(RC_BOUND) - ? values[contractAddress.toNumber()] +import { str2hex } from "./hexUtils"; +export const resolveContractAddress = ( + values: bigint[], + contractAddress: bigint +) => { + return contractAddress < RC_BOUND + ? values[Number(contractAddress)] : contractAddress; }; + +export const tokenIdToCellName = (id: number) => { + const col = ((id % N_COL) + 1 + 9).toString(36).toUpperCase(); + const row = Math.floor(id / N_COL) + 1; + return `${col}${row}`; +}; + +export const isDependency = (arg: bigint): boolean => arg % 2n !== 0n; + +export function getDependencies(calldata: bigint[]): number[] { + return calldata.filter(isDependency).map((data) => (Number(data) - 1) / 2); +} + +export const getAllDependencies = + (cells: Cell[], _dependencies: number[]) => (tokenId: number) => { + const deps = getDependencies(cells[tokenId].calldata); + deps.forEach((d) => _dependencies.push(d)); + if (deps.includes(tokenId)) { + // We break here because it's enough to conclude about a circular dep + return; + } + deps.map(getAllDependencies(cells, _dependencies)); + }; + +export const encodeConst = (_arg: BigNumberish): bigint => { + try { + // const is a number + return BigInt(_arg) * 2n; + } catch (e) { + // const is a string + return BigInt(str2hex(_arg.toString(16))) * 2n; + } +}; + +export const encodeTokenId = (_arg: BigNumberish): bigint => + BigInt(_arg) * 2n + 1n; + +export const cellNameToTokenId = (arg: string) => { + const col = arg.toLowerCase().charCodeAt(0) - "a".charCodeAt(0); + const row = parseInt(arg.slice(1)) - 1; + return col + row * 15; +}; diff --git a/packages/starksheet-webapp/tsconfig.json b/packages/starksheet-webapp/tsconfig.json index 3eec5591..2e62d025 100644 --- a/packages/starksheet-webapp/tsconfig.json +++ b/packages/starksheet-webapp/tsconfig.json @@ -1,6 +1,6 @@ { "compilerOptions": { - "target": "es5", + "target": "es2020", "lib": ["dom", "dom.iterable", "esnext"], "allowJs": true, "skipLibCheck": true,